From 17df650819a2900baf41dac2669417af1b4e40b4 Mon Sep 17 00:00:00 2001 From: Jadis0x <49281043+jadis0x@users.noreply.github.com> Date: Thu, 16 May 2024 21:02:28 +0300 Subject: [PATCH] il2cpp api pointers updated --- appdata/il2cpp-api-functions-ptr.h | 2 +- appdata/il2cpp-api-functions.h | 923 +- appdata/il2cpp-functions.h | 87482 +++++++++----- appdata/il2cpp-metadata-version.h | 2 +- appdata/il2cpp-types-ptr.h | 10127 +- appdata/il2cpp-types.h | 166236 +++++++++++++++++++++----- framework/il2cpp-appdata.h | 4 +- framework/il2cpp-init.cpp | 26 +- 8 files changed, 209840 insertions(+), 54962 deletions(-) diff --git a/appdata/il2cpp-api-functions-ptr.h b/appdata/il2cpp-api-functions-ptr.h index 7765a14..9fbb750 100644 --- a/appdata/il2cpp-api-functions-ptr.h +++ b/appdata/il2cpp-api-functions-ptr.h @@ -1,5 +1,5 @@ // Generated C++ file by Il2CppInspector - http://www.djkaty.com - https://github.com/djkaty -// Target Unity version: 2021.2.0+ +// Target Unity version: 2021.2.0 - 2021.2.99 // ****************************************************************************** // * IL2CPP API function pointers diff --git a/appdata/il2cpp-api-functions.h b/appdata/il2cpp-api-functions.h index a321da9..5281ca6 100644 --- a/appdata/il2cpp-api-functions.h +++ b/appdata/il2cpp-api-functions.h @@ -1,309 +1,614 @@ -// Generated C++ file by Il2CppInspector - http://www.djkaty.com - https://github.com/djkaty -// Target Unity version: 2021.2.0+ - -#ifndef DO_API_NO_RETURN -#define DO_API_NO_RETURN(r, n, p) DO_API(r,n,p) -#endif - -DO_API(int, il2cpp_init, (const char* domain_name)); -DO_API(int, il2cpp_init_utf16, (const Il2CppChar * domain_name)); -DO_API(void, il2cpp_shutdown, ()); -DO_API(void, il2cpp_set_config_dir, (const char *config_path)); -DO_API(void, il2cpp_set_data_dir, (const char *data_path)); -DO_API(void, il2cpp_set_temp_dir, (const char *temp_path)); -DO_API(void, il2cpp_set_commandline_arguments, (int argc, const char* const argv[], const char* basedir)); -DO_API(void, il2cpp_set_commandline_arguments_utf16, (int argc, const Il2CppChar * const argv[], const char* basedir)); -DO_API(void, il2cpp_set_config_utf16, (const Il2CppChar * executablePath)); -DO_API(void, il2cpp_set_config, (const char* executablePath)); - -DO_API(void, il2cpp_set_memory_callbacks, (Il2CppMemoryCallbacks * callbacks)); -DO_API(const Il2CppImage*, il2cpp_get_corlib, ()); -DO_API(void, il2cpp_add_internal_call, (const char* name, Il2CppMethodPointer method)); -DO_API(Il2CppMethodPointer, il2cpp_resolve_icall, (const char* name)); - -DO_API(void*, il2cpp_alloc, (size_t size)); -DO_API(void, il2cpp_free, (void* ptr)); - -// array -DO_API(Il2CppClass*, il2cpp_array_class_get, (Il2CppClass * element_class, uint32_t rank)); -DO_API(uint32_t, il2cpp_array_length, (Il2CppArray * array)); -DO_API(uint32_t, il2cpp_array_get_byte_length, (Il2CppArray * array)); -DO_API(Il2CppArray*, il2cpp_array_new, (Il2CppClass * elementTypeInfo, il2cpp_array_size_t length)); -DO_API(Il2CppArray*, il2cpp_array_new_specific, (Il2CppClass * arrayTypeInfo, il2cpp_array_size_t length)); -DO_API(Il2CppArray*, il2cpp_array_new_full, (Il2CppClass * array_class, il2cpp_array_size_t * lengths, il2cpp_array_size_t * lower_bounds)); -DO_API(Il2CppClass*, il2cpp_bounded_array_class_get, (Il2CppClass * element_class, uint32_t rank, bool bounded)); -DO_API(int, il2cpp_array_element_size, (const Il2CppClass * array_class)); - -// assembly -DO_API(const Il2CppImage*, il2cpp_assembly_get_image, (const Il2CppAssembly * assembly)); - -// class -DO_API(void, il2cpp_class_for_each, (void(*klassReportFunc)(Il2CppClass* klass, void* userData), void* userData)); -DO_API(const Il2CppType*, il2cpp_class_enum_basetype, (Il2CppClass * klass)); -DO_API(bool, il2cpp_class_is_generic, (const Il2CppClass * klass)); -DO_API(bool, il2cpp_class_is_inflated, (const Il2CppClass * klass)); -DO_API(bool, il2cpp_class_is_assignable_from, (Il2CppClass * klass, Il2CppClass * oklass)); -DO_API(bool, il2cpp_class_is_subclass_of, (Il2CppClass * klass, Il2CppClass * klassc, bool check_interfaces)); -DO_API(bool, il2cpp_class_has_parent, (Il2CppClass * klass, Il2CppClass * klassc)); -DO_API(Il2CppClass*, il2cpp_class_from_il2cpp_type, (const Il2CppType * type)); -DO_API(Il2CppClass*, il2cpp_class_from_name, (const Il2CppImage * image, const char* namespaze, const char *name)); -DO_API(Il2CppClass*, il2cpp_class_from_system_type, (Il2CppReflectionType * type)); -DO_API(Il2CppClass*, il2cpp_class_get_element_class, (Il2CppClass * klass)); -DO_API(const EventInfo*, il2cpp_class_get_events, (Il2CppClass * klass, void* *iter)); -DO_API(FieldInfo*, il2cpp_class_get_fields, (Il2CppClass * klass, void* *iter)); -DO_API(Il2CppClass*, il2cpp_class_get_nested_types, (Il2CppClass * klass, void* *iter)); -DO_API(Il2CppClass*, il2cpp_class_get_interfaces, (Il2CppClass * klass, void* *iter)); -DO_API(const PropertyInfo*, il2cpp_class_get_properties, (Il2CppClass * klass, void* *iter)); -DO_API(const PropertyInfo*, il2cpp_class_get_property_from_name, (Il2CppClass * klass, const char *name)); -DO_API(FieldInfo*, il2cpp_class_get_field_from_name, (Il2CppClass * klass, const char *name)); -DO_API(const MethodInfo*, il2cpp_class_get_methods, (Il2CppClass * klass, void* *iter)); -DO_API(const MethodInfo*, il2cpp_class_get_method_from_name, (Il2CppClass * klass, const char* name, int argsCount)); -DO_API(const char*, il2cpp_class_get_name, (Il2CppClass * klass)); -DO_API(void, il2cpp_type_get_name_chunked, (const Il2CppType * type, void(*chunkReportFunc)(void* data, void* userData), void* userData)); -DO_API(const char*, il2cpp_class_get_namespace, (Il2CppClass * klass)); -DO_API(Il2CppClass*, il2cpp_class_get_parent, (Il2CppClass * klass)); -DO_API(Il2CppClass*, il2cpp_class_get_declaring_type, (Il2CppClass * klass)); -DO_API(int32_t, il2cpp_class_instance_size, (Il2CppClass * klass)); -DO_API(size_t, il2cpp_class_num_fields, (const Il2CppClass * enumKlass)); -DO_API(bool, il2cpp_class_is_valuetype, (const Il2CppClass * klass)); -DO_API(int32_t, il2cpp_class_value_size, (Il2CppClass * klass, uint32_t * align)); -DO_API(bool, il2cpp_class_is_blittable, (const Il2CppClass * klass)); -DO_API(int, il2cpp_class_get_flags, (const Il2CppClass * klass)); -DO_API(bool, il2cpp_class_is_abstract, (const Il2CppClass * klass)); -DO_API(bool, il2cpp_class_is_interface, (const Il2CppClass * klass)); -DO_API(int, il2cpp_class_array_element_size, (const Il2CppClass * klass)); -DO_API(Il2CppClass*, il2cpp_class_from_type, (const Il2CppType * type)); -DO_API(const Il2CppType*, il2cpp_class_get_type, (Il2CppClass * klass)); -DO_API(uint32_t, il2cpp_class_get_type_token, (Il2CppClass * klass)); -DO_API(bool, il2cpp_class_has_attribute, (Il2CppClass * klass, Il2CppClass * attr_class)); -DO_API(bool, il2cpp_class_has_references, (Il2CppClass * klass)); -DO_API(bool, il2cpp_class_is_enum, (const Il2CppClass * klass)); -DO_API(const Il2CppImage*, il2cpp_class_get_image, (Il2CppClass * klass)); -DO_API(const char*, il2cpp_class_get_assemblyname, (const Il2CppClass * klass)); -DO_API(int, il2cpp_class_get_rank, (const Il2CppClass * klass)); -DO_API(uint32_t, il2cpp_class_get_data_size, (const Il2CppClass * klass)); -DO_API(void*, il2cpp_class_get_static_field_data, (const Il2CppClass * klass)); - -// testing only -DO_API(size_t, il2cpp_class_get_bitmap_size, (const Il2CppClass * klass)); -DO_API(void, il2cpp_class_get_bitmap, (Il2CppClass * klass, size_t * bitmap)); - -// stats -DO_API(bool, il2cpp_stats_dump_to_file, (const char *path)); -DO_API(uint64_t, il2cpp_stats_get_value, (Il2CppStat stat)); - -// domain -DO_API(Il2CppDomain*, il2cpp_domain_get, ()); -DO_API(const Il2CppAssembly*, il2cpp_domain_assembly_open, (Il2CppDomain * domain, const char* name)); -DO_API(const Il2CppAssembly**, il2cpp_domain_get_assemblies, (const Il2CppDomain * domain, size_t * size)); - -// exception -DO_API_NO_RETURN(void, il2cpp_raise_exception, (Il2CppException*)); -DO_API(Il2CppException*, il2cpp_exception_from_name_msg, (const Il2CppImage * image, const char *name_space, const char *name, const char *msg)); -DO_API(Il2CppException*, il2cpp_get_exception_argument_null, (const char *arg)); -DO_API(void, il2cpp_format_exception, (const Il2CppException * ex, char* message, int message_size)); -DO_API(void, il2cpp_format_stack_trace, (const Il2CppException * ex, char* output, int output_size)); -DO_API(void, il2cpp_unhandled_exception, (Il2CppException*)); -DO_API(void, il2cpp_native_stack_trace, (const Il2CppException * ex, uintptr_t** addresses, int* numFrames, char** imageUUID, char** imageName)); - -// field -DO_API(int, il2cpp_field_get_flags, (FieldInfo * field)); -DO_API(const char*, il2cpp_field_get_name, (FieldInfo * field)); -DO_API(Il2CppClass*, il2cpp_field_get_parent, (FieldInfo * field)); -DO_API(size_t, il2cpp_field_get_offset, (FieldInfo * field)); -DO_API(const Il2CppType*, il2cpp_field_get_type, (FieldInfo * field)); -DO_API(void, il2cpp_field_get_value, (Il2CppObject * obj, FieldInfo * field, void *value)); -DO_API(Il2CppObject*, il2cpp_field_get_value_object, (FieldInfo * field, Il2CppObject * obj)); -DO_API(bool, il2cpp_field_has_attribute, (FieldInfo * field, Il2CppClass * attr_class)); -DO_API(void, il2cpp_field_set_value, (Il2CppObject * obj, FieldInfo * field, void *value)); -DO_API(void, il2cpp_field_static_get_value, (FieldInfo * field, void *value)); -DO_API(void, il2cpp_field_static_set_value, (FieldInfo * field, void *value)); -DO_API(void, il2cpp_field_set_value_object, (Il2CppObject * instance, FieldInfo * field, Il2CppObject * value)); -DO_API(bool, il2cpp_field_is_literal, (FieldInfo * field)); -// gc -DO_API(void, il2cpp_gc_collect, (int maxGenerations)); -DO_API(int32_t, il2cpp_gc_collect_a_little, ()); -DO_API(void, il2cpp_gc_start_incremental_collection , ()); -DO_API(void, il2cpp_gc_disable, ()); -DO_API(void, il2cpp_gc_enable, ()); -DO_API(bool, il2cpp_gc_is_disabled, ()); -DO_API(void, il2cpp_gc_set_mode, (Il2CppGCMode mode)); -DO_API(int64_t, il2cpp_gc_get_max_time_slice_ns, ()); -DO_API(void, il2cpp_gc_set_max_time_slice_ns, (int64_t maxTimeSlice)); -DO_API(bool, il2cpp_gc_is_incremental, ()); -DO_API(int64_t, il2cpp_gc_get_used_size, ()); -DO_API(int64_t, il2cpp_gc_get_heap_size, ()); -DO_API(void, il2cpp_gc_wbarrier_set_field, (Il2CppObject * obj, void **targetAddress, void *object)); -DO_API(bool, il2cpp_gc_has_strict_wbarriers, ()); -DO_API(void, il2cpp_gc_set_external_allocation_tracker, (void(*func)(void*, size_t, int))); -DO_API(void, il2cpp_gc_set_external_wbarrier_tracker, (void(*func)(void**))); -DO_API(void, il2cpp_gc_foreach_heap, (void(*func)(void* data, void* userData), void* userData)); -DO_API(void, il2cpp_stop_gc_world, ()); -DO_API(void, il2cpp_start_gc_world, ()); -DO_API(void*, il2cpp_gc_alloc_fixed, (size_t size)); -DO_API(void, il2cpp_gc_free_fixed, (void* address)); -// gchandle -DO_API(uint32_t, il2cpp_gchandle_new, (Il2CppObject * obj, bool pinned)); -DO_API(uint32_t, il2cpp_gchandle_new_weakref, (Il2CppObject * obj, bool track_resurrection)); -DO_API(Il2CppObject*, il2cpp_gchandle_get_target , (uint32_t gchandle)); -DO_API(void, il2cpp_gchandle_free, (uint32_t gchandle)); -DO_API(void , il2cpp_gchandle_foreach_get_target, (void(*func)(void* data, void* userData), void* userData)); - -// vm runtime info -DO_API(uint32_t, il2cpp_object_header_size, ()); -DO_API(uint32_t, il2cpp_array_object_header_size, ()); -DO_API(uint32_t, il2cpp_offset_of_array_length_in_array_object_header, ()); -DO_API(uint32_t, il2cpp_offset_of_array_bounds_in_array_object_header, ()); -DO_API(uint32_t, il2cpp_allocation_granularity, ()); - -// liveness -DO_API(void*, il2cpp_unity_liveness_allocate_struct, (Il2CppClass * filter, int max_object_count, il2cpp_register_object_callback callback, void* userdata, il2cpp_liveness_reallocate_callback reallocate)); -DO_API(void, il2cpp_unity_liveness_calculation_from_root, (Il2CppObject * root, void* state)); -DO_API(void, il2cpp_unity_liveness_calculation_from_statics, (void* state)); -DO_API(void, il2cpp_unity_liveness_finalize, (void* state)); -DO_API(void, il2cpp_unity_liveness_free_struct, (void* state)); - -// method -DO_API(const Il2CppType*, il2cpp_method_get_return_type, (const MethodInfo * method)); -DO_API(Il2CppClass*, il2cpp_method_get_declaring_type, (const MethodInfo * method)); -DO_API(const char*, il2cpp_method_get_name, (const MethodInfo * method)); -DO_API(const MethodInfo*, il2cpp_method_get_from_reflection, (const Il2CppReflectionMethod * method)); -DO_API(Il2CppReflectionMethod*, il2cpp_method_get_object, (const MethodInfo * method, Il2CppClass * refclass)); -DO_API(bool, il2cpp_method_is_generic, (const MethodInfo * method)); -DO_API(bool, il2cpp_method_is_inflated, (const MethodInfo * method)); -DO_API(bool, il2cpp_method_is_instance, (const MethodInfo * method)); -DO_API(uint32_t, il2cpp_method_get_param_count, (const MethodInfo * method)); -DO_API(const Il2CppType*, il2cpp_method_get_param, (const MethodInfo * method, uint32_t index)); -DO_API(Il2CppClass*, il2cpp_method_get_class, (const MethodInfo * method)); -DO_API(bool, il2cpp_method_has_attribute, (const MethodInfo * method, Il2CppClass * attr_class)); -DO_API(uint32_t, il2cpp_method_get_flags, (const MethodInfo * method, uint32_t * iflags)); -DO_API(uint32_t, il2cpp_method_get_token, (const MethodInfo * method)); -DO_API(const char*, il2cpp_method_get_param_name, (const MethodInfo * method, uint32_t index)); - -// profiler -#if IL2CPP_ENABLE_PROFILER - - -#endif - -// property -DO_API(uint32_t, il2cpp_property_get_flags, (PropertyInfo * prop)); -DO_API(const MethodInfo*, il2cpp_property_get_get_method, (PropertyInfo * prop)); -DO_API(const MethodInfo*, il2cpp_property_get_set_method, (PropertyInfo * prop)); -DO_API(const char*, il2cpp_property_get_name, (PropertyInfo * prop)); -DO_API(Il2CppClass*, il2cpp_property_get_parent, (PropertyInfo * prop)); - -// object -DO_API(Il2CppClass*, il2cpp_object_get_class, (Il2CppObject * obj)); -DO_API(uint32_t, il2cpp_object_get_size, (Il2CppObject * obj)); -DO_API(const MethodInfo*, il2cpp_object_get_virtual_method, (Il2CppObject * obj, const MethodInfo * method)); -DO_API(Il2CppObject*, il2cpp_object_new, (const Il2CppClass * klass)); -DO_API(void*, il2cpp_object_unbox, (Il2CppObject * obj)); - -DO_API(Il2CppObject*, il2cpp_value_box, (Il2CppClass * klass, void* data)); - -// monitor -DO_API(void, il2cpp_monitor_enter, (Il2CppObject * obj)); -DO_API(bool, il2cpp_monitor_try_enter, (Il2CppObject * obj, uint32_t timeout)); -DO_API(void, il2cpp_monitor_exit, (Il2CppObject * obj)); -DO_API(void, il2cpp_monitor_pulse, (Il2CppObject * obj)); -DO_API(void, il2cpp_monitor_pulse_all, (Il2CppObject * obj)); -DO_API(void, il2cpp_monitor_wait, (Il2CppObject * obj)); -DO_API(bool, il2cpp_monitor_try_wait, (Il2CppObject * obj, uint32_t timeout)); - -// runtime -DO_API(Il2CppObject*, il2cpp_runtime_invoke, (const MethodInfo * method, void *obj, void **params, Il2CppException **exc)); -DO_API(Il2CppObject*, il2cpp_runtime_invoke_convert_args, (const MethodInfo * method, void *obj, Il2CppObject **params, int paramCount, Il2CppException **exc)); -DO_API(void, il2cpp_runtime_class_init, (Il2CppClass * klass)); -DO_API(void, il2cpp_runtime_object_init, (Il2CppObject * obj)); - -DO_API(void, il2cpp_runtime_object_init_exception, (Il2CppObject * obj, Il2CppException** exc)); - -DO_API(void, il2cpp_runtime_unhandled_exception_policy_set, (Il2CppRuntimeUnhandledExceptionPolicy value)); - -// string -DO_API(int32_t, il2cpp_string_length, (Il2CppString * str)); -DO_API(Il2CppChar*, il2cpp_string_chars, (Il2CppString * str)); -DO_API(Il2CppString*, il2cpp_string_new, (const char* str)); -DO_API(Il2CppString*, il2cpp_string_new_len, (const char* str, uint32_t length)); -DO_API(Il2CppString*, il2cpp_string_new_utf16, (const Il2CppChar * text, int32_t len)); -DO_API(Il2CppString*, il2cpp_string_new_wrapper, (const char* str)); -DO_API(Il2CppString*, il2cpp_string_intern, (Il2CppString * str)); -DO_API(Il2CppString*, il2cpp_string_is_interned, (Il2CppString * str)); - -// thread -DO_API(Il2CppThread*, il2cpp_thread_current, ()); -DO_API(Il2CppThread*, il2cpp_thread_attach, (Il2CppDomain * domain)); -DO_API(void, il2cpp_thread_detach, (Il2CppThread * thread)); - -DO_API(Il2CppThread**, il2cpp_thread_get_all_attached_threads, (size_t * size)); -DO_API(bool, il2cpp_is_vm_thread, (Il2CppThread * thread)); - -// stacktrace -DO_API(void, il2cpp_current_thread_walk_frame_stack, (Il2CppFrameWalkFunc func, void* user_data)); -DO_API(void, il2cpp_thread_walk_frame_stack, (Il2CppThread * thread, Il2CppFrameWalkFunc func, void* user_data)); -DO_API(bool, il2cpp_current_thread_get_top_frame, (Il2CppStackFrameInfo * frame)); -DO_API(bool, il2cpp_thread_get_top_frame, (Il2CppThread * thread, Il2CppStackFrameInfo * frame)); -DO_API(bool, il2cpp_current_thread_get_frame_at, (int32_t offset, Il2CppStackFrameInfo * frame)); -DO_API(bool, il2cpp_thread_get_frame_at, (Il2CppThread * thread, int32_t offset, Il2CppStackFrameInfo * frame)); -DO_API(int32_t, il2cpp_current_thread_get_stack_depth, ()); -DO_API(int32_t, il2cpp_thread_get_stack_depth, (Il2CppThread * thread)); -DO_API(void, il2cpp_override_stack_backtrace, (Il2CppBacktraceFunc stackBacktraceFunc)); - -// type -DO_API(Il2CppObject*, il2cpp_type_get_object, (const Il2CppType * type)); -DO_API(int, il2cpp_type_get_type, (const Il2CppType * type)); -DO_API(Il2CppClass*, il2cpp_type_get_class_or_element_class, (const Il2CppType * type)); -DO_API(char*, il2cpp_type_get_name, (const Il2CppType * type)); -DO_API(bool, il2cpp_type_is_byref, (const Il2CppType * type)); -DO_API(uint32_t, il2cpp_type_get_attrs, (const Il2CppType * type)); -DO_API(bool, il2cpp_type_equals, (const Il2CppType * type, const Il2CppType * otherType)); -DO_API(char*, il2cpp_type_get_assembly_qualified_name, (const Il2CppType * type)); -DO_API(bool, il2cpp_type_is_static, (const Il2CppType * type)); -DO_API(bool, il2cpp_type_is_pointer_type, (const Il2CppType * type)); - -// image -DO_API(const Il2CppAssembly*, il2cpp_image_get_assembly, (const Il2CppImage * image)); -DO_API(const char*, il2cpp_image_get_name, (const Il2CppImage * image)); -DO_API(const char*, il2cpp_image_get_filename, (const Il2CppImage * image)); -DO_API(const MethodInfo*, il2cpp_image_get_entry_point, (const Il2CppImage * image)); - -DO_API(size_t, il2cpp_image_get_class_count, (const Il2CppImage * image)); -DO_API(const Il2CppClass*, il2cpp_image_get_class, (const Il2CppImage * image, size_t index)); - -// Memory information -DO_API(Il2CppManagedMemorySnapshot*, il2cpp_capture_memory_snapshot, ()); -DO_API(void, il2cpp_free_captured_memory_snapshot, (Il2CppManagedMemorySnapshot * snapshot)); - -DO_API(void, il2cpp_set_find_plugin_callback, (Il2CppSetFindPlugInCallback method)); - -// Logging -DO_API(void, il2cpp_register_log_callback, (Il2CppLogCallback method)); - -// Debugger -DO_API(void, il2cpp_debugger_set_agent_options, (const char* options)); -DO_API(bool, il2cpp_is_debugger_attached, ()); -DO_API(void, il2cpp_register_debugger_agent_transport, (Il2CppDebuggerTransport * debuggerTransport)); - -// Debug metadata -DO_API(bool, il2cpp_debug_get_method_info, (const MethodInfo*, Il2CppMethodDebugInfo * methodDebugInfo)); - -// TLS module -DO_API(void, il2cpp_unity_install_unitytls_interface, (const void* unitytlsInterfaceStruct)); - -// custom attributes -DO_API(Il2CppCustomAttrInfo*, il2cpp_custom_attrs_from_class, (Il2CppClass * klass)); -DO_API(Il2CppCustomAttrInfo*, il2cpp_custom_attrs_from_method, (const MethodInfo * method)); - -DO_API(Il2CppObject*, il2cpp_custom_attrs_get_attr, (Il2CppCustomAttrInfo * ainfo, Il2CppClass * attr_klass)); -DO_API(bool, il2cpp_custom_attrs_has_attr, (Il2CppCustomAttrInfo * ainfo, Il2CppClass * attr_klass)); -DO_API(Il2CppArray*, il2cpp_custom_attrs_construct, (Il2CppCustomAttrInfo * cinfo)); - -DO_API(void, il2cpp_custom_attrs_free, (Il2CppCustomAttrInfo * ainfo)); - -// Il2CppClass user data for GetComponent optimization -DO_API(void, il2cpp_class_set_userdata, (Il2CppClass * klass, void* userdata)); -DO_API(int, il2cpp_class_get_userdata_offset, ()); - -DO_API(void, il2cpp_set_default_thread_affinity, (int64_t affinity_mask)); - +// Generated C++ file by Il2CppInspector - http://www.djkaty.com - https://github.com/djkaty +// Target Unity version: 2021.2.0 - 2021.2.99 + +#ifndef DO_API_NO_RETURN + +#define DO_API_NO_RETURN(r, n, p) DO_API(r,n,p) + +#endif + + + +DO_API(int, il2cpp_init, (const char* domain_name)); + +DO_API(int, il2cpp_init_utf16, (const Il2CppChar* domain_name)); + +DO_API(void, il2cpp_shutdown, ()); + +DO_API(void, il2cpp_set_config_dir, (const char* config_path)); + +DO_API(void, il2cpp_set_data_dir, (const char* data_path)); + +DO_API(void, il2cpp_set_temp_dir, (const char* temp_path)); + +DO_API(void, il2cpp_set_commandline_arguments, (int argc, const char* const argv[], const char* basedir)); + +DO_API(void, il2cpp_set_commandline_arguments_utf16, (int argc, const Il2CppChar* const argv[], const char* basedir)); + +DO_API(void, il2cpp_set_config_utf16, (const Il2CppChar* executablePath)); + +DO_API(void, il2cpp_set_config, (const char* executablePath)); + + + +DO_API(void, il2cpp_set_memory_callbacks, (Il2CppMemoryCallbacks* callbacks)); + +DO_API(const Il2CppImage*, il2cpp_get_corlib, ()); + +DO_API(void, il2cpp_add_internal_call, (const char* name, Il2CppMethodPointer method)); + +DO_API(Il2CppMethodPointer, il2cpp_resolve_icall, (const char* name)); + + + +DO_API(void*, il2cpp_alloc, (size_t size)); + +DO_API(void, il2cpp_free, (void* ptr)); + + + +// array + +DO_API(Il2CppClass*, il2cpp_array_class_get, (Il2CppClass* element_class, uint32_t rank)); + +DO_API(uint32_t, il2cpp_array_length, (Il2CppArray* array)); + +DO_API(uint32_t, il2cpp_array_get_byte_length, (Il2CppArray* array)); + +DO_API(Il2CppArray*, il2cpp_array_new, (Il2CppClass* elementTypeInfo, il2cpp_array_size_t length)); + +DO_API(Il2CppArray*, il2cpp_array_new_specific, (Il2CppClass* arrayTypeInfo, il2cpp_array_size_t length)); + +DO_API(Il2CppArray*, il2cpp_array_new_full, (Il2CppClass* array_class, il2cpp_array_size_t* lengths, il2cpp_array_size_t* lower_bounds)); + +DO_API(Il2CppClass*, il2cpp_bounded_array_class_get, (Il2CppClass* element_class, uint32_t rank, bool bounded)); + +DO_API(int, il2cpp_array_element_size, (const Il2CppClass* array_class)); + + + +// assembly + +DO_API(const Il2CppImage*, il2cpp_assembly_get_image, (const Il2CppAssembly* assembly)); + + + +// class + +DO_API(void, il2cpp_class_for_each, (void(*klassReportFunc)(Il2CppClass* klass, void* userData), void* userData)); + +DO_API(const Il2CppType*, il2cpp_class_enum_basetype, (Il2CppClass* klass)); + +DO_API(bool, il2cpp_class_is_generic, (const Il2CppClass* klass)); + +DO_API(bool, il2cpp_class_is_inflated, (const Il2CppClass* klass)); + +DO_API(bool, il2cpp_class_is_assignable_from, (Il2CppClass* klass, Il2CppClass* oklass)); + +DO_API(bool, il2cpp_class_is_subclass_of, (Il2CppClass* klass, Il2CppClass* klassc, bool check_interfaces)); + +DO_API(bool, il2cpp_class_has_parent, (Il2CppClass* klass, Il2CppClass* klassc)); + +DO_API(Il2CppClass*, il2cpp_class_from_il2cpp_type, (const Il2CppType* type)); + +DO_API(Il2CppClass*, il2cpp_class_from_name, (const Il2CppImage* image, const char* namespaze, const char* name)); + +DO_API(Il2CppClass*, il2cpp_class_from_system_type, (Il2CppReflectionType* type)); + +DO_API(Il2CppClass*, il2cpp_class_get_element_class, (Il2CppClass* klass)); + +DO_API(const EventInfo*, il2cpp_class_get_events, (Il2CppClass* klass, void** iter)); + +DO_API(FieldInfo*, il2cpp_class_get_fields, (Il2CppClass* klass, void** iter)); + +DO_API(Il2CppClass*, il2cpp_class_get_nested_types, (Il2CppClass* klass, void** iter)); + +DO_API(Il2CppClass*, il2cpp_class_get_interfaces, (Il2CppClass* klass, void** iter)); + +DO_API(const PropertyInfo*, il2cpp_class_get_properties, (Il2CppClass* klass, void** iter)); + +DO_API(const PropertyInfo*, il2cpp_class_get_property_from_name, (Il2CppClass* klass, const char* name)); + +DO_API(FieldInfo*, il2cpp_class_get_field_from_name, (Il2CppClass* klass, const char* name)); + +DO_API(const MethodInfo*, il2cpp_class_get_methods, (Il2CppClass* klass, void** iter)); + +DO_API(const MethodInfo*, il2cpp_class_get_method_from_name, (Il2CppClass* klass, const char* name, int argsCount)); + +DO_API(const char*, il2cpp_class_get_name, (Il2CppClass* klass)); + +DO_API(void, il2cpp_type_get_name_chunked, (const Il2CppType* type, void(*chunkReportFunc)(void* data, void* userData), void* userData)); + +DO_API(const char*, il2cpp_class_get_namespace, (Il2CppClass* klass)); + +DO_API(Il2CppClass*, il2cpp_class_get_parent, (Il2CppClass* klass)); + +DO_API(Il2CppClass*, il2cpp_class_get_declaring_type, (Il2CppClass* klass)); + +DO_API(int32_t, il2cpp_class_instance_size, (Il2CppClass* klass)); + +DO_API(size_t, il2cpp_class_num_fields, (const Il2CppClass* enumKlass)); + +DO_API(bool, il2cpp_class_is_valuetype, (const Il2CppClass* klass)); + +DO_API(int32_t, il2cpp_class_value_size, (Il2CppClass* klass, uint32_t* align)); + +DO_API(bool, il2cpp_class_is_blittable, (const Il2CppClass* klass)); + +DO_API(int, il2cpp_class_get_flags, (const Il2CppClass* klass)); + +DO_API(bool, il2cpp_class_is_abstract, (const Il2CppClass* klass)); + +DO_API(bool, il2cpp_class_is_interface, (const Il2CppClass* klass)); + +DO_API(int, il2cpp_class_array_element_size, (const Il2CppClass* klass)); + +DO_API(Il2CppClass*, il2cpp_class_from_type, (const Il2CppType* type)); + +DO_API(const Il2CppType*, il2cpp_class_get_type, (Il2CppClass* klass)); + +DO_API(uint32_t, il2cpp_class_get_type_token, (Il2CppClass* klass)); + +DO_API(bool, il2cpp_class_has_attribute, (Il2CppClass* klass, Il2CppClass* attr_class)); + +DO_API(bool, il2cpp_class_has_references, (Il2CppClass* klass)); + +DO_API(bool, il2cpp_class_is_enum, (const Il2CppClass* klass)); + +DO_API(const Il2CppImage*, il2cpp_class_get_image, (Il2CppClass* klass)); + +DO_API(const char*, il2cpp_class_get_assemblyname, (const Il2CppClass* klass)); + +DO_API(int, il2cpp_class_get_rank, (const Il2CppClass* klass)); + +DO_API(uint32_t, il2cpp_class_get_data_size, (const Il2CppClass* klass)); + +DO_API(void*, il2cpp_class_get_static_field_data, (const Il2CppClass* klass)); + + + +// testing only + +DO_API(size_t, il2cpp_class_get_bitmap_size, (const Il2CppClass* klass)); + +DO_API(void, il2cpp_class_get_bitmap, (Il2CppClass* klass, size_t* bitmap)); + + + +// stats + +DO_API(bool, il2cpp_stats_dump_to_file, (const char* path)); + +DO_API(uint64_t, il2cpp_stats_get_value, (Il2CppStat stat)); + + + +// domain + +DO_API(Il2CppDomain*, il2cpp_domain_get, ()); + +DO_API(const Il2CppAssembly*, il2cpp_domain_assembly_open, (Il2CppDomain* domain, const char* name)); + +DO_API(const Il2CppAssembly**, il2cpp_domain_get_assemblies, (const Il2CppDomain* domain, size_t* size)); + + + +// exception + +DO_API_NO_RETURN(void, il2cpp_raise_exception, (Il2CppException*)); + +DO_API(Il2CppException*, il2cpp_exception_from_name_msg, (const Il2CppImage* image, const char* name_space, const char* name, const char* msg)); + +DO_API(Il2CppException*, il2cpp_get_exception_argument_null, (const char* arg)); + +DO_API(void, il2cpp_format_exception, (const Il2CppException* ex, char* message, int message_size)); + +DO_API(void, il2cpp_format_stack_trace, (const Il2CppException* ex, char* output, int output_size)); + +DO_API(void, il2cpp_unhandled_exception, (Il2CppException*)); + +DO_API(void, il2cpp_native_stack_trace, (const Il2CppException* ex, uintptr_t** addresses, int* numFrames, char** imageUUID, char** imageName)); + + + +// field + +DO_API(int, il2cpp_field_get_flags, (FieldInfo* field)); + +DO_API(const char*, il2cpp_field_get_name, (FieldInfo* field)); + +DO_API(Il2CppClass*, il2cpp_field_get_parent, (FieldInfo* field)); + +DO_API(size_t, il2cpp_field_get_offset, (FieldInfo* field)); + +DO_API(const Il2CppType*, il2cpp_field_get_type, (FieldInfo* field)); + +DO_API(void, il2cpp_field_get_value, (Il2CppObject* obj, FieldInfo* field, void* value)); + +DO_API(Il2CppObject*, il2cpp_field_get_value_object, (FieldInfo* field, Il2CppObject* obj)); + +DO_API(bool, il2cpp_field_has_attribute, (FieldInfo* field, Il2CppClass* attr_class)); + +DO_API(void, il2cpp_field_set_value, (Il2CppObject* obj, FieldInfo* field, void* value)); + +DO_API(void, il2cpp_field_static_get_value, (FieldInfo* field, void* value)); + +DO_API(void, il2cpp_field_static_set_value, (FieldInfo* field, void* value)); + +DO_API(void, il2cpp_field_set_value_object, (Il2CppObject* instance, FieldInfo* field, Il2CppObject* value)); + +DO_API(bool, il2cpp_field_is_literal, (FieldInfo* field)); + +// gc + +DO_API(void, il2cpp_gc_collect, (int maxGenerations)); + +DO_API(int32_t, il2cpp_gc_collect_a_little, ()); + +DO_API(void, il2cpp_gc_start_incremental_collection, ()); + +DO_API(void, il2cpp_gc_disable, ()); + +DO_API(void, il2cpp_gc_enable, ()); + +DO_API(bool, il2cpp_gc_is_disabled, ()); + +DO_API(void, il2cpp_gc_set_mode, (Il2CppGCMode mode)); + +DO_API(int64_t, il2cpp_gc_get_max_time_slice_ns, ()); + +DO_API(void, il2cpp_gc_set_max_time_slice_ns, (int64_t maxTimeSlice)); + +DO_API(bool, il2cpp_gc_is_incremental, ()); + +DO_API(int64_t, il2cpp_gc_get_used_size, ()); + +DO_API(int64_t, il2cpp_gc_get_heap_size, ()); + +DO_API(void, il2cpp_gc_wbarrier_set_field, (Il2CppObject* obj, void** targetAddress, void* object)); + +DO_API(bool, il2cpp_gc_has_strict_wbarriers, ()); + +DO_API(void, il2cpp_gc_set_external_allocation_tracker, (void(*func)(void*, size_t, int))); + +DO_API(void, il2cpp_gc_set_external_wbarrier_tracker, (void(*func)(void**))); + +DO_API(void, il2cpp_gc_foreach_heap, (void(*func)(void* data, void* userData), void* userData)); + +DO_API(void, il2cpp_stop_gc_world, ()); + +DO_API(void, il2cpp_start_gc_world, ()); + +DO_API(void*, il2cpp_gc_alloc_fixed, (size_t size)); + +DO_API(void, il2cpp_gc_free_fixed, (void* address)); + +// gchandle + +DO_API(uint32_t, il2cpp_gchandle_new, (Il2CppObject* obj, bool pinned)); + +DO_API(uint32_t, il2cpp_gchandle_new_weakref, (Il2CppObject* obj, bool track_resurrection)); + +DO_API(Il2CppObject*, il2cpp_gchandle_get_target, (uint32_t gchandle)); + +DO_API(void, il2cpp_gchandle_free, (uint32_t gchandle)); + +DO_API(void, il2cpp_gchandle_foreach_get_target, (void(*func)(void* data, void* userData), void* userData)); + + + +// vm runtime info + +DO_API(uint32_t, il2cpp_object_header_size, ()); + +DO_API(uint32_t, il2cpp_array_object_header_size, ()); + +DO_API(uint32_t, il2cpp_offset_of_array_length_in_array_object_header, ()); + +DO_API(uint32_t, il2cpp_offset_of_array_bounds_in_array_object_header, ()); + +DO_API(uint32_t, il2cpp_allocation_granularity, ()); + + + +// liveness + +DO_API(void*, il2cpp_unity_liveness_allocate_struct, (Il2CppClass* filter, int max_object_count, il2cpp_register_object_callback callback, void* userdata, il2cpp_liveness_reallocate_callback reallocate)); + +DO_API(void, il2cpp_unity_liveness_calculation_from_root, (Il2CppObject* root, void* state)); + +DO_API(void, il2cpp_unity_liveness_calculation_from_statics, (void* state)); + +DO_API(void, il2cpp_unity_liveness_finalize, (void* state)); + +DO_API(void, il2cpp_unity_liveness_free_struct, (void* state)); + + + +// method + +DO_API(const Il2CppType*, il2cpp_method_get_return_type, (const MethodInfo* method)); + +DO_API(Il2CppClass*, il2cpp_method_get_declaring_type, (const MethodInfo* method)); + +DO_API(const char*, il2cpp_method_get_name, (const MethodInfo* method)); + +DO_API(const MethodInfo*, il2cpp_method_get_from_reflection, (const Il2CppReflectionMethod* method)); + +DO_API(Il2CppReflectionMethod*, il2cpp_method_get_object, (const MethodInfo* method, Il2CppClass* refclass)); + +DO_API(bool, il2cpp_method_is_generic, (const MethodInfo* method)); + +DO_API(bool, il2cpp_method_is_inflated, (const MethodInfo* method)); + +DO_API(bool, il2cpp_method_is_instance, (const MethodInfo* method)); + +DO_API(uint32_t, il2cpp_method_get_param_count, (const MethodInfo* method)); + +DO_API(const Il2CppType*, il2cpp_method_get_param, (const MethodInfo* method, uint32_t index)); + +DO_API(Il2CppClass*, il2cpp_method_get_class, (const MethodInfo* method)); + +DO_API(bool, il2cpp_method_has_attribute, (const MethodInfo* method, Il2CppClass* attr_class)); + +DO_API(uint32_t, il2cpp_method_get_flags, (const MethodInfo* method, uint32_t* iflags)); + +DO_API(uint32_t, il2cpp_method_get_token, (const MethodInfo* method)); + +DO_API(const char*, il2cpp_method_get_param_name, (const MethodInfo* method, uint32_t index)); + + + +// profiler + +#if IL2CPP_ENABLE_PROFILER + + + + + +#endif + + + +// property + +DO_API(uint32_t, il2cpp_property_get_flags, (PropertyInfo* prop)); + +DO_API(const MethodInfo*, il2cpp_property_get_get_method, (PropertyInfo* prop)); + +DO_API(const MethodInfo*, il2cpp_property_get_set_method, (PropertyInfo* prop)); + +DO_API(const char*, il2cpp_property_get_name, (PropertyInfo* prop)); + +DO_API(Il2CppClass*, il2cpp_property_get_parent, (PropertyInfo* prop)); + + + +// object + +DO_API(Il2CppClass*, il2cpp_object_get_class, (Il2CppObject* obj)); + +DO_API(uint32_t, il2cpp_object_get_size, (Il2CppObject* obj)); + +DO_API(const MethodInfo*, il2cpp_object_get_virtual_method, (Il2CppObject* obj, const MethodInfo* method)); + +DO_API(Il2CppObject*, il2cpp_object_new, (const Il2CppClass* klass)); + +DO_API(void*, il2cpp_object_unbox, (Il2CppObject* obj)); + + + +DO_API(Il2CppObject*, il2cpp_value_box, (Il2CppClass* klass, void* data)); + + + +// monitor + +DO_API(void, il2cpp_monitor_enter, (Il2CppObject* obj)); + +DO_API(bool, il2cpp_monitor_try_enter, (Il2CppObject* obj, uint32_t timeout)); + +DO_API(void, il2cpp_monitor_exit, (Il2CppObject* obj)); + +DO_API(void, il2cpp_monitor_pulse, (Il2CppObject* obj)); + +DO_API(void, il2cpp_monitor_pulse_all, (Il2CppObject* obj)); + +DO_API(void, il2cpp_monitor_wait, (Il2CppObject* obj)); + +DO_API(bool, il2cpp_monitor_try_wait, (Il2CppObject* obj, uint32_t timeout)); + + + +// runtime + +DO_API(Il2CppObject*, il2cpp_runtime_invoke, (const MethodInfo* method, void* obj, void** params, Il2CppException** exc)); + +DO_API(Il2CppObject*, il2cpp_runtime_invoke_convert_args, (const MethodInfo* method, void* obj, Il2CppObject** params, int paramCount, Il2CppException** exc)); + +DO_API(void, il2cpp_runtime_class_init, (Il2CppClass* klass)); + +DO_API(void, il2cpp_runtime_object_init, (Il2CppObject* obj)); + + + +DO_API(void, il2cpp_runtime_object_init_exception, (Il2CppObject* obj, Il2CppException** exc)); + + + +DO_API(void, il2cpp_runtime_unhandled_exception_policy_set, (Il2CppRuntimeUnhandledExceptionPolicy value)); + + + +// string + +DO_API(int32_t, il2cpp_string_length, (Il2CppString* str)); + +DO_API(Il2CppChar*, il2cpp_string_chars, (Il2CppString* str)); + +DO_API(Il2CppString*, il2cpp_string_new, (const char* str)); + +DO_API(Il2CppString*, il2cpp_string_new_len, (const char* str, uint32_t length)); + +DO_API(Il2CppString*, il2cpp_string_new_utf16, (const Il2CppChar* text, int32_t len)); + +DO_API(Il2CppString*, il2cpp_string_new_wrapper, (const char* str)); + +DO_API(Il2CppString*, il2cpp_string_intern, (Il2CppString* str)); + +DO_API(Il2CppString*, il2cpp_string_is_interned, (Il2CppString* str)); + + + +// thread + +DO_API(Il2CppThread*, il2cpp_thread_current, ()); + +DO_API(Il2CppThread*, il2cpp_thread_attach, (Il2CppDomain* domain)); + +DO_API(void, il2cpp_thread_detach, (Il2CppThread* thread)); + + + +DO_API(Il2CppThread**, il2cpp_thread_get_all_attached_threads, (size_t* size)); + +DO_API(bool, il2cpp_is_vm_thread, (Il2CppThread* thread)); + + + +// stacktrace + +DO_API(void, il2cpp_current_thread_walk_frame_stack, (Il2CppFrameWalkFunc func, void* user_data)); + +DO_API(void, il2cpp_thread_walk_frame_stack, (Il2CppThread* thread, Il2CppFrameWalkFunc func, void* user_data)); + +DO_API(bool, il2cpp_current_thread_get_top_frame, (Il2CppStackFrameInfo* frame)); + +DO_API(bool, il2cpp_thread_get_top_frame, (Il2CppThread* thread, Il2CppStackFrameInfo* frame)); + +DO_API(bool, il2cpp_current_thread_get_frame_at, (int32_t offset, Il2CppStackFrameInfo* frame)); + +DO_API(bool, il2cpp_thread_get_frame_at, (Il2CppThread* thread, int32_t offset, Il2CppStackFrameInfo* frame)); + +DO_API(int32_t, il2cpp_current_thread_get_stack_depth, ()); + +DO_API(int32_t, il2cpp_thread_get_stack_depth, (Il2CppThread* thread)); + +DO_API(void, il2cpp_override_stack_backtrace, (Il2CppBacktraceFunc stackBacktraceFunc)); + + + +// type + +DO_API(Il2CppObject*, il2cpp_type_get_object, (const Il2CppType* type)); + +DO_API(int, il2cpp_type_get_type, (const Il2CppType* type)); + +DO_API(Il2CppClass*, il2cpp_type_get_class_or_element_class, (const Il2CppType* type)); + +DO_API(char*, il2cpp_type_get_name, (const Il2CppType* type)); + +DO_API(bool, il2cpp_type_is_byref, (const Il2CppType* type)); + +DO_API(uint32_t, il2cpp_type_get_attrs, (const Il2CppType* type)); + +DO_API(bool, il2cpp_type_equals, (const Il2CppType* type, const Il2CppType* otherType)); + +DO_API(char*, il2cpp_type_get_assembly_qualified_name, (const Il2CppType* type)); + +DO_API(bool, il2cpp_type_is_static, (const Il2CppType* type)); + +DO_API(bool, il2cpp_type_is_pointer_type, (const Il2CppType* type)); + + + +// image + +DO_API(const Il2CppAssembly*, il2cpp_image_get_assembly, (const Il2CppImage* image)); + +DO_API(const char*, il2cpp_image_get_name, (const Il2CppImage* image)); + +DO_API(const char*, il2cpp_image_get_filename, (const Il2CppImage* image)); + +DO_API(const MethodInfo*, il2cpp_image_get_entry_point, (const Il2CppImage* image)); + + + +DO_API(size_t, il2cpp_image_get_class_count, (const Il2CppImage* image)); + +DO_API(const Il2CppClass*, il2cpp_image_get_class, (const Il2CppImage* image, size_t index)); + + + +// Memory information + +DO_API(Il2CppManagedMemorySnapshot*, il2cpp_capture_memory_snapshot, ()); + +DO_API(void, il2cpp_free_captured_memory_snapshot, (Il2CppManagedMemorySnapshot* snapshot)); + + + +DO_API(void, il2cpp_set_find_plugin_callback, (Il2CppSetFindPlugInCallback method)); + + + +// Logging + +DO_API(void, il2cpp_register_log_callback, (Il2CppLogCallback method)); + + + +// Debugger + +DO_API(void, il2cpp_debugger_set_agent_options, (const char* options)); + +DO_API(bool, il2cpp_is_debugger_attached, ()); + +DO_API(void, il2cpp_register_debugger_agent_transport, (Il2CppDebuggerTransport* debuggerTransport)); + + + +// Debug metadata + +DO_API(bool, il2cpp_debug_get_method_info, (const MethodInfo*, Il2CppMethodDebugInfo* methodDebugInfo)); + + + +// TLS module + +DO_API(void, il2cpp_unity_install_unitytls_interface, (const void* unitytlsInterfaceStruct)); + + + +// custom attributes + +DO_API(Il2CppCustomAttrInfo*, il2cpp_custom_attrs_from_class, (Il2CppClass* klass)); + +DO_API(Il2CppCustomAttrInfo*, il2cpp_custom_attrs_from_method, (const MethodInfo* method)); + + + +DO_API(Il2CppObject*, il2cpp_custom_attrs_get_attr, (Il2CppCustomAttrInfo* ainfo, Il2CppClass* attr_klass)); + +DO_API(bool, il2cpp_custom_attrs_has_attr, (Il2CppCustomAttrInfo* ainfo, Il2CppClass* attr_klass)); + +DO_API(Il2CppArray*, il2cpp_custom_attrs_construct, (Il2CppCustomAttrInfo* cinfo)); + + + +DO_API(void, il2cpp_custom_attrs_free, (Il2CppCustomAttrInfo* ainfo)); + + + +// Il2CppClass user data for GetComponent optimization + +DO_API(void, il2cpp_class_set_userdata, (Il2CppClass* klass, void* userdata)); + +DO_API(int, il2cpp_class_get_userdata_offset, ()); + + + +DO_API(void, il2cpp_set_default_thread_affinity, (int64_t affinity_mask)); + + diff --git a/appdata/il2cpp-functions.h b/appdata/il2cpp-functions.h index 5555c79..412b369 100644 --- a/appdata/il2cpp-functions.h +++ b/appdata/il2cpp-functions.h @@ -1,5 +1,5 @@ // Generated C++ file by Il2CppInspector - http://www.djkaty.com - https://github.com/djkaty -// Target Unity version: 2021.2.0+ +// Target Unity version: 2021.2.0 - 2021.2.99 // ****************************************************************************** // * IL2CPP application-specific method definition addresses and signatures @@ -13,63 +13,63 @@ DO_APP_FUNC(0x0191A230, int32_t, Interop_Kernel32_CopyFileUWP, (String * src, St DO_APP_FUNC(0x0191A420, int32_t, Interop_Kernel32_CopyFile, (String * src, String * dst, bool failIfExists, MethodInfo * method)); DO_APP_FUNC(0x0191A630, bool, Interop_Kernel32_FreeLibrary, (void * hModule, MethodInfo * method)); DO_APP_FUNC(0x0191A6C0, SafeLibraryHandle *, Interop_Kernel32_LoadLibraryEx, (String * libFilename, void * reserved, int32_t flags, MethodInfo * method)); -DO_APP_FUNC(0x0191A800, bool, Interop_Kernel32_GetFileMUIPath, (uint32_t flags, String * filePath, StringBuilder * language, int32_t languageLength, StringBuilder * fileMuiPath, int32_t fileMuiPathLength, int64_t enumerator, MethodInfo * method)); -DO_APP_FUNC(0x0191A9A0, uint32_t, Interop_Kernel32_GetDynamicTimeZoneInformation, (Interop_Kernel32_TIME_DYNAMIC_ZONE_INFORMATION pTimeZoneInformation, MethodInfo * method)); -DO_APP_FUNC(0x0191AA30, uint32_t, Interop_Kernel32_GetTimeZoneInformation, (Interop_Kernel32_TIME_ZONE_INFORMATION lpTimeZoneInformation, MethodInfo * method)); +DO_APP_FUNC(0x0191A800, bool, Interop_Kernel32_GetFileMUIPath, (uint32_t flags, String * filePath, StringBuilder * language, int32_t * languageLength, StringBuilder * fileMuiPath, int32_t * fileMuiPathLength, int64_t * enumerator, MethodInfo * method)); +DO_APP_FUNC(0x0191A9A0, uint32_t, Interop_Kernel32_GetDynamicTimeZoneInformation, (Interop_Kernel32_TIME_DYNAMIC_ZONE_INFORMATION * pTimeZoneInformation, MethodInfo * method)); +DO_APP_FUNC(0x0191AA30, uint32_t, Interop_Kernel32_GetTimeZoneInformation, (Interop_Kernel32_TIME_ZONE_INFORMATION * lpTimeZoneInformation, MethodInfo * method)); DO_APP_FUNC(0x0191AAC0, bool, Interop_Kernel32_CloseHandle, (void * handle, MethodInfo * method)); -DO_APP_FUNC(0x0191AB50, int32_t, Interop_Kernel32_CopyFile2, (String * pwszExistingFileName, String * pwszNewFileName, Interop_Kernel32_COPYFILE2_EXTENDED_PARAMETERS pExtendedParameters, MethodInfo * method)); -DO_APP_FUNC(0x0191AC00, bool, Interop_Kernel32_CopyFileExPrivate, (String * src, String * dst, void * progressRoutine, void * progressData, int32_t cancel, int32_t flags, MethodInfo * method)); -DO_APP_FUNC(0x0191ACF0, bool, Interop_Kernel32_CopyFileEx, (String * src, String * dst, void * progressRoutine, void * progressData, int32_t cancel, int32_t flags, MethodInfo * method)); -DO_APP_FUNC(0x0191AE30, bool, Interop_Kernel32_CreateDirectoryPrivate, (String * path, Interop_Kernel32_SECURITY_ATTRIBUTES lpSecurityAttributes, MethodInfo * method)); -DO_APP_FUNC(0x0191AED0, bool, Interop_Kernel32_CreateDirectory, (String * path, Interop_Kernel32_SECURITY_ATTRIBUTES lpSecurityAttributes, MethodInfo * method)); +DO_APP_FUNC(0x0191AB50, int32_t, Interop_Kernel32_CopyFile2, (String * pwszExistingFileName, String * pwszNewFileName, Interop_Kernel32_COPYFILE2_EXTENDED_PARAMETERS * pExtendedParameters, MethodInfo * method)); +DO_APP_FUNC(0x0191AC00, bool, Interop_Kernel32_CopyFileExPrivate, (String * src, String * dst, void * progressRoutine, void * progressData, int32_t * cancel, int32_t flags, MethodInfo * method)); +DO_APP_FUNC(0x0191ACF0, bool, Interop_Kernel32_CopyFileEx, (String * src, String * dst, void * progressRoutine, void * progressData, int32_t * cancel, int32_t flags, MethodInfo * method)); +DO_APP_FUNC(0x0191AE30, bool, Interop_Kernel32_CreateDirectoryPrivate, (String * path, Interop_Kernel32_SECURITY_ATTRIBUTES * lpSecurityAttributes, MethodInfo * method)); +DO_APP_FUNC(0x0191AED0, bool, Interop_Kernel32_CreateDirectory, (String * path, Interop_Kernel32_SECURITY_ATTRIBUTES * lpSecurityAttributes, MethodInfo * method)); DO_APP_FUNC(0x0191AFC0, void *, Interop_Kernel32_CreateFilePrivate, (String * lpFileName, int32_t dwDesiredAccess, FileShare__Enum dwShareMode, Interop_Kernel32_SECURITY_ATTRIBUTES * securityAttrs, FileMode__Enum dwCreationDisposition, int32_t dwFlagsAndAttributes, void * hTemplateFile, MethodInfo * method)); DO_APP_FUNC(0x0191B0A0, SafeFileHandle *, Interop_Kernel32_CreateFile, (String * lpFileName, int32_t dwDesiredAccess, FileShare__Enum dwShareMode, FileMode__Enum dwCreationDisposition, int32_t dwFlagsAndAttributes, MethodInfo * method)); DO_APP_FUNC(0x0191B1C0, void *, Interop_Kernel32_CreateFile_IntPtr, (String * lpFileName, int32_t dwDesiredAccess, FileShare__Enum dwShareMode, FileMode__Enum dwCreationDisposition, int32_t dwFlagsAndAttributes, MethodInfo * method)); DO_APP_FUNC(0x0191B300, bool, Interop_Kernel32_DeleteFilePrivate, (String * path, MethodInfo * method)); DO_APP_FUNC(0x0191B3A0, bool, Interop_Kernel32_DeleteFile, (String * path, MethodInfo * method)); -DO_APP_FUNC(0x0191B480, SafeFindHandle *, Interop_Kernel32_FindFirstFileExPrivate, (String * lpFileName, Interop_Kernel32_FINDEX_INFO_LEVELS__Enum fInfoLevelId, Interop_Kernel32_WIN32_FIND_DATA lpFindFileData, Interop_Kernel32_FINDEX_SEARCH_OPS__Enum fSearchOp, void * lpSearchFilter, int32_t dwAdditionalFlags, MethodInfo * method)); -DO_APP_FUNC(0x0191B5A0, SafeFindHandle *, Interop_Kernel32_FindFirstFile, (String * fileName, Interop_Kernel32_WIN32_FIND_DATA data, MethodInfo * method)); +DO_APP_FUNC(0x0191B480, SafeFindHandle *, Interop_Kernel32_FindFirstFileExPrivate, (String * lpFileName, Interop_Kernel32_FINDEX_INFO_LEVELS__Enum fInfoLevelId, Interop_Kernel32_WIN32_FIND_DATA * lpFindFileData, Interop_Kernel32_FINDEX_SEARCH_OPS__Enum fSearchOp, void * lpSearchFilter, int32_t dwAdditionalFlags, MethodInfo * method)); +DO_APP_FUNC(0x0191B5A0, SafeFindHandle *, Interop_Kernel32_FindFirstFile, (String * fileName, Interop_Kernel32_WIN32_FIND_DATA * data, MethodInfo * method)); DO_APP_FUNC(0x0191B710, int32_t, Interop_Kernel32_FormatMessage, (int32_t dwFlags, void * lpSource, uint32_t dwMessageId, int32_t dwLanguageId, uint16_t * lpBuffer, int32_t nSize, IntPtr__Array * arguments, MethodInfo * method)); DO_APP_FUNC(0x0191B800, String *, Interop_Kernel32_GetMessage, (int32_t errorCode, MethodInfo * method)); DO_APP_FUNC(0x0191B850, String *, Interop_Kernel32_GetMessage_1, (void * moduleHandle, int32_t errorCode, MethodInfo * method)); -DO_APP_FUNC(0x0191BA90, bool, Interop_Kernel32_TryGetErrorMessage, (void * moduleHandle, int32_t errorCode, Span_1_Char_ buffer, String * errorMsg, MethodInfo * method)); -DO_APP_FUNC(0x0191BE90, bool, Interop_Kernel32_GetFileAttributesExPrivate, (String * name, Interop_Kernel32_GET_FILEEX_INFO_LEVELS__Enum fileInfoLevel, Interop_Kernel32_WIN32_FILE_ATTRIBUTE_DATA lpFileInformation, MethodInfo * method)); -DO_APP_FUNC(0x0191BF40, bool, Interop_Kernel32_GetFileAttributesEx, (String * name, Interop_Kernel32_GET_FILEEX_INFO_LEVELS__Enum fileInfoLevel, Interop_Kernel32_WIN32_FILE_ATTRIBUTE_DATA lpFileInformation, MethodInfo * method)); +DO_APP_FUNC(0x0191BA90, bool, Interop_Kernel32_TryGetErrorMessage, (void * moduleHandle, int32_t errorCode, Span_1_Char_ buffer, String * * errorMsg, MethodInfo * method)); +DO_APP_FUNC(0x0191BE90, bool, Interop_Kernel32_GetFileAttributesExPrivate, (String * name, Interop_Kernel32_GET_FILEEX_INFO_LEVELS__Enum fileInfoLevel, Interop_Kernel32_WIN32_FILE_ATTRIBUTE_DATA * lpFileInformation, MethodInfo * method)); +DO_APP_FUNC(0x0191BF40, bool, Interop_Kernel32_GetFileAttributesEx, (String * name, Interop_Kernel32_GET_FILEEX_INFO_LEVELS__Enum fileInfoLevel, Interop_Kernel32_WIN32_FILE_ATTRIBUTE_DATA * lpFileInformation, MethodInfo * method)); DO_APP_FUNC(0x0191C040, bool, Interop_Kernel32_GetFileInformationByHandleEx, (void * hFile, Interop_Kernel32_FILE_INFO_BY_HANDLE_CLASS__Enum FileInformationClass, void * lpFileInformation, uint32_t dwBufferSize, MethodInfo * method)); DO_APP_FUNC(0x0191C0F0, int32_t, Interop_Kernel32_GetLogicalDrives, (MethodInfo * method)); DO_APP_FUNC(0x0191C170, bool, Interop_Kernel32_MoveFileExPrivate, (String * src, String * dst, uint32_t flags, MethodInfo * method)); DO_APP_FUNC(0x0191C230, bool, Interop_Kernel32_MoveFile, (String * src, String * dst, MethodInfo * method)); DO_APP_FUNC(0x0191C340, bool, Interop_Kernel32_SetFileAttributesPrivate, (String * name, int32_t attr, MethodInfo * method)); DO_APP_FUNC(0x0191C3E0, bool, Interop_Kernel32_SetFileAttributes, (String * name, int32_t attr, MethodInfo * method)); -DO_APP_FUNC(0x0191C4D0, bool, Interop_Kernel32_SetThreadErrorMode, (uint32_t dwNewMode, uint32_t lpOldMode, MethodInfo * method)); -DO_APP_FUNC(0x0191C570, void, Interop_Kernel32_WIN32_FIND_DATA_SetFileName, (Interop_Kernel32_WIN32_FIND_DATA__Boxed * __this, String * fileName, MethodInfo * method)); -DO_APP_FUNC(0x0191C630, void, Interop_Kernel32_REG_TZI_FORMAT__ctor, (Interop_Kernel32_REG_TZI_FORMAT__Boxed * __this, Interop_Kernel32_TIME_ZONE_INFORMATION tzi, MethodInfo * method)); -DO_APP_FUNC(0x0191C660, bool, Interop_Kernel32_SYSTEMTIME_Equals, (Interop_Kernel32_SYSTEMTIME__Boxed * __this, Interop_Kernel32_SYSTEMTIME other, MethodInfo * method)); -DO_APP_FUNC(0x0191C6C0, String *, Interop_Kernel32_TIME_DYNAMIC_ZONE_INFORMATION_GetTimeZoneKeyName, (Interop_Kernel32_TIME_DYNAMIC_ZONE_INFORMATION__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0191C6E0, void, Interop_Kernel32_TIME_ZONE_INFORMATION__ctor, (Interop_Kernel32_TIME_ZONE_INFORMATION__Boxed * __this, Interop_Kernel32_TIME_DYNAMIC_ZONE_INFORMATION dtzi, MethodInfo * method)); -DO_APP_FUNC(0x0191C800, String *, Interop_Kernel32_TIME_ZONE_INFORMATION_GetStandardName, (Interop_Kernel32_TIME_ZONE_INFORMATION__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0191C810, String *, Interop_Kernel32_TIME_ZONE_INFORMATION_GetDaylightName, (Interop_Kernel32_TIME_ZONE_INFORMATION__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0191C820, int64_t, Interop_Kernel32_FILE_TIME_ToTicks, (Interop_Kernel32_FILE_TIME__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0191C830, DateTimeOffset, Interop_Kernel32_FILE_TIME_ToDateTimeOffset, (Interop_Kernel32_FILE_TIME__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0191C900, void, Interop_Kernel32_WIN32_FILE_ATTRIBUTE_DATA_PopulateFrom, (Interop_Kernel32_WIN32_FILE_ATTRIBUTE_DATA__Boxed * __this, Interop_Kernel32_WIN32_FIND_DATA findData, MethodInfo * method)); +DO_APP_FUNC(0x0191C4D0, bool, Interop_Kernel32_SetThreadErrorMode, (uint32_t dwNewMode, uint32_t * lpOldMode, MethodInfo * method)); +DO_APP_FUNC(0x0191C570, void, Interop_Kernel32_WIN32_FIND_DATA_SetFileName, (Interop_Kernel32_WIN32_FIND_DATA * __this, String * fileName, MethodInfo * method)); +DO_APP_FUNC(0x0191C630, void, Interop_Kernel32_REG_TZI_FORMAT__ctor, (Interop_Kernel32_REG_TZI_FORMAT * __this, Interop_Kernel32_TIME_ZONE_INFORMATION * tzi, MethodInfo * method)); +DO_APP_FUNC(0x0191C660, bool, Interop_Kernel32_SYSTEMTIME_Equals, (Interop_Kernel32_SYSTEMTIME * __this, Interop_Kernel32_SYSTEMTIME * other, MethodInfo * method)); +DO_APP_FUNC(0x0191C6C0, String *, Interop_Kernel32_TIME_DYNAMIC_ZONE_INFORMATION_GetTimeZoneKeyName, (Interop_Kernel32_TIME_DYNAMIC_ZONE_INFORMATION * __this, MethodInfo * method)); +DO_APP_FUNC(0x0191C6E0, void, Interop_Kernel32_TIME_ZONE_INFORMATION__ctor, (Interop_Kernel32_TIME_ZONE_INFORMATION * __this, Interop_Kernel32_TIME_DYNAMIC_ZONE_INFORMATION * dtzi, MethodInfo * method)); +DO_APP_FUNC(0x0191C800, String *, Interop_Kernel32_TIME_ZONE_INFORMATION_GetStandardName, (Interop_Kernel32_TIME_ZONE_INFORMATION * __this, MethodInfo * method)); +DO_APP_FUNC(0x0191C810, String *, Interop_Kernel32_TIME_ZONE_INFORMATION_GetDaylightName, (Interop_Kernel32_TIME_ZONE_INFORMATION * __this, MethodInfo * method)); +DO_APP_FUNC(0x0191C820, int64_t, Interop_Kernel32_FILE_TIME_ToTicks, (Interop_Kernel32_FILE_TIME * __this, MethodInfo * method)); +DO_APP_FUNC(0x0191C830, DateTimeOffset, Interop_Kernel32_FILE_TIME_ToDateTimeOffset, (Interop_Kernel32_FILE_TIME * __this, MethodInfo * method)); +DO_APP_FUNC(0x0191C900, void, Interop_Kernel32_WIN32_FILE_ATTRIBUTE_DATA_PopulateFrom, (Interop_Kernel32_WIN32_FILE_ATTRIBUTE_DATA * __this, Interop_Kernel32_WIN32_FIND_DATA * findData, MethodInfo * method)); DO_APP_FUNC(0x0191C930, Interop_BCrypt_NTSTATUS__Enum, Interop_BCrypt_BCryptGenRandom, (void * hAlgorithm, uint8_t * pbBuffer, int32_t cbBuffer, int32_t dwFlags, MethodInfo * method)); DO_APP_FUNC(0x0191C9E0, int32_t, Interop_User32_LoadString, (SafeLibraryHandle * handle, int32_t id, StringBuilder * buffer, int32_t bufferLength, MethodInfo * method)); -DO_APP_FUNC(0x0191CB30, int32_t, Interop_NtDll_NtCreateFile, (void * FileHandle, Interop_NtDll_DesiredAccess__Enum DesiredAccess, Interop_NtDll_OBJECT_ATTRIBUTES ObjectAttributes, Interop_NtDll_IO_STATUS_BLOCK IoStatusBlock, int64_t * AllocationSize, FileAttributes__Enum FileAttributes, FileShare__Enum ShareAccess, Interop_NtDll_CreateDisposition__Enum CreateDisposition, Interop_NtDll_CreateOptions__Enum CreateOptions, Void * EaBuffer, uint32_t EaLength, MethodInfo * method)); +DO_APP_FUNC(0x0191CB30, int32_t, Interop_NtDll_NtCreateFile, (void * * FileHandle, Interop_NtDll_DesiredAccess__Enum DesiredAccess, Interop_NtDll_OBJECT_ATTRIBUTES * ObjectAttributes, Interop_NtDll_IO_STATUS_BLOCK * IoStatusBlock, int64_t * AllocationSize, FileAttributes__Enum FileAttributes, FileShare__Enum ShareAccess, Interop_NtDll_CreateDisposition__Enum CreateDisposition, Interop_NtDll_CreateOptions__Enum CreateOptions, Void * EaBuffer, uint32_t EaLength, MethodInfo * method)); DO_APP_FUNC(0x0191CBE0, ValueTuple_2_Int32_IntPtr_, Interop_NtDll_CreateFile, (ReadOnlySpan_1_Char_ path, void * rootDirectory, Interop_NtDll_CreateDisposition__Enum createDisposition, Interop_NtDll_DesiredAccess__Enum desiredAccess, FileShare__Enum shareAccess, FileAttributes__Enum fileAttributes, Interop_NtDll_CreateOptions__Enum createOptions, Interop_NtDll_ObjectAttributes__Enum objectAttributes, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C94920, Interop_NtDll_CreateFile__MethodInfo); -DO_APP_FUNC(0x0191CE50, int32_t, Interop_NtDll_NtQueryDirectoryFile, (void * FileHandle, void * Event, void * ApcRoutine, void * ApcContext, Interop_NtDll_IO_STATUS_BLOCK IoStatusBlock, void * FileInformation, uint32_t Length, Interop_NtDll_FILE_INFORMATION_CLASS__Enum FileInformationClass, Interop_BOOLEAN__Enum ReturnSingleEntry, Interop_UNICODE_STRING * FileName, Interop_BOOLEAN__Enum RestartScan, MethodInfo * method)); +DO_APP_FUNC(0x0191CE50, int32_t, Interop_NtDll_NtQueryDirectoryFile, (void * FileHandle, void * Event, void * ApcRoutine, void * ApcContext, Interop_NtDll_IO_STATUS_BLOCK * IoStatusBlock, void * FileInformation, uint32_t Length, Interop_NtDll_FILE_INFORMATION_CLASS__Enum FileInformationClass, Interop_BOOLEAN__Enum ReturnSingleEntry, Interop_UNICODE_STRING * FileName, Interop_BOOLEAN__Enum RestartScan, MethodInfo * method)); DO_APP_FUNC(0x0191CF20, uint32_t, Interop_NtDll_RtlNtStatusToDosError, (int32_t Status, MethodInfo * method)); -DO_APP_FUNC(0x0191CFA0, ReadOnlySpan_1_Char_, Interop_NtDll_FILE_FULL_DIR_INFORMATION_get_FileName, (Interop_NtDll_FILE_FULL_DIR_INFORMATION__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0191CFA0, ReadOnlySpan_1_Char_, Interop_NtDll_FILE_FULL_DIR_INFORMATION_get_FileName, (Interop_NtDll_FILE_FULL_DIR_INFORMATION * __this, MethodInfo * method)); DO_APP_FUNC(0x0191D030, Interop_NtDll_FILE_FULL_DIR_INFORMATION *, Interop_NtDll_FILE_FULL_DIR_INFORMATION_GetNextInfo, (Interop_NtDll_FILE_FULL_DIR_INFORMATION * info, MethodInfo * method)); -DO_APP_FUNC(0x0191D050, void, Interop_NtDll_OBJECT_ATTRIBUTES__ctor, (Interop_NtDll_OBJECT_ATTRIBUTES__Boxed * __this, Interop_UNICODE_STRING * objectName, Interop_NtDll_ObjectAttributes__Enum attributes, void * rootDirectory, MethodInfo * method)); +DO_APP_FUNC(0x0191D050, void, Interop_NtDll_OBJECT_ATTRIBUTES__ctor, (Interop_NtDll_OBJECT_ATTRIBUTES * __this, Interop_UNICODE_STRING * objectName, Interop_NtDll_ObjectAttributes__Enum attributes, void * rootDirectory, MethodInfo * method)); DO_APP_FUNC(0x0191D070, int32_t, Interop_Advapi32_RegCloseKey, (void * hKey, MethodInfo * method)); -DO_APP_FUNC(0x0191D0F0, int32_t, Interop_Advapi32_RegEnumKeyEx, (SafeRegistryHandle * hKey, int32_t dwIndex, Char__Array * lpName, int32_t lpcbName, Int32__Array * lpReserved, StringBuilder * lpClass, Int32__Array * lpcbClass, Int64__Array * lpftLastWriteTime, MethodInfo * method)); -DO_APP_FUNC(0x0191D2E0, int32_t, Interop_Advapi32_RegOpenKeyEx, (SafeRegistryHandle * hKey, String * lpSubKey, int32_t ulOptions, int32_t samDesired, SafeRegistryHandle * hkResult, MethodInfo * method)); -DO_APP_FUNC(0x0191D4E0, int32_t, Interop_Advapi32_RegQueryInfoKey, (SafeRegistryHandle * hKey, StringBuilder * lpClass, Int32__Array * lpcbClass, void * lpReserved_MustBeZero, int32_t lpcSubKeys, Int32__Array * lpcbMaxSubKeyLen, Int32__Array * lpcbMaxClassLen, int32_t lpcValues, Int32__Array * lpcbMaxValueNameLen, Int32__Array * lpcbMaxValueLen, Int32__Array * lpcbSecurityDescriptor, Int32__Array * lpftLastWriteTime, MethodInfo * method)); -DO_APP_FUNC(0x0191D720, int32_t, Interop_Advapi32_RegQueryValueEx, (SafeRegistryHandle * hKey, String * lpValueName, Int32__Array * lpReserved, int32_t lpType, Byte__Array * lpData, int32_t lpcbData, MethodInfo * method)); -DO_APP_FUNC(0x0191D8C0, int32_t, Interop_Advapi32_RegQueryValueEx_1, (SafeRegistryHandle * hKey, String * lpValueName, Int32__Array * lpReserved, int32_t lpType, int32_t lpData, int32_t lpcbData, MethodInfo * method)); -DO_APP_FUNC(0x0191D9F0, int32_t, Interop_Advapi32_RegQueryValueEx_2, (SafeRegistryHandle * hKey, String * lpValueName, Int32__Array * lpReserved, int32_t lpType, int64_t lpData, int32_t lpcbData, MethodInfo * method)); -DO_APP_FUNC(0x0191DB20, int32_t, Interop_Advapi32_RegQueryValueEx_3, (SafeRegistryHandle * hKey, String * lpValueName, Int32__Array * lpReserved, int32_t lpType, Char__Array * lpData, int32_t lpcbData, MethodInfo * method)); +DO_APP_FUNC(0x0191D0F0, int32_t, Interop_Advapi32_RegEnumKeyEx, (SafeRegistryHandle * hKey, int32_t dwIndex, Char__Array * lpName, int32_t * lpcbName, Int32__Array * lpReserved, StringBuilder * lpClass, Int32__Array * lpcbClass, Int64__Array * lpftLastWriteTime, MethodInfo * method)); +DO_APP_FUNC(0x0191D2E0, int32_t, Interop_Advapi32_RegOpenKeyEx, (SafeRegistryHandle * hKey, String * lpSubKey, int32_t ulOptions, int32_t samDesired, SafeRegistryHandle * * hkResult, MethodInfo * method)); +DO_APP_FUNC(0x0191D4E0, int32_t, Interop_Advapi32_RegQueryInfoKey, (SafeRegistryHandle * hKey, StringBuilder * lpClass, Int32__Array * lpcbClass, void * lpReserved_MustBeZero, int32_t * lpcSubKeys, Int32__Array * lpcbMaxSubKeyLen, Int32__Array * lpcbMaxClassLen, int32_t * lpcValues, Int32__Array * lpcbMaxValueNameLen, Int32__Array * lpcbMaxValueLen, Int32__Array * lpcbSecurityDescriptor, Int32__Array * lpftLastWriteTime, MethodInfo * method)); +DO_APP_FUNC(0x0191D720, int32_t, Interop_Advapi32_RegQueryValueEx, (SafeRegistryHandle * hKey, String * lpValueName, Int32__Array * lpReserved, int32_t * lpType, Byte__Array * lpData, int32_t * lpcbData, MethodInfo * method)); +DO_APP_FUNC(0x0191D8C0, int32_t, Interop_Advapi32_RegQueryValueEx_1, (SafeRegistryHandle * hKey, String * lpValueName, Int32__Array * lpReserved, int32_t * lpType, int32_t * lpData, int32_t * lpcbData, MethodInfo * method)); +DO_APP_FUNC(0x0191D9F0, int32_t, Interop_Advapi32_RegQueryValueEx_2, (SafeRegistryHandle * hKey, String * lpValueName, Int32__Array * lpReserved, int32_t * lpType, int64_t * lpData, int32_t * lpcbData, MethodInfo * method)); +DO_APP_FUNC(0x0191DB20, int32_t, Interop_Advapi32_RegQueryValueEx_3, (SafeRegistryHandle * hKey, String * lpValueName, Int32__Array * lpReserved, int32_t * lpType, Char__Array * lpData, int32_t * lpcbData, MethodInfo * method)); DO_APP_FUNC(0x00A1B820, String *, Locale_GetText, (String * msg, MethodInfo * method)); DO_APP_FUNC(0x018DDD10, String *, Locale_GetText_1, (String * fmt, Object__Array * args, MethodInfo * method)); DO_APP_FUNC(0x0191DCD0, String *, SR_GetString, (String * name, Object__Array * args, MethodInfo * method)); @@ -95,7 +95,7 @@ DO_APP_FUNC(0x0191E870, int32_t, DataConverter_Align, (int32_t current, int32_t DO_APP_FUNC(0x0191E890, Byte__Array *, DataConverter_Pack, (String * description, Object__Array * args, MethodInfo * method)); DO_APP_FUNC(0x0191EAA0, bool, DataConverter_PackOne, (DataConverter_PackContext * b, Object * oarg, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C947A0, DataConverter_PackOne__MethodInfo); -DO_APP_FUNC(0x0191F990, bool, DataConverter_Prepare, (Byte__Array * buffer, int32_t idx, int32_t size, bool align, MethodInfo * method)); +DO_APP_FUNC(0x0191F990, bool, DataConverter_Prepare, (Byte__Array * buffer, int32_t * idx, int32_t size, bool * align, MethodInfo * method)); DO_APP_FUNC(0x0191FA50, IList *, DataConverter_Unpack, (String * description, Byte__Array * buffer, int32_t startIndex, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C947E0, DataConverter_Unpack__MethodInfo); DO_APP_FUNC(0x01920A50, void, DataConverter_Check, (DataConverter * __this, Byte__Array * dest, int32_t destIdx, int32_t size, MethodInfo * method)); @@ -163,51 +163,51 @@ DO_APP_FUNC(0x019238F0, ISystemDependencyProvider *, DependencyInjector_Reflecti DO_APP_FUNC_METHODINFO(0x03C945B0, DependencyInjector_ReflectionLoad__MethodInfo); DO_APP_FUNC(0x01923AC0, void, DependencyInjector__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01923B80, void, Runtime__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x00A9A2A0, void, RuntimeClassHandle__ctor, (RuntimeClassHandle__Boxed * __this, RuntimeStructs_MonoClass * value, MethodInfo * method)); -DO_APP_FUNC(0x00A9A2A0, void, RuntimeClassHandle__ctor_1, (RuntimeClassHandle__Boxed * __this, void * ptr, MethodInfo * method)); -DO_APP_FUNC(0x00471910, RuntimeStructs_MonoClass *, RuntimeClassHandle_get_Value, (RuntimeClassHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01923C40, bool, RuntimeClassHandle_Equals, (RuntimeClassHandle__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, RuntimeClassHandle_GetHashCode, (RuntimeClassHandle__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9A2A0, void, RuntimeClassHandle__ctor, (RuntimeClassHandle * __this, RuntimeStructs_MonoClass * value, MethodInfo * method)); +DO_APP_FUNC(0x00A9A2A0, void, RuntimeClassHandle__ctor_1, (RuntimeClassHandle * __this, void * ptr, MethodInfo * method)); +DO_APP_FUNC(0x00471910, RuntimeStructs_MonoClass *, RuntimeClassHandle_get_Value, (RuntimeClassHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x01923C40, bool, RuntimeClassHandle_Equals, (RuntimeClassHandle * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, RuntimeClassHandle_GetHashCode, (RuntimeClassHandle * __this, MethodInfo * method)); DO_APP_FUNC(0x01923D30, void *, RuntimeClassHandle_GetTypeFromClass, (RuntimeStructs_MonoClass * klass, MethodInfo * method)); -DO_APP_FUNC(0x01923D40, RuntimeTypeHandle, RuntimeClassHandle_GetTypeHandle, (RuntimeClassHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01923D50, RuntimeClassHandle, RuntimeRemoteClassHandle_get_ProxyClass, (RuntimeRemoteClassHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9A2A0, void, RuntimeGenericParamInfoHandle__ctor, (RuntimeGenericParamInfoHandle__Boxed * __this, void * ptr, MethodInfo * method)); -DO_APP_FUNC(0x01923D70, Type__Array *, RuntimeGenericParamInfoHandle_get_Constraints, (RuntimeGenericParamInfoHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01923D80, GenericParameterAttributes__Enum, RuntimeGenericParamInfoHandle_get_Attributes, (RuntimeGenericParamInfoHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01923DA0, Type__Array *, RuntimeGenericParamInfoHandle_GetConstraints, (RuntimeGenericParamInfoHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01923FC0, int32_t, RuntimeGenericParamInfoHandle_GetConstraintsCount, (RuntimeGenericParamInfoHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9A2A0, void, RuntimeEventHandle__ctor, (RuntimeEventHandle__Boxed * __this, void * v, MethodInfo * method)); -DO_APP_FUNC(0x00471910, void *, RuntimeEventHandle_get_Value, (RuntimeEventHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01923FF0, bool, RuntimeEventHandle_Equals, (RuntimeEventHandle__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, RuntimeEventHandle_GetHashCode, (RuntimeEventHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9A2A0, void, RuntimePropertyHandle__ctor, (RuntimePropertyHandle__Boxed * __this, void * v, MethodInfo * method)); -DO_APP_FUNC(0x00471910, void *, RuntimePropertyHandle_get_Value, (RuntimePropertyHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x019240E0, bool, RuntimePropertyHandle_Equals, (RuntimePropertyHandle__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, RuntimePropertyHandle_GetHashCode, (RuntimePropertyHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9A2A0, void, RuntimeGPtrArrayHandle__ctor, (RuntimeGPtrArrayHandle__Boxed * __this, void * ptr, MethodInfo * method)); -DO_APP_FUNC(0x019241D0, int32_t, RuntimeGPtrArrayHandle_get_Length, (RuntimeGPtrArrayHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x019241F0, void *, RuntimeGPtrArrayHandle_get_Item, (RuntimeGPtrArrayHandle__Boxed * __this, int32_t i, MethodInfo * method)); -DO_APP_FUNC(0x01924200, void *, RuntimeGPtrArrayHandle_Lookup, (RuntimeGPtrArrayHandle__Boxed * __this, int32_t i, MethodInfo * method)); +DO_APP_FUNC(0x01923D40, RuntimeTypeHandle, RuntimeClassHandle_GetTypeHandle, (RuntimeClassHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x01923D50, RuntimeClassHandle, RuntimeRemoteClassHandle_get_ProxyClass, (RuntimeRemoteClassHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9A2A0, void, RuntimeGenericParamInfoHandle__ctor, (RuntimeGenericParamInfoHandle * __this, void * ptr, MethodInfo * method)); +DO_APP_FUNC(0x01923D70, Type__Array *, RuntimeGenericParamInfoHandle_get_Constraints, (RuntimeGenericParamInfoHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x01923D80, GenericParameterAttributes__Enum, RuntimeGenericParamInfoHandle_get_Attributes, (RuntimeGenericParamInfoHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x01923DA0, Type__Array *, RuntimeGenericParamInfoHandle_GetConstraints, (RuntimeGenericParamInfoHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x01923FC0, int32_t, RuntimeGenericParamInfoHandle_GetConstraintsCount, (RuntimeGenericParamInfoHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9A2A0, void, RuntimeEventHandle__ctor, (RuntimeEventHandle * __this, void * v, MethodInfo * method)); +DO_APP_FUNC(0x00471910, void *, RuntimeEventHandle_get_Value, (RuntimeEventHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x01923FF0, bool, RuntimeEventHandle_Equals, (RuntimeEventHandle * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, RuntimeEventHandle_GetHashCode, (RuntimeEventHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9A2A0, void, RuntimePropertyHandle__ctor, (RuntimePropertyHandle * __this, void * v, MethodInfo * method)); +DO_APP_FUNC(0x00471910, void *, RuntimePropertyHandle_get_Value, (RuntimePropertyHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x019240E0, bool, RuntimePropertyHandle_Equals, (RuntimePropertyHandle * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, RuntimePropertyHandle_GetHashCode, (RuntimePropertyHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9A2A0, void, RuntimeGPtrArrayHandle__ctor, (RuntimeGPtrArrayHandle * __this, void * ptr, MethodInfo * method)); +DO_APP_FUNC(0x019241D0, int32_t, RuntimeGPtrArrayHandle_get_Length, (RuntimeGPtrArrayHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x019241F0, void *, RuntimeGPtrArrayHandle_get_Item, (RuntimeGPtrArrayHandle * __this, int32_t i, MethodInfo * method)); +DO_APP_FUNC(0x01924200, void *, RuntimeGPtrArrayHandle_Lookup, (RuntimeGPtrArrayHandle * __this, int32_t i, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C94550, RuntimeGPtrArrayHandle_Lookup__MethodInfo); DO_APP_FUNC(0x01924280, void, RuntimeGPtrArrayHandle_GPtrArrayFree, (RuntimeStructs_GPtrArray * value, MethodInfo * method)); -DO_APP_FUNC(0x019242C0, void, RuntimeGPtrArrayHandle_DestroyAndFree, (RuntimeGPtrArrayHandle h, MethodInfo * method)); +DO_APP_FUNC(0x019242C0, void, RuntimeGPtrArrayHandle_DestroyAndFree, (RuntimeGPtrArrayHandle * h, MethodInfo * method)); DO_APP_FUNC(0x01924320, String *, RuntimeMarshal_PtrToUtf8String, (void * ptr, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C944A8, RuntimeMarshal_PtrToUtf8String__MethodInfo); DO_APP_FUNC(0x01924450, SafeStringMarshal, RuntimeMarshal_MarshalString, (String * str, MethodInfo * method)); -DO_APP_FUNC(0x01924470, int32_t, RuntimeMarshal_DecodeBlobSize, (void * in_ptr, void * out_ptr, MethodInfo * method)); +DO_APP_FUNC(0x01924470, int32_t, RuntimeMarshal_DecodeBlobSize, (void * in_ptr, void * * out_ptr, MethodInfo * method)); DO_APP_FUNC(0x019244D0, Byte__Array *, RuntimeMarshal_DecodeBlobArray, (void * ptr, MethodInfo * method)); DO_APP_FUNC(0x019245C0, int32_t, RuntimeMarshal_AsciHexDigitValue, (int32_t c, MethodInfo * method)); -DO_APP_FUNC(0x019245F0, void, RuntimeMarshal_FreeAssemblyName, (MonoAssemblyName name, bool freeStruct, MethodInfo * method)); -DO_APP_FUNC(0x00A9A2A0, void, SafeGPtrArrayHandle__ctor, (SafeGPtrArrayHandle__Boxed * __this, void * ptr, MethodInfo * method)); -DO_APP_FUNC(0x019242C0, void, SafeGPtrArrayHandle_Dispose, (SafeGPtrArrayHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x019241D0, int32_t, SafeGPtrArrayHandle_get_Length, (SafeGPtrArrayHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x019241F0, void *, SafeGPtrArrayHandle_get_Item, (SafeGPtrArrayHandle__Boxed * __this, int32_t i, MethodInfo * method)); -DO_APP_FUNC(0x01924630, void *, SafeStringMarshal_StringToUtf8_icall, (String * str, MethodInfo * method)); +DO_APP_FUNC(0x019245F0, void, RuntimeMarshal_FreeAssemblyName, (MonoAssemblyName * name, bool freeStruct, MethodInfo * method)); +DO_APP_FUNC(0x00A9A2A0, void, SafeGPtrArrayHandle__ctor, (SafeGPtrArrayHandle * __this, void * ptr, MethodInfo * method)); +DO_APP_FUNC(0x019242C0, void, SafeGPtrArrayHandle_Dispose, (SafeGPtrArrayHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x019241D0, int32_t, SafeGPtrArrayHandle_get_Length, (SafeGPtrArrayHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x019241F0, void *, SafeGPtrArrayHandle_get_Item, (SafeGPtrArrayHandle * __this, int32_t i, MethodInfo * method)); +DO_APP_FUNC(0x01924630, void *, SafeStringMarshal_StringToUtf8_icall, (String * * str, MethodInfo * method)); DO_APP_FUNC(0x01924710, void *, SafeStringMarshal_StringToUtf8, (String * str, MethodInfo * method)); DO_APP_FUNC(0x019247F0, void, SafeStringMarshal_GFree, (void * ptr, MethodInfo * method)); -DO_APP_FUNC(0x01924800, void, SafeStringMarshal__ctor, (SafeStringMarshal__Boxed * __this, String * str, MethodInfo * method)); -DO_APP_FUNC(0x019248B0, void *, SafeStringMarshal_get_Value, (SafeStringMarshal__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x019249E0, void, SafeStringMarshal_Dispose, (SafeStringMarshal__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01924800, void, SafeStringMarshal__ctor, (SafeStringMarshal * __this, String * str, MethodInfo * method)); +DO_APP_FUNC(0x019248B0, void *, SafeStringMarshal_get_Value, (SafeStringMarshal * __this, MethodInfo * method)); +DO_APP_FUNC(0x019249E0, void, SafeStringMarshal_Dispose, (SafeStringMarshal * __this, MethodInfo * method)); DO_APP_FUNC(0x01924A50, void, SecurityParser__ctor, (SecurityParser * __this, MethodInfo * method)); DO_APP_FUNC(0x01924B10, void, SecurityParser_LoadXml, (SecurityParser * __this, String * xml, MethodInfo * method)); DO_APP_FUNC(0x003C91C0, SecurityElement *, SecurityParser_ToXml, (SecurityParser * __this, MethodInfo * method)); @@ -264,7 +264,7 @@ DO_APP_FUNC(0x019285A0, void, SmallXmlParserException__ctor, (SmallXmlParserExce DO_APP_FUNC(0x003AE050, void, MonoPInvokeCallbackAttribute__ctor, (MonoPInvokeCallbackAttribute * __this, Type * t, MethodInfo * method)); DO_APP_FUNC(0x019286C0, void, CodePointIndexer__ctor, (CodePointIndexer * __this, Int32__Array * starts, Int32__Array * ends, int32_t defaultIndex, int32_t defaultCP, MethodInfo * method)); DO_APP_FUNC(0x019288B0, int32_t, CodePointIndexer_ToIndex, (CodePointIndexer * __this, int32_t cp, MethodInfo * method)); -DO_APP_FUNC(0x01928940, void, CodePointIndexer_TableRange__ctor, (CodePointIndexer_TableRange__Boxed * __this, int32_t start, int32_t end, int32_t indexStart, MethodInfo * method)); +DO_APP_FUNC(0x01928940, void, CodePointIndexer_TableRange__ctor, (CodePointIndexer_TableRange * __this, int32_t start, int32_t end, int32_t indexStart, MethodInfo * method)); DO_APP_FUNC(0x0110B1C0, void, TailoringInfo__ctor, (TailoringInfo * __this, int32_t lcid, int32_t tailoringIndex, int32_t tailoringCount, bool frenchSort, MethodInfo * method)); DO_APP_FUNC(0x01928960, void, Contraction__ctor, (Contraction * __this, int32_t index, Char__Array * source, String * replacement, Byte__Array * sortkey, MethodInfo * method)); DO_APP_FUNC(0x01928A60, int32_t, ContractionComparer_Compare, (ContractionComparer * __this, Contraction * c1, Contraction * c2, MethodInfo * method)); @@ -272,9 +272,9 @@ DO_APP_FUNC(0x003AE050, void, ContractionComparer__ctor, (ContractionComparer * DO_APP_FUNC(0x01928B60, void, ContractionComparer__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01928C10, void, Level2Map__ctor, (Level2Map * __this, uint8_t source, uint8_t replace, MethodInfo * method)); DO_APP_FUNC(0x01928C20, TailoringInfo *, MSCompatUnicodeTable_GetTailoringInfo, (int32_t lcid, MethodInfo * method)); -DO_APP_FUNC(0x01928D30, void, MSCompatUnicodeTable_BuildTailoringTables, (CultureInfo * culture, TailoringInfo * t, Contraction__Array * contractions, Level2Map__Array * diacriticals, MethodInfo * method)); +DO_APP_FUNC(0x01928D30, void, MSCompatUnicodeTable_BuildTailoringTables, (CultureInfo * culture, TailoringInfo * t, Contraction__Array * * contractions, Level2Map__Array * * diacriticals, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C94100, MSCompatUnicodeTable_BuildTailoringTables__MethodInfo); -DO_APP_FUNC(0x01929530, void, MSCompatUnicodeTable_SetCJKReferences, (String * name, CodePointIndexer * cjkIndexer, uint8_t * catTable, uint8_t * lv1Table, CodePointIndexer * lv2Indexer, uint8_t * lv2Table, MethodInfo * method)); +DO_APP_FUNC(0x01929530, void, MSCompatUnicodeTable_SetCJKReferences, (String * name, CodePointIndexer * * cjkIndexer, uint8_t * * catTable, uint8_t * * lv1Table, CodePointIndexer * * lv2Indexer, uint8_t * * lv2Table, MethodInfo * method)); DO_APP_FUNC(0x019299A0, uint8_t, MSCompatUnicodeTable_Category, (int32_t cp, MethodInfo * method)); DO_APP_FUNC(0x01929A60, uint8_t, MSCompatUnicodeTable_Level1, (int32_t cp, MethodInfo * method)); DO_APP_FUNC(0x01929B20, uint8_t, MSCompatUnicodeTable_Level2, (int32_t cp, MethodInfo * method)); @@ -295,8 +295,8 @@ DO_APP_FUNC(0x0192A530, void *, MSCompatUnicodeTable_GetResource, (String * name DO_APP_FUNC_METHODINFO(0x03C93F48, MSCompatUnicodeTable_GetResource__MethodInfo); DO_APP_FUNC(0x0192A5E0, uint32_t, MSCompatUnicodeTable_UInt32FromBytePtr, (uint8_t * raw, uint32_t idx, MethodInfo * method)); DO_APP_FUNC(0x0192A620, void, MSCompatUnicodeTable__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x0192AD10, void, MSCompatUnicodeTable_FillCJK, (String * culture, CodePointIndexer * cjkIndexer, uint8_t * catTable, uint8_t * lv1Table, CodePointIndexer * lv2Indexer, uint8_t * lv2Table, MethodInfo * method)); -DO_APP_FUNC(0x0192AF40, void, MSCompatUnicodeTable_FillCJKCore, (String * culture, CodePointIndexer * cjkIndexer, uint8_t * catTable, uint8_t * lv1Table, CodePointIndexer * cjkLv2Indexer, uint8_t * lv2Table, MethodInfo * method)); +DO_APP_FUNC(0x0192AD10, void, MSCompatUnicodeTable_FillCJK, (String * culture, CodePointIndexer * * cjkIndexer, uint8_t * * catTable, uint8_t * * lv1Table, CodePointIndexer * * lv2Indexer, uint8_t * * lv2Table, MethodInfo * method)); +DO_APP_FUNC(0x0192AF40, void, MSCompatUnicodeTable_FillCJKCore, (String * culture, CodePointIndexer * * cjkIndexer, uint8_t * * catTable, uint8_t * * lv1Table, CodePointIndexer * * cjkLv2Indexer, uint8_t * * lv2Table, MethodInfo * method)); DO_APP_FUNC(0x0192B650, void, MSCompatUnicodeTable_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, MSCompatUnicodeTable_c__ctor, (MSCompatUnicodeTable_c * __this, MethodInfo * method)); DO_APP_FUNC(0x0192B700, int32_t, MSCompatUnicodeTable_c__BuildTailoringTables_b__17_0, (MSCompatUnicodeTable_c * __this, Level2Map * a, Level2Map * b, MethodInfo * method)); @@ -306,7 +306,7 @@ DO_APP_FUNC(0x0192BF50, void, NormalizationTableUtil__cctor, (MethodInfo * metho DO_APP_FUNC(0x0192C520, int32_t, NormalizationTableUtil_PropIdx, (int32_t cp, MethodInfo * method)); DO_APP_FUNC(0x0192C590, int32_t, NormalizationTableUtil_MapIdx, (int32_t cp, MethodInfo * method)); DO_APP_FUNC(0x0192C600, void, SimpleCollator__ctor, (SimpleCollator * __this, CultureInfo * culture, MethodInfo * method)); -DO_APP_FUNC(0x0192CB40, void, SimpleCollator_SetCJKTable, (SimpleCollator * __this, CultureInfo * culture, CodePointIndexer * cjkIndexer, uint8_t * catTable, uint8_t * lv1Table, CodePointIndexer * lv2Indexer, uint8_t * lv2Table, MethodInfo * method)); +DO_APP_FUNC(0x0192CB40, void, SimpleCollator_SetCJKTable, (SimpleCollator * __this, CultureInfo * culture, CodePointIndexer * * cjkIndexer, uint8_t * * catTable, uint8_t * * lv1Table, CodePointIndexer * * lv2Indexer, uint8_t * * lv2Table, MethodInfo * method)); DO_APP_FUNC(0x0192CCB0, CultureInfo *, SimpleCollator_GetNeutralCulture, (CultureInfo * info, MethodInfo * method)); DO_APP_FUNC(0x0192CD50, uint8_t, SimpleCollator_Category, (SimpleCollator * __this, int32_t cp, MethodInfo * method)); DO_APP_FUNC(0x0192CDF0, uint8_t, SimpleCollator_Level1, (SimpleCollator * __this, int32_t cp, MethodInfo * method)); @@ -334,22 +334,22 @@ DO_APP_FUNC(0x0192E980, int32_t, SimpleCollator_Compare, (SimpleCollator * __thi DO_APP_FUNC(0x0192E9D0, int32_t, SimpleCollator_System_Globalization_ISimpleCollator_Compare, (SimpleCollator * __this, String * s1, int32_t idx1, int32_t len1, String * s2, int32_t idx2, int32_t len2, CompareOptions__Enum options, MethodInfo * method)); DO_APP_FUNC(0x0192E9E0, int32_t, SimpleCollator_Compare_1, (SimpleCollator * __this, String * s1, int32_t idx1, int32_t len1, String * s2, int32_t idx2, int32_t len2, CompareOptions__Enum options, MethodInfo * method)); DO_APP_FUNC(0x0192EAE0, void, SimpleCollator_ClearBuffer, (SimpleCollator * __this, uint8_t * buffer, int32_t size, MethodInfo * method)); -DO_APP_FUNC(0x0192EB00, int32_t, SimpleCollator_CompareInternal, (SimpleCollator * __this, String * s1, int32_t idx1, int32_t len1, String * s2, int32_t idx2, int32_t len2, bool targetConsumed, bool sourceConsumed, bool skipHeadingExtenders, bool immediateBreakup, SimpleCollator_Context ctx, MethodInfo * method)); +DO_APP_FUNC(0x0192EB00, int32_t, SimpleCollator_CompareInternal, (SimpleCollator * __this, String * s1, int32_t idx1, int32_t len1, String * s2, int32_t idx2, int32_t len2, bool * targetConsumed, bool * sourceConsumed, bool skipHeadingExtenders, bool immediateBreakup, SimpleCollator_Context * ctx, MethodInfo * method)); DO_APP_FUNC(0x01930020, int32_t, SimpleCollator_CompareFlagPair, (SimpleCollator * __this, bool b1, bool b2, MethodInfo * method)); DO_APP_FUNC(0x01930040, bool, SimpleCollator_IsPrefix, (SimpleCollator * __this, String * src, String * target, CompareOptions__Enum opt, MethodInfo * method)); DO_APP_FUNC(0x01930080, bool, SimpleCollator_IsPrefix_1, (SimpleCollator * __this, String * s, String * target, int32_t start, int32_t length, CompareOptions__Enum opt, MethodInfo * method)); -DO_APP_FUNC(0x01930180, bool, SimpleCollator_IsPrefix_2, (SimpleCollator * __this, String * s, String * target, int32_t start, int32_t length, bool skipHeadingExtenders, SimpleCollator_Context ctx, MethodInfo * method)); +DO_APP_FUNC(0x01930180, bool, SimpleCollator_IsPrefix_2, (SimpleCollator * __this, String * s, String * target, int32_t start, int32_t length, bool skipHeadingExtenders, SimpleCollator_Context * ctx, MethodInfo * method)); DO_APP_FUNC(0x01930200, bool, SimpleCollator_IsSuffix, (SimpleCollator * __this, String * src, String * target, CompareOptions__Enum opt, MethodInfo * method)); DO_APP_FUNC(0x019302C0, bool, SimpleCollator_IsSuffix_1, (SimpleCollator * __this, String * s, String * target, int32_t start, int32_t length, CompareOptions__Enum opt, MethodInfo * method)); -DO_APP_FUNC(0x01930380, int32_t, SimpleCollator_QuickIndexOf, (SimpleCollator * __this, String * s, String * target, int32_t start, int32_t length, bool testWasUnable, MethodInfo * method)); +DO_APP_FUNC(0x01930380, int32_t, SimpleCollator_QuickIndexOf, (SimpleCollator * __this, String * s, String * target, int32_t start, int32_t length, bool * testWasUnable, MethodInfo * method)); DO_APP_FUNC(0x01930510, int32_t, SimpleCollator_IndexOf, (SimpleCollator * __this, String * s, String * target, int32_t start, int32_t length, CompareOptions__Enum opt, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C93C40, SimpleCollator_IndexOf__MethodInfo); DO_APP_FUNC(0x01930840, int32_t, SimpleCollator_IndexOfOrdinal, (SimpleCollator * __this, String * s, String * target, int32_t start, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x01930930, int32_t, SimpleCollator_IndexOf_1, (SimpleCollator * __this, String * s, uint16_t target, int32_t start, int32_t length, CompareOptions__Enum opt, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C93C50, SimpleCollator_IndexOf_1__MethodInfo); DO_APP_FUNC(0x01930CC0, int32_t, SimpleCollator_IndexOfOrdinal_1, (SimpleCollator * __this, String * s, uint16_t target, int32_t start, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01930D40, int32_t, SimpleCollator_IndexOfSortKey, (SimpleCollator * __this, String * s, int32_t start, int32_t length, uint8_t * sortkey, uint16_t target, int32_t ti, bool noLv4, SimpleCollator_Context ctx, MethodInfo * method)); -DO_APP_FUNC(0x01930E00, int32_t, SimpleCollator_IndexOf_2, (SimpleCollator * __this, String * s, String * target, int32_t start, int32_t length, uint8_t * targetSortKey, SimpleCollator_Context ctx, MethodInfo * method)); +DO_APP_FUNC(0x01930D40, int32_t, SimpleCollator_IndexOfSortKey, (SimpleCollator * __this, String * s, int32_t start, int32_t length, uint8_t * sortkey, uint16_t target, int32_t ti, bool noLv4, SimpleCollator_Context * ctx, MethodInfo * method)); +DO_APP_FUNC(0x01930E00, int32_t, SimpleCollator_IndexOf_2, (SimpleCollator * __this, String * s, String * target, int32_t start, int32_t length, uint8_t * targetSortKey, SimpleCollator_Context * ctx, MethodInfo * method)); DO_APP_FUNC(0x019313A0, int32_t, SimpleCollator_LastIndexOf, (SimpleCollator * __this, String * s, String * target, CompareOptions__Enum opt, MethodInfo * method)); DO_APP_FUNC(0x019313E0, int32_t, SimpleCollator_LastIndexOf_1, (SimpleCollator * __this, String * s, String * target, int32_t start, int32_t length, CompareOptions__Enum opt, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C93C60, SimpleCollator_LastIndexOf_1__MethodInfo); @@ -357,16 +357,16 @@ DO_APP_FUNC(0x019315A0, int32_t, SimpleCollator_LastIndexOfOrdinal, (SimpleColla DO_APP_FUNC(0x01931750, int32_t, SimpleCollator_LastIndexOf_2, (SimpleCollator * __this, String * s, uint16_t target, CompareOptions__Enum opt, MethodInfo * method)); DO_APP_FUNC(0x01931790, int32_t, SimpleCollator_LastIndexOf_3, (SimpleCollator * __this, String * s, uint16_t target, int32_t start, int32_t length, CompareOptions__Enum opt, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C93C78, SimpleCollator_LastIndexOf_3__MethodInfo); -DO_APP_FUNC(0x01931AF0, int32_t, SimpleCollator_LastIndexOfSortKey, (SimpleCollator * __this, String * s, int32_t start, int32_t orgStart, int32_t length, uint8_t * sortkey, int32_t ti, bool noLv4, SimpleCollator_Context ctx, MethodInfo * method)); -DO_APP_FUNC(0x01931BC0, int32_t, SimpleCollator_LastIndexOf_4, (SimpleCollator * __this, String * s, String * target, int32_t start, int32_t length, uint8_t * targetSortKey, SimpleCollator_Context ctx, MethodInfo * method)); -DO_APP_FUNC(0x01932190, bool, SimpleCollator_MatchesForward, (SimpleCollator * __this, String * s, int32_t idx, int32_t end, int32_t ti, uint8_t * sortkey, bool noLv4, SimpleCollator_Context ctx, MethodInfo * method)); -DO_APP_FUNC(0x01932370, bool, SimpleCollator_MatchesForwardCore, (SimpleCollator * __this, String * s, int32_t idx, int32_t end, int32_t ti, uint8_t * sortkey, bool noLv4, SimpleCollator_ExtenderType__Enum ext, Contraction * ct, SimpleCollator_Context ctx, MethodInfo * method)); +DO_APP_FUNC(0x01931AF0, int32_t, SimpleCollator_LastIndexOfSortKey, (SimpleCollator * __this, String * s, int32_t start, int32_t orgStart, int32_t length, uint8_t * sortkey, int32_t ti, bool noLv4, SimpleCollator_Context * ctx, MethodInfo * method)); +DO_APP_FUNC(0x01931BC0, int32_t, SimpleCollator_LastIndexOf_4, (SimpleCollator * __this, String * s, String * target, int32_t start, int32_t length, uint8_t * targetSortKey, SimpleCollator_Context * ctx, MethodInfo * method)); +DO_APP_FUNC(0x01932190, bool, SimpleCollator_MatchesForward, (SimpleCollator * __this, String * s, int32_t * idx, int32_t end, int32_t ti, uint8_t * sortkey, bool noLv4, SimpleCollator_Context * ctx, MethodInfo * method)); +DO_APP_FUNC(0x01932370, bool, SimpleCollator_MatchesForwardCore, (SimpleCollator * __this, String * s, int32_t * idx, int32_t end, int32_t ti, uint8_t * sortkey, bool noLv4, SimpleCollator_ExtenderType__Enum ext, Contraction * * ct, SimpleCollator_Context * ctx, MethodInfo * method)); DO_APP_FUNC(0x019327C0, bool, SimpleCollator_MatchesPrimitive, (SimpleCollator * __this, CompareOptions__Enum opt, uint8_t * source, int32_t si, SimpleCollator_ExtenderType__Enum ext, uint8_t * target, int32_t ti, bool noLv4, MethodInfo * method)); -DO_APP_FUNC(0x019329A0, bool, SimpleCollator_MatchesBackward, (SimpleCollator * __this, String * s, int32_t idx, int32_t end, int32_t orgStart, int32_t ti, uint8_t * sortkey, bool noLv4, SimpleCollator_Context ctx, MethodInfo * method)); -DO_APP_FUNC(0x01932B90, bool, SimpleCollator_MatchesBackwardCore, (SimpleCollator * __this, String * s, int32_t idx, int32_t end, int32_t orgStart, int32_t ti, uint8_t * sortkey, bool noLv4, SimpleCollator_ExtenderType__Enum ext, Contraction * ct, SimpleCollator_Context ctx, MethodInfo * method)); +DO_APP_FUNC(0x019329A0, bool, SimpleCollator_MatchesBackward, (SimpleCollator * __this, String * s, int32_t * idx, int32_t end, int32_t orgStart, int32_t ti, uint8_t * sortkey, bool noLv4, SimpleCollator_Context * ctx, MethodInfo * method)); +DO_APP_FUNC(0x01932B90, bool, SimpleCollator_MatchesBackwardCore, (SimpleCollator * __this, String * s, int32_t * idx, int32_t end, int32_t orgStart, int32_t ti, uint8_t * sortkey, bool noLv4, SimpleCollator_ExtenderType__Enum ext, Contraction * * ct, SimpleCollator_Context * ctx, MethodInfo * method)); DO_APP_FUNC(0x019331C0, void, SimpleCollator__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x01933300, void, SimpleCollator_Context__ctor, (SimpleCollator_Context__Boxed * __this, CompareOptions__Enum opt, uint8_t * alwaysMatchFlags, uint8_t * neverMatchFlags, uint8_t * buffer1, uint8_t * buffer2, uint8_t * prev1, MethodInfo * method)); -DO_APP_FUNC(0x01933330, void, SimpleCollator_PreviousInfo__ctor, (SimpleCollator_PreviousInfo__Boxed * __this, bool dummy, MethodInfo * method)); +DO_APP_FUNC(0x01933300, void, SimpleCollator_Context__ctor, (SimpleCollator_Context * __this, CompareOptions__Enum opt, uint8_t * alwaysMatchFlags, uint8_t * neverMatchFlags, uint8_t * buffer1, uint8_t * buffer2, uint8_t * prev1, MethodInfo * method)); +DO_APP_FUNC(0x01933330, void, SimpleCollator_PreviousInfo__ctor, (SimpleCollator_PreviousInfo * __this, bool dummy, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SortKeyBuffer__ctor, (SortKeyBuffer * __this, int32_t lcid, MethodInfo * method)); DO_APP_FUNC(0x01933340, void, SortKeyBuffer_Reset, (SortKeyBuffer * __this, MethodInfo * method)); DO_APP_FUNC(0x01933360, void, SortKeyBuffer_Initialize, (SortKeyBuffer * __this, CompareOptions__Enum options, int32_t lcid, String * s, bool frenchSort, MethodInfo * method)); @@ -374,7 +374,7 @@ DO_APP_FUNC(0x019337D0, void, SortKeyBuffer_AppendCJKExtension, (SortKeyBuffer * DO_APP_FUNC(0x019338A0, void, SortKeyBuffer_AppendKana, (SortKeyBuffer * __this, uint8_t category, uint8_t lv1, uint8_t lv2, uint8_t lv3, bool isSmallKana, uint8_t markType, bool isKatakana, bool isHalfWidth, MethodInfo * method)); DO_APP_FUNC(0x01933970, void, SortKeyBuffer_AppendNormal, (SortKeyBuffer * __this, uint8_t category, uint8_t lv1, uint8_t lv2, uint8_t lv3, MethodInfo * method)); DO_APP_FUNC(0x01933B60, void, SortKeyBuffer_AppendLevel5, (SortKeyBuffer * __this, uint8_t category, uint8_t lv1, MethodInfo * method)); -DO_APP_FUNC(0x01933C40, void, SortKeyBuffer_AppendBufferPrimitive, (SortKeyBuffer * __this, uint8_t value, Byte__Array * buf, int32_t bidx, MethodInfo * method)); +DO_APP_FUNC(0x01933C40, void, SortKeyBuffer_AppendBufferPrimitive, (SortKeyBuffer * __this, uint8_t value, Byte__Array * * buf, int32_t * bidx, MethodInfo * method)); DO_APP_FUNC(0x01933E10, SortKey *, SortKeyBuffer_GetResultAndReset, (SortKeyBuffer * __this, MethodInfo * method)); DO_APP_FUNC(0x01933E40, int32_t, SortKeyBuffer_GetOptimizedLength, (SortKeyBuffer * __this, Byte__Array * data, int32_t len, uint8_t defaultValue, MethodInfo * method)); DO_APP_FUNC(0x01933E90, SortKey *, SortKeyBuffer_GetResult, (SortKeyBuffer * __this, MethodInfo * method)); @@ -386,8 +386,8 @@ DO_APP_FUNC(0x018DE070, int32_t, ASN1_get_Count, (ASN1 * __this, MethodInfo * me DO_APP_FUNC(0x01934990, Byte__Array *, ASN1_get_Value, (ASN1 * __this, MethodInfo * method)); DO_APP_FUNC(0x01934A30, ASN1 *, ASN1_Add, (ASN1 * __this, ASN1 * asn1, MethodInfo * method)); DO_APP_FUNC(0x01934B20, Byte__Array *, ASN1_GetBytes, (ASN1 * __this, MethodInfo * method)); -DO_APP_FUNC(0x01935190, void, ASN1_Decode, (ASN1 * __this, Byte__Array * asn1, int32_t anPos, int32_t anLength, MethodInfo * method)); -DO_APP_FUNC(0x019355F0, void, ASN1_DecodeTLV, (ASN1 * __this, Byte__Array * asn1, int32_t pos, uint8_t tag, int32_t length, Byte__Array * content, MethodInfo * method)); +DO_APP_FUNC(0x01935190, void, ASN1_Decode, (ASN1 * __this, Byte__Array * asn1, int32_t * anPos, int32_t anLength, MethodInfo * method)); +DO_APP_FUNC(0x019355F0, void, ASN1_DecodeTLV, (ASN1 * __this, Byte__Array * asn1, int32_t * pos, uint8_t * tag, int32_t * length, Byte__Array * * content, MethodInfo * method)); DO_APP_FUNC(0x01935740, String *, ASN1_ToString, (ASN1 * __this, MethodInfo * method)); DO_APP_FUNC(0x01935B60, Byte__Array *, BitConverterLE_GetUIntBytes, (uint8_t * bytes, MethodInfo * method)); DO_APP_FUNC(0x01935C60, Byte__Array *, BitConverterLE_GetULongBytes, (uint8_t * bytes, MethodInfo * method)); @@ -451,9 +451,9 @@ DO_APP_FUNC(0x019083A0, uint32_t, MD4Managed_F, (MD4Managed * __this, uint32_t x DO_APP_FUNC(0x019083B0, uint32_t, MD4Managed_G, (MD4Managed * __this, uint32_t x, uint32_t y, uint32_t z, MethodInfo * method)); DO_APP_FUNC(0x019083C0, uint32_t, MD4Managed_H, (MD4Managed * __this, uint32_t x, uint32_t y, uint32_t z, MethodInfo * method)); DO_APP_FUNC(0x019083D0, uint32_t, MD4Managed_ROL, (MD4Managed * __this, uint32_t x, uint8_t n, MethodInfo * method)); -DO_APP_FUNC(0x019083F0, void, MD4Managed_FF, (MD4Managed * __this, uint32_t a, uint32_t b, uint32_t c, uint32_t d, uint32_t x, uint8_t s, MethodInfo * method)); -DO_APP_FUNC(0x01908430, void, MD4Managed_GG, (MD4Managed * __this, uint32_t a, uint32_t b, uint32_t c, uint32_t d, uint32_t x, uint8_t s, MethodInfo * method)); -DO_APP_FUNC(0x01908480, void, MD4Managed_HH, (MD4Managed * __this, uint32_t a, uint32_t b, uint32_t c, uint32_t d, uint32_t x, uint8_t s, MethodInfo * method)); +DO_APP_FUNC(0x019083F0, void, MD4Managed_FF, (MD4Managed * __this, uint32_t * a, uint32_t b, uint32_t c, uint32_t d, uint32_t x, uint8_t s, MethodInfo * method)); +DO_APP_FUNC(0x01908430, void, MD4Managed_GG, (MD4Managed * __this, uint32_t * a, uint32_t b, uint32_t c, uint32_t d, uint32_t x, uint8_t s, MethodInfo * method)); +DO_APP_FUNC(0x01908480, void, MD4Managed_HH, (MD4Managed * __this, uint32_t * a, uint32_t b, uint32_t c, uint32_t d, uint32_t x, uint8_t s, MethodInfo * method)); DO_APP_FUNC(0x019084C0, void, MD4Managed_Encode, (MD4Managed * __this, Byte__Array * output, UInt32__Array * input, MethodInfo * method)); DO_APP_FUNC(0x01908590, void, MD4Managed_Decode, (MD4Managed * __this, UInt32__Array * output, Byte__Array * input, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01908640, void, MD4Managed_MD4Transform, (MD4Managed * __this, UInt32__Array * state, Byte__Array * block, int32_t index, MethodInfo * method)); @@ -803,7 +803,7 @@ DO_APP_FUNC_METHODINFO(0x03C963E0, String_CopyTo__MethodInfo); DO_APP_FUNC(0x019510E0, Char__Array *, String_ToCharArray, (String * __this, MethodInfo * method)); DO_APP_FUNC(0x01951210, bool, String_IsNullOrEmpty, (String * value, MethodInfo * method)); DO_APP_FUNC(0x01951220, bool, String_IsNullOrWhiteSpace, (String * value, MethodInfo * method)); -DO_APP_FUNC(0x019512D0, uint16_t, String_GetRawStringData, (String * __this, MethodInfo * method)); +DO_APP_FUNC(0x019512D0, uint16_t *, String_GetRawStringData, (String * __this, MethodInfo * method)); DO_APP_FUNC(0x019512E0, String *, String_CreateStringFromEncoding, (uint8_t * bytes, int32_t byteLength, Encoding * encoding, MethodInfo * method)); DO_APP_FUNC(0x019513D0, String *, String_CreateFromChar, (uint16_t c, MethodInfo * method)); DO_APP_FUNC(0x01951400, void, String_wstrcpy, (uint16_t * dmem, uint16_t * smem, int32_t charCount, MethodInfo * method)); @@ -890,9 +890,9 @@ DO_APP_FUNC_METHODINFO(0x03C960F0, String_SplitInternal_1__MethodInfo); DO_APP_FUNC(0x01955BC0, String__Array *, String_SplitInternal_2, (String * __this, String * separator, int32_t count, StringSplitOptions__Enum options, MethodInfo * method)); DO_APP_FUNC(0x01956030, String__Array *, String_SplitKeepEmptyEntries, (String * __this, ReadOnlySpan_1_Int32_ sepList, ReadOnlySpan_1_Int32_ lengthList, int32_t defaultLength, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x019562F0, String__Array *, String_SplitOmitEmptyEntries, (String * __this, ReadOnlySpan_1_Int32_ sepList, ReadOnlySpan_1_Int32_ lengthList, int32_t defaultLength, int32_t count, MethodInfo * method)); -DO_APP_FUNC(0x01956650, void, String_MakeSeparatorList, (String * __this, ReadOnlySpan_1_Char_ separators, ValueListBuilder_1_System_Int32_ sepListBuilder, MethodInfo * method)); -DO_APP_FUNC(0x01956980, void, String_MakeSeparatorList_1, (String * __this, String * separator, ValueListBuilder_1_System_Int32_ sepListBuilder, MethodInfo * method)); -DO_APP_FUNC(0x01956B70, void, String_MakeSeparatorList_2, (String * __this, String__Array * separators, ValueListBuilder_1_System_Int32_ sepListBuilder, ValueListBuilder_1_System_Int32_ lengthListBuilder, MethodInfo * method)); +DO_APP_FUNC(0x01956650, void, String_MakeSeparatorList, (String * __this, ReadOnlySpan_1_Char_ separators, ValueListBuilder_1_System_Int32_ * sepListBuilder, MethodInfo * method)); +DO_APP_FUNC(0x01956980, void, String_MakeSeparatorList_1, (String * __this, String * separator, ValueListBuilder_1_System_Int32_ * sepListBuilder, MethodInfo * method)); +DO_APP_FUNC(0x01956B70, void, String_MakeSeparatorList_2, (String * __this, String__Array * separators, ValueListBuilder_1_System_Int32_ * sepListBuilder, ValueListBuilder_1_System_Int32_ * lengthListBuilder, MethodInfo * method)); DO_APP_FUNC(0x01956DA0, String *, String_Substring, (String * __this, int32_t startIndex, MethodInfo * method)); DO_APP_FUNC(0x01956DB0, String *, String_Substring_1, (String * __this, int32_t startIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C960B0, String_Substring_1__MethodInfo); @@ -986,33 +986,34 @@ DO_APP_FUNC(0x0195A230, String *, String_Intern, (String * str, MethodInfo * met DO_APP_FUNC_METHODINFO(0x03C96028, String_Intern__MethodInfo); DO_APP_FUNC(0x01A8BA50, void, TimeZoneInfo_PopulateAllSystemTimeZones, (TimeZoneInfo_CachedData * cachedData, MethodInfo * method)); DO_APP_FUNC(0x01A8BAE0, void, TimeZoneInfo_PopulateAllSystemTimeZonesFromRegistry, (TimeZoneInfo_CachedData * cachedData, MethodInfo * method)); -DO_APP_FUNC(0x01A8BCA0, void, TimeZoneInfo__ctor, (TimeZoneInfo * __this, Interop_Kernel32_TIME_ZONE_INFORMATION zone, bool dstDisabled, MethodInfo * method)); -DO_APP_FUNC(0x01A8C2B0, bool, TimeZoneInfo_CheckDaylightSavingTimeNotSupported, (Interop_Kernel32_TIME_ZONE_INFORMATION timeZone, MethodInfo * method)); -DO_APP_FUNC(0x01A8C320, TimeZoneInfo_AdjustmentRule *, TimeZoneInfo_CreateAdjustmentRuleFromTimeZoneInformation, (Interop_Kernel32_REG_TZI_FORMAT timeZoneInformation, DateTime startDate, DateTime endDate, int32_t defaultBaseUtcOffset, MethodInfo * method)); -DO_APP_FUNC(0x01A8C710, String *, TimeZoneInfo_FindIdFromTimeZoneInformation, (Interop_Kernel32_TIME_ZONE_INFORMATION timeZone, bool dstDisabled, MethodInfo * method)); +DO_APP_FUNC(0x01A8BCA0, void, TimeZoneInfo__ctor, (TimeZoneInfo * __this, Interop_Kernel32_TIME_ZONE_INFORMATION * zone, bool dstDisabled, MethodInfo * method)); +DO_APP_FUNC(0x01A8C2B0, bool, TimeZoneInfo_CheckDaylightSavingTimeNotSupported, (Interop_Kernel32_TIME_ZONE_INFORMATION * timeZone, MethodInfo * method)); +DO_APP_FUNC(0x01A8C320, TimeZoneInfo_AdjustmentRule *, TimeZoneInfo_CreateAdjustmentRuleFromTimeZoneInformation, (Interop_Kernel32_REG_TZI_FORMAT * timeZoneInformation, DateTime startDate, DateTime endDate, int32_t defaultBaseUtcOffset, MethodInfo * method)); +DO_APP_FUNC(0x01A8C710, String *, TimeZoneInfo_FindIdFromTimeZoneInformation, (Interop_Kernel32_TIME_ZONE_INFORMATION * timeZone, bool * dstDisabled, MethodInfo * method)); DO_APP_FUNC(0x01A8C8E0, TimeZoneInfo *, TimeZoneInfo_GetLocalTimeZone, (TimeZoneInfo_CachedData * cachedData, MethodInfo * method)); -DO_APP_FUNC(0x01A8CC60, TimeZoneInfo *, TimeZoneInfo_GetLocalTimeZoneFromWin32Data, (Interop_Kernel32_TIME_ZONE_INFORMATION timeZoneInformation, bool dstDisabled, MethodInfo * method)); -DO_APP_FUNC(0x01A8CDB0, TimeSpan, TimeZoneInfo_GetDateTimeNowUtcOffsetFromUtc, (DateTime time, bool isAmbiguousLocalDst, MethodInfo * method)); -DO_APP_FUNC(0x01A8D000, bool, TimeZoneInfo_TransitionTimeFromTimeZoneInformation, (Interop_Kernel32_REG_TZI_FORMAT timeZoneInformation, TimeZoneInfo_TransitionTime transitionTime, bool readStartDate, MethodInfo * method)); -DO_APP_FUNC(0x01A8D1E0, bool, TimeZoneInfo_TryCreateAdjustmentRules, (String * id, Interop_Kernel32_REG_TZI_FORMAT defaultTimeZoneInformation, TimeZoneInfo_AdjustmentRule__Array * rules, Exception * e, int32_t defaultBaseUtcOffset, MethodInfo * method)); -DO_APP_FUNC(0x01A8DF10, bool, TimeZoneInfo_TryGetTimeZoneEntryFromRegistry, (RegistryKey * key, String * name, Interop_Kernel32_REG_TZI_FORMAT dtzi, MethodInfo * method)); -DO_APP_FUNC(0x01A8E040, bool, TimeZoneInfo_TryCompareStandardDate, (Interop_Kernel32_TIME_ZONE_INFORMATION timeZone, Interop_Kernel32_REG_TZI_FORMAT registryTimeZoneInfo, MethodInfo * method)); -DO_APP_FUNC(0x01A8E0C0, bool, TimeZoneInfo_TryCompareTimeZoneInformationToRegistry, (Interop_Kernel32_TIME_ZONE_INFORMATION timeZone, String * id, bool dstDisabled, MethodInfo * method)); +DO_APP_FUNC(0x01A8CC60, TimeZoneInfo *, TimeZoneInfo_GetLocalTimeZoneFromWin32Data, (Interop_Kernel32_TIME_ZONE_INFORMATION * timeZoneInformation, bool dstDisabled, MethodInfo * method)); +DO_APP_FUNC(0x01A8CDB0, TimeSpan, TimeZoneInfo_GetDateTimeNowUtcOffsetFromUtc, (DateTime time, bool * isAmbiguousLocalDst, MethodInfo * method)); +DO_APP_FUNC(0x01A8D000, bool, TimeZoneInfo_TransitionTimeFromTimeZoneInformation, (Interop_Kernel32_REG_TZI_FORMAT * timeZoneInformation, TimeZoneInfo_TransitionTime * transitionTime, bool readStartDate, MethodInfo * method)); +DO_APP_FUNC(0x01A8D1E0, bool, TimeZoneInfo_TryCreateAdjustmentRules, (String * id, Interop_Kernel32_REG_TZI_FORMAT * defaultTimeZoneInformation, TimeZoneInfo_AdjustmentRule__Array * * rules, Exception * * e, int32_t defaultBaseUtcOffset, MethodInfo * method)); +DO_APP_FUNC(0x01A8DF10, bool, TimeZoneInfo_TryGetTimeZoneEntryFromRegistry, (RegistryKey * key, String * name, Interop_Kernel32_REG_TZI_FORMAT * dtzi, MethodInfo * method)); +DO_APP_FUNC(0x01A8E040, bool, TimeZoneInfo_TryCompareStandardDate, (Interop_Kernel32_TIME_ZONE_INFORMATION * timeZone, Interop_Kernel32_REG_TZI_FORMAT * registryTimeZoneInfo, MethodInfo * method)); +DO_APP_FUNC(0x01A8E0C0, bool, TimeZoneInfo_TryCompareTimeZoneInformationToRegistry, (Interop_Kernel32_TIME_ZONE_INFORMATION * timeZone, String * id, bool * dstDisabled, MethodInfo * method)); DO_APP_FUNC(0x01A8E6D0, String *, TimeZoneInfo_TryGetLocalizedNameByMuiNativeResource, (String * resource, MethodInfo * method)); DO_APP_FUNC(0x01A8EA40, String *, TimeZoneInfo_TryGetLocalizedNameByNativeResource, (String * filePath, int32_t resource, MethodInfo * method)); -DO_APP_FUNC(0x01A8EE90, void, TimeZoneInfo_GetLocalizedNamesByRegistryKey, (RegistryKey * key, String * displayName, String * standardName, String * daylightName, MethodInfo * method)); -DO_APP_FUNC(0x01A8F6A0, TimeZoneInfo_TimeZoneInfoResult__Enum, TimeZoneInfo_TryGetTimeZoneFromLocalMachine, (String * id, TimeZoneInfo * value, Exception * e, MethodInfo * method)); -DO_APP_FUNC(0x01A8F820, TimeZoneInfo_TimeZoneInfoResult__Enum, TimeZoneInfo_TryGetTimeZoneFromLocalRegistry, (String * id, TimeZoneInfo * value, Exception * e, MethodInfo * method)); +DO_APP_FUNC(0x01A8EE90, void, TimeZoneInfo_GetLocalizedNamesByRegistryKey, (RegistryKey * key, String * * displayName, String * * standardName, String * * daylightName, MethodInfo * method)); +DO_APP_FUNC(0x01A8F6A0, TimeZoneInfo_TimeZoneInfoResult__Enum, TimeZoneInfo_TryGetTimeZoneFromLocalMachine, (String * id, TimeZoneInfo * * value, Exception * * e, MethodInfo * method)); +DO_APP_FUNC(0x01A8F820, TimeZoneInfo_TimeZoneInfoResult__Enum, TimeZoneInfo_TryGetTimeZoneFromLocalRegistry, (String * id, TimeZoneInfo * * value, Exception * * e, MethodInfo * method)); DO_APP_FUNC(0x01A8FD60, bool, TimeZoneInfo_get_HaveRegistry, (MethodInfo * method)); -DO_APP_FUNC(0x01A8FE20, uint32_t, TimeZoneInfo_EnumDynamicTimeZoneInformation, (uint32_t dwIndex, TimeZoneInfo_DYNAMIC_TIME_ZONE_INFORMATION lpTimeZoneInformation, MethodInfo * method)); -DO_APP_FUNC(0x01A8FFC0, uint32_t, TimeZoneInfo_GetDynamicTimeZoneInformation, (TimeZoneInfo_DYNAMIC_TIME_ZONE_INFORMATION pTimeZoneInformation, MethodInfo * method)); -DO_APP_FUNC(0x01A90150, uint32_t, TimeZoneInfo_GetDynamicTimeZoneInformationEffectiveYears, (TimeZoneInfo_DYNAMIC_TIME_ZONE_INFORMATION lpTimeZoneInformation, uint32_t FirstYear, uint32_t LastYear, MethodInfo * method)); -DO_APP_FUNC(0x01A90310, bool, TimeZoneInfo_GetTimeZoneInformationForYear, (uint16_t wYear, TimeZoneInfo_DYNAMIC_TIME_ZONE_INFORMATION pdtzi, Interop_Kernel32_TIME_ZONE_INFORMATION ptzi, MethodInfo * method)); -DO_APP_FUNC(0x01A904D0, TimeZoneInfo_AdjustmentRule *, TimeZoneInfo_CreateAdjustmentRuleFromTimeZoneInformation_1, (TimeZoneInfo_DYNAMIC_TIME_ZONE_INFORMATION timeZoneInformation, DateTime startDate, DateTime endDate, int32_t defaultBaseUtcOffset, MethodInfo * method)); -DO_APP_FUNC(0x01A90B00, bool, TimeZoneInfo_TransitionTimeFromTimeZoneInformation_1, (TimeZoneInfo_DYNAMIC_TIME_ZONE_INFORMATION timeZoneInformation, TimeZoneInfo_TransitionTime transitionTime, bool readStartDate, MethodInfo * method)); +DO_APP_FUNC(0x01A8FE20, uint32_t, TimeZoneInfo_EnumDynamicTimeZoneInformation, (uint32_t dwIndex, TimeZoneInfo_DYNAMIC_TIME_ZONE_INFORMATION * lpTimeZoneInformation, MethodInfo * method)); +DO_APP_FUNC(0x01A8FFC0, uint32_t, TimeZoneInfo_GetDynamicTimeZoneInformation, (TimeZoneInfo_DYNAMIC_TIME_ZONE_INFORMATION * pTimeZoneInformation, MethodInfo * method)); +DO_APP_FUNC(0x01A90150, uint32_t, TimeZoneInfo_GetDynamicTimeZoneInformationEffectiveYears, (TimeZoneInfo_DYNAMIC_TIME_ZONE_INFORMATION * lpTimeZoneInformation, uint32_t * FirstYear, uint32_t * LastYear, MethodInfo * method)); +DO_APP_FUNC(0x01A90310, bool, TimeZoneInfo_GetTimeZoneInformationForYear, (uint16_t wYear, TimeZoneInfo_DYNAMIC_TIME_ZONE_INFORMATION * pdtzi, Interop_Kernel32_TIME_ZONE_INFORMATION * ptzi, MethodInfo * method)); +DO_APP_FUNC(0x01A904D0, TimeZoneInfo_AdjustmentRule *, TimeZoneInfo_CreateAdjustmentRuleFromTimeZoneInformation_1, (TimeZoneInfo_DYNAMIC_TIME_ZONE_INFORMATION * timeZoneInformation, DateTime startDate, DateTime endDate, int32_t defaultBaseUtcOffset, MethodInfo * method)); +DO_APP_FUNC(0x01A90B00, bool, TimeZoneInfo_TransitionTimeFromTimeZoneInformation_1, (TimeZoneInfo_DYNAMIC_TIME_ZONE_INFORMATION timeZoneInformation, TimeZoneInfo_TransitionTime * transitionTime, bool readStartDate, MethodInfo * method)); DO_APP_FUNC(0x01A919A0, TimeZoneInfo *, TimeZoneInfo_TryCreateTimeZone, (TimeZoneInfo_DYNAMIC_TIME_ZONE_INFORMATION timeZoneInformation, MethodInfo * method)); DO_APP_FUNC(0x01A92420, TimeZoneInfo *, TimeZoneInfo_GetLocalTimeZoneInfoWinRTFallback, (MethodInfo * method)); DO_APP_FUNC(0x01A92790, TimeZoneInfo *, TimeZoneInfo_FindSystemTimeZoneByIdWinRTFallback, (String * id, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF018, TimeZoneInfo_FindSystemTimeZoneByIdWinRTFallback__MethodInfo); DO_APP_FUNC(0x01A92A90, void, TimeZoneInfo_GetSystemTimeZonesWinRTFallback, (TimeZoneInfo_CachedData * cachedData, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, String *, TimeZoneInfo_get_Id, (TimeZoneInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01A93300, String *, TimeZoneInfo_get_DisplayName, (TimeZoneInfo * __this, MethodInfo * method)); @@ -1027,48 +1028,55 @@ DO_APP_FUNC(0x01A93930, bool, TimeZoneInfo_IsDaylightSavingTime_1, (TimeZoneInfo DO_APP_FUNC(0x01A93C00, void, TimeZoneInfo_ClearCachedData, (MethodInfo * method)); DO_APP_FUNC(0x01A93CE0, DateTime, TimeZoneInfo_ConvertTime, (DateTime dateTime, TimeZoneInfo * sourceTimeZone, TimeZoneInfo * destinationTimeZone, TimeZoneInfoOptions__Enum flags, MethodInfo * method)); DO_APP_FUNC(0x01A93D80, DateTime, TimeZoneInfo_ConvertTime_1, (DateTime dateTime, TimeZoneInfo * sourceTimeZone, TimeZoneInfo * destinationTimeZone, TimeZoneInfoOptions__Enum flags, TimeZoneInfo_CachedData * cachedData, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEED8, TimeZoneInfo_ConvertTime_1__MethodInfo); DO_APP_FUNC(0x01A943F0, DateTime, TimeZoneInfo_ConvertTimeToUtc, (DateTime dateTime, TimeZoneInfoOptions__Enum flags, MethodInfo * method)); DO_APP_FUNC(0x01A94540, bool, TimeZoneInfo_Equals, (TimeZoneInfo * __this, TimeZoneInfo * other, MethodInfo * method)); DO_APP_FUNC(0x01A94630, bool, TimeZoneInfo_Equals_1, (TimeZoneInfo * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x01A94770, int32_t, TimeZoneInfo_GetHashCode, (TimeZoneInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01A94820, ReadOnlyCollection_1_System_TimeZoneInfo_ *, TimeZoneInfo_GetSystemTimeZones, (MethodInfo * method)); DO_APP_FUNC(0x01A94DA0, bool, TimeZoneInfo_HasSameRules, (TimeZoneInfo * __this, TimeZoneInfo * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEEC0, TimeZoneInfo_HasSameRules__MethodInfo); DO_APP_FUNC(0x01A950A0, TimeZoneInfo *, TimeZoneInfo_get_Local, (MethodInfo * method)); DO_APP_FUNC(0x01A93300, String *, TimeZoneInfo_ToString, (TimeZoneInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01A95120, TimeZoneInfo *, TimeZoneInfo_get_Utc, (MethodInfo * method)); DO_APP_FUNC(0x01A95180, void, TimeZoneInfo__ctor_1, (TimeZoneInfo * __this, String * id, TimeSpan baseUtcOffset, String * displayName, String * standardDisplayName, String * daylightDisplayName, TimeZoneInfo_AdjustmentRule__Array * adjustmentRules, bool disableDaylightSavingTime, MethodInfo * method)); DO_APP_FUNC(0x01A953E0, TimeZoneInfo *, TimeZoneInfo_CreateCustomTimeZone, (String * id, TimeSpan baseUtcOffset, String * displayName, String * standardDisplayName, MethodInfo * method)); DO_APP_FUNC(0x01A95490, void, TimeZoneInfo_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization, (TimeZoneInfo * __this, Object * sender, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEE08, TimeZoneInfo_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization__MethodInfo); DO_APP_FUNC(0x01A95670, void, TimeZoneInfo_System_Runtime_Serialization_ISerializable_GetObjectData, (TimeZoneInfo * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAED48, TimeZoneInfo_System_Runtime_Serialization_ISerializable_GetObjectData__MethodInfo); DO_APP_FUNC(0x01A95840, void, TimeZoneInfo__ctor_2, (TimeZoneInfo * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); -DO_APP_FUNC(0x01A95E90, TimeZoneInfo_AdjustmentRule *, TimeZoneInfo_GetAdjustmentRuleForTime, (TimeZoneInfo * __this, DateTime dateTime, Nullable_1_Int32_ ruleIndex, MethodInfo * method)); -DO_APP_FUNC(0x01A95EB0, TimeZoneInfo_AdjustmentRule *, TimeZoneInfo_GetAdjustmentRuleForTime_1, (TimeZoneInfo * __this, DateTime dateTime, bool dateTimeisUtc, Nullable_1_Int32_ ruleIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAED78, TimeZoneInfo__ctor_2__MethodInfo); +DO_APP_FUNC(0x01A95E90, TimeZoneInfo_AdjustmentRule *, TimeZoneInfo_GetAdjustmentRuleForTime, (TimeZoneInfo * __this, DateTime dateTime, Nullable_1_Int32_ * ruleIndex, MethodInfo * method)); +DO_APP_FUNC(0x01A95EB0, TimeZoneInfo_AdjustmentRule *, TimeZoneInfo_GetAdjustmentRuleForTime_1, (TimeZoneInfo * __this, DateTime dateTime, bool dateTimeisUtc, Nullable_1_Int32_ * ruleIndex, MethodInfo * method)); DO_APP_FUNC(0x01A96130, int32_t, TimeZoneInfo_CompareAdjustmentRuleToDateTime, (TimeZoneInfo * __this, TimeZoneInfo_AdjustmentRule * rule, TimeZoneInfo_AdjustmentRule * previousRule, DateTime dateTime, DateTime dateOnly, bool dateTimeisUtc, MethodInfo * method)); DO_APP_FUNC(0x01A96380, DateTime, TimeZoneInfo_ConvertToUtc, (TimeZoneInfo * __this, DateTime dateTime, TimeSpan daylightDelta, TimeSpan baseUtcOffsetDelta, MethodInfo * method)); DO_APP_FUNC(0x01A963A0, DateTime, TimeZoneInfo_ConvertFromUtc, (TimeZoneInfo * __this, DateTime dateTime, TimeSpan daylightDelta, TimeSpan baseUtcOffsetDelta, MethodInfo * method)); DO_APP_FUNC(0x01A963C0, DateTime, TimeZoneInfo_ConvertToFromUtc, (TimeZoneInfo * __this, DateTime dateTime, TimeSpan daylightDelta, TimeSpan baseUtcOffsetDelta, bool convertToUtc, MethodInfo * method)); -DO_APP_FUNC(0x01A96690, DateTime, TimeZoneInfo_ConvertUtcToTimeZone, (int64_t ticks, TimeZoneInfo * destinationTimeZone, bool isAmbiguousLocalDst, MethodInfo * method)); +DO_APP_FUNC(0x01A96690, DateTime, TimeZoneInfo_ConvertUtcToTimeZone, (int64_t ticks, TimeZoneInfo * destinationTimeZone, bool * isAmbiguousLocalDst, MethodInfo * method)); DO_APP_FUNC(0x01A96A90, DaylightTimeStruct, TimeZoneInfo_GetDaylightTime, (TimeZoneInfo * __this, int32_t year, TimeZoneInfo_AdjustmentRule * rule, Nullable_1_Int32_ ruleIndex, MethodInfo * method)); DO_APP_FUNC(0x01A96C00, bool, TimeZoneInfo_GetIsDaylightSavings, (DateTime time, TimeZoneInfo_AdjustmentRule * rule, DaylightTimeStruct daylightTime, TimeZoneInfoOptions__Enum flags, MethodInfo * method)); DO_APP_FUNC(0x01A971E0, TimeSpan, TimeZoneInfo_GetDaylightSavingsStartOffsetFromUtc, (TimeZoneInfo * __this, TimeSpan baseUtcOffset, TimeZoneInfo_AdjustmentRule * rule, Nullable_1_Int32_ ruleIndex, MethodInfo * method)); DO_APP_FUNC(0x01A972C0, TimeSpan, TimeZoneInfo_GetDaylightSavingsEndOffsetFromUtc, (TimeZoneInfo * __this, TimeSpan baseUtcOffset, TimeZoneInfo_AdjustmentRule * rule, MethodInfo * method)); -DO_APP_FUNC(0x01A97350, bool, TimeZoneInfo_GetIsDaylightSavingsFromUtc, (DateTime time, int32_t year, TimeSpan utc, TimeZoneInfo_AdjustmentRule * rule, Nullable_1_Int32_ ruleIndex, bool isAmbiguousLocalDst, TimeZoneInfo * zone, MethodInfo * method)); +DO_APP_FUNC(0x01A97350, bool, TimeZoneInfo_GetIsDaylightSavingsFromUtc, (DateTime time, int32_t year, TimeSpan utc, TimeZoneInfo_AdjustmentRule * rule, Nullable_1_Int32_ ruleIndex, bool * isAmbiguousLocalDst, TimeZoneInfo * zone, MethodInfo * method)); DO_APP_FUNC(0x01A97E40, bool, TimeZoneInfo_CheckIsDst, (DateTime startTime, DateTime time, DateTime endTime, bool ignoreYearAdjustment, TimeZoneInfo_AdjustmentRule * rule, MethodInfo * method)); DO_APP_FUNC(0x01A981B0, bool, TimeZoneInfo_GetIsAmbiguousTime, (DateTime time, TimeZoneInfo_AdjustmentRule * rule, DaylightTimeStruct daylightTime, MethodInfo * method)); DO_APP_FUNC(0x01A98570, bool, TimeZoneInfo_GetIsInvalidTime, (DateTime time, TimeZoneInfo_AdjustmentRule * rule, DaylightTimeStruct daylightTime, MethodInfo * method)); DO_APP_FUNC(0x01A98930, TimeSpan, TimeZoneInfo_GetUtcOffset_3, (DateTime time, TimeZoneInfo * zone, TimeZoneInfoOptions__Enum flags, MethodInfo * method)); DO_APP_FUNC(0x01A98B90, TimeSpan, TimeZoneInfo_GetUtcOffsetFromUtc, (DateTime time, TimeZoneInfo * zone, MethodInfo * method)); -DO_APP_FUNC(0x01A98C40, TimeSpan, TimeZoneInfo_GetUtcOffsetFromUtc_1, (DateTime time, TimeZoneInfo * zone, bool isDaylightSavings, MethodInfo * method)); -DO_APP_FUNC(0x01A98CC0, TimeSpan, TimeZoneInfo_GetUtcOffsetFromUtc_2, (DateTime time, TimeZoneInfo * zone, bool isDaylightSavings, bool isAmbiguousLocalDst, MethodInfo * method)); +DO_APP_FUNC(0x01A98C40, TimeSpan, TimeZoneInfo_GetUtcOffsetFromUtc_1, (DateTime time, TimeZoneInfo * zone, bool * isDaylightSavings, MethodInfo * method)); +DO_APP_FUNC(0x01A98CC0, TimeSpan, TimeZoneInfo_GetUtcOffsetFromUtc_2, (DateTime time, TimeZoneInfo * zone, bool * isDaylightSavings, bool * isAmbiguousLocalDst, MethodInfo * method)); DO_APP_FUNC(0x01A99030, DateTime, TimeZoneInfo_TransitionTimeToDateTime, (int32_t year, TimeZoneInfo_TransitionTime transitionTime, MethodInfo * method)); -DO_APP_FUNC(0x01A99980, TimeZoneInfo_TimeZoneInfoResult__Enum, TimeZoneInfo_TryGetTimeZone, (String * id, bool dstDisabled, TimeZoneInfo * value, Exception * e, TimeZoneInfo_CachedData * cachedData, bool alwaysFallbackToLocalMachine, MethodInfo * method)); -DO_APP_FUNC(0x01A99C80, TimeZoneInfo_TimeZoneInfoResult__Enum, TimeZoneInfo_TryGetTimeZoneFromLocalMachine_1, (String * id, bool dstDisabled, TimeZoneInfo * value, Exception * e, TimeZoneInfo_CachedData * cachedData, MethodInfo * method)); -DO_APP_FUNC(0x01A9A180, void, TimeZoneInfo_ValidateTimeZoneInfo, (String * id, TimeSpan baseUtcOffset, TimeZoneInfo_AdjustmentRule__Array * adjustmentRules, bool adjustmentRulesSupportDst, MethodInfo * method)); +DO_APP_FUNC(0x01A99980, TimeZoneInfo_TimeZoneInfoResult__Enum, TimeZoneInfo_TryGetTimeZone, (String * id, bool dstDisabled, TimeZoneInfo * * value, Exception * * e, TimeZoneInfo_CachedData * cachedData, bool alwaysFallbackToLocalMachine, MethodInfo * method)); +DO_APP_FUNC(0x01A99C80, TimeZoneInfo_TimeZoneInfoResult__Enum, TimeZoneInfo_TryGetTimeZoneFromLocalMachine_1, (String * id, bool dstDisabled, TimeZoneInfo * * value, Exception * * e, TimeZoneInfo_CachedData * cachedData, MethodInfo * method)); +DO_APP_FUNC(0x01A9A180, void, TimeZoneInfo_ValidateTimeZoneInfo, (String * id, TimeSpan baseUtcOffset, TimeZoneInfo_AdjustmentRule__Array * adjustmentRules, bool * adjustmentRulesSupportDst, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEBE8, TimeZoneInfo_ValidateTimeZoneInfo__MethodInfo); DO_APP_FUNC(0x01A9A5B0, bool, TimeZoneInfo_UtcOffsetOutOfRange, (TimeSpan offset, MethodInfo * method)); DO_APP_FUNC(0x01A9A690, TimeSpan, TimeZoneInfo_GetUtcOffset_4, (TimeSpan baseUtcOffset, TimeZoneInfo_AdjustmentRule * adjustmentRule, MethodInfo * method)); DO_APP_FUNC(0x01A9A770, bool, TimeZoneInfo_IsValidAdjustmentRuleOffest, (TimeSpan baseUtcOffset, TimeZoneInfo_AdjustmentRule * adjustmentRule, MethodInfo * method)); DO_APP_FUNC(0x01A9A890, void, TimeZoneInfo__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01A9ACD0, void, TimeZoneInfo__ctor_3, (TimeZoneInfo * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEA48, TimeZoneInfo__ctor_3__MethodInfo); DO_APP_FUNC(0x01A9AD00, TimeZoneInfo *, TimeZoneInfo_CachedData_GetCurrentOneYearLocal, (MethodInfo * method)); DO_APP_FUNC(0x01A9AE70, TimeZoneInfo_OffsetAndRule *, TimeZoneInfo_CachedData_GetOneYearLocalFromUtc, (TimeZoneInfo_CachedData * __this, int32_t year, MethodInfo * method)); DO_APP_FUNC(0x01A9B130, TimeZoneInfo *, TimeZoneInfo_CachedData_CreateLocal, (TimeZoneInfo_CachedData * __this, MethodInfo * method)); @@ -1091,32 +1099,44 @@ DO_APP_FUNC(0x01A9BA00, TimeZoneInfo_AdjustmentRule *, TimeZoneInfo_AdjustmentRu DO_APP_FUNC(0x01A9BB50, bool, TimeZoneInfo_AdjustmentRule_IsStartDateMarkerForBeginningOfYear, (TimeZoneInfo_AdjustmentRule * __this, MethodInfo * method)); DO_APP_FUNC(0x01A9BCA0, bool, TimeZoneInfo_AdjustmentRule_IsEndDateMarkerForEndOfYear, (TimeZoneInfo_AdjustmentRule * __this, MethodInfo * method)); DO_APP_FUNC(0x01A9BDF0, void, TimeZoneInfo_AdjustmentRule_ValidateAdjustmentRule, (DateTime dateStart, DateTime dateEnd, TimeSpan daylightDelta, TimeZoneInfo_TransitionTime daylightTransitionStart, TimeZoneInfo_TransitionTime daylightTransitionEnd, bool noDaylightTransitions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEA28, TimeZoneInfo_AdjustmentRule_ValidateAdjustmentRule__MethodInfo); DO_APP_FUNC(0x01A9C5B0, void, TimeZoneInfo_AdjustmentRule_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization, (TimeZoneInfo_AdjustmentRule * __this, Object * sender, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE960, TimeZoneInfo_AdjustmentRule_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization__MethodInfo); DO_APP_FUNC(0x01A9C690, void, TimeZoneInfo_AdjustmentRule_System_Runtime_Serialization_ISerializable_GetObjectData, (TimeZoneInfo_AdjustmentRule * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE8B0, TimeZoneInfo_AdjustmentRule_System_Runtime_Serialization_ISerializable_GetObjectData__MethodInfo); DO_APP_FUNC(0x01A9C8D0, void, TimeZoneInfo_AdjustmentRule__ctor_1, (TimeZoneInfo_AdjustmentRule * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE8E0, TimeZoneInfo_AdjustmentRule__ctor_1__MethodInfo); DO_APP_FUNC(0x01A9CD20, void, TimeZoneInfo_AdjustmentRule__ctor_2, (TimeZoneInfo_AdjustmentRule * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, DateTime, TimeZoneInfo_TransitionTime_get_TimeOfDay, (TimeZoneInfo_TransitionTime__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C23340, int32_t, TimeZoneInfo_TransitionTime_get_Month, (TimeZoneInfo_TransitionTime__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01A9CD50, int32_t, TimeZoneInfo_TransitionTime_get_Week, (TimeZoneInfo_TransitionTime__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01A9CD60, int32_t, TimeZoneInfo_TransitionTime_get_Day, (TimeZoneInfo_TransitionTime__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E57F20, DayOfWeek__Enum, TimeZoneInfo_TransitionTime_get_DayOfWeek, (TimeZoneInfo_TransitionTime__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD20, bool, TimeZoneInfo_TransitionTime_get_IsFixedDateRule, (TimeZoneInfo_TransitionTime__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01A9CD70, bool, TimeZoneInfo_TransitionTime_Equals, (TimeZoneInfo_TransitionTime__Boxed * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE900, TimeZoneInfo_AdjustmentRule__ctor_2__MethodInfo); +DO_APP_FUNC(0x00471910, DateTime, TimeZoneInfo_TransitionTime_get_TimeOfDay, (TimeZoneInfo_TransitionTime * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C23340, int32_t, TimeZoneInfo_TransitionTime_get_Month, (TimeZoneInfo_TransitionTime * __this, MethodInfo * method)); +DO_APP_FUNC(0x01A9CD50, int32_t, TimeZoneInfo_TransitionTime_get_Week, (TimeZoneInfo_TransitionTime * __this, MethodInfo * method)); +DO_APP_FUNC(0x01A9CD60, int32_t, TimeZoneInfo_TransitionTime_get_Day, (TimeZoneInfo_TransitionTime * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E57F20, DayOfWeek__Enum, TimeZoneInfo_TransitionTime_get_DayOfWeek, (TimeZoneInfo_TransitionTime * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD20, bool, TimeZoneInfo_TransitionTime_get_IsFixedDateRule, (TimeZoneInfo_TransitionTime * __this, MethodInfo * method)); +DO_APP_FUNC(0x01A9CD70, bool, TimeZoneInfo_TransitionTime_Equals, (TimeZoneInfo_TransitionTime * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x01A9CE10, bool, TimeZoneInfo_TransitionTime_op_Inequality, (TimeZoneInfo_TransitionTime t1, TimeZoneInfo_TransitionTime t2, MethodInfo * method)); -DO_APP_FUNC(0x01A9CE40, bool, TimeZoneInfo_TransitionTime_Equals_1, (TimeZoneInfo_TransitionTime__Boxed * __this, TimeZoneInfo_TransitionTime other, MethodInfo * method)); -DO_APP_FUNC(0x01A9CF40, int32_t, TimeZoneInfo_TransitionTime_GetHashCode, (TimeZoneInfo_TransitionTime__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01A9CF50, void, TimeZoneInfo_TransitionTime__ctor, (TimeZoneInfo_TransitionTime__Boxed * __this, DateTime timeOfDay, int32_t month, int32_t week, int32_t day, DayOfWeek__Enum dayOfWeek, bool isFixedDateRule, MethodInfo * method)); +DO_APP_FUNC(0x01A9CE40, bool, TimeZoneInfo_TransitionTime_Equals_1, (TimeZoneInfo_TransitionTime * __this, TimeZoneInfo_TransitionTime other, MethodInfo * method)); +DO_APP_FUNC(0x01A9CF40, int32_t, TimeZoneInfo_TransitionTime_GetHashCode, (TimeZoneInfo_TransitionTime * __this, MethodInfo * method)); +DO_APP_FUNC(0x01A9CF50, void, TimeZoneInfo_TransitionTime__ctor, (TimeZoneInfo_TransitionTime * __this, DateTime timeOfDay, int32_t month, int32_t week, int32_t day, DayOfWeek__Enum dayOfWeek, bool isFixedDateRule, MethodInfo * method)); DO_APP_FUNC(0x01A9CFE0, TimeZoneInfo_TransitionTime, TimeZoneInfo_TransitionTime_CreateFixedDateRule, (DateTime timeOfDay, int32_t month, int32_t day, MethodInfo * method)); DO_APP_FUNC(0x01A9D060, TimeZoneInfo_TransitionTime, TimeZoneInfo_TransitionTime_CreateFloatingDateRule, (DateTime timeOfDay, int32_t month, int32_t week, DayOfWeek__Enum dayOfWeek, MethodInfo * method)); DO_APP_FUNC(0x01A9D0F0, void, TimeZoneInfo_TransitionTime_ValidateTransitionTime, (DateTime timeOfDay, int32_t month, int32_t week, int32_t day, DayOfWeek__Enum dayOfWeek, MethodInfo * method)); -DO_APP_FUNC(0x01A9D500, void, TimeZoneInfo_TransitionTime_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization, (TimeZoneInfo_TransitionTime__Boxed * __this, Object * sender, MethodInfo * method)); -DO_APP_FUNC(0x01A9D5B0, void, TimeZoneInfo_TransitionTime_System_Runtime_Serialization_ISerializable_GetObjectData, (TimeZoneInfo_TransitionTime__Boxed * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); -DO_APP_FUNC(0x01A9D750, void, TimeZoneInfo_TransitionTime__ctor_1, (TimeZoneInfo_TransitionTime__Boxed * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE840, TimeZoneInfo_TransitionTime_ValidateTransitionTime__MethodInfo); +DO_APP_FUNC(0x01A9D500, void, TimeZoneInfo_TransitionTime_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization, (TimeZoneInfo_TransitionTime * __this, Object * sender, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE890, TimeZoneInfo_TransitionTime_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization__MethodInfo); +DO_APP_FUNC(0x01A9D5B0, void, TimeZoneInfo_TransitionTime_System_Runtime_Serialization_ISerializable_GetObjectData, (TimeZoneInfo_TransitionTime * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE818, TimeZoneInfo_TransitionTime_System_Runtime_Serialization_ISerializable_GetObjectData__MethodInfo); +DO_APP_FUNC(0x01A9D750, void, TimeZoneInfo_TransitionTime__ctor_1, (TimeZoneInfo_TransitionTime * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE828, TimeZoneInfo_TransitionTime__ctor_1__MethodInfo); DO_APP_FUNC(0x01A9DB10, void, TimeZoneInfo_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TimeZoneInfo_c__ctor, (TimeZoneInfo_c * __this, MethodInfo * method)); DO_APP_FUNC(0x01A9DBC0, int32_t, TimeZoneInfo_c__GetSystemTimeZonesWinRTFallback_b__49_0, (TimeZoneInfo_c * __this, TimeZoneInfo * x, TimeZoneInfo * y, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEFD8, TimeZoneInfo_c__GetSystemTimeZonesWinRTFallback_b__49_0__MethodInfo); DO_APP_FUNC(0x01A9DD20, int32_t, TimeZoneInfo_c__GetSystemTimeZones_b__110_0, (TimeZoneInfo_c * __this, TimeZoneInfo * x, TimeZoneInfo * y, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEEB8, TimeZoneInfo_c__GetSystemTimeZones_b__110_0__MethodInfo); DO_APP_FUNC(0x01A9DE80, bool, TimeZoneInfo_c___cctor_b__157_0, (TimeZoneInfo_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEB60, TimeZoneInfo_c___cctor_b__157_0__MethodInfo); DO_APP_FUNC(0x003F7AE0, void, Action__ctor, (Action * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003CB0B0, void, Action_Invoke, (Action * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8EA90, Action_Invoke__MethodInfo); @@ -1128,10 +1148,13 @@ DO_APP_FUNC(0x01A9E200, void, AggregateException__ctor_2, (AggregateException * DO_APP_FUNC(0x01A9E250, void, AggregateException__ctor_3, (AggregateException * __this, String * message, IEnumerable_1_System_Exception_ * innerExceptions, MethodInfo * method)); DO_APP_FUNC(0x01A9E320, void, AggregateException__ctor_4, (AggregateException * __this, String * message, Exception__Array * innerExceptions, MethodInfo * method)); DO_APP_FUNC(0x01A9E330, void, AggregateException__ctor_5, (AggregateException * __this, String * message, IList_1_System_Exception_ * innerExceptions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE7A0, AggregateException__ctor_5__MethodInfo); DO_APP_FUNC(0x01A9E660, void, AggregateException__ctor_6, (AggregateException * __this, IEnumerable_1_System_Runtime_ExceptionServices_ExceptionDispatchInfo_ * innerExceptionInfos, MethodInfo * method)); DO_APP_FUNC(0x01A9E6B0, void, AggregateException__ctor_7, (AggregateException * __this, String * message, IEnumerable_1_System_Runtime_ExceptionServices_ExceptionDispatchInfo_ * innerExceptionInfos, MethodInfo * method)); DO_APP_FUNC(0x01A9E780, void, AggregateException__ctor_8, (AggregateException * __this, String * message, IList_1_System_Runtime_ExceptionServices_ExceptionDispatchInfo_ * innerExceptionInfos, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE748, AggregateException__ctor_8__MethodInfo); DO_APP_FUNC(0x01A9EAD0, void, AggregateException__ctor_9, (AggregateException * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE758, AggregateException__ctor_9__MethodInfo); DO_APP_FUNC(0x01A9ED80, void, AggregateException_GetObjectData, (AggregateException * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x01A9F000, Exception *, AggregateException_GetBaseException, (AggregateException * __this, MethodInfo * method)); DO_APP_FUNC(0x00A4F060, ReadOnlyCollection_1_System_Exception_ *, AggregateException_get_InnerExceptions, (AggregateException * __this, MethodInfo * method)); @@ -1209,6 +1232,7 @@ DO_APP_FUNC(0x01AA1810, uint64_t, BitConverter_ToUInt64, (Byte__Array * value, i DO_APP_FUNC(0x01AA18B0, float, BitConverter_ToSingle, (Byte__Array * value, int32_t startIndex, MethodInfo * method)); DO_APP_FUNC(0x01AA1950, double, BitConverter_ToDouble, (Byte__Array * value, int32_t startIndex, MethodInfo * method)); DO_APP_FUNC(0x01AA19F0, String *, BitConverter_ToString, (Byte__Array * value, int32_t startIndex, int32_t length, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE650, BitConverter_ToString__MethodInfo); DO_APP_FUNC(0x01AA2030, String *, BitConverter_ToString_1, (Byte__Array * value, MethodInfo * method)); DO_APP_FUNC(0x01AA20A0, bool, BitConverter_ToBoolean, (Byte__Array * value, int32_t startIndex, MethodInfo * method)); DO_APP_FUNC(0x01AA20F0, int64_t, BitConverter_DoubleToInt64Bits, (double value, MethodInfo * method)); @@ -1219,83 +1243,94 @@ DO_APP_FUNC(0x01AA2130, void, BitConverter__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01AA2170, void, BitConverter_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BitConverter_c__ctor, (BitConverter_c * __this, MethodInfo * method)); DO_APP_FUNC(0x01AA2220, void, BitConverter_c__ToString_b__38_0, (BitConverter_c * __this, Span_1_Char_ dst, ValueTuple_3_Byte_Int32_Int32_ state, MethodInfo * method)); -DO_APP_FUNC(0x01AA2460, int32_t, Boolean_GetHashCode, (Boolean__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01AA2470, String *, Boolean_ToString, (Boolean__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01AA24D0, String *, Boolean_ToString_1, (Boolean__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01AA2560, bool, Boolean_Equals, (Boolean__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x01AA25F0, bool, Boolean_Equals_1, (Boolean__Boxed * __this, bool obj, MethodInfo * method)); -DO_APP_FUNC(0x01AA2600, int32_t, Boolean_CompareTo, (Boolean__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x01AA2700, int32_t, Boolean_CompareTo_1, (Boolean__Boxed * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE638, BitConverter_c__ToString_b__38_0__MethodInfo); +DO_APP_FUNC(0x01AA2460, int32_t, Boolean_GetHashCode, (Boolean * __this, MethodInfo * method)); +DO_APP_FUNC(0x01AA2470, String *, Boolean_ToString, (Boolean * __this, MethodInfo * method)); +DO_APP_FUNC(0x01AA24D0, String *, Boolean_ToString_1, (Boolean * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01AA2560, bool, Boolean_Equals, (Boolean * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x01AA25F0, bool, Boolean_Equals_1, (Boolean * __this, bool obj, MethodInfo * method)); +DO_APP_FUNC(0x01AA2600, int32_t, Boolean_CompareTo, (Boolean * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE620, Boolean_CompareTo__MethodInfo); +DO_APP_FUNC(0x01AA2700, int32_t, Boolean_CompareTo_1, (Boolean * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x01AA2720, bool, Boolean_Parse, (String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE5D0, Boolean_Parse__MethodInfo); DO_APP_FUNC(0x01AA28B0, bool, Boolean_Parse_1, (ReadOnlySpan_1_Char_ value, MethodInfo * method)); -DO_APP_FUNC(0x01AA2970, bool, Boolean_TryParse, (String * value, bool result, MethodInfo * method)); -DO_APP_FUNC(0x01AA2A30, bool, Boolean_TryParse_1, (ReadOnlySpan_1_Char_ value, bool result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE5E0, Boolean_Parse_1__MethodInfo); +DO_APP_FUNC(0x01AA2970, bool, Boolean_TryParse, (String * value, bool * result, MethodInfo * method)); +DO_APP_FUNC(0x01AA2A30, bool, Boolean_TryParse_1, (ReadOnlySpan_1_Char_ value, bool * result, MethodInfo * method)); DO_APP_FUNC(0x01AA2E00, ReadOnlySpan_1_Char_, Boolean_TrimWhiteSpaceAndNull, (ReadOnlySpan_1_Char_ value, MethodInfo * method)); -DO_APP_FUNC(0x007159C0, TypeCode__Enum, Boolean_GetTypeCode, (Boolean__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01AA2FA0, bool, Boolean_System_IConvertible_ToBoolean, (Boolean__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01AA2FB0, uint16_t, Boolean_System_IConvertible_ToChar, (Boolean__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01AA3040, int8_t, Boolean_System_IConvertible_ToSByte, (Boolean__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01AA3090, uint8_t, Boolean_System_IConvertible_ToByte, (Boolean__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01AA30E0, int16_t, Boolean_System_IConvertible_ToInt16, (Boolean__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01AA3130, uint16_t, Boolean_System_IConvertible_ToUInt16, (Boolean__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01AA3180, int32_t, Boolean_System_IConvertible_ToInt32, (Boolean__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01AA31D0, uint32_t, Boolean_System_IConvertible_ToUInt32, (Boolean__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01AA3220, int64_t, Boolean_System_IConvertible_ToInt64, (Boolean__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01AA3270, uint64_t, Boolean_System_IConvertible_ToUInt64, (Boolean__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01AA32C0, float, Boolean_System_IConvertible_ToSingle, (Boolean__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01AA3320, double, Boolean_System_IConvertible_ToDouble, (Boolean__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01AA3380, Decimal, Boolean_System_IConvertible_ToDecimal, (Boolean__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01AA3440, DateTime, Boolean_System_IConvertible_ToDateTime, (Boolean__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01AA34D0, Object *, Boolean_System_IConvertible_ToType, (Boolean__Boxed * __this, Type * type, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x007159C0, TypeCode__Enum, Boolean_GetTypeCode, (Boolean * __this, MethodInfo * method)); +DO_APP_FUNC(0x01AA2FA0, bool, Boolean_System_IConvertible_ToBoolean, (Boolean * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01AA2FB0, uint16_t, Boolean_System_IConvertible_ToChar, (Boolean * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE5F8, Boolean_System_IConvertible_ToChar__MethodInfo); +DO_APP_FUNC(0x01AA3040, int8_t, Boolean_System_IConvertible_ToSByte, (Boolean * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01AA3090, uint8_t, Boolean_System_IConvertible_ToByte, (Boolean * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01AA30E0, int16_t, Boolean_System_IConvertible_ToInt16, (Boolean * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01AA3130, uint16_t, Boolean_System_IConvertible_ToUInt16, (Boolean * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01AA3180, int32_t, Boolean_System_IConvertible_ToInt32, (Boolean * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01AA31D0, uint32_t, Boolean_System_IConvertible_ToUInt32, (Boolean * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01AA3220, int64_t, Boolean_System_IConvertible_ToInt64, (Boolean * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01AA3270, uint64_t, Boolean_System_IConvertible_ToUInt64, (Boolean * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01AA32C0, float, Boolean_System_IConvertible_ToSingle, (Boolean * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01AA3320, double, Boolean_System_IConvertible_ToDouble, (Boolean * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01AA3380, Decimal, Boolean_System_IConvertible_ToDecimal, (Boolean * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01AA3440, DateTime, Boolean_System_IConvertible_ToDateTime, (Boolean * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE5B8, Boolean_System_IConvertible_ToDateTime__MethodInfo); +DO_APP_FUNC(0x01AA34D0, Object *, Boolean_System_IConvertible_ToType, (Boolean * __this, Type * type, IFormatProvider * provider, MethodInfo * method)); DO_APP_FUNC(0x01AA3570, void, Boolean__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x01AA36A0, int32_t, Byte_CompareTo, (Byte__Boxed * __this, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x01AA3780, int32_t, Byte_CompareTo_1, (Byte__Boxed * __this, uint8_t value, MethodInfo * method)); -DO_APP_FUNC(0x01AA3790, bool, Byte_Equals, (Byte__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x01AA25F0, bool, Byte_Equals_1, (Byte__Boxed * __this, uint8_t obj, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, int32_t, Byte_GetHashCode, (Byte__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01AA36A0, int32_t, Byte_CompareTo, (Byte * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE5C8, Byte_CompareTo__MethodInfo); +DO_APP_FUNC(0x01AA3780, int32_t, Byte_CompareTo_1, (Byte * __this, uint8_t value, MethodInfo * method)); +DO_APP_FUNC(0x01AA3790, bool, Byte_Equals, (Byte * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x01AA25F0, bool, Byte_Equals_1, (Byte * __this, uint8_t obj, MethodInfo * method)); +DO_APP_FUNC(0x00C173D0, int32_t, Byte_GetHashCode, (Byte * __this, MethodInfo * method)); DO_APP_FUNC(0x01AA3820, uint8_t, Byte_Parse, (String * s, MethodInfo * method)); DO_APP_FUNC(0x01AA38A0, uint8_t, Byte_Parse_1, (String * s, NumberStyles__Enum style, MethodInfo * method)); DO_APP_FUNC(0x01AA3930, uint8_t, Byte_Parse_2, (String * s, IFormatProvider * provider, MethodInfo * method)); DO_APP_FUNC(0x01AA39C0, uint8_t, Byte_Parse_3, (String * s, NumberStyles__Enum style, IFormatProvider * provider, MethodInfo * method)); DO_APP_FUNC(0x01AA3A60, uint8_t, Byte_Parse_4, (ReadOnlySpan_1_Char_ s, NumberStyles__Enum style, NumberFormatInfo * info, MethodInfo * method)); -DO_APP_FUNC(0x01AA3BA0, bool, Byte_TryParse, (String * s, uint8_t result, MethodInfo * method)); -DO_APP_FUNC(0x01AA3C40, bool, Byte_TryParse_1, (String * s, NumberStyles__Enum style, IFormatProvider * provider, uint8_t result, MethodInfo * method)); -DO_APP_FUNC(0x01AA3D00, bool, Byte_TryParse_2, (ReadOnlySpan_1_Char_ s, NumberStyles__Enum style, NumberFormatInfo * info, uint8_t result, MethodInfo * method)); -DO_APP_FUNC(0x01AA3DC0, String *, Byte_ToString, (Byte__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01AA3E60, String *, Byte_ToString_1, (Byte__Boxed * __this, String * format, MethodInfo * method)); -DO_APP_FUNC(0x01AA3F20, String *, Byte_ToString_2, (Byte__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01AA3FD0, String *, Byte_ToString_3, (Byte__Boxed * __this, String * format, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01AA40A0, bool, Byte_TryFormat, (Byte__Boxed * __this, Span_1_Char_ destination, int32_t charsWritten, ReadOnlySpan_1_Char_ format, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01AA4150, TypeCode__Enum, Byte_GetTypeCode, (Byte__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01AA4160, bool, Byte_System_IConvertible_ToBoolean, (Byte__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01AA41B0, uint16_t, Byte_System_IConvertible_ToChar, (Byte__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01AA4200, int8_t, Byte_System_IConvertible_ToSByte, (Byte__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, uint8_t, Byte_System_IConvertible_ToByte, (Byte__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01AA4290, int16_t, Byte_System_IConvertible_ToInt16, (Byte__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01AA42E0, uint16_t, Byte_System_IConvertible_ToUInt16, (Byte__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01AA4330, int32_t, Byte_System_IConvertible_ToInt32, (Byte__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01AA4380, uint32_t, Byte_System_IConvertible_ToUInt32, (Byte__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01AA43D0, int64_t, Byte_System_IConvertible_ToInt64, (Byte__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01AA4420, uint64_t, Byte_System_IConvertible_ToUInt64, (Byte__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01AA4470, float, Byte_System_IConvertible_ToSingle, (Byte__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01AA44C0, double, Byte_System_IConvertible_ToDouble, (Byte__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01AA4510, Decimal, Byte_System_IConvertible_ToDecimal, (Byte__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01AA45C0, DateTime, Byte_System_IConvertible_ToDateTime, (Byte__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01AA4650, Object *, Byte_System_IConvertible_ToType, (Byte__Boxed * __this, Type * type, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE5B0, Byte_Parse_4__MethodInfo); +DO_APP_FUNC(0x01AA3BA0, bool, Byte_TryParse, (String * s, uint8_t * result, MethodInfo * method)); +DO_APP_FUNC(0x01AA3C40, bool, Byte_TryParse_1, (String * s, NumberStyles__Enum style, IFormatProvider * provider, uint8_t * result, MethodInfo * method)); +DO_APP_FUNC(0x01AA3D00, bool, Byte_TryParse_2, (ReadOnlySpan_1_Char_ s, NumberStyles__Enum style, NumberFormatInfo * info, uint8_t * result, MethodInfo * method)); +DO_APP_FUNC(0x01AA3DC0, String *, Byte_ToString, (Byte * __this, MethodInfo * method)); +DO_APP_FUNC(0x01AA3E60, String *, Byte_ToString_1, (Byte * __this, String * format, MethodInfo * method)); +DO_APP_FUNC(0x01AA3F20, String *, Byte_ToString_2, (Byte * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01AA3FD0, String *, Byte_ToString_3, (Byte * __this, String * format, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01AA40A0, bool, Byte_TryFormat, (Byte * __this, Span_1_Char_ destination, int32_t * charsWritten, ReadOnlySpan_1_Char_ format, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01AA4150, TypeCode__Enum, Byte_GetTypeCode, (Byte * __this, MethodInfo * method)); +DO_APP_FUNC(0x01AA4160, bool, Byte_System_IConvertible_ToBoolean, (Byte * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01AA41B0, uint16_t, Byte_System_IConvertible_ToChar, (Byte * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01AA4200, int8_t, Byte_System_IConvertible_ToSByte, (Byte * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x00C173D0, uint8_t, Byte_System_IConvertible_ToByte, (Byte * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01AA4290, int16_t, Byte_System_IConvertible_ToInt16, (Byte * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01AA42E0, uint16_t, Byte_System_IConvertible_ToUInt16, (Byte * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01AA4330, int32_t, Byte_System_IConvertible_ToInt32, (Byte * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01AA4380, uint32_t, Byte_System_IConvertible_ToUInt32, (Byte * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01AA43D0, int64_t, Byte_System_IConvertible_ToInt64, (Byte * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01AA4420, uint64_t, Byte_System_IConvertible_ToUInt64, (Byte * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01AA4470, float, Byte_System_IConvertible_ToSingle, (Byte * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01AA44C0, double, Byte_System_IConvertible_ToDouble, (Byte * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01AA4510, Decimal, Byte_System_IConvertible_ToDecimal, (Byte * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01AA45C0, DateTime, Byte_System_IConvertible_ToDateTime, (Byte * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE598, Byte_System_IConvertible_ToDateTime__MethodInfo); +DO_APP_FUNC(0x01AA4650, Object *, Byte_System_IConvertible_ToType, (Byte * __this, Type * type, IFormatProvider * provider, MethodInfo * method)); DO_APP_FUNC(0x003BCD30, void, CLSCompliantAttribute__ctor, (CLSCompliantAttribute * __this, bool isCompliant, MethodInfo * method)); DO_APP_FUNC(0x01AA46F0, bool, Char_IsLatin1, (uint16_t ch, MethodInfo * method)); DO_APP_FUNC(0x01AA4700, bool, Char_IsAscii, (uint16_t ch, MethodInfo * method)); DO_APP_FUNC(0x01AA4710, UnicodeCategory__Enum, Char_GetLatin1UnicodeCategory, (uint16_t ch, MethodInfo * method)); -DO_APP_FUNC(0x01AA4790, int32_t, Char_GetHashCode, (Char__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01AA47A0, bool, Char_Equals, (Char__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x01AA4830, bool, Char_Equals_1, (Char__Boxed * __this, uint16_t obj, MethodInfo * method)); -DO_APP_FUNC(0x01AA4840, int32_t, Char_CompareTo, (Char__Boxed * __this, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x01AA4920, int32_t, Char_CompareTo_1, (Char__Boxed * __this, uint16_t value, MethodInfo * method)); -DO_APP_FUNC(0x01AA4930, String *, Char_ToString, (Char__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01AA49A0, String *, Char_ToString_1, (Char__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01AA4790, int32_t, Char_GetHashCode, (Char * __this, MethodInfo * method)); +DO_APP_FUNC(0x01AA47A0, bool, Char_Equals, (Char * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x01AA4830, bool, Char_Equals_1, (Char * __this, uint16_t obj, MethodInfo * method)); +DO_APP_FUNC(0x01AA4840, int32_t, Char_CompareTo, (Char * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE580, Char_CompareTo__MethodInfo); +DO_APP_FUNC(0x01AA4920, int32_t, Char_CompareTo_1, (Char * __this, uint16_t value, MethodInfo * method)); +DO_APP_FUNC(0x01AA4930, String *, Char_ToString, (Char * __this, MethodInfo * method)); +DO_APP_FUNC(0x01AA49A0, String *, Char_ToString_1, (Char * __this, IFormatProvider * provider, MethodInfo * method)); DO_APP_FUNC(0x019513D0, String *, Char_ToString_2, (uint16_t c, MethodInfo * method)); DO_APP_FUNC(0x01AA4A10, uint16_t, Char_Parse, (String * s, MethodInfo * method)); -DO_APP_FUNC(0x01AA4AD0, bool, Char_TryParse, (String * s, uint16_t result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE588, Char_Parse__MethodInfo); +DO_APP_FUNC(0x01AA4AD0, bool, Char_TryParse, (String * s, uint16_t * result, MethodInfo * method)); DO_APP_FUNC(0x01AA4AF0, bool, Char_IsDigit, (uint16_t c, MethodInfo * method)); DO_APP_FUNC(0x01AA4B70, bool, Char_CheckLetter, (UnicodeCategory__Enum uc, MethodInfo * method)); DO_APP_FUNC(0x01AA4B80, bool, Char_IsLetter, (uint16_t c, MethodInfo * method)); @@ -1308,49 +1343,65 @@ DO_APP_FUNC(0x01AA4ED0, bool, Char_IsPunctuation, (uint16_t c, MethodInfo * meth DO_APP_FUNC(0x01AA4F80, bool, Char_CheckLetterOrDigit, (UnicodeCategory__Enum uc, MethodInfo * method)); DO_APP_FUNC(0x01AA4F90, bool, Char_IsLetterOrDigit, (uint16_t c, MethodInfo * method)); DO_APP_FUNC(0x01AA5040, uint16_t, Char_ToUpper, (uint16_t c, CultureInfo * culture, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE570, Char_ToUpper__MethodInfo); DO_APP_FUNC(0x01AA50F0, uint16_t, Char_ToUpper_1, (uint16_t c, MethodInfo * method)); DO_APP_FUNC(0x01AA51C0, uint16_t, Char_ToUpperInvariant, (uint16_t c, MethodInfo * method)); DO_APP_FUNC(0x01AA5290, uint16_t, Char_ToLower, (uint16_t c, CultureInfo * culture, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE560, Char_ToLower__MethodInfo); DO_APP_FUNC(0x01AA5340, uint16_t, Char_ToLower_1, (uint16_t c, MethodInfo * method)); DO_APP_FUNC(0x01AA5410, uint16_t, Char_ToLowerInvariant, (uint16_t c, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1E0, TypeCode__Enum, Char_GetTypeCode, (Char__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01AA54E0, bool, Char_System_IConvertible_ToBoolean, (Char__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x00C15E20, uint16_t, Char_System_IConvertible_ToChar, (Char__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01AA5570, int8_t, Char_System_IConvertible_ToSByte, (Char__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01AA5600, uint8_t, Char_System_IConvertible_ToByte, (Char__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01AA5690, int16_t, Char_System_IConvertible_ToInt16, (Char__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01AA5720, uint16_t, Char_System_IConvertible_ToUInt16, (Char__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01AA5770, int32_t, Char_System_IConvertible_ToInt32, (Char__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01AA57C0, uint32_t, Char_System_IConvertible_ToUInt32, (Char__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01AA5810, int64_t, Char_System_IConvertible_ToInt64, (Char__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01AA5860, uint64_t, Char_System_IConvertible_ToUInt64, (Char__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01AA58B0, float, Char_System_IConvertible_ToSingle, (Char__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01AA5940, double, Char_System_IConvertible_ToDouble, (Char__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01AA59D0, Decimal, Char_System_IConvertible_ToDecimal, (Char__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01AA5A60, DateTime, Char_System_IConvertible_ToDateTime, (Char__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01AA5AF0, Object *, Char_System_IConvertible_ToType, (Char__Boxed * __this, Type * type, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1E0, TypeCode__Enum, Char_GetTypeCode, (Char * __this, MethodInfo * method)); +DO_APP_FUNC(0x01AA54E0, bool, Char_System_IConvertible_ToBoolean, (Char * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE568, Char_System_IConvertible_ToBoolean__MethodInfo); +DO_APP_FUNC(0x00C15E20, uint16_t, Char_System_IConvertible_ToChar, (Char * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01AA5570, int8_t, Char_System_IConvertible_ToSByte, (Char * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01AA5600, uint8_t, Char_System_IConvertible_ToByte, (Char * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01AA5690, int16_t, Char_System_IConvertible_ToInt16, (Char * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01AA5720, uint16_t, Char_System_IConvertible_ToUInt16, (Char * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01AA5770, int32_t, Char_System_IConvertible_ToInt32, (Char * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01AA57C0, uint32_t, Char_System_IConvertible_ToUInt32, (Char * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01AA5810, int64_t, Char_System_IConvertible_ToInt64, (Char * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01AA5860, uint64_t, Char_System_IConvertible_ToUInt64, (Char * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01AA58B0, float, Char_System_IConvertible_ToSingle, (Char * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE540, Char_System_IConvertible_ToSingle__MethodInfo); +DO_APP_FUNC(0x01AA5940, double, Char_System_IConvertible_ToDouble, (Char * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE548, Char_System_IConvertible_ToDouble__MethodInfo); +DO_APP_FUNC(0x01AA59D0, Decimal, Char_System_IConvertible_ToDecimal, (Char * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE550, Char_System_IConvertible_ToDecimal__MethodInfo); +DO_APP_FUNC(0x01AA5A60, DateTime, Char_System_IConvertible_ToDateTime, (Char * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE558, Char_System_IConvertible_ToDateTime__MethodInfo); +DO_APP_FUNC(0x01AA5AF0, Object *, Char_System_IConvertible_ToType, (Char * __this, Type * type, IFormatProvider * provider, MethodInfo * method)); DO_APP_FUNC(0x01AA5B90, bool, Char_IsControl, (uint16_t c, MethodInfo * method)); DO_APP_FUNC(0x01AA5C20, bool, Char_IsLetter_1, (String * s, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE528, Char_IsLetter_1__MethodInfo); DO_APP_FUNC(0x01AA5E60, bool, Char_IsLetterOrDigit_1, (String * s, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE530, Char_IsLetterOrDigit_1__MethodInfo); DO_APP_FUNC(0x01AA6060, bool, Char_CheckNumber, (UnicodeCategory__Enum uc, MethodInfo * method)); DO_APP_FUNC(0x01AA6070, bool, Char_IsNumber, (uint16_t c, MethodInfo * method)); DO_APP_FUNC(0x01AA6150, bool, Char_IsNumber_1, (String * s, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE538, Char_IsNumber_1__MethodInfo); DO_APP_FUNC(0x01AA6380, bool, Char_CheckSeparator, (UnicodeCategory__Enum uc, MethodInfo * method)); DO_APP_FUNC(0x01AA6390, bool, Char_IsSeparatorLatin1, (uint16_t c, MethodInfo * method)); DO_APP_FUNC(0x01AA63B0, bool, Char_IsSeparator, (uint16_t c, MethodInfo * method)); DO_APP_FUNC(0x01AA6460, bool, Char_IsSurrogate, (uint16_t c, MethodInfo * method)); DO_APP_FUNC(0x01AA6480, bool, Char_IsSurrogate_1, (String * s, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE508, Char_IsSurrogate_1__MethodInfo); DO_APP_FUNC(0x01AA65C0, bool, Char_CheckSymbol, (UnicodeCategory__Enum uc, MethodInfo * method)); DO_APP_FUNC(0x01AA65D0, bool, Char_IsSymbol, (uint16_t c, MethodInfo * method)); DO_APP_FUNC(0x01AA6680, bool, Char_IsWhiteSpace_1, (String * s, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE510, Char_IsWhiteSpace_1__MethodInfo); DO_APP_FUNC(0x01AA6890, UnicodeCategory__Enum, Char_GetUnicodeCategory, (uint16_t c, MethodInfo * method)); DO_APP_FUNC(0x01AA6920, UnicodeCategory__Enum, Char_GetUnicodeCategory_1, (String * s, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE518, Char_GetUnicodeCategory_1__MethodInfo); DO_APP_FUNC(0x01AA6AA0, bool, Char_IsHighSurrogate, (uint16_t c, MethodInfo * method)); DO_APP_FUNC(0x01AA6AC0, bool, Char_IsHighSurrogate_1, (String * s, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE520, Char_IsHighSurrogate_1__MethodInfo); DO_APP_FUNC(0x01AA6C10, bool, Char_IsLowSurrogate, (uint16_t c, MethodInfo * method)); DO_APP_FUNC(0x01AA6C30, bool, Char_IsSurrogatePair, (uint16_t highSurrogate, uint16_t lowSurrogate, MethodInfo * method)); DO_APP_FUNC(0x01AA6C60, String *, Char_ConvertFromUtf32, (int32_t utf32, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE4C8, Char_ConvertFromUtf32__MethodInfo); DO_APP_FUNC(0x01AA6DE0, int32_t, Char_ConvertToUtf32, (uint16_t highSurrogate, uint16_t lowSurrogate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE4E0, Char_ConvertToUtf32__MethodInfo); DO_APP_FUNC(0x01AA6F50, void, Char__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01AA7030, void, CharEnumerator__ctor, (CharEnumerator * __this, String * str, MethodInfo * method)); DO_APP_FUNC(0x01AA70A0, Object *, CharEnumerator_Clone, (CharEnumerator * __this, MethodInfo * method)); @@ -1358,25 +1409,39 @@ DO_APP_FUNC(0x01AA70B0, bool, CharEnumerator_MoveNext, (CharEnumerator * __this, DO_APP_FUNC(0x01AA7110, void, CharEnumerator_Dispose, (CharEnumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x01AA7180, Object *, CharEnumerator_System_Collections_IEnumerator_get_Current, (CharEnumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x01AA7290, uint16_t, CharEnumerator_get_Current, (CharEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE500, CharEnumerator_get_Current__MethodInfo); DO_APP_FUNC(0x01AA7370, void, CharEnumerator_Reset, (CharEnumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x01AA7380, void, CharEnumerator__ctor_1, (CharEnumerator * __this, MethodInfo * method)); -DO_APP_FUNC(0x01AA73B0, bool, Convert_TryDecodeFromUtf16, (ReadOnlySpan_1_Char_ utf16, Span_1_Byte_ bytes, int32_t consumed, int32_t written, MethodInfo * method)); -DO_APP_FUNC(0x01AA7720, int32_t, Convert_Decode, (uint16_t encodedChars, int8_t decodingMap, MethodInfo * method)); -DO_APP_FUNC(0x01AA7780, void, Convert_WriteThreeLowOrderBytes, (uint8_t destination, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE488, CharEnumerator__ctor_1__MethodInfo); +DO_APP_FUNC(0x01AA73B0, bool, Convert_TryDecodeFromUtf16, (ReadOnlySpan_1_Char_ utf16, Span_1_Byte_ bytes, int32_t * consumed, int32_t * written, MethodInfo * method)); +DO_APP_FUNC(0x01AA7720, int32_t, Convert_Decode, (uint16_t * encodedChars, int8_t * decodingMap, MethodInfo * method)); +DO_APP_FUNC(0x01AA7780, void, Convert_WriteThreeLowOrderBytes, (uint8_t * destination, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01AA77A0, TypeCode__Enum, Convert_GetTypeCode, (Object * value, MethodInfo * method)); DO_APP_FUNC(0x01AA7810, Object *, Convert_ChangeType, (Object * value, TypeCode__Enum typeCode, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE498, Convert_ChangeType__MethodInfo); DO_APP_FUNC(0x01AA7D80, Object *, Convert_DefaultToType, (IConvertible * value, Type * targetType, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE428, Convert_DefaultToType__MethodInfo); DO_APP_FUNC(0x01AA8830, Object *, Convert_ChangeType_1, (Object * value, Type * conversionType, MethodInfo * method)); DO_APP_FUNC(0x01AA8910, Object *, Convert_ChangeType_2, (Object * value, Type * conversionType, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE438, Convert_ChangeType_2__MethodInfo); DO_APP_FUNC(0x01AA9250, void, Convert_ThrowCharOverflowException, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE450, Convert_ThrowCharOverflowException__MethodInfo); DO_APP_FUNC(0x01AA92B0, void, Convert_ThrowByteOverflowException, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE458, Convert_ThrowByteOverflowException__MethodInfo); DO_APP_FUNC(0x01AA9310, void, Convert_ThrowSByteOverflowException, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE468, Convert_ThrowSByteOverflowException__MethodInfo); DO_APP_FUNC(0x01AA9370, void, Convert_ThrowInt16OverflowException, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE478, Convert_ThrowInt16OverflowException__MethodInfo); DO_APP_FUNC(0x01AA93D0, void, Convert_ThrowUInt16OverflowException, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE3E0, Convert_ThrowUInt16OverflowException__MethodInfo); DO_APP_FUNC(0x01AA9430, void, Convert_ThrowInt32OverflowException, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE3F0, Convert_ThrowInt32OverflowException__MethodInfo); DO_APP_FUNC(0x01AA9490, void, Convert_ThrowUInt32OverflowException, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE400, Convert_ThrowUInt32OverflowException__MethodInfo); DO_APP_FUNC(0x01AA94F0, void, Convert_ThrowInt64OverflowException, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE410, Convert_ThrowInt64OverflowException__MethodInfo); DO_APP_FUNC(0x01AA9550, void, Convert_ThrowUInt64OverflowException, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE420, Convert_ThrowUInt64OverflowException__MethodInfo); DO_APP_FUNC(0x01AA95B0, bool, Convert_ToBoolean, (Object * value, MethodInfo * method)); DO_APP_FUNC(0x01AA9650, bool, Convert_ToBoolean_1, (Object * value, IFormatProvider * provider, MethodInfo * method)); DO_APP_FUNC(0x01AA9710, bool, Convert_ToBoolean_2, (int8_t value, MethodInfo * method)); @@ -1404,6 +1469,7 @@ DO_APP_FUNC(0x01AA9B80, uint16_t, Convert_ToChar_8, (int64_t value, MethodInfo * DO_APP_FUNC(0x01AA9BD0, uint16_t, Convert_ToChar_9, (uint64_t value, MethodInfo * method)); DO_APP_FUNC(0x01AA9C20, uint16_t, Convert_ToChar_10, (String * value, MethodInfo * method)); DO_APP_FUNC(0x01AA9D20, uint16_t, Convert_ToChar_11, (String * value, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE3D8, Convert_ToChar_11__MethodInfo); DO_APP_FUNC(0x01AA9DE0, int8_t, Convert_ToSByte, (Object * value, MethodInfo * method)); DO_APP_FUNC(0x01AA9E80, int8_t, Convert_ToSByte_1, (Object * value, IFormatProvider * provider, MethodInfo * method)); DO_APP_FUNC(0x01AA9710, int8_t, Convert_ToSByte_2, (bool value, MethodInfo * method)); @@ -1470,6 +1536,7 @@ DO_APP_FUNC(0x01AAB980, int32_t, Convert_ToInt32_1, (Object * value, IFormatProv DO_APP_FUNC(0x01AAADE0, int32_t, Convert_ToInt32_2, (bool value, MethodInfo * method)); DO_APP_FUNC(0x01AA9AD0, int32_t, Convert_ToInt32_3, (uint16_t value, MethodInfo * method)); DO_APP_FUNC(0x00C3C210, int32_t, Convert_ToInt32_4, (uint8_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFE30, Convert_ToInt32_4__MethodInfo); DO_APP_FUNC(0x01AABA40, int32_t, Convert_ToInt32_5, (int16_t value, MethodInfo * method)); DO_APP_FUNC(0x01AA9AD0, int32_t, Convert_ToInt32_6, (uint16_t value, MethodInfo * method)); DO_APP_FUNC(0x01AABA50, int32_t, Convert_ToInt32_7, (uint32_t value, MethodInfo * method)); @@ -1477,6 +1544,7 @@ DO_APP_FUNC(0x01AABAA0, int32_t, Convert_ToInt32_8, (int64_t value, MethodInfo * DO_APP_FUNC(0x01AABB00, int32_t, Convert_ToInt32_9, (uint64_t value, MethodInfo * method)); DO_APP_FUNC(0x01AABB50, int32_t, Convert_ToInt32_10, (float value, MethodInfo * method)); DO_APP_FUNC(0x01AABBB0, int32_t, Convert_ToInt32_11, (double value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE3D0, Convert_ToInt32_11__MethodInfo); DO_APP_FUNC(0x01AABCA0, int32_t, Convert_ToInt32_12, (Decimal value, MethodInfo * method)); DO_APP_FUNC(0x01AABDD0, int32_t, Convert_ToInt32_13, (String * value, MethodInfo * method)); DO_APP_FUNC(0x01AABE80, int32_t, Convert_ToInt32_14, (String * value, IFormatProvider * provider, MethodInfo * method)); @@ -1493,6 +1561,7 @@ DO_APP_FUNC(0x01AAC0E0, uint32_t, Convert_ToUInt32_9, (int64_t value, MethodInfo DO_APP_FUNC(0x01AAC130, uint32_t, Convert_ToUInt32_10, (uint64_t value, MethodInfo * method)); DO_APP_FUNC(0x01AAC180, uint32_t, Convert_ToUInt32_11, (float value, MethodInfo * method)); DO_APP_FUNC(0x01AAC1E0, uint32_t, Convert_ToUInt32_12, (double value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE3C8, Convert_ToUInt32_12__MethodInfo); DO_APP_FUNC(0x01AAC2A0, uint32_t, Convert_ToUInt32_13, (Decimal value, MethodInfo * method)); DO_APP_FUNC(0x01AAC3D0, uint32_t, Convert_ToUInt32_14, (String * value, IFormatProvider * provider, MethodInfo * method)); DO_APP_FUNC(0x01AAC3F0, int64_t, Convert_ToInt64, (Object * value, MethodInfo * method)); @@ -1508,6 +1577,7 @@ DO_APP_FUNC(0x00959BB0, int64_t, Convert_ToInt64_9, (uint32_t value, MethodInfo DO_APP_FUNC(0x01AAC590, int64_t, Convert_ToInt64_10, (uint64_t value, MethodInfo * method)); DO_APP_FUNC(0x01AAC5F0, int64_t, Convert_ToInt64_11, (float value, MethodInfo * method)); DO_APP_FUNC(0x01AAC650, int64_t, Convert_ToInt64_12, (double value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE3C0, Convert_ToInt64_12__MethodInfo); DO_APP_FUNC(0x01AAC6F0, int64_t, Convert_ToInt64_13, (Decimal value, MethodInfo * method)); DO_APP_FUNC(0x01AAC820, int64_t, Convert_ToInt64_14, (String * value, MethodInfo * method)); DO_APP_FUNC(0x01AAC8D0, int64_t, Convert_ToInt64_15, (String * value, IFormatProvider * provider, MethodInfo * method)); @@ -1524,6 +1594,7 @@ DO_APP_FUNC(0x00959BB0, uint64_t, Convert_ToUInt64_9, (uint32_t value, MethodInf DO_APP_FUNC(0x01AACB30, uint64_t, Convert_ToUInt64_10, (int64_t value, MethodInfo * method)); DO_APP_FUNC(0x01AACB80, uint64_t, Convert_ToUInt64_11, (float value, MethodInfo * method)); DO_APP_FUNC(0x01AACBE0, uint64_t, Convert_ToUInt64_12, (double value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE3B8, Convert_ToUInt64_12__MethodInfo); DO_APP_FUNC(0x01AACCA0, uint64_t, Convert_ToUInt64_13, (Decimal value, MethodInfo * method)); DO_APP_FUNC(0x01AACDD0, uint64_t, Convert_ToUInt64_14, (String * value, MethodInfo * method)); DO_APP_FUNC(0x01AACE80, uint64_t, Convert_ToUInt64_15, (String * value, IFormatProvider * provider, MethodInfo * method)); @@ -1575,131 +1646,191 @@ DO_APP_FUNC(0x01AADDD0, String *, Convert_ToString_1, (Object * value, IFormatPr DO_APP_FUNC(0x01AADED0, String *, Convert_ToString_2, (uint16_t value, IFormatProvider * provider, MethodInfo * method)); DO_APP_FUNC(0x01AADF70, String *, Convert_ToString_3, (int32_t value, IFormatProvider * provider, MethodInfo * method)); DO_APP_FUNC(0x01AADF90, uint8_t, Convert_ToByte_16, (String * value, int32_t fromBase, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE3A0, Convert_ToByte_16__MethodInfo); DO_APP_FUNC(0x01AAE0C0, int8_t, Convert_ToSByte_15, (String * value, int32_t fromBase, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE3A8, Convert_ToSByte_15__MethodInfo); DO_APP_FUNC(0x01AAE210, int16_t, Convert_ToInt16_15, (String * value, int32_t fromBase, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE3B0, Convert_ToInt16_15__MethodInfo); DO_APP_FUNC(0x01AAE350, uint16_t, Convert_ToUInt16_15, (String * value, int32_t fromBase, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE348, Convert_ToUInt16_15__MethodInfo); DO_APP_FUNC(0x01AAE480, int32_t, Convert_ToInt32_15, (String * value, int32_t fromBase, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE350, Convert_ToInt32_15__MethodInfo); DO_APP_FUNC(0x01AAE580, uint32_t, Convert_ToUInt32_15, (String * value, int32_t fromBase, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE358, Convert_ToUInt32_15__MethodInfo); DO_APP_FUNC(0x01AAE680, int64_t, Convert_ToInt64_16, (String * value, int32_t fromBase, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE360, Convert_ToInt64_16__MethodInfo); DO_APP_FUNC(0x01AAE780, uint64_t, Convert_ToUInt64_16, (String * value, int32_t fromBase, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE368, Convert_ToUInt64_16__MethodInfo); DO_APP_FUNC(0x01AAE880, String *, Convert_ToString_4, (uint8_t value, int32_t toBase, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE370, Convert_ToString_4__MethodInfo); DO_APP_FUNC(0x01AAE920, String *, Convert_ToString_5, (int16_t value, int32_t toBase, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE378, Convert_ToString_5__MethodInfo); DO_APP_FUNC(0x01AAE9C0, String *, Convert_ToString_6, (int32_t value, int32_t toBase, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE380, Convert_ToString_6__MethodInfo); DO_APP_FUNC(0x01AAEA50, String *, Convert_ToString_7, (int64_t value, int32_t toBase, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE388, Convert_ToString_7__MethodInfo); DO_APP_FUNC(0x01AAEAE0, String *, Convert_ToBase64String, (Byte__Array * inArray, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE328, Convert_ToBase64String__MethodInfo); DO_APP_FUNC(0x01AAEBC0, String *, Convert_ToBase64String_1, (Byte__Array * inArray, Base64FormattingOptions__Enum options, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE330, Convert_ToBase64String_1__MethodInfo); DO_APP_FUNC(0x01AAECB0, String *, Convert_ToBase64String_2, (Byte__Array * inArray, int32_t offset, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x01AAED30, String *, Convert_ToBase64String_3, (Byte__Array * inArray, int32_t offset, int32_t length, Base64FormattingOptions__Enum options, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE338, Convert_ToBase64String_3__MethodInfo); DO_APP_FUNC(0x01AAEFA0, String *, Convert_ToBase64String_4, (ReadOnlySpan_1_Byte_ bytes, Base64FormattingOptions__Enum options, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE340, Convert_ToBase64String_4__MethodInfo); DO_APP_FUNC(0x01AAF160, int32_t, Convert_ToBase64CharArray, (Byte__Array * inArray, int32_t offsetIn, int32_t length, Char__Array * outArray, int32_t offsetOut, MethodInfo * method)); DO_APP_FUNC(0x01AAF1F0, int32_t, Convert_ToBase64CharArray_1, (Byte__Array * inArray, int32_t offsetIn, int32_t length, Char__Array * outArray, int32_t offsetOut, Base64FormattingOptions__Enum options, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE2D8, Convert_ToBase64CharArray_1__MethodInfo); DO_APP_FUNC(0x01AAF680, int32_t, Convert_ConvertToBase64Array, (uint16_t * outChars, uint8_t * inData, int32_t offset, int32_t length, bool insertLineBreaks, MethodInfo * method)); DO_APP_FUNC(0x01AAF9E0, int32_t, Convert_ToBase64_CalculateAndValidateOutputLength, (int32_t inputLength, bool insertLineBreaks, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE300, Convert_ToBase64_CalculateAndValidateOutputLength__MethodInfo); DO_APP_FUNC(0x01AAFAE0, Byte__Array *, Convert_FromBase64String, (String * s, MethodInfo * method)); -DO_APP_FUNC(0x01AAFBA0, bool, Convert_TryFromBase64Chars, (ReadOnlySpan_1_Char_ chars, Span_1_Byte_ bytes, int32_t bytesWritten, MethodInfo * method)); -DO_APP_FUNC(0x01AB0240, void, Convert_CopyToTempBufferWithoutWhiteSpace, (ReadOnlySpan_1_Char_ chars, Span_1_Char_ tempBuffer, int32_t consumed, int32_t charsWritten, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE308, Convert_FromBase64String__MethodInfo); +DO_APP_FUNC(0x01AAFBA0, bool, Convert_TryFromBase64Chars, (ReadOnlySpan_1_Char_ chars, Span_1_Byte_ bytes, int32_t * bytesWritten, MethodInfo * method)); +DO_APP_FUNC(0x01AB0240, void, Convert_CopyToTempBufferWithoutWhiteSpace, (ReadOnlySpan_1_Char_ chars, Span_1_Char_ tempBuffer, int32_t * consumed, int32_t * charsWritten, MethodInfo * method)); DO_APP_FUNC(0x01AB0370, bool, Convert_IsSpace, (uint16_t c, MethodInfo * method)); DO_APP_FUNC(0x01AB03A0, Byte__Array *, Convert_FromBase64CharPtr, (uint16_t * inputPtr, int32_t inputLength, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE2A8, Convert_FromBase64CharPtr__MethodInfo); DO_APP_FUNC(0x01AB0660, int32_t, Convert_FromBase64_ComputeResultLength, (uint16_t * inputPtr, int32_t inputLength, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE2B0, Convert_FromBase64_ComputeResultLength__MethodInfo); DO_APP_FUNC(0x01AB0730, void, Convert__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, DBNull__ctor, (DBNull * __this, MethodInfo * method)); DO_APP_FUNC(0x01B65170, void, DBNull__ctor_1, (DBNull * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02110, DBNull__ctor_1__MethodInfo); DO_APP_FUNC(0x01B651D0, void, DBNull_GetObjectData, (DBNull * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x01B651E0, String *, DBNull_ToString, (DBNull * __this, MethodInfo * method)); DO_APP_FUNC(0x01B65220, String *, DBNull_ToString_1, (DBNull * __this, IFormatProvider * provider, MethodInfo * method)); DO_APP_FUNC(0x0072BFF0, TypeCode__Enum, DBNull_GetTypeCode, (DBNull * __this, MethodInfo * method)); DO_APP_FUNC(0x01B65260, bool, DBNull_System_IConvertible_ToBoolean, (DBNull * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D020C8, DBNull_System_IConvertible_ToBoolean__MethodInfo); DO_APP_FUNC(0x01B652C0, uint16_t, DBNull_System_IConvertible_ToChar, (DBNull * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D020C0, DBNull_System_IConvertible_ToChar__MethodInfo); DO_APP_FUNC(0x01B65320, int8_t, DBNull_System_IConvertible_ToSByte, (DBNull * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D020B8, DBNull_System_IConvertible_ToSByte__MethodInfo); DO_APP_FUNC(0x01B65380, uint8_t, DBNull_System_IConvertible_ToByte, (DBNull * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D020B0, DBNull_System_IConvertible_ToByte__MethodInfo); DO_APP_FUNC(0x01B653E0, int16_t, DBNull_System_IConvertible_ToInt16, (DBNull * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D020A8, DBNull_System_IConvertible_ToInt16__MethodInfo); DO_APP_FUNC(0x01B65440, uint16_t, DBNull_System_IConvertible_ToUInt16, (DBNull * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D020A0, DBNull_System_IConvertible_ToUInt16__MethodInfo); DO_APP_FUNC(0x01B654A0, int32_t, DBNull_System_IConvertible_ToInt32, (DBNull * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02098, DBNull_System_IConvertible_ToInt32__MethodInfo); DO_APP_FUNC(0x01B65500, uint32_t, DBNull_System_IConvertible_ToUInt32, (DBNull * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02090, DBNull_System_IConvertible_ToUInt32__MethodInfo); DO_APP_FUNC(0x01B65560, int64_t, DBNull_System_IConvertible_ToInt64, (DBNull * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02088, DBNull_System_IConvertible_ToInt64__MethodInfo); DO_APP_FUNC(0x01B655C0, uint64_t, DBNull_System_IConvertible_ToUInt64, (DBNull * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02080, DBNull_System_IConvertible_ToUInt64__MethodInfo); DO_APP_FUNC(0x01B65620, float, DBNull_System_IConvertible_ToSingle, (DBNull * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02078, DBNull_System_IConvertible_ToSingle__MethodInfo); DO_APP_FUNC(0x01B65680, double, DBNull_System_IConvertible_ToDouble, (DBNull * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02070, DBNull_System_IConvertible_ToDouble__MethodInfo); DO_APP_FUNC(0x01B656E0, Decimal, DBNull_System_IConvertible_ToDecimal, (DBNull * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02068, DBNull_System_IConvertible_ToDecimal__MethodInfo); DO_APP_FUNC(0x01B65740, DateTime, DBNull_System_IConvertible_ToDateTime, (DBNull * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02060, DBNull_System_IConvertible_ToDateTime__MethodInfo); DO_APP_FUNC(0x01B657A0, Object *, DBNull_System_IConvertible_ToType, (DBNull * __this, Type * type, IFormatProvider * provider, MethodInfo * method)); DO_APP_FUNC(0x01B65810, void, DBNull__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x01B658C0, void, DateTime__ctor, (DateTime__Boxed * __this, int64_t ticks, MethodInfo * method)); -DO_APP_FUNC(0x00A9A2A0, void, DateTime__ctor_1, (DateTime__Boxed * __this, uint64_t dateData, MethodInfo * method)); -DO_APP_FUNC(0x01B65960, void, DateTime__ctor_2, (DateTime__Boxed * __this, int64_t ticks, DateTimeKind__Enum kind, MethodInfo * method)); -DO_APP_FUNC(0x01B65A60, void, DateTime__ctor_3, (DateTime__Boxed * __this, int64_t ticks, DateTimeKind__Enum kind, bool isAmbiguousDst, MethodInfo * method)); -DO_APP_FUNC(0x01B65B00, void, DateTime__ctor_4, (DateTime__Boxed * __this, int32_t year, int32_t month, int32_t day, MethodInfo * method)); -DO_APP_FUNC(0x01B65B80, void, DateTime__ctor_5, (DateTime__Boxed * __this, int32_t year, int32_t month, int32_t day, int32_t hour, int32_t minute, int32_t second, MethodInfo * method)); -DO_APP_FUNC(0x01B65C20, void, DateTime__ctor_6, (DateTime__Boxed * __this, int32_t year, int32_t month, int32_t day, int32_t hour, int32_t minute, int32_t second, DateTimeKind__Enum kind, MethodInfo * method)); -DO_APP_FUNC(0x01B65D40, void, DateTime__ctor_7, (DateTime__Boxed * __this, int32_t year, int32_t month, int32_t day, int32_t hour, int32_t minute, int32_t second, int32_t millisecond, MethodInfo * method)); -DO_APP_FUNC(0x01B65F20, void, DateTime__ctor_8, (DateTime__Boxed * __this, int32_t year, int32_t month, int32_t day, int32_t hour, int32_t minute, int32_t second, int32_t millisecond, Calendar * calendar, MethodInfo * method)); -DO_APP_FUNC(0x01B661C0, void, DateTime__ctor_9, (DateTime__Boxed * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); -DO_APP_FUNC(0x01B66650, int64_t, DateTime_get_InternalTicks, (DateTime__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B66670, uint64_t, DateTime_get_InternalKind, (DateTime__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B66690, DateTime, DateTime_Add, (DateTime__Boxed * __this, TimeSpan value, MethodInfo * method)); -DO_APP_FUNC(0x01B666F0, DateTime, DateTime_Add_1, (DateTime__Boxed * __this, double value, int32_t scale, MethodInfo * method)); -DO_APP_FUNC(0x01B66810, DateTime, DateTime_AddDays, (DateTime__Boxed * __this, double value, MethodInfo * method)); -DO_APP_FUNC(0x01B66880, DateTime, DateTime_AddHours, (DateTime__Boxed * __this, double value, MethodInfo * method)); -DO_APP_FUNC(0x01B668F0, DateTime, DateTime_AddMilliseconds, (DateTime__Boxed * __this, double value, MethodInfo * method)); -DO_APP_FUNC(0x01B66960, DateTime, DateTime_AddMonths, (DateTime__Boxed * __this, int32_t months, MethodInfo * method)); -DO_APP_FUNC(0x01B66BC0, DateTime, DateTime_AddSeconds, (DateTime__Boxed * __this, double value, MethodInfo * method)); -DO_APP_FUNC(0x01B66C30, DateTime, DateTime_AddTicks, (DateTime__Boxed * __this, int64_t value, MethodInfo * method)); -DO_APP_FUNC(0x01B66D50, DateTime, DateTime_AddYears, (DateTime__Boxed * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x01B658C0, void, DateTime__ctor, (DateTime * __this, int64_t ticks, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D020F8, DateTime__ctor__MethodInfo); +DO_APP_FUNC(0x00A9A2A0, void, DateTime__ctor_1, (DateTime * __this, uint64_t dateData, MethodInfo * method)); +DO_APP_FUNC(0x01B65960, void, DateTime__ctor_2, (DateTime * __this, int64_t ticks, DateTimeKind__Enum kind, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D020F0, DateTime__ctor_2__MethodInfo); +DO_APP_FUNC(0x01B65A60, void, DateTime__ctor_3, (DateTime * __this, int64_t ticks, DateTimeKind__Enum kind, bool isAmbiguousDst, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D020D8, DateTime__ctor_3__MethodInfo); +DO_APP_FUNC(0x01B65B00, void, DateTime__ctor_4, (DateTime * __this, int32_t year, int32_t month, int32_t day, MethodInfo * method)); +DO_APP_FUNC(0x01B65B80, void, DateTime__ctor_5, (DateTime * __this, int32_t year, int32_t month, int32_t day, int32_t hour, int32_t minute, int32_t second, MethodInfo * method)); +DO_APP_FUNC(0x01B65C20, void, DateTime__ctor_6, (DateTime * __this, int32_t year, int32_t month, int32_t day, int32_t hour, int32_t minute, int32_t second, DateTimeKind__Enum kind, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02038, DateTime__ctor_6__MethodInfo); +DO_APP_FUNC(0x01B65D40, void, DateTime__ctor_7, (DateTime * __this, int32_t year, int32_t month, int32_t day, int32_t hour, int32_t minute, int32_t second, int32_t millisecond, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02030, DateTime__ctor_7__MethodInfo); +DO_APP_FUNC(0x01B65F20, void, DateTime__ctor_8, (DateTime * __this, int32_t year, int32_t month, int32_t day, int32_t hour, int32_t minute, int32_t second, int32_t millisecond, Calendar * calendar, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02020, DateTime__ctor_8__MethodInfo); +DO_APP_FUNC(0x01B661C0, void, DateTime__ctor_9, (DateTime * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02010, DateTime__ctor_9__MethodInfo); +DO_APP_FUNC(0x01B66650, int64_t, DateTime_get_InternalTicks, (DateTime * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B66670, uint64_t, DateTime_get_InternalKind, (DateTime * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B66690, DateTime, DateTime_Add, (DateTime * __this, TimeSpan value, MethodInfo * method)); +DO_APP_FUNC(0x01B666F0, DateTime, DateTime_Add_1, (DateTime * __this, double value, int32_t scale, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02058, DateTime_Add_1__MethodInfo); +DO_APP_FUNC(0x01B66810, DateTime, DateTime_AddDays, (DateTime * __this, double value, MethodInfo * method)); +DO_APP_FUNC(0x01B66880, DateTime, DateTime_AddHours, (DateTime * __this, double value, MethodInfo * method)); +DO_APP_FUNC(0x01B668F0, DateTime, DateTime_AddMilliseconds, (DateTime * __this, double value, MethodInfo * method)); +DO_APP_FUNC(0x01B66960, DateTime, DateTime_AddMonths, (DateTime * __this, int32_t months, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02048, DateTime_AddMonths__MethodInfo); +DO_APP_FUNC(0x01B66BC0, DateTime, DateTime_AddSeconds, (DateTime * __this, double value, MethodInfo * method)); +DO_APP_FUNC(0x01B66C30, DateTime, DateTime_AddTicks, (DateTime * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01FD8, DateTime_AddTicks__MethodInfo); +DO_APP_FUNC(0x01B66D50, DateTime, DateTime_AddYears, (DateTime * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01FC8, DateTime_AddYears__MethodInfo); DO_APP_FUNC(0x01B66E20, int32_t, DateTime_Compare, (DateTime t1, DateTime t2, MethodInfo * method)); -DO_APP_FUNC(0x01B66EA0, int32_t, DateTime_CompareTo, (DateTime__Boxed * __this, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x01B66FA0, int32_t, DateTime_CompareTo_1, (DateTime__Boxed * __this, DateTime value, MethodInfo * method)); +DO_APP_FUNC(0x01B66EA0, int32_t, DateTime_CompareTo, (DateTime * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01FB8, DateTime_CompareTo__MethodInfo); +DO_APP_FUNC(0x01B66FA0, int32_t, DateTime_CompareTo_1, (DateTime * __this, DateTime value, MethodInfo * method)); DO_APP_FUNC(0x01B67010, int64_t, DateTime_DateToTicks, (int32_t year, int32_t month, int32_t day, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01FF8, DateTime_DateToTicks__MethodInfo); DO_APP_FUNC(0x01B671F0, int64_t, DateTime_TimeToTicks, (int32_t hour, int32_t minute, int32_t second, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01FF0, DateTime_TimeToTicks__MethodInfo); DO_APP_FUNC(0x01B672C0, int32_t, DateTime_DaysInMonth, (int32_t year, int32_t month, MethodInfo * method)); -DO_APP_FUNC(0x01B67410, bool, DateTime_Equals, (DateTime__Boxed * __this, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x01B674C0, bool, DateTime_Equals_1, (DateTime__Boxed * __this, DateTime value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01FE8, DateTime_DaysInMonth__MethodInfo); +DO_APP_FUNC(0x01B67410, bool, DateTime_Equals, (DateTime * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x01B674C0, bool, DateTime_Equals_1, (DateTime * __this, DateTime value, MethodInfo * method)); DO_APP_FUNC(0x01B67530, DateTime, DateTime_FromBinary, (int64_t dateData, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01FB0, DateTime_FromBinary__MethodInfo); DO_APP_FUNC(0x01B677A0, DateTime, DateTime_FromBinaryRaw, (int64_t dateData, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01FA8, DateTime_FromBinaryRaw__MethodInfo); DO_APP_FUNC(0x01B67850, DateTime, DateTime_FromFileTime, (int64_t fileTime, MethodInfo * method)); DO_APP_FUNC(0x01B678F0, DateTime, DateTime_FromFileTimeUtc, (int64_t fileTime, MethodInfo * method)); -DO_APP_FUNC(0x01B679B0, void, DateTime_System_Runtime_Serialization_ISerializable_GetObjectData, (DateTime__Boxed * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); -DO_APP_FUNC(0x01B67AB0, bool, DateTime_IsDaylightSavingTime, (DateTime__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01F90, DateTime_FromFileTimeUtc__MethodInfo); +DO_APP_FUNC(0x01B679B0, void, DateTime_System_Runtime_Serialization_ISerializable_GetObjectData, (DateTime * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01F88, DateTime_System_Runtime_Serialization_ISerializable_GetObjectData__MethodInfo); +DO_APP_FUNC(0x01B67AB0, bool, DateTime_IsDaylightSavingTime, (DateTime * __this, MethodInfo * method)); DO_APP_FUNC(0x01B67BC0, DateTime, DateTime_SpecifyKind, (DateTime value, DateTimeKind__Enum kind, MethodInfo * method)); -DO_APP_FUNC(0x01B67C40, DateTime, DateTime_get_Date, (DateTime__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B67CC0, int32_t, DateTime_GetDatePart, (DateTime__Boxed * __this, int32_t part, MethodInfo * method)); -DO_APP_FUNC(0x01B67EB0, void, DateTime_GetDatePart_1, (DateTime__Boxed * __this, int32_t year, int32_t month, int32_t day, MethodInfo * method)); -DO_APP_FUNC(0x01B68090, int32_t, DateTime_get_Day, (DateTime__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B680F0, DayOfWeek__Enum, DateTime_get_DayOfWeek, (DateTime__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B68180, int32_t, DateTime_get_DayOfYear, (DateTime__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B681E0, int32_t, DateTime_GetHashCode, (DateTime__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B68240, int32_t, DateTime_get_Hour, (DateTime__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B682D0, bool, DateTime_IsAmbiguousDaylightSavingTime, (DateTime__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B68330, DateTimeKind__Enum, DateTime_get_Kind, (DateTime__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B683B0, int32_t, DateTime_get_Millisecond, (DateTime__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B68450, int32_t, DateTime_get_Minute, (DateTime__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B684F0, int32_t, DateTime_get_Month, (DateTime__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B67C40, DateTime, DateTime_get_Date, (DateTime * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B67CC0, int32_t, DateTime_GetDatePart, (DateTime * __this, int32_t part, MethodInfo * method)); +DO_APP_FUNC(0x01B67EB0, void, DateTime_GetDatePart_1, (DateTime * __this, int32_t * year, int32_t * month, int32_t * day, MethodInfo * method)); +DO_APP_FUNC(0x01B68090, int32_t, DateTime_get_Day, (DateTime * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B680F0, DayOfWeek__Enum, DateTime_get_DayOfWeek, (DateTime * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B68180, int32_t, DateTime_get_DayOfYear, (DateTime * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B681E0, int32_t, DateTime_GetHashCode, (DateTime * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B68240, int32_t, DateTime_get_Hour, (DateTime * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B682D0, bool, DateTime_IsAmbiguousDaylightSavingTime, (DateTime * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B68330, DateTimeKind__Enum, DateTime_get_Kind, (DateTime * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B683B0, int32_t, DateTime_get_Millisecond, (DateTime * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B68450, int32_t, DateTime_get_Minute, (DateTime * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B684F0, int32_t, DateTime_get_Month, (DateTime * __this, MethodInfo * method)); DO_APP_FUNC(0x01B68550, DateTime, DateTime_get_Now, (MethodInfo * method)); -DO_APP_FUNC(0x01B68720, int32_t, DateTime_get_Second, (DateTime__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B687C0, int64_t, DateTime_get_Ticks, (DateTime__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B68820, TimeSpan, DateTime_get_TimeOfDay, (DateTime__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B68890, int32_t, DateTime_get_Year, (DateTime__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B68720, int32_t, DateTime_get_Second, (DateTime * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B687C0, int64_t, DateTime_get_Ticks, (DateTime * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B68820, TimeSpan, DateTime_get_TimeOfDay, (DateTime * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B68890, int32_t, DateTime_get_Year, (DateTime * __this, MethodInfo * method)); DO_APP_FUNC(0x01B688F0, bool, DateTime_IsLeapYear, (int32_t year, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01F80, DateTime_IsLeapYear__MethodInfo); DO_APP_FUNC(0x01B689E0, DateTime, DateTime_Parse, (String * s, IFormatProvider * provider, MethodInfo * method)); DO_APP_FUNC(0x01B68BE0, DateTime, DateTime_ParseExact, (String * s, String * format, IFormatProvider * provider, MethodInfo * method)); DO_APP_FUNC(0x01B68D40, DateTime, DateTime_ParseExact_1, (String * s, String * format, IFormatProvider * provider, DateTimeStyles__Enum style, MethodInfo * method)); DO_APP_FUNC(0x01B68EF0, DateTime, DateTime_ParseExact_2, (String * s, String__Array * formats, IFormatProvider * provider, DateTimeStyles__Enum style, MethodInfo * method)); -DO_APP_FUNC(0x01B69140, TimeSpan, DateTime_Subtract, (DateTime__Boxed * __this, DateTime value, MethodInfo * method)); -DO_APP_FUNC(0x01B691B0, int64_t, DateTime_ToFileTime, (DateTime__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B69210, int64_t, DateTime_ToFileTimeUtc, (DateTime__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B69300, DateTime, DateTime_ToLocalTime, (DateTime__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B69360, DateTime, DateTime_ToLocalTime_1, (DateTime__Boxed * __this, bool throwOnOverflow, MethodInfo * method)); -DO_APP_FUNC(0x01B695F0, String *, DateTime_ToString, (DateTime__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B69650, String *, DateTime_ToString_1, (DateTime__Boxed * __this, String * format, MethodInfo * method)); -DO_APP_FUNC(0x01B696C0, String *, DateTime_ToString_2, (DateTime__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B69730, String *, DateTime_ToString_3, (DateTime__Boxed * __this, String * format, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B697B0, bool, DateTime_TryFormat, (DateTime__Boxed * __this, Span_1_Char_ destination, int32_t charsWritten, ReadOnlySpan_1_Char_ format, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B698B0, DateTime, DateTime_ToUniversalTime, (DateTime__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B69A20, bool, DateTime_TryParse, (String * s, DateTime result, MethodInfo * method)); -DO_APP_FUNC(0x01B69B20, bool, DateTime_TryParse_1, (String * s, IFormatProvider * provider, DateTimeStyles__Enum styles, DateTime result, MethodInfo * method)); -DO_APP_FUNC(0x01B69C70, bool, DateTime_TryParseExact, (String * s, String * format, IFormatProvider * provider, DateTimeStyles__Enum style, DateTime result, MethodInfo * method)); -DO_APP_FUNC(0x01B69F80, bool, DateTime_TryParseExact_1, (String * s, String__Array * formats, IFormatProvider * provider, DateTimeStyles__Enum style, DateTime result, MethodInfo * method)); +DO_APP_FUNC(0x01B69140, TimeSpan, DateTime_Subtract, (DateTime * __this, DateTime value, MethodInfo * method)); +DO_APP_FUNC(0x01B691B0, int64_t, DateTime_ToFileTime, (DateTime * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B69210, int64_t, DateTime_ToFileTimeUtc, (DateTime * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01F68, DateTime_ToFileTimeUtc__MethodInfo); +DO_APP_FUNC(0x01B69300, DateTime, DateTime_ToLocalTime, (DateTime * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B69360, DateTime, DateTime_ToLocalTime_1, (DateTime * __this, bool throwOnOverflow, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01F60, DateTime_ToLocalTime_1__MethodInfo); +DO_APP_FUNC(0x01B695F0, String *, DateTime_ToString, (DateTime * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B69650, String *, DateTime_ToString_1, (DateTime * __this, String * format, MethodInfo * method)); +DO_APP_FUNC(0x01B696C0, String *, DateTime_ToString_2, (DateTime * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B69730, String *, DateTime_ToString_3, (DateTime * __this, String * format, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B697B0, bool, DateTime_TryFormat, (DateTime * __this, Span_1_Char_ destination, int32_t * charsWritten, ReadOnlySpan_1_Char_ format, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B698B0, DateTime, DateTime_ToUniversalTime, (DateTime * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B69A20, bool, DateTime_TryParse, (String * s, DateTime * result, MethodInfo * method)); +DO_APP_FUNC(0x01B69B20, bool, DateTime_TryParse_1, (String * s, IFormatProvider * provider, DateTimeStyles__Enum styles, DateTime * result, MethodInfo * method)); +DO_APP_FUNC(0x01B69C70, bool, DateTime_TryParseExact, (String * s, String * format, IFormatProvider * provider, DateTimeStyles__Enum style, DateTime * result, MethodInfo * method)); +DO_APP_FUNC(0x01B69F80, bool, DateTime_TryParseExact_1, (String * s, String__Array * formats, IFormatProvider * provider, DateTimeStyles__Enum style, DateTime * result, MethodInfo * method)); DO_APP_FUNC(0x01B6A1E0, DateTime, DateTime_op_Addition, (DateTime d, TimeSpan t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01F70, DateTime_op_Addition__MethodInfo); DO_APP_FUNC(0x01B6A300, DateTime, DateTime_op_Subtraction, (DateTime d, TimeSpan t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01EF0, DateTime_op_Subtraction__MethodInfo); DO_APP_FUNC(0x01B6A410, TimeSpan, DateTime_op_Subtraction_1, (DateTime d1, DateTime d2, MethodInfo * method)); DO_APP_FUNC(0x01B6A480, bool, DateTime_op_Equality, (DateTime d1, DateTime d2, MethodInfo * method)); DO_APP_FUNC(0x01B6A4F0, bool, DateTime_op_Inequality, (DateTime d1, DateTime d2, MethodInfo * method)); @@ -1707,65 +1838,86 @@ DO_APP_FUNC(0x01B6A560, bool, DateTime_op_LessThan, (DateTime t1, DateTime t2, M DO_APP_FUNC(0x01B6A5D0, bool, DateTime_op_LessThanOrEqual, (DateTime t1, DateTime t2, MethodInfo * method)); DO_APP_FUNC(0x01B6A640, bool, DateTime_op_GreaterThan, (DateTime t1, DateTime t2, MethodInfo * method)); DO_APP_FUNC(0x01B6A6B0, bool, DateTime_op_GreaterThanOrEqual, (DateTime t1, DateTime t2, MethodInfo * method)); -DO_APP_FUNC(0x003D2F30, TypeCode__Enum, DateTime_GetTypeCode, (DateTime__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B6A720, bool, DateTime_System_IConvertible_ToBoolean, (DateTime__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B6A7B0, uint16_t, DateTime_System_IConvertible_ToChar, (DateTime__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B6A840, int8_t, DateTime_System_IConvertible_ToSByte, (DateTime__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B6A8D0, uint8_t, DateTime_System_IConvertible_ToByte, (DateTime__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B6A960, int16_t, DateTime_System_IConvertible_ToInt16, (DateTime__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B6A9F0, uint16_t, DateTime_System_IConvertible_ToUInt16, (DateTime__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B6AA80, int32_t, DateTime_System_IConvertible_ToInt32, (DateTime__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B6AB10, uint32_t, DateTime_System_IConvertible_ToUInt32, (DateTime__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B6ABA0, int64_t, DateTime_System_IConvertible_ToInt64, (DateTime__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B6AC30, uint64_t, DateTime_System_IConvertible_ToUInt64, (DateTime__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B6ACC0, float, DateTime_System_IConvertible_ToSingle, (DateTime__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B6AD50, double, DateTime_System_IConvertible_ToDouble, (DateTime__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B6ADE0, Decimal, DateTime_System_IConvertible_ToDecimal, (DateTime__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x00471910, DateTime, DateTime_System_IConvertible_ToDateTime, (DateTime__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B6AE70, Object *, DateTime_System_IConvertible_ToType, (DateTime__Boxed * __this, Type * type, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B6AF10, bool, DateTime_TryCreate, (int32_t year, int32_t month, int32_t day, int32_t hour, int32_t minute, int32_t second, int32_t millisecond, DateTime result, MethodInfo * method)); +DO_APP_FUNC(0x003D2F30, TypeCode__Enum, DateTime_GetTypeCode, (DateTime * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B6A720, bool, DateTime_System_IConvertible_ToBoolean, (DateTime * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01F58, DateTime_System_IConvertible_ToBoolean__MethodInfo); +DO_APP_FUNC(0x01B6A7B0, uint16_t, DateTime_System_IConvertible_ToChar, (DateTime * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01F50, DateTime_System_IConvertible_ToChar__MethodInfo); +DO_APP_FUNC(0x01B6A840, int8_t, DateTime_System_IConvertible_ToSByte, (DateTime * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01F48, DateTime_System_IConvertible_ToSByte__MethodInfo); +DO_APP_FUNC(0x01B6A8D0, uint8_t, DateTime_System_IConvertible_ToByte, (DateTime * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01F40, DateTime_System_IConvertible_ToByte__MethodInfo); +DO_APP_FUNC(0x01B6A960, int16_t, DateTime_System_IConvertible_ToInt16, (DateTime * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01F38, DateTime_System_IConvertible_ToInt16__MethodInfo); +DO_APP_FUNC(0x01B6A9F0, uint16_t, DateTime_System_IConvertible_ToUInt16, (DateTime * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01F30, DateTime_System_IConvertible_ToUInt16__MethodInfo); +DO_APP_FUNC(0x01B6AA80, int32_t, DateTime_System_IConvertible_ToInt32, (DateTime * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01F28, DateTime_System_IConvertible_ToInt32__MethodInfo); +DO_APP_FUNC(0x01B6AB10, uint32_t, DateTime_System_IConvertible_ToUInt32, (DateTime * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01F20, DateTime_System_IConvertible_ToUInt32__MethodInfo); +DO_APP_FUNC(0x01B6ABA0, int64_t, DateTime_System_IConvertible_ToInt64, (DateTime * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01F18, DateTime_System_IConvertible_ToInt64__MethodInfo); +DO_APP_FUNC(0x01B6AC30, uint64_t, DateTime_System_IConvertible_ToUInt64, (DateTime * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01F10, DateTime_System_IConvertible_ToUInt64__MethodInfo); +DO_APP_FUNC(0x01B6ACC0, float, DateTime_System_IConvertible_ToSingle, (DateTime * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01F08, DateTime_System_IConvertible_ToSingle__MethodInfo); +DO_APP_FUNC(0x01B6AD50, double, DateTime_System_IConvertible_ToDouble, (DateTime * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01F00, DateTime_System_IConvertible_ToDouble__MethodInfo); +DO_APP_FUNC(0x01B6ADE0, Decimal, DateTime_System_IConvertible_ToDecimal, (DateTime * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01EF8, DateTime_System_IConvertible_ToDecimal__MethodInfo); +DO_APP_FUNC(0x00471910, DateTime, DateTime_System_IConvertible_ToDateTime, (DateTime * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B6AE70, Object *, DateTime_System_IConvertible_ToType, (DateTime * __this, Type * type, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B6AF10, bool, DateTime_TryCreate, (int32_t year, int32_t month, int32_t day, int32_t hour, int32_t minute, int32_t second, int32_t millisecond, DateTime * result, MethodInfo * method)); DO_APP_FUNC(0x01B6B120, DateTime, DateTime_get_UtcNow, (MethodInfo * method)); DO_APP_FUNC(0x01B6B190, int64_t, DateTime_GetSystemTimeAsFileTime, (MethodInfo * method)); -DO_APP_FUNC(0x00471910, int64_t, DateTime_ToBinaryRaw, (DateTime__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, int64_t, DateTime_ToBinaryRaw, (DateTime * __this, MethodInfo * method)); DO_APP_FUNC(0x01B6B1B0, void, DateTime__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x01B6B3A0, void, DateTimeOffset__ctor, (DateTimeOffset__Boxed * __this, int64_t ticks, TimeSpan offset, MethodInfo * method)); -DO_APP_FUNC(0x01B6B4C0, void, DateTimeOffset__ctor_1, (DateTimeOffset__Boxed * __this, DateTime dateTime, MethodInfo * method)); -DO_APP_FUNC(0x01B6B620, void, DateTimeOffset__ctor_2, (DateTimeOffset__Boxed * __this, DateTime dateTime, TimeSpan offset, MethodInfo * method)); -DO_APP_FUNC(0x01B6B8F0, void, DateTimeOffset__ctor_3, (DateTimeOffset__Boxed * __this, int32_t year, int32_t month, int32_t day, int32_t hour, int32_t minute, int32_t second, TimeSpan offset, MethodInfo * method)); -DO_APP_FUNC(0x01B6B9E0, void, DateTimeOffset__ctor_4, (DateTimeOffset__Boxed * __this, int32_t year, int32_t month, int32_t day, int32_t hour, int32_t minute, int32_t second, int32_t millisecond, TimeSpan offset, MethodInfo * method)); -DO_APP_FUNC(0x01B6BAD0, void, DateTimeOffset__ctor_5, (DateTimeOffset__Boxed * __this, int32_t year, int32_t month, int32_t day, int32_t hour, int32_t minute, int32_t second, int32_t millisecond, Calendar * calendar, TimeSpan offset, MethodInfo * method)); -DO_APP_FUNC(0x01B6BBC0, DateTime, DateTimeOffset_get_DateTime, (DateTimeOffset__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B6BC10, DateTime, DateTimeOffset_get_UtcDateTime, (DateTimeOffset__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B6BC70, DateTime, DateTimeOffset_get_LocalDateTime, (DateTimeOffset__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B6BD70, DateTime, DateTimeOffset_get_ClockDateTime, (DateTimeOffset__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B6BEB0, int32_t, DateTimeOffset_get_Day, (DateTimeOffset__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B6BF80, int32_t, DateTimeOffset_get_Hour, (DateTimeOffset__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B6C080, int32_t, DateTimeOffset_get_Millisecond, (DateTimeOffset__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B6C180, int32_t, DateTimeOffset_get_Minute, (DateTimeOffset__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B6C280, int32_t, DateTimeOffset_get_Month, (DateTimeOffset__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B6C350, TimeSpan, DateTimeOffset_get_Offset, (DateTimeOffset__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B6C3B0, int32_t, DateTimeOffset_get_Second, (DateTimeOffset__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B6C4B0, int64_t, DateTimeOffset_get_Ticks, (DateTimeOffset__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B6C570, TimeSpan, DateTimeOffset_get_TimeOfDay, (DateTimeOffset__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B6C640, int32_t, DateTimeOffset_get_Year, (DateTimeOffset__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B6C700, int32_t, DateTimeOffset_System_IComparable_CompareTo, (DateTimeOffset__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x01B6C8B0, int32_t, DateTimeOffset_CompareTo, (DateTimeOffset__Boxed * __this, DateTimeOffset other, MethodInfo * method)); -DO_APP_FUNC(0x01B6CA20, bool, DateTimeOffset_Equals, (DateTimeOffset__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x01B6CBE0, bool, DateTimeOffset_Equals_1, (DateTimeOffset__Boxed * __this, DateTimeOffset other, MethodInfo * method)); +DO_APP_FUNC(0x01B6B3A0, void, DateTimeOffset__ctor, (DateTimeOffset * __this, int64_t ticks, TimeSpan offset, MethodInfo * method)); +DO_APP_FUNC(0x01B6B4C0, void, DateTimeOffset__ctor_1, (DateTimeOffset * __this, DateTime dateTime, MethodInfo * method)); +DO_APP_FUNC(0x01B6B620, void, DateTimeOffset__ctor_2, (DateTimeOffset * __this, DateTime dateTime, TimeSpan offset, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01EE0, DateTimeOffset__ctor_2__MethodInfo); +DO_APP_FUNC(0x01B6B8F0, void, DateTimeOffset__ctor_3, (DateTimeOffset * __this, int32_t year, int32_t month, int32_t day, int32_t hour, int32_t minute, int32_t second, TimeSpan offset, MethodInfo * method)); +DO_APP_FUNC(0x01B6B9E0, void, DateTimeOffset__ctor_4, (DateTimeOffset * __this, int32_t year, int32_t month, int32_t day, int32_t hour, int32_t minute, int32_t second, int32_t millisecond, TimeSpan offset, MethodInfo * method)); +DO_APP_FUNC(0x01B6BAD0, void, DateTimeOffset__ctor_5, (DateTimeOffset * __this, int32_t year, int32_t month, int32_t day, int32_t hour, int32_t minute, int32_t second, int32_t millisecond, Calendar * calendar, TimeSpan offset, MethodInfo * method)); +DO_APP_FUNC(0x01B6BBC0, DateTime, DateTimeOffset_get_DateTime, (DateTimeOffset * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B6BC10, DateTime, DateTimeOffset_get_UtcDateTime, (DateTimeOffset * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B6BC70, DateTime, DateTimeOffset_get_LocalDateTime, (DateTimeOffset * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B6BD70, DateTime, DateTimeOffset_get_ClockDateTime, (DateTimeOffset * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B6BEB0, int32_t, DateTimeOffset_get_Day, (DateTimeOffset * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B6BF80, int32_t, DateTimeOffset_get_Hour, (DateTimeOffset * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B6C080, int32_t, DateTimeOffset_get_Millisecond, (DateTimeOffset * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B6C180, int32_t, DateTimeOffset_get_Minute, (DateTimeOffset * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B6C280, int32_t, DateTimeOffset_get_Month, (DateTimeOffset * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B6C350, TimeSpan, DateTimeOffset_get_Offset, (DateTimeOffset * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B6C3B0, int32_t, DateTimeOffset_get_Second, (DateTimeOffset * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B6C4B0, int64_t, DateTimeOffset_get_Ticks, (DateTimeOffset * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B6C570, TimeSpan, DateTimeOffset_get_TimeOfDay, (DateTimeOffset * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B6C640, int32_t, DateTimeOffset_get_Year, (DateTimeOffset * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B6C700, int32_t, DateTimeOffset_System_IComparable_CompareTo, (DateTimeOffset * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01EC8, DateTimeOffset_System_IComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x01B6C8B0, int32_t, DateTimeOffset_CompareTo, (DateTimeOffset * __this, DateTimeOffset other, MethodInfo * method)); +DO_APP_FUNC(0x01B6CA20, bool, DateTimeOffset_Equals, (DateTimeOffset * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x01B6CBE0, bool, DateTimeOffset_Equals_1, (DateTimeOffset * __this, DateTimeOffset other, MethodInfo * method)); DO_APP_FUNC(0x01B6CD40, DateTimeOffset, DateTimeOffset_FromFileTime, (int64_t fileTime, MethodInfo * method)); -DO_APP_FUNC(0x01B6CDC0, void, DateTimeOffset_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization, (DateTimeOffset__Boxed * __this, Object * sender, MethodInfo * method)); -DO_APP_FUNC(0x01B6CF30, void, DateTimeOffset_System_Runtime_Serialization_ISerializable_GetObjectData, (DateTimeOffset__Boxed * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); -DO_APP_FUNC(0x01B6D160, void, DateTimeOffset__ctor_6, (DateTimeOffset__Boxed * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); -DO_APP_FUNC(0x01B6D330, int32_t, DateTimeOffset_GetHashCode, (DateTimeOffset__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B6CDC0, void, DateTimeOffset_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization, (DateTimeOffset * __this, Object * sender, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01EC0, DateTimeOffset_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization__MethodInfo); +DO_APP_FUNC(0x01B6CF30, void, DateTimeOffset_System_Runtime_Serialization_ISerializable_GetObjectData, (DateTimeOffset * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01E78, DateTimeOffset_System_Runtime_Serialization_ISerializable_GetObjectData__MethodInfo); +DO_APP_FUNC(0x01B6D160, void, DateTimeOffset__ctor_6, (DateTimeOffset * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01E70, DateTimeOffset__ctor_6__MethodInfo); +DO_APP_FUNC(0x01B6D330, int32_t, DateTimeOffset_GetHashCode, (DateTimeOffset * __this, MethodInfo * method)); DO_APP_FUNC(0x01B6D440, DateTimeOffset, DateTimeOffset_Parse, (String * input, IFormatProvider * formatProvider, MethodInfo * method)); DO_APP_FUNC(0x01B6D4E0, DateTimeOffset, DateTimeOffset_Parse_1, (String * input, IFormatProvider * formatProvider, DateTimeStyles__Enum styles, MethodInfo * method)); -DO_APP_FUNC(0x01B6D8C0, String *, DateTimeOffset_ToString, (DateTimeOffset__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B6D9B0, String *, DateTimeOffset_ToString_1, (DateTimeOffset__Boxed * __this, IFormatProvider * formatProvider, MethodInfo * method)); -DO_APP_FUNC(0x01B6DAB0, String *, DateTimeOffset_ToString_2, (DateTimeOffset__Boxed * __this, String * format, IFormatProvider * formatProvider, MethodInfo * method)); -DO_APP_FUNC(0x01B6DBC0, bool, DateTimeOffset_TryFormat, (DateTimeOffset__Boxed * __this, Span_1_Char_ destination, int32_t charsWritten, ReadOnlySpan_1_Char_ format, IFormatProvider * formatProvider, MethodInfo * method)); +DO_APP_FUNC(0x01B6D8C0, String *, DateTimeOffset_ToString, (DateTimeOffset * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B6D9B0, String *, DateTimeOffset_ToString_1, (DateTimeOffset * __this, IFormatProvider * formatProvider, MethodInfo * method)); +DO_APP_FUNC(0x01B6DAB0, String *, DateTimeOffset_ToString_2, (DateTimeOffset * __this, String * format, IFormatProvider * formatProvider, MethodInfo * method)); +DO_APP_FUNC(0x01B6DBC0, bool, DateTimeOffset_TryFormat, (DateTimeOffset * __this, Span_1_Char_ destination, int32_t * charsWritten, ReadOnlySpan_1_Char_ format, IFormatProvider * formatProvider, MethodInfo * method)); DO_APP_FUNC(0x01B6DD00, int16_t, DateTimeOffset_ValidateOffset, (TimeSpan offset, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01EB0, DateTimeOffset_ValidateOffset__MethodInfo); DO_APP_FUNC(0x01B6DE90, DateTime, DateTimeOffset_ValidateDate, (DateTime dateTime, TimeSpan offset, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01E98, DateTimeOffset_ValidateDate__MethodInfo); DO_APP_FUNC(0x01B6DFE0, DateTimeStyles__Enum, DateTimeOffset_ValidateStyles, (DateTimeStyles__Enum style, String * parameterName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01E90, DateTimeOffset_ValidateStyles__MethodInfo); DO_APP_FUNC(0x01B6E120, DateTimeOffset, DateTimeOffset_op_Implicit, (DateTime dateTime, MethodInfo * method)); DO_APP_FUNC(0x01B6E140, bool, DateTimeOffset_op_Equality, (DateTimeOffset left, DateTimeOffset right, MethodInfo * method)); DO_APP_FUNC(0x01B6E2A0, void, DateTimeOffset__cctor, (MethodInfo * method)); @@ -1780,38 +1932,41 @@ DO_APP_FUNC(0x01B6E580, bool, Double_IsNaN, (double d, MethodInfo * method)); DO_APP_FUNC(0x01B6E5F0, bool, Double_IsNegative, (double d, MethodInfo * method)); DO_APP_FUNC(0x01B6E650, bool, Double_IsNegativeInfinity, (double d, MethodInfo * method)); DO_APP_FUNC(0x01B6E670, bool, Double_IsPositiveInfinity, (double d, MethodInfo * method)); -DO_APP_FUNC(0x01B6E690, int32_t, Double_CompareTo, (Double__Boxed * __this, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x01B6E7C0, int32_t, Double_CompareTo_1, (Double__Boxed * __this, double value, MethodInfo * method)); -DO_APP_FUNC(0x01B6E830, bool, Double_Equals, (Double__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x01B6E8E0, bool, Double_Equals_1, (Double__Boxed * __this, double obj, MethodInfo * method)); -DO_APP_FUNC(0x01B6E920, int32_t, Double_GetHashCode, (Double__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B6E9B0, String *, Double_ToString, (Double__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B6EA20, String *, Double_ToString_1, (Double__Boxed * __this, String * format, MethodInfo * method)); -DO_APP_FUNC(0x01B6EAA0, String *, Double_ToString_2, (Double__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B6EB20, String *, Double_ToString_3, (Double__Boxed * __this, String * format, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B6EBB0, bool, Double_TryFormat, (Double__Boxed * __this, Span_1_Char_ destination, int32_t charsWritten, ReadOnlySpan_1_Char_ format, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B6E690, int32_t, Double_CompareTo, (Double * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01E60, Double_CompareTo__MethodInfo); +DO_APP_FUNC(0x01B6E7C0, int32_t, Double_CompareTo_1, (Double * __this, double value, MethodInfo * method)); +DO_APP_FUNC(0x01B6E830, bool, Double_Equals, (Double * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x01B6E8E0, bool, Double_Equals_1, (Double * __this, double obj, MethodInfo * method)); +DO_APP_FUNC(0x01B6E920, int32_t, Double_GetHashCode, (Double * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B6E9B0, String *, Double_ToString, (Double * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B6EA20, String *, Double_ToString_1, (Double * __this, String * format, MethodInfo * method)); +DO_APP_FUNC(0x01B6EAA0, String *, Double_ToString_2, (Double * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B6EB20, String *, Double_ToString_3, (Double * __this, String * format, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B6EBB0, bool, Double_TryFormat, (Double * __this, Span_1_Char_ destination, int32_t * charsWritten, ReadOnlySpan_1_Char_ format, IFormatProvider * provider, MethodInfo * method)); DO_APP_FUNC(0x01B6EC80, double, Double_Parse, (String * s, MethodInfo * method)); DO_APP_FUNC(0x01B6ED40, double, Double_Parse_1, (String * s, IFormatProvider * provider, MethodInfo * method)); DO_APP_FUNC(0x01B6EE10, double, Double_Parse_2, (String * s, NumberStyles__Enum style, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B6EEF0, bool, Double_TryParse, (String * s, double result, MethodInfo * method)); -DO_APP_FUNC(0x01B6EF90, bool, Double_TryParse_1, (String * s, NumberStyles__Enum style, IFormatProvider * provider, double result, MethodInfo * method)); -DO_APP_FUNC(0x01B6F050, bool, Double_TryParse_2, (ReadOnlySpan_1_Char_ s, NumberStyles__Enum style, NumberFormatInfo * info, double result, MethodInfo * method)); -DO_APP_FUNC(0x01AE9AB0, TypeCode__Enum, Double_GetTypeCode, (Double__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B6F4B0, bool, Double_System_IConvertible_ToBoolean, (Double__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B6F520, uint16_t, Double_System_IConvertible_ToChar, (Double__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B6F5B0, int8_t, Double_System_IConvertible_ToSByte, (Double__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B6F610, uint8_t, Double_System_IConvertible_ToByte, (Double__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B6F670, int16_t, Double_System_IConvertible_ToInt16, (Double__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B6F6D0, uint16_t, Double_System_IConvertible_ToUInt16, (Double__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B6F730, int32_t, Double_System_IConvertible_ToInt32, (Double__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B6F790, uint32_t, Double_System_IConvertible_ToUInt32, (Double__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B6F7F0, int64_t, Double_System_IConvertible_ToInt64, (Double__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B6F850, uint64_t, Double_System_IConvertible_ToUInt64, (Double__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B6F8B0, float, Double_System_IConvertible_ToSingle, (Double__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1D0, double, Double_System_IConvertible_ToDouble, (Double__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B6F910, Decimal, Double_System_IConvertible_ToDecimal, (Double__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B6FA30, DateTime, Double_System_IConvertible_ToDateTime, (Double__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B6FAC0, Object *, Double_System_IConvertible_ToType, (Double__Boxed * __this, Type * type, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B6EEF0, bool, Double_TryParse, (String * s, double * result, MethodInfo * method)); +DO_APP_FUNC(0x01B6EF90, bool, Double_TryParse_1, (String * s, NumberStyles__Enum style, IFormatProvider * provider, double * result, MethodInfo * method)); +DO_APP_FUNC(0x01B6F050, bool, Double_TryParse_2, (ReadOnlySpan_1_Char_ s, NumberStyles__Enum style, NumberFormatInfo * info, double * result, MethodInfo * method)); +DO_APP_FUNC(0x01AE9AB0, TypeCode__Enum, Double_GetTypeCode, (Double * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B6F4B0, bool, Double_System_IConvertible_ToBoolean, (Double * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B6F520, uint16_t, Double_System_IConvertible_ToChar, (Double * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01E48, Double_System_IConvertible_ToChar__MethodInfo); +DO_APP_FUNC(0x01B6F5B0, int8_t, Double_System_IConvertible_ToSByte, (Double * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B6F610, uint8_t, Double_System_IConvertible_ToByte, (Double * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B6F670, int16_t, Double_System_IConvertible_ToInt16, (Double * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B6F6D0, uint16_t, Double_System_IConvertible_ToUInt16, (Double * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B6F730, int32_t, Double_System_IConvertible_ToInt32, (Double * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B6F790, uint32_t, Double_System_IConvertible_ToUInt32, (Double * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B6F7F0, int64_t, Double_System_IConvertible_ToInt64, (Double * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B6F850, uint64_t, Double_System_IConvertible_ToUInt64, (Double * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B6F8B0, float, Double_System_IConvertible_ToSingle, (Double * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1D0, double, Double_System_IConvertible_ToDouble, (Double * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B6F910, Decimal, Double_System_IConvertible_ToDecimal, (Double * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B6FA30, DateTime, Double_System_IConvertible_ToDateTime, (Double * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01E40, Double_System_IConvertible_ToDateTime__MethodInfo); +DO_APP_FUNC(0x01B6FAC0, Object *, Double_System_IConvertible_ToType, (Double * __this, Type * type, IFormatProvider * provider, MethodInfo * method)); DO_APP_FUNC(0x01B6FB60, void, EntryPointNotFoundException__ctor, (EntryPointNotFoundException * __this, MethodInfo * method)); DO_APP_FUNC(0x01B6FBB0, void, EntryPointNotFoundException__ctor_1, (EntryPointNotFoundException * __this, String * message, MethodInfo * method)); DO_APP_FUNC(0x01B6E480, void, EntryPointNotFoundException__ctor_2, (EntryPointNotFoundException * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); @@ -1845,295 +2000,327 @@ DO_APP_FUNC(0x01B70380, String *, DateTimeFormat_FormatDayOfWeek, (int32_t dayOf DO_APP_FUNC(0x01B703C0, String *, DateTimeFormat_FormatMonth, (int32_t month, int32_t repeatCount, DateTimeFormatInfo * dtfi, MethodInfo * method)); DO_APP_FUNC(0x01B70400, String *, DateTimeFormat_FormatHebrewMonthName, (DateTime time, int32_t month, int32_t repeatCount, DateTimeFormatInfo * dtfi, MethodInfo * method)); DO_APP_FUNC(0x01B704D0, int32_t, DateTimeFormat_ParseQuoteString, (ReadOnlySpan_1_Char_ format, int32_t pos, StringBuilder * result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01E20, DateTimeFormat_ParseQuoteString__MethodInfo); DO_APP_FUNC(0x01B706D0, int32_t, DateTimeFormat_ParseNextChar, (ReadOnlySpan_1_Char_ format, int32_t pos, MethodInfo * method)); DO_APP_FUNC(0x01B70740, bool, DateTimeFormat_IsUseGenitiveForm, (ReadOnlySpan_1_Char_ format, int32_t index, int32_t tokenLen, uint16_t patternToMatch, MethodInfo * method)); DO_APP_FUNC(0x01B70880, StringBuilder *, DateTimeFormat_FormatCustomized, (DateTime dateTime, ReadOnlySpan_1_Char_ format, DateTimeFormatInfo * dtfi, TimeSpan offset, StringBuilder * result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01E10, DateTimeFormat_FormatCustomized__MethodInfo); DO_APP_FUNC(0x01B71DF0, void, DateTimeFormat_FormatCustomizedTimeZone, (DateTime dateTime, TimeSpan offset, ReadOnlySpan_1_Char_ format, int32_t tokenLen, bool timeOnly, StringBuilder * result, MethodInfo * method)); DO_APP_FUNC(0x01B72390, void, DateTimeFormat_FormatCustomizedRoundripTimeZone, (DateTime dateTime, TimeSpan offset, StringBuilder * result, MethodInfo * method)); DO_APP_FUNC(0x01B726C0, void, DateTimeFormat_Append2DigitNumber, (StringBuilder * result, int32_t val, MethodInfo * method)); DO_APP_FUNC(0x01B727C0, String *, DateTimeFormat_GetRealFormat, (ReadOnlySpan_1_Char_ format, DateTimeFormatInfo * dtfi, MethodInfo * method)); -DO_APP_FUNC(0x01B72CB0, String *, DateTimeFormat_ExpandPredefinedFormat, (ReadOnlySpan_1_Char_ format, DateTime dateTime, DateTimeFormatInfo * dtfi, TimeSpan offset, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01DC0, DateTimeFormat_GetRealFormat__MethodInfo); +DO_APP_FUNC(0x01B72CB0, String *, DateTimeFormat_ExpandPredefinedFormat, (ReadOnlySpan_1_Char_ format, DateTime * dateTime, DateTimeFormatInfo * * dtfi, TimeSpan * offset, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01DB0, DateTimeFormat_ExpandPredefinedFormat__MethodInfo); DO_APP_FUNC(0x01B73120, String *, DateTimeFormat_Format, (DateTime dateTime, String * format, IFormatProvider * provider, MethodInfo * method)); DO_APP_FUNC(0x01B731B0, String *, DateTimeFormat_Format_1, (DateTime dateTime, String * format, IFormatProvider * provider, TimeSpan offset, MethodInfo * method)); -DO_APP_FUNC(0x01B734F0, bool, DateTimeFormat_TryFormat, (DateTime dateTime, Span_1_Char_ destination, int32_t charsWritten, ReadOnlySpan_1_Char_ format, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B735C0, bool, DateTimeFormat_TryFormat_1, (DateTime dateTime, Span_1_Char_ destination, int32_t charsWritten, ReadOnlySpan_1_Char_ format, IFormatProvider * provider, TimeSpan offset, MethodInfo * method)); +DO_APP_FUNC(0x01B734F0, bool, DateTimeFormat_TryFormat, (DateTime dateTime, Span_1_Char_ destination, int32_t * charsWritten, ReadOnlySpan_1_Char_ format, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B735C0, bool, DateTimeFormat_TryFormat_1, (DateTime dateTime, Span_1_Char_ destination, int32_t * charsWritten, ReadOnlySpan_1_Char_ format, IFormatProvider * provider, TimeSpan offset, MethodInfo * method)); DO_APP_FUNC(0x01B73800, StringBuilder *, DateTimeFormat_FormatStringBuilder, (DateTime dateTime, ReadOnlySpan_1_Char_ format, DateTimeFormatInfo * dtfi, TimeSpan offset, MethodInfo * method)); -DO_APP_FUNC(0x01B73BE0, bool, DateTimeFormat_TryFormatO, (DateTime dateTime, TimeSpan offset, Span_1_Char_ destination, int32_t charsWritten, MethodInfo * method)); -DO_APP_FUNC(0x01B74450, bool, DateTimeFormat_TryFormatR, (DateTime dateTime, TimeSpan offset, Span_1_Char_ destination, int32_t charsWritten, MethodInfo * method)); +DO_APP_FUNC(0x01B73BE0, bool, DateTimeFormat_TryFormatO, (DateTime dateTime, TimeSpan offset, Span_1_Char_ destination, int32_t * charsWritten, MethodInfo * method)); +DO_APP_FUNC(0x01B74450, bool, DateTimeFormat_TryFormatR, (DateTime dateTime, TimeSpan offset, Span_1_Char_ destination, int32_t * charsWritten, MethodInfo * method)); DO_APP_FUNC(0x01B74960, void, DateTimeFormat_WriteTwoDecimalDigits, (uint32_t value, Span_1_Char_ destination, int32_t offset, MethodInfo * method)); DO_APP_FUNC(0x01B749C0, void, DateTimeFormat_WriteFourDecimalDigits, (uint32_t value, Span_1_Char_ buffer, int32_t startingIndex, MethodInfo * method)); DO_APP_FUNC(0x01B74A90, void, DateTimeFormat_WriteDigits, (uint64_t value, Span_1_Char_ buffer, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, DateTimeFormat_InvalidFormatForLocal, (ReadOnlySpan_1_Char_ format, DateTime dateTime, MethodInfo * method)); DO_APP_FUNC(0x01B74B60, void, DateTimeFormat__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01B751D0, DateTime, DateTimeParse_ParseExact, (ReadOnlySpan_1_Char_ s, ReadOnlySpan_1_Char_ format, DateTimeFormatInfo * dtfi, DateTimeStyles__Enum style, MethodInfo * method)); -DO_APP_FUNC(0x01B753C0, bool, DateTimeParse_TryParseExact, (ReadOnlySpan_1_Char_ s, ReadOnlySpan_1_Char_ format, DateTimeFormatInfo * dtfi, DateTimeStyles__Enum style, DateTime result, MethodInfo * method)); -DO_APP_FUNC(0x01B755A0, bool, DateTimeParse_TryParseExact_1, (ReadOnlySpan_1_Char_ s, ReadOnlySpan_1_Char_ format, DateTimeFormatInfo * dtfi, DateTimeStyles__Enum style, DateTimeResult result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01D80, DateTimeParse_ParseExact__MethodInfo); +DO_APP_FUNC(0x01B753C0, bool, DateTimeParse_TryParseExact, (ReadOnlySpan_1_Char_ s, ReadOnlySpan_1_Char_ format, DateTimeFormatInfo * dtfi, DateTimeStyles__Enum style, DateTime * result, MethodInfo * method)); +DO_APP_FUNC(0x01B755A0, bool, DateTimeParse_TryParseExact_1, (ReadOnlySpan_1_Char_ s, ReadOnlySpan_1_Char_ format, DateTimeFormatInfo * dtfi, DateTimeStyles__Enum style, DateTimeResult * result, MethodInfo * method)); DO_APP_FUNC(0x01B756B0, DateTime, DateTimeParse_ParseExactMultiple, (ReadOnlySpan_1_Char_ s, String__Array * formats, DateTimeFormatInfo * dtfi, DateTimeStyles__Enum style, MethodInfo * method)); -DO_APP_FUNC(0x01B75810, bool, DateTimeParse_TryParseExactMultiple, (ReadOnlySpan_1_Char_ s, String__Array * formats, DateTimeFormatInfo * dtfi, DateTimeStyles__Enum style, DateTime result, MethodInfo * method)); -DO_APP_FUNC(0x01B75990, bool, DateTimeParse_TryParseExactMultiple_1, (ReadOnlySpan_1_Char_ s, String__Array * formats, DateTimeFormatInfo * dtfi, DateTimeStyles__Enum style, DateTimeResult result, MethodInfo * method)); -DO_APP_FUNC(0x01B75CC0, bool, DateTimeParse_MatchWord, (_DTString str, String * target, MethodInfo * method)); -DO_APP_FUNC(0x01B75EC0, bool, DateTimeParse_GetTimeZoneName, (_DTString str, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01DA8, DateTimeParse_ParseExactMultiple__MethodInfo); +DO_APP_FUNC(0x01B75810, bool, DateTimeParse_TryParseExactMultiple, (ReadOnlySpan_1_Char_ s, String__Array * formats, DateTimeFormatInfo * dtfi, DateTimeStyles__Enum style, DateTime * result, MethodInfo * method)); +DO_APP_FUNC(0x01B75990, bool, DateTimeParse_TryParseExactMultiple_1, (ReadOnlySpan_1_Char_ s, String__Array * formats, DateTimeFormatInfo * dtfi, DateTimeStyles__Enum style, DateTimeResult * result, MethodInfo * method)); +DO_APP_FUNC(0x01B75CC0, bool, DateTimeParse_MatchWord, (_DTString * str, String * target, MethodInfo * method)); +DO_APP_FUNC(0x01B75EC0, bool, DateTimeParse_GetTimeZoneName, (_DTString * str, MethodInfo * method)); DO_APP_FUNC(0x01B75F70, bool, DateTimeParse_IsDigit, (uint16_t ch, MethodInfo * method)); -DO_APP_FUNC(0x01B75F80, bool, DateTimeParse_ParseFraction, (_DTString str, double result, MethodInfo * method)); -DO_APP_FUNC(0x01B76080, bool, DateTimeParse_ParseTimeZone, (_DTString str, TimeSpan result, MethodInfo * method)); -DO_APP_FUNC(0x01B764A0, bool, DateTimeParse_HandleTimeZone, (_DTString str, DateTimeResult result, MethodInfo * method)); -DO_APP_FUNC(0x01B766A0, bool, DateTimeParse_Lex, (DateTimeParse_DS__Enum dps, _DTString str, DateTimeToken dtok, DateTimeRawInfo raw, DateTimeResult result, DateTimeFormatInfo * dtfi, DateTimeStyles__Enum styles, MethodInfo * method)); +DO_APP_FUNC(0x01B75F80, bool, DateTimeParse_ParseFraction, (_DTString * str, double * result, MethodInfo * method)); +DO_APP_FUNC(0x01B76080, bool, DateTimeParse_ParseTimeZone, (_DTString * str, TimeSpan * result, MethodInfo * method)); +DO_APP_FUNC(0x01B764A0, bool, DateTimeParse_HandleTimeZone, (_DTString * str, DateTimeResult * result, MethodInfo * method)); +DO_APP_FUNC(0x01B766A0, bool, DateTimeParse_Lex, (DateTimeParse_DS__Enum dps, _DTString * str, DateTimeToken * dtok, DateTimeRawInfo * raw, DateTimeResult * result, DateTimeFormatInfo * * dtfi, DateTimeStyles__Enum styles, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01D58, DateTimeParse_Lex__MethodInfo); DO_APP_FUNC(0x01B777D0, Calendar *, DateTimeParse_GetJapaneseCalendarDefaultInstance, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01D70, DateTimeParse_GetJapaneseCalendarDefaultInstance__MethodInfo); DO_APP_FUNC(0x01B778D0, Calendar *, DateTimeParse_GetTaiwanCalendarDefaultInstance, (MethodInfo * method)); -DO_APP_FUNC(0x01B779D0, bool, DateTimeParse_VerifyValidPunctuation, (_DTString str, MethodInfo * method)); -DO_APP_FUNC(0x01B77C30, bool, DateTimeParse_GetYearMonthDayOrder, (String * datePattern, DateTimeFormatInfo * dtfi, int32_t order, MethodInfo * method)); -DO_APP_FUNC(0x01B77E50, bool, DateTimeParse_GetYearMonthOrder, (String * pattern, DateTimeFormatInfo * dtfi, int32_t order, MethodInfo * method)); -DO_APP_FUNC(0x01B77FF0, bool, DateTimeParse_GetMonthDayOrder, (String * pattern, DateTimeFormatInfo * dtfi, int32_t order, MethodInfo * method)); -DO_APP_FUNC(0x01B781B0, bool, DateTimeParse_TryAdjustYear, (DateTimeResult result, int32_t year, int32_t adjustedYear, MethodInfo * method)); -DO_APP_FUNC(0x01B78210, bool, DateTimeParse_SetDateYMD, (DateTimeResult result, int32_t year, int32_t month, int32_t day, MethodInfo * method)); -DO_APP_FUNC(0x01B78290, bool, DateTimeParse_SetDateMDY, (DateTimeResult result, int32_t month, int32_t day, int32_t year, MethodInfo * method)); -DO_APP_FUNC(0x01B78320, bool, DateTimeParse_SetDateDMY, (DateTimeResult result, int32_t day, int32_t month, int32_t year, MethodInfo * method)); -DO_APP_FUNC(0x01B783B0, bool, DateTimeParse_SetDateYDM, (DateTimeResult result, int32_t year, int32_t day, int32_t month, MethodInfo * method)); -DO_APP_FUNC(0x01B78440, void, DateTimeParse_GetDefaultYear, (DateTimeResult result, DateTimeStyles__Enum styles, MethodInfo * method)); -DO_APP_FUNC(0x01B784E0, bool, DateTimeParse_GetDayOfNN, (DateTimeResult result, DateTimeStyles__Enum styles, DateTimeRawInfo raw, DateTimeFormatInfo * dtfi, MethodInfo * method)); -DO_APP_FUNC(0x01B786A0, bool, DateTimeParse_GetDayOfNNN, (DateTimeResult result, DateTimeRawInfo raw, DateTimeFormatInfo * dtfi, MethodInfo * method)); -DO_APP_FUNC(0x01B78AF0, bool, DateTimeParse_GetDayOfMN, (DateTimeResult result, DateTimeStyles__Enum styles, DateTimeRawInfo raw, DateTimeFormatInfo * dtfi, MethodInfo * method)); -DO_APP_FUNC(0x01B78D30, bool, DateTimeParse_GetHebrewDayOfNM, (DateTimeResult result, DateTimeRawInfo raw, DateTimeFormatInfo * dtfi, MethodInfo * method)); -DO_APP_FUNC(0x01B78EC0, bool, DateTimeParse_GetDayOfNM, (DateTimeResult result, DateTimeStyles__Enum styles, DateTimeRawInfo raw, DateTimeFormatInfo * dtfi, MethodInfo * method)); -DO_APP_FUNC(0x01B79100, bool, DateTimeParse_GetDayOfMNN, (DateTimeResult result, DateTimeRawInfo raw, DateTimeFormatInfo * dtfi, MethodInfo * method)); -DO_APP_FUNC(0x01B794C0, bool, DateTimeParse_GetDayOfYNN, (DateTimeResult result, DateTimeRawInfo raw, DateTimeFormatInfo * dtfi, MethodInfo * method)); -DO_APP_FUNC(0x01B79620, bool, DateTimeParse_GetDayOfNNY, (DateTimeResult result, DateTimeRawInfo raw, DateTimeFormatInfo * dtfi, MethodInfo * method)); -DO_APP_FUNC(0x01B797D0, bool, DateTimeParse_GetDayOfYMN, (DateTimeResult result, DateTimeRawInfo raw, MethodInfo * method)); -DO_APP_FUNC(0x01B798C0, bool, DateTimeParse_GetDayOfYN, (DateTimeResult result, DateTimeRawInfo raw, MethodInfo * method)); -DO_APP_FUNC(0x01B799A0, bool, DateTimeParse_GetDayOfYM, (DateTimeResult result, DateTimeRawInfo raw, MethodInfo * method)); -DO_APP_FUNC(0x01B79A80, void, DateTimeParse_AdjustTimeMark, (DateTimeFormatInfo * dtfi, DateTimeRawInfo raw, MethodInfo * method)); -DO_APP_FUNC(0x01B79B40, bool, DateTimeParse_AdjustHour, (int32_t hour, DateTimeParse_TM__Enum timeMark, MethodInfo * method)); -DO_APP_FUNC(0x01B79B80, bool, DateTimeParse_GetTimeOfN, (DateTimeResult result, DateTimeRawInfo raw, MethodInfo * method)); -DO_APP_FUNC(0x01B79BF0, bool, DateTimeParse_GetTimeOfNN, (DateTimeResult result, DateTimeRawInfo raw, MethodInfo * method)); -DO_APP_FUNC(0x01B79C70, bool, DateTimeParse_GetTimeOfNNN, (DateTimeResult result, DateTimeRawInfo raw, MethodInfo * method)); -DO_APP_FUNC(0x01B79CF0, bool, DateTimeParse_GetDateOfDSN, (DateTimeResult result, DateTimeRawInfo raw, MethodInfo * method)); -DO_APP_FUNC(0x01B79D60, bool, DateTimeParse_GetDateOfNDS, (DateTimeResult result, DateTimeRawInfo raw, MethodInfo * method)); -DO_APP_FUNC(0x01B79E40, bool, DateTimeParse_GetDateOfNNDS, (DateTimeResult result, DateTimeRawInfo raw, DateTimeFormatInfo * dtfi, MethodInfo * method)); -DO_APP_FUNC(0x01B7A0A0, bool, DateTimeParse_ProcessDateTimeSuffix, (DateTimeResult result, DateTimeRawInfo raw, DateTimeToken dtok, MethodInfo * method)); -DO_APP_FUNC(0x01B7A160, bool, DateTimeParse_ProcessHebrewTerminalState, (DateTimeParse_DS__Enum dps, _DTString str, DateTimeResult result, DateTimeStyles__Enum styles, DateTimeRawInfo raw, DateTimeFormatInfo * dtfi, MethodInfo * method)); -DO_APP_FUNC(0x01B7A6E0, bool, DateTimeParse_ProcessTerminalState, (DateTimeParse_DS__Enum dps, _DTString str, DateTimeResult result, DateTimeStyles__Enum styles, DateTimeRawInfo raw, DateTimeFormatInfo * dtfi, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01D68, DateTimeParse_GetTaiwanCalendarDefaultInstance__MethodInfo); +DO_APP_FUNC(0x01B779D0, bool, DateTimeParse_VerifyValidPunctuation, (_DTString * str, MethodInfo * method)); +DO_APP_FUNC(0x01B77C30, bool, DateTimeParse_GetYearMonthDayOrder, (String * datePattern, DateTimeFormatInfo * dtfi, int32_t * order, MethodInfo * method)); +DO_APP_FUNC(0x01B77E50, bool, DateTimeParse_GetYearMonthOrder, (String * pattern, DateTimeFormatInfo * dtfi, int32_t * order, MethodInfo * method)); +DO_APP_FUNC(0x01B77FF0, bool, DateTimeParse_GetMonthDayOrder, (String * pattern, DateTimeFormatInfo * dtfi, int32_t * order, MethodInfo * method)); +DO_APP_FUNC(0x01B781B0, bool, DateTimeParse_TryAdjustYear, (DateTimeResult * result, int32_t year, int32_t * adjustedYear, MethodInfo * method)); +DO_APP_FUNC(0x01B78210, bool, DateTimeParse_SetDateYMD, (DateTimeResult * result, int32_t year, int32_t month, int32_t day, MethodInfo * method)); +DO_APP_FUNC(0x01B78290, bool, DateTimeParse_SetDateMDY, (DateTimeResult * result, int32_t month, int32_t day, int32_t year, MethodInfo * method)); +DO_APP_FUNC(0x01B78320, bool, DateTimeParse_SetDateDMY, (DateTimeResult * result, int32_t day, int32_t month, int32_t year, MethodInfo * method)); +DO_APP_FUNC(0x01B783B0, bool, DateTimeParse_SetDateYDM, (DateTimeResult * result, int32_t year, int32_t day, int32_t month, MethodInfo * method)); +DO_APP_FUNC(0x01B78440, void, DateTimeParse_GetDefaultYear, (DateTimeResult * result, DateTimeStyles__Enum * styles, MethodInfo * method)); +DO_APP_FUNC(0x01B784E0, bool, DateTimeParse_GetDayOfNN, (DateTimeResult * result, DateTimeStyles__Enum * styles, DateTimeRawInfo * raw, DateTimeFormatInfo * dtfi, MethodInfo * method)); +DO_APP_FUNC(0x01B786A0, bool, DateTimeParse_GetDayOfNNN, (DateTimeResult * result, DateTimeRawInfo * raw, DateTimeFormatInfo * dtfi, MethodInfo * method)); +DO_APP_FUNC(0x01B78AF0, bool, DateTimeParse_GetDayOfMN, (DateTimeResult * result, DateTimeStyles__Enum * styles, DateTimeRawInfo * raw, DateTimeFormatInfo * dtfi, MethodInfo * method)); +DO_APP_FUNC(0x01B78D30, bool, DateTimeParse_GetHebrewDayOfNM, (DateTimeResult * result, DateTimeRawInfo * raw, DateTimeFormatInfo * dtfi, MethodInfo * method)); +DO_APP_FUNC(0x01B78EC0, bool, DateTimeParse_GetDayOfNM, (DateTimeResult * result, DateTimeStyles__Enum * styles, DateTimeRawInfo * raw, DateTimeFormatInfo * dtfi, MethodInfo * method)); +DO_APP_FUNC(0x01B79100, bool, DateTimeParse_GetDayOfMNN, (DateTimeResult * result, DateTimeRawInfo * raw, DateTimeFormatInfo * dtfi, MethodInfo * method)); +DO_APP_FUNC(0x01B794C0, bool, DateTimeParse_GetDayOfYNN, (DateTimeResult * result, DateTimeRawInfo * raw, DateTimeFormatInfo * dtfi, MethodInfo * method)); +DO_APP_FUNC(0x01B79620, bool, DateTimeParse_GetDayOfNNY, (DateTimeResult * result, DateTimeRawInfo * raw, DateTimeFormatInfo * dtfi, MethodInfo * method)); +DO_APP_FUNC(0x01B797D0, bool, DateTimeParse_GetDayOfYMN, (DateTimeResult * result, DateTimeRawInfo * raw, MethodInfo * method)); +DO_APP_FUNC(0x01B798C0, bool, DateTimeParse_GetDayOfYN, (DateTimeResult * result, DateTimeRawInfo * raw, MethodInfo * method)); +DO_APP_FUNC(0x01B799A0, bool, DateTimeParse_GetDayOfYM, (DateTimeResult * result, DateTimeRawInfo * raw, MethodInfo * method)); +DO_APP_FUNC(0x01B79A80, void, DateTimeParse_AdjustTimeMark, (DateTimeFormatInfo * dtfi, DateTimeRawInfo * raw, MethodInfo * method)); +DO_APP_FUNC(0x01B79B40, bool, DateTimeParse_AdjustHour, (int32_t * hour, DateTimeParse_TM__Enum timeMark, MethodInfo * method)); +DO_APP_FUNC(0x01B79B80, bool, DateTimeParse_GetTimeOfN, (DateTimeResult * result, DateTimeRawInfo * raw, MethodInfo * method)); +DO_APP_FUNC(0x01B79BF0, bool, DateTimeParse_GetTimeOfNN, (DateTimeResult * result, DateTimeRawInfo * raw, MethodInfo * method)); +DO_APP_FUNC(0x01B79C70, bool, DateTimeParse_GetTimeOfNNN, (DateTimeResult * result, DateTimeRawInfo * raw, MethodInfo * method)); +DO_APP_FUNC(0x01B79CF0, bool, DateTimeParse_GetDateOfDSN, (DateTimeResult * result, DateTimeRawInfo * raw, MethodInfo * method)); +DO_APP_FUNC(0x01B79D60, bool, DateTimeParse_GetDateOfNDS, (DateTimeResult * result, DateTimeRawInfo * raw, MethodInfo * method)); +DO_APP_FUNC(0x01B79E40, bool, DateTimeParse_GetDateOfNNDS, (DateTimeResult * result, DateTimeRawInfo * raw, DateTimeFormatInfo * dtfi, MethodInfo * method)); +DO_APP_FUNC(0x01B7A0A0, bool, DateTimeParse_ProcessDateTimeSuffix, (DateTimeResult * result, DateTimeRawInfo * raw, DateTimeToken * dtok, MethodInfo * method)); +DO_APP_FUNC(0x01B7A160, bool, DateTimeParse_ProcessHebrewTerminalState, (DateTimeParse_DS__Enum dps, _DTString * str, DateTimeResult * result, DateTimeStyles__Enum * styles, DateTimeRawInfo * raw, DateTimeFormatInfo * dtfi, MethodInfo * method)); +DO_APP_FUNC(0x01B7A6E0, bool, DateTimeParse_ProcessTerminalState, (DateTimeParse_DS__Enum dps, _DTString * str, DateTimeResult * result, DateTimeStyles__Enum * styles, DateTimeRawInfo * raw, DateTimeFormatInfo * dtfi, MethodInfo * method)); DO_APP_FUNC(0x01B7AC70, DateTime, DateTimeParse_Parse, (ReadOnlySpan_1_Char_ s, DateTimeFormatInfo * dtfi, DateTimeStyles__Enum styles, MethodInfo * method)); -DO_APP_FUNC(0x01B7ADC0, DateTime, DateTimeParse_Parse_1, (ReadOnlySpan_1_Char_ s, DateTimeFormatInfo * dtfi, DateTimeStyles__Enum styles, TimeSpan offset, MethodInfo * method)); -DO_APP_FUNC(0x01B7AF30, bool, DateTimeParse_TryParse, (ReadOnlySpan_1_Char_ s, DateTimeFormatInfo * dtfi, DateTimeStyles__Enum styles, DateTime result, MethodInfo * method)); -DO_APP_FUNC(0x01B7B090, bool, DateTimeParse_TryParse_1, (ReadOnlySpan_1_Char_ s, DateTimeFormatInfo * dtfi, DateTimeStyles__Enum styles, DateTimeResult result, MethodInfo * method)); -DO_APP_FUNC(0x01B7BB00, bool, DateTimeParse_DetermineTimeZoneAdjustments, (_DTString str, DateTimeResult result, DateTimeStyles__Enum styles, bool bTimeOnly, MethodInfo * method)); -DO_APP_FUNC(0x01B7BD80, bool, DateTimeParse_DateTimeOffsetTimeZonePostProcessing, (_DTString str, DateTimeResult result, DateTimeStyles__Enum styles, MethodInfo * method)); -DO_APP_FUNC(0x01B7C030, bool, DateTimeParse_AdjustTimeZoneToUniversal, (DateTimeResult result, MethodInfo * method)); -DO_APP_FUNC(0x01B7C170, bool, DateTimeParse_AdjustTimeZoneToLocal, (DateTimeResult result, bool bTimeOnly, MethodInfo * method)); -DO_APP_FUNC(0x01B7C470, bool, DateTimeParse_ParseISO8601, (DateTimeRawInfo raw, _DTString str, DateTimeStyles__Enum styles, DateTimeResult result, MethodInfo * method)); -DO_APP_FUNC(0x01B7CB70, bool, DateTimeParse_MatchHebrewDigits, (_DTString str, int32_t digitLen, int32_t number, MethodInfo * method)); -DO_APP_FUNC(0x01B7CC80, bool, DateTimeParse_ParseDigits, (_DTString str, int32_t digitLen, int32_t result, MethodInfo * method)); -DO_APP_FUNC(0x01B7CD20, bool, DateTimeParse_ParseDigits_1, (_DTString str, int32_t minDigitLen, int32_t maxDigitLen, int32_t result, MethodInfo * method)); -DO_APP_FUNC(0x01B7CE20, bool, DateTimeParse_ParseFractionExact, (_DTString str, int32_t maxDigitLen, double result, MethodInfo * method)); -DO_APP_FUNC(0x01B7CFB0, bool, DateTimeParse_ParseSign, (_DTString str, bool result, MethodInfo * method)); -DO_APP_FUNC(0x01B7D070, bool, DateTimeParse_ParseTimeZoneOffset, (_DTString str, int32_t len, TimeSpan result, MethodInfo * method)); -DO_APP_FUNC(0x01B7D370, bool, DateTimeParse_MatchAbbreviatedMonthName, (_DTString str, DateTimeFormatInfo * dtfi, int32_t result, MethodInfo * method)); -DO_APP_FUNC(0x01B7D630, bool, DateTimeParse_MatchMonthName, (_DTString str, DateTimeFormatInfo * dtfi, int32_t result, MethodInfo * method)); -DO_APP_FUNC(0x01B7DA50, bool, DateTimeParse_MatchAbbreviatedDayName, (_DTString str, DateTimeFormatInfo * dtfi, int32_t result, MethodInfo * method)); -DO_APP_FUNC(0x01B7DBC0, bool, DateTimeParse_MatchDayName, (_DTString str, DateTimeFormatInfo * dtfi, int32_t result, MethodInfo * method)); -DO_APP_FUNC(0x01B7DD30, bool, DateTimeParse_MatchEraName, (_DTString str, DateTimeFormatInfo * dtfi, int32_t result, MethodInfo * method)); -DO_APP_FUNC(0x01B7DEB0, bool, DateTimeParse_MatchTimeMark, (_DTString str, DateTimeFormatInfo * dtfi, DateTimeParse_TM__Enum result, MethodInfo * method)); -DO_APP_FUNC(0x01B7E030, bool, DateTimeParse_MatchAbbreviatedTimeMark, (_DTString str, DateTimeFormatInfo * dtfi, DateTimeParse_TM__Enum result, MethodInfo * method)); -DO_APP_FUNC(0x01B7E190, bool, DateTimeParse_CheckNewValue, (int32_t currentValue, int32_t newValue, uint16_t patternChar, DateTimeResult result, MethodInfo * method)); -DO_APP_FUNC(0x01B7E240, DateTime, DateTimeParse_GetDateTimeNow, (DateTimeResult result, DateTimeStyles__Enum styles, MethodInfo * method)); -DO_APP_FUNC(0x01B7E3A0, bool, DateTimeParse_CheckDefaultDateTime, (DateTimeResult result, Calendar * cal, DateTimeStyles__Enum styles, MethodInfo * method)); -DO_APP_FUNC(0x01B7E5E0, String *, DateTimeParse_ExpandPredefinedFormat, (ReadOnlySpan_1_Char_ format, DateTimeFormatInfo * dtfi, ParsingInfo parseInfo, DateTimeResult result, MethodInfo * method)); -DO_APP_FUNC(0x01B7EAA0, bool, DateTimeParse_ParseJapaneseEraStart, (_DTString str, DateTimeFormatInfo * dtfi, MethodInfo * method)); -DO_APP_FUNC(0x01B7EBA0, bool, DateTimeParse_ParseByFormat, (_DTString str, _DTString format, ParsingInfo parseInfo, DateTimeFormatInfo * dtfi, DateTimeResult result, MethodInfo * method)); -DO_APP_FUNC(0x01B80740, bool, DateTimeParse_TryParseQuoteString, (ReadOnlySpan_1_Char_ format, int32_t pos, StringBuilder * result, int32_t returnValue, MethodInfo * method)); -DO_APP_FUNC(0x01B80860, bool, DateTimeParse_DoStrictParse, (ReadOnlySpan_1_Char_ s, ReadOnlySpan_1_Char_ formatParam, DateTimeStyles__Enum styles, DateTimeFormatInfo * dtfi, DateTimeResult result, MethodInfo * method)); -DO_APP_FUNC(0x01B813D0, Exception *, DateTimeParse_GetDateTimeParseException, (DateTimeResult result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01D28, DateTimeParse_Parse__MethodInfo); +DO_APP_FUNC(0x01B7ADC0, DateTime, DateTimeParse_Parse_1, (ReadOnlySpan_1_Char_ s, DateTimeFormatInfo * dtfi, DateTimeStyles__Enum styles, TimeSpan * offset, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01D20, DateTimeParse_Parse_1__MethodInfo); +DO_APP_FUNC(0x01B7AF30, bool, DateTimeParse_TryParse, (ReadOnlySpan_1_Char_ s, DateTimeFormatInfo * dtfi, DateTimeStyles__Enum styles, DateTime * result, MethodInfo * method)); +DO_APP_FUNC(0x01B7B090, bool, DateTimeParse_TryParse_1, (ReadOnlySpan_1_Char_ s, DateTimeFormatInfo * dtfi, DateTimeStyles__Enum styles, DateTimeResult * result, MethodInfo * method)); +DO_APP_FUNC(0x01B7BB00, bool, DateTimeParse_DetermineTimeZoneAdjustments, (_DTString * str, DateTimeResult * result, DateTimeStyles__Enum styles, bool bTimeOnly, MethodInfo * method)); +DO_APP_FUNC(0x01B7BD80, bool, DateTimeParse_DateTimeOffsetTimeZonePostProcessing, (_DTString * str, DateTimeResult * result, DateTimeStyles__Enum styles, MethodInfo * method)); +DO_APP_FUNC(0x01B7C030, bool, DateTimeParse_AdjustTimeZoneToUniversal, (DateTimeResult * result, MethodInfo * method)); +DO_APP_FUNC(0x01B7C170, bool, DateTimeParse_AdjustTimeZoneToLocal, (DateTimeResult * result, bool bTimeOnly, MethodInfo * method)); +DO_APP_FUNC(0x01B7C470, bool, DateTimeParse_ParseISO8601, (DateTimeRawInfo * raw, _DTString * str, DateTimeStyles__Enum styles, DateTimeResult * result, MethodInfo * method)); +DO_APP_FUNC(0x01B7CB70, bool, DateTimeParse_MatchHebrewDigits, (_DTString * str, int32_t digitLen, int32_t * number, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02BC0, DateTimeParse_MatchHebrewDigits__MethodInfo); +DO_APP_FUNC(0x01B7CC80, bool, DateTimeParse_ParseDigits, (_DTString * str, int32_t digitLen, int32_t * result, MethodInfo * method)); +DO_APP_FUNC(0x01B7CD20, bool, DateTimeParse_ParseDigits_1, (_DTString * str, int32_t minDigitLen, int32_t maxDigitLen, int32_t * result, MethodInfo * method)); +DO_APP_FUNC(0x01B7CE20, bool, DateTimeParse_ParseFractionExact, (_DTString * str, int32_t maxDigitLen, double * result, MethodInfo * method)); +DO_APP_FUNC(0x01B7CFB0, bool, DateTimeParse_ParseSign, (_DTString * str, bool * result, MethodInfo * method)); +DO_APP_FUNC(0x01B7D070, bool, DateTimeParse_ParseTimeZoneOffset, (_DTString * str, int32_t len, TimeSpan * result, MethodInfo * method)); +DO_APP_FUNC(0x01B7D370, bool, DateTimeParse_MatchAbbreviatedMonthName, (_DTString * str, DateTimeFormatInfo * dtfi, int32_t * result, MethodInfo * method)); +DO_APP_FUNC(0x01B7D630, bool, DateTimeParse_MatchMonthName, (_DTString * str, DateTimeFormatInfo * dtfi, int32_t * result, MethodInfo * method)); +DO_APP_FUNC(0x01B7DA50, bool, DateTimeParse_MatchAbbreviatedDayName, (_DTString * str, DateTimeFormatInfo * dtfi, int32_t * result, MethodInfo * method)); +DO_APP_FUNC(0x01B7DBC0, bool, DateTimeParse_MatchDayName, (_DTString * str, DateTimeFormatInfo * dtfi, int32_t * result, MethodInfo * method)); +DO_APP_FUNC(0x01B7DD30, bool, DateTimeParse_MatchEraName, (_DTString * str, DateTimeFormatInfo * dtfi, int32_t * result, MethodInfo * method)); +DO_APP_FUNC(0x01B7DEB0, bool, DateTimeParse_MatchTimeMark, (_DTString * str, DateTimeFormatInfo * dtfi, DateTimeParse_TM__Enum * result, MethodInfo * method)); +DO_APP_FUNC(0x01B7E030, bool, DateTimeParse_MatchAbbreviatedTimeMark, (_DTString * str, DateTimeFormatInfo * dtfi, DateTimeParse_TM__Enum * result, MethodInfo * method)); +DO_APP_FUNC(0x01B7E190, bool, DateTimeParse_CheckNewValue, (int32_t * currentValue, int32_t newValue, uint16_t patternChar, DateTimeResult * result, MethodInfo * method)); +DO_APP_FUNC(0x01B7E240, DateTime, DateTimeParse_GetDateTimeNow, (DateTimeResult * result, DateTimeStyles__Enum * styles, MethodInfo * method)); +DO_APP_FUNC(0x01B7E3A0, bool, DateTimeParse_CheckDefaultDateTime, (DateTimeResult * result, Calendar * * cal, DateTimeStyles__Enum styles, MethodInfo * method)); +DO_APP_FUNC(0x01B7E5E0, String *, DateTimeParse_ExpandPredefinedFormat, (ReadOnlySpan_1_Char_ format, DateTimeFormatInfo * * dtfi, ParsingInfo * parseInfo, DateTimeResult * result, MethodInfo * method)); +DO_APP_FUNC(0x01B7EAA0, bool, DateTimeParse_ParseJapaneseEraStart, (_DTString * str, DateTimeFormatInfo * dtfi, MethodInfo * method)); +DO_APP_FUNC(0x01B7EBA0, bool, DateTimeParse_ParseByFormat, (_DTString * str, _DTString * format, ParsingInfo * parseInfo, DateTimeFormatInfo * dtfi, DateTimeResult * result, MethodInfo * method)); +DO_APP_FUNC(0x01B80740, bool, DateTimeParse_TryParseQuoteString, (ReadOnlySpan_1_Char_ format, int32_t pos, StringBuilder * result, int32_t * returnValue, MethodInfo * method)); +DO_APP_FUNC(0x01B80860, bool, DateTimeParse_DoStrictParse, (ReadOnlySpan_1_Char_ s, ReadOnlySpan_1_Char_ formatParam, DateTimeStyles__Enum styles, DateTimeFormatInfo * dtfi, DateTimeResult * result, MethodInfo * method)); +DO_APP_FUNC(0x01B813D0, Exception *, DateTimeParse_GetDateTimeParseException, (DateTimeResult * result, MethodInfo * method)); DO_APP_FUNC(0x01B815C0, void, DateTimeParse__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01B821E0, void, DateTimeParse_MatchNumberDelegate__ctor, (DateTimeParse_MatchNumberDelegate * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EF9C0, bool, DateTimeParse_MatchNumberDelegate_Invoke, (DateTimeParse_MatchNumberDelegate * __this, _DTString str, int32_t digitLen, int32_t result, MethodInfo * method)); +DO_APP_FUNC(0x003EF9C0, bool, DateTimeParse_MatchNumberDelegate_Invoke, (DateTimeParse_MatchNumberDelegate * __this, _DTString * str, int32_t digitLen, int32_t * result, MethodInfo * method)); DO_APP_FUNC(0x01B82320, void, DateTimeParse_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, DateTimeParse_c__ctor, (DateTimeParse_c * __this, MethodInfo * method)); DO_APP_FUNC(0x01B823D0, DateTimeParse_MatchNumberDelegate *, DateTimeParse_c__DoStrictParse_b__98_0, (DateTimeParse_c * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B82550, int32_t, _DTString_get_Length, (_DTString__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B82590, void, _DTString__ctor, (_DTString__Boxed * __this, ReadOnlySpan_1_Char_ str, DateTimeFormatInfo * dtfi, bool checkDigitToken, MethodInfo * method)); -DO_APP_FUNC(0x01B82620, void, _DTString__ctor_1, (_DTString__Boxed * __this, ReadOnlySpan_1_Char_ str, DateTimeFormatInfo * dtfi, MethodInfo * method)); -DO_APP_FUNC(0x003BB3D0, CompareInfo *, _DTString_get_CompareInfo, (_DTString__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B828C0, bool, _DTString_GetNext, (_DTString__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B82970, bool, _DTString_AtEnd, (_DTString__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B829F0, bool, _DTString_Advance, (_DTString__Boxed * __this, int32_t count, MethodInfo * method)); -DO_APP_FUNC(0x01B82AA0, void, _DTString_GetRegularToken, (_DTString__Boxed * __this, TokenType__Enum tokenType, int32_t tokenValue, DateTimeFormatInfo * dtfi, MethodInfo * method)); -DO_APP_FUNC(0x01B82DD0, TokenType__Enum, _DTString_GetSeparatorToken, (_DTString__Boxed * __this, DateTimeFormatInfo * dtfi, int32_t indexBeforeSeparator, uint16_t charBeforeSeparator, MethodInfo * method)); -DO_APP_FUNC(0x01B83010, bool, _DTString_MatchSpecifiedWord, (_DTString__Boxed * __this, String * target, MethodInfo * method)); -DO_APP_FUNC(0x01B83160, bool, _DTString_MatchSpecifiedWords, (_DTString__Boxed * __this, String * target, bool checkWordBoundary, int32_t matchLength, MethodInfo * method)); -DO_APP_FUNC(0x01B83650, bool, _DTString_Match, (_DTString__Boxed * __this, String * str, MethodInfo * method)); -DO_APP_FUNC(0x01B837D0, bool, _DTString_Match_1, (_DTString__Boxed * __this, uint16_t ch, MethodInfo * method)); -DO_APP_FUNC(0x01B83890, int32_t, _DTString_MatchLongestWords, (_DTString__Boxed * __this, String__Array * words, int32_t maxMatchStrLen, MethodInfo * method)); -DO_APP_FUNC(0x01B83970, int32_t, _DTString_GetRepeatCount, (_DTString__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B83A50, bool, _DTString_GetNextDigit, (_DTString__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B83B20, uint16_t, _DTString_GetChar, (_DTString__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B83B40, int32_t, _DTString_GetDigit, (_DTString__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B83B70, void, _DTString_SkipWhiteSpaces, (_DTString__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B83C40, bool, _DTString_SkipWhiteSpaceCurrent, (_DTString__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B83D90, void, _DTString_TrimTail, (_DTString__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B83ED0, void, _DTString_RemoveTrailingInQuoteSpaces, (_DTString__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B84200, void, _DTString_RemoveLeadingInQuoteSpaces, (_DTString__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B84590, DTSubString, _DTString_GetSubString, (_DTString__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B846F0, void, _DTString_ConsumeSubString, (_DTString__Boxed * __this, DTSubString sub, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01D00, DateTimeParse_c__DoStrictParse_b__98_0__MethodInfo); +DO_APP_FUNC(0x01B82550, int32_t, _DTString_get_Length, (_DTString * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B82590, void, _DTString__ctor, (_DTString * __this, ReadOnlySpan_1_Char_ str, DateTimeFormatInfo * dtfi, bool checkDigitToken, MethodInfo * method)); +DO_APP_FUNC(0x01B82620, void, _DTString__ctor_1, (_DTString * __this, ReadOnlySpan_1_Char_ str, DateTimeFormatInfo * dtfi, MethodInfo * method)); +DO_APP_FUNC(0x003BB3D0, CompareInfo *, _DTString_get_CompareInfo, (_DTString * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B828C0, bool, _DTString_GetNext, (_DTString * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B82970, bool, _DTString_AtEnd, (_DTString * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B829F0, bool, _DTString_Advance, (_DTString * __this, int32_t count, MethodInfo * method)); +DO_APP_FUNC(0x01B82AA0, void, _DTString_GetRegularToken, (_DTString * __this, TokenType__Enum * tokenType, int32_t * tokenValue, DateTimeFormatInfo * dtfi, MethodInfo * method)); +DO_APP_FUNC(0x01B82DD0, TokenType__Enum, _DTString_GetSeparatorToken, (_DTString * __this, DateTimeFormatInfo * dtfi, int32_t * indexBeforeSeparator, uint16_t * charBeforeSeparator, MethodInfo * method)); +DO_APP_FUNC(0x01B83010, bool, _DTString_MatchSpecifiedWord, (_DTString * __this, String * target, MethodInfo * method)); +DO_APP_FUNC(0x01B83160, bool, _DTString_MatchSpecifiedWords, (_DTString * __this, String * target, bool checkWordBoundary, int32_t * matchLength, MethodInfo * method)); +DO_APP_FUNC(0x01B83650, bool, _DTString_Match, (_DTString * __this, String * str, MethodInfo * method)); +DO_APP_FUNC(0x01B837D0, bool, _DTString_Match_1, (_DTString * __this, uint16_t ch, MethodInfo * method)); +DO_APP_FUNC(0x01B83890, int32_t, _DTString_MatchLongestWords, (_DTString * __this, String__Array * words, int32_t * maxMatchStrLen, MethodInfo * method)); +DO_APP_FUNC(0x01B83970, int32_t, _DTString_GetRepeatCount, (_DTString * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B83A50, bool, _DTString_GetNextDigit, (_DTString * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B83B20, uint16_t, _DTString_GetChar, (_DTString * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B83B40, int32_t, _DTString_GetDigit, (_DTString * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B83B70, void, _DTString_SkipWhiteSpaces, (_DTString * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B83C40, bool, _DTString_SkipWhiteSpaceCurrent, (_DTString * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B83D90, void, _DTString_TrimTail, (_DTString * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B83ED0, void, _DTString_RemoveTrailingInQuoteSpaces, (_DTString * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B84200, void, _DTString_RemoveLeadingInQuoteSpaces, (_DTString * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B84590, DTSubString, _DTString_GetSubString, (_DTString * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B846F0, void, _DTString_ConsumeSubString, (_DTString * __this, DTSubString sub, MethodInfo * method)); DO_APP_FUNC(0x01B847A0, void, _DTString__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x01B84830, uint16_t, DTSubString_get_Item, (DTSubString__Boxed * __this, int32_t relativeIndex, MethodInfo * method)); -DO_APP_FUNC(0x01B84860, void, DateTimeRawInfo_Init, (DateTimeRawInfo__Boxed * __this, int32_t * numberBuffer, MethodInfo * method)); -DO_APP_FUNC(0x01B84890, void, DateTimeRawInfo_AddNumber, (DateTimeRawInfo__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x01B848B0, int32_t, DateTimeRawInfo_GetNumber, (DateTimeRawInfo__Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01B848C0, void, DateTimeResult_Init, (DateTimeResult__Boxed * __this, ReadOnlySpan_1_Char_ originalDateTimeString, MethodInfo * method)); -DO_APP_FUNC(0x00977060, void, DateTimeResult_SetDate, (DateTimeResult__Boxed * __this, int32_t year, int32_t month, int32_t day, MethodInfo * method)); -DO_APP_FUNC(0x01B848F0, void, DateTimeResult_SetBadFormatSpecifierFailure, (DateTimeResult__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B84970, void, DateTimeResult_SetBadFormatSpecifierFailure_1, (DateTimeResult__Boxed * __this, ReadOnlySpan_1_Char_ failedFormatSpecifier, MethodInfo * method)); -DO_APP_FUNC(0x01B849D0, void, DateTimeResult_SetBadDateTimeFailure, (DateTimeResult__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B84A20, void, DateTimeResult_SetFailure, (DateTimeResult__Boxed * __this, ParseFailureKind__Enum failure, String * failureMessageID, MethodInfo * method)); -DO_APP_FUNC(0x01B84A30, void, DateTimeResult_SetFailure_1, (DateTimeResult__Boxed * __this, ParseFailureKind__Enum failure, String * failureMessageID, Object * failureMessageFormatArgument, MethodInfo * method)); -DO_APP_FUNC(0x01B84A40, void, DateTimeResult_SetFailure_2, (DateTimeResult__Boxed * __this, ParseFailureKind__Enum failure, String * failureMessageID, Object * failureMessageFormatArgument, String * failureArgumentName, MethodInfo * method)); -DO_APP_FUNC(0x01B84A60, void, ParsingInfo_Init, (ParsingInfo__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B84830, uint16_t, DTSubString_get_Item, (DTSubString * __this, int32_t relativeIndex, MethodInfo * method)); +DO_APP_FUNC(0x01B84860, void, DateTimeRawInfo_Init, (DateTimeRawInfo * __this, int32_t * numberBuffer, MethodInfo * method)); +DO_APP_FUNC(0x01B84890, void, DateTimeRawInfo_AddNumber, (DateTimeRawInfo * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x01B848B0, int32_t, DateTimeRawInfo_GetNumber, (DateTimeRawInfo * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x01B848C0, void, DateTimeResult_Init, (DateTimeResult * __this, ReadOnlySpan_1_Char_ originalDateTimeString, MethodInfo * method)); +DO_APP_FUNC(0x00977060, void, DateTimeResult_SetDate, (DateTimeResult * __this, int32_t year, int32_t month, int32_t day, MethodInfo * method)); +DO_APP_FUNC(0x01B848F0, void, DateTimeResult_SetBadFormatSpecifierFailure, (DateTimeResult * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B84970, void, DateTimeResult_SetBadFormatSpecifierFailure_1, (DateTimeResult * __this, ReadOnlySpan_1_Char_ failedFormatSpecifier, MethodInfo * method)); +DO_APP_FUNC(0x01B849D0, void, DateTimeResult_SetBadDateTimeFailure, (DateTimeResult * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B84A20, void, DateTimeResult_SetFailure, (DateTimeResult * __this, ParseFailureKind__Enum failure, String * failureMessageID, MethodInfo * method)); +DO_APP_FUNC(0x01B84A30, void, DateTimeResult_SetFailure_1, (DateTimeResult * __this, ParseFailureKind__Enum failure, String * failureMessageID, Object * failureMessageFormatArgument, MethodInfo * method)); +DO_APP_FUNC(0x01B84A40, void, DateTimeResult_SetFailure_2, (DateTimeResult * __this, ParseFailureKind__Enum failure, String * failureMessageID, Object * failureMessageFormatArgument, String * failureArgumentName, MethodInfo * method)); +DO_APP_FUNC(0x01B84A60, void, ParsingInfo_Init, (ParsingInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01B84A70, Guid, Guid_NewGuid, (MethodInfo * method)); -DO_APP_FUNC(0x01B84AC0, void, Guid__ctor, (Guid__Boxed * __this, Byte__Array * b, MethodInfo * method)); -DO_APP_FUNC(0x01B84B90, void, Guid__ctor_1, (Guid__Boxed * __this, ReadOnlySpan_1_Byte_ b, MethodInfo * method)); -DO_APP_FUNC(0x01B84D60, void, Guid__ctor_2, (Guid__Boxed * __this, uint32_t a, uint16_t b, uint16_t c, uint8_t d, uint8_t e, uint8_t f, uint8_t g, uint8_t h, uint8_t i, uint8_t j, uint8_t k, MethodInfo * method)); -DO_APP_FUNC(0x01B84DB0, void, Guid__ctor_3, (Guid__Boxed * __this, int32_t a, int16_t b, int16_t c, Byte__Array * d, MethodInfo * method)); -DO_APP_FUNC(0x01B84D60, void, Guid__ctor_4, (Guid__Boxed * __this, int32_t a, int16_t b, int16_t c, uint8_t d, uint8_t e, uint8_t f, uint8_t g, uint8_t h, uint8_t i, uint8_t j, uint8_t k, MethodInfo * method)); -DO_APP_FUNC(0x01B84F50, void, Guid__ctor_5, (Guid__Boxed * __this, String * g, MethodInfo * method)); +DO_APP_FUNC(0x01B84AC0, void, Guid__ctor, (Guid * __this, Byte__Array * b, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02BB0, Guid__ctor__MethodInfo); +DO_APP_FUNC(0x01B84B90, void, Guid__ctor_1, (Guid * __this, ReadOnlySpan_1_Byte_ b, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02B98, Guid__ctor_1__MethodInfo); +DO_APP_FUNC(0x01B84D60, void, Guid__ctor_2, (Guid * __this, uint32_t a, uint16_t b, uint16_t c, uint8_t d, uint8_t e, uint8_t f, uint8_t g, uint8_t h, uint8_t i, uint8_t j, uint8_t k, MethodInfo * method)); +DO_APP_FUNC(0x01B84DB0, void, Guid__ctor_3, (Guid * __this, int32_t a, int16_t b, int16_t c, Byte__Array * d, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02B90, Guid__ctor_3__MethodInfo); +DO_APP_FUNC(0x01B84D60, void, Guid__ctor_4, (Guid * __this, int32_t a, int16_t b, int16_t c, uint8_t d, uint8_t e, uint8_t f, uint8_t g, uint8_t h, uint8_t i, uint8_t j, uint8_t k, MethodInfo * method)); +DO_APP_FUNC(0x01B84F50, void, Guid__ctor_5, (Guid * __this, String * g, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02B88, Guid__ctor_5__MethodInfo); DO_APP_FUNC(0x01B85080, Guid, Guid_Parse, (String * input, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02B80, Guid_Parse__MethodInfo); DO_APP_FUNC(0x01B851B0, Guid, Guid_Parse_1, (ReadOnlySpan_1_Char_ input, MethodInfo * method)); -DO_APP_FUNC(0x01B85240, bool, Guid_TryParse, (String * input, Guid result, MethodInfo * method)); -DO_APP_FUNC(0x01B85320, bool, Guid_TryParse_1, (ReadOnlySpan_1_Char_ input, Guid result, MethodInfo * method)); -DO_APP_FUNC(0x01B85380, bool, Guid_TryParseGuid, (ReadOnlySpan_1_Char_ guidString, Guid_GuidStyles__Enum flags, Guid_GuidResult result, MethodInfo * method)); -DO_APP_FUNC(0x01B85570, bool, Guid_TryParseGuidWithHexPrefix, (ReadOnlySpan_1_Char_ guidString, Guid_GuidResult result, MethodInfo * method)); -DO_APP_FUNC(0x01B85F50, bool, Guid_TryParseGuidWithNoStyle, (ReadOnlySpan_1_Char_ guidString, Guid_GuidResult result, MethodInfo * method)); -DO_APP_FUNC(0x01B863D0, bool, Guid_TryParseGuidWithDashes, (ReadOnlySpan_1_Char_ guidString, Guid_GuidResult result, MethodInfo * method)); -DO_APP_FUNC(0x01B86760, bool, Guid_StringToShort, (ReadOnlySpan_1_Char_ str, int32_t requiredLength, int32_t flags, int16_t result, Guid_GuidResult parseResult, MethodInfo * method)); -DO_APP_FUNC(0x01B867C0, bool, Guid_StringToShort_1, (ReadOnlySpan_1_Char_ str, int32_t parsePos, int32_t requiredLength, int32_t flags, int16_t result, Guid_GuidResult parseResult, MethodInfo * method)); -DO_APP_FUNC(0x01B86820, bool, Guid_StringToInt, (ReadOnlySpan_1_Char_ str, int32_t requiredLength, int32_t flags, int32_t result, Guid_GuidResult parseResult, MethodInfo * method)); -DO_APP_FUNC(0x01B86870, bool, Guid_StringToInt_1, (ReadOnlySpan_1_Char_ str, int32_t parsePos, int32_t requiredLength, int32_t flags, int32_t result, Guid_GuidResult parseResult, MethodInfo * method)); -DO_APP_FUNC(0x01B86A10, bool, Guid_StringToLong, (ReadOnlySpan_1_Char_ str, int32_t parsePos, int32_t flags, int64_t result, Guid_GuidResult parseResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02B78, Guid_Parse_1__MethodInfo); +DO_APP_FUNC(0x01B85240, bool, Guid_TryParse, (String * input, Guid * result, MethodInfo * method)); +DO_APP_FUNC(0x01B85320, bool, Guid_TryParse_1, (ReadOnlySpan_1_Char_ input, Guid * result, MethodInfo * method)); +DO_APP_FUNC(0x01B85380, bool, Guid_TryParseGuid, (ReadOnlySpan_1_Char_ guidString, Guid_GuidStyles__Enum flags, Guid_GuidResult * result, MethodInfo * method)); +DO_APP_FUNC(0x01B85570, bool, Guid_TryParseGuidWithHexPrefix, (ReadOnlySpan_1_Char_ guidString, Guid_GuidResult * result, MethodInfo * method)); +DO_APP_FUNC(0x01B85F50, bool, Guid_TryParseGuidWithNoStyle, (ReadOnlySpan_1_Char_ guidString, Guid_GuidResult * result, MethodInfo * method)); +DO_APP_FUNC(0x01B863D0, bool, Guid_TryParseGuidWithDashes, (ReadOnlySpan_1_Char_ guidString, Guid_GuidResult * result, MethodInfo * method)); +DO_APP_FUNC(0x01B86760, bool, Guid_StringToShort, (ReadOnlySpan_1_Char_ str, int32_t requiredLength, int32_t flags, int16_t * result, Guid_GuidResult * parseResult, MethodInfo * method)); +DO_APP_FUNC(0x01B867C0, bool, Guid_StringToShort_1, (ReadOnlySpan_1_Char_ str, int32_t * parsePos, int32_t requiredLength, int32_t flags, int16_t * result, Guid_GuidResult * parseResult, MethodInfo * method)); +DO_APP_FUNC(0x01B86820, bool, Guid_StringToInt, (ReadOnlySpan_1_Char_ str, int32_t requiredLength, int32_t flags, int32_t * result, Guid_GuidResult * parseResult, MethodInfo * method)); +DO_APP_FUNC(0x01B86870, bool, Guid_StringToInt_1, (ReadOnlySpan_1_Char_ str, int32_t * parsePos, int32_t requiredLength, int32_t flags, int32_t * result, Guid_GuidResult * parseResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02B50, Guid_StringToInt_1__MethodInfo); +DO_APP_FUNC(0x01B86A10, bool, Guid_StringToLong, (ReadOnlySpan_1_Char_ str, int32_t * parsePos, int32_t flags, int64_t * result, Guid_GuidResult * parseResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02B48, Guid_StringToLong__MethodInfo); DO_APP_FUNC(0x01B86B10, ReadOnlySpan_1_Char_, Guid_EatAllWhitespace, (ReadOnlySpan_1_Char_ str, MethodInfo * method)); DO_APP_FUNC(0x01B86E10, bool, Guid_IsHexPrefix, (ReadOnlySpan_1_Char_ str, int32_t i, MethodInfo * method)); -DO_APP_FUNC(0x01B86EE0, void, Guid_WriteByteHelper, (Guid__Boxed * __this, Span_1_Byte_ destination, MethodInfo * method)); -DO_APP_FUNC(0x01B87000, Byte__Array *, Guid_ToByteArray, (Guid__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B870E0, String *, Guid_ToString, (Guid__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9ABE0, int32_t, Guid_GetHashCode, (Guid__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B87130, bool, Guid_Equals, (Guid__Boxed * __this, Object * o, MethodInfo * method)); -DO_APP_FUNC(0x01B871D0, bool, Guid_Equals_1, (Guid__Boxed * __this, Guid g, MethodInfo * method)); -DO_APP_FUNC(0x01B87200, int32_t, Guid_GetResult, (Guid__Boxed * __this, uint32_t me, uint32_t them, MethodInfo * method)); -DO_APP_FUNC(0x01B87220, int32_t, Guid_CompareTo, (Guid__Boxed * __this, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x01B874E0, int32_t, Guid_CompareTo_1, (Guid__Boxed * __this, Guid value, MethodInfo * method)); +DO_APP_FUNC(0x01B86EE0, void, Guid_WriteByteHelper, (Guid * __this, Span_1_Byte_ destination, MethodInfo * method)); +DO_APP_FUNC(0x01B87000, Byte__Array *, Guid_ToByteArray, (Guid * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B870E0, String *, Guid_ToString, (Guid * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9ABE0, int32_t, Guid_GetHashCode, (Guid * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B87130, bool, Guid_Equals, (Guid * __this, Object * o, MethodInfo * method)); +DO_APP_FUNC(0x01B871D0, bool, Guid_Equals_1, (Guid * __this, Guid g, MethodInfo * method)); +DO_APP_FUNC(0x01B87200, int32_t, Guid_GetResult, (Guid * __this, uint32_t me, uint32_t them, MethodInfo * method)); +DO_APP_FUNC(0x01B87220, int32_t, Guid_CompareTo, (Guid * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02AA0, Guid_CompareTo__MethodInfo); +DO_APP_FUNC(0x01B874E0, int32_t, Guid_CompareTo_1, (Guid * __this, Guid value, MethodInfo * method)); DO_APP_FUNC(0x01B87680, bool, Guid_op_Equality, (Guid a, Guid b, MethodInfo * method)); DO_APP_FUNC(0x01B876B0, bool, Guid_op_Inequality, (Guid a, Guid b, MethodInfo * method)); -DO_APP_FUNC(0x01B876E0, String *, Guid_ToString_1, (Guid__Boxed * __this, String * format, MethodInfo * method)); +DO_APP_FUNC(0x01B876E0, String *, Guid_ToString_1, (Guid * __this, String * format, MethodInfo * method)); DO_APP_FUNC(0x01B876F0, uint16_t, Guid_HexToChar, (int32_t a, MethodInfo * method)); DO_APP_FUNC(0x01B87710, int32_t, Guid_HexsToChars, (uint16_t * guidChars, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x01B87790, int32_t, Guid_HexsToCharsHexOutput, (uint16_t * guidChars, int32_t a, int32_t b, MethodInfo * method)); -DO_APP_FUNC(0x01B87830, String *, Guid_ToString_2, (Guid__Boxed * __this, String * format, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B87AD0, bool, Guid_TryFormat, (Guid__Boxed * __this, Span_1_Char_ destination, int32_t charsWritten, ReadOnlySpan_1_Char_ format, MethodInfo * method)); -DO_APP_FUNC(0x01B884E0, bool, Guid_System_ISpanFormattable_TryFormat, (Guid__Boxed * __this, Span_1_Char_ destination, int32_t charsWritten, ReadOnlySpan_1_Char_ format, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x003BCD60, void, Guid_GuidResult_Init, (Guid_GuidResult__Boxed * __this, Guid_GuidParseThrowStyle__Enum canThrow, MethodInfo * method)); -DO_APP_FUNC(0x01B88520, void, Guid_GuidResult_SetFailure, (Guid_GuidResult__Boxed * __this, Exception * nativeException, MethodInfo * method)); -DO_APP_FUNC(0x01B88580, void, Guid_GuidResult_SetFailure_1, (Guid_GuidResult__Boxed * __this, Guid_ParseFailureKind__Enum failure, String * failureMessageID, MethodInfo * method)); -DO_APP_FUNC(0x01B885B0, void, Guid_GuidResult_SetFailure_2, (Guid_GuidResult__Boxed * __this, Guid_ParseFailureKind__Enum failure, String * failureMessageID, Object * failureMessageFormatArgument, MethodInfo * method)); -DO_APP_FUNC(0x01B885D0, void, Guid_GuidResult_SetFailure_3, (Guid_GuidResult__Boxed * __this, Guid_ParseFailureKind__Enum failure, String * failureMessageID, Object * failureMessageFormatArgument, String * failureArgumentName, Exception * innerException, MethodInfo * method)); -DO_APP_FUNC(0x01B88770, Exception *, Guid_GuidResult_GetGuidParseException, (Guid_GuidResult__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B87830, String *, Guid_ToString_2, (Guid * __this, String * format, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02A90, Guid_ToString_2__MethodInfo); +DO_APP_FUNC(0x01B87AD0, bool, Guid_TryFormat, (Guid * __this, Span_1_Char_ destination, int32_t * charsWritten, ReadOnlySpan_1_Char_ format, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02AD8, Guid_TryFormat__MethodInfo); +DO_APP_FUNC(0x01B884E0, bool, Guid_System_ISpanFormattable_TryFormat, (Guid * __this, Span_1_Char_ destination, int32_t * charsWritten, ReadOnlySpan_1_Char_ format, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x003BCD60, void, Guid_GuidResult_Init, (Guid_GuidResult * __this, Guid_GuidParseThrowStyle__Enum canThrow, MethodInfo * method)); +DO_APP_FUNC(0x01B88520, void, Guid_GuidResult_SetFailure, (Guid_GuidResult * __this, Exception * nativeException, MethodInfo * method)); +DO_APP_FUNC(0x01B88580, void, Guid_GuidResult_SetFailure_1, (Guid_GuidResult * __this, Guid_ParseFailureKind__Enum failure, String * failureMessageID, MethodInfo * method)); +DO_APP_FUNC(0x01B885B0, void, Guid_GuidResult_SetFailure_2, (Guid_GuidResult * __this, Guid_ParseFailureKind__Enum failure, String * failureMessageID, Object * failureMessageFormatArgument, MethodInfo * method)); +DO_APP_FUNC(0x01B885D0, void, Guid_GuidResult_SetFailure_3, (Guid_GuidResult * __this, Guid_ParseFailureKind__Enum failure, String * failureMessageID, Object * failureMessageFormatArgument, String * failureArgumentName, Exception * innerException, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02AD0, Guid_GuidResult_SetFailure_3__MethodInfo); +DO_APP_FUNC(0x01B88770, Exception *, Guid_GuidResult_GetGuidParseException, (Guid_GuidResult * __this, MethodInfo * method)); DO_APP_FUNC(0x01B88900, void, IndexOutOfRangeException__ctor, (IndexOutOfRangeException * __this, MethodInfo * method)); DO_APP_FUNC(0x01B88950, void, IndexOutOfRangeException__ctor_1, (IndexOutOfRangeException * __this, String * message, MethodInfo * method)); DO_APP_FUNC(0x01980BF0, void, IndexOutOfRangeException__ctor_2, (IndexOutOfRangeException * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x01B88970, void, InsufficientExecutionStackException__ctor, (InsufficientExecutionStackException * __this, MethodInfo * method)); DO_APP_FUNC(0x01980BF0, void, InsufficientExecutionStackException__ctor_1, (InsufficientExecutionStackException * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); -DO_APP_FUNC(0x01B889C0, int32_t, Int16_CompareTo, (Int16__Boxed * __this, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x01B88AA0, int32_t, Int16_CompareTo_1, (Int16__Boxed * __this, int16_t value, MethodInfo * method)); -DO_APP_FUNC(0x01B88AB0, bool, Int16_Equals, (Int16__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x01AA4830, bool, Int16_Equals_1, (Int16__Boxed * __this, int16_t obj, MethodInfo * method)); -DO_APP_FUNC(0x01B88B40, int32_t, Int16_GetHashCode, (Int16__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B88B50, String *, Int16_ToString, (Int16__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B88BF0, String *, Int16_ToString_1, (Int16__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B88CA0, String *, Int16_ToString_2, (Int16__Boxed * __this, String * format, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B88E20, bool, Int16_TryFormat, (Int16__Boxed * __this, Span_1_Char_ destination, int32_t charsWritten, ReadOnlySpan_1_Char_ format, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B889C0, int32_t, Int16_CompareTo, (Int16 * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02AB0, Int16_CompareTo__MethodInfo); +DO_APP_FUNC(0x01B88AA0, int32_t, Int16_CompareTo_1, (Int16 * __this, int16_t value, MethodInfo * method)); +DO_APP_FUNC(0x01B88AB0, bool, Int16_Equals, (Int16 * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x01AA4830, bool, Int16_Equals_1, (Int16 * __this, int16_t obj, MethodInfo * method)); +DO_APP_FUNC(0x01B88B40, int32_t, Int16_GetHashCode, (Int16 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B88B50, String *, Int16_ToString, (Int16 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B88BF0, String *, Int16_ToString_1, (Int16 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B88CA0, String *, Int16_ToString_2, (Int16 * __this, String * format, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B88E20, bool, Int16_TryFormat, (Int16 * __this, Span_1_Char_ destination, int32_t * charsWritten, ReadOnlySpan_1_Char_ format, IFormatProvider * provider, MethodInfo * method)); DO_APP_FUNC(0x01B88F60, int16_t, Int16_Parse, (String * s, IFormatProvider * provider, MethodInfo * method)); DO_APP_FUNC(0x01B88FF0, int16_t, Int16_Parse_1, (String * s, NumberStyles__Enum style, IFormatProvider * provider, MethodInfo * method)); DO_APP_FUNC(0x01B89090, int16_t, Int16_Parse_2, (ReadOnlySpan_1_Char_ s, NumberStyles__Enum style, NumberFormatInfo * info, MethodInfo * method)); -DO_APP_FUNC(0x01B89240, bool, Int16_TryParse, (String * s, int16_t result, MethodInfo * method)); -DO_APP_FUNC(0x01B89350, bool, Int16_TryParse_1, (String * s, NumberStyles__Enum style, IFormatProvider * provider, int16_t result, MethodInfo * method)); -DO_APP_FUNC(0x01B89410, bool, Int16_TryParse_2, (ReadOnlySpan_1_Char_ s, NumberStyles__Enum style, NumberFormatInfo * info, int16_t result, MethodInfo * method)); -DO_APP_FUNC(0x00EAA8F0, TypeCode__Enum, Int16_GetTypeCode, (Int16__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B894E0, bool, Int16_System_IConvertible_ToBoolean, (Int16__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B89530, uint16_t, Int16_System_IConvertible_ToChar, (Int16__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B895C0, int8_t, Int16_System_IConvertible_ToSByte, (Int16__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B89660, uint8_t, Int16_System_IConvertible_ToByte, (Int16__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x00C15E20, int16_t, Int16_System_IConvertible_ToInt16, (Int16__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B896F0, uint16_t, Int16_System_IConvertible_ToUInt16, (Int16__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B89780, int32_t, Int16_System_IConvertible_ToInt32, (Int16__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B897D0, uint32_t, Int16_System_IConvertible_ToUInt32, (Int16__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B89860, int64_t, Int16_System_IConvertible_ToInt64, (Int16__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B898B0, uint64_t, Int16_System_IConvertible_ToUInt64, (Int16__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B89940, float, Int16_System_IConvertible_ToSingle, (Int16__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B89990, double, Int16_System_IConvertible_ToDouble, (Int16__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B899E0, Decimal, Int16_System_IConvertible_ToDecimal, (Int16__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B89AB0, DateTime, Int16_System_IConvertible_ToDateTime, (Int16__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B89B40, Object *, Int16_System_IConvertible_ToType, (Int16__Boxed * __this, Type * type, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B89BE0, int32_t, Int32_CompareTo, (Int32__Boxed * __this, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x00C0F700, int32_t, Int32_CompareTo_1, (Int32__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x01B89CD0, bool, Int32_Equals, (Int32__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x00C0F590, bool, Int32_Equals_1, (Int32__Boxed * __this, int32_t obj, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, Int32_GetHashCode, (Int32__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B89D60, String *, Int32_ToString, (Int32__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B89E00, String *, Int32_ToString_1, (Int32__Boxed * __this, String * format, MethodInfo * method)); -DO_APP_FUNC(0x01B89EC0, String *, Int32_ToString_2, (Int32__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B89F70, String *, Int32_ToString_3, (Int32__Boxed * __this, String * format, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B8A040, bool, Int32_TryFormat, (Int32__Boxed * __this, Span_1_Char_ destination, int32_t charsWritten, ReadOnlySpan_1_Char_ format, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02A88, Int16_Parse_2__MethodInfo); +DO_APP_FUNC(0x01B89240, bool, Int16_TryParse, (String * s, int16_t * result, MethodInfo * method)); +DO_APP_FUNC(0x01B89350, bool, Int16_TryParse_1, (String * s, NumberStyles__Enum style, IFormatProvider * provider, int16_t * result, MethodInfo * method)); +DO_APP_FUNC(0x01B89410, bool, Int16_TryParse_2, (ReadOnlySpan_1_Char_ s, NumberStyles__Enum style, NumberFormatInfo * info, int16_t * result, MethodInfo * method)); +DO_APP_FUNC(0x00EAA8F0, TypeCode__Enum, Int16_GetTypeCode, (Int16 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B894E0, bool, Int16_System_IConvertible_ToBoolean, (Int16 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B89530, uint16_t, Int16_System_IConvertible_ToChar, (Int16 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B895C0, int8_t, Int16_System_IConvertible_ToSByte, (Int16 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B89660, uint8_t, Int16_System_IConvertible_ToByte, (Int16 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x00C15E20, int16_t, Int16_System_IConvertible_ToInt16, (Int16 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B896F0, uint16_t, Int16_System_IConvertible_ToUInt16, (Int16 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B89780, int32_t, Int16_System_IConvertible_ToInt32, (Int16 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B897D0, uint32_t, Int16_System_IConvertible_ToUInt32, (Int16 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B89860, int64_t, Int16_System_IConvertible_ToInt64, (Int16 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B898B0, uint64_t, Int16_System_IConvertible_ToUInt64, (Int16 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B89940, float, Int16_System_IConvertible_ToSingle, (Int16 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B89990, double, Int16_System_IConvertible_ToDouble, (Int16 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B899E0, Decimal, Int16_System_IConvertible_ToDecimal, (Int16 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B89AB0, DateTime, Int16_System_IConvertible_ToDateTime, (Int16 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02A80, Int16_System_IConvertible_ToDateTime__MethodInfo); +DO_APP_FUNC(0x01B89B40, Object *, Int16_System_IConvertible_ToType, (Int16 * __this, Type * type, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B89BE0, int32_t, Int32_CompareTo, (Int32 * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02A70, Int32_CompareTo__MethodInfo); +DO_APP_FUNC(0x00C0F700, int32_t, Int32_CompareTo_1, (Int32 * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x01B89CD0, bool, Int32_Equals, (Int32 * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x00C0F590, bool, Int32_Equals_1, (Int32 * __this, int32_t obj, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, Int32_GetHashCode, (Int32 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B89D60, String *, Int32_ToString, (Int32 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B89E00, String *, Int32_ToString_1, (Int32 * __this, String * format, MethodInfo * method)); +DO_APP_FUNC(0x01B89EC0, String *, Int32_ToString_2, (Int32 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B89F70, String *, Int32_ToString_3, (Int32 * __this, String * format, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B8A040, bool, Int32_TryFormat, (Int32 * __this, Span_1_Char_ destination, int32_t * charsWritten, ReadOnlySpan_1_Char_ format, IFormatProvider * provider, MethodInfo * method)); DO_APP_FUNC(0x01B8A0F0, int32_t, Int32_Parse, (String * s, MethodInfo * method)); DO_APP_FUNC(0x01B8A1B0, int32_t, Int32_Parse_1, (String * s, NumberStyles__Enum style, MethodInfo * method)); DO_APP_FUNC(0x01B8A280, int32_t, Int32_Parse_2, (String * s, IFormatProvider * provider, MethodInfo * method)); DO_APP_FUNC(0x01B8A350, int32_t, Int32_Parse_3, (String * s, NumberStyles__Enum style, IFormatProvider * provider, MethodInfo * method)); DO_APP_FUNC(0x01B8A430, int32_t, Int32_Parse_4, (ReadOnlySpan_1_Char_ s, NumberStyles__Enum style, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B8A4C0, bool, Int32_TryParse, (String * s, int32_t result, MethodInfo * method)); -DO_APP_FUNC(0x01B8A5A0, bool, Int32_TryParse_1, (String * s, NumberStyles__Enum style, IFormatProvider * provider, int32_t result, MethodInfo * method)); -DO_APP_FUNC(0x01B8A6A0, bool, Int32_TryParse_2, (ReadOnlySpan_1_Char_ s, NumberStyles__Enum style, IFormatProvider * provider, int32_t result, MethodInfo * method)); -DO_APP_FUNC(0x01B8A750, TypeCode__Enum, Int32_GetTypeCode, (Int32__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B8A760, bool, Int32_System_IConvertible_ToBoolean, (Int32__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B8A7B0, uint16_t, Int32_System_IConvertible_ToChar, (Int32__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B8A840, int8_t, Int32_System_IConvertible_ToSByte, (Int32__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B8A8D0, uint8_t, Int32_System_IConvertible_ToByte, (Int32__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B8A960, int16_t, Int32_System_IConvertible_ToInt16, (Int32__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B8A9F0, uint16_t, Int32_System_IConvertible_ToUInt16, (Int32__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, Int32_System_IConvertible_ToInt32, (Int32__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B8AA80, uint32_t, Int32_System_IConvertible_ToUInt32, (Int32__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B8AB10, int64_t, Int32_System_IConvertible_ToInt64, (Int32__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B8AB60, uint64_t, Int32_System_IConvertible_ToUInt64, (Int32__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B8ABF0, float, Int32_System_IConvertible_ToSingle, (Int32__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B8AC40, double, Int32_System_IConvertible_ToDouble, (Int32__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B8AC90, Decimal, Int32_System_IConvertible_ToDecimal, (Int32__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B8AD50, DateTime, Int32_System_IConvertible_ToDateTime, (Int32__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B8ADE0, Object *, Int32_System_IConvertible_ToType, (Int32__Boxed * __this, Type * type, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B8AE80, int32_t, Int64_CompareTo, (Int64__Boxed * __this, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x01B8AF70, int32_t, Int64_CompareTo_1, (Int64__Boxed * __this, int64_t value, MethodInfo * method)); -DO_APP_FUNC(0x01B8AF90, bool, Int64_Equals, (Int64__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x00A9A720, bool, Int64_Equals_1, (Int64__Boxed * __this, int64_t obj, MethodInfo * method)); -DO_APP_FUNC(0x01B8B020, int32_t, Int64_GetHashCode, (Int64__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B8B030, String *, Int64_ToString, (Int64__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B8B0D0, String *, Int64_ToString_1, (Int64__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B8B180, String *, Int64_ToString_2, (Int64__Boxed * __this, String * format, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B8B250, bool, Int64_TryFormat, (Int64__Boxed * __this, Span_1_Char_ destination, int32_t charsWritten, ReadOnlySpan_1_Char_ format, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B8A4C0, bool, Int32_TryParse, (String * s, int32_t * result, MethodInfo * method)); +DO_APP_FUNC(0x01B8A5A0, bool, Int32_TryParse_1, (String * s, NumberStyles__Enum style, IFormatProvider * provider, int32_t * result, MethodInfo * method)); +DO_APP_FUNC(0x01B8A6A0, bool, Int32_TryParse_2, (ReadOnlySpan_1_Char_ s, NumberStyles__Enum style, IFormatProvider * provider, int32_t * result, MethodInfo * method)); +DO_APP_FUNC(0x01B8A750, TypeCode__Enum, Int32_GetTypeCode, (Int32 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B8A760, bool, Int32_System_IConvertible_ToBoolean, (Int32 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B8A7B0, uint16_t, Int32_System_IConvertible_ToChar, (Int32 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B8A840, int8_t, Int32_System_IConvertible_ToSByte, (Int32 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B8A8D0, uint8_t, Int32_System_IConvertible_ToByte, (Int32 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B8A960, int16_t, Int32_System_IConvertible_ToInt16, (Int32 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B8A9F0, uint16_t, Int32_System_IConvertible_ToUInt16, (Int32 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, Int32_System_IConvertible_ToInt32, (Int32 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B8AA80, uint32_t, Int32_System_IConvertible_ToUInt32, (Int32 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B8AB10, int64_t, Int32_System_IConvertible_ToInt64, (Int32 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B8AB60, uint64_t, Int32_System_IConvertible_ToUInt64, (Int32 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B8ABF0, float, Int32_System_IConvertible_ToSingle, (Int32 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B8AC40, double, Int32_System_IConvertible_ToDouble, (Int32 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B8AC90, Decimal, Int32_System_IConvertible_ToDecimal, (Int32 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B8AD50, DateTime, Int32_System_IConvertible_ToDateTime, (Int32 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02A68, Int32_System_IConvertible_ToDateTime__MethodInfo); +DO_APP_FUNC(0x01B8ADE0, Object *, Int32_System_IConvertible_ToType, (Int32 * __this, Type * type, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B8AE80, int32_t, Int64_CompareTo, (Int64 * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02A58, Int64_CompareTo__MethodInfo); +DO_APP_FUNC(0x01B8AF70, int32_t, Int64_CompareTo_1, (Int64 * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC(0x01B8AF90, bool, Int64_Equals, (Int64 * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x00A9A720, bool, Int64_Equals_1, (Int64 * __this, int64_t obj, MethodInfo * method)); +DO_APP_FUNC(0x01B8B020, int32_t, Int64_GetHashCode, (Int64 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B8B030, String *, Int64_ToString, (Int64 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B8B0D0, String *, Int64_ToString_1, (Int64 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B8B180, String *, Int64_ToString_2, (Int64 * __this, String * format, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B8B250, bool, Int64_TryFormat, (Int64 * __this, Span_1_Char_ destination, int32_t * charsWritten, ReadOnlySpan_1_Char_ format, IFormatProvider * provider, MethodInfo * method)); DO_APP_FUNC(0x01B8B300, int64_t, Int64_Parse, (String * s, MethodInfo * method)); DO_APP_FUNC(0x01B8B3C0, int64_t, Int64_Parse_1, (String * s, IFormatProvider * provider, MethodInfo * method)); DO_APP_FUNC(0x01B8B490, int64_t, Int64_Parse_2, (String * s, NumberStyles__Enum style, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B8B570, bool, Int64_TryParse, (String * s, int64_t result, MethodInfo * method)); -DO_APP_FUNC(0x01B8B650, bool, Int64_TryParse_1, (String * s, NumberStyles__Enum style, IFormatProvider * provider, int64_t result, MethodInfo * method)); -DO_APP_FUNC(0x01B8B750, TypeCode__Enum, Int64_GetTypeCode, (Int64__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B8B760, bool, Int64_System_IConvertible_ToBoolean, (Int64__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B8B7B0, uint16_t, Int64_System_IConvertible_ToChar, (Int64__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B8B840, int8_t, Int64_System_IConvertible_ToSByte, (Int64__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B8B8D0, uint8_t, Int64_System_IConvertible_ToByte, (Int64__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B8B960, int16_t, Int64_System_IConvertible_ToInt16, (Int64__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B8B9F0, uint16_t, Int64_System_IConvertible_ToUInt16, (Int64__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B8BA80, int32_t, Int64_System_IConvertible_ToInt32, (Int64__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B8BB20, uint32_t, Int64_System_IConvertible_ToUInt32, (Int64__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x00471910, int64_t, Int64_System_IConvertible_ToInt64, (Int64__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B8BBB0, uint64_t, Int64_System_IConvertible_ToUInt64, (Int64__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B8BC40, float, Int64_System_IConvertible_ToSingle, (Int64__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B8BC90, double, Int64_System_IConvertible_ToDouble, (Int64__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B8BCE0, Decimal, Int64_System_IConvertible_ToDecimal, (Int64__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B8BDB0, DateTime, Int64_System_IConvertible_ToDateTime, (Int64__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B8BE40, Object *, Int64_System_IConvertible_ToType, (Int64__Boxed * __this, Type * type, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B8B570, bool, Int64_TryParse, (String * s, int64_t * result, MethodInfo * method)); +DO_APP_FUNC(0x01B8B650, bool, Int64_TryParse_1, (String * s, NumberStyles__Enum style, IFormatProvider * provider, int64_t * result, MethodInfo * method)); +DO_APP_FUNC(0x01B8B750, TypeCode__Enum, Int64_GetTypeCode, (Int64 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B8B760, bool, Int64_System_IConvertible_ToBoolean, (Int64 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B8B7B0, uint16_t, Int64_System_IConvertible_ToChar, (Int64 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B8B840, int8_t, Int64_System_IConvertible_ToSByte, (Int64 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B8B8D0, uint8_t, Int64_System_IConvertible_ToByte, (Int64 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B8B960, int16_t, Int64_System_IConvertible_ToInt16, (Int64 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B8B9F0, uint16_t, Int64_System_IConvertible_ToUInt16, (Int64 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B8BA80, int32_t, Int64_System_IConvertible_ToInt32, (Int64 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B8BB20, uint32_t, Int64_System_IConvertible_ToUInt32, (Int64 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x00471910, int64_t, Int64_System_IConvertible_ToInt64, (Int64 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B8BBB0, uint64_t, Int64_System_IConvertible_ToUInt64, (Int64 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B8BC40, float, Int64_System_IConvertible_ToSingle, (Int64 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B8BC90, double, Int64_System_IConvertible_ToDouble, (Int64 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B8BCE0, Decimal, Int64_System_IConvertible_ToDecimal, (Int64 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01B8BDB0, DateTime, Int64_System_IConvertible_ToDateTime, (Int64 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02A50, Int64_System_IConvertible_ToDateTime__MethodInfo); +DO_APP_FUNC(0x01B8BE40, Object *, Int64_System_IConvertible_ToType, (Int64 * __this, Type * type, IFormatProvider * provider, MethodInfo * method)); DO_APP_FUNC(0x01B8BEE0, void, InvalidCastException__ctor, (InvalidCastException * __this, MethodInfo * method)); DO_APP_FUNC(0x01B8BF30, void, InvalidCastException__ctor_1, (InvalidCastException * __this, String * message, MethodInfo * method)); DO_APP_FUNC(0x01B8BF50, void, InvalidCastException__ctor_2, (InvalidCastException * __this, String * message, Exception * innerException, MethodInfo * method)); @@ -2153,11 +2340,13 @@ DO_APP_FUNC(0x003BCD60, void, LazyHelper__ctor, (LazyHelper * __this, LazyState_ DO_APP_FUNC(0x01B8C1A0, void, LazyHelper__ctor_1, (LazyHelper * __this, LazyThreadSafetyMode__Enum mode, Exception * exception, MethodInfo * method)); DO_APP_FUNC(0x01B8C300, void, LazyHelper_ThrowException, (LazyHelper * __this, MethodInfo * method)); DO_APP_FUNC(0x01B8C320, LazyHelper *, LazyHelper_Create, (LazyThreadSafetyMode__Enum mode, bool useDefaultConstructor, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02A18, LazyHelper_Create__MethodInfo); DO_APP_FUNC(0x01B8C4D0, Object *, LazyHelper_CreateViaDefaultConstructor, (Type * type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02A10, LazyHelper_CreateViaDefaultConstructor__MethodInfo); DO_APP_FUNC(0x01B8C550, void, LazyHelper__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01B8C850, int32_t, Marvin_ComputeHash32, (ReadOnlySpan_1_Byte_ data, uint64_t seed, MethodInfo * method)); -DO_APP_FUNC(0x01B8C8E0, int32_t, Marvin_ComputeHash32_1, (uint8_t data, int32_t count, uint64_t seed, MethodInfo * method)); -DO_APP_FUNC(0x01B8CDD0, void, Marvin_Block, (uint32_t rp0, uint32_t rp1, MethodInfo * method)); +DO_APP_FUNC(0x01B8C8E0, int32_t, Marvin_ComputeHash32_1, (uint8_t * data, int32_t count, uint64_t seed, MethodInfo * method)); +DO_APP_FUNC(0x01B8CDD0, void, Marvin_Block, (uint32_t * rp0, uint32_t * rp1, MethodInfo * method)); DO_APP_FUNC(0x01B8CE80, uint32_t, Marvin__rotl, (uint32_t value, int32_t shift, MethodInfo * method)); DO_APP_FUNC(0x01B8CEA0, uint64_t, Marvin_get_DefaultSeed, (MethodInfo * method)); DO_APP_FUNC(0x01B8CF00, uint64_t, Marvin_GenerateSeed, (MethodInfo * method)); @@ -2165,7 +2354,8 @@ DO_APP_FUNC(0x01B8CF10, void, Marvin__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01B8CF50, int32_t, Math_Abs, (int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01B8CFA0, int64_t, Math_Abs_1, (int64_t value, MethodInfo * method)); DO_APP_FUNC(0x01B8D000, void, Math_ThrowAbsOverflow, (MethodInfo * method)); -DO_APP_FUNC(0x01B8D060, int32_t, Math_DivRem, (int32_t a, int32_t b, int32_t result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02A28, Math_ThrowAbsOverflow__MethodInfo); +DO_APP_FUNC(0x01B8D060, int32_t, Math_DivRem, (int32_t a, int32_t b, int32_t * result, MethodInfo * method)); DO_APP_FUNC(0x01B8D080, int32_t, Math_Clamp, (int32_t value, int32_t min, int32_t max, MethodInfo * method)); DO_APP_FUNC(0x01B8D110, double, Math_Log, (double a, double newBase, MethodInfo * method)); DO_APP_FUNC(0x01B8D200, uint8_t, Math_Max, (uint8_t val1, uint8_t val2, MethodInfo * method)); @@ -2185,10 +2375,13 @@ DO_APP_FUNC(0x01B8D490, double, Math_Round_1, (double a, MethodInfo * method)); DO_APP_FUNC(0x01B8D4A0, double, Math_Round_2, (double value, int32_t digits, MethodInfo * method)); DO_APP_FUNC(0x01B8D500, double, Math_Round_3, (double value, MidpointRounding__Enum mode, MethodInfo * method)); DO_APP_FUNC(0x01B8D560, double, Math_Round_4, (double value, int32_t digits, MidpointRounding__Enum mode, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D029D8, Math_Round_4__MethodInfo); DO_APP_FUNC(0x01B8D810, int32_t, Math_Sign, (double value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02A08, Math_Sign__MethodInfo); DO_APP_FUNC(0x01B8D8A0, int32_t, Math_Sign_1, (int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01B8D8B0, int32_t, Math_Sign_2, (int64_t value, MethodInfo * method)); DO_APP_FUNC(0x01B8D8D0, int32_t, Math_Sign_3, (float value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02A00, Math_Sign_3__MethodInfo); DO_APP_FUNC(0x01B8D960, double, Math_Abs_2, (double value, MethodInfo * method)); DO_APP_FUNC(0x01B8D970, float, Math_Abs_3, (float value, MethodInfo * method)); DO_APP_FUNC(0x01B8D980, double, Math_Acos, (double d, MethodInfo * method)); @@ -2217,6 +2410,7 @@ DO_APP_FUNC(0x01B8DE70, bool, MemoryExtensions_EqualsOrdinalIgnoreCase, (ReadOnl DO_APP_FUNC(0x01B8DF20, bool, MemoryExtensions_Contains, (ReadOnlySpan_1_Char_ source, uint16_t value, MethodInfo * method)); DO_APP_FUNC(0x01B8DFA0, int32_t, MemoryExtensions_ToUpperInvariant, (ReadOnlySpan_1_Char_ source, Span_1_Char_ destination, MethodInfo * method)); DO_APP_FUNC(0x01B8E240, bool, MemoryExtensions_EndsWith, (ReadOnlySpan_1_Char_ span, ReadOnlySpan_1_Char_ value, StringComparison__Enum comparisonType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02990, MemoryExtensions_EndsWith__MethodInfo); DO_APP_FUNC(0x01B8E530, ReadOnlySpan_1_Char_, MemoryExtensions_AsSpan, (String * text, MethodInfo * method)); DO_APP_FUNC(0x01B8E5B0, ReadOnlySpan_1_Char_, MemoryExtensions_AsSpan_1, (String * text, int32_t start, MethodInfo * method)); DO_APP_FUNC(0x01B8E640, ReadOnlySpan_1_Char_, MemoryExtensions_AsSpan_2, (String * text, int32_t start, int32_t length, MethodInfo * method)); @@ -2247,101 +2441,105 @@ DO_APP_FUNC(0x01B8F0B0, void, NullReferenceException__ctor, (NullReferenceExcept DO_APP_FUNC(0x01B8F100, void, NullReferenceException__ctor_1, (NullReferenceException * __this, String * message, MethodInfo * method)); DO_APP_FUNC(0x01980BF0, void, NullReferenceException__ctor_2, (NullReferenceException * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x01B8F120, Type *, Nullable_GetUnderlyingType, (Type * nullableType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02988, Nullable_GetUnderlyingType__MethodInfo); DO_APP_FUNC(0x01B8F290, String *, Number_FormatDecimal, (Decimal value, ReadOnlySpan_1_Char_ format, NumberFormatInfo * info, MethodInfo * method)); -DO_APP_FUNC(0x01B8F4A0, bool, Number_TryFormatDecimal, (Decimal value, ReadOnlySpan_1_Char_ format, NumberFormatInfo * info, Span_1_Char_ destination, int32_t charsWritten, MethodInfo * method)); -DO_APP_FUNC(0x01B8F6B0, void, Number_DecimalToNumber, (Decimal value, Number_NumberBuffer number, MethodInfo * method)); +DO_APP_FUNC(0x01B8F4A0, bool, Number_TryFormatDecimal, (Decimal value, ReadOnlySpan_1_Char_ format, NumberFormatInfo * info, Span_1_Char_ destination, int32_t * charsWritten, MethodInfo * method)); +DO_APP_FUNC(0x01B8F6B0, void, Number_DecimalToNumber, (Decimal value, Number_NumberBuffer * number, MethodInfo * method)); DO_APP_FUNC(0x01B8F9B0, String *, Number_FormatDouble, (double value, String * format, NumberFormatInfo * info, MethodInfo * method)); -DO_APP_FUNC(0x01B8FB40, bool, Number_TryFormatDouble, (double value, ReadOnlySpan_1_Char_ format, NumberFormatInfo * info, Span_1_Char_ destination, int32_t charsWritten, MethodInfo * method)); -DO_APP_FUNC(0x01B8FCC0, String *, Number_FormatDouble_1, (ValueStringBuilder sb, double value, ReadOnlySpan_1_Char_ format, NumberFormatInfo * info, MethodInfo * method)); +DO_APP_FUNC(0x01B8FB40, bool, Number_TryFormatDouble, (double value, ReadOnlySpan_1_Char_ format, NumberFormatInfo * info, Span_1_Char_ destination, int32_t * charsWritten, MethodInfo * method)); +DO_APP_FUNC(0x01B8FCC0, String *, Number_FormatDouble_1, (ValueStringBuilder * sb, double value, ReadOnlySpan_1_Char_ format, NumberFormatInfo * info, MethodInfo * method)); DO_APP_FUNC(0x01B8FFA0, String *, Number_FormatSingle, (float value, String * format, NumberFormatInfo * info, MethodInfo * method)); -DO_APP_FUNC(0x01B90130, bool, Number_TryFormatSingle, (float value, ReadOnlySpan_1_Char_ format, NumberFormatInfo * info, Span_1_Char_ destination, int32_t charsWritten, MethodInfo * method)); -DO_APP_FUNC(0x01B902B0, String *, Number_FormatSingle_1, (ValueStringBuilder sb, float value, ReadOnlySpan_1_Char_ format, NumberFormatInfo * info, MethodInfo * method)); -DO_APP_FUNC(0x01B905A0, bool, Number_TryCopyTo, (String * source, Span_1_Char_ destination, int32_t charsWritten, MethodInfo * method)); +DO_APP_FUNC(0x01B90130, bool, Number_TryFormatSingle, (float value, ReadOnlySpan_1_Char_ format, NumberFormatInfo * info, Span_1_Char_ destination, int32_t * charsWritten, MethodInfo * method)); +DO_APP_FUNC(0x01B902B0, String *, Number_FormatSingle_1, (ValueStringBuilder * sb, float value, ReadOnlySpan_1_Char_ format, NumberFormatInfo * info, MethodInfo * method)); +DO_APP_FUNC(0x01B905A0, bool, Number_TryCopyTo, (String * source, Span_1_Char_ destination, int32_t * charsWritten, MethodInfo * method)); DO_APP_FUNC(0x01B90710, String *, Number_FormatInt32, (int32_t value, ReadOnlySpan_1_Char_ format, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B90A30, bool, Number_TryFormatInt32, (int32_t value, ReadOnlySpan_1_Char_ format, IFormatProvider * provider, Span_1_Char_ destination, int32_t charsWritten, MethodInfo * method)); +DO_APP_FUNC(0x01B90A30, bool, Number_TryFormatInt32, (int32_t value, ReadOnlySpan_1_Char_ format, IFormatProvider * provider, Span_1_Char_ destination, int32_t * charsWritten, MethodInfo * method)); DO_APP_FUNC(0x01B90DD0, String *, Number_FormatUInt32, (uint32_t value, ReadOnlySpan_1_Char_ format, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B910A0, bool, Number_TryFormatUInt32, (uint32_t value, ReadOnlySpan_1_Char_ format, IFormatProvider * provider, Span_1_Char_ destination, int32_t charsWritten, MethodInfo * method)); +DO_APP_FUNC(0x01B910A0, bool, Number_TryFormatUInt32, (uint32_t value, ReadOnlySpan_1_Char_ format, IFormatProvider * provider, Span_1_Char_ destination, int32_t * charsWritten, MethodInfo * method)); DO_APP_FUNC(0x01B913B0, String *, Number_FormatInt64, (int64_t value, ReadOnlySpan_1_Char_ format, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B916D0, bool, Number_TryFormatInt64, (int64_t value, ReadOnlySpan_1_Char_ format, IFormatProvider * provider, Span_1_Char_ destination, int32_t charsWritten, MethodInfo * method)); +DO_APP_FUNC(0x01B916D0, bool, Number_TryFormatInt64, (int64_t value, ReadOnlySpan_1_Char_ format, IFormatProvider * provider, Span_1_Char_ destination, int32_t * charsWritten, MethodInfo * method)); DO_APP_FUNC(0x01B91A70, String *, Number_FormatUInt64, (uint64_t value, ReadOnlySpan_1_Char_ format, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01B91D40, bool, Number_TryFormatUInt64, (uint64_t value, ReadOnlySpan_1_Char_ format, IFormatProvider * provider, Span_1_Char_ destination, int32_t charsWritten, MethodInfo * method)); -DO_APP_FUNC(0x01B92060, void, Number_Int32ToNumber, (int32_t value, Number_NumberBuffer number, MethodInfo * method)); +DO_APP_FUNC(0x01B91D40, bool, Number_TryFormatUInt64, (uint64_t value, ReadOnlySpan_1_Char_ format, IFormatProvider * provider, Span_1_Char_ destination, int32_t * charsWritten, MethodInfo * method)); +DO_APP_FUNC(0x01B92060, void, Number_Int32ToNumber, (int32_t value, Number_NumberBuffer * number, MethodInfo * method)); DO_APP_FUNC(0x01B92160, String *, Number_NegativeInt32ToDecStr, (int32_t value, int32_t digits, String * sNegative, MethodInfo * method)); -DO_APP_FUNC(0x01B922D0, bool, Number_TryNegativeInt32ToDecStr, (int32_t value, int32_t digits, String * sNegative, Span_1_Char_ destination, int32_t charsWritten, MethodInfo * method)); +DO_APP_FUNC(0x01B922D0, bool, Number_TryNegativeInt32ToDecStr, (int32_t value, int32_t digits, String * sNegative, Span_1_Char_ destination, int32_t * charsWritten, MethodInfo * method)); DO_APP_FUNC(0x01B92470, String *, Number_Int32ToHexStr, (int32_t value, uint16_t hexBase, int32_t digits, MethodInfo * method)); -DO_APP_FUNC(0x01B92570, bool, Number_TryInt32ToHexStr, (int32_t value, uint16_t hexBase, int32_t digits, Span_1_Char_ destination, int32_t charsWritten, MethodInfo * method)); +DO_APP_FUNC(0x01B92570, bool, Number_TryInt32ToHexStr, (int32_t value, uint16_t hexBase, int32_t digits, Span_1_Char_ destination, int32_t * charsWritten, MethodInfo * method)); DO_APP_FUNC(0x01B926A0, uint16_t *, Number_Int32ToHexChars, (uint16_t * buffer, uint32_t value, int32_t hexBase, int32_t digits, MethodInfo * method)); -DO_APP_FUNC(0x01B926E0, void, Number_UInt32ToNumber, (uint32_t value, Number_NumberBuffer number, MethodInfo * method)); +DO_APP_FUNC(0x01B926E0, void, Number_UInt32ToNumber, (uint32_t value, Number_NumberBuffer * number, MethodInfo * method)); DO_APP_FUNC(0x01B927D0, uint16_t *, Number_UInt32ToDecChars, (uint16_t * bufferEnd, uint32_t value, int32_t digits, MethodInfo * method)); DO_APP_FUNC(0x01B92830, String *, Number_UInt32ToDecStr, (uint32_t value, int32_t digits, MethodInfo * method)); -DO_APP_FUNC(0x01B92960, bool, Number_TryUInt32ToDecStr, (uint32_t value, int32_t digits, Span_1_Char_ destination, int32_t charsWritten, MethodInfo * method)); -DO_APP_FUNC(0x01B92AD0, void, Number_Int64ToNumber, (int64_t input, Number_NumberBuffer number, MethodInfo * method)); +DO_APP_FUNC(0x01B92960, bool, Number_TryUInt32ToDecStr, (uint32_t value, int32_t digits, Span_1_Char_ destination, int32_t * charsWritten, MethodInfo * method)); +DO_APP_FUNC(0x01B92AD0, void, Number_Int64ToNumber, (int64_t input, Number_NumberBuffer * number, MethodInfo * method)); DO_APP_FUNC(0x01B92CB0, String *, Number_NegativeInt64ToDecStr, (int64_t input, int32_t digits, String * sNegative, MethodInfo * method)); -DO_APP_FUNC(0x01B92EE0, bool, Number_TryNegativeInt64ToDecStr, (int64_t input, int32_t digits, String * sNegative, Span_1_Char_ destination, int32_t charsWritten, MethodInfo * method)); +DO_APP_FUNC(0x01B92EE0, bool, Number_TryNegativeInt64ToDecStr, (int64_t input, int32_t digits, String * sNegative, Span_1_Char_ destination, int32_t * charsWritten, MethodInfo * method)); DO_APP_FUNC(0x01B93150, String *, Number_Int64ToHexStr, (int64_t value, uint16_t hexBase, int32_t digits, MethodInfo * method)); -DO_APP_FUNC(0x01B93320, bool, Number_TryInt64ToHexStr, (int64_t value, uint16_t hexBase, int32_t digits, Span_1_Char_ destination, int32_t charsWritten, MethodInfo * method)); -DO_APP_FUNC(0x01B93520, void, Number_UInt64ToNumber, (uint64_t value, Number_NumberBuffer number, MethodInfo * method)); +DO_APP_FUNC(0x01B93320, bool, Number_TryInt64ToHexStr, (int64_t value, uint16_t hexBase, int32_t digits, Span_1_Char_ destination, int32_t * charsWritten, MethodInfo * method)); +DO_APP_FUNC(0x01B93520, void, Number_UInt64ToNumber, (uint64_t value, Number_NumberBuffer * number, MethodInfo * method)); DO_APP_FUNC(0x01B936E0, String *, Number_UInt64ToDecStr, (uint64_t value, int32_t digits, MethodInfo * method)); -DO_APP_FUNC(0x01B938C0, bool, Number_TryUInt64ToDecStr, (uint64_t value, int32_t digits, Span_1_Char_ destination, int32_t charsWritten, MethodInfo * method)); -DO_APP_FUNC(0x01B93AC0, uint16_t, Number_ParseFormatSpecifier, (ReadOnlySpan_1_Char_ format, int32_t digits, MethodInfo * method)); -DO_APP_FUNC(0x01B93C60, void, Number_NumberToString, (ValueStringBuilder sb, Number_NumberBuffer number, uint16_t format, int32_t nMaxDigits, NumberFormatInfo * info, bool isDecimal, MethodInfo * method)); -DO_APP_FUNC(0x01B942F0, void, Number_NumberToStringFormat, (ValueStringBuilder sb, Number_NumberBuffer number, ReadOnlySpan_1_Char_ format, NumberFormatInfo * info, MethodInfo * method)); -DO_APP_FUNC(0x01B95130, void, Number_FormatCurrency, (ValueStringBuilder sb, Number_NumberBuffer number, int32_t nMinDigits, int32_t nMaxDigits, NumberFormatInfo * info, MethodInfo * method)); -DO_APP_FUNC(0x01B95390, void, Number_FormatFixed, (ValueStringBuilder sb, Number_NumberBuffer number, int32_t nMinDigits, int32_t nMaxDigits, NumberFormatInfo * info, Int32__Array * groupDigits, String * sDecimal, String * sGroup, MethodInfo * method)); -DO_APP_FUNC(0x01B95880, void, Number_FormatNumber, (ValueStringBuilder sb, Number_NumberBuffer number, int32_t nMinDigits, int32_t nMaxDigits, NumberFormatInfo * info, MethodInfo * method)); -DO_APP_FUNC(0x01B95A70, void, Number_FormatScientific, (ValueStringBuilder sb, Number_NumberBuffer number, int32_t nMinDigits, int32_t nMaxDigits, NumberFormatInfo * info, uint16_t expChar, MethodInfo * method)); -DO_APP_FUNC(0x01B95BA0, void, Number_FormatExponent, (ValueStringBuilder sb, NumberFormatInfo * info, int32_t value, uint16_t expChar, int32_t minDigits, bool positiveSign, MethodInfo * method)); -DO_APP_FUNC(0x01B95D80, void, Number_FormatGeneral, (ValueStringBuilder sb, Number_NumberBuffer number, int32_t nMinDigits, int32_t nMaxDigits, NumberFormatInfo * info, uint16_t expChar, bool bSuppressScientific, MethodInfo * method)); -DO_APP_FUNC(0x01B95FF0, void, Number_FormatPercent, (ValueStringBuilder sb, Number_NumberBuffer number, int32_t nMinDigits, int32_t nMaxDigits, NumberFormatInfo * info, MethodInfo * method)); -DO_APP_FUNC(0x01B96260, void, Number_RoundNumber, (Number_NumberBuffer number, int32_t pos, MethodInfo * method)); +DO_APP_FUNC(0x01B938C0, bool, Number_TryUInt64ToDecStr, (uint64_t value, int32_t digits, Span_1_Char_ destination, int32_t * charsWritten, MethodInfo * method)); +DO_APP_FUNC(0x01B93AC0, uint16_t, Number_ParseFormatSpecifier, (ReadOnlySpan_1_Char_ format, int32_t * digits, MethodInfo * method)); +DO_APP_FUNC(0x01B93C60, void, Number_NumberToString, (ValueStringBuilder * sb, Number_NumberBuffer * number, uint16_t format, int32_t nMaxDigits, NumberFormatInfo * info, bool isDecimal, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02950, Number_NumberToString__MethodInfo); +DO_APP_FUNC(0x01B942F0, void, Number_NumberToStringFormat, (ValueStringBuilder * sb, Number_NumberBuffer * number, ReadOnlySpan_1_Char_ format, NumberFormatInfo * info, MethodInfo * method)); +DO_APP_FUNC(0x01B95130, void, Number_FormatCurrency, (ValueStringBuilder * sb, Number_NumberBuffer * number, int32_t nMinDigits, int32_t nMaxDigits, NumberFormatInfo * info, MethodInfo * method)); +DO_APP_FUNC(0x01B95390, void, Number_FormatFixed, (ValueStringBuilder * sb, Number_NumberBuffer * number, int32_t nMinDigits, int32_t nMaxDigits, NumberFormatInfo * info, Int32__Array * groupDigits, String * sDecimal, String * sGroup, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02948, Number_FormatFixed__MethodInfo); +DO_APP_FUNC(0x01B95880, void, Number_FormatNumber, (ValueStringBuilder * sb, Number_NumberBuffer * number, int32_t nMinDigits, int32_t nMaxDigits, NumberFormatInfo * info, MethodInfo * method)); +DO_APP_FUNC(0x01B95A70, void, Number_FormatScientific, (ValueStringBuilder * sb, Number_NumberBuffer * number, int32_t nMinDigits, int32_t nMaxDigits, NumberFormatInfo * info, uint16_t expChar, MethodInfo * method)); +DO_APP_FUNC(0x01B95BA0, void, Number_FormatExponent, (ValueStringBuilder * sb, NumberFormatInfo * info, int32_t value, uint16_t expChar, int32_t minDigits, bool positiveSign, MethodInfo * method)); +DO_APP_FUNC(0x01B95D80, void, Number_FormatGeneral, (ValueStringBuilder * sb, Number_NumberBuffer * number, int32_t nMinDigits, int32_t nMaxDigits, NumberFormatInfo * info, uint16_t expChar, bool bSuppressScientific, MethodInfo * method)); +DO_APP_FUNC(0x01B95FF0, void, Number_FormatPercent, (ValueStringBuilder * sb, Number_NumberBuffer * number, int32_t nMinDigits, int32_t nMaxDigits, NumberFormatInfo * info, MethodInfo * method)); +DO_APP_FUNC(0x01B96260, void, Number_RoundNumber, (Number_NumberBuffer * number, int32_t pos, MethodInfo * method)); DO_APP_FUNC(0x01B96330, int32_t, Number_FindSection, (ReadOnlySpan_1_Char_ format, int32_t section, MethodInfo * method)); DO_APP_FUNC(0x00959BB0, uint32_t, Number_Low32, (uint64_t value, MethodInfo * method)); DO_APP_FUNC(0x01B96460, uint32_t, Number_High32, (uint64_t value, MethodInfo * method)); -DO_APP_FUNC(0x01B96470, uint32_t, Number_Int64DivMod1E9, (uint64_t value, MethodInfo * method)); -DO_APP_FUNC(0x01B964C0, bool, Number_NumberToInt32, (Number_NumberBuffer number, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x01B96520, bool, Number_NumberToInt64, (Number_NumberBuffer number, int64_t value, MethodInfo * method)); -DO_APP_FUNC(0x01B96590, bool, Number_NumberToUInt32, (Number_NumberBuffer number, uint32_t value, MethodInfo * method)); -DO_APP_FUNC(0x01B965F0, bool, Number_NumberToUInt64, (Number_NumberBuffer number, uint64_t value, MethodInfo * method)); +DO_APP_FUNC(0x01B96470, uint32_t, Number_Int64DivMod1E9, (uint64_t * value, MethodInfo * method)); +DO_APP_FUNC(0x01B964C0, bool, Number_NumberToInt32, (Number_NumberBuffer * number, int32_t * value, MethodInfo * method)); +DO_APP_FUNC(0x01B96520, bool, Number_NumberToInt64, (Number_NumberBuffer * number, int64_t * value, MethodInfo * method)); +DO_APP_FUNC(0x01B96590, bool, Number_NumberToUInt32, (Number_NumberBuffer * number, uint32_t * value, MethodInfo * method)); +DO_APP_FUNC(0x01B965F0, bool, Number_NumberToUInt64, (Number_NumberBuffer * number, uint64_t * value, MethodInfo * method)); DO_APP_FUNC(0x01B96660, int32_t, Number_ParseInt32, (ReadOnlySpan_1_Char_ value, NumberStyles__Enum styles, NumberFormatInfo * info, MethodInfo * method)); DO_APP_FUNC(0x01B968A0, int64_t, Number_ParseInt64, (ReadOnlySpan_1_Char_ value, NumberStyles__Enum styles, NumberFormatInfo * info, MethodInfo * method)); DO_APP_FUNC(0x01B96AF0, uint32_t, Number_ParseUInt32, (ReadOnlySpan_1_Char_ value, NumberStyles__Enum styles, NumberFormatInfo * info, MethodInfo * method)); DO_APP_FUNC(0x01B96D30, uint64_t, Number_ParseUInt64, (ReadOnlySpan_1_Char_ value, NumberStyles__Enum styles, NumberFormatInfo * info, MethodInfo * method)); -DO_APP_FUNC(0x01B96F70, bool, Number_ParseNumber, (uint16_t * str, uint16_t * strEnd, NumberStyles__Enum styles, Number_NumberBuffer number, NumberFormatInfo * info, bool parseDecimal, MethodInfo * method)); -DO_APP_FUNC(0x01B97A70, bool, Number_TryParseInt32, (ReadOnlySpan_1_Char_ value, NumberStyles__Enum styles, NumberFormatInfo * info, int32_t result, MethodInfo * method)); -DO_APP_FUNC(0x01B97C50, bool, Number_TryParseInt32IntegerStyle, (ReadOnlySpan_1_Char_ value, NumberStyles__Enum styles, NumberFormatInfo * info, int32_t result, bool failureIsOverflow, MethodInfo * method)); -DO_APP_FUNC(0x01B982A0, bool, Number_TryParseInt64IntegerStyle, (ReadOnlySpan_1_Char_ value, NumberStyles__Enum styles, NumberFormatInfo * info, int64_t result, bool failureIsOverflow, MethodInfo * method)); -DO_APP_FUNC(0x01B98900, bool, Number_TryParseInt64, (ReadOnlySpan_1_Char_ value, NumberStyles__Enum styles, NumberFormatInfo * info, int64_t result, MethodInfo * method)); -DO_APP_FUNC(0x01B98AF0, bool, Number_TryParseUInt32, (ReadOnlySpan_1_Char_ value, NumberStyles__Enum styles, NumberFormatInfo * info, uint32_t result, MethodInfo * method)); -DO_APP_FUNC(0x01B98CE0, bool, Number_TryParseUInt32IntegerStyle, (ReadOnlySpan_1_Char_ value, NumberStyles__Enum styles, NumberFormatInfo * info, uint32_t result, bool failureIsOverflow, MethodInfo * method)); -DO_APP_FUNC(0x01B99300, bool, Number_TryParseUInt32HexNumberStyle, (ReadOnlySpan_1_Char_ value, NumberStyles__Enum styles, NumberFormatInfo * info, uint32_t result, bool failureIsOverflow, MethodInfo * method)); -DO_APP_FUNC(0x01B99650, bool, Number_TryParseUInt64, (ReadOnlySpan_1_Char_ value, NumberStyles__Enum styles, NumberFormatInfo * info, uint64_t result, MethodInfo * method)); -DO_APP_FUNC(0x01B99850, bool, Number_TryParseUInt64IntegerStyle, (ReadOnlySpan_1_Char_ value, NumberStyles__Enum styles, NumberFormatInfo * info, uint64_t result, bool failureIsOverflow, MethodInfo * method)); -DO_APP_FUNC(0x01B99E80, bool, Number_TryParseUInt64HexNumberStyle, (ReadOnlySpan_1_Char_ value, NumberStyles__Enum styles, NumberFormatInfo * info, uint64_t result, bool failureIsOverflow, MethodInfo * method)); +DO_APP_FUNC(0x01B96F70, bool, Number_ParseNumber, (uint16_t * * str, uint16_t * strEnd, NumberStyles__Enum styles, Number_NumberBuffer * number, NumberFormatInfo * info, bool parseDecimal, MethodInfo * method)); +DO_APP_FUNC(0x01B97A70, bool, Number_TryParseInt32, (ReadOnlySpan_1_Char_ value, NumberStyles__Enum styles, NumberFormatInfo * info, int32_t * result, MethodInfo * method)); +DO_APP_FUNC(0x01B97C50, bool, Number_TryParseInt32IntegerStyle, (ReadOnlySpan_1_Char_ value, NumberStyles__Enum styles, NumberFormatInfo * info, int32_t * result, bool * failureIsOverflow, MethodInfo * method)); +DO_APP_FUNC(0x01B982A0, bool, Number_TryParseInt64IntegerStyle, (ReadOnlySpan_1_Char_ value, NumberStyles__Enum styles, NumberFormatInfo * info, int64_t * result, bool * failureIsOverflow, MethodInfo * method)); +DO_APP_FUNC(0x01B98900, bool, Number_TryParseInt64, (ReadOnlySpan_1_Char_ value, NumberStyles__Enum styles, NumberFormatInfo * info, int64_t * result, MethodInfo * method)); +DO_APP_FUNC(0x01B98AF0, bool, Number_TryParseUInt32, (ReadOnlySpan_1_Char_ value, NumberStyles__Enum styles, NumberFormatInfo * info, uint32_t * result, MethodInfo * method)); +DO_APP_FUNC(0x01B98CE0, bool, Number_TryParseUInt32IntegerStyle, (ReadOnlySpan_1_Char_ value, NumberStyles__Enum styles, NumberFormatInfo * info, uint32_t * result, bool * failureIsOverflow, MethodInfo * method)); +DO_APP_FUNC(0x01B99300, bool, Number_TryParseUInt32HexNumberStyle, (ReadOnlySpan_1_Char_ value, NumberStyles__Enum styles, NumberFormatInfo * info, uint32_t * result, bool * failureIsOverflow, MethodInfo * method)); +DO_APP_FUNC(0x01B99650, bool, Number_TryParseUInt64, (ReadOnlySpan_1_Char_ value, NumberStyles__Enum styles, NumberFormatInfo * info, uint64_t * result, MethodInfo * method)); +DO_APP_FUNC(0x01B99850, bool, Number_TryParseUInt64IntegerStyle, (ReadOnlySpan_1_Char_ value, NumberStyles__Enum styles, NumberFormatInfo * info, uint64_t * result, bool * failureIsOverflow, MethodInfo * method)); +DO_APP_FUNC(0x01B99E80, bool, Number_TryParseUInt64HexNumberStyle, (ReadOnlySpan_1_Char_ value, NumberStyles__Enum styles, NumberFormatInfo * info, uint64_t * result, bool * failureIsOverflow, MethodInfo * method)); DO_APP_FUNC(0x01B9A1D0, Decimal, Number_ParseDecimal, (ReadOnlySpan_1_Char_ value, NumberStyles__Enum styles, NumberFormatInfo * info, MethodInfo * method)); -DO_APP_FUNC(0x01B9A300, bool, Number_NumberBufferToDecimal, (Number_NumberBuffer number, Decimal value, MethodInfo * method)); +DO_APP_FUNC(0x01B9A300, bool, Number_NumberBufferToDecimal, (Number_NumberBuffer * number, Decimal * value, MethodInfo * method)); DO_APP_FUNC(0x01B9A6B0, double, Number_ParseDouble, (ReadOnlySpan_1_Char_ value, NumberStyles__Enum styles, NumberFormatInfo * info, MethodInfo * method)); DO_APP_FUNC(0x01B9AB00, float, Number_ParseSingle, (ReadOnlySpan_1_Char_ value, NumberStyles__Enum styles, NumberFormatInfo * info, MethodInfo * method)); -DO_APP_FUNC(0x01B9AF90, bool, Number_TryParseDecimal, (ReadOnlySpan_1_Char_ value, NumberStyles__Enum styles, NumberFormatInfo * info, Decimal result, MethodInfo * method)); -DO_APP_FUNC(0x01B9B0B0, bool, Number_TryParseDouble, (ReadOnlySpan_1_Char_ value, NumberStyles__Enum styles, NumberFormatInfo * info, double result, MethodInfo * method)); -DO_APP_FUNC(0x01B9B240, bool, Number_TryParseSingle, (ReadOnlySpan_1_Char_ value, NumberStyles__Enum styles, NumberFormatInfo * info, float result, MethodInfo * method)); -DO_APP_FUNC(0x01B9B3E0, void, Number_StringToNumber, (ReadOnlySpan_1_Char_ value, NumberStyles__Enum styles, Number_NumberBuffer number, NumberFormatInfo * info, bool parseDecimal, MethodInfo * method)); -DO_APP_FUNC(0x01B9B560, bool, Number_TryStringToNumber, (ReadOnlySpan_1_Char_ value, NumberStyles__Enum styles, Number_NumberBuffer number, NumberFormatInfo * info, bool parseDecimal, MethodInfo * method)); +DO_APP_FUNC(0x01B9AF90, bool, Number_TryParseDecimal, (ReadOnlySpan_1_Char_ value, NumberStyles__Enum styles, NumberFormatInfo * info, Decimal * result, MethodInfo * method)); +DO_APP_FUNC(0x01B9B0B0, bool, Number_TryParseDouble, (ReadOnlySpan_1_Char_ value, NumberStyles__Enum styles, NumberFormatInfo * info, double * result, MethodInfo * method)); +DO_APP_FUNC(0x01B9B240, bool, Number_TryParseSingle, (ReadOnlySpan_1_Char_ value, NumberStyles__Enum styles, NumberFormatInfo * info, float * result, MethodInfo * method)); +DO_APP_FUNC(0x01B9B3E0, void, Number_StringToNumber, (ReadOnlySpan_1_Char_ value, NumberStyles__Enum styles, Number_NumberBuffer * number, NumberFormatInfo * info, bool parseDecimal, MethodInfo * method)); +DO_APP_FUNC(0x01B9B560, bool, Number_TryStringToNumber, (ReadOnlySpan_1_Char_ value, NumberStyles__Enum styles, Number_NumberBuffer * number, NumberFormatInfo * info, bool parseDecimal, MethodInfo * method)); DO_APP_FUNC(0x01B9B6D0, bool, Number_TrailingZeros, (ReadOnlySpan_1_Char_ value, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01B9B750, uint16_t *, Number_MatchChars, (uint16_t * p, uint16_t * pEnd, String * value, MethodInfo * method)); DO_APP_FUNC(0x01B9B7B0, bool, Number_IsWhite, (int32_t ch, MethodInfo * method)); DO_APP_FUNC(0x01B9B7D0, bool, Number_IsDigit, (int32_t ch, MethodInfo * method)); DO_APP_FUNC(0x01B9B7E0, void, Number_ThrowOverflowOrFormatException, (bool overflow, String * overflowResourceKey, MethodInfo * method)); -DO_APP_FUNC(0x01B9B880, bool, Number_NumberBufferToDouble, (Number_NumberBuffer number, double value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D028C0, Number_ThrowOverflowOrFormatException__MethodInfo); +DO_APP_FUNC(0x01B9B880, bool, Number_NumberBufferToDouble, (Number_NumberBuffer * number, double * value, MethodInfo * method)); DO_APP_FUNC(0x01B9B920, uint32_t, Number_DigitsToInt, (uint16_t * p, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x01B9B960, uint64_t, Number_Mul32x32To64, (uint32_t a, uint32_t b, MethodInfo * method)); -DO_APP_FUNC(0x01B9B970, uint64_t, Number_Mul64Lossy, (uint64_t a, uint64_t b, int32_t pexp, MethodInfo * method)); +DO_APP_FUNC(0x01B9B970, uint64_t, Number_Mul64Lossy, (uint64_t a, uint64_t b, int32_t * pexp, MethodInfo * method)); DO_APP_FUNC(0x01B9BA10, int32_t, Number_abs, (int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x01B9BA20, double, Number_NumberToDouble, (Number_NumberBuffer number, MethodInfo * method)); -DO_APP_FUNC(0x01B9C0A0, void, Number_DoubleToNumber, (double value, int32_t precision, Number_NumberBuffer number, MethodInfo * method)); +DO_APP_FUNC(0x01B9BA20, double, Number_NumberToDouble, (Number_NumberBuffer * number, MethodInfo * method)); +DO_APP_FUNC(0x01B9C0A0, void, Number_DoubleToNumber, (double value, int32_t precision, Number_NumberBuffer * number, MethodInfo * method)); DO_APP_FUNC(0x01B9C1E0, void, Number__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x01B9DB00, bool, Number_NumberBuffer_get_sign, (Number_NumberBuffer__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B9DB10, void, Number_NumberBuffer_set_sign, (Number_NumberBuffer__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x01B9DB20, uint16_t *, Number_NumberBuffer_get_digits, (Number_NumberBuffer__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B9DB00, bool, Number_NumberBuffer_get_sign, (Number_NumberBuffer * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B9DB10, void, Number_NumberBuffer_set_sign, (Number_NumberBuffer * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x01B9DB20, uint16_t *, Number_NumberBuffer_get_digits, (Number_NumberBuffer * __this, MethodInfo * method)); DO_APP_FUNC(0x01B9DB30, void, ObjectDisposedException__ctor, (ObjectDisposedException * __this, MethodInfo * method)); DO_APP_FUNC(0x01B9DB80, void, ObjectDisposedException__ctor_1, (ObjectDisposedException * __this, String * objectName, MethodInfo * method)); DO_APP_FUNC(0x01B9DBD0, void, ObjectDisposedException__ctor_2, (ObjectDisposedException * __this, String * objectName, String * message, MethodInfo * method)); @@ -2366,28 +2564,37 @@ DO_APP_FUNC(0x01B9E2A0, void, OverflowException__ctor_1, (OverflowException * __ DO_APP_FUNC(0x01B9E2C0, void, OverflowException__ctor_2, (OverflowException * __this, String * message, Exception * innerException, MethodInfo * method)); DO_APP_FUNC(0x01980BF0, void, OverflowException__ctor_3, (OverflowException * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ParamArrayAttribute__ctor, (ParamArrayAttribute * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B9E2E0, void, ParamsArray__ctor, (ParamsArray__Boxed * __this, Object * arg0, MethodInfo * method)); -DO_APP_FUNC(0x01B9E4A0, void, ParamsArray__ctor_1, (ParamsArray__Boxed * __this, Object * arg0, Object * arg1, MethodInfo * method)); -DO_APP_FUNC(0x01B9E660, void, ParamsArray__ctor_2, (ParamsArray__Boxed * __this, Object * arg0, Object * arg1, Object * arg2, MethodInfo * method)); -DO_APP_FUNC(0x01B9E830, void, ParamsArray__ctor_3, (ParamsArray__Boxed * __this, Object__Array * args, MethodInfo * method)); -DO_APP_FUNC(0x015C0D60, int32_t, ParamsArray_get_Length, (ParamsArray__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B9EA00, Object *, ParamsArray_get_Item, (ParamsArray__Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01B9EAB0, Object *, ParamsArray_GetAtSlow, (ParamsArray__Boxed * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x01B9E2E0, void, ParamsArray__ctor, (ParamsArray * __this, Object * arg0, MethodInfo * method)); +DO_APP_FUNC(0x01B9E4A0, void, ParamsArray__ctor_1, (ParamsArray * __this, Object * arg0, Object * arg1, MethodInfo * method)); +DO_APP_FUNC(0x01B9E660, void, ParamsArray__ctor_2, (ParamsArray * __this, Object * arg0, Object * arg1, Object * arg2, MethodInfo * method)); +DO_APP_FUNC(0x01B9E830, void, ParamsArray__ctor_3, (ParamsArray * __this, Object__Array * args, MethodInfo * method)); +DO_APP_FUNC(0x015C0D60, int32_t, ParamsArray_get_Length, (ParamsArray * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B9EA00, Object *, ParamsArray_get_Item, (ParamsArray * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x01B9EAB0, Object *, ParamsArray_GetAtSlow, (ParamsArray * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01B9EB00, void, ParamsArray__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01B9ECC0, int64_t, ParseNumbers_StringToLong, (ReadOnlySpan_1_Char_ s, int32_t radix, int32_t flags, MethodInfo * method)); -DO_APP_FUNC(0x01B9ECF0, int64_t, ParseNumbers_StringToLong_1, (ReadOnlySpan_1_Char_ s, int32_t radix, int32_t flags, int32_t currPos, MethodInfo * method)); +DO_APP_FUNC(0x01B9ECF0, int64_t, ParseNumbers_StringToLong_1, (ReadOnlySpan_1_Char_ s, int32_t radix, int32_t flags, int32_t * currPos, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04D00, ParseNumbers_StringToLong_1__MethodInfo); DO_APP_FUNC(0x01B9F240, int32_t, ParseNumbers_StringToInt, (ReadOnlySpan_1_Char_ s, int32_t radix, int32_t flags, MethodInfo * method)); -DO_APP_FUNC(0x01B9F270, int32_t, ParseNumbers_StringToInt_1, (ReadOnlySpan_1_Char_ s, int32_t radix, int32_t flags, int32_t currPos, MethodInfo * method)); +DO_APP_FUNC(0x01B9F270, int32_t, ParseNumbers_StringToInt_1, (ReadOnlySpan_1_Char_ s, int32_t radix, int32_t flags, int32_t * currPos, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04CD8, ParseNumbers_StringToInt_1__MethodInfo); DO_APP_FUNC(0x01B9F870, String *, ParseNumbers_IntToString, (int32_t n, int32_t radix, int32_t width, uint16_t paddingChar, int32_t flags, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04D38, ParseNumbers_IntToString__MethodInfo); DO_APP_FUNC(0x01B9FC40, String *, ParseNumbers_LongToString, (int64_t n, int32_t radix, int32_t width, uint16_t paddingChar, int32_t flags, MethodInfo * method)); -DO_APP_FUNC(0x01BA00C0, void, ParseNumbers_EatWhiteSpace, (ReadOnlySpan_1_Char_ s, int32_t i, MethodInfo * method)); -DO_APP_FUNC(0x01BA0190, int64_t, ParseNumbers_GrabLongs, (int32_t radix, ReadOnlySpan_1_Char_ s, int32_t i, bool isUnsigned, MethodInfo * method)); -DO_APP_FUNC(0x01BA0360, int32_t, ParseNumbers_GrabInts, (int32_t radix, ReadOnlySpan_1_Char_ s, int32_t i, bool isUnsigned, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04D30, ParseNumbers_LongToString__MethodInfo); +DO_APP_FUNC(0x01BA00C0, void, ParseNumbers_EatWhiteSpace, (ReadOnlySpan_1_Char_ s, int32_t * i, MethodInfo * method)); +DO_APP_FUNC(0x01BA0190, int64_t, ParseNumbers_GrabLongs, (int32_t radix, ReadOnlySpan_1_Char_ s, int32_t * i, bool isUnsigned, MethodInfo * method)); +DO_APP_FUNC(0x01BA0360, int32_t, ParseNumbers_GrabInts, (int32_t radix, ReadOnlySpan_1_Char_ s, int32_t * i, bool isUnsigned, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04D28, ParseNumbers_GrabInts__MethodInfo); DO_APP_FUNC(0x01BA0550, void, ParseNumbers_ThrowOverflowInt32Exception, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04D20, ParseNumbers_ThrowOverflowInt32Exception__MethodInfo); DO_APP_FUNC(0x01BA05B0, void, ParseNumbers_ThrowOverflowInt64Exception, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04D18, ParseNumbers_ThrowOverflowInt64Exception__MethodInfo); DO_APP_FUNC(0x01BA0610, void, ParseNumbers_ThrowOverflowUInt32Exception, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04D10, ParseNumbers_ThrowOverflowUInt32Exception__MethodInfo); DO_APP_FUNC(0x01BA0670, void, ParseNumbers_ThrowOverflowUInt64Exception, (MethodInfo * method)); -DO_APP_FUNC(0x01BA06D0, bool, ParseNumbers_IsDigit, (uint16_t c, int32_t radix, int32_t result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04D08, ParseNumbers_ThrowOverflowUInt64Exception__MethodInfo); +DO_APP_FUNC(0x01BA06D0, bool, ParseNumbers_IsDigit, (uint16_t c, int32_t radix, int32_t * result, MethodInfo * method)); DO_APP_FUNC(0x01BA0730, void, PlatformNotSupportedException__ctor, (PlatformNotSupportedException * __this, MethodInfo * method)); DO_APP_FUNC(0x01BA0780, void, PlatformNotSupportedException__ctor_1, (PlatformNotSupportedException * __this, String * message, MethodInfo * method)); DO_APP_FUNC(0x01980BF0, void, PlatformNotSupportedException__ctor_2, (PlatformNotSupportedException * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); @@ -2400,9 +2607,12 @@ DO_APP_FUNC(0x01BA0E40, int32_t, Random_GenerateGlobalSeed, (MethodInfo * method DO_APP_FUNC(0x01BA0E70, int32_t, Random_Next, (Random * __this, MethodInfo * method)); DO_APP_FUNC(0x01BA0E80, double, Random_GetSampleForLargeRange, (Random * __this, MethodInfo * method)); DO_APP_FUNC(0x01BA0ED0, int32_t, Random_Next_1, (Random * __this, int32_t minValue, int32_t maxValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04CA0, Random_Next_1__MethodInfo); DO_APP_FUNC(0x01BA1020, int32_t, Random_Next_2, (Random * __this, int32_t maxValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04C98, Random_Next_2__MethodInfo); DO_APP_FUNC(0x019BD2D0, double, Random_NextDouble, (Random * __this, MethodInfo * method)); DO_APP_FUNC(0x01BA10E0, void, Random_NextBytes, (Random * __this, Byte__Array * buffer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04C90, Random_NextBytes__MethodInfo); DO_APP_FUNC(0x01BA1200, void, Random__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01BA12D0, void, RankException__ctor, (RankException * __this, MethodInfo * method)); DO_APP_FUNC(0x01BA1320, void, RankException__ctor_1, (RankException * __this, String * message, MethodInfo * method)); @@ -2411,80 +2621,86 @@ DO_APP_FUNC(0x01BA1340, void, ResolveEventArgs__ctor, (ResolveEventArgs * __this DO_APP_FUNC(0x01BA13E0, void, ResolveEventArgs__ctor_1, (ResolveEventArgs * __this, String * name, Assembly * requestingAssembly, MethodInfo * method)); DO_APP_FUNC(0x015BCE00, void, ResolveEventHandler__ctor, (ResolveEventHandler * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003ED330, Assembly *, ResolveEventHandler_Invoke, (ResolveEventHandler * __this, Object * sender, ResolveEventArgs * args, MethodInfo * method)); -DO_APP_FUNC(0x01BA14F0, int32_t, SByte_CompareTo, (SByte__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x01BA15D0, int32_t, SByte_CompareTo_1, (SByte__Boxed * __this, int8_t value, MethodInfo * method)); -DO_APP_FUNC(0x01BA15E0, bool, SByte_Equals, (SByte__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x01AA25F0, bool, SByte_Equals_1, (SByte__Boxed * __this, int8_t obj, MethodInfo * method)); -DO_APP_FUNC(0x01BA1670, int32_t, SByte_GetHashCode, (SByte__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01BA1680, String *, SByte_ToString, (SByte__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01BA1720, String *, SByte_ToString_1, (SByte__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BA17D0, String *, SByte_ToString_2, (SByte__Boxed * __this, String * format, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BA1950, bool, SByte_TryFormat, (SByte__Boxed * __this, Span_1_Char_ destination, int32_t charsWritten, ReadOnlySpan_1_Char_ format, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BA14F0, int32_t, SByte_CompareTo, (SByte * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04CC0, SByte_CompareTo__MethodInfo); +DO_APP_FUNC(0x01BA15D0, int32_t, SByte_CompareTo_1, (SByte * __this, int8_t value, MethodInfo * method)); +DO_APP_FUNC(0x01BA15E0, bool, SByte_Equals, (SByte * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x01AA25F0, bool, SByte_Equals_1, (SByte * __this, int8_t obj, MethodInfo * method)); +DO_APP_FUNC(0x01BA1670, int32_t, SByte_GetHashCode, (SByte * __this, MethodInfo * method)); +DO_APP_FUNC(0x01BA1680, String *, SByte_ToString, (SByte * __this, MethodInfo * method)); +DO_APP_FUNC(0x01BA1720, String *, SByte_ToString_1, (SByte * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BA17D0, String *, SByte_ToString_2, (SByte * __this, String * format, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BA1950, bool, SByte_TryFormat, (SByte * __this, Span_1_Char_ destination, int32_t * charsWritten, ReadOnlySpan_1_Char_ format, IFormatProvider * provider, MethodInfo * method)); DO_APP_FUNC(0x01AAA420, int8_t, SByte_Parse, (String * s, IFormatProvider * provider, MethodInfo * method)); DO_APP_FUNC(0x01BA1A90, int8_t, SByte_Parse_1, (String * s, NumberStyles__Enum style, IFormatProvider * provider, MethodInfo * method)); DO_APP_FUNC(0x01BA1B30, int8_t, SByte_Parse_2, (ReadOnlySpan_1_Char_ s, NumberStyles__Enum style, NumberFormatInfo * info, MethodInfo * method)); -DO_APP_FUNC(0x01BA1CE0, bool, SByte_TryParse, (String * s, int8_t result, MethodInfo * method)); -DO_APP_FUNC(0x01BA1DE0, bool, SByte_TryParse_1, (String * s, NumberStyles__Enum style, IFormatProvider * provider, int8_t result, MethodInfo * method)); -DO_APP_FUNC(0x01BA1EA0, bool, SByte_TryParse_2, (ReadOnlySpan_1_Char_ s, NumberStyles__Enum style, NumberFormatInfo * info, int8_t result, MethodInfo * method)); -DO_APP_FUNC(0x01164370, TypeCode__Enum, SByte_GetTypeCode, (SByte__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01BA1F70, bool, SByte_System_IConvertible_ToBoolean, (SByte__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BA1FC0, uint16_t, SByte_System_IConvertible_ToChar, (SByte__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, int8_t, SByte_System_IConvertible_ToSByte, (SByte__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BA2050, uint8_t, SByte_System_IConvertible_ToByte, (SByte__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BA20E0, int16_t, SByte_System_IConvertible_ToInt16, (SByte__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BA2130, uint16_t, SByte_System_IConvertible_ToUInt16, (SByte__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BA21C0, int32_t, SByte_System_IConvertible_ToInt32, (SByte__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BA21D0, uint32_t, SByte_System_IConvertible_ToUInt32, (SByte__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BA2260, int64_t, SByte_System_IConvertible_ToInt64, (SByte__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BA22B0, uint64_t, SByte_System_IConvertible_ToUInt64, (SByte__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BA2340, float, SByte_System_IConvertible_ToSingle, (SByte__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BA2390, double, SByte_System_IConvertible_ToDouble, (SByte__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BA23E0, Decimal, SByte_System_IConvertible_ToDecimal, (SByte__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BA24A0, DateTime, SByte_System_IConvertible_ToDateTime, (SByte__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BA2530, Object *, SByte_System_IConvertible_ToType, (SByte__Boxed * __this, Type * type, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04C88, SByte_Parse_2__MethodInfo); +DO_APP_FUNC(0x01BA1CE0, bool, SByte_TryParse, (String * s, int8_t * result, MethodInfo * method)); +DO_APP_FUNC(0x01BA1DE0, bool, SByte_TryParse_1, (String * s, NumberStyles__Enum style, IFormatProvider * provider, int8_t * result, MethodInfo * method)); +DO_APP_FUNC(0x01BA1EA0, bool, SByte_TryParse_2, (ReadOnlySpan_1_Char_ s, NumberStyles__Enum style, NumberFormatInfo * info, int8_t * result, MethodInfo * method)); +DO_APP_FUNC(0x01164370, TypeCode__Enum, SByte_GetTypeCode, (SByte * __this, MethodInfo * method)); +DO_APP_FUNC(0x01BA1F70, bool, SByte_System_IConvertible_ToBoolean, (SByte * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BA1FC0, uint16_t, SByte_System_IConvertible_ToChar, (SByte * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x00C173D0, int8_t, SByte_System_IConvertible_ToSByte, (SByte * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BA2050, uint8_t, SByte_System_IConvertible_ToByte, (SByte * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BA20E0, int16_t, SByte_System_IConvertible_ToInt16, (SByte * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BA2130, uint16_t, SByte_System_IConvertible_ToUInt16, (SByte * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BA21C0, int32_t, SByte_System_IConvertible_ToInt32, (SByte * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BA21D0, uint32_t, SByte_System_IConvertible_ToUInt32, (SByte * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BA2260, int64_t, SByte_System_IConvertible_ToInt64, (SByte * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BA22B0, uint64_t, SByte_System_IConvertible_ToUInt64, (SByte * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BA2340, float, SByte_System_IConvertible_ToSingle, (SByte * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BA2390, double, SByte_System_IConvertible_ToDouble, (SByte * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BA23E0, Decimal, SByte_System_IConvertible_ToDecimal, (SByte * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BA24A0, DateTime, SByte_System_IConvertible_ToDateTime, (SByte * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04C80, SByte_System_IConvertible_ToDateTime__MethodInfo); +DO_APP_FUNC(0x01BA2530, Object *, SByte_System_IConvertible_ToType, (SByte * __this, Type * type, IFormatProvider * provider, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SerializableAttribute__ctor, (SerializableAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x01BA25D0, bool, Single_IsInfinity, (float f, MethodInfo * method)); DO_APP_FUNC(0x01BA2630, bool, Single_IsNaN, (float f, MethodInfo * method)); DO_APP_FUNC(0x01BA2690, bool, Single_IsNegativeInfinity, (float f, MethodInfo * method)); DO_APP_FUNC(0x01BA26B0, bool, Single_IsPositiveInfinity, (float f, MethodInfo * method)); -DO_APP_FUNC(0x01BA26D0, int32_t, Single_CompareTo, (Single__Boxed * __this, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x01BA2800, int32_t, Single_CompareTo_1, (Single__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x01BA2860, bool, Single_Equals, (Single__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x01BA2910, bool, Single_Equals_1, (Single__Boxed * __this, float obj, MethodInfo * method)); -DO_APP_FUNC(0x01BA2950, int32_t, Single_GetHashCode, (Single__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01BA29C0, String *, Single_ToString, (Single__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01BA2A30, String *, Single_ToString_1, (Single__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BA2AB0, String *, Single_ToString_2, (Single__Boxed * __this, String * format, MethodInfo * method)); -DO_APP_FUNC(0x01BA2B30, String *, Single_ToString_3, (Single__Boxed * __this, String * format, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BA2BC0, bool, Single_TryFormat, (Single__Boxed * __this, Span_1_Char_ destination, int32_t charsWritten, ReadOnlySpan_1_Char_ format, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BA26D0, int32_t, Single_CompareTo, (Single * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04C70, Single_CompareTo__MethodInfo); +DO_APP_FUNC(0x01BA2800, int32_t, Single_CompareTo_1, (Single * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x01BA2860, bool, Single_Equals, (Single * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x01BA2910, bool, Single_Equals_1, (Single * __this, float obj, MethodInfo * method)); +DO_APP_FUNC(0x01BA2950, int32_t, Single_GetHashCode, (Single * __this, MethodInfo * method)); +DO_APP_FUNC(0x01BA29C0, String *, Single_ToString, (Single * __this, MethodInfo * method)); +DO_APP_FUNC(0x01BA2A30, String *, Single_ToString_1, (Single * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BA2AB0, String *, Single_ToString_2, (Single * __this, String * format, MethodInfo * method)); +DO_APP_FUNC(0x01BA2B30, String *, Single_ToString_3, (Single * __this, String * format, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BA2BC0, bool, Single_TryFormat, (Single * __this, Span_1_Char_ destination, int32_t * charsWritten, ReadOnlySpan_1_Char_ format, IFormatProvider * provider, MethodInfo * method)); DO_APP_FUNC(0x01BA2C90, float, Single_Parse, (String * s, MethodInfo * method)); DO_APP_FUNC(0x01BA2D50, float, Single_Parse_1, (String * s, IFormatProvider * provider, MethodInfo * method)); DO_APP_FUNC(0x01BA2E20, float, Single_Parse_2, (String * s, NumberStyles__Enum style, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BA2F00, bool, Single_TryParse, (String * s, float result, MethodInfo * method)); -DO_APP_FUNC(0x01BA2FA0, bool, Single_TryParse_1, (String * s, NumberStyles__Enum style, IFormatProvider * provider, float result, MethodInfo * method)); -DO_APP_FUNC(0x01BA3060, bool, Single_TryParse_2, (ReadOnlySpan_1_Char_ s, NumberStyles__Enum style, NumberFormatInfo * info, float result, MethodInfo * method)); -DO_APP_FUNC(0x01AE9E40, TypeCode__Enum, Single_GetTypeCode, (Single__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01BA34C0, bool, Single_System_IConvertible_ToBoolean, (Single__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BA3530, uint16_t, Single_System_IConvertible_ToChar, (Single__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BA35C0, int8_t, Single_System_IConvertible_ToSByte, (Single__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BA3660, uint8_t, Single_System_IConvertible_ToByte, (Single__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BA3700, int16_t, Single_System_IConvertible_ToInt16, (Single__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BA37A0, uint16_t, Single_System_IConvertible_ToUInt16, (Single__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BA3840, int32_t, Single_System_IConvertible_ToInt32, (Single__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BA38E0, uint32_t, Single_System_IConvertible_ToUInt32, (Single__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BA3980, int64_t, Single_System_IConvertible_ToInt64, (Single__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BA3A20, uint64_t, Single_System_IConvertible_ToUInt64, (Single__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x00BCBB00, float, Single_System_IConvertible_ToSingle, (Single__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BA3AC0, double, Single_System_IConvertible_ToDouble, (Single__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BA3B20, Decimal, Single_System_IConvertible_ToDecimal, (Single__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BA3C40, DateTime, Single_System_IConvertible_ToDateTime, (Single__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BA3CD0, Object *, Single_System_IConvertible_ToType, (Single__Boxed * __this, Type * type, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BA3D70, int32_t, SpanHelpers_IndexOfAny, (uint8_t searchSpace, int32_t searchSpaceLength, uint8_t value, int32_t valueLength, MethodInfo * method)); -DO_APP_FUNC(0x01BA3DF0, int32_t, SpanHelpers_IndexOf, (uint8_t searchSpace, uint8_t value, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01BA3EB0, bool, SpanHelpers_SequenceEqual, (uint8_t first, uint8_t second, uint64_t length, MethodInfo * method)); -DO_APP_FUNC(0x01BA3FC0, int32_t, SpanHelpers_SequenceCompareTo, (uint16_t first, int32_t firstLength, uint16_t second, int32_t secondLength, MethodInfo * method)); -DO_APP_FUNC(0x01BA4140, int32_t, SpanHelpers_IndexOf_1, (uint16_t searchSpace, uint16_t value, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01BA4260, int32_t, SpanHelpers_LastIndexOf, (uint16_t searchSpace, uint16_t value, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x01BA2F00, bool, Single_TryParse, (String * s, float * result, MethodInfo * method)); +DO_APP_FUNC(0x01BA2FA0, bool, Single_TryParse_1, (String * s, NumberStyles__Enum style, IFormatProvider * provider, float * result, MethodInfo * method)); +DO_APP_FUNC(0x01BA3060, bool, Single_TryParse_2, (ReadOnlySpan_1_Char_ s, NumberStyles__Enum style, NumberFormatInfo * info, float * result, MethodInfo * method)); +DO_APP_FUNC(0x01AE9E40, TypeCode__Enum, Single_GetTypeCode, (Single * __this, MethodInfo * method)); +DO_APP_FUNC(0x01BA34C0, bool, Single_System_IConvertible_ToBoolean, (Single * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BA3530, uint16_t, Single_System_IConvertible_ToChar, (Single * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04C60, Single_System_IConvertible_ToChar__MethodInfo); +DO_APP_FUNC(0x01BA35C0, int8_t, Single_System_IConvertible_ToSByte, (Single * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BA3660, uint8_t, Single_System_IConvertible_ToByte, (Single * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BA3700, int16_t, Single_System_IConvertible_ToInt16, (Single * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BA37A0, uint16_t, Single_System_IConvertible_ToUInt16, (Single * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BA3840, int32_t, Single_System_IConvertible_ToInt32, (Single * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BA38E0, uint32_t, Single_System_IConvertible_ToUInt32, (Single * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BA3980, int64_t, Single_System_IConvertible_ToInt64, (Single * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BA3A20, uint64_t, Single_System_IConvertible_ToUInt64, (Single * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x00BCBB00, float, Single_System_IConvertible_ToSingle, (Single * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BA3AC0, double, Single_System_IConvertible_ToDouble, (Single * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BA3B20, Decimal, Single_System_IConvertible_ToDecimal, (Single * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BA3C40, DateTime, Single_System_IConvertible_ToDateTime, (Single * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04C68, Single_System_IConvertible_ToDateTime__MethodInfo); +DO_APP_FUNC(0x01BA3CD0, Object *, Single_System_IConvertible_ToType, (Single * __this, Type * type, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BA3D70, int32_t, SpanHelpers_IndexOfAny, (uint8_t * searchSpace, int32_t searchSpaceLength, uint8_t * value, int32_t valueLength, MethodInfo * method)); +DO_APP_FUNC(0x01BA3DF0, int32_t, SpanHelpers_IndexOf, (uint8_t * searchSpace, uint8_t value, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x01BA3EB0, bool, SpanHelpers_SequenceEqual, (uint8_t * first, uint8_t * second, uint64_t length, MethodInfo * method)); +DO_APP_FUNC(0x01BA3FC0, int32_t, SpanHelpers_SequenceCompareTo, (uint16_t * first, int32_t firstLength, uint16_t * second, int32_t secondLength, MethodInfo * method)); +DO_APP_FUNC(0x01BA4140, int32_t, SpanHelpers_IndexOf_1, (uint16_t * searchSpace, uint16_t value, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x01BA4260, int32_t, SpanHelpers_LastIndexOf, (uint16_t * searchSpace, uint16_t value, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x01BA43D0, int32_t, SpanHelpers_LocateFirstFoundChar, (Vector_1_System_UInt16_ match, MethodInfo * method)); DO_APP_FUNC(0x01BA4520, int32_t, SpanHelpers_LocateFirstFoundChar_1, (uint64_t match, MethodInfo * method)); DO_APP_FUNC(0x01BA4540, int32_t, SpanHelpers_LocateLastFoundChar, (Vector_1_System_UInt16_ match, MethodInfo * method)); @@ -2492,8 +2708,8 @@ DO_APP_FUNC(0x01BA4690, int32_t, SpanHelpers_LocateLastFoundChar_1, (uint64_t ma DO_APP_FUNC(0x01BA46B0, bool, SpanHelpers_EndsWithCultureHelper, (ReadOnlySpan_1_Char_ span, ReadOnlySpan_1_Char_ value, CompareInfo * compareInfo, MethodInfo * method)); DO_APP_FUNC(0x01BA4830, bool, SpanHelpers_EndsWithCultureIgnoreCaseHelper, (ReadOnlySpan_1_Char_ span, ReadOnlySpan_1_Char_ value, CompareInfo * compareInfo, MethodInfo * method)); DO_APP_FUNC(0x01BA4990, bool, SpanHelpers_EndsWithOrdinalIgnoreCaseHelper, (ReadOnlySpan_1_Char_ span, ReadOnlySpan_1_Char_ value, MethodInfo * method)); -DO_APP_FUNC(0x01BA4AA0, void, SpanHelpers_ClearWithoutReferences, (uint8_t b, uint64_t byteLength, MethodInfo * method)); -DO_APP_FUNC(0x01BA4CF0, void, SpanHelpers_ClearWithReferences, (void * ip, uint64_t pointerSizeLength, MethodInfo * method)); +DO_APP_FUNC(0x01BA4AA0, void, SpanHelpers_ClearWithoutReferences, (uint8_t * b, uint64_t byteLength, MethodInfo * method)); +DO_APP_FUNC(0x01BA4CF0, void, SpanHelpers_ClearWithReferences, (void * * ip, uint64_t pointerSizeLength, MethodInfo * method)); DO_APP_FUNC(0x01BA4D90, void, StackOverflowException__ctor, (StackOverflowException * __this, MethodInfo * method)); DO_APP_FUNC(0x01BA4DE0, void, StackOverflowException__ctor_1, (StackOverflowException * __this, String * message, MethodInfo * method)); DO_APP_FUNC(0x01980BF0, void, StackOverflowException__ctor_2, (StackOverflowException * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); @@ -2502,16 +2718,20 @@ DO_APP_FUNC(0x01BA4E60, StringComparer *, StringComparer_get_CurrentCultureIgnor DO_APP_FUNC(0x01BA4F50, StringComparer *, StringComparer_get_Ordinal, (MethodInfo * method)); DO_APP_FUNC(0x01BA4FB0, StringComparer *, StringComparer_get_OrdinalIgnoreCase, (MethodInfo * method)); DO_APP_FUNC(0x01BA5010, int32_t, StringComparer_Compare, (StringComparer * __this, Object * x, Object * y, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04BD8, StringComparer_Compare__MethodInfo); DO_APP_FUNC(0x01BA5190, bool, StringComparer_Equals, (StringComparer * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x01BA5280, int32_t, StringComparer_GetHashCode, (StringComparer * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04BD0, StringComparer_GetHashCode__MethodInfo); DO_APP_FUNC(0x003AE050, void, StringComparer__ctor, (StringComparer * __this, MethodInfo * method)); DO_APP_FUNC(0x01BA5360, void, StringComparer__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01BA5780, void, CultureAwareComparer__ctor, (CultureAwareComparer * __this, CultureInfo * culture, CompareOptions__Enum options, MethodInfo * method)); DO_APP_FUNC(0x01BA57D0, void, CultureAwareComparer__ctor_1, (CultureAwareComparer * __this, CompareInfo * compareInfo, CompareOptions__Enum options, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04C08, CultureAwareComparer__ctor_1__MethodInfo); DO_APP_FUNC(0x01BA58F0, void, CultureAwareComparer__ctor_2, (CultureAwareComparer * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x01BA5B60, int32_t, CultureAwareComparer_Compare, (CultureAwareComparer * __this, String * x, String * y, MethodInfo * method)); DO_APP_FUNC(0x01BA5BD0, bool, CultureAwareComparer_Equals, (CultureAwareComparer * __this, String * x, String * y, MethodInfo * method)); DO_APP_FUNC(0x01BA5C30, int32_t, CultureAwareComparer_GetHashCode, (CultureAwareComparer * __this, String * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04BE0, CultureAwareComparer_GetHashCode__MethodInfo); DO_APP_FUNC(0x01BA5CC0, bool, CultureAwareComparer_Equals_1, (CultureAwareComparer * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x01BA5D60, int32_t, CultureAwareComparer_GetHashCode_1, (CultureAwareComparer * __this, MethodInfo * method)); DO_APP_FUNC(0x01BA5DA0, void, CultureAwareComparer_GetObjectData, (CultureAwareComparer * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); @@ -2537,43 +2757,51 @@ DO_APP_FUNC(0x01BA67E0, void, SystemException__ctor_2, (SystemException * __this DO_APP_FUNC(0x01980BF0, void, SystemException__ctor_3, (SystemException * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, STAThreadAttribute__ctor, (STAThreadAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ThreadStaticAttribute__ctor, (ThreadStaticAttribute * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9A2A0, void, TimeSpan__ctor, (TimeSpan__Boxed * __this, int64_t ticks, MethodInfo * method)); -DO_APP_FUNC(0x01BA6860, void, TimeSpan__ctor_1, (TimeSpan__Boxed * __this, int32_t hours, int32_t minutes, int32_t seconds, MethodInfo * method)); -DO_APP_FUNC(0x01BA68E0, void, TimeSpan__ctor_2, (TimeSpan__Boxed * __this, int32_t days, int32_t hours, int32_t minutes, int32_t seconds, int32_t milliseconds, MethodInfo * method)); -DO_APP_FUNC(0x00471910, int64_t, TimeSpan_get_Ticks, (TimeSpan__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01BA69A0, int32_t, TimeSpan_get_Days, (TimeSpan__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01BA69C0, int32_t, TimeSpan_get_Hours, (TimeSpan__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01BA6A00, int32_t, TimeSpan_get_Milliseconds, (TimeSpan__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01BA6A50, int32_t, TimeSpan_get_Minutes, (TimeSpan__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01BA6AA0, int32_t, TimeSpan_get_Seconds, (TimeSpan__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01BA6AF0, double, TimeSpan_get_TotalDays, (TimeSpan__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01BA6B10, double, TimeSpan_get_TotalHours, (TimeSpan__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01BA6B30, double, TimeSpan_get_TotalMilliseconds, (TimeSpan__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01BA6B60, double, TimeSpan_get_TotalMinutes, (TimeSpan__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01BA6B80, double, TimeSpan_get_TotalSeconds, (TimeSpan__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01BA6BA0, TimeSpan, TimeSpan_Add, (TimeSpan__Boxed * __this, TimeSpan ts, MethodInfo * method)); +DO_APP_FUNC(0x00A9A2A0, void, TimeSpan__ctor, (TimeSpan * __this, int64_t ticks, MethodInfo * method)); +DO_APP_FUNC(0x01BA6860, void, TimeSpan__ctor_1, (TimeSpan * __this, int32_t hours, int32_t minutes, int32_t seconds, MethodInfo * method)); +DO_APP_FUNC(0x01BA68E0, void, TimeSpan__ctor_2, (TimeSpan * __this, int32_t days, int32_t hours, int32_t minutes, int32_t seconds, int32_t milliseconds, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04BB0, TimeSpan__ctor_2__MethodInfo); +DO_APP_FUNC(0x00471910, int64_t, TimeSpan_get_Ticks, (TimeSpan * __this, MethodInfo * method)); +DO_APP_FUNC(0x01BA69A0, int32_t, TimeSpan_get_Days, (TimeSpan * __this, MethodInfo * method)); +DO_APP_FUNC(0x01BA69C0, int32_t, TimeSpan_get_Hours, (TimeSpan * __this, MethodInfo * method)); +DO_APP_FUNC(0x01BA6A00, int32_t, TimeSpan_get_Milliseconds, (TimeSpan * __this, MethodInfo * method)); +DO_APP_FUNC(0x01BA6A50, int32_t, TimeSpan_get_Minutes, (TimeSpan * __this, MethodInfo * method)); +DO_APP_FUNC(0x01BA6AA0, int32_t, TimeSpan_get_Seconds, (TimeSpan * __this, MethodInfo * method)); +DO_APP_FUNC(0x01BA6AF0, double, TimeSpan_get_TotalDays, (TimeSpan * __this, MethodInfo * method)); +DO_APP_FUNC(0x01BA6B10, double, TimeSpan_get_TotalHours, (TimeSpan * __this, MethodInfo * method)); +DO_APP_FUNC(0x01BA6B30, double, TimeSpan_get_TotalMilliseconds, (TimeSpan * __this, MethodInfo * method)); +DO_APP_FUNC(0x01BA6B60, double, TimeSpan_get_TotalMinutes, (TimeSpan * __this, MethodInfo * method)); +DO_APP_FUNC(0x01BA6B80, double, TimeSpan_get_TotalSeconds, (TimeSpan * __this, MethodInfo * method)); +DO_APP_FUNC(0x01BA6BA0, TimeSpan, TimeSpan_Add, (TimeSpan * __this, TimeSpan ts, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04BA8, TimeSpan_Add__MethodInfo); DO_APP_FUNC(0x01BA6C30, int32_t, TimeSpan_Compare, (TimeSpan t1, TimeSpan t2, MethodInfo * method)); -DO_APP_FUNC(0x01BA6C50, int32_t, TimeSpan_CompareTo, (TimeSpan__Boxed * __this, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x01BA6D40, int32_t, TimeSpan_CompareTo_1, (TimeSpan__Boxed * __this, TimeSpan value, MethodInfo * method)); +DO_APP_FUNC(0x01BA6C50, int32_t, TimeSpan_CompareTo, (TimeSpan * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04B98, TimeSpan_CompareTo__MethodInfo); +DO_APP_FUNC(0x01BA6D40, int32_t, TimeSpan_CompareTo_1, (TimeSpan * __this, TimeSpan value, MethodInfo * method)); DO_APP_FUNC(0x01BA6D60, TimeSpan, TimeSpan_FromDays, (double value, MethodInfo * method)); -DO_APP_FUNC(0x01BA6DC0, bool, TimeSpan_Equals, (TimeSpan__Boxed * __this, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x00A9A720, bool, TimeSpan_Equals_1, (TimeSpan__Boxed * __this, TimeSpan obj, MethodInfo * method)); -DO_APP_FUNC(0x01B8B020, int32_t, TimeSpan_GetHashCode, (TimeSpan__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01BA6DC0, bool, TimeSpan_Equals, (TimeSpan * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x00A9A720, bool, TimeSpan_Equals_1, (TimeSpan * __this, TimeSpan obj, MethodInfo * method)); +DO_APP_FUNC(0x01B8B020, int32_t, TimeSpan_GetHashCode, (TimeSpan * __this, MethodInfo * method)); DO_APP_FUNC(0x01BA6E50, TimeSpan, TimeSpan_FromHours, (double value, MethodInfo * method)); DO_APP_FUNC(0x01BA6EB0, TimeSpan, TimeSpan_Interval, (double value, int32_t scale, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04B58, TimeSpan_Interval__MethodInfo); DO_APP_FUNC(0x01BA6FD0, TimeSpan, TimeSpan_FromMilliseconds, (double value, MethodInfo * method)); DO_APP_FUNC(0x01BA7030, TimeSpan, TimeSpan_FromMinutes, (double value, MethodInfo * method)); -DO_APP_FUNC(0x01BA7090, TimeSpan, TimeSpan_Negate, (TimeSpan__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01BA7090, TimeSpan, TimeSpan_Negate, (TimeSpan * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04B50, TimeSpan_Negate__MethodInfo); DO_APP_FUNC(0x01BA7150, TimeSpan, TimeSpan_FromSeconds, (double value, MethodInfo * method)); -DO_APP_FUNC(0x01BA71B0, TimeSpan, TimeSpan_Subtract, (TimeSpan__Boxed * __this, TimeSpan ts, MethodInfo * method)); +DO_APP_FUNC(0x01BA71B0, TimeSpan, TimeSpan_Subtract, (TimeSpan * __this, TimeSpan ts, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04B78, TimeSpan_Subtract__MethodInfo); DO_APP_FUNC(0x00A1B820, TimeSpan, TimeSpan_FromTicks, (int64_t value, MethodInfo * method)); DO_APP_FUNC(0x01BA7240, int64_t, TimeSpan_TimeToTicks, (int32_t hour, int32_t minute, int32_t second, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04B70, TimeSpan_TimeToTicks__MethodInfo); DO_APP_FUNC(0x01BA72E0, TimeSpan, TimeSpan_Parse, (String * s, MethodInfo * method)); DO_APP_FUNC(0x01BA7370, TimeSpan, TimeSpan_Parse_1, (String * input, IFormatProvider * formatProvider, MethodInfo * method)); -DO_APP_FUNC(0x01BA7410, String *, TimeSpan_ToString, (TimeSpan__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01BA7470, String *, TimeSpan_ToString_1, (TimeSpan__Boxed * __this, String * format, IFormatProvider * formatProvider, MethodInfo * method)); -DO_APP_FUNC(0x01BA74F0, bool, TimeSpan_TryFormat, (TimeSpan__Boxed * __this, Span_1_Char_ destination, int32_t charsWritten, ReadOnlySpan_1_Char_ format, IFormatProvider * formatProvider, MethodInfo * method)); +DO_APP_FUNC(0x01BA7410, String *, TimeSpan_ToString, (TimeSpan * __this, MethodInfo * method)); +DO_APP_FUNC(0x01BA7470, String *, TimeSpan_ToString_1, (TimeSpan * __this, String * format, IFormatProvider * formatProvider, MethodInfo * method)); +DO_APP_FUNC(0x01BA74F0, bool, TimeSpan_TryFormat, (TimeSpan * __this, Span_1_Char_ destination, int32_t * charsWritten, ReadOnlySpan_1_Char_ format, IFormatProvider * formatProvider, MethodInfo * method)); DO_APP_FUNC(0x01BA7640, TimeSpan, TimeSpan_op_UnaryNegation, (TimeSpan t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04B68, TimeSpan_op_UnaryNegation__MethodInfo); DO_APP_FUNC(0x01BA7700, TimeSpan, TimeSpan_op_Subtraction, (TimeSpan t1, TimeSpan t2, MethodInfo * method)); DO_APP_FUNC(0x01BA77D0, TimeSpan, TimeSpan_op_Addition, (TimeSpan t1, TimeSpan t2, MethodInfo * method)); DO_APP_FUNC(0x00A89090, bool, TimeSpan_op_Equality, (TimeSpan t1, TimeSpan t2, MethodInfo * method)); @@ -2595,10 +2823,13 @@ DO_APP_FUNC(0x01039B50, int32_t, Tuple_CombineHashCodes, (int32_t h1, int32_t h2 DO_APP_FUNC(0x01BA7B60, int32_t, Tuple_CombineHashCodes_1, (int32_t h1, int32_t h2, int32_t h3, MethodInfo * method)); DO_APP_FUNC(0x01BA7B70, int32_t, Tuple_CombineHashCodes_2, (int32_t h1, int32_t h2, int32_t h3, int32_t h4, MethodInfo * method)); DO_APP_FUNC(0x01BA7B90, bool, Type_IsEnumDefined, (Type * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04B10, Type_IsEnumDefined__MethodInfo); DO_APP_FUNC(0x01BA8200, String *, Type_GetEnumName, (Type * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04B30, Type_GetEnumName__MethodInfo); DO_APP_FUNC(0x01BA8600, String__Array *, Type_GetEnumNames, (Type * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04B20, Type_GetEnumNames__MethodInfo); DO_APP_FUNC(0x01BA86C0, Array *, Type_GetEnumRawConstantValues, (Type * __this, MethodInfo * method)); -DO_APP_FUNC(0x01BA86F0, void, Type_GetEnumData, (Type * __this, String__Array * enumNames, Array * enumValues, MethodInfo * method)); +DO_APP_FUNC(0x01BA86F0, void, Type_GetEnumData, (Type * __this, String__Array * * enumNames, Array * * enumValues, MethodInfo * method)); DO_APP_FUNC(0x01BA8C10, int32_t, Type_BinarySearch, (Array * array, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01BA8DD0, bool, Type_IsIntegerType, (Type * t, MethodInfo * method)); DO_APP_FUNC(0x01BA9090, bool, Type_get_IsSerializable, (Type * __this, MethodInfo * method)); @@ -2609,8 +2840,11 @@ DO_APP_FUNC(0x01BA95B0, bool, Type_IsSubclassOf, (Type * __this, Type * c, Metho DO_APP_FUNC(0x01BA9670, bool, Type_IsAssignableFrom, (Type * __this, Type * c, MethodInfo * method)); DO_APP_FUNC(0x01BA9850, bool, Type_ImplementInterface, (Type * __this, Type * ifaceType, MethodInfo * method)); DO_APP_FUNC(0x01BA99B0, bool, Type_FilterAttributeImpl, (MemberInfo_1 * m, Object * filterCriteria, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04AA0, Type_FilterAttributeImpl__MethodInfo); DO_APP_FUNC(0x01BA9D60, bool, Type_FilterNameImpl, (MemberInfo_1 * m, Object * filterCriteria, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04A98, Type_FilterNameImpl__MethodInfo); DO_APP_FUNC(0x01BAA020, bool, Type_FilterNameIgnoreCaseImpl, (MemberInfo_1 * m, Object * filterCriteria, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04AF8, Type_FilterNameIgnoreCaseImpl__MethodInfo); DO_APP_FUNC(0x003AE050, void, Type__ctor, (Type * __this, MethodInfo * method)); DO_APP_FUNC(0x00AEF240, MemberTypes__Enum, Type_get_MemberType, (Type * __this, MethodInfo * method)); DO_APP_FUNC(0x01BAA430, Type *, Type_GetType, (Type * __this, MethodInfo * method)); @@ -2622,20 +2856,28 @@ DO_APP_FUNC(0x01BAA4B0, bool, Type_get_IsArray, (Type * __this, MethodInfo * met DO_APP_FUNC(0x01BAA4D0, bool, Type_get_IsByRef, (Type * __this, MethodInfo * method)); DO_APP_FUNC(0x01BAA4F0, bool, Type_get_IsPointer, (Type * __this, MethodInfo * method)); DO_APP_FUNC(0x01BAA510, bool, Type_get_IsConstructedGenericType, (Type * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04AF0, Type_get_IsConstructedGenericType__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, Type_get_IsGenericParameter, (Type * __this, MethodInfo * method)); DO_APP_FUNC(0x01BAA540, bool, Type_get_IsGenericMethodParameter, (Type * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, Type_get_IsGenericType, (Type * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, Type_get_IsGenericTypeDefinition, (Type * __this, MethodInfo * method)); DO_APP_FUNC(0x01BAA5C0, bool, Type_get_IsSZArray, (Type * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04AE8, Type_get_IsSZArray__MethodInfo); DO_APP_FUNC(0x01BAA5F0, bool, Type_get_IsVariableBoundArray, (Type * __this, MethodInfo * method)); DO_APP_FUNC(0x01BAA640, bool, Type_get_HasElementType, (Type * __this, MethodInfo * method)); DO_APP_FUNC(0x01BAA660, int32_t, Type_GetArrayRank, (Type * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04AE0, Type_GetArrayRank__MethodInfo); DO_APP_FUNC(0x01BAA6C0, Type *, Type_GetGenericTypeDefinition, (Type * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04AD8, Type_GetGenericTypeDefinition__MethodInfo); DO_APP_FUNC(0x01BAA720, Type__Array *, Type_get_GenericTypeArguments, (Type * __this, MethodInfo * method)); DO_APP_FUNC(0x01BAA7B0, Type__Array *, Type_GetGenericArguments, (Type * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04AD0, Type_GetGenericArguments__MethodInfo); DO_APP_FUNC(0x01BAA810, int32_t, Type_get_GenericParameterPosition, (Type * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04AC8, Type_get_GenericParameterPosition__MethodInfo); DO_APP_FUNC(0x01BAA870, GenericParameterAttributes__Enum, Type_get_GenericParameterAttributes, (Type * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04AC0, Type_get_GenericParameterAttributes__MethodInfo); DO_APP_FUNC(0x01BAA8C0, Type__Array *, Type_GetGenericParameterConstraints, (Type * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04AB8, Type_GetGenericParameterConstraints__MethodInfo); DO_APP_FUNC(0x01BAA970, TypeAttributes__Enum, Type_get_Attributes, (Type * __this, MethodInfo * method)); DO_APP_FUNC(0x01BAA990, bool, Type_get_IsAbstract, (Type * __this, MethodInfo * method)); DO_APP_FUNC(0x01BAA9C0, bool, Type_get_IsSealed, (Type * __this, MethodInfo * method)); @@ -2659,28 +2901,37 @@ DO_APP_FUNC(0x0041AF00, bool, Type_get_IsSignatureType, (Type * __this, MethodIn DO_APP_FUNC(0x01BAADF0, ConstructorInfo *, Type_GetConstructor, (Type * __this, Type__Array * types, MethodInfo * method)); DO_APP_FUNC(0x01BAAE20, ConstructorInfo *, Type_GetConstructor_1, (Type * __this, BindingFlags__Enum bindingAttr, Binder * binder, Type__Array * types, ParameterModifier__Array * modifiers, MethodInfo * method)); DO_APP_FUNC(0x01BAAE50, ConstructorInfo *, Type_GetConstructor_2, (Type * __this, BindingFlags__Enum bindingAttr, Binder * binder, CallingConventions__Enum callConvention, Type__Array * types, ParameterModifier__Array * modifiers, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04A50, Type_GetConstructor_2__MethodInfo); DO_APP_FUNC(0x01BAAFE0, EventInfo_1 *, Type_GetEvent, (Type * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x01BAB000, FieldInfo_1 *, Type_GetField, (Type * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x01BAB020, FieldInfo_1__Array *, Type_GetFields, (Type * __this, MethodInfo * method)); DO_APP_FUNC(0x01BAB040, MemberInfo_1__Array *, Type_GetMember, (Type * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x01BAB060, MemberInfo_1__Array *, Type_GetMember_1, (Type * __this, String * name, BindingFlags__Enum bindingAttr, MethodInfo * method)); DO_APP_FUNC(0x01BAB090, MemberInfo_1__Array *, Type_GetMember_2, (Type * __this, String * name, MemberTypes__Enum type, BindingFlags__Enum bindingAttr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04A48, Type_GetMember_2__MethodInfo); DO_APP_FUNC(0x01BAB0F0, MethodInfo_1 *, Type_GetMethod, (Type * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x01BAB190, MethodInfo_1 *, Type_GetMethod_1, (Type * __this, String * name, BindingFlags__Enum bindingAttr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04A40, Type_GetMethod_1__MethodInfo); DO_APP_FUNC(0x01BAB230, MethodInfo_1 *, Type_GetMethod_2, (Type * __this, String * name, Type__Array * types, MethodInfo * method)); DO_APP_FUNC(0x01BAB260, MethodInfo_1 *, Type_GetMethod_3, (Type * __this, String * name, Type__Array * types, ParameterModifier__Array * modifiers, MethodInfo * method)); DO_APP_FUNC(0x01BAB290, MethodInfo_1 *, Type_GetMethod_4, (Type * __this, String * name, BindingFlags__Enum bindingAttr, Binder * binder, Type__Array * types, ParameterModifier__Array * modifiers, MethodInfo * method)); DO_APP_FUNC(0x01BAB2D0, MethodInfo_1 *, Type_GetMethod_5, (Type * __this, String * name, BindingFlags__Enum bindingAttr, Binder * binder, CallingConventions__Enum callConvention, Type__Array * types, ParameterModifier__Array * modifiers, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04A38, Type_GetMethod_5__MethodInfo); DO_APP_FUNC(0x01BAB4D0, MethodInfo_1__Array *, Type_GetMethods, (Type * __this, MethodInfo * method)); DO_APP_FUNC(0x01BAB4F0, PropertyInfo_1 *, Type_GetProperty, (Type * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x01BAB590, PropertyInfo_1 *, Type_GetProperty_1, (Type * __this, String * name, BindingFlags__Enum bindingAttr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04A90, Type_GetProperty_1__MethodInfo); DO_APP_FUNC(0x01BAB630, PropertyInfo_1 *, Type_GetProperty_2, (Type * __this, String * name, Type * returnType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04A88, Type_GetProperty_2__MethodInfo); DO_APP_FUNC(0x01BAB780, PropertyInfo_1 *, Type_GetProperty_3, (Type * __this, String * name, Type * returnType, Type__Array * types, MethodInfo * method)); DO_APP_FUNC(0x01BAB860, PropertyInfo_1 *, Type_GetProperty_4, (Type * __this, String * name, Type * returnType, Type__Array * types, ParameterModifier__Array * modifiers, MethodInfo * method)); DO_APP_FUNC(0x01BAB950, PropertyInfo_1 *, Type_GetProperty_5, (Type * __this, String * name, BindingFlags__Enum bindingAttr, Binder * binder, Type * returnType, Type__Array * types, ParameterModifier__Array * modifiers, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04A78, Type_GetProperty_5__MethodInfo); DO_APP_FUNC(0x01BABA50, PropertyInfo_1__Array *, Type_GetProperties, (Type * __this, MethodInfo * method)); DO_APP_FUNC(0x01BABA70, RuntimeTypeHandle, Type_get_TypeHandle, (Type * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04A70, Type_get_TypeHandle__MethodInfo); DO_APP_FUNC(0x01BABAC0, RuntimeTypeHandle, Type_GetTypeHandle, (Object * o, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04A68, Type_GetTypeHandle__MethodInfo); DO_APP_FUNC(0x01BABB60, TypeCode__Enum, Type_GetTypeCode, (Type * type, MethodInfo * method)); DO_APP_FUNC(0x01BABBD0, TypeCode__Enum, Type_GetTypeCodeImpl, (Type * __this, MethodInfo * method)); DO_APP_FUNC(0x01BABD20, Type *, Type_GetTypeFromCLSID, (Guid clsid, MethodInfo * method)); @@ -2688,12 +2939,19 @@ DO_APP_FUNC(0x01BABD70, Object *, Type_InvokeMember, (Type * __this, String * na DO_APP_FUNC(0x01BABDC0, bool, Type_IsInstanceOfType, (Type * __this, Object * o, MethodInfo * method)); DO_APP_FUNC(0x01BABE10, bool, Type_IsEquivalentTo, (Type * __this, Type * other, MethodInfo * method)); DO_APP_FUNC(0x01BABE70, Type *, Type_GetEnumUnderlyingType, (Type * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04A20, Type_GetEnumUnderlyingType__MethodInfo); DO_APP_FUNC(0x01BABFD0, Array *, Type_GetEnumValues, (Type * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04A10, Type_GetEnumValues__MethodInfo); DO_APP_FUNC(0x01BAC080, Type *, Type_MakeArrayType, (Type * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04A08, Type_MakeArrayType__MethodInfo); DO_APP_FUNC(0x01BAC0D0, Type *, Type_MakeArrayType_1, (Type * __this, int32_t rank, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04A00, Type_MakeArrayType_1__MethodInfo); DO_APP_FUNC(0x01BAC120, Type *, Type_MakeByRefType, (Type * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D049F8, Type_MakeByRefType__MethodInfo); DO_APP_FUNC(0x01BAC170, Type *, Type_MakeGenericType, (Type * __this, Type__Array * typeArguments, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D049F0, Type_MakeGenericType__MethodInfo); DO_APP_FUNC(0x01BAC1D0, Type *, Type_MakePointerType, (Type * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D049E8, Type_MakePointerType__MethodInfo); DO_APP_FUNC(0x01BAC220, Type *, Type_MakeGenericSignatureType, (Type * genericTypeDefinition, Type__Array * typeArguments, MethodInfo * method)); DO_APP_FUNC(0x01BAC2A0, String *, Type_ToString, (Type * __this, MethodInfo * method)); DO_APP_FUNC(0x01BAC300, bool, Type_Equals, (Type * __this, Object * o, MethodInfo * method)); @@ -2705,19 +2963,21 @@ DO_APP_FUNC(0x01BAC670, Type *, Type_internal_from_handle, (void * handle, Metho DO_APP_FUNC(0x0041AF00, bool, Type_get_IsSzArray, (Type * __this, MethodInfo * method)); DO_APP_FUNC(0x01BAC690, String *, Type_FormatTypeName, (Type * __this, MethodInfo * method)); DO_APP_FUNC(0x01BAC6B0, String *, Type_FormatTypeName_1, (Type * __this, bool serialization, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04A28, Type_FormatTypeName_1__MethodInfo); DO_APP_FUNC(0x01BAC700, bool, Type_get_IsInterface, (Type * __this, MethodInfo * method)); DO_APP_FUNC(0x01BAC7C0, Type *, Type_GetType_1, (String * typeName, bool throwOnError, bool ignoreCase, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA83E8, Type_GetType_1__MethodInfo); DO_APP_FUNC(0x01BAC8B0, Type *, Type_GetType_2, (String * typeName, bool throwOnError, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA4138, Type_GetType_2__MethodInfo); DO_APP_FUNC(0x01BAC990, Type *, Type_GetType_3, (String * typeName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC0D0, Type_GetType_3__MethodInfo); DO_APP_FUNC(0x01BACA60, Type *, Type_GetType_4, (String * typeName, Func_2_System_Reflection_AssemblyName_System_Reflection_Assembly_ * assemblyResolver, Func_4_System_Reflection_Assembly_String_Boolean_Type_ * typeResolver, bool throwOnError, MethodInfo * method)); DO_APP_FUNC(0x00A89090, bool, Type_op_Equality, (Type * left, Type * right, MethodInfo * method)); DO_APP_FUNC(0x00A92050, bool, Type_op_Inequality, (Type * left, Type * right, MethodInfo * method)); DO_APP_FUNC(0x01BACBB0, Type *, Type_GetTypeFromCLSID_1, (Guid clsid, String * server, bool throwOnError, MethodInfo * method)); DO_APP_FUNC(0x01BACC10, String *, Type_get_FullNameOrDefault, (Type * __this, MethodInfo * method)); DO_APP_FUNC(0x01BACCA0, bool, Type_IsRuntimeImplemented, (Type * __this, MethodInfo * method)); -DO_APP_FUNC(0x01BACD40, String *, Type_InternalGetNameIfAvailable, (Type * __this, Type * rootCauseForFailure, MethodInfo * method)); +DO_APP_FUNC(0x01BACD40, String *, Type_InternalGetNameIfAvailable, (Type * __this, Type * * rootCauseForFailure, MethodInfo * method)); DO_APP_FUNC(0x01BACD60, String *, Type_get_InternalNameIfAvailable, (Type * __this, MethodInfo * method)); DO_APP_FUNC(0x01BACD90, String *, Type_get_NameOrDefault, (Type * __this, MethodInfo * method)); DO_APP_FUNC(0x01BACE00, void, Type__cctor, (MethodInfo * method)); @@ -2729,102 +2989,109 @@ DO_APP_FUNC(0x01BAD2D0, void, TypeInitializationException__ctor_2, (TypeInitiali DO_APP_FUNC(0x01BAD360, void, TypeInitializationException__ctor_3, (TypeInitializationException * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x01BAD470, void, TypeInitializationException_GetObjectData, (TypeInitializationException * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x01BAD640, String *, TypeInitializationException_get_TypeName, (TypeInitializationException * __this, MethodInfo * method)); -DO_APP_FUNC(0x01BAD6A0, int32_t, UInt16_CompareTo, (UInt16__Boxed * __this, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x01AA4920, int32_t, UInt16_CompareTo_1, (UInt16__Boxed * __this, uint16_t value, MethodInfo * method)); -DO_APP_FUNC(0x01BAD780, bool, UInt16_Equals, (UInt16__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x01AA4830, bool, UInt16_Equals_1, (UInt16__Boxed * __this, uint16_t obj, MethodInfo * method)); -DO_APP_FUNC(0x00C15E20, int32_t, UInt16_GetHashCode, (UInt16__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01BAD810, String *, UInt16_ToString, (UInt16__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01BAD8B0, String *, UInt16_ToString_1, (UInt16__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BAD960, String *, UInt16_ToString_2, (UInt16__Boxed * __this, String * format, MethodInfo * method)); -DO_APP_FUNC(0x01BADA20, String *, UInt16_ToString_3, (UInt16__Boxed * __this, String * format, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BADAF0, bool, UInt16_TryFormat, (UInt16__Boxed * __this, Span_1_Char_ destination, int32_t charsWritten, ReadOnlySpan_1_Char_ format, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BAD6A0, int32_t, UInt16_CompareTo, (UInt16 * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04990, UInt16_CompareTo__MethodInfo); +DO_APP_FUNC(0x01AA4920, int32_t, UInt16_CompareTo_1, (UInt16 * __this, uint16_t value, MethodInfo * method)); +DO_APP_FUNC(0x01BAD780, bool, UInt16_Equals, (UInt16 * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x01AA4830, bool, UInt16_Equals_1, (UInt16 * __this, uint16_t obj, MethodInfo * method)); +DO_APP_FUNC(0x00C15E20, int32_t, UInt16_GetHashCode, (UInt16 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01BAD810, String *, UInt16_ToString, (UInt16 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01BAD8B0, String *, UInt16_ToString_1, (UInt16 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BAD960, String *, UInt16_ToString_2, (UInt16 * __this, String * format, MethodInfo * method)); +DO_APP_FUNC(0x01BADA20, String *, UInt16_ToString_3, (UInt16 * __this, String * format, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BADAF0, bool, UInt16_TryFormat, (UInt16 * __this, Span_1_Char_ destination, int32_t * charsWritten, ReadOnlySpan_1_Char_ format, IFormatProvider * provider, MethodInfo * method)); DO_APP_FUNC(0x01BADBA0, uint16_t, UInt16_Parse, (String * s, MethodInfo * method)); DO_APP_FUNC(0x01BADC20, uint16_t, UInt16_Parse_1, (String * s, NumberStyles__Enum style, MethodInfo * method)); DO_APP_FUNC(0x01BADCB0, uint16_t, UInt16_Parse_2, (String * s, IFormatProvider * provider, MethodInfo * method)); DO_APP_FUNC(0x01BADD40, uint16_t, UInt16_Parse_3, (String * s, NumberStyles__Enum style, IFormatProvider * provider, MethodInfo * method)); DO_APP_FUNC(0x01BADDE0, uint16_t, UInt16_Parse_4, (ReadOnlySpan_1_Char_ s, NumberStyles__Enum style, NumberFormatInfo * info, MethodInfo * method)); -DO_APP_FUNC(0x01BADF20, bool, UInt16_TryParse, (String * s, uint16_t result, MethodInfo * method)); -DO_APP_FUNC(0x01BAE020, bool, UInt16_TryParse_1, (String * s, NumberStyles__Enum style, IFormatProvider * provider, uint16_t result, MethodInfo * method)); -DO_APP_FUNC(0x01BAE0E0, bool, UInt16_TryParse_2, (ReadOnlySpan_1_Char_ s, NumberStyles__Enum style, NumberFormatInfo * info, uint16_t result, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1F0, TypeCode__Enum, UInt16_GetTypeCode, (UInt16__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01BAE190, bool, UInt16_System_IConvertible_ToBoolean, (UInt16__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BAE1E0, uint16_t, UInt16_System_IConvertible_ToChar, (UInt16__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BAE230, int8_t, UInt16_System_IConvertible_ToSByte, (UInt16__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BAE2C0, uint8_t, UInt16_System_IConvertible_ToByte, (UInt16__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BAE350, int16_t, UInt16_System_IConvertible_ToInt16, (UInt16__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x00C15E20, uint16_t, UInt16_System_IConvertible_ToUInt16, (UInt16__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BAE3E0, int32_t, UInt16_System_IConvertible_ToInt32, (UInt16__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BAE430, uint32_t, UInt16_System_IConvertible_ToUInt32, (UInt16__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BAE480, int64_t, UInt16_System_IConvertible_ToInt64, (UInt16__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BAE4D0, uint64_t, UInt16_System_IConvertible_ToUInt64, (UInt16__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BAE520, float, UInt16_System_IConvertible_ToSingle, (UInt16__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BAE570, double, UInt16_System_IConvertible_ToDouble, (UInt16__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BAE5C0, Decimal, UInt16_System_IConvertible_ToDecimal, (UInt16__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BAE670, DateTime, UInt16_System_IConvertible_ToDateTime, (UInt16__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BAE700, Object *, UInt16_System_IConvertible_ToType, (UInt16__Boxed * __this, Type * type, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BAE7A0, int32_t, UInt32_CompareTo, (UInt32__Boxed * __this, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x00C0F5A0, int32_t, UInt32_CompareTo_1, (UInt32__Boxed * __this, uint32_t value, MethodInfo * method)); -DO_APP_FUNC(0x01BAE890, bool, UInt32_Equals, (UInt32__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x00C0F590, bool, UInt32_Equals_1, (UInt32__Boxed * __this, uint32_t obj, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, UInt32_GetHashCode, (UInt32__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01BAE920, String *, UInt32_ToString, (UInt32__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01BAE9C0, String *, UInt32_ToString_1, (UInt32__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BAEA70, String *, UInt32_ToString_2, (UInt32__Boxed * __this, String * format, MethodInfo * method)); -DO_APP_FUNC(0x01BAEB30, String *, UInt32_ToString_3, (UInt32__Boxed * __this, String * format, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BAEC00, bool, UInt32_TryFormat, (UInt32__Boxed * __this, Span_1_Char_ destination, int32_t charsWritten, ReadOnlySpan_1_Char_ format, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D049A0, UInt16_Parse_4__MethodInfo); +DO_APP_FUNC(0x01BADF20, bool, UInt16_TryParse, (String * s, uint16_t * result, MethodInfo * method)); +DO_APP_FUNC(0x01BAE020, bool, UInt16_TryParse_1, (String * s, NumberStyles__Enum style, IFormatProvider * provider, uint16_t * result, MethodInfo * method)); +DO_APP_FUNC(0x01BAE0E0, bool, UInt16_TryParse_2, (ReadOnlySpan_1_Char_ s, NumberStyles__Enum style, NumberFormatInfo * info, uint16_t * result, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1F0, TypeCode__Enum, UInt16_GetTypeCode, (UInt16 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01BAE190, bool, UInt16_System_IConvertible_ToBoolean, (UInt16 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BAE1E0, uint16_t, UInt16_System_IConvertible_ToChar, (UInt16 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BAE230, int8_t, UInt16_System_IConvertible_ToSByte, (UInt16 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BAE2C0, uint8_t, UInt16_System_IConvertible_ToByte, (UInt16 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BAE350, int16_t, UInt16_System_IConvertible_ToInt16, (UInt16 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x00C15E20, uint16_t, UInt16_System_IConvertible_ToUInt16, (UInt16 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BAE3E0, int32_t, UInt16_System_IConvertible_ToInt32, (UInt16 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BAE430, uint32_t, UInt16_System_IConvertible_ToUInt32, (UInt16 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BAE480, int64_t, UInt16_System_IConvertible_ToInt64, (UInt16 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BAE4D0, uint64_t, UInt16_System_IConvertible_ToUInt64, (UInt16 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BAE520, float, UInt16_System_IConvertible_ToSingle, (UInt16 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BAE570, double, UInt16_System_IConvertible_ToDouble, (UInt16 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BAE5C0, Decimal, UInt16_System_IConvertible_ToDecimal, (UInt16 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BAE670, DateTime, UInt16_System_IConvertible_ToDateTime, (UInt16 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04978, UInt16_System_IConvertible_ToDateTime__MethodInfo); +DO_APP_FUNC(0x01BAE700, Object *, UInt16_System_IConvertible_ToType, (UInt16 * __this, Type * type, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BAE7A0, int32_t, UInt32_CompareTo, (UInt32 * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04980, UInt32_CompareTo__MethodInfo); +DO_APP_FUNC(0x00C0F5A0, int32_t, UInt32_CompareTo_1, (UInt32 * __this, uint32_t value, MethodInfo * method)); +DO_APP_FUNC(0x01BAE890, bool, UInt32_Equals, (UInt32 * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x00C0F590, bool, UInt32_Equals_1, (UInt32 * __this, uint32_t obj, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, UInt32_GetHashCode, (UInt32 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01BAE920, String *, UInt32_ToString, (UInt32 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01BAE9C0, String *, UInt32_ToString_1, (UInt32 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BAEA70, String *, UInt32_ToString_2, (UInt32 * __this, String * format, MethodInfo * method)); +DO_APP_FUNC(0x01BAEB30, String *, UInt32_ToString_3, (UInt32 * __this, String * format, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BAEC00, bool, UInt32_TryFormat, (UInt32 * __this, Span_1_Char_ destination, int32_t * charsWritten, ReadOnlySpan_1_Char_ format, IFormatProvider * provider, MethodInfo * method)); DO_APP_FUNC(0x01BAECB0, uint32_t, UInt32_Parse, (String * s, MethodInfo * method)); DO_APP_FUNC(0x01BAED70, uint32_t, UInt32_Parse_1, (String * s, IFormatProvider * provider, MethodInfo * method)); DO_APP_FUNC(0x01BAEE40, uint32_t, UInt32_Parse_2, (String * s, NumberStyles__Enum style, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BAEF20, bool, UInt32_TryParse, (String * s, uint32_t result, MethodInfo * method)); -DO_APP_FUNC(0x01BAF000, bool, UInt32_TryParse_1, (String * s, NumberStyles__Enum style, IFormatProvider * provider, uint32_t result, MethodInfo * method)); -DO_APP_FUNC(0x009D2B70, TypeCode__Enum, UInt32_GetTypeCode, (UInt32__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01BAF100, bool, UInt32_System_IConvertible_ToBoolean, (UInt32__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BAF150, uint16_t, UInt32_System_IConvertible_ToChar, (UInt32__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BAF1E0, int8_t, UInt32_System_IConvertible_ToSByte, (UInt32__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BAF270, uint8_t, UInt32_System_IConvertible_ToByte, (UInt32__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BAF300, int16_t, UInt32_System_IConvertible_ToInt16, (UInt32__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BAF390, uint16_t, UInt32_System_IConvertible_ToUInt16, (UInt32__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BAF420, int32_t, UInt32_System_IConvertible_ToInt32, (UInt32__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, uint32_t, UInt32_System_IConvertible_ToUInt32, (UInt32__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BAF4B0, int64_t, UInt32_System_IConvertible_ToInt64, (UInt32__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BAF500, uint64_t, UInt32_System_IConvertible_ToUInt64, (UInt32__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BAF550, float, UInt32_System_IConvertible_ToSingle, (UInt32__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BAF5B0, double, UInt32_System_IConvertible_ToDouble, (UInt32__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BAF600, Decimal, UInt32_System_IConvertible_ToDecimal, (UInt32__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BAF6B0, DateTime, UInt32_System_IConvertible_ToDateTime, (UInt32__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BAF740, Object *, UInt32_System_IConvertible_ToType, (UInt32__Boxed * __this, Type * type, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BAF7E0, int32_t, UInt64_CompareTo, (UInt64__Boxed * __this, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x00C0EDC0, int32_t, UInt64_CompareTo_1, (UInt64__Boxed * __this, uint64_t value, MethodInfo * method)); -DO_APP_FUNC(0x01BAF8D0, bool, UInt64_Equals, (UInt64__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x00A9A720, bool, UInt64_Equals_1, (UInt64__Boxed * __this, uint64_t obj, MethodInfo * method)); -DO_APP_FUNC(0x00A9A680, int32_t, UInt64_GetHashCode, (UInt64__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01BAF960, String *, UInt64_ToString, (UInt64__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01BAFA00, String *, UInt64_ToString_1, (UInt64__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BAFAB0, String *, UInt64_ToString_2, (UInt64__Boxed * __this, String * format, MethodInfo * method)); -DO_APP_FUNC(0x01BAFB70, String *, UInt64_ToString_3, (UInt64__Boxed * __this, String * format, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BAFC40, bool, UInt64_TryFormat, (UInt64__Boxed * __this, Span_1_Char_ destination, int32_t charsWritten, ReadOnlySpan_1_Char_ format, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BAEF20, bool, UInt32_TryParse, (String * s, uint32_t * result, MethodInfo * method)); +DO_APP_FUNC(0x01BAF000, bool, UInt32_TryParse_1, (String * s, NumberStyles__Enum style, IFormatProvider * provider, uint32_t * result, MethodInfo * method)); +DO_APP_FUNC(0x009D2B70, TypeCode__Enum, UInt32_GetTypeCode, (UInt32 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01BAF100, bool, UInt32_System_IConvertible_ToBoolean, (UInt32 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BAF150, uint16_t, UInt32_System_IConvertible_ToChar, (UInt32 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BAF1E0, int8_t, UInt32_System_IConvertible_ToSByte, (UInt32 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BAF270, uint8_t, UInt32_System_IConvertible_ToByte, (UInt32 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BAF300, int16_t, UInt32_System_IConvertible_ToInt16, (UInt32 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BAF390, uint16_t, UInt32_System_IConvertible_ToUInt16, (UInt32 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BAF420, int32_t, UInt32_System_IConvertible_ToInt32, (UInt32 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, uint32_t, UInt32_System_IConvertible_ToUInt32, (UInt32 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BAF4B0, int64_t, UInt32_System_IConvertible_ToInt64, (UInt32 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BAF500, uint64_t, UInt32_System_IConvertible_ToUInt64, (UInt32 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BAF550, float, UInt32_System_IConvertible_ToSingle, (UInt32 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BAF5B0, double, UInt32_System_IConvertible_ToDouble, (UInt32 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BAF600, Decimal, UInt32_System_IConvertible_ToDecimal, (UInt32 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BAF6B0, DateTime, UInt32_System_IConvertible_ToDateTime, (UInt32 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04970, UInt32_System_IConvertible_ToDateTime__MethodInfo); +DO_APP_FUNC(0x01BAF740, Object *, UInt32_System_IConvertible_ToType, (UInt32 * __this, Type * type, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BAF7E0, int32_t, UInt64_CompareTo, (UInt64 * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04960, UInt64_CompareTo__MethodInfo); +DO_APP_FUNC(0x00C0EDC0, int32_t, UInt64_CompareTo_1, (UInt64 * __this, uint64_t value, MethodInfo * method)); +DO_APP_FUNC(0x01BAF8D0, bool, UInt64_Equals, (UInt64 * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x00A9A720, bool, UInt64_Equals_1, (UInt64 * __this, uint64_t obj, MethodInfo * method)); +DO_APP_FUNC(0x00A9A680, int32_t, UInt64_GetHashCode, (UInt64 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01BAF960, String *, UInt64_ToString, (UInt64 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01BAFA00, String *, UInt64_ToString_1, (UInt64 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BAFAB0, String *, UInt64_ToString_2, (UInt64 * __this, String * format, MethodInfo * method)); +DO_APP_FUNC(0x01BAFB70, String *, UInt64_ToString_3, (UInt64 * __this, String * format, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BAFC40, bool, UInt64_TryFormat, (UInt64 * __this, Span_1_Char_ destination, int32_t * charsWritten, ReadOnlySpan_1_Char_ format, IFormatProvider * provider, MethodInfo * method)); DO_APP_FUNC(0x01BAFCF0, uint64_t, UInt64_Parse, (String * s, MethodInfo * method)); DO_APP_FUNC(0x01BAFDB0, uint64_t, UInt64_Parse_1, (String * s, IFormatProvider * provider, MethodInfo * method)); DO_APP_FUNC(0x01BAFE80, uint64_t, UInt64_Parse_2, (String * s, NumberStyles__Enum style, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BAFF60, bool, UInt64_TryParse, (String * s, uint64_t result, MethodInfo * method)); -DO_APP_FUNC(0x01BB0040, bool, UInt64_TryParse_1, (String * s, NumberStyles__Enum style, IFormatProvider * provider, uint64_t result, MethodInfo * method)); -DO_APP_FUNC(0x00EAA7B0, TypeCode__Enum, UInt64_GetTypeCode, (UInt64__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01BB0140, bool, UInt64_System_IConvertible_ToBoolean, (UInt64__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BB0190, uint16_t, UInt64_System_IConvertible_ToChar, (UInt64__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BB0220, int8_t, UInt64_System_IConvertible_ToSByte, (UInt64__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BB02B0, uint8_t, UInt64_System_IConvertible_ToByte, (UInt64__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BB0340, int16_t, UInt64_System_IConvertible_ToInt16, (UInt64__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BB03D0, uint16_t, UInt64_System_IConvertible_ToUInt16, (UInt64__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BB0460, int32_t, UInt64_System_IConvertible_ToInt32, (UInt64__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BB04F0, uint32_t, UInt64_System_IConvertible_ToUInt32, (UInt64__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BB0580, int64_t, UInt64_System_IConvertible_ToInt64, (UInt64__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x00471910, uint64_t, UInt64_System_IConvertible_ToUInt64, (UInt64__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BB0610, float, UInt64_System_IConvertible_ToSingle, (UInt64__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BB0690, double, UInt64_System_IConvertible_ToDouble, (UInt64__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BB0700, Decimal, UInt64_System_IConvertible_ToDecimal, (UInt64__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BB07B0, DateTime, UInt64_System_IConvertible_ToDateTime, (UInt64__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BB0840, Object *, UInt64_System_IConvertible_ToType, (UInt64__Boxed * __this, Type * type, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BAFF60, bool, UInt64_TryParse, (String * s, uint64_t * result, MethodInfo * method)); +DO_APP_FUNC(0x01BB0040, bool, UInt64_TryParse_1, (String * s, NumberStyles__Enum style, IFormatProvider * provider, uint64_t * result, MethodInfo * method)); +DO_APP_FUNC(0x00EAA7B0, TypeCode__Enum, UInt64_GetTypeCode, (UInt64 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01BB0140, bool, UInt64_System_IConvertible_ToBoolean, (UInt64 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BB0190, uint16_t, UInt64_System_IConvertible_ToChar, (UInt64 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BB0220, int8_t, UInt64_System_IConvertible_ToSByte, (UInt64 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BB02B0, uint8_t, UInt64_System_IConvertible_ToByte, (UInt64 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BB0340, int16_t, UInt64_System_IConvertible_ToInt16, (UInt64 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BB03D0, uint16_t, UInt64_System_IConvertible_ToUInt16, (UInt64 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BB0460, int32_t, UInt64_System_IConvertible_ToInt32, (UInt64 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BB04F0, uint32_t, UInt64_System_IConvertible_ToUInt32, (UInt64 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BB0580, int64_t, UInt64_System_IConvertible_ToInt64, (UInt64 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x00471910, uint64_t, UInt64_System_IConvertible_ToUInt64, (UInt64 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BB0610, float, UInt64_System_IConvertible_ToSingle, (UInt64 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BB0690, double, UInt64_System_IConvertible_ToDouble, (UInt64 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BB0700, Decimal, UInt64_System_IConvertible_ToDecimal, (UInt64 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BB07B0, DateTime, UInt64_System_IConvertible_ToDateTime, (UInt64 * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04958, UInt64_System_IConvertible_ToDateTime__MethodInfo); +DO_APP_FUNC(0x01BB0840, Object *, UInt64_System_IConvertible_ToType, (UInt64 * __this, Type * type, IFormatProvider * provider, MethodInfo * method)); DO_APP_FUNC(0x01BB08E0, void, UnauthorizedAccessException__ctor, (UnauthorizedAccessException * __this, MethodInfo * method)); DO_APP_FUNC(0x01BB0930, void, UnauthorizedAccessException__ctor_1, (UnauthorizedAccessException * __this, String * message, MethodInfo * method)); DO_APP_FUNC(0x01980BF0, void, UnauthorizedAccessException__ctor_2, (UnauthorizedAccessException * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); @@ -2833,18 +3100,20 @@ DO_APP_FUNC(0x003BB3C0, Object *, UnhandledExceptionEventArgs_get_ExceptionObjec DO_APP_FUNC(0x003BCC40, bool, UnhandledExceptionEventArgs_get_IsTerminating, (UnhandledExceptionEventArgs * __this, MethodInfo * method)); DO_APP_FUNC(0x0103E630, void, UnhandledExceptionEventHandler__ctor, (UnhandledExceptionEventHandler * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EC2D0, void, UnhandledExceptionEventHandler_Invoke, (UnhandledExceptionEventHandler * __this, Object * sender, UnhandledExceptionEventArgs * e, MethodInfo * method)); -DO_APP_FUNC(0x01BB0A10, bool, ValueTuple_Equals, (ValueTuple__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0041AEF0, bool, ValueTuple_Equals_1, (ValueTuple__Boxed * __this, ValueTuple other, MethodInfo * method)); -DO_APP_FUNC(0x01BB0A60, bool, ValueTuple_System_Collections_IStructuralEquatable_Equals, (ValueTuple__Boxed * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01BB0AB0, int32_t, ValueTuple_System_IComparable_CompareTo, (ValueTuple__Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x003CB690, int32_t, ValueTuple_CompareTo, (ValueTuple__Boxed * __this, ValueTuple other, MethodInfo * method)); -DO_APP_FUNC(0x01BB0BD0, int32_t, ValueTuple_System_Collections_IStructuralComparable_CompareTo, (ValueTuple__Boxed * __this, Object * other, IComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x003CB690, int32_t, ValueTuple_GetHashCode, (ValueTuple__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003CB690, int32_t, ValueTuple_System_Collections_IStructuralEquatable_GetHashCode, (ValueTuple__Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x003CB690, int32_t, ValueTuple_System_IValueTupleInternal_GetHashCode, (ValueTuple__Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01BB0CF0, String *, ValueTuple_ToString, (ValueTuple__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01BB0D30, String *, ValueTuple_System_IValueTupleInternal_ToStringEnd, (ValueTuple__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003CB690, int32_t, ValueTuple_System_Runtime_CompilerServices_ITuple_get_Length, (ValueTuple__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01BB0A10, bool, ValueTuple_Equals, (ValueTuple * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x0041AEF0, bool, ValueTuple_Equals_1, (ValueTuple * __this, ValueTuple other, MethodInfo * method)); +DO_APP_FUNC(0x01BB0A60, bool, ValueTuple_System_Collections_IStructuralEquatable_Equals, (ValueTuple * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01BB0AB0, int32_t, ValueTuple_System_IComparable_CompareTo, (ValueTuple * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04930, ValueTuple_System_IComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x003CB690, int32_t, ValueTuple_CompareTo, (ValueTuple * __this, ValueTuple other, MethodInfo * method)); +DO_APP_FUNC(0x01BB0BD0, int32_t, ValueTuple_System_Collections_IStructuralComparable_CompareTo, (ValueTuple * __this, Object * other, IComparer * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04928, ValueTuple_System_Collections_IStructuralComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x003CB690, int32_t, ValueTuple_GetHashCode, (ValueTuple * __this, MethodInfo * method)); +DO_APP_FUNC(0x003CB690, int32_t, ValueTuple_System_Collections_IStructuralEquatable_GetHashCode, (ValueTuple * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x003CB690, int32_t, ValueTuple_System_IValueTupleInternal_GetHashCode, (ValueTuple * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01BB0CF0, String *, ValueTuple_ToString, (ValueTuple * __this, MethodInfo * method)); +DO_APP_FUNC(0x01BB0D30, String *, ValueTuple_System_IValueTupleInternal_ToStringEnd, (ValueTuple * __this, MethodInfo * method)); +DO_APP_FUNC(0x003CB690, int32_t, ValueTuple_System_Runtime_CompilerServices_ITuple_get_Length, (ValueTuple * __this, MethodInfo * method)); DO_APP_FUNC(0x01BB0D70, int32_t, ValueTuple_CombineHashCodes, (int32_t h1, int32_t h2, MethodInfo * method)); DO_APP_FUNC(0x01BB0E00, int32_t, ValueTuple_CombineHashCodes_1, (int32_t h1, int32_t h2, int32_t h3, MethodInfo * method)); DO_APP_FUNC(0x01BB0E80, int32_t, ValueTuple_CombineHashCodes_2, (int32_t h1, int32_t h2, int32_t h3, int32_t h4, MethodInfo * method)); @@ -2853,8 +3122,11 @@ DO_APP_FUNC(0x01BB0FB0, int32_t, ValueTuple_CombineHashCodes_4, (int32_t h1, int DO_APP_FUNC(0x01BB1050, int32_t, ValueTuple_CombineHashCodes_5, (int32_t h1, int32_t h2, int32_t h3, int32_t h4, int32_t h5, int32_t h6, int32_t h7, MethodInfo * method)); DO_APP_FUNC(0x01BB1100, int32_t, ValueTuple_CombineHashCodes_6, (int32_t h1, int32_t h2, int32_t h3, int32_t h4, int32_t h5, int32_t h6, int32_t h7, int32_t h8, MethodInfo * method)); DO_APP_FUNC(0x01BB11C0, void, Version__ctor, (Version * __this, int32_t major, int32_t minor, int32_t build, int32_t revision, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D048D8, Version__ctor__MethodInfo); DO_APP_FUNC(0x01BB13A0, void, Version__ctor_1, (Version * __this, int32_t major, int32_t minor, int32_t build, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D048B8, Version__ctor_1__MethodInfo); DO_APP_FUNC(0x01BB1510, void, Version__ctor_2, (Version * __this, int32_t major, int32_t minor, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D048B0, Version__ctor_2__MethodInfo); DO_APP_FUNC(0x01BB1610, void, Version__ctor_3, (Version * __this, String * version, MethodInfo * method)); DO_APP_FUNC(0x01BB1700, void, Version__ctor_4, (Version * __this, MethodInfo * method)); DO_APP_FUNC(0x01BB1710, void, Version__ctor_5, (Version * __this, Version * version, MethodInfo * method)); @@ -2864,24 +3136,31 @@ DO_APP_FUNC(0x003BCD70, int32_t, Version_get_Minor, (Version * __this, MethodInf DO_APP_FUNC(0x003BC2E0, int32_t, Version_get_Build, (Version * __this, MethodInfo * method)); DO_APP_FUNC(0x003CD440, int32_t, Version_get_Revision, (Version * __this, MethodInfo * method)); DO_APP_FUNC(0x01BB17D0, int32_t, Version_CompareTo, (Version * __this, Object * version, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D048A0, Version_CompareTo__MethodInfo); DO_APP_FUNC(0x01BB18C0, int32_t, Version_CompareTo_1, (Version * __this, Version * value, MethodInfo * method)); DO_APP_FUNC(0x01BB1920, bool, Version_Equals, (Version * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x01BB19C0, bool, Version_Equals_1, (Version * __this, Version * obj, MethodInfo * method)); DO_APP_FUNC(0x01BB1A00, int32_t, Version_GetHashCode, (Version * __this, MethodInfo * method)); DO_APP_FUNC(0x01BB1A30, String *, Version_ToString, (Version * __this, MethodInfo * method)); DO_APP_FUNC(0x01BB1A60, String *, Version_ToString_1, (Version * __this, int32_t fieldCount, MethodInfo * method)); -DO_APP_FUNC(0x01BB1B20, bool, Version_TryFormat, (Version * __this, Span_1_Char_ destination, int32_t charsWritten, MethodInfo * method)); -DO_APP_FUNC(0x01BB1C10, bool, Version_TryFormat_1, (Version * __this, Span_1_Char_ destination, int32_t fieldCount, int32_t charsWritten, MethodInfo * method)); -DO_APP_FUNC(0x01BB1B20, bool, Version_System_ISpanFormattable_TryFormat, (Version * __this, Span_1_Char_ destination, int32_t charsWritten, ReadOnlySpan_1_Char_ format, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BB1B20, bool, Version_TryFormat, (Version * __this, Span_1_Char_ destination, int32_t * charsWritten, MethodInfo * method)); +DO_APP_FUNC(0x01BB1C10, bool, Version_TryFormat_1, (Version * __this, Span_1_Char_ destination, int32_t fieldCount, int32_t * charsWritten, MethodInfo * method)); +DO_APP_FUNC(0x01BB1B20, bool, Version_System_ISpanFormattable_TryFormat, (Version * __this, Span_1_Char_ destination, int32_t * charsWritten, ReadOnlySpan_1_Char_ format, IFormatProvider * provider, MethodInfo * method)); DO_APP_FUNC(0x01BB1D80, int32_t, Version_get_DefaultFormatFieldCount, (Version * __this, MethodInfo * method)); DO_APP_FUNC(0x01BB1DA0, StringBuilder *, Version_ToCachedStringBuilder, (Version * __this, int32_t fieldCount, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04918, Version_ToCachedStringBuilder__MethodInfo); DO_APP_FUNC(0x01BB2110, Version *, Version_Parse, (String * input, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04910, Version_Parse__MethodInfo); DO_APP_FUNC(0x01BB21D0, Version *, Version_ParseVersion, (ReadOnlySpan_1_Char_ input, bool throwOnFailure, MethodInfo * method)); -DO_APP_FUNC(0x01BB2C60, bool, Version_TryParseComponent, (ReadOnlySpan_1_Char_ component, String * componentName, bool throwOnFailure, int32_t parsedComponent, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04900, Version_ParseVersion__MethodInfo); +DO_APP_FUNC(0x01BB2C60, bool, Version_TryParseComponent, (ReadOnlySpan_1_Char_ component, String * componentName, bool throwOnFailure, int32_t * parsedComponent, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D048F8, Version_TryParseComponent__MethodInfo); DO_APP_FUNC(0x01BB2E30, bool, Version_op_Equality, (Version * v1, Version * v2, MethodInfo * method)); DO_APP_FUNC(0x01BB2E70, bool, Version_op_Inequality, (Version * v1, Version * v2, MethodInfo * method)); DO_APP_FUNC(0x01BB2EB0, bool, Version_op_LessThan, (Version * v1, Version * v2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D048E8, Version_op_LessThan__MethodInfo); DO_APP_FUNC(0x01BB2F50, bool, Version_op_LessThanOrEqual, (Version * v1, Version * v2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D048E0, Version_op_LessThanOrEqual__MethodInfo); DO_APP_FUNC(0x01BB3070, bool, Version_op_GreaterThan, (Version * v1, Version * v2, MethodInfo * method)); DO_APP_FUNC(0x01BB3110, bool, Version_op_GreaterThanOrEqual, (Version * v1, Version * v2, MethodInfo * method)); DO_APP_FUNC(0x01BB3230, Exception *, NotImplemented_get_ByDesign, (MethodInfo * method)); @@ -2890,58 +3169,90 @@ DO_APP_FUNC(0x003EC2D0, void, ConsoleCancelEventHandler_Invoke, (ConsoleCancelEv DO_APP_FUNC(0x01BB32C0, void, ConsoleCancelEventArgs__ctor, (ConsoleCancelEventArgs * __this, ConsoleSpecialKey__Enum type, MethodInfo * method)); DO_APP_FUNC(0x003CD410, bool, ConsoleCancelEventArgs_get_Cancel, (ConsoleCancelEventArgs * __this, MethodInfo * method)); DO_APP_FUNC(0x01BB3320, void, ConsoleCancelEventArgs__ctor_1, (ConsoleCancelEventArgs * __this, MethodInfo * method)); -DO_APP_FUNC(0x01BB3350, void, ConsoleKeyInfo__ctor, (ConsoleKeyInfo__Boxed * __this, uint16_t keyChar, ConsoleKey__Enum key, bool shift, bool alt, bool control, MethodInfo * method)); -DO_APP_FUNC(0x00C15E20, uint16_t, ConsoleKeyInfo_get_KeyChar, (ConsoleKeyInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C173E0, ConsoleKey__Enum, ConsoleKeyInfo_get_Key, (ConsoleKeyInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01BB3410, bool, ConsoleKeyInfo_Equals, (ConsoleKeyInfo__Boxed * __this, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x01BB34C0, bool, ConsoleKeyInfo_Equals_1, (ConsoleKeyInfo__Boxed * __this, ConsoleKeyInfo obj, MethodInfo * method)); -DO_APP_FUNC(0x01BB34E0, int32_t, ConsoleKeyInfo_GetHashCode, (ConsoleKeyInfo__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04868, ConsoleCancelEventArgs__ctor_1__MethodInfo); +DO_APP_FUNC(0x01BB3350, void, ConsoleKeyInfo__ctor, (ConsoleKeyInfo * __this, uint16_t keyChar, ConsoleKey__Enum key, bool shift, bool alt, bool control, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04858, ConsoleKeyInfo__ctor__MethodInfo); +DO_APP_FUNC(0x00C15E20, uint16_t, ConsoleKeyInfo_get_KeyChar, (ConsoleKeyInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C173E0, ConsoleKey__Enum, ConsoleKeyInfo_get_Key, (ConsoleKeyInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x01BB3410, bool, ConsoleKeyInfo_Equals, (ConsoleKeyInfo * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x01BB34C0, bool, ConsoleKeyInfo_Equals_1, (ConsoleKeyInfo * __this, ConsoleKeyInfo obj, MethodInfo * method)); +DO_APP_FUNC(0x01BB34E0, int32_t, ConsoleKeyInfo_GetHashCode, (ConsoleKeyInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01BB3500, void, ThrowHelper_1_ThrowArgumentNullException, (ExceptionArgument__Enum argument, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04848, ThrowHelper_1_ThrowArgumentNullException__MethodInfo); DO_APP_FUNC(0x01BB3530, Exception *, ThrowHelper_1_CreateArgumentNullException, (ExceptionArgument__Enum argument, MethodInfo * method)); DO_APP_FUNC(0x01BB3600, void, ThrowHelper_1_ThrowArrayTypeMismatchException, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04838, ThrowHelper_1_ThrowArrayTypeMismatchException__MethodInfo); DO_APP_FUNC(0x01BB3630, Exception *, ThrowHelper_1_CreateArrayTypeMismatchException, (MethodInfo * method)); DO_APP_FUNC(0x01BB36C0, void, ThrowHelper_1_ThrowArgumentException_DestinationTooShort, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04898, ThrowHelper_1_ThrowArgumentException_DestinationTooShort__MethodInfo); DO_APP_FUNC(0x01BB36F0, Exception *, ThrowHelper_1_CreateArgumentException_DestinationTooShort, (MethodInfo * method)); DO_APP_FUNC(0x01BB3770, void, ThrowHelper_1_ThrowIndexOutOfRangeException, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04888, ThrowHelper_1_ThrowIndexOutOfRangeException__MethodInfo); DO_APP_FUNC(0x01BB37A0, Exception *, ThrowHelper_1_CreateIndexOutOfRangeException, (MethodInfo * method)); DO_APP_FUNC(0x01BB3830, void, ThrowHelper_1_ThrowArgumentOutOfRangeException, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04880, ThrowHelper_1_ThrowArgumentOutOfRangeException__MethodInfo); DO_APP_FUNC(0x01BB3860, Exception *, ThrowHelper_1_CreateArgumentOutOfRangeException, (MethodInfo * method)); DO_APP_FUNC(0x01BB38F0, void, ThrowHelper_1_ThrowArgumentOutOfRangeException_1, (ExceptionArgument__Enum argument, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04878, ThrowHelper_1_ThrowArgumentOutOfRangeException_1__MethodInfo); DO_APP_FUNC(0x01BB3920, Exception *, ThrowHelper_1_CreateArgumentOutOfRangeException_1, (ExceptionArgument__Enum argument, MethodInfo * method)); DO_APP_FUNC(0x01BB39F0, void, ThrowHelper_1_ThrowNotSupportedException, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04870, ThrowHelper_1_ThrowNotSupportedException__MethodInfo); DO_APP_FUNC(0x01BB3A20, Exception *, ThrowHelper_1_CreateThrowNotSupportedException, (MethodInfo * method)); DO_APP_FUNC(0x01BB3AB0, void, ThrowHelper_1_ThrowWrongKeyTypeArgumentException, (Object * key, Type * targetType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D047D8, ThrowHelper_1_ThrowWrongKeyTypeArgumentException__MethodInfo); DO_APP_FUNC(0x01BB3BA0, void, ThrowHelper_1_ThrowWrongValueTypeArgumentException, (Object * value, Type * targetType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D047D0, ThrowHelper_1_ThrowWrongValueTypeArgumentException__MethodInfo); DO_APP_FUNC(0x01BB3C90, void, ThrowHelper_1_ThrowArgumentException, (ExceptionResource__Enum resource, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D047C8, ThrowHelper_1_ThrowArgumentException__MethodInfo); DO_APP_FUNC(0x01BB3D00, void, ThrowHelper_1_ThrowArgumentException_1, (ExceptionResource__Enum resource, ExceptionArgument__Enum argument, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D047C0, ThrowHelper_1_ThrowArgumentException_1__MethodInfo); DO_APP_FUNC(0x01BB3D80, void, ThrowHelper_1_ThrowArgumentOutOfRangeException_2, (ExceptionArgument__Enum argument, ExceptionResource__Enum resource, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D047B0, ThrowHelper_1_ThrowArgumentOutOfRangeException_2__MethodInfo); DO_APP_FUNC(0x01BB3E80, void, ThrowHelper_1_ThrowInvalidOperationException, (ExceptionResource__Enum resource, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D047A8, ThrowHelper_1_ThrowInvalidOperationException__MethodInfo); DO_APP_FUNC(0x01BB3EF0, void, ThrowHelper_1_ThrowSerializationException, (ExceptionResource__Enum resource, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D047A0, ThrowHelper_1_ThrowSerializationException__MethodInfo); DO_APP_FUNC(0x01BB3F60, void, ThrowHelper_1_ThrowNotSupportedException_1, (ExceptionResource__Enum resource, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04798, ThrowHelper_1_ThrowNotSupportedException_1__MethodInfo); DO_APP_FUNC(0x01BB3FD0, void, ThrowHelper_1_ThrowInvalidOperationException_InvalidOperation_EnumFailedVersion, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04790, ThrowHelper_1_ThrowInvalidOperationException_InvalidOperation_EnumFailedVersion__MethodInfo); DO_APP_FUNC(0x01BB4030, void, ThrowHelper_1_ThrowInvalidOperationException_InvalidOperation_EnumOpCantHappen, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04788, ThrowHelper_1_ThrowInvalidOperationException_InvalidOperation_EnumOpCantHappen__MethodInfo); DO_APP_FUNC(0x01BB4090, void, ThrowHelper_1_ThrowInvalidOperationException_InvalidOperation_EnumNotStarted, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04780, ThrowHelper_1_ThrowInvalidOperationException_InvalidOperation_EnumNotStarted__MethodInfo); DO_APP_FUNC(0x01BB40F0, void, ThrowHelper_1_ThrowInvalidOperationException_InvalidOperation_EnumEnded, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04778, ThrowHelper_1_ThrowInvalidOperationException_InvalidOperation_EnumEnded__MethodInfo); DO_APP_FUNC(0x01BB4150, void, ThrowHelper_1_ThrowInvalidOperationException_InvalidOperation_NoValue, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04828, ThrowHelper_1_ThrowInvalidOperationException_InvalidOperation_NoValue__MethodInfo); DO_APP_FUNC(0x01BB41B0, ArgumentOutOfRangeException *, ThrowHelper_1_GetArgumentOutOfRangeException, (ExceptionArgument__Enum argument, String * resource, MethodInfo * method)); DO_APP_FUNC(0x01BB4240, void, ThrowHelper_1_ThrowArgumentOutOfRange_IndexException, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04820, ThrowHelper_1_ThrowArgumentOutOfRange_IndexException__MethodInfo); DO_APP_FUNC(0x01BB4280, void, ThrowHelper_1_ThrowIndexArgumentOutOfRange_NeedNonNegNumException, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04818, ThrowHelper_1_ThrowIndexArgumentOutOfRange_NeedNonNegNumException__MethodInfo); DO_APP_FUNC(0x01BB42C0, void, ThrowHelper_1_ThrowArgumentException_Argument_InvalidArrayType, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04810, ThrowHelper_1_ThrowArgumentException_Argument_InvalidArrayType__MethodInfo); DO_APP_FUNC(0x01BB4320, ArgumentException *, ThrowHelper_1_GetAddingDuplicateWithKeyArgumentException, (Object * key, MethodInfo * method)); DO_APP_FUNC(0x01BB43C0, void, ThrowHelper_1_ThrowAddingDuplicateWithKeyArgumentException, (Object * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04808, ThrowHelper_1_ThrowAddingDuplicateWithKeyArgumentException__MethodInfo); DO_APP_FUNC(0x01BB43F0, KeyNotFoundException *, ThrowHelper_1_GetKeyNotFoundException, (Object * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04800, ThrowHelper_1_GetKeyNotFoundException__MethodInfo); DO_APP_FUNC(0x01BB4480, void, ThrowHelper_1_ThrowKeyNotFoundException, (Object * key, MethodInfo * method)); DO_APP_FUNC(0x01BB4490, void, ThrowHelper_1_ThrowInvalidTypeWithPointersNotSupported, (Type * targetType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D047F0, ThrowHelper_1_ThrowInvalidTypeWithPointersNotSupported__MethodInfo); DO_APP_FUNC(0x01BB4500, void, ThrowHelper_1_ThrowInvalidOperationException_ConcurrentOperationsNotSupported, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D047E8, ThrowHelper_1_ThrowInvalidOperationException_ConcurrentOperationsNotSupported__MethodInfo); DO_APP_FUNC(0x01BB4540, InvalidOperationException *, ThrowHelper_1_GetInvalidOperationException, (String * str, MethodInfo * method)); DO_APP_FUNC(0x01BB45B0, void, ThrowHelper_1_ThrowArraySegmentCtorValidationFailedExceptions, (Array * array, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04700, ThrowHelper_1_ThrowArraySegmentCtorValidationFailedExceptions__MethodInfo); DO_APP_FUNC(0x01BB45E0, Exception *, ThrowHelper_1_GetArraySegmentCtorValidationFailedException, (Array * array, int32_t offset, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x01BB4770, ArgumentException *, ThrowHelper_1_GetArgumentException, (ExceptionResource__Enum resource, MethodInfo * method)); DO_APP_FUNC(0x01BB4820, ArgumentNullException *, ThrowHelper_1_GetArgumentNullException, (ExceptionArgument__Enum argument, MethodInfo * method)); DO_APP_FUNC(0x01BB48C0, String *, ThrowHelper_1_GetArgumentName, (ExceptionArgument__Enum argument, MethodInfo * method)); DO_APP_FUNC(0x01BB4C60, ArgumentOutOfRangeException *, ThrowHelper_1_GetArgumentOutOfRangeException_1, (ExceptionArgument__Enum argument, ExceptionResource__Enum resource, MethodInfo * method)); DO_APP_FUNC(0x01BB4D20, void, ThrowHelper_1_ThrowStartIndexArgumentOutOfRange_ArgumentOutOfRange_Index, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D046D8, ThrowHelper_1_ThrowStartIndexArgumentOutOfRange_ArgumentOutOfRange_Index__MethodInfo); DO_APP_FUNC(0x01BB4D50, void, ThrowHelper_1_ThrowCountArgumentOutOfRange_ArgumentOutOfRange_Count, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D046D0, ThrowHelper_1_ThrowCountArgumentOutOfRange_ArgumentOutOfRange_Count__MethodInfo); DO_APP_FUNC(0x01BB4D80, String *, ThrowHelper_1_GetResourceName, (ExceptionResource__Enum resource, MethodInfo * method)); DO_APP_FUNC(0x01BB5400, void, AppDomainUnloadedException__ctor, (AppDomainUnloadedException * __this, MethodInfo * method)); DO_APP_FUNC(0x01980BF0, void, AppDomainUnloadedException__ctor_1, (AppDomainUnloadedException * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); @@ -2950,7 +3261,9 @@ DO_APP_FUNC(0x01BB54A0, void, CannotUnloadAppDomainException__ctor_1, (CannotUnl DO_APP_FUNC(0x01980BF0, void, CannotUnloadAppDomainException__ctor_2, (CannotUnloadAppDomainException * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x01BB54C0, void, OperatingSystem__ctor, (OperatingSystem * __this, PlatformID__Enum platform, Version * version, MethodInfo * method)); DO_APP_FUNC(0x01BB54E0, void, OperatingSystem__ctor_1, (OperatingSystem * __this, PlatformID__Enum platform, Version * version, String * servicePack, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04628, OperatingSystem__ctor_1__MethodInfo); DO_APP_FUNC(0x01BB5640, void, OperatingSystem_GetObjectData, (OperatingSystem * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04620, OperatingSystem_GetObjectData__MethodInfo); DO_APP_FUNC(0x003BC2E0, PlatformID__Enum, OperatingSystem_get_Platform, (OperatingSystem * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, Version *, OperatingSystem_get_Version, (OperatingSystem * __this, MethodInfo * method)); DO_APP_FUNC(0x01BB5690, Object *, OperatingSystem_Clone, (OperatingSystem * __this, MethodInfo * method)); @@ -2971,69 +3284,106 @@ DO_APP_FUNC(0x01BB6430, void, OutOfMemoryException__ctor, (OutOfMemoryException DO_APP_FUNC(0x01BB6480, void, OutOfMemoryException__ctor_1, (OutOfMemoryException * __this, String * message, MethodInfo * method)); DO_APP_FUNC(0x01980BF0, void, OutOfMemoryException__ctor_2, (OutOfMemoryException * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x01BB64A0, Array *, Array_CreateInstance, (Type * elementType, Int64__Array * lengths, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04608, Array_CreateInstance__MethodInfo); DO_APP_FUNC(0x01BB6680, int32_t, Array_System_Collections_ICollection_get_Count, (Array * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, Array_System_Collections_IList_get_IsReadOnly, (Array * __this, MethodInfo * method)); DO_APP_FUNC(0x01BB6690, Object *, Array_System_Collections_IList_get_Item, (Array * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01BB66A0, void, Array_System_Collections_IList_set_Item, (Array * __this, int32_t index, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01BB66C0, int32_t, Array_System_Collections_IList_Add, (Array * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D045E8, Array_System_Collections_IList_Add__MethodInfo); DO_APP_FUNC(0x01BB6720, bool, Array_System_Collections_IList_Contains, (Array * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01BB6800, void, Array_System_Collections_IList_Clear, (Array * __this, MethodInfo * method)); DO_APP_FUNC(0x01BB6860, int32_t, Array_System_Collections_IList_IndexOf, (Array * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01BB6930, void, Array_System_Collections_IList_Insert, (Array * __this, int32_t index, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D045E0, Array_System_Collections_IList_Insert__MethodInfo); DO_APP_FUNC(0x01BB6990, void, Array_System_Collections_IList_Remove, (Array * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D045D8, Array_System_Collections_IList_Remove__MethodInfo); DO_APP_FUNC(0x01BB69F0, void, Array_System_Collections_IList_RemoveAt, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D045D0, Array_System_Collections_IList_RemoveAt__MethodInfo); DO_APP_FUNC(0x01BB6A50, void, Array_CopyTo, (Array * __this, Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04548, Array_CopyTo__MethodInfo); DO_APP_FUNC(0x01AA70A0, Object *, Array_Clone, (Array * __this, MethodInfo * method)); DO_APP_FUNC(0x01BB6B40, int32_t, Array_System_Collections_IStructuralComparable_CompareTo, (Array * __this, Object * other, IComparer * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04538, Array_System_Collections_IStructuralComparable_CompareTo__MethodInfo); DO_APP_FUNC(0x01BB6D70, bool, Array_System_Collections_IStructuralEquatable_Equals, (Array * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); DO_APP_FUNC(0x01039B50, int32_t, Array_CombineHashCodes, (int32_t h1, int32_t h2, MethodInfo * method)); DO_APP_FUNC(0x01BB6EA0, int32_t, Array_System_Collections_IStructuralEquatable_GetHashCode, (Array * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04530, Array_System_Collections_IStructuralEquatable_GetHashCode__MethodInfo); DO_APP_FUNC(0x01BB70E0, int32_t, Array_BinarySearch, (Array * array, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04528, Array_BinarySearch__MethodInfo); DO_APP_FUNC(0x01BB71C0, void, Array_Copy, (Array * sourceArray, Array * destinationArray, int64_t length, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04520, Array_Copy__MethodInfo); DO_APP_FUNC(0x01BB7380, void, Array_Copy_1, (Array * sourceArray, int64_t sourceIndex, Array * destinationArray, int64_t destinationIndex, int64_t length, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04518, Array_Copy_1__MethodInfo); DO_APP_FUNC(0x01BB7510, void, Array_CopyTo_1, (Array * __this, Array * array, int64_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04510, Array_CopyTo_1__MethodInfo); DO_APP_FUNC(0x01BB75B0, int64_t, Array_get_LongLength, (Array * __this, MethodInfo * method)); DO_APP_FUNC(0x01BB7670, int64_t, Array_GetLongLength, (Array * __this, int32_t dimension, MethodInfo * method)); DO_APP_FUNC(0x01BB76D0, Object *, Array_GetValue, (Array * __this, int64_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04508, Array_GetValue__MethodInfo); DO_APP_FUNC(0x01BB7770, Object *, Array_GetValue_1, (Array * __this, int64_t index1, int64_t index2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04500, Array_GetValue_1__MethodInfo); DO_APP_FUNC(0x01BB78F0, Object *, Array_GetValue_2, (Array * __this, int64_t index1, int64_t index2, int64_t index3, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04598, Array_GetValue_2__MethodInfo); DO_APP_FUNC(0x01BB7B00, Object *, Array_GetValue_3, (Array * __this, Int64__Array * indices, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04588, Array_GetValue_3__MethodInfo); DO_APP_FUNC(0x0041AEF0, bool, Array_get_IsFixedSize, (Array * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, Array_get_IsReadOnly, (Array * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, Array_get_IsSynchronized, (Array * __this, MethodInfo * method)); DO_APP_FUNC(0x00A1B820, Object *, Array_get_SyncRoot, (Array * __this, MethodInfo * method)); DO_APP_FUNC(0x01BB7CE0, int32_t, Array_BinarySearch_1, (Array * array, int32_t index, int32_t length, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01BB7D00, int32_t, Array_BinarySearch_2, (Array * array, Object * value, IComparer * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04578, Array_BinarySearch_2__MethodInfo); DO_APP_FUNC(0x01BB7DE0, int32_t, Array_BinarySearch_3, (Array * array, int32_t index, int32_t length, Object * value, IComparer * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04570, Array_BinarySearch_3__MethodInfo); DO_APP_FUNC(0x01BB81E0, int32_t, Array_GetMedian, (int32_t low, int32_t hi, MethodInfo * method)); DO_APP_FUNC(0x01BB6860, int32_t, Array_IndexOf, (Array * array, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04560, Array_IndexOf__MethodInfo); DO_APP_FUNC(0x01BB81F0, int32_t, Array_IndexOf_1, (Array * array, Object * value, int32_t startIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04558, Array_IndexOf_1__MethodInfo); DO_APP_FUNC(0x01BB82D0, int32_t, Array_IndexOf_2, (Array * array, Object * value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04550, Array_IndexOf_2__MethodInfo); DO_APP_FUNC(0x01BB85E0, int32_t, Array_LastIndexOf, (Array * array, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D044A0, Array_LastIndexOf__MethodInfo); DO_APP_FUNC(0x01BB8690, int32_t, Array_LastIndexOf_1, (Array * array, Object * value, int32_t startIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04498, Array_LastIndexOf_1__MethodInfo); DO_APP_FUNC(0x01BB8710, int32_t, Array_LastIndexOf_2, (Array * array, Object * value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04490, Array_LastIndexOf_2__MethodInfo); DO_APP_FUNC(0x01BB8A90, void, Array_Reverse, (Array * array, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04478, Array_Reverse__MethodInfo); DO_APP_FUNC(0x01BB8B50, void, Array_Reverse_1, (Array * array, int32_t index, int32_t length, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04470, Array_Reverse_1__MethodInfo); DO_APP_FUNC(0x01BB8E10, void, Array_SetValue, (Array * __this, Object * value, int64_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04468, Array_SetValue__MethodInfo); DO_APP_FUNC(0x01BB8EB0, void, Array_SetValue_1, (Array * __this, Object * value, int64_t index1, int64_t index2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04460, Array_SetValue_1__MethodInfo); DO_APP_FUNC(0x01BB8FC0, void, Array_SetValue_2, (Array * __this, Object * value, int64_t index1, int64_t index2, int64_t index3, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04458, Array_SetValue_2__MethodInfo); DO_APP_FUNC(0x01BB9150, void, Array_SetValue_3, (Array * __this, Object * value, Int64__Array * indices, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D044F8, Array_SetValue_3__MethodInfo); DO_APP_FUNC(0x01BB9340, void, Array_Sort, (Array * array, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D044F0, Array_Sort__MethodInfo); DO_APP_FUNC(0x01BB9410, void, Array_Sort_1, (Array * array, int32_t index, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x01BB9440, void, Array_Sort_2, (Array * array, IComparer * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D044E8, Array_Sort_2__MethodInfo); DO_APP_FUNC(0x01BB9520, void, Array_Sort_3, (Array * array, int32_t index, int32_t length, IComparer * comparer, MethodInfo * method)); DO_APP_FUNC(0x01BB9550, void, Array_Sort_4, (Array * keys, Array * items, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D044E0, Array_Sort_4__MethodInfo); DO_APP_FUNC(0x01BB9630, void, Array_Sort_5, (Array * keys, Array * items, IComparer * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D044D8, Array_Sort_5__MethodInfo); DO_APP_FUNC(0x01BB9710, void, Array_Sort_6, (Array * keys, Array * items, int32_t index, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x01BB9730, void, Array_Sort_7, (Array * keys, Array * items, int32_t index, int32_t length, IComparer * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D044D0, Array_Sort_7__MethodInfo); DO_APP_FUNC(0x01BB9AD0, IEnumerator *, Array_GetEnumerator, (Array * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array__ctor, (Array * __this, MethodInfo * method)); DO_APP_FUNC(0x01BB6680, int32_t, Array_InternalArray__ICollection_get_Count, (Array * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, Array_InternalArray__ICollection_get_IsReadOnly, (Array * __this, MethodInfo * method)); -DO_APP_FUNC(0x01BB9B90, uint8_t, Array_GetRawSzArrayData, (Array * __this, MethodInfo * method)); +DO_APP_FUNC(0x01BB9B90, uint8_t *, Array_GetRawSzArrayData, (Array * __this, MethodInfo * method)); DO_APP_FUNC(0x01BB9BB0, void, Array_InternalArray__ICollection_Clear, (Array * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D044B0, Array_InternalArray__ICollection_Clear__MethodInfo); DO_APP_FUNC(0x01BB6680, int32_t, Array_InternalArray__IReadOnlyCollection_get_Count, (Array * __this, MethodInfo * method)); DO_APP_FUNC(0x01BB9C10, void, Array_InternalArray__RemoveAt, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D044A8, Array_InternalArray__RemoveAt__MethodInfo); DO_APP_FUNC(0x01BB9C70, int32_t, Array_get_Length, (Array * __this, MethodInfo * method)); DO_APP_FUNC(0x01BB9D30, int32_t, Array_get_Rank, (Array * __this, MethodInfo * method)); DO_APP_FUNC(0x01BB9D30, int32_t, Array_GetRank, (Array * __this, MethodInfo * method)); @@ -3047,9 +3397,11 @@ DO_APP_FUNC(0x01BB9FA0, bool, Array_FastCopy, (Array * source, int32_t source_id DO_APP_FUNC(0x01BB9FB0, Array *, Array_CreateInstanceImpl, (Type * elementType, Int32__Array * lengths, Int32__Array * bounds, MethodInfo * method)); DO_APP_FUNC(0x01BB9FC0, int32_t, Array_GetUpperBound, (Array * __this, int32_t dimension, MethodInfo * method)); DO_APP_FUNC(0x01BBA030, Object *, Array_GetValue_5, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04438, Array_GetValue_5__MethodInfo); DO_APP_FUNC(0x01BBA230, Object *, Array_GetValue_6, (Array * __this, int32_t index1, int32_t index2, MethodInfo * method)); DO_APP_FUNC(0x01BBA2C0, Object *, Array_GetValue_7, (Array * __this, int32_t index1, int32_t index2, int32_t index3, MethodInfo * method)); DO_APP_FUNC(0x01BBA360, void, Array_SetValue_5, (Array * __this, Object * value, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04420, Array_SetValue_5__MethodInfo); DO_APP_FUNC(0x01BBA540, void, Array_SetValue_6, (Array * __this, Object * value, int32_t index1, int32_t index2, MethodInfo * method)); DO_APP_FUNC(0x01BBA5E0, void, Array_SetValue_7, (Array * __this, Object * value, int32_t index1, int32_t index2, int32_t index3, MethodInfo * method)); DO_APP_FUNC(0x01BBA690, Array *, Array_UnsafeCreateInstance, (Type * elementType, Int32__Array * lengths, Int32__Array * lowerBounds, MethodInfo * method)); @@ -3059,11 +3411,16 @@ DO_APP_FUNC(0x01BBA740, Array *, Array_CreateInstance_1, (Type * elementType, in DO_APP_FUNC(0x01BBA6A0, Array *, Array_CreateInstance_2, (Type * elementType, int32_t length1, int32_t length2, MethodInfo * method)); DO_APP_FUNC(0x01BBA7C0, Array *, Array_CreateInstance_3, (Type * elementType, int32_t length1, int32_t length2, int32_t length3, MethodInfo * method)); DO_APP_FUNC(0x01BBA860, Array *, Array_CreateInstance_4, (Type * elementType, Int32__Array * lengths, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04448, Array_CreateInstance_4__MethodInfo); DO_APP_FUNC(0x01BBABD0, Array *, Array_CreateInstance_5, (Type * elementType, Int32__Array * lengths, Int32__Array * lowerBounds, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D043E0, Array_CreateInstance_5__MethodInfo); DO_APP_FUNC(0x01BBB190, void, Array_Clear, (Array * array, int32_t index, int32_t length, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D043B0, Array_Clear__MethodInfo); DO_APP_FUNC(0x01BBB380, void, Array_ClearInternal, (Array * a, int32_t index, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x01BBB3B0, void, Array_Copy_2, (Array * sourceArray, Array * destinationArray, int32_t length, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04388, Array_Copy_2__MethodInfo); DO_APP_FUNC(0x01BBB4F0, void, Array_Copy_3, (Array * sourceArray, int32_t sourceIndex, Array * destinationArray, int32_t destinationIndex, int32_t length, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04408, Array_Copy_3__MethodInfo); DO_APP_FUNC(0x01BBBBF0, ArrayTypeMismatchException *, Array_CreateArrayTypeMismatchException, (MethodInfo * method)); DO_APP_FUNC(0x01BBBC80, bool, Array_CanAssignArrayElement, (Type * source, Type * target, MethodInfo * method)); DO_APP_FUNC(0x01BBBD80, void, Array_ConstrainedCopy, (Array * sourceArray, int32_t sourceIndex, Array * destinationArray, int32_t destinationIndex, int32_t length, MethodInfo * method)); @@ -3074,26 +3431,29 @@ DO_APP_FUNC(0x01BBBF30, bool, Array_ArrayEnumerator_MoveNext, (Array_ArrayEnumer DO_APP_FUNC(0x006DDC60, void, Array_ArrayEnumerator_Reset, (Array_ArrayEnumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x01AA70A0, Object *, Array_ArrayEnumerator_Clone, (Array_ArrayEnumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x01BBBF50, Object *, Array_ArrayEnumerator_get_Current, (Array_ArrayEnumerator * __this, MethodInfo * method)); -DO_APP_FUNC(0x01BBC120, void, Array_SorterObjectArray__ctor, (Array_SorterObjectArray__Boxed * __this, Object__Array * keys, Object__Array * items, IComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01BBC2A0, void, Array_SorterObjectArray_SwapIfGreaterWithItems, (Array_SorterObjectArray__Boxed * __this, int32_t a, int32_t b, MethodInfo * method)); -DO_APP_FUNC(0x01BBC4B0, void, Array_SorterObjectArray_Swap, (Array_SorterObjectArray__Boxed * __this, int32_t i, int32_t j, MethodInfo * method)); -DO_APP_FUNC(0x01BBC650, void, Array_SorterObjectArray_Sort, (Array_SorterObjectArray__Boxed * __this, int32_t left, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01BBC660, void, Array_SorterObjectArray_IntrospectiveSort, (Array_SorterObjectArray__Boxed * __this, int32_t left, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01BBC740, void, Array_SorterObjectArray_IntroSort, (Array_SorterObjectArray__Boxed * __this, int32_t lo, int32_t hi, int32_t depthLimit, MethodInfo * method)); -DO_APP_FUNC(0x01BBC820, int32_t, Array_SorterObjectArray_PickPivotAndPartition, (Array_SorterObjectArray__Boxed * __this, int32_t lo, int32_t hi, MethodInfo * method)); -DO_APP_FUNC(0x01BBC9B0, void, Array_SorterObjectArray_Heapsort, (Array_SorterObjectArray__Boxed * __this, int32_t lo, int32_t hi, MethodInfo * method)); -DO_APP_FUNC(0x01BBCA70, void, Array_SorterObjectArray_DownHeap, (Array_SorterObjectArray__Boxed * __this, int32_t i, int32_t n, int32_t lo, MethodInfo * method)); -DO_APP_FUNC(0x01BBCD90, void, Array_SorterObjectArray_InsertionSort, (Array_SorterObjectArray__Boxed * __this, int32_t lo, int32_t hi, MethodInfo * method)); -DO_APP_FUNC(0x01BBD020, void, Array_SorterGenericArray__ctor, (Array_SorterGenericArray__Boxed * __this, Array * keys, Array * items, IComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01BBD1A0, void, Array_SorterGenericArray_SwapIfGreaterWithItems, (Array_SorterGenericArray__Boxed * __this, int32_t a, int32_t b, MethodInfo * method)); -DO_APP_FUNC(0x01BBD320, void, Array_SorterGenericArray_Swap, (Array_SorterGenericArray__Boxed * __this, int32_t i, int32_t j, MethodInfo * method)); -DO_APP_FUNC(0x01BBD410, void, Array_SorterGenericArray_Sort, (Array_SorterGenericArray__Boxed * __this, int32_t left, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01BBD420, void, Array_SorterGenericArray_IntrospectiveSort, (Array_SorterGenericArray__Boxed * __this, int32_t left, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01BBD520, void, Array_SorterGenericArray_IntroSort, (Array_SorterGenericArray__Boxed * __this, int32_t lo, int32_t hi, int32_t depthLimit, MethodInfo * method)); -DO_APP_FUNC(0x01BBD600, int32_t, Array_SorterGenericArray_PickPivotAndPartition, (Array_SorterGenericArray__Boxed * __this, int32_t lo, int32_t hi, MethodInfo * method)); -DO_APP_FUNC(0x01BBD7A0, void, Array_SorterGenericArray_Heapsort, (Array_SorterGenericArray__Boxed * __this, int32_t lo, int32_t hi, MethodInfo * method)); -DO_APP_FUNC(0x01BBD860, void, Array_SorterGenericArray_DownHeap, (Array_SorterGenericArray__Boxed * __this, int32_t i, int32_t n, int32_t lo, MethodInfo * method)); -DO_APP_FUNC(0x01BBDA90, void, Array_SorterGenericArray_InsertionSort, (Array_SorterGenericArray__Boxed * __this, int32_t lo, int32_t hi, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07B00, Array_ArrayEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x01BBC120, void, Array_SorterObjectArray__ctor, (Array_SorterObjectArray * __this, Object__Array * keys, Object__Array * items, IComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01BBC2A0, void, Array_SorterObjectArray_SwapIfGreaterWithItems, (Array_SorterObjectArray * __this, int32_t a, int32_t b, MethodInfo * method)); +DO_APP_FUNC(0x01BBC4B0, void, Array_SorterObjectArray_Swap, (Array_SorterObjectArray * __this, int32_t i, int32_t j, MethodInfo * method)); +DO_APP_FUNC(0x01BBC650, void, Array_SorterObjectArray_Sort, (Array_SorterObjectArray * __this, int32_t left, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x01BBC660, void, Array_SorterObjectArray_IntrospectiveSort, (Array_SorterObjectArray * __this, int32_t left, int32_t length, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07AE0, Array_SorterObjectArray_IntrospectiveSort__MethodInfo); +DO_APP_FUNC(0x01BBC740, void, Array_SorterObjectArray_IntroSort, (Array_SorterObjectArray * __this, int32_t lo, int32_t hi, int32_t depthLimit, MethodInfo * method)); +DO_APP_FUNC(0x01BBC820, int32_t, Array_SorterObjectArray_PickPivotAndPartition, (Array_SorterObjectArray * __this, int32_t lo, int32_t hi, MethodInfo * method)); +DO_APP_FUNC(0x01BBC9B0, void, Array_SorterObjectArray_Heapsort, (Array_SorterObjectArray * __this, int32_t lo, int32_t hi, MethodInfo * method)); +DO_APP_FUNC(0x01BBCA70, void, Array_SorterObjectArray_DownHeap, (Array_SorterObjectArray * __this, int32_t i, int32_t n, int32_t lo, MethodInfo * method)); +DO_APP_FUNC(0x01BBCD90, void, Array_SorterObjectArray_InsertionSort, (Array_SorterObjectArray * __this, int32_t lo, int32_t hi, MethodInfo * method)); +DO_APP_FUNC(0x01BBD020, void, Array_SorterGenericArray__ctor, (Array_SorterGenericArray * __this, Array * keys, Array * items, IComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01BBD1A0, void, Array_SorterGenericArray_SwapIfGreaterWithItems, (Array_SorterGenericArray * __this, int32_t a, int32_t b, MethodInfo * method)); +DO_APP_FUNC(0x01BBD320, void, Array_SorterGenericArray_Swap, (Array_SorterGenericArray * __this, int32_t i, int32_t j, MethodInfo * method)); +DO_APP_FUNC(0x01BBD410, void, Array_SorterGenericArray_Sort, (Array_SorterGenericArray * __this, int32_t left, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x01BBD420, void, Array_SorterGenericArray_IntrospectiveSort, (Array_SorterGenericArray * __this, int32_t left, int32_t length, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07A78, Array_SorterGenericArray_IntrospectiveSort__MethodInfo); +DO_APP_FUNC(0x01BBD520, void, Array_SorterGenericArray_IntroSort, (Array_SorterGenericArray * __this, int32_t lo, int32_t hi, int32_t depthLimit, MethodInfo * method)); +DO_APP_FUNC(0x01BBD600, int32_t, Array_SorterGenericArray_PickPivotAndPartition, (Array_SorterGenericArray * __this, int32_t lo, int32_t hi, MethodInfo * method)); +DO_APP_FUNC(0x01BBD7A0, void, Array_SorterGenericArray_Heapsort, (Array_SorterGenericArray * __this, int32_t lo, int32_t hi, MethodInfo * method)); +DO_APP_FUNC(0x01BBD860, void, Array_SorterGenericArray_DownHeap, (Array_SorterGenericArray * __this, int32_t i, int32_t n, int32_t lo, MethodInfo * method)); +DO_APP_FUNC(0x01BBDA90, void, Array_SorterGenericArray_InsertionSort, (Array_SorterGenericArray * __this, int32_t lo, int32_t hi, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, MonoTODOAttribute__ctor, (MonoTODOAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, MonoTODOAttribute__ctor_1, (MonoTODOAttribute * __this, String * comment, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, MonoLimitationAttribute__ctor, (MonoLimitationAttribute * __this, String * comment, MethodInfo * method)); @@ -3108,9 +3468,12 @@ DO_APP_FUNC(0x003BB3D0, int64_t, LocalDataStoreElement_get_Cookie, (LocalDataSto DO_APP_FUNC(0x01BBDCA0, void, LocalDataStore__ctor, (LocalDataStore * __this, LocalDataStoreMgr * mgr, int32_t InitialCapacity, MethodInfo * method)); DO_APP_FUNC(0x01BBDDA0, void, LocalDataStore_Dispose, (LocalDataStore * __this, MethodInfo * method)); DO_APP_FUNC(0x01BBDDD0, Object *, LocalDataStore_GetData, (LocalDataStore * __this, LocalDataStoreSlot * slot, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07AC0, LocalDataStore_GetData__MethodInfo); DO_APP_FUNC(0x01BBDF10, void, LocalDataStore_SetData, (LocalDataStore * __this, LocalDataStoreSlot * slot, Object * data, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07AB8, LocalDataStore_SetData__MethodInfo); DO_APP_FUNC(0x01BBE0B0, void, LocalDataStore_FreeData, (LocalDataStore * __this, int32_t slot, int64_t cookie, MethodInfo * method)); DO_APP_FUNC(0x01BBE110, LocalDataStoreElement *, LocalDataStore_PopulateElement, (LocalDataStore * __this, LocalDataStoreSlot * slot, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07A98, LocalDataStore_PopulateElement__MethodInfo); DO_APP_FUNC(0x01BBE5F0, void, LocalDataStoreSlot__ctor, (LocalDataStoreSlot * __this, LocalDataStoreMgr * mgr, int32_t slot, int64_t cookie, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, LocalDataStoreMgr *, LocalDataStoreSlot_get_Manager, (LocalDataStoreSlot * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, LocalDataStoreSlot_get_Slot, (LocalDataStoreSlot * __this, MethodInfo * method)); @@ -3119,33 +3482,42 @@ DO_APP_FUNC(0x01BBE660, void, LocalDataStoreSlot_Finalize, (LocalDataStoreSlot * DO_APP_FUNC(0x01BBE6C0, LocalDataStoreHolder *, LocalDataStoreMgr_CreateLocalDataStore, (LocalDataStoreMgr * __this, MethodInfo * method)); DO_APP_FUNC(0x01BBEA50, void, LocalDataStoreMgr_DeleteLocalDataStore, (LocalDataStoreMgr * __this, LocalDataStore * store, MethodInfo * method)); DO_APP_FUNC(0x01BBEBD0, LocalDataStoreSlot *, LocalDataStoreMgr_AllocateDataSlot, (LocalDataStoreMgr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07A10, LocalDataStoreMgr_AllocateDataSlot__MethodInfo); DO_APP_FUNC(0x01BBF0D0, LocalDataStoreSlot *, LocalDataStoreMgr_AllocateNamedDataSlot, (LocalDataStoreMgr * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x01BBF2D0, LocalDataStoreSlot *, LocalDataStoreMgr_GetNamedDataSlot, (LocalDataStoreMgr * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x01BBF4D0, void, LocalDataStoreMgr_FreeNamedDataSlot, (LocalDataStoreMgr * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x01BBF650, void, LocalDataStoreMgr_FreeDataSlot, (LocalDataStoreMgr * __this, int32_t slot, int64_t cookie, MethodInfo * method)); DO_APP_FUNC(0x01BBF8D0, void, LocalDataStoreMgr_ValidateSlot, (LocalDataStoreMgr * __this, LocalDataStoreSlot * slot, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07A58, LocalDataStoreMgr_ValidateSlot__MethodInfo); DO_APP_FUNC(0x00BF9D80, int32_t, LocalDataStoreMgr_GetSlotTableLength, (LocalDataStoreMgr * __this, MethodInfo * method)); DO_APP_FUNC(0x01BBF960, void, LocalDataStoreMgr__ctor, (LocalDataStoreMgr * __this, MethodInfo * method)); DO_APP_FUNC(0x01BBFB60, Object *, Activator_CreateInstance, (Type * type, BindingFlags__Enum bindingAttr, Binder * binder, Object__Array * args, CultureInfo * culture, MethodInfo * method)); DO_APP_FUNC(0x01BBFB90, Object *, Activator_CreateInstance_1, (Type * type, BindingFlags__Enum bindingAttr, Binder * binder, Object__Array * args, CultureInfo * culture, Object__Array * activationAttributes, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07A30, Activator_CreateInstance_1__MethodInfo); DO_APP_FUNC(0x01BBFDE0, Object *, Activator_CreateInstance_2, (Type * type, Object__Array * args, MethodInfo * method)); DO_APP_FUNC(0x01BBFE10, Object *, Activator_CreateInstance_3, (Type * type, Object__Array * args, Object__Array * activationAttributes, MethodInfo * method)); DO_APP_FUNC(0x01BBFE40, Object *, Activator_CreateInstance_4, (Type * type, MethodInfo * method)); DO_APP_FUNC(0x01BBFE50, Object *, Activator_CreateInstance_5, (Type * type, bool nonPublic, MethodInfo * method)); DO_APP_FUNC(0x01BBFE60, Object *, Activator_CreateInstance_6, (Type * type, bool nonPublic, bool wrapExceptions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D079A0, Activator_CreateInstance_6__MethodInfo); DO_APP_FUNC(0x01BC0020, Attribute__Array *, Attribute_InternalGetCustomAttributes, (PropertyInfo_1 * element, Type * type, bool inherit, MethodInfo * method)); DO_APP_FUNC(0x01BC00D0, Attribute__Array *, Attribute_InternalGetCustomAttributes_1, (EventInfo_1 * element, Type * type, bool inherit, MethodInfo * method)); DO_APP_FUNC(0x01BC0180, bool, Attribute_InternalIsDefined, (PropertyInfo_1 * element, Type * attributeType, bool inherit, MethodInfo * method)); DO_APP_FUNC(0x01BC01F0, bool, Attribute_InternalIsDefined_1, (EventInfo_1 * element, Type * attributeType, bool inherit, MethodInfo * method)); DO_APP_FUNC(0x01A6D5F0, Attribute__Array *, Attribute_GetCustomAttributes, (MemberInfo_1 * element, Type * type, MethodInfo * method)); DO_APP_FUNC(0x01BC0260, Attribute__Array *, Attribute_GetCustomAttributes_1, (MemberInfo_1 * element, Type * type, bool inherit, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07970, Attribute_GetCustomAttributes_1__MethodInfo); DO_APP_FUNC(0x01A6D610, bool, Attribute_IsDefined, (MemberInfo_1 * element, Type * attributeType, MethodInfo * method)); DO_APP_FUNC(0x01BC0690, bool, Attribute_IsDefined_1, (MemberInfo_1 * element, Type * attributeType, bool inherit, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D079C8, Attribute_IsDefined_1__MethodInfo); DO_APP_FUNC(0x01A6D5D0, Attribute *, Attribute_GetCustomAttribute, (MemberInfo_1 * element, Type * attributeType, MethodInfo * method)); DO_APP_FUNC(0x01BC09E0, Attribute *, Attribute_GetCustomAttribute_1, (MemberInfo_1 * element, Type * attributeType, bool inherit, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D079B8, Attribute_GetCustomAttribute_1__MethodInfo); DO_APP_FUNC(0x01BC0A90, Attribute__Array *, Attribute_GetCustomAttributes_2, (Assembly * element, Type * attributeType, bool inherit, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D079B0, Attribute_GetCustomAttributes_2__MethodInfo); DO_APP_FUNC(0x01A6D510, Attribute *, Attribute_GetCustomAttribute_2, (Assembly * element, Type * attributeType, MethodInfo * method)); DO_APP_FUNC(0x01BC0CF0, Attribute *, Attribute_GetCustomAttribute_3, (Assembly * element, Type * attributeType, bool inherit, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D079A8, Attribute_GetCustomAttribute_3__MethodInfo); DO_APP_FUNC(0x003AE050, void, Attribute__ctor, (Attribute * __this, MethodInfo * method)); DO_APP_FUNC(0x01BC0DA0, bool, Attribute_Equals, (Attribute * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x01BC1020, bool, Attribute_AreFieldValuesEqual, (Object * thisValue, Object * thatValue, MethodInfo * method)); @@ -3160,7 +3532,9 @@ DO_APP_FUNC(0x01BC1550, void, Buffer_ZeroMemory, (uint8_t * src, int64_t len, Me DO_APP_FUNC(0x01BC1570, void, Buffer_Memcpy, (uint8_t * pDest, int32_t destIndex, Byte__Array * src, int32_t srcIndex, int32_t len, MethodInfo * method)); DO_APP_FUNC(0x01BC15D0, void, Buffer_InternalMemcpy, (uint8_t * dest, uint8_t * src, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x01BC15E0, int32_t, Buffer_ByteLength, (Array * array, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07900, Buffer_ByteLength__MethodInfo); DO_APP_FUNC(0x01BC16A0, void, Buffer_BlockCopy, (Array * src, int32_t srcOffset, Array * dst, int32_t dstOffset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D078E8, Buffer_BlockCopy__MethodInfo); DO_APP_FUNC(0x01BC1980, void, Buffer_MemoryCopy, (Void * source, Void * destination, int64_t destinationSizeInBytes, int64_t sourceBytesToCopy, MethodInfo * method)); DO_APP_FUNC(0x01BC1AA0, void, Buffer_memcpy4, (uint8_t * dest, uint8_t * src, int32_t size, MethodInfo * method)); DO_APP_FUNC(0x01BC1B40, void, Buffer_memcpy2, (uint8_t * dest, uint8_t * src, int32_t size, MethodInfo * method)); @@ -3169,13 +3543,19 @@ DO_APP_FUNC(0x01BC1C70, void, Buffer_Memcpy_1, (uint8_t * dest, uint8_t * src, i DO_APP_FUNC(0x01BC1F40, void, Buffer_Memmove, (uint8_t * dest, uint8_t * src, uint32_t len, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ContextBoundObject__ctor, (ContextBoundObject * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ContextStaticAttribute__ctor, (ContextStaticAttribute * __this, MethodInfo * method)); -DO_APP_FUNC(0x01BC1F90, MethodBase *, DefaultBinder_BindToMethod, (DefaultBinder * __this, BindingFlags__Enum bindingAttr, MethodBase__Array * match, Object__Array * args, ParameterModifier__Array * modifiers, CultureInfo * cultureInfo, String__Array * names, Object * state, MethodInfo * method)); +DO_APP_FUNC(0x01BC1F90, MethodBase *, DefaultBinder_BindToMethod, (DefaultBinder * __this, BindingFlags__Enum bindingAttr, MethodBase__Array * match, Object__Array * * args, ParameterModifier__Array * modifiers, CultureInfo * cultureInfo, String__Array * names, Object * * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D078A8, DefaultBinder_BindToMethod__MethodInfo); DO_APP_FUNC(0x01BC4660, FieldInfo_1 *, DefaultBinder_BindToField, (DefaultBinder * __this, BindingFlags__Enum bindingAttr, FieldInfo_1__Array * match, Object * value, CultureInfo * cultureInfo, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07950, DefaultBinder_BindToField__MethodInfo); DO_APP_FUNC(0x01BC4D70, PropertyInfo_1 *, DefaultBinder_SelectProperty, (DefaultBinder * __this, BindingFlags__Enum bindingAttr, PropertyInfo_1__Array * match, Type * returnType, Type__Array * indexes, ParameterModifier__Array * modifiers, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07910, DefaultBinder_SelectProperty__MethodInfo); DO_APP_FUNC(0x01BC5B20, Object *, DefaultBinder_ChangeType, (DefaultBinder * __this, Object * value, Type * type, CultureInfo * cultureInfo, MethodInfo * method)); -DO_APP_FUNC(0x01BC5B90, void, DefaultBinder_ReorderArgumentArray, (DefaultBinder * __this, Object__Array * args, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07880, DefaultBinder_ChangeType__MethodInfo); +DO_APP_FUNC(0x01BC5B90, void, DefaultBinder_ReorderArgumentArray, (DefaultBinder * __this, Object__Array * * args, Object * state, MethodInfo * method)); DO_APP_FUNC(0x01BC6000, MethodBase *, DefaultBinder_ExactBinding, (MethodBase__Array * match, Type__Array * types, ParameterModifier__Array * modifiers, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07878, DefaultBinder_ExactBinding__MethodInfo); DO_APP_FUNC(0x01BC6280, PropertyInfo_1 *, DefaultBinder_ExactPropertyBinding, (PropertyInfo_1__Array * match, Type * returnType, Type__Array * types, ParameterModifier__Array * modifiers, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07870, DefaultBinder_ExactPropertyBinding__MethodInfo); DO_APP_FUNC(0x01BC6560, int32_t, DefaultBinder_FindMostSpecific, (ParameterInfo__Array * p1, Int32__Array * paramOrder1, Type * paramArrayType1, ParameterInfo__Array * p2, Int32__Array * paramOrder2, Type * paramArrayType2, Type__Array * types, Object__Array * args, MethodInfo * method)); DO_APP_FUNC(0x01BC6910, int32_t, DefaultBinder_FindMostSpecificType, (Type * c1, Type * c2, Type * t, MethodInfo * method)); DO_APP_FUNC(0x01BC6D40, int32_t, DefaultBinder_FindMostSpecificMethod, (MethodBase * m1, Int32__Array * paramOrder1, Type * paramArrayType1, MethodBase * m2, Int32__Array * paramOrder2, Type * paramArrayType2, Type__Array * types, Object__Array * args, MethodInfo * method)); @@ -3184,12 +3564,14 @@ DO_APP_FUNC(0x01BC7490, int32_t, DefaultBinder_FindMostSpecificProperty, (Proper DO_APP_FUNC(0x01BC75E0, bool, DefaultBinder_CompareMethodSigAndName, (MethodBase * m1, MethodBase * m2, MethodInfo * method)); DO_APP_FUNC(0x01BC7740, int32_t, DefaultBinder_GetHierarchyDepth, (Type * t, MethodInfo * method)); DO_APP_FUNC(0x01BC77C0, MethodBase *, DefaultBinder_FindMostDerivedNewSlotMeth, (MethodBase__Array * match, int32_t cMatches, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D078A0, DefaultBinder_FindMostDerivedNewSlotMeth__MethodInfo); DO_APP_FUNC(0x01BC7910, void, DefaultBinder_ReorderParams, (Int32__Array * paramOrder, Object__Array * vars, MethodInfo * method)); DO_APP_FUNC(0x01BC7B40, bool, DefaultBinder_CreateParamOrder, (Int32__Array * paramOrder, ParameterInfo__Array * pars, String__Array * names, MethodInfo * method)); DO_APP_FUNC(0x01BC7D60, bool, DefaultBinder_CanConvertPrimitive, (RuntimeType * source, RuntimeType * target, MethodInfo * method)); DO_APP_FUNC(0x01BC8050, bool, DefaultBinder_CanConvertPrimitiveObjectToType, (Object * source, RuntimeType * type, MethodInfo * method)); DO_APP_FUNC(0x01BC8170, bool, DefaultBinder_CompareMethodSig, (MethodBase * m1, MethodBase * m2, MethodInfo * method)); DO_APP_FUNC(0x01BC82D0, MethodBase *, DefaultBinder_SelectMethod, (DefaultBinder * __this, BindingFlags__Enum bindingAttr, MethodBase__Array * match, Type__Array * types, ParameterModifier__Array * modifiers, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D077D8, DefaultBinder_SelectMethod__MethodInfo); DO_APP_FUNC(0x01BC8B10, bool, DefaultBinder_CanChangePrimitive, (Type * source, Type * target, MethodInfo * method)); DO_APP_FUNC(0x01BC8CD0, bool, DefaultBinder_CanPrimitiveWiden, (Type * source, Type * target, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, DefaultBinder__ctor, (DefaultBinder * __this, MethodInfo * method)); @@ -3198,84 +3580,115 @@ DO_APP_FUNC(0x01BC8F30, void, DefaultBinder_BinderState__ctor, (DefaultBinder_Bi DO_APP_FUNC(0x01BC8FA0, void, DefaultBinder_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, DefaultBinder_c__ctor, (DefaultBinder_c * __this, MethodInfo * method)); DO_APP_FUNC(0x01BC9050, bool, DefaultBinder_c__SelectProperty_b__2_0, (DefaultBinder_c * __this, Type * t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07928, DefaultBinder_c__SelectProperty_b__2_0__MethodInfo); DO_APP_FUNC(0x003AE050, void, Empty__ctor, (Empty * __this, MethodInfo * method)); DO_APP_FUNC(0x01BC90A0, String *, Empty_ToString, (Empty * __this, MethodInfo * method)); DO_APP_FUNC(0x01BC90E0, void, Empty_GetObjectData, (Empty * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07850, Empty_GetObjectData__MethodInfo); DO_APP_FUNC(0x01BC9170, void, Empty__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01BC9220, Enum_ValuesAndNames *, Enum_GetCachedValuesAndNames, (RuntimeType * enumType, bool getNames, MethodInfo * method)); DO_APP_FUNC(0x01BC9500, String *, Enum_InternalFormattedHexString, (Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07768, Enum_InternalFormattedHexString__MethodInfo); DO_APP_FUNC(0x01BC9E00, String *, Enum_InternalFormat, (RuntimeType * eT, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01BC9F70, String *, Enum_InternalFlagsFormat, (RuntimeType * eT, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01BCA170, uint64_t, Enum_ToUInt64, (Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07728, Enum_ToUInt64__MethodInfo); DO_APP_FUNC(0x01BCA360, int32_t, Enum_InternalCompareTo, (Object * o1, Object * o2, MethodInfo * method)); DO_APP_FUNC(0x01BCA460, RuntimeType *, Enum_InternalGetUnderlyingType, (RuntimeType * enumType, MethodInfo * method)); -DO_APP_FUNC(0x01BCA4B0, bool, Enum_GetEnumValuesAndNames, (RuntimeType * enumType, UInt64__Array * values, String__Array * names, MethodInfo * method)); +DO_APP_FUNC(0x01BCA4B0, bool, Enum_GetEnumValuesAndNames, (RuntimeType * enumType, UInt64__Array * * values, String__Array * * names, MethodInfo * method)); DO_APP_FUNC(0x01BCA4F0, Object *, Enum_InternalBoxEnum, (RuntimeType * enumType, int64_t value, MethodInfo * method)); DO_APP_FUNC(0x01BCA520, Object *, Enum_Parse, (Type * enumType, String * value, MethodInfo * method)); DO_APP_FUNC(0x01BCA590, Object *, Enum_Parse_1, (Type * enumType, String * value, bool ignoreCase, MethodInfo * method)); -DO_APP_FUNC(0x01BCA6F0, bool, Enum_TryParseEnum, (Type * enumType, String * value, bool ignoreCase, Enum_EnumResult parseResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D077A8, Enum_Parse_1__MethodInfo); +DO_APP_FUNC(0x01BCA6F0, bool, Enum_TryParseEnum, (Type * enumType, String * value, bool ignoreCase, Enum_EnumResult * parseResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07788, Enum_TryParseEnum__MethodInfo); DO_APP_FUNC(0x01BCB130, Type *, Enum_GetUnderlyingType, (Type * enumType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07778, Enum_GetUnderlyingType__MethodInfo); DO_APP_FUNC(0x01BCB1F0, Array *, Enum_GetValues, (Type * enumType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07770, Enum_GetValues__MethodInfo); DO_APP_FUNC(0x01BCB2B0, UInt64__Array *, Enum_InternalGetValues, (RuntimeType * enumType, MethodInfo * method)); DO_APP_FUNC(0x01BCB320, String *, Enum_GetName, (Type * enumType, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D076C0, Enum_GetName__MethodInfo); DO_APP_FUNC(0x01BCB3E0, String__Array *, Enum_GetNames, (Type * enumType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D076B8, Enum_GetNames__MethodInfo); DO_APP_FUNC(0x01BCB4A0, String__Array *, Enum_InternalGetNames, (RuntimeType * enumType, MethodInfo * method)); DO_APP_FUNC(0x01BCB510, Object *, Enum_ToObject, (Type * enumType, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07690, Enum_ToObject__MethodInfo); DO_APP_FUNC(0x01BCBA90, bool, Enum_IsDefined, (Type * enumType, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07680, Enum_IsDefined__MethodInfo); DO_APP_FUNC(0x01BCBB50, String *, Enum_Format, (Type * enumType, Object * value, String * format, MethodInfo * method)); -DO_APP_FUNC(0x01BCC330, Object *, Enum_get_value, (Enum__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01BCC330, Object *, Enum_GetValue, (Enum__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01BCC3B0, bool, Enum_InternalHasFlag, (Enum__Boxed * __this, Enum flags, MethodInfo * method)); -DO_APP_FUNC(0x01BCC440, int32_t, Enum_get_hashcode, (Enum__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01BCC4C0, bool, Enum_Equals, (Enum__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x01BCC440, int32_t, Enum_GetHashCode, (Enum__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01BCC4D0, String *, Enum_ToString, (Enum__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01BCC5F0, String *, Enum_ToString_1, (Enum__Boxed * __this, String * format, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BCC600, int32_t, Enum_CompareTo, (Enum__Boxed * __this, Object * target, MethodInfo * method)); -DO_APP_FUNC(0x01BCC830, String *, Enum_ToString_2, (Enum__Boxed * __this, String * format, MethodInfo * method)); -DO_APP_FUNC(0x01B165D0, String *, Enum_ToString_3, (Enum__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BCCD00, bool, Enum_HasFlag, (Enum__Boxed * __this, Enum flag, MethodInfo * method)); -DO_APP_FUNC(0x01BCCF20, TypeCode__Enum, Enum_GetTypeCode, (Enum__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01BCD3B0, bool, Enum_System_IConvertible_ToBoolean, (Enum__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BCD4D0, uint16_t, Enum_System_IConvertible_ToChar, (Enum__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BCD5F0, int8_t, Enum_System_IConvertible_ToSByte, (Enum__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BCD710, uint8_t, Enum_System_IConvertible_ToByte, (Enum__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BCD830, int16_t, Enum_System_IConvertible_ToInt16, (Enum__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BCD950, uint16_t, Enum_System_IConvertible_ToUInt16, (Enum__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BCDA70, int32_t, Enum_System_IConvertible_ToInt32, (Enum__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BCDB90, uint32_t, Enum_System_IConvertible_ToUInt32, (Enum__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BCDCB0, int64_t, Enum_System_IConvertible_ToInt64, (Enum__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BCDDD0, uint64_t, Enum_System_IConvertible_ToUInt64, (Enum__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BCDEF0, float, Enum_System_IConvertible_ToSingle, (Enum__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BCE010, double, Enum_System_IConvertible_ToDouble, (Enum__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BCE130, Decimal, Enum_System_IConvertible_ToDecimal, (Enum__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BCE270, DateTime, Enum_System_IConvertible_ToDateTime, (Enum__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01BCE370, Object *, Enum_System_IConvertible_ToType, (Enum__Boxed * __this, Type * type, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07678, Enum_Format__MethodInfo); +DO_APP_FUNC(0x01BCC330, Object *, Enum_get_value, (Enum * __this, MethodInfo * method)); +DO_APP_FUNC(0x01BCC330, Object *, Enum_GetValue, (Enum * __this, MethodInfo * method)); +DO_APP_FUNC(0x01BCC3B0, bool, Enum_InternalHasFlag, (Enum * __this, Enum flags, MethodInfo * method)); +DO_APP_FUNC(0x01BCC440, int32_t, Enum_get_hashcode, (Enum * __this, MethodInfo * method)); +DO_APP_FUNC(0x01BCC4C0, bool, Enum_Equals, (Enum * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x01BCC440, int32_t, Enum_GetHashCode, (Enum * __this, MethodInfo * method)); +DO_APP_FUNC(0x01BCC4D0, String *, Enum_ToString, (Enum * __this, MethodInfo * method)); +DO_APP_FUNC(0x01BCC5F0, String *, Enum_ToString_1, (Enum * __this, String * format, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BCC600, int32_t, Enum_CompareTo, (Enum * __this, Object * target, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D076E0, Enum_CompareTo__MethodInfo); +DO_APP_FUNC(0x01BCC830, String *, Enum_ToString_2, (Enum * __this, String * format, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D076D8, Enum_ToString_2__MethodInfo); +DO_APP_FUNC(0x01B165D0, String *, Enum_ToString_3, (Enum * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BCCD00, bool, Enum_HasFlag, (Enum * __this, Enum flag, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D076D0, Enum_HasFlag__MethodInfo); +DO_APP_FUNC(0x01BCCF20, TypeCode__Enum, Enum_GetTypeCode, (Enum * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07618, Enum_GetTypeCode__MethodInfo); +DO_APP_FUNC(0x01BCD3B0, bool, Enum_System_IConvertible_ToBoolean, (Enum * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BCD4D0, uint16_t, Enum_System_IConvertible_ToChar, (Enum * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BCD5F0, int8_t, Enum_System_IConvertible_ToSByte, (Enum * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BCD710, uint8_t, Enum_System_IConvertible_ToByte, (Enum * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BCD830, int16_t, Enum_System_IConvertible_ToInt16, (Enum * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BCD950, uint16_t, Enum_System_IConvertible_ToUInt16, (Enum * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BCDA70, int32_t, Enum_System_IConvertible_ToInt32, (Enum * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BCDB90, uint32_t, Enum_System_IConvertible_ToUInt32, (Enum * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BCDCB0, int64_t, Enum_System_IConvertible_ToInt64, (Enum * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BCDDD0, uint64_t, Enum_System_IConvertible_ToUInt64, (Enum * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BCDEF0, float, Enum_System_IConvertible_ToSingle, (Enum * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BCE010, double, Enum_System_IConvertible_ToDouble, (Enum * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BCE130, Decimal, Enum_System_IConvertible_ToDecimal, (Enum * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01BCE270, DateTime, Enum_System_IConvertible_ToDateTime, (Enum * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07628, Enum_System_IConvertible_ToDateTime__MethodInfo); +DO_APP_FUNC(0x01BCE370, Object *, Enum_System_IConvertible_ToType, (Enum * __this, Type * type, IFormatProvider * provider, MethodInfo * method)); DO_APP_FUNC(0x01BCE3E0, Object *, Enum_ToObject_1, (Type * enumType, int8_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D075C8, Enum_ToObject_1__MethodInfo); DO_APP_FUNC(0x01BCE640, Object *, Enum_ToObject_2, (Type * enumType, int16_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D075C0, Enum_ToObject_2__MethodInfo); DO_APP_FUNC(0x01BCE8A0, Object *, Enum_ToObject_3, (Type * enumType, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D075B0, Enum_ToObject_3__MethodInfo); DO_APP_FUNC(0x01BCEB00, Object *, Enum_ToObject_4, (Type * enumType, uint8_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D075A0, Enum_ToObject_4__MethodInfo); DO_APP_FUNC(0x01BCED60, Object *, Enum_ToObject_5, (Type * enumType, uint16_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07598, Enum_ToObject_5__MethodInfo); DO_APP_FUNC(0x01BCEFC0, Object *, Enum_ToObject_6, (Type * enumType, uint32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07608, Enum_ToObject_6__MethodInfo); DO_APP_FUNC(0x01BCF220, Object *, Enum_ToObject_7, (Type * enumType, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D075F8, Enum_ToObject_7__MethodInfo); DO_APP_FUNC(0x01BCF480, Object *, Enum_ToObject_8, (Type * enumType, uint64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D075F0, Enum_ToObject_8__MethodInfo); DO_APP_FUNC(0x01BCF6E0, Object *, Enum_ToObject_9, (Type * enumType, uint16_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D075D8, Enum_ToObject_9__MethodInfo); DO_APP_FUNC(0x01BCF940, Object *, Enum_ToObject_10, (Type * enumType, bool value, MethodInfo * method)); -DO_APP_FUNC(0x01BCFBA0, bool, Enum_TryParse, (Type * enumType, String * value, bool ignoreCase, Object * result, MethodInfo * method)); -DO_APP_FUNC(0x01BCFD10, bool, Enum_TryParse_1, (Type * enumType, String * value, Object * result, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Enum__ctor, (Enum__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D075D0, Enum_ToObject_10__MethodInfo); +DO_APP_FUNC(0x01BCFBA0, bool, Enum_TryParse, (Type * enumType, String * value, bool ignoreCase, Object * * result, MethodInfo * method)); +DO_APP_FUNC(0x01BCFD10, bool, Enum_TryParse_1, (Type * enumType, String * value, Object * * result, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Enum__ctor, (Enum * __this, MethodInfo * method)); DO_APP_FUNC(0x01BCFEA0, void, Enum__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x01BCFF80, void, Enum_EnumResult_Init, (Enum_EnumResult__Boxed * __this, bool canMethodThrow, MethodInfo * method)); -DO_APP_FUNC(0x01BD0020, void, Enum_EnumResult_SetFailure, (Enum_EnumResult__Boxed * __this, Exception * unhandledException, MethodInfo * method)); -DO_APP_FUNC(0x01BD0080, void, Enum_EnumResult_SetFailure_1, (Enum_EnumResult__Boxed * __this, Enum_ParseFailureKind__Enum failure, String * failureParameter, MethodInfo * method)); -DO_APP_FUNC(0x01BD0110, void, Enum_EnumResult_SetFailure_2, (Enum_EnumResult__Boxed * __this, Enum_ParseFailureKind__Enum failure, String * failureMessageID, Object * failureMessageFormatArgument, MethodInfo * method)); -DO_APP_FUNC(0x01BD0210, Exception *, Enum_EnumResult_GetEnumParseException, (Enum_EnumResult__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01BCFF80, void, Enum_EnumResult_Init, (Enum_EnumResult * __this, bool canMethodThrow, MethodInfo * method)); +DO_APP_FUNC(0x01BD0020, void, Enum_EnumResult_SetFailure, (Enum_EnumResult * __this, Exception * unhandledException, MethodInfo * method)); +DO_APP_FUNC(0x01BD0080, void, Enum_EnumResult_SetFailure_1, (Enum_EnumResult * __this, Enum_ParseFailureKind__Enum failure, String * failureParameter, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07508, Enum_EnumResult_SetFailure_1__MethodInfo); +DO_APP_FUNC(0x01BD0110, void, Enum_EnumResult_SetFailure_2, (Enum_EnumResult * __this, Enum_ParseFailureKind__Enum failure, String * failureMessageID, Object * failureMessageFormatArgument, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07500, Enum_EnumResult_SetFailure_2__MethodInfo); +DO_APP_FUNC(0x01BD0210, Exception *, Enum_EnumResult_GetEnumParseException, (Enum_EnumResult * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCE40, void, Enum_ValuesAndNames__ctor, (Enum_ValuesAndNames * __this, UInt64__Array * values, String__Array * names, MethodInfo * method)); DO_APP_FUNC(0x01BD03B0, void, Exception_Init, (Exception * __this, MethodInfo * method)); DO_APP_FUNC(0x01BD0560, void, Exception__ctor, (Exception * __this, MethodInfo * method)); DO_APP_FUNC(0x01BD0570, void, Exception__ctor_1, (Exception * __this, String * message, MethodInfo * method)); DO_APP_FUNC(0x01BD05E0, void, Exception__ctor_2, (Exception * __this, String * message, Exception * innerException, MethodInfo * method)); DO_APP_FUNC(0x01BD06C0, void, Exception__ctor_3, (Exception * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07540, Exception__ctor_3__MethodInfo); DO_APP_FUNC(0x01BD0E30, String *, Exception_get_Message, (Exception * __this, MethodInfo * method)); DO_APP_FUNC(0x01BD0F60, IDictionary *, Exception_get_Data, (Exception * __this, MethodInfo * method)); DO_APP_FUNC(0x01BD1010, String *, Exception_GetClassName, (Exception * __this, MethodInfo * method)); @@ -3291,6 +3704,7 @@ DO_APP_FUNC(0x0042F730, void, Exception_set_Source, (Exception * __this, String DO_APP_FUNC(0x01985280, String *, Exception_ToString, (Exception * __this, MethodInfo * method)); DO_APP_FUNC(0x01BD1370, String *, Exception_ToString_1, (Exception * __this, bool needFileLineInfo, bool needMessage, MethodInfo * method)); DO_APP_FUNC(0x01BD1690, void, Exception_GetObjectData, (Exception * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D074A0, Exception_GetObjectData__MethodInfo); DO_APP_FUNC(0x01BD22A0, void, Exception_OnDeserialized, (Exception * __this, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x00420A60, String *, Exception_StripFileInfo, (Exception * __this, String * stackTrace, bool isRemoteStackTrace, MethodInfo * method)); DO_APP_FUNC(0x01BD23C0, void, Exception_RestoreExceptionDispatchInfo, (Exception * __this, ExceptionDispatchInfo * exceptionDispatchInfo, MethodInfo * method)); @@ -3307,30 +3721,39 @@ DO_APP_FUNC(0x01BD28E0, void, GC_1_InternalCollect, (int32_t generation, MethodI DO_APP_FUNC(0x003AE050, void, GC_1_RecordPressure, (int64_t bytesAllocated, MethodInfo * method)); DO_APP_FUNC(0x01BD2900, void, GC_1_register_ephemeron_array, (Ephemeron__Array * array, MethodInfo * method)); DO_APP_FUNC(0x01BD29F0, Object *, GC_1_get_ephemeron_tombstone, (MethodInfo * method)); -DO_APP_FUNC(0x01BD2A10, void, GC_1_GetMemoryInfo, (uint32_t highMemLoadThreshold, uint64_t totalPhysicalMem, uint32_t lastRecordedMemLoad, void * lastRecordedHeapSize, void * lastRecordedFragmentation, MethodInfo * method)); +DO_APP_FUNC(0x01BD2A10, void, GC_1_GetMemoryInfo, (uint32_t * highMemLoadThreshold, uint64_t * totalPhysicalMem, uint32_t * lastRecordedMemLoad, void * * lastRecordedHeapSize, void * * lastRecordedFragmentation, MethodInfo * method)); DO_APP_FUNC(0x01BD2AC0, void, GC_1_AddMemoryPressure, (int64_t bytesAllocated, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07478, GC_1_AddMemoryPressure__MethodInfo); DO_APP_FUNC(0x01BD2B90, void, GC_1_RemoveMemoryPressure, (int64_t bytesAllocated, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07468, GC_1_RemoveMemoryPressure__MethodInfo); DO_APP_FUNC(0x01BD2C60, void, GC_1_Collect, (int32_t generation, MethodInfo * method)); DO_APP_FUNC(0x01BD2DE0, void, GC_1_Collect_1, (MethodInfo * method)); DO_APP_FUNC(0x01BD2E70, void, GC_1_Collect_2, (int32_t generation, GCCollectionMode__Enum mode, MethodInfo * method)); DO_APP_FUNC(0x01BD3030, void, GC_1_Collect_3, (int32_t generation, GCCollectionMode__Enum mode, bool blocking, MethodInfo * method)); DO_APP_FUNC(0x01BD31B0, void, GC_1_Collect_4, (int32_t generation, GCCollectionMode__Enum mode, bool blocking, bool compacting, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07490, GC_1_Collect_4__MethodInfo); DO_APP_FUNC(0x01BD3300, int32_t, GC_1_CollectionCount, (int32_t generation, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07488, GC_1_CollectionCount__MethodInfo); DO_APP_FUNC(0x003AE050, void, GC_1_KeepAlive, (Object * obj, MethodInfo * method)); DO_APP_FUNC(0x01BD33D0, int32_t, GC_1_get_MaxGeneration, (MethodInfo * method)); DO_APP_FUNC(0x01BD3420, void, GC_1__SuppressFinalize, (Object * o, MethodInfo * method)); DO_APP_FUNC(0x01BD3590, void, GC_1_SuppressFinalize, (Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07450, GC_1_SuppressFinalize__MethodInfo); DO_APP_FUNC(0x01BD3770, void, GC_1__ReRegisterForFinalize, (Object * o, MethodInfo * method)); DO_APP_FUNC(0x01BD38F0, void, GC_1_ReRegisterForFinalize, (Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07438, GC_1_ReRegisterForFinalize__MethodInfo); DO_APP_FUNC(0x01BD3AD0, int64_t, GC_1_GetTotalMemory, (bool forceFullCollection, MethodInfo * method)); DO_APP_FUNC(0x01BD3B00, void, GC_1__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x01BD3BA0, RuntimeType *, RuntimeType_GetType, (String * typeName, bool throwOnError, bool ignoreCase, bool reflectionOnly, StackCrawlMark__Enum stackMark, MethodInfo * method)); +DO_APP_FUNC(0x01BD3BA0, RuntimeType *, RuntimeType_GetType, (String * typeName, bool throwOnError, bool ignoreCase, bool reflectionOnly, StackCrawlMark__Enum * stackMark, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07430, RuntimeType_GetType__MethodInfo); DO_APP_FUNC(0x01BD3C30, void, RuntimeType_ThrowIfTypeNeverValidGenericArgument, (RuntimeType * type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07420, RuntimeType_ThrowIfTypeNeverValidGenericArgument__MethodInfo); DO_APP_FUNC(0x01BD3DB0, void, RuntimeType_SanityCheckGenericArguments, (RuntimeType__Array * genericArguments, RuntimeType__Array * genericParamters, MethodInfo * method)); -DO_APP_FUNC(0x01BD4030, void, RuntimeType_SplitName, (String * fullname, String * name, String * ns, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07460, RuntimeType_SanityCheckGenericArguments__MethodInfo); +DO_APP_FUNC(0x01BD4030, void, RuntimeType_SplitName, (String * fullname, String * * name, String * * ns, MethodInfo * method)); DO_APP_FUNC(0x01BD4480, BindingFlags__Enum, RuntimeType_FilterPreCalculate, (bool isPublic, bool isInherited, bool isStatic, MethodInfo * method)); -DO_APP_FUNC(0x01BD44C0, void, RuntimeType_FilterHelper, (BindingFlags__Enum bindingFlags, String * name, bool allowPrefixLookup, bool prefixLookup, bool ignoreCase, RuntimeType_MemberListType__Enum listType, MethodInfo * method)); -DO_APP_FUNC(0x01BD47A0, void, RuntimeType_FilterHelper_1, (BindingFlags__Enum bindingFlags, String * name, bool ignoreCase, RuntimeType_MemberListType__Enum listType, MethodInfo * method)); +DO_APP_FUNC(0x01BD44C0, void, RuntimeType_FilterHelper, (BindingFlags__Enum bindingFlags, String * * name, bool allowPrefixLookup, bool * prefixLookup, bool * ignoreCase, RuntimeType_MemberListType__Enum * listType, MethodInfo * method)); +DO_APP_FUNC(0x01BD47A0, void, RuntimeType_FilterHelper_1, (BindingFlags__Enum bindingFlags, String * * name, bool * ignoreCase, RuntimeType_MemberListType__Enum * listType, MethodInfo * method)); DO_APP_FUNC(0x01BD4840, bool, RuntimeType_FilterApplyPrefixLookup, (MemberInfo_1 * memberInfo, String * name, bool ignoreCase, MethodInfo * method)); DO_APP_FUNC(0x01BD4A80, bool, RuntimeType_FilterApplyBase, (MemberInfo_1 * memberInfo, BindingFlags__Enum bindingFlags, bool isPublic, bool isNonProtectedInternal, bool isStatic, String * name, bool prefixLookup, MethodInfo * method)); DO_APP_FUNC(0x01BD4C90, bool, RuntimeType_FilterApplyType, (Type * type, BindingFlags__Enum bindingFlags, String * name, bool prefixLookup, String * ns, MethodInfo * method)); @@ -3338,6 +3761,7 @@ DO_APP_FUNC(0x01BD4E00, bool, RuntimeType_FilterApplyMethodInfo, (RuntimeMethodI DO_APP_FUNC(0x01BD4EA0, bool, RuntimeType_FilterApplyConstructorInfo, (RuntimeConstructorInfo * constructor, BindingFlags__Enum bindingFlags, CallingConventions__Enum callConv, Type__Array * argumentTypes, MethodInfo * method)); DO_APP_FUNC(0x01BD4F40, bool, RuntimeType_FilterApplyMethodBase, (MethodBase * methodBase, BindingFlags__Enum methodFlags, BindingFlags__Enum bindingFlags, CallingConventions__Enum callConv, Type__Array * argumentTypes, MethodInfo * method)); DO_APP_FUNC(0x01BD51E0, void, RuntimeType__ctor, (RuntimeType * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07388, RuntimeType__ctor__MethodInfo); DO_APP_FUNC(0x01BD5230, RuntimeType_ListBuilder_1_System_Reflection_MethodInfo_, RuntimeType_GetMethodCandidates, (RuntimeType * __this, String * name, BindingFlags__Enum bindingAttr, CallingConventions__Enum callConv, Type__Array * types, int32_t genericParamCount, bool allowPrefixLookup, MethodInfo * method)); DO_APP_FUNC(0x01BD54B0, RuntimeType_ListBuilder_1_System_Reflection_ConstructorInfo_, RuntimeType_GetConstructorCandidates, (RuntimeType * __this, String * name, BindingFlags__Enum bindingAttr, CallingConventions__Enum callConv, Type__Array * types, bool allowPrefixLookup, MethodInfo * method)); DO_APP_FUNC(0x01BD5A20, RuntimeType_ListBuilder_1_System_Reflection_PropertyInfo_, RuntimeType_GetPropertyCandidates, (RuntimeType * __this, String * name, BindingFlags__Enum bindingAttr, Type__Array * types, bool allowPrefixLookup, MethodInfo * method)); @@ -3352,10 +3776,15 @@ DO_APP_FUNC(0x01BD6800, FieldInfo_1__Array *, RuntimeType_GetFields, (RuntimeTyp DO_APP_FUNC(0x01BD6890, MemberInfo_1__Array *, RuntimeType_GetMembers, (RuntimeType * __this, BindingFlags__Enum bindingAttr, MethodInfo * method)); DO_APP_FUNC(0x01BD6E80, ConstructorInfo *, RuntimeType_GetConstructorImpl, (RuntimeType * __this, BindingFlags__Enum bindingAttr, Binder * binder, CallingConventions__Enum callConvention, Type__Array * types, ParameterModifier__Array * modifiers, MethodInfo * method)); DO_APP_FUNC(0x01BD7170, PropertyInfo_1 *, RuntimeType_GetPropertyImpl, (RuntimeType * __this, String * name, BindingFlags__Enum bindingAttr, Binder * binder, Type * returnType, Type__Array * types, ParameterModifier__Array * modifiers, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D072C8, RuntimeType_GetPropertyImpl__MethodInfo); DO_APP_FUNC(0x01BD7490, EventInfo_1 *, RuntimeType_GetEvent, (RuntimeType * __this, String * name, BindingFlags__Enum bindingAttr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07280, RuntimeType_GetEvent__MethodInfo); DO_APP_FUNC(0x01BD76C0, FieldInfo_1 *, RuntimeType_GetField, (RuntimeType * __this, String * name, BindingFlags__Enum bindingAttr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07270, RuntimeType_GetField__MethodInfo); DO_APP_FUNC(0x01BD7AB0, Type *, RuntimeType_GetNestedType, (RuntimeType * __this, String * fullname, BindingFlags__Enum bindingAttr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07268, RuntimeType_GetNestedType__MethodInfo); DO_APP_FUNC(0x01BD7E60, MemberInfo_1__Array *, RuntimeType_GetMember, (RuntimeType * __this, String * name, MemberTypes__Enum type, BindingFlags__Enum bindingAttr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07258, RuntimeType_GetMember__MethodInfo); DO_APP_FUNC(0x01BD85A0, Module *, RuntimeType_get_Module, (RuntimeType * __this, MethodInfo * method)); DO_APP_FUNC(0x01BD85A0, RuntimeModule *, RuntimeType_GetRuntimeModule, (RuntimeType * __this, MethodInfo * method)); DO_APP_FUNC(0x01BD85C0, Assembly *, RuntimeType_get_Assembly, (RuntimeType * __this, MethodInfo * method)); @@ -3377,58 +3806,82 @@ DO_APP_FUNC(0x01BD8C30, bool, RuntimeType_IsValueTypeImpl, (RuntimeType * __this DO_APP_FUNC(0x01BD8D30, bool, RuntimeType_get_IsEnum, (RuntimeType * __this, MethodInfo * method)); DO_APP_FUNC(0x01BD8DA0, bool, RuntimeType_HasElementTypeImpl, (RuntimeType * __this, MethodInfo * method)); DO_APP_FUNC(0x01BD8DD0, GenericParameterAttributes__Enum, RuntimeType_get_GenericParameterAttributes, (RuntimeType * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07220, RuntimeType_get_GenericParameterAttributes__MethodInfo); DO_APP_FUNC(0x01BD8E90, bool, RuntimeType_get_IsSzArray, (RuntimeType * __this, MethodInfo * method)); DO_APP_FUNC(0x01BD8EB0, bool, RuntimeType_IsArrayImpl, (RuntimeType * __this, MethodInfo * method)); DO_APP_FUNC(0x01BD8ED0, int32_t, RuntimeType_GetArrayRank, (RuntimeType * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07218, RuntimeType_GetArrayRank__MethodInfo); DO_APP_FUNC(0x01BD8F70, Type *, RuntimeType_GetElementType, (RuntimeType * __this, MethodInfo * method)); DO_APP_FUNC(0x01BD8FE0, String__Array *, RuntimeType_GetEnumNames, (RuntimeType * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07210, RuntimeType_GetEnumNames__MethodInfo); DO_APP_FUNC(0x01BD91E0, Array *, RuntimeType_GetEnumValues, (RuntimeType * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07208, RuntimeType_GetEnumValues__MethodInfo); DO_APP_FUNC(0x01BD9370, Type *, RuntimeType_GetEnumUnderlyingType, (RuntimeType * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07248, RuntimeType_GetEnumUnderlyingType__MethodInfo); DO_APP_FUNC(0x01BD9490, bool, RuntimeType_IsEnumDefined, (RuntimeType * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07240, RuntimeType_IsEnumDefined__MethodInfo); DO_APP_FUNC(0x01BD9BB0, String *, RuntimeType_GetEnumName, (RuntimeType * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07230, RuntimeType_GetEnumName__MethodInfo); DO_APP_FUNC(0x01BD9E50, RuntimeType__Array *, RuntimeType_GetGenericArgumentsInternal, (RuntimeType * __this, MethodInfo * method)); DO_APP_FUNC(0x01BD9EC0, Type__Array *, RuntimeType_GetGenericArguments, (RuntimeType * __this, MethodInfo * method)); DO_APP_FUNC(0x01BD9F10, Type *, RuntimeType_MakeGenericType, (RuntimeType * __this, Type__Array * instantiation, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07180, RuntimeType_MakeGenericType__MethodInfo); DO_APP_FUNC(0x01BDA490, bool, RuntimeType_get_IsGenericTypeDefinition, (RuntimeType * __this, MethodInfo * method)); DO_APP_FUNC(0x01BDA4D0, bool, RuntimeType_get_IsGenericParameter, (RuntimeType * __this, MethodInfo * method)); DO_APP_FUNC(0x01BDA4F0, int32_t, RuntimeType_get_GenericParameterPosition, (RuntimeType * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07168, RuntimeType_get_GenericParameterPosition__MethodInfo); DO_APP_FUNC(0x01BDA5B0, Type *, RuntimeType_GetGenericTypeDefinition, (RuntimeType * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07158, RuntimeType_GetGenericTypeDefinition__MethodInfo); DO_APP_FUNC(0x01BDA680, bool, RuntimeType_get_IsGenericType, (RuntimeType * __this, MethodInfo * method)); DO_APP_FUNC(0x01BDA6C0, bool, RuntimeType_get_IsConstructedGenericType, (RuntimeType * __this, MethodInfo * method)); DO_APP_FUNC(0x01BDA710, Object *, RuntimeType_InvokeMember, (RuntimeType * __this, String * name, BindingFlags__Enum bindingFlags, Binder * binder, Object * target, Object__Array * providedArgs, ParameterModifier__Array * modifiers, CultureInfo * culture, String__Array * namedParams, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07200, RuntimeType_InvokeMember__MethodInfo); DO_APP_FUNC(0x01BDBF20, bool, RuntimeType_Equals, (RuntimeType * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x00A89090, bool, RuntimeType_op_Equality, (RuntimeType * left, RuntimeType * right, MethodInfo * method)); DO_APP_FUNC(0x00A92050, bool, RuntimeType_op_Inequality, (RuntimeType * left, RuntimeType * right, MethodInfo * method)); DO_APP_FUNC(0x00A1B820, Object *, RuntimeType_Clone, (RuntimeType * __this, MethodInfo * method)); DO_APP_FUNC(0x01BDBF30, void, RuntimeType_GetObjectData, (RuntimeType * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D070A0, RuntimeType_GetObjectData__MethodInfo); DO_APP_FUNC(0x01BDBFB0, Object__Array *, RuntimeType_GetCustomAttributes, (RuntimeType * __this, bool inherit, MethodInfo * method)); DO_APP_FUNC(0x01BDC060, Object__Array *, RuntimeType_GetCustomAttributes_1, (RuntimeType * __this, Type * attributeType, bool inherit, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07090, RuntimeType_GetCustomAttributes_1__MethodInfo); DO_APP_FUNC(0x01BDC220, bool, RuntimeType_IsDefined, (RuntimeType * __this, Type * attributeType, bool inherit, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07080, RuntimeType_IsDefined__MethodInfo); DO_APP_FUNC(0x01BDC3E0, String *, RuntimeType_FormatTypeName, (RuntimeType * __this, bool serialization, MethodInfo * method)); DO_APP_FUNC(0x01BDC5D0, MemberTypes__Enum, RuntimeType_get_MemberType, (RuntimeType * __this, MethodInfo * method)); DO_APP_FUNC(0x01BDC630, Type *, RuntimeType_get_ReflectedType, (RuntimeType * __this, MethodInfo * method)); DO_APP_FUNC(0x01BDC650, int32_t, RuntimeType_get_MetadataToken, (RuntimeType * __this, MethodInfo * method)); DO_APP_FUNC(0x01BDC680, void, RuntimeType_CreateInstanceCheckThis, (RuntimeType * __this, MethodInfo * method)); -DO_APP_FUNC(0x01BDC9B0, Object *, RuntimeType_CreateInstanceImpl, (RuntimeType * __this, BindingFlags__Enum bindingAttr, Binder * binder, Object__Array * args, CultureInfo * culture, Object__Array * activationAttributes, StackCrawlMark__Enum stackMark, MethodInfo * method)); -DO_APP_FUNC(0x01BDD290, Object *, RuntimeType_CreateInstanceDefaultCtor, (RuntimeType * __this, bool publicOnly, bool skipCheckThis, bool fillCache, bool wrapExceptions, StackCrawlMark__Enum stackMark, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07100, RuntimeType_CreateInstanceCheckThis__MethodInfo); +DO_APP_FUNC(0x01BDC9B0, Object *, RuntimeType_CreateInstanceImpl, (RuntimeType * __this, BindingFlags__Enum bindingAttr, Binder * binder, Object__Array * args, CultureInfo * culture, Object__Array * activationAttributes, StackCrawlMark__Enum * stackMark, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06FF8, RuntimeType_CreateInstanceImpl__MethodInfo); +DO_APP_FUNC(0x01BDD290, Object *, RuntimeType_CreateInstanceDefaultCtor, (RuntimeType * __this, bool publicOnly, bool skipCheckThis, bool fillCache, bool wrapExceptions, StackCrawlMark__Enum * stackMark, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06FD8, RuntimeType_CreateInstanceDefaultCtor__MethodInfo); DO_APP_FUNC(0x01BDD3C0, RuntimeConstructorInfo *, RuntimeType_GetDefaultConstructor, (RuntimeType * __this, MethodInfo * method)); DO_APP_FUNC(0x01BDD5A0, String *, RuntimeType_GetDefaultMemberName, (RuntimeType * __this, MethodInfo * method)); DO_APP_FUNC(0x01BDD6A0, RuntimeConstructorInfo *, RuntimeType_GetSerializationCtor, (RuntimeType * __this, MethodInfo * method)); DO_APP_FUNC(0x01BDD8E0, Object *, RuntimeType_CreateInstanceSlow, (RuntimeType * __this, bool publicOnly, bool wrapExceptions, bool skipCheckThis, bool fillCache, MethodInfo * method)); DO_APP_FUNC(0x01BDD930, Object *, RuntimeType_CreateInstanceMono, (RuntimeType * __this, bool nonPublic, bool wrapExceptions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07028, RuntimeType_CreateInstanceMono__MethodInfo); DO_APP_FUNC(0x01BDDD00, Object *, RuntimeType_CheckValue, (RuntimeType * __this, Object * value, Binder * binder, CultureInfo * culture, BindingFlags__Enum invokeAttr, MethodInfo * method)); -DO_APP_FUNC(0x01BDDF30, Object *, RuntimeType_TryConvertToType, (RuntimeType * __this, Object * value, bool failed, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07008, RuntimeType_CheckValue__MethodInfo); +DO_APP_FUNC(0x01BDDF30, Object *, RuntimeType_TryConvertToType, (RuntimeType * __this, Object * value, bool * failed, MethodInfo * method)); DO_APP_FUNC(0x01BDE230, Object *, RuntimeType_IsConvertibleToPrimitiveType, (Object * value, Type * targetType, MethodInfo * method)); DO_APP_FUNC(0x01BDEEF0, String *, RuntimeType_GetCachedName, (RuntimeType * __this, TypeNameKind__Enum kind, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06F98, RuntimeType_GetCachedName__MethodInfo); DO_APP_FUNC(0x01BDEF60, Type *, RuntimeType_make_array_type, (RuntimeType * __this, int32_t rank, MethodInfo * method)); DO_APP_FUNC(0x01BDEFC0, Type *, RuntimeType_MakeArrayType, (RuntimeType * __this, MethodInfo * method)); DO_APP_FUNC(0x01BDF010, Type *, RuntimeType_MakeArrayType_1, (RuntimeType * __this, int32_t rank, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06F90, RuntimeType_MakeArrayType_1__MethodInfo); DO_APP_FUNC(0x01BDF080, Type *, RuntimeType_make_byref_type, (RuntimeType * __this, MethodInfo * method)); DO_APP_FUNC(0x01BDF0A0, Type *, RuntimeType_MakeByRefType, (RuntimeType * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06F80, RuntimeType_MakeByRefType__MethodInfo); DO_APP_FUNC(0x01BDF130, Type *, RuntimeType_MakePointerType, (Type * type, MethodInfo * method)); DO_APP_FUNC(0x01BDF160, Type *, RuntimeType_MakePointerType_1, (RuntimeType * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06F70, RuntimeType_MakePointerType_1__MethodInfo); DO_APP_FUNC(0x01BDF270, bool, RuntimeType_get_ContainsGenericParameters, (RuntimeType * __this, MethodInfo * method)); DO_APP_FUNC(0x01BDF3B0, Type__Array *, RuntimeType_GetGenericParameterConstraints, (RuntimeType * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06FB0, RuntimeType_GetGenericParameterConstraints__MethodInfo); DO_APP_FUNC(0x01BDF4D0, Object *, RuntimeType_CreateInstanceForAnotherGenericParameter, (Type * genericType, RuntimeType * genericArgument, MethodInfo * method)); DO_APP_FUNC(0x01BDF610, Type *, RuntimeType_MakeGenericType_1, (Type * gt, Type__Array * types, MethodInfo * method)); DO_APP_FUNC(0x01BDF620, void *, RuntimeType_GetMethodsByName_native, (RuntimeType * __this, void * namePtr, BindingFlags__Enum bindingAttr, RuntimeType_MemberListType__Enum listType, MethodInfo * method)); @@ -3440,6 +3893,7 @@ DO_APP_FUNC(0x01BDFCD0, RuntimePropertyInfo__Array *, RuntimeType_GetPropertiesB DO_APP_FUNC(0x01BE0170, void, RuntimeType_GetGUID, (Type * type, Byte__Array * guid, MethodInfo * method)); DO_APP_FUNC(0x01BE01B0, Guid, RuntimeType_get_GUID, (RuntimeType * __this, MethodInfo * method)); DO_APP_FUNC(0x01BE0310, Type *, RuntimeType_GetTypeFromCLSIDImpl, (Guid clsid, String * server, bool throwOnError, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06F38, RuntimeType_GetTypeFromCLSIDImpl__MethodInfo); DO_APP_FUNC(0x01BE0370, TypeCode__Enum, RuntimeType_GetTypeCodeImpl, (RuntimeType * __this, MethodInfo * method)); DO_APP_FUNC(0x01BE03C0, TypeCode__Enum, RuntimeType_GetTypeCodeImplInternal, (Type * type, MethodInfo * method)); DO_APP_FUNC(0x01BE03D0, String *, RuntimeType_ToString, (RuntimeType * __this, MethodInfo * method)); @@ -3465,22 +3919,28 @@ DO_APP_FUNC(0x01BE1610, int32_t, RuntimeType_GetHashCode, (RuntimeType * __this, DO_APP_FUNC(0x01BE16C0, String *, RuntimeType_get_FullName, (RuntimeType * __this, MethodInfo * method)); DO_APP_FUNC(0x01BE18A0, bool, RuntimeType_get_IsSZArray, (RuntimeType * __this, MethodInfo * method)); DO_APP_FUNC(0x01BE1910, bool, RuntimeType_IsSubclassOf, (RuntimeType * __this, Type * type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06F30, RuntimeType_IsSubclassOf__MethodInfo); DO_APP_FUNC(0x01BE1A30, MethodInfo_1 *, RuntimeType_GetMethodImpl, (RuntimeType * __this, String * name, BindingFlags__Enum bindingAttr, Binder * binder, CallingConventions__Enum callConv, Type__Array * types, ParameterModifier__Array * modifiers, MethodInfo * method)); DO_APP_FUNC(0x01BE1A80, MethodInfo_1 *, RuntimeType_GetMethodImplCommon, (RuntimeType * __this, String * name, int32_t genericParameterCount, BindingFlags__Enum bindingAttr, Binder * binder, CallingConventions__Enum callConv, Type__Array * types, ParameterModifier__Array * modifiers, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06F20, RuntimeType_GetMethodImplCommon__MethodInfo); DO_APP_FUNC(0x01BE1F40, RuntimeType_ListBuilder_1_System_Reflection_MethodInfo_, RuntimeType_GetMethodCandidates_1, (RuntimeType * __this, String * name, int32_t genericParameterCount, BindingFlags__Enum bindingAttr, CallingConventions__Enum callConv, Type__Array * types, bool allowPrefixLookup, MethodInfo * method)); DO_APP_FUNC(0x01BE2180, void, RuntimeType__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01BE2840, void, ReflectionOnlyType__ctor, (ReflectionOnlyType * __this, MethodInfo * method)); DO_APP_FUNC(0x01BE2880, RuntimeTypeHandle, ReflectionOnlyType_get_TypeHandle, (ReflectionOnlyType * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09D30, ReflectionOnlyType_get_TypeHandle__MethodInfo); DO_APP_FUNC(0x003AE050, void, SharedStatics__ctor, (SharedStatics * __this, MethodInfo * method)); DO_APP_FUNC(0x01BE28F0, Tokenizer_StringMaker *, SharedStatics_GetSharedStringMaker, (MethodInfo * method)); -DO_APP_FUNC(0x01BE2CB0, void, SharedStatics_ReleaseSharedStringMaker, (Tokenizer_StringMaker * maker, MethodInfo * method)); +DO_APP_FUNC(0x01BE2CB0, void, SharedStatics_ReleaseSharedStringMaker, (Tokenizer_StringMaker * * maker, MethodInfo * method)); DO_APP_FUNC(0x01BE2ED0, void, SharedStatics__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01BE2F80, TypedReference, TypedReference_MakeTypedReference, (Object * target, FieldInfo_1__Array * flds, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09E50, TypedReference_MakeTypedReference__MethodInfo); DO_APP_FUNC(0x01BE3600, void, TypedReference_InternalMakeTypedReference, (Void * result, Object * target, IntPtr__Array * flds, RuntimeType * lastFieldType, MethodInfo * method)); -DO_APP_FUNC(0x01BE36D0, int32_t, TypedReference_GetHashCode, (TypedReference__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01BE3780, bool, TypedReference_Equals, (TypedReference__Boxed * __this, Object * o, MethodInfo * method)); -DO_APP_FUNC(0x01BE37F0, bool, TypedReference_get_IsNull, (TypedReference__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01BE36D0, int32_t, TypedReference_GetHashCode, (TypedReference * __this, MethodInfo * method)); +DO_APP_FUNC(0x01BE3780, bool, TypedReference_Equals, (TypedReference * __this, Object * o, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09DB0, TypedReference_Equals__MethodInfo); +DO_APP_FUNC(0x01BE37F0, bool, TypedReference_get_IsNull, (TypedReference * __this, MethodInfo * method)); DO_APP_FUNC(0x01BE3850, void, TypedReference_SetTypedReference, (TypedReference target, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09C08, TypedReference_SetTypedReference__MethodInfo); DO_APP_FUNC(0x01BE38B0, void, TypeLoadException__ctor, (TypeLoadException * __this, MethodInfo * method)); DO_APP_FUNC(0x01BE3900, void, TypeLoadException__ctor_1, (TypeLoadException * __this, String * message, MethodInfo * method)); DO_APP_FUNC(0x01BE3920, String *, TypeLoadException_get_Message, (TypeLoadException * __this, MethodInfo * method)); @@ -3488,16 +3948,22 @@ DO_APP_FUNC(0x01BE3940, void, TypeLoadException_SetMessageField, (TypeLoadExcept DO_APP_FUNC(0x01BE3BD0, void, TypeLoadException__ctor_2, (TypeLoadException * __this, String * className, String * assemblyName, MethodInfo * method)); DO_APP_FUNC(0x01BE3D70, void, TypeLoadException__ctor_3, (TypeLoadException * __this, String * className, String * assemblyName, String * messageArg, int32_t resourceId, MethodInfo * method)); DO_APP_FUNC(0x01BE3F20, void, TypeLoadException__ctor_4, (TypeLoadException * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09B48, TypeLoadException__ctor_4__MethodInfo); DO_APP_FUNC(0x01BE41C0, void, TypeLoadException_GetObjectData, (TypeLoadException * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09CC8, TypeLoadException_GetObjectData__MethodInfo); DO_APP_FUNC(0x01BE45D0, RuntimeType *, UnitySerializationHolder_AddElementTypes, (SerializationInfo * info, RuntimeType * type, MethodInfo * method)); DO_APP_FUNC(0x01BE4970, Type *, UnitySerializationHolder_MakeElementTypes, (UnitySerializationHolder * __this, Type * type, MethodInfo * method)); DO_APP_FUNC(0x01BE4A80, void, UnitySerializationHolder_GetUnitySerializationInfo, (SerializationInfo * info, int32_t unityType, MethodInfo * method)); DO_APP_FUNC(0x01BE4C90, void, UnitySerializationHolder_GetUnitySerializationInfo_1, (SerializationInfo * info, RuntimeType * type, MethodInfo * method)); DO_APP_FUNC(0x01BE52D0, void, UnitySerializationHolder_GetUnitySerializationInfo_2, (SerializationInfo * info, int32_t unityType, String * data, RuntimeAssembly * assembly, MethodInfo * method)); DO_APP_FUNC(0x01BE5520, void, UnitySerializationHolder__ctor, (UnitySerializationHolder * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09A30, UnitySerializationHolder__ctor__MethodInfo); DO_APP_FUNC(0x01BE5960, void, UnitySerializationHolder_ThrowInsufficientInformation, (UnitySerializationHolder * __this, String * field, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09A10, UnitySerializationHolder_ThrowInsufficientInformation__MethodInfo); DO_APP_FUNC(0x01BE5A10, void, UnitySerializationHolder_GetObjectData, (UnitySerializationHolder * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D099F0, UnitySerializationHolder_GetObjectData__MethodInfo); DO_APP_FUNC(0x01BE5A80, Object *, UnitySerializationHolder_GetRealObject, (UnitySerializationHolder * __this, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D099D0, UnitySerializationHolder_GetRealObject__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, AppDomain_IsAppXModel, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AppDomain__ctor, (AppDomain * __this, MethodInfo * method)); DO_APP_FUNC(0x01BE6190, String *, AppDomain_getFriendlyName, (AppDomain * __this, MethodInfo * method)); @@ -3507,14 +3973,17 @@ DO_APP_FUNC(0x01BE61F0, Assembly__Array *, AppDomain_GetAssemblies, (AppDomain * DO_APP_FUNC(0x01BE6330, Assembly__Array *, AppDomain_GetAssemblies_1, (AppDomain * __this, MethodInfo * method)); DO_APP_FUNC(0x01BE6470, Object *, AppDomain_GetData, (AppDomain * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x003CB690, Object *, AppDomain_InitializeLifetimeService, (AppDomain * __this, MethodInfo * method)); -DO_APP_FUNC(0x01BE65D0, Assembly *, AppDomain_LoadAssembly, (AppDomain * __this, String * assemblyRef, Evidence * securityEvidence, bool refOnly, StackCrawlMark__Enum stackMark, MethodInfo * method)); -DO_APP_FUNC(0x01BE65E0, Assembly *, AppDomain_LoadSatellite, (AppDomain * __this, AssemblyName * assemblyRef, bool throwOnError, StackCrawlMark__Enum stackMark, MethodInfo * method)); +DO_APP_FUNC(0x01BE65D0, Assembly *, AppDomain_LoadAssembly, (AppDomain * __this, String * assemblyRef, Evidence * securityEvidence, bool refOnly, StackCrawlMark__Enum * stackMark, MethodInfo * method)); +DO_APP_FUNC(0x01BE65E0, Assembly *, AppDomain_LoadSatellite, (AppDomain * __this, AssemblyName * assemblyRef, bool throwOnError, StackCrawlMark__Enum * stackMark, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09B00, AppDomain_LoadSatellite__MethodInfo); DO_APP_FUNC(0x01BE6700, Assembly *, AppDomain_Load, (AppDomain * __this, String * assemblyString, MethodInfo * method)); -DO_APP_FUNC(0x01BE6830, Assembly *, AppDomain_Load_1, (AppDomain * __this, String * assemblyString, Evidence * assemblySecurity, bool refonly, StackCrawlMark__Enum stackMark, MethodInfo * method)); +DO_APP_FUNC(0x01BE6830, Assembly *, AppDomain_Load_1, (AppDomain * __this, String * assemblyString, Evidence * assemblySecurity, bool refonly, StackCrawlMark__Enum * stackMark, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09AD8, AppDomain_Load_1__MethodInfo); DO_APP_FUNC(0x01BE6960, Assembly *, AppDomain_Load_2, (AppDomain * __this, Byte__Array * rawAssembly, MethodInfo * method)); DO_APP_FUNC(0x01BE6980, Assembly *, AppDomain_LoadAssemblyRaw, (AppDomain * __this, Byte__Array * rawAssembly, Byte__Array * rawSymbolStore, Evidence * securityEvidence, bool refonly, MethodInfo * method)); DO_APP_FUNC(0x01BE69A0, Assembly *, AppDomain_Load_3, (AppDomain * __this, Byte__Array * rawAssembly, Byte__Array * rawSymbolStore, Evidence * securityEvidence, MethodInfo * method)); DO_APP_FUNC(0x01BE69C0, Assembly *, AppDomain_Load_4, (AppDomain * __this, Byte__Array * rawAssembly, Byte__Array * rawSymbolStore, Evidence * securityEvidence, bool refonly, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09AA0, AppDomain_Load_4__MethodInfo); DO_APP_FUNC(0x01BE6A40, AppDomain *, AppDomain_InternalSetDomainByID, (int32_t domain_id, MethodInfo * method)); DO_APP_FUNC(0x01BE6A50, AppDomain *, AppDomain_InternalSetDomain, (AppDomain * context, MethodInfo * method)); DO_APP_FUNC(0x01BE6A60, void, AppDomain_InternalPushDomainRefByID, (int32_t domain_id, MethodInfo * method)); @@ -3536,7 +4005,7 @@ DO_APP_FUNC(0x01BE71B0, Assembly *, AppDomain_DoTypeResolve, (AppDomain * __this DO_APP_FUNC(0x01BE7690, Assembly *, AppDomain_DoResourceResolve, (AppDomain * __this, String * name, Assembly * requesting, MethodInfo * method)); DO_APP_FUNC(0x01BE77D0, void, AppDomain_DoDomainUnload, (AppDomain * __this, MethodInfo * method)); DO_APP_FUNC(0x01BE77F0, Byte__Array *, AppDomain_GetMarshalledDomainObjRef, (AppDomain * __this, MethodInfo * method)); -DO_APP_FUNC(0x01BE7880, void, AppDomain_ProcessMessageInDomain, (AppDomain * __this, Byte__Array * arrRequest, CADMethodCallMessage * cadMsg, Byte__Array * arrResponse, CADMethodReturnMessage * cadMrm, MethodInfo * method)); +DO_APP_FUNC(0x01BE7880, void, AppDomain_ProcessMessageInDomain, (AppDomain * __this, Byte__Array * arrRequest, CADMethodCallMessage * cadMsg, Byte__Array * * arrResponse, CADMethodReturnMessage * * cadMrm, MethodInfo * method)); DO_APP_FUNC(0x01BE7BC0, void, AppDomain_add_AssemblyLoad, (AppDomain * __this, AssemblyLoadEventHandler * value, MethodInfo * method)); DO_APP_FUNC(0x01BE7CB0, void, AppDomain_remove_AssemblyLoad, (AppDomain * __this, AssemblyLoadEventHandler * value, MethodInfo * method)); DO_APP_FUNC(0x01BE7DA0, void, AppDomain_add_DomainUnload, (AppDomain * __this, EventHandler * value, MethodInfo * method)); @@ -3565,6 +4034,7 @@ DO_APP_FUNC(0x01BE8BF0, String *, Environment_get_UserDomainName, (MethodInfo * DO_APP_FUNC(0x01BE8C00, String *, Environment_get_UserName, (MethodInfo * method)); DO_APP_FUNC(0x01BE8C80, void, Environment_Exit, (int32_t exitCode, MethodInfo * method)); DO_APP_FUNC(0x01BE8C90, String *, Environment_ExpandEnvironmentVariables, (String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09530, Environment_ExpandEnvironmentVariables__MethodInfo); DO_APP_FUNC(0x01BE9020, String__Array *, Environment_GetCommandLineArgs, (MethodInfo * method)); DO_APP_FUNC(0x01BE9130, String *, Environment_internalGetEnvironmentVariable_native, (void * variable, MethodInfo * method)); DO_APP_FUNC(0x01BE9270, String *, Environment_internalGetEnvironmentVariable, (String * variable, MethodInfo * method)); @@ -3576,6 +4046,7 @@ DO_APP_FUNC(0x01BE9880, String *, Environment_GetWindowsFolderPath, (int32_t fol DO_APP_FUNC(0x01BE9880, String *, Environment_GetFolderPath_1, (Environment_SpecialFolder__Enum folder, Environment_SpecialFolderOption__Enum option, MethodInfo * method)); DO_APP_FUNC(0x01BE9920, String *, Environment_ReadXdgUserDir, (String * config_dir, String * home_dir, String * key, String * fallback, MethodInfo * method)); DO_APP_FUNC(0x01BE9DB0, String *, Environment_UnixGetFolderPath, (Environment_SpecialFolder__Enum folder, Environment_SpecialFolderOption__Enum option, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09378, Environment_UnixGetFolderPath__MethodInfo); DO_APP_FUNC(0x01BEA310, void, Environment_FailFast, (String * message, MethodInfo * method)); DO_APP_FUNC(0x01BEA330, void, Environment_FailFast_1, (String * message, Exception * exception, MethodInfo * method)); DO_APP_FUNC(0x01BEA340, void, Environment_FailFast_2, (String * message, Exception * exception, String * errorSource, MethodInfo * method)); @@ -3591,10 +4062,11 @@ DO_APP_FUNC(0x00EAA8D0, int32_t, Environment_GetPageSize, (MethodInfo * method)) DO_APP_FUNC(0x0041AF00, bool, Environment_get_IsUnix, (MethodInfo * method)); DO_APP_FUNC(0x01BEA4B0, String *, Environment_GetStackTrace, (Exception * e, bool needFileInfo, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, MonoTypeInfo__ctor, (MonoTypeInfo * __this, MethodInfo * method)); -DO_APP_FUNC(0x01BEA560, Type *, TypeNameParser_GetType, (String * typeName, Func_2_System_Reflection_AssemblyName_System_Reflection_Assembly_ * assemblyResolver, Func_4_System_Reflection_Assembly_String_Boolean_Type_ * typeResolver, bool throwOnError, bool ignoreCase, StackCrawlMark__Enum stackMark, MethodInfo * method)); +DO_APP_FUNC(0x01BEA560, Type *, TypeNameParser_GetType, (String * typeName, Func_2_System_Reflection_AssemblyName_System_Reflection_Assembly_ * assemblyResolver, Func_4_System_Reflection_Assembly_String_Boolean_Type_ * typeResolver, bool throwOnError, bool ignoreCase, StackCrawlMark__Enum * stackMark, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AppDomainSetup__ctor, (AppDomainSetup * __this, MethodInfo * method)); -DO_APP_FUNC(0x01BEA6C0, bool, ArgIterator_Equals, (ArgIterator__Boxed * __this, Object * o, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, ArgIterator_GetHashCode, (ArgIterator__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01BEA6C0, bool, ArgIterator_Equals, (ArgIterator * __this, Object * o, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09498, ArgIterator_Equals__MethodInfo); +DO_APP_FUNC(0x00A9EFB0, int32_t, ArgIterator_GetHashCode, (ArgIterator * __this, MethodInfo * method)); DO_APP_FUNC(0x01BEA720, void, Console__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01BEA980, void, Console_SetupStreams, (Encoding * inputEncoding, Encoding * outputEncoding, MethodInfo * method)); DO_APP_FUNC(0x01BEAE70, TextWriter *, Console_get_Error, (MethodInfo * method)); @@ -3604,6 +4076,7 @@ DO_APP_FUNC(0x01BEB040, Stream *, Console_OpenStandardError, (int32_t bufferSize DO_APP_FUNC(0x01BEB0E0, Stream *, Console_OpenStandardInput, (int32_t bufferSize, MethodInfo * method)); DO_APP_FUNC(0x01BEB180, Stream *, Console_OpenStandardOutput, (int32_t bufferSize, MethodInfo * method)); DO_APP_FUNC(0x01BEB220, void, Console_SetOut, (TextWriter * newOut, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09330, Console_SetOut__MethodInfo); DO_APP_FUNC(0x01BEB360, void, Console_Write, (String * value, MethodInfo * method)); DO_APP_FUNC(0x01BEB3E0, void, Console_WriteLine, (Object * value, MethodInfo * method)); DO_APP_FUNC(0x01BEB460, void, Console_WriteLine_1, (String * value, MethodInfo * method)); @@ -3616,6 +4089,7 @@ DO_APP_FUNC(0x01BEB900, void, Console_DoConsoleCancelEvent, (MethodInfo * method DO_APP_FUNC(0x01BEBAD0, int32_t, Console_WindowsConsole_GetConsoleCP, (MethodInfo * method)); DO_APP_FUNC(0x01BEBB40, int32_t, Console_WindowsConsole_GetConsoleOutputCP, (MethodInfo * method)); DO_APP_FUNC(0x01BEBBB0, bool, Console_WindowsConsole_DoWindowsConsoleCancelEvent, (int32_t keyCode, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D091E8, Console_WindowsConsole_DoWindowsConsoleCancelEvent__MethodInfo); DO_APP_FUNC(0x01BEBC10, int32_t, Console_WindowsConsole_GetInputCodePage, (MethodInfo * method)); DO_APP_FUNC(0x01BEBCB0, int32_t, Console_WindowsConsole_GetOutputCodePage, (MethodInfo * method)); DO_APP_FUNC(0x01BEBD50, void, Console_WindowsConsole__cctor, (MethodInfo * method)); @@ -3629,7 +4103,7 @@ DO_APP_FUNC(0x01BEC2B0, ConsoleKeyInfo, ConsoleDriver_ReadKey, (bool intercept, DO_APP_FUNC(0x01BEC3D0, bool, ConsoleDriver_get_IsConsole, (MethodInfo * method)); DO_APP_FUNC(0x01BEC540, bool, ConsoleDriver_Isatty, (void * handle, MethodInfo * method)); DO_APP_FUNC(0x003CB690, int32_t, ConsoleDriver_InternalKeyAvailable, (int32_t ms_timeout, MethodInfo * method)); -DO_APP_FUNC(0x01BEC610, bool, ConsoleDriver_TtySetup, (String * keypadXmit, String * teardown, Byte__Array * control_characters, int32_t * address, MethodInfo * method)); +DO_APP_FUNC(0x01BEC610, bool, ConsoleDriver_TtySetup, (String * keypadXmit, String * teardown, Byte__Array * * control_characters, int32_t * * address, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, ConsoleDriver_SetEcho, (bool wantEcho, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, DelegateData__ctor, (DelegateData * __this, MethodInfo * method)); DO_APP_FUNC(0x01BACD40, MethodInfo_1 *, Delegate_get_Method, (Delegate * __this, MethodInfo * method)); @@ -3640,15 +4114,19 @@ DO_APP_FUNC(0x01BEC710, bool, Delegate_arg_type_match, (Type * delArgType, Type DO_APP_FUNC(0x01BEC930, bool, Delegate_arg_type_match_this, (Type * delArgType, Type * argType, bool boxedThis, MethodInfo * method)); DO_APP_FUNC(0x01BECAA0, bool, Delegate_return_type_match, (Type * delReturnType, Type * returnType, MethodInfo * method)); DO_APP_FUNC(0x01BECDD0, Delegate *, Delegate_CreateDelegate, (Type * type, Object * firstArgument, MethodInfo_1 * method_1, bool throwOnBindFailure, bool allowClosed, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09090, Delegate_CreateDelegate__MethodInfo); DO_APP_FUNC(0x01BED950, Delegate *, Delegate_CreateDelegate_1, (Type * type, Object * firstArgument, MethodInfo_1 * method_1, MethodInfo * method)); DO_APP_FUNC(0x01BED970, Delegate *, Delegate_CreateDelegate_2, (Type * type, MethodInfo_1 * method_1, bool throwOnBindFailure, MethodInfo * method)); DO_APP_FUNC(0x01BED9A0, Delegate *, Delegate_CreateDelegate_3, (Type * type, MethodInfo_1 * method_1, MethodInfo * method)); DO_APP_FUNC(0x01BED9D0, Delegate *, Delegate_CreateDelegate_4, (Type * type, Object * target, String * method_1, MethodInfo * method)); DO_APP_FUNC(0x01BEDAF0, MethodInfo_1 *, Delegate_GetCandidateMethod, (Type * type, Type * target, String * method_1, BindingFlags__Enum bflags, bool ignoreCase, bool throwOnBindFailure, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08ED0, Delegate_GetCandidateMethod__MethodInfo); DO_APP_FUNC(0x01BEE070, Delegate *, Delegate_CreateDelegate_5, (Type * type, Type * target, String * method_1, bool ignoreCase, bool throwOnBindFailure, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08E80, Delegate_CreateDelegate_5__MethodInfo); DO_APP_FUNC(0x01BEE1E0, Delegate *, Delegate_CreateDelegate_6, (Type * type, Type * target, String * method_1, MethodInfo * method)); DO_APP_FUNC(0x01BEE200, Delegate *, Delegate_CreateDelegate_7, (Type * type, Type * target, String * method_1, bool ignoreCase, MethodInfo * method)); DO_APP_FUNC(0x01BEE220, Delegate *, Delegate_CreateDelegate_8, (Type * type, Object * target, String * method_1, bool ignoreCase, bool throwOnBindFailure, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08E70, Delegate_CreateDelegate_8__MethodInfo); DO_APP_FUNC(0x01BEE350, Delegate *, Delegate_CreateDelegate_9, (Type * type, Object * target, String * method_1, bool ignoreCase, MethodInfo * method)); DO_APP_FUNC(0x01BEE480, Object *, Delegate_DynamicInvoke, (Delegate * __this, Object__Array * args, MethodInfo * method)); DO_APP_FUNC(0x01BEE4A0, void, Delegate_InitializeDelegateData, (Delegate * __this, MethodInfo * method)); @@ -3660,9 +4138,12 @@ DO_APP_FUNC(0x01BEEDB0, MethodInfo_1 *, Delegate_GetMethodImpl, (Delegate * __th DO_APP_FUNC(0x01BEEF30, void, Delegate_GetObjectData, (Delegate * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x01BEEF50, Delegate__Array *, Delegate_GetInvocationList, (Delegate * __this, MethodInfo * method)); DO_APP_FUNC(0x01BEEFF0, Delegate *, Delegate_Combine, (Delegate * a, Delegate * b, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08F50, Delegate_Combine__MethodInfo); DO_APP_FUNC(0x01BEF180, Delegate *, Delegate_Combine_1, (Delegate__Array * delegates, MethodInfo * method)); DO_APP_FUNC(0x01BEF350, Delegate *, Delegate_CombineImpl, (Delegate * __this, Delegate * d, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08F30, Delegate_CombineImpl__MethodInfo); DO_APP_FUNC(0x01BEF3C0, Delegate *, Delegate_Remove, (Delegate * source, Delegate * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08F10, Delegate_Remove__MethodInfo); DO_APP_FUNC(0x01BEF550, Delegate *, Delegate_RemoveImpl, (Delegate * __this, Delegate * d, MethodInfo * method)); DO_APP_FUNC(0x01BEF580, Delegate *, Delegate_RemoveAll, (Delegate * source, Delegate * value, MethodInfo * method)); DO_APP_FUNC(0x01BEF600, bool, Delegate_op_Equality, (Delegate * d1, Delegate * d2, MethodInfo * method)); @@ -3671,22 +4152,24 @@ DO_APP_FUNC(0x01BEF680, MulticastDelegate *, Delegate_AllocDelegateLike_internal DO_APP_FUNC(0x01BEF700, void, DelegateSerializationHolder__ctor, (DelegateSerializationHolder * __this, SerializationInfo * info, StreamingContext ctx, MethodInfo * method)); DO_APP_FUNC(0x01BEFA40, void, DelegateSerializationHolder_GetDelegateData, (Delegate * instance, SerializationInfo * info, StreamingContext ctx, MethodInfo * method)); DO_APP_FUNC(0x01BEFD20, void, DelegateSerializationHolder_GetObjectData, (DelegateSerializationHolder * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08D48, DelegateSerializationHolder_GetObjectData__MethodInfo); DO_APP_FUNC(0x003BB3C0, Object *, DelegateSerializationHolder_GetRealObject, (DelegateSerializationHolder * __this, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x01BEFD70, void, DelegateSerializationHolder_DelegateEntry__ctor, (DelegateSerializationHolder_DelegateEntry * __this, Delegate * del, String * targetLabel, MethodInfo * method)); DO_APP_FUNC(0x01BF0150, Delegate *, DelegateSerializationHolder_DelegateEntry_DeserializeDelegate, (DelegateSerializationHolder_DelegateEntry * __this, SerializationInfo * info, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01BF04D0, void, IntPtr__ctor, (IntPtr__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00A9A2A0, void, IntPtr__ctor_1, (IntPtr__Boxed * __this, int64_t value, MethodInfo * method)); -DO_APP_FUNC(0x00A9A2A0, void, IntPtr__ctor_2, (IntPtr__Boxed * __this, Void * value, MethodInfo * method)); -DO_APP_FUNC(0x01BF04E0, void, IntPtr__ctor_3, (IntPtr__Boxed * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC(0x01BF04D0, void, IntPtr__ctor, (IntPtr * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x00A9A2A0, void, IntPtr__ctor_1, (IntPtr * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC(0x00A9A2A0, void, IntPtr__ctor_2, (IntPtr * __this, Void * value, MethodInfo * method)); +DO_APP_FUNC(0x01BF04E0, void, IntPtr__ctor_3, (IntPtr * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x00EAA1F0, int32_t, IntPtr_get_Size, (MethodInfo * method)); -DO_APP_FUNC(0x01BF0540, void, IntPtr_System_Runtime_Serialization_ISerializable_GetObjectData, (IntPtr__Boxed * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); -DO_APP_FUNC(0x01BF05F0, bool, IntPtr_Equals, (IntPtr__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, IntPtr_GetHashCode, (IntPtr__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, IntPtr_ToInt32, (IntPtr__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E5B640, int64_t, IntPtr_ToInt64, (IntPtr__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, Void *, IntPtr_ToPointer, (IntPtr__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01BF0680, String *, IntPtr_ToString, (IntPtr__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01BF0710, String *, IntPtr_ToString_1, (IntPtr__Boxed * __this, String * format, MethodInfo * method)); +DO_APP_FUNC(0x01BF0540, void, IntPtr_System_Runtime_Serialization_ISerializable_GetObjectData, (IntPtr * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08E40, IntPtr_System_Runtime_Serialization_ISerializable_GetObjectData__MethodInfo); +DO_APP_FUNC(0x01BF05F0, bool, IntPtr_Equals, (IntPtr * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, IntPtr_GetHashCode, (IntPtr * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, IntPtr_ToInt32, (IntPtr * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E5B640, int64_t, IntPtr_ToInt64, (IntPtr * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Void *, IntPtr_ToPointer, (IntPtr * __this, MethodInfo * method)); +DO_APP_FUNC(0x01BF0680, String *, IntPtr_ToString, (IntPtr * __this, MethodInfo * method)); +DO_APP_FUNC(0x01BF0710, String *, IntPtr_ToString_1, (IntPtr * __this, String * format, MethodInfo * method)); DO_APP_FUNC(0x00A89090, bool, IntPtr_op_Equality, (void * value1, void * value2, MethodInfo * method)); DO_APP_FUNC(0x00A92050, bool, IntPtr_op_Inequality, (void * value1, void * value2, MethodInfo * method)); DO_APP_FUNC(0x01AAC580, void *, IntPtr_op_Explicit, (int32_t value, MethodInfo * method)); @@ -3698,16 +4181,20 @@ DO_APP_FUNC(0x00A1B820, Void *, IntPtr_op_Explicit_5, (void * value, MethodInfo DO_APP_FUNC(0x00EAA060, void *, IntPtr_Add, (void * pointer, int32_t offset, MethodInfo * method)); DO_APP_FUNC(0x00EAA060, void *, IntPtr_op_Addition, (void * pointer, int32_t offset, MethodInfo * method)); DO_APP_FUNC(0x01BF07E0, void *, IntPtr_op_Subtraction, (void * pointer, int32_t offset, MethodInfo * method)); -DO_APP_FUNC(0x00A9A290, bool, IntPtr_IsNull, (IntPtr__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9A720, bool, IntPtr_System_IEquatable_System_IntPtr__Equals, (IntPtr__Boxed * __this, void * other, MethodInfo * method)); +DO_APP_FUNC(0x00A9A290, bool, IntPtr_IsNull, (IntPtr * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9A720, bool, IntPtr_System_IEquatable_System_IntPtr__Equals, (IntPtr * __this, void * other, MethodInfo * method)); DO_APP_FUNC(0x01BF07F0, Byte__Array *, KnownTerminals_get_linux, (MethodInfo * method)); DO_APP_FUNC(0x01BF0860, Byte__Array *, KnownTerminals_get_xterm, (MethodInfo * method)); DO_APP_FUNC(0x01BF08D0, Byte__Array *, KnownTerminals_get_ansi, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, MarshalByRefObject__ctor, (MarshalByRefObject * __this, MethodInfo * method)); DO_APP_FUNC(0x01BF0940, ServerIdentity *, MarshalByRefObject_get_ObjectIdentity, (MarshalByRefObject * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08C10, MarshalByRefObject_get_ObjectIdentity__MethodInfo); DO_APP_FUNC(0x01BF0990, void, MarshalByRefObject_set_ObjectIdentity, (MarshalByRefObject * __this, ServerIdentity * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08C00, MarshalByRefObject_set_ObjectIdentity__MethodInfo); DO_APP_FUNC(0x01BF09E0, ObjRef *, MarshalByRefObject_CreateObjRef, (MarshalByRefObject * __this, Type * requestedType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08BF0, MarshalByRefObject_CreateObjRef__MethodInfo); DO_APP_FUNC(0x01BF0A30, Object *, MarshalByRefObject_InitializeLifetimeService, (MarshalByRefObject * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08BE0, MarshalByRefObject_InitializeLifetimeService__MethodInfo); DO_APP_FUNC(0x003AE050, void, MonoAsyncCall__ctor, (MonoAsyncCall * __this, MethodInfo * method)); DO_APP_FUNC(0x01BF0A80, bool, MonoCustomAttrs_IsUserCattrProvider, (Object * obj, MethodInfo * method)); DO_APP_FUNC(0x01BF0CF0, Attribute__Array *, MonoCustomAttrs_GetCustomAttributesInternal, (ICustomAttributeProvider * obj, Type * attributeType, bool pseudoAttrs, MethodInfo * method)); @@ -3715,19 +4202,25 @@ DO_APP_FUNC(0x01BF0D00, Object__Array *, MonoCustomAttrs_GetPseudoCustomAttribut DO_APP_FUNC(0x01BF0FB0, Object__Array *, MonoCustomAttrs_GetPseudoCustomAttributes_1, (Type * type, MethodInfo * method)); DO_APP_FUNC(0x01BF1130, Object__Array *, MonoCustomAttrs_GetCustomAttributesBase, (ICustomAttributeProvider * obj, Type * attributeType, bool inheritedOnly, MethodInfo * method)); DO_APP_FUNC(0x01BF1370, Object__Array *, MonoCustomAttrs_GetCustomAttributes, (ICustomAttributeProvider * obj, Type * attributeType, bool inherit, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08C40, MonoCustomAttrs_GetCustomAttributes__MethodInfo); DO_APP_FUNC(0x01BF1F70, Object__Array *, MonoCustomAttrs_GetCustomAttributes_1, (ICustomAttributeProvider * obj, bool inherit, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08AA8, MonoCustomAttrs_GetCustomAttributes_1__MethodInfo); DO_APP_FUNC(0x01BF2120, CustomAttributeData__Array *, MonoCustomAttrs_GetCustomAttributesDataInternal, (ICustomAttributeProvider * obj, MethodInfo * method)); DO_APP_FUNC(0x01BF2130, IList_1_System_Reflection_CustomAttributeData_ *, MonoCustomAttrs_GetCustomAttributesData, (ICustomAttributeProvider * obj, bool inherit, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08A80, MonoCustomAttrs_GetCustomAttributesData__MethodInfo); DO_APP_FUNC(0x01BF2280, IList_1_System_Reflection_CustomAttributeData_ *, MonoCustomAttrs_GetCustomAttributesData_1, (ICustomAttributeProvider * obj, Type * attributeType, bool inherit, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08B70, MonoCustomAttrs_GetCustomAttributesData_1__MethodInfo); DO_APP_FUNC(0x01BF2FA0, IList_1_System_Reflection_CustomAttributeData_ *, MonoCustomAttrs_GetCustomAttributesDataBase, (ICustomAttributeProvider * obj, Type * attributeType, bool inheritedOnly, MethodInfo * method)); DO_APP_FUNC(0x01BF3290, CustomAttributeData__Array *, MonoCustomAttrs_GetPseudoCustomAttributesData, (ICustomAttributeProvider * obj, Type * attributeType, MethodInfo * method)); DO_APP_FUNC(0x01BF3560, CustomAttributeData__Array *, MonoCustomAttrs_GetPseudoCustomAttributesData_1, (Type * type, MethodInfo * method)); DO_APP_FUNC(0x01BF3800, bool, MonoCustomAttrs_IsDefined, (ICustomAttributeProvider * obj, Type * attributeType, bool inherit, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08AE0, MonoCustomAttrs_IsDefined__MethodInfo); DO_APP_FUNC(0x01BF3AD0, bool, MonoCustomAttrs_IsDefinedInternal, (ICustomAttributeProvider * obj, Type * AttributeType, MethodInfo * method)); DO_APP_FUNC(0x01BF3B00, PropertyInfo_1 *, MonoCustomAttrs_GetBasePropertyDefinition, (RuntimePropertyInfo * property, MethodInfo * method)); DO_APP_FUNC(0x01BF3FD0, EventInfo_1 *, MonoCustomAttrs_GetBaseEventDefinition, (RuntimeEventInfo * evt, MethodInfo * method)); DO_APP_FUNC(0x01BF4230, ICustomAttributeProvider *, MonoCustomAttrs_GetBase, (ICustomAttributeProvider * obj, MethodInfo * method)); DO_APP_FUNC(0x01BF4720, AttributeUsageAttribute *, MonoCustomAttrs_RetrieveAttributeUsageNoCache, (Type * attributeType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08900, MonoCustomAttrs_RetrieveAttributeUsageNoCache__MethodInfo); DO_APP_FUNC(0x01BF4990, AttributeUsageAttribute *, MonoCustomAttrs_RetrieveAttributeUsage, (Type * attributeType, MethodInfo * method)); DO_APP_FUNC(0x01BF4CB0, void, MonoCustomAttrs__cctor, (MethodInfo * method)); DO_APP_FUNC(0x00A5E870, void, MonoCustomAttrs_AttributeInfo__ctor, (MonoCustomAttrs_AttributeInfo * __this, AttributeUsageAttribute * usage, int32_t inheritanceLevel, MethodInfo * method)); @@ -3743,6 +4236,7 @@ DO_APP_FUNC(0x01BF4FF0, Delegate__Array *, MulticastDelegate_GetInvocationList, DO_APP_FUNC(0x01BF50D0, Delegate *, MulticastDelegate_CombineImpl, (MulticastDelegate * __this, Delegate * follow, MethodInfo * method)); DO_APP_FUNC(0x01BF5550, int32_t, MulticastDelegate_LastIndexOf, (MulticastDelegate * __this, Delegate__Array * haystack, Delegate__Array * needle, MethodInfo * method)); DO_APP_FUNC(0x01BF5690, Delegate *, MulticastDelegate_RemoveImpl, (MulticastDelegate * __this, Delegate * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08980, MulticastDelegate_RemoveImpl__MethodInfo); DO_APP_FUNC(0x01BF5B30, ConsoleKeyInfo, NullConsoleDriver_ReadKey, (NullConsoleDriver * __this, bool intercept, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NullConsoleDriver__ctor, (NullConsoleDriver * __this, MethodInfo * method)); DO_APP_FUNC(0x01BF5BA0, void, NullConsoleDriver__cctor, (MethodInfo * method)); @@ -3756,32 +4250,38 @@ DO_APP_FUNC(0x01AA70A0, Object *, Object_MemberwiseClone, (Object * __this, Meth DO_APP_FUNC(0x01A6F6D0, String *, Object_ToString, (Object * __this, MethodInfo * method)); DO_APP_FUNC(0x00A89090, bool, Object_ReferenceEquals, (Object * objA, Object * objB, MethodInfo * method)); DO_APP_FUNC(0x019819D0, int32_t, Object_InternalGetHashCode, (Object * o, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Object_FieldGetter, (Object * __this, String * typeName, String * fieldName, Object * val, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Object_FieldGetter, (Object * __this, String * typeName, String * fieldName, Object * * val, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Object_FieldSetter, (Object * __this, String * typeName, String * fieldName, Object * val, MethodInfo * method)); -DO_APP_FUNC(0x00A9A2A0, void, RuntimeFieldHandle__ctor, (RuntimeFieldHandle__Boxed * __this, void * v, MethodInfo * method)); -DO_APP_FUNC(0x01BF5BF0, void, RuntimeFieldHandle__ctor_1, (RuntimeFieldHandle__Boxed * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); -DO_APP_FUNC(0x00471910, void *, RuntimeFieldHandle_get_Value, (RuntimeFieldHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01BF5DE0, void, RuntimeFieldHandle_GetObjectData, (RuntimeFieldHandle__Boxed * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); -DO_APP_FUNC(0x01BF6080, bool, RuntimeFieldHandle_Equals, (RuntimeFieldHandle__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, RuntimeFieldHandle_GetHashCode, (RuntimeFieldHandle__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9A2A0, void, RuntimeFieldHandle__ctor, (RuntimeFieldHandle * __this, void * v, MethodInfo * method)); +DO_APP_FUNC(0x01BF5BF0, void, RuntimeFieldHandle__ctor_1, (RuntimeFieldHandle * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D087A8, RuntimeFieldHandle__ctor_1__MethodInfo); +DO_APP_FUNC(0x00471910, void *, RuntimeFieldHandle_get_Value, (RuntimeFieldHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x01BF5DE0, void, RuntimeFieldHandle_GetObjectData, (RuntimeFieldHandle * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08778, RuntimeFieldHandle_GetObjectData__MethodInfo); +DO_APP_FUNC(0x01BF6080, bool, RuntimeFieldHandle_Equals, (RuntimeFieldHandle * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, RuntimeFieldHandle_GetHashCode, (RuntimeFieldHandle * __this, MethodInfo * method)); DO_APP_FUNC(0x01A77CF0, void, RuntimeFieldHandle_SetValueInternal, (FieldInfo_1 * fi, Object * obj, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x01A77CF0, void, RuntimeFieldHandle_SetValue, (RuntimeFieldInfo * field, Object * obj, Object * value, RuntimeType * fieldType, FieldAttributes__Enum fieldAttr, RuntimeType * declaringType, bool domainInitialized, MethodInfo * method)); +DO_APP_FUNC(0x01A77CF0, void, RuntimeFieldHandle_SetValue, (RuntimeFieldInfo * field, Object * obj, Object * value, RuntimeType * fieldType, FieldAttributes__Enum fieldAttr, RuntimeType * declaringType, bool * domainInitialized, MethodInfo * method)); DO_APP_FUNC(0x01BF6170, void, RuntimeFieldHandle_SetValueDirect, (RuntimeFieldInfo * field, RuntimeType * fieldType, Void * pTypedRef, Object * value, RuntimeType * contextType, MethodInfo * method)); -DO_APP_FUNC(0x00A9A2A0, void, RuntimeMethodHandle__ctor, (RuntimeMethodHandle__Boxed * __this, void * v, MethodInfo * method)); -DO_APP_FUNC(0x01BF6180, void, RuntimeMethodHandle__ctor_1, (RuntimeMethodHandle__Boxed * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); -DO_APP_FUNC(0x00471910, void *, RuntimeMethodHandle_get_Value, (RuntimeMethodHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01BF6370, void, RuntimeMethodHandle_GetObjectData, (RuntimeMethodHandle__Boxed * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); -DO_APP_FUNC(0x01BF6610, bool, RuntimeMethodHandle_Equals, (RuntimeMethodHandle__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, RuntimeMethodHandle_GetHashCode, (RuntimeMethodHandle__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9A2A0, void, RuntimeMethodHandle__ctor, (RuntimeMethodHandle * __this, void * v, MethodInfo * method)); +DO_APP_FUNC(0x01BF6180, void, RuntimeMethodHandle__ctor_1, (RuntimeMethodHandle * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08858, RuntimeMethodHandle__ctor_1__MethodInfo); +DO_APP_FUNC(0x00471910, void *, RuntimeMethodHandle_get_Value, (RuntimeMethodHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x01BF6370, void, RuntimeMethodHandle_GetObjectData, (RuntimeMethodHandle * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08838, RuntimeMethodHandle_GetObjectData__MethodInfo); +DO_APP_FUNC(0x01BF6610, bool, RuntimeMethodHandle_Equals, (RuntimeMethodHandle * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, RuntimeMethodHandle_GetHashCode, (RuntimeMethodHandle * __this, MethodInfo * method)); DO_APP_FUNC(0x01BF6700, String *, RuntimeMethodHandle_ConstructInstantiation, (RuntimeMethodInfo * method_1, TypeNameFormatFlags__Enum format, MethodInfo * method)); -DO_APP_FUNC(0x01BF6860, bool, RuntimeMethodHandle_IsNullHandle, (RuntimeMethodHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9A2A0, void, RuntimeTypeHandle__ctor, (RuntimeTypeHandle__Boxed * __this, void * val, MethodInfo * method)); -DO_APP_FUNC(0x01BF68B0, void, RuntimeTypeHandle__ctor_1, (RuntimeTypeHandle__Boxed * __this, RuntimeType * type, MethodInfo * method)); -DO_APP_FUNC(0x01BF68D0, void, RuntimeTypeHandle__ctor_2, (RuntimeTypeHandle__Boxed * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); -DO_APP_FUNC(0x00471910, void *, RuntimeTypeHandle_get_Value, (RuntimeTypeHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01BF6AC0, void, RuntimeTypeHandle_GetObjectData, (RuntimeTypeHandle__Boxed * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); -DO_APP_FUNC(0x01BF6DC0, bool, RuntimeTypeHandle_Equals, (RuntimeTypeHandle__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, RuntimeTypeHandle_GetHashCode, (RuntimeTypeHandle__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01BF6860, bool, RuntimeMethodHandle_IsNullHandle, (RuntimeMethodHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9A2A0, void, RuntimeTypeHandle__ctor, (RuntimeTypeHandle * __this, void * val, MethodInfo * method)); +DO_APP_FUNC(0x01BF68B0, void, RuntimeTypeHandle__ctor_1, (RuntimeTypeHandle * __this, RuntimeType * type, MethodInfo * method)); +DO_APP_FUNC(0x01BF68D0, void, RuntimeTypeHandle__ctor_2, (RuntimeTypeHandle * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08698, RuntimeTypeHandle__ctor_2__MethodInfo); +DO_APP_FUNC(0x00471910, void *, RuntimeTypeHandle_get_Value, (RuntimeTypeHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x01BF6AC0, void, RuntimeTypeHandle_GetObjectData, (RuntimeTypeHandle * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08668, RuntimeTypeHandle_GetObjectData__MethodInfo); +DO_APP_FUNC(0x01BF6DC0, bool, RuntimeTypeHandle_Equals, (RuntimeTypeHandle * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, RuntimeTypeHandle_GetHashCode, (RuntimeTypeHandle * __this, MethodInfo * method)); DO_APP_FUNC(0x01BD8AE0, TypeAttributes__Enum, RuntimeTypeHandle_GetAttributes, (RuntimeType * type, MethodInfo * method)); DO_APP_FUNC(0x01BDC650, int32_t, RuntimeTypeHandle_GetMetadataToken, (RuntimeType * type, MethodInfo * method)); DO_APP_FUNC(0x01BDC650, int32_t, RuntimeTypeHandle_GetToken, (RuntimeType * type, MethodInfo * method)); @@ -3814,14 +4314,16 @@ DO_APP_FUNC(0x01BDA490, bool, RuntimeTypeHandle_IsGenericTypeDefinition, (Runtim DO_APP_FUNC(0x01BF70D0, void *, RuntimeTypeHandle_GetGenericParameterInfo, (RuntimeType * type, MethodInfo * method)); DO_APP_FUNC(0x01BF70F0, bool, RuntimeTypeHandle_IsSubclassOf, (RuntimeType * childType, RuntimeType * baseType, MethodInfo * method)); DO_APP_FUNC(0x01BF7120, bool, RuntimeTypeHandle_is_subclass_of, (void * childType, void * baseType, MethodInfo * method)); -DO_APP_FUNC(0x01BF7130, RuntimeType *, RuntimeTypeHandle_internal_from_name, (String * name, StackCrawlMark__Enum stackMark, Assembly * callerAssembly, bool throwOnError, bool ignoreCase, bool reflectionOnly, MethodInfo * method)); -DO_APP_FUNC(0x01BF7150, RuntimeType *, RuntimeTypeHandle_GetTypeByName, (String * typeName, bool throwOnError, bool ignoreCase, bool reflectionOnly, StackCrawlMark__Enum stackMark, bool loadTypeFromPartialName, MethodInfo * method)); +DO_APP_FUNC(0x01BF7130, RuntimeType *, RuntimeTypeHandle_internal_from_name, (String * name, StackCrawlMark__Enum * stackMark, Assembly * callerAssembly, bool throwOnError, bool ignoreCase, bool reflectionOnly, MethodInfo * method)); +DO_APP_FUNC(0x01BF7150, RuntimeType *, RuntimeTypeHandle_GetTypeByName, (String * typeName, bool throwOnError, bool ignoreCase, bool reflectionOnly, StackCrawlMark__Enum * stackMark, bool loadTypeFromPartialName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08530, RuntimeTypeHandle_GetTypeByName__MethodInfo); DO_APP_FUNC(0x01BF74F0, String *, TermInfoDriver_TryTermInfoDir, (String * dir, String * term, MethodInfo * method)); DO_APP_FUNC(0x01BF7670, String *, TermInfoDriver_SearchTerminfo, (String * term, MethodInfo * method)); DO_APP_FUNC(0x01BF7820, void, TermInfoDriver_WriteConsole, (TermInfoDriver * __this, String * str, MethodInfo * method)); DO_APP_FUNC(0x01BF7850, void, TermInfoDriver__ctor, (TermInfoDriver * __this, String * term, MethodInfo * method)); DO_APP_FUNC(0x006C4760, bool, TermInfoDriver_get_Initialized, (TermInfoDriver * __this, MethodInfo * method)); DO_APP_FUNC(0x01BF8120, void, TermInfoDriver_Init, (TermInfoDriver * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08570, TermInfoDriver_Init__MethodInfo); DO_APP_FUNC(0x01BF8DE0, void, TermInfoDriver_IncrementX, (TermInfoDriver * __this, MethodInfo * method)); DO_APP_FUNC(0x01BF8E70, void, TermInfoDriver_WriteSpecialKey, (TermInfoDriver * __this, ConsoleKeyInfo key, MethodInfo * method)); DO_APP_FUNC(0x01BF9070, void, TermInfoDriver_WriteSpecialKey_1, (TermInfoDriver * __this, uint16_t c, MethodInfo * method)); @@ -3835,7 +4337,7 @@ DO_APP_FUNC(0x01BF9490, void, TermInfoDriver_AddToBuffer, (TermInfoDriver * __th DO_APP_FUNC(0x01BF9640, void, TermInfoDriver_AdjustBuffer, (TermInfoDriver * __this, MethodInfo * method)); DO_APP_FUNC(0x01BF9660, ConsoleKeyInfo, TermInfoDriver_CreateKeyInfoFromInt, (TermInfoDriver * __this, int32_t n, bool alt, MethodInfo * method)); DO_APP_FUNC(0x01BF97A0, Object *, TermInfoDriver_GetKeyFromBuffer, (TermInfoDriver * __this, bool cooked, MethodInfo * method)); -DO_APP_FUNC(0x01BF9B80, ConsoleKeyInfo, TermInfoDriver_ReadKeyInternal, (TermInfoDriver * __this, bool fresh, MethodInfo * method)); +DO_APP_FUNC(0x01BF9B80, ConsoleKeyInfo, TermInfoDriver_ReadKeyInternal, (TermInfoDriver * __this, bool * fresh, MethodInfo * method)); DO_APP_FUNC(0x01BF9D30, bool, TermInfoDriver_InputPending, (TermInfoDriver * __this, MethodInfo * method)); DO_APP_FUNC(0x01BF9D70, void, TermInfoDriver_QueueEcho, (TermInfoDriver * __this, uint16_t c, MethodInfo * method)); DO_APP_FUNC(0x01BF9EB0, void, TermInfoDriver_Echo, (TermInfoDriver * __this, ConsoleKeyInfo key, MethodInfo * method)); @@ -3846,39 +4348,48 @@ DO_APP_FUNC(0x01BFA520, String *, TermInfoDriver_ReadLine, (TermInfoDriver * __t DO_APP_FUNC(0x01BFA530, String *, TermInfoDriver_ReadToEnd, (TermInfoDriver * __this, MethodInfo * method)); DO_APP_FUNC(0x01BFA540, String *, TermInfoDriver_ReadUntilConditionInternal, (TermInfoDriver * __this, bool haltOnNewLine, MethodInfo * method)); DO_APP_FUNC(0x01BFA850, void, TermInfoDriver_SetCursorPosition, (TermInfoDriver * __this, int32_t left, int32_t top, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08448, TermInfoDriver_SetCursorPosition__MethodInfo); DO_APP_FUNC(0x01BFAC00, void, TermInfoDriver_CreateKeyMap, (TermInfoDriver * __this, MethodInfo * method)); DO_APP_FUNC(0x01BFCBF0, void, TermInfoDriver_InitKeys, (TermInfoDriver * __this, MethodInfo * method)); DO_APP_FUNC(0x01BFCF10, void, TermInfoDriver_AddStringMapping, (TermInfoDriver * __this, TermInfoStrings__Enum s, MethodInfo * method)); DO_APP_FUNC(0x01BFCF60, void, TermInfoDriver__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01BFD260, String *, ParameterizedStrings_Evaluate, (String * format, ParameterizedStrings_FormatParam__Array * args, MethodInfo * method)); -DO_APP_FUNC(0x01BFD4A0, String *, ParameterizedStrings_EvaluateInternal, (String * format, int32_t pos, ParameterizedStrings_FormatParam__Array * args, ParameterizedStrings_LowLevelStack * stack, ParameterizedStrings_FormatParam__Array * dynamicVars, ParameterizedStrings_FormatParam__Array * staticVars, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D081F8, ParameterizedStrings_Evaluate__MethodInfo); +DO_APP_FUNC(0x01BFD4A0, String *, ParameterizedStrings_EvaluateInternal, (String * format, int32_t * pos, ParameterizedStrings_FormatParam__Array * args, ParameterizedStrings_LowLevelStack * stack, ParameterizedStrings_FormatParam__Array * * dynamicVars, ParameterizedStrings_FormatParam__Array * * staticVars, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08348, ParameterizedStrings_EvaluateInternal__MethodInfo); DO_APP_FUNC(0x00A9F1E0, bool, ParameterizedStrings_AsBool, (int32_t i, MethodInfo * method)); DO_APP_FUNC(0x01AAADE0, int32_t, ParameterizedStrings_AsInt, (bool b, MethodInfo * method)); DO_APP_FUNC(0x01BFE210, String *, ParameterizedStrings_StringFromAsciiBytes, (Byte__Array * buffer, int32_t offset, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x01BFE300, int32_t, ParameterizedStrings_snprintf, (uint8_t * str, void * size, String * format, String * arg1, MethodInfo * method)); DO_APP_FUNC(0x01BFE3F0, int32_t, ParameterizedStrings_snprintf_1, (uint8_t * str, void * size, String * format, int32_t arg1, MethodInfo * method)); DO_APP_FUNC(0x01BFE4C0, String *, ParameterizedStrings_FormatPrintF, (String * format, Object * arg, MethodInfo * method)); -DO_APP_FUNC(0x01BFE7B0, ParameterizedStrings_FormatParam__Array *, ParameterizedStrings_GetDynamicOrStaticVariables, (uint16_t c, ParameterizedStrings_FormatParam__Array * dynamicVars, ParameterizedStrings_FormatParam__Array * staticVars, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01BFE8C0, void, ParameterizedStrings_FormatParam__ctor, (ParameterizedStrings_FormatParam__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x0114D850, void, ParameterizedStrings_FormatParam__ctor_1, (ParameterizedStrings_FormatParam__Boxed * __this, int32_t intValue, String * stringValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D082E8, ParameterizedStrings_FormatPrintF__MethodInfo); +DO_APP_FUNC(0x01BFE7B0, ParameterizedStrings_FormatParam__Array *, ParameterizedStrings_GetDynamicOrStaticVariables, (uint16_t c, ParameterizedStrings_FormatParam__Array * * dynamicVars, ParameterizedStrings_FormatParam__Array * * staticVars, int32_t * index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08130, ParameterizedStrings_GetDynamicOrStaticVariables__MethodInfo); +DO_APP_FUNC(0x01BFE8C0, void, ParameterizedStrings_FormatParam__ctor, (ParameterizedStrings_FormatParam * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x0114D850, void, ParameterizedStrings_FormatParam__ctor_1, (ParameterizedStrings_FormatParam * __this, int32_t intValue, String * stringValue, MethodInfo * method)); DO_APP_FUNC(0x01BFE920, ParameterizedStrings_FormatParam, ParameterizedStrings_FormatParam_op_Implicit, (int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, ParameterizedStrings_FormatParam_get_Int32, (ParameterizedStrings_FormatParam__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01BFE980, String *, ParameterizedStrings_FormatParam_get_String, (ParameterizedStrings_FormatParam__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01BFE9D0, Object *, ParameterizedStrings_FormatParam_get_Object, (ParameterizedStrings_FormatParam__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, ParameterizedStrings_FormatParam_get_Int32, (ParameterizedStrings_FormatParam * __this, MethodInfo * method)); +DO_APP_FUNC(0x01BFE980, String *, ParameterizedStrings_FormatParam_get_String, (ParameterizedStrings_FormatParam * __this, MethodInfo * method)); +DO_APP_FUNC(0x01BFE9D0, Object *, ParameterizedStrings_FormatParam_get_Object, (ParameterizedStrings_FormatParam * __this, MethodInfo * method)); DO_APP_FUNC(0x01BFEA20, void, ParameterizedStrings_LowLevelStack__ctor, (ParameterizedStrings_LowLevelStack * __this, MethodInfo * method)); DO_APP_FUNC(0x01BFEAB0, ParameterizedStrings_FormatParam, ParameterizedStrings_LowLevelStack_Pop, (ParameterizedStrings_LowLevelStack * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D080E0, ParameterizedStrings_LowLevelStack_Pop__MethodInfo); DO_APP_FUNC(0x01BFEB80, void, ParameterizedStrings_LowLevelStack_Push, (ParameterizedStrings_LowLevelStack * __this, ParameterizedStrings_FormatParam item, MethodInfo * method)); DO_APP_FUNC(0x01BFED30, void, ParameterizedStrings_LowLevelStack_Clear, (ParameterizedStrings_LowLevelStack * __this, MethodInfo * method)); DO_APP_FUNC(0x01BFED60, void, ByteMatcher_AddMapping, (ByteMatcher * __this, TermInfoStrings__Enum key, Byte__Array * val, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ByteMatcher_Sort, (ByteMatcher * __this, MethodInfo * method)); DO_APP_FUNC(0x01BFEE90, bool, ByteMatcher_StartsWith, (ByteMatcher * __this, int32_t c, MethodInfo * method)); -DO_APP_FUNC(0x01BFEF10, TermInfoStrings__Enum, ByteMatcher_Match, (ByteMatcher * __this, Char__Array * buffer, int32_t offset, int32_t length, int32_t used, MethodInfo * method)); +DO_APP_FUNC(0x01BFEF10, TermInfoStrings__Enum, ByteMatcher_Match, (ByteMatcher * __this, Char__Array * buffer, int32_t offset, int32_t length, int32_t * used, MethodInfo * method)); DO_APP_FUNC(0x01BFF230, void, ByteMatcher__ctor, (ByteMatcher * __this, MethodInfo * method)); DO_APP_FUNC(0x01BFF390, void, TermInfoReader__ctor, (TermInfoReader * __this, String * term, String * filename, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D081A8, TermInfoReader__ctor__MethodInfo); DO_APP_FUNC(0x01BFF600, void, TermInfoReader__ctor_1, (TermInfoReader * __this, String * term, Byte__Array * buffer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08188, TermInfoReader__ctor_1__MethodInfo); DO_APP_FUNC(0x01BFF6E0, void, TermInfoReader_DetermineVersion, (TermInfoReader * __this, int16_t magic, MethodInfo * method)); -DO_APP_FUNC(0x01BFF7B0, void, TermInfoReader_ReadHeader, (TermInfoReader * __this, Byte__Array * buffer, int32_t position, MethodInfo * method)); -DO_APP_FUNC(0x01BFFA20, void, TermInfoReader_ReadNames, (TermInfoReader * __this, Byte__Array * buffer, int32_t position, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08168, TermInfoReader_DetermineVersion__MethodInfo); +DO_APP_FUNC(0x01BFF7B0, void, TermInfoReader_ReadHeader, (TermInfoReader * __this, Byte__Array * buffer, int32_t * position, MethodInfo * method)); +DO_APP_FUNC(0x01BFFA20, void, TermInfoReader_ReadNames, (TermInfoReader * __this, Byte__Array * buffer, int32_t * position, MethodInfo * method)); DO_APP_FUNC(0x01BFFAD0, int32_t, TermInfoReader_Get, (TermInfoReader * __this, TermInfoNumbers__Enum number, MethodInfo * method)); DO_APP_FUNC(0x01BFFB90, String *, TermInfoReader_Get_1, (TermInfoReader * __this, TermInfoStrings__Enum tstr, MethodInfo * method)); DO_APP_FUNC(0x01BFFCE0, Byte__Array *, TermInfoReader_GetStringBytes, (TermInfoReader * __this, TermInfoStrings__Enum tstr, MethodInfo * method)); @@ -3907,106 +4418,128 @@ DO_APP_FUNC(0x01C00B60, String *, TypeSpec_GetDisplayFullName, (TypeSpec * __thi DO_APP_FUNC(0x01C01100, StringBuilder *, TypeSpec_GetModifierString, (TypeSpec * __this, StringBuilder * sb, MethodInfo * method)); DO_APP_FUNC(0x01C01380, String *, TypeSpec_get_DisplayFullName, (TypeSpec * __this, MethodInfo * method)); DO_APP_FUNC(0x01C01400, TypeSpec *, TypeSpec_Parse, (String * typeName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D7E8, TypeSpec_Parse__MethodInfo); DO_APP_FUNC(0x01C01500, String *, TypeSpec_UnescapeInternalName, (String * displayName, MethodInfo * method)); -DO_APP_FUNC(0x01C01600, Type *, TypeSpec_Resolve, (TypeSpec * __this, Func_2_System_Reflection_AssemblyName_System_Reflection_Assembly_ * assemblyResolver, Func_4_System_Reflection_Assembly_String_Boolean_Type_ * typeResolver, bool throwOnError, bool ignoreCase, StackCrawlMark__Enum stackMark, MethodInfo * method)); +DO_APP_FUNC(0x01C01600, Type *, TypeSpec_Resolve, (TypeSpec * __this, Func_2_System_Reflection_AssemblyName_System_Reflection_Assembly_ * assemblyResolver, Func_4_System_Reflection_Assembly_String_Boolean_Type_ * typeResolver, bool throwOnError, bool ignoreCase, StackCrawlMark__Enum * stackMark, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D7D0, TypeSpec_Resolve__MethodInfo); DO_APP_FUNC(0x01C020C0, void, TypeSpec_AddName, (TypeSpec * __this, String * type_name, MethodInfo * method)); DO_APP_FUNC(0x01C022A0, void, TypeSpec_AddModifier, (TypeSpec * __this, ModifierSpec * md, MethodInfo * method)); -DO_APP_FUNC(0x01C023F0, void, TypeSpec_SkipSpace, (String * name, int32_t pos, MethodInfo * method)); +DO_APP_FUNC(0x01C023F0, void, TypeSpec_SkipSpace, (String * name, int32_t * pos, MethodInfo * method)); DO_APP_FUNC(0x01C024B0, void, TypeSpec_BoundCheck, (int32_t idx, String * s, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D6C8, TypeSpec_BoundCheck__MethodInfo); DO_APP_FUNC(0x01C02550, TypeIdentifier *, TypeSpec_ParsedTypeIdentifier, (String * displayName, MethodInfo * method)); -DO_APP_FUNC(0x01C02560, TypeSpec *, TypeSpec_Parse_1, (String * name, int32_t p, bool is_recurse, bool allow_aqn, MethodInfo * method)); +DO_APP_FUNC(0x01C02560, TypeSpec *, TypeSpec_Parse_1, (String * name, int32_t * p, bool is_recurse, bool allow_aqn, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D750, TypeSpec_Parse_1__MethodInfo); DO_APP_FUNC(0x003AE050, void, TypeSpec__ctor, (TypeSpec * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C03570, void, UIntPtr__ctor, (UIntPtr__Boxed * __this, uint64_t value, MethodInfo * method)); -DO_APP_FUNC(0x01C035D0, void, UIntPtr__ctor_1, (UIntPtr__Boxed * __this, uint32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00A9A2A0, void, UIntPtr__ctor_2, (UIntPtr__Boxed * __this, Void * value, MethodInfo * method)); -DO_APP_FUNC(0x01C035E0, bool, UIntPtr_Equals, (UIntPtr__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, UIntPtr_GetHashCode, (UIntPtr__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C03670, String *, UIntPtr_ToString, (UIntPtr__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C03740, void, UIntPtr_System_Runtime_Serialization_ISerializable_GetObjectData, (UIntPtr__Boxed * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC(0x01C03570, void, UIntPtr__ctor, (UIntPtr * __this, uint64_t value, MethodInfo * method)); +DO_APP_FUNC(0x01C035D0, void, UIntPtr__ctor_1, (UIntPtr * __this, uint32_t value, MethodInfo * method)); +DO_APP_FUNC(0x00A9A2A0, void, UIntPtr__ctor_2, (UIntPtr * __this, Void * value, MethodInfo * method)); +DO_APP_FUNC(0x01C035E0, bool, UIntPtr_Equals, (UIntPtr * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, UIntPtr_GetHashCode, (UIntPtr * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C03670, String *, UIntPtr_ToString, (UIntPtr * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C03740, void, UIntPtr_System_Runtime_Serialization_ISerializable_GetObjectData, (UIntPtr * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D6B8, UIntPtr_System_Runtime_Serialization_ISerializable_GetObjectData__MethodInfo); DO_APP_FUNC(0x00A89090, bool, UIntPtr_op_Equality, (void * value1, void * value2, MethodInfo * method)); DO_APP_FUNC(0x00A92050, bool, UIntPtr_op_Inequality, (void * value1, void * value2, MethodInfo * method)); DO_APP_FUNC(0x01C037F0, void *, UIntPtr_op_Explicit, (uint64_t value, MethodInfo * method)); DO_APP_FUNC(0x00959BB0, void *, UIntPtr_op_Explicit_1, (uint32_t value, MethodInfo * method)); DO_APP_FUNC(0x00EAA1F0, int32_t, UIntPtr_get_Size, (MethodInfo * method)); -DO_APP_FUNC(0x00A9A720, bool, UIntPtr_System_IEquatable_System_UIntPtr__Equals, (UIntPtr__Boxed * __this, void * other, MethodInfo * method)); +DO_APP_FUNC(0x00A9A720, bool, UIntPtr_System_IEquatable_System_UIntPtr__Equals, (UIntPtr * __this, void * other, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, UIntPtr__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ValueType__ctor, (ValueType * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C03850, bool, ValueType_InternalEquals, (Object * o1, Object * o2, Object__Array * fields, MethodInfo * method)); +DO_APP_FUNC(0x01C03850, bool, ValueType_InternalEquals, (Object * o1, Object * o2, Object__Array * * fields, MethodInfo * method)); DO_APP_FUNC(0x01C03860, bool, ValueType_DefaultEquals, (Object * o1, Object * o2, MethodInfo * method)); DO_APP_FUNC(0x01BCC4C0, bool, ValueType_Equals, (ValueType * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x01C03A30, int32_t, ValueType_InternalGetHashCode, (Object * o, Object__Array * fields, MethodInfo * method)); +DO_APP_FUNC(0x01C03A30, int32_t, ValueType_InternalGetHashCode, (Object * o, Object__Array * * fields, MethodInfo * method)); DO_APP_FUNC(0x01C03A40, int32_t, ValueType_GetHashCode, (ValueType * __this, MethodInfo * method)); DO_APP_FUNC(0x01C03AD0, String *, ValueType_ToString, (ValueType * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C03B10, void, Variant_Clear, (Variant__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C03B10, void, Variant_Clear, (Variant * __this, MethodInfo * method)); DO_APP_FUNC(0x01C03BD0, void, WeakReference_AllocateHandle, (WeakReference * __this, Object * target, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, WeakReference__ctor, (WeakReference * __this, MethodInfo * method)); DO_APP_FUNC(0x01C03C00, void, WeakReference__ctor_1, (WeakReference * __this, Object * target, MethodInfo * method)); DO_APP_FUNC(0x01C03C30, void, WeakReference__ctor_2, (WeakReference * __this, Object * target, bool trackResurrection, MethodInfo * method)); DO_APP_FUNC(0x01C03C60, void, WeakReference__ctor_3, (WeakReference * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D6B0, WeakReference__ctor_3__MethodInfo); DO_APP_FUNC(0x01C03DA0, bool, WeakReference_get_IsAlive, (WeakReference * __this, MethodInfo * method)); DO_APP_FUNC(0x01C03DD0, Object *, WeakReference_get_Target, (WeakReference * __this, MethodInfo * method)); DO_APP_FUNC(0x01C03E30, void, WeakReference_set_Target, (WeakReference * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x003BCD20, bool, WeakReference_get_TrackResurrection, (WeakReference * __this, MethodInfo * method)); DO_APP_FUNC(0x01C03E40, void, WeakReference_Finalize, (WeakReference * __this, MethodInfo * method)); DO_APP_FUNC(0x01C03E90, void, WeakReference_GetObjectData, (WeakReference * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D6A8, WeakReference_GetObjectData__MethodInfo); DO_APP_FUNC(0x01C03FC0, void, WindowsConsoleDriver__ctor, (WindowsConsoleDriver * __this, MethodInfo * method)); DO_APP_FUNC(0x01C040D0, ConsoleKeyInfo, WindowsConsoleDriver_ReadKey, (WindowsConsoleDriver * __this, bool intercept, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D698, WindowsConsoleDriver_ReadKey__MethodInfo); DO_APP_FUNC(0x01C04320, bool, WindowsConsoleDriver_IsModifierKey, (int16_t virtualKeyCode, MethodInfo * method)); DO_APP_FUNC(0x01C04350, void *, WindowsConsoleDriver_GetStdHandle, (Handles__Enum handle, MethodInfo * method)); -DO_APP_FUNC(0x01C04390, bool, WindowsConsoleDriver_GetConsoleScreenBufferInfo, (void * handle, ConsoleScreenBufferInfo info, MethodInfo * method)); -DO_APP_FUNC(0x01C04430, bool, WindowsConsoleDriver_ReadConsoleInput, (void * handle, InputRecord record, int32_t length, int32_t nread, MethodInfo * method)); +DO_APP_FUNC(0x01C04390, bool, WindowsConsoleDriver_GetConsoleScreenBufferInfo, (void * handle, ConsoleScreenBufferInfo * info, MethodInfo * method)); +DO_APP_FUNC(0x01C04430, bool, WindowsConsoleDriver_ReadConsoleInput, (void * handle, InputRecord * record, int32_t length, int32_t * nread, MethodInfo * method)); DO_APP_FUNC(0x01C04560, void, _ComObject__ctor, (_ComObject * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C173E0, uint32_t, Decimal_get_High, (Decimal__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471920, uint32_t, Decimal_get_Low, (Decimal__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E57F20, uint32_t, Decimal_get_Mid, (Decimal__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C045B0, bool, Decimal_get_IsNegative, (Decimal__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C045C0, int32_t, Decimal_get_Scale, (Decimal__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C045D0, uint64_t, Decimal_get_Low64, (Decimal__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Decimal_DecCalc, Decimal_AsMutable, (Decimal d, MethodInfo * method)); -DO_APP_FUNC(0x01C04670, uint32_t, Decimal_DecDivMod1E9, (Decimal value, MethodInfo * method)); -DO_APP_FUNC(0x01C04750, void, Decimal__ctor, (Decimal__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x01C04780, void, Decimal__ctor_1, (Decimal__Boxed * __this, uint32_t value, MethodInfo * method)); -DO_APP_FUNC(0x01C04790, void, Decimal__ctor_2, (Decimal__Boxed * __this, int64_t value, MethodInfo * method)); -DO_APP_FUNC(0x01C047C0, void, Decimal__ctor_3, (Decimal__Boxed * __this, uint64_t value, MethodInfo * method)); -DO_APP_FUNC(0x01C047D0, void, Decimal__ctor_4, (Decimal__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x01C04860, void, Decimal__ctor_5, (Decimal__Boxed * __this, double value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D5F8, _ComObject__ctor__MethodInfo); +DO_APP_FUNC(0x00C173E0, uint32_t, Decimal_get_High, (Decimal * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471920, uint32_t, Decimal_get_Low, (Decimal * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E57F20, uint32_t, Decimal_get_Mid, (Decimal * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C045B0, bool, Decimal_get_IsNegative, (Decimal * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C045C0, int32_t, Decimal_get_Scale, (Decimal * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C045D0, uint64_t, Decimal_get_Low64, (Decimal * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Decimal_DecCalc *, Decimal_AsMutable, (Decimal * d, MethodInfo * method)); +DO_APP_FUNC(0x01C04670, uint32_t, Decimal_DecDivMod1E9, (Decimal * value, MethodInfo * method)); +DO_APP_FUNC(0x01C04750, void, Decimal__ctor, (Decimal * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x01C04780, void, Decimal__ctor_1, (Decimal * __this, uint32_t value, MethodInfo * method)); +DO_APP_FUNC(0x01C04790, void, Decimal__ctor_2, (Decimal * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC(0x01C047C0, void, Decimal__ctor_3, (Decimal * __this, uint64_t value, MethodInfo * method)); +DO_APP_FUNC(0x01C047D0, void, Decimal__ctor_4, (Decimal * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x01C04860, void, Decimal__ctor_5, (Decimal * __this, double value, MethodInfo * method)); DO_APP_FUNC(0x01C048F0, bool, Decimal_IsValid, (int32_t flags, MethodInfo * method)); -DO_APP_FUNC(0x01C04910, void, Decimal__ctor_6, (Decimal__Boxed * __this, Int32__Array * bits, MethodInfo * method)); -DO_APP_FUNC(0x01C04A70, void, Decimal__ctor_7, (Decimal__Boxed * __this, int32_t lo, int32_t mid, int32_t hi, bool isNegative, uint8_t scale, MethodInfo * method)); -DO_APP_FUNC(0x01C04B20, void, Decimal_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization, (Decimal__Boxed * __this, Object * sender, MethodInfo * method)); -DO_APP_FUNC(0x01C04BD0, void, Decimal__ctor_8, (Decimal__Boxed * __this, Decimal d, int32_t flags, MethodInfo * method)); +DO_APP_FUNC(0x01C04910, void, Decimal__ctor_6, (Decimal * __this, Int32__Array * bits, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D640, Decimal__ctor_6__MethodInfo); +DO_APP_FUNC(0x01C04A70, void, Decimal__ctor_7, (Decimal * __this, int32_t lo, int32_t mid, int32_t hi, bool isNegative, uint8_t scale, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D630, Decimal__ctor_7__MethodInfo); +DO_APP_FUNC(0x01C04B20, void, Decimal_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization, (Decimal * __this, Object * sender, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D620, Decimal_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization__MethodInfo); +DO_APP_FUNC(0x01C04BD0, void, Decimal__ctor_8, (Decimal * __this, Decimal * d, int32_t flags, MethodInfo * method)); DO_APP_FUNC(0x01C04BE0, Decimal, Decimal_Add, (Decimal d1, Decimal d2, MethodInfo * method)); -DO_APP_FUNC(0x01C04C80, int32_t, Decimal_CompareTo, (Decimal__Boxed * __this, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x01C04D90, int32_t, Decimal_CompareTo_1, (Decimal__Boxed * __this, Decimal value, MethodInfo * method)); -DO_APP_FUNC(0x01C04DF0, bool, Decimal_Equals, (Decimal__Boxed * __this, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x01C04EB0, bool, Decimal_Equals_1, (Decimal__Boxed * __this, Decimal value, MethodInfo * method)); -DO_APP_FUNC(0x01C04F20, int32_t, Decimal_GetHashCode, (Decimal__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C050B0, String *, Decimal_ToString, (Decimal__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C05170, String *, Decimal_ToString_1, (Decimal__Boxed * __this, String * format, MethodInfo * method)); -DO_APP_FUNC(0x01C05250, String *, Decimal_ToString_2, (Decimal__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01C05320, String *, Decimal_ToString_3, (Decimal__Boxed * __this, String * format, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01C05410, bool, Decimal_TryFormat, (Decimal__Boxed * __this, Span_1_Char_ destination, int32_t charsWritten, ReadOnlySpan_1_Char_ format, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01C04C80, int32_t, Decimal_CompareTo, (Decimal * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D608, Decimal_CompareTo__MethodInfo); +DO_APP_FUNC(0x01C04D90, int32_t, Decimal_CompareTo_1, (Decimal * __this, Decimal value, MethodInfo * method)); +DO_APP_FUNC(0x01C04DF0, bool, Decimal_Equals, (Decimal * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x01C04EB0, bool, Decimal_Equals_1, (Decimal * __this, Decimal value, MethodInfo * method)); +DO_APP_FUNC(0x01C04F20, int32_t, Decimal_GetHashCode, (Decimal * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C050B0, String *, Decimal_ToString, (Decimal * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C05170, String *, Decimal_ToString_1, (Decimal * __this, String * format, MethodInfo * method)); +DO_APP_FUNC(0x01C05250, String *, Decimal_ToString_2, (Decimal * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01C05320, String *, Decimal_ToString_3, (Decimal * __this, String * format, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01C05410, bool, Decimal_TryFormat, (Decimal * __this, Span_1_Char_ destination, int32_t * charsWritten, ReadOnlySpan_1_Char_ format, IFormatProvider * provider, MethodInfo * method)); DO_APP_FUNC(0x01C054E0, Decimal, Decimal_Parse, (String * s, IFormatProvider * provider, MethodInfo * method)); DO_APP_FUNC(0x01C055D0, Decimal, Decimal_Parse_1, (String * s, NumberStyles__Enum style, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01C056E0, bool, Decimal_TryParse, (String * s, Decimal result, MethodInfo * method)); -DO_APP_FUNC(0x01C057C0, bool, Decimal_TryParse_1, (String * s, NumberStyles__Enum style, IFormatProvider * provider, Decimal result, MethodInfo * method)); +DO_APP_FUNC(0x01C056E0, bool, Decimal_TryParse, (String * s, Decimal * result, MethodInfo * method)); +DO_APP_FUNC(0x01C057C0, bool, Decimal_TryParse_1, (String * s, NumberStyles__Enum style, IFormatProvider * provider, Decimal * result, MethodInfo * method)); DO_APP_FUNC(0x01C058C0, Int32__Array *, Decimal_GetBits, (Decimal d, MethodInfo * method)); DO_APP_FUNC(0x01C05950, Decimal, Decimal_Negate, (Decimal d, MethodInfo * method)); DO_APP_FUNC(0x01C05970, Decimal, Decimal_Round, (Decimal d, int32_t decimals, MethodInfo * method)); DO_APP_FUNC(0x01C05A00, Decimal, Decimal_Round_1, (Decimal d, int32_t decimals, MidpointRounding__Enum mode, MethodInfo * method)); -DO_APP_FUNC(0x01C05A90, Decimal, Decimal_Round_2, (Decimal d, int32_t decimals, MidpointRounding__Enum mode, MethodInfo * method)); +DO_APP_FUNC(0x01C05A90, Decimal, Decimal_Round_2, (Decimal * d, int32_t decimals, MidpointRounding__Enum mode, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D5A0, Decimal_Round_2__MethodInfo); DO_APP_FUNC(0x01C05C70, uint8_t, Decimal_ToByte, (Decimal value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D598, Decimal_ToByte__MethodInfo); DO_APP_FUNC(0x01C05DA0, int8_t, Decimal_ToSByte, (Decimal value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D590, Decimal_ToSByte__MethodInfo); DO_APP_FUNC(0x01C05ED0, int16_t, Decimal_ToInt16, (Decimal value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D588, Decimal_ToInt16__MethodInfo); DO_APP_FUNC(0x01C06000, double, Decimal_ToDouble, (Decimal d, MethodInfo * method)); DO_APP_FUNC(0x01C06050, int32_t, Decimal_ToInt32, (Decimal d, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D5D8, Decimal_ToInt32__MethodInfo); DO_APP_FUNC(0x01C06130, int64_t, Decimal_ToInt64, (Decimal d, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D5D0, Decimal_ToInt64__MethodInfo); DO_APP_FUNC(0x01C06210, uint16_t, Decimal_ToUInt16, (Decimal value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D5C8, Decimal_ToUInt16__MethodInfo); DO_APP_FUNC(0x01C06340, uint32_t, Decimal_ToUInt32, (Decimal d, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D5C0, Decimal_ToUInt32__MethodInfo); DO_APP_FUNC(0x01C06410, uint64_t, Decimal_ToUInt64, (Decimal d, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D5B8, Decimal_ToUInt64__MethodInfo); DO_APP_FUNC(0x01C064E0, float, Decimal_ToSingle, (Decimal d, MethodInfo * method)); DO_APP_FUNC(0x01C06570, Decimal, Decimal_Truncate, (Decimal d, MethodInfo * method)); -DO_APP_FUNC(0x01C065E0, void, Decimal_Truncate_1, (Decimal d, MethodInfo * method)); +DO_APP_FUNC(0x01C065E0, void, Decimal_Truncate_1, (Decimal * d, MethodInfo * method)); DO_APP_FUNC(0x01C06680, Decimal, Decimal_op_Implicit, (uint8_t value, MethodInfo * method)); DO_APP_FUNC(0x01C066A0, Decimal, Decimal_op_Implicit_1, (int8_t value, MethodInfo * method)); DO_APP_FUNC(0x01C066D0, Decimal, Decimal_op_Implicit_2, (int16_t value, MethodInfo * method)); @@ -4038,81 +4571,91 @@ DO_APP_FUNC(0x01C070B0, bool, Decimal_op_LessThan, (Decimal d1, Decimal d2, Meth DO_APP_FUNC(0x01C07120, bool, Decimal_op_LessThanOrEqual, (Decimal d1, Decimal d2, MethodInfo * method)); DO_APP_FUNC(0x01C07190, bool, Decimal_op_GreaterThan, (Decimal d1, Decimal d2, MethodInfo * method)); DO_APP_FUNC(0x01C07200, bool, Decimal_op_GreaterThanOrEqual, (Decimal d1, Decimal d2, MethodInfo * method)); -DO_APP_FUNC(0x01AD9430, TypeCode__Enum, Decimal_GetTypeCode, (Decimal__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C07270, bool, Decimal_System_IConvertible_ToBoolean, (Decimal__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01C07370, uint16_t, Decimal_System_IConvertible_ToChar, (Decimal__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01C07400, int8_t, Decimal_System_IConvertible_ToSByte, (Decimal__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01C07570, uint8_t, Decimal_System_IConvertible_ToByte, (Decimal__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01C076E0, int16_t, Decimal_System_IConvertible_ToInt16, (Decimal__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01C07850, uint16_t, Decimal_System_IConvertible_ToUInt16, (Decimal__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01C079C0, int32_t, Decimal_System_IConvertible_ToInt32, (Decimal__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01C07B30, uint32_t, Decimal_System_IConvertible_ToUInt32, (Decimal__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01C07CA0, int64_t, Decimal_System_IConvertible_ToInt64, (Decimal__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01C07E10, uint64_t, Decimal_System_IConvertible_ToUInt64, (Decimal__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01C07F80, float, Decimal_System_IConvertible_ToSingle, (Decimal__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01C08020, double, Decimal_System_IConvertible_ToDouble, (Decimal__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x00C2FFD0, Decimal, Decimal_System_IConvertible_ToDecimal, (Decimal__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01C08130, DateTime, Decimal_System_IConvertible_ToDateTime, (Decimal__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x01C081C0, Object *, Decimal_System_IConvertible_ToType, (Decimal__Boxed * __this, Type * type, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01AD9430, TypeCode__Enum, Decimal_GetTypeCode, (Decimal * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C07270, bool, Decimal_System_IConvertible_ToBoolean, (Decimal * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01C07370, uint16_t, Decimal_System_IConvertible_ToChar, (Decimal * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D4D8, Decimal_System_IConvertible_ToChar__MethodInfo); +DO_APP_FUNC(0x01C07400, int8_t, Decimal_System_IConvertible_ToSByte, (Decimal * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01C07570, uint8_t, Decimal_System_IConvertible_ToByte, (Decimal * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01C076E0, int16_t, Decimal_System_IConvertible_ToInt16, (Decimal * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01C07850, uint16_t, Decimal_System_IConvertible_ToUInt16, (Decimal * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01C079C0, int32_t, Decimal_System_IConvertible_ToInt32, (Decimal * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01C07B30, uint32_t, Decimal_System_IConvertible_ToUInt32, (Decimal * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01C07CA0, int64_t, Decimal_System_IConvertible_ToInt64, (Decimal * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01C07E10, uint64_t, Decimal_System_IConvertible_ToUInt64, (Decimal * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01C07F80, float, Decimal_System_IConvertible_ToSingle, (Decimal * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01C08020, double, Decimal_System_IConvertible_ToDouble, (Decimal * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x00C2FFD0, Decimal, Decimal_System_IConvertible_ToDecimal, (Decimal * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x01C08130, DateTime, Decimal_System_IConvertible_ToDateTime, (Decimal * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D450, Decimal_System_IConvertible_ToDateTime__MethodInfo); +DO_APP_FUNC(0x01C081C0, Object *, Decimal_System_IConvertible_ToType, (Decimal * __this, Type * type, IFormatProvider * provider, MethodInfo * method)); DO_APP_FUNC(0x01C08260, void, Decimal__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x00C173E0, uint32_t, Decimal_DecCalc_get_High, (Decimal_DecCalc__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018C6CA0, void, Decimal_DecCalc_set_High, (Decimal_DecCalc__Boxed * __this, uint32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00471920, uint32_t, Decimal_DecCalc_get_Low, (Decimal_DecCalc__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018C6CC0, void, Decimal_DecCalc_set_Low, (Decimal_DecCalc__Boxed * __this, uint32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00E57F20, uint32_t, Decimal_DecCalc_get_Mid, (Decimal_DecCalc__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B16CA0, void, Decimal_DecCalc_set_Mid, (Decimal_DecCalc__Boxed * __this, uint32_t value, MethodInfo * method)); -DO_APP_FUNC(0x01C045B0, bool, Decimal_DecCalc_get_IsNegative, (Decimal_DecCalc__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C08350, uint64_t, Decimal_DecCalc_get_Low64, (Decimal_DecCalc__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C083D0, void, Decimal_DecCalc_set_Low64, (Decimal_DecCalc__Boxed * __this, uint64_t value, MethodInfo * method)); +DO_APP_FUNC(0x00C173E0, uint32_t, Decimal_DecCalc_get_High, (Decimal_DecCalc * __this, MethodInfo * method)); +DO_APP_FUNC(0x018C6CA0, void, Decimal_DecCalc_set_High, (Decimal_DecCalc * __this, uint32_t value, MethodInfo * method)); +DO_APP_FUNC(0x00471920, uint32_t, Decimal_DecCalc_get_Low, (Decimal_DecCalc * __this, MethodInfo * method)); +DO_APP_FUNC(0x018C6CC0, void, Decimal_DecCalc_set_Low, (Decimal_DecCalc * __this, uint32_t value, MethodInfo * method)); +DO_APP_FUNC(0x00E57F20, uint32_t, Decimal_DecCalc_get_Mid, (Decimal_DecCalc * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B16CA0, void, Decimal_DecCalc_set_Mid, (Decimal_DecCalc * __this, uint32_t value, MethodInfo * method)); +DO_APP_FUNC(0x01C045B0, bool, Decimal_DecCalc_get_IsNegative, (Decimal_DecCalc * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C08350, uint64_t, Decimal_DecCalc_get_Low64, (Decimal_DecCalc * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C083D0, void, Decimal_DecCalc_set_Low64, (Decimal_DecCalc * __this, uint64_t value, MethodInfo * method)); DO_APP_FUNC(0x01C08460, uint32_t, Decimal_DecCalc_GetExponent, (float f, MethodInfo * method)); DO_APP_FUNC(0x01C08470, uint32_t, Decimal_DecCalc_GetExponent_1, (double d, MethodInfo * method)); DO_APP_FUNC(0x01B9B960, uint64_t, Decimal_DecCalc_UInt32x32To64, (uint32_t a, uint32_t b, MethodInfo * method)); -DO_APP_FUNC(0x01C08480, void, Decimal_DecCalc_UInt64x64To128, (uint64_t a, uint64_t b, Decimal_DecCalc result, MethodInfo * method)); -DO_APP_FUNC(0x01C08600, uint32_t, Decimal_DecCalc_Div96By32, (Decimal_DecCalc_Buf12 bufNum, uint32_t den, MethodInfo * method)); -DO_APP_FUNC(0x01C086B0, bool, Decimal_DecCalc_Div96ByConst, (uint64_t high64, uint32_t low, uint32_t pow, MethodInfo * method)); -DO_APP_FUNC(0x01C08720, void, Decimal_DecCalc_Unscale, (uint32_t low, uint64_t high64, int32_t scale, MethodInfo * method)); -DO_APP_FUNC(0x01C088A0, uint32_t, Decimal_DecCalc_Div96By64, (Decimal_DecCalc_Buf12 bufNum, uint64_t den, MethodInfo * method)); -DO_APP_FUNC(0x01C089F0, uint32_t, Decimal_DecCalc_Div128By96, (Decimal_DecCalc_Buf16 bufNum, Decimal_DecCalc_Buf12 bufDen, MethodInfo * method)); -DO_APP_FUNC(0x01C08B40, uint32_t, Decimal_DecCalc_IncreaseScale, (Decimal_DecCalc_Buf12 bufNum, uint32_t power, MethodInfo * method)); -DO_APP_FUNC(0x01C08BD0, void, Decimal_DecCalc_IncreaseScale64, (Decimal_DecCalc_Buf12 bufNum, uint32_t power, MethodInfo * method)); +DO_APP_FUNC(0x01C08480, void, Decimal_DecCalc_UInt64x64To128, (uint64_t a, uint64_t b, Decimal_DecCalc * result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D3F0, Decimal_DecCalc_UInt64x64To128__MethodInfo); +DO_APP_FUNC(0x01C08600, uint32_t, Decimal_DecCalc_Div96By32, (Decimal_DecCalc_Buf12 * bufNum, uint32_t den, MethodInfo * method)); +DO_APP_FUNC(0x01C086B0, bool, Decimal_DecCalc_Div96ByConst, (uint64_t * high64, uint32_t * low, uint32_t pow, MethodInfo * method)); +DO_APP_FUNC(0x01C08720, void, Decimal_DecCalc_Unscale, (uint32_t * low, uint64_t * high64, int32_t * scale, MethodInfo * method)); +DO_APP_FUNC(0x01C088A0, uint32_t, Decimal_DecCalc_Div96By64, (Decimal_DecCalc_Buf12 * bufNum, uint64_t den, MethodInfo * method)); +DO_APP_FUNC(0x01C089F0, uint32_t, Decimal_DecCalc_Div128By96, (Decimal_DecCalc_Buf16 * bufNum, Decimal_DecCalc_Buf12 * bufDen, MethodInfo * method)); +DO_APP_FUNC(0x01C08B40, uint32_t, Decimal_DecCalc_IncreaseScale, (Decimal_DecCalc_Buf12 * bufNum, uint32_t power, MethodInfo * method)); +DO_APP_FUNC(0x01C08BD0, void, Decimal_DecCalc_IncreaseScale64, (Decimal_DecCalc_Buf12 * bufNum, uint32_t power, MethodInfo * method)); DO_APP_FUNC(0x01C08C50, int32_t, Decimal_DecCalc_ScaleResult, (Decimal_DecCalc_Buf24 * bufRes, uint32_t hiRes, int32_t scale, MethodInfo * method)); -DO_APP_FUNC(0x01C09380, uint32_t, Decimal_DecCalc_DivByConst, (uint32_t * result, uint32_t hiRes, uint32_t quotient, uint32_t remainder, uint32_t power, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D4A0, Decimal_DecCalc_ScaleResult__MethodInfo); +DO_APP_FUNC(0x01C09380, uint32_t, Decimal_DecCalc_DivByConst, (uint32_t * result, uint32_t hiRes, uint32_t * quotient, uint32_t * remainder, uint32_t power, MethodInfo * method)); DO_APP_FUNC(0x01C09400, int32_t, Decimal_DecCalc_LeadingZeroCount, (uint32_t value, MethodInfo * method)); -DO_APP_FUNC(0x01C09460, int32_t, Decimal_DecCalc_OverflowUnscale, (Decimal_DecCalc_Buf12 bufQuo, int32_t scale, bool sticky, MethodInfo * method)); -DO_APP_FUNC(0x01C095B0, int32_t, Decimal_DecCalc_SearchScale, (Decimal_DecCalc_Buf12 bufQuo, int32_t scale, MethodInfo * method)); -DO_APP_FUNC(0x01C097A0, bool, Decimal_DecCalc_Add32To96, (Decimal_DecCalc_Buf12 bufNum, uint32_t value, MethodInfo * method)); -DO_APP_FUNC(0x01C09800, void, Decimal_DecCalc_DecAddSub, (Decimal_DecCalc d1, Decimal_DecCalc d2, bool sign, MethodInfo * method)); -DO_APP_FUNC(0x01C0A170, int32_t, Decimal_DecCalc_VarDecCmp, (Decimal d1, Decimal d2, MethodInfo * method)); -DO_APP_FUNC(0x01C0A290, int32_t, Decimal_DecCalc_VarDecCmpSub, (Decimal d1, Decimal d2, MethodInfo * method)); -DO_APP_FUNC(0x01C0A460, void, Decimal_DecCalc_VarDecMul, (Decimal_DecCalc d1, Decimal_DecCalc d2, MethodInfo * method)); -DO_APP_FUNC(0x01C0AA50, void, Decimal_DecCalc_VarDecFromR4, (float input, Decimal_DecCalc result, MethodInfo * method)); -DO_APP_FUNC(0x01C0AE60, void, Decimal_DecCalc_VarDecFromR8, (double input, Decimal_DecCalc result, MethodInfo * method)); -DO_APP_FUNC(0x01C0B260, float, Decimal_DecCalc_VarR4FromDec, (Decimal value, MethodInfo * method)); -DO_APP_FUNC(0x01C0B2C0, double, Decimal_DecCalc_VarR8FromDec, (Decimal value, MethodInfo * method)); -DO_APP_FUNC(0x01C0B3D0, int32_t, Decimal_DecCalc_GetHashCode, (Decimal d, MethodInfo * method)); -DO_APP_FUNC(0x01C0B520, void, Decimal_DecCalc_VarDecDiv, (Decimal_DecCalc d1, Decimal_DecCalc d2, MethodInfo * method)); -DO_APP_FUNC(0x01C0C780, void, Decimal_DecCalc_InternalRound, (Decimal_DecCalc d, uint32_t scale, Decimal_DecCalc_RoundingMode__Enum mode, MethodInfo * method)); -DO_APP_FUNC(0x01C0CAC0, uint32_t, Decimal_DecCalc_DecDivMod1E9, (Decimal_DecCalc value, MethodInfo * method)); +DO_APP_FUNC(0x01C09460, int32_t, Decimal_DecCalc_OverflowUnscale, (Decimal_DecCalc_Buf12 * bufQuo, int32_t scale, bool sticky, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D480, Decimal_DecCalc_OverflowUnscale__MethodInfo); +DO_APP_FUNC(0x01C095B0, int32_t, Decimal_DecCalc_SearchScale, (Decimal_DecCalc_Buf12 * bufQuo, int32_t scale, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D320, Decimal_DecCalc_SearchScale__MethodInfo); +DO_APP_FUNC(0x01C097A0, bool, Decimal_DecCalc_Add32To96, (Decimal_DecCalc_Buf12 * bufNum, uint32_t value, MethodInfo * method)); +DO_APP_FUNC(0x01C09800, void, Decimal_DecCalc_DecAddSub, (Decimal_DecCalc * d1, Decimal_DecCalc * d2, bool sign, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D300, Decimal_DecCalc_DecAddSub__MethodInfo); +DO_APP_FUNC(0x01C0A170, int32_t, Decimal_DecCalc_VarDecCmp, (Decimal * d1, Decimal * d2, MethodInfo * method)); +DO_APP_FUNC(0x01C0A290, int32_t, Decimal_DecCalc_VarDecCmpSub, (Decimal * d1, Decimal * d2, MethodInfo * method)); +DO_APP_FUNC(0x01C0A460, void, Decimal_DecCalc_VarDecMul, (Decimal_DecCalc * d1, Decimal_DecCalc * d2, MethodInfo * method)); +DO_APP_FUNC(0x01C0AA50, void, Decimal_DecCalc_VarDecFromR4, (float input, Decimal_DecCalc * result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D2B0, Decimal_DecCalc_VarDecFromR4__MethodInfo); +DO_APP_FUNC(0x01C0AE60, void, Decimal_DecCalc_VarDecFromR8, (double input, Decimal_DecCalc * result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D3D0, Decimal_DecCalc_VarDecFromR8__MethodInfo); +DO_APP_FUNC(0x01C0B260, float, Decimal_DecCalc_VarR4FromDec, (Decimal * value, MethodInfo * method)); +DO_APP_FUNC(0x01C0B2C0, double, Decimal_DecCalc_VarR8FromDec, (Decimal * value, MethodInfo * method)); +DO_APP_FUNC(0x01C0B3D0, int32_t, Decimal_DecCalc_GetHashCode, (Decimal * d, MethodInfo * method)); +DO_APP_FUNC(0x01C0B520, void, Decimal_DecCalc_VarDecDiv, (Decimal_DecCalc * d1, Decimal_DecCalc * d2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D360, Decimal_DecCalc_VarDecDiv__MethodInfo); +DO_APP_FUNC(0x01C0C780, void, Decimal_DecCalc_InternalRound, (Decimal_DecCalc * d, uint32_t scale, Decimal_DecCalc_RoundingMode__Enum mode, MethodInfo * method)); +DO_APP_FUNC(0x01C0CAC0, uint32_t, Decimal_DecCalc_DecDivMod1E9, (Decimal_DecCalc * value, MethodInfo * method)); DO_APP_FUNC(0x01C0CB40, void, Decimal_DecCalc__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x01C0CFA0, void, Decimal_DecCalc_PowerOvfl__ctor, (Decimal_DecCalc_PowerOvfl__Boxed * __this, uint32_t hi, uint32_t mid, uint32_t lo, MethodInfo * method)); -DO_APP_FUNC(0x01C0CFC0, uint64_t, Decimal_DecCalc_Buf12_get_Low64, (Decimal_DecCalc_Buf12__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C0D030, void, Decimal_DecCalc_Buf12_set_Low64, (Decimal_DecCalc_Buf12__Boxed * __this, uint64_t value, MethodInfo * method)); -DO_APP_FUNC(0x01C0D0C0, uint64_t, Decimal_DecCalc_Buf12_get_High64, (Decimal_DecCalc_Buf12__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C0D140, void, Decimal_DecCalc_Buf12_set_High64, (Decimal_DecCalc_Buf12__Boxed * __this, uint64_t value, MethodInfo * method)); -DO_APP_FUNC(0x01C0D1D0, uint64_t, Decimal_DecCalc_Buf16_get_Low64, (Decimal_DecCalc_Buf16__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C0D240, void, Decimal_DecCalc_Buf16_set_Low64, (Decimal_DecCalc_Buf16__Boxed * __this, uint64_t value, MethodInfo * method)); -DO_APP_FUNC(0x01C0D2D0, uint64_t, Decimal_DecCalc_Buf16_get_High64, (Decimal_DecCalc_Buf16__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C0D350, void, Decimal_DecCalc_Buf16_set_High64, (Decimal_DecCalc_Buf16__Boxed * __this, uint64_t value, MethodInfo * method)); -DO_APP_FUNC(0x01C0D3E0, uint64_t, Decimal_DecCalc_Buf24_get_Low64, (Decimal_DecCalc_Buf24__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C0D450, void, Decimal_DecCalc_Buf24_set_Low64, (Decimal_DecCalc_Buf24__Boxed * __this, uint64_t value, MethodInfo * method)); -DO_APP_FUNC(0x01C0D4E0, void, Decimal_DecCalc_Buf24_set_Mid64, (Decimal_DecCalc_Buf24__Boxed * __this, uint64_t value, MethodInfo * method)); -DO_APP_FUNC(0x01C0D570, void, Decimal_DecCalc_Buf24_set_High64, (Decimal_DecCalc_Buf24__Boxed * __this, uint64_t value, MethodInfo * method)); +DO_APP_FUNC(0x01C0CFA0, void, Decimal_DecCalc_PowerOvfl__ctor, (Decimal_DecCalc_PowerOvfl * __this, uint32_t hi, uint32_t mid, uint32_t lo, MethodInfo * method)); +DO_APP_FUNC(0x01C0CFC0, uint64_t, Decimal_DecCalc_Buf12_get_Low64, (Decimal_DecCalc_Buf12 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C0D030, void, Decimal_DecCalc_Buf12_set_Low64, (Decimal_DecCalc_Buf12 * __this, uint64_t value, MethodInfo * method)); +DO_APP_FUNC(0x01C0D0C0, uint64_t, Decimal_DecCalc_Buf12_get_High64, (Decimal_DecCalc_Buf12 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C0D140, void, Decimal_DecCalc_Buf12_set_High64, (Decimal_DecCalc_Buf12 * __this, uint64_t value, MethodInfo * method)); +DO_APP_FUNC(0x01C0D1D0, uint64_t, Decimal_DecCalc_Buf16_get_Low64, (Decimal_DecCalc_Buf16 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C0D240, void, Decimal_DecCalc_Buf16_set_Low64, (Decimal_DecCalc_Buf16 * __this, uint64_t value, MethodInfo * method)); +DO_APP_FUNC(0x01C0D2D0, uint64_t, Decimal_DecCalc_Buf16_get_High64, (Decimal_DecCalc_Buf16 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C0D350, void, Decimal_DecCalc_Buf16_set_High64, (Decimal_DecCalc_Buf16 * __this, uint64_t value, MethodInfo * method)); +DO_APP_FUNC(0x01C0D3E0, uint64_t, Decimal_DecCalc_Buf24_get_Low64, (Decimal_DecCalc_Buf24 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C0D450, void, Decimal_DecCalc_Buf24_set_Low64, (Decimal_DecCalc_Buf24 * __this, uint64_t value, MethodInfo * method)); +DO_APP_FUNC(0x01C0D4E0, void, Decimal_DecCalc_Buf24_set_Mid64, (Decimal_DecCalc_Buf24 * __this, uint64_t value, MethodInfo * method)); +DO_APP_FUNC(0x01C0D570, void, Decimal_DecCalc_Buf24_set_High64, (Decimal_DecCalc_Buf24 * __this, uint64_t value, MethodInfo * method)); DO_APP_FUNC(0x01C0D600, void, AbandonedMutexException__ctor, (AbandonedMutexException * __this, MethodInfo * method)); DO_APP_FUNC(0x01C0D660, void, AbandonedMutexException__ctor_1, (AbandonedMutexException * __this, int32_t location, WaitHandle * handle, MethodInfo * method)); DO_APP_FUNC(0x01C0D770, void, AbandonedMutexException__ctor_2, (AbandonedMutexException * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x01C0D800, void, AbandonedMutexException_SetupException, (AbandonedMutexException * __this, int32_t location, WaitHandle * handle, MethodInfo * method)); DO_APP_FUNC(0x01C0D8C0, void, AutoResetEvent__ctor, (AutoResetEvent * __this, bool initialState, MethodInfo * method)); -DO_APP_FUNC(0x01C0D8E0, Object *, LazyInitializer_EnsureLockInitialized, (Object * syncLock, MethodInfo * method)); +DO_APP_FUNC(0x01C0D8E0, Object *, LazyInitializer_EnsureLockInitialized, (Object * * syncLock, MethodInfo * method)); DO_APP_FUNC(0x01C0D9A0, void, LockRecursionException__ctor, (LockRecursionException * __this, MethodInfo * method)); DO_APP_FUNC(0x01C0D9F0, void, LockRecursionException__ctor_1, (LockRecursionException * __this, String * message, MethodInfo * method)); DO_APP_FUNC(0x01C0DA50, void, LockRecursionException__ctor_2, (LockRecursionException * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); @@ -4123,6 +4666,7 @@ DO_APP_FUNC(0x01C0DAF0, void, SemaphoreFullException__ctor, (SemaphoreFullExcept DO_APP_FUNC(0x01980BF0, void, SemaphoreFullException__ctor_1, (SemaphoreFullException * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x0084C240, void, SendOrPostCallback__ctor, (SendOrPostCallback * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EE650, void, SendOrPostCallback_Invoke, (SendOrPostCallback * __this, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CA18, SendOrPostCallback_Invoke__MethodInfo); DO_APP_FUNC(0x01C0DB40, void, SynchronizationLockException__ctor, (SynchronizationLockException * __this, MethodInfo * method)); DO_APP_FUNC(0x01C0DB90, void, SynchronizationLockException__ctor_1, (SynchronizationLockException * __this, String * message, MethodInfo * method)); DO_APP_FUNC(0x01980BF0, void, SynchronizationLockException__ctor_2, (SynchronizationLockException * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); @@ -4136,26 +4680,30 @@ DO_APP_FUNC(0x01C0DC60, void, WaitHandleCannotBeOpenedException__ctor, (WaitHand DO_APP_FUNC(0x01C0DCB0, void, WaitHandleCannotBeOpenedException__ctor_1, (WaitHandleCannotBeOpenedException * __this, String * message, MethodInfo * method)); DO_APP_FUNC(0x01A64690, void, WaitHandleCannotBeOpenedException__ctor_2, (WaitHandleCannotBeOpenedException * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x003CB690, CancellationToken, CancellationToken_get_None, (MethodInfo * method)); -DO_APP_FUNC(0x01C0DCD0, bool, CancellationToken_get_IsCancellationRequested, (CancellationToken__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C0DCF0, bool, CancellationToken_get_CanBeCanceled, (CancellationToken__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C0DD00, WaitHandle *, CancellationToken_get_WaitHandle, (CancellationToken__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, CancellationToken__ctor, (CancellationToken__Boxed * __this, CancellationTokenSource * source, MethodInfo * method)); -DO_APP_FUNC(0x01C0DE60, void, CancellationToken__ctor_1, (CancellationToken__Boxed * __this, bool canceled, MethodInfo * method)); -DO_APP_FUNC(0x01C0DF40, CancellationTokenRegistration, CancellationToken_Register, (CancellationToken__Boxed * __this, Action * callback, MethodInfo * method)); -DO_APP_FUNC(0x01C0E060, CancellationTokenRegistration, CancellationToken_Register_1, (CancellationToken__Boxed * __this, Action_1_Object_ * callback, Object * state, MethodInfo * method)); -DO_APP_FUNC(0x01C0E110, CancellationTokenRegistration, CancellationToken_InternalRegisterWithoutEC, (CancellationToken__Boxed * __this, Action_1_Object_ * callback, Object * state, MethodInfo * method)); -DO_APP_FUNC(0x01C0E1C0, CancellationTokenRegistration, CancellationToken_Register_2, (CancellationToken__Boxed * __this, Action_1_Object_ * callback, Object * state, bool useSynchronizationContext, bool useExecutionContext, MethodInfo * method)); -DO_APP_FUNC(0x00A9A720, bool, CancellationToken_Equals, (CancellationToken__Boxed * __this, CancellationToken other, MethodInfo * method)); -DO_APP_FUNC(0x01C0E330, bool, CancellationToken_Equals_1, (CancellationToken__Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x01C0E3D0, int32_t, CancellationToken_GetHashCode, (CancellationToken__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C0DCD0, bool, CancellationToken_get_IsCancellationRequested, (CancellationToken * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C0DCF0, bool, CancellationToken_get_CanBeCanceled, (CancellationToken * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C0DD00, WaitHandle *, CancellationToken_get_WaitHandle, (CancellationToken * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, CancellationToken__ctor, (CancellationToken * __this, CancellationTokenSource * source, MethodInfo * method)); +DO_APP_FUNC(0x01C0DE60, void, CancellationToken__ctor_1, (CancellationToken * __this, bool canceled, MethodInfo * method)); +DO_APP_FUNC(0x01C0DF40, CancellationTokenRegistration, CancellationToken_Register, (CancellationToken * __this, Action * callback, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D010, CancellationToken_Register__MethodInfo); +DO_APP_FUNC(0x01C0E060, CancellationTokenRegistration, CancellationToken_Register_1, (CancellationToken * __this, Action_1_Object_ * callback, Object * state, MethodInfo * method)); +DO_APP_FUNC(0x01C0E110, CancellationTokenRegistration, CancellationToken_InternalRegisterWithoutEC, (CancellationToken * __this, Action_1_Object_ * callback, Object * state, MethodInfo * method)); +DO_APP_FUNC(0x01C0E1C0, CancellationTokenRegistration, CancellationToken_Register_2, (CancellationToken * __this, Action_1_Object_ * callback, Object * state, bool useSynchronizationContext, bool useExecutionContext, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D008, CancellationToken_Register_2__MethodInfo); +DO_APP_FUNC(0x00A9A720, bool, CancellationToken_Equals, (CancellationToken * __this, CancellationToken other, MethodInfo * method)); +DO_APP_FUNC(0x01C0E330, bool, CancellationToken_Equals_1, (CancellationToken * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x01C0E3D0, int32_t, CancellationToken_GetHashCode, (CancellationToken * __this, MethodInfo * method)); DO_APP_FUNC(0x01C0E450, bool, CancellationToken_op_Equality, (CancellationToken left, CancellationToken right, MethodInfo * method)); DO_APP_FUNC(0x01C0E4B0, bool, CancellationToken_op_Inequality, (CancellationToken left, CancellationToken right, MethodInfo * method)); -DO_APP_FUNC(0x01C0E510, void, CancellationToken_ThrowIfCancellationRequested, (CancellationToken__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C0E590, void, CancellationToken_ThrowOperationCanceledException, (CancellationToken__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C0E510, void, CancellationToken_ThrowIfCancellationRequested, (CancellationToken * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C0E590, void, CancellationToken_ThrowOperationCanceledException, (CancellationToken * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D048, CancellationToken_ThrowOperationCanceledException__MethodInfo); DO_APP_FUNC(0x01C0E600, void, CancellationToken__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01C0E730, void, CancellationToken_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CancellationToken_c__ctor, (CancellationToken_c * __this, MethodInfo * method)); DO_APP_FUNC(0x01C0E7E0, void, CancellationToken_c___cctor_b__26_0, (CancellationToken_c * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D040, CancellationToken_c___cctor_b__26_0__MethodInfo); DO_APP_FUNC(0x01C0E850, WaitHandle *, ManualResetEventSlim_get_WaitHandle, (ManualResetEventSlim * __this, MethodInfo * method)); DO_APP_FUNC(0x01C0E890, bool, ManualResetEventSlim_get_IsSet, (ManualResetEventSlim * __this, MethodInfo * method)); DO_APP_FUNC(0x01C0E8F0, void, ManualResetEventSlim_set_IsSet, (ManualResetEventSlim * __this, bool value, MethodInfo * method)); @@ -4163,8 +4711,10 @@ DO_APP_FUNC(0x01C0E920, int32_t, ManualResetEventSlim_get_SpinCount, (ManualRese DO_APP_FUNC(0x01C0E980, void, ManualResetEventSlim_set_SpinCount, (ManualResetEventSlim * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01C0E9A0, int32_t, ManualResetEventSlim_get_Waiters, (ManualResetEventSlim * __this, MethodInfo * method)); DO_APP_FUNC(0x01C0EA00, void, ManualResetEventSlim_set_Waiters, (ManualResetEventSlim * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CFB8, ManualResetEventSlim_set_Waiters__MethodInfo); DO_APP_FUNC(0x01C0EAC0, void, ManualResetEventSlim__ctor, (ManualResetEventSlim * __this, bool initialState, MethodInfo * method)); DO_APP_FUNC(0x01C0EBC0, void, ManualResetEventSlim__ctor_1, (ManualResetEventSlim * __this, bool initialState, int32_t spinCount, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CFA0, ManualResetEventSlim__ctor_1__MethodInfo); DO_APP_FUNC(0x01C0ECD0, void, ManualResetEventSlim_Initialize, (ManualResetEventSlim * __this, bool initialState, int32_t spinCount, MethodInfo * method)); DO_APP_FUNC(0x01C0ED90, void, ManualResetEventSlim_EnsureLockObjectCreated, (ManualResetEventSlim * __this, MethodInfo * method)); DO_APP_FUNC(0x01C0EE40, bool, ManualResetEventSlim_LazyInitializeEvent, (ManualResetEventSlim * __this, MethodInfo * method)); @@ -4173,31 +4723,35 @@ DO_APP_FUNC(0x01C0F150, void, ManualResetEventSlim_Set_1, (ManualResetEventSlim DO_APP_FUNC(0x01C0F4D0, void, ManualResetEventSlim_Reset, (ManualResetEventSlim * __this, MethodInfo * method)); DO_APP_FUNC(0x01C0F530, void, ManualResetEventSlim_Wait, (ManualResetEventSlim * __this, MethodInfo * method)); DO_APP_FUNC(0x01C0F540, bool, ManualResetEventSlim_Wait_1, (ManualResetEventSlim * __this, int32_t millisecondsTimeout, CancellationToken cancellationToken, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D000, ManualResetEventSlim_Wait_1__MethodInfo); DO_APP_FUNC(0x01C0FEF0, void, ManualResetEventSlim_Dispose, (ManualResetEventSlim * __this, MethodInfo * method)); DO_APP_FUNC(0x01C0FF60, void, ManualResetEventSlim_Dispose_1, (ManualResetEventSlim * __this, bool disposing, MethodInfo * method)); DO_APP_FUNC(0x01C10100, void, ManualResetEventSlim_ThrowIfDisposed, (ManualResetEventSlim * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CFF0, ManualResetEventSlim_ThrowIfDisposed__MethodInfo); DO_APP_FUNC(0x01C10180, void, ManualResetEventSlim_CancellationTokenCallback, (Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CFE0, ManualResetEventSlim_CancellationTokenCallback__MethodInfo); DO_APP_FUNC(0x01C10350, void, ManualResetEventSlim_UpdateStateAtomically, (ManualResetEventSlim * __this, int32_t newBits, int32_t updateBitsMask, MethodInfo * method)); DO_APP_FUNC(0x01C10430, int32_t, ManualResetEventSlim_ExtractStatePortionAndShiftRight, (int32_t state, int32_t mask, int32_t rightBitShiftCount, MethodInfo * method)); DO_APP_FUNC(0x00959BC0, int32_t, ManualResetEventSlim_ExtractStatePortion, (int32_t state, int32_t mask, MethodInfo * method)); DO_APP_FUNC(0x01C10440, void, ManualResetEventSlim__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, SpinWait_get_Count, (SpinWait__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C10520, bool, SpinWait_get_NextSpinWillYield, (SpinWait__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C10590, void, SpinWait_SpinOnce, (SpinWait__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C105F0, void, SpinWait_SpinOnce_1, (SpinWait__Boxed * __this, int32_t sleep1Threshold, MethodInfo * method)); -DO_APP_FUNC(0x01C10700, void, SpinWait_SpinOnceCore, (SpinWait__Boxed * __this, int32_t sleep1Threshold, MethodInfo * method)); -DO_APP_FUNC(0x00C42850, void, SpinWait_Reset, (SpinWait__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, SpinWait_get_Count, (SpinWait * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C10520, bool, SpinWait_get_NextSpinWillYield, (SpinWait * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C10590, void, SpinWait_SpinOnce, (SpinWait * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C105F0, void, SpinWait_SpinOnce_1, (SpinWait * __this, int32_t sleep1Threshold, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CEF8, SpinWait_SpinOnce_1__MethodInfo); +DO_APP_FUNC(0x01C10700, void, SpinWait_SpinOnceCore, (SpinWait * __this, int32_t sleep1Threshold, MethodInfo * method)); +DO_APP_FUNC(0x00C42850, void, SpinWait_Reset, (SpinWait * __this, MethodInfo * method)); DO_APP_FUNC(0x01C10930, void, SpinWait__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01C109C0, int32_t, PlatformHelper_get_ProcessorCount, (MethodInfo * method)); DO_APP_FUNC(0x01C10AF0, void, PlatformHelper__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01BE8BB0, uint32_t, TimeoutHelper_GetTime, (MethodInfo * method)); DO_APP_FUNC(0x01C10B40, int32_t, TimeoutHelper_UpdateTimeOut, (uint32_t startTime, int32_t originalWaitMillisecondsTimeout, MethodInfo * method)); -DO_APP_FUNC(0x01150250, void, CancellationTokenRegistration__ctor, (CancellationTokenRegistration__Boxed * __this, CancellationCallbackInfo * callbackInfo, SparselyPopulatedArrayAddInfo_1_CancellationCallbackInfo_ registrationInfo, MethodInfo * method)); -DO_APP_FUNC(0x01C10BB0, bool, CancellationTokenRegistration_Unregister, (CancellationTokenRegistration__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C10C40, void, CancellationTokenRegistration_Dispose, (CancellationTokenRegistration__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C10D70, bool, CancellationTokenRegistration_Equals, (CancellationTokenRegistration__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x01C10E70, bool, CancellationTokenRegistration_Equals_1, (CancellationTokenRegistration__Boxed * __this, CancellationTokenRegistration other, MethodInfo * method)); -DO_APP_FUNC(0x01C10F00, int32_t, CancellationTokenRegistration_GetHashCode, (CancellationTokenRegistration__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01150250, void, CancellationTokenRegistration__ctor, (CancellationTokenRegistration * __this, CancellationCallbackInfo * callbackInfo, SparselyPopulatedArrayAddInfo_1_CancellationCallbackInfo_ registrationInfo, MethodInfo * method)); +DO_APP_FUNC(0x01C10BB0, bool, CancellationTokenRegistration_Unregister, (CancellationTokenRegistration * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C10C40, void, CancellationTokenRegistration_Dispose, (CancellationTokenRegistration * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C10D70, bool, CancellationTokenRegistration_Equals, (CancellationTokenRegistration * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x01C10E70, bool, CancellationTokenRegistration_Equals_1, (CancellationTokenRegistration * __this, CancellationTokenRegistration other, MethodInfo * method)); +DO_APP_FUNC(0x01C10F00, int32_t, CancellationTokenRegistration_GetHashCode, (CancellationTokenRegistration * __this, MethodInfo * method)); DO_APP_FUNC(0x01C10F80, bool, CancellationTokenSource_get_IsCancellationRequested, (CancellationTokenSource * __this, MethodInfo * method)); DO_APP_FUNC(0x01C10F90, bool, CancellationTokenSource_get_IsCancellationCompleted, (CancellationTokenSource * __this, MethodInfo * method)); DO_APP_FUNC(0x00424C10, bool, CancellationTokenSource_get_IsDisposed, (CancellationTokenSource * __this, MethodInfo * method)); @@ -4208,23 +4762,30 @@ DO_APP_FUNC(0x01C11070, WaitHandle *, CancellationTokenSource_get_WaitHandle, (C DO_APP_FUNC(0x01AFA7B0, CancellationCallbackInfo *, CancellationTokenSource_get_ExecutingCallback, (CancellationTokenSource * __this, MethodInfo * method)); DO_APP_FUNC(0x01C11190, void, CancellationTokenSource__ctor, (CancellationTokenSource * __this, MethodInfo * method)); DO_APP_FUNC(0x01C111B0, void, CancellationTokenSource__ctor_1, (CancellationTokenSource * __this, int32_t millisecondsDelay, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CF20, CancellationTokenSource__ctor_1__MethodInfo); DO_APP_FUNC(0x01C11340, void, CancellationTokenSource_InitializeWithTimer, (CancellationTokenSource * __this, int32_t millisecondsDelay, MethodInfo * method)); DO_APP_FUNC(0x01C11470, void, CancellationTokenSource_Cancel, (CancellationTokenSource * __this, MethodInfo * method)); DO_APP_FUNC(0x01C114D0, void, CancellationTokenSource_Cancel_1, (CancellationTokenSource * __this, bool throwOnFirstException, MethodInfo * method)); DO_APP_FUNC(0x01C11540, void, CancellationTokenSource_CancelAfter, (CancellationTokenSource * __this, int32_t millisecondsDelay, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CE50, CancellationTokenSource_CancelAfter__MethodInfo); DO_APP_FUNC(0x01C11780, void, CancellationTokenSource_TimerCallbackLogic, (Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CE08, CancellationTokenSource_TimerCallbackLogic__MethodInfo); DO_APP_FUNC(0x01C11880, void, CancellationTokenSource_Dispose, (CancellationTokenSource * __this, MethodInfo * method)); DO_APP_FUNC(0x01C118F0, void, CancellationTokenSource_Dispose_1, (CancellationTokenSource * __this, bool disposing, MethodInfo * method)); DO_APP_FUNC(0x01C11A40, void, CancellationTokenSource_ThrowIfDisposed, (CancellationTokenSource * __this, MethodInfo * method)); DO_APP_FUNC(0x01C11A90, void, CancellationTokenSource_ThrowObjectDisposedException, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CE20, CancellationTokenSource_ThrowObjectDisposedException__MethodInfo); DO_APP_FUNC(0x01C11AF0, CancellationTokenRegistration, CancellationTokenSource_InternalRegister, (CancellationTokenSource * __this, Action_1_Object_ * callback, Object * stateForCallback, SynchronizationContext * targetSyncContext, ExecutionContext * executionContext, MethodInfo * method)); DO_APP_FUNC(0x01C12120, void, CancellationTokenSource_NotifyCancellation, (CancellationTokenSource * __this, bool throwOnFirstException, MethodInfo * method)); DO_APP_FUNC(0x01C121E0, void, CancellationTokenSource_ExecuteCallbackHandlers, (CancellationTokenSource * __this, bool throwOnFirstException, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CDE8, CancellationTokenSource_ExecuteCallbackHandlers__MethodInfo); DO_APP_FUNC(0x01C126C0, void, CancellationTokenSource_CancellationCallbackCoreWork_OnSyncContext, (CancellationTokenSource * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CE98, CancellationTokenSource_CancellationCallbackCoreWork_OnSyncContext__MethodInfo); DO_APP_FUNC(0x01C12740, void, CancellationTokenSource_CancellationCallbackCoreWork, (CancellationTokenSource * __this, CancellationCallbackCoreWorkArguments args, MethodInfo * method)); DO_APP_FUNC(0x01C12990, CancellationTokenSource *, CancellationTokenSource_CreateLinkedTokenSource, (CancellationToken token1, CancellationToken token2, MethodInfo * method)); DO_APP_FUNC(0x01C12AD0, CancellationTokenSource *, CancellationTokenSource_CreateLinkedTokenSource_1, (CancellationToken token, MethodInfo * method)); DO_APP_FUNC(0x01C12BB0, CancellationTokenSource *, CancellationTokenSource_CreateLinkedTokenSource_2, (CancellationToken__Array * tokens, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CDC8, CancellationTokenSource_CreateLinkedTokenSource_2__MethodInfo); DO_APP_FUNC(0x01C12D80, void, CancellationTokenSource_WaitForCallbackToComplete, (CancellationTokenSource * __this, CancellationCallbackInfo * callbackInfo, MethodInfo * method)); DO_APP_FUNC(0x01C12E50, void, CancellationTokenSource__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01C13100, void, CancellationTokenSource_Linked1CancellationTokenSource__ctor, (CancellationTokenSource_Linked1CancellationTokenSource * __this, CancellationToken token1, MethodInfo * method)); @@ -4237,13 +4798,15 @@ DO_APP_FUNC(0x01C13840, void, CancellationTokenSource_LinkedNCancellationTokenSo DO_APP_FUNC(0x01C13970, void, CancellationTokenSource_LinkedNCancellationTokenSource_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CancellationTokenSource_LinkedNCancellationTokenSource_c__ctor, (CancellationTokenSource_LinkedNCancellationTokenSource_c * __this, MethodInfo * method)); DO_APP_FUNC(0x01C13A20, void, CancellationTokenSource_LinkedNCancellationTokenSource_c___cctor_b__4_0, (CancellationTokenSource_LinkedNCancellationTokenSource_c * __this, Object * s, MethodInfo * method)); -DO_APP_FUNC(0x004CB450, void, CancellationCallbackCoreWorkArguments__ctor, (CancellationCallbackCoreWorkArguments__Boxed * __this, SparselyPopulatedArrayFragment_1_CancellationCallbackInfo_ * currArrayFragment, int32_t currArrayIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CDF8, CancellationTokenSource_LinkedNCancellationTokenSource_c___cctor_b__4_0__MethodInfo); +DO_APP_FUNC(0x004CB450, void, CancellationCallbackCoreWorkArguments__ctor, (CancellationCallbackCoreWorkArguments * __this, SparselyPopulatedArrayFragment_1_CancellationCallbackInfo_ * currArrayFragment, int32_t currArrayIndex, MethodInfo * method)); DO_APP_FUNC(0x0110BEC0, void, CancellationCallbackInfo__ctor, (CancellationCallbackInfo * __this, Action_1_Object_ * callback, Object * stateForCallback, ExecutionContext * targetExecutionContext, CancellationTokenSource * cancellationTokenSource, MethodInfo * method)); DO_APP_FUNC(0x01C13AA0, void, CancellationCallbackInfo_ExecuteCallback, (CancellationCallbackInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01C13C80, void, CancellationCallbackInfo_ExecutionContextCallback, (Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CD68, CancellationCallbackInfo_ExecutionContextCallback__MethodInfo); DO_APP_FUNC(0x01C13D20, void, CancellationCallbackInfo_WithSyncContext__ctor, (CancellationCallbackInfo_WithSyncContext * __this, Action_1_Object_ * callback, Object * stateForCallback, ExecutionContext * targetExecutionContext, CancellationTokenSource * cancellationTokenSource, SynchronizationContext * targetSyncContext, MethodInfo * method)); DO_APP_FUNC(0x01C13DA0, LockHolder, LockHolder_Hold, (Lock * l, MethodInfo * method)); -DO_APP_FUNC(0x01C13E40, void, LockHolder_Dispose, (LockHolder__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C13E40, void, LockHolder_Dispose, (LockHolder * __this, MethodInfo * method)); DO_APP_FUNC(0x01C13E80, void, Lock_Acquire, (Lock * __this, MethodInfo * method)); DO_APP_FUNC(0x01C13EC0, void, Lock_Release, (Lock * __this, MethodInfo * method)); DO_APP_FUNC(0x01C13EF0, void, Lock__ctor, (Lock * __this, MethodInfo * method)); @@ -4251,48 +4814,61 @@ DO_APP_FUNC(0x01C13F80, int32_t, SemaphoreSlim_get_CurrentCount, (SemaphoreSlim DO_APP_FUNC(0x01C13F90, WaitHandle *, SemaphoreSlim_get_AvailableWaitHandle, (SemaphoreSlim * __this, MethodInfo * method)); DO_APP_FUNC(0x01C141E0, void, SemaphoreSlim__ctor, (SemaphoreSlim * __this, int32_t initialCount, MethodInfo * method)); DO_APP_FUNC(0x01C141F0, void, SemaphoreSlim__ctor_1, (SemaphoreSlim * __this, int32_t initialCount, int32_t maxCount, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CDB0, SemaphoreSlim__ctor_1__MethodInfo); DO_APP_FUNC(0x01C143D0, void, SemaphoreSlim_Wait, (SemaphoreSlim * __this, MethodInfo * method)); DO_APP_FUNC(0x01C143E0, bool, SemaphoreSlim_Wait_1, (SemaphoreSlim * __this, int32_t millisecondsTimeout, MethodInfo * method)); DO_APP_FUNC(0x01C143F0, bool, SemaphoreSlim_Wait_2, (SemaphoreSlim * __this, int32_t millisecondsTimeout, CancellationToken cancellationToken, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CD78, SemaphoreSlim_Wait_2__MethodInfo); DO_APP_FUNC(0x01C14D40, bool, SemaphoreSlim_WaitUntilCountOrTimeout, (SemaphoreSlim * __this, int32_t millisecondsTimeout, uint32_t startTime, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x01C14E70, Task *, SemaphoreSlim_WaitAsync, (SemaphoreSlim * __this, MethodInfo * method)); DO_APP_FUNC(0x01C14E80, Task_1_System_Boolean_ *, SemaphoreSlim_WaitAsync_1, (SemaphoreSlim * __this, int32_t millisecondsTimeout, CancellationToken cancellationToken, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CCF8, SemaphoreSlim_WaitAsync_1__MethodInfo); DO_APP_FUNC(0x01C153D0, SemaphoreSlim_TaskNode *, SemaphoreSlim_CreateAndAddAsyncWaiter, (SemaphoreSlim * __this, MethodInfo * method)); DO_APP_FUNC(0x01C15650, bool, SemaphoreSlim_RemoveAsyncWaiter, (SemaphoreSlim * __this, SemaphoreSlim_TaskNode * task, MethodInfo * method)); DO_APP_FUNC(0x01C158C0, Task_1_System_Boolean_ *, SemaphoreSlim_WaitUntilCountOrTimeoutAsync, (SemaphoreSlim * __this, SemaphoreSlim_TaskNode * asyncWaiter, int32_t millisecondsTimeout, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x01C15B30, int32_t, SemaphoreSlim_Release, (SemaphoreSlim * __this, MethodInfo * method)); DO_APP_FUNC(0x01C15B40, int32_t, SemaphoreSlim_Release_1, (SemaphoreSlim * __this, int32_t releaseCount, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CCB0, SemaphoreSlim_Release_1__MethodInfo); DO_APP_FUNC(0x01C15EC0, void, SemaphoreSlim_QueueWaiterTask, (SemaphoreSlim_TaskNode * waiterTask, MethodInfo * method)); DO_APP_FUNC(0x01C15ED0, void, SemaphoreSlim_Dispose, (SemaphoreSlim * __this, MethodInfo * method)); DO_APP_FUNC(0x01C15F40, void, SemaphoreSlim_Dispose_1, (SemaphoreSlim * __this, bool disposing, MethodInfo * method)); DO_APP_FUNC(0x01C160F0, void, SemaphoreSlim_CancellationTokenCanceledEventHandler, (Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CD20, SemaphoreSlim_CancellationTokenCanceledEventHandler__MethodInfo); DO_APP_FUNC(0x01C162B0, void, SemaphoreSlim_CheckDispose, (SemaphoreSlim * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CD40, SemaphoreSlim_CheckDispose__MethodInfo); DO_APP_FUNC(0x00A1B820, String *, SemaphoreSlim_GetResourceString, (String * str, MethodInfo * method)); DO_APP_FUNC(0x01C16350, void, SemaphoreSlim__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01C165A0, void, SemaphoreSlim_TaskNode__ctor, (SemaphoreSlim_TaskNode * __this, MethodInfo * method)); DO_APP_FUNC(0x01C16620, void, SemaphoreSlim_TaskNode_System_Threading_IThreadPoolWorkItem_ExecuteWorkItem, (SemaphoreSlim_TaskNode * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SemaphoreSlim_TaskNode_System_Threading_IThreadPoolWorkItem_MarkAborted, (SemaphoreSlim_TaskNode * __this, ThreadAbortException * tae, MethodInfo * method)); -DO_APP_FUNC(0x01C16720, void, SemaphoreSlim_WaitUntilCountOrTimeoutAsync_d_32_MoveNext, (SemaphoreSlim_WaitUntilCountOrTimeoutAsync_d_32__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C17330, void, SemaphoreSlim_WaitUntilCountOrTimeoutAsync_d_32_SetStateMachine, (SemaphoreSlim_WaitUntilCountOrTimeoutAsync_d_32__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x01C173A0, void, SpinLock__ctor, (SpinLock__Boxed * __this, bool enableThreadOwnerTracking, MethodInfo * method)); -DO_APP_FUNC(0x01C173C0, void, SpinLock_Enter, (SpinLock__Boxed * __this, bool lockTaken, MethodInfo * method)); -DO_APP_FUNC(0x01C17470, void, SpinLock_TryEnter, (SpinLock__Boxed * __this, int32_t millisecondsTimeout, bool lockTaken, MethodInfo * method)); -DO_APP_FUNC(0x01C17530, void, SpinLock_ContinueTryEnter, (SpinLock__Boxed * __this, int32_t millisecondsTimeout, bool lockTaken, MethodInfo * method)); -DO_APP_FUNC(0x01C17A50, void, SpinLock_DecrementWaiters, (SpinLock__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C17B10, void, SpinLock_ContinueTryEnterWithThreadTracking, (SpinLock__Boxed * __this, int32_t millisecondsTimeout, uint32_t startTime, bool lockTaken, MethodInfo * method)); -DO_APP_FUNC(0x01C17D80, void, SpinLock_Exit, (SpinLock__Boxed * __this, bool useMemoryBarrier, MethodInfo * method)); -DO_APP_FUNC(0x01C17E20, void, SpinLock_ExitSlowPath, (SpinLock__Boxed * __this, bool useMemoryBarrier, MethodInfo * method)); -DO_APP_FUNC(0x01C17F60, bool, SpinLock_get_IsHeldByCurrentThread, (SpinLock__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C18090, bool, SpinLock_get_IsThreadOwnerTrackingEnabled, (SpinLock__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C16720, void, SemaphoreSlim_WaitUntilCountOrTimeoutAsync_d_32_MoveNext, (SemaphoreSlim_WaitUntilCountOrTimeoutAsync_d_32 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C17330, void, SemaphoreSlim_WaitUntilCountOrTimeoutAsync_d_32_SetStateMachine, (SemaphoreSlim_WaitUntilCountOrTimeoutAsync_d_32 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x01C173A0, void, SpinLock__ctor, (SpinLock * __this, bool enableThreadOwnerTracking, MethodInfo * method)); +DO_APP_FUNC(0x01C173C0, void, SpinLock_Enter, (SpinLock * __this, bool * lockTaken, MethodInfo * method)); +DO_APP_FUNC(0x01C17470, void, SpinLock_TryEnter, (SpinLock * __this, int32_t millisecondsTimeout, bool * lockTaken, MethodInfo * method)); +DO_APP_FUNC(0x01C17530, void, SpinLock_ContinueTryEnter, (SpinLock * __this, int32_t millisecondsTimeout, bool * lockTaken, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CC70, SpinLock_ContinueTryEnter__MethodInfo); +DO_APP_FUNC(0x01C17A50, void, SpinLock_DecrementWaiters, (SpinLock * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C17B10, void, SpinLock_ContinueTryEnterWithThreadTracking, (SpinLock * __this, int32_t millisecondsTimeout, uint32_t startTime, bool * lockTaken, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CBC0, SpinLock_ContinueTryEnterWithThreadTracking__MethodInfo); +DO_APP_FUNC(0x01C17D80, void, SpinLock_Exit, (SpinLock * __this, bool useMemoryBarrier, MethodInfo * method)); +DO_APP_FUNC(0x01C17E20, void, SpinLock_ExitSlowPath, (SpinLock * __this, bool useMemoryBarrier, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CBA0, SpinLock_ExitSlowPath__MethodInfo); +DO_APP_FUNC(0x01C17F60, bool, SpinLock_get_IsHeldByCurrentThread, (SpinLock * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CB90, SpinLock_get_IsHeldByCurrentThread__MethodInfo); +DO_APP_FUNC(0x01C18090, bool, SpinLock_get_IsThreadOwnerTrackingEnabled, (SpinLock * __this, MethodInfo * method)); DO_APP_FUNC(0x01C180A0, void, SpinLock__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01C180E0, void, EventWaitHandle__ctor, (EventWaitHandle * __this, bool initialState, EventResetMode__Enum mode, MethodInfo * method)); DO_APP_FUNC(0x01C18100, void, EventWaitHandle__ctor_1, (EventWaitHandle * __this, bool initialState, EventResetMode__Enum mode, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CBE8, EventWaitHandle__ctor_1__MethodInfo); DO_APP_FUNC(0x01C18460, bool, EventWaitHandle_Reset, (EventWaitHandle * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CBE0, EventWaitHandle_Reset__MethodInfo); DO_APP_FUNC(0x01C184D0, bool, EventWaitHandle_Set, (EventWaitHandle * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CBD8, EventWaitHandle_Set__MethodInfo); DO_APP_FUNC(0x0084C240, void, ContextCallback__ctor, (ContextCallback * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EE650, void, ContextCallback_Invoke, (ContextCallback * __this, Object * state, MethodInfo * method)); -DO_APP_FUNC(0x01C18540, bool, ExecutionContextSwitcher_UndoNoThrow, (ExecutionContextSwitcher__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C18560, void, ExecutionContextSwitcher_Undo, (ExecutionContextSwitcher__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C18540, bool, ExecutionContextSwitcher_UndoNoThrow, (ExecutionContextSwitcher * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C18560, void, ExecutionContextSwitcher_Undo, (ExecutionContextSwitcher * __this, MethodInfo * method)); DO_APP_FUNC(0x01C186F0, bool, ExecutionContext_get_isNewCapture, (ExecutionContext * __this, MethodInfo * method)); DO_APP_FUNC(0x01C18700, void, ExecutionContext_set_isNewCapture, (ExecutionContext * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x01C18720, bool, ExecutionContext_get_isFlowSuppressed, (ExecutionContext * __this, MethodInfo * method)); @@ -4312,52 +4888,63 @@ DO_APP_FUNC(0x003BB3D0, SynchronizationContext *, ExecutionContext_get_Synchroni DO_APP_FUNC(0x003AE960, void, ExecutionContext_set_SynchronizationContextNoFlow, (ExecutionContext * __this, SynchronizationContext * value, MethodInfo * method)); DO_APP_FUNC(0x00A8C430, void, ExecutionContext_Dispose, (ExecutionContext * __this, MethodInfo * method)); DO_APP_FUNC(0x01C19100, void, ExecutionContext_Run, (ExecutionContext * executionContext, ContextCallback * callback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CB60, ExecutionContext_Run__MethodInfo); DO_APP_FUNC(0x01C19250, void, ExecutionContext_Run_1, (ExecutionContext * executionContext, ContextCallback * callback, Object * state, bool preserveSyncCtx, MethodInfo * method)); DO_APP_FUNC(0x01C192E0, void, ExecutionContext_RunInternal, (ExecutionContext * executionContext, ContextCallback * callback, Object * state, MethodInfo * method)); DO_APP_FUNC(0x01C19360, void, ExecutionContext_RunInternal_1, (ExecutionContext * executionContext, ContextCallback * callback, Object * state, bool preserveSyncCtx, MethodInfo * method)); -DO_APP_FUNC(0x01C19580, void, ExecutionContext_EstablishCopyOnWriteScope, (ExecutionContextSwitcher ecsw, MethodInfo * method)); -DO_APP_FUNC(0x01C195F0, void, ExecutionContext_EstablishCopyOnWriteScope_1, (Thread * currentThread, bool knownNullWindowsIdentity, ExecutionContextSwitcher ecsw, MethodInfo * method)); +DO_APP_FUNC(0x01C19580, void, ExecutionContext_EstablishCopyOnWriteScope, (ExecutionContextSwitcher * ecsw, MethodInfo * method)); +DO_APP_FUNC(0x01C195F0, void, ExecutionContext_EstablishCopyOnWriteScope_1, (Thread * currentThread, bool knownNullWindowsIdentity, ExecutionContextSwitcher * ecsw, MethodInfo * method)); DO_APP_FUNC(0x01C19730, ExecutionContextSwitcher, ExecutionContext_SetExecutionContext, (ExecutionContext * executionContext, bool preserveSyncCtx, MethodInfo * method)); DO_APP_FUNC(0x01C19A50, ExecutionContext *, ExecutionContext_CreateCopy, (ExecutionContext * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CA20, ExecutionContext_CreateCopy__MethodInfo); DO_APP_FUNC(0x01C19CA0, ExecutionContext *, ExecutionContext_CreateMutableCopy, (ExecutionContext * __this, MethodInfo * method)); DO_APP_FUNC(0x01C19F90, bool, ExecutionContext_IsFlowSuppressed, (MethodInfo * method)); DO_APP_FUNC(0x01C1A020, ExecutionContext *, ExecutionContext_Capture, (MethodInfo * method)); DO_APP_FUNC(0x01C1A070, ExecutionContext *, ExecutionContext_FastCapture, (MethodInfo * method)); -DO_APP_FUNC(0x01C1A0C0, ExecutionContext *, ExecutionContext_Capture_1, (StackCrawlMark__Enum stackMark, ExecutionContext_CaptureOptions__Enum options, MethodInfo * method)); +DO_APP_FUNC(0x01C1A0C0, ExecutionContext *, ExecutionContext_Capture_1, (StackCrawlMark__Enum * stackMark, ExecutionContext_CaptureOptions__Enum options, MethodInfo * method)); DO_APP_FUNC(0x01C1A500, void, ExecutionContext_GetObjectData, (ExecutionContext * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CAB8, ExecutionContext_GetObjectData__MethodInfo); DO_APP_FUNC(0x01C1A6C0, void, ExecutionContext__ctor_2, (ExecutionContext * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x01C1A8A0, bool, ExecutionContext_IsDefaultFTContext, (ExecutionContext * __this, bool ignoreSyncCtx, MethodInfo * method)); DO_APP_FUNC(0x01C1A910, void, ExecutionContext__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, ExecutionContext_Reader__ctor, (ExecutionContext_Reader__Boxed * __this, ExecutionContext * ec, MethodInfo * method)); -DO_APP_FUNC(0x00471910, ExecutionContext *, ExecutionContext_Reader_DangerousGetRawExecutionContext, (ExecutionContext_Reader__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9A290, bool, ExecutionContext_Reader_get_IsNull, (ExecutionContext_Reader__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C1AA60, bool, ExecutionContext_Reader_IsDefaultFTContext, (ExecutionContext_Reader__Boxed * __this, bool ignoreSyncCtx, MethodInfo * method)); -DO_APP_FUNC(0x01C1AA80, bool, ExecutionContext_Reader_get_IsFlowSuppressed, (ExecutionContext_Reader__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C1AAA0, SynchronizationContext *, ExecutionContext_Reader_get_SynchronizationContext, (ExecutionContext_Reader__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C1AAC0, SynchronizationContext *, ExecutionContext_Reader_get_SynchronizationContextNoFlow, (ExecutionContext_Reader__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C1AAE0, LogicalCallContext_Reader, ExecutionContext_Reader_get_LogicalCallContext, (ExecutionContext_Reader__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C1AB50, bool, ExecutionContext_Reader_HasSameLocalValues, (ExecutionContext_Reader__Boxed * __this, ExecutionContext * other, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, ExecutionContext_Reader__ctor, (ExecutionContext_Reader * __this, ExecutionContext * ec, MethodInfo * method)); +DO_APP_FUNC(0x00471910, ExecutionContext *, ExecutionContext_Reader_DangerousGetRawExecutionContext, (ExecutionContext_Reader * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9A290, bool, ExecutionContext_Reader_get_IsNull, (ExecutionContext_Reader * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C1AA60, bool, ExecutionContext_Reader_IsDefaultFTContext, (ExecutionContext_Reader * __this, bool ignoreSyncCtx, MethodInfo * method)); +DO_APP_FUNC(0x01C1AA80, bool, ExecutionContext_Reader_get_IsFlowSuppressed, (ExecutionContext_Reader * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C1AAA0, SynchronizationContext *, ExecutionContext_Reader_get_SynchronizationContext, (ExecutionContext_Reader * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C1AAC0, SynchronizationContext *, ExecutionContext_Reader_get_SynchronizationContextNoFlow, (ExecutionContext_Reader * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C1AAE0, LogicalCallContext_Reader, ExecutionContext_Reader_get_LogicalCallContext, (ExecutionContext_Reader * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C1AB50, bool, ExecutionContext_Reader_HasSameLocalValues, (ExecutionContext_Reader * __this, ExecutionContext * other, MethodInfo * method)); DO_APP_FUNC(0x01C1AB80, void, Monitor_Enter, (Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x01C1ABB0, void, Monitor_Enter_1, (Object * obj, bool lockTaken, MethodInfo * method)); +DO_APP_FUNC(0x01C1ABB0, void, Monitor_Enter_1, (Object * obj, bool * lockTaken, MethodInfo * method)); DO_APP_FUNC(0x01C1AC30, void, Monitor_ThrowLockTakenException, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C9E8, Monitor_ThrowLockTakenException__MethodInfo); DO_APP_FUNC(0x01C1ACB0, void, Monitor_Exit, (Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x01C1ACE0, void, Monitor_TryEnter, (Object * obj, bool lockTaken, MethodInfo * method)); +DO_APP_FUNC(0x01C1ACE0, void, Monitor_TryEnter, (Object * obj, bool * lockTaken, MethodInfo * method)); DO_APP_FUNC(0x01C1AD60, bool, Monitor_TryEnter_1, (Object * obj, int32_t millisecondsTimeout, MethodInfo * method)); -DO_APP_FUNC(0x01C1AD80, void, Monitor_TryEnter_2, (Object * obj, int32_t millisecondsTimeout, bool lockTaken, MethodInfo * method)); +DO_APP_FUNC(0x01C1AD80, void, Monitor_TryEnter_2, (Object * obj, int32_t millisecondsTimeout, bool * lockTaken, MethodInfo * method)); DO_APP_FUNC(0x01C1ADA0, bool, Monitor_Wait, (Object * obj, int32_t millisecondsTimeout, bool exitContext, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C9D8, Monitor_Wait__MethodInfo); DO_APP_FUNC(0x01C1ADA0, bool, Monitor_Wait_1, (Object * obj, int32_t millisecondsTimeout, MethodInfo * method)); DO_APP_FUNC(0x01C1AED0, void, Monitor_Pulse, (Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C9D0, Monitor_Pulse__MethodInfo); DO_APP_FUNC(0x01C1AFB0, void, Monitor_PulseAll, (Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C9C8, Monitor_PulseAll__MethodInfo); DO_APP_FUNC(0x01C1B0D0, bool, Monitor_Monitor_test_synchronised, (Object * obj, MethodInfo * method)); DO_APP_FUNC(0x01C1B120, void, Monitor_Monitor_pulse, (Object * obj, MethodInfo * method)); DO_APP_FUNC(0x01C1B150, void, Monitor_ObjPulse, (Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C9B0, Monitor_ObjPulse__MethodInfo); DO_APP_FUNC(0x01C1B200, void, Monitor_Monitor_pulse_all, (Object * obj, MethodInfo * method)); DO_APP_FUNC(0x01C1B280, void, Monitor_ObjPulseAll, (Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C9A8, Monitor_ObjPulseAll__MethodInfo); DO_APP_FUNC(0x01C1B370, bool, Monitor_Monitor_wait, (Object * obj, int32_t ms, MethodInfo * method)); DO_APP_FUNC(0x01C1B3A0, bool, Monitor_ObjWait, (bool exitContext, int32_t millisecondsTimeout, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x01C1B4A0, void, Monitor_try_enter_with_atomic_var, (Object * obj, int32_t millisecondsTimeout, bool lockTaken, MethodInfo * method)); -DO_APP_FUNC(0x01C1B4E0, void, Monitor_ReliableEnterTimeout, (Object * obj, int32_t timeout, bool lockTaken, MethodInfo * method)); -DO_APP_FUNC(0x01C1B5D0, void, Monitor_ReliableEnter, (Object * obj, bool lockTaken, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C998, Monitor_ObjWait__MethodInfo); +DO_APP_FUNC(0x01C1B4A0, void, Monitor_try_enter_with_atomic_var, (Object * obj, int32_t millisecondsTimeout, bool * lockTaken, MethodInfo * method)); +DO_APP_FUNC(0x01C1B4E0, void, Monitor_ReliableEnterTimeout, (Object * obj, int32_t timeout, bool * lockTaken, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C990, Monitor_ReliableEnterTimeout__MethodInfo); +DO_APP_FUNC(0x01C1B5D0, void, Monitor_ReliableEnter, (Object * obj, bool * lockTaken, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SynchronizationContext__ctor, (SynchronizationContext * __this, MethodInfo * method)); DO_APP_FUNC(0x01C1B670, bool, SynchronizationContext_IsWaitNotificationRequired, (SynchronizationContext * __this, MethodInfo * method)); DO_APP_FUNC(0x01C1B680, void, SynchronizationContext_Send, (SynchronizationContext * __this, SendOrPostCallback * d, Object * state, MethodInfo * method)); @@ -4365,6 +4952,7 @@ DO_APP_FUNC(0x01C1B6B0, void, SynchronizationContext_Post, (SynchronizationConte DO_APP_FUNC(0x003AE050, void, SynchronizationContext_OperationStarted, (SynchronizationContext * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SynchronizationContext_OperationCompleted, (SynchronizationContext * __this, MethodInfo * method)); DO_APP_FUNC(0x01C1B750, int32_t, SynchronizationContext_Wait, (SynchronizationContext * __this, IntPtr__Array * waitHandles, bool waitAll, int32_t millisecondsTimeout, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CA08, SynchronizationContext_Wait__MethodInfo); DO_APP_FUNC(0x01C1B840, int32_t, SynchronizationContext_WaitHelper, (IntPtr__Array * waitHandles, bool waitAll, int32_t millisecondsTimeout, MethodInfo * method)); DO_APP_FUNC(0x01C1B8E0, void, SynchronizationContext_SetSynchronizationContext, (SynchronizationContext * syncContext, MethodInfo * method)); DO_APP_FUNC(0x01C1B9D0, SynchronizationContext *, SynchronizationContext_get_Current, (MethodInfo * method)); @@ -4376,8 +4964,10 @@ DO_APP_FUNC(0x003AE960, void, OSSpecificSynchronizationContext__ctor, (OSSpecifi DO_APP_FUNC(0x01C1BC00, OSSpecificSynchronizationContext *, OSSpecificSynchronizationContext_Get, (MethodInfo * method)); DO_APP_FUNC(0x01C1BE50, SynchronizationContext *, OSSpecificSynchronizationContext_CreateCopy, (OSSpecificSynchronizationContext * __this, MethodInfo * method)); DO_APP_FUNC(0x01C1BEF0, void, OSSpecificSynchronizationContext_Send, (OSSpecificSynchronizationContext * __this, SendOrPostCallback * d, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C938, OSSpecificSynchronizationContext_Send__MethodInfo); DO_APP_FUNC(0x01C1BF40, void, OSSpecificSynchronizationContext_Post, (OSSpecificSynchronizationContext * __this, SendOrPostCallback * d, Object * state, MethodInfo * method)); DO_APP_FUNC(0x01C1C340, void, OSSpecificSynchronizationContext_InvocationEntry, (void * arg, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C918, OSSpecificSynchronizationContext_InvocationEntry__MethodInfo); DO_APP_FUNC(0x01C1C4C0, Object *, OSSpecificSynchronizationContext_GetOSContext, (MethodInfo * method)); DO_APP_FUNC(0x01C1C550, void, OSSpecificSynchronizationContext_PostInternal, (Object * osSynchronizationContext, void * callback, void * arg, MethodInfo * method)); DO_APP_FUNC(0x01C1C680, void, OSSpecificSynchronizationContext__cctor, (MethodInfo * method)); @@ -4388,20 +4978,30 @@ DO_APP_FUNC(0x01C1C980, void, OSSpecificSynchronizationContext_InvocationContext DO_APP_FUNC(0x01C1C9B0, void, OSSpecificSynchronizationContext_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, OSSpecificSynchronizationContext_c__ctor, (OSSpecificSynchronizationContext_c * __this, MethodInfo * method)); DO_APP_FUNC(0x01C1CA60, OSSpecificSynchronizationContext *, OSSpecificSynchronizationContext_c__Get_b__3_0, (OSSpecificSynchronizationContext_c * __this, Object * _osContext, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C948, OSSpecificSynchronizationContext_c__Get_b__3_0__MethodInfo); DO_APP_FUNC(0x003BCBE0, void, ThreadHelper__ctor, (ThreadHelper * __this, Delegate * start, MethodInfo * method)); DO_APP_FUNC(0x003BCDE0, void, ThreadHelper_SetExecutionContextHelper, (ThreadHelper * __this, ExecutionContext * ec, MethodInfo * method)); DO_APP_FUNC(0x01C1CB00, void, ThreadHelper_ThreadStart_Context, (Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12290, ThreadHelper_ThreadStart_Context__MethodInfo); DO_APP_FUNC(0x01C1CC30, void, ThreadHelper_ThreadStart, (ThreadHelper * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12220, ThreadHelper_ThreadStart__MethodInfo); DO_APP_FUNC(0x01C1CDA0, void, ThreadHelper_ThreadStart_1, (ThreadHelper * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12210, ThreadHelper_ThreadStart_1__MethodInfo); DO_APP_FUNC(0x01C1CEB0, void, ThreadHelper__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01C1CF90, void, Thread_AsyncLocalSetCurrentCulture, (AsyncLocalValueChangedArgs_1_System_Globalization_CultureInfo_ args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12248, Thread_AsyncLocalSetCurrentCulture__MethodInfo); DO_APP_FUNC(0x01C1D0B0, void, Thread_AsyncLocalSetCurrentUICulture, (AsyncLocalValueChangedArgs_1_System_Globalization_CultureInfo_ args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D121D0, Thread_AsyncLocalSetCurrentUICulture__MethodInfo); DO_APP_FUNC(0x01C1D1D0, void, Thread__ctor, (Thread * __this, ThreadStart * start, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12348, Thread__ctor__MethodInfo); DO_APP_FUNC(0x01C1D250, void, Thread__ctor_1, (Thread * __this, ParameterizedThreadStart * start, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12340, Thread__ctor_1__MethodInfo); DO_APP_FUNC(0x01C1D2D0, void, Thread__ctor_2, (Thread * __this, ParameterizedThreadStart * start, int32_t maxStackSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12338, Thread__ctor_2__MethodInfo); DO_APP_FUNC(0x01C1D3C0, void, Thread_Start, (Thread * __this, MethodInfo * method)); DO_APP_FUNC(0x01C1D3E0, void, Thread_Start_1, (Thread * __this, Object * parameter, MethodInfo * method)); -DO_APP_FUNC(0x01C1D510, void, Thread_Start_2, (Thread * __this, StackCrawlMark__Enum stackMark, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12320, Thread_Start_1__MethodInfo); +DO_APP_FUNC(0x01C1D510, void, Thread_Start_2, (Thread * __this, StackCrawlMark__Enum * stackMark, MethodInfo * method)); DO_APP_FUNC(0x01C1D720, ExecutionContext_Reader, Thread_GetExecutionContextReader, (Thread * __this, MethodInfo * method)); DO_APP_FUNC(0x01C1D780, bool, Thread_get_ExecutionContextBelongsToCurrentScope, (Thread * __this, MethodInfo * method)); DO_APP_FUNC(0x01C1D790, void, Thread_set_ExecutionContextBelongsToCurrentScope, (Thread * __this, bool value, MethodInfo * method)); @@ -4413,23 +5013,27 @@ DO_APP_FUNC(0x01C1D930, void, Thread_SetPriorityNative, (Thread * __this, int32_ DO_APP_FUNC(0x01C1D9B0, bool, Thread_JoinInternal, (Thread * __this, int32_t millisecondsTimeout, MethodInfo * method)); DO_APP_FUNC(0x01C1DA80, void, Thread_Join, (Thread * __this, MethodInfo * method)); DO_APP_FUNC(0x01C1DA90, bool, Thread_Join_1, (Thread * __this, int32_t millisecondsTimeout, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D122E0, Thread_Join_1__MethodInfo); DO_APP_FUNC(0x01C1DB30, void, Thread_SleepInternal, (int32_t millisecondsTimeout, MethodInfo * method)); DO_APP_FUNC(0x01C1DBC0, void, Thread_Sleep, (int32_t millisecondsTimeout, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12230, Thread_Sleep__MethodInfo); DO_APP_FUNC(0x0194D280, bool, Thread_YieldInternal, (MethodInfo * method)); DO_APP_FUNC(0x0194D280, bool, Thread_Yield, (MethodInfo * method)); DO_APP_FUNC(0x01C1DCC0, void, Thread_SetStartHelper, (Thread * __this, Delegate * start, int32_t maxStackSize, MethodInfo * method)); DO_APP_FUNC(0x01C1DEB0, CultureInfo *, Thread_get_CurrentUICulture, (Thread * __this, MethodInfo * method)); DO_APP_FUNC(0x01C1DEF0, void, Thread_set_CurrentUICulture, (Thread * __this, CultureInfo * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D121C8, Thread_set_CurrentUICulture__MethodInfo); DO_APP_FUNC(0x01C1E180, CultureInfo *, Thread_GetCurrentUICultureNoAppX, (Thread * __this, MethodInfo * method)); DO_APP_FUNC(0x01C1E340, CultureInfo *, Thread_get_CurrentCulture, (Thread * __this, MethodInfo * method)); DO_APP_FUNC(0x01C1E380, void, Thread_set_CurrentCulture, (Thread * __this, CultureInfo * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12240, Thread_set_CurrentCulture__MethodInfo); DO_APP_FUNC(0x01C1E590, CultureInfo *, Thread_GetCurrentCultureNoAppX, (Thread * __this, MethodInfo * method)); DO_APP_FUNC(0x01C1E720, void, Thread_nativeInitCultureAccessors, (MethodInfo * method)); DO_APP_FUNC(0x01C1E970, void, Thread_MemoryBarrier, (MethodInfo * method)); DO_APP_FUNC(0x01C1E980, void, Thread_ConstructInternalThread, (Thread * __this, MethodInfo * method)); DO_APP_FUNC(0x01C1E9C0, InternalThread *, Thread_get_Internal, (Thread * __this, MethodInfo * method)); DO_APP_FUNC(0x019F1CD0, Context *, Thread_get_CurrentContext, (MethodInfo * method)); -DO_APP_FUNC(0x01C1EA20, void, Thread_GetCurrentThread_icall, (Thread * thread, MethodInfo * method)); +DO_APP_FUNC(0x01C1EA20, void, Thread_GetCurrentThread_icall, (Thread * * thread, MethodInfo * method)); DO_APP_FUNC(0x01C1EAA0, Thread *, Thread_GetCurrentThread, (MethodInfo * method)); DO_APP_FUNC(0x01C1EB30, Thread *, Thread_get_CurrentThread, (MethodInfo * method)); DO_APP_FUNC(0x01BE6BF0, int32_t, Thread_get_CurrentThreadId, (MethodInfo * method)); @@ -4448,7 +5052,8 @@ DO_APP_FUNC(0x01C1EFC0, void, Thread_Abort_internal, (InternalThread * thread, O DO_APP_FUNC(0x01C1EFD0, void, Thread_Abort, (Thread * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Thread_SpinWait_nop, (MethodInfo * method)); DO_APP_FUNC(0x01C1F020, void, Thread_SpinWait, (int32_t iterations, MethodInfo * method)); -DO_APP_FUNC(0x01C1F030, void, Thread_StartInternal, (Thread * __this, Object * principal, StackCrawlMark__Enum stackMark, MethodInfo * method)); +DO_APP_FUNC(0x01C1F030, void, Thread_StartInternal, (Thread * __this, Object * principal, StackCrawlMark__Enum * stackMark, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12130, Thread_StartInternal__MethodInfo); DO_APP_FUNC(0x01C1F0F0, void, Thread_SetState, (InternalThread * thread, ThreadState__Enum set, MethodInfo * method)); DO_APP_FUNC(0x01C1F100, void, Thread_ClrState, (InternalThread * thread, ThreadState__Enum clr, MethodInfo * method)); DO_APP_FUNC(0x01C1F110, ThreadState__Enum, Thread_GetState, (InternalThread * thread, MethodInfo * method)); @@ -4460,6 +5065,7 @@ DO_APP_FUNC(0x01C1F320, void, Thread_BeginCriticalRegion, (MethodInfo * method)) DO_APP_FUNC(0x01C1F3A0, void, Thread_EndCriticalRegion, (MethodInfo * method)); DO_APP_FUNC(0x01C1F2C0, int32_t, Thread_GetHashCode, (Thread * __this, MethodInfo * method)); DO_APP_FUNC(0x01C1F420, ThreadState__Enum, Thread_ValidateThreadState, (Thread * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D121C0, Thread_ValidateThreadState__MethodInfo); DO_APP_FUNC(0x01C1F4D0, void, ThreadAbortException__ctor, (ThreadAbortException * __this, MethodInfo * method)); DO_APP_FUNC(0x01980BF0, void, ThreadAbortException__ctor_1, (ThreadAbortException * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x01C1F540, void, ThreadInterruptedException__ctor, (ThreadInterruptedException * __this, MethodInfo * method)); @@ -4475,49 +5081,54 @@ DO_APP_FUNC(0x01C1FA60, void, ThreadPoolWorkQueue_EnsureThreadRequested, (Thread DO_APP_FUNC(0x01C1FB00, void, ThreadPoolWorkQueue_MarkThreadRequestSatisfied, (ThreadPoolWorkQueue * __this, MethodInfo * method)); DO_APP_FUNC(0x01C1FB30, void, ThreadPoolWorkQueue_Enqueue, (ThreadPoolWorkQueue * __this, IThreadPoolWorkItem * callback, bool forceGlobal, MethodInfo * method)); DO_APP_FUNC(0x01C1FDE0, bool, ThreadPoolWorkQueue_LocalFindAndPop, (ThreadPoolWorkQueue * __this, IThreadPoolWorkItem * callback, MethodInfo * method)); -DO_APP_FUNC(0x01C1FE90, void, ThreadPoolWorkQueue_Dequeue, (ThreadPoolWorkQueue * __this, ThreadPoolWorkQueueThreadLocals * tl, IThreadPoolWorkItem * callback, bool missedSteal, MethodInfo * method)); +DO_APP_FUNC(0x01C1FE90, void, ThreadPoolWorkQueue_Dequeue, (ThreadPoolWorkQueue * __this, ThreadPoolWorkQueueThreadLocals * tl, IThreadPoolWorkItem * * callback, bool * missedSteal, MethodInfo * method)); DO_APP_FUNC(0x01C20150, bool, ThreadPoolWorkQueue_Dispatch, (MethodInfo * method)); DO_APP_FUNC(0x01C20780, void, ThreadPoolWorkQueue__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01C208F0, void, ThreadPoolWorkQueue_WorkStealingQueue_LocalPush, (ThreadPoolWorkQueue_WorkStealingQueue * __this, IThreadPoolWorkItem * obj, MethodInfo * method)); DO_APP_FUNC(0x01C21040, bool, ThreadPoolWorkQueue_WorkStealingQueue_LocalFindAndPop, (ThreadPoolWorkQueue_WorkStealingQueue * __this, IThreadPoolWorkItem * obj, MethodInfo * method)); -DO_APP_FUNC(0x01C21350, bool, ThreadPoolWorkQueue_WorkStealingQueue_LocalPop, (ThreadPoolWorkQueue_WorkStealingQueue * __this, IThreadPoolWorkItem * obj, MethodInfo * method)); -DO_APP_FUNC(0x01C21850, bool, ThreadPoolWorkQueue_WorkStealingQueue_TrySteal, (ThreadPoolWorkQueue_WorkStealingQueue * __this, IThreadPoolWorkItem * obj, bool missedSteal, MethodInfo * method)); -DO_APP_FUNC(0x01C21870, bool, ThreadPoolWorkQueue_WorkStealingQueue_TrySteal_1, (ThreadPoolWorkQueue_WorkStealingQueue * __this, IThreadPoolWorkItem * obj, bool missedSteal, int32_t millisecondsTimeout, MethodInfo * method)); +DO_APP_FUNC(0x01C21350, bool, ThreadPoolWorkQueue_WorkStealingQueue_LocalPop, (ThreadPoolWorkQueue_WorkStealingQueue * __this, IThreadPoolWorkItem * * obj, MethodInfo * method)); +DO_APP_FUNC(0x01C21850, bool, ThreadPoolWorkQueue_WorkStealingQueue_TrySteal, (ThreadPoolWorkQueue_WorkStealingQueue * __this, IThreadPoolWorkItem * * obj, bool * missedSteal, MethodInfo * method)); +DO_APP_FUNC(0x01C21870, bool, ThreadPoolWorkQueue_WorkStealingQueue_TrySteal_1, (ThreadPoolWorkQueue_WorkStealingQueue * __this, IThreadPoolWorkItem * * obj, bool * missedSteal, int32_t millisecondsTimeout, MethodInfo * method)); DO_APP_FUNC(0x01C21C90, void, ThreadPoolWorkQueue_WorkStealingQueue__ctor, (ThreadPoolWorkQueue_WorkStealingQueue * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C21D50, void, ThreadPoolWorkQueue_QueueSegment_GetIndexes, (ThreadPoolWorkQueue_QueueSegment * __this, int32_t upper, int32_t lower, MethodInfo * method)); -DO_APP_FUNC(0x01C21D70, bool, ThreadPoolWorkQueue_QueueSegment_CompareExchangeIndexes, (ThreadPoolWorkQueue_QueueSegment * __this, int32_t prevUpper, int32_t newUpper, int32_t prevLower, int32_t newLower, MethodInfo * method)); +DO_APP_FUNC(0x01C21D50, void, ThreadPoolWorkQueue_QueueSegment_GetIndexes, (ThreadPoolWorkQueue_QueueSegment * __this, int32_t * upper, int32_t * lower, MethodInfo * method)); +DO_APP_FUNC(0x01C21D70, bool, ThreadPoolWorkQueue_QueueSegment_CompareExchangeIndexes, (ThreadPoolWorkQueue_QueueSegment * __this, int32_t * prevUpper, int32_t newUpper, int32_t * prevLower, int32_t newLower, MethodInfo * method)); DO_APP_FUNC(0x01C21DC0, void, ThreadPoolWorkQueue_QueueSegment__ctor, (ThreadPoolWorkQueue_QueueSegment * __this, MethodInfo * method)); DO_APP_FUNC(0x01C21E50, bool, ThreadPoolWorkQueue_QueueSegment_IsUsedUp, (ThreadPoolWorkQueue_QueueSegment * __this, MethodInfo * method)); DO_APP_FUNC(0x01C21EA0, bool, ThreadPoolWorkQueue_QueueSegment_TryEnqueue, (ThreadPoolWorkQueue_QueueSegment * __this, IThreadPoolWorkItem * node, MethodInfo * method)); -DO_APP_FUNC(0x01C21F90, bool, ThreadPoolWorkQueue_QueueSegment_TryDequeue, (ThreadPoolWorkQueue_QueueSegment * __this, IThreadPoolWorkItem * node, MethodInfo * method)); +DO_APP_FUNC(0x01C21F90, bool, ThreadPoolWorkQueue_QueueSegment_TryDequeue, (ThreadPoolWorkQueue_QueueSegment * __this, IThreadPoolWorkItem * * node, MethodInfo * method)); DO_APP_FUNC(0x01C22220, void, ThreadPoolWorkQueueThreadLocals__ctor, (ThreadPoolWorkQueueThreadLocals * __this, ThreadPoolWorkQueue * tpq, MethodInfo * method)); DO_APP_FUNC(0x01C22530, void, ThreadPoolWorkQueueThreadLocals_CleanUp, (ThreadPoolWorkQueueThreadLocals * __this, MethodInfo * method)); DO_APP_FUNC(0x01C226E0, void, ThreadPoolWorkQueueThreadLocals_Finalize, (ThreadPoolWorkQueueThreadLocals * __this, MethodInfo * method)); DO_APP_FUNC(0x01C22760, bool, _ThreadPoolWaitCallback_PerformWaitCallback, (MethodInfo * method)); -DO_APP_FUNC(0x01C227B0, void, QueueUserWorkItemCallback__ctor, (QueueUserWorkItemCallback * __this, WaitCallback * waitCallback, Object * stateObj, bool compressStack, StackCrawlMark__Enum stackMark, MethodInfo * method)); +DO_APP_FUNC(0x01C227B0, void, QueueUserWorkItemCallback__ctor, (QueueUserWorkItemCallback * __this, WaitCallback * waitCallback, Object * stateObj, bool compressStack, StackCrawlMark__Enum * stackMark, MethodInfo * method)); DO_APP_FUNC(0x01C22950, void, QueueUserWorkItemCallback_System_Threading_IThreadPoolWorkItem_ExecuteWorkItem, (QueueUserWorkItemCallback * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, QueueUserWorkItemCallback_System_Threading_IThreadPoolWorkItem_MarkAborted, (QueueUserWorkItemCallback * __this, ThreadAbortException * tae, MethodInfo * method)); DO_APP_FUNC(0x01C22A90, void, QueueUserWorkItemCallback_WaitCallback_Context, (Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D120A0, QueueUserWorkItemCallback_WaitCallback_Context__MethodInfo); DO_APP_FUNC(0x01C22B10, void, QueueUserWorkItemCallback__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x01C22BF0, void, ThreadPool_GetAvailableThreads, (int32_t workerThreads, int32_t completionPortThreads, MethodInfo * method)); -DO_APP_FUNC(0x01C22C60, RegisteredWaitHandle *, ThreadPool_RegisterWaitForSingleObject, (WaitHandle * waitObject, WaitOrTimerCallback * callBack, Object * state, uint32_t millisecondsTimeOutInterval, bool executeOnlyOnce, StackCrawlMark__Enum stackMark, bool compressStack, MethodInfo * method)); +DO_APP_FUNC(0x01C22BF0, void, ThreadPool_GetAvailableThreads, (int32_t * workerThreads, int32_t * completionPortThreads, MethodInfo * method)); +DO_APP_FUNC(0x01C22C60, RegisteredWaitHandle *, ThreadPool_RegisterWaitForSingleObject, (WaitHandle * waitObject, WaitOrTimerCallback * callBack, Object * state, uint32_t millisecondsTimeOutInterval, bool executeOnlyOnce, StackCrawlMark__Enum * stackMark, bool compressStack, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12080, ThreadPool_RegisterWaitForSingleObject__MethodInfo); DO_APP_FUNC(0x01C22EC0, RegisteredWaitHandle *, ThreadPool_RegisterWaitForSingleObject_1, (WaitHandle * waitObject, WaitOrTimerCallback * callBack, Object * state, int32_t millisecondsTimeOutInterval, bool executeOnlyOnce, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12058, ThreadPool_RegisterWaitForSingleObject_1__MethodInfo); DO_APP_FUNC(0x01C22F90, RegisteredWaitHandle *, ThreadPool_RegisterWaitForSingleObject_2, (WaitHandle * waitObject, WaitOrTimerCallback * callBack, Object * state, TimeSpan timeout, bool executeOnlyOnce, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12050, ThreadPool_RegisterWaitForSingleObject_2__MethodInfo); DO_APP_FUNC(0x01C23160, bool, ThreadPool_QueueUserWorkItem, (WaitCallback * callBack, Object * state, MethodInfo * method)); DO_APP_FUNC(0x01C23190, bool, ThreadPool_QueueUserWorkItem_1, (WaitCallback * callBack, MethodInfo * method)); DO_APP_FUNC(0x01C231C0, bool, ThreadPool_UnsafeQueueUserWorkItem, (WaitCallback * callBack, Object * state, MethodInfo * method)); -DO_APP_FUNC(0x01C231F0, bool, ThreadPool_QueueUserWorkItemHelper, (WaitCallback * callBack, Object * state, StackCrawlMark__Enum stackMark, bool compressStack, bool forceGlobal, MethodInfo * method)); +DO_APP_FUNC(0x01C231F0, bool, ThreadPool_QueueUserWorkItemHelper, (WaitCallback * callBack, Object * state, StackCrawlMark__Enum * stackMark, bool compressStack, bool forceGlobal, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11F78, ThreadPool_QueueUserWorkItemHelper__MethodInfo); DO_APP_FUNC(0x01C235B0, void, ThreadPool_UnsafeQueueCustomWorkItem, (IThreadPoolWorkItem * workItem, bool forceGlobal, MethodInfo * method)); DO_APP_FUNC(0x01C236B0, bool, ThreadPool_TryPopCustomWorkItem, (IThreadPoolWorkItem * workItem, MethodInfo * method)); DO_APP_FUNC(0x01C237E0, bool, ThreadPool_RequestWorkerThread, (MethodInfo * method)); DO_APP_FUNC(0x01C23800, void, ThreadPool_EnsureVMInitialized, (MethodInfo * method)); -DO_APP_FUNC(0x01C22BF0, void, ThreadPool_GetAvailableThreadsNative, (int32_t workerThreads, int32_t completionPortThreads, MethodInfo * method)); +DO_APP_FUNC(0x01C22BF0, void, ThreadPool_GetAvailableThreadsNative, (int32_t * workerThreads, int32_t * completionPortThreads, MethodInfo * method)); DO_APP_FUNC(0x01C238B0, bool, ThreadPool_NotifyWorkItemComplete, (MethodInfo * method)); DO_APP_FUNC(0x01A77820, void, ThreadPool_ReportThreadStatus, (bool isWorking, MethodInfo * method)); DO_APP_FUNC(0x01C23930, void, ThreadPool_NotifyWorkItemProgress, (MethodInfo * method)); DO_APP_FUNC(0x01C23980, void, ThreadPool_NotifyWorkItemProgressNative, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ThreadPool_NotifyWorkItemQueued, (MethodInfo * method)); -DO_APP_FUNC(0x01C239D0, void, ThreadPool_InitializeVMTp, (bool enableWorkerTracking, MethodInfo * method)); +DO_APP_FUNC(0x01C239D0, void, ThreadPool_InitializeVMTp, (bool * enableWorkerTracking, MethodInfo * method)); DO_APP_FUNC(0x01C239E0, bool, ThreadPool_get_IsThreadPoolThread, (MethodInfo * method)); DO_APP_FUNC(0x01C23A50, void, WaitHandle__ctor, (WaitHandle * __this, MethodInfo * method)); DO_APP_FUNC(0x01C23A50, void, WaitHandle_Init, (WaitHandle * __this, MethodInfo * method)); @@ -4527,59 +5138,68 @@ DO_APP_FUNC(0x01C23D80, SafeWaitHandle *, WaitHandle_get_SafeWaitHandle, (WaitHa DO_APP_FUNC(0x01C23F20, void, WaitHandle_set_SafeWaitHandle, (WaitHandle * __this, SafeWaitHandle * value, MethodInfo * method)); DO_APP_FUNC(0x01C24100, void, WaitHandle_SetHandleInternal, (WaitHandle * __this, SafeWaitHandle * handle, MethodInfo * method)); DO_APP_FUNC(0x01C24180, bool, WaitHandle_WaitOne, (WaitHandle * __this, int32_t millisecondsTimeout, bool exitContext, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11F90, WaitHandle_WaitOne__MethodInfo); DO_APP_FUNC(0x01C24220, bool, WaitHandle_WaitOne_1, (WaitHandle * __this, TimeSpan timeout, bool exitContext, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11E68, WaitHandle_WaitOne_1__MethodInfo); DO_APP_FUNC(0x01C24340, bool, WaitHandle_WaitOne_2, (WaitHandle * __this, MethodInfo * method)); DO_APP_FUNC(0x01919D00, bool, WaitHandle_WaitOne_3, (WaitHandle * __this, int32_t millisecondsTimeout, MethodInfo * method)); DO_APP_FUNC(0x01C24360, bool, WaitHandle_WaitOne_4, (WaitHandle * __this, TimeSpan timeout, MethodInfo * method)); DO_APP_FUNC(0x01C24380, bool, WaitHandle_WaitOne_5, (WaitHandle * __this, int64_t timeout, bool exitContext, MethodInfo * method)); DO_APP_FUNC(0x01C244E0, bool, WaitHandle_InternalWaitOne, (SafeHandle * waitableSafeHandle, int64_t millisecondsTimeout, bool hasThreadAffinity, bool exitContext, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11E50, WaitHandle_InternalWaitOne__MethodInfo); DO_APP_FUNC(0x01C24600, bool, WaitHandle_WaitAll, (WaitHandle__Array * waitHandles, int32_t millisecondsTimeout, bool exitContext, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11DF8, WaitHandle_WaitAll__MethodInfo); DO_APP_FUNC(0x01C249A0, bool, WaitHandle_WaitAll_1, (WaitHandle__Array * waitHandles, int32_t millisecondsTimeout, MethodInfo * method)); DO_APP_FUNC(0x01C24A00, int32_t, WaitHandle_WaitAny, (WaitHandle__Array * waitHandles, int32_t millisecondsTimeout, bool exitContext, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11F00, WaitHandle_WaitAny__MethodInfo); DO_APP_FUNC(0x01C24DD0, int32_t, WaitHandle_WaitAny_1, (WaitHandle__Array * waitHandles, TimeSpan timeout, bool exitContext, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11EE0, WaitHandle_WaitAny_1__MethodInfo); DO_APP_FUNC(0x01C24F10, int32_t, WaitHandle_WaitAny_2, (WaitHandle__Array * waitHandles, MethodInfo * method)); DO_APP_FUNC(0x01C24F70, int32_t, WaitHandle_WaitAny_3, (WaitHandle__Array * waitHandles, int32_t millisecondsTimeout, MethodInfo * method)); DO_APP_FUNC(0x01C24FD0, void, WaitHandle_ThrowAbandonedMutexException, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11EA0, WaitHandle_ThrowAbandonedMutexException__MethodInfo); DO_APP_FUNC(0x01C25020, void, WaitHandle_ThrowAbandonedMutexException_1, (int32_t location, WaitHandle * handle, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11E90, WaitHandle_ThrowAbandonedMutexException_1__MethodInfo); DO_APP_FUNC(0x01C25080, void, WaitHandle_Close, (WaitHandle * __this, MethodInfo * method)); DO_APP_FUNC(0x01C250F0, void, WaitHandle_Dispose, (WaitHandle * __this, bool explicitDisposing, MethodInfo * method)); DO_APP_FUNC(0x01C25140, void, WaitHandle_Dispose_1, (WaitHandle * __this, MethodInfo * method)); DO_APP_FUNC(0x01C251B0, int32_t, WaitHandle_WaitOneNative, (SafeHandle * waitableSafeHandle, uint32_t millisecondsTimeout, bool hasThreadAffinity, bool exitContext, MethodInfo * method)); DO_APP_FUNC(0x01C25410, int32_t, WaitHandle_WaitMultiple, (WaitHandle__Array * waitHandles, int32_t millisecondsTimeout, bool exitContext, bool WaitAll, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11D50, WaitHandle_WaitMultiple__MethodInfo); DO_APP_FUNC(0x01C25A70, int32_t, WaitHandle_Wait_internal, (void * * handles, int32_t numHandles, bool waitAll, int32_t ms, MethodInfo * method)); DO_APP_FUNC(0x01C25A80, void, WaitHandle__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x01C25AC0, int32_t, Interlocked_CompareExchange, (int32_t location1, int32_t value, int32_t comparand, MethodInfo * method)); -DO_APP_FUNC(0x01C25AD0, int32_t, Interlocked_CompareExchange_1, (int32_t location1, int32_t value, int32_t comparand, bool succeeded, MethodInfo * method)); -DO_APP_FUNC(0x01C25AF0, void, Interlocked_CompareExchange_2, (Object * location1, Object * value, Object * comparand, Object * result, MethodInfo * method)); -DO_APP_FUNC(0x01C25B50, Object *, Interlocked_CompareExchange_3, (Object * location1, Object * value, Object * comparand, MethodInfo * method)); -DO_APP_FUNC(0x01C25BB0, float, Interlocked_CompareExchange_4, (float location1, float value, float comparand, MethodInfo * method)); -DO_APP_FUNC(0x01C25BE0, int32_t, Interlocked_Decrement, (int32_t location, MethodInfo * method)); -DO_APP_FUNC(0x01C25BF0, int32_t, Interlocked_Increment, (int32_t location, MethodInfo * method)); -DO_APP_FUNC(0x01C25C00, int64_t, Interlocked_Increment_1, (int64_t location, MethodInfo * method)); -DO_APP_FUNC(0x01C25C10, int32_t, Interlocked_Exchange, (int32_t location1, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x01C25C20, void, Interlocked_Exchange_1, (Object * location1, Object * value, Object * result, MethodInfo * method)); -DO_APP_FUNC(0x01C25C80, Object *, Interlocked_Exchange_2, (Object * location1, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x01C25CE0, float, Interlocked_Exchange_3, (float location1, float value, MethodInfo * method)); -DO_APP_FUNC(0x01C25D00, int64_t, Interlocked_CompareExchange_5, (int64_t location1, int64_t value, int64_t comparand, MethodInfo * method)); -DO_APP_FUNC(0x01C25D00, void *, Interlocked_CompareExchange_6, (void * location1, void * value, void * comparand, MethodInfo * method)); -DO_APP_FUNC(0x01C25D10, double, Interlocked_CompareExchange_7, (double location1, double value, double comparand, MethodInfo * method)); -DO_APP_FUNC(0x01C25D40, int64_t, Interlocked_Exchange_4, (int64_t location1, int64_t value, MethodInfo * method)); -DO_APP_FUNC(0x01C25D40, void *, Interlocked_Exchange_5, (void * location1, void * value, MethodInfo * method)); -DO_APP_FUNC(0x01C25D50, double, Interlocked_Exchange_6, (double location1, double value, MethodInfo * method)); -DO_APP_FUNC(0x01C25D70, int64_t, Interlocked_Read, (int64_t location, MethodInfo * method)); -DO_APP_FUNC(0x01C25D80, int32_t, Interlocked_Add, (int32_t location1, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x01C25AC0, int32_t, Interlocked_CompareExchange, (int32_t * location1, int32_t value, int32_t comparand, MethodInfo * method)); +DO_APP_FUNC(0x01C25AD0, int32_t, Interlocked_CompareExchange_1, (int32_t * location1, int32_t value, int32_t comparand, bool * succeeded, MethodInfo * method)); +DO_APP_FUNC(0x01C25AF0, void, Interlocked_CompareExchange_2, (Object * * location1, Object * * value, Object * * comparand, Object * * result, MethodInfo * method)); +DO_APP_FUNC(0x01C25B50, Object *, Interlocked_CompareExchange_3, (Object * * location1, Object * value, Object * comparand, MethodInfo * method)); +DO_APP_FUNC(0x01C25BB0, float, Interlocked_CompareExchange_4, (float * location1, float value, float comparand, MethodInfo * method)); +DO_APP_FUNC(0x01C25BE0, int32_t, Interlocked_Decrement, (int32_t * location, MethodInfo * method)); +DO_APP_FUNC(0x01C25BF0, int32_t, Interlocked_Increment, (int32_t * location, MethodInfo * method)); +DO_APP_FUNC(0x01C25C00, int64_t, Interlocked_Increment_1, (int64_t * location, MethodInfo * method)); +DO_APP_FUNC(0x01C25C10, int32_t, Interlocked_Exchange, (int32_t * location1, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x01C25C20, void, Interlocked_Exchange_1, (Object * * location1, Object * * value, Object * * result, MethodInfo * method)); +DO_APP_FUNC(0x01C25C80, Object *, Interlocked_Exchange_2, (Object * * location1, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x01C25CE0, float, Interlocked_Exchange_3, (float * location1, float value, MethodInfo * method)); +DO_APP_FUNC(0x01C25D00, int64_t, Interlocked_CompareExchange_5, (int64_t * location1, int64_t value, int64_t comparand, MethodInfo * method)); +DO_APP_FUNC(0x01C25D00, void *, Interlocked_CompareExchange_6, (void * * location1, void * value, void * comparand, MethodInfo * method)); +DO_APP_FUNC(0x01C25D10, double, Interlocked_CompareExchange_7, (double * location1, double value, double comparand, MethodInfo * method)); +DO_APP_FUNC(0x01C25D40, int64_t, Interlocked_Exchange_4, (int64_t * location1, int64_t value, MethodInfo * method)); +DO_APP_FUNC(0x01C25D40, void *, Interlocked_Exchange_5, (void * * location1, void * value, MethodInfo * method)); +DO_APP_FUNC(0x01C25D50, double, Interlocked_Exchange_6, (double * location1, double value, MethodInfo * method)); +DO_APP_FUNC(0x01C25D70, int64_t, Interlocked_Read, (int64_t * location, MethodInfo * method)); +DO_APP_FUNC(0x01C25D80, int32_t, Interlocked_Add, (int32_t * location1, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01C1E970, void, Interlocked_MemoryBarrier, (MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, LockQueue__ctor, (LockQueue * __this, ReaderWriterLock * rwlock, MethodInfo * method)); DO_APP_FUNC(0x01C25D90, bool, LockQueue_Wait, (LockQueue * __this, int32_t timeout, MethodInfo * method)); DO_APP_FUNC(0x01C26000, bool, LockQueue_get_IsEmpty, (LockQueue * __this, MethodInfo * method)); DO_APP_FUNC(0x01C26140, void, LockQueue_Pulse, (LockQueue * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C26340, void *, Mutex_CreateMutex_icall, (bool initiallyOwned, uint16_t * name, int32_t name_length, bool created, MethodInfo * method)); +DO_APP_FUNC(0x01C26340, void *, Mutex_CreateMutex_icall, (bool initiallyOwned, uint16_t * name, int32_t name_length, bool * created, MethodInfo * method)); DO_APP_FUNC(0x01C263F0, bool, Mutex_ReleaseMutex_internal, (void * handle, MethodInfo * method)); -DO_APP_FUNC(0x01C26410, void *, Mutex_CreateMutex_internal, (bool initiallyOwned, String * name, bool created, MethodInfo * method)); +DO_APP_FUNC(0x01C26410, void *, Mutex_CreateMutex_internal, (bool initiallyOwned, String * name, bool * created, MethodInfo * method)); DO_APP_FUNC(0x01C264C0, void, Mutex__ctor, (Mutex * __this, MethodInfo * method)); DO_APP_FUNC(0x01C26590, void, Mutex_ReleaseMutex, (Mutex * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C265C0, void *, NativeEventCalls_CreateEvent_internal, (bool manual, bool initial, String * name, int32_t errorCode, MethodInfo * method)); -DO_APP_FUNC(0x01C26650, void *, NativeEventCalls_CreateEvent_icall, (bool manual, bool initial, uint16_t * name, int32_t name_length, int32_t errorCode, MethodInfo * method)); +DO_APP_FUNC(0x01C265C0, void *, NativeEventCalls_CreateEvent_internal, (bool manual, bool initial, String * name, int32_t * errorCode, MethodInfo * method)); +DO_APP_FUNC(0x01C26650, void *, NativeEventCalls_CreateEvent_icall, (bool manual, bool initial, uint16_t * name, int32_t name_length, int32_t * errorCode, MethodInfo * method)); DO_APP_FUNC(0x01C266D0, bool, NativeEventCalls_SetEvent, (SafeWaitHandle * handle, MethodInfo * method)); DO_APP_FUNC(0x01C267B0, bool, NativeEventCalls_SetEvent_internal, (void * handle, MethodInfo * method)); DO_APP_FUNC(0x01C267D0, bool, NativeEventCalls_ResetEvent, (SafeWaitHandle * handle, MethodInfo * method)); @@ -4591,16 +5211,22 @@ DO_APP_FUNC(0x01C26AC0, bool, ReaderWriterLock_get_IsReaderLockHeld, (ReaderWrit DO_APP_FUNC(0x01C26CB0, bool, ReaderWriterLock_get_IsWriterLockHeld, (ReaderWriterLock * __this, MethodInfo * method)); DO_APP_FUNC(0x01C26E30, void, ReaderWriterLock_AcquireReaderLock, (ReaderWriterLock * __this, int32_t millisecondsTimeout, MethodInfo * method)); DO_APP_FUNC(0x01C26E40, void, ReaderWriterLock_AcquireReaderLock_1, (ReaderWriterLock * __this, int32_t millisecondsTimeout, int32_t initialLockCount, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11BA0, ReaderWriterLock_AcquireReaderLock_1__MethodInfo); DO_APP_FUNC(0x01C27370, void, ReaderWriterLock_AcquireWriterLock, (ReaderWriterLock * __this, int32_t millisecondsTimeout, MethodInfo * method)); DO_APP_FUNC(0x01C27380, void, ReaderWriterLock_AcquireWriterLock_1, (ReaderWriterLock * __this, int32_t millisecondsTimeout, int32_t initialLockCount, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11D08, ReaderWriterLock_AcquireWriterLock_1__MethodInfo); DO_APP_FUNC(0x01C27630, void, ReaderWriterLock_ReleaseReaderLock, (ReaderWriterLock * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11CE0, ReaderWriterLock_ReleaseReaderLock__MethodInfo); DO_APP_FUNC(0x01C27A90, void, ReaderWriterLock_ReleaseReaderLock_1, (ReaderWriterLock * __this, int32_t currentCount, int32_t releaseCount, MethodInfo * method)); DO_APP_FUNC(0x01C27BD0, void, ReaderWriterLock_ReleaseWriterLock, (ReaderWriterLock * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11CA8, ReaderWriterLock_ReleaseWriterLock__MethodInfo); DO_APP_FUNC(0x01C27DE0, void, ReaderWriterLock_ReleaseWriterLock_1, (ReaderWriterLock * __this, int32_t releaseCount, MethodInfo * method)); DO_APP_FUNC(0x01C27E40, bool, ReaderWriterLock_HasWriterLock, (ReaderWriterLock * __this, MethodInfo * method)); DO_APP_FUNC(0x01C27E90, void, RegisteredWaitHandle__ctor, (RegisteredWaitHandle * __this, WaitHandle * waitObject, WaitOrTimerCallback * callback, Object * state, TimeSpan timeout, bool executeOnlyOnce, MethodInfo * method)); DO_APP_FUNC(0x01C280E0, void, RegisteredWaitHandle_Wait, (RegisteredWaitHandle * __this, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12098, RegisteredWaitHandle_Wait__MethodInfo); DO_APP_FUNC(0x01C28910, void, RegisteredWaitHandle_DoCallBack, (RegisteredWaitHandle * __this, Object * timedOut, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11C78, RegisteredWaitHandle_DoCallBack__MethodInfo); DO_APP_FUNC(0x01C28BA0, bool, RegisteredWaitHandle_Unregister, (RegisteredWaitHandle * __this, WaitHandle * waitObject, MethodInfo * method)); DO_APP_FUNC(0x01C28DB0, void, InternalThread_Thread_free_internal, (InternalThread * __this, MethodInfo * method)); DO_APP_FUNC(0x01C28E40, void, InternalThread_Finalize, (InternalThread * __this, MethodInfo * method)); @@ -4610,17 +5236,20 @@ DO_APP_FUNC(0x01C28FC0, void, Timer__ctor, (Timer * __this, TimerCallback * call DO_APP_FUNC(0x01C28FE0, void, Timer__ctor_1, (Timer * __this, TimerCallback * callback, Object * state, TimeSpan dueTime, TimeSpan period, MethodInfo * method)); DO_APP_FUNC(0x01C290D0, void, Timer__ctor_2, (Timer * __this, TimerCallback * callback, MethodInfo * method)); DO_APP_FUNC(0x01C29100, void, Timer_Init, (Timer * __this, TimerCallback * callback, Object * state, int64_t dueTime, int64_t period, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11AB8, Timer_Init__MethodInfo); DO_APP_FUNC(0x01C29240, bool, Timer_Change, (Timer * __this, int32_t dueTime, int32_t period, MethodInfo * method)); DO_APP_FUNC(0x01C29260, bool, Timer_Change_1, (Timer * __this, TimeSpan dueTime, TimeSpan period, MethodInfo * method)); DO_APP_FUNC(0x01C29340, void, Timer_Dispose, (Timer * __this, MethodInfo * method)); DO_APP_FUNC(0x01C29380, bool, Timer_Change_2, (Timer * __this, int64_t dueTime, int64_t period, bool first, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11A80, Timer_Change_2__MethodInfo); DO_APP_FUNC(0x003AE050, void, Timer_KeepRootedWhileScheduled, (Timer * __this, MethodInfo * method)); DO_APP_FUNC(0x01C29620, int64_t, Timer_GetTimeMonotonic, (MethodInfo * method)); -DO_APP_FUNC(0x01C29630, int32_t, Timer_TimerComparer_System_Collections_IComparer_Compare, (Timer_TimerComparer__Boxed * __this, Object * x, Object * y, MethodInfo * method)); -DO_APP_FUNC(0x01C29730, int32_t, Timer_TimerComparer_Compare, (Timer_TimerComparer__Boxed * __this, Timer * tx, Timer * ty, MethodInfo * method)); +DO_APP_FUNC(0x01C29630, int32_t, Timer_TimerComparer_System_Collections_IComparer_Compare, (Timer_TimerComparer * __this, Object * x, Object * y, MethodInfo * method)); +DO_APP_FUNC(0x01C29730, int32_t, Timer_TimerComparer_Compare, (Timer_TimerComparer * __this, Timer * tx, Timer * ty, MethodInfo * method)); DO_APP_FUNC(0x01C297B0, void, Timer_Scheduler_InitScheduler, (Timer_Scheduler * __this, MethodInfo * method)); DO_APP_FUNC(0x01C29910, void, Timer_Scheduler_WakeupScheduler, (Timer_Scheduler * __this, MethodInfo * method)); DO_APP_FUNC(0x01C29930, void, Timer_Scheduler_SchedulerThread, (Timer_Scheduler * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11B58, Timer_Scheduler_SchedulerThread__MethodInfo); DO_APP_FUNC(0x01C29BC0, Timer_Scheduler *, Timer_Scheduler_get_Instance, (MethodInfo * method)); DO_APP_FUNC(0x01C29C20, void, Timer_Scheduler__ctor, (Timer_Scheduler * __this, MethodInfo * method)); DO_APP_FUNC(0x01C29EC0, void, Timer_Scheduler_Remove, (Timer_Scheduler * __this, Timer * timer, MethodInfo * method)); @@ -4628,16 +5257,17 @@ DO_APP_FUNC(0x01C2A010, void, Timer_Scheduler_Change, (Timer_Scheduler * __this, DO_APP_FUNC(0x01C2A370, void, Timer_Scheduler_Add, (Timer_Scheduler * __this, Timer * timer, MethodInfo * method)); DO_APP_FUNC(0x01C2A450, void, Timer_Scheduler_InternalRemove, (Timer_Scheduler * __this, Timer * timer, MethodInfo * method)); DO_APP_FUNC(0x01C2A480, void, Timer_Scheduler_TimerCB, (Object * o, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11928, Timer_Scheduler_TimerCB__MethodInfo); DO_APP_FUNC(0x01C2A500, void, Timer_Scheduler_FireTimer, (Timer_Scheduler * __this, Timer * timer, MethodInfo * method)); DO_APP_FUNC(0x01C2A5D0, int32_t, Timer_Scheduler_RunSchedulerLoop, (Timer_Scheduler * __this, MethodInfo * method)); DO_APP_FUNC(0x01C2A950, void, Timer_Scheduler__cctor, (MethodInfo * method)); DO_APP_FUNC(0x0084C240, void, TimerCallback__ctor, (TimerCallback * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EE650, void, TimerCallback_Invoke, (TimerCallback * __this, Object * state, MethodInfo * method)); -DO_APP_FUNC(0x01C2AA00, bool, Volatile_Read, (bool location, MethodInfo * method)); -DO_APP_FUNC(0x01C2AA10, int32_t, Volatile_Read_1, (int32_t location, MethodInfo * method)); -DO_APP_FUNC(0x01C2AA20, void, Volatile_Write, (int32_t location, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00EABC40, int64_t, Volatile_Read_2, (int64_t location, MethodInfo * method)); -DO_APP_FUNC(0x01C2AA30, void, Volatile_Write_1, (int64_t location, int64_t value, MethodInfo * method)); +DO_APP_FUNC(0x01C2AA00, bool, Volatile_Read, (bool * location, MethodInfo * method)); +DO_APP_FUNC(0x01C2AA10, int32_t, Volatile_Read_1, (int32_t * location, MethodInfo * method)); +DO_APP_FUNC(0x01C2AA20, void, Volatile_Write, (int32_t * location, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x00EABC40, int64_t, Volatile_Read_2, (int64_t * location, MethodInfo * method)); +DO_APP_FUNC(0x01C2AA30, void, Volatile_Write_1, (int64_t * location, int64_t value, MethodInfo * method)); DO_APP_FUNC(0x01C2AA40, void, TaskCanceledException__ctor, (TaskCanceledException * __this, MethodInfo * method)); DO_APP_FUNC(0x01C2AA90, void, TaskCanceledException__ctor_1, (TaskCanceledException * __this, Task * task, MethodInfo * method)); DO_APP_FUNC(0x01980BF0, void, TaskCanceledException__ctor_2, (TaskCanceledException * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); @@ -4646,6 +5276,7 @@ DO_APP_FUNC(0x01C2ABC0, void, TaskSchedulerException__ctor_1, (TaskSchedulerExce DO_APP_FUNC(0x01C2AC40, void, TaskSchedulerException__ctor_2, (TaskSchedulerException * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x01C2ACC0, IAsyncResult *, TaskToApm_Begin, (Task * task, AsyncCallback * callback, Object * state, MethodInfo * method)); DO_APP_FUNC(0x01C2AE10, void, TaskToApm_End, (IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11820, TaskToApm_End__MethodInfo); DO_APP_FUNC(0x01C2AF80, void, TaskToApm_InvokeCallbackWhenTaskCompletes, (Task * antecedent, AsyncCallback * callback, IAsyncResult * asyncResult, MethodInfo * method)); DO_APP_FUNC(0x01A34100, void, TaskToApm_TaskWrapperAsyncResult__ctor, (TaskToApm_TaskWrapperAsyncResult * __this, Task * task, Object * state, bool completedSynchronously, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, TaskToApm_TaskWrapperAsyncResult_System_IAsyncResult_get_AsyncState, (TaskToApm_TaskWrapperAsyncResult * __this, MethodInfo * method)); @@ -4654,37 +5285,40 @@ DO_APP_FUNC(0x01C2B150, bool, TaskToApm_TaskWrapperAsyncResult_System_IAsyncResu DO_APP_FUNC(0x01C2B1C0, WaitHandle *, TaskToApm_TaskWrapperAsyncResult_System_IAsyncResult_get_AsyncWaitHandle, (TaskToApm_TaskWrapperAsyncResult * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TaskToApm_c_DisplayClass3_0__ctor, (TaskToApm_c_DisplayClass3_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x01C1C980, void, TaskToApm_c_DisplayClass3_0__InvokeCallbackWhenTaskCompletes_b__0, (TaskToApm_c_DisplayClass3_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11808, TaskToApm_c_DisplayClass3_0__InvokeCallbackWhenTaskCompletes_b__0__MethodInfo); DO_APP_FUNC(0x01C2B210, Task *, ValueTask_get_CompletedTask, (MethodInfo * method)); -DO_APP_FUNC(0x01C2B2B0, void, ValueTask__ctor, (ValueTask__Boxed * __this, Task * task, MethodInfo * method)); -DO_APP_FUNC(0x01C2B320, void, ValueTask__ctor_1, (ValueTask__Boxed * __this, IValueTaskSource * source, int16_t token, MethodInfo * method)); -DO_APP_FUNC(0x01B50D70, void, ValueTask__ctor_2, (ValueTask__Boxed * __this, Object * obj, int16_t token, bool continueOnCapturedContext, MethodInfo * method)); -DO_APP_FUNC(0x011495F0, int32_t, ValueTask_GetHashCode, (ValueTask__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C2B390, bool, ValueTask_Equals, (ValueTask__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x01C2B440, bool, ValueTask_Equals_1, (ValueTask__Boxed * __this, ValueTask other, MethodInfo * method)); -DO_APP_FUNC(0x01C2B460, Task *, ValueTask_AsTask, (ValueTask__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C2B540, Task *, ValueTask_GetTaskForValueTaskSource, (ValueTask__Boxed * __this, IValueTaskSource * t, MethodInfo * method)); -DO_APP_FUNC(0x01C2B850, bool, ValueTask_get_IsCompleted, (ValueTask__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C2B900, bool, ValueTask_get_IsCompletedSuccessfully, (ValueTask__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C2B9C0, void, ValueTask_ThrowIfCompletedUnsuccessfully, (ValueTask__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01A4F500, ValueTaskAwaiter, ValueTask_GetAwaiter, (ValueTask__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B50C80, ConfiguredValueTaskAwaitable, ValueTask_ConfigureAwait, (ValueTask__Boxed * __this, bool continueOnCapturedContext, MethodInfo * method)); +DO_APP_FUNC(0x01C2B2B0, void, ValueTask__ctor, (ValueTask * __this, Task * task, MethodInfo * method)); +DO_APP_FUNC(0x01C2B320, void, ValueTask__ctor_1, (ValueTask * __this, IValueTaskSource * source, int16_t token, MethodInfo * method)); +DO_APP_FUNC(0x01B50D70, void, ValueTask__ctor_2, (ValueTask * __this, Object * obj, int16_t token, bool continueOnCapturedContext, MethodInfo * method)); +DO_APP_FUNC(0x011495F0, int32_t, ValueTask_GetHashCode, (ValueTask * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C2B390, bool, ValueTask_Equals, (ValueTask * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x01C2B440, bool, ValueTask_Equals_1, (ValueTask * __this, ValueTask other, MethodInfo * method)); +DO_APP_FUNC(0x01C2B460, Task *, ValueTask_AsTask, (ValueTask * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C2B540, Task *, ValueTask_GetTaskForValueTaskSource, (ValueTask * __this, IValueTaskSource * t, MethodInfo * method)); +DO_APP_FUNC(0x01C2B850, bool, ValueTask_get_IsCompleted, (ValueTask * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C2B900, bool, ValueTask_get_IsCompletedSuccessfully, (ValueTask * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C2B9C0, void, ValueTask_ThrowIfCompletedUnsuccessfully, (ValueTask * __this, MethodInfo * method)); +DO_APP_FUNC(0x01A4F500, ValueTaskAwaiter, ValueTask_GetAwaiter, (ValueTask * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B50C80, ConfiguredValueTaskAwaitable, ValueTask_ConfigureAwait, (ValueTask * __this, bool continueOnCapturedContext, MethodInfo * method)); DO_APP_FUNC(0x01C2BC60, void, ValueTask__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01C2BE40, void, ValueTask_ValueTaskSourceAsTask__ctor, (ValueTask_ValueTaskSourceAsTask * __this, IValueTaskSource * source, int16_t token, MethodInfo * method)); DO_APP_FUNC(0x01C2BFA0, void, ValueTask_ValueTaskSourceAsTask__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01C2C0D0, void, ValueTask_ValueTaskSourceAsTask_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ValueTask_ValueTaskSourceAsTask_c__ctor, (ValueTask_ValueTaskSourceAsTask_c * __this, MethodInfo * method)); DO_APP_FUNC(0x01C2C180, void, ValueTask_ValueTaskSourceAsTask_c___cctor_b__4_0, (ValueTask_ValueTaskSourceAsTask_c * __this, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11830, ValueTask_ValueTaskSourceAsTask_c___cctor_b__4_0__MethodInfo); DO_APP_FUNC(0x01C2C3E0, void, BeginEndAwaitableAdapter__ctor, (BeginEndAwaitableAdapter * __this, MethodInfo * method)); DO_APP_FUNC(0x01C2C450, void, BeginEndAwaitableAdapter__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01C2C580, void, BeginEndAwaitableAdapter_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BeginEndAwaitableAdapter_c__ctor, (BeginEndAwaitableAdapter_c * __this, MethodInfo * method)); DO_APP_FUNC(0x01C2C630, void, BeginEndAwaitableAdapter_c___cctor_b__2_0, (BeginEndAwaitableAdapter_c * __this, IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D116A0, BeginEndAwaitableAdapter_c___cctor_b__2_0__MethodInfo); DO_APP_FUNC(0x003BB3F0, ForceAsyncAwaiter, TaskAwaiters_ForceAsync, (Task * task, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, ForceAsyncAwaiter__ctor, (ForceAsyncAwaiter__Boxed * __this, Task * task, MethodInfo * method)); -DO_APP_FUNC(0x00471910, ForceAsyncAwaiter, ForceAsyncAwaiter_GetAwaiter, (ForceAsyncAwaiter__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0041AF00, bool, ForceAsyncAwaiter_get_IsCompleted, (ForceAsyncAwaiter__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C2C750, void, ForceAsyncAwaiter_GetResult, (ForceAsyncAwaiter__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C2C7F0, void, ForceAsyncAwaiter_UnsafeOnCompleted, (ForceAsyncAwaiter__Boxed * __this, Action * action, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, ForceAsyncAwaiter__ctor, (ForceAsyncAwaiter * __this, Task * task, MethodInfo * method)); +DO_APP_FUNC(0x00471910, ForceAsyncAwaiter, ForceAsyncAwaiter_GetAwaiter, (ForceAsyncAwaiter * __this, MethodInfo * method)); +DO_APP_FUNC(0x0041AF00, bool, ForceAsyncAwaiter_get_IsCompleted, (ForceAsyncAwaiter * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C2C750, void, ForceAsyncAwaiter_GetResult, (ForceAsyncAwaiter * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C2C7F0, void, ForceAsyncAwaiter_UnsafeOnCompleted, (ForceAsyncAwaiter * __this, Action * action, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, DebuggerSupport_get_LoggingOn, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, DebuggerSupport_TraceOperationCreation, (CausalityTraceLevel__Enum traceLevel, Task * task, String * operationName, uint64_t relatedContext, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, DebuggerSupport_TraceOperationCompletion, (CausalityTraceLevel__Enum traceLevel, Task * task, AsyncStatus__Enum status, MethodInfo * method)); @@ -4699,17 +5333,21 @@ DO_APP_FUNC(0x01C2CE90, void, DebuggerSupport__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01C2D080, void, Task__ctor, (Task * __this, bool canceled, TaskCreationOptions__Enum creationOptions, CancellationToken ct, MethodInfo * method)); DO_APP_FUNC(0x01C2D1F0, void, Task__ctor_1, (Task * __this, MethodInfo * method)); DO_APP_FUNC(0x01C2D200, void, Task__ctor_2, (Task * __this, Object * state, TaskCreationOptions__Enum creationOptions, bool promiseStyle, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D115D0, Task__ctor_2__MethodInfo); DO_APP_FUNC(0x01C2D340, void, Task__ctor_3, (Task * __this, Delegate * action, Object * state, Task * parent, CancellationToken cancellationToken, TaskCreationOptions__Enum creationOptions, InternalTaskOptions__Enum internalOptions, TaskScheduler * scheduler, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D115C0, Task__ctor_3__MethodInfo); DO_APP_FUNC(0x01C2D450, void, Task_TaskConstructorCore, (Task * __this, Delegate * action, Object * state, CancellationToken cancellationToken, TaskCreationOptions__Enum creationOptions, InternalTaskOptions__Enum internalOptions, TaskScheduler * scheduler, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D115A8, Task_TaskConstructorCore__MethodInfo); DO_APP_FUNC(0x01C2D7B0, void, Task_AssignCancellationToken, (Task * __this, CancellationToken cancellationToken, Task * antecedent, TaskContinuation * continuation, MethodInfo * method)); DO_APP_FUNC(0x01C2DCF0, void, Task_TaskCancelCallback, (Object * o, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11248, Task_TaskCancelCallback__MethodInfo); DO_APP_FUNC(0x01C2DE00, bool, Task_TrySetCanceled, (Task * __this, CancellationToken tokenToRecord, MethodInfo * method)); DO_APP_FUNC(0x01C2DE10, bool, Task_TrySetCanceled_1, (Task * __this, CancellationToken tokenToRecord, Object * cancellationException, MethodInfo * method)); DO_APP_FUNC(0x01C2DF90, bool, Task_TrySetException, (Task * __this, Object * exceptionObject, MethodInfo * method)); DO_APP_FUNC(0x01C2E000, TaskCreationOptions__Enum, Task_get_Options, (Task * __this, MethodInfo * method)); DO_APP_FUNC(0x01AA9AD0, TaskCreationOptions__Enum, Task_OptionsMethod, (int32_t flags, MethodInfo * method)); DO_APP_FUNC(0x01C2E050, bool, Task_AtomicStateUpdate, (Task * __this, int32_t newBits, int32_t illegalBits, MethodInfo * method)); -DO_APP_FUNC(0x01C2E140, bool, Task_AtomicStateUpdate_1, (Task * __this, int32_t newBits, int32_t illegalBits, int32_t oldFlags, MethodInfo * method)); +DO_APP_FUNC(0x01C2E140, bool, Task_AtomicStateUpdate_1, (Task * __this, int32_t newBits, int32_t illegalBits, int32_t * oldFlags, MethodInfo * method)); DO_APP_FUNC(0x01C2E250, void, Task_SetNotificationForWaitCompletion, (Task * __this, bool enabled, MethodInfo * method)); DO_APP_FUNC(0x01C2E340, bool, Task_NotifyDebuggerOfWaitCompletionIfNecessary, (Task * __this, MethodInfo * method)); DO_APP_FUNC(0x01C2E390, bool, Task_get_IsWaitNotificationEnabledOrNotRanToCompletion, (Task * __this, MethodInfo * method)); @@ -4720,6 +5358,7 @@ DO_APP_FUNC(0x01C2E400, bool, Task_MarkStarted, (Task * __this, MethodInfo * met DO_APP_FUNC(0x01C2E420, void, Task_AddNewChild, (Task * __this, MethodInfo * method)); DO_APP_FUNC(0x01C2E470, void, Task_DisregardChild, (Task * __this, MethodInfo * method)); DO_APP_FUNC(0x01C2E4A0, Task *, Task_InternalStartNew, (Task * creatingTask, Delegate * action, Object * state, CancellationToken cancellationToken, TaskScheduler * scheduler, TaskCreationOptions__Enum options, InternalTaskOptions__Enum internalOptions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11548, Task_InternalStartNew__MethodInfo); DO_APP_FUNC(0x01C2E680, int32_t, Task_get_Id, (Task * __this, MethodInfo * method)); DO_APP_FUNC(0x01C2E710, Task *, Task_get_InternalCurrent, (MethodInfo * method)); DO_APP_FUNC(0x01C2E7A0, Task *, Task_InternalCurrentIfAttached, (TaskCreationOptions__Enum creationOptions, MethodInfo * method)); @@ -4737,6 +5376,7 @@ DO_APP_FUNC(0x01C2EE30, bool, Task_IsCompletedMethod, (int32_t flags, MethodInfo DO_APP_FUNC(0x01C2EE40, bool, Task_get_IsCompletedSuccessfully, (Task * __this, MethodInfo * method)); DO_APP_FUNC(0x01C2EE60, TaskCreationOptions__Enum, Task_get_CreationOptions, (Task * __this, MethodInfo * method)); DO_APP_FUNC(0x01C2EEB0, WaitHandle *, Task_System_IAsyncResult_get_AsyncWaitHandle, (Task * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11590, Task_System_IAsyncResult_get_AsyncWaitHandle__MethodInfo); DO_APP_FUNC(0x003BB3E0, Object *, Task_get_AsyncState, (Task * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, Task_System_IAsyncResult_get_CompletedSynchronously, (Task * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3B0, TaskScheduler *, Task_get_ExecutingTaskScheduler, (Task * __this, MethodInfo * method)); @@ -4749,13 +5389,16 @@ DO_APP_FUNC(0x01C2F390, ExecutionContext *, Task_get_CapturedContext, (Task * __ DO_APP_FUNC(0x01C2F410, void, Task_set_CapturedContext, (Task * __this, ExecutionContext * value, MethodInfo * method)); DO_APP_FUNC(0x01C2F4F0, void, Task_Dispose, (Task * __this, MethodInfo * method)); DO_APP_FUNC(0x01C2F560, void, Task_Dispose_1, (Task * __this, bool disposing, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D114A0, Task_Dispose_1__MethodInfo); DO_APP_FUNC(0x01C2F6A0, void, Task_ScheduleAndStart, (Task * __this, bool needsProtection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11488, Task_ScheduleAndStart__MethodInfo); DO_APP_FUNC(0x01C2F830, void, Task_AddException, (Task * __this, Object * exceptionObject, MethodInfo * method)); DO_APP_FUNC(0x01C2F840, void, Task_AddException_1, (Task * __this, Object * exceptionObject, bool representsCancellation, MethodInfo * method)); DO_APP_FUNC(0x01C2FB40, AggregateException *, Task_GetExceptions, (Task * __this, bool includeTaskCanceledExceptions, MethodInfo * method)); DO_APP_FUNC(0x01C2FD20, ReadOnlyCollection_1_System_Runtime_ExceptionServices_ExceptionDispatchInfo_ *, Task_GetExceptionDispatchInfos, (Task * __this, MethodInfo * method)); DO_APP_FUNC(0x01C2FFB0, ExceptionDispatchInfo *, Task_GetCancellationExceptionDispatchInfo, (Task * __this, MethodInfo * method)); DO_APP_FUNC(0x01C2FFE0, void, Task_ThrowIfExceptional, (Task * __this, bool includeTaskCanceledExceptions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D114E8, Task_ThrowIfExceptional__MethodInfo); DO_APP_FUNC(0x01C30030, void, Task_UpdateExceptionObservedStatus, (Task * __this, MethodInfo * method)); DO_APP_FUNC(0x01C30150, bool, Task_get_IsExceptionObservedByParent, (Task * __this, MethodInfo * method)); DO_APP_FUNC(0x01C30170, bool, Task_get_IsDelegateInvoked, (Task * __this, MethodInfo * method)); @@ -4768,6 +5411,7 @@ DO_APP_FUNC(0x01C30CE0, void, Task_Execute, (Task * __this, MethodInfo * method) DO_APP_FUNC(0x01C30D20, void, Task_System_Threading_IThreadPoolWorkItem_ExecuteWorkItem, (Task * __this, MethodInfo * method)); DO_APP_FUNC(0x01C30D30, bool, Task_ExecuteEntry, (Task * __this, bool bPreventDoubleExecution, MethodInfo * method)); DO_APP_FUNC(0x01C30F00, void, Task_ExecutionContextCallback, (Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D111F0, Task_ExecutionContextCallback__MethodInfo); DO_APP_FUNC(0x01C30F90, void, Task_InnerInvoke, (Task * __this, MethodInfo * method)); DO_APP_FUNC(0x01C31030, void, Task_HandleException, (Task * __this, Exception * unhandledException, MethodInfo * method)); DO_APP_FUNC(0x003BB3F0, TaskAwaiter, Task_GetAwaiter, (Task * __this, MethodInfo * method)); @@ -4776,11 +5420,14 @@ DO_APP_FUNC(0x01C311A0, void, Task_SetContinuationForAwait, (Task * __this, Acti DO_APP_FUNC(0x01C31450, void, Task_Wait, (Task * __this, MethodInfo * method)); DO_APP_FUNC(0x01C31460, bool, Task_Wait_1, (Task * __this, int32_t millisecondsTimeout, MethodInfo * method)); DO_APP_FUNC(0x01C31470, bool, Task_Wait_2, (Task * __this, int32_t millisecondsTimeout, CancellationToken cancellationToken, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11460, Task_Wait_2__MethodInfo); DO_APP_FUNC(0x01C315B0, bool, Task_WrappedTryRunInline, (Task * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11458, Task_WrappedTryRunInline__MethodInfo); DO_APP_FUNC(0x01C31660, bool, Task_InternalWait, (Task * __this, int32_t millisecondsTimeout, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x01C31B20, bool, Task_SpinThenBlockingWait, (Task * __this, int32_t millisecondsTimeout, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x01C31FB0, bool, Task_SpinWait, (Task * __this, int32_t millisecondsTimeout, MethodInfo * method)); DO_APP_FUNC(0x01C32160, bool, Task_InternalCancel, (Task * __this, bool bCancelNonExecutingOnly, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11448, Task_InternalCancel__MethodInfo); DO_APP_FUNC(0x01C32370, void, Task_RecordInternalCancellationRequest, (Task * __this, MethodInfo * method)); DO_APP_FUNC(0x01C323A0, void, Task_RecordInternalCancellationRequest_1, (Task * __this, CancellationToken tokenToRecord, MethodInfo * method)); DO_APP_FUNC(0x01C324C0, void, Task_RecordInternalCancellationRequest_2, (Task * __this, CancellationToken tokenToRecord, Object * cancellationException, MethodInfo * method)); @@ -4791,9 +5438,12 @@ DO_APP_FUNC(0x01C32D90, void, Task_LogFinishCompletionNotification, (Task * __th DO_APP_FUNC(0x01C32DD0, Task *, Task_ContinueWith, (Task * __this, Action_1_System_Threading_Tasks_Task_ * continuationAction, MethodInfo * method)); DO_APP_FUNC(0x01C32E50, Task *, Task_ContinueWith_1, (Task * __this, Action_1_System_Threading_Tasks_Task_ * continuationAction, CancellationToken cancellationToken, TaskContinuationOptions__Enum continuationOptions, TaskScheduler * scheduler, MethodInfo * method)); DO_APP_FUNC(0x01C32E80, Task *, Task_ContinueWith_2, (Task * __this, Action_1_System_Threading_Tasks_Task_ * continuationAction, TaskScheduler * scheduler, CancellationToken cancellationToken, TaskContinuationOptions__Enum continuationOptions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11358, Task_ContinueWith_2__MethodInfo); DO_APP_FUNC(0x01C33060, Task *, Task_ContinueWith_3, (Task * __this, Action_2_System_Threading_Tasks_Task_Object_ * continuationAction, Object * state, CancellationToken cancellationToken, TaskContinuationOptions__Enum continuationOptions, TaskScheduler * scheduler, MethodInfo * method)); DO_APP_FUNC(0x01C33240, Task *, Task_ContinueWith_4, (Task * __this, Action_2_System_Threading_Tasks_Task_Object_ * continuationAction, Object * state, TaskScheduler * scheduler, CancellationToken cancellationToken, TaskContinuationOptions__Enum continuationOptions, MethodInfo * method)); -DO_APP_FUNC(0x01C33420, void, Task_CreationOptionsFromContinuationOptions, (TaskContinuationOptions__Enum continuationOptions, TaskCreationOptions__Enum creationOptions, InternalTaskOptions__Enum internalOptions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11410, Task_ContinueWith_4__MethodInfo); +DO_APP_FUNC(0x01C33420, void, Task_CreationOptionsFromContinuationOptions, (TaskContinuationOptions__Enum continuationOptions, TaskCreationOptions__Enum * creationOptions, InternalTaskOptions__Enum * internalOptions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D113E0, Task_CreationOptionsFromContinuationOptions__MethodInfo); DO_APP_FUNC(0x01C335A0, void, Task_ContinueWithCore, (Task * __this, Task * continuationTask, TaskScheduler * scheduler, CancellationToken cancellationToken, TaskContinuationOptions__Enum options, MethodInfo * method)); DO_APP_FUNC(0x01C338A0, void, Task_AddCompletionAction, (Task * __this, ITaskCompletionAction * action, MethodInfo * method)); DO_APP_FUNC(0x01C33910, void, Task_AddCompletionAction_1, (Task * __this, ITaskCompletionAction * action, bool addBeforeOthers, MethodInfo * method)); @@ -4802,18 +5452,23 @@ DO_APP_FUNC(0x01C33E10, bool, Task_AddTaskContinuation, (Task * __this, Object * DO_APP_FUNC(0x01C33F20, void, Task_RemoveContinuation, (Task * __this, Object * continuationObject, MethodInfo * method)); DO_APP_FUNC(0x01C342D0, Task *, Task_FromException, (Exception * exception, MethodInfo * method)); DO_APP_FUNC(0x01C343F0, Task *, Task_FromCancellation, (CancellationToken cancellationToken, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D112B8, Task_FromCancellation__MethodInfo); DO_APP_FUNC(0x01C344F0, Task *, Task_FromCanceled, (CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x01C34540, Task *, Task_Run, (Action * action, MethodInfo * method)); DO_APP_FUNC(0x01C34740, Task *, Task_Run_1, (Func_1_System_Threading_Tasks_Task_ * function, MethodInfo * method)); DO_APP_FUNC(0x01C347A0, Task *, Task_Run_2, (Func_1_System_Threading_Tasks_Task_ * function, CancellationToken cancellationToken, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11340, Task_Run_2__MethodInfo); DO_APP_FUNC(0x01C34A00, Task *, Task_Delay, (int32_t millisecondsDelay, MethodInfo * method)); DO_APP_FUNC(0x01C34A50, Task *, Task_Delay_1, (int32_t millisecondsDelay, CancellationToken cancellationToken, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D112F0, Task_Delay_1__MethodInfo); DO_APP_FUNC(0x01C34F60, Task_1_Task_ *, Task_WhenAny, (Task__Array * tasks, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11228, Task_WhenAny__MethodInfo); DO_APP_FUNC(0x01C35180, Task_1_Task_ *, Task_WhenAny_1, (IEnumerable_1_System_Threading_Tasks_Task_ * tasks, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11208, Task_WhenAny_1__MethodInfo); DO_APP_FUNC(0x01C35480, bool, Task_AddToActiveTasks, (Task * task, MethodInfo * method)); DO_APP_FUNC(0x01C356D0, void, Task_RemoveFromActiveTasks, (int32_t taskId, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Task_MarkAborted, (Task * __this, ThreadAbortException * e, MethodInfo * method)); -DO_APP_FUNC(0x01C358B0, void, Task_ExecuteWithThreadLocal, (Task * __this, Task * currentTaskSlot, MethodInfo * method)); +DO_APP_FUNC(0x01C358B0, void, Task_ExecuteWithThreadLocal, (Task * __this, Task * * currentTaskSlot, MethodInfo * method)); DO_APP_FUNC(0x01C35C00, void, Task__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01C36390, void, Task_ContingentProperties_SetCompleted, (Task_ContingentProperties * __this, MethodInfo * method)); DO_APP_FUNC(0x01C363C0, void, Task_ContingentProperties_UnregisterCancellationCallback, (Task_ContingentProperties * __this, MethodInfo * method)); @@ -4826,10 +5481,15 @@ DO_APP_FUNC(0x01C36640, void, Task_DelayPromise_Complete, (Task_DelayPromise * _ DO_APP_FUNC(0x01C36760, void, Task_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Task_c__ctor, (Task_c * __this, MethodInfo * method)); DO_APP_FUNC(0x01C36810, void, Task_c__Delay_b__247_0, (Task_c * __this, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11320, Task_c__Delay_b__247_0__MethodInfo); DO_APP_FUNC(0x01C36880, void, Task_c__Delay_b__247_1, (Task_c * __this, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11310, Task_c__Delay_b__247_1__MethodInfo); DO_APP_FUNC(0x01C368F0, Task_ContingentProperties *, Task_c___cctor_b__271_0, (Task_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11240, Task_c___cctor_b__271_0__MethodInfo); DO_APP_FUNC(0x01C36940, bool, Task_c___cctor_b__271_1, (Task_c * __this, Task * t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11238, Task_c___cctor_b__271_1__MethodInfo); DO_APP_FUNC(0x01C36970, bool, Task_c___cctor_b__271_2, (Task_c * __this, Object * tc, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11230, Task_c___cctor_b__271_2__MethodInfo); DO_APP_FUNC(0x003BCE40, void, CompletionActionInvoker__ctor, (CompletionActionInvoker * __this, ITaskCompletionAction * action, Task * completingTask, MethodInfo * method)); DO_APP_FUNC(0x01C36980, void, CompletionActionInvoker_System_Threading_IThreadPoolWorkItem_ExecuteWorkItem, (CompletionActionInvoker * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CompletionActionInvoker_MarkAborted, (CompletionActionInvoker * __this, ThreadAbortException * e, MethodInfo * method)); @@ -4845,35 +5505,41 @@ DO_APP_FUNC(0x01C36F90, void, StandardTaskContinuation_Run, (StandardTaskContinu DO_APP_FUNC(0x01C37100, void, SynchronizationContextAwaitTaskContinuation__ctor, (SynchronizationContextAwaitTaskContinuation * __this, SynchronizationContext * context, Action * action, bool flowExecutionContext, MethodInfo * method)); DO_APP_FUNC(0x01C37180, void, SynchronizationContextAwaitTaskContinuation_Run, (SynchronizationContextAwaitTaskContinuation * __this, Task * ignored, bool canInlineContinuationTask, MethodInfo * method)); DO_APP_FUNC(0x01C373F0, void, SynchronizationContextAwaitTaskContinuation_PostAction, (Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D111B0, SynchronizationContextAwaitTaskContinuation_PostAction__MethodInfo); DO_APP_FUNC(0x01C374A0, ContextCallback *, SynchronizationContextAwaitTaskContinuation_GetPostActionCallback, (MethodInfo * method)); DO_APP_FUNC(0x01C375E0, void, SynchronizationContextAwaitTaskContinuation__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01C37710, void, SynchronizationContextAwaitTaskContinuation_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SynchronizationContextAwaitTaskContinuation_c__ctor, (SynchronizationContextAwaitTaskContinuation_c * __this, MethodInfo * method)); DO_APP_FUNC(0x01C377C0, void, SynchronizationContextAwaitTaskContinuation_c___cctor_b__7_0, (SynchronizationContextAwaitTaskContinuation_c * __this, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11140, SynchronizationContextAwaitTaskContinuation_c___cctor_b__7_0__MethodInfo); DO_APP_FUNC(0x01C37100, void, TaskSchedulerAwaitTaskContinuation__ctor, (TaskSchedulerAwaitTaskContinuation * __this, TaskScheduler * scheduler, Action * action, bool flowExecutionContext, MethodInfo * method)); DO_APP_FUNC(0x01C37830, void, TaskSchedulerAwaitTaskContinuation_Run, (TaskSchedulerAwaitTaskContinuation * __this, Task * ignored, bool canInlineContinuationTask, MethodInfo * method)); DO_APP_FUNC(0x01C37C10, void, TaskSchedulerAwaitTaskContinuation_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TaskSchedulerAwaitTaskContinuation_c__ctor, (TaskSchedulerAwaitTaskContinuation_c * __this, MethodInfo * method)); DO_APP_FUNC(0x01C37CC0, void, TaskSchedulerAwaitTaskContinuation_c__Run_b__2_0, (TaskSchedulerAwaitTaskContinuation_c * __this, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11120, TaskSchedulerAwaitTaskContinuation_c__Run_b__2_0__MethodInfo); DO_APP_FUNC(0x01C37D50, void, AwaitTaskContinuation__ctor, (AwaitTaskContinuation * __this, Action * action, bool flowExecutionContext, MethodInfo * method)); DO_APP_FUNC(0x01C37E70, Task *, AwaitTaskContinuation_CreateTask, (AwaitTaskContinuation * __this, Action_1_Object_ * action, Object * state, TaskScheduler * scheduler, MethodInfo * method)); DO_APP_FUNC(0x01C37F60, void, AwaitTaskContinuation_Run, (AwaitTaskContinuation * __this, Task * ignored, bool canInlineContinuationTask, MethodInfo * method)); DO_APP_FUNC(0x01C38020, bool, AwaitTaskContinuation_get_IsValidLocationForInlining, (MethodInfo * method)); DO_APP_FUNC(0x01C38130, void, AwaitTaskContinuation_System_Threading_IThreadPoolWorkItem_ExecuteWorkItem, (AwaitTaskContinuation * __this, MethodInfo * method)); DO_APP_FUNC(0x01C381D0, void, AwaitTaskContinuation_InvokeAction, (Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11158, AwaitTaskContinuation_InvokeAction__MethodInfo); DO_APP_FUNC(0x01C38240, ContextCallback *, AwaitTaskContinuation_GetInvokeActionCallback, (MethodInfo * method)); -DO_APP_FUNC(0x01C38340, void, AwaitTaskContinuation_RunCallback, (AwaitTaskContinuation * __this, ContextCallback * callback, Object * state, Task * currentTask, MethodInfo * method)); -DO_APP_FUNC(0x01C38510, void, AwaitTaskContinuation_RunOrScheduleAction, (Action * action, bool allowInlining, Task * currentTask, MethodInfo * method)); +DO_APP_FUNC(0x01C38340, void, AwaitTaskContinuation_RunCallback, (AwaitTaskContinuation * __this, ContextCallback * callback, Object * state, Task * * currentTask, MethodInfo * method)); +DO_APP_FUNC(0x01C38510, void, AwaitTaskContinuation_RunOrScheduleAction, (Action * action, bool allowInlining, Task * * currentTask, MethodInfo * method)); DO_APP_FUNC(0x01C38690, void, AwaitTaskContinuation_UnsafeScheduleAction, (Action * action, MethodInfo * method)); DO_APP_FUNC(0x01C38760, void, AwaitTaskContinuation_ThrowAsyncIfNecessary, (Exception * exc, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AwaitTaskContinuation_MarkAborted, (AwaitTaskContinuation * __this, ThreadAbortException * e, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, TaskExceptionHolder__ctor, (TaskExceptionHolder * __this, Task * task, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, TaskExceptionHolder_ShouldFailFastOnUnobservedException, (MethodInfo * method)); DO_APP_FUNC(0x01C387A0, void, TaskExceptionHolder_Finalize, (TaskExceptionHolder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11090, TaskExceptionHolder_Finalize__MethodInfo); DO_APP_FUNC(0x01C389F0, bool, TaskExceptionHolder_get_ContainsFaultList, (TaskExceptionHolder * __this, MethodInfo * method)); DO_APP_FUNC(0x01C38A00, void, TaskExceptionHolder_Add, (TaskExceptionHolder * __this, Object * exceptionObject, bool representsCancellation, MethodInfo * method)); DO_APP_FUNC(0x01C38BD0, void, TaskExceptionHolder_SetCancellationException, (TaskExceptionHolder * __this, Object * exceptionObject, MethodInfo * method)); DO_APP_FUNC(0x01C38D80, void, TaskExceptionHolder_AddFaultException, (TaskExceptionHolder * __this, Object * exceptionObject, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D110C8, TaskExceptionHolder_AddFaultException__MethodInfo); DO_APP_FUNC(0x01C39340, void, TaskExceptionHolder_MarkAsUnhandled, (TaskExceptionHolder * __this, MethodInfo * method)); DO_APP_FUNC(0x01C393B0, void, TaskExceptionHolder_MarkAsHandled, (TaskExceptionHolder * __this, bool calledFromFinalizer, MethodInfo * method)); DO_APP_FUNC(0x01C39430, AggregateException *, TaskExceptionHolder_CreateExceptionObject, (TaskExceptionHolder * __this, bool calledFromFinalizer, Exception * includeThisException, MethodInfo * method)); @@ -4883,16 +5549,21 @@ DO_APP_FUNC(0x01C397E0, void, TaskExceptionHolder__cctor, (MethodInfo * method)) DO_APP_FUNC(0x01C39820, void, TaskFactory__ctor, (TaskFactory * __this, MethodInfo * method)); DO_APP_FUNC(0x010CD490, void, TaskFactory__ctor_1, (TaskFactory * __this, CancellationToken cancellationToken, TaskCreationOptions__Enum creationOptions, TaskContinuationOptions__Enum continuationOptions, TaskScheduler * scheduler, MethodInfo * method)); DO_APP_FUNC(0x01C398D0, void, TaskFactory_CheckCreationOptions, (TaskCreationOptions__Enum creationOptions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10FE8, TaskFactory_CheckCreationOptions__MethodInfo); DO_APP_FUNC(0x01C39940, Task *, TaskFactory_StartNew, (TaskFactory * __this, Action_1_Object_ * action, Object * state, CancellationToken cancellationToken, TaskCreationOptions__Enum creationOptions, TaskScheduler * scheduler, MethodInfo * method)); DO_APP_FUNC(0x01C39A30, Task *, TaskFactory_FromAsync, (TaskFactory * __this, Func_3_AsyncCallback_Object_IAsyncResult_ * beginMethod, Action_1_IAsyncResult_ * endMethod, Object * state, MethodInfo * method)); DO_APP_FUNC(0x01C39AB0, Task *, TaskFactory_FromAsync_1, (TaskFactory * __this, Func_3_AsyncCallback_Object_IAsyncResult_ * beginMethod, Action_1_IAsyncResult_ * endMethod, Object * state, TaskCreationOptions__Enum creationOptions, MethodInfo * method)); DO_APP_FUNC(0x01C39B20, void, TaskFactory_CheckFromAsyncOptions, (TaskCreationOptions__Enum creationOptions, bool hasBeginMethod, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10FD0, TaskFactory_CheckFromAsyncOptions__MethodInfo); DO_APP_FUNC(0x01C39C70, Task_1_Task_ *, TaskFactory_CommonCWAnyLogic, (IList_1_System_Threading_Tasks_Task_ * tasks, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11040, TaskFactory_CommonCWAnyLogic__MethodInfo); DO_APP_FUNC(0x01C39F60, void, TaskFactory_CheckMultiTaskContinuationOptions, (TaskContinuationOptions__Enum continuationOptions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11038, TaskFactory_CheckMultiTaskContinuationOptions__MethodInfo); DO_APP_FUNC(0x01C3A0B0, void, TaskFactory_CompleteOnInvokePromise__ctor, (TaskFactory_CompleteOnInvokePromise * __this, IList_1_System_Threading_Tasks_Task_ * tasks, MethodInfo * method)); DO_APP_FUNC(0x01C3A1D0, void, TaskFactory_CompleteOnInvokePromise_Invoke, (TaskFactory_CompleteOnInvokePromise * __this, Task * completingTask, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, TaskFactory_CompleteOnInvokePromise_get_InvokeMayRunArbitraryCode, (TaskFactory_CompleteOnInvokePromise * __this, MethodInfo * method)); DO_APP_FUNC(0x01C3A4F0, bool, TaskScheduler_TryRunInline, (TaskScheduler * __this, Task * task, bool taskWasPreviouslyQueued, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11000, TaskScheduler_TryRunInline__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, TaskScheduler_TryDequeue, (TaskScheduler * __this, Task * task, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TaskScheduler_NotifyWorkItemProgress, (TaskScheduler * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, TaskScheduler_get_RequiresAtomicStartTransition, (TaskScheduler * __this, MethodInfo * method)); @@ -4914,6 +5585,7 @@ DO_APP_FUNC(0x01C3B260, void, ThreadPoolTaskScheduler__cctor, (MethodInfo * meth DO_APP_FUNC(0x01C3B390, void, ThreadPoolTaskScheduler_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ThreadPoolTaskScheduler_c__ctor, (ThreadPoolTaskScheduler_c * __this, MethodInfo * method)); DO_APP_FUNC(0x01C3B440, void, ThreadPoolTaskScheduler_c___cctor_b__10_0, (ThreadPoolTaskScheduler_c * __this, Object * s, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10F98, ThreadPoolTaskScheduler_c___cctor_b__10_0__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, AsyncCausalityTracer_get_LoggingOn, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AsyncCausalityTracer_TraceOperationCreation, (CausalityTraceLevel__Enum traceLevel, int32_t taskId, String * operationName, uint64_t relatedContext, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AsyncCausalityTracer_TraceOperationCompletion, (CausalityTraceLevel__Enum traceLevel, int32_t taskId, AsyncCausalityStatus__Enum status, MethodInfo * method)); @@ -4922,22 +5594,37 @@ DO_APP_FUNC(0x003AE050, void, AsyncCausalityTracer_TraceSynchronousWorkCompletio DO_APP_FUNC(0x01C3B4C0, void, ASCIIEncoding__ctor, (ASCIIEncoding * __this, MethodInfo * method)); DO_APP_FUNC(0x01C3B4E0, void, ASCIIEncoding_SetDefaultFallbacks, (ASCIIEncoding * __this, MethodInfo * method)); DO_APP_FUNC(0x01C3B5B0, int32_t, ASCIIEncoding_GetByteCount, (ASCIIEncoding * __this, Char__Array * chars, int32_t index, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10F78, ASCIIEncoding_GetByteCount__MethodInfo); DO_APP_FUNC(0x01C3B780, int32_t, ASCIIEncoding_GetByteCount_1, (ASCIIEncoding * __this, String * chars, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10F70, ASCIIEncoding_GetByteCount_1__MethodInfo); DO_APP_FUNC(0x01C3B810, int32_t, ASCIIEncoding_GetByteCount_2, (ASCIIEncoding * __this, uint16_t * chars, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10F68, ASCIIEncoding_GetByteCount_2__MethodInfo); DO_APP_FUNC(0x01C3B920, int32_t, ASCIIEncoding_GetBytes, (ASCIIEncoding * __this, String * chars, int32_t charIndex, int32_t charCount, Byte__Array * bytes, int32_t byteIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10F58, ASCIIEncoding_GetBytes__MethodInfo); DO_APP_FUNC(0x01C3BC10, int32_t, ASCIIEncoding_GetBytes_1, (ASCIIEncoding * __this, Char__Array * chars, int32_t charIndex, int32_t charCount, Byte__Array * bytes, int32_t byteIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10F00, ASCIIEncoding_GetBytes_1__MethodInfo); DO_APP_FUNC(0x01C3BF20, int32_t, ASCIIEncoding_GetBytes_2, (ASCIIEncoding * __this, uint16_t * chars, int32_t charCount, uint8_t * bytes, int32_t byteCount, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10EF8, ASCIIEncoding_GetBytes_2__MethodInfo); DO_APP_FUNC(0x01C3C060, int32_t, ASCIIEncoding_GetCharCount, (ASCIIEncoding * __this, Byte__Array * bytes, int32_t index, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10EF0, ASCIIEncoding_GetCharCount__MethodInfo); DO_APP_FUNC(0x01C3C230, int32_t, ASCIIEncoding_GetCharCount_1, (ASCIIEncoding * __this, uint8_t * bytes, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10EE8, ASCIIEncoding_GetCharCount_1__MethodInfo); DO_APP_FUNC(0x01C3C340, int32_t, ASCIIEncoding_GetChars, (ASCIIEncoding * __this, Byte__Array * bytes, int32_t byteIndex, int32_t byteCount, Char__Array * chars, int32_t charIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10EE0, ASCIIEncoding_GetChars__MethodInfo); DO_APP_FUNC(0x01C3C650, int32_t, ASCIIEncoding_GetChars_1, (ASCIIEncoding * __this, uint8_t * bytes, int32_t byteCount, uint16_t * chars, int32_t charCount, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10ED8, ASCIIEncoding_GetChars_1__MethodInfo); DO_APP_FUNC(0x01C3C790, String *, ASCIIEncoding_GetString, (ASCIIEncoding * __this, Byte__Array * bytes, int32_t byteIndex, int32_t byteCount, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10ED0, ASCIIEncoding_GetString__MethodInfo); DO_APP_FUNC(0x01C3C980, int32_t, ASCIIEncoding_GetByteCount_3, (ASCIIEncoding * __this, uint16_t * chars, int32_t charCount, EncoderNLS * encoder, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10EC8, ASCIIEncoding_GetByteCount_3__MethodInfo); DO_APP_FUNC(0x01C3CD20, int32_t, ASCIIEncoding_GetBytes_3, (ASCIIEncoding * __this, uint16_t * chars, int32_t charCount, uint8_t * bytes, int32_t byteCount, EncoderNLS * encoder, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10F30, ASCIIEncoding_GetBytes_3__MethodInfo); DO_APP_FUNC(0x01C3D2E0, int32_t, ASCIIEncoding_GetCharCount_2, (ASCIIEncoding * __this, uint8_t * bytes, int32_t count, DecoderNLS * decoder, MethodInfo * method)); DO_APP_FUNC(0x01C3D480, int32_t, ASCIIEncoding_GetChars_2, (ASCIIEncoding * __this, uint8_t * bytes, int32_t byteCount, uint16_t * chars, int32_t charCount, DecoderNLS * decoder, MethodInfo * method)); DO_APP_FUNC(0x01C3D810, int32_t, ASCIIEncoding_GetMaxByteCount, (ASCIIEncoding * __this, int32_t charCount, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10F20, ASCIIEncoding_GetMaxByteCount__MethodInfo); DO_APP_FUNC(0x01C3D960, int32_t, ASCIIEncoding_GetMaxCharCount, (ASCIIEncoding * __this, int32_t byteCount, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10F18, ASCIIEncoding_GetMaxCharCount__MethodInfo); DO_APP_FUNC(0x01C3DAB0, Decoder *, ASCIIEncoding_GetDecoder, (ASCIIEncoding * __this, MethodInfo * method)); DO_APP_FUNC(0x01C3DB20, Encoder *, ASCIIEncoding_GetEncoder, (ASCIIEncoding * __this, MethodInfo * method)); DO_APP_FUNC(0x01C3DB90, void, ASCIIEncoding__cctor, (MethodInfo * method)); @@ -4949,11 +5636,15 @@ DO_APP_FUNC(0x00BE0B40, bool, Decoder_get_InternalHasFallbackBuffer, (Decoder * DO_APP_FUNC(0x01C3DE40, void, Decoder_Reset, (Decoder * __this, MethodInfo * method)); DO_APP_FUNC(0x01C3DF20, int32_t, Decoder_GetCharCount, (Decoder * __this, Byte__Array * bytes, int32_t index, int32_t count, bool flush, MethodInfo * method)); DO_APP_FUNC(0x01C3DF40, int32_t, Decoder_GetCharCount_1, (Decoder * __this, uint8_t * bytes, int32_t count, bool flush, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10E90, Decoder_GetCharCount_1__MethodInfo); DO_APP_FUNC(0x01C3E0E0, int32_t, Decoder_GetChars, (Decoder * __this, Byte__Array * bytes, int32_t byteIndex, int32_t byteCount, Char__Array * chars, int32_t charIndex, bool flush, MethodInfo * method)); DO_APP_FUNC(0x01C3E100, int32_t, Decoder_GetChars_1, (Decoder * __this, uint8_t * bytes, int32_t byteCount, uint16_t * chars, int32_t charCount, bool flush, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10E88, Decoder_GetChars_1__MethodInfo); DO_APP_FUNC(0x01C3E370, int32_t, Decoder_GetChars_2, (Decoder * __this, ReadOnlySpan_1_Byte_ bytes, Span_1_Char_ chars, bool flush, MethodInfo * method)); -DO_APP_FUNC(0x01C3E460, void, Decoder_Convert, (Decoder * __this, Byte__Array * bytes, int32_t byteIndex, int32_t byteCount, Char__Array * chars, int32_t charIndex, int32_t charCount, bool flush, int32_t bytesUsed, int32_t charsUsed, bool completed, MethodInfo * method)); -DO_APP_FUNC(0x01C3E870, void, Decoder_Convert_1, (Decoder * __this, uint8_t * bytes, int32_t byteCount, uint16_t * chars, int32_t charCount, bool flush, int32_t bytesUsed, int32_t charsUsed, bool completed, MethodInfo * method)); +DO_APP_FUNC(0x01C3E460, void, Decoder_Convert, (Decoder * __this, Byte__Array * bytes, int32_t byteIndex, int32_t byteCount, Char__Array * chars, int32_t charIndex, int32_t charCount, bool flush, int32_t * bytesUsed, int32_t * charsUsed, bool * completed, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10E78, Decoder_Convert__MethodInfo); +DO_APP_FUNC(0x01C3E870, void, Decoder_Convert_1, (Decoder * __this, uint8_t * bytes, int32_t byteCount, uint16_t * chars, int32_t charCount, bool flush, int32_t * bytesUsed, int32_t * charsUsed, bool * completed, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10E70, Decoder_Convert_1__MethodInfo); DO_APP_FUNC(0x01C3EAF0, void, InternalDecoderBestFitFallback__ctor, (InternalDecoderBestFitFallback * __this, Encoding * encoding, MethodInfo * method)); DO_APP_FUNC(0x01C3EB50, DecoderFallbackBuffer *, InternalDecoderBestFitFallback_CreateFallbackBuffer, (InternalDecoderBestFitFallback * __this, MethodInfo * method)); DO_APP_FUNC(0x007205E0, int32_t, InternalDecoderBestFitFallback_get_MaxCharCount, (InternalDecoderBestFitFallback * __this, MethodInfo * method)); @@ -4976,6 +5667,7 @@ DO_APP_FUNC(0x01C3F390, bool, DecoderExceptionFallbackBuffer_Fallback, (DecoderE DO_APP_FUNC(0x003CB690, uint16_t, DecoderExceptionFallbackBuffer_GetNextChar, (DecoderExceptionFallbackBuffer * __this, MethodInfo * method)); DO_APP_FUNC(0x003CB690, int32_t, DecoderExceptionFallbackBuffer_get_Remaining, (DecoderExceptionFallbackBuffer * __this, MethodInfo * method)); DO_APP_FUNC(0x01C3F3A0, void, DecoderExceptionFallbackBuffer_Throw, (DecoderExceptionFallbackBuffer * __this, Byte__Array * bytesUnknown, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10E10, DecoderExceptionFallbackBuffer_Throw__MethodInfo); DO_APP_FUNC(0x003AE050, void, DecoderExceptionFallbackBuffer__ctor, (DecoderExceptionFallbackBuffer * __this, MethodInfo * method)); DO_APP_FUNC(0x01C3F5B0, void, DecoderFallbackException__ctor, (DecoderFallbackException * __this, MethodInfo * method)); DO_APP_FUNC(0x01C3F600, void, DecoderFallbackException__ctor_1, (DecoderFallbackException * __this, String * message, Byte__Array * bytesUnknown, int32_t index, MethodInfo * method)); @@ -4986,20 +5678,29 @@ DO_APP_FUNC(0x003AE050, void, DecoderFallback__ctor, (DecoderFallback * __this, DO_APP_FUNC(0x01C3F820, void, DecoderFallbackBuffer_Reset, (DecoderFallbackBuffer * __this, MethodInfo * method)); DO_APP_FUNC(0x01C3F860, void, DecoderFallbackBuffer_InternalReset, (DecoderFallbackBuffer * __this, MethodInfo * method)); DO_APP_FUNC(0x01109100, void, DecoderFallbackBuffer_InternalInitialize, (DecoderFallbackBuffer * __this, uint8_t * byteStart, uint16_t * charEnd, MethodInfo * method)); -DO_APP_FUNC(0x01C3F880, bool, DecoderFallbackBuffer_InternalFallback, (DecoderFallbackBuffer * __this, Byte__Array * bytes, uint8_t * pBytes, uint16_t * chars, MethodInfo * method)); +DO_APP_FUNC(0x01C3F880, bool, DecoderFallbackBuffer_InternalFallback, (DecoderFallbackBuffer * __this, Byte__Array * bytes, uint8_t * pBytes, uint16_t * * chars, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10E00, DecoderFallbackBuffer_InternalFallback__MethodInfo); DO_APP_FUNC(0x01C3FAF0, int32_t, DecoderFallbackBuffer_InternalFallback_1, (DecoderFallbackBuffer * __this, Byte__Array * bytes, uint8_t * pBytes, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10DF0, DecoderFallbackBuffer_InternalFallback_1__MethodInfo); DO_APP_FUNC(0x01C3FD40, void, DecoderFallbackBuffer_ThrowLastBytesRecursive, (DecoderFallbackBuffer * __this, Byte__Array * bytesUnknown, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10E50, DecoderFallbackBuffer_ThrowLastBytesRecursive__MethodInfo); DO_APP_FUNC(0x003AE050, void, DecoderFallbackBuffer__ctor, (DecoderFallbackBuffer * __this, MethodInfo * method)); DO_APP_FUNC(0x01C3FF60, void, DecoderNLS__ctor, (DecoderNLS * __this, Encoding * encoding, MethodInfo * method)); DO_APP_FUNC(0x01C40040, void, DecoderNLS_Reset, (DecoderNLS * __this, MethodInfo * method)); DO_APP_FUNC(0x0197C690, int32_t, DecoderNLS_GetCharCount, (DecoderNLS * __this, Byte__Array * bytes, int32_t index, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x01C40060, int32_t, DecoderNLS_GetCharCount_1, (DecoderNLS * __this, Byte__Array * bytes, int32_t index, int32_t count, bool flush, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10E48, DecoderNLS_GetCharCount_1__MethodInfo); DO_APP_FUNC(0x01C40290, int32_t, DecoderNLS_GetCharCount_2, (DecoderNLS * __this, uint8_t * bytes, int32_t count, bool flush, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10E40, DecoderNLS_GetCharCount_2__MethodInfo); DO_APP_FUNC(0x0197C720, int32_t, DecoderNLS_GetChars, (DecoderNLS * __this, Byte__Array * bytes, int32_t byteIndex, int32_t byteCount, Char__Array * chars, int32_t charIndex, MethodInfo * method)); DO_APP_FUNC(0x01C403C0, int32_t, DecoderNLS_GetChars_1, (DecoderNLS * __this, Byte__Array * bytes, int32_t byteIndex, int32_t byteCount, Char__Array * chars, int32_t charIndex, bool flush, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10E38, DecoderNLS_GetChars_1__MethodInfo); DO_APP_FUNC(0x01C40710, int32_t, DecoderNLS_GetChars_2, (DecoderNLS * __this, uint8_t * bytes, int32_t byteCount, uint16_t * chars, int32_t charCount, bool flush, MethodInfo * method)); -DO_APP_FUNC(0x01C40870, void, DecoderNLS_Convert, (DecoderNLS * __this, Byte__Array * bytes, int32_t byteIndex, int32_t byteCount, Char__Array * chars, int32_t charIndex, int32_t charCount, bool flush, int32_t bytesUsed, int32_t charsUsed, bool completed, MethodInfo * method)); -DO_APP_FUNC(0x01C40C70, void, DecoderNLS_Convert_1, (DecoderNLS * __this, uint8_t * bytes, int32_t byteCount, uint16_t * chars, int32_t charCount, bool flush, int32_t bytesUsed, int32_t charsUsed, bool completed, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10E30, DecoderNLS_GetChars_2__MethodInfo); +DO_APP_FUNC(0x01C40870, void, DecoderNLS_Convert, (DecoderNLS * __this, Byte__Array * bytes, int32_t byteIndex, int32_t byteCount, Char__Array * chars, int32_t charIndex, int32_t charCount, bool flush, int32_t * bytesUsed, int32_t * charsUsed, bool * completed, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10E28, DecoderNLS_Convert__MethodInfo); +DO_APP_FUNC(0x01C40C70, void, DecoderNLS_Convert_1, (DecoderNLS * __this, uint8_t * bytes, int32_t byteCount, uint16_t * chars, int32_t charCount, bool flush, int32_t * bytesUsed, int32_t * charsUsed, bool * completed, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10E20, DecoderNLS_Convert_1__MethodInfo); DO_APP_FUNC(0x00424C10, bool, DecoderNLS_get_MustFlush, (DecoderNLS * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, DecoderNLS_get_HasState, (DecoderNLS * __this, MethodInfo * method)); DO_APP_FUNC(0x00987200, void, DecoderNLS_ClearMustFlush, (DecoderNLS * __this, MethodInfo * method)); @@ -5028,9 +5729,9 @@ DO_APP_FUNC(0x0195AAF0, int32_t, Encoder_GetByteCount, (Encoder * __this, uint16 DO_APP_FUNC_METHODINFO(0x03C976C0, Encoder_GetByteCount__MethodInfo); DO_APP_FUNC(0x0195ACB0, int32_t, Encoder_GetBytes, (Encoder * __this, uint16_t * chars, int32_t charCount, uint8_t * bytes, int32_t byteCount, bool flush, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C976D0, Encoder_GetBytes__MethodInfo); -DO_APP_FUNC(0x0195AF20, void, Encoder_Convert, (Encoder * __this, Char__Array * chars, int32_t charIndex, int32_t charCount, Byte__Array * bytes, int32_t byteIndex, int32_t byteCount, bool flush, int32_t charsUsed, int32_t bytesUsed, bool completed, MethodInfo * method)); +DO_APP_FUNC(0x0195AF20, void, Encoder_Convert, (Encoder * __this, Char__Array * chars, int32_t charIndex, int32_t charCount, Byte__Array * bytes, int32_t byteIndex, int32_t byteCount, bool flush, int32_t * charsUsed, int32_t * bytesUsed, bool * completed, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C976F0, Encoder_Convert__MethodInfo); -DO_APP_FUNC(0x0195B330, void, Encoder_Convert_1, (Encoder * __this, uint16_t * chars, int32_t charCount, uint8_t * bytes, int32_t byteCount, bool flush, int32_t charsUsed, int32_t bytesUsed, bool completed, MethodInfo * method)); +DO_APP_FUNC(0x0195B330, void, Encoder_Convert_1, (Encoder * __this, uint16_t * chars, int32_t charCount, uint8_t * bytes, int32_t byteCount, bool flush, int32_t * charsUsed, int32_t * bytesUsed, bool * completed, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C97650, Encoder_Convert_1__MethodInfo); DO_APP_FUNC(0x003BCBE0, void, InternalEncoderBestFitFallback__ctor, (InternalEncoderBestFitFallback * __this, Encoding * encoding, MethodInfo * method)); DO_APP_FUNC(0x0195B5B0, EncoderFallbackBuffer *, InternalEncoderBestFitFallback_CreateFallbackBuffer, (InternalEncoderBestFitFallback * __this, MethodInfo * method)); @@ -5072,7 +5773,7 @@ DO_APP_FUNC(0x0195C900, void, EncoderFallbackBuffer_Reset, (EncoderFallbackBuffe DO_APP_FUNC(0x0195C940, void, EncoderFallbackBuffer_InternalReset, (EncoderFallbackBuffer * __this, MethodInfo * method)); DO_APP_FUNC(0x0195C960, void, EncoderFallbackBuffer_InternalInitialize, (EncoderFallbackBuffer * __this, uint16_t * charStart, uint16_t * charEnd, EncoderNLS * encoder, bool setEncoder, MethodInfo * method)); DO_APP_FUNC(0x0195C9D0, uint16_t, EncoderFallbackBuffer_InternalGetNextChar, (EncoderFallbackBuffer * __this, MethodInfo * method)); -DO_APP_FUNC(0x0195CA10, bool, EncoderFallbackBuffer_InternalFallback, (EncoderFallbackBuffer * __this, uint16_t ch, uint16_t * chars, MethodInfo * method)); +DO_APP_FUNC(0x0195CA10, bool, EncoderFallbackBuffer_InternalFallback, (EncoderFallbackBuffer * __this, uint16_t ch, uint16_t * * chars, MethodInfo * method)); DO_APP_FUNC(0x0195CBE0, void, EncoderFallbackBuffer_ThrowLastCharRecursive, (EncoderFallbackBuffer * __this, int32_t charRecursive, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C975F0, EncoderFallbackBuffer_ThrowLastCharRecursive__MethodInfo); DO_APP_FUNC(0x003AE050, void, EncoderFallbackBuffer__ctor, (EncoderFallbackBuffer * __this, MethodInfo * method)); @@ -5086,9 +5787,9 @@ DO_APP_FUNC(0x0195D0F0, int32_t, EncoderNLS_GetBytes, (EncoderNLS * __this, Char DO_APP_FUNC_METHODINFO(0x03C97558, EncoderNLS_GetBytes__MethodInfo); DO_APP_FUNC(0x0195D440, int32_t, EncoderNLS_GetBytes_1, (EncoderNLS * __this, uint16_t * chars, int32_t charCount, uint8_t * bytes, int32_t byteCount, bool flush, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C97560, EncoderNLS_GetBytes_1__MethodInfo); -DO_APP_FUNC(0x0195D5A0, void, EncoderNLS_Convert, (EncoderNLS * __this, Char__Array * chars, int32_t charIndex, int32_t charCount, Byte__Array * bytes, int32_t byteIndex, int32_t byteCount, bool flush, int32_t charsUsed, int32_t bytesUsed, bool completed, MethodInfo * method)); +DO_APP_FUNC(0x0195D5A0, void, EncoderNLS_Convert, (EncoderNLS * __this, Char__Array * chars, int32_t charIndex, int32_t charCount, Byte__Array * bytes, int32_t byteIndex, int32_t byteCount, bool flush, int32_t * charsUsed, int32_t * bytesUsed, bool * completed, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C97570, EncoderNLS_Convert__MethodInfo); -DO_APP_FUNC(0x0195D9A0, void, EncoderNLS_Convert_1, (EncoderNLS * __this, uint16_t * chars, int32_t charCount, uint8_t * bytes, int32_t byteCount, bool flush, int32_t charsUsed, int32_t bytesUsed, bool completed, MethodInfo * method)); +DO_APP_FUNC(0x0195D9A0, void, EncoderNLS_Convert_1, (EncoderNLS * __this, uint16_t * chars, int32_t charCount, uint8_t * bytes, int32_t byteCount, bool flush, int32_t * charsUsed, int32_t * bytesUsed, bool * completed, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C97578, EncoderNLS_Convert_1__MethodInfo); DO_APP_FUNC(0x003BB3B0, Encoding *, EncoderNLS_get_Encoding, (EncoderNLS * __this, MethodInfo * method)); DO_APP_FUNC(0x00594F20, bool, EncoderNLS_get_MustFlush, (EncoderNLS * __this, MethodInfo * method)); @@ -5247,7 +5948,7 @@ DO_APP_FUNC(0x01965DF0, void, StringBuilder_Insert_2, (StringBuilder * __this, i DO_APP_FUNC_METHODINFO(0x03C97098, StringBuilder_Insert_2__MethodInfo); DO_APP_FUNC(0x019664A0, void, StringBuilder_ReplaceAllInChunk, (StringBuilder * __this, Int32__Array * replacements, int32_t replacementsCount, StringBuilder * sourceChunk, int32_t removeCount, String * value, MethodInfo * method)); DO_APP_FUNC(0x01966680, bool, StringBuilder_StartsWith, (StringBuilder * __this, StringBuilder * chunk, int32_t indexInChunk, int32_t count, String * value, MethodInfo * method)); -DO_APP_FUNC(0x01966770, void, StringBuilder_ReplaceInPlaceAtChunk, (StringBuilder * __this, StringBuilder * chunk, int32_t indexInChunk, uint16_t * value, int32_t count, MethodInfo * method)); +DO_APP_FUNC(0x01966770, void, StringBuilder_ReplaceInPlaceAtChunk, (StringBuilder * __this, StringBuilder * * chunk, int32_t * indexInChunk, uint16_t * value, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x019668F0, void, StringBuilder_ThreadSafeCopy, (uint16_t * sourcePtr, Char__Array * destination, int32_t destinationIndex, int32_t count, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C970A8, StringBuilder_ThreadSafeCopy__MethodInfo); DO_APP_FUNC(0x019669F0, void, StringBuilder_ThreadSafeCopy_1, (Char__Array * source, int32_t sourceIndex, Span_1_Char_ destination, int32_t destinationIndex, int32_t count, MethodInfo * method)); @@ -5258,10 +5959,10 @@ DO_APP_FUNC(0x01966C90, StringBuilder *, StringBuilder_Next, (StringBuilder * __ DO_APP_FUNC(0x01966CF0, void, StringBuilder_ExpandByABlock, (StringBuilder * __this, int32_t minBlockCharCount, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C970D0, StringBuilder_ExpandByABlock__MethodInfo); DO_APP_FUNC(0x01966FD0, void, StringBuilder__ctor_7, (StringBuilder * __this, StringBuilder * from, MethodInfo * method)); -DO_APP_FUNC(0x019670B0, void, StringBuilder_MakeRoom, (StringBuilder * __this, int32_t index, int32_t count, StringBuilder * chunk, int32_t indexInChunk, bool doNotMoveFollowingChars, MethodInfo * method)); +DO_APP_FUNC(0x019670B0, void, StringBuilder_MakeRoom, (StringBuilder * __this, int32_t index, int32_t count, StringBuilder * * chunk, int32_t * indexInChunk, bool doNotMoveFollowingChars, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C97040, StringBuilder_MakeRoom__MethodInfo); DO_APP_FUNC(0x01967610, void, StringBuilder__ctor_8, (StringBuilder * __this, int32_t size, int32_t maxCapacity, StringBuilder * previousBlock, MethodInfo * method)); -DO_APP_FUNC(0x01967730, void, StringBuilder_Remove_1, (StringBuilder * __this, int32_t startIndex, int32_t count, StringBuilder * chunk, int32_t indexInChunk, MethodInfo * method)); +DO_APP_FUNC(0x01967730, void, StringBuilder_Remove_1, (StringBuilder * __this, int32_t startIndex, int32_t count, StringBuilder * * chunk, int32_t * indexInChunk, MethodInfo * method)); DO_APP_FUNC(0x01967AC0, StringBuilder *, StringBuilderCache_Acquire, (int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x01967BF0, void, StringBuilderCache_Release, (StringBuilder * sb, MethodInfo * method)); DO_APP_FUNC(0x01967D20, String *, StringBuilderCache_GetStringAndRelease, (StringBuilder * sb, MethodInfo * method)); @@ -5407,9 +6108,9 @@ DO_APP_FUNC(0x0196F7D0, int32_t, UTF8Encoding_GetBytes_3, (UTF8Encoding * __this DO_APP_FUNC_METHODINFO(0x03C96CC8, UTF8Encoding_GetBytes_3__MethodInfo); DO_APP_FUNC(0x019700D0, int32_t, UTF8Encoding_GetCharCount_2, (UTF8Encoding * __this, uint8_t * bytes, int32_t count, DecoderNLS * baseDecoder, MethodInfo * method)); DO_APP_FUNC(0x01970620, int32_t, UTF8Encoding_GetChars_2, (UTF8Encoding * __this, uint8_t * bytes, int32_t byteCount, uint16_t * chars, int32_t charCount, DecoderNLS * baseDecoder, MethodInfo * method)); -DO_APP_FUNC(0x01971020, bool, UTF8Encoding_FallbackInvalidByteSequence, (UTF8Encoding * __this, uint8_t * pSrc, int32_t ch, DecoderFallbackBuffer * fallback, uint16_t * pTarget, MethodInfo * method)); +DO_APP_FUNC(0x01971020, bool, UTF8Encoding_FallbackInvalidByteSequence, (UTF8Encoding * __this, uint8_t * * pSrc, int32_t ch, DecoderFallbackBuffer * fallback, uint16_t * * pTarget, MethodInfo * method)); DO_APP_FUNC(0x019710A0, int32_t, UTF8Encoding_FallbackInvalidByteSequence_1, (UTF8Encoding * __this, uint8_t * pSrc, int32_t ch, DecoderFallbackBuffer * fallback, MethodInfo * method)); -DO_APP_FUNC(0x019710F0, Byte__Array *, UTF8Encoding_GetBytesUnknown, (UTF8Encoding * __this, uint8_t * pSrc, int32_t ch, MethodInfo * method)); +DO_APP_FUNC(0x019710F0, Byte__Array *, UTF8Encoding_GetBytesUnknown, (UTF8Encoding * __this, uint8_t * * pSrc, int32_t ch, MethodInfo * method)); DO_APP_FUNC(0x01971360, Decoder *, UTF8Encoding_GetDecoder, (UTF8Encoding * __this, MethodInfo * method)); DO_APP_FUNC(0x019713D0, Encoder *, UTF8Encoding_GetEncoder, (UTF8Encoding * __this, MethodInfo * method)); DO_APP_FUNC(0x01971440, int32_t, UTF8Encoding_GetMaxByteCount, (UTF8Encoding * __this, int32_t charCount, MethodInfo * method)); @@ -5475,20 +6176,20 @@ DO_APP_FUNC(0x01976320, void, UnicodeEncoding__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01976670, void, UnicodeEncoding_Decoder__ctor, (UnicodeEncoding_Decoder * __this, UnicodeEncoding * encoding, MethodInfo * method)); DO_APP_FUNC(0x01976680, void, UnicodeEncoding_Decoder_Reset, (UnicodeEncoding_Decoder * __this, MethodInfo * method)); DO_APP_FUNC(0x019766B0, bool, UnicodeEncoding_Decoder_get_HasState, (UnicodeEncoding_Decoder * __this, MethodInfo * method)); -DO_APP_FUNC(0x019766D0, void, ValueStringBuilder__ctor, (ValueStringBuilder__Boxed * __this, Span_1_Char_ initialBuffer, MethodInfo * method)); -DO_APP_FUNC(0x003BC2E0, int32_t, ValueStringBuilder_get_Length, (ValueStringBuilder__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x019766E0, uint16_t, ValueStringBuilder_get_Item, (ValueStringBuilder__Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01976700, String *, ValueStringBuilder_ToString, (ValueStringBuilder__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x019767E0, bool, ValueStringBuilder_TryCopyTo, (ValueStringBuilder__Boxed * __this, Span_1_Char_ destination, int32_t charsWritten, MethodInfo * method)); -DO_APP_FUNC(0x01976940, void, ValueStringBuilder_Append, (ValueStringBuilder__Boxed * __this, uint16_t c, MethodInfo * method)); -DO_APP_FUNC(0x019769C0, void, ValueStringBuilder_Append_1, (ValueStringBuilder__Boxed * __this, String * s, MethodInfo * method)); -DO_APP_FUNC(0x01976A60, void, ValueStringBuilder_AppendSlow, (ValueStringBuilder__Boxed * __this, String * s, MethodInfo * method)); -DO_APP_FUNC(0x01976C00, void, ValueStringBuilder_Append_2, (ValueStringBuilder__Boxed * __this, uint16_t c, int32_t count, MethodInfo * method)); -DO_APP_FUNC(0x01976CE0, void, ValueStringBuilder_Append_3, (ValueStringBuilder__Boxed * __this, uint16_t * value, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01976DC0, Span_1_Char_, ValueStringBuilder_AppendSpan, (ValueStringBuilder__Boxed * __this, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01976EA0, void, ValueStringBuilder_GrowAndAppend, (ValueStringBuilder__Boxed * __this, uint16_t c, MethodInfo * method)); -DO_APP_FUNC(0x01976EE0, void, ValueStringBuilder_Grow, (ValueStringBuilder__Boxed * __this, int32_t requiredAdditionalCapacity, MethodInfo * method)); -DO_APP_FUNC(0x01977120, void, ValueStringBuilder_Dispose, (ValueStringBuilder__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x019766D0, void, ValueStringBuilder__ctor, (ValueStringBuilder * __this, Span_1_Char_ initialBuffer, MethodInfo * method)); +DO_APP_FUNC(0x003BC2E0, int32_t, ValueStringBuilder_get_Length, (ValueStringBuilder * __this, MethodInfo * method)); +DO_APP_FUNC(0x019766E0, uint16_t *, ValueStringBuilder_get_Item, (ValueStringBuilder * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x01976700, String *, ValueStringBuilder_ToString, (ValueStringBuilder * __this, MethodInfo * method)); +DO_APP_FUNC(0x019767E0, bool, ValueStringBuilder_TryCopyTo, (ValueStringBuilder * __this, Span_1_Char_ destination, int32_t * charsWritten, MethodInfo * method)); +DO_APP_FUNC(0x01976940, void, ValueStringBuilder_Append, (ValueStringBuilder * __this, uint16_t c, MethodInfo * method)); +DO_APP_FUNC(0x019769C0, void, ValueStringBuilder_Append_1, (ValueStringBuilder * __this, String * s, MethodInfo * method)); +DO_APP_FUNC(0x01976A60, void, ValueStringBuilder_AppendSlow, (ValueStringBuilder * __this, String * s, MethodInfo * method)); +DO_APP_FUNC(0x01976C00, void, ValueStringBuilder_Append_2, (ValueStringBuilder * __this, uint16_t c, int32_t count, MethodInfo * method)); +DO_APP_FUNC(0x01976CE0, void, ValueStringBuilder_Append_3, (ValueStringBuilder * __this, uint16_t * value, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x01976DC0, Span_1_Char_, ValueStringBuilder_AppendSpan, (ValueStringBuilder * __this, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x01976EA0, void, ValueStringBuilder_GrowAndAppend, (ValueStringBuilder * __this, uint16_t c, MethodInfo * method)); +DO_APP_FUNC(0x01976EE0, void, ValueStringBuilder_Grow, (ValueStringBuilder * __this, int32_t requiredAdditionalCapacity, MethodInfo * method)); +DO_APP_FUNC(0x01977120, void, ValueStringBuilder_Dispose, (ValueStringBuilder * __this, MethodInfo * method)); DO_APP_FUNC(0x019771C0, void, Encoding__ctor, (Encoding * __this, MethodInfo * method)); DO_APP_FUNC(0x019771E0, void, Encoding__ctor_1, (Encoding * __this, int32_t codePage, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C98CB0, Encoding__ctor_1__MethodInfo); @@ -5632,9 +6333,9 @@ DO_APP_FUNC(0x0197E150, int32_t, Normalization_Fetch, (StringBuilder * sb, Strin DO_APP_FUNC(0x0197E1A0, int32_t, Normalization_TryComposeWithPreviousStarter, (StringBuilder * sb, String * s, int32_t current, MethodInfo * method)); DO_APP_FUNC(0x0197E5A0, int32_t, Normalization_TryCompose, (int32_t i, int32_t starter, int32_t candidate, MethodInfo * method)); DO_APP_FUNC(0x0197E700, String *, Normalization_Decompose, (String * source, int32_t checkType, MethodInfo * method)); -DO_APP_FUNC(0x0197E7A0, void, Normalization_Decompose_1, (String * source, StringBuilder * sb, int32_t checkType, MethodInfo * method)); -DO_APP_FUNC(0x0197E920, void, Normalization_ReorderCanonical, (String * src, StringBuilder * sb, int32_t start, MethodInfo * method)); -DO_APP_FUNC(0x0197EBE0, void, Normalization_DecomposeChar, (StringBuilder * sb, Int32__Array * buf, String * s, int32_t i, int32_t checkType, int32_t start, MethodInfo * method)); +DO_APP_FUNC(0x0197E7A0, void, Normalization_Decompose_1, (String * source, StringBuilder * * sb, int32_t checkType, MethodInfo * method)); +DO_APP_FUNC(0x0197E920, void, Normalization_ReorderCanonical, (String * src, StringBuilder * * sb, int32_t start, MethodInfo * method)); +DO_APP_FUNC(0x0197EBE0, void, Normalization_DecomposeChar, (StringBuilder * * sb, Int32__Array * * buf, String * s, int32_t i, int32_t checkType, int32_t * start, MethodInfo * method)); DO_APP_FUNC(0x0197EF00, NormalizationCheck__Enum, Normalization_QuickCheck, (uint16_t c, int32_t type, MethodInfo * method)); DO_APP_FUNC(0x0197F040, int32_t, Normalization_GetCanonicalHangul, (int32_t s, Int32__Array * buf, int32_t bufIdx, MethodInfo * method)); DO_APP_FUNC(0x0197F170, int32_t, Normalization_GetCanonical, (int32_t c, Int32__Array * buf, int32_t bufIdx, int32_t checkType, MethodInfo * method)); @@ -5642,10 +6343,10 @@ DO_APP_FUNC(0x0197F510, bool, Normalization_IsNormalized, (String * source, Norm DO_APP_FUNC(0x0197F5E0, bool, Normalization_IsNormalized_1, (String * source, int32_t type, MethodInfo * method)); DO_APP_FUNC(0x0197FAD0, String *, Normalization_Normalize, (String * source, NormalizationForm__Enum normalizationForm, MethodInfo * method)); DO_APP_FUNC(0x0197FBA0, String *, Normalization_Normalize_1, (String * source, int32_t type, MethodInfo * method)); -DO_APP_FUNC(0x0197FCB0, void, Normalization_load_normalization_resource, (void * props, void * mappedChars, void * charMapIndex, void * helperIndex, void * mapIdxToComposite, void * combiningClass, MethodInfo * method)); +DO_APP_FUNC(0x0197FCB0, void, Normalization_load_normalization_resource, (void * * props, void * * mappedChars, void * * charMapIndex, void * * helperIndex, void * * mapIdxToComposite, void * * combiningClass, MethodInfo * method)); DO_APP_FUNC(0x0197FD00, void, Normalization__cctor, (MethodInfo * method)); DO_APP_FUNC(0x0197FFA0, Encoding *, EncodingHelper_get_UTF8Unmarked, (MethodInfo * method)); -DO_APP_FUNC(0x019802C0, String *, EncodingHelper_InternalCodePage, (int32_t code_page, MethodInfo * method)); +DO_APP_FUNC(0x019802C0, String *, EncodingHelper_InternalCodePage, (int32_t * code_page, MethodInfo * method)); DO_APP_FUNC(0x019802D0, Encoding *, EncodingHelper_GetDefaultEncoding, (MethodInfo * method)); DO_APP_FUNC(0x019803E0, Object *, EncodingHelper_InvokeI18N, (String * name, Object__Array * args, MethodInfo * method)); DO_APP_FUNC(0x01980B20, void, EncodingHelper__cctor, (MethodInfo * method)); @@ -5655,15 +6356,15 @@ DO_APP_FUNC(0x01980BE0, void, XmlSyntaxException__ctor_2, (XmlSyntaxException * DO_APP_FUNC(0x01980BF0, void, XmlSyntaxException__ctor_3, (XmlSyntaxException * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x01980C70, void, SecurityDocument__ctor, (SecurityDocument * __this, int32_t numData, MethodInfo * method)); DO_APP_FUNC(0x01980D10, void, SecurityDocument_GuaranteeSize, (SecurityDocument * __this, int32_t size, MethodInfo * method)); -DO_APP_FUNC(0x01980E10, void, SecurityDocument_AddString, (SecurityDocument * __this, String * str, int32_t position, MethodInfo * method)); -DO_APP_FUNC(0x01980F50, void, SecurityDocument_AppendString, (SecurityDocument * __this, String * str, int32_t position, MethodInfo * method)); +DO_APP_FUNC(0x01980E10, void, SecurityDocument_AddString, (SecurityDocument * __this, String * str, int32_t * position, MethodInfo * method)); +DO_APP_FUNC(0x01980F50, void, SecurityDocument_AppendString, (SecurityDocument * __this, String * str, int32_t * position, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C98AF0, SecurityDocument_AppendString__MethodInfo); DO_APP_FUNC(0x01981000, int32_t, SecurityDocument_EncodedStringSize, (String * str, MethodInfo * method)); -DO_APP_FUNC(0x01981020, String *, SecurityDocument_GetString, (SecurityDocument * __this, int32_t position, bool bCreate, MethodInfo * method)); -DO_APP_FUNC(0x01981500, void, SecurityDocument_AddToken, (SecurityDocument * __this, uint8_t b, int32_t position, MethodInfo * method)); +DO_APP_FUNC(0x01981020, String *, SecurityDocument_GetString, (SecurityDocument * __this, int32_t * position, bool bCreate, MethodInfo * method)); +DO_APP_FUNC(0x01981500, void, SecurityDocument_AddToken, (SecurityDocument * __this, uint8_t b, int32_t * position, MethodInfo * method)); DO_APP_FUNC(0x01981560, SecurityElement *, SecurityDocument_GetRootElement, (SecurityDocument * __this, MethodInfo * method)); DO_APP_FUNC(0x01981590, SecurityElement *, SecurityDocument_GetElement, (SecurityDocument * __this, int32_t position, bool bCreate, MethodInfo * method)); -DO_APP_FUNC(0x019815B0, SecurityElement *, SecurityDocument_InternalGetElement, (SecurityDocument * __this, int32_t position, bool bCreate, MethodInfo * method)); +DO_APP_FUNC(0x019815B0, SecurityElement *, SecurityDocument_InternalGetElement, (SecurityDocument * __this, int32_t * position, bool bCreate, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C98AA8, SecurityDocument_InternalGetElement__MethodInfo); DO_APP_FUNC(0x003AE050, void, CodeAccessPermission__ctor, (CodeAccessPermission * __this, MethodInfo * method)); DO_APP_FUNC(0x01981890, bool, CodeAccessPermission_Equals, (CodeAccessPermission * __this, Object * obj, MethodInfo * method)); @@ -5714,7 +6415,7 @@ DO_APP_FUNC(0x01983A90, bool, SecurityElement_IsValidText, (String * text, Metho DO_APP_FUNC(0x01983B20, SecurityElement *, SecurityElement_SearchForChildByTag, (SecurityElement * __this, String * tag, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C98980, SecurityElement_SearchForChildByTag__MethodInfo); DO_APP_FUNC(0x01983CC0, String *, SecurityElement_ToString, (SecurityElement * __this, MethodInfo * method)); -DO_APP_FUNC(0x01983D60, void, SecurityElement_ToXml, (SecurityElement * __this, StringBuilder * s, int32_t level, MethodInfo * method)); +DO_APP_FUNC(0x01983D60, void, SecurityElement_ToXml, (SecurityElement * __this, StringBuilder * * s, int32_t level, MethodInfo * method)); DO_APP_FUNC(0x019843A0, SecurityElement_SecurityAttribute *, SecurityElement_GetAttribute, (SecurityElement * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, SecurityElement_set_m_strText, (SecurityElement * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x019845C0, String *, SecurityElement_SearchForTextOfLocalName, (SecurityElement * __this, String * strLocalName, MethodInfo * method)); @@ -5731,7 +6432,7 @@ DO_APP_FUNC(0x019851F0, void, SecurityException_GetObjectData, (SecurityExceptio DO_APP_FUNC(0x01985280, String *, SecurityException_ToString, (SecurityException * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SecurityManager_EnsureElevatedPermissions, (MethodInfo * method)); DO_APP_FUNC(0x01985290, SecurityElement *, Parser_GetTopElement, (Parser * __this, MethodInfo * method)); -DO_APP_FUNC(0x019852C0, void, Parser_GetRequiredSizes, (Parser * __this, TokenizerStream * stream, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x019852C0, void, Parser_GetRequiredSizes, (Parser * __this, TokenizerStream * stream, int32_t * index, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C98910, Parser_GetRequiredSizes__MethodInfo); DO_APP_FUNC(0x01985AE0, int32_t, Parser_DetermineFormat, (Parser * __this, TokenizerStream * stream, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C988E0, Parser_DetermineFormat__MethodInfo); @@ -5837,14 +6538,14 @@ DO_APP_FUNC(0x0198B640, void, CryptoStream_Clear, (CryptoStream * __this, Method DO_APP_FUNC(0x0198B660, void, CryptoStream_Dispose, (CryptoStream * __this, bool disposing, MethodInfo * method)); DO_APP_FUNC(0x0198B890, void, CryptoStream_InitializeBuffer, (CryptoStream * __this, MethodInfo * method)); DO_APP_FUNC(0x0198B9F0, SemaphoreSlim *, CryptoStream_get_AsyncActiveSemaphore, (CryptoStream * __this, MethodInfo * method)); -DO_APP_FUNC(0x0198BB90, void, CryptoStream_ReadAsyncInternal_d_37_MoveNext, (CryptoStream_ReadAsyncInternal_d_37__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0198C280, void, CryptoStream_ReadAsyncInternal_d_37_SetStateMachine, (CryptoStream_ReadAsyncInternal_d_37__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x0198C410, void, CryptoStream_ReadAsyncCore_d_42_MoveNext, (CryptoStream_ReadAsyncCore_d_42__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0198DCD0, void, CryptoStream_ReadAsyncCore_d_42_SetStateMachine, (CryptoStream_ReadAsyncCore_d_42__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x0198DD40, void, CryptoStream_WriteAsyncInternal_d_46_MoveNext, (CryptoStream_WriteAsyncInternal_d_46__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0198E460, void, CryptoStream_WriteAsyncInternal_d_46_SetStateMachine, (CryptoStream_WriteAsyncInternal_d_46__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x0198E4C0, void, CryptoStream_WriteAsyncCore_d_49_MoveNext, (CryptoStream_WriteAsyncCore_d_49__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0198F7C0, void, CryptoStream_WriteAsyncCore_d_49_SetStateMachine, (CryptoStream_WriteAsyncCore_d_49__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x0198BB90, void, CryptoStream_ReadAsyncInternal_d_37_MoveNext, (CryptoStream_ReadAsyncInternal_d_37 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0198C280, void, CryptoStream_ReadAsyncInternal_d_37_SetStateMachine, (CryptoStream_ReadAsyncInternal_d_37 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x0198C410, void, CryptoStream_ReadAsyncCore_d_42_MoveNext, (CryptoStream_ReadAsyncCore_d_42 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0198DCD0, void, CryptoStream_ReadAsyncCore_d_42_SetStateMachine, (CryptoStream_ReadAsyncCore_d_42 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x0198DD40, void, CryptoStream_WriteAsyncInternal_d_46_MoveNext, (CryptoStream_WriteAsyncInternal_d_46 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0198E460, void, CryptoStream_WriteAsyncInternal_d_46_SetStateMachine, (CryptoStream_WriteAsyncInternal_d_46 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x0198E4C0, void, CryptoStream_WriteAsyncCore_d_49_MoveNext, (CryptoStream_WriteAsyncCore_d_49 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0198F7C0, void, CryptoStream_WriteAsyncCore_d_49_SetStateMachine, (CryptoStream_WriteAsyncCore_d_49 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); DO_APP_FUNC(0x0198F820, void, CryptoStream_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CryptoStream_c__ctor, (CryptoStream_c * __this, MethodInfo * method)); DO_APP_FUNC(0x0198F8D0, SemaphoreSlim *, CryptoStream_c__get_AsyncActiveSemaphore_b__54_0, (CryptoStream_c * __this, MethodInfo * method)); @@ -5871,10 +6572,10 @@ DO_APP_FUNC(0x01990040, int32_t, HashAlgorithm_TransformBlock, (HashAlgorithm * DO_APP_FUNC(0x019900E0, Byte__Array *, HashAlgorithm_TransformFinalBlock, (HashAlgorithm * __this, Byte__Array * inputBuffer, int32_t inputOffset, int32_t inputCount, MethodInfo * method)); DO_APP_FUNC(0x01990220, void, HashAlgorithm_ValidateTransformBlock, (HashAlgorithm * __this, Byte__Array * inputBuffer, int32_t inputOffset, int32_t inputCount, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C99818, HashAlgorithm_ValidateTransformBlock__MethodInfo); -DO_APP_FUNC(0x01990410, String *, HashAlgorithmName_ToString, (HashAlgorithmName__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01990460, bool, HashAlgorithmName_Equals, (HashAlgorithmName__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x01990520, bool, HashAlgorithmName_Equals_1, (HashAlgorithmName__Boxed * __this, HashAlgorithmName other, MethodInfo * method)); -DO_APP_FUNC(0x010F96A0, int32_t, HashAlgorithmName_GetHashCode, (HashAlgorithmName__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01990410, String *, HashAlgorithmName_ToString, (HashAlgorithmName * __this, MethodInfo * method)); +DO_APP_FUNC(0x01990460, bool, HashAlgorithmName_Equals, (HashAlgorithmName * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x01990520, bool, HashAlgorithmName_Equals_1, (HashAlgorithmName * __this, HashAlgorithmName other, MethodInfo * method)); +DO_APP_FUNC(0x010F96A0, int32_t, HashAlgorithmName_GetHashCode, (HashAlgorithmName * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, RSASignaturePadding__ctor, (RSASignaturePadding * __this, RSASignaturePaddingMode__Enum mode, MethodInfo * method)); DO_APP_FUNC(0x003BCD50, int32_t, RSASignaturePadding_GetHashCode, (RSASignaturePadding * __this, MethodInfo * method)); DO_APP_FUNC(0x01990560, bool, RSASignaturePadding_Equals, (RSASignaturePadding * __this, Object * obj, MethodInfo * method)); @@ -6061,9 +6762,9 @@ DO_APP_FUNC_METHODINFO(0x03C990F8, RijndaelManagedTransform_TransformBlock__Meth DO_APP_FUNC(0x0199A690, Byte__Array *, RijndaelManagedTransform_TransformFinalBlock, (RijndaelManagedTransform * __this, Byte__Array * inputBuffer, int32_t inputOffset, int32_t inputCount, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C99108, RijndaelManagedTransform_TransformFinalBlock__MethodInfo); DO_APP_FUNC(0x0199AAF0, void, RijndaelManagedTransform_Reset, (RijndaelManagedTransform * __this, MethodInfo * method)); -DO_APP_FUNC(0x0199AC70, int32_t, RijndaelManagedTransform_EncryptData, (RijndaelManagedTransform * __this, Byte__Array * inputBuffer, int32_t inputOffset, int32_t inputCount, Byte__Array * outputBuffer, int32_t outputOffset, PaddingMode__Enum paddingMode, bool fLast, MethodInfo * method)); +DO_APP_FUNC(0x0199AC70, int32_t, RijndaelManagedTransform_EncryptData, (RijndaelManagedTransform * __this, Byte__Array * inputBuffer, int32_t inputOffset, int32_t inputCount, Byte__Array * * outputBuffer, int32_t outputOffset, PaddingMode__Enum paddingMode, bool fLast, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C99118, RijndaelManagedTransform_EncryptData__MethodInfo); -DO_APP_FUNC(0x0199BA30, int32_t, RijndaelManagedTransform_DecryptData, (RijndaelManagedTransform * __this, Byte__Array * inputBuffer, int32_t inputOffset, int32_t inputCount, Byte__Array * outputBuffer, int32_t outputOffset, PaddingMode__Enum paddingMode, bool fLast, MethodInfo * method)); +DO_APP_FUNC(0x0199BA30, int32_t, RijndaelManagedTransform_DecryptData, (RijndaelManagedTransform * __this, Byte__Array * inputBuffer, int32_t inputOffset, int32_t inputCount, Byte__Array * * outputBuffer, int32_t outputOffset, PaddingMode__Enum paddingMode, bool fLast, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C990A8, RijndaelManagedTransform_DecryptData__MethodInfo); DO_APP_FUNC(0x0199C9C0, void, RijndaelManagedTransform_Enc, (RijndaelManagedTransform * __this, int32_t * encryptindex, int32_t * encryptKeyExpansion, int32_t * T, int32_t * TF, int32_t * work, int32_t * temp, MethodInfo * method)); DO_APP_FUNC(0x0199CBD0, void, RijndaelManagedTransform_Dec, (RijndaelManagedTransform * __this, int32_t * decryptindex, int32_t * decryptKeyExpansion, int32_t * iT, int32_t * iTF, int32_t * work, int32_t * temp, MethodInfo * method)); @@ -6487,8 +7188,8 @@ DO_APP_FUNC(0x019BCFD0, bool, SecurityIdentifier_op_Equality, (SecurityIdentifie DO_APP_FUNC(0x019BE790, bool, SecurityIdentifier_op_Inequality, (SecurityIdentifier * left, SecurityIdentifier * right, MethodInfo * method)); DO_APP_FUNC(0x019BE850, Byte__Array *, SecurityIdentifier_ParseSddlForm, (String * sddlForm, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9DBD0, SecurityIdentifier_ParseSddlForm__MethodInfo); -DO_APP_FUNC(0x019BF0B0, bool, SecurityIdentifier_TryParseAuthority, (String * s, uint64_t result, MethodInfo * method)); -DO_APP_FUNC(0x019BF1C0, bool, SecurityIdentifier_TryParseSubAuthority, (String * s, uint32_t result, MethodInfo * method)); +DO_APP_FUNC(0x019BF0B0, bool, SecurityIdentifier_TryParseAuthority, (String * s, uint64_t * result, MethodInfo * method)); +DO_APP_FUNC(0x019BF1C0, bool, SecurityIdentifier_TryParseSubAuthority, (String * s, uint32_t * result, MethodInfo * method)); DO_APP_FUNC(0x019BF2D0, void, SecurityIdentifier__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, WellKnownAccount_set_WellKnownValue, (WellKnownAccount * __this, WellKnownSidType__Enum value, MethodInfo * method)); DO_APP_FUNC(0x003CD410, bool, WellKnownAccount_get_IsAbsolute, (WellKnownAccount * __this, MethodInfo * method)); @@ -6654,7 +7355,7 @@ DO_APP_FUNC(0x019CBD90, int32_t, CommonAcl_GetCanonicalExplicitDenyAceCount, (Co DO_APP_FUNC(0x019CBEF0, int32_t, CommonAcl_GetCanonicalExplicitAceCount, (CommonAcl * __this, MethodInfo * method)); DO_APP_FUNC(0x019CBF70, void, CommonAcl_MergeExplicitAces, (CommonAcl * __this, MethodInfo * method)); DO_APP_FUNC(0x019CC080, GenericAce *, CommonAcl_MergeExplicitAcePair, (CommonAcl * __this, GenericAce * ace1, GenericAce * ace2, MethodInfo * method)); -DO_APP_FUNC(0x019CC7A0, void, CommonAcl_GetObjectAceTypeGuids, (ObjectAce * ace, Guid type, Guid inheritedType, MethodInfo * method)); +DO_APP_FUNC(0x019CC7A0, void, CommonAcl_GetObjectAceTypeGuids, (ObjectAce * ace, Guid * type, Guid * inheritedType, MethodInfo * method)); DO_APP_FUNC(0x019CC840, void, CommonAcl_ApplyCanonicalSortToExplicitAces, (CommonAcl * __this, int32_t start, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x019CCA30, void, CommonAcl_AddAce, (CommonAcl * __this, AceQualifier__Enum aceQualifier, SecurityIdentifier * sid, int32_t accessMask, InheritanceFlags__Enum inheritanceFlags, PropagationFlags__Enum propagationFlags, AuditFlags__Enum auditFlags, MethodInfo * method)); DO_APP_FUNC(0x019CCA80, QualifiedAce *, CommonAcl_AddAceGetQualifiedAce, (CommonAcl * __this, AceQualifier__Enum aceQualifier, SecurityIdentifier * sid, int32_t accessMask, InheritanceFlags__Enum inheritanceFlags, PropagationFlags__Enum propagationFlags, AuditFlags__Enum auditFlags, MethodInfo * method)); @@ -6681,14 +7382,14 @@ DO_APP_FUNC(0x019CD8E0, void, CommonObjectSecurity_RemoveAccessRuleAll, (CommonO DO_APP_FUNC(0x019CD920, void, CommonObjectSecurity_RemoveAccessRuleSpecific, (CommonObjectSecurity * __this, AccessRule * rule, MethodInfo * method)); DO_APP_FUNC(0x019CD960, void, CommonObjectSecurity_ResetAccessRule, (CommonObjectSecurity * __this, AccessRule * rule, MethodInfo * method)); DO_APP_FUNC(0x019CD9A0, void, CommonObjectSecurity_SetAccessRule, (CommonObjectSecurity * __this, AccessRule * rule, MethodInfo * method)); -DO_APP_FUNC(0x019CD9E0, bool, CommonObjectSecurity_ModifyAccess, (CommonObjectSecurity * __this, AccessControlModification__Enum modification, AccessRule * rule, bool modified, MethodInfo * method)); +DO_APP_FUNC(0x019CD9E0, bool, CommonObjectSecurity_ModifyAccess, (CommonObjectSecurity * __this, AccessControlModification__Enum modification, AccessRule * rule, bool * modified, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9CCE8, CommonObjectSecurity_ModifyAccess__MethodInfo); DO_APP_FUNC(0x019CDE10, void, CommonObjectSecurity_AddAuditRule, (CommonObjectSecurity * __this, AuditRule * rule, MethodInfo * method)); DO_APP_FUNC(0x019CDE40, bool, CommonObjectSecurity_RemoveAuditRule, (CommonObjectSecurity * __this, AuditRule * rule, MethodInfo * method)); DO_APP_FUNC(0x019CDE80, void, CommonObjectSecurity_RemoveAuditRuleAll, (CommonObjectSecurity * __this, AuditRule * rule, MethodInfo * method)); DO_APP_FUNC(0x019CDEC0, void, CommonObjectSecurity_RemoveAuditRuleSpecific, (CommonObjectSecurity * __this, AuditRule * rule, MethodInfo * method)); DO_APP_FUNC(0x019CDF00, void, CommonObjectSecurity_SetAuditRule, (CommonObjectSecurity * __this, AuditRule * rule, MethodInfo * method)); -DO_APP_FUNC(0x019CDF40, bool, CommonObjectSecurity_ModifyAudit, (CommonObjectSecurity * __this, AccessControlModification__Enum modification, AuditRule * rule, bool modified, MethodInfo * method)); +DO_APP_FUNC(0x019CDF40, bool, CommonObjectSecurity_ModifyAudit, (CommonObjectSecurity * __this, AccessControlModification__Enum modification, AuditRule * rule, bool * modified, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9CBF0, CommonObjectSecurity_ModifyAudit__MethodInfo); DO_APP_FUNC(0x019CE480, void, CommonSecurityDescriptor__ctor, (CommonSecurityDescriptor * __this, bool isContainer, bool isDS, Byte__Array * binaryForm, int32_t offset, MethodInfo * method)); DO_APP_FUNC(0x019CE530, void, CommonSecurityDescriptor__ctor_1, (CommonSecurityDescriptor * __this, bool isContainer, bool isDS, ControlFlags__Enum flags, SecurityIdentifier * owner, SecurityIdentifier * group, SystemAcl * systemAcl, DiscretionaryAcl * discretionaryAcl, MethodInfo * method)); @@ -6782,8 +7483,8 @@ DO_APP_FUNC(0x019D0CF0, int32_t, NativeObjectSecurity_Win32GetHelper, (NativeObj DO_APP_FUNC(0x019D1100, int32_t, NativeObjectSecurity_Win32SetHelper, (NativeObjectSecurity * __this, NativeObjectSecurity_SetSecurityInfoNativeCall * nativeCall, AccessControlSections__Enum includeSections, MethodInfo * method)); DO_APP_FUNC(0x019D1650, String *, NativeObjectSecurity_Win32FixName, (NativeObjectSecurity * __this, String * name, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9CAD8, NativeObjectSecurity_Win32FixName__MethodInfo); -DO_APP_FUNC(0x019D1720, int32_t, NativeObjectSecurity_GetSecurityInfo, (SafeHandle * handle, ResourceType__Enum resourceType, SecurityInfos__Enum securityInfos, void * owner, void * group, void * dacl, void * sacl, void * descriptor, MethodInfo * method)); -DO_APP_FUNC(0x019D1850, int32_t, NativeObjectSecurity_GetNamedSecurityInfo, (String * name, ResourceType__Enum resourceType, SecurityInfos__Enum securityInfos, void * owner, void * group, void * dacl, void * sacl, void * descriptor, MethodInfo * method)); +DO_APP_FUNC(0x019D1720, int32_t, NativeObjectSecurity_GetSecurityInfo, (SafeHandle * handle, ResourceType__Enum resourceType, SecurityInfos__Enum securityInfos, void * * owner, void * * group, void * * dacl, void * * sacl, void * * descriptor, MethodInfo * method)); +DO_APP_FUNC(0x019D1850, int32_t, NativeObjectSecurity_GetNamedSecurityInfo, (String * name, ResourceType__Enum resourceType, SecurityInfos__Enum securityInfos, void * * owner, void * * group, void * * dacl, void * * sacl, void * * descriptor, MethodInfo * method)); DO_APP_FUNC(0x019D1910, void *, NativeObjectSecurity_LocalFree, (void * handle, MethodInfo * method)); DO_APP_FUNC(0x019D1990, int32_t, NativeObjectSecurity_SetSecurityInfo, (SafeHandle * handle, ResourceType__Enum resourceType, SecurityInfos__Enum securityInfos, Byte__Array * owner, Byte__Array * group, Byte__Array * dacl, Byte__Array * sacl, MethodInfo * method)); DO_APP_FUNC(0x019D1AF0, int32_t, NativeObjectSecurity_GetSecurityDescriptorLength, (void * descriptor, MethodInfo * method)); @@ -6791,14 +7492,14 @@ DO_APP_FUNC(0x019D1B70, bool, NativeObjectSecurity_IsValidSecurityDescriptor, (v DO_APP_FUNC(0x019D1BF0, void, NativeObjectSecurity_ExceptionFromErrorCode__ctor, (NativeObjectSecurity_ExceptionFromErrorCode * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003F09C0, Exception *, NativeObjectSecurity_ExceptionFromErrorCode_Invoke, (NativeObjectSecurity_ExceptionFromErrorCode * __this, int32_t errorCode, String * name, SafeHandle * handle, Object * context, MethodInfo * method)); DO_APP_FUNC(0x019D1D20, void, NativeObjectSecurity_GetSecurityInfoNativeCall__ctor, (NativeObjectSecurity_GetSecurityInfoNativeCall * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x015C0500, int32_t, NativeObjectSecurity_GetSecurityInfoNativeCall_Invoke, (NativeObjectSecurity_GetSecurityInfoNativeCall * __this, SecurityInfos__Enum securityInfos, void * owner, void * group, void * dacl, void * sacl, void * descriptor, MethodInfo * method)); +DO_APP_FUNC(0x015C0500, int32_t, NativeObjectSecurity_GetSecurityInfoNativeCall_Invoke, (NativeObjectSecurity_GetSecurityInfoNativeCall * __this, SecurityInfos__Enum securityInfos, void * * owner, void * * group, void * * dacl, void * * sacl, void * * descriptor, MethodInfo * method)); DO_APP_FUNC(0x019D1E50, void, NativeObjectSecurity_SetSecurityInfoNativeCall__ctor, (NativeObjectSecurity_SetSecurityInfoNativeCall * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003F0780, int32_t, NativeObjectSecurity_SetSecurityInfoNativeCall_Invoke, (NativeObjectSecurity_SetSecurityInfoNativeCall * __this, SecurityInfos__Enum securityInfos, Byte__Array * owner, Byte__Array * group, Byte__Array * dacl, Byte__Array * sacl, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NativeObjectSecurity_c_DisplayClass19_0__ctor, (NativeObjectSecurity_c_DisplayClass19_0 * __this, MethodInfo * method)); -DO_APP_FUNC(0x019D1F80, int32_t, NativeObjectSecurity_c_DisplayClass19_0__InternalGet_b__0, (NativeObjectSecurity_c_DisplayClass19_0 * __this, SecurityInfos__Enum securityInfos, void * owner, void * group, void * dacl, void * sacl, void * descriptor, MethodInfo * method)); +DO_APP_FUNC(0x019D1F80, int32_t, NativeObjectSecurity_c_DisplayClass19_0__InternalGet_b__0, (NativeObjectSecurity_c_DisplayClass19_0 * __this, SecurityInfos__Enum securityInfos, void * * owner, void * * group, void * * dacl, void * * sacl, void * * descriptor, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9CAE8, NativeObjectSecurity_c_DisplayClass19_0__InternalGet_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, NativeObjectSecurity_c_DisplayClass20_0__ctor, (NativeObjectSecurity_c_DisplayClass20_0 * __this, MethodInfo * method)); -DO_APP_FUNC(0x019D20C0, int32_t, NativeObjectSecurity_c_DisplayClass20_0__InternalGet_b__0, (NativeObjectSecurity_c_DisplayClass20_0 * __this, SecurityInfos__Enum securityInfos, void * owner, void * group, void * dacl, void * sacl, void * descriptor, MethodInfo * method)); +DO_APP_FUNC(0x019D20C0, int32_t, NativeObjectSecurity_c_DisplayClass20_0__InternalGet_b__0, (NativeObjectSecurity_c_DisplayClass20_0 * __this, SecurityInfos__Enum securityInfos, void * * owner, void * * group, void * * dacl, void * * sacl, void * * descriptor, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9CB00, NativeObjectSecurity_c_DisplayClass20_0__InternalGet_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, NativeObjectSecurity_c_DisplayClass21_0__ctor, (NativeObjectSecurity_c_DisplayClass21_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x019D2290, int32_t, NativeObjectSecurity_c_DisplayClass21_0__InternalSet_b__0, (NativeObjectSecurity_c_DisplayClass21_0 * __this, SecurityInfos__Enum securityInfos, Byte__Array * owner, Byte__Array * group, Byte__Array * dacl, Byte__Array * sacl, MethodInfo * method)); @@ -6903,7 +7604,7 @@ DO_APP_FUNC(0x019D5C90, bool, SystemAcl_IsValidAuditFlags, (AuditFlags__Enum aud DO_APP_FUNC(0x019D5CB0, void, AmbiguousImplementationException__ctor, (AmbiguousImplementationException * __this, MethodInfo * method)); DO_APP_FUNC(0x019D5D20, void, AmbiguousImplementationException__ctor_1, (AmbiguousImplementationException * __this, String * message, MethodInfo * method)); DO_APP_FUNC(0x019D5D90, void, AmbiguousImplementationException__ctor_2, (AmbiguousImplementationException * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); -DO_APP_FUNC(0x019D5E10, void, RuntimeImports_RhZeroMemory, (uint8_t b, uint64_t byteLength, MethodInfo * method)); +DO_APP_FUNC(0x019D5E10, void, RuntimeImports_RhZeroMemory, (uint8_t * b, uint64_t byteLength, MethodInfo * method)); DO_APP_FUNC(0x019D5E10, void, RuntimeImports_ZeroMemory, (Void * p, uint32_t byteLength, MethodInfo * method)); DO_APP_FUNC(0x019D5E20, void, RuntimeImports_Memmove, (uint8_t * dest, uint8_t * src, uint32_t len, MethodInfo * method)); DO_APP_FUNC(0x019D5E30, void, RuntimeImports_Memmove_wbarrier, (uint8_t * dest, uint8_t * src, uint32_t len, void * type_handle, MethodInfo * method)); @@ -7021,7 +7722,7 @@ DO_APP_FUNC(0x019DFDD0, void, ConfigHandler_ReadPreload, (ConfigHandler * __this DO_APP_FUNC_METHODINFO(0x03CA0F98, ConfigHandler_ReadPreload__MethodInfo); DO_APP_FUNC(0x019E0080, String *, ConfigHandler_GetNotNull, (ConfigHandler * __this, SmallXmlParser_IAttrList * attrs, String * name, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA0FF8, ConfigHandler_GetNotNull__MethodInfo); -DO_APP_FUNC(0x019E0190, String *, ConfigHandler_ExtractAssembly, (ConfigHandler * __this, String * type, MethodInfo * method)); +DO_APP_FUNC(0x019E0190, String *, ConfigHandler_ExtractAssembly, (ConfigHandler * __this, String * * type, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ConfigHandler_OnChars, (ConfigHandler * __this, String * ch, MethodInfo * method)); DO_APP_FUNC(0x019E02E0, void, ConfigHandler_OnEndParsing, (ConfigHandler * __this, SmallXmlParser * parser, MethodInfo * method)); DO_APP_FUNC(0x019E0440, ArrayList *, ChannelData_get_ServerProviders, (ChannelData * __this, MethodInfo * method)); @@ -7037,7 +7738,7 @@ DO_APP_FUNC(0x019BCFC0, void, RemotingException__ctor_1, (RemotingException * __ DO_APP_FUNC(0x01980BF0, void, RemotingException__ctor_2, (RemotingException * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x019E1A10, void, RemotingException__ctor_3, (RemotingException * __this, String * message, Exception * InnerException, MethodInfo * method)); DO_APP_FUNC(0x019E1A20, void, RemotingServices__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x019E2100, Object *, RemotingServices_InternalExecute, (MethodBase * method_1, Object * obj, Object__Array * parameters, Object__Array * out_args, MethodInfo * method)); +DO_APP_FUNC(0x019E2100, Object *, RemotingServices_InternalExecute, (MethodBase * method_1, Object * obj, Object__Array * parameters, Object__Array * * out_args, MethodInfo * method)); DO_APP_FUNC(0x019E2110, MethodBase *, RemotingServices_GetVirtualMethod, (Type * type, MethodBase * method_1, MethodInfo * method)); DO_APP_FUNC(0x019E2120, bool, RemotingServices_IsTransparentProxy, (Object * proxy, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA0E88, RemotingServices_IsTransparentProxy__MethodInfo); @@ -7064,8 +7765,8 @@ DO_APP_FUNC(0x019E3F30, Object *, RemotingServices_CreateClientProxy_2, (WellKno DO_APP_FUNC(0x019E4030, Object *, RemotingServices_CreateClientProxyForContextBound, (Type * type, Object__Array * activationAttributes, MethodInfo * method)); DO_APP_FUNC(0x019E4200, Identity *, RemotingServices_GetIdentityForUri, (String * uri, MethodInfo * method)); DO_APP_FUNC(0x019E4650, String *, RemotingServices_RemoveAppNameFromUri, (String * uri, MethodInfo * method)); -DO_APP_FUNC(0x019E4760, ClientIdentity *, RemotingServices_GetOrCreateClientIdentity, (ObjRef * objRef, Type * proxyType, Object * clientProxy, MethodInfo * method)); -DO_APP_FUNC(0x019E51C0, IMessageSink *, RemotingServices_GetClientChannelSinkChain, (String * url, Object * channelData, String * objectUri, MethodInfo * method)); +DO_APP_FUNC(0x019E4760, ClientIdentity *, RemotingServices_GetOrCreateClientIdentity, (ObjRef * objRef, Type * proxyType, Object * * clientProxy, MethodInfo * method)); +DO_APP_FUNC(0x019E51C0, IMessageSink *, RemotingServices_GetClientChannelSinkChain, (String * url, Object * channelData, String * * objectUri, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA0A60, RemotingServices_GetClientChannelSinkChain__MethodInfo); DO_APP_FUNC(0x019E5300, ClientActivatedIdentity *, RemotingServices_CreateContextBoundObjectIdentity, (Type * objectType, MethodInfo * method)); DO_APP_FUNC(0x019E5440, ClientActivatedIdentity *, RemotingServices_CreateClientActivatedServerIdentity, (MarshalByRefObject * realObject, Type * objectType, String * objectUri, MethodInfo * method)); @@ -7117,10 +7818,10 @@ DO_APP_FUNC(0x019E8650, String *, SoapServices_get_XmlNsForClrTypeWithNsAndAssem DO_APP_FUNC(0x019E8690, String *, SoapServices_CodeXmlNamespaceForClrTypeNamespace, (String * typeNamespace, String * assemblyName, MethodInfo * method)); DO_APP_FUNC(0x019E8890, String *, SoapServices_GetNameKey, (String * name, String * namspace, MethodInfo * method)); DO_APP_FUNC(0x019E8900, String *, SoapServices_GetAssemblyName, (MethodBase * mb, MethodInfo * method)); -DO_APP_FUNC(0x019E8AB0, bool, SoapServices_GetXmlElementForInteropType, (Type * type, String * xmlElement, String * xmlNamespace, MethodInfo * method)); +DO_APP_FUNC(0x019E8AB0, bool, SoapServices_GetXmlElementForInteropType, (Type * type, String * * xmlElement, String * * xmlNamespace, MethodInfo * method)); DO_APP_FUNC(0x019E8CD0, String *, SoapServices_GetXmlNamespaceForMethodCall, (MethodBase * mb, MethodInfo * method)); DO_APP_FUNC(0x019E8D80, String *, SoapServices_GetXmlNamespaceForMethodResponse, (MethodBase * mb, MethodInfo * method)); -DO_APP_FUNC(0x019E8E30, bool, SoapServices_GetXmlTypeForInteropType, (Type * type, String * xmlType, String * xmlTypeNamespace, MethodInfo * method)); +DO_APP_FUNC(0x019E8E30, bool, SoapServices_GetXmlTypeForInteropType, (Type * type, String * * xmlType, String * * xmlTypeNamespace, MethodInfo * method)); DO_APP_FUNC(0x019E9040, void, SoapServices_PreLoad, (Assembly * assembly, MethodInfo * method)); DO_APP_FUNC(0x019E90F0, void, SoapServices_PreLoad_1, (Type * type, MethodInfo * method)); DO_APP_FUNC(0x019E9710, void, SoapServices_RegisterInteropXmlElement, (String * xmlElement, String * xmlNamespace, Type * type, MethodInfo * method)); @@ -7175,7 +7876,7 @@ DO_APP_FUNC(0x019ECD70, Type *, RealProxy_GetProxiedType, (RealProxy * __this, M DO_APP_FUNC(0x019ECE10, void, RealProxy_GetObjectData, (RealProxy * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x003C7320, Identity *, RealProxy_get_ObjectIdentity, (RealProxy * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7330, void, RealProxy_set_ObjectIdentity, (RealProxy * __this, Identity * value, MethodInfo * method)); -DO_APP_FUNC(0x019ECE80, Object *, RealProxy_PrivateInvoke, (RealProxy * rp, IMessage * msg, Exception * exc, Object__Array * out_args, MethodInfo * method)); +DO_APP_FUNC(0x019ECE80, Object *, RealProxy_PrivateInvoke, (RealProxy * rp, IMessage * msg, Exception * * exc, Object__Array * * out_args, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA0408, RealProxy_PrivateInvoke__MethodInfo); DO_APP_FUNC(0x019ED800, Object *, RealProxy_InternalGetTransparentProxy, (RealProxy * __this, String * className, MethodInfo * method)); DO_APP_FUNC(0x019ED810, Object *, RealProxy_GetTransparentProxy, (RealProxy * __this, MethodInfo * method)); @@ -7289,8 +7990,8 @@ DO_APP_FUNC_METHODINFO(0x03C9FB10, CrossContextChannel_ContextRestoreSink_AsyncP DO_APP_FUNC(0x003F7AE0, void, CrossContextDelegate__ctor, (CrossContextDelegate * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003CB0B0, void, CrossContextDelegate_Invoke, (CrossContextDelegate * __this, MethodInfo * method)); DO_APP_FUNC(0x019F5940, CrossContextChannel *, ChannelServices_get_CrossContextChannel, (MethodInfo * method)); -DO_APP_FUNC(0x019F59A0, IMessageSink *, ChannelServices_CreateClientChannelSinkChain, (String * url, Object * remoteChannelData, String * objectUri, MethodInfo * method)); -DO_APP_FUNC(0x019F6230, IMessageSink *, ChannelServices_CreateClientChannelSinkChain_1, (IChannelSender * sender, String * url, Object__Array * channelDataArray, String * objectUri, MethodInfo * method)); +DO_APP_FUNC(0x019F59A0, IMessageSink *, ChannelServices_CreateClientChannelSinkChain, (String * url, Object * remoteChannelData, String * * objectUri, MethodInfo * method)); +DO_APP_FUNC(0x019F6230, IMessageSink *, ChannelServices_CreateClientChannelSinkChain_1, (IChannelSender * sender, String * url, Object__Array * channelDataArray, String * * objectUri, MethodInfo * method)); DO_APP_FUNC(0x019F6380, void, ChannelServices_RegisterChannel, (IChannel * chnl, MethodInfo * method)); DO_APP_FUNC(0x019F63E0, void, ChannelServices_RegisterChannel_1, (IChannel * chnl, bool ensureSecurity, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9FA68, ChannelServices_RegisterChannel_1__MethodInfo); @@ -7312,7 +8013,7 @@ DO_APP_FUNC(0x019F9030, String *, CrossAppDomainChannel_get_ChannelName, (CrossA DO_APP_FUNC(0x00EAA7F0, int32_t, CrossAppDomainChannel_get_ChannelPriority, (CrossAppDomainChannel * __this, MethodInfo * method)); DO_APP_FUNC(0x019F9070, Object *, CrossAppDomainChannel_get_ChannelData, (CrossAppDomainChannel * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CrossAppDomainChannel_StartListening, (CrossAppDomainChannel * __this, Object * data, MethodInfo * method)); -DO_APP_FUNC(0x019F90E0, IMessageSink *, CrossAppDomainChannel_CreateMessageSink, (CrossAppDomainChannel * __this, String * url, Object * data, String * uri, MethodInfo * method)); +DO_APP_FUNC(0x019F90E0, IMessageSink *, CrossAppDomainChannel_CreateMessageSink, (CrossAppDomainChannel * __this, String * url, Object * data, String * * uri, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9F870, CrossAppDomainChannel_CreateMessageSink__MethodInfo); DO_APP_FUNC(0x003AE050, void, CrossAppDomainChannel__ctor, (CrossAppDomainChannel * __this, MethodInfo * method)); DO_APP_FUNC(0x019F92D0, void, CrossAppDomainChannel__cctor, (MethodInfo * method)); @@ -7407,11 +8108,11 @@ DO_APP_FUNC(0x019FF960, Hashtable *, LogicalCallContext_get_Datastore, (LogicalC DO_APP_FUNC(0x019FFA20, Object *, LogicalCallContext_GetData, (LogicalCallContext * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x019FFA60, void, LogicalCallContext_SetData, (LogicalCallContext * __this, String * name, Object * data, MethodInfo * method)); DO_APP_FUNC(0x019FFB20, void, LogicalCallContext__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, LogicalCallContext_Reader__ctor, (LogicalCallContext_Reader__Boxed * __this, LogicalCallContext * ctx, MethodInfo * method)); -DO_APP_FUNC(0x00A9A290, bool, LogicalCallContext_Reader_get_IsNull, (LogicalCallContext_Reader__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x019FFC00, bool, LogicalCallContext_Reader_get_HasInfo, (LogicalCallContext_Reader__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x019FFC20, LogicalCallContext *, LogicalCallContext_Reader_Clone, (LogicalCallContext_Reader__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x019FFC90, Object *, LogicalCallContext_Reader_GetData, (LogicalCallContext_Reader__Boxed * __this, String * name, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, LogicalCallContext_Reader__ctor, (LogicalCallContext_Reader * __this, LogicalCallContext * ctx, MethodInfo * method)); +DO_APP_FUNC(0x00A9A290, bool, LogicalCallContext_Reader_get_IsNull, (LogicalCallContext_Reader * __this, MethodInfo * method)); +DO_APP_FUNC(0x019FFC00, bool, LogicalCallContext_Reader_get_HasInfo, (LogicalCallContext_Reader * __this, MethodInfo * method)); +DO_APP_FUNC(0x019FFC20, LogicalCallContext *, LogicalCallContext_Reader_Clone, (LogicalCallContext_Reader * __this, MethodInfo * method)); +DO_APP_FUNC(0x019FFC90, Object *, LogicalCallContext_Reader_GetData, (LogicalCallContext_Reader * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x00A1E220, bool, CallContextSecurityData_get_HasInfo, (CallContextSecurityData * __this, MethodInfo * method)); DO_APP_FUNC(0x019FFCE0, Object *, CallContextSecurityData_Clone, (CallContextSecurityData * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CallContextSecurityData__ctor, (CallContextSecurityData * __this, MethodInfo * method)); @@ -7454,15 +8155,15 @@ DO_APP_FUNC(0x01A019F0, void, CADMessageBase__ctor, (CADMessageBase * __this, IM DO_APP_FUNC(0x01A01AE0, MethodBase *, CADMessageBase_GetMethod, (CADMessageBase * __this, MethodInfo * method)); DO_APP_FUNC(0x01A01B70, Type__Array *, CADMessageBase_GetSignature, (MethodBase * methodBase, bool load, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA40A8, CADMessageBase_GetSignature__MethodInfo); -DO_APP_FUNC(0x01A01D80, int32_t, CADMessageBase_MarshalProperties, (IDictionary * dict, ArrayList * args, MethodInfo * method)); +DO_APP_FUNC(0x01A01D80, int32_t, CADMessageBase_MarshalProperties, (IDictionary * dict, ArrayList * * args, MethodInfo * method)); DO_APP_FUNC(0x01A022C0, void, CADMessageBase_UnmarshalProperties, (IDictionary * dict, int32_t count, ArrayList * args, MethodInfo * method)); DO_APP_FUNC(0x01A02440, bool, CADMessageBase_IsPossibleToIgnoreMarshal, (Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x01A02630, Object *, CADMessageBase_MarshalArgument, (CADMessageBase * __this, Object * arg, ArrayList * args, MethodInfo * method)); +DO_APP_FUNC(0x01A02630, Object *, CADMessageBase_MarshalArgument, (CADMessageBase * __this, Object * arg, ArrayList * * args, MethodInfo * method)); DO_APP_FUNC(0x01A027D0, Object *, CADMessageBase_UnmarshalArgument, (CADMessageBase * __this, Object * arg, ArrayList * args, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA3FF8, CADMessageBase_UnmarshalArgument__MethodInfo); -DO_APP_FUNC(0x01A03390, Object__Array *, CADMessageBase_MarshalArguments, (CADMessageBase * __this, Object__Array * arguments, ArrayList * args, MethodInfo * method)); +DO_APP_FUNC(0x01A03390, Object__Array *, CADMessageBase_MarshalArguments, (CADMessageBase * __this, Object__Array * arguments, ArrayList * * args, MethodInfo * method)); DO_APP_FUNC(0x01A03510, Object__Array *, CADMessageBase_UnmarshalArguments, (CADMessageBase * __this, Object__Array * arguments, ArrayList * args, MethodInfo * method)); -DO_APP_FUNC(0x01A03690, void, CADMessageBase_SaveLogicalCallContext, (CADMessageBase * __this, IMethodMessage * msg, ArrayList * serializeList, MethodInfo * method)); +DO_APP_FUNC(0x01A03690, void, CADMessageBase_SaveLogicalCallContext, (CADMessageBase * __this, IMethodMessage * msg, ArrayList * * serializeList, MethodInfo * method)); DO_APP_FUNC(0x01A03830, LogicalCallContext *, CADMessageBase_GetLogicalCallContext, (CADMessageBase * __this, ArrayList * args, MethodInfo * method)); DO_APP_FUNC(0x003C7320, String *, CADMethodCallMessage_get_Uri, (CADMethodCallMessage * __this, MethodInfo * method)); DO_APP_FUNC(0x01A038D0, CADMethodCallMessage *, CADMethodCallMessage_Create, (IMessage * callMsg, MethodInfo * method)); @@ -7644,7 +8345,7 @@ DO_APP_FUNC(0x003C91C0, Identity *, MonoMethodMessage_System_Runtime_Remoting_Me DO_APP_FUNC(0x0042F730, void, MonoMethodMessage_System_Runtime_Remoting_Messaging_IInternalMessage_set_TargetIdentity, (MonoMethodMessage * __this, Identity * value, MethodInfo * method)); DO_APP_FUNC(0x003CD530, AsyncResult *, MonoMethodMessage_get_AsyncResult, (MonoMethodMessage * __this, MethodInfo * method)); DO_APP_FUNC(0x01A0EC90, CallType__Enum, MonoMethodMessage_get_CallType, (MonoMethodMessage * __this, MethodInfo * method)); -DO_APP_FUNC(0x01A0ED90, bool, MonoMethodMessage_NeedsOutProcessing, (MonoMethodMessage * __this, int32_t outCount, MethodInfo * method)); +DO_APP_FUNC(0x01A0ED90, bool, MonoMethodMessage_NeedsOutProcessing, (MonoMethodMessage * __this, int32_t * outCount, MethodInfo * method)); DO_APP_FUNC(0x01A0EE10, void, RemotingSurrogate_GetObjectData, (RemotingSurrogate * __this, Object * obj, SerializationInfo * si, StreamingContext sc, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA37A8, RemotingSurrogate_GetObjectData__MethodInfo); DO_APP_FUNC(0x01A0EEB0, Object *, RemotingSurrogate_SetObjectData, (RemotingSurrogate * __this, Object * obj, SerializationInfo * si, StreamingContext sc, ISurrogateSelector * selector, MethodInfo * method)); @@ -7656,7 +8357,7 @@ DO_APP_FUNC(0x01A0F020, Object *, ObjRefSurrogate_SetObjectData, (ObjRefSurrogat DO_APP_FUNC_METHODINFO(0x03CA36F8, ObjRefSurrogate_SetObjectData__MethodInfo); DO_APP_FUNC(0x003AE050, void, ObjRefSurrogate__ctor, (ObjRefSurrogate * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, RemotingSurrogateSelector__ctor, (RemotingSurrogateSelector * __this, MethodInfo * method)); -DO_APP_FUNC(0x01A0F080, ISerializationSurrogate *, RemotingSurrogateSelector_GetSurrogate, (RemotingSurrogateSelector * __this, Type * type, StreamingContext context, ISurrogateSelector * ssout, MethodInfo * method)); +DO_APP_FUNC(0x01A0F080, ISerializationSurrogate *, RemotingSurrogateSelector_GetSurrogate, (RemotingSurrogateSelector * __this, Type * type, StreamingContext context, ISurrogateSelector * * ssout, MethodInfo * method)); DO_APP_FUNC(0x01A0F2A0, void, RemotingSurrogateSelector__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01A0F4B0, void, ReturnMessage__ctor, (ReturnMessage * __this, Object * ret, Object__Array * outArgs, int32_t outArgsCount, LogicalCallContext * callCtx, IMethodCallMessage * mcm, MethodInfo * method)); DO_APP_FUNC(0x01A0F750, void, ReturnMessage__ctor_1, (ReturnMessage * __this, Exception * e, IMethodCallMessage * mcm, MethodInfo * method)); @@ -7706,9 +8407,9 @@ DO_APP_FUNC(0x01A11540, void, SerializationException__ctor_1, (SerializationExce DO_APP_FUNC(0x01A11560, void, SerializationException__ctor_2, (SerializationException * __this, String * message, Exception * innerException, MethodInfo * method)); DO_APP_FUNC(0x01980BF0, void, SerializationException__ctor_3, (SerializationException * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x01A11580, void, SerializationException__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x0096DD20, void, SerializationEntry__ctor, (SerializationEntry__Boxed * __this, String * entryName, Object * entryValue, Type * entryType, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, Object *, SerializationEntry_get_Value, (SerializationEntry__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, String *, SerializationEntry_get_Name, (SerializationEntry__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0096DD20, void, SerializationEntry__ctor, (SerializationEntry * __this, String * entryName, Object * entryValue, Type * entryType, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, Object *, SerializationEntry_get_Value, (SerializationEntry * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, String *, SerializationEntry_get_Name, (SerializationEntry * __this, MethodInfo * method)); DO_APP_FUNC(0x01A11630, void, SerializationInfoEnumerator__ctor, (SerializationInfoEnumerator * __this, String__Array * members, Object__Array * info, Type__Array * types, int32_t numItems, MethodInfo * method)); DO_APP_FUNC(0x01A11750, bool, SerializationInfoEnumerator_MoveNext, (SerializationInfoEnumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x01A11770, Object *, SerializationInfoEnumerator_System_Collections_IEnumerator_get_Current, (SerializationInfoEnumerator * __this, MethodInfo * method)); @@ -7737,7 +8438,7 @@ DO_APP_FUNC(0x003AE050, void, FormatterConverter__ctor, (FormatterConverter * __ DO_APP_FUNC(0x01A11EC0, void, MemberHolder__ctor, (MemberHolder * __this, Type * type, StreamingContext ctx, MethodInfo * method)); DO_APP_FUNC(0x00A890A0, int32_t, MemberHolder_GetHashCode, (MemberHolder * __this, MethodInfo * method)); DO_APP_FUNC(0x01A11F70, bool, MemberHolder_Equals, (MemberHolder * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x01A11FF0, void, SerializationBinder_BindToName, (SerializationBinder * __this, Type * serializedType, String * assemblyName, String * typeName, MethodInfo * method)); +DO_APP_FUNC(0x01A11FF0, void, SerializationBinder_BindToName, (SerializationBinder * __this, Type * serializedType, String * * assemblyName, String * * typeName, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SerializationBinder__ctor, (SerializationBinder * __this, MethodInfo * method)); DO_APP_FUNC(0x01A120A0, void, SerializationEvents__ctor, (SerializationEvents * __this, Type * t, MethodInfo * method)); DO_APP_FUNC(0x01A12310, List_1_System_Reflection_MethodInfo_ *, SerializationEvents_GetMethodsWithAttribute, (SerializationEvents * __this, Type * attribute, Type * t, MethodInfo * method)); @@ -7769,7 +8470,7 @@ DO_APP_FUNC(0x01A13810, MemberInfo_1__Array *, FormatterServices_GetSerializable DO_APP_FUNC(0x01A139A0, bool, FormatterServices_CheckSerializable, (RuntimeType * type, MethodInfo * method)); DO_APP_FUNC(0x01A139D0, MemberInfo_1__Array *, FormatterServices_InternalGetSerializableMembers, (RuntimeType * type, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA3218, FormatterServices_InternalGetSerializableMembers__MethodInfo); -DO_APP_FUNC(0x01A14140, bool, FormatterServices_GetParentTypes, (RuntimeType * parentType, RuntimeType__Array * parentTypes, int32_t parentTypeCount, MethodInfo * method)); +DO_APP_FUNC(0x01A14140, bool, FormatterServices_GetParentTypes, (RuntimeType * parentType, RuntimeType__Array * * parentTypes, int32_t * parentTypeCount, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA30F8, FormatterServices_GetParentTypes__MethodInfo); DO_APP_FUNC(0x01A14580, MemberInfo_1__Array *, FormatterServices_GetSerializableMembers_1, (Type * type, StreamingContext context, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA3158, FormatterServices_GetSerializableMembers_1__MethodInfo); @@ -7788,7 +8489,7 @@ DO_APP_FUNC(0x01A156C0, Type *, FormatterServices_GetTypeFromAssembly, (Assembly DO_APP_FUNC_METHODINFO(0x03CA2FB0, FormatterServices_GetTypeFromAssembly__MethodInfo); DO_APP_FUNC(0x01A15750, Assembly *, FormatterServices_LoadAssemblyFromString, (String * assemblyName, MethodInfo * method)); DO_APP_FUNC(0x01A157A0, Assembly *, FormatterServices_LoadAssemblyFromStringNoThrow, (String * assemblyName, MethodInfo * method)); -DO_APP_FUNC(0x01A15840, String *, FormatterServices_GetClrAssemblyName, (Type * type, bool hasTypeForwardedFrom, MethodInfo * method)); +DO_APP_FUNC(0x01A15840, String *, FormatterServices_GetClrAssemblyName, (Type * type, bool * hasTypeForwardedFrom, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA3000, FormatterServices_GetClrAssemblyName__MethodInfo); DO_APP_FUNC(0x01A159F0, String *, FormatterServices_GetClrTypeFullName, (Type * type, MethodInfo * method)); DO_APP_FUNC(0x01A15A80, String *, FormatterServices_GetClrTypeFullNameForArray, (Type * type, MethodInfo * method)); @@ -7799,10 +8500,10 @@ DO_APP_FUNC_METHODINFO(0x03CA3138, FormatterServices_c_DisplayClass9_0__GetSeria DO_APP_FUNC(0x01A16080, void, SurrogateForCyclicalReference_GetObjectData, (SurrogateForCyclicalReference * __this, Object * obj, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x01A16170, Object *, SurrogateForCyclicalReference_SetObjectData, (SurrogateForCyclicalReference * __this, Object * obj, SerializationInfo * info, StreamingContext context, ISurrogateSelector * selector, MethodInfo * method)); DO_APP_FUNC(0x01A16210, void, ObjectIDGenerator__ctor, (ObjectIDGenerator * __this, MethodInfo * method)); -DO_APP_FUNC(0x01A16390, int32_t, ObjectIDGenerator_FindElement, (ObjectIDGenerator * __this, Object * obj, bool found, MethodInfo * method)); -DO_APP_FUNC(0x01A16450, int64_t, ObjectIDGenerator_GetId, (ObjectIDGenerator * __this, Object * obj, bool firstTime, MethodInfo * method)); +DO_APP_FUNC(0x01A16390, int32_t, ObjectIDGenerator_FindElement, (ObjectIDGenerator * __this, Object * obj, bool * found, MethodInfo * method)); +DO_APP_FUNC(0x01A16450, int64_t, ObjectIDGenerator_GetId, (ObjectIDGenerator * __this, Object * obj, bool * firstTime, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA2F78, ObjectIDGenerator_GetId__MethodInfo); -DO_APP_FUNC(0x01A165F0, int64_t, ObjectIDGenerator_HasId, (ObjectIDGenerator * __this, Object * obj, bool firstTime, MethodInfo * method)); +DO_APP_FUNC(0x01A165F0, int64_t, ObjectIDGenerator_HasId, (ObjectIDGenerator * __this, Object * obj, bool * firstTime, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA2F80, ObjectIDGenerator_HasId__MethodInfo); DO_APP_FUNC(0x01A166D0, void, ObjectIDGenerator_Rehash, (ObjectIDGenerator * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA2FA8, ObjectIDGenerator_Rehash__MethodInfo); @@ -7815,7 +8516,7 @@ DO_APP_FUNC(0x01A16C90, ObjectHolderList *, ObjectManager_get_SpecialFixupObject DO_APP_FUNC(0x01A16DE0, ObjectHolder *, ObjectManager_FindObjectHolder, (ObjectManager * __this, int64_t objectID, MethodInfo * method)); DO_APP_FUNC(0x01A16E30, ObjectHolder *, ObjectManager_FindOrCreateObjectHolder, (ObjectManager * __this, int64_t objectID, MethodInfo * method)); DO_APP_FUNC(0x01A16F10, void, ObjectManager_AddObjectHolder, (ObjectManager * __this, ObjectHolder * holder, MethodInfo * method)); -DO_APP_FUNC(0x01A171F0, bool, ObjectManager_GetCompletionInfo, (ObjectManager * __this, FixupHolder * fixup, ObjectHolder * holder, Object * member, bool bThrowIfMissing, MethodInfo * method)); +DO_APP_FUNC(0x01A171F0, bool, ObjectManager_GetCompletionInfo, (ObjectManager * __this, FixupHolder * fixup, ObjectHolder * * holder, Object * * member, bool bThrowIfMissing, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA2E10, ObjectManager_GetCompletionInfo__MethodInfo); DO_APP_FUNC(0x01A17670, void, ObjectManager_FixupSpecialObject, (ObjectManager * __this, ObjectHolder * holder, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA2E60, ObjectManager_FixupSpecialObject__MethodInfo); @@ -7984,9 +8685,9 @@ DO_APP_FUNC_METHODINFO(0x03CA2830, SerializationInfo_AddValueInternal__MethodInf DO_APP_FUNC(0x01A206D0, void, SerializationInfo_UpdateValue, (SerializationInfo * __this, String * name, Object * value, Type * type, MethodInfo * method)); DO_APP_FUNC(0x01A207D0, int32_t, SerializationInfo_FindElement, (SerializationInfo * __this, String * name, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA2838, SerializationInfo_FindElement__MethodInfo); -DO_APP_FUNC(0x01A208E0, Object *, SerializationInfo_GetElement, (SerializationInfo * __this, String * name, Type * foundType, MethodInfo * method)); +DO_APP_FUNC(0x01A208E0, Object *, SerializationInfo_GetElement, (SerializationInfo * __this, String * name, Type * * foundType, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA2848, SerializationInfo_GetElement__MethodInfo); -DO_APP_FUNC(0x01A20A40, Object *, SerializationInfo_GetElementNoThrow, (SerializationInfo * __this, String * name, Type * foundType, MethodInfo * method)); +DO_APP_FUNC(0x01A20A40, Object *, SerializationInfo_GetElementNoThrow, (SerializationInfo * __this, String * name, Type * * foundType, MethodInfo * method)); DO_APP_FUNC(0x01A20B70, Object *, SerializationInfo_GetValue, (SerializationInfo * __this, String * name, Type * type, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA2870, SerializationInfo_GetValue__MethodInfo); DO_APP_FUNC(0x01A20D60, Object *, SerializationInfo_GetValueNoThrow, (SerializationInfo * __this, String * name, Type * type, MethodInfo * method)); @@ -7995,19 +8696,19 @@ DO_APP_FUNC(0x01A21060, int32_t, SerializationInfo_GetInt32, (SerializationInfo DO_APP_FUNC(0x01A21180, int64_t, SerializationInfo_GetInt64, (SerializationInfo * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x01A212A0, float, SerializationInfo_GetSingle, (SerializationInfo * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x01A213C0, String *, SerializationInfo_GetString, (SerializationInfo * __this, String * name, MethodInfo * method)); -DO_APP_FUNC(0x01A214E0, void, StreamingContext__ctor, (StreamingContext__Boxed * __this, StreamingContextStates__Enum state, MethodInfo * method)); -DO_APP_FUNC(0x0096F940, void, StreamingContext__ctor_1, (StreamingContext__Boxed * __this, StreamingContextStates__Enum state, Object * additional, MethodInfo * method)); -DO_APP_FUNC(0x01A21540, bool, StreamingContext_Equals, (StreamingContext__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x00471920, int32_t, StreamingContext_GetHashCode, (StreamingContext__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471920, StreamingContextStates__Enum, StreamingContext_get_State, (StreamingContext__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01A215D0, BinaryTypeEnum__Enum, BinaryConverter_GetBinaryTypeInfo, (Type * type, WriteObjectInfo * objectInfo, String * typeName, ObjectWriter * objectWriter, Object * typeInformation, int32_t assemId, MethodInfo * method)); +DO_APP_FUNC(0x01A214E0, void, StreamingContext__ctor, (StreamingContext * __this, StreamingContextStates__Enum state, MethodInfo * method)); +DO_APP_FUNC(0x0096F940, void, StreamingContext__ctor_1, (StreamingContext * __this, StreamingContextStates__Enum state, Object * additional, MethodInfo * method)); +DO_APP_FUNC(0x01A21540, bool, StreamingContext_Equals, (StreamingContext * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x00471920, int32_t, StreamingContext_GetHashCode, (StreamingContext * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471920, StreamingContextStates__Enum, StreamingContext_get_State, (StreamingContext * __this, MethodInfo * method)); +DO_APP_FUNC(0x01A215D0, BinaryTypeEnum__Enum, BinaryConverter_GetBinaryTypeInfo, (Type * type, WriteObjectInfo * objectInfo, String * typeName, ObjectWriter * objectWriter, Object * * typeInformation, int32_t * assemId, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA27E0, BinaryConverter_GetBinaryTypeInfo__MethodInfo); -DO_APP_FUNC(0x01A219B0, BinaryTypeEnum__Enum, BinaryConverter_GetParserBinaryTypeInfo, (Type * type, Object * typeInformation, MethodInfo * method)); +DO_APP_FUNC(0x01A219B0, BinaryTypeEnum__Enum, BinaryConverter_GetParserBinaryTypeInfo, (Type * type, Object * * typeInformation, MethodInfo * method)); DO_APP_FUNC(0x01A21CD0, void, BinaryConverter_WriteTypeInfo, (BinaryTypeEnum__Enum binaryTypeEnum, Object * typeInformation, int32_t assemId, _BinaryWriter * sout, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA2790, BinaryConverter_WriteTypeInfo__MethodInfo); -DO_APP_FUNC(0x01A21F40, Object *, BinaryConverter_ReadTypeInfo, (BinaryTypeEnum__Enum binaryTypeEnum, _BinaryParser * input, int32_t assemId, MethodInfo * method)); +DO_APP_FUNC(0x01A21F40, Object *, BinaryConverter_ReadTypeInfo, (BinaryTypeEnum__Enum binaryTypeEnum, _BinaryParser * input, int32_t * assemId, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA27A8, BinaryConverter_ReadTypeInfo__MethodInfo); -DO_APP_FUNC(0x01A22170, void, BinaryConverter_TypeFromInfo, (BinaryTypeEnum__Enum binaryTypeEnum, Object * typeInformation, ObjectReader * objectReader, BinaryAssemblyInfo * assemblyInfo, InternalPrimitiveTypeE__Enum primitiveTypeEnum, String * typeString, Type * type, bool isVariant, MethodInfo * method)); +DO_APP_FUNC(0x01A22170, void, BinaryConverter_TypeFromInfo, (BinaryTypeEnum__Enum binaryTypeEnum, Object * typeInformation, ObjectReader * objectReader, BinaryAssemblyInfo * assemblyInfo, InternalPrimitiveTypeE__Enum * primitiveTypeEnum, String * * typeString, Type * * type, bool * isVariant, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA2730, BinaryConverter_TypeFromInfo__MethodInfo); DO_APP_FUNC(0x01A22670, bool, IOUtil_FlagTest, (MessageEnum__Enum flag, MessageEnum__Enum target, MethodInfo * method)); DO_APP_FUNC(0x01A22680, void, IOUtil_WriteStringWithCode, (String * value, _BinaryWriter * sout, MethodInfo * method)); @@ -8099,13 +8800,13 @@ DO_APP_FUNC(0x003AE050, void, MessageEnd_Dump_1, (MessageEnd * __this, Stream * DO_APP_FUNC(0x01A25820, void, ObjectMap__ctor, (ObjectMap * __this, String * objectName, Type * objectType, String__Array * memberNames, ObjectReader * objectReader, int32_t objectId, BinaryAssemblyInfo * assemblyInfo, MethodInfo * method)); DO_APP_FUNC(0x01A25E30, void, ObjectMap__ctor_1, (ObjectMap * __this, String * objectName, String__Array * memberNames, BinaryTypeEnum__Enum__Array * binaryTypeEnumA, Object__Array * typeInformationA, Int32__Array * memberAssemIds, ObjectReader * objectReader, int32_t objectId, BinaryAssemblyInfo * assemblyInfo, SizedArray * assemIdToAssemblyTable, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA5938, ObjectMap__ctor_1__MethodInfo); -DO_APP_FUNC(0x01A26670, ReadObjectInfo *, ObjectMap_CreateObjectInfo, (ObjectMap * __this, SerializationInfo * si, Object__Array * memberData, MethodInfo * method)); +DO_APP_FUNC(0x01A26670, ReadObjectInfo *, ObjectMap_CreateObjectInfo, (ObjectMap * __this, SerializationInfo * * si, Object__Array * * memberData, MethodInfo * method)); DO_APP_FUNC(0x01A266C0, ObjectMap *, ObjectMap_Create, (String * name, Type * objectType, String__Array * memberNames, ObjectReader * objectReader, int32_t objectId, BinaryAssemblyInfo * assemblyInfo, MethodInfo * method)); DO_APP_FUNC(0x01A26770, ObjectMap *, ObjectMap_Create_1, (String * name, String__Array * memberNames, BinaryTypeEnum__Enum__Array * binaryTypeEnumA, Object__Array * typeInformationA, Int32__Array * memberAssemIds, ObjectReader * objectReader, int32_t objectId, BinaryAssemblyInfo * assemblyInfo, SizedArray * assemIdToAssemblyTable, MethodInfo * method)); DO_APP_FUNC(0x01A26850, void, ObjectProgress__ctor, (ObjectProgress * __this, MethodInfo * method)); DO_APP_FUNC(0x01A268F0, void, ObjectProgress_Init, (ObjectProgress * __this, MethodInfo * method)); DO_APP_FUNC(0x01A26BE0, void, ObjectProgress_ArrayCountIncrement, (ObjectProgress * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x01A26BF0, bool, ObjectProgress_GetNext, (ObjectProgress * __this, BinaryTypeEnum__Enum outBinaryTypeEnum, Object * outTypeInformation, MethodInfo * method)); +DO_APP_FUNC(0x01A26BF0, bool, ObjectProgress_GetNext, (ObjectProgress * __this, BinaryTypeEnum__Enum * outBinaryTypeEnum, Object * * outTypeInformation, MethodInfo * method)); DO_APP_FUNC(0x01A26E90, void, ObjectProgress__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01A26ED0, InternalPrimitiveTypeE__Enum, Converter_ToCode, (Type * type, MethodInfo * method)); DO_APP_FUNC(0x01A27130, bool, Converter_IsWriteAsByteArray, (InternalPrimitiveTypeE__Enum code, MethodInfo * method)); @@ -8115,7 +8816,7 @@ DO_APP_FUNC(0x01A272F0, void, Converter_InitTypeA, (MethodInfo * method)); DO_APP_FUNC(0x01A27930, void, Converter_InitArrayTypeA, (MethodInfo * method)); DO_APP_FUNC(0x01A27F80, Type *, Converter_ToType, (InternalPrimitiveTypeE__Enum code, MethodInfo * method)); DO_APP_FUNC(0x01A28050, Array *, Converter_CreatePrimitiveArray, (InternalPrimitiveTypeE__Enum code, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01A28280, bool, Converter_IsPrimitiveArray, (Type * type, Object * typeInformation, MethodInfo * method)); +DO_APP_FUNC(0x01A28280, bool, Converter_IsPrimitiveArray, (Type * type, Object * * typeInformation, MethodInfo * method)); DO_APP_FUNC(0x01A28680, void, Converter_InitValueA, (MethodInfo * method)); DO_APP_FUNC(0x01A28D30, String *, Converter_ToComType, (InternalPrimitiveTypeE__Enum code, MethodInfo * method)); DO_APP_FUNC(0x01A28E00, void, Converter_InitTypeCodeA, (MethodInfo * method)); @@ -8205,7 +8906,7 @@ DO_APP_FUNC(0x01A31530, String *, WriteObjectInfo_GetAssemblyString, (WriteObjec DO_APP_FUNC(0x01A31560, void, WriteObjectInfo_InvokeSerializationBinder, (WriteObjectInfo * __this, SerializationBinder * binder, MethodInfo * method)); DO_APP_FUNC(0x01A315A0, Type *, WriteObjectInfo_GetMemberType, (WriteObjectInfo * __this, MemberInfo_1 * objMember, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA56A0, WriteObjectInfo_GetMemberType__MethodInfo); -DO_APP_FUNC(0x01A31790, void, WriteObjectInfo_GetMemberInfo, (WriteObjectInfo * __this, String__Array * outMemberNames, Type__Array * outMemberTypes, Object__Array * outMemberData, MethodInfo * method)); +DO_APP_FUNC(0x01A31790, void, WriteObjectInfo_GetMemberInfo, (WriteObjectInfo * __this, String__Array * * outMemberNames, Type__Array * * outMemberTypes, Object__Array * * outMemberData, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA56B0, WriteObjectInfo_GetMemberInfo__MethodInfo); DO_APP_FUNC(0x01A31930, WriteObjectInfo *, WriteObjectInfo_GetObjectInfo, (SerObjectInfoInit * serObjectInfoInit, MethodInfo * method)); DO_APP_FUNC(0x01A31A00, void, WriteObjectInfo_PutObjectInfo, (SerObjectInfoInit * serObjectInfoInit, WriteObjectInfo * objectInfo, MethodInfo * method)); @@ -8224,8 +8925,8 @@ DO_APP_FUNC(0x01A32C70, MemberInfo_1 *, ReadObjectInfo_GetMemberInfo, (ReadObjec DO_APP_FUNC_METHODINFO(0x03CA5668, ReadObjectInfo_GetMemberInfo__MethodInfo); DO_APP_FUNC(0x01A32F00, Type *, ReadObjectInfo_GetType, (ReadObjectInfo * __this, String * name, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA5688, ReadObjectInfo_GetType__MethodInfo); -DO_APP_FUNC(0x01A330D0, void, ReadObjectInfo_AddValue, (ReadObjectInfo * __this, String * name, Object * value, SerializationInfo * si, Object__Array * memberData, MethodInfo * method)); -DO_APP_FUNC(0x01A33180, void, ReadObjectInfo_InitDataStore, (ReadObjectInfo * __this, SerializationInfo * si, Object__Array * memberData, MethodInfo * method)); +DO_APP_FUNC(0x01A330D0, void, ReadObjectInfo_AddValue, (ReadObjectInfo * __this, String * name, Object * value, SerializationInfo * * si, Object__Array * * memberData, MethodInfo * method)); +DO_APP_FUNC(0x01A33180, void, ReadObjectInfo_InitDataStore, (ReadObjectInfo * __this, SerializationInfo * * si, Object__Array * * memberData, MethodInfo * method)); DO_APP_FUNC(0x01A332B0, void, ReadObjectInfo_RecordFixup, (ReadObjectInfo * __this, int64_t objectId, String * name, int64_t idRef, MethodInfo * method)); DO_APP_FUNC(0x01A33380, void, ReadObjectInfo_PopulateObjectMembers, (ReadObjectInfo * __this, Object * obj, Object__Array * memberData, MethodInfo * method)); DO_APP_FUNC(0x01A33410, int32_t, ReadObjectInfo_Position, (ReadObjectInfo * __this, String * name, MethodInfo * method)); @@ -8281,7 +8982,7 @@ DO_APP_FUNC(0x01A38C90, Type *, ObjectReader_Bind, (ObjectReader * __this, Strin DO_APP_FUNC(0x01A38CF0, Type *, ObjectReader_FastBindToType, (ObjectReader * __this, String * assemblyName, String * typeName, MethodInfo * method)); DO_APP_FUNC(0x01A391B0, Assembly *, ObjectReader_ResolveSimpleAssemblyName, (AssemblyName * assemblyName, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA54F0, ObjectReader_ResolveSimpleAssemblyName__MethodInfo); -DO_APP_FUNC(0x01A39270, void, ObjectReader_GetSimplyNamedTypeFromAssembly, (Assembly * assm, String * typeName, Type * type, MethodInfo * method)); +DO_APP_FUNC(0x01A39270, void, ObjectReader_GetSimplyNamedTypeFromAssembly, (Assembly * assm, String * typeName, Type * * type, MethodInfo * method)); DO_APP_FUNC(0x01A39580, Type *, ObjectReader_GetType, (ObjectReader * __this, BinaryAssemblyInfo * assemblyInfo, String * name, MethodInfo * method)); DO_APP_FUNC(0x01A39A90, void, ObjectReader_CheckTypeForwardedTo, (Assembly * sourceAssembly, Assembly * destAssembly, Type * resolvedType, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ObjectReader_TypeNAssembly__ctor, (ObjectReader_TypeNAssembly * __this, MethodInfo * method)); @@ -8300,9 +9001,9 @@ DO_APP_FUNC(0x01A3B560, void, ObjectWriter_WriteMembers, (ObjectWriter * __this, DO_APP_FUNC(0x01A3BC60, void, ObjectWriter_WriteArray, (ObjectWriter * __this, WriteObjectInfo * objectInfo, NameInfo * memberNameInfo, WriteObjectInfo * memberObjectInfo, MethodInfo * method)); DO_APP_FUNC(0x01A3C7F0, void, ObjectWriter_WriteArrayMember, (ObjectWriter * __this, WriteObjectInfo * objectInfo, NameInfo * arrayElemTypeNameInfo, Object * data, MethodInfo * method)); DO_APP_FUNC(0x01A3CCC0, void, ObjectWriter_WriteRectangle, (ObjectWriter * __this, WriteObjectInfo * objectInfo, int32_t rank, Int32__Array * maxA, Array * array, NameInfo * arrayElemNameTypeInfo, Int32__Array * lowerBoundA, MethodInfo * method)); -DO_APP_FUNC(0x01A3CED0, Object *, ObjectWriter_GetNext, (ObjectWriter * __this, int64_t objID, MethodInfo * method)); +DO_APP_FUNC(0x01A3CED0, Object *, ObjectWriter_GetNext, (ObjectWriter * __this, int64_t * objID, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA5498, ObjectWriter_GetNext__MethodInfo); -DO_APP_FUNC(0x01A3D0A0, int64_t, ObjectWriter_InternalGetId, (ObjectWriter * __this, Object * obj, bool assignUniqueIdToValueType, Type * type, bool isNew, MethodInfo * method)); +DO_APP_FUNC(0x01A3D0A0, int64_t, ObjectWriter_InternalGetId, (ObjectWriter * __this, Object * obj, bool assignUniqueIdToValueType, Type * type, bool * isNew, MethodInfo * method)); DO_APP_FUNC(0x01A3D1E0, int64_t, ObjectWriter_Schedule, (ObjectWriter * __this, Object * obj, bool assignUniqueIdToValueType, Type * type, MethodInfo * method)); DO_APP_FUNC(0x01A3D260, int64_t, ObjectWriter_Schedule_1, (ObjectWriter * __this, Object * obj, bool assignUniqueIdToValueType, Type * type, WriteObjectInfo * objectInfo, MethodInfo * method)); DO_APP_FUNC(0x01A3D310, bool, ObjectWriter_WriteKnownValueClass, (ObjectWriter * __this, NameInfo * memberNameInfo, NameInfo * typeNameInfo, Object * data, MethodInfo * method)); @@ -8429,26 +9130,26 @@ DO_APP_FUNC(0x01A48160, void, ExternalException__ctor_3, (ExternalException * __ DO_APP_FUNC(0x01980BF0, void, ExternalException__ctor_4, (ExternalException * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x0071AD80, int32_t, ExternalException_get_ErrorCode, (ExternalException * __this, MethodInfo * method)); DO_APP_FUNC(0x01A48190, String *, ExternalException_ToString, (ExternalException * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171CEC0, void, HandleRef__ctor, (HandleRef__Boxed * __this, Object * wrapper, void * handle, MethodInfo * method)); -DO_APP_FUNC(0x00471910, Object *, HandleRef_get_Wrapper, (HandleRef__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, void *, HandleRef_get_Handle, (HandleRef__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171CEC0, void, HandleRef__ctor, (HandleRef * __this, Object * wrapper, void * handle, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Object *, HandleRef_get_Wrapper, (HandleRef * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, void *, HandleRef_get_Handle, (HandleRef * __this, MethodInfo * method)); DO_APP_FUNC(0x01A48470, void, MarshalDirectiveException__ctor, (MarshalDirectiveException * __this, MethodInfo * method)); DO_APP_FUNC(0x01A484C0, void, MarshalDirectiveException__ctor_1, (MarshalDirectiveException * __this, String * message, MethodInfo * method)); DO_APP_FUNC(0x01980BF0, void, MarshalDirectiveException__ctor_2, (MarshalDirectiveException * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x01A484E0, OSPlatform, OSPlatform_get_Linux, (MethodInfo * method)); DO_APP_FUNC(0x01A48540, OSPlatform, OSPlatform_get_OSX, (MethodInfo * method)); DO_APP_FUNC(0x01A485A0, OSPlatform, OSPlatform_get_Windows, (MethodInfo * method)); -DO_APP_FUNC(0x01A48600, void, OSPlatform__ctor, (OSPlatform__Boxed * __this, String * osPlatform, MethodInfo * method)); +DO_APP_FUNC(0x01A48600, void, OSPlatform__ctor, (OSPlatform * __this, String * osPlatform, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA8CB0, OSPlatform__ctor__MethodInfo); DO_APP_FUNC(0x01A48730, OSPlatform, OSPlatform_Create, (String * osPlatform, MethodInfo * method)); -DO_APP_FUNC(0x01A48760, bool, OSPlatform_Equals, (OSPlatform__Boxed * __this, OSPlatform other, MethodInfo * method)); -DO_APP_FUNC(0x01A48830, bool, OSPlatform_Equals_1, (OSPlatform__Boxed * __this, String * other, MethodInfo * method)); -DO_APP_FUNC(0x01A488D0, bool, OSPlatform_Equals_2, (OSPlatform__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x010F96A0, int32_t, OSPlatform_GetHashCode, (OSPlatform__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01A48970, String *, OSPlatform_ToString, (OSPlatform__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01A48760, bool, OSPlatform_Equals, (OSPlatform * __this, OSPlatform other, MethodInfo * method)); +DO_APP_FUNC(0x01A48830, bool, OSPlatform_Equals_1, (OSPlatform * __this, String * other, MethodInfo * method)); +DO_APP_FUNC(0x01A488D0, bool, OSPlatform_Equals_2, (OSPlatform * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x010F96A0, int32_t, OSPlatform_GetHashCode, (OSPlatform * __this, MethodInfo * method)); +DO_APP_FUNC(0x01A48970, String *, OSPlatform_ToString, (OSPlatform * __this, MethodInfo * method)); DO_APP_FUNC(0x01A489C0, bool, OSPlatform_op_Equality, (OSPlatform left, OSPlatform right, MethodInfo * method)); DO_APP_FUNC(0x01A48A20, void, OSPlatform__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x01A48C30, void, SafeBuffer_AcquirePointer, (SafeBuffer * __this, uint8_t * pointer, MethodInfo * method)); +DO_APP_FUNC(0x01A48C30, void, SafeBuffer_AcquirePointer, (SafeBuffer * __this, uint8_t * * pointer, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA8C88, SafeBuffer_AcquirePointer__MethodInfo); DO_APP_FUNC(0x01A48D40, void, SafeBuffer_ReleasePointer, (SafeBuffer * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA8C90, SafeBuffer_ReleasePointer__MethodInfo); @@ -8493,7 +9194,7 @@ DO_APP_FUNC(0x01A497A0, void, SafeHandle_Close, (SafeHandle * __this, MethodInfo DO_APP_FUNC(0x01A497A0, void, SafeHandle_Dispose, (SafeHandle * __this, MethodInfo * method)); DO_APP_FUNC(0x01A49860, void, SafeHandle_Dispose_1, (SafeHandle * __this, bool disposing, MethodInfo * method)); DO_APP_FUNC(0x01A49920, void, SafeHandle_SetHandleAsInvalid, (SafeHandle * __this, MethodInfo * method)); -DO_APP_FUNC(0x01A49A50, void, SafeHandle_DangerousAddRef, (SafeHandle * __this, bool success, MethodInfo * method)); +DO_APP_FUNC(0x01A49A50, void, SafeHandle_DangerousAddRef, (SafeHandle * __this, bool * success, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA8C18, SafeHandle_DangerousAddRef__MethodInfo); DO_APP_FUNC(0x01A49BF0, void, SafeHandle_DangerousRelease, (SafeHandle * __this, MethodInfo * method)); DO_APP_FUNC(0x01A49C00, void, SafeHandle_InternalDispose, (SafeHandle * __this, MethodInfo * method)); @@ -8505,18 +9206,18 @@ DO_APP_FUNC(0x01A49F50, void, RuntimeInformation__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01A4A9E0, String *, RuntimeInformation_GetRuntimeArchitecture, (MethodInfo * method)); DO_APP_FUNC(0x01A4AA00, String *, RuntimeInformation_GetOSName, (MethodInfo * method)); DO_APP_FUNC(0x01A4AA20, bool, RuntimeInformation_IsOSPlatform, (OSPlatform osPlatform, MethodInfo * method)); -DO_APP_FUNC(0x00A9A2A0, void, GCHandle__ctor, (GCHandle__Boxed * __this, void * h, MethodInfo * method)); -DO_APP_FUNC(0x01A4AB00, void, GCHandle__ctor_1, (GCHandle__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x01A4AC20, void, GCHandle__ctor_2, (GCHandle__Boxed * __this, Object * value, GCHandleType__Enum type, MethodInfo * method)); -DO_APP_FUNC(0x01A4ACA0, bool, GCHandle_get_IsAllocated, (GCHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01A4ACF0, Object *, GCHandle_get_Target, (GCHandle__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9A2A0, void, GCHandle__ctor, (GCHandle * __this, void * h, MethodInfo * method)); +DO_APP_FUNC(0x01A4AB00, void, GCHandle__ctor_1, (GCHandle * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x01A4AC20, void, GCHandle__ctor_2, (GCHandle * __this, Object * value, GCHandleType__Enum type, MethodInfo * method)); +DO_APP_FUNC(0x01A4ACA0, bool, GCHandle_get_IsAllocated, (GCHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x01A4ACF0, Object *, GCHandle_get_Target, (GCHandle * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA8B28, GCHandle_get_Target__MethodInfo); -DO_APP_FUNC(0x01A4AD90, void, GCHandle_set_Target, (GCHandle__Boxed * __this, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x01A4AE30, void *, GCHandle_AddrOfPinnedObject, (GCHandle__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01A4AD90, void, GCHandle_set_Target, (GCHandle * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x01A4AE30, void *, GCHandle_AddrOfPinnedObject, (GCHandle * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA8B38, GCHandle_AddrOfPinnedObject__MethodInfo); DO_APP_FUNC(0x01A4AF40, GCHandle, GCHandle_Alloc, (Object * value, MethodInfo * method)); DO_APP_FUNC(0x01A4AF70, GCHandle, GCHandle_Alloc_1, (Object * value, GCHandleType__Enum type, MethodInfo * method)); -DO_APP_FUNC(0x01A4B130, void, GCHandle_Free, (GCHandle__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01A4B130, void, GCHandle_Free, (GCHandle * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA8B50, GCHandle_Free__MethodInfo); DO_APP_FUNC(0x00A1B820, void *, GCHandle_op_Explicit, (GCHandle value, MethodInfo * method)); DO_APP_FUNC(0x01A4B1E0, GCHandle, GCHandle_op_Explicit_1, (void * value, MethodInfo * method)); @@ -8527,8 +9228,8 @@ DO_APP_FUNC(0x01A4B290, void *, GCHandle_GetTargetHandle, (Object * obj, void * DO_APP_FUNC(0x01A4B390, void, GCHandle_FreeHandle, (void * handle, MethodInfo * method)); DO_APP_FUNC(0x01A4B3A0, void *, GCHandle_GetAddrOfPinnedObject, (void * handle, MethodInfo * method)); DO_APP_FUNC(0x00A89090, bool, GCHandle_op_Equality, (GCHandle a, GCHandle b, MethodInfo * method)); -DO_APP_FUNC(0x01A4B400, bool, GCHandle_Equals, (GCHandle__Boxed * __this, Object * o, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, GCHandle_GetHashCode, (GCHandle__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01A4B400, bool, GCHandle_Equals, (GCHandle * __this, Object * o, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, GCHandle_GetHashCode, (GCHandle * __this, MethodInfo * method)); DO_APP_FUNC(0x01A4B490, GCHandle, GCHandle_FromIntPtr, (void * value, MethodInfo * method)); DO_APP_FUNC(0x00A1B820, void *, GCHandle_ToIntPtr, (GCHandle value, MethodInfo * method)); DO_APP_FUNC(0x01A4B4A0, void *, Marshal_AllocCoTaskMem, (int32_t cb, MethodInfo * method)); @@ -8648,12 +9349,12 @@ DO_APP_FUNC(0x003BCBE0, void, AsyncStateMachineAttribute__ctor, (AsyncStateMachi DO_APP_FUNC(0x003AE050, void, CallerFilePathAttribute__ctor, (CallerFilePathAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CallerMemberNameAttribute__ctor, (CallerMemberNameAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CompilerGeneratedAttribute__ctor, (CompilerGeneratedAttribute * __this, MethodInfo * method)); -DO_APP_FUNC(0x01143B90, void, ConfiguredValueTaskAwaitable__ctor, (ConfiguredValueTaskAwaitable__Boxed * __this, ValueTask value, MethodInfo * method)); -DO_APP_FUNC(0x01A4F500, ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter, ConfiguredValueTaskAwaitable_GetAwaiter, (ConfiguredValueTaskAwaitable__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01143B90, void, ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter__ctor, (ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter__Boxed * __this, ValueTask value, MethodInfo * method)); -DO_APP_FUNC(0x01A4F560, bool, ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter_get_IsCompleted, (ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01A4F5B0, void, ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter_GetResult, (ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01A4F600, void, ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter_UnsafeOnCompleted, (ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter__Boxed * __this, Action * continuation, MethodInfo * method)); +DO_APP_FUNC(0x01143B90, void, ConfiguredValueTaskAwaitable__ctor, (ConfiguredValueTaskAwaitable * __this, ValueTask value, MethodInfo * method)); +DO_APP_FUNC(0x01A4F500, ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter, ConfiguredValueTaskAwaitable_GetAwaiter, (ConfiguredValueTaskAwaitable * __this, MethodInfo * method)); +DO_APP_FUNC(0x01143B90, void, ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter__ctor, (ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter * __this, ValueTask value, MethodInfo * method)); +DO_APP_FUNC(0x01A4F560, bool, ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter_get_IsCompleted, (ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter * __this, MethodInfo * method)); +DO_APP_FUNC(0x01A4F5B0, void, ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter_GetResult, (ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter * __this, MethodInfo * method)); +DO_APP_FUNC(0x01A4F600, void, ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter_UnsafeOnCompleted, (ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter * __this, Action * continuation, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CustomConstantAttribute__ctor, (CustomConstantAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x01A4F880, Object *, DateTimeConstantAttribute_get_Value, (DateTimeConstantAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x01A4F8D0, void, DecimalConstantAttribute__ctor, (DecimalConstantAttribute * __this, uint8_t scale, uint8_t sign, uint32_t hi, uint32_t mid, uint32_t low, MethodInfo * method)); @@ -8693,19 +9394,19 @@ DO_APP_FUNC(0x01A500D0, void, TypeForwardedFromAttribute__ctor, (TypeForwardedFr DO_APP_FUNC_METHODINFO(0x03CA8828, TypeForwardedFromAttribute__ctor__MethodInfo); DO_APP_FUNC(0x003BB3C0, String *, TypeForwardedFromAttribute_get_AssemblyFullName, (TypeForwardedFromAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, UnsafeValueTypeAttribute__ctor, (UnsafeValueTypeAttribute * __this, MethodInfo * method)); -DO_APP_FUNC(0x01143B90, void, ValueTaskAwaiter__ctor, (ValueTaskAwaiter__Boxed * __this, ValueTask value, MethodInfo * method)); -DO_APP_FUNC(0x01A50190, bool, ValueTaskAwaiter_get_IsCompleted, (ValueTaskAwaiter__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01A501E0, void, ValueTaskAwaiter_GetResult, (ValueTaskAwaiter__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01A50230, void, ValueTaskAwaiter_UnsafeOnCompleted, (ValueTaskAwaiter__Boxed * __this, Action * continuation, MethodInfo * method)); +DO_APP_FUNC(0x01143B90, void, ValueTaskAwaiter__ctor, (ValueTaskAwaiter * __this, ValueTask value, MethodInfo * method)); +DO_APP_FUNC(0x01A50190, bool, ValueTaskAwaiter_get_IsCompleted, (ValueTaskAwaiter * __this, MethodInfo * method)); +DO_APP_FUNC(0x01A501E0, void, ValueTaskAwaiter_GetResult, (ValueTaskAwaiter * __this, MethodInfo * method)); +DO_APP_FUNC(0x01A50230, void, ValueTaskAwaiter_UnsafeOnCompleted, (ValueTaskAwaiter * __this, Action * continuation, MethodInfo * method)); DO_APP_FUNC(0x01A504C0, void, ValueTaskAwaiter__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01A505F0, void, ValueTaskAwaiter_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ValueTaskAwaiter_c__ctor, (ValueTaskAwaiter_c * __this, MethodInfo * method)); DO_APP_FUNC(0x01A506A0, void, ValueTaskAwaiter_c___cctor_b__9_0, (ValueTaskAwaiter_c * __this, Object * state, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA8848, ValueTaskAwaiter_c___cctor_b__9_0__MethodInfo); -DO_APP_FUNC(0x003BC280, void, TaskAwaiter__ctor, (TaskAwaiter__Boxed * __this, Task * task, MethodInfo * method)); -DO_APP_FUNC(0x010CC040, bool, TaskAwaiter_get_IsCompleted, (TaskAwaiter__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010CC0B0, void, TaskAwaiter_UnsafeOnCompleted, (TaskAwaiter__Boxed * __this, Action * continuation, MethodInfo * method)); -DO_APP_FUNC(0x01A50710, void, TaskAwaiter_GetResult, (TaskAwaiter__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, TaskAwaiter__ctor, (TaskAwaiter * __this, Task * task, MethodInfo * method)); +DO_APP_FUNC(0x010CC040, bool, TaskAwaiter_get_IsCompleted, (TaskAwaiter * __this, MethodInfo * method)); +DO_APP_FUNC(0x010CC0B0, void, TaskAwaiter_UnsafeOnCompleted, (TaskAwaiter * __this, Action * continuation, MethodInfo * method)); +DO_APP_FUNC(0x01A50710, void, TaskAwaiter_GetResult, (TaskAwaiter * __this, MethodInfo * method)); DO_APP_FUNC(0x01A50750, void, TaskAwaiter_ValidateEnd, (Task * task, MethodInfo * method)); DO_APP_FUNC(0x01A50790, void, TaskAwaiter_HandleNonSuccessAndDebuggerNotification, (Task * task, MethodInfo * method)); DO_APP_FUNC(0x01A509A0, void, TaskAwaiter_ThrowForNonSuccess, (Task * task, MethodInfo * method)); @@ -8716,34 +9417,34 @@ DO_APP_FUNC(0x01A50BF0, Action *, TaskAwaiter_OutputWaitEtwEvents, (Task * task, DO_APP_FUNC(0x003AE050, void, TaskAwaiter_c_DisplayClass11_0__ctor, (TaskAwaiter_c_DisplayClass11_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x01A50EA0, void, TaskAwaiter_c_DisplayClass11_0__OutputWaitEtwEvents_b__0, (TaskAwaiter_c_DisplayClass11_0 * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA87E0, TaskAwaiter_c_DisplayClass11_0__OutputWaitEtwEvents_b__0__MethodInfo); -DO_APP_FUNC(0x01A50FB0, void, ConfiguredTaskAwaitable__ctor, (ConfiguredTaskAwaitable__Boxed * __this, Task * task, bool continueOnCapturedContext, MethodInfo * method)); -DO_APP_FUNC(0x00C2FFD0, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter, ConfiguredTaskAwaitable_GetAwaiter, (ConfiguredTaskAwaitable__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x011512A0, void, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter__ctor, (ConfiguredTaskAwaitable_ConfiguredTaskAwaiter__Boxed * __this, Task * task, bool continueOnCapturedContext, MethodInfo * method)); -DO_APP_FUNC(0x010CC040, bool, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter_get_IsCompleted, (ConfiguredTaskAwaitable_ConfiguredTaskAwaiter__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01A51070, void, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter_OnCompleted, (ConfiguredTaskAwaitable_ConfiguredTaskAwaiter__Boxed * __this, Action * continuation, MethodInfo * method)); -DO_APP_FUNC(0x0130F850, void, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter_UnsafeOnCompleted, (ConfiguredTaskAwaitable_ConfiguredTaskAwaiter__Boxed * __this, Action * continuation, MethodInfo * method)); -DO_APP_FUNC(0x01A50710, void, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter_GetResult, (ConfiguredTaskAwaitable_ConfiguredTaskAwaiter__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01A50FB0, void, ConfiguredTaskAwaitable__ctor, (ConfiguredTaskAwaitable * __this, Task * task, bool continueOnCapturedContext, MethodInfo * method)); +DO_APP_FUNC(0x00C2FFD0, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter, ConfiguredTaskAwaitable_GetAwaiter, (ConfiguredTaskAwaitable * __this, MethodInfo * method)); +DO_APP_FUNC(0x011512A0, void, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter__ctor, (ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * __this, Task * task, bool continueOnCapturedContext, MethodInfo * method)); +DO_APP_FUNC(0x010CC040, bool, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter_get_IsCompleted, (ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * __this, MethodInfo * method)); +DO_APP_FUNC(0x01A51070, void, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter_OnCompleted, (ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * __this, Action * continuation, MethodInfo * method)); +DO_APP_FUNC(0x0130F850, void, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter_UnsafeOnCompleted, (ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * __this, Action * continuation, MethodInfo * method)); +DO_APP_FUNC(0x01A50710, void, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter_GetResult, (ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ReflectionBlockedAttribute__ctor, (ReflectionBlockedAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x01A51140, AsyncVoidMethodBuilder, AsyncVoidMethodBuilder_Create, (MethodInfo * method)); -DO_APP_FUNC(0x01A512B0, void, AsyncVoidMethodBuilder_SetStateMachine, (AsyncVoidMethodBuilder__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x01A512C0, void, AsyncVoidMethodBuilder_SetResult, (AsyncVoidMethodBuilder__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01A512D0, void, AsyncVoidMethodBuilder_SetException, (AsyncVoidMethodBuilder__Boxed * __this, Exception * exception, MethodInfo * method)); +DO_APP_FUNC(0x01A512B0, void, AsyncVoidMethodBuilder_SetStateMachine, (AsyncVoidMethodBuilder * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x01A512C0, void, AsyncVoidMethodBuilder_SetResult, (AsyncVoidMethodBuilder * __this, MethodInfo * method)); +DO_APP_FUNC(0x01A512D0, void, AsyncVoidMethodBuilder_SetException, (AsyncVoidMethodBuilder * __this, Exception * exception, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA8760, AsyncVoidMethodBuilder_SetException__MethodInfo); -DO_APP_FUNC(0x01A513B0, void, AsyncVoidMethodBuilder_NotifySynchronizationContextOfCompletion, (AsyncVoidMethodBuilder__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01A51400, Task *, AsyncVoidMethodBuilder_get_Task, (AsyncVoidMethodBuilder__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01A513B0, void, AsyncVoidMethodBuilder_NotifySynchronizationContextOfCompletion, (AsyncVoidMethodBuilder * __this, MethodInfo * method)); +DO_APP_FUNC(0x01A51400, Task *, AsyncVoidMethodBuilder_get_Task, (AsyncVoidMethodBuilder * __this, MethodInfo * method)); DO_APP_FUNC(0x0121A100, AsyncTaskMethodBuilder, AsyncTaskMethodBuilder_Create, (MethodInfo * method)); -DO_APP_FUNC(0x01A514C0, void, AsyncTaskMethodBuilder_SetStateMachine, (AsyncTaskMethodBuilder__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x01A51530, Task *, AsyncTaskMethodBuilder_get_Task, (AsyncTaskMethodBuilder__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01A515A0, void, AsyncTaskMethodBuilder_SetResult, (AsyncTaskMethodBuilder__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01A51650, void, AsyncTaskMethodBuilder_SetException, (AsyncTaskMethodBuilder__Boxed * __this, Exception * exception, MethodInfo * method)); +DO_APP_FUNC(0x01A514C0, void, AsyncTaskMethodBuilder_SetStateMachine, (AsyncTaskMethodBuilder * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x01A51530, Task *, AsyncTaskMethodBuilder_get_Task, (AsyncTaskMethodBuilder * __this, MethodInfo * method)); +DO_APP_FUNC(0x01A515A0, void, AsyncTaskMethodBuilder_SetResult, (AsyncTaskMethodBuilder * __this, MethodInfo * method)); +DO_APP_FUNC(0x01A51650, void, AsyncTaskMethodBuilder_SetException, (AsyncTaskMethodBuilder * __this, Exception * exception, MethodInfo * method)); DO_APP_FUNC(0x01A516D0, void, AsyncTaskMethodBuilder__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01A517A0, Task_1_System_Int32___Array *, AsyncTaskCache_CreateInt32Tasks, (MethodInfo * method)); DO_APP_FUNC(0x01A51940, void, AsyncTaskCache__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x01A51AD0, void, AsyncMethodBuilderCore_SetStateMachine, (AsyncMethodBuilderCore__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x01A51AD0, void, AsyncMethodBuilderCore_SetStateMachine, (AsyncMethodBuilderCore * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA8730, AsyncMethodBuilderCore_SetStateMachine__MethodInfo); -DO_APP_FUNC(0x01A51BF0, Action *, AsyncMethodBuilderCore_GetCompletionAction, (AsyncMethodBuilderCore__Boxed * __this, Task * taskForTracing, AsyncMethodBuilderCore_MoveNextRunner * runnerToInitialize, MethodInfo * method)); -DO_APP_FUNC(0x01A51E40, Action *, AsyncMethodBuilderCore_OutputAsyncCausalityEvents, (AsyncMethodBuilderCore__Boxed * __this, Task * innerTask, Action * continuation, MethodInfo * method)); -DO_APP_FUNC(0x01A51FB0, void, AsyncMethodBuilderCore_PostBoxInitialization, (AsyncMethodBuilderCore__Boxed * __this, IAsyncStateMachine * stateMachine, AsyncMethodBuilderCore_MoveNextRunner * runner, Task * builtTask, MethodInfo * method)); +DO_APP_FUNC(0x01A51BF0, Action *, AsyncMethodBuilderCore_GetCompletionAction, (AsyncMethodBuilderCore * __this, Task * taskForTracing, AsyncMethodBuilderCore_MoveNextRunner * * runnerToInitialize, MethodInfo * method)); +DO_APP_FUNC(0x01A51E40, Action *, AsyncMethodBuilderCore_OutputAsyncCausalityEvents, (AsyncMethodBuilderCore * __this, Task * innerTask, Action * continuation, MethodInfo * method)); +DO_APP_FUNC(0x01A51FB0, void, AsyncMethodBuilderCore_PostBoxInitialization, (AsyncMethodBuilderCore * __this, IAsyncStateMachine * stateMachine, AsyncMethodBuilderCore_MoveNextRunner * runner, Task * builtTask, MethodInfo * method)); DO_APP_FUNC(0x01A52140, void, AsyncMethodBuilderCore_ThrowAsync, (Exception * exception, SynchronizationContext * targetContext, MethodInfo * method)); DO_APP_FUNC(0x01A525C0, Action *, AsyncMethodBuilderCore_CreateContinuationWrapper, (Action * continuation, Action * invokeAction, Task * innerTask, MethodInfo * method)); DO_APP_FUNC(0x01A527E0, Task *, AsyncMethodBuilderCore_TryGetContinuationTask, (Action * action, MethodInfo * method)); @@ -8785,7 +9486,7 @@ DO_APP_FUNC_METHODINFO(0x03CA85F0, RuntimeHelpers_RunClassConstructor_1__MethodI DO_APP_FUNC(0x0041AEF0, bool, RuntimeHelpers_SufficientExecutionStack, (MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, RuntimeHelpers_TryEnsureSufficientExecutionStack, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, RuntimeHelpers_PrepareConstrainedRegions, (MethodInfo * method)); -DO_APP_FUNC(0x01A533E0, void, Unsafe_InitBlockUnaligned, (uint8_t startAddress, uint8_t value, uint32_t byteCount, MethodInfo * method)); +DO_APP_FUNC(0x01A533E0, void, Unsafe_InitBlockUnaligned, (uint8_t * startAddress, uint8_t value, uint32_t byteCount, MethodInfo * method)); DO_APP_FUNC(0x01A533F0, void, MissingManifestResourceException__ctor, (MissingManifestResourceException * __this, MethodInfo * method)); DO_APP_FUNC(0x01A53440, void, MissingManifestResourceException__ctor_1, (MissingManifestResourceException * __this, String * message, MethodInfo * method)); DO_APP_FUNC(0x01980BF0, void, MissingManifestResourceException__ctor_2, (MissingManifestResourceException * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); @@ -8836,29 +9537,29 @@ DO_APP_FUNC(0x01A56000, int32_t, FastResourceComparer_CompareOrdinal_2, (uint8_t DO_APP_FUNC(0x003AE050, void, FastResourceComparer__ctor, (FastResourceComparer * __this, MethodInfo * method)); DO_APP_FUNC(0x01A560D0, void, FastResourceComparer__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, FileBasedResourceGroveler__ctor, (FileBasedResourceGroveler * __this, ResourceManager_ResourceManagerMediator * mediator, MethodInfo * method)); -DO_APP_FUNC(0x01A56180, ResourceSet *, FileBasedResourceGroveler_GrovelForResourceSet, (FileBasedResourceGroveler * __this, CultureInfo * culture, Dictionary_2_System_String_System_Resources_ResourceSet_ * localResourceSets, bool tryParents, bool createIfNotExists, StackCrawlMark__Enum stackMark, MethodInfo * method)); +DO_APP_FUNC(0x01A56180, ResourceSet *, FileBasedResourceGroveler_GrovelForResourceSet, (FileBasedResourceGroveler * __this, CultureInfo * culture, Dictionary_2_System_String_System_Resources_ResourceSet_ * localResourceSets, bool tryParents, bool createIfNotExists, StackCrawlMark__Enum * stackMark, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA8410, FileBasedResourceGroveler_GrovelForResourceSet__MethodInfo); DO_APP_FUNC(0x01A56560, String *, FileBasedResourceGroveler_FindResourceFile, (FileBasedResourceGroveler * __this, CultureInfo * culture, String * fileName, MethodInfo * method)); DO_APP_FUNC(0x01A56620, ResourceSet *, FileBasedResourceGroveler_CreateResourceSet, (FileBasedResourceGroveler * __this, String * file, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA8440, FileBasedResourceGroveler_CreateResourceSet__MethodInfo); DO_APP_FUNC(0x003BCBE0, void, ManifestBasedResourceGroveler__ctor, (ManifestBasedResourceGroveler * __this, ResourceManager_ResourceManagerMediator * mediator, MethodInfo * method)); -DO_APP_FUNC(0x01A568E0, ResourceSet *, ManifestBasedResourceGroveler_GrovelForResourceSet, (ManifestBasedResourceGroveler * __this, CultureInfo * culture, Dictionary_2_System_String_System_Resources_ResourceSet_ * localResourceSets, bool tryParents, bool createIfNotExists, StackCrawlMark__Enum stackMark, MethodInfo * method)); +DO_APP_FUNC(0x01A568E0, ResourceSet *, ManifestBasedResourceGroveler_GrovelForResourceSet, (ManifestBasedResourceGroveler * __this, CultureInfo * culture, Dictionary_2_System_String_System_Resources_ResourceSet_ * localResourceSets, bool tryParents, bool createIfNotExists, StackCrawlMark__Enum * stackMark, MethodInfo * method)); DO_APP_FUNC(0x01A56E90, CultureInfo *, ManifestBasedResourceGroveler_UltimateFallbackFixup, (ManifestBasedResourceGroveler * __this, CultureInfo * lookForCulture, MethodInfo * method)); -DO_APP_FUNC(0x01A56FF0, CultureInfo *, ManifestBasedResourceGroveler_GetNeutralResourcesLanguage, (Assembly * a, UltimateResourceFallbackLocation__Enum fallbackLocation, MethodInfo * method)); +DO_APP_FUNC(0x01A56FF0, CultureInfo *, ManifestBasedResourceGroveler_GetNeutralResourcesLanguage, (Assembly * a, UltimateResourceFallbackLocation__Enum * fallbackLocation, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA83A8, ManifestBasedResourceGroveler_GetNeutralResourcesLanguage__MethodInfo); DO_APP_FUNC(0x01A57320, ResourceSet *, ManifestBasedResourceGroveler_CreateResourceSet, (ManifestBasedResourceGroveler * __this, Stream * store, Assembly * assembly, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA83D0, ManifestBasedResourceGroveler_CreateResourceSet__MethodInfo); -DO_APP_FUNC(0x01A57E40, Stream *, ManifestBasedResourceGroveler_GetManifestResourceStream, (ManifestBasedResourceGroveler * __this, RuntimeAssembly * satellite, String * fileName, StackCrawlMark__Enum stackMark, MethodInfo * method)); +DO_APP_FUNC(0x01A57E40, Stream *, ManifestBasedResourceGroveler_GetManifestResourceStream, (ManifestBasedResourceGroveler * __this, RuntimeAssembly * satellite, String * fileName, StackCrawlMark__Enum * stackMark, MethodInfo * method)); DO_APP_FUNC(0x01A57FB0, Stream *, ManifestBasedResourceGroveler_CaseInsensitiveManifestResourceStreamLookup, (ManifestBasedResourceGroveler * __this, RuntimeAssembly * satellite, String * name, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA8360, ManifestBasedResourceGroveler_CaseInsensitiveManifestResourceStreamLookup__MethodInfo); -DO_APP_FUNC(0x01A58430, RuntimeAssembly *, ManifestBasedResourceGroveler_GetSatelliteAssembly, (ManifestBasedResourceGroveler * __this, CultureInfo * lookForCulture, StackCrawlMark__Enum stackMark, MethodInfo * method)); +DO_APP_FUNC(0x01A58430, RuntimeAssembly *, ManifestBasedResourceGroveler_GetSatelliteAssembly, (ManifestBasedResourceGroveler * __this, CultureInfo * lookForCulture, StackCrawlMark__Enum * stackMark, MethodInfo * method)); DO_APP_FUNC(0x01A58650, bool, ManifestBasedResourceGroveler_CanUseDefaultResourceClasses, (ManifestBasedResourceGroveler * __this, String * readerTypeName, String * resSetTypeName, MethodInfo * method)); DO_APP_FUNC(0x01A587E0, String *, ManifestBasedResourceGroveler_GetSatelliteAssemblyName, (ManifestBasedResourceGroveler * __this, MethodInfo * method)); DO_APP_FUNC(0x01A58860, void, ManifestBasedResourceGroveler_HandleSatelliteMissing, (ManifestBasedResourceGroveler * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA8318, ManifestBasedResourceGroveler_HandleSatelliteMissing__MethodInfo); DO_APP_FUNC(0x01A58C40, void, ManifestBasedResourceGroveler_HandleResourceStreamMissing, (ManifestBasedResourceGroveler * __this, String * fileName, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA8340, ManifestBasedResourceGroveler_HandleResourceStreamMissing__MethodInfo); -DO_APP_FUNC(0x01A58FE0, bool, ManifestBasedResourceGroveler_GetNeutralResourcesLanguageAttribute, (Assembly * assembly, String * cultureName, int16_t fallbackLocation, MethodInfo * method)); +DO_APP_FUNC(0x01A58FE0, bool, ManifestBasedResourceGroveler_GetNeutralResourcesLanguageAttribute, (Assembly * assembly, String * * cultureName, int16_t * fallbackLocation, MethodInfo * method)); DO_APP_FUNC(0x01A591D0, void, ResourceManager_Init, (ResourceManager * __this, MethodInfo * method)); DO_APP_FUNC(0x01A592E0, void, ResourceManager__ctor, (ResourceManager * __this, MethodInfo * method)); DO_APP_FUNC(0x01A59500, void, ResourceManager__ctor_1, (ResourceManager * __this, Type * resourceSource, MethodInfo * method)); @@ -8874,8 +9575,8 @@ DO_APP_FUNC(0x01A5A460, String *, ResourceManager_GetResourceFileName, (Resource DO_APP_FUNC(0x01A5A640, ResourceSet *, ResourceManager_GetResourceSet, (ResourceManager * __this, CultureInfo * culture, bool createIfNotExists, bool tryParents, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA8228, ResourceManager_GetResourceSet__MethodInfo); DO_APP_FUNC(0x01A5AB30, ResourceSet *, ResourceManager_InternalGetResourceSet, (ResourceManager * __this, CultureInfo * culture, bool createIfNotExists, bool tryParents, MethodInfo * method)); -DO_APP_FUNC(0x01A5AB60, ResourceSet *, ResourceManager_InternalGetResourceSet_1, (ResourceManager * __this, CultureInfo * requestedCulture, bool createIfNotExists, bool tryParents, StackCrawlMark__Enum stackMark, MethodInfo * method)); -DO_APP_FUNC(0x01A5B450, void, ResourceManager_AddResourceSet, (Dictionary_2_System_String_System_Resources_ResourceSet_ * localResourceSets, String * cultureName, ResourceSet * rs, MethodInfo * method)); +DO_APP_FUNC(0x01A5AB60, ResourceSet *, ResourceManager_InternalGetResourceSet_1, (ResourceManager * __this, CultureInfo * requestedCulture, bool createIfNotExists, bool tryParents, StackCrawlMark__Enum * stackMark, MethodInfo * method)); +DO_APP_FUNC(0x01A5B450, void, ResourceManager_AddResourceSet, (Dictionary_2_System_String_System_Resources_ResourceSet_ * localResourceSets, String * cultureName, ResourceSet * * rs, MethodInfo * method)); DO_APP_FUNC(0x01A5B850, Version *, ResourceManager_GetSatelliteContractVersion, (Assembly * a, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA8198, ResourceManager_GetSatelliteContractVersion__MethodInfo); DO_APP_FUNC(0x01A5BED0, CultureInfo *, ResourceManager_GetNeutralResourcesLanguage, (Assembly * a, MethodInfo * method)); @@ -8900,10 +9601,10 @@ DO_APP_FUNC(0x01A5C9C0, UltimateResourceFallbackLocation__Enum, ResourceManager_ DO_APP_FUNC(0x01A5C9E0, RuntimeAssembly *, ResourceManager_ResourceManagerMediator_get_CallingAssembly, (ResourceManager_ResourceManagerMediator * __this, MethodInfo * method)); DO_APP_FUNC(0x01A5CA00, RuntimeAssembly *, ResourceManager_ResourceManagerMediator_get_MainAssembly, (ResourceManager_ResourceManagerMediator * __this, MethodInfo * method)); DO_APP_FUNC(0x01A5CA90, String *, ResourceManager_ResourceManagerMediator_get_BaseName, (ResourceManager_ResourceManagerMediator * __this, MethodInfo * method)); -DO_APP_FUNC(0x0096F940, void, ResourceLocator__ctor, (ResourceLocator__Boxed * __this, int32_t dataPos, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x00471920, int32_t, ResourceLocator_get_DataPosition, (ResourceLocator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, Object *, ResourceLocator_get_Value, (ResourceLocator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, ResourceLocator_set_Value, (ResourceLocator__Boxed * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0096F940, void, ResourceLocator__ctor, (ResourceLocator * __this, int32_t dataPos, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x00471920, int32_t, ResourceLocator_get_DataPosition, (ResourceLocator * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Object *, ResourceLocator_get_Value, (ResourceLocator * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, ResourceLocator_set_Value, (ResourceLocator * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01A5CAC0, bool, ResourceLocator_CanCache, (ResourceTypeCode__Enum value, MethodInfo * method)); DO_APP_FUNC(0x01A5CAD0, void, ResourceReader__ctor, (ResourceReader * __this, Stream * stream, Dictionary_2_System_String_System_Resources_ResourceLocator_ * resCache, MethodInfo * method)); DO_APP_FUNC(0x01A5CCD0, void, ResourceReader_Close, (ResourceReader * __this, MethodInfo * method)); @@ -8923,20 +9624,20 @@ DO_APP_FUNC(0x01A5D360, int32_t, ResourceReader_FindPosForResource, (ResourceRea DO_APP_FUNC_METHODINFO(0x03CA7EE8, ResourceReader_FindPosForResource__MethodInfo); DO_APP_FUNC(0x01A5D8A0, bool, ResourceReader_CompareStringEqualsName, (ResourceReader * __this, String * name, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7F08, ResourceReader_CompareStringEqualsName__MethodInfo); -DO_APP_FUNC(0x01A5DCD0, String *, ResourceReader_AllocateStringForNameIndex, (ResourceReader * __this, int32_t index, int32_t dataOffset, MethodInfo * method)); +DO_APP_FUNC(0x01A5DCD0, String *, ResourceReader_AllocateStringForNameIndex, (ResourceReader * __this, int32_t index, int32_t * dataOffset, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7F50, ResourceReader_AllocateStringForNameIndex__MethodInfo); DO_APP_FUNC(0x01A5E630, Object *, ResourceReader_GetValueForNameIndex, (ResourceReader * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7E10, ResourceReader_GetValueForNameIndex__MethodInfo); DO_APP_FUNC(0x01A5E9A0, String *, ResourceReader_LoadString, (ResourceReader * __this, int32_t pos, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7E40, ResourceReader_LoadString__MethodInfo); DO_APP_FUNC(0x01A5ECC0, Object *, ResourceReader_LoadObject, (ResourceReader * __this, int32_t pos, MethodInfo * method)); -DO_APP_FUNC(0x01A5ED00, Object *, ResourceReader_LoadObject_1, (ResourceReader * __this, int32_t pos, ResourceTypeCode__Enum typeCode, MethodInfo * method)); +DO_APP_FUNC(0x01A5ED00, Object *, ResourceReader_LoadObject_1, (ResourceReader * __this, int32_t pos, ResourceTypeCode__Enum * typeCode, MethodInfo * method)); DO_APP_FUNC(0x01A5EDB0, Object *, ResourceReader_LoadObjectV1, (ResourceReader * __this, int32_t pos, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7E88, ResourceReader_LoadObjectV1__MethodInfo); DO_APP_FUNC(0x01A5EEC0, Object *, ResourceReader__LoadObjectV1, (ResourceReader * __this, int32_t pos, MethodInfo * method)); -DO_APP_FUNC(0x01A5F750, Object *, ResourceReader_LoadObjectV2, (ResourceReader * __this, int32_t pos, ResourceTypeCode__Enum typeCode, MethodInfo * method)); +DO_APP_FUNC(0x01A5F750, Object *, ResourceReader_LoadObjectV2, (ResourceReader * __this, int32_t pos, ResourceTypeCode__Enum * typeCode, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7EB0, ResourceReader_LoadObjectV2__MethodInfo); -DO_APP_FUNC(0x01A5F860, Object *, ResourceReader__LoadObjectV2, (ResourceReader * __this, int32_t pos, ResourceTypeCode__Enum typeCode, MethodInfo * method)); +DO_APP_FUNC(0x01A5F860, Object *, ResourceReader__LoadObjectV2, (ResourceReader * __this, int32_t pos, ResourceTypeCode__Enum * typeCode, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7D88, ResourceReader__LoadObjectV2__MethodInfo); DO_APP_FUNC(0x01A60610, Object *, ResourceReader_DeserializeObject, (ResourceReader * __this, int32_t typeIndex, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7DC8, ResourceReader_DeserializeObject__MethodInfo); @@ -9124,24 +9825,37 @@ DO_APP_FUNC(0x01A634D0, bool, MethodInfo_1_op_Inequality, (MethodInfo_1 * left, DO_APP_FUNC(0x01A65C10, int32_t, MethodInfo_1_get_GenericParameterCount, (MethodInfo_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Missing__ctor, (Missing * __this, MethodInfo * method)); DO_APP_FUNC(0x01A65D00, void, Missing_System_Runtime_Serialization_ISerializable_GetObjectData, (Missing * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACD00, Missing_System_Runtime_Serialization_ISerializable_GetObjectData__MethodInfo); DO_APP_FUNC(0x01A65D50, void, Missing__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Module__ctor, (Module * __this, MethodInfo * method)); DO_APP_FUNC(0x01A65E00, Assembly *, Module_get_Assembly, (Module * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACD10, Module_get_Assembly__MethodInfo); DO_APP_FUNC(0x01A65E30, String *, Module_get_FullyQualifiedName, (Module * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACD18, Module_get_FullyQualifiedName__MethodInfo); DO_APP_FUNC(0x01A65E60, Guid, Module_get_ModuleVersionId, (Module * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACD20, Module_get_ModuleVersionId__MethodInfo); DO_APP_FUNC(0x01A65E90, String *, Module_get_ScopeName, (Module * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACD28, Module_get_ScopeName__MethodInfo); DO_APP_FUNC(0x01A65EC0, bool, Module_IsResource, (Module * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACD30, Module_IsResource__MethodInfo); DO_APP_FUNC(0x01A65EF0, bool, Module_IsDefined, (Module * __this, Type * attributeType, bool inherit, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACD38, Module_IsDefined__MethodInfo); DO_APP_FUNC(0x01A65F20, Object__Array *, Module_GetCustomAttributes, (Module * __this, bool inherit, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACD40, Module_GetCustomAttributes__MethodInfo); DO_APP_FUNC(0x01A65F50, Object__Array *, Module_GetCustomAttributes_1, (Module * __this, Type * attributeType, bool inherit, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACD48, Module_GetCustomAttributes_1__MethodInfo); DO_APP_FUNC(0x01A65F80, void, Module_GetObjectData, (Module * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACD50, Module_GetObjectData__MethodInfo); DO_APP_FUNC(0x00A89090, bool, Module_Equals, (Module * __this, Object * o, MethodInfo * method)); DO_APP_FUNC(0x019819D0, int32_t, Module_GetHashCode, (Module * __this, MethodInfo * method)); DO_APP_FUNC(0x01A630D0, bool, Module_op_Equality, (Module * left, Module * right, MethodInfo * method)); DO_APP_FUNC(0x01A65FB0, String *, Module_ToString, (Module * __this, MethodInfo * method)); DO_APP_FUNC(0x01A65FD0, bool, Module_FilterTypeNameImpl, (Type * cls, Object * filterCriteria, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACCD0, Module_FilterTypeNameImpl__MethodInfo); DO_APP_FUNC(0x01A66250, bool, Module_FilterTypeNameIgnoreCaseImpl, (Type * cls, Object * filterCriteria, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACCD8, Module_FilterTypeNameIgnoreCaseImpl__MethodInfo); DO_APP_FUNC(0x01A66620, Guid, Module_GetModuleVersionId, (Module * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACCE0, Module_GetModuleVersionId__MethodInfo); DO_APP_FUNC(0x01A66670, void, Module__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01A66820, void, ObfuscationAttribute__ctor, (ObfuscationAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x00424C00, void, ObfuscationAttribute_set_Exclude, (ObfuscationAttribute * __this, bool value, MethodInfo * method)); @@ -9157,14 +9871,20 @@ DO_APP_FUNC(0x01A668B0, bool, ParameterInfo_get_IsIn, (ParameterInfo * __this, M DO_APP_FUNC(0x01A668D0, bool, ParameterInfo_get_IsOptional, (ParameterInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01A66900, bool, ParameterInfo_get_IsOut, (ParameterInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01A66930, Object *, ParameterInfo_get_DefaultValue, (ParameterInfo * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACC80, ParameterInfo_get_DefaultValue__MethodInfo); DO_APP_FUNC(0x01A66960, bool, ParameterInfo_IsDefined, (ParameterInfo * __this, Type * attributeType, bool inherit, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACC90, ParameterInfo_IsDefined__MethodInfo); DO_APP_FUNC(0x01A66A00, Object__Array *, ParameterInfo_GetCustomAttributes, (ParameterInfo * __this, bool inherit, MethodInfo * method)); DO_APP_FUNC(0x01A66A40, Object__Array *, ParameterInfo_GetCustomAttributes_1, (ParameterInfo * __this, Type * attributeType, bool inherit, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACC98, ParameterInfo_GetCustomAttributes_1__MethodInfo); DO_APP_FUNC(0x01A66B00, Object *, ParameterInfo_GetRealObject, (ParameterInfo * __this, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACCA8, ParameterInfo_GetRealObject__MethodInfo); DO_APP_FUNC(0x01A66F10, String *, ParameterInfo_ToString, (ParameterInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01A66FC0, void, Pointer_1__ctor, (Pointer_1 * __this, Void * ptr, Type * ptrType, MethodInfo * method)); DO_APP_FUNC(0x01A67020, Object *, Pointer_1_Box, (Void * ptr, Type * type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACC60, Pointer_1_Box__MethodInfo); DO_APP_FUNC(0x01A67240, void, Pointer_1_System_Runtime_Serialization_ISerializable_GetObjectData, (Pointer_1 * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACC78, Pointer_1_System_Runtime_Serialization_ISerializable_GetObjectData__MethodInfo); DO_APP_FUNC(0x003AE050, void, PropertyInfo_1__ctor, (PropertyInfo_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x003D2F30, MemberTypes__Enum, PropertyInfo_1_get_MemberType, (PropertyInfo_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x01A67290, MethodInfo_1 *, PropertyInfo_1_GetGetMethod, (PropertyInfo_1 * __this, MethodInfo * method)); @@ -9199,8 +9919,10 @@ DO_APP_FUNC(0x0041AF00, bool, SignatureByRefType_IsPointerImpl, (SignatureByRefT DO_APP_FUNC(0x0041AF00, bool, SignatureByRefType_get_IsSZArray, (SignatureByRefType * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, SignatureByRefType_get_IsVariableBoundArray, (SignatureByRefType * __this, MethodInfo * method)); DO_APP_FUNC(0x01A67BF0, int32_t, SignatureByRefType_GetArrayRank, (SignatureByRefType * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACC50, SignatureByRefType_GetArrayRank__MethodInfo); DO_APP_FUNC(0x01A67C50, String *, SignatureByRefType_get_Suffix, (SignatureByRefType * __this, MethodInfo * method)); DO_APP_FUNC(0x01A67C90, void, SignatureConstructedGenericType__ctor, (SignatureConstructedGenericType * __this, Type * genericTypeDefinition, Type__Array * typeArguments, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACBF0, SignatureConstructedGenericType__ctor__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, SignatureConstructedGenericType_get_IsGenericTypeDefinition, (SignatureConstructedGenericType * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, SignatureConstructedGenericType_HasElementTypeImpl, (SignatureConstructedGenericType * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, SignatureConstructedGenericType_IsArrayImpl, (SignatureConstructedGenericType * __this, MethodInfo * method)); @@ -9214,10 +9936,12 @@ DO_APP_FUNC(0x0041AF00, bool, SignatureConstructedGenericType_get_IsGenericMetho DO_APP_FUNC(0x01A67EF0, bool, SignatureConstructedGenericType_get_ContainsGenericParameters, (SignatureConstructedGenericType * __this, MethodInfo * method)); DO_APP_FUNC(0x003CB690, SignatureType *, SignatureConstructedGenericType_get_ElementType, (SignatureConstructedGenericType * __this, MethodInfo * method)); DO_APP_FUNC(0x01A67F80, int32_t, SignatureConstructedGenericType_GetArrayRank, (SignatureConstructedGenericType * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACC00, SignatureConstructedGenericType_GetArrayRank__MethodInfo); DO_APP_FUNC(0x003BB3D0, Type *, SignatureConstructedGenericType_GetGenericTypeDefinition, (SignatureConstructedGenericType * __this, MethodInfo * method)); DO_APP_FUNC(0x01A67FE0, Type__Array *, SignatureConstructedGenericType_GetGenericArguments, (SignatureConstructedGenericType * __this, MethodInfo * method)); DO_APP_FUNC(0x01A68000, Type__Array *, SignatureConstructedGenericType_get_GenericTypeArguments, (SignatureConstructedGenericType * __this, MethodInfo * method)); DO_APP_FUNC(0x01A68080, int32_t, SignatureConstructedGenericType_get_GenericParameterPosition, (SignatureConstructedGenericType * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACC10, SignatureConstructedGenericType_get_GenericParameterPosition__MethodInfo); DO_APP_FUNC(0x01A680E0, String *, SignatureConstructedGenericType_get_Name, (SignatureConstructedGenericType * __this, MethodInfo * method)); DO_APP_FUNC(0x01A68110, String *, SignatureConstructedGenericType_get_Namespace, (SignatureConstructedGenericType * __this, MethodInfo * method)); DO_APP_FUNC(0x01A68140, String *, SignatureConstructedGenericType_ToString, (SignatureConstructedGenericType * __this, MethodInfo * method)); @@ -9230,9 +9954,11 @@ DO_APP_FUNC(0x0041AF00, bool, SignatureHasElementType_get_IsGenericMethodParamet DO_APP_FUNC(0x01A683B0, bool, SignatureHasElementType_get_ContainsGenericParameters, (SignatureHasElementType * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, SignatureType *, SignatureHasElementType_get_ElementType, (SignatureHasElementType * __this, MethodInfo * method)); DO_APP_FUNC(0x01A683E0, Type *, SignatureHasElementType_GetGenericTypeDefinition, (SignatureHasElementType * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACC20, SignatureHasElementType_GetGenericTypeDefinition__MethodInfo); DO_APP_FUNC(0x01A68440, Type__Array *, SignatureHasElementType_GetGenericArguments, (SignatureHasElementType * __this, MethodInfo * method)); DO_APP_FUNC(0x01A68480, Type__Array *, SignatureHasElementType_get_GenericTypeArguments, (SignatureHasElementType * __this, MethodInfo * method)); DO_APP_FUNC(0x01A684C0, int32_t, SignatureHasElementType_get_GenericParameterPosition, (SignatureHasElementType * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACBC0, SignatureHasElementType_get_GenericParameterPosition__MethodInfo); DO_APP_FUNC(0x01A68520, String *, SignatureHasElementType_get_Name, (SignatureHasElementType * __this, MethodInfo * method)); DO_APP_FUNC(0x01A68110, String *, SignatureHasElementType_get_Namespace, (SignatureHasElementType * __this, MethodInfo * method)); DO_APP_FUNC(0x01A68590, String *, SignatureHasElementType_ToString, (SignatureHasElementType * __this, MethodInfo * method)); @@ -9243,67 +9969,118 @@ DO_APP_FUNC(0x0041AEF0, bool, SignaturePointerType_IsPointerImpl, (SignaturePoin DO_APP_FUNC(0x0041AF00, bool, SignaturePointerType_get_IsSZArray, (SignaturePointerType * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, SignaturePointerType_get_IsVariableBoundArray, (SignaturePointerType * __this, MethodInfo * method)); DO_APP_FUNC(0x01A68600, int32_t, SignaturePointerType_GetArrayRank, (SignaturePointerType * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACBC8, SignaturePointerType_GetArrayRank__MethodInfo); DO_APP_FUNC(0x01A68660, String *, SignaturePointerType_get_Suffix, (SignaturePointerType * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, SignatureType_get_IsSignatureType, (SignatureType * __this, MethodInfo * method)); DO_APP_FUNC(0x01A686A0, bool, SignatureType_get_IsGenericType, (SignatureType * __this, MethodInfo * method)); DO_APP_FUNC(0x00AEF240, MemberTypes__Enum, SignatureType_get_MemberType, (SignatureType * __this, MethodInfo * method)); DO_APP_FUNC(0x01A686F0, Type *, SignatureType_MakeArrayType, (SignatureType * __this, MethodInfo * method)); DO_APP_FUNC(0x01A68760, Type *, SignatureType_MakeArrayType_1, (SignatureType * __this, int32_t rank, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACBD8, SignatureType_MakeArrayType_1__MethodInfo); DO_APP_FUNC(0x01A68820, Type *, SignatureType_MakeByRefType, (SignatureType * __this, MethodInfo * method)); DO_APP_FUNC(0x01A68890, Type *, SignatureType_MakePointerType, (SignatureType * __this, MethodInfo * method)); DO_APP_FUNC(0x01A68900, Type *, SignatureType_MakeGenericType, (SignatureType * __this, Type__Array * typeArguments, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACB58, SignatureType_MakeGenericType__MethodInfo); DO_APP_FUNC(0x01A68960, Type *, SignatureType_GetElementType, (SignatureType * __this, MethodInfo * method)); DO_APP_FUNC(0x00A1B820, Type *, SignatureType_get_UnderlyingSystemType, (SignatureType * __this, MethodInfo * method)); DO_APP_FUNC(0x003CB690, String *, SignatureType_get_FullName, (SignatureType * __this, MethodInfo * method)); DO_APP_FUNC(0x003CB690, String *, SignatureType_get_AssemblyQualifiedName, (SignatureType * __this, MethodInfo * method)); DO_APP_FUNC(0x01A68980, Assembly *, SignatureType_get_Assembly, (SignatureType * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACB60, SignatureType_get_Assembly__MethodInfo); DO_APP_FUNC(0x01A689E0, Module *, SignatureType_get_Module, (SignatureType * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACB68, SignatureType_get_Module__MethodInfo); DO_APP_FUNC(0x01A68A40, Type *, SignatureType_get_ReflectedType, (SignatureType * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACB70, SignatureType_get_ReflectedType__MethodInfo); DO_APP_FUNC(0x01A68AA0, Type *, SignatureType_get_BaseType, (SignatureType * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACB78, SignatureType_get_BaseType__MethodInfo); DO_APP_FUNC(0x01A68B00, Type__Array *, SignatureType_GetInterfaces, (SignatureType * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACB80, SignatureType_GetInterfaces__MethodInfo); DO_APP_FUNC(0x01A68B60, bool, SignatureType_IsAssignableFrom, (SignatureType * __this, Type * c, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACB88, SignatureType_IsAssignableFrom__MethodInfo); DO_APP_FUNC(0x01A68BC0, int32_t, SignatureType_get_MetadataToken, (SignatureType * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACB90, SignatureType_get_MetadataToken__MethodInfo); DO_APP_FUNC(0x01A68C20, Type *, SignatureType_get_DeclaringType, (SignatureType * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACB98, SignatureType_get_DeclaringType__MethodInfo); DO_APP_FUNC(0x01A68C80, MethodBase *, SignatureType_get_DeclaringMethod, (SignatureType * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACBA0, SignatureType_get_DeclaringMethod__MethodInfo); DO_APP_FUNC(0x01A68CE0, Type__Array *, SignatureType_GetGenericParameterConstraints, (SignatureType * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACBA8, SignatureType_GetGenericParameterConstraints__MethodInfo); DO_APP_FUNC(0x01A68D40, GenericParameterAttributes__Enum, SignatureType_get_GenericParameterAttributes, (SignatureType * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACBB0, SignatureType_get_GenericParameterAttributes__MethodInfo); DO_APP_FUNC(0x01A68DA0, bool, SignatureType_IsEnumDefined, (SignatureType * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACBB8, SignatureType_IsEnumDefined__MethodInfo); DO_APP_FUNC(0x01A68E00, String *, SignatureType_GetEnumName, (SignatureType * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACAC8, SignatureType_GetEnumName__MethodInfo); DO_APP_FUNC(0x01A68E60, String__Array *, SignatureType_GetEnumNames, (SignatureType * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACAD0, SignatureType_GetEnumNames__MethodInfo); DO_APP_FUNC(0x01A68EC0, Type *, SignatureType_GetEnumUnderlyingType, (SignatureType * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACAD8, SignatureType_GetEnumUnderlyingType__MethodInfo); DO_APP_FUNC(0x01A68F20, Array *, SignatureType_GetEnumValues, (SignatureType * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACAE0, SignatureType_GetEnumValues__MethodInfo); DO_APP_FUNC(0x01A68F80, Guid, SignatureType_get_GUID, (SignatureType * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACAE8, SignatureType_get_GUID__MethodInfo); DO_APP_FUNC(0x01A68FE0, TypeCode__Enum, SignatureType_GetTypeCodeImpl, (SignatureType * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACAF0, SignatureType_GetTypeCodeImpl__MethodInfo); DO_APP_FUNC(0x01A69040, TypeAttributes__Enum, SignatureType_GetAttributeFlagsImpl, (SignatureType * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACAF8, SignatureType_GetAttributeFlagsImpl__MethodInfo); DO_APP_FUNC(0x01A690A0, ConstructorInfo__Array *, SignatureType_GetConstructors, (SignatureType * __this, BindingFlags__Enum bindingAttr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACB00, SignatureType_GetConstructors__MethodInfo); DO_APP_FUNC(0x01A69100, EventInfo_1 *, SignatureType_GetEvent, (SignatureType * __this, String * name, BindingFlags__Enum bindingAttr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACB08, SignatureType_GetEvent__MethodInfo); DO_APP_FUNC(0x01A69160, EventInfo_1__Array *, SignatureType_GetEvents, (SignatureType * __this, BindingFlags__Enum bindingAttr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACB10, SignatureType_GetEvents__MethodInfo); DO_APP_FUNC(0x01A691C0, FieldInfo_1 *, SignatureType_GetField, (SignatureType * __this, String * name, BindingFlags__Enum bindingAttr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACB18, SignatureType_GetField__MethodInfo); DO_APP_FUNC(0x01A69220, FieldInfo_1__Array *, SignatureType_GetFields, (SignatureType * __this, BindingFlags__Enum bindingAttr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACB20, SignatureType_GetFields__MethodInfo); DO_APP_FUNC(0x01A69280, MemberInfo_1__Array *, SignatureType_GetMembers, (SignatureType * __this, BindingFlags__Enum bindingAttr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACB28, SignatureType_GetMembers__MethodInfo); DO_APP_FUNC(0x01A692E0, MethodInfo_1__Array *, SignatureType_GetMethods, (SignatureType * __this, BindingFlags__Enum bindingAttr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACB30, SignatureType_GetMethods__MethodInfo); DO_APP_FUNC(0x01A69340, Type *, SignatureType_GetNestedType, (SignatureType * __this, String * name, BindingFlags__Enum bindingAttr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACB38, SignatureType_GetNestedType__MethodInfo); DO_APP_FUNC(0x01A693A0, PropertyInfo_1__Array *, SignatureType_GetProperties, (SignatureType * __this, BindingFlags__Enum bindingAttr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACB40, SignatureType_GetProperties__MethodInfo); DO_APP_FUNC(0x01A69400, Object *, SignatureType_InvokeMember, (SignatureType * __this, String * name, BindingFlags__Enum invokeAttr, Binder * binder, Object * target, Object__Array * args, ParameterModifier__Array * modifiers, CultureInfo * culture, String__Array * namedParameters, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACA48, SignatureType_InvokeMember__MethodInfo); DO_APP_FUNC(0x01A69460, MethodInfo_1 *, SignatureType_GetMethodImpl, (SignatureType * __this, String * name, BindingFlags__Enum bindingAttr, Binder * binder, CallingConventions__Enum callConvention, Type__Array * types, ParameterModifier__Array * modifiers, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACA50, SignatureType_GetMethodImpl__MethodInfo); DO_APP_FUNC(0x01A694C0, PropertyInfo_1 *, SignatureType_GetPropertyImpl, (SignatureType * __this, String * name, BindingFlags__Enum bindingAttr, Binder * binder, Type * returnType, Type__Array * types, ParameterModifier__Array * modifiers, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACA58, SignatureType_GetPropertyImpl__MethodInfo); DO_APP_FUNC(0x01A69520, MemberInfo_1__Array *, SignatureType_GetMember, (SignatureType * __this, String * name, BindingFlags__Enum bindingAttr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACA60, SignatureType_GetMember__MethodInfo); DO_APP_FUNC(0x01A69580, MemberInfo_1__Array *, SignatureType_GetMember_1, (SignatureType * __this, String * name, MemberTypes__Enum type, BindingFlags__Enum bindingAttr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACA68, SignatureType_GetMember_1__MethodInfo); DO_APP_FUNC(0x01A695E0, Object__Array *, SignatureType_GetCustomAttributes, (SignatureType * __this, bool inherit, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACA70, SignatureType_GetCustomAttributes__MethodInfo); DO_APP_FUNC(0x01A69640, Object__Array *, SignatureType_GetCustomAttributes_1, (SignatureType * __this, Type * attributeType, bool inherit, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACA78, SignatureType_GetCustomAttributes_1__MethodInfo); DO_APP_FUNC(0x01A696A0, bool, SignatureType_IsDefined, (SignatureType * __this, Type * attributeType, bool inherit, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACA80, SignatureType_IsDefined__MethodInfo); DO_APP_FUNC(0x01A69700, ConstructorInfo *, SignatureType_GetConstructorImpl, (SignatureType * __this, BindingFlags__Enum bindingAttr, Binder * binder, CallingConventions__Enum callConvention, Type__Array * types, ParameterModifier__Array * modifiers, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACA88, SignatureType_GetConstructorImpl__MethodInfo); DO_APP_FUNC(0x01A69760, bool, SignatureType_IsCOMObjectImpl, (SignatureType * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACA90, SignatureType_IsCOMObjectImpl__MethodInfo); DO_APP_FUNC(0x01A697C0, bool, SignatureType_IsPrimitiveImpl, (SignatureType * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACA98, SignatureType_IsPrimitiveImpl__MethodInfo); DO_APP_FUNC(0x01A69820, bool, SignatureType_IsContextfulImpl, (SignatureType * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACAA0, SignatureType_IsContextfulImpl__MethodInfo); DO_APP_FUNC(0x01A69880, bool, SignatureType_get_IsEnum, (SignatureType * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACAA8, SignatureType_get_IsEnum__MethodInfo); DO_APP_FUNC(0x01A698E0, bool, SignatureType_IsEquivalentTo, (SignatureType * __this, Type * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACAB0, SignatureType_IsEquivalentTo__MethodInfo); DO_APP_FUNC(0x01A69940, bool, SignatureType_IsInstanceOfType, (SignatureType * __this, Object * o, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACAB8, SignatureType_IsInstanceOfType__MethodInfo); DO_APP_FUNC(0x01A699A0, bool, SignatureType_IsMarshalByRefImpl, (SignatureType * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACAC0, SignatureType_IsMarshalByRefImpl__MethodInfo); DO_APP_FUNC(0x01A69A00, bool, SignatureType_get_IsSerializable, (SignatureType * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACA20, SignatureType_get_IsSerializable__MethodInfo); DO_APP_FUNC(0x01A69A60, bool, SignatureType_IsSubclassOf, (SignatureType * __this, Type * c, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACA28, SignatureType_IsSubclassOf__MethodInfo); DO_APP_FUNC(0x01A69AC0, bool, SignatureType_IsValueTypeImpl, (SignatureType * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACA30, SignatureType_IsValueTypeImpl__MethodInfo); DO_APP_FUNC(0x01A69B20, RuntimeTypeHandle, SignatureType_get_TypeHandle, (SignatureType * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACA38, SignatureType_get_TypeHandle__MethodInfo); DO_APP_FUNC(0x01A69B80, void, SignatureType__ctor, (SignatureType * __this, MethodInfo * method)); DO_APP_FUNC(0x01A69BD0, bool, SignatureTypeExtensions_MatchesParameterTypeExactly, (Type * pattern, ParameterInfo * parameter, MethodInfo * method)); DO_APP_FUNC(0x01A6A090, bool, SignatureTypeExtensions_MatchesExactly, (SignatureType * pattern, Type * actual, MethodInfo * method)); @@ -9325,6 +10102,7 @@ DO_APP_FUNC(0x01A6AAE0, void, TargetParameterCountException__ctor, (TargetParame DO_APP_FUNC(0x01A6AB30, void, TargetParameterCountException__ctor_1, (TargetParameterCountException * __this, String * message, MethodInfo * method)); DO_APP_FUNC(0x01A64690, void, TargetParameterCountException__ctor_2, (TargetParameterCountException * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x01A6AB50, void, TypeDelegator__ctor, (TypeDelegator * __this, Type * delegatingType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACA18, TypeDelegator__ctor__MethodInfo); DO_APP_FUNC(0x01A6AC80, Guid, TypeDelegator_get_GUID, (TypeDelegator * __this, MethodInfo * method)); DO_APP_FUNC(0x01A6ACC0, int32_t, TypeDelegator_get_MetadataToken, (TypeDelegator * __this, MethodInfo * method)); DO_APP_FUNC(0x01A6ACF0, Object *, TypeDelegator_InvokeMember, (TypeDelegator * __this, String * name, BindingFlags__Enum invokeAttr, Binder * binder, Object * target, Object__Array * args, ParameterModifier__Array * modifiers, CultureInfo * culture, String__Array * namedParameters, MethodInfo * method)); @@ -9372,28 +10150,33 @@ DO_APP_FUNC(0x003ED330, bool, TypeFilter_Invoke, (TypeFilter * __this, Type * m, DO_APP_FUNC(0x01A6B6E0, void, TypeInfo__ctor, (TypeInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x00A1B820, TypeInfo *, TypeInfo_System_Reflection_IReflectableType_GetTypeInfo, (TypeInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01A6B730, IEnumerable_1_System_Type_ *, TypeInfo_get_ImplementedInterfaces, (TypeInfo * __this, MethodInfo * method)); -DO_APP_FUNC(0x01A6B750, void, CustomAttributeNamedArgument__ctor, (CustomAttributeNamedArgument__Boxed * __this, Type * attributeType, String * memberName, bool isField, CustomAttributeTypedArgument typedValue, MethodInfo * method)); -DO_APP_FUNC(0x01A6B8D0, void, CustomAttributeNamedArgument__ctor_1, (CustomAttributeNamedArgument__Boxed * __this, MemberInfo_1 * memberInfo, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x01A6BBD0, void, CustomAttributeNamedArgument__ctor_2, (CustomAttributeNamedArgument__Boxed * __this, MemberInfo_1 * memberInfo, CustomAttributeTypedArgument typedArgument, MethodInfo * method)); -DO_APP_FUNC(0x00C2FFD0, CustomAttributeTypedArgument, CustomAttributeNamedArgument_get_TypedValue, (CustomAttributeNamedArgument__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD20, bool, CustomAttributeNamedArgument_get_IsField, (CustomAttributeNamedArgument__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3D0, String *, CustomAttributeNamedArgument_get_MemberName, (CustomAttributeNamedArgument__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01A6BD80, MemberInfo_1 *, CustomAttributeNamedArgument_get_MemberInfo, (CustomAttributeNamedArgument__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01A6BED0, bool, CustomAttributeNamedArgument_Equals, (CustomAttributeNamedArgument__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x01A6BF40, int32_t, CustomAttributeNamedArgument_GetHashCode, (CustomAttributeNamedArgument__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01A6B750, void, CustomAttributeNamedArgument__ctor, (CustomAttributeNamedArgument * __this, Type * attributeType, String * memberName, bool isField, CustomAttributeTypedArgument typedValue, MethodInfo * method)); +DO_APP_FUNC(0x01A6B8D0, void, CustomAttributeNamedArgument__ctor_1, (CustomAttributeNamedArgument * __this, MemberInfo_1 * memberInfo, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC9C0, CustomAttributeNamedArgument__ctor_1__MethodInfo); +DO_APP_FUNC(0x01A6BBD0, void, CustomAttributeNamedArgument__ctor_2, (CustomAttributeNamedArgument * __this, MemberInfo_1 * memberInfo, CustomAttributeTypedArgument typedArgument, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC9D8, CustomAttributeNamedArgument__ctor_2__MethodInfo); +DO_APP_FUNC(0x00C2FFD0, CustomAttributeTypedArgument, CustomAttributeNamedArgument_get_TypedValue, (CustomAttributeNamedArgument * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD20, bool, CustomAttributeNamedArgument_get_IsField, (CustomAttributeNamedArgument * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3D0, String *, CustomAttributeNamedArgument_get_MemberName, (CustomAttributeNamedArgument * __this, MethodInfo * method)); +DO_APP_FUNC(0x01A6BD80, MemberInfo_1 *, CustomAttributeNamedArgument_get_MemberInfo, (CustomAttributeNamedArgument * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC9E0, CustomAttributeNamedArgument_get_MemberInfo__MethodInfo); +DO_APP_FUNC(0x01A6BED0, bool, CustomAttributeNamedArgument_Equals, (CustomAttributeNamedArgument * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x01A6BF40, int32_t, CustomAttributeNamedArgument_GetHashCode, (CustomAttributeNamedArgument * __this, MethodInfo * method)); DO_APP_FUNC(0x01A6BFB0, bool, CustomAttributeNamedArgument_op_Equality, (CustomAttributeNamedArgument left, CustomAttributeNamedArgument right, MethodInfo * method)); DO_APP_FUNC(0x01A6C030, bool, CustomAttributeNamedArgument_op_Inequality, (CustomAttributeNamedArgument left, CustomAttributeNamedArgument right, MethodInfo * method)); -DO_APP_FUNC(0x01A6C0B0, String *, CustomAttributeNamedArgument_ToString, (CustomAttributeNamedArgument__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01A6C420, void, CustomAttributeTypedArgument__ctor, (CustomAttributeTypedArgument__Boxed * __this, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x01A6C550, void, CustomAttributeTypedArgument__ctor_1, (CustomAttributeTypedArgument__Boxed * __this, Type * argumentType, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x00471910, Type *, CustomAttributeTypedArgument_get_ArgumentType, (CustomAttributeTypedArgument__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, Object *, CustomAttributeTypedArgument_get_Value, (CustomAttributeTypedArgument__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01A6CA00, bool, CustomAttributeTypedArgument_Equals, (CustomAttributeTypedArgument__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x01A6CA60, int32_t, CustomAttributeTypedArgument_GetHashCode, (CustomAttributeTypedArgument__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01A6C0B0, String *, CustomAttributeNamedArgument_ToString, (CustomAttributeNamedArgument * __this, MethodInfo * method)); +DO_APP_FUNC(0x01A6C420, void, CustomAttributeTypedArgument__ctor, (CustomAttributeTypedArgument * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC970, CustomAttributeTypedArgument__ctor__MethodInfo); +DO_APP_FUNC(0x01A6C550, void, CustomAttributeTypedArgument__ctor_1, (CustomAttributeTypedArgument * __this, Type * argumentType, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC990, CustomAttributeTypedArgument__ctor_1__MethodInfo); +DO_APP_FUNC(0x00471910, Type *, CustomAttributeTypedArgument_get_ArgumentType, (CustomAttributeTypedArgument * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, Object *, CustomAttributeTypedArgument_get_Value, (CustomAttributeTypedArgument * __this, MethodInfo * method)); +DO_APP_FUNC(0x01A6CA00, bool, CustomAttributeTypedArgument_Equals, (CustomAttributeTypedArgument * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x01A6CA60, int32_t, CustomAttributeTypedArgument_GetHashCode, (CustomAttributeTypedArgument * __this, MethodInfo * method)); DO_APP_FUNC(0x01A6CAC0, bool, CustomAttributeTypedArgument_op_Equality, (CustomAttributeTypedArgument left, CustomAttributeTypedArgument right, MethodInfo * method)); DO_APP_FUNC(0x01A6CB60, bool, CustomAttributeTypedArgument_op_Inequality, (CustomAttributeTypedArgument left, CustomAttributeTypedArgument right, MethodInfo * method)); -DO_APP_FUNC(0x01A6CC00, String *, CustomAttributeTypedArgument_ToString, (CustomAttributeTypedArgument__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01A6CC10, String *, CustomAttributeTypedArgument_ToString_1, (CustomAttributeTypedArgument__Boxed * __this, bool typed, MethodInfo * method)); +DO_APP_FUNC(0x01A6CC00, String *, CustomAttributeTypedArgument_ToString, (CustomAttributeTypedArgument * __this, MethodInfo * method)); +DO_APP_FUNC(0x01A6CC10, String *, CustomAttributeTypedArgument_ToString_1, (CustomAttributeTypedArgument * __this, bool typed, MethodInfo * method)); DO_APP_FUNC(0x01A6D3B0, Object *, CustomAttributeTypedArgument_CanonicalizeValue, (Object * value, MethodInfo * method)); DO_APP_FUNC(0x01A6D4C0, void, MissingMetadataException__ctor, (MissingMetadataException * __this, MethodInfo * method)); DO_APP_FUNC(0x01A6D510, Attribute *, CustomAttributeExtensions_GetCustomAttribute, (Assembly * element, Type * attributeType, MethodInfo * method)); @@ -9404,22 +10187,38 @@ DO_APP_FUNC(0x01A6D600, IEnumerable_1_System_Attribute_ *, CustomAttributeExtens DO_APP_FUNC(0x01A6D610, bool, CustomAttributeExtensions_IsDefined, (MemberInfo_1 * element, Type * attributeType, MethodInfo * method)); DO_APP_FUNC(0x01A6D620, void, MemberInfoSerializationHolder_GetSerializationInfo, (SerializationInfo * info, String * name, RuntimeType * reflectedClass, String * signature, MemberTypes__Enum type, MethodInfo * method)); DO_APP_FUNC(0x01A6D650, void, MemberInfoSerializationHolder_GetSerializationInfo_1, (SerializationInfo * info, String * name, RuntimeType * reflectedClass, String * signature, String * signature2, MemberTypes__Enum type, Type__Array * genericArguments, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC838, MemberInfoSerializationHolder_GetSerializationInfo_1__MethodInfo); DO_APP_FUNC(0x01A6DDB0, void, MemberInfoSerializationHolder__ctor, (MemberInfoSerializationHolder * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC848, MemberInfoSerializationHolder__ctor__MethodInfo); DO_APP_FUNC(0x01A6E140, void, MemberInfoSerializationHolder_GetObjectData, (MemberInfoSerializationHolder * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC850, MemberInfoSerializationHolder_GetObjectData__MethodInfo); DO_APP_FUNC(0x01A6E1B0, Object *, MemberInfoSerializationHolder_GetRealObject, (MemberInfoSerializationHolder * __this, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC768, MemberInfoSerializationHolder_GetRealObject__MethodInfo); DO_APP_FUNC(0x01A6EFF0, String *, Assembly_get_CodeBase, (Assembly * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC790, Assembly_get_CodeBase__MethodInfo); DO_APP_FUNC(0x01A6F040, String *, Assembly_get_EscapedCodeBase, (Assembly * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC798, Assembly_get_EscapedCodeBase__MethodInfo); DO_APP_FUNC(0x01A6F090, String *, Assembly_get_FullName, (Assembly * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC7A8, Assembly_get_FullName__MethodInfo); DO_APP_FUNC(0x01A6F0E0, void *, Assembly_get_MonoAssembly, (Assembly * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC7B0, Assembly_get_MonoAssembly__MethodInfo); DO_APP_FUNC(0x01A6F130, void, Assembly_set_FromByteArray, (Assembly * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC7C0, Assembly_set_FromByteArray__MethodInfo); DO_APP_FUNC(0x01A6F180, String *, Assembly_get_Location, (Assembly * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC7D0, Assembly_get_Location__MethodInfo); DO_APP_FUNC(0x01A6F1D0, void, Assembly_GetObjectData, (Assembly * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC7E0, Assembly_GetObjectData__MethodInfo); DO_APP_FUNC(0x01A6F220, bool, Assembly_IsDefined, (Assembly * __this, Type * attributeType, bool inherit, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC7E8, Assembly_IsDefined__MethodInfo); DO_APP_FUNC(0x01A6F270, Object__Array *, Assembly_GetCustomAttributes, (Assembly * __this, bool inherit, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC7F0, Assembly_GetCustomAttributes__MethodInfo); DO_APP_FUNC(0x01A6F2C0, Object__Array *, Assembly_GetCustomAttributes_1, (Assembly * __this, Type * attributeType, bool inherit, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC800, Assembly_GetCustomAttributes_1__MethodInfo); DO_APP_FUNC(0x01A6F310, Stream *, Assembly_GetManifestResourceStream, (Assembly * __this, String * name, MethodInfo * method)); -DO_APP_FUNC(0x01A6F360, Stream *, Assembly_GetManifestResourceStream_1, (Assembly * __this, Type * type, String * name, bool skipSecurityCheck, StackCrawlMark__Enum stackMark, MethodInfo * method)); -DO_APP_FUNC(0x01A6F510, Stream *, Assembly_GetManifestResourceStream_2, (Assembly * __this, String * name, StackCrawlMark__Enum stackMark, bool skipSecurityCheck, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC808, Assembly_GetManifestResourceStream__MethodInfo); +DO_APP_FUNC(0x01A6F360, Stream *, Assembly_GetManifestResourceStream_1, (Assembly * __this, Type * type, String * name, bool skipSecurityCheck, StackCrawlMark__Enum * stackMark, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC718, Assembly_GetManifestResourceStream_1__MethodInfo); +DO_APP_FUNC(0x01A6F510, Stream *, Assembly_GetManifestResourceStream_2, (Assembly * __this, String * name, StackCrawlMark__Enum * stackMark, bool skipSecurityCheck, MethodInfo * method)); DO_APP_FUNC(0x01A6F540, String *, Assembly_GetSimpleName, (Assembly * __this, MethodInfo * method)); DO_APP_FUNC(0x01A6F570, Byte__Array *, Assembly_GetPublicKey, (Assembly * __this, MethodInfo * method)); DO_APP_FUNC(0x01A6F5A0, Version *, Assembly_GetVersion, (Assembly * __this, MethodInfo * method)); @@ -9430,40 +10229,52 @@ DO_APP_FUNC(0x01A6F610, Type *, Assembly_GetType, (Assembly * __this, String * n DO_APP_FUNC(0x01A6F640, Type *, Assembly_GetType_1, (Assembly * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x01A6F670, Type *, Assembly_InternalGetType, (Assembly * __this, Module * module, String * name, bool throwOnError, bool ignoreCase, MethodInfo * method)); DO_APP_FUNC(0x01A6F680, AssemblyName *, Assembly_GetName, (Assembly * __this, bool copiedName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC728, Assembly_GetName__MethodInfo); DO_APP_FUNC(0x01A672B0, AssemblyName *, Assembly_GetName_1, (Assembly * __this, MethodInfo * method)); DO_APP_FUNC(0x01A6F6D0, String *, Assembly_ToString, (Assembly * __this, MethodInfo * method)); DO_APP_FUNC(0x01A6F710, Assembly *, Assembly_GetAssembly, (Type * type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC738, Assembly_GetAssembly__MethodInfo); DO_APP_FUNC(0x003CB690, Assembly *, Assembly_GetEntryAssembly, (MethodInfo * method)); -DO_APP_FUNC(0x01A6F7D0, RuntimeAssembly *, Assembly_InternalGetSatelliteAssembly, (Assembly * __this, String * name, CultureInfo * culture, Version * version, bool throwOnFileNotFound, StackCrawlMark__Enum stackMark, MethodInfo * method)); -DO_APP_FUNC(0x01A6FD20, Assembly *, Assembly_LoadFrom, (String * assemblyFile, bool refOnly, StackCrawlMark__Enum stackMark, MethodInfo * method)); +DO_APP_FUNC(0x01A6F7D0, RuntimeAssembly *, Assembly_InternalGetSatelliteAssembly, (Assembly * __this, String * name, CultureInfo * culture, Version * version, bool throwOnFileNotFound, StackCrawlMark__Enum * stackMark, MethodInfo * method)); +DO_APP_FUNC(0x01A6FD20, Assembly *, Assembly_LoadFrom, (String * assemblyFile, bool refOnly, StackCrawlMark__Enum * stackMark, MethodInfo * method)); DO_APP_FUNC(0x01A15750, Assembly *, Assembly_Load, (String * assemblyString, MethodInfo * method)); DO_APP_FUNC(0x01A6FD30, Assembly *, Assembly_Load_1, (Byte__Array * rawAssembly, MethodInfo * method)); DO_APP_FUNC(0x01A6FD60, Assembly *, Assembly_ReflectionOnlyLoad, (String * assemblyString, MethodInfo * method)); DO_APP_FUNC(0x01A6FEC0, Assembly *, Assembly_load_with_partial_name, (String * name, Evidence * e, MethodInfo * method)); DO_APP_FUNC(0x01A6FFC0, Assembly *, Assembly_LoadWithPartialName, (String * partialName, Evidence * securityEvidence, MethodInfo * method)); DO_APP_FUNC(0x01A6FFD0, Assembly *, Assembly_LoadWithPartialName_1, (String * partialName, Evidence * securityEvidence, bool oldBehavior, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC6D0, Assembly_LoadWithPartialName_1__MethodInfo); DO_APP_FUNC(0x01A70180, Module__Array *, Assembly_GetModules, (Assembly * __this, MethodInfo * method)); DO_APP_FUNC(0x01A701A0, Module__Array *, Assembly_GetModulesInternal, (Assembly * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC6E8, Assembly_GetModulesInternal__MethodInfo); DO_APP_FUNC(0x01A701F0, Assembly *, Assembly_GetExecutingAssembly, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC6F0, Assembly_GetExecutingAssembly__MethodInfo); DO_APP_FUNC(0x01A70230, Assembly *, Assembly_GetCallingAssembly, (MethodInfo * method)); DO_APP_FUNC(0x01A702B0, String__Array *, Assembly_GetManifestResourceNames, (Assembly * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC6F8, Assembly_GetManifestResourceNames__MethodInfo); DO_APP_FUNC(0x01A70300, ManifestResourceInfo *, Assembly_GetManifestResourceInfo, (Assembly * __this, String * resourceName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC700, Assembly_GetManifestResourceInfo__MethodInfo); DO_APP_FUNC(0x01A70350, bool, Assembly_get_ReflectionOnly, (Assembly * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC708, Assembly_get_ReflectionOnly__MethodInfo); DO_APP_FUNC(0x019819D0, int32_t, Assembly_GetHashCode, (Assembly * __this, MethodInfo * method)); DO_APP_FUNC(0x00A89090, bool, Assembly_Equals, (Assembly * __this, Object * o, MethodInfo * method)); DO_APP_FUNC(0x01A703A0, Exception *, Assembly_CreateNIE, (MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, Assembly_get_IsFullyTrusted, (Assembly * __this, MethodInfo * method)); DO_APP_FUNC(0x01A70420, Type *, Assembly_GetType_2, (Assembly * __this, String * name, bool throwOnError, bool ignoreCase, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC630, Assembly_GetType_2__MethodInfo); DO_APP_FUNC(0x01A70450, Module *, Assembly_GetModule, (Assembly * __this, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC640, Assembly_GetModule__MethodInfo); DO_APP_FUNC(0x01A70480, Module__Array *, Assembly_GetModules_1, (Assembly * __this, bool getResourceModules, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC650, Assembly_GetModules_1__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, Assembly_get_IsDynamic, (Assembly * __this, MethodInfo * method)); DO_APP_FUNC(0x01A704B0, bool, Assembly_op_Equality, (Assembly * left, Assembly * right, MethodInfo * method)); DO_APP_FUNC(0x01A70510, bool, Assembly_op_Inequality, (Assembly * left, Assembly * right, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Assembly__ctor, (Assembly * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Assembly_ResolveEventHolder__ctor, (Assembly_ResolveEventHolder * __this, MethodInfo * method)); DO_APP_FUNC(0x01A70570, void, AssemblyName__ctor, (AssemblyName * __this, MethodInfo * method)); -DO_APP_FUNC(0x01A70580, bool, AssemblyName_ParseAssemblyName, (void * name, MonoAssemblyName aname, bool is_version_definited, bool is_token_defined, MethodInfo * method)); +DO_APP_FUNC(0x01A70580, bool, AssemblyName_ParseAssemblyName, (void * name, MonoAssemblyName * aname, bool * is_version_definited, bool * is_token_defined, MethodInfo * method)); DO_APP_FUNC(0x01A70590, void, AssemblyName__ctor_1, (AssemblyName * __this, String * assemblyName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC678, AssemblyName__ctor_1__MethodInfo); DO_APP_FUNC(0x01A70880, void, AssemblyName__ctor_2, (AssemblyName * __this, SerializationInfo * si, StreamingContext sc, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, String *, AssemblyName_get_Name, (AssemblyName * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, AssemblyName_set_Name, (AssemblyName * __this, String * value, MethodInfo * method)); @@ -9477,12 +10288,15 @@ DO_APP_FUNC(0x01A71570, void, AssemblyName_set_Version, (AssemblyName * __this, DO_APP_FUNC(0x01A71600, String *, AssemblyName_ToString, (AssemblyName * __this, MethodInfo * method)); DO_APP_FUNC(0x003CD530, Byte__Array *, AssemblyName_GetPublicKey, (AssemblyName * __this, MethodInfo * method)); DO_APP_FUNC(0x01A71650, Byte__Array *, AssemblyName_GetPublicKeyToken, (AssemblyName * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC550, AssemblyName_GetPublicKeyToken__MethodInfo); DO_APP_FUNC(0x01A71750, bool, AssemblyName_get_IsPublicKeyValid, (AssemblyName * __this, MethodInfo * method)); DO_APP_FUNC(0x01A71800, Byte__Array *, AssemblyName_InternalGetPublicKeyToken, (AssemblyName * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC560, AssemblyName_InternalGetPublicKeyToken__MethodInfo); DO_APP_FUNC(0x01A71900, void, AssemblyName_get_public_token, (uint8_t * token, uint8_t * pubkey, int32_t len, MethodInfo * method)); DO_APP_FUNC(0x01A71970, Byte__Array *, AssemblyName_ComputePublicKeyToken, (AssemblyName * __this, MethodInfo * method)); DO_APP_FUNC(0x01A71A60, void, AssemblyName_SetPublicKey, (AssemblyName * __this, Byte__Array * publicKey, MethodInfo * method)); DO_APP_FUNC(0x01A71AD0, void, AssemblyName_GetObjectData, (AssemblyName * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC4A8, AssemblyName_GetObjectData__MethodInfo); DO_APP_FUNC(0x01A71DF0, Object *, AssemblyName_Clone, (AssemblyName * __this, MethodInfo * method)); DO_APP_FUNC(0x01A720D0, void, AssemblyName_OnDeserialization, (AssemblyName * __this, Object * sender, MethodInfo * method)); DO_APP_FUNC(0x01A72160, MonoAssemblyName *, AssemblyName_GetNativeName, (void * assembly_ptr, MethodInfo * method)); @@ -9492,7 +10306,7 @@ DO_APP_FUNC(0x003AE050, void, CustomAttributeData__ctor, (CustomAttributeData * DO_APP_FUNC(0x01A72B40, void, CustomAttributeData__ctor_1, (CustomAttributeData * __this, ConstructorInfo * ctorInfo, Assembly * assembly, void * data, uint32_t data_length, MethodInfo * method)); DO_APP_FUNC(0x01A72CE0, void, CustomAttributeData__ctor_2, (CustomAttributeData * __this, ConstructorInfo * ctorInfo, MethodInfo * method)); DO_APP_FUNC(0x00F8C320, void, CustomAttributeData__ctor_3, (CustomAttributeData * __this, ConstructorInfo * ctorInfo, IList_1_System_Reflection_CustomAttributeTypedArgument_ * ctorArgs, IList_1_System_Reflection_CustomAttributeNamedArgument_ * namedArgs, MethodInfo * method)); -DO_APP_FUNC(0x01A72D60, void, CustomAttributeData_ResolveArgumentsInternal, (ConstructorInfo * ctor, Assembly * assembly, void * data, uint32_t data_length, Object__Array * ctorArgs, Object__Array * namedArgs, MethodInfo * method)); +DO_APP_FUNC(0x01A72D60, void, CustomAttributeData_ResolveArgumentsInternal, (ConstructorInfo * ctor, Assembly * assembly, void * data, uint32_t data_length, Object__Array * * ctorArgs, Object__Array * * namedArgs, MethodInfo * method)); DO_APP_FUNC(0x01A72E30, void, CustomAttributeData_ResolveArguments, (CustomAttributeData * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, ConstructorInfo *, CustomAttributeData_get_Constructor, (CustomAttributeData * __this, MethodInfo * method)); DO_APP_FUNC(0x01A734F0, IList_1_System_Reflection_CustomAttributeTypedArgument_ *, CustomAttributeData_get_ConstructorArguments, (CustomAttributeData * __this, MethodInfo * method)); @@ -9513,11 +10327,14 @@ DO_APP_FUNC(0x003AE050, void, LocalVariableInfo__ctor, (LocalVariableInfo * __th DO_APP_FUNC(0x01A74F60, String *, LocalVariableInfo_ToString, (LocalVariableInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01A75040, void, RuntimeAssembly__ctor, (RuntimeAssembly * __this, MethodInfo * method)); DO_APP_FUNC(0x01A750D0, void, RuntimeAssembly_GetObjectData, (RuntimeAssembly * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); -DO_APP_FUNC(0x01A75170, RuntimeAssembly *, RuntimeAssembly_LoadWithPartialNameInternal, (String * partialName, Evidence * securityEvidence, StackCrawlMark__Enum stackMark, MethodInfo * method)); -DO_APP_FUNC(0x01A75200, RuntimeAssembly *, RuntimeAssembly_LoadWithPartialNameInternal_1, (AssemblyName * an, Evidence * securityEvidence, StackCrawlMark__Enum stackMark, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC408, RuntimeAssembly_GetObjectData__MethodInfo); +DO_APP_FUNC(0x01A75170, RuntimeAssembly *, RuntimeAssembly_LoadWithPartialNameInternal, (String * partialName, Evidence * securityEvidence, StackCrawlMark__Enum * stackMark, MethodInfo * method)); +DO_APP_FUNC(0x01A75200, RuntimeAssembly *, RuntimeAssembly_LoadWithPartialNameInternal_1, (AssemblyName * an, Evidence * securityEvidence, StackCrawlMark__Enum * stackMark, MethodInfo * method)); DO_APP_FUNC(0x01A75250, AssemblyName *, RuntimeAssembly_GetName, (RuntimeAssembly * __this, bool copiedName, MethodInfo * method)); DO_APP_FUNC(0x01A75260, Type *, RuntimeAssembly_GetType, (RuntimeAssembly * __this, String * name, bool throwOnError, bool ignoreCase, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC410, RuntimeAssembly_GetType__MethodInfo); DO_APP_FUNC(0x01A75340, Module *, RuntimeAssembly_GetModule, (RuntimeAssembly * __this, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC3A8, RuntimeAssembly_GetModule__MethodInfo); DO_APP_FUNC(0x01A754D0, Module__Array *, RuntimeAssembly_GetModules, (RuntimeAssembly * __this, bool getResourceModules, MethodInfo * method)); DO_APP_FUNC(0x01A75610, Byte__Array *, RuntimeAssembly_GetAotId, (MethodInfo * method)); DO_APP_FUNC(0x01A75650, String *, RuntimeAssembly_get_code_base, (Assembly * a, bool escaped, MethodInfo * method)); @@ -9534,9 +10351,11 @@ DO_APP_FUNC(0x004217B0, void, RuntimeAssembly_set_FromByteArray, (RuntimeAssembl DO_APP_FUNC(0x01A75890, String *, RuntimeAssembly_get_Location, (RuntimeAssembly * __this, MethodInfo * method)); DO_APP_FUNC(0x01A75960, bool, RuntimeAssembly_GetManifestResourceInfoInternal, (RuntimeAssembly * __this, String * name, ManifestResourceInfo * info, MethodInfo * method)); DO_APP_FUNC(0x01A75970, ManifestResourceInfo *, RuntimeAssembly_GetManifestResourceInfo, (RuntimeAssembly * __this, String * resourceName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC388, RuntimeAssembly_GetManifestResourceInfo__MethodInfo); DO_APP_FUNC(0x01A75B50, String__Array *, RuntimeAssembly_GetManifestResourceNames, (RuntimeAssembly * __this, MethodInfo * method)); -DO_APP_FUNC(0x01A75CA0, void *, RuntimeAssembly_GetManifestResourceInternal, (RuntimeAssembly * __this, String * name, int32_t size, Module * module, MethodInfo * method)); +DO_APP_FUNC(0x01A75CA0, void *, RuntimeAssembly_GetManifestResourceInternal, (RuntimeAssembly * __this, String * name, int32_t * size, Module * * module, MethodInfo * method)); DO_APP_FUNC(0x01A75CB0, Stream *, RuntimeAssembly_GetManifestResourceStream, (RuntimeAssembly * __this, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC3A0, RuntimeAssembly_GetManifestResourceStream__MethodInfo); DO_APP_FUNC(0x01A76270, bool, RuntimeAssembly_IsDefined, (RuntimeAssembly * __this, Type * attributeType, bool inherit, MethodInfo * method)); DO_APP_FUNC(0x01A762E0, Object__Array *, RuntimeAssembly_GetCustomAttributes, (RuntimeAssembly * __this, bool inherit, MethodInfo * method)); DO_APP_FUNC(0x01A76340, Object__Array *, RuntimeAssembly_GetCustomAttributes_1, (RuntimeAssembly * __this, Type * attributeType, bool inherit, MethodInfo * method)); @@ -9546,7 +10365,7 @@ DO_APP_FUNC(0x01A76450, bool, RuntimeAssembly_Equals, (RuntimeAssembly * __this, DO_APP_FUNC(0x01A76510, String *, RuntimeAssembly_ToString, (RuntimeAssembly * __this, MethodInfo * method)); DO_APP_FUNC(0x01A765A0, void, RuntimeAssembly_UnmanagedMemoryStreamForModule__ctor, (RuntimeAssembly_UnmanagedMemoryStreamForModule * __this, uint8_t * pointer, int64_t length, Module * module, MethodInfo * method)); DO_APP_FUNC(0x01A76680, void, RuntimeAssembly_UnmanagedMemoryStreamForModule_Dispose, (RuntimeAssembly_UnmanagedMemoryStreamForModule * __this, bool disposing, MethodInfo * method)); -DO_APP_FUNC(0x01A76700, void, RuntimeEventInfo_get_event_info, (RuntimeEventInfo * ev, MonoEventInfo info, MethodInfo * method)); +DO_APP_FUNC(0x01A76700, void, RuntimeEventInfo_get_event_info, (RuntimeEventInfo * ev, MonoEventInfo * info, MethodInfo * method)); DO_APP_FUNC(0x01A76810, MonoEventInfo, RuntimeEventInfo_GetEventInfo, (RuntimeEventInfo * ev, MethodInfo * method)); DO_APP_FUNC(0x01A76930, Module *, RuntimeEventInfo_get_Module, (RuntimeEventInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01A76960, BindingFlags__Enum, RuntimeEventInfo_get_BindingFlags, (RuntimeEventInfo * __this, MethodInfo * method)); @@ -9554,6 +10373,7 @@ DO_APP_FUNC(0x01A76970, RuntimeType *, RuntimeEventInfo_GetDeclaringTypeInternal DO_APP_FUNC(0x01A76A00, RuntimeType *, RuntimeEventInfo_get_ReflectedTypeInternal, (RuntimeEventInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01A76930, RuntimeModule *, RuntimeEventInfo_GetRuntimeModule, (RuntimeEventInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01A76A90, void, RuntimeEventInfo_GetObjectData, (RuntimeEventInfo * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC330, RuntimeEventInfo_GetObjectData__MethodInfo); DO_APP_FUNC(0x01A76BD0, BindingFlags__Enum, RuntimeEventInfo_GetBindingFlags, (RuntimeEventInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01A76D60, MethodInfo_1 *, RuntimeEventInfo_GetAddMethod, (RuntimeEventInfo * __this, bool nonPublic, MethodInfo * method)); DO_APP_FUNC(0x01A76DE0, MethodInfo_1 *, RuntimeEventInfo_GetRaiseMethod, (RuntimeEventInfo * __this, bool nonPublic, MethodInfo * method)); @@ -9575,10 +10395,13 @@ DO_APP_FUNC(0x01A77160, RuntimeType *, RuntimeFieldInfo_GetDeclaringTypeInternal DO_APP_FUNC(0x01A771F0, RuntimeType *, RuntimeFieldInfo_get_ReflectedTypeInternal, (RuntimeFieldInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01A77130, RuntimeModule *, RuntimeFieldInfo_GetRuntimeModule, (RuntimeFieldInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01A77280, void, RuntimeFieldInfo_GetObjectData, (RuntimeFieldInfo * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC2C8, RuntimeFieldInfo_GetObjectData__MethodInfo); DO_APP_FUNC(0x01A773F0, Object *, RuntimeFieldInfo_UnsafeGetValue, (RuntimeFieldInfo * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x01A77440, void, RuntimeFieldInfo_CheckConsistency, (RuntimeFieldInfo * __this, Object * target, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC2E8, RuntimeFieldInfo_CheckConsistency__MethodInfo); DO_APP_FUNC(0x01A77610, void, RuntimeFieldInfo_UnsafeSetValue, (RuntimeFieldInfo * __this, Object * obj, Object * value, BindingFlags__Enum invokeAttr, Binder * binder, CultureInfo * culture, MethodInfo * method)); DO_APP_FUNC(0x01A77660, void, RuntimeFieldInfo_SetValueDirect, (RuntimeFieldInfo * __this, TypedReference obj, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC320, RuntimeFieldInfo_SetValueDirect__MethodInfo); DO_APP_FUNC(0x003C7300, FieldAttributes__Enum, RuntimeFieldInfo_get_Attributes, (RuntimeFieldInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, RuntimeFieldHandle, RuntimeFieldInfo_get_FieldHandle, (RuntimeFieldInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01A77820, Type *, RuntimeFieldInfo_ResolveType, (RuntimeFieldInfo * __this, MethodInfo * method)); @@ -9593,15 +10416,18 @@ DO_APP_FUNC(0x01A779D0, Object__Array *, RuntimeFieldInfo_GetCustomAttributes_1, DO_APP_FUNC(0x01A77A40, int32_t, RuntimeFieldInfo_GetFieldOffset, (RuntimeFieldInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01A773F0, Object *, RuntimeFieldInfo_GetValueInternal, (RuntimeFieldInfo * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x01A77A50, Object *, RuntimeFieldInfo_GetValue, (RuntimeFieldInfo * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC2B0, RuntimeFieldInfo_GetValue__MethodInfo); DO_APP_FUNC(0x01A77C50, String *, RuntimeFieldInfo_ToString, (RuntimeFieldInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01A77CF0, void, RuntimeFieldInfo_SetValueInternal, (FieldInfo_1 * fi, Object * obj, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01A77D00, void, RuntimeFieldInfo_SetValue, (RuntimeFieldInfo * __this, Object * obj, Object * val, BindingFlags__Enum invokeAttr, Binder * binder, CultureInfo * culture, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC258, RuntimeFieldInfo_SetValue__MethodInfo); DO_APP_FUNC(0x01A78030, Object *, RuntimeFieldInfo_GetRawConstantValue, (RuntimeFieldInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01A781A0, void, RuntimeFieldInfo_CheckGeneric, (RuntimeFieldInfo * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC288, RuntimeFieldInfo_CheckGeneric__MethodInfo); DO_APP_FUNC(0x01A77120, int32_t, RuntimeFieldInfo_get_MetadataToken, (RuntimeFieldInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01A77120, int32_t, RuntimeFieldInfo_get_metadata_token, (RuntimeFieldInfo * monoField, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, RuntimeFieldInfo__ctor, (RuntimeFieldInfo * __this, MethodInfo * method)); -DO_APP_FUNC(0x01A78240, void, MonoMethodInfo_get_method_info, (void * handle, MonoMethodInfo info, MethodInfo * method)); +DO_APP_FUNC(0x01A78240, void, MonoMethodInfo_get_method_info, (void * handle, MonoMethodInfo * info, MethodInfo * method)); DO_APP_FUNC(0x01A783D0, int32_t, MonoMethodInfo_get_method_attributes, (void * handle, MethodInfo * method)); DO_APP_FUNC(0x01A783E0, MonoMethodInfo, MonoMethodInfo_GetMethodInfo, (void * handle, MethodInfo * method)); DO_APP_FUNC(0x01A78580, Type *, MonoMethodInfo_GetDeclaringType, (void * handle, MethodInfo * method)); @@ -9622,6 +10448,7 @@ DO_APP_FUNC(0x01A78AD0, Delegate *, RuntimeMethodInfo_CreateDelegate_1, (Runtime DO_APP_FUNC(0x01A78B00, String *, RuntimeMethodInfo_ToString, (RuntimeMethodInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01A786A0, RuntimeModule *, RuntimeMethodInfo_GetRuntimeModule, (RuntimeMethodInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01A78BB0, void, RuntimeMethodInfo_GetObjectData, (RuntimeMethodInfo * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC238, RuntimeMethodInfo_GetObjectData__MethodInfo); DO_APP_FUNC(0x01A78D80, String *, RuntimeMethodInfo_SerializationToString, (RuntimeMethodInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01A78E30, MethodBase *, RuntimeMethodInfo_GetMethodFromHandleNoGenericCheck, (RuntimeMethodHandle handle, MethodInfo * method)); DO_APP_FUNC(0x01A78EA0, MethodBase *, RuntimeMethodInfo_GetMethodFromHandleNoGenericCheck_1, (RuntimeMethodHandle handle, RuntimeTypeHandle reflectedType, MethodInfo * method)); @@ -9639,9 +10466,11 @@ DO_APP_FUNC(0x01A78F80, MethodImplAttributes__Enum, RuntimeMethodInfo_GetMethodI DO_APP_FUNC(0x01A78FB0, ParameterInfo__Array *, RuntimeMethodInfo_GetParameters, (RuntimeMethodInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01A79060, ParameterInfo__Array *, RuntimeMethodInfo_GetParametersInternal, (RuntimeMethodInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01A790B0, int32_t, RuntimeMethodInfo_GetParametersCount, (RuntimeMethodInfo * __this, MethodInfo * method)); -DO_APP_FUNC(0x01A79100, Object *, RuntimeMethodInfo_InternalInvoke, (RuntimeMethodInfo * __this, Object * obj, Object__Array * parameters, Exception * exc, MethodInfo * method)); +DO_APP_FUNC(0x01A79100, Object *, RuntimeMethodInfo_InternalInvoke, (RuntimeMethodInfo * __this, Object * obj, Object__Array * parameters, Exception * * exc, MethodInfo * method)); DO_APP_FUNC(0x01A79110, Object *, RuntimeMethodInfo_Invoke, (RuntimeMethodInfo * __this, Object * obj, BindingFlags__Enum invokeAttr, Binder * binder, Object__Array * parameters, CultureInfo * culture, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC208, RuntimeMethodInfo_Invoke__MethodInfo); DO_APP_FUNC(0x01A79420, void, RuntimeMethodInfo_ConvertValues, (Binder * binder, Object__Array * args, ParameterInfo__Array * pinfo, CultureInfo * culture, BindingFlags__Enum invokeAttr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC1C0, RuntimeMethodInfo_ConvertValues__MethodInfo); DO_APP_FUNC(0x003BB3C0, RuntimeMethodHandle, RuntimeMethodInfo_get_MethodHandle, (RuntimeMethodInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01A797A0, MethodAttributes__Enum, RuntimeMethodInfo_get_Attributes, (RuntimeMethodInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01A797B0, CallingConventions__Enum, RuntimeMethodInfo_get_CallingConvention, (RuntimeMethodInfo * __this, MethodInfo * method)); @@ -9651,15 +10480,17 @@ DO_APP_FUNC(0x01A797F0, String *, RuntimeMethodInfo_get_Name, (RuntimeMethodInfo DO_APP_FUNC(0x01A79820, bool, RuntimeMethodInfo_IsDefined, (RuntimeMethodInfo * __this, Type * attributeType, bool inherit, MethodInfo * method)); DO_APP_FUNC(0x01A79890, Object__Array *, RuntimeMethodInfo_GetCustomAttributes, (RuntimeMethodInfo * __this, bool inherit, MethodInfo * method)); DO_APP_FUNC(0x01A798F0, Object__Array *, RuntimeMethodInfo_GetCustomAttributes_1, (RuntimeMethodInfo * __this, Type * attributeType, bool inherit, MethodInfo * method)); -DO_APP_FUNC(0x01A79960, void, RuntimeMethodInfo_GetPInvoke, (RuntimeMethodInfo * __this, PInvokeAttributes__Enum flags, String * entryPoint, String * dllName, MethodInfo * method)); +DO_APP_FUNC(0x01A79960, void, RuntimeMethodInfo_GetPInvoke, (RuntimeMethodInfo * __this, PInvokeAttributes__Enum * flags, String * * entryPoint, String * * dllName, MethodInfo * method)); DO_APP_FUNC(0x01A79A10, Object__Array *, RuntimeMethodInfo_GetPseudoCustomAttributes, (RuntimeMethodInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01A79BD0, CustomAttributeData__Array *, RuntimeMethodInfo_GetPseudoCustomAttributesData, (RuntimeMethodInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01A79E20, CustomAttributeData *, RuntimeMethodInfo_GetDllImportAttributeData, (RuntimeMethodInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01A7A9A0, MethodInfo_1 *, RuntimeMethodInfo_MakeGenericMethod, (RuntimeMethodInfo * __this, Type__Array * methodInstantiation, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC0F0, RuntimeMethodInfo_MakeGenericMethod__MethodInfo); DO_APP_FUNC(0x01A7AD40, MethodInfo_1 *, RuntimeMethodInfo_MakeGenericMethod_impl, (RuntimeMethodInfo * __this, Type__Array * types, MethodInfo * method)); DO_APP_FUNC(0x01A7AD50, Type__Array *, RuntimeMethodInfo_GetGenericArguments, (RuntimeMethodInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01A7AD60, MethodInfo_1 *, RuntimeMethodInfo_GetGenericMethodDefinition_impl, (RuntimeMethodInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01A7AD90, MethodInfo_1 *, RuntimeMethodInfo_GetGenericMethodDefinition, (RuntimeMethodInfo * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC130, RuntimeMethodInfo_GetGenericMethodDefinition__MethodInfo); DO_APP_FUNC(0x01A7AE20, bool, RuntimeMethodInfo_get_IsGenericMethodDefinition, (RuntimeMethodInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01A7AE30, bool, RuntimeMethodInfo_get_IsGenericMethod, (RuntimeMethodInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01A7AE60, bool, RuntimeMethodInfo_get_ContainsGenericParameters, (RuntimeMethodInfo * __this, MethodInfo * method)); @@ -9670,16 +10501,20 @@ DO_APP_FUNC(0x01A7AF50, RuntimeModule *, RuntimeConstructorInfo_GetRuntimeModule DO_APP_FUNC(0x003CB690, BindingFlags__Enum, RuntimeConstructorInfo_get_BindingFlags, (RuntimeConstructorInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01A7AFF0, RuntimeType *, RuntimeConstructorInfo_get_ReflectedTypeInternal, (RuntimeConstructorInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01A7B080, void, RuntimeConstructorInfo_GetObjectData, (RuntimeConstructorInfo * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC098, RuntimeConstructorInfo_GetObjectData__MethodInfo); DO_APP_FUNC(0x01A7B210, String *, RuntimeConstructorInfo_SerializationToString, (RuntimeConstructorInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01A7B230, void, RuntimeConstructorInfo_SerializationInvoke, (RuntimeConstructorInfo * __this, Object * target, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x01A78F80, MethodImplAttributes__Enum, RuntimeConstructorInfo_GetMethodImplementationFlags, (RuntimeConstructorInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01A79060, ParameterInfo__Array *, RuntimeConstructorInfo_GetParameters, (RuntimeConstructorInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01A79060, ParameterInfo__Array *, RuntimeConstructorInfo_GetParametersInternal, (RuntimeConstructorInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01A7B390, int32_t, RuntimeConstructorInfo_GetParametersCount, (RuntimeConstructorInfo * __this, MethodInfo * method)); -DO_APP_FUNC(0x01A79100, Object *, RuntimeConstructorInfo_InternalInvoke, (RuntimeConstructorInfo * __this, Object * obj, Object__Array * parameters, Exception * exc, MethodInfo * method)); +DO_APP_FUNC(0x01A79100, Object *, RuntimeConstructorInfo_InternalInvoke, (RuntimeConstructorInfo * __this, Object * obj, Object__Array * parameters, Exception * * exc, MethodInfo * method)); DO_APP_FUNC(0x01A7B3E0, Object *, RuntimeConstructorInfo_Invoke, (RuntimeConstructorInfo * __this, Object * obj, BindingFlags__Enum invokeAttr, Binder * binder, Object__Array * parameters, CultureInfo * culture, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC0B0, RuntimeConstructorInfo_Invoke__MethodInfo); DO_APP_FUNC(0x01A7B540, Object *, RuntimeConstructorInfo_DoInvoke, (RuntimeConstructorInfo * __this, Object * obj, BindingFlags__Enum invokeAttr, Binder * binder, Object__Array * parameters, CultureInfo * culture, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC050, RuntimeConstructorInfo_DoInvoke__MethodInfo); DO_APP_FUNC(0x01A7B7E0, Object *, RuntimeConstructorInfo_InternalInvoke_1, (RuntimeConstructorInfo * __this, Object * obj, Object__Array * parameters, bool wrapExceptions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC068, RuntimeConstructorInfo_InternalInvoke_1__MethodInfo); DO_APP_FUNC(0x01A7B8D0, Object *, RuntimeConstructorInfo_Invoke_1, (RuntimeConstructorInfo * __this, BindingFlags__Enum invokeAttr, Binder * binder, Object__Array * parameters, CultureInfo * culture, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, RuntimeMethodHandle, RuntimeConstructorInfo_get_MethodHandle, (RuntimeConstructorInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01A797A0, MethodAttributes__Enum, RuntimeConstructorInfo_get_Attributes, (RuntimeConstructorInfo * __this, MethodInfo * method)); @@ -9706,6 +10541,7 @@ DO_APP_FUNC(0x01A7BB60, Object__Array *, RuntimeModule_GetCustomAttributes, (Run DO_APP_FUNC(0x01A7BBC0, Object__Array *, RuntimeModule_GetCustomAttributes_1, (RuntimeModule * __this, Type * attributeType, bool inherit, MethodInfo * method)); DO_APP_FUNC(0x01A7BC30, bool, RuntimeModule_IsDefined, (RuntimeModule * __this, Type * attributeType, bool inherit, MethodInfo * method)); DO_APP_FUNC(0x01A7BCA0, void, RuntimeModule_GetObjectData, (RuntimeModule * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC028, RuntimeModule_GetObjectData__MethodInfo); DO_APP_FUNC(0x01A7BDC0, RuntimeAssembly *, RuntimeModule_GetRuntimeAssembly, (RuntimeModule * __this, MethodInfo * method)); DO_APP_FUNC(0x01A7BE40, Guid, RuntimeModule_GetModuleVersionId, (RuntimeModule * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, RuntimeModule_GetGuidInternal, (void * module, Byte__Array * guid, MethodInfo * method)); @@ -9723,7 +10559,7 @@ DO_APP_FUNC(0x01A7CD50, Object__Array *, RuntimeParameterInfo_GetPseudoCustomAtt DO_APP_FUNC(0x01A7D070, CustomAttributeData__Array *, RuntimeParameterInfo_GetPseudoCustomAttributesData, (RuntimeParameterInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01A7D740, ParameterInfo *, RuntimeParameterInfo_New, (ParameterInfo * pinfo, MemberInfo_1 * member, MethodInfo * method)); DO_APP_FUNC(0x01A7D7C0, ParameterInfo *, RuntimeParameterInfo_New_1, (Type * type, MemberInfo_1 * member, MarshalAsAttribute * marshalAs, MethodInfo * method)); -DO_APP_FUNC(0x01A7D990, void, RuntimePropertyInfo_get_property_info, (RuntimePropertyInfo * prop, MonoPropertyInfo info, PInfo__Enum req_info, MethodInfo * method)); +DO_APP_FUNC(0x01A7D990, void, RuntimePropertyInfo_get_property_info, (RuntimePropertyInfo * prop, MonoPropertyInfo * info, PInfo__Enum req_info, MethodInfo * method)); DO_APP_FUNC(0x003CB690, BindingFlags__Enum, RuntimePropertyInfo_get_BindingFlags, (RuntimePropertyInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01A7D9A0, Module *, RuntimePropertyInfo_get_Module, (RuntimePropertyInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01A7DA40, RuntimeType *, RuntimePropertyInfo_GetDeclaringTypeInternal, (RuntimePropertyInfo * __this, MethodInfo * method)); @@ -9732,6 +10568,7 @@ DO_APP_FUNC(0x01A7D9A0, RuntimeModule *, RuntimePropertyInfo_GetRuntimeModule, ( DO_APP_FUNC(0x01A7DB60, String *, RuntimePropertyInfo_ToString, (RuntimePropertyInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01A7DB70, String *, RuntimePropertyInfo_FormatNameAndSig, (RuntimePropertyInfo * __this, bool serialization, MethodInfo * method)); DO_APP_FUNC(0x01A7DD30, void, RuntimePropertyInfo_GetObjectData, (RuntimePropertyInfo * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABE80, RuntimePropertyInfo_GetObjectData__MethodInfo); DO_APP_FUNC(0x01A7DEB0, String *, RuntimePropertyInfo_SerializationToString, (RuntimePropertyInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01A7DEC0, void, RuntimePropertyInfo_CachePropertyInfo, (RuntimePropertyInfo * __this, PInfo__Enum flags, MethodInfo * method)); DO_APP_FUNC(0x01A7DF00, bool, RuntimePropertyInfo_get_CanRead, (RuntimePropertyInfo * __this, MethodInfo * method)); @@ -9748,11 +10585,14 @@ DO_APP_FUNC(0x01A7E4A0, Object__Array *, RuntimePropertyInfo_GetCustomAttributes DO_APP_FUNC(0x01A7E500, Object__Array *, RuntimePropertyInfo_GetCustomAttributes_1, (RuntimePropertyInfo * __this, Type * attributeType, bool inherit, MethodInfo * method)); DO_APP_FUNC(0x01A672F0, Object *, RuntimePropertyInfo_GetValue, (RuntimePropertyInfo * __this, Object * obj, Object__Array * index, MethodInfo * method)); DO_APP_FUNC(0x01A7E570, Object *, RuntimePropertyInfo_GetValue_1, (RuntimePropertyInfo * __this, Object * obj, BindingFlags__Enum invokeAttr, Binder * binder, Object__Array * index, CultureInfo * culture, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABDF8, RuntimePropertyInfo_GetValue_1__MethodInfo); DO_APP_FUNC(0x01A7E730, void, RuntimePropertyInfo_SetValue, (RuntimePropertyInfo * __this, Object * obj, Object * value, BindingFlags__Enum invokeAttr, Binder * binder, Object__Array * index, CultureInfo * culture, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABE28, RuntimePropertyInfo_SetValue__MethodInfo); DO_APP_FUNC(0x01A77120, int32_t, RuntimePropertyInfo_get_MetadataToken, (RuntimePropertyInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01A77120, int32_t, RuntimePropertyInfo_get_metadata_token, (RuntimePropertyInfo * monoProperty, MethodInfo * method)); DO_APP_FUNC(0x01A7E950, PropertyInfo_1 *, RuntimePropertyInfo_internal_from_handle_type, (void * event_handle, void * type_handle, MethodInfo * method)); DO_APP_FUNC(0x01A7E9B0, PropertyInfo_1 *, RuntimePropertyInfo_GetPropertyFromHandle, (RuntimePropertyHandle handle, RuntimeTypeHandle reflectedType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABD40, RuntimePropertyInfo_GetPropertyFromHandle__MethodInfo); DO_APP_FUNC(0x003AE050, void, RuntimePropertyInfo__ctor, (RuntimePropertyInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01040480, void, RuntimePropertyInfo_GetterAdapter__ctor, (RuntimePropertyInfo_GetterAdapter * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003F42D0, Object *, RuntimePropertyInfo_GetterAdapter_Invoke, (RuntimePropertyInfo_GetterAdapter * __this, Object * _this, MethodInfo * method)); @@ -9760,62 +10600,119 @@ DO_APP_FUNC(0x01A7EAE0, void, StrongNameKeyPair__ctor, (StrongNameKeyPair * __th DO_APP_FUNC(0x01A7EDF0, void, StrongNameKeyPair_System_Runtime_Serialization_ISerializable_GetObjectData, (StrongNameKeyPair * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, StrongNameKeyPair_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization, (StrongNameKeyPair * __this, Object * sender, MethodInfo * method)); DO_APP_FUNC(0x01A7F0B0, MethodAttributes__Enum, ConstructorBuilder_get_Attributes, (ConstructorBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABD80, ConstructorBuilder_get_Attributes__MethodInfo); DO_APP_FUNC(0x01A7F100, Type *, ConstructorBuilder_get_DeclaringType, (ConstructorBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABD88, ConstructorBuilder_get_DeclaringType__MethodInfo); DO_APP_FUNC(0x01A7F150, String *, ConstructorBuilder_get_Name, (ConstructorBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABD90, ConstructorBuilder_get_Name__MethodInfo); DO_APP_FUNC(0x01A7F1A0, ParameterInfo__Array *, ConstructorBuilder_GetParameters, (ConstructorBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABD98, ConstructorBuilder_GetParameters__MethodInfo); DO_APP_FUNC(0x01A7F1F0, MethodImplAttributes__Enum, ConstructorBuilder_GetMethodImplementationFlags, (ConstructorBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABDA0, ConstructorBuilder_GetMethodImplementationFlags__MethodInfo); DO_APP_FUNC(0x01A7F240, RuntimeMethodHandle, ConstructorBuilder_get_MethodHandle, (ConstructorBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABDA8, ConstructorBuilder_get_MethodHandle__MethodInfo); DO_APP_FUNC(0x01A7F290, Object *, ConstructorBuilder_Invoke, (ConstructorBuilder * __this, BindingFlags__Enum invokeAttr, Binder * binder, Object__Array * parameters, CultureInfo * culture, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABCB8, ConstructorBuilder_Invoke__MethodInfo); DO_APP_FUNC(0x01A7F2E0, bool, ConstructorBuilder_IsDefined, (ConstructorBuilder * __this, Type * attributeType, bool inherit, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABCC0, ConstructorBuilder_IsDefined__MethodInfo); DO_APP_FUNC(0x01A7F330, Object__Array *, ConstructorBuilder_GetCustomAttributes, (ConstructorBuilder * __this, bool inherit, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABCD0, ConstructorBuilder_GetCustomAttributes__MethodInfo); DO_APP_FUNC(0x01A7F380, Object__Array *, ConstructorBuilder_GetCustomAttributes_1, (ConstructorBuilder * __this, Type * attributeType, bool inherit, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABCD8, ConstructorBuilder_GetCustomAttributes_1__MethodInfo); DO_APP_FUNC(0x01A7F3D0, Type *, ConstructorBuilder_get_ReflectedType, (ConstructorBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABCE0, ConstructorBuilder_get_ReflectedType__MethodInfo); DO_APP_FUNC(0x01A7F420, Object *, ConstructorBuilder_Invoke_1, (ConstructorBuilder * __this, Object * obj, BindingFlags__Enum invokeAttr, Binder * binder, Object__Array * parameters, CultureInfo * culture, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABCE8, ConstructorBuilder_Invoke_1__MethodInfo); DO_APP_FUNC(0x01A7F470, MethodAttributes__Enum, DynamicMethod_get_Attributes, (DynamicMethod * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABCF0, DynamicMethod_get_Attributes__MethodInfo); DO_APP_FUNC(0x01A7F4C0, Type *, DynamicMethod_get_DeclaringType, (DynamicMethod * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABCF8, DynamicMethod_get_DeclaringType__MethodInfo); DO_APP_FUNC(0x01A7F510, String *, DynamicMethod_get_Name, (DynamicMethod * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABD00, DynamicMethod_get_Name__MethodInfo); DO_APP_FUNC(0x01A7F560, ParameterInfo__Array *, DynamicMethod_GetParameters, (DynamicMethod * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABD08, DynamicMethod_GetParameters__MethodInfo); DO_APP_FUNC(0x01A7F5B0, RuntimeMethodHandle, DynamicMethod_get_MethodHandle, (DynamicMethod * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABD10, DynamicMethod_get_MethodHandle__MethodInfo); DO_APP_FUNC(0x01A7F600, Type *, DynamicMethod_get_ReflectedType, (DynamicMethod * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABD18, DynamicMethod_get_ReflectedType__MethodInfo); DO_APP_FUNC(0x01A7F650, Object__Array *, DynamicMethod_GetCustomAttributes, (DynamicMethod * __this, bool inherit, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABD20, DynamicMethod_GetCustomAttributes__MethodInfo); DO_APP_FUNC(0x01A7F6A0, Object__Array *, DynamicMethod_GetCustomAttributes_1, (DynamicMethod * __this, Type * attributeType, bool inherit, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABD28, DynamicMethod_GetCustomAttributes_1__MethodInfo); DO_APP_FUNC(0x01A7F6F0, MethodImplAttributes__Enum, DynamicMethod_GetMethodImplementationFlags, (DynamicMethod * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABD30, DynamicMethod_GetMethodImplementationFlags__MethodInfo); DO_APP_FUNC(0x01A7F740, Object *, DynamicMethod_Invoke, (DynamicMethod * __this, Object * obj, BindingFlags__Enum invokeAttr, Binder * binder, Object__Array * parameters, CultureInfo * culture, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABD38, DynamicMethod_Invoke__MethodInfo); DO_APP_FUNC(0x01A7F790, bool, DynamicMethod_IsDefined, (DynamicMethod * __this, Type * attributeType, bool inherit, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABBF8, DynamicMethod_IsDefined__MethodInfo); DO_APP_FUNC(0x01A7F7E0, Assembly *, EnumBuilder_get_Assembly, (EnumBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABC08, EnumBuilder_get_Assembly__MethodInfo); DO_APP_FUNC(0x01A7F830, String *, EnumBuilder_get_AssemblyQualifiedName, (EnumBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABC18, EnumBuilder_get_AssemblyQualifiedName__MethodInfo); DO_APP_FUNC(0x01A7F880, Type *, EnumBuilder_get_BaseType, (EnumBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABC28, EnumBuilder_get_BaseType__MethodInfo); DO_APP_FUNC(0x01A7F8D0, String *, EnumBuilder_get_FullName, (EnumBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABC38, EnumBuilder_get_FullName__MethodInfo); DO_APP_FUNC(0x01A7F920, Guid, EnumBuilder_get_GUID, (EnumBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABC48, EnumBuilder_get_GUID__MethodInfo); DO_APP_FUNC(0x01A7F970, Module *, EnumBuilder_get_Module, (EnumBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABC58, EnumBuilder_get_Module__MethodInfo); DO_APP_FUNC(0x01A7F9C0, String *, EnumBuilder_get_Name, (EnumBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABC68, EnumBuilder_get_Name__MethodInfo); DO_APP_FUNC(0x01A7FA10, String *, EnumBuilder_get_Namespace, (EnumBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABC78, EnumBuilder_get_Namespace__MethodInfo); DO_APP_FUNC(0x01A7FA60, Type *, EnumBuilder_get_UnderlyingSystemType, (EnumBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABC80, EnumBuilder_get_UnderlyingSystemType__MethodInfo); DO_APP_FUNC(0x01A7FAB0, TypeAttributes__Enum, EnumBuilder_GetAttributeFlagsImpl, (EnumBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABC88, EnumBuilder_GetAttributeFlagsImpl__MethodInfo); DO_APP_FUNC(0x01A7FB00, ConstructorInfo *, EnumBuilder_GetConstructorImpl, (EnumBuilder * __this, BindingFlags__Enum bindingAttr, Binder * binder, CallingConventions__Enum callConvention, Type__Array * types, ParameterModifier__Array * modifiers, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABC90, EnumBuilder_GetConstructorImpl__MethodInfo); DO_APP_FUNC(0x01A7FB50, ConstructorInfo__Array *, EnumBuilder_GetConstructors, (EnumBuilder * __this, BindingFlags__Enum bindingAttr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABC98, EnumBuilder_GetConstructors__MethodInfo); DO_APP_FUNC(0x01A7FBA0, Object__Array *, EnumBuilder_GetCustomAttributes, (EnumBuilder * __this, bool inherit, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABCA0, EnumBuilder_GetCustomAttributes__MethodInfo); DO_APP_FUNC(0x01A7FBF0, Object__Array *, EnumBuilder_GetCustomAttributes_1, (EnumBuilder * __this, Type * attributeType, bool inherit, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABCA8, EnumBuilder_GetCustomAttributes_1__MethodInfo); DO_APP_FUNC(0x01A7FC40, Type *, EnumBuilder_GetElementType, (EnumBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABCB0, EnumBuilder_GetElementType__MethodInfo); DO_APP_FUNC(0x01A7FC90, EventInfo_1 *, EnumBuilder_GetEvent, (EnumBuilder * __this, String * name, BindingFlags__Enum bindingAttr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABB50, EnumBuilder_GetEvent__MethodInfo); DO_APP_FUNC(0x01A7FCE0, EventInfo_1__Array *, EnumBuilder_GetEvents, (EnumBuilder * __this, BindingFlags__Enum bindingAttr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABB58, EnumBuilder_GetEvents__MethodInfo); DO_APP_FUNC(0x01A7FD30, FieldInfo_1 *, EnumBuilder_GetField, (EnumBuilder * __this, String * name, BindingFlags__Enum bindingAttr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABB68, EnumBuilder_GetField__MethodInfo); DO_APP_FUNC(0x01A7FD80, FieldInfo_1__Array *, EnumBuilder_GetFields, (EnumBuilder * __this, BindingFlags__Enum bindingAttr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABB78, EnumBuilder_GetFields__MethodInfo); DO_APP_FUNC(0x01A7FDD0, Type__Array *, EnumBuilder_GetInterfaces, (EnumBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABB80, EnumBuilder_GetInterfaces__MethodInfo); DO_APP_FUNC(0x01A7FE20, MemberInfo_1__Array *, EnumBuilder_GetMembers, (EnumBuilder * __this, BindingFlags__Enum bindingAttr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABB90, EnumBuilder_GetMembers__MethodInfo); DO_APP_FUNC(0x01A7FE70, MethodInfo_1 *, EnumBuilder_GetMethodImpl, (EnumBuilder * __this, String * name, BindingFlags__Enum bindingAttr, Binder * binder, CallingConventions__Enum callConvention, Type__Array * types, ParameterModifier__Array * modifiers, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABBA0, EnumBuilder_GetMethodImpl__MethodInfo); DO_APP_FUNC(0x01A7FEC0, MethodInfo_1__Array *, EnumBuilder_GetMethods, (EnumBuilder * __this, BindingFlags__Enum bindingAttr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABBA8, EnumBuilder_GetMethods__MethodInfo); DO_APP_FUNC(0x01A7FF10, Type *, EnumBuilder_GetNestedType, (EnumBuilder * __this, String * name, BindingFlags__Enum bindingAttr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABBB0, EnumBuilder_GetNestedType__MethodInfo); DO_APP_FUNC(0x01A7FF60, PropertyInfo_1__Array *, EnumBuilder_GetProperties, (EnumBuilder * __this, BindingFlags__Enum bindingAttr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABBB8, EnumBuilder_GetProperties__MethodInfo); DO_APP_FUNC(0x01A7FFB0, PropertyInfo_1 *, EnumBuilder_GetPropertyImpl, (EnumBuilder * __this, String * name, BindingFlags__Enum bindingAttr, Binder * binder, Type * returnType, Type__Array * types, ParameterModifier__Array * modifiers, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABBC0, EnumBuilder_GetPropertyImpl__MethodInfo); DO_APP_FUNC(0x01A80000, bool, EnumBuilder_HasElementTypeImpl, (EnumBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABBC8, EnumBuilder_HasElementTypeImpl__MethodInfo); DO_APP_FUNC(0x01A80050, Object *, EnumBuilder_InvokeMember, (EnumBuilder * __this, String * name, BindingFlags__Enum invokeAttr, Binder * binder, Object * target, Object__Array * args, ParameterModifier__Array * modifiers, CultureInfo * culture, String__Array * namedParameters, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABBD0, EnumBuilder_InvokeMember__MethodInfo); DO_APP_FUNC(0x01A800A0, bool, EnumBuilder_IsArrayImpl, (EnumBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABBD8, EnumBuilder_IsArrayImpl__MethodInfo); DO_APP_FUNC(0x01A800F0, bool, EnumBuilder_IsByRefImpl, (EnumBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABBE0, EnumBuilder_IsByRefImpl__MethodInfo); DO_APP_FUNC(0x01A80140, bool, EnumBuilder_IsCOMObjectImpl, (EnumBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABBE8, EnumBuilder_IsCOMObjectImpl__MethodInfo); DO_APP_FUNC(0x01A80190, bool, EnumBuilder_IsDefined, (EnumBuilder * __this, Type * attributeType, bool inherit, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABA88, EnumBuilder_IsDefined__MethodInfo); DO_APP_FUNC(0x01A801E0, bool, EnumBuilder_IsPointerImpl, (EnumBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABA98, EnumBuilder_IsPointerImpl__MethodInfo); DO_APP_FUNC(0x01A80230, bool, EnumBuilder_IsPrimitiveImpl, (EnumBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABAA8, EnumBuilder_IsPrimitiveImpl__MethodInfo); DO_APP_FUNC(0x01A80280, FieldAttributes__Enum, FieldBuilder_get_Attributes, (FieldBuilder * __this, MethodInfo * method)); DO_APP_FUNC(0x01A80280, Type *, FieldBuilder_get_DeclaringType, (FieldBuilder * __this, MethodInfo * method)); DO_APP_FUNC(0x01A80280, RuntimeFieldHandle, FieldBuilder_get_FieldHandle, (FieldBuilder * __this, MethodInfo * method)); @@ -9827,99 +10724,193 @@ DO_APP_FUNC(0x01A80280, Object__Array *, FieldBuilder_GetCustomAttributes_1, (Fi DO_APP_FUNC(0x01A80280, Object *, FieldBuilder_GetValue, (FieldBuilder * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x01A80280, bool, FieldBuilder_IsDefined, (FieldBuilder * __this, Type * attributeType, bool inherit, MethodInfo * method)); DO_APP_FUNC(0x01A80290, void, FieldBuilder_SetValue, (FieldBuilder * __this, Object * obj, Object * val, BindingFlags__Enum invokeAttr, Binder * binder, CultureInfo * culture, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABAB0, FieldBuilder_SetValue__MethodInfo); DO_APP_FUNC(0x01A802E0, Assembly *, GenericTypeParameterBuilder_get_Assembly, (GenericTypeParameterBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABAC0, GenericTypeParameterBuilder_get_Assembly__MethodInfo); DO_APP_FUNC(0x01A80330, String *, GenericTypeParameterBuilder_get_AssemblyQualifiedName, (GenericTypeParameterBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABAD0, GenericTypeParameterBuilder_get_AssemblyQualifiedName__MethodInfo); DO_APP_FUNC(0x01A80380, Type *, GenericTypeParameterBuilder_get_BaseType, (GenericTypeParameterBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABAD8, GenericTypeParameterBuilder_get_BaseType__MethodInfo); DO_APP_FUNC(0x01A803D0, String *, GenericTypeParameterBuilder_get_FullName, (GenericTypeParameterBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABAE0, GenericTypeParameterBuilder_get_FullName__MethodInfo); DO_APP_FUNC(0x01A80420, Guid, GenericTypeParameterBuilder_get_GUID, (GenericTypeParameterBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABAF0, GenericTypeParameterBuilder_get_GUID__MethodInfo); DO_APP_FUNC(0x01A80470, Module *, GenericTypeParameterBuilder_get_Module, (GenericTypeParameterBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABB00, GenericTypeParameterBuilder_get_Module__MethodInfo); DO_APP_FUNC(0x01A804C0, String *, GenericTypeParameterBuilder_get_Name, (GenericTypeParameterBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABB10, GenericTypeParameterBuilder_get_Name__MethodInfo); DO_APP_FUNC(0x01A80510, String *, GenericTypeParameterBuilder_get_Namespace, (GenericTypeParameterBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABB20, GenericTypeParameterBuilder_get_Namespace__MethodInfo); DO_APP_FUNC(0x01A80560, Type *, GenericTypeParameterBuilder_get_UnderlyingSystemType, (GenericTypeParameterBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABB28, GenericTypeParameterBuilder_get_UnderlyingSystemType__MethodInfo); DO_APP_FUNC(0x01A805B0, TypeAttributes__Enum, GenericTypeParameterBuilder_GetAttributeFlagsImpl, (GenericTypeParameterBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABB30, GenericTypeParameterBuilder_GetAttributeFlagsImpl__MethodInfo); DO_APP_FUNC(0x01A80600, ConstructorInfo *, GenericTypeParameterBuilder_GetConstructorImpl, (GenericTypeParameterBuilder * __this, BindingFlags__Enum bindingAttr, Binder * binder, CallingConventions__Enum callConvention, Type__Array * types, ParameterModifier__Array * modifiers, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABB38, GenericTypeParameterBuilder_GetConstructorImpl__MethodInfo); DO_APP_FUNC(0x01A80650, ConstructorInfo__Array *, GenericTypeParameterBuilder_GetConstructors, (GenericTypeParameterBuilder * __this, BindingFlags__Enum bindingAttr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABB48, GenericTypeParameterBuilder_GetConstructors__MethodInfo); DO_APP_FUNC(0x01A806A0, Object__Array *, GenericTypeParameterBuilder_GetCustomAttributes, (GenericTypeParameterBuilder * __this, bool inherit, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB9E0, GenericTypeParameterBuilder_GetCustomAttributes__MethodInfo); DO_APP_FUNC(0x01A806F0, Object__Array *, GenericTypeParameterBuilder_GetCustomAttributes_1, (GenericTypeParameterBuilder * __this, Type * attributeType, bool inherit, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB9E8, GenericTypeParameterBuilder_GetCustomAttributes_1__MethodInfo); DO_APP_FUNC(0x01A80740, Type *, GenericTypeParameterBuilder_GetElementType, (GenericTypeParameterBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB9F0, GenericTypeParameterBuilder_GetElementType__MethodInfo); DO_APP_FUNC(0x01A80790, EventInfo_1 *, GenericTypeParameterBuilder_GetEvent, (GenericTypeParameterBuilder * __this, String * name, BindingFlags__Enum bindingAttr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABA00, GenericTypeParameterBuilder_GetEvent__MethodInfo); DO_APP_FUNC(0x01A807E0, EventInfo_1__Array *, GenericTypeParameterBuilder_GetEvents, (GenericTypeParameterBuilder * __this, BindingFlags__Enum bindingAttr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABA10, GenericTypeParameterBuilder_GetEvents__MethodInfo); DO_APP_FUNC(0x01A80830, FieldInfo_1 *, GenericTypeParameterBuilder_GetField, (GenericTypeParameterBuilder * __this, String * name, BindingFlags__Enum bindingAttr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABA18, GenericTypeParameterBuilder_GetField__MethodInfo); DO_APP_FUNC(0x01A80880, FieldInfo_1__Array *, GenericTypeParameterBuilder_GetFields, (GenericTypeParameterBuilder * __this, BindingFlags__Enum bindingAttr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABA20, GenericTypeParameterBuilder_GetFields__MethodInfo); DO_APP_FUNC(0x01A808D0, Type__Array *, GenericTypeParameterBuilder_GetInterfaces, (GenericTypeParameterBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABA28, GenericTypeParameterBuilder_GetInterfaces__MethodInfo); DO_APP_FUNC(0x01A80920, MemberInfo_1__Array *, GenericTypeParameterBuilder_GetMembers, (GenericTypeParameterBuilder * __this, BindingFlags__Enum bindingAttr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABA30, GenericTypeParameterBuilder_GetMembers__MethodInfo); DO_APP_FUNC(0x01A80970, MethodInfo_1 *, GenericTypeParameterBuilder_GetMethodImpl, (GenericTypeParameterBuilder * __this, String * name, BindingFlags__Enum bindingAttr, Binder * binder, CallingConventions__Enum callConvention, Type__Array * types, ParameterModifier__Array * modifiers, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABA38, GenericTypeParameterBuilder_GetMethodImpl__MethodInfo); DO_APP_FUNC(0x01A809C0, MethodInfo_1__Array *, GenericTypeParameterBuilder_GetMethods, (GenericTypeParameterBuilder * __this, BindingFlags__Enum bindingAttr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABA40, GenericTypeParameterBuilder_GetMethods__MethodInfo); DO_APP_FUNC(0x01A80A10, Type *, GenericTypeParameterBuilder_GetNestedType, (GenericTypeParameterBuilder * __this, String * name, BindingFlags__Enum bindingAttr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABA48, GenericTypeParameterBuilder_GetNestedType__MethodInfo); DO_APP_FUNC(0x01A80A60, PropertyInfo_1__Array *, GenericTypeParameterBuilder_GetProperties, (GenericTypeParameterBuilder * __this, BindingFlags__Enum bindingAttr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABA50, GenericTypeParameterBuilder_GetProperties__MethodInfo); DO_APP_FUNC(0x01A80AB0, PropertyInfo_1 *, GenericTypeParameterBuilder_GetPropertyImpl, (GenericTypeParameterBuilder * __this, String * name, BindingFlags__Enum bindingAttr, Binder * binder, Type * returnType, Type__Array * types, ParameterModifier__Array * modifiers, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABA58, GenericTypeParameterBuilder_GetPropertyImpl__MethodInfo); DO_APP_FUNC(0x01A80B00, bool, GenericTypeParameterBuilder_HasElementTypeImpl, (GenericTypeParameterBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABA68, GenericTypeParameterBuilder_HasElementTypeImpl__MethodInfo); DO_APP_FUNC(0x01A80B50, Object *, GenericTypeParameterBuilder_InvokeMember, (GenericTypeParameterBuilder * __this, String * name, BindingFlags__Enum invokeAttr, Binder * binder, Object * target, Object__Array * args, ParameterModifier__Array * modifiers, CultureInfo * culture, String__Array * namedParameters, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABA78, GenericTypeParameterBuilder_InvokeMember__MethodInfo); DO_APP_FUNC(0x01A80BA0, bool, GenericTypeParameterBuilder_IsArrayImpl, (GenericTypeParameterBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB940, GenericTypeParameterBuilder_IsArrayImpl__MethodInfo); DO_APP_FUNC(0x01A80BF0, bool, GenericTypeParameterBuilder_IsByRefImpl, (GenericTypeParameterBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB948, GenericTypeParameterBuilder_IsByRefImpl__MethodInfo); DO_APP_FUNC(0x01A80C40, bool, GenericTypeParameterBuilder_IsCOMObjectImpl, (GenericTypeParameterBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB950, GenericTypeParameterBuilder_IsCOMObjectImpl__MethodInfo); DO_APP_FUNC(0x01A80C90, bool, GenericTypeParameterBuilder_IsDefined, (GenericTypeParameterBuilder * __this, Type * attributeType, bool inherit, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB958, GenericTypeParameterBuilder_IsDefined__MethodInfo); DO_APP_FUNC(0x01A80CE0, bool, GenericTypeParameterBuilder_IsPointerImpl, (GenericTypeParameterBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB960, GenericTypeParameterBuilder_IsPointerImpl__MethodInfo); DO_APP_FUNC(0x01A80D30, bool, GenericTypeParameterBuilder_IsPrimitiveImpl, (GenericTypeParameterBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB968, GenericTypeParameterBuilder_IsPrimitiveImpl__MethodInfo); DO_APP_FUNC(0x01A80D80, MethodAttributes__Enum, MethodBuilder_get_Attributes, (MethodBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB970, MethodBuilder_get_Attributes__MethodInfo); DO_APP_FUNC(0x01A80DD0, Type *, MethodBuilder_get_DeclaringType, (MethodBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB980, MethodBuilder_get_DeclaringType__MethodInfo); DO_APP_FUNC(0x01A80E20, RuntimeMethodHandle, MethodBuilder_get_MethodHandle, (MethodBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB990, MethodBuilder_get_MethodHandle__MethodInfo); DO_APP_FUNC(0x01A80E70, String *, MethodBuilder_get_Name, (MethodBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB998, MethodBuilder_get_Name__MethodInfo); DO_APP_FUNC(0x01A80EC0, Type *, MethodBuilder_get_ReflectedType, (MethodBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB9A0, MethodBuilder_get_ReflectedType__MethodInfo); DO_APP_FUNC(0x01A80F10, Object__Array *, MethodBuilder_GetCustomAttributes, (MethodBuilder * __this, bool inherit, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB9A8, MethodBuilder_GetCustomAttributes__MethodInfo); DO_APP_FUNC(0x01A80F60, Object__Array *, MethodBuilder_GetCustomAttributes_1, (MethodBuilder * __this, Type * attributeType, bool inherit, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB9B8, MethodBuilder_GetCustomAttributes_1__MethodInfo); DO_APP_FUNC(0x01A80FB0, MethodImplAttributes__Enum, MethodBuilder_GetMethodImplementationFlags, (MethodBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB9C0, MethodBuilder_GetMethodImplementationFlags__MethodInfo); DO_APP_FUNC(0x01A81000, ParameterInfo__Array *, MethodBuilder_GetParameters, (MethodBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB9C8, MethodBuilder_GetParameters__MethodInfo); DO_APP_FUNC(0x01A81050, Object *, MethodBuilder_Invoke, (MethodBuilder * __this, Object * obj, BindingFlags__Enum invokeAttr, Binder * binder, Object__Array * parameters, CultureInfo * culture, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB9D8, MethodBuilder_Invoke__MethodInfo); DO_APP_FUNC(0x01A810A0, bool, MethodBuilder_IsDefined, (MethodBuilder * __this, Type * attributeType, bool inherit, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB898, MethodBuilder_IsDefined__MethodInfo); DO_APP_FUNC(0x01A810F0, bool, PropertyBuilder_get_CanRead, (PropertyBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB8A8, PropertyBuilder_get_CanRead__MethodInfo); DO_APP_FUNC(0x01A81140, bool, PropertyBuilder_get_CanWrite, (PropertyBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB8B0, PropertyBuilder_get_CanWrite__MethodInfo); DO_APP_FUNC(0x01A81190, Type *, PropertyBuilder_get_DeclaringType, (PropertyBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB8B8, PropertyBuilder_get_DeclaringType__MethodInfo); DO_APP_FUNC(0x01A811E0, String *, PropertyBuilder_get_Name, (PropertyBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB8C0, PropertyBuilder_get_Name__MethodInfo); DO_APP_FUNC(0x01A81230, Type *, PropertyBuilder_get_PropertyType, (PropertyBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB8D0, PropertyBuilder_get_PropertyType__MethodInfo); DO_APP_FUNC(0x01A81280, Type *, PropertyBuilder_get_ReflectedType, (PropertyBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB8D8, PropertyBuilder_get_ReflectedType__MethodInfo); DO_APP_FUNC(0x01A812D0, Object__Array *, PropertyBuilder_GetCustomAttributes, (PropertyBuilder * __this, bool inherit, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB8E0, PropertyBuilder_GetCustomAttributes__MethodInfo); DO_APP_FUNC(0x01A81320, Object__Array *, PropertyBuilder_GetCustomAttributes_1, (PropertyBuilder * __this, Type * attributeType, bool inherit, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB8E8, PropertyBuilder_GetCustomAttributes_1__MethodInfo); DO_APP_FUNC(0x01A81370, MethodInfo_1 *, PropertyBuilder_GetGetMethod, (PropertyBuilder * __this, bool nonPublic, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB8F8, PropertyBuilder_GetGetMethod__MethodInfo); DO_APP_FUNC(0x01A813C0, ParameterInfo__Array *, PropertyBuilder_GetIndexParameters, (PropertyBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB908, PropertyBuilder_GetIndexParameters__MethodInfo); DO_APP_FUNC(0x01A81410, MethodInfo_1 *, PropertyBuilder_GetSetMethod, (PropertyBuilder * __this, bool nonPublic, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB910, PropertyBuilder_GetSetMethod__MethodInfo); DO_APP_FUNC(0x01A81460, Object *, PropertyBuilder_GetValue, (PropertyBuilder * __this, Object * obj, BindingFlags__Enum invokeAttr, Binder * binder, Object__Array * index, CultureInfo * culture, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB918, PropertyBuilder_GetValue__MethodInfo); DO_APP_FUNC(0x01A814B0, bool, PropertyBuilder_IsDefined, (PropertyBuilder * __this, Type * attributeType, bool inherit, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB928, PropertyBuilder_IsDefined__MethodInfo); DO_APP_FUNC(0x01A81500, void, PropertyBuilder_SetValue, (PropertyBuilder * __this, Object * obj, Object * value, BindingFlags__Enum invokeAttr, Binder * binder, Object__Array * index, CultureInfo * culture, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB930, PropertyBuilder_SetValue__MethodInfo); DO_APP_FUNC(0x01A81550, Assembly *, TypeBuilder_get_Assembly, (TypeBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB938, TypeBuilder_get_Assembly__MethodInfo); DO_APP_FUNC(0x01A815A0, String *, TypeBuilder_get_AssemblyQualifiedName, (TypeBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB810, TypeBuilder_get_AssemblyQualifiedName__MethodInfo); DO_APP_FUNC(0x01A815F0, Type *, TypeBuilder_get_BaseType, (TypeBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB818, TypeBuilder_get_BaseType__MethodInfo); DO_APP_FUNC(0x01A81640, String *, TypeBuilder_get_FullName, (TypeBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB820, TypeBuilder_get_FullName__MethodInfo); DO_APP_FUNC(0x01A81690, Guid, TypeBuilder_get_GUID, (TypeBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB830, TypeBuilder_get_GUID__MethodInfo); DO_APP_FUNC(0x01A816E0, Module *, TypeBuilder_get_Module, (TypeBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB838, TypeBuilder_get_Module__MethodInfo); DO_APP_FUNC(0x01A81730, String *, TypeBuilder_get_Name, (TypeBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB840, TypeBuilder_get_Name__MethodInfo); DO_APP_FUNC(0x01A81780, String *, TypeBuilder_get_Namespace, (TypeBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB848, TypeBuilder_get_Namespace__MethodInfo); DO_APP_FUNC(0x01A817D0, Type *, TypeBuilder_get_UnderlyingSystemType, (TypeBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB850, TypeBuilder_get_UnderlyingSystemType__MethodInfo); DO_APP_FUNC(0x01A81820, TypeAttributes__Enum, TypeBuilder_GetAttributeFlagsImpl, (TypeBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB858, TypeBuilder_GetAttributeFlagsImpl__MethodInfo); DO_APP_FUNC(0x01A81870, ConstructorInfo *, TypeBuilder_GetConstructorImpl, (TypeBuilder * __this, BindingFlags__Enum bindingAttr, Binder * binder, CallingConventions__Enum callConvention, Type__Array * types, ParameterModifier__Array * modifiers, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB860, TypeBuilder_GetConstructorImpl__MethodInfo); DO_APP_FUNC(0x01A818C0, ConstructorInfo__Array *, TypeBuilder_GetConstructors, (TypeBuilder * __this, BindingFlags__Enum bindingAttr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB868, TypeBuilder_GetConstructors__MethodInfo); DO_APP_FUNC(0x01A81910, Object__Array *, TypeBuilder_GetCustomAttributes, (TypeBuilder * __this, bool inherit, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB870, TypeBuilder_GetCustomAttributes__MethodInfo); DO_APP_FUNC(0x01A81960, Object__Array *, TypeBuilder_GetCustomAttributes_1, (TypeBuilder * __this, Type * attributeType, bool inherit, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB878, TypeBuilder_GetCustomAttributes_1__MethodInfo); DO_APP_FUNC(0x01A819B0, Type *, TypeBuilder_GetElementType, (TypeBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB880, TypeBuilder_GetElementType__MethodInfo); DO_APP_FUNC(0x01A81A00, EventInfo_1 *, TypeBuilder_GetEvent, (TypeBuilder * __this, String * name, BindingFlags__Enum bindingAttr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB888, TypeBuilder_GetEvent__MethodInfo); DO_APP_FUNC(0x01A81A50, EventInfo_1__Array *, TypeBuilder_GetEvents, (TypeBuilder * __this, BindingFlags__Enum bindingAttr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB890, TypeBuilder_GetEvents__MethodInfo); DO_APP_FUNC(0x01A81AA0, FieldInfo_1 *, TypeBuilder_GetField, (TypeBuilder * __this, String * name, BindingFlags__Enum bindingAttr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB780, TypeBuilder_GetField__MethodInfo); DO_APP_FUNC(0x01A81AF0, FieldInfo_1__Array *, TypeBuilder_GetFields, (TypeBuilder * __this, BindingFlags__Enum bindingAttr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB788, TypeBuilder_GetFields__MethodInfo); DO_APP_FUNC(0x01A81B40, Type__Array *, TypeBuilder_GetInterfaces, (TypeBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB790, TypeBuilder_GetInterfaces__MethodInfo); DO_APP_FUNC(0x01A81B90, MemberInfo_1__Array *, TypeBuilder_GetMembers, (TypeBuilder * __this, BindingFlags__Enum bindingAttr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB7A0, TypeBuilder_GetMembers__MethodInfo); DO_APP_FUNC(0x01A81BE0, MethodInfo_1 *, TypeBuilder_GetMethodImpl, (TypeBuilder * __this, String * name, BindingFlags__Enum bindingAttr, Binder * binder, CallingConventions__Enum callConvention, Type__Array * types, ParameterModifier__Array * modifiers, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB7B0, TypeBuilder_GetMethodImpl__MethodInfo); DO_APP_FUNC(0x01A81C30, MethodInfo_1__Array *, TypeBuilder_GetMethods, (TypeBuilder * __this, BindingFlags__Enum bindingAttr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB7B8, TypeBuilder_GetMethods__MethodInfo); DO_APP_FUNC(0x01A81C80, Type *, TypeBuilder_GetNestedType, (TypeBuilder * __this, String * name, BindingFlags__Enum bindingAttr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB7C0, TypeBuilder_GetNestedType__MethodInfo); DO_APP_FUNC(0x01A81CD0, PropertyInfo_1__Array *, TypeBuilder_GetProperties, (TypeBuilder * __this, BindingFlags__Enum bindingAttr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB7C8, TypeBuilder_GetProperties__MethodInfo); DO_APP_FUNC(0x01A81D20, PropertyInfo_1 *, TypeBuilder_GetPropertyImpl, (TypeBuilder * __this, String * name, BindingFlags__Enum bindingAttr, Binder * binder, Type * returnType, Type__Array * types, ParameterModifier__Array * modifiers, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB7D0, TypeBuilder_GetPropertyImpl__MethodInfo); DO_APP_FUNC(0x01A81D70, bool, TypeBuilder_HasElementTypeImpl, (TypeBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB7D8, TypeBuilder_HasElementTypeImpl__MethodInfo); DO_APP_FUNC(0x01A81DC0, Object *, TypeBuilder_InvokeMember, (TypeBuilder * __this, String * name, BindingFlags__Enum invokeAttr, Binder * binder, Object * target, Object__Array * args, ParameterModifier__Array * modifiers, CultureInfo * culture, String__Array * namedParameters, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB7E0, TypeBuilder_InvokeMember__MethodInfo); DO_APP_FUNC(0x01A81E10, bool, TypeBuilder_IsArrayImpl, (TypeBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB7E8, TypeBuilder_IsArrayImpl__MethodInfo); DO_APP_FUNC(0x01A81E60, bool, TypeBuilder_IsByRefImpl, (TypeBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB7F0, TypeBuilder_IsByRefImpl__MethodInfo); DO_APP_FUNC(0x01A81EB0, bool, TypeBuilder_IsCOMObjectImpl, (TypeBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB7F8, TypeBuilder_IsCOMObjectImpl__MethodInfo); DO_APP_FUNC(0x01A81F00, bool, TypeBuilder_IsDefined, (TypeBuilder * __this, Type * attributeType, bool inherit, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB800, TypeBuilder_IsDefined__MethodInfo); DO_APP_FUNC(0x01A81F50, bool, TypeBuilder_IsPointerImpl, (TypeBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB808, TypeBuilder_IsPointerImpl__MethodInfo); DO_APP_FUNC(0x01A81FA0, bool, TypeBuilder_IsPrimitiveImpl, (TypeBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB740, TypeBuilder_IsPrimitiveImpl__MethodInfo); DO_APP_FUNC(0x003AE050, void, UnmanagedMarshal__ctor, (UnmanagedMarshal * __this, MethodInfo * method)); DO_APP_FUNC(0x01A81FF0, uint8_t, ConstantHelper_GetByteWithAllBitsSet, (MethodInfo * method)); DO_APP_FUNC(0x01A81FF0, int8_t, ConstantHelper_GetSByteWithAllBitsSet, (MethodInfo * method)); @@ -9936,23 +10927,28 @@ DO_APP_FUNC(0x01A82010, int32_t, HashHelpers_Combine, (int32_t h1, int32_t h2, M DO_APP_FUNC(0x01A82030, void, HashHelpers__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01A82110, int32_t, CharUnicodeInfo_InternalConvertToUtf32, (String * s, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01A821A0, int32_t, CharUnicodeInfo_InternalConvertToUtf32_1, (StringBuilder * s, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01A82230, int32_t, CharUnicodeInfo_InternalConvertToUtf32_2, (String * s, int32_t index, int32_t charLength, MethodInfo * method)); +DO_APP_FUNC(0x01A82230, int32_t, CharUnicodeInfo_InternalConvertToUtf32_2, (String * s, int32_t index, int32_t * charLength, MethodInfo * method)); DO_APP_FUNC(0x01A822E0, double, CharUnicodeInfo_InternalGetNumericValue, (int32_t ch, MethodInfo * method)); DO_APP_FUNC(0x01A82600, uint8_t, CharUnicodeInfo_InternalGetDigitValues, (int32_t ch, int32_t offset, MethodInfo * method)); DO_APP_FUNC(0x01A828A0, double, CharUnicodeInfo_GetNumericValue, (uint16_t ch, MethodInfo * method)); DO_APP_FUNC(0x01A828B0, double, CharUnicodeInfo_GetNumericValue_1, (String * s, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB758, CharUnicodeInfo_GetNumericValue_1__MethodInfo); DO_APP_FUNC(0x01A82A30, int32_t, CharUnicodeInfo_GetDecimalDigitValue, (uint16_t ch, MethodInfo * method)); DO_APP_FUNC(0x01A82A50, int32_t, CharUnicodeInfo_GetDecimalDigitValue_1, (String * s, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB760, CharUnicodeInfo_GetDecimalDigitValue_1__MethodInfo); DO_APP_FUNC(0x01A82BD0, int32_t, CharUnicodeInfo_GetDigitValue, (uint16_t ch, MethodInfo * method)); DO_APP_FUNC(0x01A82BF0, int32_t, CharUnicodeInfo_GetDigitValue_1, (String * s, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB768, CharUnicodeInfo_GetDigitValue_1__MethodInfo); DO_APP_FUNC(0x01A82D70, UnicodeCategory__Enum, CharUnicodeInfo_GetUnicodeCategory, (uint16_t ch, MethodInfo * method)); DO_APP_FUNC(0x01A82D90, UnicodeCategory__Enum, CharUnicodeInfo_GetUnicodeCategory_1, (String * s, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB770, CharUnicodeInfo_GetUnicodeCategory_1__MethodInfo); DO_APP_FUNC(0x01A82E50, UnicodeCategory__Enum, CharUnicodeInfo_GetUnicodeCategory_2, (int32_t codePoint, MethodInfo * method)); DO_APP_FUNC(0x01A82E70, uint8_t, CharUnicodeInfo_InternalGetCategoryValue, (int32_t ch, int32_t offset, MethodInfo * method)); DO_APP_FUNC(0x01A830D0, UnicodeCategory__Enum, CharUnicodeInfo_InternalGetUnicodeCategory, (String * value, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01A83180, BidiCategory__Enum, CharUnicodeInfo_GetBidiCategory, (String * s, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB778, CharUnicodeInfo_GetBidiCategory__MethodInfo); DO_APP_FUNC(0x01A832D0, BidiCategory__Enum, CharUnicodeInfo_GetBidiCategory_1, (StringBuilder * s, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01A83370, UnicodeCategory__Enum, CharUnicodeInfo_InternalGetUnicodeCategory_1, (String * str, int32_t index, int32_t charLength, MethodInfo * method)); +DO_APP_FUNC(0x01A83370, UnicodeCategory__Enum, CharUnicodeInfo_InternalGetUnicodeCategory_1, (String * str, int32_t index, int32_t * charLength, MethodInfo * method)); DO_APP_FUNC(0x01A83440, bool, CharUnicodeInfo_IsCombiningCategory, (UnicodeCategory__Enum uc, MethodInfo * method)); DO_APP_FUNC(0x01A83460, bool, CharUnicodeInfo_IsWhiteSpace, (String * s, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01A83530, bool, CharUnicodeInfo_IsWhiteSpace_1, (uint16_t c, MethodInfo * method)); @@ -10142,69 +11138,99 @@ DO_APP_FUNC(0x01AB2EC0, Object *, DateTimeFormatInfo_GetFormat, (DateTimeFormatI DO_APP_FUNC(0x01AB2F50, Object *, DateTimeFormatInfo_Clone, (DateTimeFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AB30D0, String *, DateTimeFormatInfo_get_AMDesignator, (DateTimeFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AB3140, void, DateTimeFormatInfo_set_AMDesignator, (DateTimeFormatInfo * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF9F0, DateTimeFormatInfo_set_AMDesignator__MethodInfo); DO_APP_FUNC(0x003C91E0, Calendar *, DateTimeFormatInfo_get_Calendar, (DateTimeFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AB3280, void, DateTimeFormatInfo_set_Calendar, (DateTimeFormatInfo * __this, Calendar * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF988, DateTimeFormatInfo_set_Calendar__MethodInfo); DO_APP_FUNC(0x01AB3740, CalendarId__Enum__Array *, DateTimeFormatInfo_get_OptionalCalendars, (DateTimeFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AB38B0, int32_t, DateTimeFormatInfo_GetEra, (DateTimeFormatInfo * __this, String * eraName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF9A0, DateTimeFormatInfo_GetEra__MethodInfo); DO_APP_FUNC(0x01AB3C30, String__Array *, DateTimeFormatInfo_get_EraNames, (DateTimeFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AB3D00, String *, DateTimeFormatInfo_GetEraName, (DateTimeFormatInfo * __this, int32_t era, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF9B8, DateTimeFormatInfo_GetEraName__MethodInfo); DO_APP_FUNC(0x01AB3DF0, String__Array *, DateTimeFormatInfo_get_AbbreviatedEraNames, (DateTimeFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AB3EC0, String *, DateTimeFormatInfo_GetAbbreviatedEraName, (DateTimeFormatInfo * __this, int32_t era, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF9C0, DateTimeFormatInfo_GetAbbreviatedEraName__MethodInfo); DO_APP_FUNC(0x01AB3FD0, String__Array *, DateTimeFormatInfo_get_AbbreviatedEnglishEraNames, (DateTimeFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AB40A0, String *, DateTimeFormatInfo_get_DateSeparator, (DateTimeFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AB4150, void, DateTimeFormatInfo_set_DateSeparator, (DateTimeFormatInfo * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF9C8, DateTimeFormatInfo_set_DateSeparator__MethodInfo); DO_APP_FUNC(0x01AB4290, DayOfWeek__Enum, DateTimeFormatInfo_get_FirstDayOfWeek, (DateTimeFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AB42C0, void, DateTimeFormatInfo_set_FirstDayOfWeek, (DateTimeFormatInfo * __this, DayOfWeek__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF9D0, DateTimeFormatInfo_set_FirstDayOfWeek__MethodInfo); DO_APP_FUNC(0x01AB4400, CalendarWeekRule__Enum, DateTimeFormatInfo_get_CalendarWeekRule, (DateTimeFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AB4430, void, DateTimeFormatInfo_set_CalendarWeekRule, (DateTimeFormatInfo * __this, CalendarWeekRule__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF938, DateTimeFormatInfo_set_CalendarWeekRule__MethodInfo); DO_APP_FUNC(0x01AB4570, String *, DateTimeFormatInfo_get_FullDateTimePattern, (DateTimeFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AB4640, void, DateTimeFormatInfo_set_FullDateTimePattern, (DateTimeFormatInfo * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF948, DateTimeFormatInfo_set_FullDateTimePattern__MethodInfo); DO_APP_FUNC(0x01AB4780, String *, DateTimeFormatInfo_get_LongDatePattern, (DateTimeFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AB4820, void, DateTimeFormatInfo_set_LongDatePattern, (DateTimeFormatInfo * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF950, DateTimeFormatInfo_set_LongDatePattern__MethodInfo); DO_APP_FUNC(0x01AB49D0, String *, DateTimeFormatInfo_get_LongTimePattern, (DateTimeFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AB4A70, void, DateTimeFormatInfo_set_LongTimePattern, (DateTimeFormatInfo * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF958, DateTimeFormatInfo_set_LongTimePattern__MethodInfo); DO_APP_FUNC(0x01AB4CC0, String *, DateTimeFormatInfo_get_MonthDayPattern, (DateTimeFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AB4D80, void, DateTimeFormatInfo_set_MonthDayPattern, (DateTimeFormatInfo * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF960, DateTimeFormatInfo_set_MonthDayPattern__MethodInfo); DO_APP_FUNC(0x01AB4EC0, String *, DateTimeFormatInfo_get_PMDesignator, (DateTimeFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AB4F30, void, DateTimeFormatInfo_set_PMDesignator, (DateTimeFormatInfo * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF968, DateTimeFormatInfo_set_PMDesignator__MethodInfo); DO_APP_FUNC(0x01AB5070, String *, DateTimeFormatInfo_get_RFC1123Pattern, (DateTimeFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AB50B0, String *, DateTimeFormatInfo_get_ShortDatePattern, (DateTimeFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AB5150, void, DateTimeFormatInfo_set_ShortDatePattern, (DateTimeFormatInfo * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF978, DateTimeFormatInfo_set_ShortDatePattern__MethodInfo); DO_APP_FUNC(0x01AB53A0, String *, DateTimeFormatInfo_get_ShortTimePattern, (DateTimeFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AB5440, void, DateTimeFormatInfo_set_ShortTimePattern, (DateTimeFormatInfo * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF980, DateTimeFormatInfo_set_ShortTimePattern__MethodInfo); DO_APP_FUNC(0x01AB55F0, String *, DateTimeFormatInfo_get_SortableDateTimePattern, (DateTimeFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AB5630, String *, DateTimeFormatInfo_get_GeneralShortTimePattern, (DateTimeFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AB56F0, String *, DateTimeFormatInfo_get_GeneralLongTimePattern, (DateTimeFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AB57B0, String *, DateTimeFormatInfo_get_DateTimeOffsetPattern, (DateTimeFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AB59D0, String *, DateTimeFormatInfo_get_TimeSeparator, (DateTimeFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AB5A40, void, DateTimeFormatInfo_set_TimeSeparator, (DateTimeFormatInfo * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF910, DateTimeFormatInfo_set_TimeSeparator__MethodInfo); DO_APP_FUNC(0x01AB5B80, String *, DateTimeFormatInfo_get_UniversalSortableDateTimePattern, (DateTimeFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AB5BC0, String *, DateTimeFormatInfo_get_YearMonthPattern, (DateTimeFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AB5C60, void, DateTimeFormatInfo_set_YearMonthPattern, (DateTimeFormatInfo * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF920, DateTimeFormatInfo_set_YearMonthPattern__MethodInfo); DO_APP_FUNC(0x01AB5DA0, void, DateTimeFormatInfo_CheckNullValue, (String__Array * values, int32_t length, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF930, DateTimeFormatInfo_CheckNullValue__MethodInfo); DO_APP_FUNC(0x01AB5E70, String__Array *, DateTimeFormatInfo_get_AbbreviatedDayNames, (DateTimeFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AB5F00, void, DateTimeFormatInfo_set_AbbreviatedDayNames, (DateTimeFormatInfo * __this, String__Array * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF8E0, DateTimeFormatInfo_set_AbbreviatedDayNames__MethodInfo); DO_APP_FUNC(0x01AB60F0, String__Array *, DateTimeFormatInfo_get_ShortestDayNames, (DateTimeFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AB6180, void, DateTimeFormatInfo_set_ShortestDayNames, (DateTimeFormatInfo * __this, String__Array * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF8F0, DateTimeFormatInfo_set_ShortestDayNames__MethodInfo); DO_APP_FUNC(0x01AB6360, String__Array *, DateTimeFormatInfo_get_DayNames, (DateTimeFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AB63F0, void, DateTimeFormatInfo_set_DayNames, (DateTimeFormatInfo * __this, String__Array * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF8F8, DateTimeFormatInfo_set_DayNames__MethodInfo); DO_APP_FUNC(0x01AB65E0, String__Array *, DateTimeFormatInfo_get_AbbreviatedMonthNames, (DateTimeFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AB6670, void, DateTimeFormatInfo_set_AbbreviatedMonthNames, (DateTimeFormatInfo * __this, String__Array * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF8B8, DateTimeFormatInfo_set_AbbreviatedMonthNames__MethodInfo); DO_APP_FUNC(0x01AB6860, String__Array *, DateTimeFormatInfo_get_MonthNames, (DateTimeFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AB68F0, void, DateTimeFormatInfo_set_MonthNames, (DateTimeFormatInfo * __this, String__Array * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF8C0, DateTimeFormatInfo_set_MonthNames__MethodInfo); DO_APP_FUNC(0x01AB6AE0, bool, DateTimeFormatInfo_get_HasSpacesInMonthNames, (DateTimeFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AB6B10, bool, DateTimeFormatInfo_get_HasSpacesInDayNames, (DateTimeFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AB6B40, String *, DateTimeFormatInfo_internalGetMonthName, (DateTimeFormatInfo * __this, int32_t month, MonthNameStyles__Enum style, bool abbreviated, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF8C8, DateTimeFormatInfo_internalGetMonthName__MethodInfo); DO_APP_FUNC(0x01AB6CA0, String__Array *, DateTimeFormatInfo_internalGetGenitiveMonthNames, (DateTimeFormatInfo * __this, bool abbreviated, MethodInfo * method)); DO_APP_FUNC(0x01AB6E50, String__Array *, DateTimeFormatInfo_internalGetLeapYearMonthNames, (DateTimeFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AB6F20, String *, DateTimeFormatInfo_GetAbbreviatedDayName, (DateTimeFormatInfo * __this, DayOfWeek__Enum dayofweek, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF8D8, DateTimeFormatInfo_GetAbbreviatedDayName__MethodInfo); DO_APP_FUNC(0x01AB7040, String *, DateTimeFormatInfo_GetShortestDayName, (DateTimeFormatInfo * __this, DayOfWeek__Enum dayOfWeek, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF878, DateTimeFormatInfo_GetShortestDayName__MethodInfo); DO_APP_FUNC(0x01AB7160, String__Array *, DateTimeFormatInfo_GetCombinedPatterns, (String__Array * patterns1, String__Array * patterns2, String * connectString, MethodInfo * method)); DO_APP_FUNC(0x01AB72B0, String__Array *, DateTimeFormatInfo_GetAllDateTimePatterns, (DateTimeFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AB74C0, String__Array *, DateTimeFormatInfo_GetAllDateTimePatterns_1, (DateTimeFormatInfo * __this, uint16_t format, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF898, DateTimeFormatInfo_GetAllDateTimePatterns_1__MethodInfo); DO_APP_FUNC(0x01AB7A60, String *, DateTimeFormatInfo_GetDayName, (DateTimeFormatInfo * __this, DayOfWeek__Enum dayofweek, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF8A0, DateTimeFormatInfo_GetDayName__MethodInfo); DO_APP_FUNC(0x01AB7B80, String *, DateTimeFormatInfo_GetAbbreviatedMonthName, (DateTimeFormatInfo * __this, int32_t month, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF8A8, DateTimeFormatInfo_GetAbbreviatedMonthName__MethodInfo); DO_APP_FUNC(0x01AB7CA0, String *, DateTimeFormatInfo_GetMonthName, (DateTimeFormatInfo * __this, int32_t month, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF8B0, DateTimeFormatInfo_GetMonthName__MethodInfo); DO_APP_FUNC(0x01AB7DC0, String__Array *, DateTimeFormatInfo_GetMergedPatterns, (String__Array * patterns, String * defaultPattern, MethodInfo * method)); DO_APP_FUNC(0x01AB8010, String__Array *, DateTimeFormatInfo_get_AllYearMonthPatterns, (DateTimeFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AB8090, String__Array *, DateTimeFormatInfo_get_AllShortDatePatterns, (DateTimeFormatInfo * __this, MethodInfo * method)); @@ -10217,33 +11243,39 @@ DO_APP_FUNC(0x01AB8430, String__Array *, DateTimeFormatInfo_get_UnclonedLongDate DO_APP_FUNC(0x01AB8500, String__Array *, DateTimeFormatInfo_get_UnclonedShortTimePatterns, (DateTimeFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AB8590, String__Array *, DateTimeFormatInfo_get_UnclonedLongTimePatterns, (DateTimeFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AB8620, DateTimeFormatInfo *, DateTimeFormatInfo_ReadOnly, (DateTimeFormatInfo * dtfi, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF870, DateTimeFormatInfo_ReadOnly__MethodInfo); DO_APP_FUNC(0x01AB8850, bool, DateTimeFormatInfo_get_IsReadOnly, (DateTimeFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AB88F0, String *, DateTimeFormatInfo_get_NativeCalendarName, (DateTimeFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AB8940, void, DateTimeFormatInfo_SetAllDateTimePatterns, (DateTimeFormatInfo * __this, String__Array * patterns, uint16_t format, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF838, DateTimeFormatInfo_SetAllDateTimePatterns__MethodInfo); DO_APP_FUNC(0x01AB8DA0, String__Array *, DateTimeFormatInfo_get_AbbreviatedMonthGenitiveNames, (DateTimeFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AB8E30, void, DateTimeFormatInfo_set_AbbreviatedMonthGenitiveNames, (DateTimeFormatInfo * __this, String__Array * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF858, DateTimeFormatInfo_set_AbbreviatedMonthGenitiveNames__MethodInfo); DO_APP_FUNC(0x01AB9020, String__Array *, DateTimeFormatInfo_get_MonthGenitiveNames, (DateTimeFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AB90B0, void, DateTimeFormatInfo_set_MonthGenitiveNames, (DateTimeFormatInfo * __this, String__Array * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF860, DateTimeFormatInfo_set_MonthGenitiveNames__MethodInfo); DO_APP_FUNC(0x01AB92A0, String *, DateTimeFormatInfo_get_FullTimeSpanPositivePattern, (DateTimeFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AB93E0, String *, DateTimeFormatInfo_get_FullTimeSpanNegativePattern, (DateTimeFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AB9490, CompareInfo *, DateTimeFormatInfo_get_CompareInfo, (DateTimeFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AB9630, void, DateTimeFormatInfo_ValidateStyles, (DateTimeStyles__Enum style, String * parameterName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF828, DateTimeFormatInfo_ValidateStyles__MethodInfo); DO_APP_FUNC(0x01AB9770, DateTimeFormatFlags__Enum, DateTimeFormatInfo_get_FormatFlags, (DateTimeFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AB9790, DateTimeFormatFlags__Enum, DateTimeFormatInfo_InitializeFormatFlags, (DateTimeFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AB99E0, bool, DateTimeFormatInfo_get_HasForceTwoDigitYears, (DateTimeFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AB9A20, bool, DateTimeFormatInfo_get_HasYearMonthAdjustment, (DateTimeFormatInfo * __this, MethodInfo * method)); -DO_APP_FUNC(0x01AB9A50, bool, DateTimeFormatInfo_YearMonthAdjustment, (DateTimeFormatInfo * __this, int32_t year, int32_t month, bool parsedMonthName, MethodInfo * method)); +DO_APP_FUNC(0x01AB9A50, bool, DateTimeFormatInfo_YearMonthAdjustment, (DateTimeFormatInfo * __this, int32_t * year, int32_t * month, bool parsedMonthName, MethodInfo * method)); DO_APP_FUNC(0x01AB9B90, DateTimeFormatInfo *, DateTimeFormatInfo_GetJapaneseCalendarDTFI, (MethodInfo * method)); DO_APP_FUNC(0x01AB9D70, DateTimeFormatInfo *, DateTimeFormatInfo_GetTaiwanCalendarDTFI, (MethodInfo * method)); DO_APP_FUNC(0x01AB9F50, void, DateTimeFormatInfo_ClearTokenHashTable, (DateTimeFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AB9FD0, DateTimeFormatInfo_TokenHashValue__Array *, DateTimeFormatInfo_CreateTokenHashTable, (DateTimeFormatInfo * __this, MethodInfo * method)); -DO_APP_FUNC(0x01ABAC40, void, DateTimeFormatInfo_PopulateSpecialTokenHashTable, (DateTimeFormatInfo * __this, DateTimeFormatInfo_TokenHashValue__Array * temp, bool useDateSepAsIgnorableSymbol, MethodInfo * method)); +DO_APP_FUNC(0x01ABAC40, void, DateTimeFormatInfo_PopulateSpecialTokenHashTable, (DateTimeFormatInfo * __this, DateTimeFormatInfo_TokenHashValue__Array * temp, bool * useDateSepAsIgnorableSymbol, MethodInfo * method)); DO_APP_FUNC(0x01ABBA20, bool, DateTimeFormatInfo_IsJapaneseCalendar, (Calendar * calendar, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF740, DateTimeFormatInfo_IsJapaneseCalendar__MethodInfo); DO_APP_FUNC(0x01ABBB70, void, DateTimeFormatInfo_AddMonthNames, (DateTimeFormatInfo * __this, DateTimeFormatInfo_TokenHashValue__Array * temp, String * monthPostfix, MethodInfo * method)); -DO_APP_FUNC(0x01ABBC40, bool, DateTimeFormatInfo_TryParseHebrewNumber, (_DTString str, bool badFormat, int32_t number, MethodInfo * method)); +DO_APP_FUNC(0x01ABBC40, bool, DateTimeFormatInfo_TryParseHebrewNumber, (_DTString * str, bool * badFormat, int32_t * number, MethodInfo * method)); DO_APP_FUNC(0x01ABBE40, bool, DateTimeFormatInfo_IsHebrewChar, (uint16_t ch, MethodInfo * method)); DO_APP_FUNC(0x01ABBE60, bool, DateTimeFormatInfo_IsAllowedJapaneseTokenFollowedByNonSpaceLetter, (DateTimeFormatInfo * __this, String * tokenString, uint16_t nextCh, MethodInfo * method)); -DO_APP_FUNC(0x01ABBFB0, bool, DateTimeFormatInfo_Tokenize, (DateTimeFormatInfo * __this, TokenType__Enum TokenMask, TokenType__Enum tokenType, int32_t tokenValue, _DTString str, MethodInfo * method)); +DO_APP_FUNC(0x01ABBFB0, bool, DateTimeFormatInfo_Tokenize, (DateTimeFormatInfo * __this, TokenType__Enum TokenMask, TokenType__Enum * tokenType, int32_t * tokenValue, _DTString * str, MethodInfo * method)); DO_APP_FUNC(0x01ABC6C0, void, DateTimeFormatInfo_InsertAtCurrentHashNode, (DateTimeFormatInfo * __this, DateTimeFormatInfo_TokenHashValue__Array * hashTable, String * str, uint16_t ch, TokenType__Enum tokenType, int32_t tokenValue, int32_t pos, int32_t hashcode, int32_t hashProbe, MethodInfo * method)); DO_APP_FUNC(0x01ABC920, void, DateTimeFormatInfo_InsertHash, (DateTimeFormatInfo * __this, DateTimeFormatInfo_TokenHashValue__Array * hashTable, String * str, TokenType__Enum tokenType, int32_t tokenValue, MethodInfo * method)); DO_APP_FUNC(0x01ABCD20, bool, DateTimeFormatInfo_CompareStringIgnoreCaseOptimized, (DateTimeFormatInfo * __this, String * string1, int32_t offset1, int32_t length1, String * string2, int32_t offset2, int32_t length2, MethodInfo * method)); @@ -10253,7 +11285,7 @@ DO_APP_FUNC(0x01ABCFB0, Dictionary_2_System_String_System_String_ *, DateTimeFor DO_APP_FUNC(0x01ABD620, int32_t, DateTimeFormatInfoScanner_SkipWhiteSpacesAndNonLetter, (String * pattern, int32_t currentIndex, MethodInfo * method)); DO_APP_FUNC(0x01ABD710, void, DateTimeFormatInfoScanner_AddDateWordOrPostfix, (DateTimeFormatInfoScanner * __this, String * formatPostfix, String * str, MethodInfo * method)); DO_APP_FUNC(0x01ABD9A0, int32_t, DateTimeFormatInfoScanner_AddDateWords, (DateTimeFormatInfoScanner * __this, String * pattern, int32_t index, String * formatPostfix, MethodInfo * method)); -DO_APP_FUNC(0x01ABDC10, int32_t, DateTimeFormatInfoScanner_ScanRepeatChar, (String * pattern, uint16_t ch, int32_t index, int32_t count, MethodInfo * method)); +DO_APP_FUNC(0x01ABDC10, int32_t, DateTimeFormatInfoScanner_ScanRepeatChar, (String * pattern, uint16_t ch, int32_t index, int32_t * count, MethodInfo * method)); DO_APP_FUNC(0x01ABDC70, void, DateTimeFormatInfoScanner_AddIgnorableSymbols, (DateTimeFormatInfoScanner * __this, String * text, MethodInfo * method)); DO_APP_FUNC(0x01ABDDF0, void, DateTimeFormatInfoScanner_ScanDateWord, (DateTimeFormatInfoScanner * __this, String * pattern, MethodInfo * method)); DO_APP_FUNC(0x01ABE0B0, String__Array *, DateTimeFormatInfoScanner_GetDateWordsOfDTFI, (DateTimeFormatInfoScanner * __this, DateTimeFormatInfo * dtfi, MethodInfo * method)); @@ -10269,16 +11301,18 @@ DO_APP_FUNC(0x01ABEA20, void, DaylightTime__ctor, (DaylightTime * __this, DateTi DO_APP_FUNC(0x003BB3C0, DateTime, DaylightTime_get_Start, (DaylightTime * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, DateTime, DaylightTime_get_End, (DaylightTime * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, TimeSpan, DaylightTime_get_Delta, (DaylightTime * __this, MethodInfo * method)); -DO_APP_FUNC(0x01ABEA30, void, DaylightTimeStruct__ctor, (DaylightTimeStruct__Boxed * __this, DateTime start, DateTime end, TimeSpan delta, MethodInfo * method)); +DO_APP_FUNC(0x01ABEA30, void, DaylightTimeStruct__ctor, (DaylightTimeStruct * __this, DateTime start, DateTime end, TimeSpan delta, MethodInfo * method)); DO_APP_FUNC(0x01ABEA40, StringComparer *, GlobalizationExtensions_GetStringComparer, (CompareInfo * compareInfo, CompareOptions__Enum options, MethodInfo * method)); -DO_APP_FUNC(0x01ABEB80, void, HebrewNumberParsingContext__ctor, (HebrewNumberParsingContext__Boxed * __this, int32_t result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF6D8, GlobalizationExtensions_GetStringComparer__MethodInfo); +DO_APP_FUNC(0x01ABEB80, void, HebrewNumberParsingContext__ctor, (HebrewNumberParsingContext * __this, int32_t result, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HebrewNumber__ctor, (HebrewNumber * __this, MethodInfo * method)); DO_APP_FUNC(0x01ABEB90, String *, HebrewNumber_ToString, (int32_t Number, MethodInfo * method)); -DO_APP_FUNC(0x01ABEF80, HebrewNumberParsingState__Enum, HebrewNumber_ParseByChar, (uint16_t ch, HebrewNumberParsingContext context, MethodInfo * method)); +DO_APP_FUNC(0x01ABEF80, HebrewNumberParsingState__Enum, HebrewNumber_ParseByChar, (uint16_t ch, HebrewNumberParsingContext * context, MethodInfo * method)); DO_APP_FUNC(0x01ABF140, bool, HebrewNumber_IsDigit, (uint16_t ch, MethodInfo * method)); DO_APP_FUNC(0x01ABF220, void, HebrewNumber__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x01ABF690, void, HebrewNumber_HebrewValue__ctor, (HebrewNumber_HebrewValue__Boxed * __this, HebrewNumber_HebrewToken__Enum token, int16_t value, MethodInfo * method)); +DO_APP_FUNC(0x01ABF690, void, HebrewNumber_HebrewValue__ctor, (HebrewNumber_HebrewValue * __this, HebrewNumber_HebrewToken__Enum token, int16_t value, MethodInfo * method)); DO_APP_FUNC(0x01ABF6A0, int64_t, InternalGlobalizationHelper_TimeToTicks, (int32_t hour, int32_t minute, int32_t second, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF6B0, InternalGlobalizationHelper_TimeToTicks__MethodInfo); DO_APP_FUNC(0x003AE050, void, InternalGlobalizationHelper__ctor, (InternalGlobalizationHelper * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD50, int32_t, SortVersion_get_FullVersion, (SortVersion * __this, MethodInfo * method)); DO_APP_FUNC(0x00F963E0, Guid, SortVersion_get_SortId, (SortVersion * __this, MethodInfo * method)); @@ -10291,84 +11325,90 @@ DO_APP_FUNC(0x01ABF9C0, bool, SortVersion_op_Equality, (SortVersion * left, Sort DO_APP_FUNC(0x01ABFA80, bool, SortVersion_op_Inequality, (SortVersion * left, SortVersion * right, MethodInfo * method)); DO_APP_FUNC(0x01ABFB50, void, TimeSpanFormat_AppendNonNegativeInt32, (StringBuilder * sb, int32_t n, int32_t digits, MethodInfo * method)); DO_APP_FUNC(0x01ABFCD0, String *, TimeSpanFormat_Format, (TimeSpan value, String * format, IFormatProvider * formatProvider, MethodInfo * method)); -DO_APP_FUNC(0x01ABFDD0, bool, TimeSpanFormat_TryFormat, (TimeSpan value, Span_1_Char_ destination, int32_t charsWritten, ReadOnlySpan_1_Char_ format, IFormatProvider * formatProvider, MethodInfo * method)); +DO_APP_FUNC(0x01ABFDD0, bool, TimeSpanFormat_TryFormat, (TimeSpan value, Span_1_Char_ destination, int32_t * charsWritten, ReadOnlySpan_1_Char_ format, IFormatProvider * formatProvider, MethodInfo * method)); DO_APP_FUNC(0x01ABFED0, StringBuilder *, TimeSpanFormat_FormatToBuilder, (TimeSpan value, ReadOnlySpan_1_Char_ format, IFormatProvider * formatProvider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF6C0, TimeSpanFormat_FormatToBuilder__MethodInfo); DO_APP_FUNC(0x01AC0210, StringBuilder *, TimeSpanFormat_FormatStandard, (TimeSpan value, bool isInvariant, ReadOnlySpan_1_Char_ format, TimeSpanFormat_Pattern__Enum pattern, MethodInfo * method)); DO_APP_FUNC(0x01AC0810, StringBuilder *, TimeSpanFormat_FormatCustomized, (TimeSpan value, ReadOnlySpan_1_Char_ format, DateTimeFormatInfo * dtfi, StringBuilder * result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF688, TimeSpanFormat_FormatCustomized__MethodInfo); DO_APP_FUNC(0x01AC1080, void, TimeSpanFormat__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x01AC11D0, String *, TimeSpanFormat_FormatLiterals_get_Start, (TimeSpanFormat_FormatLiterals__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01AC1200, String *, TimeSpanFormat_FormatLiterals_get_DayHourSep, (TimeSpanFormat_FormatLiterals__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01AC1230, String *, TimeSpanFormat_FormatLiterals_get_HourMinuteSep, (TimeSpanFormat_FormatLiterals__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01AC1260, String *, TimeSpanFormat_FormatLiterals_get_MinuteSecondSep, (TimeSpanFormat_FormatLiterals__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01AC1290, String *, TimeSpanFormat_FormatLiterals_get_SecondFractionSep, (TimeSpanFormat_FormatLiterals__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01AC12C0, String *, TimeSpanFormat_FormatLiterals_get_End, (TimeSpanFormat_FormatLiterals__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01AC11D0, String *, TimeSpanFormat_FormatLiterals_get_Start, (TimeSpanFormat_FormatLiterals * __this, MethodInfo * method)); +DO_APP_FUNC(0x01AC1200, String *, TimeSpanFormat_FormatLiterals_get_DayHourSep, (TimeSpanFormat_FormatLiterals * __this, MethodInfo * method)); +DO_APP_FUNC(0x01AC1230, String *, TimeSpanFormat_FormatLiterals_get_HourMinuteSep, (TimeSpanFormat_FormatLiterals * __this, MethodInfo * method)); +DO_APP_FUNC(0x01AC1260, String *, TimeSpanFormat_FormatLiterals_get_MinuteSecondSep, (TimeSpanFormat_FormatLiterals * __this, MethodInfo * method)); +DO_APP_FUNC(0x01AC1290, String *, TimeSpanFormat_FormatLiterals_get_SecondFractionSep, (TimeSpanFormat_FormatLiterals * __this, MethodInfo * method)); +DO_APP_FUNC(0x01AC12C0, String *, TimeSpanFormat_FormatLiterals_get_End, (TimeSpanFormat_FormatLiterals * __this, MethodInfo * method)); DO_APP_FUNC(0x01AC12F0, TimeSpanFormat_FormatLiterals, TimeSpanFormat_FormatLiterals_InitInvariant, (bool isNegative, MethodInfo * method)); -DO_APP_FUNC(0x01AC16E0, void, TimeSpanFormat_FormatLiterals_Init, (TimeSpanFormat_FormatLiterals__Boxed * __this, ReadOnlySpan_1_Char_ format, bool useInvariantFieldLengths, MethodInfo * method)); +DO_APP_FUNC(0x01AC16E0, void, TimeSpanFormat_FormatLiterals_Init, (TimeSpanFormat_FormatLiterals * __this, ReadOnlySpan_1_Char_ format, bool useInvariantFieldLengths, MethodInfo * method)); DO_APP_FUNC(0x01AC1BF0, int64_t, TimeSpanParse_Pow10, (int32_t pow, MethodInfo * method)); -DO_APP_FUNC(0x01AC1CF0, bool, TimeSpanParse_TryTimeToTicks, (bool positive, TimeSpanParse_TimeSpanToken days, TimeSpanParse_TimeSpanToken hours, TimeSpanParse_TimeSpanToken minutes, TimeSpanParse_TimeSpanToken seconds, TimeSpanParse_TimeSpanToken fraction, int64_t result, MethodInfo * method)); +DO_APP_FUNC(0x01AC1CF0, bool, TimeSpanParse_TryTimeToTicks, (bool positive, TimeSpanParse_TimeSpanToken days, TimeSpanParse_TimeSpanToken hours, TimeSpanParse_TimeSpanToken minutes, TimeSpanParse_TimeSpanToken seconds, TimeSpanParse_TimeSpanToken fraction, int64_t * result, MethodInfo * method)); DO_APP_FUNC(0x01AC1EA0, TimeSpan, TimeSpanParse_Parse, (ReadOnlySpan_1_Char_ input, IFormatProvider * formatProvider, MethodInfo * method)); -DO_APP_FUNC(0x01AC1EE0, bool, TimeSpanParse_TryParse, (ReadOnlySpan_1_Char_ input, IFormatProvider * formatProvider, TimeSpan result, MethodInfo * method)); +DO_APP_FUNC(0x01AC1EE0, bool, TimeSpanParse_TryParse, (ReadOnlySpan_1_Char_ input, IFormatProvider * formatProvider, TimeSpan * result, MethodInfo * method)); DO_APP_FUNC(0x01AC1F40, TimeSpan, TimeSpanParse_ParseExact, (ReadOnlySpan_1_Char_ input, ReadOnlySpan_1_Char_ format, IFormatProvider * formatProvider, TimeSpanStyles__Enum styles, MethodInfo * method)); -DO_APP_FUNC(0x01AC1F90, bool, TimeSpanParse_TryParseExact, (ReadOnlySpan_1_Char_ input, ReadOnlySpan_1_Char_ format, IFormatProvider * formatProvider, TimeSpanStyles__Enum styles, TimeSpan result, MethodInfo * method)); +DO_APP_FUNC(0x01AC1F90, bool, TimeSpanParse_TryParseExact, (ReadOnlySpan_1_Char_ input, ReadOnlySpan_1_Char_ format, IFormatProvider * formatProvider, TimeSpanStyles__Enum styles, TimeSpan * result, MethodInfo * method)); DO_APP_FUNC(0x01AC2000, TimeSpan, TimeSpanParse_ParseExactMultiple, (ReadOnlySpan_1_Char_ input, String__Array * formats, IFormatProvider * formatProvider, TimeSpanStyles__Enum styles, MethodInfo * method)); -DO_APP_FUNC(0x01AC2040, bool, TimeSpanParse_TryParseExactMultiple, (ReadOnlySpan_1_Char_ input, String__Array * formats, IFormatProvider * formatProvider, TimeSpanStyles__Enum styles, TimeSpan result, MethodInfo * method)); -DO_APP_FUNC(0x01AC20A0, bool, TimeSpanParse_TryParseTimeSpan, (ReadOnlySpan_1_Char_ input, TimeSpanParse_TimeSpanStandardStyles__Enum style, IFormatProvider * formatProvider, TimeSpanParse_TimeSpanResult result, MethodInfo * method)); -DO_APP_FUNC(0x01AC32A0, bool, TimeSpanParse_ProcessTerminalState, (TimeSpanParse_TimeSpanRawInfo raw, TimeSpanParse_TimeSpanStandardStyles__Enum style, TimeSpanParse_TimeSpanResult result, MethodInfo * method)); -DO_APP_FUNC(0x01AC3410, bool, TimeSpanParse_ProcessTerminal_DHMSF, (TimeSpanParse_TimeSpanRawInfo raw, TimeSpanParse_TimeSpanStandardStyles__Enum style, TimeSpanParse_TimeSpanResult result, MethodInfo * method)); -DO_APP_FUNC(0x01AC3870, bool, TimeSpanParse_ProcessTerminal_HMS_F_D, (TimeSpanParse_TimeSpanRawInfo raw, TimeSpanParse_TimeSpanStandardStyles__Enum style, TimeSpanParse_TimeSpanResult result, MethodInfo * method)); -DO_APP_FUNC(0x01AC53A0, bool, TimeSpanParse_ProcessTerminal_HM_S_D, (TimeSpanParse_TimeSpanRawInfo raw, TimeSpanParse_TimeSpanStandardStyles__Enum style, TimeSpanParse_TimeSpanResult result, MethodInfo * method)); -DO_APP_FUNC(0x01AC6A00, bool, TimeSpanParse_ProcessTerminal_HM, (TimeSpanParse_TimeSpanRawInfo raw, TimeSpanParse_TimeSpanStandardStyles__Enum style, TimeSpanParse_TimeSpanResult result, MethodInfo * method)); -DO_APP_FUNC(0x01AC6D50, bool, TimeSpanParse_ProcessTerminal_D, (TimeSpanParse_TimeSpanRawInfo raw, TimeSpanParse_TimeSpanStandardStyles__Enum style, TimeSpanParse_TimeSpanResult result, MethodInfo * method)); -DO_APP_FUNC(0x01AC7060, bool, TimeSpanParse_TryParseExactTimeSpan, (ReadOnlySpan_1_Char_ input, ReadOnlySpan_1_Char_ format, IFormatProvider * formatProvider, TimeSpanStyles__Enum styles, TimeSpanParse_TimeSpanResult result, MethodInfo * method)); -DO_APP_FUNC(0x01AC7200, bool, TimeSpanParse_TryParseByFormat, (ReadOnlySpan_1_Char_ input, ReadOnlySpan_1_Char_ format, TimeSpanStyles__Enum styles, TimeSpanParse_TimeSpanResult result, MethodInfo * method)); -DO_APP_FUNC(0x01AC7E10, bool, TimeSpanParse_ParseExactDigits, (TimeSpanParse_TimeSpanTokenizer tokenizer, int32_t minDigitLength, int32_t result, MethodInfo * method)); -DO_APP_FUNC(0x01AC7E50, bool, TimeSpanParse_ParseExactDigits_1, (TimeSpanParse_TimeSpanTokenizer tokenizer, int32_t minDigitLength, int32_t maxDigitLength, int32_t zeroes, int32_t result, MethodInfo * method)); -DO_APP_FUNC(0x01AC7F30, bool, TimeSpanParse_ParseExactLiteral, (TimeSpanParse_TimeSpanTokenizer tokenizer, StringBuilder * enquotedString, MethodInfo * method)); -DO_APP_FUNC(0x01AC7FF0, bool, TimeSpanParse_TryParseTimeSpanConstant, (ReadOnlySpan_1_Char_ input, TimeSpanParse_TimeSpanResult result, MethodInfo * method)); -DO_APP_FUNC(0x01AC8030, bool, TimeSpanParse_TryParseExactMultipleTimeSpan, (ReadOnlySpan_1_Char_ input, String__Array * formats, IFormatProvider * formatProvider, TimeSpanStyles__Enum styles, TimeSpanParse_TimeSpanResult result, MethodInfo * method)); +DO_APP_FUNC(0x01AC2040, bool, TimeSpanParse_TryParseExactMultiple, (ReadOnlySpan_1_Char_ input, String__Array * formats, IFormatProvider * formatProvider, TimeSpanStyles__Enum styles, TimeSpan * result, MethodInfo * method)); +DO_APP_FUNC(0x01AC20A0, bool, TimeSpanParse_TryParseTimeSpan, (ReadOnlySpan_1_Char_ input, TimeSpanParse_TimeSpanStandardStyles__Enum style, IFormatProvider * formatProvider, TimeSpanParse_TimeSpanResult * result, MethodInfo * method)); +DO_APP_FUNC(0x01AC32A0, bool, TimeSpanParse_ProcessTerminalState, (TimeSpanParse_TimeSpanRawInfo * raw, TimeSpanParse_TimeSpanStandardStyles__Enum style, TimeSpanParse_TimeSpanResult * result, MethodInfo * method)); +DO_APP_FUNC(0x01AC3410, bool, TimeSpanParse_ProcessTerminal_DHMSF, (TimeSpanParse_TimeSpanRawInfo * raw, TimeSpanParse_TimeSpanStandardStyles__Enum style, TimeSpanParse_TimeSpanResult * result, MethodInfo * method)); +DO_APP_FUNC(0x01AC3870, bool, TimeSpanParse_ProcessTerminal_HMS_F_D, (TimeSpanParse_TimeSpanRawInfo * raw, TimeSpanParse_TimeSpanStandardStyles__Enum style, TimeSpanParse_TimeSpanResult * result, MethodInfo * method)); +DO_APP_FUNC(0x01AC53A0, bool, TimeSpanParse_ProcessTerminal_HM_S_D, (TimeSpanParse_TimeSpanRawInfo * raw, TimeSpanParse_TimeSpanStandardStyles__Enum style, TimeSpanParse_TimeSpanResult * result, MethodInfo * method)); +DO_APP_FUNC(0x01AC6A00, bool, TimeSpanParse_ProcessTerminal_HM, (TimeSpanParse_TimeSpanRawInfo * raw, TimeSpanParse_TimeSpanStandardStyles__Enum style, TimeSpanParse_TimeSpanResult * result, MethodInfo * method)); +DO_APP_FUNC(0x01AC6D50, bool, TimeSpanParse_ProcessTerminal_D, (TimeSpanParse_TimeSpanRawInfo * raw, TimeSpanParse_TimeSpanStandardStyles__Enum style, TimeSpanParse_TimeSpanResult * result, MethodInfo * method)); +DO_APP_FUNC(0x01AC7060, bool, TimeSpanParse_TryParseExactTimeSpan, (ReadOnlySpan_1_Char_ input, ReadOnlySpan_1_Char_ format, IFormatProvider * formatProvider, TimeSpanStyles__Enum styles, TimeSpanParse_TimeSpanResult * result, MethodInfo * method)); +DO_APP_FUNC(0x01AC7200, bool, TimeSpanParse_TryParseByFormat, (ReadOnlySpan_1_Char_ input, ReadOnlySpan_1_Char_ format, TimeSpanStyles__Enum styles, TimeSpanParse_TimeSpanResult * result, MethodInfo * method)); +DO_APP_FUNC(0x01AC7E10, bool, TimeSpanParse_ParseExactDigits, (TimeSpanParse_TimeSpanTokenizer * tokenizer, int32_t minDigitLength, int32_t * result, MethodInfo * method)); +DO_APP_FUNC(0x01AC7E50, bool, TimeSpanParse_ParseExactDigits_1, (TimeSpanParse_TimeSpanTokenizer * tokenizer, int32_t minDigitLength, int32_t maxDigitLength, int32_t * zeroes, int32_t * result, MethodInfo * method)); +DO_APP_FUNC(0x01AC7F30, bool, TimeSpanParse_ParseExactLiteral, (TimeSpanParse_TimeSpanTokenizer * tokenizer, StringBuilder * enquotedString, MethodInfo * method)); +DO_APP_FUNC(0x01AC7FF0, bool, TimeSpanParse_TryParseTimeSpanConstant, (ReadOnlySpan_1_Char_ input, TimeSpanParse_TimeSpanResult * result, MethodInfo * method)); +DO_APP_FUNC(0x01AC8030, bool, TimeSpanParse_TryParseExactMultipleTimeSpan, (ReadOnlySpan_1_Char_ input, String__Array * formats, IFormatProvider * formatProvider, TimeSpanStyles__Enum styles, TimeSpanParse_TimeSpanResult * result, MethodInfo * method)); DO_APP_FUNC(0x01AC82D0, void, TimeSpanParse_ValidateStyles, (TimeSpanStyles__Enum style, String * parameterName, MethodInfo * method)); -DO_APP_FUNC(0x01AC8360, void, TimeSpanParse_TimeSpanToken__ctor, (TimeSpanParse_TimeSpanToken__Boxed * __this, TimeSpanParse_TTT__Enum type, MethodInfo * method)); -DO_APP_FUNC(0x01AC8370, void, TimeSpanParse_TimeSpanToken__ctor_1, (TimeSpanParse_TimeSpanToken__Boxed * __this, int32_t number, MethodInfo * method)); -DO_APP_FUNC(0x01AC8390, void, TimeSpanParse_TimeSpanToken__ctor_2, (TimeSpanParse_TimeSpanToken__Boxed * __this, int32_t number, int32_t leadingZeroes, MethodInfo * method)); -DO_APP_FUNC(0x01AC83B0, void, TimeSpanParse_TimeSpanToken__ctor_3, (TimeSpanParse_TimeSpanToken__Boxed * __this, TimeSpanParse_TTT__Enum type, int32_t number, int32_t leadingZeroes, ReadOnlySpan_1_Char_ separator, MethodInfo * method)); -DO_APP_FUNC(0x01AC83D0, bool, TimeSpanParse_TimeSpanToken_IsInvalidFraction, (TimeSpanParse_TimeSpanToken__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01AC8430, void, TimeSpanParse_TimeSpanTokenizer__ctor, (TimeSpanParse_TimeSpanTokenizer__Boxed * __this, ReadOnlySpan_1_Char_ input, MethodInfo * method)); -DO_APP_FUNC(0x0171AFD0, void, TimeSpanParse_TimeSpanTokenizer__ctor_1, (TimeSpanParse_TimeSpanTokenizer__Boxed * __this, ReadOnlySpan_1_Char_ input, int32_t startPosition, MethodInfo * method)); -DO_APP_FUNC(0x01AC8440, TimeSpanParse_TimeSpanToken, TimeSpanParse_TimeSpanTokenizer_GetNextToken, (TimeSpanParse_TimeSpanTokenizer__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01AC8670, bool, TimeSpanParse_TimeSpanTokenizer_get_EOL, (TimeSpanParse_TimeSpanTokenizer__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01AC86B0, void, TimeSpanParse_TimeSpanTokenizer_BackOne, (TimeSpanParse_TimeSpanTokenizer__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01AC86C0, uint16_t, TimeSpanParse_TimeSpanTokenizer_get_NextChar, (TimeSpanParse_TimeSpanTokenizer__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01AC8710, TimeSpanFormat_FormatLiterals, TimeSpanParse_TimeSpanRawInfo_get_PositiveInvariant, (TimeSpanParse_TimeSpanRawInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01AC8790, TimeSpanFormat_FormatLiterals, TimeSpanParse_TimeSpanRawInfo_get_NegativeInvariant, (TimeSpanParse_TimeSpanRawInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01AC8810, TimeSpanFormat_FormatLiterals, TimeSpanParse_TimeSpanRawInfo_get_PositiveLocalized, (TimeSpanParse_TimeSpanRawInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01AC88E0, TimeSpanFormat_FormatLiterals, TimeSpanParse_TimeSpanRawInfo_get_NegativeLocalized, (TimeSpanParse_TimeSpanRawInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01AC89B0, bool, TimeSpanParse_TimeSpanRawInfo_FullAppCompatMatch, (TimeSpanParse_TimeSpanRawInfo__Boxed * __this, TimeSpanFormat_FormatLiterals pattern, MethodInfo * method)); -DO_APP_FUNC(0x01AC8E80, bool, TimeSpanParse_TimeSpanRawInfo_PartialAppCompatMatch, (TimeSpanParse_TimeSpanRawInfo__Boxed * __this, TimeSpanFormat_FormatLiterals pattern, MethodInfo * method)); -DO_APP_FUNC(0x01AC9270, bool, TimeSpanParse_TimeSpanRawInfo_FullMatch, (TimeSpanParse_TimeSpanRawInfo__Boxed * __this, TimeSpanFormat_FormatLiterals pattern, MethodInfo * method)); -DO_APP_FUNC(0x01AC9840, bool, TimeSpanParse_TimeSpanRawInfo_FullDMatch, (TimeSpanParse_TimeSpanRawInfo__Boxed * __this, TimeSpanFormat_FormatLiterals pattern, MethodInfo * method)); -DO_APP_FUNC(0x01AC9A80, bool, TimeSpanParse_TimeSpanRawInfo_FullHMMatch, (TimeSpanParse_TimeSpanRawInfo__Boxed * __this, TimeSpanFormat_FormatLiterals pattern, MethodInfo * method)); -DO_APP_FUNC(0x01AC9D90, bool, TimeSpanParse_TimeSpanRawInfo_FullDHMMatch, (TimeSpanParse_TimeSpanRawInfo__Boxed * __this, TimeSpanFormat_FormatLiterals pattern, MethodInfo * method)); -DO_APP_FUNC(0x01ACA190, bool, TimeSpanParse_TimeSpanRawInfo_FullHMSMatch, (TimeSpanParse_TimeSpanRawInfo__Boxed * __this, TimeSpanFormat_FormatLiterals pattern, MethodInfo * method)); -DO_APP_FUNC(0x01ACA590, bool, TimeSpanParse_TimeSpanRawInfo_FullDHMSMatch, (TimeSpanParse_TimeSpanRawInfo__Boxed * __this, TimeSpanFormat_FormatLiterals pattern, MethodInfo * method)); -DO_APP_FUNC(0x01ACAA70, bool, TimeSpanParse_TimeSpanRawInfo_FullHMSFMatch, (TimeSpanParse_TimeSpanRawInfo__Boxed * __this, TimeSpanFormat_FormatLiterals pattern, MethodInfo * method)); -DO_APP_FUNC(0x01ACAF50, void, TimeSpanParse_TimeSpanRawInfo_Init, (TimeSpanParse_TimeSpanRawInfo__Boxed * __this, DateTimeFormatInfo * dtfi, MethodInfo * method)); -DO_APP_FUNC(0x01ACAFB0, bool, TimeSpanParse_TimeSpanRawInfo_ProcessToken, (TimeSpanParse_TimeSpanRawInfo__Boxed * __this, TimeSpanParse_TimeSpanToken tok, TimeSpanParse_TimeSpanResult result, MethodInfo * method)); -DO_APP_FUNC(0x01ACB1D0, bool, TimeSpanParse_TimeSpanRawInfo_AddSep, (TimeSpanParse_TimeSpanRawInfo__Boxed * __this, ReadOnlySpan_1_Char_ sep, TimeSpanParse_TimeSpanResult result, MethodInfo * method)); -DO_APP_FUNC(0x01ACB320, bool, TimeSpanParse_TimeSpanRawInfo_AddNum, (TimeSpanParse_TimeSpanRawInfo__Boxed * __this, TimeSpanParse_TimeSpanToken num, TimeSpanParse_TimeSpanResult result, MethodInfo * method)); -DO_APP_FUNC(0x01ACB470, void, TimeSpanParse_TimeSpanResult__ctor, (TimeSpanParse_TimeSpanResult__Boxed * __this, bool throwOnFailure, MethodInfo * method)); -DO_APP_FUNC(0x01ACB480, bool, TimeSpanParse_TimeSpanResult_SetFailure, (TimeSpanParse_TimeSpanResult__Boxed * __this, TimeSpanParse_ParseFailureKind__Enum kind, String * resourceKey, Object * messageArgument, String * argumentName, MethodInfo * method)); -DO_APP_FUNC(0x01ACB5F0, void, TimeSpanParse_StringParser_NextChar, (TimeSpanParse_StringParser__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01ACB630, uint16_t, TimeSpanParse_StringParser_NextNonDigit, (TimeSpanParse_StringParser__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01ACB690, bool, TimeSpanParse_StringParser_TryParse, (TimeSpanParse_StringParser__Boxed * __this, ReadOnlySpan_1_Char_ input, TimeSpanParse_TimeSpanResult result, MethodInfo * method)); -DO_APP_FUNC(0x01ACB9C0, bool, TimeSpanParse_StringParser_ParseInt, (TimeSpanParse_StringParser__Boxed * __this, int32_t max, int32_t i, TimeSpanParse_TimeSpanResult result, MethodInfo * method)); -DO_APP_FUNC(0x01ACBAB0, bool, TimeSpanParse_StringParser_ParseTime, (TimeSpanParse_StringParser__Boxed * __this, int64_t time, TimeSpanParse_TimeSpanResult result, MethodInfo * method)); -DO_APP_FUNC(0x01ACBE40, void, TimeSpanParse_StringParser_SkipBlanks, (TimeSpanParse_StringParser__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF648, TimeSpanParse_ValidateStyles__MethodInfo); +DO_APP_FUNC(0x01AC8360, void, TimeSpanParse_TimeSpanToken__ctor, (TimeSpanParse_TimeSpanToken * __this, TimeSpanParse_TTT__Enum type, MethodInfo * method)); +DO_APP_FUNC(0x01AC8370, void, TimeSpanParse_TimeSpanToken__ctor_1, (TimeSpanParse_TimeSpanToken * __this, int32_t number, MethodInfo * method)); +DO_APP_FUNC(0x01AC8390, void, TimeSpanParse_TimeSpanToken__ctor_2, (TimeSpanParse_TimeSpanToken * __this, int32_t number, int32_t leadingZeroes, MethodInfo * method)); +DO_APP_FUNC(0x01AC83B0, void, TimeSpanParse_TimeSpanToken__ctor_3, (TimeSpanParse_TimeSpanToken * __this, TimeSpanParse_TTT__Enum type, int32_t number, int32_t leadingZeroes, ReadOnlySpan_1_Char_ separator, MethodInfo * method)); +DO_APP_FUNC(0x01AC83D0, bool, TimeSpanParse_TimeSpanToken_IsInvalidFraction, (TimeSpanParse_TimeSpanToken * __this, MethodInfo * method)); +DO_APP_FUNC(0x01AC8430, void, TimeSpanParse_TimeSpanTokenizer__ctor, (TimeSpanParse_TimeSpanTokenizer * __this, ReadOnlySpan_1_Char_ input, MethodInfo * method)); +DO_APP_FUNC(0x0171AFD0, void, TimeSpanParse_TimeSpanTokenizer__ctor_1, (TimeSpanParse_TimeSpanTokenizer * __this, ReadOnlySpan_1_Char_ input, int32_t startPosition, MethodInfo * method)); +DO_APP_FUNC(0x01AC8440, TimeSpanParse_TimeSpanToken, TimeSpanParse_TimeSpanTokenizer_GetNextToken, (TimeSpanParse_TimeSpanTokenizer * __this, MethodInfo * method)); +DO_APP_FUNC(0x01AC8670, bool, TimeSpanParse_TimeSpanTokenizer_get_EOL, (TimeSpanParse_TimeSpanTokenizer * __this, MethodInfo * method)); +DO_APP_FUNC(0x01AC86B0, void, TimeSpanParse_TimeSpanTokenizer_BackOne, (TimeSpanParse_TimeSpanTokenizer * __this, MethodInfo * method)); +DO_APP_FUNC(0x01AC86C0, uint16_t, TimeSpanParse_TimeSpanTokenizer_get_NextChar, (TimeSpanParse_TimeSpanTokenizer * __this, MethodInfo * method)); +DO_APP_FUNC(0x01AC8710, TimeSpanFormat_FormatLiterals, TimeSpanParse_TimeSpanRawInfo_get_PositiveInvariant, (TimeSpanParse_TimeSpanRawInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x01AC8790, TimeSpanFormat_FormatLiterals, TimeSpanParse_TimeSpanRawInfo_get_NegativeInvariant, (TimeSpanParse_TimeSpanRawInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x01AC8810, TimeSpanFormat_FormatLiterals, TimeSpanParse_TimeSpanRawInfo_get_PositiveLocalized, (TimeSpanParse_TimeSpanRawInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x01AC88E0, TimeSpanFormat_FormatLiterals, TimeSpanParse_TimeSpanRawInfo_get_NegativeLocalized, (TimeSpanParse_TimeSpanRawInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x01AC89B0, bool, TimeSpanParse_TimeSpanRawInfo_FullAppCompatMatch, (TimeSpanParse_TimeSpanRawInfo * __this, TimeSpanFormat_FormatLiterals pattern, MethodInfo * method)); +DO_APP_FUNC(0x01AC8E80, bool, TimeSpanParse_TimeSpanRawInfo_PartialAppCompatMatch, (TimeSpanParse_TimeSpanRawInfo * __this, TimeSpanFormat_FormatLiterals pattern, MethodInfo * method)); +DO_APP_FUNC(0x01AC9270, bool, TimeSpanParse_TimeSpanRawInfo_FullMatch, (TimeSpanParse_TimeSpanRawInfo * __this, TimeSpanFormat_FormatLiterals pattern, MethodInfo * method)); +DO_APP_FUNC(0x01AC9840, bool, TimeSpanParse_TimeSpanRawInfo_FullDMatch, (TimeSpanParse_TimeSpanRawInfo * __this, TimeSpanFormat_FormatLiterals pattern, MethodInfo * method)); +DO_APP_FUNC(0x01AC9A80, bool, TimeSpanParse_TimeSpanRawInfo_FullHMMatch, (TimeSpanParse_TimeSpanRawInfo * __this, TimeSpanFormat_FormatLiterals pattern, MethodInfo * method)); +DO_APP_FUNC(0x01AC9D90, bool, TimeSpanParse_TimeSpanRawInfo_FullDHMMatch, (TimeSpanParse_TimeSpanRawInfo * __this, TimeSpanFormat_FormatLiterals pattern, MethodInfo * method)); +DO_APP_FUNC(0x01ACA190, bool, TimeSpanParse_TimeSpanRawInfo_FullHMSMatch, (TimeSpanParse_TimeSpanRawInfo * __this, TimeSpanFormat_FormatLiterals pattern, MethodInfo * method)); +DO_APP_FUNC(0x01ACA590, bool, TimeSpanParse_TimeSpanRawInfo_FullDHMSMatch, (TimeSpanParse_TimeSpanRawInfo * __this, TimeSpanFormat_FormatLiterals pattern, MethodInfo * method)); +DO_APP_FUNC(0x01ACAA70, bool, TimeSpanParse_TimeSpanRawInfo_FullHMSFMatch, (TimeSpanParse_TimeSpanRawInfo * __this, TimeSpanFormat_FormatLiterals pattern, MethodInfo * method)); +DO_APP_FUNC(0x01ACAF50, void, TimeSpanParse_TimeSpanRawInfo_Init, (TimeSpanParse_TimeSpanRawInfo * __this, DateTimeFormatInfo * dtfi, MethodInfo * method)); +DO_APP_FUNC(0x01ACAFB0, bool, TimeSpanParse_TimeSpanRawInfo_ProcessToken, (TimeSpanParse_TimeSpanRawInfo * __this, TimeSpanParse_TimeSpanToken * tok, TimeSpanParse_TimeSpanResult * result, MethodInfo * method)); +DO_APP_FUNC(0x01ACB1D0, bool, TimeSpanParse_TimeSpanRawInfo_AddSep, (TimeSpanParse_TimeSpanRawInfo * __this, ReadOnlySpan_1_Char_ sep, TimeSpanParse_TimeSpanResult * result, MethodInfo * method)); +DO_APP_FUNC(0x01ACB320, bool, TimeSpanParse_TimeSpanRawInfo_AddNum, (TimeSpanParse_TimeSpanRawInfo * __this, TimeSpanParse_TimeSpanToken num, TimeSpanParse_TimeSpanResult * result, MethodInfo * method)); +DO_APP_FUNC(0x01ACB470, void, TimeSpanParse_TimeSpanResult__ctor, (TimeSpanParse_TimeSpanResult * __this, bool throwOnFailure, MethodInfo * method)); +DO_APP_FUNC(0x01ACB480, bool, TimeSpanParse_TimeSpanResult_SetFailure, (TimeSpanParse_TimeSpanResult * __this, TimeSpanParse_ParseFailureKind__Enum kind, String * resourceKey, Object * messageArgument, String * argumentName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF620, TimeSpanParse_TimeSpanResult_SetFailure__MethodInfo); +DO_APP_FUNC(0x01ACB5F0, void, TimeSpanParse_StringParser_NextChar, (TimeSpanParse_StringParser * __this, MethodInfo * method)); +DO_APP_FUNC(0x01ACB630, uint16_t, TimeSpanParse_StringParser_NextNonDigit, (TimeSpanParse_StringParser * __this, MethodInfo * method)); +DO_APP_FUNC(0x01ACB690, bool, TimeSpanParse_StringParser_TryParse, (TimeSpanParse_StringParser * __this, ReadOnlySpan_1_Char_ input, TimeSpanParse_TimeSpanResult * result, MethodInfo * method)); +DO_APP_FUNC(0x01ACB9C0, bool, TimeSpanParse_StringParser_ParseInt, (TimeSpanParse_StringParser * __this, int32_t max, int32_t * i, TimeSpanParse_TimeSpanResult * result, MethodInfo * method)); +DO_APP_FUNC(0x01ACBAB0, bool, TimeSpanParse_StringParser_ParseTime, (TimeSpanParse_StringParser * __this, int64_t * time, TimeSpanParse_TimeSpanResult * result, MethodInfo * method)); +DO_APP_FUNC(0x01ACBE40, void, TimeSpanParse_StringParser_SkipBlanks, (TimeSpanParse_StringParser * __this, MethodInfo * method)); DO_APP_FUNC(0x01ACBEA0, int32_t, ISOWeek_GetWeekOfYear, (DateTime date, MethodInfo * method)); DO_APP_FUNC(0x01ACBFC0, int32_t, ISOWeek_GetYear, (DateTime date, MethodInfo * method)); DO_APP_FUNC(0x01ACC180, DateTime, ISOWeek_GetYearStart, (int32_t year, MethodInfo * method)); DO_APP_FUNC(0x01ACC190, DateTime, ISOWeek_GetYearEnd, (int32_t year, MethodInfo * method)); DO_APP_FUNC(0x01ACC1C0, int32_t, ISOWeek_GetWeeksInYear, (int32_t year, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF638, ISOWeek_GetWeeksInYear__MethodInfo); DO_APP_FUNC(0x01ACC320, DateTime, ISOWeek_ToDateTime, (int32_t year, int32_t week, DayOfWeek__Enum dayOfWeek, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF608, ISOWeek_ToDateTime__MethodInfo); DO_APP_FUNC(0x01ACC5F0, int32_t, ISOWeek_GetWeekNumber, (DateTime date, MethodInfo * method)); DO_APP_FUNC(0x01ACC6B0, int32_t, ISOWeek_GetWeekday, (DayOfWeek__Enum dayOfWeek, MethodInfo * method)); DO_APP_FUNC(0x01ACC6C0, int32_t, ISOWeek__GetWeeksInYear_g__P_8_0, (int32_t y, MethodInfo * method)); @@ -10413,7 +11453,7 @@ DO_APP_FUNC(0x01ACF5E0, double, CalendricalCalculationsHelper_EstimatePrior, (do DO_APP_FUNC(0x01ACF6F0, int64_t, CalendricalCalculationsHelper_PersianNewYearOnOrBefore, (int64_t numberOfDays, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CalendricalCalculationsHelper__ctor, (CalendricalCalculationsHelper * __this, MethodInfo * method)); DO_APP_FUNC(0x01ACF8F0, void, CalendricalCalculationsHelper__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x00977B80, void, CalendricalCalculationsHelper_EphemerisCorrectionAlgorithmMap__ctor, (CalendricalCalculationsHelper_EphemerisCorrectionAlgorithmMap__Boxed * __this, int32_t year, CalendricalCalculationsHelper_CorrectionAlgorithm__Enum algorithm, MethodInfo * method)); +DO_APP_FUNC(0x00977B80, void, CalendricalCalculationsHelper_EphemerisCorrectionAlgorithmMap__ctor, (CalendricalCalculationsHelper_EphemerisCorrectionAlgorithmMap * __this, int32_t year, CalendricalCalculationsHelper_CorrectionAlgorithm__Enum algorithm, MethodInfo * method)); DO_APP_FUNC(0x01AD0340, DateTime, PersianCalendar_get_MinSupportedDateTime, (PersianCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x01AD03A0, DateTime, PersianCalendar_get_MaxSupportedDateTime, (PersianCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x007205E0, CalendarAlgorithmType__Enum, PersianCalendar_get_AlgorithmType, (PersianCalendar * __this, MethodInfo * method)); @@ -10421,14 +11461,21 @@ DO_APP_FUNC(0x01AD0400, void, PersianCalendar__ctor, (PersianCalendar * __this, DO_APP_FUNC(0x007205E0, int32_t, PersianCalendar_get_BaseCalendarID, (PersianCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x01AD0410, int32_t, PersianCalendar_get_ID, (PersianCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x01AD0420, int64_t, PersianCalendar_GetAbsoluteDatePersian, (PersianCalendar * __this, int32_t year, int32_t month, int32_t day, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1C40, PersianCalendar_GetAbsoluteDatePersian__MethodInfo); DO_APP_FUNC(0x01AD0570, void, PersianCalendar_CheckTicksRange, (int64_t ticks, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1C50, PersianCalendar_CheckTicksRange__MethodInfo); DO_APP_FUNC(0x01AD0800, void, PersianCalendar_CheckEraRange, (int32_t era, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1C58, PersianCalendar_CheckEraRange__MethodInfo); DO_APP_FUNC(0x01AD08E0, void, PersianCalendar_CheckYearRange, (int32_t year, int32_t era, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1C60, PersianCalendar_CheckYearRange__MethodInfo); DO_APP_FUNC(0x01AD0AF0, void, PersianCalendar_CheckYearMonthRange, (int32_t year, int32_t month, int32_t era, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1C68, PersianCalendar_CheckYearMonthRange__MethodInfo); DO_APP_FUNC(0x01AD0CD0, int32_t, PersianCalendar_MonthFromOrdinalDay, (int32_t ordinalDay, MethodInfo * method)); DO_APP_FUNC(0x01AD0D60, int32_t, PersianCalendar_DaysInPreviousMonths, (int32_t month, MethodInfo * method)); DO_APP_FUNC(0x01AD0DE0, int32_t, PersianCalendar_GetDatePart, (PersianCalendar * __this, int64_t ticks, int32_t part, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1C10, PersianCalendar_GetDatePart__MethodInfo); DO_APP_FUNC(0x01AD10A0, DateTime, PersianCalendar_AddMonths, (PersianCalendar * __this, DateTime time, int32_t months, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1C20, PersianCalendar_AddMonths__MethodInfo); DO_APP_FUNC(0x01AD14D0, DateTime, PersianCalendar_AddYears, (PersianCalendar * __this, DateTime time, int32_t years, MethodInfo * method)); DO_APP_FUNC(0x01AD14F0, int32_t, PersianCalendar_GetDayOfMonth, (PersianCalendar * __this, DateTime time, MethodInfo * method)); DO_APP_FUNC(0x01AD15A0, DayOfWeek__Enum, PersianCalendar_GetDayOfWeek, (PersianCalendar * __this, DateTime time, MethodInfo * method)); @@ -10441,13 +11488,17 @@ DO_APP_FUNC(0x01AD1A80, int32_t, PersianCalendar_GetMonth, (PersianCalendar * __ DO_APP_FUNC(0x01AD1B30, int32_t, PersianCalendar_GetMonthsInYear, (PersianCalendar * __this, int32_t year, int32_t era, MethodInfo * method)); DO_APP_FUNC(0x01AD1BA0, int32_t, PersianCalendar_GetYear, (PersianCalendar * __this, DateTime time, MethodInfo * method)); DO_APP_FUNC(0x01AD1C50, bool, PersianCalendar_IsLeapDay, (PersianCalendar * __this, int32_t year, int32_t month, int32_t day, int32_t era, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1BD8, PersianCalendar_IsLeapDay__MethodInfo); DO_APP_FUNC(0x01AD1DD0, int32_t, PersianCalendar_GetLeapMonth, (PersianCalendar * __this, int32_t year, int32_t era, MethodInfo * method)); DO_APP_FUNC(0x01AD1E30, bool, PersianCalendar_IsLeapMonth, (PersianCalendar * __this, int32_t year, int32_t month, int32_t era, MethodInfo * method)); DO_APP_FUNC(0x01AD1EA0, bool, PersianCalendar_IsLeapYear, (PersianCalendar * __this, int32_t year, int32_t era, MethodInfo * method)); DO_APP_FUNC(0x01AD1F70, DateTime, PersianCalendar_ToDateTime, (PersianCalendar * __this, int32_t year, int32_t month, int32_t day, int32_t hour, int32_t minute, int32_t second, int32_t millisecond, int32_t era, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1BE0, PersianCalendar_ToDateTime__MethodInfo); DO_APP_FUNC(0x01AD21A0, int32_t, PersianCalendar_get_TwoDigitYearMax, (PersianCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x01AD2210, void, PersianCalendar_set_TwoDigitYearMax, (PersianCalendar * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1BE8, PersianCalendar_set_TwoDigitYearMax__MethodInfo); DO_APP_FUNC(0x01AD2340, int32_t, PersianCalendar_ToFourDigitYear, (PersianCalendar * __this, int32_t year, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1BF0, PersianCalendar_ToFourDigitYear__MethodInfo); DO_APP_FUNC(0x01AD24F0, void, PersianCalendar__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01AD2740, DateTime, Calendar_get_MinSupportedDateTime, (Calendar * __this, MethodInfo * method)); DO_APP_FUNC(0x01AD27A0, DateTime, Calendar_get_MaxSupportedDateTime, (Calendar * __this, MethodInfo * method)); @@ -10458,11 +11509,15 @@ DO_APP_FUNC(0x003CB690, CalendarAlgorithmType__Enum, Calendar_get_AlgorithmType, DO_APP_FUNC(0x003CD410, bool, Calendar_get_IsReadOnly, (Calendar * __this, MethodInfo * method)); DO_APP_FUNC(0x01AD2820, Object *, Calendar_Clone, (Calendar * __this, MethodInfo * method)); DO_APP_FUNC(0x01AD28A0, Calendar *, Calendar_ReadOnly, (Calendar * calendar, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1BB0, Calendar_ReadOnly__MethodInfo); DO_APP_FUNC(0x01AD2990, void, Calendar_VerifyWritable, (Calendar * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1BB8, Calendar_VerifyWritable__MethodInfo); DO_APP_FUNC(0x019BF330, void, Calendar_SetReadOnlyState, (Calendar * __this, bool readOnly, MethodInfo * method)); DO_APP_FUNC(0x01AD2A10, int32_t, Calendar_get_CurrentEraValue, (Calendar * __this, MethodInfo * method)); DO_APP_FUNC(0x01AD2AA0, void, Calendar_CheckAddResult, (int64_t ticks, DateTime minValue, DateTime maxValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1BD0, Calendar_CheckAddResult__MethodInfo); DO_APP_FUNC(0x01AD2C90, DateTime, Calendar_Add, (Calendar * __this, DateTime time, double value, int32_t scale, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1B90, Calendar_Add__MethodInfo); DO_APP_FUNC(0x01AD2EC0, DateTime, Calendar_AddMilliseconds, (Calendar * __this, DateTime time, double milliseconds, MethodInfo * method)); DO_APP_FUNC(0x01AD2EE0, DateTime, Calendar_AddDays, (Calendar * __this, DateTime time, int32_t days, MethodInfo * method)); DO_APP_FUNC(0x01AD2F10, DateTime, Calendar_AddHours, (Calendar * __this, DateTime time, int32_t hours, MethodInfo * method)); @@ -10481,28 +11536,34 @@ DO_APP_FUNC(0x01AD3430, int32_t, Calendar_GetWeekOfYearFullDays, (Calendar * __t DO_APP_FUNC(0x01AD3690, int32_t, Calendar_GetWeekOfYearOfMinSupportedDateTime, (Calendar * __this, int32_t firstDayOfWeek, int32_t minimumDaysInFirstWeek, MethodInfo * method)); DO_APP_FUNC(0x01AD3800, int32_t, Calendar_get_DaysInYearBeforeMinSupportedYear, (Calendar * __this, MethodInfo * method)); DO_APP_FUNC(0x01AD3810, int32_t, Calendar_GetWeekOfYear, (Calendar * __this, DateTime time, CalendarWeekRule__Enum rule, DayOfWeek__Enum firstDayOfWeek, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1BA0, Calendar_GetWeekOfYear__MethodInfo); DO_APP_FUNC(0x01AD3B50, bool, Calendar_IsLeapDay, (Calendar * __this, int32_t year, int32_t month, int32_t day, MethodInfo * method)); DO_APP_FUNC(0x01AD3B80, bool, Calendar_IsLeapMonth, (Calendar * __this, int32_t year, int32_t month, MethodInfo * method)); DO_APP_FUNC(0x01AD3BB0, int32_t, Calendar_GetLeapMonth, (Calendar * __this, int32_t year, MethodInfo * method)); DO_APP_FUNC(0x01AD3BD0, int32_t, Calendar_GetLeapMonth_1, (Calendar * __this, int32_t year, int32_t era, MethodInfo * method)); DO_APP_FUNC(0x01AD3C90, bool, Calendar_IsLeapYear, (Calendar * __this, int32_t year, MethodInfo * method)); DO_APP_FUNC(0x01AD3CB0, DateTime, Calendar_ToDateTime, (Calendar * __this, int32_t year, int32_t month, int32_t day, int32_t hour, int32_t minute, int32_t second, int32_t millisecond, MethodInfo * method)); -DO_APP_FUNC(0x01AD3D10, bool, Calendar_TryToDateTime, (Calendar * __this, int32_t year, int32_t month, int32_t day, int32_t hour, int32_t minute, int32_t second, int32_t millisecond, int32_t era, DateTime result, MethodInfo * method)); +DO_APP_FUNC(0x01AD3D10, bool, Calendar_TryToDateTime, (Calendar * __this, int32_t year, int32_t month, int32_t day, int32_t hour, int32_t minute, int32_t second, int32_t millisecond, int32_t era, DateTime * result, MethodInfo * method)); DO_APP_FUNC(0x01AD3E10, bool, Calendar_IsValidYear, (Calendar * __this, int32_t year, int32_t era, MethodInfo * method)); DO_APP_FUNC(0x01AD3EA0, bool, Calendar_IsValidMonth, (Calendar * __this, int32_t year, int32_t month, int32_t era, MethodInfo * method)); DO_APP_FUNC(0x01AD3F20, bool, Calendar_IsValidDay, (Calendar * __this, int32_t year, int32_t month, int32_t day, int32_t era, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, Calendar_get_TwoDigitYearMax, (Calendar * __this, MethodInfo * method)); DO_APP_FUNC(0x01AD3FB0, void, Calendar_set_TwoDigitYearMax, (Calendar * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01AD3FE0, int32_t, Calendar_ToFourDigitYear, (Calendar * __this, int32_t year, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1B48, Calendar_ToFourDigitYear__MethodInfo); DO_APP_FUNC(0x01AD4100, int64_t, Calendar_TimeToTicks, (int32_t hour, int32_t minute, int32_t second, int32_t millisecond, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1B58, Calendar_TimeToTicks__MethodInfo); DO_APP_FUNC(0x01AD42F0, int32_t, Calendar_GetSystemTwoDigitYearSetting, (int32_t CalID, int32_t defaultYearValue, MethodInfo * method)); DO_APP_FUNC(0x01AD4340, void, CalendarData__ctor, (CalendarData * __this, MethodInfo * method)); DO_APP_FUNC(0x01AD4350, void, CalendarData__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01AD6770, void, CalendarData__ctor_1, (CalendarData * __this, String * localeName, int32_t calendarId, bool bUseUserOverrides, MethodInfo * method)); DO_APP_FUNC(0x01AD7640, void, CalendarData_InitializeEraNames, (CalendarData * __this, String * localeName, int32_t calendarId, MethodInfo * method)); DO_APP_FUNC(0x01AD7E10, String__Array *, CalendarData_GetJapaneseEraNames, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB18D0, CalendarData_GetJapaneseEraNames__MethodInfo); DO_APP_FUNC(0x01AD8090, String__Array *, CalendarData_GetJapaneseEnglishEraNames, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB18D8, CalendarData_GetJapaneseEnglishEraNames__MethodInfo); DO_APP_FUNC(0x01AD8310, void, CalendarData_InitializeAbbreviatedEraNames, (CalendarData * __this, String * localeName, int32_t calendarId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB18F0, CalendarData_InitializeAbbreviatedEraNames__MethodInfo); DO_APP_FUNC(0x01AD8880, CalendarData *, CalendarData_GetCalendarData, (int32_t calendarId, MethodInfo * method)); DO_APP_FUNC(0x01AD8AB0, String *, CalendarData_CalendarIdToCultureName, (int32_t calendarId, MethodInfo * method)); DO_APP_FUNC(0x006B4F60, int32_t, CalendarData_nativeGetTwoDigitYearMax, (int32_t calID, MethodInfo * method)); @@ -10517,8 +11578,10 @@ DO_APP_FUNC(0x01AD8F20, DateTime, ChineseLunisolarCalendar_get_MinDate, (Chinese DO_APP_FUNC(0x01AD8F80, DateTime, ChineseLunisolarCalendar_get_MaxDate, (ChineseLunisolarCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x003CB690, EraInfo__Array *, ChineseLunisolarCalendar_get_CalEraInfo, (ChineseLunisolarCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x01AD8FE0, int32_t, ChineseLunisolarCalendar_GetYearInfo, (ChineseLunisolarCalendar * __this, int32_t LunarYear, int32_t Index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1878, ChineseLunisolarCalendar_GetYearInfo__MethodInfo); DO_APP_FUNC(0x003DA110, int32_t, ChineseLunisolarCalendar_GetYear, (ChineseLunisolarCalendar * __this, int32_t year, DateTime time, MethodInfo * method)); DO_APP_FUNC(0x01AD9190, int32_t, ChineseLunisolarCalendar_GetGregorianYear, (ChineseLunisolarCalendar * __this, int32_t year, int32_t era, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1880, ChineseLunisolarCalendar_GetGregorianYear__MethodInfo); DO_APP_FUNC(0x01AD9320, void, ChineseLunisolarCalendar__ctor, (ChineseLunisolarCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x01AD9380, int32_t, ChineseLunisolarCalendar_GetEra, (ChineseLunisolarCalendar * __this, DateTime time, MethodInfo * method)); DO_APP_FUNC(0x01AD9430, int32_t, ChineseLunisolarCalendar_get_ID, (ChineseLunisolarCalendar * __this, MethodInfo * method)); @@ -10528,23 +11591,33 @@ DO_APP_FUNC(0x01AD94A0, void, ChineseLunisolarCalendar__cctor, (MethodInfo * met DO_APP_FUNC(0x007159C0, CalendarAlgorithmType__Enum, EastAsianLunisolarCalendar_get_AlgorithmType, (EastAsianLunisolarCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x01AD9740, int32_t, EastAsianLunisolarCalendar_GetSexagenaryYear, (EastAsianLunisolarCalendar * __this, DateTime time, MethodInfo * method)); DO_APP_FUNC(0x01AD9920, int32_t, EastAsianLunisolarCalendar_GetCelestialStem, (EastAsianLunisolarCalendar * __this, int32_t sexagenaryYear, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1830, EastAsianLunisolarCalendar_GetCelestialStem__MethodInfo); DO_APP_FUNC(0x01AD9A80, int32_t, EastAsianLunisolarCalendar_GetTerrestrialBranch, (EastAsianLunisolarCalendar * __this, int32_t sexagenaryYear, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1838, EastAsianLunisolarCalendar_GetTerrestrialBranch__MethodInfo); DO_APP_FUNC(0x01AD9BE0, int32_t, EastAsianLunisolarCalendar_MinEraCalendarYear, (EastAsianLunisolarCalendar * __this, int32_t era, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1840, EastAsianLunisolarCalendar_MinEraCalendarYear__MethodInfo); DO_APP_FUNC(0x01AD9DC0, int32_t, EastAsianLunisolarCalendar_MaxEraCalendarYear, (EastAsianLunisolarCalendar * __this, int32_t era, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1848, EastAsianLunisolarCalendar_MaxEraCalendarYear__MethodInfo); DO_APP_FUNC(0x01AD0400, void, EastAsianLunisolarCalendar__ctor, (EastAsianLunisolarCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x01AD9FA0, void, EastAsianLunisolarCalendar_CheckTicksRange, (EastAsianLunisolarCalendar * __this, int64_t ticks, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1850, EastAsianLunisolarCalendar_CheckTicksRange__MethodInfo); DO_APP_FUNC(0x01ADA1E0, void, EastAsianLunisolarCalendar_CheckEraRange, (EastAsianLunisolarCalendar * __this, int32_t era, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1858, EastAsianLunisolarCalendar_CheckEraRange__MethodInfo); DO_APP_FUNC(0x01ADA2F0, int32_t, EastAsianLunisolarCalendar_CheckYearRange, (EastAsianLunisolarCalendar * __this, int32_t year, int32_t era, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1860, EastAsianLunisolarCalendar_CheckYearRange__MethodInfo); DO_APP_FUNC(0x01ADA5A0, int32_t, EastAsianLunisolarCalendar_CheckYearMonthRange, (EastAsianLunisolarCalendar * __this, int32_t year, int32_t month, int32_t era, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1868, EastAsianLunisolarCalendar_CheckYearMonthRange__MethodInfo); DO_APP_FUNC(0x01ADA6F0, int32_t, EastAsianLunisolarCalendar_InternalGetDaysInMonth, (EastAsianLunisolarCalendar * __this, int32_t year, int32_t month, MethodInfo * method)); DO_APP_FUNC(0x01ADA740, int32_t, EastAsianLunisolarCalendar_GetDaysInMonth, (EastAsianLunisolarCalendar * __this, int32_t year, int32_t month, int32_t era, MethodInfo * method)); DO_APP_FUNC(0x01ADA7B0, int32_t, EastAsianLunisolarCalendar_GregorianIsLeapYear, (int32_t y, MethodInfo * method)); DO_APP_FUNC(0x01ADA810, DateTime, EastAsianLunisolarCalendar_ToDateTime, (EastAsianLunisolarCalendar * __this, int32_t year, int32_t month, int32_t day, int32_t hour, int32_t minute, int32_t second, int32_t millisecond, int32_t era, MethodInfo * method)); -DO_APP_FUNC(0x01ADAAE0, void, EastAsianLunisolarCalendar_GregorianToLunar, (EastAsianLunisolarCalendar * __this, int32_t nSYear, int32_t nSMonth, int32_t nSDate, int32_t nLYear, int32_t nLMonth, int32_t nLDate, MethodInfo * method)); -DO_APP_FUNC(0x01ADAE40, bool, EastAsianLunisolarCalendar_LunarToGregorian, (EastAsianLunisolarCalendar * __this, int32_t nLYear, int32_t nLMonth, int32_t nLDate, int32_t nSolarYear, int32_t nSolarMonth, int32_t nSolarDay, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1870, EastAsianLunisolarCalendar_ToDateTime__MethodInfo); +DO_APP_FUNC(0x01ADAAE0, void, EastAsianLunisolarCalendar_GregorianToLunar, (EastAsianLunisolarCalendar * __this, int32_t nSYear, int32_t nSMonth, int32_t nSDate, int32_t * nLYear, int32_t * nLMonth, int32_t * nLDate, MethodInfo * method)); +DO_APP_FUNC(0x01ADAE40, bool, EastAsianLunisolarCalendar_LunarToGregorian, (EastAsianLunisolarCalendar * __this, int32_t nLYear, int32_t nLMonth, int32_t nLDate, int32_t * nSolarYear, int32_t * nSolarMonth, int32_t * nSolarDay, MethodInfo * method)); DO_APP_FUNC(0x01ADB0B0, DateTime, EastAsianLunisolarCalendar_LunarToTime, (EastAsianLunisolarCalendar * __this, DateTime time, int32_t year, int32_t month, int32_t day, MethodInfo * method)); -DO_APP_FUNC(0x01ADB220, void, EastAsianLunisolarCalendar_TimeToLunar, (EastAsianLunisolarCalendar * __this, DateTime time, int32_t year, int32_t month, int32_t day, MethodInfo * method)); +DO_APP_FUNC(0x01ADB220, void, EastAsianLunisolarCalendar_TimeToLunar, (EastAsianLunisolarCalendar * __this, DateTime time, int32_t * year, int32_t * month, int32_t * day, MethodInfo * method)); DO_APP_FUNC(0x01ADB340, DateTime, EastAsianLunisolarCalendar_AddMonths, (EastAsianLunisolarCalendar * __this, DateTime time, int32_t months, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1820, EastAsianLunisolarCalendar_AddMonths__MethodInfo); DO_APP_FUNC(0x01ADB7E0, DateTime, EastAsianLunisolarCalendar_AddYears, (EastAsianLunisolarCalendar * __this, DateTime time, int32_t years, MethodInfo * method)); DO_APP_FUNC(0x01ADBB00, int32_t, EastAsianLunisolarCalendar_GetDayOfYear, (EastAsianLunisolarCalendar * __this, DateTime time, MethodInfo * method)); DO_APP_FUNC(0x01ADBD20, int32_t, EastAsianLunisolarCalendar_GetDayOfMonth, (EastAsianLunisolarCalendar * __this, DateTime time, MethodInfo * method)); @@ -10554,83 +11627,114 @@ DO_APP_FUNC(0x01ADC150, int32_t, EastAsianLunisolarCalendar_GetYear, (EastAsianL DO_APP_FUNC(0x01ADC320, DayOfWeek__Enum, EastAsianLunisolarCalendar_GetDayOfWeek, (EastAsianLunisolarCalendar * __this, DateTime time, MethodInfo * method)); DO_APP_FUNC(0x01ADC440, int32_t, EastAsianLunisolarCalendar_GetMonthsInYear, (EastAsianLunisolarCalendar * __this, int32_t year, int32_t era, MethodInfo * method)); DO_APP_FUNC(0x01ADC480, bool, EastAsianLunisolarCalendar_IsLeapDay, (EastAsianLunisolarCalendar * __this, int32_t year, int32_t month, int32_t day, int32_t era, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB17E8, EastAsianLunisolarCalendar_IsLeapDay__MethodInfo); DO_APP_FUNC(0x01ADC650, bool, EastAsianLunisolarCalendar_IsLeapMonth, (EastAsianLunisolarCalendar * __this, int32_t year, int32_t month, int32_t era, MethodInfo * method)); DO_APP_FUNC(0x01ADC6B0, int32_t, EastAsianLunisolarCalendar_GetLeapMonth, (EastAsianLunisolarCalendar * __this, int32_t year, int32_t era, MethodInfo * method)); DO_APP_FUNC(0x01ADC6F0, bool, EastAsianLunisolarCalendar_InternalIsLeapYear, (EastAsianLunisolarCalendar * __this, int32_t year, MethodInfo * method)); DO_APP_FUNC(0x01ADC720, bool, EastAsianLunisolarCalendar_IsLeapYear, (EastAsianLunisolarCalendar * __this, int32_t year, int32_t era, MethodInfo * method)); DO_APP_FUNC(0x01ADC760, int32_t, EastAsianLunisolarCalendar_get_TwoDigitYearMax, (EastAsianLunisolarCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x01ADC840, void, EastAsianLunisolarCalendar_set_TwoDigitYearMax, (EastAsianLunisolarCalendar * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB17F0, EastAsianLunisolarCalendar_set_TwoDigitYearMax__MethodInfo); DO_APP_FUNC(0x01ADC9B0, int32_t, EastAsianLunisolarCalendar_ToFourDigitYear, (EastAsianLunisolarCalendar * __this, int32_t year, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB17F8, EastAsianLunisolarCalendar_ToFourDigitYear__MethodInfo); DO_APP_FUNC(0x01ADCA60, void, EastAsianLunisolarCalendar__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01ADCC00, uint8_t *, GlobalizationAssembly_GetGlobalizationResourceBytePtr, (Assembly * assembly, String * tableName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1810, GlobalizationAssembly_GetGlobalizationResourceBytePtr__MethodInfo); DO_APP_FUNC(0x003AE050, void, GlobalizationAssembly__ctor, (GlobalizationAssembly * __this, MethodInfo * method)); DO_APP_FUNC(0x01ADCCF0, void, GregorianCalendar_OnDeserialized, (GregorianCalendar * __this, StreamingContext ctx, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB17C0, GregorianCalendar_OnDeserialized__MethodInfo); DO_APP_FUNC(0x01ADCDF0, DateTime, GregorianCalendar_get_MinSupportedDateTime, (GregorianCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x01ADCE50, DateTime, GregorianCalendar_get_MaxSupportedDateTime, (GregorianCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x007205E0, CalendarAlgorithmType__Enum, GregorianCalendar_get_AlgorithmType, (GregorianCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x01ADCEB0, Calendar *, GregorianCalendar_GetDefaultInstance, (MethodInfo * method)); DO_APP_FUNC(0x01ADD000, void, GregorianCalendar__ctor, (GregorianCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x01ADD010, void, GregorianCalendar__ctor_1, (GregorianCalendar * __this, GregorianCalendarTypes__Enum type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB17D0, GregorianCalendar__ctor_1__MethodInfo); DO_APP_FUNC(0x003CC980, GregorianCalendarTypes__Enum, GregorianCalendar_get_CalendarType, (GregorianCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x01ADD160, void, GregorianCalendar_set_CalendarType, (GregorianCalendar * __this, GregorianCalendarTypes__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB17E0, GregorianCalendar_set_CalendarType__MethodInfo); DO_APP_FUNC(0x003CC980, int32_t, GregorianCalendar_get_ID, (GregorianCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x01ADD210, int32_t, GregorianCalendar_GetDatePart, (GregorianCalendar * __this, int64_t ticks, int32_t part, MethodInfo * method)); DO_APP_FUNC(0x01ADD3E0, int64_t, GregorianCalendar_GetAbsoluteDate, (int32_t year, int32_t month, int32_t day, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1798, GregorianCalendar_GetAbsoluteDate__MethodInfo); DO_APP_FUNC(0x01ADD5E0, int64_t, GregorianCalendar_DateToTicks, (GregorianCalendar * __this, int32_t year, int32_t month, int32_t day, MethodInfo * method)); DO_APP_FUNC(0x01ADD660, DateTime, GregorianCalendar_AddMonths, (GregorianCalendar * __this, DateTime time, int32_t months, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB17A0, GregorianCalendar_AddMonths__MethodInfo); DO_APP_FUNC(0x01AD14D0, DateTime, GregorianCalendar_AddYears, (GregorianCalendar * __this, DateTime time, int32_t years, MethodInfo * method)); DO_APP_FUNC(0x01ADDB80, int32_t, GregorianCalendar_GetDayOfMonth, (GregorianCalendar * __this, DateTime time, MethodInfo * method)); DO_APP_FUNC(0x01ADDC30, DayOfWeek__Enum, GregorianCalendar_GetDayOfWeek, (GregorianCalendar * __this, DateTime time, MethodInfo * method)); DO_APP_FUNC(0x01ADDCF0, int32_t, GregorianCalendar_GetDayOfYear, (GregorianCalendar * __this, DateTime time, MethodInfo * method)); DO_APP_FUNC(0x01ADDDA0, int32_t, GregorianCalendar_GetDaysInMonth, (GregorianCalendar * __this, int32_t year, int32_t month, int32_t era, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB17A8, GregorianCalendar_GetDaysInMonth__MethodInfo); DO_APP_FUNC(0x01ADE0D0, int32_t, GregorianCalendar_GetDaysInYear, (GregorianCalendar * __this, int32_t year, int32_t era, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB17B0, GregorianCalendar_GetDaysInYear__MethodInfo); DO_APP_FUNC(0x007205E0, int32_t, GregorianCalendar_GetEra, (GregorianCalendar * __this, DateTime time, MethodInfo * method)); DO_APP_FUNC(0x01ADE2C0, Int32__Array *, GregorianCalendar_get_Eras, (GregorianCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x01ADE320, int32_t, GregorianCalendar_GetMonth, (GregorianCalendar * __this, DateTime time, MethodInfo * method)); DO_APP_FUNC(0x01ADE3D0, int32_t, GregorianCalendar_GetMonthsInYear, (GregorianCalendar * __this, int32_t year, int32_t era, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1760, GregorianCalendar_GetMonthsInYear__MethodInfo); DO_APP_FUNC(0x01ADE570, int32_t, GregorianCalendar_GetYear, (GregorianCalendar * __this, DateTime time, MethodInfo * method)); DO_APP_FUNC(0x01ADE620, bool, GregorianCalendar_IsLeapDay, (GregorianCalendar * __this, int32_t year, int32_t month, int32_t day, int32_t era, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1768, GregorianCalendar_IsLeapDay__MethodInfo); DO_APP_FUNC(0x01ADEA90, int32_t, GregorianCalendar_GetLeapMonth, (GregorianCalendar * __this, int32_t year, int32_t era, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1770, GregorianCalendar_GetLeapMonth__MethodInfo); DO_APP_FUNC(0x01ADEC20, bool, GregorianCalendar_IsLeapMonth, (GregorianCalendar * __this, int32_t year, int32_t month, int32_t era, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1778, GregorianCalendar_IsLeapMonth__MethodInfo); DO_APP_FUNC(0x01ADEED0, bool, GregorianCalendar_IsLeapYear, (GregorianCalendar * __this, int32_t year, int32_t era, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1780, GregorianCalendar_IsLeapYear__MethodInfo); DO_APP_FUNC(0x01ADF0B0, DateTime, GregorianCalendar_ToDateTime, (GregorianCalendar * __this, int32_t year, int32_t month, int32_t day, int32_t hour, int32_t minute, int32_t second, int32_t millisecond, int32_t era, MethodInfo * method)); -DO_APP_FUNC(0x01ADF190, bool, GregorianCalendar_TryToDateTime, (GregorianCalendar * __this, int32_t year, int32_t month, int32_t day, int32_t hour, int32_t minute, int32_t second, int32_t millisecond, int32_t era, DateTime result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1788, GregorianCalendar_ToDateTime__MethodInfo); +DO_APP_FUNC(0x01ADF190, bool, GregorianCalendar_TryToDateTime, (GregorianCalendar * __this, int32_t year, int32_t month, int32_t day, int32_t hour, int32_t minute, int32_t second, int32_t millisecond, int32_t era, DateTime * result, MethodInfo * method)); DO_APP_FUNC(0x01ADF290, int32_t, GregorianCalendar_get_TwoDigitYearMax, (GregorianCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x01ADF300, void, GregorianCalendar_set_TwoDigitYearMax, (GregorianCalendar * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1790, GregorianCalendar_set_TwoDigitYearMax__MethodInfo); DO_APP_FUNC(0x01ADF430, int32_t, GregorianCalendar_ToFourDigitYear, (GregorianCalendar * __this, int32_t year, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1738, GregorianCalendar_ToFourDigitYear__MethodInfo); DO_APP_FUNC(0x01ADF5C0, void, GregorianCalendar__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01ADF760, void, EraInfo__ctor, (EraInfo * __this, int32_t era, int32_t startYear, int32_t startMonth, int32_t startDay, int32_t yearOffset, int32_t minEraYear, int32_t maxEraYear, MethodInfo * method)); DO_APP_FUNC(0x01ADF880, void, EraInfo__ctor_1, (EraInfo * __this, int32_t era, int32_t startYear, int32_t startMonth, int32_t startDay, int32_t yearOffset, int32_t minEraYear, int32_t maxEraYear, String * eraName, String * abbrevEraName, String * englishEraName, MethodInfo * method)); DO_APP_FUNC(0x003BCD50, int32_t, GregorianCalendarHelper_get_MaxYear, (GregorianCalendarHelper * __this, MethodInfo * method)); DO_APP_FUNC(0x01ADFA90, void, GregorianCalendarHelper__ctor, (GregorianCalendarHelper * __this, Calendar * cal, EraInfo__Array * eraInfo, MethodInfo * method)); DO_APP_FUNC(0x01ADFBC0, int32_t, GregorianCalendarHelper_GetYearOffset, (GregorianCalendarHelper * __this, int32_t year, int32_t era, bool throwOnError, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1750, GregorianCalendarHelper_GetYearOffset__MethodInfo); DO_APP_FUNC(0x01ADFF80, int32_t, GregorianCalendarHelper_GetGregorianYear, (GregorianCalendarHelper * __this, int32_t year, int32_t era, MethodInfo * method)); DO_APP_FUNC(0x01ADFFB0, bool, GregorianCalendarHelper_IsValidYear, (GregorianCalendarHelper * __this, int32_t year, int32_t era, MethodInfo * method)); DO_APP_FUNC(0x01ADFFD0, int32_t, GregorianCalendarHelper_GetDatePart, (GregorianCalendarHelper * __this, int64_t ticks, int32_t part, MethodInfo * method)); DO_APP_FUNC(0x01AE01C0, int64_t, GregorianCalendarHelper_GetAbsoluteDate, (int32_t year, int32_t month, int32_t day, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1718, GregorianCalendarHelper_GetAbsoluteDate__MethodInfo); DO_APP_FUNC(0x01AE03C0, int64_t, GregorianCalendarHelper_DateToTicks, (int32_t year, int32_t month, int32_t day, MethodInfo * method)); DO_APP_FUNC(0x01AE0440, int64_t, GregorianCalendarHelper_TimeToTicks, (int32_t hour, int32_t minute, int32_t second, int32_t millisecond, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1720, GregorianCalendarHelper_TimeToTicks__MethodInfo); DO_APP_FUNC(0x01AE0630, void, GregorianCalendarHelper_CheckTicksRange, (GregorianCalendarHelper * __this, int64_t ticks, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1728, GregorianCalendarHelper_CheckTicksRange__MethodInfo); DO_APP_FUNC(0x01AE08A0, DateTime, GregorianCalendarHelper_AddMonths, (GregorianCalendarHelper * __this, DateTime time, int32_t months, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1730, GregorianCalendarHelper_AddMonths__MethodInfo); DO_APP_FUNC(0x01AE0E20, DateTime, GregorianCalendarHelper_AddYears, (GregorianCalendarHelper * __this, DateTime time, int32_t years, MethodInfo * method)); DO_APP_FUNC(0x01AE0E30, int32_t, GregorianCalendarHelper_GetDayOfMonth, (GregorianCalendarHelper * __this, DateTime time, MethodInfo * method)); DO_APP_FUNC(0x01AE0EE0, DayOfWeek__Enum, GregorianCalendarHelper_GetDayOfWeek, (GregorianCalendarHelper * __this, DateTime time, MethodInfo * method)); DO_APP_FUNC(0x01AE1000, int32_t, GregorianCalendarHelper_GetDayOfYear, (GregorianCalendarHelper * __this, DateTime time, MethodInfo * method)); DO_APP_FUNC(0x01AE10B0, int32_t, GregorianCalendarHelper_GetDaysInMonth, (GregorianCalendarHelper * __this, int32_t year, int32_t month, int32_t era, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1700, GregorianCalendarHelper_GetDaysInMonth__MethodInfo); DO_APP_FUNC(0x01AE1270, int32_t, GregorianCalendarHelper_GetDaysInYear, (GregorianCalendarHelper * __this, int32_t year, int32_t era, MethodInfo * method)); DO_APP_FUNC(0x01AE1300, int32_t, GregorianCalendarHelper_GetEra, (GregorianCalendarHelper * __this, DateTime time, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1710, GregorianCalendarHelper_GetEra__MethodInfo); DO_APP_FUNC(0x01AE1450, Int32__Array *, GregorianCalendarHelper_get_Eras, (GregorianCalendarHelper * __this, MethodInfo * method)); DO_APP_FUNC(0x01AE15C0, int32_t, GregorianCalendarHelper_GetMonth, (GregorianCalendarHelper * __this, DateTime time, MethodInfo * method)); DO_APP_FUNC(0x01AE1670, int32_t, GregorianCalendarHelper_GetMonthsInYear, (GregorianCalendarHelper * __this, int32_t year, int32_t era, MethodInfo * method)); DO_APP_FUNC(0x01AE1690, int32_t, GregorianCalendarHelper_GetYear, (GregorianCalendarHelper * __this, DateTime time, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB16D8, GregorianCalendarHelper_GetYear__MethodInfo); DO_APP_FUNC(0x01AE1800, int32_t, GregorianCalendarHelper_GetYear_1, (GregorianCalendarHelper * __this, int32_t year, DateTime time, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB16E0, GregorianCalendarHelper_GetYear_1__MethodInfo); DO_APP_FUNC(0x01AE1960, bool, GregorianCalendarHelper_IsLeapDay, (GregorianCalendarHelper * __this, int32_t year, int32_t month, int32_t day, int32_t era, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB16E8, GregorianCalendarHelper_IsLeapDay__MethodInfo); DO_APP_FUNC(0x01AE1B00, int32_t, GregorianCalendarHelper_GetLeapMonth, (GregorianCalendarHelper * __this, int32_t year, int32_t era, MethodInfo * method)); DO_APP_FUNC(0x01AE1B20, bool, GregorianCalendarHelper_IsLeapMonth, (GregorianCalendarHelper * __this, int32_t year, int32_t month, int32_t era, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB16F0, GregorianCalendarHelper_IsLeapMonth__MethodInfo); DO_APP_FUNC(0x01AE1C50, bool, GregorianCalendarHelper_IsLeapYear, (GregorianCalendarHelper * __this, int32_t year, int32_t era, MethodInfo * method)); DO_APP_FUNC(0x01AE1CD0, DateTime, GregorianCalendarHelper_ToDateTime, (GregorianCalendarHelper * __this, int32_t year, int32_t month, int32_t day, int32_t hour, int32_t minute, int32_t second, int32_t millisecond, int32_t era, MethodInfo * method)); DO_APP_FUNC(0x01AE1E20, int32_t, GregorianCalendarHelper_GetWeekOfYear, (GregorianCalendarHelper * __this, DateTime time, CalendarWeekRule__Enum rule, DayOfWeek__Enum firstDayOfWeek, MethodInfo * method)); DO_APP_FUNC(0x01AE1F40, int32_t, GregorianCalendarHelper_ToFourDigitYear, (GregorianCalendarHelper * __this, int32_t year, int32_t twoDigitYearMax, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB16F8, GregorianCalendarHelper_ToFourDigitYear__MethodInfo); DO_APP_FUNC(0x01AE2150, void, GregorianCalendarHelper__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01AE22F0, DateTime, HebrewCalendar_get_MinSupportedDateTime, (HebrewCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x01AE2350, DateTime, HebrewCalendar_get_MaxSupportedDateTime, (HebrewCalendar * __this, MethodInfo * method)); @@ -10638,20 +11742,29 @@ DO_APP_FUNC(0x007159C0, CalendarAlgorithmType__Enum, HebrewCalendar_get_Algorith DO_APP_FUNC(0x01AD0400, void, HebrewCalendar__ctor, (HebrewCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x00EAA1F0, int32_t, HebrewCalendar_get_ID, (HebrewCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x01AE23B0, void, HebrewCalendar_CheckHebrewYearValue, (int32_t y, int32_t era, String * varName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB16A0, HebrewCalendar_CheckHebrewYearValue__MethodInfo); DO_APP_FUNC(0x01AE2510, void, HebrewCalendar_CheckHebrewMonthValue, (HebrewCalendar * __this, int32_t year, int32_t month, int32_t era, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB16A8, HebrewCalendar_CheckHebrewMonthValue__MethodInfo); DO_APP_FUNC(0x01AE2650, void, HebrewCalendar_CheckHebrewDayValue, (HebrewCalendar * __this, int32_t year, int32_t month, int32_t day, int32_t era, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB16B0, HebrewCalendar_CheckHebrewDayValue__MethodInfo); DO_APP_FUNC(0x01AE2790, void, HebrewCalendar_CheckEraRange, (int32_t era, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB16B8, HebrewCalendar_CheckEraRange__MethodInfo); DO_APP_FUNC(0x01AE2870, void, HebrewCalendar_CheckTicksRange, (int64_t ticks, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB16C0, HebrewCalendar_CheckTicksRange__MethodInfo); DO_APP_FUNC(0x01AE2B00, int32_t, HebrewCalendar_GetResult, (HebrewCalendar_DateBuffer * result, int32_t part, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB16C8, HebrewCalendar_GetResult__MethodInfo); DO_APP_FUNC(0x01AE2BC0, int32_t, HebrewCalendar_GetLunarMonthDay, (int32_t gregorianYear, HebrewCalendar_DateBuffer * lunarDate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1678, HebrewCalendar_GetLunarMonthDay__MethodInfo); DO_APP_FUNC(0x01AE2D90, int32_t, HebrewCalendar_GetDatePart, (HebrewCalendar * __this, int64_t ticks, int32_t part, MethodInfo * method)); DO_APP_FUNC(0x01AE34F0, DateTime, HebrewCalendar_AddMonths, (HebrewCalendar * __this, DateTime time, int32_t months, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1688, HebrewCalendar_AddMonths__MethodInfo); DO_APP_FUNC(0x01AE3960, DateTime, HebrewCalendar_AddYears, (HebrewCalendar * __this, DateTime time, int32_t years, MethodInfo * method)); DO_APP_FUNC(0x01AE3D20, int32_t, HebrewCalendar_GetDayOfMonth, (HebrewCalendar * __this, DateTime time, MethodInfo * method)); DO_APP_FUNC(0x01AE3DD0, DayOfWeek__Enum, HebrewCalendar_GetDayOfWeek, (HebrewCalendar * __this, DateTime time, MethodInfo * method)); DO_APP_FUNC(0x01AE3E90, int32_t, HebrewCalendar_GetHebrewYearType, (int32_t year, int32_t era, MethodInfo * method)); DO_APP_FUNC(0x01AE3F40, int32_t, HebrewCalendar_GetDayOfYear, (HebrewCalendar * __this, DateTime time, MethodInfo * method)); DO_APP_FUNC(0x01AE4100, int32_t, HebrewCalendar_GetDaysInMonth, (HebrewCalendar * __this, int32_t year, int32_t month, int32_t era, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1668, HebrewCalendar_GetDaysInMonth__MethodInfo); DO_APP_FUNC(0x01AE4270, int32_t, HebrewCalendar_GetDaysInYear, (HebrewCalendar * __this, int32_t year, int32_t era, MethodInfo * method)); DO_APP_FUNC(0x01AE42F0, int32_t, HebrewCalendar_GetEra, (HebrewCalendar * __this, DateTime time, MethodInfo * method)); DO_APP_FUNC(0x01AE4350, Int32__Array *, HebrewCalendar_get_Eras, (HebrewCalendar * __this, MethodInfo * method)); @@ -10668,6 +11781,7 @@ DO_APP_FUNC(0x01AE4D20, DateTime, HebrewCalendar_ToDateTime, (HebrewCalendar * _ DO_APP_FUNC(0x01AE4EB0, int32_t, HebrewCalendar_get_TwoDigitYearMax, (HebrewCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x01AE4F20, void, HebrewCalendar_set_TwoDigitYearMax, (HebrewCalendar * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01AE4FC0, int32_t, HebrewCalendar_ToFourDigitYear, (HebrewCalendar * __this, int32_t year, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1650, HebrewCalendar_ToFourDigitYear__MethodInfo); DO_APP_FUNC(0x01AE5170, void, HebrewCalendar__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HebrewCalendar_DateBuffer__ctor, (HebrewCalendar_DateBuffer * __this, MethodInfo * method)); DO_APP_FUNC(0x01AE54D0, DateTime, HijriCalendar_get_MinSupportedDateTime, (HijriCalendar * __this, MethodInfo * method)); @@ -10680,13 +11794,20 @@ DO_APP_FUNC(0x01AE55C0, int64_t, HijriCalendar_GetAbsoluteDateHijri, (HijriCalen DO_APP_FUNC(0x01AE56E0, int64_t, HijriCalendar_DaysUpToHijriYear, (HijriCalendar * __this, int32_t HijriYear, MethodInfo * method)); DO_APP_FUNC(0x01AE57A0, int32_t, HijriCalendar_get_HijriAdjustment, (HijriCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x01AE5800, void, HijriCalendar_set_HijriAdjustment, (HijriCalendar * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1640, HijriCalendar_set_HijriAdjustment__MethodInfo); DO_APP_FUNC(0x003CB690, int32_t, HijriCalendar_GetAdvanceHijriDate, (MethodInfo * method)); DO_APP_FUNC(0x01AE5930, void, HijriCalendar_CheckTicksRange, (int64_t ticks, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1648, HijriCalendar_CheckTicksRange__MethodInfo); DO_APP_FUNC(0x01AE5BC0, void, HijriCalendar_CheckEraRange, (int32_t era, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1600, HijriCalendar_CheckEraRange__MethodInfo); DO_APP_FUNC(0x01AE5CA0, void, HijriCalendar_CheckYearRange, (int32_t year, int32_t era, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1608, HijriCalendar_CheckYearRange__MethodInfo); DO_APP_FUNC(0x01AE5EB0, void, HijriCalendar_CheckYearMonthRange, (int32_t year, int32_t month, int32_t era, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1610, HijriCalendar_CheckYearMonthRange__MethodInfo); DO_APP_FUNC(0x01AE6090, int32_t, HijriCalendar_GetDatePart, (HijriCalendar * __this, int64_t ticks, int32_t part, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1618, HijriCalendar_GetDatePart__MethodInfo); DO_APP_FUNC(0x01AE6340, DateTime, HijriCalendar_AddMonths, (HijriCalendar * __this, DateTime time, int32_t months, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1620, HijriCalendar_AddMonths__MethodInfo); DO_APP_FUNC(0x01AD14D0, DateTime, HijriCalendar_AddYears, (HijriCalendar * __this, DateTime time, int32_t years, MethodInfo * method)); DO_APP_FUNC(0x01AE67A0, int32_t, HijriCalendar_GetDayOfMonth, (HijriCalendar * __this, DateTime time, MethodInfo * method)); DO_APP_FUNC(0x01AE6850, DayOfWeek__Enum, HijriCalendar_GetDayOfWeek, (HijriCalendar * __this, DateTime time, MethodInfo * method)); @@ -10699,13 +11820,17 @@ DO_APP_FUNC(0x01AE6CA0, int32_t, HijriCalendar_GetMonth, (HijriCalendar * __this DO_APP_FUNC(0x01AE6D50, int32_t, HijriCalendar_GetMonthsInYear, (HijriCalendar * __this, int32_t year, int32_t era, MethodInfo * method)); DO_APP_FUNC(0x01AE6DC0, int32_t, HijriCalendar_GetYear, (HijriCalendar * __this, DateTime time, MethodInfo * method)); DO_APP_FUNC(0x01AE6E70, bool, HijriCalendar_IsLeapDay, (HijriCalendar * __this, int32_t year, int32_t month, int32_t day, int32_t era, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB15D8, HijriCalendar_IsLeapDay__MethodInfo); DO_APP_FUNC(0x01AE6FF0, int32_t, HijriCalendar_GetLeapMonth, (HijriCalendar * __this, int32_t year, int32_t era, MethodInfo * method)); DO_APP_FUNC(0x01AE7050, bool, HijriCalendar_IsLeapMonth, (HijriCalendar * __this, int32_t year, int32_t month, int32_t era, MethodInfo * method)); DO_APP_FUNC(0x01AE70C0, bool, HijriCalendar_IsLeapYear, (HijriCalendar * __this, int32_t year, int32_t era, MethodInfo * method)); DO_APP_FUNC(0x01AE7140, DateTime, HijriCalendar_ToDateTime, (HijriCalendar * __this, int32_t year, int32_t month, int32_t day, int32_t hour, int32_t minute, int32_t second, int32_t millisecond, int32_t era, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB15E0, HijriCalendar_ToDateTime__MethodInfo); DO_APP_FUNC(0x01AE7370, int32_t, HijriCalendar_get_TwoDigitYearMax, (HijriCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x01AE73E0, void, HijriCalendar_set_TwoDigitYearMax, (HijriCalendar * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB15E8, HijriCalendar_set_TwoDigitYearMax__MethodInfo); DO_APP_FUNC(0x01AE7510, int32_t, HijriCalendar_ToFourDigitYear, (HijriCalendar * __this, int32_t year, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB15F0, HijriCalendar_ToFourDigitYear__MethodInfo); DO_APP_FUNC(0x01AE76C0, void, HijriCalendar__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01AE7860, DateTime, JapaneseCalendar_get_MinSupportedDateTime, (JapaneseCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x01AE78C0, DateTime, JapaneseCalendar_get_MaxSupportedDateTime, (JapaneseCalendar * __this, MethodInfo * method)); @@ -10716,6 +11841,7 @@ DO_APP_FUNC(0x01AE7FD0, int32_t, JapaneseCalendar_CompareEraRanges, (EraInfo * a DO_APP_FUNC(0x01AE8010, EraInfo *, JapaneseCalendar_GetEraFromValue, (String * value, String * data, MethodInfo * method)); DO_APP_FUNC(0x01AE8420, Calendar *, JapaneseCalendar_GetDefaultInstance, (MethodInfo * method)); DO_APP_FUNC(0x01AE8560, void, JapaneseCalendar__ctor, (JapaneseCalendar * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1570, JapaneseCalendar__ctor__MethodInfo); DO_APP_FUNC(0x007159C0, int32_t, JapaneseCalendar_get_ID, (JapaneseCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x01AE8740, DateTime, JapaneseCalendar_AddMonths, (JapaneseCalendar * __this, DateTime time, int32_t months, MethodInfo * method)); DO_APP_FUNC(0x01AE8760, DateTime, JapaneseCalendar_AddYears, (JapaneseCalendar * __this, DateTime time, int32_t years, MethodInfo * method)); @@ -10735,6 +11861,7 @@ DO_APP_FUNC(0x01AE8950, int32_t, JapaneseCalendar_GetLeapMonth, (JapaneseCalenda DO_APP_FUNC(0x01AE8980, bool, JapaneseCalendar_IsLeapMonth, (JapaneseCalendar * __this, int32_t year, int32_t month, int32_t era, MethodInfo * method)); DO_APP_FUNC(0x01AE89B0, DateTime, JapaneseCalendar_ToDateTime, (JapaneseCalendar * __this, int32_t year, int32_t month, int32_t day, int32_t hour, int32_t minute, int32_t second, int32_t millisecond, int32_t era, MethodInfo * method)); DO_APP_FUNC(0x01AE89E0, int32_t, JapaneseCalendar_ToFourDigitYear, (JapaneseCalendar * __this, int32_t year, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1578, JapaneseCalendar_ToFourDigitYear__MethodInfo); DO_APP_FUNC(0x01AE8BA0, Int32__Array *, JapaneseCalendar_get_Eras, (JapaneseCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x01AE8BC0, String__Array *, JapaneseCalendar_EraNames, (MethodInfo * method)); DO_APP_FUNC(0x01AE8D40, String__Array *, JapaneseCalendar_AbbrevEraNames, (MethodInfo * method)); @@ -10742,6 +11869,7 @@ DO_APP_FUNC(0x01AE8EC0, String__Array *, JapaneseCalendar_EnglishEraNames, (Meth DO_APP_FUNC(0x01AE9040, bool, JapaneseCalendar_IsValidYear, (JapaneseCalendar * __this, int32_t year, int32_t era, MethodInfo * method)); DO_APP_FUNC(0x01AE9070, int32_t, JapaneseCalendar_get_TwoDigitYearMax, (JapaneseCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x01AE90E0, void, JapaneseCalendar_set_TwoDigitYearMax, (JapaneseCalendar * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1550, JapaneseCalendar_set_TwoDigitYearMax__MethodInfo); DO_APP_FUNC(0x01AE9240, void, JapaneseCalendar__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01AE92D0, DateTime, JapaneseLunisolarCalendar_get_MinSupportedDateTime, (JapaneseLunisolarCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x01AE9330, DateTime, JapaneseLunisolarCalendar_get_MaxSupportedDateTime, (JapaneseLunisolarCalendar * __this, MethodInfo * method)); @@ -10752,6 +11880,7 @@ DO_APP_FUNC(0x01AE93B0, DateTime, JapaneseLunisolarCalendar_get_MinDate, (Japane DO_APP_FUNC(0x01AE9410, DateTime, JapaneseLunisolarCalendar_get_MaxDate, (JapaneseLunisolarCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x01AE9470, EraInfo__Array *, JapaneseLunisolarCalendar_get_CalEraInfo, (JapaneseLunisolarCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x01AE94C0, int32_t, JapaneseLunisolarCalendar_GetYearInfo, (JapaneseLunisolarCalendar * __this, int32_t LunarYear, int32_t Index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1538, JapaneseLunisolarCalendar_GetYearInfo__MethodInfo); DO_APP_FUNC(0x01AE9670, int32_t, JapaneseLunisolarCalendar_GetYear, (JapaneseLunisolarCalendar * __this, int32_t year, DateTime time, MethodInfo * method)); DO_APP_FUNC(0x01AE9690, int32_t, JapaneseLunisolarCalendar_GetGregorianYear, (JapaneseLunisolarCalendar * __this, int32_t year, int32_t era, MethodInfo * method)); DO_APP_FUNC(0x01AE96C0, EraInfo__Array *, JapaneseLunisolarCalendar_TrimEras, (EraInfo__Array * baseEras, MethodInfo * method)); @@ -10767,12 +11896,17 @@ DO_APP_FUNC(0x007205E0, CalendarAlgorithmType__Enum, JulianCalendar_get_Algorith DO_APP_FUNC(0x01AE9E20, void, JulianCalendar__ctor, (JulianCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x01AE9E40, int32_t, JulianCalendar_get_ID, (JulianCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x01AE9E50, void, JulianCalendar_CheckEraRange, (int32_t era, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1510, JulianCalendar_CheckEraRange__MethodInfo); DO_APP_FUNC(0x01AE9F30, void, JulianCalendar_CheckYearEraRange, (JulianCalendar * __this, int32_t year, int32_t era, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1518, JulianCalendar_CheckYearEraRange__MethodInfo); DO_APP_FUNC(0x01AEA150, void, JulianCalendar_CheckMonthRange, (int32_t month, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1520, JulianCalendar_CheckMonthRange__MethodInfo); DO_APP_FUNC(0x01AEA1F0, void, JulianCalendar_CheckDayRange, (int32_t year, int32_t month, int32_t day, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1528, JulianCalendar_CheckDayRange__MethodInfo); DO_APP_FUNC(0x01AEA450, int32_t, JulianCalendar_GetDatePart, (int64_t ticks, int32_t part, MethodInfo * method)); DO_APP_FUNC(0x01AEA5C0, int64_t, JulianCalendar_DateToTicks, (int32_t year, int32_t month, int32_t day, MethodInfo * method)); DO_APP_FUNC(0x01AEA6C0, DateTime, JulianCalendar_AddMonths, (JulianCalendar * __this, DateTime time, int32_t months, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1530, JulianCalendar_AddMonths__MethodInfo); DO_APP_FUNC(0x01AD14D0, DateTime, JulianCalendar_AddYears, (JulianCalendar * __this, DateTime time, int32_t years, MethodInfo * method)); DO_APP_FUNC(0x01AEABD0, int32_t, JulianCalendar_GetDayOfMonth, (JulianCalendar * __this, DateTime time, MethodInfo * method)); DO_APP_FUNC(0x01AEAC90, DayOfWeek__Enum, JulianCalendar_GetDayOfWeek, (JulianCalendar * __this, DateTime time, MethodInfo * method)); @@ -10789,14 +11923,18 @@ DO_APP_FUNC(0x01AEB3E0, int32_t, JulianCalendar_GetLeapMonth, (JulianCalendar * DO_APP_FUNC(0x01AEB400, bool, JulianCalendar_IsLeapMonth, (JulianCalendar * __this, int32_t year, int32_t month, int32_t era, MethodInfo * method)); DO_APP_FUNC(0x01AEB490, bool, JulianCalendar_IsLeapYear, (JulianCalendar * __this, int32_t year, int32_t era, MethodInfo * method)); DO_APP_FUNC(0x01AEB4C0, DateTime, JulianCalendar_ToDateTime, (JulianCalendar * __this, int32_t year, int32_t month, int32_t day, int32_t hour, int32_t minute, int32_t second, int32_t millisecond, int32_t era, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB14F0, JulianCalendar_ToDateTime__MethodInfo); DO_APP_FUNC(0x003BC2E0, int32_t, JulianCalendar_get_TwoDigitYearMax, (JulianCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x01AEB7A0, void, JulianCalendar_set_TwoDigitYearMax, (JulianCalendar * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB14F8, JulianCalendar_set_TwoDigitYearMax__MethodInfo); DO_APP_FUNC(0x01AEB8D0, int32_t, JulianCalendar_ToFourDigitYear, (JulianCalendar * __this, int32_t year, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1500, JulianCalendar_ToFourDigitYear__MethodInfo); DO_APP_FUNC(0x01AEBA70, void, JulianCalendar__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01AEBC20, DateTime, KoreanCalendar_get_MinSupportedDateTime, (KoreanCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x01AEBC80, DateTime, KoreanCalendar_get_MaxSupportedDateTime, (KoreanCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x007205E0, CalendarAlgorithmType__Enum, KoreanCalendar_get_AlgorithmType, (KoreanCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x01AEBCE0, void, KoreanCalendar__ctor, (KoreanCalendar * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB14D0, KoreanCalendar__ctor__MethodInfo); DO_APP_FUNC(0x01164370, int32_t, KoreanCalendar_get_ID, (KoreanCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x01AE8740, DateTime, KoreanCalendar_AddMonths, (KoreanCalendar * __this, DateTime time, int32_t months, MethodInfo * method)); DO_APP_FUNC(0x01AE8760, DateTime, KoreanCalendar_AddYears, (KoreanCalendar * __this, DateTime time, int32_t years, MethodInfo * method)); @@ -10818,7 +11956,9 @@ DO_APP_FUNC(0x01AE89B0, DateTime, KoreanCalendar_ToDateTime, (KoreanCalendar * _ DO_APP_FUNC(0x01AE8BA0, Int32__Array *, KoreanCalendar_get_Eras, (KoreanCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x01AEBED0, int32_t, KoreanCalendar_get_TwoDigitYearMax, (KoreanCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x01AEBF40, void, KoreanCalendar_set_TwoDigitYearMax, (KoreanCalendar * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB14D8, KoreanCalendar_set_TwoDigitYearMax__MethodInfo); DO_APP_FUNC(0x01AEC0A0, int32_t, KoreanCalendar_ToFourDigitYear, (KoreanCalendar * __this, int32_t year, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB14E0, KoreanCalendar_ToFourDigitYear__MethodInfo); DO_APP_FUNC(0x01AEC160, void, KoreanCalendar__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01AEC2D0, DateTime, KoreanLunisolarCalendar_get_MinSupportedDateTime, (KoreanLunisolarCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x01AEC330, DateTime, KoreanLunisolarCalendar_get_MaxSupportedDateTime, (KoreanLunisolarCalendar * __this, MethodInfo * method)); @@ -10829,8 +11969,10 @@ DO_APP_FUNC(0x01AEC3B0, DateTime, KoreanLunisolarCalendar_get_MinDate, (KoreanLu DO_APP_FUNC(0x01AEC410, DateTime, KoreanLunisolarCalendar_get_MaxDate, (KoreanLunisolarCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x003CB690, EraInfo__Array *, KoreanLunisolarCalendar_get_CalEraInfo, (KoreanLunisolarCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x01AEC470, int32_t, KoreanLunisolarCalendar_GetYearInfo, (KoreanLunisolarCalendar * __this, int32_t LunarYear, int32_t Index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB14A0, KoreanLunisolarCalendar_GetYearInfo__MethodInfo); DO_APP_FUNC(0x003DA110, int32_t, KoreanLunisolarCalendar_GetYear, (KoreanLunisolarCalendar * __this, int32_t year, DateTime time, MethodInfo * method)); DO_APP_FUNC(0x01AEC620, int32_t, KoreanLunisolarCalendar_GetGregorianYear, (KoreanLunisolarCalendar * __this, int32_t year, int32_t era, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB14A8, KoreanLunisolarCalendar_GetGregorianYear__MethodInfo); DO_APP_FUNC(0x01AEC7B0, void, KoreanLunisolarCalendar__ctor, (KoreanLunisolarCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x01AEC810, int32_t, KoreanLunisolarCalendar_GetEra, (KoreanLunisolarCalendar * __this, DateTime time, MethodInfo * method)); DO_APP_FUNC(0x01164370, int32_t, KoreanLunisolarCalendar_get_BaseCalendarID, (KoreanLunisolarCalendar * __this, MethodInfo * method)); @@ -10842,75 +11984,103 @@ DO_APP_FUNC(0x01AECBD0, void, NumberFormatInfo_OnSerializing, (NumberFormatInfo DO_APP_FUNC(0x003AE050, void, NumberFormatInfo_OnDeserializing, (NumberFormatInfo * __this, StreamingContext ctx, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NumberFormatInfo_OnDeserialized, (NumberFormatInfo * __this, StreamingContext ctx, MethodInfo * method)); DO_APP_FUNC(0x01AECD40, void, NumberFormatInfo_VerifyDecimalSeparator, (String * decSep, String * propertyName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB14B8, NumberFormatInfo_VerifyDecimalSeparator__MethodInfo); DO_APP_FUNC(0x01AECE30, void, NumberFormatInfo_VerifyGroupSeparator, (String * groupSep, String * propertyName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1450, NumberFormatInfo_VerifyGroupSeparator__MethodInfo); DO_APP_FUNC(0x01AECEC0, void, NumberFormatInfo_VerifyNativeDigits, (String__Array * nativeDig, String * propertyName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1458, NumberFormatInfo_VerifyNativeDigits__MethodInfo); DO_APP_FUNC(0x01AED280, void, NumberFormatInfo_VerifyDigitSubstitution, (DigitShapes__Enum digitSub, String * propertyName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1478, NumberFormatInfo_VerifyDigitSubstitution__MethodInfo); DO_APP_FUNC(0x01AED310, void, NumberFormatInfo__ctor_1, (NumberFormatInfo * __this, CultureData * cultureData, MethodInfo * method)); DO_APP_FUNC(0x01AEDFB0, void, NumberFormatInfo_VerifyWritable, (NumberFormatInfo * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1418, NumberFormatInfo_VerifyWritable__MethodInfo); DO_APP_FUNC(0x01AEE040, NumberFormatInfo *, NumberFormatInfo_get_InvariantInfo, (MethodInfo * method)); DO_APP_FUNC(0x01AEE1B0, NumberFormatInfo *, NumberFormatInfo_GetInstance, (IFormatProvider * formatProvider, MethodInfo * method)); DO_APP_FUNC(0x01AEE340, Object *, NumberFormatInfo_Clone, (NumberFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x006C4CD0, int32_t, NumberFormatInfo_get_CurrencyDecimalDigits, (NumberFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AEE3B0, void, NumberFormatInfo_set_CurrencyDecimalDigits, (NumberFormatInfo * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1430, NumberFormatInfo_set_CurrencyDecimalDigits__MethodInfo); DO_APP_FUNC(0x003C7420, String *, NumberFormatInfo_get_CurrencyDecimalSeparator, (NumberFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AEE4E0, void, NumberFormatInfo_set_CurrencyDecimalSeparator, (NumberFormatInfo * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x01AEE660, bool, NumberFormatInfo_get_IsReadOnly, (NumberFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AEE670, void, NumberFormatInfo_CheckGroupSize, (String * propName, Int32__Array * groupSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1448, NumberFormatInfo_CheckGroupSize__MethodInfo); DO_APP_FUNC(0x01AEE7C0, Int32__Array *, NumberFormatInfo_get_CurrencyGroupSizes, (NumberFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AEE840, void, NumberFormatInfo_set_CurrencyGroupSizes, (NumberFormatInfo * __this, Int32__Array * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB13F8, NumberFormatInfo_set_CurrencyGroupSizes__MethodInfo); DO_APP_FUNC(0x01AEEAE0, Int32__Array *, NumberFormatInfo_get_NumberGroupSizes, (NumberFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AEEB60, void, NumberFormatInfo_set_NumberGroupSizes, (NumberFormatInfo * __this, Int32__Array * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1408, NumberFormatInfo_set_NumberGroupSizes__MethodInfo); DO_APP_FUNC(0x01AEEE00, Int32__Array *, NumberFormatInfo_get_PercentGroupSizes, (NumberFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AEEE80, void, NumberFormatInfo_set_PercentGroupSizes, (NumberFormatInfo * __this, Int32__Array * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1398, NumberFormatInfo_set_PercentGroupSizes__MethodInfo); DO_APP_FUNC(0x003CD530, String *, NumberFormatInfo_get_CurrencyGroupSeparator, (NumberFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AEF120, void, NumberFormatInfo_set_CurrencyGroupSeparator, (NumberFormatInfo * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x003C7490, String *, NumberFormatInfo_get_CurrencySymbol, (NumberFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AEF230, void, NumberFormatInfo_set_CurrencySymbol, (NumberFormatInfo * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB13B0, NumberFormatInfo_set_CurrencySymbol__MethodInfo); DO_APP_FUNC(0x01AEF310, NumberFormatInfo *, NumberFormatInfo_get_CurrentInfo, (MethodInfo * method)); DO_APP_FUNC(0x003C91C0, String *, NumberFormatInfo_get_NaNSymbol, (NumberFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AEF440, void, NumberFormatInfo_set_NaNSymbol, (NumberFormatInfo * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB13C0, NumberFormatInfo_set_NaNSymbol__MethodInfo); DO_APP_FUNC(0x01AEF520, int32_t, NumberFormatInfo_get_CurrencyNegativePattern, (NumberFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AEF530, void, NumberFormatInfo_set_CurrencyNegativePattern, (NumberFormatInfo * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB13D0, NumberFormatInfo_set_CurrencyNegativePattern__MethodInfo); DO_APP_FUNC(0x01AEF660, int32_t, NumberFormatInfo_get_NumberNegativePattern, (NumberFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AEF670, void, NumberFormatInfo_set_NumberNegativePattern, (NumberFormatInfo * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB13E0, NumberFormatInfo_set_NumberNegativePattern__MethodInfo); DO_APP_FUNC(0x01AEF7A0, int32_t, NumberFormatInfo_get_PercentPositivePattern, (NumberFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AEF7B0, void, NumberFormatInfo_set_PercentPositivePattern, (NumberFormatInfo * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1338, NumberFormatInfo_set_PercentPositivePattern__MethodInfo); DO_APP_FUNC(0x01860290, int32_t, NumberFormatInfo_get_PercentNegativePattern, (NumberFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AEF8E0, void, NumberFormatInfo_set_PercentNegativePattern, (NumberFormatInfo * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1348, NumberFormatInfo_set_PercentNegativePattern__MethodInfo); DO_APP_FUNC(0x003C91E0, String *, NumberFormatInfo_get_NegativeInfinitySymbol, (NumberFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AEFA10, void, NumberFormatInfo_set_NegativeInfinitySymbol, (NumberFormatInfo * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1358, NumberFormatInfo_set_NegativeInfinitySymbol__MethodInfo); DO_APP_FUNC(0x003BB330, String *, NumberFormatInfo_get_NegativeSign, (NumberFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AEFAF0, void, NumberFormatInfo_set_NegativeSign, (NumberFormatInfo * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1368, NumberFormatInfo_set_NegativeSign__MethodInfo); DO_APP_FUNC(0x006C4B50, int32_t, NumberFormatInfo_get_NumberDecimalDigits, (NumberFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AEFBD0, void, NumberFormatInfo_set_NumberDecimalDigits, (NumberFormatInfo * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1378, NumberFormatInfo_set_NumberDecimalDigits__MethodInfo); DO_APP_FUNC(0x003C7320, String *, NumberFormatInfo_get_NumberDecimalSeparator, (NumberFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AEFD00, void, NumberFormatInfo_set_NumberDecimalSeparator, (NumberFormatInfo * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x003C7390, String *, NumberFormatInfo_get_NumberGroupSeparator, (NumberFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AEFE80, void, NumberFormatInfo_set_NumberGroupSeparator, (NumberFormatInfo * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x01AEFF90, int32_t, NumberFormatInfo_get_CurrencyPositivePattern, (NumberFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AEFFA0, void, NumberFormatInfo_set_CurrencyPositivePattern, (NumberFormatInfo * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB12D8, NumberFormatInfo_set_CurrencyPositivePattern__MethodInfo); DO_APP_FUNC(0x003C91D0, String *, NumberFormatInfo_get_PositiveInfinitySymbol, (NumberFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AF00D0, void, NumberFormatInfo_set_PositiveInfinitySymbol, (NumberFormatInfo * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB12E8, NumberFormatInfo_set_PositiveInfinitySymbol__MethodInfo); DO_APP_FUNC(0x003BB3B0, String *, NumberFormatInfo_get_PositiveSign, (NumberFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AF01B0, void, NumberFormatInfo_set_PositiveSign, (NumberFormatInfo * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB12F8, NumberFormatInfo_set_PositiveSign__MethodInfo); DO_APP_FUNC(0x01878EB0, int32_t, NumberFormatInfo_get_PercentDecimalDigits, (NumberFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AF0290, void, NumberFormatInfo_set_PercentDecimalDigits, (NumberFormatInfo * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1308, NumberFormatInfo_set_PercentDecimalDigits__MethodInfo); DO_APP_FUNC(0x003C91F0, String *, NumberFormatInfo_get_PercentDecimalSeparator, (NumberFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AF03C0, void, NumberFormatInfo_set_PercentDecimalSeparator, (NumberFormatInfo * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x003C9200, String *, NumberFormatInfo_get_PercentGroupSeparator, (NumberFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AF0540, void, NumberFormatInfo_set_PercentGroupSeparator, (NumberFormatInfo * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x00A4F060, String *, NumberFormatInfo_get_PercentSymbol, (NumberFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AF0650, void, NumberFormatInfo_set_PercentSymbol, (NumberFormatInfo * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1328, NumberFormatInfo_set_PercentSymbol__MethodInfo); DO_APP_FUNC(0x0049E0C0, String *, NumberFormatInfo_get_PerMilleSymbol, (NumberFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AF0730, void, NumberFormatInfo_set_PerMilleSymbol, (NumberFormatInfo * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB12A8, NumberFormatInfo_set_PerMilleSymbol__MethodInfo); DO_APP_FUNC(0x01AF0810, String__Array *, NumberFormatInfo_get_NativeDigits, (NumberFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AF0890, void, NumberFormatInfo_set_NativeDigits, (NumberFormatInfo * __this, String__Array * value, MethodInfo * method)); DO_APP_FUNC(0x01AF0940, DigitShapes__Enum, NumberFormatInfo_get_DigitSubstitution, (NumberFormatInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AF0950, void, NumberFormatInfo_set_DigitSubstitution, (NumberFormatInfo * __this, DigitShapes__Enum value, MethodInfo * method)); DO_APP_FUNC(0x01AF0A20, Object *, NumberFormatInfo_GetFormat, (NumberFormatInfo * __this, Type * formatType, MethodInfo * method)); DO_APP_FUNC(0x01AF0AB0, NumberFormatInfo *, NumberFormatInfo_ReadOnly, (NumberFormatInfo * nfi, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB12C8, NumberFormatInfo_ReadOnly__MethodInfo); DO_APP_FUNC(0x01AF0B80, void, NumberFormatInfo_ValidateParseStyleInteger, (NumberStyles__Enum style, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1260, NumberFormatInfo_ValidateParseStyleInteger__MethodInfo); DO_APP_FUNC(0x01AF0C80, void, NumberFormatInfo_ValidateParseStyleFloatingPoint, (NumberStyles__Enum style, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1270, NumberFormatInfo_ValidateParseStyleFloatingPoint__MethodInfo); DO_APP_FUNC(0x01AF0D70, void, StringInfo__ctor, (StringInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AF0EE0, void, StringInfo__ctor_1, (StringInfo * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x01AF1020, void, StringInfo_OnDeserializing, (StringInfo * __this, StreamingContext ctx, MethodInfo * method)); @@ -10920,20 +12090,27 @@ DO_APP_FUNC(0x00A890A0, int32_t, StringInfo_GetHashCode, (StringInfo * __this, M DO_APP_FUNC(0x01AF11F0, Int32__Array *, StringInfo_get_Indexes, (StringInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, String *, StringInfo_get_String, (StringInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AF0EE0, void, StringInfo_set_String, (StringInfo * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1288, StringInfo_set_String__MethodInfo); DO_APP_FUNC(0x01AF1280, int32_t, StringInfo_get_LengthInTextElements, (StringInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AF12C0, String *, StringInfo_SubstringByTextElements, (StringInfo * __this, int32_t startingTextElement, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1298, StringInfo_SubstringByTextElements__MethodInfo); DO_APP_FUNC(0x01AF13F0, String *, StringInfo_SubstringByTextElements_1, (StringInfo * __this, int32_t startingTextElement, int32_t lengthInTextElements, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB12A0, StringInfo_SubstringByTextElements_1__MethodInfo); DO_APP_FUNC(0x01AF1740, String *, StringInfo_GetNextTextElement, (String * str, MethodInfo * method)); -DO_APP_FUNC(0x01AF1920, int32_t, StringInfo_GetCurrentTextElementLen, (String * str, int32_t index, int32_t len, UnicodeCategory__Enum ucCurrent, int32_t currentCharCount, MethodInfo * method)); +DO_APP_FUNC(0x01AF1920, int32_t, StringInfo_GetCurrentTextElementLen, (String * str, int32_t index, int32_t len, UnicodeCategory__Enum * ucCurrent, int32_t * currentCharCount, MethodInfo * method)); DO_APP_FUNC(0x01AF1B50, String *, StringInfo_GetNextTextElement_1, (String * str, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1238, StringInfo_GetNextTextElement_1__MethodInfo); DO_APP_FUNC(0x01AF1CE0, TextElementEnumerator *, StringInfo_GetTextElementEnumerator, (String * str, MethodInfo * method)); DO_APP_FUNC(0x01AF1CF0, TextElementEnumerator *, StringInfo_GetTextElementEnumerator_1, (String * str, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1248, StringInfo_GetTextElementEnumerator_1__MethodInfo); DO_APP_FUNC(0x01AF1EB0, Int32__Array *, StringInfo_ParseCombiningCharacters, (String * str, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1250, StringInfo_ParseCombiningCharacters__MethodInfo); DO_APP_FUNC(0x01AF2170, Calendar *, TaiwanCalendar_GetDefaultInstance, (MethodInfo * method)); DO_APP_FUNC(0x01AF22B0, DateTime, TaiwanCalendar_get_MinSupportedDateTime, (TaiwanCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x01AF2310, DateTime, TaiwanCalendar_get_MaxSupportedDateTime, (TaiwanCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x007205E0, CalendarAlgorithmType__Enum, TaiwanCalendar_get_AlgorithmType, (TaiwanCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x01AF2370, void, TaiwanCalendar__ctor, (TaiwanCalendar * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1210, TaiwanCalendar__ctor__MethodInfo); DO_APP_FUNC(0x00EAA1E0, int32_t, TaiwanCalendar_get_ID, (TaiwanCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x01AE8740, DateTime, TaiwanCalendar_AddMonths, (TaiwanCalendar * __this, DateTime time, int32_t months, MethodInfo * method)); DO_APP_FUNC(0x01AE8760, DateTime, TaiwanCalendar_AddYears, (TaiwanCalendar * __this, DateTime time, int32_t years, MethodInfo * method)); @@ -10955,7 +12132,9 @@ DO_APP_FUNC(0x01AE89B0, DateTime, TaiwanCalendar_ToDateTime, (TaiwanCalendar * _ DO_APP_FUNC(0x01AE8BA0, Int32__Array *, TaiwanCalendar_get_Eras, (TaiwanCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x01AE9070, int32_t, TaiwanCalendar_get_TwoDigitYearMax, (TaiwanCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x01AF2560, void, TaiwanCalendar_set_TwoDigitYearMax, (TaiwanCalendar * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1218, TaiwanCalendar_set_TwoDigitYearMax__MethodInfo); DO_APP_FUNC(0x01AF26C0, int32_t, TaiwanCalendar_ToFourDigitYear, (TaiwanCalendar * __this, int32_t year, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1220, TaiwanCalendar_ToFourDigitYear__MethodInfo); DO_APP_FUNC(0x01AF2880, void, TaiwanCalendar__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01AF2A50, DateTime, TaiwanLunisolarCalendar_get_MinSupportedDateTime, (TaiwanLunisolarCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x01AF2AB0, DateTime, TaiwanLunisolarCalendar_get_MaxSupportedDateTime, (TaiwanLunisolarCalendar * __this, MethodInfo * method)); @@ -10966,6 +12145,7 @@ DO_APP_FUNC(0x01AF2B20, DateTime, TaiwanLunisolarCalendar_get_MinDate, (TaiwanLu DO_APP_FUNC(0x01AF2B80, DateTime, TaiwanLunisolarCalendar_get_MaxDate, (TaiwanLunisolarCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x01AF2BE0, EraInfo__Array *, TaiwanLunisolarCalendar_get_CalEraInfo, (TaiwanLunisolarCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x01AF2C40, int32_t, TaiwanLunisolarCalendar_GetYearInfo, (TaiwanLunisolarCalendar * __this, int32_t LunarYear, int32_t Index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1200, TaiwanLunisolarCalendar_GetYearInfo__MethodInfo); DO_APP_FUNC(0x01AE9670, int32_t, TaiwanLunisolarCalendar_GetYear, (TaiwanLunisolarCalendar * __this, int32_t year, DateTime time, MethodInfo * method)); DO_APP_FUNC(0x01AE9690, int32_t, TaiwanLunisolarCalendar_GetGregorianYear, (TaiwanLunisolarCalendar * __this, int32_t year, int32_t era, MethodInfo * method)); DO_APP_FUNC(0x01AF2DF0, void, TaiwanLunisolarCalendar__ctor, (TaiwanLunisolarCalendar * __this, MethodInfo * method)); @@ -10981,9 +12161,12 @@ DO_APP_FUNC(0x01AF33F0, void, TextElementEnumerator_OnSerializing, (TextElementE DO_APP_FUNC(0x01AF3400, bool, TextElementEnumerator_MoveNext, (TextElementEnumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x01AF3460, Object *, TextElementEnumerator_get_Current, (TextElementEnumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x01AF3460, String *, TextElementEnumerator_GetTextElement, (TextElementEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4078, TextElementEnumerator_GetTextElement__MethodInfo); DO_APP_FUNC(0x01AF3570, int32_t, TextElementEnumerator_get_ElementIndex, (TextElementEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4080, TextElementEnumerator_get_ElementIndex__MethodInfo); DO_APP_FUNC(0x01AF3600, void, TextElementEnumerator_Reset, (TextElementEnumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x01AF3630, void, TextElementEnumerator__ctor_1, (TextElementEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4088, TextElementEnumerator__ctor_1__MethodInfo); DO_APP_FUNC(0x01AF3660, TextInfo *, TextInfo_get_Invariant, (MethodInfo * method)); DO_APP_FUNC(0x01AF3770, void, TextInfo__ctor, (TextInfo * __this, CultureData * cultureData, MethodInfo * method)); DO_APP_FUNC(0x01AF38A0, void, TextInfo_OnDeserializing, (TextInfo * __this, StreamingContext ctx, MethodInfo * method)); @@ -11004,15 +12187,20 @@ DO_APP_FUNC(0x003BB330, String *, TextInfo_get_CultureName, (TextInfo * __this, DO_APP_FUNC(0x003BCC40, bool, TextInfo_get_IsReadOnly, (TextInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AF40D0, Object *, TextInfo_Clone, (TextInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AF4150, TextInfo *, TextInfo_ReadOnly, (TextInfo * textInfo, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4048, TextInfo_ReadOnly__MethodInfo); DO_APP_FUNC(0x01AF4240, void, TextInfo_VerifyWritable, (TextInfo * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4050, TextInfo_VerifyWritable__MethodInfo); DO_APP_FUNC(0x003BCC50, void, TextInfo_SetReadOnlyState, (TextInfo * __this, bool readOnly, MethodInfo * method)); DO_APP_FUNC(0x01AF42C0, String *, TextInfo_get_ListSeparator, (TextInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AF4340, void, TextInfo_set_ListSeparator, (TextInfo * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4058, TextInfo_set_ListSeparator__MethodInfo); DO_APP_FUNC(0x01AF4480, uint16_t, TextInfo_ToLower, (TextInfo * __this, uint16_t c, MethodInfo * method)); DO_APP_FUNC(0x01AF44E0, String *, TextInfo_ToLower_1, (TextInfo * __this, String * str, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4060, TextInfo_ToLower_1__MethodInfo); DO_APP_FUNC(0x01AF4610, uint16_t, TextInfo_ToLowerAsciiInvariant, (uint16_t c, MethodInfo * method)); DO_APP_FUNC(0x01AF4630, uint16_t, TextInfo_ToUpper, (TextInfo * __this, uint16_t c, MethodInfo * method)); DO_APP_FUNC(0x01AF4690, String *, TextInfo_ToUpper_1, (TextInfo * __this, String * str, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4068, TextInfo_ToUpper_1__MethodInfo); DO_APP_FUNC(0x01AF47C0, uint16_t, TextInfo_ToUpperAsciiInvariant, (uint16_t c, MethodInfo * method)); DO_APP_FUNC(0x01AF47E0, bool, TextInfo_IsAscii, (uint16_t c, MethodInfo * method)); DO_APP_FUNC(0x01AF47F0, bool, TextInfo_get_IsAsciiCasingSameAsInvariant, (TextInfo * __this, MethodInfo * method)); @@ -11020,14 +12208,16 @@ DO_APP_FUNC(0x01AF4940, bool, TextInfo_Equals, (TextInfo * __this, Object * obj, DO_APP_FUNC(0x01AF4A10, int32_t, TextInfo_GetHashCode, (TextInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AF4A40, String *, TextInfo_ToString, (TextInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AF4AA0, String *, TextInfo_ToTitleCase, (TextInfo * __this, String * str, MethodInfo * method)); -DO_APP_FUNC(0x01AF4F90, int32_t, TextInfo_AddNonLetter, (StringBuilder * result, String * input, int32_t inputIndex, int32_t charLen, MethodInfo * method)); -DO_APP_FUNC(0x01AF5050, int32_t, TextInfo_AddTitlecaseLetter, (TextInfo * __this, StringBuilder * result, String * input, int32_t inputIndex, int32_t charLen, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4030, TextInfo_ToTitleCase__MethodInfo); +DO_APP_FUNC(0x01AF4F90, int32_t, TextInfo_AddNonLetter, (StringBuilder * * result, String * * input, int32_t inputIndex, int32_t charLen, MethodInfo * method)); +DO_APP_FUNC(0x01AF5050, int32_t, TextInfo_AddTitlecaseLetter, (TextInfo * __this, StringBuilder * * result, String * * input, int32_t inputIndex, int32_t charLen, MethodInfo * method)); DO_APP_FUNC(0x01AF5270, bool, TextInfo_IsWordSeparator, (UnicodeCategory__Enum category, MethodInfo * method)); DO_APP_FUNC(0x01AF5290, bool, TextInfo_IsLetterCategory, (UnicodeCategory__Enum uc, MethodInfo * method)); DO_APP_FUNC(0x01AF52A0, bool, TextInfo_get_IsRightToLeft, (TextInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01AF3B10, void, TextInfo_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization, (TextInfo * __this, Object * sender, MethodInfo * method)); DO_APP_FUNC(0x01AF52C0, int32_t, TextInfo_GetCaseInsensitiveHashCode, (TextInfo * __this, String * str, MethodInfo * method)); DO_APP_FUNC(0x01AF52E0, int32_t, TextInfo_GetCaseInsensitiveHashCode_1, (TextInfo * __this, String * str, bool forceRandomizedHashing, int64_t additionalEntropy, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4038, TextInfo_GetCaseInsensitiveHashCode_1__MethodInfo); DO_APP_FUNC(0x01AF54C0, int32_t, TextInfo_GetInvariantCaseInsensitiveHashCode, (TextInfo * __this, String * str, MethodInfo * method)); DO_APP_FUNC(0x01AF55C0, String *, TextInfo_ToUpperInternal, (TextInfo * __this, String * str, MethodInfo * method)); DO_APP_FUNC(0x01AF56A0, String *, TextInfo_ToLowerInternal, (TextInfo * __this, String * str, MethodInfo * method)); @@ -11038,6 +12228,7 @@ DO_APP_FUNC(0x01AF63D0, void, TextInfo_ToLowerAsciiInvariant_1, (TextInfo * __th DO_APP_FUNC(0x01AF6480, void, TextInfo_ToUpperAsciiInvariant_1, (TextInfo * __this, ReadOnlySpan_1_Char_ source, Span_1_Char_ destination, MethodInfo * method)); DO_APP_FUNC(0x01AF6530, void, TextInfo_ChangeCase, (TextInfo * __this, ReadOnlySpan_1_Char_ source, Span_1_Char_ destination, bool toUpper, MethodInfo * method)); DO_APP_FUNC(0x01AF6660, void, TextInfo__ctor_1, (TextInfo * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB3FF0, TextInfo__ctor_1__MethodInfo); DO_APP_FUNC(0x01AF6690, DateTime, ThaiBuddhistCalendar_get_MinSupportedDateTime, (ThaiBuddhistCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x01AF66F0, DateTime, ThaiBuddhistCalendar_get_MaxSupportedDateTime, (ThaiBuddhistCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x007205E0, CalendarAlgorithmType__Enum, ThaiBuddhistCalendar_get_AlgorithmType, (ThaiBuddhistCalendar * __this, MethodInfo * method)); @@ -11063,7 +12254,9 @@ DO_APP_FUNC(0x01AE89B0, DateTime, ThaiBuddhistCalendar_ToDateTime, (ThaiBuddhist DO_APP_FUNC(0x01AE8BA0, Int32__Array *, ThaiBuddhistCalendar_get_Eras, (ThaiBuddhistCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x01AF6860, int32_t, ThaiBuddhistCalendar_get_TwoDigitYearMax, (ThaiBuddhistCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x01AF68D0, void, ThaiBuddhistCalendar_set_TwoDigitYearMax, (ThaiBuddhistCalendar * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4000, ThaiBuddhistCalendar_set_TwoDigitYearMax__MethodInfo); DO_APP_FUNC(0x01AF6A30, int32_t, ThaiBuddhistCalendar_ToFourDigitYear, (ThaiBuddhistCalendar * __this, int32_t year, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4008, ThaiBuddhistCalendar_ToFourDigitYear__MethodInfo); DO_APP_FUNC(0x01AF6AF0, void, ThaiBuddhistCalendar__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01AF6C60, UmAlQuraCalendar_DateMapping__Array *, UmAlQuraCalendar_InitDateMapping, (MethodInfo * method)); DO_APP_FUNC(0x01AF6E40, DateTime, UmAlQuraCalendar_get_MinSupportedDateTime, (UmAlQuraCalendar * __this, MethodInfo * method)); @@ -11073,15 +12266,21 @@ DO_APP_FUNC(0x01AD0400, void, UmAlQuraCalendar__ctor, (UmAlQuraCalendar * __this DO_APP_FUNC(0x01AA4150, int32_t, UmAlQuraCalendar_get_BaseCalendarID, (UmAlQuraCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x01AF6F00, int32_t, UmAlQuraCalendar_get_ID, (UmAlQuraCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x01AF6F10, int32_t, UmAlQuraCalendar_get_DaysInYearBeforeMinSupportedYear, (UmAlQuraCalendar * __this, MethodInfo * method)); -DO_APP_FUNC(0x01AF6F20, void, UmAlQuraCalendar_ConvertHijriToGregorian, (int32_t HijriYear, int32_t HijriMonth, int32_t HijriDay, int32_t yg, int32_t mg, int32_t dg, MethodInfo * method)); +DO_APP_FUNC(0x01AF6F20, void, UmAlQuraCalendar_ConvertHijriToGregorian, (int32_t HijriYear, int32_t HijriMonth, int32_t HijriDay, int32_t * yg, int32_t * mg, int32_t * dg, MethodInfo * method)); DO_APP_FUNC(0x01AF7190, int64_t, UmAlQuraCalendar_GetAbsoluteDateUmAlQura, (int32_t year, int32_t month, int32_t day, MethodInfo * method)); DO_APP_FUNC(0x01AF7260, void, UmAlQuraCalendar_CheckTicksRange, (int64_t ticks, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB3FE0, UmAlQuraCalendar_CheckTicksRange__MethodInfo); DO_APP_FUNC(0x01AF74F0, void, UmAlQuraCalendar_CheckEraRange, (int32_t era, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB3FE8, UmAlQuraCalendar_CheckEraRange__MethodInfo); DO_APP_FUNC(0x01AF7580, void, UmAlQuraCalendar_CheckYearRange, (int32_t year, int32_t era, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB3FA8, UmAlQuraCalendar_CheckYearRange__MethodInfo); DO_APP_FUNC(0x01AF7750, void, UmAlQuraCalendar_CheckYearMonthRange, (int32_t year, int32_t month, int32_t era, MethodInfo * method)); -DO_APP_FUNC(0x01AF7830, void, UmAlQuraCalendar_ConvertGregorianToHijri, (DateTime time, int32_t HijriYear, int32_t HijriMonth, int32_t HijriDay, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB3FB0, UmAlQuraCalendar_CheckYearMonthRange__MethodInfo); +DO_APP_FUNC(0x01AF7830, void, UmAlQuraCalendar_ConvertGregorianToHijri, (DateTime time, int32_t * HijriYear, int32_t * HijriMonth, int32_t * HijriDay, MethodInfo * method)); DO_APP_FUNC(0x01AF7C50, int32_t, UmAlQuraCalendar_GetDatePart, (UmAlQuraCalendar * __this, DateTime time, int32_t part, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB3FB8, UmAlQuraCalendar_GetDatePart__MethodInfo); DO_APP_FUNC(0x01AF7E40, DateTime, UmAlQuraCalendar_AddMonths, (UmAlQuraCalendar * __this, DateTime time, int32_t months, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB3FC0, UmAlQuraCalendar_AddMonths__MethodInfo); DO_APP_FUNC(0x01AD14D0, DateTime, UmAlQuraCalendar_AddYears, (UmAlQuraCalendar * __this, DateTime time, int32_t years, MethodInfo * method)); DO_APP_FUNC(0x01AF8240, int32_t, UmAlQuraCalendar_GetDayOfMonth, (UmAlQuraCalendar * __this, DateTime time, MethodInfo * method)); DO_APP_FUNC(0x01AF8260, DayOfWeek__Enum, UmAlQuraCalendar_GetDayOfWeek, (UmAlQuraCalendar * __this, DateTime time, MethodInfo * method)); @@ -11095,25 +12294,32 @@ DO_APP_FUNC(0x01AF8640, int32_t, UmAlQuraCalendar_GetMonth, (UmAlQuraCalendar * DO_APP_FUNC(0x01AF8660, int32_t, UmAlQuraCalendar_GetMonthsInYear, (UmAlQuraCalendar * __this, int32_t year, int32_t era, MethodInfo * method)); DO_APP_FUNC(0x01AF86D0, int32_t, UmAlQuraCalendar_GetYear, (UmAlQuraCalendar * __this, DateTime time, MethodInfo * method)); DO_APP_FUNC(0x01AF86F0, bool, UmAlQuraCalendar_IsLeapDay, (UmAlQuraCalendar * __this, int32_t year, int32_t month, int32_t day, int32_t era, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB3FA0, UmAlQuraCalendar_IsLeapDay__MethodInfo); DO_APP_FUNC(0x01AF88A0, int32_t, UmAlQuraCalendar_GetLeapMonth, (UmAlQuraCalendar * __this, int32_t year, int32_t era, MethodInfo * method)); DO_APP_FUNC(0x01AF8900, bool, UmAlQuraCalendar_IsLeapMonth, (UmAlQuraCalendar * __this, int32_t year, int32_t month, int32_t era, MethodInfo * method)); DO_APP_FUNC(0x01AF8970, bool, UmAlQuraCalendar_IsLeapYear, (UmAlQuraCalendar * __this, int32_t year, int32_t era, MethodInfo * method)); DO_APP_FUNC(0x01AF89E0, DateTime, UmAlQuraCalendar_ToDateTime, (UmAlQuraCalendar * __this, int32_t year, int32_t month, int32_t day, int32_t hour, int32_t minute, int32_t second, int32_t millisecond, int32_t era, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB3F88, UmAlQuraCalendar_ToDateTime__MethodInfo); DO_APP_FUNC(0x01AE7370, int32_t, UmAlQuraCalendar_get_TwoDigitYearMax, (UmAlQuraCalendar * __this, MethodInfo * method)); DO_APP_FUNC(0x01AF8C70, void, UmAlQuraCalendar_set_TwoDigitYearMax, (UmAlQuraCalendar * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB3F90, UmAlQuraCalendar_set_TwoDigitYearMax__MethodInfo); DO_APP_FUNC(0x01AF8DA0, int32_t, UmAlQuraCalendar_ToFourDigitYear, (UmAlQuraCalendar * __this, int32_t year, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB3F98, UmAlQuraCalendar_ToFourDigitYear__MethodInfo); DO_APP_FUNC(0x01AF8F50, void, UmAlQuraCalendar__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x01AF91A0, void, UmAlQuraCalendar_DateMapping__ctor, (UmAlQuraCalendar_DateMapping__Boxed * __this, int32_t MonthsLengthFlags, int32_t GYear, int32_t GMonth, int32_t GDay, MethodInfo * method)); +DO_APP_FUNC(0x01AF91A0, void, UmAlQuraCalendar_DateMapping__ctor, (UmAlQuraCalendar_DateMapping * __this, int32_t MonthsLengthFlags, int32_t GYear, int32_t GMonth, int32_t GDay, MethodInfo * method)); DO_APP_FUNC(0x01AF9220, int32_t, SortKey_Compare, (SortKey * sortkey1, SortKey * sortkey2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB3F58, SortKey_Compare__MethodInfo); DO_APP_FUNC(0x01AF9440, void, SortKey__ctor, (SortKey * __this, int32_t lcid, String * source, CompareOptions__Enum opt, MethodInfo * method)); DO_APP_FUNC(0x01AF95D0, void, SortKey__ctor_1, (SortKey * __this, int32_t lcid, String * source, Byte__Array * buffer, CompareOptions__Enum opt, int32_t lv1Length, int32_t lv2Length, int32_t lv3Length, int32_t kanaSmallLength, int32_t markTypeLength, int32_t katakanaLength, int32_t kanaWidthLength, int32_t identLength, MethodInfo * method)); DO_APP_FUNC(0x01AF9690, void, SortKey__ctor_2, (SortKey * __this, String * localeName, String * str, CompareOptions__Enum options, Byte__Array * keyData, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB3F68, SortKey__ctor_2__MethodInfo); DO_APP_FUNC(0x003BB3C0, String *, SortKey_get_OriginalString, (SortKey * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Byte__Array *, SortKey_get_KeyData, (SortKey * __this, MethodInfo * method)); DO_APP_FUNC(0x01AF96E0, bool, SortKey_Equals, (SortKey * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01AF9870, int32_t, SortKey_GetHashCode, (SortKey * __this, MethodInfo * method)); DO_APP_FUNC(0x01AF98E0, String *, SortKey_ToString, (SortKey * __this, MethodInfo * method)); DO_APP_FUNC(0x01AF9B50, void, SortKey__ctor_3, (SortKey * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB3F80, SortKey__ctor_3__MethodInfo); DO_APP_FUNC(0x003C74A0, void, CultureData__ctor, (CultureData * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x01AF9B80, CultureData *, CultureData_get_Invariant, (MethodInfo * method)); DO_APP_FUNC(0x01AFA3A0, CultureData *, CultureData_GetCultureData, (String * cultureName, bool useUserOverride, MethodInfo * method)); @@ -11171,7 +12377,7 @@ DO_APP_FUNC(0x01AFB3E0, int32_t, CultureData_strlen, (uint8_t * s, MethodInfo * DO_APP_FUNC(0x01AFB400, String *, CultureData_idx2string, (uint8_t * data, int32_t idx, MethodInfo * method)); DO_APP_FUNC(0x01AFB470, Int32__Array *, CultureData_create_group_sizes_array, (CultureData * __this, int32_t gs0, int32_t gs1, MethodInfo * method)); DO_APP_FUNC(0x01AFB520, void, CultureData_GetNFIValues, (CultureData * __this, NumberFormatInfo * nfi, MethodInfo * method)); -DO_APP_FUNC(0x01AFBDC0, uint8_t *, CultureData_fill_number_data, (int32_t index, CultureData_NumberFormatEntryManaged nfe, MethodInfo * method)); +DO_APP_FUNC(0x01AFBDC0, uint8_t *, CultureData_fill_number_data, (int32_t index, CultureData_NumberFormatEntryManaged * nfe, MethodInfo * method)); DO_APP_FUNC(0x01AFBE80, void, CodePageDataItem__ctor, (CodePageDataItem * __this, int32_t dataIndex, MethodInfo * method)); DO_APP_FUNC(0x01AFBF40, String *, CodePageDataItem_CreateString, (String * pStrings, uint32_t index, MethodInfo * method)); DO_APP_FUNC(0x01AFC090, String *, CodePageDataItem_get_WebName, (CodePageDataItem * __this, MethodInfo * method)); @@ -11185,8 +12391,10 @@ DO_APP_FUNC(0x01AFC540, InternalEncodingDataItem, EncodingTable_ENC, (String * n DO_APP_FUNC(0x01AFC5B0, InternalCodePageDataItem, EncodingTable_MapCodePageDataItem, (uint16_t cp, uint16_t fcp, String * names, uint32_t flags, MethodInfo * method)); DO_APP_FUNC(0x01AFC620, void, EncodingTable__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01B05C40, int32_t, EncodingTable_internalGetCodePageFromName, (String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB3178, EncodingTable_internalGetCodePageFromName__MethodInfo); DO_APP_FUNC(0x01B05FF0, EncodingInfo__Array *, EncodingTable_GetEncodings, (MethodInfo * method)); DO_APP_FUNC(0x01B06400, int32_t, EncodingTable_GetCodePageFromName, (String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB3198, EncodingTable_GetCodePageFromName__MethodInfo); DO_APP_FUNC(0x01B067C0, CodePageDataItem *, EncodingTable_GetCodePageDataItem, (int32_t codepage, MethodInfo * method)); DO_APP_FUNC(0x01B06BD0, void, TextInfoToUpperData__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01B07130, void, TextInfoToLowerData__cctor, (MethodInfo * method)); @@ -11224,14 +12432,17 @@ DO_APP_FUNC(0x01B09CE0, CultureInfo__Array *, CultureInfo_GetCultures, (CultureT DO_APP_FUNC(0x01B0A0E0, CultureInfo_Data, CultureInfo_GetTextInfoData, (CultureInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD70, int32_t, CultureInfo_GetHashCode, (CultureInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01B0A100, CultureInfo *, CultureInfo_ReadOnly, (CultureInfo * ci, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2F30, CultureInfo_ReadOnly__MethodInfo); DO_APP_FUNC(0x003CD530, String *, CultureInfo_ToString, (CultureInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01B0A3A0, CompareInfo *, CultureInfo_get_CompareInfo, (CultureInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01B0A680, bool, CultureInfo_get_IsNeutralCulture, (CultureInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CultureInfo_CheckNeutral, (CultureInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01B0A6C0, NumberFormatInfo *, CultureInfo_get_NumberFormat, (CultureInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01B0A7A0, void, CultureInfo_set_NumberFormat, (CultureInfo * __this, NumberFormatInfo * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2F08, CultureInfo_set_NumberFormat__MethodInfo); DO_APP_FUNC(0x01B0A920, DateTimeFormatInfo *, CultureInfo_get_DateTimeFormat, (CultureInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01B0AB30, void, CultureInfo_set_DateTimeFormat, (CultureInfo * __this, DateTimeFormatInfo * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2F18, CultureInfo_set_DateTimeFormat__MethodInfo); DO_APP_FUNC(0x01B0ACB0, String *, CultureInfo_get_DisplayName, (CultureInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01B0ACD0, String *, CultureInfo_get_EnglishName, (CultureInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01B0AD40, CultureInfo *, CultureInfo_get_InstalledUICulture, (MethodInfo * method)); @@ -11247,21 +12458,30 @@ DO_APP_FUNC(0x01B0B5D0, TextInfo *, CultureInfo_CreateTextInfo, (CultureInfo * _ DO_APP_FUNC(0x01B0B650, void, CultureInfo__ctor, (CultureInfo * __this, int32_t culture, MethodInfo * method)); DO_APP_FUNC(0x01B0B670, void, CultureInfo__ctor_1, (CultureInfo * __this, int32_t culture, bool useUserOverride, MethodInfo * method)); DO_APP_FUNC(0x01B0B690, void, CultureInfo__ctor_2, (CultureInfo * __this, int32_t culture, bool useUserOverride, bool read_only, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2ED8, CultureInfo__ctor_2__MethodInfo); DO_APP_FUNC(0x01B0BA70, void, CultureInfo__ctor_3, (CultureInfo * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x01B0BA90, void, CultureInfo__ctor_4, (CultureInfo * __this, String * name, bool useUserOverride, MethodInfo * method)); DO_APP_FUNC(0x01B0BAB0, void, CultureInfo__ctor_5, (CultureInfo * __this, String * name, bool useUserOverride, bool read_only, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2F00, CultureInfo__ctor_5__MethodInfo); DO_APP_FUNC(0x01B0BE30, void, CultureInfo__ctor_6, (CultureInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01B0BE40, void, CultureInfo_insert_into_shared_tables, (CultureInfo * c, MethodInfo * method)); DO_APP_FUNC(0x01B0C140, CultureInfo *, CultureInfo_GetCultureInfo, (int32_t culture, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2EB0, CultureInfo_GetCultureInfo__MethodInfo); DO_APP_FUNC(0x01B0C490, CultureInfo *, CultureInfo_GetCultureInfo_1, (String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2EC0, CultureInfo_GetCultureInfo_1__MethodInfo); DO_APP_FUNC(0x01B0C7E0, CultureInfo *, CultureInfo_GetCultureInfo_2, (String * name, String * altName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2E38, CultureInfo_GetCultureInfo_2__MethodInfo); DO_APP_FUNC(0x01B0C8F0, CultureInfo *, CultureInfo_GetCultureInfoByIetfLanguageTag, (String * name, MethodInfo * method)); DO_APP_FUNC(0x01B0CA50, CultureInfo *, CultureInfo_CreateCulture, (String * name, bool reference, MethodInfo * method)); DO_APP_FUNC(0x01B0CAE0, CultureInfo *, CultureInfo_CreateSpecificCulture, (String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2E40, CultureInfo_CreateSpecificCulture__MethodInfo); DO_APP_FUNC(0x01B0CE40, bool, CultureInfo_ConstructLocaleFromName, (CultureInfo * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x01B0CEF0, CultureInfo *, CultureInfo_CreateSpecificCultureFromNeutral, (String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2B20, CultureInfo_CreateSpecificCultureFromNeutral__MethodInfo); DO_APP_FUNC(0x01B10120, int32_t, CultureInfo_get_CalendarType, (CultureInfo * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2B30, CultureInfo_get_CalendarType__MethodInfo); DO_APP_FUNC(0x01B101C0, Calendar *, CultureInfo_CreateCalendar, (int32_t calendarType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2A88, CultureInfo_CreateCalendar__MethodInfo); DO_APP_FUNC(0x01B10410, Exception *, CultureInfo_CreateNotFoundException, (String * name, MethodInfo * method)); DO_APP_FUNC(0x01B104D0, CultureInfo *, CultureInfo_get_DefaultThreadCurrentCulture, (MethodInfo * method)); DO_APP_FUNC(0x01B10530, void, CultureInfo_set_DefaultThreadCurrentCulture, (CultureInfo * value, MethodInfo * method)); @@ -11273,11 +12493,14 @@ DO_APP_FUNC(0x01B10790, CultureInfo *, CultureInfo_get_UserDefaultCulture, (Meth DO_APP_FUNC(0x01A4E190, void, CultureInfo_InitializeUserPreferredCultureInfoInAppX, (CultureInfo_OnCultureInfoChangedDelegate * onCultureInfoChangedInAppX, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CultureInfo_SetUserPreferredCultureInfoInAppX, (String * name, MethodInfo * method)); DO_APP_FUNC(0x01B107E0, void, CultureInfo_OnCultureInfoChangedInAppX, (String * language, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2A78, CultureInfo_OnCultureInfoChangedInAppX__MethodInfo); DO_APP_FUNC(0x01B10990, CultureInfo *, CultureInfo_GetCultureInfoForUserPreferredLanguageInAppX, (MethodInfo * method)); DO_APP_FUNC(0x01B10A90, void, CultureInfo_SetCultureInfoForUserPreferredLanguageInAppX, (CultureInfo * cultureInfo, MethodInfo * method)); DO_APP_FUNC(0x01B10C10, void, CultureInfo_CheckDomainSafetyObject, (Object * obj, Object * container, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2A60, CultureInfo_CheckDomainSafetyObject__MethodInfo); DO_APP_FUNC(0x01B10E10, bool, CultureInfo_get_HasInvariantCultureName, (CultureInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01B10F20, bool, CultureInfo_VerifyCultureName, (String * cultureName, bool throwException, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2A70, CultureInfo_VerifyCultureName__MethodInfo); DO_APP_FUNC(0x01B110A0, bool, CultureInfo_VerifyCultureName_1, (CultureInfo * culture, bool throwException, MethodInfo * method)); DO_APP_FUNC(0x01B11140, void, CultureInfo__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003EE8E0, void, CultureInfo_OnCultureInfoChangedDelegate__ctor, (CultureInfo_OnCultureInfoChangedDelegate * __this, Object * object, void * method_1, MethodInfo * method)); @@ -11292,30 +12515,48 @@ DO_APP_FUNC(0x00424C00, void, IdnMapping_set_UseStd3AsciiRules, (IdnMapping * __ DO_APP_FUNC(0x01B11410, bool, IdnMapping_Equals, (IdnMapping * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x01B11490, int32_t, IdnMapping_GetHashCode, (IdnMapping * __this, MethodInfo * method)); DO_APP_FUNC(0x01B114B0, String *, IdnMapping_GetAscii, (IdnMapping * __this, String * unicode, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCF70, IdnMapping_GetAscii__MethodInfo); DO_APP_FUNC(0x01B11590, String *, IdnMapping_GetAscii_1, (IdnMapping * __this, String * unicode, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCF68, IdnMapping_GetAscii_1__MethodInfo); DO_APP_FUNC(0x01B11610, String *, IdnMapping_GetAscii_2, (IdnMapping * __this, String * unicode, int32_t index, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCF60, IdnMapping_GetAscii_2__MethodInfo); DO_APP_FUNC(0x01B11740, String *, IdnMapping_Convert, (IdnMapping * __this, String * input, int32_t index, int32_t count, bool toAscii, MethodInfo * method)); DO_APP_FUNC(0x01B11B40, String *, IdnMapping_ToAscii, (IdnMapping * __this, String * s, int32_t offset, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCF30, IdnMapping_ToAscii__MethodInfo); DO_APP_FUNC(0x01B11FE0, void, IdnMapping_VerifyLength, (IdnMapping * __this, String * s, int32_t offset, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCFD0, IdnMapping_VerifyLength__MethodInfo); DO_APP_FUNC(0x01B12130, String *, IdnMapping_NamePrep, (IdnMapping * __this, String * s, int32_t offset, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCFB8, IdnMapping_NamePrep__MethodInfo); DO_APP_FUNC(0x01B12280, void, IdnMapping_VerifyProhibitedCharacters, (IdnMapping * __this, String * s, int32_t offset, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCFA8, IdnMapping_VerifyProhibitedCharacters__MethodInfo); DO_APP_FUNC(0x01B124E0, void, IdnMapping_VerifyStd3AsciiRules, (IdnMapping * __this, String * s, int32_t offset, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCF98, IdnMapping_VerifyStd3AsciiRules__MethodInfo); DO_APP_FUNC(0x01B12770, String *, IdnMapping_GetUnicode, (IdnMapping * __this, String * ascii, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCF80, IdnMapping_GetUnicode__MethodInfo); DO_APP_FUNC(0x01B12850, String *, IdnMapping_GetUnicode_1, (IdnMapping * __this, String * ascii, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCED0, IdnMapping_GetUnicode_1__MethodInfo); DO_APP_FUNC(0x01B128D0, String *, IdnMapping_GetUnicode_2, (IdnMapping * __this, String * ascii, int32_t index, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCEC8, IdnMapping_GetUnicode_2__MethodInfo); DO_APP_FUNC(0x01B12A00, String *, IdnMapping_ToUnicode, (IdnMapping * __this, String * s, int32_t offset, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCEB0, IdnMapping_ToUnicode__MethodInfo); DO_APP_FUNC(0x01B12DE0, void, Bootstring__ctor, (Bootstring * __this, uint16_t delimiter, int32_t baseNum, int32_t tmin, int32_t tmax, int32_t skew, int32_t damp, int32_t initialBias, int32_t initialN, MethodInfo * method)); DO_APP_FUNC(0x01B12E10, String *, Bootstring_Encode, (Bootstring * __this, String * s, int32_t offset, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCEA8, Bootstring_Encode__MethodInfo); DO_APP_FUNC(0x01B132C0, uint16_t, Bootstring_EncodeDigit, (Bootstring * __this, int32_t d, MethodInfo * method)); DO_APP_FUNC(0x01B132E0, int32_t, Bootstring_DecodeDigit, (Bootstring * __this, uint16_t c, MethodInfo * method)); DO_APP_FUNC(0x01B13310, int32_t, Bootstring_Adapt, (Bootstring * __this, int32_t delta, int32_t numPoints, bool firstTime, MethodInfo * method)); DO_APP_FUNC(0x01B13390, String *, Bootstring_Decode, (Bootstring * __this, String * s, int32_t offset, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCE98, Bootstring_Decode__MethodInfo); DO_APP_FUNC(0x01B13650, void, Punycode__ctor, (Punycode * __this, MethodInfo * method)); DO_APP_FUNC(0x01B13690, RegionInfo *, RegionInfo_get_CurrentRegion, (MethodInfo * method)); DO_APP_FUNC(0x01B137F0, void, RegionInfo__ctor, (RegionInfo * __this, int32_t culture, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCF18, RegionInfo__ctor__MethodInfo); DO_APP_FUNC(0x01B13980, void, RegionInfo__ctor_1, (RegionInfo * __this, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCF10, RegionInfo__ctor_1__MethodInfo); DO_APP_FUNC(0x01B13B60, void, RegionInfo__ctor_2, (RegionInfo * __this, CultureInfo * ci, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCE70, RegionInfo__ctor_2__MethodInfo); DO_APP_FUNC(0x01B13FF0, bool, RegionInfo_GetByTerritory, (RegionInfo * __this, CultureInfo * ci, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCE60, RegionInfo_GetByTerritory__MethodInfo); DO_APP_FUNC(0x01B140B0, bool, RegionInfo_construct_internal_region_from_name, (RegionInfo * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x003C7420, String *, RegionInfo_get_CurrencyEnglishName, (RegionInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7390, String *, RegionInfo_get_CurrencySymbol, (RegionInfo * __this, MethodInfo * method)); @@ -11341,17 +12582,19 @@ DO_APP_FUNC(0x003AE050, void, DebuggerHiddenAttribute__ctor, (DebuggerHiddenAttr DO_APP_FUNC(0x003AE050, void, DebuggerNonUserCodeAttribute__ctor, (DebuggerNonUserCodeAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, DebuggableAttribute__ctor, (DebuggableAttribute * __this, DebuggableAttribute_DebuggingModes__Enum modes, MethodInfo * method)); DO_APP_FUNC(0x01B144E0, void, DebuggerBrowsableAttribute__ctor, (DebuggerBrowsableAttribute * __this, DebuggerBrowsableState__Enum state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCE48, DebuggerBrowsableAttribute__ctor__MethodInfo); DO_APP_FUNC(0x01B14550, void, DebuggerTypeProxyAttribute__ctor, (DebuggerTypeProxyAttribute * __this, Type * type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCE90, DebuggerTypeProxyAttribute__ctor__MethodInfo); DO_APP_FUNC(0x01B14660, void, DebuggerDisplayAttribute__ctor, (DebuggerDisplayAttribute * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, DebuggerDisplayAttribute_set_Name, (DebuggerDisplayAttribute * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x003BCDE0, void, DebuggerDisplayAttribute_set_Type, (DebuggerDisplayAttribute * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Debugger_Break, (MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, Debugger_IsLogging, (MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Debugger_Log_icall, (int32_t level, String * category, String * message, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Debugger_Log_icall, (int32_t level, String * * category, String * * message, MethodInfo * method)); DO_APP_FUNC(0x01B14820, void, Debugger_Log, (int32_t level, String * category, String * message, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Debugger_NotifyOfCrossThreadDependency, (MethodInfo * method)); DO_APP_FUNC(0x01B14870, void, Debugger__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x01B14920, bool, StackFrame_get_frame_info, (int32_t skip, bool needFileInfo, MethodBase * method_1, int32_t iloffset, int32_t native_offset, String * file, int32_t line, int32_t column, MethodInfo * method)); +DO_APP_FUNC(0x01B14920, bool, StackFrame_get_frame_info, (int32_t skip, bool needFileInfo, MethodBase * * method_1, int32_t * iloffset, int32_t * native_offset, String * * file, int32_t * line, int32_t * column, MethodInfo * method)); DO_APP_FUNC(0x01B14930, void, StackFrame__ctor, (StackFrame * __this, MethodInfo * method)); DO_APP_FUNC(0x01B14980, void, StackFrame__ctor_1, (StackFrame * __this, int32_t skipFrames, MethodInfo * method)); DO_APP_FUNC(0x01B149D0, void, StackFrame__ctor_2, (StackFrame * __this, int32_t skipFrames, bool fNeedFileInfo, MethodInfo * method)); @@ -11370,16 +12613,18 @@ DO_APP_FUNC(0x01B14CD0, void, StackTrace__ctor, (StackTrace * __this, MethodInfo DO_APP_FUNC(0x01B14CE0, void, StackTrace__ctor_1, (StackTrace * __this, bool fNeedFileInfo, MethodInfo * method)); DO_APP_FUNC(0x01B14CF0, void, StackTrace__ctor_2, (StackTrace * __this, int32_t skipFrames, bool fNeedFileInfo, MethodInfo * method)); DO_APP_FUNC(0x01B14D00, void, StackTrace_init_frames, (StackTrace * __this, int32_t skipFrames, bool fNeedFileInfo, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCDA0, StackTrace_init_frames__MethodInfo); DO_APP_FUNC(0x01B14F80, StackFrame__Array *, StackTrace_get_trace, (Exception * e, int32_t skipFrames, bool fNeedFileInfo, MethodInfo * method)); DO_APP_FUNC(0x01B14F90, void, StackTrace__ctor_3, (StackTrace * __this, Exception * e, bool fNeedFileInfo, MethodInfo * method)); DO_APP_FUNC(0x01B14FB0, void, StackTrace__ctor_4, (StackTrace * __this, Exception * e, int32_t skipFrames, bool fNeedFileInfo, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCD98, StackTrace__ctor_4__MethodInfo); DO_APP_FUNC(0x01B15150, int32_t, StackTrace_get_FrameCount, (StackTrace * __this, MethodInfo * method)); DO_APP_FUNC(0x01B15170, StackFrame *, StackTrace_GetFrame, (StackTrace * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01B151E0, StackFrame__Array *, StackTrace_GetFrames, (StackTrace * __this, MethodInfo * method)); DO_APP_FUNC(0x01B153A0, String *, StackTrace_GetAotId, (MethodInfo * method)); -DO_APP_FUNC(0x01B15450, bool, StackTrace_AddFrames, (StackTrace * __this, StringBuilder * sb, bool separator, bool isAsync, MethodInfo * method)); -DO_APP_FUNC(0x01B159E0, void, StackTrace_GetFullNameForStackTrace, (StackTrace * __this, StringBuilder * sb, MethodBase * mi, bool needsNewLine, bool skipped, bool isAsync, MethodInfo * method)); -DO_APP_FUNC(0x01B160F0, void, StackTrace_ConvertAsyncStateMachineMethod, (MethodBase * method_1, Type * declaringType, MethodInfo * method)); +DO_APP_FUNC(0x01B15450, bool, StackTrace_AddFrames, (StackTrace * __this, StringBuilder * sb, bool separator, bool * isAsync, MethodInfo * method)); +DO_APP_FUNC(0x01B159E0, void, StackTrace_GetFullNameForStackTrace, (StackTrace * __this, StringBuilder * sb, MethodBase * mi, bool needsNewLine, bool * skipped, bool * isAsync, MethodInfo * method)); +DO_APP_FUNC(0x01B160F0, void, StackTrace_ConvertAsyncStateMachineMethod, (MethodBase * * method_1, Type * * declaringType, MethodInfo * method)); DO_APP_FUNC(0x01B16450, String *, StackTrace_ToString, (StackTrace * __this, MethodInfo * method)); DO_APP_FUNC(0x01B165D0, String *, StackTrace_ToString_1, (StackTrace * __this, StackTrace_TraceFormat__Enum traceFormat, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, EventAttribute__ctor, (EventAttribute * __this, int32_t eventId, MethodInfo * method)); @@ -11404,29 +12649,36 @@ DO_APP_FUNC(0x01B16A00, void, EventSource_WriteEvent_4, (EventSource * __this, i DO_APP_FUNC(0x003AE050, void, EventSource_WriteEvent_5, (EventSource * __this, int32_t eventId, Object__Array * args, MethodInfo * method)); DO_APP_FUNC(0x01B16B80, void, EventSource_WriteEvent_6, (EventSource * __this, int32_t eventId, String * arg1, String * arg2, String * arg3, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, EventSource_WriteEventCore, (EventSource * __this, int32_t eventId, int32_t eventDataCount, EventSource_EventData * data, MethodInfo * method)); -DO_APP_FUNC(0x00A9A2A0, void, EventSource_EventData_set_DataPointer, (EventSource_EventData__Boxed * __this, void * value, MethodInfo * method)); -DO_APP_FUNC(0x018C6CC0, void, EventSource_EventData_set_Size, (EventSource_EventData__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x01B16CA0, void, EventSource_EventData_set_Reserved, (EventSource_EventData__Boxed * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x00A9A2A0, void, EventSource_EventData_set_DataPointer, (EventSource_EventData * __this, void * value, MethodInfo * method)); +DO_APP_FUNC(0x018C6CC0, void, EventSource_EventData_set_Size, (EventSource_EventData * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x01B16CA0, void, EventSource_EventData_set_Reserved, (EventSource_EventData * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, EventSourceAttribute_set_Guid, (EventSourceAttribute * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x003AE960, void, EventSourceAttribute_set_Name, (EventSourceAttribute * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, EventSourceAttribute__ctor, (EventSourceAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NonEventAttribute__ctor, (NonEventAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x01B16CB0, void, Comparer__ctor, (Comparer * __this, CultureInfo * culture, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCD90, Comparer__ctor__MethodInfo); DO_APP_FUNC(0x01B16D80, void, Comparer__ctor_1, (Comparer * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCD18, Comparer__ctor_1__MethodInfo); DO_APP_FUNC(0x01B16F70, void, Comparer_GetObjectData, (Comparer * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCD10, Comparer_GetObjectData__MethodInfo); DO_APP_FUNC(0x01B17020, int32_t, Comparer_Compare, (Comparer * __this, Object * a, Object * b, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCCF8, Comparer_Compare__MethodInfo); DO_APP_FUNC(0x01B171E0, void, Comparer__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x00A76400, void, DictionaryEntry__ctor, (DictionaryEntry__Boxed * __this, Object * key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x00471910, Object *, DictionaryEntry_get_Key, (DictionaryEntry__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, Object *, DictionaryEntry_get_Value, (DictionaryEntry__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A76400, void, DictionaryEntry__ctor, (DictionaryEntry * __this, Object * key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Object *, DictionaryEntry_get_Key, (DictionaryEntry * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, Object *, DictionaryEntry_get_Value, (DictionaryEntry * __this, MethodInfo * method)); DO_APP_FUNC(0x01B17580, bool, HashHelpers_1_IsPrime, (int32_t candidate, MethodInfo * method)); DO_APP_FUNC(0x01B17630, int32_t, HashHelpers_1_GetPrime, (int32_t min, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCD38, HashHelpers_1_GetPrime__MethodInfo); DO_APP_FUNC(0x01B17860, int32_t, HashHelpers_1_ExpandPrime, (int32_t oldSize, MethodInfo * method)); DO_APP_FUNC(0x01B178E0, ConditionalWeakTable_2_System_Object_System_Runtime_Serialization_SerializationInfo_ *, HashHelpers_1_get_SerializationInfoTable, (MethodInfo * method)); DO_APP_FUNC(0x01B17A30, void, HashHelpers_1__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ListDictionaryInternal__ctor, (ListDictionaryInternal * __this, MethodInfo * method)); DO_APP_FUNC(0x01B17B10, Object *, ListDictionaryInternal_get_Item, (ListDictionaryInternal * __this, Object * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCCA8, ListDictionaryInternal_get_Item__MethodInfo); DO_APP_FUNC(0x01B17BF0, void, ListDictionaryInternal_set_Item, (ListDictionaryInternal * __this, Object * key, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCC98, ListDictionaryInternal_set_Item__MethodInfo); DO_APP_FUNC(0x003CD440, int32_t, ListDictionaryInternal_get_Count, (ListDictionaryInternal * __this, MethodInfo * method)); DO_APP_FUNC(0x01B17D70, ICollection *, ListDictionaryInternal_get_Keys, (ListDictionaryInternal * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, ListDictionaryInternal_get_IsReadOnly, (ListDictionaryInternal * __this, MethodInfo * method)); @@ -11435,68 +12687,92 @@ DO_APP_FUNC(0x0041AF00, bool, ListDictionaryInternal_get_IsSynchronized, (ListDi DO_APP_FUNC(0x01B17E20, Object *, ListDictionaryInternal_get_SyncRoot, (ListDictionaryInternal * __this, MethodInfo * method)); DO_APP_FUNC(0x01B17ED0, ICollection *, ListDictionaryInternal_get_Values, (ListDictionaryInternal * __this, MethodInfo * method)); DO_APP_FUNC(0x01B17F80, void, ListDictionaryInternal_Add, (ListDictionaryInternal * __this, Object * key, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCC88, ListDictionaryInternal_Add__MethodInfo); DO_APP_FUNC(0x01B18160, void, ListDictionaryInternal_Clear, (ListDictionaryInternal * __this, MethodInfo * method)); DO_APP_FUNC(0x01B181C0, bool, ListDictionaryInternal_Contains, (ListDictionaryInternal * __this, Object * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCCE8, ListDictionaryInternal_Contains__MethodInfo); DO_APP_FUNC(0x01B182A0, void, ListDictionaryInternal_CopyTo, (ListDictionaryInternal * __this, Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCCE0, ListDictionaryInternal_CopyTo__MethodInfo); DO_APP_FUNC(0x01B185B0, IDictionaryEnumerator *, ListDictionaryInternal_GetEnumerator, (ListDictionaryInternal * __this, MethodInfo * method)); DO_APP_FUNC(0x01B18620, IEnumerator *, ListDictionaryInternal_System_Collections_IEnumerable_GetEnumerator, (ListDictionaryInternal * __this, MethodInfo * method)); DO_APP_FUNC(0x01B18690, void, ListDictionaryInternal_Remove, (ListDictionaryInternal * __this, Object * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCCD0, ListDictionaryInternal_Remove__MethodInfo); DO_APP_FUNC(0x01B187B0, void, ListDictionaryInternal_NodeEnumerator__ctor, (ListDictionaryInternal_NodeEnumerator * __this, ListDictionaryInternal * list, MethodInfo * method)); DO_APP_FUNC(0x01B18890, Object *, ListDictionaryInternal_NodeEnumerator_get_Current, (ListDictionaryInternal_NodeEnumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x01B18960, DictionaryEntry, ListDictionaryInternal_NodeEnumerator_get_Entry, (ListDictionaryInternal_NodeEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCCC8, ListDictionaryInternal_NodeEnumerator_get_Entry__MethodInfo); DO_APP_FUNC(0x01B189F0, Object *, ListDictionaryInternal_NodeEnumerator_get_Key, (ListDictionaryInternal_NodeEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCCC0, ListDictionaryInternal_NodeEnumerator_get_Key__MethodInfo); DO_APP_FUNC(0x01B18A70, Object *, ListDictionaryInternal_NodeEnumerator_get_Value, (ListDictionaryInternal_NodeEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCCB8, ListDictionaryInternal_NodeEnumerator_get_Value__MethodInfo); DO_APP_FUNC(0x01B18AF0, bool, ListDictionaryInternal_NodeEnumerator_MoveNext, (ListDictionaryInternal_NodeEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCC60, ListDictionaryInternal_NodeEnumerator_MoveNext__MethodInfo); DO_APP_FUNC(0x01B18C20, void, ListDictionaryInternal_NodeEnumerator_Reset, (ListDictionaryInternal_NodeEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCC58, ListDictionaryInternal_NodeEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BCCC0, void, ListDictionaryInternal_NodeKeyValueCollection__ctor, (ListDictionaryInternal_NodeKeyValueCollection * __this, ListDictionaryInternal * list, bool isKeys, MethodInfo * method)); DO_APP_FUNC(0x01B18D00, void, ListDictionaryInternal_NodeKeyValueCollection_System_Collections_ICollection_CopyTo, (ListDictionaryInternal_NodeKeyValueCollection * __this, Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCC50, ListDictionaryInternal_NodeKeyValueCollection_System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x01B18F30, int32_t, ListDictionaryInternal_NodeKeyValueCollection_System_Collections_ICollection_get_Count, (ListDictionaryInternal_NodeKeyValueCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, ListDictionaryInternal_NodeKeyValueCollection_System_Collections_ICollection_get_IsSynchronized, (ListDictionaryInternal_NodeKeyValueCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x01B18F70, Object *, ListDictionaryInternal_NodeKeyValueCollection_System_Collections_ICollection_get_SyncRoot, (ListDictionaryInternal_NodeKeyValueCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x01B19030, IEnumerator *, ListDictionaryInternal_NodeKeyValueCollection_System_Collections_IEnumerable_GetEnumerator, (ListDictionaryInternal_NodeKeyValueCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x01B19160, void, ListDictionaryInternal_NodeKeyValueCollection_NodeKeyValueEnumerator__ctor, (ListDictionaryInternal_NodeKeyValueCollection_NodeKeyValueEnumerator * __this, ListDictionaryInternal * list, bool isKeys, MethodInfo * method)); DO_APP_FUNC(0x01B19250, Object *, ListDictionaryInternal_NodeKeyValueCollection_NodeKeyValueEnumerator_get_Current, (ListDictionaryInternal_NodeKeyValueCollection_NodeKeyValueEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCC40, ListDictionaryInternal_NodeKeyValueCollection_NodeKeyValueEnumerator_get_Current__MethodInfo); DO_APP_FUNC(0x01B192E0, bool, ListDictionaryInternal_NodeKeyValueCollection_NodeKeyValueEnumerator_MoveNext, (ListDictionaryInternal_NodeKeyValueCollection_NodeKeyValueEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCC38, ListDictionaryInternal_NodeKeyValueCollection_NodeKeyValueEnumerator_MoveNext__MethodInfo); DO_APP_FUNC(0x01B19410, void, ListDictionaryInternal_NodeKeyValueCollection_NodeKeyValueEnumerator_Reset, (ListDictionaryInternal_NodeKeyValueCollection_NodeKeyValueEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCC30, ListDictionaryInternal_NodeKeyValueCollection_NodeKeyValueEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003AE050, void, ListDictionaryInternal_DictionaryNode__ctor, (ListDictionaryInternal_DictionaryNode * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCE40, void, CompatibleComparer__ctor, (CompatibleComparer * __this, IHashCodeProvider * hashCodeProvider, IComparer * comparer, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, IHashCodeProvider *, CompatibleComparer_get_HashCodeProvider, (CompatibleComparer * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, IComparer *, CompatibleComparer_get_Comparer, (CompatibleComparer * __this, MethodInfo * method)); DO_APP_FUNC(0x01B194F0, bool, CompatibleComparer_Equals, (CompatibleComparer * __this, Object * a, Object * b, MethodInfo * method)); DO_APP_FUNC(0x01B19620, int32_t, CompatibleComparer_Compare, (CompatibleComparer * __this, Object * a, Object * b, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCC28, CompatibleComparer_Compare__MethodInfo); DO_APP_FUNC(0x01B19790, int32_t, CompatibleComparer_GetHashCode, (CompatibleComparer * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCC18, CompatibleComparer_GetHashCode__MethodInfo); DO_APP_FUNC(0x01B19860, void, CaseInsensitiveComparer__ctor, (CaseInsensitiveComparer * __this, MethodInfo * method)); DO_APP_FUNC(0x01B19970, void, CaseInsensitiveComparer__ctor_1, (CaseInsensitiveComparer * __this, CultureInfo * culture, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCC80, CaseInsensitiveComparer__ctor_1__MethodInfo); DO_APP_FUNC(0x01B19A40, CaseInsensitiveComparer *, CaseInsensitiveComparer_get_Default, (MethodInfo * method)); DO_APP_FUNC(0x01B19BC0, int32_t, CaseInsensitiveComparer_Compare, (CaseInsensitiveComparer * __this, Object * a, Object * b, MethodInfo * method)); DO_APP_FUNC(0x01B19CD0, void, CaseInsensitiveHashCodeProvider__ctor, (CaseInsensitiveHashCodeProvider * __this, MethodInfo * method)); DO_APP_FUNC(0x01B19DE0, void, CaseInsensitiveHashCodeProvider__ctor_1, (CaseInsensitiveHashCodeProvider * __this, CultureInfo * culture, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCC70, CaseInsensitiveHashCodeProvider__ctor_1__MethodInfo); DO_APP_FUNC(0x01B19EB0, CaseInsensitiveHashCodeProvider *, CaseInsensitiveHashCodeProvider_get_Default, (MethodInfo * method)); DO_APP_FUNC(0x01B19FF0, int32_t, CaseInsensitiveHashCodeProvider_GetHashCode, (CaseInsensitiveHashCodeProvider * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCBD8, CaseInsensitiveHashCodeProvider_GetHashCode__MethodInfo); DO_APP_FUNC(0x01B1A0F0, void, CollectionBase__ctor, (CollectionBase * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, ArrayList *, CollectionBase_get_InnerList, (CollectionBase * __this, MethodInfo * method)); DO_APP_FUNC(0x00A1B820, IList *, CollectionBase_get_List, (CollectionBase * __this, MethodInfo * method)); DO_APP_FUNC(0x01B1A1A0, int32_t, CollectionBase_get_Count, (CollectionBase * __this, MethodInfo * method)); DO_APP_FUNC(0x01B1A1D0, void, CollectionBase_Clear, (CollectionBase * __this, MethodInfo * method)); DO_APP_FUNC(0x01B1A230, void, CollectionBase_RemoveAt, (CollectionBase * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCBD0, CollectionBase_RemoveAt__MethodInfo); DO_APP_FUNC(0x01B1A3D0, bool, CollectionBase_System_Collections_IList_get_IsReadOnly, (CollectionBase * __this, MethodInfo * method)); DO_APP_FUNC(0x01B1A400, bool, CollectionBase_System_Collections_IList_get_IsFixedSize, (CollectionBase * __this, MethodInfo * method)); DO_APP_FUNC(0x01A1E360, bool, CollectionBase_System_Collections_ICollection_get_IsSynchronized, (CollectionBase * __this, MethodInfo * method)); DO_APP_FUNC(0x01B1A430, Object *, CollectionBase_System_Collections_ICollection_get_SyncRoot, (CollectionBase * __this, MethodInfo * method)); DO_APP_FUNC(0x01B1A460, void, CollectionBase_System_Collections_ICollection_CopyTo, (CollectionBase * __this, Array * array, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01B1A490, Object *, CollectionBase_System_Collections_IList_get_Item, (CollectionBase * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCBC8, CollectionBase_System_Collections_IList_get_Item__MethodInfo); DO_APP_FUNC(0x01B1A560, void, CollectionBase_System_Collections_IList_set_Item, (CollectionBase * __this, int32_t index, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCBC0, CollectionBase_System_Collections_IList_set_Item__MethodInfo); DO_APP_FUNC(0x01B1A730, bool, CollectionBase_System_Collections_IList_Contains, (CollectionBase * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01B1A760, int32_t, CollectionBase_System_Collections_IList_Add, (CollectionBase * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01B1A870, void, CollectionBase_System_Collections_IList_Remove, (CollectionBase * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCBB0, CollectionBase_System_Collections_IList_Remove__MethodInfo); DO_APP_FUNC(0x01B1A9D0, int32_t, CollectionBase_System_Collections_IList_IndexOf, (CollectionBase * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01B1AA00, void, CollectionBase_System_Collections_IList_Insert, (CollectionBase * __this, int32_t index, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCBA8, CollectionBase_System_Collections_IList_Insert__MethodInfo); DO_APP_FUNC(0x018F47D0, IEnumerator *, CollectionBase_GetEnumerator, (CollectionBase * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CollectionBase_OnSet, (CollectionBase * __this, int32_t index, Object * oldValue, Object * newValue, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CollectionBase_OnInsert, (CollectionBase * __this, int32_t index, Object * value, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CollectionBase_OnClear, (CollectionBase * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CollectionBase_OnRemove, (CollectionBase * __this, int32_t index, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01B1AB80, void, CollectionBase_OnValidate, (CollectionBase * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCBA0, CollectionBase_OnValidate__MethodInfo); DO_APP_FUNC(0x003AE050, void, CollectionBase_OnSetComplete, (CollectionBase * __this, int32_t index, Object * oldValue, Object * newValue, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CollectionBase_OnInsertComplete, (CollectionBase * __this, int32_t index, Object * value, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CollectionBase_OnClearComplete, (CollectionBase * __this, MethodInfo * method)); @@ -11532,23 +12808,31 @@ DO_APP_FUNC(0x003AE050, void, DictionaryBase__ctor, (DictionaryBase * __this, Me DO_APP_FUNC(0x01B1B420, void, Queue__ctor, (Queue * __this, MethodInfo * method)); DO_APP_FUNC(0x01B1B440, void, Queue__ctor_1, (Queue * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x01B1B450, void, Queue__ctor_2, (Queue * __this, int32_t capacity, float growFactor, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCB98, Queue__ctor_2__MethodInfo); DO_APP_FUNC(0x01B1B610, void, Queue__ctor_3, (Queue * __this, ICollection * col, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCC00, Queue__ctor_3__MethodInfo); DO_APP_FUNC(0x003CC980, int32_t, Queue_get_Count, (Queue * __this, MethodInfo * method)); DO_APP_FUNC(0x01B1B860, Object *, Queue_Clone, (Queue * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, Queue_get_IsSynchronized, (Queue * __this, MethodInfo * method)); DO_APP_FUNC(0x01B1B970, Object *, Queue_get_SyncRoot, (Queue * __this, MethodInfo * method)); DO_APP_FUNC(0x01B1BA20, void, Queue_CopyTo, (Queue * __this, Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCBF8, Queue_CopyTo__MethodInfo); DO_APP_FUNC(0x01B1BC90, void, Queue_Enqueue, (Queue * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x01B1BEA0, IEnumerator *, Queue_GetEnumerator, (Queue * __this, MethodInfo * method)); DO_APP_FUNC(0x01B1BFE0, Object *, Queue_Dequeue, (Queue * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCBE8, Queue_Dequeue__MethodInfo); DO_APP_FUNC(0x01B1C0C0, Object *, Queue_Peek, (Queue * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCBE0, Queue_Peek__MethodInfo); DO_APP_FUNC(0x01B1C160, Object *, Queue_GetElement, (Queue * __this, int32_t i, MethodInfo * method)); DO_APP_FUNC(0x01B1C1A0, void, Queue_SetCapacity, (Queue * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x01B1C2E0, void, Queue_QueueEnumerator__ctor, (Queue_QueueEnumerator * __this, Queue * q, MethodInfo * method)); DO_APP_FUNC(0x01AA70A0, Object *, Queue_QueueEnumerator_Clone, (Queue_QueueEnumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x01B1C3D0, bool, Queue_QueueEnumerator_MoveNext, (Queue_QueueEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCB58, Queue_QueueEnumerator_MoveNext__MethodInfo); DO_APP_FUNC(0x01B1C570, Object *, Queue_QueueEnumerator_get_Current, (Queue_QueueEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCB50, Queue_QueueEnumerator_get_Current__MethodInfo); DO_APP_FUNC(0x01B1C640, void, Queue_QueueEnumerator_Reset, (Queue_QueueEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCB48, Queue_QueueEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x01B1C730, ArrayList *, ReadOnlyCollectionBase_get_InnerList, (ReadOnlyCollectionBase * __this, MethodInfo * method)); DO_APP_FUNC(0x01B1C7F0, int32_t, ReadOnlyCollectionBase_get_Count, (ReadOnlyCollectionBase * __this, MethodInfo * method)); DO_APP_FUNC(0x01B1C830, bool, ReadOnlyCollectionBase_System_Collections_ICollection_get_IsSynchronized, (ReadOnlyCollectionBase * __this, MethodInfo * method)); @@ -11559,9 +12843,12 @@ DO_APP_FUNC(0x003AE050, void, ReadOnlyCollectionBase__ctor, (ReadOnlyCollectionB DO_APP_FUNC(0x01B1C940, void, SortedList__ctor, (SortedList * __this, MethodInfo * method)); DO_APP_FUNC(0x01B1C950, void, SortedList_Init, (SortedList * __this, MethodInfo * method)); DO_APP_FUNC(0x01B1CC30, void, SortedList__ctor_1, (SortedList * __this, int32_t initialCapacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCB38, SortedList__ctor_1__MethodInfo); DO_APP_FUNC(0x01B1CF80, void, SortedList__ctor_2, (SortedList * __this, IComparer * comparer, MethodInfo * method)); DO_APP_FUNC(0x01B1CFF0, void, SortedList_Add, (SortedList * __this, Object * key, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCB30, SortedList_Add__MethodInfo); DO_APP_FUNC(0x01B1D140, void, SortedList_set_Capacity, (SortedList * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCB88, SortedList_set_Capacity__MethodInfo); DO_APP_FUNC(0x003CC980, int32_t, SortedList_get_Count, (SortedList * __this, MethodInfo * method)); DO_APP_FUNC(0x01B1D300, ICollection *, SortedList_get_Keys, (SortedList * __this, MethodInfo * method)); DO_APP_FUNC(0x01B1D320, ICollection *, SortedList_get_Values, (SortedList * __this, MethodInfo * method)); @@ -11575,21 +12862,28 @@ DO_APP_FUNC(0x01B1D500, bool, SortedList_Contains, (SortedList * __this, Object DO_APP_FUNC(0x01B1D500, bool, SortedList_ContainsKey, (SortedList * __this, Object * key, MethodInfo * method)); DO_APP_FUNC(0x01B1D530, bool, SortedList_ContainsValue, (SortedList * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01B1D560, void, SortedList_CopyTo, (SortedList * __this, Array * array, int32_t arrayIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCB78, SortedList_CopyTo__MethodInfo); DO_APP_FUNC(0x01B1D8F0, void, SortedList_EnsureCapacity, (SortedList * __this, int32_t min, MethodInfo * method)); DO_APP_FUNC(0x01B1D940, Object *, SortedList_GetByIndex, (SortedList * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCB70, SortedList_GetByIndex__MethodInfo); DO_APP_FUNC(0x01B1DA00, IEnumerator *, SortedList_System_Collections_IEnumerable_GetEnumerator, (SortedList * __this, MethodInfo * method)); DO_APP_FUNC(0x01B1DAC0, IDictionaryEnumerator *, SortedList_GetEnumerator, (SortedList * __this, MethodInfo * method)); DO_APP_FUNC(0x01B1DB80, Object *, SortedList_GetKey, (SortedList * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCB60, SortedList_GetKey__MethodInfo); DO_APP_FUNC(0x01B1DC40, IList *, SortedList_GetKeyList, (SortedList * __this, MethodInfo * method)); DO_APP_FUNC(0x01B1DD50, IList *, SortedList_GetValueList, (SortedList * __this, MethodInfo * method)); DO_APP_FUNC(0x01B1DE60, Object *, SortedList_get_Item, (SortedList * __this, Object * key, MethodInfo * method)); DO_APP_FUNC(0x01B1DEB0, void, SortedList_set_Item, (SortedList * __this, Object * key, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCAB8, SortedList_set_Item__MethodInfo); DO_APP_FUNC(0x01B1DFF0, int32_t, SortedList_IndexOfKey, (SortedList * __this, Object * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCAB0, SortedList_IndexOfKey__MethodInfo); DO_APP_FUNC(0x01B1E0B0, int32_t, SortedList_IndexOfValue, (SortedList * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01B1E110, void, SortedList_Insert, (SortedList * __this, int32_t index, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01B1E280, void, SortedList_RemoveAt, (SortedList * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCAA8, SortedList_RemoveAt__MethodInfo); DO_APP_FUNC(0x01B1E3B0, void, SortedList_Remove, (SortedList * __this, Object * key, MethodInfo * method)); DO_APP_FUNC(0x01B1E400, SortedList *, SortedList_Synchronized, (SortedList * list, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCA98, SortedList_Synchronized__MethodInfo); DO_APP_FUNC(0x01B1E590, void, SortedList_SyncSortedList__ctor, (SortedList_SyncSortedList * __this, SortedList * list, MethodInfo * method)); DO_APP_FUNC(0x01B1E690, int32_t, SortedList_SyncSortedList_get_Count, (SortedList_SyncSortedList * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7420, Object *, SortedList_SyncSortedList_get_SyncRoot, (SortedList_SyncSortedList * __this, MethodInfo * method)); @@ -11611,17 +12905,24 @@ DO_APP_FUNC(0x01B1F8D0, Object *, SortedList_SyncSortedList_GetKey, (SortedList_ DO_APP_FUNC(0x01B1FA50, IList *, SortedList_SyncSortedList_GetKeyList, (SortedList_SyncSortedList * __this, MethodInfo * method)); DO_APP_FUNC(0x01B1FBC0, IList *, SortedList_SyncSortedList_GetValueList, (SortedList_SyncSortedList * __this, MethodInfo * method)); DO_APP_FUNC(0x01B1FD30, int32_t, SortedList_SyncSortedList_IndexOfKey, (SortedList_SyncSortedList * __this, Object * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCA90, SortedList_SyncSortedList_IndexOfKey__MethodInfo); DO_APP_FUNC(0x01B1FF20, int32_t, SortedList_SyncSortedList_IndexOfValue, (SortedList_SyncSortedList * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01B200A0, void, SortedList_SyncSortedList_RemoveAt, (SortedList_SyncSortedList * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01B20210, void, SortedList_SyncSortedList_Remove, (SortedList_SyncSortedList * __this, Object * key, MethodInfo * method)); DO_APP_FUNC(0x01B20380, void, SortedList_SortedListEnumerator__ctor, (SortedList_SortedListEnumerator * __this, SortedList * sortedList, int32_t index, int32_t count, int32_t getObjRetType, MethodInfo * method)); DO_APP_FUNC(0x01AA70A0, Object *, SortedList_SortedListEnumerator_Clone, (SortedList_SortedListEnumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x01B20410, Object *, SortedList_SortedListEnumerator_get_Key, (SortedList_SortedListEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCB28, SortedList_SortedListEnumerator_get_Key__MethodInfo); DO_APP_FUNC(0x01B204F0, bool, SortedList_SortedListEnumerator_MoveNext, (SortedList_SortedListEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCB20, SortedList_SortedListEnumerator_MoveNext__MethodInfo); DO_APP_FUNC(0x01B20740, DictionaryEntry, SortedList_SortedListEnumerator_get_Entry, (SortedList_SortedListEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCB18, SortedList_SortedListEnumerator_get_Entry__MethodInfo); DO_APP_FUNC(0x01B20830, Object *, SortedList_SortedListEnumerator_get_Current, (SortedList_SortedListEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCB10, SortedList_SortedListEnumerator_get_Current__MethodInfo); DO_APP_FUNC(0x01B20910, Object *, SortedList_SortedListEnumerator_get_Value, (SortedList_SortedListEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCB08, SortedList_SortedListEnumerator_get_Value__MethodInfo); DO_APP_FUNC(0x01B209F0, void, SortedList_SortedListEnumerator_Reset, (SortedList_SortedListEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCB00, SortedList_SortedListEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BCBE0, void, SortedList_KeyList__ctor, (SortedList_KeyList * __this, SortedList * sortedList, MethodInfo * method)); DO_APP_FUNC(0x01142940, int32_t, SortedList_KeyList_get_Count, (SortedList_KeyList * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, SortedList_KeyList_get_IsReadOnly, (SortedList_KeyList * __this, MethodInfo * method)); @@ -11629,16 +12930,24 @@ DO_APP_FUNC(0x0041AEF0, bool, SortedList_KeyList_get_IsFixedSize, (SortedList_Ke DO_APP_FUNC(0x01B20B30, bool, SortedList_KeyList_get_IsSynchronized, (SortedList_KeyList * __this, MethodInfo * method)); DO_APP_FUNC(0x01B20B60, Object *, SortedList_KeyList_get_SyncRoot, (SortedList_KeyList * __this, MethodInfo * method)); DO_APP_FUNC(0x01B20B90, int32_t, SortedList_KeyList_Add, (SortedList_KeyList * __this, Object * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCAF8, SortedList_KeyList_Add__MethodInfo); DO_APP_FUNC(0x01B20BF0, void, SortedList_KeyList_Clear, (SortedList_KeyList * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCAF0, SortedList_KeyList_Clear__MethodInfo); DO_APP_FUNC(0x01B20C50, bool, SortedList_KeyList_Contains, (SortedList_KeyList * __this, Object * key, MethodInfo * method)); DO_APP_FUNC(0x01B20C80, void, SortedList_KeyList_CopyTo, (SortedList_KeyList * __this, Array * array, int32_t arrayIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCAE8, SortedList_KeyList_CopyTo__MethodInfo); DO_APP_FUNC(0x01B20D60, void, SortedList_KeyList_Insert, (SortedList_KeyList * __this, int32_t index, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCAE0, SortedList_KeyList_Insert__MethodInfo); DO_APP_FUNC(0x01B1A9D0, Object *, SortedList_KeyList_get_Item, (SortedList_KeyList * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01B20DC0, void, SortedList_KeyList_set_Item, (SortedList_KeyList * __this, int32_t index, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCAD8, SortedList_KeyList_set_Item__MethodInfo); DO_APP_FUNC(0x01B20E20, IEnumerator *, SortedList_KeyList_GetEnumerator, (SortedList_KeyList * __this, MethodInfo * method)); DO_APP_FUNC(0x01B20F10, int32_t, SortedList_KeyList_IndexOf, (SortedList_KeyList * __this, Object * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCAD0, SortedList_KeyList_IndexOf__MethodInfo); DO_APP_FUNC(0x01B21010, void, SortedList_KeyList_Remove, (SortedList_KeyList * __this, Object * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCA60, SortedList_KeyList_Remove__MethodInfo); DO_APP_FUNC(0x01B21070, void, SortedList_KeyList_RemoveAt, (SortedList_KeyList * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCA58, SortedList_KeyList_RemoveAt__MethodInfo); DO_APP_FUNC(0x003BCBE0, void, SortedList_ValueList__ctor, (SortedList_ValueList * __this, SortedList * sortedList, MethodInfo * method)); DO_APP_FUNC(0x01142940, int32_t, SortedList_ValueList_get_Count, (SortedList_ValueList * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, SortedList_ValueList_get_IsReadOnly, (SortedList_ValueList * __this, MethodInfo * method)); @@ -11646,43 +12955,62 @@ DO_APP_FUNC(0x0041AEF0, bool, SortedList_ValueList_get_IsFixedSize, (SortedList_ DO_APP_FUNC(0x01B20B30, bool, SortedList_ValueList_get_IsSynchronized, (SortedList_ValueList * __this, MethodInfo * method)); DO_APP_FUNC(0x01B20B60, Object *, SortedList_ValueList_get_SyncRoot, (SortedList_ValueList * __this, MethodInfo * method)); DO_APP_FUNC(0x01B210D0, int32_t, SortedList_ValueList_Add, (SortedList_ValueList * __this, Object * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCA50, SortedList_ValueList_Add__MethodInfo); DO_APP_FUNC(0x01B21130, void, SortedList_ValueList_Clear, (SortedList_ValueList * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCA48, SortedList_ValueList_Clear__MethodInfo); DO_APP_FUNC(0x01B21190, bool, SortedList_ValueList_Contains, (SortedList_ValueList * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01B211C0, void, SortedList_ValueList_CopyTo, (SortedList_ValueList * __this, Array * array, int32_t arrayIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCA40, SortedList_ValueList_CopyTo__MethodInfo); DO_APP_FUNC(0x01B212A0, void, SortedList_ValueList_Insert, (SortedList_ValueList * __this, int32_t index, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCA38, SortedList_ValueList_Insert__MethodInfo); DO_APP_FUNC(0x01B21300, Object *, SortedList_ValueList_get_Item, (SortedList_ValueList * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01B21330, void, SortedList_ValueList_set_Item, (SortedList_ValueList * __this, int32_t index, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCA30, SortedList_ValueList_set_Item__MethodInfo); DO_APP_FUNC(0x01B21390, IEnumerator *, SortedList_ValueList_GetEnumerator, (SortedList_ValueList * __this, MethodInfo * method)); DO_APP_FUNC(0x01B21480, int32_t, SortedList_ValueList_IndexOf, (SortedList_ValueList * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01B21510, void, SortedList_ValueList_Remove, (SortedList_ValueList * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCA28, SortedList_ValueList_Remove__MethodInfo); DO_APP_FUNC(0x01B21570, void, SortedList_ValueList_RemoveAt, (SortedList_ValueList * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCA20, SortedList_ValueList_RemoveAt__MethodInfo); DO_APP_FUNC(0x01B215D0, void, Stack__ctor, (Stack * __this, MethodInfo * method)); DO_APP_FUNC(0x01B21660, void, Stack__ctor_1, (Stack * __this, int32_t initialCapacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCA88, Stack__ctor_1__MethodInfo); DO_APP_FUNC(0x003BC2E0, int32_t, Stack_get_Count, (Stack * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, Stack_get_IsSynchronized, (Stack * __this, MethodInfo * method)); DO_APP_FUNC(0x01B21770, Object *, Stack_get_SyncRoot, (Stack * __this, MethodInfo * method)); DO_APP_FUNC(0x010B7920, void, Stack_Clear, (Stack * __this, MethodInfo * method)); DO_APP_FUNC(0x01B21820, Object *, Stack_Clone, (Stack * __this, MethodInfo * method)); DO_APP_FUNC(0x01B219B0, void, Stack_CopyTo, (Stack * __this, Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCA80, Stack_CopyTo__MethodInfo); DO_APP_FUNC(0x01B21CF0, IEnumerator *, Stack_GetEnumerator, (Stack * __this, MethodInfo * method)); DO_APP_FUNC(0x01B21E10, Object *, Stack_Peek, (Stack * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCA70, Stack_Peek__MethodInfo); DO_APP_FUNC(0x01B21EA0, Object *, Stack_Pop, (Stack * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCA68, Stack_Pop__MethodInfo); DO_APP_FUNC(0x01B21F50, void, Stack_Push, (Stack * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x01B220A0, void, Stack_StackEnumerator__ctor, (Stack_StackEnumerator * __this, Stack * stack, MethodInfo * method)); DO_APP_FUNC(0x01AA70A0, Object *, Stack_StackEnumerator_Clone, (Stack_StackEnumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x01B22180, bool, Stack_StackEnumerator_MoveNext, (Stack_StackEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC9F0, Stack_StackEnumerator_MoveNext__MethodInfo); DO_APP_FUNC(0x01B222E0, Object *, Stack_StackEnumerator_get_Current, (Stack_StackEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC9E8, Stack_StackEnumerator_get_Current__MethodInfo); DO_APP_FUNC(0x01B223A0, void, Stack_StackEnumerator_Reset, (Stack_StackEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC9E0, Stack_StackEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x01B22480, void, BitArray__ctor, (BitArray * __this, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x01B22490, void, BitArray__ctor_1, (BitArray * __this, int32_t length, bool defaultValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC9D8, BitArray__ctor_1__MethodInfo); DO_APP_FUNC(0x01B22650, void, BitArray__ctor_2, (BitArray * __this, BitArray * bits, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC9C8, BitArray__ctor_2__MethodInfo); DO_APP_FUNC(0x01B22790, bool, BitArray_get_Item, (BitArray * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01B227A0, void, BitArray_set_Item, (BitArray * __this, int32_t index, bool value, MethodInfo * method)); DO_APP_FUNC(0x01B228D0, bool, BitArray_Get, (BitArray * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC9C0, BitArray_Get__MethodInfo); DO_APP_FUNC(0x01B229D0, void, BitArray_Set, (BitArray * __this, int32_t index, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC9B8, BitArray_Set__MethodInfo); DO_APP_FUNC(0x01B22B00, void, BitArray_SetAll, (BitArray * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, BitArray_get_Length, (BitArray * __this, MethodInfo * method)); DO_APP_FUNC(0x01B22B70, void, BitArray_CopyTo, (BitArray * __this, Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC9B0, BitArray_CopyTo__MethodInfo); DO_APP_FUNC(0x003BC2E0, int32_t, BitArray_get_Count, (BitArray * __this, MethodInfo * method)); DO_APP_FUNC(0x01B23190, Object *, BitArray_get_SyncRoot, (BitArray * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, BitArray_get_IsSynchronized, (BitArray * __this, MethodInfo * method)); @@ -11692,20 +13020,29 @@ DO_APP_FUNC(0x01B23480, int32_t, BitArray_GetArrayLength, (int32_t n, int32_t di DO_APP_FUNC(0x01B234A0, void, BitArray_BitArrayEnumeratorSimple__ctor, (BitArray_BitArrayEnumeratorSimple * __this, BitArray * bitarray, MethodInfo * method)); DO_APP_FUNC(0x01AA70A0, Object *, BitArray_BitArrayEnumeratorSimple_Clone, (BitArray_BitArrayEnumeratorSimple * __this, MethodInfo * method)); DO_APP_FUNC(0x01B23520, bool, BitArray_BitArrayEnumeratorSimple_MoveNext, (BitArray_BitArrayEnumeratorSimple * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCA08, BitArray_BitArrayEnumeratorSimple_MoveNext__MethodInfo); DO_APP_FUNC(0x01B23640, Object *, BitArray_BitArrayEnumeratorSimple_get_Current, (BitArray_BitArrayEnumeratorSimple * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFCA00, BitArray_BitArrayEnumeratorSimple_get_Current__MethodInfo); DO_APP_FUNC(0x01B23780, void, BitArray_BitArrayEnumeratorSimple_Reset, (BitArray_BitArrayEnumeratorSimple * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC9F8, BitArray_BitArrayEnumeratorSimple_Reset__MethodInfo); DO_APP_FUNC(0x01B23810, void, ArrayList__ctor, (ArrayList * __this, MethodInfo * method)); DO_APP_FUNC(0x01B238A0, void, ArrayList__ctor_1, (ArrayList * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC960, ArrayList__ctor_1__MethodInfo); DO_APP_FUNC(0x01B23A60, void, ArrayList__ctor_2, (ArrayList * __this, ICollection * c, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC950, ArrayList__ctor_2__MethodInfo); DO_APP_FUNC(0x01B23C30, void, ArrayList_set_Capacity, (ArrayList * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC948, ArrayList_set_Capacity__MethodInfo); DO_APP_FUNC(0x003BC2E0, int32_t, ArrayList_get_Count, (ArrayList * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, ArrayList_get_IsFixedSize, (ArrayList * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, ArrayList_get_IsReadOnly, (ArrayList * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, ArrayList_get_IsSynchronized, (ArrayList * __this, MethodInfo * method)); DO_APP_FUNC(0x01B23D50, Object *, ArrayList_get_SyncRoot, (ArrayList * __this, MethodInfo * method)); DO_APP_FUNC(0x01B23E00, Object *, ArrayList_get_Item, (ArrayList * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC940, ArrayList_get_Item__MethodInfo); DO_APP_FUNC(0x01B23EC0, void, ArrayList_set_Item, (ArrayList * __this, int32_t index, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC938, ArrayList_set_Item__MethodInfo); DO_APP_FUNC(0x01B23FB0, ArrayList *, ArrayList_Adapter, (IList * list, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC998, ArrayList_Adapter__MethodInfo); DO_APP_FUNC(0x01B24070, int32_t, ArrayList_Add, (ArrayList * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01B24150, void, ArrayList_AddRange, (ArrayList * __this, ICollection * c, MethodInfo * method)); DO_APP_FUNC(0x00FDE320, void, ArrayList_Clear, (ArrayList * __this, MethodInfo * method)); @@ -11713,22 +13050,32 @@ DO_APP_FUNC(0x01B24170, Object *, ArrayList_Clone, (ArrayList * __this, MethodIn DO_APP_FUNC(0x01B24210, bool, ArrayList_Contains, (ArrayList * __this, Object * item, MethodInfo * method)); DO_APP_FUNC(0x01B24300, void, ArrayList_CopyTo, (ArrayList * __this, Array * array, MethodInfo * method)); DO_APP_FUNC(0x01B24320, void, ArrayList_CopyTo_1, (ArrayList * __this, Array * array, int32_t arrayIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC990, ArrayList_CopyTo_1__MethodInfo); DO_APP_FUNC(0x01B243E0, void, ArrayList_CopyTo_2, (ArrayList * __this, int32_t index, Array * array, int32_t arrayIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC988, ArrayList_CopyTo_2__MethodInfo); DO_APP_FUNC(0x01B244E0, void, ArrayList_EnsureCapacity, (ArrayList * __this, int32_t min, MethodInfo * method)); DO_APP_FUNC(0x01B24540, IEnumerator *, ArrayList_GetEnumerator, (ArrayList * __this, MethodInfo * method)); DO_APP_FUNC(0x01B24730, int32_t, ArrayList_IndexOf, (ArrayList * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01B24760, void, ArrayList_Insert, (ArrayList * __this, int32_t index, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC970, ArrayList_Insert__MethodInfo); DO_APP_FUNC(0x01B248B0, void, ArrayList_InsertRange, (ArrayList * __this, int32_t index, ICollection * c, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC968, ArrayList_InsertRange__MethodInfo); DO_APP_FUNC(0x01B24AA0, ArrayList *, ArrayList_ReadOnly, (ArrayList * list, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC928, ArrayList_ReadOnly__MethodInfo); DO_APP_FUNC(0x01B24B60, void, ArrayList_Remove, (ArrayList * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x01B24BB0, void, ArrayList_RemoveAt, (ArrayList * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC920, ArrayList_RemoveAt__MethodInfo); DO_APP_FUNC(0x01B24C90, void, ArrayList_RemoveRange, (ArrayList * __this, int32_t index, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC918, ArrayList_RemoveRange__MethodInfo); DO_APP_FUNC(0x01B24EB0, void, ArrayList_Sort, (ArrayList * __this, IComparer * comparer, MethodInfo * method)); DO_APP_FUNC(0x01B24F00, void, ArrayList_Sort_1, (ArrayList * __this, int32_t index, int32_t count, IComparer * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC910, ArrayList_Sort_1__MethodInfo); DO_APP_FUNC(0x01B25070, Object__Array *, ArrayList_ToArray, (ArrayList * __this, MethodInfo * method)); DO_APP_FUNC(0x01B25110, Array *, ArrayList_ToArray_1, (ArrayList * __this, Type * type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC908, ArrayList_ToArray_1__MethodInfo); DO_APP_FUNC(0x01B251F0, void, ArrayList_IListWrapper__ctor, (ArrayList_IListWrapper * __this, IList * list, MethodInfo * method)); DO_APP_FUNC(0x01B25270, void, ArrayList_IListWrapper_set_Capacity, (ArrayList_IListWrapper * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC900, ArrayList_IListWrapper_set_Capacity__MethodInfo); DO_APP_FUNC(0x01B25310, int32_t, ArrayList_IListWrapper_get_Count, (ArrayList_IListWrapper * __this, MethodInfo * method)); DO_APP_FUNC(0x01B25360, bool, ArrayList_IListWrapper_get_IsReadOnly, (ArrayList_IListWrapper * __this, MethodInfo * method)); DO_APP_FUNC(0x01B253B0, bool, ArrayList_IListWrapper_get_IsFixedSize, (ArrayList_IListWrapper * __this, MethodInfo * method)); @@ -11739,20 +13086,26 @@ DO_APP_FUNC(0x01B25530, Object *, ArrayList_IListWrapper_get_SyncRoot, (ArrayLis DO_APP_FUNC(0x01B25580, int32_t, ArrayList_IListWrapper_Add, (ArrayList_IListWrapper * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x01B255F0, void, ArrayList_IListWrapper_AddRange, (ArrayList_IListWrapper * __this, ICollection * c, MethodInfo * method)); DO_APP_FUNC(0x01B25640, void, ArrayList_IListWrapper_Clear, (ArrayList_IListWrapper * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC8D8, ArrayList_IListWrapper_Clear__MethodInfo); DO_APP_FUNC(0x01B25710, Object *, ArrayList_IListWrapper_Clone, (ArrayList_IListWrapper * __this, MethodInfo * method)); DO_APP_FUNC(0x01B25780, bool, ArrayList_IListWrapper_Contains, (ArrayList_IListWrapper * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x01B257E0, void, ArrayList_IListWrapper_CopyTo, (ArrayList_IListWrapper * __this, Array * array, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01B25850, void, ArrayList_IListWrapper_CopyTo_1, (ArrayList_IListWrapper * __this, int32_t index, Array * array, int32_t arrayIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC8D0, ArrayList_IListWrapper_CopyTo_1__MethodInfo); DO_APP_FUNC(0x01B25BB0, IEnumerator *, ArrayList_IListWrapper_GetEnumerator, (ArrayList_IListWrapper * __this, MethodInfo * method)); DO_APP_FUNC(0x01B25C00, int32_t, ArrayList_IListWrapper_IndexOf, (ArrayList_IListWrapper * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01B25C60, void, ArrayList_IListWrapper_Insert, (ArrayList_IListWrapper * __this, int32_t index, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x01B25CE0, void, ArrayList_IListWrapper_InsertRange, (ArrayList_IListWrapper * __this, int32_t index, ICollection * c, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC8F8, ArrayList_IListWrapper_InsertRange__MethodInfo); DO_APP_FUNC(0x01B24B60, void, ArrayList_IListWrapper_Remove, (ArrayList_IListWrapper * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01B26060, void, ArrayList_IListWrapper_RemoveAt, (ArrayList_IListWrapper * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01B260D0, void, ArrayList_IListWrapper_RemoveRange, (ArrayList_IListWrapper * __this, int32_t index, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC8F0, ArrayList_IListWrapper_RemoveRange__MethodInfo); DO_APP_FUNC(0x01B262E0, void, ArrayList_IListWrapper_Sort, (ArrayList_IListWrapper * __this, int32_t index, int32_t count, IComparer * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC8E8, ArrayList_IListWrapper_Sort__MethodInfo); DO_APP_FUNC(0x01B26590, Object__Array *, ArrayList_IListWrapper_ToArray, (ArrayList_IListWrapper * __this, MethodInfo * method)); DO_APP_FUNC(0x01B26660, Array *, ArrayList_IListWrapper_ToArray_1, (ArrayList_IListWrapper * __this, Type * type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC8A0, ArrayList_IListWrapper_ToArray_1__MethodInfo); DO_APP_FUNC(0x01B26770, void, ArrayList_ReadOnlyArrayList__ctor, (ArrayList_ReadOnlyArrayList * __this, ArrayList * l, MethodInfo * method)); DO_APP_FUNC(0x01B267E0, int32_t, ArrayList_ReadOnlyArrayList_get_Count, (ArrayList_ReadOnlyArrayList * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, ArrayList_ReadOnlyArrayList_get_IsReadOnly, (ArrayList_ReadOnlyArrayList * __this, MethodInfo * method)); @@ -11760,11 +13113,16 @@ DO_APP_FUNC(0x0041AEF0, bool, ArrayList_ReadOnlyArrayList_get_IsFixedSize, (Arra DO_APP_FUNC(0x01B26810, bool, ArrayList_ReadOnlyArrayList_get_IsSynchronized, (ArrayList_ReadOnlyArrayList * __this, MethodInfo * method)); DO_APP_FUNC(0x01B26840, Object *, ArrayList_ReadOnlyArrayList_get_Item, (ArrayList_ReadOnlyArrayList * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01B26870, void, ArrayList_ReadOnlyArrayList_set_Item, (ArrayList_ReadOnlyArrayList * __this, int32_t index, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC890, ArrayList_ReadOnlyArrayList_set_Item__MethodInfo); DO_APP_FUNC(0x01B268D0, Object *, ArrayList_ReadOnlyArrayList_get_SyncRoot, (ArrayList_ReadOnlyArrayList * __this, MethodInfo * method)); DO_APP_FUNC(0x01B26900, int32_t, ArrayList_ReadOnlyArrayList_Add, (ArrayList_ReadOnlyArrayList * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC888, ArrayList_ReadOnlyArrayList_Add__MethodInfo); DO_APP_FUNC(0x01B26960, void, ArrayList_ReadOnlyArrayList_AddRange, (ArrayList_ReadOnlyArrayList * __this, ICollection * c, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC880, ArrayList_ReadOnlyArrayList_AddRange__MethodInfo); DO_APP_FUNC(0x01B269C0, void, ArrayList_ReadOnlyArrayList_set_Capacity, (ArrayList_ReadOnlyArrayList * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC878, ArrayList_ReadOnlyArrayList_set_Capacity__MethodInfo); DO_APP_FUNC(0x01B26A20, void, ArrayList_ReadOnlyArrayList_Clear, (ArrayList_ReadOnlyArrayList * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC870, ArrayList_ReadOnlyArrayList_Clear__MethodInfo); DO_APP_FUNC(0x01B26A80, Object *, ArrayList_ReadOnlyArrayList_Clone, (ArrayList_ReadOnlyArrayList * __this, MethodInfo * method)); DO_APP_FUNC(0x01B26BF0, bool, ArrayList_ReadOnlyArrayList_Contains, (ArrayList_ReadOnlyArrayList * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x01B26C20, void, ArrayList_ReadOnlyArrayList_CopyTo, (ArrayList_ReadOnlyArrayList * __this, Array * array, int32_t index, MethodInfo * method)); @@ -11772,24 +13130,34 @@ DO_APP_FUNC(0x01B26C50, void, ArrayList_ReadOnlyArrayList_CopyTo_1, (ArrayList_R DO_APP_FUNC(0x01B26C80, IEnumerator *, ArrayList_ReadOnlyArrayList_GetEnumerator, (ArrayList_ReadOnlyArrayList * __this, MethodInfo * method)); DO_APP_FUNC(0x01B26CB0, int32_t, ArrayList_ReadOnlyArrayList_IndexOf, (ArrayList_ReadOnlyArrayList * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01B26CE0, void, ArrayList_ReadOnlyArrayList_Insert, (ArrayList_ReadOnlyArrayList * __this, int32_t index, Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC868, ArrayList_ReadOnlyArrayList_Insert__MethodInfo); DO_APP_FUNC(0x01B26D40, void, ArrayList_ReadOnlyArrayList_InsertRange, (ArrayList_ReadOnlyArrayList * __this, int32_t index, ICollection * c, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC860, ArrayList_ReadOnlyArrayList_InsertRange__MethodInfo); DO_APP_FUNC(0x01B26DA0, void, ArrayList_ReadOnlyArrayList_Remove, (ArrayList_ReadOnlyArrayList * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC858, ArrayList_ReadOnlyArrayList_Remove__MethodInfo); DO_APP_FUNC(0x01B26E00, void, ArrayList_ReadOnlyArrayList_RemoveAt, (ArrayList_ReadOnlyArrayList * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC848, ArrayList_ReadOnlyArrayList_RemoveAt__MethodInfo); DO_APP_FUNC(0x01B26E60, void, ArrayList_ReadOnlyArrayList_RemoveRange, (ArrayList_ReadOnlyArrayList * __this, int32_t index, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC840, ArrayList_ReadOnlyArrayList_RemoveRange__MethodInfo); DO_APP_FUNC(0x01B26EC0, void, ArrayList_ReadOnlyArrayList_Sort, (ArrayList_ReadOnlyArrayList * __this, int32_t index, int32_t count, IComparer * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC838, ArrayList_ReadOnlyArrayList_Sort__MethodInfo); DO_APP_FUNC(0x01B26F20, Object__Array *, ArrayList_ReadOnlyArrayList_ToArray, (ArrayList_ReadOnlyArrayList * __this, MethodInfo * method)); DO_APP_FUNC(0x01B26F50, Array *, ArrayList_ReadOnlyArrayList_ToArray_1, (ArrayList_ReadOnlyArrayList * __this, Type * type, MethodInfo * method)); DO_APP_FUNC(0x01B26F80, void, ArrayList_ArrayListEnumeratorSimple__ctor, (ArrayList_ArrayListEnumeratorSimple * __this, ArrayList * list, MethodInfo * method)); DO_APP_FUNC(0x01AA70A0, Object *, ArrayList_ArrayListEnumeratorSimple_Clone, (ArrayList_ArrayListEnumeratorSimple * __this, MethodInfo * method)); DO_APP_FUNC(0x01B27130, bool, ArrayList_ArrayListEnumeratorSimple_MoveNext, (ArrayList_ArrayListEnumeratorSimple * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC8C0, ArrayList_ArrayListEnumeratorSimple_MoveNext__MethodInfo); DO_APP_FUNC(0x01B27330, Object *, ArrayList_ArrayListEnumeratorSimple_get_Current, (ArrayList_ArrayListEnumeratorSimple * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC8B8, ArrayList_ArrayListEnumeratorSimple_get_Current__MethodInfo); DO_APP_FUNC(0x01B27440, void, ArrayList_ArrayListEnumeratorSimple_Reset, (ArrayList_ArrayListEnumeratorSimple * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC8B0, ArrayList_ArrayListEnumeratorSimple_Reset__MethodInfo); DO_APP_FUNC(0x01B27560, void, ArrayList_ArrayListEnumeratorSimple__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01B27620, ConditionalWeakTable_2_System_Object_System_Runtime_Serialization_SerializationInfo_ *, Hashtable_get_SerializationInfoTable, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Hashtable__ctor, (Hashtable * __this, bool trash, MethodInfo * method)); DO_APP_FUNC(0x01B27690, void, Hashtable__ctor_1, (Hashtable * __this, MethodInfo * method)); DO_APP_FUNC(0x01B276B0, void, Hashtable__ctor_2, (Hashtable * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x01B276C0, void, Hashtable__ctor_3, (Hashtable * __this, int32_t capacity, float loadFactor, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC7C8, Hashtable__ctor_3__MethodInfo); DO_APP_FUNC(0x01B27960, void, Hashtable__ctor_4, (Hashtable * __this, int32_t capacity, float loadFactor, IEqualityComparer * equalityComparer, MethodInfo * method)); DO_APP_FUNC(0x01B279D0, void, Hashtable__ctor_5, (Hashtable * __this, IHashCodeProvider * hcp, IComparer * comparer, MethodInfo * method)); DO_APP_FUNC(0x01B27AC0, void, Hashtable__ctor_6, (Hashtable * __this, IEqualityComparer * equalityComparer, MethodInfo * method)); @@ -11799,19 +13167,23 @@ DO_APP_FUNC(0x01B27BF0, void, Hashtable__ctor_9, (Hashtable * __this, IDictionar DO_APP_FUNC(0x01B27C10, void, Hashtable__ctor_10, (Hashtable * __this, IDictionary * d, IEqualityComparer * equalityComparer, MethodInfo * method)); DO_APP_FUNC(0x01B27C40, void, Hashtable__ctor_11, (Hashtable * __this, int32_t capacity, float loadFactor, IHashCodeProvider * hcp, IComparer * comparer, MethodInfo * method)); DO_APP_FUNC(0x01B27D30, void, Hashtable__ctor_12, (Hashtable * __this, IDictionary * d, float loadFactor, IEqualityComparer * equalityComparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC7A0, Hashtable__ctor_12__MethodInfo); DO_APP_FUNC(0x01B28040, void, Hashtable__ctor_13, (Hashtable * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); -DO_APP_FUNC(0x01B280B0, uint32_t, Hashtable_InitHash, (Hashtable * __this, Object * key, int32_t hashsize, uint32_t seed, uint32_t incr, MethodInfo * method)); +DO_APP_FUNC(0x01B280B0, uint32_t, Hashtable_InitHash, (Hashtable * __this, Object * key, int32_t hashsize, uint32_t * seed, uint32_t * incr, MethodInfo * method)); DO_APP_FUNC(0x01B28100, void, Hashtable_Add, (Hashtable * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01B28120, void, Hashtable_Clear, (Hashtable * __this, MethodInfo * method)); DO_APP_FUNC(0x01B28300, Object *, Hashtable_Clone, (Hashtable * __this, MethodInfo * method)); DO_APP_FUNC(0x01B28410, bool, Hashtable_Contains, (Hashtable * __this, Object * key, MethodInfo * method)); DO_APP_FUNC(0x01B28430, bool, Hashtable_ContainsKey, (Hashtable * __this, Object * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC830, Hashtable_ContainsKey__MethodInfo); DO_APP_FUNC(0x01B285D0, bool, Hashtable_ContainsValue, (Hashtable * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01B286D0, void, Hashtable_CopyKeys, (Hashtable * __this, Array * array, int32_t arrayIndex, MethodInfo * method)); DO_APP_FUNC(0x01B28770, void, Hashtable_CopyEntries, (Hashtable * __this, Array * array, int32_t arrayIndex, MethodInfo * method)); DO_APP_FUNC(0x01B28870, void, Hashtable_CopyTo, (Hashtable * __this, Array * array, int32_t arrayIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC820, Hashtable_CopyTo__MethodInfo); DO_APP_FUNC(0x01B28B30, void, Hashtable_CopyValues, (Hashtable * __this, Array * array, int32_t arrayIndex, MethodInfo * method)); DO_APP_FUNC(0x01B28BD0, Object *, Hashtable_get_Item, (Hashtable * __this, Object * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC810, Hashtable_get_Item__MethodInfo); DO_APP_FUNC(0x01B28E40, void, Hashtable_set_Item, (Hashtable * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01B28E60, void, Hashtable_expand, (Hashtable * __this, MethodInfo * method)); DO_APP_FUNC(0x01B28EE0, void, Hashtable_rehash, (Hashtable * __this, MethodInfo * method)); @@ -11827,28 +13199,37 @@ DO_APP_FUNC(0x01B29310, bool, Hashtable_KeyEquals, (Hashtable * __this, Object * DO_APP_FUNC(0x01B293F0, ICollection *, Hashtable_get_Keys, (Hashtable * __this, MethodInfo * method)); DO_APP_FUNC(0x01B29500, ICollection *, Hashtable_get_Values, (Hashtable * __this, MethodInfo * method)); DO_APP_FUNC(0x01B29610, void, Hashtable_Insert, (Hashtable * __this, Object * key, Object * nvalue, bool add, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC710, Hashtable_Insert__MethodInfo); DO_APP_FUNC(0x01B29C80, void, Hashtable_putEntry, (Hashtable * __this, Hashtable_bucket__Array * newBuckets, Object * key, Object * nvalue, int32_t hashcode, MethodInfo * method)); DO_APP_FUNC(0x01B29E50, void, Hashtable_Remove, (Hashtable * __this, Object * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC6F8, Hashtable_Remove__MethodInfo); DO_APP_FUNC(0x01B2A160, Object *, Hashtable_get_SyncRoot, (Hashtable * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, Hashtable_get_Count, (Hashtable * __this, MethodInfo * method)); DO_APP_FUNC(0x01B2A210, Hashtable *, Hashtable_Synchronized, (Hashtable * table, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC788, Hashtable_Synchronized__MethodInfo); DO_APP_FUNC(0x01B2A310, void, Hashtable_GetObjectData, (Hashtable * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC738, Hashtable_GetObjectData__MethodInfo); DO_APP_FUNC(0x01B2AFD0, void, Hashtable_OnDeserialization, (Hashtable * __this, Object * sender, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC658, Hashtable_OnDeserialization__MethodInfo); DO_APP_FUNC(0x003BCBE0, void, Hashtable_KeyCollection__ctor, (Hashtable_KeyCollection * __this, Hashtable * hashtable, MethodInfo * method)); DO_APP_FUNC(0x01B2BB50, void, Hashtable_KeyCollection_CopyTo, (Hashtable_KeyCollection * __this, Array * array, int32_t arrayIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC628, Hashtable_KeyCollection_CopyTo__MethodInfo); DO_APP_FUNC(0x01B2BDA0, IEnumerator *, Hashtable_KeyCollection_GetEnumerator, (Hashtable_KeyCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x01B2BE70, bool, Hashtable_KeyCollection_get_IsSynchronized, (Hashtable_KeyCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x01B2BEA0, Object *, Hashtable_KeyCollection_get_SyncRoot, (Hashtable_KeyCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, Hashtable_KeyCollection_get_Count, (Hashtable_KeyCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, Hashtable_ValueCollection__ctor, (Hashtable_ValueCollection * __this, Hashtable * hashtable, MethodInfo * method)); DO_APP_FUNC(0x01B2BED0, void, Hashtable_ValueCollection_CopyTo, (Hashtable_ValueCollection * __this, Array * array, int32_t arrayIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC610, Hashtable_ValueCollection_CopyTo__MethodInfo); DO_APP_FUNC(0x01B2C120, IEnumerator *, Hashtable_ValueCollection_GetEnumerator, (Hashtable_ValueCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x01B2BE70, bool, Hashtable_ValueCollection_get_IsSynchronized, (Hashtable_ValueCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x01B2BEA0, Object *, Hashtable_ValueCollection_get_SyncRoot, (Hashtable_ValueCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, Hashtable_ValueCollection_get_Count, (Hashtable_ValueCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7430, void, Hashtable_SyncHashtable__ctor, (Hashtable_SyncHashtable * __this, Hashtable * table, MethodInfo * method)); DO_APP_FUNC(0x01B2C1F0, void, Hashtable_SyncHashtable__ctor_1, (Hashtable_SyncHashtable * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC600, Hashtable_SyncHashtable__ctor_1__MethodInfo); DO_APP_FUNC(0x01B2C250, void, Hashtable_SyncHashtable_GetObjectData, (Hashtable_SyncHashtable * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC5F8, Hashtable_SyncHashtable_GetObjectData__MethodInfo); DO_APP_FUNC(0x01B2C2A0, int32_t, Hashtable_SyncHashtable_get_Count, (Hashtable_SyncHashtable * __this, MethodInfo * method)); DO_APP_FUNC(0x01B2C2D0, bool, Hashtable_SyncHashtable_get_IsReadOnly, (Hashtable_SyncHashtable * __this, MethodInfo * method)); DO_APP_FUNC(0x01B2C300, bool, Hashtable_SyncHashtable_get_IsFixedSize, (Hashtable_SyncHashtable * __this, MethodInfo * method)); @@ -11860,6 +13241,7 @@ DO_APP_FUNC(0x01B2C530, void, Hashtable_SyncHashtable_Add, (Hashtable_SyncHashta DO_APP_FUNC(0x01B2C6D0, void, Hashtable_SyncHashtable_Clear, (Hashtable_SyncHashtable * __this, MethodInfo * method)); DO_APP_FUNC(0x01B2C850, bool, Hashtable_SyncHashtable_Contains, (Hashtable_SyncHashtable * __this, Object * key, MethodInfo * method)); DO_APP_FUNC(0x01B2C880, bool, Hashtable_SyncHashtable_ContainsKey, (Hashtable_SyncHashtable * __this, Object * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC6D8, Hashtable_SyncHashtable_ContainsKey__MethodInfo); DO_APP_FUNC(0x01B2C930, bool, Hashtable_SyncHashtable_ContainsValue, (Hashtable_SyncHashtable * __this, Object * key, MethodInfo * method)); DO_APP_FUNC(0x01B2CAE0, void, Hashtable_SyncHashtable_CopyTo, (Hashtable_SyncHashtable * __this, Array * array, int32_t arrayIndex, MethodInfo * method)); DO_APP_FUNC(0x01B2CC80, Object *, Hashtable_SyncHashtable_Clone, (Hashtable_SyncHashtable * __this, MethodInfo * method)); @@ -11872,11 +13254,17 @@ DO_APP_FUNC(0x003AE050, void, Hashtable_SyncHashtable_OnDeserialization, (Hashta DO_APP_FUNC(0x01B2D390, void, Hashtable_HashtableEnumerator__ctor, (Hashtable_HashtableEnumerator * __this, Hashtable * hashtable, int32_t getObjRetType, MethodInfo * method)); DO_APP_FUNC(0x01AA70A0, Object *, Hashtable_HashtableEnumerator_Clone, (Hashtable_HashtableEnumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x01B2D420, Object *, Hashtable_HashtableEnumerator_get_Key, (Hashtable_HashtableEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC6C8, Hashtable_HashtableEnumerator_get_Key__MethodInfo); DO_APP_FUNC(0x01B2D490, bool, Hashtable_HashtableEnumerator_MoveNext, (Hashtable_HashtableEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC6C0, Hashtable_HashtableEnumerator_MoveNext__MethodInfo); DO_APP_FUNC(0x01B2D5D0, DictionaryEntry, Hashtable_HashtableEnumerator_get_Entry, (Hashtable_HashtableEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC6B8, Hashtable_HashtableEnumerator_get_Entry__MethodInfo); DO_APP_FUNC(0x01B2D660, Object *, Hashtable_HashtableEnumerator_get_Current, (Hashtable_HashtableEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC6A0, Hashtable_HashtableEnumerator_get_Current__MethodInfo); DO_APP_FUNC(0x01B2D740, Object *, Hashtable_HashtableEnumerator_get_Value, (Hashtable_HashtableEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC690, Hashtable_HashtableEnumerator_get_Value__MethodInfo); DO_APP_FUNC(0x01B2D7B0, void, Hashtable_HashtableEnumerator_Reset, (Hashtable_HashtableEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC688, Hashtable_HashtableEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x01B2D910, void, CDSCollectionETWBCLProvider__ctor, (CDSCollectionETWBCLProvider * __this, MethodInfo * method)); DO_APP_FUNC(0x00A8C430, void, CDSCollectionETWBCLProvider_ConcurrentDictionary_AcquiringAllLocks, (CDSCollectionETWBCLProvider * __this, int32_t numOfBuckets, MethodInfo * method)); DO_APP_FUNC(0x01B2D920, void, CDSCollectionETWBCLProvider__cctor, (MethodInfo * method)); @@ -11886,9 +13274,11 @@ DO_APP_FUNC(0x01980BF0, void, KeyNotFoundException__ctor_2, (KeyNotFoundExceptio DO_APP_FUNC(0x01B2DA40, String *, KeyValuePair_PairToString, (Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01B2DBD0, int32_t, IntrospectiveSortUtilities_FloorLog2PlusOne, (int32_t n, MethodInfo * method)); DO_APP_FUNC(0x01B2DBF0, void, IntrospectiveSortUtilities_ThrowOrIgnoreBadComparer, (Object * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC5C8, IntrospectiveSortUtilities_ThrowOrIgnoreBadComparer__MethodInfo); DO_APP_FUNC(0x01040B70, bool, ByteEqualityComparer_Equals, (ByteEqualityComparer * __this, uint8_t x, uint8_t y, MethodInfo * method)); DO_APP_FUNC(0x011F5680, int32_t, ByteEqualityComparer_GetHashCode, (ByteEqualityComparer * __this, uint8_t b, MethodInfo * method)); DO_APP_FUNC(0x01B2DC60, int32_t, ByteEqualityComparer_IndexOf, (ByteEqualityComparer * __this, Byte__Array * array, uint8_t value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF130, ByteEqualityComparer_IndexOf__MethodInfo); DO_APP_FUNC(0x015E5D30, int32_t, ByteEqualityComparer_LastIndexOf, (ByteEqualityComparer * __this, Byte__Array * array, uint8_t value, int32_t startIndex, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x01B2DF40, bool, ByteEqualityComparer_Equals_1, (ByteEqualityComparer * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x01B2DFD0, int32_t, ByteEqualityComparer_GetHashCode_1, (ByteEqualityComparer * __this, MethodInfo * method)); @@ -11899,14 +13289,16 @@ DO_APP_FUNC(0x01B2E0B0, int32_t, InternalStringComparer_IndexOf, (InternalString DO_APP_FUNC(0x01B2E160, void, InternalStringComparer__ctor, (InternalStringComparer * __this, MethodInfo * method)); DO_APP_FUNC(0x01B2E190, void, ArrayPoolEventSource__ctor, (ArrayPoolEventSource * __this, MethodInfo * method)); DO_APP_FUNC(0x01B2E220, void, ArrayPoolEventSource_BufferRented, (ArrayPoolEventSource * __this, int32_t bufferId, int32_t bufferSize, int32_t poolId, int32_t bucketId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF160, ArrayPoolEventSource_BufferRented__MethodInfo); DO_APP_FUNC(0x01B2E2B0, void, ArrayPoolEventSource_BufferAllocated, (ArrayPoolEventSource * __this, int32_t bufferId, int32_t bufferSize, int32_t poolId, int32_t bucketId, ArrayPoolEventSource_BufferAllocatedReason__Enum reason, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF158, ArrayPoolEventSource_BufferAllocated__MethodInfo); DO_APP_FUNC(0x01B2E350, void, ArrayPoolEventSource_BufferReturned, (ArrayPoolEventSource * __this, int32_t bufferId, int32_t bufferSize, int32_t poolId, MethodInfo * method)); DO_APP_FUNC(0x01B2E380, void, ArrayPoolEventSource_BufferTrimmed, (ArrayPoolEventSource * __this, int32_t bufferId, int32_t bufferSize, int32_t poolId, MethodInfo * method)); DO_APP_FUNC(0x01B2E3B0, void, ArrayPoolEventSource_BufferTrimPoll, (ArrayPoolEventSource * __this, int32_t milliseconds, int32_t pressure, MethodInfo * method)); DO_APP_FUNC(0x01B2E4D0, void, ArrayPoolEventSource__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x01B2E600, void, MemoryHandle__ctor, (MemoryHandle__Boxed * __this, Void * pointer, GCHandle handle, IPinnable * pinnable, MethodInfo * method)); -DO_APP_FUNC(0x00471910, Void *, MemoryHandle_get_Pointer, (MemoryHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B2E660, void, MemoryHandle_Dispose, (MemoryHandle__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B2E600, void, MemoryHandle__ctor, (MemoryHandle * __this, Void * pointer, GCHandle handle, IPinnable * pinnable, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Void *, MemoryHandle_get_Pointer, (MemoryHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B2E660, void, MemoryHandle_Dispose, (MemoryHandle * __this, MethodInfo * method)); DO_APP_FUNC(0x010FA680, int32_t, Utilities_SelectBucketIndex, (int32_t bufferSize, MethodInfo * method)); DO_APP_FUNC(0x01B2E750, int32_t, Utilities_GetMaxSizeForBucket, (int32_t binIndex, MethodInfo * method)); DO_APP_FUNC(0x01B2E760, int16_t, BinaryPrimitives_ReverseEndianness, (int16_t value, MethodInfo * method)); @@ -11919,37 +13311,46 @@ DO_APP_FUNC(0x01B2E7A0, int32_t, FormattingHelpers_CountDigits, (uint64_t value, DO_APP_FUNC(0x01B2E840, int32_t, FormattingHelpers_CountDigits_1, (uint32_t value, MethodInfo * method)); DO_APP_FUNC(0x01B2E8A0, int32_t, FormattingHelpers_CountHexDigits, (uint64_t value, MethodInfo * method)); DO_APP_FUNC(0x01B2E900, String__Array *, DriveInfoInternal_GetLogicalDrives, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF138, DriveInfoInternal_GetLogicalDrives__MethodInfo); DO_APP_FUNC(0x01B2EB50, DisableMediaInsertionPrompt, DisableMediaInsertionPrompt_Create, (MethodInfo * method)); -DO_APP_FUNC(0x01B2EBD0, void, DisableMediaInsertionPrompt_Dispose, (DisableMediaInsertionPrompt__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B2EBD0, void, DisableMediaInsertionPrompt_Dispose, (DisableMediaInsertionPrompt * __this, MethodInfo * method)); DO_APP_FUNC(0x01B2EC60, void, FileSystem_CopyFile, (String * sourceFullPath, String * destFullPath, bool overwrite, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF0D0, FileSystem_CopyFile__MethodInfo); DO_APP_FUNC(0x01B2EE60, void, FileSystem_CreateDirectory, (String * fullPath, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF0C8, FileSystem_CreateDirectory__MethodInfo); DO_APP_FUNC(0x01B2F450, void, FileSystem_DeleteFile, (String * fullPath, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF0C0, FileSystem_DeleteFile__MethodInfo); DO_APP_FUNC(0x01B2F520, bool, FileSystem_DirectoryExists, (String * fullPath, MethodInfo * method)); -DO_APP_FUNC(0x01B2F570, bool, FileSystem_DirectoryExists_1, (String * path, int32_t lastError, MethodInfo * method)); -DO_APP_FUNC(0x01B2F5C0, int32_t, FileSystem_FillAttributeInfo, (String * path, Interop_Kernel32_WIN32_FILE_ATTRIBUTE_DATA data, bool returnErrorOnNotFound, MethodInfo * method)); +DO_APP_FUNC(0x01B2F570, bool, FileSystem_DirectoryExists_1, (String * path, int32_t * lastError, MethodInfo * method)); +DO_APP_FUNC(0x01B2F5C0, int32_t, FileSystem_FillAttributeInfo, (String * path, Interop_Kernel32_WIN32_FILE_ATTRIBUTE_DATA * data, bool returnErrorOnNotFound, MethodInfo * method)); DO_APP_FUNC(0x01B2F950, bool, FileSystem_FileExists, (String * fullPath, MethodInfo * method)); DO_APP_FUNC(0x01B2F9A0, FileAttributes__Enum, FileSystem_GetAttributes, (String * fullPath, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF0B8, FileSystem_GetAttributes__MethodInfo); DO_APP_FUNC(0x01B2FA10, DateTimeOffset, FileSystem_GetCreationTime, (String * fullPath, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF110, FileSystem_GetCreationTime__MethodInfo); DO_APP_FUNC(0x01B2FAA0, DateTimeOffset, FileSystem_GetLastWriteTime, (String * fullPath, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF108, FileSystem_GetLastWriteTime__MethodInfo); DO_APP_FUNC(0x01B2FB30, void, FileSystem_MoveFile, (String * sourceFullPath, String * destFullPath, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF100, FileSystem_MoveFile__MethodInfo); DO_APP_FUNC(0x01B2FD00, void, FileSystem_SetAttributes, (String * fullPath, FileAttributes__Enum attributes, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF0E8, FileSystem_SetAttributes__MethodInfo); DO_APP_FUNC(0x01B2FE10, String__Array *, FileSystem_GetLogicalDrives, (MethodInfo * method)); DO_APP_FUNC(0x01B2FE20, bool, FileSystem_UnityCreateDirectory, (String * name, MethodInfo * method)); -DO_APP_FUNC(0x01B30060, bool, FileSystem_UnityGetFileAttributesEx, (String * path, Interop_Kernel32_WIN32_FILE_ATTRIBUTE_DATA data, MethodInfo * method)); +DO_APP_FUNC(0x01B30060, bool, FileSystem_UnityGetFileAttributesEx, (String * path, Interop_Kernel32_WIN32_FILE_ATTRIBUTE_DATA * data, MethodInfo * method)); DO_APP_FUNC(0x01B30300, bool, FileSystem_UnitySetFileAttributes, (String * fullPath, FileAttributes__Enum attributes, MethodInfo * method)); DO_APP_FUNC(0x01B30530, void *, FileSystem_UnityCreateFile_IntPtr, (String * lpFileName, int32_t dwDesiredAccess, FileShare__Enum dwShareMode, FileMode__Enum dwCreationDisposition, int32_t dwFlagsAndAttributes, MethodInfo * method)); DO_APP_FUNC(0x01B30770, int32_t, FileSystem_UnityCopyFile, (String * sourceFullPath, String * destFullPath, bool failIfExists, MethodInfo * method)); DO_APP_FUNC(0x01B308B0, bool, FileSystem_UnityDeleteFile, (String * path, MethodInfo * method)); DO_APP_FUNC(0x01B30B40, bool, FileSystem_UnityMoveFile, (String * sourceFullPath, String * destFullPath, MethodInfo * method)); -DO_APP_FUNC(0x01B30CE0, SafeFindHandle *, FileSystem_UnityFindFirstFile, (String * path, Interop_Kernel32_WIN32_FIND_DATA findData, MethodInfo * method)); +DO_APP_FUNC(0x01B30CE0, SafeFindHandle *, FileSystem_UnityFindFirstFile, (String * path, Interop_Kernel32_WIN32_FIND_DATA * findData, MethodInfo * method)); DO_APP_FUNC(0x01B31080, bool, FileSystem_BrokeredCreateDirectory, (String * path, MethodInfo * method)); -DO_APP_FUNC(0x01B31150, bool, FileSystem_BrokeredGetFileAttributes, (String * path, Interop_Kernel32_WIN32_FILE_ATTRIBUTE_DATA data, MethodInfo * method)); +DO_APP_FUNC(0x01B31150, bool, FileSystem_BrokeredGetFileAttributes, (String * path, Interop_Kernel32_WIN32_FILE_ATTRIBUTE_DATA * data, MethodInfo * method)); DO_APP_FUNC(0x01B31160, bool, FileSystem_BrokeredSetAttributes, (String * path, FileAttributes__Enum attributes, MethodInfo * method)); DO_APP_FUNC(0x01B31230, void *, FileSystem_BrokeredOpenFile, (String * lpFileName, int32_t dwDesiredAccess, int32_t dwShareMode, int32_t dwCreationDisposition, int32_t dwFlagsAndAttributes, MethodInfo * method)); -DO_APP_FUNC(0x01B31390, void, FileSystem_BrokeredCopyFile, (String * sourcePath, String * destPath, bool overwrite, int32_t error, MethodInfo * method)); +DO_APP_FUNC(0x01B31390, void, FileSystem_BrokeredCopyFile, (String * sourcePath, String * destPath, bool overwrite, int32_t * error, MethodInfo * method)); DO_APP_FUNC(0x01B314C0, bool, FileSystem_BrokeredMoveFile, (String * sourceFullPath, String * destFullPath, MethodInfo * method)); DO_APP_FUNC(0x01B31080, bool, FileSystem_BrokeredDeleteFile, (String * path, MethodInfo * method)); -DO_APP_FUNC(0x01B314D0, void *, FileSystem_BrokeredFindFirstFile, (String * searchPath, String * resultFilePath, uint32_t attributes, MethodInfo * method)); +DO_APP_FUNC(0x01B314D0, void *, FileSystem_BrokeredFindFirstFile, (String * searchPath, String * * resultFilePath, uint32_t * attributes, MethodInfo * method)); DO_APP_FUNC(0x01B314E0, int32_t, FileSystem_BrokeredSafeFindHandleDispose, (void * handle, MethodInfo * method)); DO_APP_FUNC(0x01B314F0, String *, FileSystem_RemoveExtendedPathPrefix, (String * path, MethodInfo * method)); DO_APP_FUNC(0x01B31570, void, FileSystem_UnitySafeFindHandle__ctor, (FileSystem_UnitySafeFindHandle * __this, void * handle, MethodInfo * method)); @@ -11991,42 +13392,59 @@ DO_APP_FUNC(0x01B32B30, void, IOException__ctor_3, (IOException * __this, String DO_APP_FUNC(0x01980BF0, void, IOException__ctor_4, (IOException * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x01B32B50, void, MemoryStream__ctor, (MemoryStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01B32C20, void, MemoryStream__ctor_1, (MemoryStream * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF000, MemoryStream__ctor_1__MethodInfo); DO_APP_FUNC(0x01B32D90, void, MemoryStream__ctor_2, (MemoryStream * __this, Byte__Array * buffer, MethodInfo * method)); DO_APP_FUNC(0x01B32DA0, void, MemoryStream__ctor_3, (MemoryStream * __this, Byte__Array * buffer, bool writable, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEFF8, MemoryStream__ctor_3__MethodInfo); DO_APP_FUNC(0x01B32ED0, void, MemoryStream__ctor_4, (MemoryStream * __this, Byte__Array * buffer, int32_t index, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x01B32F00, void, MemoryStream__ctor_5, (MemoryStream * __this, Byte__Array * buffer, int32_t index, int32_t count, bool writable, bool publiclyVisible, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEFF0, MemoryStream__ctor_5__MethodInfo); DO_APP_FUNC(0x005C2C70, bool, MemoryStream_get_CanRead, (MemoryStream * __this, MethodInfo * method)); DO_APP_FUNC(0x005C2C70, bool, MemoryStream_get_CanSeek, (MemoryStream * __this, MethodInfo * method)); DO_APP_FUNC(0x005C36F0, bool, MemoryStream_get_CanWrite, (MemoryStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01B33140, void, MemoryStream_EnsureNotClosed, (MemoryStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEFE8, MemoryStream_EnsureNotClosed__MethodInfo); DO_APP_FUNC(0x01B33180, void, MemoryStream_EnsureWriteable, (MemoryStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEFE0, MemoryStream_EnsureWriteable__MethodInfo); DO_APP_FUNC(0x01B331D0, void, MemoryStream_Dispose, (MemoryStream * __this, bool disposing, MethodInfo * method)); DO_APP_FUNC(0x01B33250, bool, MemoryStream_EnsureCapacity, (MemoryStream * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEFD0, MemoryStream_EnsureCapacity__MethodInfo); DO_APP_FUNC(0x003AE050, void, MemoryStream_Flush, (MemoryStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01B33310, Task *, MemoryStream_FlushAsync, (MemoryStream * __this, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x01B33440, Byte__Array *, MemoryStream_GetBuffer, (MemoryStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF048, MemoryStream_GetBuffer__MethodInfo); DO_APP_FUNC(0x003BB3B0, Byte__Array *, MemoryStream_InternalGetBuffer, (MemoryStream * __this, MethodInfo * method)); DO_APP_FUNC(0x00A2A110, int32_t, MemoryStream_InternalGetPosition, (MemoryStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01B334B0, int32_t, MemoryStream_InternalReadInt32, (MemoryStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF040, MemoryStream_InternalReadInt32__MethodInfo); DO_APP_FUNC(0x01B33590, int32_t, MemoryStream_InternalEmulateRead, (MemoryStream * __this, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x01B335F0, int32_t, MemoryStream_get_Capacity, (MemoryStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01B33630, void, MemoryStream_set_Capacity, (MemoryStream * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF038, MemoryStream_set_Capacity__MethodInfo); DO_APP_FUNC(0x01B33820, int64_t, MemoryStream_get_Length, (MemoryStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01B33870, int64_t, MemoryStream_get_Position, (MemoryStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01B338C0, void, MemoryStream_set_Position, (MemoryStream * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF028, MemoryStream_set_Position__MethodInfo); DO_APP_FUNC(0x01B339F0, int32_t, MemoryStream_Read, (MemoryStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF018, MemoryStream_Read__MethodInfo); DO_APP_FUNC(0x01B33C80, int32_t, MemoryStream_Read_1, (MemoryStream * __this, Span_1_Byte_ buffer, MethodInfo * method)); DO_APP_FUNC(0x01B33E80, Task_1_System_Int32_ *, MemoryStream_ReadAsync, (MemoryStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, CancellationToken cancellationToken, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEF80, MemoryStream_ReadAsync__MethodInfo); DO_APP_FUNC(0x01B341F0, ValueTask_1_System_Int32_, MemoryStream_ReadAsync_1, (MemoryStream * __this, Memory_1_Byte_ buffer, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x01B34600, int32_t, MemoryStream_ReadByte, (MemoryStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01B34680, void, MemoryStream_CopyTo, (MemoryStream * __this, Stream * destination, int32_t bufferSize, MethodInfo * method)); DO_APP_FUNC(0x01B347C0, Task *, MemoryStream_CopyToAsync, (MemoryStream * __this, Stream * destination, int32_t bufferSize, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x01B34A80, int64_t, MemoryStream_Seek, (MemoryStream * __this, int64_t offset, SeekOrigin__Enum loc, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEF58, MemoryStream_Seek__MethodInfo); DO_APP_FUNC(0x01B34D00, void, MemoryStream_SetLength, (MemoryStream * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEFC8, MemoryStream_SetLength__MethodInfo); DO_APP_FUNC(0x01B34E80, Byte__Array *, MemoryStream_ToArray, (MemoryStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01B34F20, void, MemoryStream_Write, (MemoryStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEFC0, MemoryStream_Write__MethodInfo); DO_APP_FUNC(0x01B35240, void, MemoryStream_Write_1, (MemoryStream * __this, ReadOnlySpan_1_Byte_ buffer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEFB0, MemoryStream_Write_1__MethodInfo); DO_APP_FUNC(0x01B354F0, Task *, MemoryStream_WriteAsync, (MemoryStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, CancellationToken cancellationToken, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEFA8, MemoryStream_WriteAsync__MethodInfo); DO_APP_FUNC(0x01B357E0, ValueTask, MemoryStream_WriteAsync_1, (MemoryStream * __this, ReadOnlyMemory_1_Byte_ buffer, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x01B35B30, void, MemoryStream_WriteByte, (MemoryStream * __this, uint8_t value, MethodInfo * method)); DO_APP_FUNC(0x01B35C50, bool, PathInternal_IsValidDriveChar, (uint16_t value, MethodInfo * method)); @@ -12060,18 +13478,22 @@ DO_APP_FUNC(0x01B37740, void, PinnedBufferMemoryStream_Write, (PinnedBufferMemor DO_APP_FUNC(0x00C133E0, void, PinnedBufferMemoryStream_Finalize, (PinnedBufferMemoryStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01B37760, void, PinnedBufferMemoryStream_Dispose, (PinnedBufferMemoryStream * __this, bool disposing, MethodInfo * method)); DO_APP_FUNC(0x01B377C0, void, StreamHelpers_ValidateCopyToArgs, (Stream * source, Stream * destination, int32_t bufferSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEEF8, StreamHelpers_ValidateCopyToArgs__MethodInfo); DO_APP_FUNC(0x01B37AC0, void, StreamReader_CheckAsyncTaskInProgress, (StreamReader * __this, MethodInfo * method)); DO_APP_FUNC(0x01B37B60, void, StreamReader_ThrowAsyncIOInProgress, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEEE8, StreamReader_ThrowAsyncIOInProgress__MethodInfo); DO_APP_FUNC(0x01B37BC0, void, StreamReader__ctor, (StreamReader * __this, MethodInfo * method)); DO_APP_FUNC(0x01B37CD0, void, StreamReader__ctor_1, (StreamReader * __this, Stream * stream, MethodInfo * method)); DO_APP_FUNC(0x01B37D20, void, StreamReader__ctor_2, (StreamReader * __this, Stream * stream, bool detectEncodingFromByteOrderMarks, MethodInfo * method)); DO_APP_FUNC(0x01B37D80, void, StreamReader__ctor_3, (StreamReader * __this, Stream * stream, Encoding * encoding, MethodInfo * method)); DO_APP_FUNC(0x01B37DB0, void, StreamReader__ctor_4, (StreamReader * __this, Stream * stream, Encoding * encoding, bool detectEncodingFromByteOrderMarks, MethodInfo * method)); DO_APP_FUNC(0x01B37DE0, void, StreamReader__ctor_5, (StreamReader * __this, Stream * stream, Encoding * encoding, bool detectEncodingFromByteOrderMarks, int32_t bufferSize, bool leaveOpen, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEF40, StreamReader__ctor_5__MethodInfo); DO_APP_FUNC(0x01B38080, void, StreamReader__ctor_6, (StreamReader * __this, String * path, MethodInfo * method)); DO_APP_FUNC(0x01B380D0, void, StreamReader__ctor_7, (StreamReader * __this, String * path, bool detectEncodingFromByteOrderMarks, MethodInfo * method)); DO_APP_FUNC(0x01B38130, void, StreamReader__ctor_8, (StreamReader * __this, String * path, Encoding * encoding, bool detectEncodingFromByteOrderMarks, MethodInfo * method)); DO_APP_FUNC(0x01B38150, void, StreamReader__ctor_9, (StreamReader * __this, String * path, Encoding * encoding, bool detectEncodingFromByteOrderMarks, int32_t bufferSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEF38, StreamReader__ctor_9__MethodInfo); DO_APP_FUNC(0x01B38490, void, StreamReader_Init, (StreamReader * __this, Stream * stream, Encoding * encoding, bool detectEncodingFromByteOrderMarks, int32_t bufferSize, bool leaveOpen, MethodInfo * method)); DO_APP_FUNC(0x01B38770, void, StreamReader_Init_1, (StreamReader * __this, Stream * stream, MethodInfo * method)); DO_APP_FUNC(0x019BA010, void, StreamReader_Close, (StreamReader * __this, MethodInfo * method)); @@ -12080,17 +13502,24 @@ DO_APP_FUNC(0x003BB3E0, Encoding *, StreamReader_get_CurrentEncoding, (StreamRea DO_APP_FUNC(0x003BB3D0, Stream *, StreamReader_get_BaseStream, (StreamReader * __this, MethodInfo * method)); DO_APP_FUNC(0x01B38A50, bool, StreamReader_get_LeaveOpen, (StreamReader * __this, MethodInfo * method)); DO_APP_FUNC(0x01B38A60, bool, StreamReader_get_EndOfStream, (StreamReader * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEF20, StreamReader_get_EndOfStream__MethodInfo); DO_APP_FUNC(0x01B38B00, int32_t, StreamReader_Peek, (StreamReader * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEF18, StreamReader_Peek__MethodInfo); DO_APP_FUNC(0x01B38BD0, int32_t, StreamReader_Read, (StreamReader * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEF10, StreamReader_Read__MethodInfo); DO_APP_FUNC(0x01B38CA0, int32_t, StreamReader_Read_1, (StreamReader * __this, Char__Array * buffer, int32_t index, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEEC8, StreamReader_Read_1__MethodInfo); DO_APP_FUNC(0x01B38EC0, int32_t, StreamReader_ReadSpan, (StreamReader * __this, Span_1_Char_ buffer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEEC0, StreamReader_ReadSpan__MethodInfo); DO_APP_FUNC(0x01B391B0, String *, StreamReader_ReadToEnd, (StreamReader * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEEB8, StreamReader_ReadToEnd__MethodInfo); DO_APP_FUNC(0x01B39300, void, StreamReader_CompressBuffer, (StreamReader * __this, int32_t n, MethodInfo * method)); DO_APP_FUNC(0x01B39340, void, StreamReader_DetectEncoding, (StreamReader * __this, MethodInfo * method)); DO_APP_FUNC(0x01B39640, bool, StreamReader_IsPreamble, (StreamReader * __this, MethodInfo * method)); DO_APP_FUNC(0x01B39770, int32_t, StreamReader_ReadBuffer, (StreamReader * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B39F00, int32_t, StreamReader_ReadBuffer_1, (StreamReader * __this, Span_1_Char_ userBuffer, bool readToUserBuffer, MethodInfo * method)); +DO_APP_FUNC(0x01B39F00, int32_t, StreamReader_ReadBuffer_1, (StreamReader * __this, Span_1_Char_ userBuffer, bool * readToUserBuffer, MethodInfo * method)); DO_APP_FUNC(0x01B3A8A0, String *, StreamReader_ReadLine, (StreamReader * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEEE0, StreamReader_ReadLine__MethodInfo); DO_APP_FUNC(0x01B3AB10, bool, StreamReader_DataAvailable, (StreamReader * __this, MethodInfo * method)); DO_APP_FUNC(0x01B3AB20, void, StreamReader__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01B3ADC0, void, StreamReader_NullStreamReader__ctor, (StreamReader_NullStreamReader * __this, MethodInfo * method)); @@ -12105,20 +13534,24 @@ DO_APP_FUNC(0x01B3B010, String *, StreamReader_NullStreamReader_ReadToEnd, (Stre DO_APP_FUNC(0x003CB690, int32_t, StreamReader_NullStreamReader_ReadBuffer, (StreamReader_NullStreamReader * __this, MethodInfo * method)); DO_APP_FUNC(0x01B3B050, void, StreamWriter_CheckAsyncTaskInProgress, (StreamWriter * __this, MethodInfo * method)); DO_APP_FUNC(0x01B3B0F0, void, StreamWriter_ThrowAsyncIOInProgress, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEED0, StreamWriter_ThrowAsyncIOInProgress__MethodInfo); DO_APP_FUNC(0x01B3B150, Encoding *, StreamWriter_get_UTF8NoBOM, (MethodInfo * method)); DO_APP_FUNC(0x01B3B1A0, void, StreamWriter__ctor, (StreamWriter * __this, MethodInfo * method)); DO_APP_FUNC(0x01B3B2B0, void, StreamWriter__ctor_1, (StreamWriter * __this, Stream * stream, MethodInfo * method)); DO_APP_FUNC(0x01B3B360, void, StreamWriter__ctor_2, (StreamWriter * __this, Stream * stream, Encoding * encoding, MethodInfo * method)); DO_APP_FUNC(0x01B3B390, void, StreamWriter__ctor_3, (StreamWriter * __this, Stream * stream, Encoding * encoding, int32_t bufferSize, MethodInfo * method)); DO_APP_FUNC(0x01B3B3B0, void, StreamWriter__ctor_4, (StreamWriter * __this, Stream * stream, Encoding * encoding, int32_t bufferSize, bool leaveOpen, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEE80, StreamWriter__ctor_4__MethodInfo); DO_APP_FUNC(0x01B3B650, void, StreamWriter__ctor_5, (StreamWriter * __this, String * path, MethodInfo * method)); DO_APP_FUNC(0x01B3B700, void, StreamWriter__ctor_6, (StreamWriter * __this, String * path, bool append, MethodInfo * method)); DO_APP_FUNC(0x01B3B7C0, void, StreamWriter__ctor_7, (StreamWriter * __this, String * path, bool append, Encoding * encoding, int32_t bufferSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEE78, StreamWriter__ctor_7__MethodInfo); DO_APP_FUNC(0x01B3BB10, void, StreamWriter_Init, (StreamWriter * __this, Stream * streamArg, Encoding * encodingArg, int32_t bufferSize, bool shouldLeaveOpen, MethodInfo * method)); DO_APP_FUNC(0x01B3BDE0, void, StreamWriter_Close, (StreamWriter * __this, MethodInfo * method)); DO_APP_FUNC(0x01B3BE50, void, StreamWriter_Dispose, (StreamWriter * __this, bool disposing, MethodInfo * method)); DO_APP_FUNC(0x01B3C190, void, StreamWriter_Flush, (StreamWriter * __this, MethodInfo * method)); DO_APP_FUNC(0x01B3C1C0, void, StreamWriter_Flush_1, (StreamWriter * __this, bool flushStream, bool flushEncoder, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEEA8, StreamWriter_Flush_1__MethodInfo); DO_APP_FUNC(0x01B3C3B0, void, StreamWriter_set_AutoFlush, (StreamWriter * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x003BB330, Stream *, StreamWriter_get_BaseStream, (StreamWriter * __this, MethodInfo * method)); DO_APP_FUNC(0x01B3C3F0, bool, StreamWriter_get_LeaveOpen, (StreamWriter * __this, MethodInfo * method)); @@ -12126,7 +13559,9 @@ DO_APP_FUNC(0x003C7320, Encoding *, StreamWriter_get_Encoding, (StreamWriter * _ DO_APP_FUNC(0x01B3C400, void, StreamWriter_Write, (StreamWriter * __this, uint16_t value, MethodInfo * method)); DO_APP_FUNC(0x01B3C480, void, StreamWriter_Write_1, (StreamWriter * __this, Char__Array * buffer, MethodInfo * method)); DO_APP_FUNC(0x01B3C520, void, StreamWriter_Write_2, (StreamWriter * __this, Char__Array * buffer, int32_t index, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEE98, StreamWriter_Write_2__MethodInfo); DO_APP_FUNC(0x01B3C7C0, void, StreamWriter_WriteSpan, (StreamWriter * __this, ReadOnlySpan_1_Char_ buffer, bool appendNewLine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEE90, StreamWriter_WriteSpan__MethodInfo); DO_APP_FUNC(0x01B3CA40, void, StreamWriter_Write_3, (StreamWriter * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x01B3CAC0, void, StreamWriter_WriteLine, (StreamWriter * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x01B3CB40, void, StreamWriter__cctor, (MethodInfo * method)); @@ -12137,9 +13572,11 @@ DO_APP_FUNC(0x003AE050, void, TextReader_Dispose_1, (TextReader * __this, bool d DO_APP_FUNC(0x006B4F60, int32_t, TextReader_Peek, (TextReader * __this, MethodInfo * method)); DO_APP_FUNC(0x006B4F60, int32_t, TextReader_Read, (TextReader * __this, MethodInfo * method)); DO_APP_FUNC(0x01B3CD80, int32_t, TextReader_Read_1, (TextReader * __this, Char__Array * buffer, int32_t index, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEE68, TextReader_Read_1__MethodInfo); DO_APP_FUNC(0x01B3CFB0, String *, TextReader_ReadToEnd, (TextReader * __this, MethodInfo * method)); DO_APP_FUNC(0x01B3D100, String *, TextReader_ReadLine, (TextReader * __this, MethodInfo * method)); DO_APP_FUNC(0x01B3D270, TextReader *, TextReader_Synchronized, (TextReader * reader, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEE50, TextReader_Synchronized__MethodInfo); DO_APP_FUNC(0x01B3D3D0, void, TextReader__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01B3D4D0, void, TextReader_NullTextReader__ctor, (TextReader_NullTextReader * __this, MethodInfo * method)); DO_APP_FUNC(0x003CB690, int32_t, TextReader_NullTextReader_Read, (TextReader_NullTextReader * __this, Char__Array * buffer, int32_t index, int32_t count, MethodInfo * method)); @@ -12164,6 +13601,7 @@ DO_APP_FUNC(0x01B3DB20, void, TextWriter_set_NewLine, (TextWriter * __this, Stri DO_APP_FUNC(0x003AE050, void, TextWriter_Write, (TextWriter * __this, uint16_t value, MethodInfo * method)); DO_APP_FUNC(0x01B3DC10, void, TextWriter_Write_1, (TextWriter * __this, Char__Array * buffer, MethodInfo * method)); DO_APP_FUNC(0x01B3DC40, void, TextWriter_Write_2, (TextWriter * __this, Char__Array * buffer, int32_t index, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEE30, TextWriter_Write_2__MethodInfo); DO_APP_FUNC(0x01B3DE60, void, TextWriter_Write_3, (TextWriter * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x01B3DEE0, void, TextWriter_Write_4, (TextWriter * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01B3DF30, void, TextWriter_Write_5, (TextWriter * __this, uint32_t value, MethodInfo * method)); @@ -12192,6 +13630,7 @@ DO_APP_FUNC(0x01B3E8C0, void, TextWriter_WriteLine_12, (TextWriter * __this, Str DO_APP_FUNC(0x01B3E970, void, TextWriter_WriteLine_13, (TextWriter * __this, String * format, Object * arg0, Object * arg1, MethodInfo * method)); DO_APP_FUNC(0x01B3EA30, void, TextWriter_WriteLine_14, (TextWriter * __this, String * format, Object__Array * arg, MethodInfo * method)); DO_APP_FUNC(0x01B3EB40, TextWriter *, TextWriter_Synchronized, (TextWriter * writer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEE40, TextWriter_Synchronized__MethodInfo); DO_APP_FUNC(0x01B3ECC0, void, TextWriter__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01B3EED0, void, TextWriter_NullTextWriter__ctor, (TextWriter_NullTextWriter * __this, MethodInfo * method)); DO_APP_FUNC(0x01B3B000, Encoding *, TextWriter_NullTextWriter_get_Encoding, (TextWriter_NullTextWriter * __this, MethodInfo * method)); @@ -12243,33 +13682,48 @@ DO_APP_FUNC(0x01B3F5C0, void, UnmanagedMemoryStream__ctor, (UnmanagedMemoryStrea DO_APP_FUNC(0x01B3F620, void, UnmanagedMemoryStream__ctor_1, (UnmanagedMemoryStream * __this, uint8_t * pointer, int64_t length, MethodInfo * method)); DO_APP_FUNC(0x01B3F6A0, void, UnmanagedMemoryStream__ctor_2, (UnmanagedMemoryStream * __this, uint8_t * pointer, int64_t length, int64_t capacity, FileAccess__Enum access, MethodInfo * method)); DO_APP_FUNC(0x01B3F730, void, UnmanagedMemoryStream_Initialize, (UnmanagedMemoryStream * __this, uint8_t * pointer, int64_t length, int64_t capacity, FileAccess__Enum access, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEDF0, UnmanagedMemoryStream_Initialize__MethodInfo); DO_APP_FUNC(0x01B3F9F0, bool, UnmanagedMemoryStream_get_CanRead, (UnmanagedMemoryStream * __this, MethodInfo * method)); DO_APP_FUNC(0x005C4000, bool, UnmanagedMemoryStream_get_CanSeek, (UnmanagedMemoryStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01B3FA00, bool, UnmanagedMemoryStream_get_CanWrite, (UnmanagedMemoryStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01B3FA20, void, UnmanagedMemoryStream_Dispose, (UnmanagedMemoryStream * __this, bool disposing, MethodInfo * method)); DO_APP_FUNC(0x01B3FA30, void, UnmanagedMemoryStream_EnsureNotClosed, (UnmanagedMemoryStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEDD0, UnmanagedMemoryStream_EnsureNotClosed__MethodInfo); DO_APP_FUNC(0x01B3FA70, void, UnmanagedMemoryStream_EnsureReadable, (UnmanagedMemoryStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEDC8, UnmanagedMemoryStream_EnsureReadable__MethodInfo); DO_APP_FUNC(0x01B3FAC0, void, UnmanagedMemoryStream_EnsureWriteable, (UnmanagedMemoryStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEDC0, UnmanagedMemoryStream_EnsureWriteable__MethodInfo); DO_APP_FUNC(0x01B3FA30, void, UnmanagedMemoryStream_Flush, (UnmanagedMemoryStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01B3FB10, Task *, UnmanagedMemoryStream_FlushAsync, (UnmanagedMemoryStream * __this, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x01B3FC40, int64_t, UnmanagedMemoryStream_get_Length, (UnmanagedMemoryStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01B3FC90, int64_t, UnmanagedMemoryStream_get_Position, (UnmanagedMemoryStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEDB8, UnmanagedMemoryStream_get_Position__MethodInfo); DO_APP_FUNC(0x01B3FCE0, void, UnmanagedMemoryStream_set_Position, (UnmanagedMemoryStream * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEDB0, UnmanagedMemoryStream_set_Position__MethodInfo); DO_APP_FUNC(0x01B3FDA0, uint8_t *, UnmanagedMemoryStream_get_PositionPointer, (UnmanagedMemoryStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEDA0, UnmanagedMemoryStream_get_PositionPointer__MethodInfo); DO_APP_FUNC(0x01B3FEA0, int32_t, UnmanagedMemoryStream_Read, (UnmanagedMemoryStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEE20, UnmanagedMemoryStream_Read__MethodInfo); DO_APP_FUNC(0x01B40110, int32_t, UnmanagedMemoryStream_Read_1, (UnmanagedMemoryStream * __this, Span_1_Byte_ buffer, MethodInfo * method)); DO_APP_FUNC(0x01B401D0, int32_t, UnmanagedMemoryStream_ReadCore, (UnmanagedMemoryStream * __this, Span_1_Byte_ buffer, MethodInfo * method)); DO_APP_FUNC(0x01B404A0, Task_1_System_Int32_ *, UnmanagedMemoryStream_ReadAsync, (UnmanagedMemoryStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, CancellationToken cancellationToken, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEE10, UnmanagedMemoryStream_ReadAsync__MethodInfo); DO_APP_FUNC(0x01B407D0, ValueTask_1_System_Int32_, UnmanagedMemoryStream_ReadAsync_1, (UnmanagedMemoryStream * __this, Memory_1_Byte_ buffer, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x01B40B80, int32_t, UnmanagedMemoryStream_ReadByte, (UnmanagedMemoryStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01B40D00, int64_t, UnmanagedMemoryStream_Seek, (UnmanagedMemoryStream * __this, int64_t offset, SeekOrigin__Enum loc, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEE08, UnmanagedMemoryStream_Seek__MethodInfo); DO_APP_FUNC(0x01B40EF0, void, UnmanagedMemoryStream_SetLength, (UnmanagedMemoryStream * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEE00, UnmanagedMemoryStream_SetLength__MethodInfo); DO_APP_FUNC(0x01B410F0, void, UnmanagedMemoryStream_Write, (UnmanagedMemoryStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFED30, UnmanagedMemoryStream_Write__MethodInfo); DO_APP_FUNC(0x01B41390, void, UnmanagedMemoryStream_Write_1, (UnmanagedMemoryStream * __this, ReadOnlySpan_1_Byte_ buffer, MethodInfo * method)); DO_APP_FUNC(0x01B41450, void, UnmanagedMemoryStream_WriteCore, (UnmanagedMemoryStream * __this, ReadOnlySpan_1_Byte_ buffer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFED28, UnmanagedMemoryStream_WriteCore__MethodInfo); DO_APP_FUNC(0x01B41810, Task *, UnmanagedMemoryStream_WriteAsync, (UnmanagedMemoryStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, CancellationToken cancellationToken, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFED18, UnmanagedMemoryStream_WriteAsync__MethodInfo); DO_APP_FUNC(0x01B41AD0, ValueTask, UnmanagedMemoryStream_WriteAsync_1, (UnmanagedMemoryStream * __this, ReadOnlyMemory_1_Byte_ buffer, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x01B41DD0, void, UnmanagedMemoryStream_WriteByte, (UnmanagedMemoryStream * __this, uint8_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFED10, UnmanagedMemoryStream_WriteByte__MethodInfo); DO_APP_FUNC(0x01B420A0, Exception *, Win32Marshal_GetExceptionForLastWin32Error, (String * path, MethodInfo * method)); DO_APP_FUNC(0x01B42140, Exception *, Win32Marshal_GetExceptionForWin32Error, (int32_t errorCode, String * path, MethodInfo * method)); DO_APP_FUNC(0x01B426C0, int32_t, Win32Marshal_MakeHRFromErrorCode, (int32_t errorCode, MethodInfo * method)); @@ -12279,6 +13733,7 @@ DO_APP_FUNC(0x01B42700, void, DriveNotFoundException__ctor, (DriveNotFoundExcept DO_APP_FUNC(0x01B316B0, void, DriveNotFoundException__ctor_1, (DriveNotFoundException * __this, String * message, MethodInfo * method)); DO_APP_FUNC(0x01980BF0, void, DriveNotFoundException__ctor_2, (DriveNotFoundException * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x01B42750, DirectoryInfo *, Directory_CreateDirectory, (String * path, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFECE0, Directory_CreateDirectory__MethodInfo); DO_APP_FUNC(0x01B42910, bool, Directory_Exists, (String * path, MethodInfo * method)); DO_APP_FUNC(0x01B42A00, String__Array *, Directory_GetFiles, (String * path, String * searchPattern, MethodInfo * method)); DO_APP_FUNC(0x01B42B00, String__Array *, Directory_GetFiles_1, (String * path, String * searchPattern, EnumerationOptions * enumerationOptions, MethodInfo * method)); @@ -12287,6 +13742,7 @@ DO_APP_FUNC(0x01B42C90, String__Array *, Directory_GetDirectories_1, (String * p DO_APP_FUNC(0x01B42D10, String__Array *, Directory_GetFileSystemEntries, (String * path, String * searchPattern, MethodInfo * method)); DO_APP_FUNC(0x01B42E10, String__Array *, Directory_GetFileSystemEntries_1, (String * path, String * searchPattern, EnumerationOptions * enumerationOptions, MethodInfo * method)); DO_APP_FUNC(0x01B42E90, IEnumerable_1_System_String_ *, Directory_InternalEnumeratePaths, (String * path, String * searchPattern, SearchTarget__Enum searchTarget, EnumerationOptions * options, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFED00, Directory_InternalEnumeratePaths__MethodInfo); DO_APP_FUNC(0x01B430F0, IEnumerable_1_System_String_ *, Directory_EnumerateDirectories, (String * path, String * searchPattern, SearchOption__Enum searchOption, MethodInfo * method)); DO_APP_FUNC(0x01B43180, IEnumerable_1_System_String_ *, Directory_EnumerateDirectories_1, (String * path, String * searchPattern, EnumerationOptions * enumerationOptions, MethodInfo * method)); DO_APP_FUNC(0x01B431A0, IEnumerable_1_System_String_ *, Directory_EnumerateFiles, (String * path, String * searchPattern, SearchOption__Enum searchOption, MethodInfo * method)); @@ -12295,14 +13751,17 @@ DO_APP_FUNC(0x01B43250, String *, Directory_InternalGetDirectoryRoot, (String * DO_APP_FUNC(0x01B43310, String *, Directory_GetCurrentDirectory, (MethodInfo * method)); DO_APP_FUNC(0x01B2FE10, String__Array *, Directory_GetLogicalDrives, (MethodInfo * method)); DO_APP_FUNC(0x01B43320, String *, Directory_InsecureGetCurrentDirectory, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFECA8, Directory_InsecureGetCurrentDirectory__MethodInfo); DO_APP_FUNC(0x01B43440, void, DirectoryInfo__ctor, (DirectoryInfo * __this, String * originalPath, String * fullPath, String * fileName, bool isNormalized, MethodInfo * method)); DO_APP_FUNC(0x01B43460, void, DirectoryInfo_Init, (DirectoryInfo * __this, String * originalPath, String * fullPath, String * fileName, bool isNormalized, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFECC8, DirectoryInfo_Init__MethodInfo); DO_APP_FUNC(0x01B43890, void, DirectoryInfo__ctor_1, (DirectoryInfo * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x01B438B0, EnumerationOptions *, EnumerationOptions_get_Compatible, (MethodInfo * method)); DO_APP_FUNC(0x01B43910, EnumerationOptions *, EnumerationOptions_get_CompatibleRecursive, (MethodInfo * method)); DO_APP_FUNC(0x01B43970, EnumerationOptions *, EnumerationOptions_get_Default, (MethodInfo * method)); DO_APP_FUNC(0x01B439D0, void, EnumerationOptions__ctor, (EnumerationOptions * __this, MethodInfo * method)); DO_APP_FUNC(0x01B439E0, EnumerationOptions *, EnumerationOptions_FromSearchOption, (SearchOption__Enum searchOption, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFECB8, EnumerationOptions_FromSearchOption__MethodInfo); DO_APP_FUNC(0x003BCD20, bool, EnumerationOptions_get_RecurseSubdirectories, (EnumerationOptions * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD30, void, EnumerationOptions_set_RecurseSubdirectories, (EnumerationOptions * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x00424BF0, bool, EnumerationOptions_get_IgnoreInaccessible, (EnumerationOptions * __this, MethodInfo * method)); @@ -12316,11 +13775,14 @@ DO_APP_FUNC(0x003CC980, MatchCasing__Enum, EnumerationOptions_get_MatchCasing, ( DO_APP_FUNC(0x00945280, bool, EnumerationOptions_get_ReturnSpecialDirectories, (EnumerationOptions * __this, MethodInfo * method)); DO_APP_FUNC(0x01B43B10, void, EnumerationOptions__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01B43D00, StreamReader *, File_OpenText, (String * path, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEC90, File_OpenText__MethodInfo); DO_APP_FUNC(0x01B43DE0, void, File_Copy, (String * sourceFileName, String * destFileName, MethodInfo * method)); DO_APP_FUNC(0x01B43DF0, void, File_Copy_1, (String * sourceFileName, String * destFileName, bool overwrite, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEC78, File_Copy_1__MethodInfo); DO_APP_FUNC(0x01B44030, FileStream *, File_Create, (String * path, MethodInfo * method)); DO_APP_FUNC(0x01B440C0, FileStream *, File_Create_1, (String * path, int32_t bufferSize, MethodInfo * method)); DO_APP_FUNC(0x01B44150, void, File_Delete, (String * path, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEC60, File_Delete__MethodInfo); DO_APP_FUNC(0x01B442F0, bool, File_Exists, (String * path, MethodInfo * method)); DO_APP_FUNC(0x01B44450, FileStream *, File_Open, (String * path, FileMode__Enum mode, MethodInfo * method)); DO_APP_FUNC(0x01B44480, FileStream *, File_Open_1, (String * path, FileMode__Enum mode, FileAccess__Enum access, FileShare__Enum share, MethodInfo * method)); @@ -12328,17 +13790,23 @@ DO_APP_FUNC(0x01B44530, DateTime, File_GetCreationTime, (String * path, MethodIn DO_APP_FUNC(0x01B44660, DateTime, File_GetLastWriteTime, (String * path, MethodInfo * method)); DO_APP_FUNC(0x01B44790, FileAttributes__Enum, File_GetAttributes, (String * path, MethodInfo * method)); DO_APP_FUNC(0x01B44870, void, File_SetAttributes, (String * path, FileAttributes__Enum fileAttributes, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEC98, File_SetAttributes__MethodInfo); DO_APP_FUNC(0x01B44C00, FileStream *, File_OpenRead, (String * path, MethodInfo * method)); DO_APP_FUNC(0x01B44C90, FileStream *, File_OpenWrite, (String * path, MethodInfo * method)); DO_APP_FUNC(0x01B44D20, String *, File_ReadAllText, (String * path, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEC40, File_ReadAllText__MethodInfo); DO_APP_FUNC(0x01B44E10, String *, File_InternalReadAllText, (String * path, Encoding * encoding, MethodInfo * method)); DO_APP_FUNC(0x01B44F40, void, File_WriteAllText, (String * path, String * contents, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEC38, File_WriteAllText__MethodInfo); DO_APP_FUNC(0x01B45110, Byte__Array *, File_ReadAllBytes, (String * path, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEC28, File_ReadAllBytes__MethodInfo); DO_APP_FUNC(0x01B45390, Byte__Array *, File_ReadAllBytesUnknownLength, (FileStream * fs, MethodInfo * method)); DO_APP_FUNC(0x01B459B0, void, File_Move, (String * sourceFileName, String * destFileName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEC50, File_Move__MethodInfo); DO_APP_FUNC(0x01B45E00, void, FileInfo__ctor, (FileInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01B45E10, void, FileInfo__ctor_1, (FileInfo * __this, String * fileName, MethodInfo * method)); DO_APP_FUNC(0x01B45E40, void, FileInfo__ctor_2, (FileInfo * __this, String * originalPath, String * fullPath, String * fileName, bool isNormalized, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEC48, FileInfo__ctor_2__MethodInfo); DO_APP_FUNC(0x01B46090, StreamWriter *, FileInfo_CreateText, (FileInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01B46110, StreamWriter *, FileInfo_AppendText, (FileInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01B43890, void, FileInfo__ctor_3, (FileInfo * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); @@ -12348,6 +13816,7 @@ DO_APP_FUNC(0x01B46190, bool, FileSystemInfo_get_ExistsCore, (FileSystemInfo * _ DO_APP_FUNC(0x01B46210, void, FileSystemInfo_Refresh, (FileSystemInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01B46240, String *, FileSystemInfo_get_NormalizedPath, (FileSystemInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01B46310, void, FileSystemInfo__ctor_1, (FileSystemInfo * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEBE0, FileSystemInfo__ctor_1__MethodInfo); DO_APP_FUNC(0x01B46570, void, FileSystemInfo_GetObjectData, (FileSystemInfo * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x003C7420, String *, FileSystemInfo_get_Name, (FileSystemInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01B468F0, bool, FileSystemInfo_get_Exists, (FileSystemInfo * __this, MethodInfo * method)); @@ -12355,9 +13824,13 @@ DO_APP_FUNC(0x01B46980, String *, FileSystemInfo_ToString, (FileSystemInfo * __t DO_APP_FUNC(0x01B469D0, SemaphoreSlim *, Stream_EnsureAsyncActiveSemaphoreInitialized, (Stream * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, Stream_get_CanTimeout, (Stream * __this, MethodInfo * method)); DO_APP_FUNC(0x01B46B70, int32_t, Stream_get_ReadTimeout, (Stream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEBC0, Stream_get_ReadTimeout__MethodInfo); DO_APP_FUNC(0x01B46BD0, void, Stream_set_ReadTimeout, (Stream * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEC18, Stream_set_ReadTimeout__MethodInfo); DO_APP_FUNC(0x01B46C30, int32_t, Stream_get_WriteTimeout, (Stream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEC10, Stream_get_WriteTimeout__MethodInfo); DO_APP_FUNC(0x01B46C90, void, Stream_set_WriteTimeout, (Stream * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEC08, Stream_set_WriteTimeout__MethodInfo); DO_APP_FUNC(0x01B46CF0, Task *, Stream_CopyToAsync, (Stream * __this, Stream * destination, int32_t bufferSize, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x01B46D50, Task *, Stream_CopyToAsyncInternal, (Stream * __this, Stream * destination, int32_t bufferSize, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x01B46FE0, void, Stream_CopyTo, (Stream * __this, Stream * destination, int32_t bufferSize, MethodInfo * method)); @@ -12367,23 +13840,28 @@ DO_APP_FUNC(0x003AE050, void, Stream_Dispose_1, (Stream * __this, bool disposing DO_APP_FUNC(0x01B47210, Task *, Stream_FlushAsync, (Stream * __this, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x01B47480, IAsyncResult *, Stream_BeginRead, (Stream * __this, Byte__Array * buffer, int32_t offset, int32_t count, AsyncCallback * callback, Object * state, MethodInfo * method)); DO_APP_FUNC(0x01B474C0, IAsyncResult *, Stream_BeginReadInternal, (Stream * __this, Byte__Array * buffer, int32_t offset, int32_t count, AsyncCallback * callback, Object * state, bool serializeAsynchronously, bool apm, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEB58, Stream_BeginReadInternal__MethodInfo); DO_APP_FUNC(0x01B47760, int32_t, Stream_EndRead, (Stream * __this, IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEB50, Stream_EndRead__MethodInfo); DO_APP_FUNC(0x01B47980, Task_1_System_Int32_ *, Stream_ReadAsync, (Stream * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x01B47A20, Task_1_System_Int32_ *, Stream_ReadAsync_1, (Stream * __this, Byte__Array * buffer, int32_t offset, int32_t count, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x01B47B10, ValueTask_1_System_Int32_, Stream_ReadAsync_2, (Stream * __this, Memory_1_Byte_ buffer, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x01B47DD0, Task_1_System_Int32_ *, Stream_BeginEndReadAsync, (Stream * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x01B48260, IAsyncResult *, Stream_BeginWrite, (Stream * __this, Byte__Array * buffer, int32_t offset, int32_t count, AsyncCallback * callback, Object * state, MethodInfo * method)); DO_APP_FUNC(0x01B482A0, IAsyncResult *, Stream_BeginWriteInternal, (Stream * __this, Byte__Array * buffer, int32_t offset, int32_t count, AsyncCallback * callback, Object * state, bool serializeAsynchronously, bool apm, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEB80, Stream_BeginWriteInternal__MethodInfo); DO_APP_FUNC(0x01B48540, void, Stream_RunReadWriteTaskWhenReady, (Stream * __this, Task * asyncWaiter, Stream_ReadWriteTask * readWriteTask, MethodInfo * method)); DO_APP_FUNC(0x01B488D0, void, Stream_RunReadWriteTask, (Stream * __this, Stream_ReadWriteTask * readWriteTask, MethodInfo * method)); DO_APP_FUNC(0x01B48A30, void, Stream_FinishTrackingAsyncOperation, (Stream * __this, MethodInfo * method)); DO_APP_FUNC(0x01B48AA0, void, Stream_EndWrite, (Stream * __this, IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEB10, Stream_EndWrite__MethodInfo); DO_APP_FUNC(0x01B48CB0, Task *, Stream_WriteAsync, (Stream * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x01B48D50, Task *, Stream_WriteAsync_1, (Stream * __this, Byte__Array * buffer, int32_t offset, int32_t count, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x01B48E60, ValueTask, Stream_WriteAsync_2, (Stream * __this, ReadOnlyMemory_1_Byte_ buffer, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x01B49270, Task *, Stream_FinishWriteAsync, (Stream * __this, Task * writeTask, Byte__Array * localBuffer, MethodInfo * method)); DO_APP_FUNC(0x01B49480, Task *, Stream_BeginEndWriteAsync, (Stream * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x01B49910, int32_t, Stream_Read, (Stream * __this, Span_1_Byte_ buffer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEB20, Stream_Read__MethodInfo); DO_APP_FUNC(0x01B49BF0, int32_t, Stream_ReadByte, (Stream * __this, MethodInfo * method)); DO_APP_FUNC(0x01B49CA0, void, Stream_Write, (Stream * __this, ReadOnlySpan_1_Byte_ buffer, MethodInfo * method)); DO_APP_FUNC(0x01B49E70, void, Stream_WriteByte, (Stream * __this, uint8_t value, MethodInfo * method)); @@ -12399,6 +13877,7 @@ DO_APP_FUNC(0x01B4A500, ValueTask_1_System_Int32_, Stream__ReadAsync_g__FinishRe DO_APP_FUNC(0x01B4A7A0, void, Stream_ReadWriteTask_ClearBeginState, (Stream_ReadWriteTask * __this, MethodInfo * method)); DO_APP_FUNC(0x01B4A850, void, Stream_ReadWriteTask__ctor, (Stream_ReadWriteTask * __this, bool isRead, bool apm, Func_2_Object_Int32_ * function, Object * state, Stream * stream, Byte__Array * buffer, int32_t offset, int32_t count, AsyncCallback * callback, MethodInfo * method)); DO_APP_FUNC(0x01B4AB80, void, Stream_ReadWriteTask_InvokeAsyncCallback, (Object * completedTask, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEAF0, Stream_ReadWriteTask_InvokeAsyncCallback__MethodInfo); DO_APP_FUNC(0x01B4AC50, void, Stream_ReadWriteTask_System_Threading_Tasks_ITaskCompletionAction_Invoke, (Stream_ReadWriteTask * __this, Task * completingTask, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, Stream_ReadWriteTask_System_Threading_Tasks_ITaskCompletionAction_get_InvokeMayRunArbitraryCode, (Stream_ReadWriteTask * __this, MethodInfo * method)); DO_APP_FUNC(0x01B4AEF0, void, Stream_NullStream__ctor, (Stream_NullStream * __this, MethodInfo * method)); @@ -12414,9 +13893,13 @@ DO_APP_FUNC(0x003AE050, void, Stream_NullStream_Dispose, (Stream_NullStream * __ DO_APP_FUNC(0x003AE050, void, Stream_NullStream_Flush, (Stream_NullStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01B4B060, Task *, Stream_NullStream_FlushAsync, (Stream_NullStream * __this, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x01B4B140, IAsyncResult *, Stream_NullStream_BeginRead, (Stream_NullStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, AsyncCallback * callback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEAE8, Stream_NullStream_BeginRead__MethodInfo); DO_APP_FUNC(0x01B4B1D0, int32_t, Stream_NullStream_EndRead, (Stream_NullStream * __this, IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEA78, Stream_NullStream_EndRead__MethodInfo); DO_APP_FUNC(0x01B4B390, IAsyncResult *, Stream_NullStream_BeginWrite, (Stream_NullStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, AsyncCallback * callback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEA70, Stream_NullStream_BeginWrite__MethodInfo); DO_APP_FUNC(0x01B4B420, void, Stream_NullStream_EndWrite, (Stream_NullStream * __this, IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEA68, Stream_NullStream_EndWrite__MethodInfo); DO_APP_FUNC(0x003CB690, int32_t, Stream_NullStream_Read, (Stream_NullStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x003CB690, int32_t, Stream_NullStream_Read_1, (Stream_NullStream * __this, Span_1_Byte_ buffer, MethodInfo * method)); DO_APP_FUNC(0x01B4B5E0, Task_1_System_Int32_ *, Stream_NullStream_ReadAsync, (Stream_NullStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, CancellationToken cancellationToken, MethodInfo * method)); @@ -12439,36 +13922,54 @@ DO_APP_FUNC(0x003BB3C0, Object *, Stream_SynchronousAsyncResult_get_AsyncState, DO_APP_FUNC(0x0041AEF0, bool, Stream_SynchronousAsyncResult_get_CompletedSynchronously, (Stream_SynchronousAsyncResult * __this, MethodInfo * method)); DO_APP_FUNC(0x01B4BE10, void, Stream_SynchronousAsyncResult_ThrowIfError, (Stream_SynchronousAsyncResult * __this, MethodInfo * method)); DO_APP_FUNC(0x01B4A050, int32_t, Stream_SynchronousAsyncResult_EndRead, (IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEA98, Stream_SynchronousAsyncResult_EndRead__MethodInfo); DO_APP_FUNC(0x01B4A2D0, void, Stream_SynchronousAsyncResult_EndWrite, (IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEA88, Stream_SynchronousAsyncResult_EndWrite__MethodInfo); DO_APP_FUNC(0x01B4BE40, void, Stream_SynchronousAsyncResult_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Stream_SynchronousAsyncResult_c__ctor, (Stream_SynchronousAsyncResult_c * __this, MethodInfo * method)); DO_APP_FUNC(0x01B4BEF0, ManualResetEvent *, Stream_SynchronousAsyncResult_c__get_AsyncWaitHandle_b__12_0, (Stream_SynchronousAsyncResult_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEAB0, Stream_SynchronousAsyncResult_c__get_AsyncWaitHandle_b__12_0__MethodInfo); DO_APP_FUNC(0x01B4BF60, void, Stream_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Stream_c__ctor, (Stream_c * __this, MethodInfo * method)); DO_APP_FUNC(0x01B4C010, SemaphoreSlim *, Stream_c__EnsureAsyncActiveSemaphoreInitialized_b__4_0, (Stream_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEBD8, Stream_c__EnsureAsyncActiveSemaphoreInitialized_b__4_0__MethodInfo); DO_APP_FUNC(0x01B4C070, void, Stream_c__FlushAsync_b__37_0, (Stream_c * __this, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEC00, Stream_c__FlushAsync_b__37_0__MethodInfo); DO_APP_FUNC(0x01B4C0F0, int32_t, Stream_c__BeginReadInternal_b__40_0, (Stream_c * __this, Object * _p0_, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEB60, Stream_c__BeginReadInternal_b__40_0__MethodInfo); DO_APP_FUNC(0x01B4C280, IAsyncResult *, Stream_c__BeginEndReadAsync_b__45_0, (Stream_c * __this, Stream * stream, Stream_ReadWriteParameters args, AsyncCallback * callback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEB98, Stream_c__BeginEndReadAsync_b__45_0__MethodInfo); DO_APP_FUNC(0x01B4C2E0, int32_t, Stream_c__BeginEndReadAsync_b__45_1, (Stream_c * __this, Stream * stream, IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEB90, Stream_c__BeginEndReadAsync_b__45_1__MethodInfo); DO_APP_FUNC(0x01B4C320, int32_t, Stream_c__BeginWriteInternal_b__48_0, (Stream_c * __this, Object * _p0_, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEB88, Stream_c__BeginWriteInternal_b__48_0__MethodInfo); DO_APP_FUNC(0x01B4C450, void, Stream_c__RunReadWriteTaskWhenReady_b__49_0, (Stream_c * __this, Task * t, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEB70, Stream_c__RunReadWriteTaskWhenReady_b__49_0__MethodInfo); DO_APP_FUNC(0x01B4C4C0, IAsyncResult *, Stream_c__BeginEndWriteAsync_b__58_0, (Stream_c * __this, Stream * stream, Stream_ReadWriteParameters args, AsyncCallback * callback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEB30, Stream_c__BeginEndWriteAsync_b__58_0__MethodInfo); DO_APP_FUNC(0x01B4C520, VoidTaskResult, Stream_c__BeginEndWriteAsync_b__58_1, (Stream_c * __this, Stream * stream, IAsyncResult * asyncResult, MethodInfo * method)); -DO_APP_FUNC(0x01B4C560, void, Stream_CopyToAsyncInternal_d_28_MoveNext, (Stream_CopyToAsyncInternal_d_28__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B4D0F0, void, Stream_CopyToAsyncInternal_d_28_SetStateMachine, (Stream_CopyToAsyncInternal_d_28__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x01B4D150, void, Stream_FinishWriteAsync_d_57_MoveNext, (Stream_FinishWriteAsync_d_57__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B4D550, void, Stream_FinishWriteAsync_d_57_SetStateMachine, (Stream_FinishWriteAsync_d_57__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x01B4D5B0, void, Stream_ReadAsync_g_FinishReadAsync_44_0_d_MoveNext, (Stream_ReadAsync_g_FinishReadAsync_44_0_d__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B4DB30, void, Stream_ReadAsync_g_FinishReadAsync_44_0_d_SetStateMachine, (Stream_ReadAsync_g_FinishReadAsync_44_0_d__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEB28, Stream_c__BeginEndWriteAsync_b__58_1__MethodInfo); +DO_APP_FUNC(0x01B4C560, void, Stream_CopyToAsyncInternal_d_28_MoveNext, (Stream_CopyToAsyncInternal_d_28 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B4D0F0, void, Stream_CopyToAsyncInternal_d_28_SetStateMachine, (Stream_CopyToAsyncInternal_d_28 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x01B4D150, void, Stream_FinishWriteAsync_d_57_MoveNext, (Stream_FinishWriteAsync_d_57 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B4D550, void, Stream_FinishWriteAsync_d_57_SetStateMachine, (Stream_FinishWriteAsync_d_57 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x01B4D5B0, void, Stream_ReadAsync_g_FinishReadAsync_44_0_d_MoveNext, (Stream_ReadAsync_g_FinishReadAsync_44_0_d * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B4DB30, void, Stream_ReadAsync_g_FinishReadAsync_44_0_d_SetStateMachine, (Stream_ReadAsync_g_FinishReadAsync_44_0_d * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); DO_APP_FUNC(0x01B4DB80, void, _Error_EndOfFile, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE9C0, _Error_EndOfFile__MethodInfo); DO_APP_FUNC(0x01B4DBF0, void, _Error_FileNotOpen, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE9B0, _Error_FileNotOpen__MethodInfo); DO_APP_FUNC(0x01B4DC60, void, _Error_ReaderClosed, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE9A8, _Error_ReaderClosed__MethodInfo); DO_APP_FUNC(0x01B4DCD0, String *, _Error_GetDisplayablePath, (String * path, bool isInvalidPath, MethodInfo * method)); DO_APP_FUNC(0x01B4DE30, void, _Error_WinIOError, (int32_t errorCode, String * maybeFullPath, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE998, _Error_WinIOError__MethodInfo); DO_APP_FUNC(0x01B4E6C0, void, _Error_WriterClosed, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEA00, _Error_WriterClosed__MethodInfo); DO_APP_FUNC(0x01B4E730, void, BinaryReader__ctor, (BinaryReader * __this, Stream * input, MethodInfo * method)); DO_APP_FUNC(0x01B4E7D0, void, BinaryReader__ctor_1, (BinaryReader * __this, Stream * input, Encoding * encoding, MethodInfo * method)); DO_APP_FUNC(0x01B4E7F0, void, BinaryReader__ctor_2, (BinaryReader * __this, Stream * input, Encoding * encoding, bool leaveOpen, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE9F8, BinaryReader__ctor_2__MethodInfo); DO_APP_FUNC(0x003BB3C0, Stream *, BinaryReader_get_BaseStream, (BinaryReader * __this, MethodInfo * method)); DO_APP_FUNC(0x00BC3900, void, BinaryReader_Close, (BinaryReader * __this, MethodInfo * method)); DO_APP_FUNC(0x01B4EAD0, void, BinaryReader_Dispose, (BinaryReader * __this, bool disposing, MethodInfo * method)); @@ -12487,18 +13988,27 @@ DO_APP_FUNC(0x01B4F150, uint64_t, BinaryReader_ReadUInt64, (BinaryReader * __thi DO_APP_FUNC(0x01B4F240, float, BinaryReader_ReadSingle, (BinaryReader * __this, MethodInfo * method)); DO_APP_FUNC(0x01B4F350, double, BinaryReader_ReadDouble, (BinaryReader * __this, MethodInfo * method)); DO_APP_FUNC(0x01B4F440, Decimal, BinaryReader_ReadDecimal, (BinaryReader * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE960, BinaryReader_ReadDecimal__MethodInfo); DO_APP_FUNC(0x01B4F740, String *, BinaryReader_ReadString, (BinaryReader * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE950, BinaryReader_ReadString__MethodInfo); DO_APP_FUNC(0x01B4FA50, int32_t, BinaryReader_InternalReadChars, (BinaryReader * __this, Char__Array * buffer, int32_t index, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE948, BinaryReader_InternalReadChars__MethodInfo); DO_APP_FUNC(0x01B4FE30, int32_t, BinaryReader_InternalReadOneChar, (BinaryReader * __this, MethodInfo * method)); DO_APP_FUNC(0x01B50170, Char__Array *, BinaryReader_ReadChars, (BinaryReader * __this, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE938, BinaryReader_ReadChars__MethodInfo); DO_APP_FUNC(0x01B50360, int32_t, BinaryReader_Read_1, (BinaryReader * __this, Byte__Array * buffer, int32_t index, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE930, BinaryReader_Read_1__MethodInfo); DO_APP_FUNC(0x01B50570, Byte__Array *, BinaryReader_ReadBytes, (BinaryReader * __this, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE990, BinaryReader_ReadBytes__MethodInfo); DO_APP_FUNC(0x01B50770, void, BinaryReader_FillBuffer, (BinaryReader * __this, int32_t numBytes, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE978, BinaryReader_FillBuffer__MethodInfo); DO_APP_FUNC(0x01B508E0, int32_t, BinaryReader_Read7BitEncodedInt, (BinaryReader * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE968, BinaryReader_Read7BitEncodedInt__MethodInfo); DO_APP_FUNC(0x01B50DE0, void, BinaryWriter__ctor, (BinaryWriter * __this, MethodInfo * method)); DO_APP_FUNC(0x01B51040, void, BinaryWriter__ctor_1, (BinaryWriter * __this, Stream * output, MethodInfo * method)); DO_APP_FUNC(0x01B51100, void, BinaryWriter__ctor_2, (BinaryWriter * __this, Stream * output, Encoding * encoding, MethodInfo * method)); DO_APP_FUNC(0x01B51120, void, BinaryWriter__ctor_3, (BinaryWriter * __this, Stream * output, Encoding * encoding, bool leaveOpen, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D006F8, BinaryWriter__ctor_3__MethodInfo); DO_APP_FUNC(0x01A497A0, void, BinaryWriter_Close, (BinaryWriter * __this, MethodInfo * method)); DO_APP_FUNC(0x01B51320, void, BinaryWriter_Dispose, (BinaryWriter * __this, bool disposing, MethodInfo * method)); DO_APP_FUNC(0x01A497A0, void, BinaryWriter_Dispose_1, (BinaryWriter * __this, MethodInfo * method)); @@ -12507,9 +14017,12 @@ DO_APP_FUNC(0x01B513B0, int64_t, BinaryWriter_Seek, (BinaryWriter * __this, int3 DO_APP_FUNC(0x01B513E0, void, BinaryWriter_Write, (BinaryWriter * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x01B51440, void, BinaryWriter_Write_1, (BinaryWriter * __this, uint8_t value, MethodInfo * method)); DO_APP_FUNC(0x01B51470, void, BinaryWriter_Write_2, (BinaryWriter * __this, Byte__Array * buffer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D006E0, BinaryWriter_Write_2__MethodInfo); DO_APP_FUNC(0x01B51510, void, BinaryWriter_Write_3, (BinaryWriter * __this, Byte__Array * buffer, int32_t index, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x01B51540, void, BinaryWriter_Write_4, (BinaryWriter * __this, uint16_t ch, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D006B8, BinaryWriter_Write_4__MethodInfo); DO_APP_FUNC(0x01B516B0, void, BinaryWriter_Write_5, (BinaryWriter * __this, Char__Array * chars, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D006B0, BinaryWriter_Write_5__MethodInfo); DO_APP_FUNC(0x01B51780, void, BinaryWriter_Write_6, (BinaryWriter * __this, double value, MethodInfo * method)); DO_APP_FUNC(0x01B517E0, void, BinaryWriter_Write_7, (BinaryWriter * __this, int16_t value, MethodInfo * method)); DO_APP_FUNC(0x01B51850, void, BinaryWriter_Write_8, (BinaryWriter * __this, uint16_t value, MethodInfo * method)); @@ -12519,29 +14032,35 @@ DO_APP_FUNC(0x01B51A20, void, BinaryWriter_Write_11, (BinaryWriter * __this, int DO_APP_FUNC(0x01B51B60, void, BinaryWriter_Write_12, (BinaryWriter * __this, uint64_t value, MethodInfo * method)); DO_APP_FUNC(0x01B51CA0, void, BinaryWriter_Write_13, (BinaryWriter * __this, float value, MethodInfo * method)); DO_APP_FUNC(0x01B51DF0, void, BinaryWriter_Write_14, (BinaryWriter * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D006A0, BinaryWriter_Write_14__MethodInfo); DO_APP_FUNC(0x01B521C0, void, BinaryWriter_Write7BitEncodedInt, (BinaryWriter * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01B52230, void, BinaryWriter__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01B522E0, void, StringReader__ctor, (StringReader * __this, String * s, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00680, StringReader__ctor__MethodInfo); DO_APP_FUNC(0x019BA010, void, StringReader_Close, (StringReader * __this, MethodInfo * method)); DO_APP_FUNC(0x01B523E0, void, StringReader_Dispose, (StringReader * __this, bool disposing, MethodInfo * method)); DO_APP_FUNC(0x01B52440, int32_t, StringReader_Peek, (StringReader * __this, MethodInfo * method)); DO_APP_FUNC(0x01B52490, int32_t, StringReader_Read, (StringReader * __this, MethodInfo * method)); DO_APP_FUNC(0x01B524F0, int32_t, StringReader_Read_1, (StringReader * __this, Char__Array * buffer, int32_t index, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00770, StringReader_Read_1__MethodInfo); DO_APP_FUNC(0x01B52720, String *, StringReader_ReadToEnd, (StringReader * __this, MethodInfo * method)); DO_APP_FUNC(0x01B52780, String *, StringReader_ReadLine, (StringReader * __this, MethodInfo * method)); DO_APP_FUNC(0x01B528B0, void, StringWriter__ctor, (StringWriter * __this, MethodInfo * method)); DO_APP_FUNC(0x01B52990, void, StringWriter__ctor_1, (StringWriter * __this, IFormatProvider * formatProvider, MethodInfo * method)); DO_APP_FUNC(0x01B52A10, void, StringWriter__ctor_2, (StringWriter * __this, StringBuilder * sb, IFormatProvider * formatProvider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00740, StringWriter__ctor_2__MethodInfo); DO_APP_FUNC(0x01B52B40, void, StringWriter_Close, (StringWriter * __this, MethodInfo * method)); DO_APP_FUNC(0x01B52B60, void, StringWriter_Dispose, (StringWriter * __this, bool disposing, MethodInfo * method)); DO_APP_FUNC(0x01B52B70, Encoding *, StringWriter_get_Encoding, (StringWriter * __this, MethodInfo * method)); DO_APP_FUNC(0x01B52C90, void, StringWriter_Write, (StringWriter * __this, uint16_t value, MethodInfo * method)); DO_APP_FUNC(0x01B52CC0, void, StringWriter_Write_1, (StringWriter * __this, Char__Array * buffer, int32_t index, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00730, StringWriter_Write_1__MethodInfo); DO_APP_FUNC(0x01B52EE0, void, StringWriter_Write_2, (StringWriter * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x01B52F20, String *, StringWriter_ToString, (StringWriter * __this, MethodInfo * method)); DO_APP_FUNC(0x01B52F50, void, FileStream__ctor, (FileStream * __this, void * handle, FileAccess__Enum access, MethodInfo * method)); DO_APP_FUNC(0x01B52F80, void, FileStream__ctor_1, (FileStream * __this, void * handle, FileAccess__Enum access, bool ownsHandle, int32_t bufferSize, MethodInfo * method)); DO_APP_FUNC(0x01B52FB0, void, FileStream__ctor_2, (FileStream * __this, void * handle, FileAccess__Enum access, bool ownsHandle, int32_t bufferSize, bool isAsync, bool isConsoleWrapper, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D005C8, FileStream__ctor_2__MethodInfo); DO_APP_FUNC(0x01B53230, void, FileStream__ctor_3, (FileStream * __this, String * path, FileMode__Enum mode, MethodInfo * method)); DO_APP_FUNC(0x01B53270, void, FileStream__ctor_4, (FileStream * __this, String * path, FileMode__Enum mode, FileAccess__Enum access, MethodInfo * method)); DO_APP_FUNC(0x01B532B0, void, FileStream__ctor_5, (FileStream * __this, String * path, FileMode__Enum mode, FileAccess__Enum access, FileShare__Enum share, MethodInfo * method)); @@ -12550,40 +14069,63 @@ DO_APP_FUNC(0x01B53320, void, FileStream__ctor_7, (FileStream * __this, String * DO_APP_FUNC(0x01B53370, void, FileStream__ctor_8, (FileStream * __this, String * path, FileMode__Enum mode, FileAccess__Enum access, FileShare__Enum share, int32_t bufferSize, FileOptions__Enum options, MethodInfo * method)); DO_APP_FUNC(0x01B533B0, void, FileStream__ctor_9, (FileStream * __this, String * path, FileMode__Enum mode, FileAccess__Enum access, FileShare__Enum share, int32_t bufferSize, bool isAsync, bool anonymous, MethodInfo * method)); DO_APP_FUNC(0x01B53400, void, FileStream__ctor_10, (FileStream * __this, String * path, FileMode__Enum mode, FileAccess__Enum access, FileShare__Enum share, int32_t bufferSize, bool anonymous, FileOptions__Enum options, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D005B8, FileStream__ctor_10__MethodInfo); DO_APP_FUNC(0x01B53E80, void, FileStream_Init, (FileStream * __this, SafeFileHandle * safeHandle, FileAccess__Enum access, bool ownsHandle, int32_t bufferSize, bool isAsync, bool isConsoleWrapper, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00678, FileStream_Init__MethodInfo); DO_APP_FUNC(0x01B54210, bool, FileStream_get_CanRead, (FileStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01B54230, bool, FileStream_get_CanWrite, (FileStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01B54250, bool, FileStream_get_CanSeek, (FileStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01B54260, int64_t, FileStream_get_Length, (FileStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00648, FileStream_get_Length__MethodInfo); DO_APP_FUNC(0x01B54410, int64_t, FileStream_get_Position, (FileStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00628, FileStream_get_Position__MethodInfo); DO_APP_FUNC(0x01B545D0, void, FileStream_set_Position, (FileStream * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00620, FileStream_set_Position__MethodInfo); DO_APP_FUNC(0x01B54680, SafeFileHandle *, FileStream_get_SafeFileHandle, (FileStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01B546C0, void, FileStream_ExposeHandle, (FileStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01B546F0, int32_t, FileStream_ReadByte, (FileStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00618, FileStream_ReadByte__MethodInfo); DO_APP_FUNC(0x01B54870, void, FileStream_WriteByte, (FileStream * __this, uint8_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00600, FileStream_WriteByte__MethodInfo); DO_APP_FUNC(0x01B549E0, int32_t, FileStream_Read, (FileStream * __this, Byte__Array * array, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D005E8, FileStream_Read__MethodInfo); DO_APP_FUNC(0x01B54DC0, int32_t, FileStream_ReadInternal, (FileStream * __this, Byte__Array * dest, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D004C8, FileStream_ReadInternal__MethodInfo); DO_APP_FUNC(0x01B54E90, IAsyncResult *, FileStream_BeginRead, (FileStream * __this, Byte__Array * array, int32_t offset, int32_t numBytes, AsyncCallback * userCallback, Object * stateObject, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D004B8, FileStream_BeginRead__MethodInfo); DO_APP_FUNC(0x01B55340, int32_t, FileStream_EndRead, (FileStream * __this, IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00458, FileStream_EndRead__MethodInfo); DO_APP_FUNC(0x01B55570, void, FileStream_Write, (FileStream * __this, Byte__Array * array, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00430, FileStream_Write__MethodInfo); DO_APP_FUNC(0x01B55870, void, FileStream_WriteInternal, (FileStream * __this, Byte__Array * src, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00540, FileStream_WriteInternal__MethodInfo); DO_APP_FUNC(0x01B55AB0, IAsyncResult *, FileStream_BeginWrite, (FileStream * __this, Byte__Array * array, int32_t offset, int32_t numBytes, AsyncCallback * userCallback, Object * stateObject, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00518, FileStream_BeginWrite__MethodInfo); DO_APP_FUNC(0x01B55FC0, void, FileStream_EndWrite, (FileStream * __this, IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D004F8, FileStream_EndWrite__MethodInfo); DO_APP_FUNC(0x01B561E0, int64_t, FileStream_Seek, (FileStream * __this, int64_t offset, SeekOrigin__Enum origin, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D004F0, FileStream_Seek__MethodInfo); DO_APP_FUNC(0x01B56510, void, FileStream_SetLength, (FileStream * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00370, FileStream_SetLength__MethodInfo); DO_APP_FUNC(0x01B567C0, void, FileStream_Flush, (FileStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00350, FileStream_Flush__MethodInfo); DO_APP_FUNC(0x00C133E0, void, FileStream_Finalize, (FileStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01B56840, void, FileStream_Dispose, (FileStream * __this, bool disposing, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00338, FileStream_Dispose__MethodInfo); DO_APP_FUNC(0x01B56C60, Task *, FileStream_FlushAsync, (FileStream * __this, CancellationToken cancellationToken, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00328, FileStream_FlushAsync__MethodInfo); DO_APP_FUNC(0x01B47A20, Task_1_System_Int32_ *, FileStream_ReadAsync, (FileStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x01B48D50, Task *, FileStream_WriteAsync, (FileStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x01B56CE0, int32_t, FileStream_ReadSegment, (FileStream * __this, Byte__Array * dest, int32_t dest_offset, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x01B56DF0, int32_t, FileStream_WriteSegment, (FileStream * __this, Byte__Array * src, int32_t src_offset, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x01B56E60, void, FileStream_FlushBuffer, (FileStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00408, FileStream_FlushBuffer__MethodInfo); DO_APP_FUNC(0x01B57050, void, FileStream_FlushBufferIfDirty, (FileStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01B57060, void, FileStream_RefillBuffer, (FileStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01B570A0, int32_t, FileStream_ReadData, (FileStream * __this, SafeHandle * safeHandle, Byte__Array * buf, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D003E8, FileStream_ReadData__MethodInfo); DO_APP_FUNC(0x01B571E0, void, FileStream_InitBuffer, (FileStream * __this, int32_t size, bool isZeroSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D003D8, FileStream_InitBuffer__MethodInfo); DO_APP_FUNC(0x01B575B0, String *, FileStream_GetSecureFileName, (FileStream * __this, String * filename, MethodInfo * method)); DO_APP_FUNC(0x01B57670, String *, FileStream_GetSecureFileName_1, (FileStream * __this, String * filename, bool full, MethodInfo * method)); DO_APP_FUNC(0x01B57760, void, FileStream__cctor, (MethodInfo * method)); @@ -12597,66 +14139,77 @@ DO_APP_FUNC(0x01B57B40, IAsyncResult *, FileStream_WriteDelegate_BeginInvoke, (F DO_APP_FUNC(0x003BA270, void, FileStream_WriteDelegate_EndInvoke, (FileStream_WriteDelegate * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x01B57BE0, void, FileStreamAsyncResult__ctor, (FileStreamAsyncResult * __this, AsyncCallback * cb, Object * state, MethodInfo * method)); DO_APP_FUNC(0x01B57E40, void, FileStreamAsyncResult_CBWrapper, (IAsyncResult * ares, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00268, FileStreamAsyncResult_CBWrapper__MethodInfo); DO_APP_FUNC(0x003BB3C0, Object *, FileStreamAsyncResult_get_AsyncState, (FileStreamAsyncResult * __this, MethodInfo * method)); DO_APP_FUNC(0x00594F20, bool, FileStreamAsyncResult_get_CompletedSynchronously, (FileStreamAsyncResult * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, WaitHandle *, FileStreamAsyncResult_get_AsyncWaitHandle, (FileStreamAsyncResult * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCC40, bool, FileStreamAsyncResult_get_IsCompleted, (FileStreamAsyncResult * __this, MethodInfo * method)); DO_APP_FUNC(0x01B57EE0, Exception *, MonoIO_GetException, (MonoIOError__Enum error, MethodInfo * method)); DO_APP_FUNC(0x01B58020, Exception *, MonoIO_GetException_1, (String * path, MonoIOError__Enum error, MethodInfo * method)); -DO_APP_FUNC(0x01B588B0, String *, MonoIO_GetCurrentDirectory, (MonoIOError__Enum error, MethodInfo * method)); -DO_APP_FUNC(0x01B58940, bool, MonoIO_SetFileAttributes, (uint16_t * path, FileAttributes__Enum attrs, MonoIOError__Enum error, MethodInfo * method)); -DO_APP_FUNC(0x01B58A30, bool, MonoIO_SetFileAttributes_1, (String * path, FileAttributes__Enum attrs, MonoIOError__Enum error, MethodInfo * method)); -DO_APP_FUNC(0x01B58B60, MonoFileType__Enum, MonoIO_GetFileType, (void * handle, MonoIOError__Enum error, MethodInfo * method)); -DO_APP_FUNC(0x01B58B70, MonoFileType__Enum, MonoIO_GetFileType_1, (SafeHandle * safeHandle, MonoIOError__Enum error, MethodInfo * method)); +DO_APP_FUNC(0x01B588B0, String *, MonoIO_GetCurrentDirectory, (MonoIOError__Enum * error, MethodInfo * method)); +DO_APP_FUNC(0x01B58940, bool, MonoIO_SetFileAttributes, (uint16_t * path, FileAttributes__Enum attrs, MonoIOError__Enum * error, MethodInfo * method)); +DO_APP_FUNC(0x01B58A30, bool, MonoIO_SetFileAttributes_1, (String * path, FileAttributes__Enum attrs, MonoIOError__Enum * error, MethodInfo * method)); +DO_APP_FUNC(0x01B58B60, MonoFileType__Enum, MonoIO_GetFileType, (void * handle, MonoIOError__Enum * error, MethodInfo * method)); +DO_APP_FUNC(0x01B58B70, MonoFileType__Enum, MonoIO_GetFileType_1, (SafeHandle * safeHandle, MonoIOError__Enum * error, MethodInfo * method)); DO_APP_FUNC(0x01B58C80, bool, MonoIO_FindCloseFile, (void * hnd, MethodInfo * method)); -DO_APP_FUNC(0x01B58DE0, void *, MonoIO_Open, (uint16_t * filename, FileMode__Enum mode, FileAccess__Enum access, FileShare__Enum share, FileOptions__Enum options, MonoIOError__Enum error, MethodInfo * method)); -DO_APP_FUNC(0x01B58EF0, void *, MonoIO_Open_1, (String * filename, FileMode__Enum mode, FileAccess__Enum access, FileShare__Enum share, FileOptions__Enum options, MonoIOError__Enum error, MethodInfo * method)); -DO_APP_FUNC(0x01B59040, bool, MonoIO_Cancel_internal, (void * handle, MonoIOError__Enum error, MethodInfo * method)); -DO_APP_FUNC(0x01B59060, bool, MonoIO_Cancel, (SafeHandle * safeHandle, MonoIOError__Enum error, MethodInfo * method)); -DO_APP_FUNC(0x01B59180, bool, MonoIO_Close, (void * handle, MonoIOError__Enum error, MethodInfo * method)); -DO_APP_FUNC(0x01B591C0, int32_t, MonoIO_Read, (void * handle, Byte__Array * dest, int32_t dest_offset, int32_t count, MonoIOError__Enum error, MethodInfo * method)); -DO_APP_FUNC(0x01B59250, int32_t, MonoIO_Read_1, (SafeHandle * safeHandle, Byte__Array * dest, int32_t dest_offset, int32_t count, MonoIOError__Enum error, MethodInfo * method)); -DO_APP_FUNC(0x01B59410, int32_t, MonoIO_Write, (void * handle, Byte__Array * src, int32_t src_offset, int32_t count, MonoIOError__Enum error, MethodInfo * method)); -DO_APP_FUNC(0x01B59470, int32_t, MonoIO_Write_1, (SafeHandle * safeHandle, Byte__Array * src, int32_t src_offset, int32_t count, MonoIOError__Enum error, MethodInfo * method)); -DO_APP_FUNC(0x01B595E0, int64_t, MonoIO_Seek, (void * handle, int64_t offset, SeekOrigin__Enum origin, MonoIOError__Enum error, MethodInfo * method)); -DO_APP_FUNC(0x01B59620, int64_t, MonoIO_Seek_1, (SafeHandle * safeHandle, int64_t offset, SeekOrigin__Enum origin, MonoIOError__Enum error, MethodInfo * method)); -DO_APP_FUNC(0x01B59790, int64_t, MonoIO_GetLength, (void * handle, MonoIOError__Enum error, MethodInfo * method)); -DO_APP_FUNC(0x01B597D0, int64_t, MonoIO_GetLength_1, (SafeHandle * safeHandle, MonoIOError__Enum error, MethodInfo * method)); -DO_APP_FUNC(0x01B59910, bool, MonoIO_SetLength, (void * handle, int64_t length, MonoIOError__Enum error, MethodInfo * method)); -DO_APP_FUNC(0x01B59920, bool, MonoIO_SetLength_1, (SafeHandle * safeHandle, int64_t length, MonoIOError__Enum error, MethodInfo * method)); +DO_APP_FUNC(0x01B58DE0, void *, MonoIO_Open, (uint16_t * filename, FileMode__Enum mode, FileAccess__Enum access, FileShare__Enum share, FileOptions__Enum options, MonoIOError__Enum * error, MethodInfo * method)); +DO_APP_FUNC(0x01B58EF0, void *, MonoIO_Open_1, (String * filename, FileMode__Enum mode, FileAccess__Enum access, FileShare__Enum share, FileOptions__Enum options, MonoIOError__Enum * error, MethodInfo * method)); +DO_APP_FUNC(0x01B59040, bool, MonoIO_Cancel_internal, (void * handle, MonoIOError__Enum * error, MethodInfo * method)); +DO_APP_FUNC(0x01B59060, bool, MonoIO_Cancel, (SafeHandle * safeHandle, MonoIOError__Enum * error, MethodInfo * method)); +DO_APP_FUNC(0x01B59180, bool, MonoIO_Close, (void * handle, MonoIOError__Enum * error, MethodInfo * method)); +DO_APP_FUNC(0x01B591C0, int32_t, MonoIO_Read, (void * handle, Byte__Array * dest, int32_t dest_offset, int32_t count, MonoIOError__Enum * error, MethodInfo * method)); +DO_APP_FUNC(0x01B59250, int32_t, MonoIO_Read_1, (SafeHandle * safeHandle, Byte__Array * dest, int32_t dest_offset, int32_t count, MonoIOError__Enum * error, MethodInfo * method)); +DO_APP_FUNC(0x01B59410, int32_t, MonoIO_Write, (void * handle, Byte__Array * src, int32_t src_offset, int32_t count, MonoIOError__Enum * error, MethodInfo * method)); +DO_APP_FUNC(0x01B59470, int32_t, MonoIO_Write_1, (SafeHandle * safeHandle, Byte__Array * src, int32_t src_offset, int32_t count, MonoIOError__Enum * error, MethodInfo * method)); +DO_APP_FUNC(0x01B595E0, int64_t, MonoIO_Seek, (void * handle, int64_t offset, SeekOrigin__Enum origin, MonoIOError__Enum * error, MethodInfo * method)); +DO_APP_FUNC(0x01B59620, int64_t, MonoIO_Seek_1, (SafeHandle * safeHandle, int64_t offset, SeekOrigin__Enum origin, MonoIOError__Enum * error, MethodInfo * method)); +DO_APP_FUNC(0x01B59790, int64_t, MonoIO_GetLength, (void * handle, MonoIOError__Enum * error, MethodInfo * method)); +DO_APP_FUNC(0x01B597D0, int64_t, MonoIO_GetLength_1, (SafeHandle * safeHandle, MonoIOError__Enum * error, MethodInfo * method)); +DO_APP_FUNC(0x01B59910, bool, MonoIO_SetLength, (void * handle, int64_t length, MonoIOError__Enum * error, MethodInfo * method)); +DO_APP_FUNC(0x01B59920, bool, MonoIO_SetLength_1, (SafeHandle * safeHandle, int64_t length, MonoIOError__Enum * error, MethodInfo * method)); DO_APP_FUNC(0x01B59A60, void *, MonoIO_get_ConsoleOutput, (MethodInfo * method)); DO_APP_FUNC(0x01B59A70, void *, MonoIO_get_ConsoleInput, (MethodInfo * method)); DO_APP_FUNC(0x01B59A80, void *, MonoIO_get_ConsoleError, (MethodInfo * method)); -DO_APP_FUNC(0x01B59A90, bool, MonoIO_CreatePipe, (void * read_handle, void * write_handle, MonoIOError__Enum error, MethodInfo * method)); -DO_APP_FUNC(0x01B59B90, bool, MonoIO_DuplicateHandle, (void * source_process_handle, void * source_handle, void * target_process_handle, void * target_handle, int32_t access, int32_t inherit, int32_t options, MonoIOError__Enum error, MethodInfo * method)); +DO_APP_FUNC(0x01B59A90, bool, MonoIO_CreatePipe, (void * * read_handle, void * * write_handle, MonoIOError__Enum * error, MethodInfo * method)); +DO_APP_FUNC(0x01B59B90, bool, MonoIO_DuplicateHandle, (void * source_process_handle, void * source_handle, void * target_process_handle, void * * target_handle, int32_t access, int32_t inherit, int32_t options, MonoIOError__Enum * error, MethodInfo * method)); DO_APP_FUNC(0x01B59CA0, uint16_t, MonoIO_get_VolumeSeparatorChar, (MethodInfo * method)); DO_APP_FUNC(0x01B59CB0, uint16_t, MonoIO_get_DirectorySeparatorChar, (MethodInfo * method)); DO_APP_FUNC(0x01B59CC0, uint16_t, MonoIO_get_AltDirectorySeparatorChar, (MethodInfo * method)); DO_APP_FUNC(0x01B59CD0, uint16_t, MonoIO_get_PathSeparator, (MethodInfo * method)); DO_APP_FUNC(0x01A77820, void, MonoIO_DumpHandles, (MethodInfo * method)); -DO_APP_FUNC(0x01B59CE0, bool, MonoIO_RemapPath, (String * path, String * newPath, MethodInfo * method)); +DO_APP_FUNC(0x01B59CE0, bool, MonoIO_RemapPath, (String * path, String * * newPath, MethodInfo * method)); DO_APP_FUNC(0x01B59CF0, void, MonoIO__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01B59D70, String *, Path_ChangeExtension, (String * path, String * extension, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00098, Path_ChangeExtension__MethodInfo); DO_APP_FUNC(0x01B59FC0, String *, Path_Combine, (String * path1, String * path2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00058, Path_Combine__MethodInfo); DO_APP_FUNC(0x01B5A330, String *, Path_CleanPath, (String * s, MethodInfo * method)); DO_APP_FUNC(0x01B5A820, String *, Path_GetDirectoryName, (String * path, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFFFE0, Path_GetDirectoryName__MethodInfo); DO_APP_FUNC(0x01B5ACF0, ReadOnlySpan_1_Char_, Path_GetDirectoryName_1, (ReadOnlySpan_1_Char_ path, MethodInfo * method)); DO_APP_FUNC(0x01B5ADD0, String *, Path_GetExtension, (String * path, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFFE10, Path_GetExtension__MethodInfo); DO_APP_FUNC(0x01B5AF10, String *, Path_GetFileName, (String * path, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFFDE8, Path_GetFileName__MethodInfo); DO_APP_FUNC(0x01B5B060, String *, Path_GetFileNameWithoutExtension, (String * path, MethodInfo * method)); DO_APP_FUNC(0x01B5B0C0, String *, Path_GetFullPath, (String * path, MethodInfo * method)); DO_APP_FUNC(0x01B5B110, String *, Path_GetFullPathInternal, (String * path, MethodInfo * method)); -DO_APP_FUNC(0x01B5B160, int32_t, Path_GetFullPathName, (String * path, int32_t numBufferChars, StringBuilder * buffer, void * lpFilePartOrNull, MethodInfo * method)); +DO_APP_FUNC(0x01B5B160, int32_t, Path_GetFullPathName, (String * path, int32_t numBufferChars, StringBuilder * buffer, void * * lpFilePartOrNull, MethodInfo * method)); DO_APP_FUNC(0x01B5B2E0, String *, Path_GetFullPathName_1, (String * path, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFFF08, Path_GetFullPathName_1__MethodInfo); DO_APP_FUNC(0x01B5B520, String *, Path_WindowsDriveAdjustment, (String * path, MethodInfo * method)); DO_APP_FUNC(0x01B5B760, String *, Path_InsecureGetFullPath, (String * path, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFFEE8, Path_InsecureGetFullPath__MethodInfo); DO_APP_FUNC(0x01B5BDA0, bool, Path_IsDirectorySeparator, (uint16_t c, MethodInfo * method)); DO_APP_FUNC(0x01B5BE30, String *, Path_GetPathRoot, (String * path, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFFE48, Path_GetPathRoot__MethodInfo); DO_APP_FUNC(0x01B5C2E0, String *, Path_GetTempFileName, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFFC88, Path_GetTempFileName__MethodInfo); DO_APP_FUNC(0x01B5C740, String *, Path_GetTempPath, (MethodInfo * method)); DO_APP_FUNC(0x01B5C910, String *, Path_get_temp_path, (MethodInfo * method)); DO_APP_FUNC(0x01B5C9B0, bool, Path_IsPathRooted, (ReadOnlySpan_1_Char_ path, MethodInfo * method)); DO_APP_FUNC(0x01B5CAE0, bool, Path_IsPathRooted_1, (String * path, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFFC40, Path_IsPathRooted_1__MethodInfo); DO_APP_FUNC(0x01B5CD30, Char__Array *, Path_GetInvalidFileNameChars, (MethodInfo * method)); DO_APP_FUNC(0x01B5CDA0, Char__Array *, Path_GetInvalidPathChars, (MethodInfo * method)); DO_APP_FUNC(0x01B5CE10, int32_t, Path_findExtension, (String * path, MethodInfo * method)); @@ -12665,9 +14218,12 @@ DO_APP_FUNC(0x01B5D330, String *, Path_GetServerAndShare, (String * path, Method DO_APP_FUNC(0x01B5D590, bool, Path_SameRoot, (String * root, String * path, MethodInfo * method)); DO_APP_FUNC(0x01B5D8F0, String *, Path_CanonicalizePath, (String * path, MethodInfo * method)); DO_APP_FUNC(0x01B5E0B0, String *, Path_Combine_1, (String__Array * paths, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFFCC0, Path_Combine_1__MethodInfo); DO_APP_FUNC(0x01B5E450, String *, Path_Combine_2, (String * path1, String * path2, String * path3, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFFB40, Path_Combine_2__MethodInfo); DO_APP_FUNC(0x01B5E6B0, void, Path_Validate, (String * path, MethodInfo * method)); DO_APP_FUNC(0x01B5E720, void, Path_Validate_1, (String * path, String * parameterName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFFB00, Path_Validate_1__MethodInfo); DO_APP_FUNC(0x01B5E920, ReadOnlySpan_1_Char_, Path_GetFileName_1, (ReadOnlySpan_1_Char_ path, MethodInfo * method)); DO_APP_FUNC(0x01B5EAD0, String *, Path_Join, (ReadOnlySpan_1_Char_ path1, ReadOnlySpan_1_Char_ path2, MethodInfo * method)); DO_APP_FUNC(0x01B5EB90, String *, Path_Join_1, (ReadOnlySpan_1_Char_ path1, ReadOnlySpan_1_Char_ path2, ReadOnlySpan_1_Char_ path3, MethodInfo * method)); @@ -12675,18 +14231,22 @@ DO_APP_FUNC(0x01B5EE30, String *, Path_JoinInternal, (ReadOnlySpan_1_Char_ first DO_APP_FUNC(0x01B5F390, String *, Path_JoinInternal_1, (ReadOnlySpan_1_Char_ first, ReadOnlySpan_1_Char_ second, ReadOnlySpan_1_Char_ third, MethodInfo * method)); DO_APP_FUNC(0x01B5FA00, String *, Path_GetRelativePath, (String * relativeTo, String * path, MethodInfo * method)); DO_APP_FUNC(0x01B5FB00, String *, Path_GetRelativePath_1, (String * relativeTo, String * path, StringComparison__Enum comparisonType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFFA18, Path_GetRelativePath_1__MethodInfo); DO_APP_FUNC(0x01B60290, StringComparison__Enum, Path_get_StringComparison, (MethodInfo * method)); DO_APP_FUNC(0x01B60340, bool, Path_get_IsCaseSensitive, (MethodInfo * method)); DO_APP_FUNC(0x01B603B0, bool, Path_get_IsWindows, (MethodInfo * method)); DO_APP_FUNC(0x01B603E0, void, Path_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Path_c__ctor, (Path_c * __this, MethodInfo * method)); DO_APP_FUNC(0x01B60490, void, Path_c__JoinInternal_b__59_0, (Path_c * __this, Span_1_Char_ destination, ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean_ state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFFBD8, Path_c__JoinInternal_b__59_0__MethodInfo); DO_APP_FUNC(0x01B606F0, void, Path_c__JoinInternal_b__60_0, (Path_c * __this, Span_1_Char_ destination, ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean_ state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFFB88, Path_c__JoinInternal_b__60_0__MethodInfo); DO_APP_FUNC(0x01B60AB0, void, UnexceptionalStreamReader__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01B60BA0, void, UnexceptionalStreamReader__ctor, (UnexceptionalStreamReader * __this, Stream * stream, Encoding * encoding, MethodInfo * method)); DO_APP_FUNC(0x01B60C30, int32_t, UnexceptionalStreamReader_Peek, (UnexceptionalStreamReader * __this, MethodInfo * method)); DO_APP_FUNC(0x01B60C50, int32_t, UnexceptionalStreamReader_Read, (UnexceptionalStreamReader * __this, MethodInfo * method)); DO_APP_FUNC(0x01B60C70, int32_t, UnexceptionalStreamReader_Read_1, (UnexceptionalStreamReader * __this, Char__Array * dest_buffer, int32_t index, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFFAC0, UnexceptionalStreamReader_Read_1__MethodInfo); DO_APP_FUNC(0x01B60F00, bool, UnexceptionalStreamReader_CheckEOL, (UnexceptionalStreamReader * __this, uint16_t current, MethodInfo * method)); DO_APP_FUNC(0x01B610E0, String *, UnexceptionalStreamReader_ReadLine, (UnexceptionalStreamReader * __this, MethodInfo * method)); DO_APP_FUNC(0x01B61100, String *, UnexceptionalStreamReader_ReadToEnd, (UnexceptionalStreamReader * __this, MethodInfo * method)); @@ -12700,6 +14260,7 @@ DO_APP_FUNC(0x01B61390, void, CStreamReader__ctor, (CStreamReader * __this, Stre DO_APP_FUNC(0x01B60C30, int32_t, CStreamReader_Peek, (CStreamReader * __this, MethodInfo * method)); DO_APP_FUNC(0x01B61530, int32_t, CStreamReader_Read, (CStreamReader * __this, MethodInfo * method)); DO_APP_FUNC(0x01B616E0, int32_t, CStreamReader_Read_1, (CStreamReader * __this, Char__Array * dest, int32_t index, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF890, CStreamReader_Read_1__MethodInfo); DO_APP_FUNC(0x01B618B0, String *, CStreamReader_ReadLine, (CStreamReader * __this, MethodInfo * method)); DO_APP_FUNC(0x01B618E0, String *, CStreamReader_ReadToEnd, (CStreamReader * __this, MethodInfo * method)); DO_APP_FUNC(0x01B61910, void, CStreamWriter__ctor, (CStreamWriter * __this, Stream * stream, Encoding * encoding, bool leaveOpen, MethodInfo * method)); @@ -12711,34 +14272,42 @@ DO_APP_FUNC(0x01B620B0, void, CStreamWriter_InternalWriteChars, (CStreamWriter * DO_APP_FUNC(0x01B620D0, void, CStreamWriter_Write_2, (CStreamWriter * __this, Char__Array * val, MethodInfo * method)); DO_APP_FUNC(0x01B62110, void, CStreamWriter_Write_3, (CStreamWriter * __this, String * val, MethodInfo * method)); DO_APP_FUNC(0x01B62170, void, CStreamWriter_WriteLine, (CStreamWriter * __this, String * val, MethodInfo * method)); -DO_APP_FUNC(0x01B621C0, void, FileSystemEntry_Initialize, (FileSystemEntry entry, Interop_NtDll_FILE_FULL_DIR_INFORMATION * info, ReadOnlySpan_1_Char_ directory, ReadOnlySpan_1_Char_ rootDirectory, ReadOnlySpan_1_Char_ originalRootDirectory, MethodInfo * method)); -DO_APP_FUNC(0x00C16880, ReadOnlySpan_1_Char_, FileSystemEntry_get_Directory, (FileSystemEntry__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B621E0, void, FileSystemEntry_set_Directory, (FileSystemEntry__Boxed * __this, ReadOnlySpan_1_Char_ value, MethodInfo * method)); -DO_APP_FUNC(0x0093E890, ReadOnlySpan_1_Char_, FileSystemEntry_get_RootDirectory, (FileSystemEntry__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x011C24B0, void, FileSystemEntry_set_RootDirectory, (FileSystemEntry__Boxed * __this, ReadOnlySpan_1_Char_ value, MethodInfo * method)); -DO_APP_FUNC(0x010F8990, ReadOnlySpan_1_Char_, FileSystemEntry_get_OriginalRootDirectory, (FileSystemEntry__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B621F0, void, FileSystemEntry_set_OriginalRootDirectory, (FileSystemEntry__Boxed * __this, ReadOnlySpan_1_Char_ value, MethodInfo * method)); -DO_APP_FUNC(0x01B62200, ReadOnlySpan_1_Char_, FileSystemEntry_get_FileName, (FileSystemEntry__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B622A0, FileAttributes__Enum, FileSystemEntry_get_Attributes, (FileSystemEntry__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B622C0, bool, FileSystemEntry_get_IsDirectory, (FileSystemEntry__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B622E0, String *, FileSystemEntry_ToSpecifiedFullPath, (FileSystemEntry__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B62600, void, FileSystemEnumerableFactory_NormalizeInputs, (String * directory, String * expression, EnumerationOptions * options, MethodInfo * method)); +DO_APP_FUNC(0x01B621C0, void, FileSystemEntry_Initialize, (FileSystemEntry * entry, Interop_NtDll_FILE_FULL_DIR_INFORMATION * info, ReadOnlySpan_1_Char_ directory, ReadOnlySpan_1_Char_ rootDirectory, ReadOnlySpan_1_Char_ originalRootDirectory, MethodInfo * method)); +DO_APP_FUNC(0x00C16880, ReadOnlySpan_1_Char_, FileSystemEntry_get_Directory, (FileSystemEntry * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B621E0, void, FileSystemEntry_set_Directory, (FileSystemEntry * __this, ReadOnlySpan_1_Char_ value, MethodInfo * method)); +DO_APP_FUNC(0x0093E890, ReadOnlySpan_1_Char_, FileSystemEntry_get_RootDirectory, (FileSystemEntry * __this, MethodInfo * method)); +DO_APP_FUNC(0x011C24B0, void, FileSystemEntry_set_RootDirectory, (FileSystemEntry * __this, ReadOnlySpan_1_Char_ value, MethodInfo * method)); +DO_APP_FUNC(0x010F8990, ReadOnlySpan_1_Char_, FileSystemEntry_get_OriginalRootDirectory, (FileSystemEntry * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B621F0, void, FileSystemEntry_set_OriginalRootDirectory, (FileSystemEntry * __this, ReadOnlySpan_1_Char_ value, MethodInfo * method)); +DO_APP_FUNC(0x01B62200, ReadOnlySpan_1_Char_, FileSystemEntry_get_FileName, (FileSystemEntry * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B622A0, FileAttributes__Enum, FileSystemEntry_get_Attributes, (FileSystemEntry * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B622C0, bool, FileSystemEntry_get_IsDirectory, (FileSystemEntry * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B622E0, String *, FileSystemEntry_ToSpecifiedFullPath, (FileSystemEntry * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B62600, void, FileSystemEnumerableFactory_NormalizeInputs, (String * * directory, String * * expression, EnumerationOptions * options, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF960, FileSystemEnumerableFactory_NormalizeInputs__MethodInfo); DO_APP_FUNC(0x01B62D90, bool, FileSystemEnumerableFactory_MatchesPattern, (String * expression, ReadOnlySpan_1_Char_ name, EnumerationOptions * options, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF930, FileSystemEnumerableFactory_MatchesPattern__MethodInfo); DO_APP_FUNC(0x01B63090, IEnumerable_1_System_String_ *, FileSystemEnumerableFactory_UserFiles, (String * directory, String * expression, EnumerationOptions * options, MethodInfo * method)); DO_APP_FUNC(0x01B633D0, IEnumerable_1_System_String_ *, FileSystemEnumerableFactory_UserDirectories, (String * directory, String * expression, EnumerationOptions * options, MethodInfo * method)); DO_APP_FUNC(0x01B63710, IEnumerable_1_System_String_ *, FileSystemEnumerableFactory_UserEntries, (String * directory, String * expression, EnumerationOptions * options, MethodInfo * method)); DO_APP_FUNC(0x01B63A50, void, FileSystemEnumerableFactory__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, FileSystemEnumerableFactory_c_DisplayClass3_0__ctor, (FileSystemEnumerableFactory_c_DisplayClass3_0 * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B63B30, bool, FileSystemEnumerableFactory_c_DisplayClass3_0__UserFiles_b__1, (FileSystemEnumerableFactory_c_DisplayClass3_0 * __this, FileSystemEntry entry, MethodInfo * method)); +DO_APP_FUNC(0x01B63B30, bool, FileSystemEnumerableFactory_c_DisplayClass3_0__UserFiles_b__1, (FileSystemEnumerableFactory_c_DisplayClass3_0 * __this, FileSystemEntry * entry, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF8B0, FileSystemEnumerableFactory_c_DisplayClass3_0__UserFiles_b__1__MethodInfo); DO_APP_FUNC(0x01B63C50, void, FileSystemEnumerableFactory_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, FileSystemEnumerableFactory_c__ctor, (FileSystemEnumerableFactory_c * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B63D00, String *, FileSystemEnumerableFactory_c__UserFiles_b__3_0, (FileSystemEnumerableFactory_c * __this, FileSystemEntry entry, MethodInfo * method)); -DO_APP_FUNC(0x01B63D00, String *, FileSystemEnumerableFactory_c__UserDirectories_b__4_0, (FileSystemEnumerableFactory_c * __this, FileSystemEntry entry, MethodInfo * method)); -DO_APP_FUNC(0x01B63D00, String *, FileSystemEnumerableFactory_c__UserEntries_b__5_0, (FileSystemEnumerableFactory_c * __this, FileSystemEntry entry, MethodInfo * method)); +DO_APP_FUNC(0x01B63D00, String *, FileSystemEnumerableFactory_c__UserFiles_b__3_0, (FileSystemEnumerableFactory_c * __this, FileSystemEntry * entry, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF8C8, FileSystemEnumerableFactory_c__UserFiles_b__3_0__MethodInfo); +DO_APP_FUNC(0x01B63D00, String *, FileSystemEnumerableFactory_c__UserDirectories_b__4_0, (FileSystemEnumerableFactory_c * __this, FileSystemEntry * entry, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF738, FileSystemEnumerableFactory_c__UserDirectories_b__4_0__MethodInfo); +DO_APP_FUNC(0x01B63D00, String *, FileSystemEnumerableFactory_c__UserEntries_b__5_0, (FileSystemEnumerableFactory_c * __this, FileSystemEntry * entry, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF708, FileSystemEnumerableFactory_c__UserEntries_b__5_0__MethodInfo); DO_APP_FUNC(0x003AE050, void, FileSystemEnumerableFactory_c_DisplayClass4_0__ctor, (FileSystemEnumerableFactory_c_DisplayClass4_0 * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B63D10, bool, FileSystemEnumerableFactory_c_DisplayClass4_0__UserDirectories_b__1, (FileSystemEnumerableFactory_c_DisplayClass4_0 * __this, FileSystemEntry entry, MethodInfo * method)); +DO_APP_FUNC(0x01B63D10, bool, FileSystemEnumerableFactory_c_DisplayClass4_0__UserDirectories_b__1, (FileSystemEnumerableFactory_c_DisplayClass4_0 * __this, FileSystemEntry * entry, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF728, FileSystemEnumerableFactory_c_DisplayClass4_0__UserDirectories_b__1__MethodInfo); DO_APP_FUNC(0x003AE050, void, FileSystemEnumerableFactory_c_DisplayClass5_0__ctor, (FileSystemEnumerableFactory_c_DisplayClass5_0 * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B63E30, bool, FileSystemEnumerableFactory_c_DisplayClass5_0__UserEntries_b__1, (FileSystemEnumerableFactory_c_DisplayClass5_0 * __this, FileSystemEntry entry, MethodInfo * method)); +DO_APP_FUNC(0x01B63E30, bool, FileSystemEnumerableFactory_c_DisplayClass5_0__UserEntries_b__1, (FileSystemEnumerableFactory_c_DisplayClass5_0 * __this, FileSystemEntry * entry, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF6F8, FileSystemEnumerableFactory_c_DisplayClass5_0__UserEntries_b__1__MethodInfo); DO_APP_FUNC(0x01B63F30, String *, FileSystemName_TranslateWin32Expression, (String * expression, MethodInfo * method)); DO_APP_FUNC(0x01B64340, bool, FileSystemName_MatchesWin32Expression, (ReadOnlySpan_1_Char_ expression, ReadOnlySpan_1_Char_ name, bool ignoreCase, MethodInfo * method)); DO_APP_FUNC(0x01B643D0, bool, FileSystemName_MatchesSimpleExpression, (ReadOnlySpan_1_Char_ expression, ReadOnlySpan_1_Char_ name, bool ignoreCase, MethodInfo * method)); @@ -12746,11 +14315,12 @@ DO_APP_FUNC(0x01B64460, bool, FileSystemName_MatchPattern, (ReadOnlySpan_1_Char_ DO_APP_FUNC(0x01B64F80, void, FileSystemName__cctor, (MethodInfo * method)); DO_APP_FUNC(0x00843C60, uint32_t, _PrivateImplementationDetails__ComputeStringHash, (String * s, MethodInfo * method)); DO_APP_FUNC(0x01B65120, void, ThrowStub_ThrowNotSupportedException, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF5A0, ThrowStub_ThrowNotSupportedException__MethodInfo); DO_APP_FUNC(0x004554F0, bool, AmplifyOcclusionEffect_get_UsingTemporalFilter, (AmplifyOcclusionEffect * __this, MethodInfo * method)); DO_APP_FUNC(0x00455580, bool, AmplifyOcclusionEffect_get_UsingMotionVectors, (AmplifyOcclusionEffect * __this, MethodInfo * method)); DO_APP_FUNC(0x004555B0, bool, AmplifyOcclusionEffect_get_UsingFilterDownsample, (AmplifyOcclusionEffect * __this, MethodInfo * method)); -DO_APP_FUNC(0x004555D0, void, AmplifyOcclusionEffect_createCommandBuffer, (AmplifyOcclusionEffect * __this, AmplifyOcclusionEffect_CmdBuffer aCmdBuffer, String * aCmdBufferName, CameraEvent__Enum aCameraEvent, MethodInfo * method)); -DO_APP_FUNC(0x004557B0, void, AmplifyOcclusionEffect_cleanupCommandBuffer, (AmplifyOcclusionEffect * __this, AmplifyOcclusionEffect_CmdBuffer aCmdBuffer, MethodInfo * method)); +DO_APP_FUNC(0x004555D0, void, AmplifyOcclusionEffect_createCommandBuffer, (AmplifyOcclusionEffect * __this, AmplifyOcclusionEffect_CmdBuffer * aCmdBuffer, String * aCmdBufferName, CameraEvent__Enum aCameraEvent, MethodInfo * method)); +DO_APP_FUNC(0x004557B0, void, AmplifyOcclusionEffect_cleanupCommandBuffer, (AmplifyOcclusionEffect * __this, AmplifyOcclusionEffect_CmdBuffer * aCmdBuffer, MethodInfo * method)); DO_APP_FUNC(0x004559E0, void, AmplifyOcclusionEffect_createQuadMesh, (AmplifyOcclusionEffect * __this, MethodInfo * method)); DO_APP_FUNC(0x004560D0, void, AmplifyOcclusionEffect_PerformBlit, (AmplifyOcclusionEffect * __this, CommandBuffer * cb, Material * mat, int32_t pass, MethodInfo * method)); DO_APP_FUNC(0x004561D0, void, AmplifyOcclusionEffect_checkMaterials, (AmplifyOcclusionEffect * __this, bool aThroughErrorMsg, MethodInfo * method)); @@ -12790,6 +14360,7 @@ DO_APP_FUNC(0x003AE050, void, AstarBehaviorSelection_EnableBehavior_d_24_System_ DO_APP_FUNC(0x00463A80, bool, AstarBehaviorSelection_EnableBehavior_d_24_MoveNext, (AstarBehaviorSelection_EnableBehavior_d_24 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, AstarBehaviorSelection_EnableBehavior_d_24_System_Collections_Generic_IEnumerator_System_Object__get_Current, (AstarBehaviorSelection_EnableBehavior_d_24 * __this, MethodInfo * method)); DO_APP_FUNC(0x00463BD0, void, AstarBehaviorSelection_EnableBehavior_d_24_System_Collections_IEnumerator_Reset, (AstarBehaviorSelection_EnableBehavior_d_24 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D121E8, AstarBehaviorSelection_EnableBehavior_d_24_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, AstarBehaviorSelection_EnableBehavior_d_24_System_Collections_IEnumerator_get_Current, (AstarBehaviorSelection_EnableBehavior_d_24 * __this, MethodInfo * method)); DO_APP_FUNC(0x00463C20, void, BehaviorSelection_Start, (BehaviorSelection * __this, MethodInfo * method)); DO_APP_FUNC(0x00465410, void, BehaviorSelection_OnGUI, (BehaviorSelection * __this, MethodInfo * method)); @@ -12804,6 +14375,7 @@ DO_APP_FUNC(0x003AE050, void, BehaviorSelection_EnableBehavior_d_25_System_IDisp DO_APP_FUNC(0x00469750, bool, BehaviorSelection_EnableBehavior_d_25_MoveNext, (BehaviorSelection_EnableBehavior_d_25 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, BehaviorSelection_EnableBehavior_d_25_System_Collections_Generic_IEnumerator_System_Object__get_Current, (BehaviorSelection_EnableBehavior_d_25 * __this, MethodInfo * method)); DO_APP_FUNC(0x004698A0, void, BehaviorSelection_EnableBehavior_d_25_System_Collections_IEnumerator_Reset, (BehaviorSelection_EnableBehavior_d_25 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12128, BehaviorSelection_EnableBehavior_d_25_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, BehaviorSelection_EnableBehavior_d_25_System_Collections_IEnumerator_get_Current, (BehaviorSelection_EnableBehavior_d_25 * __this, MethodInfo * method)); DO_APP_FUNC(0x004698F0, void, BlurController_OnEnable, (BlurController * __this, MethodInfo * method)); DO_APP_FUNC(0x00469970, void, BlurController_OnBlurOut, (BlurController * __this, MethodInfo * method)); @@ -12815,6 +14387,7 @@ DO_APP_FUNC(0x003AE050, void, BlurController_BlurOut_d_4_System_IDisposable_Disp DO_APP_FUNC(0x00469C10, bool, BlurController_BlurOut_d_4_MoveNext, (BlurController_BlurOut_d_4 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, BlurController_BlurOut_d_4_System_Collections_Generic_IEnumerator_System_Object__get_Current, (BlurController_BlurOut_d_4 * __this, MethodInfo * method)); DO_APP_FUNC(0x00469FA0, void, BlurController_BlurOut_d_4_System_Collections_IEnumerator_Reset, (BlurController_BlurOut_d_4 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12100, BlurController_BlurOut_d_4_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, BlurController_BlurOut_d_4_System_Collections_IEnumerator_get_Current, (BlurController_BlurOut_d_4 * __this, MethodInfo * method)); DO_APP_FUNC(0x00469FF0, void, CameraFadeController_Awake, (CameraFadeController * __this, MethodInfo * method)); DO_APP_FUNC(0x0046A070, IEnumerator *, CameraFadeController_FadeIn, (CameraFadeController * __this, MethodInfo * method)); @@ -12830,12 +14403,14 @@ DO_APP_FUNC(0x003AE050, void, CameraFadeController_FadeIn_d_6_System_IDisposable DO_APP_FUNC(0x0046A790, bool, CameraFadeController_FadeIn_d_6_MoveNext, (CameraFadeController_FadeIn_d_6 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, CameraFadeController_FadeIn_d_6_System_Collections_Generic_IEnumerator_System_Object__get_Current, (CameraFadeController_FadeIn_d_6 * __this, MethodInfo * method)); DO_APP_FUNC(0x0046AA50, void, CameraFadeController_FadeIn_d_6_System_Collections_IEnumerator_Reset, (CameraFadeController_FadeIn_d_6 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D120D0, CameraFadeController_FadeIn_d_6_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, CameraFadeController_FadeIn_d_6_System_Collections_IEnumerator_get_Current, (CameraFadeController_FadeIn_d_6 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, CameraFadeController_FadeOut_d_7__ctor, (CameraFadeController_FadeOut_d_7 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CameraFadeController_FadeOut_d_7_System_IDisposable_Dispose, (CameraFadeController_FadeOut_d_7 * __this, MethodInfo * method)); DO_APP_FUNC(0x0046AAA0, bool, CameraFadeController_FadeOut_d_7_MoveNext, (CameraFadeController_FadeOut_d_7 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, CameraFadeController_FadeOut_d_7_System_Collections_Generic_IEnumerator_System_Object__get_Current, (CameraFadeController_FadeOut_d_7 * __this, MethodInfo * method)); DO_APP_FUNC(0x0046AD70, void, CameraFadeController_FadeOut_d_7_System_Collections_IEnumerator_Reset, (CameraFadeController_FadeOut_d_7 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D120C0, CameraFadeController_FadeOut_d_7_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, CameraFadeController_FadeOut_d_7_System_Collections_IEnumerator_get_Current, (CameraFadeController_FadeOut_d_7 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, HairDesignerMeshInstance__ctor, (HairDesignerMeshInstance * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, MLPForceSaveProbes__ctor, (MLPForceSaveProbes * __this, MethodInfo * method)); @@ -12858,6 +14433,7 @@ DO_APP_FUNC(0x003AE050, void, LightAnimationAdvanced_LightAnim_d_10_System_IDisp DO_APP_FUNC(0x0046C2A0, bool, LightAnimationAdvanced_LightAnim_d_10_MoveNext, (LightAnimationAdvanced_LightAnim_d_10 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, LightAnimationAdvanced_LightAnim_d_10_System_Collections_Generic_IEnumerator_System_Object__get_Current, (LightAnimationAdvanced_LightAnim_d_10 * __this, MethodInfo * method)); DO_APP_FUNC(0x0046C710, void, LightAnimationAdvanced_LightAnim_d_10_System_Collections_IEnumerator_Reset, (LightAnimationAdvanced_LightAnim_d_10 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11FE0, LightAnimationAdvanced_LightAnim_d_10_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, LightAnimationAdvanced_LightAnim_d_10_System_Collections_IEnumerator_get_Current, (LightAnimationAdvanced_LightAnim_d_10 * __this, MethodInfo * method)); DO_APP_FUNC(0x0046C760, void, LightAnimationSimple_Awake, (LightAnimationSimple * __this, MethodInfo * method)); DO_APP_FUNC(0x0046C8A0, void, LightAnimationSimple_OnEnable, (LightAnimationSimple * __this, MethodInfo * method)); @@ -12869,6 +14445,7 @@ DO_APP_FUNC(0x003AE050, void, LightAnimationSimple_FlameAnimation_d_8_System_IDi DO_APP_FUNC(0x0046CAA0, bool, LightAnimationSimple_FlameAnimation_d_8_MoveNext, (LightAnimationSimple_FlameAnimation_d_8 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, LightAnimationSimple_FlameAnimation_d_8_System_Collections_Generic_IEnumerator_System_Object__get_Current, (LightAnimationSimple_FlameAnimation_d_8 * __this, MethodInfo * method)); DO_APP_FUNC(0x0046D0F0, void, LightAnimationSimple_FlameAnimation_d_8_System_Collections_IEnumerator_Reset, (LightAnimationSimple_FlameAnimation_d_8 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11FA0, LightAnimationSimple_FlameAnimation_d_8_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, LightAnimationSimple_FlameAnimation_d_8_System_Collections_IEnumerator_get_Current, (LightAnimationSimple_FlameAnimation_d_8 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, NL_MCS_IgnoreShadowCastingSwitch__ctor, (NL_MCS_IgnoreShadowCastingSwitch * __this, MethodInfo * method)); DO_APP_FUNC(0x0046D140, void, RockingChairRocker_Awake, (RockingChairRocker * __this, MethodInfo * method)); @@ -12889,9 +14466,12 @@ DO_APP_FUNC(0x0046E840, void, AINearbyPerks_FixedUpdate, (AINearbyPerks * __this DO_APP_FUNC(0x0046EC20, void, AINearbyPerks_OnSlowedByPerk, (AINearbyPerks * __this, bool active, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, AINearbyPerks__ctor, (AINearbyPerks * __this, MethodInfo * method)); DO_APP_FUNC(0x0046F2C0, void, AINearbyPerks__OnSlowedByPerk_b__12_0, (AINearbyPerks * __this, float val, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11DB0, AINearbyPerks__OnSlowedByPerk_b__12_0__MethodInfo); DO_APP_FUNC(0x0046F440, void, AINearbyPerks__OnSlowedByPerk_b__12_1, (AINearbyPerks * __this, float val, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11DA8, AINearbyPerks__OnSlowedByPerk_b__12_1__MethodInfo); DO_APP_FUNC(0x003AE050, void, AINearbyPerks_c_DisplayClass12_0__ctor, (AINearbyPerks_c_DisplayClass12_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0046F4A0, void, AINearbyPerks_c_DisplayClass12_0__OnSlowedByPerk_b__2, (AINearbyPerks_c_DisplayClass12_0 * __this, float val, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11D90, AINearbyPerks_c_DisplayClass12_0__OnSlowedByPerk_b__2__MethodInfo); DO_APP_FUNC(0x0046F500, AIObjectPool *, AIObjectPool_get_Instance, (MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, AIObjectPool_PreloadedPrefab__Array *, AIObjectPool_get_PreloadedPrefabs, (AIObjectPool * __this, MethodInfo * method)); DO_APP_FUNC(0x0046F650, void, AIObjectPool_OnEnable, (AIObjectPool * __this, MethodInfo * method)); @@ -12909,11 +14489,12 @@ DO_APP_FUNC(0x004708C0, void, AIObjectPool_Destroy, (GameObject * instantiatedOb DO_APP_FUNC(0x004709F0, void, AIObjectPool_DestroyInternal, (AIObjectPool * __this, GameObject * instantiatedObject, MethodInfo * method)); DO_APP_FUNC(0x00470E60, void, AIObjectPool_DestroyLocal, (AIObjectPool * __this, GameObject * instantiatedObject, int32_t originalInstanceID, MethodInfo * method)); DO_APP_FUNC(0x004713F0, void, AIObjectPool_SceneUnloaded, (AIObjectPool * __this, Scene scene, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11CF8, AIObjectPool_SceneUnloaded__MethodInfo); DO_APP_FUNC(0x00471530, void, AIObjectPool_OnDisable, (AIObjectPool * __this, MethodInfo * method)); DO_APP_FUNC(0x004715E0, void, AIObjectPool_OnResetGame, (AIObjectPool * __this, MethodInfo * method)); DO_APP_FUNC(0x00471680, void, AIObjectPool__ctor, (AIObjectPool * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, GameObject *, AIObjectPool_PreloadedPrefab_get_Prefab, (AIObjectPool_PreloadedPrefab__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471920, int32_t, AIObjectPool_PreloadedPrefab_get_Count, (AIObjectPool_PreloadedPrefab__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, GameObject *, AIObjectPool_PreloadedPrefab_get_Prefab, (AIObjectPool_PreloadedPrefab * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471920, int32_t, AIObjectPool_PreloadedPrefab_get_Count, (AIObjectPool_PreloadedPrefab * __this, MethodInfo * method)); DO_APP_FUNC(0x00471930, void, AIPatrolDeathTrigger_Start, (AIPatrolDeathTrigger * __this, MethodInfo * method)); DO_APP_FUNC(0x00471B00, void, AIPatrolDeathTrigger_OnTriggerEnter, (AIPatrolDeathTrigger * __this, Collider * collider, MethodInfo * method)); DO_APP_FUNC(0x00471C70, void, AIPatrolDeathTrigger__ctor, (AIPatrolDeathTrigger * __this, MethodInfo * method)); @@ -12925,7 +14506,9 @@ DO_APP_FUNC(0x004722D0, void, GoatBehaviour_Attached, (GoatBehaviour * __this, M DO_APP_FUNC(0x00472B20, IEnumerator *, GoatBehaviour_DelayBah, (GoatBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00472BC0, IEnumerator *, GoatBehaviour_FleeBah, (GoatBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00472C60, void, GoatBehaviour_OnAbilityIndex, (GoatBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D118C8, GoatBehaviour_OnAbilityIndex__MethodInfo); DO_APP_FUNC(0x004737D0, void, GoatBehaviour_OnMoving, (GoatBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D118B0, GoatBehaviour_OnMoving__MethodInfo); DO_APP_FUNC(0x00473A80, bool, GoatBehaviour_IsEating, (GoatBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00473B30, BoltEntity *, GoatBehaviour_GetHayBeingEaten, (GoatBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00473BE0, void, GoatBehaviour_SetHayBeingEaten, (GoatBehaviour * __this, BoltEntity * hay, MethodInfo * method)); @@ -12934,19 +14517,24 @@ DO_APP_FUNC(0x00473DF0, IEnumerator *, GoatBehaviour_WaitUntilEndOfFrameToEatHay DO_APP_FUNC(0x00473E90, void, GoatBehaviour_Spawn, (GoatBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00473F10, void, GoatBehaviour_Detached, (GoatBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00474110, void, GoatBehaviour_OnHayEaten, (GoatBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D118C0, GoatBehaviour_OnHayEaten__MethodInfo); DO_APP_FUNC(0x00474430, void, GoatBehaviour_SetInitialGoatSpawn, (GoatBehaviour * __this, InitialGoatSpawn * spawn, MethodInfo * method)); DO_APP_FUNC(0x00474490, bool, GoatBehaviour_IsInLockedRoom, (GoatBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00474710, void, GoatBehaviour_SetLockedDoor, (GoatBehaviour * __this, DoorBehaviour * doorBehaviour, MethodInfo * method)); DO_APP_FUNC(0x003C1700, Behavior *, GoatBehaviour_GetMainBehaviour, (GoatBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00474770, void, GoatBehaviour_StopMainBehaviour, (GoatBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00474890, void, GoatBehaviour_OnGlobalGoatBurnEvent, (GoatBehaviour * __this, int32_t numObjectsBurned, BoltEntity * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11908, GoatBehaviour_OnGlobalGoatBurnEvent__MethodInfo); DO_APP_FUNC(0x004749E0, void, GoatBehaviour_SetInsideAntiWanderCollider, (GoatBehaviour * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x004749F0, bool, GoatBehaviour_IsInsideAntiWanderCollider, (GoatBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00474A00, void, GoatBehaviour_FixedUpdate, (GoatBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00474D20, void, GoatBehaviour_OnStartEating, (GoatBehaviour * __this, GameObject * hay, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11970, GoatBehaviour_OnStartEating__MethodInfo); DO_APP_FUNC(0x004750B0, void, GoatBehaviour_Footstep, (GoatBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x004752C0, void, GoatBehaviour_OnSpeedUp, (GoatBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11978, GoatBehaviour_OnSpeedUp__MethodInfo); DO_APP_FUNC(0x00475540, void, GoatBehaviour_OnSlowDown, (GoatBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11980, GoatBehaviour_OnSlowDown__MethodInfo); DO_APP_FUNC(0x004757C0, void, GoatBehaviour_OnDestroy, (GoatBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00475AE0, void, GoatBehaviour__ctor, (GoatBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, GoatBehaviour_DelayBah_d_35__ctor, (GoatBehaviour_DelayBah_d_35 * __this, int32_t __1__state, MethodInfo * method)); @@ -12954,24 +14542,28 @@ DO_APP_FUNC(0x003AE050, void, GoatBehaviour_DelayBah_d_35_System_IDisposable_Dis DO_APP_FUNC(0x00475CD0, bool, GoatBehaviour_DelayBah_d_35_MoveNext, (GoatBehaviour_DelayBah_d_35 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, GoatBehaviour_DelayBah_d_35_System_Collections_Generic_IEnumerator_System_Object__get_Current, (GoatBehaviour_DelayBah_d_35 * __this, MethodInfo * method)); DO_APP_FUNC(0x00475FA0, void, GoatBehaviour_DelayBah_d_35_System_Collections_IEnumerator_Reset, (GoatBehaviour_DelayBah_d_35 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D133A0, GoatBehaviour_DelayBah_d_35_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, GoatBehaviour_DelayBah_d_35_System_Collections_IEnumerator_get_Current, (GoatBehaviour_DelayBah_d_35 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, GoatBehaviour_FleeBah_d_36__ctor, (GoatBehaviour_FleeBah_d_36 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GoatBehaviour_FleeBah_d_36_System_IDisposable_Dispose, (GoatBehaviour_FleeBah_d_36 * __this, MethodInfo * method)); DO_APP_FUNC(0x00475FF0, bool, GoatBehaviour_FleeBah_d_36_MoveNext, (GoatBehaviour_FleeBah_d_36 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, GoatBehaviour_FleeBah_d_36_System_Collections_Generic_IEnumerator_System_Object__get_Current, (GoatBehaviour_FleeBah_d_36 * __this, MethodInfo * method)); DO_APP_FUNC(0x004761E0, void, GoatBehaviour_FleeBah_d_36_System_Collections_IEnumerator_Reset, (GoatBehaviour_FleeBah_d_36 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13388, GoatBehaviour_FleeBah_d_36_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, GoatBehaviour_FleeBah_d_36_System_Collections_IEnumerator_get_Current, (GoatBehaviour_FleeBah_d_36 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, GoatBehaviour_WaitUntilEndOfFrameToEatHay_d_43__ctor, (GoatBehaviour_WaitUntilEndOfFrameToEatHay_d_43 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GoatBehaviour_WaitUntilEndOfFrameToEatHay_d_43_System_IDisposable_Dispose, (GoatBehaviour_WaitUntilEndOfFrameToEatHay_d_43 * __this, MethodInfo * method)); DO_APP_FUNC(0x00476230, bool, GoatBehaviour_WaitUntilEndOfFrameToEatHay_d_43_MoveNext, (GoatBehaviour_WaitUntilEndOfFrameToEatHay_d_43 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, GoatBehaviour_WaitUntilEndOfFrameToEatHay_d_43_System_Collections_Generic_IEnumerator_System_Object__get_Current, (GoatBehaviour_WaitUntilEndOfFrameToEatHay_d_43 * __this, MethodInfo * method)); DO_APP_FUNC(0x004764C0, void, GoatBehaviour_WaitUntilEndOfFrameToEatHay_d_43_System_Collections_IEnumerator_Reset, (GoatBehaviour_WaitUntilEndOfFrameToEatHay_d_43 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13368, GoatBehaviour_WaitUntilEndOfFrameToEatHay_d_43_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, GoatBehaviour_WaitUntilEndOfFrameToEatHay_d_43_System_Collections_IEnumerator_get_Current, (GoatBehaviour_WaitUntilEndOfFrameToEatHay_d_43 * __this, MethodInfo * method)); DO_APP_FUNC(0x00476510, void, GoatEscapeDoorOpen_Awake, (GoatEscapeDoorOpen * __this, MethodInfo * method)); DO_APP_FUNC(0x00476630, void, GoatEscapeDoorOpen_Start, (GoatEscapeDoorOpen * __this, MethodInfo * method)); DO_APP_FUNC(0x00476750, void, GoatEscapeDoorOpen_Attached, (GoatEscapeDoorOpen * __this, MethodInfo * method)); DO_APP_FUNC(0x004768E0, void, GoatEscapeDoorOpen_OnTriggerEnter, (GoatEscapeDoorOpen * __this, Collider * other, MethodInfo * method)); DO_APP_FUNC(0x00476AF0, void, GoatEscapeDoorOpen_OnEscapeGoatDetached, (GoatEscapeDoorOpen * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13348, GoatEscapeDoorOpen_OnEscapeGoatDetached__MethodInfo); DO_APP_FUNC(0x00476BB0, IEnumerator *, GoatEscapeDoorOpen_TurnOffAnnaOpeningDoor, (GoatEscapeDoorOpen * __this, MethodInfo * method)); DO_APP_FUNC(0x00476C50, void, GoatEscapeDoorOpen_OnDestroy, (GoatEscapeDoorOpen * __this, MethodInfo * method)); DO_APP_FUNC(0x00476D70, void, GoatEscapeDoorOpen__ctor, (GoatEscapeDoorOpen * __this, MethodInfo * method)); @@ -12980,9 +14572,11 @@ DO_APP_FUNC(0x003AE050, void, GoatEscapeDoorOpen_TurnOffAnnaOpeningDoor_d_11_Sys DO_APP_FUNC(0x00476DC0, bool, GoatEscapeDoorOpen_TurnOffAnnaOpeningDoor_d_11_MoveNext, (GoatEscapeDoorOpen_TurnOffAnnaOpeningDoor_d_11 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, GoatEscapeDoorOpen_TurnOffAnnaOpeningDoor_d_11_System_Collections_Generic_IEnumerator_System_Object__get_Current, (GoatEscapeDoorOpen_TurnOffAnnaOpeningDoor_d_11 * __this, MethodInfo * method)); DO_APP_FUNC(0x00476EB0, void, GoatEscapeDoorOpen_TurnOffAnnaOpeningDoor_d_11_System_Collections_IEnumerator_Reset, (GoatEscapeDoorOpen_TurnOffAnnaOpeningDoor_d_11 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D132A0, GoatEscapeDoorOpen_TurnOffAnnaOpeningDoor_d_11_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, GoatEscapeDoorOpen_TurnOffAnnaOpeningDoor_d_11_System_Collections_IEnumerator_get_Current, (GoatEscapeDoorOpen_TurnOffAnnaOpeningDoor_d_11 * __this, MethodInfo * method)); DO_APP_FUNC(0x00476F00, void, PigBehaviour_Attached, (PigBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00477030, void, PigBehaviour_OnAbilityIndex, (PigBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13290, PigBehaviour_OnAbilityIndex__MethodInfo); DO_APP_FUNC(0x00477FD0, IEnumerator *, PigBehaviour_WanderGrunt, (PigBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00475AE0, void, PigBehaviour__ctor, (PigBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, PigBehaviour_WanderGrunt_d_5__ctor, (PigBehaviour_WanderGrunt_d_5 * __this, int32_t __1__state, MethodInfo * method)); @@ -12990,6 +14584,7 @@ DO_APP_FUNC(0x003AE050, void, PigBehaviour_WanderGrunt_d_5_System_IDisposable_Di DO_APP_FUNC(0x00478070, bool, PigBehaviour_WanderGrunt_d_5_MoveNext, (PigBehaviour_WanderGrunt_d_5 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, PigBehaviour_WanderGrunt_d_5_System_Collections_Generic_IEnumerator_System_Object__get_Current, (PigBehaviour_WanderGrunt_d_5 * __this, MethodInfo * method)); DO_APP_FUNC(0x00478260, void, PigBehaviour_WanderGrunt_d_5_System_Collections_IEnumerator_Reset, (PigBehaviour_WanderGrunt_d_5 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13278, PigBehaviour_WanderGrunt_d_5_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, PigBehaviour_WanderGrunt_d_5_System_Collections_IEnumerator_get_Current, (PigBehaviour_WanderGrunt_d_5 * __this, MethodInfo * method)); DO_APP_FUNC(0x004782B0, void, AntiWanderBox_OnTriggerEnter, (AntiWanderBox * __this, Collider * collider, MethodInfo * method)); DO_APP_FUNC(0x00478500, void, AntiWanderBox_OnTriggerExit, (AntiWanderBox * __this, Collider * collider, MethodInfo * method)); @@ -13000,24 +14595,34 @@ DO_APP_FUNC(0x00479040, void, AzazelAprilBehaviour_Attached, (AzazelAprilBehavio DO_APP_FUNC(0x00479510, void, AzazelAprilBehaviour_Detached, (AzazelAprilBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x004797B0, void, AzazelAprilBehaviour_Update, (AzazelAprilBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00479AE0, void, AzazelAprilBehaviour_OnAbilityIntData, (AzazelAprilBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D131C0, AzazelAprilBehaviour_OnAbilityIntData__MethodInfo); DO_APP_FUNC(0x00479C50, void, AzazelAprilBehaviour_PlayWanderClip, (AzazelAprilBehaviour * __this, bool force, MethodInfo * method)); DO_APP_FUNC(0x00479F30, void, AzazelAprilBehaviour_OnAbilityIndex, (AzazelAprilBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D131C8, AzazelAprilBehaviour_OnAbilityIndex__MethodInfo); DO_APP_FUNC(0x0047AA40, void, AzazelAprilBehaviour_OnMainBehaviorRestart, (AzazelAprilBehaviour * __this, Behavior * mainBehavior, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13248, AzazelAprilBehaviour_OnMainBehaviorRestart__MethodInfo); DO_APP_FUNC(0x0047AAF0, IEnumerator *, AzazelAprilBehaviour_OnTraverseOffMeshLink, (AzazelAprilBehaviour * __this, RichSpecial * link, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13220, AzazelAprilBehaviour_OnTraverseOffMeshLink__MethodInfo); DO_APP_FUNC(0x0047AB40, IEnumerator *, AzazelAprilBehaviour_CheckLanded, (AzazelAprilBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AzazelAprilBehaviour_Landed, (AzazelAprilBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0047AB90, void, AzazelAprilBehaviour_OnRagdollsLoaded, (AzazelAprilBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13228, AzazelAprilBehaviour_OnRagdollsLoaded__MethodInfo); DO_APP_FUNC(0x0047ADC0, void, AzazelAprilBehaviour_OnRagdollLoaded, (AzazelAprilBehaviour * __this, KnockoutRagdoll * ragdoll, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13238, AzazelAprilBehaviour_OnRagdollLoaded__MethodInfo); DO_APP_FUNC(0x0047AEC0, bool, AzazelAprilBehaviour_CanFinalGoatBurnt, (AzazelAprilBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0047AED0, void, AzazelAprilBehaviour_OnLookAtEntity, (AzazelAprilBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0047B370, void, AzazelAprilBehaviour_OnPlayerPickedUpEvent, (AzazelAprilBehaviour * __this, BoltEntity * killedBy, BoltEntity * player, bool inHidingSpot, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D131A0, AzazelAprilBehaviour_OnPlayerPickedUpEvent__MethodInfo); DO_APP_FUNC(0x0047B7E0, IEnumerator *, AzazelAprilBehaviour_KnockoutScream, (AzazelAprilBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0047B880, void, AzazelAprilBehaviour_OnKnockoutEvent, (AzazelAprilBehaviour * __this, BoltEntity * killedBy, BoltEntity * player, bool usingPoison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D131A8, AzazelAprilBehaviour_OnKnockoutEvent__MethodInfo); DO_APP_FUNC(0x0047C580, IEnumerator *, AzazelAprilBehaviour_WaitForPurgatoryToSwitchRenderersBack, (AzazelAprilBehaviour * __this, BoltEntity * player, MethodInfo * method)); DO_APP_FUNC(0x0047C690, void, AzazelAprilBehaviour_PlayerEnteredPurgatory, (AzazelAprilBehaviour * __this, BoltEntity * player, MethodInfo * method)); DO_APP_FUNC(0x0047C7C0, void, AzazelAprilBehaviour_ResetPlayerPickedUpAnimator, (AzazelAprilBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0047C8F0, void, AzazelAprilBehaviour_OnKnockoutDropPlayer, (AzazelAprilBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D131B0, AzazelAprilBehaviour_OnKnockoutDropPlayer__MethodInfo); DO_APP_FUNC(0x0047CA20, void, AzazelAprilBehaviour_OnGlobalGoatBurnEvent, (AzazelAprilBehaviour * __this, int32_t numObjectsBurnt, BoltEntity * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D131B8, AzazelAprilBehaviour_OnGlobalGoatBurnEvent__MethodInfo); DO_APP_FUNC(0x0047CC30, IEnumerator *, AzazelAprilBehaviour_EnragedEyes, (AzazelAprilBehaviour * __this, float delay, float duration, MethodInfo * method)); DO_APP_FUNC(0x0047CD00, IEnumerator *, AzazelAprilBehaviour_Glitch, (AzazelAprilBehaviour * __this, float delay, float duration, MethodInfo * method)); DO_APP_FUNC(0x0047CDD0, IEnumerator *, AzazelAprilBehaviour_PlayEnrageEffect, (AzazelAprilBehaviour * __this, float delay, MethodInfo * method)); @@ -13030,72 +14635,93 @@ DO_APP_FUNC(0x003AE050, void, AzazelAprilBehaviour_OnTraverseOffMeshLink_d_30_Sy DO_APP_FUNC(0x0047E400, bool, AzazelAprilBehaviour_OnTraverseOffMeshLink_d_30_MoveNext, (AzazelAprilBehaviour_OnTraverseOffMeshLink_d_30 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, AzazelAprilBehaviour_OnTraverseOffMeshLink_d_30_System_Collections_Generic_IEnumerator_System_Object__get_Current, (AzazelAprilBehaviour_OnTraverseOffMeshLink_d_30 * __this, MethodInfo * method)); DO_APP_FUNC(0x0047E410, void, AzazelAprilBehaviour_OnTraverseOffMeshLink_d_30_System_Collections_IEnumerator_Reset, (AzazelAprilBehaviour_OnTraverseOffMeshLink_d_30 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13078, AzazelAprilBehaviour_OnTraverseOffMeshLink_d_30_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, AzazelAprilBehaviour_OnTraverseOffMeshLink_d_30_System_Collections_IEnumerator_get_Current, (AzazelAprilBehaviour_OnTraverseOffMeshLink_d_30 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, AzazelAprilBehaviour_CheckLanded_d_31__ctor, (AzazelAprilBehaviour_CheckLanded_d_31 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AzazelAprilBehaviour_CheckLanded_d_31_System_IDisposable_Dispose, (AzazelAprilBehaviour_CheckLanded_d_31 * __this, MethodInfo * method)); DO_APP_FUNC(0x0047E400, bool, AzazelAprilBehaviour_CheckLanded_d_31_MoveNext, (AzazelAprilBehaviour_CheckLanded_d_31 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, AzazelAprilBehaviour_CheckLanded_d_31_System_Collections_Generic_IEnumerator_System_Object__get_Current, (AzazelAprilBehaviour_CheckLanded_d_31 * __this, MethodInfo * method)); DO_APP_FUNC(0x0047E460, void, AzazelAprilBehaviour_CheckLanded_d_31_System_Collections_IEnumerator_Reset, (AzazelAprilBehaviour_CheckLanded_d_31 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13070, AzazelAprilBehaviour_CheckLanded_d_31_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, AzazelAprilBehaviour_CheckLanded_d_31_System_Collections_IEnumerator_get_Current, (AzazelAprilBehaviour_CheckLanded_d_31 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, AzazelAprilBehaviour_KnockoutScream_d_38__ctor, (AzazelAprilBehaviour_KnockoutScream_d_38 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AzazelAprilBehaviour_KnockoutScream_d_38_System_IDisposable_Dispose, (AzazelAprilBehaviour_KnockoutScream_d_38 * __this, MethodInfo * method)); DO_APP_FUNC(0x0047E4B0, bool, AzazelAprilBehaviour_KnockoutScream_d_38_MoveNext, (AzazelAprilBehaviour_KnockoutScream_d_38 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, AzazelAprilBehaviour_KnockoutScream_d_38_System_Collections_Generic_IEnumerator_System_Object__get_Current, (AzazelAprilBehaviour_KnockoutScream_d_38 * __this, MethodInfo * method)); DO_APP_FUNC(0x0047E8D0, void, AzazelAprilBehaviour_KnockoutScream_d_38_System_Collections_IEnumerator_Reset, (AzazelAprilBehaviour_KnockoutScream_d_38 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13060, AzazelAprilBehaviour_KnockoutScream_d_38_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, AzazelAprilBehaviour_KnockoutScream_d_38_System_Collections_IEnumerator_get_Current, (AzazelAprilBehaviour_KnockoutScream_d_38 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AzazelAprilBehaviour_c_DisplayClass39_0__ctor, (AzazelAprilBehaviour_c_DisplayClass39_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0047E920, void, AzazelAprilBehaviour_c_DisplayClass39_0__OnKnockoutEvent_b__0, (AzazelAprilBehaviour_c_DisplayClass39_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13100, AzazelAprilBehaviour_c_DisplayClass39_0__OnKnockoutEvent_b__0__MethodInfo); DO_APP_FUNC(0x0047EAC0, void, AzazelAprilBehaviour_c_DisplayClass39_0__OnKnockoutEvent_b__1, (AzazelAprilBehaviour_c_DisplayClass39_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D130F8, AzazelAprilBehaviour_c_DisplayClass39_0__OnKnockoutEvent_b__1__MethodInfo); DO_APP_FUNC(0x0047ED40, void, AzazelAprilBehaviour_c_DisplayClass39_0__OnKnockoutEvent_b__2, (AzazelAprilBehaviour_c_DisplayClass39_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D130F0, AzazelAprilBehaviour_c_DisplayClass39_0__OnKnockoutEvent_b__2__MethodInfo); DO_APP_FUNC(0x003BCD60, void, AzazelAprilBehaviour_WaitForPurgatoryToSwitchRenderersBack_d_40__ctor, (AzazelAprilBehaviour_WaitForPurgatoryToSwitchRenderersBack_d_40 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AzazelAprilBehaviour_WaitForPurgatoryToSwitchRenderersBack_d_40_System_IDisposable_Dispose, (AzazelAprilBehaviour_WaitForPurgatoryToSwitchRenderersBack_d_40 * __this, MethodInfo * method)); DO_APP_FUNC(0x0047EDD0, bool, AzazelAprilBehaviour_WaitForPurgatoryToSwitchRenderersBack_d_40_MoveNext, (AzazelAprilBehaviour_WaitForPurgatoryToSwitchRenderersBack_d_40 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, AzazelAprilBehaviour_WaitForPurgatoryToSwitchRenderersBack_d_40_System_Collections_Generic_IEnumerator_System_Object__get_Current, (AzazelAprilBehaviour_WaitForPurgatoryToSwitchRenderersBack_d_40 * __this, MethodInfo * method)); DO_APP_FUNC(0x0047F100, void, AzazelAprilBehaviour_WaitForPurgatoryToSwitchRenderersBack_d_40_System_Collections_IEnumerator_Reset, (AzazelAprilBehaviour_WaitForPurgatoryToSwitchRenderersBack_d_40 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13048, AzazelAprilBehaviour_WaitForPurgatoryToSwitchRenderersBack_d_40_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, AzazelAprilBehaviour_WaitForPurgatoryToSwitchRenderersBack_d_40_System_Collections_IEnumerator_get_Current, (AzazelAprilBehaviour_WaitForPurgatoryToSwitchRenderersBack_d_40 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AzazelAprilBehaviour_c_DisplayClass45_0__ctor, (AzazelAprilBehaviour_c_DisplayClass45_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0047F150, void, AzazelAprilBehaviour_c_DisplayClass45_0__EnragedEyes_b__0, (AzazelAprilBehaviour_c_DisplayClass45_0 * __this, Color val, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13038, AzazelAprilBehaviour_c_DisplayClass45_0__EnragedEyes_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, AzazelAprilBehaviour_c_DisplayClass45_1__ctor, (AzazelAprilBehaviour_c_DisplayClass45_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x0047F1C0, void, AzazelAprilBehaviour_c_DisplayClass45_1__EnragedEyes_b__1, (AzazelAprilBehaviour_c_DisplayClass45_1 * __this, Color val, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13028, AzazelAprilBehaviour_c_DisplayClass45_1__EnragedEyes_b__1__MethodInfo); DO_APP_FUNC(0x003BCD60, void, AzazelAprilBehaviour_EnragedEyes_d_45__ctor, (AzazelAprilBehaviour_EnragedEyes_d_45 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AzazelAprilBehaviour_EnragedEyes_d_45_System_IDisposable_Dispose, (AzazelAprilBehaviour_EnragedEyes_d_45 * __this, MethodInfo * method)); DO_APP_FUNC(0x0047F230, bool, AzazelAprilBehaviour_EnragedEyes_d_45_MoveNext, (AzazelAprilBehaviour_EnragedEyes_d_45 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, AzazelAprilBehaviour_EnragedEyes_d_45_System_Collections_Generic_IEnumerator_System_Object__get_Current, (AzazelAprilBehaviour_EnragedEyes_d_45 * __this, MethodInfo * method)); DO_APP_FUNC(0x0047FD40, void, AzazelAprilBehaviour_EnragedEyes_d_45_System_Collections_IEnumerator_Reset, (AzazelAprilBehaviour_EnragedEyes_d_45 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13018, AzazelAprilBehaviour_EnragedEyes_d_45_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, AzazelAprilBehaviour_EnragedEyes_d_45_System_Collections_IEnumerator_get_Current, (AzazelAprilBehaviour_EnragedEyes_d_45 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, AzazelAprilBehaviour_Glitch_d_46__ctor, (AzazelAprilBehaviour_Glitch_d_46 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AzazelAprilBehaviour_Glitch_d_46_System_IDisposable_Dispose, (AzazelAprilBehaviour_Glitch_d_46 * __this, MethodInfo * method)); DO_APP_FUNC(0x0047FD90, bool, AzazelAprilBehaviour_Glitch_d_46_MoveNext, (AzazelAprilBehaviour_Glitch_d_46 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, AzazelAprilBehaviour_Glitch_d_46_System_Collections_Generic_IEnumerator_System_Object__get_Current, (AzazelAprilBehaviour_Glitch_d_46 * __this, MethodInfo * method)); DO_APP_FUNC(0x004801C0, void, AzazelAprilBehaviour_Glitch_d_46_System_Collections_IEnumerator_Reset, (AzazelAprilBehaviour_Glitch_d_46 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12FE8, AzazelAprilBehaviour_Glitch_d_46_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, AzazelAprilBehaviour_Glitch_d_46_System_Collections_IEnumerator_get_Current, (AzazelAprilBehaviour_Glitch_d_46 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, AzazelAprilBehaviour_PlayEnrageEffect_d_47__ctor, (AzazelAprilBehaviour_PlayEnrageEffect_d_47 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AzazelAprilBehaviour_PlayEnrageEffect_d_47_System_IDisposable_Dispose, (AzazelAprilBehaviour_PlayEnrageEffect_d_47 * __this, MethodInfo * method)); DO_APP_FUNC(0x00480210, bool, AzazelAprilBehaviour_PlayEnrageEffect_d_47_MoveNext, (AzazelAprilBehaviour_PlayEnrageEffect_d_47 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, AzazelAprilBehaviour_PlayEnrageEffect_d_47_System_Collections_Generic_IEnumerator_System_Object__get_Current, (AzazelAprilBehaviour_PlayEnrageEffect_d_47 * __this, MethodInfo * method)); DO_APP_FUNC(0x004803B0, void, AzazelAprilBehaviour_PlayEnrageEffect_d_47_System_Collections_IEnumerator_Reset, (AzazelAprilBehaviour_PlayEnrageEffect_d_47 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12FE0, AzazelAprilBehaviour_PlayEnrageEffect_d_47_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, AzazelAprilBehaviour_PlayEnrageEffect_d_47_System_Collections_IEnumerator_get_Current, (AzazelAprilBehaviour_PlayEnrageEffect_d_47 * __this, MethodInfo * method)); DO_APP_FUNC(0x00480400, void, AzazelFlickerController_Awake, (AzazelFlickerController * __this, MethodInfo * method)); DO_APP_FUNC(0x00480A30, void, AzazelFlickerController_Attached, (AzazelFlickerController * __this, MethodInfo * method)); DO_APP_FUNC(0x00480C00, void, AzazelFlickerController_Update, (AzazelFlickerController * __this, MethodInfo * method)); DO_APP_FUNC(0x004810C0, void, AzazelFlickerController_OnAbilityIndex, (AzazelFlickerController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12F90, AzazelFlickerController_OnAbilityIndex__MethodInfo); DO_APP_FUNC(0x004814E0, void, AzazelFlickerController_FlickerOut, (AzazelFlickerController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12F80, AzazelFlickerController_FlickerOut__MethodInfo); DO_APP_FUNC(0x00481620, void, AzazelFlickerController_FlickerIn, (AzazelFlickerController * __this, MethodInfo * method)); DO_APP_FUNC(0x00481760, void, AzazelFlickerController_SetIsVisible, (AzazelFlickerController * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x00481AA0, bool, AzazelFlickerController_IsVisible, (AzazelFlickerController * __this, MethodInfo * method)); DO_APP_FUNC(0x00481B50, void, AzazelFlickerController_RandomFlicker, (AzazelFlickerController * __this, float minOffTime, float maxOffTime, float minOnTime, float maxOnTime, MethodInfo * method)); DO_APP_FUNC(0x00481C40, void, AzazelFlickerController_OnGlobalGoatBurnEvent, (AzazelFlickerController * __this, int32_t numObjectsBurnt, BoltEntity * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12F88, AzazelFlickerController_OnGlobalGoatBurnEvent__MethodInfo); DO_APP_FUNC(0x00481C50, void, AzazelFlickerController_SetEnragedEyesActive, (AzazelFlickerController * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x00481C60, void, AzazelFlickerController_Detached, (AzazelFlickerController * __this, MethodInfo * method)); DO_APP_FUNC(0x00481D40, void, AzazelFlickerController__ctor, (AzazelFlickerController * __this, MethodInfo * method)); DO_APP_FUNC(0x00481D90, void, AzazelFlickerController__FlickerOut_b__24_0, (AzazelFlickerController * __this, float val, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12F78, AzazelFlickerController__FlickerOut_b__24_0__MethodInfo); DO_APP_FUNC(0x00481DD0, void, AzazelFlickerController__FlickerOut_b__24_1, (AzazelFlickerController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12F70, AzazelFlickerController__FlickerOut_b__24_1__MethodInfo); DO_APP_FUNC(0x00481D90, void, AzazelFlickerController__FlickerIn_b__25_0, (AzazelFlickerController * __this, float val, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12F68, AzazelFlickerController__FlickerIn_b__25_0__MethodInfo); DO_APP_FUNC(0x00481DE0, void, AzazelFlickerController__FlickerIn_b__25_1, (AzazelFlickerController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12F60, AzazelFlickerController__FlickerIn_b__25_1__MethodInfo); DO_APP_FUNC(0x00481E10, void, AzazelFlickerController_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AzazelFlickerController_c__ctor, (AzazelFlickerController_c * __this, MethodInfo * method)); DO_APP_FUNC(0x00481EC0, bool, AzazelFlickerController_c__Awake_b__20_0, (AzazelFlickerController_c * __this, SkinnedMeshRenderer * renderer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12FA8, AzazelFlickerController_c__Awake_b__20_0__MethodInfo); DO_APP_FUNC(0x00481F50, bool, AzazelFlickerController_c__Awake_b__20_1, (AzazelFlickerController_c * __this, SkinnedMeshRenderer * renderer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12FA0, AzazelFlickerController_c__Awake_b__20_1__MethodInfo); DO_APP_FUNC(0x00481FE0, void, AzazelIndoorsOutdoors_OnTriggerEnter, (AzazelIndoorsOutdoors * __this, Collider * other, MethodInfo * method)); DO_APP_FUNC(0x00482170, void, AzazelIndoorsOutdoors_OnTriggerExit, (AzazelIndoorsOutdoors * __this, Collider * other, MethodInfo * method)); DO_APP_FUNC(0x004822D0, void, AzazelIndoorsOutdoors_SetIndoors, (AzazelIndoorsOutdoors * __this, Collider * other, bool indoors, MethodInfo * method)); @@ -13109,24 +14735,33 @@ DO_APP_FUNC(0x00482C30, void, AzazelNathanBehaviour_Start, (AzazelNathanBehaviou DO_APP_FUNC(0x00483260, void, AzazelNathanBehaviour_Attached, (AzazelNathanBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x004836A0, void, AzazelNathanBehaviour_Detached, (AzazelNathanBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00483970, void, AzazelNathanBehaviour_OnAbilityIntData, (AzazelNathanBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12E78, AzazelNathanBehaviour_OnAbilityIntData__MethodInfo); DO_APP_FUNC(0x00483EA0, void, AzazelNathanBehaviour_PlayWanderClip, (AzazelNathanBehaviour * __this, bool force, MethodInfo * method)); DO_APP_FUNC(0x00484180, void, AzazelNathanBehaviour_OnAbilityIndex, (AzazelNathanBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12E80, AzazelNathanBehaviour_OnAbilityIndex__MethodInfo); DO_APP_FUNC(0x00484F30, void, AzazelNathanBehaviour_FixedUpdate, (AzazelNathanBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x004851E0, IEnumerator *, AzazelNathanBehaviour_WaitForScreamEnd, (AzazelNathanBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00485280, void, AzazelNathanBehaviour_OnStateChange, (AzazelNathanBehaviour * __this, GameObject * obj, String * stateName, bool active, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12E58, AzazelNathanBehaviour_OnStateChange__MethodInfo); DO_APP_FUNC(0x00485730, IEnumerator *, AzazelNathanBehaviour_WaitToSetCurrentVentState, (AzazelNathanBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x004857D0, void, AzazelNathanBehaviour_SetCurrentVentState, (AzazelNathanBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00485B30, void, AzazelNathanBehaviour_OnMainBehaviorRestart, (AzazelNathanBehaviour * __this, Behavior * mainBehavior, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12EF0, AzazelNathanBehaviour_OnMainBehaviorRestart__MethodInfo); DO_APP_FUNC(0x00485BE0, IEnumerator *, AzazelNathanBehaviour_OnTraverseOffMeshLink, (AzazelNathanBehaviour * __this, RichSpecial * link, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12ED8, AzazelNathanBehaviour_OnTraverseOffMeshLink__MethodInfo); DO_APP_FUNC(0x00485CF0, IEnumerator *, AzazelNathanBehaviour_CheckLanded, (AzazelNathanBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00485D90, void, AzazelNathanBehaviour_Landed, (AzazelNathanBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x004862A0, IEnumerator *, AzazelNathanBehaviour_DelayUpdateDynamicBones, (AzazelNathanBehaviour * __this, float delay, MethodInfo * method)); DO_APP_FUNC(0x00486350, void, AzazelNathanBehaviour_OnRagdollsLoaded, (AzazelNathanBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12EE0, AzazelNathanBehaviour_OnRagdollsLoaded__MethodInfo); DO_APP_FUNC(0x004864B0, void, AzazelNathanBehaviour_OnRagdollLoaded, (AzazelNathanBehaviour * __this, KnockoutRagdoll * ragdoll, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12EE8, AzazelNathanBehaviour_OnRagdollLoaded__MethodInfo); DO_APP_FUNC(0x004865B0, bool, AzazelNathanBehaviour_CanFinalGoatBurnt, (AzazelNathanBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x004865C0, IEnumerator *, AzazelNathanBehaviour_ContinueKnockout, (AzazelNathanBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00486660, void, AzazelNathanBehaviour_OnPlayerPickedUpEvent, (AzazelNathanBehaviour * __this, BoltEntity * killedBy, BoltEntity * player, bool inHidingSpot, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12E60, AzazelNathanBehaviour_OnPlayerPickedUpEvent__MethodInfo); DO_APP_FUNC(0x004880A0, void, AzazelNathanBehaviour_OnKnockoutEvent, (AzazelNathanBehaviour * __this, BoltEntity * killedBy, BoltEntity * player, bool usingPoison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12E68, AzazelNathanBehaviour_OnKnockoutEvent__MethodInfo); DO_APP_FUNC(0x00488DE0, IEnumerator *, AzazelNathanBehaviour_WaitToLerpAlignToGroundToZero, (AzazelNathanBehaviour * __this, float delay, MethodInfo * method)); DO_APP_FUNC(0x00488E90, IEnumerator *, AzazelNathanBehaviour_WaitForPurgatoryToSwitchRenderersBack, (AzazelNathanBehaviour * __this, BoltEntity * player, MethodInfo * method)); DO_APP_FUNC(0x00488FA0, void, AzazelNathanBehaviour_PlayerEnteredPurgatory, (AzazelNathanBehaviour * __this, BoltEntity * player, MethodInfo * method)); @@ -13134,6 +14769,7 @@ DO_APP_FUNC(0x00489210, void, AzazelNathanBehaviour_ResetPlayerPickedUpAnimator, DO_APP_FUNC(0x00489340, void, AzazelNathanBehaviour_MaskOn, (AzazelNathanBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x004894F0, void, AzazelNathanBehaviour_MaskOff, (AzazelNathanBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00489650, void, AzazelNathanBehaviour_OnGlobalGoatBurnEvent, (AzazelNathanBehaviour * __this, int32_t numObjectsBurnt, BoltEntity * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12E70, AzazelNathanBehaviour_OnGlobalGoatBurnEvent__MethodInfo); DO_APP_FUNC(0x00489880, IEnumerator *, AzazelNathanBehaviour_EnragedEyes, (AzazelNathanBehaviour * __this, float delay, float duration, MethodInfo * method)); DO_APP_FUNC(0x00489950, void, AzazelNathanBehaviour_PlayBoneSnap, (AzazelNathanBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x004899D0, void, AzazelNathanBehaviour_PlayClaws, (AzazelNathanBehaviour * __this, MethodInfo * method)); @@ -13151,140 +14787,183 @@ DO_APP_FUNC(0x0048B6B0, void, AzazelNathanBehaviour__cctor, (MethodInfo * method DO_APP_FUNC(0x0048B790, void, AzazelNathanBehaviour_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AzazelNathanBehaviour_c__ctor, (AzazelNathanBehaviour_c * __this, MethodInfo * method)); DO_APP_FUNC(0x0048B840, bool, AzazelNathanBehaviour_c__Start_b__46_0, (AzazelNathanBehaviour_c * __this, GenericIntData * ability, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12EB8, AzazelNathanBehaviour_c__Start_b__46_0__MethodInfo); DO_APP_FUNC(0x0048B870, bool, AzazelNathanBehaviour_c__Start_b__46_1, (AzazelNathanBehaviour_c * __this, GenericIntData * ability, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12EB0, AzazelNathanBehaviour_c__Start_b__46_1__MethodInfo); DO_APP_FUNC(0x003BCD60, void, AzazelNathanBehaviour_WaitForScreamEnd_d_53__ctor, (AzazelNathanBehaviour_WaitForScreamEnd_d_53 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AzazelNathanBehaviour_WaitForScreamEnd_d_53_System_IDisposable_Dispose, (AzazelNathanBehaviour_WaitForScreamEnd_d_53 * __this, MethodInfo * method)); DO_APP_FUNC(0x0048B8A0, bool, AzazelNathanBehaviour_WaitForScreamEnd_d_53_MoveNext, (AzazelNathanBehaviour_WaitForScreamEnd_d_53 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, AzazelNathanBehaviour_WaitForScreamEnd_d_53_System_Collections_Generic_IEnumerator_System_Object__get_Current, (AzazelNathanBehaviour_WaitForScreamEnd_d_53 * __this, MethodInfo * method)); DO_APP_FUNC(0x0048B9D0, void, AzazelNathanBehaviour_WaitForScreamEnd_d_53_System_Collections_IEnumerator_Reset, (AzazelNathanBehaviour_WaitForScreamEnd_d_53 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12D20, AzazelNathanBehaviour_WaitForScreamEnd_d_53_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, AzazelNathanBehaviour_WaitForScreamEnd_d_53_System_Collections_IEnumerator_get_Current, (AzazelNathanBehaviour_WaitForScreamEnd_d_53 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, AzazelNathanBehaviour_WaitToSetCurrentVentState_d_55__ctor, (AzazelNathanBehaviour_WaitToSetCurrentVentState_d_55 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AzazelNathanBehaviour_WaitToSetCurrentVentState_d_55_System_IDisposable_Dispose, (AzazelNathanBehaviour_WaitToSetCurrentVentState_d_55 * __this, MethodInfo * method)); DO_APP_FUNC(0x0048BA20, bool, AzazelNathanBehaviour_WaitToSetCurrentVentState_d_55_MoveNext, (AzazelNathanBehaviour_WaitToSetCurrentVentState_d_55 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, AzazelNathanBehaviour_WaitToSetCurrentVentState_d_55_System_Collections_Generic_IEnumerator_System_Object__get_Current, (AzazelNathanBehaviour_WaitToSetCurrentVentState_d_55 * __this, MethodInfo * method)); DO_APP_FUNC(0x0048BB60, void, AzazelNathanBehaviour_WaitToSetCurrentVentState_d_55_System_Collections_IEnumerator_Reset, (AzazelNathanBehaviour_WaitToSetCurrentVentState_d_55 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12D18, AzazelNathanBehaviour_WaitToSetCurrentVentState_d_55_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, AzazelNathanBehaviour_WaitToSetCurrentVentState_d_55_System_Collections_IEnumerator_get_Current, (AzazelNathanBehaviour_WaitToSetCurrentVentState_d_55 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, AzazelNathanBehaviour_OnTraverseOffMeshLink_d_58__ctor, (AzazelNathanBehaviour_OnTraverseOffMeshLink_d_58 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AzazelNathanBehaviour_OnTraverseOffMeshLink_d_58_System_IDisposable_Dispose, (AzazelNathanBehaviour_OnTraverseOffMeshLink_d_58 * __this, MethodInfo * method)); DO_APP_FUNC(0x0048BBB0, bool, AzazelNathanBehaviour_OnTraverseOffMeshLink_d_58_MoveNext, (AzazelNathanBehaviour_OnTraverseOffMeshLink_d_58 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, AzazelNathanBehaviour_OnTraverseOffMeshLink_d_58_System_Collections_Generic_IEnumerator_System_Object__get_Current, (AzazelNathanBehaviour_OnTraverseOffMeshLink_d_58 * __this, MethodInfo * method)); DO_APP_FUNC(0x0048CD10, void, AzazelNathanBehaviour_OnTraverseOffMeshLink_d_58_System_Collections_IEnumerator_Reset, (AzazelNathanBehaviour_OnTraverseOffMeshLink_d_58 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12CF0, AzazelNathanBehaviour_OnTraverseOffMeshLink_d_58_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, AzazelNathanBehaviour_OnTraverseOffMeshLink_d_58_System_Collections_IEnumerator_get_Current, (AzazelNathanBehaviour_OnTraverseOffMeshLink_d_58 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, AzazelNathanBehaviour_CheckLanded_d_59__ctor, (AzazelNathanBehaviour_CheckLanded_d_59 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AzazelNathanBehaviour_CheckLanded_d_59_System_IDisposable_Dispose, (AzazelNathanBehaviour_CheckLanded_d_59 * __this, MethodInfo * method)); DO_APP_FUNC(0x0048CD60, bool, AzazelNathanBehaviour_CheckLanded_d_59_MoveNext, (AzazelNathanBehaviour_CheckLanded_d_59 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, AzazelNathanBehaviour_CheckLanded_d_59_System_Collections_Generic_IEnumerator_System_Object__get_Current, (AzazelNathanBehaviour_CheckLanded_d_59 * __this, MethodInfo * method)); DO_APP_FUNC(0x0048D0D0, void, AzazelNathanBehaviour_CheckLanded_d_59_System_Collections_IEnumerator_Reset, (AzazelNathanBehaviour_CheckLanded_d_59 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12CE0, AzazelNathanBehaviour_CheckLanded_d_59_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, AzazelNathanBehaviour_CheckLanded_d_59_System_Collections_IEnumerator_get_Current, (AzazelNathanBehaviour_CheckLanded_d_59 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, AzazelNathanBehaviour_DelayUpdateDynamicBones_d_61__ctor, (AzazelNathanBehaviour_DelayUpdateDynamicBones_d_61 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AzazelNathanBehaviour_DelayUpdateDynamicBones_d_61_System_IDisposable_Dispose, (AzazelNathanBehaviour_DelayUpdateDynamicBones_d_61 * __this, MethodInfo * method)); DO_APP_FUNC(0x0048D120, bool, AzazelNathanBehaviour_DelayUpdateDynamicBones_d_61_MoveNext, (AzazelNathanBehaviour_DelayUpdateDynamicBones_d_61 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, AzazelNathanBehaviour_DelayUpdateDynamicBones_d_61_System_Collections_Generic_IEnumerator_System_Object__get_Current, (AzazelNathanBehaviour_DelayUpdateDynamicBones_d_61 * __this, MethodInfo * method)); DO_APP_FUNC(0x0048D220, void, AzazelNathanBehaviour_DelayUpdateDynamicBones_d_61_System_Collections_IEnumerator_Reset, (AzazelNathanBehaviour_DelayUpdateDynamicBones_d_61 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12CD8, AzazelNathanBehaviour_DelayUpdateDynamicBones_d_61_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, AzazelNathanBehaviour_DelayUpdateDynamicBones_d_61_System_Collections_IEnumerator_get_Current, (AzazelNathanBehaviour_DelayUpdateDynamicBones_d_61 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, AzazelNathanBehaviour_ContinueKnockout_d_65__ctor, (AzazelNathanBehaviour_ContinueKnockout_d_65 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AzazelNathanBehaviour_ContinueKnockout_d_65_System_IDisposable_Dispose, (AzazelNathanBehaviour_ContinueKnockout_d_65 * __this, MethodInfo * method)); DO_APP_FUNC(0x0048D270, bool, AzazelNathanBehaviour_ContinueKnockout_d_65_MoveNext, (AzazelNathanBehaviour_ContinueKnockout_d_65 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, AzazelNathanBehaviour_ContinueKnockout_d_65_System_Collections_Generic_IEnumerator_System_Object__get_Current, (AzazelNathanBehaviour_ContinueKnockout_d_65 * __this, MethodInfo * method)); DO_APP_FUNC(0x0048D4B0, void, AzazelNathanBehaviour_ContinueKnockout_d_65_System_Collections_IEnumerator_Reset, (AzazelNathanBehaviour_ContinueKnockout_d_65 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12CD0, AzazelNathanBehaviour_ContinueKnockout_d_65_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, AzazelNathanBehaviour_ContinueKnockout_d_65_System_Collections_IEnumerator_get_Current, (AzazelNathanBehaviour_ContinueKnockout_d_65 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AzazelNathanBehaviour_c_DisplayClass66_0__ctor, (AzazelNathanBehaviour_c_DisplayClass66_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0048D500, void, AzazelNathanBehaviour_c_DisplayClass66_0__OnPlayerPickedUpEvent_b__0, (AzazelNathanBehaviour_c_DisplayClass66_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12DC8, AzazelNathanBehaviour_c_DisplayClass66_0__OnPlayerPickedUpEvent_b__0__MethodInfo); DO_APP_FUNC(0x0048D970, void, AzazelNathanBehaviour_c_DisplayClass66_0__OnPlayerPickedUpEvent_b__2, (AzazelNathanBehaviour_c_DisplayClass66_0 * __this, float value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12CC8, AzazelNathanBehaviour_c_DisplayClass66_0__OnPlayerPickedUpEvent_b__2__MethodInfo); DO_APP_FUNC(0x0048D9A0, void, AzazelNathanBehaviour_c_DisplayClass66_0__OnPlayerPickedUpEvent_b__3, (AzazelNathanBehaviour_c_DisplayClass66_0 * __this, float value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12CC0, AzazelNathanBehaviour_c_DisplayClass66_0__OnPlayerPickedUpEvent_b__3__MethodInfo); DO_APP_FUNC(0x0048D9D0, void, AzazelNathanBehaviour_c_DisplayClass66_0__OnPlayerPickedUpEvent_b__4, (AzazelNathanBehaviour_c_DisplayClass66_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12CB8, AzazelNathanBehaviour_c_DisplayClass66_0__OnPlayerPickedUpEvent_b__4__MethodInfo); DO_APP_FUNC(0x0048DA50, void, AzazelNathanBehaviour_c_DisplayClass66_0__OnPlayerPickedUpEvent_b__5, (AzazelNathanBehaviour_c_DisplayClass66_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12DB8, AzazelNathanBehaviour_c_DisplayClass66_0__OnPlayerPickedUpEvent_b__5__MethodInfo); DO_APP_FUNC(0x0048DB30, void, AzazelNathanBehaviour_c_DisplayClass66_0__OnPlayerPickedUpEvent_b__1, (AzazelNathanBehaviour_c_DisplayClass66_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12DC0, AzazelNathanBehaviour_c_DisplayClass66_0__OnPlayerPickedUpEvent_b__1__MethodInfo); DO_APP_FUNC(0x003AE050, void, AzazelNathanBehaviour_c_DisplayClass67_0__ctor, (AzazelNathanBehaviour_c_DisplayClass67_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0048DCF0, void, AzazelNathanBehaviour_c_DisplayClass67_0__OnKnockoutEvent_b__0, (AzazelNathanBehaviour_c_DisplayClass67_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12D90, AzazelNathanBehaviour_c_DisplayClass67_0__OnKnockoutEvent_b__0__MethodInfo); DO_APP_FUNC(0x0048DE90, void, AzazelNathanBehaviour_c_DisplayClass67_0__OnKnockoutEvent_b__1, (AzazelNathanBehaviour_c_DisplayClass67_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12D88, AzazelNathanBehaviour_c_DisplayClass67_0__OnKnockoutEvent_b__1__MethodInfo); DO_APP_FUNC(0x0048E110, void, AzazelNathanBehaviour_c_DisplayClass67_0__OnKnockoutEvent_b__2, (AzazelNathanBehaviour_c_DisplayClass67_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12D80, AzazelNathanBehaviour_c_DisplayClass67_0__OnKnockoutEvent_b__2__MethodInfo); DO_APP_FUNC(0x003BCD60, void, AzazelNathanBehaviour_WaitToLerpAlignToGroundToZero_d_68__ctor, (AzazelNathanBehaviour_WaitToLerpAlignToGroundToZero_d_68 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AzazelNathanBehaviour_WaitToLerpAlignToGroundToZero_d_68_System_IDisposable_Dispose, (AzazelNathanBehaviour_WaitToLerpAlignToGroundToZero_d_68 * __this, MethodInfo * method)); DO_APP_FUNC(0x0048E1A0, bool, AzazelNathanBehaviour_WaitToLerpAlignToGroundToZero_d_68_MoveNext, (AzazelNathanBehaviour_WaitToLerpAlignToGroundToZero_d_68 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, AzazelNathanBehaviour_WaitToLerpAlignToGroundToZero_d_68_System_Collections_Generic_IEnumerator_System_Object__get_Current, (AzazelNathanBehaviour_WaitToLerpAlignToGroundToZero_d_68 * __this, MethodInfo * method)); DO_APP_FUNC(0x0048E2B0, void, AzazelNathanBehaviour_WaitToLerpAlignToGroundToZero_d_68_System_Collections_IEnumerator_Reset, (AzazelNathanBehaviour_WaitToLerpAlignToGroundToZero_d_68 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12CB0, AzazelNathanBehaviour_WaitToLerpAlignToGroundToZero_d_68_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, AzazelNathanBehaviour_WaitToLerpAlignToGroundToZero_d_68_System_Collections_IEnumerator_get_Current, (AzazelNathanBehaviour_WaitToLerpAlignToGroundToZero_d_68 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, AzazelNathanBehaviour_WaitForPurgatoryToSwitchRenderersBack_d_69__ctor, (AzazelNathanBehaviour_WaitForPurgatoryToSwitchRenderersBack_d_69 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AzazelNathanBehaviour_WaitForPurgatoryToSwitchRenderersBack_d_69_System_IDisposable_Dispose, (AzazelNathanBehaviour_WaitForPurgatoryToSwitchRenderersBack_d_69 * __this, MethodInfo * method)); DO_APP_FUNC(0x0048E300, bool, AzazelNathanBehaviour_WaitForPurgatoryToSwitchRenderersBack_d_69_MoveNext, (AzazelNathanBehaviour_WaitForPurgatoryToSwitchRenderersBack_d_69 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, AzazelNathanBehaviour_WaitForPurgatoryToSwitchRenderersBack_d_69_System_Collections_Generic_IEnumerator_System_Object__get_Current, (AzazelNathanBehaviour_WaitForPurgatoryToSwitchRenderersBack_d_69 * __this, MethodInfo * method)); DO_APP_FUNC(0x0048E630, void, AzazelNathanBehaviour_WaitForPurgatoryToSwitchRenderersBack_d_69_System_Collections_IEnumerator_Reset, (AzazelNathanBehaviour_WaitForPurgatoryToSwitchRenderersBack_d_69 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12CA8, AzazelNathanBehaviour_WaitForPurgatoryToSwitchRenderersBack_d_69_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, AzazelNathanBehaviour_WaitForPurgatoryToSwitchRenderersBack_d_69_System_Collections_IEnumerator_get_Current, (AzazelNathanBehaviour_WaitForPurgatoryToSwitchRenderersBack_d_69 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, AzazelNathanBehaviour_EnragedEyes_d_75__ctor, (AzazelNathanBehaviour_EnragedEyes_d_75 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AzazelNathanBehaviour_EnragedEyes_d_75_System_IDisposable_Dispose, (AzazelNathanBehaviour_EnragedEyes_d_75 * __this, MethodInfo * method)); DO_APP_FUNC(0x0048E680, bool, AzazelNathanBehaviour_EnragedEyes_d_75_MoveNext, (AzazelNathanBehaviour_EnragedEyes_d_75 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, AzazelNathanBehaviour_EnragedEyes_d_75_System_Collections_Generic_IEnumerator_System_Object__get_Current, (AzazelNathanBehaviour_EnragedEyes_d_75 * __this, MethodInfo * method)); DO_APP_FUNC(0x0048E9F0, void, AzazelNathanBehaviour_EnragedEyes_d_75_System_Collections_IEnumerator_Reset, (AzazelNathanBehaviour_EnragedEyes_d_75 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12CA0, AzazelNathanBehaviour_EnragedEyes_d_75_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, AzazelNathanBehaviour_EnragedEyes_d_75_System_Collections_IEnumerator_get_Current, (AzazelNathanBehaviour_EnragedEyes_d_75 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, AzazelNathanBehaviour_DelayDisableDynamicBoneCollider_d_81__ctor, (AzazelNathanBehaviour_DelayDisableDynamicBoneCollider_d_81 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AzazelNathanBehaviour_DelayDisableDynamicBoneCollider_d_81_System_IDisposable_Dispose, (AzazelNathanBehaviour_DelayDisableDynamicBoneCollider_d_81 * __this, MethodInfo * method)); DO_APP_FUNC(0x0048EA40, bool, AzazelNathanBehaviour_DelayDisableDynamicBoneCollider_d_81_MoveNext, (AzazelNathanBehaviour_DelayDisableDynamicBoneCollider_d_81 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, AzazelNathanBehaviour_DelayDisableDynamicBoneCollider_d_81_System_Collections_Generic_IEnumerator_System_Object__get_Current, (AzazelNathanBehaviour_DelayDisableDynamicBoneCollider_d_81 * __this, MethodInfo * method)); DO_APP_FUNC(0x0048EB50, void, AzazelNathanBehaviour_DelayDisableDynamicBoneCollider_d_81_System_Collections_IEnumerator_Reset, (AzazelNathanBehaviour_DelayDisableDynamicBoneCollider_d_81 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12C98, AzazelNathanBehaviour_DelayDisableDynamicBoneCollider_d_81_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, AzazelNathanBehaviour_DelayDisableDynamicBoneCollider_d_81_System_Collections_IEnumerator_get_Current, (AzazelNathanBehaviour_DelayDisableDynamicBoneCollider_d_81 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, AzazelNathanBehaviour_StoodUpDynamicBoneColliderCenterLerp_d_82__ctor, (AzazelNathanBehaviour_StoodUpDynamicBoneColliderCenterLerp_d_82 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AzazelNathanBehaviour_StoodUpDynamicBoneColliderCenterLerp_d_82_System_IDisposable_Dispose, (AzazelNathanBehaviour_StoodUpDynamicBoneColliderCenterLerp_d_82 * __this, MethodInfo * method)); DO_APP_FUNC(0x0048EBA0, bool, AzazelNathanBehaviour_StoodUpDynamicBoneColliderCenterLerp_d_82_MoveNext, (AzazelNathanBehaviour_StoodUpDynamicBoneColliderCenterLerp_d_82 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, AzazelNathanBehaviour_StoodUpDynamicBoneColliderCenterLerp_d_82_System_Collections_Generic_IEnumerator_System_Object__get_Current, (AzazelNathanBehaviour_StoodUpDynamicBoneColliderCenterLerp_d_82 * __this, MethodInfo * method)); DO_APP_FUNC(0x0048ED40, void, AzazelNathanBehaviour_StoodUpDynamicBoneColliderCenterLerp_d_82_System_Collections_IEnumerator_Reset, (AzazelNathanBehaviour_StoodUpDynamicBoneColliderCenterLerp_d_82 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12C90, AzazelNathanBehaviour_StoodUpDynamicBoneColliderCenterLerp_d_82_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, AzazelNathanBehaviour_StoodUpDynamicBoneColliderCenterLerp_d_82_System_Collections_IEnumerator_get_Current, (AzazelNathanBehaviour_StoodUpDynamicBoneColliderCenterLerp_d_82 * __this, MethodInfo * method)); DO_APP_FUNC(0x0048ED90, void, AzazelSamBehaviour_Awake, (AzazelSamBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0048F530, void, AzazelSamBehaviour_Start, (AzazelSamBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0048F6A0, void, AzazelSamBehaviour_Attached, (AzazelSamBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0048FF20, void, AzazelSamBehaviour_FixedUpdate, (AzazelSamBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00490120, void, AzazelSamBehaviour_OnShootPlayer, (AzazelSamBehaviour * __this, GameObject * player, bool hit, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12BF8, AzazelSamBehaviour_OnShootPlayer__MethodInfo); DO_APP_FUNC(0x004905B0, void, AzazelSamBehaviour_OnRangedAttackEvent, (AzazelSamBehaviour * __this, BoltEntity * ai, BoltEntity * player, float amount, bool hit, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12C00, AzazelSamBehaviour_OnRangedAttackEvent__MethodInfo); DO_APP_FUNC(0x00490860, void, AzazelSamBehaviour_OnPlayerPickedUpEvent, (AzazelSamBehaviour * __this, BoltEntity * killedBy, BoltEntity * player, bool inHidingSpot, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12C08, AzazelSamBehaviour_OnPlayerPickedUpEvent__MethodInfo); DO_APP_FUNC(0x004908E0, void, AzazelSamBehaviour_OnKnockoutEvent, (AzazelSamBehaviour * __this, BoltEntity * killedBy, BoltEntity * player, bool usingPoison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12C18, AzazelSamBehaviour_OnKnockoutEvent__MethodInfo); DO_APP_FUNC(0x004917C0, IEnumerator *, AzazelSamBehaviour_WaitForPurgatoryToSwitchRenderersBack, (AzazelSamBehaviour * __this, BoltEntity * player, MethodInfo * method)); DO_APP_FUNC(0x004918D0, void, AzazelSamBehaviour_OnAbilityIndex, (AzazelSamBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12C38, AzazelSamBehaviour_OnAbilityIndex__MethodInfo); DO_APP_FUNC(0x00491E80, void, AzazelSamBehaviour_OnAbilityIntData, (AzazelSamBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12C30, AzazelSamBehaviour_OnAbilityIntData__MethodInfo); DO_APP_FUNC(0x004937E0, IEnumerator *, AzazelSamBehaviour_DelayShowMuzzleFlash, (AzazelSamBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00493880, void, AzazelSamBehaviour_OnMainBehaviorRestart, (AzazelSamBehaviour * __this, Behavior * mainBehavior, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12C80, AzazelSamBehaviour_OnMainBehaviorRestart__MethodInfo); DO_APP_FUNC(0x00493930, void, AzazelSamBehaviour_Detached, (AzazelSamBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00493E30, void, AzazelSamBehaviour_OnKnockoutGrabRagdoll, (AzazelSamBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12C10, AzazelSamBehaviour_OnKnockoutGrabRagdoll__MethodInfo); DO_APP_FUNC(0x00493F50, void, AzazelSamBehaviour_OnKnockoutBreakNeck, (AzazelSamBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12C20, AzazelSamBehaviour_OnKnockoutBreakNeck__MethodInfo); DO_APP_FUNC(0x004944C0, IEnumerator *, AzazelSamBehaviour_OnTraverseOffMeshLink, (AzazelSamBehaviour * __this, RichSpecial * link, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12C68, AzazelSamBehaviour_OnTraverseOffMeshLink__MethodInfo); DO_APP_FUNC(0x004945D0, IEnumerator *, AzazelSamBehaviour_CheckLanded, (AzazelSamBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00494670, void, AzazelSamBehaviour_Landed, (AzazelSamBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x004948B0, void, AzazelSamBehaviour_OnGlobalGoatBurnEvent, (AzazelSamBehaviour * __this, int32_t numObjectsBurnt, BoltEntity * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12C28, AzazelSamBehaviour_OnGlobalGoatBurnEvent__MethodInfo); DO_APP_FUNC(0x00494AC0, void, AzazelSamBehaviour_PlayWanderClip, (AzazelSamBehaviour * __this, bool force, MethodInfo * method)); DO_APP_FUNC(0x00494D90, void, AzazelSamBehaviour_OnRagdollsLoaded, (AzazelSamBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12C70, AzazelSamBehaviour_OnRagdollsLoaded__MethodInfo); DO_APP_FUNC(0x00494EF0, void, AzazelSamBehaviour_OnRagdollLoaded, (AzazelSamBehaviour * __this, KnockoutRagdoll * ragdoll, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12C78, AzazelSamBehaviour_OnRagdollLoaded__MethodInfo); DO_APP_FUNC(0x00494FF0, bool, AzazelSamBehaviour_CanFinalGoatBurnt, (AzazelSamBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00495000, void, AzazelSamBehaviour_OnDestroy, (AzazelSamBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0048B6A0, void, AzazelSamBehaviour__ctor, (AzazelSamBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00495400, void, AzazelSamBehaviour_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AzazelSamBehaviour_c__ctor, (AzazelSamBehaviour_c * __this, MethodInfo * method)); DO_APP_FUNC(0x004954B0, bool, AzazelSamBehaviour_c__Awake_b__23_0, (AzazelSamBehaviour_c * __this, State * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12C58, AzazelSamBehaviour_c__Awake_b__23_0__MethodInfo); DO_APP_FUNC(0x003AE050, void, AzazelSamBehaviour_c_DisplayClass30_0__ctor, (AzazelSamBehaviour_c_DisplayClass30_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00495540, void, AzazelSamBehaviour_c_DisplayClass30_0__OnKnockoutEvent_b__0, (AzazelSamBehaviour_c_DisplayClass30_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12BC0, AzazelSamBehaviour_c_DisplayClass30_0__OnKnockoutEvent_b__0__MethodInfo); DO_APP_FUNC(0x004956E0, void, AzazelSamBehaviour_c_DisplayClass30_0__OnKnockoutEvent_b__1, (AzazelSamBehaviour_c_DisplayClass30_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12BB8, AzazelSamBehaviour_c_DisplayClass30_0__OnKnockoutEvent_b__1__MethodInfo); DO_APP_FUNC(0x00495960, void, AzazelSamBehaviour_c_DisplayClass30_0__OnKnockoutEvent_b__2, (AzazelSamBehaviour_c_DisplayClass30_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12BB0, AzazelSamBehaviour_c_DisplayClass30_0__OnKnockoutEvent_b__2__MethodInfo); DO_APP_FUNC(0x003BCD60, void, AzazelSamBehaviour_WaitForPurgatoryToSwitchRenderersBack_d_31__ctor, (AzazelSamBehaviour_WaitForPurgatoryToSwitchRenderersBack_d_31 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AzazelSamBehaviour_WaitForPurgatoryToSwitchRenderersBack_d_31_System_IDisposable_Dispose, (AzazelSamBehaviour_WaitForPurgatoryToSwitchRenderersBack_d_31 * __this, MethodInfo * method)); DO_APP_FUNC(0x004959F0, bool, AzazelSamBehaviour_WaitForPurgatoryToSwitchRenderersBack_d_31_MoveNext, (AzazelSamBehaviour_WaitForPurgatoryToSwitchRenderersBack_d_31 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, AzazelSamBehaviour_WaitForPurgatoryToSwitchRenderersBack_d_31_System_Collections_Generic_IEnumerator_System_Object__get_Current, (AzazelSamBehaviour_WaitForPurgatoryToSwitchRenderersBack_d_31 * __this, MethodInfo * method)); DO_APP_FUNC(0x00495D20, void, AzazelSamBehaviour_WaitForPurgatoryToSwitchRenderersBack_d_31_System_Collections_IEnumerator_Reset, (AzazelSamBehaviour_WaitForPurgatoryToSwitchRenderersBack_d_31 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12B40, AzazelSamBehaviour_WaitForPurgatoryToSwitchRenderersBack_d_31_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, AzazelSamBehaviour_WaitForPurgatoryToSwitchRenderersBack_d_31_System_Collections_IEnumerator_get_Current, (AzazelSamBehaviour_WaitForPurgatoryToSwitchRenderersBack_d_31 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, AzazelSamBehaviour_DelayShowMuzzleFlash_d_34__ctor, (AzazelSamBehaviour_DelayShowMuzzleFlash_d_34 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AzazelSamBehaviour_DelayShowMuzzleFlash_d_34_System_IDisposable_Dispose, (AzazelSamBehaviour_DelayShowMuzzleFlash_d_34 * __this, MethodInfo * method)); DO_APP_FUNC(0x00495D70, bool, AzazelSamBehaviour_DelayShowMuzzleFlash_d_34_MoveNext, (AzazelSamBehaviour_DelayShowMuzzleFlash_d_34 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, AzazelSamBehaviour_DelayShowMuzzleFlash_d_34_System_Collections_Generic_IEnumerator_System_Object__get_Current, (AzazelSamBehaviour_DelayShowMuzzleFlash_d_34 * __this, MethodInfo * method)); DO_APP_FUNC(0x00495F40, void, AzazelSamBehaviour_DelayShowMuzzleFlash_d_34_System_Collections_IEnumerator_Reset, (AzazelSamBehaviour_DelayShowMuzzleFlash_d_34 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12B38, AzazelSamBehaviour_DelayShowMuzzleFlash_d_34_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, AzazelSamBehaviour_DelayShowMuzzleFlash_d_34_System_Collections_IEnumerator_get_Current, (AzazelSamBehaviour_DelayShowMuzzleFlash_d_34 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, AzazelSamBehaviour_OnTraverseOffMeshLink_d_39__ctor, (AzazelSamBehaviour_OnTraverseOffMeshLink_d_39 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AzazelSamBehaviour_OnTraverseOffMeshLink_d_39_System_IDisposable_Dispose, (AzazelSamBehaviour_OnTraverseOffMeshLink_d_39 * __this, MethodInfo * method)); DO_APP_FUNC(0x00495F90, bool, AzazelSamBehaviour_OnTraverseOffMeshLink_d_39_MoveNext, (AzazelSamBehaviour_OnTraverseOffMeshLink_d_39 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, AzazelSamBehaviour_OnTraverseOffMeshLink_d_39_System_Collections_Generic_IEnumerator_System_Object__get_Current, (AzazelSamBehaviour_OnTraverseOffMeshLink_d_39 * __this, MethodInfo * method)); DO_APP_FUNC(0x004964A0, void, AzazelSamBehaviour_OnTraverseOffMeshLink_d_39_System_Collections_IEnumerator_Reset, (AzazelSamBehaviour_OnTraverseOffMeshLink_d_39 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12B30, AzazelSamBehaviour_OnTraverseOffMeshLink_d_39_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, AzazelSamBehaviour_OnTraverseOffMeshLink_d_39_System_Collections_IEnumerator_get_Current, (AzazelSamBehaviour_OnTraverseOffMeshLink_d_39 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, AzazelSamBehaviour_CheckLanded_d_40__ctor, (AzazelSamBehaviour_CheckLanded_d_40 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AzazelSamBehaviour_CheckLanded_d_40_System_IDisposable_Dispose, (AzazelSamBehaviour_CheckLanded_d_40 * __this, MethodInfo * method)); DO_APP_FUNC(0x004964F0, bool, AzazelSamBehaviour_CheckLanded_d_40_MoveNext, (AzazelSamBehaviour_CheckLanded_d_40 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, AzazelSamBehaviour_CheckLanded_d_40_System_Collections_Generic_IEnumerator_System_Object__get_Current, (AzazelSamBehaviour_CheckLanded_d_40 * __this, MethodInfo * method)); DO_APP_FUNC(0x00496790, void, AzazelSamBehaviour_CheckLanded_d_40_System_Collections_IEnumerator_Reset, (AzazelSamBehaviour_CheckLanded_d_40 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12B20, AzazelSamBehaviour_CheckLanded_d_40_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, AzazelSamBehaviour_CheckLanded_d_40_System_Collections_IEnumerator_get_Current, (AzazelSamBehaviour_CheckLanded_d_40 * __this, MethodInfo * method)); DO_APP_FUNC(0x004967E0, void, AzazelZaraBehaviour_Awake, (AzazelZaraBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00496FA0, void, AzazelZaraBehaviour_Start, (AzazelZaraBehaviour * __this, MethodInfo * method)); @@ -13293,21 +14972,28 @@ DO_APP_FUNC(0x00497770, void, AzazelZaraBehaviour_Attached, (AzazelZaraBehaviour DO_APP_FUNC(0x00498280, void, AzazelZaraBehaviour_Detached, (AzazelZaraBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x004984D0, void, AzazelZaraBehaviour_OnLookAtEntity, (AzazelZaraBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00498910, void, AzazelZaraBehaviour_OnAbilityIndex, (AzazelZaraBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12AB8, AzazelZaraBehaviour_OnAbilityIndex__MethodInfo); DO_APP_FUNC(0x00499D50, void, AzazelZaraBehaviour_EnableCollisionsWithPlayers, (AzazelZaraBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00499E40, void, AzazelZaraBehaviour_DisableCollisionsWithPlayers, (AzazelZaraBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00499F30, void, AzazelZaraBehaviour_OnAbilityIntData, (AzazelZaraBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12AB0, AzazelZaraBehaviour_OnAbilityIntData__MethodInfo); DO_APP_FUNC(0x0049B4C0, void, AzazelZaraBehaviour_OnIsHidden, (AzazelZaraBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12AA0, AzazelZaraBehaviour_OnIsHidden__MethodInfo); DO_APP_FUNC(0x0049B590, void, AzazelZaraBehaviour_SetVisibility, (AzazelZaraBehaviour * __this, bool show, MethodInfo * method)); DO_APP_FUNC(0x0049B7C0, IEnumerator *, AzazelZaraBehaviour_IntroCoroutine, (AzazelZaraBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0049B860, void, AzazelZaraBehaviour_OnPlayerPickedUpEvent, (AzazelZaraBehaviour * __this, BoltEntity * killedBy, BoltEntity * player, bool inHidingSpot, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12A90, AzazelZaraBehaviour_OnPlayerPickedUpEvent__MethodInfo); DO_APP_FUNC(0x0049B930, void, AzazelZaraBehaviour_OnKnockoutEvent, (AzazelZaraBehaviour * __this, BoltEntity * killedBy, BoltEntity * player, bool usingPoison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12A98, AzazelZaraBehaviour_OnKnockoutEvent__MethodInfo); DO_APP_FUNC(0x0049BF00, IEnumerator *, AzazelZaraBehaviour_WaitForCrawlingToSwitchRenderersBack, (AzazelZaraBehaviour * __this, BoltEntity * player, MethodInfo * method)); DO_APP_FUNC(0x0049C010, void, AzazelZaraBehaviour_OnMainBehaviorRestart, (AzazelZaraBehaviour * __this, Behavior * mainBehavior, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12B18, AzazelZaraBehaviour_OnMainBehaviorRestart__MethodInfo); DO_APP_FUNC(0x0049C0C0, bool, AzazelZaraBehaviour_IsZaraInjectable, (AzazelZaraBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0049C290, void, AzazelZaraBehaviour_Injected, (AzazelZaraBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0049C360, void, AzazelZaraBehaviour_Spawn, (AzazelZaraBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0049C650, void, AzazelZaraBehaviour_StartIntro, (AzazelZaraBehaviour * __this, Transform * eggSpawnPoint, MethodInfo * method)); DO_APP_FUNC(0x0049C6C0, void, AzazelZaraBehaviour_OnIntroComplete, (AzazelZaraBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12AA8, AzazelZaraBehaviour_OnIntroComplete__MethodInfo); DO_APP_FUNC(0x0049C7F0, IEnumerator *, AzazelZaraBehaviour_OnIntroCompleteInternal, (AzazelZaraBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0049C890, void, AzazelZaraBehaviour_SetForm, (AzazelZaraBehaviour * __this, bool spider, MethodInfo * method)); DO_APP_FUNC(0x0049D340, IEnumerator *, AzazelZaraBehaviour_Vomit, (AzazelZaraBehaviour * __this, MethodInfo * method)); @@ -13318,32 +15004,38 @@ DO_APP_FUNC(0x0049D820, void, AzazelZaraBehaviour_ClearRecentHole, (AzazelZaraBe DO_APP_FUNC(0x0049DAD0, bool, AzazelZaraBehaviour_CanDelayScream, (AzazelZaraBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0049DB90, void, AzazelZaraBehaviour__ctor, (AzazelZaraBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0049DC30, void, AzazelZaraBehaviour__OnKnockoutEvent_b__58_0, (AzazelZaraBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D129F8, AzazelZaraBehaviour__OnKnockoutEvent_b__58_0__MethodInfo); DO_APP_FUNC(0x00618150, void, AzazelZaraBehaviour_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AzazelZaraBehaviour_c__ctor, (AzazelZaraBehaviour_c * __this, MethodInfo * method)); DO_APP_FUNC(0x00618200, bool, AzazelZaraBehaviour_c__Attached_b__47_0, (AzazelZaraBehaviour_c * __this, Generic * a, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12A80, AzazelZaraBehaviour_c__Attached_b__47_0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, AzazelZaraBehaviour_IntroCoroutine_d_56__ctor, (AzazelZaraBehaviour_IntroCoroutine_d_56 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AzazelZaraBehaviour_IntroCoroutine_d_56_System_IDisposable_Dispose, (AzazelZaraBehaviour_IntroCoroutine_d_56 * __this, MethodInfo * method)); DO_APP_FUNC(0x00618240, bool, AzazelZaraBehaviour_IntroCoroutine_d_56_MoveNext, (AzazelZaraBehaviour_IntroCoroutine_d_56 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, AzazelZaraBehaviour_IntroCoroutine_d_56_System_Collections_Generic_IEnumerator_System_Object__get_Current, (AzazelZaraBehaviour_IntroCoroutine_d_56 * __this, MethodInfo * method)); DO_APP_FUNC(0x00619280, void, AzazelZaraBehaviour_IntroCoroutine_d_56_System_Collections_IEnumerator_Reset, (AzazelZaraBehaviour_IntroCoroutine_d_56 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7560, AzazelZaraBehaviour_IntroCoroutine_d_56_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, AzazelZaraBehaviour_IntroCoroutine_d_56_System_Collections_IEnumerator_get_Current, (AzazelZaraBehaviour_IntroCoroutine_d_56 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, AzazelZaraBehaviour_WaitForCrawlingToSwitchRenderersBack_d_59__ctor, (AzazelZaraBehaviour_WaitForCrawlingToSwitchRenderersBack_d_59 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AzazelZaraBehaviour_WaitForCrawlingToSwitchRenderersBack_d_59_System_IDisposable_Dispose, (AzazelZaraBehaviour_WaitForCrawlingToSwitchRenderersBack_d_59 * __this, MethodInfo * method)); DO_APP_FUNC(0x006192D0, bool, AzazelZaraBehaviour_WaitForCrawlingToSwitchRenderersBack_d_59_MoveNext, (AzazelZaraBehaviour_WaitForCrawlingToSwitchRenderersBack_d_59 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, AzazelZaraBehaviour_WaitForCrawlingToSwitchRenderersBack_d_59_System_Collections_Generic_IEnumerator_System_Object__get_Current, (AzazelZaraBehaviour_WaitForCrawlingToSwitchRenderersBack_d_59 * __this, MethodInfo * method)); DO_APP_FUNC(0x00619780, void, AzazelZaraBehaviour_WaitForCrawlingToSwitchRenderersBack_d_59_System_Collections_IEnumerator_Reset, (AzazelZaraBehaviour_WaitForCrawlingToSwitchRenderersBack_d_59 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7558, AzazelZaraBehaviour_WaitForCrawlingToSwitchRenderersBack_d_59_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, AzazelZaraBehaviour_WaitForCrawlingToSwitchRenderersBack_d_59_System_Collections_IEnumerator_get_Current, (AzazelZaraBehaviour_WaitForCrawlingToSwitchRenderersBack_d_59 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, AzazelZaraBehaviour_OnIntroCompleteInternal_d_66__ctor, (AzazelZaraBehaviour_OnIntroCompleteInternal_d_66 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AzazelZaraBehaviour_OnIntroCompleteInternal_d_66_System_IDisposable_Dispose, (AzazelZaraBehaviour_OnIntroCompleteInternal_d_66 * __this, MethodInfo * method)); DO_APP_FUNC(0x006197D0, bool, AzazelZaraBehaviour_OnIntroCompleteInternal_d_66_MoveNext, (AzazelZaraBehaviour_OnIntroCompleteInternal_d_66 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, AzazelZaraBehaviour_OnIntroCompleteInternal_d_66_System_Collections_Generic_IEnumerator_System_Object__get_Current, (AzazelZaraBehaviour_OnIntroCompleteInternal_d_66 * __this, MethodInfo * method)); DO_APP_FUNC(0x00619D20, void, AzazelZaraBehaviour_OnIntroCompleteInternal_d_66_System_Collections_IEnumerator_Reset, (AzazelZaraBehaviour_OnIntroCompleteInternal_d_66 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7548, AzazelZaraBehaviour_OnIntroCompleteInternal_d_66_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, AzazelZaraBehaviour_OnIntroCompleteInternal_d_66_System_Collections_IEnumerator_get_Current, (AzazelZaraBehaviour_OnIntroCompleteInternal_d_66 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, AzazelZaraBehaviour_Vomit_d_68__ctor, (AzazelZaraBehaviour_Vomit_d_68 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AzazelZaraBehaviour_Vomit_d_68_System_IDisposable_Dispose, (AzazelZaraBehaviour_Vomit_d_68 * __this, MethodInfo * method)); DO_APP_FUNC(0x00619D70, bool, AzazelZaraBehaviour_Vomit_d_68_MoveNext, (AzazelZaraBehaviour_Vomit_d_68 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, AzazelZaraBehaviour_Vomit_d_68_System_Collections_Generic_IEnumerator_System_Object__get_Current, (AzazelZaraBehaviour_Vomit_d_68 * __this, MethodInfo * method)); DO_APP_FUNC(0x00619EB0, void, AzazelZaraBehaviour_Vomit_d_68_System_Collections_IEnumerator_Reset, (AzazelZaraBehaviour_Vomit_d_68 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7538, AzazelZaraBehaviour_Vomit_d_68_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, AzazelZaraBehaviour_Vomit_d_68_System_Collections_IEnumerator_get_Current, (AzazelZaraBehaviour_Vomit_d_68 * __this, MethodInfo * method)); DO_APP_FUNC(0x00619F00, void, SurvivalAzazelBehaviour_Awake, (SurvivalAzazelBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0061B520, void, SurvivalAzazelBehaviour_Start, (SurvivalAzazelBehaviour * __this, MethodInfo * method)); @@ -13354,7 +15046,9 @@ DO_APP_FUNC(0x0061D360, void, SurvivalAzazelBehaviour_Detached, (SurvivalAzazelB DO_APP_FUNC(0x0061DFC0, void, SurvivalAzazelBehaviour_Update, (SurvivalAzazelBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0061E330, void, SurvivalAzazelBehaviour_SetRendererMaterial, (SurvivalAzazelBehaviour * __this, SkinnedMeshRenderer * renderer, Material * mat, MethodInfo * method)); DO_APP_FUNC(0x0061E430, void, SurvivalAzazelBehaviour_OnAbilityIndex, (SurvivalAzazelBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD74D0, SurvivalAzazelBehaviour_OnAbilityIndex__MethodInfo); DO_APP_FUNC(0x0061FD90, void, SurvivalAzazelBehaviour_OnAbilityIntData, (SurvivalAzazelBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD74B8, SurvivalAzazelBehaviour_OnAbilityIntData__MethodInfo); DO_APP_FUNC(0x00621730, void, SurvivalAzazelBehaviour_CheckWhichPlayersStaggered, (SurvivalAzazelBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00621CC0, IEnumerator *, SurvivalAzazelBehaviour_PlayEnrageEffect, (SurvivalAzazelBehaviour * __this, float delay, MethodInfo * method)); DO_APP_FUNC(0x00621D70, IEnumerator *, SurvivalAzazelBehaviour_EnragedEyes, (SurvivalAzazelBehaviour * __this, float delay, float duration, MethodInfo * method)); @@ -13369,32 +15063,43 @@ DO_APP_FUNC(0x00622360, void, SurvivalAzazelBehaviour_PlayStartWatchingClip, (Su DO_APP_FUNC(0x006224B0, IEnumerator *, SurvivalAzazelBehaviour_DelayStartWatchingClip, (SurvivalAzazelBehaviour * __this, float delay, MethodInfo * method)); DO_APP_FUNC(0x00622560, void, SurvivalAzazelBehaviour_Spawn, (SurvivalAzazelBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00622660, void, SurvivalAzazelBehaviour_OnPickedUpPlayer, (SurvivalAzazelBehaviour * __this, GameObject * ai, GameObject * player, bool inHidingSpot, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7468, SurvivalAzazelBehaviour_OnPickedUpPlayer__MethodInfo); DO_APP_FUNC(0x00622990, void, SurvivalAzazelBehaviour_OnKnockout, (SurvivalAzazelBehaviour * __this, GameObject * ai, GameObject * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7488, SurvivalAzazelBehaviour_OnKnockout__MethodInfo); DO_APP_FUNC(0x00622CA0, void, SurvivalAzazelBehaviour_SetLookAtEntity, (SurvivalAzazelBehaviour * __this, BoltEntity * lookAtEntity, MethodInfo * method)); DO_APP_FUNC(0x00622E20, void, SurvivalAzazelBehaviour_OnLookAtEntity, (SurvivalAzazelBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00623220, void, SurvivalAzazelBehaviour_OnPlayerPickedUpEvent, (SurvivalAzazelBehaviour * __this, BoltEntity * killedBy, BoltEntity * player, bool inHidingSpot, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7470, SurvivalAzazelBehaviour_OnPlayerPickedUpEvent__MethodInfo); DO_APP_FUNC(0x00624F70, void, SurvivalAzazelBehaviour_OnKnockoutGrabRagdollEvent, (SurvivalAzazelBehaviour * __this, BoltEntity * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD74A0, SurvivalAzazelBehaviour_OnKnockoutGrabRagdollEvent__MethodInfo); DO_APP_FUNC(0x00626B90, void, SurvivalAzazelBehaviour_OnKnockoutEvent, (SurvivalAzazelBehaviour * __this, BoltEntity * killedBy, BoltEntity * player, bool usingPoison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7498, SurvivalAzazelBehaviour_OnKnockoutEvent__MethodInfo); DO_APP_FUNC(0x006276F0, void, SurvivalAzazelBehaviour_KnockoutSpawnOnRagdoll, (SurvivalAzazelBehaviour * __this, BoltEntity * player, MethodInfo * method)); DO_APP_FUNC(0x00628A30, void, SurvivalAzazelBehaviour_KnockoutSwitchRenderersBack, (SurvivalAzazelBehaviour * __this, BoltEntity * player, bool resetMaterials, MethodInfo * method)); DO_APP_FUNC(0x00629D70, IEnumerator *, SurvivalAzazelBehaviour_DeactivateKnockoutRagdoll, (SurvivalAzazelBehaviour * __this, bool resetMaterials, MethodInfo * method)); DO_APP_FUNC(0x00629E30, void, SurvivalAzazelBehaviour_PlayWanderClip, (SurvivalAzazelBehaviour * __this, bool force, MethodInfo * method)); DO_APP_FUNC(0x0062A360, void, SurvivalAzazelBehaviour_OnGlobalGoatBurnEvent, (SurvivalAzazelBehaviour * __this, int32_t numObjectsBurnt, BoltEntity * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD74B0, SurvivalAzazelBehaviour_OnGlobalGoatBurnEvent__MethodInfo); DO_APP_FUNC(0x0041AEF0, bool, SurvivalAzazelBehaviour_CanFinalGoatBurnt, (SurvivalAzazelBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0062A770, IEnumerator *, SurvivalAzazelBehaviour_FinalGoatBurnt, (SurvivalAzazelBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0062A810, IEnumerator *, SurvivalAzazelBehaviour_DelayScream, (SurvivalAzazelBehaviour * __this, float delay, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, SurvivalAzazelBehaviour_CanDelayScream, (SurvivalAzazelBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0062A8C0, IEnumerator *, SurvivalAzazelBehaviour_DelayEnableMainAudioSource, (SurvivalAzazelBehaviour * __this, float delay, MethodInfo * method)); DO_APP_FUNC(0x0062A970, void, SurvivalAzazelBehaviour_OnPathComplete, (SurvivalAzazelBehaviour * __this, Path_1 * newPath, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7480, SurvivalAzazelBehaviour_OnPathComplete__MethodInfo); DO_APP_FUNC(0x0062AEA0, void, SurvivalAzazelBehaviour_OnAnnaPursueStart, (SurvivalAzazelBehaviour * __this, GameObject * target, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD74A8, SurvivalAzazelBehaviour_OnAnnaPursueStart__MethodInfo); DO_APP_FUNC(0x0062AF50, void, SurvivalAzazelBehaviour_OnAnnaPursueEnd, (SurvivalAzazelBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD74C0, SurvivalAzazelBehaviour_OnAnnaPursueEnd__MethodInfo); DO_APP_FUNC(0x0062B000, void, SurvivalAzazelBehaviour_SetInsideAnnaAntiWanderCollider, (SurvivalAzazelBehaviour * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x0062B010, bool, SurvivalAzazelBehaviour_IsInsideAnnaAntiWanderCollider, (SurvivalAzazelBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0062B020, void, SurvivalAzazelBehaviour_ClearLastDestination, (SurvivalAzazelBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0062B080, void, SurvivalAzazelBehaviour_OnDestroy, (SurvivalAzazelBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0062B260, void, SurvivalAzazelBehaviour_AnnaFrying, (SurvivalAzazelBehaviour * __this, int32_t fryCount, MethodInfo * method)); DO_APP_FUNC(0x0062B4A0, void, SurvivalAzazelBehaviour_OnMultipleFocus, (SurvivalAzazelBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7478, SurvivalAzazelBehaviour_OnMultipleFocus__MethodInfo); DO_APP_FUNC(0x0062B7E0, void, SurvivalAzazelBehaviour_OnMoving, (SurvivalAzazelBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7490, SurvivalAzazelBehaviour_OnMoving__MethodInfo); DO_APP_FUNC(0x0062B9A0, void, SurvivalAzazelBehaviour_DebugMarkStuckSpot, (SurvivalAzazelBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0062BDD0, bool, SurvivalAzazelBehaviour_IsCalmingDown, (SurvivalAzazelBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0062BEC0, bool, SurvivalAzazelBehaviour_IsEnraged, (SurvivalAzazelBehaviour * __this, MethodInfo * method)); @@ -13406,79 +15111,96 @@ DO_APP_FUNC(0x003C9200, Behavior *, SurvivalAzazelBehaviour_GetMainBehavior, (Su DO_APP_FUNC(0x003AE050, void, SurvivalAzazelBehaviour_StopPursueIfNecessary, (SurvivalAzazelBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0062C710, void, SurvivalAzazelBehaviour__ctor, (SurvivalAzazelBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0062C8A0, void, SurvivalAzazelBehaviour__OnPlayerPickedUpEvent_b__156_1, (SurvivalAzazelBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD73B8, SurvivalAzazelBehaviour__OnPlayerPickedUpEvent_b__156_1__MethodInfo); DO_APP_FUNC(0x0062C980, void, SurvivalAzazelBehaviour__OnPlayerPickedUpEvent_b__156_0, (SurvivalAzazelBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD73C8, SurvivalAzazelBehaviour__OnPlayerPickedUpEvent_b__156_0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, SurvivalAzazelBehaviour_SetMollyHairRendererFlag_d_131__ctor, (SurvivalAzazelBehaviour_SetMollyHairRendererFlag_d_131 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SurvivalAzazelBehaviour_SetMollyHairRendererFlag_d_131_System_IDisposable_Dispose, (SurvivalAzazelBehaviour_SetMollyHairRendererFlag_d_131 * __this, MethodInfo * method)); DO_APP_FUNC(0x0062CB20, bool, SurvivalAzazelBehaviour_SetMollyHairRendererFlag_d_131_MoveNext, (SurvivalAzazelBehaviour_SetMollyHairRendererFlag_d_131 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalAzazelBehaviour_SetMollyHairRendererFlag_d_131_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SurvivalAzazelBehaviour_SetMollyHairRendererFlag_d_131 * __this, MethodInfo * method)); DO_APP_FUNC(0x0062CF20, void, SurvivalAzazelBehaviour_SetMollyHairRendererFlag_d_131_System_Collections_IEnumerator_Reset, (SurvivalAzazelBehaviour_SetMollyHairRendererFlag_d_131 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD72C8, SurvivalAzazelBehaviour_SetMollyHairRendererFlag_d_131_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalAzazelBehaviour_SetMollyHairRendererFlag_d_131_System_Collections_IEnumerator_get_Current, (SurvivalAzazelBehaviour_SetMollyHairRendererFlag_d_131 * __this, MethodInfo * method)); DO_APP_FUNC(0x0062CF70, void, SurvivalAzazelBehaviour_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SurvivalAzazelBehaviour_c__ctor, (SurvivalAzazelBehaviour_c * __this, MethodInfo * method)); DO_APP_FUNC(0x0062D020, bool, SurvivalAzazelBehaviour_c__Attached_b__132_0, (SurvivalAzazelBehaviour_c * __this, Generic * ability, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7458, SurvivalAzazelBehaviour_c__Attached_b__132_0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, SurvivalAzazelBehaviour_WaitToResetRecentlyAttached_d_133__ctor, (SurvivalAzazelBehaviour_WaitToResetRecentlyAttached_d_133 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SurvivalAzazelBehaviour_WaitToResetRecentlyAttached_d_133_System_IDisposable_Dispose, (SurvivalAzazelBehaviour_WaitToResetRecentlyAttached_d_133 * __this, MethodInfo * method)); DO_APP_FUNC(0x0062D060, bool, SurvivalAzazelBehaviour_WaitToResetRecentlyAttached_d_133_MoveNext, (SurvivalAzazelBehaviour_WaitToResetRecentlyAttached_d_133 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalAzazelBehaviour_WaitToResetRecentlyAttached_d_133_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SurvivalAzazelBehaviour_WaitToResetRecentlyAttached_d_133 * __this, MethodInfo * method)); DO_APP_FUNC(0x0062D140, void, SurvivalAzazelBehaviour_WaitToResetRecentlyAttached_d_133_System_Collections_IEnumerator_Reset, (SurvivalAzazelBehaviour_WaitToResetRecentlyAttached_d_133 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD72C0, SurvivalAzazelBehaviour_WaitToResetRecentlyAttached_d_133_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalAzazelBehaviour_WaitToResetRecentlyAttached_d_133_System_Collections_IEnumerator_get_Current, (SurvivalAzazelBehaviour_WaitToResetRecentlyAttached_d_133 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, SurvivalAzazelBehaviour_PlayEnrageEffect_d_140__ctor, (SurvivalAzazelBehaviour_PlayEnrageEffect_d_140 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SurvivalAzazelBehaviour_PlayEnrageEffect_d_140_System_IDisposable_Dispose, (SurvivalAzazelBehaviour_PlayEnrageEffect_d_140 * __this, MethodInfo * method)); DO_APP_FUNC(0x0062D190, bool, SurvivalAzazelBehaviour_PlayEnrageEffect_d_140_MoveNext, (SurvivalAzazelBehaviour_PlayEnrageEffect_d_140 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalAzazelBehaviour_PlayEnrageEffect_d_140_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SurvivalAzazelBehaviour_PlayEnrageEffect_d_140 * __this, MethodInfo * method)); DO_APP_FUNC(0x0062D380, void, SurvivalAzazelBehaviour_PlayEnrageEffect_d_140_System_Collections_IEnumerator_Reset, (SurvivalAzazelBehaviour_PlayEnrageEffect_d_140 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD72B8, SurvivalAzazelBehaviour_PlayEnrageEffect_d_140_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalAzazelBehaviour_PlayEnrageEffect_d_140_System_Collections_IEnumerator_get_Current, (SurvivalAzazelBehaviour_PlayEnrageEffect_d_140 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, SurvivalAzazelBehaviour_EnragedEyes_d_141__ctor, (SurvivalAzazelBehaviour_EnragedEyes_d_141 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SurvivalAzazelBehaviour_EnragedEyes_d_141_System_IDisposable_Dispose, (SurvivalAzazelBehaviour_EnragedEyes_d_141 * __this, MethodInfo * method)); DO_APP_FUNC(0x0062D3D0, bool, SurvivalAzazelBehaviour_EnragedEyes_d_141_MoveNext, (SurvivalAzazelBehaviour_EnragedEyes_d_141 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalAzazelBehaviour_EnragedEyes_d_141_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SurvivalAzazelBehaviour_EnragedEyes_d_141 * __this, MethodInfo * method)); DO_APP_FUNC(0x0062D690, void, SurvivalAzazelBehaviour_EnragedEyes_d_141_System_Collections_IEnumerator_Reset, (SurvivalAzazelBehaviour_EnragedEyes_d_141 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD72B0, SurvivalAzazelBehaviour_EnragedEyes_d_141_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalAzazelBehaviour_EnragedEyes_d_141_System_Collections_IEnumerator_get_Current, (SurvivalAzazelBehaviour_EnragedEyes_d_141 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, SurvivalAzazelBehaviour_DelayBreathing_d_146__ctor, (SurvivalAzazelBehaviour_DelayBreathing_d_146 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SurvivalAzazelBehaviour_DelayBreathing_d_146_System_IDisposable_Dispose, (SurvivalAzazelBehaviour_DelayBreathing_d_146 * __this, MethodInfo * method)); DO_APP_FUNC(0x0062D6E0, bool, SurvivalAzazelBehaviour_DelayBreathing_d_146_MoveNext, (SurvivalAzazelBehaviour_DelayBreathing_d_146 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalAzazelBehaviour_DelayBreathing_d_146_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SurvivalAzazelBehaviour_DelayBreathing_d_146 * __this, MethodInfo * method)); DO_APP_FUNC(0x0062D960, void, SurvivalAzazelBehaviour_DelayBreathing_d_146_System_Collections_IEnumerator_Reset, (SurvivalAzazelBehaviour_DelayBreathing_d_146 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD72A8, SurvivalAzazelBehaviour_DelayBreathing_d_146_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalAzazelBehaviour_DelayBreathing_d_146_System_Collections_IEnumerator_get_Current, (SurvivalAzazelBehaviour_DelayBreathing_d_146 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, SurvivalAzazelBehaviour_DelayBreathingVolume_d_148__ctor, (SurvivalAzazelBehaviour_DelayBreathingVolume_d_148 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SurvivalAzazelBehaviour_DelayBreathingVolume_d_148_System_IDisposable_Dispose, (SurvivalAzazelBehaviour_DelayBreathingVolume_d_148 * __this, MethodInfo * method)); DO_APP_FUNC(0x0062D9B0, bool, SurvivalAzazelBehaviour_DelayBreathingVolume_d_148_MoveNext, (SurvivalAzazelBehaviour_DelayBreathingVolume_d_148 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalAzazelBehaviour_DelayBreathingVolume_d_148_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SurvivalAzazelBehaviour_DelayBreathingVolume_d_148 * __this, MethodInfo * method)); DO_APP_FUNC(0x0062DBD0, void, SurvivalAzazelBehaviour_DelayBreathingVolume_d_148_System_Collections_IEnumerator_Reset, (SurvivalAzazelBehaviour_DelayBreathingVolume_d_148 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD72A0, SurvivalAzazelBehaviour_DelayBreathingVolume_d_148_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalAzazelBehaviour_DelayBreathingVolume_d_148_System_Collections_IEnumerator_get_Current, (SurvivalAzazelBehaviour_DelayBreathingVolume_d_148 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, SurvivalAzazelBehaviour_DelayStartWatchingClip_d_150__ctor, (SurvivalAzazelBehaviour_DelayStartWatchingClip_d_150 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SurvivalAzazelBehaviour_DelayStartWatchingClip_d_150_System_IDisposable_Dispose, (SurvivalAzazelBehaviour_DelayStartWatchingClip_d_150 * __this, MethodInfo * method)); DO_APP_FUNC(0x0062DC20, bool, SurvivalAzazelBehaviour_DelayStartWatchingClip_d_150_MoveNext, (SurvivalAzazelBehaviour_DelayStartWatchingClip_d_150 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalAzazelBehaviour_DelayStartWatchingClip_d_150_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SurvivalAzazelBehaviour_DelayStartWatchingClip_d_150 * __this, MethodInfo * method)); DO_APP_FUNC(0x0062DEC0, void, SurvivalAzazelBehaviour_DelayStartWatchingClip_d_150_System_Collections_IEnumerator_Reset, (SurvivalAzazelBehaviour_DelayStartWatchingClip_d_150 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7298, SurvivalAzazelBehaviour_DelayStartWatchingClip_d_150_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalAzazelBehaviour_DelayStartWatchingClip_d_150_System_Collections_IEnumerator_get_Current, (SurvivalAzazelBehaviour_DelayStartWatchingClip_d_150 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SurvivalAzazelBehaviour_c_DisplayClass158_0__ctor, (SurvivalAzazelBehaviour_c_DisplayClass158_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0062DF10, void, SurvivalAzazelBehaviour_c_DisplayClass158_0__OnKnockoutEvent_b__0, (SurvivalAzazelBehaviour_c_DisplayClass158_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7398, SurvivalAzazelBehaviour_c_DisplayClass158_0__OnKnockoutEvent_b__0__MethodInfo); DO_APP_FUNC(0x0062E0B0, void, SurvivalAzazelBehaviour_c_DisplayClass158_0__OnKnockoutEvent_b__1, (SurvivalAzazelBehaviour_c_DisplayClass158_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7388, SurvivalAzazelBehaviour_c_DisplayClass158_0__OnKnockoutEvent_b__1__MethodInfo); DO_APP_FUNC(0x0062E140, void, SurvivalAzazelBehaviour_c_DisplayClass158_0__OnKnockoutEvent_b__2, (SurvivalAzazelBehaviour_c_DisplayClass158_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7390, SurvivalAzazelBehaviour_c_DisplayClass158_0__OnKnockoutEvent_b__2__MethodInfo); DO_APP_FUNC(0x003BCD60, void, SurvivalAzazelBehaviour_DeactivateKnockoutRagdoll_d_161__ctor, (SurvivalAzazelBehaviour_DeactivateKnockoutRagdoll_d_161 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SurvivalAzazelBehaviour_DeactivateKnockoutRagdoll_d_161_System_IDisposable_Dispose, (SurvivalAzazelBehaviour_DeactivateKnockoutRagdoll_d_161 * __this, MethodInfo * method)); DO_APP_FUNC(0x0062E1D0, bool, SurvivalAzazelBehaviour_DeactivateKnockoutRagdoll_d_161_MoveNext, (SurvivalAzazelBehaviour_DeactivateKnockoutRagdoll_d_161 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalAzazelBehaviour_DeactivateKnockoutRagdoll_d_161_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SurvivalAzazelBehaviour_DeactivateKnockoutRagdoll_d_161 * __this, MethodInfo * method)); DO_APP_FUNC(0x0062E730, void, SurvivalAzazelBehaviour_DeactivateKnockoutRagdoll_d_161_System_Collections_IEnumerator_Reset, (SurvivalAzazelBehaviour_DeactivateKnockoutRagdoll_d_161 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7290, SurvivalAzazelBehaviour_DeactivateKnockoutRagdoll_d_161_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalAzazelBehaviour_DeactivateKnockoutRagdoll_d_161_System_Collections_IEnumerator_get_Current, (SurvivalAzazelBehaviour_DeactivateKnockoutRagdoll_d_161 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, SurvivalAzazelBehaviour_FinalGoatBurnt_d_165__ctor, (SurvivalAzazelBehaviour_FinalGoatBurnt_d_165 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SurvivalAzazelBehaviour_FinalGoatBurnt_d_165_System_IDisposable_Dispose, (SurvivalAzazelBehaviour_FinalGoatBurnt_d_165 * __this, MethodInfo * method)); DO_APP_FUNC(0x0062E780, bool, SurvivalAzazelBehaviour_FinalGoatBurnt_d_165_MoveNext, (SurvivalAzazelBehaviour_FinalGoatBurnt_d_165 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalAzazelBehaviour_FinalGoatBurnt_d_165_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SurvivalAzazelBehaviour_FinalGoatBurnt_d_165 * __this, MethodInfo * method)); DO_APP_FUNC(0x0062F000, void, SurvivalAzazelBehaviour_FinalGoatBurnt_d_165_System_Collections_IEnumerator_Reset, (SurvivalAzazelBehaviour_FinalGoatBurnt_d_165 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7280, SurvivalAzazelBehaviour_FinalGoatBurnt_d_165_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalAzazelBehaviour_FinalGoatBurnt_d_165_System_Collections_IEnumerator_get_Current, (SurvivalAzazelBehaviour_FinalGoatBurnt_d_165 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, SurvivalAzazelBehaviour_DelayScream_d_166__ctor, (SurvivalAzazelBehaviour_DelayScream_d_166 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SurvivalAzazelBehaviour_DelayScream_d_166_System_IDisposable_Dispose, (SurvivalAzazelBehaviour_DelayScream_d_166 * __this, MethodInfo * method)); DO_APP_FUNC(0x0062F050, bool, SurvivalAzazelBehaviour_DelayScream_d_166_MoveNext, (SurvivalAzazelBehaviour_DelayScream_d_166 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalAzazelBehaviour_DelayScream_d_166_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SurvivalAzazelBehaviour_DelayScream_d_166 * __this, MethodInfo * method)); DO_APP_FUNC(0x0062FA10, void, SurvivalAzazelBehaviour_DelayScream_d_166_System_Collections_IEnumerator_Reset, (SurvivalAzazelBehaviour_DelayScream_d_166 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7270, SurvivalAzazelBehaviour_DelayScream_d_166_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalAzazelBehaviour_DelayScream_d_166_System_Collections_IEnumerator_get_Current, (SurvivalAzazelBehaviour_DelayScream_d_166 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, SurvivalAzazelBehaviour_DelayEnableMainAudioSource_d_168__ctor, (SurvivalAzazelBehaviour_DelayEnableMainAudioSource_d_168 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SurvivalAzazelBehaviour_DelayEnableMainAudioSource_d_168_System_IDisposable_Dispose, (SurvivalAzazelBehaviour_DelayEnableMainAudioSource_d_168 * __this, MethodInfo * method)); DO_APP_FUNC(0x0062FA60, bool, SurvivalAzazelBehaviour_DelayEnableMainAudioSource_d_168_MoveNext, (SurvivalAzazelBehaviour_DelayEnableMainAudioSource_d_168 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalAzazelBehaviour_DelayEnableMainAudioSource_d_168_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SurvivalAzazelBehaviour_DelayEnableMainAudioSource_d_168 * __this, MethodInfo * method)); DO_APP_FUNC(0x0062FC90, void, SurvivalAzazelBehaviour_DelayEnableMainAudioSource_d_168_System_Collections_IEnumerator_Reset, (SurvivalAzazelBehaviour_DelayEnableMainAudioSource_d_168 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7268, SurvivalAzazelBehaviour_DelayEnableMainAudioSource_d_168_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalAzazelBehaviour_DelayEnableMainAudioSource_d_168_System_Collections_IEnumerator_get_Current, (SurvivalAzazelBehaviour_DelayEnableMainAudioSource_d_168 * __this, MethodInfo * method)); DO_APP_FUNC(0x0059DF80, AnimationEventTrigger *, UseHole_get_StopEvent, (UseHole * __this, MethodInfo * method)); DO_APP_FUNC(0x0059DF90, void, UseHole_set_StopEvent, (UseHole * __this, AnimationEventTrigger * value, MethodInfo * method)); @@ -13491,6 +15213,7 @@ DO_APP_FUNC(0x005A6400, void, UseHole_set_Exit, (UseHole * __this, bool value, M DO_APP_FUNC(0x0062FCE0, void, UseHole_Awake, (UseHole * __this, MethodInfo * method)); DO_APP_FUNC(0x0062FE40, void, UseHole_AbilityStarted, (UseHole * __this, MethodInfo * method)); DO_APP_FUNC(0x0059F010, void, UseHole_OnComplete, (UseHole * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7260, UseHole_OnComplete__MethodInfo); DO_APP_FUNC(0x0059F040, void, UseHole_AbilityStopped, (UseHole * __this, bool force, MethodInfo * method)); DO_APP_FUNC(0x006300A0, void, UseHole_OnDestroy, (UseHole * __this, MethodInfo * method)); DO_APP_FUNC(0x006301A0, void, UseHole__ctor, (UseHole * __this, MethodInfo * method)); @@ -13502,15 +15225,20 @@ DO_APP_FUNC(0x00631970, void, BoarBehaviour_Spawn, (BoarBehaviour * __this, Meth DO_APP_FUNC(0x00631CB0, IEnumerator *, BoarBehaviour_FinishSpawn, (BoarBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00631D50, void, BoarBehaviour_FixedUpdate, (BoarBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00632140, void, BoarBehaviour_OnPursuing, (BoarBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7208, BoarBehaviour_OnPursuing__MethodInfo); DO_APP_FUNC(0x00632620, void, BoarBehaviour_OnAbilityIndex, (BoarBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7238, BoarBehaviour_OnAbilityIndex__MethodInfo); DO_APP_FUNC(0x00632B90, void, BoarBehaviour_SetRandomAttackTypeFloat, (BoarBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00632C30, void, BoarBehaviour_OnAbilityIntData, (BoarBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7228, BoarBehaviour_OnAbilityIntData__MethodInfo); DO_APP_FUNC(0x006330E0, void, BoarBehaviour_CheckWhichPlayersStaggered, (BoarBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00633670, IEnumerator *, BoarBehaviour_Die, (BoarBehaviour * __this, bool despawn, MethodInfo * method)); DO_APP_FUNC(0x00633730, IEnumerator *, BoarBehaviour_Dissolve, (BoarBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x006337D0, void, BoarBehaviour_OnPursue, (BoarBehaviour * __this, GameObject * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7220, BoarBehaviour_OnPursue__MethodInfo); DO_APP_FUNC(0x00633B20, IEnumerator *, BoarBehaviour_AttackPlayer, (BoarBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00633BC0, void, BoarBehaviour_OnChargeHit, (BoarBehaviour * __this, GameObject * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7230, BoarBehaviour_OnChargeHit__MethodInfo); DO_APP_FUNC(0x00633EC0, void, BoarBehaviour_Despawn, (BoarBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00634090, void, BoarBehaviour_Respawn, (BoarBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00634620, IEnumerator *, BoarBehaviour_ReverseDissolve, (BoarBehaviour * __this, MethodInfo * method)); @@ -13519,6 +15247,7 @@ DO_APP_FUNC(0x00634A10, Behavior *, BoarBehaviour_GetMainBehavior, (BoarBehaviou DO_APP_FUNC(0x00634A20, void, BoarBehaviour_Footstep, (BoarBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00634AE0, void, BoarBehaviour_NostrilSmoke, (BoarBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00634BA0, void, BoarBehaviour_OnGlobalGoatBurnEvent, (BoarBehaviour * __this, int32_t numObjectsBurnt, BoltEntity * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7218, BoarBehaviour_OnGlobalGoatBurnEvent__MethodInfo); DO_APP_FUNC(0x00634C70, IEnumerator *, BoarBehaviour_WanderGrunt, (BoarBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00634D10, IEnumerator *, BoarBehaviour_ChaseGrunt, (BoarBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00634DB0, void, BoarBehaviour__ctor, (BoarBehaviour * __this, MethodInfo * method)); @@ -13528,52 +15257,64 @@ DO_APP_FUNC(0x003AE050, void, BoarBehaviour_FinishSpawn_d_60_System_IDisposable_ DO_APP_FUNC(0x00634F40, bool, BoarBehaviour_FinishSpawn_d_60_MoveNext, (BoarBehaviour_FinishSpawn_d_60 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, BoarBehaviour_FinishSpawn_d_60_System_Collections_Generic_IEnumerator_System_Object__get_Current, (BoarBehaviour_FinishSpawn_d_60 * __this, MethodInfo * method)); DO_APP_FUNC(0x00635250, void, BoarBehaviour_FinishSpawn_d_60_System_Collections_IEnumerator_Reset, (BoarBehaviour_FinishSpawn_d_60 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7188, BoarBehaviour_FinishSpawn_d_60_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, BoarBehaviour_FinishSpawn_d_60_System_Collections_IEnumerator_get_Current, (BoarBehaviour_FinishSpawn_d_60 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, BoarBehaviour_Die_d_67__ctor, (BoarBehaviour_Die_d_67 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BoarBehaviour_Die_d_67_System_IDisposable_Dispose, (BoarBehaviour_Die_d_67 * __this, MethodInfo * method)); DO_APP_FUNC(0x006352A0, bool, BoarBehaviour_Die_d_67_MoveNext, (BoarBehaviour_Die_d_67 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, BoarBehaviour_Die_d_67_System_Collections_Generic_IEnumerator_System_Object__get_Current, (BoarBehaviour_Die_d_67 * __this, MethodInfo * method)); DO_APP_FUNC(0x006354C0, void, BoarBehaviour_Die_d_67_System_Collections_IEnumerator_Reset, (BoarBehaviour_Die_d_67 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7180, BoarBehaviour_Die_d_67_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, BoarBehaviour_Die_d_67_System_Collections_IEnumerator_get_Current, (BoarBehaviour_Die_d_67 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, BoarBehaviour_Dissolve_d_68__ctor, (BoarBehaviour_Dissolve_d_68 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BoarBehaviour_Dissolve_d_68_System_IDisposable_Dispose, (BoarBehaviour_Dissolve_d_68 * __this, MethodInfo * method)); DO_APP_FUNC(0x00635510, bool, BoarBehaviour_Dissolve_d_68_MoveNext, (BoarBehaviour_Dissolve_d_68 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, BoarBehaviour_Dissolve_d_68_System_Collections_Generic_IEnumerator_System_Object__get_Current, (BoarBehaviour_Dissolve_d_68 * __this, MethodInfo * method)); DO_APP_FUNC(0x00635F10, void, BoarBehaviour_Dissolve_d_68_System_Collections_IEnumerator_Reset, (BoarBehaviour_Dissolve_d_68 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7178, BoarBehaviour_Dissolve_d_68_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, BoarBehaviour_Dissolve_d_68_System_Collections_IEnumerator_get_Current, (BoarBehaviour_Dissolve_d_68 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, BoarBehaviour_AttackPlayer_d_70__ctor, (BoarBehaviour_AttackPlayer_d_70 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BoarBehaviour_AttackPlayer_d_70_System_IDisposable_Dispose, (BoarBehaviour_AttackPlayer_d_70 * __this, MethodInfo * method)); DO_APP_FUNC(0x00635F60, bool, BoarBehaviour_AttackPlayer_d_70_MoveNext, (BoarBehaviour_AttackPlayer_d_70 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, BoarBehaviour_AttackPlayer_d_70_System_Collections_Generic_IEnumerator_System_Object__get_Current, (BoarBehaviour_AttackPlayer_d_70 * __this, MethodInfo * method)); DO_APP_FUNC(0x00636760, void, BoarBehaviour_AttackPlayer_d_70_System_Collections_IEnumerator_Reset, (BoarBehaviour_AttackPlayer_d_70 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7170, BoarBehaviour_AttackPlayer_d_70_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, BoarBehaviour_AttackPlayer_d_70_System_Collections_IEnumerator_get_Current, (BoarBehaviour_AttackPlayer_d_70 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, BoarBehaviour_ReverseDissolve_d_74__ctor, (BoarBehaviour_ReverseDissolve_d_74 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BoarBehaviour_ReverseDissolve_d_74_System_IDisposable_Dispose, (BoarBehaviour_ReverseDissolve_d_74 * __this, MethodInfo * method)); DO_APP_FUNC(0x006367B0, bool, BoarBehaviour_ReverseDissolve_d_74_MoveNext, (BoarBehaviour_ReverseDissolve_d_74 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, BoarBehaviour_ReverseDissolve_d_74_System_Collections_Generic_IEnumerator_System_Object__get_Current, (BoarBehaviour_ReverseDissolve_d_74 * __this, MethodInfo * method)); DO_APP_FUNC(0x00636F90, void, BoarBehaviour_ReverseDissolve_d_74_System_Collections_IEnumerator_Reset, (BoarBehaviour_ReverseDissolve_d_74 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7160, BoarBehaviour_ReverseDissolve_d_74_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, BoarBehaviour_ReverseDissolve_d_74_System_Collections_IEnumerator_get_Current, (BoarBehaviour_ReverseDissolve_d_74 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, BoarBehaviour_WanderGrunt_d_80__ctor, (BoarBehaviour_WanderGrunt_d_80 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BoarBehaviour_WanderGrunt_d_80_System_IDisposable_Dispose, (BoarBehaviour_WanderGrunt_d_80 * __this, MethodInfo * method)); DO_APP_FUNC(0x00636FE0, bool, BoarBehaviour_WanderGrunt_d_80_MoveNext, (BoarBehaviour_WanderGrunt_d_80 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, BoarBehaviour_WanderGrunt_d_80_System_Collections_Generic_IEnumerator_System_Object__get_Current, (BoarBehaviour_WanderGrunt_d_80 * __this, MethodInfo * method)); DO_APP_FUNC(0x00637480, void, BoarBehaviour_WanderGrunt_d_80_System_Collections_IEnumerator_Reset, (BoarBehaviour_WanderGrunt_d_80 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7158, BoarBehaviour_WanderGrunt_d_80_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, BoarBehaviour_WanderGrunt_d_80_System_Collections_IEnumerator_get_Current, (BoarBehaviour_WanderGrunt_d_80 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, BoarBehaviour_ChaseGrunt_d_81__ctor, (BoarBehaviour_ChaseGrunt_d_81 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BoarBehaviour_ChaseGrunt_d_81_System_IDisposable_Dispose, (BoarBehaviour_ChaseGrunt_d_81 * __this, MethodInfo * method)); DO_APP_FUNC(0x006374D0, bool, BoarBehaviour_ChaseGrunt_d_81_MoveNext, (BoarBehaviour_ChaseGrunt_d_81 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, BoarBehaviour_ChaseGrunt_d_81_System_Collections_Generic_IEnumerator_System_Object__get_Current, (BoarBehaviour_ChaseGrunt_d_81 * __this, MethodInfo * method)); DO_APP_FUNC(0x00637A30, void, BoarBehaviour_ChaseGrunt_d_81_System_Collections_IEnumerator_Reset, (BoarBehaviour_ChaseGrunt_d_81 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7150, BoarBehaviour_ChaseGrunt_d_81_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, BoarBehaviour_ChaseGrunt_d_81_System_Collections_IEnumerator_get_Current, (BoarBehaviour_ChaseGrunt_d_81 * __this, MethodInfo * method)); DO_APP_FUNC(0x00637A80, void, CrowBehaviour_Awake, (CrowBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00638540, void, CrowBehaviour_Attached, (CrowBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00639290, void, CrowBehaviour_FixedUpdate, (CrowBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00639590, void, CrowBehaviour_Update, (CrowBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00639800, void, CrowBehaviour_OnSpeed, (CrowBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD70D8, CrowBehaviour_OnSpeed__MethodInfo); DO_APP_FUNC(0x006398C0, void, CrowBehaviour_OnPursuing, (CrowBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD70F8, CrowBehaviour_OnPursuing__MethodInfo); DO_APP_FUNC(0x00639B00, void, CrowBehaviour_OnMoving, (CrowBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7110, CrowBehaviour_OnMoving__MethodInfo); DO_APP_FUNC(0x00639EE0, void, CrowBehaviour_OnAbilityIndex, (CrowBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7138, CrowBehaviour_OnAbilityIndex__MethodInfo); DO_APP_FUNC(0x0063A4A0, void, CrowBehaviour_OnAbilityIntData, (CrowBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7128, CrowBehaviour_OnAbilityIntData__MethodInfo); DO_APP_FUNC(0x0063A730, IEnumerator *, CrowBehaviour_Die, (CrowBehaviour * __this, bool despawn, MethodInfo * method)); DO_APP_FUNC(0x0063A7F0, IEnumerator *, CrowBehaviour_Dissolve, (CrowBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0063A890, void, CrowBehaviour_Despawn, (CrowBehaviour * __this, MethodInfo * method)); @@ -13583,13 +15324,20 @@ DO_APP_FUNC(0x0063B1B0, void, CrowBehaviour_Detached, (CrowBehaviour * __this, M DO_APP_FUNC(0x0059DF80, Behavior *, CrowBehaviour_GetMainBehavior, (CrowBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0063B820, Behavior *, CrowBehaviour_GetInitBehaviour, (CrowBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0063B830, void, CrowBehaviour_OnGlobalGoatBurnEvent, (CrowBehaviour * __this, int32_t numObjectsBurnt, BoltEntity * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7120, CrowBehaviour_OnGlobalGoatBurnEvent__MethodInfo); DO_APP_FUNC(0x0063B900, IEnumerator *, CrowBehaviour_PlayFleeClips, (CrowBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0063B9A0, void, CrowBehaviour_OnCrowPursue, (CrowBehaviour * __this, GameObject * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7118, CrowBehaviour_OnCrowPursue__MethodInfo); DO_APP_FUNC(0x0063BCF0, void, CrowBehaviour_OnSpawnPhotograph, (CrowBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD70F0, CrowBehaviour_OnSpawnPhotograph__MethodInfo); DO_APP_FUNC(0x0063C0C0, void, CrowBehaviour_OnStartFlying, (CrowBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD70E0, CrowBehaviour_OnStartFlying__MethodInfo); DO_APP_FUNC(0x0063C1E0, void, CrowBehaviour_OnReturnToPerch, (CrowBehaviour * __this, GameObject * perch, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7100, CrowBehaviour_OnReturnToPerch__MethodInfo); DO_APP_FUNC(0x0063C250, void, CrowBehaviour_OnSeekingPhotograph, (CrowBehaviour * __this, GameObject * photograph, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD70E8, CrowBehaviour_OnSeekingPhotograph__MethodInfo); DO_APP_FUNC(0x0063C2C0, void, CrowBehaviour_OnStopSeekingPhotograph, (CrowBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD70C8, CrowBehaviour_OnStopSeekingPhotograph__MethodInfo); DO_APP_FUNC(0x0063C450, bool, CrowBehaviour_IsBeingFried, (CrowBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0063C620, void, CrowBehaviour_Landed, (CrowBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0063C630, IEnumerator *, CrowBehaviour_AttackPlayer, (CrowBehaviour * __this, MethodInfo * method)); @@ -13599,8 +15347,11 @@ DO_APP_FUNC(0x0063C780, void, CrowBehaviour_Flap, (CrowBehaviour * __this, Metho DO_APP_FUNC(0x0063C7B0, IEnumerator *, CrowBehaviour_TriggerRandomIdles, (CrowBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0063C850, void, CrowBehaviour_IdleLookAround, (CrowBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0063C910, void, CrowBehaviour_OnCarryObjectName, (CrowBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7130, CrowBehaviour_OnCarryObjectName__MethodInfo); DO_APP_FUNC(0x0063CAC0, void, CrowBehaviour_SetLookAtEntity, (CrowBehaviour * __this, GameObject * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD70D0, CrowBehaviour_SetLookAtEntity__MethodInfo); DO_APP_FUNC(0x0063CE10, void, CrowBehaviour_OnLookAtEntity, (CrowBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7108, CrowBehaviour_OnLookAtEntity__MethodInfo); DO_APP_FUNC(0x0063D260, void, CrowBehaviour_LateUpdate, (CrowBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0063DEA0, void, CrowBehaviour__ctor, (CrowBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, CrowBehaviour_Die_d_71__ctor, (CrowBehaviour_Die_d_71 * __this, int32_t __1__state, MethodInfo * method)); @@ -13608,36 +15359,42 @@ DO_APP_FUNC(0x003AE050, void, CrowBehaviour_Die_d_71_System_IDisposable_Dispose, DO_APP_FUNC(0x007F9AA0, bool, CrowBehaviour_Die_d_71_MoveNext, (CrowBehaviour_Die_d_71 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, CrowBehaviour_Die_d_71_System_Collections_Generic_IEnumerator_System_Object__get_Current, (CrowBehaviour_Die_d_71 * __this, MethodInfo * method)); DO_APP_FUNC(0x007F9CD0, void, CrowBehaviour_Die_d_71_System_Collections_IEnumerator_Reset, (CrowBehaviour_Die_d_71 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED6F8, CrowBehaviour_Die_d_71_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, CrowBehaviour_Die_d_71_System_Collections_IEnumerator_get_Current, (CrowBehaviour_Die_d_71 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, CrowBehaviour_Dissolve_d_72__ctor, (CrowBehaviour_Dissolve_d_72 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CrowBehaviour_Dissolve_d_72_System_IDisposable_Dispose, (CrowBehaviour_Dissolve_d_72 * __this, MethodInfo * method)); DO_APP_FUNC(0x007F9D20, bool, CrowBehaviour_Dissolve_d_72_MoveNext, (CrowBehaviour_Dissolve_d_72 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, CrowBehaviour_Dissolve_d_72_System_Collections_Generic_IEnumerator_System_Object__get_Current, (CrowBehaviour_Dissolve_d_72 * __this, MethodInfo * method)); DO_APP_FUNC(0x007FA730, void, CrowBehaviour_Dissolve_d_72_System_Collections_IEnumerator_Reset, (CrowBehaviour_Dissolve_d_72 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED6F0, CrowBehaviour_Dissolve_d_72_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, CrowBehaviour_Dissolve_d_72_System_Collections_IEnumerator_get_Current, (CrowBehaviour_Dissolve_d_72 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, CrowBehaviour_FadeIn_d_75__ctor, (CrowBehaviour_FadeIn_d_75 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CrowBehaviour_FadeIn_d_75_System_IDisposable_Dispose, (CrowBehaviour_FadeIn_d_75 * __this, MethodInfo * method)); DO_APP_FUNC(0x007FA780, bool, CrowBehaviour_FadeIn_d_75_MoveNext, (CrowBehaviour_FadeIn_d_75 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, CrowBehaviour_FadeIn_d_75_System_Collections_Generic_IEnumerator_System_Object__get_Current, (CrowBehaviour_FadeIn_d_75 * __this, MethodInfo * method)); DO_APP_FUNC(0x007FB240, void, CrowBehaviour_FadeIn_d_75_System_Collections_IEnumerator_Reset, (CrowBehaviour_FadeIn_d_75 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED6E8, CrowBehaviour_FadeIn_d_75_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, CrowBehaviour_FadeIn_d_75_System_Collections_IEnumerator_get_Current, (CrowBehaviour_FadeIn_d_75 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, CrowBehaviour_PlayFleeClips_d_80__ctor, (CrowBehaviour_PlayFleeClips_d_80 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CrowBehaviour_PlayFleeClips_d_80_System_IDisposable_Dispose, (CrowBehaviour_PlayFleeClips_d_80 * __this, MethodInfo * method)); DO_APP_FUNC(0x007FB290, bool, CrowBehaviour_PlayFleeClips_d_80_MoveNext, (CrowBehaviour_PlayFleeClips_d_80 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, CrowBehaviour_PlayFleeClips_d_80_System_Collections_Generic_IEnumerator_System_Object__get_Current, (CrowBehaviour_PlayFleeClips_d_80 * __this, MethodInfo * method)); DO_APP_FUNC(0x007FB640, void, CrowBehaviour_PlayFleeClips_d_80_System_Collections_IEnumerator_Reset, (CrowBehaviour_PlayFleeClips_d_80 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED6D0, CrowBehaviour_PlayFleeClips_d_80_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, CrowBehaviour_PlayFleeClips_d_80_System_Collections_IEnumerator_get_Current, (CrowBehaviour_PlayFleeClips_d_80 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, CrowBehaviour_AttackPlayer_d_89__ctor, (CrowBehaviour_AttackPlayer_d_89 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CrowBehaviour_AttackPlayer_d_89_System_IDisposable_Dispose, (CrowBehaviour_AttackPlayer_d_89 * __this, MethodInfo * method)); DO_APP_FUNC(0x007FB690, bool, CrowBehaviour_AttackPlayer_d_89_MoveNext, (CrowBehaviour_AttackPlayer_d_89 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, CrowBehaviour_AttackPlayer_d_89_System_Collections_Generic_IEnumerator_System_Object__get_Current, (CrowBehaviour_AttackPlayer_d_89 * __this, MethodInfo * method)); DO_APP_FUNC(0x007FBD50, void, CrowBehaviour_AttackPlayer_d_89_System_Collections_IEnumerator_Reset, (CrowBehaviour_AttackPlayer_d_89 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED6C0, CrowBehaviour_AttackPlayer_d_89_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, CrowBehaviour_AttackPlayer_d_89_System_Collections_IEnumerator_get_Current, (CrowBehaviour_AttackPlayer_d_89 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, CrowBehaviour_TriggerRandomIdles_d_93__ctor, (CrowBehaviour_TriggerRandomIdles_d_93 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CrowBehaviour_TriggerRandomIdles_d_93_System_IDisposable_Dispose, (CrowBehaviour_TriggerRandomIdles_d_93 * __this, MethodInfo * method)); DO_APP_FUNC(0x007FBDA0, bool, CrowBehaviour_TriggerRandomIdles_d_93_MoveNext, (CrowBehaviour_TriggerRandomIdles_d_93 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, CrowBehaviour_TriggerRandomIdles_d_93_System_Collections_Generic_IEnumerator_System_Object__get_Current, (CrowBehaviour_TriggerRandomIdles_d_93 * __this, MethodInfo * method)); DO_APP_FUNC(0x007FC580, void, CrowBehaviour_TriggerRandomIdles_d_93_System_Collections_IEnumerator_Reset, (CrowBehaviour_TriggerRandomIdles_d_93 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED690, CrowBehaviour_TriggerRandomIdles_d_93_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, CrowBehaviour_TriggerRandomIdles_d_93_System_Collections_IEnumerator_get_Current, (CrowBehaviour_TriggerRandomIdles_d_93 * __this, MethodInfo * method)); DO_APP_FUNC(0x007FC5D0, void, CrowFlightController_Awake, (CrowFlightController * __this, MethodInfo * method)); DO_APP_FUNC(0x007FC6F0, void, CrowFlightController_Start, (CrowFlightController * __this, MethodInfo * method)); @@ -13662,18 +15419,21 @@ DO_APP_FUNC(0x003AE050, void, CrowFlightController_TakeOff_d_46_System_IDisposab DO_APP_FUNC(0x007FEC20, bool, CrowFlightController_TakeOff_d_46_MoveNext, (CrowFlightController_TakeOff_d_46 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, CrowFlightController_TakeOff_d_46_System_Collections_Generic_IEnumerator_System_Object__get_Current, (CrowFlightController_TakeOff_d_46 * __this, MethodInfo * method)); DO_APP_FUNC(0x007FF490, void, CrowFlightController_TakeOff_d_46_System_Collections_IEnumerator_Reset, (CrowFlightController_TakeOff_d_46 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED628, CrowFlightController_TakeOff_d_46_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, CrowFlightController_TakeOff_d_46_System_Collections_IEnumerator_get_Current, (CrowFlightController_TakeOff_d_46 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, CrowFlightController_Land_d_47__ctor, (CrowFlightController_Land_d_47 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CrowFlightController_Land_d_47_System_IDisposable_Dispose, (CrowFlightController_Land_d_47 * __this, MethodInfo * method)); DO_APP_FUNC(0x007FF4E0, bool, CrowFlightController_Land_d_47_MoveNext, (CrowFlightController_Land_d_47 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, CrowFlightController_Land_d_47_System_Collections_Generic_IEnumerator_System_Object__get_Current, (CrowFlightController_Land_d_47 * __this, MethodInfo * method)); DO_APP_FUNC(0x007FFE50, void, CrowFlightController_Land_d_47_System_Collections_IEnumerator_Reset, (CrowFlightController_Land_d_47 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED610, CrowFlightController_Land_d_47_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, CrowFlightController_Land_d_47_System_Collections_IEnumerator_get_Current, (CrowFlightController_Land_d_47 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, CrowFlightController_Flying_d_48__ctor, (CrowFlightController_Flying_d_48 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CrowFlightController_Flying_d_48_System_IDisposable_Dispose, (CrowFlightController_Flying_d_48 * __this, MethodInfo * method)); DO_APP_FUNC(0x007FFEA0, bool, CrowFlightController_Flying_d_48_MoveNext, (CrowFlightController_Flying_d_48 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, CrowFlightController_Flying_d_48_System_Collections_Generic_IEnumerator_System_Object__get_Current, (CrowFlightController_Flying_d_48 * __this, MethodInfo * method)); DO_APP_FUNC(0x008000D0, void, CrowFlightController_Flying_d_48_System_Collections_IEnumerator_Reset, (CrowFlightController_Flying_d_48 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED618, CrowFlightController_Flying_d_48_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, CrowFlightController_Flying_d_48_System_Collections_IEnumerator_get_Current, (CrowFlightController_Flying_d_48 * __this, MethodInfo * method)); DO_APP_FUNC(0x00800120, void, CrowPerchController_Awake, (CrowPerchController * __this, MethodInfo * method)); DO_APP_FUNC(0x00800150, void, CrowPerchController_Start, (CrowPerchController * __this, MethodInfo * method)); @@ -13681,106 +15441,135 @@ DO_APP_FUNC(0x008006C0, bool, CrowPerchController_IsInLockedRoom, (CrowPerchCont DO_APP_FUNC(0x008007B0, void, CrowPerchController_OnDrawGizmosSelected, (CrowPerchController * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, CrowPerchController__ctor, (CrowPerchController * __this, MethodInfo * method)); DO_APP_FUNC(0x00800F00, void, GhostBehaviour_Awake, (GhostBehaviour * __this, MethodInfo * method)); -DO_APP_FUNC(0x008019F0, void, GhostBehaviour_InstantiateDissolveMaterial, (GhostBehaviour * __this, Material * originalMat, Material * dissolveMat, MethodInfo * method)); +DO_APP_FUNC(0x008019F0, void, GhostBehaviour_InstantiateDissolveMaterial, (GhostBehaviour * __this, Material * originalMat, Material * * dissolveMat, MethodInfo * method)); DO_APP_FUNC(0x00801C00, void, GhostBehaviour_Attached, (GhostBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00802700, void, GhostBehaviour_Update, (GhostBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00802920, void, GhostBehaviour_LateUpdate, (GhostBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00802FD0, void, GhostBehaviour_OnSpeed, (GhostBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED570, GhostBehaviour_OnSpeed__MethodInfo); DO_APP_FUNC(0x00803220, void, GhostBehaviour_OnPursuing, (GhostBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED5A8, GhostBehaviour_OnPursuing__MethodInfo); DO_APP_FUNC(0x00803440, void, GhostBehaviour_OnAbilityIndex, (GhostBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED5E0, GhostBehaviour_OnAbilityIndex__MethodInfo); DO_APP_FUNC(0x00803AE0, void, GhostBehaviour_SetRandomAttackTypeFloat, (GhostBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00803B80, void, GhostBehaviour_SetRandomDeathTypeFloat, (GhostBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00803C20, void, GhostBehaviour_OnAbilityIntData, (GhostBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED5C0, GhostBehaviour_OnAbilityIntData__MethodInfo); DO_APP_FUNC(0x00803F40, void, GhostBehaviour_OnAbilityFloatData, (GhostBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED5D0, GhostBehaviour_OnAbilityFloatData__MethodInfo); DO_APP_FUNC(0x00804010, void, GhostBehaviour_OnLookAtEntity, (GhostBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED598, GhostBehaviour_OnLookAtEntity__MethodInfo); DO_APP_FUNC(0x00804460, void, GhostBehaviour_OnAnimatorIK, (GhostBehaviour * __this, int32_t layerIndex, MethodInfo * method)); DO_APP_FUNC(0x00805340, void, GhostBehaviour_CheckWhichPlayersStaggered, (GhostBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x008058D0, void, GhostBehaviour_OnCarryObjectName, (GhostBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED5C8, GhostBehaviour_OnCarryObjectName__MethodInfo); DO_APP_FUNC(0x00805AF0, IEnumerator *, GhostBehaviour_Die, (GhostBehaviour * __this, bool despawn, MethodInfo * method)); DO_APP_FUNC(0x00805BB0, IEnumerator *, GhostBehaviour_Dissolve, (GhostBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00805C50, void, GhostBehaviour_OnGhostPursue, (GhostBehaviour * __this, GameObject * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED5B0, GhostBehaviour_OnGhostPursue__MethodInfo); DO_APP_FUNC(0x00805FA0, void, GhostBehaviour_SetLookAtEntity, (GhostBehaviour * __this, GameObject * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED578, GhostBehaviour_SetLookAtEntity__MethodInfo); DO_APP_FUNC(0x008062F0, void, GhostBehaviour_OnSpawnRitualBook, (GhostBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED588, GhostBehaviour_OnSpawnRitualBook__MethodInfo); DO_APP_FUNC(0x008069A0, IEnumerator *, GhostBehaviour_AttackPlayer, (GhostBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00806A40, void, GhostBehaviour_Despawn, (GhostBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00806C10, void, GhostBehaviour_Respawn, (GhostBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00807190, IEnumerator *, GhostBehaviour_FadeIn, (GhostBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00807230, void, GhostBehaviour_OnRitualBookCarried, (GhostBehaviour * __this, GameObject * ritualBook, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED580, GhostBehaviour_OnRitualBookCarried__MethodInfo); DO_APP_FUNC(0x008075C0, void, GhostBehaviour_Detached, (GhostBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0063B820, Behavior *, GhostBehaviour_GetMainBehavior, (GhostBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00807A20, void, GhostBehaviour_OnGlobalGoatBurnEvent, (GhostBehaviour * __this, int32_t numObjectsBurnt, BoltEntity * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED5B8, GhostBehaviour_OnGlobalGoatBurnEvent__MethodInfo); DO_APP_FUNC(0x00807B00, void, GhostBehaviour__ctor, (GhostBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, GhostBehaviour_Die_d_85__ctor, (GhostBehaviour_Die_d_85 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GhostBehaviour_Die_d_85_System_IDisposable_Dispose, (GhostBehaviour_Die_d_85 * __this, MethodInfo * method)); DO_APP_FUNC(0x00807C70, bool, GhostBehaviour_Die_d_85_MoveNext, (GhostBehaviour_Die_d_85 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, GhostBehaviour_Die_d_85_System_Collections_Generic_IEnumerator_System_Object__get_Current, (GhostBehaviour_Die_d_85 * __this, MethodInfo * method)); DO_APP_FUNC(0x00808010, void, GhostBehaviour_Die_d_85_System_Collections_IEnumerator_Reset, (GhostBehaviour_Die_d_85 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED420, GhostBehaviour_Die_d_85_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, GhostBehaviour_Die_d_85_System_Collections_IEnumerator_get_Current, (GhostBehaviour_Die_d_85 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, GhostBehaviour_Dissolve_d_86__ctor, (GhostBehaviour_Dissolve_d_86 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GhostBehaviour_Dissolve_d_86_System_IDisposable_Dispose, (GhostBehaviour_Dissolve_d_86 * __this, MethodInfo * method)); DO_APP_FUNC(0x00808060, bool, GhostBehaviour_Dissolve_d_86_MoveNext, (GhostBehaviour_Dissolve_d_86 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, GhostBehaviour_Dissolve_d_86_System_Collections_Generic_IEnumerator_System_Object__get_Current, (GhostBehaviour_Dissolve_d_86 * __this, MethodInfo * method)); DO_APP_FUNC(0x00808C60, void, GhostBehaviour_Dissolve_d_86_System_Collections_IEnumerator_Reset, (GhostBehaviour_Dissolve_d_86 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED3F8, GhostBehaviour_Dissolve_d_86_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, GhostBehaviour_Dissolve_d_86_System_Collections_IEnumerator_get_Current, (GhostBehaviour_Dissolve_d_86 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, GhostBehaviour_AttackPlayer_d_90__ctor, (GhostBehaviour_AttackPlayer_d_90 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GhostBehaviour_AttackPlayer_d_90_System_IDisposable_Dispose, (GhostBehaviour_AttackPlayer_d_90 * __this, MethodInfo * method)); DO_APP_FUNC(0x00808CB0, bool, GhostBehaviour_AttackPlayer_d_90_MoveNext, (GhostBehaviour_AttackPlayer_d_90 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, GhostBehaviour_AttackPlayer_d_90_System_Collections_Generic_IEnumerator_System_Object__get_Current, (GhostBehaviour_AttackPlayer_d_90 * __this, MethodInfo * method)); DO_APP_FUNC(0x00809420, void, GhostBehaviour_AttackPlayer_d_90_System_Collections_IEnumerator_Reset, (GhostBehaviour_AttackPlayer_d_90 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED3F0, GhostBehaviour_AttackPlayer_d_90_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, GhostBehaviour_AttackPlayer_d_90_System_Collections_IEnumerator_get_Current, (GhostBehaviour_AttackPlayer_d_90 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, GhostBehaviour_FadeIn_d_93__ctor, (GhostBehaviour_FadeIn_d_93 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GhostBehaviour_FadeIn_d_93_System_IDisposable_Dispose, (GhostBehaviour_FadeIn_d_93 * __this, MethodInfo * method)); DO_APP_FUNC(0x00809470, bool, GhostBehaviour_FadeIn_d_93_MoveNext, (GhostBehaviour_FadeIn_d_93 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, GhostBehaviour_FadeIn_d_93_System_Collections_Generic_IEnumerator_System_Object__get_Current, (GhostBehaviour_FadeIn_d_93 * __this, MethodInfo * method)); DO_APP_FUNC(0x0080A9D0, void, GhostBehaviour_FadeIn_d_93_System_Collections_IEnumerator_Reset, (GhostBehaviour_FadeIn_d_93 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED3C8, GhostBehaviour_FadeIn_d_93_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, GhostBehaviour_FadeIn_d_93_System_Collections_IEnumerator_get_Current, (GhostBehaviour_FadeIn_d_93 * __this, MethodInfo * method)); DO_APP_FUNC(0x0080AA20, void, SpiderBehaviour_Awake, (SpiderBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0080BAE0, void, SpiderBehaviour_Attached, (SpiderBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0080C470, void, SpiderBehaviour_FixedUpdate, (SpiderBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0080C660, void, SpiderBehaviour_OnSpeed, (SpiderBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED360, SpiderBehaviour_OnSpeed__MethodInfo); DO_APP_FUNC(0x0080C8B0, void, SpiderBehaviour_OnPursuing, (SpiderBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED370, SpiderBehaviour_OnPursuing__MethodInfo); DO_APP_FUNC(0x0080CAF0, void, SpiderBehaviour_OnAbilityIndex, (SpiderBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED3B0, SpiderBehaviour_OnAbilityIndex__MethodInfo); DO_APP_FUNC(0x0080CEF0, void, SpiderBehaviour_SetRandomAttackTypeFloat, (SpiderBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0080CF90, void, SpiderBehaviour_OnAbilityIntData, (SpiderBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED398, SpiderBehaviour_OnAbilityIntData__MethodInfo); DO_APP_FUNC(0x0080D220, void, SpiderBehaviour_CheckWhichPlayersStaggered, (SpiderBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0080D7B0, void, SpiderBehaviour_OnCarryObjectName, (SpiderBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED3A0, SpiderBehaviour_OnCarryObjectName__MethodInfo); DO_APP_FUNC(0x0080D9B0, IEnumerator *, SpiderBehaviour_Die, (SpiderBehaviour * __this, bool despawn, MethodInfo * method)); DO_APP_FUNC(0x0080DA70, IEnumerator *, SpiderBehaviour_Dissolve, (SpiderBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0080DB10, void, SpiderBehaviour_OnSpiderPursue, (SpiderBehaviour * __this, GameObject * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED368, SpiderBehaviour_OnSpiderPursue__MethodInfo); DO_APP_FUNC(0x0080DE60, void, SpiderBehaviour_OnSpawnEgg, (SpiderBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED378, SpiderBehaviour_OnSpawnEgg__MethodInfo); DO_APP_FUNC(0x0080E440, IEnumerator *, SpiderBehaviour_AttackPlayer, (SpiderBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0080E4E0, void, SpiderBehaviour_Despawn, (SpiderBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0080E6B0, void, SpiderBehaviour_Respawn, (SpiderBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0080EBF0, IEnumerator *, SpiderBehaviour_FadeIn, (SpiderBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0080EC90, void, SpiderBehaviour_OnEggCarried, (SpiderBehaviour * __this, GameObject * egg, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED380, SpiderBehaviour_OnEggCarried__MethodInfo); DO_APP_FUNC(0x0080ED70, void, SpiderBehaviour_Detached, (SpiderBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0080F180, void, SpiderBehaviour_SetArachnophobiaMode, (SpiderBehaviour * __this, bool on, MethodInfo * method)); DO_APP_FUNC(0x0053E000, Behavior *, SpiderBehaviour_GetMainBehavior, (SpiderBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0080F200, void, SpiderBehaviour_OnGlobalGoatBurnEvent, (SpiderBehaviour * __this, int32_t numObjectsBurnt, BoltEntity * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED390, SpiderBehaviour_OnGlobalGoatBurnEvent__MethodInfo); DO_APP_FUNC(0x0080F340, void, SpiderBehaviour__ctor, (SpiderBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, SpiderBehaviour_Die_d_61__ctor, (SpiderBehaviour_Die_d_61 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SpiderBehaviour_Die_d_61_System_IDisposable_Dispose, (SpiderBehaviour_Die_d_61 * __this, MethodInfo * method)); DO_APP_FUNC(0x0080F470, bool, SpiderBehaviour_Die_d_61_MoveNext, (SpiderBehaviour_Die_d_61 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SpiderBehaviour_Die_d_61_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SpiderBehaviour_Die_d_61 * __this, MethodInfo * method)); DO_APP_FUNC(0x0080F800, void, SpiderBehaviour_Die_d_61_System_Collections_IEnumerator_Reset, (SpiderBehaviour_Die_d_61 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED310, SpiderBehaviour_Die_d_61_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SpiderBehaviour_Die_d_61_System_Collections_IEnumerator_get_Current, (SpiderBehaviour_Die_d_61 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, SpiderBehaviour_Dissolve_d_62__ctor, (SpiderBehaviour_Dissolve_d_62 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SpiderBehaviour_Dissolve_d_62_System_IDisposable_Dispose, (SpiderBehaviour_Dissolve_d_62 * __this, MethodInfo * method)); DO_APP_FUNC(0x0080F850, bool, SpiderBehaviour_Dissolve_d_62_MoveNext, (SpiderBehaviour_Dissolve_d_62 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SpiderBehaviour_Dissolve_d_62_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SpiderBehaviour_Dissolve_d_62 * __this, MethodInfo * method)); DO_APP_FUNC(0x008103D0, void, SpiderBehaviour_Dissolve_d_62_System_Collections_IEnumerator_Reset, (SpiderBehaviour_Dissolve_d_62 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED308, SpiderBehaviour_Dissolve_d_62_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SpiderBehaviour_Dissolve_d_62_System_Collections_IEnumerator_get_Current, (SpiderBehaviour_Dissolve_d_62 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, SpiderBehaviour_AttackPlayer_d_65__ctor, (SpiderBehaviour_AttackPlayer_d_65 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SpiderBehaviour_AttackPlayer_d_65_System_IDisposable_Dispose, (SpiderBehaviour_AttackPlayer_d_65 * __this, MethodInfo * method)); DO_APP_FUNC(0x00810420, bool, SpiderBehaviour_AttackPlayer_d_65_MoveNext, (SpiderBehaviour_AttackPlayer_d_65 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SpiderBehaviour_AttackPlayer_d_65_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SpiderBehaviour_AttackPlayer_d_65 * __this, MethodInfo * method)); DO_APP_FUNC(0x00810B00, void, SpiderBehaviour_AttackPlayer_d_65_System_Collections_IEnumerator_Reset, (SpiderBehaviour_AttackPlayer_d_65 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED300, SpiderBehaviour_AttackPlayer_d_65_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SpiderBehaviour_AttackPlayer_d_65_System_Collections_IEnumerator_get_Current, (SpiderBehaviour_AttackPlayer_d_65 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, SpiderBehaviour_FadeIn_d_68__ctor, (SpiderBehaviour_FadeIn_d_68 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SpiderBehaviour_FadeIn_d_68_System_IDisposable_Dispose, (SpiderBehaviour_FadeIn_d_68 * __this, MethodInfo * method)); DO_APP_FUNC(0x00810B50, bool, SpiderBehaviour_FadeIn_d_68_MoveNext, (SpiderBehaviour_FadeIn_d_68 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SpiderBehaviour_FadeIn_d_68_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SpiderBehaviour_FadeIn_d_68 * __this, MethodInfo * method)); DO_APP_FUNC(0x00811D40, void, SpiderBehaviour_FadeIn_d_68_System_Collections_IEnumerator_Reset, (SpiderBehaviour_FadeIn_d_68 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED2F8, SpiderBehaviour_FadeIn_d_68_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SpiderBehaviour_FadeIn_d_68_System_Collections_IEnumerator_get_Current, (SpiderBehaviour_FadeIn_d_68 * __this, MethodInfo * method)); DO_APP_FUNC(0x00811D90, void, SpiderEndingBehaviour_Awake, (SpiderEndingBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00811EB0, void, SpiderEndingBehaviour_Update, (SpiderEndingBehaviour * __this, MethodInfo * method)); @@ -13792,7 +15581,9 @@ DO_APP_FUNC(0x00814C40, void, SurvivalDemonBehaviour_Detached, (SurvivalDemonBeh DO_APP_FUNC(0x00815580, void, SurvivalDemonBehaviour_Update, (SurvivalDemonBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00815A60, void, SurvivalDemonBehaviour_FixedUpdate, (SurvivalDemonBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00815D80, void, SurvivalDemonBehaviour_OnAbilityIndex, (SurvivalDemonBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED2E0, SurvivalDemonBehaviour_OnAbilityIndex__MethodInfo); DO_APP_FUNC(0x00816FB0, void, SurvivalDemonBehaviour_OnAbilityIntData, (SurvivalDemonBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED2C8, SurvivalDemonBehaviour_OnAbilityIntData__MethodInfo); DO_APP_FUNC(0x008175D0, void, SurvivalDemonBehaviour_CheckWhichPlayersStaggered, (SurvivalDemonBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00817B60, void, SurvivalDemonBehaviour_Spawn, (SurvivalDemonBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00817FE0, IEnumerator *, SurvivalDemonBehaviour_WaitForSpawn, (SurvivalDemonBehaviour * __this, MethodInfo * method)); @@ -13801,70 +15592,93 @@ DO_APP_FUNC(0x00818140, IEnumerator *, SurvivalDemonBehaviour_ReverseDissolve, ( DO_APP_FUNC(0x008181E0, IEnumerator *, SurvivalDemonBehaviour_Spawned, (SurvivalDemonBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00818280, void, SurvivalDemonBehaviour_Despawn, (SurvivalDemonBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00818510, void, SurvivalDemonBehaviour_OnDemonKnockoutAbility, (SurvivalDemonBehaviour * __this, GameObject * demon, GameObject * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED2C0, SurvivalDemonBehaviour_OnDemonKnockoutAbility__MethodInfo); DO_APP_FUNC(0x00818830, void, SurvivalDemonBehaviour_SetLookAtEntity, (SurvivalDemonBehaviour * __this, BoltEntity * lookAtEntity, MethodInfo * method)); DO_APP_FUNC(0x008189B0, void, SurvivalDemonBehaviour_OnLookAtEntity, (SurvivalDemonBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED298, SurvivalDemonBehaviour_OnLookAtEntity__MethodInfo); DO_APP_FUNC(0x00818AC0, void, SurvivalDemonBehaviour_OnPathComplete, (SurvivalDemonBehaviour * __this, Path_1 * newPath, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED288, SurvivalDemonBehaviour_OnPathComplete__MethodInfo); DO_APP_FUNC(0x00818FF0, void, SurvivalDemonBehaviour_ClearLastDestination, (SurvivalDemonBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00819050, void, SurvivalDemonBehaviour_OnPursueStart, (SurvivalDemonBehaviour * __this, GameObject * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED280, SurvivalDemonBehaviour_OnPursueStart__MethodInfo); DO_APP_FUNC(0x008191C0, void, SurvivalDemonBehaviour_OnPursueTargetChanged, (SurvivalDemonBehaviour * __this, GameObject * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED268, SurvivalDemonBehaviour_OnPursueTargetChanged__MethodInfo); DO_APP_FUNC(0x00818FF0, void, SurvivalDemonBehaviour_OnPursueEnd, (SurvivalDemonBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED278, SurvivalDemonBehaviour_OnPursueEnd__MethodInfo); DO_APP_FUNC(0x008192F0, void, SurvivalDemonBehaviour_OnGlobalGoatBurnEvent, (SurvivalDemonBehaviour * __this, int32_t numObjectsBurnt, BoltEntity * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED2A8, SurvivalDemonBehaviour_OnGlobalGoatBurnEvent__MethodInfo); DO_APP_FUNC(0x008195E0, void, SurvivalDemonBehaviour_HoldPlayer, (SurvivalDemonBehaviour * __this, BoltEntity * player, MethodInfo * method)); DO_APP_FUNC(0x00819960, IEnumerator *, SurvivalDemonBehaviour_LetGoFallback, (SurvivalDemonBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00819A00, BoltEntity *, SurvivalDemonBehaviour_GetHeldPlayer, (SurvivalDemonBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00819AB0, void, SurvivalDemonBehaviour_LetGoOfPlayer, (SurvivalDemonBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00819D40, void, SurvivalDemonBehaviour_OnDemonHoldingPlayer, (SurvivalDemonBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED2D0, SurvivalDemonBehaviour_OnDemonHoldingPlayer__MethodInfo); DO_APP_FUNC(0x0081A560, void, SurvivalDemonBehaviour_OnMoving, (SurvivalDemonBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED2A0, SurvivalDemonBehaviour_OnMoving__MethodInfo); DO_APP_FUNC(0x0081A570, void, SurvivalDemonBehaviour_SetWheelchairMoving, (SurvivalDemonBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0081A560, void, SurvivalDemonBehaviour_OnAbilityFloatData, (SurvivalDemonBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED2D8, SurvivalDemonBehaviour_OnAbilityFloatData__MethodInfo); DO_APP_FUNC(0x0081A990, bool, SurvivalDemonBehaviour_IsSpawning, (SurvivalDemonBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0081AA50, void, SurvivalDemonBehaviour_OnPlayerPickedUpEvent, (SurvivalDemonBehaviour * __this, BoltEntity * killedBy, BoltEntity * player, bool inHidingSpot, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED290, SurvivalDemonBehaviour_OnPlayerPickedUpEvent__MethodInfo); DO_APP_FUNC(0x0081ACC0, void, SurvivalDemonBehaviour_OnKnockoutEvent, (SurvivalDemonBehaviour * __this, BoltEntity * killedBy, BoltEntity * player, bool usingPoison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED2B0, SurvivalDemonBehaviour_OnKnockoutEvent__MethodInfo); DO_APP_FUNC(0x0081AF30, void, SurvivalDemonBehaviour_OnStateChange, (SurvivalDemonBehaviour * __this, GameObject * obj, String * stateName, bool active, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED270, SurvivalDemonBehaviour_OnStateChange__MethodInfo); DO_APP_FUNC(0x0081B2F0, void, SurvivalDemonBehaviour_OnDemonKill, (SurvivalDemonBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED2B8, SurvivalDemonBehaviour_OnDemonKill__MethodInfo); DO_APP_FUNC(0x005A9990, Behavior *, SurvivalDemonBehaviour_GetMainBehavior, (SurvivalDemonBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0081B390, void, SurvivalDemonBehaviour_OnDestroy, (SurvivalDemonBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0081B630, void, SurvivalDemonBehaviour__ctor, (SurvivalDemonBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0081B690, void, SurvivalDemonBehaviour_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SurvivalDemonBehaviour_c__ctor, (SurvivalDemonBehaviour_c * __this, MethodInfo * method)); DO_APP_FUNC(0x0081B740, bool, SurvivalDemonBehaviour_c__Attached_b__88_0, (SurvivalDemonBehaviour_c * __this, Generic * a, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED258, SurvivalDemonBehaviour_c__Attached_b__88_0__MethodInfo); DO_APP_FUNC(0x0081B780, bool, SurvivalDemonBehaviour_c__Attached_b__88_1, (SurvivalDemonBehaviour_c * __this, Generic * a, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED260, SurvivalDemonBehaviour_c__Attached_b__88_1__MethodInfo); DO_APP_FUNC(0x003BCD60, void, SurvivalDemonBehaviour_WaitForSpawn_d_96__ctor, (SurvivalDemonBehaviour_WaitForSpawn_d_96 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SurvivalDemonBehaviour_WaitForSpawn_d_96_System_IDisposable_Dispose, (SurvivalDemonBehaviour_WaitForSpawn_d_96 * __this, MethodInfo * method)); DO_APP_FUNC(0x0081B7C0, bool, SurvivalDemonBehaviour_WaitForSpawn_d_96_MoveNext, (SurvivalDemonBehaviour_WaitForSpawn_d_96 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalDemonBehaviour_WaitForSpawn_d_96_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SurvivalDemonBehaviour_WaitForSpawn_d_96 * __this, MethodInfo * method)); DO_APP_FUNC(0x0081B930, void, SurvivalDemonBehaviour_WaitForSpawn_d_96_System_Collections_IEnumerator_Reset, (SurvivalDemonBehaviour_WaitForSpawn_d_96 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED1D8, SurvivalDemonBehaviour_WaitForSpawn_d_96_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalDemonBehaviour_WaitForSpawn_d_96_System_Collections_IEnumerator_get_Current, (SurvivalDemonBehaviour_WaitForSpawn_d_96 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, SurvivalDemonBehaviour_Dissolve_d_97__ctor, (SurvivalDemonBehaviour_Dissolve_d_97 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SurvivalDemonBehaviour_Dissolve_d_97_System_IDisposable_Dispose, (SurvivalDemonBehaviour_Dissolve_d_97 * __this, MethodInfo * method)); DO_APP_FUNC(0x0081B980, bool, SurvivalDemonBehaviour_Dissolve_d_97_MoveNext, (SurvivalDemonBehaviour_Dissolve_d_97 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalDemonBehaviour_Dissolve_d_97_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SurvivalDemonBehaviour_Dissolve_d_97 * __this, MethodInfo * method)); DO_APP_FUNC(0x0081CC90, void, SurvivalDemonBehaviour_Dissolve_d_97_System_Collections_IEnumerator_Reset, (SurvivalDemonBehaviour_Dissolve_d_97 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED1D0, SurvivalDemonBehaviour_Dissolve_d_97_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalDemonBehaviour_Dissolve_d_97_System_Collections_IEnumerator_get_Current, (SurvivalDemonBehaviour_Dissolve_d_97 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, SurvivalDemonBehaviour_ReverseDissolve_d_98__ctor, (SurvivalDemonBehaviour_ReverseDissolve_d_98 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SurvivalDemonBehaviour_ReverseDissolve_d_98_System_IDisposable_Dispose, (SurvivalDemonBehaviour_ReverseDissolve_d_98 * __this, MethodInfo * method)); DO_APP_FUNC(0x0081CCE0, bool, SurvivalDemonBehaviour_ReverseDissolve_d_98_MoveNext, (SurvivalDemonBehaviour_ReverseDissolve_d_98 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalDemonBehaviour_ReverseDissolve_d_98_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SurvivalDemonBehaviour_ReverseDissolve_d_98 * __this, MethodInfo * method)); DO_APP_FUNC(0x0081E8B0, void, SurvivalDemonBehaviour_ReverseDissolve_d_98_System_Collections_IEnumerator_Reset, (SurvivalDemonBehaviour_ReverseDissolve_d_98 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED1C8, SurvivalDemonBehaviour_ReverseDissolve_d_98_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalDemonBehaviour_ReverseDissolve_d_98_System_Collections_IEnumerator_get_Current, (SurvivalDemonBehaviour_ReverseDissolve_d_98 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, SurvivalDemonBehaviour_Spawned_d_99__ctor, (SurvivalDemonBehaviour_Spawned_d_99 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SurvivalDemonBehaviour_Spawned_d_99_System_IDisposable_Dispose, (SurvivalDemonBehaviour_Spawned_d_99 * __this, MethodInfo * method)); DO_APP_FUNC(0x00843CC0, bool, SurvivalDemonBehaviour_Spawned_d_99_MoveNext, (SurvivalDemonBehaviour_Spawned_d_99 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalDemonBehaviour_Spawned_d_99_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SurvivalDemonBehaviour_Spawned_d_99 * __this, MethodInfo * method)); DO_APP_FUNC(0x00843FC0, void, SurvivalDemonBehaviour_Spawned_d_99_System_Collections_IEnumerator_Reset, (SurvivalDemonBehaviour_Spawned_d_99 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF03A0, SurvivalDemonBehaviour_Spawned_d_99_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalDemonBehaviour_Spawned_d_99_System_Collections_IEnumerator_get_Current, (SurvivalDemonBehaviour_Spawned_d_99 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, SurvivalDemonBehaviour_LetGoFallback_d_111__ctor, (SurvivalDemonBehaviour_LetGoFallback_d_111 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SurvivalDemonBehaviour_LetGoFallback_d_111_System_IDisposable_Dispose, (SurvivalDemonBehaviour_LetGoFallback_d_111 * __this, MethodInfo * method)); DO_APP_FUNC(0x00844010, bool, SurvivalDemonBehaviour_LetGoFallback_d_111_MoveNext, (SurvivalDemonBehaviour_LetGoFallback_d_111 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalDemonBehaviour_LetGoFallback_d_111_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SurvivalDemonBehaviour_LetGoFallback_d_111 * __this, MethodInfo * method)); DO_APP_FUNC(0x008443D0, void, SurvivalDemonBehaviour_LetGoFallback_d_111_System_Collections_IEnumerator_Reset, (SurvivalDemonBehaviour_LetGoFallback_d_111 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0398, SurvivalDemonBehaviour_LetGoFallback_d_111_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalDemonBehaviour_LetGoFallback_d_111_System_Collections_IEnumerator_get_Current, (SurvivalDemonBehaviour_LetGoFallback_d_111 * __this, MethodInfo * method)); DO_APP_FUNC(0x00844420, void, DynamicBoneWeather_Awake, (DynamicBoneWeather * __this, MethodInfo * method)); DO_APP_FUNC(0x00844880, void, DynamicBoneWeather_FixedUpdate, (DynamicBoneWeather * __this, MethodInfo * method)); -DO_APP_FUNC(0x008450F0, void, DynamicBoneWeather_DynamicBoneLerp, (DynamicBoneWeather * __this, bool lerpBackwards, float lerpT, MethodInfo * method)); +DO_APP_FUNC(0x008450F0, void, DynamicBoneWeather_DynamicBoneLerp, (DynamicBoneWeather * __this, bool * lerpBackwards, float * lerpT, MethodInfo * method)); DO_APP_FUNC(0x008451E0, void, DynamicBoneWeather_OnGlobalGoatBurnEvent, (DynamicBoneWeather * __this, int32_t numObjectsBurnt, BoltEntity * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0380, DynamicBoneWeather_OnGlobalGoatBurnEvent__MethodInfo); DO_APP_FUNC(0x00845230, void, DynamicBoneWeather_SetIndoors, (DynamicBoneWeather * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x00845250, void, DynamicBoneWeather_OnGameMode, (DynamicBoneWeather * __this, DevourGameMode__Enum mode, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0378, DynamicBoneWeather_OnGameMode__MethodInfo); DO_APP_FUNC(0x008454B0, void, DynamicBoneWeather_OnDestroy, (DynamicBoneWeather * __this, MethodInfo * method)); DO_APP_FUNC(0x00845620, void, DynamicBoneWeather__ctor, (DynamicBoneWeather * __this, MethodInfo * method)); DO_APP_FUNC(0x008456A0, void, CorpseBehaviour_Awake, (CorpseBehaviour * __this, MethodInfo * method)); @@ -13873,8 +15687,11 @@ DO_APP_FUNC(0x00846B80, void, CorpseBehaviour_StartAI, (CorpseBehaviour * __this DO_APP_FUNC(0x00846CD0, IEnumerator *, CorpseBehaviour_FinishSpawn, (CorpseBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00846D70, void, CorpseBehaviour_FixedUpdate, (CorpseBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00846FA0, void, CorpseBehaviour_OnSpeed, (CorpseBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF02E8, CorpseBehaviour_OnSpeed__MethodInfo); DO_APP_FUNC(0x00847340, void, CorpseBehaviour_OnAbilityIndex, (CorpseBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0330, CorpseBehaviour_OnAbilityIndex__MethodInfo); DO_APP_FUNC(0x00847A40, void, CorpseBehaviour_OnAbilityIntData, (CorpseBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0310, CorpseBehaviour_OnAbilityIntData__MethodInfo); DO_APP_FUNC(0x00847D80, IEnumerator *, CorpseBehaviour_Die, (CorpseBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00847E20, IEnumerator *, CorpseBehaviour_Dissolve, (CorpseBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00847EC0, void, CorpseBehaviour_Despawn, (CorpseBehaviour * __this, MethodInfo * method)); @@ -13883,46 +15700,55 @@ DO_APP_FUNC(0x00848130, void, CorpseBehaviour_Detached, (CorpseBehaviour * __thi DO_APP_FUNC(0x003C4850, Behavior *, CorpseBehaviour_GetMainBehavior, (CorpseBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x003C48C0, Behavior *, CorpseBehaviour_GetInitBehaviour, (CorpseBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x008484B0, void, CorpseBehaviour_OnGlobalGoatBurnEvent, (CorpseBehaviour * __this, int32_t numObjectsBurnt, BoltEntity * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0300, CorpseBehaviour_OnGlobalGoatBurnEvent__MethodInfo); DO_APP_FUNC(0x00848580, void, CorpseBehaviour_OnDeath, (CorpseBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF02F8, CorpseBehaviour_OnDeath__MethodInfo); DO_APP_FUNC(0x008489B0, IEnumerator *, CorpseBehaviour_PlayFleeClips, (CorpseBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00848A50, IEnumerator *, CorpseBehaviour_PlayIntroPainClips, (CorpseBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00848AF0, void, CorpseBehaviour_OnBloodEffectsChanged, (CorpseBehaviour * __this, bool enabled, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0320, CorpseBehaviour_OnBloodEffectsChanged__MethodInfo); DO_APP_FUNC(0x00848BB0, void, CorpseBehaviour__ctor, (CorpseBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, CorpseBehaviour_FinishSpawn_d_47__ctor, (CorpseBehaviour_FinishSpawn_d_47 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CorpseBehaviour_FinishSpawn_d_47_System_IDisposable_Dispose, (CorpseBehaviour_FinishSpawn_d_47 * __this, MethodInfo * method)); DO_APP_FUNC(0x00848CD0, bool, CorpseBehaviour_FinishSpawn_d_47_MoveNext, (CorpseBehaviour_FinishSpawn_d_47 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, CorpseBehaviour_FinishSpawn_d_47_System_Collections_Generic_IEnumerator_System_Object__get_Current, (CorpseBehaviour_FinishSpawn_d_47 * __this, MethodInfo * method)); DO_APP_FUNC(0x00849250, void, CorpseBehaviour_FinishSpawn_d_47_System_Collections_IEnumerator_Reset, (CorpseBehaviour_FinishSpawn_d_47 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0238, CorpseBehaviour_FinishSpawn_d_47_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, CorpseBehaviour_FinishSpawn_d_47_System_Collections_IEnumerator_get_Current, (CorpseBehaviour_FinishSpawn_d_47 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, CorpseBehaviour_Die_d_52__ctor, (CorpseBehaviour_Die_d_52 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CorpseBehaviour_Die_d_52_System_IDisposable_Dispose, (CorpseBehaviour_Die_d_52 * __this, MethodInfo * method)); DO_APP_FUNC(0x008492A0, bool, CorpseBehaviour_Die_d_52_MoveNext, (CorpseBehaviour_Die_d_52 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, CorpseBehaviour_Die_d_52_System_Collections_Generic_IEnumerator_System_Object__get_Current, (CorpseBehaviour_Die_d_52 * __this, MethodInfo * method)); DO_APP_FUNC(0x008494B0, void, CorpseBehaviour_Die_d_52_System_Collections_IEnumerator_Reset, (CorpseBehaviour_Die_d_52 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0248, CorpseBehaviour_Die_d_52_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, CorpseBehaviour_Die_d_52_System_Collections_IEnumerator_get_Current, (CorpseBehaviour_Die_d_52 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, CorpseBehaviour_Dissolve_d_53__ctor, (CorpseBehaviour_Dissolve_d_53 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CorpseBehaviour_Dissolve_d_53_System_IDisposable_Dispose, (CorpseBehaviour_Dissolve_d_53 * __this, MethodInfo * method)); DO_APP_FUNC(0x00849500, bool, CorpseBehaviour_Dissolve_d_53_MoveNext, (CorpseBehaviour_Dissolve_d_53 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, CorpseBehaviour_Dissolve_d_53_System_Collections_Generic_IEnumerator_System_Object__get_Current, (CorpseBehaviour_Dissolve_d_53 * __this, MethodInfo * method)); DO_APP_FUNC(0x0084A100, void, CorpseBehaviour_Dissolve_d_53_System_Collections_IEnumerator_Reset, (CorpseBehaviour_Dissolve_d_53 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0228, CorpseBehaviour_Dissolve_d_53_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, CorpseBehaviour_Dissolve_d_53_System_Collections_IEnumerator_get_Current, (CorpseBehaviour_Dissolve_d_53 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, CorpseBehaviour_FadeIn_d_55__ctor, (CorpseBehaviour_FadeIn_d_55 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CorpseBehaviour_FadeIn_d_55_System_IDisposable_Dispose, (CorpseBehaviour_FadeIn_d_55 * __this, MethodInfo * method)); DO_APP_FUNC(0x0084A150, bool, CorpseBehaviour_FadeIn_d_55_MoveNext, (CorpseBehaviour_FadeIn_d_55 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, CorpseBehaviour_FadeIn_d_55_System_Collections_Generic_IEnumerator_System_Object__get_Current, (CorpseBehaviour_FadeIn_d_55 * __this, MethodInfo * method)); DO_APP_FUNC(0x0084B120, void, CorpseBehaviour_FadeIn_d_55_System_Collections_IEnumerator_Reset, (CorpseBehaviour_FadeIn_d_55 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0220, CorpseBehaviour_FadeIn_d_55_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, CorpseBehaviour_FadeIn_d_55_System_Collections_IEnumerator_get_Current, (CorpseBehaviour_FadeIn_d_55 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, CorpseBehaviour_PlayFleeClips_d_61__ctor, (CorpseBehaviour_PlayFleeClips_d_61 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CorpseBehaviour_PlayFleeClips_d_61_System_IDisposable_Dispose, (CorpseBehaviour_PlayFleeClips_d_61 * __this, MethodInfo * method)); DO_APP_FUNC(0x0084B170, bool, CorpseBehaviour_PlayFleeClips_d_61_MoveNext, (CorpseBehaviour_PlayFleeClips_d_61 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, CorpseBehaviour_PlayFleeClips_d_61_System_Collections_Generic_IEnumerator_System_Object__get_Current, (CorpseBehaviour_PlayFleeClips_d_61 * __this, MethodInfo * method)); DO_APP_FUNC(0x0084B4A0, void, CorpseBehaviour_PlayFleeClips_d_61_System_Collections_IEnumerator_Reset, (CorpseBehaviour_PlayFleeClips_d_61 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0210, CorpseBehaviour_PlayFleeClips_d_61_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, CorpseBehaviour_PlayFleeClips_d_61_System_Collections_IEnumerator_get_Current, (CorpseBehaviour_PlayFleeClips_d_61 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, CorpseBehaviour_PlayIntroPainClips_d_62__ctor, (CorpseBehaviour_PlayIntroPainClips_d_62 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CorpseBehaviour_PlayIntroPainClips_d_62_System_IDisposable_Dispose, (CorpseBehaviour_PlayIntroPainClips_d_62 * __this, MethodInfo * method)); DO_APP_FUNC(0x0084B4F0, bool, CorpseBehaviour_PlayIntroPainClips_d_62_MoveNext, (CorpseBehaviour_PlayIntroPainClips_d_62 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, CorpseBehaviour_PlayIntroPainClips_d_62_System_Collections_Generic_IEnumerator_System_Object__get_Current, (CorpseBehaviour_PlayIntroPainClips_d_62 * __this, MethodInfo * method)); DO_APP_FUNC(0x0084B6E0, void, CorpseBehaviour_PlayIntroPainClips_d_62_System_Collections_IEnumerator_Reset, (CorpseBehaviour_PlayIntroPainClips_d_62 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0208, CorpseBehaviour_PlayIntroPainClips_d_62_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, CorpseBehaviour_PlayIntroPainClips_d_62_System_Collections_IEnumerator_get_Current, (CorpseBehaviour_PlayIntroPainClips_d_62 * __this, MethodInfo * method)); DO_APP_FUNC(0x0084B730, void, ForceLoadRagdoll_Start, (ForceLoadRagdoll * __this, MethodInfo * method)); DO_APP_FUNC(0x0084B880, IEnumerator *, ForceLoadRagdoll_LoadRagdoll, (ForceLoadRagdoll * __this, MethodInfo * method)); @@ -13937,23 +15763,27 @@ DO_APP_FUNC(0x003BA270, void, ForceLoadRagdoll_OnRagdollLoadedHandler_EndInvoke, DO_APP_FUNC(0x0084C400, void, ForceLoadRagdoll_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ForceLoadRagdoll_c__ctor, (ForceLoadRagdoll_c * __this, MethodInfo * method)); DO_APP_FUNC(0x0084C4B0, SkinnedMeshRenderer *, ForceLoadRagdoll_c__LoadRagdoll_b__14_0, (ForceLoadRagdoll_c * __this, Renderer * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF00D8, ForceLoadRagdoll_c__LoadRagdoll_b__14_0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, ForceLoadRagdoll_LoadRagdoll_d_14__ctor, (ForceLoadRagdoll_LoadRagdoll_d_14 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ForceLoadRagdoll_LoadRagdoll_d_14_System_IDisposable_Dispose, (ForceLoadRagdoll_LoadRagdoll_d_14 * __this, MethodInfo * method)); DO_APP_FUNC(0x0084C540, bool, ForceLoadRagdoll_LoadRagdoll_d_14_MoveNext, (ForceLoadRagdoll_LoadRagdoll_d_14 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, ForceLoadRagdoll_LoadRagdoll_d_14_System_Collections_Generic_IEnumerator_System_Object__get_Current, (ForceLoadRagdoll_LoadRagdoll_d_14 * __this, MethodInfo * method)); DO_APP_FUNC(0x0084D740, void, ForceLoadRagdoll_LoadRagdoll_d_14_System_Collections_IEnumerator_Reset, (ForceLoadRagdoll_LoadRagdoll_d_14 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF00D0, ForceLoadRagdoll_LoadRagdoll_d_14_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, ForceLoadRagdoll_LoadRagdoll_d_14_System_Collections_IEnumerator_get_Current, (ForceLoadRagdoll_LoadRagdoll_d_14 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, ForceLoadRagdoll_LoadRobeTexture_d_15__ctor, (ForceLoadRagdoll_LoadRobeTexture_d_15 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ForceLoadRagdoll_LoadRobeTexture_d_15_System_IDisposable_Dispose, (ForceLoadRagdoll_LoadRobeTexture_d_15 * __this, MethodInfo * method)); DO_APP_FUNC(0x0084D790, bool, ForceLoadRagdoll_LoadRobeTexture_d_15_MoveNext, (ForceLoadRagdoll_LoadRobeTexture_d_15 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, ForceLoadRagdoll_LoadRobeTexture_d_15_System_Collections_Generic_IEnumerator_System_Object__get_Current, (ForceLoadRagdoll_LoadRobeTexture_d_15 * __this, MethodInfo * method)); DO_APP_FUNC(0x0084DD90, void, ForceLoadRagdoll_LoadRobeTexture_d_15_System_Collections_IEnumerator_Reset, (ForceLoadRagdoll_LoadRobeTexture_d_15 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF00C0, ForceLoadRagdoll_LoadRobeTexture_d_15_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, ForceLoadRagdoll_LoadRobeTexture_d_15_System_Collections_IEnumerator_get_Current, (ForceLoadRagdoll_LoadRobeTexture_d_15 * __this, MethodInfo * method)); DO_APP_FUNC(0x0084DDE0, void, IntroMollyLookAt_Start, (IntroMollyLookAt * __this, MethodInfo * method)); DO_APP_FUNC(0x0084E130, void, IntroMollyLookAt_OnAnimatorIK, (IntroMollyLookAt * __this, int32_t layerIndex, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, IntroMollyLookAt__ctor, (IntroMollyLookAt * __this, MethodInfo * method)); DO_APP_FUNC(0x0084E410, void, PetCrowFlightController_Attached, (PetCrowFlightController * __this, MethodInfo * method)); DO_APP_FUNC(0x0084E530, void, PetCrowFlightController_OnSpeed, (PetCrowFlightController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0098, PetCrowFlightController_OnSpeed__MethodInfo); DO_APP_FUNC(0x0084E980, IEnumerator *, PetCrowFlightController_TakeOff, (PetCrowFlightController * __this, MethodInfo * method)); DO_APP_FUNC(0x0084EA20, IEnumerator *, PetCrowFlightController_Land, (PetCrowFlightController * __this, MethodInfo * method)); DO_APP_FUNC(0x0084EAC0, IEnumerator *, PetCrowFlightController_Flying, (PetCrowFlightController * __this, MethodInfo * method)); @@ -13963,18 +15793,21 @@ DO_APP_FUNC(0x003AE050, void, PetCrowFlightController_TakeOff_d_9_System_IDispos DO_APP_FUNC(0x0084EBD0, bool, PetCrowFlightController_TakeOff_d_9_MoveNext, (PetCrowFlightController_TakeOff_d_9 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, PetCrowFlightController_TakeOff_d_9_System_Collections_Generic_IEnumerator_System_Object__get_Current, (PetCrowFlightController_TakeOff_d_9 * __this, MethodInfo * method)); DO_APP_FUNC(0x0084F000, void, PetCrowFlightController_TakeOff_d_9_System_Collections_IEnumerator_Reset, (PetCrowFlightController_TakeOff_d_9 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0050, PetCrowFlightController_TakeOff_d_9_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, PetCrowFlightController_TakeOff_d_9_System_Collections_IEnumerator_get_Current, (PetCrowFlightController_TakeOff_d_9 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, PetCrowFlightController_Land_d_10__ctor, (PetCrowFlightController_Land_d_10 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, PetCrowFlightController_Land_d_10_System_IDisposable_Dispose, (PetCrowFlightController_Land_d_10 * __this, MethodInfo * method)); DO_APP_FUNC(0x0084F050, bool, PetCrowFlightController_Land_d_10_MoveNext, (PetCrowFlightController_Land_d_10 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, PetCrowFlightController_Land_d_10_System_Collections_Generic_IEnumerator_System_Object__get_Current, (PetCrowFlightController_Land_d_10 * __this, MethodInfo * method)); DO_APP_FUNC(0x0084F380, void, PetCrowFlightController_Land_d_10_System_Collections_IEnumerator_Reset, (PetCrowFlightController_Land_d_10 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0058, PetCrowFlightController_Land_d_10_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, PetCrowFlightController_Land_d_10_System_Collections_IEnumerator_get_Current, (PetCrowFlightController_Land_d_10 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, PetCrowFlightController_Flying_d_11__ctor, (PetCrowFlightController_Flying_d_11 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, PetCrowFlightController_Flying_d_11_System_IDisposable_Dispose, (PetCrowFlightController_Flying_d_11 * __this, MethodInfo * method)); DO_APP_FUNC(0x0084F3D0, bool, PetCrowFlightController_Flying_d_11_MoveNext, (PetCrowFlightController_Flying_d_11 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, PetCrowFlightController_Flying_d_11_System_Collections_Generic_IEnumerator_System_Object__get_Current, (PetCrowFlightController_Flying_d_11 * __this, MethodInfo * method)); DO_APP_FUNC(0x0084F790, void, PetCrowFlightController_Flying_d_11_System_Collections_IEnumerator_Reset, (PetCrowFlightController_Flying_d_11 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0038, PetCrowFlightController_Flying_d_11_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, PetCrowFlightController_Flying_d_11_System_Collections_IEnumerator_get_Current, (PetCrowFlightController_Flying_d_11 * __this, MethodInfo * method)); DO_APP_FUNC(0x0084F7E0, void, PurgatoryCorpseBehaviour_Awake, (PurgatoryCorpseBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00850540, void, PurgatoryCorpseBehaviour_StartAI, (PurgatoryCorpseBehaviour * __this, GameObject * player, MethodInfo * method)); @@ -13989,21 +15822,24 @@ DO_APP_FUNC(0x003AE050, void, PurgatoryCorpseBehaviour_Die_d_42_System_IDisposab DO_APP_FUNC(0x008511D0, bool, PurgatoryCorpseBehaviour_Die_d_42_MoveNext, (PurgatoryCorpseBehaviour_Die_d_42 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, PurgatoryCorpseBehaviour_Die_d_42_System_Collections_Generic_IEnumerator_System_Object__get_Current, (PurgatoryCorpseBehaviour_Die_d_42 * __this, MethodInfo * method)); DO_APP_FUNC(0x00851480, void, PurgatoryCorpseBehaviour_Die_d_42_System_Collections_IEnumerator_Reset, (PurgatoryCorpseBehaviour_Die_d_42 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEFFD8, PurgatoryCorpseBehaviour_Die_d_42_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, PurgatoryCorpseBehaviour_Die_d_42_System_Collections_IEnumerator_get_Current, (PurgatoryCorpseBehaviour_Die_d_42 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, PurgatoryCorpseBehaviour_Dissolve_d_43__ctor, (PurgatoryCorpseBehaviour_Dissolve_d_43 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, PurgatoryCorpseBehaviour_Dissolve_d_43_System_IDisposable_Dispose, (PurgatoryCorpseBehaviour_Dissolve_d_43 * __this, MethodInfo * method)); DO_APP_FUNC(0x008514D0, bool, PurgatoryCorpseBehaviour_Dissolve_d_43_MoveNext, (PurgatoryCorpseBehaviour_Dissolve_d_43 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, PurgatoryCorpseBehaviour_Dissolve_d_43_System_Collections_Generic_IEnumerator_System_Object__get_Current, (PurgatoryCorpseBehaviour_Dissolve_d_43 * __this, MethodInfo * method)); DO_APP_FUNC(0x00851AF0, void, PurgatoryCorpseBehaviour_Dissolve_d_43_System_Collections_IEnumerator_Reset, (PurgatoryCorpseBehaviour_Dissolve_d_43 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEFFC8, PurgatoryCorpseBehaviour_Dissolve_d_43_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, PurgatoryCorpseBehaviour_Dissolve_d_43_System_Collections_IEnumerator_get_Current, (PurgatoryCorpseBehaviour_Dissolve_d_43 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, PurgatoryCorpseBehaviour_PlayFleeClips_d_45__ctor, (PurgatoryCorpseBehaviour_PlayFleeClips_d_45 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, PurgatoryCorpseBehaviour_PlayFleeClips_d_45_System_IDisposable_Dispose, (PurgatoryCorpseBehaviour_PlayFleeClips_d_45 * __this, MethodInfo * method)); DO_APP_FUNC(0x00851B40, bool, PurgatoryCorpseBehaviour_PlayFleeClips_d_45_MoveNext, (PurgatoryCorpseBehaviour_PlayFleeClips_d_45 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, PurgatoryCorpseBehaviour_PlayFleeClips_d_45_System_Collections_Generic_IEnumerator_System_Object__get_Current, (PurgatoryCorpseBehaviour_PlayFleeClips_d_45 * __this, MethodInfo * method)); DO_APP_FUNC(0x00851D30, void, PurgatoryCorpseBehaviour_PlayFleeClips_d_45_System_Collections_IEnumerator_Reset, (PurgatoryCorpseBehaviour_PlayFleeClips_d_45 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEFFC0, PurgatoryCorpseBehaviour_PlayFleeClips_d_45_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, PurgatoryCorpseBehaviour_PlayFleeClips_d_45_System_Collections_IEnumerator_get_Current, (PurgatoryCorpseBehaviour_PlayFleeClips_d_45 * __this, MethodInfo * method)); DO_APP_FUNC(0x00851D80, void, PurgatoryGhostBehaviour_Awake, (PurgatoryGhostBehaviour * __this, MethodInfo * method)); -DO_APP_FUNC(0x008525D0, void, PurgatoryGhostBehaviour_InstantiateDissolveMaterial, (PurgatoryGhostBehaviour * __this, Material * originalMat, Material * dissolveMat, MethodInfo * method)); +DO_APP_FUNC(0x008525D0, void, PurgatoryGhostBehaviour_InstantiateDissolveMaterial, (PurgatoryGhostBehaviour * __this, Material * originalMat, Material * * dissolveMat, MethodInfo * method)); DO_APP_FUNC(0x008527E0, void, PurgatoryGhostBehaviour_StartAI, (PurgatoryGhostBehaviour * __this, GameObject * player, MethodInfo * method)); DO_APP_FUNC(0x00852A00, void, PurgatoryGhostBehaviour_Update, (PurgatoryGhostBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00852AE0, void, PurgatoryGhostBehaviour_FixedUpdate, (PurgatoryGhostBehaviour * __this, MethodInfo * method)); @@ -14023,24 +15859,28 @@ DO_APP_FUNC(0x003AE050, void, PurgatoryGhostBehaviour_Die_d_70_System_IDisposabl DO_APP_FUNC(0x00854BF0, bool, PurgatoryGhostBehaviour_Die_d_70_MoveNext, (PurgatoryGhostBehaviour_Die_d_70 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, PurgatoryGhostBehaviour_Die_d_70_System_Collections_Generic_IEnumerator_System_Object__get_Current, (PurgatoryGhostBehaviour_Die_d_70 * __this, MethodInfo * method)); DO_APP_FUNC(0x00854EA0, void, PurgatoryGhostBehaviour_Die_d_70_System_Collections_IEnumerator_Reset, (PurgatoryGhostBehaviour_Die_d_70 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEFF10, PurgatoryGhostBehaviour_Die_d_70_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, PurgatoryGhostBehaviour_Die_d_70_System_Collections_IEnumerator_get_Current, (PurgatoryGhostBehaviour_Die_d_70 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, PurgatoryGhostBehaviour_Dissolve_d_71__ctor, (PurgatoryGhostBehaviour_Dissolve_d_71 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, PurgatoryGhostBehaviour_Dissolve_d_71_System_IDisposable_Dispose, (PurgatoryGhostBehaviour_Dissolve_d_71 * __this, MethodInfo * method)); DO_APP_FUNC(0x00854EF0, bool, PurgatoryGhostBehaviour_Dissolve_d_71_MoveNext, (PurgatoryGhostBehaviour_Dissolve_d_71 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, PurgatoryGhostBehaviour_Dissolve_d_71_System_Collections_Generic_IEnumerator_System_Object__get_Current, (PurgatoryGhostBehaviour_Dissolve_d_71 * __this, MethodInfo * method)); DO_APP_FUNC(0x00855750, void, PurgatoryGhostBehaviour_Dissolve_d_71_System_Collections_IEnumerator_Reset, (PurgatoryGhostBehaviour_Dissolve_d_71 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEFEF8, PurgatoryGhostBehaviour_Dissolve_d_71_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, PurgatoryGhostBehaviour_Dissolve_d_71_System_Collections_IEnumerator_get_Current, (PurgatoryGhostBehaviour_Dissolve_d_71 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, PurgatoryGhostBehaviour_AttackPlayer_d_72__ctor, (PurgatoryGhostBehaviour_AttackPlayer_d_72 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, PurgatoryGhostBehaviour_AttackPlayer_d_72_System_IDisposable_Dispose, (PurgatoryGhostBehaviour_AttackPlayer_d_72 * __this, MethodInfo * method)); DO_APP_FUNC(0x008557A0, bool, PurgatoryGhostBehaviour_AttackPlayer_d_72_MoveNext, (PurgatoryGhostBehaviour_AttackPlayer_d_72 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, PurgatoryGhostBehaviour_AttackPlayer_d_72_System_Collections_Generic_IEnumerator_System_Object__get_Current, (PurgatoryGhostBehaviour_AttackPlayer_d_72 * __this, MethodInfo * method)); DO_APP_FUNC(0x00855B20, void, PurgatoryGhostBehaviour_AttackPlayer_d_72_System_Collections_IEnumerator_Reset, (PurgatoryGhostBehaviour_AttackPlayer_d_72 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEFEE8, PurgatoryGhostBehaviour_AttackPlayer_d_72_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, PurgatoryGhostBehaviour_AttackPlayer_d_72_System_Collections_IEnumerator_get_Current, (PurgatoryGhostBehaviour_AttackPlayer_d_72 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, PurgatoryGhostBehaviour_FadeIn_d_74__ctor, (PurgatoryGhostBehaviour_FadeIn_d_74 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, PurgatoryGhostBehaviour_FadeIn_d_74_System_IDisposable_Dispose, (PurgatoryGhostBehaviour_FadeIn_d_74 * __this, MethodInfo * method)); DO_APP_FUNC(0x00855B70, bool, PurgatoryGhostBehaviour_FadeIn_d_74_MoveNext, (PurgatoryGhostBehaviour_FadeIn_d_74 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, PurgatoryGhostBehaviour_FadeIn_d_74_System_Collections_Generic_IEnumerator_System_Object__get_Current, (PurgatoryGhostBehaviour_FadeIn_d_74 * __this, MethodInfo * method)); DO_APP_FUNC(0x00856D40, void, PurgatoryGhostBehaviour_FadeIn_d_74_System_Collections_IEnumerator_Reset, (PurgatoryGhostBehaviour_FadeIn_d_74 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEFEE0, PurgatoryGhostBehaviour_FadeIn_d_74_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, PurgatoryGhostBehaviour_FadeIn_d_74_System_Collections_IEnumerator_get_Current, (PurgatoryGhostBehaviour_FadeIn_d_74 * __this, MethodInfo * method)); DO_APP_FUNC(0x00856D90, void, RagdollLoader_Awake, (RagdollLoader * __this, MethodInfo * method)); DO_APP_FUNC(0x00856E70, void, RagdollLoader_Start, (RagdollLoader * __this, MethodInfo * method)); @@ -14049,6 +15889,7 @@ DO_APP_FUNC(0x00856FC0, IEnumerator *, RagdollLoader_CreateRagdoll, (RagdollLoad DO_APP_FUNC(0x00857190, IEnumerator *, RagdollLoader_LoadRobeTexture, (RagdollLoader * __this, String * robe, SkinnedMeshRenderer__Array * skinnedMeshRenderers, MethodInfo * method)); DO_APP_FUNC(0x0084BA90, GameObject *, RagdollLoader_GetRagdollPrefab, (RagdollLoader * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x00857300, void, RagdollLoader_OnReconnectOutfitLoaded, (RagdollLoader * __this, BoltEntity * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEFED8, RagdollLoader_OnReconnectOutfitLoaded__MethodInfo); DO_APP_FUNC(0x00857520, IEnumerator *, RagdollLoader_OnReconnectOutfitLoadedInternal, (RagdollLoader * __this, BoltEntity * player, MethodInfo * method)); DO_APP_FUNC(0x00857630, void, RagdollLoader_OnDestroy, (RagdollLoader * __this, MethodInfo * method)); DO_APP_FUNC(0x00857BE0, void, RagdollLoader__ctor, (RagdollLoader * __this, MethodInfo * method)); @@ -14063,31 +15904,37 @@ DO_APP_FUNC(0x003BA270, void, RagdollLoader_OnRagdollLoadedHandler_EndInvoke, (R DO_APP_FUNC(0x00857E00, void, RagdollLoader_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, RagdollLoader_c__ctor, (RagdollLoader_c * __this, MethodInfo * method)); DO_APP_FUNC(0x00857EB0, _f_AnonymousType1_3_Photon_Bolt_PrefabId_System_String_System_String_ *, RagdollLoader_c__LoadRagdolls_b__13_0, (RagdollLoader_c * __this, GameObject * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEFE00, RagdollLoader_c__LoadRagdolls_b__13_0__MethodInfo); DO_APP_FUNC(0x008581A0, SkinnedMeshRenderer *, RagdollLoader_c__CreateRagdoll_b__14_0, (RagdollLoader_c * __this, Renderer * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEFDD0, RagdollLoader_c__CreateRagdoll_b__14_0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, RagdollLoader_LoadRagdolls_d_13__ctor, (RagdollLoader_LoadRagdolls_d_13 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x00858230, void, RagdollLoader_LoadRagdolls_d_13_System_IDisposable_Dispose, (RagdollLoader_LoadRagdolls_d_13 * __this, MethodInfo * method)); DO_APP_FUNC(0x00858300, bool, RagdollLoader_LoadRagdolls_d_13_MoveNext, (RagdollLoader_LoadRagdolls_d_13 * __this, MethodInfo * method)); DO_APP_FUNC(0x00858B90, void, RagdollLoader_LoadRagdolls_d_13___m__Finally1, (RagdollLoader_LoadRagdolls_d_13 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, RagdollLoader_LoadRagdolls_d_13_System_Collections_Generic_IEnumerator_System_Object__get_Current, (RagdollLoader_LoadRagdolls_d_13 * __this, MethodInfo * method)); DO_APP_FUNC(0x00858BF0, void, RagdollLoader_LoadRagdolls_d_13_System_Collections_IEnumerator_Reset, (RagdollLoader_LoadRagdolls_d_13 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEFDF0, RagdollLoader_LoadRagdolls_d_13_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, RagdollLoader_LoadRagdolls_d_13_System_Collections_IEnumerator_get_Current, (RagdollLoader_LoadRagdolls_d_13 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, RagdollLoader_CreateRagdoll_d_14__ctor, (RagdollLoader_CreateRagdoll_d_14 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, RagdollLoader_CreateRagdoll_d_14_System_IDisposable_Dispose, (RagdollLoader_CreateRagdoll_d_14 * __this, MethodInfo * method)); DO_APP_FUNC(0x00858C40, bool, RagdollLoader_CreateRagdoll_d_14_MoveNext, (RagdollLoader_CreateRagdoll_d_14 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, RagdollLoader_CreateRagdoll_d_14_System_Collections_Generic_IEnumerator_System_Object__get_Current, (RagdollLoader_CreateRagdoll_d_14 * __this, MethodInfo * method)); DO_APP_FUNC(0x00859C10, void, RagdollLoader_CreateRagdoll_d_14_System_Collections_IEnumerator_Reset, (RagdollLoader_CreateRagdoll_d_14 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEFDD8, RagdollLoader_CreateRagdoll_d_14_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, RagdollLoader_CreateRagdoll_d_14_System_Collections_IEnumerator_get_Current, (RagdollLoader_CreateRagdoll_d_14 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, RagdollLoader_LoadRobeTexture_d_15__ctor, (RagdollLoader_LoadRobeTexture_d_15 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, RagdollLoader_LoadRobeTexture_d_15_System_IDisposable_Dispose, (RagdollLoader_LoadRobeTexture_d_15 * __this, MethodInfo * method)); DO_APP_FUNC(0x00859C60, bool, RagdollLoader_LoadRobeTexture_d_15_MoveNext, (RagdollLoader_LoadRobeTexture_d_15 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, RagdollLoader_LoadRobeTexture_d_15_System_Collections_Generic_IEnumerator_System_Object__get_Current, (RagdollLoader_LoadRobeTexture_d_15 * __this, MethodInfo * method)); DO_APP_FUNC(0x0085A260, void, RagdollLoader_LoadRobeTexture_d_15_System_Collections_IEnumerator_Reset, (RagdollLoader_LoadRobeTexture_d_15 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEFDC8, RagdollLoader_LoadRobeTexture_d_15_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, RagdollLoader_LoadRobeTexture_d_15_System_Collections_IEnumerator_get_Current, (RagdollLoader_LoadRobeTexture_d_15 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, RagdollLoader_OnReconnectOutfitLoadedInternal_d_18__ctor, (RagdollLoader_OnReconnectOutfitLoadedInternal_d_18 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, RagdollLoader_OnReconnectOutfitLoadedInternal_d_18_System_IDisposable_Dispose, (RagdollLoader_OnReconnectOutfitLoadedInternal_d_18 * __this, MethodInfo * method)); DO_APP_FUNC(0x0085A2B0, bool, RagdollLoader_OnReconnectOutfitLoadedInternal_d_18_MoveNext, (RagdollLoader_OnReconnectOutfitLoadedInternal_d_18 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, RagdollLoader_OnReconnectOutfitLoadedInternal_d_18_System_Collections_Generic_IEnumerator_System_Object__get_Current, (RagdollLoader_OnReconnectOutfitLoadedInternal_d_18 * __this, MethodInfo * method)); DO_APP_FUNC(0x0085AA00, void, RagdollLoader_OnReconnectOutfitLoadedInternal_d_18_System_Collections_IEnumerator_Reset, (RagdollLoader_OnReconnectOutfitLoadedInternal_d_18 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEFDC0, RagdollLoader_OnReconnectOutfitLoadedInternal_d_18_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, RagdollLoader_OnReconnectOutfitLoadedInternal_d_18_System_Collections_IEnumerator_get_Current, (RagdollLoader_OnReconnectOutfitLoadedInternal_d_18 * __this, MethodInfo * method)); DO_APP_FUNC(0x0085AA50, void, AltarRatController_Awake, (AltarRatController * __this, MethodInfo * method)); DO_APP_FUNC(0x0085AAE0, void, AltarRatController_SetRandomAnimation, (AltarRatController * __this, MethodInfo * method)); @@ -14105,11 +15952,14 @@ DO_APP_FUNC(0x003EEA20, IAsyncResult *, SimpleMoveTowards_HasArrived_BeginInvoke DO_APP_FUNC(0x003BA270, void, SimpleMoveTowards_HasArrived_EndInvoke, (SimpleMoveTowards_HasArrived * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x0085BC30, void, SimulateKnockout_Awake, (SimulateKnockout * __this, MethodInfo * method)); DO_APP_FUNC(0x0085C160, void, SimulateKnockout_OnRagdollLoaded, (SimulateKnockout * __this, KnockoutRagdoll * ragdoll, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEFCE8, SimulateKnockout_OnRagdollLoaded__MethodInfo); DO_APP_FUNC(0x0085CEF0, void, SimulateKnockout_OnKnockoutGrabRagdoll, (SimulateKnockout * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEFCD8, SimulateKnockout_OnKnockoutGrabRagdoll__MethodInfo); DO_APP_FUNC(0x0085EBE0, IEnumerator *, SimulateKnockout_NathanKnockout, (SimulateKnockout * __this, MethodInfo * method)); DO_APP_FUNC(0x0085EC80, IEnumerator *, SimulateKnockout_NathanVentKnockout, (SimulateKnockout * __this, MethodInfo * method)); DO_APP_FUNC(0x0085ED20, IEnumerator *, SimulateKnockout_DelaySetAnimatorBoolValue, (SimulateKnockout * __this, String * param, bool value, float delay, MethodInfo * method)); DO_APP_FUNC(0x0085EE60, void, SimulateKnockout_OnKnockoutDropPlayer, (SimulateKnockout * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEFD08, SimulateKnockout_OnKnockoutDropPlayer__MethodInfo); DO_APP_FUNC(0x0085EF60, IEnumerator *, SimulateKnockout_Dissolve, (SimulateKnockout * __this, float delay, MethodInfo * method)); DO_APP_FUNC(0x0085F010, void, SimulateKnockout_OnDestroy, (SimulateKnockout * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, SimulateKnockout__ctor, (SimulateKnockout * __this, MethodInfo * method)); @@ -14118,28 +15968,32 @@ DO_APP_FUNC(0x003AE050, void, SimulateKnockout_NathanKnockout_d_15_System_IDispo DO_APP_FUNC(0x0085F2F0, bool, SimulateKnockout_NathanKnockout_d_15_MoveNext, (SimulateKnockout_NathanKnockout_d_15 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SimulateKnockout_NathanKnockout_d_15_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SimulateKnockout_NathanKnockout_d_15 * __this, MethodInfo * method)); DO_APP_FUNC(0x0085F510, void, SimulateKnockout_NathanKnockout_d_15_System_Collections_IEnumerator_Reset, (SimulateKnockout_NathanKnockout_d_15 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEFC00, SimulateKnockout_NathanKnockout_d_15_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SimulateKnockout_NathanKnockout_d_15_System_Collections_IEnumerator_get_Current, (SimulateKnockout_NathanKnockout_d_15 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, SimulateKnockout_NathanVentKnockout_d_16__ctor, (SimulateKnockout_NathanVentKnockout_d_16 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SimulateKnockout_NathanVentKnockout_d_16_System_IDisposable_Dispose, (SimulateKnockout_NathanVentKnockout_d_16 * __this, MethodInfo * method)); DO_APP_FUNC(0x0085F560, bool, SimulateKnockout_NathanVentKnockout_d_16_MoveNext, (SimulateKnockout_NathanVentKnockout_d_16 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SimulateKnockout_NathanVentKnockout_d_16_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SimulateKnockout_NathanVentKnockout_d_16 * __this, MethodInfo * method)); DO_APP_FUNC(0x0085F710, void, SimulateKnockout_NathanVentKnockout_d_16_System_Collections_IEnumerator_Reset, (SimulateKnockout_NathanVentKnockout_d_16 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEFBF0, SimulateKnockout_NathanVentKnockout_d_16_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SimulateKnockout_NathanVentKnockout_d_16_System_Collections_IEnumerator_get_Current, (SimulateKnockout_NathanVentKnockout_d_16 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, SimulateKnockout_DelaySetAnimatorBoolValue_d_17__ctor, (SimulateKnockout_DelaySetAnimatorBoolValue_d_17 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SimulateKnockout_DelaySetAnimatorBoolValue_d_17_System_IDisposable_Dispose, (SimulateKnockout_DelaySetAnimatorBoolValue_d_17 * __this, MethodInfo * method)); DO_APP_FUNC(0x0085F760, bool, SimulateKnockout_DelaySetAnimatorBoolValue_d_17_MoveNext, (SimulateKnockout_DelaySetAnimatorBoolValue_d_17 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SimulateKnockout_DelaySetAnimatorBoolValue_d_17_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SimulateKnockout_DelaySetAnimatorBoolValue_d_17 * __this, MethodInfo * method)); DO_APP_FUNC(0x0085F870, void, SimulateKnockout_DelaySetAnimatorBoolValue_d_17_System_Collections_IEnumerator_Reset, (SimulateKnockout_DelaySetAnimatorBoolValue_d_17 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEFBC0, SimulateKnockout_DelaySetAnimatorBoolValue_d_17_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SimulateKnockout_DelaySetAnimatorBoolValue_d_17_System_Collections_IEnumerator_get_Current, (SimulateKnockout_DelaySetAnimatorBoolValue_d_17 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, SimulateKnockout_Dissolve_d_19__ctor, (SimulateKnockout_Dissolve_d_19 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SimulateKnockout_Dissolve_d_19_System_IDisposable_Dispose, (SimulateKnockout_Dissolve_d_19 * __this, MethodInfo * method)); DO_APP_FUNC(0x0085F8C0, bool, SimulateKnockout_Dissolve_d_19_MoveNext, (SimulateKnockout_Dissolve_d_19 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SimulateKnockout_Dissolve_d_19_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SimulateKnockout_Dissolve_d_19 * __this, MethodInfo * method)); DO_APP_FUNC(0x0085F9F0, void, SimulateKnockout_Dissolve_d_19_System_Collections_IEnumerator_Reset, (SimulateKnockout_Dissolve_d_19 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEFBB0, SimulateKnockout_Dissolve_d_19_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SimulateKnockout_Dissolve_d_19_System_Collections_IEnumerator_get_Current, (SimulateKnockout_Dissolve_d_19 * __this, MethodInfo * method)); -DO_APP_FUNC(0x0085FA40, void, StrafeRichAI_MovementUpdateInternal, (StrafeRichAI * __this, float deltaTime, Vector3 nextPosition, Quaternion nextRotation, MethodInfo * method)); -DO_APP_FUNC(0x0085FE30, void, StrafeRichAI_TraverseFunnel, (StrafeRichAI * __this, RichFunnel * fn, float deltaTime, Vector3 nextPosition, Quaternion nextRotation, MethodInfo * method)); -DO_APP_FUNC(0x00860950, void, StrafeRichAI_FinalMovement, (StrafeRichAI * __this, Vector3 position3D, float deltaTime, float distanceToEndOfPath, float slowdownFactor, Vector3 nextPosition, Quaternion nextRotation, MethodInfo * method)); +DO_APP_FUNC(0x0085FA40, void, StrafeRichAI_MovementUpdateInternal, (StrafeRichAI * __this, float deltaTime, Vector3 * nextPosition, Quaternion * nextRotation, MethodInfo * method)); +DO_APP_FUNC(0x0085FE30, void, StrafeRichAI_TraverseFunnel, (StrafeRichAI * __this, RichFunnel * fn, float deltaTime, Vector3 * nextPosition, Quaternion * nextRotation, MethodInfo * method)); +DO_APP_FUNC(0x00860950, void, StrafeRichAI_FinalMovement, (StrafeRichAI * __this, Vector3 position3D, float deltaTime, float distanceToEndOfPath, float slowdownFactor, Vector3 * nextPosition, Quaternion * nextRotation, MethodInfo * method)); DO_APP_FUNC(0x00861390, Vector2, StrafeRichAI_CalculateWallForce, (StrafeRichAI * __this, Vector2 position, float elevation, Vector2 directionToTarget, MethodInfo * method)); DO_APP_FUNC(0x00861960, void, StrafeRichAI__ctor, (StrafeRichAI * __this, MethodInfo * method)); DO_APP_FUNC(0x008619B0, void, AlignToGroundFloatSetter_Awake, (AlignToGroundFloatSetter * __this, MethodInfo * method)); @@ -14156,15 +16010,19 @@ DO_APP_FUNC(0x008630D0, void, AlignToGroundRotation_OnDisable, (AlignToGroundRot DO_APP_FUNC(0x008630E0, void, AlignToGroundRotation__ctor, (AlignToGroundRotation * __this, MethodInfo * method)); DO_APP_FUNC(0x008632A0, void, AmplifyOutline_Awake, (AmplifyOutline * __this, MethodInfo * method)); DO_APP_FUNC(0x00863600, void, AmplifyOutline_OnCanStartInteract, (AmplifyOutline * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2308, AmplifyOutline_OnCanStartInteract__MethodInfo); DO_APP_FUNC(0x008636D0, void, AmplifyOutline_OnCannotStartInteract, (AmplifyOutline * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF22E0, AmplifyOutline_OnCannotStartInteract__MethodInfo); DO_APP_FUNC(0x008637A0, void, AmplifyOutline_SetMaxDistance, (AmplifyOutline * __this, float maxDistance, MethodInfo * method)); DO_APP_FUNC(0x00863800, void, AmplifyOutline_OnDestroy, (AmplifyOutline * __this, MethodInfo * method)); DO_APP_FUNC(0x008639C0, void, AmplifyOutline__ctor, (AmplifyOutline * __this, MethodInfo * method)); DO_APP_FUNC(0x00863AA0, void, AnimalGateBehaviour_Awake, (AnimalGateBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00863B50, void, AnimalGateBehaviour_Attached, (AnimalGateBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00863D10, void, AnimalGateBehaviour_OnSpawnPointName, (AnimalGateBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2248, AnimalGateBehaviour_OnSpawnPointName__MethodInfo); DO_APP_FUNC(0x008640C0, void, AnimalGateBehaviour__ctor, (AnimalGateBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00864110, bool, AnimalGateBehaviour__OnSpawnPointName_b__3_0, (AnimalGateBehaviour * __this, AnimalGateSpawnPoint * spawnPoint, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2238, AnimalGateBehaviour__OnSpawnPointName_b__3_0__MethodInfo); DO_APP_FUNC(0x00864240, void, AnnaBlendShapes_Awake, (AnnaBlendShapes * __this, MethodInfo * method)); DO_APP_FUNC(0x008642D0, void, AnnaBlendShapes_Update, (AnnaBlendShapes * __this, MethodInfo * method)); DO_APP_FUNC(0x00864390, void, AnnaBlendShapes_SetPreset, (AnnaBlendShapes * __this, String * name, MethodInfo * method)); @@ -14177,6 +16035,7 @@ DO_APP_FUNC(0x003AE050, void, AnnaBlendShapes_DelayClear_d_8_System_IDisposable_ DO_APP_FUNC(0x008646F0, bool, AnnaBlendShapes_DelayClear_d_8_MoveNext, (AnnaBlendShapes_DelayClear_d_8 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, AnnaBlendShapes_DelayClear_d_8_System_Collections_Generic_IEnumerator_System_Object__get_Current, (AnnaBlendShapes_DelayClear_d_8 * __this, MethodInfo * method)); DO_APP_FUNC(0x008648A0, void, AnnaBlendShapes_DelayClear_d_8_System_Collections_IEnumerator_Reset, (AnnaBlendShapes_DelayClear_d_8 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2178, AnnaBlendShapes_DelayClear_d_8_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, AnnaBlendShapes_DelayClear_d_8_System_Collections_IEnumerator_get_Current, (AnnaBlendShapes_DelayClear_d_8 * __this, MethodInfo * method)); DO_APP_FUNC(0x008648F0, void, AnnaIntro_Awake, (AnnaIntro * __this, MethodInfo * method)); DO_APP_FUNC(0x00864990, void, AnnaIntro_Start, (AnnaIntro * __this, MethodInfo * method)); @@ -14190,6 +16049,7 @@ DO_APP_FUNC(0x003AE050, void, AnnaIntro_AnnaExit_d_22_System_IDisposable_Dispose DO_APP_FUNC(0x008650F0, bool, AnnaIntro_AnnaExit_d_22_MoveNext, (AnnaIntro_AnnaExit_d_22 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, AnnaIntro_AnnaExit_d_22_System_Collections_Generic_IEnumerator_System_Object__get_Current, (AnnaIntro_AnnaExit_d_22 * __this, MethodInfo * method)); DO_APP_FUNC(0x00865A80, void, AnnaIntro_AnnaExit_d_22_System_Collections_IEnumerator_Reset, (AnnaIntro_AnnaExit_d_22 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF20E8, AnnaIntro_AnnaExit_d_22_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, AnnaIntro_AnnaExit_d_22_System_Collections_IEnumerator_get_Current, (AnnaIntro_AnnaExit_d_22 * __this, MethodInfo * method)); DO_APP_FUNC(0x00865AD0, void, AnnaIntroTrigger_OnTriggerEnter, (AnnaIntroTrigger * __this, Collider * collider, MethodInfo * method)); DO_APP_FUNC(0x0057CB50, void, AnnaIntroTrigger__ctor, (AnnaIntroTrigger * __this, MethodInfo * method)); @@ -14197,6 +16057,7 @@ DO_APP_FUNC(0x00865BA0, void, AmbientRandomAudio_Awake, (AmbientRandomAudio * __ DO_APP_FUNC(0x00865FA0, void, AmbientRandomAudio_Start, (AmbientRandomAudio * __this, MethodInfo * method)); DO_APP_FUNC(0x00866100, void, AmbientRandomAudio_Update, (AmbientRandomAudio * __this, MethodInfo * method)); DO_APP_FUNC(0x008668E0, void, AmbientRandomAudio_OnGlobalGoatBurnEvent, (AmbientRandomAudio * __this, int32_t number, BoltEntity * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF20C8, AmbientRandomAudio_OnGlobalGoatBurnEvent__MethodInfo); DO_APP_FUNC(0x00866C90, void, AmbientRandomAudio_OnTriggerEnter, (AmbientRandomAudio * __this, Collider * other, MethodInfo * method)); DO_APP_FUNC(0x00866F60, void, AmbientRandomAudio_OnTriggerExit, (AmbientRandomAudio * __this, Collider * other, MethodInfo * method)); DO_APP_FUNC(0x00867200, void, AmbientRandomAudio_Mute, (AmbientRandomAudio * __this, float time, MethodInfo * method)); @@ -14210,6 +16071,7 @@ DO_APP_FUNC(0x003AE050, void, AmbientRandomAudio_FadeOutRandomAudioSource_d_31_S DO_APP_FUNC(0x008676F0, bool, AmbientRandomAudio_FadeOutRandomAudioSource_d_31_MoveNext, (AmbientRandomAudio_FadeOutRandomAudioSource_d_31 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, AmbientRandomAudio_FadeOutRandomAudioSource_d_31_System_Collections_Generic_IEnumerator_System_Object__get_Current, (AmbientRandomAudio_FadeOutRandomAudioSource_d_31 * __this, MethodInfo * method)); DO_APP_FUNC(0x00867910, void, AmbientRandomAudio_FadeOutRandomAudioSource_d_31_System_Collections_IEnumerator_Reset, (AmbientRandomAudio_FadeOutRandomAudioSource_d_31 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2000, AmbientRandomAudio_FadeOutRandomAudioSource_d_31_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, AmbientRandomAudio_FadeOutRandomAudioSource_d_31_System_Collections_IEnumerator_get_Current, (AmbientRandomAudio_FadeOutRandomAudioSource_d_31 * __this, MethodInfo * method)); DO_APP_FUNC(0x00867960, void, AudioEffectsManager_SetInVent, (AudioEffectsManager * __this, bool isInVent, MethodInfo * method)); DO_APP_FUNC(0x00867990, void, AudioEffectsManager_SetInVent_1, (AudioEffectsManager * __this, bool isInVent, bool instantUpdate, MethodInfo * method)); @@ -14240,6 +16102,7 @@ DO_APP_FUNC(0x0086BE70, void, AudioTrigger__ctor, (AudioTrigger * __this, Method DO_APP_FUNC(0x0086BED0, void, BGMController_Awake, (BGMController * __this, MethodInfo * method)); DO_APP_FUNC(0x0086BEE0, void, BGMController_Start, (BGMController * __this, MethodInfo * method)); DO_APP_FUNC(0x0086C270, void, BGMController_OnGlobalGoatBurnEvent, (BGMController * __this, int32_t progress, BoltEntity * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1E38, BGMController_OnGlobalGoatBurnEvent__MethodInfo); DO_APP_FUNC(0x0086C280, void, BGMController_PlayBGM, (BGMController * __this, int32_t progress, bool enrage, MethodInfo * method)); DO_APP_FUNC(0x0086C820, void, BGMController_PlayInitialBGM, (BGMController * __this, MethodInfo * method)); DO_APP_FUNC(0x0086C840, void, BGMController_StopAllBGMs, (BGMController * __this, MethodInfo * method)); @@ -14250,12 +16113,15 @@ DO_APP_FUNC(0x0086CF20, void, BGMController_OnTriggerEnter, (BGMController * __t DO_APP_FUNC(0x0086D100, void, BGMController_OnTriggerExit, (BGMController * __this, Collider * collider, MethodInfo * method)); DO_APP_FUNC(0x0086D2F0, void, BGMController_SetPlayerInTrigger, (BGMController * __this, bool _playerInTrigger, MethodInfo * method)); DO_APP_FUNC(0x0086D640, void, BGMController_OnAnnaEnrageStart, (BGMController * __this, GameObject * azazel, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1E58, BGMController_OnAnnaEnrageStart__MethodInfo); DO_APP_FUNC(0x0086D670, void, BGMController_OnAnnaEnrageEnd, (BGMController * __this, GameObject * azazel, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1E50, BGMController_OnAnnaEnrageEnd__MethodInfo); DO_APP_FUNC(0x0086D6A0, void, BGMController_OnDestroy, (BGMController * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, BGMController__ctor, (BGMController * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BGMController_BGM__ctor, (BGMController_BGM * __this, MethodInfo * method)); DO_APP_FUNC(0x0086D870, void, CameraAudioController_Awake, (CameraAudioController * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CameraAudioController_OnAnnaEnrageStart, (CameraAudioController * __this, GameObject * anna, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1DB8, CameraAudioController_OnAnnaEnrageStart__MethodInfo); DO_APP_FUNC(0x0086D950, void, CameraAudioController_OnDestroy, (CameraAudioController * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, CameraAudioController__ctor, (CameraAudioController * __this, MethodInfo * method)); DO_APP_FUNC(0x0086DA30, void, ColliderAudio_Start, (ColliderAudio * __this, MethodInfo * method)); @@ -14270,7 +16136,9 @@ DO_APP_FUNC(0x0086DF70, void, DialogueHint_OnTriggerEnter, (DialogueHint * __thi DO_APP_FUNC(0x0086E040, void, DialogueHint_OnTriggerExit, (DialogueHint * __this, Collider * collider, MethodInfo * method)); DO_APP_FUNC(0x0086E0A0, IEnumerator *, DialogueHint_PlayDialogue, (DialogueHint * __this, MethodInfo * method)); DO_APP_FUNC(0x0046C9F0, void, DialogueHint_OnResetGame, (DialogueHint * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1DA8, DialogueHint_OnResetGame__MethodInfo); DO_APP_FUNC(0x0046C9F0, void, DialogueHint_OnKillAbility, (DialogueHint * __this, GameObject * cultist, String * killedBy, String * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1DA0, DialogueHint_OnKillAbility__MethodInfo); DO_APP_FUNC(0x0046C9F0, void, DialogueHint_Reset, (DialogueHint * __this, MethodInfo * method)); DO_APP_FUNC(0x0086E140, bool, DialogueHint_HasPlayed, (DialogueHint * __this, MethodInfo * method)); DO_APP_FUNC(0x0086E150, void, DialogueHint_OnDestroy, (DialogueHint * __this, MethodInfo * method)); @@ -14280,6 +16148,7 @@ DO_APP_FUNC(0x003AE050, void, DialogueHint_PlayDialogue_d_15_System_IDisposable_ DO_APP_FUNC(0x0086E2A0, bool, DialogueHint_PlayDialogue_d_15_MoveNext, (DialogueHint_PlayDialogue_d_15 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, DialogueHint_PlayDialogue_d_15_System_Collections_Generic_IEnumerator_System_Object__get_Current, (DialogueHint_PlayDialogue_d_15 * __this, MethodInfo * method)); DO_APP_FUNC(0x0086E510, void, DialogueHint_PlayDialogue_d_15_System_Collections_IEnumerator_Reset, (DialogueHint_PlayDialogue_d_15 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1D88, DialogueHint_PlayDialogue_d_15_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, DialogueHint_PlayDialogue_d_15_System_Collections_IEnumerator_get_Current, (DialogueHint_PlayDialogue_d_15 * __this, MethodInfo * method)); DO_APP_FUNC(0x0086E560, void, DialogueHintCanceller_OnTriggerEnter, (DialogueHintCanceller * __this, Collider * collider, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, DialogueHintCanceller__ctor, (DialogueHintCanceller * __this, MethodInfo * method)); @@ -14290,7 +16159,9 @@ DO_APP_FUNC(0x0086E940, bool, DialogueManager_TakeLock, (DialogueManager * __thi DO_APP_FUNC(0x00612630, void, DialogueManager_ReleaseLock, (DialogueManager * __this, MethodInfo * method)); DO_APP_FUNC(0x0086E950, IEnumerator *, DialogueManager_PlayDialogueLine, (DialogueManager * __this, DialogueLine * dialogueLine, MethodInfo * method)); DO_APP_FUNC(0x0086EA60, void, DialogueManager_OnResetGame, (DialogueManager * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1D68, DialogueManager_OnResetGame__MethodInfo); DO_APP_FUNC(0x0086EA60, void, DialogueManager_OnKillAbility, (DialogueManager * __this, GameObject * cultist, String * killedBy, String * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1D60, DialogueManager_OnKillAbility__MethodInfo); DO_APP_FUNC(0x0086EA70, void, DialogueManager_Reset, (DialogueManager * __this, MethodInfo * method)); DO_APP_FUNC(0x0086EAF0, void, DialogueManager_OnDestroy, (DialogueManager * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, DialogueManager__ctor, (DialogueManager * __this, MethodInfo * method)); @@ -14299,12 +16170,15 @@ DO_APP_FUNC(0x003AE050, void, DialogueManager_PlayDialogueLine_d_9_System_IDispo DO_APP_FUNC(0x0086EC40, bool, DialogueManager_PlayDialogueLine_d_9_MoveNext, (DialogueManager_PlayDialogueLine_d_9 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, DialogueManager_PlayDialogueLine_d_9_System_Collections_Generic_IEnumerator_System_Object__get_Current, (DialogueManager_PlayDialogueLine_d_9 * __this, MethodInfo * method)); DO_APP_FUNC(0x0086F280, void, DialogueManager_PlayDialogueLine_d_9_System_Collections_IEnumerator_Reset, (DialogueManager_PlayDialogueLine_d_9 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1D50, DialogueManager_PlayDialogueLine_d_9_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, DialogueManager_PlayDialogueLine_d_9_System_Collections_IEnumerator_get_Current, (DialogueManager_PlayDialogueLine_d_9 * __this, MethodInfo * method)); DO_APP_FUNC(0x0086F2D0, void, DialogueManual_Start, (DialogueManual * __this, MethodInfo * method)); DO_APP_FUNC(0x0086F410, IEnumerator *, DialogueManual_PlayDialogue, (DialogueManual * __this, MethodInfo * method)); DO_APP_FUNC(0x0086F4B0, void, DialogueManual_StartDialogue, (DialogueManual * __this, MethodInfo * method)); DO_APP_FUNC(0x0046C9F0, void, DialogueManual_OnResetGame, (DialogueManual * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1D48, DialogueManual_OnResetGame__MethodInfo); DO_APP_FUNC(0x0046C9F0, void, DialogueManual_OnKillAbility, (DialogueManual * __this, GameObject * cultist, String * killedBy, String * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1D40, DialogueManual_OnKillAbility__MethodInfo); DO_APP_FUNC(0x0046C9F0, void, DialogueManual_Reset, (DialogueManual * __this, MethodInfo * method)); DO_APP_FUNC(0x0086F6C0, void, DialogueManual_OnDestroy, (DialogueManual * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, DialogueManual__ctor, (DialogueManual * __this, MethodInfo * method)); @@ -14313,13 +16187,16 @@ DO_APP_FUNC(0x003AE050, void, DialogueManual_PlayDialogue_d_2_System_IDisposable DO_APP_FUNC(0x0086E2A0, bool, DialogueManual_PlayDialogue_d_2_MoveNext, (DialogueManual_PlayDialogue_d_2 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, DialogueManual_PlayDialogue_d_2_System_Collections_Generic_IEnumerator_System_Object__get_Current, (DialogueManual_PlayDialogue_d_2 * __this, MethodInfo * method)); DO_APP_FUNC(0x0086F810, void, DialogueManual_PlayDialogue_d_2_System_Collections_IEnumerator_Reset, (DialogueManual_PlayDialogue_d_2 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1D30, DialogueManual_PlayDialogue_d_2_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, DialogueManual_PlayDialogue_d_2_System_Collections_IEnumerator_get_Current, (DialogueManual_PlayDialogue_d_2 * __this, MethodInfo * method)); DO_APP_FUNC(0x0086F860, void, DialogueTrigger_Start, (DialogueTrigger * __this, MethodInfo * method)); DO_APP_FUNC(0x0086F9A0, void, DialogueTrigger_OnTriggerEnter, (DialogueTrigger * __this, Collider * collider, MethodInfo * method)); DO_APP_FUNC(0x0086FBB0, void, DialogueTrigger_OnTriggerExit, (DialogueTrigger * __this, Collider * collider, MethodInfo * method)); DO_APP_FUNC(0x0086FC10, IEnumerator *, DialogueTrigger_PlayDialogue, (DialogueTrigger * __this, MethodInfo * method)); DO_APP_FUNC(0x0046C9F0, void, DialogueTrigger_OnResetGame, (DialogueTrigger * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1D28, DialogueTrigger_OnResetGame__MethodInfo); DO_APP_FUNC(0x0046C9F0, void, DialogueTrigger_OnKillAbility, (DialogueTrigger * __this, GameObject * cultist, String * killedBy, String * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1D20, DialogueTrigger_OnKillAbility__MethodInfo); DO_APP_FUNC(0x0046C9F0, void, DialogueTrigger_Reset, (DialogueTrigger * __this, MethodInfo * method)); DO_APP_FUNC(0x0086FCB0, void, DialogueTrigger_OnDestroy, (DialogueTrigger * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, DialogueTrigger__ctor, (DialogueTrigger * __this, MethodInfo * method)); @@ -14328,6 +16205,7 @@ DO_APP_FUNC(0x003AE050, void, DialogueTrigger_PlayDialogue_d_7_System_IDisposabl DO_APP_FUNC(0x0086E2A0, bool, DialogueTrigger_PlayDialogue_d_7_MoveNext, (DialogueTrigger_PlayDialogue_d_7 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, DialogueTrigger_PlayDialogue_d_7_System_Collections_Generic_IEnumerator_System_Object__get_Current, (DialogueTrigger_PlayDialogue_d_7 * __this, MethodInfo * method)); DO_APP_FUNC(0x0086FE00, void, DialogueTrigger_PlayDialogue_d_7_System_Collections_IEnumerator_Reset, (DialogueTrigger_PlayDialogue_d_7 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1D10, DialogueTrigger_PlayDialogue_d_7_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, DialogueTrigger_PlayDialogue_d_7_System_Collections_IEnumerator_get_Current, (DialogueTrigger_PlayDialogue_d_7 * __this, MethodInfo * method)); DO_APP_FUNC(0x0086FE50, void, EnragedAudioController_PlayEnragedAudio, (EnragedAudioController * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, EnragedAudioController__ctor, (EnragedAudioController * __this, MethodInfo * method)); @@ -14341,6 +16219,7 @@ DO_APP_FUNC(0x00870A10, void, NoForestAudio_OnTriggerExit, (NoForestAudio * __th DO_APP_FUNC(0x003AE000, void, NoForestAudio__ctor, (NoForestAudio * __this, MethodInfo * method)); DO_APP_FUNC(0x00870BA0, void, NolanClothSounds_OnEnable, (NolanClothSounds * __this, MethodInfo * method)); DO_APP_FUNC(0x00870D20, void, NolanClothSounds_OnCharacterAbilityActive, (NolanClothSounds * __this, Ability * ability, bool active, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1D08, NolanClothSounds_OnCharacterAbilityActive__MethodInfo); DO_APP_FUNC(0x00871060, void, NolanClothSounds_OnLocalPlayerFootstep, (NolanClothSounds * __this, MethodInfo * method)); DO_APP_FUNC(0x00871220, void, NolanClothSounds_Play, (NolanClothSounds * __this, MethodInfo * method)); DO_APP_FUNC(0x008713B0, void, NolanClothSounds_OnDestroy, (NolanClothSounds * __this, MethodInfo * method)); @@ -14351,6 +16230,7 @@ DO_APP_FUNC(0x00871660, void, OutdoorsAudio_Awake, (OutdoorsAudio * __this, Meth DO_APP_FUNC(0x00871A90, void, OutdoorsAudio_Initialize, (OutdoorsAudio * __this, MethodInfo * method)); DO_APP_FUNC(0x00872900, void, OutdoorsAudio_StopAndPlay, (OutdoorsAudio * __this, AudioSource * audioSource, MethodInfo * method)); DO_APP_FUNC(0x00872CC0, void, OutdoorsAudio_OnGlobalGoatBurnEvent, (OutdoorsAudio * __this, int32_t numObjectsBurned, BoltEntity * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1CE8, OutdoorsAudio_OnGlobalGoatBurnEvent__MethodInfo); DO_APP_FUNC(0x00872CE0, void, OutdoorsAudio_UpdateWeather, (OutdoorsAudio * __this, int32_t numObjectsBurned, MethodInfo * method)); DO_APP_FUNC(0x00872E10, void, OutdoorsAudio_StartNormalRain, (OutdoorsAudio * __this, MethodInfo * method)); DO_APP_FUNC(0x00872E20, void, OutdoorsAudio_StartHeavierRain, (OutdoorsAudio * __this, MethodInfo * method)); @@ -14366,8 +16246,10 @@ DO_APP_FUNC(0x00875D60, void, OutdoorsAudio__ctor, (OutdoorsAudio * __this, Meth DO_APP_FUNC(0x00875E60, void, OutdoorsAudio_AudioType__ctor, (OutdoorsAudio_AudioType * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, OutdoorsAudio_c_DisplayClass39_0__ctor, (OutdoorsAudio_c_DisplayClass39_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00875E70, void, OutdoorsAudio_c_DisplayClass39_0__DoOnTriggerEnter_b__0, (OutdoorsAudio_c_DisplayClass39_0 * __this, float cutoff, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1C88, OutdoorsAudio_c_DisplayClass39_0__DoOnTriggerEnter_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, OutdoorsAudio_c_DisplayClass41_0__ctor, (OutdoorsAudio_c_DisplayClass41_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00875FA0, void, OutdoorsAudio_c_DisplayClass41_0__DoOnTriggerExit_b__0, (OutdoorsAudio_c_DisplayClass41_0 * __this, float cutoff, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1C78, OutdoorsAudio_c_DisplayClass41_0__DoOnTriggerExit_b__0__MethodInfo); DO_APP_FUNC(0x008760D0, void, OutdoorsAudioChildCollider_Awake, (OutdoorsAudioChildCollider * __this, MethodInfo * method)); DO_APP_FUNC(0x008761B0, void, OutdoorsAudioChildCollider_OnTriggerEnter, (OutdoorsAudioChildCollider * __this, Collider * other, MethodInfo * method)); DO_APP_FUNC(0x008761F0, void, OutdoorsAudioChildCollider_OnTriggerExit, (OutdoorsAudioChildCollider * __this, Collider * other, MethodInfo * method)); @@ -14377,6 +16259,7 @@ DO_APP_FUNC(0x00876310, void, OutdoorsAudioWindowPoint_Update, (OutdoorsAudioWin DO_APP_FUNC(0x008769D0, void, OutdoorsAudioWindowPoint__ctor, (OutdoorsAudioWindowPoint * __this, MethodInfo * method)); DO_APP_FUNC(0x00876A20, void, PeriodicShake_Start, (PeriodicShake * __this, MethodInfo * method)); DO_APP_FUNC(0x00876B00, void, PeriodicShake_OnGlobalGoatBurnEvent, (PeriodicShake * __this, int32_t number, BoltEntity * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1C58, PeriodicShake_OnGlobalGoatBurnEvent__MethodInfo); DO_APP_FUNC(0x00876B60, void, PeriodicShake_Update, (PeriodicShake * __this, MethodInfo * method)); DO_APP_FUNC(0x00877180, void, PeriodicShake_OnTriggerEnter, (PeriodicShake * __this, Collider * collider, MethodInfo * method)); DO_APP_FUNC(0x00877460, void, PeriodicShake_OnTriggerExit, (PeriodicShake * __this, Collider * collider, MethodInfo * method)); @@ -14385,6 +16268,7 @@ DO_APP_FUNC(0x003AE000, void, PeriodicShake__ctor, (PeriodicShake * __this, Meth DO_APP_FUNC(0x00877730, void, PlayRandomAudioClip_Awake, (PlayRandomAudioClip * __this, MethodInfo * method)); DO_APP_FUNC(0x008778A0, void, PlayRandomAudioClip_Start, (PlayRandomAudioClip * __this, MethodInfo * method)); DO_APP_FUNC(0x00877970, void, PlayRandomAudioClip_OnGlobalGoatBurnEvent, (PlayRandomAudioClip * __this, int32_t number, BoltEntity * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1C50, PlayRandomAudioClip_OnGlobalGoatBurnEvent__MethodInfo); DO_APP_FUNC(0x00877990, void, PlayRandomAudioClip_OnDestroy, (PlayRandomAudioClip * __this, MethodInfo * method)); DO_APP_FUNC(0x00877A70, void, PlayRandomAudioClip_Play, (PlayRandomAudioClip * __this, MethodInfo * method)); DO_APP_FUNC(0x008781B0, IEnumerator *, PlayRandomAudioClip_PlayAgain, (PlayRandomAudioClip * __this, float delay, MethodInfo * method)); @@ -14397,12 +16281,14 @@ DO_APP_FUNC(0x003AE050, void, PlayRandomAudioClip_PlayAgain_d_19_System_IDisposa DO_APP_FUNC(0x00878500, bool, PlayRandomAudioClip_PlayAgain_d_19_MoveNext, (PlayRandomAudioClip_PlayAgain_d_19 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, PlayRandomAudioClip_PlayAgain_d_19_System_Collections_Generic_IEnumerator_System_Object__get_Current, (PlayRandomAudioClip_PlayAgain_d_19 * __this, MethodInfo * method)); DO_APP_FUNC(0x00878830, void, PlayRandomAudioClip_PlayAgain_d_19_System_Collections_IEnumerator_Reset, (PlayRandomAudioClip_PlayAgain_d_19 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1C30, PlayRandomAudioClip_PlayAgain_d_19_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, PlayRandomAudioClip_PlayAgain_d_19_System_Collections_IEnumerator_get_Current, (PlayRandomAudioClip_PlayAgain_d_19 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, PlayRandomAudioClip_DisableOnPlayed_d_20__ctor, (PlayRandomAudioClip_DisableOnPlayed_d_20 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, PlayRandomAudioClip_DisableOnPlayed_d_20_System_IDisposable_Dispose, (PlayRandomAudioClip_DisableOnPlayed_d_20 * __this, MethodInfo * method)); DO_APP_FUNC(0x00878880, bool, PlayRandomAudioClip_DisableOnPlayed_d_20_MoveNext, (PlayRandomAudioClip_DisableOnPlayed_d_20 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, PlayRandomAudioClip_DisableOnPlayed_d_20_System_Collections_Generic_IEnumerator_System_Object__get_Current, (PlayRandomAudioClip_DisableOnPlayed_d_20 * __this, MethodInfo * method)); DO_APP_FUNC(0x008789D0, void, PlayRandomAudioClip_DisableOnPlayed_d_20_System_Collections_IEnumerator_Reset, (PlayRandomAudioClip_DisableOnPlayed_d_20 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1C28, PlayRandomAudioClip_DisableOnPlayed_d_20_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, PlayRandomAudioClip_DisableOnPlayed_d_20_System_Collections_IEnumerator_get_Current, (PlayRandomAudioClip_DisableOnPlayed_d_20 * __this, MethodInfo * method)); DO_APP_FUNC(0x00878A20, void, RoomReverbEffect_OnTriggerEnter, (RoomReverbEffect * __this, Collider * other, MethodInfo * method)); DO_APP_FUNC(0x00878BE0, void, RoomReverbEffect_OnTriggerExit, (RoomReverbEffect * __this, Collider * other, MethodInfo * method)); @@ -14414,12 +16300,14 @@ DO_APP_FUNC(0x003AE050, void, RoomReverbEffect_FadeReverbIn_d_5_System_IDisposab DO_APP_FUNC(0x00878EE0, bool, RoomReverbEffect_FadeReverbIn_d_5_MoveNext, (RoomReverbEffect_FadeReverbIn_d_5 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, RoomReverbEffect_FadeReverbIn_d_5_System_Collections_Generic_IEnumerator_System_Object__get_Current, (RoomReverbEffect_FadeReverbIn_d_5 * __this, MethodInfo * method)); DO_APP_FUNC(0x00879140, void, RoomReverbEffect_FadeReverbIn_d_5_System_Collections_IEnumerator_Reset, (RoomReverbEffect_FadeReverbIn_d_5 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1C08, RoomReverbEffect_FadeReverbIn_d_5_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, RoomReverbEffect_FadeReverbIn_d_5_System_Collections_IEnumerator_get_Current, (RoomReverbEffect_FadeReverbIn_d_5 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, RoomReverbEffect_FadeReverbOut_d_6__ctor, (RoomReverbEffect_FadeReverbOut_d_6 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, RoomReverbEffect_FadeReverbOut_d_6_System_IDisposable_Dispose, (RoomReverbEffect_FadeReverbOut_d_6 * __this, MethodInfo * method)); DO_APP_FUNC(0x00879190, bool, RoomReverbEffect_FadeReverbOut_d_6_MoveNext, (RoomReverbEffect_FadeReverbOut_d_6 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, RoomReverbEffect_FadeReverbOut_d_6_System_Collections_Generic_IEnumerator_System_Object__get_Current, (RoomReverbEffect_FadeReverbOut_d_6 * __this, MethodInfo * method)); DO_APP_FUNC(0x008793E0, void, RoomReverbEffect_FadeReverbOut_d_6_System_Collections_IEnumerator_Reset, (RoomReverbEffect_FadeReverbOut_d_6 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1C00, RoomReverbEffect_FadeReverbOut_d_6_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, RoomReverbEffect_FadeReverbOut_d_6_System_Collections_IEnumerator_get_Current, (RoomReverbEffect_FadeReverbOut_d_6 * __this, MethodInfo * method)); DO_APP_FUNC(0x00879430, void, ThunderHouseShake_Awake, (ThunderHouseShake * __this, MethodInfo * method)); DO_APP_FUNC(0x00879520, void, ThunderHouseShake_PlayShakeSoundAndEffect, (ThunderHouseShake * __this, MethodInfo * method)); @@ -14461,6 +16349,7 @@ DO_APP_FUNC(0x0087CD50, void, CandleBehaviour_PutOut, (CandleBehaviour * __this, DO_APP_FUNC(0x0087CFE0, void, CandleBehaviour__ctor, (CandleBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CandleBehaviour_c_DisplayClass6_0__ctor, (CandleBehaviour_c_DisplayClass6_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0087D040, void, CandleBehaviour_c_DisplayClass6_0__PutOut_b__0, (CandleBehaviour_c_DisplayClass6_0 * __this, float val, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1B90, CandleBehaviour_c_DisplayClass6_0__PutOut_b__0__MethodInfo); DO_APP_FUNC(0x0087D180, void, CarryGoatController_Awake, (CarryGoatController * __this, MethodInfo * method)); DO_APP_FUNC(0x0087D220, void, CarryGoatController_EnableCarryGoat, (CarryGoatController * __this, bool enabled, MethodInfo * method)); DO_APP_FUNC(0x0087D400, IEnumerator *, CarryGoatController_Bah, (CarryGoatController * __this, float delay, MethodInfo * method)); @@ -14470,6 +16359,7 @@ DO_APP_FUNC(0x003AE050, void, CarryGoatController_Bah_d_5_System_IDisposable_Dis DO_APP_FUNC(0x0087D4B0, bool, CarryGoatController_Bah_d_5_MoveNext, (CarryGoatController_Bah_d_5 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, CarryGoatController_Bah_d_5_System_Collections_Generic_IEnumerator_System_Object__get_Current, (CarryGoatController_Bah_d_5 * __this, MethodInfo * method)); DO_APP_FUNC(0x0087D5E0, void, CarryGoatController_Bah_d_5_System_Collections_IEnumerator_Reset, (CarryGoatController_Bah_d_5 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1B68, CarryGoatController_Bah_d_5_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, CarryGoatController_Bah_d_5_System_Collections_IEnumerator_get_Current, (CarryGoatController_Bah_d_5 * __this, MethodInfo * method)); DO_APP_FUNC(0x0087D630, void, CarryObjectOcclusion_Awake, (CarryObjectOcclusion * __this, MethodInfo * method)); DO_APP_FUNC(0x0087D770, void, CarryObjectOcclusion_Update, (CarryObjectOcclusion * __this, MethodInfo * method)); @@ -14477,6 +16367,7 @@ DO_APP_FUNC(0x0087DE30, void, CarryObjectOcclusion__ctor, (CarryObjectOcclusion DO_APP_FUNC(0x0087DF30, void, CeilingLampController_Awake, (CeilingLampController * __this, MethodInfo * method)); DO_APP_FUNC(0x0087DFC0, void, CeilingLampController_Start, (CeilingLampController * __this, MethodInfo * method)); DO_APP_FUNC(0x0087E0E0, void, CeilingLampController_OnGlobalGoatBurnEvent, (CeilingLampController * __this, int32_t number, BoltEntity * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1B60, CeilingLampController_OnGlobalGoatBurnEvent__MethodInfo); DO_APP_FUNC(0x0087E2A0, void, CeilingLampController_OnDestroy, (CeilingLampController * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, CeilingLampController__ctor, (CeilingLampController * __this, MethodInfo * method)); DO_APP_FUNC(0x0087E380, void, ChangePlayerCollisions_OnTriggerEnter, (ChangePlayerCollisions * __this, Collider * other, MethodInfo * method)); @@ -14488,6 +16379,7 @@ DO_APP_FUNC(0x0087EB60, void, CharacterBehaviour_OnAbilityIndex, (CharacterBehav DO_APP_FUNC(0x0087F660, void, CharacterBehaviour_Attached, (CharacterBehaviour * __this, BoltEntity * entity, MethodInfo * method)); DO_APP_FUNC(0x0087FAB0, void, CharacterBehaviour_Update, (CharacterBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CharacterBehaviour_OnToggleVelocity, (CharacterBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1B58, CharacterBehaviour_OnToggleVelocity__MethodInfo); DO_APP_FUNC(0x0087FD60, void, CharacterBehaviour_OnDestroy, (CharacterBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, CharacterBehaviour__ctor, (CharacterBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0087FE30, bool, CharacterLoader_get_hasLoadedOutfit, (CharacterLoader * __this, MethodInfo * method)); @@ -14499,6 +16391,7 @@ DO_APP_FUNC(0x0087FED0, void, CharacterLoader_set_loadedRobe, (CharacterLoader * DO_APP_FUNC(0x0087FF30, void, CharacterLoader_Awake, (CharacterLoader * __this, MethodInfo * method)); DO_APP_FUNC(0x00880380, void, CharacterLoader_Attached, (CharacterLoader * __this, MethodInfo * method)); DO_APP_FUNC(0x00880D20, void, CharacterLoader_OnOutfit, (CharacterLoader * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1B18, CharacterLoader_OnOutfit__MethodInfo); DO_APP_FUNC(0x00881330, IEnumerator *, CharacterLoader_WaitForValidation, (CharacterLoader * __this, MethodInfo * method)); DO_APP_FUNC(0x008813D0, IEnumerator *, CharacterLoader_LoadOutfit, (CharacterLoader * __this, String * outfitName, String * robeName, String * flashlightName, MethodInfo * method)); DO_APP_FUNC(0x008815A0, IEnumerator *, CharacterLoader_LoadRobeTexture, (CharacterLoader * __this, String * robeName, MethodInfo * method)); @@ -14512,30 +16405,35 @@ DO_APP_FUNC(0x003AE050, void, CharacterLoader_WaitForValidation_d_36_System_IDis DO_APP_FUNC(0x00881CA0, bool, CharacterLoader_WaitForValidation_d_36_MoveNext, (CharacterLoader_WaitForValidation_d_36 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, CharacterLoader_WaitForValidation_d_36_System_Collections_Generic_IEnumerator_System_Object__get_Current, (CharacterLoader_WaitForValidation_d_36 * __this, MethodInfo * method)); DO_APP_FUNC(0x00882B10, void, CharacterLoader_WaitForValidation_d_36_System_Collections_IEnumerator_Reset, (CharacterLoader_WaitForValidation_d_36 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1AD0, CharacterLoader_WaitForValidation_d_36_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, CharacterLoader_WaitForValidation_d_36_System_Collections_IEnumerator_get_Current, (CharacterLoader_WaitForValidation_d_36 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, CharacterLoader_LoadOutfit_d_37__ctor, (CharacterLoader_LoadOutfit_d_37 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CharacterLoader_LoadOutfit_d_37_System_IDisposable_Dispose, (CharacterLoader_LoadOutfit_d_37 * __this, MethodInfo * method)); DO_APP_FUNC(0x00882B60, bool, CharacterLoader_LoadOutfit_d_37_MoveNext, (CharacterLoader_LoadOutfit_d_37 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, CharacterLoader_LoadOutfit_d_37_System_Collections_Generic_IEnumerator_System_Object__get_Current, (CharacterLoader_LoadOutfit_d_37 * __this, MethodInfo * method)); DO_APP_FUNC(0x008850D0, void, CharacterLoader_LoadOutfit_d_37_System_Collections_IEnumerator_Reset, (CharacterLoader_LoadOutfit_d_37 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1AB0, CharacterLoader_LoadOutfit_d_37_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, CharacterLoader_LoadOutfit_d_37_System_Collections_IEnumerator_get_Current, (CharacterLoader_LoadOutfit_d_37 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, CharacterLoader_LoadRobeTexture_d_38__ctor, (CharacterLoader_LoadRobeTexture_d_38 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CharacterLoader_LoadRobeTexture_d_38_System_IDisposable_Dispose, (CharacterLoader_LoadRobeTexture_d_38 * __this, MethodInfo * method)); DO_APP_FUNC(0x00885120, bool, CharacterLoader_LoadRobeTexture_d_38_MoveNext, (CharacterLoader_LoadRobeTexture_d_38 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, CharacterLoader_LoadRobeTexture_d_38_System_Collections_Generic_IEnumerator_System_Object__get_Current, (CharacterLoader_LoadRobeTexture_d_38 * __this, MethodInfo * method)); DO_APP_FUNC(0x008857B0, void, CharacterLoader_LoadRobeTexture_d_38_System_Collections_IEnumerator_Reset, (CharacterLoader_LoadRobeTexture_d_38 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3DF8, CharacterLoader_LoadRobeTexture_d_38_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, CharacterLoader_LoadRobeTexture_d_38_System_Collections_IEnumerator_get_Current, (CharacterLoader_LoadRobeTexture_d_38 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, CharacterLoader_LoadFlashlight_d_39__ctor, (CharacterLoader_LoadFlashlight_d_39 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CharacterLoader_LoadFlashlight_d_39_System_IDisposable_Dispose, (CharacterLoader_LoadFlashlight_d_39 * __this, MethodInfo * method)); DO_APP_FUNC(0x00885800, bool, CharacterLoader_LoadFlashlight_d_39_MoveNext, (CharacterLoader_LoadFlashlight_d_39 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, CharacterLoader_LoadFlashlight_d_39_System_Collections_Generic_IEnumerator_System_Object__get_Current, (CharacterLoader_LoadFlashlight_d_39 * __this, MethodInfo * method)); DO_APP_FUNC(0x008864B0, void, CharacterLoader_LoadFlashlight_d_39_System_Collections_IEnumerator_Reset, (CharacterLoader_LoadFlashlight_d_39 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3DF0, CharacterLoader_LoadFlashlight_d_39_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, CharacterLoader_LoadFlashlight_d_39_System_Collections_IEnumerator_get_Current, (CharacterLoader_LoadFlashlight_d_39 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, CharacterLoader_DisableUpdateWhenOffscreen_d_40__ctor, (CharacterLoader_DisableUpdateWhenOffscreen_d_40 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CharacterLoader_DisableUpdateWhenOffscreen_d_40_System_IDisposable_Dispose, (CharacterLoader_DisableUpdateWhenOffscreen_d_40 * __this, MethodInfo * method)); DO_APP_FUNC(0x00886500, bool, CharacterLoader_DisableUpdateWhenOffscreen_d_40_MoveNext, (CharacterLoader_DisableUpdateWhenOffscreen_d_40 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, CharacterLoader_DisableUpdateWhenOffscreen_d_40_System_Collections_Generic_IEnumerator_System_Object__get_Current, (CharacterLoader_DisableUpdateWhenOffscreen_d_40 * __this, MethodInfo * method)); DO_APP_FUNC(0x008866C0, void, CharacterLoader_DisableUpdateWhenOffscreen_d_40_System_Collections_IEnumerator_Reset, (CharacterLoader_DisableUpdateWhenOffscreen_d_40 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3DD8, CharacterLoader_DisableUpdateWhenOffscreen_d_40_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, CharacterLoader_DisableUpdateWhenOffscreen_d_40_System_Collections_IEnumerator_get_Current, (CharacterLoader_DisableUpdateWhenOffscreen_d_40 * __this, MethodInfo * method)); DO_APP_FUNC(0x00886710, void, ColliderEnabler_OnTriggerEnter, (ColliderEnabler * __this, Collider * other, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, ColliderEnabler__ctor, (ColliderEnabler * __this, MethodInfo * method)); @@ -14554,18 +16452,21 @@ DO_APP_FUNC(0x003AE050, void, CutsceneCharacterLoader_LoadOutfit_d_4_System_IDis DO_APP_FUNC(0x00887A30, bool, CutsceneCharacterLoader_LoadOutfit_d_4_MoveNext, (CutsceneCharacterLoader_LoadOutfit_d_4 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, CutsceneCharacterLoader_LoadOutfit_d_4_System_Collections_Generic_IEnumerator_System_Object__get_Current, (CutsceneCharacterLoader_LoadOutfit_d_4 * __this, MethodInfo * method)); DO_APP_FUNC(0x00888580, void, CutsceneCharacterLoader_LoadOutfit_d_4_System_Collections_IEnumerator_Reset, (CutsceneCharacterLoader_LoadOutfit_d_4 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3DB0, CutsceneCharacterLoader_LoadOutfit_d_4_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, CutsceneCharacterLoader_LoadOutfit_d_4_System_Collections_IEnumerator_get_Current, (CutsceneCharacterLoader_LoadOutfit_d_4 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, CutsceneCharacterLoader_LoadRobeTexture_d_5__ctor, (CutsceneCharacterLoader_LoadRobeTexture_d_5 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CutsceneCharacterLoader_LoadRobeTexture_d_5_System_IDisposable_Dispose, (CutsceneCharacterLoader_LoadRobeTexture_d_5 * __this, MethodInfo * method)); DO_APP_FUNC(0x008885D0, bool, CutsceneCharacterLoader_LoadRobeTexture_d_5_MoveNext, (CutsceneCharacterLoader_LoadRobeTexture_d_5 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, CutsceneCharacterLoader_LoadRobeTexture_d_5_System_Collections_Generic_IEnumerator_System_Object__get_Current, (CutsceneCharacterLoader_LoadRobeTexture_d_5 * __this, MethodInfo * method)); DO_APP_FUNC(0x00888B60, void, CutsceneCharacterLoader_LoadRobeTexture_d_5_System_Collections_IEnumerator_Reset, (CutsceneCharacterLoader_LoadRobeTexture_d_5 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3D98, CutsceneCharacterLoader_LoadRobeTexture_d_5_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, CutsceneCharacterLoader_LoadRobeTexture_d_5_System_Collections_IEnumerator_get_Current, (CutsceneCharacterLoader_LoadRobeTexture_d_5 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, CutsceneCharacterLoader_LoadFlashlight_d_6__ctor, (CutsceneCharacterLoader_LoadFlashlight_d_6 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CutsceneCharacterLoader_LoadFlashlight_d_6_System_IDisposable_Dispose, (CutsceneCharacterLoader_LoadFlashlight_d_6 * __this, MethodInfo * method)); DO_APP_FUNC(0x00888BB0, bool, CutsceneCharacterLoader_LoadFlashlight_d_6_MoveNext, (CutsceneCharacterLoader_LoadFlashlight_d_6 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, CutsceneCharacterLoader_LoadFlashlight_d_6_System_Collections_Generic_IEnumerator_System_Object__get_Current, (CutsceneCharacterLoader_LoadFlashlight_d_6 * __this, MethodInfo * method)); DO_APP_FUNC(0x008893D0, void, CutsceneCharacterLoader_LoadFlashlight_d_6_System_Collections_IEnumerator_Reset, (CutsceneCharacterLoader_LoadFlashlight_d_6 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3D90, CutsceneCharacterLoader_LoadFlashlight_d_6_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, CutsceneCharacterLoader_LoadFlashlight_d_6_System_Collections_IEnumerator_get_Current, (CutsceneCharacterLoader_LoadFlashlight_d_6 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AnimationEventStubber_PlayFootStep, (AnimationEventStubber * __this, int32_t footIndex, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AnimationEventStubber_PlayBoneSnap, (AnimationEventStubber * __this, MethodInfo * method)); @@ -14582,21 +16483,26 @@ DO_APP_FUNC(0x0088A2C0, void, AsylumAltarEndingController_OnDestroy, (AsylumAlta DO_APP_FUNC(0x003AE000, void, AsylumAltarEndingController__ctor, (AsylumAltarEndingController * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AsylumAltarEndingController_c_DisplayClass15_0__ctor, (AsylumAltarEndingController_c_DisplayClass15_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0088A7F0, bool, AsylumAltarEndingController_c_DisplayClass15_0__Awake_b__0, (AsylumAltarEndingController_c_DisplayClass15_0 * __this, TrackAsset * output, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3D38, AsylumAltarEndingController_c_DisplayClass15_0__Awake_b__0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, AsylumAltarEndingController_TriggerZap_d_17__ctor, (AsylumAltarEndingController_TriggerZap_d_17 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AsylumAltarEndingController_TriggerZap_d_17_System_IDisposable_Dispose, (AsylumAltarEndingController_TriggerZap_d_17 * __this, MethodInfo * method)); DO_APP_FUNC(0x0088A930, bool, AsylumAltarEndingController_TriggerZap_d_17_MoveNext, (AsylumAltarEndingController_TriggerZap_d_17 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, AsylumAltarEndingController_TriggerZap_d_17_System_Collections_Generic_IEnumerator_System_Object__get_Current, (AsylumAltarEndingController_TriggerZap_d_17 * __this, MethodInfo * method)); DO_APP_FUNC(0x0088AC60, void, AsylumAltarEndingController_TriggerZap_d_17_System_Collections_IEnumerator_Reset, (AsylumAltarEndingController_TriggerZap_d_17 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3CE0, AsylumAltarEndingController_TriggerZap_d_17_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, AsylumAltarEndingController_TriggerZap_d_17_System_Collections_IEnumerator_get_Current, (AsylumAltarEndingController_TriggerZap_d_17 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AsylumAltarEndingController_c_DisplayClass18_0__ctor, (AsylumAltarEndingController_c_DisplayClass18_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0088ACB0, bool, AsylumAltarEndingController_c_DisplayClass18_0__OnDestroy_b__0, (AsylumAltarEndingController_c_DisplayClass18_0 * __this, TrackAsset * output, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3CF0, AsylumAltarEndingController_c_DisplayClass18_0__OnDestroy_b__0__MethodInfo); DO_APP_FUNC(0x0088ADF0, void, AsylumCanteenEndingController_Awake, (AsylumCanteenEndingController * __this, MethodInfo * method)); DO_APP_FUNC(0x0088B7E0, void, AsylumCanteenEndingController_OnDestroy, (AsylumCanteenEndingController * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, AsylumCanteenEndingController__ctor, (AsylumCanteenEndingController * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AsylumCanteenEndingController_c_DisplayClass11_0__ctor, (AsylumCanteenEndingController_c_DisplayClass11_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0088BAE0, bool, AsylumCanteenEndingController_c_DisplayClass11_0__Awake_b__0, (AsylumCanteenEndingController_c_DisplayClass11_0 * __this, TrackAsset * output, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3CD0, AsylumCanteenEndingController_c_DisplayClass11_0__Awake_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, AsylumCanteenEndingController_c_DisplayClass12_0__ctor, (AsylumCanteenEndingController_c_DisplayClass12_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0088BC20, bool, AsylumCanteenEndingController_c_DisplayClass12_0__OnDestroy_b__0, (AsylumCanteenEndingController_c_DisplayClass12_0 * __this, TrackAsset * output, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3CC0, AsylumCanteenEndingController_c_DisplayClass12_0__OnDestroy_b__0__MethodInfo); DO_APP_FUNC(0x0088BD60, void, AsylumMorgueEndingController_Awake, (AsylumMorgueEndingController * __this, MethodInfo * method)); DO_APP_FUNC(0x0088C5F0, void, AsylumMorgueEndingController_Start, (AsylumMorgueEndingController * __this, MethodInfo * method)); DO_APP_FUNC(0x0088C760, IEnumerator *, AsylumMorgueEndingController_CloseMorgueLockerDoors, (AsylumMorgueEndingController * __this, MethodInfo * method)); @@ -14608,6 +16514,7 @@ DO_APP_FUNC(0x003AE050, void, AsylumMorgueEndingController_CloseMorgueLockerDoor DO_APP_FUNC(0x0088CB40, bool, AsylumMorgueEndingController_CloseMorgueLockerDoors_d_20_MoveNext, (AsylumMorgueEndingController_CloseMorgueLockerDoors_d_20 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, AsylumMorgueEndingController_CloseMorgueLockerDoors_d_20_System_Collections_Generic_IEnumerator_System_Object__get_Current, (AsylumMorgueEndingController_CloseMorgueLockerDoors_d_20 * __this, MethodInfo * method)); DO_APP_FUNC(0x0088D210, void, AsylumMorgueEndingController_CloseMorgueLockerDoors_d_20_System_Collections_IEnumerator_Reset, (AsylumMorgueEndingController_CloseMorgueLockerDoors_d_20 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3C98, AsylumMorgueEndingController_CloseMorgueLockerDoors_d_20_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, AsylumMorgueEndingController_CloseMorgueLockerDoors_d_20_System_Collections_IEnumerator_get_Current, (AsylumMorgueEndingController_CloseMorgueLockerDoors_d_20 * __this, MethodInfo * method)); DO_APP_FUNC(0x0088D260, void, AsylumWinEndingController_Awake, (AsylumWinEndingController * __this, MethodInfo * method)); DO_APP_FUNC(0x0088D5B0, void, AsylumWinEndingController_Start, (AsylumWinEndingController * __this, MethodInfo * method)); @@ -14624,20 +16531,24 @@ DO_APP_FUNC(0x003AE050, void, AsylumWinEndingController_SetHairLayer_d_14_System DO_APP_FUNC(0x0088DF20, bool, AsylumWinEndingController_SetHairLayer_d_14_MoveNext, (AsylumWinEndingController_SetHairLayer_d_14 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, AsylumWinEndingController_SetHairLayer_d_14_System_Collections_Generic_IEnumerator_System_Object__get_Current, (AsylumWinEndingController_SetHairLayer_d_14 * __this, MethodInfo * method)); DO_APP_FUNC(0x0088E170, void, AsylumWinEndingController_SetHairLayer_d_14_System_Collections_IEnumerator_Reset, (AsylumWinEndingController_SetHairLayer_d_14 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3C48, AsylumWinEndingController_SetHairLayer_d_14_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, AsylumWinEndingController_SetHairLayer_d_14_System_Collections_IEnumerator_get_Current, (AsylumWinEndingController_SetHairLayer_d_14 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AsylumWinEndingController_c_DisplayClass17_0__ctor, (AsylumWinEndingController_c_DisplayClass17_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0088E1C0, bool, AsylumWinEndingController_c_DisplayClass17_0__SpawnPlayersInternal_b__0, (AsylumWinEndingController_c_DisplayClass17_0 * __this, PlayableBinding output, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3C38, AsylumWinEndingController_c_DisplayClass17_0__SpawnPlayersInternal_b__0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, AsylumWinEndingController_SpawnPlayersInternal_d_17__ctor, (AsylumWinEndingController_SpawnPlayersInternal_d_17 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AsylumWinEndingController_SpawnPlayersInternal_d_17_System_IDisposable_Dispose, (AsylumWinEndingController_SpawnPlayersInternal_d_17 * __this, MethodInfo * method)); DO_APP_FUNC(0x0088E260, bool, AsylumWinEndingController_SpawnPlayersInternal_d_17_MoveNext, (AsylumWinEndingController_SpawnPlayersInternal_d_17 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, AsylumWinEndingController_SpawnPlayersInternal_d_17_System_Collections_Generic_IEnumerator_System_Object__get_Current, (AsylumWinEndingController_SpawnPlayersInternal_d_17 * __this, MethodInfo * method)); DO_APP_FUNC(0x0088E920, void, AsylumWinEndingController_SpawnPlayersInternal_d_17_System_Collections_IEnumerator_Reset, (AsylumWinEndingController_SpawnPlayersInternal_d_17 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3C28, AsylumWinEndingController_SpawnPlayersInternal_d_17_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, AsylumWinEndingController_SpawnPlayersInternal_d_17_System_Collections_IEnumerator_get_Current, (AsylumWinEndingController_SpawnPlayersInternal_d_17 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, AsylumWinEndingController_BurnMollyInternal_d_19__ctor, (AsylumWinEndingController_BurnMollyInternal_d_19 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AsylumWinEndingController_BurnMollyInternal_d_19_System_IDisposable_Dispose, (AsylumWinEndingController_BurnMollyInternal_d_19 * __this, MethodInfo * method)); DO_APP_FUNC(0x0088E970, bool, AsylumWinEndingController_BurnMollyInternal_d_19_MoveNext, (AsylumWinEndingController_BurnMollyInternal_d_19 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, AsylumWinEndingController_BurnMollyInternal_d_19_System_Collections_Generic_IEnumerator_System_Object__get_Current, (AsylumWinEndingController_BurnMollyInternal_d_19 * __this, MethodInfo * method)); DO_APP_FUNC(0x0088EB60, void, AsylumWinEndingController_BurnMollyInternal_d_19_System_Collections_IEnumerator_Reset, (AsylumWinEndingController_BurnMollyInternal_d_19 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3C08, AsylumWinEndingController_BurnMollyInternal_d_19_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, AsylumWinEndingController_BurnMollyInternal_d_19_System_Collections_IEnumerator_get_Current, (AsylumWinEndingController_BurnMollyInternal_d_19 * __this, MethodInfo * method)); DO_APP_FUNC(0x0088EBB0, void, AsylumWinMollyController_Awake, (AsylumWinMollyController * __this, MethodInfo * method)); DO_APP_FUNC(0x0088EC40, void, AsylumWinMollyController_OnAnimatorIK, (AsylumWinMollyController * __this, MethodInfo * method)); @@ -14663,6 +16574,7 @@ DO_APP_FUNC(0x003AE050, void, FailEnding2Controller_DisableIKTarget_d_18_System_ DO_APP_FUNC(0x00890C10, bool, FailEnding2Controller_DisableIKTarget_d_18_MoveNext, (FailEnding2Controller_DisableIKTarget_d_18 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, FailEnding2Controller_DisableIKTarget_d_18_System_Collections_Generic_IEnumerator_System_Object__get_Current, (FailEnding2Controller_DisableIKTarget_d_18 * __this, MethodInfo * method)); DO_APP_FUNC(0x00890D50, void, FailEnding2Controller_DisableIKTarget_d_18_System_Collections_IEnumerator_Reset, (FailEnding2Controller_DisableIKTarget_d_18 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3BF0, FailEnding2Controller_DisableIKTarget_d_18_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, FailEnding2Controller_DisableIKTarget_d_18_System_Collections_IEnumerator_get_Current, (FailEnding2Controller_DisableIKTarget_d_18 * __this, MethodInfo * method)); DO_APP_FUNC(0x00890DA0, void, FailEnding3Controller_Awake, (FailEnding3Controller * __this, MethodInfo * method)); DO_APP_FUNC(0x00891F20, void, FailEnding3Controller_OnEnable, (FailEnding3Controller * __this, MethodInfo * method)); @@ -14674,10 +16586,13 @@ DO_APP_FUNC(0x008929D0, void, FailEnding3Controller_OnDestroy, (FailEnding3Contr DO_APP_FUNC(0x003AE000, void, FailEnding3Controller__ctor, (FailEnding3Controller * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, FailEnding3Controller_c_DisplayClass17_0__ctor, (FailEnding3Controller_c_DisplayClass17_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00542450, int32_t, FailEnding3Controller_c_DisplayClass17_0__Awake_b__1, (FailEnding3Controller_c_DisplayClass17_0 * __this, AudioClip * scream, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3BB8, FailEnding3Controller_c_DisplayClass17_0__Awake_b__1__MethodInfo); DO_APP_FUNC(0x003AE050, void, FailEnding3Controller_c_DisplayClass17_1__ctor, (FailEnding3Controller_c_DisplayClass17_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x00892CD0, bool, FailEnding3Controller_c_DisplayClass17_1__Awake_b__0, (FailEnding3Controller_c_DisplayClass17_1 * __this, TrackAsset * output, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3BA8, FailEnding3Controller_c_DisplayClass17_1__Awake_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, FailEnding3Controller_c_DisplayClass23_0__ctor, (FailEnding3Controller_c_DisplayClass23_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00892E10, bool, FailEnding3Controller_c_DisplayClass23_0__OnDestroy_b__0, (FailEnding3Controller_c_DisplayClass23_0 * __this, TrackAsset * output, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3B88, FailEnding3Controller_c_DisplayClass23_0__OnDestroy_b__0__MethodInfo); DO_APP_FUNC(0x00892F50, void, InnCaveEndingController_Awake, (InnCaveEndingController * __this, MethodInfo * method)); DO_APP_FUNC(0x00894390, void, InnCaveEndingController_SpidersCrawlToPlayers, (InnCaveEndingController * __this, MethodInfo * method)); DO_APP_FUNC(0x00894570, void, InnCaveEndingController_AdjustEndingLightForZara, (InnCaveEndingController * __this, MethodInfo * method)); @@ -14686,10 +16601,13 @@ DO_APP_FUNC(0x00894AF0, void, InnCaveEndingController_OnDestroy, (InnCaveEndingC DO_APP_FUNC(0x003AE000, void, InnCaveEndingController__ctor, (InnCaveEndingController * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InnCaveEndingController_c_DisplayClass21_0__ctor, (InnCaveEndingController_c_DisplayClass21_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00542450, int32_t, InnCaveEndingController_c_DisplayClass21_0__Awake_b__1, (InnCaveEndingController_c_DisplayClass21_0 * __this, AudioClip * scream, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3B78, InnCaveEndingController_c_DisplayClass21_0__Awake_b__1__MethodInfo); DO_APP_FUNC(0x003AE050, void, InnCaveEndingController_c_DisplayClass21_1__ctor, (InnCaveEndingController_c_DisplayClass21_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x00894DF0, bool, InnCaveEndingController_c_DisplayClass21_1__Awake_b__0, (InnCaveEndingController_c_DisplayClass21_1 * __this, TrackAsset * output, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3B68, InnCaveEndingController_c_DisplayClass21_1__Awake_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, InnCaveEndingController_c_DisplayClass25_0__ctor, (InnCaveEndingController_c_DisplayClass25_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00894F30, bool, InnCaveEndingController_c_DisplayClass25_0__OnDestroy_b__0, (InnCaveEndingController_c_DisplayClass25_0 * __this, TrackAsset * output, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3B58, InnCaveEndingController_c_DisplayClass25_0__OnDestroy_b__0__MethodInfo); DO_APP_FUNC(0x00895070, void, InnHidingSpotEndingController_Awake, (InnHidingSpotEndingController * __this, MethodInfo * method)); DO_APP_FUNC(0x00895310, void, InnHidingSpotEndingController_OnEnable, (InnHidingSpotEndingController * __this, MethodInfo * method)); DO_APP_FUNC(0x008954F0, void, InnHidingSpotEndingController_OnDisable, (InnHidingSpotEndingController * __this, MethodInfo * method)); @@ -14709,6 +16627,7 @@ DO_APP_FUNC(0x003AE050, void, InnWinEndingController_PlayHoleDust_d_14_System_ID DO_APP_FUNC(0x00896950, bool, InnWinEndingController_PlayHoleDust_d_14_MoveNext, (InnWinEndingController_PlayHoleDust_d_14 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, InnWinEndingController_PlayHoleDust_d_14_System_Collections_Generic_IEnumerator_System_Object__get_Current, (InnWinEndingController_PlayHoleDust_d_14 * __this, MethodInfo * method)); DO_APP_FUNC(0x00896A80, void, InnWinEndingController_PlayHoleDust_d_14_System_Collections_IEnumerator_Reset, (InnWinEndingController_PlayHoleDust_d_14 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3B28, InnWinEndingController_PlayHoleDust_d_14_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, InnWinEndingController_PlayHoleDust_d_14_System_Collections_IEnumerator_get_Current, (InnWinEndingController_PlayHoleDust_d_14 * __this, MethodInfo * method)); DO_APP_FUNC(0x00896AD0, void, IntroDirectorController_Awake, (IntroDirectorController * __this, MethodInfo * method)); DO_APP_FUNC(0x00896D40, void, IntroDirectorController_Start, (IntroDirectorController * __this, MethodInfo * method)); @@ -14716,12 +16635,14 @@ DO_APP_FUNC(0x00896E80, void, IntroDirectorController_Update, (IntroDirectorCont DO_APP_FUNC(0x00897450, bool, IntroDirectorController_IsPlaying, (IntroDirectorController * __this, MethodInfo * method)); DO_APP_FUNC(0x00897460, IEnumerator *, IntroDirectorController_Stopped, (IntroDirectorController * __this, MethodInfo * method)); DO_APP_FUNC(0x00897500, void, IntroDirectorController_OnStopped, (IntroDirectorController * __this, PlayableDirector * d, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3B20, IntroDirectorController_OnStopped__MethodInfo); DO_APP_FUNC(0x003AE000, void, IntroDirectorController__ctor, (IntroDirectorController * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, IntroDirectorController_Stopped_d_13__ctor, (IntroDirectorController_Stopped_d_13 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, IntroDirectorController_Stopped_d_13_System_IDisposable_Dispose, (IntroDirectorController_Stopped_d_13 * __this, MethodInfo * method)); DO_APP_FUNC(0x00897650, bool, IntroDirectorController_Stopped_d_13_MoveNext, (IntroDirectorController_Stopped_d_13 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, IntroDirectorController_Stopped_d_13_System_Collections_Generic_IEnumerator_System_Object__get_Current, (IntroDirectorController_Stopped_d_13 * __this, MethodInfo * method)); DO_APP_FUNC(0x00897990, void, IntroDirectorController_Stopped_d_13_System_Collections_IEnumerator_Reset, (IntroDirectorController_Stopped_d_13 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3B00, IntroDirectorController_Stopped_d_13_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, IntroDirectorController_Stopped_d_13_System_Collections_IEnumerator_get_Current, (IntroDirectorController_Stopped_d_13 * __this, MethodInfo * method)); DO_APP_FUNC(0x008979E0, void, SignalEmitterWithTransformOffsets__ctor, (SignalEmitterWithTransformOffsets * __this, MethodInfo * method)); DO_APP_FUNC(0x00897A20, void, SignalEmitterWithTransformOffsetsFullRot__ctor, (SignalEmitterWithTransformOffsetsFullRot * __this, MethodInfo * method)); @@ -14733,24 +16654,28 @@ DO_APP_FUNC(0x003AE050, void, SignalReceiverWithTransformOffsets_SignalAssetEven DO_APP_FUNC(0x00897E60, void, SignalReceiverWithTransformOffsets_SignalAssetEventPair_ParameterizedEvent__ctor, (SignalReceiverWithTransformOffsets_SignalAssetEventPair_ParameterizedEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SignalReceiverWithTransformOffsets_c_DisplayClass2_0__ctor, (SignalReceiverWithTransformOffsets_c_DisplayClass2_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00897EF0, bool, SignalReceiverWithTransformOffsets_c_DisplayClass2_0__OnNotify_b__0, (SignalReceiverWithTransformOffsets_c_DisplayClass2_0 * __this, SignalReceiverWithTransformOffsets_SignalAssetEventPair * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3AB8, SignalReceiverWithTransformOffsets_c_DisplayClass2_0__OnNotify_b__0__MethodInfo); DO_APP_FUNC(0x00897F20, void, SignalReceiverWithTransformOffsetsFullRot_OnNotify, (SignalReceiverWithTransformOffsetsFullRot * __this, Playable origin, INotification * notification, Object * context, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, SignalReceiverWithTransformOffsetsFullRot__ctor, (SignalReceiverWithTransformOffsetsFullRot * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SignalReceiverWithTransformOffsetsFullRot_SignalAssetEventPair__ctor, (SignalReceiverWithTransformOffsetsFullRot_SignalAssetEventPair * __this, MethodInfo * method)); DO_APP_FUNC(0x008982C0, void, SignalReceiverWithTransformOffsetsFullRot_SignalAssetEventPair_ParameterizedEvent__ctor, (SignalReceiverWithTransformOffsetsFullRot_SignalAssetEventPair_ParameterizedEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SignalReceiverWithTransformOffsetsFullRot_c_DisplayClass2_0__ctor, (SignalReceiverWithTransformOffsetsFullRot_c_DisplayClass2_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00897EF0, bool, SignalReceiverWithTransformOffsetsFullRot_c_DisplayClass2_0__OnNotify_b__0, (SignalReceiverWithTransformOffsetsFullRot_c_DisplayClass2_0 * __this, SignalReceiverWithTransformOffsetsFullRot_SignalAssetEventPair * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3A60, SignalReceiverWithTransformOffsetsFullRot_c_DisplayClass2_0__OnNotify_b__0__MethodInfo); DO_APP_FUNC(0x00898350, void, SignalReceiverWithVector3_OnNotify, (SignalReceiverWithVector3 * __this, Playable origin, INotification * notification, Object * context, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, SignalReceiverWithVector3__ctor, (SignalReceiverWithVector3 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SignalReceiverWithVector3_SignalAssetEventPair__ctor, (SignalReceiverWithVector3_SignalAssetEventPair * __this, MethodInfo * method)); DO_APP_FUNC(0x008986C0, void, SignalReceiverWithVector3_SignalAssetEventPair_ParameterizedEvent__ctor, (SignalReceiverWithVector3_SignalAssetEventPair_ParameterizedEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SignalReceiverWithVector3_c_DisplayClass2_0__ctor, (SignalReceiverWithVector3_c_DisplayClass2_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00897EF0, bool, SignalReceiverWithVector3_c_DisplayClass2_0__OnNotify_b__0, (SignalReceiverWithVector3_c_DisplayClass2_0 * __this, SignalReceiverWithVector3_SignalAssetEventPair * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3A28, SignalReceiverWithVector3_c_DisplayClass2_0__OnNotify_b__0__MethodInfo); DO_APP_FUNC(0x00898750, void, SignalReceiverWithVector3Vector3Float_OnNotify, (SignalReceiverWithVector3Vector3Float * __this, Playable origin, INotification * notification, Object * context, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, SignalReceiverWithVector3Vector3Float__ctor, (SignalReceiverWithVector3Vector3Float * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SignalReceiverWithVector3Vector3Float_SignalAssetEventPair__ctor, (SignalReceiverWithVector3Vector3Float_SignalAssetEventPair * __this, MethodInfo * method)); DO_APP_FUNC(0x00898B00, void, SignalReceiverWithVector3Vector3Float_SignalAssetEventPair_ParameterizedEvent__ctor, (SignalReceiverWithVector3Vector3Float_SignalAssetEventPair_ParameterizedEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SignalReceiverWithVector3Vector3Float_c_DisplayClass2_0__ctor, (SignalReceiverWithVector3Vector3Float_c_DisplayClass2_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00897EF0, bool, SignalReceiverWithVector3Vector3Float_c_DisplayClass2_0__OnNotify_b__0, (SignalReceiverWithVector3Vector3Float_c_DisplayClass2_0 * __this, SignalReceiverWithVector3Vector3Float_SignalAssetEventPair * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF39D0, SignalReceiverWithVector3Vector3Float_c_DisplayClass2_0__OnNotify_b__0__MethodInfo); DO_APP_FUNC(0x00898B90, void, SlaughterhouseBoarEndingController_Awake, (SlaughterhouseBoarEndingController * __this, MethodInfo * method)); DO_APP_FUNC(0x00899920, void, SlaughterhouseBoarEndingController_LookAtNathan, (SlaughterhouseBoarEndingController * __this, MethodInfo * method)); DO_APP_FUNC(0x00899A70, void, SlaughterhouseBoarEndingController_OnDisable, (SlaughterhouseBoarEndingController * __this, MethodInfo * method)); @@ -14758,9 +16683,12 @@ DO_APP_FUNC(0x00899CA0, void, SlaughterhouseBoarEndingController_OnDestroy, (Sla DO_APP_FUNC(0x003AE000, void, SlaughterhouseBoarEndingController__ctor, (SlaughterhouseBoarEndingController * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SlaughterhouseBoarEndingController_c_DisplayClass7_0__ctor, (SlaughterhouseBoarEndingController_c_DisplayClass7_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00899FA0, bool, SlaughterhouseBoarEndingController_c_DisplayClass7_0__Awake_b__0, (SlaughterhouseBoarEndingController_c_DisplayClass7_0 * __this, PlayableBinding output, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF39B0, SlaughterhouseBoarEndingController_c_DisplayClass7_0__Awake_b__0__MethodInfo); DO_APP_FUNC(0x0089A0D0, bool, SlaughterhouseBoarEndingController_c_DisplayClass7_0__Awake_b__1, (SlaughterhouseBoarEndingController_c_DisplayClass7_0 * __this, TrackAsset * output, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF39B8, SlaughterhouseBoarEndingController_c_DisplayClass7_0__Awake_b__1__MethodInfo); DO_APP_FUNC(0x003AE050, void, SlaughterhouseBoarEndingController_c_DisplayClass10_0__ctor, (SlaughterhouseBoarEndingController_c_DisplayClass10_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0089A210, bool, SlaughterhouseBoarEndingController_c_DisplayClass10_0__OnDestroy_b__0, (SlaughterhouseBoarEndingController_c_DisplayClass10_0 * __this, TrackAsset * output, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3990, SlaughterhouseBoarEndingController_c_DisplayClass10_0__OnDestroy_b__0__MethodInfo); DO_APP_FUNC(0x0089A350, void, SlaughterhouseDunkerEndingController_Awake, (SlaughterhouseDunkerEndingController * __this, MethodInfo * method)); DO_APP_FUNC(0x0089ABD0, void, SlaughterhouseDunkerEndingController_OnDisable, (SlaughterhouseDunkerEndingController * __this, MethodInfo * method)); DO_APP_FUNC(0x0089AE00, void, SlaughterhouseDunkerEndingController_OnDestroy, (SlaughterhouseDunkerEndingController * __this, MethodInfo * method)); @@ -14768,7 +16696,9 @@ DO_APP_FUNC(0x003AE000, void, SlaughterhouseDunkerEndingController__ctor, (Slaug DO_APP_FUNC(0x0089B040, void, SlaughterhouseDunkerEndingController_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SlaughterhouseDunkerEndingController_c__ctor, (SlaughterhouseDunkerEndingController_c * __this, MethodInfo * method)); DO_APP_FUNC(0x0089B0F0, bool, SlaughterhouseDunkerEndingController_c__Awake_b__4_0, (SlaughterhouseDunkerEndingController_c * __this, TrackAsset * output, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3970, SlaughterhouseDunkerEndingController_c__Awake_b__4_0__MethodInfo); DO_APP_FUNC(0x0089B180, bool, SlaughterhouseDunkerEndingController_c__OnDestroy_b__6_0, (SlaughterhouseDunkerEndingController_c * __this, TrackAsset * output, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3958, SlaughterhouseDunkerEndingController_c__OnDestroy_b__6_0__MethodInfo); DO_APP_FUNC(0x0089B210, void, SlaughterhouseDunkerEndingNathanController_Awake, (SlaughterhouseDunkerEndingNathanController * __this, MethodInfo * method)); DO_APP_FUNC(0x0089B2A0, void, SlaughterhouseDunkerEndingNathanController_OnAnimatorIK, (SlaughterhouseDunkerEndingNathanController * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, SlaughterhouseDunkerEndingNathanController__ctor, (SlaughterhouseDunkerEndingNathanController * __this, MethodInfo * method)); @@ -14783,7 +16713,9 @@ DO_APP_FUNC(0x003AE000, void, SlaughterhouseKitchenEndingController__ctor, (Slau DO_APP_FUNC(0x0089CBD0, void, SlaughterhouseKitchenEndingController_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SlaughterhouseKitchenEndingController_c__ctor, (SlaughterhouseKitchenEndingController_c * __this, MethodInfo * method)); DO_APP_FUNC(0x0089CC80, bool, SlaughterhouseKitchenEndingController_c__Awake_b__3_0, (SlaughterhouseKitchenEndingController_c * __this, TrackAsset * output, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3930, SlaughterhouseKitchenEndingController_c__Awake_b__3_0__MethodInfo); DO_APP_FUNC(0x0089CD10, bool, SlaughterhouseKitchenEndingController_c__OnDestroy_b__5_0, (SlaughterhouseKitchenEndingController_c * __this, TrackAsset * output, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3918, SlaughterhouseKitchenEndingController_c__OnDestroy_b__5_0__MethodInfo); DO_APP_FUNC(0x0089CDA0, void, SlaughterhouseWinEndingController_Awake, (SlaughterhouseWinEndingController * __this, MethodInfo * method)); DO_APP_FUNC(0x0089D570, void, SlaughterhouseWinEndingController_FadeOutParticles, (SlaughterhouseWinEndingController * __this, MethodInfo * method)); DO_APP_FUNC(0x0089D7E0, IEnumerator *, SlaughterhouseWinEndingController_FadeOutParticlesInternal, (SlaughterhouseWinEndingController * __this, MethodInfo * method)); @@ -14793,18 +16725,23 @@ DO_APP_FUNC(0x0089DAA0, void, SlaughterhouseWinEndingController_OnDisable, (Slau DO_APP_FUNC(0x0089DCD0, void, SlaughterhouseWinEndingController_OnDestroy, (SlaughterhouseWinEndingController * __this, MethodInfo * method)); DO_APP_FUNC(0x0089DF10, void, SlaughterhouseWinEndingController__ctor, (SlaughterhouseWinEndingController * __this, MethodInfo * method)); DO_APP_FUNC(0x0089E020, void, SlaughterhouseWinEndingController__PlayHookSwing_b__15_0, (SlaughterhouseWinEndingController * __this, float val, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF38F0, SlaughterhouseWinEndingController__PlayHookSwing_b__15_0__MethodInfo); DO_APP_FUNC(0x0089E040, void, SlaughterhouseWinEndingController_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SlaughterhouseWinEndingController_c__ctor, (SlaughterhouseWinEndingController_c * __this, MethodInfo * method)); DO_APP_FUNC(0x0089E0F0, bool, SlaughterhouseWinEndingController_c__Awake_b__12_0, (SlaughterhouseWinEndingController_c * __this, TrackAsset * output, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3900, SlaughterhouseWinEndingController_c__Awake_b__12_0__MethodInfo); DO_APP_FUNC(0x0089E180, bool, SlaughterhouseWinEndingController_c__OnDestroy_b__18_0, (SlaughterhouseWinEndingController_c * __this, TrackAsset * output, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF38E8, SlaughterhouseWinEndingController_c__OnDestroy_b__18_0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, SlaughterhouseWinEndingController_FadeOutParticlesInternal_d_14__ctor, (SlaughterhouseWinEndingController_FadeOutParticlesInternal_d_14 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SlaughterhouseWinEndingController_FadeOutParticlesInternal_d_14_System_IDisposable_Dispose, (SlaughterhouseWinEndingController_FadeOutParticlesInternal_d_14 * __this, MethodInfo * method)); DO_APP_FUNC(0x0089E210, bool, SlaughterhouseWinEndingController_FadeOutParticlesInternal_d_14_MoveNext, (SlaughterhouseWinEndingController_FadeOutParticlesInternal_d_14 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SlaughterhouseWinEndingController_FadeOutParticlesInternal_d_14_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SlaughterhouseWinEndingController_FadeOutParticlesInternal_d_14 * __this, MethodInfo * method)); DO_APP_FUNC(0x0089E560, void, SlaughterhouseWinEndingController_FadeOutParticlesInternal_d_14_System_Collections_IEnumerator_Reset, (SlaughterhouseWinEndingController_FadeOutParticlesInternal_d_14 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF38C8, SlaughterhouseWinEndingController_FadeOutParticlesInternal_d_14_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SlaughterhouseWinEndingController_FadeOutParticlesInternal_d_14_System_Collections_IEnumerator_get_Current, (SlaughterhouseWinEndingController_FadeOutParticlesInternal_d_14 * __this, MethodInfo * method)); DO_APP_FUNC(0x0089E5B0, void, TownGhostEndingController_Awake, (TownGhostEndingController * __this, MethodInfo * method)); DO_APP_FUNC(0x0089F5B0, void, TownGhostEndingController_GhostArrived, (TownGhostEndingController * __this, GameObject * ghost, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF38A0, TownGhostEndingController_GhostArrived__MethodInfo); DO_APP_FUNC(0x0089F6E0, void, TownGhostEndingController_PlayPlayerBloodSplashes, (TownGhostEndingController * __this, MethodInfo * method)); DO_APP_FUNC(0x0089F810, void, TownGhostEndingController_LookAtSam, (TownGhostEndingController * __this, MethodInfo * method)); DO_APP_FUNC(0x0089F960, void, TownGhostEndingController_Update, (TownGhostEndingController * __this, MethodInfo * method)); @@ -14813,10 +16750,13 @@ DO_APP_FUNC(0x0089FA60, void, TownGhostEndingController_OnDestroy, (TownGhostEnd DO_APP_FUNC(0x003AE000, void, TownGhostEndingController__ctor, (TownGhostEndingController * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TownGhostEndingController_c_DisplayClass17_0__ctor, (TownGhostEndingController_c_DisplayClass17_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00542450, int32_t, TownGhostEndingController_c_DisplayClass17_0__Awake_b__1, (TownGhostEndingController_c_DisplayClass17_0 * __this, AudioClip * scream, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF38A8, TownGhostEndingController_c_DisplayClass17_0__Awake_b__1__MethodInfo); DO_APP_FUNC(0x003AE050, void, TownGhostEndingController_c_DisplayClass17_1__ctor, (TownGhostEndingController_c_DisplayClass17_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x0089FD60, bool, TownGhostEndingController_c_DisplayClass17_1__Awake_b__0, (TownGhostEndingController_c_DisplayClass17_1 * __this, TrackAsset * output, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3898, TownGhostEndingController_c_DisplayClass17_1__Awake_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, TownGhostEndingController_c_DisplayClass23_0__ctor, (TownGhostEndingController_c_DisplayClass23_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0089FEA0, bool, TownGhostEndingController_c_DisplayClass23_0__OnDestroy_b__0, (TownGhostEndingController_c_DisplayClass23_0 * __this, TrackAsset * output, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3878, TownGhostEndingController_c_DisplayClass23_0__OnDestroy_b__0__MethodInfo); DO_APP_FUNC(0x0089FFE0, void, TownGraveyardEndingController_Awake, (TownGraveyardEndingController * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, TownGraveyardEndingController__ctor, (TownGraveyardEndingController * __this, MethodInfo * method)); DO_APP_FUNC(0x008A0280, void, TownGraveyardEndingSamController_Awake, (TownGraveyardEndingSamController * __this, MethodInfo * method)); @@ -14832,6 +16772,7 @@ DO_APP_FUNC(0x003AE050, void, TownSaloonEndingController_Ragdoll_d_7_System_IDis DO_APP_FUNC(0x008A0BC0, bool, TownSaloonEndingController_Ragdoll_d_7_MoveNext, (TownSaloonEndingController_Ragdoll_d_7 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, TownSaloonEndingController_Ragdoll_d_7_System_Collections_Generic_IEnumerator_System_Object__get_Current, (TownSaloonEndingController_Ragdoll_d_7 * __this, MethodInfo * method)); DO_APP_FUNC(0x008A0FB0, void, TownSaloonEndingController_Ragdoll_d_7_System_Collections_IEnumerator_Reset, (TownSaloonEndingController_Ragdoll_d_7 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3850, TownSaloonEndingController_Ragdoll_d_7_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, TownSaloonEndingController_Ragdoll_d_7_System_Collections_IEnumerator_get_Current, (TownSaloonEndingController_Ragdoll_d_7 * __this, MethodInfo * method)); DO_APP_FUNC(0x008A1000, void, TownSaloonEndingSamController_Awake, (TownSaloonEndingSamController * __this, MethodInfo * method)); DO_APP_FUNC(0x008A10F0, void, TownSaloonEndingSamController_OnAnimatorIK, (TownSaloonEndingSamController * __this, MethodInfo * method)); @@ -14844,8 +16785,11 @@ DO_APP_FUNC(0x008A2CE0, void, TownWinEndingController_SetupNightmareBurningMat, DO_APP_FUNC(0x008A2F90, void, TownWinEndingController_OnDisable, (TownWinEndingController * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, TownWinEndingController__ctor, (TownWinEndingController * __this, MethodInfo * method)); DO_APP_FUNC(0x008A30F0, void, TownWinEndingController__BurnSam_b__21_0, (TownWinEndingController * __this, float value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF37E0, TownWinEndingController__BurnSam_b__21_0__MethodInfo); DO_APP_FUNC(0x008A32C0, void, TownWinEndingController__BurnSam_b__21_1, (TownWinEndingController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF37F0, TownWinEndingController__BurnSam_b__21_1__MethodInfo); DO_APP_FUNC(0x008A3400, void, TownWinEndingController__BurnSam_b__21_2, (TownWinEndingController * __this, float value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3768, TownWinEndingController__BurnSam_b__21_2__MethodInfo); DO_APP_FUNC(0x008A3540, void, WinEndingController_Awake, (WinEndingController * __this, MethodInfo * method)); DO_APP_FUNC(0x008A3DA0, void, WinEndingController_ActivateMainFire, (WinEndingController * __this, MethodInfo * method)); DO_APP_FUNC(0x008A3F10, void, WinEndingController_DeactivateMainFire, (WinEndingController * __this, MethodInfo * method)); @@ -14862,28 +16806,33 @@ DO_APP_FUNC(0x008A4CD0, void, WinEndingController__ctor, (WinEndingController * DO_APP_FUNC(0x003BCE40, void, WinEndingController_PlayerPrefab__ctor, (WinEndingController_PlayerPrefab * __this, String * name, IPlayerState * state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, WinEndingController_c_DisplayClass32_0__ctor, (WinEndingController_c_DisplayClass32_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x008A4DD0, bool, WinEndingController_c_DisplayClass32_0__SpawnAltarPlayersInternal_b__0, (WinEndingController_c_DisplayClass32_0 * __this, PlayableBinding output, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF36B8, WinEndingController_c_DisplayClass32_0__SpawnAltarPlayersInternal_b__0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, WinEndingController_SpawnAltarPlayersInternal_d_32__ctor, (WinEndingController_SpawnAltarPlayersInternal_d_32 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, WinEndingController_SpawnAltarPlayersInternal_d_32_System_IDisposable_Dispose, (WinEndingController_SpawnAltarPlayersInternal_d_32 * __this, MethodInfo * method)); DO_APP_FUNC(0x008A4E70, bool, WinEndingController_SpawnAltarPlayersInternal_d_32_MoveNext, (WinEndingController_SpawnAltarPlayersInternal_d_32 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, WinEndingController_SpawnAltarPlayersInternal_d_32_System_Collections_Generic_IEnumerator_System_Object__get_Current, (WinEndingController_SpawnAltarPlayersInternal_d_32 * __this, MethodInfo * method)); DO_APP_FUNC(0x008A56B0, void, WinEndingController_SpawnAltarPlayersInternal_d_32_System_Collections_IEnumerator_Reset, (WinEndingController_SpawnAltarPlayersInternal_d_32 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3690, WinEndingController_SpawnAltarPlayersInternal_d_32_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, WinEndingController_SpawnAltarPlayersInternal_d_32_System_Collections_IEnumerator_get_Current, (WinEndingController_SpawnAltarPlayersInternal_d_32 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, WinEndingController_BoostFlamesInternal_d_34__ctor, (WinEndingController_BoostFlamesInternal_d_34 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, WinEndingController_BoostFlamesInternal_d_34_System_IDisposable_Dispose, (WinEndingController_BoostFlamesInternal_d_34 * __this, MethodInfo * method)); DO_APP_FUNC(0x008A5700, bool, WinEndingController_BoostFlamesInternal_d_34_MoveNext, (WinEndingController_BoostFlamesInternal_d_34 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, WinEndingController_BoostFlamesInternal_d_34_System_Collections_Generic_IEnumerator_System_Object__get_Current, (WinEndingController_BoostFlamesInternal_d_34 * __this, MethodInfo * method)); DO_APP_FUNC(0x008A5C60, void, WinEndingController_BoostFlamesInternal_d_34_System_Collections_IEnumerator_Reset, (WinEndingController_BoostFlamesInternal_d_34 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3698, WinEndingController_BoostFlamesInternal_d_34_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, WinEndingController_BoostFlamesInternal_d_34_System_Collections_IEnumerator_get_Current, (WinEndingController_BoostFlamesInternal_d_34 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, WinEndingController_SlowDissolve_d_36__ctor, (WinEndingController_SlowDissolve_d_36 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, WinEndingController_SlowDissolve_d_36_System_IDisposable_Dispose, (WinEndingController_SlowDissolve_d_36 * __this, MethodInfo * method)); DO_APP_FUNC(0x008A5CB0, bool, WinEndingController_SlowDissolve_d_36_MoveNext, (WinEndingController_SlowDissolve_d_36 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, WinEndingController_SlowDissolve_d_36_System_Collections_Generic_IEnumerator_System_Object__get_Current, (WinEndingController_SlowDissolve_d_36 * __this, MethodInfo * method)); DO_APP_FUNC(0x008A63B0, void, WinEndingController_SlowDissolve_d_36_System_Collections_IEnumerator_Reset, (WinEndingController_SlowDissolve_d_36 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3688, WinEndingController_SlowDissolve_d_36_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, WinEndingController_SlowDissolve_d_36_System_Collections_IEnumerator_get_Current, (WinEndingController_SlowDissolve_d_36 * __this, MethodInfo * method)); DO_APP_FUNC(0x008A6400, void, WinLeadupMusic_Awake, (WinLeadupMusic * __this, MethodInfo * method)); DO_APP_FUNC(0x008A6630, void, WinLeadupMusic_OnTriggerEnter, (WinLeadupMusic * __this, Collider * other, MethodInfo * method)); DO_APP_FUNC(0x008A66D0, void, WinLeadupMusic_OnTriggerExit, (WinLeadupMusic * __this, Collider * other, MethodInfo * method)); DO_APP_FUNC(0x008A6740, void, WinLeadupMusic_OnGlobalGoatBurnEvent, (WinLeadupMusic * __this, int32_t numObjectsBurned, BoltEntity * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3668, WinLeadupMusic_OnGlobalGoatBurnEvent__MethodInfo); DO_APP_FUNC(0x008A68B0, IEnumerator *, WinLeadupMusic_FadeOutOnAnnaApproach, (WinLeadupMusic * __this, MethodInfo * method)); DO_APP_FUNC(0x008A6950, void, WinLeadupMusic_OnDestroy, (WinLeadupMusic * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, WinLeadupMusic__ctor, (WinLeadupMusic * __this, MethodInfo * method)); @@ -14892,6 +16841,7 @@ DO_APP_FUNC(0x003AE050, void, WinLeadupMusic_FadeOutOnAnnaApproach_d_10_System_I DO_APP_FUNC(0x008A6A30, bool, WinLeadupMusic_FadeOutOnAnnaApproach_d_10_MoveNext, (WinLeadupMusic_FadeOutOnAnnaApproach_d_10 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, WinLeadupMusic_FadeOutOnAnnaApproach_d_10_System_Collections_Generic_IEnumerator_System_Object__get_Current, (WinLeadupMusic_FadeOutOnAnnaApproach_d_10 * __this, MethodInfo * method)); DO_APP_FUNC(0x008A7070, void, WinLeadupMusic_FadeOutOnAnnaApproach_d_10_System_Collections_IEnumerator_Reset, (WinLeadupMusic_FadeOutOnAnnaApproach_d_10 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3648, WinLeadupMusic_FadeOutOnAnnaApproach_d_10_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, WinLeadupMusic_FadeOutOnAnnaApproach_d_10_System_Collections_IEnumerator_get_Current, (WinLeadupMusic_FadeOutOnAnnaApproach_d_10 * __this, MethodInfo * method)); DO_APP_FUNC(0x008A70C0, void, AprilPlayerRagdollTestController_Awake, (AprilPlayerRagdollTestController * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AprilPlayerRagdollTestController_Start, (AprilPlayerRagdollTestController * __this, MethodInfo * method)); @@ -14981,17 +16931,21 @@ DO_APP_FUNC(0x003AE000, void, DiscordManager__ctor, (DiscordManager * __this, Me DO_APP_FUNC(0x008AA240, void, DiscordManager_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, DiscordManager_c__ctor, (DiscordManager_c * __this, MethodInfo * method)); DO_APP_FUNC(0x008AA2F0, void, DiscordManager_c__UpdateActivity_b__8_0, (DiscordManager_c * __this, Result__Enum res, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF35A0, DiscordManager_c__UpdateActivity_b__8_0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, DiscordManager_DelayUpdateActivityInternal_d_10__ctor, (DiscordManager_DelayUpdateActivityInternal_d_10 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, DiscordManager_DelayUpdateActivityInternal_d_10_System_IDisposable_Dispose, (DiscordManager_DelayUpdateActivityInternal_d_10 * __this, MethodInfo * method)); DO_APP_FUNC(0x008AA400, bool, DiscordManager_DelayUpdateActivityInternal_d_10_MoveNext, (DiscordManager_DelayUpdateActivityInternal_d_10 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, DiscordManager_DelayUpdateActivityInternal_d_10_System_Collections_Generic_IEnumerator_System_Object__get_Current, (DiscordManager_DelayUpdateActivityInternal_d_10 * __this, MethodInfo * method)); DO_APP_FUNC(0x008AA5C0, void, DiscordManager_DelayUpdateActivityInternal_d_10_System_Collections_IEnumerator_Reset, (DiscordManager_DelayUpdateActivityInternal_d_10 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6498, DiscordManager_DelayUpdateActivityInternal_d_10_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, DiscordManager_DelayUpdateActivityInternal_d_10_System_Collections_IEnumerator_get_Current, (DiscordManager_DelayUpdateActivityInternal_d_10 * __this, MethodInfo * method)); DO_APP_FUNC(0x008AA610, void, DissonancePlayerTracking__ctor, (DissonancePlayerTracking * __this, MethodInfo * method)); DO_APP_FUNC(0x008AA9E0, void, DissonancePlayerTracking_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, DissonancePlayerTracking_c__ctor, (DissonancePlayerTracking_c * __this, MethodInfo * method)); DO_APP_FUNC(0x008AAA90, String *, DissonancePlayerTracking_c___ctor_b__0_0, (DissonancePlayerTracking_c * __this, IPlayerState * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6478, DissonancePlayerTracking_c___ctor_b__0_0__MethodInfo); DO_APP_FUNC(0x008AAAE0, void, DissonancePlayerTracking_c___ctor_b__0_1, (DissonancePlayerTracking_c * __this, IPlayerState * state, String * id, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6460, DissonancePlayerTracking_c___ctor_b__0_1__MethodInfo); DO_APP_FUNC(0x008AAB40, void, VoiceReverbTrigger_Awake, (VoiceReverbTrigger * __this, MethodInfo * method)); DO_APP_FUNC(0x008AB7B0, void, VoiceReverbTrigger_OnTriggerEnter, (VoiceReverbTrigger * __this, Collider * other, MethodInfo * method)); DO_APP_FUNC(0x008ABCF0, AudioReverbFilter *, VoiceReverbTrigger_GetVoiceReverbFilter, (VoiceReverbTrigger * __this, BoltEntity * entity, MethodInfo * method)); @@ -15006,10 +16960,11 @@ DO_APP_FUNC(0x003AE050, void, VoiceReverbTrigger_FadePreset_d_12_System_IDisposa DO_APP_FUNC(0x008ACF60, bool, VoiceReverbTrigger_FadePreset_d_12_MoveNext, (VoiceReverbTrigger_FadePreset_d_12 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, VoiceReverbTrigger_FadePreset_d_12_System_Collections_Generic_IEnumerator_System_Object__get_Current, (VoiceReverbTrigger_FadePreset_d_12 * __this, MethodInfo * method)); DO_APP_FUNC(0x008ADAB0, void, VoiceReverbTrigger_FadePreset_d_12_System_Collections_IEnumerator_Reset, (VoiceReverbTrigger_FadePreset_d_12 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF63C8, VoiceReverbTrigger_FadePreset_d_12_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, VoiceReverbTrigger_FadePreset_d_12_System_Collections_IEnumerator_get_Current, (VoiceReverbTrigger_FadePreset_d_12 * __this, MethodInfo * method)); DO_APP_FUNC(0x008ADB00, void, DoorGraphUpdate_Awake, (DoorGraphUpdate * __this, MethodInfo * method)); DO_APP_FUNC(0x008ADD90, void, DoorGraphUpdate_Start, (DoorGraphUpdate * __this, MethodInfo * method)); -DO_APP_FUNC(0x008AE390, void, DoorGraphUpdate_GetBoundsAndShape, (DoorGraphUpdate * __this, Collider * collider, Bounds bounds, GraphUpdateShape * shape, MethodInfo * method)); +DO_APP_FUNC(0x008AE390, void, DoorGraphUpdate_GetBoundsAndShape, (DoorGraphUpdate * __this, Collider * collider, Bounds * bounds, GraphUpdateShape * * shape, MethodInfo * method)); DO_APP_FUNC(0x008AE5B0, void, DoorGraphUpdate_DoorClosed, (DoorGraphUpdate * __this, MethodInfo * method)); DO_APP_FUNC(0x008AEC80, void, DoorGraphUpdate_DoorOpening, (DoorGraphUpdate * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, DoorGraphUpdate_DoorOpen, (DoorGraphUpdate * __this, MethodInfo * method)); @@ -15020,14 +16975,17 @@ DO_APP_FUNC(0x008B0150, GraphUpdateShape *, DoorGraphUpdate_GetGraphUpdateShape, DO_APP_FUNC(0x008B05D0, void, DoorGraphUpdate__ctor, (DoorGraphUpdate * __this, MethodInfo * method)); DO_APP_FUNC(0x008B0630, void, DoorNumberBehaviour_Attached, (DoorNumberBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x008B07E0, void, DoorNumberBehaviour_OnDoorNumber, (DoorNumberBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6388, DoorNumberBehaviour_OnDoorNumber__MethodInfo); DO_APP_FUNC(0x008B0FD0, void, DoorNumberBehaviour__ctor, (DoorNumberBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB330, AudioClipSet *, DoorStateTrigger_get_ActivateAudioClipSet, (DoorStateTrigger * __this, MethodInfo * method)); DO_APP_FUNC(0x00424C30, void, DoorStateTrigger_set_ActivateAudioClipSet, (DoorStateTrigger * __this, AudioClipSet * value, MethodInfo * method)); DO_APP_FUNC(0x008B1020, void, DoorStateTrigger_Awake, (DoorStateTrigger * __this, MethodInfo * method)); DO_APP_FUNC(0x008B1370, void, DoorStateTrigger_OnTriggerEnter, (DoorStateTrigger * __this, Collider * other, MethodInfo * method)); DO_APP_FUNC(0x008B1760, void, DoorStateTrigger_ChangeState, (DoorStateTrigger * __this, GameObject * gameObject, bool activate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6350, DoorStateTrigger_ChangeState__MethodInfo); DO_APP_FUNC(0x008B1AA0, void, DoorStateTrigger_OnTriggerExit, (DoorStateTrigger * __this, Collider * other, MethodInfo * method)); DO_APP_FUNC(0x008B20E0, void, DoorStateTrigger_OnRespawn, (DoorStateTrigger * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6320, DoorStateTrigger_OnRespawn__MethodInfo); DO_APP_FUNC(0x008B2300, void, DoorStateTrigger_SetDoorOpen, (DoorStateTrigger * __this, bool open, MethodInfo * method)); DO_APP_FUNC(0x008B2320, void, DoorStateTrigger__ctor, (DoorStateTrigger * __this, MethodInfo * method)); DO_APP_FUNC(0x008B2410, void, DropObjectAnimation_Awake, (DropObjectAnimation * __this, MethodInfo * method)); @@ -15079,15 +17037,18 @@ DO_APP_FUNC(0x008B36A0, void, ElevatorBehaviour_Awake, (ElevatorBehaviour * __th DO_APP_FUNC(0x008B37C0, void, ElevatorBehaviour_Attached, (ElevatorBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x008B3BE0, IEnumerator *, ElevatorBehaviour_GetLocalCharacterLocomotion, (ElevatorBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x008B3C80, void, ElevatorBehaviour_OnOpen, (ElevatorBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF62B0, ElevatorBehaviour_OnOpen__MethodInfo); DO_APP_FUNC(0x008B3EE0, void, ElevatorBehaviour__ctor, (ElevatorBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, ElevatorBehaviour_GetLocalCharacterLocomotion_d_9__ctor, (ElevatorBehaviour_GetLocalCharacterLocomotion_d_9 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ElevatorBehaviour_GetLocalCharacterLocomotion_d_9_System_IDisposable_Dispose, (ElevatorBehaviour_GetLocalCharacterLocomotion_d_9 * __this, MethodInfo * method)); DO_APP_FUNC(0x008B3F30, bool, ElevatorBehaviour_GetLocalCharacterLocomotion_d_9_MoveNext, (ElevatorBehaviour_GetLocalCharacterLocomotion_d_9 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, ElevatorBehaviour_GetLocalCharacterLocomotion_d_9_System_Collections_Generic_IEnumerator_System_Object__get_Current, (ElevatorBehaviour_GetLocalCharacterLocomotion_d_9 * __this, MethodInfo * method)); DO_APP_FUNC(0x008B4440, void, ElevatorBehaviour_GetLocalCharacterLocomotion_d_9_System_Collections_IEnumerator_Reset, (ElevatorBehaviour_GetLocalCharacterLocomotion_d_9 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6270, ElevatorBehaviour_GetLocalCharacterLocomotion_d_9_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, ElevatorBehaviour_GetLocalCharacterLocomotion_d_9_System_Collections_IEnumerator_get_Current, (ElevatorBehaviour_GetLocalCharacterLocomotion_d_9 * __this, MethodInfo * method)); DO_APP_FUNC(0x008B4490, void, EnableAnnaIntro_Start, (EnableAnnaIntro * __this, MethodInfo * method)); DO_APP_FUNC(0x008B4570, void, EnableAnnaIntro_OnDoorUnlocked, (EnableAnnaIntro * __this, GameObject * door, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6260, EnableAnnaIntro_OnDoorUnlocked__MethodInfo); DO_APP_FUNC(0x008B4840, void, EnableAnnaIntro_OnDestroy, (EnableAnnaIntro * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, EnableAnnaIntro__ctor, (EnableAnnaIntro * __this, MethodInfo * method)); DO_APP_FUNC(0x008B4920, void, EnableRandomChildGameObject_Start, (EnableRandomChildGameObject * __this, MethodInfo * method)); @@ -15096,24 +17057,31 @@ DO_APP_FUNC(0x003AE000, void, EnableRandomChildGameObject__ctor, (EnableRandomCh DO_APP_FUNC(0x008B4B80, void, EnemyCharacterBehaviour_Awake, (EnemyCharacterBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x008B4F60, void, EnemyCharacterBehaviour_Attached, (EnemyCharacterBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x008B53D0, void, EnemyCharacterBehaviour_OnLookAtPosition, (EnemyCharacterBehaviour * __this, Vector3 lookPos, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6248, EnemyCharacterBehaviour_OnLookAtPosition__MethodInfo); DO_APP_FUNC(0x008B5500, void, EnemyCharacterBehaviour_OnAbilityIndex, (EnemyCharacterBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6220, EnemyCharacterBehaviour_OnAbilityIndex__MethodInfo); DO_APP_FUNC(0x008B55D0, void, EnemyCharacterBehaviour_OnAbilityIntData, (EnemyCharacterBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6230, EnemyCharacterBehaviour_OnAbilityIntData__MethodInfo); DO_APP_FUNC(0x008B5BA0, void, EnemyCharacterBehaviour_OnDestroy, (EnemyCharacterBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x008B5CD0, void, EnemyCharacterBehaviour__ctor, (EnemyCharacterBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x008B5D30, void, BurnEventAnimationSpeed_Awake, (BurnEventAnimationSpeed * __this, MethodInfo * method)); DO_APP_FUNC(0x008B5E70, void, BurnEventAnimationSpeed_Start, (BurnEventAnimationSpeed * __this, MethodInfo * method)); DO_APP_FUNC(0x008B5E80, void, BurnEventAnimationSpeed_OnGlobalGoatBurnEvent, (BurnEventAnimationSpeed * __this, int32_t number, BoltEntity * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF61E8, BurnEventAnimationSpeed_OnGlobalGoatBurnEvent__MethodInfo); DO_APP_FUNC(0x008B5E90, void, BurnEventAnimationSpeed_SetSpeed, (BurnEventAnimationSpeed * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x008B61C0, void, BurnEventAnimationSpeed_OnDestroy, (BurnEventAnimationSpeed * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, BurnEventAnimationSpeed__ctor, (BurnEventAnimationSpeed * __this, MethodInfo * method)); DO_APP_FUNC(0x008B62A0, void, ClockController_Awake, (ClockController * __this, MethodInfo * method)); DO_APP_FUNC(0x008B6960, void, ClockController_Start, (ClockController * __this, MethodInfo * method)); DO_APP_FUNC(0x008B6B10, void, ClockController_OnAnnaIntroEnd, (ClockController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6190, ClockController_OnAnnaIntroEnd__MethodInfo); DO_APP_FUNC(0x008B6C70, void, ClockController_Chime, (ClockController * __this, MethodInfo * method)); DO_APP_FUNC(0x008B6EE0, IEnumerator *, ClockController_DelayedChime, (ClockController * __this, float delay, MethodInfo * method)); DO_APP_FUNC(0x008B6F90, IEnumerator *, ClockController_GoBackToTicking, (ClockController * __this, MethodInfo * method)); DO_APP_FUNC(0x008B7030, void, ClockController_OnAnnaEnrageStart, (ClockController * __this, GameObject * anna, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6188, ClockController_OnAnnaEnrageStart__MethodInfo); DO_APP_FUNC(0x008B70B0, void, ClockController_OnAnnaEnrageEnd, (ClockController * __this, GameObject * anna, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF61A0, ClockController_OnAnnaEnrageEnd__MethodInfo); DO_APP_FUNC(0x008B71D0, IEnumerator *, ClockController_EnrageEnd, (ClockController * __this, GameObject * anna, MethodInfo * method)); DO_APP_FUNC(0x008B72E0, void, ClockController_OnDestroy, (ClockController * __this, MethodInfo * method)); DO_APP_FUNC(0x008B7490, void, ClockController__ctor, (ClockController * __this, MethodInfo * method)); @@ -15122,18 +17090,21 @@ DO_APP_FUNC(0x003AE050, void, ClockController_DelayedChime_d_14_System_IDisposab DO_APP_FUNC(0x008B74F0, bool, ClockController_DelayedChime_d_14_MoveNext, (ClockController_DelayedChime_d_14 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, ClockController_DelayedChime_d_14_System_Collections_Generic_IEnumerator_System_Object__get_Current, (ClockController_DelayedChime_d_14 * __this, MethodInfo * method)); DO_APP_FUNC(0x008B7670, void, ClockController_DelayedChime_d_14_System_Collections_IEnumerator_Reset, (ClockController_DelayedChime_d_14 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6150, ClockController_DelayedChime_d_14_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, ClockController_DelayedChime_d_14_System_Collections_IEnumerator_get_Current, (ClockController_DelayedChime_d_14 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, ClockController_GoBackToTicking_d_15__ctor, (ClockController_GoBackToTicking_d_15 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ClockController_GoBackToTicking_d_15_System_IDisposable_Dispose, (ClockController_GoBackToTicking_d_15 * __this, MethodInfo * method)); DO_APP_FUNC(0x008B76C0, bool, ClockController_GoBackToTicking_d_15_MoveNext, (ClockController_GoBackToTicking_d_15 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, ClockController_GoBackToTicking_d_15_System_Collections_Generic_IEnumerator_System_Object__get_Current, (ClockController_GoBackToTicking_d_15 * __this, MethodInfo * method)); DO_APP_FUNC(0x008B78A0, void, ClockController_GoBackToTicking_d_15_System_Collections_IEnumerator_Reset, (ClockController_GoBackToTicking_d_15 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6148, ClockController_GoBackToTicking_d_15_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, ClockController_GoBackToTicking_d_15_System_Collections_IEnumerator_get_Current, (ClockController_GoBackToTicking_d_15 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, ClockController_EnrageEnd_d_18__ctor, (ClockController_EnrageEnd_d_18 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ClockController_EnrageEnd_d_18_System_IDisposable_Dispose, (ClockController_EnrageEnd_d_18 * __this, MethodInfo * method)); DO_APP_FUNC(0x008B78F0, bool, ClockController_EnrageEnd_d_18_MoveNext, (ClockController_EnrageEnd_d_18 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, ClockController_EnrageEnd_d_18_System_Collections_Generic_IEnumerator_System_Object__get_Current, (ClockController_EnrageEnd_d_18 * __this, MethodInfo * method)); DO_APP_FUNC(0x008B7DB0, void, ClockController_EnrageEnd_d_18_System_Collections_IEnumerator_Reset, (ClockController_EnrageEnd_d_18 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6138, ClockController_EnrageEnd_d_18_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, ClockController_EnrageEnd_d_18_System_Collections_IEnumerator_get_Current, (ClockController_EnrageEnd_d_18 * __this, MethodInfo * method)); DO_APP_FUNC(0x008B7E00, void, FirstPersonClothAudio_OnTriggerEnter, (FirstPersonClothAudio * __this, Collider * collider, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, FirstPersonClothAudio__ctor, (FirstPersonClothAudio * __this, MethodInfo * method)); @@ -15149,10 +17120,12 @@ DO_APP_FUNC(0x008B8F80, void, FlashlightBeamWind__ctor, (FlashlightBeamWind * __ DO_APP_FUNC(0x008B9090, void, HeightFogScaler_Awake, (HeightFogScaler * __this, MethodInfo * method)); DO_APP_FUNC(0x008B9160, void, HeightFogScaler_Start, (HeightFogScaler * __this, MethodInfo * method)); DO_APP_FUNC(0x008B91A0, void, HeightFogScaler_OnGlobalGoatBurnEvent, (HeightFogScaler * __this, int32_t number, BoltEntity * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6090, HeightFogScaler_OnGlobalGoatBurnEvent__MethodInfo); DO_APP_FUNC(0x008B94D0, void, HeightFogScaler_OnDestroy, (HeightFogScaler * __this, MethodInfo * method)); DO_APP_FUNC(0x008B95B0, void, HeightFogScaler__ctor, (HeightFogScaler * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HeightFogScaler_c_DisplayClass9_0__ctor, (HeightFogScaler_c_DisplayClass9_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x008B9620, void, HeightFogScaler_c_DisplayClass9_0__OnGlobalGoatBurnEvent_b__0, (HeightFogScaler_c_DisplayClass9_0 * __this, float val, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6088, HeightFogScaler_c_DisplayClass9_0__OnGlobalGoatBurnEvent_b__0__MethodInfo); DO_APP_FUNC(0x008B98D0, void, HeightFogTrigger_OnTriggerEnter, (HeightFogTrigger * __this, Collider * collider, MethodInfo * method)); DO_APP_FUNC(0x008B9A70, void, HeightFogTrigger_OnTriggerExit, (HeightFogTrigger * __this, Collider * collider, MethodInfo * method)); DO_APP_FUNC(0x005F7520, bool, HeightFogTrigger_IsInsideTrigger, (HeightFogTrigger * __this, MethodInfo * method)); @@ -15167,16 +17140,19 @@ DO_APP_FUNC(0x003AE050, void, LowerFog_FadeInFog_d_6_System_IDisposable_Dispose, DO_APP_FUNC(0x008BA310, bool, LowerFog_FadeInFog_d_6_MoveNext, (LowerFog_FadeInFog_d_6 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, LowerFog_FadeInFog_d_6_System_Collections_Generic_IEnumerator_System_Object__get_Current, (LowerFog_FadeInFog_d_6 * __this, MethodInfo * method)); DO_APP_FUNC(0x008BA550, void, LowerFog_FadeInFog_d_6_System_Collections_IEnumerator_Reset, (LowerFog_FadeInFog_d_6 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6048, LowerFog_FadeInFog_d_6_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, LowerFog_FadeInFog_d_6_System_Collections_IEnumerator_get_Current, (LowerFog_FadeInFog_d_6 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, LowerFog_FadeOutFog_d_7__ctor, (LowerFog_FadeOutFog_d_7 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, LowerFog_FadeOutFog_d_7_System_IDisposable_Dispose, (LowerFog_FadeOutFog_d_7 * __this, MethodInfo * method)); DO_APP_FUNC(0x008BA5A0, bool, LowerFog_FadeOutFog_d_7_MoveNext, (LowerFog_FadeOutFog_d_7 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, LowerFog_FadeOutFog_d_7_System_Collections_Generic_IEnumerator_System_Object__get_Current, (LowerFog_FadeOutFog_d_7 * __this, MethodInfo * method)); DO_APP_FUNC(0x008BA7F0, void, LowerFog_FadeOutFog_d_7_System_Collections_IEnumerator_Reset, (LowerFog_FadeOutFog_d_7 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6040, LowerFog_FadeOutFog_d_7_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, LowerFog_FadeOutFog_d_7_System_Collections_IEnumerator_get_Current, (LowerFog_FadeOutFog_d_7 * __this, MethodInfo * method)); DO_APP_FUNC(0x008BA840, void, MoveClothInWind_Awake, (MoveClothInWind * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, MoveClothInWind_Start, (MoveClothInWind * __this, MethodInfo * method)); DO_APP_FUNC(0x008BAB60, void, MoveClothInWind_OnGlobalGoatBurnEvent, (MoveClothInWind * __this, int32_t number, BoltEntity * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6018, MoveClothInWind_OnGlobalGoatBurnEvent__MethodInfo); DO_APP_FUNC(0x008BACB0, IEnumerator *, MoveClothInWind_SetClothExternalAcceleration, (MoveClothInWind * __this, MethodInfo * method)); DO_APP_FUNC(0x008BAD50, void, MoveClothInWind_OnDestroy, (MoveClothInWind * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, MoveClothInWind__ctor, (MoveClothInWind * __this, MethodInfo * method)); @@ -15185,16 +17161,19 @@ DO_APP_FUNC(0x003AE050, void, MoveClothInWind_SetClothExternalAcceleration_d_11_ DO_APP_FUNC(0x008BAE30, bool, MoveClothInWind_SetClothExternalAcceleration_d_11_MoveNext, (MoveClothInWind_SetClothExternalAcceleration_d_11 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, MoveClothInWind_SetClothExternalAcceleration_d_11_System_Collections_Generic_IEnumerator_System_Object__get_Current, (MoveClothInWind_SetClothExternalAcceleration_d_11 * __this, MethodInfo * method)); DO_APP_FUNC(0x008BB070, void, MoveClothInWind_SetClothExternalAcceleration_d_11_System_Collections_IEnumerator_Reset, (MoveClothInWind_SetClothExternalAcceleration_d_11 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5FD8, MoveClothInWind_SetClothExternalAcceleration_d_11_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, MoveClothInWind_SetClothExternalAcceleration_d_11_System_Collections_IEnumerator_get_Current, (MoveClothInWind_SetClothExternalAcceleration_d_11 * __this, MethodInfo * method)); DO_APP_FUNC(0x008BB0C0, void, NightmareLightData__ctor, (NightmareLightData * __this, MethodInfo * method)); DO_APP_FUNC(0x008BB0D0, void, NightmareLight_Awake, (NightmareLight * __this, MethodInfo * method)); DO_APP_FUNC(0x008BB1A0, void, NightmareLight_OnGameMode, (NightmareLight * __this, DevourGameMode__Enum mode, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5FD0, NightmareLight_OnGameMode__MethodInfo); DO_APP_FUNC(0x008BB1B0, void, NightmareLight_SetActive, (NightmareLight * __this, MethodInfo * method)); DO_APP_FUNC(0x008BB840, void, NightmareLight_OnDestroy, (NightmareLight * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, NightmareLight__ctor, (NightmareLight * __this, MethodInfo * method)); DO_APP_FUNC(0x008BB920, void, NightmareStyling_Awake, (NightmareStyling * __this, MethodInfo * method)); DO_APP_FUNC(0x008BC280, IEnumerator *, NightmareStyling_StartBloodDrip, (NightmareStyling * __this, ParticleSystem * bloodDrip, float delay, MethodInfo * method)); DO_APP_FUNC(0x008BC330, void, NightmareStyling_OnAnnaIntroEnd, (NightmareStyling * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5F58, NightmareStyling_OnAnnaIntroEnd__MethodInfo); DO_APP_FUNC(0x008BC390, void, NightmareStyling_OnDestroy, (NightmareStyling * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, NightmareStyling__ctor, (NightmareStyling * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, NightmareStyling_StartBloodDrip_d_6__ctor, (NightmareStyling_StartBloodDrip_d_6 * __this, int32_t __1__state, MethodInfo * method)); @@ -15202,6 +17181,7 @@ DO_APP_FUNC(0x003AE050, void, NightmareStyling_StartBloodDrip_d_6_System_IDispos DO_APP_FUNC(0x008BC5D0, bool, NightmareStyling_StartBloodDrip_d_6_MoveNext, (NightmareStyling_StartBloodDrip_d_6 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, NightmareStyling_StartBloodDrip_d_6_System_Collections_Generic_IEnumerator_System_Object__get_Current, (NightmareStyling_StartBloodDrip_d_6 * __this, MethodInfo * method)); DO_APP_FUNC(0x008BC700, void, NightmareStyling_StartBloodDrip_d_6_System_Collections_IEnumerator_Reset, (NightmareStyling_StartBloodDrip_d_6 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5F40, NightmareStyling_StartBloodDrip_d_6_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, NightmareStyling_StartBloodDrip_d_6_System_Collections_IEnumerator_get_Current, (NightmareStyling_StartBloodDrip_d_6 * __this, MethodInfo * method)); DO_APP_FUNC(0x008BC750, void, ObjectShaker_Awake, (ObjectShaker * __this, MethodInfo * method)); DO_APP_FUNC(0x008BC810, void, ObjectShaker_Update, (ObjectShaker * __this, MethodInfo * method)); @@ -15215,6 +17195,7 @@ DO_APP_FUNC(0x003AE050, void, ObjectShaker_SetPropRigidbodiesKinematicAfterSecon DO_APP_FUNC(0x008BE200, bool, ObjectShaker_SetPropRigidbodiesKinematicAfterSeconds_d_23_MoveNext, (ObjectShaker_SetPropRigidbodiesKinematicAfterSeconds_d_23 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, ObjectShaker_SetPropRigidbodiesKinematicAfterSeconds_d_23_System_Collections_Generic_IEnumerator_System_Object__get_Current, (ObjectShaker_SetPropRigidbodiesKinematicAfterSeconds_d_23 * __this, MethodInfo * method)); DO_APP_FUNC(0x008BE520, void, ObjectShaker_SetPropRigidbodiesKinematicAfterSeconds_d_23_System_Collections_IEnumerator_Reset, (ObjectShaker_SetPropRigidbodiesKinematicAfterSeconds_d_23 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5E40, ObjectShaker_SetPropRigidbodiesKinematicAfterSeconds_d_23_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, ObjectShaker_SetPropRigidbodiesKinematicAfterSeconds_d_23_System_Collections_IEnumerator_get_Current, (ObjectShaker_SetPropRigidbodiesKinematicAfterSeconds_d_23 * __this, MethodInfo * method)); DO_APP_FUNC(0x008BE570, void, PlayerOnTopOfObjectsTrigger_OnTriggerEnter, (PlayerOnTopOfObjectsTrigger * __this, Collider * other, MethodInfo * method)); DO_APP_FUNC(0x008BE750, void, PlayerOnTopOfObjectsTrigger_OnTriggerExit, (PlayerOnTopOfObjectsTrigger * __this, Collider * other, MethodInfo * method)); @@ -15232,6 +17213,7 @@ DO_APP_FUNC(0x003AE050, void, Silhouette_FadeOutSprite_d_5_System_IDisposable_Di DO_APP_FUNC(0x008BF720, bool, Silhouette_FadeOutSprite_d_5_MoveNext, (Silhouette_FadeOutSprite_d_5 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, Silhouette_FadeOutSprite_d_5_System_Collections_Generic_IEnumerator_System_Object__get_Current, (Silhouette_FadeOutSprite_d_5 * __this, MethodInfo * method)); DO_APP_FUNC(0x008BF9E0, void, Silhouette_FadeOutSprite_d_5_System_Collections_IEnumerator_Reset, (Silhouette_FadeOutSprite_d_5 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5E20, Silhouette_FadeOutSprite_d_5_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Silhouette_FadeOutSprite_d_5_System_Collections_IEnumerator_get_Current, (Silhouette_FadeOutSprite_d_5 * __this, MethodInfo * method)); DO_APP_FUNC(0x008BFA30, void, ToggleDynamicBoneWeather_Awake, (ToggleDynamicBoneWeather * __this, MethodInfo * method)); DO_APP_FUNC(0x008BFC20, void, ToggleDynamicBoneWeather_OnTriggerEnter, (ToggleDynamicBoneWeather * __this, Collider * other, MethodInfo * method)); @@ -15250,10 +17232,12 @@ DO_APP_FUNC(0x008C11A0, void, ToggleLocalSplashesOnPlayer_SetLocalSplashes, (Tog DO_APP_FUNC(0x003AE000, void, ToggleLocalSplashesOnPlayer__ctor, (ToggleLocalSplashesOnPlayer * __this, MethodInfo * method)); DO_APP_FUNC(0x008C1330, void, TogglePorchRain_Awake, (TogglePorchRain * __this, MethodInfo * method)); DO_APP_FUNC(0x008C18C0, void, TogglePorchRain_OnGameMode, (TogglePorchRain * __this, DevourGameMode__Enum mode, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5DE0, TogglePorchRain_OnGameMode__MethodInfo); DO_APP_FUNC(0x008C18D0, void, TogglePorchRain_OnTriggerEnter, (TogglePorchRain * __this, Collider * other, MethodInfo * method)); DO_APP_FUNC(0x008C1A70, void, TogglePorchRain_OnTriggerExit, (TogglePorchRain * __this, Collider * other, MethodInfo * method)); DO_APP_FUNC(0x008C1C20, void, TogglePorchRain_SetPorchRain, (TogglePorchRain * __this, Collider * other, bool activate, MethodInfo * method)); DO_APP_FUNC(0x008C24A0, void, TogglePorchRain_OnGlobalGoatBurnEvent, (TogglePorchRain * __this, int32_t number, BoltEntity * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5DE8, TogglePorchRain_OnGlobalGoatBurnEvent__MethodInfo); DO_APP_FUNC(0x008C29B0, void, TogglePorchRain_IncreaseHeavyRain, (TogglePorchRain * __this, MethodInfo * method)); DO_APP_FUNC(0x008C2E60, void, TogglePorchRain_OnDestroy, (TogglePorchRain * __this, MethodInfo * method)); DO_APP_FUNC(0x008C2FE0, void, TogglePorchRain__ctor, (TogglePorchRain * __this, MethodInfo * method)); @@ -15264,6 +17248,7 @@ DO_APP_FUNC(0x008C34E0, void, TVJumpScare_Awake, (TVJumpScare * __this, MethodIn DO_APP_FUNC(0x008C3660, void, TVJumpScare_Attached, (TVJumpScare * __this, MethodInfo * method)); DO_APP_FUNC(0x008C3780, void, TVJumpScare_OnTriggerEnter, (TVJumpScare * __this, Collider * other, MethodInfo * method)); DO_APP_FUNC(0x008C3A60, void, TVJumpScare_OnTriggered, (TVJumpScare * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5D90, TVJumpScare_OnTriggered__MethodInfo); DO_APP_FUNC(0x008C3B10, IEnumerator *, TVJumpScare_JumpScare, (TVJumpScare * __this, MethodInfo * method)); DO_APP_FUNC(0x008C3BB0, void, TVJumpScare__ctor, (TVJumpScare * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, TVJumpScare_JumpScare_d_6__ctor, (TVJumpScare_JumpScare_d_6 * __this, int32_t __1__state, MethodInfo * method)); @@ -15271,13 +17256,16 @@ DO_APP_FUNC(0x003AE050, void, TVJumpScare_JumpScare_d_6_System_IDisposable_Dispo DO_APP_FUNC(0x008C3C00, bool, TVJumpScare_JumpScare_d_6_MoveNext, (TVJumpScare_JumpScare_d_6 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, TVJumpScare_JumpScare_d_6_System_Collections_Generic_IEnumerator_System_Object__get_Current, (TVJumpScare_JumpScare_d_6 * __this, MethodInfo * method)); DO_APP_FUNC(0x008C4040, void, TVJumpScare_JumpScare_d_6_System_Collections_IEnumerator_Reset, (TVJumpScare_JumpScare_d_6 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5D58, TVJumpScare_JumpScare_d_6_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, TVJumpScare_JumpScare_d_6_System_Collections_IEnumerator_get_Current, (TVJumpScare_JumpScare_d_6 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, Vent__ctor, (Vent * __this, MethodInfo * method)); DO_APP_FUNC(0x008C4090, void, WaterDrip_OnParticleCollision, (WaterDrip * __this, GameObject * other, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, WaterDrip__ctor, (WaterDrip * __this, MethodInfo * method)); DO_APP_FUNC(0x008C40F0, void, WeatherParticlesController_Awake, (WeatherParticlesController * __this, MethodInfo * method)); DO_APP_FUNC(0x008C4520, void, WeatherParticlesController_OnGameMode, (WeatherParticlesController * __this, DevourGameMode__Enum mode, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5D40, WeatherParticlesController_OnGameMode__MethodInfo); DO_APP_FUNC(0x008C4560, void, WeatherParticlesController_OnGlobalGoatBurnEvent, (WeatherParticlesController * __this, int32_t number, BoltEntity * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5D48, WeatherParticlesController_OnGlobalGoatBurnEvent__MethodInfo); DO_APP_FUNC(0x008C45C0, void, WeatherParticlesController_StartLightWeather, (WeatherParticlesController * __this, MethodInfo * method)); DO_APP_FUNC(0x008C4700, void, WeatherParticlesController_StartHeavyWeather, (WeatherParticlesController * __this, MethodInfo * method)); DO_APP_FUNC(0x008C4840, void, WeatherParticlesController_StartThunderWeather, (WeatherParticlesController * __this, MethodInfo * method)); @@ -15287,11 +17275,13 @@ DO_APP_FUNC(0x008C4B00, void, FireTrapBehaviour_Awake, (FireTrapBehaviour * __th DO_APP_FUNC(0x008C4B90, void, FireTrapBehaviour_Start, (FireTrapBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x008C4C60, void, FireTrapBehaviour_Attached, (FireTrapBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x008C4DE0, void, FireTrapBehaviour_OnOn, (FireTrapBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5D28, FireTrapBehaviour_OnOn__MethodInfo); DO_APP_FUNC(0x008C50D0, void, FireTrapBehaviour_SetState, (FireTrapBehaviour * __this, String * boolName, bool boolState, MethodInfo * method)); DO_APP_FUNC(0x008C5150, void, FireTrapBehaviour_FireTrapUsed, (FireTrapBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x008C5200, IEnumerator *, FireTrapBehaviour_CloseTrap, (FireTrapBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x008C52A0, IEnumerator *, FireTrapBehaviour_FadeOutLight, (FireTrapBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x008C5340, void, FireTrapBehaviour_OnResetGame, (FireTrapBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5D30, FireTrapBehaviour_OnResetGame__MethodInfo); DO_APP_FUNC(0x008C5400, void, FireTrapBehaviour_OnDestroy, (FireTrapBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x008C54D0, void, FireTrapBehaviour__ctor, (FireTrapBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, FireTrapBehaviour_CloseTrap_d_13__ctor, (FireTrapBehaviour_CloseTrap_d_13 * __this, int32_t __1__state, MethodInfo * method)); @@ -15299,16 +17289,19 @@ DO_APP_FUNC(0x003AE050, void, FireTrapBehaviour_CloseTrap_d_13_System_IDisposabl DO_APP_FUNC(0x008C5520, bool, FireTrapBehaviour_CloseTrap_d_13_MoveNext, (FireTrapBehaviour_CloseTrap_d_13 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, FireTrapBehaviour_CloseTrap_d_13_System_Collections_Generic_IEnumerator_System_Object__get_Current, (FireTrapBehaviour_CloseTrap_d_13 * __this, MethodInfo * method)); DO_APP_FUNC(0x008C5770, void, FireTrapBehaviour_CloseTrap_d_13_System_Collections_IEnumerator_Reset, (FireTrapBehaviour_CloseTrap_d_13 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5CB8, FireTrapBehaviour_CloseTrap_d_13_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, FireTrapBehaviour_CloseTrap_d_13_System_Collections_IEnumerator_get_Current, (FireTrapBehaviour_CloseTrap_d_13 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, FireTrapBehaviour_FadeOutLight_d_14__ctor, (FireTrapBehaviour_FadeOutLight_d_14 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, FireTrapBehaviour_FadeOutLight_d_14_System_IDisposable_Dispose, (FireTrapBehaviour_FadeOutLight_d_14 * __this, MethodInfo * method)); DO_APP_FUNC(0x008C57C0, bool, FireTrapBehaviour_FadeOutLight_d_14_MoveNext, (FireTrapBehaviour_FadeOutLight_d_14 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, FireTrapBehaviour_FadeOutLight_d_14_System_Collections_Generic_IEnumerator_System_Object__get_Current, (FireTrapBehaviour_FadeOutLight_d_14 * __this, MethodInfo * method)); DO_APP_FUNC(0x008C5960, void, FireTrapBehaviour_FadeOutLight_d_14_System_Collections_IEnumerator_Reset, (FireTrapBehaviour_FadeOutLight_d_14 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5CC0, FireTrapBehaviour_FadeOutLight_d_14_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, FireTrapBehaviour_FadeOutLight_d_14_System_Collections_IEnumerator_get_Current, (FireTrapBehaviour_FadeOutLight_d_14 * __this, MethodInfo * method)); DO_APP_FUNC(0x008C59B0, void, FirstAidOutline_Awake, (FirstAidOutline * __this, MethodInfo * method)); DO_APP_FUNC(0x008C5CF0, void, FirstAidOutline_Start, (FirstAidOutline * __this, MethodInfo * method)); DO_APP_FUNC(0x008C5F60, void, FirstAidOutline_OnAttachCharacter, (FirstAidOutline * __this, GameObject * character, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5C98, FirstAidOutline_OnAttachCharacter__MethodInfo); DO_APP_FUNC(0x008C6070, void, FirstAidOutline_SetCrawlOutline, (FirstAidOutline * __this, MethodInfo * method)); DO_APP_FUNC(0x008C6220, void, FirstAidOutline_SetNormalOutline, (FirstAidOutline * __this, MethodInfo * method)); DO_APP_FUNC(0x008C63F0, void, FirstAidOutline_OnDestroy, (FirstAidOutline * __this, MethodInfo * method)); @@ -15342,7 +17335,9 @@ DO_APP_FUNC(0x008CBF80, void, GameUI_ControllerReselect, (GameUI * __this, Metho DO_APP_FUNC(0x008CC0C0, IEnumerator *, GameUI_ControllerReselectDelayed, (GameUI * __this, MethodInfo * method)); DO_APP_FUNC(0x008CC160, void, GameUI_ActivateDissonance, (GameUI * __this, MethodInfo * method)); DO_APP_FUNC(0x008CC670, void, GameUI_OnPlayerJoinedSession, (GameUI * __this, VoicePlayerState * voicePlayerState, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5B90, GameUI_OnPlayerJoinedSession__MethodInfo); DO_APP_FUNC(0x008CCC30, void, GameUI_OnGlobalGoatBurnEvent, (GameUI * __this, int32_t numObjectsBurned, BoltEntity * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF57A8, GameUI_OnGlobalGoatBurnEvent__MethodInfo); DO_APP_FUNC(0x008CCDC0, IEnumerator *, GameUI_ShowGoatCount, (GameUI * __this, float fadeInOutDuration, float delay, float duration, MethodInfo * method)); DO_APP_FUNC(0x008CCEA0, void, GameUI_CloseMenu, (GameUI * __this, bool enableGameplayInput, MethodInfo * method)); DO_APP_FUNC(0x008CD880, void, GameUI_ShowMouseCursor, (GameUI * __this, MethodInfo * method)); @@ -15361,24 +17356,35 @@ DO_APP_FUNC(0x008CEF50, void, GameUI_ShowHeldItem, (GameUI * __this, String * it DO_APP_FUNC(0x008CFF40, void, GameUI_HideHeldItem, (GameUI * __this, MethodInfo * method)); DO_APP_FUNC(0x008D0250, void, GameUI_SceneLoadLocalDone, (GameUI * __this, String * scene, IProtocolToken * token, MethodInfo * method)); DO_APP_FUNC(0x008D0310, void, GameUI_OnMenuResumeButtonClick, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF82A8, GameUI_OnMenuResumeButtonClick__MethodInfo); DO_APP_FUNC(0x008D0450, void, GameUI_OnMenuQuitButtonClick, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF82B8, GameUI_OnMenuQuitButtonClick__MethodInfo); DO_APP_FUNC(0x008D0620, void, GameUI_OnMenuQuitToLobbyButtonClick, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF82C0, GameUI_OnMenuQuitToLobbyButtonClick__MethodInfo); DO_APP_FUNC(0x008D07F0, void, GameUI_OnMenuSkipEndingVoteButtonClick, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF82B0, GameUI_OnMenuSkipEndingVoteButtonClick__MethodInfo); DO_APP_FUNC(0x008D0860, void, GameUI_OnExitConfirmationExitButtonClick, (GameUI * __this, bool exitToLobby, MethodInfo * method)); DO_APP_FUNC(0x008D0B10, void, GameUI_ExitGame, (GameUI * __this, bool shouldReturnToMenu, bool exitToLobby, MethodInfo * method)); DO_APP_FUNC(0x008D0FF0, void, GameUI_OnExitConfirmationCancelButtonClick, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8310, GameUI_OnExitConfirmationCancelButtonClick__MethodInfo); DO_APP_FUNC(0x008D11C0, void, GameUI_OnExitToLobbyConfirmationCancelButtonClick, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8318, GameUI_OnExitToLobbyConfirmationCancelButtonClick__MethodInfo); DO_APP_FUNC(0x008D1440, void, GameUI_BoltShutdownBegin, (GameUI * __this, AddCallback * registerDoneCallback, UdpConnectionDisconnectReason__Enum disconnectReason, MethodInfo * method)); DO_APP_FUNC(0x008D1620, void, GameUI_OnShutdownDone, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5AA8, GameUI_OnShutdownDone__MethodInfo); DO_APP_FUNC(0x008D1AC0, void, GameUI_Disconnected, (GameUI * __this, BoltConnection * connection, MethodInfo * method)); DO_APP_FUNC(0x008D1F70, void, GameUI_ShowDisconnectedModal, (GameUI * __this, MethodInfo * method)); DO_APP_FUNC(0x008D26B0, void, GameUI_OnEvent, (GameUI * __this, SystemChatMessageEvent * evnt, MethodInfo * method)); DO_APP_FUNC(0x008D27E0, void, GameUI_ProcessSystemMessage, (GameUI * __this, String * key, String * arguments, MethodInfo * method)); DO_APP_FUNC(0x008D3310, void, GameUI_OnDisconnectModalButtonClick, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8328, GameUI_OnDisconnectModalButtonClick__MethodInfo); DO_APP_FUNC(0x008D34B0, void, GameUI_LoadMenuScene, (GameUI * __this, MethodInfo * method)); DO_APP_FUNC(0x008D3510, void, GameUI_OnMessageModalOK, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8290, GameUI_OnMessageModalOK__MethodInfo); DO_APP_FUNC(0x008D35F0, void, GameUI_OnConfirmModalNoClick, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8320, GameUI_OnConfirmModalNoClick__MethodInfo); DO_APP_FUNC(0x008D36B0, void, GameUI_OnMenuOptionsClick, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF82D0, GameUI_OnMenuOptionsClick__MethodInfo); DO_APP_FUNC(0x008D3890, void, GameUI_AddPlayerToMenu, (GameUI * __this, NolanBehaviour * behaviour, MethodInfo * method)); DO_APP_FUNC(0x008D4860, void, GameUI_SetPerkForPlayerItem, (GameUI * __this, PlayerMenuItem * playerMenuItem, NolanBehaviour * behaviour, int32_t group, MethodInfo * method)); DO_APP_FUNC(0x008D4C40, GameObject *, GameUI_GetPlayerFromMenu, (GameUI * __this, NolanBehaviour * behaviour, MethodInfo * method)); @@ -15391,22 +17397,37 @@ DO_APP_FUNC(0x008D5B90, void, GameUI_OnEvent_2, (GameUI * __this, VoteEvent * vo DO_APP_FUNC(0x008D5CF0, void, GameUI_OnEvent_3, (GameUI * __this, VoteCompletedEvent * voteCompletedEvent, MethodInfo * method)); DO_APP_FUNC(0x008D5D10, void, GameUI_PlayersMenuToggleKickButtons, (GameUI * __this, bool interactable, MethodInfo * method)); DO_APP_FUNC(0x008D5F30, void, GameUI_OnKeyBindingsButtonClick, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF82D8, GameUI_OnKeyBindingsButtonClick__MethodInfo); DO_APP_FUNC(0x008D6170, void, GameUI_OnOptionsMenuBackClick, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8298, GameUI_OnOptionsMenuBackClick__MethodInfo); DO_APP_FUNC(0x008D6340, void, GameUI_OnGraphicsSettingsBackClick, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF82F0, GameUI_OnGraphicsSettingsBackClick__MethodInfo); DO_APP_FUNC(0x008D6520, void, GameUI_OnOptionsMenuGraphicsSettingsClick, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8278, GameUI_OnOptionsMenuGraphicsSettingsClick__MethodInfo); DO_APP_FUNC(0x008D67A0, void, GameUI_OnOptionsMenuLanguageClick, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8288, GameUI_OnOptionsMenuLanguageClick__MethodInfo); DO_APP_FUNC(0x008D6980, void, GameUI_OnLanguageSelected, (GameUI * __this, int32_t languageID, MethodInfo * method)); DO_APP_FUNC(0x008D6A60, void, GameUI_OnLanguageBackClick, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF82C8, GameUI_OnLanguageBackClick__MethodInfo); DO_APP_FUNC(0x008D6C40, void, GameUI_OnKeyBindingsBackButtonClick, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF82F8, GameUI_OnKeyBindingsBackButtonClick__MethodInfo); DO_APP_FUNC(0x008D6ED0, void, GameUI_OnKeyBindingsResetButtonClick, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF82E0, GameUI_OnKeyBindingsResetButtonClick__MethodInfo); DO_APP_FUNC(0x008D7030, void, GameUI_OnKeyBindingsResetYesClick, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5920, GameUI_OnKeyBindingsResetYesClick__MethodInfo); DO_APP_FUNC(0x008D7150, void, GameUI_OnGameplayClick, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8308, GameUI_OnGameplayClick__MethodInfo); DO_APP_FUNC(0x008D7330, void, GameUI_OnGameplayBackClick, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8300, GameUI_OnGameplayBackClick__MethodInfo); DO_APP_FUNC(0x008D7510, void, GameUI_OnAudioSettingsClick, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8340, GameUI_OnAudioSettingsClick__MethodInfo); DO_APP_FUNC(0x008D7770, void, GameUI_OnAudioSettingsBackClick, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8338, GameUI_OnAudioSettingsBackClick__MethodInfo); DO_APP_FUNC(0x008D7950, IEnumerator *, GameUI_OnApplicationFocus, (GameUI * __this, bool hasFocus, MethodInfo * method)); DO_APP_FUNC(0x008D7A10, void, GameUI_OnSensitivitySliderChanged, (GameUI * __this, float value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8270, GameUI_OnSensitivitySliderChanged__MethodInfo); DO_APP_FUNC(0x008D7B60, void, GameUI_OnSensitivityInputEndEdit, (GameUI * __this, String * input, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8268, GameUI_OnSensitivityInputEndEdit__MethodInfo); DO_APP_FUNC(0x008D7C80, void, GameUI_DestroyDissonance, (GameUI * __this, MethodInfo * method)); DO_APP_FUNC(0x008D7DB0, void, GameUI_SetPurgatory, (GameUI * __this, bool active, MethodInfo * method)); DO_APP_FUNC(0x008D7E50, void, GameUI_ShowFlashlightBatteryGauge, (GameUI * __this, bool show, MethodInfo * method)); @@ -15455,7 +17476,9 @@ DO_APP_FUNC(0x008DA5E0, void, GameUI_ShowHidingPlayerFoundTutorial, (GameUI * __ DO_APP_FUNC(0x008DA730, IEnumerator *, GameUI_ShowHidingPlayerFoundTutorialInternal, (GameUI * __this, MethodInfo * method)); DO_APP_FUNC(0x008DA7D0, void, GameUI_ShowNote, (GameUI * __this, String * localizedKey, MethodInfo * method)); DO_APP_FUNC(0x008DB520, void, GameUI_ReadNote, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8248, GameUI_ReadNote__MethodInfo); DO_APP_FUNC(0x008DB5C0, void, GameUI_CloseNote, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8350, GameUI_CloseNote__MethodInfo); DO_APP_FUNC(0x008DB7C0, void, GameUI_ShowLoading, (GameUI * __this, bool showWaitingForHostText, MethodInfo * method)); DO_APP_FUNC(0x008DB8B0, void, GameUI_HideLoading, (GameUI * __this, MethodInfo * method)); DO_APP_FUNC(0x008DB990, IEnumerator *, GameUI_ShowKeysList, (GameUI * __this, MethodInfo * method)); @@ -15472,6 +17495,7 @@ DO_APP_FUNC(0x008DCF70, bool, GameUI_EmotesIsOpen, (GameUI * __this, MethodInfo DO_APP_FUNC(0x008DD020, bool, GameUI_UIOpen, (GameUI * __this, MethodInfo * method)); DO_APP_FUNC(0x008DD0C0, void, GameUI_OnChatMessageSubmit, (GameUI * __this, MethodInfo * method)); DO_APP_FUNC(0x008DD630, void, GameUI_OnChatMessageReceived, (GameUI * __this, TextMessage message, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5BA0, GameUI_OnChatMessageReceived__MethodInfo); DO_APP_FUNC(0x008DD9F0, void, GameUI_SubmitChallengeMessage, (GameUI * __this, String * message, MethodInfo * method)); DO_APP_FUNC(0x008DDEB0, void, GameUI_AutoHideMessageList, (GameUI * __this, MethodInfo * method)); DO_APP_FUNC(0x008DE2F0, IEnumerator *, GameUI_ShowMessageList, (GameUI * __this, MethodInfo * method)); @@ -15482,8 +17506,11 @@ DO_APP_FUNC(0x008DE570, void, GameUI_SetItemUseBinding, (GameUI * __this, String DO_APP_FUNC(0x008DE6D0, void, GameUI_HideMessageMonitor, (GameUI * __this, MethodInfo * method)); DO_APP_FUNC(0x008DE740, void, GameUI_ShowConfirmModal, (GameUI * __this, UnityAction * yesAction, MethodInfo * method)); DO_APP_FUNC(0x008DE9B0, void, GameUI_OnControllerConnected, (GameUI * __this, ControllerStatusChangedEventArgs * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF57B8, GameUI_OnControllerConnected__MethodInfo); DO_APP_FUNC(0x008DED20, void, GameUI_OnControllerDisconnected, (GameUI * __this, ControllerStatusChangedEventArgs * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF57C0, GameUI_OnControllerDisconnected__MethodInfo); DO_APP_FUNC(0x008DF200, void, GameUI_OnGamepadTextInputDismissed, (GameUI * __this, GamepadTextInputDismissed_t pCallback, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5BE8, GameUI_OnGamepadTextInputDismissed__MethodInfo); DO_APP_FUNC(0x008DF2A0, void, GameUI_BindingChanged, (GameUI * __this, String * actionName, MethodInfo * method)); DO_APP_FUNC(0x008DF470, void, GameUI_SetCanvasScaling, (GameUI * __this, MethodInfo * method)); DO_APP_FUNC(0x008DF520, void, GameUI_ShowPurgatoryCounter, (GameUI * __this, int32_t count, MethodInfo * method)); @@ -15494,12 +17521,18 @@ DO_APP_FUNC(0x008E0080, void, GameUI_DelayPositionCanvasesInVR, (GameUI * __this DO_APP_FUNC(0x008E0130, IEnumerator *, GameUI_DelayPositionCanvasesInVRInternal, (GameUI * __this, MethodInfo * method)); DO_APP_FUNC(0x008E01D0, void, GameUI_RefreshVRUIPointers, (GameUI * __this, MethodInfo * method)); DO_APP_FUNC(0x008E0210, void, GameUI_OnVRSettingsClick, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF56F0, GameUI_OnVRSettingsClick__MethodInfo); DO_APP_FUNC(0x008E03F0, void, GameUI_OnVRSettingsBackClick, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF56E8, GameUI_OnVRSettingsBackClick__MethodInfo); DO_APP_FUNC(0x008E05D0, void, GameUI_SetupVR, (GameUI * __this, MethodInfo * method)); DO_APP_FUNC(0x008E1A20, void, GameUI_OnVRTurningSpeedSliderChanged, (GameUI * __this, float value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF56E0, GameUI_OnVRTurningSpeedSliderChanged__MethodInfo); DO_APP_FUNC(0x008E1B70, void, GameUI_OnVRTurningSpeedInputEndEdit, (GameUI * __this, String * input, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF56D8, GameUI_OnVRTurningSpeedInputEndEdit__MethodInfo); DO_APP_FUNC(0x008E1C90, void, GameUI_OnVRControlsClick, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5700, GameUI_OnVRControlsClick__MethodInfo); DO_APP_FUNC(0x008E1FB0, void, GameUI_OnVRControlsBackClick, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF56F8, GameUI_OnVRControlsBackClick__MethodInfo); DO_APP_FUNC(0x008E2110, void, GameUI_ShowVROutOfBounds, (GameUI * __this, MethodInfo * method)); DO_APP_FUNC(0x008E2340, void, GameUI_HideVROutOfBounds, (GameUI * __this, MethodInfo * method)); DO_APP_FUNC(0x008E2410, void, GameUI_CheckForManualVRRecenter, (GameUI * __this, MethodInfo * method)); @@ -15515,7 +17548,9 @@ DO_APP_FUNC(0x008E3580, bool, GameUI_UsingTownNoteBackground, (GameUI * __this, DO_APP_FUNC(0x008E36C0, void, GameUI_EndingStarted, (GameUI * __this, MethodInfo * method)); DO_APP_FUNC(0x008E3C80, void, GameUI_SetEmotes, (GameUI * __this, List_1_CharacterEmote_ * emotes, MethodInfo * method)); DO_APP_FUNC(0x008E4A30, void, GameUI_NextEmotes, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8360, GameUI_NextEmotes__MethodInfo); DO_APP_FUNC(0x008E4EB0, void, GameUI_PrevEmotes, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8240, GameUI_PrevEmotes__MethodInfo); DO_APP_FUNC(0x008E5310, void, GameUI_UpdateEmoteNextPrevButtons, (GameUI * __this, MethodInfo * method)); DO_APP_FUNC(0x008E54D0, void, GameUI_EmoteWheelSelection, (GameUI * __this, MethodInfo * method)); DO_APP_FUNC(0x008E5F70, void, GameUI_ClearEmoteWheelSelection, (GameUI * __this, MethodInfo * method)); @@ -15525,316 +17560,426 @@ DO_APP_FUNC(0x008E6850, IEnumerator *, GameUI_DelayEnableKeyBindingsScrollToSele DO_APP_FUNC(0x008E68F0, void, GameUI_PopulateKeyBindings, (GameUI * __this, bool useGamepad, MethodInfo * method)); DO_APP_FUNC(0x008E6AE0, void, GameUI_WarnClientSuspiciousHost, (GameUI * __this, MethodInfo * method)); DO_APP_FUNC(0x008E6F80, void, GameUI_OnStatsClick, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8260, GameUI_OnStatsClick__MethodInfo); DO_APP_FUNC(0x008E7100, void, GameUI_OnStatsBackClick, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8250, GameUI_OnStatsBackClick__MethodInfo); DO_APP_FUNC(0x008E72E0, void, GameUI__ctor, (GameUI * __this, MethodInfo * method)); DO_APP_FUNC(0x008E7620, void, GameUI__Start_b__367_0, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8228, GameUI__Start_b__367_0__MethodInfo); DO_APP_FUNC(0x008E7630, void, GameUI__Start_b__367_1, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF81D8, GameUI__Start_b__367_1__MethodInfo); DO_APP_FUNC(0x008E7640, void, GameUI__Start_b__367_2, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8158, GameUI__Start_b__367_2__MethodInfo); DO_APP_FUNC(0x008E7650, void, GameUI__Start_b__367_3, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8100, GameUI__Start_b__367_3__MethodInfo); DO_APP_FUNC(0x008E7660, void, GameUI__Start_b__367_4, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF80B0, GameUI__Start_b__367_4__MethodInfo); DO_APP_FUNC(0x008E7670, void, GameUI__Start_b__367_5, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF80B8, GameUI__Start_b__367_5__MethodInfo); DO_APP_FUNC(0x008E7680, void, GameUI__Start_b__367_6, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF80A0, GameUI__Start_b__367_6__MethodInfo); DO_APP_FUNC(0x008E7690, void, GameUI__Start_b__367_7, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF80A8, GameUI__Start_b__367_7__MethodInfo); DO_APP_FUNC(0x008E76A0, void, GameUI__Start_b__367_8, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8090, GameUI__Start_b__367_8__MethodInfo); DO_APP_FUNC(0x008E76B0, void, GameUI__Start_b__367_9, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8098, GameUI__Start_b__367_9__MethodInfo); DO_APP_FUNC(0x008E76C0, void, GameUI__Start_b__367_10, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8238, GameUI__Start_b__367_10__MethodInfo); DO_APP_FUNC(0x008E76D0, void, GameUI__Start_b__367_11, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8218, GameUI__Start_b__367_11__MethodInfo); DO_APP_FUNC(0x008E76E0, void, GameUI__Start_b__367_12, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8220, GameUI__Start_b__367_12__MethodInfo); DO_APP_FUNC(0x008E76F0, void, GameUI__Start_b__367_13, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8208, GameUI__Start_b__367_13__MethodInfo); DO_APP_FUNC(0x008E7700, void, GameUI__Start_b__367_14, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8210, GameUI__Start_b__367_14__MethodInfo); DO_APP_FUNC(0x008E7710, void, GameUI__Start_b__367_15, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF81F8, GameUI__Start_b__367_15__MethodInfo); DO_APP_FUNC(0x008E7720, void, GameUI__Start_b__367_16, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8200, GameUI__Start_b__367_16__MethodInfo); DO_APP_FUNC(0x008E7730, void, GameUI__Start_b__367_17, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF81E8, GameUI__Start_b__367_17__MethodInfo); DO_APP_FUNC(0x008E7740, void, GameUI__Start_b__367_18, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF81F0, GameUI__Start_b__367_18__MethodInfo); DO_APP_FUNC(0x008E7750, void, GameUI__Start_b__367_19, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF81D0, GameUI__Start_b__367_19__MethodInfo); DO_APP_FUNC(0x008E7760, void, GameUI__Start_b__367_20, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF81C0, GameUI__Start_b__367_20__MethodInfo); DO_APP_FUNC(0x008E7770, void, GameUI__Start_b__367_21, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF81C8, GameUI__Start_b__367_21__MethodInfo); DO_APP_FUNC(0x008E7780, void, GameUI__Start_b__367_22, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF81A8, GameUI__Start_b__367_22__MethodInfo); DO_APP_FUNC(0x008E7790, void, GameUI__Start_b__367_23, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF81B8, GameUI__Start_b__367_23__MethodInfo); DO_APP_FUNC(0x008E77A0, void, GameUI__Start_b__367_24, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8190, GameUI__Start_b__367_24__MethodInfo); DO_APP_FUNC(0x008E77B0, void, GameUI__Start_b__367_25, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF81A0, GameUI__Start_b__367_25__MethodInfo); DO_APP_FUNC(0x008E77C0, void, GameUI__Start_b__367_26, (GameUI * __this, bool isOn, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8178, GameUI__Start_b__367_26__MethodInfo); DO_APP_FUNC(0x008E77D0, void, GameUI__Start_b__367_27, (GameUI * __this, bool isOn, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8188, GameUI__Start_b__367_27__MethodInfo); DO_APP_FUNC(0x008E77E0, void, GameUI__Start_b__367_28, (GameUI * __this, float value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8168, GameUI__Start_b__367_28__MethodInfo); DO_APP_FUNC(0x008E78A0, void, GameUI__Start_b__367_29, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8170, GameUI__Start_b__367_29__MethodInfo); DO_APP_FUNC(0x008E7A00, void, GameUI__Start_b__367_30, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8160, GameUI__Start_b__367_30__MethodInfo); DO_APP_FUNC(0x008E7B50, void, GameUI__Start_b__367_31, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8140, GameUI__Start_b__367_31__MethodInfo); DO_APP_FUNC(0x008E7CA0, void, GameUI__Start_b__367_32, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8148, GameUI__Start_b__367_32__MethodInfo); DO_APP_FUNC(0x008E7D50, void, GameUI__Start_b__367_33, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8130, GameUI__Start_b__367_33__MethodInfo); DO_APP_FUNC(0x008E7EC0, void, GameUI__Start_b__367_35, (GameUI * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8138, GameUI__Start_b__367_35__MethodInfo); DO_APP_FUNC(0x008E7F80, void, GameUI__Start_b__367_36, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8120, GameUI__Start_b__367_36__MethodInfo); DO_APP_FUNC(0x008E8060, void, GameUI__Start_b__367_37, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8128, GameUI__Start_b__367_37__MethodInfo); DO_APP_FUNC(0x008E8100, void, GameUI__Start_b__367_38, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8110, GameUI__Start_b__367_38__MethodInfo); DO_APP_FUNC(0x008E8220, void, GameUI__Start_b__367_39, (GameUI * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8118, GameUI__Start_b__367_39__MethodInfo); DO_APP_FUNC(0x008E82E0, void, GameUI__Start_b__367_40, (GameUI * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8108, GameUI__Start_b__367_40__MethodInfo); DO_APP_FUNC(0x008E83A0, void, GameUI__Start_b__367_41, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF80F0, GameUI__Start_b__367_41__MethodInfo); DO_APP_FUNC(0x008E8450, void, GameUI__Start_b__367_42, (GameUI * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF80F8, GameUI__Start_b__367_42__MethodInfo); DO_APP_FUNC(0x008E8520, void, GameUI__Start_b__367_43, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF80E0, GameUI__Start_b__367_43__MethodInfo); DO_APP_FUNC(0x008E85D0, void, GameUI__Start_b__367_44, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF80E8, GameUI__Start_b__367_44__MethodInfo); DO_APP_FUNC(0x008E86E0, void, GameUI__Start_b__367_45, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF80D0, GameUI__Start_b__367_45__MethodInfo); DO_APP_FUNC(0x008E8790, void, GameUI__Start_b__367_46, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF80D8, GameUI__Start_b__367_46__MethodInfo); DO_APP_FUNC(0x008E8840, void, GameUI__Start_b__367_47, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF80C0, GameUI__Start_b__367_47__MethodInfo); DO_APP_FUNC(0x008E88F0, void, GameUI__Start_b__367_48, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF80C8, GameUI__Start_b__367_48__MethodInfo); DO_APP_FUNC(0x008E89A0, void, GameUI__ActivateDissonance_b__375_0, (GameUI * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5B98, GameUI__ActivateDissonance_b__375_0__MethodInfo); DO_APP_FUNC(0x008E8AB0, void, GameUI__ActivateDissonance_b__375_1, (GameUI * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5B88, GameUI__ActivateDissonance_b__375_1__MethodInfo); DO_APP_FUNC(0x008E8B70, void, GameUI__SetupVR_b__530_0, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF56C8, GameUI__SetupVR_b__530_0__MethodInfo); DO_APP_FUNC(0x008E8C20, void, GameUI__SetupVR_b__530_1, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF56C0, GameUI__SetupVR_b__530_1__MethodInfo); DO_APP_FUNC(0x008E8CD0, void, GameUI__SetupVR_b__530_2, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF56A0, GameUI__SetupVR_b__530_2__MethodInfo); DO_APP_FUNC(0x008E8D80, void, GameUI__SetupVR_b__530_3, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF56A8, GameUI__SetupVR_b__530_3__MethodInfo); DO_APP_FUNC(0x008E8E30, void, GameUI__SetupVR_b__530_4, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5690, GameUI__SetupVR_b__530_4__MethodInfo); DO_APP_FUNC(0x008E8EE0, void, GameUI__SetupVR_b__530_5, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5698, GameUI__SetupVR_b__530_5__MethodInfo); DO_APP_FUNC(0x008E8F90, void, GameUI__SetupVR_b__530_6, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5680, GameUI__SetupVR_b__530_6__MethodInfo); DO_APP_FUNC(0x008E9040, void, GameUI__SetupVR_b__530_7, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5688, GameUI__SetupVR_b__530_7__MethodInfo); DO_APP_FUNC(0x008E90F0, void, GameUI__SetupVR_b__530_8, (GameUI * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5670, GameUI__SetupVR_b__530_8__MethodInfo); DO_APP_FUNC(0x008E91C0, void, GameUI__SetupVR_b__530_9, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5678, GameUI__SetupVR_b__530_9__MethodInfo); DO_APP_FUNC(0x008E9270, void, GameUI__SetupVR_b__530_10, (GameUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF56D0, GameUI__SetupVR_b__530_10__MethodInfo); DO_APP_FUNC(0x008E9320, void, GameUI__SetupVR_b__530_11, (GameUI * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF56B8, GameUI__SetupVR_b__530_11__MethodInfo); DO_APP_FUNC(0x008E93E0, void, GameUI_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GameUI_c__ctor, (GameUI_c * __this, MethodInfo * method)); DO_APP_FUNC(0x0068B750, bool, GameUI_c__Start_b__367_34, (GameUI_c * __this, Dropdown_OptionData * option, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8080, GameUI_c__Start_b__367_34__MethodInfo); DO_APP_FUNC(0x003BCD60, void, GameUI_Start_d_367__ctor, (GameUI_Start_d_367 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GameUI_Start_d_367_System_IDisposable_Dispose, (GameUI_Start_d_367 * __this, MethodInfo * method)); DO_APP_FUNC(0x008E9490, bool, GameUI_Start_d_367_MoveNext, (GameUI_Start_d_367 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_Start_d_367_System_Collections_Generic_IEnumerator_System_Object__get_Current, (GameUI_Start_d_367 * __this, MethodInfo * method)); DO_APP_FUNC(0x008ED0E0, void, GameUI_Start_d_367_System_Collections_IEnumerator_Reset, (GameUI_Start_d_367 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8088, GameUI_Start_d_367_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_Start_d_367_System_Collections_IEnumerator_get_Current, (GameUI_Start_d_367 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, GameUI_ControllerReselectDelayed_d_374__ctor, (GameUI_ControllerReselectDelayed_d_374 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GameUI_ControllerReselectDelayed_d_374_System_IDisposable_Dispose, (GameUI_ControllerReselectDelayed_d_374 * __this, MethodInfo * method)); DO_APP_FUNC(0x008ED130, bool, GameUI_ControllerReselectDelayed_d_374_MoveNext, (GameUI_ControllerReselectDelayed_d_374 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_ControllerReselectDelayed_d_374_System_Collections_Generic_IEnumerator_System_Object__get_Current, (GameUI_ControllerReselectDelayed_d_374 * __this, MethodInfo * method)); DO_APP_FUNC(0x008ED7B0, void, GameUI_ControllerReselectDelayed_d_374_System_Collections_IEnumerator_Reset, (GameUI_ControllerReselectDelayed_d_374 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8078, GameUI_ControllerReselectDelayed_d_374_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_ControllerReselectDelayed_d_374_System_Collections_IEnumerator_get_Current, (GameUI_ControllerReselectDelayed_d_374 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, GameUI_ShowGoatCount_d_378__ctor, (GameUI_ShowGoatCount_d_378 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GameUI_ShowGoatCount_d_378_System_IDisposable_Dispose, (GameUI_ShowGoatCount_d_378 * __this, MethodInfo * method)); DO_APP_FUNC(0x008ED800, bool, GameUI_ShowGoatCount_d_378_MoveNext, (GameUI_ShowGoatCount_d_378 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_ShowGoatCount_d_378_System_Collections_Generic_IEnumerator_System_Object__get_Current, (GameUI_ShowGoatCount_d_378 * __this, MethodInfo * method)); DO_APP_FUNC(0x008EDAE0, void, GameUI_ShowGoatCount_d_378_System_Collections_IEnumerator_Reset, (GameUI_ShowGoatCount_d_378 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8070, GameUI_ShowGoatCount_d_378_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_ShowGoatCount_d_378_System_Collections_IEnumerator_get_Current, (GameUI_ShowGoatCount_d_378 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, GameUI_ShowCollectableModalInternal_d_384__ctor, (GameUI_ShowCollectableModalInternal_d_384 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GameUI_ShowCollectableModalInternal_d_384_System_IDisposable_Dispose, (GameUI_ShowCollectableModalInternal_d_384 * __this, MethodInfo * method)); DO_APP_FUNC(0x008EDB30, bool, GameUI_ShowCollectableModalInternal_d_384_MoveNext, (GameUI_ShowCollectableModalInternal_d_384 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_ShowCollectableModalInternal_d_384_System_Collections_Generic_IEnumerator_System_Object__get_Current, (GameUI_ShowCollectableModalInternal_d_384 * __this, MethodInfo * method)); DO_APP_FUNC(0x008EDF20, void, GameUI_ShowCollectableModalInternal_d_384_System_Collections_IEnumerator_Reset, (GameUI_ShowCollectableModalInternal_d_384 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8058, GameUI_ShowCollectableModalInternal_d_384_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_ShowCollectableModalInternal_d_384_System_Collections_IEnumerator_get_Current, (GameUI_ShowCollectableModalInternal_d_384 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, GameUI_ShowCurrentPerkCoroutine_d_385__ctor, (GameUI_ShowCurrentPerkCoroutine_d_385 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GameUI_ShowCurrentPerkCoroutine_d_385_System_IDisposable_Dispose, (GameUI_ShowCurrentPerkCoroutine_d_385 * __this, MethodInfo * method)); DO_APP_FUNC(0x008EDF70, bool, GameUI_ShowCurrentPerkCoroutine_d_385_MoveNext, (GameUI_ShowCurrentPerkCoroutine_d_385 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_ShowCurrentPerkCoroutine_d_385_System_Collections_Generic_IEnumerator_System_Object__get_Current, (GameUI_ShowCurrentPerkCoroutine_d_385 * __this, MethodInfo * method)); DO_APP_FUNC(0x008EE480, void, GameUI_ShowCurrentPerkCoroutine_d_385_System_Collections_IEnumerator_Reset, (GameUI_ShowCurrentPerkCoroutine_d_385 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8050, GameUI_ShowCurrentPerkCoroutine_d_385_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_ShowCurrentPerkCoroutine_d_385_System_Collections_IEnumerator_get_Current, (GameUI_ShowCurrentPerkCoroutine_d_385 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, GameUI_ShowKeyPickupModalInternal_d_389__ctor, (GameUI_ShowKeyPickupModalInternal_d_389 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GameUI_ShowKeyPickupModalInternal_d_389_System_IDisposable_Dispose, (GameUI_ShowKeyPickupModalInternal_d_389 * __this, MethodInfo * method)); DO_APP_FUNC(0x008EE4D0, bool, GameUI_ShowKeyPickupModalInternal_d_389_MoveNext, (GameUI_ShowKeyPickupModalInternal_d_389 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_ShowKeyPickupModalInternal_d_389_System_Collections_Generic_IEnumerator_System_Object__get_Current, (GameUI_ShowKeyPickupModalInternal_d_389 * __this, MethodInfo * method)); DO_APP_FUNC(0x008EE8C0, void, GameUI_ShowKeyPickupModalInternal_d_389_System_Collections_IEnumerator_Reset, (GameUI_ShowKeyPickupModalInternal_d_389 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8030, GameUI_ShowKeyPickupModalInternal_d_389_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_ShowKeyPickupModalInternal_d_389_System_Collections_IEnumerator_get_Current, (GameUI_ShowKeyPickupModalInternal_d_389 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GameUI_c_DisplayClass414_0__ctor, (GameUI_c_DisplayClass414_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x008EE910, void, GameUI_c_DisplayClass414_0__AddPlayerToMenu_b__0, (GameUI_c_DisplayClass414_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5A08, GameUI_c_DisplayClass414_0__AddPlayerToMenu_b__0__MethodInfo); DO_APP_FUNC(0x008EEB90, void, GameUI_c_DisplayClass414_0__AddPlayerToMenu_b__1, (GameUI_c_DisplayClass414_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF59F0, GameUI_c_DisplayClass414_0__AddPlayerToMenu_b__1__MethodInfo); DO_APP_FUNC(0x008EF210, void, GameUI_c_DisplayClass414_0__AddPlayerToMenu_b__2, (GameUI_c_DisplayClass414_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF59F8, GameUI_c_DisplayClass414_0__AddPlayerToMenu_b__2__MethodInfo); DO_APP_FUNC(0x008EF290, void, GameUI_c_DisplayClass414_0__AddPlayerToMenu_b__3, (GameUI_c_DisplayClass414_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF59D0, GameUI_c_DisplayClass414_0__AddPlayerToMenu_b__3__MethodInfo); DO_APP_FUNC(0x003BCD60, void, GameUI_WaitForPlayerVote_d_419__ctor, (GameUI_WaitForPlayerVote_d_419 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GameUI_WaitForPlayerVote_d_419_System_IDisposable_Dispose, (GameUI_WaitForPlayerVote_d_419 * __this, MethodInfo * method)); DO_APP_FUNC(0x008EF6B0, bool, GameUI_WaitForPlayerVote_d_419_MoveNext, (GameUI_WaitForPlayerVote_d_419 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_WaitForPlayerVote_d_419_System_Collections_Generic_IEnumerator_System_Object__get_Current, (GameUI_WaitForPlayerVote_d_419 * __this, MethodInfo * method)); DO_APP_FUNC(0x008EFFE0, void, GameUI_WaitForPlayerVote_d_419_System_Collections_IEnumerator_Reset, (GameUI_WaitForPlayerVote_d_419 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7FF0, GameUI_WaitForPlayerVote_d_419_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_WaitForPlayerVote_d_419_System_Collections_IEnumerator_get_Current, (GameUI_WaitForPlayerVote_d_419 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, GameUI_WaitForGlobalVote_d_420__ctor, (GameUI_WaitForGlobalVote_d_420 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GameUI_WaitForGlobalVote_d_420_System_IDisposable_Dispose, (GameUI_WaitForGlobalVote_d_420 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F0030, bool, GameUI_WaitForGlobalVote_d_420_MoveNext, (GameUI_WaitForGlobalVote_d_420 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_WaitForGlobalVote_d_420_System_Collections_Generic_IEnumerator_System_Object__get_Current, (GameUI_WaitForGlobalVote_d_420 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F05A0, void, GameUI_WaitForGlobalVote_d_420_System_Collections_IEnumerator_Reset, (GameUI_WaitForGlobalVote_d_420 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7FE8, GameUI_WaitForGlobalVote_d_420_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_WaitForGlobalVote_d_420_System_Collections_IEnumerator_get_Current, (GameUI_WaitForGlobalVote_d_420 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, GameUI_OnApplicationFocus_d_439__ctor, (GameUI_OnApplicationFocus_d_439 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GameUI_OnApplicationFocus_d_439_System_IDisposable_Dispose, (GameUI_OnApplicationFocus_d_439 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F05F0, bool, GameUI_OnApplicationFocus_d_439_MoveNext, (GameUI_OnApplicationFocus_d_439 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_OnApplicationFocus_d_439_System_Collections_Generic_IEnumerator_System_Object__get_Current, (GameUI_OnApplicationFocus_d_439 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F08B0, void, GameUI_OnApplicationFocus_d_439_System_Collections_IEnumerator_Reset, (GameUI_OnApplicationFocus_d_439 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7FD8, GameUI_OnApplicationFocus_d_439_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_OnApplicationFocus_d_439_System_Collections_IEnumerator_get_Current, (GameUI_OnApplicationFocus_d_439 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, GameUI_FadeBatteryGauge_d_447__ctor, (GameUI_FadeBatteryGauge_d_447 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GameUI_FadeBatteryGauge_d_447_System_IDisposable_Dispose, (GameUI_FadeBatteryGauge_d_447 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F0900, bool, GameUI_FadeBatteryGauge_d_447_MoveNext, (GameUI_FadeBatteryGauge_d_447 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_FadeBatteryGauge_d_447_System_Collections_Generic_IEnumerator_System_Object__get_Current, (GameUI_FadeBatteryGauge_d_447 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F0DB0, void, GameUI_FadeBatteryGauge_d_447_System_Collections_IEnumerator_Reset, (GameUI_FadeBatteryGauge_d_447 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7FC8, GameUI_FadeBatteryGauge_d_447_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_FadeBatteryGauge_d_447_System_Collections_IEnumerator_get_Current, (GameUI_FadeBatteryGauge_d_447 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, GameUI_ShowFocusFlashlightTutorial_d_448__ctor, (GameUI_ShowFocusFlashlightTutorial_d_448 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GameUI_ShowFocusFlashlightTutorial_d_448_System_IDisposable_Dispose, (GameUI_ShowFocusFlashlightTutorial_d_448 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F0E00, bool, GameUI_ShowFocusFlashlightTutorial_d_448_MoveNext, (GameUI_ShowFocusFlashlightTutorial_d_448 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_ShowFocusFlashlightTutorial_d_448_System_Collections_Generic_IEnumerator_System_Object__get_Current, (GameUI_ShowFocusFlashlightTutorial_d_448 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F1040, void, GameUI_ShowFocusFlashlightTutorial_d_448_System_Collections_IEnumerator_Reset, (GameUI_ShowFocusFlashlightTutorial_d_448 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7FB8, GameUI_ShowFocusFlashlightTutorial_d_448_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_ShowFocusFlashlightTutorial_d_448_System_Collections_IEnumerator_get_Current, (GameUI_ShowFocusFlashlightTutorial_d_448 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, GameUI_ShowFocusInnWebTutorial_d_449__ctor, (GameUI_ShowFocusInnWebTutorial_d_449 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GameUI_ShowFocusInnWebTutorial_d_449_System_IDisposable_Dispose, (GameUI_ShowFocusInnWebTutorial_d_449 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F1090, bool, GameUI_ShowFocusInnWebTutorial_d_449_MoveNext, (GameUI_ShowFocusInnWebTutorial_d_449 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_ShowFocusInnWebTutorial_d_449_System_Collections_Generic_IEnumerator_System_Object__get_Current, (GameUI_ShowFocusInnWebTutorial_d_449 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F12D0, void, GameUI_ShowFocusInnWebTutorial_d_449_System_Collections_IEnumerator_Reset, (GameUI_ShowFocusInnWebTutorial_d_449 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7FA0, GameUI_ShowFocusInnWebTutorial_d_449_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_ShowFocusInnWebTutorial_d_449_System_Collections_IEnumerator_get_Current, (GameUI_ShowFocusInnWebTutorial_d_449 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, GameUI_ShowDropTutorial_d_450__ctor, (GameUI_ShowDropTutorial_d_450 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GameUI_ShowDropTutorial_d_450_System_IDisposable_Dispose, (GameUI_ShowDropTutorial_d_450 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F1320, bool, GameUI_ShowDropTutorial_d_450_MoveNext, (GameUI_ShowDropTutorial_d_450 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_ShowDropTutorial_d_450_System_Collections_Generic_IEnumerator_System_Object__get_Current, (GameUI_ShowDropTutorial_d_450 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F1700, void, GameUI_ShowDropTutorial_d_450_System_Collections_IEnumerator_Reset, (GameUI_ShowDropTutorial_d_450 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7F88, GameUI_ShowDropTutorial_d_450_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_ShowDropTutorial_d_450_System_Collections_IEnumerator_get_Current, (GameUI_ShowDropTutorial_d_450 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, GameUI_ShowFlashlightTutorialInternal_d_456__ctor, (GameUI_ShowFlashlightTutorialInternal_d_456 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GameUI_ShowFlashlightTutorialInternal_d_456_System_IDisposable_Dispose, (GameUI_ShowFlashlightTutorialInternal_d_456 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F1750, bool, GameUI_ShowFlashlightTutorialInternal_d_456_MoveNext, (GameUI_ShowFlashlightTutorialInternal_d_456 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_ShowFlashlightTutorialInternal_d_456_System_Collections_Generic_IEnumerator_System_Object__get_Current, (GameUI_ShowFlashlightTutorialInternal_d_456 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F1B10, void, GameUI_ShowFlashlightTutorialInternal_d_456_System_Collections_IEnumerator_Reset, (GameUI_ShowFlashlightTutorialInternal_d_456 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7F68, GameUI_ShowFlashlightTutorialInternal_d_456_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_ShowFlashlightTutorialInternal_d_456_System_Collections_IEnumerator_get_Current, (GameUI_ShowFlashlightTutorialInternal_d_456 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, GameUI_HideFlashlightTutorial_d_457__ctor, (GameUI_HideFlashlightTutorial_d_457 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GameUI_HideFlashlightTutorial_d_457_System_IDisposable_Dispose, (GameUI_HideFlashlightTutorial_d_457 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F1B60, bool, GameUI_HideFlashlightTutorial_d_457_MoveNext, (GameUI_HideFlashlightTutorial_d_457 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_HideFlashlightTutorial_d_457_System_Collections_Generic_IEnumerator_System_Object__get_Current, (GameUI_HideFlashlightTutorial_d_457 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F1DB0, void, GameUI_HideFlashlightTutorial_d_457_System_Collections_IEnumerator_Reset, (GameUI_HideFlashlightTutorial_d_457 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7F58, GameUI_HideFlashlightTutorial_d_457_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_HideFlashlightTutorial_d_457_System_Collections_IEnumerator_get_Current, (GameUI_HideFlashlightTutorial_d_457 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, GameUI_ShowLockedDoorHintInternal_d_459__ctor, (GameUI_ShowLockedDoorHintInternal_d_459 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GameUI_ShowLockedDoorHintInternal_d_459_System_IDisposable_Dispose, (GameUI_ShowLockedDoorHintInternal_d_459 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F1E00, bool, GameUI_ShowLockedDoorHintInternal_d_459_MoveNext, (GameUI_ShowLockedDoorHintInternal_d_459 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_ShowLockedDoorHintInternal_d_459_System_Collections_Generic_IEnumerator_System_Object__get_Current, (GameUI_ShowLockedDoorHintInternal_d_459 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F20A0, void, GameUI_ShowLockedDoorHintInternal_d_459_System_Collections_IEnumerator_Reset, (GameUI_ShowLockedDoorHintInternal_d_459 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7F48, GameUI_ShowLockedDoorHintInternal_d_459_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_ShowLockedDoorHintInternal_d_459_System_Collections_IEnumerator_get_Current, (GameUI_ShowLockedDoorHintInternal_d_459 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, GameUI_ShowCalmDownTutorialInternal_d_461__ctor, (GameUI_ShowCalmDownTutorialInternal_d_461 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GameUI_ShowCalmDownTutorialInternal_d_461_System_IDisposable_Dispose, (GameUI_ShowCalmDownTutorialInternal_d_461 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F20F0, bool, GameUI_ShowCalmDownTutorialInternal_d_461_MoveNext, (GameUI_ShowCalmDownTutorialInternal_d_461 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_ShowCalmDownTutorialInternal_d_461_System_Collections_Generic_IEnumerator_System_Object__get_Current, (GameUI_ShowCalmDownTutorialInternal_d_461 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F2550, void, GameUI_ShowCalmDownTutorialInternal_d_461_System_Collections_IEnumerator_Reset, (GameUI_ShowCalmDownTutorialInternal_d_461 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7F38, GameUI_ShowCalmDownTutorialInternal_d_461_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_ShowCalmDownTutorialInternal_d_461_System_Collections_IEnumerator_get_Current, (GameUI_ShowCalmDownTutorialInternal_d_461 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, GameUI_ShowStaggerToCalmDownTutorialInternal_d_463__ctor, (GameUI_ShowStaggerToCalmDownTutorialInternal_d_463 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GameUI_ShowStaggerToCalmDownTutorialInternal_d_463_System_IDisposable_Dispose, (GameUI_ShowStaggerToCalmDownTutorialInternal_d_463 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F25A0, bool, GameUI_ShowStaggerToCalmDownTutorialInternal_d_463_MoveNext, (GameUI_ShowStaggerToCalmDownTutorialInternal_d_463 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_ShowStaggerToCalmDownTutorialInternal_d_463_System_Collections_Generic_IEnumerator_System_Object__get_Current, (GameUI_ShowStaggerToCalmDownTutorialInternal_d_463 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F3210, void, GameUI_ShowStaggerToCalmDownTutorialInternal_d_463_System_Collections_IEnumerator_Reset, (GameUI_ShowStaggerToCalmDownTutorialInternal_d_463 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7F28, GameUI_ShowStaggerToCalmDownTutorialInternal_d_463_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_ShowStaggerToCalmDownTutorialInternal_d_463_System_Collections_IEnumerator_get_Current, (GameUI_ShowStaggerToCalmDownTutorialInternal_d_463 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, GameUI_ShowAzazelUVTutorialInternal_d_465__ctor, (GameUI_ShowAzazelUVTutorialInternal_d_465 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GameUI_ShowAzazelUVTutorialInternal_d_465_System_IDisposable_Dispose, (GameUI_ShowAzazelUVTutorialInternal_d_465 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F3260, bool, GameUI_ShowAzazelUVTutorialInternal_d_465_MoveNext, (GameUI_ShowAzazelUVTutorialInternal_d_465 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_ShowAzazelUVTutorialInternal_d_465_System_Collections_Generic_IEnumerator_System_Object__get_Current, (GameUI_ShowAzazelUVTutorialInternal_d_465 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F3680, void, GameUI_ShowAzazelUVTutorialInternal_d_465_System_Collections_IEnumerator_Reset, (GameUI_ShowAzazelUVTutorialInternal_d_465 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7F18, GameUI_ShowAzazelUVTutorialInternal_d_465_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_ShowAzazelUVTutorialInternal_d_465_System_Collections_IEnumerator_get_Current, (GameUI_ShowAzazelUVTutorialInternal_d_465 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, GameUI_ShowBatteryTutorialInternal_d_467__ctor, (GameUI_ShowBatteryTutorialInternal_d_467 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GameUI_ShowBatteryTutorialInternal_d_467_System_IDisposable_Dispose, (GameUI_ShowBatteryTutorialInternal_d_467 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F36D0, bool, GameUI_ShowBatteryTutorialInternal_d_467_MoveNext, (GameUI_ShowBatteryTutorialInternal_d_467 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_ShowBatteryTutorialInternal_d_467_System_Collections_Generic_IEnumerator_System_Object__get_Current, (GameUI_ShowBatteryTutorialInternal_d_467 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F3AA0, void, GameUI_ShowBatteryTutorialInternal_d_467_System_Collections_IEnumerator_Reset, (GameUI_ShowBatteryTutorialInternal_d_467 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7F08, GameUI_ShowBatteryTutorialInternal_d_467_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_ShowBatteryTutorialInternal_d_467_System_Collections_IEnumerator_get_Current, (GameUI_ShowBatteryTutorialInternal_d_467 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, GameUI_ShowViewKeysTutorial_d_468__ctor, (GameUI_ShowViewKeysTutorial_d_468 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GameUI_ShowViewKeysTutorial_d_468_System_IDisposable_Dispose, (GameUI_ShowViewKeysTutorial_d_468 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F3AF0, bool, GameUI_ShowViewKeysTutorial_d_468_MoveNext, (GameUI_ShowViewKeysTutorial_d_468 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_ShowViewKeysTutorial_d_468_System_Collections_Generic_IEnumerator_System_Object__get_Current, (GameUI_ShowViewKeysTutorial_d_468 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F3EC0, void, GameUI_ShowViewKeysTutorial_d_468_System_Collections_IEnumerator_Reset, (GameUI_ShowViewKeysTutorial_d_468 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7EE8, GameUI_ShowViewKeysTutorial_d_468_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_ShowViewKeysTutorial_d_468_System_Collections_IEnumerator_get_Current, (GameUI_ShowViewKeysTutorial_d_468 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, GameUI_DisplayTutorial_d_469__ctor, (GameUI_DisplayTutorial_d_469 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GameUI_DisplayTutorial_d_469_System_IDisposable_Dispose, (GameUI_DisplayTutorial_d_469 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F3F10, bool, GameUI_DisplayTutorial_d_469_MoveNext, (GameUI_DisplayTutorial_d_469 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_DisplayTutorial_d_469_System_Collections_Generic_IEnumerator_System_Object__get_Current, (GameUI_DisplayTutorial_d_469 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F4240, void, GameUI_DisplayTutorial_d_469_System_Collections_IEnumerator_Reset, (GameUI_DisplayTutorial_d_469 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7EE0, GameUI_DisplayTutorial_d_469_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_DisplayTutorial_d_469_System_Collections_IEnumerator_get_Current, (GameUI_DisplayTutorial_d_469 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, GameUI_ShowDirtyEggShrineTutorialInternal_d_471__ctor, (GameUI_ShowDirtyEggShrineTutorialInternal_d_471 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GameUI_ShowDirtyEggShrineTutorialInternal_d_471_System_IDisposable_Dispose, (GameUI_ShowDirtyEggShrineTutorialInternal_d_471 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F4290, bool, GameUI_ShowDirtyEggShrineTutorialInternal_d_471_MoveNext, (GameUI_ShowDirtyEggShrineTutorialInternal_d_471 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_ShowDirtyEggShrineTutorialInternal_d_471_System_Collections_Generic_IEnumerator_System_Object__get_Current, (GameUI_ShowDirtyEggShrineTutorialInternal_d_471 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F45E0, void, GameUI_ShowDirtyEggShrineTutorialInternal_d_471_System_Collections_IEnumerator_Reset, (GameUI_ShowDirtyEggShrineTutorialInternal_d_471 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7ED8, GameUI_ShowDirtyEggShrineTutorialInternal_d_471_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_ShowDirtyEggShrineTutorialInternal_d_471_System_Collections_IEnumerator_get_Current, (GameUI_ShowDirtyEggShrineTutorialInternal_d_471 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, GameUI_ShowIncorrectShrineTutorialInternal_d_473__ctor, (GameUI_ShowIncorrectShrineTutorialInternal_d_473 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GameUI_ShowIncorrectShrineTutorialInternal_d_473_System_IDisposable_Dispose, (GameUI_ShowIncorrectShrineTutorialInternal_d_473 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F4630, bool, GameUI_ShowIncorrectShrineTutorialInternal_d_473_MoveNext, (GameUI_ShowIncorrectShrineTutorialInternal_d_473 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_ShowIncorrectShrineTutorialInternal_d_473_System_Collections_Generic_IEnumerator_System_Object__get_Current, (GameUI_ShowIncorrectShrineTutorialInternal_d_473 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F4980, void, GameUI_ShowIncorrectShrineTutorialInternal_d_473_System_Collections_IEnumerator_Reset, (GameUI_ShowIncorrectShrineTutorialInternal_d_473 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7EC8, GameUI_ShowIncorrectShrineTutorialInternal_d_473_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_ShowIncorrectShrineTutorialInternal_d_473_System_Collections_IEnumerator_get_Current, (GameUI_ShowIncorrectShrineTutorialInternal_d_473 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, GameUI_ShowDirtyEggFountainTutorialInternal_d_475__ctor, (GameUI_ShowDirtyEggFountainTutorialInternal_d_475 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GameUI_ShowDirtyEggFountainTutorialInternal_d_475_System_IDisposable_Dispose, (GameUI_ShowDirtyEggFountainTutorialInternal_d_475 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F49D0, bool, GameUI_ShowDirtyEggFountainTutorialInternal_d_475_MoveNext, (GameUI_ShowDirtyEggFountainTutorialInternal_d_475 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_ShowDirtyEggFountainTutorialInternal_d_475_System_Collections_Generic_IEnumerator_System_Object__get_Current, (GameUI_ShowDirtyEggFountainTutorialInternal_d_475 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F4D20, void, GameUI_ShowDirtyEggFountainTutorialInternal_d_475_System_Collections_IEnumerator_Reset, (GameUI_ShowDirtyEggFountainTutorialInternal_d_475 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7EB8, GameUI_ShowDirtyEggFountainTutorialInternal_d_475_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_ShowDirtyEggFountainTutorialInternal_d_475_System_Collections_IEnumerator_get_Current, (GameUI_ShowDirtyEggFountainTutorialInternal_d_475 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, GameUI_ShowAltarRitualBookTutorialInternal_d_477__ctor, (GameUI_ShowAltarRitualBookTutorialInternal_d_477 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GameUI_ShowAltarRitualBookTutorialInternal_d_477_System_IDisposable_Dispose, (GameUI_ShowAltarRitualBookTutorialInternal_d_477 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F4D70, bool, GameUI_ShowAltarRitualBookTutorialInternal_d_477_MoveNext, (GameUI_ShowAltarRitualBookTutorialInternal_d_477 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_ShowAltarRitualBookTutorialInternal_d_477_System_Collections_Generic_IEnumerator_System_Object__get_Current, (GameUI_ShowAltarRitualBookTutorialInternal_d_477 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F50C0, void, GameUI_ShowAltarRitualBookTutorialInternal_d_477_System_Collections_IEnumerator_Reset, (GameUI_ShowAltarRitualBookTutorialInternal_d_477 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7EA8, GameUI_ShowAltarRitualBookTutorialInternal_d_477_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_ShowAltarRitualBookTutorialInternal_d_477_System_Collections_IEnumerator_get_Current, (GameUI_ShowAltarRitualBookTutorialInternal_d_477 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, GameUI_ShowPentagramCandleTutorialInternal_d_479__ctor, (GameUI_ShowPentagramCandleTutorialInternal_d_479 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GameUI_ShowPentagramCandleTutorialInternal_d_479_System_IDisposable_Dispose, (GameUI_ShowPentagramCandleTutorialInternal_d_479 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F5110, bool, GameUI_ShowPentagramCandleTutorialInternal_d_479_MoveNext, (GameUI_ShowPentagramCandleTutorialInternal_d_479 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_ShowPentagramCandleTutorialInternal_d_479_System_Collections_Generic_IEnumerator_System_Object__get_Current, (GameUI_ShowPentagramCandleTutorialInternal_d_479 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F5460, void, GameUI_ShowPentagramCandleTutorialInternal_d_479_System_Collections_IEnumerator_Reset, (GameUI_ShowPentagramCandleTutorialInternal_d_479 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7E98, GameUI_ShowPentagramCandleTutorialInternal_d_479_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_ShowPentagramCandleTutorialInternal_d_479_System_Collections_IEnumerator_get_Current, (GameUI_ShowPentagramCandleTutorialInternal_d_479 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, GameUI_ShowPentagramBookTutorialInternal_d_481__ctor, (GameUI_ShowPentagramBookTutorialInternal_d_481 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GameUI_ShowPentagramBookTutorialInternal_d_481_System_IDisposable_Dispose, (GameUI_ShowPentagramBookTutorialInternal_d_481 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F54B0, bool, GameUI_ShowPentagramBookTutorialInternal_d_481_MoveNext, (GameUI_ShowPentagramBookTutorialInternal_d_481 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_ShowPentagramBookTutorialInternal_d_481_System_Collections_Generic_IEnumerator_System_Object__get_Current, (GameUI_ShowPentagramBookTutorialInternal_d_481 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F5800, void, GameUI_ShowPentagramBookTutorialInternal_d_481_System_Collections_IEnumerator_Reset, (GameUI_ShowPentagramBookTutorialInternal_d_481 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7E88, GameUI_ShowPentagramBookTutorialInternal_d_481_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_ShowPentagramBookTutorialInternal_d_481_System_Collections_IEnumerator_get_Current, (GameUI_ShowPentagramBookTutorialInternal_d_481 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, GameUI_ShowPentagramInactiveTutorialInternal_d_483__ctor, (GameUI_ShowPentagramInactiveTutorialInternal_d_483 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GameUI_ShowPentagramInactiveTutorialInternal_d_483_System_IDisposable_Dispose, (GameUI_ShowPentagramInactiveTutorialInternal_d_483 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F5850, bool, GameUI_ShowPentagramInactiveTutorialInternal_d_483_MoveNext, (GameUI_ShowPentagramInactiveTutorialInternal_d_483 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_ShowPentagramInactiveTutorialInternal_d_483_System_Collections_Generic_IEnumerator_System_Object__get_Current, (GameUI_ShowPentagramInactiveTutorialInternal_d_483 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F5BA0, void, GameUI_ShowPentagramInactiveTutorialInternal_d_483_System_Collections_IEnumerator_Reset, (GameUI_ShowPentagramInactiveTutorialInternal_d_483 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7E78, GameUI_ShowPentagramInactiveTutorialInternal_d_483_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_ShowPentagramInactiveTutorialInternal_d_483_System_Collections_IEnumerator_get_Current, (GameUI_ShowPentagramInactiveTutorialInternal_d_483 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, GameUI_ShowManorIncorrectPhotoTutorialInternal_d_485__ctor, (GameUI_ShowManorIncorrectPhotoTutorialInternal_d_485 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GameUI_ShowManorIncorrectPhotoTutorialInternal_d_485_System_IDisposable_Dispose, (GameUI_ShowManorIncorrectPhotoTutorialInternal_d_485 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F5BF0, bool, GameUI_ShowManorIncorrectPhotoTutorialInternal_d_485_MoveNext, (GameUI_ShowManorIncorrectPhotoTutorialInternal_d_485 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_ShowManorIncorrectPhotoTutorialInternal_d_485_System_Collections_Generic_IEnumerator_System_Object__get_Current, (GameUI_ShowManorIncorrectPhotoTutorialInternal_d_485 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F5F40, void, GameUI_ShowManorIncorrectPhotoTutorialInternal_d_485_System_Collections_IEnumerator_Reset, (GameUI_ShowManorIncorrectPhotoTutorialInternal_d_485 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7E68, GameUI_ShowManorIncorrectPhotoTutorialInternal_d_485_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_ShowManorIncorrectPhotoTutorialInternal_d_485_System_Collections_IEnumerator_get_Current, (GameUI_ShowManorIncorrectPhotoTutorialInternal_d_485 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, GameUI_ShowHidingPlayerFoundTutorialInternal_d_487__ctor, (GameUI_ShowHidingPlayerFoundTutorialInternal_d_487 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GameUI_ShowHidingPlayerFoundTutorialInternal_d_487_System_IDisposable_Dispose, (GameUI_ShowHidingPlayerFoundTutorialInternal_d_487 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F5F90, bool, GameUI_ShowHidingPlayerFoundTutorialInternal_d_487_MoveNext, (GameUI_ShowHidingPlayerFoundTutorialInternal_d_487 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_ShowHidingPlayerFoundTutorialInternal_d_487_System_Collections_Generic_IEnumerator_System_Object__get_Current, (GameUI_ShowHidingPlayerFoundTutorialInternal_d_487 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F6320, void, GameUI_ShowHidingPlayerFoundTutorialInternal_d_487_System_Collections_IEnumerator_Reset, (GameUI_ShowHidingPlayerFoundTutorialInternal_d_487 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7E58, GameUI_ShowHidingPlayerFoundTutorialInternal_d_487_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_ShowHidingPlayerFoundTutorialInternal_d_487_System_Collections_IEnumerator_get_Current, (GameUI_ShowHidingPlayerFoundTutorialInternal_d_487 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, GameUI_ShowKeysList_d_493__ctor, (GameUI_ShowKeysList_d_493 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GameUI_ShowKeysList_d_493_System_IDisposable_Dispose, (GameUI_ShowKeysList_d_493 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F6370, bool, GameUI_ShowKeysList_d_493_MoveNext, (GameUI_ShowKeysList_d_493 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_ShowKeysList_d_493_System_Collections_Generic_IEnumerator_System_Object__get_Current, (GameUI_ShowKeysList_d_493 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F6F50, void, GameUI_ShowKeysList_d_493_System_Collections_IEnumerator_Reset, (GameUI_ShowKeysList_d_493 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7E48, GameUI_ShowKeysList_d_493_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_ShowKeysList_d_493_System_Collections_IEnumerator_get_Current, (GameUI_ShowKeysList_d_493 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, GameUI_HideKeysList_d_494__ctor, (GameUI_HideKeysList_d_494 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GameUI_HideKeysList_d_494_System_IDisposable_Dispose, (GameUI_HideKeysList_d_494 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F6FA0, bool, GameUI_HideKeysList_d_494_MoveNext, (GameUI_HideKeysList_d_494 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_HideKeysList_d_494_System_Collections_Generic_IEnumerator_System_Object__get_Current, (GameUI_HideKeysList_d_494 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F72F0, void, GameUI_HideKeysList_d_494_System_Collections_IEnumerator_Reset, (GameUI_HideKeysList_d_494 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7E38, GameUI_HideKeysList_d_494_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_HideKeysList_d_494_System_Collections_IEnumerator_get_Current, (GameUI_HideKeysList_d_494 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, GameUI_AutoHideKeysList_d_495__ctor, (GameUI_AutoHideKeysList_d_495 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GameUI_AutoHideKeysList_d_495_System_IDisposable_Dispose, (GameUI_AutoHideKeysList_d_495 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F7340, bool, GameUI_AutoHideKeysList_d_495_MoveNext, (GameUI_AutoHideKeysList_d_495 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_AutoHideKeysList_d_495_System_Collections_Generic_IEnumerator_System_Object__get_Current, (GameUI_AutoHideKeysList_d_495 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F7540, void, GameUI_AutoHideKeysList_d_495_System_Collections_IEnumerator_Reset, (GameUI_AutoHideKeysList_d_495 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7E30, GameUI_AutoHideKeysList_d_495_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_AutoHideKeysList_d_495_System_Collections_IEnumerator_get_Current, (GameUI_AutoHideKeysList_d_495 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, GameUI_ShowMessageList_d_509__ctor, (GameUI_ShowMessageList_d_509 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GameUI_ShowMessageList_d_509_System_IDisposable_Dispose, (GameUI_ShowMessageList_d_509 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F7590, bool, GameUI_ShowMessageList_d_509_MoveNext, (GameUI_ShowMessageList_d_509 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_ShowMessageList_d_509_System_Collections_Generic_IEnumerator_System_Object__get_Current, (GameUI_ShowMessageList_d_509 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F7A00, void, GameUI_ShowMessageList_d_509_System_Collections_IEnumerator_Reset, (GameUI_ShowMessageList_d_509 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7E28, GameUI_ShowMessageList_d_509_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_ShowMessageList_d_509_System_Collections_IEnumerator_get_Current, (GameUI_ShowMessageList_d_509 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, GameUI_HideMessageList_d_510__ctor, (GameUI_HideMessageList_d_510 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GameUI_HideMessageList_d_510_System_IDisposable_Dispose, (GameUI_HideMessageList_d_510 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F7A50, bool, GameUI_HideMessageList_d_510_MoveNext, (GameUI_HideMessageList_d_510 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_HideMessageList_d_510_System_Collections_Generic_IEnumerator_System_Object__get_Current, (GameUI_HideMessageList_d_510 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F7DD0, void, GameUI_HideMessageList_d_510_System_Collections_IEnumerator_Reset, (GameUI_HideMessageList_d_510 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7E20, GameUI_HideMessageList_d_510_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_HideMessageList_d_510_System_Collections_IEnumerator_get_Current, (GameUI_HideMessageList_d_510 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GameUI_c_DisplayClass515_0__ctor, (GameUI_c_DisplayClass515_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F7E20, void, GameUI_c_DisplayClass515_0__ShowConfirmModal_b__0, (GameUI_c_DisplayClass515_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5748, GameUI_c_DisplayClass515_0__ShowConfirmModal_b__0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, GameUI_DelayPositionCanvasesInVRInternal_d_526__ctor, (GameUI_DelayPositionCanvasesInVRInternal_d_526 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GameUI_DelayPositionCanvasesInVRInternal_d_526_System_IDisposable_Dispose, (GameUI_DelayPositionCanvasesInVRInternal_d_526 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F7E60, bool, GameUI_DelayPositionCanvasesInVRInternal_d_526_MoveNext, (GameUI_DelayPositionCanvasesInVRInternal_d_526 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_DelayPositionCanvasesInVRInternal_d_526_System_Collections_Generic_IEnumerator_System_Object__get_Current, (GameUI_DelayPositionCanvasesInVRInternal_d_526 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F80E0, void, GameUI_DelayPositionCanvasesInVRInternal_d_526_System_Collections_IEnumerator_Reset, (GameUI_DelayPositionCanvasesInVRInternal_d_526 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7E18, GameUI_DelayPositionCanvasesInVRInternal_d_526_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_DelayPositionCanvasesInVRInternal_d_526_System_Collections_IEnumerator_get_Current, (GameUI_DelayPositionCanvasesInVRInternal_d_526 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, GameUI_ShowBoarChargeItemDropTutorialInternal_d_544__ctor, (GameUI_ShowBoarChargeItemDropTutorialInternal_d_544 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GameUI_ShowBoarChargeItemDropTutorialInternal_d_544_System_IDisposable_Dispose, (GameUI_ShowBoarChargeItemDropTutorialInternal_d_544 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F8130, bool, GameUI_ShowBoarChargeItemDropTutorialInternal_d_544_MoveNext, (GameUI_ShowBoarChargeItemDropTutorialInternal_d_544 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_ShowBoarChargeItemDropTutorialInternal_d_544_System_Collections_Generic_IEnumerator_System_Object__get_Current, (GameUI_ShowBoarChargeItemDropTutorialInternal_d_544 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F8480, void, GameUI_ShowBoarChargeItemDropTutorialInternal_d_544_System_Collections_IEnumerator_Reset, (GameUI_ShowBoarChargeItemDropTutorialInternal_d_544 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7E08, GameUI_ShowBoarChargeItemDropTutorialInternal_d_544_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_ShowBoarChargeItemDropTutorialInternal_d_544_System_Collections_IEnumerator_get_Current, (GameUI_ShowBoarChargeItemDropTutorialInternal_d_544 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GameUI_c_DisplayClass548_0__ctor, (GameUI_c_DisplayClass548_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GameUI_c_DisplayClass548_1__ctor, (GameUI_c_DisplayClass548_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F84D0, void, GameUI_c_DisplayClass548_1__SetEmotes_b__0, (GameUI_c_DisplayClass548_1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF55F8, GameUI_c_DisplayClass548_1__SetEmotes_b__0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, GameUI_DelayEnableKeyBindingsScrollToSelection_d_556__ctor, (GameUI_DelayEnableKeyBindingsScrollToSelection_d_556 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GameUI_DelayEnableKeyBindingsScrollToSelection_d_556_System_IDisposable_Dispose, (GameUI_DelayEnableKeyBindingsScrollToSelection_d_556 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F88C0, bool, GameUI_DelayEnableKeyBindingsScrollToSelection_d_556_MoveNext, (GameUI_DelayEnableKeyBindingsScrollToSelection_d_556 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_DelayEnableKeyBindingsScrollToSelection_d_556_System_Collections_Generic_IEnumerator_System_Object__get_Current, (GameUI_DelayEnableKeyBindingsScrollToSelection_d_556 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F89B0, void, GameUI_DelayEnableKeyBindingsScrollToSelection_d_556_System_Collections_IEnumerator_Reset, (GameUI_DelayEnableKeyBindingsScrollToSelection_d_556 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7E00, GameUI_DelayEnableKeyBindingsScrollToSelection_d_556_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, GameUI_DelayEnableKeyBindingsScrollToSelection_d_556_System_Collections_IEnumerator_get_Current, (GameUI_DelayEnableKeyBindingsScrollToSelection_d_556 * __this, MethodInfo * method)); DO_APP_FUNC(0x008F8A00, void, GenericEventTrigger_OnTriggerEnter, (GenericEventTrigger * __this, Collider * collider, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, GenericEventTrigger__ctor, (GenericEventTrigger * __this, MethodInfo * method)); @@ -15855,8 +18000,11 @@ DO_APP_FUNC(0x008FA360, void, GraphUpdateListener__ctor, (GraphUpdateListener * DO_APP_FUNC(0x008FA3E0, void, HairWindController_Awake, (HairWindController * __this, MethodInfo * method)); DO_APP_FUNC(0x008FA4B0, void, HairWindController_Attached, (HairWindController * __this, MethodInfo * method)); DO_APP_FUNC(0x008FA690, void, HairWindController_OnMoving, (HairWindController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7DD0, HairWindController_OnMoving__MethodInfo); DO_APP_FUNC(0x008FA750, void, HairWindController_OnAbilityIndex, (HairWindController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7DD8, HairWindController_OnAbilityIndex__MethodInfo); DO_APP_FUNC(0x008FA890, void, HairWindController_OnGlobalGoatBurnEvent, (HairWindController * __this, int32_t number, BoltEntity * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7DE0, HairWindController_OnGlobalGoatBurnEvent__MethodInfo); DO_APP_FUNC(0x008FA8B0, void, HairWindController_AdjustWindZoneParameters, (HairWindController * __this, MethodInfo * method)); DO_APP_FUNC(0x008FAAA0, void, HairWindController_OnDestroy, (HairWindController * __this, MethodInfo * method)); DO_APP_FUNC(0x008FAB80, void, HairWindController__ctor, (HairWindController * __this, MethodInfo * method)); @@ -15864,11 +18012,14 @@ DO_APP_FUNC(0x008FABD0, void, HayBehaviour_Attached, (HayBehaviour * __this, Met DO_APP_FUNC(0x008FACF0, void, HayBehaviour_SetDisableInteract, (HayBehaviour * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x008FAEE0, void, HayBehaviour_SetDroppedByPlayer, (HayBehaviour * __this, BoltEntity * player, MethodInfo * method)); DO_APP_FUNC(0x008FAFD0, void, HayBehaviour_OnDisableInteract, (HayBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7DC8, HayBehaviour_OnDisableInteract__MethodInfo); DO_APP_FUNC(0x008FB1B0, void, HayBehaviour__ctor, (HayBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x008FB200, void, HidingSpotController_Awake, (HidingSpotController * __this, MethodInfo * method)); DO_APP_FUNC(0x008FB4F0, void, HidingSpotController_Attached, (HidingSpotController * __this, MethodInfo * method)); DO_APP_FUNC(0x008FB850, void, HidingSpotController_OnIsOccupied, (HidingSpotController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7D98, HidingSpotController_OnIsOccupied__MethodInfo); DO_APP_FUNC(0x008FB940, void, HidingSpotController_OnIsDestroyed, (HidingSpotController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7DA8, HidingSpotController_OnIsDestroyed__MethodInfo); DO_APP_FUNC(0x008FB960, void, HidingSpotController_SetIsOccupied, (HidingSpotController * __this, BoltEntity * player, MethodInfo * method)); DO_APP_FUNC(0x008FBF90, void, HidingSpotController_SetIsDestroyed, (HidingSpotController * __this, MethodInfo * method)); DO_APP_FUNC(0x008FC1A0, bool, HidingSpotController_IsOccupied, (HidingSpotController * __this, MethodInfo * method)); @@ -15876,6 +18027,7 @@ DO_APP_FUNC(0x008FC4A0, bool, HidingSpotController_IsDestroyed, (HidingSpotContr DO_APP_FUNC(0x008FC660, BoltEntity *, HidingSpotController_GetPlayer, (HidingSpotController * __this, MethodInfo * method)); DO_APP_FUNC(0x008FC820, void, HidingSpotController_PlayDustParticle, (HidingSpotController * __this, MethodInfo * method)); DO_APP_FUNC(0x008FC880, void, HidingSpotController_OnDisconnected, (HidingSpotController * __this, BoltConnection * connection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7DB0, HidingSpotController_OnDisconnected__MethodInfo); DO_APP_FUNC(0x008FCEE0, bool, HidingSpotController_IsInLockedRoom, (HidingSpotController * __this, MethodInfo * method)); DO_APP_FUNC(0x008FCF70, void, HidingSpotController_OnDestroy, (HidingSpotController * __this, MethodInfo * method)); DO_APP_FUNC(0x008FD050, void, HidingSpotController__ctor, (HidingSpotController * __this, MethodInfo * method)); @@ -15893,10 +18045,15 @@ DO_APP_FUNC(0x008FF100, void, IngameStatsTracker_StopTracking, (IngameStatsTrack DO_APP_FUNC(0x008FF180, int32_t, IngameStatsTracker_TryAddPlayer, (IngameStatsTracker * __this, BoltEntity * _player, MethodInfo * method)); DO_APP_FUNC(0x008FF8E0, void, IngameStatsTracker_UpdatePlayerConnectionId, (IngameStatsTracker * __this, String * playerId, uint32_t connectionId, MethodInfo * method)); DO_APP_FUNC(0x008FFAB0, void, IngameStatsTracker_OnGlobalGoatBurnEvent, (IngameStatsTracker * __this, int32_t progress, BoltEntity * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7D58, IngameStatsTracker_OnGlobalGoatBurnEvent__MethodInfo); DO_APP_FUNC(0x008FFB60, void, IngameStatsTracker_OnPlayerFragEnemy, (IngameStatsTracker * __this, BoltEntity * _player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7D50, IngameStatsTracker_OnPlayerFragEnemy__MethodInfo); DO_APP_FUNC(0x008FFD70, void, IngameStatsTracker_OnReviveEvent, (IngameStatsTracker * __this, BoltEntity * _player, BoltEntity * _reviver, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7D40, IngameStatsTracker_OnReviveEvent__MethodInfo); DO_APP_FUNC(0x00900050, void, IngameStatsTracker_OnPlayerStaggerAnna, (IngameStatsTracker * __this, BoltEntity * _player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7D38, IngameStatsTracker_OnPlayerStaggerAnna__MethodInfo); DO_APP_FUNC(0x00900260, void, IngameStatsTracker_OnKnockoutEvent, (IngameStatsTracker * __this, BoltEntity * enemy, BoltEntity * _player, bool usingPoison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7D48, IngameStatsTracker_OnKnockoutEvent__MethodInfo); DO_APP_FUNC(0x00900470, GameStatsToken *, IngameStatsTracker_CreateGameStatsToken, (IngameStatsTracker * __this, MethodInfo * method)); DO_APP_FUNC(0x00900CF0, void, IngameStatsTracker_OnDestroy, (IngameStatsTracker * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, IngameStatsTracker__ctor, (IngameStatsTracker * __this, MethodInfo * method)); @@ -15926,14 +18083,17 @@ DO_APP_FUNC(0x00903B90, void, InnEggRenderer_ForceBurning, (InnEggRenderer * __t DO_APP_FUNC(0x003AE000, void, InnEggRenderer__ctor, (InnEggRenderer * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InnEggRenderer_c_DisplayClass10_0__ctor, (InnEggRenderer_c_DisplayClass10_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00903C30, void, InnEggRenderer_c_DisplayClass10_0__StartBurning_b__0, (InnEggRenderer_c_DisplayClass10_0 * __this, float val, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7CA0, InnEggRenderer_c_DisplayClass10_0__StartBurning_b__0__MethodInfo); DO_APP_FUNC(0x00903C90, void, InnFountainController_Awake, (InnFountainController * __this, MethodInfo * method)); DO_APP_FUNC(0x00903E00, void, InnFountainController_Attached, (InnFountainController * __this, MethodInfo * method)); DO_APP_FUNC(0x00903F20, bool, InnFountainController_IsClean, (InnFountainController * __this, MethodInfo * method)); DO_APP_FUNC(0x009040D0, void, InnFountainController_Clean, (InnFountainController * __this, MethodInfo * method)); DO_APP_FUNC(0x009042C0, void, InnFountainController_Pollute, (InnFountainController * __this, MethodInfo * method)); DO_APP_FUNC(0x00904370, void, InnFountainController_OnIsClean, (InnFountainController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7C98, InnFountainController_OnIsClean__MethodInfo); DO_APP_FUNC(0x00904750, void, InnFountainController__ctor, (InnFountainController * __this, MethodInfo * method)); DO_APP_FUNC(0x009047A0, void, InnFountainController__OnIsClean_b__13_0, (InnFountainController * __this, Color val, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7C78, InnFountainController__OnIsClean_b__13_0__MethodInfo); DO_APP_FUNC(0x00904810, void, InnHoleController_Awake, (InnHoleController * __this, MethodInfo * method)); DO_APP_FUNC(0x00904840, void, InnHoleController_Start, (InnHoleController * __this, MethodInfo * method)); DO_APP_FUNC(0x00904A10, bool, InnHoleController_IsInLockedRoom, (InnHoleController * __this, MethodInfo * method)); @@ -15941,7 +18101,9 @@ DO_APP_FUNC(0x00904A90, bool, InnHoleController_IsSpawnPointAvailable, (InnHoleC DO_APP_FUNC(0x003C74A0, void, InnHoleController_SetSpawnedEgg, (InnHoleController * __this, BoltEntity * entity, MethodInfo * method)); DO_APP_FUNC(0x00904BB0, void, InnHoleController_GetLocalCharacterEntity, (InnHoleController * __this, MethodInfo * method)); DO_APP_FUNC(0x00904E00, void, InnHoleController_OnPlayerPickedUpEvent, (InnHoleController * __this, BoltEntity * killedBy, BoltEntity * player, bool inHidingSpot, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7C60, InnHoleController_OnPlayerPickedUpEvent__MethodInfo); DO_APP_FUNC(0x00905070, void, InnHoleController_OnKnockoutEvent, (InnHoleController * __this, BoltEntity * killedBy, BoltEntity * player, bool usingPoison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7C68, InnHoleController_OnKnockoutEvent__MethodInfo); DO_APP_FUNC(0x009052E0, void, InnHoleController_OnTriggerEnter, (InnHoleController * __this, Collider * collider, MethodInfo * method)); DO_APP_FUNC(0x00905590, void, InnHoleController_OnTriggerExit, (InnHoleController * __this, Collider * collider, MethodInfo * method)); DO_APP_FUNC(0x009057F0, void, InnHoleController_PlayDust, (InnHoleController * __this, MethodInfo * method)); @@ -15951,9 +18113,11 @@ DO_APP_FUNC(0x00905990, void, InnIntro_StartIntro, (InnIntro * __this, MethodInf DO_APP_FUNC(0x00905CB0, void, InnIntro_OnTriggerEnter, (InnIntro * __this, Collider * other, MethodInfo * method)); DO_APP_FUNC(0x00905F60, void, InnIntro_LockIntroDoors, (InnIntro * __this, MethodInfo * method)); DO_APP_FUNC(0x00905FF0, void, InnIntro_ZaraEnteredHoleTrigger, (InnIntro * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7C50, InnIntro_ZaraEnteredHoleTrigger__MethodInfo); DO_APP_FUNC(0x00906100, void, InnIntro_EndIntro, (InnIntro * __this, MethodInfo * method)); DO_APP_FUNC(0x005C31B0, bool, InnIntro_HasZaraEnteredHole, (InnIntro * __this, MethodInfo * method)); DO_APP_FUNC(0x00906260, void, InnIntro_PlayerEnteredSpidersTrigger, (InnIntro * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7C58, InnIntro_PlayerEnteredSpidersTrigger__MethodInfo); DO_APP_FUNC(0x009065E0, IEnumerator *, InnIntro_EndIntroDelayed, (InnIntro * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, InnIntro__ctor, (InnIntro * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, InnIntro_EndIntroDelayed_d_18__ctor, (InnIntro_EndIntroDelayed_d_18 * __this, int32_t __1__state, MethodInfo * method)); @@ -15961,6 +18125,7 @@ DO_APP_FUNC(0x003AE050, void, InnIntro_EndIntroDelayed_d_18_System_IDisposable_D DO_APP_FUNC(0x00906680, bool, InnIntro_EndIntroDelayed_d_18_MoveNext, (InnIntro_EndIntroDelayed_d_18 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, InnIntro_EndIntroDelayed_d_18_System_Collections_Generic_IEnumerator_System_Object__get_Current, (InnIntro_EndIntroDelayed_d_18 * __this, MethodInfo * method)); DO_APP_FUNC(0x00906760, void, InnIntro_EndIntroDelayed_d_18_System_Collections_IEnumerator_Reset, (InnIntro_EndIntroDelayed_d_18 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7C38, InnIntro_EndIntroDelayed_d_18_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, InnIntro_EndIntroDelayed_d_18_System_Collections_IEnumerator_get_Current, (InnIntro_EndIntroDelayed_d_18 * __this, MethodInfo * method)); DO_APP_FUNC(0x009067B0, void, InnMapController_Awake, (InnMapController * __this, MethodInfo * method)); DO_APP_FUNC(0x00906E20, void, InnMapController_Attached, (InnMapController * __this, MethodInfo * method)); @@ -15972,16 +18137,21 @@ DO_APP_FUNC(0x009078D0, void, InnMapController_SpawnShrines, (InnMapController * DO_APP_FUNC(0x00908CF0, void, InnMapController_LockShrines, (InnMapController * __this, MethodInfo * method)); DO_APP_FUNC(0x00908E40, void, InnMapController_SpawnShrineKeys, (InnMapController * __this, MethodInfo * method)); DO_APP_FUNC(0x009096C0, void, InnMapController_OnIsAzazelActive, (InnMapController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7BD8, InnMapController_OnIsAzazelActive__MethodInfo); DO_APP_FUNC(0x009099B0, int32_t, InnMapController_AddEggToWorld, (InnMapController * __this, MethodInfo * method)); DO_APP_FUNC(0x00909D20, int32_t, InnMapController_GetNumEggsInWorld, (InnMapController * __this, MethodInfo * method)); DO_APP_FUNC(0x00909D70, void, InnMapController__ctor, (InnMapController * __this, MethodInfo * method)); DO_APP_FUNC(0x0090A170, void, InnMapController_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InnMapController_c__ctor, (InnMapController_c * __this, MethodInfo * method)); DO_APP_FUNC(0x0090A220, InitialGoatSpawn *, InnMapController_c__SpawnShrines_b__27_0, (InnMapController_c * __this, GameObject * go, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7AD8, InnMapController_c__SpawnShrines_b__27_0__MethodInfo); DO_APP_FUNC(0x0090A270, Transform *, InnMapController_c__SpawnShrines_b__27_1, (InnMapController_c * __this, GameObject * go, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7AE0, InnMapController_c__SpawnShrines_b__27_1__MethodInfo); DO_APP_FUNC(0x0090A2D0, Transform *, InnMapController_c__SpawnShrines_b__27_2, (InnMapController_c * __this, InitialGoatSpawn * component, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7AC8, InnMapController_c__SpawnShrines_b__27_2__MethodInfo); DO_APP_FUNC(0x003AE050, void, InnMapController_c_DisplayClass29_0__ctor, (InnMapController_c_DisplayClass29_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00542450, int32_t, InnMapController_c_DisplayClass29_0__SpawnShrineKeys_b__0, (InnMapController_c_DisplayClass29_0 * __this, GameObject * spawnPoint, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7AB0, InnMapController_c_DisplayClass29_0__SpawnShrineKeys_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, InnSymbol__ctor, (InnSymbol * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, InnMazeBlocker__ctor, (InnMazeBlocker * __this, MethodInfo * method)); DO_APP_FUNC(0x0090A330, void, InnMazeController_Awake, (InnMazeController * __this, MethodInfo * method)); @@ -15992,9 +18162,12 @@ DO_APP_FUNC(0x0090BA80, void, InnMazeController__ctor, (InnMazeController * __th DO_APP_FUNC(0x0090BAD0, void, InnMazeController_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InnMazeController_c__ctor, (InnMazeController_c * __this, MethodInfo * method)); DO_APP_FUNC(0x0090BB80, int32_t, InnMazeController_c__Attached_b__11_0, (InnMazeController_c * __this, int32_t a, int32_t b, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7A10, InnMazeController_c__Attached_b__11_0__MethodInfo); DO_APP_FUNC(0x003AE050, void, InnMazeController_c_DisplayClass12_0__ctor, (InnMazeController_c_DisplayClass12_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0090BBA0, void, InnMazeController_c_DisplayClass12_0__OnTriggerEnter_b__0, (InnMazeController_c_DisplayClass12_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF79D8, InnMazeController_c_DisplayClass12_0__OnTriggerEnter_b__0__MethodInfo); DO_APP_FUNC(0x0090BF00, void, InnMazeController_c_DisplayClass12_0__OnTriggerEnter_b__1, (InnMazeController_c_DisplayClass12_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA258, InnMazeController_c_DisplayClass12_0__OnTriggerEnter_b__1__MethodInfo); DO_APP_FUNC(0x0090BFC0, void, InnMazeSpiderController_Awake, (InnMazeSpiderController * __this, MethodInfo * method)); DO_APP_FUNC(0x0090C260, void, InnMazeSpiderController_OnTriggerEnter, (InnMazeSpiderController * __this, Collider * collider, MethodInfo * method)); DO_APP_FUNC(0x0090C410, void, InnMazeSpiderController_Play, (InnMazeSpiderController * __this, MethodInfo * method)); @@ -16002,11 +18175,15 @@ DO_APP_FUNC(0x0086BED0, void, InnMazeSpiderController_Reset, (InnMazeSpiderContr DO_APP_FUNC(0x0090C690, void, InnMazeSpiderController_SetArachnophobiaMode, (InnMazeSpiderController * __this, bool on, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, InnMazeSpiderController__ctor, (InnMazeSpiderController * __this, MethodInfo * method)); DO_APP_FUNC(0x0090C720, void, InnMazeSpiderController__Play_b__9_0, (InnMazeSpiderController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA250, InnMazeSpiderController__Play_b__9_0__MethodInfo); DO_APP_FUNC(0x0090C840, void, InnShojiDoorCrawlRendering_Start, (InnShojiDoorCrawlRendering * __this, MethodInfo * method)); DO_APP_FUNC(0x0090CAA0, void, InnShojiDoorCrawlRendering_GetLocalCharacterEntity, (InnShojiDoorCrawlRendering * __this, MethodInfo * method)); DO_APP_FUNC(0x0090CCF0, void, InnShojiDoorCrawlRendering_OnPlayerPickedUpEvent, (InnShojiDoorCrawlRendering * __this, BoltEntity * killedBy, BoltEntity * player, bool inHidingSpot, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA248, InnShojiDoorCrawlRendering_OnPlayerPickedUpEvent__MethodInfo); DO_APP_FUNC(0x0090CF60, void, InnShojiDoorCrawlRendering_OnKnockoutEvent, (InnShojiDoorCrawlRendering * __this, BoltEntity * killedBy, BoltEntity * player, bool usingPoison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA240, InnShojiDoorCrawlRendering_OnKnockoutEvent__MethodInfo); DO_APP_FUNC(0x0090D2C0, void, InnShojiDoorCrawlRendering_OnReviveEvent, (InnShojiDoorCrawlRendering * __this, BoltEntity * player, BoltEntity * reviver, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA238, InnShojiDoorCrawlRendering_OnReviveEvent__MethodInfo); DO_APP_FUNC(0x0090D5C0, void, InnShojiDoorCrawlRendering_SetTransparentCrawl, (InnShojiDoorCrawlRendering * __this, MethodInfo * method)); DO_APP_FUNC(0x0090D6F0, void, InnShojiDoorCrawlRendering_SetTransparent, (InnShojiDoorCrawlRendering * __this, MethodInfo * method)); DO_APP_FUNC(0x0090D7A0, IEnumerator *, InnShojiDoorCrawlRendering_SetTransparentInternal, (InnShojiDoorCrawlRendering * __this, MethodInfo * method)); @@ -16017,11 +18194,14 @@ DO_APP_FUNC(0x003AE050, void, InnShojiDoorCrawlRendering_SetTransparentInternal_ DO_APP_FUNC(0x0090DA10, bool, InnShojiDoorCrawlRendering_SetTransparentInternal_d_12_MoveNext, (InnShojiDoorCrawlRendering_SetTransparentInternal_d_12 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, InnShojiDoorCrawlRendering_SetTransparentInternal_d_12_System_Collections_Generic_IEnumerator_System_Object__get_Current, (InnShojiDoorCrawlRendering_SetTransparentInternal_d_12 * __this, MethodInfo * method)); DO_APP_FUNC(0x0090DCD0, void, InnShojiDoorCrawlRendering_SetTransparentInternal_d_12_System_Collections_IEnumerator_Reset, (InnShojiDoorCrawlRendering_SetTransparentInternal_d_12 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA228, InnShojiDoorCrawlRendering_SetTransparentInternal_d_12_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, InnShojiDoorCrawlRendering_SetTransparentInternal_d_12_System_Collections_IEnumerator_get_Current, (InnShojiDoorCrawlRendering_SetTransparentInternal_d_12 * __this, MethodInfo * method)); DO_APP_FUNC(0x0090DD20, void, InnShrineController_Awake, (InnShrineController * __this, MethodInfo * method)); DO_APP_FUNC(0x0090E4C0, void, InnShrineController_Attached, (InnShrineController * __this, MethodInfo * method)); DO_APP_FUNC(0x0090E6A0, void, InnShrineController_OnType, (InnShrineController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA218, InnShrineController_OnType__MethodInfo); DO_APP_FUNC(0x0090E7F0, void, InnShrineController_OnEgg, (InnShrineController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA210, InnShrineController_OnEgg__MethodInfo); DO_APP_FUNC(0x0090EC40, void, InnShrineController_SetType, (InnShrineController * __this, int32_t type, MethodInfo * method)); DO_APP_FUNC(0x0090EE30, void, InnShrineController_PlaceEgg, (InnShrineController * __this, BoltEntity * player, MethodInfo * method)); DO_APP_FUNC(0x0090F0B0, bool, InnShrineController_HasEgg, (InnShrineController * __this, MethodInfo * method)); @@ -16029,22 +18209,30 @@ DO_APP_FUNC(0x0090F270, int32_t, InnShrineController_GetEggType, (InnShrineContr DO_APP_FUNC(0x0090F430, IEnumerator *, InnShrineController_DestroyShrine, (InnShrineController * __this, MethodInfo * method)); DO_APP_FUNC(0x0090F4D0, void, InnShrineController__ctor, (InnShrineController * __this, MethodInfo * method)); DO_APP_FUNC(0x0090F520, void, InnShrineController__DestroyShrine_b__34_0, (InnShrineController * __this, float val, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA1F0, InnShrineController__DestroyShrine_b__34_0__MethodInfo); DO_APP_FUNC(0x0090F580, void, InnShrineController__DestroyShrine_b__34_1, (InnShrineController * __this, float val, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA1F8, InnShrineController__DestroyShrine_b__34_1__MethodInfo); DO_APP_FUNC(0x0090F620, void, InnShrineController__DestroyShrine_b__34_2, (InnShrineController * __this, float val, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA1E0, InnShrineController__DestroyShrine_b__34_2__MethodInfo); DO_APP_FUNC(0x0090F690, void, InnShrineController__DestroyShrine_b__34_3, (InnShrineController * __this, float val, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA1E8, InnShrineController__DestroyShrine_b__34_3__MethodInfo); DO_APP_FUNC(0x0090F620, void, InnShrineController__DestroyShrine_b__34_4, (InnShrineController * __this, float val, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA1D0, InnShrineController__DestroyShrine_b__34_4__MethodInfo); DO_APP_FUNC(0x0090F730, void, InnShrineController__DestroyShrine_b__34_5, (InnShrineController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA1D8, InnShrineController__DestroyShrine_b__34_5__MethodInfo); DO_APP_FUNC(0x003BCD60, void, InnShrineController_DestroyShrine_d_34__ctor, (InnShrineController_DestroyShrine_d_34 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InnShrineController_DestroyShrine_d_34_System_IDisposable_Dispose, (InnShrineController_DestroyShrine_d_34 * __this, MethodInfo * method)); DO_APP_FUNC(0x0090F790, bool, InnShrineController_DestroyShrine_d_34_MoveNext, (InnShrineController_DestroyShrine_d_34 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, InnShrineController_DestroyShrine_d_34_System_Collections_Generic_IEnumerator_System_Object__get_Current, (InnShrineController_DestroyShrine_d_34 * __this, MethodInfo * method)); DO_APP_FUNC(0x00910220, void, InnShrineController_DestroyShrine_d_34_System_Collections_IEnumerator_Reset, (InnShrineController_DestroyShrine_d_34 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA1C8, InnShrineController_DestroyShrine_d_34_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, InnShrineController_DestroyShrine_d_34_System_Collections_IEnumerator_get_Current, (InnShrineController_DestroyShrine_d_34 * __this, MethodInfo * method)); DO_APP_FUNC(0x00910270, void, InnWebController_Awake, (InnWebController * __this, MethodInfo * method)); DO_APP_FUNC(0x009109C0, void, InnWebController_Start, (InnWebController * __this, MethodInfo * method)); DO_APP_FUNC(0x00910C20, void, InnWebController_Attached, (InnWebController * __this, MethodInfo * method)); DO_APP_FUNC(0x00910DA0, void, InnWebController_Activate, (InnWebController * __this, MethodInfo * method)); DO_APP_FUNC(0x00910E40, void, InnWebController_OnOn, (InnWebController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA198, InnWebController_OnOn__MethodInfo); DO_APP_FUNC(0x00911940, void, InnWebController_SetupPlayers, (InnWebController * __this, bool resetCache, MethodInfo * method)); DO_APP_FUNC(0x00911AB0, void, InnWebController_SetupPlayersInternal, (InnWebController * __this, MethodInfo * method)); DO_APP_FUNC(0x009121B0, IEnumerator *, InnWebController_WaitToEnableCollider, (InnWebController * __this, MethodInfo * method)); @@ -16053,8 +18241,11 @@ DO_APP_FUNC(0x00912FB0, IEnumerator *, InnWebController_FadeIn, (InnWebControlle DO_APP_FUNC(0x00913050, IEnumerator *, InnWebController_Dissolve, (InnWebController * __this, MethodInfo * method)); DO_APP_FUNC(0x009130F0, void, InnWebController_GetLocalCharacterEntity, (InnWebController * __this, MethodInfo * method)); DO_APP_FUNC(0x00913350, void, InnWebController_OnPlayerPickedUpEvent, (InnWebController * __this, BoltEntity * killedBy, BoltEntity * player, bool inHidingSpot, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA1A0, InnWebController_OnPlayerPickedUpEvent__MethodInfo); DO_APP_FUNC(0x009135C0, void, InnWebController_OnKnockoutEvent, (InnWebController * __this, BoltEntity * killedBy, BoltEntity * player, bool usingPoison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA1B0, InnWebController_OnKnockoutEvent__MethodInfo); DO_APP_FUNC(0x00913920, void, InnWebController_OnReviveEvent, (InnWebController * __this, BoltEntity * player, BoltEntity * reviver, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA1A8, InnWebController_OnReviveEvent__MethodInfo); DO_APP_FUNC(0x00913C60, void, InnWebController_SetUnlitMaterials, (InnWebController * __this, MethodInfo * method)); DO_APP_FUNC(0x00913D60, void, InnWebController_SetNormalMaterials, (InnWebController * __this, MethodInfo * method)); DO_APP_FUNC(0x00913E60, void, InnWebController_OnDestroy, (InnWebController * __this, MethodInfo * method)); @@ -16064,18 +18255,21 @@ DO_APP_FUNC(0x003AE050, void, InnWebController_WaitToEnableCollider_d_37_System_ DO_APP_FUNC(0x00914350, bool, InnWebController_WaitToEnableCollider_d_37_MoveNext, (InnWebController_WaitToEnableCollider_d_37 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, InnWebController_WaitToEnableCollider_d_37_System_Collections_Generic_IEnumerator_System_Object__get_Current, (InnWebController_WaitToEnableCollider_d_37 * __this, MethodInfo * method)); DO_APP_FUNC(0x009146C0, void, InnWebController_WaitToEnableCollider_d_37_System_Collections_IEnumerator_Reset, (InnWebController_WaitToEnableCollider_d_37 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA130, InnWebController_WaitToEnableCollider_d_37_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, InnWebController_WaitToEnableCollider_d_37_System_Collections_IEnumerator_get_Current, (InnWebController_WaitToEnableCollider_d_37 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, InnWebController_FadeIn_d_39__ctor, (InnWebController_FadeIn_d_39 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InnWebController_FadeIn_d_39_System_IDisposable_Dispose, (InnWebController_FadeIn_d_39 * __this, MethodInfo * method)); DO_APP_FUNC(0x00914710, bool, InnWebController_FadeIn_d_39_MoveNext, (InnWebController_FadeIn_d_39 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, InnWebController_FadeIn_d_39_System_Collections_Generic_IEnumerator_System_Object__get_Current, (InnWebController_FadeIn_d_39 * __this, MethodInfo * method)); DO_APP_FUNC(0x00915680, void, InnWebController_FadeIn_d_39_System_Collections_IEnumerator_Reset, (InnWebController_FadeIn_d_39 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA120, InnWebController_FadeIn_d_39_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, InnWebController_FadeIn_d_39_System_Collections_IEnumerator_get_Current, (InnWebController_FadeIn_d_39 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, InnWebController_Dissolve_d_40__ctor, (InnWebController_Dissolve_d_40 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InnWebController_Dissolve_d_40_System_IDisposable_Dispose, (InnWebController_Dissolve_d_40 * __this, MethodInfo * method)); DO_APP_FUNC(0x009156D0, bool, InnWebController_Dissolve_d_40_MoveNext, (InnWebController_Dissolve_d_40 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, InnWebController_Dissolve_d_40_System_Collections_Generic_IEnumerator_System_Object__get_Current, (InnWebController_Dissolve_d_40 * __this, MethodInfo * method)); DO_APP_FUNC(0x00915F00, void, InnWebController_Dissolve_d_40_System_Collections_IEnumerator_Reset, (InnWebController_Dissolve_d_40 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA118, InnWebController_Dissolve_d_40_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, InnWebController_Dissolve_d_40_System_Collections_IEnumerator_get_Current, (InnWebController_Dissolve_d_40 * __this, MethodInfo * method)); DO_APP_FUNC(0x00915F50, void, InnWebTrigger_OnTriggerExit, (InnWebTrigger * __this, Collider * collider, MethodInfo * method)); DO_APP_FUNC(0x00916890, IEnumerator *, InnWebTrigger_DisableShootRun, (InnWebTrigger * __this, Animator * animator, MethodInfo * method)); @@ -16086,15 +18280,19 @@ DO_APP_FUNC(0x003AE050, void, InnWebTrigger_DisableShootRun_d_3_System_IDisposab DO_APP_FUNC(0x009169E0, bool, InnWebTrigger_DisableShootRun_d_3_MoveNext, (InnWebTrigger_DisableShootRun_d_3 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, InnWebTrigger_DisableShootRun_d_3_System_Collections_Generic_IEnumerator_System_Object__get_Current, (InnWebTrigger_DisableShootRun_d_3 * __this, MethodInfo * method)); DO_APP_FUNC(0x00916CB0, void, InnWebTrigger_DisableShootRun_d_3_System_Collections_IEnumerator_Reset, (InnWebTrigger_DisableShootRun_d_3 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA100, InnWebTrigger_DisableShootRun_d_3_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, InnWebTrigger_DisableShootRun_d_3_System_Collections_IEnumerator_get_Current, (InnWebTrigger_DisableShootRun_d_3 * __this, MethodInfo * method)); DO_APP_FUNC(0x00916D00, void, SurvivalEggController_Awake, (SurvivalEggController * __this, MethodInfo * method)); DO_APP_FUNC(0x00916EC0, void, SurvivalEggController_Attached, (SurvivalEggController * __this, MethodInfo * method)); DO_APP_FUNC(0x009170A0, void, SurvivalEggController_OnMetadata, (SurvivalEggController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA0E8, SurvivalEggController_OnMetadata__MethodInfo); DO_APP_FUNC(0x00917170, void, SurvivalEggController_OnDisableInteract, (SurvivalEggController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA0F0, SurvivalEggController_OnDisableInteract__MethodInfo); DO_APP_FUNC(0x00917490, IEnumerator *, SurvivalEggController_DelayEnableInteract, (SurvivalEggController * __this, MethodInfo * method)); DO_APP_FUNC(0x00917530, void, SurvivalEggController_SetMetadata, (SurvivalEggController * __this, String * metadata, bool vomited, MethodInfo * method)); DO_APP_FUNC(0x009176D0, void, SurvivalEggController_PlayShakeAudioClip, (SurvivalEggController * __this, MethodInfo * method)); DO_APP_FUNC(0x009176F0, void, SurvivalEggController_OnGlobalGoatBurnEvent, (SurvivalEggController * __this, int32_t numObjectsBurned, BoltEntity * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA0F8, SurvivalEggController_OnGlobalGoatBurnEvent__MethodInfo); DO_APP_FUNC(0x009177C0, void, SurvivalEggController_OnDestroy, (SurvivalEggController * __this, MethodInfo * method)); DO_APP_FUNC(0x009178A0, void, SurvivalEggController__ctor, (SurvivalEggController * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, SurvivalEggController_DelayEnableInteract_d_10__ctor, (SurvivalEggController_DelayEnableInteract_d_10 * __this, int32_t __1__state, MethodInfo * method)); @@ -16102,12 +18300,17 @@ DO_APP_FUNC(0x003AE050, void, SurvivalEggController_DelayEnableInteract_d_10_Sys DO_APP_FUNC(0x009178F0, bool, SurvivalEggController_DelayEnableInteract_d_10_MoveNext, (SurvivalEggController_DelayEnableInteract_d_10 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalEggController_DelayEnableInteract_d_10_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SurvivalEggController_DelayEnableInteract_d_10 * __this, MethodInfo * method)); DO_APP_FUNC(0x00917B80, void, SurvivalEggController_DelayEnableInteract_d_10_System_Collections_IEnumerator_Reset, (SurvivalEggController_DelayEnableInteract_d_10 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA0D8, SurvivalEggController_DelayEnableInteract_d_10_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalEggController_DelayEnableInteract_d_10_System_Collections_IEnumerator_get_Current, (SurvivalEggController_DelayEnableInteract_d_10 * __this, MethodInfo * method)); DO_APP_FUNC(0x00917BD0, void, IntroFlashlightController_Start, (IntroFlashlightController * __this, MethodInfo * method)); DO_APP_FUNC(0x00917ED0, void, IntroFlashlightController_OnPlayerFlickerTriggerEnter, (IntroFlashlightController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA0C8, IntroFlashlightController_OnPlayerFlickerTriggerEnter__MethodInfo); DO_APP_FUNC(0x00917F40, void, IntroFlashlightController_OnPlayerFlickerTriggerExit, (IntroFlashlightController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA0B0, IntroFlashlightController_OnPlayerFlickerTriggerExit__MethodInfo); DO_APP_FUNC(0x00917FC0, void, IntroFlashlightController_OnPlayerFlashlightOffTriggerEnter, (IntroFlashlightController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA0D0, IntroFlashlightController_OnPlayerFlashlightOffTriggerEnter__MethodInfo); DO_APP_FUNC(0x00918020, void, IntroFlashlightController_OnPlayerFlashlightOffTriggerExit, (IntroFlashlightController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA0C0, IntroFlashlightController_OnPlayerFlashlightOffTriggerExit__MethodInfo); DO_APP_FUNC(0x009180D0, void, IntroFlashlightController_OnDestroy, (IntroFlashlightController * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, IntroFlashlightController__ctor, (IntroFlashlightController * __this, MethodInfo * method)); DO_APP_FUNC(0x00918130, void, IntroTrigger_Awake, (IntroTrigger * __this, MethodInfo * method)); @@ -16115,6 +18318,7 @@ DO_APP_FUNC(0x00918210, void, IntroTrigger_OnTriggerEnter, (IntroTrigger * __thi DO_APP_FUNC(0x009184C0, void, IntroTrigger_OnTriggerExit, (IntroTrigger * __this, Collider * collider, MethodInfo * method)); DO_APP_FUNC(0x009187C0, int32_t, IntroTrigger_NumPlayersInsideTrigger, (IntroTrigger * __this, MethodInfo * method)); DO_APP_FUNC(0x00918810, void, IntroTrigger_OnPlayerDetached, (IntroTrigger * __this, BoltEntity * entity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA0A8, IntroTrigger_OnPlayerDetached__MethodInfo); DO_APP_FUNC(0x00918A70, void, IntroTrigger_OnDestroy, (IntroTrigger * __this, MethodInfo * method)); DO_APP_FUNC(0x00918B50, void, IntroTrigger__ctor, (IntroTrigger * __this, MethodInfo * method)); DO_APP_FUNC(0x003F7AE0, void, IntroTrigger_OnAllPlayersExitedDelegate__ctor, (IntroTrigger_OnAllPlayersExitedDelegate * __this, Object * object, void * method_1, MethodInfo * method)); @@ -16135,12 +18339,15 @@ DO_APP_FUNC(0x003F7C10, IAsyncResult *, IntroTrigger_OnPlayerExitedDelegate_Begi DO_APP_FUNC(0x003BA270, void, IntroTrigger_OnPlayerExitedDelegate_EndInvoke, (IntroTrigger_OnPlayerExitedDelegate * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x00918C50, void, JoinDiscord_Start, (JoinDiscord * __this, MethodInfo * method)); DO_APP_FUNC(0x00918D20, void, JoinDiscord_OnClick, (JoinDiscord * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA0A0, JoinDiscord_OnClick__MethodInfo); DO_APP_FUNC(0x003AE000, void, JoinDiscord__ctor, (JoinDiscord * __this, MethodInfo * method)); DO_APP_FUNC(0x00918DA0, void, JumpScare_Awake, (JumpScare * __this, MethodInfo * method)); DO_APP_FUNC(0x00919270, void, JumpScare_Start, (JumpScare * __this, MethodInfo * method)); DO_APP_FUNC(0x009196D0, void, JumpScare_Activate, (JumpScare * __this, BoltEntity * killedBy, MethodInfo * method)); DO_APP_FUNC(0x0091A960, void, JumpScare_OnEnd, (JumpScare * __this, PlayableDirector * d, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA070, JumpScare_OnEnd__MethodInfo); DO_APP_FUNC(0x0091B2D0, void, JumpScare_OnStart, (JumpScare * __this, PlayableDirector * d, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA078, JumpScare_OnStart__MethodInfo); DO_APP_FUNC(0x0091B390, IEnumerator *, JumpScare_ShowCamera, (JumpScare * __this, MethodInfo * method)); DO_APP_FUNC(0x0091B430, IEnumerator *, JumpScare_TransitionToNormalAudio, (JumpScare * __this, MethodInfo * method)); DO_APP_FUNC(0x0091B4D0, void, JumpScare_PurgeDynamicAudio, (JumpScare * __this, MethodInfo * method)); @@ -16152,16 +18359,19 @@ DO_APP_FUNC(0x003AE050, void, JumpScare_ShowCamera_d_41_System_IDisposable_Dispo DO_APP_FUNC(0x0091BC80, bool, JumpScare_ShowCamera_d_41_MoveNext, (JumpScare_ShowCamera_d_41 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, JumpScare_ShowCamera_d_41_System_Collections_Generic_IEnumerator_System_Object__get_Current, (JumpScare_ShowCamera_d_41 * __this, MethodInfo * method)); DO_APP_FUNC(0x0091BE80, void, JumpScare_ShowCamera_d_41_System_Collections_IEnumerator_Reset, (JumpScare_ShowCamera_d_41 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA048, JumpScare_ShowCamera_d_41_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, JumpScare_ShowCamera_d_41_System_Collections_IEnumerator_get_Current, (JumpScare_ShowCamera_d_41 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, JumpScare_TransitionToNormalAudio_d_42__ctor, (JumpScare_TransitionToNormalAudio_d_42 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, JumpScare_TransitionToNormalAudio_d_42_System_IDisposable_Dispose, (JumpScare_TransitionToNormalAudio_d_42 * __this, MethodInfo * method)); DO_APP_FUNC(0x0091BED0, bool, JumpScare_TransitionToNormalAudio_d_42_MoveNext, (JumpScare_TransitionToNormalAudio_d_42 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, JumpScare_TransitionToNormalAudio_d_42_System_Collections_Generic_IEnumerator_System_Object__get_Current, (JumpScare_TransitionToNormalAudio_d_42 * __this, MethodInfo * method)); DO_APP_FUNC(0x0091C0D0, void, JumpScare_TransitionToNormalAudio_d_42_System_Collections_IEnumerator_Reset, (JumpScare_TransitionToNormalAudio_d_42 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA040, JumpScare_TransitionToNormalAudio_d_42_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, JumpScare_TransitionToNormalAudio_d_42_System_Collections_IEnumerator_get_Current, (JumpScare_TransitionToNormalAudio_d_42 * __this, MethodInfo * method)); DO_APP_FUNC(0x0091C120, void, JumpScare_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, JumpScare_c__ctor, (JumpScare_c * __this, MethodInfo * method)); DO_APP_FUNC(0x0091C1D0, bool, JumpScare_c__PurgeDynamicAudio_b__43_0, (JumpScare_c * __this, TrackAsset * output, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA058, JumpScare_c__PurgeDynamicAudio_b__43_0__MethodInfo); DO_APP_FUNC(0x0091C260, void, JumpScareVRCamera_Awake, (JumpScareVRCamera * __this, MethodInfo * method)); DO_APP_FUNC(0x0091C330, void, JumpScareVRCamera_SyncWithCamera, (JumpScareVRCamera * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, JumpScareVRCamera__ctor, (JumpScareVRCamera * __this, MethodInfo * method)); @@ -16170,6 +18380,7 @@ DO_APP_FUNC(0x0091CB10, void, KeyBehaviour_Attached, (KeyBehaviour * __this, Met DO_APP_FUNC(0x0091D1B0, void, KeyBehaviour_SetKeyName, (KeyBehaviour * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x0091D2C0, String *, KeyBehaviour_GetKeyName, (KeyBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0091D370, void, KeyBehaviour_OnMetadata, (KeyBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA038, KeyBehaviour_OnMetadata__MethodInfo); DO_APP_FUNC(0x0091D660, void, KeyBehaviour__ctor, (KeyBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, KeyListItem__ctor, (KeyListItem * __this, MethodInfo * method)); DO_APP_FUNC(0x0091D6B0, bool, KeySpawnPoint_CanSpawnKey, (KeySpawnPoint * __this, MethodInfo * method)); @@ -16196,6 +18407,7 @@ DO_APP_FUNC(0x003AE050, void, EndingLightFade_FadeLightsOut_d_5_System_IDisposab DO_APP_FUNC(0x00921220, bool, EndingLightFade_FadeLightsOut_d_5_MoveNext, (EndingLightFade_FadeLightsOut_d_5 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, EndingLightFade_FadeLightsOut_d_5_System_Collections_Generic_IEnumerator_System_Object__get_Current, (EndingLightFade_FadeLightsOut_d_5 * __this, MethodInfo * method)); DO_APP_FUNC(0x00921580, void, EndingLightFade_FadeLightsOut_d_5_System_Collections_IEnumerator_Reset, (EndingLightFade_FadeLightsOut_d_5 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9FD8, EndingLightFade_FadeLightsOut_d_5_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, EndingLightFade_FadeLightsOut_d_5_System_Collections_IEnumerator_get_Current, (EndingLightFade_FadeLightsOut_d_5 * __this, MethodInfo * method)); DO_APP_FUNC(0x009215D0, void, LightShadowsTrigger_Awake, (LightShadowsTrigger * __this, MethodInfo * method)); DO_APP_FUNC(0x00921740, void, LightShadowsTrigger_OnTriggerEnter, (LightShadowsTrigger * __this, Collider * collider, MethodInfo * method)); @@ -16208,6 +18420,7 @@ DO_APP_FUNC(0x00921E80, void, LockedCharacter_Awake, (LockedCharacter * __this, DO_APP_FUNC(0x003AE050, void, LockedCharacter_Start, (LockedCharacter * __this, MethodInfo * method)); DO_APP_FUNC(0x00921FB0, void, LockedCharacter_Attached, (LockedCharacter * __this, MethodInfo * method)); DO_APP_FUNC(0x00922150, void, LockedCharacter_OnLocked, (LockedCharacter * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9FB0, LockedCharacter_OnLocked__MethodInfo); DO_APP_FUNC(0x00922290, void, LockedCharacter__ctor, (LockedCharacter * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, Dictionary_2_UnityEngine_GameObject_UnityEngine_GameObject_ *, CrowPerchManager_get_perchOccupationList, (CrowPerchManager * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCDE0, void, CrowPerchManager_set_perchOccupationList, (CrowPerchManager * __this, Dictionary_2_UnityEngine_GameObject_UnityEngine_GameObject_ * value, MethodInfo * method)); @@ -16215,17 +18428,21 @@ DO_APP_FUNC(0x009222E0, void, CrowPerchManager_Awake, (CrowPerchManager * __this DO_APP_FUNC(0x00922630, List_1_UnityEngine_GameObject_ *, CrowPerchManager_GetAvailablePerches, (CrowPerchManager * __this, MethodInfo * method)); DO_APP_FUNC(0x009229A0, bool, CrowPerchManager_ClaimPerch, (CrowPerchManager * __this, GameObject * perch, GameObject * crow, MethodInfo * method)); DO_APP_FUNC(0x00922B90, void, CrowPerchManager_ReleasePerch, (CrowPerchManager * __this, GameObject * perch, GameObject * crow, MethodInfo * method)); -DO_APP_FUNC(0x00922DF0, bool, CrowPerchManager_ClaimRandomPerch, (CrowPerchManager * __this, GameObject * crow, GameObject * perch, MethodInfo * method)); +DO_APP_FUNC(0x00922DF0, bool, CrowPerchManager_ClaimRandomPerch, (CrowPerchManager * __this, GameObject * crow, GameObject * * perch, MethodInfo * method)); DO_APP_FUNC(0x00923140, void, CrowPerchManager__ctor, (CrowPerchManager * __this, MethodInfo * method)); DO_APP_FUNC(0x00923250, void, CrowPerchManager_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CrowPerchManager_c__ctor, (CrowPerchManager_c * __this, MethodInfo * method)); DO_APP_FUNC(0x00923300, GameObject *, CrowPerchManager_c__Awake_b__5_0, (CrowPerchManager_c * __this, GameObject * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9F88, CrowPerchManager_c__Awake_b__5_0__MethodInfo); DO_APP_FUNC(0x009233F0, bool, CrowPerchManager_c__GetAvailablePerches_b__6_0, (CrowPerchManager_c * __this, KeyValuePair_2_UnityEngine_GameObject_UnityEngine_GameObject_ kvp, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9F60, CrowPerchManager_c__GetAvailablePerches_b__6_0__MethodInfo); DO_APP_FUNC(0x00923500, GameObject *, CrowPerchManager_c__GetAvailablePerches_b__6_1, (CrowPerchManager_c * __this, KeyValuePair_2_UnityEngine_GameObject_UnityEngine_GameObject_ kvp, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9F50, CrowPerchManager_c__GetAvailablePerches_b__6_1__MethodInfo); DO_APP_FUNC(0x00923540, void, ManorIntro_Attached, (ManorIntro * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ManorIntro_Detached, (ManorIntro * __this, MethodInfo * method)); DO_APP_FUNC(0x00923710, IEnumerator *, ManorIntro_ResetRecentlyAttached, (ManorIntro * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ManorIntro_OnStep, (ManorIntro * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9F08, ManorIntro_OnStep__MethodInfo); DO_APP_FUNC(0x003AE050, void, ManorIntro_OnStepInternal, (ManorIntro * __this, bool isFromAttached, MethodInfo * method)); DO_APP_FUNC(0x009237B0, void, ManorIntro_StartIntro, (ManorIntro * __this, MethodInfo * method)); DO_APP_FUNC(0x009238B0, void, ManorIntro_EndIntro, (ManorIntro * __this, MethodInfo * method)); @@ -16237,12 +18454,14 @@ DO_APP_FUNC(0x003AE050, void, ManorIntro_ResetRecentlyAttached_d_7_System_IDispo DO_APP_FUNC(0x00923C40, bool, ManorIntro_ResetRecentlyAttached_d_7_MoveNext, (ManorIntro_ResetRecentlyAttached_d_7 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, ManorIntro_ResetRecentlyAttached_d_7_System_Collections_Generic_IEnumerator_System_Object__get_Current, (ManorIntro_ResetRecentlyAttached_d_7 * __this, MethodInfo * method)); DO_APP_FUNC(0x00923D20, void, ManorIntro_ResetRecentlyAttached_d_7_System_Collections_IEnumerator_Reset, (ManorIntro_ResetRecentlyAttached_d_7 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9EF0, ManorIntro_ResetRecentlyAttached_d_7_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, ManorIntro_ResetRecentlyAttached_d_7_System_Collections_IEnumerator_get_Current, (ManorIntro_ResetRecentlyAttached_d_7 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, ManorIntro_FinishIntro_d_12__ctor, (ManorIntro_FinishIntro_d_12 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ManorIntro_FinishIntro_d_12_System_IDisposable_Dispose, (ManorIntro_FinishIntro_d_12 * __this, MethodInfo * method)); DO_APP_FUNC(0x00923D70, bool, ManorIntro_FinishIntro_d_12_MoveNext, (ManorIntro_FinishIntro_d_12 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, ManorIntro_FinishIntro_d_12_System_Collections_Generic_IEnumerator_System_Object__get_Current, (ManorIntro_FinishIntro_d_12 * __this, MethodInfo * method)); DO_APP_FUNC(0x00923FD0, void, ManorIntro_FinishIntro_d_12_System_Collections_IEnumerator_Reset, (ManorIntro_FinishIntro_d_12 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9EE8, ManorIntro_FinishIntro_d_12_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, ManorIntro_FinishIntro_d_12_System_Collections_IEnumerator_get_Current, (ManorIntro_FinishIntro_d_12 * __this, MethodInfo * method)); DO_APP_FUNC(0x00924020, void, ManorMapController_Awake, (ManorMapController * __this, MethodInfo * method)); DO_APP_FUNC(0x00924430, void, ManorMapController_Attached, (ManorMapController * __this, MethodInfo * method)); @@ -16254,6 +18473,7 @@ DO_APP_FUNC(0x009252A0, void, ManorMapController_SpawnMirrors, (ManorMapControll DO_APP_FUNC(0x00925E50, void, ManorMapController_SpawnPhotos, (ManorMapController * __this, MethodInfo * method)); DO_APP_FUNC(0x00926320, void, ManorMapController_SpawnKeys, (ManorMapController * __this, MethodInfo * method)); DO_APP_FUNC(0x00926BA0, void, ManorMapController_OnIsAzazelActive, (ManorMapController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9E98, ManorMapController_OnIsAzazelActive__MethodInfo); DO_APP_FUNC(0x00926E90, int32_t, ManorMapController_GetNumPhotosInWorld, (ManorMapController * __this, MethodInfo * method)); DO_APP_FUNC(0x00926EE0, bool, ManorMapController_ClaimCandle, (ManorMapController * __this, GameObject * candle, MethodInfo * method)); DO_APP_FUNC(0x00926FB0, void, ManorMapController_ReleaseCandle, (ManorMapController * __this, GameObject * candle, MethodInfo * method)); @@ -16263,9 +18483,12 @@ DO_APP_FUNC(0x009273D0, void, ManorMapController__ctor, (ManorMapController * __ DO_APP_FUNC(0x009278F0, void, ManorMapController_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ManorMapController_c__ctor, (ManorMapController_c * __this, MethodInfo * method)); DO_APP_FUNC(0x009279A0, bool, ManorMapController_c__SpawnMirrors_b__22_0, (ManorMapController_c * __this, GameObject * sp, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9E28, ManorMapController_c__SpawnMirrors_b__22_0__MethodInfo); DO_APP_FUNC(0x00927A30, bool, ManorMapController_c__SpawnMirrors_b__22_1, (ManorMapController_c * __this, GameObject * sp, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9E30, ManorMapController_c__SpawnMirrors_b__22_1__MethodInfo); DO_APP_FUNC(0x003AE050, void, ManorMapController_c_DisplayClass24_0__ctor, (ManorMapController_c_DisplayClass24_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00542450, int32_t, ManorMapController_c_DisplayClass24_0__SpawnKeys_b__0, (ManorMapController_c_DisplayClass24_0 * __this, GameObject * spawnPoint, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9E08, ManorMapController_c_DisplayClass24_0__SpawnKeys_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, ManorSpirit__ctor, (ManorSpirit * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ManorLocation__ctor, (ManorLocation * __this, MethodInfo * method)); DO_APP_FUNC(0x0049E0C0, GameObject *, ManorMirrorController_get_ReflectionCameraGameObject, (ManorMirrorController * __this, MethodInfo * method)); @@ -16277,8 +18500,11 @@ DO_APP_FUNC(0x00927CD0, void, ManorMirrorController_Start, (ManorMirrorControlle DO_APP_FUNC(0x00927F70, void, ManorMirrorController_Attached, (ManorMirrorController * __this, MethodInfo * method)); DO_APP_FUNC(0x009282A0, IEnumerator *, ManorMirrorController_WaitToRenderProbe, (ManorMirrorController * __this, MethodInfo * method)); DO_APP_FUNC(0x00928340, void, ManorMirrorController_OnBroken, (ManorMirrorController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9D38, ManorMirrorController_OnBroken__MethodInfo); DO_APP_FUNC(0x00928760, void, ManorMirrorController_OnTarget, (ManorMirrorController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9D28, ManorMirrorController_OnTarget__MethodInfo); DO_APP_FUNC(0x00928C30, void, ManorMirrorController_OnOutside, (ManorMirrorController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9D20, ManorMirrorController_OnOutside__MethodInfo); DO_APP_FUNC(0x00928D90, IEnumerator *, ManorMirrorController_DelayFreezeRigidbodies, (ManorMirrorController * __this, MethodInfo * method)); DO_APP_FUNC(0x00928E30, bool, ManorMirrorController_IsBroken, (ManorMirrorController * __this, MethodInfo * method)); DO_APP_FUNC(0x00928FE0, void, ManorMirrorController_Teleport, (ManorMirrorController * __this, GameObject * character, MethodInfo * method)); @@ -16294,12 +18520,14 @@ DO_APP_FUNC(0x003AE050, void, ManorMirrorController_WaitToRenderProbe_d_33_Syste DO_APP_FUNC(0x0092AD00, bool, ManorMirrorController_WaitToRenderProbe_d_33_MoveNext, (ManorMirrorController_WaitToRenderProbe_d_33 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, ManorMirrorController_WaitToRenderProbe_d_33_System_Collections_Generic_IEnumerator_System_Object__get_Current, (ManorMirrorController_WaitToRenderProbe_d_33 * __this, MethodInfo * method)); DO_APP_FUNC(0x0092AF80, void, ManorMirrorController_WaitToRenderProbe_d_33_System_Collections_IEnumerator_Reset, (ManorMirrorController_WaitToRenderProbe_d_33 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9CC8, ManorMirrorController_WaitToRenderProbe_d_33_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, ManorMirrorController_WaitToRenderProbe_d_33_System_Collections_IEnumerator_get_Current, (ManorMirrorController_WaitToRenderProbe_d_33 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, ManorMirrorController_DelayFreezeRigidbodies_d_37__ctor, (ManorMirrorController_DelayFreezeRigidbodies_d_37 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ManorMirrorController_DelayFreezeRigidbodies_d_37_System_IDisposable_Dispose, (ManorMirrorController_DelayFreezeRigidbodies_d_37 * __this, MethodInfo * method)); DO_APP_FUNC(0x0092AFD0, bool, ManorMirrorController_DelayFreezeRigidbodies_d_37_MoveNext, (ManorMirrorController_DelayFreezeRigidbodies_d_37 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, ManorMirrorController_DelayFreezeRigidbodies_d_37_System_Collections_Generic_IEnumerator_System_Object__get_Current, (ManorMirrorController_DelayFreezeRigidbodies_d_37 * __this, MethodInfo * method)); DO_APP_FUNC(0x0092B220, void, ManorMirrorController_DelayFreezeRigidbodies_d_37_System_Collections_IEnumerator_Reset, (ManorMirrorController_DelayFreezeRigidbodies_d_37 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9CC0, ManorMirrorController_DelayFreezeRigidbodies_d_37_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, ManorMirrorController_DelayFreezeRigidbodies_d_37_System_Collections_IEnumerator_get_Current, (ManorMirrorController_DelayFreezeRigidbodies_d_37 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, ManorMirrorSpawnPoint__ctor, (ManorMirrorSpawnPoint * __this, MethodInfo * method)); DO_APP_FUNC(0x0092B270, void, ManorPhotoRenderer_Awake, (ManorPhotoRenderer * __this, MethodInfo * method)); @@ -16313,14 +18541,18 @@ DO_APP_FUNC(0x0092BFB0, void, ManorPhotoRenderer_ForceBurning, (ManorPhotoRender DO_APP_FUNC(0x003AE000, void, ManorPhotoRenderer__ctor, (ManorPhotoRenderer * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ManorPhotoRenderer_c_DisplayClass7_0__ctor, (ManorPhotoRenderer_c_DisplayClass7_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0092C050, void, ManorPhotoRenderer_c_DisplayClass7_0__StartBurning_b__0, (ManorPhotoRenderer_c_DisplayClass7_0 * __this, float val, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9CA0, ManorPhotoRenderer_c_DisplayClass7_0__StartBurning_b__0__MethodInfo); DO_APP_FUNC(0x0092C0B0, void, ManorSpiritController_Awake, (ManorSpiritController * __this, MethodInfo * method)); DO_APP_FUNC(0x0092C3F0, void, ManorSpiritController_Start, (ManorSpiritController * __this, MethodInfo * method)); DO_APP_FUNC(0x0092C4C0, void, ManorSpiritController_Attached, (ManorSpiritController * __this, MethodInfo * method)); DO_APP_FUNC(0x0092CB70, void, ManorSpiritController_Detached, (ManorSpiritController * __this, MethodInfo * method)); DO_APP_FUNC(0x0092CD90, void, ManorSpiritController_FixedUpdate, (ManorSpiritController * __this, MethodInfo * method)); DO_APP_FUNC(0x0092CFA0, void, ManorSpiritController_OnState, (ManorSpiritController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9C40, ManorSpiritController_OnState__MethodInfo); DO_APP_FUNC(0x0092D4B0, void, ManorSpiritController_OnSpirit, (ManorSpiritController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9C60, ManorSpiritController_OnSpirit__MethodInfo); DO_APP_FUNC(0x0092DBF0, void, ManorSpiritController_OnAbilityIntData, (ManorSpiritController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9C68, ManorSpiritController_OnAbilityIntData__MethodInfo); DO_APP_FUNC(0x0092DCA0, void, ManorSpiritController_SetSpirit, (ManorSpiritController * __this, ManorSpirit * spirit, MethodInfo * method)); DO_APP_FUNC(0x0092DEA0, void, ManorSpiritController_PlacePhoto, (ManorSpiritController * __this, BoltEntity * player, MethodInfo * method)); DO_APP_FUNC(0x0092E120, bool, ManorSpiritController_IsLured, (ManorSpiritController * __this, MethodInfo * method)); @@ -16329,8 +18561,11 @@ DO_APP_FUNC(0x0092E4A0, String *, ManorSpiritController_GetSpirit, (ManorSpiritC DO_APP_FUNC(0x0092E660, void, ManorSpiritController_Salt, (ManorSpiritController * __this, MethodInfo * method)); DO_APP_FUNC(0x0092E8B0, IEnumerator *, ManorSpiritController_BanishSpirit, (ManorSpiritController * __this, MethodInfo * method)); DO_APP_FUNC(0x0092E950, void, ManorSpiritController_OnGlobalGoatBurnEvent, (ManorSpiritController * __this, int32_t numObjectsBurned, BoltEntity * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9C88, ManorSpiritController_OnGlobalGoatBurnEvent__MethodInfo); DO_APP_FUNC(0x0092EAB0, void, ManorSpiritController_OnLured, (ManorSpiritController * __this, GameObject * candle, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9C58, ManorSpiritController_OnLured__MethodInfo); DO_APP_FUNC(0x0092EE40, void, ManorSpiritController_OnBanished, (ManorSpiritController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9C70, ManorSpiritController_OnBanished__MethodInfo); DO_APP_FUNC(0x0092F270, void, ManorSpiritController_OnDestroy, (ManorSpiritController * __this, MethodInfo * method)); DO_APP_FUNC(0x0092F350, void, ManorSpiritController__ctor, (ManorSpiritController * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, ManorSpiritController_BanishSpirit_d_30__ctor, (ManorSpiritController_BanishSpirit_d_30 * __this, int32_t __1__state, MethodInfo * method)); @@ -16338,11 +18573,14 @@ DO_APP_FUNC(0x003AE050, void, ManorSpiritController_BanishSpirit_d_30_System_IDi DO_APP_FUNC(0x0092F3A0, bool, ManorSpiritController_BanishSpirit_d_30_MoveNext, (ManorSpiritController_BanishSpirit_d_30 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, ManorSpiritController_BanishSpirit_d_30_System_Collections_Generic_IEnumerator_System_Object__get_Current, (ManorSpiritController_BanishSpirit_d_30 * __this, MethodInfo * method)); DO_APP_FUNC(0x0092F6E0, void, ManorSpiritController_BanishSpirit_d_30_System_Collections_IEnumerator_Reset, (ManorSpiritController_BanishSpirit_d_30 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9BD8, ManorSpiritController_BanishSpirit_d_30_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, ManorSpiritController_BanishSpirit_d_30_System_Collections_IEnumerator_get_Current, (ManorSpiritController_BanishSpirit_d_30 * __this, MethodInfo * method)); DO_APP_FUNC(0x0092F730, void, SurvivalPhotoController_Attached, (SurvivalPhotoController * __this, MethodInfo * method)); DO_APP_FUNC(0x0092F910, void, SurvivalPhotoController_OnMetadata, (SurvivalPhotoController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9BC8, SurvivalPhotoController_OnMetadata__MethodInfo); DO_APP_FUNC(0x0092F9E0, void, SurvivalPhotoController_SetMetadata, (SurvivalPhotoController * __this, String * metadata, bool vomited, MethodInfo * method)); DO_APP_FUNC(0x0092FB80, void, SurvivalPhotoController_OnDisableInteract, (SurvivalPhotoController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9BC0, SurvivalPhotoController_OnDisableInteract__MethodInfo); DO_APP_FUNC(0x0092FEA0, IEnumerator *, SurvivalPhotoController_DelayEnableInteract, (SurvivalPhotoController * __this, MethodInfo * method)); DO_APP_FUNC(0x0092FF40, void, SurvivalPhotoController__ctor, (SurvivalPhotoController * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, SurvivalPhotoController_DelayEnableInteract_d_6__ctor, (SurvivalPhotoController_DelayEnableInteract_d_6 * __this, int32_t __1__state, MethodInfo * method)); @@ -16350,6 +18588,7 @@ DO_APP_FUNC(0x003AE050, void, SurvivalPhotoController_DelayEnableInteract_d_6_Sy DO_APP_FUNC(0x0092FF90, bool, SurvivalPhotoController_DelayEnableInteract_d_6_MoveNext, (SurvivalPhotoController_DelayEnableInteract_d_6 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalPhotoController_DelayEnableInteract_d_6_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SurvivalPhotoController_DelayEnableInteract_d_6 * __this, MethodInfo * method)); DO_APP_FUNC(0x00930220, void, SurvivalPhotoController_DelayEnableInteract_d_6_System_Collections_IEnumerator_Reset, (SurvivalPhotoController_DelayEnableInteract_d_6 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9BA8, SurvivalPhotoController_DelayEnableInteract_d_6_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalPhotoController_DelayEnableInteract_d_6_System_Collections_IEnumerator_get_Current, (SurvivalPhotoController_DelayEnableInteract_d_6 * __this, MethodInfo * method)); DO_APP_FUNC(0x00930270, void, SurvivalSaltController_Attached, (SurvivalSaltController * __this, MethodInfo * method)); DO_APP_FUNC(0x00930320, IEnumerator *, SurvivalSaltController_WaitToDestroy, (SurvivalSaltController * __this, MethodInfo * method)); @@ -16359,6 +18598,7 @@ DO_APP_FUNC(0x003AE050, void, SurvivalSaltController_WaitToDestroy_d_1_System_ID DO_APP_FUNC(0x00930410, bool, SurvivalSaltController_WaitToDestroy_d_1_MoveNext, (SurvivalSaltController_WaitToDestroy_d_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalSaltController_WaitToDestroy_d_1_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SurvivalSaltController_WaitToDestroy_d_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x00930660, void, SurvivalSaltController_WaitToDestroy_d_1_System_Collections_IEnumerator_Reset, (SurvivalSaltController_WaitToDestroy_d_1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9B88, SurvivalSaltController_WaitToDestroy_d_1_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalSaltController_WaitToDestroy_d_1_System_Collections_IEnumerator_get_Current, (SurvivalSaltController_WaitToDestroy_d_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x009306B0, void, MapController_Attached, (MapController * __this, MethodInfo * method)); DO_APP_FUNC(0x009307D0, void, MapController_OnMapProgress, (MapController * __this, MethodInfo * method)); @@ -16369,6 +18609,7 @@ DO_APP_FUNC(0x009310D0, bool, MapController_IsAzazelActive, (MapController * __t DO_APP_FUNC(0x00931290, void, MapController__ctor, (MapController * __this, MethodInfo * method)); DO_APP_FUNC(0x009312E0, void, MapEnvironmentLoader_Awake, (MapEnvironmentLoader * __this, MethodInfo * method)); DO_APP_FUNC(0x009313E0, void, MapEnvironmentLoader_OnLoadComplete, (MapEnvironmentLoader * __this, AsyncOperationHandle_1_UnityEngine_GameObject_ handle, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9B58, MapEnvironmentLoader_OnLoadComplete__MethodInfo); DO_APP_FUNC(0x00931B30, IEnumerator *, MapEnvironmentLoader_FadeInLights, (MapEnvironmentLoader * __this, MethodInfo * method)); DO_APP_FUNC(0x00931BD0, void, MapEnvironmentLoader_OnDisable, (MapEnvironmentLoader * __this, MethodInfo * method)); DO_APP_FUNC(0x00931CD0, void, MapEnvironmentLoader__ctor, (MapEnvironmentLoader * __this, MethodInfo * method)); @@ -16377,6 +18618,7 @@ DO_APP_FUNC(0x003AE050, void, MapEnvironmentLoader_FadeInLights_d_4_System_IDisp DO_APP_FUNC(0x00931DE0, bool, MapEnvironmentLoader_FadeInLights_d_4_MoveNext, (MapEnvironmentLoader_FadeInLights_d_4 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, MapEnvironmentLoader_FadeInLights_d_4_System_Collections_Generic_IEnumerator_System_Object__get_Current, (MapEnvironmentLoader_FadeInLights_d_4 * __this, MethodInfo * method)); DO_APP_FUNC(0x00932020, void, MapEnvironmentLoader_FadeInLights_d_4_System_Collections_IEnumerator_Reset, (MapEnvironmentLoader_FadeInLights_d_4 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9B00, MapEnvironmentLoader_FadeInLights_d_4_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, MapEnvironmentLoader_FadeInLights_d_4_System_Collections_IEnumerator_get_Current, (MapEnvironmentLoader_FadeInLights_d_4 * __this, MethodInfo * method)); DO_APP_FUNC(0x00932070, void, MenuCredits_Awake, (MenuCredits * __this, MethodInfo * method)); DO_APP_FUNC(0x00932120, void, MenuCredits_StartScrolling, (MenuCredits * __this, MethodInfo * method)); @@ -16390,9 +18632,11 @@ DO_APP_FUNC(0x00933A80, IEnumerator *, MollyIntro_DisableHairUpdateWhenOffscreen DO_APP_FUNC(0x00933B20, IEnumerator *, MollyIntro_OpenElevator, (MollyIntro * __this, MethodInfo * method)); DO_APP_FUNC(0x00933BC0, void, MollyIntro_LockIntroDoors, (MollyIntro * __this, MethodInfo * method)); DO_APP_FUNC(0x00933C50, void, MollyIntro_AllPlayersExitedTreatmentRoom2, (MollyIntro * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9AF0, MollyIntro_AllPlayersExitedTreatmentRoom2__MethodInfo); DO_APP_FUNC(0x00933FF0, IEnumerator *, MollyIntro_SlamDoor, (MollyIntro * __this, MethodInfo * method)); DO_APP_FUNC(0x00934090, IEnumerator *, MollyIntro_ResetTreatmentDoorVolume, (MollyIntro * __this, MethodInfo * method)); DO_APP_FUNC(0x00934130, void, MollyIntro_AllPlayersExitedTreatmentArea, (MollyIntro * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9AE8, MollyIntro_AllPlayersExitedTreatmentArea__MethodInfo); DO_APP_FUNC(0x009343C0, void, MollyIntro_EndIntro, (MollyIntro * __this, MethodInfo * method)); DO_APP_FUNC(0x00934660, void, MollyIntro_ActivateMolly, (MollyIntro * __this, MethodInfo * method)); DO_APP_FUNC(0x00934710, IEnumerator *, MollyIntro_ActivateMollyInternal, (MollyIntro * __this, MethodInfo * method)); @@ -16402,45 +18646,53 @@ DO_APP_FUNC(0x003AE050, void, MollyIntro_WaitToDestroyDetachedInitialTrashCan_d_ DO_APP_FUNC(0x00934800, bool, MollyIntro_WaitToDestroyDetachedInitialTrashCan_d_33_MoveNext, (MollyIntro_WaitToDestroyDetachedInitialTrashCan_d_33 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, MollyIntro_WaitToDestroyDetachedInitialTrashCan_d_33_System_Collections_Generic_IEnumerator_System_Object__get_Current, (MollyIntro_WaitToDestroyDetachedInitialTrashCan_d_33 * __this, MethodInfo * method)); DO_APP_FUNC(0x00934BE0, void, MollyIntro_WaitToDestroyDetachedInitialTrashCan_d_33_System_Collections_IEnumerator_Reset, (MollyIntro_WaitToDestroyDetachedInitialTrashCan_d_33 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9A68, MollyIntro_WaitToDestroyDetachedInitialTrashCan_d_33_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, MollyIntro_WaitToDestroyDetachedInitialTrashCan_d_33_System_Collections_IEnumerator_get_Current, (MollyIntro_WaitToDestroyDetachedInitialTrashCan_d_33 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, MollyIntro_DisableHairUpdateWhenOffscreen_d_34__ctor, (MollyIntro_DisableHairUpdateWhenOffscreen_d_34 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, MollyIntro_DisableHairUpdateWhenOffscreen_d_34_System_IDisposable_Dispose, (MollyIntro_DisableHairUpdateWhenOffscreen_d_34 * __this, MethodInfo * method)); DO_APP_FUNC(0x00934C30, bool, MollyIntro_DisableHairUpdateWhenOffscreen_d_34_MoveNext, (MollyIntro_DisableHairUpdateWhenOffscreen_d_34 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, MollyIntro_DisableHairUpdateWhenOffscreen_d_34_System_Collections_Generic_IEnumerator_System_Object__get_Current, (MollyIntro_DisableHairUpdateWhenOffscreen_d_34 * __this, MethodInfo * method)); DO_APP_FUNC(0x00934E60, void, MollyIntro_DisableHairUpdateWhenOffscreen_d_34_System_Collections_IEnumerator_Reset, (MollyIntro_DisableHairUpdateWhenOffscreen_d_34 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9A58, MollyIntro_DisableHairUpdateWhenOffscreen_d_34_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, MollyIntro_DisableHairUpdateWhenOffscreen_d_34_System_Collections_IEnumerator_get_Current, (MollyIntro_DisableHairUpdateWhenOffscreen_d_34 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, MollyIntro_OpenElevator_d_35__ctor, (MollyIntro_OpenElevator_d_35 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, MollyIntro_OpenElevator_d_35_System_IDisposable_Dispose, (MollyIntro_OpenElevator_d_35 * __this, MethodInfo * method)); DO_APP_FUNC(0x00934EB0, bool, MollyIntro_OpenElevator_d_35_MoveNext, (MollyIntro_OpenElevator_d_35 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, MollyIntro_OpenElevator_d_35_System_Collections_Generic_IEnumerator_System_Object__get_Current, (MollyIntro_OpenElevator_d_35 * __this, MethodInfo * method)); DO_APP_FUNC(0x009350C0, void, MollyIntro_OpenElevator_d_35_System_Collections_IEnumerator_Reset, (MollyIntro_OpenElevator_d_35 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9A50, MollyIntro_OpenElevator_d_35_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, MollyIntro_OpenElevator_d_35_System_Collections_IEnumerator_get_Current, (MollyIntro_OpenElevator_d_35 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, MollyIntro_SlamDoor_d_38__ctor, (MollyIntro_SlamDoor_d_38 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, MollyIntro_SlamDoor_d_38_System_IDisposable_Dispose, (MollyIntro_SlamDoor_d_38 * __this, MethodInfo * method)); DO_APP_FUNC(0x00935110, bool, MollyIntro_SlamDoor_d_38_MoveNext, (MollyIntro_SlamDoor_d_38 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, MollyIntro_SlamDoor_d_38_System_Collections_Generic_IEnumerator_System_Object__get_Current, (MollyIntro_SlamDoor_d_38 * __this, MethodInfo * method)); DO_APP_FUNC(0x009353B0, void, MollyIntro_SlamDoor_d_38_System_Collections_IEnumerator_Reset, (MollyIntro_SlamDoor_d_38 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9A48, MollyIntro_SlamDoor_d_38_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, MollyIntro_SlamDoor_d_38_System_Collections_IEnumerator_get_Current, (MollyIntro_SlamDoor_d_38 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, MollyIntro_ResetTreatmentDoorVolume_d_39__ctor, (MollyIntro_ResetTreatmentDoorVolume_d_39 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, MollyIntro_ResetTreatmentDoorVolume_d_39_System_IDisposable_Dispose, (MollyIntro_ResetTreatmentDoorVolume_d_39 * __this, MethodInfo * method)); DO_APP_FUNC(0x00935400, bool, MollyIntro_ResetTreatmentDoorVolume_d_39_MoveNext, (MollyIntro_ResetTreatmentDoorVolume_d_39 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, MollyIntro_ResetTreatmentDoorVolume_d_39_System_Collections_Generic_IEnumerator_System_Object__get_Current, (MollyIntro_ResetTreatmentDoorVolume_d_39 * __this, MethodInfo * method)); DO_APP_FUNC(0x009355E0, void, MollyIntro_ResetTreatmentDoorVolume_d_39_System_Collections_IEnumerator_Reset, (MollyIntro_ResetTreatmentDoorVolume_d_39 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9A38, MollyIntro_ResetTreatmentDoorVolume_d_39_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, MollyIntro_ResetTreatmentDoorVolume_d_39_System_Collections_IEnumerator_get_Current, (MollyIntro_ResetTreatmentDoorVolume_d_39 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, MollyIntro_ActivateMollyInternal_d_43__ctor, (MollyIntro_ActivateMollyInternal_d_43 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, MollyIntro_ActivateMollyInternal_d_43_System_IDisposable_Dispose, (MollyIntro_ActivateMollyInternal_d_43 * __this, MethodInfo * method)); DO_APP_FUNC(0x00935630, bool, MollyIntro_ActivateMollyInternal_d_43_MoveNext, (MollyIntro_ActivateMollyInternal_d_43 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, MollyIntro_ActivateMollyInternal_d_43_System_Collections_Generic_IEnumerator_System_Object__get_Current, (MollyIntro_ActivateMollyInternal_d_43 * __this, MethodInfo * method)); DO_APP_FUNC(0x00935FC0, void, MollyIntro_ActivateMollyInternal_d_43_System_Collections_IEnumerator_Reset, (MollyIntro_ActivateMollyInternal_d_43 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9A20, MollyIntro_ActivateMollyInternal_d_43_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, MollyIntro_ActivateMollyInternal_d_43_System_Collections_IEnumerator_get_Current, (MollyIntro_ActivateMollyInternal_d_43 * __this, MethodInfo * method)); DO_APP_FUNC(0x004C94A0, void, MollyRatScare_Awake, (MollyRatScare * __this, MethodInfo * method)); DO_APP_FUNC(0x004C9570, void, MollyRatScare_OnTriggerEnter, (MollyRatScare * __this, Collider * other, MethodInfo * method)); DO_APP_FUNC(0x004C98B0, void, MollyRatScare_OnIntroRatReachedDestination, (MollyRatScare * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18100, MollyRatScare_OnIntroRatReachedDestination__MethodInfo); DO_APP_FUNC(0x004C9A00, void, MollyRatScare_OnDestroy, (MollyRatScare * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, MollyRatScare__ctor, (MollyRatScare * __this, MethodInfo * method)); DO_APP_FUNC(0x004C9AD0, void, NathanJumpScareMask_Awake, (NathanJumpScareMask * __this, MethodInfo * method)); DO_APP_FUNC(0x004C9C50, void, NathanJumpScareMask_MaskOn, (NathanJumpScareMask * __this, MethodInfo * method)); DO_APP_FUNC(0x004C9DF0, void, NathanJumpScareMask_OnEnd, (NathanJumpScareMask * __this, PlayableDirector * d, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D180B8, NathanJumpScareMask_OnEnd__MethodInfo); DO_APP_FUNC(0x004C9E00, void, NathanJumpScareMask_MaskOff, (NathanJumpScareMask * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, NathanJumpScareMask__ctor, (NathanJumpScareMask * __this, MethodInfo * method)); DO_APP_FUNC(0x004C9F40, void, NetworkPerformanceHelper_Start, (NetworkPerformanceHelper * __this, MethodInfo * method)); @@ -16449,6 +18701,7 @@ DO_APP_FUNC(0x004CA270, void, NetworkPerformanceHelper__ctor, (NetworkPerformanc DO_APP_FUNC(0x004CA2D0, void, NightmareMaterialLoader_Start, (NightmareMaterialLoader * __this, MethodInfo * method)); DO_APP_FUNC(0x004CA2E0, void, NightmareMaterialLoader_Load, (NightmareMaterialLoader * __this, MethodInfo * method)); DO_APP_FUNC(0x004CA630, void, NightmareMaterialLoader_OnNightmareMaterialsLoaded, (NightmareMaterialLoader * __this, AsyncOperationHandle_1_System_Collections_Generic_IList_1_ handle, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18090, NightmareMaterialLoader_OnNightmareMaterialsLoaded__MethodInfo); DO_APP_FUNC(0x004CB390, void, NightmareMaterialLoader_OnDestroy, (NightmareMaterialLoader * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, NightmareMaterialLoader__ctor, (NightmareMaterialLoader * __this, MethodInfo * method)); DO_APP_FUNC(0x0049E0C0, ParticleSystem__Array *, NolanBehaviour_get_flashlightParticles, (NolanBehaviour * __this, MethodInfo * method)); @@ -16463,17 +18716,21 @@ DO_APP_FUNC(0x004A5400, void, NolanBehaviour_UpdateLookVectorMode, (NolanBehavio DO_APP_FUNC(0x004A5500, void, NolanBehaviour_UpdateLookAcceleration, (NolanBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x004A5600, void, NolanBehaviour_Detached, (NolanBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x004A7A70, bool, NolanBehaviour_CompareAITags, (NolanBehaviour * __this, Collider * collider, MethodInfo * method)); -DO_APP_FUNC(0x004A7C10, int32_t, NolanBehaviour_GetAIHits, (NolanBehaviour * __this, int32_t numResults, float closestNonAIHit, MethodInfo * method)); +DO_APP_FUNC(0x004A7C10, int32_t, NolanBehaviour_GetAIHits, (NolanBehaviour * __this, int32_t numResults, float * closestNonAIHit, MethodInfo * method)); DO_APP_FUNC(0x004A7D70, void, NolanBehaviour_FixedUpdate, (NolanBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x004AABA0, void, NolanBehaviour_Update, (NolanBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x004AC670, void, NolanBehaviour_OnDrawGizmos, (NolanBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x004AD040, void, NolanBehaviour_FocusFlashlightTutorial, (NolanBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x004AD180, void, NolanBehaviour_FocusInnWebBurnTutorial, (NolanBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x004AD2C0, void, NolanBehaviour_OnAbilityIndex, (NolanBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15430, NolanBehaviour_OnAbilityIndex__MethodInfo); DO_APP_FUNC(0x004AE500, void, NolanBehaviour_OnAbilityIntData, (NolanBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15428, NolanBehaviour_OnAbilityIntData__MethodInfo); DO_APP_FUNC(0x004AE6A0, void, NolanBehaviour_OnMovementSetID, (NolanBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15330, NolanBehaviour_OnMovementSetID__MethodInfo); DO_APP_FUNC(0x004AE6B0, void, NolanBehaviour_PlayGasolineEffects, (NolanBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x004AE9B0, void, NolanBehaviour_OnCharacterAbilityActive, (NolanBehaviour * __this, Ability * ability, bool active, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D153A0, NolanBehaviour_OnCharacterAbilityActive__MethodInfo); DO_APP_FUNC(0x004AEC80, void, NolanBehaviour_StartCarry, (NolanBehaviour * __this, String * objectName, MethodInfo * method)); DO_APP_FUNC(0x004AF280, void, NolanBehaviour_PlopObject, (NolanBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x004AF520, bool, NolanBehaviour_IsCarryingPlopLongInteractableObject, (NolanBehaviour * __this, MethodInfo * method)); @@ -16484,9 +18741,12 @@ DO_APP_FUNC(0x004AF840, void, NolanBehaviour_ToggleHiding, (NolanBehaviour * __t DO_APP_FUNC(0x004AFD50, bool, NolanBehaviour_IsHiding, (NolanBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x004AFD70, bool, NolanBehaviour_IsInHidingSpot, (NolanBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x004B04F0, void, NolanBehaviour_OnCarryObjectName, (NolanBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D153A8, NolanBehaviour_OnCarryObjectName__MethodInfo); DO_APP_FUNC(0x004B1CA0, void, NolanBehaviour_OnHeight, (NolanBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15358, NolanBehaviour_OnHeight__MethodInfo); DO_APP_FUNC(0x004B1E50, IEnumerator *, NolanBehaviour_ActivateCarryObject, (NolanBehaviour * __this, GameObject * carryObject, Action * callback, MethodInfo * method)); DO_APP_FUNC(0x004B1FC0, void, NolanBehaviour_OnIsFlashlightActive, (NolanBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15350, NolanBehaviour_OnIsFlashlightActive__MethodInfo); DO_APP_FUNC(0x004B2080, void, NolanBehaviour_SetIsFlashlightActive, (NolanBehaviour * __this, bool isActive, bool isSilent, MethodInfo * method)); DO_APP_FUNC(0x004B26A0, void, NolanBehaviour_SetFlashlightFryMode, (NolanBehaviour * __this, bool isActive, MethodInfo * method)); DO_APP_FUNC(0x004B2B60, IEnumerator *, NolanBehaviour_TransitionInToFrying, (NolanBehaviour * __this, MethodInfo * method)); @@ -16494,6 +18754,7 @@ DO_APP_FUNC(0x004B2C00, IEnumerator *, NolanBehaviour_TransitionOutOfFrying, (No DO_APP_FUNC(0x004B2CA0, IEnumerator *, NolanBehaviour_TransitionInToRitualBookPlace, (NolanBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x004B2D40, IEnumerator *, NolanBehaviour_TransitionOutOfRitualBookPlace, (NolanBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x004B2DE0, void, NolanBehaviour_OnPlayerPickedUpEvent, (NolanBehaviour * __this, BoltEntity * killedBy, BoltEntity * player, bool inHidingSpot, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15328, NolanBehaviour_OnPlayerPickedUpEvent__MethodInfo); DO_APP_FUNC(0x004B4030, void, NolanBehaviour_StopHiding, (NolanBehaviour * __this, BoltEntity * killedBy, MethodInfo * method)); DO_APP_FUNC(0x004B4390, void, NolanBehaviour_ResetHidingSpot, (NolanBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x004B4950, void, NolanBehaviour_DestroyHidingSpot, (NolanBehaviour * __this, MethodInfo * method)); @@ -16502,28 +18763,44 @@ DO_APP_FUNC(0x004B5000, IEnumerator *, NolanBehaviour_DelayCreateDroppedObject, DO_APP_FUNC(0x004B5140, void, NolanBehaviour_EnableKnockedOutEffects, (NolanBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x004B5840, IEnumerator *, NolanBehaviour_DelayEnableKnockedOutEffects, (NolanBehaviour * __this, float delay, MethodInfo * method)); DO_APP_FUNC(0x004B58F0, void, NolanBehaviour_OnKnockoutEvent, (NolanBehaviour * __this, BoltEntity * killedBy, BoltEntity * player, bool usingPoison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15338, NolanBehaviour_OnKnockoutEvent__MethodInfo); DO_APP_FUNC(0x004B7060, bool, NolanBehaviour_CheckFailImmediatelyInSinglePlayer, (NolanBehaviour * __this, String * prefix, MethodInfo * method)); DO_APP_FUNC(0x004B7270, void, NolanBehaviour_OnReviveEvent, (NolanBehaviour * __this, BoltEntity * player, BoltEntity * reviver, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D152F8, NolanBehaviour_OnReviveEvent__MethodInfo); DO_APP_FUNC(0x004B7810, void, NolanBehaviour_OnRangedAttackEvent, (NolanBehaviour * __this, BoltEntity * ai, BoltEntity * player, float amount, bool hit, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15308, NolanBehaviour_OnRangedAttackEvent__MethodInfo); DO_APP_FUNC(0x004B8390, void, NolanBehaviour_EnableRevivedEffects, (NolanBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x004B8C80, void, NolanBehaviour_OnKillAbility, (NolanBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15348, NolanBehaviour_OnKillAbility__MethodInfo); DO_APP_FUNC(0x004B9300, IEnumerator *, NolanBehaviour_DelayRespawn, (NolanBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x004B93A0, void, NolanBehaviour_OnKnockoutBoxEvent, (NolanBehaviour * __this, String * killedBy, BoltEntity * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15340, NolanBehaviour_OnKnockoutBoxEvent__MethodInfo); DO_APP_FUNC(0x004B9AE0, void, NolanBehaviour_KnockoutDropObject, (NolanBehaviour * __this, bool delayDroppedObject, MethodInfo * method)); DO_APP_FUNC(0x004B9F20, void, NolanBehaviour_OnRespawn, (NolanBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15300, NolanBehaviour_OnRespawn__MethodInfo); DO_APP_FUNC(0x004BA0A0, void, NolanBehaviour_OnJumpScareEnd, (NolanBehaviour * __this, Survival_AI__Enum ai, MethodInfo * method)); DO_APP_FUNC(0x004BA320, void, NolanBehaviour_OnAnnaEnrageStart, (NolanBehaviour * __this, GameObject * anna, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15410, NolanBehaviour_OnAnnaEnrageStart__MethodInfo); DO_APP_FUNC(0x004BA7A0, void, NolanBehaviour_OnAnnaEnrageEnd, (NolanBehaviour * __this, GameObject * anna, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15418, NolanBehaviour_OnAnnaEnrageEnd__MethodInfo); DO_APP_FUNC(0x004BA7B0, void, NolanBehaviour_OnCameraZoom, (NolanBehaviour * __this, bool zoom, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D153B0, NolanBehaviour_OnCameraZoom__MethodInfo); DO_APP_FUNC(0x004BAB50, IEnumerator *, NolanBehaviour_Zoom, (NolanBehaviour * __this, float targetFOV, float originalFOV, MethodInfo * method)); DO_APP_FUNC(0x004BAC20, void, NolanBehaviour_OnAttributeUpdateValue, (NolanBehaviour * __this, Attribute_1 * attribute, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D153E0, NolanBehaviour_OnAttributeUpdateValue__MethodInfo); DO_APP_FUNC(0x004BB3C0, void, NolanBehaviour_OnAnnaIntro, (NolanBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D153F8, NolanBehaviour_OnAnnaIntro__MethodInfo); DO_APP_FUNC(0x004BB560, void, NolanBehaviour_OnAnnaIntroFlashlightOff, (NolanBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15400, NolanBehaviour_OnAnnaIntroFlashlightOff__MethodInfo); DO_APP_FUNC(0x004BB660, void, NolanBehaviour_OnAnnaIntroEnd, (NolanBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15408, NolanBehaviour_OnAnnaIntroEnd__MethodInfo); DO_APP_FUNC(0x004BB700, void, NolanBehaviour_OnTownIntroGhostFlicker, (NolanBehaviour * __this, Transform * origin, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D152C8, NolanBehaviour_OnTownIntroGhostFlicker__MethodInfo); DO_APP_FUNC(0x004BB800, void, NolanBehaviour_OnTownIntroChurchFlicker, (NolanBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D152D0, NolanBehaviour_OnTownIntroChurchFlicker__MethodInfo); DO_APP_FUNC(0x004BB8F0, IEnumerator *, NolanBehaviour_FlashlightFlicker, (NolanBehaviour * __this, Coroutine * coroutine, NolanBehaviour_FlashlightFlickerOptions * options, MethodInfo * method)); DO_APP_FUNC(0x004BBA60, void, NolanBehaviour_OnFlickerEnd, (NolanBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15378, NolanBehaviour_OnFlickerEnd__MethodInfo); DO_APP_FUNC(0x004BBA70, void, NolanBehaviour_SetIsBeingKnockedOut, (NolanBehaviour * __this, bool enable, MethodInfo * method)); DO_APP_FUNC(0x004BBA80, IEnumerator *, NolanBehaviour_DelaySetIsBeingKnockedOut, (NolanBehaviour * __this, bool enable, float delay, MethodInfo * method)); DO_APP_FUNC(0x004BBB50, bool, NolanBehaviour_IsBeingKnockedOut, (NolanBehaviour * __this, MethodInfo * method)); @@ -16532,15 +18809,23 @@ DO_APP_FUNC(0x004BBE80, RaycastHit, NolanBehaviour_GetLastRaycastHit, (NolanBeha DO_APP_FUNC(0x004BBEB0, List_1_UnityEngine_Transform_ *, NolanBehaviour_GetLastRaycastHits, (NolanBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x004BBEC0, CapsuleCollider *, NolanBehaviour_GetCapsuleCollider, (NolanBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x004BBED0, void, NolanBehaviour_OnGlobalGoatBurnEvent, (NolanBehaviour * __this, int32_t number, BoltEntity * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15368, NolanBehaviour_OnGlobalGoatBurnEvent__MethodInfo); DO_APP_FUNC(0x004BC2E0, void, NolanBehaviour_OnGlobalGoatBurnWeather, (NolanBehaviour * __this, int32_t numObjectsBurned, MethodInfo * method)); DO_APP_FUNC(0x004BC650, void, NolanBehaviour_OnStateChange, (NolanBehaviour * __this, GameObject * obj, String * stateName, bool active, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D152D8, NolanBehaviour_OnStateChange__MethodInfo); DO_APP_FUNC(0x004BD0E0, void, NolanBehaviour_SetHeadBobDisabled, (NolanBehaviour * __this, bool active, MethodInfo * method)); DO_APP_FUNC(0x004BD610, void, NolanBehaviour_OnDemonFried, (NolanBehaviour * __this, SurvivalDemonBehaviour * demon, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15390, NolanBehaviour_OnDemonFried__MethodInfo); DO_APP_FUNC(0x004BD9B0, void, NolanBehaviour_OnSpiderFried, (NolanBehaviour * __this, SpiderBehaviour * spider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D152E0, NolanBehaviour_OnSpiderFried__MethodInfo); DO_APP_FUNC(0x004BDCB0, void, NolanBehaviour_OnBoarFried, (NolanBehaviour * __this, BoarBehaviour * boar, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D153B8, NolanBehaviour_OnBoarFried__MethodInfo); DO_APP_FUNC(0x004BDF70, void, NolanBehaviour_OnAnnaStaggered, (NolanBehaviour * __this, GameObject * anna, int32_t abilityIntData, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D153E8, NolanBehaviour_OnAnnaStaggered__MethodInfo); DO_APP_FUNC(0x004BE490, void, NolanBehaviour_OnAnnaCalmingDown, (NolanBehaviour * __this, GameObject * anna, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15420, NolanBehaviour_OnAnnaCalmingDown__MethodInfo); DO_APP_FUNC(0x004BE840, void, NolanBehaviour_OnAzazelCalmingDownRun, (NolanBehaviour * __this, GameObject * azazel, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D153D0, NolanBehaviour_OnAzazelCalmingDownRun__MethodInfo); DO_APP_FUNC(0x004BEB60, void, NolanBehaviour_StartBeingHeld, (NolanBehaviour * __this, GameObject * ai, MethodInfo * method)); DO_APP_FUNC(0x004BEDC0, IEnumerator *, NolanBehaviour_BeingHeld, (NolanBehaviour * __this, GameObject * ai, MethodInfo * method)); DO_APP_FUNC(0x004BEED0, void, NolanBehaviour_StopBeingHeld, (NolanBehaviour * __this, MethodInfo * method)); @@ -16563,25 +18848,35 @@ DO_APP_FUNC(0x004C0480, bool, NolanBehaviour_IsCarryingInactiveRitualBookOnLocal DO_APP_FUNC(0x004C0710, bool, NolanBehaviour_IsCarryingPhotoOnLocalCharacter, (NolanBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x004C09A0, String *, NolanBehaviour_GetLocalCarryObjectName, (NolanBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x004C0B90, void, NolanBehaviour_OnDemonHoldingPlayer, (NolanBehaviour * __this, GameObject * demon, BoltEntity * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15388, NolanBehaviour_OnDemonHoldingPlayer__MethodInfo); DO_APP_FUNC(0x004C0DD0, void, NolanBehaviour_OnDemonLetGoOfPlayer, (NolanBehaviour * __this, GameObject * demon, BoltEntity * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15380, NolanBehaviour_OnDemonLetGoOfPlayer__MethodInfo); DO_APP_FUNC(0x004C1010, void, NolanBehaviour_OnAnnaLookAtEntity, (NolanBehaviour * __this, BoltEntity * lookAtEntity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D153F0, NolanBehaviour_OnAnnaLookAtEntity__MethodInfo); DO_APP_FUNC(0x004C1370, void, NolanBehaviour_StartHeartbeat, (NolanBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x004C1540, void, NolanBehaviour_StopHeartbeat, (NolanBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x004C1770, void, NolanBehaviour_SetBeamIndoors, (NolanBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x004C1810, void, NolanBehaviour_SetBeamOutdoors, (NolanBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x004C18B0, void, NolanBehaviour_SetupFlashlightBeam, (NolanBehaviour * __this, bool isHD, MethodInfo * method)); DO_APP_FUNC(0x004C1B30, void, NolanBehaviour_OnReviving, (NolanBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D152F0, NolanBehaviour_OnReviving__MethodInfo); DO_APP_FUNC(0x004C2150, void, NolanBehaviour_SetBeingRevivedBy, (NolanBehaviour * __this, BoltEntity * playerEntity, MethodInfo * method)); DO_APP_FUNC(0x004C2410, void, NolanBehaviour_SetPlayerToPlayerCollisions, (NolanBehaviour * __this, bool on, MethodInfo * method)); DO_APP_FUNC(0x004C24B0, void, NolanBehaviour_OnAzazelRunningAwayToCalmDown, (NolanBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D153C0, NolanBehaviour_OnAzazelRunningAwayToCalmDown__MethodInfo); DO_APP_FUNC(0x004C25E0, void, NolanBehaviour_OnAzazelCalmDown, (NolanBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D153D8, NolanBehaviour_OnAzazelCalmDown__MethodInfo); DO_APP_FUNC(0x004C2750, DevourGameMode__Enum, NolanBehaviour_GetGameMode, (NolanBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x004C2760, void, NolanBehaviour_OnAzazelFallLand, (NolanBehaviour * __this, GameObject * azazel, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D153C8, NolanBehaviour_OnAzazelFallLand__MethodInfo); DO_APP_FUNC(0x004C2A50, void, NolanBehaviour_TeleportTo, (NolanBehaviour * __this, Vector3 position, Quaternion rotation, bool snapAnimator, MethodInfo * method)); DO_APP_FUNC(0x004C2D80, void, NolanBehaviour_SetPurgatory, (NolanBehaviour * __this, bool active, MethodInfo * method)); DO_APP_FUNC(0x004C3170, void, NolanBehaviour_OnPurgatoryAttack, (NolanBehaviour * __this, GameObject * ai, float damage, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15310, NolanBehaviour_OnPurgatoryAttack__MethodInfo); DO_APP_FUNC(0x004C3540, void, NolanBehaviour_OnPoisonDamage, (NolanBehaviour * __this, BoltEntity * ai, float damage, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15320, NolanBehaviour_OnPoisonDamage__MethodInfo); DO_APP_FUNC(0x004C3D20, void, NolanBehaviour_OnPoison, (NolanBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15318, NolanBehaviour_OnPoison__MethodInfo); DO_APP_FUNC(0x004C4000, int32_t, NolanBehaviour_GetCarryObjectInteger, (NolanBehaviour * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x004C48F0, void, NolanBehaviour_SetLocalWeather, (NolanBehaviour * __this, bool active, MethodInfo * method)); DO_APP_FUNC(0x004C4A60, void, NolanBehaviour_SetLocalWeatherTriggers, (NolanBehaviour * __this, Collider__Array * triggers, MethodInfo * method)); @@ -16591,7 +18886,9 @@ DO_APP_FUNC(0x004C5300, IEnumerator *, NolanBehaviour_TeleportToPurgatory, (Nola DO_APP_FUNC(0x004C5430, void, NolanBehaviour_ActivateCrawlOnKnockoutEvent, (NolanBehaviour * __this, String * killedBy, MethodInfo * method)); DO_APP_FUNC(0x004C55C0, void, NolanBehaviour_ReturnFromPurgatory, (NolanBehaviour * __this, Transform * spawnPoint, bool useSpawnPointRotation, MethodInfo * method)); DO_APP_FUNC(0x004C5CF0, void, NolanBehaviour_OnGhostFried, (NolanBehaviour * __this, GhostBehaviour * ghost, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15370, NolanBehaviour_OnGhostFried__MethodInfo); DO_APP_FUNC(0x004C5F70, void, NolanBehaviour_OnAbilityCanStart, (NolanBehaviour * __this, Ability * ability, bool canStart, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15438, NolanBehaviour_OnAbilityCanStart__MethodInfo); DO_APP_FUNC(0x004C6270, void, NolanBehaviour_SetVRMovementDirection, (NolanBehaviour * __this, VRMovementDirection__Enum movementDirection, MethodInfo * method)); DO_APP_FUNC(0x004C62E0, void, NolanBehaviour_SetVRTurningMode, (NolanBehaviour * __this, VRTurningMode__Enum turningMode, MethodInfo * method)); DO_APP_FUNC(0x004C62F0, void, NolanBehaviour_SetVRTurningAngle, (NolanBehaviour * __this, int32_t turningAngle, MethodInfo * method)); @@ -16602,156 +18899,192 @@ DO_APP_FUNC(0x004C6700, bool, NolanBehaviour_CanTurnInVR, (NolanBehaviour * __th DO_APP_FUNC(0x004C6740, bool, NolanBehaviour_IsVRPlayer, (NolanBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x004C6A60, void, NolanBehaviour_VRHandTrackingChanged, (NolanBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x004C6DD0, void, NolanBehaviour_OnSpeed, (NolanBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D152E8, NolanBehaviour_OnSpeed__MethodInfo); DO_APP_FUNC(0x004C6F30, void, NolanBehaviour_SetVRGamepadMode, (NolanBehaviour * __this, bool gamepadMode, MethodInfo * method)); DO_APP_FUNC(0x004C7C80, void, NolanBehaviour_OnCorpseFried, (NolanBehaviour * __this, CorpseBehaviour * corpse, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15398, NolanBehaviour_OnCorpseFried__MethodInfo); DO_APP_FUNC(0x004C7F00, void, NolanBehaviour_OnGrounded, (NolanBehaviour * __this, bool grounded, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15360, NolanBehaviour_OnGrounded__MethodInfo); DO_APP_FUNC(0x004C8570, void, NolanBehaviour_Footstep, (NolanBehaviour * __this, int32_t footIndex, MethodInfo * method)); DO_APP_FUNC(0x004C87F0, void, NolanBehaviour__ctor, (NolanBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x004C92A0, void, NolanBehaviour__OnStateChange_b__336_0, (NolanBehaviour * __this, float val, MethodInfo * method)); -DO_APP_FUNC(0x004CB450, void, NolanBehaviour_OverlappedCollider__ctor, (NolanBehaviour_OverlappedCollider__Boxed * __this, Collider * collider, int32_t layer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D14950, NolanBehaviour__OnStateChange_b__336_0__MethodInfo); +DO_APP_FUNC(0x004CB450, void, NolanBehaviour_OverlappedCollider__ctor, (NolanBehaviour_OverlappedCollider * __this, Collider * collider, int32_t layer, MethodInfo * method)); DO_APP_FUNC(0x004CB4B0, void, NolanBehaviour_FlashlightFlickerOptions__ctor, (NolanBehaviour_FlashlightFlickerOptions * __this, Transform * origin, MethodInfo * method)); DO_APP_FUNC(0x004CB530, void, NolanBehaviour_FlashlightFlickerOptions__ctor_1, (NolanBehaviour_FlashlightFlickerOptions * __this, MethodInfo * method)); DO_APP_FUNC(0x004CB560, void, NolanBehaviour_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NolanBehaviour_c__ctor, (NolanBehaviour_c * __this, MethodInfo * method)); DO_APP_FUNC(0x004CB610, int32_t, NolanBehaviour_c__Awake_b__258_0, (NolanBehaviour_c * __this, RaycastHit res1, RaycastHit res2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15708, NolanBehaviour_c__Awake_b__258_0__MethodInfo); DO_APP_FUNC(0x004CB690, bool, NolanBehaviour_c__Awake_b__258_1, (NolanBehaviour_c * __this, State * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D156F8, NolanBehaviour_c__Awake_b__258_1__MethodInfo); DO_APP_FUNC(0x004CB720, bool, NolanBehaviour_c__Attached_b__259_0, (NolanBehaviour_c * __this, State * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D152B0, NolanBehaviour_c__Attached_b__259_0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, NolanBehaviour_WaitForPlayerDetailsForMenu_d_260__ctor, (NolanBehaviour_WaitForPlayerDetailsForMenu_d_260 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NolanBehaviour_WaitForPlayerDetailsForMenu_d_260_System_IDisposable_Dispose, (NolanBehaviour_WaitForPlayerDetailsForMenu_d_260 * __this, MethodInfo * method)); DO_APP_FUNC(0x004CB7B0, bool, NolanBehaviour_WaitForPlayerDetailsForMenu_d_260_MoveNext, (NolanBehaviour_WaitForPlayerDetailsForMenu_d_260 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, NolanBehaviour_WaitForPlayerDetailsForMenu_d_260_System_Collections_Generic_IEnumerator_System_Object__get_Current, (NolanBehaviour_WaitForPlayerDetailsForMenu_d_260 * __this, MethodInfo * method)); DO_APP_FUNC(0x004CBC70, void, NolanBehaviour_WaitForPlayerDetailsForMenu_d_260_System_Collections_IEnumerator_Reset, (NolanBehaviour_WaitForPlayerDetailsForMenu_d_260 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17FF8, NolanBehaviour_WaitForPlayerDetailsForMenu_d_260_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, NolanBehaviour_WaitForPlayerDetailsForMenu_d_260_System_Collections_IEnumerator_get_Current, (NolanBehaviour_WaitForPlayerDetailsForMenu_d_260 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, NolanBehaviour_ActivateCarryObject_d_288__ctor, (NolanBehaviour_ActivateCarryObject_d_288 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NolanBehaviour_ActivateCarryObject_d_288_System_IDisposable_Dispose, (NolanBehaviour_ActivateCarryObject_d_288 * __this, MethodInfo * method)); DO_APP_FUNC(0x004CBCC0, bool, NolanBehaviour_ActivateCarryObject_d_288_MoveNext, (NolanBehaviour_ActivateCarryObject_d_288 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, NolanBehaviour_ActivateCarryObject_d_288_System_Collections_Generic_IEnumerator_System_Object__get_Current, (NolanBehaviour_ActivateCarryObject_d_288 * __this, MethodInfo * method)); DO_APP_FUNC(0x004CCA90, void, NolanBehaviour_ActivateCarryObject_d_288_System_Collections_IEnumerator_Reset, (NolanBehaviour_ActivateCarryObject_d_288 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17FE8, NolanBehaviour_ActivateCarryObject_d_288_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, NolanBehaviour_ActivateCarryObject_d_288_System_Collections_IEnumerator_get_Current, (NolanBehaviour_ActivateCarryObject_d_288 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, NolanBehaviour_TransitionInToFrying_d_292__ctor, (NolanBehaviour_TransitionInToFrying_d_292 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NolanBehaviour_TransitionInToFrying_d_292_System_IDisposable_Dispose, (NolanBehaviour_TransitionInToFrying_d_292 * __this, MethodInfo * method)); DO_APP_FUNC(0x004CCAE0, bool, NolanBehaviour_TransitionInToFrying_d_292_MoveNext, (NolanBehaviour_TransitionInToFrying_d_292 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, NolanBehaviour_TransitionInToFrying_d_292_System_Collections_Generic_IEnumerator_System_Object__get_Current, (NolanBehaviour_TransitionInToFrying_d_292 * __this, MethodInfo * method)); DO_APP_FUNC(0x004CDA30, void, NolanBehaviour_TransitionInToFrying_d_292_System_Collections_IEnumerator_Reset, (NolanBehaviour_TransitionInToFrying_d_292 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17FE0, NolanBehaviour_TransitionInToFrying_d_292_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, NolanBehaviour_TransitionInToFrying_d_292_System_Collections_IEnumerator_get_Current, (NolanBehaviour_TransitionInToFrying_d_292 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, NolanBehaviour_TransitionOutOfFrying_d_293__ctor, (NolanBehaviour_TransitionOutOfFrying_d_293 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NolanBehaviour_TransitionOutOfFrying_d_293_System_IDisposable_Dispose, (NolanBehaviour_TransitionOutOfFrying_d_293 * __this, MethodInfo * method)); DO_APP_FUNC(0x004CDA80, bool, NolanBehaviour_TransitionOutOfFrying_d_293_MoveNext, (NolanBehaviour_TransitionOutOfFrying_d_293 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, NolanBehaviour_TransitionOutOfFrying_d_293_System_Collections_Generic_IEnumerator_System_Object__get_Current, (NolanBehaviour_TransitionOutOfFrying_d_293 * __this, MethodInfo * method)); DO_APP_FUNC(0x004CEAA0, void, NolanBehaviour_TransitionOutOfFrying_d_293_System_Collections_IEnumerator_Reset, (NolanBehaviour_TransitionOutOfFrying_d_293 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17FD8, NolanBehaviour_TransitionOutOfFrying_d_293_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, NolanBehaviour_TransitionOutOfFrying_d_293_System_Collections_IEnumerator_get_Current, (NolanBehaviour_TransitionOutOfFrying_d_293 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, NolanBehaviour_TransitionInToRitualBookPlace_d_294__ctor, (NolanBehaviour_TransitionInToRitualBookPlace_d_294 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NolanBehaviour_TransitionInToRitualBookPlace_d_294_System_IDisposable_Dispose, (NolanBehaviour_TransitionInToRitualBookPlace_d_294 * __this, MethodInfo * method)); DO_APP_FUNC(0x004CEAF0, bool, NolanBehaviour_TransitionInToRitualBookPlace_d_294_MoveNext, (NolanBehaviour_TransitionInToRitualBookPlace_d_294 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, NolanBehaviour_TransitionInToRitualBookPlace_d_294_System_Collections_Generic_IEnumerator_System_Object__get_Current, (NolanBehaviour_TransitionInToRitualBookPlace_d_294 * __this, MethodInfo * method)); DO_APP_FUNC(0x004CF2F0, void, NolanBehaviour_TransitionInToRitualBookPlace_d_294_System_Collections_IEnumerator_Reset, (NolanBehaviour_TransitionInToRitualBookPlace_d_294 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17FD0, NolanBehaviour_TransitionInToRitualBookPlace_d_294_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, NolanBehaviour_TransitionInToRitualBookPlace_d_294_System_Collections_IEnumerator_get_Current, (NolanBehaviour_TransitionInToRitualBookPlace_d_294 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, NolanBehaviour_TransitionOutOfRitualBookPlace_d_295__ctor, (NolanBehaviour_TransitionOutOfRitualBookPlace_d_295 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NolanBehaviour_TransitionOutOfRitualBookPlace_d_295_System_IDisposable_Dispose, (NolanBehaviour_TransitionOutOfRitualBookPlace_d_295 * __this, MethodInfo * method)); DO_APP_FUNC(0x004CF340, bool, NolanBehaviour_TransitionOutOfRitualBookPlace_d_295_MoveNext, (NolanBehaviour_TransitionOutOfRitualBookPlace_d_295 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, NolanBehaviour_TransitionOutOfRitualBookPlace_d_295_System_Collections_Generic_IEnumerator_System_Object__get_Current, (NolanBehaviour_TransitionOutOfRitualBookPlace_d_295 * __this, MethodInfo * method)); DO_APP_FUNC(0x004CFA40, void, NolanBehaviour_TransitionOutOfRitualBookPlace_d_295_System_Collections_IEnumerator_Reset, (NolanBehaviour_TransitionOutOfRitualBookPlace_d_295 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17FC8, NolanBehaviour_TransitionOutOfRitualBookPlace_d_295_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, NolanBehaviour_TransitionOutOfRitualBookPlace_d_295_System_Collections_IEnumerator_get_Current, (NolanBehaviour_TransitionOutOfRitualBookPlace_d_295 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, NolanBehaviour_DelayCreateDroppedObject_d_301__ctor, (NolanBehaviour_DelayCreateDroppedObject_d_301 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NolanBehaviour_DelayCreateDroppedObject_d_301_System_IDisposable_Dispose, (NolanBehaviour_DelayCreateDroppedObject_d_301 * __this, MethodInfo * method)); DO_APP_FUNC(0x004CFA90, bool, NolanBehaviour_DelayCreateDroppedObject_d_301_MoveNext, (NolanBehaviour_DelayCreateDroppedObject_d_301 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, NolanBehaviour_DelayCreateDroppedObject_d_301_System_Collections_Generic_IEnumerator_System_Object__get_Current, (NolanBehaviour_DelayCreateDroppedObject_d_301 * __this, MethodInfo * method)); DO_APP_FUNC(0x004CFBE0, void, NolanBehaviour_DelayCreateDroppedObject_d_301_System_Collections_IEnumerator_Reset, (NolanBehaviour_DelayCreateDroppedObject_d_301 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17FC0, NolanBehaviour_DelayCreateDroppedObject_d_301_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, NolanBehaviour_DelayCreateDroppedObject_d_301_System_Collections_IEnumerator_get_Current, (NolanBehaviour_DelayCreateDroppedObject_d_301 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, NolanBehaviour_DelayEnableKnockedOutEffects_d_303__ctor, (NolanBehaviour_DelayEnableKnockedOutEffects_d_303 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NolanBehaviour_DelayEnableKnockedOutEffects_d_303_System_IDisposable_Dispose, (NolanBehaviour_DelayEnableKnockedOutEffects_d_303 * __this, MethodInfo * method)); DO_APP_FUNC(0x004CFC30, bool, NolanBehaviour_DelayEnableKnockedOutEffects_d_303_MoveNext, (NolanBehaviour_DelayEnableKnockedOutEffects_d_303 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, NolanBehaviour_DelayEnableKnockedOutEffects_d_303_System_Collections_Generic_IEnumerator_System_Object__get_Current, (NolanBehaviour_DelayEnableKnockedOutEffects_d_303 * __this, MethodInfo * method)); DO_APP_FUNC(0x004CFD30, void, NolanBehaviour_DelayEnableKnockedOutEffects_d_303_System_Collections_IEnumerator_Reset, (NolanBehaviour_DelayEnableKnockedOutEffects_d_303 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17FB8, NolanBehaviour_DelayEnableKnockedOutEffects_d_303_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, NolanBehaviour_DelayEnableKnockedOutEffects_d_303_System_Collections_IEnumerator_get_Current, (NolanBehaviour_DelayEnableKnockedOutEffects_d_303 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, NolanBehaviour_DelayRespawn_d_310__ctor, (NolanBehaviour_DelayRespawn_d_310 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NolanBehaviour_DelayRespawn_d_310_System_IDisposable_Dispose, (NolanBehaviour_DelayRespawn_d_310 * __this, MethodInfo * method)); DO_APP_FUNC(0x004CFD80, bool, NolanBehaviour_DelayRespawn_d_310_MoveNext, (NolanBehaviour_DelayRespawn_d_310 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, NolanBehaviour_DelayRespawn_d_310_System_Collections_Generic_IEnumerator_System_Object__get_Current, (NolanBehaviour_DelayRespawn_d_310 * __this, MethodInfo * method)); DO_APP_FUNC(0x004CFFC0, void, NolanBehaviour_DelayRespawn_d_310_System_Collections_IEnumerator_Reset, (NolanBehaviour_DelayRespawn_d_310 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17FA8, NolanBehaviour_DelayRespawn_d_310_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, NolanBehaviour_DelayRespawn_d_310_System_Collections_IEnumerator_get_Current, (NolanBehaviour_DelayRespawn_d_310 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, NolanBehaviour_Zoom_d_318__ctor, (NolanBehaviour_Zoom_d_318 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NolanBehaviour_Zoom_d_318_System_IDisposable_Dispose, (NolanBehaviour_Zoom_d_318 * __this, MethodInfo * method)); DO_APP_FUNC(0x004D0010, bool, NolanBehaviour_Zoom_d_318_MoveNext, (NolanBehaviour_Zoom_d_318 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, NolanBehaviour_Zoom_d_318_System_Collections_Generic_IEnumerator_System_Object__get_Current, (NolanBehaviour_Zoom_d_318 * __this, MethodInfo * method)); DO_APP_FUNC(0x004D0300, void, NolanBehaviour_Zoom_d_318_System_Collections_IEnumerator_Reset, (NolanBehaviour_Zoom_d_318 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17FA0, NolanBehaviour_Zoom_d_318_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, NolanBehaviour_Zoom_d_318_System_Collections_IEnumerator_get_Current, (NolanBehaviour_Zoom_d_318 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, NolanBehaviour_FlashlightFlicker_d_325__ctor, (NolanBehaviour_FlashlightFlicker_d_325 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NolanBehaviour_FlashlightFlicker_d_325_System_IDisposable_Dispose, (NolanBehaviour_FlashlightFlicker_d_325 * __this, MethodInfo * method)); DO_APP_FUNC(0x004D0350, bool, NolanBehaviour_FlashlightFlicker_d_325_MoveNext, (NolanBehaviour_FlashlightFlicker_d_325 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, NolanBehaviour_FlashlightFlicker_d_325_System_Collections_Generic_IEnumerator_System_Object__get_Current, (NolanBehaviour_FlashlightFlicker_d_325 * __this, MethodInfo * method)); DO_APP_FUNC(0x004D0CF0, void, NolanBehaviour_FlashlightFlicker_d_325_System_Collections_IEnumerator_Reset, (NolanBehaviour_FlashlightFlicker_d_325 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17F98, NolanBehaviour_FlashlightFlicker_d_325_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, NolanBehaviour_FlashlightFlicker_d_325_System_Collections_IEnumerator_get_Current, (NolanBehaviour_FlashlightFlicker_d_325 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, NolanBehaviour_DelaySetIsBeingKnockedOut_d_328__ctor, (NolanBehaviour_DelaySetIsBeingKnockedOut_d_328 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NolanBehaviour_DelaySetIsBeingKnockedOut_d_328_System_IDisposable_Dispose, (NolanBehaviour_DelaySetIsBeingKnockedOut_d_328 * __this, MethodInfo * method)); DO_APP_FUNC(0x004D0D40, bool, NolanBehaviour_DelaySetIsBeingKnockedOut_d_328_MoveNext, (NolanBehaviour_DelaySetIsBeingKnockedOut_d_328 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, NolanBehaviour_DelaySetIsBeingKnockedOut_d_328_System_Collections_Generic_IEnumerator_System_Object__get_Current, (NolanBehaviour_DelaySetIsBeingKnockedOut_d_328 * __this, MethodInfo * method)); DO_APP_FUNC(0x004D0E40, void, NolanBehaviour_DelaySetIsBeingKnockedOut_d_328_System_Collections_IEnumerator_Reset, (NolanBehaviour_DelaySetIsBeingKnockedOut_d_328 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17F90, NolanBehaviour_DelaySetIsBeingKnockedOut_d_328_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, NolanBehaviour_DelaySetIsBeingKnockedOut_d_328_System_Collections_IEnumerator_get_Current, (NolanBehaviour_DelaySetIsBeingKnockedOut_d_328 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, NolanBehaviour_BeingHeld_d_345__ctor, (NolanBehaviour_BeingHeld_d_345 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NolanBehaviour_BeingHeld_d_345_System_IDisposable_Dispose, (NolanBehaviour_BeingHeld_d_345 * __this, MethodInfo * method)); DO_APP_FUNC(0x004D0E90, bool, NolanBehaviour_BeingHeld_d_345_MoveNext, (NolanBehaviour_BeingHeld_d_345 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, NolanBehaviour_BeingHeld_d_345_System_Collections_Generic_IEnumerator_System_Object__get_Current, (NolanBehaviour_BeingHeld_d_345 * __this, MethodInfo * method)); DO_APP_FUNC(0x004D1550, void, NolanBehaviour_BeingHeld_d_345_System_Collections_IEnumerator_Reset, (NolanBehaviour_BeingHeld_d_345 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17F78, NolanBehaviour_BeingHeld_d_345_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, NolanBehaviour_BeingHeld_d_345_System_Collections_IEnumerator_get_Current, (NolanBehaviour_BeingHeld_d_345 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, NolanBehaviour_TeleportToPurgatory_d_390__ctor, (NolanBehaviour_TeleportToPurgatory_d_390 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NolanBehaviour_TeleportToPurgatory_d_390_System_IDisposable_Dispose, (NolanBehaviour_TeleportToPurgatory_d_390 * __this, MethodInfo * method)); DO_APP_FUNC(0x004D15A0, bool, NolanBehaviour_TeleportToPurgatory_d_390_MoveNext, (NolanBehaviour_TeleportToPurgatory_d_390 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, NolanBehaviour_TeleportToPurgatory_d_390_System_Collections_Generic_IEnumerator_System_Object__get_Current, (NolanBehaviour_TeleportToPurgatory_d_390 * __this, MethodInfo * method)); DO_APP_FUNC(0x004D2290, void, NolanBehaviour_TeleportToPurgatory_d_390_System_Collections_IEnumerator_Reset, (NolanBehaviour_TeleportToPurgatory_d_390 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17F70, NolanBehaviour_TeleportToPurgatory_d_390_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, NolanBehaviour_TeleportToPurgatory_d_390_System_Collections_IEnumerator_get_Current, (NolanBehaviour_TeleportToPurgatory_d_390 * __this, MethodInfo * method)); DO_APP_FUNC(0x004D22E0, void, NolanEmoteController_Awake, (NolanEmoteController * __this, MethodInfo * method)); DO_APP_FUNC(0x004D2570, void, NolanEmoteController_Attached, (NolanEmoteController * __this, MethodInfo * method)); DO_APP_FUNC(0x004D2A70, void, NolanEmoteController_OnAbilityIndex, (NolanEmoteController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17F60, NolanEmoteController_OnAbilityIndex__MethodInfo); DO_APP_FUNC(0x004D2D60, IEnumerator *, NolanEmoteController_WaitForValidation, (NolanEmoteController * __this, MethodInfo * method)); DO_APP_FUNC(0x004D2E00, IEnumerator *, NolanEmoteController_StoreEmotesOwnedOnSteam, (NolanEmoteController * __this, int32_t connectionId, MethodInfo * method)); DO_APP_FUNC(0x004D2EB0, void, NolanEmoteController_SetEmoteClassicMode, (NolanEmoteController * __this, bool active, MethodInfo * method)); DO_APP_FUNC(0x004D30F0, void, NolanEmoteController_ForceEmoteAbility, (NolanEmoteController * __this, CharacterEmote * emote, MethodInfo * method)); DO_APP_FUNC(0x004D3470, IEnumerator *, NolanEmoteController_DelayForceEmoteAbility, (NolanEmoteController * __this, CharacterEmote * emote, MethodInfo * method)); DO_APP_FUNC(0x004D3580, void, NolanEmoteController_OnConnectionId, (NolanEmoteController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17F58, NolanEmoteController_OnConnectionId__MethodInfo); DO_APP_FUNC(0x004D36C0, void, NolanEmoteController__ctor, (NolanEmoteController * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, NolanEmoteController_WaitForValidation_d_12__ctor, (NolanEmoteController_WaitForValidation_d_12 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NolanEmoteController_WaitForValidation_d_12_System_IDisposable_Dispose, (NolanEmoteController_WaitForValidation_d_12 * __this, MethodInfo * method)); DO_APP_FUNC(0x004D37B0, bool, NolanEmoteController_WaitForValidation_d_12_MoveNext, (NolanEmoteController_WaitForValidation_d_12 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, NolanEmoteController_WaitForValidation_d_12_System_Collections_Generic_IEnumerator_System_Object__get_Current, (NolanEmoteController_WaitForValidation_d_12 * __this, MethodInfo * method)); DO_APP_FUNC(0x004D3DD0, void, NolanEmoteController_WaitForValidation_d_12_System_Collections_IEnumerator_Reset, (NolanEmoteController_WaitForValidation_d_12 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17EF8, NolanEmoteController_WaitForValidation_d_12_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, NolanEmoteController_WaitForValidation_d_12_System_Collections_IEnumerator_get_Current, (NolanEmoteController_WaitForValidation_d_12 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, NolanEmoteController_StoreEmotesOwnedOnSteam_d_13__ctor, (NolanEmoteController_StoreEmotesOwnedOnSteam_d_13 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NolanEmoteController_StoreEmotesOwnedOnSteam_d_13_System_IDisposable_Dispose, (NolanEmoteController_StoreEmotesOwnedOnSteam_d_13 * __this, MethodInfo * method)); DO_APP_FUNC(0x004D3E20, bool, NolanEmoteController_StoreEmotesOwnedOnSteam_d_13_MoveNext, (NolanEmoteController_StoreEmotesOwnedOnSteam_d_13 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, NolanEmoteController_StoreEmotesOwnedOnSteam_d_13_System_Collections_Generic_IEnumerator_System_Object__get_Current, (NolanEmoteController_StoreEmotesOwnedOnSteam_d_13 * __this, MethodInfo * method)); DO_APP_FUNC(0x004D46D0, void, NolanEmoteController_StoreEmotesOwnedOnSteam_d_13_System_Collections_IEnumerator_Reset, (NolanEmoteController_StoreEmotesOwnedOnSteam_d_13 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17EB8, NolanEmoteController_StoreEmotesOwnedOnSteam_d_13_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, NolanEmoteController_StoreEmotesOwnedOnSteam_d_13_System_Collections_IEnumerator_get_Current, (NolanEmoteController_StoreEmotesOwnedOnSteam_d_13 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, NolanEmoteController_DelayForceEmoteAbility_d_16__ctor, (NolanEmoteController_DelayForceEmoteAbility_d_16 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NolanEmoteController_DelayForceEmoteAbility_d_16_System_IDisposable_Dispose, (NolanEmoteController_DelayForceEmoteAbility_d_16 * __this, MethodInfo * method)); DO_APP_FUNC(0x004D4720, bool, NolanEmoteController_DelayForceEmoteAbility_d_16_MoveNext, (NolanEmoteController_DelayForceEmoteAbility_d_16 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, NolanEmoteController_DelayForceEmoteAbility_d_16_System_Collections_Generic_IEnumerator_System_Object__get_Current, (NolanEmoteController_DelayForceEmoteAbility_d_16 * __this, MethodInfo * method)); DO_APP_FUNC(0x004D4810, void, NolanEmoteController_DelayForceEmoteAbility_d_16_System_Collections_IEnumerator_Reset, (NolanEmoteController_DelayForceEmoteAbility_d_16 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17EB0, NolanEmoteController_DelayForceEmoteAbility_d_16_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, NolanEmoteController_DelayForceEmoteAbility_d_16_System_Collections_IEnumerator_get_Current, (NolanEmoteController_DelayForceEmoteAbility_d_16 * __this, MethodInfo * method)); DO_APP_FUNC(0x004D4860, void, NolanNameplateController_Awake, (NolanNameplateController * __this, MethodInfo * method)); DO_APP_FUNC(0x004D4A00, void, NolanNameplateController_Attached, (NolanNameplateController * __this, MethodInfo * method)); DO_APP_FUNC(0x004D51E0, void, NolanNameplateController_Update, (NolanNameplateController * __this, MethodInfo * method)); DO_APP_FUNC(0x004D5600, void, NolanNameplateController_OnPlayerPickedUpEvent, (NolanNameplateController * __this, BoltEntity * killedBy, BoltEntity * player, bool inHidingSpot, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17EA8, NolanNameplateController_OnPlayerPickedUpEvent__MethodInfo); DO_APP_FUNC(0x004D57D0, void, NolanNameplateController_OnReviveEvent, (NolanNameplateController * __this, BoltEntity * player, BoltEntity * reviver, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17EA0, NolanNameplateController_OnReviveEvent__MethodInfo); DO_APP_FUNC(0x004D59A0, void, NolanNameplateController_SetNameplate, (NolanNameplateController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17E98, NolanNameplateController_SetNameplate__MethodInfo); DO_APP_FUNC(0x004D5B40, void, NolanNameplateController_Detached, (NolanNameplateController * __this, MethodInfo * method)); DO_APP_FUNC(0x004D5CF0, void, NolanNameplateController_SetEnabled, (NolanNameplateController * __this, MethodInfo * method)); DO_APP_FUNC(0x004D5EE0, void, NolanNameplateController_SetCutscenePlaying, (NolanNameplateController * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x004D5EF0, void, NolanNameplateController__ctor, (NolanNameplateController * __this, MethodInfo * method)); DO_APP_FUNC(0x004D5F50, void, NolanNameplateController__Attached_b__13_0, (NolanNameplateController * __this, PlayableDirector * d, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17E90, NolanNameplateController__Attached_b__13_0__MethodInfo); DO_APP_FUNC(0x004D5F60, void, NolanPerkController_Awake, (NolanPerkController * __this, MethodInfo * method)); DO_APP_FUNC(0x004D6110, void, NolanPerkController_Attached, (NolanPerkController * __this, MethodInfo * method)); DO_APP_FUNC(0x004D6CB0, void, NolanPerkController_Update, (NolanPerkController * __this, MethodInfo * method)); DO_APP_FUNC(0x004D6DA0, IEnumerator *, NolanPerkController_WaitForValidation, (NolanPerkController * __this, MethodInfo * method)); DO_APP_FUNC(0x004D6E40, void, NolanPerkController_SetPerk, (NolanPerkController * __this, String * prefName, MethodInfo * method)); DO_APP_FUNC(0x004D70F0, void, NolanPerkController_OnPerk, (NolanPerkController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17E40, NolanPerkController_OnPerk__MethodInfo); DO_APP_FUNC(0x004D71B0, void, NolanPerkController_OnPerk2, (NolanPerkController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17E48, NolanPerkController_OnPerk2__MethodInfo); DO_APP_FUNC(0x004D7270, void, NolanPerkController_PerkChanged, (NolanPerkController * __this, String * perk, MethodInfo * method)); DO_APP_FUNC(0x004D7750, IEnumerator *, NolanPerkController_UpdateSurvivalLobbyController, (NolanPerkController * __this, MethodInfo * method)); DO_APP_FUNC(0x004D77F0, void, NolanPerkController_OnCarryObjectName, (NolanPerkController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17E58, NolanPerkController_OnCarryObjectName__MethodInfo); DO_APP_FUNC(0x004D7AA0, void, NolanPerkController_OnReviveEvent, (NolanPerkController * __this, BoltEntity * player, BoltEntity * reviver, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17E38, NolanPerkController_OnReviveEvent__MethodInfo); DO_APP_FUNC(0x004D7E20, void, NolanPerkController_OnCharacterAbilityActive, (NolanPerkController * __this, Ability * ability, bool active, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17E50, NolanPerkController_OnCharacterAbilityActive__MethodInfo); DO_APP_FUNC(0x004D8450, void, NolanPerkController_OnStateChange, (NolanPerkController * __this, GameObject * obj, String * stateName, bool active, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17E30, NolanPerkController_OnStateChange__MethodInfo); DO_APP_FUNC(0x004D8AD0, void, NolanPerkController_OnAzazelPursueStart, (NolanPerkController * __this, MethodInfo * method)); DO_APP_FUNC(0x004D8BB0, void, NolanPerkController_OnAzazelPursueStop, (NolanPerkController * __this, MethodInfo * method)); DO_APP_FUNC(0x004D8C90, IEnumerator *, NolanPerkController_DelayDisableState, (NolanPerkController * __this, GameObject * obj, String * stateName, float delay, MethodInfo * method)); @@ -16764,35 +19097,41 @@ DO_APP_FUNC(0x004D98F0, void, NolanPerkController__ctor, (NolanPerkController * DO_APP_FUNC(0x004D9950, void, NolanPerkController_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NolanPerkController_c__ctor, (NolanPerkController_c * __this, MethodInfo * method)); DO_APP_FUNC(0x004D9A00, bool, NolanPerkController_c__Attached_b__14_0, (NolanPerkController_c * __this, State * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17E28, NolanPerkController_c__Attached_b__14_0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, NolanPerkController_WaitForValidation_d_16__ctor, (NolanPerkController_WaitForValidation_d_16 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NolanPerkController_WaitForValidation_d_16_System_IDisposable_Dispose, (NolanPerkController_WaitForValidation_d_16 * __this, MethodInfo * method)); DO_APP_FUNC(0x004D9A90, bool, NolanPerkController_WaitForValidation_d_16_MoveNext, (NolanPerkController_WaitForValidation_d_16 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, NolanPerkController_WaitForValidation_d_16_System_Collections_Generic_IEnumerator_System_Object__get_Current, (NolanPerkController_WaitForValidation_d_16 * __this, MethodInfo * method)); DO_APP_FUNC(0x004D9E60, void, NolanPerkController_WaitForValidation_d_16_System_Collections_IEnumerator_Reset, (NolanPerkController_WaitForValidation_d_16 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17CB8, NolanPerkController_WaitForValidation_d_16_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, NolanPerkController_WaitForValidation_d_16_System_Collections_IEnumerator_get_Current, (NolanPerkController_WaitForValidation_d_16 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, NolanPerkController_UpdateSurvivalLobbyController_d_21__ctor, (NolanPerkController_UpdateSurvivalLobbyController_d_21 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NolanPerkController_UpdateSurvivalLobbyController_d_21_System_IDisposable_Dispose, (NolanPerkController_UpdateSurvivalLobbyController_d_21 * __this, MethodInfo * method)); DO_APP_FUNC(0x004D9EB0, bool, NolanPerkController_UpdateSurvivalLobbyController_d_21_MoveNext, (NolanPerkController_UpdateSurvivalLobbyController_d_21 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, NolanPerkController_UpdateSurvivalLobbyController_d_21_System_Collections_Generic_IEnumerator_System_Object__get_Current, (NolanPerkController_UpdateSurvivalLobbyController_d_21 * __this, MethodInfo * method)); DO_APP_FUNC(0x004DA660, void, NolanPerkController_UpdateSurvivalLobbyController_d_21_System_Collections_IEnumerator_Reset, (NolanPerkController_UpdateSurvivalLobbyController_d_21 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17C98, NolanPerkController_UpdateSurvivalLobbyController_d_21_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, NolanPerkController_UpdateSurvivalLobbyController_d_21_System_Collections_IEnumerator_get_Current, (NolanPerkController_UpdateSurvivalLobbyController_d_21 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, NolanPerkController_DelayDisableState_d_28__ctor, (NolanPerkController_DelayDisableState_d_28 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NolanPerkController_DelayDisableState_d_28_System_IDisposable_Dispose, (NolanPerkController_DelayDisableState_d_28 * __this, MethodInfo * method)); DO_APP_FUNC(0x004DA6B0, bool, NolanPerkController_DelayDisableState_d_28_MoveNext, (NolanPerkController_DelayDisableState_d_28 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, NolanPerkController_DelayDisableState_d_28_System_Collections_Generic_IEnumerator_System_Object__get_Current, (NolanPerkController_DelayDisableState_d_28 * __this, MethodInfo * method)); DO_APP_FUNC(0x004DA990, void, NolanPerkController_DelayDisableState_d_28_System_Collections_IEnumerator_Reset, (NolanPerkController_DelayDisableState_d_28 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17C90, NolanPerkController_DelayDisableState_d_28_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, NolanPerkController_DelayDisableState_d_28_System_Collections_IEnumerator_get_Current, (NolanPerkController_DelayDisableState_d_28 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, NolanPerkController_DelayDisableAttributeState_d_29__ctor, (NolanPerkController_DelayDisableAttributeState_d_29 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NolanPerkController_DelayDisableAttributeState_d_29_System_IDisposable_Dispose, (NolanPerkController_DelayDisableAttributeState_d_29 * __this, MethodInfo * method)); DO_APP_FUNC(0x004DA9E0, bool, NolanPerkController_DelayDisableAttributeState_d_29_MoveNext, (NolanPerkController_DelayDisableAttributeState_d_29 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, NolanPerkController_DelayDisableAttributeState_d_29_System_Collections_Generic_IEnumerator_System_Object__get_Current, (NolanPerkController_DelayDisableAttributeState_d_29 * __this, MethodInfo * method)); DO_APP_FUNC(0x004DABF0, void, NolanPerkController_DelayDisableAttributeState_d_29_System_Collections_IEnumerator_Reset, (NolanPerkController_DelayDisableAttributeState_d_29 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17C88, NolanPerkController_DelayDisableAttributeState_d_29_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, NolanPerkController_DelayDisableAttributeState_d_29_System_Collections_IEnumerator_get_Current, (NolanPerkController_DelayDisableAttributeState_d_29 * __this, MethodInfo * method)); DO_APP_FUNC(0x004DAC40, void, NolanRankController_Attached, (NolanRankController * __this, MethodInfo * method)); DO_APP_FUNC(0x004DAE60, int32_t, NolanRankController_GetRank, (NolanRankController * __this, MethodInfo * method)); DO_APP_FUNC(0x004DB020, void, NolanRankController_UpdateRank, (NolanRankController * __this, MethodInfo * method)); DO_APP_FUNC(0x004DB320, void, NolanRankController_SetRank, (NolanRankController * __this, int32_t rank, MethodInfo * method)); DO_APP_FUNC(0x004DB510, void, NolanRankController_OnRank, (NolanRankController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17C78, NolanRankController_OnRank__MethodInfo); DO_APP_FUNC(0x004DB5C0, IEnumerator *, NolanRankController_UpdateSurvivalLobbyController, (NolanRankController * __this, MethodInfo * method)); DO_APP_FUNC(0x004DB660, void, NolanRankController__ctor, (NolanRankController * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, NolanRankController_UpdateSurvivalLobbyController_d_6__ctor, (NolanRankController_UpdateSurvivalLobbyController_d_6 * __this, int32_t __1__state, MethodInfo * method)); @@ -16800,13 +19139,17 @@ DO_APP_FUNC(0x003AE050, void, NolanRankController_UpdateSurvivalLobbyController_ DO_APP_FUNC(0x004DB6B0, bool, NolanRankController_UpdateSurvivalLobbyController_d_6_MoveNext, (NolanRankController_UpdateSurvivalLobbyController_d_6 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, NolanRankController_UpdateSurvivalLobbyController_d_6_System_Collections_Generic_IEnumerator_System_Object__get_Current, (NolanRankController_UpdateSurvivalLobbyController_d_6 * __this, MethodInfo * method)); DO_APP_FUNC(0x004DBD30, void, NolanRankController_UpdateSurvivalLobbyController_d_6_System_Collections_IEnumerator_Reset, (NolanRankController_UpdateSurvivalLobbyController_d_6 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17C50, NolanRankController_UpdateSurvivalLobbyController_d_6_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, NolanRankController_UpdateSurvivalLobbyController_d_6_System_Collections_IEnumerator_get_Current, (NolanRankController_UpdateSurvivalLobbyController_d_6 * __this, MethodInfo * method)); DO_APP_FUNC(0x004DBD80, void, NolanVoiceOvers_Awake, (NolanVoiceOvers * __this, MethodInfo * method)); DO_APP_FUNC(0x004DBEA0, void, NolanVoiceOvers_Attached, (NolanVoiceOvers * __this, MethodInfo * method)); DO_APP_FUNC(0x004DC600, void, NolanVoiceOvers_OnAbilityIndex, (NolanVoiceOvers * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17C40, NolanVoiceOvers_OnAbilityIndex__MethodInfo); DO_APP_FUNC(0x004DCA00, void, NolanVoiceOvers_OnGlobalGoatBurnEvent, (NolanVoiceOvers * __this, int32_t numObjectsBurnt, BoltEntity * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17C38, NolanVoiceOvers_OnGlobalGoatBurnEvent__MethodInfo); DO_APP_FUNC(0x004DCC70, IEnumerator *, NolanVoiceOvers_DelayLaugh, (NolanVoiceOvers * __this, MethodInfo * method)); DO_APP_FUNC(0x004DCD10, void, NolanVoiceOvers_OnKeysChanged, (NolanVoiceOvers * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17C30, NolanVoiceOvers_OnKeysChanged__MethodInfo); DO_APP_FUNC(0x004DCD30, void, NolanVoiceOvers_Update, (NolanVoiceOvers * __this, MethodInfo * method)); DO_APP_FUNC(0x004DCF40, void, NolanVoiceOvers_Scream, (NolanVoiceOvers * __this, MethodInfo * method)); DO_APP_FUNC(0x004DCF60, void, NolanVoiceOvers_Detached, (NolanVoiceOvers * __this, MethodInfo * method)); @@ -16819,14 +19162,17 @@ DO_APP_FUNC(0x004DD5C0, void, NolanVoiceOvers__ctor, (NolanVoiceOvers * __this, DO_APP_FUNC(0x004DD610, void, NolanVoiceOvers_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NolanVoiceOvers_c__ctor, (NolanVoiceOvers_c * __this, MethodInfo * method)); DO_APP_FUNC(0x004DD6C0, bool, NolanVoiceOvers_c__Attached_b__18_0, (NolanVoiceOvers_c * __this, Generic * a, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17C28, NolanVoiceOvers_c__Attached_b__18_0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, NolanVoiceOvers_DelayLaugh_d_21__ctor, (NolanVoiceOvers_DelayLaugh_d_21 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NolanVoiceOvers_DelayLaugh_d_21_System_IDisposable_Dispose, (NolanVoiceOvers_DelayLaugh_d_21 * __this, MethodInfo * method)); DO_APP_FUNC(0x004DD700, bool, NolanVoiceOvers_DelayLaugh_d_21_MoveNext, (NolanVoiceOvers_DelayLaugh_d_21 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, NolanVoiceOvers_DelayLaugh_d_21_System_Collections_Generic_IEnumerator_System_Object__get_Current, (NolanVoiceOvers_DelayLaugh_d_21 * __this, MethodInfo * method)); DO_APP_FUNC(0x004DD910, void, NolanVoiceOvers_DelayLaugh_d_21_System_Collections_IEnumerator_Reset, (NolanVoiceOvers_DelayLaugh_d_21 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17B80, NolanVoiceOvers_DelayLaugh_d_21_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, NolanVoiceOvers_DelayLaugh_d_21_System_Collections_IEnumerator_get_Current, (NolanVoiceOvers_DelayLaugh_d_21 * __this, MethodInfo * method)); DO_APP_FUNC(0x004DD960, void, ObjectInteractableCarryToggle_Awake, (ObjectInteractableCarryToggle * __this, MethodInfo * method)); DO_APP_FUNC(0x004DDA40, void, ObjectInteractableCarryToggle_OnCarryObjectName, (ObjectInteractableCarryToggle * __this, String * objectName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17B58, ObjectInteractableCarryToggle_OnCarryObjectName__MethodInfo); DO_APP_FUNC(0x004DDB40, void, ObjectInteractableCarryToggle_OnDestroy, (ObjectInteractableCarryToggle * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, ObjectInteractableCarryToggle__ctor, (ObjectInteractableCarryToggle * __this, MethodInfo * method)); DO_APP_FUNC(0x004DDC20, void, OcclusionTrigger_Awake, (OcclusionTrigger * __this, MethodInfo * method)); @@ -16836,10 +19182,12 @@ DO_APP_FUNC(0x004DE230, void, OcclusionTrigger_SetRenderer, (OcclusionTrigger * DO_APP_FUNC(0x004DE8A0, void, OcclusionTrigger__ctor, (OcclusionTrigger * __this, MethodInfo * method)); DO_APP_FUNC(0x004DEAF0, void, OpenURL_Start, (OpenURL * __this, MethodInfo * method)); DO_APP_FUNC(0x004DEBC0, void, OpenURL_OnClick, (OpenURL * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17990, OpenURL_OnClick__MethodInfo); DO_APP_FUNC(0x003AE000, void, OpenURL__ctor, (OpenURL * __this, MethodInfo * method)); DO_APP_FUNC(0x004DEC10, void, DoorWeatherParticles_Awake, (DoorWeatherParticles * __this, MethodInfo * method)); DO_APP_FUNC(0x004DEF60, void, DoorWeatherParticles_FixedUpdate, (DoorWeatherParticles * __this, MethodInfo * method)); DO_APP_FUNC(0x004DF210, void, DoorWeatherParticles_OnGlobalGoatBurnEvent, (DoorWeatherParticles * __this, int32_t number, BoltEntity * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17968, DoorWeatherParticles_OnGlobalGoatBurnEvent__MethodInfo); DO_APP_FUNC(0x004DF220, void, DoorWeatherParticles_OnDestroy, (DoorWeatherParticles * __this, MethodInfo * method)); DO_APP_FUNC(0x004DF3E0, void, DoorWeatherParticles__ctor, (DoorWeatherParticles * __this, MethodInfo * method)); DO_APP_FUNC(0x004DF430, void, ElectricalWire_Awake, (ElectricalWire * __this, MethodInfo * method)); @@ -16860,6 +19208,7 @@ DO_APP_FUNC(0x004E0090, void, PerkInspiredOutline_Awake, (PerkInspiredOutline * DO_APP_FUNC(0x004E0400, void, PerkInspiredOutline_Start, (PerkInspiredOutline * __this, MethodInfo * method)); DO_APP_FUNC(0x004E0710, bool, PerkInspiredOutline_IsInspiredPerkActive, (PerkInspiredOutline * __this, MethodInfo * method)); DO_APP_FUNC(0x004E0810, void, PerkInspiredOutline_OnGlobalGoatBurnEvent, (PerkInspiredOutline * __this, int32_t numObjectsBurned, BoltEntity * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D178B0, PerkInspiredOutline_OnGlobalGoatBurnEvent__MethodInfo); DO_APP_FUNC(0x004E0930, void, PerkInspiredOutline_EnableOutline, (PerkInspiredOutline * __this, MethodInfo * method)); DO_APP_FUNC(0x004E0A60, IEnumerator *, PerkInspiredOutline_EnableOutlineInternal, (PerkInspiredOutline * __this, MethodInfo * method)); DO_APP_FUNC(0x004E0B00, void, PerkInspiredOutline_OnDestroy, (PerkInspiredOutline * __this, MethodInfo * method)); @@ -16870,10 +19219,12 @@ DO_APP_FUNC(0x003AE050, void, PerkInspiredOutline_EnableOutlineInternal_d_16_Sys DO_APP_FUNC(0x004E0C20, bool, PerkInspiredOutline_EnableOutlineInternal_d_16_MoveNext, (PerkInspiredOutline_EnableOutlineInternal_d_16 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, PerkInspiredOutline_EnableOutlineInternal_d_16_System_Collections_Generic_IEnumerator_System_Object__get_Current, (PerkInspiredOutline_EnableOutlineInternal_d_16 * __this, MethodInfo * method)); DO_APP_FUNC(0x004E1930, void, PerkInspiredOutline_EnableOutlineInternal_d_16_System_Collections_IEnumerator_Reset, (PerkInspiredOutline_EnableOutlineInternal_d_16 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17850, PerkInspiredOutline_EnableOutlineInternal_d_16_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, PerkInspiredOutline_EnableOutlineInternal_d_16_System_Collections_IEnumerator_get_Current, (PerkInspiredOutline_EnableOutlineInternal_d_16 * __this, MethodInfo * method)); DO_APP_FUNC(0x004E1980, void, PerkTrapperOutline_Awake, (PerkTrapperOutline * __this, MethodInfo * method)); DO_APP_FUNC(0x004E1AD0, void, PerkTrapperOutline_Start, (PerkTrapperOutline * __this, MethodInfo * method)); DO_APP_FUNC(0x004E1CB0, void, PerkTrapperOutline_OnGlobalGoatBurnEvent, (PerkTrapperOutline * __this, int32_t number, BoltEntity * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17830, PerkTrapperOutline_OnGlobalGoatBurnEvent__MethodInfo); DO_APP_FUNC(0x004E1CF0, IEnumerator *, PerkTrapperOutline_EnableOutline, (PerkTrapperOutline * __this, MethodInfo * method)); DO_APP_FUNC(0x004E1D90, void, PerkTrapperOutline_OnDestroy, (PerkTrapperOutline * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, PerkTrapperOutline__ctor, (PerkTrapperOutline * __this, MethodInfo * method)); @@ -16882,6 +19233,7 @@ DO_APP_FUNC(0x003AE050, void, PerkTrapperOutline_EnableOutline_d_6_System_IDispo DO_APP_FUNC(0x004E1E70, bool, PerkTrapperOutline_EnableOutline_d_6_MoveNext, (PerkTrapperOutline_EnableOutline_d_6 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, PerkTrapperOutline_EnableOutline_d_6_System_Collections_Generic_IEnumerator_System_Object__get_Current, (PerkTrapperOutline_EnableOutline_d_6 * __this, MethodInfo * method)); DO_APP_FUNC(0x004E2210, void, PerkTrapperOutline_EnableOutline_d_6_System_Collections_IEnumerator_Reset, (PerkTrapperOutline_EnableOutline_d_6 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D177E8, PerkTrapperOutline_EnableOutline_d_6_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, PerkTrapperOutline_EnableOutline_d_6_System_Collections_IEnumerator_get_Current, (PerkTrapperOutline_EnableOutline_d_6 * __this, MethodInfo * method)); DO_APP_FUNC(0x004E2260, void, PetController_Awake, (PetController * __this, MethodInfo * method)); DO_APP_FUNC(0x004E28D0, void, PetController_Attached, (PetController * __this, MethodInfo * method)); @@ -16892,14 +19244,21 @@ DO_APP_FUNC(0x004E3BC0, IEnumerator *, PetController_WaitForCanEnablePetAI, (Pet DO_APP_FUNC(0x004E3C60, void, PetController_FixedUpdate, (PetController * __this, MethodInfo * method)); DO_APP_FUNC(0x004E42B0, int32_t, PetController_GetIdleMaxExclusive, (PetController * __this, MethodInfo * method)); DO_APP_FUNC(0x004E4440, void, PetController_OnSpeed, (PetController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17738, PetController_OnSpeed__MethodInfo); DO_APP_FUNC(0x004E4E10, void, PetController_OnPlayer, (PetController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17758, PetController_OnPlayer__MethodInfo); DO_APP_FUNC(0x004E50A0, void, PetController_SetRandomIdle, (PetController * __this, MethodInfo * method)); DO_APP_FUNC(0x004E5150, void, PetController_OnGlobalGoatBurnEvent, (PetController * __this, int32_t number, BoltEntity * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17788, PetController_OnGlobalGoatBurnEvent__MethodInfo); DO_APP_FUNC(0x004E5410, IEnumerator *, PetController_PlayBurnVocal, (PetController * __this, MethodInfo * method)); DO_APP_FUNC(0x004E54B0, void, PetController_OnPlayerPickedUpEvent, (PetController * __this, BoltEntity * killedBy, BoltEntity * player, bool inHidingSpot, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17768, PetController_OnPlayerPickedUpEvent__MethodInfo); DO_APP_FUNC(0x004E5860, void, PetController_OnKnockoutEvent, (PetController * __this, BoltEntity * killedBy, BoltEntity * player, bool usingPoison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17770, PetController_OnKnockoutEvent__MethodInfo); DO_APP_FUNC(0x004E5C10, void, PetController_OnKnockoutBoxEvent, (PetController * __this, String * killedBy, BoltEntity * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17778, PetController_OnKnockoutBoxEvent__MethodInfo); DO_APP_FUNC(0x004E5FC0, void, PetController_OnReviveEvent, (PetController * __this, BoltEntity * player, BoltEntity * reviver, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17748, PetController_OnReviveEvent__MethodInfo); DO_APP_FUNC(0x004E65E0, void, PetController_SetPlayer, (PetController * __this, BoltEntity * player, MethodInfo * method)); DO_APP_FUNC(0x004E6960, void, PetController_PlayerRespawned, (PetController * __this, MethodInfo * method)); DO_APP_FUNC(0x004E6DA0, void, PetController_SetArachnophobiaMode, (PetController * __this, bool on, MethodInfo * method)); @@ -16917,36 +19276,42 @@ DO_APP_FUNC(0x003AE050, void, PetController_WaitForValidation_d_28_System_IDispo DO_APP_FUNC(0x004E7290, bool, PetController_WaitForValidation_d_28_MoveNext, (PetController_WaitForValidation_d_28 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, PetController_WaitForValidation_d_28_System_Collections_Generic_IEnumerator_System_Object__get_Current, (PetController_WaitForValidation_d_28 * __this, MethodInfo * method)); DO_APP_FUNC(0x004E7DA0, void, PetController_WaitForValidation_d_28_System_Collections_IEnumerator_Reset, (PetController_WaitForValidation_d_28 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17430, PetController_WaitForValidation_d_28_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, PetController_WaitForValidation_d_28_System_Collections_IEnumerator_get_Current, (PetController_WaitForValidation_d_28 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, PetController_WaitForCanEnablePetAI_d_30__ctor, (PetController_WaitForCanEnablePetAI_d_30 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, PetController_WaitForCanEnablePetAI_d_30_System_IDisposable_Dispose, (PetController_WaitForCanEnablePetAI_d_30 * __this, MethodInfo * method)); DO_APP_FUNC(0x004E7DF0, bool, PetController_WaitForCanEnablePetAI_d_30_MoveNext, (PetController_WaitForCanEnablePetAI_d_30 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, PetController_WaitForCanEnablePetAI_d_30_System_Collections_Generic_IEnumerator_System_Object__get_Current, (PetController_WaitForCanEnablePetAI_d_30 * __this, MethodInfo * method)); DO_APP_FUNC(0x004E8060, void, PetController_WaitForCanEnablePetAI_d_30_System_Collections_IEnumerator_Reset, (PetController_WaitForCanEnablePetAI_d_30 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17410, PetController_WaitForCanEnablePetAI_d_30_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, PetController_WaitForCanEnablePetAI_d_30_System_Collections_IEnumerator_get_Current, (PetController_WaitForCanEnablePetAI_d_30 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, PetController_PlayBurnVocal_d_37__ctor, (PetController_PlayBurnVocal_d_37 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, PetController_PlayBurnVocal_d_37_System_IDisposable_Dispose, (PetController_PlayBurnVocal_d_37 * __this, MethodInfo * method)); DO_APP_FUNC(0x004E80B0, bool, PetController_PlayBurnVocal_d_37_MoveNext, (PetController_PlayBurnVocal_d_37 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, PetController_PlayBurnVocal_d_37_System_Collections_Generic_IEnumerator_System_Object__get_Current, (PetController_PlayBurnVocal_d_37 * __this, MethodInfo * method)); DO_APP_FUNC(0x004E8300, void, PetController_PlayBurnVocal_d_37_System_Collections_IEnumerator_Reset, (PetController_PlayBurnVocal_d_37 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D173D8, PetController_PlayBurnVocal_d_37_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, PetController_PlayBurnVocal_d_37_System_Collections_IEnumerator_get_Current, (PetController_PlayBurnVocal_d_37 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, PetController_SetHidingInternal_d_46__ctor, (PetController_SetHidingInternal_d_46 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, PetController_SetHidingInternal_d_46_System_IDisposable_Dispose, (PetController_SetHidingInternal_d_46 * __this, MethodInfo * method)); DO_APP_FUNC(0x004E8350, bool, PetController_SetHidingInternal_d_46_MoveNext, (PetController_SetHidingInternal_d_46 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, PetController_SetHidingInternal_d_46_System_Collections_Generic_IEnumerator_System_Object__get_Current, (PetController_SetHidingInternal_d_46 * __this, MethodInfo * method)); DO_APP_FUNC(0x004E8A40, void, PetController_SetHidingInternal_d_46_System_Collections_IEnumerator_Reset, (PetController_SetHidingInternal_d_46 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D173B0, PetController_SetHidingInternal_d_46_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, PetController_SetHidingInternal_d_46_System_Collections_IEnumerator_get_Current, (PetController_SetHidingInternal_d_46 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, PetController_LobbyIdling_d_47__ctor, (PetController_LobbyIdling_d_47 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, PetController_LobbyIdling_d_47_System_IDisposable_Dispose, (PetController_LobbyIdling_d_47 * __this, MethodInfo * method)); DO_APP_FUNC(0x004E8A90, bool, PetController_LobbyIdling_d_47_MoveNext, (PetController_LobbyIdling_d_47 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, PetController_LobbyIdling_d_47_System_Collections_Generic_IEnumerator_System_Object__get_Current, (PetController_LobbyIdling_d_47 * __this, MethodInfo * method)); DO_APP_FUNC(0x004E90D0, void, PetController_LobbyIdling_d_47_System_Collections_IEnumerator_Reset, (PetController_LobbyIdling_d_47 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17388, PetController_LobbyIdling_d_47_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, PetController_LobbyIdling_d_47_System_Collections_IEnumerator_get_Current, (PetController_LobbyIdling_d_47 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, PetController_TriggerRandomIdles_d_50__ctor, (PetController_TriggerRandomIdles_d_50 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, PetController_TriggerRandomIdles_d_50_System_IDisposable_Dispose, (PetController_TriggerRandomIdles_d_50 * __this, MethodInfo * method)); DO_APP_FUNC(0x004E9120, bool, PetController_TriggerRandomIdles_d_50_MoveNext, (PetController_TriggerRandomIdles_d_50 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, PetController_TriggerRandomIdles_d_50_System_Collections_Generic_IEnumerator_System_Object__get_Current, (PetController_TriggerRandomIdles_d_50 * __this, MethodInfo * method)); DO_APP_FUNC(0x004E95B0, void, PetController_TriggerRandomIdles_d_50_System_Collections_IEnumerator_Reset, (PetController_TriggerRandomIdles_d_50 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17350, PetController_TriggerRandomIdles_d_50_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, PetController_TriggerRandomIdles_d_50_System_Collections_IEnumerator_get_Current, (PetController_TriggerRandomIdles_d_50 * __this, MethodInfo * method)); DO_APP_FUNC(0x004E9600, void, PetLoader_Attached, (PetLoader * __this, MethodInfo * method)); DO_APP_FUNC(0x004E9690, IEnumerator *, PetLoader_LoadPet, (PetLoader * __this, String * forcePet, MethodInfo * method)); @@ -16961,12 +19326,14 @@ DO_APP_FUNC(0x003AE050, void, PetLoader_LoadPet_d_3_System_IDisposable_Dispose, DO_APP_FUNC(0x004E9B40, bool, PetLoader_LoadPet_d_3_MoveNext, (PetLoader_LoadPet_d_3 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, PetLoader_LoadPet_d_3_System_Collections_Generic_IEnumerator_System_Object__get_Current, (PetLoader_LoadPet_d_3 * __this, MethodInfo * method)); DO_APP_FUNC(0x004EA950, void, PetLoader_LoadPet_d_3_System_Collections_IEnumerator_Reset, (PetLoader_LoadPet_d_3 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D171A0, PetLoader_LoadPet_d_3_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, PetLoader_LoadPet_d_3_System_Collections_IEnumerator_get_Current, (PetLoader_LoadPet_d_3 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, PetLoader_WaitForSteamInventoryItems_d_4__ctor, (PetLoader_WaitForSteamInventoryItems_d_4 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, PetLoader_WaitForSteamInventoryItems_d_4_System_IDisposable_Dispose, (PetLoader_WaitForSteamInventoryItems_d_4 * __this, MethodInfo * method)); DO_APP_FUNC(0x004EA9A0, bool, PetLoader_WaitForSteamInventoryItems_d_4_MoveNext, (PetLoader_WaitForSteamInventoryItems_d_4 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, PetLoader_WaitForSteamInventoryItems_d_4_System_Collections_Generic_IEnumerator_System_Object__get_Current, (PetLoader_WaitForSteamInventoryItems_d_4 * __this, MethodInfo * method)); DO_APP_FUNC(0x004EAB10, void, PetLoader_WaitForSteamInventoryItems_d_4_System_Collections_IEnumerator_Reset, (PetLoader_WaitForSteamInventoryItems_d_4 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17190, PetLoader_WaitForSteamInventoryItems_d_4_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, PetLoader_WaitForSteamInventoryItems_d_4_System_Collections_IEnumerator_get_Current, (PetLoader_WaitForSteamInventoryItems_d_4 * __this, MethodInfo * method)); DO_APP_FUNC(0x004EAB60, void, ClothExternalAcceleration_Update, (ClothExternalAcceleration * __this, MethodInfo * method)); DO_APP_FUNC(0x004EAD60, void, ClothExternalAcceleration__ctor, (ClothExternalAcceleration * __this, MethodInfo * method)); @@ -16987,6 +19354,7 @@ DO_APP_FUNC(0x003AE050, void, PhysicsProps_DelayDisableRigidbodies_d_5_System_ID DO_APP_FUNC(0x004EC0A0, bool, PhysicsProps_DelayDisableRigidbodies_d_5_MoveNext, (PhysicsProps_DelayDisableRigidbodies_d_5 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, PhysicsProps_DelayDisableRigidbodies_d_5_System_Collections_Generic_IEnumerator_System_Object__get_Current, (PhysicsProps_DelayDisableRigidbodies_d_5 * __this, MethodInfo * method)); DO_APP_FUNC(0x004EC260, void, PhysicsProps_DelayDisableRigidbodies_d_5_System_Collections_IEnumerator_Reset, (PhysicsProps_DelayDisableRigidbodies_d_5 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16F50, PhysicsProps_DelayDisableRigidbodies_d_5_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, PhysicsProps_DelayDisableRigidbodies_d_5_System_Collections_IEnumerator_get_Current, (PhysicsProps_DelayDisableRigidbodies_d_5 * __this, MethodInfo * method)); DO_APP_FUNC(0x004EC2B0, void, PhysicsPropsChild_Awake, (PhysicsPropsChild * __this, MethodInfo * method)); DO_APP_FUNC(0x004EC340, void, PhysicsPropsChild_OnCollisionEnter, (PhysicsPropsChild * __this, Collision * collision, MethodInfo * method)); @@ -17004,10 +19372,13 @@ DO_APP_FUNC(0x004ED8C0, void, PlaceObjectPivot__ctor, (PlaceObjectPivot * __this DO_APP_FUNC(0x004EDA80, void, PigExcrementBehaviour_Awake, (PigExcrementBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x004EDFF0, void, PigExcrementBehaviour_OnDestroy, (PigExcrementBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x004EE1B0, void, PigExcrementBehaviour_OnSingleInteract, (PigExcrementBehaviour * __this, String * name, GameObject * character, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A788, PigExcrementBehaviour_OnSingleInteract__MethodInfo); DO_APP_FUNC(0x004EE440, void, PigExcrementBehaviour_Attached, (PigExcrementBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x004EE560, void, PigExcrementBehaviour_OnSwitch, (PigExcrementBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A718, PigExcrementBehaviour_OnSwitch__MethodInfo); DO_APP_FUNC(0x004EEAC0, IEnumerator *, PigExcrementBehaviour_FadeOut, (PigExcrementBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x004EEB60, void, PigExcrementBehaviour_OnDoorUnlocked, (PigExcrementBehaviour * __this, GameObject * door, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A798, PigExcrementBehaviour_OnDoorUnlocked__MethodInfo); DO_APP_FUNC(0x004EEEB0, void, PigExcrementBehaviour_SetAnimalGate, (PigExcrementBehaviour * __this, BoltEntity * animalGate, MethodInfo * method)); DO_APP_FUNC(0x004EEFE0, void, PigExcrementBehaviour__ctor, (PigExcrementBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, PigExcrementBehaviour_FadeOut_d_15__ctor, (PigExcrementBehaviour_FadeOut_d_15 * __this, int32_t __1__state, MethodInfo * method)); @@ -17015,14 +19386,19 @@ DO_APP_FUNC(0x003AE050, void, PigExcrementBehaviour_FadeOut_d_15_System_IDisposa DO_APP_FUNC(0x004EF030, bool, PigExcrementBehaviour_FadeOut_d_15_MoveNext, (PigExcrementBehaviour_FadeOut_d_15 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, PigExcrementBehaviour_FadeOut_d_15_System_Collections_Generic_IEnumerator_System_Object__get_Current, (PigExcrementBehaviour_FadeOut_d_15 * __this, MethodInfo * method)); DO_APP_FUNC(0x004EF550, void, PigExcrementBehaviour_FadeOut_d_15_System_Collections_IEnumerator_Reset, (PigExcrementBehaviour_FadeOut_d_15 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A688, PigExcrementBehaviour_FadeOut_d_15_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, PigExcrementBehaviour_FadeOut_d_15_System_Collections_IEnumerator_get_Current, (PigExcrementBehaviour_FadeOut_d_15 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, PlayerBumpCollider__ctor, (PlayerBumpCollider * __this, MethodInfo * method)); DO_APP_FUNC(0x004EF5A0, void, PlayerCharacterBehaviour_Awake, (PlayerCharacterBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x004EF820, void, PlayerCharacterBehaviour_Attached, (PlayerCharacterBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x004EFD10, void, PlayerCharacterBehaviour_OnLookAtPosition, (PlayerCharacterBehaviour * __this, Vector3 lookPos, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A658, PlayerCharacterBehaviour_OnLookAtPosition__MethodInfo); DO_APP_FUNC(0x004EFE40, void, PlayerCharacterBehaviour_OnRemoteLookAtPosition, (PlayerCharacterBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A618, PlayerCharacterBehaviour_OnRemoteLookAtPosition__MethodInfo); DO_APP_FUNC(0x004EFF20, void, PlayerCharacterBehaviour_OnAbilityIndex, (PlayerCharacterBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A630, PlayerCharacterBehaviour_OnAbilityIndex__MethodInfo); DO_APP_FUNC(0x004EFFF0, void, PlayerCharacterBehaviour_OnAbilityIntData, (PlayerCharacterBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A620, PlayerCharacterBehaviour_OnAbilityIntData__MethodInfo); DO_APP_FUNC(0x004F0150, void, PlayerCharacterBehaviour_OnDestroy, (PlayerCharacterBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x004F0280, void, PlayerCharacterBehaviour__ctor, (PlayerCharacterBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x004F02D0, void, PlayerMeshSwapper_Start, (PlayerMeshSwapper * __this, MethodInfo * method)); @@ -17053,6 +19429,7 @@ DO_APP_FUNC(0x003AE050, void, PoisonBox_PoisonPlayer_d_8_System_IDisposable_Disp DO_APP_FUNC(0x004F2730, bool, PoisonBox_PoisonPlayer_d_8_MoveNext, (PoisonBox_PoisonPlayer_d_8 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, PoisonBox_PoisonPlayer_d_8_System_Collections_Generic_IEnumerator_System_Object__get_Current, (PoisonBox_PoisonPlayer_d_8 * __this, MethodInfo * method)); DO_APP_FUNC(0x004F2EF0, void, PoisonBox_PoisonPlayer_d_8_System_Collections_IEnumerator_Reset, (PoisonBox_PoisonPlayer_d_8 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A510, PoisonBox_PoisonPlayer_d_8_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, PoisonBox_PoisonPlayer_d_8_System_Collections_IEnumerator_get_Current, (PoisonBox_PoisonPlayer_d_8 * __this, MethodInfo * method)); DO_APP_FUNC(0x004F2F40, void, AntiAliasingController_Start, (AntiAliasingController * __this, MethodInfo * method)); DO_APP_FUNC(0x004F2FD0, void, AntiAliasingController_SetAntialiasing, (AntiAliasingController * __this, int32_t antialiasingMode, MethodInfo * method)); @@ -17073,23 +19450,28 @@ DO_APP_FUNC(0x003AE050, void, ColorGradingController_FadeInInternal_d_7_System_I DO_APP_FUNC(0x004F3B20, bool, ColorGradingController_FadeInInternal_d_7_MoveNext, (ColorGradingController_FadeInInternal_d_7 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, ColorGradingController_FadeInInternal_d_7_System_Collections_Generic_IEnumerator_System_Object__get_Current, (ColorGradingController_FadeInInternal_d_7 * __this, MethodInfo * method)); DO_APP_FUNC(0x004F3EA0, void, ColorGradingController_FadeInInternal_d_7_System_Collections_IEnumerator_Reset, (ColorGradingController_FadeInInternal_d_7 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A4B0, ColorGradingController_FadeInInternal_d_7_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, ColorGradingController_FadeInInternal_d_7_System_Collections_IEnumerator_get_Current, (ColorGradingController_FadeInInternal_d_7 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, ColorGradingController_FadeToBlackInternal_d_9__ctor, (ColorGradingController_FadeToBlackInternal_d_9 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ColorGradingController_FadeToBlackInternal_d_9_System_IDisposable_Dispose, (ColorGradingController_FadeToBlackInternal_d_9 * __this, MethodInfo * method)); DO_APP_FUNC(0x004F3EF0, bool, ColorGradingController_FadeToBlackInternal_d_9_MoveNext, (ColorGradingController_FadeToBlackInternal_d_9 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, ColorGradingController_FadeToBlackInternal_d_9_System_Collections_Generic_IEnumerator_System_Object__get_Current, (ColorGradingController_FadeToBlackInternal_d_9 * __this, MethodInfo * method)); DO_APP_FUNC(0x004F41B0, void, ColorGradingController_FadeToBlackInternal_d_9_System_Collections_IEnumerator_Reset, (ColorGradingController_FadeToBlackInternal_d_9 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A4A8, ColorGradingController_FadeToBlackInternal_d_9_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, ColorGradingController_FadeToBlackInternal_d_9_System_Collections_IEnumerator_get_Current, (ColorGradingController_FadeToBlackInternal_d_9 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, ColorGradingController_FadeExposureInternal_d_14__ctor, (ColorGradingController_FadeExposureInternal_d_14 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ColorGradingController_FadeExposureInternal_d_14_System_IDisposable_Dispose, (ColorGradingController_FadeExposureInternal_d_14 * __this, MethodInfo * method)); DO_APP_FUNC(0x004F4200, bool, ColorGradingController_FadeExposureInternal_d_14_MoveNext, (ColorGradingController_FadeExposureInternal_d_14 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, ColorGradingController_FadeExposureInternal_d_14_System_Collections_Generic_IEnumerator_System_Object__get_Current, (ColorGradingController_FadeExposureInternal_d_14 * __this, MethodInfo * method)); DO_APP_FUNC(0x004F4470, void, ColorGradingController_FadeExposureInternal_d_14_System_Collections_IEnumerator_Reset, (ColorGradingController_FadeExposureInternal_d_14 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A4A0, ColorGradingController_FadeExposureInternal_d_14_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, ColorGradingController_FadeExposureInternal_d_14_System_Collections_IEnumerator_get_Current, (ColorGradingController_FadeExposureInternal_d_14 * __this, MethodInfo * method)); DO_APP_FUNC(0x004F44C0, void, CustomPostProcessing_Awake, (CustomPostProcessing * __this, MethodInfo * method)); DO_APP_FUNC(0x004F4680, void, CustomPostProcessing_Start, (CustomPostProcessing * __this, MethodInfo * method)); DO_APP_FUNC(0x004F47E0, void, CustomPostProcessing_OnEnrageStart, (CustomPostProcessing * __this, GameObject * ai, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A490, CustomPostProcessing_OnEnrageStart__MethodInfo); DO_APP_FUNC(0x004F48A0, void, CustomPostProcessing_OnEnrageEnd, (CustomPostProcessing * __this, GameObject * ai, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A498, CustomPostProcessing_OnEnrageEnd__MethodInfo); DO_APP_FUNC(0x003AE050, void, CustomPostProcessing_ZoomIn, (CustomPostProcessing * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CustomPostProcessing_ZoomOut, (CustomPostProcessing * __this, MethodInfo * method)); DO_APP_FUNC(0x004F4960, void, CustomPostProcessing_KnockedOut, (CustomPostProcessing * __this, MethodInfo * method)); @@ -17112,42 +19494,49 @@ DO_APP_FUNC(0x003AE050, void, CustomPostProcessing_EnableChromaticAberration_d_2 DO_APP_FUNC(0x004F5490, bool, CustomPostProcessing_EnableChromaticAberration_d_24_MoveNext, (CustomPostProcessing_EnableChromaticAberration_d_24 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, CustomPostProcessing_EnableChromaticAberration_d_24_System_Collections_Generic_IEnumerator_System_Object__get_Current, (CustomPostProcessing_EnableChromaticAberration_d_24 * __this, MethodInfo * method)); DO_APP_FUNC(0x004F5690, void, CustomPostProcessing_EnableChromaticAberration_d_24_System_Collections_IEnumerator_Reset, (CustomPostProcessing_EnableChromaticAberration_d_24 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A420, CustomPostProcessing_EnableChromaticAberration_d_24_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, CustomPostProcessing_EnableChromaticAberration_d_24_System_Collections_IEnumerator_get_Current, (CustomPostProcessing_EnableChromaticAberration_d_24 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, CustomPostProcessing_DisableChromaticAberration_d_25__ctor, (CustomPostProcessing_DisableChromaticAberration_d_25 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CustomPostProcessing_DisableChromaticAberration_d_25_System_IDisposable_Dispose, (CustomPostProcessing_DisableChromaticAberration_d_25 * __this, MethodInfo * method)); DO_APP_FUNC(0x004F56E0, bool, CustomPostProcessing_DisableChromaticAberration_d_25_MoveNext, (CustomPostProcessing_DisableChromaticAberration_d_25 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, CustomPostProcessing_DisableChromaticAberration_d_25_System_Collections_Generic_IEnumerator_System_Object__get_Current, (CustomPostProcessing_DisableChromaticAberration_d_25 * __this, MethodInfo * method)); DO_APP_FUNC(0x004F5900, void, CustomPostProcessing_DisableChromaticAberration_d_25_System_Collections_IEnumerator_Reset, (CustomPostProcessing_DisableChromaticAberration_d_25 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A418, CustomPostProcessing_DisableChromaticAberration_d_25_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, CustomPostProcessing_DisableChromaticAberration_d_25_System_Collections_IEnumerator_get_Current, (CustomPostProcessing_DisableChromaticAberration_d_25 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, CustomPostProcessing_EnableDepthOfField_d_26__ctor, (CustomPostProcessing_EnableDepthOfField_d_26 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CustomPostProcessing_EnableDepthOfField_d_26_System_IDisposable_Dispose, (CustomPostProcessing_EnableDepthOfField_d_26 * __this, MethodInfo * method)); DO_APP_FUNC(0x004F5950, bool, CustomPostProcessing_EnableDepthOfField_d_26_MoveNext, (CustomPostProcessing_EnableDepthOfField_d_26 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, CustomPostProcessing_EnableDepthOfField_d_26_System_Collections_Generic_IEnumerator_System_Object__get_Current, (CustomPostProcessing_EnableDepthOfField_d_26 * __this, MethodInfo * method)); DO_APP_FUNC(0x004F5B50, void, CustomPostProcessing_EnableDepthOfField_d_26_System_Collections_IEnumerator_Reset, (CustomPostProcessing_EnableDepthOfField_d_26 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A410, CustomPostProcessing_EnableDepthOfField_d_26_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, CustomPostProcessing_EnableDepthOfField_d_26_System_Collections_IEnumerator_get_Current, (CustomPostProcessing_EnableDepthOfField_d_26 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, CustomPostProcessing_DisableDepthOfField_d_27__ctor, (CustomPostProcessing_DisableDepthOfField_d_27 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CustomPostProcessing_DisableDepthOfField_d_27_System_IDisposable_Dispose, (CustomPostProcessing_DisableDepthOfField_d_27 * __this, MethodInfo * method)); DO_APP_FUNC(0x004F5BA0, bool, CustomPostProcessing_DisableDepthOfField_d_27_MoveNext, (CustomPostProcessing_DisableDepthOfField_d_27 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, CustomPostProcessing_DisableDepthOfField_d_27_System_Collections_Generic_IEnumerator_System_Object__get_Current, (CustomPostProcessing_DisableDepthOfField_d_27 * __this, MethodInfo * method)); DO_APP_FUNC(0x004F5DC0, void, CustomPostProcessing_DisableDepthOfField_d_27_System_Collections_IEnumerator_Reset, (CustomPostProcessing_DisableDepthOfField_d_27 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A408, CustomPostProcessing_DisableDepthOfField_d_27_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, CustomPostProcessing_DisableDepthOfField_d_27_System_Collections_IEnumerator_get_Current, (CustomPostProcessing_DisableDepthOfField_d_27 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, CustomPostProcessing_EnableCrawlColorGrading_d_28__ctor, (CustomPostProcessing_EnableCrawlColorGrading_d_28 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CustomPostProcessing_EnableCrawlColorGrading_d_28_System_IDisposable_Dispose, (CustomPostProcessing_EnableCrawlColorGrading_d_28 * __this, MethodInfo * method)); DO_APP_FUNC(0x004F5E10, bool, CustomPostProcessing_EnableCrawlColorGrading_d_28_MoveNext, (CustomPostProcessing_EnableCrawlColorGrading_d_28 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, CustomPostProcessing_EnableCrawlColorGrading_d_28_System_Collections_Generic_IEnumerator_System_Object__get_Current, (CustomPostProcessing_EnableCrawlColorGrading_d_28 * __this, MethodInfo * method)); DO_APP_FUNC(0x004F60B0, void, CustomPostProcessing_EnableCrawlColorGrading_d_28_System_Collections_IEnumerator_Reset, (CustomPostProcessing_EnableCrawlColorGrading_d_28 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A400, CustomPostProcessing_EnableCrawlColorGrading_d_28_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, CustomPostProcessing_EnableCrawlColorGrading_d_28_System_Collections_IEnumerator_get_Current, (CustomPostProcessing_EnableCrawlColorGrading_d_28 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, CustomPostProcessing_DisableCrawlColorGrading_d_29__ctor, (CustomPostProcessing_DisableCrawlColorGrading_d_29 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CustomPostProcessing_DisableCrawlColorGrading_d_29_System_IDisposable_Dispose, (CustomPostProcessing_DisableCrawlColorGrading_d_29 * __this, MethodInfo * method)); DO_APP_FUNC(0x004F6100, bool, CustomPostProcessing_DisableCrawlColorGrading_d_29_MoveNext, (CustomPostProcessing_DisableCrawlColorGrading_d_29 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, CustomPostProcessing_DisableCrawlColorGrading_d_29_System_Collections_Generic_IEnumerator_System_Object__get_Current, (CustomPostProcessing_DisableCrawlColorGrading_d_29 * __this, MethodInfo * method)); DO_APP_FUNC(0x004F6410, void, CustomPostProcessing_DisableCrawlColorGrading_d_29_System_Collections_IEnumerator_Reset, (CustomPostProcessing_DisableCrawlColorGrading_d_29 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A3F8, CustomPostProcessing_DisableCrawlColorGrading_d_29_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, CustomPostProcessing_DisableCrawlColorGrading_d_29_System_Collections_IEnumerator_get_Current, (CustomPostProcessing_DisableCrawlColorGrading_d_29 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, CustomPostProcessing_DisableAnnaPickedUpDepthOfField_d_32__ctor, (CustomPostProcessing_DisableAnnaPickedUpDepthOfField_d_32 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CustomPostProcessing_DisableAnnaPickedUpDepthOfField_d_32_System_IDisposable_Dispose, (CustomPostProcessing_DisableAnnaPickedUpDepthOfField_d_32 * __this, MethodInfo * method)); DO_APP_FUNC(0x004F6460, bool, CustomPostProcessing_DisableAnnaPickedUpDepthOfField_d_32_MoveNext, (CustomPostProcessing_DisableAnnaPickedUpDepthOfField_d_32 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, CustomPostProcessing_DisableAnnaPickedUpDepthOfField_d_32_System_Collections_Generic_IEnumerator_System_Object__get_Current, (CustomPostProcessing_DisableAnnaPickedUpDepthOfField_d_32 * __this, MethodInfo * method)); DO_APP_FUNC(0x004F66A0, void, CustomPostProcessing_DisableAnnaPickedUpDepthOfField_d_32_System_Collections_IEnumerator_Reset, (CustomPostProcessing_DisableAnnaPickedUpDepthOfField_d_32 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A3F0, CustomPostProcessing_DisableAnnaPickedUpDepthOfField_d_32_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, CustomPostProcessing_DisableAnnaPickedUpDepthOfField_d_32_System_Collections_IEnumerator_get_Current, (CustomPostProcessing_DisableAnnaPickedUpDepthOfField_d_32 * __this, MethodInfo * method)); DO_APP_FUNC(0x004F66F0, void, EndingColorGrading_Start, (EndingColorGrading * __this, MethodInfo * method)); DO_APP_FUNC(0x004F67A0, IEnumerator *, EndingColorGrading_DoEvilColorGrading, (EndingColorGrading * __this, MethodInfo * method)); @@ -17159,12 +19548,14 @@ DO_APP_FUNC(0x003AE050, void, EndingColorGrading_DoEvilColorGrading_d_2_System_I DO_APP_FUNC(0x004F69C0, bool, EndingColorGrading_DoEvilColorGrading_d_2_MoveNext, (EndingColorGrading_DoEvilColorGrading_d_2 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, EndingColorGrading_DoEvilColorGrading_d_2_System_Collections_Generic_IEnumerator_System_Object__get_Current, (EndingColorGrading_DoEvilColorGrading_d_2 * __this, MethodInfo * method)); DO_APP_FUNC(0x004F6C00, void, EndingColorGrading_DoEvilColorGrading_d_2_System_Collections_IEnumerator_Reset, (EndingColorGrading_DoEvilColorGrading_d_2 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A3D8, EndingColorGrading_DoEvilColorGrading_d_2_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, EndingColorGrading_DoEvilColorGrading_d_2_System_Collections_IEnumerator_get_Current, (EndingColorGrading_DoEvilColorGrading_d_2 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, EndingColorGrading_FadeToBlack_d_3__ctor, (EndingColorGrading_FadeToBlack_d_3 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, EndingColorGrading_FadeToBlack_d_3_System_IDisposable_Dispose, (EndingColorGrading_FadeToBlack_d_3 * __this, MethodInfo * method)); DO_APP_FUNC(0x004F6C50, bool, EndingColorGrading_FadeToBlack_d_3_MoveNext, (EndingColorGrading_FadeToBlack_d_3 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, EndingColorGrading_FadeToBlack_d_3_System_Collections_Generic_IEnumerator_System_Object__get_Current, (EndingColorGrading_FadeToBlack_d_3 * __this, MethodInfo * method)); DO_APP_FUNC(0x004F6E70, void, EndingColorGrading_FadeToBlack_d_3_System_Collections_IEnumerator_Reset, (EndingColorGrading_FadeToBlack_d_3 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A3D0, EndingColorGrading_FadeToBlack_d_3_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, EndingColorGrading_FadeToBlack_d_3_System_Collections_IEnumerator_get_Current, (EndingColorGrading_FadeToBlack_d_3 * __this, MethodInfo * method)); DO_APP_FUNC(0x004F6EC0, void, MotionBlurController_Start, (MotionBlurController * __this, MethodInfo * method)); DO_APP_FUNC(0x004F6FC0, void, MotionBlurController_SetMotionBlur, (MotionBlurController * __this, bool active, MethodInfo * method)); @@ -17179,6 +19570,7 @@ DO_APP_FUNC(0x003AE050, void, PresentMesh_DisableSelfDelayed_d_7_System_IDisposa DO_APP_FUNC(0x004F75C0, bool, PresentMesh_DisableSelfDelayed_d_7_MoveNext, (PresentMesh_DisableSelfDelayed_d_7 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, PresentMesh_DisableSelfDelayed_d_7_System_Collections_Generic_IEnumerator_System_Object__get_Current, (PresentMesh_DisableSelfDelayed_d_7 * __this, MethodInfo * method)); DO_APP_FUNC(0x004F7930, void, PresentMesh_DisableSelfDelayed_d_7_System_Collections_IEnumerator_Reset, (PresentMesh_DisableSelfDelayed_d_7 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A3A0, PresentMesh_DisableSelfDelayed_d_7_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, PresentMesh_DisableSelfDelayed_d_7_System_Collections_IEnumerator_get_Current, (PresentMesh_DisableSelfDelayed_d_7 * __this, MethodInfo * method)); DO_APP_FUNC(0x004F7980, void, PulseImageColour_Awake, (PulseImageColour * __this, MethodInfo * method)); DO_APP_FUNC(0x004F7990, void, PulseImageColour_Start, (PulseImageColour * __this, MethodInfo * method)); @@ -17187,9 +19579,13 @@ DO_APP_FUNC(0x004F79D0, void, PulseImageColour_TweenA, (PulseImageColour * __thi DO_APP_FUNC(0x004F7B90, void, PulseImageColour_TweenB, (PulseImageColour * __this, MethodInfo * method)); DO_APP_FUNC(0x004F7D50, void, PulseImageColour__ctor, (PulseImageColour * __this, MethodInfo * method)); DO_APP_FUNC(0x004F7DA0, void, PulseImageColour__TweenA_b__9_0, (PulseImageColour * __this, float val, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A398, PulseImageColour__TweenA_b__9_0__MethodInfo); DO_APP_FUNC(0x004F7B90, void, PulseImageColour__TweenA_b__9_1, (PulseImageColour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A390, PulseImageColour__TweenA_b__9_1__MethodInfo); DO_APP_FUNC(0x004F7E80, void, PulseImageColour__TweenB_b__10_0, (PulseImageColour * __this, float val, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A388, PulseImageColour__TweenB_b__10_0__MethodInfo); DO_APP_FUNC(0x004F7F60, void, PulseImageColour__TweenB_b__10_1, (PulseImageColour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A380, PulseImageColour__TweenB_b__10_1__MethodInfo); DO_APP_FUNC(0x003AE000, void, PumpkinMesh__ctor, (PumpkinMesh * __this, MethodInfo * method)); DO_APP_FUNC(0x004F7F70, void, ReconnectManager_SceneLoadLocalDone, (ReconnectManager * __this, String * scene, IProtocolToken * token, MethodInfo * method)); DO_APP_FUNC(0x004F84C0, IEnumerator *, ReconnectManager_ClientReconnectedTimeout, (ReconnectManager * __this, MethodInfo * method)); @@ -17212,9 +19608,13 @@ DO_APP_FUNC(0x004FB0A0, void, ReconnectManager_ReinsertPlayerIntoWebs, (Reconnec DO_APP_FUNC(0x004FB150, void, ReconnectManager_ReinsertPlayerIntoAITrees, (ReconnectManager * __this, BoltEntity * entity, MethodInfo * method)); DO_APP_FUNC(0x004FBDC0, void, ReconnectManager_ReinsertPlayerIntoAITree, (ReconnectManager * __this, BoltEntity * entity, Behavior * behavior, MethodInfo * method)); DO_APP_FUNC(0x004FC110, void, ReconnectManager_OnPlayerPickedUpEvent, (ReconnectManager * __this, BoltEntity * killedBy, BoltEntity * player, bool inHidingSpot, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A368, ReconnectManager_OnPlayerPickedUpEvent__MethodInfo); DO_APP_FUNC(0x004FC2F0, void, ReconnectManager_OnKnockoutEvent, (ReconnectManager * __this, BoltEntity * killedBy, BoltEntity * player, bool usingPoison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A370, ReconnectManager_OnKnockoutEvent__MethodInfo); DO_APP_FUNC(0x004FC4D0, void, ReconnectManager_OnReviveEvent, (ReconnectManager * __this, BoltEntity * player, BoltEntity * reviver, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A360, ReconnectManager_OnReviveEvent__MethodInfo); DO_APP_FUNC(0x004FC6B0, void, ReconnectManager_OnKnockoutBoxEvent, (ReconnectManager * __this, String * killedBy, BoltEntity * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A378, ReconnectManager_OnKnockoutBoxEvent__MethodInfo); DO_APP_FUNC(0x004FC890, void, ReconnectManager_OnDestroy, (ReconnectManager * __this, MethodInfo * method)); DO_APP_FUNC(0x004FCAE0, void, ReconnectManager__ctor, (ReconnectManager * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, ReconnectManager_ClientReconnectedTimeout_d_6__ctor, (ReconnectManager_ClientReconnectedTimeout_d_6 * __this, int32_t __1__state, MethodInfo * method)); @@ -17222,24 +19622,28 @@ DO_APP_FUNC(0x003AE050, void, ReconnectManager_ClientReconnectedTimeout_d_6_Syst DO_APP_FUNC(0x004FCAF0, bool, ReconnectManager_ClientReconnectedTimeout_d_6_MoveNext, (ReconnectManager_ClientReconnectedTimeout_d_6 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, ReconnectManager_ClientReconnectedTimeout_d_6_System_Collections_Generic_IEnumerator_System_Object__get_Current, (ReconnectManager_ClientReconnectedTimeout_d_6 * __this, MethodInfo * method)); DO_APP_FUNC(0x004FCC10, void, ReconnectManager_ClientReconnectedTimeout_d_6_System_Collections_IEnumerator_Reset, (ReconnectManager_ClientReconnectedTimeout_d_6 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A250, ReconnectManager_ClientReconnectedTimeout_d_6_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, ReconnectManager_ClientReconnectedTimeout_d_6_System_Collections_IEnumerator_get_Current, (ReconnectManager_ClientReconnectedTimeout_d_6 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, ReconnectManager_StartWeatherInternal_d_9__ctor, (ReconnectManager_StartWeatherInternal_d_9 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ReconnectManager_StartWeatherInternal_d_9_System_IDisposable_Dispose, (ReconnectManager_StartWeatherInternal_d_9 * __this, MethodInfo * method)); DO_APP_FUNC(0x004FCC60, bool, ReconnectManager_StartWeatherInternal_d_9_MoveNext, (ReconnectManager_StartWeatherInternal_d_9 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, ReconnectManager_StartWeatherInternal_d_9_System_Collections_Generic_IEnumerator_System_Object__get_Current, (ReconnectManager_StartWeatherInternal_d_9 * __this, MethodInfo * method)); DO_APP_FUNC(0x004FD2E0, void, ReconnectManager_StartWeatherInternal_d_9_System_Collections_IEnumerator_Reset, (ReconnectManager_StartWeatherInternal_d_9 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A248, ReconnectManager_StartWeatherInternal_d_9_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, ReconnectManager_StartWeatherInternal_d_9_System_Collections_IEnumerator_get_Current, (ReconnectManager_StartWeatherInternal_d_9 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, ReconnectManager_WaitToKnockoutPlayer_d_20__ctor, (ReconnectManager_WaitToKnockoutPlayer_d_20 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ReconnectManager_WaitToKnockoutPlayer_d_20_System_IDisposable_Dispose, (ReconnectManager_WaitToKnockoutPlayer_d_20 * __this, MethodInfo * method)); DO_APP_FUNC(0x004FD330, bool, ReconnectManager_WaitToKnockoutPlayer_d_20_MoveNext, (ReconnectManager_WaitToKnockoutPlayer_d_20 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, ReconnectManager_WaitToKnockoutPlayer_d_20_System_Collections_Generic_IEnumerator_System_Object__get_Current, (ReconnectManager_WaitToKnockoutPlayer_d_20 * __this, MethodInfo * method)); DO_APP_FUNC(0x004FD5E0, void, ReconnectManager_WaitToKnockoutPlayer_d_20_System_Collections_IEnumerator_Reset, (ReconnectManager_WaitToKnockoutPlayer_d_20 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A240, ReconnectManager_WaitToKnockoutPlayer_d_20_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, ReconnectManager_WaitToKnockoutPlayer_d_20_System_Collections_IEnumerator_get_Current, (ReconnectManager_WaitToKnockoutPlayer_d_20 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, ReconnectManager_WaitForOutfitLoaded_d_21__ctor, (ReconnectManager_WaitForOutfitLoaded_d_21 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ReconnectManager_WaitForOutfitLoaded_d_21_System_IDisposable_Dispose, (ReconnectManager_WaitForOutfitLoaded_d_21 * __this, MethodInfo * method)); DO_APP_FUNC(0x004FD630, bool, ReconnectManager_WaitForOutfitLoaded_d_21_MoveNext, (ReconnectManager_WaitForOutfitLoaded_d_21 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, ReconnectManager_WaitForOutfitLoaded_d_21_System_Collections_Generic_IEnumerator_System_Object__get_Current, (ReconnectManager_WaitForOutfitLoaded_d_21 * __this, MethodInfo * method)); DO_APP_FUNC(0x004FDBE0, void, ReconnectManager_WaitForOutfitLoaded_d_21_System_Collections_IEnumerator_Reset, (ReconnectManager_WaitForOutfitLoaded_d_21 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A230, ReconnectManager_WaitForOutfitLoaded_d_21_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, ReconnectManager_WaitForOutfitLoaded_d_21_System_Collections_IEnumerator_get_Current, (ReconnectManager_WaitForOutfitLoaded_d_21 * __this, MethodInfo * method)); DO_APP_FUNC(0x004FDC30, void, RetargetBones_Start, (RetargetBones * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, RetargetBones__ctor, (RetargetBones * __this, MethodInfo * method)); @@ -17249,6 +19653,7 @@ DO_APP_FUNC(0x004FDDF0, void, RewiredVoiceBroadcastTrigger__ctor, (RewiredVoiceB DO_APP_FUNC(0x004FDE00, void, RitualObjectChecker_Awake, (RitualObjectChecker * __this, MethodInfo * method)); DO_APP_FUNC(0x004FE000, void, RitualObjectChecker_Start, (RitualObjectChecker * __this, MethodInfo * method)); DO_APP_FUNC(0x004FE0D0, void, RitualObjectChecker_OnGlobalGoatBurnEvent, (RitualObjectChecker * __this, int32_t number, BoltEntity * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A200, RitualObjectChecker_OnGlobalGoatBurnEvent__MethodInfo); DO_APP_FUNC(0x004FE180, IEnumerator *, RitualObjectChecker_CheckConstantly, (RitualObjectChecker * __this, MethodInfo * method)); DO_APP_FUNC(0x004FE220, bool, RitualObjectChecker_IsValid, (RitualObjectChecker * __this, MethodInfo * method)); DO_APP_FUNC(0x004FEDB0, int32_t, RitualObjectChecker_GetRitualAnimalCountInWorld, (RitualObjectChecker * __this, MethodInfo * method)); @@ -17262,6 +19667,7 @@ DO_APP_FUNC(0x003AE050, void, RitualObjectChecker_CheckConstantly_d_10_System_ID DO_APP_FUNC(0x00502780, bool, RitualObjectChecker_CheckConstantly_d_10_MoveNext, (RitualObjectChecker_CheckConstantly_d_10 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, RitualObjectChecker_CheckConstantly_d_10_System_Collections_Generic_IEnumerator_System_Object__get_Current, (RitualObjectChecker_CheckConstantly_d_10 * __this, MethodInfo * method)); DO_APP_FUNC(0x00503290, void, RitualObjectChecker_CheckConstantly_d_10_System_Collections_IEnumerator_Reset, (RitualObjectChecker_CheckConstantly_d_10 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A058, RitualObjectChecker_CheckConstantly_d_10_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, RitualObjectChecker_CheckConstantly_d_10_System_Collections_IEnumerator_get_Current, (RitualObjectChecker_CheckConstantly_d_10 * __this, MethodInfo * method)); DO_APP_FUNC(0x005032E0, void, SecretEndingFadeIn_OnEnable, (SecretEndingFadeIn * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, SecretEndingFadeIn__ctor, (SecretEndingFadeIn * __this, MethodInfo * method)); @@ -17273,6 +19679,7 @@ DO_APP_FUNC(0x003AE050, void, SecretEndingFadeOut_ReturnToMainMenu_d_2_System_ID DO_APP_FUNC(0x00503480, bool, SecretEndingFadeOut_ReturnToMainMenu_d_2_MoveNext, (SecretEndingFadeOut_ReturnToMainMenu_d_2 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SecretEndingFadeOut_ReturnToMainMenu_d_2_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SecretEndingFadeOut_ReturnToMainMenu_d_2 * __this, MethodInfo * method)); DO_APP_FUNC(0x005035D0, void, SecretEndingFadeOut_ReturnToMainMenu_d_2_System_Collections_IEnumerator_Reset, (SecretEndingFadeOut_ReturnToMainMenu_d_2 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A048, SecretEndingFadeOut_ReturnToMainMenu_d_2_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SecretEndingFadeOut_ReturnToMainMenu_d_2_System_Collections_IEnumerator_get_Current, (SecretEndingFadeOut_ReturnToMainMenu_d_2 * __this, MethodInfo * method)); DO_APP_FUNC(0x00503620, void, SetVersion_Start, (SetVersion * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, SetVersion__ctor, (SetVersion * __this, MethodInfo * method)); @@ -17282,16 +19689,19 @@ DO_APP_FUNC(0x00503730, void, BloodPool_Awake, (BloodPool * __this, MethodInfo * DO_APP_FUNC(0x00503A10, void, BloodPool_Start, (BloodPool * __this, MethodInfo * method)); DO_APP_FUNC(0x00503A70, void, BloodPool_Update, (BloodPool * __this, MethodInfo * method)); DO_APP_FUNC(0x00503C20, void, BloodPool_OnBloodEffectsChanged, (BloodPool * __this, bool enabled, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A030, BloodPool_OnBloodEffectsChanged__MethodInfo); DO_APP_FUNC(0x00503CC0, void, BloodPool_OnDestroy, (BloodPool * __this, MethodInfo * method)); DO_APP_FUNC(0x00503DA0, void, BloodPool__ctor, (BloodPool * __this, MethodInfo * method)); DO_APP_FUNC(0x00503E00, void, FootstepBloodSplashController_Awake, (FootstepBloodSplashController * __this, MethodInfo * method)); DO_APP_FUNC(0x00503F60, void, FootstepBloodSplashController_OnBloodEffectsChanged, (FootstepBloodSplashController * __this, bool enabled, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A000, FootstepBloodSplashController_OnBloodEffectsChanged__MethodInfo); DO_APP_FUNC(0x00504390, void, FootstepBloodSplashController_OnDestroy, (FootstepBloodSplashController * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, FootstepBloodSplashController__ctor, (FootstepBloodSplashController * __this, MethodInfo * method)); DO_APP_FUNC(0x00504470, void, FreezerRoomController_Awake, (FreezerRoomController * __this, MethodInfo * method)); DO_APP_FUNC(0x00504810, void, FreezerRoomController_Attached, (FreezerRoomController * __this, MethodInfo * method)); DO_APP_FUNC(0x00504E00, IEnumerator *, FreezerRoomController_WaitToResetRecentlyAttached, (FreezerRoomController * __this, MethodInfo * method)); DO_APP_FUNC(0x00504EA0, void, FreezerRoomController_OnSwitch, (FreezerRoomController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19FC8, FreezerRoomController_OnSwitch__MethodInfo); DO_APP_FUNC(0x005059A0, IEnumerator *, FreezerRoomController_Activate, (FreezerRoomController * __this, MethodInfo * method)); DO_APP_FUNC(0x00505A40, void, FreezerRoomController_SetActivationState, (FreezerRoomController * __this, bool activate, MethodInfo * method)); DO_APP_FUNC(0x00505CD0, void, FreezerRoomController_IntroJumpScare, (FreezerRoomController * __this, MethodInfo * method)); @@ -17303,12 +19713,15 @@ DO_APP_FUNC(0x00506A10, IEnumerator *, FreezerRoomController_CheckStopPursueOnAz DO_APP_FUNC(0x00506AB0, bool, FreezerRoomController_IsActive, (FreezerRoomController * __this, MethodInfo * method)); DO_APP_FUNC(0x00506AC0, bool, FreezerRoomController_HasActivated, (FreezerRoomController * __this, MethodInfo * method)); DO_APP_FUNC(0x00506D40, void, FreezerRoomController_OnGlobalGoatBurnEvent, (FreezerRoomController * __this, int32_t number, BoltEntity * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19FD0, FreezerRoomController_OnGlobalGoatBurnEvent__MethodInfo); DO_APP_FUNC(0x00506ED0, void, FreezerRoomController_GetLocalCharacter, (FreezerRoomController * __this, MethodInfo * method)); DO_APP_FUNC(0x00507040, void, FreezerRoomController_OnTriggerEnter, (FreezerRoomController * __this, Collider * other, MethodInfo * method)); DO_APP_FUNC(0x005074A0, void, FreezerRoomController_OnTriggerExit, (FreezerRoomController * __this, Collider * other, MethodInfo * method)); DO_APP_FUNC(0x00507830, IEnumerator *, FreezerRoomController_UpdateParticleSystem, (FreezerRoomController * __this, bool active, MethodInfo * method)); DO_APP_FUNC(0x005078F0, void, FreezerRoomController_OnAnnaEnrageStart, (FreezerRoomController * __this, GameObject * anna, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19FD8, FreezerRoomController_OnAnnaEnrageStart__MethodInfo); DO_APP_FUNC(0x00507A20, void, FreezerRoomController_OnAnnaEnrageEnd, (FreezerRoomController * __this, GameObject * anna, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19FE0, FreezerRoomController_OnAnnaEnrageEnd__MethodInfo); DO_APP_FUNC(0x00507AA0, int32_t, FreezerRoomController_GetTimeTillActivation, (FreezerRoomController * __this, MethodInfo * method)); DO_APP_FUNC(0x00507B50, IEnumerator *, FreezerRoomController_PeriodicallyActivate, (FreezerRoomController * __this, MethodInfo * method)); DO_APP_FUNC(0x00507BF0, bool, FreezerRoomController_IsPlayerInside, (FreezerRoomController * __this, GameObject * player, MethodInfo * method)); @@ -17319,30 +19732,35 @@ DO_APP_FUNC(0x003AE050, void, FreezerRoomController_WaitToResetRecentlyAttached_ DO_APP_FUNC(0x00508140, bool, FreezerRoomController_WaitToResetRecentlyAttached_d_35_MoveNext, (FreezerRoomController_WaitToResetRecentlyAttached_d_35 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, FreezerRoomController_WaitToResetRecentlyAttached_d_35_System_Collections_Generic_IEnumerator_System_Object__get_Current, (FreezerRoomController_WaitToResetRecentlyAttached_d_35 * __this, MethodInfo * method)); DO_APP_FUNC(0x00508220, void, FreezerRoomController_WaitToResetRecentlyAttached_d_35_System_Collections_IEnumerator_Reset, (FreezerRoomController_WaitToResetRecentlyAttached_d_35 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19F20, FreezerRoomController_WaitToResetRecentlyAttached_d_35_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, FreezerRoomController_WaitToResetRecentlyAttached_d_35_System_Collections_IEnumerator_get_Current, (FreezerRoomController_WaitToResetRecentlyAttached_d_35 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, FreezerRoomController_Activate_d_37__ctor, (FreezerRoomController_Activate_d_37 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, FreezerRoomController_Activate_d_37_System_IDisposable_Dispose, (FreezerRoomController_Activate_d_37 * __this, MethodInfo * method)); DO_APP_FUNC(0x00508270, bool, FreezerRoomController_Activate_d_37_MoveNext, (FreezerRoomController_Activate_d_37 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, FreezerRoomController_Activate_d_37_System_Collections_Generic_IEnumerator_System_Object__get_Current, (FreezerRoomController_Activate_d_37 * __this, MethodInfo * method)); DO_APP_FUNC(0x00508C10, void, FreezerRoomController_Activate_d_37_System_Collections_IEnumerator_Reset, (FreezerRoomController_Activate_d_37 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19F10, FreezerRoomController_Activate_d_37_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, FreezerRoomController_Activate_d_37_System_Collections_IEnumerator_get_Current, (FreezerRoomController_Activate_d_37 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, FreezerRoomController_CheckStopPursueOnAzazel_d_44__ctor, (FreezerRoomController_CheckStopPursueOnAzazel_d_44 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, FreezerRoomController_CheckStopPursueOnAzazel_d_44_System_IDisposable_Dispose, (FreezerRoomController_CheckStopPursueOnAzazel_d_44 * __this, MethodInfo * method)); DO_APP_FUNC(0x00508C60, bool, FreezerRoomController_CheckStopPursueOnAzazel_d_44_MoveNext, (FreezerRoomController_CheckStopPursueOnAzazel_d_44 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, FreezerRoomController_CheckStopPursueOnAzazel_d_44_System_Collections_Generic_IEnumerator_System_Object__get_Current, (FreezerRoomController_CheckStopPursueOnAzazel_d_44 * __this, MethodInfo * method)); DO_APP_FUNC(0x00509170, void, FreezerRoomController_CheckStopPursueOnAzazel_d_44_System_Collections_IEnumerator_Reset, (FreezerRoomController_CheckStopPursueOnAzazel_d_44 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19F08, FreezerRoomController_CheckStopPursueOnAzazel_d_44_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, FreezerRoomController_CheckStopPursueOnAzazel_d_44_System_Collections_IEnumerator_get_Current, (FreezerRoomController_CheckStopPursueOnAzazel_d_44 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, FreezerRoomController_UpdateParticleSystem_d_51__ctor, (FreezerRoomController_UpdateParticleSystem_d_51 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, FreezerRoomController_UpdateParticleSystem_d_51_System_IDisposable_Dispose, (FreezerRoomController_UpdateParticleSystem_d_51 * __this, MethodInfo * method)); DO_APP_FUNC(0x005091C0, bool, FreezerRoomController_UpdateParticleSystem_d_51_MoveNext, (FreezerRoomController_UpdateParticleSystem_d_51 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, FreezerRoomController_UpdateParticleSystem_d_51_System_Collections_Generic_IEnumerator_System_Object__get_Current, (FreezerRoomController_UpdateParticleSystem_d_51 * __this, MethodInfo * method)); DO_APP_FUNC(0x00509800, void, FreezerRoomController_UpdateParticleSystem_d_51_System_Collections_IEnumerator_Reset, (FreezerRoomController_UpdateParticleSystem_d_51 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19F00, FreezerRoomController_UpdateParticleSystem_d_51_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, FreezerRoomController_UpdateParticleSystem_d_51_System_Collections_IEnumerator_get_Current, (FreezerRoomController_UpdateParticleSystem_d_51 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, FreezerRoomController_PeriodicallyActivate_d_55__ctor, (FreezerRoomController_PeriodicallyActivate_d_55 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, FreezerRoomController_PeriodicallyActivate_d_55_System_IDisposable_Dispose, (FreezerRoomController_PeriodicallyActivate_d_55 * __this, MethodInfo * method)); DO_APP_FUNC(0x00509850, bool, FreezerRoomController_PeriodicallyActivate_d_55_MoveNext, (FreezerRoomController_PeriodicallyActivate_d_55 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, FreezerRoomController_PeriodicallyActivate_d_55_System_Collections_Generic_IEnumerator_System_Object__get_Current, (FreezerRoomController_PeriodicallyActivate_d_55 * __this, MethodInfo * method)); DO_APP_FUNC(0x00509D40, void, FreezerRoomController_PeriodicallyActivate_d_55_System_Collections_IEnumerator_Reset, (FreezerRoomController_PeriodicallyActivate_d_55 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19EF8, FreezerRoomController_PeriodicallyActivate_d_55_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, FreezerRoomController_PeriodicallyActivate_d_55_System_Collections_IEnumerator_get_Current, (FreezerRoomController_PeriodicallyActivate_d_55 * __this, MethodInfo * method)); DO_APP_FUNC(0x00509D90, void, FreezerRoomLightController_Awake, (FreezerRoomLightController * __this, MethodInfo * method)); DO_APP_FUNC(0x00509E30, void, FreezerRoomLightController_SetActive, (FreezerRoomLightController * __this, bool active, bool isFromAttached, MethodInfo * method)); @@ -17369,6 +19787,7 @@ DO_APP_FUNC(0x0050CB80, IEnumerator *, SlaughterhouseAltarController_GrindingPig DO_APP_FUNC(0x0050CC20, IEnumerator *, SlaughterhouseAltarController_DestroyGoat, (SlaughterhouseAltarController * __this, MethodInfo * method)); DO_APP_FUNC(0x0050CCC0, void, SlaughterhouseAltarController_OnNumObjectsBurnt, (SlaughterhouseAltarController * __this, MethodInfo * method)); DO_APP_FUNC(0x0050CEF0, void, SlaughterhouseAltarController_OnIsLeverDown, (SlaughterhouseAltarController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19E48, SlaughterhouseAltarController_OnIsLeverDown__MethodInfo); DO_APP_FUNC(0x0050D1C0, void, SlaughterhouseAltarController_Update, (SlaughterhouseAltarController * __this, MethodInfo * method)); DO_APP_FUNC(0x0050DEB0, void, SlaughterhouseAltarController_SkipToGoat, (SlaughterhouseAltarController * __this, int32_t number, MethodInfo * method)); DO_APP_FUNC(0x0050E250, void, SlaughterhouseAltarController_PullLever, (SlaughterhouseAltarController * __this, BoltEntity * player, MethodInfo * method)); @@ -17383,51 +19802,67 @@ DO_APP_FUNC(0x0050FB10, IEnumerator *, SlaughterhouseAltarController_TeleportPla DO_APP_FUNC(0x0050FBB0, void, SlaughterhouseAltarController_SpawnPigs, (SlaughterhouseAltarController * __this, MethodInfo * method)); DO_APP_FUNC(0x00510720, void, SlaughterhouseAltarController_SpawnAnimalGateKeys, (SlaughterhouseAltarController * __this, MethodInfo * method)); DO_APP_FUNC(0x00510B20, void, SlaughterhouseAltarController_SpawnFinalPigs, (SlaughterhouseAltarController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19E88, SlaughterhouseAltarController_SpawnFinalPigs__MethodInfo); DO_APP_FUNC(0x00510ED0, void, SlaughterhouseAltarController_InsertPlayersIntoInitialPigs, (SlaughterhouseAltarController * __this, MethodInfo * method)); DO_APP_FUNC(0x00511140, void, SlaughterhouseAltarController_OnAzazelSpawned, (SlaughterhouseAltarController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19E98, SlaughterhouseAltarController_OnAzazelSpawned__MethodInfo); DO_APP_FUNC(0x00511330, void, SlaughterhouseAltarController_OnIsAzazelActive, (SlaughterhouseAltarController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19E50, SlaughterhouseAltarController_OnIsAzazelActive__MethodInfo); DO_APP_FUNC(0x00511440, void, SlaughterhouseAltarController_OnBloodEffectsChanged, (SlaughterhouseAltarController * __this, bool enabled, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19E90, SlaughterhouseAltarController_OnBloodEffectsChanged__MethodInfo); DO_APP_FUNC(0x005114B0, void, SlaughterhouseAltarController_OnDestroy, (SlaughterhouseAltarController * __this, MethodInfo * method)); DO_APP_FUNC(0x00511660, void, SlaughterhouseAltarController__ctor, (SlaughterhouseAltarController * __this, MethodInfo * method)); DO_APP_FUNC(0x00511830, void, SlaughterhouseAltarController__StopCrank_b__76_0, (SlaughterhouseAltarController * __this, float val, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19E28, SlaughterhouseAltarController__StopCrank_b__76_0__MethodInfo); DO_APP_FUNC(0x00511AB0, void, SlaughterhouseAltarController__StopCrank_b__76_1, (SlaughterhouseAltarController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19E20, SlaughterhouseAltarController__StopCrank_b__76_1__MethodInfo); DO_APP_FUNC(0x00511D30, void, SlaughterhouseAltarController__PlayHookSwing_b__80_0, (SlaughterhouseAltarController * __this, float val, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19E10, SlaughterhouseAltarController__PlayHookSwing_b__80_0__MethodInfo); DO_APP_FUNC(0x00511D60, void, SlaughterhouseAltarController_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SlaughterhouseAltarController_c__ctor, (SlaughterhouseAltarController_c * __this, MethodInfo * method)); DO_APP_FUNC(0x00511E10, AnimalGateSpawnPoint *, SlaughterhouseAltarController_c__Awake_b__72_0, (SlaughterhouseAltarController_c * __this, GameObject * go, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19E80, SlaughterhouseAltarController_c__Awake_b__72_0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, SlaughterhouseAltarController_Cranking_d_75__ctor, (SlaughterhouseAltarController_Cranking_d_75 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SlaughterhouseAltarController_Cranking_d_75_System_IDisposable_Dispose, (SlaughterhouseAltarController_Cranking_d_75 * __this, MethodInfo * method)); DO_APP_FUNC(0x00511E60, bool, SlaughterhouseAltarController_Cranking_d_75_MoveNext, (SlaughterhouseAltarController_Cranking_d_75 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SlaughterhouseAltarController_Cranking_d_75_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SlaughterhouseAltarController_Cranking_d_75 * __this, MethodInfo * method)); DO_APP_FUNC(0x00512870, void, SlaughterhouseAltarController_Cranking_d_75_System_Collections_IEnumerator_Reset, (SlaughterhouseAltarController_Cranking_d_75 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19D48, SlaughterhouseAltarController_Cranking_d_75_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SlaughterhouseAltarController_Cranking_d_75_System_Collections_IEnumerator_get_Current, (SlaughterhouseAltarController_Cranking_d_75 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SlaughterhouseAltarController_c_DisplayClass81_0__ctor, (SlaughterhouseAltarController_c_DisplayClass81_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x005128D0, void, SlaughterhouseAltarController_c_DisplayClass81_0__GrindingPig_b__0, (SlaughterhouseAltarController_c_DisplayClass81_0 * __this, float val, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C480, SlaughterhouseAltarController_c_DisplayClass81_0__GrindingPig_b__0__MethodInfo); DO_APP_FUNC(0x00512C00, void, SlaughterhouseAltarController_c_DisplayClass81_0__GrindingPig_b__1, (SlaughterhouseAltarController_c_DisplayClass81_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C470, SlaughterhouseAltarController_c_DisplayClass81_0__GrindingPig_b__1__MethodInfo); DO_APP_FUNC(0x00512FF0, void, SlaughterhouseAltarController_c_DisplayClass81_0__GrindingPig_b__2, (SlaughterhouseAltarController_c_DisplayClass81_0 * __this, float val, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C4B0, SlaughterhouseAltarController_c_DisplayClass81_0__GrindingPig_b__2__MethodInfo); DO_APP_FUNC(0x003BCD60, void, SlaughterhouseAltarController_GrindingPig_d_81__ctor, (SlaughterhouseAltarController_GrindingPig_d_81 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SlaughterhouseAltarController_GrindingPig_d_81_System_IDisposable_Dispose, (SlaughterhouseAltarController_GrindingPig_d_81 * __this, MethodInfo * method)); DO_APP_FUNC(0x00513320, bool, SlaughterhouseAltarController_GrindingPig_d_81_MoveNext, (SlaughterhouseAltarController_GrindingPig_d_81 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SlaughterhouseAltarController_GrindingPig_d_81_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SlaughterhouseAltarController_GrindingPig_d_81 * __this, MethodInfo * method)); DO_APP_FUNC(0x005140C0, void, SlaughterhouseAltarController_GrindingPig_d_81_System_Collections_IEnumerator_Reset, (SlaughterhouseAltarController_GrindingPig_d_81 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C448, SlaughterhouseAltarController_GrindingPig_d_81_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SlaughterhouseAltarController_GrindingPig_d_81_System_Collections_IEnumerator_get_Current, (SlaughterhouseAltarController_GrindingPig_d_81 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, SlaughterhouseAltarController_DestroyGoat_d_82__ctor, (SlaughterhouseAltarController_DestroyGoat_d_82 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SlaughterhouseAltarController_DestroyGoat_d_82_System_IDisposable_Dispose, (SlaughterhouseAltarController_DestroyGoat_d_82 * __this, MethodInfo * method)); DO_APP_FUNC(0x00514110, bool, SlaughterhouseAltarController_DestroyGoat_d_82_MoveNext, (SlaughterhouseAltarController_DestroyGoat_d_82 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SlaughterhouseAltarController_DestroyGoat_d_82_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SlaughterhouseAltarController_DestroyGoat_d_82 * __this, MethodInfo * method)); DO_APP_FUNC(0x00514580, void, SlaughterhouseAltarController_DestroyGoat_d_82_System_Collections_IEnumerator_Reset, (SlaughterhouseAltarController_DestroyGoat_d_82 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C428, SlaughterhouseAltarController_DestroyGoat_d_82_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SlaughterhouseAltarController_DestroyGoat_d_82_System_Collections_IEnumerator_get_Current, (SlaughterhouseAltarController_DestroyGoat_d_82 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, SlaughterhouseAltarController_FailedLeverPull_d_88__ctor, (SlaughterhouseAltarController_FailedLeverPull_d_88 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SlaughterhouseAltarController_FailedLeverPull_d_88_System_IDisposable_Dispose, (SlaughterhouseAltarController_FailedLeverPull_d_88 * __this, MethodInfo * method)); DO_APP_FUNC(0x005145D0, bool, SlaughterhouseAltarController_FailedLeverPull_d_88_MoveNext, (SlaughterhouseAltarController_FailedLeverPull_d_88 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SlaughterhouseAltarController_FailedLeverPull_d_88_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SlaughterhouseAltarController_FailedLeverPull_d_88 * __this, MethodInfo * method)); DO_APP_FUNC(0x00514780, void, SlaughterhouseAltarController_FailedLeverPull_d_88_System_Collections_IEnumerator_Reset, (SlaughterhouseAltarController_FailedLeverPull_d_88 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C3F8, SlaughterhouseAltarController_FailedLeverPull_d_88_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SlaughterhouseAltarController_FailedLeverPull_d_88_System_Collections_IEnumerator_get_Current, (SlaughterhouseAltarController_FailedLeverPull_d_88 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, SlaughterhouseAltarController_TeleportPlayerBack_d_95__ctor, (SlaughterhouseAltarController_TeleportPlayerBack_d_95 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SlaughterhouseAltarController_TeleportPlayerBack_d_95_System_IDisposable_Dispose, (SlaughterhouseAltarController_TeleportPlayerBack_d_95 * __this, MethodInfo * method)); DO_APP_FUNC(0x005147D0, bool, SlaughterhouseAltarController_TeleportPlayerBack_d_95_MoveNext, (SlaughterhouseAltarController_TeleportPlayerBack_d_95 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SlaughterhouseAltarController_TeleportPlayerBack_d_95_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SlaughterhouseAltarController_TeleportPlayerBack_d_95 * __this, MethodInfo * method)); DO_APP_FUNC(0x00515250, void, SlaughterhouseAltarController_TeleportPlayerBack_d_95_System_Collections_IEnumerator_Reset, (SlaughterhouseAltarController_TeleportPlayerBack_d_95 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C3D0, SlaughterhouseAltarController_TeleportPlayerBack_d_95_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SlaughterhouseAltarController_TeleportPlayerBack_d_95_System_Collections_IEnumerator_get_Current, (SlaughterhouseAltarController_TeleportPlayerBack_d_95 * __this, MethodInfo * method)); DO_APP_FUNC(0x005152A0, void, SlaughterhouseIntro_Attached, (SlaughterhouseIntro * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SlaughterhouseIntro_Detached, (SlaughterhouseIntro * __this, MethodInfo * method)); @@ -17435,6 +19870,7 @@ DO_APP_FUNC(0x005155C0, IEnumerator *, SlaughterhouseIntro_WaitForLocalCharacter DO_APP_FUNC(0x00515660, void, SlaughterhouseIntro_SpawnIntroNathan, (SlaughterhouseIntro * __this, MethodInfo * method)); DO_APP_FUNC(0x00515B00, IEnumerator *, SlaughterhouseIntro_ResetRecentlyAttached, (SlaughterhouseIntro * __this, MethodInfo * method)); DO_APP_FUNC(0x00515BA0, void, SlaughterhouseIntro_OnStep, (SlaughterhouseIntro * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C390, SlaughterhouseIntro_OnStep__MethodInfo); DO_APP_FUNC(0x00515BB0, void, SlaughterhouseIntro_OnStepInternal, (SlaughterhouseIntro * __this, bool isFromAttached, MethodInfo * method)); DO_APP_FUNC(0x00516620, IEnumerator *, SlaughterhouseIntro_SpawnIntroPigs, (SlaughterhouseIntro * __this, MethodInfo * method)); DO_APP_FUNC(0x005166C0, void, SlaughterhouseIntro_LockIntroDoors, (SlaughterhouseIntro * __this, MethodInfo * method)); @@ -17443,48 +19879,60 @@ DO_APP_FUNC(0x00516EA0, void, SlaughterhouseIntro_EndIntro, (SlaughterhouseIntro DO_APP_FUNC(0x005170B0, IEnumerator *, SlaughterhouseIntro_OpenTruckShutter, (SlaughterhouseIntro * __this, MethodInfo * method)); DO_APP_FUNC(0x00517150, IEnumerator *, SlaughterhouseIntro_PigsEscape, (SlaughterhouseIntro * __this, MethodInfo * method)); DO_APP_FUNC(0x005171F0, void, SlaughterhouseIntro_PigsEscapeTriggerEntered, (SlaughterhouseIntro * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C2A0, SlaughterhouseIntro_PigsEscapeTriggerEntered__MethodInfo); DO_APP_FUNC(0x00517300, void, SlaughterhouseIntro_VentExitTriggerEntered, (SlaughterhouseIntro * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C290, SlaughterhouseIntro_VentExitTriggerEntered__MethodInfo); DO_APP_FUNC(0x00517410, void, SlaughterhouseIntro_FreezerRoomActivationTriggerEntered, (SlaughterhouseIntro * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C2C0, SlaughterhouseIntro_FreezerRoomActivationTriggerEntered__MethodInfo); DO_APP_FUNC(0x005176C0, void, SlaughterhouseIntro_AzazelNathanAgitateTriggerEntered, (SlaughterhouseIntro * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C2D8, SlaughterhouseIntro_AzazelNathanAgitateTriggerEntered__MethodInfo); DO_APP_FUNC(0x005177D0, void, SlaughterhouseIntro_AzazelNathanExitTriggerEntered, (SlaughterhouseIntro * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C2C8, SlaughterhouseIntro_AzazelNathanExitTriggerEntered__MethodInfo); DO_APP_FUNC(0x005178E0, IEnumerator *, SlaughterhouseIntro_FinishIntro, (SlaughterhouseIntro * __this, MethodInfo * method)); DO_APP_FUNC(0x00517980, void, SlaughterhouseIntro_PigsEscapeImmediatelyTriggerEntered, (SlaughterhouseIntro * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C2B0, SlaughterhouseIntro_PigsEscapeImmediatelyTriggerEntered__MethodInfo); DO_APP_FUNC(0x00517990, void, SlaughterhouseIntro__ctor, (SlaughterhouseIntro * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, SlaughterhouseIntro_WaitForLocalCharacter_d_40__ctor, (SlaughterhouseIntro_WaitForLocalCharacter_d_40 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SlaughterhouseIntro_WaitForLocalCharacter_d_40_System_IDisposable_Dispose, (SlaughterhouseIntro_WaitForLocalCharacter_d_40 * __this, MethodInfo * method)); DO_APP_FUNC(0x005179F0, bool, SlaughterhouseIntro_WaitForLocalCharacter_d_40_MoveNext, (SlaughterhouseIntro_WaitForLocalCharacter_d_40 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SlaughterhouseIntro_WaitForLocalCharacter_d_40_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SlaughterhouseIntro_WaitForLocalCharacter_d_40 * __this, MethodInfo * method)); DO_APP_FUNC(0x00518030, void, SlaughterhouseIntro_WaitForLocalCharacter_d_40_System_Collections_IEnumerator_Reset, (SlaughterhouseIntro_WaitForLocalCharacter_d_40 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C1D0, SlaughterhouseIntro_WaitForLocalCharacter_d_40_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SlaughterhouseIntro_WaitForLocalCharacter_d_40_System_Collections_IEnumerator_get_Current, (SlaughterhouseIntro_WaitForLocalCharacter_d_40 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, SlaughterhouseIntro_ResetRecentlyAttached_d_42__ctor, (SlaughterhouseIntro_ResetRecentlyAttached_d_42 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SlaughterhouseIntro_ResetRecentlyAttached_d_42_System_IDisposable_Dispose, (SlaughterhouseIntro_ResetRecentlyAttached_d_42 * __this, MethodInfo * method)); DO_APP_FUNC(0x00518080, bool, SlaughterhouseIntro_ResetRecentlyAttached_d_42_MoveNext, (SlaughterhouseIntro_ResetRecentlyAttached_d_42 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SlaughterhouseIntro_ResetRecentlyAttached_d_42_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SlaughterhouseIntro_ResetRecentlyAttached_d_42 * __this, MethodInfo * method)); DO_APP_FUNC(0x00518160, void, SlaughterhouseIntro_ResetRecentlyAttached_d_42_System_Collections_IEnumerator_Reset, (SlaughterhouseIntro_ResetRecentlyAttached_d_42 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C1C0, SlaughterhouseIntro_ResetRecentlyAttached_d_42_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SlaughterhouseIntro_ResetRecentlyAttached_d_42_System_Collections_IEnumerator_get_Current, (SlaughterhouseIntro_ResetRecentlyAttached_d_42 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, SlaughterhouseIntro_SpawnIntroPigs_d_45__ctor, (SlaughterhouseIntro_SpawnIntroPigs_d_45 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SlaughterhouseIntro_SpawnIntroPigs_d_45_System_IDisposable_Dispose, (SlaughterhouseIntro_SpawnIntroPigs_d_45 * __this, MethodInfo * method)); DO_APP_FUNC(0x005181B0, bool, SlaughterhouseIntro_SpawnIntroPigs_d_45_MoveNext, (SlaughterhouseIntro_SpawnIntroPigs_d_45 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SlaughterhouseIntro_SpawnIntroPigs_d_45_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SlaughterhouseIntro_SpawnIntroPigs_d_45 * __this, MethodInfo * method)); DO_APP_FUNC(0x00518700, void, SlaughterhouseIntro_SpawnIntroPigs_d_45_System_Collections_IEnumerator_Reset, (SlaughterhouseIntro_SpawnIntroPigs_d_45 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C1B0, SlaughterhouseIntro_SpawnIntroPigs_d_45_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SlaughterhouseIntro_SpawnIntroPigs_d_45_System_Collections_IEnumerator_get_Current, (SlaughterhouseIntro_SpawnIntroPigs_d_45 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, SlaughterhouseIntro_OpenTruckShutter_d_49__ctor, (SlaughterhouseIntro_OpenTruckShutter_d_49 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SlaughterhouseIntro_OpenTruckShutter_d_49_System_IDisposable_Dispose, (SlaughterhouseIntro_OpenTruckShutter_d_49 * __this, MethodInfo * method)); DO_APP_FUNC(0x00518750, bool, SlaughterhouseIntro_OpenTruckShutter_d_49_MoveNext, (SlaughterhouseIntro_OpenTruckShutter_d_49 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SlaughterhouseIntro_OpenTruckShutter_d_49_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SlaughterhouseIntro_OpenTruckShutter_d_49 * __this, MethodInfo * method)); DO_APP_FUNC(0x00518960, void, SlaughterhouseIntro_OpenTruckShutter_d_49_System_Collections_IEnumerator_Reset, (SlaughterhouseIntro_OpenTruckShutter_d_49 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C190, SlaughterhouseIntro_OpenTruckShutter_d_49_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SlaughterhouseIntro_OpenTruckShutter_d_49_System_Collections_IEnumerator_get_Current, (SlaughterhouseIntro_OpenTruckShutter_d_49 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, SlaughterhouseIntro_PigsEscape_d_50__ctor, (SlaughterhouseIntro_PigsEscape_d_50 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SlaughterhouseIntro_PigsEscape_d_50_System_IDisposable_Dispose, (SlaughterhouseIntro_PigsEscape_d_50 * __this, MethodInfo * method)); DO_APP_FUNC(0x005189B0, bool, SlaughterhouseIntro_PigsEscape_d_50_MoveNext, (SlaughterhouseIntro_PigsEscape_d_50 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SlaughterhouseIntro_PigsEscape_d_50_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SlaughterhouseIntro_PigsEscape_d_50 * __this, MethodInfo * method)); DO_APP_FUNC(0x00518FD0, void, SlaughterhouseIntro_PigsEscape_d_50_System_Collections_IEnumerator_Reset, (SlaughterhouseIntro_PigsEscape_d_50 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C150, SlaughterhouseIntro_PigsEscape_d_50_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SlaughterhouseIntro_PigsEscape_d_50_System_Collections_IEnumerator_get_Current, (SlaughterhouseIntro_PigsEscape_d_50 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, SlaughterhouseIntro_FinishIntro_d_56__ctor, (SlaughterhouseIntro_FinishIntro_d_56 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SlaughterhouseIntro_FinishIntro_d_56_System_IDisposable_Dispose, (SlaughterhouseIntro_FinishIntro_d_56 * __this, MethodInfo * method)); DO_APP_FUNC(0x00519020, bool, SlaughterhouseIntro_FinishIntro_d_56_MoveNext, (SlaughterhouseIntro_FinishIntro_d_56 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SlaughterhouseIntro_FinishIntro_d_56_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SlaughterhouseIntro_FinishIntro_d_56 * __this, MethodInfo * method)); DO_APP_FUNC(0x005196E0, void, SlaughterhouseIntro_FinishIntro_d_56_System_Collections_IEnumerator_Reset, (SlaughterhouseIntro_FinishIntro_d_56 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C130, SlaughterhouseIntro_FinishIntro_d_56_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SlaughterhouseIntro_FinishIntro_d_56_System_Collections_IEnumerator_get_Current, (SlaughterhouseIntro_FinishIntro_d_56 * __this, MethodInfo * method)); DO_APP_FUNC(0x00519730, void, SlaughterhousePurgatory_Awake, (SlaughterhousePurgatory * __this, MethodInfo * method)); DO_APP_FUNC(0x00519ED0, SlaughterhouseTrap__Array *, SlaughterhousePurgatory_GetTraps, (SlaughterhousePurgatory * __this, int32_t mazeIndex, MethodInfo * method)); @@ -17507,6 +19955,7 @@ DO_APP_FUNC(0x003AE050, void, SlaughterhouseTrapCattleFlamethrower_TimeFlamethro DO_APP_FUNC(0x0051B800, bool, SlaughterhouseTrapCattleFlamethrower_TimeFlamethrower_d_13_MoveNext, (SlaughterhouseTrapCattleFlamethrower_TimeFlamethrower_d_13 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SlaughterhouseTrapCattleFlamethrower_TimeFlamethrower_d_13_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SlaughterhouseTrapCattleFlamethrower_TimeFlamethrower_d_13 * __this, MethodInfo * method)); DO_APP_FUNC(0x0051BC20, void, SlaughterhouseTrapCattleFlamethrower_TimeFlamethrower_d_13_System_Collections_IEnumerator_Reset, (SlaughterhouseTrapCattleFlamethrower_TimeFlamethrower_d_13 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1BFF8, SlaughterhouseTrapCattleFlamethrower_TimeFlamethrower_d_13_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SlaughterhouseTrapCattleFlamethrower_TimeFlamethrower_d_13_System_Collections_IEnumerator_get_Current, (SlaughterhouseTrapCattleFlamethrower_TimeFlamethrower_d_13 * __this, MethodInfo * method)); DO_APP_FUNC(0x0051BC70, void, SpawnFirstDemon_OnTriggerEnter, (SpawnFirstDemon * __this, Collider * other, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, SpawnFirstDemon__ctor, (SpawnFirstDemon * __this, MethodInfo * method)); @@ -17529,13 +19978,18 @@ DO_APP_FUNC(0x0051E650, bool, SteamInventoryManager_HasRetrievedUserInventoryIte DO_APP_FUNC(0x0051E660, void, SteamInventoryManager_ClearRetrievedUserInventoryItems, (SteamInventoryManager * __this, MethodInfo * method)); DO_APP_FUNC(0x0051E670, void, SteamInventoryManager_SetServerValidationResult, (SteamInventoryManager * __this, SteamInventoryResult_t result, MethodInfo * method)); DO_APP_FUNC(0x0051E680, void, SteamInventoryManager_OnSteamInventoryResultReady, (SteamInventoryManager * __this, SteamInventoryResultReady_t pCallback, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1BEF0, SteamInventoryManager_OnSteamInventoryResultReady__MethodInfo); DO_APP_FUNC(0x0051EC40, void, SteamInventoryManager_OnSteamInventoryFullUpdate, (SteamInventoryManager * __this, SteamInventoryFullUpdate_t pCallback, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1BF08, SteamInventoryManager_OnSteamInventoryFullUpdate__MethodInfo); DO_APP_FUNC(0x0051EDA0, void, SteamInventoryManager_OnSteamInventoryDefinitionUpdate, (SteamInventoryManager * __this, SteamInventoryDefinitionUpdate_t pCallback, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1BF18, SteamInventoryManager_OnSteamInventoryDefinitionUpdate__MethodInfo); DO_APP_FUNC(0x0051EEC0, void, SteamInventoryManager_OnSteamInventoryStartPurchaseResult, (SteamInventoryManager * __this, SteamInventoryStartPurchaseResult_t pCallback, bool bIOFailure, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1BEE0, SteamInventoryManager_OnSteamInventoryStartPurchaseResult__MethodInfo); DO_APP_FUNC(0x0051F290, void, SteamInventoryManager_OnSteamInventoryRequestPricesResult, (SteamInventoryManager * __this, SteamInventoryRequestPricesResult_t pCallback, bool bIOFailure, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1BF00, SteamInventoryManager_OnSteamInventoryRequestPricesResult__MethodInfo); DO_APP_FUNC(0x0051F5F0, String *, SteamInventoryManager_FormatCurrency, (Decimal amount, String * currencyCode, MethodInfo * method)); DO_APP_FUNC(0x0051FAE0, void, SteamInventoryManager_OnApplicationQuit, (SteamInventoryManager * __this, MethodInfo * method)); -DO_APP_FUNC(0x0051FAF0, bool, SteamInventoryManager_GetSerializedResult, (SteamInventoryManager * __this, Byte__Array * res, MethodInfo * method)); +DO_APP_FUNC(0x0051FAF0, bool, SteamInventoryManager_GetSerializedResult, (SteamInventoryManager * __this, Byte__Array * * res, MethodInfo * method)); DO_APP_FUNC(0x0051FD40, void, SteamInventoryManager_DestroyResult, (SteamInventoryManager * __this, MethodInfo * method)); DO_APP_FUNC(0x0051FE90, void, SteamInventoryManager_StartPurchase, (SteamInventoryManager * __this, int32_t steamItemDefID, UnityAction * action, MethodInfo * method)); DO_APP_FUNC(0x005200C0, void, SteamInventoryManager_AddPromoItem, (SteamInventoryManager * __this, int32_t steamItemDefID, UnityAction * action, MethodInfo * method)); @@ -17550,22 +20004,29 @@ DO_APP_FUNC(0x005206D0, void, SteamInventoryManager__ctor, (SteamInventoryManage DO_APP_FUNC(0x00520950, void, SteamInventoryManager_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SteamInventoryManager_c__ctor, (SteamInventoryManager_c * __this, MethodInfo * method)); DO_APP_FUNC(0x00520A00, SteamItemDef_t, SteamInventoryManager_c__GetResultItems_b__30_0, (SteamInventoryManager_c * __this, SteamItemDetails_t x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1BD98, SteamInventoryManager_c__GetResultItems_b__30_0__MethodInfo); DO_APP_FUNC(0x003DA110, int32_t, SteamInventoryManager_c__GetResultItems_b__30_1, (SteamInventoryManager_c * __this, SteamItemDef_t x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1BD88, SteamInventoryManager_c__GetResultItems_b__30_1__MethodInfo); DO_APP_FUNC(0x00520A10, _f_AnonymousType3_2_System_Globalization_CultureInfo_System_Globalization_RegionInfo_ *, SteamInventoryManager_c__FormatCurrency_b__40_0, (SteamInventoryManager_c * __this, CultureInfo * c, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1BC70, SteamInventoryManager_c__FormatCurrency_b__40_0__MethodInfo); DO_APP_FUNC(0x00520D00, CultureInfo *, SteamInventoryManager_c__FormatCurrency_b__40_2, (SteamInventoryManager_c * __this, _f_AnonymousType3_2_System_Globalization_CultureInfo_System_Globalization_RegionInfo_ * __h__TransparentIdentifier0, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1BC68, SteamInventoryManager_c__FormatCurrency_b__40_2__MethodInfo); DO_APP_FUNC(0x003AE050, void, SteamInventoryManager_c_DisplayClass40_0__ctor, (SteamInventoryManager_c_DisplayClass40_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00520D40, bool, SteamInventoryManager_c_DisplayClass40_0__FormatCurrency_b__1, (SteamInventoryManager_c_DisplayClass40_0 * __this, _f_AnonymousType3_2_System_Globalization_CultureInfo_System_Globalization_RegionInfo_ * __h__TransparentIdentifier0, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1BC60, SteamInventoryManager_c_DisplayClass40_0__FormatCurrency_b__1__MethodInfo); DO_APP_FUNC(0x003BCD60, void, SteamInventoryManager_AddPromoItemInternal_d_46__ctor, (SteamInventoryManager_AddPromoItemInternal_d_46 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SteamInventoryManager_AddPromoItemInternal_d_46_System_IDisposable_Dispose, (SteamInventoryManager_AddPromoItemInternal_d_46 * __this, MethodInfo * method)); DO_APP_FUNC(0x00520E20, bool, SteamInventoryManager_AddPromoItemInternal_d_46_MoveNext, (SteamInventoryManager_AddPromoItemInternal_d_46 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SteamInventoryManager_AddPromoItemInternal_d_46_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SteamInventoryManager_AddPromoItemInternal_d_46 * __this, MethodInfo * method)); DO_APP_FUNC(0x00521130, void, SteamInventoryManager_AddPromoItemInternal_d_46_System_Collections_IEnumerator_Reset, (SteamInventoryManager_AddPromoItemInternal_d_46 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1BBA8, SteamInventoryManager_AddPromoItemInternal_d_46_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SteamInventoryManager_AddPromoItemInternal_d_46_System_Collections_IEnumerator_get_Current, (SteamInventoryManager_AddPromoItemInternal_d_46 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, SteamInventoryManager_AddPromoItemTimeout_d_47__ctor, (SteamInventoryManager_AddPromoItemTimeout_d_47 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SteamInventoryManager_AddPromoItemTimeout_d_47_System_IDisposable_Dispose, (SteamInventoryManager_AddPromoItemTimeout_d_47 * __this, MethodInfo * method)); DO_APP_FUNC(0x00521180, bool, SteamInventoryManager_AddPromoItemTimeout_d_47_MoveNext, (SteamInventoryManager_AddPromoItemTimeout_d_47 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SteamInventoryManager_AddPromoItemTimeout_d_47_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SteamInventoryManager_AddPromoItemTimeout_d_47 * __this, MethodInfo * method)); DO_APP_FUNC(0x00521340, void, SteamInventoryManager_AddPromoItemTimeout_d_47_System_Collections_IEnumerator_Reset, (SteamInventoryManager_AddPromoItemTimeout_d_47 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1BBA0, SteamInventoryManager_AddPromoItemTimeout_d_47_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SteamInventoryManager_AddPromoItemTimeout_d_47_System_Collections_IEnumerator_get_Current, (SteamInventoryManager_AddPromoItemTimeout_d_47 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SteamInventoryItem__ctor, (SteamInventoryItem * __this, MethodInfo * method)); DO_APP_FUNC(0x00521390, void, SteamInventoryValidator_SetupPlayer, (SteamInventoryValidator * __this, uint32_t connectionId, String * steamID, MethodInfo * method)); @@ -17587,16 +20048,20 @@ DO_APP_FUNC(0x003AE050, void, SteamInventoryValidator_WaitForValidateCompletion_ DO_APP_FUNC(0x00523750, bool, SteamInventoryValidator_WaitForValidateCompletion_d_3_MoveNext, (SteamInventoryValidator_WaitForValidateCompletion_d_3 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SteamInventoryValidator_WaitForValidateCompletion_d_3_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SteamInventoryValidator_WaitForValidateCompletion_d_3 * __this, MethodInfo * method)); DO_APP_FUNC(0x00523940, void, SteamInventoryValidator_WaitForValidateCompletion_d_3_System_Collections_IEnumerator_Reset, (SteamInventoryValidator_WaitForValidateCompletion_d_3 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1BAB8, SteamInventoryValidator_WaitForValidateCompletion_d_3_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SteamInventoryValidator_WaitForValidateCompletion_d_3_System_Collections_IEnumerator_get_Current, (SteamInventoryValidator_WaitForValidateCompletion_d_3 * __this, MethodInfo * method)); DO_APP_FUNC(0x00523990, void, SteamInventoryValidator_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SteamInventoryValidator_c__ctor, (SteamInventoryValidator_c * __this, MethodInfo * method)); DO_APP_FUNC(0x00520A00, int32_t, SteamInventoryValidator_c__ContinueValidate_b__4_0, (SteamInventoryValidator_c * __this, SteamItemDetails_t x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1BA40, SteamInventoryValidator_c__ContinueValidate_b__4_0__MethodInfo); DO_APP_FUNC(0x00523A40, uint32_t, SteamInventoryValidator_c__RemoveDisconnectedPlayers_b__13_0, (SteamInventoryValidator_c * __this, BoltConnection * client, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1BB00, SteamInventoryValidator_c__RemoveDisconnectedPlayers_b__13_0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, SteamInventoryValidator_ContinueValidate_d_4__ctor, (SteamInventoryValidator_ContinueValidate_d_4 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SteamInventoryValidator_ContinueValidate_d_4_System_IDisposable_Dispose, (SteamInventoryValidator_ContinueValidate_d_4 * __this, MethodInfo * method)); DO_APP_FUNC(0x00523A70, bool, SteamInventoryValidator_ContinueValidate_d_4_MoveNext, (SteamInventoryValidator_ContinueValidate_d_4 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SteamInventoryValidator_ContinueValidate_d_4_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SteamInventoryValidator_ContinueValidate_d_4 * __this, MethodInfo * method)); DO_APP_FUNC(0x00524E70, void, SteamInventoryValidator_ContinueValidate_d_4_System_Collections_IEnumerator_Reset, (SteamInventoryValidator_ContinueValidate_d_4 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B9F0, SteamInventoryValidator_ContinueValidate_d_4_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SteamInventoryValidator_ContinueValidate_d_4_System_Collections_IEnumerator_get_Current, (SteamInventoryValidator_ContinueValidate_d_4 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SteamNews__ctor, (SteamNews * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AppNews__ctor, (AppNews * __this, MethodInfo * method)); @@ -17604,13 +20069,15 @@ DO_APP_FUNC(0x003AE050, void, NewsItem__ctor, (NewsItem * __this, MethodInfo * m DO_APP_FUNC(0x00524EC0, SteamManager *, SteamManager_get_Instance, (MethodInfo * method)); DO_APP_FUNC(0x00525060, bool, SteamManager_get_Initialized, (MethodInfo * method)); DO_APP_FUNC(0x00525200, void, SteamManager_SteamAPIDebugTextHook, (int32_t nSeverity, StringBuilder * pchDebugText, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B958, SteamManager_SteamAPIDebugTextHook__MethodInfo); DO_APP_FUNC(0x00525250, void, SteamManager_InitOnPlayMode, (MethodInfo * method)); DO_APP_FUNC(0x00525300, void, SteamManager_Awake, (SteamManager * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B978, SteamManager_Awake__MethodInfo); DO_APP_FUNC(0x00525960, void, SteamManager_OnEnable, (SteamManager * __this, MethodInfo * method)); DO_APP_FUNC(0x00525D60, void, SteamManager_OnDestroy, (SteamManager * __this, MethodInfo * method)); DO_APP_FUNC(0x00526010, void, SteamManager_Update, (SteamManager * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, SteamManager__ctor, (SteamManager * __this, MethodInfo * method)); -DO_APP_FUNC(0x00526070, void, SteamInventoryResultStreamable_Read, (Byte__Array * data, bool containsResult, Byte__Array * serializedResult, MethodInfo * method)); +DO_APP_FUNC(0x00526070, void, SteamInventoryResultStreamable_Read, (Byte__Array * data, bool * containsResult, Byte__Array * * serializedResult, MethodInfo * method)); DO_APP_FUNC(0x00526170, Byte__Array *, SteamInventoryResultStreamable_Write, (bool containsResult, Byte__Array * serializedResult, MethodInfo * method)); DO_APP_FUNC(0x00424C30, void, Survival_set_sceneName, (Survival * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x003BB330, String *, Survival_get_sceneName, (Survival * __this, MethodInfo * method)); @@ -17619,12 +20086,16 @@ DO_APP_FUNC(0x00528430, void, Survival_Start, (Survival * __this, MethodInfo * m DO_APP_FUNC(0x005288E0, void, Survival_SceneLoadLocalDone, (Survival * __this, String * scene, IProtocolToken * token, MethodInfo * method)); DO_APP_FUNC(0x0052A640, void, Survival_Disconnected, (Survival * __this, BoltConnection * connection, MethodInfo * method)); DO_APP_FUNC(0x0052A7B0, void, Survival_OnGlobalGoatBurnEvent, (Survival * __this, int32_t numObjectsBurned, BoltEntity * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B828, Survival_OnGlobalGoatBurnEvent__MethodInfo); DO_APP_FUNC(0x0052ACB0, void, Survival_OnGlobalGoatBurnWeather, (Survival * __this, int32_t numObjectsBurned, MethodInfo * method)); DO_APP_FUNC(0x0052B220, IEnumerator *, Survival_DarkenSky, (Survival * __this, int32_t numObjectsBurned, MethodInfo * method)); DO_APP_FUNC(0x0052B2D0, void, Survival_OnKnockoutEvent, (Survival * __this, BoltEntity * killedBy, BoltEntity * playerKilled, bool usingPoison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B810, Survival_OnKnockoutEvent__MethodInfo); DO_APP_FUNC(0x0052BA40, void, Survival_OnKnockoutBoxEvent, (Survival * __this, String * killedBy, BoltEntity * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B818, Survival_OnKnockoutBoxEvent__MethodInfo); DO_APP_FUNC(0x0052BD90, IEnumerator *, Survival_GameOverCheck, (Survival * __this, MethodInfo * method)); DO_APP_FUNC(0x0052BE30, void, Survival_OnEndingEvent, (Survival * __this, int32_t ending, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B838, Survival_OnEndingEvent__MethodInfo); DO_APP_FUNC(0x0052C0B0, IEnumerator *, Survival_TriggerFailEnding, (Survival * __this, int32_t ending, MethodInfo * method)); DO_APP_FUNC(0x0052C160, IEnumerator *, Survival_TriggerWinEnding, (Survival * __this, MethodInfo * method)); DO_APP_FUNC(0x0052C200, void, Survival_SpawnCrawlers, (Survival * __this, int32_t amount, MethodInfo * method)); @@ -17634,7 +20105,7 @@ DO_APP_FUNC(0x0052D800, bool, Survival_SpawnCrow, (Survival * __this, GameObject DO_APP_FUNC(0x0052E010, void, Survival_SpawnFoodSources, (Survival * __this, int32_t amount, MethodInfo * method)); DO_APP_FUNC(0x0052EA30, IEnumerator *, Survival_SpawnExtraFoodSources, (Survival * __this, int32_t foodSourcesSpawned, int32_t amount, MethodInfo * method)); DO_APP_FUNC(0x0052EAF0, void, Survival_StartFoodSourceAI, (Survival * __this, BoltEntity * foodSource, MethodInfo * method)); -DO_APP_FUNC(0x0052EDA0, bool, Survival_GetDemonSpawnPoint, (Survival * __this, GameObject * spawnPoint, MethodInfo * method)); +DO_APP_FUNC(0x0052EDA0, bool, Survival_GetDemonSpawnPoint, (Survival * __this, GameObject * * spawnPoint, MethodInfo * method)); DO_APP_FUNC(0x0052F550, void, Survival_OnDestroy, (Survival * __this, MethodInfo * method)); DO_APP_FUNC(0x0052FA50, IEnumerator *, Survival_StartGameDebug, (Survival * __this, MethodInfo * method)); DO_APP_FUNC(0x0052FAF0, void, Survival_SpawnAzazel, (Survival * __this, MethodInfo * method)); @@ -17647,13 +20118,16 @@ DO_APP_FUNC(0x00533280, int32_t, Survival_GetMaxBatteries, (Survival * __this, M DO_APP_FUNC(0x005332B0, void, Survival_OnHayDestroyed, (Survival * __this, GameObject * hay, MethodInfo * method)); DO_APP_FUNC(0x005336D0, void, Survival_OnBatteryDestroyed, (Survival * __this, MethodInfo * method)); DO_APP_FUNC(0x00533840, void, Survival_OnReviveEvent, (Survival * __this, BoltEntity * revivedPlayer, BoltEntity * reviver, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B808, Survival_OnReviveEvent__MethodInfo); DO_APP_FUNC(0x00533950, void, Survival_OnBleachUsed, (Survival * __this, MethodInfo * method)); DO_APP_FUNC(0x00533AA0, void, Survival_OnMatchboxUsed, (Survival * __this, MethodInfo * method)); DO_APP_FUNC(0x00533BF0, void, Survival_OnCreatePortalEvent, (Survival * __this, int32_t portalId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B840, Survival_OnCreatePortalEvent__MethodInfo); DO_APP_FUNC(0x00533C90, void, Survival_SpawnObjectsIfNecessary, (Survival * __this, String * tag, String * carryObjectName, int32_t minObjects, int32_t numToRespawn, GameObject__Array * spawnPoints, PrefabId prefabId, MethodInfo * method)); DO_APP_FUNC(0x00534510, void, Survival_SpawnGoat, (Survival * __this, MethodInfo * method)); DO_APP_FUNC(0x00534AF0, void, Survival_SpawnInitialGoats, (Survival * __this, MethodInfo * method)); DO_APP_FUNC(0x00536150, void, Survival_OnEscapeGoatDetached, (Survival * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B830, Survival_OnEscapeGoatDetached__MethodInfo); DO_APP_FUNC(0x00536160, void, Survival_SpawnFinalGoats, (Survival * __this, MethodInfo * method)); DO_APP_FUNC(0x00536720, void, Survival_SpawnFirstDemon, (Survival * __this, GameObject * spawnPoint, MethodInfo * method)); DO_APP_FUNC(0x00536B10, void, Survival_SpawnAtticCageGoats, (Survival * __this, MethodInfo * method)); @@ -17665,8 +20139,10 @@ DO_APP_FUNC(0x00537410, GameObject *, Survival_InstantiateCutsceneCharacter, (Su DO_APP_FUNC(0x00537510, GameObject *, Survival_GetCutscenePrefab, (Survival * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x005375A0, IEnumerator *, Survival_DelayEndingDirector, (Survival * __this, PlayableDirector * director, bool debug, float duration, MethodInfo * method)); DO_APP_FUNC(0x005376E0, void, Survival_OnEndingComplete, (Survival * __this, PlayableDirector * d, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B3B8, Survival_OnEndingComplete__MethodInfo); DO_APP_FUNC(0x00537720, IEnumerator *, Survival_ForceEndGame, (Survival * __this, MethodInfo * method)); DO_APP_FUNC(0x005377C0, void, Survival_OnDebugEndingComplete, (Survival * __this, PlayableDirector * d, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B470, Survival_OnDebugEndingComplete__MethodInfo); DO_APP_FUNC(0x00538410, bool, Survival_IsEndingPlaying, (Survival * __this, MethodInfo * method)); DO_APP_FUNC(0x00538420, bool, Survival_IsJumpScarePlaying, (Survival * __this, MethodInfo * method)); DO_APP_FUNC(0x00538580, bool, Survival_StartingToPlayFailEnding, (Survival * __this, MethodInfo * method)); @@ -17698,6 +20174,7 @@ DO_APP_FUNC(0x0053CD30, bool, Survival_HasGoatHasBeenPickedUp, (Survival * __thi DO_APP_FUNC(0x0053CD40, void, Survival_OnAnnaIntroEnd, (Survival * __this, MethodInfo * method)); DO_APP_FUNC(0x0053CE00, IEnumerator *, Survival_ShowDropTutorialAgain, (Survival * __this, MethodInfo * method)); DO_APP_FUNC(0x0053CEA0, void, Survival_OnGoatFlee, (Survival * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B820, Survival_OnGoatFlee__MethodInfo); DO_APP_FUNC(0x0053CF40, JumpScare *, Survival_GetAzazelJumpScare, (Survival * __this, MethodInfo * method)); DO_APP_FUNC(0x0053D150, JumpScare *, Survival_GetCrawlerJumpScare, (Survival * __this, MethodInfo * method)); DO_APP_FUNC(0x0053D360, JumpScare *, Survival_GetHidingJumpScare, (Survival * __this, MethodInfo * method)); @@ -17712,157 +20189,220 @@ DO_APP_FUNC(0x0053EBD0, void, Survival__ctor, (Survival * __this, MethodInfo * m DO_APP_FUNC(0x0053F110, void, Survival_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Survival_c__ctor, (Survival_c * __this, MethodInfo * method)); DO_APP_FUNC(0x0053F1C0, TrashCanSpawnPoint *, Survival_c__Awake_b__184_0, (Survival_c * __this, GameObject * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B8F0, Survival_c__Awake_b__184_0__MethodInfo); DO_APP_FUNC(0x0053F210, bool, Survival_c__PlayFailEnding_b__229_3, (Survival_c * __this, PlayableBinding output, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1DF38, Survival_c__PlayFailEnding_b__229_3__MethodInfo); DO_APP_FUNC(0x0053F2B0, bool, Survival_c__PlayFailEnding_b__229_4, (Survival_c * __this, PlayableBinding output, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1DF28, Survival_c__PlayFailEnding_b__229_4__MethodInfo); DO_APP_FUNC(0x0053F350, bool, Survival_c__PlayFailEnding_b__229_0, (Survival_c * __this, PlayableBinding output, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1DF58, Survival_c__PlayFailEnding_b__229_0__MethodInfo); DO_APP_FUNC(0x0053F3F0, bool, Survival_c__PlayFailEnding_b__229_1, (Survival_c * __this, PlayableBinding output, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1DF50, Survival_c__PlayFailEnding_b__229_1__MethodInfo); DO_APP_FUNC(0x0053F490, bool, Survival_c__PlayFailEnding_b__229_2, (Survival_c * __this, PlayableBinding output, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1DF48, Survival_c__PlayFailEnding_b__229_2__MethodInfo); DO_APP_FUNC(0x0053F530, bool, Survival_c__PlayFailEnding_b__229_5, (Survival_c * __this, PlayableBinding output, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1DF20, Survival_c__PlayFailEnding_b__229_5__MethodInfo); DO_APP_FUNC(0x0053F5D0, bool, Survival_c__InstantiateCutscenePlayers_b__230_0, (Survival_c * __this, GameObject * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1DE50, Survival_c__InstantiateCutscenePlayers_b__230_0__MethodInfo); DO_APP_FUNC(0x0053F7E0, bool, Survival_c__PlayWinEnding_b__240_0, (Survival_c * __this, PlayableBinding output, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B3B0, Survival_c__PlayWinEnding_b__240_0__MethodInfo); DO_APP_FUNC(0x0053F880, bool, Survival_c__PlayWinEnding_b__240_1, (Survival_c * __this, PlayableBinding output, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B3A8, Survival_c__PlayWinEnding_b__240_1__MethodInfo); DO_APP_FUNC(0x0053F920, bool, Survival_c__PlayWinEnding_b__240_2, (Survival_c * __this, PlayableBinding output, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B3A0, Survival_c__PlayWinEnding_b__240_2__MethodInfo); DO_APP_FUNC(0x0053F9C0, bool, Survival_c__PlayWinEnding_b__240_3, (Survival_c * __this, PlayableBinding output, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B398, Survival_c__PlayWinEnding_b__240_3__MethodInfo); DO_APP_FUNC(0x0053FA60, bool, Survival_c__PlayWinEnding_b__240_4, (Survival_c * __this, PlayableBinding output, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B390, Survival_c__PlayWinEnding_b__240_4__MethodInfo); DO_APP_FUNC(0x0053FB00, bool, Survival_c__PlayWinEnding_b__240_5, (Survival_c * __this, PlayableBinding output, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B388, Survival_c__PlayWinEnding_b__240_5__MethodInfo); DO_APP_FUNC(0x0053FBA0, bool, Survival_c__PlayWinEnding_b__240_6, (Survival_c * __this, PlayableBinding output, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B380, Survival_c__PlayWinEnding_b__240_6__MethodInfo); DO_APP_FUNC(0x0053FC40, void, Survival_c__PlayEnding_b__243_0, (Survival_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B300, Survival_c__PlayEnding_b__243_0__MethodInfo); DO_APP_FUNC(0x0053FD80, void, Survival_c__PlayEnding_b__243_1, (Survival_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B2F8, Survival_c__PlayEnding_b__243_1__MethodInfo); DO_APP_FUNC(0x0053FEC0, void, Survival_c__PlayEnding_b__243_2, (Survival_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B2F0, Survival_c__PlayEnding_b__243_2__MethodInfo); DO_APP_FUNC(0x00540000, void, Survival_c__PlayEnding_b__243_3, (Survival_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B2E8, Survival_c__PlayEnding_b__243_3__MethodInfo); DO_APP_FUNC(0x00540140, void, Survival_c__PlayEnding_b__243_4, (Survival_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B2E0, Survival_c__PlayEnding_b__243_4__MethodInfo); DO_APP_FUNC(0x00540280, void, Survival_c__PlayEnding_b__243_5, (Survival_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B2D8, Survival_c__PlayEnding_b__243_5__MethodInfo); DO_APP_FUNC(0x005403C0, void, Survival_c__PlayEnding_b__243_6, (Survival_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B2D0, Survival_c__PlayEnding_b__243_6__MethodInfo); DO_APP_FUNC(0x00540500, void, Survival_c__PlayEnding_b__243_7, (Survival_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B2C8, Survival_c__PlayEnding_b__243_7__MethodInfo); DO_APP_FUNC(0x00540640, void, Survival_c__PlayEnding_b__243_8, (Survival_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B2C0, Survival_c__PlayEnding_b__243_8__MethodInfo); DO_APP_FUNC(0x003BCD60, void, Survival_DarkenSky_d_190__ctor, (Survival_DarkenSky_d_190 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Survival_DarkenSky_d_190_System_IDisposable_Dispose, (Survival_DarkenSky_d_190 * __this, MethodInfo * method)); DO_APP_FUNC(0x00540780, bool, Survival_DarkenSky_d_190_MoveNext, (Survival_DarkenSky_d_190 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, Survival_DarkenSky_d_190_System_Collections_Generic_IEnumerator_System_Object__get_Current, (Survival_DarkenSky_d_190 * __this, MethodInfo * method)); DO_APP_FUNC(0x00540BA0, void, Survival_DarkenSky_d_190_System_Collections_IEnumerator_Reset, (Survival_DarkenSky_d_190 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E0D0, Survival_DarkenSky_d_190_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Survival_DarkenSky_d_190_System_Collections_IEnumerator_get_Current, (Survival_DarkenSky_d_190 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, Survival_GameOverCheck_d_193__ctor, (Survival_GameOverCheck_d_193 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Survival_GameOverCheck_d_193_System_IDisposable_Dispose, (Survival_GameOverCheck_d_193 * __this, MethodInfo * method)); DO_APP_FUNC(0x00540BF0, bool, Survival_GameOverCheck_d_193_MoveNext, (Survival_GameOverCheck_d_193 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, Survival_GameOverCheck_d_193_System_Collections_Generic_IEnumerator_System_Object__get_Current, (Survival_GameOverCheck_d_193 * __this, MethodInfo * method)); DO_APP_FUNC(0x00541210, void, Survival_GameOverCheck_d_193_System_Collections_IEnumerator_Reset, (Survival_GameOverCheck_d_193 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E0C8, Survival_GameOverCheck_d_193_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Survival_GameOverCheck_d_193_System_Collections_IEnumerator_get_Current, (Survival_GameOverCheck_d_193 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, Survival_TriggerFailEnding_d_195__ctor, (Survival_TriggerFailEnding_d_195 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Survival_TriggerFailEnding_d_195_System_IDisposable_Dispose, (Survival_TriggerFailEnding_d_195 * __this, MethodInfo * method)); DO_APP_FUNC(0x00541260, bool, Survival_TriggerFailEnding_d_195_MoveNext, (Survival_TriggerFailEnding_d_195 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, Survival_TriggerFailEnding_d_195_System_Collections_Generic_IEnumerator_System_Object__get_Current, (Survival_TriggerFailEnding_d_195 * __this, MethodInfo * method)); DO_APP_FUNC(0x00541850, void, Survival_TriggerFailEnding_d_195_System_Collections_IEnumerator_Reset, (Survival_TriggerFailEnding_d_195 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E0A0, Survival_TriggerFailEnding_d_195_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Survival_TriggerFailEnding_d_195_System_Collections_IEnumerator_get_Current, (Survival_TriggerFailEnding_d_195 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, Survival_TriggerWinEnding_d_196__ctor, (Survival_TriggerWinEnding_d_196 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Survival_TriggerWinEnding_d_196_System_IDisposable_Dispose, (Survival_TriggerWinEnding_d_196 * __this, MethodInfo * method)); DO_APP_FUNC(0x005418A0, bool, Survival_TriggerWinEnding_d_196_MoveNext, (Survival_TriggerWinEnding_d_196 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, Survival_TriggerWinEnding_d_196_System_Collections_Generic_IEnumerator_System_Object__get_Current, (Survival_TriggerWinEnding_d_196 * __this, MethodInfo * method)); DO_APP_FUNC(0x00542400, void, Survival_TriggerWinEnding_d_196_System_Collections_IEnumerator_Reset, (Survival_TriggerWinEnding_d_196 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E088, Survival_TriggerWinEnding_d_196_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Survival_TriggerWinEnding_d_196_System_Collections_IEnumerator_get_Current, (Survival_TriggerWinEnding_d_196 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Survival_c_DisplayClass197_0__ctor, (Survival_c_DisplayClass197_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00542450, int32_t, Survival_c_DisplayClass197_0__SpawnCrawlers_b__0, (Survival_c_DisplayClass197_0 * __this, GameObject * perch, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B688, Survival_c_DisplayClass197_0__SpawnCrawlers_b__0__MethodInfo); DO_APP_FUNC(0x00542450, int32_t, Survival_c_DisplayClass197_0__SpawnCrawlers_b__1, (Survival_c_DisplayClass197_0 * __this, GameObject * spawnPoint, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B680, Survival_c_DisplayClass197_0__SpawnCrawlers_b__1__MethodInfo); DO_APP_FUNC(0x003AE050, void, Survival_c_DisplayClass198_0__ctor, (Survival_c_DisplayClass198_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00542450, int32_t, Survival_c_DisplayClass198_0__SpawnExtraDemons_b__0, (Survival_c_DisplayClass198_0 * __this, GameObject * spawnPoint, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E080, Survival_c_DisplayClass198_0__SpawnExtraDemons_b__0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, Survival_SpawnExtraDemons_d_198__ctor, (Survival_SpawnExtraDemons_d_198 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Survival_SpawnExtraDemons_d_198_System_IDisposable_Dispose, (Survival_SpawnExtraDemons_d_198 * __this, MethodInfo * method)); DO_APP_FUNC(0x00542480, bool, Survival_SpawnExtraDemons_d_198_MoveNext, (Survival_SpawnExtraDemons_d_198 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, Survival_SpawnExtraDemons_d_198_System_Collections_Generic_IEnumerator_System_Object__get_Current, (Survival_SpawnExtraDemons_d_198 * __this, MethodInfo * method)); DO_APP_FUNC(0x00542A20, void, Survival_SpawnExtraDemons_d_198_System_Collections_IEnumerator_Reset, (Survival_SpawnExtraDemons_d_198 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E070, Survival_SpawnExtraDemons_d_198_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Survival_SpawnExtraDemons_d_198_System_Collections_IEnumerator_get_Current, (Survival_SpawnExtraDemons_d_198 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Survival_c_DisplayClass199_0__ctor, (Survival_c_DisplayClass199_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00542450, int32_t, Survival_c_DisplayClass199_0__SpawnExtraCrows_b__0, (Survival_c_DisplayClass199_0 * __this, GameObject * perch, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E068, Survival_c_DisplayClass199_0__SpawnExtraCrows_b__0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, Survival_SpawnExtraCrows_d_199__ctor, (Survival_SpawnExtraCrows_d_199 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Survival_SpawnExtraCrows_d_199_System_IDisposable_Dispose, (Survival_SpawnExtraCrows_d_199 * __this, MethodInfo * method)); DO_APP_FUNC(0x00542A70, bool, Survival_SpawnExtraCrows_d_199_MoveNext, (Survival_SpawnExtraCrows_d_199 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, Survival_SpawnExtraCrows_d_199_System_Collections_Generic_IEnumerator_System_Object__get_Current, (Survival_SpawnExtraCrows_d_199 * __this, MethodInfo * method)); DO_APP_FUNC(0x00542DF0, void, Survival_SpawnExtraCrows_d_199_System_Collections_IEnumerator_Reset, (Survival_SpawnExtraCrows_d_199 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E058, Survival_SpawnExtraCrows_d_199_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Survival_SpawnExtraCrows_d_199_System_Collections_IEnumerator_get_Current, (Survival_SpawnExtraCrows_d_199 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Survival_c_DisplayClass201_0__ctor, (Survival_c_DisplayClass201_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00542450, int32_t, Survival_c_DisplayClass201_0__SpawnFoodSources_b__0, (Survival_c_DisplayClass201_0 * __this, GameObject * spawnPoint, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B638, Survival_c_DisplayClass201_0__SpawnFoodSources_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, Survival_c_DisplayClass202_0__ctor, (Survival_c_DisplayClass202_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00542450, int32_t, Survival_c_DisplayClass202_0__SpawnExtraFoodSources_b__0, (Survival_c_DisplayClass202_0 * __this, GameObject * spawnPoint, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E050, Survival_c_DisplayClass202_0__SpawnExtraFoodSources_b__0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, Survival_SpawnExtraFoodSources_d_202__ctor, (Survival_SpawnExtraFoodSources_d_202 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Survival_SpawnExtraFoodSources_d_202_System_IDisposable_Dispose, (Survival_SpawnExtraFoodSources_d_202 * __this, MethodInfo * method)); DO_APP_FUNC(0x00542E40, bool, Survival_SpawnExtraFoodSources_d_202_MoveNext, (Survival_SpawnExtraFoodSources_d_202 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, Survival_SpawnExtraFoodSources_d_202_System_Collections_Generic_IEnumerator_System_Object__get_Current, (Survival_SpawnExtraFoodSources_d_202 * __this, MethodInfo * method)); DO_APP_FUNC(0x00543390, void, Survival_SpawnExtraFoodSources_d_202_System_Collections_IEnumerator_Reset, (Survival_SpawnExtraFoodSources_d_202 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E040, Survival_SpawnExtraFoodSources_d_202_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Survival_SpawnExtraFoodSources_d_202_System_Collections_IEnumerator_get_Current, (Survival_SpawnExtraFoodSources_d_202 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Survival_c_DisplayClass204_0__ctor, (Survival_c_DisplayClass204_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00542450, int32_t, Survival_c_DisplayClass204_0__GetDemonSpawnPoint_b__0, (Survival_c_DisplayClass204_0 * __this, GameObject * sp, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B608, Survival_c_DisplayClass204_0__GetDemonSpawnPoint_b__0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, Survival_StartGameDebug_d_206__ctor, (Survival_StartGameDebug_d_206 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Survival_StartGameDebug_d_206_System_IDisposable_Dispose, (Survival_StartGameDebug_d_206 * __this, MethodInfo * method)); DO_APP_FUNC(0x005433E0, bool, Survival_StartGameDebug_d_206_MoveNext, (Survival_StartGameDebug_d_206 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, Survival_StartGameDebug_d_206_System_Collections_Generic_IEnumerator_System_Object__get_Current, (Survival_StartGameDebug_d_206 * __this, MethodInfo * method)); DO_APP_FUNC(0x00543B60, void, Survival_StartGameDebug_d_206_System_Collections_IEnumerator_Reset, (Survival_StartGameDebug_d_206 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E028, Survival_StartGameDebug_d_206_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Survival_StartGameDebug_d_206_System_Collections_IEnumerator_get_Current, (Survival_StartGameDebug_d_206 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, Survival_SpawnAzazelInternal_d_208__ctor, (Survival_SpawnAzazelInternal_d_208 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Survival_SpawnAzazelInternal_d_208_System_IDisposable_Dispose, (Survival_SpawnAzazelInternal_d_208 * __this, MethodInfo * method)); DO_APP_FUNC(0x00543BB0, bool, Survival_SpawnAzazelInternal_d_208_MoveNext, (Survival_SpawnAzazelInternal_d_208 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, Survival_SpawnAzazelInternal_d_208_System_Collections_Generic_IEnumerator_System_Object__get_Current, (Survival_SpawnAzazelInternal_d_208 * __this, MethodInfo * method)); DO_APP_FUNC(0x00544240, void, Survival_SpawnAzazelInternal_d_208_System_Collections_IEnumerator_Reset, (Survival_SpawnAzazelInternal_d_208 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E008, Survival_SpawnAzazelInternal_d_208_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Survival_SpawnAzazelInternal_d_208_System_Collections_IEnumerator_get_Current, (Survival_SpawnAzazelInternal_d_208 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Survival_c_DisplayClass212_0__ctor, (Survival_c_DisplayClass212_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00542450, int32_t, Survival_c_DisplayClass212_0__SpawnObjects_b__0, (Survival_c_DisplayClass212_0 * __this, GameObject * spawnPoint, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B5B8, Survival_c_DisplayClass212_0__SpawnObjects_b__0__MethodInfo); DO_APP_FUNC(0x00542450, int32_t, Survival_c_DisplayClass212_0__SpawnObjects_b__1, (Survival_c_DisplayClass212_0 * __this, GameObject * spawnPoint, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B5B0, Survival_c_DisplayClass212_0__SpawnObjects_b__1__MethodInfo); DO_APP_FUNC(0x00542450, int32_t, Survival_c_DisplayClass212_0__SpawnObjects_b__2, (Survival_c_DisplayClass212_0 * __this, GameObject * spawnPoint, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B5A8, Survival_c_DisplayClass212_0__SpawnObjects_b__2__MethodInfo); DO_APP_FUNC(0x00542450, int32_t, Survival_c_DisplayClass212_0__SpawnObjects_b__3, (Survival_c_DisplayClass212_0 * __this, GameObject * spawnPoint, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B5A0, Survival_c_DisplayClass212_0__SpawnObjects_b__3__MethodInfo); DO_APP_FUNC(0x00542450, int32_t, Survival_c_DisplayClass212_0__SpawnObjects_b__7, (Survival_c_DisplayClass212_0 * __this, GameObject * spawnPoint, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B580, Survival_c_DisplayClass212_0__SpawnObjects_b__7__MethodInfo); DO_APP_FUNC(0x00542450, int32_t, Survival_c_DisplayClass212_0__SpawnObjects_b__8, (Survival_c_DisplayClass212_0 * __this, GameObject * spawnPoint, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B578, Survival_c_DisplayClass212_0__SpawnObjects_b__8__MethodInfo); DO_APP_FUNC(0x00542450, int32_t, Survival_c_DisplayClass212_0__SpawnObjects_b__4, (Survival_c_DisplayClass212_0 * __this, GameObject * spawnPoint, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B598, Survival_c_DisplayClass212_0__SpawnObjects_b__4__MethodInfo); DO_APP_FUNC(0x00542450, int32_t, Survival_c_DisplayClass212_0__SpawnObjects_b__5, (Survival_c_DisplayClass212_0 * __this, GameObject * spawnPoint, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B590, Survival_c_DisplayClass212_0__SpawnObjects_b__5__MethodInfo); DO_APP_FUNC(0x00542450, int32_t, Survival_c_DisplayClass212_0__SpawnObjects_b__6, (Survival_c_DisplayClass212_0 * __this, GameObject * spawnPoint, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B588, Survival_c_DisplayClass212_0__SpawnObjects_b__6__MethodInfo); DO_APP_FUNC(0x003AE050, void, Survival_c_DisplayClass222_0__ctor, (Survival_c_DisplayClass222_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00542450, int32_t, Survival_c_DisplayClass222_0__SpawnInitialGoats_b__0, (Survival_c_DisplayClass222_0 * __this, GameObject * spawnPoint, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B518, Survival_c_DisplayClass222_0__SpawnInitialGoats_b__0__MethodInfo); DO_APP_FUNC(0x00542450, int32_t, Survival_c_DisplayClass222_0__SpawnInitialGoats_b__1, (Survival_c_DisplayClass222_0 * __this, GameObject * spawnPoint, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B510, Survival_c_DisplayClass222_0__SpawnInitialGoats_b__1__MethodInfo); DO_APP_FUNC(0x003AE050, void, Survival_c_DisplayClass224_0__ctor, (Survival_c_DisplayClass224_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00542450, int32_t, Survival_c_DisplayClass224_0__SpawnFinalGoats_b__0, (Survival_c_DisplayClass224_0 * __this, GameObject * spawnPoint, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B4B8, Survival_c_DisplayClass224_0__SpawnFinalGoats_b__0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, Survival_PlayFailEnding_d_229__ctor, (Survival_PlayFailEnding_d_229 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Survival_PlayFailEnding_d_229_System_IDisposable_Dispose, (Survival_PlayFailEnding_d_229 * __this, MethodInfo * method)); DO_APP_FUNC(0x00544290, bool, Survival_PlayFailEnding_d_229_MoveNext, (Survival_PlayFailEnding_d_229 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, Survival_PlayFailEnding_d_229_System_Collections_Generic_IEnumerator_System_Object__get_Current, (Survival_PlayFailEnding_d_229 * __this, MethodInfo * method)); DO_APP_FUNC(0x005464D0, void, Survival_PlayFailEnding_d_229_System_Collections_IEnumerator_Reset, (Survival_PlayFailEnding_d_229 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1DE78, Survival_PlayFailEnding_d_229_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Survival_PlayFailEnding_d_229_System_Collections_IEnumerator_get_Current, (Survival_PlayFailEnding_d_229 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Survival_c_DisplayClass230_0__ctor, (Survival_c_DisplayClass230_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00546520, bool, Survival_c_DisplayClass230_0__InstantiateCutscenePlayers_b__2, (Survival_c_DisplayClass230_0 * __this, PlayableBinding output, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1DE48, Survival_c_DisplayClass230_0__InstantiateCutscenePlayers_b__2__MethodInfo); DO_APP_FUNC(0x003AE050, void, Survival_c_DisplayClass230_1__ctor, (Survival_c_DisplayClass230_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x00546650, bool, Survival_c_DisplayClass230_1__InstantiateCutscenePlayers_b__1, (Survival_c_DisplayClass230_1 * __this, PlayableBinding output, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1DE38, Survival_c_DisplayClass230_1__InstantiateCutscenePlayers_b__1__MethodInfo); DO_APP_FUNC(0x003BCD60, void, Survival_InstantiateCutscenePlayers_d_230__ctor, (Survival_InstantiateCutscenePlayers_d_230 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Survival_InstantiateCutscenePlayers_d_230_System_IDisposable_Dispose, (Survival_InstantiateCutscenePlayers_d_230 * __this, MethodInfo * method)); DO_APP_FUNC(0x005466F0, bool, Survival_InstantiateCutscenePlayers_d_230_MoveNext, (Survival_InstantiateCutscenePlayers_d_230 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, Survival_InstantiateCutscenePlayers_d_230_System_Collections_Generic_IEnumerator_System_Object__get_Current, (Survival_InstantiateCutscenePlayers_d_230 * __this, MethodInfo * method)); DO_APP_FUNC(0x00547E60, void, Survival_InstantiateCutscenePlayers_d_230_System_Collections_IEnumerator_Reset, (Survival_InstantiateCutscenePlayers_d_230 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1DE00, Survival_InstantiateCutscenePlayers_d_230_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Survival_InstantiateCutscenePlayers_d_230_System_Collections_IEnumerator_get_Current, (Survival_InstantiateCutscenePlayers_d_230 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, Survival_DelayEndingDirector_d_233__ctor, (Survival_DelayEndingDirector_d_233 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Survival_DelayEndingDirector_d_233_System_IDisposable_Dispose, (Survival_DelayEndingDirector_d_233 * __this, MethodInfo * method)); DO_APP_FUNC(0x00547EB0, bool, Survival_DelayEndingDirector_d_233_MoveNext, (Survival_DelayEndingDirector_d_233 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, Survival_DelayEndingDirector_d_233_System_Collections_Generic_IEnumerator_System_Object__get_Current, (Survival_DelayEndingDirector_d_233 * __this, MethodInfo * method)); DO_APP_FUNC(0x005480B0, void, Survival_DelayEndingDirector_d_233_System_Collections_IEnumerator_Reset, (Survival_DelayEndingDirector_d_233 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1DDE0, Survival_DelayEndingDirector_d_233_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Survival_DelayEndingDirector_d_233_System_Collections_IEnumerator_get_Current, (Survival_DelayEndingDirector_d_233 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, Survival_ForceEndGame_d_235__ctor, (Survival_ForceEndGame_d_235 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Survival_ForceEndGame_d_235_System_IDisposable_Dispose, (Survival_ForceEndGame_d_235 * __this, MethodInfo * method)); DO_APP_FUNC(0x00548100, bool, Survival_ForceEndGame_d_235_MoveNext, (Survival_ForceEndGame_d_235 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, Survival_ForceEndGame_d_235_System_Collections_Generic_IEnumerator_System_Object__get_Current, (Survival_ForceEndGame_d_235 * __this, MethodInfo * method)); DO_APP_FUNC(0x005481F0, void, Survival_ForceEndGame_d_235_System_Collections_IEnumerator_Reset, (Survival_ForceEndGame_d_235 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1DDD8, Survival_ForceEndGame_d_235_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Survival_ForceEndGame_d_235_System_Collections_IEnumerator_get_Current, (Survival_ForceEndGame_d_235 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, Survival_CheckGraphHasTagsInternal_d_259__ctor, (Survival_CheckGraphHasTagsInternal_d_259 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Survival_CheckGraphHasTagsInternal_d_259_System_IDisposable_Dispose, (Survival_CheckGraphHasTagsInternal_d_259 * __this, MethodInfo * method)); DO_APP_FUNC(0x00548240, bool, Survival_CheckGraphHasTagsInternal_d_259_MoveNext, (Survival_CheckGraphHasTagsInternal_d_259 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, Survival_CheckGraphHasTagsInternal_d_259_System_Collections_Generic_IEnumerator_System_Object__get_Current, (Survival_CheckGraphHasTagsInternal_d_259 * __this, MethodInfo * method)); DO_APP_FUNC(0x00548560, void, Survival_CheckGraphHasTagsInternal_d_259_System_Collections_IEnumerator_Reset, (Survival_CheckGraphHasTagsInternal_d_259 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1DDD0, Survival_CheckGraphHasTagsInternal_d_259_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Survival_CheckGraphHasTagsInternal_d_259_System_Collections_IEnumerator_get_Current, (Survival_CheckGraphHasTagsInternal_d_259 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, Survival_ShowDropTutorialAgain_d_266__ctor, (Survival_ShowDropTutorialAgain_d_266 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Survival_ShowDropTutorialAgain_d_266_System_IDisposable_Dispose, (Survival_ShowDropTutorialAgain_d_266 * __this, MethodInfo * method)); DO_APP_FUNC(0x005485B0, bool, Survival_ShowDropTutorialAgain_d_266_MoveNext, (Survival_ShowDropTutorialAgain_d_266 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, Survival_ShowDropTutorialAgain_d_266_System_Collections_Generic_IEnumerator_System_Object__get_Current, (Survival_ShowDropTutorialAgain_d_266 * __this, MethodInfo * method)); DO_APP_FUNC(0x005486B0, void, Survival_ShowDropTutorialAgain_d_266_System_Collections_IEnumerator_Reset, (Survival_ShowDropTutorialAgain_d_266 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1DDC8, Survival_ShowDropTutorialAgain_d_266_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Survival_ShowDropTutorialAgain_d_266_System_Collections_IEnumerator_get_Current, (Survival_ShowDropTutorialAgain_d_266 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Survival_c_DisplayClass268_0__ctor, (Survival_c_DisplayClass268_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00542450, int32_t, Survival_c_DisplayClass268_0__GetAzazelJumpScare_b__0, (Survival_c_DisplayClass268_0 * __this, JumpScare * js, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B1F8, Survival_c_DisplayClass268_0__GetAzazelJumpScare_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, Survival_c_DisplayClass269_0__ctor, (Survival_c_DisplayClass269_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00542450, int32_t, Survival_c_DisplayClass269_0__GetCrawlerJumpScare_b__0, (Survival_c_DisplayClass269_0 * __this, JumpScare * js, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B1E8, Survival_c_DisplayClass269_0__GetCrawlerJumpScare_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, Survival_c_DisplayClass270_0__ctor, (Survival_c_DisplayClass270_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00542450, int32_t, Survival_c_DisplayClass270_0__GetHidingJumpScare_b__0, (Survival_c_DisplayClass270_0 * __this, JumpScare * js, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B1D8, Survival_c_DisplayClass270_0__GetHidingJumpScare_b__0__MethodInfo); DO_APP_FUNC(0x00548700, void, SurvivalDemonPortal_Awake, (SurvivalDemonPortal * __this, MethodInfo * method)); DO_APP_FUNC(0x005488C0, void, SurvivalDemonPortal_CreatePortal, (SurvivalDemonPortal * __this, MethodInfo * method)); DO_APP_FUNC(0x00421680, int32_t, SurvivalDemonPortal_GetPortalId, (SurvivalDemonPortal * __this, MethodInfo * method)); @@ -17874,14 +20414,22 @@ DO_APP_FUNC(0x005498A0, void, SurvivalLobbyController_Start, (SurvivalLobbyContr DO_APP_FUNC(0x00549AF0, void, SurvivalLobbyController_Attached, (SurvivalLobbyController * __this, MethodInfo * method)); DO_APP_FUNC(0x0054BC50, void, SurvivalLobbyController_AlignEXPBonus, (SurvivalLobbyController * __this, Image * expBonusImage, Text * expBonusTooltipText, bool hasAdditionalTooltip, MethodInfo * method)); DO_APP_FUNC(0x0054C030, void, SurvivalLobbyController_OnPlayersChanged, (SurvivalLobbyController * __this, IState * notUsed, String * path, ArrayIndices indices, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1DCB0, SurvivalLobbyController_OnPlayersChanged__MethodInfo); DO_APP_FUNC(0x0054E0D0, IEnumerator *, SurvivalLobbyController_ToggleRenderers, (SurvivalLobbyController * __this, MethodInfo * method)); DO_APP_FUNC(0x0054E170, void, SurvivalLobbyController_OnMapChanged, (SurvivalLobbyController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1DCF0, SurvivalLobbyController_OnMapChanged__MethodInfo); DO_APP_FUNC(0x0054E3C0, void, SurvivalLobbyController_OnDifficultyChanged, (SurvivalLobbyController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1DCF8, SurvivalLobbyController_OnDifficultyChanged__MethodInfo); DO_APP_FUNC(0x0054E5F0, void, SurvivalLobbyController_OnPlayerCollisionsChanged, (SurvivalLobbyController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1DCD0, SurvivalLobbyController_OnPlayerCollisionsChanged__MethodInfo); DO_APP_FUNC(0x0054E740, void, SurvivalLobbyController_OnProximityVoiceChanged, (SurvivalLobbyController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1DCA8, SurvivalLobbyController_OnProximityVoiceChanged__MethodInfo); DO_APP_FUNC(0x0054E890, void, SurvivalLobbyController_OnBatteriesChanged, (SurvivalLobbyController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1DD00, SurvivalLobbyController_OnBatteriesChanged__MethodInfo); DO_APP_FUNC(0x0054EBB0, void, SurvivalLobbyController_OnMedkitsChanged, (SurvivalLobbyController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1DCE8, SurvivalLobbyController_OnMedkitsChanged__MethodInfo); DO_APP_FUNC(0x0054EED0, void, SurvivalLobbyController_OnPerksChanged, (SurvivalLobbyController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1DCE0, SurvivalLobbyController_OnPerksChanged__MethodInfo); DO_APP_FUNC(0x0054F270, void, SurvivalLobbyController_ForceUnreadyOnIllegalCharacter, (SurvivalLobbyController * __this, MethodInfo * method)); DO_APP_FUNC(0x0054FDB0, void, SurvivalLobbyController_SetupPlayer, (SurvivalLobbyController * __this, String * name, uint32_t connectionId, String * prefabIdPreference, bool isHost, String * dissonanceId, String * playerId, MethodInfo * method)); DO_APP_FUNC(0x00550480, void, SurvivalLobbyController_ChangeMap, (SurvivalLobbyController * __this, DevourMap__Enum map, MethodInfo * method)); @@ -17909,7 +20457,9 @@ DO_APP_FUNC(0x00554EC0, void, SurvivalLobbyController_OnSelectFlashlight, (Survi DO_APP_FUNC(0x00555170, void, SurvivalLobbyController_OnSelectPet, (SurvivalLobbyController * __this, CharacterPet * pet, MethodInfo * method)); DO_APP_FUNC(0x00555390, void, SurvivalLobbyController_Detached, (SurvivalLobbyController * __this, MethodInfo * method)); DO_APP_FUNC(0x00555790, void, SurvivalLobbyController_OnPlayerStartedSpeaking, (SurvivalLobbyController * __this, VoicePlayerState * voicePlayerState, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1DCC0, SurvivalLobbyController_OnPlayerStartedSpeaking__MethodInfo); DO_APP_FUNC(0x00555BE0, void, SurvivalLobbyController_OnPlayerStoppedSpeaking, (SurvivalLobbyController * __this, VoicePlayerState * voicePlayerState, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1DCB8, SurvivalLobbyController_OnPlayerStoppedSpeaking__MethodInfo); DO_APP_FUNC(0x00556040, void, SurvivalLobbyController_Update, (SurvivalLobbyController * __this, MethodInfo * method)); DO_APP_FUNC(0x00556EA0, IEnumerator *, SurvivalLobbyController_FadeSpeakingAlpha, (SurvivalLobbyController * __this, Image * image, float targetAlpha, float duration, MethodInfo * method)); DO_APP_FUNC(0x00556F70, float, SurvivalLobbyController_CalculateSpeakerAlpha, (SurvivalLobbyController * __this, float amplitude, MethodInfo * method)); @@ -17925,35 +20475,47 @@ DO_APP_FUNC(0x00558A30, void, SurvivalLobbyController_SetupPlayerDropdownNavigat DO_APP_FUNC(0x005599B0, void, SurvivalLobbyController_OnDestroy, (SurvivalLobbyController * __this, MethodInfo * method)); DO_APP_FUNC(0x00559A70, void, SurvivalLobbyController__ctor, (SurvivalLobbyController * __this, MethodInfo * method)); DO_APP_FUNC(0x00559B90, bool, SurvivalLobbyController__OnChangePlayer_b__52_0, (SurvivalLobbyController * __this, GameObject * prefab, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1DA78, SurvivalLobbyController__OnChangePlayer_b__52_0__MethodInfo); DO_APP_FUNC(0x003AE050, void, SurvivalLobbyController_c_DisplayClass31_0__ctor, (SurvivalLobbyController_c_DisplayClass31_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00559CF0, void, SurvivalLobbyController_c_DisplayClass31_0__Awake_b__0, (SurvivalLobbyController_c_DisplayClass31_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1DD90, SurvivalLobbyController_c_DisplayClass31_0__Awake_b__0__MethodInfo); DO_APP_FUNC(0x00559D20, void, SurvivalLobbyController_c_DisplayClass31_0__Awake_b__1, (SurvivalLobbyController_c_DisplayClass31_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1DD88, SurvivalLobbyController_c_DisplayClass31_0__Awake_b__1__MethodInfo); DO_APP_FUNC(0x00559D50, void, SurvivalLobbyController_c_DisplayClass31_0__Awake_b__2, (SurvivalLobbyController_c_DisplayClass31_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1DD80, SurvivalLobbyController_c_DisplayClass31_0__Awake_b__2__MethodInfo); DO_APP_FUNC(0x00559D80, void, SurvivalLobbyController_c_DisplayClass31_0__Awake_b__3, (SurvivalLobbyController_c_DisplayClass31_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1DD78, SurvivalLobbyController_c_DisplayClass31_0__Awake_b__3__MethodInfo); DO_APP_FUNC(0x00559DB0, void, SurvivalLobbyController_c_DisplayClass31_0__Awake_b__4, (SurvivalLobbyController_c_DisplayClass31_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1DD70, SurvivalLobbyController_c_DisplayClass31_0__Awake_b__4__MethodInfo); DO_APP_FUNC(0x00559DE0, void, SurvivalLobbyController_c_DisplayClass31_0__Awake_b__5, (SurvivalLobbyController_c_DisplayClass31_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1DD68, SurvivalLobbyController_c_DisplayClass31_0__Awake_b__5__MethodInfo); DO_APP_FUNC(0x003BCD60, void, SurvivalLobbyController_ToggleRenderers_d_36__ctor, (SurvivalLobbyController_ToggleRenderers_d_36 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SurvivalLobbyController_ToggleRenderers_d_36_System_IDisposable_Dispose, (SurvivalLobbyController_ToggleRenderers_d_36 * __this, MethodInfo * method)); DO_APP_FUNC(0x00559E10, bool, SurvivalLobbyController_ToggleRenderers_d_36_MoveNext, (SurvivalLobbyController_ToggleRenderers_d_36 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalLobbyController_ToggleRenderers_d_36_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SurvivalLobbyController_ToggleRenderers_d_36 * __this, MethodInfo * method)); DO_APP_FUNC(0x0055A0A0, void, SurvivalLobbyController_ToggleRenderers_d_36_System_Collections_IEnumerator_Reset, (SurvivalLobbyController_ToggleRenderers_d_36 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D848, SurvivalLobbyController_ToggleRenderers_d_36_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalLobbyController_ToggleRenderers_d_36_System_Collections_IEnumerator_get_Current, (SurvivalLobbyController_ToggleRenderers_d_36 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, SurvivalLobbyController_EnableLocomotionOnSurvivalPlayer_d_48__ctor, (SurvivalLobbyController_EnableLocomotionOnSurvivalPlayer_d_48 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SurvivalLobbyController_EnableLocomotionOnSurvivalPlayer_d_48_System_IDisposable_Dispose, (SurvivalLobbyController_EnableLocomotionOnSurvivalPlayer_d_48 * __this, MethodInfo * method)); DO_APP_FUNC(0x0055A0F0, bool, SurvivalLobbyController_EnableLocomotionOnSurvivalPlayer_d_48_MoveNext, (SurvivalLobbyController_EnableLocomotionOnSurvivalPlayer_d_48 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalLobbyController_EnableLocomotionOnSurvivalPlayer_d_48_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SurvivalLobbyController_EnableLocomotionOnSurvivalPlayer_d_48 * __this, MethodInfo * method)); DO_APP_FUNC(0x0055A200, void, SurvivalLobbyController_EnableLocomotionOnSurvivalPlayer_d_48_System_Collections_IEnumerator_Reset, (SurvivalLobbyController_EnableLocomotionOnSurvivalPlayer_d_48 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D840, SurvivalLobbyController_EnableLocomotionOnSurvivalPlayer_d_48_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalLobbyController_EnableLocomotionOnSurvivalPlayer_d_48_System_Collections_IEnumerator_get_Current, (SurvivalLobbyController_EnableLocomotionOnSurvivalPlayer_d_48 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SurvivalLobbyController_c_DisplayClass53_0__ctor, (SurvivalLobbyController_c_DisplayClass53_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0055A250, bool, SurvivalLobbyController_c_DisplayClass53_0__ChangeClientPlayer_b__0, (SurvivalLobbyController_c_DisplayClass53_0 * __this, GameObject * prefab, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1DA70, SurvivalLobbyController_c_DisplayClass53_0__ChangeClientPlayer_b__0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, SurvivalLobbyController_FadeSpeakingAlpha_d_73__ctor, (SurvivalLobbyController_FadeSpeakingAlpha_d_73 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SurvivalLobbyController_FadeSpeakingAlpha_d_73_System_IDisposable_Dispose, (SurvivalLobbyController_FadeSpeakingAlpha_d_73 * __this, MethodInfo * method)); DO_APP_FUNC(0x0055A400, bool, SurvivalLobbyController_FadeSpeakingAlpha_d_73_MoveNext, (SurvivalLobbyController_FadeSpeakingAlpha_d_73 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalLobbyController_FadeSpeakingAlpha_d_73_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SurvivalLobbyController_FadeSpeakingAlpha_d_73 * __this, MethodInfo * method)); DO_APP_FUNC(0x0055A630, void, SurvivalLobbyController_FadeSpeakingAlpha_d_73_System_Collections_IEnumerator_Reset, (SurvivalLobbyController_FadeSpeakingAlpha_d_73 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D838, SurvivalLobbyController_FadeSpeakingAlpha_d_73_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalLobbyController_FadeSpeakingAlpha_d_73_System_Collections_IEnumerator_get_Current, (SurvivalLobbyController_FadeSpeakingAlpha_d_73 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SurvivalLobbyController_c_DisplayClass79_0__ctor, (SurvivalLobbyController_c_DisplayClass79_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0055A680, void, SurvivalLobbyController_c_DisplayClass79_0__OnPlayerDropdownOpen_b__0, (SurvivalLobbyController_c_DisplayClass79_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D880, SurvivalLobbyController_c_DisplayClass79_0__OnPlayerDropdownOpen_b__0__MethodInfo); DO_APP_FUNC(0x0055A6B0, void, SurvivalMollyAltarLightbulb__ctor, (SurvivalMollyAltarLightbulb * __this, GameObject * _gameObject, ParticleSystem * _particles, AudioSource * _audioSource, Light * _light, Renderer * _lightbulbRenderer, MethodInfo * method)); DO_APP_FUNC(0x0055AB90, void, SurvivalMollyAltarController_Awake, (SurvivalMollyAltarController * __this, MethodInfo * method)); DO_APP_FUNC(0x0055B5D0, void, SurvivalMollyAltarController_Attached, (SurvivalMollyAltarController * __this, MethodInfo * method)); @@ -17965,7 +20527,9 @@ DO_APP_FUNC(0x0055C8E0, void, SurvivalMollyAltarController_OnGoat, (SurvivalMoll DO_APP_FUNC(0x0055CC20, void, SurvivalMollyAltarController_OnNumObjectsBurnt, (SurvivalMollyAltarController * __this, MethodInfo * method)); DO_APP_FUNC(0x0055D020, IEnumerator *, SurvivalMollyAltarController_PlayEnragedAudio, (SurvivalMollyAltarController * __this, MethodInfo * method)); DO_APP_FUNC(0x0055D0C0, void, SurvivalMollyAltarController_OnIsLeverDown, (SurvivalMollyAltarController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D7E8, SurvivalMollyAltarController_OnIsLeverDown__MethodInfo); DO_APP_FUNC(0x0055D350, void, SurvivalMollyAltarController_OnIsAzazelActive, (SurvivalMollyAltarController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D7F0, SurvivalMollyAltarController_OnIsAzazelActive__MethodInfo); DO_APP_FUNC(0x0055D640, bool, SurvivalMollyAltarController_CanKnockoutPlayers, (SurvivalMollyAltarController * __this, MethodInfo * method)); DO_APP_FUNC(0x0055D760, IEnumerator *, SurvivalMollyAltarController_DestroyGoat, (SurvivalMollyAltarController * __this, MethodInfo * method)); DO_APP_FUNC(0x0055D800, IEnumerator *, SurvivalMollyAltarController_FailedLeverPull, (SurvivalMollyAltarController * __this, MethodInfo * method)); @@ -17979,36 +20543,42 @@ DO_APP_FUNC(0x003AE050, void, SurvivalMollyAltarController_PlayEnragedAudio_d_45 DO_APP_FUNC(0x0055DFC0, bool, SurvivalMollyAltarController_PlayEnragedAudio_d_45_MoveNext, (SurvivalMollyAltarController_PlayEnragedAudio_d_45 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalMollyAltarController_PlayEnragedAudio_d_45_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SurvivalMollyAltarController_PlayEnragedAudio_d_45 * __this, MethodInfo * method)); DO_APP_FUNC(0x0055E0E0, void, SurvivalMollyAltarController_PlayEnragedAudio_d_45_System_Collections_IEnumerator_Reset, (SurvivalMollyAltarController_PlayEnragedAudio_d_45 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D790, SurvivalMollyAltarController_PlayEnragedAudio_d_45_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalMollyAltarController_PlayEnragedAudio_d_45_System_Collections_IEnumerator_get_Current, (SurvivalMollyAltarController_PlayEnragedAudio_d_45 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, SurvivalMollyAltarController_DestroyGoat_d_49__ctor, (SurvivalMollyAltarController_DestroyGoat_d_49 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SurvivalMollyAltarController_DestroyGoat_d_49_System_IDisposable_Dispose, (SurvivalMollyAltarController_DestroyGoat_d_49 * __this, MethodInfo * method)); DO_APP_FUNC(0x0055E130, bool, SurvivalMollyAltarController_DestroyGoat_d_49_MoveNext, (SurvivalMollyAltarController_DestroyGoat_d_49 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalMollyAltarController_DestroyGoat_d_49_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SurvivalMollyAltarController_DestroyGoat_d_49 * __this, MethodInfo * method)); DO_APP_FUNC(0x0055E360, void, SurvivalMollyAltarController_DestroyGoat_d_49_System_Collections_IEnumerator_Reset, (SurvivalMollyAltarController_DestroyGoat_d_49 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D788, SurvivalMollyAltarController_DestroyGoat_d_49_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalMollyAltarController_DestroyGoat_d_49_System_Collections_IEnumerator_get_Current, (SurvivalMollyAltarController_DestroyGoat_d_49 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, SurvivalMollyAltarController_FailedLeverPull_d_50__ctor, (SurvivalMollyAltarController_FailedLeverPull_d_50 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SurvivalMollyAltarController_FailedLeverPull_d_50_System_IDisposable_Dispose, (SurvivalMollyAltarController_FailedLeverPull_d_50 * __this, MethodInfo * method)); DO_APP_FUNC(0x0055E3B0, bool, SurvivalMollyAltarController_FailedLeverPull_d_50_MoveNext, (SurvivalMollyAltarController_FailedLeverPull_d_50 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalMollyAltarController_FailedLeverPull_d_50_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SurvivalMollyAltarController_FailedLeverPull_d_50 * __this, MethodInfo * method)); DO_APP_FUNC(0x0055E500, void, SurvivalMollyAltarController_FailedLeverPull_d_50_System_Collections_IEnumerator_Reset, (SurvivalMollyAltarController_FailedLeverPull_d_50 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D780, SurvivalMollyAltarController_FailedLeverPull_d_50_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalMollyAltarController_FailedLeverPull_d_50_System_Collections_IEnumerator_get_Current, (SurvivalMollyAltarController_FailedLeverPull_d_50 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, SurvivalMollyAltarController_PlayZap_d_51__ctor, (SurvivalMollyAltarController_PlayZap_d_51 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SurvivalMollyAltarController_PlayZap_d_51_System_IDisposable_Dispose, (SurvivalMollyAltarController_PlayZap_d_51 * __this, MethodInfo * method)); DO_APP_FUNC(0x0055E550, bool, SurvivalMollyAltarController_PlayZap_d_51_MoveNext, (SurvivalMollyAltarController_PlayZap_d_51 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalMollyAltarController_PlayZap_d_51_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SurvivalMollyAltarController_PlayZap_d_51 * __this, MethodInfo * method)); DO_APP_FUNC(0x0055F3B0, void, SurvivalMollyAltarController_PlayZap_d_51_System_Collections_IEnumerator_Reset, (SurvivalMollyAltarController_PlayZap_d_51 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D770, SurvivalMollyAltarController_PlayZap_d_51_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalMollyAltarController_PlayZap_d_51_System_Collections_IEnumerator_get_Current, (SurvivalMollyAltarController_PlayZap_d_51 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, SurvivalMollyAltarController_PlayMollyZap_d_52__ctor, (SurvivalMollyAltarController_PlayMollyZap_d_52 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SurvivalMollyAltarController_PlayMollyZap_d_52_System_IDisposable_Dispose, (SurvivalMollyAltarController_PlayMollyZap_d_52 * __this, MethodInfo * method)); DO_APP_FUNC(0x0055F400, bool, SurvivalMollyAltarController_PlayMollyZap_d_52_MoveNext, (SurvivalMollyAltarController_PlayMollyZap_d_52 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalMollyAltarController_PlayMollyZap_d_52_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SurvivalMollyAltarController_PlayMollyZap_d_52 * __this, MethodInfo * method)); DO_APP_FUNC(0x00560090, void, SurvivalMollyAltarController_PlayMollyZap_d_52_System_Collections_IEnumerator_Reset, (SurvivalMollyAltarController_PlayMollyZap_d_52 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D768, SurvivalMollyAltarController_PlayMollyZap_d_52_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalMollyAltarController_PlayMollyZap_d_52_System_Collections_IEnumerator_get_Current, (SurvivalMollyAltarController_PlayMollyZap_d_52 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, SurvivalMollyAltarController_FadeInLightbulbs_d_54__ctor, (SurvivalMollyAltarController_FadeInLightbulbs_d_54 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SurvivalMollyAltarController_FadeInLightbulbs_d_54_System_IDisposable_Dispose, (SurvivalMollyAltarController_FadeInLightbulbs_d_54 * __this, MethodInfo * method)); DO_APP_FUNC(0x005600E0, bool, SurvivalMollyAltarController_FadeInLightbulbs_d_54_MoveNext, (SurvivalMollyAltarController_FadeInLightbulbs_d_54 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalMollyAltarController_FadeInLightbulbs_d_54_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SurvivalMollyAltarController_FadeInLightbulbs_d_54 * __this, MethodInfo * method)); DO_APP_FUNC(0x00560740, void, SurvivalMollyAltarController_FadeInLightbulbs_d_54_System_Collections_IEnumerator_Reset, (SurvivalMollyAltarController_FadeInLightbulbs_d_54 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D208C8, SurvivalMollyAltarController_FadeInLightbulbs_d_54_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalMollyAltarController_FadeInLightbulbs_d_54_System_Collections_IEnumerator_get_Current, (SurvivalMollyAltarController_FadeInLightbulbs_d_54 * __this, MethodInfo * method)); DO_APP_FUNC(0x00560790, void, SurvivalObjectBurnController_Awake, (SurvivalObjectBurnController * __this, MethodInfo * method)); DO_APP_FUNC(0x005608E0, void, SurvivalObjectBurnController_Start, (SurvivalObjectBurnController * __this, MethodInfo * method)); @@ -18036,23 +20606,28 @@ DO_APP_FUNC(0x003AE050, void, SurvivalObjectBurnController_FadeOutLight_d_41_Sys DO_APP_FUNC(0x00563740, bool, SurvivalObjectBurnController_FadeOutLight_d_41_MoveNext, (SurvivalObjectBurnController_FadeOutLight_d_41 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalObjectBurnController_FadeOutLight_d_41_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SurvivalObjectBurnController_FadeOutLight_d_41 * __this, MethodInfo * method)); DO_APP_FUNC(0x00563920, void, SurvivalObjectBurnController_FadeOutLight_d_41_System_Collections_IEnumerator_Reset, (SurvivalObjectBurnController_FadeOutLight_d_41 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D20780, SurvivalObjectBurnController_FadeOutLight_d_41_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalObjectBurnController_FadeOutLight_d_41_System_Collections_IEnumerator_get_Current, (SurvivalObjectBurnController_FadeOutLight_d_41 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, SurvivalObjectBurnController_FadeInLight_d_42__ctor, (SurvivalObjectBurnController_FadeInLight_d_42 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SurvivalObjectBurnController_FadeInLight_d_42_System_IDisposable_Dispose, (SurvivalObjectBurnController_FadeInLight_d_42 * __this, MethodInfo * method)); DO_APP_FUNC(0x00563970, bool, SurvivalObjectBurnController_FadeInLight_d_42_MoveNext, (SurvivalObjectBurnController_FadeInLight_d_42 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalObjectBurnController_FadeInLight_d_42_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SurvivalObjectBurnController_FadeInLight_d_42 * __this, MethodInfo * method)); DO_APP_FUNC(0x00563B10, void, SurvivalObjectBurnController_FadeInLight_d_42_System_Collections_IEnumerator_Reset, (SurvivalObjectBurnController_FadeInLight_d_42 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D20770, SurvivalObjectBurnController_FadeInLight_d_42_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalObjectBurnController_FadeInLight_d_42_System_Collections_IEnumerator_get_Current, (SurvivalObjectBurnController_FadeInLight_d_42 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, SurvivalObjectBurnController_DestroyGoat_d_43__ctor, (SurvivalObjectBurnController_DestroyGoat_d_43 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SurvivalObjectBurnController_DestroyGoat_d_43_System_IDisposable_Dispose, (SurvivalObjectBurnController_DestroyGoat_d_43 * __this, MethodInfo * method)); DO_APP_FUNC(0x00563B60, bool, SurvivalObjectBurnController_DestroyGoat_d_43_MoveNext, (SurvivalObjectBurnController_DestroyGoat_d_43 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalObjectBurnController_DestroyGoat_d_43_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SurvivalObjectBurnController_DestroyGoat_d_43 * __this, MethodInfo * method)); DO_APP_FUNC(0x00563D90, void, SurvivalObjectBurnController_DestroyGoat_d_43_System_Collections_IEnumerator_Reset, (SurvivalObjectBurnController_DestroyGoat_d_43 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D20758, SurvivalObjectBurnController_DestroyGoat_d_43_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalObjectBurnController_DestroyGoat_d_43_System_Collections_IEnumerator_get_Current, (SurvivalObjectBurnController_DestroyGoat_d_43 * __this, MethodInfo * method)); DO_APP_FUNC(0x00563DE0, void, SwitchBehaviour_Awake, (SwitchBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00563F00, void, SwitchBehaviour_Attached, (SwitchBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00564160, void, SwitchBehaviour_OnInteractTrigger, (SwitchBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D20728, SwitchBehaviour_OnInteractTrigger__MethodInfo); DO_APP_FUNC(0x00564270, void, SwitchBehaviour_OnSwitch, (SwitchBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D20718, SwitchBehaviour_OnSwitch__MethodInfo); DO_APP_FUNC(0x00564480, void, SwitchBehaviour_OnDestroy, (SwitchBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x005645A0, void, SwitchBehaviour__ctor, (SwitchBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x005645F0, void, TeleportBox_OnTriggerEnter, (TeleportBox * __this, Collider * other, MethodInfo * method)); @@ -18063,6 +20638,7 @@ DO_APP_FUNC(0x005652F0, void, TiltRotation__ctor, (TiltRotation * __this, Method DO_APP_FUNC(0x00565340, void, ObjectSwinger_Awake, (ObjectSwinger * __this, MethodInfo * method)); DO_APP_FUNC(0x00565410, void, ObjectSwinger_Start, (ObjectSwinger * __this, MethodInfo * method)); DO_APP_FUNC(0x005654A0, void, ObjectSwinger_OnGlobalGoatBurnEvent, (ObjectSwinger * __this, int32_t progress, BoltEntity * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D20688, ObjectSwinger_OnGlobalGoatBurnEvent__MethodInfo); DO_APP_FUNC(0x00565500, void, ObjectSwinger_StartSwinging, (ObjectSwinger * __this, MethodInfo * method)); DO_APP_FUNC(0x00565520, void, ObjectSwinger_StopSwinging, (ObjectSwinger * __this, MethodInfo * method)); DO_APP_FUNC(0x00565530, void, ObjectSwinger_StartAudioImmediately, (ObjectSwinger * __this, MethodInfo * method)); @@ -18077,20 +20653,25 @@ DO_APP_FUNC(0x003AE050, void, ObjectSwinger_StopSwingingToStationary_d_29_System DO_APP_FUNC(0x005660D0, bool, ObjectSwinger_StopSwingingToStationary_d_29_MoveNext, (ObjectSwinger_StopSwingingToStationary_d_29 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, ObjectSwinger_StopSwingingToStationary_d_29_System_Collections_Generic_IEnumerator_System_Object__get_Current, (ObjectSwinger_StopSwingingToStationary_d_29 * __this, MethodInfo * method)); DO_APP_FUNC(0x00566330, void, ObjectSwinger_StopSwingingToStationary_d_29_System_Collections_IEnumerator_Reset, (ObjectSwinger_StopSwingingToStationary_d_29 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D20668, ObjectSwinger_StopSwingingToStationary_d_29_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, ObjectSwinger_StopSwingingToStationary_d_29_System_Collections_IEnumerator_get_Current, (ObjectSwinger_StopSwingingToStationary_d_29 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, ObjectSwinger_DecreaseCurrentMaxRotationM_d_31__ctor, (ObjectSwinger_DecreaseCurrentMaxRotationM_d_31 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ObjectSwinger_DecreaseCurrentMaxRotationM_d_31_System_IDisposable_Dispose, (ObjectSwinger_DecreaseCurrentMaxRotationM_d_31 * __this, MethodInfo * method)); DO_APP_FUNC(0x00566380, bool, ObjectSwinger_DecreaseCurrentMaxRotationM_d_31_MoveNext, (ObjectSwinger_DecreaseCurrentMaxRotationM_d_31 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, ObjectSwinger_DecreaseCurrentMaxRotationM_d_31_System_Collections_Generic_IEnumerator_System_Object__get_Current, (ObjectSwinger_DecreaseCurrentMaxRotationM_d_31 * __this, MethodInfo * method)); DO_APP_FUNC(0x005664E0, void, ObjectSwinger_DecreaseCurrentMaxRotationM_d_31_System_Collections_IEnumerator_Reset, (ObjectSwinger_DecreaseCurrentMaxRotationM_d_31 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D20660, ObjectSwinger_DecreaseCurrentMaxRotationM_d_31_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, ObjectSwinger_DecreaseCurrentMaxRotationM_d_31_System_Collections_IEnumerator_get_Current, (ObjectSwinger_DecreaseCurrentMaxRotationM_d_31 * __this, MethodInfo * method)); DO_APP_FUNC(0x00566530, void, SurvivalMatchboxController_Attached, (SurvivalMatchboxController * __this, MethodInfo * method)); DO_APP_FUNC(0x005667A0, void, SurvivalMatchboxController_SetMetadata, (SurvivalMatchboxController * __this, String * metadata, MethodInfo * method)); DO_APP_FUNC(0x005668D0, void, SurvivalMatchboxController_OnMetadata, (SurvivalMatchboxController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D20658, SurvivalMatchboxController_OnMetadata__MethodInfo); DO_APP_FUNC(0x005669A0, void, SurvivalMatchboxController__ctor, (SurvivalMatchboxController * __this, MethodInfo * method)); DO_APP_FUNC(0x00566A00, void, SurvivalRitualBookController_Attached, (SurvivalRitualBookController * __this, MethodInfo * method)); DO_APP_FUNC(0x00566BE0, void, SurvivalRitualBookController_OnMetadata, (SurvivalRitualBookController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D205E8, SurvivalRitualBookController_OnMetadata__MethodInfo); DO_APP_FUNC(0x00566D70, void, SurvivalRitualBookController_OnDisableInteract, (SurvivalRitualBookController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D205F8, SurvivalRitualBookController_OnDisableInteract__MethodInfo); DO_APP_FUNC(0x00567090, IEnumerator *, SurvivalRitualBookController_DelayEnableInteract, (SurvivalRitualBookController * __this, MethodInfo * method)); DO_APP_FUNC(0x00567130, void, SurvivalRitualBookController_SetMetadata, (SurvivalRitualBookController * __this, String * metadata, bool disableInteract, float enableInteractDelay, MethodInfo * method)); DO_APP_FUNC(0x00567340, void, SurvivalRitualBookController__ctor, (SurvivalRitualBookController * __this, MethodInfo * method)); @@ -18099,11 +20680,13 @@ DO_APP_FUNC(0x003AE050, void, SurvivalRitualBookController_DelayEnableInteract_d DO_APP_FUNC(0x00567390, bool, SurvivalRitualBookController_DelayEnableInteract_d_8_MoveNext, (SurvivalRitualBookController_DelayEnableInteract_d_8 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalRitualBookController_DelayEnableInteract_d_8_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SurvivalRitualBookController_DelayEnableInteract_d_8 * __this, MethodInfo * method)); DO_APP_FUNC(0x00567650, void, SurvivalRitualBookController_DelayEnableInteract_d_8_System_Collections_IEnumerator_Reset, (SurvivalRitualBookController_DelayEnableInteract_d_8 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D205A8, SurvivalRitualBookController_DelayEnableInteract_d_8_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalRitualBookController_DelayEnableInteract_d_8_System_Collections_IEnumerator_get_Current, (SurvivalRitualBookController_DelayEnableInteract_d_8 * __this, MethodInfo * method)); DO_APP_FUNC(0x005676A0, void, SurvivalTownAltarController_Awake, (SurvivalTownAltarController * __this, MethodInfo * method)); DO_APP_FUNC(0x00568730, void, SurvivalTownAltarController_Attached, (SurvivalTownAltarController * __this, MethodInfo * method)); DO_APP_FUNC(0x00568A30, void, SurvivalTownAltarController_OnNumObjectsBurnt, (SurvivalTownAltarController * __this, MethodInfo * method)); DO_APP_FUNC(0x00569060, void, SurvivalTownAltarController_OnMetadata, (SurvivalTownAltarController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D20448, SurvivalTownAltarController_OnMetadata__MethodInfo); DO_APP_FUNC(0x00569130, IEnumerator *, SurvivalTownAltarController_SwingBell, (SurvivalTownAltarController * __this, bool bellWasAlreadySwinging, MethodInfo * method)); DO_APP_FUNC(0x005691F0, void, SurvivalTownAltarController_OnActive, (SurvivalTownAltarController * __this, MethodInfo * method)); DO_APP_FUNC(0x005695E0, void, SurvivalTownAltarController_OnGoat, (SurvivalTownAltarController * __this, MethodInfo * method)); @@ -18115,6 +20698,7 @@ DO_APP_FUNC(0x0056A920, void, SurvivalTownAltarController_SpawnLockboxes, (Survi DO_APP_FUNC(0x0056B640, void, SurvivalTownAltarController_SpawnLockboxKeys, (SurvivalTownAltarController * __this, MethodInfo * method)); DO_APP_FUNC(0x0056BAB0, void, SurvivalTownAltarController_PlaceGoat, (SurvivalTownAltarController * __this, InteractObjectRequestEvent * requestEvent, MethodInfo * method)); DO_APP_FUNC(0x0056BC90, void, SurvivalTownAltarController_OnAzazelSpawned, (SurvivalTownAltarController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D204C8, SurvivalTownAltarController_OnAzazelSpawned__MethodInfo); DO_APP_FUNC(0x0056BE80, Transform *, SurvivalTownAltarController_GetPurgatorySpawnPoint, (SurvivalTownAltarController * __this, NolanBehaviour * nolanBehaviour, MethodInfo * method)); DO_APP_FUNC(0x0056C240, void, SurvivalTownAltarController_SpawnPurgatoryGhosts, (SurvivalTownAltarController * __this, MethodInfo * method)); DO_APP_FUNC(0x0056C590, IEnumerator *, SurvivalTownAltarController_SpawnPurgatoryGhostsInternal, (SurvivalTownAltarController * __this, MethodInfo * method)); @@ -18127,42 +20711,56 @@ DO_APP_FUNC(0x0056CC40, void, SurvivalTownAltarController__ctor, (SurvivalTownAl DO_APP_FUNC(0x0056CFB0, void, SurvivalTownAltarController_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SurvivalTownAltarController_c__ctor, (SurvivalTownAltarController_c * __this, MethodInfo * method)); DO_APP_FUNC(0x0056D060, LockboxSpawnPoint *, SurvivalTownAltarController_c__Awake_b__23_0, (SurvivalTownAltarController_c * __this, GameObject * go, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D204B8, SurvivalTownAltarController_c__Awake_b__23_0__MethodInfo); DO_APP_FUNC(0x0056D0B0, KeySpawnPoint *, SurvivalTownAltarController_c__SpawnLockboxes_b__34_1, (SurvivalTownAltarController_c * __this, GameObject * go, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D201B8, SurvivalTownAltarController_c__SpawnLockboxes_b__34_1__MethodInfo); DO_APP_FUNC(0x003AE050, void, SurvivalTownAltarController_c_DisplayClass25_0__ctor, (SurvivalTownAltarController_c_DisplayClass25_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0056D100, void, SurvivalTownAltarController_c_DisplayClass25_0__OnNumObjectsBurnt_b__0, (SurvivalTownAltarController_c_DisplayClass25_0 * __this, float val, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D20418, SurvivalTownAltarController_c_DisplayClass25_0__OnNumObjectsBurnt_b__0__MethodInfo); DO_APP_FUNC(0x0056D200, void, SurvivalTownAltarController_c_DisplayClass25_0__OnNumObjectsBurnt_b__1, (SurvivalTownAltarController_c_DisplayClass25_0 * __this, float val, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D20408, SurvivalTownAltarController_c_DisplayClass25_0__OnNumObjectsBurnt_b__1__MethodInfo); DO_APP_FUNC(0x003BCD60, void, SurvivalTownAltarController_SwingBell_d_27__ctor, (SurvivalTownAltarController_SwingBell_d_27 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SurvivalTownAltarController_SwingBell_d_27_System_IDisposable_Dispose, (SurvivalTownAltarController_SwingBell_d_27 * __this, MethodInfo * method)); DO_APP_FUNC(0x0056D2D0, bool, SurvivalTownAltarController_SwingBell_d_27_MoveNext, (SurvivalTownAltarController_SwingBell_d_27 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalTownAltarController_SwingBell_d_27_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SurvivalTownAltarController_SwingBell_d_27 * __this, MethodInfo * method)); DO_APP_FUNC(0x0056D5F0, void, SurvivalTownAltarController_SwingBell_d_27_System_Collections_IEnumerator_Reset, (SurvivalTownAltarController_SwingBell_d_27 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D20108, SurvivalTownAltarController_SwingBell_d_27_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalTownAltarController_SwingBell_d_27_System_Collections_IEnumerator_get_Current, (SurvivalTownAltarController_SwingBell_d_27 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SurvivalTownAltarController_c_DisplayClass32_0__ctor, (SurvivalTownAltarController_c_DisplayClass32_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0056D640, void, SurvivalTownAltarController_c_DisplayClass32_0__ActivateLights_b__3, (SurvivalTownAltarController_c_DisplayClass32_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D20308, SurvivalTownAltarController_c_DisplayClass32_0__ActivateLights_b__3__MethodInfo); DO_APP_FUNC(0x003AE050, void, SurvivalTownAltarController_c_DisplayClass32_1__ctor, (SurvivalTownAltarController_c_DisplayClass32_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x0056D790, void, SurvivalTownAltarController_c_DisplayClass32_1__ActivateLights_b__0, (SurvivalTownAltarController_c_DisplayClass32_1 * __this, float val, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D202E8, SurvivalTownAltarController_c_DisplayClass32_1__ActivateLights_b__0__MethodInfo); DO_APP_FUNC(0x0056D8C0, void, SurvivalTownAltarController_c_DisplayClass32_1__ActivateLights_b__1, (SurvivalTownAltarController_c_DisplayClass32_1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D202D8, SurvivalTownAltarController_c_DisplayClass32_1__ActivateLights_b__1__MethodInfo); DO_APP_FUNC(0x0056DA10, void, SurvivalTownAltarController_c_DisplayClass32_1__ActivateLights_b__2, (SurvivalTownAltarController_c_DisplayClass32_1 * __this, float val, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D202D0, SurvivalTownAltarController_c_DisplayClass32_1__ActivateLights_b__2__MethodInfo); DO_APP_FUNC(0x003AE050, void, SurvivalTownAltarController_c_DisplayClass33_0__ctor, (SurvivalTownAltarController_c_DisplayClass33_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0056DB40, bool, SurvivalTownAltarController_c_DisplayClass33_0__GetLocation_b__0, (SurvivalTownAltarController_c_DisplayClass33_0 * __this, TownLocation * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D20250, SurvivalTownAltarController_c_DisplayClass33_0__GetLocation_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, SurvivalTownAltarController_c_DisplayClass34_0__ctor, (SurvivalTownAltarController_c_DisplayClass34_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00542450, int32_t, SurvivalTownAltarController_c_DisplayClass34_0__SpawnLockboxes_b__0, (SurvivalTownAltarController_c_DisplayClass34_0 * __this, GameObject * spawnPoint, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D201B0, SurvivalTownAltarController_c_DisplayClass34_0__SpawnLockboxes_b__0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, SurvivalTownAltarController_SpawnPurgatoryGhostsInternal_d_40__ctor, (SurvivalTownAltarController_SpawnPurgatoryGhostsInternal_d_40 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SurvivalTownAltarController_SpawnPurgatoryGhostsInternal_d_40_System_IDisposable_Dispose, (SurvivalTownAltarController_SpawnPurgatoryGhostsInternal_d_40 * __this, MethodInfo * method)); DO_APP_FUNC(0x0056DB60, bool, SurvivalTownAltarController_SpawnPurgatoryGhostsInternal_d_40_MoveNext, (SurvivalTownAltarController_SpawnPurgatoryGhostsInternal_d_40 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalTownAltarController_SpawnPurgatoryGhostsInternal_d_40_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SurvivalTownAltarController_SpawnPurgatoryGhostsInternal_d_40 * __this, MethodInfo * method)); DO_APP_FUNC(0x0056E300, void, SurvivalTownAltarController_SpawnPurgatoryGhostsInternal_d_40_System_Collections_IEnumerator_Reset, (SurvivalTownAltarController_SpawnPurgatoryGhostsInternal_d_40 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D200F8, SurvivalTownAltarController_SpawnPurgatoryGhostsInternal_d_40_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalTownAltarController_SpawnPurgatoryGhostsInternal_d_40_System_Collections_IEnumerator_get_Current, (SurvivalTownAltarController_SpawnPurgatoryGhostsInternal_d_40 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, SurvivalTownAltarController_TeleportPlayerBack_d_42__ctor, (SurvivalTownAltarController_TeleportPlayerBack_d_42 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SurvivalTownAltarController_TeleportPlayerBack_d_42_System_IDisposable_Dispose, (SurvivalTownAltarController_TeleportPlayerBack_d_42 * __this, MethodInfo * method)); DO_APP_FUNC(0x0056E350, bool, SurvivalTownAltarController_TeleportPlayerBack_d_42_MoveNext, (SurvivalTownAltarController_TeleportPlayerBack_d_42 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalTownAltarController_TeleportPlayerBack_d_42_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SurvivalTownAltarController_TeleportPlayerBack_d_42 * __this, MethodInfo * method)); DO_APP_FUNC(0x0056EEC0, void, SurvivalTownAltarController_TeleportPlayerBack_d_42_System_Collections_IEnumerator_Reset, (SurvivalTownAltarController_TeleportPlayerBack_d_42 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D200E8, SurvivalTownAltarController_TeleportPlayerBack_d_42_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalTownAltarController_TeleportPlayerBack_d_42_System_Collections_IEnumerator_get_Current, (SurvivalTownAltarController_TeleportPlayerBack_d_42 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TownLocation__ctor, (TownLocation * __this, MethodInfo * method)); DO_APP_FUNC(0x0056EF10, void, TownIntro_Attached, (TownIntro * __this, MethodInfo * method)); DO_APP_FUNC(0x0056F0E0, IEnumerator *, TownIntro_ResetRecentlyAttached, (TownIntro * __this, MethodInfo * method)); DO_APP_FUNC(0x0056F180, void, TownIntro_OnStep, (TownIntro * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D200E0, TownIntro_OnStep__MethodInfo); DO_APP_FUNC(0x0056F190, void, TownIntro_OnStepInternal, (TownIntro * __this, bool isFromAttached, MethodInfo * method)); DO_APP_FUNC(0x0056FC50, void, TownIntro_StopPianoAudio, (TownIntro * __this, MethodInfo * method)); DO_APP_FUNC(0x0056FD10, void, TownIntro_StopAllDrones, (TownIntro * __this, MethodInfo * method)); @@ -18171,17 +20769,25 @@ DO_APP_FUNC(0x005701F0, void, TownIntro_StartIntro, (TownIntro * __this, MethodI DO_APP_FUNC(0x00570850, void, TownIntro_EndIntro, (TownIntro * __this, MethodInfo * method)); DO_APP_FUNC(0x00570A60, void, TownIntro_LockChurch, (TownIntro * __this, MethodInfo * method)); DO_APP_FUNC(0x00570CD0, void, TownIntro_SaloonPianoStopTriggerEntered, (TownIntro * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D20080, TownIntro_SaloonPianoStopTriggerEntered__MethodInfo); DO_APP_FUNC(0x00570DE0, IEnumerator *, TownIntro_StopPlayingPiano, (TownIntro * __this, MethodInfo * method)); DO_APP_FUNC(0x00570E80, IEnumerator *, TownIntro_WaitToPlayThud, (TownIntro * __this, MethodInfo * method)); DO_APP_FUNC(0x00570F20, void, TownIntro_PlayThud, (TownIntro * __this, MethodInfo * method)); DO_APP_FUNC(0x00570FF0, void, TownIntro_SaloonGhostMoanTriggerEntered, (TownIntro * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D20088, TownIntro_SaloonGhostMoanTriggerEntered__MethodInfo); DO_APP_FUNC(0x00571100, void, TownIntro_SaloonFlickerTriggerEntered, (TownIntro * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D20098, TownIntro_SaloonFlickerTriggerEntered__MethodInfo); DO_APP_FUNC(0x00571210, void, TownIntro_SaloonDoorOpened, (TownIntro * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D200A0, TownIntro_SaloonDoorOpened__MethodInfo); DO_APP_FUNC(0x00571370, void, TownIntro_GhostFlashlightsOffTriggerEntered, (TownIntro * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D200A8, TownIntro_GhostFlashlightsOffTriggerEntered__MethodInfo); DO_APP_FUNC(0x00571480, void, TownIntro_SaloonGhostJumpScareTriggerEntered, (TownIntro * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D20090, TownIntro_SaloonGhostJumpScareTriggerEntered__MethodInfo); DO_APP_FUNC(0x00571590, IEnumerator *, TownIntro_SaloonGhostJumpScare, (TownIntro * __this, bool isFromAttached, MethodInfo * method)); DO_APP_FUNC(0x00571650, void, TownIntro_ChurchFlickerTriggerEntered, (TownIntro * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D200B8, TownIntro_ChurchFlickerTriggerEntered__MethodInfo); DO_APP_FUNC(0x00571760, void, TownIntro_ChurchTriggerEntered, (TownIntro * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D200B0, TownIntro_ChurchTriggerEntered__MethodInfo); DO_APP_FUNC(0x00571870, IEnumerator *, TownIntro_ChurchIntro, (TownIntro * __this, MethodInfo * method)); DO_APP_FUNC(0x00571910, void, TownIntro_OnDestroy, (TownIntro * __this, MethodInfo * method)); DO_APP_FUNC(0x005719F0, void, TownIntro__ctor, (TownIntro * __this, MethodInfo * method)); @@ -18190,30 +20796,35 @@ DO_APP_FUNC(0x003AE050, void, TownIntro_ResetRecentlyAttached_d_49_System_IDispo DO_APP_FUNC(0x00571A40, bool, TownIntro_ResetRecentlyAttached_d_49_MoveNext, (TownIntro_ResetRecentlyAttached_d_49 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, TownIntro_ResetRecentlyAttached_d_49_System_Collections_Generic_IEnumerator_System_Object__get_Current, (TownIntro_ResetRecentlyAttached_d_49 * __this, MethodInfo * method)); DO_APP_FUNC(0x00571B20, void, TownIntro_ResetRecentlyAttached_d_49_System_Collections_IEnumerator_Reset, (TownIntro_ResetRecentlyAttached_d_49 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D20048, TownIntro_ResetRecentlyAttached_d_49_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, TownIntro_ResetRecentlyAttached_d_49_System_Collections_IEnumerator_get_Current, (TownIntro_ResetRecentlyAttached_d_49 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, TownIntro_StopPlayingPiano_d_59__ctor, (TownIntro_StopPlayingPiano_d_59 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TownIntro_StopPlayingPiano_d_59_System_IDisposable_Dispose, (TownIntro_StopPlayingPiano_d_59 * __this, MethodInfo * method)); DO_APP_FUNC(0x00571B70, bool, TownIntro_StopPlayingPiano_d_59_MoveNext, (TownIntro_StopPlayingPiano_d_59 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, TownIntro_StopPlayingPiano_d_59_System_Collections_Generic_IEnumerator_System_Object__get_Current, (TownIntro_StopPlayingPiano_d_59 * __this, MethodInfo * method)); DO_APP_FUNC(0x00571C70, void, TownIntro_StopPlayingPiano_d_59_System_Collections_IEnumerator_Reset, (TownIntro_StopPlayingPiano_d_59 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D20040, TownIntro_StopPlayingPiano_d_59_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, TownIntro_StopPlayingPiano_d_59_System_Collections_IEnumerator_get_Current, (TownIntro_StopPlayingPiano_d_59 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, TownIntro_WaitToPlayThud_d_60__ctor, (TownIntro_WaitToPlayThud_d_60 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TownIntro_WaitToPlayThud_d_60_System_IDisposable_Dispose, (TownIntro_WaitToPlayThud_d_60 * __this, MethodInfo * method)); DO_APP_FUNC(0x00571CC0, bool, TownIntro_WaitToPlayThud_d_60_MoveNext, (TownIntro_WaitToPlayThud_d_60 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, TownIntro_WaitToPlayThud_d_60_System_Collections_Generic_IEnumerator_System_Object__get_Current, (TownIntro_WaitToPlayThud_d_60 * __this, MethodInfo * method)); DO_APP_FUNC(0x00571E80, void, TownIntro_WaitToPlayThud_d_60_System_Collections_IEnumerator_Reset, (TownIntro_WaitToPlayThud_d_60 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D20038, TownIntro_WaitToPlayThud_d_60_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, TownIntro_WaitToPlayThud_d_60_System_Collections_IEnumerator_get_Current, (TownIntro_WaitToPlayThud_d_60 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, TownIntro_SaloonGhostJumpScare_d_67__ctor, (TownIntro_SaloonGhostJumpScare_d_67 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TownIntro_SaloonGhostJumpScare_d_67_System_IDisposable_Dispose, (TownIntro_SaloonGhostJumpScare_d_67 * __this, MethodInfo * method)); DO_APP_FUNC(0x00571ED0, bool, TownIntro_SaloonGhostJumpScare_d_67_MoveNext, (TownIntro_SaloonGhostJumpScare_d_67 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, TownIntro_SaloonGhostJumpScare_d_67_System_Collections_Generic_IEnumerator_System_Object__get_Current, (TownIntro_SaloonGhostJumpScare_d_67 * __this, MethodInfo * method)); DO_APP_FUNC(0x005725D0, void, TownIntro_SaloonGhostJumpScare_d_67_System_Collections_IEnumerator_Reset, (TownIntro_SaloonGhostJumpScare_d_67 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D20030, TownIntro_SaloonGhostJumpScare_d_67_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, TownIntro_SaloonGhostJumpScare_d_67_System_Collections_IEnumerator_get_Current, (TownIntro_SaloonGhostJumpScare_d_67 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, TownIntro_ChurchIntro_d_70__ctor, (TownIntro_ChurchIntro_d_70 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TownIntro_ChurchIntro_d_70_System_IDisposable_Dispose, (TownIntro_ChurchIntro_d_70 * __this, MethodInfo * method)); DO_APP_FUNC(0x00572620, bool, TownIntro_ChurchIntro_d_70_MoveNext, (TownIntro_ChurchIntro_d_70 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, TownIntro_ChurchIntro_d_70_System_Collections_Generic_IEnumerator_System_Object__get_Current, (TownIntro_ChurchIntro_d_70 * __this, MethodInfo * method)); DO_APP_FUNC(0x00572B40, void, TownIntro_ChurchIntro_d_70_System_Collections_IEnumerator_Reset, (TownIntro_ChurchIntro_d_70 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D20028, TownIntro_ChurchIntro_d_70_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, TownIntro_ChurchIntro_d_70_System_Collections_IEnumerator_get_Current, (TownIntro_ChurchIntro_d_70 * __this, MethodInfo * method)); DO_APP_FUNC(0x00572B90, void, TownMatchboxRenderer_SetMetadata, (TownMatchboxRenderer * __this, String * item, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, TownMatchboxRenderer__ctor, (TownMatchboxRenderer * __this, MethodInfo * method)); @@ -18221,9 +20832,12 @@ DO_APP_FUNC(0x00572CE0, void, TownPentagramController_Awake, (TownPentagramContr DO_APP_FUNC(0x00572E90, void, TownPentagramController_Start, (TownPentagramController * __this, MethodInfo * method)); DO_APP_FUNC(0x00572F10, void, TownPentagramController_Attached, (TownPentagramController * __this, MethodInfo * method)); DO_APP_FUNC(0x005732C0, void, TownPentagramController_OnState, (TownPentagramController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FFF8, TownPentagramController_OnState__MethodInfo); DO_APP_FUNC(0x00573B00, IEnumerator *, TownPentagramController_PlayCompleteEffects, (TownPentagramController * __this, MethodInfo * method)); DO_APP_FUNC(0x00573BA0, void, TownPentagramController_OnCandles, (TownPentagramController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D20000, TownPentagramController_OnCandles__MethodInfo); DO_APP_FUNC(0x00573F50, void, TownPentagramController_OnType, (TownPentagramController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FFF0, TownPentagramController_OnType__MethodInfo); DO_APP_FUNC(0x00574180, void, TownPentagramController_Activate, (TownPentagramController * __this, MethodInfo * method)); DO_APP_FUNC(0x00574190, void, TownPentagramController_SetState, (TownPentagramController * __this, TownPentagramController_PentagramState__Enum pentagramState, MethodInfo * method)); DO_APP_FUNC(0x00574380, void, TownPentagramController_SetLocation, (TownPentagramController * __this, int32_t type, MethodInfo * method)); @@ -18237,22 +20851,30 @@ DO_APP_FUNC(0x005751A0, void, TownPentagramController_PlaceRitualBook, (TownPent DO_APP_FUNC(0x00575500, IEnumerator *, TownPentagramController_ActivateBook, (TownPentagramController * __this, SurvivalRitualBookController * bookController, String * carryObjectName, MethodInfo * method)); DO_APP_FUNC(0x00575670, void, TownPentagramController__ctor, (TownPentagramController * __this, MethodInfo * method)); DO_APP_FUNC(0x005756E0, void, TownPentagramController__OnState_b__24_0, (TownPentagramController * __this, float val, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FFC0, TownPentagramController__OnState_b__24_0__MethodInfo); DO_APP_FUNC(0x005757A0, void, TownPentagramController__OnState_b__24_1, (TownPentagramController * __this, float val, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FFB8, TownPentagramController__OnState_b__24_1__MethodInfo); DO_APP_FUNC(0x00575810, void, TownPentagramController__PlayCompleteEffects_b__25_0, (TownPentagramController * __this, float val, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FF78, TownPentagramController__PlayCompleteEffects_b__25_0__MethodInfo); DO_APP_FUNC(0x005757A0, void, TownPentagramController__PlayCompleteEffects_b__25_1, (TownPentagramController * __this, float val, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FF70, TownPentagramController__PlayCompleteEffects_b__25_1__MethodInfo); DO_APP_FUNC(0x005757A0, void, TownPentagramController__PlayCompleteEffects_b__25_2, (TownPentagramController * __this, float val, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FF68, TownPentagramController__PlayCompleteEffects_b__25_2__MethodInfo); DO_APP_FUNC(0x005759A0, void, TownPentagramController__PlayCompleteEffects_b__25_3, (TownPentagramController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FF60, TownPentagramController__PlayCompleteEffects_b__25_3__MethodInfo); DO_APP_FUNC(0x003BCD60, void, TownPentagramController_PlayCompleteEffects_d_25__ctor, (TownPentagramController_PlayCompleteEffects_d_25 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TownPentagramController_PlayCompleteEffects_d_25_System_IDisposable_Dispose, (TownPentagramController_PlayCompleteEffects_d_25 * __this, MethodInfo * method)); DO_APP_FUNC(0x00575A60, bool, TownPentagramController_PlayCompleteEffects_d_25_MoveNext, (TownPentagramController_PlayCompleteEffects_d_25 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, TownPentagramController_PlayCompleteEffects_d_25_System_Collections_Generic_IEnumerator_System_Object__get_Current, (TownPentagramController_PlayCompleteEffects_d_25 * __this, MethodInfo * method)); DO_APP_FUNC(0x00576140, void, TownPentagramController_PlayCompleteEffects_d_25_System_Collections_IEnumerator_Reset, (TownPentagramController_PlayCompleteEffects_d_25 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FF58, TownPentagramController_PlayCompleteEffects_d_25_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, TownPentagramController_PlayCompleteEffects_d_25_System_Collections_IEnumerator_get_Current, (TownPentagramController_PlayCompleteEffects_d_25 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, TownPentagramController_ActivateBook_d_38__ctor, (TownPentagramController_ActivateBook_d_38 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TownPentagramController_ActivateBook_d_38_System_IDisposable_Dispose, (TownPentagramController_ActivateBook_d_38 * __this, MethodInfo * method)); DO_APP_FUNC(0x00576190, bool, TownPentagramController_ActivateBook_d_38_MoveNext, (TownPentagramController_ActivateBook_d_38 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, TownPentagramController_ActivateBook_d_38_System_Collections_Generic_IEnumerator_System_Object__get_Current, (TownPentagramController_ActivateBook_d_38 * __this, MethodInfo * method)); DO_APP_FUNC(0x005764D0, void, TownPentagramController_ActivateBook_d_38_System_Collections_IEnumerator_Reset, (TownPentagramController_ActivateBook_d_38 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FF50, TownPentagramController_ActivateBook_d_38_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, TownPentagramController_ActivateBook_d_38_System_Collections_IEnumerator_get_Current, (TownPentagramController_ActivateBook_d_38 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TownPentagramCandle__ctor, (TownPentagramCandle * __this, MethodInfo * method)); DO_APP_FUNC(0x00576520, void, TownRitualBookRenderer_Awake, (TownRitualBookRenderer * __this, MethodInfo * method)); @@ -18264,20 +20886,25 @@ DO_APP_FUNC(0x00578050, IEnumerator *, TownRitualBookRenderer_DissolveInternal, DO_APP_FUNC(0x005780F0, void, TownRitualBookRenderer_ResetDissolve, (TownRitualBookRenderer * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, TownRitualBookRenderer__ctor, (TownRitualBookRenderer * __this, MethodInfo * method)); DO_APP_FUNC(0x00578230, void, TownRitualBookRenderer__SetState_b__19_0, (TownRitualBookRenderer * __this, float val, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FF38, TownRitualBookRenderer__SetState_b__19_0__MethodInfo); DO_APP_FUNC(0x00578290, void, TownRitualBookRenderer__SetState_b__19_1, (TownRitualBookRenderer * __this, float val, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FF30, TownRitualBookRenderer__SetState_b__19_1__MethodInfo); DO_APP_FUNC(0x003BCD60, void, TownRitualBookRenderer_DissolveInternal_d_21__ctor, (TownRitualBookRenderer_DissolveInternal_d_21 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TownRitualBookRenderer_DissolveInternal_d_21_System_IDisposable_Dispose, (TownRitualBookRenderer_DissolveInternal_d_21 * __this, MethodInfo * method)); DO_APP_FUNC(0x00578300, bool, TownRitualBookRenderer_DissolveInternal_d_21_MoveNext, (TownRitualBookRenderer_DissolveInternal_d_21 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, TownRitualBookRenderer_DissolveInternal_d_21_System_Collections_Generic_IEnumerator_System_Object__get_Current, (TownRitualBookRenderer_DissolveInternal_d_21 * __this, MethodInfo * method)); DO_APP_FUNC(0x00578610, void, TownRitualBookRenderer_DissolveInternal_d_21_System_Collections_IEnumerator_Reset, (TownRitualBookRenderer_DissolveInternal_d_21 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FF18, TownRitualBookRenderer_DissolveInternal_d_21_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, TownRitualBookRenderer_DissolveInternal_d_21_System_Collections_IEnumerator_get_Current, (TownRitualBookRenderer_DissolveInternal_d_21 * __this, MethodInfo * method)); DO_APP_FUNC(0x00578660, void, TownSaloonDoorCollision_Awake, (TownSaloonDoorCollision * __this, MethodInfo * method)); DO_APP_FUNC(0x00578890, void, TownSaloonDoorCollision_FixedUpdate, (TownSaloonDoorCollision * __this, MethodInfo * method)); DO_APP_FUNC(0x00578E00, void, TownSaloonDoorCollision__ctor, (TownSaloonDoorCollision * __this, MethodInfo * method)); DO_APP_FUNC(0x00578ED0, void, TrashCanBehaviour_Awake, (TrashCanBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x005796D0, void, TrashCanBehaviour_OnSingleInteract, (TrashCanBehaviour * __this, String * name, GameObject * character, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FF00, TrashCanBehaviour_OnSingleInteract__MethodInfo); DO_APP_FUNC(0x00579C70, void, TrashCanBehaviour_Attached, (TrashCanBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00579D90, void, TrashCanBehaviour_OnSwitch, (TrashCanBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FEE0, TrashCanBehaviour_OnSwitch__MethodInfo); DO_APP_FUNC(0x0057A4A0, void, TrashCanBehaviour_LidOff, (TrashCanBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0057A610, IEnumerator *, TrashCanBehaviour_DisablePhysics, (TrashCanBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0057A6B0, IEnumerator *, TrashCanBehaviour_FadeAndDestroy, (TrashCanBehaviour * __this, MethodInfo * method)); @@ -18289,18 +20916,21 @@ DO_APP_FUNC(0x003AE050, void, TrashCanBehaviour_DisablePhysics_d_27_System_IDisp DO_APP_FUNC(0x0057AAC0, bool, TrashCanBehaviour_DisablePhysics_d_27_MoveNext, (TrashCanBehaviour_DisablePhysics_d_27 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, TrashCanBehaviour_DisablePhysics_d_27_System_Collections_Generic_IEnumerator_System_Object__get_Current, (TrashCanBehaviour_DisablePhysics_d_27 * __this, MethodInfo * method)); DO_APP_FUNC(0x0057ACC0, void, TrashCanBehaviour_DisablePhysics_d_27_System_Collections_IEnumerator_Reset, (TrashCanBehaviour_DisablePhysics_d_27 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FEB8, TrashCanBehaviour_DisablePhysics_d_27_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, TrashCanBehaviour_DisablePhysics_d_27_System_Collections_IEnumerator_get_Current, (TrashCanBehaviour_DisablePhysics_d_27 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, TrashCanBehaviour_FadeAndDestroy_d_28__ctor, (TrashCanBehaviour_FadeAndDestroy_d_28 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TrashCanBehaviour_FadeAndDestroy_d_28_System_IDisposable_Dispose, (TrashCanBehaviour_FadeAndDestroy_d_28 * __this, MethodInfo * method)); DO_APP_FUNC(0x0057AD10, bool, TrashCanBehaviour_FadeAndDestroy_d_28_MoveNext, (TrashCanBehaviour_FadeAndDestroy_d_28 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, TrashCanBehaviour_FadeAndDestroy_d_28_System_Collections_Generic_IEnumerator_System_Object__get_Current, (TrashCanBehaviour_FadeAndDestroy_d_28 * __this, MethodInfo * method)); DO_APP_FUNC(0x0057B720, void, TrashCanBehaviour_FadeAndDestroy_d_28_System_Collections_IEnumerator_Reset, (TrashCanBehaviour_FadeAndDestroy_d_28 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FEB0, TrashCanBehaviour_FadeAndDestroy_d_28_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, TrashCanBehaviour_FadeAndDestroy_d_28_System_Collections_IEnumerator_get_Current, (TrashCanBehaviour_FadeAndDestroy_d_28 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, TrashCanBehaviour_SpawnEscapedRats_d_30__ctor, (TrashCanBehaviour_SpawnEscapedRats_d_30 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TrashCanBehaviour_SpawnEscapedRats_d_30_System_IDisposable_Dispose, (TrashCanBehaviour_SpawnEscapedRats_d_30 * __this, MethodInfo * method)); DO_APP_FUNC(0x0057B770, bool, TrashCanBehaviour_SpawnEscapedRats_d_30_MoveNext, (TrashCanBehaviour_SpawnEscapedRats_d_30 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, TrashCanBehaviour_SpawnEscapedRats_d_30_System_Collections_Generic_IEnumerator_System_Object__get_Current, (TrashCanBehaviour_SpawnEscapedRats_d_30 * __this, MethodInfo * method)); DO_APP_FUNC(0x0057C300, void, TrashCanBehaviour_SpawnEscapedRats_d_30_System_Collections_IEnumerator_Reset, (TrashCanBehaviour_SpawnEscapedRats_d_30 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FE88, TrashCanBehaviour_SpawnEscapedRats_d_30_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, TrashCanBehaviour_SpawnEscapedRats_d_30_System_Collections_IEnumerator_get_Current, (TrashCanBehaviour_SpawnEscapedRats_d_30 * __this, MethodInfo * method)); DO_APP_FUNC(0x0057C350, void, TrashCanGraphUpdate_Awake, (TrashCanGraphUpdate * __this, MethodInfo * method)); DO_APP_FUNC(0x0057C5A0, void, TrashCanGraphUpdate_Start, (TrashCanGraphUpdate * __this, MethodInfo * method)); @@ -18312,22 +20942,27 @@ DO_APP_FUNC(0x0057CBA0, void, TriggerStairsCrawlState_Awake, (TriggerStairsCrawl DO_APP_FUNC(0x0057CD10, void, TriggerStairsCrawlState_OnTriggerEnter, (TriggerStairsCrawlState * __this, Collider * collider, MethodInfo * method)); DO_APP_FUNC(0x0057CEA0, void, TriggerStairsCrawlState_OnTriggerExit, (TriggerStairsCrawlState * __this, Collider * collider, MethodInfo * method)); DO_APP_FUNC(0x0057D040, void, TriggerStairsCrawlState_OnKnockoutEvent, (TriggerStairsCrawlState * __this, BoltEntity * killedBy, BoltEntity * player, bool usingPoison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FE70, TriggerStairsCrawlState_OnKnockoutEvent__MethodInfo); DO_APP_FUNC(0x0057D290, void, TriggerStairsCrawlState_OnReviveEvent, (TriggerStairsCrawlState * __this, BoltEntity * player, BoltEntity * reviver, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FE68, TriggerStairsCrawlState_OnReviveEvent__MethodInfo); DO_APP_FUNC(0x0057D4E0, void, TriggerStairsCrawlState_OnDestroy, (TriggerStairsCrawlState * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, TriggerStairsCrawlState__ctor, (TriggerStairsCrawlState * __this, MethodInfo * method)); DO_APP_FUNC(0x0057D650, void, TruckShutterBehaviour_Awake, (TruckShutterBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0057D770, void, TruckShutterBehaviour_Attached, (TruckShutterBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0057DC10, IEnumerator *, TruckShutterBehaviour_GetLocalCharacterLocomotion, (TruckShutterBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0057DCB0, void, TruckShutterBehaviour_OnOpen, (TruckShutterBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FE58, TruckShutterBehaviour_OnOpen__MethodInfo); DO_APP_FUNC(0x0057DEF0, void, TruckShutterBehaviour__ctor, (TruckShutterBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, TruckShutterBehaviour_GetLocalCharacterLocomotion_d_10__ctor, (TruckShutterBehaviour_GetLocalCharacterLocomotion_d_10 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TruckShutterBehaviour_GetLocalCharacterLocomotion_d_10_System_IDisposable_Dispose, (TruckShutterBehaviour_GetLocalCharacterLocomotion_d_10 * __this, MethodInfo * method)); DO_APP_FUNC(0x0057DF40, bool, TruckShutterBehaviour_GetLocalCharacterLocomotion_d_10_MoveNext, (TruckShutterBehaviour_GetLocalCharacterLocomotion_d_10 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, TruckShutterBehaviour_GetLocalCharacterLocomotion_d_10_System_Collections_Generic_IEnumerator_System_Object__get_Current, (TruckShutterBehaviour_GetLocalCharacterLocomotion_d_10 * __this, MethodInfo * method)); DO_APP_FUNC(0x0057E450, void, TruckShutterBehaviour_GetLocalCharacterLocomotion_d_10_System_Collections_IEnumerator_Reset, (TruckShutterBehaviour_GetLocalCharacterLocomotion_d_10 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FE48, TruckShutterBehaviour_GetLocalCharacterLocomotion_d_10_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, TruckShutterBehaviour_GetLocalCharacterLocomotion_d_10_System_Collections_IEnumerator_get_Current, (TruckShutterBehaviour_GetLocalCharacterLocomotion_d_10 * __this, MethodInfo * method)); DO_APP_FUNC(0x0057E4A0, void, ControllerGlyphHeldItemBind_Initialize, (ControllerGlyphHeldItemBind * __this, String * actionName, MethodInfo * method)); DO_APP_FUNC(0x0057E6F0, void, ControllerGlyphHeldItemBind_OnLastActiveControllerChanged, (ControllerGlyphHeldItemBind * __this, Controller * controller, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FE38, ControllerGlyphHeldItemBind_OnLastActiveControllerChanged__MethodInfo); DO_APP_FUNC(0x0057E9D0, void, ControllerGlyphHeldItemBind_HideGlyph, (ControllerGlyphHeldItemBind * __this, MethodInfo * method)); DO_APP_FUNC(0x0057EAE0, void, ControllerGlyphHeldItemBind_Destroy, (ControllerGlyphHeldItemBind * __this, MethodInfo * method)); DO_APP_FUNC(0x0057ECB0, void, ControllerGlyphHeldItemBind_OnDestroy, (ControllerGlyphHeldItemBind * __this, MethodInfo * method)); @@ -18336,14 +20971,15 @@ DO_APP_FUNC(0x0057EDB0, void, ControllerGlyphKeyBinding_TrySetGlyph, (Controller DO_APP_FUNC(0x003AE000, void, ControllerGlyphKeyBinding__ctor, (ControllerGlyphKeyBinding * __this, MethodInfo * method)); DO_APP_FUNC(0x0057F3A0, ControllerGlyphManager *, ControllerGlyphManager_get_Instance, (MethodInfo * method)); DO_APP_FUNC(0x0057F3E0, void, ControllerGlyphManager_Awake, (ControllerGlyphManager * __this, MethodInfo * method)); -DO_APP_FUNC(0x0057F8E0, Sprite *, ControllerGlyphManager_GetGlyph, (Guid joystickGuid, int32_t elementIdentifierId, AxisRange__Enum axisRange, Color tint, MethodInfo * method)); +DO_APP_FUNC(0x0057F8E0, Sprite *, ControllerGlyphManager_GetGlyph, (Guid joystickGuid, int32_t elementIdentifierId, AxisRange__Enum axisRange, Color * tint, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, ControllerGlyphManager__ctor, (ControllerGlyphManager * __this, MethodInfo * method)); -DO_APP_FUNC(0x0057FD70, Sprite *, ControllerGlyphManager_ControllerEntry_GetGlyph, (ControllerGlyphManager_ControllerEntry * __this, int32_t elementIdentifierId, AxisRange__Enum axisRange, Color tint, MethodInfo * method)); +DO_APP_FUNC(0x0057FD70, Sprite *, ControllerGlyphManager_ControllerEntry_GetGlyph, (ControllerGlyphManager_ControllerEntry * __this, int32_t elementIdentifierId, AxisRange__Enum axisRange, Color * tint, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ControllerGlyphManager_ControllerEntry__ctor, (ControllerGlyphManager_ControllerEntry * __this, MethodInfo * method)); -DO_APP_FUNC(0x0057FE20, Sprite *, ControllerGlyphManager_GlyphEntry_GetGlyph, (ControllerGlyphManager_GlyphEntry * __this, AxisRange__Enum axisRange, Color tint, MethodInfo * method)); +DO_APP_FUNC(0x0057FE20, Sprite *, ControllerGlyphManager_GlyphEntry_GetGlyph, (ControllerGlyphManager_GlyphEntry * __this, AxisRange__Enum axisRange, Color * tint, MethodInfo * method)); DO_APP_FUNC(0x00580050, void, ControllerGlyphManager_GlyphEntry__ctor, (ControllerGlyphManager_GlyphEntry * __this, MethodInfo * method)); DO_APP_FUNC(0x00580060, void, ControllerGlyphTutorialText_Initialize, (ControllerGlyphTutorialText * __this, String * actionName, String * localizationKey, String * defaultBinding, MethodInfo * method)); DO_APP_FUNC(0x005804B0, void, ControllerGlyphTutorialText_OnLastActiveControllerChanged, (ControllerGlyphTutorialText * __this, Controller * controller, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FDF0, ControllerGlyphTutorialText_OnLastActiveControllerChanged__MethodInfo); DO_APP_FUNC(0x00580880, IEnumerator *, ControllerGlyphTutorialText_ActivateGlyph, (ControllerGlyphTutorialText * __this, Sprite * glyph, Color tint, MethodInfo * method)); DO_APP_FUNC(0x005809A0, void, ControllerGlyphTutorialText_HideGlyph, (ControllerGlyphTutorialText * __this, MethodInfo * method)); DO_APP_FUNC(0x00580D00, void, ControllerGlyphTutorialText_OnDisable, (ControllerGlyphTutorialText * __this, MethodInfo * method)); @@ -18355,9 +20991,11 @@ DO_APP_FUNC(0x003AE050, void, ControllerGlyphTutorialText_ActivateGlyph_d_15_Sys DO_APP_FUNC(0x00580FF0, bool, ControllerGlyphTutorialText_ActivateGlyph_d_15_MoveNext, (ControllerGlyphTutorialText_ActivateGlyph_d_15 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, ControllerGlyphTutorialText_ActivateGlyph_d_15_System_Collections_Generic_IEnumerator_System_Object__get_Current, (ControllerGlyphTutorialText_ActivateGlyph_d_15 * __this, MethodInfo * method)); DO_APP_FUNC(0x005817B0, void, ControllerGlyphTutorialText_ActivateGlyph_d_15_System_Collections_IEnumerator_Reset, (ControllerGlyphTutorialText_ActivateGlyph_d_15 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FDC8, ControllerGlyphTutorialText_ActivateGlyph_d_15_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, ControllerGlyphTutorialText_ActivateGlyph_d_15_System_Collections_IEnumerator_get_Current, (ControllerGlyphTutorialText_ActivateGlyph_d_15 * __this, MethodInfo * method)); DO_APP_FUNC(0x00581800, void, ControllerGlyphUI_Start, (ControllerGlyphUI * __this, MethodInfo * method)); DO_APP_FUNC(0x00581C00, void, ControllerGlyphUI_OnLastActiveControllerChanged, (ControllerGlyphUI * __this, Controller * controller, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FDC0, ControllerGlyphUI_OnLastActiveControllerChanged__MethodInfo); DO_APP_FUNC(0x00582550, void, ControllerGlyphUI_HideGlyph, (ControllerGlyphUI * __this, MethodInfo * method)); DO_APP_FUNC(0x00582D90, void, ControllerGlyphUI_OnDestroy, (ControllerGlyphUI * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, ControllerGlyphUI__ctor, (ControllerGlyphUI * __this, MethodInfo * method)); @@ -18370,6 +21008,7 @@ DO_APP_FUNC(0x003AE050, void, GamepadUISelectOnly_Deselect_d_1_System_IDisposabl DO_APP_FUNC(0x00582F30, bool, GamepadUISelectOnly_Deselect_d_1_MoveNext, (GamepadUISelectOnly_Deselect_d_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, GamepadUISelectOnly_Deselect_d_1_System_Collections_Generic_IEnumerator_System_Object__get_Current, (GamepadUISelectOnly_Deselect_d_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x00583080, void, GamepadUISelectOnly_Deselect_d_1_System_Collections_IEnumerator_Reset, (GamepadUISelectOnly_Deselect_d_1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FDB0, GamepadUISelectOnly_Deselect_d_1_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, GamepadUISelectOnly_Deselect_d_1_System_Collections_IEnumerator_get_Current, (GamepadUISelectOnly_Deselect_d_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x005830D0, void, HorizontalSelectable_Awake, (HorizontalSelectable * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, HorizontalSelectable__ctor, (HorizontalSelectable * __this, MethodInfo * method)); @@ -18379,6 +21018,7 @@ DO_APP_FUNC(0x003AE000, void, KeyBindingEntry__ctor, (KeyBindingEntry * __this, DO_APP_FUNC(0x005832F0, void, LocalizationDropdown_Start, (LocalizationDropdown * __this, MethodInfo * method)); DO_APP_FUNC(0x005833D0, void, LocalizationDropdown_SetOptionsText, (LocalizationDropdown * __this, MethodInfo * method)); DO_APP_FUNC(0x00583960, void, LocalizationDropdown_OnValueChanged, (LocalizationDropdown * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FD98, LocalizationDropdown_OnValueChanged__MethodInfo); DO_APP_FUNC(0x00583B30, void, LocalizationDropdown_OnDestroy, (LocalizationDropdown * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, LocalizationDropdown__ctor, (LocalizationDropdown * __this, MethodInfo * method)); DO_APP_FUNC(0x00583C30, LocalizationManager *, LocalizationManager_get_Instance, (MethodInfo * method)); @@ -18386,6 +21026,7 @@ DO_APP_FUNC(0x00583C70, void, LocalizationManager_Awake, (LocalizationManager * DO_APP_FUNC(0x00584A20, void, LocalizationManager_OnEnable, (LocalizationManager * __this, MethodInfo * method)); DO_APP_FUNC(0x00584AD0, void, LocalizationManager_OnDisable, (LocalizationManager * __this, MethodInfo * method)); DO_APP_FUNC(0x00584B80, void, LocalizationManager_OnSceneLoaded, (LocalizationManager * __this, Scene scene, LoadSceneMode__Enum mode, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FCF8, LocalizationManager_OnSceneLoaded__MethodInfo); DO_APP_FUNC(0x00584B90, void, LocalizationManager_TrySwitchingToLanguageUniqueFont, (LocalizationManager * __this, Text__Array * textComponents, MethodInfo * method)); DO_APP_FUNC(0x005850A0, void, LocalizationManager_SetAllTextsFontTo, (LocalizationManager * __this, Font * font, Text__Array * textComponents, MethodInfo * method)); DO_APP_FUNC(0x00585260, String *, LocalizationManager_GetText, (LocalizationManager * __this, String * key, MethodInfo * method)); @@ -18400,6 +21041,7 @@ DO_APP_FUNC(0x005868D0, void, LocalizationManager_LoadBadWordFilters, (Localizat DO_APP_FUNC(0x00586BE0, bool, LocalizationManager_ShouldDisableBestFit, (LocalizationManager * __this, MethodInfo * method)); DO_APP_FUNC(0x00586C00, void, LocalizationManager__ctor, (LocalizationManager * __this, MethodInfo * method)); DO_APP_FUNC(0x00586E50, bool, LocalizationManager__TrySwitchingToLanguageUniqueFont_b__17_0, (LocalizationManager * __this, LanguageUniqueFont * it, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FCE8, LocalizationManager__TrySwitchingToLanguageUniqueFont_b__17_0__MethodInfo); DO_APP_FUNC(0x005870A0, void, Language__ctor, (Language * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TextKeyValue__ctor, (TextKeyValue * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, LanguageUniqueFont__ctor, (LanguageUniqueFont * __this, MethodInfo * method)); @@ -18413,6 +21055,7 @@ DO_APP_FUNC(0x003AE000, void, LocalizationTextToggle__ctor, (LocalizationTextTog DO_APP_FUNC(0x005876E0, void, LocalizationTMPDropdown_Start, (LocalizationTMPDropdown * __this, MethodInfo * method)); DO_APP_FUNC(0x005877C0, void, LocalizationTMPDropdown_SetOptionsText, (LocalizationTMPDropdown * __this, MethodInfo * method)); DO_APP_FUNC(0x00587DC0, void, LocalizationTMPDropdown_OnValueChanged, (LocalizationTMPDropdown * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23420, LocalizationTMPDropdown_OnValueChanged__MethodInfo); DO_APP_FUNC(0x00587F00, void, LocalizationTMPDropdown_OnDestroy, (LocalizationTMPDropdown * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, LocalizationTMPDropdown__ctor, (LocalizationTMPDropdown * __this, MethodInfo * method)); DO_APP_FUNC(0x00588000, void, LocalizationUIText_Start, (LocalizationUIText * __this, MethodInfo * method)); @@ -18425,9 +21068,9 @@ DO_APP_FUNC(0x00588670, void, MouseFollower_Update, (MouseFollower * __this, Met DO_APP_FUNC(0x003AE000, void, MouseFollower__ctor, (MouseFollower * __this, MethodInfo * method)); DO_APP_FUNC(0x00588AB0, MouseGlyphManager *, MouseGlyphManager_get_Instance, (MethodInfo * method)); DO_APP_FUNC(0x00588AF0, void, MouseGlyphManager_Awake, (MouseGlyphManager * __this, MethodInfo * method)); -DO_APP_FUNC(0x00588FF0, Sprite *, MouseGlyphManager_GetGlyph, (int32_t elementIdentifierId, AxisRange__Enum axisRange, Color tint, MethodInfo * method)); +DO_APP_FUNC(0x00588FF0, Sprite *, MouseGlyphManager_GetGlyph, (int32_t elementIdentifierId, AxisRange__Enum axisRange, Color * tint, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, MouseGlyphManager__ctor, (MouseGlyphManager * __this, MethodInfo * method)); -DO_APP_FUNC(0x005891B0, Sprite *, MouseGlyphManager_GlyphEntry_GetGlyph, (MouseGlyphManager_GlyphEntry * __this, AxisRange__Enum axisRange, Color tint, MethodInfo * method)); +DO_APP_FUNC(0x005891B0, Sprite *, MouseGlyphManager_GlyphEntry_GetGlyph, (MouseGlyphManager_GlyphEntry * __this, AxisRange__Enum axisRange, Color * tint, MethodInfo * method)); DO_APP_FUNC(0x00580050, void, MouseGlyphManager_GlyphEntry__ctor, (MouseGlyphManager_GlyphEntry * __this, MethodInfo * method)); DO_APP_FUNC(0x005893E0, void, MouseObjectRotator_Awake, (MouseObjectRotator * __this, MethodInfo * method)); DO_APP_FUNC(0x00589520, void, MouseObjectRotator_OnEnable, (MouseObjectRotator * __this, MethodInfo * method)); @@ -18439,14 +21082,18 @@ DO_APP_FUNC(0x0058A3E0, void, MouseObjectRotator_OnMouseUp, (MouseObjectRotator DO_APP_FUNC(0x0058A3F0, void, MouseObjectRotator_OnDisable, (MouseObjectRotator * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, MouseObjectRotator__ctor, (MouseObjectRotator * __this, MethodInfo * method)); DO_APP_FUNC(0x0058A490, void, MouseObjectRotator__OnEnable_b__17_0, (MouseObjectRotator * __this, InputAction_CallbackContext ctx, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23398, MouseObjectRotator__OnEnable_b__17_0__MethodInfo); DO_APP_FUNC(0x0058A4C0, void, MouseObjectRotator__OnEnable_b__17_1, (MouseObjectRotator * __this, InputAction_CallbackContext ctx, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23390, MouseObjectRotator__OnEnable_b__17_1__MethodInfo); DO_APP_FUNC(0x0058A4F0, Graphic__Array *, MultiImageButton_get_Graphics, (MultiImageButton * __this, MethodInfo * method)); DO_APP_FUNC(0x0058A810, void, MultiImageButton_DoStateTransition, (MultiImageButton * __this, Selectable_SelectionState__Enum state, bool instant, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D232F0, MultiImageButton_DoStateTransition__MethodInfo); DO_APP_FUNC(0x0058AC30, void, MultiImageButton_ColorTween, (MultiImageButton * __this, Color targetColor, bool instant, MethodInfo * method)); DO_APP_FUNC(0x0058AE40, void, MultiImageButton__ctor, (MultiImageButton * __this, MethodInfo * method)); DO_APP_FUNC(0x0058AF90, void, MultiImageButton_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, MultiImageButton_c__ctor, (MultiImageButton_c * __this, MethodInfo * method)); DO_APP_FUNC(0x0058B040, bool, MultiImageButton_c__get_Graphics_b__2_0, (MultiImageButton_c * __this, Graphic * graphic, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23308, MultiImageButton_c__get_Graphics_b__2_0__MethodInfo); DO_APP_FUNC(0x0058B090, void, OutfitPreviewLoader_Awake, (OutfitPreviewLoader * __this, MethodInfo * method)); DO_APP_FUNC(0x0058B130, void, OutfitPreviewLoader_Preview, (OutfitPreviewLoader * __this, String * characterName, String * outfitName, String * robeName, MethodInfo * method)); DO_APP_FUNC(0x0058B480, void, OutfitPreviewLoader_PreviewFlashlight, (OutfitPreviewLoader * __this, String * flashlightName, MethodInfo * method)); @@ -18470,30 +21117,37 @@ DO_APP_FUNC(0x003AE050, void, OutfitPreviewLoader_PreviewInternal_d_31_System_ID DO_APP_FUNC(0x0058D8D0, bool, OutfitPreviewLoader_PreviewInternal_d_31_MoveNext, (OutfitPreviewLoader_PreviewInternal_d_31 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, OutfitPreviewLoader_PreviewInternal_d_31_System_Collections_Generic_IEnumerator_System_Object__get_Current, (OutfitPreviewLoader_PreviewInternal_d_31 * __this, MethodInfo * method)); DO_APP_FUNC(0x0058E920, void, OutfitPreviewLoader_PreviewInternal_d_31_System_Collections_IEnumerator_Reset, (OutfitPreviewLoader_PreviewInternal_d_31 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23238, OutfitPreviewLoader_PreviewInternal_d_31_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, OutfitPreviewLoader_PreviewInternal_d_31_System_Collections_IEnumerator_get_Current, (OutfitPreviewLoader_PreviewInternal_d_31 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, OutfitPreviewLoader_LoadRobeTexture_d_32__ctor, (OutfitPreviewLoader_LoadRobeTexture_d_32 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, OutfitPreviewLoader_LoadRobeTexture_d_32_System_IDisposable_Dispose, (OutfitPreviewLoader_LoadRobeTexture_d_32 * __this, MethodInfo * method)); DO_APP_FUNC(0x0058E970, bool, OutfitPreviewLoader_LoadRobeTexture_d_32_MoveNext, (OutfitPreviewLoader_LoadRobeTexture_d_32 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, OutfitPreviewLoader_LoadRobeTexture_d_32_System_Collections_Generic_IEnumerator_System_Object__get_Current, (OutfitPreviewLoader_LoadRobeTexture_d_32 * __this, MethodInfo * method)); DO_APP_FUNC(0x0058F000, void, OutfitPreviewLoader_LoadRobeTexture_d_32_System_Collections_IEnumerator_Reset, (OutfitPreviewLoader_LoadRobeTexture_d_32 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D231F8, OutfitPreviewLoader_LoadRobeTexture_d_32_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, OutfitPreviewLoader_LoadRobeTexture_d_32_System_Collections_IEnumerator_get_Current, (OutfitPreviewLoader_LoadRobeTexture_d_32 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, OutfitPreviewLoader_c_DisplayClass33_0__ctor, (OutfitPreviewLoader_c_DisplayClass33_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0058F050, bool, OutfitPreviewLoader_c_DisplayClass33_0__GetAvatar_b__0, (OutfitPreviewLoader_c_DisplayClass33_0 * __this, OutfitPreviewLoader_OutfitPreviewAvatar * a, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23298, OutfitPreviewLoader_c_DisplayClass33_0__GetAvatar_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, OutfitPreviewLoader_c_DisplayClass34_0__ctor, (OutfitPreviewLoader_c_DisplayClass34_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0058F050, bool, OutfitPreviewLoader_c_DisplayClass34_0__GetPose_b__0, (OutfitPreviewLoader_c_DisplayClass34_0 * __this, OutfitPreviewLoader_OutfitPreviewAvatar * a, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23280, OutfitPreviewLoader_c_DisplayClass34_0__GetPose_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, OutfitPreviewLoader_c_DisplayClass35_0__ctor, (OutfitPreviewLoader_c_DisplayClass35_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0058F0B0, void, OutfitPreviewLoader_c_DisplayClass35_0__PreviewFlashlightInternal_b__0, (OutfitPreviewLoader_c_DisplayClass35_0 * __this, float val, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23180, OutfitPreviewLoader_c_DisplayClass35_0__PreviewFlashlightInternal_b__0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, OutfitPreviewLoader_PreviewFlashlightInternal_d_35__ctor, (OutfitPreviewLoader_PreviewFlashlightInternal_d_35 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, OutfitPreviewLoader_PreviewFlashlightInternal_d_35_System_IDisposable_Dispose, (OutfitPreviewLoader_PreviewFlashlightInternal_d_35 * __this, MethodInfo * method)); DO_APP_FUNC(0x0058F120, bool, OutfitPreviewLoader_PreviewFlashlightInternal_d_35_MoveNext, (OutfitPreviewLoader_PreviewFlashlightInternal_d_35 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, OutfitPreviewLoader_PreviewFlashlightInternal_d_35_System_Collections_Generic_IEnumerator_System_Object__get_Current, (OutfitPreviewLoader_PreviewFlashlightInternal_d_35 * __this, MethodInfo * method)); DO_APP_FUNC(0x00590820, void, OutfitPreviewLoader_PreviewFlashlightInternal_d_35_System_Collections_IEnumerator_Reset, (OutfitPreviewLoader_PreviewFlashlightInternal_d_35 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23120, OutfitPreviewLoader_PreviewFlashlightInternal_d_35_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, OutfitPreviewLoader_PreviewFlashlightInternal_d_35_System_Collections_IEnumerator_get_Current, (OutfitPreviewLoader_PreviewFlashlightInternal_d_35 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, OutfitPreviewLoader_PreviewPetInternal_d_36__ctor, (OutfitPreviewLoader_PreviewPetInternal_d_36 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, OutfitPreviewLoader_PreviewPetInternal_d_36_System_IDisposable_Dispose, (OutfitPreviewLoader_PreviewPetInternal_d_36 * __this, MethodInfo * method)); DO_APP_FUNC(0x00590870, bool, OutfitPreviewLoader_PreviewPetInternal_d_36_MoveNext, (OutfitPreviewLoader_PreviewPetInternal_d_36 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, OutfitPreviewLoader_PreviewPetInternal_d_36_System_Collections_Generic_IEnumerator_System_Object__get_Current, (OutfitPreviewLoader_PreviewPetInternal_d_36 * __this, MethodInfo * method)); DO_APP_FUNC(0x00591000, void, OutfitPreviewLoader_PreviewPetInternal_d_36_System_Collections_IEnumerator_Reset, (OutfitPreviewLoader_PreviewPetInternal_d_36 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23110, OutfitPreviewLoader_PreviewPetInternal_d_36_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, OutfitPreviewLoader_PreviewPetInternal_d_36_System_Collections_IEnumerator_get_Current, (OutfitPreviewLoader_PreviewPetInternal_d_36 * __this, MethodInfo * method)); DO_APP_FUNC(0x00591050, void, OutfitPreviewLoaderEventHandler_Awake, (OutfitPreviewLoaderEventHandler * __this, MethodInfo * method)); DO_APP_FUNC(0x005910E0, void, OutfitPreviewLoaderEventHandler_ExecuteEvent, (OutfitPreviewLoaderEventHandler * __this, String * eventName, MethodInfo * method)); @@ -18504,6 +21158,7 @@ DO_APP_FUNC(0x003AE050, void, OutfitPreviewLoaderEventHandler_WaitToStartAgain_d DO_APP_FUNC(0x005912F0, bool, OutfitPreviewLoaderEventHandler_WaitToStartAgain_d_3_MoveNext, (OutfitPreviewLoaderEventHandler_WaitToStartAgain_d_3 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, OutfitPreviewLoaderEventHandler_WaitToStartAgain_d_3_System_Collections_Generic_IEnumerator_System_Object__get_Current, (OutfitPreviewLoaderEventHandler_WaitToStartAgain_d_3 * __this, MethodInfo * method)); DO_APP_FUNC(0x005914D0, void, OutfitPreviewLoaderEventHandler_WaitToStartAgain_d_3_System_Collections_IEnumerator_Reset, (OutfitPreviewLoaderEventHandler_WaitToStartAgain_d_3 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D230F0, OutfitPreviewLoaderEventHandler_WaitToStartAgain_d_3_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, OutfitPreviewLoaderEventHandler_WaitToStartAgain_d_3_System_Collections_IEnumerator_get_Current, (OutfitPreviewLoaderEventHandler_WaitToStartAgain_d_3 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, PlayerMenuItem__ctor, (PlayerMenuItem * __this, MethodInfo * method)); DO_APP_FUNC(0x00591520, void, PlayerMenuItemGamepad_Awake, (PlayerMenuItemGamepad * __this, MethodInfo * method)); @@ -18516,10 +21171,10 @@ DO_APP_FUNC(0x00591840, void, PlayerStatsController_LoadStats, (PlayerStatsContr DO_APP_FUNC(0x00592540, void, PlayerStatsController_SelectFirstStat, (PlayerStatsController * __this, MethodInfo * method)); DO_APP_FUNC(0x00592690, IEnumerator *, PlayerStatsController_SelectFirstStatInternal, (PlayerStatsController * __this, MethodInfo * method)); DO_APP_FUNC(0x00592730, void, PlayerStatsController__ctor, (PlayerStatsController * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594BD0, void, PlayerStatsController_Category__ctor, (PlayerStatsController_Category__Boxed * __this, String * localizedKey, PlayerStatsController_Stat__Array * stats, bool calculateTotal, MethodInfo * method)); -DO_APP_FUNC(0x00471910, String *, PlayerStatsController_Category_get_LocalizedKey, (PlayerStatsController_Category__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, PlayerStatsController_Stat__Array *, PlayerStatsController_Category_get_Stats, (PlayerStatsController_Category__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD20, bool, PlayerStatsController_Category_get_CalculateTotal, (PlayerStatsController_Category__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594BD0, void, PlayerStatsController_Category__ctor, (PlayerStatsController_Category * __this, String * localizedKey, PlayerStatsController_Stat__Array * stats, bool calculateTotal, MethodInfo * method)); +DO_APP_FUNC(0x00471910, String *, PlayerStatsController_Category_get_LocalizedKey, (PlayerStatsController_Category * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, PlayerStatsController_Stat__Array *, PlayerStatsController_Category_get_Stats, (PlayerStatsController_Category * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD20, bool, PlayerStatsController_Category_get_CalculateTotal, (PlayerStatsController_Category * __this, MethodInfo * method)); DO_APP_FUNC(0x00594CA0, void, PlayerStatsController_Stat__ctor, (PlayerStatsController_Stat * __this, String * name, String * localizedKey, String * type, bool useLocalizedKeyAsLabel, MethodInfo * method)); DO_APP_FUNC(0x00594DB0, void, PlayerStatsController_Stat__ctor_1, (PlayerStatsController_Stat * __this, String * name, String * localizedKey, String * type, String * valueFormat, bool calcPercentageOfTotal, bool useLocalizedKeyAsLabel, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, String *, PlayerStatsController_Stat_get_Name, (PlayerStatsController_Stat * __this, MethodInfo * method)); @@ -18535,6 +21190,7 @@ DO_APP_FUNC(0x003AE050, void, PlayerStatsController_SelectFirstStatInternal_d_9_ DO_APP_FUNC(0x00594F60, bool, PlayerStatsController_SelectFirstStatInternal_d_9_MoveNext, (PlayerStatsController_SelectFirstStatInternal_d_9 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, PlayerStatsController_SelectFirstStatInternal_d_9_System_Collections_Generic_IEnumerator_System_Object__get_Current, (PlayerStatsController_SelectFirstStatInternal_d_9 * __this, MethodInfo * method)); DO_APP_FUNC(0x005951D0, void, PlayerStatsController_SelectFirstStatInternal_d_9_System_Collections_IEnumerator_Reset, (PlayerStatsController_SelectFirstStatInternal_d_9 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22DC0, PlayerStatsController_SelectFirstStatInternal_d_9_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, PlayerStatsController_SelectFirstStatInternal_d_9_System_Collections_IEnumerator_get_Current, (PlayerStatsController_SelectFirstStatInternal_d_9 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, PlayerStatsItem__ctor, (PlayerStatsItem * __this, MethodInfo * method)); DO_APP_FUNC(0x00595220, void, ScreenEffect_PulseScreenEffect, (ScreenEffect * __this, ScreenEffect_Type__Enum type, float fadeInDuration, float minAlpha, float maxAlpha, MethodInfo * method)); @@ -18550,38 +21206,47 @@ DO_APP_FUNC(0x00596480, void, ScreenEffect_HideAllEffects, (ScreenEffect * __thi DO_APP_FUNC(0x00596810, void, ScreenEffect__ctor, (ScreenEffect * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ScreenEffect_c_DisplayClass3_0__ctor, (ScreenEffect_c_DisplayClass3_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00596860, bool, ScreenEffect_c_DisplayClass3_0__PulseScreenEffect_b__0, (ScreenEffect_c_DisplayClass3_0 * __this, ScreenEffectType * t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22D90, ScreenEffect_c_DisplayClass3_0__PulseScreenEffect_b__0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, ScreenEffect_PulseScreenEffectInternal_d_4__ctor, (ScreenEffect_PulseScreenEffectInternal_d_4 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ScreenEffect_PulseScreenEffectInternal_d_4_System_IDisposable_Dispose, (ScreenEffect_PulseScreenEffectInternal_d_4 * __this, MethodInfo * method)); DO_APP_FUNC(0x00596880, bool, ScreenEffect_PulseScreenEffectInternal_d_4_MoveNext, (ScreenEffect_PulseScreenEffectInternal_d_4 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, ScreenEffect_PulseScreenEffectInternal_d_4_System_Collections_Generic_IEnumerator_System_Object__get_Current, (ScreenEffect_PulseScreenEffectInternal_d_4 * __this, MethodInfo * method)); DO_APP_FUNC(0x00596D20, void, ScreenEffect_PulseScreenEffectInternal_d_4_System_Collections_IEnumerator_Reset, (ScreenEffect_PulseScreenEffectInternal_d_4 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22C58, ScreenEffect_PulseScreenEffectInternal_d_4_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, ScreenEffect_PulseScreenEffectInternal_d_4_System_Collections_IEnumerator_get_Current, (ScreenEffect_PulseScreenEffectInternal_d_4 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ScreenEffect_c_DisplayClass5_0__ctor, (ScreenEffect_c_DisplayClass5_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00596860, bool, ScreenEffect_c_DisplayClass5_0__FadeOutScreenEffect_b__0, (ScreenEffect_c_DisplayClass5_0 * __this, ScreenEffectType * t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22D40, ScreenEffect_c_DisplayClass5_0__FadeOutScreenEffect_b__0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, ScreenEffect_FadeInScreenEffectInternal_d_6__ctor, (ScreenEffect_FadeInScreenEffectInternal_d_6 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ScreenEffect_FadeInScreenEffectInternal_d_6_System_IDisposable_Dispose, (ScreenEffect_FadeInScreenEffectInternal_d_6 * __this, MethodInfo * method)); DO_APP_FUNC(0x00596D70, bool, ScreenEffect_FadeInScreenEffectInternal_d_6_MoveNext, (ScreenEffect_FadeInScreenEffectInternal_d_6 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, ScreenEffect_FadeInScreenEffectInternal_d_6_System_Collections_Generic_IEnumerator_System_Object__get_Current, (ScreenEffect_FadeInScreenEffectInternal_d_6 * __this, MethodInfo * method)); DO_APP_FUNC(0x00597010, void, ScreenEffect_FadeInScreenEffectInternal_d_6_System_Collections_IEnumerator_Reset, (ScreenEffect_FadeInScreenEffectInternal_d_6 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22C48, ScreenEffect_FadeInScreenEffectInternal_d_6_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, ScreenEffect_FadeInScreenEffectInternal_d_6_System_Collections_IEnumerator_get_Current, (ScreenEffect_FadeInScreenEffectInternal_d_6 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, ScreenEffect_FadeOutScreenEffectInternal_d_7__ctor, (ScreenEffect_FadeOutScreenEffectInternal_d_7 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ScreenEffect_FadeOutScreenEffectInternal_d_7_System_IDisposable_Dispose, (ScreenEffect_FadeOutScreenEffectInternal_d_7 * __this, MethodInfo * method)); DO_APP_FUNC(0x00597060, bool, ScreenEffect_FadeOutScreenEffectInternal_d_7_MoveNext, (ScreenEffect_FadeOutScreenEffectInternal_d_7 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, ScreenEffect_FadeOutScreenEffectInternal_d_7_System_Collections_Generic_IEnumerator_System_Object__get_Current, (ScreenEffect_FadeOutScreenEffectInternal_d_7 * __this, MethodInfo * method)); DO_APP_FUNC(0x00597300, void, ScreenEffect_FadeOutScreenEffectInternal_d_7_System_Collections_IEnumerator_Reset, (ScreenEffect_FadeOutScreenEffectInternal_d_7 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22C40, ScreenEffect_FadeOutScreenEffectInternal_d_7_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, ScreenEffect_FadeOutScreenEffectInternal_d_7_System_Collections_IEnumerator_get_Current, (ScreenEffect_FadeOutScreenEffectInternal_d_7 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ScreenEffect_c_DisplayClass8_0__ctor, (ScreenEffect_c_DisplayClass8_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00596860, bool, ScreenEffect_c_DisplayClass8_0__FadeToScreenEffectAlpha_b__0, (ScreenEffect_c_DisplayClass8_0 * __this, ScreenEffectType * t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22CF0, ScreenEffect_c_DisplayClass8_0__FadeToScreenEffectAlpha_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, ScreenEffect_c_DisplayClass9_0__ctor, (ScreenEffect_c_DisplayClass9_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00596860, bool, ScreenEffect_c_DisplayClass9_0__ShowScreenEffectDecal_b__0, (ScreenEffect_c_DisplayClass9_0 * __this, ScreenEffectType * t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22CD8, ScreenEffect_c_DisplayClass9_0__ShowScreenEffectDecal_b__0__MethodInfo); DO_APP_FUNC(0x00597350, void, ScreenEffect_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ScreenEffect_c__ctor, (ScreenEffect_c * __this, MethodInfo * method)); DO_APP_FUNC(0x00597400, bool, ScreenEffect_c__TrapDeath_b__10_0, (ScreenEffect_c * __this, ScreenEffectType * t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22CC0, ScreenEffect_c__TrapDeath_b__10_0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, ScreenEffect_TrapDeathInternal_d_11__ctor, (ScreenEffect_TrapDeathInternal_d_11 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ScreenEffect_TrapDeathInternal_d_11_System_IDisposable_Dispose, (ScreenEffect_TrapDeathInternal_d_11 * __this, MethodInfo * method)); DO_APP_FUNC(0x00597420, bool, ScreenEffect_TrapDeathInternal_d_11_MoveNext, (ScreenEffect_TrapDeathInternal_d_11 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, ScreenEffect_TrapDeathInternal_d_11_System_Collections_Generic_IEnumerator_System_Object__get_Current, (ScreenEffect_TrapDeathInternal_d_11 * __this, MethodInfo * method)); DO_APP_FUNC(0x005975C0, void, ScreenEffect_TrapDeathInternal_d_11_System_Collections_IEnumerator_Reset, (ScreenEffect_TrapDeathInternal_d_11 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22C30, ScreenEffect_TrapDeathInternal_d_11_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, ScreenEffect_TrapDeathInternal_d_11_System_Collections_IEnumerator_get_Current, (ScreenEffect_TrapDeathInternal_d_11 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ScreenEffectType__ctor, (ScreenEffectType * __this, MethodInfo * method)); DO_APP_FUNC(0x00597610, void, ScreenEffectDecals_ShowDecal, (ScreenEffectDecals * __this, float alpha, float duration, float fadeOutDuration, MethodInfo * method)); @@ -18594,12 +21259,14 @@ DO_APP_FUNC(0x003AE050, void, ScreenEffectDecals_WaitToFadeOutDecal_d_9_System_I DO_APP_FUNC(0x00597E60, bool, ScreenEffectDecals_WaitToFadeOutDecal_d_9_MoveNext, (ScreenEffectDecals_WaitToFadeOutDecal_d_9 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, ScreenEffectDecals_WaitToFadeOutDecal_d_9_System_Collections_Generic_IEnumerator_System_Object__get_Current, (ScreenEffectDecals_WaitToFadeOutDecal_d_9 * __this, MethodInfo * method)); DO_APP_FUNC(0x00598180, void, ScreenEffectDecals_WaitToFadeOutDecal_d_9_System_Collections_IEnumerator_Reset, (ScreenEffectDecals_WaitToFadeOutDecal_d_9 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22BC8, ScreenEffectDecals_WaitToFadeOutDecal_d_9_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, ScreenEffectDecals_WaitToFadeOutDecal_d_9_System_Collections_IEnumerator_get_Current, (ScreenEffectDecals_WaitToFadeOutDecal_d_9 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, ScreenEffectDecals_DestroyDecals_d_11__ctor, (ScreenEffectDecals_DestroyDecals_d_11 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ScreenEffectDecals_DestroyDecals_d_11_System_IDisposable_Dispose, (ScreenEffectDecals_DestroyDecals_d_11 * __this, MethodInfo * method)); DO_APP_FUNC(0x005981D0, bool, ScreenEffectDecals_DestroyDecals_d_11_MoveNext, (ScreenEffectDecals_DestroyDecals_d_11 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, ScreenEffectDecals_DestroyDecals_d_11_System_Collections_Generic_IEnumerator_System_Object__get_Current, (ScreenEffectDecals_DestroyDecals_d_11 * __this, MethodInfo * method)); DO_APP_FUNC(0x00598560, void, ScreenEffectDecals_DestroyDecals_d_11_System_Collections_IEnumerator_Reset, (ScreenEffectDecals_DestroyDecals_d_11 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22BB0, ScreenEffectDecals_DestroyDecals_d_11_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, ScreenEffectDecals_DestroyDecals_d_11_System_Collections_IEnumerator_get_Current, (ScreenEffectDecals_DestroyDecals_d_11 * __this, MethodInfo * method)); DO_APP_FUNC(0x005985B0, void, ScreenEffectTrigger_Awake, (ScreenEffectTrigger * __this, MethodInfo * method)); DO_APP_FUNC(0x005986F0, void, ScreenEffectTrigger_OnTriggerEnter, (ScreenEffectTrigger * __this, Collider * other, MethodInfo * method)); @@ -18650,6 +21317,7 @@ DO_APP_FUNC(0x003AE050, void, UISoundEvents_DisableHoverSound_d_10_System_IDispo DO_APP_FUNC(0x0059B420, bool, UISoundEvents_DisableHoverSound_d_10_MoveNext, (UISoundEvents_DisableHoverSound_d_10 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, UISoundEvents_DisableHoverSound_d_10_System_Collections_Generic_IEnumerator_System_Object__get_Current, (UISoundEvents_DisableHoverSound_d_10 * __this, MethodInfo * method)); DO_APP_FUNC(0x0059B580, void, UISoundEvents_DisableHoverSound_d_10_System_Collections_IEnumerator_Reset, (UISoundEvents_DisableHoverSound_d_10 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22A90, UISoundEvents_DisableHoverSound_d_10_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, UISoundEvents_DisableHoverSound_d_10_System_Collections_IEnumerator_get_Current, (UISoundEvents_DisableHoverSound_d_10 * __this, MethodInfo * method)); DO_APP_FUNC(0x0059B5D0, void, UITimeoutController_OnEnable, (UITimeoutController * __this, MethodInfo * method)); DO_APP_FUNC(0x0059B630, void, UITimeoutController_Show, (UITimeoutController * __this, float time, MethodInfo * method)); @@ -18665,10 +21333,13 @@ DO_APP_FUNC(0x0059BEA0, void, UITooltipController_OnDeselect, (UITooltipControll DO_APP_FUNC(0x003AE000, void, UITooltipController__ctor, (UITooltipController * __this, MethodInfo * method)); DO_APP_FUNC(0x0059BF50, void, UINewsItem_SetNewsItem, (UINewsItem * __this, String * body, String * url, MethodInfo * method)); DO_APP_FUNC(0x0059C0D0, void, UINewsItem_OpenUrl, (UINewsItem * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22A48, UINewsItem_OpenUrl__MethodInfo); DO_APP_FUNC(0x003AE000, void, UINewsItem__ctor, (UINewsItem * __this, MethodInfo * method)); DO_APP_FUNC(0x0059C120, void, AnnaDoorColliderUpdate_Start, (AnnaDoorColliderUpdate * __this, MethodInfo * method)); DO_APP_FUNC(0x0059C260, void, AnnaDoorColliderUpdate_OnEnrageStart, (AnnaDoorColliderUpdate * __this, GameObject * ai, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22A28, AnnaDoorColliderUpdate_OnEnrageStart__MethodInfo); DO_APP_FUNC(0x0059C4A0, void, AnnaDoorColliderUpdate_OnEnrageEnd, (AnnaDoorColliderUpdate * __this, GameObject * ai, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22A38, AnnaDoorColliderUpdate_OnEnrageEnd__MethodInfo); DO_APP_FUNC(0x0059C6E0, void, AnnaDoorColliderUpdate_OnDestroy, (AnnaDoorColliderUpdate * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, AnnaDoorColliderUpdate__ctor, (AnnaDoorColliderUpdate * __this, MethodInfo * method)); DO_APP_FUNC(0x0059C820, AnimatedInteractable *, AnnaDoorInteractable_GetAnimatedInteractable, (AnnaDoorInteractable * __this, MethodInfo * method)); @@ -18679,7 +21350,9 @@ DO_APP_FUNC(0x0059CD50, void, AnnaDoorOpen_AbilityStarted, (AnnaDoorOpen * __thi DO_APP_FUNC(0x0059D030, bool, AnnaDoorOpen_CanStartAbility, (AnnaDoorOpen * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, AnnaDoorOpen_ShouldBlockAbilityStart, (AnnaDoorOpen * __this, Ability * startingAbility, MethodInfo * method)); DO_APP_FUNC(0x0059D250, void, AnnaDoorOpen_OnEnrageStart, (AnnaDoorOpen * __this, GameObject * ai, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D229E0, AnnaDoorOpen_OnEnrageStart__MethodInfo); DO_APP_FUNC(0x0059D340, void, AnnaDoorOpen_OnEnrageEnd, (AnnaDoorOpen * __this, GameObject * ai, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D229F0, AnnaDoorOpen_OnEnrageEnd__MethodInfo); DO_APP_FUNC(0x0059D430, void, AnnaDoorOpen_OnDestroy, (AnnaDoorOpen * __this, MethodInfo * method)); DO_APP_FUNC(0x0059D580, void, AnnaDoorOpen__ctor, (AnnaDoorOpen * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, AnnaOpeningDoor_get_IsConcurrent, (AnnaOpeningDoor * __this, MethodInfo * method)); @@ -18713,10 +21386,13 @@ DO_APP_FUNC(0x0059E150, bool, AzazelFall_CanStartAbility, (AzazelFall * __this, DO_APP_FUNC(0x0059E390, void, AzazelFall_AbilityStarted, (AzazelFall * __this, MethodInfo * method)); DO_APP_FUNC(0x0059E570, bool, AzazelFall_ShouldBlockAbilityStart, (AzazelFall * __this, Ability * startingAbility, MethodInfo * method)); DO_APP_FUNC(0x0059E600, void, AzazelFall_OnGrounded, (AzazelFall * __this, bool grounded, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D228E8, AzazelFall_OnGrounded__MethodInfo); DO_APP_FUNC(0x0059E9E0, void, AzazelFall_UpdateAnimator, (AzazelFall * __this, MethodInfo * method)); DO_APP_FUNC(0x0059E9F0, void, AzazelFall_Land, (AzazelFall * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D228F8, AzazelFall_Land__MethodInfo); DO_APP_FUNC(0x0059E080, bool, AzazelFall_CanStopAbility, (AzazelFall * __this, MethodInfo * method)); DO_APP_FUNC(0x0059EA30, void, AzazelFall_OnImmediateTransformChange, (AzazelFall * __this, bool snapAnimator, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D228D8, AzazelFall_OnImmediateTransformChange__MethodInfo); DO_APP_FUNC(0x0059EA80, void, AzazelFall_AbilityStopped, (AzazelFall * __this, bool force, MethodInfo * method)); DO_APP_FUNC(0x0059EC90, void, AzazelFall__ctor, (AzazelFall * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, BeingHeld_get_IsConcurrent, (BeingHeld * __this, MethodInfo * method)); @@ -18732,6 +21408,7 @@ DO_APP_FUNC(0x0059EE40, int32_t, CalmDown_get_AbilityIntData, (CalmDown * __this DO_APP_FUNC(0x0059EE60, void, CalmDown_Awake, (CalmDown * __this, MethodInfo * method)); DO_APP_FUNC(0x0059EF50, void, CalmDown_AbilityStarted, (CalmDown * __this, MethodInfo * method)); DO_APP_FUNC(0x0059F010, void, CalmDown_OnComplete, (CalmDown * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22848, CalmDown_OnComplete__MethodInfo); DO_APP_FUNC(0x0059F040, void, CalmDown_AbilityStopped, (CalmDown * __this, bool force, MethodInfo * method)); DO_APP_FUNC(0x0059F050, void, CalmDown_OnDestroy, (CalmDown * __this, MethodInfo * method)); DO_APP_FUNC(0x0059F160, void, CalmDown_UpdateRotation, (CalmDown * __this, MethodInfo * method)); @@ -18761,8 +21438,10 @@ DO_APP_FUNC(0x005A0620, void, DemonKnockout_SetPlayerKnockedOut, (DemonKnockout DO_APP_FUNC(0x005A06E0, bool, DemonKnockout_AbilityWillStart, (DemonKnockout * __this, MethodInfo * method)); DO_APP_FUNC(0x005A07C0, void, DemonKnockout_AbilityStarted, (DemonKnockout * __this, MethodInfo * method)); DO_APP_FUNC(0x0059F010, void, DemonKnockout_OnComplete, (DemonKnockout * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22790, DemonKnockout_OnComplete__MethodInfo); DO_APP_FUNC(0x005A08F0, void, DemonKnockout_AbilityStopped, (DemonKnockout * __this, bool force, MethodInfo * method)); DO_APP_FUNC(0x005A0B60, void, DemonKnockout_EnableRootMotion, (DemonKnockout * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22738, DemonKnockout_EnableRootMotion__MethodInfo); DO_APP_FUNC(0x005A0C30, void, DemonKnockout_OnDestroy, (DemonKnockout * __this, MethodInfo * method)); DO_APP_FUNC(0x005A0D40, void, DemonKnockout__ctor, (DemonKnockout * __this, MethodInfo * method)); DO_APP_FUNC(0x005A0DF0, bool, DevourInput_get_UseLongPressProgress, (DevourInput * __this, MethodInfo * method)); @@ -18771,6 +21450,7 @@ DO_APP_FUNC(0x005A0E10, float, DevourInput_get_LongPressProgressMultiplier, (Dev DO_APP_FUNC(0x005A0E20, void, DevourInput_set_LongPressProgressMultiplier, (DevourInput * __this, float value, MethodInfo * method)); DO_APP_FUNC(0x005A0E30, void, DevourInput_Awake, (DevourInput * __this, MethodInfo * method)); DO_APP_FUNC(0x005A1520, void, DevourInput_OnLastActiveControllerChanged, (DevourInput * __this, Controller * controller, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22730, DevourInput_OnLastActiveControllerChanged__MethodInfo); DO_APP_FUNC(0x005A15D0, float, DevourInput_GetButtonDownProgress, (DevourInput * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x005A16C0, void, DevourInput_ClearButtonDownProgress, (DevourInput * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x005A1780, void, DevourInput_EnableGameplayInput, (DevourInput * __this, bool enable, MethodInfo * method)); @@ -18782,7 +21462,9 @@ DO_APP_FUNC(0x005A2120, void, DevourInput__ctor, (DevourInput * __this, MethodIn DO_APP_FUNC(0x005A2150, void, DevourInput_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, DevourInput_c__ctor, (DevourInput_c * __this, MethodInfo * method)); DO_APP_FUNC(0x005A2200, bool, DevourInput_c__Awake_b__15_0, (DevourInput_c * __this, State * s, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22718, DevourInput_c__Awake_b__15_0__MethodInfo); DO_APP_FUNC(0x005A2290, bool, DevourInput_c__Awake_b__15_1, (DevourInput_c * __this, State * s, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22710, DevourInput_c__Awake_b__15_1__MethodInfo); DO_APP_FUNC(0x005A2320, void, DropObject_Awake, (DropObject * __this, MethodInfo * method)); DO_APP_FUNC(0x005A2560, void, DropObject_Start, (DropObject * __this, MethodInfo * method)); DO_APP_FUNC(0x005A3180, bool, DropObject_CanStartAbility, (DropObject * __this, MethodInfo * method)); @@ -18795,6 +21477,7 @@ DO_APP_FUNC(0x0059DF90, void, DropPlayer_SetPlayerKnockedOut, (DropPlayer * __th DO_APP_FUNC(0x005A4AA0, void, DropPlayer_AbilityStarted, (DropPlayer * __this, MethodInfo * method)); DO_APP_FUNC(0x0059F040, void, DropPlayer_AbilityStopped, (DropPlayer * __this, bool force, MethodInfo * method)); DO_APP_FUNC(0x0059F010, void, DropPlayer_OnComplete, (DropPlayer * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22570, DropPlayer_OnComplete__MethodInfo); DO_APP_FUNC(0x005A4BD0, void, DropPlayer_OnDestroy, (DropPlayer * __this, MethodInfo * method)); DO_APP_FUNC(0x005A4CD0, void, DropPlayer__ctor, (DropPlayer * __this, MethodInfo * method)); DO_APP_FUNC(0x0059EE30, void, EatingHay__ctor, (EatingHay * __this, MethodInfo * method)); @@ -18811,6 +21494,7 @@ DO_APP_FUNC(0x005A5130, bool, Emote_IsClassicEmote, (Emote * __this, MethodInfo DO_APP_FUNC(0x005A5180, bool, Emote_AbilityWillStart, (Emote * __this, MethodInfo * method)); DO_APP_FUNC(0x005A5310, void, Emote_AbilityStarted, (Emote * __this, MethodInfo * method)); DO_APP_FUNC(0x005A54F0, void, Emote_SetAllowPositionalInput, (Emote * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D224B0, Emote_SetAllowPositionalInput__MethodInfo); DO_APP_FUNC(0x005A5560, void, Emote_AbilityStopped, (Emote * __this, bool force, MethodInfo * method)); DO_APP_FUNC(0x005A5670, bool, Emote_CanStartAbility, (Emote * __this, MethodInfo * method)); DO_APP_FUNC(0x005A5810, bool, Emote_CanStopAbility, (Emote * __this, MethodInfo * method)); @@ -18842,14 +21526,17 @@ DO_APP_FUNC(0x005A6400, void, GenericIntData_set_UseStopDurationFallback, (Gener DO_APP_FUNC(0x005A6410, void, GenericIntData_Awake, (GenericIntData * __this, MethodInfo * method)); DO_APP_FUNC(0x005A64F0, void, GenericIntData_AbilityStarted, (GenericIntData * __this, MethodInfo * method)); DO_APP_FUNC(0x005A65B0, void, GenericIntData_OnComplete, (GenericIntData * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22420, GenericIntData_OnComplete__MethodInfo); DO_APP_FUNC(0x0059F040, void, GenericIntData_AbilityStopped, (GenericIntData * __this, bool force, MethodInfo * method)); DO_APP_FUNC(0x005A65F0, void, GenericIntData_OnDestroy, (GenericIntData * __this, MethodInfo * method)); DO_APP_FUNC(0x005A66F0, void, GenericIntData__ctor, (GenericIntData * __this, MethodInfo * method)); DO_APP_FUNC(0x005A67A0, void, GoatEscapeBehaviour_Awake, (GoatEscapeBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x005A6930, void, GoatEscapeBehaviour_Attached, (GoatEscapeBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x005A6A50, void, GoatEscapeBehaviour_OnCageOpen, (GoatEscapeBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22408, GoatEscapeBehaviour_OnCageOpen__MethodInfo); DO_APP_FUNC(0x005A6DE0, bool, GoatEscapeBehaviour_IsCagedGoat, (GoatEscapeBehaviour * __this, GameObject * goat, MethodInfo * method)); DO_APP_FUNC(0x005A6EC0, void, GoatEscapeBehaviour_ReleaseGoats, (GoatEscapeBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D223F8, GoatEscapeBehaviour_ReleaseGoats__MethodInfo); DO_APP_FUNC(0x005A7310, IEnumerator *, GoatEscapeBehaviour_SpeedUp, (GoatEscapeBehaviour * __this, RichAI * richAI, MethodInfo * method)); DO_APP_FUNC(0x005A73B0, void, GoatEscapeBehaviour__ctor, (GoatEscapeBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, GoatEscapeBehaviour_SpeedUp_d_13__ctor, (GoatEscapeBehaviour_SpeedUp_d_13 * __this, int32_t __1__state, MethodInfo * method)); @@ -18857,6 +21544,7 @@ DO_APP_FUNC(0x003AE050, void, GoatEscapeBehaviour_SpeedUp_d_13_System_IDisposabl DO_APP_FUNC(0x005A7400, bool, GoatEscapeBehaviour_SpeedUp_d_13_MoveNext, (GoatEscapeBehaviour_SpeedUp_d_13 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, GoatEscapeBehaviour_SpeedUp_d_13_System_Collections_Generic_IEnumerator_System_Object__get_Current, (GoatEscapeBehaviour_SpeedUp_d_13 * __this, MethodInfo * method)); DO_APP_FUNC(0x005A75B0, void, GoatEscapeBehaviour_SpeedUp_d_13_System_Collections_IEnumerator_Reset, (GoatEscapeBehaviour_SpeedUp_d_13 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22398, GoatEscapeBehaviour_SpeedUp_d_13_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, GoatEscapeBehaviour_SpeedUp_d_13_System_Collections_IEnumerator_get_Current, (GoatEscapeBehaviour_SpeedUp_d_13 * __this, MethodInfo * method)); DO_APP_FUNC(0x005A7600, void, GoatInteractable_Awake, (GoatInteractable * __this, MethodInfo * method)); DO_APP_FUNC(0x005A76A0, bool, GoatInteractable_CanInteract, (GoatInteractable * __this, GameObject * character, MethodInfo * method)); @@ -18912,9 +21600,12 @@ DO_APP_FUNC(0x005AB810, void, Knockout_SetPlayerKnockedOut, (Knockout * __this, DO_APP_FUNC(0x005AB8E0, bool, Knockout_AbilityWillStart, (Knockout * __this, MethodInfo * method)); DO_APP_FUNC(0x005ABBD0, void, Knockout_AbilityStarted, (Knockout * __this, MethodInfo * method)); DO_APP_FUNC(0x0059F010, void, Knockout_OnComplete, (Knockout * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25098, Knockout_OnComplete__MethodInfo); DO_APP_FUNC(0x005ABD20, void, Knockout_AbilityStopped, (Knockout * __this, bool force, MethodInfo * method)); DO_APP_FUNC(0x005ABE70, void, Knockout_OnThrowingPlayer, (Knockout * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D250B8, Knockout_OnThrowingPlayer__MethodInfo); DO_APP_FUNC(0x005ABF40, void, Knockout_OnKnockoutGrabRagdoll, (Knockout * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D250C0, Knockout_OnKnockoutGrabRagdoll__MethodInfo); DO_APP_FUNC(0x005AC110, void, Knockout_OnDestroy, (Knockout * __this, MethodInfo * method)); DO_APP_FUNC(0x005AC280, void, Knockout__ctor, (Knockout * __this, MethodInfo * method)); DO_APP_FUNC(0x005AC330, void, LockedFeedbackInteractable_Awake, (LockedFeedbackInteractable * __this, MethodInfo * method)); @@ -18936,11 +21627,13 @@ DO_APP_FUNC(0x005AE200, bool, LongInteract_CanStartAbility, (LongInteract * __th DO_APP_FUNC(0x005AF380, void, LongInteract_StartGenericAbility, (LongInteract * __this, MethodInfo * method)); DO_APP_FUNC(0x005AFA20, void, LongInteract_StopGenericAbility, (LongInteract * __this, bool isFromStartAbility, MethodInfo * method)); DO_APP_FUNC(0x005AFF50, void, LongInteract_OnCharacterAbilityActive, (LongInteract * __this, Ability * ability, bool active, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25008, LongInteract_OnCharacterAbilityActive__MethodInfo); DO_APP_FUNC(0x005B0470, void, LongInteract_OnDestroy, (LongInteract * __this, MethodInfo * method)); DO_APP_FUNC(0x005B0570, void, LongInteract__ctor, (LongInteract * __this, MethodInfo * method)); DO_APP_FUNC(0x005B0590, void, LongInteract_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, LongInteract_c__ctor, (LongInteract_c * __this, MethodInfo * method)); DO_APP_FUNC(0x005B0640, bool, LongInteract_c__Awake_b__9_0, (LongInteract_c * __this, Generic * a, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24FF8, LongInteract_c__Awake_b__9_0__MethodInfo); DO_APP_FUNC(0x0059DF80, AnimationEventTrigger *, LookAround_get_StopEvent, (LookAround * __this, MethodInfo * method)); DO_APP_FUNC(0x0059DF90, void, LookAround_set_StopEvent, (LookAround * __this, AnimationEventTrigger * value, MethodInfo * method)); DO_APP_FUNC(0x0059EE40, int32_t, LookAround_get_AbilityIntDataValue, (LookAround * __this, MethodInfo * method)); @@ -18950,6 +21643,7 @@ DO_APP_FUNC(0x0059EE40, int32_t, LookAround_get_AbilityIntData, (LookAround * __ DO_APP_FUNC(0x005B06D0, void, LookAround_Awake, (LookAround * __this, MethodInfo * method)); DO_APP_FUNC(0x005B07B0, void, LookAround_AbilityStarted, (LookAround * __this, MethodInfo * method)); DO_APP_FUNC(0x0059F010, void, LookAround_OnComplete, (LookAround * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24F10, LookAround_OnComplete__MethodInfo); DO_APP_FUNC(0x0059F040, void, LookAround_AbilityStopped, (LookAround * __this, bool force, MethodInfo * method)); DO_APP_FUNC(0x005B0870, void, LookAround_OnDestroy, (LookAround * __this, MethodInfo * method)); DO_APP_FUNC(0x0059F160, void, LookAround_UpdateRotation, (LookAround * __this, MethodInfo * method)); @@ -19015,6 +21709,7 @@ DO_APP_FUNC(0x005B6D10, void, RevivePlayer__ctor, (RevivePlayer * __this, Method DO_APP_FUNC(0x005B6D20, void, RevivePlayer_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, RevivePlayer_c__ctor, (RevivePlayer_c * __this, MethodInfo * method)); DO_APP_FUNC(0x005B6DD0, bool, RevivePlayer_c__Awake_b__9_0, (RevivePlayer_c * __this, Generic * a, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24D80, RevivePlayer_c__Awake_b__9_0__MethodInfo); DO_APP_FUNC(0x005B6E60, bool, SlaughterhouseCrankInteractable_IsInteractable, (SlaughterhouseCrankInteractable * __this, MethodInfo * method)); DO_APP_FUNC(0x005B6ED0, bool, SlaughterhouseCrankInteractable_CanInteract, (SlaughterhouseCrankInteractable * __this, GameObject * character, MethodInfo * method)); DO_APP_FUNC(0x005B6F50, bool, SlaughterhouseCrankInteractable_ShouldAllowInteractRequest, (SlaughterhouseCrankInteractable * __this, InteractObjectRequestEvent * requestEvent, MethodInfo * method)); @@ -19029,16 +21724,19 @@ DO_APP_FUNC(0x003AE050, void, SlaughterhouseCrankInteractable_WaitToStopInteract DO_APP_FUNC(0x005B76D0, bool, SlaughterhouseCrankInteractable_WaitToStopInteracting_d_9_MoveNext, (SlaughterhouseCrankInteractable_WaitToStopInteracting_d_9 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SlaughterhouseCrankInteractable_WaitToStopInteracting_d_9_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SlaughterhouseCrankInteractable_WaitToStopInteracting_d_9 * __this, MethodInfo * method)); DO_APP_FUNC(0x005B77B0, void, SlaughterhouseCrankInteractable_WaitToStopInteracting_d_9_System_Collections_IEnumerator_Reset, (SlaughterhouseCrankInteractable_WaitToStopInteracting_d_9 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24D28, SlaughterhouseCrankInteractable_WaitToStopInteracting_d_9_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SlaughterhouseCrankInteractable_WaitToStopInteracting_d_9_System_Collections_IEnumerator_get_Current, (SlaughterhouseCrankInteractable_WaitToStopInteracting_d_9 * __this, MethodInfo * method)); DO_APP_FUNC(0x005A04D0, AnimationEventTrigger *, SpawnEgg_get_StopEvent, (SpawnEgg * __this, MethodInfo * method)); DO_APP_FUNC(0x005A04E0, void, SpawnEgg_set_StopEvent, (SpawnEgg * __this, AnimationEventTrigger * value, MethodInfo * method)); DO_APP_FUNC(0x005B7800, void, SpawnEgg_Awake, (SpawnEgg * __this, MethodInfo * method)); DO_APP_FUNC(0x005B7A30, void, SpawnEgg_AbilityStarted, (SpawnEgg * __this, MethodInfo * method)); DO_APP_FUNC(0x005B7B40, void, SpawnEgg_DoSpawnEgg, (SpawnEgg * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24D00, SpawnEgg_DoSpawnEgg__MethodInfo); DO_APP_FUNC(0x005B8410, void, SpawnEgg_SetEggMetadata, (SpawnEgg * __this, SurvivalEggController * eggController, MethodInfo * method)); DO_APP_FUNC(0x005B8570, void, SpawnEgg_SetSpawnPoint, (SpawnEgg * __this, Vector3 position, MethodInfo * method)); DO_APP_FUNC(0x005B8590, void, SpawnEgg_SetHole, (SpawnEgg * __this, GameObject * hole, MethodInfo * method)); DO_APP_FUNC(0x0059F010, void, SpawnEgg_OnComplete, (SpawnEgg * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24D10, SpawnEgg_OnComplete__MethodInfo); DO_APP_FUNC(0x005B8640, void, SpawnEgg_OnDestroy, (SpawnEgg * __this, MethodInfo * method)); DO_APP_FUNC(0x005B8740, void, SpawnEgg__ctor, (SpawnEgg * __this, MethodInfo * method)); DO_APP_FUNC(0x0059DF80, AnimationEventTrigger *, Stagger_get_StopEvent, (Stagger * __this, MethodInfo * method)); @@ -19050,6 +21748,7 @@ DO_APP_FUNC(0x0059EE40, int32_t, Stagger_get_AbilityIntData, (Stagger * __this, DO_APP_FUNC(0x005B8810, void, Stagger_Awake, (Stagger * __this, MethodInfo * method)); DO_APP_FUNC(0x005B8970, void, Stagger_AbilityStarted, (Stagger * __this, MethodInfo * method)); DO_APP_FUNC(0x0059F010, void, Stagger_OnComplete, (Stagger * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24CA0, Stagger_OnComplete__MethodInfo); DO_APP_FUNC(0x0059F040, void, Stagger_AbilityStopped, (Stagger * __this, bool force, MethodInfo * method)); DO_APP_FUNC(0x005B8A30, void, Stagger_OnDestroy, (Stagger * __this, MethodInfo * method)); DO_APP_FUNC(0x0059F160, void, Stagger_UpdateRotation, (Stagger * __this, MethodInfo * method)); @@ -19093,7 +21792,9 @@ DO_APP_FUNC(0x005BC430, void, SurvivalPlopLongInteractable_LongInteractStopped, DO_APP_FUNC(0x005BC6B0, bool, SurvivalPlopLongInteractable_IsInteracting, (SurvivalPlopLongInteractable * __this, NolanBehaviour * behaviour, MethodInfo * method)); DO_APP_FUNC(0x005BC770, void, SurvivalPlopLongInteractable__ctor, (SurvivalPlopLongInteractable * __this, MethodInfo * method)); DO_APP_FUNC(0x005BC870, void, SurvivalPlopLongInteractable__StartBurning_b__17_0, (SurvivalPlopLongInteractable * __this, float val, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24BA8, SurvivalPlopLongInteractable__StartBurning_b__17_0__MethodInfo); DO_APP_FUNC(0x005BC8D0, void, SurvivalPlopLongInteractable__StopBurning_b__18_0, (SurvivalPlopLongInteractable * __this, float val, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24B90, SurvivalPlopLongInteractable__StopBurning_b__18_0__MethodInfo); DO_APP_FUNC(0x005BC930, void, SurvivalReviveInteractable_Awake, (SurvivalReviveInteractable * __this, MethodInfo * method)); DO_APP_FUNC(0x005BCA50, void, SurvivalReviveInteractable_Start, (SurvivalReviveInteractable * __this, MethodInfo * method)); DO_APP_FUNC(0x005BCB00, bool, SurvivalReviveInteractable_CanInteract, (SurvivalReviveInteractable * __this, GameObject * character, MethodInfo * method)); @@ -19117,6 +21818,7 @@ DO_APP_FUNC(0x005BDA90, void, UseBattery_Awake, (UseBattery * __this, MethodInfo DO_APP_FUNC(0x005BDCD0, void, UseBattery_AbilityStarted, (UseBattery * __this, MethodInfo * method)); DO_APP_FUNC(0x005BE050, bool, UseBattery_CanStartAbility, (UseBattery * __this, MethodInfo * method)); DO_APP_FUNC(0x0059F010, void, UseBattery_OnComplete, (UseBattery * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24AE8, UseBattery_OnComplete__MethodInfo); DO_APP_FUNC(0x005BE130, void, UseBattery__ctor, (UseBattery * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, RotateWithController_get_IsConcurrent, (RotateWithController * __this, MethodInfo * method)); DO_APP_FUNC(0x005BE1E0, void, RotateWithController_Awake, (RotateWithController * __this, MethodInfo * method)); @@ -19127,12 +21829,14 @@ DO_APP_FUNC(0x005BE740, AchievementHelpers *, AchievementHelpers_get_singleton, DO_APP_FUNC(0x005BE8E0, void, AchievementHelpers_Awake, (AchievementHelpers * __this, MethodInfo * method)); DO_APP_FUNC(0x005BED30, void, AchievementHelpers_OnEnable, (AchievementHelpers * __this, MethodInfo * method)); DO_APP_FUNC(0x005BF2A0, void, AchievementHelpers_OnUserStatsReceived, (AchievementHelpers * __this, UserStatsReceived_t pCallback, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24A88, AchievementHelpers_OnUserStatsReceived__MethodInfo); DO_APP_FUNC(0x005C0560, void, AchievementHelpers_OnAchievementStored, (AchievementHelpers * __this, UserAchievementStored_t pCallback, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24A90, AchievementHelpers_OnAchievementStored__MethodInfo); DO_APP_FUNC(0x005C0610, void, AchievementHelpers_Unlock, (AchievementHelpers * __this, String * achievementName, bool skipStoreStats, MethodInfo * method)); DO_APP_FUNC(0x005C1D70, void, AchievementHelpers_SetStat, (AchievementHelpers * __this, String * statName, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x005C1EF0, void, AchievementHelpers_SetStat_1, (AchievementHelpers * __this, String * statName, float value, MethodInfo * method)); -DO_APP_FUNC(0x005C2070, bool, AchievementHelpers_GetStat, (AchievementHelpers * __this, String * statName, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x005C20A0, bool, AchievementHelpers_GetStat_1, (AchievementHelpers * __this, String * statName, float value, MethodInfo * method)); +DO_APP_FUNC(0x005C2070, bool, AchievementHelpers_GetStat, (AchievementHelpers * __this, String * statName, int32_t * value, MethodInfo * method)); +DO_APP_FUNC(0x005C20A0, bool, AchievementHelpers_GetStat_1, (AchievementHelpers * __this, String * statName, float * value, MethodInfo * method)); DO_APP_FUNC(0x005C20D0, bool, AchievementHelpers_IncrementStat, (AchievementHelpers * __this, String * statName, int32_t incrementBy, MethodInfo * method)); DO_APP_FUNC(0x005C2290, bool, AchievementHelpers_CompletedNormalGame, (AchievementHelpers * __this, MethodInfo * method)); DO_APP_FUNC(0x004C9320, bool, AchievementHelpers_HasCompletedNormalGame, (AchievementHelpers * __this, MethodInfo * method)); @@ -19237,24 +21941,28 @@ DO_APP_FUNC(0x003AE050, void, AudioFadeController_FadeIn_d_0_System_IDisposable_ DO_APP_FUNC(0x005C5110, bool, AudioFadeController_FadeIn_d_0_MoveNext, (AudioFadeController_FadeIn_d_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, AudioFadeController_FadeIn_d_0_System_Collections_Generic_IEnumerator_System_Object__get_Current, (AudioFadeController_FadeIn_d_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x005C54B0, void, AudioFadeController_FadeIn_d_0_System_Collections_IEnumerator_Reset, (AudioFadeController_FadeIn_d_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D244B8, AudioFadeController_FadeIn_d_0_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, AudioFadeController_FadeIn_d_0_System_Collections_IEnumerator_get_Current, (AudioFadeController_FadeIn_d_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, AudioFadeController_FadeOut_d_1__ctor, (AudioFadeController_FadeOut_d_1 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AudioFadeController_FadeOut_d_1_System_IDisposable_Dispose, (AudioFadeController_FadeOut_d_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x005C5500, bool, AudioFadeController_FadeOut_d_1_MoveNext, (AudioFadeController_FadeOut_d_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, AudioFadeController_FadeOut_d_1_System_Collections_Generic_IEnumerator_System_Object__get_Current, (AudioFadeController_FadeOut_d_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x005C5830, void, AudioFadeController_FadeOut_d_1_System_Collections_IEnumerator_Reset, (AudioFadeController_FadeOut_d_1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D244B0, AudioFadeController_FadeOut_d_1_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, AudioFadeController_FadeOut_d_1_System_Collections_IEnumerator_get_Current, (AudioFadeController_FadeOut_d_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, AudioFadeController_FadeInDistance_d_2__ctor, (AudioFadeController_FadeInDistance_d_2 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AudioFadeController_FadeInDistance_d_2_System_IDisposable_Dispose, (AudioFadeController_FadeInDistance_d_2 * __this, MethodInfo * method)); DO_APP_FUNC(0x005C5880, bool, AudioFadeController_FadeInDistance_d_2_MoveNext, (AudioFadeController_FadeInDistance_d_2 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, AudioFadeController_FadeInDistance_d_2_System_Collections_Generic_IEnumerator_System_Object__get_Current, (AudioFadeController_FadeInDistance_d_2 * __this, MethodInfo * method)); DO_APP_FUNC(0x005C5BC0, void, AudioFadeController_FadeInDistance_d_2_System_Collections_IEnumerator_Reset, (AudioFadeController_FadeInDistance_d_2 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D244A8, AudioFadeController_FadeInDistance_d_2_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, AudioFadeController_FadeInDistance_d_2_System_Collections_IEnumerator_get_Current, (AudioFadeController_FadeInDistance_d_2 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, AudioFadeController_FadeOutDistance_d_3__ctor, (AudioFadeController_FadeOutDistance_d_3 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AudioFadeController_FadeOutDistance_d_3_System_IDisposable_Dispose, (AudioFadeController_FadeOutDistance_d_3 * __this, MethodInfo * method)); DO_APP_FUNC(0x005C5C10, bool, AudioFadeController_FadeOutDistance_d_3_MoveNext, (AudioFadeController_FadeOutDistance_d_3 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, AudioFadeController_FadeOutDistance_d_3_System_Collections_Generic_IEnumerator_System_Object__get_Current, (AudioFadeController_FadeOutDistance_d_3 * __this, MethodInfo * method)); DO_APP_FUNC(0x005C5F20, void, AudioFadeController_FadeOutDistance_d_3_System_Collections_IEnumerator_Reset, (AudioFadeController_FadeOutDistance_d_3 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D244A0, AudioFadeController_FadeOutDistance_d_3_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, AudioFadeController_FadeOutDistance_d_3_System_Collections_IEnumerator_get_Current, (AudioFadeController_FadeOutDistance_d_3 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BoltTokenHelpers__ctor, (BoltTokenHelpers * __this, MethodInfo * method)); DO_APP_FUNC(0x005C5F70, BoltTokenHelpers *, BoltTokenHelpers_get_singleton, (MethodInfo * method)); @@ -19272,12 +21980,14 @@ DO_APP_FUNC(0x003AE050, void, CanvasFadeController_FadeIn_d_0_System_IDisposable DO_APP_FUNC(0x005C6A60, bool, CanvasFadeController_FadeIn_d_0_MoveNext, (CanvasFadeController_FadeIn_d_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, CanvasFadeController_FadeIn_d_0_System_Collections_Generic_IEnumerator_System_Object__get_Current, (CanvasFadeController_FadeIn_d_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x005C6D00, void, CanvasFadeController_FadeIn_d_0_System_Collections_IEnumerator_Reset, (CanvasFadeController_FadeIn_d_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24460, CanvasFadeController_FadeIn_d_0_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, CanvasFadeController_FadeIn_d_0_System_Collections_IEnumerator_get_Current, (CanvasFadeController_FadeIn_d_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, CanvasFadeController_FadeOut_d_1__ctor, (CanvasFadeController_FadeOut_d_1 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CanvasFadeController_FadeOut_d_1_System_IDisposable_Dispose, (CanvasFadeController_FadeOut_d_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x005C6D50, bool, CanvasFadeController_FadeOut_d_1_MoveNext, (CanvasFadeController_FadeOut_d_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, CanvasFadeController_FadeOut_d_1_System_Collections_Generic_IEnumerator_System_Object__get_Current, (CanvasFadeController_FadeOut_d_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x005C6FD0, void, CanvasFadeController_FadeOut_d_1_System_Collections_IEnumerator_Reset, (CanvasFadeController_FadeOut_d_1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24458, CanvasFadeController_FadeOut_d_1_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, CanvasFadeController_FadeOut_d_1_System_Collections_IEnumerator_get_Current, (CanvasFadeController_FadeOut_d_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x005C7020, void, CanvasGroupExtensions_Hide, (CanvasGroup * canvasGroup, MethodInfo * method)); DO_APP_FUNC(0x005C71A0, void, CanvasGroupExtensions_Show, (CanvasGroup * canvasGroup, MethodInfo * method)); @@ -19285,6 +21995,7 @@ DO_APP_FUNC(0x005C7340, ChallengeHelpers *, ChallengeHelpers_get_singleton, (Met DO_APP_FUNC(0x005C74E0, void, ChallengeHelpers_Awake, (ChallengeHelpers * __this, MethodInfo * method)); DO_APP_FUNC(0x005C7A80, void, ChallengeHelpers_OnEnable, (ChallengeHelpers * __this, MethodInfo * method)); DO_APP_FUNC(0x005C7B30, void, ChallengeHelpers_OnSceneLoaded, (ChallengeHelpers * __this, Scene scene, LoadSceneMode__Enum mode, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D243F8, ChallengeHelpers_OnSceneLoaded__MethodInfo); DO_APP_FUNC(0x005C7E20, void, ChallengeHelpers_OnDisable, (ChallengeHelpers * __this, MethodInfo * method)); DO_APP_FUNC(0x005C7ED0, void, ChallengeHelpers_OnDestroy, (ChallengeHelpers * __this, MethodInfo * method)); DO_APP_FUNC(0x005C81A0, void, ChallengeHelpers_PlayChallengeCompletedClip, (ChallengeHelpers * __this, MethodInfo * method)); @@ -19305,11 +22016,17 @@ DO_APP_FUNC(0x005CA720, String *, ChallengeHelpers_GetDifficultyModifierString, DO_APP_FUNC(0x005CA860, void, ChallengeHelpers_StoreChallengesProgress, (ChallengeHelpers * __this, MethodInfo * method)); DO_APP_FUNC(0x005CA8B0, void, ChallengeHelpers_OnAnnaWinEnding, (ChallengeHelpers * __this, MethodInfo * method)); DO_APP_FUNC(0x005CA930, void, ChallengeHelpers_OnEndingEvent, (ChallengeHelpers * __this, int32_t ending, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24438, ChallengeHelpers_OnEndingEvent__MethodInfo); DO_APP_FUNC(0x005CADA0, void, ChallengeHelpers_OnLocalPlayerUseBattery, (ChallengeHelpers * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24410, ChallengeHelpers_OnLocalPlayerUseBattery__MethodInfo); DO_APP_FUNC(0x005CADB0, void, ChallengeHelpers_OnLocalPlayerSearchPoop, (ChallengeHelpers * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24420, ChallengeHelpers_OnLocalPlayerSearchPoop__MethodInfo); DO_APP_FUNC(0x005CADC0, void, ChallengeHelpers_OnLocalPlayerKickedTrashCan, (ChallengeHelpers * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24428, ChallengeHelpers_OnLocalPlayerKickedTrashCan__MethodInfo); DO_APP_FUNC(0x005CADD0, void, ChallengeHelpers_OnLocalPlayerUnlockedLockbox, (ChallengeHelpers * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24418, ChallengeHelpers_OnLocalPlayerUnlockedLockbox__MethodInfo); DO_APP_FUNC(0x005CADE0, void, ChallengeHelpers_OnLocalPlayerBurnWeb, (ChallengeHelpers * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24430, ChallengeHelpers_OnLocalPlayerBurnWeb__MethodInfo); DO_APP_FUNC(0x005CADF0, void, ChallengeHelpers_TryIncrementChallengeProgress, (ChallengeHelpers * __this, ChallengeHelpers_BaseChallenge__Enum baseChallenge, MethodInfo * method)); DO_APP_FUNC(0x005CAF20, void, ChallengeHelpers_TryIncrementChallengeProgressPostGame, (ChallengeHelpers * __this, ChallengeHelpers_BaseChallenge__Enum baseChallenge, GameStatsPlayerToken * playerToken, GameConfigToken * gameConfigToken, GameStatsToken * gameStatsToken, MethodInfo * method)); DO_APP_FUNC(0x005CB1B0, bool, ChallengeHelpers_CheckChallengeDifficultyModifier, (ChallengeHelpers * __this, DevourGameMode__Enum difficultyModifier, MethodInfo * method)); @@ -19335,18 +22052,21 @@ DO_APP_FUNC(0x003AE050, void, CharacterHelpers_Dissolve_d_12_System_IDisposable_ DO_APP_FUNC(0x005CE000, bool, CharacterHelpers_Dissolve_d_12_MoveNext, (CharacterHelpers_Dissolve_d_12 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, CharacterHelpers_Dissolve_d_12_System_Collections_Generic_IEnumerator_System_Object__get_Current, (CharacterHelpers_Dissolve_d_12 * __this, MethodInfo * method)); DO_APP_FUNC(0x005CE6A0, void, CharacterHelpers_Dissolve_d_12_System_Collections_IEnumerator_Reset, (CharacterHelpers_Dissolve_d_12 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24290, CharacterHelpers_Dissolve_d_12_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, CharacterHelpers_Dissolve_d_12_System_Collections_IEnumerator_get_Current, (CharacterHelpers_Dissolve_d_12 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, CharacterHelpers_ExecuteReverseDissolve_d_14__ctor, (CharacterHelpers_ExecuteReverseDissolve_d_14 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CharacterHelpers_ExecuteReverseDissolve_d_14_System_IDisposable_Dispose, (CharacterHelpers_ExecuteReverseDissolve_d_14 * __this, MethodInfo * method)); DO_APP_FUNC(0x005CE6F0, bool, CharacterHelpers_ExecuteReverseDissolve_d_14_MoveNext, (CharacterHelpers_ExecuteReverseDissolve_d_14 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, CharacterHelpers_ExecuteReverseDissolve_d_14_System_Collections_Generic_IEnumerator_System_Object__get_Current, (CharacterHelpers_ExecuteReverseDissolve_d_14 * __this, MethodInfo * method)); DO_APP_FUNC(0x005CE840, void, CharacterHelpers_ExecuteReverseDissolve_d_14_System_Collections_IEnumerator_Reset, (CharacterHelpers_ExecuteReverseDissolve_d_14 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24288, CharacterHelpers_ExecuteReverseDissolve_d_14_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, CharacterHelpers_ExecuteReverseDissolve_d_14_System_Collections_IEnumerator_get_Current, (CharacterHelpers_ExecuteReverseDissolve_d_14 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, CharacterHelpers_ExecuteDissolve_d_15__ctor, (CharacterHelpers_ExecuteDissolve_d_15 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CharacterHelpers_ExecuteDissolve_d_15_System_IDisposable_Dispose, (CharacterHelpers_ExecuteDissolve_d_15 * __this, MethodInfo * method)); DO_APP_FUNC(0x005CE890, bool, CharacterHelpers_ExecuteDissolve_d_15_MoveNext, (CharacterHelpers_ExecuteDissolve_d_15 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, CharacterHelpers_ExecuteDissolve_d_15_System_Collections_Generic_IEnumerator_System_Object__get_Current, (CharacterHelpers_ExecuteDissolve_d_15 * __this, MethodInfo * method)); DO_APP_FUNC(0x005CE9E0, void, CharacterHelpers_ExecuteDissolve_d_15_System_Collections_IEnumerator_Reset, (CharacterHelpers_ExecuteDissolve_d_15 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24280, CharacterHelpers_ExecuteDissolve_d_15_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, CharacterHelpers_ExecuteDissolve_d_15_System_Collections_IEnumerator_get_Current, (CharacterHelpers_ExecuteDissolve_d_15 * __this, MethodInfo * method)); DO_APP_FUNC(0x005CEA30, void, DebugDrawHelpers_DrawBounds, (Bounds b, Color color, float delay, MethodInfo * method)); DO_APP_FUNC(0x005CFB30, void, DevourColors__cctor, (MethodInfo * method)); @@ -19446,6 +22166,7 @@ DO_APP_FUNC(0x005D91E0, void, OptionsHelpers_set_classicEmotes, (OptionsHelpers DO_APP_FUNC(0x005D91F0, OptionsHelpers *, OptionsHelpers_get_singleton, (MethodInfo * method)); DO_APP_FUNC(0x005D9250, void, OptionsHelpers_Awake, (OptionsHelpers * __this, MethodInfo * method)); DO_APP_FUNC(0x005D9F50, void, OptionsHelpers_OnAssemblyLoaded, (OptionsHelpers * __this, Object * sender, AssemblyLoadEventArgs * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD4190, OptionsHelpers_OnAssemblyLoaded__MethodInfo); DO_APP_FUNC(0x005DA0E0, IEnumerator *, OptionsHelpers_DetectInjectedAssemblies, (OptionsHelpers * __this, MethodInfo * method)); DO_APP_FUNC(0x005DA130, void, OptionsHelpers_Update, (OptionsHelpers * __this, MethodInfo * method)); DO_APP_FUNC(0x005DA1F0, void, OptionsHelpers_InGame, (OptionsHelpers * __this, MethodInfo * method)); @@ -19453,9 +22174,13 @@ DO_APP_FUNC(0x005DA6F0, void, OptionsHelpers_LeaveGame, (OptionsHelpers * __this DO_APP_FUNC(0x005DA700, void, OptionsHelpers_OnSensitivityChanged, (OptionsHelpers * __this, float sensitivity, MethodInfo * method)); DO_APP_FUNC(0x005DA9D0, float, OptionsHelpers_ConvertInputValueToSensitivity, (OptionsHelpers * __this, float value, MethodInfo * method)); DO_APP_FUNC(0x005DAA30, void, OptionsHelpers_OnMasterVolumeChanged, (OptionsHelpers * __this, float volume, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC848, OptionsHelpers_OnMasterVolumeChanged__MethodInfo); DO_APP_FUNC(0x005DAB00, void, OptionsHelpers_OnMusicVolumeChanged, (OptionsHelpers * __this, float volume, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC830, OptionsHelpers_OnMusicVolumeChanged__MethodInfo); DO_APP_FUNC(0x005DABA0, void, OptionsHelpers_OnEffectsVolumeChanged, (OptionsHelpers * __this, float volume, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC860, OptionsHelpers_OnEffectsVolumeChanged__MethodInfo); DO_APP_FUNC(0x005DAC40, void, OptionsHelpers_OnVoiceVolumeChanged, (OptionsHelpers * __this, float volume, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC810, OptionsHelpers_OnVoiceVolumeChanged__MethodInfo); DO_APP_FUNC(0x005DACE0, void, OptionsHelpers_OnFOVChanged, (OptionsHelpers * __this, float fov, Text * fovText, MethodInfo * method)); DO_APP_FUNC(0x005DAEE0, void, OptionsHelpers_OnBrightnessChanged, (OptionsHelpers * __this, float brightness, MethodInfo * method)); DO_APP_FUNC(0x005DAF50, void, OptionsHelpers_OnVsyncClick, (OptionsHelpers * __this, LocalizationTextToggle * stateText, MethodInfo * method)); @@ -19464,19 +22189,28 @@ DO_APP_FUNC(0x005DB3F0, void, OptionsHelpers_OnQualityIncreaseClick, (OptionsHel DO_APP_FUNC(0x005DB760, void, OptionsHelpers_OnQualityDecreaseClick, (OptionsHelpers * __this, Text * currentQuality, Button * increaseBtn, Button * decreaseBtn, MethodInfo * method)); DO_APP_FUNC(0x005DBA80, void, OptionsHelpers_SetVRLODBias, (OptionsHelpers * __this, int32_t currentQualityLevel, MethodInfo * method)); DO_APP_FUNC(0x005DBD10, void, OptionsHelpers_OnAntialiasingChanged, (OptionsHelpers * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC888, OptionsHelpers_OnAntialiasingChanged__MethodInfo); DO_APP_FUNC(0x005DC010, void, OptionsHelpers_OnFPSLimitChanged, (OptionsHelpers * __this, int32_t value, Dropdown * dropdown, MethodInfo * method)); DO_APP_FUNC(0x005DC120, void, OptionsHelpers_OnCrouchModeChanged, (OptionsHelpers * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC878, OptionsHelpers_OnCrouchModeChanged__MethodInfo); DO_APP_FUNC(0x005DC3E0, void, OptionsHelpers_OnSprintModeChanged, (OptionsHelpers * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x005DC700, void, OptionsHelpers_OnInputModeChanged, (OptionsHelpers * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC840, OptionsHelpers_OnInputModeChanged__MethodInfo); DO_APP_FUNC(0x005DC950, void, OptionsHelpers_OnInputAccelerationChanged, (OptionsHelpers * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC858, OptionsHelpers_OnInputAccelerationChanged__MethodInfo); DO_APP_FUNC(0x005DCBA0, void, OptionsHelpers_OnArachnophobiaModeChanged, (OptionsHelpers * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC870, OptionsHelpers_OnArachnophobiaModeChanged__MethodInfo); DO_APP_FUNC(0x005DD3A0, void, OptionsHelpers_OnHeadBobChanged, (OptionsHelpers * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC850, OptionsHelpers_OnHeadBobChanged__MethodInfo); DO_APP_FUNC(0x005DD750, void, OptionsHelpers_OnGamepadRumbleChanged, (OptionsHelpers * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC868, OptionsHelpers_OnGamepadRumbleChanged__MethodInfo); DO_APP_FUNC(0x005DD7B0, void, OptionsHelpers_OnVoiceChatChanged, (OptionsHelpers * __this, int32_t value, Dropdown * inputMode, Slider * volume, MethodInfo * method)); DO_APP_FUNC(0x005DDAE0, void, OptionsHelpers_OnVoiceInputModeChanged, (OptionsHelpers * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC828, OptionsHelpers_OnVoiceInputModeChanged__MethodInfo); DO_APP_FUNC(0x005DDB80, void, OptionsHelpers_OnVoiceInputDeviceChanged, (OptionsHelpers * __this, int32_t value, Dropdown * voiceInputDevices, MethodInfo * method)); DO_APP_FUNC(0x005DDDC0, void, OptionsHelpers_PopulateVoiceInputDevices, (OptionsHelpers * __this, Dropdown * voiceInputDevice, MethodInfo * method)); DO_APP_FUNC(0x005DE240, void, OptionsHelpers_OnMuteJumpScaresChanged, (OptionsHelpers * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC838, OptionsHelpers_OnMuteJumpScaresChanged__MethodInfo); DO_APP_FUNC(0x005DE2A0, void, OptionsHelpers_OnMotionBlurClick, (OptionsHelpers * __this, LocalizationTextToggle * stateText, MethodInfo * method)); DO_APP_FUNC(0x005DE470, void, OptionsHelpers_OnHDFlashlightClick, (OptionsHelpers * __this, LocalizationTextToggle * stateText, MethodInfo * method)); DO_APP_FUNC(0x005DE8E0, void, OptionsHelpers_OnResolutionClick, (OptionsHelpers * __this, CanvasGroup * modal, GameObject * content, Button * applyBtn, Button * closeBtn, Dropdown * displayModeDropdown, AudioSource * hoverAudioSource, MethodInfo * method)); @@ -19515,6 +22249,7 @@ DO_APP_FUNC(0x005E5900, CharacterEmote *, OptionsHelpers_GetEmoteBySteamItemDefI DO_APP_FUNC(0x005E59E0, void, OptionsHelpers_ShowLockedCharacter, (OptionsHelpers * __this, GameObject * survivalPlayer, MethodInfo * method)); DO_APP_FUNC(0x005E5E10, bool, OptionsHelpers_IsRobeUnlocked, (OptionsHelpers * __this, String * robe, String * character, MethodInfo * method)); DO_APP_FUNC(0x005E6D80, void, OptionsHelpers_OnProfanityFilteringChanged, (OptionsHelpers * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC820, OptionsHelpers_OnProfanityFilteringChanged__MethodInfo); DO_APP_FUNC(0x005E6DF0, void, OptionsHelpers_WarnPlayerDisconnected, (OptionsHelpers * __this, BoltConnection * connection, DissonanceComms * dissonanceComms, GameObject * messagePrefab, Transform * messageListContent, MethodInfo * method)); DO_APP_FUNC(0x005E7270, CharacterOutfit *, OptionsHelpers_GetOutfitByName, (OptionsHelpers * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x005E73A0, bool, OptionsHelpers_HasOutfit, (OptionsHelpers * __this, String * outfitName, String * characterName, MethodInfo * method)); @@ -19556,68 +22291,94 @@ DO_APP_FUNC(0x003AE050, void, OptionsHelpers_DetectInjectedAssemblies_d_77_Syste DO_APP_FUNC(0x005EDCA0, bool, OptionsHelpers_DetectInjectedAssemblies_d_77_MoveNext, (OptionsHelpers_DetectInjectedAssemblies_d_77 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, OptionsHelpers_DetectInjectedAssemblies_d_77_System_Collections_Generic_IEnumerator_System_Object__get_Current, (OptionsHelpers_DetectInjectedAssemblies_d_77 * __this, MethodInfo * method)); DO_APP_FUNC(0x005EE020, void, OptionsHelpers_DetectInjectedAssemblies_d_77_System_Collections_IEnumerator_Reset, (OptionsHelpers_DetectInjectedAssemblies_d_77 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2B40, OptionsHelpers_DetectInjectedAssemblies_d_77_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, OptionsHelpers_DetectInjectedAssemblies_d_77_System_Collections_IEnumerator_get_Current, (OptionsHelpers_DetectInjectedAssemblies_d_77 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, OptionsHelpers_c_DisplayClass111_0__ctor, (OptionsHelpers_c_DisplayClass111_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, OptionsHelpers_c_DisplayClass111_1__ctor, (OptionsHelpers_c_DisplayClass111_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x005EE070, void, OptionsHelpers_c_DisplayClass111_1__PopulateResolutions_b__1, (OptionsHelpers_c_DisplayClass111_1 * __this, bool isOn, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3B20, OptionsHelpers_c_DisplayClass111_1__PopulateResolutions_b__1__MethodInfo); DO_APP_FUNC(0x005EE170, void, OptionsHelpers_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, OptionsHelpers_c__ctor, (OptionsHelpers_c * __this, MethodInfo * method)); DO_APP_FUNC(0x005EE220, String *, OptionsHelpers_c__PopulateResolutions_b__111_0, (OptionsHelpers_c * __this, Resolution r, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3B38, OptionsHelpers_c__PopulateResolutions_b__111_0__MethodInfo); DO_APP_FUNC(0x003AE050, void, OptionsHelpers_c__PopulateKeyBindings_b__120_1, (OptionsHelpers_c * __this, InputMapper_StoppedEventData * data, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD38B0, OptionsHelpers_c__PopulateKeyBindings_b__120_1__MethodInfo); DO_APP_FUNC(0x003AE050, void, OptionsHelpers_c_DisplayClass120_0__ctor, (OptionsHelpers_c_DisplayClass120_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x005EE2F0, void, OptionsHelpers_c_DisplayClass120_0__PopulateKeyBindings_b__0, (OptionsHelpers_c_DisplayClass120_0 * __this, InputMapper_InputMappedEventData * data, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3890, OptionsHelpers_c_DisplayClass120_0__PopulateKeyBindings_b__0__MethodInfo); DO_APP_FUNC(0x005EE880, void, OptionsHelpers_c_DisplayClass120_0__PopulateKeyBindings_b__2, (OptionsHelpers_c_DisplayClass120_0 * __this, InputMapper_ConflictFoundEventData * conflictData, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD38A0, OptionsHelpers_c_DisplayClass120_0__PopulateKeyBindings_b__2__MethodInfo); DO_APP_FUNC(0x003AE050, void, OptionsHelpers_c_DisplayClass120_1__ctor, (OptionsHelpers_c_DisplayClass120_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x005EEA60, void, OptionsHelpers_c_DisplayClass120_1__PopulateKeyBindings_b__5, (OptionsHelpers_c_DisplayClass120_1 * __this, InputMapper_ConflictFoundEventData * conflictData, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3888, OptionsHelpers_c_DisplayClass120_1__PopulateKeyBindings_b__5__MethodInfo); DO_APP_FUNC(0x003AE050, void, OptionsHelpers_c_DisplayClass120_2__ctor, (OptionsHelpers_c_DisplayClass120_2 * __this, MethodInfo * method)); DO_APP_FUNC(0x005EEB00, void, OptionsHelpers_c_DisplayClass120_2__PopulateKeyBindings_b__3, (OptionsHelpers_c_DisplayClass120_2 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3870, OptionsHelpers_c_DisplayClass120_2__PopulateKeyBindings_b__3__MethodInfo); DO_APP_FUNC(0x005EF590, void, OptionsHelpers_c_DisplayClass120_2__PopulateKeyBindings_b__4, (OptionsHelpers_c_DisplayClass120_2 * __this, InputMapper_ConflictFoundEventData * conflictData, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3840, OptionsHelpers_c_DisplayClass120_2__PopulateKeyBindings_b__4__MethodInfo); DO_APP_FUNC(0x003BCD60, void, OptionsHelpers_DelayListeningForBinding_d_122__ctor, (OptionsHelpers_DelayListeningForBinding_d_122 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, OptionsHelpers_DelayListeningForBinding_d_122_System_IDisposable_Dispose, (OptionsHelpers_DelayListeningForBinding_d_122 * __this, MethodInfo * method)); DO_APP_FUNC(0x005EF890, bool, OptionsHelpers_DelayListeningForBinding_d_122_MoveNext, (OptionsHelpers_DelayListeningForBinding_d_122 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, OptionsHelpers_DelayListeningForBinding_d_122_System_Collections_Generic_IEnumerator_System_Object__get_Current, (OptionsHelpers_DelayListeningForBinding_d_122 * __this, MethodInfo * method)); DO_APP_FUNC(0x005EF980, void, OptionsHelpers_DelayListeningForBinding_d_122_System_Collections_IEnumerator_Reset, (OptionsHelpers_DelayListeningForBinding_d_122 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2AA8, OptionsHelpers_DelayListeningForBinding_d_122_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, OptionsHelpers_DelayListeningForBinding_d_122_System_Collections_IEnumerator_get_Current, (OptionsHelpers_DelayListeningForBinding_d_122 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, OptionsHelpers_ListeningForBinding_d_123__ctor, (OptionsHelpers_ListeningForBinding_d_123 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, OptionsHelpers_ListeningForBinding_d_123_System_IDisposable_Dispose, (OptionsHelpers_ListeningForBinding_d_123 * __this, MethodInfo * method)); DO_APP_FUNC(0x005EF9D0, bool, OptionsHelpers_ListeningForBinding_d_123_MoveNext, (OptionsHelpers_ListeningForBinding_d_123 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, OptionsHelpers_ListeningForBinding_d_123_System_Collections_Generic_IEnumerator_System_Object__get_Current, (OptionsHelpers_ListeningForBinding_d_123 * __this, MethodInfo * method)); DO_APP_FUNC(0x005EFE90, void, OptionsHelpers_ListeningForBinding_d_123_System_Collections_IEnumerator_Reset, (OptionsHelpers_ListeningForBinding_d_123 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2A90, OptionsHelpers_ListeningForBinding_d_123_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, OptionsHelpers_ListeningForBinding_d_123_System_Collections_IEnumerator_get_Current, (OptionsHelpers_ListeningForBinding_d_123 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, OptionsHelpers_DelayClearListeningForBinding_d_125__ctor, (OptionsHelpers_DelayClearListeningForBinding_d_125 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, OptionsHelpers_DelayClearListeningForBinding_d_125_System_IDisposable_Dispose, (OptionsHelpers_DelayClearListeningForBinding_d_125 * __this, MethodInfo * method)); DO_APP_FUNC(0x005EFEE0, bool, OptionsHelpers_DelayClearListeningForBinding_d_125_MoveNext, (OptionsHelpers_DelayClearListeningForBinding_d_125 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, OptionsHelpers_DelayClearListeningForBinding_d_125_System_Collections_Generic_IEnumerator_System_Object__get_Current, (OptionsHelpers_DelayClearListeningForBinding_d_125 * __this, MethodInfo * method)); DO_APP_FUNC(0x005F05F0, void, OptionsHelpers_DelayClearListeningForBinding_d_125_System_Collections_IEnumerator_Reset, (OptionsHelpers_DelayClearListeningForBinding_d_125 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2A58, OptionsHelpers_DelayClearListeningForBinding_d_125_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, OptionsHelpers_DelayClearListeningForBinding_d_125_System_Collections_IEnumerator_get_Current, (OptionsHelpers_DelayClearListeningForBinding_d_125 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, OptionsHelpers_c_DisplayClass131_0__ctor, (OptionsHelpers_c_DisplayClass131_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x005F0640, bool, OptionsHelpers_c_DisplayClass131_0__GetCharacterAvatar_b__0, (OptionsHelpers_c_DisplayClass131_0 * __this, CharacterData * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3428, OptionsHelpers_c_DisplayClass131_0__GetCharacterAvatar_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, OptionsHelpers_c_DisplayClass132_0__ctor, (OptionsHelpers_c_DisplayClass132_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x005F0640, bool, OptionsHelpers_c_DisplayClass132_0__GetCharacterBio_b__0, (OptionsHelpers_c_DisplayClass132_0 * __this, CharacterData * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3408, OptionsHelpers_c_DisplayClass132_0__GetCharacterBio_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, OptionsHelpers_c_DisplayClass133_0__ctor, (OptionsHelpers_c_DisplayClass133_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x005F0640, bool, OptionsHelpers_c_DisplayClass133_0__GetCharacterData_b__0, (OptionsHelpers_c_DisplayClass133_0 * __this, CharacterData * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD33D8, OptionsHelpers_c_DisplayClass133_0__GetCharacterData_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, OptionsHelpers_c_DisplayClass134_0__ctor, (OptionsHelpers_c_DisplayClass134_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0056DB40, bool, OptionsHelpers_c_DisplayClass134_0__GetRobeUnlockableDescriptionKey_b__0, (OptionsHelpers_c_DisplayClass134_0 * __this, CharacterRobe * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3358, OptionsHelpers_c_DisplayClass134_0__GetRobeUnlockableDescriptionKey_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, OptionsHelpers_c_DisplayClass135_0__ctor, (OptionsHelpers_c_DisplayClass135_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0056DB40, bool, OptionsHelpers_c_DisplayClass135_0__GetRobeSprite_b__0, (OptionsHelpers_c_DisplayClass135_0 * __this, CharacterRobe * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3320, OptionsHelpers_c_DisplayClass135_0__GetRobeSprite_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, OptionsHelpers_c_DisplayClass137_0__ctor, (OptionsHelpers_c_DisplayClass137_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x005F06A0, bool, OptionsHelpers_c_DisplayClass137_0__GetPerkByName_b__0, (OptionsHelpers_c_DisplayClass137_0 * __this, CharacterPerk * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3288, OptionsHelpers_c_DisplayClass137_0__GetPerkByName_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, OptionsHelpers_c_DisplayClass138_0__ctor, (OptionsHelpers_c_DisplayClass138_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x005F0700, bool, OptionsHelpers_c_DisplayClass138_0__GetFlashlightByName_b__0, (OptionsHelpers_c_DisplayClass138_0 * __this, CharacterFlashlight * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3240, OptionsHelpers_c_DisplayClass138_0__GetFlashlightByName_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, OptionsHelpers_c_DisplayClass139_0__ctor, (OptionsHelpers_c_DisplayClass139_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x005F0700, bool, OptionsHelpers_c_DisplayClass139_0__GetPetByName_b__0, (OptionsHelpers_c_DisplayClass139_0 * __this, CharacterPet * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3208, OptionsHelpers_c_DisplayClass139_0__GetPetByName_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, OptionsHelpers_c_DisplayClass140_0__ctor, (OptionsHelpers_c_DisplayClass140_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x005F06A0, bool, OptionsHelpers_c_DisplayClass140_0__GetEmoteByName_b__0, (OptionsHelpers_c_DisplayClass140_0 * __this, CharacterEmote * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD31C8, OptionsHelpers_c_DisplayClass140_0__GetEmoteByName_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, OptionsHelpers_c_DisplayClass141_0__ctor, (OptionsHelpers_c_DisplayClass141_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x005F0760, bool, OptionsHelpers_c_DisplayClass141_0__GetEmoteByID_b__0, (OptionsHelpers_c_DisplayClass141_0 * __this, CharacterEmote * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3198, OptionsHelpers_c_DisplayClass141_0__GetEmoteByID_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, OptionsHelpers_c_DisplayClass142_0__ctor, (OptionsHelpers_c_DisplayClass142_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00596860, bool, OptionsHelpers_c_DisplayClass142_0__GetEmoteBySteamItemDefId_b__0, (OptionsHelpers_c_DisplayClass142_0 * __this, CharacterEmote * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3168, OptionsHelpers_c_DisplayClass142_0__GetEmoteBySteamItemDefId_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, OptionsHelpers_c_DisplayClass147_0__ctor, (OptionsHelpers_c_DisplayClass147_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x005F0780, bool, OptionsHelpers_c_DisplayClass147_0__GetOutfitByName_b__0, (OptionsHelpers_c_DisplayClass147_0 * __this, CharacterOutfit * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2F50, OptionsHelpers_c_DisplayClass147_0__GetOutfitByName_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, OptionsHelpers_c_DisplayClass160_0__ctor, (OptionsHelpers_c_DisplayClass160_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x005F07E0, bool, OptionsHelpers_c_DisplayClass160_0__OnVRTurningAnglePrev_b__0, (OptionsHelpers_c_DisplayClass160_0 * __this, int32_t angle, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2D88, OptionsHelpers_c_DisplayClass160_0__OnVRTurningAnglePrev_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, OptionsHelpers_c_DisplayClass161_0__ctor, (OptionsHelpers_c_DisplayClass161_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x005F07E0, bool, OptionsHelpers_c_DisplayClass161_0__OnVRTurningAngleNext_b__0, (OptionsHelpers_c_DisplayClass161_0 * __this, int32_t angle, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2D60, OptionsHelpers_c_DisplayClass161_0__OnVRTurningAngleNext_b__0__MethodInfo); DO_APP_FUNC(0x005F07F0, void, CharacterData__ctor, (CharacterData * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CharacterRobe__ctor, (CharacterRobe * __this, MethodInfo * method)); DO_APP_FUNC(0x005F0800, void, CharacterOutfit__ctor, (CharacterOutfit * __this, MethodInfo * method)); @@ -19672,24 +22433,28 @@ DO_APP_FUNC(0x003AE050, void, RewiredHelpers_StartListeningDelayed_d_25_System_I DO_APP_FUNC(0x005F5400, bool, RewiredHelpers_StartListeningDelayed_d_25_MoveNext, (RewiredHelpers_StartListeningDelayed_d_25 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, RewiredHelpers_StartListeningDelayed_d_25_System_Collections_Generic_IEnumerator_System_Object__get_Current, (RewiredHelpers_StartListeningDelayed_d_25 * __this, MethodInfo * method)); DO_APP_FUNC(0x005F56D0, void, RewiredHelpers_StartListeningDelayed_d_25_System_Collections_IEnumerator_Reset, (RewiredHelpers_StartListeningDelayed_d_25 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6650, RewiredHelpers_StartListeningDelayed_d_25_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, RewiredHelpers_StartListeningDelayed_d_25_System_Collections_IEnumerator_get_Current, (RewiredHelpers_StartListeningDelayed_d_25 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, RewiredHelpers_HeartbeatVibration_d_32__ctor, (RewiredHelpers_HeartbeatVibration_d_32 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, RewiredHelpers_HeartbeatVibration_d_32_System_IDisposable_Dispose, (RewiredHelpers_HeartbeatVibration_d_32 * __this, MethodInfo * method)); DO_APP_FUNC(0x005F5720, bool, RewiredHelpers_HeartbeatVibration_d_32_MoveNext, (RewiredHelpers_HeartbeatVibration_d_32 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, RewiredHelpers_HeartbeatVibration_d_32_System_Collections_Generic_IEnumerator_System_Object__get_Current, (RewiredHelpers_HeartbeatVibration_d_32 * __this, MethodInfo * method)); DO_APP_FUNC(0x005F5AB0, void, RewiredHelpers_HeartbeatVibration_d_32_System_Collections_IEnumerator_Reset, (RewiredHelpers_HeartbeatVibration_d_32 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6640, RewiredHelpers_HeartbeatVibration_d_32_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, RewiredHelpers_HeartbeatVibration_d_32_System_Collections_IEnumerator_get_Current, (RewiredHelpers_HeartbeatVibration_d_32 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, RewiredHelpers_SetVibrationInternal_d_33__ctor, (RewiredHelpers_SetVibrationInternal_d_33 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, RewiredHelpers_SetVibrationInternal_d_33_System_IDisposable_Dispose, (RewiredHelpers_SetVibrationInternal_d_33 * __this, MethodInfo * method)); DO_APP_FUNC(0x005F5B00, bool, RewiredHelpers_SetVibrationInternal_d_33_MoveNext, (RewiredHelpers_SetVibrationInternal_d_33 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, RewiredHelpers_SetVibrationInternal_d_33_System_Collections_Generic_IEnumerator_System_Object__get_Current, (RewiredHelpers_SetVibrationInternal_d_33 * __this, MethodInfo * method)); DO_APP_FUNC(0x005F5D00, void, RewiredHelpers_SetVibrationInternal_d_33_System_Collections_IEnumerator_Reset, (RewiredHelpers_SetVibrationInternal_d_33 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6638, RewiredHelpers_SetVibrationInternal_d_33_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, RewiredHelpers_SetVibrationInternal_d_33_System_Collections_IEnumerator_get_Current, (RewiredHelpers_SetVibrationInternal_d_33 * __this, MethodInfo * method)); DO_APP_FUNC(0x005F5D50, SaveHelpers *, SaveHelpers_get_singleton, (MethodInfo * method)); DO_APP_FUNC(0x005F5EF0, void, SaveHelpers_Awake, (SaveHelpers * __this, MethodInfo * method)); DO_APP_FUNC(0x005F6190, void, SaveHelpers_Start, (SaveHelpers * __this, MethodInfo * method)); DO_APP_FUNC(0x005F62D0, void, SaveHelpers_OnEnable, (SaveHelpers * __this, MethodInfo * method)); DO_APP_FUNC(0x005F66D0, void, SaveHelpers_OnActiveSceneChanged, (SaveHelpers * __this, Scene current, Scene next, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6610, SaveHelpers_OnActiveSceneChanged__MethodInfo); DO_APP_FUNC(0x005F6780, void, SaveHelpers_ClearCollectables, (SaveHelpers * __this, MethodInfo * method)); DO_APP_FUNC(0x005F67F0, String__Array *, SaveHelpers_GetCollectableArray, (SaveHelpers * __this, MethodInfo * method)); DO_APP_FUNC(0x005F68B0, String__Array *, SaveHelpers_GetCollectableArray_1, (SaveHelpers * __this, String * prefKey, MethodInfo * method)); @@ -19709,17 +22474,23 @@ DO_APP_FUNC(0x005F75F0, void, SaveHelpers_NoteRead, (SaveHelpers * __this, Strin DO_APP_FUNC(0x005F7A50, void, SaveHelpers_SyncCollectablesWithCloud, (SaveHelpers * __this, MethodInfo * method)); DO_APP_FUNC(0x005F7C60, void, SaveHelpers_WriteCollectablesToCloud, (SaveHelpers * __this, MethodInfo * method)); DO_APP_FUNC(0x005F80F0, void, SaveHelpers_OnCollectablesFileReadAsyncComplete, (SaveHelpers * __this, RemoteStorageFileReadAsyncComplete_t pCallback, bool bIOFailure, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD65E0, SaveHelpers_OnCollectablesFileReadAsyncComplete__MethodInfo); DO_APP_FUNC(0x005F8540, void, SaveHelpers_WriteCollectablesToPlayerPrefs, (SaveHelpers * __this, String__Array * collectables, String * key, MethodInfo * method)); DO_APP_FUNC(0x005F8720, void, SaveHelpers_OnCollectablesFileWriteAsyncComplete, (SaveHelpers * __this, RemoteStorageFileWriteAsyncComplete_t pCallback, bool bIOFailure, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD65C8, SaveHelpers_OnCollectablesFileWriteAsyncComplete__MethodInfo); DO_APP_FUNC(0x005F8A20, void, SaveHelpers_ClearLocalCollectables, (SaveHelpers * __this, MethodInfo * method)); DO_APP_FUNC(0x005F8C70, void, SaveHelpers_ClearCloudCollectables, (SaveHelpers * __this, MethodInfo * method)); DO_APP_FUNC(0x005F8F00, void, SaveHelpers_ClearCollectablesForMap, (SaveHelpers * __this, String * map, MethodInfo * method)); DO_APP_FUNC(0x005F9260, void, SaveHelpers_SyncEventsWithCloud, (SaveHelpers * __this, MethodInfo * method)); DO_APP_FUNC(0x005F9470, void, SaveHelpers_WriteEventsToCloud, (SaveHelpers * __this, MethodInfo * method)); DO_APP_FUNC(0x005F9570, void, SaveHelpers_OnEventsFileReadAsyncComplete, (SaveHelpers * __this, RemoteStorageFileReadAsyncComplete_t pCallback, bool bIOFailure, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD65D0, SaveHelpers_OnEventsFileReadAsyncComplete__MethodInfo); DO_APP_FUNC(0x005F98A0, void, SaveHelpers_OnEventsFileWriteAsyncComplete, (SaveHelpers * __this, RemoteStorageFileWriteAsyncComplete_t pCallback, bool bIOFailure, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD65C0, SaveHelpers_OnEventsFileWriteAsyncComplete__MethodInfo); DO_APP_FUNC(0x005F9A50, void, SaveHelpers_OnChallengesFileWriteAsyncComplete, (SaveHelpers * __this, RemoteStorageFileWriteAsyncComplete_t pCallback, bool bIOFailure, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD65D8, SaveHelpers_OnChallengesFileWriteAsyncComplete__MethodInfo); DO_APP_FUNC(0x005F9C00, void, SaveHelpers_OnChallengesFileReadAsyncComplete, (SaveHelpers * __this, RemoteStorageFileReadAsyncComplete_t pCallback, bool bIOFailure, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD65F0, SaveHelpers_OnChallengesFileReadAsyncComplete__MethodInfo); DO_APP_FUNC(0x005FA3D0, void, SaveHelpers_WriteChallengesToCloud, (SaveHelpers * __this, MethodInfo * method)); DO_APP_FUNC(0x005FA3E0, void, SaveHelpers_WriteChallengesToCloud_1, (SaveHelpers * __this, Int32__Array * challengesProgressArray, MethodInfo * method)); DO_APP_FUNC(0x005FA5D0, void, SaveHelpers_SyncChallengesWithCloud, (SaveHelpers * __this, MethodInfo * method)); @@ -19749,8 +22520,10 @@ DO_APP_FUNC(0x005FC350, void, SessionHelpers_DisableVR, (SessionHelpers * __this DO_APP_FUNC(0x005FC360, void, SessionHelpers_DisableDiscordSDK, (SessionHelpers * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SessionHelpers_c_DisplayClass42_0__ctor, (SessionHelpers_c_DisplayClass42_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x005FC370, bool, SessionHelpers_c_DisplayClass42_0__UpdateClientConnectionId_b__0, (SessionHelpers_c_DisplayClass42_0 * __this, KeyValuePair_2_System_UInt32_SessionClient_ x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6318, SessionHelpers_c_DisplayClass42_0__UpdateClientConnectionId_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, SessionHelpers_c_DisplayClass43_0__ctor, (SessionHelpers_c_DisplayClass43_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x005FC400, bool, SessionHelpers_c_DisplayClass43_0__SessionHasUser_b__0, (SessionHelpers_c_DisplayClass43_0 * __this, KeyValuePair_2_System_UInt32_SessionClient_ x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6308, SessionHelpers_c_DisplayClass43_0__SessionHasUser_b__0__MethodInfo); DO_APP_FUNC(0x005FC490, void, ShowTextureStreamingSummary_Start, (ShowTextureStreamingSummary * __this, MethodInfo * method)); DO_APP_FUNC(0x005FC4A0, String *, ShowTextureStreamingSummary_HumanReadableSize, (ShowTextureStreamingSummary * __this, uint64_t size, MethodInfo * method)); DO_APP_FUNC(0x005FC580, void, ShowTextureStreamingSummary_ShowText, (ShowTextureStreamingSummary * __this, String * text, MethodInfo * method)); @@ -19791,12 +22564,15 @@ DO_APP_FUNC(0x005FF9A0, void, SurvivalVR_SetupHands, (SurvivalVR * __this, Metho DO_APP_FUNC(0x00600130, void, SurvivalVR_DropObject, (SurvivalVR * __this, String * objectName, MethodInfo * method)); DO_APP_FUNC(0x00600B60, void, SurvivalVR_SetCarryObjects, (SurvivalVR * __this, NolanBehaviour * behaviour, MethodInfo * method)); DO_APP_FUNC(0x00601370, void, SurvivalVR_OnCarryObjectName, (SurvivalVR * __this, String * objectName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6108, SurvivalVR_OnCarryObjectName__MethodInfo); DO_APP_FUNC(0x00602040, void, SurvivalVR_SetInteractHandPose, (SurvivalVR * __this, int32_t pose, bool isAbility, MethodInfo * method)); DO_APP_FUNC(0x00602140, void, SurvivalVR_SwitchHands, (SurvivalVR * __this, MethodInfo * method)); DO_APP_FUNC(0x00602CF0, void, SurvivalVR_SetVRHandTriggerExtenders, (SurvivalVR * __this, MethodInfo * method)); DO_APP_FUNC(0x00602EC0, void, SurvivalVR_SetVRHandCarryObjectTransforms, (SurvivalVR * __this, bool isFromSwitch, MethodInfo * method)); DO_APP_FUNC(0x00603AC0, void, SurvivalVR_OnDeviceConnected, (SurvivalVR * __this, InputDevice_1 device, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD60F0, SurvivalVR_OnDeviceConnected__MethodInfo); DO_APP_FUNC(0x00603F00, void, SurvivalVR_OnDeviceDisconnected, (SurvivalVR * __this, InputDevice_1 device, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD60F8, SurvivalVR_OnDeviceDisconnected__MethodInfo); DO_APP_FUNC(0x00604310, void, SurvivalVR_LoadCustomController, (SurvivalVR * __this, InputDevice_1 device, MethodInfo * method)); DO_APP_FUNC(0x00604710, void, SurvivalVR_SetHandsVisible, (SurvivalVR * __this, bool visible, MethodInfo * method)); DO_APP_FUNC(0x006047E0, Vector3, SurvivalVR_GetVRCameraForwardOnXZPlane, (SurvivalVR * __this, MethodInfo * method)); @@ -19806,23 +22582,27 @@ DO_APP_FUNC(0x00604B90, void, SurvivalVR_OnApplicationQuit, (SurvivalVR * __this DO_APP_FUNC(0x00604C90, void, SurvivalVR_OnDestroy, (SurvivalVR * __this, MethodInfo * method)); DO_APP_FUNC(0x00604F20, void, SurvivalVR__ctor, (SurvivalVR * __this, MethodInfo * method)); DO_APP_FUNC(0x00604FE0, void, SurvivalVR__Start_b__95_0, (SurvivalVR * __this, PlayableDirector * d, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD60C8, SurvivalVR__Start_b__95_0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, SurvivalVR_Start_d_95__ctor, (SurvivalVR_Start_d_95 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SurvivalVR_Start_d_95_System_IDisposable_Dispose, (SurvivalVR_Start_d_95 * __this, MethodInfo * method)); DO_APP_FUNC(0x00604FF0, bool, SurvivalVR_Start_d_95_MoveNext, (SurvivalVR_Start_d_95 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalVR_Start_d_95_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SurvivalVR_Start_d_95 * __this, MethodInfo * method)); DO_APP_FUNC(0x006059D0, void, SurvivalVR_Start_d_95_System_Collections_IEnumerator_Reset, (SurvivalVR_Start_d_95 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD60B8, SurvivalVR_Start_d_95_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalVR_Start_d_95_System_Collections_IEnumerator_get_Current, (SurvivalVR_Start_d_95 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, SurvivalVR_CreateFollowVRCameraCanvas_d_97__ctor, (SurvivalVR_CreateFollowVRCameraCanvas_d_97 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SurvivalVR_CreateFollowVRCameraCanvas_d_97_System_IDisposable_Dispose, (SurvivalVR_CreateFollowVRCameraCanvas_d_97 * __this, MethodInfo * method)); DO_APP_FUNC(0x00605A20, bool, SurvivalVR_CreateFollowVRCameraCanvas_d_97_MoveNext, (SurvivalVR_CreateFollowVRCameraCanvas_d_97 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalVR_CreateFollowVRCameraCanvas_d_97_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SurvivalVR_CreateFollowVRCameraCanvas_d_97 * __this, MethodInfo * method)); DO_APP_FUNC(0x00605E60, void, SurvivalVR_CreateFollowVRCameraCanvas_d_97_System_Collections_IEnumerator_Reset, (SurvivalVR_CreateFollowVRCameraCanvas_d_97 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD60A8, SurvivalVR_CreateFollowVRCameraCanvas_d_97_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalVR_CreateFollowVRCameraCanvas_d_97_System_Collections_IEnumerator_get_Current, (SurvivalVR_CreateFollowVRCameraCanvas_d_97 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, SurvivalVR_StartXR_d_113__ctor, (SurvivalVR_StartXR_d_113 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SurvivalVR_StartXR_d_113_System_IDisposable_Dispose, (SurvivalVR_StartXR_d_113 * __this, MethodInfo * method)); DO_APP_FUNC(0x00605EB0, bool, SurvivalVR_StartXR_d_113_MoveNext, (SurvivalVR_StartXR_d_113 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalVR_StartXR_d_113_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SurvivalVR_StartXR_d_113 * __this, MethodInfo * method)); DO_APP_FUNC(0x006061B0, void, SurvivalVR_StartXR_d_113_System_Collections_IEnumerator_Reset, (SurvivalVR_StartXR_d_113 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6090, SurvivalVR_StartXR_d_113_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalVR_StartXR_d_113_System_Collections_IEnumerator_get_Current, (SurvivalVR_StartXR_d_113 * __this, MethodInfo * method)); DO_APP_FUNC(0x00606200, Vector3, VRCanvasFollow_get_Offset, (VRCanvasFollow * __this, MethodInfo * method)); DO_APP_FUNC(0x00606220, void, VRCanvasFollow_set_Offset, (VRCanvasFollow * __this, Vector3 value, MethodInfo * method)); @@ -19838,41 +22618,71 @@ DO_APP_FUNC(0x00606960, void, VRCustomController_Awake, (VRCustomController * __ DO_APP_FUNC(0x006081C0, void, VRCustomController_OnEnable, (VRCustomController * __this, MethodInfo * method)); DO_APP_FUNC(0x00608400, void, VRCustomController_OnDisable, (VRCustomController * __this, MethodInfo * method)); DO_APP_FUNC(0x006085F0, void, VRCustomController_OnInputUpdate, (VRCustomController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6078, VRCustomController_OnInputUpdate__MethodInfo); DO_APP_FUNC(0x006090F0, void, VRCustomController_ReloadMap, (VRCustomController * __this, MethodInfo * method)); DO_APP_FUNC(0x006092B0, void, VRCustomController__ctor, (VRCustomController * __this, MethodInfo * method)); DO_APP_FUNC(0x00609300, void, VRCustomController__Awake_b__46_0, (VRCustomController * __this, InputAction_CallbackContext ctx, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6080, VRCustomController__Awake_b__46_0__MethodInfo); DO_APP_FUNC(0x00609310, void, VRCustomController__Awake_b__46_1, (VRCustomController * __this, InputAction_CallbackContext ctx, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6018, VRCustomController__Awake_b__46_1__MethodInfo); DO_APP_FUNC(0x00609320, void, VRCustomController__Awake_b__46_2, (VRCustomController * __this, InputAction_CallbackContext ctx, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5FE0, VRCustomController__Awake_b__46_2__MethodInfo); DO_APP_FUNC(0x00609330, void, VRCustomController__Awake_b__46_3, (VRCustomController * __this, InputAction_CallbackContext ctx, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5FC8, VRCustomController__Awake_b__46_3__MethodInfo); DO_APP_FUNC(0x00609340, void, VRCustomController__Awake_b__46_4, (VRCustomController * __this, InputAction_CallbackContext ctx, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5FD0, VRCustomController__Awake_b__46_4__MethodInfo); DO_APP_FUNC(0x00609350, void, VRCustomController__Awake_b__46_5, (VRCustomController * __this, InputAction_CallbackContext ctx, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5FB8, VRCustomController__Awake_b__46_5__MethodInfo); DO_APP_FUNC(0x00609360, void, VRCustomController__Awake_b__46_6, (VRCustomController * __this, InputAction_CallbackContext ctx, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5FC0, VRCustomController__Awake_b__46_6__MethodInfo); DO_APP_FUNC(0x00609370, void, VRCustomController__Awake_b__46_7, (VRCustomController * __this, InputAction_CallbackContext ctx, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5FA8, VRCustomController__Awake_b__46_7__MethodInfo); DO_APP_FUNC(0x00609380, void, VRCustomController__Awake_b__46_8, (VRCustomController * __this, InputAction_CallbackContext ctx, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5FB0, VRCustomController__Awake_b__46_8__MethodInfo); DO_APP_FUNC(0x00609390, void, VRCustomController__Awake_b__46_9, (VRCustomController * __this, InputAction_CallbackContext ctx, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5F98, VRCustomController__Awake_b__46_9__MethodInfo); DO_APP_FUNC(0x006093A0, void, VRCustomController__Awake_b__46_10, (VRCustomController * __this, InputAction_CallbackContext ctx, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6068, VRCustomController__Awake_b__46_10__MethodInfo); DO_APP_FUNC(0x006093B0, void, VRCustomController__Awake_b__46_11, (VRCustomController * __this, InputAction_CallbackContext ctx, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6070, VRCustomController__Awake_b__46_11__MethodInfo); DO_APP_FUNC(0x006093C0, void, VRCustomController__Awake_b__46_12, (VRCustomController * __this, InputAction_CallbackContext ctx, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6058, VRCustomController__Awake_b__46_12__MethodInfo); DO_APP_FUNC(0x006093D0, void, VRCustomController__Awake_b__46_13, (VRCustomController * __this, InputAction_CallbackContext ctx, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6060, VRCustomController__Awake_b__46_13__MethodInfo); DO_APP_FUNC(0x006093E0, void, VRCustomController__Awake_b__46_14, (VRCustomController * __this, InputAction_CallbackContext ctx, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6048, VRCustomController__Awake_b__46_14__MethodInfo); DO_APP_FUNC(0x006093F0, void, VRCustomController__Awake_b__46_15, (VRCustomController * __this, InputAction_CallbackContext ctx, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6050, VRCustomController__Awake_b__46_15__MethodInfo); DO_APP_FUNC(0x00609400, void, VRCustomController__Awake_b__46_16, (VRCustomController * __this, InputAction_CallbackContext ctx, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6038, VRCustomController__Awake_b__46_16__MethodInfo); DO_APP_FUNC(0x00609410, void, VRCustomController__Awake_b__46_17, (VRCustomController * __this, InputAction_CallbackContext ctx, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6040, VRCustomController__Awake_b__46_17__MethodInfo); DO_APP_FUNC(0x00609420, void, VRCustomController__Awake_b__46_18, (VRCustomController * __this, InputAction_CallbackContext ctx, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6028, VRCustomController__Awake_b__46_18__MethodInfo); DO_APP_FUNC(0x00609430, void, VRCustomController__Awake_b__46_19, (VRCustomController * __this, InputAction_CallbackContext ctx, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6030, VRCustomController__Awake_b__46_19__MethodInfo); DO_APP_FUNC(0x00609440, void, VRCustomController__Awake_b__46_20, (VRCustomController * __this, InputAction_CallbackContext ctx, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6020, VRCustomController__Awake_b__46_20__MethodInfo); DO_APP_FUNC(0x00609450, void, VRCustomController__Awake_b__46_21, (VRCustomController * __this, InputAction_CallbackContext ctx, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6008, VRCustomController__Awake_b__46_21__MethodInfo); DO_APP_FUNC(0x00609460, void, VRCustomController__Awake_b__46_22, (VRCustomController * __this, InputAction_CallbackContext ctx, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6010, VRCustomController__Awake_b__46_22__MethodInfo); DO_APP_FUNC(0x00609470, void, VRCustomController__Awake_b__46_23, (VRCustomController * __this, InputAction_CallbackContext ctx, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5FF8, VRCustomController__Awake_b__46_23__MethodInfo); DO_APP_FUNC(0x00609480, void, VRCustomController__Awake_b__46_24, (VRCustomController * __this, InputAction_CallbackContext ctx, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6000, VRCustomController__Awake_b__46_24__MethodInfo); DO_APP_FUNC(0x00609490, void, VRCustomController__Awake_b__46_25, (VRCustomController * __this, InputAction_CallbackContext ctx, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5FE8, VRCustomController__Awake_b__46_25__MethodInfo); DO_APP_FUNC(0x006094A0, void, VRCustomController__Awake_b__46_26, (VRCustomController * __this, InputAction_CallbackContext ctx, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5FF0, VRCustomController__Awake_b__46_26__MethodInfo); DO_APP_FUNC(0x00609560, void, VRCustomController__Awake_b__46_27, (VRCustomController * __this, InputAction_CallbackContext ctx, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5FD8, VRCustomController__Awake_b__46_27__MethodInfo); DO_APP_FUNC(0x003C7330, void, VRHandAdjustment_set_deviceName, (VRHandAdjustment * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x003C7320, String *, VRHandAdjustment_get_deviceName, (VRHandAdjustment * __this, MethodInfo * method)); DO_APP_FUNC(0x00609570, void, VRHandAdjustment_Awake, (VRHandAdjustment * __this, MethodInfo * method)); DO_APP_FUNC(0x00609680, void, VRHandAdjustment_DetectController, (VRHandAdjustment * __this, MethodInfo * method)); DO_APP_FUNC(0x006098C0, void, VRHandAdjustment_OnDeviceConnected, (VRHandAdjustment * __this, InputDevice_1 device, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5F80, VRHandAdjustment_OnDeviceConnected__MethodInfo); DO_APP_FUNC(0x00609A20, void, VRHandAdjustment_LateUpdate, (VRHandAdjustment * __this, MethodInfo * method)); DO_APP_FUNC(0x00609F20, void, VRHandAdjustment_OnDestroy, (VRHandAdjustment * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, VRHandAdjustment__ctor, (VRHandAdjustment * __this, MethodInfo * method)); @@ -19882,6 +22692,7 @@ DO_APP_FUNC(0x003AE000, void, VRHandColliderDebug__ctor, (VRHandColliderDebug * DO_APP_FUNC(0x0060A410, void, VRHandIK_Awake, (VRHandIK * __this, MethodInfo * method)); DO_APP_FUNC(0x0060AA10, void, VRHandIK_Attached, (VRHandIK * __this, MethodInfo * method)); DO_APP_FUNC(0x0060B200, void, VRHandIK_OnFlashlightOriginOffset, (VRHandIK * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5F60, VRHandIK_OnFlashlightOriginOffset__MethodInfo); DO_APP_FUNC(0x0060B330, void, VRHandIK_SetFlashlightSpotParent, (VRHandIK * __this, MethodInfo * method)); DO_APP_FUNC(0x0060B940, void, VRHandIK_Update, (VRHandIK * __this, MethodInfo * method)); DO_APP_FUNC(0x0060CA80, void, VRHandIK_SetVRLeftHandedMode, (VRHandIK * __this, bool leftHandedMode, MethodInfo * method)); @@ -19889,6 +22700,7 @@ DO_APP_FUNC(0x0060CC80, void, VRHandIK_OnVRHandDir, (VRHandIK * __this, bool rig DO_APP_FUNC(0x0060D310, void, VRHandIK_OnVRHandRotation, (VRHandIK * __this, bool rightHand, MethodInfo * method)); DO_APP_FUNC(0x0060DCA0, bool, VRHandIK_CanDoHandIK, (VRHandIK * __this, MethodInfo * method)); DO_APP_FUNC(0x0060DF50, void, VRHandIK_OnVRMirrorHands, (VRHandIK * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5F68, VRHandIK_OnVRMirrorHands__MethodInfo); DO_APP_FUNC(0x0060E170, void, VRHandIK_ReparentObjects, (VRHandIK * __this, bool mirrorHands, PrefabId prefabId, MethodInfo * method)); DO_APP_FUNC(0x0060E8A0, void, VRHandIK_AdjustHandObjectsPositions, (VRHandIK * __this, bool mirrorHands, PrefabId prefabId, MethodInfo * method)); DO_APP_FUNC(0x0060FE00, void, VRHandIK_SetAnimator, (VRHandIK * __this, bool mirror, MethodInfo * method)); @@ -19898,6 +22710,7 @@ DO_APP_FUNC(0x00610AC0, void, VRHandTriggerExtender_Awake, (VRHandTriggerExtende DO_APP_FUNC(0x00610C80, void, VRHandTriggerExtender_Update, (VRHandTriggerExtender * __this, MethodInfo * method)); DO_APP_FUNC(0x006111A0, void, VRHandTriggerExtender_SetSeatedMode, (VRHandTriggerExtender * __this, MethodInfo * method)); DO_APP_FUNC(0x00611230, void, VRHandTriggerExtender_OnStateChange, (VRHandTriggerExtender * __this, GameObject * obj, String * stateName, bool active, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5EE0, VRHandTriggerExtender_OnStateChange__MethodInfo); DO_APP_FUNC(0x00611510, void, VRHandTriggerExtender_OnDestroy, (VRHandTriggerExtender * __this, MethodInfo * method)); DO_APP_FUNC(0x004EB7C0, void, VRHandTriggerExtender__ctor, (VRHandTriggerExtender * __this, MethodInfo * method)); DO_APP_FUNC(0x006115F0, void, VRHandUI_LateUpdate, (VRHandUI * __this, MethodInfo * method)); @@ -19915,13 +22728,17 @@ DO_APP_FUNC(0x004C9320, bool, VRUIActions_CancelHeld, (VRUIActions * __this, Met DO_APP_FUNC(0x00612440, void, VRUIActions_OnDisable, (VRUIActions * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, VRUIActions__ctor, (VRUIActions * __this, MethodInfo * method)); DO_APP_FUNC(0x00612620, void, VRUIActions__Awake_b__6_0, (VRUIActions * __this, InputAction_CallbackContext ctx, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5EB8, VRUIActions__Awake_b__6_0__MethodInfo); DO_APP_FUNC(0x00612630, void, VRUIActions__Awake_b__6_1, (VRUIActions * __this, InputAction_CallbackContext ctx, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5EA8, VRUIActions__Awake_b__6_1__MethodInfo); DO_APP_FUNC(0x00612640, void, VRUIActions__Awake_b__6_2, (VRUIActions * __this, InputAction_CallbackContext ctx, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5EB0, VRUIActions__Awake_b__6_2__MethodInfo); DO_APP_FUNC(0x00612650, void, VRUIActions__Awake_b__6_3, (VRUIActions * __this, InputAction_CallbackContext ctx, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5EA0, VRUIActions__Awake_b__6_3__MethodInfo); DO_APP_FUNC(0x00612660, void, VRUIPointer_Awake, (VRUIPointer * __this, MethodInfo * method)); DO_APP_FUNC(0x006127A0, void, VRUIPointer_Update, (VRUIPointer * __this, MethodInfo * method)); DO_APP_FUNC(0x00612C90, void, VRUIPointer_RefreshRaycasters, (VRUIPointer * __this, MethodInfo * method)); -DO_APP_FUNC(0x00612D50, bool, VRUIPointer_GetWorldPositionHit, (VRUIPointer * __this, Vector3 worldPos, MethodInfo * method)); +DO_APP_FUNC(0x00612D50, bool, VRUIPointer_GetWorldPositionHit, (VRUIPointer * __this, Vector3 * worldPos, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, VRUIPointer__ctor, (VRUIPointer * __this, MethodInfo * method)); DO_APP_FUNC(0x00613080, void, VRUserPresence_Awake, (VRUserPresence * __this, MethodInfo * method)); DO_APP_FUNC(0x00613440, void, VRUserPresence_OnEnable, (VRUserPresence * __this, MethodInfo * method)); @@ -19929,10 +22746,13 @@ DO_APP_FUNC(0x00613460, void, VRUserPresence_OnDisable, (VRUserPresence * __this DO_APP_FUNC(0x00613480, void, VRUserPresence_SetUserIsPresent, (VRUserPresence * __this, bool isPresent, MethodInfo * method)); DO_APP_FUNC(0x005F7520, bool, VRUserPresence_IsUserPresent, (VRUserPresence * __this, MethodInfo * method)); DO_APP_FUNC(0x006134F0, void, VRUserPresence_OnVRPosition, (VRUserPresence * __this, InputAction_CallbackContext ctx, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5E90, VRUserPresence_OnVRPosition__MethodInfo); DO_APP_FUNC(0x006135D0, void, VRUserPresence_OnDestroy, (VRUserPresence * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, VRUserPresence__ctor, (VRUserPresence * __this, MethodInfo * method)); DO_APP_FUNC(0x006136B0, void, VRUserPresence__Awake_b__4_0, (VRUserPresence * __this, InputAction_CallbackContext ctx, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5E80, VRUserPresence__Awake_b__4_0__MethodInfo); DO_APP_FUNC(0x00613720, void, VRUserPresence__Awake_b__4_1, (VRUserPresence * __this, InputAction_CallbackContext ctx, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5E88, VRUserPresence__Awake_b__4_1__MethodInfo); DO_APP_FUNC(0x00613790, void, VRFollowMainCamera_set_vrRotationReceived, (VRFollowMainCamera * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x006137A0, bool, VRFollowMainCamera_get_vrRotationReceived, (VRFollowMainCamera * __this, MethodInfo * method)); DO_APP_FUNC(0x006137B0, float, VRFollowMainCamera_get_vrCameraCenterY, (VRFollowMainCamera * __this, MethodInfo * method)); @@ -19947,7 +22767,9 @@ DO_APP_FUNC(0x00614BC0, void, VRFollowMainCamera_Recenter, (VRFollowMainCamera * DO_APP_FUNC(0x00615460, void, VRFollowMainCamera_SetLocalPlayer, (VRFollowMainCamera * __this, NolanBehaviour * nolanBehaviour, MethodInfo * method)); DO_APP_FUNC(0x00615850, void, VRFollowMainCamera_SyncWithMainCamera, (VRFollowMainCamera * __this, Vector3 positionOffset, MethodInfo * method)); DO_APP_FUNC(0x00615880, void, VRFollowMainCamera_OnVRPosition, (VRFollowMainCamera * __this, InputAction_CallbackContext ctx, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5E60, VRFollowMainCamera_OnVRPosition__MethodInfo); DO_APP_FUNC(0x00615960, void, VRFollowMainCamera_OnVRRotation, (VRFollowMainCamera * __this, InputAction_CallbackContext ctx, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5E50, VRFollowMainCamera_OnVRRotation__MethodInfo); DO_APP_FUNC(0x00615B10, void, VRFollowMainCamera_SyncWithEndingCamera, (VRFollowMainCamera * __this, Vector3 positionOffset, MethodInfo * method)); DO_APP_FUNC(0x00615B40, void, VRFollowMainCamera_SyncWithCamera, (VRFollowMainCamera * __this, Transform * cam, Vector3 positionOffset, MethodInfo * method)); DO_APP_FUNC(0x006164D0, void, VRFollowMainCamera_SetTransform, (VRFollowMainCamera * __this, Vector3 worldPos, float yRot, MethodInfo * method)); @@ -19957,6 +22779,7 @@ DO_APP_FUNC(0x00616850, void, VRFollowMainCamera_SetTransformWithCanvasOffset, ( DO_APP_FUNC(0x006168A0, void, VRFollowMainCamera_SetTransformInternal, (VRFollowMainCamera * __this, Vector3 worldPos, Vector3 worldRot, float canvasYOffset, MethodInfo * method)); DO_APP_FUNC(0x00616F80, void, VRFollowMainCamera_LookAt, (VRFollowMainCamera * __this, Transform * target, MethodInfo * method)); DO_APP_FUNC(0x006177B0, void, VRFollowMainCamera_OnStateChange, (VRFollowMainCamera * __this, GameObject * obj, String * stateName, bool active, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5E68, VRFollowMainCamera_OnStateChange__MethodInfo); DO_APP_FUNC(0x00617E30, void, VRFollowMainCamera__ctor, (VRFollowMainCamera * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, VRTimelineHeight__ctor, (VRTimelineHeight * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Waypoint__ctor, (Waypoint * __this, MethodInfo * method)); @@ -19965,10 +22788,13 @@ DO_APP_FUNC(0x0067F7F0, void, WindowSmasher_Attached, (WindowSmasher * __this, M DO_APP_FUNC(0x0067F910, void, WindowSmasher_OnTriggerEnter, (WindowSmasher * __this, Collider * other, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, WindowSmasher_Update, (WindowSmasher * __this, MethodInfo * method)); DO_APP_FUNC(0x0067FD60, void, WindowSmasher_OnIsSmashed, (WindowSmasher * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCE38, WindowSmasher_OnIsSmashed__MethodInfo); DO_APP_FUNC(0x0067FE20, void, WindowSmasher_SmashWindow, (WindowSmasher * __this, MethodInfo * method)); DO_APP_FUNC(0x00680C20, void, WindowSmasher_OnGlobalGoatBurnEvent, (WindowSmasher * __this, int32_t _goatsBurned, BoltEntity * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCE48, WindowSmasher_OnGlobalGoatBurnEvent__MethodInfo); DO_APP_FUNC(0x00681330, IEnumerator *, WindowSmasher_SmashWindowAfterSeconds, (WindowSmasher * __this, float seconds, MethodInfo * method)); DO_APP_FUNC(0x006813E0, void, WindowSmasher_OnGameMode, (WindowSmasher * __this, DevourGameMode__Enum mode, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCE40, WindowSmasher_OnGameMode__MethodInfo); DO_APP_FUNC(0x00681570, void, WindowSmasher_OnDestroy, (WindowSmasher * __this, MethodInfo * method)); DO_APP_FUNC(0x006816E0, void, WindowSmasher__ctor, (WindowSmasher * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, WindowSmasher_SmashWindowAfterSeconds_d_37__ctor, (WindowSmasher_SmashWindowAfterSeconds_d_37 * __this, int32_t __1__state, MethodInfo * method)); @@ -19976,9 +22802,11 @@ DO_APP_FUNC(0x003AE050, void, WindowSmasher_SmashWindowAfterSeconds_d_37_System_ DO_APP_FUNC(0x00681740, bool, WindowSmasher_SmashWindowAfterSeconds_d_37_MoveNext, (WindowSmasher_SmashWindowAfterSeconds_d_37 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, WindowSmasher_SmashWindowAfterSeconds_d_37_System_Collections_Generic_IEnumerator_System_Object__get_Current, (WindowSmasher_SmashWindowAfterSeconds_d_37 * __this, MethodInfo * method)); DO_APP_FUNC(0x00681970, void, WindowSmasher_SmashWindowAfterSeconds_d_37_System_Collections_IEnumerator_Reset, (WindowSmasher_SmashWindowAfterSeconds_d_37 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCDF8, WindowSmasher_SmashWindowAfterSeconds_d_37_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, WindowSmasher_SmashWindowAfterSeconds_d_37_System_Collections_IEnumerator_get_Current, (WindowSmasher_SmashWindowAfterSeconds_d_37 * __this, MethodInfo * method)); DO_APP_FUNC(0x006819C0, void, WindowSmasherIndividual_Awake, (WindowSmasherIndividual * __this, MethodInfo * method)); DO_APP_FUNC(0x00681D20, void, WindowSmasherIndividual_OnGlobalGoatBurnEvent, (WindowSmasherIndividual * __this, int32_t number, BoltEntity * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCDF0, WindowSmasherIndividual_OnGlobalGoatBurnEvent__MethodInfo); DO_APP_FUNC(0x00681F50, void, WindowSmasherIndividual_SmashWindow, (WindowSmasherIndividual * __this, MethodInfo * method)); DO_APP_FUNC(0x00682400, bool, WindowSmasherIndividual_HasBeenSmashed, (WindowSmasherIndividual * __this, MethodInfo * method)); DO_APP_FUNC(0x00682410, void, WindowSmasherIndividual_OnDestroy, (WindowSmasherIndividual * __this, MethodInfo * method)); @@ -19989,8 +22817,10 @@ DO_APP_FUNC(0x006829E0, void, WindowSmasherMultipleParent_OnTriggerEnter, (Windo DO_APP_FUNC(0x00682DD0, void, WindowSmasherMultipleParent_OnTriggerExit, (WindowSmasherMultipleParent * __this, Collider * other, MethodInfo * method)); DO_APP_FUNC(0x006831C0, void, WindowSmasherMultipleParent_AttemptSmash, (WindowSmasherMultipleParent * __this, MethodInfo * method)); DO_APP_FUNC(0x006834F0, void, WindowSmasherMultipleParent_OnIsSmashed, (WindowSmasherMultipleParent * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCDD8, WindowSmasherMultipleParent_OnIsSmashed__MethodInfo); DO_APP_FUNC(0x006835B0, void, WindowSmasherMultipleParent_SmashWindows, (WindowSmasherMultipleParent * __this, MethodInfo * method)); DO_APP_FUNC(0x00683B60, void, WindowSmasherMultipleParent_OnGlobalGoatBurnEvent, (WindowSmasherMultipleParent * __this, int32_t _goatsBurned, BoltEntity * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCDE0, WindowSmasherMultipleParent_OnGlobalGoatBurnEvent__MethodInfo); DO_APP_FUNC(0x00684160, IEnumerator *, WindowSmasherMultipleParent_SmashWindowsAfterSeconds, (WindowSmasherMultipleParent * __this, float seconds, MethodInfo * method)); DO_APP_FUNC(0x00684210, void, WindowSmasherMultipleParent_OnDestroy, (WindowSmasherMultipleParent * __this, MethodInfo * method)); DO_APP_FUNC(0x006842F0, void, WindowSmasherMultipleParent__ctor, (WindowSmasherMultipleParent * __this, MethodInfo * method)); @@ -19999,6 +22829,7 @@ DO_APP_FUNC(0x003AE050, void, WindowSmasherMultipleParent_SmashWindowsAfterSecon DO_APP_FUNC(0x00684360, bool, WindowSmasherMultipleParent_SmashWindowsAfterSeconds_d_21_MoveNext, (WindowSmasherMultipleParent_SmashWindowsAfterSeconds_d_21 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, WindowSmasherMultipleParent_SmashWindowsAfterSeconds_d_21_System_Collections_Generic_IEnumerator_System_Object__get_Current, (WindowSmasherMultipleParent_SmashWindowsAfterSeconds_d_21 * __this, MethodInfo * method)); DO_APP_FUNC(0x00684590, void, WindowSmasherMultipleParent_SmashWindowsAfterSeconds_d_21_System_Collections_IEnumerator_Reset, (WindowSmasherMultipleParent_SmashWindowsAfterSeconds_d_21 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCDC8, WindowSmasherMultipleParent_SmashWindowsAfterSeconds_d_21_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, WindowSmasherMultipleParent_SmashWindowsAfterSeconds_d_21_System_Collections_IEnumerator_get_Current, (WindowSmasherMultipleParent_SmashWindowsAfterSeconds_d_21 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, XRManager__ctor, (XRManager * __this, MethodInfo * method)); DO_APP_FUNC(0x006845E0, void, VignetteController_Awake, (VignetteController * __this, MethodInfo * method)); @@ -20012,6 +22843,7 @@ DO_APP_FUNC(0x003AE050, void, VignetteController_VignetteOut_d_7_System_IDisposa DO_APP_FUNC(0x00684AA0, bool, VignetteController_VignetteOut_d_7_MoveNext, (VignetteController_VignetteOut_d_7 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, VignetteController_VignetteOut_d_7_System_Collections_Generic_IEnumerator_System_Object__get_Current, (VignetteController_VignetteOut_d_7 * __this, MethodInfo * method)); DO_APP_FUNC(0x00684D20, void, VignetteController_VignetteOut_d_7_System_Collections_IEnumerator_Reset, (VignetteController_VignetteOut_d_7 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCDA8, VignetteController_VignetteOut_d_7_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, VignetteController_VignetteOut_d_7_System_Collections_IEnumerator_get_Current, (VignetteController_VignetteOut_d_7 * __this, MethodInfo * method)); DO_APP_FUNC(0x00684D70, void, GreaterThanFloatAttribute__ctor, (GreaterThanFloatAttribute * __this, float greaterThanFloat, bool inclusive, MethodInfo * method)); DO_APP_FUNC(0x00684D80, void, GreaterThanIntAttribute__ctor, (GreaterThanIntAttribute * __this, int32_t greaterThanInteger, bool inclusive, MethodInfo * method)); @@ -20039,36 +22871,45 @@ DO_APP_FUNC(0x00685800, void, DoorBehaviour_Awake, (DoorBehaviour * __this, Meth DO_APP_FUNC(0x00685B60, void, DoorBehaviour_Attached, (DoorBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x006861F0, void, DoorBehaviour_Detached, (DoorBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00686320, void, DoorBehaviour_OnOpenRight, (DoorBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCD70, DoorBehaviour_OnOpenRight__MethodInfo); DO_APP_FUNC(0x00686E00, void, DoorBehaviour_OnOpenLeft, (DoorBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCD68, DoorBehaviour_OnOpenLeft__MethodInfo); DO_APP_FUNC(0x006878F0, void, DoorBehaviour_OnFall, (DoorBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCD78, DoorBehaviour_OnFall__MethodInfo); DO_APP_FUNC(0x00687C30, void, DoorBehaviour_SetState, (DoorBehaviour * __this, String * boolName, bool boolState, MethodInfo * method)); DO_APP_FUNC(0x00687F90, void, DoorBehaviour_OnLocked, (DoorBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCD80, DoorBehaviour_OnLocked__MethodInfo); DO_APP_FUNC(0x00688260, void, DoorBehaviour_Unlock, (DoorBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x006885F0, void, DoorBehaviour_Lock, (DoorBehaviour * __this, String * keyName, MethodInfo * method)); DO_APP_FUNC(0x00688850, void, DoorBehaviour_OpenDoor, (DoorBehaviour * __this, bool openRight, MethodInfo * method)); DO_APP_FUNC(0x00688BF0, void, DoorBehaviour_SetAnnaOpeningDoor, (DoorBehaviour * __this, bool isOpening, bool isEnraged, MethodInfo * method)); DO_APP_FUNC(0x00688DE0, void, DoorBehaviour_OnAnnaOpeningDoor, (DoorBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCD88, DoorBehaviour_OnAnnaOpeningDoor__MethodInfo); DO_APP_FUNC(0x00688EA0, bool, DoorBehaviour_IsOpen, (DoorBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00689140, bool, DoorBehaviour_IsOpenLeft, (DoorBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00689300, bool, DoorBehaviour_IsOpenRight, (DoorBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x006894B0, bool, DoorBehaviour_IsLocked, (DoorBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00689680, String *, DoorBehaviour_KeyName, (DoorBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00689840, void, DoorBehaviour_OnSingleInteract, (DoorBehaviour * __this, String * name, GameObject * character, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCD58, DoorBehaviour_OnSingleInteract__MethodInfo); DO_APP_FUNC(0x003C91B0, DoorGraphUpdate *, DoorBehaviour_GetDoorGraphUpdate, (DoorBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00689970, void, DoorBehaviour__ctor, (DoorBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x006899C0, void, LockboxBehaviour_Awake, (LockboxBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x00689C30, void, LockboxBehaviour_Attached, (LockboxBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0068A070, void, LockboxBehaviour_Detached, (LockboxBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0068A1A0, void, LockboxBehaviour_OnOpenLeft, (LockboxBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCD20, LockboxBehaviour_OnOpenLeft__MethodInfo); DO_APP_FUNC(0x0068A6D0, void, LockboxBehaviour_LockAnimComplete, (LockboxBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0068A730, void, LockboxBehaviour_SetState, (LockboxBehaviour * __this, String * boolName, bool boolState, MethodInfo * method)); DO_APP_FUNC(0x0068A8B0, void, LockboxBehaviour_OnLocked, (LockboxBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCD18, LockboxBehaviour_OnLocked__MethodInfo); DO_APP_FUNC(0x0068A970, void, LockboxBehaviour_Unlock, (LockboxBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0068AC10, void, LockboxBehaviour_Lock, (LockboxBehaviour * __this, String * keyName, MethodInfo * method)); DO_APP_FUNC(0x0068AE70, bool, LockboxBehaviour_IsOpen, (LockboxBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0068B030, bool, LockboxBehaviour_IsLocked, (LockboxBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0068B200, String *, LockboxBehaviour_KeyName, (LockboxBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0068B3C0, void, LockboxBehaviour_OnSingleInteract, (LockboxBehaviour * __this, String * name, GameObject * character, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCD10, LockboxBehaviour_OnSingleInteract__MethodInfo); DO_APP_FUNC(0x0068B650, void, LockboxBehaviour__ctor, (LockboxBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0063E030, BoltConfig *, Menu_get_boltConfig, (Menu * __this, MethodInfo * method)); DO_APP_FUNC(0x0063E070, float, Menu_get_vrCameraCenterY, (Menu * __this, MethodInfo * method)); @@ -20078,29 +22919,45 @@ DO_APP_FUNC(0x0063E0A0, void, Menu_set_vrIsUsingViveControllers, (Menu * __this, DO_APP_FUNC(0x0063E0B0, void, Menu_Awake, (Menu * __this, MethodInfo * method)); DO_APP_FUNC(0x0063EE10, IEnumerator *, Menu_Start, (Menu * __this, MethodInfo * method)); DO_APP_FUNC(0x0063EEB0, String *, Menu_CombinePaths, (String * path1, String__Array * paths, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB9B8, Menu_CombinePaths__MethodInfo); DO_APP_FUNC(0x0063F0B0, void, Menu_OnEnable, (Menu * __this, MethodInfo * method)); DO_APP_FUNC(0x0063FCE0, IEnumerator *, Menu_WaitToWarnNoSteamworks, (Menu * __this, MethodInfo * method)); DO_APP_FUNC(0x0063FD80, void, Menu_Update, (Menu * __this, MethodInfo * method)); DO_APP_FUNC(0x00642650, void, Menu_ControllerReselect, (Menu * __this, MethodInfo * method)); DO_APP_FUNC(0x00642700, IEnumerator *, Menu_ControllerReselectDelayed, (Menu * __this, MethodInfo * method)); DO_APP_FUNC(0x006427A0, void, Menu_OnSensitivitySliderChanged, (Menu * __this, float value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCB20, Menu_OnSensitivitySliderChanged__MethodInfo); DO_APP_FUNC(0x006428F0, void, Menu_OnSensitivityInputEndEdit, (Menu * __this, String * input, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCB38, Menu_OnSensitivityInputEndEdit__MethodInfo); DO_APP_FUNC(0x00642A10, void, Menu_OnSoloModeButtonClick, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCB18, Menu_OnSoloModeButtonClick__MethodInfo); DO_APP_FUNC(0x00642A50, void, Menu_OnHostButtonClick, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCC48, Menu_OnHostButtonClick__MethodInfo); DO_APP_FUNC(0x00642B10, void, Menu_OnHostStartButtonClick, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCC28, Menu_OnHostStartButtonClick__MethodInfo); DO_APP_FUNC(0x00642E10, void, Menu_OnHostBackButtonClick, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCC40, Menu_OnHostBackButtonClick__MethodInfo); DO_APP_FUNC(0x00642ED0, void, Menu_OnHostPasswordVisibilityChange, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCC30, Menu_OnHostPasswordVisibilityChange__MethodInfo); DO_APP_FUNC(0x00642F20, void, Menu_OnHostPrivateServerChange, (Menu * __this, MethodInfo * method)); DO_APP_FUNC(0x00643080, void, Menu_OnHostServerPasswordButtonClick, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCC38, Menu_OnHostServerPasswordButtonClick__MethodInfo); DO_APP_FUNC(0x00643160, void, Menu_OnFloatingGamepadTextInputDismissed, (Menu * __this, FloatingGamepadTextInputDismissed_t pCallback, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB928, Menu_OnFloatingGamepadTextInputDismissed__MethodInfo); DO_APP_FUNC(0x00643190, void, Menu_OnGamepadTextInputDismissed, (Menu * __this, GamepadTextInputDismissed_t pCallback, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB908, Menu_OnGamepadTextInputDismissed__MethodInfo); DO_APP_FUNC(0x006432D0, IEnumerator *, Menu_GamepadKeyboardDismissed, (Menu * __this, bool submittedText, MethodInfo * method)); DO_APP_FUNC(0x00643390, void, Menu_OnHostServerPasswordEndEdit, (Menu * __this, String * input, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCC20, Menu_OnHostServerPasswordEndEdit__MethodInfo); DO_APP_FUNC(0x006433C0, void, Menu_OnLobbyGameModeNextClick, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCBB8, Menu_OnLobbyGameModeNextClick__MethodInfo); DO_APP_FUNC(0x006433D0, void, Menu_OnLobbyGameModePrevClick, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCBA0, Menu_OnLobbyGameModePrevClick__MethodInfo); DO_APP_FUNC(0x006433E0, void, Menu_SetupMaps, (Menu * __this, MethodInfo * method)); DO_APP_FUNC(0x006439F0, void, Menu_OnLobbyMapButtonClick, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCB90, Menu_OnLobbyMapButtonClick__MethodInfo); DO_APP_FUNC(0x00644030, void, Menu_HideLobbyMaps, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCCE0, Menu_HideLobbyMaps__MethodInfo); DO_APP_FUNC(0x00644560, void, Menu_SetupOutfitsAndPerks, (Menu * __this, Robe__Enum selected, MethodInfo * method)); DO_APP_FUNC(0x006459B0, IEnumerator *, Menu_PopulateRobesWhenAvailable, (Menu * __this, Robe__Enum selected, MethodInfo * method)); DO_APP_FUNC(0x00645A60, IEnumerator *, Menu_PopulateInventoryWhenAvailable, (Menu * __this, MethodInfo * method)); @@ -20114,22 +22971,32 @@ DO_APP_FUNC(0x00648450, void, Menu_OnPromoPerkAdded, (Menu * __this, int32_t ste DO_APP_FUNC(0x00648A70, void, Menu_OnPromoFlashlightAdded, (Menu * __this, int32_t steamItemDefId, MethodInfo * method)); DO_APP_FUNC(0x00649020, void, Menu_OnPromoEmoteAdded, (Menu * __this, int32_t steamItemDefId, MethodInfo * method)); DO_APP_FUNC(0x00649630, void, Menu_ShowCharacterOutfits, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCAB0, Menu_ShowCharacterOutfits__MethodInfo); DO_APP_FUNC(0x0064BC80, void, Menu_ShowCurrentOutfitPreview, (Menu * __this, String * currentCharacter, String * currentOutfit, String * currentRobe, MethodInfo * method)); DO_APP_FUNC(0x0064BF80, void, Menu_HideCharacterOutfits, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCCF0, Menu_HideCharacterOutfits__MethodInfo); DO_APP_FUNC(0x0064C9A0, void, Menu_ShowCharacterPerks, (Menu * __this, MethodInfo * method)); -DO_APP_FUNC(0x0064D8E0, void, Menu_SelectPerkFromPref, (Menu * __this, String * prefKey, bool perkSelected, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCAB8, Menu_ShowCharacterPerks__MethodInfo); +DO_APP_FUNC(0x0064D8E0, void, Menu_SelectPerkFromPref, (Menu * __this, String * prefKey, bool * perkSelected, MethodInfo * method)); DO_APP_FUNC(0x0064D9E0, int32_t, Menu_GetCurrentTokens, (Menu * __this, MethodInfo * method)); DO_APP_FUNC(0x0064E270, void, Menu_HideCharacterPerks, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCCF8, Menu_HideCharacterPerks__MethodInfo); DO_APP_FUNC(0x0064EA40, void, Menu_OnLobbyOutfitTabClick, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCB80, Menu_OnLobbyOutfitTabClick__MethodInfo); DO_APP_FUNC(0x0064F150, void, Menu_OnLobbyFlashlightTabClick, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCBB0, Menu_OnLobbyFlashlightTabClick__MethodInfo); DO_APP_FUNC(0x0064F620, void, Menu_OnLobbyPetsTabClick, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCB88, Menu_OnLobbyPetsTabClick__MethodInfo); DO_APP_FUNC(0x00650020, void, Menu_OnLobbyEmotesTabClick, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCBC8, Menu_OnLobbyEmotesTabClick__MethodInfo); DO_APP_FUNC(0x006503C0, void, Menu_SetupOutfitPreviewNavigation, (Menu * __this, OutfitsNavigation__Enum navigation, MethodInfo * method)); DO_APP_FUNC(0x00650E90, void, Menu_SetActiveOutfitTab, (Menu * __this, Button * activeTab, MethodInfo * method)); DO_APP_FUNC(0x00651940, void, Menu_ShowHeaderIcons, (Menu * __this, MethodInfo * method)); DO_APP_FUNC(0x00651980, void, Menu_HideHeaderIcons, (Menu * __this, MethodInfo * method)); DO_APP_FUNC(0x006519C0, void, Menu_OnChallengesButtonClick, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCCC8, Menu_OnChallengesButtonClick__MethodInfo); DO_APP_FUNC(0x006523D0, void, Menu_OnChallengesBackClick, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCCC0, Menu_OnChallengesBackClick__MethodInfo); DO_APP_FUNC(0x00652430, void, Menu_HideRightOptionsPanel, (Menu * __this, MethodInfo * method)); DO_APP_FUNC(0x00652640, void, Menu_ShowRightOptionsPanel, (Menu * __this, MethodInfo * method)); DO_APP_FUNC(0x00652910, void, Menu_UpdateLockedOutfits, (Menu * __this, List_1_UIOutfitSelectionType_ * selectionViews, MethodInfo * method)); @@ -20163,6 +23030,7 @@ DO_APP_FUNC(0x006584E0, void, Menu_ShowEmotePreview, (Menu * __this, int32_t emo DO_APP_FUNC(0x00658F70, void, Menu_ShowPetPreview, (Menu * __this, CharacterPet * pet, MethodInfo * method)); DO_APP_FUNC(0x006594A0, void, Menu_OnApplicationFocus, (Menu * __this, bool hasFocus, MethodInfo * method)); DO_APP_FUNC(0x006595E0, void, Menu_RefreshInventory, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA500, Menu_RefreshInventory__MethodInfo); DO_APP_FUNC(0x006596B0, void, Menu_ProcessPurchasedItem, (Menu * __this, MethodInfo * method)); DO_APP_FUNC(0x00659750, void, Menu_UpdateRoom, (Menu * __this, MethodInfo * method)); DO_APP_FUNC(0x00659810, void, Menu_OnLobbyGameModeChange, (Menu * __this, bool next, MethodInfo * method)); @@ -20173,48 +23041,78 @@ DO_APP_FUNC(0x0065ABE0, void, Menu_HideLobbyEnvironments, (Menu * __this, bool s DO_APP_FUNC(0x0065AE70, void, Menu_SetLobbyEnvironment, (Menu * __this, DevourMap__Enum map, bool playAudio, MethodInfo * method)); DO_APP_FUNC(0x0065B020, void, Menu_SetToggleStateText, (Menu * __this, bool state, Text * text, MethodInfo * method)); DO_APP_FUNC(0x0065B170, void, Menu_OnJoinButtonClick, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCC10, Menu_OnJoinButtonClick__MethodInfo); DO_APP_FUNC(0x003AE050, void, Menu_OnLoadSceneSyncClick, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCBD0, Menu_OnLoadSceneSyncClick__MethodInfo); DO_APP_FUNC(0x0065B240, void, Menu_OnLobbyStartButtonClick, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCB78, Menu_OnLobbyStartButtonClick__MethodInfo); DO_APP_FUNC(0x0065B250, void, Menu_OnConfirmModalNoClick, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCCB0, Menu_OnConfirmModalNoClick__MethodInfo); DO_APP_FUNC(0x0065B280, void, Menu_LoadMain, (Menu * __this, MethodInfo * method)); DO_APP_FUNC(0x0065BC00, IEnumerator *, Menu_WaitForSurvivalLobbyPlayersDetached, (Menu * __this, MethodInfo * method)); DO_APP_FUNC(0x0065BCA0, void, Menu_OnLobbyInviteButtonClick, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCBA8, Menu_OnLobbyInviteButtonClick__MethodInfo); DO_APP_FUNC(0x0065BD70, void, Menu_OnLobbyChangeCharacterNextClick, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCBD8, Menu_OnLobbyChangeCharacterNextClick__MethodInfo); DO_APP_FUNC(0x0065BE90, void, Menu_OnLobbyChangeCharacterPrevClick, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCBC0, Menu_OnLobbyChangeCharacterPrevClick__MethodInfo); DO_APP_FUNC(0x0065BFB0, void, Menu_OnLobbyExitButtonClick, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB868, Menu_OnLobbyExitButtonClick__MethodInfo); DO_APP_FUNC(0x0065C260, void, Menu_SceneLoadLocalBegin, (Menu * __this, String * scene, IProtocolToken * token, MethodInfo * method)); DO_APP_FUNC(0x0065C740, void, Menu_SceneLoadLocalDone, (Menu * __this, String * scene, IProtocolToken * token, MethodInfo * method)); DO_APP_FUNC(0x0065DCF0, void, Menu_SetupSLCFromToken, (Menu * __this, GameConfigToken * gameConfigToken, MethodInfo * method)); DO_APP_FUNC(0x0065DF00, void, Menu_ShowGameStats, (Menu * __this, MenuSceneToken * menuSceneToken, MethodInfo * method)); -DO_APP_FUNC(0x00661E60, bool, Menu_GetAwardEntryByChildIndex, (Menu * __this, Menu_GameStatsAward * award, int32_t index, Menu_GameStatsAwardEntry * outEntry, MethodInfo * method)); +DO_APP_FUNC(0x00661E60, bool, Menu_GetAwardEntryByChildIndex, (Menu * __this, Menu_GameStatsAward * award, int32_t index, Menu_GameStatsAwardEntry * * outEntry, MethodInfo * method)); DO_APP_FUNC(0x00662180, IEnumerator *, Menu_UpdateNolanRank, (Menu * __this, int32_t connectionId, int32_t rank, MethodInfo * method)); DO_APP_FUNC(0x006621E0, GameStatsPlayerToken *, Menu_GetMyPlayerToken, (Menu * __this, GameStatsToken * gameStatsToken, MethodInfo * method)); DO_APP_FUNC(0x00662390, Sprite *, Menu_GetRitualIcon, (Menu * __this, String * mapName, MethodInfo * method)); DO_APP_FUNC(0x00662610, void, Menu_OnServerBrowserBackButtonClick, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCB28, Menu_OnServerBrowserBackButtonClick__MethodInfo); DO_APP_FUNC(0x00662720, void, Menu_OnOptionsButtonClick, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCB50, Menu_OnOptionsButtonClick__MethodInfo); DO_APP_FUNC(0x006629C0, void, Menu_OnOptionsBackButtonClick, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCB68, Menu_OnOptionsBackButtonClick__MethodInfo); DO_APP_FUNC(0x00662BF0, void, Menu_OnGraphicsSettingsButtonClick, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCC58, Menu_OnGraphicsSettingsButtonClick__MethodInfo); DO_APP_FUNC(0x00662D40, void, Menu_OnGraphicsSettingsBack, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCC50, Menu_OnGraphicsSettingsBack__MethodInfo); DO_APP_FUNC(0x00662D80, void, Menu_OnLanguageButtonClick, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCBE0, Menu_OnLanguageButtonClick__MethodInfo); DO_APP_FUNC(0x00662E50, void, Menu_OnKeyBindingsButtonClick, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCC08, Menu_OnKeyBindingsButtonClick__MethodInfo); DO_APP_FUNC(0x00662FC0, void, Menu_OnLanguageSelected, (Menu * __this, int32_t languageID, MethodInfo * method)); DO_APP_FUNC(0x00663070, void, Menu_OnLanguageBackButtonClick, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCBF8, Menu_OnLanguageBackButtonClick__MethodInfo); DO_APP_FUNC(0x006630B0, void, Menu_OnLanguageOKButtonClick, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCBE8, Menu_OnLanguageOKButtonClick__MethodInfo); DO_APP_FUNC(0x006634C0, void, Menu_PopulateRegionDropdown, (Menu * __this, MethodInfo * method)); DO_APP_FUNC(0x006638C0, void, Menu_OnKeyBindingsBackButtonClick, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCC00, Menu_OnKeyBindingsBackButtonClick__MethodInfo); DO_APP_FUNC(0x00663A60, void, Menu_OnKeyBindingsResetButtonClick, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCBF0, Menu_OnKeyBindingsResetButtonClick__MethodInfo); DO_APP_FUNC(0x00663BC0, void, Menu_OnKeyBindingsResetYesClick, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDAC80, Menu_OnKeyBindingsResetYesClick__MethodInfo); DO_APP_FUNC(0x00663C40, void, Menu_OnGameplayClick, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCC68, Menu_OnGameplayClick__MethodInfo); DO_APP_FUNC(0x00663D10, void, Menu_OnGameplayBackClick, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCC60, Menu_OnGameplayBackClick__MethodInfo); DO_APP_FUNC(0x00663DD0, void, Menu_OnAudioSettingsClick, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCCD0, Menu_OnAudioSettingsClick__MethodInfo); DO_APP_FUNC(0x00663F10, void, Menu_OnAudioSettingsBackClick, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCCE8, Menu_OnAudioSettingsBackClick__MethodInfo); DO_APP_FUNC(0x00663F50, void, Menu_OnQuitButtonClick, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCB30, Menu_OnQuitButtonClick__MethodInfo); DO_APP_FUNC(0x00663FA0, void, Menu_OnCreditsButtonClick, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCCA0, Menu_OnCreditsButtonClick__MethodInfo); DO_APP_FUNC(0x00664030, void, Menu_OnCreditsExitButtonClick, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCCA8, Menu_OnCreditsExitButtonClick__MethodInfo); DO_APP_FUNC(0x00664120, void, Menu_OnMessageModalOK, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCB60, Menu_OnMessageModalOK__MethodInfo); DO_APP_FUNC(0x00664160, void, Menu_OnJoinDiscordMessageModalOK, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCC18, Menu_OnJoinDiscordMessageModalOK__MethodInfo); DO_APP_FUNC(0x00664190, void, Menu_ShowJoinDiscordMessageModal, (Menu * __this, String * text, MethodInfo * method)); DO_APP_FUNC(0x006642B0, void, Menu_OnShutdownDone, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDAC58, Menu_OnShutdownDone__MethodInfo); DO_APP_FUNC(0x00664FF0, void, Menu_BoltShutdownBegin, (Menu * __this, AddCallback * registerDoneCallback, UdpConnectionDisconnectReason__Enum disconnectReason, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, Menu_PersistBetweenStartupAndShutdown, (Menu * __this, MethodInfo * method)); DO_APP_FUNC(0x00665290, void, Menu_ShowLobby, (Menu * __this, bool soloMode, MethodInfo * method)); @@ -20227,8 +23125,11 @@ DO_APP_FUNC(0x00667FA0, void, Menu_ValidateSerializedResult, (Menu * __this, uin DO_APP_FUNC(0x00668170, void, Menu_SendInventoryItems, (Menu * __this, MethodInfo * method)); DO_APP_FUNC(0x00668400, void, Menu_StartServerJoin, (Menu * __this, MethodInfo * method)); DO_APP_FUNC(0x00668430, void, Menu_OnSteamLobbyCreated, (Menu * __this, LobbyCreated_t pCallback, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB918, Menu_OnSteamLobbyCreated__MethodInfo); DO_APP_FUNC(0x00668A20, void, Menu_OnSteamLobbyEnter, (Menu * __this, LobbyEnter_t pCallback, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB8E8, Menu_OnSteamLobbyEnter__MethodInfo); DO_APP_FUNC(0x00668CF0, void, Menu_OnSteamLobbyJoinRequested, (Menu * __this, GameLobbyJoinRequested_t pCallback, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB8F8, Menu_OnSteamLobbyJoinRequested__MethodInfo); DO_APP_FUNC(0x006691E0, void, Menu_SessionCreatedOrUpdated, (Menu * __this, UdpSession * session, MethodInfo * method)); DO_APP_FUNC(0x00669330, void, Menu_SessionConnectFailed, (Menu * __this, UdpSession * session, IProtocolToken * token, UdpSessionError__Enum errorReason, MethodInfo * method)); DO_APP_FUNC(0x00669610, void, Menu_ConnectFailed, (Menu * __this, UdpEndPoint endpoint, IProtocolToken * token, MethodInfo * method)); @@ -20255,10 +23156,15 @@ DO_APP_FUNC(0x0066D750, bool, Menu_CanPlayMode, (Menu * __this, DevourGameMode__ DO_APP_FUNC(0x0066D900, void, Menu_ResetLobby, (Menu * __this, MethodInfo * method)); DO_APP_FUNC(0x0066E8E0, void, Menu_ResetOutfitButtonState, (Menu * __this, MethodInfo * method)); DO_APP_FUNC(0x0066EAE0, void, Menu_ToggleLobbyProximityVoice, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCA80, Menu_ToggleLobbyProximityVoice__MethodInfo); DO_APP_FUNC(0x0066EB00, void, Menu_ToggleLobbyPlayerCollisions, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCA98, Menu_ToggleLobbyPlayerCollisions__MethodInfo); DO_APP_FUNC(0x0066EB20, void, Menu_ToggleLobbyBatteries, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCAA0, Menu_ToggleLobbyBatteries__MethodInfo); DO_APP_FUNC(0x0066EB40, void, Menu_ToggleLobbyMedkits, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCAA8, Menu_ToggleLobbyMedkits__MethodInfo); DO_APP_FUNC(0x0066EB60, void, Menu_ToggleLobbyPerks, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCA90, Menu_ToggleLobbyPerks__MethodInfo); DO_APP_FUNC(0x0066EB80, void, Menu_OnLobbyProximityVoice, (Menu * __this, bool value, bool shouldUpdateSession, MethodInfo * method)); DO_APP_FUNC(0x0066EF00, void, Menu_OnLobbyPlayerToPlayerCollisions, (Menu * __this, bool value, bool shouldUpdateSession, MethodInfo * method)); DO_APP_FUNC(0x0066F280, void, Menu_OnLobbyBatteries, (Menu * __this, bool value, bool shouldUpdateSession, MethodInfo * method)); @@ -20270,15 +23176,19 @@ DO_APP_FUNC(0x006700A0, void, Menu_DestroyDissonance, (Menu * __this, MethodInfo DO_APP_FUNC(0x006701D0, void, Menu_LeaveSteamLobby, (Menu * __this, MethodInfo * method)); DO_APP_FUNC(0x00670260, void, Menu_PopulateRegionPicker, (Menu * __this, MethodInfo * method)); DO_APP_FUNC(0x00670730, void, Menu_OnServerBrowserRegionPickerChanged, (Menu * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCB10, Menu_OnServerBrowserRegionPickerChanged__MethodInfo); DO_APP_FUNC(0x00670AC0, GameMode__Enum, Menu_GetGameMode, (Menu * __this, MethodInfo * method)); DO_APP_FUNC(0x00670AD0, void, Menu_SetSurvivalLobbyController, (Menu * __this, SurvivalLobbyController * controller, MethodInfo * method)); DO_APP_FUNC(0x00670B30, void, Menu_OnLobbyReadyClick, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCB70, Menu_OnLobbyReadyClick__MethodInfo); DO_APP_FUNC(0x00670C50, void, Menu_UpdateLobbyReadyButton, (Menu * __this, MethodInfo * method)); DO_APP_FUNC(0x00670D70, bool, Menu_IsLobbyReady, (Menu * __this, MethodInfo * method)); DO_APP_FUNC(0x00670D80, void, Menu_ForceLobbyReady, (Menu * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x00670D90, void, Menu_OnChatMessageSubmit, (Menu * __this, MethodInfo * method)); DO_APP_FUNC(0x00671330, void, Menu_OnChatMessageReceived, (Menu * __this, TextMessage message, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDBB00, Menu_OnChatMessageReceived__MethodInfo); DO_APP_FUNC(0x006716D0, void, Menu_OnPlayerJoinedSession, (Menu * __this, VoicePlayerState * voicePlayerState, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDBB10, Menu_OnPlayerJoinedSession__MethodInfo); DO_APP_FUNC(0x00671780, void, Menu_ShowMessage, (Menu * __this, String * localizedKey, MethodInfo * method)); DO_APP_FUNC(0x00671880, DevourGameMode__Enum, Menu_GetDevourGameMode, (Menu * __this, MethodInfo * method)); DO_APP_FUNC(0x00671890, DevourMap__Enum, Menu_GetMap, (Menu * __this, MethodInfo * method)); @@ -20288,15 +23198,25 @@ DO_APP_FUNC(0x006718C0, bool, Menu_GetLobbyBatteries, (Menu * __this, MethodInfo DO_APP_FUNC(0x006718D0, bool, Menu_GetLobbyMedkits, (Menu * __this, MethodInfo * method)); DO_APP_FUNC(0x006718E0, bool, Menu_GetLobbyPerks, (Menu * __this, MethodInfo * method)); DO_APP_FUNC(0x006718F0, void, Menu_OnGameStatsButtonClick, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCC70, Menu_OnGameStatsButtonClick__MethodInfo); DO_APP_FUNC(0x00671A40, void, Menu_OnGameStatsCloseClick, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCC78, Menu_OnGameStatsCloseClick__MethodInfo); DO_APP_FUNC(0x00671B00, void, Menu_OnUnlockedModalOKClick, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCAF8, Menu_OnUnlockedModalOKClick__MethodInfo); DO_APP_FUNC(0x00671B90, void, Menu_OnPerkModalUnlockClick, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCB40, Menu_OnPerkModalUnlockClick__MethodInfo); DO_APP_FUNC(0x00671CD0, void, Menu_OnPerkModalCancelClick, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCB58, Menu_OnPerkModalCancelClick__MethodInfo); DO_APP_FUNC(0x00671D60, void, Menu_OnFlashlightModalUnlockClick, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCC88, Menu_OnFlashlightModalUnlockClick__MethodInfo); DO_APP_FUNC(0x00671EA0, void, Menu_OnFlashlightModalCancelClick, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCC80, Menu_OnFlashlightModalCancelClick__MethodInfo); DO_APP_FUNC(0x00671F30, void, Menu_OnEmoteModalUnlockClick, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCC98, Menu_OnEmoteModalUnlockClick__MethodInfo); DO_APP_FUNC(0x00672070, void, Menu_OnEmoteModalCancelClick, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCC90, Menu_OnEmoteModalCancelClick__MethodInfo); DO_APP_FUNC(0x00672100, void, Menu_OnLobbyOptionsClick, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCB98, Menu_OnLobbyOptionsClick__MethodInfo); DO_APP_FUNC(0x00672410, void, Menu_ShowPerkModal, (Menu * __this, CharacterPerk * perk, MethodInfo * method)); DO_APP_FUNC(0x006726D0, void, Menu_ShowFlashlightModal, (Menu * __this, CharacterFlashlight * flashlight, MethodInfo * method)); DO_APP_FUNC(0x00672920, void, Menu_ShowEmoteModal, (Menu * __this, CharacterEmote * emote, MethodInfo * method)); @@ -20312,8 +23232,11 @@ DO_APP_FUNC(0x00673830, SurvivalLobbyController *, Menu_GetLobbyController, (Men DO_APP_FUNC(0x00673840, void, Menu_HandleBestFitTextComponents, (Menu * __this, MethodInfo * method)); DO_APP_FUNC(0x006738F0, void, Menu_Splash, (Menu * __this, MethodInfo * method)); DO_APP_FUNC(0x00673CA0, void, Menu_OnSplashComplete, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFF28, Menu_OnSplashComplete__MethodInfo); DO_APP_FUNC(0x00674070, void, Menu_OnControllerConnected, (Menu * __this, ControllerStatusChangedEventArgs * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA450, Menu_OnControllerConnected__MethodInfo); DO_APP_FUNC(0x006743E0, void, Menu_OnControllerDisconnected, (Menu * __this, ControllerStatusChangedEventArgs * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA438, Menu_OnControllerDisconnected__MethodInfo); DO_APP_FUNC(0x006748C0, void, Menu_ShowMessageModal, (Menu * __this, String * text, MethodInfo * method)); DO_APP_FUNC(0x006749E0, IEnumerator *, Menu_ShowMessageModalInternal, (Menu * __this, String * text, MethodInfo * method)); DO_APP_FUNC(0x00674AF0, bool, Menu_TakeMessageModalLock, (Menu * __this, MethodInfo * method)); @@ -20325,120 +23248,204 @@ DO_APP_FUNC(0x006751C0, void, Menu_SetCanvasScaling, (Menu * __this, MethodInfo DO_APP_FUNC(0x00675270, void, Menu_CheckForReconnect, (Menu * __this, MethodInfo * method)); DO_APP_FUNC(0x006755E0, void, Menu_ShowReconnectModal, (Menu * __this, MethodInfo * method)); DO_APP_FUNC(0x00675630, void, Menu_OnCancelReconnect, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCCD8, Menu_OnCancelReconnect__MethodInfo); DO_APP_FUNC(0x00675680, void, Menu_OnConfirmReconnect, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCCB8, Menu_OnConfirmReconnect__MethodInfo); DO_APP_FUNC(0x00675900, void, Menu_SetupVR, (Menu * __this, MethodInfo * method)); DO_APP_FUNC(0x00675EB0, void, Menu_OnVRPosition, (Menu * __this, InputAction_CallbackContext ctx, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA568, Menu_OnVRPosition__MethodInfo); DO_APP_FUNC(0x006764A0, void, Menu_OnVRRotation, (Menu * __this, InputAction_CallbackContext ctx, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA578, Menu_OnVRRotation__MethodInfo); DO_APP_FUNC(0x00676CA0, void, Menu_SetupCanvasForVR, (Menu * __this, Canvas * canvas, MethodInfo * method)); DO_APP_FUNC(0x00676FB0, void, Menu_SetupOverlayCanvasForVR, (Menu * __this, Canvas * canvas, MethodInfo * method)); DO_APP_FUNC(0x006770C0, void, Menu_PositionCanvasesForVR, (Menu * __this, Transform * cameraPos, float yPos, MethodInfo * method)); DO_APP_FUNC(0x006775C0, void, Menu_OnVRSettingsClick, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCAD8, Menu_OnVRSettingsClick__MethodInfo); DO_APP_FUNC(0x00677680, void, Menu_OnVRSettingsBackClick, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCAD0, Menu_OnVRSettingsBackClick__MethodInfo); DO_APP_FUNC(0x00677740, void, Menu_SetMenuCameraPos, (Menu * __this, Transform * cameraPos, bool recenter, MethodInfo * method)); DO_APP_FUNC(0x00678970, void, Menu_SetVRUIPointersActive, (Menu * __this, bool active, MethodInfo * method)); DO_APP_FUNC(0x00678AE0, void, Menu_RefreshVRUIPointers, (Menu * __this, MethodInfo * method)); DO_APP_FUNC(0x00678B20, void, Menu_OnVRTurningSpeedSliderChanged, (Menu * __this, float value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCAC8, Menu_OnVRTurningSpeedSliderChanged__MethodInfo); DO_APP_FUNC(0x00678C70, void, Menu_OnVRTurningSpeedInputEndEdit, (Menu * __this, String * input, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCAC0, Menu_OnVRTurningSpeedInputEndEdit__MethodInfo); DO_APP_FUNC(0x00678D90, IEnumerator *, Menu_StartXR, (Menu * __this, MethodInfo * method)); DO_APP_FUNC(0x00678E30, void, Menu_OnApplicationQuit, (Menu * __this, MethodInfo * method)); DO_APP_FUNC(0x00678F30, void, Menu_CheckForVRRecenter, (Menu * __this, MethodInfo * method)); DO_APP_FUNC(0x00679130, void, Menu_OnVRControlsClick, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCAE8, Menu_OnVRControlsClick__MethodInfo); DO_APP_FUNC(0x00679330, void, Menu_OnVRControlsBackClick, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCAE0, Menu_OnVRControlsBackClick__MethodInfo); DO_APP_FUNC(0x00679370, void, Menu_SetVRLobbyBlockRaycasts, (Menu * __this, bool enabled, MethodInfo * method)); DO_APP_FUNC(0x00679450, void, Menu_ShowCurrentPetPreview, (Menu * __this, String * currentPet, MethodInfo * method)); DO_APP_FUNC(0x00679650, void, Menu_ShowBrowserOpenedForPurchaseConfirmModal, (Menu * __this, MethodInfo * method)); DO_APP_FUNC(0x00679890, IEnumerator *, Menu_WaitToEnableConfirmModalButtons, (Menu * __this, float delay, MethodInfo * method)); DO_APP_FUNC(0x00679940, void, Menu_ShowPublicServerWarningModal, (Menu * __this, UnityAction * yesAction, MethodInfo * method)); DO_APP_FUNC(0x00679BA0, void, Menu_OnPublicServerWarningNoClick, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCB48, Menu_OnPublicServerWarningNoClick__MethodInfo); DO_APP_FUNC(0x00679BD0, void, Menu_OnDeviceConnected, (Menu * __this, InputDevice_1 device, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA440, Menu_OnDeviceConnected__MethodInfo); DO_APP_FUNC(0x00679D70, void, Menu_OnSeatedModeChanged, (Menu * __this, bool seatedMode, MethodInfo * method)); DO_APP_FUNC(0x00679D90, IEnumerator *, Menu_DelayEnableKeyBindingsScrollToSelection, (Menu * __this, MethodInfo * method)); DO_APP_FUNC(0x00679E30, void, Menu_PopulateKeyBindings, (Menu * __this, bool useGamepad, MethodInfo * method)); DO_APP_FUNC(0x0067A020, void, Menu_WarnClientSuspiciousHost, (Menu * __this, MethodInfo * method)); DO_APP_FUNC(0x0067A4A0, void, Menu_OnStatsClick, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCB08, Menu_OnStatsClick__MethodInfo); DO_APP_FUNC(0x0067A500, void, Menu_OnStatsBackClick, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCB00, Menu_OnStatsBackClick__MethodInfo); DO_APP_FUNC(0x0067A610, void, Menu_OnStatsLobbyClick, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCAF0, Menu_OnStatsLobbyClick__MethodInfo); DO_APP_FUNC(0x0067A720, bool, Menu_PerksIsVisible, (Menu * __this, MethodInfo * method)); DO_APP_FUNC(0x0067A7F0, void, Menu_SetActivePerksTab, (Menu * __this, Button * activeTab, MethodInfo * method)); DO_APP_FUNC(0x0067B2A0, void, Menu_OnPerksGroupTabClick, (Menu * __this, int32_t group, MethodInfo * method)); DO_APP_FUNC(0x0067B4A0, void, Menu_SetupPerksNavigation, (Menu * __this, int32_t group, MethodInfo * method)); DO_APP_FUNC(0x0067B960, void, Menu_RestoreLastPerks, (Menu * __this, MethodInfo * method)); DO_APP_FUNC(0x0067B990, void, Menu_RestoreLastPerk, (Menu * __this, int32_t group, MethodInfo * method)); -DO_APP_FUNC(0x0067BC20, String *, Menu_GetSteamAuthTicket, (Menu * __this, HAuthTicket ticket, MethodInfo * method)); +DO_APP_FUNC(0x0067BC20, String *, Menu_GetSteamAuthTicket, (Menu * __this, HAuthTicket * ticket, MethodInfo * method)); DO_APP_FUNC(0x0067BFA0, void, Menu_CancelAuthTicket, (Menu * __this, HAuthTicket ticket, MethodInfo * method)); DO_APP_FUNC(0x0067C060, void, Menu_SetUDPPlatform, (Menu * __this, PhotonRegion * region, MethodInfo * method)); DO_APP_FUNC(0x0067C390, void, Menu_OnDestroy, (Menu * __this, MethodInfo * method)); DO_APP_FUNC(0x0067C570, void, Menu__ctor, (Menu * __this, MethodInfo * method)); DO_APP_FUNC(0x0067C6E0, void, Menu__cctor, (MethodInfo * method)); DO_APP_FUNC(0x00642F20, void, Menu__Start_b__550_0, (Menu * __this, bool _p0_, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCA88, Menu__Start_b__550_0__MethodInfo); DO_APP_FUNC(0x0067C910, void, Menu__Start_b__550_1, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCA20, Menu__Start_b__550_1__MethodInfo); DO_APP_FUNC(0x0067C920, void, Menu__Start_b__550_2, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC9D8, Menu__Start_b__550_2__MethodInfo); DO_APP_FUNC(0x0067C930, void, Menu__Start_b__550_3, (Menu * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC988, Menu__Start_b__550_3__MethodInfo); DO_APP_FUNC(0x0067C940, void, Menu__Start_b__550_4, (Menu * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC920, Menu__Start_b__550_4__MethodInfo); DO_APP_FUNC(0x0067C950, void, Menu__Start_b__550_5, (Menu * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC8D8, Menu__Start_b__550_5__MethodInfo); DO_APP_FUNC(0x0067C960, void, Menu__Start_b__550_6, (Menu * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC8A8, Menu__Start_b__550_6__MethodInfo); DO_APP_FUNC(0x0067C970, void, Menu__Start_b__550_7, (Menu * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC890, Menu__Start_b__550_7__MethodInfo); DO_APP_FUNC(0x0067C980, void, Menu__Start_b__550_8, (Menu * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC898, Menu__Start_b__550_8__MethodInfo); DO_APP_FUNC(0x0067C990, void, Menu__Start_b__550_9, (Menu * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC880, Menu__Start_b__550_9__MethodInfo); DO_APP_FUNC(0x0067C9A0, void, Menu__Start_b__550_10, (Menu * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCA70, Menu__Start_b__550_10__MethodInfo); DO_APP_FUNC(0x0067C9B0, void, Menu__Start_b__550_11, (Menu * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCA78, Menu__Start_b__550_11__MethodInfo); DO_APP_FUNC(0x0067C9C0, void, Menu__Start_b__550_12, (Menu * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCA60, Menu__Start_b__550_12__MethodInfo); DO_APP_FUNC(0x0067C9D0, void, Menu__Start_b__550_13, (Menu * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCA68, Menu__Start_b__550_13__MethodInfo); DO_APP_FUNC(0x0067C9E0, void, Menu__Start_b__550_14, (Menu * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCA50, Menu__Start_b__550_14__MethodInfo); DO_APP_FUNC(0x0067C9F0, void, Menu__Start_b__550_15, (Menu * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCA58, Menu__Start_b__550_15__MethodInfo); DO_APP_FUNC(0x0067CA00, void, Menu__Start_b__550_16, (Menu * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCA40, Menu__Start_b__550_16__MethodInfo); DO_APP_FUNC(0x0067CA10, void, Menu__Start_b__550_17, (Menu * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCA48, Menu__Start_b__550_17__MethodInfo); DO_APP_FUNC(0x0067CA20, void, Menu__Start_b__550_18, (Menu * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCA30, Menu__Start_b__550_18__MethodInfo); DO_APP_FUNC(0x0067CA30, void, Menu__Start_b__550_19, (Menu * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCA38, Menu__Start_b__550_19__MethodInfo); DO_APP_FUNC(0x0067CA40, void, Menu__Start_b__550_20, (Menu * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCA28, Menu__Start_b__550_20__MethodInfo); DO_APP_FUNC(0x0067CA50, void, Menu__Start_b__550_21, (Menu * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCA10, Menu__Start_b__550_21__MethodInfo); DO_APP_FUNC(0x0067CA60, void, Menu__Start_b__550_22, (Menu * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCA18, Menu__Start_b__550_22__MethodInfo); DO_APP_FUNC(0x0067CA70, void, Menu__Start_b__550_23, (Menu * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCA00, Menu__Start_b__550_23__MethodInfo); DO_APP_FUNC(0x0067CA80, void, Menu__Start_b__550_24, (Menu * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCA08, Menu__Start_b__550_24__MethodInfo); DO_APP_FUNC(0x0067CA90, void, Menu__Start_b__550_25, (Menu * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC9F0, Menu__Start_b__550_25__MethodInfo); DO_APP_FUNC(0x0067CAA0, void, Menu__Start_b__550_26, (Menu * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC9F8, Menu__Start_b__550_26__MethodInfo); DO_APP_FUNC(0x0067CAB0, void, Menu__Start_b__550_27, (Menu * __this, bool isOn, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC9E0, Menu__Start_b__550_27__MethodInfo); DO_APP_FUNC(0x0067CAC0, void, Menu__Start_b__550_28, (Menu * __this, bool isOn, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC9E8, Menu__Start_b__550_28__MethodInfo); DO_APP_FUNC(0x0067CAD0, void, Menu__Start_b__550_29, (Menu * __this, float value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC9D0, Menu__Start_b__550_29__MethodInfo); DO_APP_FUNC(0x0067CB90, void, Menu__Start_b__550_30, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC9C0, Menu__Start_b__550_30__MethodInfo); DO_APP_FUNC(0x0067CCF0, void, Menu__Start_b__550_31, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC9C8, Menu__Start_b__550_31__MethodInfo); DO_APP_FUNC(0x0067CE40, void, Menu__Start_b__550_32, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC9B0, Menu__Start_b__550_32__MethodInfo); DO_APP_FUNC(0x0067CF90, void, Menu__Start_b__550_33, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC9B8, Menu__Start_b__550_33__MethodInfo); DO_APP_FUNC(0x0067D040, void, Menu__Start_b__550_34, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC9A0, Menu__Start_b__550_34__MethodInfo); DO_APP_FUNC(0x0067D1B0, void, Menu__Start_b__550_35, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC9A8, Menu__Start_b__550_35__MethodInfo); DO_APP_FUNC(0x0067D290, void, Menu__Start_b__550_37, (Menu * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC990, Menu__Start_b__550_37__MethodInfo); DO_APP_FUNC(0x0067D350, void, Menu__Start_b__550_38, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC998, Menu__Start_b__550_38__MethodInfo); DO_APP_FUNC(0x0067D390, void, Menu__Start_b__550_39, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC980, Menu__Start_b__550_39__MethodInfo); DO_APP_FUNC(0x0067D450, void, Menu__Start_b__550_40, (Menu * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC970, Menu__Start_b__550_40__MethodInfo); DO_APP_FUNC(0x0067D510, void, Menu__Start_b__550_41, (Menu * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC978, Menu__Start_b__550_41__MethodInfo); DO_APP_FUNC(0x0067D5D0, void, Menu__Start_b__550_42, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC960, Menu__Start_b__550_42__MethodInfo); DO_APP_FUNC(0x0067D680, void, Menu__Start_b__550_43, (Menu * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC968, Menu__Start_b__550_43__MethodInfo); DO_APP_FUNC(0x0067D750, void, Menu__Start_b__550_44, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC950, Menu__Start_b__550_44__MethodInfo); DO_APP_FUNC(0x0067D800, void, Menu__Start_b__550_45, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC958, Menu__Start_b__550_45__MethodInfo); DO_APP_FUNC(0x0067D910, void, Menu__Start_b__550_46, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC940, Menu__Start_b__550_46__MethodInfo); DO_APP_FUNC(0x0067D9C0, void, Menu__Start_b__550_47, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC948, Menu__Start_b__550_47__MethodInfo); DO_APP_FUNC(0x0067DA70, void, Menu__Start_b__550_48, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC930, Menu__Start_b__550_48__MethodInfo); DO_APP_FUNC(0x0067DB20, void, Menu__Start_b__550_49, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC938, Menu__Start_b__550_49__MethodInfo); DO_APP_FUNC(0x0067DBD0, void, Menu__Start_b__550_50, (Menu * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC928, Menu__Start_b__550_50__MethodInfo); DO_APP_FUNC(0x0067DCB0, void, Menu__Start_b__550_51, (Menu * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC910, Menu__Start_b__550_51__MethodInfo); DO_APP_FUNC(0x0067DD70, void, Menu__Start_b__550_52, (Menu * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC918, Menu__Start_b__550_52__MethodInfo); DO_APP_FUNC(0x0067DE50, void, Menu__Start_b__550_53, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC900, Menu__Start_b__550_53__MethodInfo); DO_APP_FUNC(0x0067DF00, void, Menu__Start_b__550_54, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC908, Menu__Start_b__550_54__MethodInfo); DO_APP_FUNC(0x0067DFB0, void, Menu__Start_b__550_55, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC8F0, Menu__Start_b__550_55__MethodInfo); DO_APP_FUNC(0x0067E060, void, Menu__Start_b__550_56, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC8F8, Menu__Start_b__550_56__MethodInfo); DO_APP_FUNC(0x0067E110, void, Menu__Start_b__550_57, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC8E0, Menu__Start_b__550_57__MethodInfo); DO_APP_FUNC(0x0067E1C0, void, Menu__Start_b__550_58, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC8E8, Menu__Start_b__550_58__MethodInfo); DO_APP_FUNC(0x0067E270, void, Menu__Start_b__550_59, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC8D0, Menu__Start_b__550_59__MethodInfo); DO_APP_FUNC(0x0067E320, void, Menu__Start_b__550_60, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC8C0, Menu__Start_b__550_60__MethodInfo); DO_APP_FUNC(0x0067E3D0, void, Menu__Start_b__550_61, (Menu * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC8C8, Menu__Start_b__550_61__MethodInfo); DO_APP_FUNC(0x0067E4A0, void, Menu__Start_b__550_62, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC8B0, Menu__Start_b__550_62__MethodInfo); DO_APP_FUNC(0x0067E550, void, Menu__Start_b__550_63, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC8B8, Menu__Start_b__550_63__MethodInfo); DO_APP_FUNC(0x0067E600, void, Menu__Start_b__550_64, (Menu * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC8A0, Menu__Start_b__550_64__MethodInfo); DO_APP_FUNC(0x0067E6C0, bool, Menu__OnHostStartButtonClick_b__561_0, (Menu * __this, KeyValuePair_2_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion_ region, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB780, Menu__OnHostStartButtonClick_b__561_0__MethodInfo); DO_APP_FUNC(0x0067E7D0, void, Menu__RefreshInventory_b__636_0, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDAF48, Menu__RefreshInventory_b__636_0__MethodInfo); DO_APP_FUNC(0x0067E7E0, void, Menu__OnPerkModalUnlockClick_b__764_0, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA770, Menu__OnPerkModalUnlockClick_b__764_0__MethodInfo); DO_APP_FUNC(0x0067EA20, void, Menu__OnFlashlightModalUnlockClick_b__766_0, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA750, Menu__OnFlashlightModalUnlockClick_b__766_0__MethodInfo); DO_APP_FUNC(0x0067EC60, void, Menu__OnEmoteModalUnlockClick_b__768_0, (Menu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA738, Menu__OnEmoteModalUnlockClick_b__768_0__MethodInfo); DO_APP_FUNC(0x003AE050, void, Menu_MapListItem__ctor, (Menu_MapListItem * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Menu_ChallengeContainer__ctor, (Menu_ChallengeContainer * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Menu_GameStatsAward__ctor, (Menu_GameStatsAward * __this, MethodInfo * method)); @@ -20447,299 +23454,426 @@ DO_APP_FUNC(0x003AE050, void, Menu_AwardEntryData__ctor, (Menu_AwardEntryData * DO_APP_FUNC(0x0068B6A0, void, Menu_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Menu_c__ctor, (Menu_c * __this, MethodInfo * method)); DO_APP_FUNC(0x0068B750, bool, Menu_c__Start_b__550_36, (Menu_c * __this, Dropdown_OptionData * option, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC808, Menu_c__Start_b__550_36__MethodInfo); DO_APP_FUNC(0x0068B890, String *, Menu_c__CombinePaths_b__551_0, (Menu_c * __this, String * acc, String * p, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB9C8, Menu_c__CombinePaths_b__551_0__MethodInfo); DO_APP_FUNC(0x0068B8F0, bool, Menu_c__PopulateRobesWhenAvailable_b__576_1, (Menu_c * __this, CharacterData * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC780, Menu_c__PopulateRobesWhenAvailable_b__576_1__MethodInfo); DO_APP_FUNC(0x0068B980, bool, Menu_c__PopulateInventoryWhenAvailable_b__577_3, (Menu_c * __this, CharacterPerk * perk, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC620, Menu_c__PopulateInventoryWhenAvailable_b__577_3__MethodInfo); DO_APP_FUNC(0x0068B9A0, int32_t, Menu_c__PopulateInventoryWhenAvailable_b__577_4, (Menu_c * __this, CharacterPerk * perk, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC608, Menu_c__PopulateInventoryWhenAvailable_b__577_4__MethodInfo); DO_APP_FUNC(0x0068B9C0, bool, Menu_c__PopulateInventoryWhenAvailable_b__577_5, (Menu_c * __this, CharacterFlashlight * flashlight, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC610, Menu_c__PopulateInventoryWhenAvailable_b__577_5__MethodInfo); DO_APP_FUNC(0x0068B9E0, bool, Menu_c__PopulateInventoryWhenAvailable_b__577_6, (Menu_c * __this, CharacterFlashlight * flashlight, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC5F8, Menu_c__PopulateInventoryWhenAvailable_b__577_6__MethodInfo); DO_APP_FUNC(0x0068BA00, int32_t, Menu_c__PopulateInventoryWhenAvailable_b__577_7, (Menu_c * __this, CharacterFlashlight * flashlight, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC600, Menu_c__PopulateInventoryWhenAvailable_b__577_7__MethodInfo); DO_APP_FUNC(0x0068B980, bool, Menu_c__PopulateInventoryWhenAvailable_b__577_9, (Menu_c * __this, CharacterEmote * emote, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC5E8, Menu_c__PopulateInventoryWhenAvailable_b__577_9__MethodInfo); DO_APP_FUNC(0x0068BA20, bool, Menu_c__PopulateInventoryWhenAvailable_b__577_10, (Menu_c * __this, CharacterEmote * emote, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC640, Menu_c__PopulateInventoryWhenAvailable_b__577_10__MethodInfo); DO_APP_FUNC(0x0068BA40, int32_t, Menu_c__PopulateInventoryWhenAvailable_b__577_11, (Menu_c * __this, CharacterEmote * emote, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC628, Menu_c__PopulateInventoryWhenAvailable_b__577_11__MethodInfo); DO_APP_FUNC(0x0068B9A0, int32_t, Menu_c__PopulateInventoryWhenAvailable_b__577_12, (Menu_c * __this, CharacterEmote * emote, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC630, Menu_c__PopulateInventoryWhenAvailable_b__577_12__MethodInfo); DO_APP_FUNC(0x0068BA20, bool, Menu_c__PopulateInventoryWhenAvailable_b__577_13, (Menu_c * __this, UIOutfitSelectionType * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC618, Menu_c__PopulateInventoryWhenAvailable_b__577_13__MethodInfo); DO_APP_FUNC(0x0068BA20, bool, Menu_c__ShowCharacterOutfits_b__587_0, (Menu_c * __this, UIOutfitSelectionType * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB2A0, Menu_c__ShowCharacterOutfits_b__587_0__MethodInfo); DO_APP_FUNC(0x0068BA60, bool, Menu_c__ShowCharacterOutfits_b__587_1, (Menu_c * __this, UIFlashlightSelectionType * selection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB288, Menu_c__ShowCharacterOutfits_b__587_1__MethodInfo); DO_APP_FUNC(0x0068BA90, bool, Menu_c__ShowCharacterOutfits_b__587_2, (Menu_c * __this, UIFlashlightSelectionType * selection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB290, Menu_c__ShowCharacterOutfits_b__587_2__MethodInfo); DO_APP_FUNC(0x0068BAC0, bool, Menu_c__ShowCharacterOutfits_b__587_3, (Menu_c * __this, UIFlashlightSelectionType * selection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB278, Menu_c__ShowCharacterOutfits_b__587_3__MethodInfo); DO_APP_FUNC(0x0068BAF0, int32_t, Menu_c__ShowCharacterOutfits_b__587_4, (Menu_c * __this, UIFlashlightSelectionType * selection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB280, Menu_c__ShowCharacterOutfits_b__587_4__MethodInfo); DO_APP_FUNC(0x0068BB10, bool, Menu_c__ShowCharacterOutfits_b__587_5, (Menu_c * __this, UIEmoteSelectionType * selection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB268, Menu_c__ShowCharacterOutfits_b__587_5__MethodInfo); DO_APP_FUNC(0x0068BB40, bool, Menu_c__ShowCharacterOutfits_b__587_6, (Menu_c * __this, UIEmoteSelectionType * selection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB270, Menu_c__ShowCharacterOutfits_b__587_6__MethodInfo); DO_APP_FUNC(0x0068BB70, bool, Menu_c__ShowCharacterOutfits_b__587_7, (Menu_c * __this, UIEmoteSelectionType * selection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB258, Menu_c__ShowCharacterOutfits_b__587_7__MethodInfo); DO_APP_FUNC(0x0068BBA0, int32_t, Menu_c__ShowCharacterOutfits_b__587_8, (Menu_c * __this, UIEmoteSelectionType * selection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB260, Menu_c__ShowCharacterOutfits_b__587_8__MethodInfo); DO_APP_FUNC(0x0068BBC0, int32_t, Menu_c__ShowCharacterOutfits_b__587_9, (Menu_c * __this, UIEmoteSelectionType * selection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB248, Menu_c__ShowCharacterOutfits_b__587_9__MethodInfo); DO_APP_FUNC(0x0068BB40, bool, Menu_c__ShowCharacterPerks_b__590_0, (Menu_c * __this, UIPerkSelectionType * selection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB1D0, Menu_c__ShowCharacterPerks_b__590_0__MethodInfo); DO_APP_FUNC(0x0068BB40, bool, Menu_c__ShowCharacterPerks_b__590_1, (Menu_c * __this, UIPerkSelectionType * selection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB1D8, Menu_c__ShowCharacterPerks_b__590_1__MethodInfo); DO_APP_FUNC(0x0068BBE0, bool, Menu_c__OnLobbyPetsTabClick_b__596_0, (Menu_c * __this, UIPetSelectionType * selectionView, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB130, Menu_c__OnLobbyPetsTabClick_b__596_0__MethodInfo); DO_APP_FUNC(0x0068BC70, bool, Menu_c__UpdateLockedRobes_b__611_0, (Menu_c * __this, CharacterData * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB058, Menu_c__UpdateLockedRobes_b__611_0__MethodInfo); DO_APP_FUNC(0x0068BD00, bool, Menu_c__SelectPurchasedItem_b__612_2, (Menu_c * __this, UIFlashlightSelectionType * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB018, Menu_c__SelectPurchasedItem_b__612_2__MethodInfo); DO_APP_FUNC(0x0068BD00, bool, Menu_c__SelectPurchasedItem_b__612_3, (Menu_c * __this, UIPetSelectionType * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB000, Menu_c__SelectPurchasedItem_b__612_3__MethodInfo); DO_APP_FUNC(0x0068BD00, bool, Menu_c__SelectPurchasedItem_b__612_4, (Menu_c * __this, UIEmoteSelectionType * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB008, Menu_c__SelectPurchasedItem_b__612_4__MethodInfo); DO_APP_FUNC(0x0068BA20, bool, Menu_c__SelectPurchasedItem_b__612_0, (Menu_c * __this, UIOutfitSelectionType * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB028, Menu_c__SelectPurchasedItem_b__612_0__MethodInfo); DO_APP_FUNC(0x0068BD60, bool, Menu_c__SelectPurchasedItem_b__612_1, (Menu_c * __this, UIOutfitSelectionType * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB010, Menu_c__SelectPurchasedItem_b__612_1__MethodInfo); DO_APP_FUNC(0x0068BDC0, bool, Menu_c__LoadMain_b__650_0, (Menu_c * __this, VoicePlayerState * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDAEE0, Menu_c__LoadMain_b__650_0__MethodInfo); DO_APP_FUNC(0x0068BE20, String *, Menu_c__LoadMain_b__650_1, (Menu_c * __this, VoicePlayerState * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDAED0, Menu_c__LoadMain_b__650_1__MethodInfo); DO_APP_FUNC(0x0068BE40, int32_t, Menu_c__ShowGameStats_b__659_0, (Menu_c * __this, Menu_GameStatsAwardEntry * entry, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDADE0, Menu_c__ShowGameStats_b__659_0__MethodInfo); DO_APP_FUNC(0x0068BE40, int32_t, Menu_c__ShowGameStats_b__659_1, (Menu_c * __this, Menu_GameStatsAwardEntry * entry, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDADC8, Menu_c__ShowGameStats_b__659_1__MethodInfo); DO_APP_FUNC(0x0068BDC0, bool, Menu_c__OnEvent_b__718_0, (Menu_c * __this, VoicePlayerState * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA8C0, Menu_c__OnEvent_b__718_0__MethodInfo); DO_APP_FUNC(0x0068BE20, String *, Menu_c__OnEvent_b__718_1, (Menu_c * __this, VoicePlayerState * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA8A0, Menu_c__OnEvent_b__718_1__MethodInfo); DO_APP_FUNC(0x003BCD60, void, Menu_Start_d_550__ctor, (Menu_Start_d_550 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Menu_Start_d_550_System_IDisposable_Dispose, (Menu_Start_d_550 * __this, MethodInfo * method)); DO_APP_FUNC(0x0068BE60, bool, Menu_Start_d_550_MoveNext, (Menu_Start_d_550 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, Menu_Start_d_550_System_Collections_Generic_IEnumerator_System_Object__get_Current, (Menu_Start_d_550 * __this, MethodInfo * method)); DO_APP_FUNC(0x00693400, void, Menu_Start_d_550_System_Collections_IEnumerator_Reset, (Menu_Start_d_550 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC7A0, Menu_Start_d_550_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Menu_Start_d_550_System_Collections_IEnumerator_get_Current, (Menu_Start_d_550 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, Menu_WaitToWarnNoSteamworks_d_553__ctor, (Menu_WaitToWarnNoSteamworks_d_553 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Menu_WaitToWarnNoSteamworks_d_553_System_IDisposable_Dispose, (Menu_WaitToWarnNoSteamworks_d_553 * __this, MethodInfo * method)); DO_APP_FUNC(0x00693450, bool, Menu_WaitToWarnNoSteamworks_d_553_MoveNext, (Menu_WaitToWarnNoSteamworks_d_553 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, Menu_WaitToWarnNoSteamworks_d_553_System_Collections_Generic_IEnumerator_System_Object__get_Current, (Menu_WaitToWarnNoSteamworks_d_553 * __this, MethodInfo * method)); DO_APP_FUNC(0x006935A0, void, Menu_WaitToWarnNoSteamworks_d_553_System_Collections_IEnumerator_Reset, (Menu_WaitToWarnNoSteamworks_d_553 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC798, Menu_WaitToWarnNoSteamworks_d_553_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Menu_WaitToWarnNoSteamworks_d_553_System_Collections_IEnumerator_get_Current, (Menu_WaitToWarnNoSteamworks_d_553 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, Menu_ControllerReselectDelayed_d_556__ctor, (Menu_ControllerReselectDelayed_d_556 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Menu_ControllerReselectDelayed_d_556_System_IDisposable_Dispose, (Menu_ControllerReselectDelayed_d_556 * __this, MethodInfo * method)); DO_APP_FUNC(0x006935F0, bool, Menu_ControllerReselectDelayed_d_556_MoveNext, (Menu_ControllerReselectDelayed_d_556 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, Menu_ControllerReselectDelayed_d_556_System_Collections_Generic_IEnumerator_System_Object__get_Current, (Menu_ControllerReselectDelayed_d_556 * __this, MethodInfo * method)); DO_APP_FUNC(0x00694F30, void, Menu_ControllerReselectDelayed_d_556_System_Collections_IEnumerator_Reset, (Menu_ControllerReselectDelayed_d_556 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC790, Menu_ControllerReselectDelayed_d_556_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Menu_ControllerReselectDelayed_d_556_System_Collections_IEnumerator_get_Current, (Menu_ControllerReselectDelayed_d_556 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, Menu_GamepadKeyboardDismissed_d_568__ctor, (Menu_GamepadKeyboardDismissed_d_568 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Menu_GamepadKeyboardDismissed_d_568_System_IDisposable_Dispose, (Menu_GamepadKeyboardDismissed_d_568 * __this, MethodInfo * method)); DO_APP_FUNC(0x00694F80, bool, Menu_GamepadKeyboardDismissed_d_568_MoveNext, (Menu_GamepadKeyboardDismissed_d_568 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, Menu_GamepadKeyboardDismissed_d_568_System_Collections_Generic_IEnumerator_System_Object__get_Current, (Menu_GamepadKeyboardDismissed_d_568 * __this, MethodInfo * method)); DO_APP_FUNC(0x00695190, void, Menu_GamepadKeyboardDismissed_d_568_System_Collections_IEnumerator_Reset, (Menu_GamepadKeyboardDismissed_d_568 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC788, Menu_GamepadKeyboardDismissed_d_568_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Menu_GamepadKeyboardDismissed_d_568_System_Collections_IEnumerator_get_Current, (Menu_GamepadKeyboardDismissed_d_568 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Menu_c_DisplayClass572_0__ctor, (Menu_c_DisplayClass572_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x006951E0, void, Menu_c_DisplayClass572_0__SetupMaps_b__0, (Menu_c_DisplayClass572_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB6E0, Menu_c_DisplayClass572_0__SetupMaps_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, Menu_c_DisplayClass576_0__ctor, (Menu_c_DisplayClass576_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0056DB40, bool, Menu_c_DisplayClass576_0__PopulateRobesWhenAvailable_b__0, (Menu_c_DisplayClass576_0 * __this, CharacterRobe * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC770, Menu_c_DisplayClass576_0__PopulateRobesWhenAvailable_b__0__MethodInfo); DO_APP_FUNC(0x006955C0, void, Menu_c_DisplayClass576_0__PopulateRobesWhenAvailable_b__2, (Menu_c_DisplayClass576_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC778, Menu_c_DisplayClass576_0__PopulateRobesWhenAvailable_b__2__MethodInfo); DO_APP_FUNC(0x003BCD60, void, Menu_PopulateRobesWhenAvailable_d_576__ctor, (Menu_PopulateRobesWhenAvailable_d_576 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Menu_PopulateRobesWhenAvailable_d_576_System_IDisposable_Dispose, (Menu_PopulateRobesWhenAvailable_d_576 * __this, MethodInfo * method)); DO_APP_FUNC(0x00695700, bool, Menu_PopulateRobesWhenAvailable_d_576_MoveNext, (Menu_PopulateRobesWhenAvailable_d_576 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, Menu_PopulateRobesWhenAvailable_d_576_System_Collections_Generic_IEnumerator_System_Object__get_Current, (Menu_PopulateRobesWhenAvailable_d_576 * __this, MethodInfo * method)); DO_APP_FUNC(0x00696200, void, Menu_PopulateRobesWhenAvailable_d_576_System_Collections_IEnumerator_Reset, (Menu_PopulateRobesWhenAvailable_d_576 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC758, Menu_PopulateRobesWhenAvailable_d_576_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Menu_PopulateRobesWhenAvailable_d_576_System_Collections_IEnumerator_get_Current, (Menu_PopulateRobesWhenAvailable_d_576 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Menu_c_DisplayClass577_0__ctor, (Menu_c_DisplayClass577_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00696250, bool, Menu_c_DisplayClass577_0__PopulateInventoryWhenAvailable_b__0, (Menu_c_DisplayClass577_0 * __this, CharacterOutfit * outfit, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC5F0, Menu_c_DisplayClass577_0__PopulateInventoryWhenAvailable_b__0__MethodInfo); DO_APP_FUNC(0x00696380, bool, Menu_c_DisplayClass577_0__PopulateInventoryWhenAvailable_b__1, (Menu_c_DisplayClass577_0 * __this, CharacterOutfit * outfit, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC5D8, Menu_c_DisplayClass577_0__PopulateInventoryWhenAvailable_b__1__MethodInfo); DO_APP_FUNC(0x00696500, bool, Menu_c_DisplayClass577_0__PopulateInventoryWhenAvailable_b__2, (Menu_c_DisplayClass577_0 * __this, CharacterOutfit * outfit, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC5E0, Menu_c_DisplayClass577_0__PopulateInventoryWhenAvailable_b__2__MethodInfo); DO_APP_FUNC(0x00696580, bool, Menu_c_DisplayClass577_0__PopulateInventoryWhenAvailable_b__8, (Menu_c_DisplayClass577_0 * __this, CharacterPet * pet, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC5C8, Menu_c_DisplayClass577_0__PopulateInventoryWhenAvailable_b__8__MethodInfo); DO_APP_FUNC(0x003AE050, void, Menu_c_DisplayClass577_1__ctor, (Menu_c_DisplayClass577_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x006966B0, bool, Menu_c_DisplayClass577_1__PopulateInventoryWhenAvailable_b__14, (Menu_c_DisplayClass577_1 * __this, SteamInventoryItem * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC738, Menu_c_DisplayClass577_1__PopulateInventoryWhenAvailable_b__14__MethodInfo); DO_APP_FUNC(0x003AE050, void, Menu_c_DisplayClass577_2__ctor, (Menu_c_DisplayClass577_2 * __this, MethodInfo * method)); DO_APP_FUNC(0x006966F0, bool, Menu_c_DisplayClass577_2__PopulateInventoryWhenAvailable_b__15, (Menu_c_DisplayClass577_2 * __this, SteamItemDef_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC718, Menu_c_DisplayClass577_2__PopulateInventoryWhenAvailable_b__15__MethodInfo); DO_APP_FUNC(0x003AE050, void, Menu_c_DisplayClass577_3__ctor, (Menu_c_DisplayClass577_3 * __this, MethodInfo * method)); DO_APP_FUNC(0x006967C0, bool, Menu_c_DisplayClass577_3__PopulateInventoryWhenAvailable_b__16, (Menu_c_DisplayClass577_3 * __this, SteamInventoryItem * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC708, Menu_c_DisplayClass577_3__PopulateInventoryWhenAvailable_b__16__MethodInfo); DO_APP_FUNC(0x003BCD60, void, Menu_PopulateInventoryWhenAvailable_d_577__ctor, (Menu_PopulateInventoryWhenAvailable_d_577 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Menu_PopulateInventoryWhenAvailable_d_577_System_IDisposable_Dispose, (Menu_PopulateInventoryWhenAvailable_d_577 * __this, MethodInfo * method)); DO_APP_FUNC(0x00696800, bool, Menu_PopulateInventoryWhenAvailable_d_577_MoveNext, (Menu_PopulateInventoryWhenAvailable_d_577 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, Menu_PopulateInventoryWhenAvailable_d_577_System_Collections_Generic_IEnumerator_System_Object__get_Current, (Menu_PopulateInventoryWhenAvailable_d_577 * __this, MethodInfo * method)); DO_APP_FUNC(0x00698770, void, Menu_PopulateInventoryWhenAvailable_d_577_System_Collections_IEnumerator_Reset, (Menu_PopulateInventoryWhenAvailable_d_577 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC5C0, Menu_PopulateInventoryWhenAvailable_d_577_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Menu_PopulateInventoryWhenAvailable_d_577_System_Collections_IEnumerator_get_Current, (Menu_PopulateInventoryWhenAvailable_d_577 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Menu_c_DisplayClass578_0__ctor, (Menu_c_DisplayClass578_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x006987C0, void, Menu_c_DisplayClass578_0__SetupOutfit_b__0, (Menu_c_DisplayClass578_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB5F8, Menu_c_DisplayClass578_0__SetupOutfit_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, Menu_c_DisplayClass579_0__ctor, (Menu_c_DisplayClass579_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00698860, void, Menu_c_DisplayClass579_0__SetupPerk_b__0, (Menu_c_DisplayClass579_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB5C0, Menu_c_DisplayClass579_0__SetupPerk_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, Menu_c_DisplayClass580_0__ctor, (Menu_c_DisplayClass580_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00698890, void, Menu_c_DisplayClass580_0__SetupFlashlight_b__0, (Menu_c_DisplayClass580_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB598, Menu_c_DisplayClass580_0__SetupFlashlight_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, Menu_c_DisplayClass581_0__ctor, (Menu_c_DisplayClass581_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00698920, void, Menu_c_DisplayClass581_0__SetupEmote_b__0, (Menu_c_DisplayClass581_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB560, Menu_c_DisplayClass581_0__SetupEmote_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, Menu_c_DisplayClass582_0__ctor, (Menu_c_DisplayClass582_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00698980, void, Menu_c_DisplayClass582_0__SetupPet_b__0, (Menu_c_DisplayClass582_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB528, Menu_c_DisplayClass582_0__SetupPet_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, Menu_c_DisplayClass583_0__ctor, (Menu_c_DisplayClass583_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x005F07E0, bool, Menu_c_DisplayClass583_0__OnPromoOutfitAdded_b__0, (Menu_c_DisplayClass583_0 * __this, SteamItemDef_t x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB4C0, Menu_c_DisplayClass583_0__OnPromoOutfitAdded_b__0__MethodInfo); DO_APP_FUNC(0x00596860, bool, Menu_c_DisplayClass583_0__OnPromoOutfitAdded_b__1, (Menu_c_DisplayClass583_0 * __this, CharacterOutfit * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB490, Menu_c_DisplayClass583_0__OnPromoOutfitAdded_b__1__MethodInfo); DO_APP_FUNC(0x003AE050, void, Menu_c_DisplayClass584_0__ctor, (Menu_c_DisplayClass584_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x005F07E0, bool, Menu_c_DisplayClass584_0__OnPromoPerkAdded_b__0, (Menu_c_DisplayClass584_0 * __this, SteamItemDef_t x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB458, Menu_c_DisplayClass584_0__OnPromoPerkAdded_b__0__MethodInfo); DO_APP_FUNC(0x00596860, bool, Menu_c_DisplayClass584_0__OnPromoPerkAdded_b__1, (Menu_c_DisplayClass584_0 * __this, CharacterPerk * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB440, Menu_c_DisplayClass584_0__OnPromoPerkAdded_b__1__MethodInfo); DO_APP_FUNC(0x003AE050, void, Menu_c_DisplayClass585_0__ctor, (Menu_c_DisplayClass585_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x005F07E0, bool, Menu_c_DisplayClass585_0__OnPromoFlashlightAdded_b__0, (Menu_c_DisplayClass585_0 * __this, SteamItemDef_t x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB428, Menu_c_DisplayClass585_0__OnPromoFlashlightAdded_b__0__MethodInfo); DO_APP_FUNC(0x00596860, bool, Menu_c_DisplayClass585_0__OnPromoFlashlightAdded_b__1, (Menu_c_DisplayClass585_0 * __this, CharacterFlashlight * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB430, Menu_c_DisplayClass585_0__OnPromoFlashlightAdded_b__1__MethodInfo); DO_APP_FUNC(0x003AE050, void, Menu_c_DisplayClass586_0__ctor, (Menu_c_DisplayClass586_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x005F07E0, bool, Menu_c_DisplayClass586_0__OnPromoEmoteAdded_b__0, (Menu_c_DisplayClass586_0 * __this, SteamItemDef_t x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB418, Menu_c_DisplayClass586_0__OnPromoEmoteAdded_b__0__MethodInfo); DO_APP_FUNC(0x00596860, bool, Menu_c_DisplayClass586_0__OnPromoEmoteAdded_b__1, (Menu_c_DisplayClass586_0 * __this, CharacterEmote * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB400, Menu_c_DisplayClass586_0__OnPromoEmoteAdded_b__1__MethodInfo); DO_APP_FUNC(0x003AE050, void, Menu_c_DisplayClass592_0__ctor, (Menu_c_DisplayClass592_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00698AA0, bool, Menu_c_DisplayClass592_0__GetCurrentTokens_b__0, (Menu_c_DisplayClass592_0 * __this, CharacterPerk * perk, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB168, Menu_c_DisplayClass592_0__GetCurrentTokens_b__0__MethodInfo); DO_APP_FUNC(0x00698BD0, bool, Menu_c_DisplayClass592_0__GetCurrentTokens_b__1, (Menu_c_DisplayClass592_0 * __this, CharacterFlashlight * flashlight, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB150, Menu_c_DisplayClass592_0__GetCurrentTokens_b__1__MethodInfo); DO_APP_FUNC(0x00698D00, bool, Menu_c_DisplayClass592_0__GetCurrentTokens_b__2, (Menu_c_DisplayClass592_0 * __this, CharacterEmote * emote, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB158, Menu_c_DisplayClass592_0__GetCurrentTokens_b__2__MethodInfo); DO_APP_FUNC(0x003AE050, void, Menu_c_DisplayClass592_1__ctor, (Menu_c_DisplayClass592_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x00698E30, bool, Menu_c_DisplayClass592_1__GetCurrentTokens_b__3, (Menu_c_DisplayClass592_1 * __this, SteamItemDef_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC5B8, Menu_c_DisplayClass592_1__GetCurrentTokens_b__3__MethodInfo); DO_APP_FUNC(0x003AE050, void, Menu_c_DisplayClass592_2__ctor, (Menu_c_DisplayClass592_2 * __this, MethodInfo * method)); DO_APP_FUNC(0x00698E60, bool, Menu_c_DisplayClass592_2__GetCurrentTokens_b__4, (Menu_c_DisplayClass592_2 * __this, SteamItemDef_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC5A8, Menu_c_DisplayClass592_2__GetCurrentTokens_b__4__MethodInfo); DO_APP_FUNC(0x003AE050, void, Menu_c_DisplayClass592_3__ctor, (Menu_c_DisplayClass592_3 * __this, MethodInfo * method)); DO_APP_FUNC(0x00698EA0, bool, Menu_c_DisplayClass592_3__GetCurrentTokens_b__5, (Menu_c_DisplayClass592_3 * __this, SteamItemDef_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC598, Menu_c_DisplayClass592_3__GetCurrentTokens_b__5__MethodInfo); DO_APP_FUNC(0x003AE050, void, Menu_c_DisplayClass606_0__ctor, (Menu_c_DisplayClass606_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00698EE0, bool, Menu_c_DisplayClass606_0__UpdateLockedOutfits_b__0, (Menu_c_DisplayClass606_0 * __this, UIOutfitSelectionType * view, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB0F8, Menu_c_DisplayClass606_0__UpdateLockedOutfits_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, Menu_c_DisplayClass606_1__ctor, (Menu_c_DisplayClass606_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x00699010, bool, Menu_c_DisplayClass606_1__UpdateLockedOutfits_b__1, (Menu_c_DisplayClass606_1 * __this, SteamItemDef_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC588, Menu_c_DisplayClass606_1__UpdateLockedOutfits_b__1__MethodInfo); DO_APP_FUNC(0x003AE050, void, Menu_c_DisplayClass607_0__ctor, (Menu_c_DisplayClass607_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00699040, bool, Menu_c_DisplayClass607_0__UpdateLockedPerks_b__0, (Menu_c_DisplayClass607_0 * __this, UIPerkSelectionType * view, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB0E8, Menu_c_DisplayClass607_0__UpdateLockedPerks_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, Menu_c_DisplayClass607_1__ctor, (Menu_c_DisplayClass607_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x006991A0, bool, Menu_c_DisplayClass607_1__UpdateLockedPerks_b__1, (Menu_c_DisplayClass607_1 * __this, SteamItemDef_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC578, Menu_c_DisplayClass607_1__UpdateLockedPerks_b__1__MethodInfo); DO_APP_FUNC(0x003AE050, void, Menu_c_DisplayClass608_0__ctor, (Menu_c_DisplayClass608_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x006991D0, bool, Menu_c_DisplayClass608_0__UpdateLockedPets_b__0, (Menu_c_DisplayClass608_0 * __this, UIPetSelectionType * view, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB0C0, Menu_c_DisplayClass608_0__UpdateLockedPets_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, Menu_c_DisplayClass608_1__ctor, (Menu_c_DisplayClass608_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x006991A0, bool, Menu_c_DisplayClass608_1__UpdateLockedPets_b__1, (Menu_c_DisplayClass608_1 * __this, SteamItemDef_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC568, Menu_c_DisplayClass608_1__UpdateLockedPets_b__1__MethodInfo); DO_APP_FUNC(0x003AE050, void, Menu_c_DisplayClass609_0__ctor, (Menu_c_DisplayClass609_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00699300, bool, Menu_c_DisplayClass609_0__UpdateLockedFlashlights_b__0, (Menu_c_DisplayClass609_0 * __this, UIFlashlightSelectionType * view, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB090, Menu_c_DisplayClass609_0__UpdateLockedFlashlights_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, Menu_c_DisplayClass609_1__ctor, (Menu_c_DisplayClass609_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x006991A0, bool, Menu_c_DisplayClass609_1__UpdateLockedFlashlights_b__1, (Menu_c_DisplayClass609_1 * __this, SteamItemDef_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC558, Menu_c_DisplayClass609_1__UpdateLockedFlashlights_b__1__MethodInfo); DO_APP_FUNC(0x003AE050, void, Menu_c_DisplayClass610_0__ctor, (Menu_c_DisplayClass610_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00699470, bool, Menu_c_DisplayClass610_0__UpdateLockedEmotes_b__0, (Menu_c_DisplayClass610_0 * __this, UIEmoteSelectionType * view, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB080, Menu_c_DisplayClass610_0__UpdateLockedEmotes_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, Menu_c_DisplayClass610_1__ctor, (Menu_c_DisplayClass610_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x006991A0, bool, Menu_c_DisplayClass610_1__UpdateLockedEmotes_b__1, (Menu_c_DisplayClass610_1 * __this, SteamItemDef_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC548, Menu_c_DisplayClass610_1__UpdateLockedEmotes_b__1__MethodInfo); DO_APP_FUNC(0x003BCD60, void, Menu_WaitForPurchasedOutfitValidation_d_613__ctor, (Menu_WaitForPurchasedOutfitValidation_d_613 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Menu_WaitForPurchasedOutfitValidation_d_613_System_IDisposable_Dispose, (Menu_WaitForPurchasedOutfitValidation_d_613 * __this, MethodInfo * method)); DO_APP_FUNC(0x006995F0, bool, Menu_WaitForPurchasedOutfitValidation_d_613_MoveNext, (Menu_WaitForPurchasedOutfitValidation_d_613 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, Menu_WaitForPurchasedOutfitValidation_d_613_System_Collections_Generic_IEnumerator_System_Object__get_Current, (Menu_WaitForPurchasedOutfitValidation_d_613 * __this, MethodInfo * method)); DO_APP_FUNC(0x00699CD0, void, Menu_WaitForPurchasedOutfitValidation_d_613_System_Collections_IEnumerator_Reset, (Menu_WaitForPurchasedOutfitValidation_d_613 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC538, Menu_WaitForPurchasedOutfitValidation_d_613_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Menu_WaitForPurchasedOutfitValidation_d_613_System_Collections_IEnumerator_get_Current, (Menu_WaitForPurchasedOutfitValidation_d_613 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, Menu_WaitForPurchasedFlashlightValidation_d_614__ctor, (Menu_WaitForPurchasedFlashlightValidation_d_614 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Menu_WaitForPurchasedFlashlightValidation_d_614_System_IDisposable_Dispose, (Menu_WaitForPurchasedFlashlightValidation_d_614 * __this, MethodInfo * method)); DO_APP_FUNC(0x00699D20, bool, Menu_WaitForPurchasedFlashlightValidation_d_614_MoveNext, (Menu_WaitForPurchasedFlashlightValidation_d_614 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, Menu_WaitForPurchasedFlashlightValidation_d_614_System_Collections_Generic_IEnumerator_System_Object__get_Current, (Menu_WaitForPurchasedFlashlightValidation_d_614 * __this, MethodInfo * method)); DO_APP_FUNC(0x0069A400, void, Menu_WaitForPurchasedFlashlightValidation_d_614_System_Collections_IEnumerator_Reset, (Menu_WaitForPurchasedFlashlightValidation_d_614 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC528, Menu_WaitForPurchasedFlashlightValidation_d_614_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Menu_WaitForPurchasedFlashlightValidation_d_614_System_Collections_IEnumerator_get_Current, (Menu_WaitForPurchasedFlashlightValidation_d_614 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, Menu_WaitForPurchasedPetValidation_d_615__ctor, (Menu_WaitForPurchasedPetValidation_d_615 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Menu_WaitForPurchasedPetValidation_d_615_System_IDisposable_Dispose, (Menu_WaitForPurchasedPetValidation_d_615 * __this, MethodInfo * method)); DO_APP_FUNC(0x0069A450, bool, Menu_WaitForPurchasedPetValidation_d_615_MoveNext, (Menu_WaitForPurchasedPetValidation_d_615 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, Menu_WaitForPurchasedPetValidation_d_615_System_Collections_Generic_IEnumerator_System_Object__get_Current, (Menu_WaitForPurchasedPetValidation_d_615 * __this, MethodInfo * method)); DO_APP_FUNC(0x0069AB30, void, Menu_WaitForPurchasedPetValidation_d_615_System_Collections_IEnumerator_Reset, (Menu_WaitForPurchasedPetValidation_d_615 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC520, Menu_WaitForPurchasedPetValidation_d_615_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Menu_WaitForPurchasedPetValidation_d_615_System_Collections_IEnumerator_get_Current, (Menu_WaitForPurchasedPetValidation_d_615 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, Menu_WaitForPurchasedEmoteValidation_d_616__ctor, (Menu_WaitForPurchasedEmoteValidation_d_616 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Menu_WaitForPurchasedEmoteValidation_d_616_System_IDisposable_Dispose, (Menu_WaitForPurchasedEmoteValidation_d_616 * __this, MethodInfo * method)); DO_APP_FUNC(0x0069AB80, bool, Menu_WaitForPurchasedEmoteValidation_d_616_MoveNext, (Menu_WaitForPurchasedEmoteValidation_d_616 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, Menu_WaitForPurchasedEmoteValidation_d_616_System_Collections_Generic_IEnumerator_System_Object__get_Current, (Menu_WaitForPurchasedEmoteValidation_d_616 * __this, MethodInfo * method)); DO_APP_FUNC(0x0069B230, void, Menu_WaitForPurchasedEmoteValidation_d_616_System_Collections_IEnumerator_Reset, (Menu_WaitForPurchasedEmoteValidation_d_616 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC518, Menu_WaitForPurchasedEmoteValidation_d_616_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Menu_WaitForPurchasedEmoteValidation_d_616_System_Collections_IEnumerator_get_Current, (Menu_WaitForPurchasedEmoteValidation_d_616 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Menu_c_DisplayClass629_0__ctor, (Menu_c_DisplayClass629_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0069B280, void, Menu_c_DisplayClass629_0__ShowOutfitPreview_b__0, (Menu_c_DisplayClass629_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDAFC0, Menu_c_DisplayClass629_0__ShowOutfitPreview_b__0__MethodInfo); DO_APP_FUNC(0x0069B590, void, Menu_c_DisplayClass629_0__ShowOutfitPreview_b__1, (Menu_c_DisplayClass629_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC510, Menu_c_DisplayClass629_0__ShowOutfitPreview_b__1__MethodInfo); DO_APP_FUNC(0x003BCD60, void, Menu_DelayEnableBuyButton_d_630__ctor, (Menu_DelayEnableBuyButton_d_630 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Menu_DelayEnableBuyButton_d_630_System_IDisposable_Dispose, (Menu_DelayEnableBuyButton_d_630 * __this, MethodInfo * method)); DO_APP_FUNC(0x0069B5B0, bool, Menu_DelayEnableBuyButton_d_630_MoveNext, (Menu_DelayEnableBuyButton_d_630 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, Menu_DelayEnableBuyButton_d_630_System_Collections_Generic_IEnumerator_System_Object__get_Current, (Menu_DelayEnableBuyButton_d_630 * __this, MethodInfo * method)); DO_APP_FUNC(0x0069B690, void, Menu_DelayEnableBuyButton_d_630_System_Collections_IEnumerator_Reset, (Menu_DelayEnableBuyButton_d_630 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC4D0, Menu_DelayEnableBuyButton_d_630_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Menu_DelayEnableBuyButton_d_630_System_Collections_IEnumerator_get_Current, (Menu_DelayEnableBuyButton_d_630 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Menu_c_DisplayClass632_0__ctor, (Menu_c_DisplayClass632_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0069B6E0, void, Menu_c_DisplayClass632_0__ShowFlashlightPreview_b__0, (Menu_c_DisplayClass632_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDAFB0, Menu_c_DisplayClass632_0__ShowFlashlightPreview_b__0__MethodInfo); DO_APP_FUNC(0x0069B590, void, Menu_c_DisplayClass632_0__ShowFlashlightPreview_b__2, (Menu_c_DisplayClass632_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC4C8, Menu_c_DisplayClass632_0__ShowFlashlightPreview_b__2__MethodInfo); DO_APP_FUNC(0x0069B9B0, void, Menu_c_DisplayClass632_0__ShowFlashlightPreview_b__1, (Menu_c_DisplayClass632_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDAFA0, Menu_c_DisplayClass632_0__ShowFlashlightPreview_b__1__MethodInfo); DO_APP_FUNC(0x003AE050, void, Menu_c_DisplayClass633_0__ctor, (Menu_c_DisplayClass633_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0069BA90, void, Menu_c_DisplayClass633_0__ShowEmotePreview_b__0, (Menu_c_DisplayClass633_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDAF88, Menu_c_DisplayClass633_0__ShowEmotePreview_b__0__MethodInfo); DO_APP_FUNC(0x0069B590, void, Menu_c_DisplayClass633_0__ShowEmotePreview_b__2, (Menu_c_DisplayClass633_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC498, Menu_c_DisplayClass633_0__ShowEmotePreview_b__2__MethodInfo); DO_APP_FUNC(0x0069BD60, void, Menu_c_DisplayClass633_0__ShowEmotePreview_b__1, (Menu_c_DisplayClass633_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDAF78, Menu_c_DisplayClass633_0__ShowEmotePreview_b__1__MethodInfo); DO_APP_FUNC(0x003AE050, void, Menu_c_DisplayClass634_0__ctor, (Menu_c_DisplayClass634_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0069BE40, void, Menu_c_DisplayClass634_0__ShowPetPreview_b__0, (Menu_c_DisplayClass634_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDAF60, Menu_c_DisplayClass634_0__ShowPetPreview_b__0__MethodInfo); DO_APP_FUNC(0x0069B590, void, Menu_c_DisplayClass634_0__ShowPetPreview_b__1, (Menu_c_DisplayClass634_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC488, Menu_c_DisplayClass634_0__ShowPetPreview_b__1__MethodInfo); DO_APP_FUNC(0x003BCD60, void, Menu_WaitForSurvivalLobbyPlayersDetached_d_651__ctor, (Menu_WaitForSurvivalLobbyPlayersDetached_d_651 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Menu_WaitForSurvivalLobbyPlayersDetached_d_651_System_IDisposable_Dispose, (Menu_WaitForSurvivalLobbyPlayersDetached_d_651 * __this, MethodInfo * method)); DO_APP_FUNC(0x0069C150, bool, Menu_WaitForSurvivalLobbyPlayersDetached_d_651_MoveNext, (Menu_WaitForSurvivalLobbyPlayersDetached_d_651 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, Menu_WaitForSurvivalLobbyPlayersDetached_d_651_System_Collections_Generic_IEnumerator_System_Object__get_Current, (Menu_WaitForSurvivalLobbyPlayersDetached_d_651 * __this, MethodInfo * method)); DO_APP_FUNC(0x0069C220, void, Menu_WaitForSurvivalLobbyPlayersDetached_d_651_System_Collections_IEnumerator_Reset, (Menu_WaitForSurvivalLobbyPlayersDetached_d_651 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC480, Menu_WaitForSurvivalLobbyPlayersDetached_d_651_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Menu_WaitForSurvivalLobbyPlayersDetached_d_651_System_Collections_IEnumerator_get_Current, (Menu_WaitForSurvivalLobbyPlayersDetached_d_651 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Menu_c_DisplayClass659_0__ctor, (Menu_c_DisplayClass659_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0069C270, void, Menu_c_DisplayClass659_0__ShowGameStats_b__4, (Menu_c_DisplayClass659_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC478, Menu_c_DisplayClass659_0__ShowGameStats_b__4__MethodInfo); DO_APP_FUNC(0x003AE050, void, Menu_c_DisplayClass659_1__ctor, (Menu_c_DisplayClass659_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x0069C340, void, Menu_c_DisplayClass659_1__ShowGameStats_b__2, (Menu_c_DisplayClass659_1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDADB8, Menu_c_DisplayClass659_1__ShowGameStats_b__2__MethodInfo); DO_APP_FUNC(0x0069C790, void, Menu_c_DisplayClass659_1__ShowGameStats_b__3, (Menu_c_DisplayClass659_1 * __this, float val, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC470, Menu_c_DisplayClass659_1__ShowGameStats_b__3__MethodInfo); DO_APP_FUNC(0x003BCD60, void, Menu_UpdateNolanRank_d_661__ctor, (Menu_UpdateNolanRank_d_661 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Menu_UpdateNolanRank_d_661_System_IDisposable_Dispose, (Menu_UpdateNolanRank_d_661 * __this, MethodInfo * method)); DO_APP_FUNC(0x0069CF50, bool, Menu_UpdateNolanRank_d_661_MoveNext, (Menu_UpdateNolanRank_d_661 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, Menu_UpdateNolanRank_d_661_System_Collections_Generic_IEnumerator_System_Object__get_Current, (Menu_UpdateNolanRank_d_661 * __this, MethodInfo * method)); DO_APP_FUNC(0x0069D410, void, Menu_UpdateNolanRank_d_661_System_Collections_IEnumerator_Reset, (Menu_UpdateNolanRank_d_661 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0010, Menu_UpdateNolanRank_d_661_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Menu_UpdateNolanRank_d_661_System_Collections_IEnumerator_get_Current, (Menu_UpdateNolanRank_d_661 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Menu_c_DisplayClass694_0__ctor, (Menu_c_DisplayClass694_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0069D460, bool, Menu_c_DisplayClass694_0__BoltStartDone_b__0, (Menu_c_DisplayClass694_0 * __this, KeyValuePair_2_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion_ r, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDABF0, Menu_c_DisplayClass694_0__BoltStartDone_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, Menu_c_DisplayClass694_1__ctor, (Menu_c_DisplayClass694_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x0069D500, bool, Menu_c_DisplayClass694_1__BoltStartDone_b__1, (Menu_c_DisplayClass694_1 * __this, KeyValuePair_2_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion_ r, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDABE0, Menu_c_DisplayClass694_1__BoltStartDone_b__1__MethodInfo); DO_APP_FUNC(0x003AE050, void, Menu_c_DisplayClass700_0__ctor, (Menu_c_DisplayClass700_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0069D5A0, bool, Menu_c_DisplayClass700_0__OnSteamLobbyCreated_b__0, (Menu_c_DisplayClass700_0 * __this, KeyValuePair_2_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion_ r, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDAB18, Menu_c_DisplayClass700_0__OnSteamLobbyCreated_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, Menu_c_DisplayClass707_0__ctor, (Menu_c_DisplayClass707_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0069D640, bool, Menu_c_DisplayClass707_0__ConnectRequest_b__0, (Menu_c_DisplayClass707_0 * __this, KickedPlayer player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA9F0, Menu_c_DisplayClass707_0__ConnectRequest_b__0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, Menu_SendInventoryItemsWhenAvailable_d_711__ctor, (Menu_SendInventoryItemsWhenAvailable_d_711 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Menu_SendInventoryItemsWhenAvailable_d_711_System_IDisposable_Dispose, (Menu_SendInventoryItemsWhenAvailable_d_711 * __this, MethodInfo * method)); DO_APP_FUNC(0x0069D6A0, bool, Menu_SendInventoryItemsWhenAvailable_d_711_MoveNext, (Menu_SendInventoryItemsWhenAvailable_d_711 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, Menu_SendInventoryItemsWhenAvailable_d_711_System_Collections_Generic_IEnumerator_System_Object__get_Current, (Menu_SendInventoryItemsWhenAvailable_d_711 * __this, MethodInfo * method)); DO_APP_FUNC(0x0069D7A0, void, Menu_SendInventoryItemsWhenAvailable_d_711_System_Collections_IEnumerator_Reset, (Menu_SendInventoryItemsWhenAvailable_d_711 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFFE8, Menu_SendInventoryItemsWhenAvailable_d_711_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Menu_SendInventoryItemsWhenAvailable_d_711_System_Collections_IEnumerator_get_Current, (Menu_SendInventoryItemsWhenAvailable_d_711 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, Menu_WaitForSteamCatalog_d_712__ctor, (Menu_WaitForSteamCatalog_d_712 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Menu_WaitForSteamCatalog_d_712_System_IDisposable_Dispose, (Menu_WaitForSteamCatalog_d_712 * __this, MethodInfo * method)); DO_APP_FUNC(0x0069D7F0, bool, Menu_WaitForSteamCatalog_d_712_MoveNext, (Menu_WaitForSteamCatalog_d_712 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, Menu_WaitForSteamCatalog_d_712_System_Collections_Generic_IEnumerator_System_Object__get_Current, (Menu_WaitForSteamCatalog_d_712 * __this, MethodInfo * method)); DO_APP_FUNC(0x0069D9A0, void, Menu_WaitForSteamCatalog_d_712_System_Collections_IEnumerator_Reset, (Menu_WaitForSteamCatalog_d_712 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFFC8, Menu_WaitForSteamCatalog_d_712_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Menu_WaitForSteamCatalog_d_712_System_Collections_IEnumerator_get_Current, (Menu_WaitForSteamCatalog_d_712 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, Menu_WaitForInventoryItems_d_713__ctor, (Menu_WaitForInventoryItems_d_713 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Menu_WaitForInventoryItems_d_713_System_IDisposable_Dispose, (Menu_WaitForInventoryItems_d_713 * __this, MethodInfo * method)); DO_APP_FUNC(0x004EA9A0, bool, Menu_WaitForInventoryItems_d_713_MoveNext, (Menu_WaitForInventoryItems_d_713 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, Menu_WaitForInventoryItems_d_713_System_Collections_Generic_IEnumerator_System_Object__get_Current, (Menu_WaitForInventoryItems_d_713 * __this, MethodInfo * method)); DO_APP_FUNC(0x0069D9F0, void, Menu_WaitForInventoryItems_d_713_System_Collections_IEnumerator_Reset, (Menu_WaitForInventoryItems_d_713 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFFD0, Menu_WaitForInventoryItems_d_713_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Menu_WaitForInventoryItems_d_713_System_Collections_IEnumerator_get_Current, (Menu_WaitForInventoryItems_d_713 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, Menu_WaitForSLC_d_714__ctor, (Menu_WaitForSLC_d_714 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Menu_WaitForSLC_d_714_System_IDisposable_Dispose, (Menu_WaitForSLC_d_714 * __this, MethodInfo * method)); DO_APP_FUNC(0x0069DA40, bool, Menu_WaitForSLC_d_714_MoveNext, (Menu_WaitForSLC_d_714 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, Menu_WaitForSLC_d_714_System_Collections_Generic_IEnumerator_System_Object__get_Current, (Menu_WaitForSLC_d_714 * __this, MethodInfo * method)); DO_APP_FUNC(0x0069DC70, void, Menu_WaitForSLC_d_714_System_Collections_IEnumerator_Reset, (Menu_WaitForSLC_d_714 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFFA8, Menu_WaitForSLC_d_714_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Menu_WaitForSLC_d_714_System_Collections_IEnumerator_get_Current, (Menu_WaitForSLC_d_714 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, Menu_WaitForUserStats_d_715__ctor, (Menu_WaitForUserStats_d_715 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Menu_WaitForUserStats_d_715_System_IDisposable_Dispose, (Menu_WaitForUserStats_d_715 * __this, MethodInfo * method)); DO_APP_FUNC(0x0069DCC0, bool, Menu_WaitForUserStats_d_715_MoveNext, (Menu_WaitForUserStats_d_715 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, Menu_WaitForUserStats_d_715_System_Collections_Generic_IEnumerator_System_Object__get_Current, (Menu_WaitForUserStats_d_715 * __this, MethodInfo * method)); DO_APP_FUNC(0x0069DE00, void, Menu_WaitForUserStats_d_715_System_Collections_IEnumerator_Reset, (Menu_WaitForUserStats_d_715 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFFB8, Menu_WaitForUserStats_d_715_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Menu_WaitForUserStats_d_715_System_Collections_IEnumerator_get_Current, (Menu_WaitForUserStats_d_715 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Menu_c_DisplayClass743_0__ctor, (Menu_c_DisplayClass743_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0069DE50, bool, Menu_c_DisplayClass743_0__OnServerBrowserRegionPickerChanged_b__0, (Menu_c_DisplayClass743_0 * __this, KeyValuePair_2_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion_ r, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA7D0, Menu_c_DisplayClass743_0__OnServerBrowserRegionPickerChanged_b__0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, Menu_ShowUnlockedModalInternal_d_777__ctor, (Menu_ShowUnlockedModalInternal_d_777 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Menu_ShowUnlockedModalInternal_d_777_System_IDisposable_Dispose, (Menu_ShowUnlockedModalInternal_d_777 * __this, MethodInfo * method)); DO_APP_FUNC(0x0069DF70, bool, Menu_ShowUnlockedModalInternal_d_777_MoveNext, (Menu_ShowUnlockedModalInternal_d_777 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, Menu_ShowUnlockedModalInternal_d_777_System_Collections_Generic_IEnumerator_System_Object__get_Current, (Menu_ShowUnlockedModalInternal_d_777 * __this, MethodInfo * method)); DO_APP_FUNC(0x0069E2C0, void, Menu_ShowUnlockedModalInternal_d_777_System_Collections_IEnumerator_Reset, (Menu_ShowUnlockedModalInternal_d_777 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFF90, Menu_ShowUnlockedModalInternal_d_777_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Menu_ShowUnlockedModalInternal_d_777_System_Collections_IEnumerator_get_Current, (Menu_ShowUnlockedModalInternal_d_777 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, Menu_ShowUnlockedRobeModalInternal_d_778__ctor, (Menu_ShowUnlockedRobeModalInternal_d_778 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Menu_ShowUnlockedRobeModalInternal_d_778_System_IDisposable_Dispose, (Menu_ShowUnlockedRobeModalInternal_d_778 * __this, MethodInfo * method)); DO_APP_FUNC(0x0069E310, bool, Menu_ShowUnlockedRobeModalInternal_d_778_MoveNext, (Menu_ShowUnlockedRobeModalInternal_d_778 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, Menu_ShowUnlockedRobeModalInternal_d_778_System_Collections_Generic_IEnumerator_System_Object__get_Current, (Menu_ShowUnlockedRobeModalInternal_d_778 * __this, MethodInfo * method)); DO_APP_FUNC(0x0069E640, void, Menu_ShowUnlockedRobeModalInternal_d_778_System_Collections_IEnumerator_Reset, (Menu_ShowUnlockedRobeModalInternal_d_778 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFF88, Menu_ShowUnlockedRobeModalInternal_d_778_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Menu_ShowUnlockedRobeModalInternal_d_778_System_Collections_IEnumerator_get_Current, (Menu_ShowUnlockedRobeModalInternal_d_778 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, Menu_ShowUnlockedSpriteTextModalInternal_d_779__ctor, (Menu_ShowUnlockedSpriteTextModalInternal_d_779 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Menu_ShowUnlockedSpriteTextModalInternal_d_779_System_IDisposable_Dispose, (Menu_ShowUnlockedSpriteTextModalInternal_d_779 * __this, MethodInfo * method)); DO_APP_FUNC(0x0069E690, bool, Menu_ShowUnlockedSpriteTextModalInternal_d_779_MoveNext, (Menu_ShowUnlockedSpriteTextModalInternal_d_779 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, Menu_ShowUnlockedSpriteTextModalInternal_d_779_System_Collections_Generic_IEnumerator_System_Object__get_Current, (Menu_ShowUnlockedSpriteTextModalInternal_d_779 * __this, MethodInfo * method)); DO_APP_FUNC(0x0069E990, void, Menu_ShowUnlockedSpriteTextModalInternal_d_779_System_Collections_IEnumerator_Reset, (Menu_ShowUnlockedSpriteTextModalInternal_d_779 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFF70, Menu_ShowUnlockedSpriteTextModalInternal_d_779_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Menu_ShowUnlockedSpriteTextModalInternal_d_779_System_Collections_IEnumerator_get_Current, (Menu_ShowUnlockedSpriteTextModalInternal_d_779 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Menu_c_DisplayClass784_0__ctor, (Menu_c_DisplayClass784_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0069E9E0, void, Menu_c_DisplayClass784_0__Splash_b__0, (Menu_c_DisplayClass784_0 * __this, float val, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA680, Menu_c_DisplayClass784_0__Splash_b__0__MethodInfo); DO_APP_FUNC(0x0069EA90, void, Menu_c_DisplayClass784_0__Splash_b__1, (Menu_c_DisplayClass784_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA688, Menu_c_DisplayClass784_0__Splash_b__1__MethodInfo); DO_APP_FUNC(0x0069EBE0, void, Menu_c_DisplayClass784_0__Splash_b__2, (Menu_c_DisplayClass784_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFF60, Menu_c_DisplayClass784_0__Splash_b__2__MethodInfo); DO_APP_FUNC(0x0069EE80, void, Menu_c_DisplayClass784_0__Splash_b__3, (Menu_c_DisplayClass784_0 * __this, float val, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFF40, Menu_c_DisplayClass784_0__Splash_b__3__MethodInfo); DO_APP_FUNC(0x0069EF40, void, Menu_c_DisplayClass784_0__Splash_b__4, (Menu_c_DisplayClass784_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFF48, Menu_c_DisplayClass784_0__Splash_b__4__MethodInfo); DO_APP_FUNC(0x003BCD60, void, Menu_ShowMessageModalInternal_d_789__ctor, (Menu_ShowMessageModalInternal_d_789 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Menu_ShowMessageModalInternal_d_789_System_IDisposable_Dispose, (Menu_ShowMessageModalInternal_d_789 * __this, MethodInfo * method)); DO_APP_FUNC(0x0069F040, bool, Menu_ShowMessageModalInternal_d_789_MoveNext, (Menu_ShowMessageModalInternal_d_789 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, Menu_ShowMessageModalInternal_d_789_System_Collections_Generic_IEnumerator_System_Object__get_Current, (Menu_ShowMessageModalInternal_d_789 * __this, MethodInfo * method)); DO_APP_FUNC(0x0069F2F0, void, Menu_ShowMessageModalInternal_d_789_System_Collections_IEnumerator_Reset, (Menu_ShowMessageModalInternal_d_789 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFF18, Menu_ShowMessageModalInternal_d_789_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Menu_ShowMessageModalInternal_d_789_System_Collections_IEnumerator_get_Current, (Menu_ShowMessageModalInternal_d_789 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Menu_c_DisplayClass791_0__ctor, (Menu_c_DisplayClass791_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0069F340, void, Menu_c_DisplayClass791_0__ShowConfirmModal_b__0, (Menu_c_DisplayClass791_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA610, Menu_c_DisplayClass791_0__ShowConfirmModal_b__0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, Menu_StartXR_d_813__ctor, (Menu_StartXR_d_813 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Menu_StartXR_d_813_System_IDisposable_Dispose, (Menu_StartXR_d_813 * __this, MethodInfo * method)); DO_APP_FUNC(0x0069F3A0, bool, Menu_StartXR_d_813_MoveNext, (Menu_StartXR_d_813 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, Menu_StartXR_d_813_System_Collections_Generic_IEnumerator_System_Object__get_Current, (Menu_StartXR_d_813 * __this, MethodInfo * method)); DO_APP_FUNC(0x0069F690, void, Menu_StartXR_d_813_System_Collections_IEnumerator_Reset, (Menu_StartXR_d_813 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFF08, Menu_StartXR_d_813_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Menu_StartXR_d_813_System_Collections_IEnumerator_get_Current, (Menu_StartXR_d_813 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, Menu_WaitToEnableConfirmModalButtons_d_821__ctor, (Menu_WaitToEnableConfirmModalButtons_d_821 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Menu_WaitToEnableConfirmModalButtons_d_821_System_IDisposable_Dispose, (Menu_WaitToEnableConfirmModalButtons_d_821 * __this, MethodInfo * method)); DO_APP_FUNC(0x0069F6E0, bool, Menu_WaitToEnableConfirmModalButtons_d_821_MoveNext, (Menu_WaitToEnableConfirmModalButtons_d_821 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, Menu_WaitToEnableConfirmModalButtons_d_821_System_Collections_Generic_IEnumerator_System_Object__get_Current, (Menu_WaitToEnableConfirmModalButtons_d_821 * __this, MethodInfo * method)); DO_APP_FUNC(0x0069F810, void, Menu_WaitToEnableConfirmModalButtons_d_821_System_Collections_IEnumerator_Reset, (Menu_WaitToEnableConfirmModalButtons_d_821 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFEE0, Menu_WaitToEnableConfirmModalButtons_d_821_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Menu_WaitToEnableConfirmModalButtons_d_821_System_Collections_IEnumerator_get_Current, (Menu_WaitToEnableConfirmModalButtons_d_821 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Menu_c_DisplayClass822_0__ctor, (Menu_c_DisplayClass822_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0069F860, void, Menu_c_DisplayClass822_0__ShowPublicServerWarningModal_b__0, (Menu_c_DisplayClass822_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA4D8, Menu_c_DisplayClass822_0__ShowPublicServerWarningModal_b__0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, Menu_DelayEnableKeyBindingsScrollToSelection_d_826__ctor, (Menu_DelayEnableKeyBindingsScrollToSelection_d_826 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Menu_DelayEnableKeyBindingsScrollToSelection_d_826_System_IDisposable_Dispose, (Menu_DelayEnableKeyBindingsScrollToSelection_d_826 * __this, MethodInfo * method)); DO_APP_FUNC(0x0069F910, bool, Menu_DelayEnableKeyBindingsScrollToSelection_d_826_MoveNext, (Menu_DelayEnableKeyBindingsScrollToSelection_d_826 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, Menu_DelayEnableKeyBindingsScrollToSelection_d_826_System_Collections_Generic_IEnumerator_System_Object__get_Current, (Menu_DelayEnableKeyBindingsScrollToSelection_d_826 * __this, MethodInfo * method)); DO_APP_FUNC(0x0069FA00, void, Menu_DelayEnableKeyBindingsScrollToSelection_d_826_System_Collections_IEnumerator_Reset, (Menu_DelayEnableKeyBindingsScrollToSelection_d_826 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFED0, Menu_DelayEnableKeyBindingsScrollToSelection_d_826_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Menu_DelayEnableKeyBindingsScrollToSelection_d_826_System_Collections_IEnumerator_get_Current, (Menu_DelayEnableKeyBindingsScrollToSelection_d_826 * __this, MethodInfo * method)); DO_APP_FUNC(0x0069FA50, void, RoomProtocolToken_Read, (RoomProtocolToken * __this, UdpPacket * packet, MethodInfo * method)); DO_APP_FUNC(0x0069FD50, void, RoomProtocolToken_Write, (RoomProtocolToken * __this, UdpPacket * packet, MethodInfo * method)); @@ -20783,50 +23917,64 @@ DO_APP_FUNC(0x006A24E0, void, ServerBrowser_Populate, (ServerBrowser * __this, M DO_APP_FUNC(0x006A45D0, IEnumerator *, ServerBrowser_ReselectServerSessionByIndex, (ServerBrowser * __this, int32_t selectedIndex, MethodInfo * method)); DO_APP_FUNC(0x006A4680, void, ServerBrowser_JoinSession, (ServerBrowser * __this, PhotonSession * photonSession, RoomProtocolToken * token, String * password, MethodInfo * method)); DO_APP_FUNC(0x006A49E0, void, ServerBrowser_OnPasswordJoinButtonClick, (ServerBrowser * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFE08, ServerBrowser_OnPasswordJoinButtonClick__MethodInfo); DO_APP_FUNC(0x006A4A90, void, ServerBrowser_OnPasswordCancelButtonClick, (ServerBrowser * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFE18, ServerBrowser_OnPasswordCancelButtonClick__MethodInfo); DO_APP_FUNC(0x006A4AA0, void, ServerBrowser_HidePasswordPanel, (ServerBrowser * __this, MethodInfo * method)); DO_APP_FUNC(0x006A4C10, void, ServerBrowser_SessionListUpdated, (ServerBrowser * __this, Map_2_System_Guid_UdpSession_ * sessions, MethodInfo * method)); DO_APP_FUNC(0x006A4C40, void, ServerBrowser_BoltStartDone, (ServerBrowser * __this, MethodInfo * method)); DO_APP_FUNC(0x006A5160, void, ServerBrowser_Connected, (ServerBrowser * __this, BoltConnection * connection, MethodInfo * method)); DO_APP_FUNC(0x006A5440, void, ServerBrowser_OnSearch, (ServerBrowser * __this, String * text, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFDF0, ServerBrowser_OnSearch__MethodInfo); DO_APP_FUNC(0x006A54E0, void, ServerBrowser_BoltShutdownBegin, (ServerBrowser * __this, AddCallback * registerDoneCallback, UdpConnectionDisconnectReason__Enum disconnectReason, MethodInfo * method)); DO_APP_FUNC(0x006A5A70, void, ServerBrowser_OnGameModeFilterChanged, (ServerBrowser * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x006A5B20, void, ServerBrowser_OnHidePrivateToggleChanged, (ServerBrowser * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFE10, ServerBrowser_OnHidePrivateToggleChanged__MethodInfo); DO_APP_FUNC(0x006A5BC0, void, ServerBrowser_SetIsDropdownOpen, (ServerBrowser * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x006A5CA0, void, ServerBrowser_ControllerReselect, (ServerBrowser * __this, MethodInfo * method)); DO_APP_FUNC(0x006A5D50, IEnumerator *, ServerBrowser_ControllerReselectDelayed, (ServerBrowser * __this, MethodInfo * method)); DO_APP_FUNC(0x006A5DF0, void, ServerBrowser_OnPasswordInputFieldButtonClick, (ServerBrowser * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFE00, ServerBrowser_OnPasswordInputFieldButtonClick__MethodInfo); DO_APP_FUNC(0x004FCAE0, void, ServerBrowser__ctor, (ServerBrowser * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, ServerBrowser_ShowEmptyMessage_d_21__ctor, (ServerBrowser_ShowEmptyMessage_d_21 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ServerBrowser_ShowEmptyMessage_d_21_System_IDisposable_Dispose, (ServerBrowser_ShowEmptyMessage_d_21 * __this, MethodInfo * method)); DO_APP_FUNC(0x006A5F00, bool, ServerBrowser_ShowEmptyMessage_d_21_MoveNext, (ServerBrowser_ShowEmptyMessage_d_21 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, ServerBrowser_ShowEmptyMessage_d_21_System_Collections_Generic_IEnumerator_System_Object__get_Current, (ServerBrowser_ShowEmptyMessage_d_21 * __this, MethodInfo * method)); DO_APP_FUNC(0x006A6180, void, ServerBrowser_ShowEmptyMessage_d_21_System_Collections_IEnumerator_Reset, (ServerBrowser_ShowEmptyMessage_d_21 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFCE0, ServerBrowser_ShowEmptyMessage_d_21_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, ServerBrowser_ShowEmptyMessage_d_21_System_Collections_IEnumerator_get_Current, (ServerBrowser_ShowEmptyMessage_d_21 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ServerBrowser_c_DisplayClass22_0__ctor, (ServerBrowser_c_DisplayClass22_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x006A61D0, bool, ServerBrowser_c_DisplayClass22_0__Populate_b__1, (ServerBrowser_c_DisplayClass22_0 * __this, _f_AnonymousType2_3_UdpKit_Platform_Photon_PhotonSession_Horror_RoomProtocolToken_Horror_GameConfigToken_ * session, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFD50, ServerBrowser_c_DisplayClass22_0__Populate_b__1__MethodInfo); DO_APP_FUNC(0x003AE050, void, ServerBrowser_c_DisplayClass22_1__ctor, (ServerBrowser_c_DisplayClass22_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x006A64A0, void, ServerBrowser_c_DisplayClass22_1__Populate_b__3, (ServerBrowser_c_DisplayClass22_1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFD40, ServerBrowser_c_DisplayClass22_1__Populate_b__3__MethodInfo); DO_APP_FUNC(0x006A6900, void, ServerBrowser_c_DisplayClass22_1__Populate_b__4, (ServerBrowser_c_DisplayClass22_1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFCD0, ServerBrowser_c_DisplayClass22_1__Populate_b__4__MethodInfo); DO_APP_FUNC(0x006A6970, void, ServerBrowser_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ServerBrowser_c__ctor, (ServerBrowser_c * __this, MethodInfo * method)); DO_APP_FUNC(0x006A6A20, _f_AnonymousType2_3_UdpKit_Platform_Photon_PhotonSession_Horror_RoomProtocolToken_Horror_GameConfigToken_ *, ServerBrowser_c__Populate_b__22_0, (ServerBrowser_c * __this, KeyValuePair_2_System_Guid_UdpKit_UdpSession_ session, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFD60, ServerBrowser_c__Populate_b__22_0__MethodInfo); DO_APP_FUNC(0x006A7010, String *, ServerBrowser_c__Populate_b__22_2, (ServerBrowser_c * __this, _f_AnonymousType2_3_UdpKit_Platform_Photon_PhotonSession_Horror_RoomProtocolToken_Horror_GameConfigToken_ * session, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFD48, ServerBrowser_c__Populate_b__22_2__MethodInfo); DO_APP_FUNC(0x003BCD60, void, ServerBrowser_ReselectServerSessionByIndex_d_23__ctor, (ServerBrowser_ReselectServerSessionByIndex_d_23 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ServerBrowser_ReselectServerSessionByIndex_d_23_System_IDisposable_Dispose, (ServerBrowser_ReselectServerSessionByIndex_d_23 * __this, MethodInfo * method)); DO_APP_FUNC(0x006A7060, bool, ServerBrowser_ReselectServerSessionByIndex_d_23_MoveNext, (ServerBrowser_ReselectServerSessionByIndex_d_23 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, ServerBrowser_ReselectServerSessionByIndex_d_23_System_Collections_Generic_IEnumerator_System_Object__get_Current, (ServerBrowser_ReselectServerSessionByIndex_d_23 * __this, MethodInfo * method)); DO_APP_FUNC(0x006A7F90, void, ServerBrowser_ReselectServerSessionByIndex_d_23_System_Collections_IEnumerator_Reset, (ServerBrowser_ReselectServerSessionByIndex_d_23 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFCB0, ServerBrowser_ReselectServerSessionByIndex_d_23_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, ServerBrowser_ReselectServerSessionByIndex_d_23_System_Collections_IEnumerator_get_Current, (ServerBrowser_ReselectServerSessionByIndex_d_23 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, ServerBrowser_ControllerReselectDelayed_d_37__ctor, (ServerBrowser_ControllerReselectDelayed_d_37 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ServerBrowser_ControllerReselectDelayed_d_37_System_IDisposable_Dispose, (ServerBrowser_ControllerReselectDelayed_d_37 * __this, MethodInfo * method)); DO_APP_FUNC(0x006A7FE0, bool, ServerBrowser_ControllerReselectDelayed_d_37_MoveNext, (ServerBrowser_ControllerReselectDelayed_d_37 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, ServerBrowser_ControllerReselectDelayed_d_37_System_Collections_Generic_IEnumerator_System_Object__get_Current, (ServerBrowser_ControllerReselectDelayed_d_37 * __this, MethodInfo * method)); DO_APP_FUNC(0x006A8220, void, ServerBrowser_ControllerReselectDelayed_d_37_System_Collections_IEnumerator_Reset, (ServerBrowser_ControllerReselectDelayed_d_37 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFCA8, ServerBrowser_ControllerReselectDelayed_d_37_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, ServerBrowser_ControllerReselectDelayed_d_37_System_Collections_IEnumerator_get_Current, (ServerBrowser_ControllerReselectDelayed_d_37 * __this, MethodInfo * method)); DO_APP_FUNC(0x006A8270, void, ShuttersBehaviour_Awake, (ShuttersBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x006A8300, void, ShuttersBehaviour_Attached, (ShuttersBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x006A8480, void, ShuttersBehaviour_OnClose, (ShuttersBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFCA0, ShuttersBehaviour_OnClose__MethodInfo); DO_APP_FUNC(0x006A85C0, void, ShuttersBehaviour_SetState, (ShuttersBehaviour * __this, String * boolName, bool boolState, MethodInfo * method)); DO_APP_FUNC(0x006A8630, void, ShuttersBehaviour__ctor, (ShuttersBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x006A8680, void, SurvivalNetworkCallbacks_SceneLoadLocalDone, (SurvivalNetworkCallbacks * __this, String * scene, IProtocolToken * token, MethodInfo * method)); @@ -20856,11 +24004,13 @@ DO_APP_FUNC(0x006AD320, void, SurvivalNetworkCallbacks_EntityDetached, (Survival DO_APP_FUNC(0x006AD3A0, int32_t, SurvivalNetworkCallbacks_GetGameSavedProgress, (SurvivalNetworkCallbacks * __this, String * carryObject, MethodInfo * method)); DO_APP_FUNC(0x004FCAE0, void, SurvivalNetworkCallbacks__ctor, (SurvivalNetworkCallbacks * __this, MethodInfo * method)); DO_APP_FUNC(0x006AD810, void, SurvivalNetworkCallbacks__SpawnCharacter_b__7_0, (SurvivalNetworkCallbacks * __this, PlayableDirector * d, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFC90, SurvivalNetworkCallbacks__SpawnCharacter_b__7_0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, SurvivalNetworkCallbacks_WaitForHost_d_9__ctor, (SurvivalNetworkCallbacks_WaitForHost_d_9 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SurvivalNetworkCallbacks_WaitForHost_d_9_System_IDisposable_Dispose, (SurvivalNetworkCallbacks_WaitForHost_d_9 * __this, MethodInfo * method)); DO_APP_FUNC(0x006AD820, bool, SurvivalNetworkCallbacks_WaitForHost_d_9_MoveNext, (SurvivalNetworkCallbacks_WaitForHost_d_9 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalNetworkCallbacks_WaitForHost_d_9_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SurvivalNetworkCallbacks_WaitForHost_d_9 * __this, MethodInfo * method)); DO_APP_FUNC(0x006ADD80, void, SurvivalNetworkCallbacks_WaitForHost_d_9_System_Collections_IEnumerator_Reset, (SurvivalNetworkCallbacks_WaitForHost_d_9 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFBB8, SurvivalNetworkCallbacks_WaitForHost_d_9_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SurvivalNetworkCallbacks_WaitForHost_d_9_System_Collections_IEnumerator_get_Current, (SurvivalNetworkCallbacks_WaitForHost_d_9 * __this, MethodInfo * method)); DO_APP_FUNC(0x006ADDD0, void, DACGlobalListener_BoltStartDone, (DACGlobalListener * __this, MethodInfo * method)); DO_APP_FUNC(0x004FCAE0, void, DACGlobalListener__ctor, (DACGlobalListener * __this, MethodInfo * method)); @@ -20870,6 +24020,7 @@ DO_APP_FUNC(0x006AE240, GameObject *, DACPrefabPool_Instantiate, (DACPrefabPool DO_APP_FUNC(0x006AEA90, void, DACPrefabPool_Destroy, (DACPrefabPool * __this, GameObject * gameObject, MethodInfo * method)); DO_APP_FUNC(0x006AEAE0, GameObject *, DACPrefabPool_LoadPrefab, (DACPrefabPool * __this, PrefabId prefabId, MethodInfo * method)); DO_APP_FUNC(0x006AEAF0, void, DACPrefabPool_OnActiveSceneChanged, (DACPrefabPool * __this, Scene current, Scene next, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFBA8, DACPrefabPool_OnActiveSceneChanged__MethodInfo); DO_APP_FUNC(0x006AEBA0, IControllerTemplateButton *, GamepadTemplate_Rewired_IGamepadTemplate_get_actionBottomRow1, (GamepadTemplate * __this, MethodInfo * method)); DO_APP_FUNC(0x006AEBF0, IControllerTemplateButton *, GamepadTemplate_Rewired_IGamepadTemplate_get_a, (GamepadTemplate * __this, MethodInfo * method)); DO_APP_FUNC(0x006AEC40, IControllerTemplateButton *, GamepadTemplate_Rewired_IGamepadTemplate_get_actionBottomRow2, (GamepadTemplate * __this, MethodInfo * method)); @@ -21143,6 +24294,7 @@ DO_APP_FUNC(0x006B44F0, bool, InputManager_CheckDeviceName, (InputManager * __th DO_APP_FUNC(0x006B4310, void, InputManager_SubscribeEvents, (InputManager * __this, MethodInfo * method)); DO_APP_FUNC(0x006B45A0, void, InputManager_UnsubscribeEvents, (InputManager * __this, MethodInfo * method)); DO_APP_FUNC(0x006B4650, void, InputManager_OnSceneLoaded, (InputManager * __this, Scene scene, LoadSceneMode__Enum mode, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDF9C8, InputManager_OnSceneLoaded__MethodInfo); DO_APP_FUNC(0x006B4700, void, InputManager__ctor, (InputManager * __this, MethodInfo * method)); DO_APP_FUNC(0x006B47F0, Func_1_Object_ *, ExternalTools_get_getPlatformInitializerDelegate, (MethodInfo * method)); DO_APP_FUNC(0x006B4830, void, ExternalTools_set_getPlatformInitializerDelegate, (Func_1_Object_ * value, MethodInfo * method)); @@ -21165,14 +24317,14 @@ DO_APP_FUNC(0x003CB690, uint32_t, ExternalTools_XboxOneInput_GetJoystickId, (Ext DO_APP_FUNC(0x003AE050, void, ExternalTools_XboxOne_Gamepad_UpdatePlugin, (ExternalTools * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, ExternalTools_XboxOne_Gamepad_SetGamepadVibration, (ExternalTools * __this, uint64_t xboxOneJoystickId, float leftMotor, float rightMotor, float leftTriggerLevel, float rightTriggerLevel, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ExternalTools_XboxOne_Gamepad_PulseVibrateMotor, (ExternalTools * __this, uint64_t xboxOneJoystickId, int32_t motorInt, float startLevel, float endLevel, uint64_t durationMS, MethodInfo * method)); -DO_APP_FUNC(0x006B4E30, void, ExternalTools_GetDeviceVIDPIDs, (ExternalTools * __this, List_1_System_Int32_ * vids, List_1_System_Int32_ * pids, MethodInfo * method)); +DO_APP_FUNC(0x006B4E30, void, ExternalTools_GetDeviceVIDPIDs, (ExternalTools * __this, List_1_System_Int32_ * * vids, List_1_System_Int32_ * * pids, MethodInfo * method)); DO_APP_FUNC(0x006B4F60, int32_t, ExternalTools_GetAndroidAPILevel, (ExternalTools * __this, MethodInfo * method)); DO_APP_FUNC(0x006B4F70, void, ExternalTools_WindowsStandalone_ForwardRawInput, (ExternalTools * __this, void * rawInputHeaderIndices, void * rawInputDataIndices, uint32_t indicesCount, void * rawInputData, uint32_t rawInputDataSize, MethodInfo * method)); DO_APP_FUNC(0x006B5110, bool, ExternalTools_UnityUI_Graphic_GetRaycastTarget, (ExternalTools * __this, Object * graphic, MethodInfo * method)); DO_APP_FUNC(0x006B5300, void, ExternalTools_UnityUI_Graphic_SetRaycastTarget, (ExternalTools * __this, Object * graphic, bool value, MethodInfo * method)); DO_APP_FUNC(0x006B54F0, bool, ExternalTools_get_UnityInput_IsTouchPressureSupported, (ExternalTools * __this, MethodInfo * method)); -DO_APP_FUNC(0x006B5540, float, ExternalTools_UnityInput_GetTouchPressure, (ExternalTools * __this, Touch touch, MethodInfo * method)); -DO_APP_FUNC(0x006B5550, float, ExternalTools_UnityInput_GetTouchMaximumPossiblePressure, (ExternalTools * __this, Touch touch, MethodInfo * method)); +DO_APP_FUNC(0x006B5540, float, ExternalTools_UnityInput_GetTouchPressure, (ExternalTools * __this, Touch * touch, MethodInfo * method)); +DO_APP_FUNC(0x006B5550, float, ExternalTools_UnityInput_GetTouchMaximumPossiblePressure, (ExternalTools * __this, Touch * touch, MethodInfo * method)); DO_APP_FUNC(0x006B5560, IControllerTemplate *, ExternalTools_CreateControllerTemplate, (ExternalTools * __this, Guid typeGuid, Object * payload, MethodInfo * method)); DO_APP_FUNC(0x006B55D0, Type__Array *, ExternalTools_GetControllerTemplateTypes, (ExternalTools * __this, MethodInfo * method)); DO_APP_FUNC(0x006B5670, Type__Array *, ExternalTools_GetControllerTemplateInterfaceTypes, (ExternalTools * __this, MethodInfo * method)); @@ -21256,7 +24408,7 @@ DO_APP_FUNC(0x006BC1B0, String *, UserDataStore_PlayerPrefs_GetJoystickCalibrati DO_APP_FUNC(0x006BC270, String *, UserDataStore_PlayerPrefs_GetInputBehaviorXml, (UserDataStore_PlayerPrefs * __this, Player * player, int32_t id, MethodInfo * method)); DO_APP_FUNC(0x006BC340, void, UserDataStore_PlayerPrefs_AddDefaultMappingsForNewActions, (UserDataStore_PlayerPrefs * __this, ControllerIdentifier controllerIdentifier, ControllerMap * controllerMap, List_1_System_Int32_ * knownActionIds, MethodInfo * method)); DO_APP_FUNC(0x006BC9B0, Joystick *, UserDataStore_PlayerPrefs_FindJoystickPrecise, (UserDataStore_PlayerPrefs * __this, UserDataStore_PlayerPrefs_ControllerAssignmentSaveInfo_JoystickInfo * joystickInfo, MethodInfo * method)); -DO_APP_FUNC(0x006BCB80, bool, UserDataStore_PlayerPrefs_TryFindJoysticksImprecise, (UserDataStore_PlayerPrefs * __this, UserDataStore_PlayerPrefs_ControllerAssignmentSaveInfo_JoystickInfo * joystickInfo, List_1_Rewired_Joystick_ * matches, MethodInfo * method)); +DO_APP_FUNC(0x006BCB80, bool, UserDataStore_PlayerPrefs_TryFindJoysticksImprecise, (UserDataStore_PlayerPrefs * __this, UserDataStore_PlayerPrefs_ControllerAssignmentSaveInfo_JoystickInfo * joystickInfo, List_1_Rewired_Joystick_ * * matches, MethodInfo * method)); DO_APP_FUNC(0x006BCF30, int32_t, UserDataStore_PlayerPrefs_GetDuplicateIndex, (Player * player, ControllerIdentifier controllerIdentifier, MethodInfo * method)); DO_APP_FUNC(0x006BD3D0, void, UserDataStore_PlayerPrefs_RefreshLayoutManager, (UserDataStore_PlayerPrefs * __this, int32_t playerId, MethodInfo * method)); DO_APP_FUNC(0x006BD460, Type *, UserDataStore_PlayerPrefs_GetControllerMapType, (ControllerType__Enum controllerType, MethodInfo * method)); @@ -21272,17 +24424,22 @@ DO_APP_FUNC(0x006BD9A0, bool, UserDataStore_PlayerPrefs_ControllerAssignmentSave DO_APP_FUNC(0x003AE050, void, UserDataStore_PlayerPrefs_ControllerAssignmentSaveInfo_PlayerInfo__ctor, (UserDataStore_PlayerPrefs_ControllerAssignmentSaveInfo_PlayerInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, UserDataStore_PlayerPrefs_ControllerAssignmentSaveInfo_JoystickInfo__ctor, (UserDataStore_PlayerPrefs_ControllerAssignmentSaveInfo_JoystickInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x006BDA00, void, UserDataStore_PlayerPrefs_JoystickAssignmentHistoryInfo__ctor, (UserDataStore_PlayerPrefs_JoystickAssignmentHistoryInfo * __this, Joystick * joystick, int32_t oldJoystickId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDF440, UserDataStore_PlayerPrefs_JoystickAssignmentHistoryInfo__ctor__MethodInfo); DO_APP_FUNC(0x003AE050, void, UserDataStore_PlayerPrefs_c_DisplayClass78_0__ctor, (UserDataStore_PlayerPrefs_c_DisplayClass78_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x006BDAC0, bool, UserDataStore_PlayerPrefs_c_DisplayClass78_0__LoadJoystickAssignmentsNow_b__0, (UserDataStore_PlayerPrefs_c_DisplayClass78_0 * __this, UserDataStore_PlayerPrefs_JoystickAssignmentHistoryInfo * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDF6A8, UserDataStore_PlayerPrefs_c_DisplayClass78_0__LoadJoystickAssignmentsNow_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, UserDataStore_PlayerPrefs_c_DisplayClass78_1__ctor, (UserDataStore_PlayerPrefs_c_DisplayClass78_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x006BDAE0, bool, UserDataStore_PlayerPrefs_c_DisplayClass78_1__LoadJoystickAssignmentsNow_b__1, (UserDataStore_PlayerPrefs_c_DisplayClass78_1 * __this, UserDataStore_PlayerPrefs_JoystickAssignmentHistoryInfo * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDF690, UserDataStore_PlayerPrefs_c_DisplayClass78_1__LoadJoystickAssignmentsNow_b__1__MethodInfo); DO_APP_FUNC(0x003AE050, void, UserDataStore_PlayerPrefs_c_DisplayClass78_2__ctor, (UserDataStore_PlayerPrefs_c_DisplayClass78_2 * __this, MethodInfo * method)); DO_APP_FUNC(0x006BDAC0, bool, UserDataStore_PlayerPrefs_c_DisplayClass78_2__LoadJoystickAssignmentsNow_b__2, (UserDataStore_PlayerPrefs_c_DisplayClass78_2 * __this, UserDataStore_PlayerPrefs_JoystickAssignmentHistoryInfo * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDF678, UserDataStore_PlayerPrefs_c_DisplayClass78_2__LoadJoystickAssignmentsNow_b__2__MethodInfo); DO_APP_FUNC(0x003BCD60, void, UserDataStore_PlayerPrefs_LoadJoystickAssignmentsDeferred_d_80__ctor, (UserDataStore_PlayerPrefs_LoadJoystickAssignmentsDeferred_d_80 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, UserDataStore_PlayerPrefs_LoadJoystickAssignmentsDeferred_d_80_System_IDisposable_Dispose, (UserDataStore_PlayerPrefs_LoadJoystickAssignmentsDeferred_d_80 * __this, MethodInfo * method)); DO_APP_FUNC(0x006BDB10, bool, UserDataStore_PlayerPrefs_LoadJoystickAssignmentsDeferred_d_80_MoveNext, (UserDataStore_PlayerPrefs_LoadJoystickAssignmentsDeferred_d_80 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, UserDataStore_PlayerPrefs_LoadJoystickAssignmentsDeferred_d_80_System_Collections_Generic_IEnumerator_System_Object__get_Current, (UserDataStore_PlayerPrefs_LoadJoystickAssignmentsDeferred_d_80 * __this, MethodInfo * method)); DO_APP_FUNC(0x006BDC50, void, UserDataStore_PlayerPrefs_LoadJoystickAssignmentsDeferred_d_80_System_Collections_IEnumerator_Reset, (UserDataStore_PlayerPrefs_LoadJoystickAssignmentsDeferred_d_80 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDF438, UserDataStore_PlayerPrefs_LoadJoystickAssignmentsDeferred_d_80_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, UserDataStore_PlayerPrefs_LoadJoystickAssignmentsDeferred_d_80_System_Collections_IEnumerator_get_Current, (UserDataStore_PlayerPrefs_LoadJoystickAssignmentsDeferred_d_80 * __this, MethodInfo * method)); DO_APP_FUNC(0x006BDCA0, Type__Array *, ControllerTemplateFactory_get_templateTypes, (MethodInfo * method)); DO_APP_FUNC(0x006BDD00, Type__Array *, ControllerTemplateFactory_get_templateInterfaceTypes, (MethodInfo * method)); @@ -21311,23 +24468,29 @@ DO_APP_FUNC(0x006BF540, IMouseInputSource *, RewiredPointerInputModule_get_defau DO_APP_FUNC(0x006BF540, ITouchInputSource *, RewiredPointerInputModule_get_defaultTouchInputSource, (RewiredPointerInputModule * __this, MethodInfo * method)); DO_APP_FUNC(0x006BF550, bool, RewiredPointerInputModule_IsDefaultMouse, (RewiredPointerInputModule * __this, IMouseInputSource * mouse, MethodInfo * method)); DO_APP_FUNC(0x006BF570, IMouseInputSource *, RewiredPointerInputModule_GetMouseInputSource, (RewiredPointerInputModule * __this, int32_t playerId, int32_t mouseIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDF308, RewiredPointerInputModule_GetMouseInputSource__MethodInfo); DO_APP_FUNC(0x006BF780, void, RewiredPointerInputModule_RemoveMouseInputSource, (RewiredPointerInputModule * __this, IMouseInputSource * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDF2F8, RewiredPointerInputModule_RemoveMouseInputSource__MethodInfo); DO_APP_FUNC(0x006BF830, void, RewiredPointerInputModule_AddMouseInputSource, (RewiredPointerInputModule * __this, IMouseInputSource * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDF2E8, RewiredPointerInputModule_AddMouseInputSource__MethodInfo); DO_APP_FUNC(0x006BF970, int32_t, RewiredPointerInputModule_GetMouseInputSourceCount, (RewiredPointerInputModule * __this, int32_t playerId, MethodInfo * method)); DO_APP_FUNC(0x006BFAF0, ITouchInputSource *, RewiredPointerInputModule_GetTouchInputSource, (RewiredPointerInputModule * __this, int32_t playerId, int32_t sourceIndex, MethodInfo * method)); DO_APP_FUNC(0x006BFB80, void, RewiredPointerInputModule_RemoveTouchInputSource, (RewiredPointerInputModule * __this, ITouchInputSource * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDF2C8, RewiredPointerInputModule_RemoveTouchInputSource__MethodInfo); DO_APP_FUNC(0x006BFC50, void, RewiredPointerInputModule_AddTouchInputSource, (RewiredPointerInputModule * __this, ITouchInputSource * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDF288, RewiredPointerInputModule_AddTouchInputSource__MethodInfo); DO_APP_FUNC(0x006BFD60, int32_t, RewiredPointerInputModule_GetTouchInputSourceCount, (RewiredPointerInputModule * __this, int32_t playerId, MethodInfo * method)); DO_APP_FUNC(0x006BFD90, void, RewiredPointerInputModule_ClearMouseInputSources, (RewiredPointerInputModule * __this, MethodInfo * method)); DO_APP_FUNC(0x006BFE00, bool, RewiredPointerInputModule_get_isMouseSupported, (RewiredPointerInputModule * __this, MethodInfo * method)); -DO_APP_FUNC(0x006BFF30, bool, RewiredPointerInputModule_GetPointerData, (RewiredPointerInputModule * __this, int32_t playerId, int32_t pointerIndex, int32_t pointerTypeId, PlayerPointerEventData * data, bool create, PointerEventType__Enum pointerEventType, MethodInfo * method)); +DO_APP_FUNC(0x006BFF30, bool, RewiredPointerInputModule_GetPointerData, (RewiredPointerInputModule * __this, int32_t playerId, int32_t pointerIndex, int32_t pointerTypeId, PlayerPointerEventData * * data, bool create, PointerEventType__Enum pointerEventType, MethodInfo * method)); DO_APP_FUNC(0x006C0740, PlayerPointerEventData *, RewiredPointerInputModule_CreatePointerEventData, (RewiredPointerInputModule * __this, int32_t playerId, int32_t pointerIndex, int32_t pointerTypeId, PointerEventType__Enum pointerEventType, MethodInfo * method)); DO_APP_FUNC(0x006C08D0, void, RewiredPointerInputModule_RemovePointerData, (RewiredPointerInputModule * __this, PlayerPointerEventData * data, MethodInfo * method)); -DO_APP_FUNC(0x006C0990, PlayerPointerEventData *, RewiredPointerInputModule_GetTouchPointerEventData, (RewiredPointerInputModule * __this, int32_t playerId, int32_t touchDeviceIndex, Touch input, bool pressed, bool released, MethodInfo * method)); +DO_APP_FUNC(0x006C0990, PlayerPointerEventData *, RewiredPointerInputModule_GetTouchPointerEventData, (RewiredPointerInputModule * __this, int32_t playerId, int32_t touchDeviceIndex, Touch input, bool * pressed, bool * released, MethodInfo * method)); DO_APP_FUNC(0x006C0C90, RewiredPointerInputModule_MouseState *, RewiredPointerInputModule_GetMousePointerEventData, (RewiredPointerInputModule * __this, int32_t playerId, int32_t mouseIndex, MethodInfo * method)); DO_APP_FUNC(0x006C19C0, PlayerPointerEventData *, RewiredPointerInputModule_GetLastPointerEventData, (RewiredPointerInputModule * __this, int32_t playerId, int32_t pointerIndex, int32_t pointerTypeId, bool ignorePointerTypeId, PointerEventType__Enum pointerEventType, MethodInfo * method)); DO_APP_FUNC(0x006C1C10, bool, RewiredPointerInputModule_ShouldStartDrag, (Vector2 pressPos, Vector2 currentPos, float threshold, bool useDragThreshold, MethodInfo * method)); DO_APP_FUNC(0x006C1C60, void, RewiredPointerInputModule_ProcessMove, (RewiredPointerInputModule * __this, PlayerPointerEventData * pointerEvent, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDF130, RewiredPointerInputModule_ProcessMove__MethodInfo); DO_APP_FUNC(0x006C1D90, void, RewiredPointerInputModule_ProcessDrag, (RewiredPointerInputModule * __this, PlayerPointerEventData * pointerEvent, MethodInfo * method)); DO_APP_FUNC(0x006C2210, bool, RewiredPointerInputModule_IsPointerOverGameObject, (RewiredPointerInputModule * __this, int32_t pointerTypeId, MethodInfo * method)); DO_APP_FUNC(0x006C2510, void, RewiredPointerInputModule_ClearSelection, (RewiredPointerInputModule * __this, MethodInfo * method)); @@ -21430,7 +24593,7 @@ DO_APP_FUNC(0x006C6C60, void, RewiredStandaloneInputModule_ProcessTouchPress, (R DO_APP_FUNC(0x006C7B70, bool, RewiredStandaloneInputModule_SendSubmitEventToSelectedObject, (RewiredStandaloneInputModule * __this, MethodInfo * method)); DO_APP_FUNC(0x006C7E80, Vector2, RewiredStandaloneInputModule_GetRawMoveVector, (RewiredStandaloneInputModule * __this, MethodInfo * method)); DO_APP_FUNC(0x006C8200, bool, RewiredStandaloneInputModule_SendMoveEventToSelectedObject, (RewiredStandaloneInputModule * __this, MethodInfo * method)); -DO_APP_FUNC(0x006C8560, void, RewiredStandaloneInputModule_CheckButtonOrKeyMovement, (RewiredStandaloneInputModule * __this, bool downHorizontal, bool downVertical, MethodInfo * method)); +DO_APP_FUNC(0x006C8560, void, RewiredStandaloneInputModule_CheckButtonOrKeyMovement, (RewiredStandaloneInputModule * __this, bool * downHorizontal, bool * downVertical, MethodInfo * method)); DO_APP_FUNC(0x006C8700, void, RewiredStandaloneInputModule_ProcessMouseEvents, (RewiredStandaloneInputModule * __this, MethodInfo * method)); DO_APP_FUNC(0x006C8870, void, RewiredStandaloneInputModule_ProcessMouseEvent, (RewiredStandaloneInputModule * __this, int32_t playerId, int32_t pointerIndex, MethodInfo * method)); DO_APP_FUNC(0x006C8CB0, bool, RewiredStandaloneInputModule_SendUpdateEventToSelectedObject, (RewiredStandaloneInputModule * __this, MethodInfo * method)); @@ -21451,13 +24614,17 @@ DO_APP_FUNC(0x006CB590, bool, RewiredStandaloneInputModule_GetNegativeButtonDown DO_APP_FUNC(0x006CB5D0, float, RewiredStandaloneInputModule_GetAxis, (RewiredStandaloneInputModule * __this, Player * player, int32_t actionId, MethodInfo * method)); DO_APP_FUNC(0x006CB610, void, RewiredStandaloneInputModule_CheckEditorRecompile, (RewiredStandaloneInputModule * __this, MethodInfo * method)); DO_APP_FUNC(0x006CB680, void, RewiredStandaloneInputModule_OnEditorRecompile, (RewiredStandaloneInputModule * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1C18, RewiredStandaloneInputModule_OnEditorRecompile__MethodInfo); DO_APP_FUNC(0x006CB690, void, RewiredStandaloneInputModule_ClearRewiredVars, (RewiredStandaloneInputModule * __this, MethodInfo * method)); DO_APP_FUNC(0x006CB720, bool, RewiredStandaloneInputModule_DidAnyMouseMove, (RewiredStandaloneInputModule * __this, MethodInfo * method)); DO_APP_FUNC(0x006CB8D0, bool, RewiredStandaloneInputModule_GetMouseButtonDownOnAnyMouse, (RewiredStandaloneInputModule * __this, int32_t buttonIndex, MethodInfo * method)); DO_APP_FUNC(0x006CBA40, void, RewiredStandaloneInputModule_OnRewiredInitialized, (RewiredStandaloneInputModule * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1E30, RewiredStandaloneInputModule_OnRewiredInitialized__MethodInfo); DO_APP_FUNC(0x006CBA50, void, RewiredStandaloneInputModule_OnRewiredShutDown, (RewiredStandaloneInputModule * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1C30, RewiredStandaloneInputModule_OnRewiredShutDown__MethodInfo); DO_APP_FUNC(0x006CBA60, void, RewiredStandaloneInputModule_PlayerSetting__ctor, (RewiredStandaloneInputModule_PlayerSetting * __this, MethodInfo * method)); DO_APP_FUNC(0x006CBB30, void, RewiredStandaloneInputModule_PlayerSetting__ctor_1, (RewiredStandaloneInputModule_PlayerSetting * __this, RewiredStandaloneInputModule_PlayerSetting * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1A70, RewiredStandaloneInputModule_PlayerSetting__ctor_1__MethodInfo); DO_APP_FUNC(0x006CBEA0, RewiredStandaloneInputModule_PlayerSetting *, RewiredStandaloneInputModule_PlayerSetting_Clone, (RewiredStandaloneInputModule_PlayerSetting * __this, MethodInfo * method)); DO_APP_FUNC(0x006CBF10, void, ControlRemappingDemo1_Awake, (ControlRemappingDemo1 * __this, MethodInfo * method)); DO_APP_FUNC(0x006CBF80, void, ControlRemappingDemo1_OnEnable, (ControlRemappingDemo1 * __this, MethodInfo * method)); @@ -21484,23 +24651,33 @@ DO_APP_FUNC(0x006D1390, void, ControlRemappingDemo1_DrawInvertButton, (ControlRe DO_APP_FUNC(0x006D1560, void, ControlRemappingDemo1_DrawAddActionMapButton, (ControlRemappingDemo1 * __this, int32_t playerId, InputAction * action, AxisRange__Enum actionRange, ControlRemappingDemo1_ControllerSelection * controller, ControllerMap * controllerMap, MethodInfo * method)); DO_APP_FUNC(0x006D1720, void, ControlRemappingDemo1_ShowDialog, (ControlRemappingDemo1 * __this, MethodInfo * method)); DO_APP_FUNC(0x006D17B0, void, ControlRemappingDemo1_DrawModalWindow, (ControlRemappingDemo1 * __this, String * title, String * message, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1588, ControlRemappingDemo1_DrawModalWindow__MethodInfo); DO_APP_FUNC(0x006D1920, void, ControlRemappingDemo1_DrawModalWindow_OkayOnly, (ControlRemappingDemo1 * __this, String * title, String * message, MethodInfo * method)); DO_APP_FUNC(0x006D1A40, void, ControlRemappingDemo1_DrawElementAssignmentWindow, (ControlRemappingDemo1 * __this, String * title, String * message, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE14E8, ControlRemappingDemo1_DrawElementAssignmentWindow__MethodInfo); DO_APP_FUNC(0x006D1D00, void, ControlRemappingDemo1_DrawElementAssignmentProtectedConflictWindow, (ControlRemappingDemo1 * __this, String * title, String * message, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1460, ControlRemappingDemo1_DrawElementAssignmentProtectedConflictWindow__MethodInfo); DO_APP_FUNC(0x006D1F20, void, ControlRemappingDemo1_DrawElementAssignmentNormalConflictWindow, (ControlRemappingDemo1 * __this, String * title, String * message, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1480, ControlRemappingDemo1_DrawElementAssignmentNormalConflictWindow__MethodInfo); DO_APP_FUNC(0x006D2170, void, ControlRemappingDemo1_DrawReassignOrRemoveElementAssignmentWindow, (ControlRemappingDemo1 * __this, String * title, String * message, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1530, ControlRemappingDemo1_DrawReassignOrRemoveElementAssignmentWindow__MethodInfo); DO_APP_FUNC(0x006D22C0, void, ControlRemappingDemo1_DrawFallbackJoystickIdentificationWindow, (ControlRemappingDemo1 * __this, String * title, String * message, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1428, ControlRemappingDemo1_DrawFallbackJoystickIdentificationWindow__MethodInfo); DO_APP_FUNC(0x006D2520, void, ControlRemappingDemo1_DrawCalibrationWindow, (ControlRemappingDemo1 * __this, String * title, String * message, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1408, ControlRemappingDemo1_DrawCalibrationWindow__MethodInfo); DO_APP_FUNC(0x006D3D60, void, ControlRemappingDemo1_DialogResultCallback, (ControlRemappingDemo1 * __this, int32_t queueActionId, ControlRemappingDemo1_UserResponse__Enum response, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE15A8, ControlRemappingDemo1_DialogResultCallback__MethodInfo); DO_APP_FUNC(0x006D3F50, Rect, ControlRemappingDemo1_GetScreenCenteredRect, (ControlRemappingDemo1 * __this, float width, float height, MethodInfo * method)); DO_APP_FUNC(0x006D4070, void, ControlRemappingDemo1_EnqueueAction, (ControlRemappingDemo1 * __this, ControlRemappingDemo1_QueueEntry * entry, MethodInfo * method)); DO_APP_FUNC(0x006D4140, void, ControlRemappingDemo1_ProcessQueue, (ControlRemappingDemo1 * __this, MethodInfo * method)); DO_APP_FUNC(0x006D43C0, bool, ControlRemappingDemo1_ProcessJoystickAssignmentChange, (ControlRemappingDemo1 * __this, ControlRemappingDemo1_JoystickAssignmentChange * entry, MethodInfo * method)); DO_APP_FUNC(0x006D48C0, bool, ControlRemappingDemo1_ProcessElementAssignmentChange, (ControlRemappingDemo1 * __this, ControlRemappingDemo1_ElementAssignmentChange * entry, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1558, ControlRemappingDemo1_ProcessElementAssignmentChange__MethodInfo); DO_APP_FUNC(0x006D4970, bool, ControlRemappingDemo1_ProcessRemoveOrReassignElementAssignment, (ControlRemappingDemo1 * __this, ControlRemappingDemo1_ElementAssignmentChange * entry, MethodInfo * method)); DO_APP_FUNC(0x006D4DA0, bool, ControlRemappingDemo1_ProcessRemoveElementAssignment, (ControlRemappingDemo1 * __this, ControlRemappingDemo1_ElementAssignmentChange * entry, MethodInfo * method)); DO_APP_FUNC(0x006D5130, bool, ControlRemappingDemo1_ProcessAddOrReplaceElementAssignment, (ControlRemappingDemo1 * __this, ControlRemappingDemo1_ElementAssignmentChange * entry, MethodInfo * method)); DO_APP_FUNC(0x006D56A0, bool, ControlRemappingDemo1_ProcessElementAssignmentConflictCheck, (ControlRemappingDemo1 * __this, ControlRemappingDemo1_ElementAssignmentChange * entry, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1448, ControlRemappingDemo1_ProcessElementAssignmentConflictCheck__MethodInfo); DO_APP_FUNC(0x006D5C90, bool, ControlRemappingDemo1_ProcessFallbackJoystickIdentification, (ControlRemappingDemo1 * __this, ControlRemappingDemo1_FallbackJoystickIdentification * entry, MethodInfo * method)); DO_APP_FUNC(0x006D5FD0, bool, ControlRemappingDemo1_ProcessCalibration, (ControlRemappingDemo1 * __this, ControlRemappingDemo1_Calibration * entry, MethodInfo * method)); DO_APP_FUNC(0x006D6340, void, ControlRemappingDemo1_PlayerSelectionChanged, (ControlRemappingDemo1 * __this, MethodInfo * method)); @@ -21512,10 +24689,15 @@ DO_APP_FUNC(0x006D6460, void, ControlRemappingDemo1_ClearWorkingVars, (ControlRe DO_APP_FUNC(0x006D66B0, void, ControlRemappingDemo1_SetGUIStateStart, (ControlRemappingDemo1 * __this, MethodInfo * method)); DO_APP_FUNC(0x006D67E0, void, ControlRemappingDemo1_SetGUIStateEnd, (ControlRemappingDemo1 * __this, MethodInfo * method)); DO_APP_FUNC(0x006D68D0, void, ControlRemappingDemo1_JoystickConnected, (ControlRemappingDemo1 * __this, ControllerStatusChangedEventArgs * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1A08, ControlRemappingDemo1_JoystickConnected__MethodInfo); DO_APP_FUNC(0x006D6C60, void, ControlRemappingDemo1_JoystickPreDisconnect, (ControlRemappingDemo1 * __this, ControllerStatusChangedEventArgs * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE19F0, ControlRemappingDemo1_JoystickPreDisconnect__MethodInfo); DO_APP_FUNC(0x006D6FF0, void, ControlRemappingDemo1_JoystickDisconnected, (ControlRemappingDemo1 * __this, ControllerStatusChangedEventArgs * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1A18, ControlRemappingDemo1_JoystickDisconnected__MethodInfo); DO_APP_FUNC(0x003C6500, void, ControlRemappingDemo1_OnConflictFound, (ControlRemappingDemo1 * __this, InputMapper_ConflictFoundEventData * data, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE19A8, ControlRemappingDemo1_OnConflictFound__MethodInfo); DO_APP_FUNC(0x003BC7A0, void, ControlRemappingDemo1_OnStopped, (ControlRemappingDemo1 * __this, InputMapper_StoppedEventData * data, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE19A0, ControlRemappingDemo1_OnStopped__MethodInfo); DO_APP_FUNC(0x006D7060, void, ControlRemappingDemo1_IdentifyAllJoysticks, (ControlRemappingDemo1 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ControlRemappingDemo1_CheckRecompile, (ControlRemappingDemo1 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ControlRemappingDemo1_RecompileWindow, (ControlRemappingDemo1 * __this, int32_t windowId, MethodInfo * method)); @@ -21551,6 +24733,7 @@ DO_APP_FUNC(0x006D84E0, void, ControlRemappingDemo1_DialogHelper_Confirm, (Contr DO_APP_FUNC(0x006D8520, void, ControlRemappingDemo1_DialogHelper_Confirm_1, (ControlRemappingDemo1_DialogHelper * __this, ControlRemappingDemo1_UserResponse__Enum response, MethodInfo * method)); DO_APP_FUNC(0x006D8560, void, ControlRemappingDemo1_DialogHelper_Cancel, (ControlRemappingDemo1_DialogHelper * __this, MethodInfo * method)); DO_APP_FUNC(0x006D85A0, void, ControlRemappingDemo1_DialogHelper_DrawWindow, (ControlRemappingDemo1_DialogHelper * __this, int32_t windowId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE13A0, ControlRemappingDemo1_DialogHelper_DrawWindow__MethodInfo); DO_APP_FUNC(0x006D85D0, void, ControlRemappingDemo1_DialogHelper_UpdateTimers, (ControlRemappingDemo1_DialogHelper * __this, MethodInfo * method)); DO_APP_FUNC(0x006D8650, void, ControlRemappingDemo1_DialogHelper_StartBusyTimer, (ControlRemappingDemo1_DialogHelper * __this, float time, MethodInfo * method)); DO_APP_FUNC(0x006D86C0, void, ControlRemappingDemo1_DialogHelper_Close, (ControlRemappingDemo1_DialogHelper * __this, MethodInfo * method)); @@ -21600,17 +24783,21 @@ DO_APP_FUNC(0x006D8BE0, void, ControlRemappingDemo1_Calibration__ctor, (ControlR DO_APP_FUNC(0x006D8D60, void, CustomControllersTiltDemo_Awake, (CustomControllersTiltDemo * __this, MethodInfo * method)); DO_APP_FUNC(0x006D90B0, void, CustomControllersTiltDemo_Update, (CustomControllersTiltDemo * __this, MethodInfo * method)); DO_APP_FUNC(0x006D9380, void, CustomControllersTiltDemo_OnInputUpdate, (CustomControllersTiltDemo * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1310, CustomControllersTiltDemo_OnInputUpdate__MethodInfo); DO_APP_FUNC(0x006D9430, void, CustomControllersTiltDemo__ctor, (CustomControllersTiltDemo * __this, MethodInfo * method)); DO_APP_FUNC(0x006D9480, void, CustomControllerDemo_Awake, (CustomControllerDemo * __this, MethodInfo * method)); DO_APP_FUNC(0x006D9530, void, CustomControllerDemo_Initialize, (CustomControllerDemo * __this, MethodInfo * method)); DO_APP_FUNC(0x006D9E70, void, CustomControllerDemo_Update, (CustomControllerDemo * __this, MethodInfo * method)); DO_APP_FUNC(0x006D9F20, void, CustomControllerDemo_OnInputSourceUpdate, (CustomControllerDemo * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1288, CustomControllerDemo_OnInputSourceUpdate__MethodInfo); DO_APP_FUNC(0x006DA140, void, CustomControllerDemo_GetSourceAxisValues, (CustomControllerDemo * __this, MethodInfo * method)); DO_APP_FUNC(0x006DA1F0, void, CustomControllerDemo_GetSourceButtonValues, (CustomControllerDemo * __this, MethodInfo * method)); DO_APP_FUNC(0x006DA270, void, CustomControllerDemo_SetControllerAxisValues, (CustomControllerDemo * __this, MethodInfo * method)); DO_APP_FUNC(0x006DA410, void, CustomControllerDemo_SetControllerButtonValues, (CustomControllerDemo * __this, MethodInfo * method)); DO_APP_FUNC(0x006DA5C0, float, CustomControllerDemo_GetAxisValueCallback, (CustomControllerDemo * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1298, CustomControllerDemo_GetAxisValueCallback__MethodInfo); DO_APP_FUNC(0x006DA600, bool, CustomControllerDemo_GetButtonValueCallback, (CustomControllerDemo * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE12A0, CustomControllerDemo_GetButtonValueCallback__MethodInfo); DO_APP_FUNC(0x003AE000, void, CustomControllerDemo__ctor, (CustomControllerDemo * __this, MethodInfo * method)); DO_APP_FUNC(0x006DA640, Player *, CustomControllerDemo_Player_get_player, (CustomControllerDemo_Player * __this, MethodInfo * method)); DO_APP_FUNC(0x006DA710, void, CustomControllerDemo_Player_Awake, (CustomControllerDemo_Player * __this, MethodInfo * method)); @@ -21651,6 +24838,7 @@ DO_APP_FUNC(0x003AE000, void, DualShock4SpecialFeaturesExample__ctor, (DualShock DO_APP_FUNC(0x006DDC60, void, DualShock4SpecialFeaturesExample_Touch__ctor, (DualShock4SpecialFeaturesExample_Touch * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, DualShock4SpecialFeaturesExample_c_DisplayClass20_0__ctor, (DualShock4SpecialFeaturesExample_c_DisplayClass20_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0056DB40, bool, DualShock4SpecialFeaturesExample_c_DisplayClass20_0__HandleTouchpad_b__0, (DualShock4SpecialFeaturesExample_c_DisplayClass20_0 * __this, DualShock4SpecialFeaturesExample_Touch * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1130, DualShock4SpecialFeaturesExample_c_DisplayClass20_0__HandleTouchpad_b__0__MethodInfo); DO_APP_FUNC(0x006DDC70, void, EightPlayersExample_Player_Awake, (EightPlayersExample_Player * __this, MethodInfo * method)); DO_APP_FUNC(0x006DDD00, void, EightPlayersExample_Player_Initialize, (EightPlayersExample_Player * __this, MethodInfo * method)); DO_APP_FUNC(0x006DDDC0, void, EightPlayersExample_Player_Update, (EightPlayersExample_Player * __this, MethodInfo * method)); @@ -21659,11 +24847,14 @@ DO_APP_FUNC(0x006DE060, void, EightPlayersExample_Player_ProcessInput, (EightPla DO_APP_FUNC(0x006DE540, void, EightPlayersExample_Player__ctor, (EightPlayersExample_Player * __this, MethodInfo * method)); DO_APP_FUNC(0x006DE5A0, void, FallbackJoystickIdentificationDemo_Awake, (FallbackJoystickIdentificationDemo * __this, MethodInfo * method)); DO_APP_FUNC(0x006DE6C0, void, FallbackJoystickIdentificationDemo_JoystickConnected, (FallbackJoystickIdentificationDemo * __this, ControllerStatusChangedEventArgs * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1128, FallbackJoystickIdentificationDemo_JoystickConnected__MethodInfo); DO_APP_FUNC(0x006DE6C0, void, FallbackJoystickIdentificationDemo_JoystickDisconnected, (FallbackJoystickIdentificationDemo * __this, ControllerStatusChangedEventArgs * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1120, FallbackJoystickIdentificationDemo_JoystickDisconnected__MethodInfo); DO_APP_FUNC(0x006DE6D0, void, FallbackJoystickIdentificationDemo_IdentifyAllJoysticks, (FallbackJoystickIdentificationDemo * __this, MethodInfo * method)); DO_APP_FUNC(0x006DE940, void, FallbackJoystickIdentificationDemo_SetInputDelay, (FallbackJoystickIdentificationDemo * __this, MethodInfo * method)); DO_APP_FUNC(0x006DE9A0, void, FallbackJoystickIdentificationDemo_OnGUI, (FallbackJoystickIdentificationDemo * __this, MethodInfo * method)); DO_APP_FUNC(0x006DEC40, void, FallbackJoystickIdentificationDemo_DrawDialogWindow, (FallbackJoystickIdentificationDemo * __this, int32_t windowId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1108, FallbackJoystickIdentificationDemo_DrawDialogWindow__MethodInfo); DO_APP_FUNC(0x006DEEC0, void, FallbackJoystickIdentificationDemo_Reset, (FallbackJoystickIdentificationDemo * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, FallbackJoystickIdentificationDemo__ctor, (FallbackJoystickIdentificationDemo * __this, MethodInfo * method)); DO_APP_FUNC(0x006DEF20, void, PlayerMouseSpriteExample_Awake, (PlayerMouseSpriteExample * __this, MethodInfo * method)); @@ -21671,6 +24862,7 @@ DO_APP_FUNC(0x006DF650, void, PlayerMouseSpriteExample_Update, (PlayerMouseSprit DO_APP_FUNC(0x006DF9E0, void, PlayerMouseSpriteExample_OnDestroy, (PlayerMouseSpriteExample * __this, MethodInfo * method)); DO_APP_FUNC(0x006DFAF0, void, PlayerMouseSpriteExample_CreateClickEffect, (PlayerMouseSpriteExample * __this, Color color, MethodInfo * method)); DO_APP_FUNC(0x006DFEE0, void, PlayerMouseSpriteExample_OnScreenPositionChanged, (PlayerMouseSpriteExample * __this, Vector2 position, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE10E0, PlayerMouseSpriteExample_OnScreenPositionChanged__MethodInfo); DO_APP_FUNC(0x006E0090, void, PlayerMouseSpriteExample__ctor, (PlayerMouseSpriteExample * __this, MethodInfo * method)); DO_APP_FUNC(0x006E03A0, void, PlayerPointerEventHandlerExample_Log, (PlayerPointerEventHandlerExample * __this, String * o, MethodInfo * method)); DO_APP_FUNC(0x006E0480, void, PlayerPointerEventHandlerExample_Update, (PlayerPointerEventHandlerExample * __this, MethodInfo * method)); @@ -21731,16 +24923,20 @@ DO_APP_FUNC(0x006E7B00, void, SimpleCombinedKeyboardMouseRemapping_CreateUIRow, DO_APP_FUNC(0x006E8050, void, SimpleCombinedKeyboardMouseRemapping_OnInputFieldClicked, (SimpleCombinedKeyboardMouseRemapping * __this, int32_t index, int32_t actionElementMapToReplaceId, MethodInfo * method)); DO_APP_FUNC(0x006E83C0, IEnumerator *, SimpleCombinedKeyboardMouseRemapping_StartListeningDelayed, (SimpleCombinedKeyboardMouseRemapping * __this, int32_t index, ControllerMap * keyboardMap, ControllerMap * mouseMap, int32_t actionElementMapToReplaceId, MethodInfo * method)); DO_APP_FUNC(0x006E8540, void, SimpleCombinedKeyboardMouseRemapping_OnInputMapped, (SimpleCombinedKeyboardMouseRemapping * __this, InputMapper_InputMappedEventData * data, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0FB8, SimpleCombinedKeyboardMouseRemapping_OnInputMapped__MethodInfo); DO_APP_FUNC(0x006E8650, void, SimpleCombinedKeyboardMouseRemapping_OnStopped, (SimpleCombinedKeyboardMouseRemapping * __this, InputMapper_StoppedEventData * data, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0FB0, SimpleCombinedKeyboardMouseRemapping_OnStopped__MethodInfo); DO_APP_FUNC(0x006E8740, void, SimpleCombinedKeyboardMouseRemapping__ctor, (SimpleCombinedKeyboardMouseRemapping * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SimpleCombinedKeyboardMouseRemapping_Row__ctor, (SimpleCombinedKeyboardMouseRemapping_Row * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SimpleCombinedKeyboardMouseRemapping_c_DisplayClass17_0__ctor, (SimpleCombinedKeyboardMouseRemapping_c_DisplayClass17_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x006E8EB0, void, SimpleCombinedKeyboardMouseRemapping_c_DisplayClass17_0__RedrawUI_b__0, (SimpleCombinedKeyboardMouseRemapping_c_DisplayClass17_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0FA0, SimpleCombinedKeyboardMouseRemapping_c_DisplayClass17_0__RedrawUI_b__0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, SimpleCombinedKeyboardMouseRemapping_StartListeningDelayed_d_22__ctor, (SimpleCombinedKeyboardMouseRemapping_StartListeningDelayed_d_22 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SimpleCombinedKeyboardMouseRemapping_StartListeningDelayed_d_22_System_IDisposable_Dispose, (SimpleCombinedKeyboardMouseRemapping_StartListeningDelayed_d_22 * __this, MethodInfo * method)); DO_APP_FUNC(0x006E8EE0, bool, SimpleCombinedKeyboardMouseRemapping_StartListeningDelayed_d_22_MoveNext, (SimpleCombinedKeyboardMouseRemapping_StartListeningDelayed_d_22 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SimpleCombinedKeyboardMouseRemapping_StartListeningDelayed_d_22_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SimpleCombinedKeyboardMouseRemapping_StartListeningDelayed_d_22 * __this, MethodInfo * method)); DO_APP_FUNC(0x006E92C0, void, SimpleCombinedKeyboardMouseRemapping_StartListeningDelayed_d_22_System_Collections_IEnumerator_Reset, (SimpleCombinedKeyboardMouseRemapping_StartListeningDelayed_d_22 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE3B48, SimpleCombinedKeyboardMouseRemapping_StartListeningDelayed_d_22_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SimpleCombinedKeyboardMouseRemapping_StartListeningDelayed_d_22_System_Collections_IEnumerator_get_Current, (SimpleCombinedKeyboardMouseRemapping_StartListeningDelayed_d_22 * __this, MethodInfo * method)); DO_APP_FUNC(0x006E9310, Player *, SimpleControlRemapping_get_player, (SimpleControlRemapping * __this, MethodInfo * method)); DO_APP_FUNC(0x006E9370, ControllerMap *, SimpleControlRemapping_get_controllerMap, (SimpleControlRemapping * __this, MethodInfo * method)); @@ -21756,17 +24952,22 @@ DO_APP_FUNC(0x006EB010, void, SimpleControlRemapping_OnControllerSelected, (Simp DO_APP_FUNC(0x006EB020, void, SimpleControlRemapping_OnInputFieldClicked, (SimpleControlRemapping * __this, int32_t index, int32_t actionElementMapToReplaceId, MethodInfo * method)); DO_APP_FUNC(0x006EB140, IEnumerator *, SimpleControlRemapping_StartListeningDelayed, (SimpleControlRemapping * __this, int32_t index, int32_t actionElementMapToReplaceId, MethodInfo * method)); DO_APP_FUNC(0x006EB200, void, SimpleControlRemapping_OnControllerChanged, (SimpleControlRemapping * __this, ControllerStatusChangedEventArgs * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE3B30, SimpleControlRemapping_OnControllerChanged__MethodInfo); DO_APP_FUNC(0x006EB210, void, SimpleControlRemapping_OnInputMapped, (SimpleControlRemapping * __this, InputMapper_InputMappedEventData * data, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE3B38, SimpleControlRemapping_OnInputMapped__MethodInfo); DO_APP_FUNC(0x006EB220, void, SimpleControlRemapping_OnStopped, (SimpleControlRemapping * __this, InputMapper_StoppedEventData * data, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE3B28, SimpleControlRemapping_OnStopped__MethodInfo); DO_APP_FUNC(0x006EB310, void, SimpleControlRemapping__ctor, (SimpleControlRemapping * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SimpleControlRemapping_Row__ctor, (SimpleControlRemapping_Row * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SimpleControlRemapping_c_DisplayClass21_0__ctor, (SimpleControlRemapping_c_DisplayClass21_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x006EB4A0, void, SimpleControlRemapping_c_DisplayClass21_0__RedrawUI_b__0, (SimpleControlRemapping_c_DisplayClass21_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE3B18, SimpleControlRemapping_c_DisplayClass21_0__RedrawUI_b__0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, SimpleControlRemapping_StartListeningDelayed_d_28__ctor, (SimpleControlRemapping_StartListeningDelayed_d_28 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SimpleControlRemapping_StartListeningDelayed_d_28_System_IDisposable_Dispose, (SimpleControlRemapping_StartListeningDelayed_d_28 * __this, MethodInfo * method)); DO_APP_FUNC(0x006EB5D0, bool, SimpleControlRemapping_StartListeningDelayed_d_28_MoveNext, (SimpleControlRemapping_StartListeningDelayed_d_28 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SimpleControlRemapping_StartListeningDelayed_d_28_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SimpleControlRemapping_StartListeningDelayed_d_28 * __this, MethodInfo * method)); DO_APP_FUNC(0x006EB8A0, void, SimpleControlRemapping_StartListeningDelayed_d_28_System_Collections_IEnumerator_Reset, (SimpleControlRemapping_StartListeningDelayed_d_28 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE3AD0, SimpleControlRemapping_StartListeningDelayed_d_28_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SimpleControlRemapping_StartListeningDelayed_d_28_System_Collections_IEnumerator_get_Current, (SimpleControlRemapping_StartListeningDelayed_d_28 * __this, MethodInfo * method)); DO_APP_FUNC(0x006EB8F0, void, ControllerUIEffect_Awake, (ControllerUIEffect * __this, MethodInfo * method)); DO_APP_FUNC(0x006EB9B0, void, ControllerUIEffect_Activate, (ControllerUIEffect * __this, float amount, MethodInfo * method)); @@ -21793,7 +24994,9 @@ DO_APP_FUNC(0x006EF380, void, GamepadTemplateUI_DrawLabels_1, (GamepadTemplateUI DO_APP_FUNC(0x006EF650, void, GamepadTemplateUI_DrawLabel, (GamepadTemplateUI * __this, ControllerUIElement * uiElement, InputAction * action, ControllerMap * controllerMap, IControllerTemplate * template_1, IControllerTemplateElement * element, MethodInfo * method)); DO_APP_FUNC(0x006EF9F0, GamepadTemplateUI_Stick *, GamepadTemplateUI_GetStick, (GamepadTemplateUI * __this, int32_t elementId, MethodInfo * method)); DO_APP_FUNC(0x006EFBB0, void, GamepadTemplateUI_OnControllerConnected, (GamepadTemplateUI * __this, ControllerStatusChangedEventArgs * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE3AB0, GamepadTemplateUI_OnControllerConnected__MethodInfo); DO_APP_FUNC(0x006EFBB0, void, GamepadTemplateUI_OnControllerDisconnected, (GamepadTemplateUI * __this, ControllerStatusChangedEventArgs * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE3AB8, GamepadTemplateUI_OnControllerDisconnected__MethodInfo); DO_APP_FUNC(0x006EFBC0, void, GamepadTemplateUI__ctor, (GamepadTemplateUI * __this, MethodInfo * method)); DO_APP_FUNC(0x006EFE00, Vector2, GamepadTemplateUI_Stick_get_position, (GamepadTemplateUI_Stick * __this, MethodInfo * method)); DO_APP_FUNC(0x006EFF90, void, GamepadTemplateUI_Stick_set_position, (GamepadTemplateUI_Stick * __this, Vector2 value, MethodInfo * method)); @@ -21813,11 +25016,13 @@ DO_APP_FUNC(0x006F2480, void, Wipe_Start, (Wipe * __this, MethodInfo * method)); DO_APP_FUNC(0x006F27E0, Mesh *, Wipe_CreateFullscreenQuad, (MethodInfo * method)); DO_APP_FUNC(0x006F2AE0, void, Wipe_OnDestroy, (Wipe * __this, MethodInfo * method)); DO_APP_FUNC(0x006F2D40, void, Wipe_RecordCommandBuffer, (Wipe * __this, CommandBuffer * cmd, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE39E0, Wipe_RecordCommandBuffer__MethodInfo); DO_APP_FUNC(0x006F2F90, void, Wipe_OnGUI, (Wipe * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, Wipe__ctor, (Wipe * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, MoveWithVRCamera_get_IsConcurrent, (MoveWithVRCamera * __this, MethodInfo * method)); DO_APP_FUNC(0x006F32D0, void, MoveWithVRCamera_Awake, (MoveWithVRCamera * __this, MethodInfo * method)); DO_APP_FUNC(0x006F35E0, void, MoveWithVRCamera_OnAttachLookSource, (MoveWithVRCamera * __this, ILookSource * lookSource, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE39B0, MoveWithVRCamera_OnAttachLookSource__MethodInfo); DO_APP_FUNC(0x006F36F0, bool, MoveWithVRCamera_CanStartAbility, (MoveWithVRCamera * __this, MethodInfo * method)); DO_APP_FUNC(0x006F3800, void, MoveWithVRCamera_Update, (MoveWithVRCamera * __this, MethodInfo * method)); DO_APP_FUNC(0x006F3F50, void, MoveWithVRCamera_OnDestroy, (MoveWithVRCamera * __this, MethodInfo * method)); @@ -21837,17 +25042,24 @@ DO_APP_FUNC(0x006F5760, void, AlignToGroundAnimated__cctor, (MethodInfo * method DO_APP_FUNC(0x006F57E0, void, SurvivalMessageMonitor_Awake, (SurvivalMessageMonitor * __this, MethodInfo * method)); DO_APP_FUNC(0x006F58F0, void, SurvivalMessageMonitor_OnAttachCharacter, (SurvivalMessageMonitor * __this, GameObject * character, MethodInfo * method)); DO_APP_FUNC(0x006F6070, void, SurvivalMessageMonitor_OnAbilityCanStart, (SurvivalMessageMonitor * __this, Ability * ability, bool canStart, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE3970, SurvivalMessageMonitor_OnAbilityCanStart__MethodInfo); DO_APP_FUNC(0x006F6680, bool, SurvivalMessageMonitor_IsLongInteractAbility, (SurvivalMessageMonitor * __this, Ability * ability, MethodInfo * method)); DO_APP_FUNC(0x006F6730, bool, SurvivalMessageMonitor_CheckForCustomIcon, (SurvivalMessageMonitor * __this, Ability * ability, MethodInfo * method)); DO_APP_FUNC(0x006F67D0, Sprite *, SurvivalMessageMonitor_GetCustomInteractableIcon, (SurvivalMessageMonitor * __this, Ability * ability, MethodInfo * method)); DO_APP_FUNC(0x006F69B0, void, SurvivalMessageMonitor_OnObjectPickedUp, (SurvivalMessageMonitor * __this, ObjectPickup * objectPickup, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE3948, SurvivalMessageMonitor_OnObjectPickedUp__MethodInfo); DO_APP_FUNC(0x006F6D70, void, SurvivalMessageMonitor_UpdateMessage, (SurvivalMessageMonitor * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE38F8, SurvivalMessageMonitor_UpdateMessage__MethodInfo); DO_APP_FUNC(0x006F7AD0, void, SurvivalMessageMonitor_FadeMessage, (SurvivalMessageMonitor * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE38E0, SurvivalMessageMonitor_FadeMessage__MethodInfo); DO_APP_FUNC(0x006F7F20, bool, SurvivalMessageMonitor_CanShowUI, (SurvivalMessageMonitor * __this, MethodInfo * method)); DO_APP_FUNC(0x006F8050, void, SurvivalMessageMonitor_Update, (SurvivalMessageMonitor * __this, MethodInfo * method)); DO_APP_FUNC(0x006F8EA0, void, SurvivalMessageMonitor_OnKnockoutEvent, (SurvivalMessageMonitor * __this, BoltEntity * killedBy, BoltEntity * player, bool usingPoison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE3960, SurvivalMessageMonitor_OnKnockoutEvent__MethodInfo); DO_APP_FUNC(0x006F8EA0, void, SurvivalMessageMonitor_OnKnockoutBoxEvent, (SurvivalMessageMonitor * __this, String * killedBy, BoltEntity * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE3958, SurvivalMessageMonitor_OnKnockoutBoxEvent__MethodInfo); DO_APP_FUNC(0x006F8EA0, void, SurvivalMessageMonitor_OnPlayerPickedUpEvent, (SurvivalMessageMonitor * __this, BoltEntity * killedBy, BoltEntity * player, bool inHidingSpot, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE3950, SurvivalMessageMonitor_OnPlayerPickedUpEvent__MethodInfo); DO_APP_FUNC(0x006F8EB0, void, SurvivalMessageMonitor_KnockedOut, (SurvivalMessageMonitor * __this, BoltEntity * player, MethodInfo * method)); DO_APP_FUNC(0x006F9210, void, SurvivalMessageMonitor__ctor, (SurvivalMessageMonitor * __this, MethodInfo * method)); DO_APP_FUNC(0x004749F0, bool, RewiredInput_get_DisableCursor, (RewiredInput * __this, MethodInfo * method)); @@ -21922,8 +25134,8 @@ DO_APP_FUNC(0x007012C0, bool, MagicLightProbes_UpdateProgress, (MagicLightProbes DO_APP_FUNC(0x00701310, bool, MagicLightProbes_UpdateTotalProgress, (MagicLightProbes * __this, int32_t count, int32_t period, MethodInfo * method)); DO_APP_FUNC(0x00701360, void, MagicLightProbes__ctor, (MagicLightProbes * __this, MethodInfo * method)); DO_APP_FUNC(0x00702870, void, MagicLightProbes__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x007028B0, void, MagicLightProbes_VolumeParameters__ctor, (MagicLightProbes_VolumeParameters__Boxed * __this, int32_t _volumeIndex, Vector3 _position, Vector3 _demensions, MethodInfo * method)); -DO_APP_FUNC(0x007028E0, void, MagicLightProbes_TempPointData__ctor, (MagicLightProbes_TempPointData__Boxed * __this, Vector3 _position, MethodInfo * method)); +DO_APP_FUNC(0x007028B0, void, MagicLightProbes_VolumeParameters__ctor, (MagicLightProbes_VolumeParameters * __this, int32_t _volumeIndex, Vector3 _position, Vector3 _demensions, MethodInfo * method)); +DO_APP_FUNC(0x007028E0, void, MagicLightProbes_TempPointData__ctor, (MagicLightProbes_TempPointData * __this, Vector3 _position, MethodInfo * method)); DO_APP_FUNC(0x00702900, void, MagicLightProbes_WorkPathFoundEvent__ctor, (MagicLightProbes_WorkPathFoundEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, MLPCombinedVolume__ctor, (MLPCombinedVolume * __this, MethodInfo * method)); DO_APP_FUNC(0x00702940, void, MLPLight__ctor, (MLPLight * __this, MethodInfo * method)); @@ -21946,6 +25158,7 @@ DO_APP_FUNC(0x00703BB0, bool, DublicateVertical_ExecutePass_d_0_MoveNext, (Dubli DO_APP_FUNC(0x00704B90, void, DublicateVertical_ExecutePass_d_0___m__Finally1, (DublicateVertical_ExecutePass_d_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, DublicateVertical_ExecutePass_d_0_System_Collections_Generic_IEnumerator_System_Object__get_Current, (DublicateVertical_ExecutePass_d_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00704BE0, void, DublicateVertical_ExecutePass_d_0_System_Collections_IEnumerator_Reset, (DublicateVertical_ExecutePass_d_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE3660, DublicateVertical_ExecutePass_d_0_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, DublicateVertical_ExecutePass_d_0_System_Collections_IEnumerator_get_Current, (DublicateVertical_ExecutePass_d_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00704C30, int32_t, RandomGen_Next, (int32_t min, int32_t max, MethodInfo * method)); DO_APP_FUNC(0x00704FD0, void, RandomGen__cctor, (MethodInfo * method)); @@ -21956,6 +25169,7 @@ DO_APP_FUNC(0x003AE050, void, EquivalentProbesOptimization_ExecutePass_d_0_Syste DO_APP_FUNC(0x00705210, bool, EquivalentProbesOptimization_ExecutePass_d_0_MoveNext, (EquivalentProbesOptimization_ExecutePass_d_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, EquivalentProbesOptimization_ExecutePass_d_0_System_Collections_Generic_IEnumerator_System_Object__get_Current, (EquivalentProbesOptimization_ExecutePass_d_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00705C20, void, EquivalentProbesOptimization_ExecutePass_d_0_System_Collections_IEnumerator_Reset, (EquivalentProbesOptimization_ExecutePass_d_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE3608, EquivalentProbesOptimization_ExecutePass_d_0_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, EquivalentProbesOptimization_ExecutePass_d_0_System_Collections_IEnumerator_get_Current, (EquivalentProbesOptimization_ExecutePass_d_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00705C70, IEnumerator *, PartialVolumeFilling_ExecutePass, (PartialVolumeFilling * __this, MagicLightProbes * parent, PartialVolumeFilling_TargetPoint__Enum targetPoint, MLPVolume * currentVolume, bool realtimeEditing, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, PartialVolumeFilling__ctor, (PartialVolumeFilling * __this, MethodInfo * method)); @@ -21964,6 +25178,7 @@ DO_APP_FUNC(0x003AE050, void, PartialVolumeFilling_ExecutePass_d_1_System_IDispo DO_APP_FUNC(0x00705D90, bool, PartialVolumeFilling_ExecutePass_d_1_MoveNext, (PartialVolumeFilling_ExecutePass_d_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, PartialVolumeFilling_ExecutePass_d_1_System_Collections_Generic_IEnumerator_System_Object__get_Current, (PartialVolumeFilling_ExecutePass_d_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x00707120, void, PartialVolumeFilling_ExecutePass_d_1_System_Collections_IEnumerator_Reset, (PartialVolumeFilling_ExecutePass_d_1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE35C8, PartialVolumeFilling_ExecutePass_d_1_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, PartialVolumeFilling_ExecutePass_d_1_System_Collections_IEnumerator_get_Current, (PartialVolumeFilling_ExecutePass_d_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x00707170, IEnumerator *, RemoveUnusedPoints_ExecutePass, (RemoveUnusedPoints * __this, MagicLightProbes * parent, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, RemoveUnusedPoints__ctor, (RemoveUnusedPoints * __this, MethodInfo * method)); @@ -21972,6 +25187,7 @@ DO_APP_FUNC(0x003AE050, void, RemoveUnusedPoints_ExecutePass_d_0_System_IDisposa DO_APP_FUNC(0x00707210, bool, RemoveUnusedPoints_ExecutePass_d_0_MoveNext, (RemoveUnusedPoints_ExecutePass_d_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, RemoveUnusedPoints_ExecutePass_d_0_System_Collections_Generic_IEnumerator_System_Object__get_Current, (RemoveUnusedPoints_ExecutePass_d_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00707670, void, RemoveUnusedPoints_ExecutePass_d_0_System_Collections_IEnumerator_Reset, (RemoveUnusedPoints_ExecutePass_d_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE35B0, RemoveUnusedPoints_ExecutePass_d_0_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, RemoveUnusedPoints_ExecutePass_d_0_System_Collections_IEnumerator_get_Current, (RemoveUnusedPoints_ExecutePass_d_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x007076C0, IEnumerator *, SetDistanceFromGeometry_ExecutePass, (SetDistanceFromGeometry * __this, MagicLightProbes * parent, MLPVolume * currentVolume, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SetDistanceFromGeometry__ctor, (SetDistanceFromGeometry * __this, MethodInfo * method)); @@ -21980,6 +25196,7 @@ DO_APP_FUNC(0x003AE050, void, SetDistanceFromGeometry_ExecutePass_d_0_System_IDi DO_APP_FUNC(0x007077D0, bool, SetDistanceFromGeometry_ExecutePass_d_0_MoveNext, (SetDistanceFromGeometry_ExecutePass_d_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SetDistanceFromGeometry_ExecutePass_d_0_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SetDistanceFromGeometry_ExecutePass_d_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00708070, void, SetDistanceFromGeometry_ExecutePass_d_0_System_Collections_IEnumerator_Reset, (SetDistanceFromGeometry_ExecutePass_d_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE3590, SetDistanceFromGeometry_ExecutePass_d_0_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SetDistanceFromGeometry_ExecutePass_d_0_System_Collections_IEnumerator_get_Current, (SetDistanceFromGeometry_ExecutePass_d_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x007080C0, void, BoltClient__ctor, (BoltClient * __this, BoltCommsNetwork * network, BoltDissonanceRelay * relay, MethodInfo * method)); DO_APP_FUNC(0x00708180, void, BoltClient_PacketReceived, (BoltClient * __this, BoltPeer server, ArraySegment_1_Byte_ data, MethodInfo * method)); @@ -22009,11 +25226,11 @@ DO_APP_FUNC(0x00709E90, void, BoltDissonanceRelay_SendUnreliable, (BoltDissonanc DO_APP_FUNC(0x0070A010, Byte__Array *, BoltDissonanceRelay_ToDirectArray, (BoltDissonanceRelay * __this, ArraySegment_1_Byte_ segment, MethodInfo * method)); DO_APP_FUNC(0x0070A230, void, BoltDissonanceRelay__ctor, (BoltDissonanceRelay * __this, MethodInfo * method)); DO_APP_FUNC(0x0070A420, void, BoltDissonanceRelay__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x00471910, BoltConnection *, BoltPeer_get_Connection, (BoltPeer__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, BoltPeer_set_Connection, (BoltPeer__Boxed * __this, BoltConnection * value, MethodInfo * method)); -DO_APP_FUNC(0x0070A610, bool, BoltPeer_get_RepresentsLocalConnection, (BoltPeer__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0070A660, void, BoltPeer__ctor, (BoltPeer__Boxed * __this, BoltConnection * connection, MethodInfo * method)); -DO_APP_FUNC(0x0070A700, bool, BoltPeer_Equals, (BoltPeer__Boxed * __this, BoltPeer other, MethodInfo * method)); +DO_APP_FUNC(0x00471910, BoltConnection *, BoltPeer_get_Connection, (BoltPeer * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, BoltPeer_set_Connection, (BoltPeer * __this, BoltConnection * value, MethodInfo * method)); +DO_APP_FUNC(0x0070A610, bool, BoltPeer_get_RepresentsLocalConnection, (BoltPeer * __this, MethodInfo * method)); +DO_APP_FUNC(0x0070A660, void, BoltPeer__ctor, (BoltPeer * __this, BoltConnection * connection, MethodInfo * method)); +DO_APP_FUNC(0x0070A700, bool, BoltPeer_Equals, (BoltPeer * __this, BoltPeer other, MethodInfo * method)); DO_APP_FUNC(0x0070A820, void, BoltPeer__cctor, (MethodInfo * method)); DO_APP_FUNC(0x0070A950, void, BoltCommsNetwork_Awake, (BoltCommsNetwork * __this, MethodInfo * method)); DO_APP_FUNC(0x0070AA60, BoltServer *, BoltCommsNetwork_CreateServer, (BoltCommsNetwork * __this, Unit serverParameters, MethodInfo * method)); @@ -22061,28 +25278,29 @@ DO_APP_FUNC(0x0070CBC0, void, HairDesignerRuntimeLayerLoader_Load, (HairDesigner DO_APP_FUNC(0x0070CD90, void, HairDesignerRuntimeLayerLoader__ctor, (HairDesignerRuntimeLayerLoader * __this, MethodInfo * method)); DO_APP_FUNC(0x0070CF40, void, HairDesignerShaderAdvancedFur_SetTexture, (HairDesignerShaderAdvancedFur * __this, int32_t textureID, Texture2D * tex, MethodInfo * method)); DO_APP_FUNC(0x0070CFB0, Texture2D *, HairDesignerShaderAdvancedFur_GetTexture, (HairDesignerShaderAdvancedFur * __this, int32_t textureID, MethodInfo * method)); -DO_APP_FUNC(0x0070CFF0, void, HairDesignerShaderAdvancedFur_UpdatePropertyBlock, (HairDesignerShaderAdvancedFur * __this, MaterialPropertyBlock * pb, HairDesignerBase_eLayerType__Enum lt, MethodInfo * method)); +DO_APP_FUNC(0x0070CFF0, void, HairDesignerShaderAdvancedFur_UpdatePropertyBlock, (HairDesignerShaderAdvancedFur * __this, MaterialPropertyBlock * * pb, HairDesignerBase_eLayerType__Enum lt, MethodInfo * method)); DO_APP_FUNC(0x0070E490, void, HairDesignerShaderAdvancedFur_OnDisable, (HairDesignerShaderAdvancedFur * __this, MethodInfo * method)); DO_APP_FUNC(0x0070E610, void, HairDesignerShaderAdvancedFur_OnEnable, (HairDesignerShaderAdvancedFur * __this, MethodInfo * method)); DO_APP_FUNC(0x0070E790, void, HairDesignerShaderAdvancedFur_CameraPreCull, (HairDesignerShaderAdvancedFur * __this, Camera * cam, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE31B8, HairDesignerShaderAdvancedFur_CameraPreCull__MethodInfo); DO_APP_FUNC(0x0070ED00, void, HairDesignerShaderAdvancedFur__ctor, (HairDesignerShaderAdvancedFur * __this, MethodInfo * method)); DO_APP_FUNC(0x0070F440, void, HairDesignerShaderAdvancedFur_EditorSettings__ctor, (HairDesignerShaderAdvancedFur_EditorSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x0070F500, void, HairDesignerShaderAdvancedFur_LODData__ctor, (HairDesignerShaderAdvancedFur_LODData * __this, MethodInfo * method)); -DO_APP_FUNC(0x0070F540, void, HairDesignerShaderAtlas_UpdatePropertyBlock, (HairDesignerShaderAtlas * __this, MaterialPropertyBlock * pb, HairDesignerBase_eLayerType__Enum lt, MethodInfo * method)); -DO_APP_FUNC(0x00710130, void, HairDesignerShaderAtlas_UpdateMaterialProperty, (HairDesignerShaderAtlas * __this, Material * mat, HairDesignerBase_eLayerType__Enum lt, MethodInfo * method)); +DO_APP_FUNC(0x0070F540, void, HairDesignerShaderAtlas_UpdatePropertyBlock, (HairDesignerShaderAtlas * __this, MaterialPropertyBlock * * pb, HairDesignerBase_eLayerType__Enum lt, MethodInfo * method)); +DO_APP_FUNC(0x00710130, void, HairDesignerShaderAtlas_UpdateMaterialProperty, (HairDesignerShaderAtlas * __this, Material * * mat, HairDesignerBase_eLayerType__Enum lt, MethodInfo * method)); DO_APP_FUNC(0x007101F0, void, HairDesignerShaderAtlas__ctor, (HairDesignerShaderAtlas * __this, MethodInfo * method)); -DO_APP_FUNC(0x00710330, void, HairDesignerShaderFire_UpdatePropertyBlock, (HairDesignerShaderFire * __this, MaterialPropertyBlock * pb, HairDesignerBase_eLayerType__Enum lt, MethodInfo * method)); +DO_APP_FUNC(0x00710330, void, HairDesignerShaderFire_UpdatePropertyBlock, (HairDesignerShaderFire * __this, MaterialPropertyBlock * * pb, HairDesignerBase_eLayerType__Enum lt, MethodInfo * method)); DO_APP_FUNC(0x00710520, void, HairDesignerShaderFire__ctor, (HairDesignerShaderFire * __this, MethodInfo * method)); DO_APP_FUNC(0x007105C0, void, HairDesignerShaderFurShell_SetTexture, (HairDesignerShaderFurShell * __this, int32_t textureID, Texture2D * tex, MethodInfo * method)); DO_APP_FUNC(0x00710630, Texture2D *, HairDesignerShaderFurShell_GetTexture, (HairDesignerShaderFurShell * __this, int32_t textureID, MethodInfo * method)); DO_APP_FUNC(0x00710670, bool, HairDesignerShaderFurShell_InstancingModeCompatibility, (HairDesignerShaderFurShell * __this, eInstancingMode__Enum imode, MethodInfo * method)); DO_APP_FUNC(0x00710680, void, HairDesignerShaderFurShell_GeneratorUpdate, (HairDesignerShaderFurShell * __this, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, HairDesignerShaderFurShell_UpdatePropertyBlock, (HairDesignerShaderFurShell * __this, MaterialPropertyBlock * pb, HairDesignerBase_eLayerType__Enum lt, MethodInfo * method)); -DO_APP_FUNC(0x00710910, void, HairDesignerShaderFurShell_UpdateMaterialProperty, (HairDesignerShaderFurShell * __this, Material * mat, HairDesignerBase_eLayerType__Enum lt, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, HairDesignerShaderFurShell_UpdatePropertyBlock, (HairDesignerShaderFurShell * __this, MaterialPropertyBlock * * pb, HairDesignerBase_eLayerType__Enum lt, MethodInfo * method)); +DO_APP_FUNC(0x00710910, void, HairDesignerShaderFurShell_UpdateMaterialProperty, (HairDesignerShaderFurShell * __this, Material * * mat, HairDesignerBase_eLayerType__Enum lt, MethodInfo * method)); DO_APP_FUNC(0x00711B10, void, HairDesignerShaderFurShell__ctor, (HairDesignerShaderFurShell * __this, MethodInfo * method)); -DO_APP_FUNC(0x00711E50, void, HairDesignerShaderProcedural_UpdatePropertyBlock, (HairDesignerShaderProcedural * __this, MaterialPropertyBlock * pb, HairDesignerBase_eLayerType__Enum lt, MethodInfo * method)); +DO_APP_FUNC(0x00711E50, void, HairDesignerShaderProcedural_UpdatePropertyBlock, (HairDesignerShaderProcedural * __this, MaterialPropertyBlock * * pb, HairDesignerBase_eLayerType__Enum lt, MethodInfo * method)); DO_APP_FUNC(0x00712230, void, HairDesignerShaderProcedural__ctor, (HairDesignerShaderProcedural * __this, MethodInfo * method)); -DO_APP_FUNC(0x007122F0, void, HairDesignerShaderProcedural_v2_UpdatePropertyBlock, (HairDesignerShaderProcedural_v2 * __this, MaterialPropertyBlock * pb, HairDesignerBase_eLayerType__Enum lt, MethodInfo * method)); +DO_APP_FUNC(0x007122F0, void, HairDesignerShaderProcedural_v2_UpdatePropertyBlock, (HairDesignerShaderProcedural_v2 * __this, MaterialPropertyBlock * * pb, HairDesignerBase_eLayerType__Enum lt, MethodInfo * method)); DO_APP_FUNC(0x00712A30, void, HairDesignerShaderProcedural_v2__ctor, (HairDesignerShaderProcedural_v2 * __this, MethodInfo * method)); DO_APP_FUNC(0x00712B70, void, HairDesignerStrandMeshCollection__ctor, (HairDesignerStrandMeshCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x00712C40, void, BlendShapesPresetAnimator_Awake, (BlendShapesPresetAnimator * __this, MethodInfo * method)); @@ -22163,7 +25381,9 @@ DO_APP_FUNC(0x005F7520, bool, BehaviorTreeAgent_get_PauseOnDeath, (BehaviorTreeA DO_APP_FUNC(0x00715340, void, BehaviorTreeAgent_set_PauseOnDeath, (BehaviorTreeAgent * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x00715350, void, BehaviorTreeAgent_Awake, (BehaviorTreeAgent * __this, MethodInfo * method)); DO_APP_FUNC(0x00715680, void, BehaviorTreeAgent_OnDeath, (BehaviorTreeAgent * __this, Vector3 position, Vector3 force, GameObject * attacker, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4E40, BehaviorTreeAgent_OnDeath__MethodInfo); DO_APP_FUNC(0x00715720, void, BehaviorTreeAgent_OnRespawn, (BehaviorTreeAgent * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4E28, BehaviorTreeAgent_OnRespawn__MethodInfo); DO_APP_FUNC(0x007157B0, void, BehaviorTreeAgent_OnDestroy, (BehaviorTreeAgent * __this, MethodInfo * method)); DO_APP_FUNC(0x007159A0, void, BehaviorTreeAgent__ctor, (BehaviorTreeAgent * __this, MethodInfo * method)); DO_APP_FUNC(0x007159B0, void, BehaviorTreeReference__ctor, (BehaviorTreeReference * __this, MethodInfo * method)); @@ -22218,6 +25438,7 @@ DO_APP_FUNC(0x007159B0, void, StackedAction__ctor, (StackedAction * __this, Meth DO_APP_FUNC(0x00719340, void, StartBehaviorTree_OnStart, (StartBehaviorTree * __this, MethodInfo * method)); DO_APP_FUNC(0x007199D0, TaskStatus__Enum_1, StartBehaviorTree_OnUpdate, (StartBehaviorTree * __this, MethodInfo * method)); DO_APP_FUNC(0x00719B60, void, StartBehaviorTree_BehaviorEnded, (StartBehaviorTree * __this, Behavior * behavior, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4CA0, StartBehaviorTree_BehaviorEnded__MethodInfo); DO_APP_FUNC(0x00719B70, void, StartBehaviorTree_OnEnd, (StartBehaviorTree * __this, MethodInfo * method)); DO_APP_FUNC(0x00719E10, void, StartBehaviorTree_OnReset, (StartBehaviorTree * __this, MethodInfo * method)); DO_APP_FUNC(0x00719FB0, void, StartBehaviorTree__ctor, (StartBehaviorTree * __this, MethodInfo * method)); @@ -22328,9 +25549,13 @@ DO_APP_FUNC(0x0071CCD0, void, HasReceivedEvent_OnStart, (HasReceivedEvent * __th DO_APP_FUNC(0x0071D050, TaskStatus__Enum_1, HasReceivedEvent_OnUpdate, (HasReceivedEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x0071D060, void, HasReceivedEvent_OnEnd, (HasReceivedEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x00719B60, void, HasReceivedEvent_ReceivedEvent, (HasReceivedEvent * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4A58, HasReceivedEvent_ReceivedEvent__MethodInfo); DO_APP_FUNC(0x0071D3E0, void, HasReceivedEvent_ReceivedEvent_1, (HasReceivedEvent * __this, Object * arg1, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4A60, HasReceivedEvent_ReceivedEvent_1__MethodInfo); DO_APP_FUNC(0x0071D430, void, HasReceivedEvent_ReceivedEvent_2, (HasReceivedEvent * __this, Object * arg1, Object * arg2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4A70, HasReceivedEvent_ReceivedEvent_2__MethodInfo); DO_APP_FUNC(0x0071D4E0, void, HasReceivedEvent_ReceivedEvent_3, (HasReceivedEvent * __this, Object * arg1, Object * arg2, Object * arg3, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4A68, HasReceivedEvent_ReceivedEvent_3__MethodInfo); DO_APP_FUNC(0x0071D5F0, void, HasReceivedEvent_OnBehaviorComplete, (HasReceivedEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x0071D960, void, HasReceivedEvent_OnReset, (HasReceivedEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x0071D9F0, void, HasReceivedEvent__ctor, (HasReceivedEvent * __this, MethodInfo * method)); @@ -22489,6 +25714,7 @@ DO_APP_FUNC(0x007242E0, void, EnrageWait_OnPause, (EnrageWait * __this, bool pau DO_APP_FUNC(0x007243A0, void, EnrageWait_OnReset, (EnrageWait * __this, MethodInfo * method)); DO_APP_FUNC(0x00724480, void, EnrageWait_OnEnd, (EnrageWait * __this, MethodInfo * method)); DO_APP_FUNC(0x00724510, void, EnrageWait_OnBurnGoat, (EnrageWait * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE49E8, EnrageWait_OnBurnGoat__MethodInfo); DO_APP_FUNC(0x007249F0, void, EnrageWait_OnBehaviorComplete, (EnrageWait * __this, MethodInfo * method)); DO_APP_FUNC(0x00724B30, IEnumerator *, EnrageWait_DelayEnrage, (EnrageWait * __this, MethodInfo * method)); DO_APP_FUNC(0x00724BD0, void, EnrageWait__ctor, (EnrageWait * __this, MethodInfo * method)); @@ -22497,6 +25723,7 @@ DO_APP_FUNC(0x003AE050, void, EnrageWait_DelayEnrage_d_33_System_IDisposable_Dis DO_APP_FUNC(0x00724F50, bool, EnrageWait_DelayEnrage_d_33_MoveNext, (EnrageWait_DelayEnrage_d_33 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, EnrageWait_DelayEnrage_d_33_System_Collections_Generic_IEnumerator_System_Object__get_Current, (EnrageWait_DelayEnrage_d_33 * __this, MethodInfo * method)); DO_APP_FUNC(0x007250E0, void, EnrageWait_DelayEnrage_d_33_System_Collections_IEnumerator_Reset, (EnrageWait_DelayEnrage_d_33 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE49B8, EnrageWait_DelayEnrage_d_33_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, EnrageWait_DelayEnrage_d_33_System_Collections_IEnumerator_get_Current, (EnrageWait_DelayEnrage_d_33 * __this, MethodInfo * method)); DO_APP_FUNC(0x00725130, TaskStatus__Enum_1, GetLocomotionVelocity_OnUpdate, (GetLocomotionVelocity * __this, MethodInfo * method)); DO_APP_FUNC(0x007159B0, void, GetLocomotionVelocity__ctor, (GetLocomotionVelocity * __this, MethodInfo * method)); @@ -22529,6 +25756,7 @@ DO_APP_FUNC(0x00727170, void, IsStateActive_OnAwake, (IsStateActive * __this, Me DO_APP_FUNC(0x00727610, TaskStatus__Enum_1, IsStateActive_OnUpdate, (IsStateActive * __this, MethodInfo * method)); DO_APP_FUNC(0x007159B0, void, IsStateActive__ctor, (IsStateActive * __this, MethodInfo * method)); DO_APP_FUNC(0x00727630, bool, IsStateActive__OnAwake_b__3_0, (IsStateActive * __this, State * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4970, IsStateActive__OnAwake_b__3_0__MethodInfo); DO_APP_FUNC(0x00727710, void, LetGoOfPlayer_OnAwake, (LetGoOfPlayer * __this, MethodInfo * method)); DO_APP_FUNC(0x007277B0, TaskStatus__Enum_1, LetGoOfPlayer_OnUpdate, (LetGoOfPlayer * __this, MethodInfo * method)); DO_APP_FUNC(0x007159B0, void, LetGoOfPlayer__ctor, (LetGoOfPlayer * __this, MethodInfo * method)); @@ -22544,6 +25772,7 @@ DO_APP_FUNC(0x00728250, void, MapProgressResumableWait_OnReset, (MapProgressResu DO_APP_FUNC(0x00728260, void, MapProgressResumableWait_ResetWaitTime, (MapProgressResumableWait * __this, MethodInfo * method)); DO_APP_FUNC(0x007284A0, void, MapProgressResumableWait_OnBehaviorComplete, (MapProgressResumableWait * __this, MethodInfo * method)); DO_APP_FUNC(0x00728580, void, MapProgressResumableWait_OnGlobalGoatBurnEvent, (MapProgressResumableWait * __this, int32_t numObjectsBurned, BoltEntity * player, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4960, MapProgressResumableWait_OnGlobalGoatBurnEvent__MethodInfo); DO_APP_FUNC(0x007286C0, void, MapProgressResumableWait__ctor, (MapProgressResumableWait * __this, MethodInfo * method)); DO_APP_FUNC(0x007286D0, void, PlayersFocusingMeWait_OnStart, (PlayersFocusingMeWait * __this, MethodInfo * method)); DO_APP_FUNC(0x007287E0, TaskStatus__Enum_1, PlayersFocusingMeWait_OnUpdate, (PlayersFocusingMeWait * __this, MethodInfo * method)); @@ -22558,6 +25787,7 @@ DO_APP_FUNC(0x00729D00, void, ShouldSpawnEgg__ctor, (ShouldSpawnEgg * __this, Me DO_APP_FUNC(0x00729D70, void, ShouldSpawnEgg_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ShouldSpawnEgg_c__ctor, (ShouldSpawnEgg_c * __this, MethodInfo * method)); DO_APP_FUNC(0x00729E20, InnShrineController *, ShouldSpawnEgg_c__OnAwake_b__5_0, (ShouldSpawnEgg_c * __this, GameObject * shrine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4928, ShouldSpawnEgg_c__OnAwake_b__5_0__MethodInfo); DO_APP_FUNC(0x00729E70, void, IsCandleAvailable_OnAwake, (IsCandleAvailable * __this, MethodInfo * method)); DO_APP_FUNC(0x00729F20, TaskStatus__Enum_1, IsCandleAvailable_OnUpdate, (IsCandleAvailable * __this, MethodInfo * method)); DO_APP_FUNC(0x007159B0, void, IsCandleAvailable__ctor, (IsCandleAvailable * __this, MethodInfo * method)); @@ -23773,6 +27003,7 @@ DO_APP_FUNC(0x007159B0, void, GetEggSpawnPoint__ctor, (GetEggSpawnPoint * __this DO_APP_FUNC(0x0077EBE0, void, GetEggSpawnPoint_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GetEggSpawnPoint_c__ctor, (GetEggSpawnPoint_c * __this, MethodInfo * method)); DO_APP_FUNC(0x0077EC90, InnHoleController *, GetEggSpawnPoint_c__OnAwake_b__8_0, (GetEggSpawnPoint_c * __this, GameObject * hole, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA680, GetEggSpawnPoint_c__OnAwake_b__8_0__MethodInfo); DO_APP_FUNC(0x0077ECE0, void, GetExitHole_OnStart, (GetExitHole * __this, MethodInfo * method)); DO_APP_FUNC(0x0077EF30, TaskStatus__Enum_1, GetExitHole_OnUpdate, (GetExitHole * __this, MethodInfo * method)); DO_APP_FUNC(0x0077F290, void, GetExitHole_OnReset, (GetExitHole * __this, MethodInfo * method)); @@ -23780,11 +27011,13 @@ DO_APP_FUNC(0x007159B0, void, GetExitHole__ctor, (GetExitHole * __this, MethodIn DO_APP_FUNC(0x0077F340, void, GetExitHole_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GetExitHole_c__ctor, (GetExitHole_c * __this, MethodInfo * method)); DO_APP_FUNC(0x0077F3F0, bool, GetExitHole_c__OnStart_b__5_0, (GetExitHole_c * __this, GameObject * h, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA640, GetExitHole_c__OnStart_b__5_0__MethodInfo); DO_APP_FUNC(0x0077F450, void, GetNearestHole_OnAwake, (GetNearestHole * __this, MethodInfo * method)); DO_APP_FUNC(0x0077F590, void, GetNearestHole_OnStart, (GetNearestHole * __this, MethodInfo * method)); DO_APP_FUNC(0x0077FCC0, IEnumerator *, GetNearestHole_ConstructPath, (GetNearestHole * __this, MethodInfo * method)); DO_APP_FUNC(0x0077FD60, bool, GetNearestHole_UseBackupMethod, (GetNearestHole * __this, MethodInfo * method)); DO_APP_FUNC(0x00548980, void, GetNearestHole_OnPathComplete, (GetNearestHole * __this, Path_1 * p, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA478, GetNearestHole_OnPathComplete__MethodInfo); DO_APP_FUNC(0x007802D0, TaskStatus__Enum_1, GetNearestHole_OnUpdate, (GetNearestHole * __this, MethodInfo * method)); DO_APP_FUNC(0x007806E0, void, GetNearestHole_OnEnd, (GetNearestHole * __this, MethodInfo * method)); DO_APP_FUNC(0x00717F20, void, GetNearestHole_OnReset, (GetNearestHole * __this, MethodInfo * method)); @@ -23792,31 +27025,39 @@ DO_APP_FUNC(0x007159B0, void, GetNearestHole__ctor, (GetNearestHole * __this, Me DO_APP_FUNC(0x00780700, void, GetNearestHole_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GetNearestHole_c__ctor, (GetNearestHole_c * __this, MethodInfo * method)); DO_APP_FUNC(0x007807B0, InnHoleController *, GetNearestHole_c__OnStart_b__10_0, (GetNearestHole_c * __this, GameObject * h, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA568, GetNearestHole_c__OnStart_b__10_0__MethodInfo); DO_APP_FUNC(0x00780800, bool, GetNearestHole_c__OnStart_b__10_1, (GetNearestHole_c * __this, InnHoleController * h, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA578, GetNearestHole_c__OnStart_b__10_1__MethodInfo); DO_APP_FUNC(0x00780830, Vector3, GetNearestHole_c__OnStart_b__10_2, (GetNearestHole_c * __this, InnHoleController * h, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA550, GetNearestHole_c__OnStart_b__10_2__MethodInfo); DO_APP_FUNC(0x003BCD60, void, GetNearestHole_ConstructPath_d_11__ctor, (GetNearestHole_ConstructPath_d_11 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GetNearestHole_ConstructPath_d_11_System_IDisposable_Dispose, (GetNearestHole_ConstructPath_d_11 * __this, MethodInfo * method)); DO_APP_FUNC(0x007808C0, bool, GetNearestHole_ConstructPath_d_11_MoveNext, (GetNearestHole_ConstructPath_d_11 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, GetNearestHole_ConstructPath_d_11_System_Collections_Generic_IEnumerator_System_Object__get_Current, (GetNearestHole_ConstructPath_d_11 * __this, MethodInfo * method)); DO_APP_FUNC(0x00780B50, void, GetNearestHole_ConstructPath_d_11_System_Collections_IEnumerator_Reset, (GetNearestHole_ConstructPath_d_11 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA458, GetNearestHole_ConstructPath_d_11_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, GetNearestHole_ConstructPath_d_11_System_Collections_IEnumerator_get_Current, (GetNearestHole_ConstructPath_d_11 * __this, MethodInfo * method)); DO_APP_FUNC(0x00780BA0, void, GetRandomHidingSpot_OnAwake, (GetRandomHidingSpot * __this, MethodInfo * method)); DO_APP_FUNC(0x00780CE0, void, GetRandomHidingSpot_OnStart, (GetRandomHidingSpot * __this, MethodInfo * method)); DO_APP_FUNC(0x00781100, IEnumerator *, GetRandomHidingSpot_ConstructPath, (GetRandomHidingSpot * __this, MethodInfo * method)); DO_APP_FUNC(0x00474430, void, GetRandomHidingSpot_OnPathComplete, (GetRandomHidingSpot * __this, Path_1 * p, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA2D8, GetRandomHidingSpot_OnPathComplete__MethodInfo); DO_APP_FUNC(0x007811A0, TaskStatus__Enum_1, GetRandomHidingSpot_OnUpdate, (GetRandomHidingSpot * __this, MethodInfo * method)); DO_APP_FUNC(0x00781690, void, GetRandomHidingSpot_OnEnd, (GetRandomHidingSpot * __this, MethodInfo * method)); DO_APP_FUNC(0x007816B0, void, GetRandomHidingSpot_OnReset, (GetRandomHidingSpot * __this, MethodInfo * method)); DO_APP_FUNC(0x00781760, void, GetRandomHidingSpot__ctor, (GetRandomHidingSpot * __this, MethodInfo * method)); DO_APP_FUNC(0x00781850, bool, GetRandomHidingSpot__OnUpdate_b__15_0, (GetRandomHidingSpot * __this, List_1_UnityEngine_Vector3_ * path, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA378, GetRandomHidingSpot__OnUpdate_b__15_0__MethodInfo); DO_APP_FUNC(0x00781BD0, void, GetRandomHidingSpot_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GetRandomHidingSpot_c__ctor, (GetRandomHidingSpot_c * __this, MethodInfo * method)); DO_APP_FUNC(0x00781C80, Vector3, GetRandomHidingSpot_c__OnStart_b__12_0, (GetRandomHidingSpot_c * __this, GameObject * h, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA400, GetRandomHidingSpot_c__OnStart_b__12_0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, GetRandomHidingSpot_ConstructPath_d_13__ctor, (GetRandomHidingSpot_ConstructPath_d_13 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GetRandomHidingSpot_ConstructPath_d_13_System_IDisposable_Dispose, (GetRandomHidingSpot_ConstructPath_d_13 * __this, MethodInfo * method)); DO_APP_FUNC(0x00781DA0, bool, GetRandomHidingSpot_ConstructPath_d_13_MoveNext, (GetRandomHidingSpot_ConstructPath_d_13 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, GetRandomHidingSpot_ConstructPath_d_13_System_Collections_Generic_IEnumerator_System_Object__get_Current, (GetRandomHidingSpot_ConstructPath_d_13 * __this, MethodInfo * method)); DO_APP_FUNC(0x00782030, void, GetRandomHidingSpot_ConstructPath_d_13_System_Collections_IEnumerator_Reset, (GetRandomHidingSpot_ConstructPath_d_13 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA2B0, GetRandomHidingSpot_ConstructPath_d_13_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, GetRandomHidingSpot_ConstructPath_d_13_System_Collections_IEnumerator_get_Current, (GetRandomHidingSpot_ConstructPath_d_13 * __this, MethodInfo * method)); DO_APP_FUNC(0x00782080, void, GetValidHidingSpots_OnAwake, (GetValidHidingSpots * __this, MethodInfo * method)); DO_APP_FUNC(0x00782130, TaskStatus__Enum_1, GetValidHidingSpots_OnUpdate, (GetValidHidingSpots * __this, MethodInfo * method)); @@ -23824,6 +27065,7 @@ DO_APP_FUNC(0x0072C930, void, GetValidHidingSpots_OnReset, (GetValidHidingSpots DO_APP_FUNC(0x007159B0, void, GetValidHidingSpots__ctor, (GetValidHidingSpots * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GetValidHidingSpots_c_DisplayClass5_0__ctor, (GetValidHidingSpots_c_DisplayClass5_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00782430, bool, GetValidHidingSpots_c_DisplayClass5_0__OnUpdate_b__0, (GetValidHidingSpots_c_DisplayClass5_0 * __this, GameObject * h, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA240, GetValidHidingSpots_c_DisplayClass5_0__OnUpdate_b__0__MethodInfo); DO_APP_FUNC(0x00782530, void, UseHoleComplete_OnAwake, (UseHoleComplete * __this, MethodInfo * method)); DO_APP_FUNC(0x007826F0, TaskStatus__Enum_1, UseHoleComplete_OnUpdate, (UseHoleComplete * __this, MethodInfo * method)); DO_APP_FUNC(0x0071E9E0, void, UseHoleComplete_OnReset, (UseHoleComplete * __this, MethodInfo * method)); @@ -23841,21 +27083,26 @@ DO_APP_FUNC(0x007831F0, void, GetNearestPerch_OnStart, (GetNearestPerch * __this DO_APP_FUNC(0x00783A00, IEnumerator *, GetNearestPerch_ConstructPath, (GetNearestPerch * __this, MethodInfo * method)); DO_APP_FUNC(0x00783AA0, bool, GetNearestPerch_UseBackupMethod, (GetNearestPerch * __this, MethodInfo * method)); DO_APP_FUNC(0x006C4310, void, GetNearestPerch_OnPathComplete, (GetNearestPerch * __this, Path_1 * p, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9E68, GetNearestPerch_OnPathComplete__MethodInfo); DO_APP_FUNC(0x00783EE0, TaskStatus__Enum_1, GetNearestPerch_OnUpdate, (GetNearestPerch * __this, MethodInfo * method)); DO_APP_FUNC(0x00784130, void, GetNearestPerch_OnEnd, (GetNearestPerch * __this, MethodInfo * method)); DO_APP_FUNC(0x00727B40, void, GetNearestPerch_OnReset, (GetNearestPerch * __this, MethodInfo * method)); DO_APP_FUNC(0x007159B0, void, GetNearestPerch__ctor, (GetNearestPerch * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GetNearestPerch_c_DisplayClass9_0__ctor, (GetNearestPerch_c_DisplayClass9_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00784150, bool, GetNearestPerch_c_DisplayClass9_0__OnStart_b__1, (GetNearestPerch_c_DisplayClass9_0 * __this, CrowPerchController * p, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9FE8, GetNearestPerch_c_DisplayClass9_0__OnStart_b__1__MethodInfo); DO_APP_FUNC(0x00784320, void, GetNearestPerch_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GetNearestPerch_c__ctor, (GetNearestPerch_c * __this, MethodInfo * method)); DO_APP_FUNC(0x007843D0, CrowPerchController *, GetNearestPerch_c__OnStart_b__9_0, (GetNearestPerch_c * __this, GameObject * perch, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA020, GetNearestPerch_c__OnStart_b__9_0__MethodInfo); DO_APP_FUNC(0x00784420, Vector3, GetNearestPerch_c__OnStart_b__9_2, (GetNearestPerch_c * __this, CrowPerchController * perch, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9FD0, GetNearestPerch_c__OnStart_b__9_2__MethodInfo); DO_APP_FUNC(0x003BCD60, void, GetNearestPerch_ConstructPath_d_10__ctor, (GetNearestPerch_ConstructPath_d_10 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GetNearestPerch_ConstructPath_d_10_System_IDisposable_Dispose, (GetNearestPerch_ConstructPath_d_10 * __this, MethodInfo * method)); DO_APP_FUNC(0x00784500, bool, GetNearestPerch_ConstructPath_d_10_MoveNext, (GetNearestPerch_ConstructPath_d_10 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, GetNearestPerch_ConstructPath_d_10_System_Collections_Generic_IEnumerator_System_Object__get_Current, (GetNearestPerch_ConstructPath_d_10 * __this, MethodInfo * method)); DO_APP_FUNC(0x00784780, void, GetNearestPerch_ConstructPath_d_10_System_Collections_IEnumerator_Reset, (GetNearestPerch_ConstructPath_d_10 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9E80, GetNearestPerch_ConstructPath_d_10_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, GetNearestPerch_ConstructPath_d_10_System_Collections_IEnumerator_get_Current, (GetNearestPerch_ConstructPath_d_10 * __this, MethodInfo * method)); DO_APP_FUNC(0x007847D0, void, GetRandomAvailablePerch_OnAwake, (GetRandomAvailablePerch * __this, MethodInfo * method)); DO_APP_FUNC(0x00784900, TaskStatus__Enum_1, GetRandomAvailablePerch_OnUpdate, (GetRandomAvailablePerch * __this, MethodInfo * method)); @@ -23875,22 +27122,29 @@ DO_APP_FUNC(0x007856F0, void, GetRandomGameObject_OnAwake, (GetRandomGameObject DO_APP_FUNC(0x007858A0, void, GetRandomGameObject_OnStart, (GetRandomGameObject * __this, MethodInfo * method)); DO_APP_FUNC(0x00785D20, IEnumerator *, GetRandomGameObject_ConstructPath, (GetRandomGameObject * __this, MethodInfo * method)); DO_APP_FUNC(0x00474430, void, GetRandomGameObject_OnPathComplete, (GetRandomGameObject * __this, Path_1 * p, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9AF8, GetRandomGameObject_OnPathComplete__MethodInfo); DO_APP_FUNC(0x00785DC0, void, GetRandomGameObject_FilterByVectorDistance, (GetRandomGameObject * __this, MethodInfo * method)); DO_APP_FUNC(0x00786130, TaskStatus__Enum_1, GetRandomGameObject_OnUpdate, (GetRandomGameObject * __this, MethodInfo * method)); DO_APP_FUNC(0x00786860, void, GetRandomGameObject_OnReset, (GetRandomGameObject * __this, MethodInfo * method)); DO_APP_FUNC(0x007869F0, void, GetRandomGameObject__ctor, (GetRandomGameObject * __this, MethodInfo * method)); DO_APP_FUNC(0x00786B40, bool, GetRandomGameObject__FilterByVectorDistance_b__16_0, (GetRandomGameObject * __this, GameObject * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9CE8, GetRandomGameObject__FilterByVectorDistance_b__16_0__MethodInfo); DO_APP_FUNC(0x00786E30, bool, GetRandomGameObject__FilterByVectorDistance_b__16_1, (GetRandomGameObject * __this, GameObject * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9D00, GetRandomGameObject__FilterByVectorDistance_b__16_1__MethodInfo); DO_APP_FUNC(0x00787090, bool, GetRandomGameObject__OnUpdate_b__17_1, (GetRandomGameObject * __this, _f_AnonymousType0_2_System_Collections_Generic_List_1_System_Int32_ * entry, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9C48, GetRandomGameObject__OnUpdate_b__17_1__MethodInfo); DO_APP_FUNC(0x00787430, void, GetRandomGameObject_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GetRandomGameObject_c__ctor, (GetRandomGameObject_c * __this, MethodInfo * method)); DO_APP_FUNC(0x005D12C0, Vector3, GetRandomGameObject_c__OnStart_b__13_0, (GetRandomGameObject_c * __this, GameObject * go, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9D88, GetRandomGameObject_c__OnStart_b__13_0__MethodInfo); DO_APP_FUNC(0x007874E0, _f_AnonymousType0_2_System_Collections_Generic_List_1_System_Int32_ *, GetRandomGameObject_c__OnUpdate_b__17_0, (GetRandomGameObject_c * __this, List_1_UnityEngine_Vector3_ * vectorPath, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9C08, GetRandomGameObject_c__OnUpdate_b__17_0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, GetRandomGameObject_ConstructPath_d_14__ctor, (GetRandomGameObject_ConstructPath_d_14 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GetRandomGameObject_ConstructPath_d_14_System_IDisposable_Dispose, (GetRandomGameObject_ConstructPath_d_14 * __this, MethodInfo * method)); DO_APP_FUNC(0x007875A0, bool, GetRandomGameObject_ConstructPath_d_14_MoveNext, (GetRandomGameObject_ConstructPath_d_14 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, GetRandomGameObject_ConstructPath_d_14_System_Collections_Generic_IEnumerator_System_Object__get_Current, (GetRandomGameObject_ConstructPath_d_14 * __this, MethodInfo * method)); DO_APP_FUNC(0x00787830, void, GetRandomGameObject_ConstructPath_d_14_System_Collections_IEnumerator_Reset, (GetRandomGameObject_ConstructPath_d_14 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9AE0, GetRandomGameObject_ConstructPath_d_14_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, GetRandomGameObject_ConstructPath_d_14_System_Collections_IEnumerator_get_Current, (GetRandomGameObject_ConstructPath_d_14 * __this, MethodInfo * method)); DO_APP_FUNC(0x00787880, TaskStatus__Enum_1, GetRandomIntDataAnimation_OnUpdate, (GetRandomIntDataAnimation * __this, MethodInfo * method)); DO_APP_FUNC(0x00787B20, void, GetRandomIntDataAnimation_OnReset, (GetRandomIntDataAnimation * __this, MethodInfo * method)); @@ -23916,6 +27170,7 @@ DO_APP_FUNC(0x0078A6C0, TaskStatus__Enum_1, PlayerFlashlightOnMe_OnUpdate, (Play DO_APP_FUNC(0x0078B8F0, bool, PlayerFlashlightOnMe_IsPlayerFrying, (PlayerFlashlightOnMe * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x0078BB00, void, PlayerFlashlightOnMe_OnReset, (PlayerFlashlightOnMe * __this, MethodInfo * method)); DO_APP_FUNC(0x0078BB90, void, PlayerFlashlightOnMe_OnPlayerDetached, (PlayerFlashlightOnMe * __this, BoltEntity * entity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9940, PlayerFlashlightOnMe_OnPlayerDetached__MethodInfo); DO_APP_FUNC(0x0078C030, void, PlayerFlashlightOnMe_ResetCaches, (PlayerFlashlightOnMe * __this, int32_t i, MethodInfo * method)); DO_APP_FUNC(0x0078C060, void, PlayerFlashlightOnMe_OnBehaviorComplete, (PlayerFlashlightOnMe * __this, MethodInfo * method)); DO_APP_FUNC(0x0078C1F0, void, PlayerFlashlightOnMe__ctor, (PlayerFlashlightOnMe * __this, MethodInfo * method)); @@ -23925,6 +27180,7 @@ DO_APP_FUNC(0x0078CCB0, bool, PlayerTouchingMe_IsPlayerCrawling, (PlayerTouching DO_APP_FUNC(0x0078CEC0, bool, PlayerTouchingMe_IsBeingKnockedOut, (PlayerTouchingMe * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x0078D160, void, PlayerTouchingMe_OnReset, (PlayerTouchingMe * __this, MethodInfo * method)); DO_APP_FUNC(0x0078D250, void, PlayerTouchingMe_OnPlayerDetached, (PlayerTouchingMe * __this, BoltEntity * entity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9828, PlayerTouchingMe_OnPlayerDetached__MethodInfo); DO_APP_FUNC(0x0078D6F0, void, PlayerTouchingMe_ResetCaches, (PlayerTouchingMe * __this, int32_t i, MethodInfo * method)); DO_APP_FUNC(0x0078D720, void, PlayerTouchingMe_OnBehaviorComplete, (PlayerTouchingMe * __this, MethodInfo * method)); DO_APP_FUNC(0x0078D8B0, void, PlayerTouchingMe__ctor, (PlayerTouchingMe * __this, MethodInfo * method)); @@ -24311,6 +27567,7 @@ DO_APP_FUNC(0x003AE050, void, SetBoolParameter_ResetValue_d_9_System_IDisposable DO_APP_FUNC(0x007ABDE0, bool, SetBoolParameter_ResetValue_d_9_MoveNext, (SetBoolParameter_ResetValue_d_9 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SetBoolParameter_ResetValue_d_9_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SetBoolParameter_ResetValue_d_9 * __this, MethodInfo * method)); DO_APP_FUNC(0x007ABE90, void, SetBoolParameter_ResetValue_d_9_System_Collections_IEnumerator_Reset, (SetBoolParameter_ResetValue_d_9 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC380, SetBoolParameter_ResetValue_d_9_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SetBoolParameter_ResetValue_d_9_System_Collections_IEnumerator_get_Current, (SetBoolParameter_ResetValue_d_9 * __this, MethodInfo * method)); DO_APP_FUNC(0x007ABEE0, void, SetFloatParameter_OnStart, (SetFloatParameter * __this, MethodInfo * method)); DO_APP_FUNC(0x007AC1B0, TaskStatus__Enum_1, SetFloatParameter_OnUpdate, (SetFloatParameter * __this, MethodInfo * method)); @@ -24322,6 +27579,7 @@ DO_APP_FUNC(0x003AE050, void, SetFloatParameter_ResetValue_d_9_System_IDisposabl DO_APP_FUNC(0x007AC770, bool, SetFloatParameter_ResetValue_d_9_MoveNext, (SetFloatParameter_ResetValue_d_9 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SetFloatParameter_ResetValue_d_9_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SetFloatParameter_ResetValue_d_9 * __this, MethodInfo * method)); DO_APP_FUNC(0x007AC820, void, SetFloatParameter_ResetValue_d_9_System_Collections_IEnumerator_Reset, (SetFloatParameter_ResetValue_d_9 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC338, SetFloatParameter_ResetValue_d_9_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SetFloatParameter_ResetValue_d_9_System_Collections_IEnumerator_get_Current, (SetFloatParameter_ResetValue_d_9 * __this, MethodInfo * method)); DO_APP_FUNC(0x007AC870, void, SetIntegerParameter_OnStart, (SetIntegerParameter * __this, MethodInfo * method)); DO_APP_FUNC(0x007ACB40, TaskStatus__Enum_1, SetIntegerParameter_OnUpdate, (SetIntegerParameter * __this, MethodInfo * method)); @@ -24333,6 +27591,7 @@ DO_APP_FUNC(0x003AE050, void, SetIntegerParameter_ResetValue_d_9_System_IDisposa DO_APP_FUNC(0x007AD0F0, bool, SetIntegerParameter_ResetValue_d_9_MoveNext, (SetIntegerParameter_ResetValue_d_9 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SetIntegerParameter_ResetValue_d_9_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SetIntegerParameter_ResetValue_d_9 * __this, MethodInfo * method)); DO_APP_FUNC(0x007AD1A0, void, SetIntegerParameter_ResetValue_d_9_System_Collections_IEnumerator_Reset, (SetIntegerParameter_ResetValue_d_9 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC310, SetIntegerParameter_ResetValue_d_9_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SetIntegerParameter_ResetValue_d_9_System_Collections_IEnumerator_get_Current, (SetIntegerParameter_ResetValue_d_9 * __this, MethodInfo * method)); DO_APP_FUNC(0x007AD1F0, void, SetLayerWeight_OnStart, (SetLayerWeight * __this, MethodInfo * method)); DO_APP_FUNC(0x007AD4C0, TaskStatus__Enum_1, SetLayerWeight_OnUpdate, (SetLayerWeight * __this, MethodInfo * method)); @@ -24452,7 +27711,9 @@ DO_APP_FUNC(0x007B6550, void, HasTakenDamage_OnStart, (HasTakenDamage * __this, DO_APP_FUNC(0x007B6B10, TaskStatus__Enum_1, HasTakenDamage_OnUpdate, (HasTakenDamage * __this, MethodInfo * method)); DO_APP_FUNC(0x007B6BD0, void, HasTakenDamage_OnEnd, (HasTakenDamage * __this, MethodInfo * method)); DO_APP_FUNC(0x007B6C40, void, HasTakenDamage_OnDamage, (HasTakenDamage * __this, float amount, Vector3 position, Vector3 force, GameObject * attacker, Collider * hitCollider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBF28, HasTakenDamage_OnDamage__MethodInfo); DO_APP_FUNC(0x007B6CE0, void, HasTakenDamage_OnDeath, (HasTakenDamage * __this, Vector3 position, Vector3 force, GameObject * attacker, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBF38, HasTakenDamage_OnDeath__MethodInfo); DO_APP_FUNC(0x0072C930, void, HasTakenDamage_OnReset, (HasTakenDamage * __this, MethodInfo * method)); DO_APP_FUNC(0x0071C650, void, HasTakenDamage__ctor, (HasTakenDamage * __this, MethodInfo * method)); DO_APP_FUNC(0x007B6CF0, void, Heal_OnStart, (Heal * __this, MethodInfo * method)); @@ -24555,13 +27816,13 @@ DO_APP_FUNC(0x007C09A0, GameObject *, MovementUtility_WithinSight, (Transform * DO_APP_FUNC(0x007C0D90, GameObject *, MovementUtility_WithinSight2D, (Transform * transform, Vector3 positionOffset, float fieldOfViewAngle, float viewDistance, Collider2D__Array * overlapColliders, LayerMask objectLayerMask, Vector3 targetOffset, float angleOffset2D, LayerMask ignoreLayerMask, bool drawDebugRay, MethodInfo * method)); DO_APP_FUNC(0x007C1190, GameObject *, MovementUtility_WithinSight_1, (Transform * transform, Vector3 positionOffset, float fieldOfViewAngle, float viewDistance, GameObject * targetObject, Vector3 targetOffset, LayerMask ignoreLayerMask, bool useTargetBone, HumanBodyBones__Enum targetBone, bool drawDebugRay, MethodInfo * method)); DO_APP_FUNC(0x007C12D0, GameObject *, MovementUtility_WithinSight2D_1, (Transform * transform, Vector3 positionOffset, float fieldOfViewAngle, float viewDistance, GameObject * targetObject, Vector3 targetOffset, float angleOffset2D, LayerMask ignoreLayerMask, bool useTargetBone, HumanBodyBones__Enum targetBone, bool drawDebugRay, MethodInfo * method)); -DO_APP_FUNC(0x007C1410, GameObject *, MovementUtility_WithinSight_2, (Transform * transform, Vector3 positionOffset, float fieldOfViewAngle, float viewDistance, GameObject * targetObject, Vector3 targetOffset, bool usePhysics2D, float angleOffset2D, float angle, int32_t ignoreLayerMask, bool useTargetBone, HumanBodyBones__Enum targetBone, bool drawDebugRay, MethodInfo * method)); +DO_APP_FUNC(0x007C1410, GameObject *, MovementUtility_WithinSight_2, (Transform * transform, Vector3 positionOffset, float fieldOfViewAngle, float viewDistance, GameObject * targetObject, Vector3 targetOffset, bool usePhysics2D, float angleOffset2D, float * angle, int32_t ignoreLayerMask, bool useTargetBone, HumanBodyBones__Enum targetBone, bool drawDebugRay, MethodInfo * method)); DO_APP_FUNC(0x007C1E40, Transform *, MovementUtility_LineOfSight, (Transform * transform, Vector3 positionOffset, GameObject * targetObject, Vector3 targetOffset, bool usePhysics2D, int32_t ignoreLayerMask, bool drawDebugRay, MethodInfo * method)); DO_APP_FUNC(0x007C2250, bool, MovementUtility_IsAncestor, (Transform * target, Transform * hitTransform, MethodInfo * method)); DO_APP_FUNC(0x007C2320, GameObject *, MovementUtility_WithinHearingRange, (Transform * transform, Vector3 positionOffset, float audibilityThreshold, float hearingRadius, Collider__Array * overlapColliders, LayerMask objectLayerMask, MethodInfo * method)); DO_APP_FUNC(0x007C2660, GameObject *, MovementUtility_WithinHearingRange2D, (Transform * transform, Vector3 positionOffset, float audibilityThreshold, float hearingRadius, Collider2D__Array * overlapColliders, LayerMask objectLayerMask, MethodInfo * method)); DO_APP_FUNC(0x007C29C0, GameObject *, MovementUtility_WithinHearingRange_1, (Transform * transform, Vector3 positionOffset, float audibilityThreshold, GameObject * targetObject, MethodInfo * method)); -DO_APP_FUNC(0x007C2A70, GameObject *, MovementUtility_WithinHearingRange_2, (Transform * transform, Vector3 positionOffset, float audibilityThreshold, GameObject * targetObject, float audibility, MethodInfo * method)); +DO_APP_FUNC(0x007C2A70, GameObject *, MovementUtility_WithinHearingRange_2, (Transform * transform, Vector3 positionOffset, float audibilityThreshold, GameObject * targetObject, float * audibility, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, MovementUtility_DrawLineOfSight, (Transform * transform, Vector3 positionOffset, float fieldOfViewAngle, float angleOffset, float viewDistance, bool usePhysics2D, MethodInfo * method)); DO_APP_FUNC(0x007C2EA0, void, MovementUtility_ClearCache, (MethodInfo * method)); DO_APP_FUNC(0x007C2F50, void, MovementUtility__cctor, (MethodInfo * method)); @@ -24593,7 +27854,7 @@ DO_APP_FUNC(0x007C9960, bool, Flee_SetDestination, (Flee * __this, Vector3 desti DO_APP_FUNC(0x007C9A60, void, Flee_OnReset, (Flee * __this, MethodInfo * method)); DO_APP_FUNC(0x007C9BB0, void, Flee__ctor, (Flee * __this, MethodInfo * method)); DO_APP_FUNC(0x007C9CA0, TaskStatus__Enum_1, Flock_OnUpdate, (Flock * __this, MethodInfo * method)); -DO_APP_FUNC(0x007CA160, void, Flock_DetermineFlockParameters, (Flock * __this, int32_t index, Vector3 alignment, Vector3 cohesion, Vector3 separation, MethodInfo * method)); +DO_APP_FUNC(0x007CA160, void, Flock_DetermineFlockParameters, (Flock * __this, int32_t index, Vector3 * alignment, Vector3 * cohesion, Vector3 * separation, MethodInfo * method)); DO_APP_FUNC(0x007CA7F0, void, Flock_OnReset, (Flock * __this, MethodInfo * method)); DO_APP_FUNC(0x007CAA50, void, Flock__ctor, (Flock * __this, MethodInfo * method)); DO_APP_FUNC(0x007CAC60, void, Follow_OnStart, (Follow * __this, MethodInfo * method)); @@ -24623,7 +27884,7 @@ DO_APP_FUNC(0x007CE2A0, bool, NavMeshMovement_SetDestination, (NavMeshMovement * DO_APP_FUNC(0x007CE380, void, NavMeshMovement_UpdateRotation, (NavMeshMovement * __this, bool update, MethodInfo * method)); DO_APP_FUNC(0x007CE450, bool, NavMeshMovement_HasPath, (NavMeshMovement * __this, MethodInfo * method)); DO_APP_FUNC(0x007CE5C0, Vector3, NavMeshMovement_Velocity, (NavMeshMovement * __this, MethodInfo * method)); -DO_APP_FUNC(0x007CE650, bool, NavMeshMovement_SamplePosition, (NavMeshMovement * __this, Vector3 position, MethodInfo * method)); +DO_APP_FUNC(0x007CE650, bool, NavMeshMovement_SamplePosition, (NavMeshMovement * __this, Vector3 * position, MethodInfo * method)); DO_APP_FUNC(0x007CE780, bool, NavMeshMovement_HasArrived, (NavMeshMovement * __this, MethodInfo * method)); DO_APP_FUNC(0x007CE8D0, void, NavMeshMovement_Stop, (NavMeshMovement * __this, MethodInfo * method)); DO_APP_FUNC(0x007CE9A0, void, NavMeshMovement_OnEnd, (NavMeshMovement * __this, MethodInfo * method)); @@ -24701,6 +27962,7 @@ DO_APP_FUNC(0x007DD4C0, void, GhostGetWanderDestination__ctor, (GhostGetWanderDe DO_APP_FUNC(0x007DD670, void, GhostGetWanderDestination_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GhostGetWanderDestination_c__ctor, (GhostGetWanderDestination_c * __this, MethodInfo * method)); DO_APP_FUNC(0x007DD720, BoxCollider *, GhostGetWanderDestination_c__OnAwake_b__11_0, (GhostGetWanderDestination_c * __this, GameObject * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED198, GhostGetWanderDestination_c__OnAwake_b__11_0__MethodInfo); DO_APP_FUNC(0x007DD770, void, GhostMoveTowards_OnAwake, (GhostMoveTowards * __this, MethodInfo * method)); DO_APP_FUNC(0x007DD820, void, GhostMoveTowards_OnFixedUpdate, (GhostMoveTowards * __this, MethodInfo * method)); DO_APP_FUNC(0x007DDF10, TaskStatus__Enum_1, GhostMoveTowards_OnUpdate, (GhostMoveTowards * __this, MethodInfo * method)); @@ -24714,6 +27976,7 @@ DO_APP_FUNC(0x007E0C00, TaskStatus__Enum_1, GhostPursue_OnUpdate, (GhostPursue * DO_APP_FUNC(0x007E1040, void, GhostPursue_OnEnd, (GhostPursue * __this, MethodInfo * method)); DO_APP_FUNC(0x007E10E0, Vector3, GhostPursue_Target, (GhostPursue * __this, MethodInfo * method)); DO_APP_FUNC(0x007E1460, void, GhostPursue_OnBurnGoat, (GhostPursue * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED168, GhostPursue_OnBurnGoat__MethodInfo); DO_APP_FUNC(0x007E15B0, void, GhostPursue_OnReset, (GhostPursue * __this, MethodInfo * method)); DO_APP_FUNC(0x007E16A0, void, GhostPursue_OnBehaviorComplete, (GhostPursue * __this, MethodInfo * method)); DO_APP_FUNC(0x007E1770, void, GhostPursue__ctor, (GhostPursue * __this, MethodInfo * method)); @@ -24739,6 +28002,7 @@ DO_APP_FUNC(0x007E54D0, bool, CanHearOtherPlayer_IsPlayerMoving, (CanHearOtherPl DO_APP_FUNC(0x007E57F0, void, CanHearOtherPlayer_OnReset, (CanHearOtherPlayer * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CanHearOtherPlayer_OnDrawGizmos, (CanHearOtherPlayer * __this, MethodInfo * method)); DO_APP_FUNC(0x007E59E0, void, CanHearOtherPlayer_OnPlayerDetached, (CanHearOtherPlayer * __this, BoltEntity * entity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED140, CanHearOtherPlayer_OnPlayerDetached__MethodInfo); DO_APP_FUNC(0x007E5E70, void, CanHearOtherPlayer_ResetCaches, (CanHearOtherPlayer * __this, int32_t i, MethodInfo * method)); DO_APP_FUNC(0x007E5F50, void, CanHearOtherPlayer_OnBehaviorComplete, (CanHearOtherPlayer * __this, MethodInfo * method)); DO_APP_FUNC(0x007E6100, void, CanHearOtherPlayer__ctor, (CanHearOtherPlayer * __this, MethodInfo * method)); @@ -24754,6 +28018,7 @@ DO_APP_FUNC(0x007E8B10, bool, CanHearPlayer_IsPlayerGrounded, (CanHearPlayer * _ DO_APP_FUNC(0x007E8DB0, void, CanHearPlayer_OnReset, (CanHearPlayer * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CanHearPlayer_OnDrawGizmos, (CanHearPlayer * __this, MethodInfo * method)); DO_APP_FUNC(0x007E9050, void, CanHearPlayer_OnPlayerDetached, (CanHearPlayer * __this, BoltEntity * entity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED120, CanHearPlayer_OnPlayerDetached__MethodInfo); DO_APP_FUNC(0x007E94E0, void, CanHearPlayer_OnBehaviorComplete, (CanHearPlayer * __this, MethodInfo * method)); DO_APP_FUNC(0x007E9690, void, CanHearPlayer_ResetCaches, (CanHearPlayer * __this, int32_t i, MethodInfo * method)); DO_APP_FUNC(0x007E9770, void, CanHearPlayer__ctor, (CanHearPlayer * __this, MethodInfo * method)); @@ -24774,6 +28039,7 @@ DO_APP_FUNC(0x007EF490, bool, CanSeePlayer_IsPlayerInsideVent_1, (CanSeePlayer * DO_APP_FUNC(0x007EF710, void, CanSeePlayer_OnReset, (CanSeePlayer * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CanSeePlayer_OnDrawGizmos, (CanSeePlayer * __this, MethodInfo * method)); DO_APP_FUNC(0x007EFAE0, void, CanSeePlayer_OnPlayerDetached, (CanSeePlayer * __this, BoltEntity * entity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED110, CanSeePlayer_OnPlayerDetached__MethodInfo); DO_APP_FUNC(0x007EFF70, void, CanSeePlayer_ResetCaches, (CanSeePlayer * __this, int32_t i, MethodInfo * method)); DO_APP_FUNC(0x007F0000, void, CanSeePlayer_OnBehaviorComplete, (CanSeePlayer * __this, MethodInfo * method)); DO_APP_FUNC(0x007F0230, void, CanSeePlayer__ctor, (CanSeePlayer * __this, MethodInfo * method)); @@ -24823,7 +28089,7 @@ DO_APP_FUNC(0x007F8400, Vector3, Flee_1_Target, (Flee_1 * __this, MethodInfo * m DO_APP_FUNC(0x007F8780, void, Flee_1_OnReset, (Flee_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x007F88D0, void, Flee_1__ctor, (Flee_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x007F89C0, TaskStatus__Enum_1, Flock_1_OnUpdate, (Flock_1 * __this, MethodInfo * method)); -DO_APP_FUNC(0x007F8E80, void, Flock_1_DetermineFlockParameters, (Flock_1 * __this, int32_t index, Vector3 alignment, Vector3 cohesion, Vector3 separation, MethodInfo * method)); +DO_APP_FUNC(0x007F8E80, void, Flock_1_DetermineFlockParameters, (Flock_1 * __this, int32_t index, Vector3 * alignment, Vector3 * cohesion, Vector3 * separation, MethodInfo * method)); DO_APP_FUNC(0x007F9680, void, Flock_1_OnReset, (Flock_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x007F9890, void, Flock_1__ctor, (Flock_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x0081E900, void, Follow_1_OnStart, (Follow_1 * __this, MethodInfo * method)); @@ -24841,7 +28107,7 @@ DO_APP_FUNC(0x00820480, void, IAstarAIMovement_OnStart, (IAstarAIMovement * __th DO_APP_FUNC(0x00820540, bool, IAstarAIMovement_SetDestination, (IAstarAIMovement * __this, Vector3 target, MethodInfo * method)); DO_APP_FUNC(0x00820760, Vector3, IAstarAIMovement_Velocity, (IAstarAIMovement * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, IAstarAIMovement_UpdateRotation, (IAstarAIMovement * __this, bool update, MethodInfo * method)); -DO_APP_FUNC(0x008207E0, Vector3, IAstarAIMovement_SamplePosition, (IAstarAIMovement * __this, Vector3 position, bool valid, MethodInfo * method)); +DO_APP_FUNC(0x008207E0, Vector3, IAstarAIMovement_SamplePosition, (IAstarAIMovement * __this, Vector3 position, bool * valid, MethodInfo * method)); DO_APP_FUNC(0x00820970, bool, IAstarAIMovement_HasPath, (IAstarAIMovement * __this, MethodInfo * method)); DO_APP_FUNC(0x00820B90, void, IAstarAIMovement_Stop, (IAstarAIMovement * __this, MethodInfo * method)); DO_APP_FUNC(0x00820CF0, bool, IAstarAIMovement_HasArrived, (IAstarAIMovement * __this, MethodInfo * method)); @@ -24908,6 +28174,7 @@ DO_APP_FUNC(0x0082C370, void, AnnaWander_SetManualMove, (AnnaWander * __this, bo DO_APP_FUNC(0x0082C430, bool, AnnaWander_TrySetTarget, (AnnaWander * __this, bool isStuck, MethodInfo * method)); DO_APP_FUNC(0x0082E420, void, AnnaWander_OnReset, (AnnaWander * __this, MethodInfo * method)); DO_APP_FUNC(0x0082E690, void, AnnaWander_OnBurnGoat, (AnnaWander * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEE610, AnnaWander_OnBurnGoat__MethodInfo); DO_APP_FUNC(0x0082EA30, IEnumerator *, AnnaWander_SetGoatBurntDuringEnrage, (AnnaWander * __this, float delay, MethodInfo * method)); DO_APP_FUNC(0x0082EAE0, void, AnnaWander_OnEnd, (AnnaWander * __this, MethodInfo * method)); DO_APP_FUNC(0x0082ECF0, void, AnnaWander_OnBehaviorComplete, (AnnaWander * __this, MethodInfo * method)); @@ -24917,6 +28184,7 @@ DO_APP_FUNC(0x003AE050, void, AnnaWander_SetGoatBurntDuringEnrage_d_62_System_ID DO_APP_FUNC(0x0082F680, bool, AnnaWander_SetGoatBurntDuringEnrage_d_62_MoveNext, (AnnaWander_SetGoatBurntDuringEnrage_d_62 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, AnnaWander_SetGoatBurntDuringEnrage_d_62_System_Collections_Generic_IEnumerator_System_Object__get_Current, (AnnaWander_SetGoatBurntDuringEnrage_d_62 * __this, MethodInfo * method)); DO_APP_FUNC(0x0082F9C0, void, AnnaWander_SetGoatBurntDuringEnrage_d_62_System_Collections_IEnumerator_Reset, (AnnaWander_SetGoatBurntDuringEnrage_d_62 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEE5C8, AnnaWander_SetGoatBurntDuringEnrage_d_62_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, AnnaWander_SetGoatBurntDuringEnrage_d_62_System_Collections_IEnumerator_get_Current, (AnnaWander_SetGoatBurntDuringEnrage_d_62 * __this, MethodInfo * method)); DO_APP_FUNC(0x0082FA10, void, BasicEnemyPursue_OnAwake, (BasicEnemyPursue * __this, MethodInfo * method)); DO_APP_FUNC(0x0082FBC0, void, BasicEnemyPursue_OnStart, (BasicEnemyPursue * __this, MethodInfo * method)); @@ -24929,6 +28197,7 @@ DO_APP_FUNC(0x00830DB0, void, Charge_OnStart, (Charge * __this, MethodInfo * met DO_APP_FUNC(0x00831310, TaskStatus__Enum_1, Charge_OnUpdate, (Charge * __this, MethodInfo * method)); DO_APP_FUNC(0x008320D0, Vector3, Charge_GetChargeDestination, (Charge * __this, MethodInfo * method)); DO_APP_FUNC(0x00832620, void, Charge_OnPathComplete, (Charge * __this, Path_1 * newPath, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEE5B0, Charge_OnPathComplete__MethodInfo); DO_APP_FUNC(0x008329C0, void, Charge_SetDestination, (Charge * __this, MethodInfo * method)); DO_APP_FUNC(0x00823810, void, Charge_OnReset, (Charge * __this, MethodInfo * method)); DO_APP_FUNC(0x00832B70, void, Charge_OnEnd, (Charge * __this, MethodInfo * method)); @@ -24939,8 +28208,10 @@ DO_APP_FUNC(0x00833AE0, TaskStatus__Enum_1, DemonPursue_OnUpdate, (DemonPursue * DO_APP_FUNC(0x00834590, Vector3, DemonPursue_Target, (DemonPursue * __this, MethodInfo * method)); DO_APP_FUNC(0x00823810, void, DemonPursue_OnReset, (DemonPursue * __this, MethodInfo * method)); DO_APP_FUNC(0x00834A80, void, DemonPursue_OnBurnGoat, (DemonPursue * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEE560, DemonPursue_OnBurnGoat__MethodInfo); DO_APP_FUNC(0x00834AB0, void, DemonPursue_UpdateSpeed, (DemonPursue * __this, MethodInfo * method)); DO_APP_FUNC(0x00834EB0, void, DemonPursue_OnDemonFrying, (DemonPursue * __this, bool frying, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEE558, DemonPursue_OnDemonFrying__MethodInfo); DO_APP_FUNC(0x008350A0, void, DemonPursue_OnBehaviorComplete, (DemonPursue * __this, MethodInfo * method)); DO_APP_FUNC(0x00835200, void, DemonPursue_OnEnd, (DemonPursue * __this, MethodInfo * method)); DO_APP_FUNC(0x00823960, void, DemonPursue__ctor, (DemonPursue * __this, MethodInfo * method)); @@ -25012,10 +28283,10 @@ DO_APP_FUNC(0x00840310, Material *, AmplifyOcclusionCommon_CreateMaterialWithSha DO_APP_FUNC(0x00840570, int32_t, AmplifyOcclusionCommon_SafeAllocateTemporaryRT, (CommandBuffer * cb, String * propertyName, int32_t width, int32_t height, RenderTextureFormat__Enum format, RenderTextureReadWrite__Enum readWrite, FilterMode__Enum filterMode, MethodInfo * method)); DO_APP_FUNC(0x00840650, void, AmplifyOcclusionCommon_SafeReleaseTemporaryRT, (CommandBuffer * cb, int32_t id, MethodInfo * method)); DO_APP_FUNC(0x008406C0, RenderTexture *, AmplifyOcclusionCommon_SafeAllocateRT, (String * name, int32_t width, int32_t height, RenderTextureFormat__Enum format, RenderTextureReadWrite__Enum readWrite, FilterMode__Enum filterMode, int32_t antiAliasing, bool aUseMipMap, MethodInfo * method)); -DO_APP_FUNC(0x00840970, void, AmplifyOcclusionCommon_SafeReleaseRT, (RenderTexture * rt, MethodInfo * method)); +DO_APP_FUNC(0x00840970, void, AmplifyOcclusionCommon_SafeReleaseRT, (RenderTexture * * rt, MethodInfo * method)); DO_APP_FUNC(0x00840B70, bool, AmplifyOcclusionCommon_IsStereoSinglePassEnabled, (Camera * aCamera, MethodInfo * method)); DO_APP_FUNC(0x00840C40, bool, AmplifyOcclusionCommon_IsStereoMultiPassEnabled, (Camera * aCamera, MethodInfo * method)); -DO_APP_FUNC(0x00840D10, void, AmplifyOcclusionCommon_UpdateGlobalShaderConstants, (CommandBuffer * cb, TargetDesc aTarget, Camera * aCamera, bool isDownsample, bool isFilterDownsample, MethodInfo * method)); +DO_APP_FUNC(0x00840D10, void, AmplifyOcclusionCommon_UpdateGlobalShaderConstants, (CommandBuffer * cb, TargetDesc * aTarget, Camera * aCamera, bool isDownsample, bool isFilterDownsample, MethodInfo * method)); DO_APP_FUNC(0x00841300, void, AmplifyOcclusionCommon__cctor, (MethodInfo * method)); DO_APP_FUNC(0x008414B0, void, AmplifyOcclusionViewProjMatrix_UpdateGlobalShaderConstants_Matrices, (AmplifyOcclusionViewProjMatrix * __this, CommandBuffer * cb, Camera * aCamera, bool isUsingTemporalFilter, MethodInfo * method)); DO_APP_FUNC(0x00842660, void, AmplifyOcclusionViewProjMatrix__ctor, (AmplifyOcclusionViewProjMatrix * __this, MethodInfo * method)); @@ -25030,36 +28301,36 @@ DO_APP_FUNC(0x00843BE0, VersionInfo *, VersionInfo_Current, (MethodInfo * method DO_APP_FUNC(0x00843C30, bool, VersionInfo_Matches, (VersionInfo * version, MethodInfo * method)); DO_APP_FUNC(0x00843C60, uint32_t, _PrivateImplementationDetails__1_ComputeStringHash, (String * s, MethodInfo * method)); DO_APP_FUNC(0x0232E6E0, bool, Interop_Crypt32_CertFreeCertificateContext, (void * pCertContext, MethodInfo * method)); -DO_APP_FUNC(0x0232E770, bool, Interop_Crypt32_CertVerifyCertificateChainPolicy, (void * pszPolicyOID, SafeX509ChainHandle * pChainContext, Interop_Crypt32_CERT_CHAIN_POLICY_PARA pPolicyPara, Interop_Crypt32_CERT_CHAIN_POLICY_STATUS pPolicyStatus, MethodInfo * method)); +DO_APP_FUNC(0x0232E770, bool, Interop_Crypt32_CertVerifyCertificateChainPolicy, (void * pszPolicyOID, SafeX509ChainHandle * pChainContext, Interop_Crypt32_CERT_CHAIN_POLICY_PARA * pPolicyPara, Interop_Crypt32_CERT_CHAIN_POLICY_STATUS * pPolicyStatus, MethodInfo * method)); DO_APP_FUNC(0x0232E870, Byte__Array *, Interop_SecPkgContext_ApplicationProtocol_get_Protocol, (Interop_SecPkgContext_ApplicationProtocol * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Interop_SecPkgContext_ApplicationProtocol__ctor, (Interop_SecPkgContext_ApplicationProtocol * __this, MethodInfo * method)); DO_APP_FUNC(0x0232E930, bool, Interop_Kernel32_1_CloseHandle, (void * handle, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Interop_Kernel32_1__ctor, (Interop_Kernel32_1 * __this, MethodInfo * method)); -DO_APP_FUNC(0x0232E9C0, int32_t, Interop_SspiCli_EncryptMessage, (Interop_SspiCli_CredHandle contextHandle, uint32_t qualityOfProtection, Interop_SspiCli_SecBufferDesc inputOutput, uint32_t sequenceNumber, MethodInfo * method)); -DO_APP_FUNC(0x0232EA70, int32_t, Interop_SspiCli_DecryptMessage, (Interop_SspiCli_CredHandle contextHandle, Interop_SspiCli_SecBufferDesc inputOutput, uint32_t sequenceNumber, uint32_t * qualityOfProtection, MethodInfo * method)); -DO_APP_FUNC(0x0232EB20, int32_t, Interop_SspiCli_QuerySecurityContextToken, (Interop_SspiCli_CredHandle phContext, SecurityContextTokenHandle * handle, MethodInfo * method)); +DO_APP_FUNC(0x0232E9C0, int32_t, Interop_SspiCli_EncryptMessage, (Interop_SspiCli_CredHandle * contextHandle, uint32_t qualityOfProtection, Interop_SspiCli_SecBufferDesc * inputOutput, uint32_t sequenceNumber, MethodInfo * method)); +DO_APP_FUNC(0x0232EA70, int32_t, Interop_SspiCli_DecryptMessage, (Interop_SspiCli_CredHandle * contextHandle, Interop_SspiCli_SecBufferDesc * inputOutput, uint32_t sequenceNumber, uint32_t * qualityOfProtection, MethodInfo * method)); +DO_APP_FUNC(0x0232EB20, int32_t, Interop_SspiCli_QuerySecurityContextToken, (Interop_SspiCli_CredHandle * phContext, SecurityContextTokenHandle * * handle, MethodInfo * method)); DO_APP_FUNC(0x0232EB40, int32_t, Interop_SspiCli_FreeContextBuffer, (void * contextBuffer, MethodInfo * method)); -DO_APP_FUNC(0x0232EBD0, int32_t, Interop_SspiCli_FreeCredentialsHandle, (Interop_SspiCli_CredHandle handlePtr, MethodInfo * method)); -DO_APP_FUNC(0x0232EC60, int32_t, Interop_SspiCli_DeleteSecurityContext, (Interop_SspiCli_CredHandle handlePtr, MethodInfo * method)); -DO_APP_FUNC(0x0232ECF0, int32_t, Interop_SspiCli_AcceptSecurityContext, (Interop_SspiCli_CredHandle credentialHandle, Void * inContextPtr, Interop_SspiCli_SecBufferDesc * inputBuffer, Interop_SspiCli_ContextFlags__Enum inFlags, Interop_SspiCli_Endianness__Enum endianness, Interop_SspiCli_CredHandle outContextPtr, Interop_SspiCli_SecBufferDesc outputBuffer, Interop_SspiCli_ContextFlags__Enum attributes, int64_t timeStamp, MethodInfo * method)); -DO_APP_FUNC(0x0232EDF0, int32_t, Interop_SspiCli_QueryContextAttributesW, (Interop_SspiCli_CredHandle contextHandle, Interop_SspiCli_ContextAttribute__Enum attribute, Void * buffer, MethodInfo * method)); -DO_APP_FUNC(0x0232EE90, int32_t, Interop_SspiCli_SetContextAttributesW, (Interop_SspiCli_CredHandle contextHandle, Interop_SspiCli_ContextAttribute__Enum attribute, Byte__Array * buffer, int32_t bufferSize, MethodInfo * method)); -DO_APP_FUNC(0x0232EF50, int32_t, Interop_SspiCli_EnumerateSecurityPackagesW, (int32_t pkgnum, SafeFreeContextBuffer_SECURITY * handle, MethodInfo * method)); -DO_APP_FUNC(0x0232F080, int32_t, Interop_SspiCli_AcquireCredentialsHandleW, (String * principal, String * moduleName, int32_t usage, Void * logonID, Interop_SspiCli_SEC_WINNT_AUTH_IDENTITY_W authdata, Void * keyCallback, Void * keyArgument, Interop_SspiCli_CredHandle handlePtr, int64_t timeStamp, MethodInfo * method)); -DO_APP_FUNC(0x0232F2D0, int32_t, Interop_SspiCli_AcquireCredentialsHandleW_1, (String * principal, String * moduleName, int32_t usage, Void * logonID, void * zero, Void * keyCallback, Void * keyArgument, Interop_SspiCli_CredHandle handlePtr, int64_t timeStamp, MethodInfo * method)); -DO_APP_FUNC(0x0232F3E0, int32_t, Interop_SspiCli_AcquireCredentialsHandleW_2, (String * principal, String * moduleName, int32_t usage, Void * logonID, SafeSspiAuthDataHandle * authdata, Void * keyCallback, Void * keyArgument, Interop_SspiCli_CredHandle handlePtr, int64_t timeStamp, MethodInfo * method)); -DO_APP_FUNC(0x0232F550, int32_t, Interop_SspiCli_AcquireCredentialsHandleW_3, (String * principal, String * moduleName, int32_t usage, Void * logonID, Interop_SspiCli_SCHANNEL_CRED authData, Void * keyCallback, Void * keyArgument, Interop_SspiCli_CredHandle handlePtr, int64_t timeStamp, MethodInfo * method)); -DO_APP_FUNC(0x0232F660, int32_t, Interop_SspiCli_InitializeSecurityContextW, (Interop_SspiCli_CredHandle credentialHandle, Void * inContextPtr, uint8_t * targetName, Interop_SspiCli_ContextFlags__Enum inFlags, int32_t reservedI, Interop_SspiCli_Endianness__Enum endianness, Interop_SspiCli_SecBufferDesc * inputBuffer, int32_t reservedII, Interop_SspiCli_CredHandle outContextPtr, Interop_SspiCli_SecBufferDesc outputBuffer, Interop_SspiCli_ContextFlags__Enum attributes, int64_t timeStamp, MethodInfo * method)); -DO_APP_FUNC(0x0232F780, int32_t, Interop_SspiCli_CompleteAuthToken, (Void * inContextPtr, Interop_SspiCli_SecBufferDesc inputBuffers, MethodInfo * method)); -DO_APP_FUNC(0x0232F810, int32_t, Interop_SspiCli_ApplyControlToken, (Void * inContextPtr, Interop_SspiCli_SecBufferDesc inputBuffers, MethodInfo * method)); +DO_APP_FUNC(0x0232EBD0, int32_t, Interop_SspiCli_FreeCredentialsHandle, (Interop_SspiCli_CredHandle * handlePtr, MethodInfo * method)); +DO_APP_FUNC(0x0232EC60, int32_t, Interop_SspiCli_DeleteSecurityContext, (Interop_SspiCli_CredHandle * handlePtr, MethodInfo * method)); +DO_APP_FUNC(0x0232ECF0, int32_t, Interop_SspiCli_AcceptSecurityContext, (Interop_SspiCli_CredHandle * credentialHandle, Void * inContextPtr, Interop_SspiCli_SecBufferDesc * inputBuffer, Interop_SspiCli_ContextFlags__Enum inFlags, Interop_SspiCli_Endianness__Enum endianness, Interop_SspiCli_CredHandle * outContextPtr, Interop_SspiCli_SecBufferDesc * outputBuffer, Interop_SspiCli_ContextFlags__Enum * attributes, int64_t * timeStamp, MethodInfo * method)); +DO_APP_FUNC(0x0232EDF0, int32_t, Interop_SspiCli_QueryContextAttributesW, (Interop_SspiCli_CredHandle * contextHandle, Interop_SspiCli_ContextAttribute__Enum attribute, Void * buffer, MethodInfo * method)); +DO_APP_FUNC(0x0232EE90, int32_t, Interop_SspiCli_SetContextAttributesW, (Interop_SspiCli_CredHandle * contextHandle, Interop_SspiCli_ContextAttribute__Enum attribute, Byte__Array * buffer, int32_t bufferSize, MethodInfo * method)); +DO_APP_FUNC(0x0232EF50, int32_t, Interop_SspiCli_EnumerateSecurityPackagesW, (int32_t * pkgnum, SafeFreeContextBuffer_SECURITY * * handle, MethodInfo * method)); +DO_APP_FUNC(0x0232F080, int32_t, Interop_SspiCli_AcquireCredentialsHandleW, (String * principal, String * moduleName, int32_t usage, Void * logonID, Interop_SspiCli_SEC_WINNT_AUTH_IDENTITY_W * authdata, Void * keyCallback, Void * keyArgument, Interop_SspiCli_CredHandle * handlePtr, int64_t * timeStamp, MethodInfo * method)); +DO_APP_FUNC(0x0232F2D0, int32_t, Interop_SspiCli_AcquireCredentialsHandleW_1, (String * principal, String * moduleName, int32_t usage, Void * logonID, void * zero, Void * keyCallback, Void * keyArgument, Interop_SspiCli_CredHandle * handlePtr, int64_t * timeStamp, MethodInfo * method)); +DO_APP_FUNC(0x0232F3E0, int32_t, Interop_SspiCli_AcquireCredentialsHandleW_2, (String * principal, String * moduleName, int32_t usage, Void * logonID, SafeSspiAuthDataHandle * authdata, Void * keyCallback, Void * keyArgument, Interop_SspiCli_CredHandle * handlePtr, int64_t * timeStamp, MethodInfo * method)); +DO_APP_FUNC(0x0232F550, int32_t, Interop_SspiCli_AcquireCredentialsHandleW_3, (String * principal, String * moduleName, int32_t usage, Void * logonID, Interop_SspiCli_SCHANNEL_CRED * authData, Void * keyCallback, Void * keyArgument, Interop_SspiCli_CredHandle * handlePtr, int64_t * timeStamp, MethodInfo * method)); +DO_APP_FUNC(0x0232F660, int32_t, Interop_SspiCli_InitializeSecurityContextW, (Interop_SspiCli_CredHandle * credentialHandle, Void * inContextPtr, uint8_t * targetName, Interop_SspiCli_ContextFlags__Enum inFlags, int32_t reservedI, Interop_SspiCli_Endianness__Enum endianness, Interop_SspiCli_SecBufferDesc * inputBuffer, int32_t reservedII, Interop_SspiCli_CredHandle * outContextPtr, Interop_SspiCli_SecBufferDesc * outputBuffer, Interop_SspiCli_ContextFlags__Enum * attributes, int64_t * timeStamp, MethodInfo * method)); +DO_APP_FUNC(0x0232F780, int32_t, Interop_SspiCli_CompleteAuthToken, (Void * inContextPtr, Interop_SspiCli_SecBufferDesc * inputBuffers, MethodInfo * method)); +DO_APP_FUNC(0x0232F810, int32_t, Interop_SspiCli_ApplyControlToken, (Void * inContextPtr, Interop_SspiCli_SecBufferDesc * inputBuffers, MethodInfo * method)); DO_APP_FUNC(0x0232F8A0, Interop_SECURITY_STATUS__Enum, Interop_SspiCli_SspiFreeAuthIdentity, (void * authData, MethodInfo * method)); -DO_APP_FUNC(0x0232F930, Interop_SECURITY_STATUS__Enum, Interop_SspiCli_SspiEncodeStringsAsAuthIdentity, (String * userName, String * domainName, String * password, SafeSspiAuthDataHandle * authData, MethodInfo * method)); -DO_APP_FUNC(0x0232FAE0, bool, Interop_SspiCli_CredHandle_get_IsZero, (Interop_SspiCli_CredHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0232FB40, void, Interop_SspiCli_CredHandle_SetToInvalid, (Interop_SspiCli_CredHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0232FBA0, String *, Interop_SspiCli_CredHandle_ToString, (Interop_SspiCli_CredHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0232FC30, void, Interop_SspiCli_SecPkgContext_IssuerListInfoEx__ctor, (Interop_SspiCli_SecPkgContext_IssuerListInfoEx__Boxed * __this, SafeHandle * handle, Byte__Array * nativeBuffer, MethodInfo * method)); +DO_APP_FUNC(0x0232F930, Interop_SECURITY_STATUS__Enum, Interop_SspiCli_SspiEncodeStringsAsAuthIdentity, (String * userName, String * domainName, String * password, SafeSspiAuthDataHandle * * authData, MethodInfo * method)); +DO_APP_FUNC(0x0232FAE0, bool, Interop_SspiCli_CredHandle_get_IsZero, (Interop_SspiCli_CredHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x0232FB40, void, Interop_SspiCli_CredHandle_SetToInvalid, (Interop_SspiCli_CredHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x0232FBA0, String *, Interop_SspiCli_CredHandle_ToString, (Interop_SspiCli_CredHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x0232FC30, void, Interop_SspiCli_SecPkgContext_IssuerListInfoEx__ctor, (Interop_SspiCli_SecPkgContext_IssuerListInfoEx * __this, SafeHandle * handle, Byte__Array * nativeBuffer, MethodInfo * method)); DO_APP_FUNC(0x0232FCC0, void, Interop_SspiCli_SecBuffer__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x0232FD00, void, Interop_SspiCli_SecBufferDesc__ctor, (Interop_SspiCli_SecBufferDesc__Boxed * __this, int32_t count, MethodInfo * method)); +DO_APP_FUNC(0x0232FD00, void, Interop_SspiCli_SecBufferDesc__ctor, (Interop_SspiCli_SecBufferDesc * __this, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x0232FD10, void *, CFType_GetTypeID, (void * typeRef, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CFType__ctor, (CFType * __this, MethodInfo * method)); DO_APP_FUNC(0x0232FD90, void *, CFObject_dlopen, (String * path, int32_t mode, MethodInfo * method)); @@ -25095,15 +28366,15 @@ DO_APP_FUNC(0x02330B50, int32_t, CFArray_get_Count, (CFArray * __this, MethodInf DO_APP_FUNC(0x02330BB0, void *, CFArray_CFArrayGetValueAtIndex, (void * handle, void * index, MethodInfo * method)); DO_APP_FUNC(0x02330C40, void *, CFArray_get_Item, (CFArray * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x02330120, void, CFNumber__ctor, (CFNumber * __this, void * handle, bool own, MethodInfo * method)); -DO_APP_FUNC(0x02330CB0, bool, CFNumber_CFNumberGetValue, (void * handle, void * type, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02330CB0, bool, CFNumber_CFNumberGetValue, (void * handle, void * type, bool * value, MethodInfo * method)); DO_APP_FUNC(0x02330D50, bool, CFNumber_AsBool, (void * handle, MethodInfo * method)); DO_APP_FUNC(0x02330E20, bool, CFNumber_op_Implicit, (CFNumber * number, MethodInfo * method)); -DO_APP_FUNC(0x02330E40, bool, CFNumber_CFNumberGetValue_1, (void * handle, void * type, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x02330E40, bool, CFNumber_CFNumberGetValue_1, (void * handle, void * type, int32_t * value, MethodInfo * method)); DO_APP_FUNC(0x02330EE0, int32_t, CFNumber_AsInt32, (void * handle, MethodInfo * method)); DO_APP_FUNC(0x02330FB0, void *, CFNumber_CFNumberCreate, (void * allocator, void * theType, void * valuePtr, MethodInfo * method)); DO_APP_FUNC(0x02331050, CFNumber *, CFNumber_FromInt32, (int32_t number, MethodInfo * method)); DO_APP_FUNC(0x02331140, int32_t, CFNumber_op_Implicit_1, (CFNumber * number, MethodInfo * method)); -DO_APP_FUNC(0x02331160, void, CFRange__ctor, (CFRange__Boxed * __this, int32_t loc, int32_t len, MethodInfo * method)); +DO_APP_FUNC(0x02331160, void, CFRange__ctor, (CFRange * __this, int32_t loc, int32_t len, MethodInfo * method)); DO_APP_FUNC(0x02330120, void, CFString__ctor, (CFString * __this, void * handle, bool own, MethodInfo * method)); DO_APP_FUNC(0x02331170, void *, CFString_CFStringCreateWithCharacters, (void * alloc, void * chars, void * length, MethodInfo * method)); DO_APP_FUNC(0x02331210, CFString *, CFString_Create, (String * value, MethodInfo * method)); @@ -25361,7 +28632,7 @@ DO_APP_FUNC(0x003EDBB0, void, UnityTls_unitytls_interface_struct_unitytls_random DO_APP_FUNC(0x023387B0, IAsyncResult *, UnityTls_unitytls_interface_struct_unitytls_random_generate_bytes_t_BeginInvoke, (UnityTls_unitytls_interface_struct_unitytls_random_generate_bytes_t * __this, uint8_t * buffer, void * bufferLen, UnityTls_unitytls_errorstate * errorState, AsyncCallback * callback, Object * object, MethodInfo * method)); DO_APP_FUNC(0x003BA270, void, UnityTls_unitytls_interface_struct_unitytls_random_generate_bytes_t_EndInvoke, (UnityTls_unitytls_interface_struct_unitytls_random_generate_bytes_t * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x02338840, void, UnityTlsContext__ctor, (UnityTlsContext * __this, MobileAuthenticatedStream * parent, MonoSslAuthenticationOptions * options, MethodInfo * method)); -DO_APP_FUNC(0x023397F0, void, UnityTlsContext_ExtractNativeKeyAndChainFromManagedCertificate, (X509Certificate * cert, UnityTls_unitytls_errorstate * errorState, UnityTls_unitytls_x509list * nativeCertChain, UnityTls_unitytls_key * nativeKey, MethodInfo * method)); +DO_APP_FUNC(0x023397F0, void, UnityTlsContext_ExtractNativeKeyAndChainFromManagedCertificate, (X509Certificate * cert, UnityTls_unitytls_errorstate * errorState, UnityTls_unitytls_x509list * * nativeCertChain, UnityTls_unitytls_key * * nativeKey, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA2228, UnityTlsContext_ExtractNativeKeyAndChainFromManagedCertificate__MethodInfo); DO_APP_FUNC(0x02339AF0, bool, UnityTlsContext_get_HasContext, (UnityTlsContext * __this, MethodInfo * method)); DO_APP_FUNC(0x01859F10, bool, UnityTlsContext_get_IsAuthenticated, (UnityTlsContext * __this, MethodInfo * method)); @@ -25416,7 +28687,7 @@ DO_APP_FUNC(0x0233BE30, SslProtocols__Enum, UnityTlsProvider_get_SupportedProtoc DO_APP_FUNC(0x0233BE40, MobileAuthenticatedStream *, UnityTlsProvider_CreateSslStream, (UnityTlsProvider * __this, SslStream * sslStream, Stream * innerStream, bool leaveInnerStreamOpen, MonoTlsSettings * settings, MethodInfo * method)); DO_APP_FUNC(0x0233BF20, UnityTls_unitytls_x509verify_result__Enum, UnityTlsProvider_x509verify_callback, (Void * userData, UnityTls_unitytls_x509_ref cert, UnityTls_unitytls_x509verify_result__Enum result, UnityTls_unitytls_errorstate * errorState, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA2180, UnityTlsProvider_x509verify_callback__MethodInfo); -DO_APP_FUNC(0x0233BFA0, bool, UnityTlsProvider_ValidateCertificate, (UnityTlsProvider * __this, ChainValidationHelper * validator, String * targetHost, bool serverMode, X509CertificateCollection * certificates, bool wantsChain, X509Chain * chain, SslPolicyErrors__Enum errors, int32_t status11, MethodInfo * method)); +DO_APP_FUNC(0x0233BFA0, bool, UnityTlsProvider_ValidateCertificate, (UnityTlsProvider * __this, ChainValidationHelper * validator, String * targetHost, bool serverMode, X509CertificateCollection * certificates, bool wantsChain, X509Chain * * chain, SslPolicyErrors__Enum * errors, int32_t * status11, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, UnityTlsProvider__ctor, (UnityTlsProvider * __this, MethodInfo * method)); DO_APP_FUNC(0x0233C940, void, UnityTlsStream__ctor, (UnityTlsStream * __this, Stream * innerStream, bool leaveInnerStreamOpen, SslStream * owner, MonoTlsSettings * settings, MobileTlsProvider * provider, MethodInfo * method)); DO_APP_FUNC(0x0233C9D0, MobileTlsContext *, UnityTlsStream_CreateContext, (UnityTlsStream * __this, MonoSslAuthenticationOptions * options, MethodInfo * method)); @@ -25465,11 +28736,11 @@ DO_APP_FUNC(0x0233F0F0, String *, CFProxySettings_get_HTTPProxy, (CFProxySetting DO_APP_FUNC(0x0233F1C0, bool, CFProxySettings_get_ProxyAutoConfigEnable, (CFProxySettings * __this, MethodInfo * method)); DO_APP_FUNC(0x0233F290, String *, CFProxySettings_get_ProxyAutoConfigJavaScript, (CFProxySettings * __this, MethodInfo * method)); DO_APP_FUNC(0x0233F360, String *, CFProxySettings_get_ProxyAutoConfigURLString, (CFProxySettings * __this, MethodInfo * method)); -DO_APP_FUNC(0x0233F430, void *, CFNetwork_CFNetworkCopyProxiesForAutoConfigurationScriptSequential, (void * proxyAutoConfigurationScript, void * targetURL, void * error, MethodInfo * method)); -DO_APP_FUNC(0x0233F4D0, void *, CFNetwork_CFNetworkExecuteProxyAutoConfigurationURL, (void * proxyAutoConfigURL, void * targetURL, CFNetwork_CFProxyAutoConfigurationResultCallback * cb, CFStreamClientContext clientContext, MethodInfo * method)); +DO_APP_FUNC(0x0233F430, void *, CFNetwork_CFNetworkCopyProxiesForAutoConfigurationScriptSequential, (void * proxyAutoConfigurationScript, void * targetURL, void * * error, MethodInfo * method)); +DO_APP_FUNC(0x0233F4D0, void *, CFNetwork_CFNetworkExecuteProxyAutoConfigurationURL, (void * proxyAutoConfigURL, void * targetURL, CFNetwork_CFProxyAutoConfigurationResultCallback * cb, CFStreamClientContext * clientContext, MethodInfo * method)); DO_APP_FUNC(0x0233F580, void, CFNetwork_CFNetworkCopyProxiesForAutoConfigurationScriptThread, (MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA1FC8, CFNetwork_CFNetworkCopyProxiesForAutoConfigurationScriptThread__MethodInfo); -DO_APP_FUNC(0x0233F9C0, void *, CFNetwork_CFNetworkCopyProxiesForAutoConfigurationScript, (void * proxyAutoConfigurationScript, void * targetURL, void * error, MethodInfo * method)); +DO_APP_FUNC(0x0233F9C0, void *, CFNetwork_CFNetworkCopyProxiesForAutoConfigurationScript, (void * proxyAutoConfigurationScript, void * targetURL, void * * error, MethodInfo * method)); DO_APP_FUNC(0x02340040, CFArray *, CFNetwork_CopyProxiesForAutoConfigurationScript, (void * proxyAutoConfigurationScript, CFUrl * targetURL, MethodInfo * method)); DO_APP_FUNC(0x02340130, CFProxy__Array *, CFNetwork_GetProxiesForAutoConfigurationScript, (void * proxyAutoConfigurationScript, CFUrl * targetURL, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA2040, CFNetwork_GetProxiesForAutoConfigurationScript__MethodInfo); @@ -25495,10 +28766,10 @@ DO_APP_FUNC(0x003BA270, void, CFNetwork_CFProxyAutoConfigurationResultCallback_E DO_APP_FUNC(0x003AE050, void, CFNetwork_CFWebProxy__ctor, (CFNetwork_CFWebProxy * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, ICredentials *, CFNetwork_CFWebProxy_get_Credentials, (CFNetwork_CFWebProxy * __this, MethodInfo * method)); DO_APP_FUNC(0x01A52E60, void, CFNetwork_CFWebProxy_set_Credentials, (CFNetwork_CFWebProxy * __this, ICredentials * value, MethodInfo * method)); -DO_APP_FUNC(0x023418C0, Uri *, CFNetwork_CFWebProxy_GetProxyUri, (CFProxy * proxy, NetworkCredential * credentials, MethodInfo * method)); -DO_APP_FUNC(0x02341F60, Uri *, CFNetwork_CFWebProxy_GetProxyUriFromScript, (void * script, Uri * targetUri, NetworkCredential * credentials, MethodInfo * method)); -DO_APP_FUNC(0x02342150, Uri *, CFNetwork_CFWebProxy_ExecuteProxyAutoConfigurationURL, (void * proxyAutoConfigURL, Uri * targetUri, NetworkCredential * credentials, MethodInfo * method)); -DO_APP_FUNC(0x023421D0, Uri *, CFNetwork_CFWebProxy_SelectProxy, (CFProxy__Array * proxies, Uri * targetUri, NetworkCredential * credentials, MethodInfo * method)); +DO_APP_FUNC(0x023418C0, Uri *, CFNetwork_CFWebProxy_GetProxyUri, (CFProxy * proxy, NetworkCredential * * credentials, MethodInfo * method)); +DO_APP_FUNC(0x02341F60, Uri *, CFNetwork_CFWebProxy_GetProxyUriFromScript, (void * script, Uri * targetUri, NetworkCredential * * credentials, MethodInfo * method)); +DO_APP_FUNC(0x02342150, Uri *, CFNetwork_CFWebProxy_ExecuteProxyAutoConfigurationURL, (void * proxyAutoConfigURL, Uri * targetUri, NetworkCredential * * credentials, MethodInfo * method)); +DO_APP_FUNC(0x023421D0, Uri *, CFNetwork_CFWebProxy_SelectProxy, (CFProxy__Array * proxies, Uri * targetUri, NetworkCredential * * credentials, MethodInfo * method)); DO_APP_FUNC(0x02342370, Uri *, CFNetwork_CFWebProxy_GetProxy, (CFNetwork_CFWebProxy * __this, Uri * targetUri, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA1F58, CFNetwork_CFWebProxy_GetProxy__MethodInfo); DO_APP_FUNC(0x02342750, bool, CFNetwork_CFWebProxy_IsBypassed, (CFNetwork_CFWebProxy * __this, Uri * targetUri, MethodInfo * method)); @@ -25533,15 +28804,15 @@ DO_APP_FUNC(0x02343620, Task_1_Mono_Net_Security_AsyncProtocolResult_ *, AsyncPr DO_APP_FUNC(0x02343820, Task *, AsyncProtocolRequest_ProcessOperation, (AsyncProtocolRequest * __this, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x02343A40, Task_1_System_Nullable_1_ *, AsyncProtocolRequest_InnerRead, (AsyncProtocolRequest * __this, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x02343C40, String *, AsyncProtocolRequest_ToString, (AsyncProtocolRequest * __this, MethodInfo * method)); -DO_APP_FUNC(0x02343CF0, void, AsyncProtocolRequest_StartOperation_d_23_MoveNext, (AsyncProtocolRequest_StartOperation_d_23__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02343CF0, void, AsyncProtocolRequest_StartOperation_d_23_MoveNext, (AsyncProtocolRequest_StartOperation_d_23 * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA1EC8, AsyncProtocolRequest_StartOperation_d_23_MoveNext__MethodInfo); -DO_APP_FUNC(0x023440C0, void, AsyncProtocolRequest_StartOperation_d_23_SetStateMachine, (AsyncProtocolRequest_StartOperation_d_23__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x02344130, void, AsyncProtocolRequest_ProcessOperation_d_24_MoveNext, (AsyncProtocolRequest_ProcessOperation_d_24__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x023440C0, void, AsyncProtocolRequest_StartOperation_d_23_SetStateMachine, (AsyncProtocolRequest_StartOperation_d_23 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x02344130, void, AsyncProtocolRequest_ProcessOperation_d_24_MoveNext, (AsyncProtocolRequest_ProcessOperation_d_24 * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA1F00, AsyncProtocolRequest_ProcessOperation_d_24_MoveNext__MethodInfo); -DO_APP_FUNC(0x02344710, void, AsyncProtocolRequest_ProcessOperation_d_24_SetStateMachine, (AsyncProtocolRequest_ProcessOperation_d_24__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x02344770, void, AsyncProtocolRequest_InnerRead_d_25_MoveNext, (AsyncProtocolRequest_InnerRead_d_25__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02344710, void, AsyncProtocolRequest_ProcessOperation_d_24_SetStateMachine, (AsyncProtocolRequest_ProcessOperation_d_24 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x02344770, void, AsyncProtocolRequest_InnerRead_d_25_MoveNext, (AsyncProtocolRequest_InnerRead_d_25 * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA1E80, AsyncProtocolRequest_InnerRead_d_25_MoveNext__MethodInfo); -DO_APP_FUNC(0x02344B40, void, AsyncProtocolRequest_InnerRead_d_25_SetStateMachine, (AsyncProtocolRequest_InnerRead_d_25__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x02344B40, void, AsyncProtocolRequest_InnerRead_d_25_SetStateMachine, (AsyncProtocolRequest_InnerRead_d_25 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); DO_APP_FUNC(0x02344BB0, void, AsyncHandshakeRequest__ctor, (AsyncHandshakeRequest * __this, MobileAuthenticatedStream * parent, bool sync, MethodInfo * method)); DO_APP_FUNC(0x02344BC0, AsyncOperationStatus__Enum_1, AsyncHandshakeRequest_Run, (AsyncHandshakeRequest * __this, AsyncOperationStatus__Enum_1 status, MethodInfo * method)); DO_APP_FUNC(0x003C7320, BufferOffsetSize_1 *, AsyncReadOrWriteRequest_get_UserBuffer, (AsyncReadOrWriteRequest * __this, MethodInfo * method)); @@ -25564,7 +28835,7 @@ DO_APP_FUNC(0x0040D6F0, bool, ServerCertValidationCallbackWrapper_EndInvoke, (Se DO_APP_FUNC(0x023451A0, ChainValidationHelper *, ChainValidationHelper_GetInternalValidator, (SslStream * owner, MobileTlsProvider * provider, MonoTlsSettings * settings, MethodInfo * method)); DO_APP_FUNC(0x023452D0, ICertificateValidator *, ChainValidationHelper_GetDefaultValidator, (MonoTlsSettings * settings, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA1EA8, ChainValidationHelper_GetDefaultValidator__MethodInfo); -DO_APP_FUNC(0x02345420, ChainValidationHelper *, ChainValidationHelper_Create, (MobileTlsProvider * provider, MonoTlsSettings * settings, MonoTlsStream * stream, MethodInfo * method)); +DO_APP_FUNC(0x02345420, ChainValidationHelper *, ChainValidationHelper_Create, (MobileTlsProvider * provider, MonoTlsSettings * * settings, MonoTlsStream * stream, MethodInfo * method)); DO_APP_FUNC(0x02345520, void, ChainValidationHelper__ctor, (ChainValidationHelper * __this, SslStream * owner, MobileTlsProvider * provider, MonoTlsSettings * settings, bool cloneSettings, MonoTlsStream * stream, MethodInfo * method)); DO_APP_FUNC(0x02345DB0, ServerCertValidationCallback *, ChainValidationHelper_GetValidationCallback, (MonoTlsSettings * settings, MethodInfo * method)); DO_APP_FUNC(0x02345EF0, X509Certificate *, ChainValidationHelper_DefaultSelectionCallback, (String * targetHost, X509CertificateCollection * localCertificates, X509Certificate * remoteCertificate, String__Array * acceptableIssuers, MethodInfo * method)); @@ -25572,15 +28843,15 @@ DO_APP_FUNC_METHODINFO(0x03CA1E98, ChainValidationHelper_DefaultSelectionCallbac DO_APP_FUNC(0x003BB3E0, MonoTlsProvider *, ChainValidationHelper_get_Provider, (ChainValidationHelper * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, MonoTlsSettings *, ChainValidationHelper_get_Settings, (ChainValidationHelper * __this, MethodInfo * method)); DO_APP_FUNC(0x01A1D130, bool, ChainValidationHelper_get_HasCertificateSelectionCallback, (ChainValidationHelper * __this, MethodInfo * method)); -DO_APP_FUNC(0x02345F40, bool, ChainValidationHelper_SelectClientCertificate, (ChainValidationHelper * __this, String * targetHost, X509CertificateCollection * localCertificates, X509Certificate * remoteCertificate, String__Array * acceptableIssuers, X509Certificate * clientCertificate, MethodInfo * method)); +DO_APP_FUNC(0x02345F40, bool, ChainValidationHelper_SelectClientCertificate, (ChainValidationHelper * __this, String * targetHost, X509CertificateCollection * localCertificates, X509Certificate * remoteCertificate, String__Array * acceptableIssuers, X509Certificate * * clientCertificate, MethodInfo * method)); DO_APP_FUNC(0x02346030, X509Certificate *, ChainValidationHelper_SelectClientCertificate_1, (ChainValidationHelper * __this, String * targetHost, X509CertificateCollection * localCertificates, X509Certificate * remoteCertificate, String__Array * acceptableIssuers, MethodInfo * method)); DO_APP_FUNC(0x02346060, bool, ChainValidationHelper_ValidateClientCertificate, (ChainValidationHelper * __this, X509Certificate * certificate, MonoSslPolicyErrors__Enum errors, MethodInfo * method)); DO_APP_FUNC(0x023461C0, ValidationResult *, ChainValidationHelper_ValidateCertificate, (ChainValidationHelper * __this, String * host, bool serverMode, X509CertificateCollection * certs, MethodInfo * method)); DO_APP_FUNC(0x023462D0, ValidationResult *, ChainValidationHelper_ValidateCertificate_1, (ChainValidationHelper * __this, String * host, bool serverMode, X509Certificate * leaf, X509Chain * chain, MethodInfo * method)); DO_APP_FUNC(0x02346370, ValidationResult *, ChainValidationHelper_ValidateChain, (ChainValidationHelper * __this, String * host, bool server, X509Certificate * leaf, X509Chain * chain, X509CertificateCollection * certs, SslPolicyErrors__Enum errors, MethodInfo * method)); -DO_APP_FUNC(0x02346450, ValidationResult *, ChainValidationHelper_ValidateChain_1, (ChainValidationHelper * __this, String * host, bool server, X509Certificate * leaf, X509Chain * chain, X509CertificateCollection * certs, SslPolicyErrors__Enum errors, MethodInfo * method)); +DO_APP_FUNC(0x02346450, ValidationResult *, ChainValidationHelper_ValidateChain_1, (ChainValidationHelper * __this, String * host, bool server, X509Certificate * leaf, X509Chain * * chain, X509CertificateCollection * certs, SslPolicyErrors__Enum errors, MethodInfo * method)); DO_APP_FUNC(0x023469B0, bool, ChainValidationHelper_InvokeCallback, (ChainValidationHelper * __this, X509Certificate * leaf, X509Chain * chain, SslPolicyErrors__Enum errors, MethodInfo * method)); -DO_APP_FUNC(0x02346A70, bool, ChainValidationHelper_InvokeSystemValidator, (ChainValidationHelper * __this, String * targetHost, bool serverMode, X509CertificateCollection * certificates, X509Chain * chain, MonoSslPolicyErrors__Enum xerrors, int32_t status11, MethodInfo * method)); +DO_APP_FUNC(0x02346A70, bool, ChainValidationHelper_InvokeSystemValidator, (ChainValidationHelper * __this, String * targetHost, bool serverMode, X509CertificateCollection * certificates, X509Chain * chain, MonoSslPolicyErrors__Enum * xerrors, int32_t * status11, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ChainValidationHelper_c_DisplayClass11_0__ctor, (ChainValidationHelper_c_DisplayClass11_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x02346B20, bool, ChainValidationHelper_c_DisplayClass11_0__GetValidationCallback_b__0, (ChainValidationHelper_c_DisplayClass11_0 * __this, Object * s, X509Certificate * c, X509Chain * ch, SslPolicyErrors__Enum e, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA1DD0, ChainValidationHelper_c_DisplayClass11_0__GetValidationCallback_b__0__MethodInfo); @@ -25622,7 +28893,7 @@ DO_APP_FUNC(0x02348680, Task *, MobileAuthenticatedStream_RenegotiateAsync, (Mob DO_APP_FUNC(0x02348710, Task_1_System_Int32_ *, MobileAuthenticatedStream_StartOperation, (MobileAuthenticatedStream * __this, MobileAuthenticatedStream_OperationType__Enum type, AsyncProtocolRequest * asyncRequest, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, MobileAuthenticatedStream_Debug, (MobileAuthenticatedStream * __this, String * format, Object__Array * args, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, MobileAuthenticatedStream_Debug_1, (MobileAuthenticatedStream * __this, String * message, MethodInfo * method)); -DO_APP_FUNC(0x02348980, int32_t, MobileAuthenticatedStream_InternalRead, (MobileAuthenticatedStream * __this, Byte__Array * buffer, int32_t offset, int32_t size, bool outWantMore, MethodInfo * method)); +DO_APP_FUNC(0x02348980, int32_t, MobileAuthenticatedStream_InternalRead, (MobileAuthenticatedStream * __this, Byte__Array * buffer, int32_t offset, int32_t size, bool * outWantMore, MethodInfo * method)); DO_APP_FUNC(0x02348B50, ValueTuple_2_Int32_Boolean_, MobileAuthenticatedStream_InternalRead_1, (MobileAuthenticatedStream * __this, AsyncProtocolRequest * asyncRequest, BufferOffsetSize_1 * internalBuffer, Byte__Array * buffer, int32_t offset, int32_t size, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA1AE8, MobileAuthenticatedStream_InternalRead_1__MethodInfo); DO_APP_FUNC(0x02348CC0, bool, MobileAuthenticatedStream_InternalWrite, (MobileAuthenticatedStream * __this, Byte__Array * buffer, int32_t offset, int32_t size, MethodInfo * method)); @@ -25677,19 +28948,19 @@ DO_APP_FUNC_METHODINFO(0x03CA1978, MobileAuthenticatedStream_get_CheckCertRevoca DO_APP_FUNC(0x0234B7F0, void, MobileAuthenticatedStream__cctor, (MethodInfo * method)); DO_APP_FUNC(0x0234B830, void, MobileAuthenticatedStream__InnerWrite_b__67_0, (MobileAuthenticatedStream * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA1768, MobileAuthenticatedStream__InnerWrite_b__67_0__MethodInfo); -DO_APP_FUNC(0x0234B880, void, MobileAuthenticatedStream_ProcessAuthentication_d_48_MoveNext, (MobileAuthenticatedStream_ProcessAuthentication_d_48__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0234B880, void, MobileAuthenticatedStream_ProcessAuthentication_d_48_MoveNext, (MobileAuthenticatedStream_ProcessAuthentication_d_48 * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA1708, MobileAuthenticatedStream_ProcessAuthentication_d_48_MoveNext__MethodInfo); -DO_APP_FUNC(0x0234C6E0, void, MobileAuthenticatedStream_ProcessAuthentication_d_48_SetStateMachine, (MobileAuthenticatedStream_ProcessAuthentication_d_48__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x0234C740, void, MobileAuthenticatedStream_StartOperation_d_57_MoveNext, (MobileAuthenticatedStream_StartOperation_d_57__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0234D370, void, MobileAuthenticatedStream_StartOperation_d_57_SetStateMachine, (MobileAuthenticatedStream_StartOperation_d_57__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x0234C6E0, void, MobileAuthenticatedStream_ProcessAuthentication_d_48_SetStateMachine, (MobileAuthenticatedStream_ProcessAuthentication_d_48 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x0234C740, void, MobileAuthenticatedStream_StartOperation_d_57_MoveNext, (MobileAuthenticatedStream_StartOperation_d_57 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0234D370, void, MobileAuthenticatedStream_StartOperation_d_57_SetStateMachine, (MobileAuthenticatedStream_StartOperation_d_57 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, MobileAuthenticatedStream_c_DisplayClass66_0__ctor, (MobileAuthenticatedStream_c_DisplayClass66_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0234D3E0, int32_t, MobileAuthenticatedStream_c_DisplayClass66_0__InnerRead_b__0, (MobileAuthenticatedStream_c_DisplayClass66_0 * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA17E8, MobileAuthenticatedStream_c_DisplayClass66_0__InnerRead_b__0__MethodInfo); -DO_APP_FUNC(0x0234D440, void, MobileAuthenticatedStream_InnerRead_d_66_MoveNext, (MobileAuthenticatedStream_InnerRead_d_66__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0234D440, void, MobileAuthenticatedStream_InnerRead_d_66_MoveNext, (MobileAuthenticatedStream_InnerRead_d_66 * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA1790, MobileAuthenticatedStream_InnerRead_d_66_MoveNext__MethodInfo); -DO_APP_FUNC(0x0234DA30, void, MobileAuthenticatedStream_InnerRead_d_66_SetStateMachine, (MobileAuthenticatedStream_InnerRead_d_66__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x0234DAA0, void, MobileAuthenticatedStream_InnerWrite_d_67_MoveNext, (MobileAuthenticatedStream_InnerWrite_d_67__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0234DE40, void, MobileAuthenticatedStream_InnerWrite_d_67_SetStateMachine, (MobileAuthenticatedStream_InnerWrite_d_67__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x0234DA30, void, MobileAuthenticatedStream_InnerRead_d_66_SetStateMachine, (MobileAuthenticatedStream_InnerRead_d_66 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x0234DAA0, void, MobileAuthenticatedStream_InnerWrite_d_67_MoveNext, (MobileAuthenticatedStream_InnerWrite_d_67 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0234DE40, void, MobileAuthenticatedStream_InnerWrite_d_67_SetStateMachine, (MobileAuthenticatedStream_InnerWrite_d_67 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); DO_APP_FUNC(0x0234DEA0, void, MobileTlsContext__ctor, (MobileTlsContext * __this, MobileAuthenticatedStream * parent, MonoSslAuthenticationOptions * options, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, MonoSslAuthenticationOptions *, MobileTlsContext_get_Options, (MobileTlsContext * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, MobileAuthenticatedStream *, MobileTlsContext_get_Parent, (MobileTlsContext * __this, MethodInfo * method)); @@ -25703,7 +28974,7 @@ DO_APP_FUNC(0x00897450, bool, MobileTlsContext_get_AskForClientCertificate, (Mob DO_APP_FUNC(0x00A47640, SslProtocols__Enum, MobileTlsContext_get_EnabledProtocols, (MobileTlsContext * __this, MethodInfo * method)); DO_APP_FUNC(0x003CD530, X509CertificateCollection *, MobileTlsContext_get_ClientCertificates, (MobileTlsContext * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, MobileTlsContext_get_AllowRenegotiation, (MobileTlsContext * __this, MethodInfo * method)); -DO_APP_FUNC(0x0234E360, void, MobileTlsContext_GetProtocolVersions, (MobileTlsContext * __this, Nullable_1_Mono_Security_Interface_TlsProtocolCode_ min, Nullable_1_Mono_Security_Interface_TlsProtocolCode_ max, MethodInfo * method)); +DO_APP_FUNC(0x0234E360, void, MobileTlsContext_GetProtocolVersions, (MobileTlsContext * __this, Nullable_1_Mono_Security_Interface_TlsProtocolCode_ * min, Nullable_1_Mono_Security_Interface_TlsProtocolCode_ * max, MethodInfo * method)); DO_APP_FUNC(0x003C7420, X509Certificate *, MobileTlsContext_get_LocalServerCertificate, (MobileTlsContext * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7430, void, MobileTlsContext_set_LocalServerCertificate, (MobileTlsContext * __this, X509Certificate * value, MethodInfo * method)); DO_APP_FUNC(0x0234E460, bool, MobileTlsContext_ValidateCertificate, (MobileTlsContext * __this, X509Certificate2 * leaf, X509Chain * chain, MethodInfo * method)); @@ -25769,16 +29040,24 @@ DO_APP_FUNC(0x025588B0, void, MonoSslServerAuthenticationOptions_set_ServerCerti DO_APP_FUNC(0x02558920, MonoServerCertificateSelectionCallback *, MonoSslServerAuthenticationOptions_Mono_Security_Interface_IMonoSslServerAuthenticationOptions_get_ServerCertificateSelectionCallback, (MonoSslServerAuthenticationOptions * __this, MethodInfo * method)); DO_APP_FUNC(0x02558A40, void, MonoSslServerAuthenticationOptions_Mono_Security_Interface_IMonoSslServerAuthenticationOptions_set_ServerCertificateSelectionCallback, (MonoSslServerAuthenticationOptions * __this, MonoServerCertificateSelectionCallback * value, MethodInfo * method)); DO_APP_FUNC(0x02558BE0, String *, MonoSslServerAuthenticationOptions_get_TargetHost, (MonoSslServerAuthenticationOptions * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A9A8, MonoSslServerAuthenticationOptions_get_TargetHost__MethodInfo); DO_APP_FUNC(0x02558C30, void, MonoSslServerAuthenticationOptions_set_TargetHost, (MonoSslServerAuthenticationOptions * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A998, MonoSslServerAuthenticationOptions_set_TargetHost__MethodInfo); DO_APP_FUNC(0x0234F310, X509Certificate *, MonoSslServerAuthenticationOptions_get_ServerCertificate, (MonoSslServerAuthenticationOptions * __this, MethodInfo * method)); DO_APP_FUNC(0x0234F330, void, MonoSslServerAuthenticationOptions_set_ServerCertificate, (MonoSslServerAuthenticationOptions * __this, X509Certificate * value, MethodInfo * method)); DO_APP_FUNC(0x02558C80, X509CertificateCollection *, MonoSslServerAuthenticationOptions_get_ClientCertificates, (MonoSslServerAuthenticationOptions * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A988, MonoSslServerAuthenticationOptions_get_ClientCertificates__MethodInfo); DO_APP_FUNC(0x02558CD0, void, MonoSslServerAuthenticationOptions_set_ClientCertificates, (MonoSslServerAuthenticationOptions * __this, X509CertificateCollection * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A978, MonoSslServerAuthenticationOptions_set_ClientCertificates__MethodInfo); DO_APP_FUNC(0x02558D20, MobileTlsProvider *, MonoTlsProviderFactory_GetProviderInternal, (MethodInfo * method)); DO_APP_FUNC(0x02558EE0, void, MonoTlsProviderFactory_InitializeInternal, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A7F8, MonoTlsProviderFactory_InitializeInternal__MethodInfo); DO_APP_FUNC(0x02559420, void, MonoTlsProviderFactory_InitializeInternal_1, (String * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A7C0, MonoTlsProviderFactory_InitializeInternal_1__MethodInfo); DO_APP_FUNC(0x025596F0, Type *, MonoTlsProviderFactory_LookupProviderType, (String * name, bool throwOnError, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A7D0, MonoTlsProviderFactory_LookupProviderType__MethodInfo); DO_APP_FUNC(0x02559AE0, MobileTlsProvider *, MonoTlsProviderFactory_LookupProvider, (String * name, bool throwOnError, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A8A8, MonoTlsProviderFactory_LookupProvider__MethodInfo); DO_APP_FUNC(0x0255A2B0, void, MonoTlsProviderFactory_InitializeDebug, (MethodInfo * method)); DO_APP_FUNC(0x0255A330, void, MonoTlsProviderFactory_Debug, (String * message, Object__Array * args, MethodInfo * method)); DO_APP_FUNC(0x0255A3F0, void, MonoTlsProviderFactory_InitializeProviderRegistration, (MethodInfo * method)); @@ -25786,6 +29065,7 @@ DO_APP_FUNC(0x0255A8F0, void, MonoTlsProviderFactory_PopulateUnityProviders, (Me DO_APP_FUNC(0x0255AAC0, void, MonoTlsProviderFactory_PopulateProviders, (MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, MonoTlsProviderFactory_IsBtlsSupported, (MethodInfo * method)); DO_APP_FUNC(0x0255AB90, MobileTlsProvider *, MonoTlsProviderFactory_CreateDefaultProviderImpl, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A7A8, MonoTlsProviderFactory_CreateDefaultProviderImpl__MethodInfo); DO_APP_FUNC(0x0255AE20, MobileTlsProvider *, MonoTlsProviderFactory_GetProvider, (MethodInfo * method)); DO_APP_FUNC(0x0255AE70, bool, MonoTlsProviderFactory_IsProviderSupported, (String * name, MethodInfo * method)); DO_APP_FUNC(0x0255B0B0, MobileTlsProvider *, MonoTlsProviderFactory_GetProvider_1, (String * name, MethodInfo * method)); @@ -25802,8 +29082,8 @@ DO_APP_FUNC(0x0255B7D0, void, MonoTlsStream__ctor, (MonoTlsStream * __this, Http DO_APP_FUNC(0x0255BAE0, Task_1_System_IO_Stream_ *, MonoTlsStream_CreateStream, (MonoTlsStream * __this, WebConnectionTunnel * tunnel, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x0255BD40, void, MonoTlsStream_Dispose, (MonoTlsStream * __this, MethodInfo * method)); DO_APP_FUNC(0x0255BD50, void, MonoTlsStream_CloseSslStream, (MonoTlsStream * __this, MethodInfo * method)); -DO_APP_FUNC(0x0255BEF0, void, MonoTlsStream_CreateStream_d_18_MoveNext, (MonoTlsStream_CreateStream_d_18__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0255C870, void, MonoTlsStream_CreateStream_d_18_SetStateMachine, (MonoTlsStream_CreateStream_d_18__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x0255BEF0, void, MonoTlsStream_CreateStream_d_18_MoveNext, (MonoTlsStream_CreateStream_d_18 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0255C870, void, MonoTlsStream_CreateStream_d_18_SetStateMachine, (MonoTlsStream_CreateStream_d_18 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); DO_APP_FUNC(0x0255C8E0, Object *, NoReflectionHelper_GetDefaultValidator, (Object * settings, MethodInfo * method)); DO_APP_FUNC(0x0255CA50, Object *, NoReflectionHelper_GetProvider, (MethodInfo * method)); DO_APP_FUNC(0x0255CAD0, bool, NoReflectionHelper_get_IsInitialized, (MethodInfo * method)); @@ -25817,10 +29097,11 @@ DO_APP_FUNC(0x0255D0F0, bool, NoReflectionHelper_IsProviderSupported, (String * DO_APP_FUNC(0x0255D140, Object *, NoReflectionHelper_GetProvider_1, (String * name, MethodInfo * method)); DO_APP_FUNC(0x0255D1D0, void, SystemCertificateValidator__cctor, (MethodInfo * method)); DO_APP_FUNC(0x0255D220, X509Chain *, SystemCertificateValidator_CreateX509Chain, (X509CertificateCollection * certs, MethodInfo * method)); -DO_APP_FUNC(0x0041AF00, bool, SystemCertificateValidator_BuildX509Chain, (X509CertificateCollection * certs, X509Chain * chain, SslPolicyErrors__Enum errors, int32_t status11, MethodInfo * method)); -DO_APP_FUNC(0x0255D3C0, bool, SystemCertificateValidator_CheckUsage, (X509CertificateCollection * certs, String * host, SslPolicyErrors__Enum errors, int32_t status11, MethodInfo * method)); -DO_APP_FUNC(0x0255D550, bool, SystemCertificateValidator_EvaluateSystem, (X509CertificateCollection * certs, X509CertificateCollection * anchors, String * host, X509Chain * chain, SslPolicyErrors__Enum errors, int32_t status11, MethodInfo * method)); -DO_APP_FUNC(0x0255D620, bool, SystemCertificateValidator_Evaluate, (MonoTlsSettings * settings, String * host, X509CertificateCollection * certs, X509Chain * chain, SslPolicyErrors__Enum errors, int32_t status11, MethodInfo * method)); +DO_APP_FUNC(0x0041AF00, bool, SystemCertificateValidator_BuildX509Chain, (X509CertificateCollection * certs, X509Chain * chain, SslPolicyErrors__Enum * errors, int32_t * status11, MethodInfo * method)); +DO_APP_FUNC(0x0255D3C0, bool, SystemCertificateValidator_CheckUsage, (X509CertificateCollection * certs, String * host, SslPolicyErrors__Enum * errors, int32_t * status11, MethodInfo * method)); +DO_APP_FUNC(0x0255D550, bool, SystemCertificateValidator_EvaluateSystem, (X509CertificateCollection * certs, X509CertificateCollection * anchors, String * host, X509Chain * chain, SslPolicyErrors__Enum * errors, int32_t * status11, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A700, SystemCertificateValidator_EvaluateSystem__MethodInfo); +DO_APP_FUNC(0x0255D620, bool, SystemCertificateValidator_Evaluate, (MonoTlsSettings * settings, String * host, X509CertificateCollection * certs, X509Chain * chain, SslPolicyErrors__Enum * errors, int32_t * status11, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, SystemCertificateValidator_NeedsChain, (MonoTlsSettings * settings, MethodInfo * method)); DO_APP_FUNC(0x0255D8C0, bool, SystemCertificateValidator_CheckCertificateUsage, (X509Certificate2 * cert, MethodInfo * method)); DO_APP_FUNC(0x0255DE60, bool, SystemCertificateValidator_CheckServerIdentity, (X509Certificate2 * cert, String * targetHost, MethodInfo * method)); @@ -25837,22 +29118,31 @@ DO_APP_FUNC(0x0255F0B0, ServerCertificateSelectionCallback *, CallbackHelpers_Mo DO_APP_FUNC(0x0255F1C0, MonoServerCertificateSelectionCallback *, CallbackHelpers_PublicToMono_1, (ServerCertificateSelectionCallback * callback, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CallbackHelpers_c_DisplayClass0_0__ctor, (CallbackHelpers_c_DisplayClass0_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0255F2D0, bool, CallbackHelpers_c_DisplayClass0_0__PublicToMono_b__0, (CallbackHelpers_c_DisplayClass0_0 * __this, String * h, X509Certificate * c, X509Chain * ch, MonoSslPolicyErrors__Enum e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A6C8, CallbackHelpers_c_DisplayClass0_0__PublicToMono_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, CallbackHelpers_c_DisplayClass1_0__ctor, (CallbackHelpers_c_DisplayClass1_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0255F2D0, bool, CallbackHelpers_c_DisplayClass1_0__InternalToMono_b__0, (CallbackHelpers_c_DisplayClass1_0 * __this, String * h, X509Certificate * c, X509Chain * ch, MonoSslPolicyErrors__Enum e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A6E0, CallbackHelpers_c_DisplayClass1_0__InternalToMono_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, CallbackHelpers_c_DisplayClass2_0__ctor, (CallbackHelpers_c_DisplayClass2_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0255F300, bool, CallbackHelpers_c_DisplayClass2_0__InternalToPublic_b__0, (CallbackHelpers_c_DisplayClass2_0 * __this, Object * s, X509Certificate * c, X509Chain * ch, SslPolicyErrors__Enum e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A630, CallbackHelpers_c_DisplayClass2_0__InternalToPublic_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, CallbackHelpers_c_DisplayClass3_0__ctor, (CallbackHelpers_c_DisplayClass3_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0255F2D0, X509Certificate *, CallbackHelpers_c_DisplayClass3_0__InternalToMono_b__0, (CallbackHelpers_c_DisplayClass3_0 * __this, String * t, X509CertificateCollection * lc, X509Certificate * rc, String__Array * ai, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A638, CallbackHelpers_c_DisplayClass3_0__InternalToMono_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, CallbackHelpers_c_DisplayClass4_0__ctor, (CallbackHelpers_c_DisplayClass4_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0255F330, X509Certificate *, CallbackHelpers_c_DisplayClass4_0__MonoToPublic_b__0, (CallbackHelpers_c_DisplayClass4_0 * __this, Object * s, String * t, X509CertificateCollection * lc, X509Certificate * rc, String__Array * ai, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A620, CallbackHelpers_c_DisplayClass4_0__MonoToPublic_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, CallbackHelpers_c_DisplayClass5_0__ctor, (CallbackHelpers_c_DisplayClass5_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0255F2D0, bool, CallbackHelpers_c_DisplayClass5_0__MonoToInternal_b__0, (CallbackHelpers_c_DisplayClass5_0 * __this, String * h, X509Certificate * c, X509Chain * ch, SslPolicyErrors__Enum e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A670, CallbackHelpers_c_DisplayClass5_0__MonoToInternal_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, CallbackHelpers_c_DisplayClass6_0__ctor, (CallbackHelpers_c_DisplayClass6_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0255F2D0, X509Certificate *, CallbackHelpers_c_DisplayClass6_0__MonoToInternal_b__0, (CallbackHelpers_c_DisplayClass6_0 * __this, String * t, X509CertificateCollection * lc, X509Certificate * rc, String__Array * ai, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A680, CallbackHelpers_c_DisplayClass6_0__MonoToInternal_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, CallbackHelpers_c_DisplayClass7_0__ctor, (CallbackHelpers_c_DisplayClass7_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0255F380, X509Certificate *, CallbackHelpers_c_DisplayClass7_0__MonoToPublic_b__0, (CallbackHelpers_c_DisplayClass7_0 * __this, Object * s, String * h, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A660, CallbackHelpers_c_DisplayClass7_0__MonoToPublic_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, CallbackHelpers_c_DisplayClass8_0__ctor, (CallbackHelpers_c_DisplayClass8_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0255F380, X509Certificate *, CallbackHelpers_c_DisplayClass8_0__PublicToMono_b__0, (CallbackHelpers_c_DisplayClass8_0 * __this, Object * s, String * h, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A5A8, CallbackHelpers_c_DisplayClass8_0__PublicToMono_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, NtlmSession__ctor, (NtlmSession * __this, MethodInfo * method)); DO_APP_FUNC(0x0255F3B0, Authorization *, NtlmSession_Authenticate, (NtlmSession * __this, String * challenge, WebRequest * webRequest, ICredentials * credentials, MethodInfo * method)); DO_APP_FUNC(0x0255FB50, Authorization *, NtlmClient_Authenticate, (NtlmClient * __this, String * challenge, WebRequest * webRequest, ICredentials * credentials, MethodInfo * method)); @@ -25864,6 +29154,7 @@ DO_APP_FUNC(0x02560030, void, NtlmClient__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02560110, void, NtlmClient_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NtlmClient_c__ctor, (NtlmClient_c * __this, MethodInfo * method)); DO_APP_FUNC(0x025601C0, NtlmSession *, NtlmClient_c__Authenticate_b__1_0, (NtlmClient_c * __this, HttpWebRequest * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A5F8, NtlmClient_c__Authenticate_b__1_0__MethodInfo); DO_APP_FUNC(0x003BCBE0, void, MonoBtlsBio__ctor, (MonoBtlsBio * __this, MonoBtlsBio_BoringBioHandle * handle, MethodInfo * method)); DO_APP_FUNC(0x02560210, MonoBtlsBio_BoringBioHandle *, MonoBtlsBio_get_Handle, (MonoBtlsBio * __this, MethodInfo * method)); DO_APP_FUNC(0x02560290, MonoBtlsBio *, MonoBtlsBio_CreateMonoStream, (Stream * stream, MethodInfo * method)); @@ -25875,15 +29166,18 @@ DO_APP_FUNC(0x025605D0, int32_t, MonoBtlsBio_mono_btls_bio_hexdump, (void * bio, DO_APP_FUNC(0x02560680, void, MonoBtlsBio_mono_btls_bio_print_errors, (void * bio, MethodInfo * method)); DO_APP_FUNC(0x02560700, void, MonoBtlsBio_mono_btls_bio_free, (void * handle, MethodInfo * method)); DO_APP_FUNC(0x02560780, int32_t, MonoBtlsBio_Read, (MonoBtlsBio * __this, Byte__Array * buffer, int32_t offset, int32_t size, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A578, MonoBtlsBio_Read__MethodInfo); DO_APP_FUNC(0x02560AB0, int32_t, MonoBtlsBio_Write, (MonoBtlsBio * __this, Byte__Array * buffer, int32_t offset, int32_t size, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A568, MonoBtlsBio_Write__MethodInfo); DO_APP_FUNC(0x02560D70, int32_t, MonoBtlsBio_Flush, (MonoBtlsBio * __this, MethodInfo * method)); DO_APP_FUNC(0x02560F30, int32_t, MonoBtlsBio_Indent, (MonoBtlsBio * __this, uint32_t indent, uint32_t max_indent, MethodInfo * method)); DO_APP_FUNC(0x025610C0, int32_t, MonoBtlsBio_HexDump, (MonoBtlsBio * __this, Byte__Array * buffer, uint32_t indent, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A570, MonoBtlsBio_HexDump__MethodInfo); DO_APP_FUNC(0x02561390, void, MonoBtlsBio_PrintErrors, (MonoBtlsBio * __this, MethodInfo * method)); DO_APP_FUNC(0x025614F0, void, MonoBtlsBio_BoringBioHandle__ctor, (MonoBtlsBio_BoringBioHandle * __this, void * handle, MethodInfo * method)); DO_APP_FUNC(0x02561540, bool, MonoBtlsBio_BoringBioHandle_ReleaseHandle, (MonoBtlsBio_BoringBioHandle * __this, MethodInfo * method)); DO_APP_FUNC(0x02561620, void *, MonoBtlsBioMemory_mono_btls_bio_mem_new, (MethodInfo * method)); -DO_APP_FUNC(0x02561690, int32_t, MonoBtlsBioMemory_mono_btls_bio_mem_get_data, (void * handle, void * data, MethodInfo * method)); +DO_APP_FUNC(0x02561690, int32_t, MonoBtlsBioMemory_mono_btls_bio_mem_get_data, (void * handle, void * * data, MethodInfo * method)); DO_APP_FUNC(0x02561720, void, MonoBtlsBioMemory__ctor, (MonoBtlsBioMemory * __this, MethodInfo * method)); DO_APP_FUNC(0x02561860, Byte__Array *, MonoBtlsBioMemory_GetData, (MonoBtlsBioMemory * __this, MethodInfo * method)); DO_APP_FUNC(0x02561AA0, void, MonoBtlsBioMono__ctor, (MonoBtlsBioMono * __this, IMonoBtlsBioMono * backend, MethodInfo * method)); @@ -25892,16 +29186,20 @@ DO_APP_FUNC(0x02562340, MonoBtlsBioMono *, MonoBtlsBioMono_CreateString, (String DO_APP_FUNC(0x025624F0, void *, MonoBtlsBioMono_mono_btls_bio_mono_new, (MethodInfo * method)); DO_APP_FUNC(0x02562560, void, MonoBtlsBioMono_mono_btls_bio_mono_initialize, (void * handle, void * instance, void * readFunc, void * writeFunc, void * controlFunc, MethodInfo * method)); DO_APP_FUNC(0x02562610, int64_t, MonoBtlsBioMono_Control, (MonoBtlsBioMono * __this, MonoBtlsBioMono_ControlCommand__Enum command, int64_t arg, MethodInfo * method)); -DO_APP_FUNC(0x025626C0, int32_t, MonoBtlsBioMono_OnRead, (MonoBtlsBioMono * __this, void * data, int32_t dataLength, int32_t wantMore, MethodInfo * method)); -DO_APP_FUNC(0x02562840, int32_t, MonoBtlsBioMono_OnRead_1, (void * instance, void * data, int32_t dataLength, int32_t wantMore, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A4C8, MonoBtlsBioMono_Control__MethodInfo); +DO_APP_FUNC(0x025626C0, int32_t, MonoBtlsBioMono_OnRead, (MonoBtlsBioMono * __this, void * data, int32_t dataLength, int32_t * wantMore, MethodInfo * method)); +DO_APP_FUNC(0x02562840, int32_t, MonoBtlsBioMono_OnRead_1, (void * instance, void * data, int32_t dataLength, int32_t * wantMore, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A538, MonoBtlsBioMono_OnRead_1__MethodInfo); DO_APP_FUNC(0x02562B10, int32_t, MonoBtlsBioMono_OnWrite, (MonoBtlsBioMono * __this, void * data, int32_t dataLength, MethodInfo * method)); DO_APP_FUNC(0x02562C70, int32_t, MonoBtlsBioMono_OnWrite_1, (void * instance, void * data, int32_t dataLength, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A530, MonoBtlsBioMono_OnWrite_1__MethodInfo); DO_APP_FUNC(0x02562F10, int64_t, MonoBtlsBioMono_Control_1, (void * instance, MonoBtlsBioMono_ControlCommand__Enum command, int64_t arg, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A540, MonoBtlsBioMono_Control_1__MethodInfo); DO_APP_FUNC(0x02563100, void, MonoBtlsBioMono_Close, (MonoBtlsBioMono * __this, MethodInfo * method)); DO_APP_FUNC(0x00404B80, void, MonoBtlsBioMono_BioReadFunc__ctor, (MonoBtlsBioMono_BioReadFunc * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003F09C0, int32_t, MonoBtlsBioMono_BioReadFunc_Invoke, (MonoBtlsBioMono_BioReadFunc * __this, void * bio, void * data, int32_t dataLength, int32_t wantMore, MethodInfo * method)); -DO_APP_FUNC(0x02563220, IAsyncResult *, MonoBtlsBioMono_BioReadFunc_BeginInvoke, (MonoBtlsBioMono_BioReadFunc * __this, void * bio, void * data, int32_t dataLength, int32_t wantMore, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003F75B0, int32_t, MonoBtlsBioMono_BioReadFunc_EndInvoke, (MonoBtlsBioMono_BioReadFunc * __this, int32_t wantMore, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003F09C0, int32_t, MonoBtlsBioMono_BioReadFunc_Invoke, (MonoBtlsBioMono_BioReadFunc * __this, void * bio, void * data, int32_t dataLength, int32_t * wantMore, MethodInfo * method)); +DO_APP_FUNC(0x02563220, IAsyncResult *, MonoBtlsBioMono_BioReadFunc_BeginInvoke, (MonoBtlsBioMono_BioReadFunc * __this, void * bio, void * data, int32_t dataLength, int32_t * wantMore, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003F75B0, int32_t, MonoBtlsBioMono_BioReadFunc_EndInvoke, (MonoBtlsBioMono_BioReadFunc * __this, int32_t * wantMore, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x025632F0, void, MonoBtlsBioMono_BioWriteFunc__ctor, (MonoBtlsBioMono_BioWriteFunc * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EF9C0, int32_t, MonoBtlsBioMono_BioWriteFunc_Invoke, (MonoBtlsBioMono_BioWriteFunc * __this, void * bio, void * data, int32_t dataLength, MethodInfo * method)); DO_APP_FUNC(0x02563420, IAsyncResult *, MonoBtlsBioMono_BioWriteFunc_BeginInvoke, (MonoBtlsBioMono_BioWriteFunc * __this, void * bio, void * data, int32_t dataLength, AsyncCallback * callback, Object * object, MethodInfo * method)); @@ -25912,12 +29210,12 @@ DO_APP_FUNC(0x02563610, IAsyncResult *, MonoBtlsBioMono_BioControlFunc_BeginInvo DO_APP_FUNC(0x003F48F0, int64_t, MonoBtlsBioMono_BioControlFunc_EndInvoke, (MonoBtlsBioMono_BioControlFunc * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, Stream *, MonoBtlsBioMono_StreamBackend_get_InnerStream, (MonoBtlsBioMono_StreamBackend * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCCC0, void, MonoBtlsBioMono_StreamBackend__ctor, (MonoBtlsBioMono_StreamBackend * __this, Stream * stream, bool ownsStream, MethodInfo * method)); -DO_APP_FUNC(0x025636E0, int32_t, MonoBtlsBioMono_StreamBackend_Read, (MonoBtlsBioMono_StreamBackend * __this, Byte__Array * buffer, int32_t offset, int32_t size, bool wantMore, MethodInfo * method)); +DO_APP_FUNC(0x025636E0, int32_t, MonoBtlsBioMono_StreamBackend_Read, (MonoBtlsBioMono_StreamBackend * __this, Byte__Array * buffer, int32_t offset, int32_t size, bool * wantMore, MethodInfo * method)); DO_APP_FUNC(0x02563720, bool, MonoBtlsBioMono_StreamBackend_Write, (MonoBtlsBioMono_StreamBackend * __this, Byte__Array * buffer, int32_t offset, int32_t size, MethodInfo * method)); DO_APP_FUNC(0x01B51380, void, MonoBtlsBioMono_StreamBackend_Flush, (MonoBtlsBioMono_StreamBackend * __this, MethodInfo * method)); DO_APP_FUNC(0x02563750, void, MonoBtlsBioMono_StreamBackend_Close, (MonoBtlsBioMono_StreamBackend * __this, MethodInfo * method)); DO_APP_FUNC(0x025637D0, void, MonoBtlsBioMono_StringBackend__ctor, (MonoBtlsBioMono_StringBackend * __this, StringWriter * writer, MethodInfo * method)); -DO_APP_FUNC(0x02563900, int32_t, MonoBtlsBioMono_StringBackend_Read, (MonoBtlsBioMono_StringBackend * __this, Byte__Array * buffer, int32_t offset, int32_t size, bool wantMore, MethodInfo * method)); +DO_APP_FUNC(0x02563900, int32_t, MonoBtlsBioMono_StringBackend_Read, (MonoBtlsBioMono_StringBackend * __this, Byte__Array * buffer, int32_t offset, int32_t size, bool * wantMore, MethodInfo * method)); DO_APP_FUNC(0x02563910, bool, MonoBtlsBioMono_StringBackend_Write, (MonoBtlsBioMono_StringBackend * __this, Byte__Array * buffer, int32_t offset, int32_t size, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, MonoBtlsBioMono_StringBackend_Flush, (MonoBtlsBioMono_StringBackend * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, MonoBtlsBioMono_StringBackend_Close, (MonoBtlsBioMono_StringBackend * __this, MethodInfo * method)); @@ -25925,27 +29223,37 @@ DO_APP_FUNC(0x02563970, void, MonoBtlsContext__ctor, (MonoBtlsContext * __this, DO_APP_FUNC(0x025639F0, X509CertificateImplBtls *, MonoBtlsContext_GetPrivateCertificate, (X509Certificate * certificate, MethodInfo * method)); DO_APP_FUNC(0x02563C90, MonoBtlsProvider *, MonoBtlsContext_get_Provider, (MonoBtlsContext * __this, MethodInfo * method)); DO_APP_FUNC(0x02563D20, int32_t, MonoBtlsContext_VerifyCallback, (MonoBtlsContext * __this, MonoBtlsX509StoreCtx * storeCtx, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A4B0, MonoBtlsContext_VerifyCallback__MethodInfo); DO_APP_FUNC(0x02563F60, int32_t, MonoBtlsContext_SelectCallback, (MonoBtlsContext * __this, String__Array * acceptableIssuers, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A4C0, MonoBtlsContext_SelectCallback__MethodInfo); DO_APP_FUNC(0x025640F0, int32_t, MonoBtlsContext_ServerNameCallback, (MonoBtlsContext * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A4B8, MonoBtlsContext_ServerNameCallback__MethodInfo); DO_APP_FUNC(0x025641B0, void, MonoBtlsContext_StartHandshake, (MonoBtlsContext * __this, MethodInfo * method)); DO_APP_FUNC(0x02564560, void, MonoBtlsContext_SetPrivateCertificate, (MonoBtlsContext * __this, X509CertificateImplBtls * privateCert, MethodInfo * method)); DO_APP_FUNC(0x02564BC0, Exception *, MonoBtlsContext_GetException, (MonoBtlsSslError__Enum status, MethodInfo * method)); DO_APP_FUNC(0x02565190, bool, MonoBtlsContext_ProcessHandshake, (MonoBtlsContext * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A498, MonoBtlsContext_ProcessHandshake__MethodInfo); DO_APP_FUNC(0x025652D0, MonoBtlsSslError__Enum, MonoBtlsContext_DoProcessHandshake, (MonoBtlsContext * __this, MethodInfo * method)); DO_APP_FUNC(0x025654D0, void, MonoBtlsContext_FinishHandshake, (MonoBtlsContext * __this, MethodInfo * method)); DO_APP_FUNC(0x025654F0, void, MonoBtlsContext_InitializeConnection, (MonoBtlsContext * __this, MethodInfo * method)); DO_APP_FUNC(0x025660C0, void, MonoBtlsContext_GetPeerCertificate, (MonoBtlsContext * __this, MethodInfo * method)); DO_APP_FUNC(0x025663A0, void, MonoBtlsContext_InitializeSession, (MonoBtlsContext * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A420, MonoBtlsContext_InitializeSession__MethodInfo); DO_APP_FUNC(0x02566790, TlsProtocols__Enum, MonoBtlsContext_GetProtocol, (TlsProtocolCode__Enum protocol, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A418, MonoBtlsContext_GetProtocol__MethodInfo); DO_APP_FUNC(0x02566820, void, MonoBtlsContext_Flush, (MonoBtlsContext * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A410, MonoBtlsContext_Flush__MethodInfo); DO_APP_FUNC(0x02566870, ValueTuple_2_Int32_Boolean_, MonoBtlsContext_Read, (MonoBtlsContext * __this, Byte__Array * buffer, int32_t offset, int32_t size, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A428, MonoBtlsContext_Read__MethodInfo); DO_APP_FUNC(0x02566C20, ValueTuple_2_Int32_Boolean_, MonoBtlsContext_Write, (MonoBtlsContext * __this, Byte__Array * buffer, int32_t offset, int32_t size, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A3F0, MonoBtlsContext_Write__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, MonoBtlsContext_get_CanRenegotiate, (MonoBtlsContext * __this, MethodInfo * method)); DO_APP_FUNC(0x02566F80, void, MonoBtlsContext_Renegotiate, (MonoBtlsContext * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A3E8, MonoBtlsContext_Renegotiate__MethodInfo); DO_APP_FUNC(0x02566FD0, void, MonoBtlsContext_Shutdown, (MonoBtlsContext * __this, MethodInfo * method)); DO_APP_FUNC(0x02567180, bool, MonoBtlsContext_PendingRenegotiation, (MonoBtlsContext * __this, MethodInfo * method)); DO_APP_FUNC(0x02567230, void, MonoBtlsContext_Dispose, (MonoBtlsContext * __this, bool disposing, MethodInfo * method)); -DO_APP_FUNC(0x025673B0, int32_t, MonoBtlsContext_Mono_Btls_IMonoBtlsBioMono_Read, (MonoBtlsContext * __this, Byte__Array * buffer, int32_t offset, int32_t size, bool wantMore, MethodInfo * method)); +DO_APP_FUNC(0x025673B0, int32_t, MonoBtlsContext_Mono_Btls_IMonoBtlsBioMono_Read, (MonoBtlsContext * __this, Byte__Array * buffer, int32_t offset, int32_t size, bool * wantMore, MethodInfo * method)); DO_APP_FUNC(0x025673E0, bool, MonoBtlsContext_Mono_Btls_IMonoBtlsBioMono_Write, (MonoBtlsContext * __this, Byte__Array * buffer, int32_t offset, int32_t size, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, MonoBtlsContext_Mono_Btls_IMonoBtlsBioMono_Flush, (MonoBtlsContext * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, MonoBtlsContext_Mono_Btls_IMonoBtlsBioMono_Close, (MonoBtlsContext * __this, MethodInfo * method)); @@ -25959,16 +29267,17 @@ DO_APP_FUNC(0x02567470, TlsProtocols__Enum, MonoBtlsContext_get_NegotiatedProtoc DO_APP_FUNC(0x02567490, int32_t, MonoBtlsError_mono_btls_error_peek_error, (MethodInfo * method)); DO_APP_FUNC(0x02567500, int32_t, MonoBtlsError_mono_btls_error_get_error, (MethodInfo * method)); DO_APP_FUNC(0x02567570, void, MonoBtlsError_mono_btls_error_clear_error, (MethodInfo * method)); -DO_APP_FUNC(0x025675E0, int32_t, MonoBtlsError_mono_btls_error_peek_error_line, (void * file, int32_t line, MethodInfo * method)); -DO_APP_FUNC(0x02567670, int32_t, MonoBtlsError_mono_btls_error_get_error_line, (void * file, int32_t line, MethodInfo * method)); +DO_APP_FUNC(0x025675E0, int32_t, MonoBtlsError_mono_btls_error_peek_error_line, (void * * file, int32_t * line, MethodInfo * method)); +DO_APP_FUNC(0x02567670, int32_t, MonoBtlsError_mono_btls_error_get_error_line, (void * * file, int32_t * line, MethodInfo * method)); DO_APP_FUNC(0x02567700, void, MonoBtlsError_mono_btls_error_get_error_string_n, (int32_t error, void * buf, int32_t len, MethodInfo * method)); DO_APP_FUNC(0x025677A0, int32_t, MonoBtlsError_mono_btls_error_get_reason, (int32_t error, MethodInfo * method)); DO_APP_FUNC(0x02567490, int32_t, MonoBtlsError_PeekError, (MethodInfo * method)); DO_APP_FUNC(0x02567500, int32_t, MonoBtlsError_GetError, (MethodInfo * method)); DO_APP_FUNC(0x02567570, void, MonoBtlsError_ClearError, (MethodInfo * method)); DO_APP_FUNC(0x02567820, String *, MonoBtlsError_GetErrorString, (int32_t error, MethodInfo * method)); -DO_APP_FUNC(0x02567A70, int32_t, MonoBtlsError_PeekError_1, (String * file, int32_t line, MethodInfo * method)); -DO_APP_FUNC(0x02567C40, int32_t, MonoBtlsError_GetError_1, (String * file, int32_t line, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A3E0, MonoBtlsError_GetErrorString__MethodInfo); +DO_APP_FUNC(0x02567A70, int32_t, MonoBtlsError_PeekError_1, (String * * file, int32_t * line, MethodInfo * method)); +DO_APP_FUNC(0x02567C40, int32_t, MonoBtlsError_GetError_1, (String * * file, int32_t * line, MethodInfo * method)); DO_APP_FUNC(0x025677A0, int32_t, MonoBtlsError_GetErrorReason, (int32_t error, MethodInfo * method)); DO_APP_FUNC(0x02567E10, void, MonoBtlsException__ctor, (MonoBtlsException * __this, MethodInfo * method)); DO_APP_FUNC(0x02567E60, void, MonoBtlsException__ctor_1, (MonoBtlsException * __this, MonoBtlsSslError__Enum error, MethodInfo * method)); @@ -25977,7 +29286,7 @@ DO_APP_FUNC(0x02567F60, void, MonoBtlsException__ctor_3, (MonoBtlsException * __ DO_APP_FUNC(0x02568080, void *, MonoBtlsKey_mono_btls_key_new, (MethodInfo * method)); DO_APP_FUNC(0x025680F0, void, MonoBtlsKey_mono_btls_key_free, (void * handle, MethodInfo * method)); DO_APP_FUNC(0x02568170, void *, MonoBtlsKey_mono_btls_key_up_ref, (void * handle, MethodInfo * method)); -DO_APP_FUNC(0x025681F0, int32_t, MonoBtlsKey_mono_btls_key_get_bytes, (void * handle, void * data, int32_t size, int32_t include_private_bits, MethodInfo * method)); +DO_APP_FUNC(0x025681F0, int32_t, MonoBtlsKey_mono_btls_key_get_bytes, (void * handle, void * * data, int32_t * size, int32_t include_private_bits, MethodInfo * method)); DO_APP_FUNC(0x025682A0, int32_t, MonoBtlsKey_mono_btls_key_get_bits, (void * handle, MethodInfo * method)); DO_APP_FUNC(0x02568320, int32_t, MonoBtlsKey_mono_btls_key_is_rsa, (void * handle, MethodInfo * method)); DO_APP_FUNC(0x025683A0, int32_t, MonoBtlsKey_mono_btls_key_assign_rsa_private_key, (void * handle, Byte__Array * der, int32_t der_length, MethodInfo * method)); @@ -25987,16 +29296,20 @@ DO_APP_FUNC(0x025684D0, Byte__Array *, MonoBtlsKey_GetBytes, (MonoBtlsKey * __th DO_APP_FUNC(0x02568670, bool, MonoBtlsKey_get_IsRsa, (MonoBtlsKey * __this, MethodInfo * method)); DO_APP_FUNC(0x02568710, MonoBtlsKey *, MonoBtlsKey_Copy, (MonoBtlsKey * __this, MethodInfo * method)); DO_APP_FUNC(0x025688F0, MonoBtlsKey *, MonoBtlsKey_CreateFromRSAPrivateKey, (RSA * privateKey, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A388, MonoBtlsKey_CreateFromRSAPrivateKey__MethodInfo); DO_APP_FUNC(0x025614F0, void, MonoBtlsKey_BoringKeyHandle__ctor, (MonoBtlsKey_BoringKeyHandle * __this, void * handle, MethodInfo * method)); DO_APP_FUNC(0x02568B70, bool, MonoBtlsKey_BoringKeyHandle_ReleaseHandle, (MonoBtlsKey_BoringKeyHandle * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, MonoBtlsObject__ctor, (MonoBtlsObject * __this, MonoBtlsObject_MonoBtlsHandle * handle, MethodInfo * method)); DO_APP_FUNC(0x02568BF0, MonoBtlsObject_MonoBtlsHandle *, MonoBtlsObject_get_Handle, (MonoBtlsObject * __this, MethodInfo * method)); DO_APP_FUNC(0x02568C10, bool, MonoBtlsObject_get_IsValid, (MonoBtlsObject * __this, MethodInfo * method)); DO_APP_FUNC(0x02568C50, void, MonoBtlsObject_CheckThrow, (MonoBtlsObject * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A380, MonoBtlsObject_CheckThrow__MethodInfo); DO_APP_FUNC(0x02568D00, Exception *, MonoBtlsObject_SetException, (MonoBtlsObject * __this, Exception * ex, MethodInfo * method)); DO_APP_FUNC(0x02568D60, void, MonoBtlsObject_CheckError, (MonoBtlsObject * __this, bool ok, String * callerName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A3A8, MonoBtlsObject_CheckError__MethodInfo); DO_APP_FUNC(0x02568F50, void, MonoBtlsObject_CheckError_1, (MonoBtlsObject * __this, int32_t ret, String * callerName, MethodInfo * method)); DO_APP_FUNC(0x02568F60, void, MonoBtlsObject_CheckLastError, (MonoBtlsObject * __this, String * callerName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A3A0, MonoBtlsObject_CheckLastError__MethodInfo); DO_APP_FUNC(0x025691C0, void, MonoBtlsObject_mono_btls_free, (void * data, MethodInfo * method)); DO_APP_FUNC(0x02569240, void, MonoBtlsObject_FreeDataPtr, (MonoBtlsObject * __this, void * data, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, MonoBtlsObject_Close, (MonoBtlsObject * __this, MethodInfo * method)); @@ -26019,15 +29332,18 @@ DO_APP_FUNC(0x02569BC0, void, MonoBtlsPkcs12__ctor, (MonoBtlsPkcs12 * __this, Me DO_APP_FUNC(0x003BCBE0, void, MonoBtlsPkcs12__ctor_1, (MonoBtlsPkcs12 * __this, MonoBtlsPkcs12_BoringPkcs12Handle * handle, MethodInfo * method)); DO_APP_FUNC(0x02569D00, int32_t, MonoBtlsPkcs12_get_Count, (MonoBtlsPkcs12 * __this, MethodInfo * method)); DO_APP_FUNC(0x02569DA0, MonoBtlsX509 *, MonoBtlsPkcs12_GetCertificate, (MonoBtlsPkcs12 * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A360, MonoBtlsPkcs12_GetCertificate__MethodInfo); DO_APP_FUNC(0x02569FD0, void, MonoBtlsPkcs12_AddCertificate, (MonoBtlsPkcs12 * __this, MonoBtlsX509 * x509, MethodInfo * method)); DO_APP_FUNC(0x0256A090, void, MonoBtlsPkcs12_Import, (MonoBtlsPkcs12 * __this, Byte__Array * buffer, SafePasswordHandle * password, MethodInfo * method)); DO_APP_FUNC(0x0256A200, bool, MonoBtlsPkcs12_get_HasPrivateKey, (MonoBtlsPkcs12 * __this, MethodInfo * method)); DO_APP_FUNC(0x0256A2A0, MonoBtlsKey *, MonoBtlsPkcs12_GetPrivateKey, (MonoBtlsPkcs12 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A348, MonoBtlsPkcs12_GetPrivateKey__MethodInfo); DO_APP_FUNC(0x025614F0, void, MonoBtlsPkcs12_BoringPkcs12Handle__ctor, (MonoBtlsPkcs12_BoringPkcs12Handle * __this, void * handle, MethodInfo * method)); DO_APP_FUNC(0x0256A4F0, bool, MonoBtlsPkcs12_BoringPkcs12Handle_ReleaseHandle, (MonoBtlsPkcs12_BoringPkcs12Handle * __this, MethodInfo * method)); DO_APP_FUNC(0x0256A570, Guid, MonoBtlsProvider_get_ID, (MonoBtlsProvider * __this, MethodInfo * method)); DO_APP_FUNC(0x0256A5D0, String *, MonoBtlsProvider_get_Name, (MonoBtlsProvider * __this, MethodInfo * method)); DO_APP_FUNC(0x0256A610, void, MonoBtlsProvider__ctor, (MonoBtlsProvider * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A2E8, MonoBtlsProvider__ctor__MethodInfo); DO_APP_FUNC(0x0041AEF0, bool, MonoBtlsProvider_get_SupportsSslStream, (MonoBtlsProvider * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, MonoBtlsProvider_get_SupportsMonoExtensions, (MonoBtlsProvider * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, MonoBtlsProvider_get_SupportsConnectionInfo, (MonoBtlsProvider * __this, MethodInfo * method)); @@ -26039,11 +29355,13 @@ DO_APP_FUNC(0x0256A780, X509Certificate2Impl *, MonoBtlsProvider_GetNativeCertif DO_APP_FUNC(0x0256A8B0, X509Certificate2Impl *, MonoBtlsProvider_GetNativeCertificate_1, (MonoBtlsProvider * __this, X509Certificate * certificate, MethodInfo * method)); DO_APP_FUNC(0x0256A9E0, X509Certificate2Impl *, MonoBtlsProvider_GetNativeCertificate_2, (MonoBtlsProvider * __this, Byte__Array * data, SafePasswordHandle * password, X509KeyStorageFlags__Enum flags, MethodInfo * method)); DO_APP_FUNC(0x0256AA70, MonoBtlsX509VerifyParam *, MonoBtlsProvider_GetVerifyParam, (MonoTlsSettings * settings, String * targetHost, bool serverMode, MethodInfo * method)); -DO_APP_FUNC(0x0256B040, bool, MonoBtlsProvider_ValidateCertificate, (MonoBtlsProvider * __this, ChainValidationHelper * validator, String * targetHost, bool serverMode, X509CertificateCollection * certificates, bool wantsChain, X509Chain * chain, SslPolicyErrors__Enum errors, int32_t status11, MethodInfo * method)); +DO_APP_FUNC(0x0256B040, bool, MonoBtlsProvider_ValidateCertificate, (MonoBtlsProvider * __this, ChainValidationHelper * validator, String * targetHost, bool serverMode, X509CertificateCollection * certificates, bool wantsChain, X509Chain * * chain, SslPolicyErrors__Enum * errors, int32_t * status11, MethodInfo * method)); DO_APP_FUNC(0x0256B6F0, bool, MonoBtlsProvider_ValidateCertificate_1, (MonoBtlsX509Chain * chain, MonoBtlsX509VerifyParam * param, MethodInfo * method)); -DO_APP_FUNC(0x0256B910, void, MonoBtlsProvider_CheckValidationResult, (MonoBtlsProvider * __this, ChainValidationHelper * validator, String * targetHost, bool serverMode, X509CertificateCollection * certificates, bool wantsChain, X509Chain * chain, MonoBtlsX509StoreCtx * storeCtx, bool success, SslPolicyErrors__Enum errors, int32_t status11, MethodInfo * method)); +DO_APP_FUNC(0x0256B910, void, MonoBtlsProvider_CheckValidationResult, (MonoBtlsProvider * __this, ChainValidationHelper * validator, String * targetHost, bool serverMode, X509CertificateCollection * certificates, bool wantsChain, X509Chain * chain, MonoBtlsX509StoreCtx * storeCtx, bool success, SslPolicyErrors__Enum * errors, int32_t * status11, MethodInfo * method)); DO_APP_FUNC(0x0256BCD0, X509ChainStatusFlags__Enum, MonoBtlsProvider_MapVerifyErrorToChainStatus, (MonoBtlsX509Error__Enum code, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A308, MonoBtlsProvider_MapVerifyErrorToChainStatus__MethodInfo); DO_APP_FUNC(0x0256BF40, void, MonoBtlsProvider_SetupCertificateStore, (MonoBtlsX509Store * store, MonoTlsSettings * settings, bool server, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A2D0, MonoBtlsProvider_SetupCertificateStore__MethodInfo); DO_APP_FUNC(0x0256C430, void, MonoBtlsProvider_SetupDefaultCertificateStore, (MonoBtlsX509Store * store, MethodInfo * method)); DO_APP_FUNC(0x0256C540, void, MonoBtlsProvider_AddUserStore, (MonoBtlsX509Store * store, MethodInfo * method)); DO_APP_FUNC(0x0256C5E0, void, MonoBtlsProvider_AddMachineStore, (MonoBtlsX509Store * store, MethodInfo * method)); @@ -26087,7 +29405,7 @@ DO_APP_FUNC(0x0256DC50, int32_t, MonoBtlsSsl_mono_btls_ssl_get_version, (void * DO_APP_FUNC(0x0256DCD0, void, MonoBtlsSsl_mono_btls_ssl_set_min_version, (void * handle, int32_t version, MethodInfo * method)); DO_APP_FUNC(0x0256DD60, void, MonoBtlsSsl_mono_btls_ssl_set_max_version, (void * handle, int32_t version, MethodInfo * method)); DO_APP_FUNC(0x0256DDF0, int32_t, MonoBtlsSsl_mono_btls_ssl_get_cipher, (void * handle, MethodInfo * method)); -DO_APP_FUNC(0x0256DE70, int32_t, MonoBtlsSsl_mono_btls_ssl_get_ciphers, (void * handle, void * data, MethodInfo * method)); +DO_APP_FUNC(0x0256DE70, int32_t, MonoBtlsSsl_mono_btls_ssl_get_ciphers, (void * handle, void * * data, MethodInfo * method)); DO_APP_FUNC(0x0256DF00, void *, MonoBtlsSsl_mono_btls_ssl_get_peer_certificate, (void * handle, MethodInfo * method)); DO_APP_FUNC(0x0256DF80, int32_t, MonoBtlsSsl_mono_btls_ssl_set_cipher_list, (void * handle, void * str, MethodInfo * method)); DO_APP_FUNC(0x0256E010, void, MonoBtlsSsl_mono_btls_ssl_print_errors_cb, (void * func, void * ctx, MethodInfo * method)); @@ -26097,10 +29415,12 @@ DO_APP_FUNC(0x0256E1C0, void *, MonoBtlsSsl_mono_btls_ssl_get_server_name, (void DO_APP_FUNC(0x0256E240, void, MonoBtlsSsl_mono_btls_ssl_set_renegotiate_mode, (void * handle, int32_t mode, MethodInfo * method)); DO_APP_FUNC(0x0256E2D0, int32_t, MonoBtlsSsl_mono_btls_ssl_renegotiate_pending, (void * handle, MethodInfo * method)); DO_APP_FUNC(0x0256E350, MonoBtlsSsl_BoringSslHandle *, MonoBtlsSsl_Create_internal, (MonoBtlsSslCtx * ctx, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A298, MonoBtlsSsl_Create_internal__MethodInfo); DO_APP_FUNC(0x0256E4D0, void, MonoBtlsSsl__ctor, (MonoBtlsSsl * __this, MonoBtlsSslCtx * ctx, MethodInfo * method)); DO_APP_FUNC(0x0256E8B0, MonoBtlsSsl_BoringSslHandle *, MonoBtlsSsl_get_Handle, (MonoBtlsSsl * __this, MethodInfo * method)); DO_APP_FUNC(0x0256E930, void, MonoBtlsSsl_SetBio, (MonoBtlsSsl * __this, MonoBtlsBio * bio, MethodInfo * method)); DO_APP_FUNC(0x0256EA50, Exception *, MonoBtlsSsl_ThrowError, (MonoBtlsSsl * __this, String * callerName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A270, MonoBtlsSsl_ThrowError__MethodInfo); DO_APP_FUNC(0x0256EC10, MonoBtlsSslError__Enum, MonoBtlsSsl_GetError, (MonoBtlsSsl * __this, int32_t ret_code, MethodInfo * method)); DO_APP_FUNC(0x0256EC90, void, MonoBtlsSsl_SetCertificate, (MonoBtlsSsl * __this, MonoBtlsX509 * x509, MethodInfo * method)); DO_APP_FUNC(0x0256ED90, void, MonoBtlsSsl_SetPrivateKey, (MonoBtlsSsl * __this, MonoBtlsKey * key, MethodInfo * method)); @@ -26109,10 +29429,11 @@ DO_APP_FUNC(0x0256EF90, MonoBtlsSslError__Enum, MonoBtlsSsl_Accept, (MonoBtlsSsl DO_APP_FUNC(0x0256F050, MonoBtlsSslError__Enum, MonoBtlsSsl_Connect, (MonoBtlsSsl * __this, MethodInfo * method)); DO_APP_FUNC(0x0256F110, MonoBtlsSslError__Enum, MonoBtlsSsl_Handshake, (MonoBtlsSsl * __this, MethodInfo * method)); DO_APP_FUNC(0x0256F1D0, int32_t, MonoBtlsSsl_PrintErrorsCallback, (void * str, void * len, void * ctx, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A2A8, MonoBtlsSsl_PrintErrorsCallback__MethodInfo); DO_APP_FUNC(0x0256F350, String *, MonoBtlsSsl_GetErrors, (MonoBtlsSsl * __this, MethodInfo * method)); DO_APP_FUNC(0x0256F530, void, MonoBtlsSsl_PrintErrors, (MonoBtlsSsl * __this, MethodInfo * method)); -DO_APP_FUNC(0x0256F5C0, MonoBtlsSslError__Enum, MonoBtlsSsl_Read, (MonoBtlsSsl * __this, void * data, int32_t dataSize, MethodInfo * method)); -DO_APP_FUNC(0x0256F6C0, MonoBtlsSslError__Enum, MonoBtlsSsl_Write, (MonoBtlsSsl * __this, void * data, int32_t dataSize, MethodInfo * method)); +DO_APP_FUNC(0x0256F5C0, MonoBtlsSslError__Enum, MonoBtlsSsl_Read, (MonoBtlsSsl * __this, void * data, int32_t * dataSize, MethodInfo * method)); +DO_APP_FUNC(0x0256F6C0, MonoBtlsSslError__Enum, MonoBtlsSsl_Write, (MonoBtlsSsl * __this, void * data, int32_t * dataSize, MethodInfo * method)); DO_APP_FUNC(0x0256F7D0, int32_t, MonoBtlsSsl_GetVersion, (MonoBtlsSsl * __this, MethodInfo * method)); DO_APP_FUNC(0x0256F870, void, MonoBtlsSsl_SetMinVersion, (MonoBtlsSsl * __this, int32_t version, MethodInfo * method)); DO_APP_FUNC(0x0256F920, void, MonoBtlsSsl_SetMaxVersion, (MonoBtlsSsl * __this, int32_t version, MethodInfo * method)); @@ -26155,7 +29476,9 @@ DO_APP_FUNC(0x02571C80, MonoBtlsSslCtx *, MonoBtlsSslCtx_Copy, (MonoBtlsSslCtx * DO_APP_FUNC(0x003C91C0, MonoBtlsX509Store *, MonoBtlsSslCtx_get_CertificateStore, (MonoBtlsSslCtx * __this, MethodInfo * method)); DO_APP_FUNC(0x02571DC0, int32_t, MonoBtlsSslCtx_VerifyCallback, (MonoBtlsSslCtx * __this, bool preverify_ok, MonoBtlsX509StoreCtx * ctx, MethodInfo * method)); DO_APP_FUNC(0x02571DF0, int32_t, MonoBtlsSslCtx_NativeVerifyCallback, (void * instance, int32_t preverify_ok, void * store_ctx, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A1B8, MonoBtlsSslCtx_NativeVerifyCallback__MethodInfo); DO_APP_FUNC(0x02572220, int32_t, MonoBtlsSslCtx_NativeSelectCallback, (void * instance, int32_t count, void * sizes, void * data, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A1C8, MonoBtlsSslCtx_NativeSelectCallback__MethodInfo); DO_APP_FUNC(0x025723D0, String__Array *, MonoBtlsSslCtx_CopyIssuers, (int32_t count, void * sizesPtr, void * dataPtr, MethodInfo * method)); DO_APP_FUNC(0x02572860, void, MonoBtlsSslCtx_SetDebugBio, (MonoBtlsSslCtx * __this, MonoBtlsBio * bio, MethodInfo * method)); DO_APP_FUNC(0x02572940, void, MonoBtlsSslCtx_SetVerifyCallback, (MonoBtlsSslCtx * __this, MonoBtlsVerifyCallback * callback, bool client_cert_required, MethodInfo * method)); @@ -26168,6 +29491,7 @@ DO_APP_FUNC(0x02573060, void, MonoBtlsSslCtx_SetVerifyParam, (MonoBtlsSslCtx * _ DO_APP_FUNC(0x02573170, void, MonoBtlsSslCtx_SetClientCertificateIssuers, (MonoBtlsSslCtx * __this, String__Array * acceptableIssuers, MethodInfo * method)); DO_APP_FUNC(0x02573920, void, MonoBtlsSslCtx_SetServerNameCallback, (MonoBtlsSslCtx * __this, MonoBtlsServerNameCallback * callback, MethodInfo * method)); DO_APP_FUNC(0x02573A20, int32_t, MonoBtlsSslCtx_NativeServerNameCallback, (void * instance, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A1C0, MonoBtlsSslCtx_NativeServerNameCallback__MethodInfo); DO_APP_FUNC(0x02573B90, void, MonoBtlsSslCtx_Close, (MonoBtlsSslCtx * __this, MethodInfo * method)); DO_APP_FUNC(0x025614F0, void, MonoBtlsSslCtx_BoringSslCtxHandle__ctor, (MonoBtlsSslCtx_BoringSslCtxHandle * __this, void * handle, MethodInfo * method)); DO_APP_FUNC(0x02573CA0, bool, MonoBtlsSslCtx_BoringSslCtxHandle_ReleaseHandle, (MonoBtlsSslCtx_BoringSslCtxHandle * __this, MethodInfo * method)); @@ -26189,6 +29513,7 @@ DO_APP_FUNC(0x02574300, bool, MonoBtlsUtils_Compare, (Byte__Array * a, Byte__Arr DO_APP_FUNC(0x02574380, bool, MonoBtlsUtils_AppendEntry, (StringBuilder * sb, MonoBtlsX509Name * name, int32_t index, String * separator, bool quotes, MethodInfo * method)); DO_APP_FUNC(0x02574A60, String *, MonoBtlsUtils_GetSeparator, (X500DistinguishedNameFlags__Enum flag, MethodInfo * method)); DO_APP_FUNC(0x02574AD0, String *, MonoBtlsUtils_FormatName, (MonoBtlsX509Name * name, X500DistinguishedNameFlags__Enum flag, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A1B0, MonoBtlsUtils_FormatName__MethodInfo); DO_APP_FUNC(0x02574C70, String *, MonoBtlsUtils_FormatName_1, (MonoBtlsX509Name * name, bool reversed, String * separator, bool quotes, MethodInfo * method)); DO_APP_FUNC(0x02574DE0, void, MonoBtlsUtils__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02574EC0, MonoBtlsX509_BoringX509Handle *, MonoBtlsX509_get_Handle, (MonoBtlsX509 * __this, MethodInfo * method)); @@ -26201,17 +29526,17 @@ DO_APP_FUNC(0x02575160, int32_t, MonoBtlsX509_mono_btls_x509_get_subject_name_st DO_APP_FUNC(0x02575200, int32_t, MonoBtlsX509_mono_btls_x509_get_issuer_name_string, (void * handle, void * buffer, int32_t size, MethodInfo * method)); DO_APP_FUNC(0x025752A0, int32_t, MonoBtlsX509_mono_btls_x509_get_raw_data, (void * handle, void * bio, MonoBtlsX509Format__Enum format, MethodInfo * method)); DO_APP_FUNC(0x02575340, int32_t, MonoBtlsX509_mono_btls_x509_cmp, (void * a, void * b, MethodInfo * method)); -DO_APP_FUNC(0x025753D0, int32_t, MonoBtlsX509_mono_btls_x509_get_hash, (void * handle, void * data, MethodInfo * method)); +DO_APP_FUNC(0x025753D0, int32_t, MonoBtlsX509_mono_btls_x509_get_hash, (void * handle, void * * data, MethodInfo * method)); DO_APP_FUNC(0x02575460, int64_t, MonoBtlsX509_mono_btls_x509_get_not_before, (void * handle, MethodInfo * method)); DO_APP_FUNC(0x025754E0, int64_t, MonoBtlsX509_mono_btls_x509_get_not_after, (void * handle, MethodInfo * method)); DO_APP_FUNC(0x02575560, int32_t, MonoBtlsX509_mono_btls_x509_get_public_key, (void * handle, void * bio, MethodInfo * method)); DO_APP_FUNC(0x025755F0, int32_t, MonoBtlsX509_mono_btls_x509_get_serial_number, (void * handle, void * data, int32_t size, int32_t mono_style, MethodInfo * method)); DO_APP_FUNC(0x025756A0, int32_t, MonoBtlsX509_mono_btls_x509_get_version, (void * handle, MethodInfo * method)); DO_APP_FUNC(0x02575720, int32_t, MonoBtlsX509_mono_btls_x509_get_signature_algorithm, (void * handle, void * buffer, int32_t size, MethodInfo * method)); -DO_APP_FUNC(0x025757C0, int32_t, MonoBtlsX509_mono_btls_x509_get_public_key_asn1, (void * handle, void * oid, int32_t oid_size, void * data, int32_t size, MethodInfo * method)); -DO_APP_FUNC(0x02575870, int32_t, MonoBtlsX509_mono_btls_x509_get_public_key_parameters, (void * handle, void * oid, int32_t oid_size, void * data, int32_t size, MethodInfo * method)); +DO_APP_FUNC(0x025757C0, int32_t, MonoBtlsX509_mono_btls_x509_get_public_key_asn1, (void * handle, void * oid, int32_t oid_size, void * * data, int32_t * size, MethodInfo * method)); +DO_APP_FUNC(0x02575870, int32_t, MonoBtlsX509_mono_btls_x509_get_public_key_parameters, (void * handle, void * oid, int32_t oid_size, void * * data, int32_t * size, MethodInfo * method)); DO_APP_FUNC(0x02575920, void *, MonoBtlsX509_mono_btls_x509_get_pubkey, (void * handle, MethodInfo * method)); -DO_APP_FUNC(0x025759A0, int32_t, MonoBtlsX509_mono_btls_x509_get_subject_key_identifier, (void * handle, void * data, int32_t size, MethodInfo * method)); +DO_APP_FUNC(0x025759A0, int32_t, MonoBtlsX509_mono_btls_x509_get_subject_key_identifier, (void * handle, void * * data, int32_t * size, MethodInfo * method)); DO_APP_FUNC(0x02575A40, int32_t, MonoBtlsX509_mono_btls_x509_print, (void * handle, void * bio, MethodInfo * method)); DO_APP_FUNC(0x02575AD0, void, MonoBtlsX509_mono_btls_x509_free, (void * handle, MethodInfo * method)); DO_APP_FUNC(0x02575B50, void *, MonoBtlsX509_mono_btls_x509_dup, (void * handle, MethodInfo * method)); @@ -26221,6 +29546,7 @@ DO_APP_FUNC(0x02575CF0, int32_t, MonoBtlsX509_mono_btls_x509_add_explicit_trust, DO_APP_FUNC(0x02575D80, MonoBtlsX509 *, MonoBtlsX509_Copy, (MonoBtlsX509 * __this, MethodInfo * method)); DO_APP_FUNC(0x02575F50, MonoBtlsX509 *, MonoBtlsX509_Duplicate, (MonoBtlsX509 * __this, MethodInfo * method)); DO_APP_FUNC(0x02576120, MonoBtlsX509 *, MonoBtlsX509_LoadFromData, (Byte__Array * buffer, MonoBtlsX509Format__Enum format, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A160, MonoBtlsX509_LoadFromData__MethodInfo); DO_APP_FUNC(0x02576490, MonoBtlsX509Name *, MonoBtlsX509_GetSubjectName, (MonoBtlsX509 * __this, MethodInfo * method)); DO_APP_FUNC(0x02576690, String *, MonoBtlsX509_GetSubjectNameString, (MonoBtlsX509 * __this, MethodInfo * method)); DO_APP_FUNC(0x025768C0, int64_t, MonoBtlsX509_GetSubjectNameHash, (MonoBtlsX509 * __this, MethodInfo * method)); @@ -26259,6 +29585,7 @@ DO_APP_FUNC(0x02579550, void, MonoBtlsX509Chain__ctor, (MonoBtlsX509Chain * __th DO_APP_FUNC(0x003BCBE0, void, MonoBtlsX509Chain__ctor_1, (MonoBtlsX509Chain * __this, MonoBtlsX509Chain_BoringX509ChainHandle * handle, MethodInfo * method)); DO_APP_FUNC(0x02579690, int32_t, MonoBtlsX509Chain_get_Count, (MonoBtlsX509Chain * __this, MethodInfo * method)); DO_APP_FUNC(0x02579730, MonoBtlsX509 *, MonoBtlsX509Chain_GetCertificate, (MonoBtlsX509Chain * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A0B8, MonoBtlsX509Chain_GetCertificate__MethodInfo); DO_APP_FUNC(0x02579960, void, MonoBtlsX509Chain_Dump, (MonoBtlsX509Chain * __this, MethodInfo * method)); DO_APP_FUNC(0x02579BD0, void, MonoBtlsX509Chain_AddCertificate, (MonoBtlsX509Chain * __this, MonoBtlsX509 * x509, MethodInfo * method)); DO_APP_FUNC(0x02579C90, MonoBtlsX509Chain *, MonoBtlsX509Chain_Copy, (MonoBtlsX509Chain * __this, MethodInfo * method)); @@ -26278,10 +29605,12 @@ DO_APP_FUNC(0x0257A3C0, int64_t, MonoBtlsX509Crl_mono_btls_x509_crl_get_version, DO_APP_FUNC(0x0257A440, void *, MonoBtlsX509Crl_mono_btls_x509_crl_get_issuer, (void * handle, MethodInfo * method)); DO_APP_FUNC(0x0257A4C0, void, MonoBtlsX509Crl_mono_btls_x509_crl_free, (void * handle, MethodInfo * method)); DO_APP_FUNC(0x0257A540, MonoBtlsX509Crl *, MonoBtlsX509Crl_LoadFromData, (Byte__Array * buffer, MonoBtlsX509Format__Enum format, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A088, MonoBtlsX509Crl_LoadFromData__MethodInfo); DO_APP_FUNC(0x0257A8F0, MonoBtlsX509Revoked *, MonoBtlsX509Crl_GetByCert, (MonoBtlsX509Crl * __this, MonoBtlsX509 * x509, MethodInfo * method)); DO_APP_FUNC(0x0257AAE0, MonoBtlsX509Revoked *, MonoBtlsX509Crl_GetBySerial, (MonoBtlsX509Crl * __this, Byte__Array * serial, MethodInfo * method)); DO_APP_FUNC(0x0257ACE0, int32_t, MonoBtlsX509Crl_GetRevokedCount, (MonoBtlsX509Crl * __this, MethodInfo * method)); DO_APP_FUNC(0x0257AD80, MonoBtlsX509Revoked *, MonoBtlsX509Crl_GetRevoked, (MonoBtlsX509Crl * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A058, MonoBtlsX509Crl_GetRevoked__MethodInfo); DO_APP_FUNC(0x0257AFE0, DateTime, MonoBtlsX509Crl_GetLastUpdate, (MonoBtlsX509Crl * __this, MethodInfo * method)); DO_APP_FUNC(0x0257B180, DateTime, MonoBtlsX509Crl_GetNextUpdate, (MonoBtlsX509Crl * __this, MethodInfo * method)); DO_APP_FUNC(0x0257B320, int64_t, MonoBtlsX509Crl_GetVersion, (MonoBtlsX509Crl * __this, MethodInfo * method)); @@ -26307,11 +29636,13 @@ DO_APP_FUNC(0x0257BCD0, void *, MonoBtlsX509Lookup_mono_btls_x509_lookup_by_fing DO_APP_FUNC(0x0257BD70, void, MonoBtlsX509Lookup_mono_btls_x509_lookup_free, (void * handle, MethodInfo * method)); DO_APP_FUNC(0x0257BDF0, void *, MonoBtlsX509Lookup_mono_btls_x509_lookup_peek_lookup, (void * handle, MethodInfo * method)); DO_APP_FUNC(0x0257BE70, MonoBtlsX509Lookup_BoringX509LookupHandle *, MonoBtlsX509Lookup_Create_internal, (MonoBtlsX509Store * store, MonoBtlsX509LookupType__Enum type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A018, MonoBtlsX509Lookup_Create_internal__MethodInfo); DO_APP_FUNC(0x0257BFF0, void, MonoBtlsX509Lookup__ctor, (MonoBtlsX509Lookup * __this, MonoBtlsX509Store * store, MonoBtlsX509LookupType__Enum type, MethodInfo * method)); DO_APP_FUNC(0x0257C240, void *, MonoBtlsX509Lookup_GetNativeLookup, (MonoBtlsX509Lookup * __this, MethodInfo * method)); DO_APP_FUNC(0x0257C2E0, void, MonoBtlsX509Lookup_LoadFile, (MonoBtlsX509Lookup * __this, String * file, MonoBtlsX509FileType__Enum type, MethodInfo * method)); DO_APP_FUNC(0x0257C4A0, void, MonoBtlsX509Lookup_AddDirectory, (MonoBtlsX509Lookup * __this, String * dir, MonoBtlsX509FileType__Enum type, MethodInfo * method)); DO_APP_FUNC(0x0257C660, void, MonoBtlsX509Lookup_AddMono, (MonoBtlsX509Lookup * __this, MonoBtlsX509LookupMono * monoLookup, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A038, MonoBtlsX509Lookup_AddMono__MethodInfo); DO_APP_FUNC(0x0257C970, void, MonoBtlsX509Lookup_Initialize, (MonoBtlsX509Lookup * __this, MethodInfo * method)); DO_APP_FUNC(0x0257CA50, void, MonoBtlsX509Lookup_Shutdown, (MonoBtlsX509Lookup * __this, MethodInfo * method)); DO_APP_FUNC(0x0257CB30, MonoBtlsX509 *, MonoBtlsX509Lookup_LookupBySubject, (MonoBtlsX509Lookup * __this, MonoBtlsX509Name * name, MethodInfo * method)); @@ -26326,29 +29657,31 @@ DO_APP_FUNC(0x0257D510, void, MonoBtlsX509LookupMono_mono_btls_x509_lookup_mono_ DO_APP_FUNC(0x0257D5B0, int32_t, MonoBtlsX509LookupMono_mono_btls_x509_lookup_mono_free, (void * handle, MethodInfo * method)); DO_APP_FUNC(0x0257D630, void, MonoBtlsX509LookupMono__ctor, (MonoBtlsX509LookupMono * __this, MethodInfo * method)); DO_APP_FUNC(0x0257DA10, void, MonoBtlsX509LookupMono_Install, (MonoBtlsX509LookupMono * __this, MonoBtlsX509Lookup * lookup, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A010, MonoBtlsX509LookupMono_Install__MethodInfo); DO_APP_FUNC(0x0257DAB0, void, MonoBtlsX509LookupMono_AddCertificate, (MonoBtlsX509LookupMono * __this, MonoBtlsX509 * certificate, MethodInfo * method)); -DO_APP_FUNC(0x0257DBD0, int32_t, MonoBtlsX509LookupMono_OnGetBySubject, (void * instance, void * name_ptr, void * x509_ptr, MethodInfo * method)); +DO_APP_FUNC(0x0257DBD0, int32_t, MonoBtlsX509LookupMono_OnGetBySubject, (void * instance, void * name_ptr, void * * x509_ptr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09FF0, MonoBtlsX509LookupMono_OnGetBySubject__MethodInfo); DO_APP_FUNC(0x0257DFD0, void, MonoBtlsX509LookupMono_Close, (MonoBtlsX509LookupMono * __this, MethodInfo * method)); DO_APP_FUNC(0x025614F0, void, MonoBtlsX509LookupMono_BoringX509LookupMonoHandle__ctor, (MonoBtlsX509LookupMono_BoringX509LookupMonoHandle * __this, void * handle, MethodInfo * method)); DO_APP_FUNC(0x0257E130, bool, MonoBtlsX509LookupMono_BoringX509LookupMonoHandle_ReleaseHandle, (MonoBtlsX509LookupMono_BoringX509LookupMonoHandle * __this, MethodInfo * method)); DO_APP_FUNC(0x003FABF0, void, MonoBtlsX509LookupMono_BySubjectFunc__ctor, (MonoBtlsX509LookupMono_BySubjectFunc * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EF9C0, int32_t, MonoBtlsX509LookupMono_BySubjectFunc_Invoke, (MonoBtlsX509LookupMono_BySubjectFunc * __this, void * instance, void * name, void * x509_ptr, MethodInfo * method)); -DO_APP_FUNC(0x0257E1B0, IAsyncResult *, MonoBtlsX509LookupMono_BySubjectFunc_BeginInvoke, (MonoBtlsX509LookupMono_BySubjectFunc * __this, void * instance, void * name, void * x509_ptr, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003F75B0, int32_t, MonoBtlsX509LookupMono_BySubjectFunc_EndInvoke, (MonoBtlsX509LookupMono_BySubjectFunc * __this, void * x509_ptr, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EF9C0, int32_t, MonoBtlsX509LookupMono_BySubjectFunc_Invoke, (MonoBtlsX509LookupMono_BySubjectFunc * __this, void * instance, void * name, void * * x509_ptr, MethodInfo * method)); +DO_APP_FUNC(0x0257E1B0, IAsyncResult *, MonoBtlsX509LookupMono_BySubjectFunc_BeginInvoke, (MonoBtlsX509LookupMono_BySubjectFunc * __this, void * instance, void * name, void * * x509_ptr, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003F75B0, int32_t, MonoBtlsX509LookupMono_BySubjectFunc_EndInvoke, (MonoBtlsX509LookupMono_BySubjectFunc * __this, void * * x509_ptr, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x0257E260, void, MonoBtlsX509LookupMonoCollection__ctor, (MonoBtlsX509LookupMonoCollection * __this, X509CertificateCollection * collection, MonoBtlsX509TrustKind__Enum trust, MethodInfo * method)); DO_APP_FUNC(0x0257E2F0, void, MonoBtlsX509LookupMonoCollection_Initialize, (MonoBtlsX509LookupMonoCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x0257E730, MonoBtlsX509 *, MonoBtlsX509LookupMonoCollection_OnGetBySubject, (MonoBtlsX509LookupMonoCollection * __this, MonoBtlsX509Name * name, MethodInfo * method)); DO_APP_FUNC(0x0257E7F0, void, MonoBtlsX509LookupMonoCollection_Close, (MonoBtlsX509LookupMonoCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x0257E9C0, int32_t, MonoBtlsX509Name_mono_btls_x509_name_print_bio, (void * handle, void * bio, MethodInfo * method)); DO_APP_FUNC(0x0257EA50, int32_t, MonoBtlsX509Name_mono_btls_x509_name_print_string, (void * handle, void * buffer, int32_t size, MethodInfo * method)); -DO_APP_FUNC(0x0257EAF0, int32_t, MonoBtlsX509Name_mono_btls_x509_name_get_raw_data, (void * handle, void * buffer, int32_t use_canon_enc, MethodInfo * method)); +DO_APP_FUNC(0x0257EAF0, int32_t, MonoBtlsX509Name_mono_btls_x509_name_get_raw_data, (void * handle, void * * buffer, int32_t use_canon_enc, MethodInfo * method)); DO_APP_FUNC(0x0257EB90, int64_t, MonoBtlsX509Name_mono_btls_x509_name_hash, (void * handle, MethodInfo * method)); DO_APP_FUNC(0x0257EC10, int64_t, MonoBtlsX509Name_mono_btls_x509_name_hash_old, (void * handle, MethodInfo * method)); DO_APP_FUNC(0x0257EC90, int32_t, MonoBtlsX509Name_mono_btls_x509_name_get_entry_count, (void * handle, MethodInfo * method)); DO_APP_FUNC(0x0257ED10, MonoBtlsX509NameEntryType__Enum, MonoBtlsX509Name_mono_btls_x509_name_get_entry_type, (void * name, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x0257EDA0, int32_t, MonoBtlsX509Name_mono_btls_x509_name_get_entry_oid, (void * name, int32_t index, void * buffer, int32_t size, MethodInfo * method)); -DO_APP_FUNC(0x0257EE40, int32_t, MonoBtlsX509Name_mono_btls_x509_name_get_entry_oid_data, (void * name, int32_t index, void * data, MethodInfo * method)); -DO_APP_FUNC(0x0257EEE0, int32_t, MonoBtlsX509Name_mono_btls_x509_name_get_entry_value, (void * name, int32_t index, int32_t tag, void * str, MethodInfo * method)); +DO_APP_FUNC(0x0257EE40, int32_t, MonoBtlsX509Name_mono_btls_x509_name_get_entry_oid_data, (void * name, int32_t index, void * * data, MethodInfo * method)); +DO_APP_FUNC(0x0257EEE0, int32_t, MonoBtlsX509Name_mono_btls_x509_name_get_entry_value, (void * name, int32_t index, int32_t * tag, void * * str, MethodInfo * method)); DO_APP_FUNC(0x0257EF80, void *, MonoBtlsX509Name_mono_btls_x509_name_from_data, (Void * data, int32_t len, int32_t use_canon_enc, MethodInfo * method)); DO_APP_FUNC(0x0257F020, void, MonoBtlsX509Name_mono_btls_x509_name_free, (void * handle, MethodInfo * method)); DO_APP_FUNC(0x0257F0A0, MonoBtlsX509Name_BoringX509NameHandle *, MonoBtlsX509Name_get_Handle, (MonoBtlsX509Name * __this, MethodInfo * method)); @@ -26360,10 +29693,14 @@ DO_APP_FUNC(0x0257F5F0, int64_t, MonoBtlsX509Name_GetHash, (MonoBtlsX509Name * _ DO_APP_FUNC(0x0257F690, int64_t, MonoBtlsX509Name_GetHashOld, (MonoBtlsX509Name * __this, MethodInfo * method)); DO_APP_FUNC(0x0257F730, int32_t, MonoBtlsX509Name_GetEntryCount, (MonoBtlsX509Name * __this, MethodInfo * method)); DO_APP_FUNC(0x0257F7D0, MonoBtlsX509NameEntryType__Enum, MonoBtlsX509Name_GetEntryType, (MonoBtlsX509Name * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09F88, MonoBtlsX509Name_GetEntryType__MethodInfo); DO_APP_FUNC(0x0257F8D0, String *, MonoBtlsX509Name_GetEntryOid, (MonoBtlsX509Name * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09F90, MonoBtlsX509Name_GetEntryOid__MethodInfo); DO_APP_FUNC(0x0257FB50, Byte__Array *, MonoBtlsX509Name_GetEntryOidData, (MonoBtlsX509Name * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x0257FCC0, String *, MonoBtlsX509Name_GetEntryValue, (MonoBtlsX509Name * __this, int32_t index, int32_t tag, MethodInfo * method)); +DO_APP_FUNC(0x0257FCC0, String *, MonoBtlsX509Name_GetEntryValue, (MonoBtlsX509Name * __this, int32_t index, int32_t * tag, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09F80, MonoBtlsX509Name_GetEntryValue__MethodInfo); DO_APP_FUNC(0x0257FF20, MonoBtlsX509Name *, MonoBtlsX509Name_CreateFromData, (Byte__Array * data, bool use_canon_enc, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09FA0, MonoBtlsX509Name_CreateFromData__MethodInfo); DO_APP_FUNC(0x02580170, void, MonoBtlsX509Name_BoringX509NameHandle__ctor, (MonoBtlsX509Name_BoringX509NameHandle * __this, void * handle, bool ownsHandle, MethodInfo * method)); DO_APP_FUNC(0x025801A0, bool, MonoBtlsX509Name_BoringX509NameHandle_ReleaseHandle, (MonoBtlsX509Name_BoringX509NameHandle * __this, MethodInfo * method)); DO_APP_FUNC(0x02580230, MonoBtlsX509Revoked_BoringX509RevokedHandle *, MonoBtlsX509Revoked_get_Handle, (MonoBtlsX509Revoked * __this, MethodInfo * method)); @@ -26392,8 +29729,11 @@ DO_APP_FUNC(0x02580FA0, void, MonoBtlsX509Store_mono_btls_x509_store_free, (void DO_APP_FUNC(0x02581020, void, MonoBtlsX509Store_LoadLocations, (MonoBtlsX509Store * __this, String * file, String * path, MethodInfo * method)); DO_APP_FUNC(0x025812E0, void, MonoBtlsX509Store_SetDefaultPaths, (MonoBtlsX509Store * __this, MethodInfo * method)); DO_APP_FUNC(0x025813C0, MonoBtlsX509Store_BoringX509StoreHandle *, MonoBtlsX509Store_Create_internal, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09F00, MonoBtlsX509Store_Create_internal__MethodInfo); DO_APP_FUNC(0x02581510, MonoBtlsX509Store_BoringX509StoreHandle *, MonoBtlsX509Store_Create_internal_1, (void * store_ctx, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09EF8, MonoBtlsX509Store_Create_internal_1__MethodInfo); DO_APP_FUNC(0x02581610, MonoBtlsX509Store_BoringX509StoreHandle *, MonoBtlsX509Store_Create_internal_2, (MonoBtlsSslCtx_BoringSslCtxHandle * ctx, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09F08, MonoBtlsX509Store_Create_internal_2__MethodInfo); DO_APP_FUNC(0x02581720, void, MonoBtlsX509Store__ctor, (MonoBtlsX509Store * __this, MethodInfo * method)); DO_APP_FUNC(0x025818D0, void, MonoBtlsX509Store__ctor_1, (MonoBtlsX509Store * __this, void * store_ctx, MethodInfo * method)); DO_APP_FUNC(0x02581A30, void, MonoBtlsX509Store__ctor_2, (MonoBtlsX509Store * __this, MonoBtlsSslCtx_BoringSslCtxHandle * ctx, MethodInfo * method)); @@ -26410,7 +29750,7 @@ DO_APP_FUNC(0x025825A0, bool, MonoBtlsX509Store_BoringX509StoreHandle_ReleaseHan DO_APP_FUNC(0x02582620, MonoBtlsX509StoreCtx_BoringX509StoreCtxHandle *, MonoBtlsX509StoreCtx_get_Handle, (MonoBtlsX509StoreCtx * __this, MethodInfo * method)); DO_APP_FUNC(0x025826A0, void *, MonoBtlsX509StoreCtx_mono_btls_x509_store_ctx_new, (MethodInfo * method)); DO_APP_FUNC(0x02582710, void *, MonoBtlsX509StoreCtx_mono_btls_x509_store_ctx_from_ptr, (void * ctx, MethodInfo * method)); -DO_APP_FUNC(0x02582790, MonoBtlsX509Error__Enum, MonoBtlsX509StoreCtx_mono_btls_x509_store_ctx_get_error, (void * handle, void * error_string, MethodInfo * method)); +DO_APP_FUNC(0x02582790, MonoBtlsX509Error__Enum, MonoBtlsX509StoreCtx_mono_btls_x509_store_ctx_get_error, (void * handle, void * * error_string, MethodInfo * method)); DO_APP_FUNC(0x02582820, int32_t, MonoBtlsX509StoreCtx_mono_btls_x509_store_ctx_get_error_depth, (void * handle, MethodInfo * method)); DO_APP_FUNC(0x025828A0, void *, MonoBtlsX509StoreCtx_mono_btls_x509_store_ctx_get_chain, (void * handle, MethodInfo * method)); DO_APP_FUNC(0x02582920, int32_t, MonoBtlsX509StoreCtx_mono_btls_x509_store_ctx_init, (void * handle, void * store, void * chain, MethodInfo * method)); @@ -26425,6 +29765,7 @@ DO_APP_FUNC(0x02582D60, void *, MonoBtlsX509StoreCtx_mono_btls_x509_store_ctx_up DO_APP_FUNC(0x02582DE0, void, MonoBtlsX509StoreCtx_mono_btls_x509_store_ctx_free, (void * handle, MethodInfo * method)); DO_APP_FUNC(0x02582E60, void, MonoBtlsX509StoreCtx__ctor, (MonoBtlsX509StoreCtx * __this, MethodInfo * method)); DO_APP_FUNC(0x02582FB0, MonoBtlsX509StoreCtx_BoringX509StoreCtxHandle *, MonoBtlsX509StoreCtx_Create_internal, (void * store_ctx, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09D48, MonoBtlsX509StoreCtx_Create_internal__MethodInfo); DO_APP_FUNC(0x02583120, void, MonoBtlsX509StoreCtx__ctor_1, (MonoBtlsX509StoreCtx * __this, int32_t preverify_ok, void * store_ctx, MethodInfo * method)); DO_APP_FUNC(0x02583330, void, MonoBtlsX509StoreCtx__ctor_2, (MonoBtlsX509StoreCtx * __this, MonoBtlsX509StoreCtx_BoringX509StoreCtxHandle * ptr, Nullable_1_Int32_ verifyResult, MethodInfo * method)); DO_APP_FUNC(0x02583390, MonoBtlsX509Error__Enum, MonoBtlsX509StoreCtx_GetError, (MonoBtlsX509StoreCtx * __this, MethodInfo * method)); @@ -26435,6 +29776,7 @@ DO_APP_FUNC(0x02583870, MonoBtlsX509Chain *, MonoBtlsX509StoreCtx_GetUntrusted, DO_APP_FUNC(0x02583A40, void, MonoBtlsX509StoreCtx_Initialize, (MonoBtlsX509StoreCtx * __this, MonoBtlsX509Store * store, MonoBtlsX509Chain * chain, MethodInfo * method)); DO_APP_FUNC(0x02583B80, void, MonoBtlsX509StoreCtx_SetVerifyParam, (MonoBtlsX509StoreCtx * __this, MonoBtlsX509VerifyParam * param, MethodInfo * method)); DO_APP_FUNC(0x02583C90, int32_t, MonoBtlsX509StoreCtx_get_VerifyResult, (MonoBtlsX509StoreCtx * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09E60, MonoBtlsX509StoreCtx_get_VerifyResult__MethodInfo); DO_APP_FUNC(0x02583D20, int32_t, MonoBtlsX509StoreCtx_Verify, (MonoBtlsX509StoreCtx * __this, MethodInfo * method)); DO_APP_FUNC(0x02583E20, MonoBtlsX509 *, MonoBtlsX509StoreCtx_LookupBySubject, (MonoBtlsX509StoreCtx * __this, MonoBtlsX509Name * name, MethodInfo * method)); DO_APP_FUNC(0x02584010, MonoBtlsX509 *, MonoBtlsX509StoreCtx_GetCurrentCertificate, (MonoBtlsX509StoreCtx * __this, MethodInfo * method)); @@ -26447,6 +29789,7 @@ DO_APP_FUNC(0x025847C0, void, MonoBtlsX509StoreManager_Initialize, (MethodInfo * DO_APP_FUNC(0x025848C0, void, MonoBtlsX509StoreManager_DoInitialize, (MethodInfo * method)); DO_APP_FUNC(0x02584FC0, bool, MonoBtlsX509StoreManager_HasStore, (MonoBtlsX509StoreType__Enum type, MethodInfo * method)); DO_APP_FUNC(0x02584FF0, String *, MonoBtlsX509StoreManager_GetStorePath, (MonoBtlsX509StoreType__Enum type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09B98, MonoBtlsX509StoreManager_GetStorePath__MethodInfo); DO_APP_FUNC(0x02585130, MonoBtlsX509VerifyParam_BoringX509VerifyParamHandle *, MonoBtlsX509VerifyParam_get_Handle, (MonoBtlsX509VerifyParam * __this, MethodInfo * method)); DO_APP_FUNC(0x025851B0, void *, MonoBtlsX509VerifyParam_mono_btls_x509_verify_param_new, (MethodInfo * method)); DO_APP_FUNC(0x02585220, void *, MonoBtlsX509VerifyParam_mono_btls_x509_verify_param_copy, (void * handle, MethodInfo * method)); @@ -26471,8 +29814,10 @@ DO_APP_FUNC(0x02585C00, MonoBtlsX509VerifyParam *, MonoBtlsX509VerifyParam_Copy, DO_APP_FUNC(0x02585DD0, MonoBtlsX509VerifyParam *, MonoBtlsX509VerifyParam_GetSslClient, (MethodInfo * method)); DO_APP_FUNC(0x02585E10, MonoBtlsX509VerifyParam *, MonoBtlsX509VerifyParam_GetSslServer, (MethodInfo * method)); DO_APP_FUNC(0x02585E50, MonoBtlsX509VerifyParam *, MonoBtlsX509VerifyParam_Lookup, (String * name, bool fail, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09A88, MonoBtlsX509VerifyParam_Lookup__MethodInfo); DO_APP_FUNC(0x02586170, bool, MonoBtlsX509VerifyParam_get_CanModify, (MonoBtlsX509VerifyParam * __this, MethodInfo * method)); DO_APP_FUNC(0x02586210, void, MonoBtlsX509VerifyParam_WantToModify, (MonoBtlsX509VerifyParam * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09888, MonoBtlsX509VerifyParam_WantToModify__MethodInfo); DO_APP_FUNC(0x02586300, void, MonoBtlsX509VerifyParam_SetName, (MonoBtlsX509VerifyParam * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x025864B0, void, MonoBtlsX509VerifyParam_SetHost, (MonoBtlsX509VerifyParam * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x02586680, void, MonoBtlsX509VerifyParam_AddHost, (MonoBtlsX509VerifyParam * __this, String * name, MethodInfo * method)); @@ -26492,22 +29837,25 @@ DO_APP_FUNC(0x02587190, void, X509CertificateImplBtls__ctor_1, (X509CertificateI DO_APP_FUNC(0x02587210, void, X509CertificateImplBtls__ctor_2, (X509CertificateImplBtls * __this, X509CertificateImplBtls * other, MethodInfo * method)); DO_APP_FUNC(0x02587570, void, X509CertificateImplBtls__ctor_3, (X509CertificateImplBtls * __this, Byte__Array * data, MonoBtlsX509Format__Enum format, MethodInfo * method)); DO_APP_FUNC(0x025875E0, void, X509CertificateImplBtls__ctor_4, (X509CertificateImplBtls * __this, Byte__Array * data, SafePasswordHandle * password, X509KeyStorageFlags__Enum keyStorageFlags, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D098F8, X509CertificateImplBtls__ctor_4__MethodInfo); DO_APP_FUNC(0x02587790, bool, X509CertificateImplBtls_get_IsValid, (X509CertificateImplBtls * __this, MethodInfo * method)); DO_APP_FUNC(0x025877E0, void *, X509CertificateImplBtls_get_Handle, (X509CertificateImplBtls * __this, MethodInfo * method)); DO_APP_FUNC(0x02587810, void *, X509CertificateImplBtls_GetNativeAppleCertificate, (X509CertificateImplBtls * __this, MethodInfo * method)); DO_APP_FUNC(0x02587850, MonoBtlsX509 *, X509CertificateImplBtls_get_X509, (X509CertificateImplBtls * __this, MethodInfo * method)); DO_APP_FUNC(0x025878A0, MonoBtlsKey *, X509CertificateImplBtls_get_NativePrivateKey, (X509CertificateImplBtls * __this, MethodInfo * method)); DO_APP_FUNC(0x025878F0, X509CertificateImpl *, X509CertificateImplBtls_Clone, (X509CertificateImplBtls * __this, MethodInfo * method)); -DO_APP_FUNC(0x025879A0, bool, X509CertificateImplBtls_Equals, (X509CertificateImplBtls * __this, X509CertificateImpl * other, bool result, MethodInfo * method)); +DO_APP_FUNC(0x025879A0, bool, X509CertificateImplBtls_Equals, (X509CertificateImplBtls * __this, X509CertificateImpl * other, bool * result, MethodInfo * method)); DO_APP_FUNC(0x02587AD0, Byte__Array *, X509CertificateImplBtls_GetRawCertData, (X509CertificateImplBtls * __this, MethodInfo * method)); DO_APP_FUNC(0x006C5130, X509CertificateImplCollection *, X509CertificateImplBtls_get_IntermediateCertificates, (X509CertificateImplBtls * __this, MethodInfo * method)); DO_APP_FUNC(0x02587B80, void, X509CertificateImplBtls_Dispose, (X509CertificateImplBtls * __this, bool disposing, MethodInfo * method)); DO_APP_FUNC(0x02587C60, X509Certificate2Impl *, X509CertificateImplBtls_get_FallbackImpl, (X509CertificateImplBtls * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09710, X509CertificateImplBtls_get_FallbackImpl__MethodInfo); DO_APP_FUNC(0x023CBF20, bool, X509CertificateImplBtls_get_HasPrivateKey, (X509CertificateImplBtls * __this, MethodInfo * method)); DO_APP_FUNC(0x02587CB0, AsymmetricAlgorithm *, X509CertificateImplBtls_get_PrivateKey, (X509CertificateImplBtls * __this, MethodInfo * method)); DO_APP_FUNC(0x02587CF0, void, X509CertificateImplBtls_set_PrivateKey, (X509CertificateImplBtls * __this, AsymmetricAlgorithm * value, MethodInfo * method)); DO_APP_FUNC(0x02587CB0, RSA *, X509CertificateImplBtls_GetRSAPrivateKey, (X509CertificateImplBtls * __this, MethodInfo * method)); DO_APP_FUNC(0x02587E60, DSA *, X509CertificateImplBtls_GetDSAPrivateKey, (X509CertificateImplBtls * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D096A0, X509CertificateImplBtls_GetDSAPrivateKey__MethodInfo); DO_APP_FUNC(0x02587EB0, PublicKey *, X509CertificateImplBtls_get_PublicKey, (X509CertificateImplBtls * __this, MethodInfo * method)); DO_APP_FUNC(0x025880B0, void, X509CertificateImplBtls_Import, (X509CertificateImplBtls * __this, Byte__Array * data, MethodInfo * method)); DO_APP_FUNC(0x02588170, void, X509CertificateImplBtls_ImportPkcs12, (X509CertificateImplBtls * __this, Byte__Array * data, SafePasswordHandle * password, MethodInfo * method)); @@ -26535,21 +29883,23 @@ DO_APP_FUNC(0x0258AA60, X509CertificateImpl *, X509PalImplBtls_Import, (X509PalI DO_APP_FUNC(0x0258AA90, X509Certificate2Impl *, X509PalImplBtls_Import_1, (X509PalImplBtls * __this, Byte__Array * data, SafePasswordHandle * password, X509KeyStorageFlags__Enum keyStorageFlags, MethodInfo * method)); DO_APP_FUNC(0x0258AAC0, X509Certificate2Impl *, X509PalImplBtls_Import_2, (X509PalImplBtls * __this, X509Certificate * cert, MethodInfo * method)); DO_APP_FUNC(0x0258AC00, void *, NativeObjectHelper_GetHandle, (INativeObject * self, MethodInfo * method)); -DO_APP_FUNC(0x0258AC70, bool, NativeMethods_DuplicateHandle, (HandleRef hSourceProcessHandle, SafeHandle * hSourceHandle, HandleRef hTargetProcess, SafeWaitHandle * targetHandle, int32_t dwDesiredAccess, bool bInheritHandle, int32_t dwOptions, MethodInfo * method)); -DO_APP_FUNC(0x0258AF30, bool, NativeMethods_DuplicateHandle_1, (HandleRef hSourceProcessHandle, HandleRef hSourceHandle, HandleRef hTargetProcess, SafeProcessHandle * targetHandle, int32_t dwDesiredAccess, bool bInheritHandle, int32_t dwOptions, MethodInfo * method)); +DO_APP_FUNC(0x0258AC70, bool, NativeMethods_DuplicateHandle, (HandleRef hSourceProcessHandle, SafeHandle * hSourceHandle, HandleRef hTargetProcess, SafeWaitHandle * * targetHandle, int32_t dwDesiredAccess, bool bInheritHandle, int32_t dwOptions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09648, NativeMethods_DuplicateHandle__MethodInfo); +DO_APP_FUNC(0x0258AF30, bool, NativeMethods_DuplicateHandle_1, (HandleRef hSourceProcessHandle, HandleRef hSourceHandle, HandleRef hTargetProcess, SafeProcessHandle * * targetHandle, int32_t dwDesiredAccess, bool bInheritHandle, int32_t dwOptions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09670, NativeMethods_DuplicateHandle_1__MethodInfo); DO_APP_FUNC(0x0258B110, void *, NativeMethods_GetCurrentProcess, (MethodInfo * method)); -DO_APP_FUNC(0x0258B1E0, bool, NativeMethods_GetExitCodeProcess, (void * processHandle, int32_t exitCode, MethodInfo * method)); -DO_APP_FUNC(0x0258B2B0, bool, NativeMethods_GetExitCodeProcess_1, (SafeProcessHandle * processHandle, int32_t exitCode, MethodInfo * method)); +DO_APP_FUNC(0x0258B1E0, bool, NativeMethods_GetExitCodeProcess, (void * processHandle, int32_t * exitCode, MethodInfo * method)); +DO_APP_FUNC(0x0258B2B0, bool, NativeMethods_GetExitCodeProcess_1, (SafeProcessHandle * processHandle, int32_t * exitCode, MethodInfo * method)); DO_APP_FUNC(0x0258B470, bool, NativeMethods_TerminateProcess, (void * processHandle, int32_t exitCode, MethodInfo * method)); DO_APP_FUNC(0x0258B480, bool, NativeMethods_TerminateProcess_1, (SafeProcessHandle * processHandle, int32_t exitCode, MethodInfo * method)); DO_APP_FUNC(0x0258B540, int32_t, NativeMethods_WaitForInputIdle, (void * handle, int32_t milliseconds, MethodInfo * method)); DO_APP_FUNC(0x0258B550, int32_t, NativeMethods_WaitForInputIdle_1, (SafeProcessHandle * handle, int32_t milliseconds, MethodInfo * method)); -DO_APP_FUNC(0x0258B610, bool, NativeMethods_GetProcessWorkingSetSize, (void * handle, void * min, void * max, MethodInfo * method)); -DO_APP_FUNC(0x0258B620, bool, NativeMethods_GetProcessWorkingSetSize_1, (SafeProcessHandle * handle, void * min, void * max, MethodInfo * method)); +DO_APP_FUNC(0x0258B610, bool, NativeMethods_GetProcessWorkingSetSize, (void * handle, void * * min, void * * max, MethodInfo * method)); +DO_APP_FUNC(0x0258B620, bool, NativeMethods_GetProcessWorkingSetSize_1, (SafeProcessHandle * handle, void * * min, void * * max, MethodInfo * method)); DO_APP_FUNC(0x0258B6F0, bool, NativeMethods_SetProcessWorkingSetSize, (void * handle, void * min, void * max, MethodInfo * method)); DO_APP_FUNC(0x0258B700, bool, NativeMethods_SetProcessWorkingSetSize_1, (SafeProcessHandle * handle, void * min, void * max, MethodInfo * method)); -DO_APP_FUNC(0x0258B7D0, bool, NativeMethods_GetProcessTimes, (void * handle, int64_t creation, int64_t exit, int64_t kernel, int64_t user, MethodInfo * method)); -DO_APP_FUNC(0x0258B7F0, bool, NativeMethods_GetProcessTimes_1, (SafeProcessHandle * handle, int64_t creation, int64_t exit, int64_t kernel, int64_t user, MethodInfo * method)); +DO_APP_FUNC(0x0258B7D0, bool, NativeMethods_GetProcessTimes, (void * handle, int64_t * creation, int64_t * exit, int64_t * kernel, int64_t * user, MethodInfo * method)); +DO_APP_FUNC(0x0258B7F0, bool, NativeMethods_GetProcessTimes_1, (SafeProcessHandle * handle, int64_t * creation, int64_t * exit, int64_t * kernel, int64_t * user, MethodInfo * method)); DO_APP_FUNC(0x0258B8F0, int32_t, NativeMethods_GetCurrentProcessId, (MethodInfo * method)); DO_APP_FUNC(0x0258B900, int32_t, NativeMethods_GetPriorityClass, (void * handle, MethodInfo * method)); DO_APP_FUNC(0x0258B910, int32_t, NativeMethods_GetPriorityClass_1, (SafeProcessHandle * handle, MethodInfo * method)); @@ -26563,10 +29913,15 @@ DO_APP_FUNC(0x0120DC90, void, SafeProcessHandle_InitialSetHandle, (SafeProcessHa DO_APP_FUNC(0x027A2450, bool, SafeProcessHandle_ReleaseHandle, (SafeProcessHandle * __this, MethodInfo * method)); DO_APP_FUNC(0x027A2470, void, SafeProcessHandle__cctor, (MethodInfo * method)); DO_APP_FUNC(0x027A25B0, void, SafeX509ChainHandle__ctor, (SafeX509ChainHandle * __this, void * handle, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEE110, SafeX509ChainHandle__ctor__MethodInfo); DO_APP_FUNC(0x027A2610, bool, SafeX509ChainHandle_ReleaseHandle, (SafeX509ChainHandle * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEE118, SafeX509ChainHandle_ReleaseHandle__MethodInfo); DO_APP_FUNC(0x027A2660, void, SafeX509ChainHandle__ctor_1, (SafeX509ChainHandle * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEE0E0, SafeX509ChainHandle__ctor_1__MethodInfo); DO_APP_FUNC(0x027A2690, String *, OidLookup_ToFriendlyName, (String * oid, OidGroup__Enum oidGroup, bool fallBackToAllGroups, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEE0E8, OidLookup_ToFriendlyName__MethodInfo); DO_APP_FUNC(0x027A2990, String *, OidLookup_ToOid, (String * friendlyName, OidGroup__Enum oidGroup, bool fallBackToAllGroups, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEE018, OidLookup_ToOid__MethodInfo); DO_APP_FUNC(0x0041AEF0, bool, OidLookup_ShouldUseCache, (OidGroup__Enum oidGroup, MethodInfo * method)); DO_APP_FUNC(0x027A2C50, String *, OidLookup_NativeOidToFriendlyName, (String * oid, OidGroup__Enum oidGroup, bool fallBackToAllGroups, MethodInfo * method)); DO_APP_FUNC(0x027A31F0, String *, OidLookup_NativeFriendlyNameToOid, (String * friendlyName, OidGroup__Enum oidGroup, bool fallBackToAllGroups, MethodInfo * method)); @@ -26574,36 +29929,41 @@ DO_APP_FUNC(0x027A3790, void, OidLookup__cctor, (MethodInfo * method)); DO_APP_FUNC(0x027A6240, void, OidLookup_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, OidLookup_c__ctor, (OidLookup_c * __this, MethodInfo * method)); DO_APP_FUNC(0x027A62F0, String *, OidLookup_c___cctor_b__10_0, (OidLookup_c * __this, KeyValuePair_2_System_String_System_String_ kvp, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEE058, OidLookup_c___cctor_b__10_0__MethodInfo); DO_APP_FUNC(0x027A6330, String *, OidLookup_c___cctor_b__10_1, (OidLookup_c * __this, KeyValuePair_2_System_String_System_String_ kvp, MethodInfo * method)); -DO_APP_FUNC(0x027A6370, void, CertificateData__ctor, (CertificateData__Boxed * __this, Byte__Array * rawData, MethodInfo * method)); -DO_APP_FUNC(0x027A6F50, String *, CertificateData_GetNameInfo, (CertificateData__Boxed * __this, X509NameType__Enum nameType, bool forIssuer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEE080, OidLookup_c___cctor_b__10_1__MethodInfo); +DO_APP_FUNC(0x027A6370, void, CertificateData__ctor, (CertificateData * __this, Byte__Array * rawData, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED9F8, CertificateData__ctor__MethodInfo); +DO_APP_FUNC(0x027A6F50, String *, CertificateData_GetNameInfo, (CertificateData * __this, X509NameType__Enum nameType, bool forIssuer, MethodInfo * method)); DO_APP_FUNC(0x027A7510, String *, CertificateData_GetSimpleNameInfo, (X500DistinguishedName * name, MethodInfo * method)); DO_APP_FUNC(0x027A7970, String *, CertificateData_FindAltNameMatch, (Byte__Array * extensionBytes, GeneralNameType__Enum matchType, String * otherOid, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED9B8, CertificateData_FindAltNameMatch__MethodInfo); DO_APP_FUNC(0x027A7B70, IEnumerable_1_KeyValuePair_2_System_String_System_String_ *, CertificateData_ReadReverseRdns, (X500DistinguishedName * name, MethodInfo * method)); DO_APP_FUNC(0x0093D960, void, CertificateData_ReadReverseRdns_d_21__ctor, (CertificateData_ReadReverseRdns_d_21 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CertificateData_ReadReverseRdns_d_21_System_IDisposable_Dispose, (CertificateData_ReadReverseRdns_d_21 * __this, MethodInfo * method)); DO_APP_FUNC(0x027A7C30, bool, CertificateData_ReadReverseRdns_d_21_MoveNext, (CertificateData_ReadReverseRdns_d_21 * __this, MethodInfo * method)); DO_APP_FUNC(0x0093E890, KeyValuePair_2_System_String_System_String_, CertificateData_ReadReverseRdns_d_21_System_Collections_Generic_IEnumerator_System_Collections_Generic_KeyValuePair_System_String_System_String___get_Current, (CertificateData_ReadReverseRdns_d_21 * __this, MethodInfo * method)); DO_APP_FUNC(0x027A8000, void, CertificateData_ReadReverseRdns_d_21_System_Collections_IEnumerator_Reset, (CertificateData_ReadReverseRdns_d_21 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED9C0, CertificateData_ReadReverseRdns_d_21_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x027A8050, Object *, CertificateData_ReadReverseRdns_d_21_System_Collections_IEnumerator_get_Current, (CertificateData_ReadReverseRdns_d_21 * __this, MethodInfo * method)); DO_APP_FUNC(0x027A80A0, IEnumerator_1_KeyValuePair_2_System_String_System_String_ *, CertificateData_ReadReverseRdns_d_21_System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_System_String_System_String___GetEnumerator, (CertificateData_ReadReverseRdns_d_21 * __this, MethodInfo * method)); DO_APP_FUNC(0x027A80A0, IEnumerator *, CertificateData_ReadReverseRdns_d_21_System_Collections_IEnumerable_GetEnumerator, (CertificateData_ReadReverseRdns_d_21 * __this, MethodInfo * method)); DO_APP_FUNC(0x027A8190, int32_t, IPv4AddressHelper_ParseHostNumber, (ReadOnlySpan_1_Char_ str, int32_t start, int32_t end, MethodInfo * method)); -DO_APP_FUNC(0x027A8260, bool, IPv4AddressHelper_IsValid, (uint16_t * name, int32_t start, int32_t end, bool allowIPv6, bool notImplicitFile, bool unknownScheme, MethodInfo * method)); +DO_APP_FUNC(0x027A8260, bool, IPv4AddressHelper_IsValid, (uint16_t * name, int32_t start, int32_t * end, bool allowIPv6, bool notImplicitFile, bool unknownScheme, MethodInfo * method)); DO_APP_FUNC(0x027A83F0, bool, IPv4AddressHelper_ParseCanonical, (ReadOnlySpan_1_Char_ name, uint8_t * numbers, int32_t start, int32_t end, MethodInfo * method)); -DO_APP_FUNC(0x027A8480, bool, IPv4AddressHelper_IsValidCanonical, (uint16_t * name, int32_t start, int32_t end, bool allowIPv6, bool notImplicitFile, MethodInfo * method)); -DO_APP_FUNC(0x027A85D0, int64_t, IPv4AddressHelper_ParseNonCanonical, (uint16_t * name, int32_t start, int32_t end, bool notImplicitFile, MethodInfo * method)); -DO_APP_FUNC(0x027A8870, String *, IPv4AddressHelper_ParseCanonicalName, (String * str, int32_t start, int32_t end, bool isLoopback, MethodInfo * method)); +DO_APP_FUNC(0x027A8480, bool, IPv4AddressHelper_IsValidCanonical, (uint16_t * name, int32_t start, int32_t * end, bool allowIPv6, bool notImplicitFile, MethodInfo * method)); +DO_APP_FUNC(0x027A85D0, int64_t, IPv4AddressHelper_ParseNonCanonical, (uint16_t * name, int32_t start, int32_t * end, bool notImplicitFile, MethodInfo * method)); +DO_APP_FUNC(0x027A8870, String *, IPv4AddressHelper_ParseCanonicalName, (String * str, int32_t start, int32_t end, bool * isLoopback, MethodInfo * method)); DO_APP_FUNC(0x027A8BE0, bool, IPv4AddressHelper_Parse, (String * name, uint8_t * numbers, int32_t start, int32_t end, MethodInfo * method)); DO_APP_FUNC(0x027A8C50, ValueTuple_2_Int32_Int32_, IPv6AddressHelper_FindCompressionRange, (ReadOnlySpan_1_UInt16_ numbers, MethodInfo * method)); DO_APP_FUNC(0x027A8D20, bool, IPv6AddressHelper_ShouldHaveIpv4Embedded, (ReadOnlySpan_1_UInt16_ numbers, MethodInfo * method)); -DO_APP_FUNC(0x027A8E00, bool, IPv6AddressHelper_IsValidStrict, (uint16_t * name, int32_t start, int32_t end, MethodInfo * method)); -DO_APP_FUNC(0x027A9210, void, IPv6AddressHelper_Parse, (ReadOnlySpan_1_Char_ address, uint16_t * numbers, int32_t start, String * scopeId, MethodInfo * method)); -DO_APP_FUNC(0x027A9670, String *, IPv6AddressHelper_ParseCanonicalName, (String * str, int32_t start, bool isLoopback, String * scopeId, MethodInfo * method)); +DO_APP_FUNC(0x027A8E00, bool, IPv6AddressHelper_IsValidStrict, (uint16_t * name, int32_t start, int32_t * end, MethodInfo * method)); +DO_APP_FUNC(0x027A9210, void, IPv6AddressHelper_Parse, (ReadOnlySpan_1_Char_ address, uint16_t * numbers, int32_t start, String * * scopeId, MethodInfo * method)); +DO_APP_FUNC(0x027A9670, String *, IPv6AddressHelper_ParseCanonicalName, (String * str, int32_t start, bool * isLoopback, String * * scopeId, MethodInfo * method)); DO_APP_FUNC(0x027A9F90, bool, IPv6AddressHelper_IsLoopback, (ReadOnlySpan_1_UInt16_ numbers, MethodInfo * method)); DO_APP_FUNC(0x027AA060, bool, IPv6AddressHelper_ShouldHaveIpv4Embedded_1, (uint16_t * numbers, MethodInfo * method)); -DO_APP_FUNC(0x027AA0C0, bool, IPv6AddressHelper_InternalIsValid, (uint16_t * name, int32_t start, int32_t end, bool validateStrictAddress, MethodInfo * method)); -DO_APP_FUNC(0x027AA3A0, bool, IPv6AddressHelper_IsValid, (uint16_t * name, int32_t start, int32_t end, MethodInfo * method)); +DO_APP_FUNC(0x027AA0C0, bool, IPv6AddressHelper_InternalIsValid, (uint16_t * name, int32_t start, int32_t * end, bool validateStrictAddress, MethodInfo * method)); +DO_APP_FUNC(0x027AA3A0, bool, IPv6AddressHelper_IsValid, (uint16_t * name, int32_t start, int32_t * end, MethodInfo * method)); DO_APP_FUNC(0x027AA3C0, Exception *, NotImplemented_1_get_ByDesign, (MethodInfo * method)); DO_APP_FUNC(0x027AA450, Exception *, NotImplemented_1_ByDesignWithMessage, (String * message, MethodInfo * method)); DO_APP_FUNC(0x027AA4C0, Exception *, NotImplemented_1_ActiveIssue, (String * issue, MethodInfo * method)); @@ -26614,12 +29974,15 @@ DO_APP_FUNC(0x027AA8F0, String *, StringExtensions_SubstringTrim_1, (String * va DO_APP_FUNC(0x027AAAB0, void, UriBuilder__ctor, (UriBuilder * __this, MethodInfo * method)); DO_APP_FUNC(0x027AAE40, void, UriBuilder__ctor_1, (UriBuilder * __this, String * uri, MethodInfo * method)); DO_APP_FUNC(0x027AB350, void, UriBuilder__ctor_2, (UriBuilder * __this, Uri * uri, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED9A8, UriBuilder__ctor_2__MethodInfo); DO_APP_FUNC(0x027AB750, void, UriBuilder_Init, (UriBuilder * __this, Uri * uri, MethodInfo * method)); DO_APP_FUNC(0x027ABBB0, void, UriBuilder__ctor_3, (UriBuilder * __this, String * schemeName, String * hostName, MethodInfo * method)); DO_APP_FUNC(0x027AC140, void, UriBuilder__ctor_4, (UriBuilder * __this, String * scheme, String * host, int32_t portNumber, MethodInfo * method)); DO_APP_FUNC(0x027AC170, void, UriBuilder__ctor_5, (UriBuilder * __this, String * scheme, String * host, int32_t port, String * pathValue, MethodInfo * method)); DO_APP_FUNC(0x027AC1B0, void, UriBuilder__ctor_6, (UriBuilder * __this, String * scheme, String * host, int32_t port, String * path, String * extraValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED968, UriBuilder__ctor_6__MethodInfo); DO_APP_FUNC(0x027AC2C0, void, UriBuilder_set_Extra, (UriBuilder * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED950, UriBuilder_set_Extra__MethodInfo); DO_APP_FUNC(0x003BB3D0, String *, UriBuilder_get_Fragment, (UriBuilder * __this, MethodInfo * method)); DO_APP_FUNC(0x027AC480, void, UriBuilder_set_Fragment, (UriBuilder * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, String *, UriBuilder_get_Host, (UriBuilder * __this, MethodInfo * method)); @@ -26630,10 +29993,12 @@ DO_APP_FUNC(0x003BB330, String *, UriBuilder_get_Path, (UriBuilder * __this, Met DO_APP_FUNC(0x027AC7A0, void, UriBuilder_set_Path, (UriBuilder * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x009F7E90, int32_t, UriBuilder_get_Port, (UriBuilder * __this, MethodInfo * method)); DO_APP_FUNC(0x027AC960, void, UriBuilder_set_Port, (UriBuilder * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED978, UriBuilder_set_Port__MethodInfo); DO_APP_FUNC(0x003C7390, String *, UriBuilder_get_Query, (UriBuilder * __this, MethodInfo * method)); DO_APP_FUNC(0x027AC9E0, void, UriBuilder_set_Query, (UriBuilder * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x003CD530, String *, UriBuilder_get_Scheme, (UriBuilder * __this, MethodInfo * method)); DO_APP_FUNC(0x027ACAD0, void, UriBuilder_set_Scheme, (UriBuilder * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED980, UriBuilder_set_Scheme__MethodInfo); DO_APP_FUNC(0x027ACC70, Uri *, UriBuilder_get_Uri, (UriBuilder * __this, MethodInfo * method)); DO_APP_FUNC(0x003C91B0, String *, UriBuilder_get_UserName, (UriBuilder * __this, MethodInfo * method)); DO_APP_FUNC(0x027ACDD0, void, UriBuilder_set_UserName, (UriBuilder * __this, String * value, MethodInfo * method)); @@ -26641,10 +30006,13 @@ DO_APP_FUNC(0x027ACE70, bool, UriBuilder_Equals, (UriBuilder * __this, Object * DO_APP_FUNC(0x027ACEE0, int32_t, UriBuilder_GetHashCode, (UriBuilder * __this, MethodInfo * method)); DO_APP_FUNC(0x027ACF20, void, UriBuilder_SetFieldsFromUri, (UriBuilder * __this, Uri * uri, MethodInfo * method)); DO_APP_FUNC(0x027AD390, String *, UriBuilder_ToString, (UriBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED930, UriBuilder_ToString__MethodInfo); DO_APP_FUNC(0x027ADA30, bool, StringNormalizationExtensions_IsNormalized, (String * strInput, MethodInfo * method)); DO_APP_FUNC(0x027ADB10, bool, StringNormalizationExtensions_IsNormalized_1, (String * strInput, NormalizationForm__Enum normalizationForm, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED920, StringNormalizationExtensions_IsNormalized_1__MethodInfo); DO_APP_FUNC(0x027ADC60, String *, StringNormalizationExtensions_Normalize, (String * strInput, MethodInfo * method)); DO_APP_FUNC(0x027ADCE0, String *, StringNormalizationExtensions_Normalize_1, (String * strInput, NormalizationForm__Enum normalizationForm, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED928, StringNormalizationExtensions_Normalize_1__MethodInfo); DO_APP_FUNC(0x027ADD50, ReflectionPermission *, SecurityUtils_get_MemberAccessPermission, (MethodInfo * method)); DO_APP_FUNC(0x027ADE60, ReflectionPermission *, SecurityUtils_get_RestrictedMemberAccessPermission, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SecurityUtils_DemandReflectionAccess, (Type * type, MethodInfo * method)); @@ -26652,9 +30020,11 @@ DO_APP_FUNC(0x003AE050, void, SecurityUtils_DemandGrantSet, (Assembly * assembly DO_APP_FUNC(0x027ADF70, bool, SecurityUtils_HasReflectionPermission, (Type * type, MethodInfo * method)); DO_APP_FUNC(0x027ADF90, Object *, SecurityUtils_SecureCreateInstance, (Type * type, MethodInfo * method)); DO_APP_FUNC(0x027AE060, Object *, SecurityUtils_SecureCreateInstance_1, (Type * type, Object__Array * args, bool allowNonPublic, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED910, SecurityUtils_SecureCreateInstance_1__MethodInfo); DO_APP_FUNC(0x027AE170, Object *, SecurityUtils_SecureCreateInstance_2, (Type * type, Object__Array * args, MethodInfo * method)); DO_APP_FUNC(0x027AE250, Object *, SecurityUtils_SecureConstructorInvoke, (Type * type, Type__Array * argTypes, Object__Array * args, bool allowNonPublic, MethodInfo * method)); DO_APP_FUNC(0x027AE270, Object *, SecurityUtils_SecureConstructorInvoke_1, (Type * type, Type__Array * argTypes, Object__Array * args, bool allowNonPublic, BindingFlags__Enum extraFlags, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED918, SecurityUtils_SecureConstructorInvoke_1__MethodInfo); DO_APP_FUNC(0x027AE430, bool, SecurityUtils_GenericArgumentsAreVisible, (MethodInfo_1 * method_1, MethodInfo * method)); DO_APP_FUNC(0x027AE4D0, Object *, SecurityUtils_FieldInfoGetValue, (FieldInfo_1 * field, Object * target, MethodInfo * method)); DO_APP_FUNC(0x027AE600, Object *, SecurityUtils_MethodInfoInvoke, (MethodInfo_1 * method_1, Object * target, Object__Array * args, MethodInfo * method)); @@ -26666,9 +30036,10 @@ DO_APP_FUNC(0x027AEA80, void, InvariantComparer__cctor, (MethodInfo * method)); DO_APP_FUNC(0x027AEC30, void, GenericUriParser__ctor, (GenericUriParser * __this, GenericUriParserOptions__Enum options, MethodInfo * method)); DO_APP_FUNC(0x027AED20, UriSyntaxFlags__Enum, GenericUriParser_MapGenericParserOptions, (GenericUriParserOptions__Enum options, MethodInfo * method)); DO_APP_FUNC(0x027AEDC0, bool, IriHelper_CheckIriUnicodeRange, (uint16_t unicode, bool isQuery, MethodInfo * method)); -DO_APP_FUNC(0x027AEE30, bool, IriHelper_CheckIriUnicodeRange_1, (uint16_t highSurr, uint16_t lowSurr, bool surrogatePair, bool isQuery, MethodInfo * method)); +DO_APP_FUNC(0x027AEE30, bool, IriHelper_CheckIriUnicodeRange_1, (uint16_t highSurr, uint16_t lowSurr, bool * surrogatePair, bool isQuery, MethodInfo * method)); DO_APP_FUNC(0x027AFA30, bool, IriHelper_CheckIsReserved, (uint16_t ch, UriComponents__Enum component, MethodInfo * method)); DO_APP_FUNC(0x027AFB60, String *, IriHelper_EscapeUnescapeIri, (uint16_t * pInput, int32_t start, int32_t end, UriComponents__Enum component, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED7E8, IriHelper_EscapeUnescapeIri__MethodInfo); DO_APP_FUNC(0x026F88A0, bool, Uri_get_IsImplicitFile, (Uri * __this, MethodInfo * method)); DO_APP_FUNC(0x026F88B0, bool, Uri_get_IsUncOrDosPath, (Uri * __this, MethodInfo * method)); DO_APP_FUNC(0x026F88C0, bool, Uri_get_IsDosPath, (Uri * __this, MethodInfo * method)); @@ -26691,88 +30062,123 @@ DO_APP_FUNC(0x026F8C40, Uri_UriInfo *, Uri_EnsureUriInfo, (Uri * __this, MethodI DO_APP_FUNC(0x026F8C80, void, Uri_EnsureParseRemaining, (Uri * __this, MethodInfo * method)); DO_APP_FUNC(0x026F8CA0, void, Uri_EnsureHostString, (Uri * __this, bool allowDnsOptimization, MethodInfo * method)); DO_APP_FUNC(0x026F8D10, void, Uri__ctor, (Uri * __this, String * uriString, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA2F0, Uri__ctor__MethodInfo); DO_APP_FUNC(0x026F8D90, void, Uri__ctor_1, (Uri * __this, String * uriString, bool dontEscape, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA2F8, Uri__ctor_1__MethodInfo); DO_APP_FUNC(0x026F8E10, void, Uri__ctor_2, (Uri * __this, Uri * baseUri, String * relativeUri, bool dontEscape, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA2E0, Uri__ctor_2__MethodInfo); DO_APP_FUNC(0x026F8EE0, void, Uri__ctor_3, (Uri * __this, String * uriString, UriKind__Enum uriKind, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA2C8, Uri__ctor_3__MethodInfo); DO_APP_FUNC(0x026F8F60, void, Uri__ctor_4, (Uri * __this, Uri * baseUri, String * relativeUri, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA2D0, Uri__ctor_4__MethodInfo); DO_APP_FUNC(0x026F9030, void, Uri_CreateUri, (Uri * __this, Uri * baseUri, String * relativeUri, bool dontEscape, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA2E8, Uri_CreateUri__MethodInfo); DO_APP_FUNC(0x026F92A0, void, Uri__ctor_5, (Uri * __this, Uri * baseUri, Uri * relativeUri, MethodInfo * method)); -DO_APP_FUNC(0x026F9520, ParsingError__Enum, Uri_GetCombinedString, (Uri * baseUri, String * relativeStr, bool dontEscape, String * result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA340, Uri__ctor_5__MethodInfo); +DO_APP_FUNC(0x026F9520, ParsingError__Enum, Uri_GetCombinedString, (Uri * baseUri, String * relativeStr, bool dontEscape, String * * result, MethodInfo * method)); DO_APP_FUNC(0x026F97C0, UriFormatException *, Uri_GetException, (ParsingError__Enum err, MethodInfo * method)); DO_APP_FUNC(0x026F99C0, void, Uri__ctor_6, (Uri * __this, SerializationInfo * serializationInfo, StreamingContext streamingContext, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA240, Uri__ctor_6__MethodInfo); DO_APP_FUNC(0x026F9AD0, void, Uri_System_Runtime_Serialization_ISerializable_GetObjectData, (Uri * __this, SerializationInfo * serializationInfo, StreamingContext streamingContext, MethodInfo * method)); DO_APP_FUNC(0x026F9AD0, void, Uri_GetObjectData, (Uri * __this, SerializationInfo * serializationInfo, StreamingContext streamingContext, MethodInfo * method)); DO_APP_FUNC(0x026F9BD0, String *, Uri_get_AbsolutePath, (Uri * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA238, Uri_get_AbsolutePath__MethodInfo); DO_APP_FUNC(0x026F9CB0, String *, Uri_get_PrivateAbsolutePath, (Uri * __this, MethodInfo * method)); DO_APP_FUNC(0x026F9E20, String *, Uri_get_AbsoluteUri, (Uri * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA2A0, Uri_get_AbsoluteUri__MethodInfo); DO_APP_FUNC(0x026FA000, String *, Uri_get_LocalPath, (Uri * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA2A8, Uri_get_LocalPath__MethodInfo); DO_APP_FUNC(0x026FA090, String *, Uri_get_Authority, (Uri * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA2B8, Uri_get_Authority__MethodInfo); DO_APP_FUNC(0x026FA120, UriHostNameType__Enum, Uri_get_HostNameType, (Uri * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA2C0, Uri_get_HostNameType__MethodInfo); DO_APP_FUNC(0x026FA280, bool, Uri_get_IsDefaultPort, (Uri * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA2B0, Uri_get_IsDefaultPort__MethodInfo); DO_APP_FUNC(0x026FA380, bool, Uri_get_IsFile, (Uri * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA288, Uri_get_IsFile__MethodInfo); DO_APP_FUNC(0x026FA460, bool, Uri_get_IsLoopback, (Uri * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA278, Uri_get_IsLoopback__MethodInfo); DO_APP_FUNC(0x026FA530, String *, Uri_get_PathAndQuery, (Uri * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA280, Uri_get_PathAndQuery__MethodInfo); DO_APP_FUNC(0x026FA610, String__Array *, Uri_get_Segments, (Uri * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA290, Uri_get_Segments__MethodInfo); DO_APP_FUNC(0x026FA8A0, bool, Uri_get_IsUnc, (Uri * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA298, Uri_get_IsUnc__MethodInfo); DO_APP_FUNC(0x026FA930, String *, Uri_get_Host, (Uri * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA208, Uri_get_Host__MethodInfo); DO_APP_FUNC(0x026FA9C0, bool, Uri_StaticIsFile, (UriParser * syntax, MethodInfo * method)); DO_APP_FUNC(0x026FA9E0, Object *, Uri_get_InitializeLock, (MethodInfo * method)); DO_APP_FUNC(0x026FAB10, void, Uri_InitializeUriConfig, (MethodInfo * method)); DO_APP_FUNC(0x026FAE80, String *, Uri_GetLocalPath, (Uri * __this, MethodInfo * method)); DO_APP_FUNC(0x026FB6E0, int32_t, Uri_get_Port, (Uri * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA1F0, Uri_get_Port__MethodInfo); DO_APP_FUNC(0x026FB800, String *, Uri_get_Query, (Uri * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA200, Uri_get_Query__MethodInfo); DO_APP_FUNC(0x026FB9E0, String *, Uri_get_Fragment, (Uri * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA1F8, Uri_get_Fragment__MethodInfo); DO_APP_FUNC(0x026FBBC0, String *, Uri_get_Scheme, (Uri * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA228, Uri_get_Scheme__MethodInfo); DO_APP_FUNC(0x026FBC50, bool, Uri_get_OriginalStringSwitched, (Uri * __this, MethodInfo * method)); DO_APP_FUNC(0x026FBCB0, String *, Uri_get_OriginalString, (Uri * __this, MethodInfo * method)); DO_APP_FUNC(0x026FBD10, String *, Uri_get_DnsSafeHost, (Uri * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA220, Uri_get_DnsSafeHost__MethodInfo); DO_APP_FUNC(0x026FC060, String *, Uri_get_IdnHost, (Uri * __this, MethodInfo * method)); DO_APP_FUNC(0x022F09D0, bool, Uri_get_IsAbsoluteUri, (Uri * __this, MethodInfo * method)); DO_APP_FUNC(0x026FC0D0, bool, Uri_get_UserEscaped, (Uri * __this, MethodInfo * method)); DO_APP_FUNC(0x026FC0E0, String *, Uri_get_UserInfo, (Uri * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA230, Uri_get_UserInfo__MethodInfo); DO_APP_FUNC(0x026FC170, UriHostNameType__Enum, Uri_CheckHostName, (String * name, MethodInfo * method)); DO_APP_FUNC(0x026FC5F0, String *, Uri_GetLeftPart, (Uri * __this, UriPartial__Enum part, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA218, Uri_GetLeftPart__MethodInfo); DO_APP_FUNC(0x026FC780, String *, Uri_HexEscape, (uint16_t character, MethodInfo * method)); -DO_APP_FUNC(0x026FC880, uint16_t, Uri_HexUnescape, (String * pattern, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA1C8, Uri_HexEscape__MethodInfo); +DO_APP_FUNC(0x026FC880, uint16_t, Uri_HexUnescape, (String * pattern, int32_t * index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA1D8, Uri_HexUnescape__MethodInfo); DO_APP_FUNC(0x026FC9F0, bool, Uri_IsHexEncoding, (String * pattern, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x026FCAF0, bool, Uri_IsGenDelim, (uint16_t ch, MethodInfo * method)); DO_APP_FUNC(0x026FCB20, bool, Uri_CheckSchemeName, (String * schemeName, MethodInfo * method)); DO_APP_FUNC(0x026FCC30, bool, Uri_IsHexDigit, (uint16_t character, MethodInfo * method)); DO_APP_FUNC(0x026FCC60, int32_t, Uri_FromHex, (uint16_t digit, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA1C0, Uri_FromHex__MethodInfo); DO_APP_FUNC(0x026FCD10, int32_t, Uri_GetHashCode, (Uri * __this, MethodInfo * method)); DO_APP_FUNC(0x026FCEF0, String *, Uri_ToString, (Uri * __this, MethodInfo * method)); DO_APP_FUNC(0x026FCFD0, bool, Uri_op_Equality, (Uri * uri1, Uri * uri2, MethodInfo * method)); DO_APP_FUNC(0x026FD010, bool, Uri_op_Inequality, (Uri * uri1, Uri * uri2, MethodInfo * method)); DO_APP_FUNC(0x026FD060, bool, Uri_Equals, (Uri * __this, Object * comparand, MethodInfo * method)); DO_APP_FUNC(0x026FD860, Uri *, Uri_MakeRelativeUri, (Uri * __this, Uri * uri, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA1E8, Uri_MakeRelativeUri__MethodInfo); DO_APP_FUNC(0x026FDC10, bool, Uri_CheckForColonInFirstPathSegment, (String * uriString, MethodInfo * method)); DO_APP_FUNC(0x026FDCE0, String *, Uri_InternalEscapeString, (String * rawString, MethodInfo * method)); -DO_APP_FUNC(0x026FDDD0, ParsingError__Enum, Uri_ParseScheme, (String * uriString, Uri_Flags__Enum flags, UriParser * syntax, MethodInfo * method)); +DO_APP_FUNC(0x026FDDD0, ParsingError__Enum, Uri_ParseScheme, (String * uriString, Uri_Flags__Enum * flags, UriParser * * syntax, MethodInfo * method)); DO_APP_FUNC(0x026FDEA0, UriFormatException *, Uri_ParseMinimal, (Uri * __this, MethodInfo * method)); DO_APP_FUNC(0x026FDF20, ParsingError__Enum, Uri_PrivateParseMinimal, (Uri * __this, MethodInfo * method)); DO_APP_FUNC(0x026FE520, void, Uri_PrivateParseMinimalIri, (Uri * __this, String * newHost, uint16_t idx, MethodInfo * method)); DO_APP_FUNC(0x026FE6F0, void, Uri_CreateUriInfo, (Uri * __this, Uri_Flags__Enum cF, MethodInfo * method)); DO_APP_FUNC(0x026FEDD0, void, Uri_CreateHostString, (Uri * __this, MethodInfo * method)); -DO_APP_FUNC(0x026FF400, String *, Uri_CreateHostStringHelper, (String * str, uint16_t idx, uint16_t end, Uri_Flags__Enum flags, String * scopeId, MethodInfo * method)); +DO_APP_FUNC(0x026FF400, String *, Uri_CreateHostStringHelper, (String * str, uint16_t idx, uint16_t end, Uri_Flags__Enum * flags, String * * scopeId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA188, Uri_CreateHostStringHelper__MethodInfo); DO_APP_FUNC(0x026FF600, void, Uri_GetHostViaCustomSyntax, (Uri * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA1A0, Uri_GetHostViaCustomSyntax__MethodInfo); DO_APP_FUNC(0x026FFB30, String *, Uri_GetParts, (Uri * __this, UriComponents__Enum uriParts, UriFormat__Enum formatAs, MethodInfo * method)); DO_APP_FUNC(0x026FFB40, String *, Uri_GetEscapedParts, (Uri * __this, UriComponents__Enum uriParts, MethodInfo * method)); DO_APP_FUNC(0x026FFC40, String *, Uri_GetUnescapedParts, (Uri * __this, UriComponents__Enum uriParts, UriFormat__Enum formatAs, MethodInfo * method)); DO_APP_FUNC(0x026FFD20, String *, Uri_ReCreateParts, (Uri * __this, UriComponents__Enum parts, uint16_t nonCanonical, UriFormat__Enum formatAs, MethodInfo * method)); DO_APP_FUNC(0x027010B0, String *, Uri_GetUriPartsFromUserString, (Uri * __this, UriComponents__Enum uriParts, MethodInfo * method)); DO_APP_FUNC(0x027019E0, void, Uri_ParseRemaining, (Uri * __this, MethodInfo * method)); -DO_APP_FUNC(0x02702930, uint16_t, Uri_ParseSchemeCheckImplicitFile, (uint16_t * uriString, uint16_t length, ParsingError__Enum err, Uri_Flags__Enum flags, UriParser * syntax, MethodInfo * method)); -DO_APP_FUNC(0x02702EF0, bool, Uri_CheckKnownSchemes, (int64_t * lptr, uint16_t nChars, UriParser * syntax, MethodInfo * method)); -DO_APP_FUNC(0x027035B0, ParsingError__Enum, Uri_CheckSchemeSyntax, (uint16_t * ptr, uint16_t length, UriParser * syntax, MethodInfo * method)); -DO_APP_FUNC(0x02703700, uint16_t, Uri_CheckAuthorityHelper, (Uri * __this, uint16_t * pString, uint16_t idx, uint16_t length, ParsingError__Enum err, Uri_Flags__Enum flags, UriParser * syntax, String * newHost, MethodInfo * method)); -DO_APP_FUNC(0x02704B30, void, Uri_CheckAuthorityHelperHandleDnsIri, (Uri * __this, uint16_t * pString, uint16_t start, int32_t end, int32_t startInput, bool iriParsing, bool hasUnicode, UriParser * syntax, String * userInfoString, Uri_Flags__Enum flags, bool justNormalized, String * newHost, ParsingError__Enum err, MethodInfo * method)); -DO_APP_FUNC(0x02705050, void, Uri_CheckAuthorityHelperHandleAnyHostIri, (Uri * __this, uint16_t * pString, int32_t startInput, int32_t end, bool iriParsing, bool hasUnicode, UriParser * syntax, Uri_Flags__Enum flags, String * newHost, ParsingError__Enum err, MethodInfo * method)); -DO_APP_FUNC(0x02705380, void, Uri_FindEndOfComponent, (Uri * __this, String * input, uint16_t idx, uint16_t end, uint16_t delim, MethodInfo * method)); -DO_APP_FUNC(0x02705400, void, Uri_FindEndOfComponent_1, (Uri * __this, uint16_t * str, uint16_t idx, uint16_t end, uint16_t delim, MethodInfo * method)); -DO_APP_FUNC(0x02705470, Uri_Check__Enum, Uri_CheckCanonical, (Uri * __this, uint16_t * str, uint16_t idx, uint16_t end, uint16_t delim, MethodInfo * method)); -DO_APP_FUNC(0x02705880, Char__Array *, Uri_GetCanonicalPath, (Uri * __this, Char__Array * dest, int32_t pos, UriFormat__Enum formatAs, MethodInfo * method)); -DO_APP_FUNC(0x02706040, void, Uri_UnescapeOnly, (uint16_t * pch, int32_t start, int32_t end, uint16_t ch1, uint16_t ch2, uint16_t ch3, MethodInfo * method)); -DO_APP_FUNC(0x02706250, Char__Array *, Uri_Compress, (Char__Array * dest, uint16_t start, int32_t destLength, UriParser * syntax, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA198, Uri_ParseRemaining__MethodInfo); +DO_APP_FUNC(0x02702930, uint16_t, Uri_ParseSchemeCheckImplicitFile, (uint16_t * uriString, uint16_t length, ParsingError__Enum * err, Uri_Flags__Enum * flags, UriParser * * syntax, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA180, Uri_ParseSchemeCheckImplicitFile__MethodInfo); +DO_APP_FUNC(0x02702EF0, bool, Uri_CheckKnownSchemes, (int64_t * lptr, uint16_t nChars, UriParser * * syntax, MethodInfo * method)); +DO_APP_FUNC(0x027035B0, ParsingError__Enum, Uri_CheckSchemeSyntax, (uint16_t * ptr, uint16_t length, UriParser * * syntax, MethodInfo * method)); +DO_APP_FUNC(0x02703700, uint16_t, Uri_CheckAuthorityHelper, (Uri * __this, uint16_t * pString, uint16_t idx, uint16_t length, ParsingError__Enum * err, Uri_Flags__Enum * flags, UriParser * syntax, String * * newHost, MethodInfo * method)); +DO_APP_FUNC(0x02704B30, void, Uri_CheckAuthorityHelperHandleDnsIri, (Uri * __this, uint16_t * pString, uint16_t start, int32_t end, int32_t startInput, bool iriParsing, bool hasUnicode, UriParser * syntax, String * userInfoString, Uri_Flags__Enum * flags, bool * justNormalized, String * * newHost, ParsingError__Enum * err, MethodInfo * method)); +DO_APP_FUNC(0x02705050, void, Uri_CheckAuthorityHelperHandleAnyHostIri, (Uri * __this, uint16_t * pString, int32_t startInput, int32_t end, bool iriParsing, bool hasUnicode, UriParser * syntax, Uri_Flags__Enum * flags, String * * newHost, ParsingError__Enum * err, MethodInfo * method)); +DO_APP_FUNC(0x02705380, void, Uri_FindEndOfComponent, (Uri * __this, String * input, uint16_t * idx, uint16_t end, uint16_t delim, MethodInfo * method)); +DO_APP_FUNC(0x02705400, void, Uri_FindEndOfComponent_1, (Uri * __this, uint16_t * str, uint16_t * idx, uint16_t end, uint16_t delim, MethodInfo * method)); +DO_APP_FUNC(0x02705470, Uri_Check__Enum, Uri_CheckCanonical, (Uri * __this, uint16_t * str, uint16_t * idx, uint16_t end, uint16_t delim, MethodInfo * method)); +DO_APP_FUNC(0x02705880, Char__Array *, Uri_GetCanonicalPath, (Uri * __this, Char__Array * dest, int32_t * pos, UriFormat__Enum formatAs, MethodInfo * method)); +DO_APP_FUNC(0x02706040, void, Uri_UnescapeOnly, (uint16_t * pch, int32_t start, int32_t * end, uint16_t ch1, uint16_t ch2, uint16_t ch3, MethodInfo * method)); +DO_APP_FUNC(0x02706250, Char__Array *, Uri_Compress, (Char__Array * dest, uint16_t start, int32_t * destLength, UriParser * syntax, MethodInfo * method)); DO_APP_FUNC(0x027066A0, int32_t, Uri_CalculateCaseInsensitiveHashCode, (String * text, MethodInfo * method)); DO_APP_FUNC(0x02706750, String *, Uri_CombineUri, (Uri * basePart, String * relativePart, UriFormat__Enum uriFormat, MethodInfo * method)); DO_APP_FUNC(0x027072D0, String *, Uri_PathDifference, (String * path1, String * path2, bool compareCase, MethodInfo * method)); @@ -26783,6 +30189,7 @@ DO_APP_FUNC(0x02707720, bool, Uri_IsAsciiLetterOrDigit, (uint16_t character, Met DO_APP_FUNC(0x027077A0, bool, Uri_IsBidiControlCharacter, (uint16_t ch, MethodInfo * method)); DO_APP_FUNC(0x027077E0, String *, Uri_StripBidiControlCharacter, (uint16_t * strToClean, int32_t start, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x02707950, String *, Uri_MakeRelative, (Uri * __this, Uri * toUri, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA140, Uri_MakeRelative__MethodInfo); DO_APP_FUNC(0x003AE050, void, Uri_Parse, (Uri * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Uri_Canonicalize, (Uri * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Uri_Escape, (Uri * __this, MethodInfo * method)); @@ -26793,28 +30200,38 @@ DO_APP_FUNC(0x02707E50, bool, Uri_IsReservedCharacter, (Uri * __this, uint16_t c DO_APP_FUNC(0x02707E70, bool, Uri_IsExcludedCharacter, (uint16_t character, MethodInfo * method)); DO_APP_FUNC(0x02707EB0, bool, Uri_IsBadFileSystemCharacter, (Uri * __this, uint16_t character, MethodInfo * method)); DO_APP_FUNC(0x02707EE0, void, Uri_CreateThis, (Uri * __this, String * uri, bool dontEscape, UriKind__Enum uriKind, MethodInfo * method)); -DO_APP_FUNC(0x02708110, void, Uri_InitializeUri, (Uri * __this, ParsingError__Enum err, UriKind__Enum uriKind, UriFormatException * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA168, Uri_CreateThis__MethodInfo); +DO_APP_FUNC(0x02708110, void, Uri_InitializeUri, (Uri * __this, ParsingError__Enum err, UriKind__Enum uriKind, UriFormatException * * e, MethodInfo * method)); DO_APP_FUNC(0x02708DB0, bool, Uri_CheckForConfigLoad, (Uri * __this, String * data, MethodInfo * method)); DO_APP_FUNC(0x02708E50, bool, Uri_CheckForUnicode, (Uri * __this, String * data, MethodInfo * method)); DO_APP_FUNC(0x02708FD0, bool, Uri_CheckForEscapedUnreserved, (Uri * __this, String * data, MethodInfo * method)); -DO_APP_FUNC(0x02709160, bool, Uri_TryCreate, (String * uriString, UriKind__Enum uriKind, Uri * result, MethodInfo * method)); -DO_APP_FUNC(0x027092D0, bool, Uri_TryCreate_1, (Uri * baseUri, String * relativeUri, Uri * result, MethodInfo * method)); -DO_APP_FUNC(0x02709600, bool, Uri_TryCreate_2, (Uri * baseUri, Uri * relativeUri, Uri * result, MethodInfo * method)); +DO_APP_FUNC(0x02709160, bool, Uri_TryCreate, (String * uriString, UriKind__Enum uriKind, Uri * * result, MethodInfo * method)); +DO_APP_FUNC(0x027092D0, bool, Uri_TryCreate_1, (Uri * baseUri, String * relativeUri, Uri * * result, MethodInfo * method)); +DO_APP_FUNC(0x02709600, bool, Uri_TryCreate_2, (Uri * baseUri, Uri * relativeUri, Uri * * result, MethodInfo * method)); DO_APP_FUNC(0x02709800, String *, Uri_GetComponents, (Uri * __this, UriComponents__Enum components, UriFormat__Enum format, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA100, Uri_GetComponents__MethodInfo); DO_APP_FUNC(0x02709A00, int32_t, Uri_Compare, (Uri * uri1, Uri * uri2, UriComponents__Enum partsToCompare, UriFormat__Enum compareFormat, StringComparison__Enum comparisonType, MethodInfo * method)); DO_APP_FUNC(0x02709B00, bool, Uri_IsWellFormedOriginalString, (Uri * __this, MethodInfo * method)); DO_APP_FUNC(0x02709B40, bool, Uri_IsWellFormedUriString, (String * uriString, UriKind__Enum uriKind, MethodInfo * method)); DO_APP_FUNC(0x02709C30, bool, Uri_InternalIsWellFormedOriginalString, (Uri * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA130, Uri_InternalIsWellFormedOriginalString__MethodInfo); DO_APP_FUNC(0x0270A120, String *, Uri_UnescapeDataString, (String * stringToUnescape, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA110, Uri_UnescapeDataString__MethodInfo); DO_APP_FUNC(0x0270A310, String *, Uri_EscapeUriString, (String * stringToEscape, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA120, Uri_EscapeUriString__MethodInfo); DO_APP_FUNC(0x0270A460, String *, Uri_EscapeDataString, (String * stringToEscape, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA0B0, Uri_EscapeDataString__MethodInfo); DO_APP_FUNC(0x0270A5B0, String *, Uri_EscapeUnescapeIri, (Uri * __this, String * input, int32_t start, int32_t end, UriComponents__Enum component, MethodInfo * method)); DO_APP_FUNC(0x0270A5E0, void, Uri__ctor_7, (Uri * __this, Uri_Flags__Enum flags, UriParser * uriParser, String * uri, MethodInfo * method)); -DO_APP_FUNC(0x0270A690, Uri *, Uri_CreateHelper, (String * uriString, bool dontEscape, UriKind__Enum uriKind, UriFormatException * e, MethodInfo * method)); -DO_APP_FUNC(0x0270A980, Uri *, Uri_ResolveHelper, (Uri * baseUri, Uri * relativeUri, String * newUriString, bool userEscaped, UriFormatException * e, MethodInfo * method)); +DO_APP_FUNC(0x0270A690, Uri *, Uri_CreateHelper, (String * uriString, bool dontEscape, UriKind__Enum uriKind, UriFormatException * * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA0A8, Uri_CreateHelper__MethodInfo); +DO_APP_FUNC(0x0270A980, Uri *, Uri_ResolveHelper, (Uri * baseUri, Uri * relativeUri, String * * newUriString, bool * userEscaped, UriFormatException * * e, MethodInfo * method)); DO_APP_FUNC(0x0270AF50, String *, Uri_GetRelativeSerializationString, (Uri * __this, UriFormat__Enum format, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA088, Uri_GetRelativeSerializationString__MethodInfo); DO_APP_FUNC(0x0270B210, String *, Uri_GetComponentsHelper, (Uri * __this, UriComponents__Enum uriComponents, UriFormat__Enum uriFormat, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA090, Uri_GetComponentsHelper__MethodInfo); DO_APP_FUNC(0x0270B560, bool, Uri_IsBaseOf, (Uri * __this, Uri * uri, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA098, Uri_IsBaseOf__MethodInfo); DO_APP_FUNC(0x0270B610, bool, Uri_IsBaseOfHelper, (Uri * __this, Uri * uriLink, MethodInfo * method)); DO_APP_FUNC(0x0270B880, void, Uri_CreateThisFromUri, (Uri * __this, Uri * otherUri, MethodInfo * method)); DO_APP_FUNC(0x0270BBA0, void, Uri__cctor, (MethodInfo * method)); @@ -26826,12 +30243,14 @@ DO_APP_FUNC(0x01B6FDD0, void, UriFormatException__ctor_2, (UriFormatException * DO_APP_FUNC(0x01980BF0, void, UriFormatException__ctor_3, (UriFormatException * __this, SerializationInfo * serializationInfo, StreamingContext streamingContext, MethodInfo * method)); DO_APP_FUNC(0x0259CC80, void, UriFormatException_System_Runtime_Serialization_ISerializable_GetObjectData, (UriFormatException * __this, SerializationInfo * serializationInfo, StreamingContext streamingContext, MethodInfo * method)); DO_APP_FUNC(0x027B0570, bool, UriHelper_TestForSubPath, (uint16_t * pMe, uint16_t meLength, uint16_t * pShe, uint16_t sheLength, bool ignoreCase, MethodInfo * method)); -DO_APP_FUNC(0x027B0840, Char__Array *, UriHelper_EscapeString, (String * input, int32_t start, int32_t end, Char__Array * dest, int32_t destPos, bool isUriString, uint16_t force1, uint16_t force2, uint16_t rsvd, MethodInfo * method)); -DO_APP_FUNC(0x027B0E20, Char__Array *, UriHelper_EnsureDestinationSize, (uint16_t * pStr, Char__Array * dest, int32_t currentInputPos, int16_t charsToAdd, int16_t minReallocateChars, int32_t destPos, int32_t prevInputPos, MethodInfo * method)); -DO_APP_FUNC(0x027B0F30, Char__Array *, UriHelper_UnescapeString, (String * input, int32_t start, int32_t end, Char__Array * dest, int32_t destPosition, uint16_t rsvd1, uint16_t rsvd2, uint16_t rsvd3, UnescapeMode__Enum unescapeMode, UriParser * syntax, bool isQuery, MethodInfo * method)); -DO_APP_FUNC(0x027B1010, Char__Array *, UriHelper_UnescapeString_1, (uint16_t * pStr, int32_t start, int32_t end, Char__Array * dest, int32_t destPosition, uint16_t rsvd1, uint16_t rsvd2, uint16_t rsvd3, UnescapeMode__Enum unescapeMode, UriParser * syntax, bool isQuery, MethodInfo * method)); -DO_APP_FUNC(0x027B1AA0, void, UriHelper_MatchUTF8Sequence, (uint16_t * pDest, Char__Array * dest, int32_t destOffset, Char__Array * unescapedChars, int32_t charCount, Byte__Array * bytes, int32_t byteCount, bool isQuery, bool iriParsing, MethodInfo * method)); -DO_APP_FUNC(0x027B1FA0, void, UriHelper_EscapeAsciiChar, (uint16_t ch, Char__Array * to, int32_t pos, MethodInfo * method)); +DO_APP_FUNC(0x027B0840, Char__Array *, UriHelper_EscapeString, (String * input, int32_t start, int32_t end, Char__Array * dest, int32_t * destPos, bool isUriString, uint16_t force1, uint16_t force2, uint16_t rsvd, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED7D8, UriHelper_EscapeString__MethodInfo); +DO_APP_FUNC(0x027B0E20, Char__Array *, UriHelper_EnsureDestinationSize, (uint16_t * pStr, Char__Array * dest, int32_t currentInputPos, int16_t charsToAdd, int16_t minReallocateChars, int32_t * destPos, int32_t prevInputPos, MethodInfo * method)); +DO_APP_FUNC(0x027B0F30, Char__Array *, UriHelper_UnescapeString, (String * input, int32_t start, int32_t end, Char__Array * dest, int32_t * destPosition, uint16_t rsvd1, uint16_t rsvd2, uint16_t rsvd3, UnescapeMode__Enum unescapeMode, UriParser * syntax, bool isQuery, MethodInfo * method)); +DO_APP_FUNC(0x027B1010, Char__Array *, UriHelper_UnescapeString_1, (uint16_t * pStr, int32_t start, int32_t end, Char__Array * dest, int32_t * destPosition, uint16_t rsvd1, uint16_t rsvd2, uint16_t rsvd3, UnescapeMode__Enum unescapeMode, UriParser * syntax, bool isQuery, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED808, UriHelper_UnescapeString_1__MethodInfo); +DO_APP_FUNC(0x027B1AA0, void, UriHelper_MatchUTF8Sequence, (uint16_t * pDest, Char__Array * dest, int32_t * destOffset, Char__Array * unescapedChars, int32_t charCount, Byte__Array * bytes, int32_t byteCount, bool isQuery, bool iriParsing, MethodInfo * method)); +DO_APP_FUNC(0x027B1FA0, void, UriHelper_EscapeAsciiChar, (uint16_t ch, Char__Array * to, int32_t * pos, MethodInfo * method)); DO_APP_FUNC(0x027B20B0, uint16_t, UriHelper_EscapedAscii, (uint16_t digit, uint16_t next, MethodInfo * method)); DO_APP_FUNC(0x027B2150, bool, UriHelper_IsNotSafeForUnescape, (uint16_t ch, MethodInfo * method)); DO_APP_FUNC(0x027B21A0, bool, UriHelper_IsReservedUnreservedOrHash, (uint16_t c, MethodInfo * method)); @@ -26851,13 +30270,17 @@ DO_APP_FUNC(0x003CD440, int32_t, UriParser_get_DefaultPort, (UriParser * __this, DO_APP_FUNC(0x027B2940, void, UriParser__ctor, (UriParser * __this, MethodInfo * method)); DO_APP_FUNC(0x00A1B820, UriParser *, UriParser_OnNewUri, (UriParser * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, UriParser_OnRegister, (UriParser * __this, String * schemeName, int32_t defaultPort, MethodInfo * method)); -DO_APP_FUNC(0x027B2950, void, UriParser_InitializeAndValidate, (UriParser * __this, Uri * uri, UriFormatException * parsingError, MethodInfo * method)); -DO_APP_FUNC(0x027B2A30, String *, UriParser_Resolve, (UriParser * __this, Uri * baseUri, Uri * relativeUri, UriFormatException * parsingError, MethodInfo * method)); +DO_APP_FUNC(0x027B2950, void, UriParser_InitializeAndValidate, (UriParser * __this, Uri * uri, UriFormatException * * parsingError, MethodInfo * method)); +DO_APP_FUNC(0x027B2A30, String *, UriParser_Resolve, (UriParser * __this, Uri * baseUri, Uri * relativeUri, UriFormatException * * parsingError, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED7C0, UriParser_Resolve__MethodInfo); DO_APP_FUNC(0x027B2C50, bool, UriParser_IsBaseOf, (UriParser * __this, Uri * baseUri, Uri * relativeUri, MethodInfo * method)); DO_APP_FUNC(0x027B2C80, String *, UriParser_GetComponents, (UriParser * __this, Uri * uri, UriComponents__Enum components, UriFormat__Enum format, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED7D0, UriParser_GetComponents__MethodInfo); DO_APP_FUNC(0x027B2F10, bool, UriParser_IsWellFormedOriginalString, (UriParser * __this, Uri * uri, MethodInfo * method)); DO_APP_FUNC(0x027B2F30, void, UriParser_Register, (UriParser * uriParser, String * schemeName, int32_t defaultPort, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED7A8, UriParser_Register__MethodInfo); DO_APP_FUNC(0x027B3260, bool, UriParser_IsKnownScheme, (String * schemeName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED7B8, UriParser_IsKnownScheme__MethodInfo); DO_APP_FUNC(0x027B3480, bool, UriParser_get_ShouldUseLegacyV2Quirks, (MethodInfo * method)); DO_APP_FUNC(0x027B34E0, void, UriParser__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003BCD50, UriSyntaxFlags__Enum, UriParser_get_Flags, (UriParser * __this, MethodInfo * method)); @@ -26867,34 +30290,37 @@ DO_APP_FUNC(0x027B4AE0, bool, UriParser_IsAllSet, (UriParser * __this, UriSyntax DO_APP_FUNC(0x027B4B20, bool, UriParser_IsFullMatch, (UriParser * __this, UriSyntaxFlags__Enum flags, UriSyntaxFlags__Enum expected, MethodInfo * method)); DO_APP_FUNC(0x027B4B60, void, UriParser__ctor_1, (UriParser * __this, UriSyntaxFlags__Enum flags, MethodInfo * method)); DO_APP_FUNC(0x027B4C00, void, UriParser_FetchSyntax, (UriParser * syntax, String * lwrCaseSchemeName, int32_t defaultPort, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED708, UriParser_FetchSyntax__MethodInfo); DO_APP_FUNC(0x027B5160, UriParser *, UriParser_FindOrFetchAsUnknownV1Syntax, (String * lwrCaseScheme, MethodInfo * method)); DO_APP_FUNC(0x027B55E0, UriParser *, UriParser_GetSyntax, (String * lwrCaseScheme, MethodInfo * method)); DO_APP_FUNC(0x027B56D0, bool, UriParser_get_IsSimple, (UriParser * __this, MethodInfo * method)); DO_APP_FUNC(0x027B56E0, void, UriParser_CheckSetIsSimpleFlag, (UriParser * __this, MethodInfo * method)); DO_APP_FUNC(0x027B5980, void, UriParser_SetUpdatableFlags, (UriParser * __this, UriSyntaxFlags__Enum flags, MethodInfo * method)); DO_APP_FUNC(0x027B59A0, UriParser *, UriParser_InternalOnNewUri, (UriParser * __this, MethodInfo * method)); -DO_APP_FUNC(0x027B5A40, void, UriParser_InternalValidate, (UriParser * __this, Uri * thisUri, UriFormatException * parsingError, MethodInfo * method)); -DO_APP_FUNC(0x027B5A60, String *, UriParser_InternalResolve, (UriParser * __this, Uri * thisBaseUri, Uri * uriLink, UriFormatException * parsingError, MethodInfo * method)); +DO_APP_FUNC(0x027B5A40, void, UriParser_InternalValidate, (UriParser * __this, Uri * thisUri, UriFormatException * * parsingError, MethodInfo * method)); +DO_APP_FUNC(0x027B5A60, String *, UriParser_InternalResolve, (UriParser * __this, Uri * thisBaseUri, Uri * uriLink, UriFormatException * * parsingError, MethodInfo * method)); DO_APP_FUNC(0x027B5A80, bool, UriParser_InternalIsBaseOf, (UriParser * __this, Uri * thisBaseUri, Uri * uriLink, MethodInfo * method)); DO_APP_FUNC(0x027B5AA0, String *, UriParser_InternalGetComponents, (UriParser * __this, Uri * thisUri, UriComponents__Enum uriComponents, UriFormat__Enum uriFormat, MethodInfo * method)); DO_APP_FUNC(0x01D3E190, bool, UriParser_InternalIsWellFormedOriginalString, (UriParser * __this, Uri * thisUri, MethodInfo * method)); DO_APP_FUNC(0x027B5AC0, void, UriParser_BuiltInUriParser__ctor, (UriParser_BuiltInUriParser * __this, String * lwrCaseScheme, int32_t defaultPort, UriSyntaxFlags__Enum syntaxFlags, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, DomainNameHelper__ctor, (DomainNameHelper * __this, MethodInfo * method)); -DO_APP_FUNC(0x027B5B90, String *, DomainNameHelper_ParseCanonicalName, (String * str, int32_t start, int32_t end, bool loopback, MethodInfo * method)); -DO_APP_FUNC(0x027B5E00, bool, DomainNameHelper_IsValid, (uint16_t * name, uint16_t pos, int32_t returnedEnd, bool notCanonical, bool notImplicitFile, MethodInfo * method)); -DO_APP_FUNC(0x027B5F80, bool, DomainNameHelper_IsValidByIri, (uint16_t * name, uint16_t pos, int32_t returnedEnd, bool notCanonical, bool notImplicitFile, MethodInfo * method)); +DO_APP_FUNC(0x027B5B90, String *, DomainNameHelper_ParseCanonicalName, (String * str, int32_t start, int32_t end, bool * loopback, MethodInfo * method)); +DO_APP_FUNC(0x027B5E00, bool, DomainNameHelper_IsValid, (uint16_t * name, uint16_t pos, int32_t * returnedEnd, bool * notCanonical, bool notImplicitFile, MethodInfo * method)); +DO_APP_FUNC(0x027B5F80, bool, DomainNameHelper_IsValidByIri, (uint16_t * name, uint16_t pos, int32_t * returnedEnd, bool * notCanonical, bool notImplicitFile, MethodInfo * method)); DO_APP_FUNC(0x027B6150, String *, DomainNameHelper_IdnEquivalent, (String * hostname, MethodInfo * method)); -DO_APP_FUNC(0x027B61A0, String *, DomainNameHelper_IdnEquivalent_1, (uint16_t * hostname, int32_t start, int32_t end, bool allAscii, bool atLeastOneValidIdn, MethodInfo * method)); -DO_APP_FUNC(0x027B64E0, String *, DomainNameHelper_IdnEquivalent_2, (uint16_t * hostname, int32_t start, int32_t end, bool allAscii, String * bidiStrippedHost, MethodInfo * method)); +DO_APP_FUNC(0x027B61A0, String *, DomainNameHelper_IdnEquivalent_1, (uint16_t * hostname, int32_t start, int32_t end, bool * allAscii, bool * atLeastOneValidIdn, MethodInfo * method)); +DO_APP_FUNC(0x027B64E0, String *, DomainNameHelper_IdnEquivalent_2, (uint16_t * hostname, int32_t start, int32_t end, bool * allAscii, String * * bidiStrippedHost, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED650, DomainNameHelper_IdnEquivalent_2__MethodInfo); DO_APP_FUNC(0x027B6670, bool, DomainNameHelper_IsIdnAce, (String * input, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x027B6700, bool, DomainNameHelper_IsIdnAce_1, (uint16_t * input, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x027B6730, String *, DomainNameHelper_UnicodeEquivalent, (String * idnHost, uint16_t * hostname, int32_t start, int32_t end, MethodInfo * method)); -DO_APP_FUNC(0x027B68B0, String *, DomainNameHelper_UnicodeEquivalent_1, (uint16_t * hostname, int32_t start, int32_t end, bool allAscii, bool atLeastOneValidIdn, MethodInfo * method)); -DO_APP_FUNC(0x027B6F50, bool, DomainNameHelper_IsASCIILetterOrDigit, (uint16_t character, bool notCanonical, MethodInfo * method)); -DO_APP_FUNC(0x027B6F80, bool, DomainNameHelper_IsValidDomainLabelCharacter, (uint16_t character, bool notCanonical, MethodInfo * method)); +DO_APP_FUNC(0x027B68B0, String *, DomainNameHelper_UnicodeEquivalent_1, (uint16_t * hostname, int32_t start, int32_t end, bool * allAscii, bool * atLeastOneValidIdn, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED668, DomainNameHelper_UnicodeEquivalent_1__MethodInfo); +DO_APP_FUNC(0x027B6F50, bool, DomainNameHelper_IsASCIILetterOrDigit, (uint16_t character, bool * notCanonical, MethodInfo * method)); +DO_APP_FUNC(0x027B6F80, bool, DomainNameHelper_IsValidDomainLabelCharacter, (uint16_t character, bool * notCanonical, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, UncNameHelper__ctor, (UncNameHelper * __this, MethodInfo * method)); -DO_APP_FUNC(0x027B6FC0, String *, UncNameHelper_ParseCanonicalName, (String * str, int32_t start, int32_t end, bool loopback, MethodInfo * method)); -DO_APP_FUNC(0x027B6FD0, bool, UncNameHelper_IsValid, (uint16_t * name, uint16_t start, int32_t returnedEnd, bool notImplicitFile, MethodInfo * method)); +DO_APP_FUNC(0x027B6FC0, String *, UncNameHelper_ParseCanonicalName, (String * str, int32_t start, int32_t end, bool * loopback, MethodInfo * method)); +DO_APP_FUNC(0x027B6FD0, bool, UncNameHelper_IsValid, (uint16_t * name, uint16_t start, int32_t * returnedEnd, bool notImplicitFile, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, EnvironmentHelpers_IsWindowsVistaOrAbove, (MethodInfo * method)); DO_APP_FUNC(0x0084C240, void, IOAsyncCallback__ctor, (IOAsyncCallback * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EE650, void, IOAsyncCallback_Invoke, (IOAsyncCallback * __this, IOAsyncResult * ioares, MethodInfo * method)); @@ -26928,12 +30354,16 @@ DO_APP_FUNC(0x027B7F50, String *, SRDescriptionAttribute_get_Description, (SRDes DO_APP_FUNC(0x003AE050, void, UriTypeConverter__ctor, (UriTypeConverter * __this, MethodInfo * method)); DO_APP_FUNC(0x027B7FB0, bool, UriTypeConverter_CanConvert, (UriTypeConverter * __this, Type * type, MethodInfo * method)); DO_APP_FUNC(0x027B8070, bool, UriTypeConverter_CanConvertFrom, (UriTypeConverter * __this, ITypeDescriptorContext * context, Type * sourceType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED630, UriTypeConverter_CanConvertFrom__MethodInfo); DO_APP_FUNC(0x027B8130, bool, UriTypeConverter_CanConvertTo, (UriTypeConverter * __this, ITypeDescriptorContext * context, Type * destinationType, MethodInfo * method)); DO_APP_FUNC(0x027B81A0, Object *, UriTypeConverter_ConvertFrom, (UriTypeConverter * __this, ITypeDescriptorContext * context, CultureInfo * culture, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED638, UriTypeConverter_ConvertFrom__MethodInfo); DO_APP_FUNC(0x027B8430, Object *, UriTypeConverter_ConvertTo, (UriTypeConverter * __this, ITypeDescriptorContext * context, CultureInfo * culture, Object * value, Type * destinationType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED5F8, UriTypeConverter_ConvertTo__MethodInfo); DO_APP_FUNC(0x003BCBE0, void, ValueSerializerAttribute__ctor, (ValueSerializerAttribute * __this, Type * valueSerializerType, MethodInfo * method)); DO_APP_FUNC(0x003AE960, void, ValueSerializerAttribute__ctor_1, (ValueSerializerAttribute * __this, String * valueSerializerTypeName, MethodInfo * method)); DO_APP_FUNC(0x027B86D0, Type *, ValueSerializerAttribute_get_ValueSerializerType, (ValueSerializerAttribute * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED620, ValueSerializerAttribute_get_ValueSerializerType__MethodInfo); DO_APP_FUNC(0x027B87D0, String *, ValueSerializerAttribute_get_ValueSerializerTypeName, (ValueSerializerAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x027B8860, void, BarrierPostPhaseException__ctor, (BarrierPostPhaseException * __this, MethodInfo * method)); DO_APP_FUNC(0x027B88E0, void, BarrierPostPhaseException__ctor_1, (BarrierPostPhaseException * __this, Exception * innerException, MethodInfo * method)); @@ -26946,45 +30376,60 @@ DO_APP_FUNC(0x010B6230, int64_t, Barrier_get_CurrentPhaseNumber, (Barrier * __th DO_APP_FUNC(0x027B8B30, void, Barrier_set_CurrentPhaseNumber, (Barrier * __this, int64_t value, MethodInfo * method)); DO_APP_FUNC(0x027B8B40, void, Barrier__ctor, (Barrier * __this, int32_t participantCount, MethodInfo * method)); DO_APP_FUNC(0x027B8B50, void, Barrier__ctor_1, (Barrier * __this, int32_t participantCount, Action_1_System_Threading_Barrier_ * postPhaseAction, MethodInfo * method)); -DO_APP_FUNC(0x027B8E10, void, Barrier_GetCurrentTotal, (Barrier * __this, int32_t currentTotal, int32_t current, int32_t total, bool sense, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED4E0, Barrier__ctor_1__MethodInfo); +DO_APP_FUNC(0x027B8E10, void, Barrier_GetCurrentTotal, (Barrier * __this, int32_t currentTotal, int32_t * current, int32_t * total, bool * sense, MethodInfo * method)); DO_APP_FUNC(0x027B8E40, bool, Barrier_SetCurrentTotal, (Barrier * __this, int32_t currentTotal, int32_t current, int32_t total, bool sense, MethodInfo * method)); DO_APP_FUNC(0x027B8E80, int64_t, Barrier_AddParticipant, (Barrier * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED4D0, Barrier_AddParticipant__MethodInfo); DO_APP_FUNC(0x027B8F10, int64_t, Barrier_AddParticipants, (Barrier * __this, int32_t participantCount, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED4F0, Barrier_AddParticipants__MethodInfo); DO_APP_FUNC(0x027B92E0, void, Barrier_RemoveParticipant, (Barrier * __this, MethodInfo * method)); DO_APP_FUNC(0x027B92F0, void, Barrier_RemoveParticipants, (Barrier * __this, int32_t participantCount, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED558, Barrier_RemoveParticipants__MethodInfo); DO_APP_FUNC(0x027B9650, void, Barrier_SignalAndWait, (Barrier * __this, MethodInfo * method)); DO_APP_FUNC(0x027B9660, void, Barrier_SignalAndWait_1, (Barrier * __this, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x027B9670, bool, Barrier_SignalAndWait_2, (Barrier * __this, TimeSpan timeout, MethodInfo * method)); DO_APP_FUNC(0x027B9800, bool, Barrier_SignalAndWait_3, (Barrier * __this, TimeSpan timeout, CancellationToken cancellationToken, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED520, Barrier_SignalAndWait_3__MethodInfo); DO_APP_FUNC(0x027B9990, bool, Barrier_SignalAndWait_4, (Barrier * __this, int32_t millisecondsTimeout, MethodInfo * method)); DO_APP_FUNC(0x027B99A0, bool, Barrier_SignalAndWait_5, (Barrier * __this, int32_t millisecondsTimeout, CancellationToken cancellationToken, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED538, Barrier_SignalAndWait_5__MethodInfo); DO_APP_FUNC(0x027BA130, void, Barrier_FinishPhase, (Barrier * __this, bool observedSense, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED468, Barrier_FinishPhase__MethodInfo); DO_APP_FUNC(0x027BA530, void, Barrier_InvokePostPhaseAction, (Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED460, Barrier_InvokePostPhaseAction__MethodInfo); DO_APP_FUNC(0x027BA5C0, void, Barrier_SetResetEvents, (Barrier * __this, bool observedSense, MethodInfo * method)); DO_APP_FUNC(0x027BA6B0, void, Barrier_WaitCurrentPhase, (Barrier * __this, ManualResetEventSlim * currentPhaseEvent, int64_t observedPhase, MethodInfo * method)); DO_APP_FUNC(0x027BA7E0, bool, Barrier_DiscontinuousWait, (Barrier * __this, ManualResetEventSlim * currentPhaseEvent, int32_t totalTimeout, CancellationToken token, int64_t observedPhase, MethodInfo * method)); DO_APP_FUNC(0x027BA920, void, Barrier_Dispose, (Barrier * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED458, Barrier_Dispose__MethodInfo); DO_APP_FUNC(0x027BAA60, void, Barrier_Dispose_1, (Barrier * __this, bool disposing, MethodInfo * method)); DO_APP_FUNC(0x027BAAC0, void, Barrier_ThrowIfDisposed, (Barrier * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED4B0, Barrier_ThrowIfDisposed__MethodInfo); DO_APP_FUNC(0x027BAB50, void, Semaphore__ctor, (Semaphore * __this, int32_t initialCount, int32_t maximumCount, MethodInfo * method)); DO_APP_FUNC(0x027BAB70, void, Semaphore__ctor_1, (Semaphore * __this, int32_t initialCount, int32_t maximumCount, String * name, MethodInfo * method)); -DO_APP_FUNC(0x027BAEC0, void, Semaphore__ctor_2, (Semaphore * __this, int32_t initialCount, int32_t maximumCount, String * name, bool createdNew, MethodInfo * method)); -DO_APP_FUNC(0x027BAEF0, void, Semaphore__ctor_3, (Semaphore * __this, int32_t initialCount, int32_t maximumCount, String * name, bool createdNew, SemaphoreSecurity * semaphoreSecurity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED4A0, Semaphore__ctor_1__MethodInfo); +DO_APP_FUNC(0x027BAEC0, void, Semaphore__ctor_2, (Semaphore * __this, int32_t initialCount, int32_t maximumCount, String * name, bool * createdNew, MethodInfo * method)); +DO_APP_FUNC(0x027BAEF0, void, Semaphore__ctor_3, (Semaphore * __this, int32_t initialCount, int32_t maximumCount, String * name, bool * createdNew, SemaphoreSecurity * semaphoreSecurity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED480, Semaphore__ctor_3__MethodInfo); DO_APP_FUNC(0x027BB240, void, Semaphore__ctor_4, (Semaphore * __this, SafeWaitHandle * handle, MethodInfo * method)); DO_APP_FUNC(0x027BB2B0, Semaphore *, Semaphore_OpenExisting, (String * name, MethodInfo * method)); DO_APP_FUNC(0x027BB2D0, Semaphore *, Semaphore_OpenExisting_1, (String * name, SemaphoreRights__Enum rights, MethodInfo * method)); -DO_APP_FUNC(0x027BB320, bool, Semaphore_TryOpenExisting, (String * name, Semaphore * result, MethodInfo * method)); -DO_APP_FUNC(0x027BB340, bool, Semaphore_TryOpenExisting_1, (String * name, SemaphoreRights__Enum rights, Semaphore * result, MethodInfo * method)); -DO_APP_FUNC(0x027BB350, Semaphore_OpenExistingResult__Enum, Semaphore_OpenExistingWorker, (String * name, SemaphoreRights__Enum rights, Semaphore * result, MethodInfo * method)); +DO_APP_FUNC(0x027BB320, bool, Semaphore_TryOpenExisting, (String * name, Semaphore * * result, MethodInfo * method)); +DO_APP_FUNC(0x027BB340, bool, Semaphore_TryOpenExisting_1, (String * name, SemaphoreRights__Enum rights, Semaphore * * result, MethodInfo * method)); +DO_APP_FUNC(0x027BB350, Semaphore_OpenExistingResult__Enum, Semaphore_OpenExistingWorker, (String * name, SemaphoreRights__Enum rights, Semaphore * * result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED488, Semaphore_OpenExistingWorker__MethodInfo); DO_APP_FUNC(0x027BB540, int32_t, Semaphore_Release, (Semaphore * __this, MethodInfo * method)); DO_APP_FUNC(0x027BB5E0, int32_t, Semaphore_Release_1, (Semaphore * __this, int32_t releaseCount, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED3B8, Semaphore_Release_1__MethodInfo); DO_APP_FUNC(0x027BB6F0, SemaphoreSecurity *, Semaphore_GetAccessControl, (Semaphore * __this, MethodInfo * method)); DO_APP_FUNC(0x027BB7C0, void, Semaphore_SetAccessControl, (Semaphore * __this, SemaphoreSecurity * semaphoreSecurity, MethodInfo * method)); -DO_APP_FUNC(0x027BB840, void *, Semaphore_CreateSemaphore_internal, (int32_t initialCount, int32_t maximumCount, String * name, int32_t errorCode, MethodInfo * method)); -DO_APP_FUNC(0x027BB8D0, void *, Semaphore_OpenSemaphore_internal, (String * name, SemaphoreRights__Enum rights, int32_t errorCode, MethodInfo * method)); -DO_APP_FUNC(0x027BB940, void *, Semaphore_CreateSemaphore_icall, (int32_t initialCount, int32_t maximumCount, uint16_t * name, int32_t name_length, int32_t errorCode, MethodInfo * method)); -DO_APP_FUNC(0x027BB9C0, void *, Semaphore_OpenSemaphore_icall, (uint16_t * name, int32_t name_length, SemaphoreRights__Enum rights, int32_t errorCode, MethodInfo * method)); -DO_APP_FUNC(0x027BB9D0, bool, Semaphore_ReleaseSemaphore_internal, (void * handle, int32_t releaseCount, int32_t previousCount, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED3C0, Semaphore_SetAccessControl__MethodInfo); +DO_APP_FUNC(0x027BB840, void *, Semaphore_CreateSemaphore_internal, (int32_t initialCount, int32_t maximumCount, String * name, int32_t * errorCode, MethodInfo * method)); +DO_APP_FUNC(0x027BB8D0, void *, Semaphore_OpenSemaphore_internal, (String * name, SemaphoreRights__Enum rights, int32_t * errorCode, MethodInfo * method)); +DO_APP_FUNC(0x027BB940, void *, Semaphore_CreateSemaphore_icall, (int32_t initialCount, int32_t maximumCount, uint16_t * name, int32_t name_length, int32_t * errorCode, MethodInfo * method)); +DO_APP_FUNC(0x027BB9C0, void *, Semaphore_OpenSemaphore_icall, (uint16_t * name, int32_t name_length, SemaphoreRights__Enum rights, int32_t * errorCode, MethodInfo * method)); +DO_APP_FUNC(0x027BB9D0, bool, Semaphore_ReleaseSemaphore_internal, (void * handle, int32_t releaseCount, int32_t * previousCount, MethodInfo * method)); DO_APP_FUNC(0x027BB9F0, void, ThreadExceptionEventArgs__ctor, (ThreadExceptionEventArgs * __this, Exception * t, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, Exception *, ThreadExceptionEventArgs_get_Exception, (ThreadExceptionEventArgs * __this, MethodInfo * method)); DO_APP_FUNC(0x0103E630, void, ThreadExceptionEventHandler__ctor, (ThreadExceptionEventHandler * __this, Object * object, void * method_1, MethodInfo * method)); @@ -27001,38 +30446,43 @@ DO_APP_FUNC(0x027BBEC0, int32_t, FrameworkName_GetHashCode, (FrameworkName * __t DO_APP_FUNC(0x027BBF50, String *, FrameworkName_ToString, (FrameworkName * __this, MethodInfo * method)); DO_APP_FUNC(0x027BBF60, void, FrameworkName__ctor, (FrameworkName * __this, String * identifier, Version * version, MethodInfo * method)); DO_APP_FUNC(0x027BBF80, void, FrameworkName__ctor_1, (FrameworkName * __this, String * identifier, Version * version, String * profile, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED428, FrameworkName__ctor_1__MethodInfo); DO_APP_FUNC(0x027BC290, void, FrameworkName__ctor_2, (FrameworkName * __this, String * frameworkName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED3E8, FrameworkName__ctor_2__MethodInfo); DO_APP_FUNC(0x027BCAD0, bool, FrameworkName_op_Equality, (FrameworkName * left, FrameworkName * right, MethodInfo * method)); DO_APP_FUNC(0x027BCAF0, bool, FrameworkName_op_Inequality, (FrameworkName * left, FrameworkName * right, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, DefaultParameterValueAttribute__ctor, (DefaultParameterValueAttribute * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, Object *, DefaultParameterValueAttribute_get_Value, (DefaultParameterValueAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x027BCB20, void, HandleCollector__ctor, (HandleCollector * __this, String * name, int32_t initialThreshold, MethodInfo * method)); DO_APP_FUNC(0x027BCB40, void, HandleCollector__ctor_1, (HandleCollector * __this, String * name, int32_t initialThreshold, int32_t maximumThreshold, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1200, HandleCollector__ctor_1__MethodInfo); DO_APP_FUNC(0x003CD280, int32_t, HandleCollector_get_Count, (HandleCollector * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, HandleCollector_get_InitialThreshold, (HandleCollector * __this, MethodInfo * method)); DO_APP_FUNC(0x003CD440, int32_t, HandleCollector_get_MaximumThreshold, (HandleCollector * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, String *, HandleCollector_get_Name, (HandleCollector * __this, MethodInfo * method)); DO_APP_FUNC(0x027BCD90, void, HandleCollector_Add, (HandleCollector * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF11F8, HandleCollector_Add__MethodInfo); DO_APP_FUNC(0x027BD170, void, HandleCollector_Remove, (HandleCollector * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF11F0, HandleCollector_Remove__MethodInfo); DO_APP_FUNC(0x027BD410, void, IAdviseSink_OnClose, (IAdviseSink * __this, MethodInfo * method)); -DO_APP_FUNC(0x027BD430, void, IAdviseSink_OnDataChange, (IAdviseSink * __this, FORMATETC format, STGMEDIUM stgmedium, MethodInfo * method)); +DO_APP_FUNC(0x027BD430, void, IAdviseSink_OnDataChange, (IAdviseSink * __this, FORMATETC * format, STGMEDIUM * stgmedium, MethodInfo * method)); DO_APP_FUNC(0x027BD4D0, void, IAdviseSink_OnRename, (IAdviseSink * __this, IMoniker * moniker, MethodInfo * method)); DO_APP_FUNC(0x027BD560, void, IAdviseSink_OnSave, (IAdviseSink * __this, MethodInfo * method)); DO_APP_FUNC(0x027BD580, void, IAdviseSink_OnViewChange, (IAdviseSink * __this, int32_t aspect, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x027BD5C0, int32_t, IDataObject_DAdvise, (IDataObject * __this, FORMATETC pFormatetc, ADVF__Enum advf, IAdviseSink * adviseSink, int32_t connection, MethodInfo * method)); +DO_APP_FUNC(0x027BD5C0, int32_t, IDataObject_DAdvise, (IDataObject * __this, FORMATETC * pFormatetc, ADVF__Enum advf, IAdviseSink * adviseSink, int32_t * connection, MethodInfo * method)); DO_APP_FUNC(0x027BD670, void, IDataObject_DUnadvise, (IDataObject * __this, int32_t connection, MethodInfo * method)); -DO_APP_FUNC(0x027BD6B0, int32_t, IDataObject_EnumDAdvise, (IDataObject * __this, IEnumSTATDATA * enumAdvise, MethodInfo * method)); +DO_APP_FUNC(0x027BD6B0, int32_t, IDataObject_EnumDAdvise, (IDataObject * __this, IEnumSTATDATA * * enumAdvise, MethodInfo * method)); DO_APP_FUNC(0x027BD7D0, IEnumFORMATETC *, IDataObject_EnumFormatEtc, (IDataObject * __this, DATADIR__Enum direction, MethodInfo * method)); -DO_APP_FUNC(0x027BD8A0, int32_t, IDataObject_GetCanonicalFormatEtc, (IDataObject * __this, FORMATETC formatIn, FORMATETC formatOut, MethodInfo * method)); -DO_APP_FUNC(0x027BD8E0, void, IDataObject_GetData, (IDataObject * __this, FORMATETC format, STGMEDIUM medium, MethodInfo * method)); -DO_APP_FUNC(0x027BD9C0, void, IDataObject_GetDataHere, (IDataObject * __this, FORMATETC format, STGMEDIUM medium, MethodInfo * method)); -DO_APP_FUNC(0x027BDC20, int32_t, IDataObject_QueryGetData, (IDataObject * __this, FORMATETC format, MethodInfo * method)); -DO_APP_FUNC(0x027BDC50, void, IDataObject_SetData, (IDataObject * __this, FORMATETC formatIn, STGMEDIUM medium, bool release, MethodInfo * method)); -DO_APP_FUNC(0x027BDD10, void, IEnumFORMATETC_Clone, (IEnumFORMATETC * __this, IEnumFORMATETC * newEnum, MethodInfo * method)); +DO_APP_FUNC(0x027BD8A0, int32_t, IDataObject_GetCanonicalFormatEtc, (IDataObject * __this, FORMATETC * formatIn, FORMATETC * formatOut, MethodInfo * method)); +DO_APP_FUNC(0x027BD8E0, void, IDataObject_GetData, (IDataObject * __this, FORMATETC * format, STGMEDIUM * medium, MethodInfo * method)); +DO_APP_FUNC(0x027BD9C0, void, IDataObject_GetDataHere, (IDataObject * __this, FORMATETC * format, STGMEDIUM * medium, MethodInfo * method)); +DO_APP_FUNC(0x027BDC20, int32_t, IDataObject_QueryGetData, (IDataObject * __this, FORMATETC * format, MethodInfo * method)); +DO_APP_FUNC(0x027BDC50, void, IDataObject_SetData, (IDataObject * __this, FORMATETC * formatIn, STGMEDIUM * medium, bool release, MethodInfo * method)); +DO_APP_FUNC(0x027BDD10, void, IEnumFORMATETC_Clone, (IEnumFORMATETC * __this, IEnumFORMATETC * * newEnum, MethodInfo * method)); DO_APP_FUNC(0x027BDE40, int32_t, IEnumFORMATETC_Next, (IEnumFORMATETC * __this, int32_t celt, FORMATETC__Array * rgelt, Int32__Array * pceltFetched, MethodInfo * method)); DO_APP_FUNC(0x027BDF80, int32_t, IEnumFORMATETC_Reset, (IEnumFORMATETC * __this, MethodInfo * method)); DO_APP_FUNC(0x027BDFA0, int32_t, IEnumFORMATETC_Skip, (IEnumFORMATETC * __this, int32_t celt, MethodInfo * method)); -DO_APP_FUNC(0x027BDFD0, void, IEnumSTATDATA_Clone, (IEnumSTATDATA * __this, IEnumSTATDATA * newEnum, MethodInfo * method)); +DO_APP_FUNC(0x027BDFD0, void, IEnumSTATDATA_Clone, (IEnumSTATDATA * __this, IEnumSTATDATA * * newEnum, MethodInfo * method)); DO_APP_FUNC(0x027BE100, int32_t, IEnumSTATDATA_Next, (IEnumSTATDATA * __this, int32_t celt, STATDATA__Array * rgelt, Int32__Array * pceltFetched, MethodInfo * method)); DO_APP_FUNC(0x027BE460, int32_t, IEnumSTATDATA_Reset, (IEnumSTATDATA * __this, MethodInfo * method)); DO_APP_FUNC(0x027BE480, int32_t, IEnumSTATDATA_Skip, (IEnumSTATDATA * __this, int32_t celt, MethodInfo * method)); @@ -27042,14 +30492,18 @@ DO_APP_FUNC(0x0042F0F0, IAsyncResult *, ElapsedEventHandler_BeginInvoke, (Elapse DO_APP_FUNC(0x003BA270, void, ElapsedEventHandler_EndInvoke, (ElapsedEventHandler * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x027BE4B0, void, Timer_1__ctor, (Timer_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x027BE5C0, void, Timer_1__ctor_1, (Timer_1 * __this, double interval, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1158, Timer_1__ctor_1__MethodInfo); DO_APP_FUNC(0x00897450, bool, Timer_1_get_AutoReset, (Timer_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x027BE800, void, Timer_1_set_AutoReset, (Timer_1 * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x00594F20, bool, Timer_1_get_Enabled, (Timer_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x027BE890, void, Timer_1_set_Enabled, (Timer_1 * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1170, Timer_1_set_Enabled__MethodInfo); DO_APP_FUNC(0x027BEAE0, int32_t, Timer_1_CalculateRoundedInterval, (double interval, bool argumentCheck, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1140, Timer_1_CalculateRoundedInterval__MethodInfo); DO_APP_FUNC(0x027BECE0, void, Timer_1_UpdateTimer, (Timer_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x01F04880, double, Timer_1_get_Interval, (Timer_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x027BED30, void, Timer_1_set_Interval, (Timer_1 * __this, double value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1138, Timer_1_set_Interval__MethodInfo); DO_APP_FUNC(0x027BEEC0, void, Timer_1_add_Elapsed, (Timer_1 * __this, ElapsedEventHandler * value, MethodInfo * method)); DO_APP_FUNC(0x027BEFB0, void, Timer_1_remove_Elapsed, (Timer_1 * __this, ElapsedEventHandler * value, MethodInfo * method)); DO_APP_FUNC(0x027BF0A0, void, Timer_1_set_Site, (Timer_1 * __this, ISite * value, MethodInfo * method)); @@ -27063,13 +30517,16 @@ DO_APP_FUNC(0x027BF410, void, Timer_1_EndInit, (Timer_1 * __this, MethodInfo * m DO_APP_FUNC(0x027BF420, void, Timer_1_Start, (Timer_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x027BF430, void, Timer_1_Stop, (Timer_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x027BF440, void, Timer_1_MyTimerCallback, (Timer_1 * __this, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF11D0, Timer_1_MyTimerCallback__MethodInfo); DO_APP_FUNC(0x027BF680, void, TimersDescriptionAttribute__ctor, (TimersDescriptionAttribute * __this, String * description, MethodInfo * method)); DO_APP_FUNC(0x027B7F50, String *, TimersDescriptionAttribute_get_Description, (TimersDescriptionAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x027BF720, void, ElapsedEventArgs__ctor, (ElapsedEventArgs * __this, DateTime time, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, DateTime, ElapsedEventArgs_get_SignalTime, (ElapsedEventArgs * __this, MethodInfo * method)); DO_APP_FUNC(0x027BF780, void, ElapsedEventArgs__ctor_1, (ElapsedEventArgs * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1178, ElapsedEventArgs__ctor_1__MethodInfo); DO_APP_FUNC(0x003AE050, void, HttpUtility__ctor, (HttpUtility * __this, MethodInfo * method)); DO_APP_FUNC(0x027BF7B0, void, HttpUtility_HtmlAttributeEncode, (String * s, TextWriter * output, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1188, HttpUtility_HtmlAttributeEncode__MethodInfo); DO_APP_FUNC(0x027BF890, String *, HttpUtility_HtmlAttributeEncode_1, (String * s, MethodInfo * method)); DO_APP_FUNC(0x027BFA10, String *, HttpUtility_UrlDecode, (String * str, MethodInfo * method)); DO_APP_FUNC(0x027BFA40, Char__Array *, HttpUtility_GetChars, (MemoryStream * b, Encoding * e, MethodInfo * method)); @@ -27080,10 +30537,13 @@ DO_APP_FUNC(0x027C00B0, int32_t, HttpUtility_GetInt, (uint8_t b, MethodInfo * me DO_APP_FUNC(0x027C00E0, int32_t, HttpUtility_GetChar, (Byte__Array * bytes, int32_t offset, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x027C0160, int32_t, HttpUtility_GetChar_1, (String * str, int32_t offset, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x027C0210, String *, HttpUtility_UrlDecode_3, (Byte__Array * bytes, int32_t offset, int32_t count, Encoding * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1108, HttpUtility_UrlDecode_3__MethodInfo); DO_APP_FUNC(0x027C0830, Byte__Array *, HttpUtility_UrlDecodeToBytes, (Byte__Array * bytes, MethodInfo * method)); DO_APP_FUNC(0x027C0850, Byte__Array *, HttpUtility_UrlDecodeToBytes_1, (String * str, MethodInfo * method)); DO_APP_FUNC(0x027C0900, Byte__Array *, HttpUtility_UrlDecodeToBytes_2, (String * str, Encoding * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1110, HttpUtility_UrlDecodeToBytes_2__MethodInfo); DO_APP_FUNC(0x027C09B0, Byte__Array *, HttpUtility_UrlDecodeToBytes_3, (Byte__Array * bytes, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1118, HttpUtility_UrlDecodeToBytes_3__MethodInfo); DO_APP_FUNC(0x027C0C40, String *, HttpUtility_UrlEncode, (String * str, MethodInfo * method)); DO_APP_FUNC(0x027C0C70, String *, HttpUtility_UrlEncode_1, (String * str, Encoding * e, MethodInfo * method)); DO_APP_FUNC(0x027C0EC0, String *, HttpUtility_UrlEncode_2, (Byte__Array * bytes, MethodInfo * method)); @@ -27096,14 +30556,17 @@ DO_APP_FUNC(0x027C12C0, String *, HttpUtility_UrlEncodeUnicode, (String * str, M DO_APP_FUNC(0x027C1430, Byte__Array *, HttpUtility_UrlEncodeUnicodeToBytes, (String * str, MethodInfo * method)); DO_APP_FUNC(0x027C1570, String *, HttpUtility_HtmlDecode, (String * s, MethodInfo * method)); DO_APP_FUNC(0x027C16F0, void, HttpUtility_HtmlDecode_1, (String * s, TextWriter * output, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1130, HttpUtility_HtmlDecode_1__MethodInfo); DO_APP_FUNC(0x027C17D0, String *, HttpUtility_HtmlEncode, (String * s, MethodInfo * method)); DO_APP_FUNC(0x027C1950, void, HttpUtility_HtmlEncode_1, (String * s, TextWriter * output, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1068, HttpUtility_HtmlEncode_1__MethodInfo); DO_APP_FUNC(0x027C1A30, String *, HttpUtility_HtmlEncode_2, (Object * value, MethodInfo * method)); DO_APP_FUNC(0x027C1A70, String *, HttpUtility_JavaScriptStringEncode, (String * value, MethodInfo * method)); DO_APP_FUNC(0x027C1A80, String *, HttpUtility_JavaScriptStringEncode_1, (String * value, bool addDoubleQuotes, MethodInfo * method)); DO_APP_FUNC(0x027C1E90, String *, HttpUtility_UrlPathEncode, (String * str, MethodInfo * method)); DO_APP_FUNC(0x027C1F00, NameValueCollection *, HttpUtility_ParseQueryString, (String * query, MethodInfo * method)); DO_APP_FUNC(0x027C20C0, NameValueCollection *, HttpUtility_ParseQueryString_1, (String * query, Encoding * encoding, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1020, HttpUtility_ParseQueryString_1__MethodInfo); DO_APP_FUNC(0x027C2270, void, HttpUtility_ParseQueryString_2, (String * query, Encoding * encoding, NameValueCollection * result, MethodInfo * method)); DO_APP_FUNC(0x027C2450, String *, HttpUtility_HttpQSCollection_ToString, (HttpUtility_HttpQSCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x027C2670, void, HttpUtility_HttpQSCollection__ctor, (HttpUtility_HttpQSCollection * __this, MethodInfo * method)); @@ -27112,19 +30575,25 @@ DO_APP_FUNC(0x027C2680, void, Helpers_1__cctor, (MethodInfo * method)); DO_APP_FUNC(0x027C2790, IDictionary_2_System_String_System_Char_ *, HttpEncoder_get_Entities, (MethodInfo * method)); DO_APP_FUNC(0x027C2980, HttpEncoder *, HttpEncoder_get_Current, (MethodInfo * method)); DO_APP_FUNC(0x027C2AC0, void, HttpEncoder_set_Current, (HttpEncoder * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF10B0, HttpEncoder_set_Current__MethodInfo); DO_APP_FUNC(0x027C2BD0, HttpEncoder *, HttpEncoder_get_Default, (MethodInfo * method)); DO_APP_FUNC(0x027C2C50, void, HttpEncoder__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HttpEncoder__ctor, (HttpEncoder * __this, MethodInfo * method)); -DO_APP_FUNC(0x027C3020, void, HttpEncoder_HeaderNameValueEncode, (HttpEncoder * __this, String * headerName, String * headerValue, String * encodedHeaderName, String * encodedHeaderValue, MethodInfo * method)); -DO_APP_FUNC(0x027C3230, void, HttpEncoder_StringBuilderAppend, (String * s, StringBuilder * sb, MethodInfo * method)); +DO_APP_FUNC(0x027C3020, void, HttpEncoder_HeaderNameValueEncode, (HttpEncoder * __this, String * headerName, String * headerValue, String * * encodedHeaderName, String * * encodedHeaderValue, MethodInfo * method)); +DO_APP_FUNC(0x027C3230, void, HttpEncoder_StringBuilderAppend, (String * s, StringBuilder * * sb, MethodInfo * method)); DO_APP_FUNC(0x027C3330, String *, HttpEncoder_EncodeHeaderString, (String * input, MethodInfo * method)); DO_APP_FUNC(0x027C3470, void, HttpEncoder_HtmlAttributeEncode, (HttpEncoder * __this, String * value, TextWriter * output, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1010, HttpEncoder_HtmlAttributeEncode__MethodInfo); DO_APP_FUNC(0x027C3550, void, HttpEncoder_HtmlDecode, (HttpEncoder * __this, String * value, TextWriter * output, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1008, HttpEncoder_HtmlDecode__MethodInfo); DO_APP_FUNC(0x027C3620, void, HttpEncoder_HtmlEncode, (HttpEncoder * __this, String * value, TextWriter * output, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1018, HttpEncoder_HtmlEncode__MethodInfo); DO_APP_FUNC(0x027C36F0, Byte__Array *, HttpEncoder_UrlEncode, (HttpEncoder * __this, Byte__Array * bytes, int32_t offset, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x027C3760, HttpEncoder *, HttpEncoder_GetCustomEncoderFromConfig, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0FD0, HttpEncoder_GetCustomEncoderFromConfig__MethodInfo); DO_APP_FUNC(0x027C37E0, String *, HttpEncoder_UrlPathEncode, (HttpEncoder * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x027C3940, Byte__Array *, HttpEncoder_UrlEncodeToBytes, (Byte__Array * bytes, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1000, HttpEncoder_UrlEncodeToBytes__MethodInfo); DO_APP_FUNC(0x027C3BA0, String *, HttpEncoder_HtmlEncode_1, (String * s, MethodInfo * method)); DO_APP_FUNC(0x027C3F60, String *, HttpEncoder_HtmlAttributeEncode_1, (String * s, MethodInfo * method)); DO_APP_FUNC(0x027C4190, String *, HttpEncoder_HtmlDecode_1, (String * s, MethodInfo * method)); @@ -27133,9 +30602,11 @@ DO_APP_FUNC(0x027C4AF0, void, HttpEncoder_UrlEncodeChar, (uint16_t c, Stream * r DO_APP_FUNC(0x027C4E00, void, HttpEncoder_UrlPathEncodeChar, (uint16_t c, Stream * result, MethodInfo * method)); DO_APP_FUNC(0x027C5010, void, HttpEncoder_InitEntities, (MethodInfo * method)); DO_APP_FUNC(0x027C8FA0, String *, HttpEncoder_JavaScriptStringEncode, (HttpEncoder * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF05B8, HttpEncoder_JavaScriptStringEncode__MethodInfo); DO_APP_FUNC(0x027C8FD0, void, HttpEncoder_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HttpEncoder_c__ctor, (HttpEncoder_c * __this, MethodInfo * method)); DO_APP_FUNC(0x027C9080, HttpEncoder *, HttpEncoder_c___cctor_b__13_0, (HttpEncoder_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0FF8, HttpEncoder_c___cctor_b__13_0__MethodInfo); DO_APP_FUNC(0x027C90D0, void, Capture__ctor, (Capture * __this, String * text, int32_t index, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x003BCD50, int32_t, Capture_get_Index, (Capture * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, Capture_set_Index, (Capture * __this, int32_t value, MethodInfo * method)); @@ -27148,6 +30619,7 @@ DO_APP_FUNC(0x027C9140, String *, Capture_ToString, (Capture * __this, MethodInf DO_APP_FUNC(0x027C9170, ReadOnlySpan_1_Char_, Capture_GetLeftSubstring, (Capture * __this, MethodInfo * method)); DO_APP_FUNC(0x027C9200, ReadOnlySpan_1_Char_, Capture_GetRightSubstring, (Capture * __this, MethodInfo * method)); DO_APP_FUNC(0x027C92B0, void, Capture__ctor_1, (Capture * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF05A8, Capture__ctor_1__MethodInfo); DO_APP_FUNC(0x027C92E0, void, CaptureCollection__ctor, (CaptureCollection * __this, Group * group, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, CaptureCollection_get_IsReadOnly, (CaptureCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, CaptureCollection_get_Count, (CaptureCollection * __this, MethodInfo * method)); @@ -27155,34 +30627,51 @@ DO_APP_FUNC(0x027C9350, Capture *, CaptureCollection_get_Item, (CaptureCollectio DO_APP_FUNC(0x027C9410, IEnumerator *, CaptureCollection_GetEnumerator, (CaptureCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x027C94C0, IEnumerator_1_System_Text_RegularExpressions_Capture_ *, CaptureCollection_System_Collections_Generic_IEnumerable_System_Text_RegularExpressions_Capture__GetEnumerator, (CaptureCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x027C9350, Capture *, CaptureCollection_GetCapture, (CaptureCollection * __this, int32_t i, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0600, CaptureCollection_GetCapture__MethodInfo); DO_APP_FUNC(0x027C9570, void, CaptureCollection_ForceInitialized, (CaptureCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, CaptureCollection_get_IsSynchronized, (CaptureCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, Object *, CaptureCollection_get_SyncRoot, (CaptureCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x027C97F0, void, CaptureCollection_CopyTo, (CaptureCollection * __this, Array * array, int32_t arrayIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0618, CaptureCollection_CopyTo__MethodInfo); DO_APP_FUNC(0x027C98B0, void, CaptureCollection_CopyTo_1, (CaptureCollection * __this, Capture__Array * array, int32_t arrayIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0608, CaptureCollection_CopyTo_1__MethodInfo); DO_APP_FUNC(0x027C9AC0, int32_t, CaptureCollection_System_Collections_Generic_IList_System_Text_RegularExpressions_Capture__IndexOf, (CaptureCollection * __this, Capture * item, MethodInfo * method)); DO_APP_FUNC(0x027C9B70, void, CaptureCollection_System_Collections_Generic_IList_System_Text_RegularExpressions_Capture__Insert, (CaptureCollection * __this, int32_t index, Capture * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF05C8, CaptureCollection_System_Collections_Generic_IList_System_Text_RegularExpressions_Capture__Insert__MethodInfo); DO_APP_FUNC(0x027C9BD0, void, CaptureCollection_System_Collections_Generic_IList_System_Text_RegularExpressions_Capture__RemoveAt, (CaptureCollection * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF05D0, CaptureCollection_System_Collections_Generic_IList_System_Text_RegularExpressions_Capture__RemoveAt__MethodInfo); DO_APP_FUNC(0x027C9C30, Capture *, CaptureCollection_System_Collections_Generic_IList_System_Text_RegularExpressions_Capture__get_Item, (CaptureCollection * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x027C9C40, void, CaptureCollection_System_Collections_Generic_IList_System_Text_RegularExpressions_Capture__set_Item, (CaptureCollection * __this, int32_t index, Capture * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF05E8, CaptureCollection_System_Collections_Generic_IList_System_Text_RegularExpressions_Capture__set_Item__MethodInfo); DO_APP_FUNC(0x027C9CA0, void, CaptureCollection_System_Collections_Generic_ICollection_System_Text_RegularExpressions_Capture__Add, (CaptureCollection * __this, Capture * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF05F0, CaptureCollection_System_Collections_Generic_ICollection_System_Text_RegularExpressions_Capture__Add__MethodInfo); DO_APP_FUNC(0x027C9D00, void, CaptureCollection_System_Collections_Generic_ICollection_System_Text_RegularExpressions_Capture__Clear, (CaptureCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF05E0, CaptureCollection_System_Collections_Generic_ICollection_System_Text_RegularExpressions_Capture__Clear__MethodInfo); DO_APP_FUNC(0x027C9D60, bool, CaptureCollection_System_Collections_Generic_ICollection_System_Text_RegularExpressions_Capture__Contains, (CaptureCollection * __this, Capture * item, MethodInfo * method)); DO_APP_FUNC(0x027C9DC0, bool, CaptureCollection_System_Collections_Generic_ICollection_System_Text_RegularExpressions_Capture__Remove, (CaptureCollection * __this, Capture * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0540, CaptureCollection_System_Collections_Generic_ICollection_System_Text_RegularExpressions_Capture__Remove__MethodInfo); DO_APP_FUNC(0x027C9E20, int32_t, CaptureCollection_System_Collections_IList_Add, (CaptureCollection * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0548, CaptureCollection_System_Collections_IList_Add__MethodInfo); DO_APP_FUNC(0x027C9E80, void, CaptureCollection_System_Collections_IList_Clear, (CaptureCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0560, CaptureCollection_System_Collections_IList_Clear__MethodInfo); DO_APP_FUNC(0x027C9EE0, bool, CaptureCollection_System_Collections_IList_Contains, (CaptureCollection * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x027CA030, int32_t, CaptureCollection_System_Collections_IList_IndexOf, (CaptureCollection * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x027CA100, void, CaptureCollection_System_Collections_IList_Insert, (CaptureCollection * __this, int32_t index, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0520, CaptureCollection_System_Collections_IList_Insert__MethodInfo); DO_APP_FUNC(0x0041AEF0, bool, CaptureCollection_System_Collections_IList_get_IsFixedSize, (CaptureCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x027CA160, void, CaptureCollection_System_Collections_IList_Remove, (CaptureCollection * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0528, CaptureCollection_System_Collections_IList_Remove__MethodInfo); DO_APP_FUNC(0x027CA1C0, void, CaptureCollection_System_Collections_IList_RemoveAt, (CaptureCollection * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0530, CaptureCollection_System_Collections_IList_RemoveAt__MethodInfo); DO_APP_FUNC(0x027C9C30, Object *, CaptureCollection_System_Collections_IList_get_Item, (CaptureCollection * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x027CA220, void, CaptureCollection_System_Collections_IList_set_Item, (CaptureCollection * __this, int32_t index, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0538, CaptureCollection_System_Collections_IList_set_Item__MethodInfo); DO_APP_FUNC(0x027CA280, void, CaptureCollection__ctor_1, (CaptureCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0580, CaptureCollection__ctor_1__MethodInfo); DO_APP_FUNC(0x01AA7030, void, CaptureCollection_Enumerator__ctor, (CaptureCollection_Enumerator * __this, CaptureCollection * collection, MethodInfo * method)); DO_APP_FUNC(0x027CA2B0, bool, CaptureCollection_Enumerator_MoveNext, (CaptureCollection_Enumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x027CA2F0, Capture *, CaptureCollection_Enumerator_get_Current, (CaptureCollection_Enumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0588, CaptureCollection_Enumerator_get_Current__MethodInfo); DO_APP_FUNC(0x027CA2F0, Object *, CaptureCollection_Enumerator_System_Collections_IEnumerator_get_Current, (CaptureCollection_Enumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x006DDC60, void, CaptureCollection_Enumerator_System_Collections_IEnumerator_Reset, (CaptureCollection_Enumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CaptureCollection_Enumerator_System_IDisposable_Dispose, (CaptureCollection_Enumerator * __this, MethodInfo * method)); @@ -27191,8 +30680,10 @@ DO_APP_FUNC(0x027CA520, bool, Group_get_Success, (Group * __this, MethodInfo * m DO_APP_FUNC(0x003C7320, String *, Group_get_Name, (Group * __this, MethodInfo * method)); DO_APP_FUNC(0x027CA530, CaptureCollection *, Group_get_Captures, (Group * __this, MethodInfo * method)); DO_APP_FUNC(0x027CA650, Group *, Group_Synchronized, (Group * inner, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0590, Group_Synchronized__MethodInfo); DO_APP_FUNC(0x027CA6E0, void, Group__cctor, (MethodInfo * method)); DO_APP_FUNC(0x027CA860, void, Group__ctor_1, (Group * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0578, Group__ctor_1__MethodInfo); DO_APP_FUNC(0x003BCE40, void, GroupCollection__ctor, (GroupCollection * __this, Match * match, Hashtable * caps, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, GroupCollection_get_IsReadOnly, (GroupCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x027CA890, int32_t, GroupCollection_get_Count, (GroupCollection * __this, MethodInfo * method)); @@ -27205,30 +30696,46 @@ DO_APP_FUNC(0x027CB160, Group *, GroupCollection_GetGroupImpl, (GroupCollection DO_APP_FUNC(0x0041AF00, bool, GroupCollection_get_IsSynchronized, (GroupCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, Object *, GroupCollection_get_SyncRoot, (GroupCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x027CB560, void, GroupCollection_CopyTo, (GroupCollection * __this, Array * array, int32_t arrayIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF04A8, GroupCollection_CopyTo__MethodInfo); DO_APP_FUNC(0x027CB640, void, GroupCollection_CopyTo_1, (GroupCollection * __this, Group__Array * array, int32_t arrayIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF04B8, GroupCollection_CopyTo_1__MethodInfo); DO_APP_FUNC(0x027CB8A0, int32_t, GroupCollection_System_Collections_Generic_IList_System_Text_RegularExpressions_Group__IndexOf, (GroupCollection * __this, Group * item, MethodInfo * method)); DO_APP_FUNC(0x027CB980, void, GroupCollection_System_Collections_Generic_IList_System_Text_RegularExpressions_Group__Insert, (GroupCollection * __this, int32_t index, Group * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0500, GroupCollection_System_Collections_Generic_IList_System_Text_RegularExpressions_Group__Insert__MethodInfo); DO_APP_FUNC(0x027CB9E0, void, GroupCollection_System_Collections_Generic_IList_System_Text_RegularExpressions_Group__RemoveAt, (GroupCollection * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0508, GroupCollection_System_Collections_Generic_IList_System_Text_RegularExpressions_Group__RemoveAt__MethodInfo); DO_APP_FUNC(0x027CA8C0, Group *, GroupCollection_System_Collections_Generic_IList_System_Text_RegularExpressions_Group__get_Item, (GroupCollection * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x027CBA40, void, GroupCollection_System_Collections_Generic_IList_System_Text_RegularExpressions_Group__set_Item, (GroupCollection * __this, int32_t index, Group * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF04F0, GroupCollection_System_Collections_Generic_IList_System_Text_RegularExpressions_Group__set_Item__MethodInfo); DO_APP_FUNC(0x027CBAA0, void, GroupCollection_System_Collections_Generic_ICollection_System_Text_RegularExpressions_Group__Add, (GroupCollection * __this, Group * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF04F8, GroupCollection_System_Collections_Generic_ICollection_System_Text_RegularExpressions_Group__Add__MethodInfo); DO_APP_FUNC(0x027CBB00, void, GroupCollection_System_Collections_Generic_ICollection_System_Text_RegularExpressions_Group__Clear, (GroupCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0518, GroupCollection_System_Collections_Generic_ICollection_System_Text_RegularExpressions_Group__Clear__MethodInfo); DO_APP_FUNC(0x027CBB60, bool, GroupCollection_System_Collections_Generic_ICollection_System_Text_RegularExpressions_Group__Contains, (GroupCollection * __this, Group * item, MethodInfo * method)); DO_APP_FUNC(0x027CBBC0, bool, GroupCollection_System_Collections_Generic_ICollection_System_Text_RegularExpressions_Group__Remove, (GroupCollection * __this, Group * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF04D8, GroupCollection_System_Collections_Generic_ICollection_System_Text_RegularExpressions_Group__Remove__MethodInfo); DO_APP_FUNC(0x027CBC20, int32_t, GroupCollection_System_Collections_IList_Add, (GroupCollection * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF04E0, GroupCollection_System_Collections_IList_Add__MethodInfo); DO_APP_FUNC(0x027CBC80, void, GroupCollection_System_Collections_IList_Clear, (GroupCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF04D0, GroupCollection_System_Collections_IList_Clear__MethodInfo); DO_APP_FUNC(0x027CBCE0, bool, GroupCollection_System_Collections_IList_Contains, (GroupCollection * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x027CBE30, int32_t, GroupCollection_System_Collections_IList_IndexOf, (GroupCollection * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x027CBF00, void, GroupCollection_System_Collections_IList_Insert, (GroupCollection * __this, int32_t index, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0468, GroupCollection_System_Collections_IList_Insert__MethodInfo); DO_APP_FUNC(0x0041AEF0, bool, GroupCollection_System_Collections_IList_get_IsFixedSize, (GroupCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x027CBF60, void, GroupCollection_System_Collections_IList_Remove, (GroupCollection * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0470, GroupCollection_System_Collections_IList_Remove__MethodInfo); DO_APP_FUNC(0x027CBFC0, void, GroupCollection_System_Collections_IList_RemoveAt, (GroupCollection * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0458, GroupCollection_System_Collections_IList_RemoveAt__MethodInfo); DO_APP_FUNC(0x027CA8C0, Object *, GroupCollection_System_Collections_IList_get_Item, (GroupCollection * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x027CC020, void, GroupCollection_System_Collections_IList_set_Item, (GroupCollection * __this, int32_t index, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0460, GroupCollection_System_Collections_IList_set_Item__MethodInfo); DO_APP_FUNC(0x027CC080, void, GroupCollection__ctor_1, (GroupCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0478, GroupCollection__ctor_1__MethodInfo); DO_APP_FUNC(0x01AA7030, void, GroupCollection_Enumerator__ctor, (GroupCollection_Enumerator * __this, GroupCollection * collection, MethodInfo * method)); DO_APP_FUNC(0x027CC0B0, bool, GroupCollection_Enumerator_MoveNext, (GroupCollection_Enumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x027CC100, Group *, GroupCollection_Enumerator_get_Current, (GroupCollection_Enumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0480, GroupCollection_Enumerator_get_Current__MethodInfo); DO_APP_FUNC(0x027CC100, Object *, GroupCollection_Enumerator_System_Collections_IEnumerator_get_Current, (GroupCollection_Enumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x006DDC60, void, GroupCollection_Enumerator_System_Collections_IEnumerator_Reset, (GroupCollection_Enumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GroupCollection_Enumerator_System_IDisposable_Dispose, (GroupCollection_Enumerator * __this, MethodInfo * method)); @@ -27238,9 +30745,11 @@ DO_APP_FUNC(0x027CC470, void, Match_Reset, (Match * __this, Regex * regex, Strin DO_APP_FUNC(0x027CC590, GroupCollection *, Match_get_Groups, (Match * __this, MethodInfo * method)); DO_APP_FUNC(0x027CC650, Match *, Match_NextMatch, (Match * __this, MethodInfo * method)); DO_APP_FUNC(0x027CC6A0, String *, Match_Result, (Match * __this, String * replacement, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0450, Match_Result__MethodInfo); DO_APP_FUNC(0x027CC7B0, ReadOnlySpan_1_Char_, Match_GroupToStringImpl, (Match * __this, int32_t groupnum, MethodInfo * method)); DO_APP_FUNC(0x027CC960, ReadOnlySpan_1_Char_, Match_LastGroupToStringImpl, (Match * __this, MethodInfo * method)); DO_APP_FUNC(0x027CC9B0, Match *, Match_Synchronized, (Match * inner, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0498, Match_Synchronized__MethodInfo); DO_APP_FUNC(0x027CCB50, void, Match_AddMatch, (Match * __this, int32_t cap, int32_t start, int32_t len, MethodInfo * method)); DO_APP_FUNC(0x027CCDA0, void, Match_BalanceMatch, (Match * __this, int32_t cap, MethodInfo * method)); DO_APP_FUNC(0x027CCF10, void, Match_RemoveMatch, (Match * __this, int32_t cap, MethodInfo * method)); @@ -27250,12 +30759,15 @@ DO_APP_FUNC(0x027CD050, int32_t, Match_MatchLength, (Match * __this, int32_t cap DO_APP_FUNC(0x027CD0E0, void, Match_Tidy, (Match * __this, int32_t textpos, MethodInfo * method)); DO_APP_FUNC(0x027CD280, void, Match__cctor, (MethodInfo * method)); DO_APP_FUNC(0x027CD390, void, Match__ctor_1, (Match * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0488, Match__ctor_1__MethodInfo); DO_APP_FUNC(0x027CD3C0, void, MatchSparse__ctor, (MatchSparse * __this, Regex * regex, Hashtable * caps, int32_t capcount, String * text, int32_t begpos, int32_t len, int32_t startpos, MethodInfo * method)); DO_APP_FUNC(0x027CD4C0, GroupCollection *, MatchSparse_get_Groups, (MatchSparse * __this, MethodInfo * method)); DO_APP_FUNC(0x027CD590, void, MatchCollection__ctor, (MatchCollection * __this, Regex * regex, String * input, int32_t beginning, int32_t length, int32_t startat, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF03E8, MatchCollection__ctor__MethodInfo); DO_APP_FUNC(0x0041AEF0, bool, MatchCollection_get_IsReadOnly, (MatchCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x027CD7C0, int32_t, MatchCollection_get_Count, (MatchCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x027CD820, Match *, MatchCollection_get_Item, (MatchCollection * __this, int32_t i, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF03F8, MatchCollection_get_Item__MethodInfo); DO_APP_FUNC(0x027CD8E0, IEnumerator *, MatchCollection_GetEnumerator, (MatchCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x027CD990, IEnumerator_1_System_Text_RegularExpressions_Match_ *, MatchCollection_System_Collections_Generic_IEnumerable_System_Text_RegularExpressions_Match__GetEnumerator, (MatchCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x027CDA40, Match *, MatchCollection_GetMatch, (MatchCollection * __this, int32_t i, MethodInfo * method)); @@ -27266,94 +30778,137 @@ DO_APP_FUNC(0x027CDC00, void, MatchCollection_CopyTo, (MatchCollection * __this, DO_APP_FUNC(0x027CDC80, void, MatchCollection_CopyTo_1, (MatchCollection * __this, Match__Array * array, int32_t arrayIndex, MethodInfo * method)); DO_APP_FUNC(0x027CDD10, int32_t, MatchCollection_System_Collections_Generic_IList_System_Text_RegularExpressions_Match__IndexOf, (MatchCollection * __this, Match * item, MethodInfo * method)); DO_APP_FUNC(0x027CDDC0, void, MatchCollection_System_Collections_Generic_IList_System_Text_RegularExpressions_Match__Insert, (MatchCollection * __this, int32_t index, Match * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0428, MatchCollection_System_Collections_Generic_IList_System_Text_RegularExpressions_Match__Insert__MethodInfo); DO_APP_FUNC(0x027CDE20, void, MatchCollection_System_Collections_Generic_IList_System_Text_RegularExpressions_Match__RemoveAt, (MatchCollection * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0358, MatchCollection_System_Collections_Generic_IList_System_Text_RegularExpressions_Match__RemoveAt__MethodInfo); DO_APP_FUNC(0x01094B90, Match *, MatchCollection_System_Collections_Generic_IList_System_Text_RegularExpressions_Match__get_Item, (MatchCollection * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x027CDE80, void, MatchCollection_System_Collections_Generic_IList_System_Text_RegularExpressions_Match__set_Item, (MatchCollection * __this, int32_t index, Match * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0360, MatchCollection_System_Collections_Generic_IList_System_Text_RegularExpressions_Match__set_Item__MethodInfo); DO_APP_FUNC(0x027CDEE0, void, MatchCollection_System_Collections_Generic_ICollection_System_Text_RegularExpressions_Match__Add, (MatchCollection * __this, Match * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0348, MatchCollection_System_Collections_Generic_ICollection_System_Text_RegularExpressions_Match__Add__MethodInfo); DO_APP_FUNC(0x027CDF40, void, MatchCollection_System_Collections_Generic_ICollection_System_Text_RegularExpressions_Match__Clear, (MatchCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0350, MatchCollection_System_Collections_Generic_ICollection_System_Text_RegularExpressions_Match__Clear__MethodInfo); DO_APP_FUNC(0x027CDFA0, bool, MatchCollection_System_Collections_Generic_ICollection_System_Text_RegularExpressions_Match__Contains, (MatchCollection * __this, Match * item, MethodInfo * method)); DO_APP_FUNC(0x027CE050, bool, MatchCollection_System_Collections_Generic_ICollection_System_Text_RegularExpressions_Match__Remove, (MatchCollection * __this, Match * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0370, MatchCollection_System_Collections_Generic_ICollection_System_Text_RegularExpressions_Match__Remove__MethodInfo); DO_APP_FUNC(0x027CE0B0, int32_t, MatchCollection_System_Collections_IList_Add, (MatchCollection * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0308, MatchCollection_System_Collections_IList_Add__MethodInfo); DO_APP_FUNC(0x027CE110, void, MatchCollection_System_Collections_IList_Clear, (MatchCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0318, MatchCollection_System_Collections_IList_Clear__MethodInfo); DO_APP_FUNC(0x027CE170, bool, MatchCollection_System_Collections_IList_Contains, (MatchCollection * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x027CE2C0, int32_t, MatchCollection_System_Collections_IList_IndexOf, (MatchCollection * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x027CE410, void, MatchCollection_System_Collections_IList_Insert, (MatchCollection * __this, int32_t index, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF03C0, MatchCollection_System_Collections_IList_Insert__MethodInfo); DO_APP_FUNC(0x0041AEF0, bool, MatchCollection_System_Collections_IList_get_IsFixedSize, (MatchCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x027CE470, void, MatchCollection_System_Collections_IList_Remove, (MatchCollection * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF03C8, MatchCollection_System_Collections_IList_Remove__MethodInfo); DO_APP_FUNC(0x027CE4D0, void, MatchCollection_System_Collections_IList_RemoveAt, (MatchCollection * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF03B0, MatchCollection_System_Collections_IList_RemoveAt__MethodInfo); DO_APP_FUNC(0x01094B90, Object *, MatchCollection_System_Collections_IList_get_Item, (MatchCollection * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x027CE530, void, MatchCollection_System_Collections_IList_set_Item, (MatchCollection * __this, int32_t index, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF03B8, MatchCollection_System_Collections_IList_set_Item__MethodInfo); DO_APP_FUNC(0x027CE590, void, MatchCollection__ctor_1, (MatchCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF03D0, MatchCollection__ctor_1__MethodInfo); DO_APP_FUNC(0x01AA7030, void, MatchCollection_Enumerator__ctor, (MatchCollection_Enumerator * __this, MatchCollection * collection, MethodInfo * method)); DO_APP_FUNC(0x027CE5C0, bool, MatchCollection_Enumerator_MoveNext, (MatchCollection_Enumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x027CE610, Match *, MatchCollection_Enumerator_get_Current, (MatchCollection_Enumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF03D8, MatchCollection_Enumerator_get_Current__MethodInfo); DO_APP_FUNC(0x027CE610, Object *, MatchCollection_Enumerator_System_Collections_IEnumerator_get_Current, (MatchCollection_Enumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x006DDC60, void, MatchCollection_Enumerator_System_Collections_IEnumerator_Reset, (MatchCollection_Enumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, MatchCollection_Enumerator_System_IDisposable_Dispose, (MatchCollection_Enumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x027CE6A0, RegexRunner *, ExclusiveReference_Get, (ExclusiveReference * __this, MethodInfo * method)); DO_APP_FUNC(0x027CE720, void, ExclusiveReference_Release, (ExclusiveReference * __this, RegexRunner * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0388, ExclusiveReference_Release__MethodInfo); DO_APP_FUNC(0x003AE050, void, ExclusiveReference__ctor, (ExclusiveReference * __this, MethodInfo * method)); DO_APP_FUNC(0x027CE830, int32_t, Regex_get_CacheSize, (MethodInfo * method)); DO_APP_FUNC(0x027CE890, void, Regex_set_CacheSize, (int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0390, Regex_set_CacheSize__MethodInfo); DO_APP_FUNC(0x027CEC90, Regex_CachedCodeEntry *, Regex_GetCachedCode, (Regex * __this, Regex_CachedCodeEntryKey key, bool isToAdd, MethodInfo * method)); DO_APP_FUNC(0x027CEE30, Regex_CachedCodeEntry *, Regex_GetCachedCodeEntryInternal, (Regex * __this, Regex_CachedCodeEntryKey key, bool isToAdd, MethodInfo * method)); DO_APP_FUNC(0x027CF6A0, void, Regex_FillCacheDictionary, (Regex * __this, MethodInfo * method)); -DO_APP_FUNC(0x027CF820, bool, Regex_TryGetCacheValue, (Regex_CachedCodeEntryKey key, Regex_CachedCodeEntry * entry, MethodInfo * method)); -DO_APP_FUNC(0x027CF920, bool, Regex_TryGetCacheValueSmall, (Regex_CachedCodeEntryKey key, Regex_CachedCodeEntry * entry, MethodInfo * method)); +DO_APP_FUNC(0x027CF820, bool, Regex_TryGetCacheValue, (Regex_CachedCodeEntryKey key, Regex_CachedCodeEntry * * entry, MethodInfo * method)); +DO_APP_FUNC(0x027CF920, bool, Regex_TryGetCacheValueSmall, (Regex_CachedCodeEntryKey key, Regex_CachedCodeEntry * * entry, MethodInfo * method)); DO_APP_FUNC(0x027CFB00, Regex_CachedCodeEntry *, Regex_LookupCachedAndPromote, (Regex_CachedCodeEntryKey key, MethodInfo * method)); DO_APP_FUNC(0x027D0200, bool, Regex_IsMatch, (String * input, String * pattern, MethodInfo * method)); DO_APP_FUNC(0x027D0280, bool, Regex_IsMatch_1, (String * input, String * pattern, RegexOptions__Enum options, MethodInfo * method)); DO_APP_FUNC(0x027D0310, bool, Regex_IsMatch_2, (String * input, String * pattern, RegexOptions__Enum options, TimeSpan matchTimeout, MethodInfo * method)); DO_APP_FUNC(0x027D0450, bool, Regex_IsMatch_3, (Regex * __this, String * input, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF02F0, Regex_IsMatch_3__MethodInfo); DO_APP_FUNC(0x027D0500, bool, Regex_IsMatch_4, (Regex * __this, String * input, int32_t startat, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF02E0, Regex_IsMatch_4__MethodInfo); DO_APP_FUNC(0x027D05A0, Match *, Regex_Match, (String * input, String * pattern, MethodInfo * method)); DO_APP_FUNC(0x027D0620, Match *, Regex_Match_1, (String * input, String * pattern, RegexOptions__Enum options, MethodInfo * method)); DO_APP_FUNC(0x027D06B0, Match *, Regex_Match_2, (String * input, String * pattern, RegexOptions__Enum options, TimeSpan matchTimeout, MethodInfo * method)); DO_APP_FUNC(0x027D07E0, Match *, Regex_Match_3, (Regex * __this, String * input, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF02D0, Regex_Match_3__MethodInfo); DO_APP_FUNC(0x027D0880, Match *, Regex_Match_4, (Regex * __this, String * input, int32_t startat, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF02C0, Regex_Match_4__MethodInfo); DO_APP_FUNC(0x027D0910, Match *, Regex_Match_5, (Regex * __this, String * input, int32_t beginning, int32_t length, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF02C8, Regex_Match_5__MethodInfo); DO_APP_FUNC(0x027D09B0, MatchCollection *, Regex_Matches, (String * input, String * pattern, MethodInfo * method)); DO_APP_FUNC(0x027D0A30, MatchCollection *, Regex_Matches_1, (String * input, String * pattern, RegexOptions__Enum options, MethodInfo * method)); DO_APP_FUNC(0x027D0AC0, MatchCollection *, Regex_Matches_2, (String * input, String * pattern, RegexOptions__Enum options, TimeSpan matchTimeout, MethodInfo * method)); DO_APP_FUNC(0x027D0B70, MatchCollection *, Regex_Matches_3, (Regex * __this, String * input, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0218, Regex_Matches_3__MethodInfo); DO_APP_FUNC(0x027D0C80, MatchCollection *, Regex_Matches_4, (Regex * __this, String * input, int32_t startat, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF01E8, Regex_Matches_4__MethodInfo); DO_APP_FUNC(0x027D0D80, String *, Regex_Replace, (String * input, String * pattern, String * replacement, MethodInfo * method)); DO_APP_FUNC(0x027D0E20, String *, Regex_Replace_1, (String * input, String * pattern, String * replacement, RegexOptions__Enum options, MethodInfo * method)); DO_APP_FUNC(0x027D0EC0, String *, Regex_Replace_2, (String * input, String * pattern, String * replacement, RegexOptions__Enum options, TimeSpan matchTimeout, MethodInfo * method)); DO_APP_FUNC(0x027D1070, String *, Regex_Replace_3, (Regex * __this, String * input, String * replacement, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0268, Regex_Replace_3__MethodInfo); DO_APP_FUNC(0x027D11C0, String *, Regex_Replace_4, (Regex * __this, String * input, String * replacement, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0258, Regex_Replace_4__MethodInfo); DO_APP_FUNC(0x027D1310, String *, Regex_Replace_5, (Regex * __this, String * input, String * replacement, int32_t count, int32_t startat, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0260, Regex_Replace_5__MethodInfo); DO_APP_FUNC(0x027D1440, String *, Regex_Replace_6, (String * input, String * pattern, MatchEvaluator * evaluator, MethodInfo * method)); DO_APP_FUNC(0x027D14E0, String *, Regex_Replace_7, (String * input, String * pattern, MatchEvaluator * evaluator, RegexOptions__Enum options, MethodInfo * method)); DO_APP_FUNC(0x027D1580, String *, Regex_Replace_8, (String * input, String * pattern, MatchEvaluator * evaluator, RegexOptions__Enum options, TimeSpan matchTimeout, MethodInfo * method)); DO_APP_FUNC(0x027D16E0, String *, Regex_Replace_9, (Regex * __this, String * input, MatchEvaluator * evaluator, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0230, Regex_Replace_9__MethodInfo); DO_APP_FUNC(0x027D17D0, String *, Regex_Replace_10, (Regex * __this, String * input, MatchEvaluator * evaluator, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0250, Regex_Replace_10__MethodInfo); DO_APP_FUNC(0x027D18D0, String *, Regex_Replace_11, (Regex * __this, String * input, MatchEvaluator * evaluator, int32_t count, int32_t startat, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0240, Regex_Replace_11__MethodInfo); DO_APP_FUNC(0x027D19B0, String *, Regex_Replace_12, (MatchEvaluator * evaluator, Regex * regex, String * input, int32_t count, int32_t startat, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0130, Regex_Replace_12__MethodInfo); DO_APP_FUNC(0x027D1F40, String__Array *, Regex_Split, (String * input, String * pattern, MethodInfo * method)); DO_APP_FUNC(0x027D1FC0, String__Array *, Regex_Split_1, (String * input, String * pattern, RegexOptions__Enum options, MethodInfo * method)); DO_APP_FUNC(0x027D2050, String__Array *, Regex_Split_2, (String * input, String * pattern, RegexOptions__Enum options, TimeSpan matchTimeout, MethodInfo * method)); DO_APP_FUNC(0x027D21B0, String__Array *, Regex_Split_3, (Regex * __this, String * input, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF00E0, Regex_Split_3__MethodInfo); DO_APP_FUNC(0x027D2290, String__Array *, Regex_Split_4, (Regex * __this, String * input, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0100, Regex_Split_4__MethodInfo); DO_APP_FUNC(0x027D2380, String__Array *, Regex_Split_5, (Regex * __this, String * input, int32_t count, int32_t startat, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF01B8, Regex_Split_5__MethodInfo); DO_APP_FUNC(0x027D2460, String__Array *, Regex_Split_6, (Regex * regex, String * input, int32_t count, int32_t startat, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF01D8, Regex_Split_6__MethodInfo); DO_APP_FUNC(0x027D2BD0, void, Regex__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, TimeSpan, Regex_get_MatchTimeout, (Regex * __this, MethodInfo * method)); DO_APP_FUNC(0x027D2DF0, void, Regex_ValidateMatchTimeout, (TimeSpan matchTimeout, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0190, Regex_ValidateMatchTimeout__MethodInfo); DO_APP_FUNC(0x027D2F40, TimeSpan, Regex_InitDefaultMatchTimeout, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0068, Regex_InitDefaultMatchTimeout__MethodInfo); DO_APP_FUNC(0x027D32C0, void, Regex__ctor, (Regex * __this, MethodInfo * method)); DO_APP_FUNC(0x027D3320, void, Regex__ctor_1, (Regex * __this, String * pattern, MethodInfo * method)); DO_APP_FUNC(0x027D33B0, void, Regex__ctor_2, (Regex * __this, String * pattern, RegexOptions__Enum options, MethodInfo * method)); DO_APP_FUNC(0x027D3440, void, Regex__ctor_3, (Regex * __this, String * pattern, RegexOptions__Enum options, TimeSpan matchTimeout, MethodInfo * method)); DO_APP_FUNC(0x027D3460, void, Regex__ctor_4, (Regex * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0040, Regex__ctor_4__MethodInfo); DO_APP_FUNC(0x027D3510, void, Regex_System_Runtime_Serialization_ISerializable_GetObjectData, (Regex * __this, SerializationInfo * si, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0030, Regex_System_Runtime_Serialization_ISerializable_GetObjectData__MethodInfo); DO_APP_FUNC(0x027D3560, void, Regex__ctor_5, (Regex * __this, String * pattern, RegexOptions__Enum options, TimeSpan matchTimeout, bool addToCache, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0048, Regex__ctor_5__MethodInfo); DO_APP_FUNC(0x003BB330, IDictionary *, Regex_get_Caps, (Regex * __this, MethodInfo * method)); DO_APP_FUNC(0x027D3940, void, Regex_set_Caps, (Regex * __this, IDictionary * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF00B0, Regex_set_Caps__MethodInfo); DO_APP_FUNC(0x003C7320, IDictionary *, Regex_get_CapNames, (Regex * __this, MethodInfo * method)); DO_APP_FUNC(0x027D3AA0, void, Regex_set_CapNames, (Regex * __this, IDictionary * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF00C8, Regex_set_CapNames__MethodInfo); DO_APP_FUNC(0x027D3C00, String *, Regex_Escape, (String * str, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF00A0, Regex_Escape__MethodInfo); DO_APP_FUNC(0x027D3CB0, String *, Regex_Unescape, (String * str, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF00A8, Regex_Unescape__MethodInfo); DO_APP_FUNC(0x003CC980, RegexOptions__Enum, Regex_get_Options, (Regex * __this, MethodInfo * method)); DO_APP_FUNC(0x027D3D60, bool, Regex_get_RightToLeft, (Regex * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, String *, Regex_ToString, (Regex * __this, MethodInfo * method)); @@ -27361,20 +30916,26 @@ DO_APP_FUNC(0x027D3D70, String__Array *, Regex_GetGroupNames, (Regex * __this, M DO_APP_FUNC(0x027D3F80, Int32__Array *, Regex_GetGroupNumbers, (Regex * __this, MethodInfo * method)); DO_APP_FUNC(0x027D42B0, String *, Regex_GroupNameFromNumber, (Regex * __this, int32_t i, MethodInfo * method)); DO_APP_FUNC(0x027D43E0, int32_t, Regex_GroupNumberFromName, (Regex * __this, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEFFD0, Regex_GroupNumberFromName__MethodInfo); DO_APP_FUNC(0x027D4520, void, Regex_InitializeReferences, (Regex * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEFFA8, Regex_InitializeReferences__MethodInfo); DO_APP_FUNC(0x027D46E0, Match *, Regex_Run, (Regex * __this, bool quick, int32_t prevlen, String * input, int32_t beginning, int32_t length, int32_t startat, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0010, Regex_Run__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, Regex_UseOptionC, (Regex * __this, MethodInfo * method)); DO_APP_FUNC(0x027D3D60, bool, Regex_UseOptionR, (Regex * __this, MethodInfo * method)); DO_APP_FUNC(0x027D4C40, bool, Regex_UseOptionInvariant, (Regex * __this, MethodInfo * method)); DO_APP_FUNC(0x027D4C50, void, Regex_CompileToAssembly, (RegexCompilationInfo__Array * regexinfos, AssemblyName * assemblyname, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEFFF0, Regex_CompileToAssembly__MethodInfo); DO_APP_FUNC(0x027D4C80, void, Regex_CompileToAssembly_1, (RegexCompilationInfo__Array * regexinfos, AssemblyName * assemblyname, CustomAttributeBuilder__Array * attributes, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEFFE8, Regex_CompileToAssembly_1__MethodInfo); DO_APP_FUNC(0x027D4CB0, void, Regex_CompileToAssembly_2, (RegexCompilationInfo__Array * regexinfos, AssemblyName * assemblyname, CustomAttributeBuilder__Array * attributes, String * resourceFile, MethodInfo * method)); -DO_APP_FUNC(0x024483A0, void, Regex_CachedCodeEntryKey__ctor, (Regex_CachedCodeEntryKey__Boxed * __this, RegexOptions__Enum options, String * cultureKey, String * pattern, MethodInfo * method)); -DO_APP_FUNC(0x027D4CE0, bool, Regex_CachedCodeEntryKey_Equals, (Regex_CachedCodeEntryKey__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x027D4D80, bool, Regex_CachedCodeEntryKey_Equals_1, (Regex_CachedCodeEntryKey__Boxed * __this, Regex_CachedCodeEntryKey other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEFFF8, Regex_CompileToAssembly_2__MethodInfo); +DO_APP_FUNC(0x024483A0, void, Regex_CachedCodeEntryKey__ctor, (Regex_CachedCodeEntryKey * __this, RegexOptions__Enum options, String * cultureKey, String * pattern, MethodInfo * method)); +DO_APP_FUNC(0x027D4CE0, bool, Regex_CachedCodeEntryKey_Equals, (Regex_CachedCodeEntryKey * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x027D4D80, bool, Regex_CachedCodeEntryKey_Equals_1, (Regex_CachedCodeEntryKey * __this, Regex_CachedCodeEntryKey other, MethodInfo * method)); DO_APP_FUNC(0x027D4E40, bool, Regex_CachedCodeEntryKey_op_Equality, (Regex_CachedCodeEntryKey left, Regex_CachedCodeEntryKey right, MethodInfo * method)); DO_APP_FUNC(0x027D4E70, bool, Regex_CachedCodeEntryKey_op_Inequality, (Regex_CachedCodeEntryKey left, Regex_CachedCodeEntryKey right, MethodInfo * method)); -DO_APP_FUNC(0x027D4EA0, int32_t, Regex_CachedCodeEntryKey_GetHashCode, (Regex_CachedCodeEntryKey__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x027D4EA0, int32_t, Regex_CachedCodeEntryKey_GetHashCode, (Regex_CachedCodeEntryKey * __this, MethodInfo * method)); DO_APP_FUNC(0x027D4F10, void, Regex_CachedCodeEntry__ctor, (Regex_CachedCodeEntry * __this, Regex_CachedCodeEntryKey key, Hashtable * capnames, String__Array * capslist, RegexCode * code, Hashtable * caps, int32_t capsize, ExclusiveReference * runner, WeakReference_1_System_Text_RegularExpressions_RegexReplacement_ * replref, MethodInfo * method)); DO_APP_FUNC(0x01040480, void, MatchEvaluator__ctor, (MatchEvaluator * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003F42D0, String *, MatchEvaluator_Invoke, (MatchEvaluator * __this, Match * match, MethodInfo * method)); @@ -27414,7 +30975,7 @@ DO_APP_FUNC(0x027D7880, bool, RegexCharClass_CharInClass, (uint16_t ch, String * DO_APP_FUNC(0x027D78F0, bool, RegexCharClass_CharInClassRecursive, (uint16_t ch, String * set, int32_t start, MethodInfo * method)); DO_APP_FUNC(0x027D7AD0, bool, RegexCharClass_CharInClassInternal, (uint16_t ch, String * set, int32_t start, int32_t mySetLength, int32_t myCategoryLength, MethodInfo * method)); DO_APP_FUNC(0x027D7BE0, bool, RegexCharClass_CharInCategory, (uint16_t ch, String * set, int32_t start, int32_t mySetLength, int32_t myCategoryLength, MethodInfo * method)); -DO_APP_FUNC(0x027D7D70, bool, RegexCharClass_CharInCategoryGroup, (uint16_t ch, UnicodeCategory__Enum chcategory, String * category, int32_t i, MethodInfo * method)); +DO_APP_FUNC(0x027D7D70, bool, RegexCharClass_CharInCategoryGroup, (uint16_t ch, UnicodeCategory__Enum chcategory, String * category, int32_t * i, MethodInfo * method)); DO_APP_FUNC(0x027D7E60, String *, RegexCharClass_NegateCategory, (String * category, MethodInfo * method)); DO_APP_FUNC(0x027D7F70, RegexCharClass *, RegexCharClass_Parse, (String * charClass, MethodInfo * method)); DO_APP_FUNC(0x027D7FD0, RegexCharClass *, RegexCharClass_ParseRecursive, (String * charClass, int32_t start, MethodInfo * method)); @@ -27423,15 +30984,17 @@ DO_APP_FUNC(0x027D83C0, String *, RegexCharClass_ToStringClass, (RegexCharClass DO_APP_FUNC(0x027D8670, RegexCharClass_SingleRange, RegexCharClass_GetRangeAt, (RegexCharClass * __this, int32_t i, MethodInfo * method)); DO_APP_FUNC(0x027D86E0, void, RegexCharClass_Canonicalize, (RegexCharClass * __this, MethodInfo * method)); DO_APP_FUNC(0x027D8A10, String *, RegexCharClass_SetFromProperty, (String * capname, bool invert, String * pattern, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEFE48, RegexCharClass_SetFromProperty__MethodInfo); DO_APP_FUNC(0x027D8CF0, void, RegexCharClass__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x027DF370, void, RegexCharClass_LowerCaseMapping__ctor, (RegexCharClass_LowerCaseMapping__Boxed * __this, uint16_t chMin, uint16_t chMax, int32_t lcOp, int32_t data, MethodInfo * method)); +DO_APP_FUNC(0x027DF370, void, RegexCharClass_LowerCaseMapping__ctor, (RegexCharClass_LowerCaseMapping * __this, uint16_t chMin, uint16_t chMax, int32_t lcOp, int32_t data, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, RegexCharClass_SingleRangeComparer__ctor, (RegexCharClass_SingleRangeComparer * __this, MethodInfo * method)); DO_APP_FUNC(0x027DF390, int32_t, RegexCharClass_SingleRangeComparer_Compare, (RegexCharClass_SingleRangeComparer * __this, RegexCharClass_SingleRange x, RegexCharClass_SingleRange y, MethodInfo * method)); DO_APP_FUNC(0x027DF3F0, void, RegexCharClass_SingleRangeComparer__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x01ABF690, void, RegexCharClass_SingleRange__ctor, (RegexCharClass_SingleRange__Boxed * __this, uint16_t first, uint16_t last, MethodInfo * method)); +DO_APP_FUNC(0x01ABF690, void, RegexCharClass_SingleRange__ctor, (RegexCharClass_SingleRange * __this, uint16_t first, uint16_t last, MethodInfo * method)); DO_APP_FUNC(0x027DF4A0, void, RegexCode__ctor, (RegexCode * __this, Int32__Array * codes, List_1_System_String_ * stringlist, int32_t trackcount, Hashtable * caps, int32_t capsize, RegexBoyerMoore * bmPrefix, Nullable_1_System_Text_RegularExpressions_RegexPrefix_ fcPrefix, int32_t anchors, bool rightToLeft, MethodInfo * method)); DO_APP_FUNC(0x027DF700, bool, RegexCode_OpcodeBacktracks, (int32_t Op, MethodInfo * method)); DO_APP_FUNC(0x027DF760, int32_t, RegexCode_OpcodeSize, (int32_t opcode, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1A68, RegexCode_OpcodeSize__MethodInfo); DO_APP_FUNC(0x027DF890, void, RegexCompilationInfo__ctor, (RegexCompilationInfo * __this, String * pattern, RegexOptions__Enum options, String * name, String * fullnamespace, bool ispublic, MethodInfo * method)); DO_APP_FUNC(0x027DF950, void, RegexCompilationInfo__ctor_1, (RegexCompilationInfo * __this, String * pattern, RegexOptions__Enum options, String * name, String * fullnamespace, bool ispublic, TimeSpan matchTimeout, MethodInfo * method)); DO_APP_FUNC(0x00594F20, bool, RegexCompilationInfo_get_IsPublic, (RegexCompilationInfo * __this, MethodInfo * method)); @@ -27440,28 +31003,32 @@ DO_APP_FUNC(0x003BB3B0, TimeSpan, RegexCompilationInfo_get_MatchTimeout, (RegexC DO_APP_FUNC(0x027DFC70, void, RegexCompilationInfo_set_MatchTimeout, (RegexCompilationInfo * __this, TimeSpan value, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, String *, RegexCompilationInfo_get_Name, (RegexCompilationInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x027DFCD0, void, RegexCompilationInfo_set_Name, (RegexCompilationInfo * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1A78, RegexCompilationInfo_set_Name__MethodInfo); DO_APP_FUNC(0x003BB3E0, String *, RegexCompilationInfo_get_Namespace, (RegexCompilationInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x027DFE20, void, RegexCompilationInfo_set_Namespace, (RegexCompilationInfo * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1A38, RegexCompilationInfo_set_Namespace__MethodInfo); DO_APP_FUNC(0x00A2A110, RegexOptions__Enum, RegexCompilationInfo_get_Options, (RegexCompilationInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x00BC6590, void, RegexCompilationInfo_set_Options, (RegexCompilationInfo * __this, RegexOptions__Enum value, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, String *, RegexCompilationInfo_get_Pattern, (RegexCompilationInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x027DFEF0, void, RegexCompilationInfo_set_Pattern, (RegexCompilationInfo * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x027DFFC0, void, RegexFCD__ctor, (RegexFCD__Boxed * __this, Span_1_Int32_ intStack, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1A60, RegexCompilationInfo_set_Pattern__MethodInfo); +DO_APP_FUNC(0x027DFFC0, void, RegexFCD__ctor, (RegexFCD * __this, Span_1_Int32_ intStack, MethodInfo * method)); DO_APP_FUNC(0x027E00F0, Nullable_1_System_Text_RegularExpressions_RegexPrefix_, RegexFCD_FirstChars, (RegexTree * t, MethodInfo * method)); DO_APP_FUNC(0x027E04E0, RegexPrefix, RegexFCD_Prefix, (RegexTree * tree, MethodInfo * method)); DO_APP_FUNC(0x027E0800, int32_t, RegexFCD_Anchors, (RegexTree * tree, MethodInfo * method)); DO_APP_FUNC(0x027E0A90, int32_t, RegexFCD_AnchorFromType, (int32_t type, MethodInfo * method)); -DO_APP_FUNC(0x027E0B10, void, RegexFCD_PushInt, (RegexFCD__Boxed * __this, int32_t i, MethodInfo * method)); -DO_APP_FUNC(0x027E0B60, bool, RegexFCD_IntIsEmpty, (RegexFCD__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x027E0BA0, int32_t, RegexFCD_PopInt, (RegexFCD__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x027E0BF0, void, RegexFCD_PushFC, (RegexFCD__Boxed * __this, RegexFC * fc, MethodInfo * method)); -DO_APP_FUNC(0x027E0C90, bool, RegexFCD_FCIsEmpty, (RegexFCD__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x027E0CE0, RegexFC *, RegexFCD_PopFC, (RegexFCD__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x027E0D60, RegexFC *, RegexFCD_TopFC, (RegexFCD__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x027E0DF0, void, RegexFCD_Dispose, (RegexFCD__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x027E0E30, RegexFC *, RegexFCD_RegexFCFromRegexTree, (RegexFCD__Boxed * __this, RegexTree * tree, MethodInfo * method)); -DO_APP_FUNC(0x00987000, void, RegexFCD_SkipChild, (RegexFCD__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x027E10C0, void, RegexFCD_CalculateFC, (RegexFCD__Boxed * __this, int32_t NodeType, RegexNode * node, int32_t CurIndex, MethodInfo * method)); +DO_APP_FUNC(0x027E0B10, void, RegexFCD_PushInt, (RegexFCD * __this, int32_t i, MethodInfo * method)); +DO_APP_FUNC(0x027E0B60, bool, RegexFCD_IntIsEmpty, (RegexFCD * __this, MethodInfo * method)); +DO_APP_FUNC(0x027E0BA0, int32_t, RegexFCD_PopInt, (RegexFCD * __this, MethodInfo * method)); +DO_APP_FUNC(0x027E0BF0, void, RegexFCD_PushFC, (RegexFCD * __this, RegexFC * fc, MethodInfo * method)); +DO_APP_FUNC(0x027E0C90, bool, RegexFCD_FCIsEmpty, (RegexFCD * __this, MethodInfo * method)); +DO_APP_FUNC(0x027E0CE0, RegexFC *, RegexFCD_PopFC, (RegexFCD * __this, MethodInfo * method)); +DO_APP_FUNC(0x027E0D60, RegexFC *, RegexFCD_TopFC, (RegexFCD * __this, MethodInfo * method)); +DO_APP_FUNC(0x027E0DF0, void, RegexFCD_Dispose, (RegexFCD * __this, MethodInfo * method)); +DO_APP_FUNC(0x027E0E30, RegexFC *, RegexFCD_RegexFCFromRegexTree, (RegexFCD * __this, RegexTree * tree, MethodInfo * method)); +DO_APP_FUNC(0x00987000, void, RegexFCD_SkipChild, (RegexFCD * __this, MethodInfo * method)); +DO_APP_FUNC(0x027E10C0, void, RegexFCD_CalculateFC, (RegexFCD * __this, int32_t NodeType, RegexNode * node, int32_t CurIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1A10, RegexFCD_CalculateFC__MethodInfo); DO_APP_FUNC(0x027E1790, void, RegexFC__ctor, (RegexFC * __this, bool nullable, MethodInfo * method)); DO_APP_FUNC(0x027E1850, void, RegexFC__ctor_1, (RegexFC * __this, uint16_t ch, bool not_1, bool nullable, bool caseInsensitive, MethodInfo * method)); DO_APP_FUNC(0x027E1990, void, RegexFC__ctor_2, (RegexFC * __this, String * charClass, bool nullable, bool caseInsensitive, MethodInfo * method)); @@ -27509,6 +31076,7 @@ DO_APP_FUNC(0x027E2840, void, RegexInterpreter_Backwardnext, (RegexInterpreter * DO_APP_FUNC(0x027E2860, uint16_t, RegexInterpreter_CharAt, (RegexInterpreter * __this, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x027E28A0, bool, RegexInterpreter_FindFirstChar, (RegexInterpreter * __this, MethodInfo * method)); DO_APP_FUNC(0x027E2D20, void, RegexInterpreter_Go, (RegexInterpreter * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF19A8, RegexInterpreter_Go__MethodInfo); DO_APP_FUNC(0x027E4ED0, void, RegexMatchTimeoutException__ctor, (RegexMatchTimeoutException * __this, String * regexInput, String * regexPattern, TimeSpan matchTimeout, MethodInfo * method)); DO_APP_FUNC(0x027E5120, void, RegexMatchTimeoutException__ctor_1, (RegexMatchTimeoutException * __this, MethodInfo * method)); DO_APP_FUNC(0x027E52A0, void, RegexMatchTimeoutException__ctor_2, (RegexMatchTimeoutException * __this, String * message, MethodInfo * method)); @@ -27546,23 +31114,35 @@ DO_APP_FUNC(0x027E79F0, void, RegexParser__ctor, (RegexParser * __this, CultureI DO_APP_FUNC(0x027E7BC0, void, RegexParser_SetPattern, (RegexParser * __this, String * Re, MethodInfo * method)); DO_APP_FUNC(0x027E7C70, void, RegexParser_Reset, (RegexParser * __this, RegexOptions__Enum topopts, MethodInfo * method)); DO_APP_FUNC(0x027E7DA0, RegexNode *, RegexParser_ScanRegex, (RegexParser * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF18A8, RegexParser_ScanRegex__MethodInfo); DO_APP_FUNC(0x027E8650, RegexNode *, RegexParser_ScanReplacement, (RegexParser * __this, MethodInfo * method)); DO_APP_FUNC(0x027E88D0, RegexCharClass *, RegexParser_ScanCharClass, (RegexParser * __this, bool caseInsensitive, bool scanOnly, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1940, RegexParser_ScanCharClass__MethodInfo); DO_APP_FUNC(0x027E9190, RegexNode *, RegexParser_ScanGroupOpen, (RegexParser * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1918, RegexParser_ScanGroupOpen__MethodInfo); DO_APP_FUNC(0x027E9E00, void, RegexParser_ScanBlank, (RegexParser * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1810, RegexParser_ScanBlank__MethodInfo); DO_APP_FUNC(0x027EA190, RegexNode *, RegexParser_ScanBackslash, (RegexParser * __this, bool scanOnly, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1890, RegexParser_ScanBackslash__MethodInfo); DO_APP_FUNC(0x027EA7C0, RegexNode *, RegexParser_ScanBasicBackslash, (RegexParser * __this, bool scanOnly, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1898, RegexParser_ScanBasicBackslash__MethodInfo); DO_APP_FUNC(0x027EAEC0, RegexNode *, RegexParser_ScanDollar, (RegexParser * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1870, RegexParser_ScanDollar__MethodInfo); DO_APP_FUNC(0x027EB310, String *, RegexParser_ScanCapname, (RegexParser * __this, MethodInfo * method)); DO_APP_FUNC(0x027EB3E0, uint16_t, RegexParser_ScanOctal, (RegexParser * __this, MethodInfo * method)); DO_APP_FUNC(0x027EB480, int32_t, RegexParser_ScanDecimal, (RegexParser * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1880, RegexParser_ScanDecimal__MethodInfo); DO_APP_FUNC(0x027EB530, uint16_t, RegexParser_ScanHex, (RegexParser * __this, int32_t c, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF17F8, RegexParser_ScanHex__MethodInfo); DO_APP_FUNC(0x027EB660, int32_t, RegexParser_HexDigit, (uint16_t ch, MethodInfo * method)); DO_APP_FUNC(0x027EB690, uint16_t, RegexParser_ScanControl, (RegexParser * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF17E8, RegexParser_ScanControl__MethodInfo); DO_APP_FUNC(0x027EB770, bool, RegexParser_IsOnlyTopOption, (RegexParser * __this, RegexOptions__Enum option, MethodInfo * method)); DO_APP_FUNC(0x027EB790, void, RegexParser_ScanOptions, (RegexParser * __this, MethodInfo * method)); DO_APP_FUNC(0x027EB8B0, uint16_t, RegexParser_ScanCharEscape, (RegexParser * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF17C8, RegexParser_ScanCharEscape__MethodInfo); DO_APP_FUNC(0x027EBC70, String *, RegexParser_ParseProperty, (RegexParser * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF17E0, RegexParser_ParseProperty__MethodInfo); DO_APP_FUNC(0x027EBE60, int32_t, RegexParser_TypeFromCode, (RegexParser * __this, uint16_t ch, MethodInfo * method)); DO_APP_FUNC(0x027EBEE0, RegexOptions__Enum, RegexParser_OptionFromCode, (uint16_t ch, MethodInfo * method)); DO_APP_FUNC(0x027EBF70, void, RegexParser_CountCaptures, (RegexParser * __this, MethodInfo * method)); @@ -27588,6 +31168,7 @@ DO_APP_FUNC(0x027ED570, bool, RegexParser_IsMetachar, (uint16_t ch, MethodInfo * DO_APP_FUNC(0x027ED600, void, RegexParser_AddConcatenate, (RegexParser * __this, int32_t pos, int32_t cch, bool isReplacement, MethodInfo * method)); DO_APP_FUNC(0x027ED910, void, RegexParser_PushGroup, (RegexParser * __this, MethodInfo * method)); DO_APP_FUNC(0x027EDAA0, void, RegexParser_PopGroup, (RegexParser * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1788, RegexParser_PopGroup__MethodInfo); DO_APP_FUNC(0x00985360, bool, RegexParser_EmptyStack, (RegexParser * __this, MethodInfo * method)); DO_APP_FUNC(0x027EDCE0, void, RegexParser_StartGroup, (RegexParser * __this, RegexNode * openGroup, MethodInfo * method)); DO_APP_FUNC(0x027EDE60, void, RegexParser_AddAlternate, (RegexParser * __this, MethodInfo * method)); @@ -27600,6 +31181,7 @@ DO_APP_FUNC(0x027EE390, void, RegexParser_AddUnitSet, (RegexParser * __this, Str DO_APP_FUNC(0x00424C30, void, RegexParser_AddUnitNode, (RegexParser * __this, RegexNode * node, MethodInfo * method)); DO_APP_FUNC(0x027EE4B0, void, RegexParser_AddUnitType, (RegexParser * __this, int32_t type, MethodInfo * method)); DO_APP_FUNC(0x027EE570, void, RegexParser_AddGroup, (RegexParser * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF17A0, RegexParser_AddGroup__MethodInfo); DO_APP_FUNC(0x027EE730, void, RegexParser_PushOptions, (RegexParser * __this, MethodInfo * method)); DO_APP_FUNC(0x027EE7D0, void, RegexParser_PopOptions, (RegexParser * __this, MethodInfo * method)); DO_APP_FUNC(0x027EE890, bool, RegexParser_EmptyOptionsStack, (RegexParser * __this, MethodInfo * method)); @@ -27616,24 +31198,27 @@ DO_APP_FUNC(0x027EEAA0, uint16_t, RegexParser_RightChar, (RegexParser * __this, DO_APP_FUNC(0x027EEAE0, uint16_t, RegexParser_RightChar_1, (RegexParser * __this, int32_t i, MethodInfo * method)); DO_APP_FUNC(0x027EEB20, int32_t, RegexParser_CharsRight, (RegexParser * __this, MethodInfo * method)); DO_APP_FUNC(0x027EEB40, void, RegexParser__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x027EEC20, void, RegexPrefix__ctor, (RegexPrefix__Boxed * __this, String * prefix, bool ci, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, RegexPrefix_get_CaseInsensitive, (RegexPrefix__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x027EEC20, void, RegexPrefix__ctor, (RegexPrefix * __this, String * prefix, bool ci, MethodInfo * method)); +DO_APP_FUNC(0x00C173D0, bool, RegexPrefix_get_CaseInsensitive, (RegexPrefix * __this, MethodInfo * method)); DO_APP_FUNC(0x027EEC80, RegexPrefix, RegexPrefix_get_Empty, (MethodInfo * method)); -DO_APP_FUNC(0x00594C90, String *, RegexPrefix_get_Prefix, (RegexPrefix__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, String *, RegexPrefix_get_Prefix, (RegexPrefix * __this, MethodInfo * method)); DO_APP_FUNC(0x027EECE0, void, RegexPrefix__cctor, (MethodInfo * method)); DO_APP_FUNC(0x027EEE00, void, RegexReplacement__ctor, (RegexReplacement * __this, String * rep, RegexNode * concat, Hashtable * _caps, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1778, RegexReplacement__ctor__MethodInfo); DO_APP_FUNC(0x027EF300, RegexReplacement *, RegexReplacement_GetOrCreate, (WeakReference_1_System_Text_RegularExpressions_RegexReplacement_ * replRef, String * replacement, Hashtable * caps, int32_t capsize, Hashtable * capnames, RegexOptions__Enum roptions, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, String *, RegexReplacement_get_Pattern, (RegexReplacement * __this, MethodInfo * method)); DO_APP_FUNC(0x027EF450, void, RegexReplacement_ReplacementImpl, (RegexReplacement * __this, StringBuilder * sb, Match * match, MethodInfo * method)); DO_APP_FUNC(0x027EF7E0, void, RegexReplacement_ReplacementImplRTL, (RegexReplacement * __this, List_1_System_String_ * al, Match * match, MethodInfo * method)); DO_APP_FUNC(0x027EFA10, String *, RegexReplacement_Replacement, (RegexReplacement * __this, Match * match, MethodInfo * method)); DO_APP_FUNC(0x027EFDE0, String *, RegexReplacement_Replace, (RegexReplacement * __this, Regex * regex, String * input, int32_t count, int32_t startat, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1758, RegexReplacement_Replace__MethodInfo); DO_APP_FUNC(0x003AE050, void, RegexRunner__ctor, (RegexRunner * __this, MethodInfo * method)); DO_APP_FUNC(0x027F0780, Match *, RegexRunner_Scan, (RegexRunner * __this, Regex * regex, String * text, int32_t textbeg, int32_t textend, int32_t textstart, int32_t prevlen, bool quick, MethodInfo * method)); DO_APP_FUNC(0x027F07E0, Match *, RegexRunner_Scan_1, (RegexRunner * __this, Regex * regex, String * text, int32_t textbeg, int32_t textend, int32_t textstart, int32_t prevlen, bool quick, TimeSpan timeout, MethodInfo * method)); DO_APP_FUNC(0x027F0BC0, void, RegexRunner_StartTimeoutWatch, (RegexRunner * __this, MethodInfo * method)); DO_APP_FUNC(0x027F0C20, void, RegexRunner_CheckTimeout, (RegexRunner * __this, MethodInfo * method)); DO_APP_FUNC(0x027F0D30, void, RegexRunner_DoCheckTimeout, (RegexRunner * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1768, RegexRunner_DoCheckTimeout__MethodInfo); DO_APP_FUNC(0x027F0E40, void, RegexRunner_InitMatch, (RegexRunner * __this, MethodInfo * method)); DO_APP_FUNC(0x027F1320, Match *, RegexRunner_TidyMatch, (RegexRunner * __this, bool quick, MethodInfo * method)); DO_APP_FUNC(0x027F13D0, void, RegexRunner_EnsureStorage, (RegexRunner * __this, MethodInfo * method)); @@ -27655,44 +31240,70 @@ DO_APP_FUNC(0x027F1FF0, int32_t, RegexRunner_MatchIndex, (RegexRunner * __this, DO_APP_FUNC(0x027F2020, int32_t, RegexRunner_MatchLength, (RegexRunner * __this, int32_t cap, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, RegexRunnerFactory__ctor, (RegexRunnerFactory * __this, MethodInfo * method)); DO_APP_FUNC(0x027F2050, void, RegexTree__ctor, (RegexTree * __this, RegexNode * root, Hashtable * caps, Int32__Array * capNumList, int32_t capTop, Hashtable * capNames, String__Array * capsList, RegexOptions__Enum options, MethodInfo * method)); -DO_APP_FUNC(0x027F2210, void, RegexWriter__ctor, (RegexWriter__Boxed * __this, Span_1_Int32_ emittedSpan, Span_1_Int32_ intStackSpan, MethodInfo * method)); +DO_APP_FUNC(0x027F2210, void, RegexWriter__ctor, (RegexWriter * __this, Span_1_Int32_ emittedSpan, Span_1_Int32_ intStackSpan, MethodInfo * method)); DO_APP_FUNC(0x027F2350, RegexCode *, RegexWriter_Write, (RegexTree * tree, MethodInfo * method)); -DO_APP_FUNC(0x027F2610, void, RegexWriter_Dispose, (RegexWriter__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x027F2650, RegexCode *, RegexWriter_RegexCodeFromRegexTree, (RegexWriter__Boxed * __this, RegexTree * tree, MethodInfo * method)); -DO_APP_FUNC(0x027F2D10, void, RegexWriter_PatchJump, (RegexWriter__Boxed * __this, int32_t offset, int32_t jumpDest, MethodInfo * method)); -DO_APP_FUNC(0x027F2D70, void, RegexWriter_Emit, (RegexWriter__Boxed * __this, int32_t op, MethodInfo * method)); -DO_APP_FUNC(0x027F2E10, void, RegexWriter_Emit_1, (RegexWriter__Boxed * __this, int32_t op, int32_t opd1, MethodInfo * method)); -DO_APP_FUNC(0x027F2ED0, void, RegexWriter_Emit_2, (RegexWriter__Boxed * __this, int32_t op, int32_t opd1, int32_t opd2, MethodInfo * method)); -DO_APP_FUNC(0x027F2FA0, int32_t, RegexWriter_StringCode, (RegexWriter__Boxed * __this, String * str, MethodInfo * method)); -DO_APP_FUNC(0x027F3120, int32_t, RegexWriter_MapCapnum, (RegexWriter__Boxed * __this, int32_t capnum, MethodInfo * method)); -DO_APP_FUNC(0x027F31F0, void, RegexWriter_EmitFragment, (RegexWriter__Boxed * __this, int32_t nodetype, RegexNode * node, int32_t curIndex, MethodInfo * method)); +DO_APP_FUNC(0x027F2610, void, RegexWriter_Dispose, (RegexWriter * __this, MethodInfo * method)); +DO_APP_FUNC(0x027F2650, RegexCode *, RegexWriter_RegexCodeFromRegexTree, (RegexWriter * __this, RegexTree * tree, MethodInfo * method)); +DO_APP_FUNC(0x027F2D10, void, RegexWriter_PatchJump, (RegexWriter * __this, int32_t offset, int32_t jumpDest, MethodInfo * method)); +DO_APP_FUNC(0x027F2D70, void, RegexWriter_Emit, (RegexWriter * __this, int32_t op, MethodInfo * method)); +DO_APP_FUNC(0x027F2E10, void, RegexWriter_Emit_1, (RegexWriter * __this, int32_t op, int32_t opd1, MethodInfo * method)); +DO_APP_FUNC(0x027F2ED0, void, RegexWriter_Emit_2, (RegexWriter * __this, int32_t op, int32_t opd1, int32_t opd2, MethodInfo * method)); +DO_APP_FUNC(0x027F2FA0, int32_t, RegexWriter_StringCode, (RegexWriter * __this, String * str, MethodInfo * method)); +DO_APP_FUNC(0x027F3120, int32_t, RegexWriter_MapCapnum, (RegexWriter * __this, int32_t capnum, MethodInfo * method)); +DO_APP_FUNC(0x027F31F0, void, RegexWriter_EmitFragment, (RegexWriter * __this, int32_t nodetype, RegexNode * node, int32_t curIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1710, RegexWriter_EmitFragment__MethodInfo); DO_APP_FUNC(0x003AE050, void, CodeCompileUnit__ctor, (CodeCompileUnit * __this, MethodInfo * method)); DO_APP_FUNC(0x027F3B80, CodeAttributeDeclarationCollection *, CodeCompileUnit_get_AssemblyCustomAttributes, (CodeCompileUnit * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5AC0, CodeCompileUnit_get_AssemblyCustomAttributes__MethodInfo); DO_APP_FUNC(0x027F3BB0, CodeDirectiveCollection *, CodeCompileUnit_get_EndDirectives, (CodeCompileUnit * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5AB0, CodeCompileUnit_get_EndDirectives__MethodInfo); DO_APP_FUNC(0x027F3BE0, CodeNamespaceCollection *, CodeCompileUnit_get_Namespaces, (CodeCompileUnit * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5AD8, CodeCompileUnit_get_Namespaces__MethodInfo); DO_APP_FUNC(0x027F3C10, StringCollection *, CodeCompileUnit_get_ReferencedAssemblies, (CodeCompileUnit * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5A68, CodeCompileUnit_get_ReferencedAssemblies__MethodInfo); DO_APP_FUNC(0x027F3C40, CodeDirectiveCollection *, CodeCompileUnit_get_StartDirectives, (CodeCompileUnit * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5A98, CodeCompileUnit_get_StartDirectives__MethodInfo); DO_APP_FUNC(0x003AE050, void, CodeTypeDeclaration__ctor, (CodeTypeDeclaration * __this, MethodInfo * method)); DO_APP_FUNC(0x027F3C70, void, CodeTypeDeclaration__ctor_1, (CodeTypeDeclaration * __this, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5A88, CodeTypeDeclaration__ctor_1__MethodInfo); DO_APP_FUNC(0x027F3CA0, CodeTypeReferenceCollection *, CodeTypeDeclaration_get_BaseTypes, (CodeTypeDeclaration * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5B10, CodeTypeDeclaration_get_BaseTypes__MethodInfo); DO_APP_FUNC(0x027F3CD0, bool, CodeTypeDeclaration_get_IsClass, (CodeTypeDeclaration * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5B18, CodeTypeDeclaration_get_IsClass__MethodInfo); DO_APP_FUNC(0x027F3D00, void, CodeTypeDeclaration_set_IsClass, (CodeTypeDeclaration * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5AE8, CodeTypeDeclaration_set_IsClass__MethodInfo); DO_APP_FUNC(0x027F3D30, bool, CodeTypeDeclaration_get_IsEnum, (CodeTypeDeclaration * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5AE0, CodeTypeDeclaration_get_IsEnum__MethodInfo); DO_APP_FUNC(0x027F3D60, void, CodeTypeDeclaration_set_IsEnum, (CodeTypeDeclaration * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5B00, CodeTypeDeclaration_set_IsEnum__MethodInfo); DO_APP_FUNC(0x027F3D90, bool, CodeTypeDeclaration_get_IsInterface, (CodeTypeDeclaration * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF59C8, CodeTypeDeclaration_get_IsInterface__MethodInfo); DO_APP_FUNC(0x027F3DC0, void, CodeTypeDeclaration_set_IsInterface, (CodeTypeDeclaration * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF59E8, CodeTypeDeclaration_set_IsInterface__MethodInfo); DO_APP_FUNC(0x027F3DF0, bool, CodeTypeDeclaration_get_IsPartial, (CodeTypeDeclaration * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF59D8, CodeTypeDeclaration_get_IsPartial__MethodInfo); DO_APP_FUNC(0x027F3E20, void, CodeTypeDeclaration_set_IsPartial, (CodeTypeDeclaration * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF59A0, CodeTypeDeclaration_set_IsPartial__MethodInfo); DO_APP_FUNC(0x027F3E50, bool, CodeTypeDeclaration_get_IsStruct, (CodeTypeDeclaration * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF59B8, CodeTypeDeclaration_get_IsStruct__MethodInfo); DO_APP_FUNC(0x027F3E80, void, CodeTypeDeclaration_set_IsStruct, (CodeTypeDeclaration * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5A40, CodeTypeDeclaration_set_IsStruct__MethodInfo); DO_APP_FUNC(0x027F3EB0, CodeTypeMemberCollection *, CodeTypeDeclaration_get_Members, (CodeTypeDeclaration * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5A38, CodeTypeDeclaration_get_Members__MethodInfo); DO_APP_FUNC(0x027F3EE0, TypeAttributes__Enum, CodeTypeDeclaration_get_TypeAttributes, (CodeTypeDeclaration * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5A48, CodeTypeDeclaration_get_TypeAttributes__MethodInfo); DO_APP_FUNC(0x027F3F10, void, CodeTypeDeclaration_set_TypeAttributes, (CodeTypeDeclaration * __this, TypeAttributes__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5A10, CodeTypeDeclaration_set_TypeAttributes__MethodInfo); DO_APP_FUNC(0x027F3F40, CodeTypeParameterCollection *, CodeTypeDeclaration_get_TypeParameters, (CodeTypeDeclaration * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5A28, CodeTypeDeclaration_get_TypeParameters__MethodInfo); DO_APP_FUNC(0x027F3F70, void, CodeTypeDeclaration_add_PopulateBaseTypes, (CodeTypeDeclaration * __this, EventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5A20, CodeTypeDeclaration_add_PopulateBaseTypes__MethodInfo); DO_APP_FUNC(0x027F3FA0, void, CodeTypeDeclaration_remove_PopulateBaseTypes, (CodeTypeDeclaration * __this, EventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5948, CodeTypeDeclaration_remove_PopulateBaseTypes__MethodInfo); DO_APP_FUNC(0x027F3FD0, void, CodeTypeDeclaration_add_PopulateMembers, (CodeTypeDeclaration * __this, EventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5960, CodeTypeDeclaration_add_PopulateMembers__MethodInfo); DO_APP_FUNC(0x027F4000, void, CodeTypeDeclaration_remove_PopulateMembers, (CodeTypeDeclaration * __this, EventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5928, CodeTypeDeclaration_remove_PopulateMembers__MethodInfo); DO_APP_FUNC(0x027F4030, void, IndentedTextWriter__ctor, (IndentedTextWriter * __this, TextWriter * writer, MethodInfo * method)); DO_APP_FUNC(0x027F41F0, void, IndentedTextWriter__ctor_1, (IndentedTextWriter * __this, TextWriter * writer, String * tabString, MethodInfo * method)); DO_APP_FUNC(0x01B3F080, Encoding *, IndentedTextWriter_get_Encoding, (IndentedTextWriter * __this, MethodInfo * method)); @@ -27752,6 +31363,7 @@ DO_APP_FUNC(0x027F53B0, Guid, CorrelationManager_get_ActivityId, (CorrelationMan DO_APP_FUNC(0x027F5450, void, CorrelationManager_set_ActivityId, (CorrelationManager * __this, Guid value, MethodInfo * method)); DO_APP_FUNC(0x027F54C0, Stack *, CorrelationManager_get_LogicalOperationStack, (CorrelationManager * __this, MethodInfo * method)); DO_APP_FUNC(0x027F54D0, void, CorrelationManager_StartLogicalOperation, (CorrelationManager * __this, Object * operationId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5910, CorrelationManager_StartLogicalOperation__MethodInfo); DO_APP_FUNC(0x027F5560, void, CorrelationManager_StartLogicalOperation_1, (CorrelationManager * __this, MethodInfo * method)); DO_APP_FUNC(0x027F5680, void, CorrelationManager_StopLogicalOperation, (CorrelationManager * __this, MethodInfo * method)); DO_APP_FUNC(0x027F56B0, Stack *, CorrelationManager_GetLogicalOperationStack, (CorrelationManager * __this, MethodInfo * method)); @@ -27799,6 +31411,7 @@ DO_APP_FUNC(0x027F6F40, void, DelimitedListTraceListener__ctor_4, (DelimitedList DO_APP_FUNC(0x027F70C0, void, DelimitedListTraceListener__ctor_5, (DelimitedListTraceListener * __this, String * fileName, String * name, MethodInfo * method)); DO_APP_FUNC(0x027F7290, String *, DelimitedListTraceListener_get_Delimiter, (DelimitedListTraceListener * __this, MethodInfo * method)); DO_APP_FUNC(0x027F74D0, void, DelimitedListTraceListener_set_Delimiter, (DelimitedListTraceListener * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5820, DelimitedListTraceListener_set_Delimiter__MethodInfo); DO_APP_FUNC(0x027F7870, String__Array *, DelimitedListTraceListener_GetSupportedAttributes, (DelimitedListTraceListener * __this, MethodInfo * method)); DO_APP_FUNC(0x027F7920, void, DelimitedListTraceListener_TraceEvent, (DelimitedListTraceListener * __this, TraceEventCache * eventCache, String * source, TraceEventType__Enum eventType, int32_t id, String * format, Object__Array * args, MethodInfo * method)); DO_APP_FUNC(0x027F7AF0, void, DelimitedListTraceListener_TraceEvent_1, (DelimitedListTraceListener * __this, TraceEventCache * eventCache, String * source, TraceEventType__Enum eventType, int32_t id, String * message, MethodInfo * method)); @@ -27814,8 +31427,10 @@ DO_APP_FUNC(0x003BC2E0, SourceLevels__Enum, EventTypeFilter_get_EventType, (Even DO_APP_FUNC(0x003BCDD0, void, EventTypeFilter_set_EventType, (EventTypeFilter * __this, SourceLevels__Enum value, MethodInfo * method)); DO_APP_FUNC(0x027F8890, void, SourceFilter__ctor, (SourceFilter * __this, String * source, MethodInfo * method)); DO_APP_FUNC(0x027F8950, bool, SourceFilter_ShouldTrace, (SourceFilter * __this, TraceEventCache * cache, String * source, TraceEventType__Enum eventType, int32_t id, String * formatOrMessage, Object__Array * args, Object * data1, Object__Array * data, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5870, SourceFilter_ShouldTrace__MethodInfo); DO_APP_FUNC(0x003BB3D0, String *, SourceFilter_get_Source, (SourceFilter * __this, MethodInfo * method)); DO_APP_FUNC(0x027F8890, void, SourceFilter_set_Source, (SourceFilter * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5860, SourceFilter_set_Source__MethodInfo); DO_APP_FUNC(0x027F8A00, void, SourceSwitch__ctor, (SourceSwitch * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x027F8AC0, void, SourceSwitch__ctor_1, (SourceSwitch * __this, String * displayName, String * defaultSwitchValue, MethodInfo * method)); DO_APP_FUNC(0x027F8B70, SourceLevels__Enum, SourceSwitch_get_Level, (SourceSwitch * __this, MethodInfo * method)); @@ -27845,21 +31460,27 @@ DO_APP_FUNC(0x027FA330, void, Switch__cctor, (MethodInfo * method)); DO_APP_FUNC(0x027FA410, void, SwitchAttribute__ctor, (SwitchAttribute * __this, String * switchName, Type * switchType, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, String *, SwitchAttribute_get_SwitchName, (SwitchAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x027FA6A0, void, SwitchAttribute_set_SwitchName, (SwitchAttribute * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF57F8, SwitchAttribute_set_SwitchName__MethodInfo); DO_APP_FUNC(0x003BB3C0, Type *, SwitchAttribute_get_SwitchType, (SwitchAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x027FA830, void, SwitchAttribute_set_SwitchType, (SwitchAttribute * __this, Type * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF57C8, SwitchAttribute_set_SwitchType__MethodInfo); DO_APP_FUNC(0x003BB3E0, String *, SwitchAttribute_get_SwitchDescription, (SwitchAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCDE0, void, SwitchAttribute_set_SwitchDescription, (SwitchAttribute * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x027FA920, SwitchAttribute__Array *, SwitchAttribute_GetAll, (Assembly * assembly, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF57D0, SwitchAttribute_GetAll__MethodInfo); DO_APP_FUNC(0x027FAC70, void, SwitchAttribute_GetAllRecursive, (Type * type, ArrayList * switchAttribs, MethodInfo * method)); DO_APP_FUNC(0x027FADF0, void, SwitchAttribute_GetAllRecursive_1, (MemberInfo_1 * member, ArrayList * switchAttribs, MethodInfo * method)); DO_APP_FUNC(0x027FAEB0, void, SwitchLevelAttribute__ctor, (SwitchLevelAttribute * __this, Type * switchLevelType, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, Type *, SwitchLevelAttribute_get_SwitchLevelType, (SwitchLevelAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x027FAEB0, void, SwitchLevelAttribute_set_SwitchLevelType, (SwitchLevelAttribute * __this, Type * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5728, SwitchLevelAttribute_set_SwitchLevelType__MethodInfo); DO_APP_FUNC(0x027FAFA0, void, TextWriterTraceListener__ctor, (TextWriterTraceListener * __this, MethodInfo * method)); DO_APP_FUNC(0x027FAFB0, void, TextWriterTraceListener__ctor_1, (TextWriterTraceListener * __this, Stream * stream, MethodInfo * method)); DO_APP_FUNC(0x027FB010, void, TextWriterTraceListener__ctor_2, (TextWriterTraceListener * __this, Stream * stream, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5708, TextWriterTraceListener__ctor_2__MethodInfo); DO_APP_FUNC(0x027FB1B0, void, TextWriterTraceListener__ctor_3, (TextWriterTraceListener * __this, TextWriter * writer, MethodInfo * method)); DO_APP_FUNC(0x027FB210, void, TextWriterTraceListener__ctor_4, (TextWriterTraceListener * __this, TextWriter * writer, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5720, TextWriterTraceListener__ctor_4__MethodInfo); DO_APP_FUNC(0x027FB330, void, TextWriterTraceListener__ctor_5, (TextWriterTraceListener * __this, String * fileName, MethodInfo * method)); DO_APP_FUNC(0x027FB390, void, TextWriterTraceListener__ctor_6, (TextWriterTraceListener * __this, String * fileName, String * name, MethodInfo * method)); DO_APP_FUNC(0x027FB450, TextWriter *, TextWriterTraceListener_get_Writer, (TextWriterTraceListener * __this, MethodInfo * method)); @@ -27984,12 +31605,14 @@ DO_APP_FUNC(0x003BC2E0, int32_t, TraceListener_get_IndentLevel, (TraceListener * DO_APP_FUNC(0x028070A0, void, TraceListener_set_IndentLevel, (TraceListener * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x003CD440, int32_t, TraceListener_get_IndentSize, (TraceListener * __this, MethodInfo * method)); DO_APP_FUNC(0x028070C0, void, TraceListener_set_IndentSize, (TraceListener * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5408, TraceListener_set_IndentSize__MethodInfo); DO_APP_FUNC(0x003BB330, TraceFilter *, TraceListener_get_Filter, (TraceListener * __this, MethodInfo * method)); DO_APP_FUNC(0x00424C30, void, TraceListener_set_Filter, (TraceListener * __this, TraceFilter * value, MethodInfo * method)); DO_APP_FUNC(0x00945280, bool, TraceListener_get_NeedIndent, (TraceListener * __this, MethodInfo * method)); DO_APP_FUNC(0x00945290, void, TraceListener_set_NeedIndent, (TraceListener * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x003CC980, TraceOptions__Enum, TraceListener_get_TraceOutputOptions, (TraceListener * __this, MethodInfo * method)); DO_APP_FUNC(0x02807190, void, TraceListener_set_TraceOutputOptions, (TraceListener * __this, TraceOptions__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5418, TraceListener_set_TraceOutputOptions__MethodInfo); DO_APP_FUNC(0x02807200, void, TraceListener_SetAttributes, (TraceListener * __this, Hashtable * attribs, MethodInfo * method)); DO_APP_FUNC(0x02807340, void, TraceListener_Fail, (TraceListener * __this, String * message, MethodInfo * method)); DO_APP_FUNC(0x02807360, void, TraceListener_Fail_1, (TraceListener * __this, String * message, String * detailMessage, MethodInfo * method)); @@ -28017,12 +31640,15 @@ DO_APP_FUNC(0x02808D20, TraceListener *, TraceListenerCollection_get_Item_1, (Tr DO_APP_FUNC(0x01B1A1A0, int32_t, TraceListenerCollection_get_Count, (TraceListenerCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x02808F60, int32_t, TraceListenerCollection_Add, (TraceListenerCollection * __this, TraceListener * listener, MethodInfo * method)); DO_APP_FUNC(0x028091F0, void, TraceListenerCollection_AddRange, (TraceListenerCollection * __this, TraceListener__Array * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5248, TraceListenerCollection_AddRange__MethodInfo); DO_APP_FUNC(0x028092A0, void, TraceListenerCollection_AddRange_1, (TraceListenerCollection * __this, TraceListenerCollection * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5230, TraceListenerCollection_AddRange_1__MethodInfo); DO_APP_FUNC(0x02809380, void, TraceListenerCollection_Clear, (TraceListenerCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x02809430, bool, TraceListenerCollection_Contains, (TraceListenerCollection * __this, TraceListener * listener, MethodInfo * method)); DO_APP_FUNC(0x02809490, void, TraceListenerCollection_CopyTo, (TraceListenerCollection * __this, TraceListener__Array * listeners, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x018F47D0, IEnumerator *, TraceListenerCollection_GetEnumerator, (TraceListenerCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x028094F0, void, TraceListenerCollection_InitializeListener, (TraceListenerCollection * __this, TraceListener * listener, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5208, TraceListenerCollection_InitializeListener__MethodInfo); DO_APP_FUNC(0x028095B0, int32_t, TraceListenerCollection_IndexOf, (TraceListenerCollection * __this, TraceListener * listener, MethodInfo * method)); DO_APP_FUNC(0x02809610, void, TraceListenerCollection_Insert, (TraceListenerCollection * __this, int32_t index, TraceListener * listener, MethodInfo * method)); DO_APP_FUNC(0x028098B0, void, TraceListenerCollection_Remove, (TraceListenerCollection * __this, TraceListener * listener, MethodInfo * method)); @@ -28030,18 +31656,22 @@ DO_APP_FUNC(0x02809910, void, TraceListenerCollection_Remove_1, (TraceListenerCo DO_APP_FUNC(0x02809980, void, TraceListenerCollection_RemoveAt, (TraceListenerCollection * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x02809B40, Object *, TraceListenerCollection_System_Collections_IList_get_Item, (TraceListenerCollection * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x02809B70, void, TraceListenerCollection_System_Collections_IList_set_Item, (TraceListenerCollection * __this, int32_t index, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5268, TraceListenerCollection_System_Collections_IList_set_Item__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, TraceListenerCollection_System_Collections_IList_get_IsReadOnly, (TraceListenerCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, TraceListenerCollection_System_Collections_IList_get_IsFixedSize, (TraceListenerCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x02809CF0, int32_t, TraceListenerCollection_System_Collections_IList_Add, (TraceListenerCollection * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF51B8, TraceListenerCollection_System_Collections_IList_Add__MethodInfo); DO_APP_FUNC(0x01B1A730, bool, TraceListenerCollection_System_Collections_IList_Contains, (TraceListenerCollection * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01B1A9D0, int32_t, TraceListenerCollection_System_Collections_IList_IndexOf, (TraceListenerCollection * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x02809FE0, void, TraceListenerCollection_System_Collections_IList_Insert, (TraceListenerCollection * __this, int32_t index, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF51A8, TraceListenerCollection_System_Collections_IList_Insert__MethodInfo); DO_APP_FUNC(0x0280A2E0, void, TraceListenerCollection_System_Collections_IList_Remove, (TraceListenerCollection * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x00A1B820, Object *, TraceListenerCollection_System_Collections_ICollection_get_SyncRoot, (TraceListenerCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, TraceListenerCollection_System_Collections_ICollection_get_IsSynchronized, (TraceListenerCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x0280A4A0, void, TraceListenerCollection_System_Collections_ICollection_CopyTo, (TraceListenerCollection * __this, Array * array, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x0280A660, void, TraceSource__ctor, (TraceSource * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x0280A670, void, TraceSource__ctor_1, (TraceSource * __this, String * name, SourceLevels__Enum defaultLevel, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5168, TraceSource__ctor_1__MethodInfo); DO_APP_FUNC(0x0280A9D0, void, TraceSource__pruneCachedTraceSources, (MethodInfo * method)); DO_APP_FUNC(0x0280AFD0, void, TraceSource_Initialize, (TraceSource * __this, MethodInfo * method)); DO_APP_FUNC(0x0280B160, void, TraceSource_NoConfigInit, (TraceSource * __this, MethodInfo * method)); @@ -28064,11 +31694,13 @@ DO_APP_FUNC(0x01AFA7B0, String *, TraceSource_get_Name, (TraceSource * __this, M DO_APP_FUNC(0x0280E940, TraceListenerCollection *, TraceSource_get_Listeners, (TraceSource * __this, MethodInfo * method)); DO_APP_FUNC(0x0280E960, SourceSwitch *, TraceSource_get_Switch, (TraceSource * __this, MethodInfo * method)); DO_APP_FUNC(0x0280E980, void, TraceSource_set_Switch, (TraceSource * __this, SourceSwitch * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5110, TraceSource_set_Switch__MethodInfo); DO_APP_FUNC(0x0280EA50, void, TraceSource__cctor, (MethodInfo * method)); DO_APP_FUNC(0x0280EB30, void, TraceSwitch__ctor, (TraceSwitch * __this, String * displayName, String * description, MethodInfo * method)); DO_APP_FUNC(0x0280EBD0, void, TraceSwitch__ctor_1, (TraceSwitch * __this, String * displayName, String * description, String * defaultSwitchValue, MethodInfo * method)); DO_APP_FUNC(0x027F8B70, TraceLevel__Enum, TraceSwitch_get_Level, (TraceSwitch * __this, MethodInfo * method)); DO_APP_FUNC(0x0280EC60, void, TraceSwitch_set_Level, (TraceSwitch * __this, TraceLevel__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5148, TraceSwitch_set_Level__MethodInfo); DO_APP_FUNC(0x0280ECF0, bool, TraceSwitch_get_TraceError, (TraceSwitch * __this, MethodInfo * method)); DO_APP_FUNC(0x0280ED40, bool, TraceSwitch_get_TraceWarning, (TraceSwitch * __this, MethodInfo * method)); DO_APP_FUNC(0x0280ED90, bool, TraceSwitch_get_TraceInfo, (TraceSwitch * __this, MethodInfo * method)); @@ -28093,6 +31725,7 @@ DO_APP_FUNC(0x003BB3C0, Stream *, AsyncStreamReader_get_BaseStream, (AsyncStream DO_APP_FUNC(0x0280FDE0, void, AsyncStreamReader_BeginReadLine, (AsyncStreamReader * __this, MethodInfo * method)); DO_APP_FUNC(0x01EE49B0, void, AsyncStreamReader_CancelOperation, (AsyncStreamReader * __this, MethodInfo * method)); DO_APP_FUNC(0x02810020, void, AsyncStreamReader_ReadBuffer, (AsyncStreamReader * __this, IAsyncResult * ar, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF50C8, AsyncStreamReader_ReadBuffer__MethodInfo); DO_APP_FUNC(0x02810BF0, void, AsyncStreamReader_GetLinesFromStringBuilder, (AsyncStreamReader * __this, MethodInfo * method)); DO_APP_FUNC(0x02810EE0, void, AsyncStreamReader_FlushMessageQueue, (AsyncStreamReader * __this, MethodInfo * method)); DO_APP_FUNC(0x02811120, void, AsyncStreamReader_WaitUtilEOF, (AsyncStreamReader * __this, MethodInfo * method)); @@ -28104,8 +31737,11 @@ DO_APP_FUNC(0x028115C0, void, Process__ctor, (Process * __this, MethodInfo * met DO_APP_FUNC(0x02811680, void, Process__ctor_1, (Process * __this, String * machineName, bool isRemoteMachine, int32_t processId, ProcessInfo * processInfo, MethodInfo * method)); DO_APP_FUNC(0x02811760, bool, Process_get_Associated, (Process * __this, MethodInfo * method)); DO_APP_FUNC(0x02811770, int32_t, Process_get_ExitCode, (Process * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5100, Process_get_ExitCode__MethodInfo); DO_APP_FUNC(0x02811930, bool, Process_get_HasExited, (Process * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF50D8, Process_get_HasExited__MethodInfo); DO_APP_FUNC(0x02811D00, ProcessThreadTimes *, Process_GetProcessTimes, (Process * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF50E0, Process_GetProcessTimes__MethodInfo); DO_APP_FUNC(0x02811F80, DateTime, Process_get_ExitTime, (Process * __this, MethodInfo * method)); DO_APP_FUNC(0x02812020, void *, Process_get_Handle, (Process * __this, MethodInfo * method)); DO_APP_FUNC(0x02812060, SafeProcessHandle *, Process_get_SafeHandle, (Process * __this, MethodInfo * method)); @@ -28117,10 +31753,13 @@ DO_APP_FUNC(0x02812160, void *, Process_get_MinWorkingSet, (Process * __this, Me DO_APP_FUNC(0x02812180, void, Process_set_MinWorkingSet, (Process * __this, void * value, MethodInfo * method)); DO_APP_FUNC(0x028121F0, OperatingSystem *, Process_get_OperatingSystem, (Process * __this, MethodInfo * method)); DO_APP_FUNC(0x02812280, ProcessPriorityClass__Enum, Process_get_PriorityClass, (Process * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5060, Process_get_PriorityClass__MethodInfo); DO_APP_FUNC(0x028123A0, void, Process_set_PriorityClass, (Process * __this, ProcessPriorityClass__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5048, Process_set_PriorityClass__MethodInfo); DO_APP_FUNC(0x028126C0, TimeSpan, Process_get_PrivilegedProcessorTime, (Process * __this, MethodInfo * method)); DO_APP_FUNC(0x02812700, ProcessStartInfo *, Process_get_StartInfo, (Process * __this, MethodInfo * method)); DO_APP_FUNC(0x02812880, void, Process_set_StartInfo, (Process * __this, ProcessStartInfo * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5058, Process_set_StartInfo__MethodInfo); DO_APP_FUNC(0x02812940, DateTime, Process_get_StartTime, (Process * __this, MethodInfo * method)); DO_APP_FUNC(0x028129C0, ISynchronizeInvoke *, Process_get_SynchronizingObject, (Process * __this, MethodInfo * method)); DO_APP_FUNC(0x01D0B3E0, void, Process_set_SynchronizingObject, (Process * __this, ISynchronizeInvoke * value, MethodInfo * method)); @@ -28129,17 +31768,23 @@ DO_APP_FUNC(0x02812BD0, TimeSpan, Process_get_UserProcessorTime, (Process * __th DO_APP_FUNC(0x006C4530, bool, Process_get_EnableRaisingEvents, (Process * __this, MethodInfo * method)); DO_APP_FUNC(0x02812C10, void, Process_set_EnableRaisingEvents, (Process * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x02812C80, StreamWriter *, Process_get_StandardInput, (Process * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF50A8, Process_get_StandardInput__MethodInfo); DO_APP_FUNC(0x02812D20, StreamReader *, Process_get_StandardOutput, (Process * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5098, Process_get_StandardOutput__MethodInfo); DO_APP_FUNC(0x02812E20, StreamReader *, Process_get_StandardError, (Process * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF50B0, Process_get_StandardError__MethodInfo); DO_APP_FUNC(0x02812F20, void, Process_add_Exited, (Process * __this, EventHandler * value, MethodInfo * method)); DO_APP_FUNC(0x02813020, void, Process_remove_Exited, (Process * __this, EventHandler * value, MethodInfo * method)); DO_APP_FUNC(0x02813120, void, Process_ReleaseProcessHandle, (Process * __this, SafeProcessHandle * handle, MethodInfo * method)); DO_APP_FUNC(0x02813150, void, Process_CompletionCallback, (Process * __this, Object * context, bool wasSignaled, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4FF8, Process_CompletionCallback__MethodInfo); DO_APP_FUNC(0x02813170, void, Process_Dispose, (Process * __this, bool disposing, MethodInfo * method)); DO_APP_FUNC(0x028131C0, void, Process_Close, (Process * __this, MethodInfo * method)); DO_APP_FUNC(0x02813640, void, Process_EnsureState, (Process * __this, Process_State__Enum state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5078, Process_EnsureState__MethodInfo); DO_APP_FUNC(0x028138F0, void, Process_EnsureWatchingForExit, (Process * __this, MethodInfo * method)); DO_APP_FUNC(0x02813B00, void, Process_EnsureWorkingSetLimits, (Process * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5000, Process_EnsureWorkingSetLimits__MethodInfo); DO_APP_FUNC(0x003AE050, void, Process_EnterDebugMode, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Process_LeaveDebugMode, (MethodInfo * method)); DO_APP_FUNC(0x02813C60, Process *, Process_GetProcessById, (int32_t processId, MethodInfo * method)); @@ -28148,32 +31793,45 @@ DO_APP_FUNC(0x02813CF0, Process__Array *, Process_GetProcesses, (MethodInfo * me DO_APP_FUNC(0x02813D30, Process *, Process_GetCurrentProcess, (MethodInfo * method)); DO_APP_FUNC(0x02813E50, void, Process_OnExited, (Process * __this, MethodInfo * method)); DO_APP_FUNC(0x02814040, SafeProcessHandle *, Process_GetProcessHandle, (Process * __this, int32_t access, bool throwIfExited, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5038, Process_GetProcessHandle__MethodInfo); DO_APP_FUNC(0x028146F0, SafeProcessHandle *, Process_GetProcessHandle_1, (Process * __this, int32_t access, MethodInfo * method)); DO_APP_FUNC(0x02814700, SafeProcessHandle *, Process_OpenProcessHandle, (Process * __this, MethodInfo * method)); DO_APP_FUNC(0x02814710, SafeProcessHandle *, Process_OpenProcessHandle_1, (Process * __this, int32_t access, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5030, Process_OpenProcessHandle_1__MethodInfo); DO_APP_FUNC(0x028147C0, void, Process_Refresh, (Process * __this, MethodInfo * method)); DO_APP_FUNC(0x02814890, void, Process_SetProcessHandle, (Process * __this, SafeProcessHandle * processHandle, MethodInfo * method)); DO_APP_FUNC(0x02814900, void, Process_SetProcessId, (Process * __this, int32_t processId, MethodInfo * method)); DO_APP_FUNC(0x02814910, void, Process_SetWorkingSetLimits, (Process * __this, Object * newMin, Object * newMax, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5018, Process_SetWorkingSetLimits__MethodInfo); DO_APP_FUNC(0x02814C90, bool, Process_Start, (Process * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5028, Process_Start__MethodInfo); DO_APP_FUNC(0x02814D90, Process *, Process_Start_1, (String * fileName, String * userName, SecureString * password, String * domain, MethodInfo * method)); DO_APP_FUNC(0x02814F70, Process *, Process_Start_2, (String * fileName, String * arguments, String * userName, SecureString * password, String * domain, MethodInfo * method)); DO_APP_FUNC(0x02815110, Process *, Process_Start_3, (String * fileName, MethodInfo * method)); DO_APP_FUNC(0x028151C0, Process *, Process_Start_4, (String * fileName, String * arguments, MethodInfo * method)); DO_APP_FUNC(0x02815240, Process *, Process_Start_5, (ProcessStartInfo * startInfo, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4F70, Process_Start_5__MethodInfo); DO_APP_FUNC(0x02815360, void, Process_Kill, (Process * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4F60, Process_Kill__MethodInfo); DO_APP_FUNC(0x02815450, void, Process_StopWatchingForExit, (Process * __this, MethodInfo * method)); DO_APP_FUNC(0x028156B0, String *, Process_ToString, (Process * __this, MethodInfo * method)); DO_APP_FUNC(0x028157D0, bool, Process_WaitForExit, (Process * __this, int32_t milliseconds, MethodInfo * method)); DO_APP_FUNC(0x02815A00, void, Process_WaitForExit_1, (Process * __this, MethodInfo * method)); DO_APP_FUNC(0x02815A10, bool, Process_WaitForInputIdle, (Process * __this, int32_t milliseconds, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4FB0, Process_WaitForInputIdle__MethodInfo); DO_APP_FUNC(0x02815B90, bool, Process_WaitForInputIdle_1, (Process * __this, MethodInfo * method)); DO_APP_FUNC(0x02815BA0, void, Process_BeginOutputReadLine, (Process * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4FB8, Process_BeginOutputReadLine__MethodInfo); DO_APP_FUNC(0x02815E60, void, Process_BeginErrorReadLine, (Process * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4F88, Process_BeginErrorReadLine__MethodInfo); DO_APP_FUNC(0x02816120, void, Process_CancelOutputRead, (Process * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4FA0, Process_CancelOutputRead__MethodInfo); DO_APP_FUNC(0x028161D0, void, Process_CancelErrorRead, (Process * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4F90, Process_CancelErrorRead__MethodInfo); DO_APP_FUNC(0x02816280, void, Process_OutputReadNotifyUser, (Process * __this, String * data, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4FC8, Process_OutputReadNotifyUser__MethodInfo); DO_APP_FUNC(0x02816440, void, Process_ErrorReadNotifyUser, (Process * __this, String * data, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4F80, Process_ErrorReadNotifyUser__MethodInfo); DO_APP_FUNC(0x02816600, void, Process__ctor_2, (Process * __this, SafeProcessHandle * handle, int32_t id, MethodInfo * method)); DO_APP_FUNC(0x003CB690, int32_t, Process_get_BasePriority, (Process * __this, MethodInfo * method)); DO_APP_FUNC(0x003CB690, int32_t, Process_get_HandleCount, (Process * __this, MethodInfo * method)); @@ -28185,7 +31843,7 @@ DO_APP_FUNC(0x02816850, void, Process_AppendArguments, (StringBuilder * stringBu DO_APP_FUNC(0x003CB690, ProcessModule__Array *, Process_GetModules_icall, (Process * __this, void * handle, MethodInfo * method)); DO_APP_FUNC(0x02816AB0, ProcessModule__Array *, Process_GetModules_internal, (Process * __this, SafeProcessHandle * handle, MethodInfo * method)); DO_APP_FUNC(0x02816B50, ProcessModuleCollection *, Process_get_Modules, (Process * __this, MethodInfo * method)); -DO_APP_FUNC(0x02816D00, int64_t, Process_GetProcessData, (int32_t pid, int32_t data_type, int32_t error, MethodInfo * method)); +DO_APP_FUNC(0x02816D00, int64_t, Process_GetProcessData, (int32_t pid, int32_t data_type, int32_t * error, MethodInfo * method)); DO_APP_FUNC(0x003CB690, int32_t, Process_get_NonpagedSystemMemorySize, (Process * __this, MethodInfo * method)); DO_APP_FUNC(0x02816D10, int32_t, Process_get_PagedMemorySize, (Process * __this, MethodInfo * method)); DO_APP_FUNC(0x02816D10, int32_t, Process_get_PagedSystemMemorySize, (Process * __this, MethodInfo * method)); @@ -28205,10 +31863,12 @@ DO_APP_FUNC(0x003CB690, int32_t, Process_get_SessionId, (Process * __this, Metho DO_APP_FUNC(0x02816DA0, String *, Process_ProcessName_icall, (void * handle, MethodInfo * method)); DO_APP_FUNC(0x02816E40, String *, Process_ProcessName_internal, (SafeProcessHandle * handle, MethodInfo * method)); DO_APP_FUNC(0x02816FC0, String *, Process_get_ProcessName, (Process * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4F28, Process_get_ProcessName__MethodInfo); DO_APP_FUNC(0x003CB690, void *, Process_get_ProcessorAffinity, (Process * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Process_set_ProcessorAffinity, (Process * __this, void * value, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, Process_get_Responding, (Process * __this, MethodInfo * method)); DO_APP_FUNC(0x028172B0, ProcessThreadCollection *, Process_get_Threads, (Process * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4F38, Process_get_Threads__MethodInfo); DO_APP_FUNC(0x02817320, int32_t, Process_get_VirtualMemorySize, (Process * __this, MethodInfo * method)); DO_APP_FUNC(0x02817340, int32_t, Process_get_WorkingSet, (Process * __this, MethodInfo * method)); DO_APP_FUNC(0x02816D80, int64_t, Process_get_PrivateMemorySize64, (Process * __this, MethodInfo * method)); @@ -28217,20 +31877,27 @@ DO_APP_FUNC(0x02817340, int64_t, Process_get_WorkingSet64, (Process * __this, Me DO_APP_FUNC(0x02817360, bool, Process_CloseMainWindow, (Process * __this, MethodInfo * method)); DO_APP_FUNC(0x02817420, void *, Process_GetProcess_internal, (int32_t pid, MethodInfo * method)); DO_APP_FUNC(0x028174F0, Process *, Process_GetProcessById_1, (int32_t processId, String * machineName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4EB0, Process_GetProcessById_1__MethodInfo); DO_APP_FUNC(0x02817860, Process__Array *, Process_GetProcessesByName_1, (String * processName, String * machineName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4ED0, Process_GetProcessesByName_1__MethodInfo); DO_APP_FUNC(0x003CB690, Int32__Array *, Process_GetProcesses_internal, (MethodInfo * method)); DO_APP_FUNC(0x02817B40, Process__Array *, Process_GetProcesses_1, (String * machineName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4F08, Process_GetProcesses_1__MethodInfo); DO_APP_FUNC(0x02817CE0, bool, Process_IsLocalMachine, (String * machineName, MethodInfo * method)); -DO_APP_FUNC(0x0041AF00, bool, Process_ShellExecuteEx_internal, (ProcessStartInfo * startInfo, Process_ProcInfo procInfo, MethodInfo * method)); -DO_APP_FUNC(0x0041AF00, bool, Process_CreateProcess_internal, (ProcessStartInfo * startInfo, void * stdin_1, void * stdout_1, void * stderr_1, Process_ProcInfo procInfo, MethodInfo * method)); +DO_APP_FUNC(0x0041AF00, bool, Process_ShellExecuteEx_internal, (ProcessStartInfo * startInfo, Process_ProcInfo * procInfo, MethodInfo * method)); +DO_APP_FUNC(0x0041AF00, bool, Process_CreateProcess_internal, (ProcessStartInfo * startInfo, void * stdin_1, void * stdout_1, void * stderr_1, Process_ProcInfo * procInfo, MethodInfo * method)); DO_APP_FUNC(0x02817D80, bool, Process_StartWithShellExecuteEx, (Process * __this, ProcessStartInfo * startInfo, MethodInfo * method)); -DO_APP_FUNC(0x02818220, void, Process_CreatePipe, (void * read, void * write, bool writeDirection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4F10, Process_StartWithShellExecuteEx__MethodInfo); +DO_APP_FUNC(0x02818220, void, Process_CreatePipe, (void * * read, void * * write, bool writeDirection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4EF8, Process_CreatePipe__MethodInfo); DO_APP_FUNC(0x01B603B0, bool, Process_get_IsWindows, (MethodInfo * method)); DO_APP_FUNC(0x02818680, bool, Process_StartWithCreateProcess, (Process * __this, ProcessStartInfo * startInfo, MethodInfo * method)); -DO_APP_FUNC(0x02819AC0, void, Process_FillUserInfo, (ProcessStartInfo * startInfo, Process_ProcInfo procInfo, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4E48, Process_StartWithCreateProcess__MethodInfo); +DO_APP_FUNC(0x02819AC0, void, Process_FillUserInfo, (ProcessStartInfo * startInfo, Process_ProcInfo * procInfo, MethodInfo * method)); DO_APP_FUNC(0x02819DF0, void, Process_RaiseOnExited, (Process * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ProcessInfo__ctor, (ProcessInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x02819F60, Byte__Array *, EnvironmentBlock_ToByteArray, (StringDictionary * sd, bool unicode, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4E40, EnvironmentBlock_ToByteArray__MethodInfo); DO_APP_FUNC(0x0281A4B0, int32_t, OrdinalCaseInsensitiveComparer_Compare, (OrdinalCaseInsensitiveComparer * __this, Object * a, Object * b, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, OrdinalCaseInsensitiveComparer__ctor, (OrdinalCaseInsensitiveComparer * __this, MethodInfo * method)); DO_APP_FUNC(0x0281A6E0, void, OrdinalCaseInsensitiveComparer__cctor, (MethodInfo * method)); @@ -28291,6 +31958,7 @@ DO_APP_FUNC(0x003C7320, void *, ProcessStartInfo_get_ErrorDialogParentHandle, (P DO_APP_FUNC(0x00421730, void, ProcessStartInfo_set_ErrorDialogParentHandle, (ProcessStartInfo * __this, void * value, MethodInfo * method)); DO_APP_FUNC(0x003C7300, ProcessWindowStyle__Enum, ProcessStartInfo_get_WindowStyle, (ProcessStartInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x0281B5A0, void, ProcessStartInfo_set_WindowStyle, (ProcessStartInfo * __this, ProcessWindowStyle__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4E18, ProcessStartInfo_set_WindowStyle__MethodInfo); DO_APP_FUNC(0x0281B7C0, bool, ProcessStartInfo_get_HaveEnvVars, (ProcessStartInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x003C1700, Encoding *, ProcessStartInfo_get_StandardInputEncoding, (ProcessStartInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x003C1710, void, ProcessStartInfo_set_StandardInputEncoding, (ProcessStartInfo * __this, Encoding * value, MethodInfo * method)); @@ -28306,51 +31974,93 @@ DO_APP_FUNC(0x0281A950, bool, ProcessThreadCollection_Contains, (ProcessThreadCo DO_APP_FUNC(0x0281BA20, void, ProcessThreadCollection_Remove, (ProcessThreadCollection * __this, ProcessThread * thread, MethodInfo * method)); DO_APP_FUNC(0x01B1C8B0, void, ProcessThreadCollection_CopyTo, (ProcessThreadCollection * __this, ProcessThread__Array * array, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x0281BA60, int32_t, ProcessThreadCollection_get_Capacity, (ProcessThreadCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4DE0, ProcessThreadCollection_get_Capacity__MethodInfo); DO_APP_FUNC(0x0281BAB0, void, ProcessThreadCollection_set_Capacity, (ProcessThreadCollection * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4DE8, ProcessThreadCollection_set_Capacity__MethodInfo); DO_APP_FUNC(0x0281BB00, void, ProcessThreadCollection_AddRange, (ProcessThreadCollection * __this, IEnumerable_1_System_Diagnostics_ProcessThread_ * collection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4E08, ProcessThreadCollection_AddRange__MethodInfo); DO_APP_FUNC(0x0281BB50, ReadOnlyCollection_1_System_Diagnostics_ProcessThread_ *, ProcessThreadCollection_AsReadOnly, (ProcessThreadCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4E10, ProcessThreadCollection_AsReadOnly__MethodInfo); DO_APP_FUNC(0x0281BBA0, int32_t, ProcessThreadCollection_BinarySearch, (ProcessThreadCollection * __this, int32_t index, int32_t count, ProcessThread * item, IComparer_1_System_Diagnostics_ProcessThread_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4DF8, ProcessThreadCollection_BinarySearch__MethodInfo); DO_APP_FUNC(0x0281BBF0, int32_t, ProcessThreadCollection_BinarySearch_1, (ProcessThreadCollection * __this, ProcessThread * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4E00, ProcessThreadCollection_BinarySearch_1__MethodInfo); DO_APP_FUNC(0x0281BC40, int32_t, ProcessThreadCollection_BinarySearch_2, (ProcessThreadCollection * __this, ProcessThread * item, IComparer_1_System_Diagnostics_ProcessThread_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4D28, ProcessThreadCollection_BinarySearch_2__MethodInfo); DO_APP_FUNC(0x0281BC90, void, ProcessThreadCollection_Clear, (ProcessThreadCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4D30, ProcessThreadCollection_Clear__MethodInfo); DO_APP_FUNC(0x0281BCE0, void, ProcessThreadCollection_CopyTo_1, (ProcessThreadCollection * __this, ProcessThread__Array * array, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4D18, ProcessThreadCollection_CopyTo_1__MethodInfo); DO_APP_FUNC(0x0281BD30, void, ProcessThreadCollection_CopyTo_2, (ProcessThreadCollection * __this, int32_t index, ProcessThread__Array * array, int32_t arrayIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4D20, ProcessThreadCollection_CopyTo_2__MethodInfo); DO_APP_FUNC(0x0281BD80, bool, ProcessThreadCollection_Exists, (ProcessThreadCollection * __this, Predicate_1_System_Diagnostics_ProcessThread_ * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4D48, ProcessThreadCollection_Exists__MethodInfo); DO_APP_FUNC(0x0281BDD0, ProcessThread *, ProcessThreadCollection_Find, (ProcessThreadCollection * __this, Predicate_1_System_Diagnostics_ProcessThread_ * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4D50, ProcessThreadCollection_Find__MethodInfo); DO_APP_FUNC(0x0281BE20, List_1_System_Diagnostics_ProcessThread_ *, ProcessThreadCollection_FindAll, (ProcessThreadCollection * __this, Predicate_1_System_Diagnostics_ProcessThread_ * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4D38, ProcessThreadCollection_FindAll__MethodInfo); DO_APP_FUNC(0x0281BE70, int32_t, ProcessThreadCollection_FindIndex, (ProcessThreadCollection * __this, Predicate_1_System_Diagnostics_ProcessThread_ * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4D40, ProcessThreadCollection_FindIndex__MethodInfo); DO_APP_FUNC(0x0281BEC0, int32_t, ProcessThreadCollection_FindIndex_1, (ProcessThreadCollection * __this, int32_t startIndex, Predicate_1_System_Diagnostics_ProcessThread_ * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4CE8, ProcessThreadCollection_FindIndex_1__MethodInfo); DO_APP_FUNC(0x0281BF10, int32_t, ProcessThreadCollection_FindIndex_2, (ProcessThreadCollection * __this, int32_t startIndex, int32_t count, Predicate_1_System_Diagnostics_ProcessThread_ * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4CF0, ProcessThreadCollection_FindIndex_2__MethodInfo); DO_APP_FUNC(0x0281BF60, ProcessThread *, ProcessThreadCollection_FindLast, (ProcessThreadCollection * __this, Predicate_1_System_Diagnostics_ProcessThread_ * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4CD8, ProcessThreadCollection_FindLast__MethodInfo); DO_APP_FUNC(0x0281BFB0, int32_t, ProcessThreadCollection_FindLastIndex, (ProcessThreadCollection * __this, Predicate_1_System_Diagnostics_ProcessThread_ * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4CE0, ProcessThreadCollection_FindLastIndex__MethodInfo); DO_APP_FUNC(0x0281C000, int32_t, ProcessThreadCollection_FindLastIndex_1, (ProcessThreadCollection * __this, int32_t startIndex, Predicate_1_System_Diagnostics_ProcessThread_ * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4D08, ProcessThreadCollection_FindLastIndex_1__MethodInfo); DO_APP_FUNC(0x0281C050, int32_t, ProcessThreadCollection_FindLastIndex_2, (ProcessThreadCollection * __this, int32_t startIndex, int32_t count, Predicate_1_System_Diagnostics_ProcessThread_ * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4D10, ProcessThreadCollection_FindLastIndex_2__MethodInfo); DO_APP_FUNC(0x0281C0A0, void, ProcessThreadCollection_ForEach, (ProcessThreadCollection * __this, Action_1_System_Diagnostics_ProcessThread_ * action, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4CF8, ProcessThreadCollection_ForEach__MethodInfo); DO_APP_FUNC(0x0281C0F0, List_1_System_Diagnostics_ProcessThread_ *, ProcessThreadCollection_GetRange, (ProcessThreadCollection * __this, int32_t index, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4D00, ProcessThreadCollection_GetRange__MethodInfo); DO_APP_FUNC(0x0281C140, int32_t, ProcessThreadCollection_IndexOf_1, (ProcessThreadCollection * __this, ProcessThread * item, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4DA8, ProcessThreadCollection_IndexOf_1__MethodInfo); DO_APP_FUNC(0x0281C190, int32_t, ProcessThreadCollection_IndexOf_2, (ProcessThreadCollection * __this, ProcessThread * item, int32_t index, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4DB0, ProcessThreadCollection_IndexOf_2__MethodInfo); DO_APP_FUNC(0x0281C1E0, void, ProcessThreadCollection_InsertRange, (ProcessThreadCollection * __this, int32_t index, IEnumerable_1_System_Diagnostics_ProcessThread_ * collection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4D98, ProcessThreadCollection_InsertRange__MethodInfo); DO_APP_FUNC(0x0281C230, int32_t, ProcessThreadCollection_LastIndexOf, (ProcessThreadCollection * __this, ProcessThread * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4DA0, ProcessThreadCollection_LastIndexOf__MethodInfo); DO_APP_FUNC(0x0281C280, int32_t, ProcessThreadCollection_LastIndexOf_1, (ProcessThreadCollection * __this, ProcessThread * item, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4DC8, ProcessThreadCollection_LastIndexOf_1__MethodInfo); DO_APP_FUNC(0x0281C2D0, int32_t, ProcessThreadCollection_LastIndexOf_2, (ProcessThreadCollection * __this, ProcessThread * item, int32_t index, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4DD0, ProcessThreadCollection_LastIndexOf_2__MethodInfo); DO_APP_FUNC(0x0281C320, int32_t, ProcessThreadCollection_RemoveAll, (ProcessThreadCollection * __this, Predicate_1_System_Diagnostics_ProcessThread_ * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4DB8, ProcessThreadCollection_RemoveAll__MethodInfo); DO_APP_FUNC(0x0281C370, void, ProcessThreadCollection_RemoveAt, (ProcessThreadCollection * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4DC0, ProcessThreadCollection_RemoveAt__MethodInfo); DO_APP_FUNC(0x0281C3C0, void, ProcessThreadCollection_RemoveRange, (ProcessThreadCollection * __this, int32_t index, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4D68, ProcessThreadCollection_RemoveRange__MethodInfo); DO_APP_FUNC(0x0281C410, void, ProcessThreadCollection_Reverse, (ProcessThreadCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4D70, ProcessThreadCollection_Reverse__MethodInfo); DO_APP_FUNC(0x0281C460, void, ProcessThreadCollection_Reverse_1, (ProcessThreadCollection * __this, int32_t index, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4D58, ProcessThreadCollection_Reverse_1__MethodInfo); DO_APP_FUNC(0x0281C4B0, void, ProcessThreadCollection_Sort, (ProcessThreadCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4D60, ProcessThreadCollection_Sort__MethodInfo); DO_APP_FUNC(0x0281C500, void, ProcessThreadCollection_Sort_1, (ProcessThreadCollection * __this, IComparer_1_System_Diagnostics_ProcessThread_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4D88, ProcessThreadCollection_Sort_1__MethodInfo); DO_APP_FUNC(0x0281C550, void, ProcessThreadCollection_Sort_2, (ProcessThreadCollection * __this, int32_t index, int32_t count, IComparer_1_System_Diagnostics_ProcessThread_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4D90, ProcessThreadCollection_Sort_2__MethodInfo); DO_APP_FUNC(0x0281C5A0, void, ProcessThreadCollection_Sort_3, (ProcessThreadCollection * __this, Comparison_1_System_Diagnostics_ProcessThread_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4D78, ProcessThreadCollection_Sort_3__MethodInfo); DO_APP_FUNC(0x0281C5F0, ProcessThread__Array *, ProcessThreadCollection_ToArray, (ProcessThreadCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4D80, ProcessThreadCollection_ToArray__MethodInfo); DO_APP_FUNC(0x0281C640, void, ProcessThreadCollection_TrimExcess, (ProcessThreadCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4CC8, ProcessThreadCollection_TrimExcess__MethodInfo); DO_APP_FUNC(0x0281C690, bool, ProcessThreadCollection_TrueForAll, (ProcessThreadCollection * __this, Predicate_1_System_Diagnostics_ProcessThread_ * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4CD0, ProcessThreadCollection_TrueForAll__MethodInfo); DO_APP_FUNC(0x0281C6E0, void, ProcessWaitHandle__ctor, (ProcessWaitHandle * __this, SafeProcessHandle * processHandle, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4CC0, ProcessWaitHandle__ctor__MethodInfo); DO_APP_FUNC(0x0281C750, void, AssertWrapper_ShowAssert, (String * stackTrace, StackFrame * frame, String * message, String * detailMessage, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AssertWrapper__ctor, (AssertWrapper * __this, MethodInfo * method)); DO_APP_FUNC(0x0281C7E0, void, DataReceivedEventArgs__ctor, (DataReceivedEventArgs * __this, String * data, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, String *, DataReceivedEventArgs_get_Data, (DataReceivedEventArgs * __this, MethodInfo * method)); DO_APP_FUNC(0x0281C880, void, DataReceivedEventArgs__ctor_1, (DataReceivedEventArgs * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4CA0, DataReceivedEventArgs__ctor_1__MethodInfo); DO_APP_FUNC(0x0103E630, void, DataReceivedEventHandler__ctor, (DataReceivedEventHandler * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EC2D0, void, DataReceivedEventHandler_Invoke, (DataReceivedEventHandler * __this, Object * sender, DataReceivedEventArgs * e, MethodInfo * method)); DO_APP_FUNC(0x0042F0F0, IAsyncResult *, DataReceivedEventHandler_BeginInvoke, (DataReceivedEventHandler * __this, Object * sender, DataReceivedEventArgs * e, AsyncCallback * callback, Object * object, MethodInfo * method)); @@ -28403,6 +32113,7 @@ DO_APP_FUNC(0x003C91E0, String *, FileVersionInfo_get_SpecialBuild, (FileVersion DO_APP_FUNC(0x0281DA20, void, FileVersionInfo_GetVersionInfo_icall, (FileVersionInfo * __this, uint16_t * fileName, int32_t fileName_length, MethodInfo * method)); DO_APP_FUNC(0x0281DA30, void, FileVersionInfo_GetVersionInfo_internal, (FileVersionInfo * __this, String * fileName, MethodInfo * method)); DO_APP_FUNC(0x0281DAA0, FileVersionInfo *, FileVersionInfo_GetVersionInfo, (String * fileName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8D48, FileVersionInfo_GetVersionInfo__MethodInfo); DO_APP_FUNC(0x0281DBC0, void, FileVersionInfo_AppendFormat, (StringBuilder * sb, String * format, Object__Array * args, MethodInfo * method)); DO_APP_FUNC(0x0281DCA0, String *, FileVersionInfo_ToString, (FileVersionInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x0281EAB0, void, MonitoringDescriptionAttribute__ctor, (MonitoringDescriptionAttribute * __this, String * description, MethodInfo * method)); @@ -28416,6 +32127,7 @@ DO_APP_FUNC(0x003C7400, int32_t, ProcessModule_get_ModuleMemorySize, (ProcessMod DO_APP_FUNC(0x003C7420, String *, ProcessModule_get_ModuleName, (ProcessModule * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7420, String *, ProcessModule_ToString, (ProcessModule * __this, MethodInfo * method)); DO_APP_FUNC(0x0281ECD0, void, ProcessModule__ctor_1, (ProcessModule * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8D38, ProcessModule__ctor_1__MethodInfo); DO_APP_FUNC(0x0281ED00, void, ProcessThread__ctor, (ProcessThread * __this, MethodInfo * method)); DO_APP_FUNC(0x003CB690, int32_t, ProcessThread_get_BasePriority, (ProcessThread * __this, MethodInfo * method)); DO_APP_FUNC(0x003CB690, int32_t, ProcessThread_get_CurrentPriority, (ProcessThread * __this, MethodInfo * method)); @@ -28439,6 +32151,7 @@ DO_APP_FUNC(0x0281ED60, Stopwatch *, Stopwatch_StartNew, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Stopwatch__ctor, (Stopwatch * __this, MethodInfo * method)); DO_APP_FUNC(0x0281EE00, TimeSpan, Stopwatch_get_Elapsed, (Stopwatch * __this, MethodInfo * method)); DO_APP_FUNC(0x0281EF10, int64_t, Stopwatch_get_ElapsedMilliseconds, (Stopwatch * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8D30, Stopwatch_get_ElapsedMilliseconds__MethodInfo); DO_APP_FUNC(0x0281F060, int64_t, Stopwatch_get_ElapsedTicks, (Stopwatch * __this, MethodInfo * method)); DO_APP_FUNC(0x005F7520, bool, Stopwatch_get_IsRunning, (Stopwatch * __this, MethodInfo * method)); DO_APP_FUNC(0x0281F0D0, void, Stopwatch_Reset, (Stopwatch * __this, MethodInfo * method)); @@ -28477,6 +32190,7 @@ DO_APP_FUNC(0x019CDEC0, void, SemaphoreSecurity_RemoveAuditRuleSpecific, (Semaph DO_APP_FUNC(0x019CDF00, void, SemaphoreSecurity_SetAuditRule, (SemaphoreSecurity * __this, SemaphoreAuditRule * rule, MethodInfo * method)); DO_APP_FUNC(0x0281FC50, void, SemaphoreSecurity_Persist, (SemaphoreSecurity * __this, SafeHandle * handle, MethodInfo * method)); DO_APP_FUNC(0x0281FD80, void, TypeDescriptorPermission__ctor, (TypeDescriptorPermission * __this, PermissionState__Enum state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8C68, TypeDescriptorPermission__ctor__MethodInfo); DO_APP_FUNC(0x0281FE20, void, TypeDescriptorPermission__ctor_1, (TypeDescriptorPermission * __this, TypeDescriptorPermissionFlags__Enum flag, MethodInfo * method)); DO_APP_FUNC(0x0281FE50, void, TypeDescriptorPermission_SetUnrestricted, (TypeDescriptorPermission * __this, bool unrestricted, MethodInfo * method)); DO_APP_FUNC(0x026DE8F0, void, TypeDescriptorPermission_Reset, (TypeDescriptorPermission * __this, MethodInfo * method)); @@ -28484,13 +32198,19 @@ DO_APP_FUNC(0x0281FE20, void, TypeDescriptorPermission_set_Flags, (TypeDescripto DO_APP_FUNC(0x003BCD50, TypeDescriptorPermissionFlags__Enum, TypeDescriptorPermission_get_Flags, (TypeDescriptorPermission * __this, MethodInfo * method)); DO_APP_FUNC(0x0281FE60, bool, TypeDescriptorPermission_IsUnrestricted, (TypeDescriptorPermission * __this, MethodInfo * method)); DO_APP_FUNC(0x0281FE70, IPermission *, TypeDescriptorPermission_Union, (TypeDescriptorPermission * __this, IPermission * target, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8C30, TypeDescriptorPermission_Union__MethodInfo); DO_APP_FUNC(0x02820000, bool, TypeDescriptorPermission_IsSubsetOf, (TypeDescriptorPermission * __this, IPermission * target, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8C48, TypeDescriptorPermission_IsSubsetOf__MethodInfo); DO_APP_FUNC(0x02820160, IPermission *, TypeDescriptorPermission_Intersect, (TypeDescriptorPermission * __this, IPermission * target, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8CA0, TypeDescriptorPermission_Intersect__MethodInfo); DO_APP_FUNC(0x028202E0, IPermission *, TypeDescriptorPermission_Copy, (TypeDescriptorPermission * __this, MethodInfo * method)); DO_APP_FUNC(0x02820350, void, TypeDescriptorPermission_VerifyAccess, (TypeDescriptorPermission * __this, TypeDescriptorPermissionFlags__Enum type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8C98, TypeDescriptorPermission_VerifyAccess__MethodInfo); DO_APP_FUNC(0x02820430, SecurityElement *, TypeDescriptorPermission_ToXml, (TypeDescriptorPermission * __this, MethodInfo * method)); DO_APP_FUNC(0x028206A0, void, TypeDescriptorPermission_FromXml, (TypeDescriptorPermission * __this, SecurityElement * securityElement, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8C70, TypeDescriptorPermission_FromXml__MethodInfo); DO_APP_FUNC(0x02820DA0, void, TypeDescriptorPermission_VerifyFlags, (TypeDescriptorPermissionFlags__Enum flags, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8C90, TypeDescriptorPermission_VerifyFlags__MethodInfo); DO_APP_FUNC(0x02820E80, void, AuthenticationException__ctor, (AuthenticationException * __this, MethodInfo * method)); DO_APP_FUNC(0x019BCFC0, void, AuthenticationException__ctor_1, (AuthenticationException * __this, String * message, MethodInfo * method)); DO_APP_FUNC(0x019E1A10, void, AuthenticationException__ctor_2, (AuthenticationException * __this, String * message, Exception * innerException, MethodInfo * method)); @@ -28500,9 +32220,11 @@ DO_APP_FUNC(0x019BCFC0, void, InvalidCredentialException__ctor_1, (InvalidCreden DO_APP_FUNC(0x019E1A10, void, InvalidCredentialException__ctor_2, (InvalidCredentialException * __this, String * message, Exception * innerException, MethodInfo * method)); DO_APP_FUNC(0x01980BF0, void, InvalidCredentialException__ctor_3, (InvalidCredentialException * __this, SerializationInfo * serializationInfo, StreamingContext streamingContext, MethodInfo * method)); DO_APP_FUNC(0x02820F20, void, ServiceNameCollection__ctor, (ServiceNameCollection * __this, ICollection * items, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8BC8, ServiceNameCollection__ctor__MethodInfo); DO_APP_FUNC(0x028217B0, ServiceNameCollection *, ServiceNameCollection_Merge, (ServiceNameCollection * __this, String * serviceName, MethodInfo * method)); DO_APP_FUNC(0x02821920, ServiceNameCollection *, ServiceNameCollection_Merge_1, (ServiceNameCollection * __this, IEnumerable * serviceNames, MethodInfo * method)); DO_APP_FUNC(0x02821C90, void, ServiceNameCollection_AddIfNew, (ArrayList * newServiceNames, String * serviceName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8BB8, ServiceNameCollection_AddIfNew__MethodInfo); DO_APP_FUNC(0x02821D60, bool, ServiceNameCollection_Contains, (String * searchServiceName, ICollection * serviceNames, MethodInfo * method)); DO_APP_FUNC(0x02821F30, bool, ServiceNameCollection_Contains_1, (ServiceNameCollection * __this, String * searchServiceName, MethodInfo * method)); DO_APP_FUNC(0x02821F70, String *, ServiceNameCollection_NormalizeServiceName, (String * inputServiceName, MethodInfo * method)); @@ -28512,22 +32234,35 @@ DO_APP_FUNC(0x02822610, Byte__Array *, TokenBinding_GetRawTokenBindingId, (Token DO_APP_FUNC(0x003BC2E0, TokenBindingType__Enum, TokenBinding_get_BindingType, (TokenBinding * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCDD0, void, TokenBinding_set_BindingType, (TokenBinding * __this, TokenBindingType__Enum value, MethodInfo * method)); DO_APP_FUNC(0x02822690, void, TokenBinding__ctor_1, (TokenBinding * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8C28, TokenBinding__ctor_1__MethodInfo); DO_APP_FUNC(0x0194C130, void, ChannelBinding__ctor, (ChannelBinding * __this, MethodInfo * method)); DO_APP_FUNC(0x0194CB20, void, ChannelBinding__ctor_1, (ChannelBinding * __this, bool ownsHandle, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ExtendedProtectionPolicy__ctor, (ExtendedProtectionPolicy * __this, PolicyEnforcement__Enum policyEnforcement, MethodInfo * method)); DO_APP_FUNC(0x028226C0, void, ExtendedProtectionPolicy__ctor_1, (ExtendedProtectionPolicy * __this, PolicyEnforcement__Enum policyEnforcement, ChannelBinding * customChannelBinding, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8C18, ExtendedProtectionPolicy__ctor_1__MethodInfo); DO_APP_FUNC(0x02822710, void, ExtendedProtectionPolicy__ctor_2, (ExtendedProtectionPolicy * __this, PolicyEnforcement__Enum policyEnforcement, ProtectionScenario__Enum protectionScenario, ICollection * customServiceNames, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8C20, ExtendedProtectionPolicy__ctor_2__MethodInfo); DO_APP_FUNC(0x02822760, void, ExtendedProtectionPolicy__ctor_3, (ExtendedProtectionPolicy * __this, PolicyEnforcement__Enum policyEnforcement, ProtectionScenario__Enum protectionScenario, ServiceNameCollection * customServiceNames, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8BE8, ExtendedProtectionPolicy__ctor_3__MethodInfo); DO_APP_FUNC(0x028227B0, void, ExtendedProtectionPolicy__ctor_4, (ExtendedProtectionPolicy * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8BF0, ExtendedProtectionPolicy__ctor_4__MethodInfo); DO_APP_FUNC(0x02822800, ChannelBinding *, ExtendedProtectionPolicy_get_CustomChannelBinding, (ExtendedProtectionPolicy * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8BD8, ExtendedProtectionPolicy_get_CustomChannelBinding__MethodInfo); DO_APP_FUNC(0x02822850, ServiceNameCollection *, ExtendedProtectionPolicy_get_CustomServiceNames, (ExtendedProtectionPolicy * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8BE0, ExtendedProtectionPolicy_get_CustomServiceNames__MethodInfo); DO_APP_FUNC(0x028228A0, bool, ExtendedProtectionPolicy_get_OSSupportsExtendedProtection, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8C08, ExtendedProtectionPolicy_get_OSSupportsExtendedProtection__MethodInfo); DO_APP_FUNC(0x028228F0, PolicyEnforcement__Enum, ExtendedProtectionPolicy_get_PolicyEnforcement, (ExtendedProtectionPolicy * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8C10, ExtendedProtectionPolicy_get_PolicyEnforcement__MethodInfo); DO_APP_FUNC(0x02822940, ProtectionScenario__Enum, ExtendedProtectionPolicy_get_ProtectionScenario, (ExtendedProtectionPolicy * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8BF8, ExtendedProtectionPolicy_get_ProtectionScenario__MethodInfo); DO_APP_FUNC(0x01A6F6D0, String *, ExtendedProtectionPolicy_ToString, (ExtendedProtectionPolicy * __this, MethodInfo * method)); DO_APP_FUNC(0x02822990, void, ExtendedProtectionPolicy_System_Runtime_Serialization_ISerializable_GetObjectData, (ExtendedProtectionPolicy * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8C00, ExtendedProtectionPolicy_System_Runtime_Serialization_ISerializable_GetObjectData__MethodInfo); DO_APP_FUNC(0x028229E0, bool, ExtendedProtectionPolicyTypeConverter_CanConvertTo, (ExtendedProtectionPolicyTypeConverter * __this, ITypeDescriptorContext * context, Type * destinationType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8B90, ExtendedProtectionPolicyTypeConverter_CanConvertTo__MethodInfo); DO_APP_FUNC(0x02822A30, Object *, ExtendedProtectionPolicyTypeConverter_ConvertTo, (ExtendedProtectionPolicyTypeConverter * __this, ITypeDescriptorContext * context, CultureInfo * culture, Object * value, Type * destinationType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8B98, ExtendedProtectionPolicyTypeConverter_ConvertTo__MethodInfo); DO_APP_FUNC(0x003AE050, void, ExtendedProtectionPolicyTypeConverter__ctor, (ExtendedProtectionPolicyTypeConverter * __this, MethodInfo * method)); DO_APP_FUNC(0x02822A80, Byte__Array *, DerEncoder_EncodeLength, (int32_t length, MethodInfo * method)); DO_APP_FUNC(0x02822C60, Byte__Array__Array *, DerEncoder_SegmentedEncodeBoolean, (bool value, MethodInfo * method)); @@ -28542,6 +32277,7 @@ DO_APP_FUNC(0x02823A80, Byte__Array__Array *, DerEncoder_SegmentedEncodeNull, (M DO_APP_FUNC(0x02823AE0, Byte__Array *, DerEncoder_EncodeOid, (String * oidValue, MethodInfo * method)); DO_APP_FUNC(0x02823BE0, Byte__Array__Array *, DerEncoder_SegmentedEncodeOid, (Oid * oid, MethodInfo * method)); DO_APP_FUNC(0x02823C40, Byte__Array__Array *, DerEncoder_SegmentedEncodeOid_1, (String * oidValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8B68, DerEncoder_SegmentedEncodeOid_1__MethodInfo); DO_APP_FUNC(0x02824270, Byte__Array__Array *, DerEncoder_SegmentedEncodeUtf8String, (Char__Array * chars, MethodInfo * method)); DO_APP_FUNC(0x028242D0, Byte__Array__Array *, DerEncoder_SegmentedEncodeUtf8String_1, (Char__Array * chars, int32_t offset, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x028244A0, Byte__Array__Array *, DerEncoder_ConstructSegmentedSequence, (Byte__Array__Array__Array * items, MethodInfo * method)); @@ -28555,13 +32291,15 @@ DO_APP_FUNC(0x02825050, Byte__Array__Array *, DerEncoder_SegmentedEncodePrintabl DO_APP_FUNC(0x028250B0, Byte__Array__Array *, DerEncoder_SegmentedEncodePrintableString_1, (Char__Array * chars, int32_t offset, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x028252A0, Byte__Array__Array *, DerEncoder_SegmentedEncodeIA5String, (Char__Array * chars, MethodInfo * method)); DO_APP_FUNC(0x02825300, Byte__Array__Array *, DerEncoder_SegmentedEncodeIA5String_1, (Char__Array * chars, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8B78, DerEncoder_SegmentedEncodeIA5String_1__MethodInfo); DO_APP_FUNC(0x02825560, Byte__Array__Array *, DerEncoder_SegmentedEncodeUtcTime, (DateTime utcTime, MethodInfo * method)); DO_APP_FUNC(0x02825B00, Byte__Array__Array *, DerEncoder_SegmentedEncodeGeneralizedTime, (DateTime utcTime, MethodInfo * method)); DO_APP_FUNC(0x02826120, Byte__Array *, DerEncoder_ConstructSequence, (Byte__Array__Array__Array * items, MethodInfo * method)); DO_APP_FUNC(0x02826170, Byte__Array *, DerEncoder_ConstructSequence_1, (IEnumerable_1_System_Byte__1 * items, MethodInfo * method)); -DO_APP_FUNC(0x02826500, BigInteger_1, DerEncoder_ParseOidRid, (String * oidValue, int32_t startIndex, MethodInfo * method)); +DO_APP_FUNC(0x02826500, BigInteger_1, DerEncoder_ParseOidRid, (String * oidValue, int32_t * startIndex, MethodInfo * method)); DO_APP_FUNC(0x02826840, int32_t, DerEncoder_AtoI, (uint16_t c, MethodInfo * method)); -DO_APP_FUNC(0x028268C0, void, DerEncoder_EncodeRid, (List_1_System_Byte_ * encodedData, BigInteger_1 rid, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8B30, DerEncoder_AtoI__MethodInfo); +DO_APP_FUNC(0x028268C0, void, DerEncoder_EncodeRid, (List_1_System_Byte_ * encodedData, BigInteger_1 * rid, MethodInfo * method)); DO_APP_FUNC(0x02826CC0, bool, DerEncoder_IsPrintableStringCharacter, (uint16_t c, MethodInfo * method)); DO_APP_FUNC(0x02826D70, Byte__Array *, DerEncoder_ConcatenateArrays, (Byte__Array__Array__Array * segments, MethodInfo * method)); DO_APP_FUNC(0x02826DC0, Byte__Array *, DerEncoder_ConcatenateArrays_1, (IEnumerable_1_System_Byte__1 * segments, MethodInfo * method)); @@ -28577,20 +32315,26 @@ DO_APP_FUNC(0x02827610, void, DerSequenceReader__ctor, (DerSequenceReader * __th DO_APP_FUNC(0x02827680, void, DerSequenceReader__ctor_1, (DerSequenceReader * __this, Byte__Array * data, MethodInfo * method)); DO_APP_FUNC(0x028276C0, void, DerSequenceReader__ctor_2, (DerSequenceReader * __this, Byte__Array * data, int32_t offset, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x028276F0, void, DerSequenceReader__ctor_3, (DerSequenceReader * __this, DerSequenceReader_DerTag__Enum tagToEat, Byte__Array * data, int32_t offset, int32_t length, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8B38, DerSequenceReader__ctor_3__MethodInfo); DO_APP_FUNC(0x028277F0, DerSequenceReader *, DerSequenceReader_CreateForPayload, (Byte__Array * payload, MethodInfo * method)); DO_APP_FUNC(0x028278A0, bool, DerSequenceReader_get_HasData, (DerSequenceReader * __this, MethodInfo * method)); DO_APP_FUNC(0x028278B0, uint8_t, DerSequenceReader_PeekTag, (DerSequenceReader * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8AC0, DerSequenceReader_PeekTag__MethodInfo); DO_APP_FUNC(0x028279A0, bool, DerSequenceReader_HasTag, (DerSequenceReader * __this, DerSequenceReader_DerTag__Enum expectedTag, MethodInfo * method)); DO_APP_FUNC(0x028279A0, bool, DerSequenceReader_HasTag_1, (DerSequenceReader * __this, uint8_t expectedTag, MethodInfo * method)); DO_APP_FUNC(0x028279F0, void, DerSequenceReader_SkipValue, (DerSequenceReader * __this, MethodInfo * method)); DO_APP_FUNC(0x02827A40, void, DerSequenceReader_ValidateAndSkipDerValue, (DerSequenceReader * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8AD0, DerSequenceReader_ValidateAndSkipDerValue__MethodInfo); DO_APP_FUNC(0x02827C40, Byte__Array *, DerSequenceReader_ReadNextEncodedValue, (DerSequenceReader * __this, MethodInfo * method)); DO_APP_FUNC(0x02827D00, bool, DerSequenceReader_ReadBoolean, (DerSequenceReader * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8AC8, DerSequenceReader_ReadBoolean__MethodInfo); DO_APP_FUNC(0x02827DD0, int32_t, DerSequenceReader_ReadInteger, (DerSequenceReader * __this, MethodInfo * method)); DO_APP_FUNC(0x02827F60, Byte__Array *, DerSequenceReader_ReadIntegerBytes, (DerSequenceReader * __this, MethodInfo * method)); DO_APP_FUNC(0x02827F90, Byte__Array *, DerSequenceReader_ReadBitString, (DerSequenceReader * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8AB8, DerSequenceReader_ReadBitString__MethodInfo); DO_APP_FUNC(0x02828130, Byte__Array *, DerSequenceReader_ReadOctetString, (DerSequenceReader * __this, MethodInfo * method)); DO_APP_FUNC(0x02828160, String *, DerSequenceReader_ReadOidAsString, (DerSequenceReader * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8AB0, DerSequenceReader_ReadOidAsString__MethodInfo); DO_APP_FUNC(0x028285B0, Oid *, DerSequenceReader_ReadOid, (DerSequenceReader * __this, MethodInfo * method)); DO_APP_FUNC(0x02828630, String *, DerSequenceReader_ReadUtf8String, (DerSequenceReader * __this, MethodInfo * method)); DO_APP_FUNC(0x02828720, DerSequenceReader *, DerSequenceReader_ReadCollectionWithTag, (DerSequenceReader * __this, DerSequenceReader_DerTag__Enum expected, MethodInfo * method)); @@ -28600,31 +32344,43 @@ DO_APP_FUNC(0x02828830, String *, DerSequenceReader_ReadPrintableString, (DerSeq DO_APP_FUNC(0x02828920, String *, DerSequenceReader_ReadIA5String, (DerSequenceReader * __this, MethodInfo * method)); DO_APP_FUNC(0x02828A10, String *, DerSequenceReader_ReadT61String, (DerSequenceReader * __this, MethodInfo * method)); DO_APP_FUNC(0x02828E30, DateTime, DerSequenceReader_ReadX509Date, (DerSequenceReader * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8B00, DerSequenceReader_ReadX509Date__MethodInfo); DO_APP_FUNC(0x02828F10, DateTime, DerSequenceReader_ReadUtcTime, (DerSequenceReader * __this, MethodInfo * method)); DO_APP_FUNC(0x02828F60, DateTime, DerSequenceReader_ReadGeneralizedTime, (DerSequenceReader * __this, MethodInfo * method)); DO_APP_FUNC(0x02828FB0, String *, DerSequenceReader_ReadBMPString, (DerSequenceReader * __this, MethodInfo * method)); DO_APP_FUNC(0x028290A0, String *, DerSequenceReader_TrimTrailingNulls, (String * value, MethodInfo * method)); DO_APP_FUNC(0x02829110, DateTime, DerSequenceReader_ReadTime, (DerSequenceReader * __this, DerSequenceReader_DerTag__Enum timeTag, String * formatString, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8A58, DerSequenceReader_ReadTime__MethodInfo); DO_APP_FUNC(0x028293F0, Byte__Array *, DerSequenceReader_ReadContentAsBytes, (DerSequenceReader * __this, MethodInfo * method)); DO_APP_FUNC(0x028294A0, void, DerSequenceReader_EatTag, (DerSequenceReader * __this, DerSequenceReader_DerTag__Enum expected, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8A50, DerSequenceReader_EatTag__MethodInfo); DO_APP_FUNC(0x02829530, void, DerSequenceReader_CheckTag, (DerSequenceReader_DerTag__Enum expected, Byte__Array * data, int32_t position, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8A60, DerSequenceReader_CheckTag__MethodInfo); DO_APP_FUNC(0x02829680, int32_t, DerSequenceReader_EatLength, (DerSequenceReader * __this, MethodInfo * method)); -DO_APP_FUNC(0x028296C0, int32_t, DerSequenceReader_ScanContentLength, (Byte__Array * data, int32_t offset, int32_t end, int32_t bytesConsumed, MethodInfo * method)); +DO_APP_FUNC(0x028296C0, int32_t, DerSequenceReader_ScanContentLength, (Byte__Array * data, int32_t offset, int32_t end, int32_t * bytesConsumed, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8A68, DerSequenceReader_ScanContentLength__MethodInfo); DO_APP_FUNC(0x028299F0, void, DerSequenceReader_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, DerSequenceReader_c__ctor, (DerSequenceReader_c * __this, MethodInfo * method)); DO_APP_FUNC(0x02829AA0, Encoding *, DerSequenceReader_c__ReadT61String_b__45_0, (DerSequenceReader_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8AF0, DerSequenceReader_c__ReadT61String_b__45_0__MethodInfo); DO_APP_FUNC(0x02829B30, Encoding *, DerSequenceReader_c__ReadT61String_b__45_1, (DerSequenceReader_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8AD8, DerSequenceReader_c__ReadT61String_b__45_1__MethodInfo); DO_APP_FUNC(0x02829B70, DateTimeFormatInfo *, DerSequenceReader_c__ReadTime_b__51_0, (DerSequenceReader_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8A80, DerSequenceReader_c__ReadTime_b__51_0__MethodInfo); DO_APP_FUNC(0x02829C90, void, AsnEncodedDataCollection__ctor, (AsnEncodedDataCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x02829D60, void, AsnEncodedDataCollection__ctor_1, (AsnEncodedDataCollection * __this, AsnEncodedData * asnEncodedData, MethodInfo * method)); DO_APP_FUNC(0x02829E60, int32_t, AsnEncodedDataCollection_Add, (AsnEncodedDataCollection * __this, AsnEncodedData * asnEncodedData, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8A00, AsnEncodedDataCollection_Add__MethodInfo); DO_APP_FUNC(0x02829F30, void, AsnEncodedDataCollection_Remove, (AsnEncodedDataCollection * __this, AsnEncodedData * asnEncodedData, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8A10, AsnEncodedDataCollection_Remove__MethodInfo); DO_APP_FUNC(0x02829FE0, AsnEncodedData *, AsnEncodedDataCollection_get_Item, (AsnEncodedDataCollection * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x0282A060, int32_t, AsnEncodedDataCollection_get_Count, (AsnEncodedDataCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x0282A0B0, AsnEncodedDataEnumerator *, AsnEncodedDataCollection_GetEnumerator, (AsnEncodedDataCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x0282A0B0, IEnumerator *, AsnEncodedDataCollection_System_Collections_IEnumerable_GetEnumerator, (AsnEncodedDataCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x0282A160, void, AsnEncodedDataCollection_System_Collections_ICollection_CopyTo, (AsnEncodedDataCollection * __this, Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF89E8, AsnEncodedDataCollection_System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0282A3F0, void, AsnEncodedDataCollection_CopyTo, (AsnEncodedDataCollection * __this, AsnEncodedData__Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8A38, AsnEncodedDataCollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, AsnEncodedDataCollection_get_IsSynchronized, (AsnEncodedDataCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x00A1B820, Object *, AsnEncodedDataCollection_get_SyncRoot, (AsnEncodedDataCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x01AA7030, void, AsnEncodedDataEnumerator__ctor, (AsnEncodedDataEnumerator * __this, AsnEncodedDataCollection * asnEncodedDatas, MethodInfo * method)); @@ -28633,12 +32389,16 @@ DO_APP_FUNC(0x0282A540, Object *, AsnEncodedDataEnumerator_System_Collections_IE DO_APP_FUNC(0x0282A570, bool, AsnEncodedDataEnumerator_MoveNext, (AsnEncodedDataEnumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x006DDC60, void, AsnEncodedDataEnumerator_Reset, (AsnEncodedDataEnumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x0282A5F0, void, AsnEncodedDataEnumerator__ctor_1, (AsnEncodedDataEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8A48, AsnEncodedDataEnumerator__ctor_1__MethodInfo); DO_APP_FUNC(0x003AE050, void, Oid__ctor, (Oid * __this, MethodInfo * method)); DO_APP_FUNC(0x0282A620, void, Oid__ctor_1, (Oid * __this, String * oid, MethodInfo * method)); DO_APP_FUNC(0x003BCE40, void, Oid__ctor_2, (Oid * __this, String * value, String * friendlyName, MethodInfo * method)); DO_APP_FUNC(0x0282A6F0, void, Oid__ctor_3, (Oid * __this, Oid * oid, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8A20, Oid__ctor_3__MethodInfo); DO_APP_FUNC(0x0282A820, Oid *, Oid_FromFriendlyName, (String * friendlyName, OidGroup__Enum group, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8A18, Oid_FromFriendlyName__MethodInfo); DO_APP_FUNC(0x0282A9A0, Oid *, Oid_FromOidValue, (String * oidValue, OidGroup__Enum group, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8990, Oid_FromOidValue__MethodInfo); DO_APP_FUNC(0x003BB3C0, String *, Oid_get_Value, (Oid * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, Oid_set_Value, (Oid * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x0282AB20, String *, Oid_get_FriendlyName, (Oid * __this, MethodInfo * method)); @@ -28652,7 +32412,9 @@ DO_APP_FUNC(0x0282B160, int32_t, OidCollection_get_Count, (OidCollection * __thi DO_APP_FUNC(0x0282B1B0, OidEnumerator *, OidCollection_GetEnumerator, (OidCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x0282B260, IEnumerator *, OidCollection_System_Collections_IEnumerable_GetEnumerator, (OidCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x0282B270, void, OidCollection_System_Collections_ICollection_CopyTo, (OidCollection * __this, Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF89B0, OidCollection_System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0282B500, void, OidCollection_CopyTo, (OidCollection * __this, Oid__Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8958, OidCollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, OidCollection_get_IsSynchronized, (OidCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x00A1B820, Object *, OidCollection_get_SyncRoot, (OidCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x01AA7030, void, OidEnumerator__ctor, (OidEnumerator * __this, OidCollection * oids, MethodInfo * method)); @@ -28661,16 +32423,20 @@ DO_APP_FUNC(0x0282B650, Object *, OidEnumerator_System_Collections_IEnumerator_g DO_APP_FUNC(0x0282B680, bool, OidEnumerator_MoveNext, (OidEnumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x006DDC60, void, OidEnumerator_Reset, (OidEnumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x0282B700, void, OidEnumerator__ctor_1, (OidEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8950, OidEnumerator__ctor_1__MethodInfo); DO_APP_FUNC(0x003AE050, void, AsnEncodedData__ctor, (AsnEncodedData * __this, MethodInfo * method)); DO_APP_FUNC(0x0282B730, void, AsnEncodedData__ctor_1, (AsnEncodedData * __this, String * oid, Byte__Array * rawData, MethodInfo * method)); DO_APP_FUNC(0x0282B810, void, AsnEncodedData__ctor_2, (AsnEncodedData * __this, Oid * oid, Byte__Array * rawData, MethodInfo * method)); DO_APP_FUNC(0x0282B840, void, AsnEncodedData__ctor_3, (AsnEncodedData * __this, AsnEncodedData * asnEncodedData, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8940, AsnEncodedData__ctor_3__MethodInfo); DO_APP_FUNC(0x0282B940, void, AsnEncodedData__ctor_4, (AsnEncodedData * __this, Byte__Array * rawData, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, Oid *, AsnEncodedData_get_Oid, (AsnEncodedData * __this, MethodInfo * method)); DO_APP_FUNC(0x0282B950, void, AsnEncodedData_set_Oid, (AsnEncodedData * __this, Oid * value, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Byte__Array *, AsnEncodedData_get_RawData, (AsnEncodedData * __this, MethodInfo * method)); DO_APP_FUNC(0x0282BA90, void, AsnEncodedData_set_RawData, (AsnEncodedData * __this, Byte__Array * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8948, AsnEncodedData_set_RawData__MethodInfo); DO_APP_FUNC(0x0282BBE0, void, AsnEncodedData_CopyFrom, (AsnEncodedData * __this, AsnEncodedData * asnEncodedData, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8968, AsnEncodedData_CopyFrom__MethodInfo); DO_APP_FUNC(0x0282BCE0, String *, AsnEncodedData_Format, (AsnEncodedData * __this, bool multiLine, MethodInfo * method)); DO_APP_FUNC(0x0282BD80, String *, AsnEncodedData_ToString, (AsnEncodedData * __this, bool multiLine, MethodInfo * method)); DO_APP_FUNC(0x0282C070, String *, AsnEncodedData_Default, (AsnEncodedData * __this, bool multiLine, MethodInfo * method)); @@ -28688,17 +32454,22 @@ DO_APP_FUNC(0x0282D240, Byte__Array__Array *, GeneralNameEncoder_EncodeUserPrinc DO_APP_FUNC(0x003AE050, void, GeneralNameEncoder__ctor, (GeneralNameEncoder * __this, MethodInfo * method)); DO_APP_FUNC(0x0282D500, void, GeneralNameEncoder__cctor, (MethodInfo * method)); DO_APP_FUNC(0x0282D5D0, void, SubjectAlternativeNameBuilder_AddEmailAddress, (SubjectAlternativeNameBuilder * __this, String * emailAddress, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8878, SubjectAlternativeNameBuilder_AddEmailAddress__MethodInfo); DO_APP_FUNC(0x0282D780, void, SubjectAlternativeNameBuilder_AddDnsName, (SubjectAlternativeNameBuilder * __this, String * dnsName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8898, SubjectAlternativeNameBuilder_AddDnsName__MethodInfo); DO_APP_FUNC(0x0282D870, void, SubjectAlternativeNameBuilder_AddUri, (SubjectAlternativeNameBuilder * __this, Uri * uri, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8858, SubjectAlternativeNameBuilder_AddUri__MethodInfo); DO_APP_FUNC(0x0282DA30, void, SubjectAlternativeNameBuilder_AddIpAddress, (SubjectAlternativeNameBuilder * __this, IPAddress * ipAddress, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8860, SubjectAlternativeNameBuilder_AddIpAddress__MethodInfo); DO_APP_FUNC(0x0282DB00, void, SubjectAlternativeNameBuilder_AddUserPrincipalName, (SubjectAlternativeNameBuilder * __this, String * upn, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF88A8, SubjectAlternativeNameBuilder_AddUserPrincipalName__MethodInfo); DO_APP_FUNC(0x0282DBF0, X509Extension *, SubjectAlternativeNameBuilder_Build, (SubjectAlternativeNameBuilder * __this, bool critical, MethodInfo * method)); DO_APP_FUNC(0x0282DCC0, void, SubjectAlternativeNameBuilder__ctor, (SubjectAlternativeNameBuilder * __this, MethodInfo * method)); DO_APP_FUNC(0x0282DE00, void *, OSX509Certificates_SecCertificateCreateWithData, (void * allocator, void * nsdataRef, MethodInfo * method)); -DO_APP_FUNC(0x0282DE90, int32_t, OSX509Certificates_SecTrustCreateWithCertificates, (void * certOrCertArray, void * policies, void * sectrustref, MethodInfo * method)); +DO_APP_FUNC(0x0282DE90, int32_t, OSX509Certificates_SecTrustCreateWithCertificates, (void * certOrCertArray, void * policies, void * * sectrustref, MethodInfo * method)); DO_APP_FUNC(0x0282DF30, int32_t, OSX509Certificates_SecTrustSetAnchorCertificates, (void * trust, void * anchorCertificates, MethodInfo * method)); DO_APP_FUNC(0x0282DFC0, void *, OSX509Certificates_SecPolicyCreateSSL, (bool server, void * cfStringHostname, MethodInfo * method)); -DO_APP_FUNC(0x0282E050, int32_t, OSX509Certificates_SecTrustEvaluate, (void * secTrustRef, OSX509Certificates_SecTrustResult__Enum secTrustResultTime, MethodInfo * method)); +DO_APP_FUNC(0x0282E050, int32_t, OSX509Certificates_SecTrustEvaluate, (void * secTrustRef, OSX509Certificates_SecTrustResult__Enum * secTrustResultTime, MethodInfo * method)); DO_APP_FUNC(0x0282E0E0, void *, OSX509Certificates_CFStringCreateWithCharacters, (void * allocator, String * str, void * count, MethodInfo * method)); DO_APP_FUNC(0x0282E190, void *, OSX509Certificates_CFDataCreate, (void * allocator, uint8_t * bytes, void * length, MethodInfo * method)); DO_APP_FUNC(0x0282E230, void, OSX509Certificates_CFRetain, (void * handle, MethodInfo * method)); @@ -28710,24 +32481,33 @@ DO_APP_FUNC(0x0282E500, void *, OSX509Certificates_GetCertificate, (X509Certific DO_APP_FUNC(0x0282E790, OSX509Certificates_SecTrustResult__Enum, OSX509Certificates_TrustEvaluateSsl, (X509CertificateCollection * certificates, X509CertificateCollection * anchors, String * host, MethodInfo * method)); DO_APP_FUNC(0x0282E7B0, OSX509Certificates_SecTrustResult__Enum, OSX509Certificates__TrustEvaluateSsl, (X509CertificateCollection * certificates, X509CertificateCollection * anchors, String * hostName, MethodInfo * method)); DO_APP_FUNC(0x0282F180, void, PublicKey__ctor, (PublicKey * __this, Oid * oid, AsnEncodedData * parameters, AsnEncodedData * keyValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8850, PublicKey__ctor__MethodInfo); DO_APP_FUNC(0x0282F3A0, void, PublicKey__ctor_1, (PublicKey * __this, X509Certificate_1 * certificate, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, AsnEncodedData *, PublicKey_get_EncodedKeyValue, (PublicKey * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, AsnEncodedData *, PublicKey_get_EncodedParameters, (PublicKey * __this, MethodInfo * method)); DO_APP_FUNC(0x0282FB10, AsymmetricAlgorithm *, PublicKey_get_Key, (PublicKey * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8830, PublicKey_get_Key__MethodInfo); DO_APP_FUNC(0x003BB3B0, Oid *, PublicKey_get_Oid, (PublicKey * __this, MethodInfo * method)); DO_APP_FUNC(0x0282FD50, Byte__Array *, PublicKey_GetUnsignedBigInteger, (Byte__Array * integer, MethodInfo * method)); DO_APP_FUNC(0x0282FE00, DSA *, PublicKey_DecodeDSA, (Byte__Array * rawPublicKey, Byte__Array * rawParameters, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8778, PublicKey_DecodeDSA__MethodInfo); DO_APP_FUNC(0x028303E0, RSA *, PublicKey_DecodeRSA, (Byte__Array * rawPublicKey, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8720, PublicKey_DecodeRSA__MethodInfo); DO_APP_FUNC(0x02830820, void, PublicKey__cctor, (MethodInfo * method)); DO_APP_FUNC(0x028308D0, void, X500DistinguishedName__ctor, (X500DistinguishedName * __this, AsnEncodedData * encodedDistinguishedName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF87C0, X500DistinguishedName__ctor__MethodInfo); DO_APP_FUNC(0x02830A10, void, X500DistinguishedName__ctor_1, (X500DistinguishedName * __this, Byte__Array * encodedDistinguishedName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF87C8, X500DistinguishedName__ctor_1__MethodInfo); DO_APP_FUNC(0x02830B70, void, X500DistinguishedName__ctor_2, (X500DistinguishedName * __this, String * distinguishedName, MethodInfo * method)); DO_APP_FUNC(0x02830B80, void, X500DistinguishedName__ctor_3, (X500DistinguishedName * __this, String * distinguishedName, X500DistinguishedNameFlags__Enum flag, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8788, X500DistinguishedName__ctor_3__MethodInfo); DO_APP_FUNC(0x02830EE0, void, X500DistinguishedName__ctor_4, (X500DistinguishedName * __this, X500DistinguishedName * distinguishedName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF87A8, X500DistinguishedName__ctor_4__MethodInfo); DO_APP_FUNC(0x02831010, void, X500DistinguishedName__ctor_5, (X500DistinguishedName * __this, Byte__Array * encoded, Byte__Array * canonEncoding, String * name, MethodInfo * method)); DO_APP_FUNC(0x003BB3B0, Byte__Array *, X500DistinguishedName_get_CanonicalEncoding, (X500DistinguishedName * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, String *, X500DistinguishedName_get_Name, (X500DistinguishedName * __this, MethodInfo * method)); DO_APP_FUNC(0x02831140, String *, X500DistinguishedName_Decode, (X500DistinguishedName * __this, X500DistinguishedNameFlags__Enum flag, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF86A0, X500DistinguishedName_Decode__MethodInfo); DO_APP_FUNC(0x02831320, String *, X500DistinguishedName_Format, (X500DistinguishedName * __this, bool multiLine, MethodInfo * method)); DO_APP_FUNC(0x02831390, String *, X500DistinguishedName_GetSeparator, (X500DistinguishedNameFlags__Enum flag, MethodInfo * method)); DO_APP_FUNC(0x02831400, void, X500DistinguishedName_DecodeRawData, (X500DistinguishedName * __this, MethodInfo * method)); @@ -28736,10 +32516,15 @@ DO_APP_FUNC(0x028317F0, bool, X500DistinguishedName_AreEqual, (X500Distinguished DO_APP_FUNC(0x02831A70, void, X509BasicConstraintsExtension__ctor, (X509BasicConstraintsExtension * __this, MethodInfo * method)); DO_APP_FUNC(0x02831B60, void, X509BasicConstraintsExtension__ctor_1, (X509BasicConstraintsExtension * __this, AsnEncodedData * encodedBasicConstraints, bool critical, MethodInfo * method)); DO_APP_FUNC(0x02831CE0, void, X509BasicConstraintsExtension__ctor_2, (X509BasicConstraintsExtension * __this, bool certificateAuthority, bool hasPathLengthConstraint, int32_t pathLengthConstraint, bool critical, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF86E0, X509BasicConstraintsExtension__ctor_2__MethodInfo); DO_APP_FUNC(0x02831E70, bool, X509BasicConstraintsExtension_get_CertificateAuthority, (X509BasicConstraintsExtension * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8708, X509BasicConstraintsExtension_get_CertificateAuthority__MethodInfo); DO_APP_FUNC(0x02831EF0, bool, X509BasicConstraintsExtension_get_HasPathLengthConstraint, (X509BasicConstraintsExtension * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF86E8, X509BasicConstraintsExtension_get_HasPathLengthConstraint__MethodInfo); DO_APP_FUNC(0x02831F70, int32_t, X509BasicConstraintsExtension_get_PathLengthConstraint, (X509BasicConstraintsExtension * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF86F0, X509BasicConstraintsExtension_get_PathLengthConstraint__MethodInfo); DO_APP_FUNC(0x02831FF0, void, X509BasicConstraintsExtension_CopyFrom, (X509BasicConstraintsExtension * __this, AsnEncodedData * asnEncodedData, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF86B8, X509BasicConstraintsExtension_CopyFrom__MethodInfo); DO_APP_FUNC(0x02832210, AsnDecodeStatus__Enum, X509BasicConstraintsExtension_Decode, (X509BasicConstraintsExtension * __this, Byte__Array * extension, MethodInfo * method)); DO_APP_FUNC(0x02832380, Byte__Array *, X509BasicConstraintsExtension_Encode, (X509BasicConstraintsExtension * __this, MethodInfo * method)); DO_APP_FUNC(0x028325F0, String *, X509BasicConstraintsExtension_ToString, (X509BasicConstraintsExtension * __this, bool multiLine, MethodInfo * method)); @@ -28766,7 +32551,9 @@ DO_APP_FUNC(0x02833310, String *, X509Certificate2_get_FriendlyName, (X509Certif DO_APP_FUNC(0x02833390, void, X509Certificate2_set_FriendlyName, (X509Certificate2 * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x02833420, bool, X509Certificate2_get_HasPrivateKey, (X509Certificate2 * __this, MethodInfo * method)); DO_APP_FUNC(0x028334A0, AsymmetricAlgorithm *, X509Certificate2_get_PrivateKey, (X509Certificate2 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8690, X509Certificate2_get_PrivateKey__MethodInfo); DO_APP_FUNC(0x028336D0, void, X509Certificate2_set_PrivateKey, (X509Certificate2 * __this, AsymmetricAlgorithm * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8680, X509Certificate2_set_PrivateKey__MethodInfo); DO_APP_FUNC(0x02833720, X500DistinguishedName *, X509Certificate2_get_IssuerName, (X509Certificate2 * __this, MethodInfo * method)); DO_APP_FUNC(0x02833830, DateTime, X509Certificate2_get_NotAfter, (X509Certificate2 * __this, MethodInfo * method)); DO_APP_FUNC(0x02833840, DateTime, X509Certificate2_get_NotBefore, (X509Certificate2 * __this, MethodInfo * method)); @@ -28778,7 +32565,9 @@ DO_APP_FUNC(0x02833E60, X500DistinguishedName *, X509Certificate2_get_SubjectNam DO_APP_FUNC(0x02833F60, String *, X509Certificate2_get_Thumbprint, (X509Certificate2 * __this, MethodInfo * method)); DO_APP_FUNC(0x02833FA0, int32_t, X509Certificate2_get_Version, (X509Certificate2 * __this, MethodInfo * method)); DO_APP_FUNC(0x02834040, X509ContentType__Enum, X509Certificate2_GetCertContentType, (Byte__Array * rawData, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8698, X509Certificate2_GetCertContentType__MethodInfo); DO_APP_FUNC(0x028340F0, X509ContentType__Enum, X509Certificate2_GetCertContentType_1, (String * fileName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8650, X509Certificate2_GetCertContentType_1__MethodInfo); DO_APP_FUNC(0x02834260, String *, X509Certificate2_GetNameInfo, (X509Certificate2 * __this, X509NameType__Enum nameType, bool forIssuer, MethodInfo * method)); DO_APP_FUNC(0x028342B0, String *, X509Certificate2_ToString, (X509Certificate2 * __this, MethodInfo * method)); DO_APP_FUNC(0x028342C0, String *, X509Certificate2_ToString_1, (X509Certificate2 * __this, bool verbose, MethodInfo * method)); @@ -28796,24 +32585,35 @@ DO_APP_FUNC(0x02835A20, void, X509Certificate2Collection__ctor_1, (X509Certifica DO_APP_FUNC(0x02835AC0, void, X509Certificate2Collection__ctor_2, (X509Certificate2Collection * __this, X509Certificate2 * certificate, MethodInfo * method)); DO_APP_FUNC(0x02835B60, void, X509Certificate2Collection__ctor_3, (X509Certificate2Collection * __this, X509Certificate2__Array * certificates, MethodInfo * method)); DO_APP_FUNC(0x02835C30, X509Certificate2 *, X509Certificate2Collection_get_Item, (X509Certificate2Collection * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF85B8, X509Certificate2Collection_get_Item__MethodInfo); DO_APP_FUNC(0x0276E800, void, X509Certificate2Collection_set_Item, (X509Certificate2Collection * __this, int32_t index, X509Certificate2 * value, MethodInfo * method)); DO_APP_FUNC(0x02835DB0, int32_t, X509Certificate2Collection_Add, (X509Certificate2Collection * __this, X509Certificate2 * certificate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF85A8, X509Certificate2Collection_Add__MethodInfo); DO_APP_FUNC(0x02835E40, void, X509Certificate2Collection_AddRange, (X509Certificate2Collection * __this, X509Certificate2__Array * certificates, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF85D8, X509Certificate2Collection_AddRange__MethodInfo); DO_APP_FUNC(0x02835F00, void, X509Certificate2Collection_AddRange_1, (X509Certificate2Collection * __this, X509Certificate2Collection * certificates, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF85E0, X509Certificate2Collection_AddRange_1__MethodInfo); DO_APP_FUNC(0x02835F90, bool, X509Certificate2Collection_Contains, (X509Certificate2Collection * __this, X509Certificate2 * certificate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF84E8, X509Certificate2Collection_Contains__MethodInfo); DO_APP_FUNC(0x028361F0, Byte__Array *, X509Certificate2Collection_Export, (X509Certificate2Collection * __this, X509ContentType__Enum contentType, MethodInfo * method)); DO_APP_FUNC(0x02836380, Byte__Array *, X509Certificate2Collection_Export_1, (X509Certificate2Collection * __this, X509ContentType__Enum contentType, String * password, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF84D8, X509Certificate2Collection_Export_1__MethodInfo); DO_APP_FUNC(0x02836520, String *, X509Certificate2Collection_GetKeyIdentifier, (X509Certificate2Collection * __this, X509Certificate2 * x, MethodInfo * method)); DO_APP_FUNC(0x02836600, X509Certificate2Collection *, X509Certificate2Collection_Find, (X509Certificate2Collection * __this, X509FindType__Enum findType, Object * findValue, bool validOnly, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF84A0, X509Certificate2Collection_Find__MethodInfo); DO_APP_FUNC(0x02837A90, X509Certificate2Enumerator *, X509Certificate2Collection_GetEnumerator, (X509Certificate2Collection * __this, MethodInfo * method)); DO_APP_FUNC(0x02837B80, void, X509Certificate2Collection_Import, (X509Certificate2Collection * __this, Byte__Array * rawData, MethodInfo * method)); DO_APP_FUNC(0x02837C10, void, X509Certificate2Collection_Import_1, (X509Certificate2Collection * __this, Byte__Array * rawData, String * password, X509KeyStorageFlags__Enum keyStorageFlags, MethodInfo * method)); DO_APP_FUNC(0x02837CD0, void, X509Certificate2Collection_Import_2, (X509Certificate2Collection * __this, String * fileName, MethodInfo * method)); DO_APP_FUNC(0x02837D70, void, X509Certificate2Collection_Import_3, (X509Certificate2Collection * __this, String * fileName, String * password, X509KeyStorageFlags__Enum keyStorageFlags, MethodInfo * method)); DO_APP_FUNC(0x02837E30, void, X509Certificate2Collection_Insert, (X509Certificate2Collection * __this, int32_t index, X509Certificate2 * certificate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8518, X509Certificate2Collection_Insert__MethodInfo); DO_APP_FUNC(0x02837FB0, void, X509Certificate2Collection_Remove, (X509Certificate2Collection * __this, X509Certificate2 * certificate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8470, X509Certificate2Collection_Remove__MethodInfo); DO_APP_FUNC(0x02838140, void, X509Certificate2Collection_RemoveRange, (X509Certificate2Collection * __this, X509Certificate2__Array * certificates, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8480, X509Certificate2Collection_RemoveRange__MethodInfo); DO_APP_FUNC(0x028381F0, void, X509Certificate2Collection_RemoveRange_1, (X509Certificate2Collection * __this, X509Certificate2Collection * certificates, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8468, X509Certificate2Collection_RemoveRange_1__MethodInfo); DO_APP_FUNC(0x028382D0, void, X509Certificate2Collection__cctor, (MethodInfo * method)); DO_APP_FUNC(0x028383F0, void, X509Certificate2Enumerator__ctor, (X509Certificate2Enumerator * __this, X509Certificate2Collection * collection, MethodInfo * method)); DO_APP_FUNC(0x028384A0, X509Certificate2 *, X509Certificate2Enumerator_get_Current, (X509Certificate2Enumerator * __this, MethodInfo * method)); @@ -28823,6 +32623,7 @@ DO_APP_FUNC(0x028385E0, Object *, X509Certificate2Enumerator_System_Collections_ DO_APP_FUNC(0x02838630, bool, X509Certificate2Enumerator_System_Collections_IEnumerator_MoveNext, (X509Certificate2Enumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x02838680, void, X509Certificate2Enumerator_System_Collections_IEnumerator_Reset, (X509Certificate2Enumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x028386D0, void, X509Certificate2Enumerator__ctor_1, (X509Certificate2Enumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8490, X509Certificate2Enumerator__ctor_1__MethodInfo); DO_APP_FUNC(0x02838700, X509CertificateImpl *, X509Certificate2Impl_CopyWithPrivateKey, (X509Certificate2Impl * __this, RSA * privateKey, MethodInfo * method)); DO_APP_FUNC(0x028387B0, X509Certificate *, X509Certificate2Impl_CreateCertificate, (X509Certificate2Impl * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, X509Certificate2Impl__ctor, (X509Certificate2Impl * __this, MethodInfo * method)); @@ -28832,23 +32633,30 @@ DO_APP_FUNC(0x02838870, void *, X509Certificate2ImplMono_GetNativeAppleCertifica DO_APP_FUNC(0x00B06290, void, X509Certificate2ImplMono__ctor, (X509Certificate2ImplMono * __this, X509Certificate_1 * cert, MethodInfo * method)); DO_APP_FUNC(0x028388B0, void, X509Certificate2ImplMono__ctor_1, (X509Certificate2ImplMono * __this, X509Certificate2ImplMono * other, MethodInfo * method)); DO_APP_FUNC(0x028389B0, void, X509Certificate2ImplMono__ctor_2, (X509Certificate2ImplMono * __this, Byte__Array * rawData, SafePasswordHandle * password, X509KeyStorageFlags__Enum keyStorageFlags, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8400, X509Certificate2ImplMono__ctor_2__MethodInfo); DO_APP_FUNC(0x02838C50, X509CertificateImpl *, X509Certificate2ImplMono_Clone, (X509Certificate2ImplMono * __this, MethodInfo * method)); DO_APP_FUNC(0x02838DD0, X509Certificate_1 *, X509Certificate2ImplMono_get_Cert, (X509Certificate2ImplMono * __this, MethodInfo * method)); DO_APP_FUNC(0x02838E20, Byte__Array *, X509Certificate2ImplMono_GetRawCertData, (X509Certificate2ImplMono * __this, MethodInfo * method)); -DO_APP_FUNC(0x02838ED0, bool, X509Certificate2ImplMono_Equals, (X509Certificate2ImplMono * __this, X509CertificateImpl * other, bool result, MethodInfo * method)); +DO_APP_FUNC(0x02838ED0, bool, X509Certificate2ImplMono_Equals, (X509Certificate2ImplMono * __this, X509CertificateImpl * other, bool * result, MethodInfo * method)); DO_APP_FUNC(0x02838EE0, void, X509Certificate2ImplMono__ctor_3, (X509Certificate2ImplMono * __this, MethodInfo * method)); DO_APP_FUNC(0x02838F40, bool, X509Certificate2ImplMono_get_HasPrivateKey, (X509Certificate2ImplMono * __this, MethodInfo * method)); DO_APP_FUNC(0x02838F70, AsymmetricAlgorithm *, X509Certificate2ImplMono_get_PrivateKey, (X509Certificate2ImplMono * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8408, X509Certificate2ImplMono_get_PrivateKey__MethodInfo); DO_APP_FUNC(0x02839400, void, X509Certificate2ImplMono_set_PrivateKey, (X509Certificate2ImplMono * __this, AsymmetricAlgorithm * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF83F0, X509Certificate2ImplMono_set_PrivateKey__MethodInfo); DO_APP_FUNC(0x028396D0, RSA *, X509Certificate2ImplMono_GetRSAPrivateKey, (X509Certificate2ImplMono * __this, MethodInfo * method)); DO_APP_FUNC(0x02839770, DSA *, X509Certificate2ImplMono_GetDSAPrivateKey, (X509Certificate2ImplMono * __this, MethodInfo * method)); DO_APP_FUNC(0x02839810, PublicKey *, X509Certificate2ImplMono_get_PublicKey, (X509Certificate2ImplMono * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF83F8, X509Certificate2ImplMono_get_PublicKey__MethodInfo); DO_APP_FUNC(0x028399E0, X509Certificate_1 *, X509Certificate2ImplMono_ImportPkcs12, (X509Certificate2ImplMono * __this, Byte__Array * rawData, SafePasswordHandle * password, MethodInfo * method)); DO_APP_FUNC(0x02839A80, X509Certificate_1 *, X509Certificate2ImplMono_ImportPkcs12_1, (X509Certificate2ImplMono * __this, Byte__Array * rawData, String * password, MethodInfo * method)); DO_APP_FUNC(0x0283A310, void, X509Certificate2ImplMono_Reset, (X509Certificate2ImplMono * __this, MethodInfo * method)); DO_APP_FUNC(0x0283A4D0, bool, X509Certificate2ImplMono_Verify, (X509Certificate2ImplMono * __this, X509Certificate2 * thisCertificate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8450, X509Certificate2ImplMono_Verify__MethodInfo); DO_APP_FUNC(0x0283A5D0, X509ContentType__Enum, X509Certificate2ImplMono_GetCertContentType, (Byte__Array * rawData, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8448, X509Certificate2ImplMono_GetCertContentType__MethodInfo); DO_APP_FUNC(0x0283A940, X509ContentType__Enum, X509Certificate2ImplMono_GetCertContentType_1, (String * fileName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8410, X509Certificate2ImplMono_GetCertContentType_1__MethodInfo); DO_APP_FUNC(0x005A9990, X509CertificateImplCollection *, X509Certificate2ImplMono_get_IntermediateCertificates, (X509Certificate2ImplMono * __this, MethodInfo * method)); DO_APP_FUNC(0x006C5130, X509Certificate_1 *, X509Certificate2ImplMono_get_MonoCertificate, (X509Certificate2ImplMono * __this, MethodInfo * method)); DO_APP_FUNC(0x00A1B820, X509Certificate2Impl *, X509Certificate2ImplMono_get_FallbackImpl, (X509Certificate2ImplMono * __this, MethodInfo * method)); @@ -28856,6 +32664,7 @@ DO_APP_FUNC(0x0283AA50, void, X509Certificate2ImplMono__cctor, (MethodInfo * met DO_APP_FUNC(0x0283ABD0, void, X509Certificate2ImplUnix_EnsureCertData, (X509Certificate2ImplUnix * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, X509Certificate2ImplUnix_get_Archived, (X509Certificate2ImplUnix * __this, MethodInfo * method)); DO_APP_FUNC(0x0283AD60, void, X509Certificate2ImplUnix_set_Archived, (X509Certificate2ImplUnix * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8420, X509Certificate2ImplUnix_set_Archived__MethodInfo); DO_APP_FUNC(0x0283ADE0, String *, X509Certificate2ImplUnix_get_KeyAlgorithm, (X509Certificate2ImplUnix * __this, MethodInfo * method)); DO_APP_FUNC(0x0283AE00, Byte__Array *, X509Certificate2ImplUnix_get_KeyAlgorithmParameters, (X509Certificate2ImplUnix * __this, MethodInfo * method)); DO_APP_FUNC(0x0283AE20, Byte__Array *, X509Certificate2ImplUnix_get_PublicKeyValue, (X509Certificate2ImplUnix * __this, MethodInfo * method)); @@ -28863,6 +32672,7 @@ DO_APP_FUNC(0x0283AE40, Byte__Array *, X509Certificate2ImplUnix_get_SerialNumber DO_APP_FUNC(0x0283AE60, String *, X509Certificate2ImplUnix_get_SignatureAlgorithm, (X509Certificate2ImplUnix * __this, MethodInfo * method)); DO_APP_FUNC(0x0283AE80, String *, X509Certificate2ImplUnix_get_FriendlyName, (X509Certificate2ImplUnix * __this, MethodInfo * method)); DO_APP_FUNC(0x0283AEC0, void, X509Certificate2ImplUnix_set_FriendlyName, (X509Certificate2ImplUnix * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF83B8, X509Certificate2ImplUnix_set_FriendlyName__MethodInfo); DO_APP_FUNC(0x0283AF40, int32_t, X509Certificate2ImplUnix_get_Version, (X509Certificate2ImplUnix * __this, MethodInfo * method)); DO_APP_FUNC(0x0283AF60, X500DistinguishedName *, X509Certificate2ImplUnix_get_SubjectName, (X509Certificate2ImplUnix * __this, MethodInfo * method)); DO_APP_FUNC(0x0283AF80, X500DistinguishedName *, X509Certificate2ImplUnix_get_IssuerName, (X509Certificate2ImplUnix * __this, MethodInfo * method)); @@ -28879,6 +32689,7 @@ DO_APP_FUNC(0x0283B390, DateTime, X509Certificate2ImplUnix_get_NotBefore, (X509C DO_APP_FUNC(0x0283B430, void, X509Certificate2ImplUnix_AppendPrivateKeyInfo, (X509Certificate2ImplUnix * __this, StringBuilder * sb, MethodInfo * method)); DO_APP_FUNC(0x018E1310, void, X509Certificate2ImplUnix_Reset, (X509Certificate2ImplUnix * __this, MethodInfo * method)); DO_APP_FUNC(0x0283B4F0, Byte__Array *, X509Certificate2ImplUnix_Export, (X509Certificate2ImplUnix * __this, X509ContentType__Enum contentType, SafePasswordHandle * password, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF83B0, X509Certificate2ImplUnix_Export__MethodInfo); DO_APP_FUNC(0x0283B6D0, Byte__Array *, X509Certificate2ImplUnix_ExportPkcs12, (X509Certificate2ImplUnix * __this, SafePasswordHandle * password, MethodInfo * method)); DO_APP_FUNC(0x0283B760, Byte__Array *, X509Certificate2ImplUnix_ExportPkcs12_1, (X509Certificate2ImplUnix * __this, String * password, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, X509Certificate2ImplUnix__ctor, (X509Certificate2ImplUnix * __this, MethodInfo * method)); @@ -28888,8 +32699,11 @@ DO_APP_FUNC(0x0283BCC0, void, X509CertificateCollection__ctor_2, (X509Certificat DO_APP_FUNC(0x0283BCF0, X509Certificate *, X509CertificateCollection_get_Item, (X509CertificateCollection * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x0276E800, void, X509CertificateCollection_set_Item, (X509CertificateCollection * __this, int32_t index, X509Certificate * value, MethodInfo * method)); DO_APP_FUNC(0x0283BD90, int32_t, X509CertificateCollection_Add, (X509CertificateCollection * __this, X509Certificate * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF83D8, X509CertificateCollection_Add__MethodInfo); DO_APP_FUNC(0x0283BE20, void, X509CertificateCollection_AddRange, (X509CertificateCollection * __this, X509Certificate__Array * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF83E0, X509CertificateCollection_AddRange__MethodInfo); DO_APP_FUNC(0x0283BEE0, void, X509CertificateCollection_AddRange_1, (X509CertificateCollection * __this, X509CertificateCollection * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF83E8, X509CertificateCollection_AddRange_1__MethodInfo); DO_APP_FUNC(0x0283BFC0, bool, X509CertificateCollection_Contains, (X509CertificateCollection * __this, X509Certificate * value, MethodInfo * method)); DO_APP_FUNC(0x01B1A460, void, X509CertificateCollection_CopyTo, (X509CertificateCollection * __this, X509Certificate__Array * array, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x0283C150, X509CertificateCollection_X509CertificateEnumerator *, X509CertificateCollection_GetEnumerator, (X509CertificateCollection * __this, MethodInfo * method)); @@ -28897,6 +32711,7 @@ DO_APP_FUNC(0x00A890A0, int32_t, X509CertificateCollection_GetHashCode, (X509Cer DO_APP_FUNC(0x01B1A9D0, int32_t, X509CertificateCollection_IndexOf, (X509CertificateCollection * __this, X509Certificate * value, MethodInfo * method)); DO_APP_FUNC(0x0276EA50, void, X509CertificateCollection_Insert, (X509CertificateCollection * __this, int32_t index, X509Certificate * value, MethodInfo * method)); DO_APP_FUNC(0x0283C240, void, X509CertificateCollection_Remove, (X509CertificateCollection * __this, X509Certificate * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF83C0, X509CertificateCollection_Remove__MethodInfo); DO_APP_FUNC(0x018F0E30, bool, X509CertificateCollection_Compare, (X509CertificateCollection * __this, Byte__Array * array1, Byte__Array * array2, MethodInfo * method)); DO_APP_FUNC(0x0283C370, void, X509CertificateCollection_X509CertificateEnumerator__ctor, (X509CertificateCollection_X509CertificateEnumerator * __this, X509CertificateCollection * mappings, MethodInfo * method)); DO_APP_FUNC(0x0283C420, X509Certificate *, X509CertificateCollection_X509CertificateEnumerator_get_Current, (X509CertificateCollection_X509CertificateEnumerator * __this, MethodInfo * method)); @@ -28921,12 +32736,14 @@ DO_APP_FUNC(0x0283CE80, void, X509Chain__ctor, (X509Chain * __this, MethodInfo * DO_APP_FUNC(0x0283CE90, void, X509Chain__ctor_1, (X509Chain * __this, bool useMachineContext, MethodInfo * method)); DO_APP_FUNC(0x0283CF50, void, X509Chain__ctor_2, (X509Chain * __this, X509ChainImpl * impl, MethodInfo * method)); DO_APP_FUNC(0x0283D000, void, X509Chain__ctor_3, (X509Chain * __this, void * chainContext, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8258, X509Chain__ctor_3__MethodInfo); DO_APP_FUNC(0x0283D050, void *, X509Chain_get_ChainContext, (X509Chain * __this, MethodInfo * method)); DO_APP_FUNC(0x0283D0E0, X509ChainElementCollection *, X509Chain_get_ChainElements, (X509Chain * __this, MethodInfo * method)); DO_APP_FUNC(0x0283D160, X509ChainPolicy *, X509Chain_get_ChainPolicy, (X509Chain * __this, MethodInfo * method)); DO_APP_FUNC(0x0283D1E0, void, X509Chain_set_ChainPolicy, (X509Chain * __this, X509ChainPolicy * value, MethodInfo * method)); DO_APP_FUNC(0x0283D260, X509ChainStatus__Array *, X509Chain_get_ChainStatus, (X509Chain * __this, MethodInfo * method)); DO_APP_FUNC(0x0283D2E0, SafeX509ChainHandle *, X509Chain_get_SafeHandle, (X509Chain * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF81E0, X509Chain_get_SafeHandle__MethodInfo); DO_APP_FUNC(0x0283D330, bool, X509Chain_Build, (X509Chain * __this, X509Certificate2 * certificate, MethodInfo * method)); DO_APP_FUNC(0x0283D3C0, void, X509Chain_Reset, (X509Chain * __this, MethodInfo * method)); DO_APP_FUNC(0x0283D430, X509Chain *, X509Chain_Create, (MethodInfo * method)); @@ -28940,9 +32757,10 @@ DO_APP_FUNC(0x003BB3E0, String *, X509ChainElement_get_Information, (X509ChainEl DO_APP_FUNC(0x00421680, X509ChainStatusFlags__Enum, X509ChainElement_get_StatusFlags, (X509ChainElement * __this, MethodInfo * method)); DO_APP_FUNC(0x00421690, void, X509ChainElement_set_StatusFlags, (X509ChainElement * __this, X509ChainStatusFlags__Enum value, MethodInfo * method)); DO_APP_FUNC(0x0283D6D0, int32_t, X509ChainElement_Count, (X509ChainElement * __this, X509ChainStatusFlags__Enum flags, MethodInfo * method)); -DO_APP_FUNC(0x0283D700, void, X509ChainElement_Set, (X509ChainElement * __this, X509ChainStatus__Array * status, int32_t position, X509ChainStatusFlags__Enum flags, X509ChainStatusFlags__Enum mask, MethodInfo * method)); +DO_APP_FUNC(0x0283D700, void, X509ChainElement_Set, (X509ChainElement * __this, X509ChainStatus__Array * status, int32_t * position, X509ChainStatusFlags__Enum flags, X509ChainStatusFlags__Enum mask, MethodInfo * method)); DO_APP_FUNC(0x0283D7C0, void, X509ChainElement_UncompressFlags, (X509ChainElement * __this, MethodInfo * method)); DO_APP_FUNC(0x0283E570, void, X509ChainElement__ctor_1, (X509ChainElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF82E8, X509ChainElement__ctor_1__MethodInfo); DO_APP_FUNC(0x0283E5A0, void, X509ChainElementCollection__ctor, (X509ChainElementCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x01B1A1A0, int32_t, X509ChainElementCollection_get_Count, (X509ChainElementCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x01A1E360, bool, X509ChainElementCollection_get_IsSynchronized, (X509ChainElementCollection * __this, MethodInfo * method)); @@ -28961,7 +32779,9 @@ DO_APP_FUNC(0x0283EBC0, Object *, X509ChainElementEnumerator_System_Collections_ DO_APP_FUNC(0x0283EC10, bool, X509ChainElementEnumerator_MoveNext, (X509ChainElementEnumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x0283EC60, void, X509ChainElementEnumerator_Reset, (X509ChainElementEnumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x0283ECB0, void, X509ChainElementEnumerator__ctor_1, (X509ChainElementEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF81B0, X509ChainElementEnumerator__ctor_1__MethodInfo); DO_APP_FUNC(0x0283ECE0, void, X509ChainImpl_ThrowIfContextInvalid, (X509ChainImpl * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8198, X509ChainImpl_ThrowIfContextInvalid__MethodInfo); DO_APP_FUNC(0x0283ED30, void, X509ChainImpl_Dispose, (X509ChainImpl * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, X509ChainImpl_Dispose_1, (X509ChainImpl * __this, bool disposing, MethodInfo * method)); DO_APP_FUNC(0x021C48C0, void, X509ChainImpl_Finalize, (X509ChainImpl * __this, MethodInfo * method)); @@ -28969,6 +32789,7 @@ DO_APP_FUNC(0x003AE050, void, X509ChainImpl__ctor, (X509ChainImpl * __this, Meth DO_APP_FUNC(0x0283EDA0, void, X509ChainImplMono__ctor, (X509ChainImplMono * __this, MethodInfo * method)); DO_APP_FUNC(0x0283EDB0, void, X509ChainImplMono__ctor_1, (X509ChainImplMono * __this, bool useMachineContext, MethodInfo * method)); DO_APP_FUNC(0x0283EF00, void, X509ChainImplMono__ctor_2, (X509ChainImplMono * __this, void * chainContext, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8150, X509ChainImplMono__ctor_2__MethodInfo); DO_APP_FUNC(0x0041AEF0, bool, X509ChainImplMono_get_IsValid, (X509ChainImplMono * __this, MethodInfo * method)); DO_APP_FUNC(0x0283EF50, void *, X509ChainImplMono_get_Handle, (X509ChainImplMono * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, X509ChainElementCollection *, X509ChainImplMono_get_ChainElements, (X509ChainImplMono * __this, MethodInfo * method)); @@ -28977,6 +32798,7 @@ DO_APP_FUNC(0x003BCDE0, void, X509ChainImplMono_set_ChainPolicy, (X509ChainImplM DO_APP_FUNC(0x0283EF90, X509ChainStatus__Array *, X509ChainImplMono_get_ChainStatus, (X509ChainImplMono * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, X509ChainImplMono_AddStatus, (X509ChainImplMono * __this, X509ChainStatusFlags__Enum error, MethodInfo * method)); DO_APP_FUNC(0x0283F000, bool, X509ChainImplMono_Build, (X509ChainImplMono * __this, X509Certificate2 * certificate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8038, X509ChainImplMono_Build__MethodInfo); DO_APP_FUNC(0x0283F7D0, void, X509ChainImplMono_Reset, (X509ChainImplMono * __this, MethodInfo * method)); DO_APP_FUNC(0x0283FBD0, X509Certificate2Collection *, X509ChainImplMono_get_Roots, (X509ChainImplMono * __this, MethodInfo * method)); DO_APP_FUNC(0x0283FDD0, X509Certificate2Collection *, X509ChainImplMono_get_CertificateAuthorities, (X509ChainImplMono * __this, MethodInfo * method)); @@ -29001,6 +32823,7 @@ DO_APP_FUNC(0x02841C00, String *, X509ChainImplMono_GetAuthorityKeyIdentifier, ( DO_APP_FUNC(0x02841CA0, String *, X509ChainImplMono_GetAuthorityKeyIdentifier_1, (X509Crl * crl, MethodInfo * method)); DO_APP_FUNC(0x02841D30, String *, X509ChainImplMono_GetAuthorityKeyIdentifier_2, (X509Extension_1 * ext, MethodInfo * method)); DO_APP_FUNC(0x02841FD0, void, X509ChainImplMono_CheckRevocationOnChain, (X509ChainImplMono * __this, X509ChainStatusFlags__Enum flag, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7FA8, X509ChainImplMono_CheckRevocationOnChain__MethodInfo); DO_APP_FUNC(0x02842210, X509ChainStatusFlags__Enum, X509ChainImplMono_CheckRevocation, (X509ChainImplMono * __this, X509Certificate2 * certificate, int32_t ca, bool online, MethodInfo * method)); DO_APP_FUNC(0x02842390, X509ChainStatusFlags__Enum, X509ChainImplMono_CheckRevocation_1, (X509ChainImplMono * __this, X509Certificate2 * certificate, X509Certificate2 * ca_cert, bool online, MethodInfo * method)); DO_APP_FUNC(0x02842620, X509Crl *, X509ChainImplMono_CheckCrls, (String * subject, String * ski, X509Store_1 * store, MethodInfo * method)); @@ -29016,36 +32839,46 @@ DO_APP_FUNC(0x028431C0, X509Certificate2Collection *, X509ChainPolicy_get_ExtraS DO_APP_FUNC(0x003C6500, void, X509ChainPolicy_set_ExtraStore, (X509ChainPolicy * __this, X509Certificate2Collection * value, MethodInfo * method)); DO_APP_FUNC(0x003C7300, X509RevocationFlag__Enum, X509ChainPolicy_get_RevocationFlag, (X509ChainPolicy * __this, MethodInfo * method)); DO_APP_FUNC(0x02843450, void, X509ChainPolicy_set_RevocationFlag, (X509ChainPolicy * __this, X509RevocationFlag__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAE90, X509ChainPolicy_set_RevocationFlag__MethodInfo); DO_APP_FUNC(0x00A2A110, X509RevocationMode__Enum, X509ChainPolicy_get_RevocationMode, (X509ChainPolicy * __this, MethodInfo * method)); DO_APP_FUNC(0x028434C0, void, X509ChainPolicy_set_RevocationMode, (X509ChainPolicy * __this, X509RevocationMode__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAE80, X509ChainPolicy_set_RevocationMode__MethodInfo); DO_APP_FUNC(0x003C7320, TimeSpan, X509ChainPolicy_get_UrlRetrievalTimeout, (X509ChainPolicy * __this, MethodInfo * method)); DO_APP_FUNC(0x00421730, void, X509ChainPolicy_set_UrlRetrievalTimeout, (X509ChainPolicy * __this, TimeSpan value, MethodInfo * method)); DO_APP_FUNC(0x00439170, X509VerificationFlags__Enum, X509ChainPolicy_get_VerificationFlags, (X509ChainPolicy * __this, MethodInfo * method)); DO_APP_FUNC(0x02843530, void, X509ChainPolicy_set_VerificationFlags, (X509ChainPolicy * __this, X509VerificationFlags__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAE58, X509ChainPolicy_set_VerificationFlags__MethodInfo); DO_APP_FUNC(0x003CD530, DateTime, X509ChainPolicy_get_VerificationTime, (X509ChainPolicy * __this, MethodInfo * method)); DO_APP_FUNC(0x006DAFC0, void, X509ChainPolicy_set_VerificationTime, (X509ChainPolicy * __this, DateTime value, MethodInfo * method)); DO_APP_FUNC(0x028435B0, void, X509ChainPolicy_Reset, (X509ChainPolicy * __this, MethodInfo * method)); -DO_APP_FUNC(0x028437B0, void, X509ChainStatus__ctor, (X509ChainStatus__Boxed * __this, X509ChainStatusFlags__Enum flag, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, X509ChainStatusFlags__Enum, X509ChainStatus_get_Status, (X509ChainStatus__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00959BA0, void, X509ChainStatus_set_Status, (X509ChainStatus__Boxed * __this, X509ChainStatusFlags__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, String *, X509ChainStatus_get_StatusInformation, (X509ChainStatus__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x005F25C0, void, X509ChainStatus_set_StatusInformation, (X509ChainStatus__Boxed * __this, String * value, MethodInfo * method)); +DO_APP_FUNC(0x028437B0, void, X509ChainStatus__ctor, (X509ChainStatus * __this, X509ChainStatusFlags__Enum flag, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, X509ChainStatusFlags__Enum, X509ChainStatus_get_Status, (X509ChainStatus * __this, MethodInfo * method)); +DO_APP_FUNC(0x00959BA0, void, X509ChainStatus_set_Status, (X509ChainStatus * __this, X509ChainStatusFlags__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, String *, X509ChainStatus_get_StatusInformation, (X509ChainStatus * __this, MethodInfo * method)); +DO_APP_FUNC(0x005F25C0, void, X509ChainStatus_set_StatusInformation, (X509ChainStatus * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x02843820, String *, X509ChainStatus_GetInformation, (X509ChainStatusFlags__Enum flags, MethodInfo * method)); DO_APP_FUNC(0x028439A0, void, X509EnhancedKeyUsageExtension__ctor, (X509EnhancedKeyUsageExtension * __this, MethodInfo * method)); DO_APP_FUNC(0x02843A90, void, X509EnhancedKeyUsageExtension__ctor_1, (X509EnhancedKeyUsageExtension * __this, AsnEncodedData * encodedEnhancedKeyUsages, bool critical, MethodInfo * method)); DO_APP_FUNC(0x02843C10, void, X509EnhancedKeyUsageExtension__ctor_2, (X509EnhancedKeyUsageExtension * __this, OidCollection * enhancedKeyUsages, bool critical, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFADD0, X509EnhancedKeyUsageExtension__ctor_2__MethodInfo); DO_APP_FUNC(0x02843EB0, OidCollection *, X509EnhancedKeyUsageExtension_get_EnhancedKeyUsages, (X509EnhancedKeyUsageExtension * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAD80, X509EnhancedKeyUsageExtension_get_EnhancedKeyUsages__MethodInfo); DO_APP_FUNC(0x02844020, void, X509EnhancedKeyUsageExtension_CopyFrom, (X509EnhancedKeyUsageExtension * __this, AsnEncodedData * asnEncodedData, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAD90, X509EnhancedKeyUsageExtension_CopyFrom__MethodInfo); DO_APP_FUNC(0x02844240, AsnDecodeStatus__Enum, X509EnhancedKeyUsageExtension_Decode, (X509EnhancedKeyUsageExtension * __this, Byte__Array * extension, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAE08, X509EnhancedKeyUsageExtension_Decode__MethodInfo); DO_APP_FUNC(0x02844460, Byte__Array *, X509EnhancedKeyUsageExtension_Encode, (X509EnhancedKeyUsageExtension * __this, MethodInfo * method)); DO_APP_FUNC(0x028446C0, String *, X509EnhancedKeyUsageExtension_ToString, (X509EnhancedKeyUsageExtension * __this, bool multiLine, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, X509Extension__ctor, (X509Extension * __this, MethodInfo * method)); DO_APP_FUNC(0x02844A80, void, X509Extension__ctor_1, (X509Extension * __this, AsnEncodedData * encodedExtension, bool critical, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFADD8, X509Extension__ctor_1__MethodInfo); DO_APP_FUNC(0x02844B30, void, X509Extension__ctor_2, (X509Extension * __this, Oid * oid, Byte__Array * rawData, bool critical, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFADE0, X509Extension__ctor_2__MethodInfo); DO_APP_FUNC(0x02844BD0, void, X509Extension__ctor_3, (X509Extension * __this, String * oid, Byte__Array * rawData, bool critical, MethodInfo * method)); DO_APP_FUNC(0x005F7520, bool, X509Extension_get_Critical, (X509Extension * __this, MethodInfo * method)); DO_APP_FUNC(0x00715340, void, X509Extension_set_Critical, (X509Extension * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x02844C00, void, X509Extension_CopyFrom, (X509Extension * __this, AsnEncodedData * asnEncodedData, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFADF8, X509Extension_CopyFrom__MethodInfo); DO_APP_FUNC(0x02844DC0, String *, X509Extension_FormatUnkownData, (X509Extension * __this, Byte__Array * data, MethodInfo * method)); DO_APP_FUNC(0x02844FB0, void, X509ExtensionCollection__ctor, (X509ExtensionCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x02845060, void, X509ExtensionCollection__ctor_1, (X509ExtensionCollection * __this, X509Certificate_1 * cert, MethodInfo * method)); @@ -29053,10 +32886,15 @@ DO_APP_FUNC(0x01B1A1A0, int32_t, X509ExtensionCollection_get_Count, (X509Extensi DO_APP_FUNC(0x01A1E360, bool, X509ExtensionCollection_get_IsSynchronized, (X509ExtensionCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x00A1B820, Object *, X509ExtensionCollection_get_SyncRoot, (X509ExtensionCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x02845810, X509Extension *, X509ExtensionCollection_get_Item, (X509ExtensionCollection * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAD20, X509ExtensionCollection_get_Item__MethodInfo); DO_APP_FUNC(0x02845910, X509Extension *, X509ExtensionCollection_get_Item_1, (X509ExtensionCollection * __this, String * oid, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAD10, X509ExtensionCollection_get_Item_1__MethodInfo); DO_APP_FUNC(0x02845BE0, int32_t, X509ExtensionCollection_Add, (X509ExtensionCollection * __this, X509Extension * extension, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAD50, X509ExtensionCollection_Add__MethodInfo); DO_APP_FUNC(0x02845C70, void, X509ExtensionCollection_CopyTo, (X509ExtensionCollection * __this, X509Extension__Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAD60, X509ExtensionCollection_CopyTo__MethodInfo); DO_APP_FUNC(0x02845DB0, void, X509ExtensionCollection_System_Collections_ICollection_CopyTo, (X509ExtensionCollection * __this, Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAD48, X509ExtensionCollection_System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x02845F10, X509ExtensionEnumerator *, X509ExtensionCollection_GetEnumerator, (X509ExtensionCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x02845FE0, IEnumerator *, X509ExtensionCollection_System_Collections_IEnumerable_GetEnumerator, (X509ExtensionCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x028460B0, void, X509ExtensionCollection__cctor, (MethodInfo * method)); @@ -29066,10 +32904,12 @@ DO_APP_FUNC(0x02846280, Object *, X509ExtensionEnumerator_System_Collections_IEn DO_APP_FUNC(0x028462D0, bool, X509ExtensionEnumerator_MoveNext, (X509ExtensionEnumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x02846320, void, X509ExtensionEnumerator_Reset, (X509ExtensionEnumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x02846370, void, X509ExtensionEnumerator__ctor_1, (X509ExtensionEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFACB0, X509ExtensionEnumerator__ctor_1__MethodInfo); DO_APP_FUNC(0x028463A0, X509Certificate_1 *, X509Helper2_GetMonoCertificate, (X509Certificate2 * certificate, MethodInfo * method)); DO_APP_FUNC(0x02846480, X509ChainImpl *, X509Helper2_CreateChainImpl, (bool useMachineContext, MethodInfo * method)); DO_APP_FUNC(0x019BC1F0, bool, X509Helper2_IsValid, (X509ChainImpl * impl, MethodInfo * method)); DO_APP_FUNC(0x028464F0, void, X509Helper2_ThrowIfContextInvalid, (X509ChainImpl * impl, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFACB8, X509Helper2_ThrowIfContextInvalid__MethodInfo); DO_APP_FUNC(0x02846540, Exception *, X509Helper2_GetInvalidChainContextException, (MethodInfo * method)); DO_APP_FUNC(0x028465C0, int64_t, X509Helper2_GetSubjectNameHash, (X509Certificate * certificate, MethodInfo * method)); DO_APP_FUNC(0x02846760, void, X509Helper2_ExportAsPEM, (X509Certificate * certificate, Stream * stream, bool includeHumanReadableForm, MethodInfo * method)); @@ -29078,7 +32918,9 @@ DO_APP_FUNC(0x02846AF0, void, X509KeyUsageExtension__ctor, (X509KeyUsageExtensio DO_APP_FUNC(0x02846BE0, void, X509KeyUsageExtension__ctor_1, (X509KeyUsageExtension * __this, AsnEncodedData * encodedKeyUsage, bool critical, MethodInfo * method)); DO_APP_FUNC(0x02846D60, void, X509KeyUsageExtension__ctor_2, (X509KeyUsageExtension * __this, X509KeyUsageFlags__Enum keyUsages, bool critical, MethodInfo * method)); DO_APP_FUNC(0x02846E90, X509KeyUsageFlags__Enum, X509KeyUsageExtension_get_KeyUsages, (X509KeyUsageExtension * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAD00, X509KeyUsageExtension_get_KeyUsages__MethodInfo); DO_APP_FUNC(0x02846F10, void, X509KeyUsageExtension_CopyFrom, (X509KeyUsageExtension * __this, AsnEncodedData * asnEncodedData, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFACD0, X509KeyUsageExtension_CopyFrom__MethodInfo); DO_APP_FUNC(0x02847130, X509KeyUsageFlags__Enum, X509KeyUsageExtension_GetValidFlags, (X509KeyUsageExtension * __this, X509KeyUsageFlags__Enum flags, MethodInfo * method)); DO_APP_FUNC(0x02847140, AsnDecodeStatus__Enum, X509KeyUsageExtension_Decode, (X509KeyUsageExtension * __this, Byte__Array * extension, MethodInfo * method)); DO_APP_FUNC(0x028472B0, Byte__Array *, X509KeyUsageExtension_Encode, (X509KeyUsageExtension * __this, MethodInfo * method)); @@ -29088,10 +32930,13 @@ DO_APP_FUNC(0x02847C20, void, X509Store__ctor_1, (X509Store * __this, String * s DO_APP_FUNC(0x02847C30, void, X509Store__ctor_2, (X509Store * __this, StoreName__Enum storeName, MethodInfo * method)); DO_APP_FUNC(0x02847C40, void, X509Store__ctor_3, (X509Store * __this, StoreLocation__Enum storeLocation, MethodInfo * method)); DO_APP_FUNC(0x02847C90, void, X509Store__ctor_4, (X509Store * __this, StoreName__Enum storeName, StoreLocation__Enum storeLocation, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAC58, X509Store__ctor_4__MethodInfo); DO_APP_FUNC(0x02847DF0, void, X509Store__ctor_5, (X509Store * __this, StoreName__Enum storeName, StoreLocation__Enum storeLocation, OpenFlags__Enum openFlags, MethodInfo * method)); DO_APP_FUNC(0x02847E20, void, X509Store__ctor_6, (X509Store * __this, String * storeName, StoreLocation__Enum storeLocation, OpenFlags__Enum openFlags, MethodInfo * method)); DO_APP_FUNC(0x02847E50, void, X509Store__ctor_7, (X509Store * __this, void * storeHandle, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAC78, X509Store__ctor_7__MethodInfo); DO_APP_FUNC(0x02847F20, void, X509Store__ctor_8, (X509Store * __this, String * storeName, StoreLocation__Enum storeLocation, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAC88, X509Store__ctor_8__MethodInfo); DO_APP_FUNC(0x02847FF0, X509Certificate2Collection *, X509Store_get_Certificates, (X509Store * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, StoreLocation__Enum, X509Store_get_Location, (X509Store * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, String *, X509Store_get_Name, (X509Store * __this, MethodInfo * method)); @@ -29101,21 +32946,31 @@ DO_APP_FUNC(0x02848130, bool, X509Store_get_IsReadOnly, (X509Store * __this, Met DO_APP_FUNC(0x003BB330, X509Store_1 *, X509Store_get_Store, (X509Store * __this, MethodInfo * method)); DO_APP_FUNC(0x02848140, void *, X509Store_get_StoreHandle, (X509Store * __this, MethodInfo * method)); DO_APP_FUNC(0x02848180, void, X509Store_Add, (X509Store * __this, X509Certificate2 * certificate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAC20, X509Store_Add__MethodInfo); DO_APP_FUNC(0x02848470, void, X509Store_AddRange, (X509Store * __this, X509Certificate2Collection * certificates, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAAC0, X509Store_AddRange__MethodInfo); DO_APP_FUNC(0x02848790, void, X509Store_Close, (X509Store * __this, MethodInfo * method)); DO_APP_FUNC(0x02848850, void, X509Store_Dispose, (X509Store * __this, MethodInfo * method)); DO_APP_FUNC(0x02848860, void, X509Store_Open, (X509Store * __this, OpenFlags__Enum flags, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAAD8, X509Store_Open__MethodInfo); DO_APP_FUNC(0x02848E30, void, X509Store_Remove, (X509Store * __this, X509Certificate2 * certificate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAAA8, X509Store_Remove__MethodInfo); DO_APP_FUNC(0x028490D0, void, X509Store_RemoveRange, (X509Store * __this, X509Certificate2Collection * certificates, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAAB0, X509Store_RemoveRange__MethodInfo); DO_APP_FUNC(0x02849570, bool, X509Store_Exists, (X509Store * __this, X509Certificate2 * certificate, MethodInfo * method)); DO_APP_FUNC(0x02849640, void, X509SubjectKeyIdentifierExtension__ctor, (X509SubjectKeyIdentifierExtension * __this, MethodInfo * method)); DO_APP_FUNC(0x02849730, void, X509SubjectKeyIdentifierExtension__ctor_1, (X509SubjectKeyIdentifierExtension * __this, AsnEncodedData * encodedSubjectKeyIdentifier, bool critical, MethodInfo * method)); DO_APP_FUNC(0x028498B0, void, X509SubjectKeyIdentifierExtension__ctor_2, (X509SubjectKeyIdentifierExtension * __this, Byte__Array * subjectKeyIdentifier, bool critical, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAB08, X509SubjectKeyIdentifierExtension__ctor_2__MethodInfo); DO_APP_FUNC(0x02849B60, void, X509SubjectKeyIdentifierExtension__ctor_3, (X509SubjectKeyIdentifierExtension * __this, String * subjectKeyIdentifier, bool critical, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAB00, X509SubjectKeyIdentifierExtension__ctor_3__MethodInfo); DO_APP_FUNC(0x02849D90, void, X509SubjectKeyIdentifierExtension__ctor_4, (X509SubjectKeyIdentifierExtension * __this, PublicKey * key, bool critical, MethodInfo * method)); DO_APP_FUNC(0x02849DB0, void, X509SubjectKeyIdentifierExtension__ctor_5, (X509SubjectKeyIdentifierExtension * __this, PublicKey * key, X509SubjectKeyIdentifierHashAlgorithm__Enum algorithm, bool critical, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAAE0, X509SubjectKeyIdentifierExtension__ctor_5__MethodInfo); DO_APP_FUNC(0x0284A390, String *, X509SubjectKeyIdentifierExtension_get_SubjectKeyIdentifier, (X509SubjectKeyIdentifierExtension * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAAE8, X509SubjectKeyIdentifierExtension_get_SubjectKeyIdentifier__MethodInfo); DO_APP_FUNC(0x0284A460, void, X509SubjectKeyIdentifierExtension_CopyFrom, (X509SubjectKeyIdentifierExtension * __this, AsnEncodedData * asnEncodedData, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAAF0, X509SubjectKeyIdentifierExtension_CopyFrom__MethodInfo); DO_APP_FUNC(0x0284A680, uint8_t, X509SubjectKeyIdentifierExtension_FromHexChar, (uint16_t c, MethodInfo * method)); DO_APP_FUNC(0x0284A6B0, uint8_t, X509SubjectKeyIdentifierExtension_FromHexChars, (uint16_t c1, uint16_t c2, MethodInfo * method)); DO_APP_FUNC(0x0284A730, Byte__Array *, X509SubjectKeyIdentifierExtension_FromHex, (String * hex, MethodInfo * method)); @@ -29123,97 +32978,135 @@ DO_APP_FUNC(0x0284A8A0, AsnDecodeStatus__Enum, X509SubjectKeyIdentifierExtension DO_APP_FUNC(0x0284AA30, Byte__Array *, X509SubjectKeyIdentifierExtension_Encode, (X509SubjectKeyIdentifierExtension * __this, MethodInfo * method)); DO_APP_FUNC(0x0284AAF0, String *, X509SubjectKeyIdentifierExtension_ToString, (X509SubjectKeyIdentifierExtension * __this, bool multiLine, MethodInfo * method)); DO_APP_FUNC(0x0284AE40, void, CertificateRequest__ctor, (CertificateRequest * __this, X500DistinguishedName * subjectName, ECDsa * key, HashAlgorithmName hashAlgorithm, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAA40, CertificateRequest__ctor__MethodInfo); DO_APP_FUNC(0x0284AE90, void, CertificateRequest__ctor_1, (CertificateRequest * __this, X500DistinguishedName * subjectName, RSA * key, HashAlgorithmName hashAlgorithm, RSASignaturePadding * padding, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAA10, CertificateRequest__ctor_1__MethodInfo); DO_APP_FUNC(0x0284AEE0, void, CertificateRequest__ctor_2, (CertificateRequest * __this, X500DistinguishedName * subjectName, PublicKey * publicKey, HashAlgorithmName hashAlgorithm, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAA18, CertificateRequest__ctor_2__MethodInfo); DO_APP_FUNC(0x0284AF30, void, CertificateRequest__ctor_3, (CertificateRequest * __this, String * subjectName, ECDsa * key, HashAlgorithmName hashAlgorithm, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAA00, CertificateRequest__ctor_3__MethodInfo); DO_APP_FUNC(0x0284AF80, void, CertificateRequest__ctor_4, (CertificateRequest * __this, String * subjectName, RSA * key, HashAlgorithmName hashAlgorithm, RSASignaturePadding * padding, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAA08, CertificateRequest__ctor_4__MethodInfo); DO_APP_FUNC(0x0284AFD0, Collection_1_System_Security_Cryptography_X509Certificates_X509Extension_ *, CertificateRequest_get_CertificateExtensions, (CertificateRequest * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAA30, CertificateRequest_get_CertificateExtensions__MethodInfo); DO_APP_FUNC(0x0284B020, HashAlgorithmName, CertificateRequest_get_HashAlgorithm, (CertificateRequest * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAA38, CertificateRequest_get_HashAlgorithm__MethodInfo); DO_APP_FUNC(0x0284B070, PublicKey *, CertificateRequest_get_PublicKey, (CertificateRequest * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAA20, CertificateRequest_get_PublicKey__MethodInfo); DO_APP_FUNC(0x0284B0C0, X500DistinguishedName *, CertificateRequest_get_SubjectName, (CertificateRequest * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAA28, CertificateRequest_get_SubjectName__MethodInfo); DO_APP_FUNC(0x0284B110, X509Certificate2 *, CertificateRequest_Create, (CertificateRequest * __this, X500DistinguishedName * issuerName, X509SignatureGenerator * generator, DateTimeOffset notBefore, DateTimeOffset notAfter, Byte__Array * serialNumber, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAA78, CertificateRequest_Create__MethodInfo); DO_APP_FUNC(0x0284B160, X509Certificate2 *, CertificateRequest_Create_1, (CertificateRequest * __this, X509Certificate2 * issuerCertificate, DateTimeOffset notBefore, DateTimeOffset notAfter, Byte__Array * serialNumber, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAA80, CertificateRequest_Create_1__MethodInfo); DO_APP_FUNC(0x0284B1B0, X509Certificate2 *, CertificateRequest_CreateSelfSigned, (CertificateRequest * __this, DateTimeOffset notBefore, DateTimeOffset notAfter, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAA68, CertificateRequest_CreateSelfSigned__MethodInfo); DO_APP_FUNC(0x0284B200, Byte__Array *, CertificateRequest_CreateSigningRequest, (CertificateRequest * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAA70, CertificateRequest_CreateSigningRequest__MethodInfo); DO_APP_FUNC(0x0284B250, Byte__Array *, CertificateRequest_CreateSigningRequest_1, (CertificateRequest * __this, X509SignatureGenerator * signatureGenerator, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAA98, CertificateRequest_CreateSigningRequest_1__MethodInfo); DO_APP_FUNC(0x0284B2A0, void, X509SignatureGenerator__ctor, (X509SignatureGenerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAAA0, X509SignatureGenerator__ctor__MethodInfo); DO_APP_FUNC(0x0284B2F0, PublicKey *, X509SignatureGenerator_get_PublicKey, (X509SignatureGenerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAA88, X509SignatureGenerator_get_PublicKey__MethodInfo); DO_APP_FUNC(0x0284B340, X509SignatureGenerator *, X509SignatureGenerator_CreateForECDsa, (ECDsa * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAA90, X509SignatureGenerator_CreateForECDsa__MethodInfo); DO_APP_FUNC(0x0284B390, X509SignatureGenerator *, X509SignatureGenerator_CreateForRSA, (RSA * key, RSASignaturePadding * signaturePadding, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAA50, X509SignatureGenerator_CreateForRSA__MethodInfo); DO_APP_FUNC(0x0284B3E0, void, SecPkgContext_ConnectionInfo__ctor, (SecPkgContext_ConnectionInfo * __this, Byte__Array * nativeBuffer, MethodInfo * method)); DO_APP_FUNC(0x0284B620, void, GlobalSSPI__cctor, (MethodInfo * method)); DO_APP_FUNC(0x0284B780, void, NegotiationInfoClass__ctor, (NegotiationInfoClass * __this, SafeHandle * safeHandle, int32_t negotiationState, MethodInfo * method)); DO_APP_FUNC(0x0284BE10, SecurityPackageInfoClass__Array *, SSPIAuthType_get_SecurityPackages, (SSPIAuthType * __this, MethodInfo * method)); DO_APP_FUNC(0x0284BE50, void, SSPIAuthType_set_SecurityPackages, (SSPIAuthType * __this, SecurityPackageInfoClass__Array * value, MethodInfo * method)); -DO_APP_FUNC(0x0284BEF0, int32_t, SSPIAuthType_EnumerateSecurityPackages, (SSPIAuthType * __this, int32_t pkgnum, SafeFreeContextBuffer * pkgArray, MethodInfo * method)); -DO_APP_FUNC(0x0284BFA0, int32_t, SSPIAuthType_AcquireCredentialsHandle, (SSPIAuthType * __this, String * moduleName, Interop_SspiCli_CredentialUse__Enum usage, Interop_SspiCli_SEC_WINNT_AUTH_IDENTITY_W authdata, SafeFreeCredentials * outCredential, MethodInfo * method)); -DO_APP_FUNC(0x0284BFD0, int32_t, SSPIAuthType_AcquireCredentialsHandle_1, (SSPIAuthType * __this, String * moduleName, Interop_SspiCli_CredentialUse__Enum usage, SafeSspiAuthDataHandle * authdata, SafeFreeCredentials * outCredential, MethodInfo * method)); -DO_APP_FUNC(0x0284C000, int32_t, SSPIAuthType_AcquireDefaultCredential, (SSPIAuthType * __this, String * moduleName, Interop_SspiCli_CredentialUse__Enum usage, SafeFreeCredentials * outCredential, MethodInfo * method)); -DO_APP_FUNC(0x0284C020, int32_t, SSPIAuthType_AcquireCredentialsHandle_2, (SSPIAuthType * __this, String * moduleName, Interop_SspiCli_CredentialUse__Enum usage, Interop_SspiCli_SCHANNEL_CRED authdata, SafeFreeCredentials * outCredential, MethodInfo * method)); -DO_APP_FUNC(0x0284C050, int32_t, SSPIAuthType_AcceptSecurityContext, (SSPIAuthType * __this, SafeFreeCredentials * credential, SafeDeleteContext * context, SecurityBuffer * inputBuffer, Interop_SspiCli_ContextFlags__Enum inFlags, Interop_SspiCli_Endianness__Enum endianness, SecurityBuffer * outputBuffer, Interop_SspiCli_ContextFlags__Enum outFlags, MethodInfo * method)); -DO_APP_FUNC(0x0284C0F0, int32_t, SSPIAuthType_AcceptSecurityContext_1, (SSPIAuthType * __this, SafeFreeCredentials * credential, SafeDeleteContext * context, SecurityBuffer__Array * inputBuffers, Interop_SspiCli_ContextFlags__Enum inFlags, Interop_SspiCli_Endianness__Enum endianness, SecurityBuffer * outputBuffer, Interop_SspiCli_ContextFlags__Enum outFlags, MethodInfo * method)); -DO_APP_FUNC(0x0284C190, int32_t, SSPIAuthType_InitializeSecurityContext, (SSPIAuthType * __this, SafeFreeCredentials * credential, SafeDeleteContext * context, String * targetName, Interop_SspiCli_ContextFlags__Enum inFlags, Interop_SspiCli_Endianness__Enum endianness, SecurityBuffer * inputBuffer, SecurityBuffer * outputBuffer, Interop_SspiCli_ContextFlags__Enum outFlags, MethodInfo * method)); -DO_APP_FUNC(0x0284C250, int32_t, SSPIAuthType_InitializeSecurityContext_1, (SSPIAuthType * __this, SafeFreeCredentials * credential, SafeDeleteContext * context, String * targetName, Interop_SspiCli_ContextFlags__Enum inFlags, Interop_SspiCli_Endianness__Enum endianness, SecurityBuffer__Array * inputBuffers, SecurityBuffer * outputBuffer, Interop_SspiCli_ContextFlags__Enum outFlags, MethodInfo * method)); -DO_APP_FUNC(0x0284C300, int32_t, SSPIAuthType_EncryptMessage, (SSPIAuthType * __this, SafeDeleteContext * context, Interop_SspiCli_SecBufferDesc inputOutput, uint32_t sequenceNumber, MethodInfo * method)); -DO_APP_FUNC(0x0284C3E0, int32_t, SSPIAuthType_DecryptMessage, (SSPIAuthType * __this, SafeDeleteContext * context, Interop_SspiCli_SecBufferDesc inputOutput, uint32_t sequenceNumber, MethodInfo * method)); -DO_APP_FUNC(0x0284C660, int32_t, SSPIAuthType_MakeSignature, (SSPIAuthType * __this, SafeDeleteContext * context, Interop_SspiCli_SecBufferDesc inputOutput, uint32_t sequenceNumber, MethodInfo * method)); -DO_APP_FUNC(0x0284C740, int32_t, SSPIAuthType_VerifySignature, (SSPIAuthType * __this, SafeDeleteContext * context, Interop_SspiCli_SecBufferDesc inputOutput, uint32_t sequenceNumber, MethodInfo * method)); -DO_APP_FUNC(0x0284C8B0, int32_t, SSPIAuthType_QueryContextChannelBinding, (SSPIAuthType * __this, SafeDeleteContext * context, Interop_SspiCli_ContextAttribute__Enum attribute, SafeFreeContextBufferChannelBinding * binding, MethodInfo * method)); -DO_APP_FUNC(0x0284C910, int32_t, SSPIAuthType_QueryContextAttributes, (SSPIAuthType * __this, SafeDeleteContext * context, Interop_SspiCli_ContextAttribute__Enum attribute, Byte__Array * buffer, Type * handleType, SafeHandle * refHandle, MethodInfo * method)); +DO_APP_FUNC(0x0284BEF0, int32_t, SSPIAuthType_EnumerateSecurityPackages, (SSPIAuthType * __this, int32_t * pkgnum, SafeFreeContextBuffer * * pkgArray, MethodInfo * method)); +DO_APP_FUNC(0x0284BFA0, int32_t, SSPIAuthType_AcquireCredentialsHandle, (SSPIAuthType * __this, String * moduleName, Interop_SspiCli_CredentialUse__Enum usage, Interop_SspiCli_SEC_WINNT_AUTH_IDENTITY_W * authdata, SafeFreeCredentials * * outCredential, MethodInfo * method)); +DO_APP_FUNC(0x0284BFD0, int32_t, SSPIAuthType_AcquireCredentialsHandle_1, (SSPIAuthType * __this, String * moduleName, Interop_SspiCli_CredentialUse__Enum usage, SafeSspiAuthDataHandle * * authdata, SafeFreeCredentials * * outCredential, MethodInfo * method)); +DO_APP_FUNC(0x0284C000, int32_t, SSPIAuthType_AcquireDefaultCredential, (SSPIAuthType * __this, String * moduleName, Interop_SspiCli_CredentialUse__Enum usage, SafeFreeCredentials * * outCredential, MethodInfo * method)); +DO_APP_FUNC(0x0284C020, int32_t, SSPIAuthType_AcquireCredentialsHandle_2, (SSPIAuthType * __this, String * moduleName, Interop_SspiCli_CredentialUse__Enum usage, Interop_SspiCli_SCHANNEL_CRED * authdata, SafeFreeCredentials * * outCredential, MethodInfo * method)); +DO_APP_FUNC(0x0284C050, int32_t, SSPIAuthType_AcceptSecurityContext, (SSPIAuthType * __this, SafeFreeCredentials * * credential, SafeDeleteContext * * context, SecurityBuffer * inputBuffer, Interop_SspiCli_ContextFlags__Enum inFlags, Interop_SspiCli_Endianness__Enum endianness, SecurityBuffer * outputBuffer, Interop_SspiCli_ContextFlags__Enum * outFlags, MethodInfo * method)); +DO_APP_FUNC(0x0284C0F0, int32_t, SSPIAuthType_AcceptSecurityContext_1, (SSPIAuthType * __this, SafeFreeCredentials * credential, SafeDeleteContext * * context, SecurityBuffer__Array * inputBuffers, Interop_SspiCli_ContextFlags__Enum inFlags, Interop_SspiCli_Endianness__Enum endianness, SecurityBuffer * outputBuffer, Interop_SspiCli_ContextFlags__Enum * outFlags, MethodInfo * method)); +DO_APP_FUNC(0x0284C190, int32_t, SSPIAuthType_InitializeSecurityContext, (SSPIAuthType * __this, SafeFreeCredentials * * credential, SafeDeleteContext * * context, String * targetName, Interop_SspiCli_ContextFlags__Enum inFlags, Interop_SspiCli_Endianness__Enum endianness, SecurityBuffer * inputBuffer, SecurityBuffer * outputBuffer, Interop_SspiCli_ContextFlags__Enum * outFlags, MethodInfo * method)); +DO_APP_FUNC(0x0284C250, int32_t, SSPIAuthType_InitializeSecurityContext_1, (SSPIAuthType * __this, SafeFreeCredentials * credential, SafeDeleteContext * * context, String * targetName, Interop_SspiCli_ContextFlags__Enum inFlags, Interop_SspiCli_Endianness__Enum endianness, SecurityBuffer__Array * inputBuffers, SecurityBuffer * outputBuffer, Interop_SspiCli_ContextFlags__Enum * outFlags, MethodInfo * method)); +DO_APP_FUNC(0x0284C300, int32_t, SSPIAuthType_EncryptMessage, (SSPIAuthType * __this, SafeDeleteContext * context, Interop_SspiCli_SecBufferDesc * inputOutput, uint32_t sequenceNumber, MethodInfo * method)); +DO_APP_FUNC(0x0284C3E0, int32_t, SSPIAuthType_DecryptMessage, (SSPIAuthType * __this, SafeDeleteContext * context, Interop_SspiCli_SecBufferDesc * inputOutput, uint32_t sequenceNumber, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA9B8, SSPIAuthType_DecryptMessage__MethodInfo); +DO_APP_FUNC(0x0284C660, int32_t, SSPIAuthType_MakeSignature, (SSPIAuthType * __this, SafeDeleteContext * context, Interop_SspiCli_SecBufferDesc * inputOutput, uint32_t sequenceNumber, MethodInfo * method)); +DO_APP_FUNC(0x0284C740, int32_t, SSPIAuthType_VerifySignature, (SSPIAuthType * __this, SafeDeleteContext * context, Interop_SspiCli_SecBufferDesc * inputOutput, uint32_t sequenceNumber, MethodInfo * method)); +DO_APP_FUNC(0x0284C8B0, int32_t, SSPIAuthType_QueryContextChannelBinding, (SSPIAuthType * __this, SafeDeleteContext * context, Interop_SspiCli_ContextAttribute__Enum attribute, SafeFreeContextBufferChannelBinding * * binding, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA9C0, SSPIAuthType_QueryContextChannelBinding__MethodInfo); +DO_APP_FUNC(0x0284C910, int32_t, SSPIAuthType_QueryContextAttributes, (SSPIAuthType * __this, SafeDeleteContext * context, Interop_SspiCli_ContextAttribute__Enum attribute, Byte__Array * buffer, Type * handleType, SafeHandle * * refHandle, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA940, SSPIAuthType_QueryContextAttributes__MethodInfo); DO_APP_FUNC(0x0284CBE0, int32_t, SSPIAuthType_SetContextAttributes, (SSPIAuthType * __this, SafeDeleteContext * context, Interop_SspiCli_ContextAttribute__Enum attribute, Byte__Array * buffer, MethodInfo * method)); -DO_APP_FUNC(0x0284CC20, int32_t, SSPIAuthType_QuerySecurityContextToken, (SSPIAuthType * __this, SafeDeleteContext * phContext, SecurityContextTokenHandle * phToken, MethodInfo * method)); -DO_APP_FUNC(0x0284CC40, int32_t, SSPIAuthType_CompleteAuthToken, (SSPIAuthType * __this, SafeDeleteContext * refContext, SecurityBuffer__Array * inputBuffers, MethodInfo * method)); -DO_APP_FUNC(0x0284CCA0, int32_t, SSPIAuthType_GetSecurityContextToken, (SafeDeleteContext * phContext, SecurityContextTokenHandle * safeHandle, MethodInfo * method)); -DO_APP_FUNC(0x0284CD60, int32_t, SSPIAuthType_ApplyControlToken, (SSPIAuthType * __this, SafeDeleteContext * refContext, SecurityBuffer__Array * inputBuffers, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA948, SSPIAuthType_SetContextAttributes__MethodInfo); +DO_APP_FUNC(0x0284CC20, int32_t, SSPIAuthType_QuerySecurityContextToken, (SSPIAuthType * __this, SafeDeleteContext * phContext, SecurityContextTokenHandle * * phToken, MethodInfo * method)); +DO_APP_FUNC(0x0284CC40, int32_t, SSPIAuthType_CompleteAuthToken, (SSPIAuthType * __this, SafeDeleteContext * * refContext, SecurityBuffer__Array * inputBuffers, MethodInfo * method)); +DO_APP_FUNC(0x0284CCA0, int32_t, SSPIAuthType_GetSecurityContextToken, (SafeDeleteContext * phContext, SecurityContextTokenHandle * * safeHandle, MethodInfo * method)); +DO_APP_FUNC(0x0284CD60, int32_t, SSPIAuthType_ApplyControlToken, (SSPIAuthType * __this, SafeDeleteContext * * refContext, SecurityBuffer__Array * inputBuffers, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA950, SSPIAuthType_ApplyControlToken__MethodInfo); DO_APP_FUNC(0x003AE050, void, SSPIAuthType__ctor, (SSPIAuthType * __this, MethodInfo * method)); DO_APP_FUNC(0x0284CDB0, SecurityPackageInfoClass__Array *, SSPISecureChannelType_get_SecurityPackages, (SSPISecureChannelType * __this, MethodInfo * method)); DO_APP_FUNC(0x0284CDF0, void, SSPISecureChannelType_set_SecurityPackages, (SSPISecureChannelType * __this, SecurityPackageInfoClass__Array * value, MethodInfo * method)); -DO_APP_FUNC(0x0284CE90, int32_t, SSPISecureChannelType_EnumerateSecurityPackages, (SSPISecureChannelType * __this, int32_t pkgnum, SafeFreeContextBuffer * pkgArray, MethodInfo * method)); -DO_APP_FUNC(0x0284BFA0, int32_t, SSPISecureChannelType_AcquireCredentialsHandle, (SSPISecureChannelType * __this, String * moduleName, Interop_SspiCli_CredentialUse__Enum usage, Interop_SspiCli_SEC_WINNT_AUTH_IDENTITY_W authdata, SafeFreeCredentials * outCredential, MethodInfo * method)); -DO_APP_FUNC(0x0284BFD0, int32_t, SSPISecureChannelType_AcquireCredentialsHandle_1, (SSPISecureChannelType * __this, String * moduleName, Interop_SspiCli_CredentialUse__Enum usage, SafeSspiAuthDataHandle * authdata, SafeFreeCredentials * outCredential, MethodInfo * method)); -DO_APP_FUNC(0x0284C000, int32_t, SSPISecureChannelType_AcquireDefaultCredential, (SSPISecureChannelType * __this, String * moduleName, Interop_SspiCli_CredentialUse__Enum usage, SafeFreeCredentials * outCredential, MethodInfo * method)); -DO_APP_FUNC(0x0284C020, int32_t, SSPISecureChannelType_AcquireCredentialsHandle_2, (SSPISecureChannelType * __this, String * moduleName, Interop_SspiCli_CredentialUse__Enum usage, Interop_SspiCli_SCHANNEL_CRED authdata, SafeFreeCredentials * outCredential, MethodInfo * method)); -DO_APP_FUNC(0x0284CF40, int32_t, SSPISecureChannelType_AcceptSecurityContext, (SSPISecureChannelType * __this, SafeFreeCredentials * credential, SafeDeleteContext * context, SecurityBuffer * inputBuffer, Interop_SspiCli_ContextFlags__Enum inFlags, Interop_SspiCli_Endianness__Enum endianness, SecurityBuffer * outputBuffer, Interop_SspiCli_ContextFlags__Enum outFlags, MethodInfo * method)); -DO_APP_FUNC(0x0284CFE0, int32_t, SSPISecureChannelType_AcceptSecurityContext_1, (SSPISecureChannelType * __this, SafeFreeCredentials * credential, SafeDeleteContext * context, SecurityBuffer__Array * inputBuffers, Interop_SspiCli_ContextFlags__Enum inFlags, Interop_SspiCli_Endianness__Enum endianness, SecurityBuffer * outputBuffer, Interop_SspiCli_ContextFlags__Enum outFlags, MethodInfo * method)); -DO_APP_FUNC(0x0284D080, int32_t, SSPISecureChannelType_InitializeSecurityContext, (SSPISecureChannelType * __this, SafeFreeCredentials * credential, SafeDeleteContext * context, String * targetName, Interop_SspiCli_ContextFlags__Enum inFlags, Interop_SspiCli_Endianness__Enum endianness, SecurityBuffer * inputBuffer, SecurityBuffer * outputBuffer, Interop_SspiCli_ContextFlags__Enum outFlags, MethodInfo * method)); -DO_APP_FUNC(0x0284D140, int32_t, SSPISecureChannelType_InitializeSecurityContext_1, (SSPISecureChannelType * __this, SafeFreeCredentials * credential, SafeDeleteContext * context, String * targetName, Interop_SspiCli_ContextFlags__Enum inFlags, Interop_SspiCli_Endianness__Enum endianness, SecurityBuffer__Array * inputBuffers, SecurityBuffer * outputBuffer, Interop_SspiCli_ContextFlags__Enum outFlags, MethodInfo * method)); -DO_APP_FUNC(0x0284C300, int32_t, SSPISecureChannelType_EncryptMessage, (SSPISecureChannelType * __this, SafeDeleteContext * context, Interop_SspiCli_SecBufferDesc inputOutput, uint32_t sequenceNumber, MethodInfo * method)); -DO_APP_FUNC(0x0284D1F0, int32_t, SSPISecureChannelType_DecryptMessage, (SSPISecureChannelType * __this, SafeDeleteContext * context, Interop_SspiCli_SecBufferDesc inputOutput, uint32_t sequenceNumber, MethodInfo * method)); -DO_APP_FUNC(0x0284D2D0, int32_t, SSPISecureChannelType_MakeSignature, (SSPISecureChannelType * __this, SafeDeleteContext * context, Interop_SspiCli_SecBufferDesc inputOutput, uint32_t sequenceNumber, MethodInfo * method)); -DO_APP_FUNC(0x0284D310, int32_t, SSPISecureChannelType_VerifySignature, (SSPISecureChannelType * __this, SafeDeleteContext * context, Interop_SspiCli_SecBufferDesc inputOutput, uint32_t sequenceNumber, MethodInfo * method)); -DO_APP_FUNC(0x0284D350, int32_t, SSPISecureChannelType_QueryContextChannelBinding, (SSPISecureChannelType * __this, SafeDeleteContext * phContext, Interop_SspiCli_ContextAttribute__Enum attribute, SafeFreeContextBufferChannelBinding * refHandle, MethodInfo * method)); -DO_APP_FUNC(0x0284D4A0, int32_t, SSPISecureChannelType_QueryContextAttributes, (SSPISecureChannelType * __this, SafeDeleteContext * phContext, Interop_SspiCli_ContextAttribute__Enum attribute, Byte__Array * buffer, Type * handleType, SafeHandle * refHandle, MethodInfo * method)); +DO_APP_FUNC(0x0284CE90, int32_t, SSPISecureChannelType_EnumerateSecurityPackages, (SSPISecureChannelType * __this, int32_t * pkgnum, SafeFreeContextBuffer * * pkgArray, MethodInfo * method)); +DO_APP_FUNC(0x0284BFA0, int32_t, SSPISecureChannelType_AcquireCredentialsHandle, (SSPISecureChannelType * __this, String * moduleName, Interop_SspiCli_CredentialUse__Enum usage, Interop_SspiCli_SEC_WINNT_AUTH_IDENTITY_W * authdata, SafeFreeCredentials * * outCredential, MethodInfo * method)); +DO_APP_FUNC(0x0284BFD0, int32_t, SSPISecureChannelType_AcquireCredentialsHandle_1, (SSPISecureChannelType * __this, String * moduleName, Interop_SspiCli_CredentialUse__Enum usage, SafeSspiAuthDataHandle * * authdata, SafeFreeCredentials * * outCredential, MethodInfo * method)); +DO_APP_FUNC(0x0284C000, int32_t, SSPISecureChannelType_AcquireDefaultCredential, (SSPISecureChannelType * __this, String * moduleName, Interop_SspiCli_CredentialUse__Enum usage, SafeFreeCredentials * * outCredential, MethodInfo * method)); +DO_APP_FUNC(0x0284C020, int32_t, SSPISecureChannelType_AcquireCredentialsHandle_2, (SSPISecureChannelType * __this, String * moduleName, Interop_SspiCli_CredentialUse__Enum usage, Interop_SspiCli_SCHANNEL_CRED * authdata, SafeFreeCredentials * * outCredential, MethodInfo * method)); +DO_APP_FUNC(0x0284CF40, int32_t, SSPISecureChannelType_AcceptSecurityContext, (SSPISecureChannelType * __this, SafeFreeCredentials * * credential, SafeDeleteContext * * context, SecurityBuffer * inputBuffer, Interop_SspiCli_ContextFlags__Enum inFlags, Interop_SspiCli_Endianness__Enum endianness, SecurityBuffer * outputBuffer, Interop_SspiCli_ContextFlags__Enum * outFlags, MethodInfo * method)); +DO_APP_FUNC(0x0284CFE0, int32_t, SSPISecureChannelType_AcceptSecurityContext_1, (SSPISecureChannelType * __this, SafeFreeCredentials * credential, SafeDeleteContext * * context, SecurityBuffer__Array * inputBuffers, Interop_SspiCli_ContextFlags__Enum inFlags, Interop_SspiCli_Endianness__Enum endianness, SecurityBuffer * outputBuffer, Interop_SspiCli_ContextFlags__Enum * outFlags, MethodInfo * method)); +DO_APP_FUNC(0x0284D080, int32_t, SSPISecureChannelType_InitializeSecurityContext, (SSPISecureChannelType * __this, SafeFreeCredentials * * credential, SafeDeleteContext * * context, String * targetName, Interop_SspiCli_ContextFlags__Enum inFlags, Interop_SspiCli_Endianness__Enum endianness, SecurityBuffer * inputBuffer, SecurityBuffer * outputBuffer, Interop_SspiCli_ContextFlags__Enum * outFlags, MethodInfo * method)); +DO_APP_FUNC(0x0284D140, int32_t, SSPISecureChannelType_InitializeSecurityContext_1, (SSPISecureChannelType * __this, SafeFreeCredentials * credential, SafeDeleteContext * * context, String * targetName, Interop_SspiCli_ContextFlags__Enum inFlags, Interop_SspiCli_Endianness__Enum endianness, SecurityBuffer__Array * inputBuffers, SecurityBuffer * outputBuffer, Interop_SspiCli_ContextFlags__Enum * outFlags, MethodInfo * method)); +DO_APP_FUNC(0x0284C300, int32_t, SSPISecureChannelType_EncryptMessage, (SSPISecureChannelType * __this, SafeDeleteContext * context, Interop_SspiCli_SecBufferDesc * inputOutput, uint32_t sequenceNumber, MethodInfo * method)); +DO_APP_FUNC(0x0284D1F0, int32_t, SSPISecureChannelType_DecryptMessage, (SSPISecureChannelType * __this, SafeDeleteContext * context, Interop_SspiCli_SecBufferDesc * inputOutput, uint32_t sequenceNumber, MethodInfo * method)); +DO_APP_FUNC(0x0284D2D0, int32_t, SSPISecureChannelType_MakeSignature, (SSPISecureChannelType * __this, SafeDeleteContext * context, Interop_SspiCli_SecBufferDesc * inputOutput, uint32_t sequenceNumber, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA978, SSPISecureChannelType_MakeSignature__MethodInfo); +DO_APP_FUNC(0x0284D310, int32_t, SSPISecureChannelType_VerifySignature, (SSPISecureChannelType * __this, SafeDeleteContext * context, Interop_SspiCli_SecBufferDesc * inputOutput, uint32_t sequenceNumber, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA988, SSPISecureChannelType_VerifySignature__MethodInfo); +DO_APP_FUNC(0x0284D350, int32_t, SSPISecureChannelType_QueryContextChannelBinding, (SSPISecureChannelType * __this, SafeDeleteContext * phContext, Interop_SspiCli_ContextAttribute__Enum attribute, SafeFreeContextBufferChannelBinding * * refHandle, MethodInfo * method)); +DO_APP_FUNC(0x0284D4A0, int32_t, SSPISecureChannelType_QueryContextAttributes, (SSPISecureChannelType * __this, SafeDeleteContext * phContext, Interop_SspiCli_ContextAttribute__Enum attribute, Byte__Array * buffer, Type * handleType, SafeHandle * * refHandle, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA980, SSPISecureChannelType_QueryContextAttributes__MethodInfo); DO_APP_FUNC(0x0284D770, int32_t, SSPISecureChannelType_SetContextAttributes, (SSPISecureChannelType * __this, SafeDeleteContext * phContext, Interop_SspiCli_ContextAttribute__Enum attribute, Byte__Array * buffer, MethodInfo * method)); -DO_APP_FUNC(0x0284D790, int32_t, SSPISecureChannelType_QuerySecurityContextToken, (SSPISecureChannelType * __this, SafeDeleteContext * phContext, SecurityContextTokenHandle * phToken, MethodInfo * method)); -DO_APP_FUNC(0x0284D7E0, int32_t, SSPISecureChannelType_CompleteAuthToken, (SSPISecureChannelType * __this, SafeDeleteContext * refContext, SecurityBuffer__Array * inputBuffers, MethodInfo * method)); -DO_APP_FUNC(0x0284D830, int32_t, SSPISecureChannelType_ApplyControlToken, (SSPISecureChannelType * __this, SafeDeleteContext * refContext, SecurityBuffer__Array * inputBuffers, MethodInfo * method)); +DO_APP_FUNC(0x0284D790, int32_t, SSPISecureChannelType_QuerySecurityContextToken, (SSPISecureChannelType * __this, SafeDeleteContext * phContext, SecurityContextTokenHandle * * phToken, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA958, SSPISecureChannelType_QuerySecurityContextToken__MethodInfo); +DO_APP_FUNC(0x0284D7E0, int32_t, SSPISecureChannelType_CompleteAuthToken, (SSPISecureChannelType * __this, SafeDeleteContext * * refContext, SecurityBuffer__Array * inputBuffers, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA960, SSPISecureChannelType_CompleteAuthToken__MethodInfo); +DO_APP_FUNC(0x0284D830, int32_t, SSPISecureChannelType_ApplyControlToken, (SSPISecureChannelType * __this, SafeDeleteContext * * refContext, SecurityBuffer__Array * inputBuffers, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SSPISecureChannelType__ctor, (SSPISecureChannelType * __this, MethodInfo * method)); DO_APP_FUNC(0x0284D890, SecurityPackageInfoClass__Array *, SSPIWrapper_EnumerateSecurityPackages, (SSPIInterface * secModule, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA910, SSPIWrapper_EnumerateSecurityPackages__MethodInfo); DO_APP_FUNC(0x0284E040, SecurityPackageInfoClass *, SSPIWrapper_GetVerifyPackageInfo, (SSPIInterface * secModule, String * packageName, MethodInfo * method)); DO_APP_FUNC(0x0284E050, SecurityPackageInfoClass *, SSPIWrapper_GetVerifyPackageInfo_1, (SSPIInterface * secModule, String * packageName, bool throwIfMissing, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA928, SSPIWrapper_GetVerifyPackageInfo_1__MethodInfo); DO_APP_FUNC(0x0284E280, SafeFreeCredentials *, SSPIWrapper_AcquireDefaultCredential, (SSPIInterface * secModule, String * package, Interop_SspiCli_CredentialUse__Enum intent, MethodInfo * method)); -DO_APP_FUNC(0x0284E530, SafeFreeCredentials *, SSPIWrapper_AcquireCredentialsHandle, (SSPIInterface * secModule, String * package, Interop_SspiCli_CredentialUse__Enum intent, Interop_SspiCli_SEC_WINNT_AUTH_IDENTITY_W authdata, MethodInfo * method)); -DO_APP_FUNC(0x0284E830, SafeFreeCredentials *, SSPIWrapper_AcquireCredentialsHandle_1, (SSPIInterface * secModule, String * package, Interop_SspiCli_CredentialUse__Enum intent, SafeSspiAuthDataHandle * authdata, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA8F8, SSPIWrapper_AcquireDefaultCredential__MethodInfo); +DO_APP_FUNC(0x0284E530, SafeFreeCredentials *, SSPIWrapper_AcquireCredentialsHandle, (SSPIInterface * secModule, String * package, Interop_SspiCli_CredentialUse__Enum intent, Interop_SspiCli_SEC_WINNT_AUTH_IDENTITY_W * authdata, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA908, SSPIWrapper_AcquireCredentialsHandle__MethodInfo); +DO_APP_FUNC(0x0284E830, SafeFreeCredentials *, SSPIWrapper_AcquireCredentialsHandle_1, (SSPIInterface * secModule, String * package, Interop_SspiCli_CredentialUse__Enum intent, SafeSspiAuthDataHandle * * authdata, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA900, SSPIWrapper_AcquireCredentialsHandle_1__MethodInfo); DO_APP_FUNC(0x0284EAC0, SafeFreeCredentials *, SSPIWrapper_AcquireCredentialsHandle_2, (SSPIInterface * secModule, String * package, Interop_SspiCli_CredentialUse__Enum intent, Interop_SspiCli_SCHANNEL_CRED scc, MethodInfo * method)); -DO_APP_FUNC(0x0284EE40, int32_t, SSPIWrapper_InitializeSecurityContext, (SSPIInterface * secModule, SafeFreeCredentials * credential, SafeDeleteContext * context, String * targetName, Interop_SspiCli_ContextFlags__Enum inFlags, Interop_SspiCli_Endianness__Enum datarep, SecurityBuffer * inputBuffer, SecurityBuffer * outputBuffer, Interop_SspiCli_ContextFlags__Enum outFlags, MethodInfo * method)); -DO_APP_FUNC(0x0284F070, int32_t, SSPIWrapper_InitializeSecurityContext_1, (SSPIInterface * secModule, SafeFreeCredentials * credential, SafeDeleteContext * context, String * targetName, Interop_SspiCli_ContextFlags__Enum inFlags, Interop_SspiCli_Endianness__Enum datarep, SecurityBuffer__Array * inputBuffers, SecurityBuffer * outputBuffer, Interop_SspiCli_ContextFlags__Enum outFlags, MethodInfo * method)); -DO_APP_FUNC(0x0284F2A0, int32_t, SSPIWrapper_AcceptSecurityContext, (SSPIInterface * secModule, SafeFreeCredentials * credential, SafeDeleteContext * context, Interop_SspiCli_ContextFlags__Enum inFlags, Interop_SspiCli_Endianness__Enum datarep, SecurityBuffer * inputBuffer, SecurityBuffer * outputBuffer, Interop_SspiCli_ContextFlags__Enum outFlags, MethodInfo * method)); -DO_APP_FUNC(0x0284F4C0, int32_t, SSPIWrapper_AcceptSecurityContext_1, (SSPIInterface * secModule, SafeFreeCredentials * credential, SafeDeleteContext * context, Interop_SspiCli_ContextFlags__Enum inFlags, Interop_SspiCli_Endianness__Enum datarep, SecurityBuffer__Array * inputBuffers, SecurityBuffer * outputBuffer, Interop_SspiCli_ContextFlags__Enum outFlags, MethodInfo * method)); -DO_APP_FUNC(0x0284F6E0, int32_t, SSPIWrapper_CompleteAuthToken, (SSPIInterface * secModule, SafeDeleteContext * context, SecurityBuffer__Array * inputBuffers, MethodInfo * method)); -DO_APP_FUNC(0x0284F800, int32_t, SSPIWrapper_ApplyControlToken, (SSPIInterface * secModule, SafeDeleteContext * context, SecurityBuffer__Array * inputBuffers, MethodInfo * method)); -DO_APP_FUNC(0x0284F920, int32_t, SSPIWrapper_QuerySecurityContextToken, (SSPIInterface * secModule, SafeDeleteContext * context, SecurityContextTokenHandle * token, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA938, SSPIWrapper_AcquireCredentialsHandle_2__MethodInfo); +DO_APP_FUNC(0x0284EE40, int32_t, SSPIWrapper_InitializeSecurityContext, (SSPIInterface * secModule, SafeFreeCredentials * * credential, SafeDeleteContext * * context, String * targetName, Interop_SspiCli_ContextFlags__Enum inFlags, Interop_SspiCli_Endianness__Enum datarep, SecurityBuffer * inputBuffer, SecurityBuffer * outputBuffer, Interop_SspiCli_ContextFlags__Enum * outFlags, MethodInfo * method)); +DO_APP_FUNC(0x0284F070, int32_t, SSPIWrapper_InitializeSecurityContext_1, (SSPIInterface * secModule, SafeFreeCredentials * credential, SafeDeleteContext * * context, String * targetName, Interop_SspiCli_ContextFlags__Enum inFlags, Interop_SspiCli_Endianness__Enum datarep, SecurityBuffer__Array * inputBuffers, SecurityBuffer * outputBuffer, Interop_SspiCli_ContextFlags__Enum * outFlags, MethodInfo * method)); +DO_APP_FUNC(0x0284F2A0, int32_t, SSPIWrapper_AcceptSecurityContext, (SSPIInterface * secModule, SafeFreeCredentials * * credential, SafeDeleteContext * * context, Interop_SspiCli_ContextFlags__Enum inFlags, Interop_SspiCli_Endianness__Enum datarep, SecurityBuffer * inputBuffer, SecurityBuffer * outputBuffer, Interop_SspiCli_ContextFlags__Enum * outFlags, MethodInfo * method)); +DO_APP_FUNC(0x0284F4C0, int32_t, SSPIWrapper_AcceptSecurityContext_1, (SSPIInterface * secModule, SafeFreeCredentials * credential, SafeDeleteContext * * context, Interop_SspiCli_ContextFlags__Enum inFlags, Interop_SspiCli_Endianness__Enum datarep, SecurityBuffer__Array * inputBuffers, SecurityBuffer * outputBuffer, Interop_SspiCli_ContextFlags__Enum * outFlags, MethodInfo * method)); +DO_APP_FUNC(0x0284F6E0, int32_t, SSPIWrapper_CompleteAuthToken, (SSPIInterface * secModule, SafeDeleteContext * * context, SecurityBuffer__Array * inputBuffers, MethodInfo * method)); +DO_APP_FUNC(0x0284F800, int32_t, SSPIWrapper_ApplyControlToken, (SSPIInterface * secModule, SafeDeleteContext * * context, SecurityBuffer__Array * inputBuffers, MethodInfo * method)); +DO_APP_FUNC(0x0284F920, int32_t, SSPIWrapper_QuerySecurityContextToken, (SSPIInterface * secModule, SafeDeleteContext * context, SecurityContextTokenHandle * * token, MethodInfo * method)); DO_APP_FUNC(0x0284F9F0, int32_t, SSPIWrapper_EncryptMessage, (SSPIInterface * secModule, SafeDeleteContext * context, SecurityBuffer__Array * input, uint32_t sequenceNumber, MethodInfo * method)); DO_APP_FUNC(0x0284FA20, int32_t, SSPIWrapper_DecryptMessage, (SSPIInterface * secModule, SafeDeleteContext * context, SecurityBuffer__Array * input, uint32_t sequenceNumber, MethodInfo * method)); DO_APP_FUNC(0x0284FA50, int32_t, SSPIWrapper_MakeSignature, (SSPIInterface * secModule, SafeDeleteContext * context, SecurityBuffer__Array * input, uint32_t sequenceNumber, MethodInfo * method)); DO_APP_FUNC(0x0284FA80, int32_t, SSPIWrapper_VerifySignature, (SSPIInterface * secModule, SafeDeleteContext * context, SecurityBuffer__Array * input, uint32_t sequenceNumber, MethodInfo * method)); DO_APP_FUNC(0x0284FAB0, int32_t, SSPIWrapper_EncryptDecryptHelper, (SSPIWrapper_OP__Enum op, SSPIInterface * secModule, SafeDeleteContext * context, SecurityBuffer__Array * input, uint32_t sequenceNumber, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA880, SSPIWrapper_EncryptDecryptHelper__MethodInfo); DO_APP_FUNC(0x028507F0, SafeFreeContextBufferChannelBinding *, SSPIWrapper_QueryContextChannelBinding, (SSPIInterface * secModule, SafeDeleteContext * securityContext, Interop_SspiCli_ContextAttribute__Enum contextAttribute, MethodInfo * method)); DO_APP_FUNC(0x02850AC0, Object *, SSPIWrapper_QueryContextAttributes, (SSPIInterface * secModule, SafeDeleteContext * securityContext, Interop_SspiCli_ContextAttribute__Enum contextAttribute, MethodInfo * method)); -DO_APP_FUNC(0x02850AE0, Object *, SSPIWrapper_QueryContextAttributes_1, (SSPIInterface * secModule, SafeDeleteContext * securityContext, Interop_SspiCli_ContextAttribute__Enum contextAttribute, int32_t errorCode, MethodInfo * method)); +DO_APP_FUNC(0x02850AE0, Object *, SSPIWrapper_QueryContextAttributes_1, (SSPIInterface * secModule, SafeDeleteContext * securityContext, Interop_SspiCli_ContextAttribute__Enum contextAttribute, int32_t * errorCode, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA890, SSPIWrapper_QueryContextAttributes_1__MethodInfo); DO_APP_FUNC(0x02851700, String *, SSPIWrapper_ErrorDescription, (int32_t errorCode, MethodInfo * method)); DO_APP_FUNC(0x02851940, void, SecPkgContext_Sizes__ctor, (SecPkgContext_Sizes * __this, Byte__Array * memory, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA7A0, SecPkgContext_Sizes__ctor__MethodInfo); DO_APP_FUNC(0x02851B00, void, SecPkgContext_Sizes__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02851B80, void, SecPkgContext_StreamSizes__ctor, (SecPkgContext_StreamSizes * __this, Byte__Array * memory, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA7B0, SecPkgContext_StreamSizes__ctor__MethodInfo); DO_APP_FUNC(0x02851D70, void, SecPkgContext_StreamSizes__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02851DF0, void, SecurityPackageInfoClass__ctor, (SecurityPackageInfoClass * __this, SafeHandle * safeHandle, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x028523B0, String *, SecurityPackageInfoClass_ToString, (SecurityPackageInfoClass * __this, MethodInfo * method)); @@ -29223,18 +33116,20 @@ DO_APP_FUNC(0x02852940, void, ContextAwareResult__ctor, (ContextAwareResult * __ DO_APP_FUNC(0x02852960, void, ContextAwareResult__ctor_1, (ContextAwareResult * __this, bool captureIdentity, bool forceCaptureContext, Object * myObject, Object * myState, AsyncCallback * myCallBack, MethodInfo * method)); DO_APP_FUNC(0x028529C0, void, ContextAwareResult__ctor_2, (ContextAwareResult * __this, bool captureIdentity, bool forceCaptureContext, bool threadSafeContextCopy, Object * myObject, Object * myState, AsyncCallback * myCallBack, MethodInfo * method)); DO_APP_FUNC(0x02852A30, ExecutionContext *, ContextAwareResult_get_ContextCopy, (ContextAwareResult * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA710, ContextAwareResult_get_ContextCopy__MethodInfo); DO_APP_FUNC(0x02852DB0, Object *, ContextAwareResult_StartPostingAsyncOp, (ContextAwareResult * __this, MethodInfo * method)); DO_APP_FUNC(0x02852EC0, Object *, ContextAwareResult_StartPostingAsyncOp_1, (ContextAwareResult * __this, bool lockCapture, MethodInfo * method)); DO_APP_FUNC(0x02852FE0, bool, ContextAwareResult_FinishPostingAsyncOp, (ContextAwareResult * __this, MethodInfo * method)); -DO_APP_FUNC(0x02853020, bool, ContextAwareResult_FinishPostingAsyncOp_1, (ContextAwareResult * __this, CallbackClosure * closure, MethodInfo * method)); +DO_APP_FUNC(0x02853020, bool, ContextAwareResult_FinishPostingAsyncOp_1, (ContextAwareResult * __this, CallbackClosure * * closure, MethodInfo * method)); DO_APP_FUNC(0x02853250, void, ContextAwareResult_Cleanup, (ContextAwareResult * __this, MethodInfo * method)); -DO_APP_FUNC(0x028532E0, bool, ContextAwareResult_CaptureOrComplete, (ContextAwareResult * __this, ExecutionContext * cachedContext, bool returnContext, MethodInfo * method)); +DO_APP_FUNC(0x028532E0, bool, ContextAwareResult_CaptureOrComplete, (ContextAwareResult * __this, ExecutionContext * * cachedContext, bool returnContext, MethodInfo * method)); DO_APP_FUNC(0x02853810, void, ContextAwareResult_Complete, (ContextAwareResult * __this, void * userToken, MethodInfo * method)); DO_APP_FUNC(0x02853B60, void, ContextAwareResult_CompleteCallback, (ContextAwareResult * __this, MethodInfo * method)); DO_APP_FUNC(0x003CB690, EndPoint *, ContextAwareResult_get_RemoteEndPoint, (ContextAwareResult * __this, MethodInfo * method)); DO_APP_FUNC(0x02853C30, void, ContextAwareResult_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ContextAwareResult_c__ctor, (ContextAwareResult_c * __this, MethodInfo * method)); DO_APP_FUNC(0x02853CE0, void, ContextAwareResult_c__Complete_b__17_0, (ContextAwareResult_c * __this, Object * s, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA698, ContextAwareResult_c__Complete_b__17_0__MethodInfo); DO_APP_FUNC(0x02853E20, void, CallbackClosure__ctor, (CallbackClosure * __this, ExecutionContext * context, AsyncCallback * callback, MethodInfo * method)); DO_APP_FUNC(0x02853EE0, bool, CallbackClosure_IsCompatible, (CallbackClosure * __this, AsyncCallback * callback, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, AsyncCallback *, CallbackClosure_get_AsyncCallback, (CallbackClosure * __this, MethodInfo * method)); @@ -29242,14 +33137,16 @@ DO_APP_FUNC(0x003BB3D0, ExecutionContext *, CallbackClosure_get_Context, (Callba DO_APP_FUNC(0x02853F20, ContextFlagsPal__Enum, ContextFlagsAdapterPal_GetContextFlagsPalFromInterop, (Interop_SspiCli_ContextFlags__Enum win32Flags, MethodInfo * method)); DO_APP_FUNC(0x02853FD0, Interop_SspiCli_ContextFlags__Enum, ContextFlagsAdapterPal_GetInteropFromContextFlagsPal, (ContextFlagsPal__Enum flags, MethodInfo * method)); DO_APP_FUNC(0x02854080, void, ContextFlagsAdapterPal__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x00977B80, void, ContextFlagsAdapterPal_ContextFlagMapping__ctor, (ContextFlagsAdapterPal_ContextFlagMapping__Boxed * __this, Interop_SspiCli_ContextFlags__Enum win32Flag, ContextFlagsPal__Enum contextFlag, MethodInfo * method)); +DO_APP_FUNC(0x00977B80, void, ContextFlagsAdapterPal_ContextFlagMapping__ctor, (ContextFlagsAdapterPal_ContextFlagMapping * __this, Interop_SspiCli_ContextFlags__Enum win32Flag, ContextFlagsPal__Enum contextFlag, MethodInfo * method)); DO_APP_FUNC(0x02854460, bool, ExceptionCheck_IsFatal, (Exception * exception, MethodInfo * method)); DO_APP_FUNC(0x028544F0, String *, HttpStatusDescription_Get, (HttpStatusCode__Enum code, MethodInfo * method)); DO_APP_FUNC(0x02854500, String *, HttpStatusDescription_Get_1, (int32_t code, MethodInfo * method)); DO_APP_FUNC(0x02854E10, String *, HttpValidationHelpers_CheckBadHeaderNameChars, (String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA570, HttpValidationHelpers_CheckBadHeaderNameChars__MethodInfo); DO_APP_FUNC(0x025A1150, bool, HttpValidationHelpers_ContainsNonAsciiChars, (String * token, MethodInfo * method)); DO_APP_FUNC(0x02854FB0, bool, HttpValidationHelpers_IsValidToken, (String * token, MethodInfo * method)); DO_APP_FUNC(0x02855080, String *, HttpValidationHelpers_CheckBadHeaderValueChars, (String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA560, HttpValidationHelpers_CheckBadHeaderValueChars__MethodInfo); DO_APP_FUNC(0x028553D0, bool, HttpValidationHelpers_IsInvalidMethodOrHeaderString, (String * stringValue, MethodInfo * method)); DO_APP_FUNC(0x02855520, void, HttpValidationHelpers__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02855600, void, NetEventSource_Enter, (Object * thisOrContextObject, FormattableString * formattableString, String * memberName, MethodInfo * method)); @@ -29285,11 +33182,17 @@ DO_APP_FUNC(0x02857620, int32_t, NetEventSource_GetHashCode, (Object * value, Me DO_APP_FUNC(0x02857640, Object *, NetEventSource_Format, (Object * value, MethodInfo * method)); DO_APP_FUNC(0x02857A70, String *, NetEventSource_Format_1, (FormattableString * s, MethodInfo * method)); DO_APP_FUNC(0x02857F10, void, NetEventSource_WriteEvent, (NetEventSource * __this, int32_t eventId, String * arg1, String * arg2, String * arg3, String * arg4, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA480, NetEventSource_WriteEvent__MethodInfo); DO_APP_FUNC(0x02857F50, void, NetEventSource_WriteEvent_1, (NetEventSource * __this, int32_t eventId, String * arg1, String * arg2, Byte__Array * arg3, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA488, NetEventSource_WriteEvent_1__MethodInfo); DO_APP_FUNC(0x02857FA0, void, NetEventSource_WriteEvent_2, (NetEventSource * __this, int32_t eventId, String * arg1, int32_t arg2, int32_t arg3, int32_t arg4, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA470, NetEventSource_WriteEvent_2__MethodInfo); DO_APP_FUNC(0x02857FE0, void, NetEventSource_WriteEvent_3, (NetEventSource * __this, int32_t eventId, String * arg1, int32_t arg2, String * arg3, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA468, NetEventSource_WriteEvent_3__MethodInfo); DO_APP_FUNC(0x02858020, void, NetEventSource_WriteEvent_4, (NetEventSource * __this, int32_t eventId, String * arg1, String * arg2, int32_t arg3, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA478, NetEventSource_WriteEvent_4__MethodInfo); DO_APP_FUNC(0x02858060, void, NetEventSource_WriteEvent_5, (NetEventSource * __this, int32_t eventId, String * arg1, String * arg2, String * arg3, int32_t arg4, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA498, NetEventSource_WriteEvent_5__MethodInfo); DO_APP_FUNC(0x028580A0, void, NetEventSource_AcquireDefaultCredential, (NetEventSource * __this, String * packageName, Interop_SspiCli_CredentialUse__Enum intent, MethodInfo * method)); DO_APP_FUNC(0x028580E0, void, NetEventSource_AcquireCredentialsHandle, (NetEventSource * __this, String * packageName, Interop_SspiCli_CredentialUse__Enum intent, Object * authdata, MethodInfo * method)); DO_APP_FUNC(0x00A8C430, void, NetEventSource_AcquireCredentialsHandle_1, (NetEventSource * __this, String * packageName, Interop_SspiCli_CredentialUse__Enum intent, String * authdata, MethodInfo * method)); @@ -29307,12 +33210,15 @@ DO_APP_FUNC(0x02858270, void, NetEventSource__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NetEventSource_Keywords__ctor, (NetEventSource_Keywords * __this, MethodInfo * method)); DO_APP_FUNC(0x0259A240, bool, RangeValidationHelpers_ValidateRange, (int32_t actual, int32_t fromAllowed, int32_t toAllowed, MethodInfo * method)); DO_APP_FUNC(0x02858320, void, RangeValidationHelpers_ValidateSegment, (ArraySegment_1_Byte_ segment, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA430, RangeValidationHelpers_ValidateSegment__MethodInfo); DO_APP_FUNC(0x028584B0, SecurityStatusPal, SecurityStatusAdapterPal_GetSecurityStatusPalFromNativeInt, (int32_t win32SecurityStatus, MethodInfo * method)); DO_APP_FUNC(0x02858520, SecurityStatusPal, SecurityStatusAdapterPal_GetSecurityStatusPalFromInterop, (Interop_SECURITY_STATUS__Enum win32SecurityStatus, bool attachException, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA418, SecurityStatusAdapterPal_GetSecurityStatusPalFromInterop__MethodInfo); DO_APP_FUNC(0x02858770, Interop_SECURITY_STATUS__Enum, SecurityStatusAdapterPal_GetInteropFromSecurityStatusPal, (SecurityStatusPal status, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA428, SecurityStatusAdapterPal_GetInteropFromSecurityStatusPal__MethodInfo); DO_APP_FUNC(0x02858880, void, SecurityStatusAdapterPal__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x0114D850, void, SecurityStatusPal__ctor, (SecurityStatusPal__Boxed * __this, SecurityStatusPalErrorCode__Enum errorCode, Exception * exception, MethodInfo * method)); -DO_APP_FUNC(0x02858E00, String *, SecurityStatusPal_ToString, (SecurityStatusPal__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0114D850, void, SecurityStatusPal__ctor, (SecurityStatusPal * __this, SecurityStatusPalErrorCode__Enum errorCode, Exception * exception, MethodInfo * method)); +DO_APP_FUNC(0x02858E00, String *, SecurityStatusPal_ToString, (SecurityStatusPal * __this, MethodInfo * method)); DO_APP_FUNC(0x0259A220, bool, TcpValidationHelpers_ValidatePortNumber, (int32_t port, MethodInfo * method)); DO_APP_FUNC(0x028590B0, void, TlsStream__ctor, (TlsStream * __this, NetworkStream * stream, Socket * socket, String * host, X509CertificateCollection * clientCertificates, MethodInfo * method)); DO_APP_FUNC(0x028592A0, void, TlsStream_AuthenticateAsClient, (TlsStream * __this, MethodInfo * method)); @@ -29330,30 +33236,39 @@ DO_APP_FUNC(0x02859800, void, Base64Stream__ctor_1, (Base64Stream * __this, Base DO_APP_FUNC(0x028598E0, Base64Stream_ReadStateInfo *, Base64Stream_get_ReadState, (Base64Stream * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7390, Base64WriteStateInfo *, Base64Stream_get_WriteState, (Base64Stream * __this, MethodInfo * method)); DO_APP_FUNC(0x02859980, IAsyncResult *, Base64Stream_BeginRead, (Base64Stream * __this, Byte__Array * buffer, int32_t offset, int32_t count, AsyncCallback * callback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA3B8, Base64Stream_BeginRead__MethodInfo); DO_APP_FUNC(0x02859BF0, IAsyncResult *, Base64Stream_BeginWrite, (Base64Stream * __this, Byte__Array * buffer, int32_t offset, int32_t count, AsyncCallback * callback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA3C8, Base64Stream_BeginWrite__MethodInfo); DO_APP_FUNC(0x02859E60, void, Base64Stream_Close, (Base64Stream * __this, MethodInfo * method)); DO_APP_FUNC(0x0285A100, int32_t, Base64Stream_DecodeBytes, (Base64Stream * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA408, Base64Stream_DecodeBytes__MethodInfo); DO_APP_FUNC(0x0285A3A0, int32_t, Base64Stream_EncodeBytes, (Base64Stream * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x0285A3D0, int32_t, Base64Stream_EncodeBytes_1, (Base64Stream * __this, Byte__Array * buffer, int32_t offset, int32_t count, bool dontDeferFinalBytes, bool shouldAppendSpaceToCRLF, MethodInfo * method)); DO_APP_FUNC(0x00A1B820, Stream *, Base64Stream_GetStream, (Base64Stream * __this, MethodInfo * method)); DO_APP_FUNC(0x026AE490, String *, Base64Stream_GetEncodedString, (Base64Stream * __this, MethodInfo * method)); DO_APP_FUNC(0x0285B000, int32_t, Base64Stream_EndRead, (Base64Stream * __this, IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA3E0, Base64Stream_EndRead__MethodInfo); DO_APP_FUNC(0x0285B100, void, Base64Stream_EndWrite, (Base64Stream * __this, IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA3F0, Base64Stream_EndWrite__MethodInfo); DO_APP_FUNC(0x026AE5B0, void, Base64Stream_Flush, (Base64Stream * __this, MethodInfo * method)); DO_APP_FUNC(0x0285B200, void, Base64Stream_FlushInternal, (Base64Stream * __this, MethodInfo * method)); DO_APP_FUNC(0x0285B250, int32_t, Base64Stream_Read, (Base64Stream * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA3F8, Base64Stream_Read__MethodInfo); DO_APP_FUNC(0x0285B480, void, Base64Stream_Write, (Base64Stream * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA3E8, Base64Stream_Write__MethodInfo); DO_APP_FUNC(0x0285B670, void, Base64Stream__cctor, (MethodInfo * method)); DO_APP_FUNC(0x026AE9F0, void, Base64Stream_ReadAsyncResult__ctor, (Base64Stream_ReadAsyncResult * __this, Base64Stream * parent, Byte__Array * buffer, int32_t offset, int32_t count, AsyncCallback * callback, Object * state, MethodInfo * method)); DO_APP_FUNC(0x0285B810, bool, Base64Stream_ReadAsyncResult_CompleteRead, (Base64Stream_ReadAsyncResult * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x0285B8D0, void, Base64Stream_ReadAsyncResult_Read, (Base64Stream_ReadAsyncResult * __this, MethodInfo * method)); DO_APP_FUNC(0x0285BA70, void, Base64Stream_ReadAsyncResult_OnRead, (IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA360, Base64Stream_ReadAsyncResult_OnRead__MethodInfo); DO_APP_FUNC(0x0285BBA0, int32_t, Base64Stream_ReadAsyncResult_End, (IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x0285BC20, void, Base64Stream_ReadAsyncResult__cctor, (MethodInfo * method)); DO_APP_FUNC(0x026AE9F0, void, Base64Stream_WriteAsyncResult__ctor, (Base64Stream_WriteAsyncResult * __this, Base64Stream * parent, Byte__Array * buffer, int32_t offset, int32_t count, AsyncCallback * callback, Object * state, MethodInfo * method)); DO_APP_FUNC(0x0285BD00, void, Base64Stream_WriteAsyncResult_Write, (Base64Stream_WriteAsyncResult * __this, MethodInfo * method)); DO_APP_FUNC(0x026AEB00, void, Base64Stream_WriteAsyncResult_CompleteWrite, (Base64Stream_WriteAsyncResult * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x0285BFA0, void, Base64Stream_WriteAsyncResult_OnWrite, (IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA3B0, Base64Stream_WriteAsyncResult_OnWrite__MethodInfo); DO_APP_FUNC(0x0285C130, void, Base64Stream_WriteAsyncResult_End, (IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x0285C1A0, void, Base64Stream_WriteAsyncResult__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003BCD20, uint8_t, Base64Stream_ReadStateInfo_get_Val, (Base64Stream_ReadStateInfo * __this, MethodInfo * method)); @@ -29364,35 +33279,53 @@ DO_APP_FUNC(0x003AE050, void, Base64Stream_ReadStateInfo__ctor, (Base64Stream_Re DO_APP_FUNC(0x0285C280, void, ClosableStream__ctor, (ClosableStream * __this, Stream * stream, EventHandler * onClose, MethodInfo * method)); DO_APP_FUNC(0x0285C2F0, void, ClosableStream_Close, (ClosableStream * __this, MethodInfo * method)); DO_APP_FUNC(0x0285C370, void, DelegatedStream__ctor, (DelegatedStream * __this, Stream * stream, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA388, DelegatedStream__ctor__MethodInfo); DO_APP_FUNC(0x003BB3B0, Stream *, DelegatedStream_get_BaseStream, (DelegatedStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01E14640, bool, DelegatedStream_get_CanRead, (DelegatedStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01E14670, bool, DelegatedStream_get_CanSeek, (DelegatedStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01E146A0, bool, DelegatedStream_get_CanWrite, (DelegatedStream * __this, MethodInfo * method)); DO_APP_FUNC(0x0285C520, int64_t, DelegatedStream_get_Length, (DelegatedStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA380, DelegatedStream_get_Length__MethodInfo); DO_APP_FUNC(0x0285C5C0, int64_t, DelegatedStream_get_Position, (DelegatedStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA3A0, DelegatedStream_get_Position__MethodInfo); DO_APP_FUNC(0x0285C660, void, DelegatedStream_set_Position, (DelegatedStream * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA3A8, DelegatedStream_set_Position__MethodInfo); DO_APP_FUNC(0x0285C710, IAsyncResult *, DelegatedStream_BeginRead, (DelegatedStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, AsyncCallback * callback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA398, DelegatedStream_BeginRead__MethodInfo); DO_APP_FUNC(0x0285C800, IAsyncResult *, DelegatedStream_BeginWrite, (DelegatedStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, AsyncCallback * callback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA318, DelegatedStream_BeginWrite__MethodInfo); DO_APP_FUNC(0x0285C8F0, void, DelegatedStream_Close, (DelegatedStream * __this, MethodInfo * method)); DO_APP_FUNC(0x0285C920, int32_t, DelegatedStream_EndRead, (DelegatedStream * __this, IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA300, DelegatedStream_EndRead__MethodInfo); DO_APP_FUNC(0x0285C9D0, void, DelegatedStream_EndWrite, (DelegatedStream * __this, IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA308, DelegatedStream_EndWrite__MethodInfo); DO_APP_FUNC(0x01E146D0, void, DelegatedStream_Flush, (DelegatedStream * __this, MethodInfo * method)); DO_APP_FUNC(0x026D0CF0, Task *, DelegatedStream_FlushAsync, (DelegatedStream * __this, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x0285CA80, int32_t, DelegatedStream_Read, (DelegatedStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA330, DelegatedStream_Read__MethodInfo); DO_APP_FUNC(0x0285CB60, Task_1_System_Int32_ *, DelegatedStream_ReadAsync, (DelegatedStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, CancellationToken cancellationToken, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA338, DelegatedStream_ReadAsync__MethodInfo); DO_APP_FUNC(0x0285CC40, int64_t, DelegatedStream_Seek, (DelegatedStream * __this, int64_t offset, SeekOrigin__Enum origin, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA320, DelegatedStream_Seek__MethodInfo); DO_APP_FUNC(0x0285CD00, void, DelegatedStream_SetLength, (DelegatedStream * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA328, DelegatedStream_SetLength__MethodInfo); DO_APP_FUNC(0x0285CDB0, void, DelegatedStream_Write, (DelegatedStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA2E0, DelegatedStream_Write__MethodInfo); DO_APP_FUNC(0x0285CE80, Task *, DelegatedStream_WriteAsync, (DelegatedStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, CancellationToken cancellationToken, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA2E8, DelegatedStream_WriteAsync__MethodInfo); DO_APP_FUNC(0x0285CF60, void, TrackingStringDictionary__ctor, (TrackingStringDictionary * __this, MethodInfo * method)); DO_APP_FUNC(0x0285CF80, void, TrackingStringDictionary__ctor_1, (TrackingStringDictionary * __this, bool isReadOnly, MethodInfo * method)); DO_APP_FUNC(0x006B5710, bool, TrackingStringDictionary_get_IsChanged, (TrackingStringDictionary * __this, MethodInfo * method)); DO_APP_FUNC(0x006B5720, void, TrackingStringDictionary_set_IsChanged, (TrackingStringDictionary * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x0285CFB0, void, TrackingStringDictionary_Add, (TrackingStringDictionary * __this, String * key, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA2D0, TrackingStringDictionary_Add__MethodInfo); DO_APP_FUNC(0x0285D0C0, void, TrackingStringDictionary_Clear, (TrackingStringDictionary * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA2D8, TrackingStringDictionary_Clear__MethodInfo); DO_APP_FUNC(0x0285D150, void, TrackingStringDictionary_Remove, (TrackingStringDictionary * __this, String * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA2F0, TrackingStringDictionary_Remove__MethodInfo); DO_APP_FUNC(0x0285D260, String *, TrackingStringDictionary_get_Item, (TrackingStringDictionary * __this, String * key, MethodInfo * method)); DO_APP_FUNC(0x0285D270, void, TrackingStringDictionary_set_Item, (TrackingStringDictionary * __this, String * key, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA2F8, TrackingStringDictionary_set_Item__MethodInfo); DO_APP_FUNC(0x0285D380, void, TrackingValidationObjectDictionary__ctor, (TrackingValidationObjectDictionary * __this, Dictionary_2_System_String_System_Net_TrackingValidationObjectDictionary_ValidateAndParseValue_ * validators, MethodInfo * method)); DO_APP_FUNC(0x0285D3F0, void, TrackingValidationObjectDictionary_PersistValue, (TrackingValidationObjectDictionary * __this, String * key, String * value, bool addValue, MethodInfo * method)); DO_APP_FUNC(0x00424C10, bool, TrackingValidationObjectDictionary_get_IsChanged, (TrackingValidationObjectDictionary * __this, MethodInfo * method)); @@ -29417,26 +33350,32 @@ DO_APP_FUNC(0x0285DED0, void, IPAddress_set_PrivateAddress, (IPAddress * __this, DO_APP_FUNC(0x003BCD50, uint32_t, IPAddress_get_PrivateScopeId, (IPAddress * __this, MethodInfo * method)); DO_APP_FUNC(0x0285DED0, void, IPAddress_set_PrivateScopeId, (IPAddress * __this, uint32_t value, MethodInfo * method)); DO_APP_FUNC(0x0285DF40, void, IPAddress__ctor, (IPAddress * __this, int64_t newAddress, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA348, IPAddress__ctor__MethodInfo); DO_APP_FUNC(0x0285DFC0, void, IPAddress__ctor_1, (IPAddress * __this, Byte__Array * address, int64_t scopeid, MethodInfo * method)); DO_APP_FUNC(0x0285E070, void, IPAddress__ctor_2, (IPAddress * __this, ReadOnlySpan_1_Byte_ address, int64_t scopeid, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA2B0, IPAddress__ctor_2__MethodInfo); DO_APP_FUNC(0x0285E2B0, void, IPAddress__ctor_3, (IPAddress * __this, uint16_t * numbers, int32_t numbersLength, uint32_t scopeid, MethodInfo * method)); DO_APP_FUNC(0x0285E400, void, IPAddress__ctor_4, (IPAddress * __this, UInt16__Array * numbers, uint32_t scopeid, MethodInfo * method)); DO_APP_FUNC(0x0285E4D0, void, IPAddress__ctor_5, (IPAddress * __this, Byte__Array * address, MethodInfo * method)); DO_APP_FUNC(0x0285E570, void, IPAddress__ctor_6, (IPAddress * __this, ReadOnlySpan_1_Byte_ address, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA290, IPAddress__ctor_6__MethodInfo); DO_APP_FUNC(0x0285DED0, void, IPAddress__ctor_7, (IPAddress * __this, int32_t newAddress, MethodInfo * method)); -DO_APP_FUNC(0x0285E760, bool, IPAddress_TryParse, (String * ipString, IPAddress * address, MethodInfo * method)); -DO_APP_FUNC(0x0285E8A0, bool, IPAddress_TryParse_1, (ReadOnlySpan_1_Char_ ipSpan, IPAddress * address, MethodInfo * method)); +DO_APP_FUNC(0x0285E760, bool, IPAddress_TryParse, (String * ipString, IPAddress * * address, MethodInfo * method)); +DO_APP_FUNC(0x0285E8A0, bool, IPAddress_TryParse_1, (ReadOnlySpan_1_Char_ ipSpan, IPAddress * * address, MethodInfo * method)); DO_APP_FUNC(0x0285E920, IPAddress *, IPAddress_Parse, (String * ipString, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA298, IPAddress_Parse__MethodInfo); DO_APP_FUNC(0x0285E9E0, IPAddress *, IPAddress_Parse_1, (ReadOnlySpan_1_Char_ ipSpan, MethodInfo * method)); -DO_APP_FUNC(0x0285EA00, bool, IPAddress_TryWriteBytes, (IPAddress * __this, Span_1_Byte_ destination, int32_t bytesWritten, MethodInfo * method)); +DO_APP_FUNC(0x0285EA00, bool, IPAddress_TryWriteBytes, (IPAddress * __this, Span_1_Byte_ destination, int32_t * bytesWritten, MethodInfo * method)); DO_APP_FUNC(0x0285EB00, void, IPAddress_WriteIPv6Bytes, (IPAddress * __this, Span_1_Byte_ destination, MethodInfo * method)); DO_APP_FUNC(0x0285EBA0, void, IPAddress_WriteIPv4Bytes, (IPAddress * __this, Span_1_Byte_ destination, MethodInfo * method)); DO_APP_FUNC(0x0285EBF0, Byte__Array *, IPAddress_GetAddressBytes, (IPAddress * __this, MethodInfo * method)); DO_APP_FUNC(0x0285EDA0, AddressFamily__Enum, IPAddress_get_AddressFamily, (IPAddress * __this, MethodInfo * method)); DO_APP_FUNC(0x0285EDC0, int64_t, IPAddress_get_ScopeId, (IPAddress * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA2C0, IPAddress_get_ScopeId__MethodInfo); DO_APP_FUNC(0x0285EE30, void, IPAddress_set_ScopeId, (IPAddress * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA2C8, IPAddress_set_ScopeId__MethodInfo); DO_APP_FUNC(0x0285EEF0, String *, IPAddress_ToString, (IPAddress * __this, MethodInfo * method)); -DO_APP_FUNC(0x0285EFD0, bool, IPAddress_TryFormat, (IPAddress * __this, Span_1_Char_ destination, int32_t charsWritten, MethodInfo * method)); +DO_APP_FUNC(0x0285EFD0, bool, IPAddress_TryFormat, (IPAddress * __this, Span_1_Char_ destination, int32_t * charsWritten, MethodInfo * method)); DO_APP_FUNC(0x0285F100, int64_t, IPAddress_HostToNetworkOrder, (int64_t host, MethodInfo * method)); DO_APP_FUNC(0x0285F180, int32_t, IPAddress_HostToNetworkOrder_1, (int32_t host, MethodInfo * method)); DO_APP_FUNC(0x0285F1E0, int16_t, IPAddress_HostToNetworkOrder_2, (int16_t host, MethodInfo * method)); @@ -29450,26 +33389,30 @@ DO_APP_FUNC(0x0285F5A0, bool, IPAddress_get_IsIPv6SiteLocal, (IPAddress * __this DO_APP_FUNC(0x0285F5E0, bool, IPAddress_get_IsIPv6Teredo, (IPAddress * __this, MethodInfo * method)); DO_APP_FUNC(0x0285F620, bool, IPAddress_get_IsIPv4MappedToIPv6, (IPAddress * __this, MethodInfo * method)); DO_APP_FUNC(0x0285F680, int64_t, IPAddress_get_Address, (IPAddress * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA270, IPAddress_get_Address__MethodInfo); DO_APP_FUNC(0x0285F6F0, void, IPAddress_set_Address, (IPAddress * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA268, IPAddress_set_Address__MethodInfo); DO_APP_FUNC(0x0285F7F0, bool, IPAddress_Equals, (IPAddress * __this, Object * comparandObj, bool compareScopeId, MethodInfo * method)); DO_APP_FUNC(0x0285F930, bool, IPAddress_Equals_1, (IPAddress * __this, Object * comparand, MethodInfo * method)); DO_APP_FUNC(0x0285F940, int32_t, IPAddress_GetHashCode, (IPAddress * __this, MethodInfo * method)); DO_APP_FUNC(0x0285FE50, IPAddress *, IPAddress_MapToIPv6, (IPAddress * __this, MethodInfo * method)); DO_APP_FUNC(0x02860000, IPAddress *, IPAddress_MapToIPv4, (IPAddress * __this, MethodInfo * method)); DO_APP_FUNC(0x028600E0, Byte__Array *, IPAddress_ThrowAddressNullException, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA288, IPAddress_ThrowAddressNullException__MethodInfo); DO_APP_FUNC(0x02860140, void, IPAddress__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02860810, void, IPAddress_ReadOnlyIPAddress__ctor, (IPAddress_ReadOnlyIPAddress * __this, int64_t newAddress, MethodInfo * method)); DO_APP_FUNC(0x02860870, IPAddress *, IPAddressParser_Parse, (ReadOnlySpan_1_Char_ ipSpan, bool tryParse, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5678, IPAddressParser_Parse__MethodInfo); DO_APP_FUNC(0x02860D90, String *, IPAddressParser_IPv4AddressToString, (uint32_t address, MethodInfo * method)); DO_APP_FUNC(0x02860DF0, void, IPAddressParser_IPv4AddressToString_1, (uint32_t address, StringBuilder * destination, MethodInfo * method)); -DO_APP_FUNC(0x02860E60, bool, IPAddressParser_IPv4AddressToString_2, (uint32_t address, Span_1_Char_ formatted, int32_t charsWritten, MethodInfo * method)); +DO_APP_FUNC(0x02860E60, bool, IPAddressParser_IPv4AddressToString_2, (uint32_t address, Span_1_Char_ formatted, int32_t * charsWritten, MethodInfo * method)); DO_APP_FUNC(0x02860EF0, int32_t, IPAddressParser_IPv4AddressToStringHelper, (uint32_t address, uint16_t * addressString, MethodInfo * method)); DO_APP_FUNC(0x02861120, String *, IPAddressParser_IPv6AddressToString, (UInt16__Array * address, uint32_t scopeId, MethodInfo * method)); -DO_APP_FUNC(0x02861180, bool, IPAddressParser_IPv6AddressToString_1, (UInt16__Array * address, uint32_t scopeId, Span_1_Char_ destination, int32_t charsWritten, MethodInfo * method)); +DO_APP_FUNC(0x02861180, bool, IPAddressParser_IPv6AddressToString_1, (UInt16__Array * address, uint32_t scopeId, Span_1_Char_ destination, int32_t * charsWritten, MethodInfo * method)); DO_APP_FUNC(0x02861250, StringBuilder *, IPAddressParser_IPv6AddressToStringHelper, (UInt16__Array * address, uint32_t scopeId, MethodInfo * method)); -DO_APP_FUNC(0x028616A0, void, IPAddressParser_FormatIPv4AddressNumber, (int32_t number, uint16_t * addressString, int32_t offset, MethodInfo * method)); -DO_APP_FUNC(0x02861750, bool, IPAddressParser_Ipv4StringToAddress, (ReadOnlySpan_1_Char_ ipSpan, int64_t address, MethodInfo * method)); -DO_APP_FUNC(0x02861820, bool, IPAddressParser_Ipv6StringToAddress, (ReadOnlySpan_1_Char_ ipSpan, uint16_t * numbers, int32_t numbersLength, uint32_t scope, MethodInfo * method)); +DO_APP_FUNC(0x028616A0, void, IPAddressParser_FormatIPv4AddressNumber, (int32_t number, uint16_t * addressString, int32_t * offset, MethodInfo * method)); +DO_APP_FUNC(0x02861750, bool, IPAddressParser_Ipv4StringToAddress, (ReadOnlySpan_1_Char_ ipSpan, int64_t * address, MethodInfo * method)); +DO_APP_FUNC(0x02861820, bool, IPAddressParser_Ipv6StringToAddress, (ReadOnlySpan_1_Char_ ipSpan, uint16_t * numbers, int32_t numbersLength, uint32_t * scope, MethodInfo * method)); DO_APP_FUNC(0x02861960, void, IPAddressParser_AppendSections, (UInt16__Array * address, int32_t fromInclusive, int32_t toExclusive, StringBuilder * buffer, MethodInfo * method)); DO_APP_FUNC(0x02861B30, void, IPAddressParser_AppendHex, (uint16_t value, StringBuilder * buffer, MethodInfo * method)); DO_APP_FUNC(0x02861BE0, uint32_t, IPAddressParser_ExtractIPv4Address, (UInt16__Array * address, MethodInfo * method)); @@ -29477,14 +33420,18 @@ DO_APP_FUNC(0x01B2E760, uint16_t, IPAddressParser_Reverse, (uint16_t number, Met DO_APP_FUNC(0x003AE050, void, IPAddressParser__ctor, (IPAddressParser * __this, MethodInfo * method)); DO_APP_FUNC(0x02861C30, AddressFamily__Enum, IPEndPoint_get_AddressFamily, (IPEndPoint * __this, MethodInfo * method)); DO_APP_FUNC(0x02861C60, void, IPEndPoint__ctor, (IPEndPoint * __this, int64_t address, int32_t port, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB56D8, IPEndPoint__ctor__MethodInfo); DO_APP_FUNC(0x02861D90, void, IPEndPoint__ctor_1, (IPEndPoint * __this, IPAddress * address, int32_t port, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB56F0, IPEndPoint__ctor_1__MethodInfo); DO_APP_FUNC(0x003BB3C0, IPAddress *, IPEndPoint_get_Address, (IPEndPoint * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, IPEndPoint_set_Address, (IPEndPoint * __this, IPAddress * value, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, IPEndPoint_get_Port, (IPEndPoint * __this, MethodInfo * method)); DO_APP_FUNC(0x02861EB0, void, IPEndPoint_set_Port, (IPEndPoint * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB56E8, IPEndPoint_set_Port__MethodInfo); DO_APP_FUNC(0x02861F30, String *, IPEndPoint_ToString, (IPEndPoint * __this, MethodInfo * method)); DO_APP_FUNC(0x028620C0, SocketAddress *, IPEndPoint_Serialize, (IPEndPoint * __this, MethodInfo * method)); DO_APP_FUNC(0x02862170, EndPoint *, IPEndPoint_Create, (IPEndPoint * __this, SocketAddress * socketAddress, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB56B0, IPEndPoint_Create__MethodInfo); DO_APP_FUNC(0x02862480, bool, IPEndPoint_Equals, (IPEndPoint * __this, Object * comparand, MethodInfo * method)); DO_APP_FUNC(0x02862530, int32_t, IPEndPoint_GetHashCode, (IPEndPoint * __this, MethodInfo * method)); DO_APP_FUNC(0x02862570, void, IPEndPoint__cctor, (MethodInfo * method)); @@ -29502,16 +33449,22 @@ DO_APP_FUNC(0x02863060, Exception *, CommandStream_GenerateException_1, (Command DO_APP_FUNC(0x02863120, void, CommandStream_InitCommandPipeline, (CommandStream * __this, WebRequest * request, CommandStream_PipelineEntry__Array * commands, bool isAsync, MethodInfo * method)); DO_APP_FUNC(0x028632F0, void, CommandStream_CheckContinuePipeline, (CommandStream * __this, MethodInfo * method)); DO_APP_FUNC(0x02863330, Stream *, CommandStream_ContinueCommandPipeline, (CommandStream * __this, MethodInfo * method)); -DO_APP_FUNC(0x02863730, bool, CommandStream_PostSendCommandProcessing, (CommandStream * __this, Stream * stream, MethodInfo * method)); -DO_APP_FUNC(0x028638A0, bool, CommandStream_PostReadCommandProcessing, (CommandStream * __this, Stream * stream, MethodInfo * method)); -DO_APP_FUNC(0x003CB690, CommandStream_PipelineInstruction__Enum, CommandStream_PipelineCallback, (CommandStream * __this, CommandStream_PipelineEntry * entry, ResponseDescription * response, bool timeout, Stream * stream, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5630, CommandStream_ContinueCommandPipeline__MethodInfo); +DO_APP_FUNC(0x02863730, bool, CommandStream_PostSendCommandProcessing, (CommandStream * __this, Stream * * stream, MethodInfo * method)); +DO_APP_FUNC(0x028638A0, bool, CommandStream_PostReadCommandProcessing, (CommandStream * __this, Stream * * stream, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB55A8, CommandStream_PostReadCommandProcessing__MethodInfo); +DO_APP_FUNC(0x003CB690, CommandStream_PipelineInstruction__Enum, CommandStream_PipelineCallback, (CommandStream * __this, CommandStream_PipelineEntry * entry, ResponseDescription * response, bool timeout, Stream * * stream, MethodInfo * method)); DO_APP_FUNC(0x02863AF0, void, CommandStream_ReadCallback, (IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB55E0, CommandStream_ReadCallback__MethodInfo); DO_APP_FUNC(0x02863CF0, void, CommandStream_WriteCallback, (IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB55D8, CommandStream_WriteCallback__MethodInfo); DO_APP_FUNC(0x003C91E0, Encoding *, CommandStream_get_Encoding, (CommandStream * __this, MethodInfo * method)); DO_APP_FUNC(0x02863E80, void, CommandStream_set_Encoding, (CommandStream * __this, Encoding * value, MethodInfo * method)); -DO_APP_FUNC(0x0041AF00, bool, CommandStream_CheckValid, (CommandStream * __this, ResponseDescription * response, int32_t validThrough, int32_t completeLength, MethodInfo * method)); +DO_APP_FUNC(0x0041AF00, bool, CommandStream_CheckValid, (CommandStream * __this, ResponseDescription * response, int32_t * validThrough, int32_t * completeLength, MethodInfo * method)); DO_APP_FUNC(0x02863F70, ResponseDescription *, CommandStream_ReceiveCommandResponse, (CommandStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5598, CommandStream_ReceiveCommandResponse__MethodInfo); DO_APP_FUNC(0x028641F0, void, CommandStream_ReceiveCommandResponseCallback, (CommandStream * __this, ReceiveState * state, int32_t bytesRead, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB55C8, CommandStream_ReceiveCommandResponseCallback__MethodInfo); DO_APP_FUNC(0x02864930, void, CommandStream__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, CommandStream_PipelineEntry__ctor, (CommandStream_PipelineEntry * __this, String * command, MethodInfo * method)); DO_APP_FUNC(0x00A5E870, void, CommandStream_PipelineEntry__ctor_1, (CommandStream_PipelineEntry * __this, String * command, CommandStream_PipelineEntryFlags__Enum flags, MethodInfo * method)); @@ -29528,14 +33481,21 @@ DO_APP_FUNC(0x02864F70, void, FtpControlStream_set_Credentials, (FtpControlStrea DO_APP_FUNC(0x02865070, void, FtpControlStream__ctor, (FtpControlStream * __this, TcpClient * client, MethodInfo * method)); DO_APP_FUNC(0x02865150, void, FtpControlStream_AbortConnect, (FtpControlStream * __this, MethodInfo * method)); DO_APP_FUNC(0x02865170, void, FtpControlStream_AcceptCallback, (IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5518, FtpControlStream_AcceptCallback__MethodInfo); DO_APP_FUNC(0x028654B0, void, FtpControlStream_ConnectCallback, (IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5388, FtpControlStream_ConnectCallback__MethodInfo); DO_APP_FUNC(0x028655C0, void, FtpControlStream_SSLHandshakeCallback, (IAsyncResult * asyncResult, MethodInfo * method)); -DO_APP_FUNC(0x028656F0, CommandStream_PipelineInstruction__Enum, FtpControlStream_QueueOrCreateFtpDataStream, (FtpControlStream * __this, Stream * stream, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5380, FtpControlStream_SSLHandshakeCallback__MethodInfo); +DO_APP_FUNC(0x028656F0, CommandStream_PipelineInstruction__Enum, FtpControlStream_QueueOrCreateFtpDataStream, (FtpControlStream * __this, Stream * * stream, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5508, FtpControlStream_QueueOrCreateFtpDataStream__MethodInfo); DO_APP_FUNC(0x02865B40, void, FtpControlStream_ClearState, (FtpControlStream * __this, MethodInfo * method)); -DO_APP_FUNC(0x02865D90, CommandStream_PipelineInstruction__Enum, FtpControlStream_PipelineCallback, (FtpControlStream * __this, CommandStream_PipelineEntry * entry, ResponseDescription * response, bool timeout, Stream * stream, MethodInfo * method)); +DO_APP_FUNC(0x02865D90, CommandStream_PipelineInstruction__Enum, FtpControlStream_PipelineCallback, (FtpControlStream * __this, CommandStream_PipelineEntry * entry, ResponseDescription * response, bool timeout, Stream * * stream, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5458, FtpControlStream_PipelineCallback__MethodInfo); DO_APP_FUNC(0x02866AA0, CommandStream_PipelineEntry__Array *, FtpControlStream_BuildCommandsList, (FtpControlStream * __this, WebRequest * req, MethodInfo * method)); -DO_APP_FUNC(0x028683A0, CommandStream_PipelineInstruction__Enum, FtpControlStream_QueueOrCreateDataConection, (FtpControlStream * __this, CommandStream_PipelineEntry * entry, ResponseDescription * response, bool timeout, Stream * stream, bool isSocketReady, MethodInfo * method)); -DO_APP_FUNC(0x02868BF0, void, FtpControlStream_GetPathInfo, (FtpControlStream_GetPathOption__Enum pathOption, Uri * uri, String * path, String * directory, String * filename, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5498, FtpControlStream_BuildCommandsList__MethodInfo); +DO_APP_FUNC(0x028683A0, CommandStream_PipelineInstruction__Enum, FtpControlStream_QueueOrCreateDataConection, (FtpControlStream * __this, CommandStream_PipelineEntry * entry, ResponseDescription * response, bool timeout, Stream * * stream, bool * isSocketReady, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB53D8, FtpControlStream_QueueOrCreateDataConection__MethodInfo); +DO_APP_FUNC(0x02868BF0, void, FtpControlStream_GetPathInfo, (FtpControlStream_GetPathOption__Enum pathOption, Uri * uri, String * * path, String * * directory, String * * filename, MethodInfo * method)); DO_APP_FUNC(0x02868F90, String *, FtpControlStream_FormatAddress, (FtpControlStream * __this, IPAddress * address, int32_t Port, MethodInfo * method)); DO_APP_FUNC(0x02869190, String *, FtpControlStream_FormatAddressV6, (FtpControlStream * __this, IPAddress * address, int32_t port, MethodInfo * method)); DO_APP_FUNC(0x006C5270, int64_t, FtpControlStream_get_ContentLength, (FtpControlStream * __this, MethodInfo * method)); @@ -29545,25 +33505,33 @@ DO_APP_FUNC(0x02869370, String *, FtpControlStream_get_BannerMessage, (FtpContro DO_APP_FUNC(0x028693A0, String *, FtpControlStream_get_WelcomeMessage, (FtpControlStream * __this, MethodInfo * method)); DO_APP_FUNC(0x028693D0, String *, FtpControlStream_get_ExitMessage, (FtpControlStream * __this, MethodInfo * method)); DO_APP_FUNC(0x02869400, int64_t, FtpControlStream_GetContentLengthFrom213Response, (FtpControlStream * __this, String * responseString, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB53A8, FtpControlStream_GetContentLengthFrom213Response__MethodInfo); DO_APP_FUNC(0x028695D0, DateTime, FtpControlStream_GetLastModifiedFrom213Response, (FtpControlStream * __this, String * str, MethodInfo * method)); DO_APP_FUNC(0x02869BD0, void, FtpControlStream_TryUpdateResponseUri, (FtpControlStream * __this, String * str, FtpWebRequest * request, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB53E0, FtpControlStream_TryUpdateResponseUri__MethodInfo); DO_APP_FUNC(0x0286A2F0, void, FtpControlStream_TryUpdateContentLength, (FtpControlStream * __this, String * str, MethodInfo * method)); DO_APP_FUNC(0x0286A400, String *, FtpControlStream_GetLoginDirectory, (FtpControlStream * __this, String * str, MethodInfo * method)); DO_APP_FUNC(0x0286A4B0, int32_t, FtpControlStream_GetPortV4, (FtpControlStream * __this, String * responseString, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5370, FtpControlStream_GetPortV4__MethodInfo); DO_APP_FUNC(0x0286A800, int32_t, FtpControlStream_GetPortV6, (FtpControlStream * __this, String * responseString, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5378, FtpControlStream_GetPortV6__MethodInfo); DO_APP_FUNC(0x0286AA50, void, FtpControlStream_CreateFtpListenerSocket, (FtpControlStream * __this, FtpWebRequest * request, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5358, FtpControlStream_CreateFtpListenerSocket__MethodInfo); DO_APP_FUNC(0x0286AD30, String *, FtpControlStream_GetPortCommandLine, (FtpControlStream * __this, FtpWebRequest * request, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5360, FtpControlStream_GetPortCommandLine__MethodInfo); DO_APP_FUNC(0x0286AEF0, String *, FtpControlStream_FormatFtpCommand, (FtpControlStream * __this, String * command, String * parameter, MethodInfo * method)); DO_APP_FUNC(0x0286B050, Socket *, FtpControlStream_CreateFtpDataSocket, (FtpControlStream * __this, FtpWebRequest * request, Socket * templateSocket, MethodInfo * method)); -DO_APP_FUNC(0x0286B0F0, bool, FtpControlStream_CheckValid, (FtpControlStream * __this, ResponseDescription * response, int32_t validThrough, int32_t completeLength, MethodInfo * method)); +DO_APP_FUNC(0x0286B0F0, bool, FtpControlStream_CheckValid, (FtpControlStream * __this, ResponseDescription * response, int32_t * validThrough, int32_t * completeLength, MethodInfo * method)); DO_APP_FUNC(0x0286B4C0, TriState__Enum, FtpControlStream_IsFtpDataStreamWriteable, (FtpControlStream * __this, MethodInfo * method)); DO_APP_FUNC(0x0286B550, void, FtpControlStream__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, FtpControlStream_c_DisplayClass31_0__ctor, (FtpControlStream_c_DisplayClass31_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0286B7B0, void, FtpControlStream_c_DisplayClass31_0__PipelineCallback_b__0, (FtpControlStream_c_DisplayClass31_0 * __this, IAsyncResult * ar, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5568, FtpControlStream_c_DisplayClass31_0__PipelineCallback_b__0__MethodInfo); DO_APP_FUNC(0x0286B8B0, void, FtpDataStream__ctor, (FtpDataStream * __this, NetworkStream * networkStream, FtpWebRequest * request, TriState__Enum writeOnly, MethodInfo * method)); DO_APP_FUNC(0x0286BA50, void, FtpDataStream_Dispose, (FtpDataStream * __this, bool disposing, MethodInfo * method)); DO_APP_FUNC(0x0286BAE0, void, FtpDataStream_System_Net_ICloseEx_CloseEx, (FtpDataStream * __this, CloseExState__Enum closeState, MethodInfo * method)); DO_APP_FUNC(0x0286C040, void, FtpDataStream_CheckError, (FtpDataStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB52E0, FtpDataStream_CheckError__MethodInfo); DO_APP_FUNC(0x00424CB0, bool, FtpDataStream_get_CanRead, (FtpDataStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01E12470, bool, FtpDataStream_get_CanSeek, (FtpDataStream * __this, MethodInfo * method)); DO_APP_FUNC(0x00424C90, bool, FtpDataStream_get_CanWrite, (FtpDataStream * __this, MethodInfo * method)); @@ -29574,6 +33542,7 @@ DO_APP_FUNC(0x0286C090, int64_t, FtpDataStream_Seek, (FtpDataStream * __this, in DO_APP_FUNC(0x0286C130, int32_t, FtpDataStream_Read, (FtpDataStream * __this, Byte__Array * buffer, int32_t offset, int32_t size, MethodInfo * method)); DO_APP_FUNC(0x0286C200, void, FtpDataStream_Write, (FtpDataStream * __this, Byte__Array * buffer, int32_t offset, int32_t size, MethodInfo * method)); DO_APP_FUNC(0x0286C2A0, void, FtpDataStream_AsyncReadCallback, (FtpDataStream * __this, IAsyncResult * ar, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB52A8, FtpDataStream_AsyncReadCallback__MethodInfo); DO_APP_FUNC(0x0286C470, IAsyncResult *, FtpDataStream_BeginRead, (FtpDataStream * __this, Byte__Array * buffer, int32_t offset, int32_t size, AsyncCallback * callback, Object * state, MethodInfo * method)); DO_APP_FUNC(0x0286C610, int32_t, FtpDataStream_EndRead, (FtpDataStream * __this, IAsyncResult * ar, MethodInfo * method)); DO_APP_FUNC(0x0286C7E0, IAsyncResult *, FtpDataStream_BeginWrite, (FtpDataStream * __this, Byte__Array * buffer, int32_t offset, int32_t size, AsyncCallback * callback, Object * state, MethodInfo * method)); @@ -29593,84 +33562,121 @@ DO_APP_FUNC(0x0286CB00, bool, FtpMethodInfo_get_IsUpload, (FtpMethodInfo * __thi DO_APP_FUNC(0x023602E0, bool, FtpMethodInfo_get_IsDownload, (FtpMethodInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x0286CB10, bool, FtpMethodInfo_get_ShouldParseForResponseUri, (FtpMethodInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x0286CB20, FtpMethodInfo *, FtpMethodInfo_GetMethodInfo, (String * method_1, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5328, FtpMethodInfo_GetMethodInfo__MethodInfo); DO_APP_FUNC(0x0286CD70, void, FtpMethodInfo__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003C7420, FtpMethodInfo *, FtpWebRequest_get_MethodInfo, (FtpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x0286D500, RequestCachePolicy *, FtpWebRequest_get_DefaultCachePolicy, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, FtpWebRequest_set_DefaultCachePolicy, (RequestCachePolicy * value, MethodInfo * method)); DO_APP_FUNC(0x01FDF250, String *, FtpWebRequest_get_Method, (FtpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x0286D550, void, FtpWebRequest_set_Method, (FtpWebRequest * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5248, FtpWebRequest_set_Method__MethodInfo); DO_APP_FUNC(0x003C7490, String *, FtpWebRequest_get_RenameTo, (FtpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x0286D750, void, FtpWebRequest_set_RenameTo, (FtpWebRequest * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5260, FtpWebRequest_set_RenameTo__MethodInfo); DO_APP_FUNC(0x003C7390, ICredentials *, FtpWebRequest_get_Credentials, (FtpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x0286D890, void, FtpWebRequest_set_Credentials, (FtpWebRequest * __this, ICredentials * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5218, FtpWebRequest_set_Credentials__MethodInfo); DO_APP_FUNC(0x003CD530, Uri *, FtpWebRequest_get_RequestUri, (FtpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x01AFABA0, int32_t, FtpWebRequest_get_Timeout, (FtpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x0286DA20, void, FtpWebRequest_set_Timeout, (FtpWebRequest * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5228, FtpWebRequest_set_Timeout__MethodInfo); DO_APP_FUNC(0x018592F0, int32_t, FtpWebRequest_get_RemainingTimeout, (FtpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x01D1C3E0, int32_t, FtpWebRequest_get_ReadWriteTimeout, (FtpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x0286DB60, void, FtpWebRequest_set_ReadWriteTimeout, (FtpWebRequest * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5220, FtpWebRequest_set_ReadWriteTimeout__MethodInfo); DO_APP_FUNC(0x003C91F0, int64_t, FtpWebRequest_get_ContentOffset, (FtpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x0286DC40, void, FtpWebRequest_set_ContentOffset, (FtpWebRequest * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5238, FtpWebRequest_set_ContentOffset__MethodInfo); DO_APP_FUNC(0x003C91E0, int64_t, FtpWebRequest_get_ContentLength, (FtpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x00A3BBA0, void, FtpWebRequest_set_ContentLength, (FtpWebRequest * __this, int64_t value, MethodInfo * method)); DO_APP_FUNC(0x003CB690, IWebProxy *, FtpWebRequest_get_Proxy, (FtpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x0286DD10, void, FtpWebRequest_set_Proxy, (FtpWebRequest * __this, IWebProxy * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5230, FtpWebRequest_set_Proxy__MethodInfo); DO_APP_FUNC(0x0049E0C0, String *, FtpWebRequest_get_ConnectionGroupName, (FtpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x0286DD80, void, FtpWebRequest_set_ConnectionGroupName, (FtpWebRequest * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5240, FtpWebRequest_set_ConnectionGroupName__MethodInfo); DO_APP_FUNC(0x0286DE40, ServicePoint *, FtpWebRequest_get_ServicePoint, (FtpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x01806140, bool, FtpWebRequest_get_Aborted, (FtpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x0286DF40, void, FtpWebRequest__ctor, (FtpWebRequest * __this, Uri * uri, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5298, FtpWebRequest__ctor__MethodInfo); DO_APP_FUNC(0x0286E530, WebResponse *, FtpWebRequest_GetResponse, (FtpWebRequest * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5268, FtpWebRequest_GetResponse__MethodInfo); DO_APP_FUNC(0x0286EDC0, IAsyncResult *, FtpWebRequest_BeginGetResponse, (FtpWebRequest * __this, AsyncCallback * callback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5280, FtpWebRequest_BeginGetResponse__MethodInfo); DO_APP_FUNC(0x0286F620, WebResponse *, FtpWebRequest_EndGetResponse, (FtpWebRequest * __this, IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB51C0, FtpWebRequest_EndGetResponse__MethodInfo); DO_APP_FUNC(0x0286F990, Stream *, FtpWebRequest_GetRequestStream, (FtpWebRequest * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB51D0, FtpWebRequest_GetRequestStream__MethodInfo); DO_APP_FUNC(0x0286FF50, IAsyncResult *, FtpWebRequest_BeginGetRequestStream, (FtpWebRequest * __this, AsyncCallback * callback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB51A8, FtpWebRequest_BeginGetRequestStream__MethodInfo); DO_APP_FUNC(0x02870560, Stream *, FtpWebRequest_EndGetRequestStream, (FtpWebRequest * __this, IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB51B8, FtpWebRequest_EndGetRequestStream__MethodInfo); DO_APP_FUNC(0x02870960, void, FtpWebRequest_SubmitRequest, (FtpWebRequest * __this, bool isAsync, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5200, FtpWebRequest_SubmitRequest__MethodInfo); DO_APP_FUNC(0x02871060, Exception *, FtpWebRequest_TranslateConnectException, (FtpWebRequest * __this, Exception * e, MethodInfo * method)); DO_APP_FUNC(0x02871180, void, FtpWebRequest_CreateConnectionAsync, (FtpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x028712C0, FtpControlStream *, FtpWebRequest_CreateConnection, (FtpWebRequest * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB51E0, FtpWebRequest_CreateConnection__MethodInfo); DO_APP_FUNC(0x028713F0, Stream *, FtpWebRequest_TimedSubmitRequestHelper, (FtpWebRequest * __this, bool isAsync, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB51E8, FtpWebRequest_TimedSubmitRequestHelper__MethodInfo); DO_APP_FUNC(0x02871A10, void, FtpWebRequest_TimerCallback, (FtpWebRequest * __this, TimerThread_Timer * timer, int32_t timeNoticed, Object * context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB52A0, FtpWebRequest_TimerCallback__MethodInfo); DO_APP_FUNC(0x02871B20, TimerThread_Queue *, FtpWebRequest_get_TimerQueue, (FtpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x02871BE0, bool, FtpWebRequest_AttemptedRecovery, (FtpWebRequest * __this, Exception * e, MethodInfo * method)); DO_APP_FUNC(0x02871F70, void, FtpWebRequest_SetException, (FtpWebRequest * __this, Exception * exception, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5118, FtpWebRequest_SetException__MethodInfo); DO_APP_FUNC(0x028723B0, void, FtpWebRequest_CheckError, (FtpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x028723E0, void, FtpWebRequest_RequestCallback, (FtpWebRequest * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x02872400, void, FtpWebRequest_SyncRequestCallback, (FtpWebRequest * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5180, FtpWebRequest_SyncRequestCallback__MethodInfo); DO_APP_FUNC(0x02872890, void, FtpWebRequest_AsyncRequestCallback, (FtpWebRequest * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB51A0, FtpWebRequest_AsyncRequestCallback__MethodInfo); DO_APP_FUNC(0x02873630, FtpWebRequest_RequestStage__Enum, FtpWebRequest_FinishRequestStage, (FtpWebRequest * __this, FtpWebRequest_RequestStage__Enum stage, MethodInfo * method)); DO_APP_FUNC(0x02873F70, void, FtpWebRequest_Abort, (FtpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, FtpWebRequest_get_KeepAlive, (FtpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x028744A0, void, FtpWebRequest_set_KeepAlive, (FtpWebRequest * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5168, FtpWebRequest_set_KeepAlive__MethodInfo); DO_APP_FUNC(0x02874510, RequestCachePolicy *, FtpWebRequest_get_CachePolicy, (FtpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x02874590, void, FtpWebRequest_set_CachePolicy, (FtpWebRequest * __this, RequestCachePolicy * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB50B8, FtpWebRequest_set_CachePolicy__MethodInfo); DO_APP_FUNC(0x00BE21D0, bool, FtpWebRequest_get_UseBinary, (FtpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x02874600, void, FtpWebRequest_set_UseBinary, (FtpWebRequest * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB50B0, FtpWebRequest_set_UseBinary__MethodInfo); DO_APP_FUNC(0x006C4530, bool, FtpWebRequest_get_UsePassive, (FtpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x02874680, void, FtpWebRequest_set_UsePassive, (FtpWebRequest * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB50C0, FtpWebRequest_set_UsePassive__MethodInfo); DO_APP_FUNC(0x02874700, X509CertificateCollection *, FtpWebRequest_get_ClientCertificates, (FtpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x028748A0, void, FtpWebRequest_set_ClientCertificates, (FtpWebRequest * __this, X509CertificateCollection * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5090, FtpWebRequest_set_ClientCertificates__MethodInfo); DO_APP_FUNC(0x01B07730, bool, FtpWebRequest_get_EnableSsl, (FtpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x02874960, void, FtpWebRequest_set_EnableSsl, (FtpWebRequest * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB50A0, FtpWebRequest_set_EnableSsl__MethodInfo); DO_APP_FUNC(0x028749E0, WebHeaderCollection *, FtpWebRequest_get_Headers, (FtpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x00A87950, void, FtpWebRequest_set_Headers, (FtpWebRequest * __this, WebHeaderCollection * value, MethodInfo * method)); DO_APP_FUNC(0x02874AB0, String *, FtpWebRequest_get_ContentType, (FtpWebRequest * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB50A8, FtpWebRequest_get_ContentType__MethodInfo); DO_APP_FUNC(0x02874AE0, void, FtpWebRequest_set_ContentType, (FtpWebRequest * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB50F0, FtpWebRequest_set_ContentType__MethodInfo); DO_APP_FUNC(0x02874B10, bool, FtpWebRequest_get_UseDefaultCredentials, (FtpWebRequest * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB50E8, FtpWebRequest_get_UseDefaultCredentials__MethodInfo); DO_APP_FUNC(0x02874B40, void, FtpWebRequest_set_UseDefaultCredentials, (FtpWebRequest * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5100, FtpWebRequest_set_UseDefaultCredentials__MethodInfo); DO_APP_FUNC(0x02874B70, bool, FtpWebRequest_get_PreAuthenticate, (FtpWebRequest * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB50F8, FtpWebRequest_get_PreAuthenticate__MethodInfo); DO_APP_FUNC(0x02874BA0, void, FtpWebRequest_set_PreAuthenticate, (FtpWebRequest * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5108, FtpWebRequest_set_PreAuthenticate__MethodInfo); DO_APP_FUNC(0x02874BD0, bool, FtpWebRequest_get_InUse, (FtpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x02874BF0, void, FtpWebRequest_EnsureFtpWebResponse, (FtpWebRequest * __this, Exception * exception, MethodInfo * method)); DO_APP_FUNC(0x028753C0, void, FtpWebRequest_DataStreamClosed, (FtpWebRequest * __this, CloseExState__Enum closeState, MethodInfo * method)); DO_APP_FUNC(0x02875460, void, FtpWebRequest__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02875640, void, FtpWebRequest__ctor_1, (FtpWebRequest * __this, MethodInfo * method)); -DO_APP_FUNC(0x02875670, void, FtpWebRequest_CreateConnectionAsync_d_86_MoveNext, (FtpWebRequest_CreateConnectionAsync_d_86__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00B29800, void, FtpWebRequest_CreateConnectionAsync_d_86_SetStateMachine, (FtpWebRequest_CreateConnectionAsync_d_86__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB50E0, FtpWebRequest__ctor_1__MethodInfo); +DO_APP_FUNC(0x02875670, void, FtpWebRequest_CreateConnectionAsync_d_86_MoveNext, (FtpWebRequest_CreateConnectionAsync_d_86 * __this, MethodInfo * method)); +DO_APP_FUNC(0x00B29800, void, FtpWebRequest_CreateConnectionAsync_d_86_SetStateMachine, (FtpWebRequest_CreateConnectionAsync_d_86 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); DO_APP_FUNC(0x02875C30, void, FtpWebRequest_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, FtpWebRequest_c__ctor, (FtpWebRequest_c * __this, MethodInfo * method)); DO_APP_FUNC(0x02875CE0, X509CertificateCollection *, FtpWebRequest_c__get_ClientCertificates_b__114_0, (FtpWebRequest_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5080, FtpWebRequest_c__get_ClientCertificates_b__114_0__MethodInfo); DO_APP_FUNC(0x003AE050, void, FtpWebRequestCreator__ctor, (FtpWebRequestCreator * __this, MethodInfo * method)); DO_APP_FUNC(0x02875D40, WebRequest *, FtpWebRequestCreator_Create, (FtpWebRequestCreator * __this, Uri * uri, MethodInfo * method)); DO_APP_FUNC(0x02875DB0, void, FtpWebResponse__ctor, (FtpWebResponse * __this, Stream * responseStream, int64_t contentLength, Uri * responseUri, FtpStatusCode__Enum statusCode, String * statusLine, DateTime lastModified, String * bannerMessage, String * welcomeMessage, String * exitMessage, MethodInfo * method)); @@ -29689,6 +33695,7 @@ DO_APP_FUNC(0x003C7490, String *, FtpWebResponse_get_BannerMessage, (FtpWebRespo DO_APP_FUNC(0x003C91B0, String *, FtpWebResponse_get_WelcomeMessage, (FtpWebResponse * __this, MethodInfo * method)); DO_APP_FUNC(0x003C91C0, String *, FtpWebResponse_get_ExitMessage, (FtpWebResponse * __this, MethodInfo * method)); DO_APP_FUNC(0x028765F0, void, FtpWebResponse__ctor_1, (FtpWebResponse * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5078, FtpWebResponse__ctor_1__MethodInfo); DO_APP_FUNC(0x02876620, void, FtpWebResponse_EmptyStream__ctor, (FtpWebResponse_EmptyStream * __this, MethodInfo * method)); DO_APP_FUNC(0x02876670, void, NetworkStreamWrapper__ctor, (NetworkStreamWrapper * __this, TcpClient * client, MethodInfo * method)); DO_APP_FUNC(0x02876790, bool, NetworkStreamWrapper_get_UsingSecureStream, (NetworkStreamWrapper * __this, MethodInfo * method)); @@ -29758,12 +33765,14 @@ DO_APP_FUNC(0x02878410, void, WebClient_OnUploadProgressChanged, (WebClient * __ DO_APP_FUNC(0x02878430, void, WebClient_OnOpenReadCompleted, (WebClient * __this, OpenReadCompletedEventArgs * e, MethodInfo * method)); DO_APP_FUNC(0x02878450, void, WebClient_OnOpenWriteCompleted, (WebClient * __this, OpenWriteCompletedEventArgs * e, MethodInfo * method)); DO_APP_FUNC(0x02878470, void, WebClient_StartOperation, (WebClient * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4FF8, WebClient_StartOperation__MethodInfo); DO_APP_FUNC(0x02878630, AsyncOperation *, WebClient_StartAsyncOperation, (WebClient * __this, Object * userToken, MethodInfo * method)); DO_APP_FUNC(0x02878E90, void, WebClient_EndOperation, (WebClient * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7490, Encoding *, WebClient_get_Encoding, (WebClient * __this, MethodInfo * method)); DO_APP_FUNC(0x02878EA0, void, WebClient_set_Encoding, (WebClient * __this, Encoding * value, MethodInfo * method)); DO_APP_FUNC(0x02878FB0, String *, WebClient_get_BaseAddress, (WebClient * __this, MethodInfo * method)); DO_APP_FUNC(0x02879060, void, WebClient_set_BaseAddress, (WebClient * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4F78, WebClient_set_BaseAddress__MethodInfo); DO_APP_FUNC(0x003BB330, ICredentials *, WebClient_get_Credentials, (WebClient * __this, MethodInfo * method)); DO_APP_FUNC(0x00424C30, void, WebClient_set_Credentials, (WebClient * __this, ICredentials * value, MethodInfo * method)); DO_APP_FUNC(0x02879230, bool, WebClient_get_UseDefaultCredentials, (WebClient * __this, MethodInfo * method)); @@ -29784,30 +33793,39 @@ DO_APP_FUNC(0x02879830, WebResponse *, WebClient_GetWebResponse_1, (WebClient * DO_APP_FUNC(0x028798C0, Task_1_System_Net_WebResponse_ *, WebClient_GetWebResponseTaskAsync, (WebClient * __this, WebRequest * request, MethodInfo * method)); DO_APP_FUNC(0x02879AC0, Byte__Array *, WebClient_DownloadData, (WebClient * __this, String * address, MethodInfo * method)); DO_APP_FUNC(0x02879AF0, Byte__Array *, WebClient_DownloadData_1, (WebClient * __this, Uri * address, MethodInfo * method)); -DO_APP_FUNC(0x02879C30, Byte__Array *, WebClient_DownloadDataInternal, (WebClient * __this, Uri * address, WebRequest * request, MethodInfo * method)); +DO_APP_FUNC(0x02879C30, Byte__Array *, WebClient_DownloadDataInternal, (WebClient * __this, Uri * address, WebRequest * * request, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4F00, WebClient_DownloadDataInternal__MethodInfo); DO_APP_FUNC(0x02879FF0, void, WebClient_DownloadFile, (WebClient * __this, String * address, String * fileName, MethodInfo * method)); DO_APP_FUNC(0x0287A030, void, WebClient_DownloadFile_1, (WebClient * __this, Uri * address, String * fileName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4F10, WebClient_DownloadFile_1__MethodInfo); DO_APP_FUNC(0x0287A570, Stream *, WebClient_OpenRead, (WebClient * __this, String * address, MethodInfo * method)); DO_APP_FUNC(0x0287A5A0, Stream *, WebClient_OpenRead_1, (WebClient * __this, Uri * address, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4EE8, WebClient_OpenRead_1__MethodInfo); DO_APP_FUNC(0x0287A9F0, Stream *, WebClient_OpenWrite, (WebClient * __this, String * address, MethodInfo * method)); DO_APP_FUNC(0x0287AA20, Stream *, WebClient_OpenWrite_1, (WebClient * __this, Uri * address, MethodInfo * method)); DO_APP_FUNC(0x0287AA30, Stream *, WebClient_OpenWrite_2, (WebClient * __this, String * address, String * method_1, MethodInfo * method)); DO_APP_FUNC(0x0287AA70, Stream *, WebClient_OpenWrite_3, (WebClient * __this, Uri * address, String * method_1, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4EF0, WebClient_OpenWrite_3__MethodInfo); DO_APP_FUNC(0x0287AF10, Byte__Array *, WebClient_UploadData, (WebClient * __this, String * address, Byte__Array * data, MethodInfo * method)); DO_APP_FUNC(0x0287AF50, Byte__Array *, WebClient_UploadData_1, (WebClient * __this, Uri * address, Byte__Array * data, MethodInfo * method)); DO_APP_FUNC(0x0287AF70, Byte__Array *, WebClient_UploadData_2, (WebClient * __this, String * address, String * method_1, Byte__Array * data, MethodInfo * method)); DO_APP_FUNC(0x0287AFC0, Byte__Array *, WebClient_UploadData_3, (WebClient * __this, Uri * address, String * method_1, Byte__Array * data, MethodInfo * method)); -DO_APP_FUNC(0x0287B1A0, Byte__Array *, WebClient_UploadDataInternal, (WebClient * __this, Uri * address, String * method_1, Byte__Array * data, WebRequest * request, MethodInfo * method)); -DO_APP_FUNC(0x0287B560, void, WebClient_OpenFileInternal, (WebClient * __this, bool needsHeaderAndBoundary, String * fileName, FileStream * fs, Byte__Array * buffer, Byte__Array * formHeaderBytes, Byte__Array * boundaryBytes, MethodInfo * method)); +DO_APP_FUNC(0x0287B1A0, Byte__Array *, WebClient_UploadDataInternal, (WebClient * __this, Uri * address, String * method_1, Byte__Array * data, WebRequest * * request, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4EF8, WebClient_UploadDataInternal__MethodInfo); +DO_APP_FUNC(0x0287B560, void, WebClient_OpenFileInternal, (WebClient * __this, bool needsHeaderAndBoundary, String * fileName, FileStream * * fs, Byte__Array * * buffer, Byte__Array * * formHeaderBytes, Byte__Array * * boundaryBytes, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4F18, WebClient_OpenFileInternal__MethodInfo); DO_APP_FUNC(0x0287C200, Byte__Array *, WebClient_UploadFile, (WebClient * __this, String * address, String * fileName, MethodInfo * method)); DO_APP_FUNC(0x0287C240, Byte__Array *, WebClient_UploadFile_1, (WebClient * __this, Uri * address, String * fileName, MethodInfo * method)); DO_APP_FUNC(0x0287C260, Byte__Array *, WebClient_UploadFile_2, (WebClient * __this, String * address, String * method_1, String * fileName, MethodInfo * method)); DO_APP_FUNC(0x0287C2B0, Byte__Array *, WebClient_UploadFile_3, (WebClient * __this, Uri * address, String * method_1, String * fileName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4F20, WebClient_UploadFile_3__MethodInfo); DO_APP_FUNC(0x0287C830, Byte__Array *, WebClient_GetValuesToUpload, (WebClient * __this, NameValueCollection * data, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4EC0, WebClient_GetValuesToUpload__MethodInfo); DO_APP_FUNC(0x0287CBF0, Byte__Array *, WebClient_UploadValues, (WebClient * __this, String * address, NameValueCollection * data, MethodInfo * method)); DO_APP_FUNC(0x0287CC30, Byte__Array *, WebClient_UploadValues_1, (WebClient * __this, Uri * address, NameValueCollection * data, MethodInfo * method)); DO_APP_FUNC(0x0287CC50, Byte__Array *, WebClient_UploadValues_2, (WebClient * __this, String * address, String * method_1, NameValueCollection * data, MethodInfo * method)); DO_APP_FUNC(0x0287CCA0, Byte__Array *, WebClient_UploadValues_3, (WebClient * __this, Uri * address, String * method_1, NameValueCollection * data, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4EC8, WebClient_UploadValues_3__MethodInfo); DO_APP_FUNC(0x0287D180, String *, WebClient_UploadString, (WebClient * __this, String * address, String * data, MethodInfo * method)); DO_APP_FUNC(0x0287D1C0, String *, WebClient_UploadString_1, (WebClient * __this, Uri * address, String * data, MethodInfo * method)); DO_APP_FUNC(0x0287D1E0, String *, WebClient_UploadString_2, (WebClient * __this, String * address, String * method_1, String * data, MethodInfo * method)); @@ -29815,15 +33833,19 @@ DO_APP_FUNC(0x0287D230, String *, WebClient_UploadString_3, (WebClient * __this, DO_APP_FUNC(0x0287D450, String *, WebClient_DownloadString, (WebClient * __this, String * address, MethodInfo * method)); DO_APP_FUNC(0x0287D480, String *, WebClient_DownloadString_1, (WebClient * __this, Uri * address, MethodInfo * method)); DO_APP_FUNC(0x0287D5D0, void, WebClient_AbortRequest, (WebRequest * request, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4EB8, WebClient_AbortRequest__MethodInfo); DO_APP_FUNC(0x0287D6C0, void, WebClient_CopyHeadersTo, (WebClient * __this, WebRequest * request, MethodInfo * method)); DO_APP_FUNC(0x0287DCC0, Uri *, WebClient_GetUri, (WebClient * __this, String * address, MethodInfo * method)); DO_APP_FUNC(0x0287E010, Uri *, WebClient_GetUri_1, (WebClient * __this, Uri * address, MethodInfo * method)); DO_APP_FUNC(0x0287E3B0, Byte__Array *, WebClient_DownloadBits, (WebClient * __this, WebRequest * request, Stream * writeStream, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4ED8, WebClient_DownloadBits__MethodInfo); DO_APP_FUNC(0x0287E8D0, void, WebClient_DownloadBitsAsync, (WebClient * __this, WebRequest * request, Stream * writeStream, AsyncOperation * asyncOp, Action_3_Byte_Exception_System_ComponentModel_AsyncOperation_ * completionDelegate, MethodInfo * method)); DO_APP_FUNC(0x0287EB70, Byte__Array *, WebClient_UploadBits, (WebClient * __this, WebRequest * request, Stream * readStream, Byte__Array * buffer, int32_t chunkSize, Byte__Array * header, Byte__Array * footer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4EE0, WebClient_UploadBits__MethodInfo); DO_APP_FUNC(0x0287F160, void, WebClient_UploadBitsAsync, (WebClient * __this, WebRequest * request, Stream * readStream, Byte__Array * buffer, int32_t chunkSize, Byte__Array * header, Byte__Array * footer, AsyncOperation * asyncOp, Action_3_Byte_Exception_System_ComponentModel_AsyncOperation_ * completionDelegate, MethodInfo * method)); DO_APP_FUNC(0x0287F520, bool, WebClient_ByteArrayHasPrefix, (Byte__Array * prefix, Byte__Array * byteArray, MethodInfo * method)); DO_APP_FUNC(0x0287F590, String *, WebClient_GetStringUsingEncoding, (WebClient * __this, WebRequest * request, Byte__Array * data, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4ED0, WebClient_GetStringUsingEncoding__MethodInfo); DO_APP_FUNC(0x0287FB60, String *, WebClient_MapToDefaultMethod, (WebClient * __this, Uri * address, MethodInfo * method)); DO_APP_FUNC(0x0287FCF0, String *, WebClient_UrlEncode, (String * str, MethodInfo * method)); DO_APP_FUNC(0x0287FDD0, Byte__Array *, WebClient_UrlEncodeBytesToBytesInternal, (Byte__Array * bytes, int32_t offset, int32_t count, bool alwaysCreateReturnValue, MethodInfo * method)); @@ -29832,30 +33854,42 @@ DO_APP_FUNC(0x028800A0, bool, WebClient_IsSafe, (uint16_t ch, MethodInfo * metho DO_APP_FUNC(0x02880110, void, WebClient_InvokeOperationCompleted, (WebClient * __this, AsyncOperation * asyncOp, SendOrPostCallback * callback, AsyncCompletedEventArgs * eventArgs, MethodInfo * method)); DO_APP_FUNC(0x02880260, void, WebClient_OpenReadAsync, (WebClient * __this, Uri * address, MethodInfo * method)); DO_APP_FUNC(0x02880270, void, WebClient_OpenReadAsync_1, (WebClient * __this, Uri * address, Object * userToken, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4E70, WebClient_OpenReadAsync_1__MethodInfo); DO_APP_FUNC(0x02880700, void, WebClient_OpenWriteAsync, (WebClient * __this, Uri * address, MethodInfo * method)); DO_APP_FUNC(0x02880720, void, WebClient_OpenWriteAsync_1, (WebClient * __this, Uri * address, String * method_1, MethodInfo * method)); DO_APP_FUNC(0x02880740, void, WebClient_OpenWriteAsync_2, (WebClient * __this, Uri * address, String * method_1, Object * userToken, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4E50, WebClient_OpenWriteAsync_2__MethodInfo); DO_APP_FUNC(0x02880C30, void, WebClient_DownloadStringAsyncCallback, (WebClient * __this, Byte__Array * returnBytes, Exception * exception, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4E60, WebClient_DownloadStringAsyncCallback__MethodInfo); DO_APP_FUNC(0x02881010, void, WebClient_DownloadStringAsync, (WebClient * __this, Uri * address, MethodInfo * method)); DO_APP_FUNC(0x02881020, void, WebClient_DownloadStringAsync_1, (WebClient * __this, Uri * address, Object * userToken, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4E98, WebClient_DownloadStringAsync_1__MethodInfo); DO_APP_FUNC(0x02881370, void, WebClient_DownloadDataAsyncCallback, (WebClient * __this, Byte__Array * returnBytes, Exception * exception, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4EB0, WebClient_DownloadDataAsyncCallback__MethodInfo); DO_APP_FUNC(0x02881620, void, WebClient_DownloadDataAsync, (WebClient * __this, Uri * address, MethodInfo * method)); DO_APP_FUNC(0x02881630, void, WebClient_DownloadDataAsync_1, (WebClient * __this, Uri * address, Object * userToken, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4E80, WebClient_DownloadDataAsync_1__MethodInfo); DO_APP_FUNC(0x02881980, void, WebClient_DownloadFileAsyncCallback, (WebClient * __this, Byte__Array * returnBytes, Exception * exception, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4E88, WebClient_DownloadFileAsyncCallback__MethodInfo); DO_APP_FUNC(0x02881BC0, void, WebClient_DownloadFileAsync, (WebClient * __this, Uri * address, String * fileName, MethodInfo * method)); DO_APP_FUNC(0x02881BE0, void, WebClient_DownloadFileAsync_1, (WebClient * __this, Uri * address, String * fileName, Object * userToken, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4E90, WebClient_DownloadFileAsync_1__MethodInfo); DO_APP_FUNC(0x02881FC0, void, WebClient_UploadStringAsync, (WebClient * __this, Uri * address, String * data, MethodInfo * method)); DO_APP_FUNC(0x02881FE0, void, WebClient_UploadStringAsync_1, (WebClient * __this, Uri * address, String * method_1, String * data, MethodInfo * method)); DO_APP_FUNC(0x02882000, void, WebClient_UploadStringAsync_2, (WebClient * __this, Uri * address, String * method_1, String * data, Object * userToken, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4DF8, WebClient_UploadStringAsync_2__MethodInfo); DO_APP_FUNC(0x02882490, void, WebClient_UploadDataAsync, (WebClient * __this, Uri * address, Byte__Array * data, MethodInfo * method)); DO_APP_FUNC(0x028824B0, void, WebClient_UploadDataAsync_1, (WebClient * __this, Uri * address, String * method_1, Byte__Array * data, MethodInfo * method)); DO_APP_FUNC(0x028824D0, void, WebClient_UploadDataAsync_2, (WebClient * __this, Uri * address, String * method_1, Byte__Array * data, Object * userToken, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4DC8, WebClient_UploadDataAsync_2__MethodInfo); DO_APP_FUNC(0x02882A50, void, WebClient_UploadFileAsync, (WebClient * __this, Uri * address, String * fileName, MethodInfo * method)); DO_APP_FUNC(0x02882A70, void, WebClient_UploadFileAsync_1, (WebClient * __this, Uri * address, String * method_1, String * fileName, MethodInfo * method)); DO_APP_FUNC(0x02882A90, void, WebClient_UploadFileAsync_2, (WebClient * __this, Uri * address, String * method_1, String * fileName, Object * userToken, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4DD8, WebClient_UploadFileAsync_2__MethodInfo); DO_APP_FUNC(0x028830F0, void, WebClient_UploadValuesAsync, (WebClient * __this, Uri * address, NameValueCollection * data, MethodInfo * method)); DO_APP_FUNC(0x02883110, void, WebClient_UploadValuesAsync_1, (WebClient * __this, Uri * address, String * method_1, NameValueCollection * data, MethodInfo * method)); DO_APP_FUNC(0x02883130, void, WebClient_UploadValuesAsync_2, (WebClient * __this, Uri * address, String * method_1, NameValueCollection * data, Object * userToken, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4E48, WebClient_UploadValuesAsync_2__MethodInfo); DO_APP_FUNC(0x028836B0, Exception *, WebClient_GetExceptionToPropagate, (Exception * e, MethodInfo * method)); DO_APP_FUNC(0x028837B0, void, WebClient_CancelAsync, (WebClient * __this, MethodInfo * method)); DO_APP_FUNC(0x02883810, Task_1_System_String_ *, WebClient_DownloadStringTaskAsync, (WebClient * __this, String * address, MethodInfo * method)); @@ -29888,6 +33922,7 @@ DO_APP_FUNC(0x02886600, Task_1_System_Byte_ *, WebClient_UploadValuesTaskAsync_2 DO_APP_FUNC(0x02886620, Task_1_System_Byte_ *, WebClient_UploadValuesTaskAsync_3, (WebClient * __this, Uri * address, String * method_1, NameValueCollection * data, MethodInfo * method)); DO_APP_FUNC(0x02886B70, void, WebClient_PostProgressChanged, (WebClient * __this, AsyncOperation * asyncOp, WebClient_ProgressData * progress, MethodInfo * method)); DO_APP_FUNC(0x02886EC0, void, WebClient_ThrowIfNull, (Object * argument, String * parameterName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4CE8, WebClient_ThrowIfNull__MethodInfo); DO_APP_FUNC(0x00948280, bool, WebClient_get_AllowReadStreamBuffering, (WebClient * __this, MethodInfo * method)); DO_APP_FUNC(0x00948290, void, WebClient_set_AllowReadStreamBuffering, (WebClient * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x01DE0CB0, bool, WebClient_get_AllowWriteStreamBuffering, (WebClient * __this, MethodInfo * method)); @@ -29897,75 +33932,121 @@ DO_APP_FUNC(0x003AE050, void, WebClient_remove_WriteStreamClosed, (WebClient * _ DO_APP_FUNC(0x003AE050, void, WebClient_OnWriteStreamClosed, (WebClient * __this, WriteStreamClosedEventArgs * e, MethodInfo * method)); DO_APP_FUNC(0x02886F30, void, WebClient__cctor, (MethodInfo * method)); DO_APP_FUNC(0x028871E0, void, WebClient__StartAsyncOperation_b__78_0, (WebClient * __this, Object * arg, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5010, WebClient__StartAsyncOperation_b__78_0__MethodInfo); DO_APP_FUNC(0x02887270, void, WebClient__StartAsyncOperation_b__78_1, (WebClient * __this, Object * arg, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5020, WebClient__StartAsyncOperation_b__78_1__MethodInfo); DO_APP_FUNC(0x02887300, void, WebClient__StartAsyncOperation_b__78_2, (WebClient * __this, Object * arg, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5018, WebClient__StartAsyncOperation_b__78_2__MethodInfo); DO_APP_FUNC(0x02887390, void, WebClient__StartAsyncOperation_b__78_3, (WebClient * __this, Object * arg, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4F90, WebClient__StartAsyncOperation_b__78_3__MethodInfo); DO_APP_FUNC(0x02887420, void, WebClient__StartAsyncOperation_b__78_4, (WebClient * __this, Object * arg, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4F88, WebClient__StartAsyncOperation_b__78_4__MethodInfo); DO_APP_FUNC(0x028874B0, void, WebClient__StartAsyncOperation_b__78_5, (WebClient * __this, Object * arg, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4FA0, WebClient__StartAsyncOperation_b__78_5__MethodInfo); DO_APP_FUNC(0x02887540, void, WebClient__StartAsyncOperation_b__78_6, (WebClient * __this, Object * arg, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4F98, WebClient__StartAsyncOperation_b__78_6__MethodInfo); DO_APP_FUNC(0x028875D0, void, WebClient__StartAsyncOperation_b__78_7, (WebClient * __this, Object * arg, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4FB0, WebClient__StartAsyncOperation_b__78_7__MethodInfo); DO_APP_FUNC(0x02887660, void, WebClient__StartAsyncOperation_b__78_8, (WebClient * __this, Object * arg, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4FA8, WebClient__StartAsyncOperation_b__78_8__MethodInfo); DO_APP_FUNC(0x028876F0, void, WebClient__StartAsyncOperation_b__78_9, (WebClient * __this, Object * arg, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4FB8, WebClient__StartAsyncOperation_b__78_9__MethodInfo); DO_APP_FUNC(0x02887780, void, WebClient__StartAsyncOperation_b__78_10, (WebClient * __this, Object * arg, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5008, WebClient__StartAsyncOperation_b__78_10__MethodInfo); DO_APP_FUNC(0x02887810, void, WebClient__UploadStringAsync_b__179_0, (WebClient * __this, Byte__Array * bytesResult, Exception * error, AsyncOperation * uploadAsyncOp, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4DE8, WebClient__UploadStringAsync_b__179_0__MethodInfo); DO_APP_FUNC(0x0258BB10, void, WebClient_ProgressData_Reset, (WebClient_ProgressData * __this, MethodInfo * method)); DO_APP_FUNC(0x0258BB30, void, WebClient_ProgressData__ctor, (WebClient_ProgressData * __this, MethodInfo * method)); DO_APP_FUNC(0x0258BB50, void, WebClient_WebClientWriteStream__ctor, (WebClient_WebClientWriteStream * __this, Stream * stream, WebRequest * request, WebClient * webClient, MethodInfo * method)); DO_APP_FUNC(0x0258BCB0, void, WebClient_WebClientWriteStream_Dispose, (WebClient_WebClientWriteStream * __this, bool disposing, MethodInfo * method)); -DO_APP_FUNC(0x0258BE20, void, WebClient_GetWebResponseTaskAsync_d_112_MoveNext, (WebClient_GetWebResponseTaskAsync_d_112__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0258C2D0, void, WebClient_GetWebResponseTaskAsync_d_112_SetStateMachine, (WebClient_GetWebResponseTaskAsync_d_112__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x0258C340, void, WebClient_DownloadBitsAsync_d_150_MoveNext, (WebClient_DownloadBitsAsync_d_150__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00B29800, void, WebClient_DownloadBitsAsync_d_150_SetStateMachine, (WebClient_DownloadBitsAsync_d_150__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x0258D9A0, void, WebClient_UploadBitsAsync_d_152_MoveNext, (WebClient_UploadBitsAsync_d_152__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00B29800, void, WebClient_UploadBitsAsync_d_152_SetStateMachine, (WebClient_UploadBitsAsync_d_152__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x0258BE20, void, WebClient_GetWebResponseTaskAsync_d_112_MoveNext, (WebClient_GetWebResponseTaskAsync_d_112 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0258C2D0, void, WebClient_GetWebResponseTaskAsync_d_112_SetStateMachine, (WebClient_GetWebResponseTaskAsync_d_112 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x0258C340, void, WebClient_DownloadBitsAsync_d_150_MoveNext, (WebClient_DownloadBitsAsync_d_150 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E080, WebClient_DownloadBitsAsync_d_150_MoveNext__MethodInfo); +DO_APP_FUNC(0x00B29800, void, WebClient_DownloadBitsAsync_d_150_SetStateMachine, (WebClient_DownloadBitsAsync_d_150 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x0258D9A0, void, WebClient_UploadBitsAsync_d_152_MoveNext, (WebClient_UploadBitsAsync_d_152 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E0B8, WebClient_UploadBitsAsync_d_152_MoveNext__MethodInfo); +DO_APP_FUNC(0x00B29800, void, WebClient_UploadBitsAsync_d_152_SetStateMachine, (WebClient_UploadBitsAsync_d_152 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, WebClient_c_DisplayClass164_0__ctor, (WebClient_c_DisplayClass164_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0258F990, void, WebClient_c_DisplayClass164_0__OpenReadAsync_b__0, (WebClient_c_DisplayClass164_0 * __this, IAsyncResult * iar, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E0C0, WebClient_c_DisplayClass164_0__OpenReadAsync_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, WebClient_c_DisplayClass167_0__ctor, (WebClient_c_DisplayClass167_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0258FC60, void, WebClient_c_DisplayClass167_0__OpenWriteAsync_b__0, (WebClient_c_DisplayClass167_0 * __this, IAsyncResult * iar, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E090, WebClient_c_DisplayClass167_0__OpenWriteAsync_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, WebClient_c_DisplayClass182_0__ctor, (WebClient_c_DisplayClass182_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0258FEE0, void, WebClient_c_DisplayClass182_0__UploadDataAsync_b__0, (WebClient_c_DisplayClass182_0 * __this, Byte__Array * result, Exception * error, AsyncOperation * uploadAsyncOp, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4E08, WebClient_c_DisplayClass182_0__UploadDataAsync_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, WebClient_c_DisplayClass185_0__ctor, (WebClient_c_DisplayClass185_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0258FFC0, void, WebClient_c_DisplayClass185_0__UploadFileAsync_b__0, (WebClient_c_DisplayClass185_0 * __this, Byte__Array * result, Exception * error, AsyncOperation * uploadAsyncOp, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4DD0, WebClient_c_DisplayClass185_0__UploadFileAsync_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, WebClient_c_DisplayClass188_0__ctor, (WebClient_c_DisplayClass188_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x025900A0, void, WebClient_c_DisplayClass188_0__UploadValuesAsync_b__0, (WebClient_c_DisplayClass188_0 * __this, Byte__Array * result, Exception * error, AsyncOperation * uploadAsyncOp, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4E40, WebClient_c_DisplayClass188_0__UploadValuesAsync_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, WebClient_c_DisplayClass192_0__ctor, (WebClient_c_DisplayClass192_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x02590180, void, WebClient_c_DisplayClass192_0__DownloadStringTaskAsync_b__0, (WebClient_c_DisplayClass192_0 * __this, Object * sender, DownloadStringCompletedEventArgs * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4E30, WebClient_c_DisplayClass192_0__DownloadStringTaskAsync_b__0__MethodInfo); DO_APP_FUNC(0x02590460, void, WebClient_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, WebClient_c__ctor, (WebClient_c * __this, MethodInfo * method)); DO_APP_FUNC(0x02590510, String *, WebClient_c__DownloadStringTaskAsync_b__192_1, (WebClient_c * __this, DownloadStringCompletedEventArgs * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E008, WebClient_c__DownloadStringTaskAsync_b__192_1__MethodInfo); DO_APP_FUNC(0x02590540, void, WebClient_c__DownloadStringTaskAsync_b__192_2, (WebClient_c * __this, WebClient * webClient, DownloadStringCompletedEventHandler * completion, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E000, WebClient_c__DownloadStringTaskAsync_b__192_2__MethodInfo); DO_APP_FUNC(0x02590510, Stream *, WebClient_c__OpenReadTaskAsync_b__194_1, (WebClient_c * __this, OpenReadCompletedEventArgs * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E030, WebClient_c__OpenReadTaskAsync_b__194_1__MethodInfo); DO_APP_FUNC(0x02590570, void, WebClient_c__OpenReadTaskAsync_b__194_2, (WebClient_c * __this, WebClient * webClient, OpenReadCompletedEventHandler * completion, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E050, WebClient_c__OpenReadTaskAsync_b__194_2__MethodInfo); DO_APP_FUNC(0x02590510, Stream *, WebClient_c__OpenWriteTaskAsync_b__198_1, (WebClient_c * __this, OpenWriteCompletedEventArgs * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DF68, WebClient_c__OpenWriteTaskAsync_b__198_1__MethodInfo); DO_APP_FUNC(0x025905A0, void, WebClient_c__OpenWriteTaskAsync_b__198_2, (WebClient_c * __this, WebClient * webClient, OpenWriteCompletedEventHandler * completion, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DF60, WebClient_c__OpenWriteTaskAsync_b__198_2__MethodInfo); DO_APP_FUNC(0x02590510, String *, WebClient_c__UploadStringTaskAsync_b__202_1, (WebClient_c * __this, UploadStringCompletedEventArgs * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DF40, WebClient_c__UploadStringTaskAsync_b__202_1__MethodInfo); DO_APP_FUNC(0x025905D0, void, WebClient_c__UploadStringTaskAsync_b__202_2, (WebClient_c * __this, WebClient * webClient, UploadStringCompletedEventHandler * completion, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DF38, WebClient_c__UploadStringTaskAsync_b__202_2__MethodInfo); DO_APP_FUNC(0x02590510, Byte__Array *, WebClient_c__DownloadDataTaskAsync_b__204_1, (WebClient_c * __this, DownloadDataCompletedEventArgs * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DFD0, WebClient_c__DownloadDataTaskAsync_b__204_1__MethodInfo); DO_APP_FUNC(0x02590600, void, WebClient_c__DownloadDataTaskAsync_b__204_2, (WebClient_c * __this, WebClient * webClient, DownloadDataCompletedEventHandler * completion, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DFC8, WebClient_c__DownloadDataTaskAsync_b__204_2__MethodInfo); DO_APP_FUNC(0x003CB690, Object *, WebClient_c__DownloadFileTaskAsync_b__206_1, (WebClient_c * __this, AsyncCompletedEventArgs * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DFD8, WebClient_c__DownloadFileTaskAsync_b__206_1__MethodInfo); DO_APP_FUNC(0x02590630, void, WebClient_c__DownloadFileTaskAsync_b__206_2, (WebClient_c * __this, WebClient * webClient, AsyncCompletedEventHandler * completion, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DF98, WebClient_c__DownloadFileTaskAsync_b__206_2__MethodInfo); DO_APP_FUNC(0x02590510, Byte__Array *, WebClient_c__UploadDataTaskAsync_b__210_1, (WebClient_c * __this, UploadDataCompletedEventArgs * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DFA8, WebClient_c__UploadDataTaskAsync_b__210_1__MethodInfo); DO_APP_FUNC(0x02590660, void, WebClient_c__UploadDataTaskAsync_b__210_2, (WebClient_c * __this, WebClient * webClient, UploadDataCompletedEventHandler * completion, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DFA0, WebClient_c__UploadDataTaskAsync_b__210_2__MethodInfo); DO_APP_FUNC(0x02590510, Byte__Array *, WebClient_c__UploadFileTaskAsync_b__214_1, (WebClient_c * __this, UploadFileCompletedEventArgs * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DEF8, WebClient_c__UploadFileTaskAsync_b__214_1__MethodInfo); DO_APP_FUNC(0x02590690, void, WebClient_c__UploadFileTaskAsync_b__214_2, (WebClient_c * __this, WebClient * webClient, UploadFileCompletedEventHandler * completion, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DEF0, WebClient_c__UploadFileTaskAsync_b__214_2__MethodInfo); DO_APP_FUNC(0x02590510, Byte__Array *, WebClient_c__UploadValuesTaskAsync_b__218_1, (WebClient_c * __this, UploadValuesCompletedEventArgs * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DED0, WebClient_c__UploadValuesTaskAsync_b__218_1__MethodInfo); DO_APP_FUNC(0x025906C0, void, WebClient_c__UploadValuesTaskAsync_b__218_2, (WebClient_c * __this, WebClient * webClient, UploadValuesCompletedEventHandler * completion, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DEC8, WebClient_c__UploadValuesTaskAsync_b__218_2__MethodInfo); DO_APP_FUNC(0x003AE050, void, WebClient_c_DisplayClass194_0__ctor, (WebClient_c_DisplayClass194_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x025906F0, void, WebClient_c_DisplayClass194_0__OpenReadTaskAsync_b__0, (WebClient_c_DisplayClass194_0 * __this, Object * sender, OpenReadCompletedEventArgs * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4D58, WebClient_c_DisplayClass194_0__OpenReadTaskAsync_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, WebClient_c_DisplayClass198_0__ctor, (WebClient_c_DisplayClass198_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x025909D0, void, WebClient_c_DisplayClass198_0__OpenWriteTaskAsync_b__0, (WebClient_c_DisplayClass198_0 * __this, Object * sender, OpenWriteCompletedEventArgs * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4D70, WebClient_c_DisplayClass198_0__OpenWriteTaskAsync_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, WebClient_c_DisplayClass202_0__ctor, (WebClient_c_DisplayClass202_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x02590CB0, void, WebClient_c_DisplayClass202_0__UploadStringTaskAsync_b__0, (WebClient_c_DisplayClass202_0 * __this, Object * sender, UploadStringCompletedEventArgs * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4D30, WebClient_c_DisplayClass202_0__UploadStringTaskAsync_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, WebClient_c_DisplayClass204_0__ctor, (WebClient_c_DisplayClass204_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x02590F90, void, WebClient_c_DisplayClass204_0__DownloadDataTaskAsync_b__0, (WebClient_c_DisplayClass204_0 * __this, Object * sender, DownloadDataCompletedEventArgs * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4DB0, WebClient_c_DisplayClass204_0__DownloadDataTaskAsync_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, WebClient_c_DisplayClass206_0__ctor, (WebClient_c_DisplayClass206_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x02591270, void, WebClient_c_DisplayClass206_0__DownloadFileTaskAsync_b__0, (WebClient_c_DisplayClass206_0 * __this, Object * sender, AsyncCompletedEventArgs * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4DB8, WebClient_c_DisplayClass206_0__DownloadFileTaskAsync_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, WebClient_c_DisplayClass210_0__ctor, (WebClient_c_DisplayClass210_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x02591550, void, WebClient_c_DisplayClass210_0__UploadDataTaskAsync_b__0, (WebClient_c_DisplayClass210_0 * __this, Object * sender, UploadDataCompletedEventArgs * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4D80, WebClient_c_DisplayClass210_0__UploadDataTaskAsync_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, WebClient_c_DisplayClass214_0__ctor, (WebClient_c_DisplayClass214_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x02591830, void, WebClient_c_DisplayClass214_0__UploadFileTaskAsync_b__0, (WebClient_c_DisplayClass214_0 * __this, Object * sender, UploadFileCompletedEventArgs * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4D90, WebClient_c_DisplayClass214_0__UploadFileTaskAsync_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, WebClient_c_DisplayClass218_0__ctor, (WebClient_c_DisplayClass218_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x02591B20, void, WebClient_c_DisplayClass218_0__UploadValuesTaskAsync_b__0, (WebClient_c_DisplayClass218_0 * __this, Object * sender, UploadValuesCompletedEventArgs * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4D10, WebClient_c_DisplayClass218_0__UploadValuesTaskAsync_b__0__MethodInfo); DO_APP_FUNC(0x0103E630, void, OpenReadCompletedEventHandler__ctor, (OpenReadCompletedEventHandler * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EC2D0, void, OpenReadCompletedEventHandler_Invoke, (OpenReadCompletedEventHandler * __this, Object * sender, OpenReadCompletedEventArgs * e, MethodInfo * method)); DO_APP_FUNC(0x0042F0F0, IAsyncResult *, OpenReadCompletedEventHandler_BeginInvoke, (OpenReadCompletedEventHandler * __this, Object * sender, OpenReadCompletedEventArgs * e, AsyncCallback * callback, Object * object, MethodInfo * method)); @@ -30013,37 +34094,47 @@ DO_APP_FUNC(0x003BA270, void, WriteStreamClosedEventHandler_EndInvoke, (WriteStr DO_APP_FUNC(0x02591E10, void, OpenReadCompletedEventArgs__ctor, (OpenReadCompletedEventArgs * __this, Stream * result, Exception * exception, bool cancelled, Object * userToken, MethodInfo * method)); DO_APP_FUNC(0x02591EA0, Stream *, OpenReadCompletedEventArgs_get_Result, (OpenReadCompletedEventArgs * __this, MethodInfo * method)); DO_APP_FUNC(0x02591EC0, void, OpenReadCompletedEventArgs__ctor_1, (OpenReadCompletedEventArgs * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DF20, OpenReadCompletedEventArgs__ctor_1__MethodInfo); DO_APP_FUNC(0x02591E10, void, OpenWriteCompletedEventArgs__ctor, (OpenWriteCompletedEventArgs * __this, Stream * result, Exception * exception, bool cancelled, Object * userToken, MethodInfo * method)); DO_APP_FUNC(0x02591EA0, Stream *, OpenWriteCompletedEventArgs_get_Result, (OpenWriteCompletedEventArgs * __this, MethodInfo * method)); DO_APP_FUNC(0x02591EF0, void, OpenWriteCompletedEventArgs__ctor_1, (OpenWriteCompletedEventArgs * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DF28, OpenWriteCompletedEventArgs__ctor_1__MethodInfo); DO_APP_FUNC(0x02591E10, void, DownloadStringCompletedEventArgs__ctor, (DownloadStringCompletedEventArgs * __this, String * result, Exception * exception, bool cancelled, Object * userToken, MethodInfo * method)); DO_APP_FUNC(0x02591EA0, String *, DownloadStringCompletedEventArgs_get_Result, (DownloadStringCompletedEventArgs * __this, MethodInfo * method)); DO_APP_FUNC(0x02591F20, void, DownloadStringCompletedEventArgs__ctor_1, (DownloadStringCompletedEventArgs * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DF08, DownloadStringCompletedEventArgs__ctor_1__MethodInfo); DO_APP_FUNC(0x02591E10, void, DownloadDataCompletedEventArgs__ctor, (DownloadDataCompletedEventArgs * __this, Byte__Array * result, Exception * exception, bool cancelled, Object * userToken, MethodInfo * method)); DO_APP_FUNC(0x02591EA0, Byte__Array *, DownloadDataCompletedEventArgs_get_Result, (DownloadDataCompletedEventArgs * __this, MethodInfo * method)); DO_APP_FUNC(0x02591F50, void, DownloadDataCompletedEventArgs__ctor_1, (DownloadDataCompletedEventArgs * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DF18, DownloadDataCompletedEventArgs__ctor_1__MethodInfo); DO_APP_FUNC(0x02591E10, void, UploadStringCompletedEventArgs__ctor, (UploadStringCompletedEventArgs * __this, String * result, Exception * exception, bool cancelled, Object * userToken, MethodInfo * method)); DO_APP_FUNC(0x02591EA0, String *, UploadStringCompletedEventArgs_get_Result, (UploadStringCompletedEventArgs * __this, MethodInfo * method)); DO_APP_FUNC(0x02591F80, void, UploadStringCompletedEventArgs__ctor_1, (UploadStringCompletedEventArgs * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DF10, UploadStringCompletedEventArgs__ctor_1__MethodInfo); DO_APP_FUNC(0x02591E10, void, UploadDataCompletedEventArgs__ctor, (UploadDataCompletedEventArgs * __this, Byte__Array * result, Exception * exception, bool cancelled, Object * userToken, MethodInfo * method)); DO_APP_FUNC(0x02591EA0, Byte__Array *, UploadDataCompletedEventArgs_get_Result, (UploadDataCompletedEventArgs * __this, MethodInfo * method)); DO_APP_FUNC(0x02591FB0, void, UploadDataCompletedEventArgs__ctor_1, (UploadDataCompletedEventArgs * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DE90, UploadDataCompletedEventArgs__ctor_1__MethodInfo); DO_APP_FUNC(0x02591E10, void, UploadFileCompletedEventArgs__ctor, (UploadFileCompletedEventArgs * __this, Byte__Array * result, Exception * exception, bool cancelled, Object * userToken, MethodInfo * method)); DO_APP_FUNC(0x02591EA0, Byte__Array *, UploadFileCompletedEventArgs_get_Result, (UploadFileCompletedEventArgs * __this, MethodInfo * method)); DO_APP_FUNC(0x02591FE0, void, UploadFileCompletedEventArgs__ctor_1, (UploadFileCompletedEventArgs * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DE98, UploadFileCompletedEventArgs__ctor_1__MethodInfo); DO_APP_FUNC(0x02591E10, void, UploadValuesCompletedEventArgs__ctor, (UploadValuesCompletedEventArgs * __this, Byte__Array * result, Exception * exception, bool cancelled, Object * userToken, MethodInfo * method)); DO_APP_FUNC(0x02591EA0, Byte__Array *, UploadValuesCompletedEventArgs_get_Result, (UploadValuesCompletedEventArgs * __this, MethodInfo * method)); DO_APP_FUNC(0x02592010, void, UploadValuesCompletedEventArgs__ctor_1, (UploadValuesCompletedEventArgs * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DE78, UploadValuesCompletedEventArgs__ctor_1__MethodInfo); DO_APP_FUNC(0x02592040, void, DownloadProgressChangedEventArgs__ctor, (DownloadProgressChangedEventArgs * __this, int32_t progressPercentage, Object * userToken, int64_t bytesReceived, int64_t totalBytesToReceive, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, int64_t, DownloadProgressChangedEventArgs_get_BytesReceived, (DownloadProgressChangedEventArgs * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3B0, int64_t, DownloadProgressChangedEventArgs_get_TotalBytesToReceive, (DownloadProgressChangedEventArgs * __this, MethodInfo * method)); DO_APP_FUNC(0x02592070, void, DownloadProgressChangedEventArgs__ctor_1, (DownloadProgressChangedEventArgs * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DE88, DownloadProgressChangedEventArgs__ctor_1__MethodInfo); DO_APP_FUNC(0x025920A0, void, UploadProgressChangedEventArgs__ctor, (UploadProgressChangedEventArgs * __this, int32_t progressPercentage, Object * userToken, int64_t bytesSent, int64_t totalBytesToSend, int64_t bytesReceived, int64_t totalBytesToReceive, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, int64_t, UploadProgressChangedEventArgs_get_BytesReceived, (UploadProgressChangedEventArgs * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3B0, int64_t, UploadProgressChangedEventArgs_get_TotalBytesToReceive, (UploadProgressChangedEventArgs * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB330, int64_t, UploadProgressChangedEventArgs_get_BytesSent, (UploadProgressChangedEventArgs * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7320, int64_t, UploadProgressChangedEventArgs_get_TotalBytesToSend, (UploadProgressChangedEventArgs * __this, MethodInfo * method)); DO_APP_FUNC(0x025920F0, void, UploadProgressChangedEventArgs__ctor_1, (UploadProgressChangedEventArgs * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DE80, UploadProgressChangedEventArgs__ctor_1__MethodInfo); DO_APP_FUNC(0x02592120, void, WriteStreamClosedEventArgs__ctor, (WriteStreamClosedEventArgs * __this, MethodInfo * method)); DO_APP_FUNC(0x003CB690, Exception *, WriteStreamClosedEventArgs_get_Error, (WriteStreamClosedEventArgs * __this, MethodInfo * method)); DO_APP_FUNC(0x0256D2F0, void, AuthenticationSchemeSelector__ctor, (AuthenticationSchemeSelector * __this, Object * object, void * method_1, MethodInfo * method)); @@ -30065,17 +34156,23 @@ DO_APP_FUNC(0x00A474A0, void, Authorization_set_MutuallyAuthenticated, (Authoriz DO_APP_FUNC(0x02592620, bool, CredentialCache_get_IsDefaultInCache, (CredentialCache * __this, MethodInfo * method)); DO_APP_FUNC(0x02592630, void, CredentialCache__ctor, (CredentialCache * __this, MethodInfo * method)); DO_APP_FUNC(0x02592790, void, CredentialCache_Add, (CredentialCache * __this, Uri * uriPrefix, String * authType, NetworkCredential * cred, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DE38, CredentialCache_Add__MethodInfo); DO_APP_FUNC(0x02592A50, void, CredentialCache_Add_1, (CredentialCache * __this, String * host, int32_t port, String * authenticationType, NetworkCredential * credential, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DE18, CredentialCache_Add_1__MethodInfo); DO_APP_FUNC(0x02592E10, void, CredentialCache_Remove, (CredentialCache * __this, Uri * uriPrefix, String * authType, MethodInfo * method)); DO_APP_FUNC(0x02592F50, void, CredentialCache_Remove_1, (CredentialCache * __this, String * host, int32_t port, String * authenticationType, MethodInfo * method)); DO_APP_FUNC(0x02593090, NetworkCredential *, CredentialCache_GetCredential, (CredentialCache * __this, Uri * uriPrefix, String * authType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DE68, CredentialCache_GetCredential__MethodInfo); DO_APP_FUNC(0x025934F0, NetworkCredential *, CredentialCache_GetCredential_1, (CredentialCache * __this, String * host, int32_t port, String * authenticationType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DE70, CredentialCache_GetCredential_1__MethodInfo); DO_APP_FUNC(0x02593A30, IEnumerator *, CredentialCache_GetEnumerator, (CredentialCache * __this, MethodInfo * method)); DO_APP_FUNC(0x02593AE0, ICredentials *, CredentialCache_get_DefaultCredentials, (MethodInfo * method)); DO_APP_FUNC(0x02593B40, NetworkCredential *, CredentialCache_get_DefaultNetworkCredentials, (MethodInfo * method)); DO_APP_FUNC(0x02593BA0, void, CredentialCache_CredentialEnumerator__ctor, (CredentialCache_CredentialEnumerator * __this, CredentialCache * cache, Hashtable * table, Hashtable * hostTable, int32_t version, MethodInfo * method)); DO_APP_FUNC(0x02593DA0, Object *, CredentialCache_CredentialEnumerator_System_Collections_IEnumerator_get_Current, (CredentialCache_CredentialEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DDC8, CredentialCache_CredentialEnumerator_System_Collections_IEnumerator_get_Current__MethodInfo); DO_APP_FUNC(0x02593ED0, bool, CredentialCache_CredentialEnumerator_System_Collections_IEnumerator_MoveNext, (CredentialCache_CredentialEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DDC0, CredentialCache_CredentialEnumerator_System_Collections_IEnumerator_MoveNext__MethodInfo); DO_APP_FUNC(0x006C4180, void, CredentialCache_CredentialEnumerator_System_Collections_IEnumerator_Reset, (CredentialCache_CredentialEnumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x02593F90, void, SystemNetworkCredential__ctor, (SystemNetworkCredential * __this, MethodInfo * method)); DO_APP_FUNC(0x02593FF0, void, SystemNetworkCredential__cctor, (MethodInfo * method)); @@ -30092,6 +34189,7 @@ DO_APP_FUNC(0x02594FB0, bool, CredentialKey_Equals, (CredentialKey * __this, Obj DO_APP_FUNC(0x02595130, String *, CredentialKey_ToString, (CredentialKey * __this, MethodInfo * method)); DO_APP_FUNC(0x025953C0, void, DnsEndPoint__ctor, (DnsEndPoint * __this, String * host, int32_t port, MethodInfo * method)); DO_APP_FUNC(0x025953E0, void, DnsEndPoint__ctor_1, (DnsEndPoint * __this, String * host, int32_t port, AddressFamily__Enum addressFamily, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DE00, DnsEndPoint__ctor_1__MethodInfo); DO_APP_FUNC(0x02595610, bool, DnsEndPoint_Equals, (DnsEndPoint * __this, Object * comparand, MethodInfo * method)); DO_APP_FUNC(0x025956E0, int32_t, DnsEndPoint_GetHashCode, (DnsEndPoint * __this, MethodInfo * method)); DO_APP_FUNC(0x025957B0, String *, DnsEndPoint_ToString, (DnsEndPoint * __this, MethodInfo * method)); @@ -30099,8 +34197,11 @@ DO_APP_FUNC(0x003BB3C0, String *, DnsEndPoint_get_Host, (DnsEndPoint * __this, M DO_APP_FUNC(0x003CD440, AddressFamily__Enum, DnsEndPoint_get_AddressFamily, (DnsEndPoint * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, DnsEndPoint_get_Port, (DnsEndPoint * __this, MethodInfo * method)); DO_APP_FUNC(0x025959D0, AddressFamily__Enum, EndPoint_get_AddressFamily, (EndPoint * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DDE8, EndPoint_get_AddressFamily__MethodInfo); DO_APP_FUNC(0x02595A00, SocketAddress *, EndPoint_Serialize, (EndPoint * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DDE0, EndPoint_Serialize__MethodInfo); DO_APP_FUNC(0x02595A30, EndPoint *, EndPoint_Create, (EndPoint * __this, SocketAddress * socketAddress, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DD90, EndPoint_Create__MethodInfo); DO_APP_FUNC(0x003AE050, void, EndPoint__ctor, (EndPoint * __this, MethodInfo * method)); DO_APP_FUNC(0x02595A60, IWebProxy *, GlobalProxySelection_get_Select, (MethodInfo * method)); DO_APP_FUNC(0x02595B70, void, GlobalProxySelection_set_Select, (IWebProxy * value, MethodInfo * method)); @@ -30145,6 +34246,7 @@ DO_APP_FUNC(0x02598A80, bool, NclUtilities_IsCredentialFailure, (SecurityStatus_ DO_APP_FUNC(0x02598AB0, bool, NclUtilities_IsClientFault, (SecurityStatus__Enum error, MethodInfo * method)); DO_APP_FUNC(0x02598AE0, ContextCallback *, NclUtilities_get_ContextRelativeDemandCallback, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NclUtilities_DemandCallback, (Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DCB8, NclUtilities_DemandCallback__MethodInfo); DO_APP_FUNC(0x02598C10, bool, NclUtilities_GuessWhetherHostIsLoopback, (String * host, MethodInfo * method)); DO_APP_FUNC(0x02598CF0, bool, NclUtilities_IsFatal, (Exception * exception, MethodInfo * method)); DO_APP_FUNC(0x02598DB0, bool, NclUtilities_IsAddressLocal, (IPAddress * ipAddress, MethodInfo * method)); @@ -30152,13 +34254,18 @@ DO_APP_FUNC(0x02598E40, IPHostEntry *, NclUtilities_GetLocalHost, (MethodInfo * DO_APP_FUNC(0x02598E90, IPAddress__Array *, NclUtilities_get_LocalAddresses, (MethodInfo * method)); DO_APP_FUNC(0x025995F0, Object *, NclUtilities_get_LocalAddressesLock, (MethodInfo * method)); DO_APP_FUNC(0x025996D0, void, NclConstants__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x00C42850, void, InterlockedGate_Reset, (InterlockedGate__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02599A30, bool, InterlockedGate_Trigger, (InterlockedGate__Boxed * __this, bool exclusive, MethodInfo * method)); -DO_APP_FUNC(0x02599AB0, bool, InterlockedGate_StartTriggering, (InterlockedGate__Boxed * __this, bool exclusive, MethodInfo * method)); -DO_APP_FUNC(0x02599B30, void, InterlockedGate_FinishTriggering, (InterlockedGate__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02599BA0, bool, InterlockedGate_StartSignaling, (InterlockedGate__Boxed * __this, bool exclusive, MethodInfo * method)); -DO_APP_FUNC(0x02599C30, void, InterlockedGate_FinishSignaling, (InterlockedGate__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02599CA0, bool, InterlockedGate_Complete, (InterlockedGate__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C42850, void, InterlockedGate_Reset, (InterlockedGate * __this, MethodInfo * method)); +DO_APP_FUNC(0x02599A30, bool, InterlockedGate_Trigger, (InterlockedGate * __this, bool exclusive, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DC58, InterlockedGate_Trigger__MethodInfo); +DO_APP_FUNC(0x02599AB0, bool, InterlockedGate_StartTriggering, (InterlockedGate * __this, bool exclusive, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DC50, InterlockedGate_StartTriggering__MethodInfo); +DO_APP_FUNC(0x02599B30, void, InterlockedGate_FinishTriggering, (InterlockedGate * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DC48, InterlockedGate_FinishTriggering__MethodInfo); +DO_APP_FUNC(0x02599BA0, bool, InterlockedGate_StartSignaling, (InterlockedGate * __this, bool exclusive, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DC70, InterlockedGate_StartSignaling__MethodInfo); +DO_APP_FUNC(0x02599C30, void, InterlockedGate_FinishSignaling, (InterlockedGate * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DC68, InterlockedGate_FinishSignaling__MethodInfo); +DO_APP_FUNC(0x02599CA0, bool, InterlockedGate_Complete, (InterlockedGate * __this, MethodInfo * method)); DO_APP_FUNC(0x02599CC0, String__Array *, ValidationHelper_MakeEmptyArrayNull, (String__Array * stringArray, MethodInfo * method)); DO_APP_FUNC(0x02599CD0, String *, ValidationHelper_MakeStringNull, (String * stringValue, MethodInfo * method)); DO_APP_FUNC(0x02599CE0, String *, ValidationHelper_ExceptionMessage, (Exception * exception, MethodInfo * method)); @@ -30169,6 +34276,7 @@ DO_APP_FUNC(0x0259A210, bool, ValidationHelper_IsBlankString, (String * stringVa DO_APP_FUNC(0x0259A220, bool, ValidationHelper_ValidateTcpPort, (int32_t port, MethodInfo * method)); DO_APP_FUNC(0x0259A240, bool, ValidationHelper_ValidateRange, (int32_t actual, int32_t fromAllowed, int32_t toAllowed, MethodInfo * method)); DO_APP_FUNC(0x0259A250, void, ValidationHelper_ValidateSegment, (ArraySegment_1_Byte_ segment, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DC88, ValidationHelper_ValidateSegment__MethodInfo); DO_APP_FUNC(0x0259A3E0, void, ValidationHelper__cctor, (MethodInfo * method)); DO_APP_FUNC(0x0259A600, NotImplementedException *, ExceptionHelper_get_MethodNotImplementedException, (MethodInfo * method)); DO_APP_FUNC(0x0259A680, NotImplementedException *, ExceptionHelper_get_PropertyNotImplementedException, (MethodInfo * method)); @@ -30183,6 +34291,7 @@ DO_APP_FUNC(0x003AE050, void, SecChannelBindings__ctor, (SecChannelBindings * __ DO_APP_FUNC(0x0259AB10, IWebRequestCreate *, WebRequestPrefixElement_get_Creator, (WebRequestPrefixElement * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE960, void, WebRequestPrefixElement_set_Creator, (WebRequestPrefixElement * __this, IWebRequestCreate * value, MethodInfo * method)); DO_APP_FUNC(0x0259ADD0, void, WebRequestPrefixElement__ctor, (WebRequestPrefixElement * __this, String * P, Type * creatorType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DC28, WebRequestPrefixElement__ctor__MethodInfo); DO_APP_FUNC(0x003BCE40, void, WebRequestPrefixElement__ctor_1, (WebRequestPrefixElement * __this, String * P, IWebRequestCreate * C, MethodInfo * method)); DO_APP_FUNC(0x015BD340, void, HttpAbortDelegate__ctor, (HttpAbortDelegate * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003ED330, bool, HttpAbortDelegate_Invoke, (HttpAbortDelegate * __this, HttpWebRequest * request, WebException * webException, MethodInfo * method)); @@ -30202,6 +34311,7 @@ DO_APP_FUNC(0x0259B950, bool, KnownHttpVerb_Equals, (KnownHttpVerb * __this, Kno DO_APP_FUNC(0x0259BA80, KnownHttpVerb *, KnownHttpVerb_Parse, (String * name, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HttpProtocolUtils__ctor, (HttpProtocolUtils * __this, MethodInfo * method)); DO_APP_FUNC(0x0259BB90, DateTime, HttpProtocolUtils_string2date, (String * S, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DB98, HttpProtocolUtils_string2date__MethodInfo); DO_APP_FUNC(0x0259BC30, String *, HttpProtocolUtils_date2string, (DateTime D, MethodInfo * method)); DO_APP_FUNC(0x0259BD30, void, SplitWritesState__ctor, (SplitWritesState * __this, BufferOffsetSize__Array * buffers, MethodInfo * method)); DO_APP_FUNC(0x0259BDE0, bool, SplitWritesState_get_IsDone, (SplitWritesState * __this, MethodInfo * method)); @@ -30234,12 +34344,16 @@ DO_APP_FUNC(0x0259CC80, void, ProtocolViolationException_GetObjectData, (Protoco DO_APP_FUNC(0x0259CCA0, AddressFamily__Enum, SocketAddress_get_Family, (SocketAddress * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD50, int32_t, SocketAddress_get_Size, (SocketAddress * __this, MethodInfo * method)); DO_APP_FUNC(0x0259CCE0, uint8_t, SocketAddress_get_Item, (SocketAddress * __this, int32_t offset, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DB58, SocketAddress_get_Item__MethodInfo); DO_APP_FUNC(0x0259CD60, void, SocketAddress_set_Item, (SocketAddress * __this, int32_t offset, uint8_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DB68, SocketAddress_set_Item__MethodInfo); DO_APP_FUNC(0x0259CE00, void, SocketAddress__ctor, (SocketAddress * __this, AddressFamily__Enum family, MethodInfo * method)); DO_APP_FUNC(0x0259CE10, void, SocketAddress__ctor_1, (SocketAddress * __this, AddressFamily__Enum family, int32_t size, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DB60, SocketAddress__ctor_1__MethodInfo); DO_APP_FUNC(0x0259CF50, void, SocketAddress__ctor_2, (SocketAddress * __this, IPAddress * ipAddress, MethodInfo * method)); DO_APP_FUNC(0x0259D2A0, void, SocketAddress__ctor_3, (SocketAddress * __this, IPAddress * ipaddress, int32_t port, MethodInfo * method)); DO_APP_FUNC(0x0259D300, IPAddress *, SocketAddress_GetIPAddress, (SocketAddress * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DB88, SocketAddress_GetIPAddress__MethodInfo); DO_APP_FUNC(0x0259D5E0, IPEndPoint *, SocketAddress_GetIPEndPoint, (SocketAddress * __this, MethodInfo * method)); DO_APP_FUNC(0x0259D690, void, SocketAddress_CopyAddressSizeIntoBuffer, (SocketAddress * __this, MethodInfo * method)); DO_APP_FUNC(0x0259D740, int32_t, SocketAddress_GetAddressSizeOffset, (SocketAddress * __this, MethodInfo * method)); @@ -30248,6 +34362,7 @@ DO_APP_FUNC(0x0259D770, bool, SocketAddress_Equals, (SocketAddress * __this, Obj DO_APP_FUNC(0x0259D8A0, int32_t, SocketAddress_GetHashCode, (SocketAddress * __this, MethodInfo * method)); DO_APP_FUNC(0x0259D9C0, String *, SocketAddress_ToString, (SocketAddress * __this, MethodInfo * method)); DO_APP_FUNC(0x0259DDD0, IEnumerable_1_System_Security_Authentication_ExtendedProtection_TokenBinding_ *, TransportContext_GetTlsTokenBindings, (TransportContext * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DB78, TransportContext_GetTlsTokenBindings__MethodInfo); DO_APP_FUNC(0x003AE050, void, TransportContext__ctor, (TransportContext * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, CachedTransportContext__ctor, (CachedTransportContext * __this, ChannelBinding * binding, MethodInfo * method)); DO_APP_FUNC(0x0259DE20, ChannelBinding *, CachedTransportContext_GetChannelBinding, (CachedTransportContext * __this, ChannelBindingKind__Enum kind, MethodInfo * method)); @@ -30267,6 +34382,7 @@ DO_APP_FUNC(0x00C2C5E0, WebExceptionStatus__Enum, WebException_get_Status, (WebE DO_APP_FUNC(0x0049E0C0, WebResponse *, WebException_get_Response, (WebException * __this, MethodInfo * method)); DO_APP_FUNC(0x01806120, WebExceptionInternalStatus__Enum, WebException_get_InternalStatus, (WebException * __this, MethodInfo * method)); DO_APP_FUNC(0x0259E550, String *, WebExceptionMapping_GetWebStatusString, (WebExceptionStatus__Enum status, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DB20, WebExceptionMapping_GetWebStatusString__MethodInfo); DO_APP_FUNC(0x0259E740, void, WebExceptionMapping__cctor, (MethodInfo * method)); DO_APP_FUNC(0x0259E800, String *, WebHeaderCollection_get_ContentLength, (WebHeaderCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x0259E8B0, String *, WebHeaderCollection_get_CacheControl, (WebHeaderCollection * __this, MethodInfo * method)); @@ -30287,17 +34403,29 @@ DO_APP_FUNC(0x0259F3A0, bool, WebHeaderCollection_AllowMultiValues, (String * na DO_APP_FUNC(0x0259F480, bool, WebHeaderCollection_get_AllowHttpRequestHeader, (WebHeaderCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x0259F4C0, bool, WebHeaderCollection_get_AllowHttpResponseHeader, (WebHeaderCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x0259F500, String *, WebHeaderCollection_get_Item, (WebHeaderCollection * __this, HttpRequestHeader__Enum header, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DB18, WebHeaderCollection_get_Item__MethodInfo); DO_APP_FUNC(0x0259F610, void, WebHeaderCollection_set_Item, (WebHeaderCollection * __this, HttpRequestHeader__Enum header, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DAE8, WebHeaderCollection_set_Item__MethodInfo); DO_APP_FUNC(0x0259F720, String *, WebHeaderCollection_get_Item_1, (WebHeaderCollection * __this, HttpResponseHeader__Enum header, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DAF0, WebHeaderCollection_get_Item_1__MethodInfo); DO_APP_FUNC(0x0259F880, void, WebHeaderCollection_set_Item_1, (WebHeaderCollection * __this, HttpResponseHeader__Enum header, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DA98, WebHeaderCollection_set_Item_1__MethodInfo); DO_APP_FUNC(0x0259FA90, void, WebHeaderCollection_Add, (WebHeaderCollection * __this, HttpRequestHeader__Enum header, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DAA0, WebHeaderCollection_Add__MethodInfo); DO_APP_FUNC(0x0259FBA0, void, WebHeaderCollection_Add_1, (WebHeaderCollection * __this, HttpResponseHeader__Enum header, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DA88, WebHeaderCollection_Add_1__MethodInfo); DO_APP_FUNC(0x0259FDB0, void, WebHeaderCollection_Set, (WebHeaderCollection * __this, HttpRequestHeader__Enum header, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DA90, WebHeaderCollection_Set__MethodInfo); DO_APP_FUNC(0x0259FEC0, void, WebHeaderCollection_Set_1, (WebHeaderCollection * __this, HttpResponseHeader__Enum header, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DAD0, WebHeaderCollection_Set_1__MethodInfo); DO_APP_FUNC(0x025A00D0, void, WebHeaderCollection_SetInternal, (WebHeaderCollection * __this, HttpResponseHeader__Enum header, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DAC8, WebHeaderCollection_SetInternal__MethodInfo); DO_APP_FUNC(0x025A02E0, void, WebHeaderCollection_Remove, (WebHeaderCollection * __this, HttpRequestHeader__Enum header, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DAD8, WebHeaderCollection_Remove__MethodInfo); DO_APP_FUNC(0x025A03E0, void, WebHeaderCollection_Remove_1, (WebHeaderCollection * __this, HttpResponseHeader__Enum header, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DAB0, WebHeaderCollection_Remove_1__MethodInfo); DO_APP_FUNC(0x025A04E0, void, WebHeaderCollection_AddWithoutValidate, (WebHeaderCollection * __this, String * headerName, String * headerValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DAB8, WebHeaderCollection_AddWithoutValidate__MethodInfo); DO_APP_FUNC(0x025A06A0, void, WebHeaderCollection_SetAddVerified, (WebHeaderCollection * __this, String * name, String * value, MethodInfo * method)); DO_APP_FUNC(0x025A07C0, void, WebHeaderCollection_AddInternal, (WebHeaderCollection * __this, String * name, String * value, MethodInfo * method)); DO_APP_FUNC(0x025A0830, void, WebHeaderCollection_ChangeInternal, (WebHeaderCollection * __this, String * name, String * value, MethodInfo * method)); @@ -30305,18 +34433,26 @@ DO_APP_FUNC(0x025A08A0, void, WebHeaderCollection_RemoveInternal, (WebHeaderColl DO_APP_FUNC(0x025A0900, void, WebHeaderCollection_CheckUpdate, (WebHeaderCollection * __this, String * name, String * value, MethodInfo * method)); DO_APP_FUNC(0x025A09B0, void, WebHeaderCollection_AddInternalNotCommon, (WebHeaderCollection * __this, String * name, String * value, MethodInfo * method)); DO_APP_FUNC(0x025A0A10, String *, WebHeaderCollection_CheckBadChars, (String * name, bool isHeaderValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DA50, WebHeaderCollection_CheckBadChars__MethodInfo); DO_APP_FUNC(0x025A1040, bool, WebHeaderCollection_IsValidToken, (String * token, MethodInfo * method)); DO_APP_FUNC(0x025A1150, bool, WebHeaderCollection_ContainsNonAsciiChars, (String * token, MethodInfo * method)); DO_APP_FUNC(0x025A11C0, void, WebHeaderCollection_ThrowOnRestrictedHeader, (WebHeaderCollection * __this, String * headerName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DA30, WebHeaderCollection_ThrowOnRestrictedHeader__MethodInfo); DO_APP_FUNC(0x025A1420, void, WebHeaderCollection_Add_2, (WebHeaderCollection * __this, String * name, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DA68, WebHeaderCollection_Add_2__MethodInfo); DO_APP_FUNC(0x025A15F0, void, WebHeaderCollection_Add_3, (WebHeaderCollection * __this, String * header, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DA78, WebHeaderCollection_Add_3__MethodInfo); DO_APP_FUNC(0x025A1900, void, WebHeaderCollection_Set_2, (WebHeaderCollection * __this, String * name, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DA58, WebHeaderCollection_Set_2__MethodInfo); DO_APP_FUNC(0x025A1B60, void, WebHeaderCollection_SetInternal_1, (WebHeaderCollection * __this, String * name, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DA60, WebHeaderCollection_SetInternal_1__MethodInfo); DO_APP_FUNC(0x025A1DB0, void, WebHeaderCollection_Remove_2, (WebHeaderCollection * __this, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DA18, WebHeaderCollection_Remove_2__MethodInfo); DO_APP_FUNC(0x025A1EE0, String__Array *, WebHeaderCollection_GetValues, (WebHeaderCollection * __this, String * header, MethodInfo * method)); DO_APP_FUNC(0x025A2120, String *, WebHeaderCollection_ToString, (WebHeaderCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x025A2180, String *, WebHeaderCollection_ToString_1, (WebHeaderCollection * __this, bool forTrace, MethodInfo * method)); DO_APP_FUNC(0x025A21E0, String *, WebHeaderCollection_GetAsString, (NameValueCollection * cc, bool winInetCompat, bool forTrace, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DA10, WebHeaderCollection_GetAsString__MethodInfo); DO_APP_FUNC(0x025A24A0, Byte__Array *, WebHeaderCollection_ToByteArray, (WebHeaderCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x025A2580, bool, WebHeaderCollection_IsRestricted, (String * headerName, MethodInfo * method)); DO_APP_FUNC(0x025A2650, bool, WebHeaderCollection_IsRestricted_1, (String * headerName, bool response, MethodInfo * method)); @@ -30326,8 +34462,8 @@ DO_APP_FUNC(0x025A2920, void, WebHeaderCollection__ctor_2, (WebHeaderCollection DO_APP_FUNC(0x025A2B90, void, WebHeaderCollection__ctor_3, (WebHeaderCollection * __this, SerializationInfo * serializationInfo, StreamingContext streamingContext, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, WebHeaderCollection_OnDeserialization, (WebHeaderCollection * __this, Object * sender, MethodInfo * method)); DO_APP_FUNC(0x025A2EC0, void, WebHeaderCollection_GetObjectData, (WebHeaderCollection * __this, SerializationInfo * serializationInfo, StreamingContext streamingContext, MethodInfo * method)); -DO_APP_FUNC(0x025A3520, DataParseStatus__Enum, WebHeaderCollection_ParseHeaders, (WebHeaderCollection * __this, Byte__Array * buffer, int32_t size, int32_t unparsed, int32_t totalResponseHeadersLength, int32_t maximumResponseHeadersLength, WebParseError parseError, MethodInfo * method)); -DO_APP_FUNC(0x025A3E10, DataParseStatus__Enum, WebHeaderCollection_ParseHeadersStrict, (WebHeaderCollection * __this, Byte__Array * buffer, int32_t size, int32_t unparsed, int32_t totalResponseHeadersLength, int32_t maximumResponseHeadersLength, WebParseError parseError, MethodInfo * method)); +DO_APP_FUNC(0x025A3520, DataParseStatus__Enum, WebHeaderCollection_ParseHeaders, (WebHeaderCollection * __this, Byte__Array * buffer, int32_t size, int32_t * unparsed, int32_t * totalResponseHeadersLength, int32_t maximumResponseHeadersLength, WebParseError * parseError, MethodInfo * method)); +DO_APP_FUNC(0x025A3E10, DataParseStatus__Enum, WebHeaderCollection_ParseHeadersStrict, (WebHeaderCollection * __this, Byte__Array * buffer, int32_t size, int32_t * unparsed, int32_t * totalResponseHeadersLength, int32_t maximumResponseHeadersLength, WebParseError * parseError, MethodInfo * method)); DO_APP_FUNC(0x025A48F0, void, WebHeaderCollection_System_Runtime_Serialization_ISerializable_GetObjectData, (WebHeaderCollection * __this, SerializationInfo * serializationInfo, StreamingContext streamingContext, MethodInfo * method)); DO_APP_FUNC(0x025A4920, String *, WebHeaderCollection_Get, (WebHeaderCollection * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x025A4C50, IEnumerator *, WebHeaderCollection_GetEnumerator, (WebHeaderCollection * __this, MethodInfo * method)); @@ -30364,15 +34500,21 @@ DO_APP_FUNC(0x025A6A40, void, HostHeaderString_Copy, (HostHeaderString * __this, DO_APP_FUNC(0x003BCD60, void, WebPermissionAttribute__ctor, (WebPermissionAttribute * __this, SecurityAction__Enum action, MethodInfo * method)); DO_APP_FUNC(0x025A6AA0, String *, WebPermissionAttribute_get_Connect, (WebPermissionAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x025A6AF0, void, WebPermissionAttribute_set_Connect, (WebPermissionAttribute * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D940, WebPermissionAttribute_set_Connect__MethodInfo); DO_APP_FUNC(0x025A6C40, String *, WebPermissionAttribute_get_Accept, (WebPermissionAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x025A6C90, void, WebPermissionAttribute_set_Accept, (WebPermissionAttribute * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D950, WebPermissionAttribute_set_Accept__MethodInfo); DO_APP_FUNC(0x025A6DE0, String *, WebPermissionAttribute_get_ConnectPattern, (WebPermissionAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x025A6ED0, void, WebPermissionAttribute_set_ConnectPattern, (WebPermissionAttribute * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D930, WebPermissionAttribute_set_ConnectPattern__MethodInfo); DO_APP_FUNC(0x025A7200, String *, WebPermissionAttribute_get_AcceptPattern, (WebPermissionAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x025A72F0, void, WebPermissionAttribute_set_AcceptPattern, (WebPermissionAttribute * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D8E8, WebPermissionAttribute_set_AcceptPattern__MethodInfo); DO_APP_FUNC(0x025A7620, IPermission *, WebPermissionAttribute_CreatePermission, (WebPermissionAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x025A7AE0, void, DelayedRegex__ctor, (DelayedRegex * __this, String * regexString, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D8D8, DelayedRegex__ctor__MethodInfo); DO_APP_FUNC(0x025A7BA0, void, DelayedRegex__ctor_1, (DelayedRegex * __this, Regex * regex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D8C8, DelayedRegex__ctor_1__MethodInfo); DO_APP_FUNC(0x025A7C60, Regex *, DelayedRegex_get_AsRegex, (DelayedRegex * __this, MethodInfo * method)); DO_APP_FUNC(0x025A7D60, String *, DelayedRegex_ToString, (DelayedRegex * __this, MethodInfo * method)); DO_APP_FUNC(0x025A7DF0, Regex *, WebPermission_get_MatchAllRegex, (MethodInfo * method)); @@ -30386,31 +34528,45 @@ DO_APP_FUNC(0x025A8B60, void, WebPermission__ctor_4, (WebPermission * __this, Ne DO_APP_FUNC(0x025A8CC0, void, WebPermission__ctor_5, (WebPermission * __this, NetworkAccess__Enum access, String * uriString, MethodInfo * method)); DO_APP_FUNC(0x025A8E20, void, WebPermission__ctor_6, (WebPermission * __this, NetworkAccess__Enum access, Uri * uri, MethodInfo * method)); DO_APP_FUNC(0x025A8F80, void, WebPermission_AddPermission, (WebPermission * __this, NetworkAccess__Enum access, String * uriString, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D890, WebPermission_AddPermission__MethodInfo); DO_APP_FUNC(0x025A94A0, void, WebPermission_AddPermission_1, (WebPermission * __this, NetworkAccess__Enum access, Uri * uri, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D878, WebPermission_AddPermission_1__MethodInfo); DO_APP_FUNC(0x025A9900, void, WebPermission_AddPermission_2, (WebPermission * __this, NetworkAccess__Enum access, Regex * uriRegex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D880, WebPermission_AddPermission_2__MethodInfo); DO_APP_FUNC(0x025A9AF0, void, WebPermission_AddAsPattern, (WebPermission * __this, NetworkAccess__Enum access, DelayedRegex * uriRegexPattern, MethodInfo * method)); DO_APP_FUNC(0x003BCD20, bool, WebPermission_IsUnrestricted, (WebPermission * __this, MethodInfo * method)); DO_APP_FUNC(0x025A9FA0, IPermission *, WebPermission_Copy, (WebPermission * __this, MethodInfo * method)); DO_APP_FUNC(0x025AA280, bool, WebPermission_IsSubsetOf, (WebPermission * __this, IPermission * target, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D8B8, WebPermission_IsSubsetOf__MethodInfo); DO_APP_FUNC(0x025AA920, bool, WebPermission_isSpecialSubsetCase, (String * regexToCheck, ArrayList * permList, MethodInfo * method)); DO_APP_FUNC(0x025AAF20, IPermission *, WebPermission_Union, (WebPermission * __this, IPermission * target, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D8A8, WebPermission_Union__MethodInfo); DO_APP_FUNC(0x025AB620, IPermission *, WebPermission_Intersect, (WebPermission * __this, IPermission * target, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D8A0, WebPermission_Intersect__MethodInfo); DO_APP_FUNC(0x025ABA00, void, WebPermission_FromXml, (WebPermission * __this, SecurityElement * securityElement, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D850, WebPermission_FromXml__MethodInfo); DO_APP_FUNC(0x025AC650, SecurityElement *, WebPermission_ToXml, (WebPermission * __this, MethodInfo * method)); DO_APP_FUNC(0x025AD2F0, bool, WebPermission_isMatchedURI, (Object * uriToCheck, ArrayList * uriPatternList, MethodInfo * method)); DO_APP_FUNC(0x025AD920, void, WebPermission_intersectList, (ArrayList * A, ArrayList * B, ArrayList * result, MethodInfo * method)); -DO_APP_FUNC(0x025AE520, Object *, WebPermission_intersectPair, (Object * L, Object * R, bool isUri, MethodInfo * method)); +DO_APP_FUNC(0x025AE520, Object *, WebPermission_intersectPair, (Object * L, Object * R, bool * isUri, MethodInfo * method)); DO_APP_FUNC(0x025AEDE0, IWebRequestCreate *, WebRequest_get_CreatorInstance, (WebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, WebRequest_RegisterPortableWebRequestCreator, (IWebRequestCreate * creator, MethodInfo * method)); DO_APP_FUNC(0x025AEE40, Object *, WebRequest_get_InternalSyncObject, (MethodInfo * method)); DO_APP_FUNC(0x025AEF70, TimerThread_Queue *, WebRequest_get_DefaultTimerQueue, (MethodInfo * method)); DO_APP_FUNC(0x025AEFD0, WebRequest *, WebRequest_Create, (Uri * requestUri, bool useUriBase, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10D80, WebRequest_Create__MethodInfo); DO_APP_FUNC(0x025AF460, WebRequest *, WebRequest_Create_1, (String * requestUriString, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10D98, WebRequest_Create_1__MethodInfo); DO_APP_FUNC(0x025AF560, WebRequest *, WebRequest_Create_2, (Uri * requestUri, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10D68, WebRequest_Create_2__MethodInfo); DO_APP_FUNC(0x025AF630, WebRequest *, WebRequest_CreateDefault, (Uri * requestUri, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10D78, WebRequest_CreateDefault__MethodInfo); DO_APP_FUNC(0x025AF700, HttpWebRequest *, WebRequest_CreateHttp, (String * requestUriString, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10CD8, WebRequest_CreateHttp__MethodInfo); DO_APP_FUNC(0x025AF800, HttpWebRequest *, WebRequest_CreateHttp_1, (Uri * requestUri, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10CB8, WebRequest_CreateHttp_1__MethodInfo); DO_APP_FUNC(0x025AFAD0, bool, WebRequest_RegisterPrefix, (String * prefix, IWebRequestCreate * creator, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10CE8, WebRequest_RegisterPrefix__MethodInfo); DO_APP_FUNC(0x025B0250, ArrayList *, WebRequest_get_PrefixList, (MethodInfo * method)); DO_APP_FUNC(0x025B04E0, void, WebRequest_set_PrefixList, (ArrayList * value, MethodInfo * method)); DO_APP_FUNC(0x025B0590, ArrayList *, WebRequest_PopulatePrefixList, (MethodInfo * method)); @@ -30424,36 +34580,64 @@ DO_APP_FUNC(0x003BB3E0, RequestCachePolicy *, WebRequest_get_CachePolicy, (WebRe DO_APP_FUNC(0x025B09B0, void, WebRequest_set_CachePolicy, (WebRequest * __this, RequestCachePolicy * value, MethodInfo * method)); DO_APP_FUNC(0x025B09C0, void, WebRequest_InternalSetCachePolicy, (WebRequest * __this, RequestCachePolicy * policy, MethodInfo * method)); DO_APP_FUNC(0x025B0AA0, String *, WebRequest_get_Method, (WebRequest * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10C08, WebRequest_get_Method__MethodInfo); DO_APP_FUNC(0x025B0AD0, void, WebRequest_set_Method, (WebRequest * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10C00, WebRequest_set_Method__MethodInfo); DO_APP_FUNC(0x025B0B00, Uri *, WebRequest_get_RequestUri, (WebRequest * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10BF8, WebRequest_get_RequestUri__MethodInfo); DO_APP_FUNC(0x025B0B30, String *, WebRequest_get_ConnectionGroupName, (WebRequest * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10BC8, WebRequest_get_ConnectionGroupName__MethodInfo); DO_APP_FUNC(0x025B0B60, void, WebRequest_set_ConnectionGroupName, (WebRequest * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10BC0, WebRequest_set_ConnectionGroupName__MethodInfo); DO_APP_FUNC(0x025B0B90, WebHeaderCollection *, WebRequest_get_Headers, (WebRequest * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10BB8, WebRequest_get_Headers__MethodInfo); DO_APP_FUNC(0x025B0BC0, void, WebRequest_set_Headers, (WebRequest * __this, WebHeaderCollection * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10BB0, WebRequest_set_Headers__MethodInfo); DO_APP_FUNC(0x025B0BF0, int64_t, WebRequest_get_ContentLength, (WebRequest * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10BE8, WebRequest_get_ContentLength__MethodInfo); DO_APP_FUNC(0x025B0C20, void, WebRequest_set_ContentLength, (WebRequest * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10BE0, WebRequest_set_ContentLength__MethodInfo); DO_APP_FUNC(0x025B0C50, String *, WebRequest_get_ContentType, (WebRequest * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10BD8, WebRequest_get_ContentType__MethodInfo); DO_APP_FUNC(0x025B0C80, void, WebRequest_set_ContentType, (WebRequest * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10BD0, WebRequest_set_ContentType__MethodInfo); DO_APP_FUNC(0x025B0CB0, ICredentials *, WebRequest_get_Credentials, (WebRequest * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10C68, WebRequest_get_Credentials__MethodInfo); DO_APP_FUNC(0x025B0CE0, void, WebRequest_set_Credentials, (WebRequest * __this, ICredentials * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10C60, WebRequest_set_Credentials__MethodInfo); DO_APP_FUNC(0x025B0D10, bool, WebRequest_get_UseDefaultCredentials, (WebRequest * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10C58, WebRequest_get_UseDefaultCredentials__MethodInfo); DO_APP_FUNC(0x025B0D40, void, WebRequest_set_UseDefaultCredentials, (WebRequest * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10C50, WebRequest_set_UseDefaultCredentials__MethodInfo); DO_APP_FUNC(0x025B0D70, IWebProxy *, WebRequest_get_Proxy, (WebRequest * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10C88, WebRequest_get_Proxy__MethodInfo); DO_APP_FUNC(0x025B0DA0, void, WebRequest_set_Proxy, (WebRequest * __this, IWebProxy * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10C80, WebRequest_set_Proxy__MethodInfo); DO_APP_FUNC(0x025B0DD0, bool, WebRequest_get_PreAuthenticate, (WebRequest * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10C78, WebRequest_get_PreAuthenticate__MethodInfo); DO_APP_FUNC(0x025B0E00, void, WebRequest_set_PreAuthenticate, (WebRequest * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10C70, WebRequest_set_PreAuthenticate__MethodInfo); DO_APP_FUNC(0x025B0E30, int32_t, WebRequest_get_Timeout, (WebRequest * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10C28, WebRequest_get_Timeout__MethodInfo); DO_APP_FUNC(0x025B0E60, void, WebRequest_set_Timeout, (WebRequest * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10C20, WebRequest_set_Timeout__MethodInfo); DO_APP_FUNC(0x025B0E90, Stream *, WebRequest_GetRequestStream, (WebRequest * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10C18, WebRequest_GetRequestStream__MethodInfo); DO_APP_FUNC(0x025B0EC0, WebResponse *, WebRequest_GetResponse, (WebRequest * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10C10, WebRequest_GetResponse__MethodInfo); DO_APP_FUNC(0x025B0EF0, IAsyncResult *, WebRequest_BeginGetResponse, (WebRequest * __this, AsyncCallback * callback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10C48, WebRequest_BeginGetResponse__MethodInfo); DO_APP_FUNC(0x025B0F20, WebResponse *, WebRequest_EndGetResponse, (WebRequest * __this, IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10C40, WebRequest_EndGetResponse__MethodInfo); DO_APP_FUNC(0x025B0F50, IAsyncResult *, WebRequest_BeginGetRequestStream, (WebRequest * __this, AsyncCallback * callback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10C38, WebRequest_BeginGetRequestStream__MethodInfo); DO_APP_FUNC(0x025B0F80, Stream *, WebRequest_EndGetRequestStream, (WebRequest * __this, IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10C30, WebRequest_EndGetRequestStream__MethodInfo); DO_APP_FUNC(0x025B0FB0, Task_1_System_IO_Stream_ *, WebRequest_GetRequestStreamAsync, (WebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x025B12D0, Task_1_System_Net_WebResponse_ *, WebRequest_GetResponseAsync, (WebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x025B15F0, WindowsIdentity *, WebRequest_SafeCaptureIdenity, (WebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x025B1640, void, WebRequest_Abort, (WebRequest * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10BA8, WebRequest_Abort__MethodInfo); DO_APP_FUNC(0x003BB3B0, RequestCacheProtocol *, WebRequest_get_CacheProtocol, (WebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x003C6500, void, WebRequest_set_CacheProtocol, (WebRequest * __this, RequestCacheProtocol * value, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, AuthenticationLevel__Enum, WebRequest_get_AuthenticationLevel, (WebRequest * __this, MethodInfo * method)); @@ -30469,7 +34653,9 @@ DO_APP_FUNC(0x025B1D20, IWebProxy *, WebRequest_InternalGetSystemWebProxy, (Meth DO_APP_FUNC(0x025B1D70, void, WebRequest_SetupCacheProtocol, (WebRequest * __this, Uri * uri, MethodInfo * method)); DO_APP_FUNC(0x025B1E90, void, WebRequest__cctor, (MethodInfo * method)); DO_APP_FUNC(0x025B2000, Task_1_System_IO_Stream_ *, WebRequest__GetRequestStreamAsync_b__78_0, (WebRequest * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10B88, WebRequest__GetRequestStreamAsync_b__78_0__MethodInfo); DO_APP_FUNC(0x025B2110, Task_1_System_Net_WebResponse_ *, WebRequest__GetResponseAsync_b__79_0, (WebRequest * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10B60, WebRequest__GetResponseAsync_b__79_0__MethodInfo); DO_APP_FUNC(0x025B2220, WebRequest *, WebRequest_DesignerWebRequestCreate_Create, (WebRequest_DesignerWebRequestCreate * __this, Uri * uri, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, WebRequest_DesignerWebRequestCreate__ctor, (WebRequest_DesignerWebRequestCreate * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, WebRequest_WebProxyWrapperOpaque__ctor, (WebRequest_WebProxyWrapperOpaque * __this, WebProxy * webProxy, MethodInfo * method)); @@ -30482,8 +34668,10 @@ DO_APP_FUNC(0x003BCBE0, void, WebRequest_WebProxyWrapper__ctor, (WebRequest_WebP DO_APP_FUNC(0x003BB3C0, WebProxy *, WebRequest_WebProxyWrapper_get_WebProxy, (WebRequest_WebProxyWrapper * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, WebRequest_c_DisplayClass78_0__ctor, (WebRequest_c_DisplayClass78_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x025B25C0, Task_1_System_IO_Stream_ *, WebRequest_c_DisplayClass78_0__GetRequestStreamAsync_b__1, (WebRequest_c_DisplayClass78_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10B98, WebRequest_c_DisplayClass78_0__GetRequestStreamAsync_b__1__MethodInfo); DO_APP_FUNC(0x003AE050, void, WebRequest_c_DisplayClass79_0__ctor, (WebRequest_c_DisplayClass79_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x025B2820, Task_1_System_Net_WebResponse_ *, WebRequest_c_DisplayClass79_0__GetResponseAsync_b__1, (WebRequest_c_DisplayClass79_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10B70, WebRequest_c_DisplayClass79_0__GetResponseAsync_b__1__MethodInfo); DO_APP_FUNC(0x003AE050, void, WebResponse__ctor, (WebResponse * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, WebResponse__ctor_1, (WebResponse * __this, SerializationInfo * serializationInfo, StreamingContext streamingContext, MethodInfo * method)); DO_APP_FUNC(0x025B07F0, void, WebResponse_System_Runtime_Serialization_ISerializable_GetObjectData, (WebResponse * __this, SerializationInfo * serializationInfo, StreamingContext streamingContext, MethodInfo * method)); @@ -30497,17 +34685,26 @@ DO_APP_FUNC(0x003BCC40, bool, WebResponse_get_IsCacheFresh, (WebResponse * __thi DO_APP_FUNC(0x003BCC50, void, WebResponse_set_InternalSetIsCacheFresh, (WebResponse * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, WebResponse_get_IsMutuallyAuthenticated, (WebResponse * __this, MethodInfo * method)); DO_APP_FUNC(0x025B2B20, int64_t, WebResponse_get_ContentLength, (WebResponse * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10B28, WebResponse_get_ContentLength__MethodInfo); DO_APP_FUNC(0x025B2B50, void, WebResponse_set_ContentLength, (WebResponse * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10B20, WebResponse_set_ContentLength__MethodInfo); DO_APP_FUNC(0x025B2B80, String *, WebResponse_get_ContentType, (WebResponse * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10B18, WebResponse_get_ContentType__MethodInfo); DO_APP_FUNC(0x025B2BB0, void, WebResponse_set_ContentType, (WebResponse * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10B10, WebResponse_set_ContentType__MethodInfo); DO_APP_FUNC(0x025B2BE0, Stream *, WebResponse_GetResponseStream, (WebResponse * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10B40, WebResponse_GetResponseStream__MethodInfo); DO_APP_FUNC(0x025B2C10, Uri *, WebResponse_get_ResponseUri, (WebResponse * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10B38, WebResponse_get_ResponseUri__MethodInfo); DO_APP_FUNC(0x025B2C40, WebHeaderCollection *, WebResponse_get_Headers, (WebResponse * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10B30, WebResponse_get_Headers__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, WebResponse_get_SupportsHeaders, (WebResponse * __this, MethodInfo * method)); DO_APP_FUNC(0x025B2C70, String *, WebUtility_HtmlEncode, (String * value, MethodInfo * method)); DO_APP_FUNC(0x025B2DA0, void, WebUtility_HtmlEncode_1, (String * value, TextWriter * output, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10AC8, WebUtility_HtmlEncode_1__MethodInfo); DO_APP_FUNC(0x025B31A0, String *, WebUtility_HtmlDecode, (String * value, MethodInfo * method)); DO_APP_FUNC(0x025B32D0, void, WebUtility_HtmlDecode_1, (String * value, TextWriter * output, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10AB8, WebUtility_HtmlDecode_1__MethodInfo); DO_APP_FUNC(0x025B3720, int32_t, WebUtility_IndexOfHtmlEncodingChars, (String * s, int32_t startPos, MethodInfo * method)); DO_APP_FUNC(0x025B3830, UnicodeDecodingConformance__Enum, WebUtility_get_HtmlDecodeConformance, (MethodInfo * method)); DO_APP_FUNC(0x025B3950, UnicodeEncodingConformance__Enum, WebUtility_get_HtmlEncodeConformance, (MethodInfo * method)); @@ -30519,12 +34716,13 @@ DO_APP_FUNC(0x025B4030, String *, WebUtility_UrlDecodeInternal, (String * value, DO_APP_FUNC(0x025B43B0, Byte__Array *, WebUtility_UrlDecodeInternal_1, (Byte__Array * bytes, int32_t offset, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x025B4670, String *, WebUtility_UrlDecode, (String * encodedValue, MethodInfo * method)); DO_APP_FUNC(0x025B46F0, Byte__Array *, WebUtility_UrlDecodeToBytes, (Byte__Array * encodedValue, int32_t offset, int32_t count, MethodInfo * method)); -DO_APP_FUNC(0x025B4760, void, WebUtility_ConvertSmpToUtf16, (uint32_t smpChar, uint16_t leadingSurrogate, uint16_t trailingSurrogate, MethodInfo * method)); -DO_APP_FUNC(0x025B47A0, int32_t, WebUtility_GetNextUnicodeScalarValueFromUtf16Surrogate, (uint16_t * pch, int32_t charsRemaining, MethodInfo * method)); +DO_APP_FUNC(0x025B4760, void, WebUtility_ConvertSmpToUtf16, (uint32_t smpChar, uint16_t * leadingSurrogate, uint16_t * trailingSurrogate, MethodInfo * method)); +DO_APP_FUNC(0x025B47A0, int32_t, WebUtility_GetNextUnicodeScalarValueFromUtf16Surrogate, (uint16_t * * pch, int32_t * charsRemaining, MethodInfo * method)); DO_APP_FUNC(0x025B4870, int32_t, WebUtility_HexToInt, (uint16_t h, MethodInfo * method)); DO_APP_FUNC(0x025B48B0, uint16_t, WebUtility_IntToHex, (int32_t n, MethodInfo * method)); DO_APP_FUNC(0x025B48C0, bool, WebUtility_IsUrlSafeChar, (uint16_t ch, MethodInfo * method)); DO_APP_FUNC(0x025B4930, bool, WebUtility_ValidateUrlEncodingParameters, (Byte__Array * bytes, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10A98, WebUtility_ValidateUrlEncodingParameters__MethodInfo); DO_APP_FUNC(0x025B4A70, bool, WebUtility_StringRequiresHtmlDecoding, (String * s, MethodInfo * method)); DO_APP_FUNC(0x025B4BB0, void, WebUtility__cctor, (MethodInfo * method)); DO_APP_FUNC(0x025B4CC0, void, WebUtility_UrlDecoder_FlushBytes, (WebUtility_UrlDecoder * __this, MethodInfo * method)); @@ -30539,14 +34737,16 @@ DO_APP_FUNC(0x025B5420, void, BufferOffsetSize__ctor, (BufferOffsetSize * __this DO_APP_FUNC(0x025B5510, void, BufferOffsetSize__ctor_1, (BufferOffsetSize * __this, Byte__Array * buffer, bool copyBuffer, MethodInfo * method)); DO_APP_FUNC(0x025B5540, uint16_t, HttpDateParse_MAKE_UPPER, (uint16_t c, MethodInfo * method)); DO_APP_FUNC(0x025B5690, int32_t, HttpDateParse_MapDayMonthToDword, (Char__Array * lpszDay, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x025B59C0, bool, HttpDateParse_ParseHttpDate, (String * DateString, DateTime dtOut, MethodInfo * method)); +DO_APP_FUNC(0x025B59C0, bool, HttpDateParse_ParseHttpDate, (String * DateString, DateTime * dtOut, MethodInfo * method)); DO_APP_FUNC(0x01E10F60, void, HeaderParser__ctor, (HeaderParser * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003F42D0, String__Array *, HeaderParser_Invoke, (HeaderParser * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x003EEA20, IAsyncResult *, HeaderParser_BeginInvoke, (HeaderParser * __this, String * value, AsyncCallback * callback, Object * object, MethodInfo * method)); DO_APP_FUNC(0x003BA270, String__Array *, HeaderParser_EndInvoke, (HeaderParser * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x025B5E20, void, HeaderInfo__ctor, (HeaderInfo * __this, String * name, bool requestRestricted, bool responseRestricted, bool multi, HeaderParser * p, MethodInfo * method)); DO_APP_FUNC(0x025B5EF0, String__Array *, HeaderInfoTable_ParseSingleValue, (String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D109E0, HeaderInfoTable_ParseSingleValue__MethodInfo); DO_APP_FUNC(0x025B5F90, String__Array *, HeaderInfoTable_ParseMultiValue, (String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D109E8, HeaderInfoTable_ParseMultiValue__MethodInfo); DO_APP_FUNC(0x025B6270, void, HeaderInfoTable__cctor, (MethodInfo * method)); DO_APP_FUNC(0x025B8550, HeaderInfo *, HeaderInfoTable_get_Item, (HeaderInfoTable * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HeaderInfoTable__ctor, (HeaderInfoTable * __this, MethodInfo * method)); @@ -30558,7 +34758,7 @@ DO_APP_FUNC(0x003BB3D0, Object *, LazyAsyncResult_get_AsyncState, (LazyAsyncResu DO_APP_FUNC(0x003BB3E0, AsyncCallback *, LazyAsyncResult_get_AsyncCallback, (LazyAsyncResult * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCDE0, void, LazyAsyncResult_set_AsyncCallback, (LazyAsyncResult * __this, AsyncCallback * value, MethodInfo * method)); DO_APP_FUNC(0x025B8B00, WaitHandle *, LazyAsyncResult_get_AsyncWaitHandle, (LazyAsyncResult * __this, MethodInfo * method)); -DO_APP_FUNC(0x025B8BA0, bool, LazyAsyncResult_LazilyCreateEvent, (LazyAsyncResult * __this, ManualResetEvent * waitHandle, MethodInfo * method)); +DO_APP_FUNC(0x025B8BA0, bool, LazyAsyncResult_LazilyCreateEvent, (LazyAsyncResult * __this, ManualResetEvent * * waitHandle, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, LazyAsyncResult_DebugProtectState, (LazyAsyncResult * __this, bool protect, MethodInfo * method)); DO_APP_FUNC(0x025B8E10, bool, LazyAsyncResult_get_CompletedSynchronously, (LazyAsyncResult * __this, MethodInfo * method)); DO_APP_FUNC(0x025B8E30, bool, LazyAsyncResult_get_IsCompleted, (LazyAsyncResult * __this, MethodInfo * method)); @@ -30570,10 +34770,12 @@ DO_APP_FUNC(0x00424CA0, void, LazyAsyncResult_set_EndCalled, (LazyAsyncResult * DO_APP_FUNC(0x003C7300, int32_t, LazyAsyncResult_get_ErrorCode, (LazyAsyncResult * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7310, void, LazyAsyncResult_set_ErrorCode, (LazyAsyncResult * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x025B8EF0, void, LazyAsyncResult_ProtectedInvokeCallback, (LazyAsyncResult * __this, Object * result, void * userToken, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10918, LazyAsyncResult_ProtectedInvokeCallback__MethodInfo); DO_APP_FUNC(0x025B9090, void, LazyAsyncResult_InvokeCallback, (LazyAsyncResult * __this, Object * result, MethodInfo * method)); DO_APP_FUNC(0x025B90F0, void, LazyAsyncResult_InvokeCallback_1, (LazyAsyncResult * __this, MethodInfo * method)); DO_APP_FUNC(0x025B9140, void, LazyAsyncResult_Complete, (LazyAsyncResult * __this, void * userToken, MethodInfo * method)); DO_APP_FUNC(0x025B94C0, void, LazyAsyncResult_WorkerThreadComplete, (LazyAsyncResult * __this, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10908, LazyAsyncResult_WorkerThreadComplete__MethodInfo); DO_APP_FUNC(0x003AE050, void, LazyAsyncResult_Cleanup, (LazyAsyncResult * __this, MethodInfo * method)); DO_APP_FUNC(0x025B9550, Object *, LazyAsyncResult_InternalWaitForCompletion, (LazyAsyncResult * __this, MethodInfo * method)); DO_APP_FUNC(0x025B9560, Object *, LazyAsyncResult_WaitForCompletion, (LazyAsyncResult * __this, bool snap, MethodInfo * method)); @@ -30598,6 +34800,7 @@ DO_APP_FUNC(0x003CB690, ThreadKinds__Enum, GlobalLog_get_CurrentThreadKind, (Met DO_APP_FUNC(0x003AE050, void, GlobalLog_SetThreadSource, (ThreadKinds__Enum source, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GlobalLog_ThreadContract, (ThreadKinds__Enum kind, String * errorMsg, MethodInfo * method)); DO_APP_FUNC(0x025B9980, void, GlobalLog_ThreadContract_1, (ThreadKinds__Enum kind, ThreadKinds__Enum allowedSources, String * errorMsg, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10930, GlobalLog_ThreadContract_1__MethodInfo); DO_APP_FUNC(0x003AE050, void, GlobalLog_AddToArray, (String * msg, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GlobalLog_Ignore, (Object * msg, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GlobalLog_Print, (String * msg, MethodInfo * method)); @@ -30631,20 +34834,24 @@ DO_APP_FUNC(0x025BA4D0, IEnumerator_1_System_Uri_ *, ProxyChain_get_Enumerator, DO_APP_FUNC(0x003BB3B0, Uri *, ProxyChain_get_Destination, (ProxyChain * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ProxyChain_Abort, (ProxyChain * __this, MethodInfo * method)); DO_APP_FUNC(0x025BA4F0, bool, ProxyChain_HttpAbort, (ProxyChain * __this, HttpWebRequest * request, WebException * webException, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D108E8, ProxyChain_HttpAbort__MethodInfo); DO_APP_FUNC(0x025BA510, HttpAbortDelegate *, ProxyChain_get_HttpAbortDelegate, (ProxyChain * __this, MethodInfo * method)); DO_APP_FUNC(0x025BA5F0, void, ProxyChain_ProxyEnumerator__ctor, (ProxyChain_ProxyEnumerator * __this, ProxyChain * chain, MethodInfo * method)); DO_APP_FUNC(0x025BA650, Uri *, ProxyChain_ProxyEnumerator_get_Current, (ProxyChain_ProxyEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D108F8, ProxyChain_ProxyEnumerator_get_Current__MethodInfo); DO_APP_FUNC(0x025BA650, Object *, ProxyChain_ProxyEnumerator_System_Collections_IEnumerator_get_Current, (ProxyChain_ProxyEnumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x025BA750, bool, ProxyChain_ProxyEnumerator_MoveNext, (ProxyChain_ProxyEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D108D0, ProxyChain_ProxyEnumerator_MoveNext__MethodInfo); DO_APP_FUNC(0x025BABB0, void, ProxyChain_ProxyEnumerator_Reset, (ProxyChain_ProxyEnumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ProxyChain_ProxyEnumerator_Dispose, (ProxyChain_ProxyEnumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x025BABC0, void, ProxyScriptChain__ctor, (ProxyScriptChain * __this, WebProxy * proxy, Uri * destination, MethodInfo * method)); -DO_APP_FUNC(0x025BAC40, bool, ProxyScriptChain_GetNextProxy, (ProxyScriptChain * __this, Uri * proxy, MethodInfo * method)); +DO_APP_FUNC(0x025BAC40, bool, ProxyScriptChain_GetNextProxy, (ProxyScriptChain * __this, Uri * * proxy, MethodInfo * method)); DO_APP_FUNC(0x025BAF60, void, ProxyScriptChain_Abort, (ProxyScriptChain * __this, MethodInfo * method)); DO_APP_FUNC(0x025BAF80, void, DirectProxy__ctor, (DirectProxy * __this, Uri * destination, MethodInfo * method)); -DO_APP_FUNC(0x025BAF90, bool, DirectProxy_GetNextProxy, (DirectProxy * __this, Uri * proxy, MethodInfo * method)); +DO_APP_FUNC(0x025BAF90, bool, DirectProxy_GetNextProxy, (DirectProxy * __this, Uri * * proxy, MethodInfo * method)); DO_APP_FUNC(0x025BB000, void, StaticProxy__ctor, (StaticProxy * __this, Uri * destination, Uri * proxy, MethodInfo * method)); -DO_APP_FUNC(0x025BB120, bool, StaticProxy_GetNextProxy, (StaticProxy * __this, Uri * proxy, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10880, StaticProxy__ctor__MethodInfo); +DO_APP_FUNC(0x025BB120, bool, StaticProxy_GetNextProxy, (StaticProxy * __this, Uri * * proxy, MethodInfo * method)); DO_APP_FUNC(0x025BB240, void, ScatterGatherBuffers__ctor, (ScatterGatherBuffers * __this, MethodInfo * method)); DO_APP_FUNC(0x025BB250, void, ScatterGatherBuffers__ctor_1, (ScatterGatherBuffers * __this, int64_t totalSize, MethodInfo * method)); DO_APP_FUNC(0x025BB2D0, BufferOffsetSize__Array *, ScatterGatherBuffers_GetBuffers, (ScatterGatherBuffers * __this, MethodInfo * method)); @@ -30667,12 +34874,16 @@ DO_APP_FUNC(0x025BC310, String *, ServiceNameStore_BuildSimpleServiceName, (Serv DO_APP_FUNC(0x025BC380, String__Array *, ServiceNameStore_BuildServiceNames, (ServiceNameStore * __this, String * uriPrefix, MethodInfo * method)); DO_APP_FUNC(0x025BCA60, void, TimerThread__cctor, (MethodInfo * method)); DO_APP_FUNC(0x025BCFB0, TimerThread_Queue *, TimerThread_CreateQueue, (int32_t durationMilliseconds, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10858, TimerThread_CreateQueue__MethodInfo); DO_APP_FUNC(0x025BD2E0, TimerThread_Queue *, TimerThread_GetOrCreateQueue, (int32_t durationMilliseconds, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10870, TimerThread_GetOrCreateQueue__MethodInfo); DO_APP_FUNC(0x025BDCA0, void, TimerThread_Prod, (MethodInfo * method)); DO_APP_FUNC(0x025BDDD0, void, TimerThread_ThreadProc, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10868, TimerThread_ThreadProc__MethodInfo); DO_APP_FUNC(0x025BE6B0, void, TimerThread_StopTimerThread, (MethodInfo * method)); DO_APP_FUNC(0x025BE730, bool, TimerThread_IsTickBetween, (int32_t start, int32_t end, int32_t comparand, MethodInfo * method)); DO_APP_FUNC(0x025BE750, void, TimerThread_OnDomainUnload, (Object * sender, EventArgs * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D107F0, TimerThread_OnDomainUnload__MethodInfo); DO_APP_FUNC(0x003BCD60, void, TimerThread_Queue__ctor, (TimerThread_Queue * __this, int32_t durationMilliseconds, MethodInfo * method)); DO_APP_FUNC(0x003BCD50, int32_t, TimerThread_Queue_get_Duration, (TimerThread_Queue * __this, MethodInfo * method)); DO_APP_FUNC(0x025BE810, TimerThread_Timer *, TimerThread_Queue_CreateTimer, (TimerThread_Queue * __this, MethodInfo * method)); @@ -30688,7 +34899,7 @@ DO_APP_FUNC(0x025BEBC0, IAsyncResult *, TimerThread_Callback_BeginInvoke, (Timer DO_APP_FUNC(0x003BA270, void, TimerThread_Callback_EndInvoke, (TimerThread_Callback * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x025BEC50, void, TimerThread_TimerQueue__ctor, (TimerThread_TimerQueue * __this, int32_t durationMilliseconds, MethodInfo * method)); DO_APP_FUNC(0x025BEE10, TimerThread_Timer *, TimerThread_TimerQueue_CreateTimer, (TimerThread_TimerQueue * __this, TimerThread_Callback * callback, Object * context, MethodInfo * method)); -DO_APP_FUNC(0x025BF460, bool, TimerThread_TimerQueue_Fire, (TimerThread_TimerQueue * __this, int32_t nextExpiration, MethodInfo * method)); +DO_APP_FUNC(0x025BF460, bool, TimerThread_TimerQueue_Fire, (TimerThread_TimerQueue * __this, int32_t * nextExpiration, MethodInfo * method)); DO_APP_FUNC(0x01439B10, void, TimerThread_InfiniteTimerQueue__ctor, (TimerThread_InfiniteTimerQueue * __this, MethodInfo * method)); DO_APP_FUNC(0x025BF710, TimerThread_Timer *, TimerThread_InfiniteTimerQueue_CreateTimer, (TimerThread_InfiniteTimerQueue * __this, TimerThread_Callback * callback, Object * context, MethodInfo * method)); DO_APP_FUNC(0x025BF7A0, void, TimerThread_TimerNode__ctor, (TimerThread_TimerNode * __this, TimerThread_Callback * callback, Object * context, int32_t durationMilliseconds, Object * queueLock, MethodInfo * method)); @@ -30708,11 +34919,13 @@ DO_APP_FUNC(0x025C0060, void, WebProxyDataBuilder_SetProxyAndBypassList, (WebPro DO_APP_FUNC(0x025C0220, void, WebProxyDataBuilder_SetAutoProxyUrl, (WebProxyDataBuilder * __this, String * autoConfigUrl, MethodInfo * method)); DO_APP_FUNC(0x025C0310, void, WebProxyDataBuilder_SetAutoDetectSettings, (WebProxyDataBuilder * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x025C0330, Uri *, WebProxyDataBuilder_ParseProxyUri, (String * proxyString, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D107D0, WebProxyDataBuilder_ParseProxyUri__MethodInfo); DO_APP_FUNC(0x025C04B0, Hashtable *, WebProxyDataBuilder_ParseProtocolProxies, (String * proxyListString, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D107A8, WebProxyDataBuilder_ParseProtocolProxies__MethodInfo); DO_APP_FUNC(0x025C08D0, FormatException *, WebProxyDataBuilder_CreateInvalidProxyStringException, (String * originalProxyString, MethodInfo * method)); DO_APP_FUNC(0x025C09D0, String *, WebProxyDataBuilder_BypassStringEscape, (String * rawString, MethodInfo * method)); DO_APP_FUNC(0x025C0EF0, String *, WebProxyDataBuilder_ConvertRegexReservedChars, (String * rawString, MethodInfo * method)); -DO_APP_FUNC(0x025C1030, ArrayList *, WebProxyDataBuilder_ParseBypassList, (String * bypassListString, bool bypassOnLocal, MethodInfo * method)); +DO_APP_FUNC(0x025C1030, ArrayList *, WebProxyDataBuilder_ParseBypassList, (String * bypassListString, bool * bypassOnLocal, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, WebProxyDataBuilder__ctor, (WebProxyDataBuilder * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, EmptyWebProxy__ctor, (EmptyWebProxy * __this, MethodInfo * method)); DO_APP_FUNC(0x00420A60, Uri *, EmptyWebProxy_GetProxy, (EmptyWebProxy * __this, Uri * uri, MethodInfo * method)); @@ -30743,6 +34956,7 @@ DO_APP_FUNC(0x003C7320, DateTime, Cookie_get_Expires, (Cookie * __this, MethodIn DO_APP_FUNC(0x00421730, void, Cookie_set_Expires, (Cookie * __this, DateTime value, MethodInfo * method)); DO_APP_FUNC(0x003C7390, String *, Cookie_get_Name, (Cookie * __this, MethodInfo * method)); DO_APP_FUNC(0x025C2060, void, Cookie_set_Name, (Cookie * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10728, Cookie_set_Name__MethodInfo); DO_APP_FUNC(0x025C21E0, bool, Cookie_InternalSetName, (Cookie * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x003CD530, String *, Cookie_get_Path, (Cookie * __this, MethodInfo * method)); DO_APP_FUNC(0x025C2340, void, Cookie_set_Path, (Cookie * __this, String * value, MethodInfo * method)); @@ -30751,9 +34965,11 @@ DO_APP_FUNC(0x025C2480, bool, Cookie_get_Plain, (Cookie * __this, MethodInfo * m DO_APP_FUNC(0x025C2490, Cookie *, Cookie_Clone, (Cookie * __this, MethodInfo * method)); DO_APP_FUNC(0x025C2720, bool, Cookie_IsDomainEqualToHost, (String * domain, String * host, MethodInfo * method)); DO_APP_FUNC(0x025C2960, bool, Cookie_VerifySetDefaults, (Cookie * __this, CookieVariant__Enum variant, Uri * uri, bool isLocalDomain, String * localDomain, bool set_default, bool isThrow, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10778, Cookie_VerifySetDefaults__MethodInfo); DO_APP_FUNC(0x025C3AC0, bool, Cookie_DomainCharsTest, (String * name, MethodInfo * method)); DO_APP_FUNC(0x003C7490, String *, Cookie_get_Port, (Cookie * __this, MethodInfo * method)); DO_APP_FUNC(0x025C3B40, void, Cookie_set_Port, (Cookie * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10768, Cookie_set_Port__MethodInfo); DO_APP_FUNC(0x003C91C0, Int32__Array *, Cookie_get_PortList, (Cookie * __this, MethodInfo * method)); DO_APP_FUNC(0x025C4070, String *, Cookie_get__Port, (Cookie * __this, MethodInfo * method)); DO_APP_FUNC(0x0051C120, bool, Cookie_get_Secure, (Cookie * __this, MethodInfo * method)); @@ -30766,6 +34982,7 @@ DO_APP_FUNC(0x003CC990, void, Cookie_set_Variant, (Cookie * __this, CookieVarian DO_APP_FUNC(0x025C4200, String *, Cookie_get_DomainKey, (Cookie * __this, MethodInfo * method)); DO_APP_FUNC(0x00C2C4C0, int32_t, Cookie_get_Version, (Cookie * __this, MethodInfo * method)); DO_APP_FUNC(0x025C4220, void, Cookie_set_Version, (Cookie * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D106B8, Cookie_set_Version__MethodInfo); DO_APP_FUNC(0x025C42A0, String *, Cookie_get__Version, (Cookie * __this, MethodInfo * method)); DO_APP_FUNC(0x025C43B0, IComparer *, Cookie_GetComparer, (MethodInfo * method)); DO_APP_FUNC(0x025C4410, bool, Cookie_Equals, (Cookie * __this, Object * comparand, MethodInfo * method)); @@ -30791,9 +35008,9 @@ DO_APP_FUNC(0x025C5C10, CookieToken__Enum, CookieTokenizer_Next, (CookieTokenize DO_APP_FUNC(0x025C6000, void, CookieTokenizer_Reset, (CookieTokenizer * __this, MethodInfo * method)); DO_APP_FUNC(0x025C6110, CookieToken__Enum, CookieTokenizer_TokenFromName, (CookieTokenizer * __this, bool parseResponseCookies, MethodInfo * method)); DO_APP_FUNC(0x025C6310, void, CookieTokenizer__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x004CB450, void, CookieTokenizer_RecognizedAttribute__ctor, (CookieTokenizer_RecognizedAttribute__Boxed * __this, String * name, CookieToken__Enum token, MethodInfo * method)); -DO_APP_FUNC(0x00471920, CookieToken__Enum, CookieTokenizer_RecognizedAttribute_get_Token, (CookieTokenizer_RecognizedAttribute__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x025C7290, bool, CookieTokenizer_RecognizedAttribute_IsEqualTo, (CookieTokenizer_RecognizedAttribute__Boxed * __this, String * value, MethodInfo * method)); +DO_APP_FUNC(0x004CB450, void, CookieTokenizer_RecognizedAttribute__ctor, (CookieTokenizer_RecognizedAttribute * __this, String * name, CookieToken__Enum token, MethodInfo * method)); +DO_APP_FUNC(0x00471920, CookieToken__Enum, CookieTokenizer_RecognizedAttribute_get_Token, (CookieTokenizer_RecognizedAttribute * __this, MethodInfo * method)); +DO_APP_FUNC(0x025C7290, bool, CookieTokenizer_RecognizedAttribute_IsEqualTo, (CookieTokenizer_RecognizedAttribute * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x025C7380, void, CookieParser__ctor, (CookieParser * __this, String * cookieString, MethodInfo * method)); DO_APP_FUNC(0x025C7490, Cookie *, CookieParser_Get, (CookieParser * __this, MethodInfo * method)); DO_APP_FUNC(0x025C82C0, Cookie *, CookieParser_GetServer, (CookieParser * __this, MethodInfo * method)); @@ -30804,9 +35021,12 @@ DO_APP_FUNC(0x025C8DB0, void, CookieCollection__ctor, (CookieCollection * __this DO_APP_FUNC(0x025C8EB0, void, CookieCollection__ctor_1, (CookieCollection * __this, bool IsReadOnly, MethodInfo * method)); DO_APP_FUNC(0x01CBB9E0, bool, CookieCollection_get_IsReadOnly, (CookieCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x025C8FB0, Cookie *, CookieCollection_get_Item, (CookieCollection * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10600, CookieCollection_get_Item__MethodInfo); DO_APP_FUNC(0x025C90C0, Cookie *, CookieCollection_get_Item_1, (CookieCollection * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x025C9320, void, CookieCollection_Add, (CookieCollection * __this, Cookie * cookie, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10608, CookieCollection_Add__MethodInfo); DO_APP_FUNC(0x025C93F0, void, CookieCollection_Add_1, (CookieCollection * __this, CookieCollection * cookies, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D105F0, CookieCollection_Add_1__MethodInfo); DO_APP_FUNC(0x025C96F0, int32_t, CookieCollection_get_Count, (CookieCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, CookieCollection_get_IsSynchronized, (CookieCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x00A1B820, Object *, CookieCollection_get_SyncRoot, (CookieCollection * __this, MethodInfo * method)); @@ -30820,38 +35040,54 @@ DO_APP_FUNC(0x025C9E10, void, CookieCollection_RemoveAt, (CookieCollection * __t DO_APP_FUNC(0x025C9E40, IEnumerator *, CookieCollection_GetEnumerator, (CookieCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x025C9F20, void, CookieCollection_CookieCollectionEnumerator__ctor, (CookieCollection_CookieCollectionEnumerator * __this, CookieCollection * cookies, MethodInfo * method)); DO_APP_FUNC(0x025C9FC0, Object *, CookieCollection_CookieCollectionEnumerator_System_Collections_IEnumerator_get_Current, (CookieCollection_CookieCollectionEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10650, CookieCollection_CookieCollectionEnumerator_System_Collections_IEnumerator_get_Current__MethodInfo); DO_APP_FUNC(0x025CA0D0, bool, CookieCollection_CookieCollectionEnumerator_System_Collections_IEnumerator_MoveNext, (CookieCollection_CookieCollectionEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10648, CookieCollection_CookieCollectionEnumerator_System_Collections_IEnumerator_MoveNext__MethodInfo); DO_APP_FUNC(0x025CA180, void, CookieCollection_CookieCollectionEnumerator_System_Collections_IEnumerator_Reset, (CookieCollection_CookieCollectionEnumerator * __this, MethodInfo * method)); -DO_APP_FUNC(0x004CB450, void, HeaderVariantInfo__ctor, (HeaderVariantInfo__Boxed * __this, String * name, CookieVariant__Enum variant, MethodInfo * method)); -DO_APP_FUNC(0x00471910, String *, HeaderVariantInfo_get_Name, (HeaderVariantInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471920, CookieVariant__Enum, HeaderVariantInfo_get_Variant, (HeaderVariantInfo__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x004CB450, void, HeaderVariantInfo__ctor, (HeaderVariantInfo * __this, String * name, CookieVariant__Enum variant, MethodInfo * method)); +DO_APP_FUNC(0x00471910, String *, HeaderVariantInfo_get_Name, (HeaderVariantInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471920, CookieVariant__Enum, HeaderVariantInfo_get_Variant, (HeaderVariantInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x025CA190, void, CookieContainer__ctor, (CookieContainer * __this, MethodInfo * method)); DO_APP_FUNC(0x025CA3B0, void, CookieContainer__ctor_1, (CookieContainer * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10618, CookieContainer__ctor_1__MethodInfo); DO_APP_FUNC(0x025CA450, void, CookieContainer__ctor_2, (CookieContainer * __this, int32_t capacity, int32_t perDomainCapacity, int32_t maxCookieSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10628, CookieContainer__ctor_2__MethodInfo); DO_APP_FUNC(0x003CD440, int32_t, CookieContainer_get_Capacity, (CookieContainer * __this, MethodInfo * method)); DO_APP_FUNC(0x025CA6F0, void, CookieContainer_set_Capacity, (CookieContainer * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10588, CookieContainer_set_Capacity__MethodInfo); DO_APP_FUNC(0x003CD280, int32_t, CookieContainer_get_Count, (CookieContainer * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, CookieContainer_get_MaxCookieSize, (CookieContainer * __this, MethodInfo * method)); DO_APP_FUNC(0x025CA890, void, CookieContainer_set_MaxCookieSize, (CookieContainer * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10580, CookieContainer_set_MaxCookieSize__MethodInfo); DO_APP_FUNC(0x003CC980, int32_t, CookieContainer_get_PerDomainCapacity, (CookieContainer * __this, MethodInfo * method)); DO_APP_FUNC(0x025CA900, void, CookieContainer_set_PerDomainCapacity, (CookieContainer * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10578, CookieContainer_set_PerDomainCapacity__MethodInfo); DO_APP_FUNC(0x025CA9A0, void, CookieContainer_Add, (CookieContainer * __this, Cookie * cookie, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D105A8, CookieContainer_Add__MethodInfo); DO_APP_FUNC(0x025CAE30, void, CookieContainer_AddRemoveDomain, (CookieContainer * __this, String * key, PathList * value, MethodInfo * method)); DO_APP_FUNC(0x025CB030, void, CookieContainer_Add_1, (CookieContainer * __this, Cookie * cookie, bool throwOnError, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10568, CookieContainer_Add_1__MethodInfo); DO_APP_FUNC(0x025CBAC0, bool, CookieContainer_AgeCookies, (CookieContainer * __this, String * domain, MethodInfo * method)); DO_APP_FUNC(0x025CCE50, int32_t, CookieContainer_ExpireCollection, (CookieContainer * __this, CookieCollection * cc, MethodInfo * method)); DO_APP_FUNC(0x025CD070, void, CookieContainer_Add_2, (CookieContainer * __this, CookieCollection * cookies, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D105D8, CookieContainer_Add_2__MethodInfo); DO_APP_FUNC(0x025CD750, bool, CookieContainer_IsLocalDomain, (CookieContainer * __this, String * host, MethodInfo * method)); DO_APP_FUNC(0x025CDA40, void, CookieContainer_Add_3, (CookieContainer * __this, Uri * uri, Cookie * cookie, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10538, CookieContainer_Add_3__MethodInfo); DO_APP_FUNC(0x025CDBD0, void, CookieContainer_Add_4, (CookieContainer * __this, Uri * uri, CookieCollection * cookies, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D104F8, CookieContainer_Add_4__MethodInfo); DO_APP_FUNC(0x025CDF40, CookieCollection *, CookieContainer_CookieCutter, (CookieContainer * __this, Uri * uri, String * headerName, String * setCookieHeader, bool isThrow, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10508, CookieContainer_CookieCutter__MethodInfo); DO_APP_FUNC(0x025CE7B0, CookieCollection *, CookieContainer_GetCookies, (CookieContainer * __this, Uri * uri, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10550, CookieContainer_GetCookies__MethodInfo); DO_APP_FUNC(0x025CE870, CookieCollection *, CookieContainer_InternalGetCookies, (CookieContainer * __this, Uri * uri, MethodInfo * method)); DO_APP_FUNC(0x025CED20, void, CookieContainer_BuildCookieCollectionFromDomainMatches, (CookieContainer * __this, Uri * uri, bool isSecure, int32_t port, CookieCollection * cookies, List_1_System_String_ * domainAttribute, bool matchOnlyPlainCookie, MethodInfo * method)); DO_APP_FUNC(0x025CF600, void, CookieContainer_MergeUpdateCollections, (CookieContainer * __this, CookieCollection * destination, CookieCollection * source, int32_t port, bool isSecure, bool isPlainOnly, MethodInfo * method)); DO_APP_FUNC(0x025CF890, String *, CookieContainer_GetCookieHeader, (CookieContainer * __this, Uri * uri, MethodInfo * method)); -DO_APP_FUNC(0x025CF960, String *, CookieContainer_GetCookieHeader_1, (CookieContainer * __this, Uri * uri, String * optCookie2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10540, CookieContainer_GetCookieHeader__MethodInfo); +DO_APP_FUNC(0x025CF960, String *, CookieContainer_GetCookieHeader_1, (CookieContainer * __this, Uri * uri, String * * optCookie2, MethodInfo * method)); DO_APP_FUNC(0x025CFD40, void, CookieContainer_SetCookies, (CookieContainer * __this, Uri * uri, String * cookieHeader, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10548, CookieContainer_SetCookies__MethodInfo); DO_APP_FUNC(0x025CFE70, void, CookieContainer__cctor, (MethodInfo * method)); DO_APP_FUNC(0x025D0160, void, PathList__ctor, (PathList * __this, MethodInfo * method)); DO_APP_FUNC(0x01B1A400, int32_t, PathList_get_Count, (PathList * __this, MethodInfo * method)); @@ -30871,6 +35107,7 @@ DO_APP_FUNC(0x01980BF0, void, CookieException__ctor_3, (CookieException * __this DO_APP_FUNC(0x0259CC80, void, CookieException_System_Runtime_Serialization_ISerializable_GetObjectData, (CookieException * __this, SerializationInfo * serializationInfo, StreamingContext streamingContext, MethodInfo * method)); DO_APP_FUNC(0x0259CC80, void, CookieException_GetObjectData, (CookieException * __this, SerializationInfo * serializationInfo, StreamingContext streamingContext, MethodInfo * method)); DO_APP_FUNC(0x025D0CE0, void, FileWebRequest__ctor, (FileWebRequest * __this, Uri * uri, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13BD0, FileWebRequest__ctor__MethodInfo); DO_APP_FUNC(0x025D0F60, void, FileWebRequest__ctor_1, (FileWebRequest * __this, SerializationInfo * serializationInfo, StreamingContext streamingContext, MethodInfo * method)); DO_APP_FUNC(0x025B07F0, void, FileWebRequest_System_Runtime_Serialization_ISerializable_GetObjectData, (FileWebRequest * __this, SerializationInfo * serializationInfo, StreamingContext streamingContext, MethodInfo * method)); DO_APP_FUNC(0x025D1540, void, FileWebRequest_GetObjectData, (FileWebRequest * __this, SerializationInfo * serializationInfo, StreamingContext streamingContext, MethodInfo * method)); @@ -30879,6 +35116,7 @@ DO_APP_FUNC(0x003C7320, String *, FileWebRequest_get_ConnectionGroupName, (FileW DO_APP_FUNC(0x003C7330, void, FileWebRequest_set_ConnectionGroupName, (FileWebRequest * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x003C7390, int64_t, FileWebRequest_get_ContentLength, (FileWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x025D1A00, void, FileWebRequest_set_ContentLength, (FileWebRequest * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13B18, FileWebRequest_set_ContentLength__MethodInfo); DO_APP_FUNC(0x025D1AA0, String *, FileWebRequest_get_ContentType, (FileWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x025D1B00, void, FileWebRequest_set_ContentType, (FileWebRequest * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x003CD530, ICredentials *, FileWebRequest_get_Credentials, (FileWebRequest * __this, MethodInfo * method)); @@ -30886,25 +35124,37 @@ DO_APP_FUNC(0x00421740, void, FileWebRequest_set_Credentials, (FileWebRequest * DO_APP_FUNC(0x003C7490, WebHeaderCollection *, FileWebRequest_get_Headers, (FileWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x003C91B0, String *, FileWebRequest_get_Method, (FileWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x025D1B70, void, FileWebRequest_set_Method, (FileWebRequest * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13BA0, FileWebRequest_set_Method__MethodInfo); DO_APP_FUNC(0x00C3A440, bool, FileWebRequest_get_PreAuthenticate, (FileWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x0051FAE0, void, FileWebRequest_set_PreAuthenticate, (FileWebRequest * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x003C91D0, IWebProxy *, FileWebRequest_get_Proxy, (FileWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x00A030D0, void, FileWebRequest_set_Proxy, (FileWebRequest * __this, IWebProxy * value, MethodInfo * method)); DO_APP_FUNC(0x01806100, int32_t, FileWebRequest_get_Timeout, (FileWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x025D1C80, void, FileWebRequest_set_Timeout, (FileWebRequest * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13B88, FileWebRequest_set_Timeout__MethodInfo); DO_APP_FUNC(0x005B9620, Uri *, FileWebRequest_get_RequestUri, (FileWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x025D1D20, IAsyncResult *, FileWebRequest_BeginGetRequestStream, (FileWebRequest * __this, AsyncCallback * callback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13BB8, FileWebRequest_BeginGetRequestStream__MethodInfo); DO_APP_FUNC(0x025D2240, IAsyncResult *, FileWebRequest_BeginGetResponse, (FileWebRequest * __this, AsyncCallback * callback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13B80, FileWebRequest_BeginGetResponse__MethodInfo); DO_APP_FUNC(0x025D2590, bool, FileWebRequest_CanGetRequestStream, (FileWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x025D26E0, Stream *, FileWebRequest_EndGetRequestStream, (FileWebRequest * __this, IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13AA8, FileWebRequest_EndGetRequestStream__MethodInfo); DO_APP_FUNC(0x025D2930, WebResponse *, FileWebRequest_EndGetResponse, (FileWebRequest * __this, IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13AC0, FileWebRequest_EndGetResponse__MethodInfo); DO_APP_FUNC(0x025D2B80, Stream *, FileWebRequest_GetRequestStream, (FileWebRequest * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13A70, FileWebRequest_GetRequestStream__MethodInfo); DO_APP_FUNC(0x025D2D80, WebResponse *, FileWebRequest_GetResponse, (FileWebRequest * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13AA0, FileWebRequest_GetResponse__MethodInfo); DO_APP_FUNC(0x025D2F80, void, FileWebRequest_GetRequestStreamCallback, (Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13AF0, FileWebRequest_GetRequestStreamCallback__MethodInfo); DO_APP_FUNC(0x025D32E0, void, FileWebRequest_GetResponseCallback, (Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13AE0, FileWebRequest_GetResponseCallback__MethodInfo); DO_APP_FUNC(0x025D37E0, void, FileWebRequest_UnblockReader, (FileWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x025D3930, bool, FileWebRequest_get_UseDefaultCredentials, (FileWebRequest * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13AF8, FileWebRequest_get_UseDefaultCredentials__MethodInfo); DO_APP_FUNC(0x025D3960, void, FileWebRequest_set_UseDefaultCredentials, (FileWebRequest * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13B10, FileWebRequest_set_UseDefaultCredentials__MethodInfo); DO_APP_FUNC(0x025D3990, void, FileWebRequest_Abort, (FileWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x025D3C20, void, FileWebRequest__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, FileWebRequestCreator__ctor, (FileWebRequestCreator * __this, MethodInfo * method)); @@ -30920,7 +35170,9 @@ DO_APP_FUNC(0x025D4310, int32_t, FileWebStream_EndRead, (FileWebStream * __this, DO_APP_FUNC(0x025D4350, IAsyncResult *, FileWebStream_BeginWrite, (FileWebStream * __this, Byte__Array * buffer, int32_t offset, int32_t size, AsyncCallback * callback, Object * state, MethodInfo * method)); DO_APP_FUNC(0x025D4400, void, FileWebStream_EndWrite, (FileWebStream * __this, IAsyncResult * ar, MethodInfo * method)); DO_APP_FUNC(0x025D4440, void, FileWebStream_CheckError, (FileWebStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13A48, FileWebStream_CheckError__MethodInfo); DO_APP_FUNC(0x025D44E0, void, FileWebResponse__ctor, (FileWebResponse * __this, FileWebRequest * request, Uri * uri, FileAccess__Enum access, bool asyncHint, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13A50, FileWebResponse__ctor__MethodInfo); DO_APP_FUNC(0x025D49E0, void, FileWebResponse__ctor_1, (FileWebResponse * __this, SerializationInfo * serializationInfo, StreamingContext streamingContext, MethodInfo * method)); DO_APP_FUNC(0x025B07F0, void, FileWebResponse_System_Runtime_Serialization_ISerializable_GetObjectData, (FileWebResponse * __this, SerializationInfo * serializationInfo, StreamingContext streamingContext, MethodInfo * method)); DO_APP_FUNC(0x025D4D20, void, FileWebResponse_GetObjectData, (FileWebResponse * __this, SerializationInfo * serializationInfo, StreamingContext streamingContext, MethodInfo * method)); @@ -30930,6 +35182,7 @@ DO_APP_FUNC(0x025D5090, WebHeaderCollection *, FileWebResponse_get_Headers, (Fil DO_APP_FUNC(0x0041AEF0, bool, FileWebResponse_get_SupportsHeaders, (FileWebResponse * __this, MethodInfo * method)); DO_APP_FUNC(0x025D50B0, Uri *, FileWebResponse_get_ResponseUri, (FileWebResponse * __this, MethodInfo * method)); DO_APP_FUNC(0x025D50D0, void, FileWebResponse_CheckDisposed, (FileWebResponse * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13A40, FileWebResponse_CheckDisposed__MethodInfo); DO_APP_FUNC(0x025D5160, void, FileWebResponse_Close, (FileWebResponse * __this, MethodInfo * method)); DO_APP_FUNC(0x025D51B0, void, FileWebResponse_System_Net_ICloseEx_CloseEx, (FileWebResponse * __this, CloseExState__Enum closeState, MethodInfo * method)); DO_APP_FUNC(0x025D5310, Stream *, FileWebResponse_GetResponseStream, (FileWebResponse * __this, MethodInfo * method)); @@ -30959,12 +35212,14 @@ DO_APP_FUNC(0x025D5FC0, void, WebProxy_set_UseDefaultCredentials, (WebProxy * __ DO_APP_FUNC(0x025D6030, ArrayList *, WebProxy_get_BypassArrayList, (WebProxy * __this, MethodInfo * method)); DO_APP_FUNC(0x00A8C430, void, WebProxy_CheckForChanges, (WebProxy * __this, MethodInfo * method)); DO_APP_FUNC(0x025D60F0, Uri *, WebProxy_GetProxy, (WebProxy * __this, Uri * destination, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13A10, WebProxy_GetProxy__MethodInfo); DO_APP_FUNC(0x025D6350, Uri *, WebProxy_CreateProxyUri, (String * address, MethodInfo * method)); DO_APP_FUNC(0x025D64A0, void, WebProxy_UpdateRegExList, (WebProxy * __this, bool canThrow, MethodInfo * method)); DO_APP_FUNC(0x025D6740, bool, WebProxy_IsMatchInBypassList, (WebProxy * __this, Uri * input, MethodInfo * method)); DO_APP_FUNC(0x025D6970, bool, WebProxy_IsLocal, (WebProxy * __this, Uri * host, MethodInfo * method)); DO_APP_FUNC(0x025D6D30, bool, WebProxy_IsLocalInProxyHash, (WebProxy * __this, Uri * host, MethodInfo * method)); DO_APP_FUNC(0x025D6E20, bool, WebProxy_IsBypassed, (WebProxy * __this, Uri * host, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13A38, WebProxy_IsBypassed__MethodInfo); DO_APP_FUNC(0x025D6F60, bool, WebProxy_IsBypassedManual, (WebProxy * __this, Uri * host, MethodInfo * method)); DO_APP_FUNC(0x025D70E0, WebProxy *, WebProxy_GetDefaultProxy, (MethodInfo * method)); DO_APP_FUNC(0x025D7130, void, WebProxy__ctor_10, (WebProxy * __this, SerializationInfo * serializationInfo, StreamingContext streamingContext, MethodInfo * method)); @@ -30978,10 +35233,11 @@ DO_APP_FUNC(0x025D76E0, void, WebProxy_DeleteScriptEngine, (WebProxy * __this, M DO_APP_FUNC(0x003BCD40, void, WebProxy_UnsafeUpdateFromRegistry, (WebProxy * __this, MethodInfo * method)); DO_APP_FUNC(0x025D7740, void, WebProxy_Update, (WebProxy * __this, WebProxyData * webProxyData, MethodInfo * method)); DO_APP_FUNC(0x025D7A30, ProxyChain *, WebProxy_System_Net_IAutoWebProxy_GetProxies, (WebProxy * __this, Uri * destination, MethodInfo * method)); -DO_APP_FUNC(0x025D7B70, bool, WebProxy_GetProxyAuto, (WebProxy * __this, Uri * destination, Uri * proxyUri, MethodInfo * method)); -DO_APP_FUNC(0x025D7C80, bool, WebProxy_IsBypassedAuto, (WebProxy * __this, Uri * destination, bool isBypassed, MethodInfo * method)); -DO_APP_FUNC(0x025D7D20, Uri__Array *, WebProxy_GetProxiesAuto, (WebProxy * __this, Uri * destination, int32_t syncStatus, MethodInfo * method)); -DO_APP_FUNC(0x00A8C430, void, WebProxy_AbortGetProxiesAuto, (WebProxy * __this, int32_t syncStatus, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D139D8, WebProxy_System_Net_IAutoWebProxy_GetProxies__MethodInfo); +DO_APP_FUNC(0x025D7B70, bool, WebProxy_GetProxyAuto, (WebProxy * __this, Uri * destination, Uri * * proxyUri, MethodInfo * method)); +DO_APP_FUNC(0x025D7C80, bool, WebProxy_IsBypassedAuto, (WebProxy * __this, Uri * destination, bool * isBypassed, MethodInfo * method)); +DO_APP_FUNC(0x025D7D20, Uri__Array *, WebProxy_GetProxiesAuto, (WebProxy * __this, Uri * destination, int32_t * syncStatus, MethodInfo * method)); +DO_APP_FUNC(0x00A8C430, void, WebProxy_AbortGetProxiesAuto, (WebProxy * __this, int32_t * syncStatus, MethodInfo * method)); DO_APP_FUNC(0x025D7DD0, Uri *, WebProxy_GetProxyAutoFailover, (WebProxy * __this, Uri * destination, MethodInfo * method)); DO_APP_FUNC(0x025D7ED0, bool, WebProxy_AreAllBypassed, (IEnumerable_1_System_String_ * proxies, bool checkFirstOnly, MethodInfo * method)); DO_APP_FUNC(0x025D8070, Uri *, WebProxy_ProxyUri, (String * proxyName, MethodInfo * method)); @@ -30990,10 +35246,10 @@ DO_APP_FUNC(0x003BB3C0, Uri *, AutoWebProxyScriptEngine_get_AutomaticConfigurati DO_APP_FUNC(0x003BCBE0, void, AutoWebProxyScriptEngine_set_AutomaticConfigurationScript, (AutoWebProxyScriptEngine * __this, Uri * value, MethodInfo * method)); DO_APP_FUNC(0x003BCC40, bool, AutoWebProxyScriptEngine_get_AutomaticallyDetectSettings, (AutoWebProxyScriptEngine * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCC50, void, AutoWebProxyScriptEngine_set_AutomaticallyDetectSettings, (AutoWebProxyScriptEngine * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x025D8180, bool, AutoWebProxyScriptEngine_GetProxies, (AutoWebProxyScriptEngine * __this, Uri * destination, IList_1_System_String_ * proxyList, MethodInfo * method)); -DO_APP_FUNC(0x025D8180, bool, AutoWebProxyScriptEngine_GetProxies_1, (AutoWebProxyScriptEngine * __this, Uri * destination, IList_1_System_String_ * proxyList, int32_t syncStatus, MethodInfo * method)); +DO_APP_FUNC(0x025D8180, bool, AutoWebProxyScriptEngine_GetProxies, (AutoWebProxyScriptEngine * __this, Uri * destination, IList_1_System_String_ * * proxyList, MethodInfo * method)); +DO_APP_FUNC(0x025D8180, bool, AutoWebProxyScriptEngine_GetProxies_1, (AutoWebProxyScriptEngine * __this, Uri * destination, IList_1_System_String_ * * proxyList, int32_t * syncStatus, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AutoWebProxyScriptEngine_Close, (AutoWebProxyScriptEngine * __this, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, AutoWebProxyScriptEngine_Abort, (AutoWebProxyScriptEngine * __this, int32_t syncStatus, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, AutoWebProxyScriptEngine_Abort, (AutoWebProxyScriptEngine * __this, int32_t * syncStatus, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AutoWebProxyScriptEngine_CheckForChanges, (AutoWebProxyScriptEngine * __this, MethodInfo * method)); DO_APP_FUNC(0x025D81E0, void, UnsafeNclNativeMethods_HttpApi__cctor, (MethodInfo * method)); DO_APP_FUNC(0x025D8D10, String *, UnsafeNclNativeMethods_HttpApi_HTTP_REQUEST_HEADER_ID_ToString, (int32_t position, MethodInfo * method)); @@ -31024,6 +35280,7 @@ DO_APP_FUNC(0x003AE050, void, TraceSource_1__ctor, (TraceSource_1 * __this, Meth DO_APP_FUNC(0x025DA370, void, ServerCertValidationCallback__ctor, (ServerCertValidationCallback * __this, RemoteCertificateValidationCallback * validationCallback, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, RemoteCertificateValidationCallback *, ServerCertValidationCallback_get_ValidationCallback, (ServerCertValidationCallback * __this, MethodInfo * method)); DO_APP_FUNC(0x025DA480, void, ServerCertValidationCallback_Callback, (ServerCertValidationCallback * __this, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D139B8, ServerCertValidationCallback_Callback__MethodInfo); DO_APP_FUNC(0x025DA530, bool, ServerCertValidationCallback_Invoke, (ServerCertValidationCallback * __this, Object * request, X509Certificate * certificate, X509Chain * chain, SslPolicyErrors__Enum sslPolicyErrors, MethodInfo * method)); DO_APP_FUNC(0x025DA780, void, ServerCertValidationCallback_CallbackContext__ctor, (ServerCertValidationCallback_CallbackContext * __this, Object * request, X509Certificate * certificate, X509Chain * chain, SslPolicyErrors__Enum sslPolicyErrors, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AuthenticationManager__ctor, (AuthenticationManager * __this, MethodInfo * method)); @@ -31032,16 +35289,23 @@ DO_APP_FUNC(0x025DAD00, ICredentialPolicy *, AuthenticationManager_get_Credentia DO_APP_FUNC(0x025DAD60, void, AuthenticationManager_set_CredentialPolicy, (ICredentialPolicy * value, MethodInfo * method)); DO_APP_FUNC(0x025DAE20, Exception *, AuthenticationManager_GetMustImplement, (MethodInfo * method)); DO_APP_FUNC(0x025DAEB0, StringDictionary *, AuthenticationManager_get_CustomTargetNameDictionary, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D139A8, AuthenticationManager_get_CustomTargetNameDictionary__MethodInfo); DO_APP_FUNC(0x025DAEF0, IEnumerator *, AuthenticationManager_get_RegisteredModules, (MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, AuthenticationManager_get_OSSupportsExtendedProtection, (MethodInfo * method)); DO_APP_FUNC(0x025DAF70, void, AuthenticationManager_Clear, (MethodInfo * method)); DO_APP_FUNC(0x025DB140, Authorization *, AuthenticationManager_Authenticate, (String * challenge, WebRequest * request, ICredentials * credentials, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13958, AuthenticationManager_Authenticate__MethodInfo); DO_APP_FUNC(0x025DB2C0, Authorization *, AuthenticationManager_DoAuthenticate, (String * challenge, WebRequest * request, ICredentials * credentials, MethodInfo * method)); DO_APP_FUNC(0x025DB6D0, Authorization *, AuthenticationManager_PreAuthenticate, (WebRequest * request, ICredentials * credentials, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13948, AuthenticationManager_PreAuthenticate__MethodInfo); DO_APP_FUNC(0x025DBBA0, void, AuthenticationManager_Register, (IAuthenticationModule * authenticationModule, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13988, AuthenticationManager_Register__MethodInfo); DO_APP_FUNC(0x025DBE10, void, AuthenticationManager_Unregister, (IAuthenticationModule * authenticationModule, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13998, AuthenticationManager_Unregister__MethodInfo); DO_APP_FUNC(0x025DBEE0, void, AuthenticationManager_Unregister_1, (String * authenticationScheme, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13968, AuthenticationManager_Unregister_1__MethodInfo); DO_APP_FUNC(0x025DBF90, void, AuthenticationManager_DoUnregister, (String * authenticationScheme, bool throwEx, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13978, AuthenticationManager_DoUnregister__MethodInfo); DO_APP_FUNC(0x025DC400, void, AuthenticationManager__cctor, (MethodInfo * method)); DO_APP_FUNC(0x025DC540, Authorization *, BasicClient_Authenticate, (BasicClient * __this, String * challenge, WebRequest * webRequest, ICredentials * credentials, MethodInfo * method)); DO_APP_FUNC(0x025DC7D0, Byte__Array *, BasicClient_GetBytes, (String * str, MethodInfo * method)); @@ -31056,16 +35320,19 @@ DO_APP_FUNC(0x025DCEE0, IAsyncResult *, BindIPEndPoint_BeginInvoke, (BindIPEndPo DO_APP_FUNC(0x003BA270, IPEndPoint *, BindIPEndPoint_EndInvoke, (BindIPEndPoint * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x025DCF70, void, BufferedReadStream__ctor, (BufferedReadStream * __this, WebOperation * operation, Stream * innerStream, BufferOffsetSize * readBuffer, MethodInfo * method)); DO_APP_FUNC(0x025DCFE0, Task_1_System_Int32_ *, BufferedReadStream_ProcessReadAsync, (BufferedReadStream * __this, Byte__Array * buffer, int32_t offset, int32_t size, CancellationToken cancellationToken, MethodInfo * method)); -DO_APP_FUNC(0x025DD260, bool, BufferedReadStream_TryReadFromBuffer, (BufferedReadStream * __this, Byte__Array * buffer, int32_t offset, int32_t size, int32_t result, MethodInfo * method)); -DO_APP_FUNC(0x025DD300, void, BufferedReadStream_ProcessReadAsync_d_2_MoveNext, (BufferedReadStream_ProcessReadAsync_d_2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x025DD660, void, BufferedReadStream_ProcessReadAsync_d_2_SetStateMachine, (BufferedReadStream_ProcessReadAsync_d_2__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x025DD260, bool, BufferedReadStream_TryReadFromBuffer, (BufferedReadStream * __this, Byte__Array * buffer, int32_t offset, int32_t size, int32_t * result, MethodInfo * method)); +DO_APP_FUNC(0x025DD300, void, BufferedReadStream_ProcessReadAsync_d_2_MoveNext, (BufferedReadStream_ProcessReadAsync_d_2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x025DD660, void, BufferedReadStream_ProcessReadAsync_d_2_SetStateMachine, (BufferedReadStream_ProcessReadAsync_d_2 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); DO_APP_FUNC(0x025DD6D0, void, ChunkedInputStream__ctor, (ChunkedInputStream * __this, HttpListenerContext * context, Stream * stream, Byte__Array * buffer, int32_t offset, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x003C7490, MonoChunkParser *, ChunkedInputStream_get_Decoder, (ChunkedInputStream * __this, MethodInfo * method)); DO_APP_FUNC(0x003C74A0, void, ChunkedInputStream_set_Decoder, (ChunkedInputStream * __this, MonoChunkParser * value, MethodInfo * method)); DO_APP_FUNC(0x025DD8B0, int32_t, ChunkedInputStream_Read, (ChunkedInputStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x025DD900, IAsyncResult *, ChunkedInputStream_BeginRead, (ChunkedInputStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, AsyncCallback * cback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13908, ChunkedInputStream_BeginRead__MethodInfo); DO_APP_FUNC(0x025DDD70, void, ChunkedInputStream_OnRead, (ChunkedInputStream * __this, IAsyncResult * base_ares, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13920, ChunkedInputStream_OnRead__MethodInfo); DO_APP_FUNC(0x025DE0A0, int32_t, ChunkedInputStream_EndRead, (ChunkedInputStream * __this, IAsyncResult * ares, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D138A0, ChunkedInputStream_EndRead__MethodInfo); DO_APP_FUNC(0x025DE2F0, void, ChunkedInputStream_Close, (ChunkedInputStream * __this, MethodInfo * method)); DO_APP_FUNC(0x025DE300, void, ChunkedInputStream_ReadBufferState__ctor, (ChunkedInputStream_ReadBufferState * __this, Byte__Array * buffer, int32_t offset, int32_t count, HttpStreamAsyncResult * ares, MethodInfo * method)); DO_APP_FUNC(0x025DE3D0, ContentDecodeStream *, ContentDecodeStream_Create, (WebOperation * operation, Stream * innerStream, ContentDecodeStream_Mode__Enum mode, MethodInfo * method)); @@ -31084,7 +35351,7 @@ DO_APP_FUNC(0x01AC1290, String *, DigestHeaderParser_get_QOP, (DigestHeaderParse DO_APP_FUNC(0x025DE7D0, bool, DigestHeaderParser_Parse, (DigestHeaderParser * __this, MethodInfo * method)); DO_APP_FUNC(0x025DEB00, void, DigestHeaderParser_SkipWhitespace, (DigestHeaderParser * __this, MethodInfo * method)); DO_APP_FUNC(0x025DEB80, String *, DigestHeaderParser_GetKey, (DigestHeaderParser * __this, MethodInfo * method)); -DO_APP_FUNC(0x025DEC30, bool, DigestHeaderParser_GetKeywordAndValue, (DigestHeaderParser * __this, String * key, String * value, MethodInfo * method)); +DO_APP_FUNC(0x025DEC30, bool, DigestHeaderParser_GetKeywordAndValue, (DigestHeaderParser * __this, String * * key, String * * value, MethodInfo * method)); DO_APP_FUNC(0x025DEF80, void, DigestHeaderParser__cctor, (MethodInfo * method)); DO_APP_FUNC(0x025DF200, void, DigestSession__cctor, (MethodInfo * method)); DO_APP_FUNC(0x025DF2E0, void, DigestSession__ctor, (DigestSession * __this, MethodInfo * method)); @@ -31100,6 +35367,7 @@ DO_APP_FUNC(0x025DFC90, String *, DigestSession_HA1, (DigestSession * __this, St DO_APP_FUNC(0x025DFED0, String *, DigestSession_HA2, (DigestSession * __this, HttpWebRequest * webRequest, MethodInfo * method)); DO_APP_FUNC(0x025E0030, String *, DigestSession_Response, (DigestSession * __this, String * username, String * password, HttpWebRequest * webRequest, MethodInfo * method)); DO_APP_FUNC(0x025E0370, Authorization *, DigestSession_Authenticate, (DigestSession * __this, WebRequest * webRequest, ICredentials * credentials, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13840, DigestSession_Authenticate__MethodInfo); DO_APP_FUNC(0x003BB3C0, DateTime, DigestSession_get_LastUse, (DigestSession * __this, MethodInfo * method)); DO_APP_FUNC(0x025E0A50, Hashtable *, DigestClient_get_Cache, (MethodInfo * method)); DO_APP_FUNC(0x025E0C70, void, DigestClient_CheckExpired, (int32_t count, MethodInfo * method)); @@ -31111,28 +35379,45 @@ DO_APP_FUNC(0x003AE050, void, DigestClient__ctor, (DigestClient * __this, Method DO_APP_FUNC(0x025E1970, void, DigestClient__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Dns__cctor, (MethodInfo * method)); DO_APP_FUNC(0x025E1A50, IAsyncResult *, Dns_BeginGetHostByName, (String * hostName, AsyncCallback * requestCallback, Object * stateObject, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13780, Dns_BeginGetHostByName__MethodInfo); DO_APP_FUNC(0x025E1C50, IAsyncResult *, Dns_BeginResolve, (String * hostName, AsyncCallback * requestCallback, Object * stateObject, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13730, Dns_BeginResolve__MethodInfo); DO_APP_FUNC(0x025E1E50, IAsyncResult *, Dns_BeginGetHostAddresses, (String * hostNameOrAddress, AsyncCallback * requestCallback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D137B8, Dns_BeginGetHostAddresses__MethodInfo); DO_APP_FUNC(0x025E2150, IAsyncResult *, Dns_BeginGetHostEntry, (String * hostNameOrAddress, AsyncCallback * requestCallback, Object * stateObject, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D137C0, Dns_BeginGetHostEntry__MethodInfo); DO_APP_FUNC(0x025E2450, IAsyncResult *, Dns_BeginGetHostEntry_1, (IPAddress * address, AsyncCallback * requestCallback, Object * stateObject, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13798, Dns_BeginGetHostEntry_1__MethodInfo); DO_APP_FUNC(0x025E2560, IPHostEntry *, Dns_EndGetHostByName, (IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13700, Dns_EndGetHostByName__MethodInfo); DO_APP_FUNC(0x025E2690, IPHostEntry *, Dns_EndResolve, (IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D136F8, Dns_EndResolve__MethodInfo); DO_APP_FUNC(0x025E27C0, IPAddress__Array *, Dns_EndGetHostAddresses, (IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13708, Dns_EndGetHostAddresses__MethodInfo); DO_APP_FUNC(0x025E28F0, IPHostEntry *, Dns_EndGetHostEntry, (IAsyncResult * asyncResult, MethodInfo * method)); -DO_APP_FUNC(0x025E2AD0, bool, Dns_GetHostByName_icall, (String * host, String * h_name, String__Array * h_aliases, String__Array * h_addr_list, int32_t hint, MethodInfo * method)); -DO_APP_FUNC(0x025E2AE0, bool, Dns_GetHostByAddr_icall, (String * addr, String * h_name, String__Array * h_aliases, String__Array * h_addr_list, int32_t hint, MethodInfo * method)); -DO_APP_FUNC(0x025E2AF0, bool, Dns_GetHostName_icall, (String * h_name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D136E0, Dns_EndGetHostEntry__MethodInfo); +DO_APP_FUNC(0x025E2AD0, bool, Dns_GetHostByName_icall, (String * host, String * * h_name, String__Array * * h_aliases, String__Array * * h_addr_list, int32_t hint, MethodInfo * method)); +DO_APP_FUNC(0x025E2AE0, bool, Dns_GetHostByAddr_icall, (String * addr, String * * h_name, String__Array * * h_aliases, String__Array * * h_addr_list, int32_t hint, MethodInfo * method)); +DO_APP_FUNC(0x025E2AF0, bool, Dns_GetHostName_icall, (String * * h_name, MethodInfo * method)); DO_APP_FUNC(0x025E2C30, void, Dns_Error_11001, (String * hostName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D136E8, Dns_Error_11001__MethodInfo); DO_APP_FUNC(0x025E2CB0, IPHostEntry *, Dns_hostent_to_IPHostEntry, (String * originalHostName, String * h_name, String__Array * h_aliases, String__Array * h_addrlist, MethodInfo * method)); DO_APP_FUNC(0x025E30C0, IPHostEntry *, Dns_GetHostByAddress, (IPAddress * address, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13710, Dns_GetHostByAddress__MethodInfo); DO_APP_FUNC(0x025E3180, IPHostEntry *, Dns_GetHostByAddress_1, (String * address, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13718, Dns_GetHostByAddress_1__MethodInfo); DO_APP_FUNC(0x025E3230, IPHostEntry *, Dns_GetHostByAddressFromString, (String * address, bool parse, MethodInfo * method)); DO_APP_FUNC(0x025E3480, IPHostEntry *, Dns_GetHostEntry, (String * hostNameOrAddress, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D137D0, Dns_GetHostEntry__MethodInfo); DO_APP_FUNC(0x025E37F0, IPHostEntry *, Dns_GetHostEntry_1, (IPAddress * address, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13790, Dns_GetHostEntry_1__MethodInfo); DO_APP_FUNC(0x025E38B0, IPAddress__Array *, Dns_GetHostAddresses, (String * hostNameOrAddress, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13758, Dns_GetHostAddresses__MethodInfo); DO_APP_FUNC(0x025E3C50, IPHostEntry *, Dns_GetHostByName, (String * hostName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13770, Dns_GetHostByName__MethodInfo); DO_APP_FUNC(0x025E3DC0, String *, Dns_GetHostName, (MethodInfo * method)); DO_APP_FUNC(0x025E3F70, IPHostEntry *, Dns_Resolve, (String * hostName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13778, Dns_Resolve__MethodInfo); DO_APP_FUNC(0x025E40A0, Task_1_System_Net_IPAddress_ *, Dns_GetHostAddressesAsync, (String * hostNameOrAddress, MethodInfo * method)); DO_APP_FUNC(0x025E41F0, Task_1_System_Net_IPHostEntry_ *, Dns_GetHostEntryAsync, (IPAddress * address, MethodInfo * method)); DO_APP_FUNC(0x025E4340, Task_1_System_Net_IPHostEntry_ *, Dns_GetHostEntryAsync_1, (String * hostNameOrAddress, MethodInfo * method)); @@ -31158,24 +35443,28 @@ DO_APP_FUNC(0x003EEA20, IAsyncResult *, Dns_GetHostAddressesCallback_BeginInvoke DO_APP_FUNC(0x003BA270, IPAddress__Array *, Dns_GetHostAddressesCallback_EndInvoke, (Dns_GetHostAddressesCallback * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x025E4490, void, EndPointListener__ctor, (EndPointListener * __this, HttpListener * listener, IPAddress * addr, int32_t port, bool secure, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, HttpListener *, EndPointListener_get_Listener, (EndPointListener * __this, MethodInfo * method)); -DO_APP_FUNC(0x025E4950, void, EndPointListener_Accept, (Socket * socket, SocketAsyncEventArgs * e, Socket * accepted, MethodInfo * method)); +DO_APP_FUNC(0x025E4950, void, EndPointListener_Accept, (Socket * socket, SocketAsyncEventArgs * e, Socket * * accepted, MethodInfo * method)); DO_APP_FUNC(0x025E4A40, void, EndPointListener_ProcessAccept, (SocketAsyncEventArgs * args, MethodInfo * method)); DO_APP_FUNC(0x025E4D60, void, EndPointListener_OnAccept, (Object * sender, SocketAsyncEventArgs * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13698, EndPointListener_OnAccept__MethodInfo); DO_APP_FUNC(0x025E4D70, void, EndPointListener_RemoveConnection, (EndPointListener * __this, HttpConnection * conn, MethodInfo * method)); DO_APP_FUNC(0x025E4F00, bool, EndPointListener_BindContext, (EndPointListener * __this, HttpListenerContext * context, MethodInfo * method)); DO_APP_FUNC(0x025E5010, void, EndPointListener_UnbindContext, (EndPointListener * __this, HttpListenerContext * context, MethodInfo * method)); -DO_APP_FUNC(0x025E5040, HttpListener *, EndPointListener_SearchListener, (EndPointListener * __this, Uri * uri, ListenerPrefix * prefix, MethodInfo * method)); -DO_APP_FUNC(0x025E56A0, HttpListener *, EndPointListener_MatchFromList, (EndPointListener * __this, String * host, String * path, ArrayList * list, ListenerPrefix * prefix, MethodInfo * method)); +DO_APP_FUNC(0x025E5040, HttpListener *, EndPointListener_SearchListener, (EndPointListener * __this, Uri * uri, ListenerPrefix * * prefix, MethodInfo * method)); +DO_APP_FUNC(0x025E56A0, HttpListener *, EndPointListener_MatchFromList, (EndPointListener * __this, String * host, String * path, ArrayList * list, ListenerPrefix * * prefix, MethodInfo * method)); DO_APP_FUNC(0x025E59A0, void, EndPointListener_AddSpecial, (EndPointListener * __this, ArrayList * coll, ListenerPrefix * prefix, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13670, EndPointListener_AddSpecial__MethodInfo); DO_APP_FUNC(0x025E5C20, bool, EndPointListener_RemoveSpecial, (EndPointListener * __this, ArrayList * coll, ListenerPrefix * prefix, MethodInfo * method)); DO_APP_FUNC(0x025E5D60, void, EndPointListener_CheckIfRemove, (EndPointListener * __this, MethodInfo * method)); DO_APP_FUNC(0x025E5E30, void, EndPointListener_Close, (EndPointListener * __this, MethodInfo * method)); DO_APP_FUNC(0x025E61C0, void, EndPointListener_AddPrefix, (EndPointListener * __this, ListenerPrefix * prefix, HttpListener * listener, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D135D0, EndPointListener_AddPrefix__MethodInfo); DO_APP_FUNC(0x025E67D0, void, EndPointListener_RemovePrefix, (EndPointListener * __this, ListenerPrefix * prefix, HttpListener * listener, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, EndPointManager__ctor, (EndPointManager * __this, MethodInfo * method)); DO_APP_FUNC(0x025E6C50, void, EndPointManager_AddListener, (HttpListener * listener, MethodInfo * method)); DO_APP_FUNC(0x025E71B0, void, EndPointManager_AddPrefix, (String * prefix, HttpListener * listener, MethodInfo * method)); DO_APP_FUNC(0x025E7370, void, EndPointManager_AddPrefixInternal, (String * p, HttpListener * listener, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13618, EndPointManager_AddPrefixInternal__MethodInfo); DO_APP_FUNC(0x025E7770, EndPointListener *, EndPointManager_GetEPListener, (String * host, int32_t port, HttpListener * listener, bool secure, MethodInfo * method)); DO_APP_FUNC(0x025E7D60, void, EndPointManager_RemoveEndPoint, (EndPointListener * epl, IPEndPoint * ep, MethodInfo * method)); DO_APP_FUNC(0x025E8090, void, EndPointManager_RemoveListener, (HttpListener * listener, MethodInfo * method)); @@ -31183,6 +35472,7 @@ DO_APP_FUNC(0x025E83F0, void, EndPointManager_RemovePrefix, (String * prefix, Ht DO_APP_FUNC(0x025E85B0, void, EndPointManager_RemovePrefixInternal, (String * prefix, HttpListener * listener, MethodInfo * method)); DO_APP_FUNC(0x025E8900, void, EndPointManager__cctor, (MethodInfo * method)); DO_APP_FUNC(0x025E89D0, void, EndpointPermission__ctor, (EndpointPermission * __this, String * hostname, int32_t port, TransportType__Enum transport, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D135A0, EndpointPermission__ctor__MethodInfo); DO_APP_FUNC(0x003BB3C0, String *, EndpointPermission_get_Hostname, (EndpointPermission * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, EndpointPermission_get_Port, (EndpointPermission * __this, MethodInfo * method)); DO_APP_FUNC(0x003CD440, TransportType__Enum, EndpointPermission_get_Transport, (EndpointPermission * __this, MethodInfo * method)); @@ -31195,15 +35485,17 @@ DO_APP_FUNC(0x025E9210, EndpointPermission *, EndpointPermission_Intersect, (End DO_APP_FUNC(0x025E9310, String *, EndpointPermission_IntersectHostname, (EndpointPermission * __this, EndpointPermission * perm, MethodInfo * method)); DO_APP_FUNC(0x025E9560, String *, EndpointPermission_Intersect_1, (EndpointPermission * __this, String * addr1, String * addr2, MethodInfo * method)); DO_APP_FUNC(0x025E9A50, int32_t, EndpointPermission_ToNumber, (EndpointPermission * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D135C8, EndpointPermission_ToNumber__MethodInfo); DO_APP_FUNC(0x025E9C20, void, EndpointPermission_Resolve, (EndpointPermission * __this, MethodInfo * method)); DO_APP_FUNC(0x005915C0, void, EndpointPermission_UndoResolve, (EndpointPermission * __this, MethodInfo * method)); DO_APP_FUNC(0x025E9FF0, void, EndpointPermission__cctor, (MethodInfo * method)); DO_APP_FUNC(0x025EA0D0, void, EndpointPermission__ctor_1, (EndpointPermission * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D135B8, EndpointPermission__ctor_1__MethodInfo); DO_APP_FUNC(0x003C7390, int64_t, FixedSizeReadStream_get_ContentLength, (FixedSizeReadStream * __this, MethodInfo * method)); DO_APP_FUNC(0x025EA100, void, FixedSizeReadStream__ctor, (FixedSizeReadStream * __this, WebOperation * operation, Stream * innerStream, int64_t contentLength, MethodInfo * method)); DO_APP_FUNC(0x025EA130, Task_1_System_Int32_ *, FixedSizeReadStream_ProcessReadAsync, (FixedSizeReadStream * __this, Byte__Array * buffer, int32_t offset, int32_t size, CancellationToken cancellationToken, MethodInfo * method)); -DO_APP_FUNC(0x025EA3B0, void, FixedSizeReadStream_ProcessReadAsync_d_5_MoveNext, (FixedSizeReadStream_ProcessReadAsync_d_5__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x025EA6F0, void, FixedSizeReadStream_ProcessReadAsync_d_5_SetStateMachine, (FixedSizeReadStream_ProcessReadAsync_d_5__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x025EA3B0, void, FixedSizeReadStream_ProcessReadAsync_d_5_MoveNext, (FixedSizeReadStream_ProcessReadAsync_d_5 * __this, MethodInfo * method)); +DO_APP_FUNC(0x025EA6F0, void, FixedSizeReadStream_ProcessReadAsync_d_5_SetStateMachine, (FixedSizeReadStream_ProcessReadAsync_d_5 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); DO_APP_FUNC(0x025EA760, void, HttpConnection__ctor, (HttpConnection * __this, Socket * sock, EndPointListener * epl, bool secure, X509Certificate * cert, MethodInfo * method)); DO_APP_FUNC(0x003C1700, SslStream *, HttpConnection_get_SslStream, (HttpConnection * __this, MethodInfo * method)); DO_APP_FUNC(0x0049E0C0, Int32__Array *, HttpConnection_get_ClientCertificateErrors, (HttpConnection * __this, MethodInfo * method)); @@ -31217,14 +35509,16 @@ DO_APP_FUNC(0x0051E650, bool, HttpConnection_get_IsSecure, (HttpConnection * __t DO_APP_FUNC(0x003CD530, ListenerPrefix *, HttpConnection_get_Prefix, (HttpConnection * __this, MethodInfo * method)); DO_APP_FUNC(0x00421740, void, HttpConnection_set_Prefix, (HttpConnection * __this, ListenerPrefix * value, MethodInfo * method)); DO_APP_FUNC(0x025EB090, void, HttpConnection_OnTimeout, (HttpConnection * __this, Object * unused, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13568, HttpConnection_OnTimeout__MethodInfo); DO_APP_FUNC(0x025EB0E0, void, HttpConnection_BeginReadRequest, (HttpConnection * __this, MethodInfo * method)); DO_APP_FUNC(0x025EB420, RequestStream *, HttpConnection_GetRequestStream, (HttpConnection * __this, bool chunked, int64_t contentlength, MethodInfo * method)); DO_APP_FUNC(0x025EB910, ResponseStream *, HttpConnection_GetResponseStream, (HttpConnection * __this, MethodInfo * method)); DO_APP_FUNC(0x025EBA60, void, HttpConnection_OnRead, (IAsyncResult * ares, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13550, HttpConnection_OnRead__MethodInfo); DO_APP_FUNC(0x025EBB00, void, HttpConnection_OnReadInternal, (HttpConnection * __this, IAsyncResult * ares, MethodInfo * method)); DO_APP_FUNC(0x025EC040, void, HttpConnection_RemoveConnection, (HttpConnection * __this, MethodInfo * method)); DO_APP_FUNC(0x025EC0A0, bool, HttpConnection_ProcessInput, (HttpConnection * __this, MemoryStream * ms, MethodInfo * method)); -DO_APP_FUNC(0x025EC370, String *, HttpConnection_ReadLine, (HttpConnection * __this, Byte__Array * buffer, int32_t offset, int32_t len, int32_t used, MethodInfo * method)); +DO_APP_FUNC(0x025EC370, String *, HttpConnection_ReadLine, (HttpConnection * __this, Byte__Array * buffer, int32_t offset, int32_t len, int32_t * used, MethodInfo * method)); DO_APP_FUNC(0x025EC560, void, HttpConnection_SendError, (HttpConnection * __this, String * msg, int32_t status, MethodInfo * method)); DO_APP_FUNC(0x025EC8C0, void, HttpConnection_SendError_1, (HttpConnection * __this, MethodInfo * method)); DO_APP_FUNC(0x025EC8F0, void, HttpConnection_Unbind, (HttpConnection * __this, MethodInfo * method)); @@ -31233,6 +35527,7 @@ DO_APP_FUNC(0x025EC950, void, HttpConnection_CloseSocket, (HttpConnection * __th DO_APP_FUNC(0x025ECAA0, void, HttpConnection_Close_1, (HttpConnection * __this, bool force_close, MethodInfo * method)); DO_APP_FUNC(0x025ECF50, void, HttpConnection__cctor, (MethodInfo * method)); DO_APP_FUNC(0x025ED030, bool, HttpConnection___ctor_b__24_0, (HttpConnection * __this, Object * t, X509Certificate * c, X509Chain * ch, SslPolicyErrors__Enum e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13560, HttpConnection___ctor_b__24_0__MethodInfo); DO_APP_FUNC(0x025ED1F0, void, HttpListener__ctor, (HttpListener * __this, X509Certificate * certificate, MonoTlsProvider * tlsProvider, MonoTlsSettings * tlsSettings, MethodInfo * method)); DO_APP_FUNC(0x025ED320, X509Certificate *, HttpListener_LoadCertificateAndKey, (HttpListener * __this, IPAddress * addr, int32_t port, MethodInfo * method)); DO_APP_FUNC(0x025ED8B0, SslStream *, HttpListener_CreateSslStream, (HttpListener * __this, Stream * innerStream, bool ownsStream, RemoteCertificateValidationCallback * callback, MethodInfo * method)); @@ -31243,14 +35538,17 @@ DO_APP_FUNC(0x003C7320, AuthenticationSchemeSelector *, HttpListener_get_Authent DO_APP_FUNC(0x025EE230, void, HttpListener_set_AuthenticationSchemeSelectorDelegate, (HttpListener * __this, AuthenticationSchemeSelector * value, MethodInfo * method)); DO_APP_FUNC(0x003C9200, HttpListener_ExtendedProtectionSelector *, HttpListener_get_ExtendedProtectionSelectorDelegate, (HttpListener * __this, MethodInfo * method)); DO_APP_FUNC(0x025EE2A0, void, HttpListener_set_ExtendedProtectionSelectorDelegate, (HttpListener * __this, HttpListener_ExtendedProtectionSelector * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D134E0, HttpListener_set_ExtendedProtectionSelectorDelegate__MethodInfo); DO_APP_FUNC(0x00436BD0, bool, HttpListener_get_IgnoreWriteExceptions, (HttpListener * __this, MethodInfo * method)); DO_APP_FUNC(0x025EE3A0, void, HttpListener_set_IgnoreWriteExceptions, (HttpListener * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x005C2E80, bool, HttpListener_get_IsListening, (HttpListener * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, HttpListener_get_IsSupported, (MethodInfo * method)); DO_APP_FUNC(0x025EE3D0, HttpListenerPrefixCollection *, HttpListener_get_Prefixes, (HttpListener * __this, MethodInfo * method)); DO_APP_FUNC(0x025EE3F0, HttpListenerTimeoutManager *, HttpListener_get_TimeoutManager, (HttpListener * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D134B0, HttpListener_get_TimeoutManager__MethodInfo); DO_APP_FUNC(0x003C91F0, ExtendedProtectionPolicy *, HttpListener_get_ExtendedProtectionPolicy, (HttpListener * __this, MethodInfo * method)); DO_APP_FUNC(0x025EE440, void, HttpListener_set_ExtendedProtectionPolicy, (HttpListener * __this, ExtendedProtectionPolicy * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D134C0, HttpListener_set_ExtendedProtectionPolicy__MethodInfo); DO_APP_FUNC(0x025EE500, ServiceNameCollection *, HttpListener_get_DefaultServiceNames, (HttpListener * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7390, String *, HttpListener_get_Realm, (HttpListener * __this, MethodInfo * method)); DO_APP_FUNC(0x025EE5D0, void, HttpListener_set_Realm, (HttpListener * __this, String * value, MethodInfo * method)); @@ -31261,14 +35559,18 @@ DO_APP_FUNC(0x025EE690, void, HttpListener_Close, (HttpListener * __this, Method DO_APP_FUNC(0x025EE6D0, void, HttpListener_Close_1, (HttpListener * __this, bool force, MethodInfo * method)); DO_APP_FUNC(0x025EE750, void, HttpListener_Cleanup, (HttpListener * __this, bool close_existing, MethodInfo * method)); DO_APP_FUNC(0x025EF3F0, IAsyncResult *, HttpListener_BeginGetContext, (HttpListener * __this, AsyncCallback * callback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D134F0, HttpListener_BeginGetContext__MethodInfo); DO_APP_FUNC(0x025EF9E0, HttpListenerContext *, HttpListener_EndGetContext, (HttpListener * __this, IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13470, HttpListener_EndGetContext__MethodInfo); DO_APP_FUNC(0x025EFED0, AuthenticationSchemes__Enum, HttpListener_SelectAuthenticationScheme, (HttpListener * __this, HttpListenerContext * context, MethodInfo * method)); DO_APP_FUNC(0x025EFF10, HttpListenerContext *, HttpListener_GetContext, (HttpListener * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13458, HttpListener_GetContext__MethodInfo); DO_APP_FUNC(0x025F0040, void, HttpListener_Start, (HttpListener * __this, MethodInfo * method)); DO_APP_FUNC(0x025F00B0, void, HttpListener_Stop, (HttpListener * __this, MethodInfo * method)); DO_APP_FUNC(0x025F00E0, void, HttpListener_System_IDisposable_Dispose, (HttpListener * __this, MethodInfo * method)); DO_APP_FUNC(0x025F0110, Task_1_System_Net_HttpListenerContext_ *, HttpListener_GetContextAsync, (HttpListener * __this, MethodInfo * method)); DO_APP_FUNC(0x025F0270, void, HttpListener_CheckDisposed, (HttpListener * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13490, HttpListener_CheckDisposed__MethodInfo); DO_APP_FUNC(0x025F0300, HttpListenerContext *, HttpListener_GetContextFromQueue, (HttpListener * __this, MethodInfo * method)); DO_APP_FUNC(0x025F03D0, void, HttpListener_RegisterContext, (HttpListener * __this, HttpListenerContext * context, MethodInfo * method)); DO_APP_FUNC(0x025F0960, void, HttpListener_UnregisterContext, (HttpListener * __this, HttpListenerContext * context, MethodInfo * method)); @@ -31293,10 +35595,15 @@ DO_APP_FUNC(0x003BB3E0, IPrincipal *, HttpListenerContext_get_User, (HttpListene DO_APP_FUNC(0x025F1100, void, HttpListenerContext_ParseAuthentication, (HttpListenerContext * __this, AuthenticationSchemes__Enum expectedSchemes, MethodInfo * method)); DO_APP_FUNC(0x025F1240, IPrincipal *, HttpListenerContext_ParseBasicAuthentication, (HttpListenerContext * __this, String * authData, MethodInfo * method)); DO_APP_FUNC(0x025F14B0, Task_1_System_Net_WebSockets_HttpListenerWebSocketContext_ *, HttpListenerContext_AcceptWebSocketAsync, (HttpListenerContext * __this, String * subProtocol, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13438, HttpListenerContext_AcceptWebSocketAsync__MethodInfo); DO_APP_FUNC(0x025F1500, Task_1_System_Net_WebSockets_HttpListenerWebSocketContext_ *, HttpListenerContext_AcceptWebSocketAsync_1, (HttpListenerContext * __this, String * subProtocol, TimeSpan keepAliveInterval, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13430, HttpListenerContext_AcceptWebSocketAsync_1__MethodInfo); DO_APP_FUNC(0x025F1550, Task_1_System_Net_WebSockets_HttpListenerWebSocketContext_ *, HttpListenerContext_AcceptWebSocketAsync_2, (HttpListenerContext * __this, String * subProtocol, int32_t receiveBufferSize, TimeSpan keepAliveInterval, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13420, HttpListenerContext_AcceptWebSocketAsync_2__MethodInfo); DO_APP_FUNC(0x025F15A0, Task_1_System_Net_WebSockets_HttpListenerWebSocketContext_ *, HttpListenerContext_AcceptWebSocketAsync_3, (HttpListenerContext * __this, String * subProtocol, int32_t receiveBufferSize, TimeSpan keepAliveInterval, ArraySegment_1_Byte_ internalBuffer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13418, HttpListenerContext_AcceptWebSocketAsync_3__MethodInfo); DO_APP_FUNC(0x025F15F0, void, HttpListenerContext__ctor_1, (HttpListenerContext * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13428, HttpListenerContext__ctor_1__MethodInfo); DO_APP_FUNC(0x025F1620, void, HttpListenerPrefixCollection__ctor, (HttpListenerPrefixCollection * __this, HttpListener * listener, MethodInfo * method)); DO_APP_FUNC(0x025F1750, int32_t, HttpListenerPrefixCollection_get_Count, (HttpListenerPrefixCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, HttpListenerPrefixCollection_get_IsReadOnly, (HttpListenerPrefixCollection * __this, MethodInfo * method)); @@ -31309,9 +35616,12 @@ DO_APP_FUNC(0x025F1AC0, void, HttpListenerPrefixCollection_CopyTo_1, (HttpListen DO_APP_FUNC(0x025F1B40, IEnumerator_1_System_String_ *, HttpListenerPrefixCollection_GetEnumerator, (HttpListenerPrefixCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x025F1C30, IEnumerator *, HttpListenerPrefixCollection_System_Collections_IEnumerable_GetEnumerator, (HttpListenerPrefixCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x025F1D20, bool, HttpListenerPrefixCollection_Remove, (HttpListenerPrefixCollection * __this, String * uriPrefix, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D133D8, HttpListenerPrefixCollection_Remove__MethodInfo); DO_APP_FUNC(0x025F1E50, void, HttpListenerPrefixCollection__ctor_1, (HttpListenerPrefixCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D133E0, HttpListenerPrefixCollection__ctor_1__MethodInfo); DO_APP_FUNC(0x025F1E80, void, HttpListenerRequest__ctor, (HttpListenerRequest * __this, HttpListenerContext * context, MethodInfo * method)); DO_APP_FUNC(0x025F2030, void, HttpListenerRequest_SetRequestLine, (HttpListenerRequest * __this, String * req, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D133B8, HttpListenerRequest_SetRequestLine__MethodInfo); DO_APP_FUNC(0x025F24F0, void, HttpListenerRequest_CreateQueryString, (HttpListenerRequest * __this, String * query, MethodInfo * method)); DO_APP_FUNC(0x025F28D0, bool, HttpListenerRequest_MaybeUri, (String * s, MethodInfo * method)); DO_APP_FUNC(0x025F2970, bool, HttpListenerRequest_IsPredefinedScheme, (String * scheme, MethodInfo * method)); @@ -31321,6 +35631,7 @@ DO_APP_FUNC(0x025F3A50, void, HttpListenerRequest_AddHeader, (HttpListenerReques DO_APP_FUNC(0x025F4750, bool, HttpListenerRequest_FlushInput, (HttpListenerRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, String__Array *, HttpListenerRequest_get_AcceptTypes, (HttpListenerRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x025F4A00, int32_t, HttpListenerRequest_get_ClientCertificateError, (HttpListenerRequest * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D133A8, HttpListenerRequest_get_ClientCertificateError__MethodInfo); DO_APP_FUNC(0x025F4AC0, Encoding *, HttpListenerRequest_get_ContentEncoding, (HttpListenerRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x025F4B40, int64_t, HttpListenerRequest_get_ContentLength64, (HttpListenerRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x025F4B60, String *, HttpListenerRequest_get_ContentType, (HttpListenerRequest * __this, MethodInfo * method)); @@ -31346,15 +35657,20 @@ DO_APP_FUNC(0x025F5470, String *, HttpListenerRequest_get_UserHostAddress, (Http DO_APP_FUNC(0x025F54B0, String *, HttpListenerRequest_get_UserHostName, (HttpListenerRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x003C91E0, String__Array *, HttpListenerRequest_get_UserLanguages, (HttpListenerRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x025F5510, IAsyncResult *, HttpListenerRequest_BeginGetClientCertificate, (HttpListenerRequest * __this, AsyncCallback * requestCallback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D132C8, HttpListenerRequest_BeginGetClientCertificate__MethodInfo); DO_APP_FUNC(0x025F5700, X509Certificate2 *, HttpListenerRequest_EndGetClientCertificate, (HttpListenerRequest * __this, IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13250, HttpListenerRequest_EndGetClientCertificate__MethodInfo); DO_APP_FUNC(0x025F57E0, X509Certificate2 *, HttpListenerRequest_GetClientCertificate, (HttpListenerRequest * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13230, HttpListenerRequest_GetClientCertificate__MethodInfo); DO_APP_FUNC(0x003CB690, String *, HttpListenerRequest_get_ServiceName, (HttpListenerRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x025F5810, TransportContext *, HttpListenerRequest_get_TransportContext, (HttpListenerRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, HttpListenerRequest_get_IsWebSocketRequest, (HttpListenerRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x025F5860, Task_1_System_Security_Cryptography_X509Certificates_X509Certificate2_ *, HttpListenerRequest_GetClientCertificateAsync, (HttpListenerRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x025F59C0, void, HttpListenerRequest__cctor, (MethodInfo * method)); DO_APP_FUNC(0x025F5B60, void, HttpListenerRequest__ctor_1, (HttpListenerRequest * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13298, HttpListenerRequest__ctor_1__MethodInfo); DO_APP_FUNC(0x025F5BF0, ChannelBinding *, HttpListenerRequest_Context_GetChannelBinding, (HttpListenerRequest_Context * __this, ChannelBindingKind__Enum kind, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17C58, HttpListenerRequest_Context_GetChannelBinding__MethodInfo); DO_APP_FUNC(0x003AE050, void, HttpListenerRequest_Context__ctor, (HttpListenerRequest_Context * __this, MethodInfo * method)); DO_APP_FUNC(0x00B6BD90, void, HttpListenerRequest_GCCDelegate__ctor, (HttpListenerRequest_GCCDelegate * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x00B6BEC0, X509Certificate2 *, HttpListenerRequest_GCCDelegate_Invoke, (HttpListenerRequest_GCCDelegate * __this, MethodInfo * method)); @@ -31364,35 +35680,47 @@ DO_APP_FUNC(0x025F5C40, void, HttpListenerResponse__ctor, (HttpListenerResponse DO_APP_FUNC(0x00936140, bool, HttpListenerResponse_get_ForceCloseChunked, (HttpListenerResponse * __this, MethodInfo * method)); DO_APP_FUNC(0x025F4AC0, Encoding *, HttpListenerResponse_get_ContentEncoding, (HttpListenerResponse * __this, MethodInfo * method)); DO_APP_FUNC(0x025F5EE0, void, HttpListenerResponse_set_ContentEncoding, (HttpListenerResponse * __this, Encoding * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17BF0, HttpListenerResponse_set_ContentEncoding__MethodInfo); DO_APP_FUNC(0x003BB3E0, int64_t, HttpListenerResponse_get_ContentLength64, (HttpListenerResponse * __this, MethodInfo * method)); DO_APP_FUNC(0x025F6010, void, HttpListenerResponse_set_ContentLength64, (HttpListenerResponse * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17BD8, HttpListenerResponse_set_ContentLength64__MethodInfo); DO_APP_FUNC(0x003BB330, String *, HttpListenerResponse_get_ContentType, (HttpListenerResponse * __this, MethodInfo * method)); DO_APP_FUNC(0x025F6160, void, HttpListenerResponse_set_ContentType, (HttpListenerResponse * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17BD0, HttpListenerResponse_set_ContentType__MethodInfo); DO_APP_FUNC(0x025F6290, CookieCollection *, HttpListenerResponse_get_Cookies, (HttpListenerResponse * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7330, void, HttpListenerResponse_set_Cookies, (HttpListenerResponse * __this, CookieCollection * value, MethodInfo * method)); DO_APP_FUNC(0x003C7390, WebHeaderCollection *, HttpListenerResponse_get_Headers, (HttpListenerResponse * __this, MethodInfo * method)); DO_APP_FUNC(0x003C73A0, void, HttpListenerResponse_set_Headers, (HttpListenerResponse * __this, WebHeaderCollection * value, MethodInfo * method)); DO_APP_FUNC(0x00436BD0, bool, HttpListenerResponse_get_KeepAlive, (HttpListenerResponse * __this, MethodInfo * method)); DO_APP_FUNC(0x025F6350, void, HttpListenerResponse_set_KeepAlive, (HttpListenerResponse * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17C20, HttpListenerResponse_set_KeepAlive__MethodInfo); DO_APP_FUNC(0x025F6430, Stream *, HttpListenerResponse_get_OutputStream, (HttpListenerResponse * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7490, Version *, HttpListenerResponse_get_ProtocolVersion, (HttpListenerResponse * __this, MethodInfo * method)); DO_APP_FUNC(0x025F64C0, void, HttpListenerResponse_set_ProtocolVersion, (HttpListenerResponse * __this, Version * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17C08, HttpListenerResponse_set_ProtocolVersion__MethodInfo); DO_APP_FUNC(0x003C91B0, String *, HttpListenerResponse_get_RedirectLocation, (HttpListenerResponse * __this, MethodInfo * method)); DO_APP_FUNC(0x025F6680, void, HttpListenerResponse_set_RedirectLocation, (HttpListenerResponse * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17AD0, HttpListenerResponse_set_RedirectLocation__MethodInfo); DO_APP_FUNC(0x01EBF850, bool, HttpListenerResponse_get_SendChunked, (HttpListenerResponse * __this, MethodInfo * method)); DO_APP_FUNC(0x025F67B0, void, HttpListenerResponse_set_SendChunked, (HttpListenerResponse * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17AC8, HttpListenerResponse_set_SendChunked__MethodInfo); DO_APP_FUNC(0x0071CA00, int32_t, HttpListenerResponse_get_StatusCode, (HttpListenerResponse * __this, MethodInfo * method)); DO_APP_FUNC(0x025F6890, void, HttpListenerResponse_set_StatusCode, (HttpListenerResponse * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17AB8, HttpListenerResponse_set_StatusCode__MethodInfo); DO_APP_FUNC(0x003C91D0, String *, HttpListenerResponse_get_StatusDescription, (HttpListenerResponse * __this, MethodInfo * method)); DO_APP_FUNC(0x00A030D0, void, HttpListenerResponse_set_StatusDescription, (HttpListenerResponse * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x025F69F0, void, HttpListenerResponse_System_IDisposable_Dispose, (HttpListenerResponse * __this, MethodInfo * method)); DO_APP_FUNC(0x025F6A30, void, HttpListenerResponse_Abort, (HttpListenerResponse * __this, MethodInfo * method)); DO_APP_FUNC(0x025F6A70, void, HttpListenerResponse_AddHeader, (HttpListenerResponse * __this, String * name, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17AE0, HttpListenerResponse_AddHeader__MethodInfo); DO_APP_FUNC(0x025F6C50, void, HttpListenerResponse_AppendCookie, (HttpListenerResponse * __this, Cookie * cookie, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17A50, HttpListenerResponse_AppendCookie__MethodInfo); DO_APP_FUNC(0x025F6DE0, void, HttpListenerResponse_AppendHeader, (HttpListenerResponse * __this, String * name, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17AA0, HttpListenerResponse_AppendHeader__MethodInfo); DO_APP_FUNC(0x025F6FC0, void, HttpListenerResponse_Close, (HttpListenerResponse * __this, bool force, MethodInfo * method)); DO_APP_FUNC(0x025F6FF0, void, HttpListenerResponse_Close_1, (HttpListenerResponse * __this, MethodInfo * method)); DO_APP_FUNC(0x025F7030, void, HttpListenerResponse_Close_2, (HttpListenerResponse * __this, Byte__Array * responseEntity, bool willBlock, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17A88, HttpListenerResponse_Close_2__MethodInfo); DO_APP_FUNC(0x025F71F0, void, HttpListenerResponse_CopyFrom, (HttpListenerResponse * __this, HttpListenerResponse * templateResponse, MethodInfo * method)); DO_APP_FUNC(0x025F7320, void, HttpListenerResponse_Redirect, (HttpListenerResponse * __this, String * url, MethodInfo * method)); DO_APP_FUNC(0x025F73A0, bool, HttpListenerResponse_FindCookie, (HttpListenerResponse * __this, Cookie * cookie, MethodInfo * method)); @@ -31402,20 +35730,34 @@ DO_APP_FUNC(0x025F86A0, String *, HttpListenerResponse_CookieToClientString, (Co DO_APP_FUNC(0x025F89D0, String *, HttpListenerResponse_QuotedString, (Cookie * cookie, String * value, MethodInfo * method)); DO_APP_FUNC(0x025F8B70, bool, HttpListenerResponse_IsToken, (String * value, MethodInfo * method)); DO_APP_FUNC(0x025F8C80, void, HttpListenerResponse_SetCookie, (HttpListenerResponse * __this, Cookie * cookie, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17960, HttpListenerResponse_SetCookie__MethodInfo); DO_APP_FUNC(0x025F8E70, void, HttpListenerResponse__cctor, (MethodInfo * method)); DO_APP_FUNC(0x025F8F20, void, HttpListenerResponse__ctor_1, (HttpListenerResponse * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17948, HttpListenerResponse__ctor_1__MethodInfo); DO_APP_FUNC(0x025F8F50, TimeSpan, HttpListenerTimeoutManager_get_EntityBody, (HttpListenerTimeoutManager * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17940, HttpListenerTimeoutManager_get_EntityBody__MethodInfo); DO_APP_FUNC(0x025F8FA0, void, HttpListenerTimeoutManager_set_EntityBody, (HttpListenerTimeoutManager * __this, TimeSpan value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17930, HttpListenerTimeoutManager_set_EntityBody__MethodInfo); DO_APP_FUNC(0x025F8FF0, TimeSpan, HttpListenerTimeoutManager_get_DrainEntityBody, (HttpListenerTimeoutManager * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D179F8, HttpListenerTimeoutManager_get_DrainEntityBody__MethodInfo); DO_APP_FUNC(0x025F9040, void, HttpListenerTimeoutManager_set_DrainEntityBody, (HttpListenerTimeoutManager * __this, TimeSpan value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D179E8, HttpListenerTimeoutManager_set_DrainEntityBody__MethodInfo); DO_APP_FUNC(0x025F9090, TimeSpan, HttpListenerTimeoutManager_get_RequestQueue, (HttpListenerTimeoutManager * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D179D0, HttpListenerTimeoutManager_get_RequestQueue__MethodInfo); DO_APP_FUNC(0x025F90E0, void, HttpListenerTimeoutManager_set_RequestQueue, (HttpListenerTimeoutManager * __this, TimeSpan value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D179B8, HttpListenerTimeoutManager_set_RequestQueue__MethodInfo); DO_APP_FUNC(0x025F9130, TimeSpan, HttpListenerTimeoutManager_get_IdleConnection, (HttpListenerTimeoutManager * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17A20, HttpListenerTimeoutManager_get_IdleConnection__MethodInfo); DO_APP_FUNC(0x025F9180, void, HttpListenerTimeoutManager_set_IdleConnection, (HttpListenerTimeoutManager * __this, TimeSpan value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17A10, HttpListenerTimeoutManager_set_IdleConnection__MethodInfo); DO_APP_FUNC(0x025F91D0, TimeSpan, HttpListenerTimeoutManager_get_HeaderWait, (HttpListenerTimeoutManager * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17A08, HttpListenerTimeoutManager_get_HeaderWait__MethodInfo); DO_APP_FUNC(0x025F9220, void, HttpListenerTimeoutManager_set_HeaderWait, (HttpListenerTimeoutManager * __this, TimeSpan value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17A00, HttpListenerTimeoutManager_set_HeaderWait__MethodInfo); DO_APP_FUNC(0x025F9270, int64_t, HttpListenerTimeoutManager_get_MinSendBytesPerSecond, (HttpListenerTimeoutManager * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17988, HttpListenerTimeoutManager_get_MinSendBytesPerSecond__MethodInfo); DO_APP_FUNC(0x025F92C0, void, HttpListenerTimeoutManager_set_MinSendBytesPerSecond, (HttpListenerTimeoutManager * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17978, HttpListenerTimeoutManager_set_MinSendBytesPerSecond__MethodInfo); DO_APP_FUNC(0x003AE050, void, HttpListenerTimeoutManager__ctor, (HttpListenerTimeoutManager * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HttpRequestCreator__ctor, (HttpRequestCreator * __this, MethodInfo * method)); DO_APP_FUNC(0x025F9310, WebRequest *, HttpRequestCreator_Create, (HttpRequestCreator * __this, Uri * uri, MethodInfo * method)); @@ -31430,6 +35772,7 @@ DO_APP_FUNC(0x025F99A0, void, HttpWebRequest__cctor, (MethodInfo * method)); DO_APP_FUNC(0x025F9A90, void, HttpWebRequest__ctor, (HttpWebRequest * __this, Uri * uri, MethodInfo * method)); DO_APP_FUNC(0x025FA0B0, void, HttpWebRequest__ctor_1, (HttpWebRequest * __this, Uri * uri, MobileTlsProvider * tlsProvider, MonoTlsSettings * settings, MethodInfo * method)); DO_APP_FUNC(0x025FA190, void, HttpWebRequest__ctor_2, (HttpWebRequest * __this, SerializationInfo * serializationInfo, StreamingContext streamingContext, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17890, HttpWebRequest__ctor_2__MethodInfo); DO_APP_FUNC(0x025FA340, void, HttpWebRequest_ResetAuthorization, (HttpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x025FA4E0, void, HttpWebRequest_SetSpecialHeaders, (HttpWebRequest * __this, String * HeaderName, String * value, MethodInfo * method)); DO_APP_FUNC(0x025FA5D0, String *, HttpWebRequest_get_Accept, (HttpWebRequest * __this, MethodInfo * method)); @@ -31451,12 +35794,15 @@ DO_APP_FUNC(0x0059DF80, MobileTlsProvider *, HttpWebRequest_get_TlsProvider, (Ht DO_APP_FUNC(0x0063B820, MonoTlsSettings *, HttpWebRequest_get_TlsSettings, (HttpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x025FA950, X509CertificateCollection *, HttpWebRequest_get_ClientCertificates, (HttpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x025FAA10, void, HttpWebRequest_set_ClientCertificates, (HttpWebRequest * __this, X509CertificateCollection * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17918, HttpWebRequest_set_ClientCertificates__MethodInfo); DO_APP_FUNC(0x025FAAD0, String *, HttpWebRequest_get_Connection, (HttpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x025FAB30, void, HttpWebRequest_set_Connection, (HttpWebRequest * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D178A8, HttpWebRequest_set_Connection__MethodInfo); DO_APP_FUNC(0x003C7490, String *, HttpWebRequest_get_ConnectionGroupName, (HttpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x003C74A0, void, HttpWebRequest_set_ConnectionGroupName, (HttpWebRequest * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x003C91C0, int64_t, HttpWebRequest_get_ContentLength, (HttpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x025FAD20, void, HttpWebRequest_set_ContentLength, (HttpWebRequest * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D178F0, HttpWebRequest_set_ContentLength__MethodInfo); DO_APP_FUNC(0x018592E0, void, HttpWebRequest_set_InternalContentLength, (HttpWebRequest * __this, int64_t value, MethodInfo * method)); DO_APP_FUNC(0x01D1C780, bool, HttpWebRequest_get_ThrowOnError, (HttpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x01D1C790, void, HttpWebRequest_set_ThrowOnError, (HttpWebRequest * __this, bool value, MethodInfo * method)); @@ -31475,36 +35821,44 @@ DO_APP_FUNC(0x025FB4F0, int32_t, HttpWebRequest_get_DefaultMaximumErrorResponseL DO_APP_FUNC(0x025FB550, void, HttpWebRequest_set_DefaultMaximumErrorResponseLength, (int32_t value, MethodInfo * method)); DO_APP_FUNC(0x025FB5B0, String *, HttpWebRequest_get_Expect, (HttpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x025FB610, void, HttpWebRequest_set_Expect, (HttpWebRequest * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17838, HttpWebRequest_set_Expect__MethodInfo); DO_APP_FUNC(0x005D91C0, bool, HttpWebRequest_get_HaveResponse, (HttpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x00A4F060, WebHeaderCollection *, HttpWebRequest_get_Headers, (HttpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x025FB7C0, void, HttpWebRequest_set_Headers, (HttpWebRequest * __this, WebHeaderCollection * value, MethodInfo * method)); DO_APP_FUNC(0x025FB930, String *, HttpWebRequest_get_Host, (HttpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x025FBAC0, void, HttpWebRequest_set_Host, (HttpWebRequest * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x025FBD20, bool, HttpWebRequest_TryGetHostUri, (HttpWebRequest * __this, String * hostName, Uri * hostUri, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17848, HttpWebRequest_set_Host__MethodInfo); +DO_APP_FUNC(0x025FBD20, bool, HttpWebRequest_TryGetHostUri, (HttpWebRequest * __this, String * hostName, Uri * * hostUri, MethodInfo * method)); DO_APP_FUNC(0x025FBE00, DateTime, HttpWebRequest_get_IfModifiedSince, (HttpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x025FBF00, void, HttpWebRequest_set_IfModifiedSince, (HttpWebRequest * __this, DateTime value, MethodInfo * method)); DO_APP_FUNC(0x00936140, bool, HttpWebRequest_get_KeepAlive, (HttpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x00936150, void, HttpWebRequest_set_KeepAlive, (HttpWebRequest * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x01806100, int32_t, HttpWebRequest_get_MaximumAutomaticRedirections, (HttpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x025FC010, void, HttpWebRequest_set_MaximumAutomaticRedirections, (HttpWebRequest * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17660, HttpWebRequest_set_MaximumAutomaticRedirections__MethodInfo); DO_APP_FUNC(0x0059EE40, int32_t, HttpWebRequest_get_MaximumResponseHeadersLength, (HttpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x025FC0A0, void, HttpWebRequest_set_MaximumResponseHeadersLength, (HttpWebRequest * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17658, HttpWebRequest_set_MaximumResponseHeadersLength__MethodInfo); DO_APP_FUNC(0x025FC130, int32_t, HttpWebRequest_get_DefaultMaximumResponseHeadersLength, (MethodInfo * method)); DO_APP_FUNC(0x025FC190, void, HttpWebRequest_set_DefaultMaximumResponseHeadersLength, (int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01C64FF0, int32_t, HttpWebRequest_get_ReadWriteTimeout, (HttpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x025FC1F0, void, HttpWebRequest_set_ReadWriteTimeout, (HttpWebRequest * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17608, HttpWebRequest_set_ReadWriteTimeout__MethodInfo); DO_APP_FUNC(0x01D170A0, int32_t, HttpWebRequest_get_ContinueTimeout, (HttpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x025FC290, void, HttpWebRequest_set_ContinueTimeout, (HttpWebRequest * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D175F8, HttpWebRequest_set_ContinueTimeout__MethodInfo); DO_APP_FUNC(0x005B9620, String *, HttpWebRequest_get_MediaType, (HttpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x00474710, void, HttpWebRequest_set_MediaType, (HttpWebRequest * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x003C1700, String *, HttpWebRequest_get_Method, (HttpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x025FC320, void, HttpWebRequest_set_Method, (HttpWebRequest * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17618, HttpWebRequest_set_Method__MethodInfo); DO_APP_FUNC(0x01DB9C70, bool, HttpWebRequest_get_Pipelined, (HttpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x00A87C40, void, HttpWebRequest_set_Pipelined, (HttpWebRequest * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x006137A0, bool, HttpWebRequest_get_PreAuthenticate, (HttpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x00613790, void, HttpWebRequest_set_PreAuthenticate, (HttpWebRequest * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x006C5130, Version *, HttpWebRequest_get_ProtocolVersion, (HttpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x025FC790, void, HttpWebRequest_set_ProtocolVersion, (HttpWebRequest * __this, Version * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D176F0, HttpWebRequest_set_ProtocolVersion__MethodInfo); DO_APP_FUNC(0x00606950, IWebProxy *, HttpWebRequest_get_Proxy, (HttpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x025FC950, void, HttpWebRequest_set_Proxy, (HttpWebRequest * __this, IWebProxy * value, MethodInfo * method)); DO_APP_FUNC(0x025FCA40, String *, HttpWebRequest_get_Referer, (HttpWebRequest * __this, MethodInfo * method)); @@ -31517,8 +35871,10 @@ DO_APP_FUNC(0x009A2B70, ServicePoint *, HttpWebRequest_get_ServicePointNoLock, ( DO_APP_FUNC(0x0041AEF0, bool, HttpWebRequest_get_SupportsCookieContainer, (HttpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x003C4830, int32_t, HttpWebRequest_get_Timeout, (HttpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x025FCBD0, void, HttpWebRequest_set_Timeout, (HttpWebRequest * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17720, HttpWebRequest_set_Timeout__MethodInfo); DO_APP_FUNC(0x025FCC40, String *, HttpWebRequest_get_TransferEncoding, (HttpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x025FCCA0, void, HttpWebRequest_set_TransferEncoding, (HttpWebRequest * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D176D8, HttpWebRequest_set_TransferEncoding__MethodInfo); DO_APP_FUNC(0x025FCEB0, bool, HttpWebRequest_get_UseDefaultCredentials, (HttpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x025FCF30, void, HttpWebRequest_set_UseDefaultCredentials, (HttpWebRequest * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x025FCF70, String *, HttpWebRequest_get_UserAgent, (HttpWebRequest * __this, MethodInfo * method)); @@ -31541,34 +35897,50 @@ DO_APP_FUNC(0x025FD4E0, void, HttpWebRequest_AddRange_3, (HttpWebRequest * __thi DO_APP_FUNC(0x025FD500, void, HttpWebRequest_AddRange_4, (HttpWebRequest * __this, int64_t range, MethodInfo * method)); DO_APP_FUNC(0x025FD550, void, HttpWebRequest_AddRange_5, (HttpWebRequest * __this, int64_t from, int64_t to, MethodInfo * method)); DO_APP_FUNC(0x025FD5C0, void, HttpWebRequest_AddRange_6, (HttpWebRequest * __this, String * rangeSpecifier, int64_t range, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D175A0, HttpWebRequest_AddRange_6__MethodInfo); DO_APP_FUNC(0x025FD940, void, HttpWebRequest_AddRange_7, (HttpWebRequest * __this, String * rangeSpecifier, int64_t from, int64_t to, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17558, HttpWebRequest_AddRange_7__MethodInfo); DO_APP_FUNC(0x025FDC50, WebOperation *, HttpWebRequest_SendRequest, (HttpWebRequest * __this, bool redirecting, BufferOffsetSize * writeBuffer, CancellationToken cancellationToken, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17560, HttpWebRequest_SendRequest__MethodInfo); DO_APP_FUNC(0x025FE040, Task_1_System_IO_Stream_ *, HttpWebRequest_MyGetRequestStreamAsync, (HttpWebRequest * __this, CancellationToken cancellationToken, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17378, HttpWebRequest_MyGetRequestStreamAsync__MethodInfo); DO_APP_FUNC(0x025FE780, IAsyncResult *, HttpWebRequest_BeginGetRequestStream, (HttpWebRequest * __this, AsyncCallback * callback, Object * state, MethodInfo * method)); DO_APP_FUNC(0x025FE850, Stream *, HttpWebRequest_EndGetRequestStream, (HttpWebRequest * __this, IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17358, HttpWebRequest_EndGetRequestStream__MethodInfo); DO_APP_FUNC(0x025FE930, Stream *, HttpWebRequest_GetRequestStream, (HttpWebRequest * __this, MethodInfo * method)); -DO_APP_FUNC(0x025FEA20, Stream *, HttpWebRequest_GetRequestStream_1, (HttpWebRequest * __this, TransportContext * context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17450, HttpWebRequest_GetRequestStream__MethodInfo); +DO_APP_FUNC(0x025FEA20, Stream *, HttpWebRequest_GetRequestStream_1, (HttpWebRequest * __this, TransportContext * * context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17440, HttpWebRequest_GetRequestStream_1__MethodInfo); DO_APP_FUNC(0x025FEA70, Task_1_System_IO_Stream_ *, HttpWebRequest_GetRequestStreamAsync, (HttpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x025FEB10, Task_1_System_Net_HttpWebResponse_ *, HttpWebRequest_MyGetResponseAsync, (HttpWebRequest * __this, CancellationToken cancellationToken, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D171B8, HttpWebRequest_MyGetResponseAsync__MethodInfo); DO_APP_FUNC(0x025FED00, Task_1_System_ValueTuple_5_ *, HttpWebRequest_GetResponseFromData, (HttpWebRequest * __this, WebResponseStream * stream, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x025FEF70, Exception *, HttpWebRequest_FlattenException, (Exception * e, MethodInfo * method)); DO_APP_FUNC(0x025FF080, WebException *, HttpWebRequest_GetWebException, (HttpWebRequest * __this, Exception * e, MethodInfo * method)); DO_APP_FUNC(0x025FF100, WebException *, HttpWebRequest_GetWebException_1, (Exception * e, bool aborted, MethodInfo * method)); DO_APP_FUNC(0x025FF2E0, WebException *, HttpWebRequest_CreateRequestAbortedException, (MethodInfo * method)); DO_APP_FUNC(0x025FF3B0, IAsyncResult *, HttpWebRequest_BeginGetResponse, (HttpWebRequest * __this, AsyncCallback * callback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17198, HttpWebRequest_BeginGetResponse__MethodInfo); DO_APP_FUNC(0x025FF5E0, WebResponse *, HttpWebRequest_EndGetResponse, (HttpWebRequest * __this, IAsyncResult * asyncResult, MethodInfo * method)); -DO_APP_FUNC(0x025FF6C0, Stream *, HttpWebRequest_EndGetRequestStream_1, (HttpWebRequest * __this, IAsyncResult * asyncResult, TransportContext * context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D172C0, HttpWebRequest_EndGetResponse__MethodInfo); +DO_APP_FUNC(0x025FF6C0, Stream *, HttpWebRequest_EndGetRequestStream_1, (HttpWebRequest * __this, IAsyncResult * asyncResult, TransportContext * * context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17308, HttpWebRequest_EndGetRequestStream_1__MethodInfo); DO_APP_FUNC(0x025FF7A0, WebResponse *, HttpWebRequest_GetResponse, (HttpWebRequest * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17268, HttpWebRequest_GetResponse__MethodInfo); DO_APP_FUNC(0x0058C2B0, bool, HttpWebRequest_get_FinishedReading, (HttpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x025FF890, void, HttpWebRequest_set_FinishedReading, (HttpWebRequest * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x00E2D470, bool, HttpWebRequest_get_Aborted, (HttpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x025FF8A0, void, HttpWebRequest_Abort, (HttpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x025FFAA0, void, HttpWebRequest_System_Runtime_Serialization_ISerializable_GetObjectData, (HttpWebRequest * __this, SerializationInfo * serializationInfo, StreamingContext streamingContext, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D172A0, HttpWebRequest_System_Runtime_Serialization_ISerializable_GetObjectData__MethodInfo); DO_APP_FUNC(0x025FFAF0, void, HttpWebRequest_GetObjectData, (HttpWebRequest * __this, SerializationInfo * serializationInfo, StreamingContext streamingContext, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17290, HttpWebRequest_GetObjectData__MethodInfo); DO_APP_FUNC(0x025FFB40, void, HttpWebRequest_CheckRequestStarted, (HttpWebRequest * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17038, HttpWebRequest_CheckRequestStarted__MethodInfo); DO_APP_FUNC(0x025FFBB0, void, HttpWebRequest_DoContinueDelegate, (HttpWebRequest * __this, int32_t statusCode, WebHeaderCollection * headers, MethodInfo * method)); DO_APP_FUNC(0x025FFBD0, void, HttpWebRequest_RewriteRedirectToGet, (HttpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x025FFCD0, bool, HttpWebRequest_Redirect, (HttpWebRequest * __this, HttpStatusCode__Enum code, WebResponse * response, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16FB8, HttpWebRequest_Redirect__MethodInfo); DO_APP_FUNC(0x026004D0, String *, HttpWebRequest_GetHeaders, (HttpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x02600FF0, void, HttpWebRequest_DoPreAuthenticate, (HttpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x02601210, Byte__Array *, HttpWebRequest_GetRequestHeaders, (HttpWebRequest * __this, MethodInfo * method)); @@ -31580,20 +35952,24 @@ DO_APP_FUNC(0x02602270, bool, HttpWebRequest_get_ReuseConnection, (HttpWebReques DO_APP_FUNC(0x02602280, void, HttpWebRequest_set_ReuseConnection, (HttpWebRequest * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x02602290, StringBuilder *, HttpWebRequest_GenerateConnectionGroup, (String * connectionGroupName, bool unsafeConnectionGroup, bool isInternalGroup, MethodInfo * method)); DO_APP_FUNC(0x026023A0, Task_1_System_Net_BufferOffsetSize_ *, HttpWebRequest__GetRewriteHandler_b__271_0, (HttpWebRequest * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D170C0, HttpWebRequest__GetRewriteHandler_b__271_0__MethodInfo); DO_APP_FUNC(0x02602540, void, HttpWebRequest__ctor_3, (HttpWebRequest * __this, MethodInfo * method)); -DO_APP_FUNC(0x01A9CD50, bool, HttpWebRequest_AuthorizationState_get_IsCompleted, (HttpWebRequest_AuthorizationState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E57F20, HttpWebRequest_NtlmAuthState__Enum, HttpWebRequest_AuthorizationState_get_NtlmAuthState, (HttpWebRequest_AuthorizationState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02602570, bool, HttpWebRequest_AuthorizationState_get_IsNtlmAuthenticated, (HttpWebRequest_AuthorizationState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02602590, void, HttpWebRequest_AuthorizationState__ctor, (HttpWebRequest_AuthorizationState__Boxed * __this, HttpWebRequest * request, bool isProxy, MethodInfo * method)); -DO_APP_FUNC(0x02602600, bool, HttpWebRequest_AuthorizationState_CheckAuthorization, (HttpWebRequest_AuthorizationState__Boxed * __this, WebResponse * response, HttpStatusCode__Enum code, MethodInfo * method)); -DO_APP_FUNC(0x02602A20, void, HttpWebRequest_AuthorizationState_Reset, (HttpWebRequest_AuthorizationState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02602AF0, String *, HttpWebRequest_AuthorizationState_ToString, (HttpWebRequest_AuthorizationState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02602C30, void, HttpWebRequest_MyGetResponseAsync_d_243_MoveNext, (HttpWebRequest_MyGetResponseAsync_d_243__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02604B30, void, HttpWebRequest_MyGetResponseAsync_d_243_SetStateMachine, (HttpWebRequest_MyGetResponseAsync_d_243__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x02604BA0, void, HttpWebRequest_GetResponseFromData_d_244_MoveNext, (HttpWebRequest_GetResponseFromData_d_244__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02605870, void, HttpWebRequest_GetResponseFromData_d_244_SetStateMachine, (HttpWebRequest_GetResponseFromData_d_244__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x026058E0, void, HttpWebRequest_GetRewriteHandler_b_271_0_d_MoveNext, (HttpWebRequest_GetRewriteHandler_b_271_0_d__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02605EA0, void, HttpWebRequest_GetRewriteHandler_b_271_0_d_SetStateMachine, (HttpWebRequest_GetRewriteHandler_b_271_0_d__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16F90, HttpWebRequest__ctor_3__MethodInfo); +DO_APP_FUNC(0x01A9CD50, bool, HttpWebRequest_AuthorizationState_get_IsCompleted, (HttpWebRequest_AuthorizationState * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E57F20, HttpWebRequest_NtlmAuthState__Enum, HttpWebRequest_AuthorizationState_get_NtlmAuthState, (HttpWebRequest_AuthorizationState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02602570, bool, HttpWebRequest_AuthorizationState_get_IsNtlmAuthenticated, (HttpWebRequest_AuthorizationState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02602590, void, HttpWebRequest_AuthorizationState__ctor, (HttpWebRequest_AuthorizationState * __this, HttpWebRequest * request, bool isProxy, MethodInfo * method)); +DO_APP_FUNC(0x02602600, bool, HttpWebRequest_AuthorizationState_CheckAuthorization, (HttpWebRequest_AuthorizationState * __this, WebResponse * response, HttpStatusCode__Enum code, MethodInfo * method)); +DO_APP_FUNC(0x02602A20, void, HttpWebRequest_AuthorizationState_Reset, (HttpWebRequest_AuthorizationState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02602AF0, String *, HttpWebRequest_AuthorizationState_ToString, (HttpWebRequest_AuthorizationState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02602C30, void, HttpWebRequest_MyGetResponseAsync_d_243_MoveNext, (HttpWebRequest_MyGetResponseAsync_d_243 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16E48, HttpWebRequest_MyGetResponseAsync_d_243_MoveNext__MethodInfo); +DO_APP_FUNC(0x02604B30, void, HttpWebRequest_MyGetResponseAsync_d_243_SetStateMachine, (HttpWebRequest_MyGetResponseAsync_d_243 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x02604BA0, void, HttpWebRequest_GetResponseFromData_d_244_MoveNext, (HttpWebRequest_GetResponseFromData_d_244 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16BC0, HttpWebRequest_GetResponseFromData_d_244_MoveNext__MethodInfo); +DO_APP_FUNC(0x02605870, void, HttpWebRequest_GetResponseFromData_d_244_SetStateMachine, (HttpWebRequest_GetResponseFromData_d_244 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x026058E0, void, HttpWebRequest_GetRewriteHandler_b_271_0_d_MoveNext, (HttpWebRequest_GetRewriteHandler_b_271_0_d * __this, MethodInfo * method)); +DO_APP_FUNC(0x02605EA0, void, HttpWebRequest_GetRewriteHandler_b_271_0_d_SetStateMachine, (HttpWebRequest_GetRewriteHandler_b_271_0_d * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HttpWebResponse__ctor, (HttpWebResponse * __this, MethodInfo * method)); DO_APP_FUNC(0x02605F10, void, HttpWebResponse__ctor_1, (HttpWebResponse * __this, Uri * uri, String * method_1, HttpStatusCode__Enum status, WebHeaderCollection * headers, MethodInfo * method)); DO_APP_FUNC(0x02606150, void, HttpWebResponse__ctor_2, (HttpWebResponse * __this, Uri * uri, String * method_1, WebResponseStream * stream, CookieContainer * container, MethodInfo * method)); @@ -31607,6 +35983,7 @@ DO_APP_FUNC(0x026072D0, void, HttpWebResponse_set_Cookies, (HttpWebResponse * __ DO_APP_FUNC(0x003BB3B0, WebHeaderCollection *, HttpWebResponse_get_Headers, (HttpWebResponse * __this, MethodInfo * method)); DO_APP_FUNC(0x02607340, Exception *, HttpWebResponse_GetMustImplement, (MethodInfo * method)); DO_APP_FUNC(0x026073D0, bool, HttpWebResponse_get_IsMutuallyAuthenticated, (HttpWebResponse * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16B78, HttpWebResponse_get_IsMutuallyAuthenticated__MethodInfo); DO_APP_FUNC(0x02607400, DateTime, HttpWebResponse_get_LastModified, (HttpWebResponse * __this, MethodInfo * method)); DO_APP_FUNC(0x026074C0, String *, HttpWebResponse_get_Method, (HttpWebResponse * __this, MethodInfo * method)); DO_APP_FUNC(0x026074E0, Version *, HttpWebResponse_get_ProtocolVersion, (HttpWebResponse * __this, MethodInfo * method)); @@ -31623,19 +36000,22 @@ DO_APP_FUNC(0x02607970, void, HttpWebResponse_Close, (HttpWebResponse * __this, DO_APP_FUNC(0x026079E0, void, HttpWebResponse_System_IDisposable_Dispose, (HttpWebResponse * __this, MethodInfo * method)); DO_APP_FUNC(0x02607A00, void, HttpWebResponse_Dispose, (HttpWebResponse * __this, bool disposing, MethodInfo * method)); DO_APP_FUNC(0x02607A10, void, HttpWebResponse_CheckDisposed, (HttpWebResponse * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16B50, HttpWebResponse_CheckDisposed__MethodInfo); DO_APP_FUNC(0x02607AA0, void, HttpWebResponse_FillCookies, (HttpWebResponse * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171CEC0, void, IPv6AddressFormatter__ctor, (IPv6AddressFormatter__Boxed * __this, UInt16__Array * addr, int64_t scopeId, MethodInfo * method)); +DO_APP_FUNC(0x0171CEC0, void, IPv6AddressFormatter__ctor, (IPv6AddressFormatter * __this, UInt16__Array * addr, int64_t scopeId, MethodInfo * method)); DO_APP_FUNC(0x01B2E760, uint16_t, IPv6AddressFormatter_SwapUShort, (uint16_t number, MethodInfo * method)); -DO_APP_FUNC(0x02607C90, uint32_t, IPv6AddressFormatter_AsIPv4Int, (IPv6AddressFormatter__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02607CE0, bool, IPv6AddressFormatter_IsIPv4Compatible, (IPv6AddressFormatter__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02607D70, bool, IPv6AddressFormatter_IsIPv4Mapped, (IPv6AddressFormatter__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02607DD0, String *, IPv6AddressFormatter_ToString, (IPv6AddressFormatter__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02607C90, uint32_t, IPv6AddressFormatter_AsIPv4Int, (IPv6AddressFormatter * __this, MethodInfo * method)); +DO_APP_FUNC(0x02607CE0, bool, IPv6AddressFormatter_IsIPv4Compatible, (IPv6AddressFormatter * __this, MethodInfo * method)); +DO_APP_FUNC(0x02607D70, bool, IPv6AddressFormatter_IsIPv4Mapped, (IPv6AddressFormatter * __this, MethodInfo * method)); +DO_APP_FUNC(0x02607DD0, String *, IPv6AddressFormatter_ToString, (IPv6AddressFormatter * __this, MethodInfo * method)); DO_APP_FUNC(0x02608150, void, ListenerAsyncResult__ctor, (ListenerAsyncResult * __this, AsyncCallback * cb, Object * state, MethodInfo * method)); DO_APP_FUNC(0x026082B0, void, ListenerAsyncResult_Complete, (ListenerAsyncResult * __this, Exception * exc, MethodInfo * method)); DO_APP_FUNC(0x026085A0, void, ListenerAsyncResult_InvokeCallback, (Object * o, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16A90, ListenerAsyncResult_InvokeCallback__MethodInfo); DO_APP_FUNC(0x02608670, void, ListenerAsyncResult_Complete_1, (ListenerAsyncResult * __this, HttpListenerContext * context, MethodInfo * method)); DO_APP_FUNC(0x02608680, void, ListenerAsyncResult_Complete_2, (ListenerAsyncResult * __this, HttpListenerContext * context, bool synch, MethodInfo * method)); DO_APP_FUNC(0x02608E40, HttpListenerContext *, ListenerAsyncResult_GetContext, (ListenerAsyncResult * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16A70, ListenerAsyncResult_GetContext__MethodInfo); DO_APP_FUNC(0x02608EA0, Object *, ListenerAsyncResult_get_AsyncState, (ListenerAsyncResult * __this, MethodInfo * method)); DO_APP_FUNC(0x02608EC0, WaitHandle *, ListenerAsyncResult_get_AsyncWaitHandle, (ListenerAsyncResult * __this, MethodInfo * method)); DO_APP_FUNC(0x02609110, bool, ListenerAsyncResult_get_CompletedSynchronously, (ListenerAsyncResult * __this, MethodInfo * method)); @@ -31652,23 +36032,26 @@ DO_APP_FUNC(0x003BB3B0, String *, ListenerPrefix_get_Path, (ListenerPrefix * __t DO_APP_FUNC(0x026093E0, bool, ListenerPrefix_Equals, (ListenerPrefix * __this, Object * o, MethodInfo * method)); DO_APP_FUNC(0x00A890A0, int32_t, ListenerPrefix_GetHashCode, (ListenerPrefix * __this, MethodInfo * method)); DO_APP_FUNC(0x02609490, void, ListenerPrefix_Parse, (ListenerPrefix * __this, String * uri, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16930, ListenerPrefix_Parse__MethodInfo); DO_APP_FUNC(0x026098E0, void, ListenerPrefix_CheckUri, (String * uri, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16950, ListenerPrefix_CheckUri__MethodInfo); DO_APP_FUNC(0x02609D20, void, MonoChunkParser__ctor, (MonoChunkParser * __this, WebHeaderCollection * headers, MethodInfo * method)); -DO_APP_FUNC(0x02609EC0, void, MonoChunkParser_WriteAndReadBack, (MonoChunkParser * __this, Byte__Array * buffer, int32_t offset, int32_t size, int32_t read, MethodInfo * method)); +DO_APP_FUNC(0x02609EC0, void, MonoChunkParser_WriteAndReadBack, (MonoChunkParser * __this, Byte__Array * buffer, int32_t offset, int32_t size, int32_t * read, MethodInfo * method)); DO_APP_FUNC(0x02609F40, int32_t, MonoChunkParser_Read, (MonoChunkParser * __this, Byte__Array * buffer, int32_t offset, int32_t size, MethodInfo * method)); DO_APP_FUNC(0x02609F50, int32_t, MonoChunkParser_ReadFromChunks, (MonoChunkParser * __this, Byte__Array * buffer, int32_t offset, int32_t size, MethodInfo * method)); DO_APP_FUNC(0x0260A2A0, void, MonoChunkParser_Write, (MonoChunkParser * __this, Byte__Array * buffer, int32_t offset, int32_t size, MethodInfo * method)); -DO_APP_FUNC(0x0260A2D0, void, MonoChunkParser_InternalWrite, (MonoChunkParser * __this, Byte__Array * buffer, int32_t offset, int32_t size, MethodInfo * method)); +DO_APP_FUNC(0x0260A2D0, void, MonoChunkParser_InternalWrite, (MonoChunkParser * __this, Byte__Array * buffer, int32_t * offset, int32_t size, MethodInfo * method)); DO_APP_FUNC(0x0260A5D0, bool, MonoChunkParser_get_WantMore, (MonoChunkParser * __this, MethodInfo * method)); DO_APP_FUNC(0x0260A5F0, bool, MonoChunkParser_get_DataAvailable, (MonoChunkParser * __this, MethodInfo * method)); DO_APP_FUNC(0x003CC980, int32_t, MonoChunkParser_get_TotalDataSize, (MonoChunkParser * __this, MethodInfo * method)); DO_APP_FUNC(0x0260A700, int32_t, MonoChunkParser_get_ChunkLeft, (MonoChunkParser * __this, MethodInfo * method)); -DO_APP_FUNC(0x0260A710, MonoChunkParser_State__Enum, MonoChunkParser_ReadBody, (MonoChunkParser * __this, Byte__Array * buffer, int32_t offset, int32_t size, MethodInfo * method)); -DO_APP_FUNC(0x0260A880, MonoChunkParser_State__Enum, MonoChunkParser_GetChunkSize, (MonoChunkParser * __this, Byte__Array * buffer, int32_t offset, int32_t size, MethodInfo * method)); +DO_APP_FUNC(0x0260A710, MonoChunkParser_State__Enum, MonoChunkParser_ReadBody, (MonoChunkParser * __this, Byte__Array * buffer, int32_t * offset, int32_t size, MethodInfo * method)); +DO_APP_FUNC(0x0260A880, MonoChunkParser_State__Enum, MonoChunkParser_GetChunkSize, (MonoChunkParser * __this, Byte__Array * buffer, int32_t * offset, int32_t size, MethodInfo * method)); DO_APP_FUNC(0x0260AB50, String *, MonoChunkParser_RemoveChunkExtension, (String * input, MethodInfo * method)); -DO_APP_FUNC(0x0260ABA0, MonoChunkParser_State__Enum, MonoChunkParser_ReadCRLF, (MonoChunkParser * __this, Byte__Array * buffer, int32_t offset, int32_t size, MethodInfo * method)); -DO_APP_FUNC(0x0260AC80, MonoChunkParser_State__Enum, MonoChunkParser_ReadTrailer, (MonoChunkParser * __this, Byte__Array * buffer, int32_t offset, int32_t size, MethodInfo * method)); +DO_APP_FUNC(0x0260ABA0, MonoChunkParser_State__Enum, MonoChunkParser_ReadCRLF, (MonoChunkParser * __this, Byte__Array * buffer, int32_t * offset, int32_t size, MethodInfo * method)); +DO_APP_FUNC(0x0260AC80, MonoChunkParser_State__Enum, MonoChunkParser_ReadTrailer, (MonoChunkParser * __this, Byte__Array * buffer, int32_t * offset, int32_t size, MethodInfo * method)); DO_APP_FUNC(0x0260B1E0, void, MonoChunkParser_ThrowProtocolViolation, (String * message, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16850, MonoChunkParser_ThrowProtocolViolation__MethodInfo); DO_APP_FUNC(0x003BCBE0, void, MonoChunkParser_Chunk__ctor, (MonoChunkParser_Chunk * __this, Byte__Array * chunk, MethodInfo * method)); DO_APP_FUNC(0x0260B250, int32_t, MonoChunkParser_Chunk_Read, (MonoChunkParser_Chunk * __this, Byte__Array * buffer, int32_t offset, int32_t size, MethodInfo * method)); DO_APP_FUNC(0x003C7390, WebHeaderCollection *, MonoChunkStream_get_Headers, (MonoChunkStream * __this, MethodInfo * method)); @@ -31677,11 +36060,12 @@ DO_APP_FUNC(0x0260B2C0, void, MonoChunkStream__ctor, (MonoChunkStream * __this, DO_APP_FUNC(0x0260B400, Task_1_System_Int32_ *, MonoChunkStream_ProcessReadAsync, (MonoChunkStream * __this, Byte__Array * buffer, int32_t offset, int32_t size, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x0260B680, Task *, MonoChunkStream_FinishReading, (MonoChunkStream * __this, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x0260B8A0, void, MonoChunkStream_ThrowExpectingChunkTrailer, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D168D8, MonoChunkStream_ThrowExpectingChunkTrailer__MethodInfo); DO_APP_FUNC(0x0260B910, Task *, MonoChunkStream___n__0, (MonoChunkStream * __this, CancellationToken cancellationToken, MethodInfo * method)); -DO_APP_FUNC(0x0260B9F0, void, MonoChunkStream_ProcessReadAsync_d_7_MoveNext, (MonoChunkStream_ProcessReadAsync_d_7__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0260BEE0, void, MonoChunkStream_ProcessReadAsync_d_7_SetStateMachine, (MonoChunkStream_ProcessReadAsync_d_7__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x0260BF50, void, MonoChunkStream_FinishReading_d_8_MoveNext, (MonoChunkStream_FinishReading_d_8__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0260C650, void, MonoChunkStream_FinishReading_d_8_SetStateMachine, (MonoChunkStream_FinishReading_d_8__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x0260B9F0, void, MonoChunkStream_ProcessReadAsync_d_7_MoveNext, (MonoChunkStream_ProcessReadAsync_d_7 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0260BEE0, void, MonoChunkStream_ProcessReadAsync_d_7_SetStateMachine, (MonoChunkStream_ProcessReadAsync_d_7 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x0260BF50, void, MonoChunkStream_FinishReading_d_8_MoveNext, (MonoChunkStream_FinishReading_d_8 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0260C650, void, MonoChunkStream_FinishReading_d_8_SetStateMachine, (MonoChunkStream_FinishReading_d_8 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); DO_APP_FUNC(0x0260C6B0, DateTime, MonoHttpDate_Parse, (String * dateStr, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, MonoHttpDate__ctor, (MonoHttpDate * __this, MethodInfo * method)); DO_APP_FUNC(0x0260C820, void, MonoHttpDate__cctor, (MethodInfo * method)); @@ -31698,39 +36082,62 @@ DO_APP_FUNC(0x0041AEF0, bool, RequestStream_get_CanRead, (RequestStream * __this DO_APP_FUNC(0x0041AF00, bool, RequestStream_get_CanSeek, (RequestStream * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, RequestStream_get_CanWrite, (RequestStream * __this, MethodInfo * method)); DO_APP_FUNC(0x0260CE30, int64_t, RequestStream_get_Length, (RequestStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16778, RequestStream_get_Length__MethodInfo); DO_APP_FUNC(0x0260CE80, int64_t, RequestStream_get_Position, (RequestStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16770, RequestStream_get_Position__MethodInfo); DO_APP_FUNC(0x0260CED0, void, RequestStream_set_Position, (RequestStream * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16760, RequestStream_set_Position__MethodInfo); DO_APP_FUNC(0x00A32670, void, RequestStream_Close, (RequestStream * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, RequestStream_Flush, (RequestStream * __this, MethodInfo * method)); DO_APP_FUNC(0x0260CF20, int32_t, RequestStream_FillFromBuffer, (RequestStream * __this, Byte__Array * buffer, int32_t off, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16800, RequestStream_FillFromBuffer__MethodInfo); DO_APP_FUNC(0x0260D260, int32_t, RequestStream_Read, (RequestStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D167E0, RequestStream_Read__MethodInfo); DO_APP_FUNC(0x0260D380, IAsyncResult *, RequestStream_BeginRead, (RequestStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, AsyncCallback * cback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16820, RequestStream_BeginRead__MethodInfo); DO_APP_FUNC(0x0260D690, int32_t, RequestStream_EndRead, (RequestStream * __this, IAsyncResult * ares, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D167A8, RequestStream_EndRead__MethodInfo); DO_APP_FUNC(0x0260D8C0, int64_t, RequestStream_Seek, (RequestStream * __this, int64_t offset, SeekOrigin__Enum origin, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16798, RequestStream_Seek__MethodInfo); DO_APP_FUNC(0x0260D910, void, RequestStream_SetLength, (RequestStream * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D167D0, RequestStream_SetLength__MethodInfo); DO_APP_FUNC(0x0260D960, void, RequestStream_Write, (RequestStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D167C8, RequestStream_Write__MethodInfo); DO_APP_FUNC(0x0260D9B0, IAsyncResult *, RequestStream_BeginWrite, (RequestStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, AsyncCallback * cback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D167C0, RequestStream_BeginWrite__MethodInfo); DO_APP_FUNC(0x0260DA00, void, RequestStream_EndWrite, (RequestStream * __this, IAsyncResult * async_result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D167B8, RequestStream_EndWrite__MethodInfo); DO_APP_FUNC(0x0260DA50, void, ResponseStream__ctor, (ResponseStream * __this, Stream * stream, HttpListenerResponse * response, bool ignore_errors, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, ResponseStream_get_CanRead, (ResponseStream * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, ResponseStream_get_CanSeek, (ResponseStream * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, ResponseStream_get_CanWrite, (ResponseStream * __this, MethodInfo * method)); DO_APP_FUNC(0x0260DB60, int64_t, ResponseStream_get_Length, (ResponseStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D166A0, ResponseStream_get_Length__MethodInfo); DO_APP_FUNC(0x0260DBB0, int64_t, ResponseStream_get_Position, (ResponseStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16698, ResponseStream_get_Position__MethodInfo); DO_APP_FUNC(0x0260DC00, void, ResponseStream_set_Position, (ResponseStream * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D166A8, ResponseStream_set_Position__MethodInfo); DO_APP_FUNC(0x0260DC50, void, ResponseStream_Close, (ResponseStream * __this, MethodInfo * method)); DO_APP_FUNC(0x0260DEA0, MemoryStream *, ResponseStream_GetHeaders, (ResponseStream * __this, bool closing, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ResponseStream_Flush, (ResponseStream * __this, MethodInfo * method)); DO_APP_FUNC(0x0260E0E0, Byte__Array *, ResponseStream_GetChunkSizeBytes, (int32_t size, bool final_1, MethodInfo * method)); DO_APP_FUNC(0x0260E1F0, void, ResponseStream_InternalWrite, (ResponseStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x0260E260, void, ResponseStream_Write, (ResponseStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16690, ResponseStream_Write__MethodInfo); DO_APP_FUNC(0x0260E5A0, IAsyncResult *, ResponseStream_BeginWrite, (ResponseStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, AsyncCallback * cback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D166F8, ResponseStream_BeginWrite__MethodInfo); DO_APP_FUNC(0x0260E820, void, ResponseStream_EndWrite, (ResponseStream * __this, IAsyncResult * ares, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16728, ResponseStream_EndWrite__MethodInfo); DO_APP_FUNC(0x0260EA20, int32_t, ResponseStream_Read, (ResponseStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16720, ResponseStream_Read__MethodInfo); DO_APP_FUNC(0x0260EA70, IAsyncResult *, ResponseStream_BeginRead, (ResponseStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, AsyncCallback * cback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16718, ResponseStream_BeginRead__MethodInfo); DO_APP_FUNC(0x0260EAC0, int32_t, ResponseStream_EndRead, (ResponseStream * __this, IAsyncResult * ares, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16708, ResponseStream_EndRead__MethodInfo); DO_APP_FUNC(0x0260EB10, int64_t, ResponseStream_Seek, (ResponseStream * __this, int64_t offset, SeekOrigin__Enum origin, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D166C0, ResponseStream_Seek__MethodInfo); DO_APP_FUNC(0x0260EB60, void, ResponseStream_SetLength, (ResponseStream * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D166B8, ResponseStream_SetLength__MethodInfo); DO_APP_FUNC(0x0260EBB0, void, ResponseStream__cctor, (MethodInfo * method)); DO_APP_FUNC(0x0260EC90, void, ServicePoint__ctor, (ServicePoint * __this, ServicePointManager_SPKey * key, Uri * uri, int32_t connectionLimit, int32_t maxIdleTime, MethodInfo * method)); DO_APP_FUNC(0x003C91C0, ServicePointManager_SPKey *, ServicePoint_get_Key, (ServicePoint * __this, MethodInfo * method)); @@ -31741,6 +36148,7 @@ DO_APP_FUNC(0x003CD530, BindIPEndPoint *, ServicePoint_get_BindIPEndPointDelegat DO_APP_FUNC(0x00421740, void, ServicePoint_set_BindIPEndPointDelegate, (ServicePoint * __this, BindIPEndPoint * value, MethodInfo * method)); DO_APP_FUNC(0x0071AD80, int32_t, ServicePoint_get_ConnectionLeaseTimeout, (ServicePoint * __this, MethodInfo * method)); DO_APP_FUNC(0x0260EEB0, void, ServicePoint_set_ConnectionLeaseTimeout, (ServicePoint * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D166D0, ServicePoint_set_ConnectionLeaseTimeout__MethodInfo); DO_APP_FUNC(0x00A863A0, int32_t, ServicePoint_get_ConnectionLimit, (ServicePoint * __this, MethodInfo * method)); DO_APP_FUNC(0x0260EF20, void, ServicePoint_set_ConnectionLimit, (ServicePoint * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x0260EFB0, String *, ServicePoint_get_ConnectionName, (ServicePoint * __this, MethodInfo * method)); @@ -31751,6 +36159,7 @@ DO_APP_FUNC(0x0260F0E0, void, ServicePoint_set_MaxIdleTime, (ServicePoint * __th DO_APP_FUNC(0x003BB3E0, Version *, ServicePoint_get_ProtocolVersion, (ServicePoint * __this, MethodInfo * method)); DO_APP_FUNC(0x0071C520, int32_t, ServicePoint_get_ReceiveBufferSize, (ServicePoint * __this, MethodInfo * method)); DO_APP_FUNC(0x0260F170, void, ServicePoint_set_ReceiveBufferSize, (ServicePoint * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D165D8, ServicePoint_set_ReceiveBufferSize__MethodInfo); DO_APP_FUNC(0x0260F1E0, bool, ServicePoint_get_SupportsPipelining, (ServicePoint * __this, MethodInfo * method)); DO_APP_FUNC(0x0260F290, bool, ServicePoint_get_Expect100Continue, (ServicePoint * __this, MethodInfo * method)); DO_APP_FUNC(0x01CC4FB0, void, ServicePoint_set_Expect100Continue, (ServicePoint * __this, bool value, MethodInfo * method)); @@ -31759,6 +36168,7 @@ DO_APP_FUNC(0x00944AF0, void, ServicePoint_set_UseNagleAlgorithm, (ServicePoint DO_APP_FUNC(0x0260F2A0, bool, ServicePoint_get_SendContinue, (ServicePoint * __this, MethodInfo * method)); DO_APP_FUNC(0x01CC4FB0, void, ServicePoint_set_SendContinue, (ServicePoint * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x0260F360, void, ServicePoint_SetTcpKeepAlive, (ServicePoint * __this, bool enabled, int32_t keepAliveTime, int32_t keepAliveInterval, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D165B0, ServicePoint_SetTcpKeepAlive__MethodInfo); DO_APP_FUNC(0x0260F460, void, ServicePoint_KeepAliveSetup, (ServicePoint * __this, Socket * socket, MethodInfo * method)); DO_APP_FUNC(0x0260F690, void, ServicePoint_PutBytes, (Byte__Array * bytes, uint32_t v, int32_t offset, MethodInfo * method)); DO_APP_FUNC(0x00594F20, bool, ServicePoint_get_UsesProxy, (ServicePoint * __this, MethodInfo * method)); @@ -31769,6 +36179,7 @@ DO_APP_FUNC(0x0260F7B0, bool, ServicePoint_get_HasTimedOut, (ServicePoint * __th DO_APP_FUNC(0x0260F930, IPHostEntry *, ServicePoint_get_HostEntry, (ServicePoint * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCDE0, void, ServicePoint_SetVersion, (ServicePoint * __this, Version * version, MethodInfo * method)); DO_APP_FUNC(0x02610050, void, ServicePoint_SendRequest, (ServicePoint * __this, WebOperation * operation, String * groupName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16680, ServicePoint_SendRequest__MethodInfo); DO_APP_FUNC(0x02610250, bool, ServicePoint_CloseConnectionGroup, (ServicePoint * __this, String * connectionGroupName, MethodInfo * method)); DO_APP_FUNC(0x02610550, void, ServicePoint_FreeServicePoint, (ServicePoint * __this, MethodInfo * method)); DO_APP_FUNC(0x026105B0, X509Certificate *, ServicePoint_get_Certificate, (ServicePoint * __this, MethodInfo * method)); @@ -31776,7 +36187,9 @@ DO_APP_FUNC(0x026107B0, void, ServicePoint_UpdateServerCertificate, (ServicePoin DO_APP_FUNC(0x026108B0, X509Certificate *, ServicePoint_get_ClientCertificate, (ServicePoint * __this, MethodInfo * method)); DO_APP_FUNC(0x02610AB0, void, ServicePoint_UpdateClientCertificate, (ServicePoint * __this, X509Certificate * certificate, MethodInfo * method)); DO_APP_FUNC(0x02610BB0, bool, ServicePoint_CallEndPointDelegate, (ServicePoint * __this, Socket * sock, IPEndPoint * remote, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16608, ServicePoint_CallEndPointDelegate__MethodInfo); DO_APP_FUNC(0x02610C80, void, ServicePoint__ctor_1, (ServicePoint * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16640, ServicePoint__ctor_1__MethodInfo); DO_APP_FUNC(0x02610CB0, void, ServicePointManager__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ServicePointManager__ctor, (ServicePointManager * __this, MethodInfo * method)); DO_APP_FUNC(0x02610E20, ICertificatePolicy *, ServicePointManager_get_CertificatePolicy, (MethodInfo * method)); @@ -31786,17 +36199,23 @@ DO_APP_FUNC(0x02611060, bool, ServicePointManager_get_CheckCertificateRevocation DO_APP_FUNC(0x026110C0, void, ServicePointManager_set_CheckCertificateRevocationList, (bool value, MethodInfo * method)); DO_APP_FUNC(0x02611120, int32_t, ServicePointManager_get_DefaultConnectionLimit, (MethodInfo * method)); DO_APP_FUNC(0x02611180, void, ServicePointManager_set_DefaultConnectionLimit, (int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16500, ServicePointManager_set_DefaultConnectionLimit__MethodInfo); DO_APP_FUNC(0x02611230, Exception *, ServicePointManager_GetMustImplement, (MethodInfo * method)); DO_APP_FUNC(0x026112C0, int32_t, ServicePointManager_get_DnsRefreshTimeout, (MethodInfo * method)); DO_APP_FUNC(0x02611320, void, ServicePointManager_set_DnsRefreshTimeout, (int32_t value, MethodInfo * method)); DO_APP_FUNC(0x026113D0, bool, ServicePointManager_get_EnableDnsRoundRobin, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16590, ServicePointManager_get_EnableDnsRoundRobin__MethodInfo); DO_APP_FUNC(0x02611410, void, ServicePointManager_set_EnableDnsRoundRobin, (bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16588, ServicePointManager_set_EnableDnsRoundRobin__MethodInfo); DO_APP_FUNC(0x02611450, int32_t, ServicePointManager_get_MaxServicePointIdleTime, (MethodInfo * method)); DO_APP_FUNC(0x026114B0, void, ServicePointManager_set_MaxServicePointIdleTime, (int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16570, ServicePointManager_set_MaxServicePointIdleTime__MethodInfo); DO_APP_FUNC(0x02611560, int32_t, ServicePointManager_get_MaxServicePoints, (MethodInfo * method)); DO_APP_FUNC(0x026115C0, void, ServicePointManager_set_MaxServicePoints, (int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D164A8, ServicePointManager_set_MaxServicePoints__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, ServicePointManager_get_ReusePort, (MethodInfo * method)); DO_APP_FUNC(0x02611670, void, ServicePointManager_set_ReusePort, (bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D164A0, ServicePointManager_set_ReusePort__MethodInfo); DO_APP_FUNC(0x026116C0, SecurityProtocolType__Enum, ServicePointManager_get_SecurityProtocol, (MethodInfo * method)); DO_APP_FUNC(0x02611720, void, ServicePointManager_set_SecurityProtocol, (SecurityProtocolType__Enum value, MethodInfo * method)); DO_APP_FUNC(0x02611780, ServerCertValidationCallback *, ServicePointManager_get_ServerCertValidationCallback, (MethodInfo * method)); @@ -31810,9 +36229,11 @@ DO_APP_FUNC(0x02611B40, void, ServicePointManager_set_UseNagleAlgorithm, (bool v DO_APP_FUNC(0x0041AF00, bool, ServicePointManager_get_DisableStrongCrypto, (MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, ServicePointManager_get_DisableSendAuxRecord, (MethodInfo * method)); DO_APP_FUNC(0x02611BA0, void, ServicePointManager_SetTcpKeepAlive, (bool enabled, int32_t keepAliveTime, int32_t keepAliveInterval, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D164E0, ServicePointManager_SetTcpKeepAlive__MethodInfo); DO_APP_FUNC(0x02611D10, ServicePoint *, ServicePointManager_FindServicePoint, (Uri * address, MethodInfo * method)); DO_APP_FUNC(0x02611D70, ServicePoint *, ServicePointManager_FindServicePoint_1, (String * uriString, IWebProxy * proxy, MethodInfo * method)); DO_APP_FUNC(0x02611E80, ServicePoint *, ServicePointManager_FindServicePoint_2, (Uri * address, IWebProxy * proxy, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16418, ServicePointManager_FindServicePoint_2__MethodInfo); DO_APP_FUNC(0x02612A90, void, ServicePointManager_CloseConnectionGroup, (String * connectionGroupName, MethodInfo * method)); DO_APP_FUNC(0x02612E60, void, ServicePointManager_RemoveServicePoint, (ServicePoint * sp, MethodInfo * method)); DO_APP_FUNC(0x02612F90, CipherSuitesCallback *, ServicePointManager_get_ClientCipherSuitesCallback, (MethodInfo * method)); @@ -31833,8 +36254,10 @@ DO_APP_FUNC(0x003BB3C0, ServicePoint *, ServicePointScheduler_get_ServicePoint, DO_APP_FUNC(0x003BCBE0, void, ServicePointScheduler_set_ServicePoint, (ServicePointScheduler * __this, ServicePoint * value, MethodInfo * method)); DO_APP_FUNC(0x003CD440, int32_t, ServicePointScheduler_get_MaxIdleTime, (ServicePointScheduler * __this, MethodInfo * method)); DO_APP_FUNC(0x026134B0, void, ServicePointScheduler_set_MaxIdleTime, (ServicePointScheduler * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16460, ServicePointScheduler_set_MaxIdleTime__MethodInfo); DO_APP_FUNC(0x00A113B0, int32_t, ServicePointScheduler_get_ConnectionLimit, (ServicePointScheduler * __this, MethodInfo * method)); DO_APP_FUNC(0x02613520, void, ServicePointScheduler_set_ConnectionLimit, (ServicePointScheduler * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16330, ServicePointScheduler_set_ConnectionLimit__MethodInfo); DO_APP_FUNC(0x02613590, void, ServicePointScheduler__ctor, (ServicePointScheduler * __this, ServicePoint * servicePoint, int32_t connectionLimit, int32_t maxIdleTime, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ServicePointScheduler_Debug, (ServicePointScheduler * __this, String * message, MethodInfo * method)); DO_APP_FUNC(0x003C7400, int32_t, ServicePointScheduler_get_CurrentConnections, (ServicePointScheduler * __this, MethodInfo * method)); @@ -31857,6 +36280,7 @@ DO_APP_FUNC(0x026153B0, void, ServicePointScheduler_OnConnectionCreated, (Servic DO_APP_FUNC(0x026153C0, void, ServicePointScheduler_OnConnectionClosed, (ServicePointScheduler * __this, WebConnection * connection, MethodInfo * method)); DO_APP_FUNC(0x026153E0, Task_1_System_Boolean_ *, ServicePointScheduler_WaitAsync, (Task * workerTask, int32_t millisecondTimeout, MethodInfo * method)); DO_APP_FUNC(0x02613A90, Task *, ServicePointScheduler__Run_b__31_0, (ServicePointScheduler * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16318, ServicePointScheduler__Run_b__31_0__MethodInfo); DO_APP_FUNC(0x003BB3C0, ServicePointScheduler *, ServicePointScheduler_ConnectionGroup_get_Scheduler, (ServicePointScheduler_ConnectionGroup * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, String *, ServicePointScheduler_ConnectionGroup_get_Name, (ServicePointScheduler_ConnectionGroup * __this, MethodInfo * method)); DO_APP_FUNC(0x02615590, bool, ServicePointScheduler_ConnectionGroup_get_IsDefault, (ServicePointScheduler_ConnectionGroup * __this, MethodInfo * method)); @@ -31878,10 +36302,11 @@ DO_APP_FUNC(0x02616F40, void, ServicePointScheduler_AsyncManualResetEvent__ctor, DO_APP_FUNC(0x02617020, void, ServicePointScheduler_AsyncManualResetEvent_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ServicePointScheduler_AsyncManualResetEvent_c__ctor, (ServicePointScheduler_AsyncManualResetEvent_c * __this, MethodInfo * method)); DO_APP_FUNC(0x026170D0, bool, ServicePointScheduler_AsyncManualResetEvent_c__Set_b__4_0, (ServicePointScheduler_AsyncManualResetEvent_c * __this, Object * s, MethodInfo * method)); -DO_APP_FUNC(0x02617170, void, ServicePointScheduler_RunScheduler_d_32_MoveNext, (ServicePointScheduler_RunScheduler_d_32__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02618450, void, ServicePointScheduler_RunScheduler_d_32_SetStateMachine, (ServicePointScheduler_RunScheduler_d_32__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x026184B0, void, ServicePointScheduler_WaitAsync_d_46_MoveNext, (ServicePointScheduler_WaitAsync_d_46__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02618BD0, void, ServicePointScheduler_WaitAsync_d_46_SetStateMachine, (ServicePointScheduler_WaitAsync_d_46__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B000, ServicePointScheduler_AsyncManualResetEvent_c__Set_b__4_0__MethodInfo); +DO_APP_FUNC(0x02617170, void, ServicePointScheduler_RunScheduler_d_32_MoveNext, (ServicePointScheduler_RunScheduler_d_32 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02618450, void, ServicePointScheduler_RunScheduler_d_32_SetStateMachine, (ServicePointScheduler_RunScheduler_d_32 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x026184B0, void, ServicePointScheduler_WaitAsync_d_46_MoveNext, (ServicePointScheduler_WaitAsync_d_46 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02618BD0, void, ServicePointScheduler_WaitAsync_d_46_SetStateMachine, (ServicePointScheduler_WaitAsync_d_46 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); DO_APP_FUNC(0x02618C40, void, SocketPermission__ctor, (SocketPermission * __this, PermissionState__Enum state, MethodInfo * method)); DO_APP_FUNC(0x02618D90, void, SocketPermission__ctor_1, (SocketPermission * __this, NetworkAccess__Enum access, TransportType__Enum transport, String * hostName, int32_t portNumber, MethodInfo * method)); DO_APP_FUNC(0x018F47D0, IEnumerator *, SocketPermission_get_AcceptList, (SocketPermission * __this, MethodInfo * method)); @@ -31889,16 +36314,20 @@ DO_APP_FUNC(0x01A6B560, IEnumerator *, SocketPermission_get_ConnectList, (Socket DO_APP_FUNC(0x02618F00, void, SocketPermission_AddPermission, (SocketPermission * __this, NetworkAccess__Enum access, TransportType__Enum transport, String * hostName, int32_t portNumber, MethodInfo * method)); DO_APP_FUNC(0x02618FD0, IPermission *, SocketPermission_Copy, (SocketPermission * __this, MethodInfo * method)); DO_APP_FUNC(0x02619250, IPermission *, SocketPermission_Intersect, (SocketPermission * __this, IPermission * target, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1AF10, SocketPermission_Intersect__MethodInfo); DO_APP_FUNC(0x02619430, bool, SocketPermission_IntersectEmpty, (SocketPermission * __this, SocketPermission * permission, MethodInfo * method)); DO_APP_FUNC(0x026194A0, void, SocketPermission_Intersect_1, (SocketPermission * __this, ArrayList * list1, ArrayList * list2, ArrayList * result, MethodInfo * method)); DO_APP_FUNC(0x026198D0, bool, SocketPermission_IsSubsetOf, (SocketPermission * __this, IPermission * target, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1AF00, SocketPermission_IsSubsetOf__MethodInfo); DO_APP_FUNC(0x02619AF0, bool, SocketPermission_IsSubsetOf_1, (SocketPermission * __this, ArrayList * list1, ArrayList * list2, MethodInfo * method)); DO_APP_FUNC(0x005F7520, bool, SocketPermission_IsUnrestricted, (SocketPermission * __this, MethodInfo * method)); DO_APP_FUNC(0x02619E80, SecurityElement *, SocketPermission_ToXml, (SocketPermission * __this, MethodInfo * method)); DO_APP_FUNC(0x0261A0D0, void, SocketPermission_ToXml_1, (SocketPermission * __this, SecurityElement * root, String * childName, IEnumerator * enumerator, MethodInfo * method)); DO_APP_FUNC(0x0261A440, void, SocketPermission_FromXml, (SocketPermission * __this, SecurityElement * securityElement, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1AF20, SocketPermission_FromXml__MethodInfo); DO_APP_FUNC(0x0261A990, void, SocketPermission_FromXml_1, (SocketPermission * __this, ArrayList * endpoints, NetworkAccess__Enum access, MethodInfo * method)); DO_APP_FUNC(0x0261AEF0, IPermission *, SocketPermission_Union, (SocketPermission * __this, IPermission * target, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1AF28, SocketPermission_Union__MethodInfo); DO_APP_FUNC(0x003BCD60, void, SocketPermissionAttribute__ctor, (SocketPermissionAttribute * __this, SecurityAction__Enum action, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, String *, SocketPermissionAttribute_get_Access, (SocketPermissionAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x0261B0C0, void, SocketPermissionAttribute_set_Access, (SocketPermissionAttribute * __this, String * value, MethodInfo * method)); @@ -31909,7 +36338,9 @@ DO_APP_FUNC(0x0261B200, void, SocketPermissionAttribute_set_Port, (SocketPermiss DO_APP_FUNC(0x003BB330, String *, SocketPermissionAttribute_get_Transport, (SocketPermissionAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x0261B2A0, void, SocketPermissionAttribute_set_Transport, (SocketPermissionAttribute * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x0261B340, IPermission *, SocketPermissionAttribute_CreatePermission, (SocketPermissionAttribute * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1AED0, SocketPermissionAttribute_CreatePermission__MethodInfo); DO_APP_FUNC(0x0261B8B0, void, SocketPermissionAttribute_AlreadySet, (SocketPermissionAttribute * __this, String * property, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1AEE0, SocketPermissionAttribute_AlreadySet__MethodInfo); DO_APP_FUNC(0x0261B940, void, WebCompletionSource__ctor, (WebCompletionSource * __this, MethodInfo * method)); DO_APP_FUNC(0x003CD530, ServicePoint *, WebConnection_get_ServicePoint, (WebConnection * __this, MethodInfo * method)); DO_APP_FUNC(0x00421740, void, WebConnection__ctor, (WebConnection * __this, ServicePoint * sPoint, MethodInfo * method)); @@ -31921,7 +36352,7 @@ DO_APP_FUNC(0x0261BA00, Task *, WebConnection_Connect, (WebConnection * __this, DO_APP_FUNC(0x0261BC80, Task_1_System_Boolean_ *, WebConnection_CreateStream, (WebConnection * __this, WebOperation * operation, bool reused, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x0261BEF0, Task_1_System_Net_WebRequestStream_ *, WebConnection_InitConnection, (WebConnection * __this, WebOperation * operation, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x0261C140, WebException *, WebConnection_GetException, (WebExceptionStatus__Enum status, Exception * error, MethodInfo * method)); -DO_APP_FUNC(0x0261C370, bool, WebConnection_ReadLine, (Byte__Array * buffer, int32_t start, int32_t max, String * output, MethodInfo * method)); +DO_APP_FUNC(0x0261C370, bool, WebConnection_ReadLine, (Byte__Array * buffer, int32_t * start, int32_t max, String * * output, MethodInfo * method)); DO_APP_FUNC(0x0261C5C0, bool, WebConnection_CanReuseConnection, (WebConnection * __this, WebOperation * operation, MethodInfo * method)); DO_APP_FUNC(0x0261CA80, bool, WebConnection_PrepareSharingNtlm, (WebConnection * __this, WebOperation * operation, MethodInfo * method)); DO_APP_FUNC(0x0261CD30, void, WebConnection_Reset, (WebConnection * __this, MethodInfo * method)); @@ -31944,13 +36375,18 @@ DO_APP_FUNC(0x006B5720, void, WebConnection_set_UnsafeAuthenticatedConnectionSha DO_APP_FUNC(0x0261D9C0, void, WebConnection_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, WebConnection_c__ctor, (WebConnection_c * __this, MethodInfo * method)); DO_APP_FUNC(0x0261DA70, IAsyncResult *, WebConnection_c__Connect_b__16_0, (WebConnection_c * __this, IPEndPoint * targetEndPoint, AsyncCallback * callback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1ADE0, WebConnection_c__Connect_b__16_0__MethodInfo); DO_APP_FUNC(0x0261DB20, void, WebConnection_c__Connect_b__16_1, (WebConnection_c * __this, IAsyncResult * asyncResult, MethodInfo * method)); -DO_APP_FUNC(0x0261DBD0, void, WebConnection_Connect_d_16_MoveNext, (WebConnection_Connect_d_16__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0261E640, void, WebConnection_Connect_d_16_SetStateMachine, (WebConnection_Connect_d_16__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x0261E6A0, void, WebConnection_CreateStream_d_18_MoveNext, (WebConnection_CreateStream_d_18__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0261F060, void, WebConnection_CreateStream_d_18_SetStateMachine, (WebConnection_CreateStream_d_18__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x0261F0D0, void, WebConnection_InitConnection_d_19_MoveNext, (WebConnection_InitConnection_d_19__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0261F7B0, void, WebConnection_InitConnection_d_19_SetStateMachine, (WebConnection_InitConnection_d_19__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1ADD8, WebConnection_c__Connect_b__16_1__MethodInfo); +DO_APP_FUNC(0x0261DBD0, void, WebConnection_Connect_d_16_MoveNext, (WebConnection_Connect_d_16 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1ADD0, WebConnection_Connect_d_16_MoveNext__MethodInfo); +DO_APP_FUNC(0x0261E640, void, WebConnection_Connect_d_16_SetStateMachine, (WebConnection_Connect_d_16 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x0261E6A0, void, WebConnection_CreateStream_d_18_MoveNext, (WebConnection_CreateStream_d_18 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1ADC8, WebConnection_CreateStream_d_18_MoveNext__MethodInfo); +DO_APP_FUNC(0x0261F060, void, WebConnection_CreateStream_d_18_SetStateMachine, (WebConnection_CreateStream_d_18 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x0261F0D0, void, WebConnection_InitConnection_d_19_MoveNext, (WebConnection_InitConnection_d_19 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1AE28, WebConnection_InitConnection_d_19_MoveNext__MethodInfo); +DO_APP_FUNC(0x0261F7B0, void, WebConnection_InitConnection_d_19_SetStateMachine, (WebConnection_InitConnection_d_19 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); DO_APP_FUNC(0x0261F820, void, WebConnectionStream__ctor, (WebConnectionStream * __this, WebConnection * cnc, WebOperation * operation, MethodInfo * method)); DO_APP_FUNC(0x003CD530, HttpWebRequest *, WebConnectionStream_get_Request, (WebConnectionStream * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7420, WebConnection *, WebConnectionStream_get_Connection, (WebConnectionStream * __this, MethodInfo * method)); @@ -31959,25 +36395,38 @@ DO_APP_FUNC(0x0261FA40, ServicePoint *, WebConnectionStream_get_ServicePoint, (W DO_APP_FUNC(0x0041AEF0, bool, WebConnectionStream_get_CanTimeout, (WebConnectionStream * __this, MethodInfo * method)); DO_APP_FUNC(0x009F7E90, int32_t, WebConnectionStream_get_ReadTimeout, (WebConnectionStream * __this, MethodInfo * method)); DO_APP_FUNC(0x0261FA60, void, WebConnectionStream_set_ReadTimeout, (WebConnectionStream * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1AE00, WebConnectionStream_set_ReadTimeout__MethodInfo); DO_APP_FUNC(0x013103A0, int32_t, WebConnectionStream_get_WriteTimeout, (WebConnectionStream * __this, MethodInfo * method)); DO_APP_FUNC(0x0261FAD0, void, WebConnectionStream_set_WriteTimeout, (WebConnectionStream * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1ADF8, WebConnectionStream_set_WriteTimeout__MethodInfo); DO_APP_FUNC(0x0261FB40, Exception *, WebConnectionStream_GetException, (WebConnectionStream * __this, Exception * e, MethodInfo * method)); DO_APP_FUNC(0x0261FCE0, int32_t, WebConnectionStream_Read, (WebConnectionStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1AD40, WebConnectionStream_Read__MethodInfo); DO_APP_FUNC(0x0261FFC0, IAsyncResult *, WebConnectionStream_BeginRead, (WebConnectionStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, AsyncCallback * cb, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1AD50, WebConnectionStream_BeginRead__MethodInfo); DO_APP_FUNC(0x02620260, int32_t, WebConnectionStream_EndRead, (WebConnectionStream * __this, IAsyncResult * r, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1AD18, WebConnectionStream_EndRead__MethodInfo); DO_APP_FUNC(0x02620340, IAsyncResult *, WebConnectionStream_BeginWrite, (WebConnectionStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, AsyncCallback * cb, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1AD38, WebConnectionStream_BeginWrite__MethodInfo); DO_APP_FUNC(0x02620590, void, WebConnectionStream_EndWrite, (WebConnectionStream * __this, IAsyncResult * r, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1AD28, WebConnectionStream_EndWrite__MethodInfo); DO_APP_FUNC(0x02620650, void, WebConnectionStream_Write, (WebConnectionStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1AD20, WebConnectionStream_Write__MethodInfo); DO_APP_FUNC(0x003AE050, void, WebConnectionStream_Flush, (WebConnectionStream * __this, MethodInfo * method)); DO_APP_FUNC(0x026208B0, Task *, WebConnectionStream_FlushAsync, (WebConnectionStream * __this, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x00987000, void, WebConnectionStream_InternalClose, (WebConnectionStream * __this, MethodInfo * method)); DO_APP_FUNC(0x02620960, void, WebConnectionStream_Close, (WebConnectionStream * __this, MethodInfo * method)); DO_APP_FUNC(0x02620980, int64_t, WebConnectionStream_Seek, (WebConnectionStream * __this, int64_t a, SeekOrigin__Enum b, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1AD78, WebConnectionStream_Seek__MethodInfo); DO_APP_FUNC(0x026209E0, void, WebConnectionStream_SetLength, (WebConnectionStream * __this, int64_t a, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1ADA0, WebConnectionStream_SetLength__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, WebConnectionStream_get_CanSeek, (WebConnectionStream * __this, MethodInfo * method)); DO_APP_FUNC(0x02620A40, int64_t, WebConnectionStream_get_Length, (WebConnectionStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1AD98, WebConnectionStream_get_Length__MethodInfo); DO_APP_FUNC(0x02620AA0, int64_t, WebConnectionStream_get_Position, (WebConnectionStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1AD90, WebConnectionStream_get_Position__MethodInfo); DO_APP_FUNC(0x02620B00, void, WebConnectionStream_set_Position, (WebConnectionStream * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1AD88, WebConnectionStream_set_Position__MethodInfo); DO_APP_FUNC(0x003BB3C0, HttpWebRequest *, WebConnectionTunnel_get_Request, (WebConnectionTunnel * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Uri *, WebConnectionTunnel_get_ConnectUri, (WebConnectionTunnel * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCE40, void, WebConnectionTunnel__ctor, (WebConnectionTunnel * __this, HttpWebRequest * request, Uri * connectUri, MethodInfo * method)); @@ -32000,10 +36449,12 @@ DO_APP_FUNC(0x003C74A0, void, WebConnectionTunnel_set_Data, (WebConnectionTunnel DO_APP_FUNC(0x02620B60, Task *, WebConnectionTunnel_Initialize, (WebConnectionTunnel * __this, Stream * stream, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x02620DE0, Task_1_System_ValueTuple_3_ *, WebConnectionTunnel_ReadHeaders, (WebConnectionTunnel * __this, Stream * stream, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x02621050, void, WebConnectionTunnel_FlushContents, (WebConnectionTunnel * __this, Stream * stream, int32_t contentLength, MethodInfo * method)); -DO_APP_FUNC(0x026210F0, void, WebConnectionTunnel_Initialize_d_42_MoveNext, (WebConnectionTunnel_Initialize_d_42__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02622330, void, WebConnectionTunnel_Initialize_d_42_SetStateMachine, (WebConnectionTunnel_Initialize_d_42__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x02622390, void, WebConnectionTunnel_ReadHeaders_d_43_MoveNext, (WebConnectionTunnel_ReadHeaders_d_43__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02623110, void, WebConnectionTunnel_ReadHeaders_d_43_SetStateMachine, (WebConnectionTunnel_ReadHeaders_d_43__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x026210F0, void, WebConnectionTunnel_Initialize_d_42_MoveNext, (WebConnectionTunnel_Initialize_d_42 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1ACF8, WebConnectionTunnel_Initialize_d_42_MoveNext__MethodInfo); +DO_APP_FUNC(0x02622330, void, WebConnectionTunnel_Initialize_d_42_SetStateMachine, (WebConnectionTunnel_Initialize_d_42 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x02622390, void, WebConnectionTunnel_ReadHeaders_d_43_MoveNext, (WebConnectionTunnel_ReadHeaders_d_43 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1ACD8, WebConnectionTunnel_ReadHeaders_d_43_MoveNext__MethodInfo); +DO_APP_FUNC(0x02623110, void, WebConnectionTunnel_ReadHeaders_d_43_SetStateMachine, (WebConnectionTunnel_ReadHeaders_d_43 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, HttpWebRequest *, WebOperation_get_Request, (WebOperation * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, WebConnection *, WebOperation_get_Connection, (WebOperation * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE960, void, WebOperation_set_Connection, (WebOperation * __this, WebConnection * value, MethodInfo * method)); @@ -32019,15 +36470,17 @@ DO_APP_FUNC(0x026236C0, void, WebOperation_Abort, (WebOperation * __this, Method DO_APP_FUNC(0x02623720, void, WebOperation_Close, (WebOperation * __this, MethodInfo * method)); DO_APP_FUNC(0x026237C0, void, WebOperation_SetCanceled, (WebOperation * __this, MethodInfo * method)); DO_APP_FUNC(0x026238D0, void, WebOperation_SetError, (WebOperation * __this, Exception * error, MethodInfo * method)); -DO_APP_FUNC(0x02623980, ValueTuple_2_System_Runtime_ExceptionServices_ExceptionDispatchInfo_Boolean_, WebOperation_SetDisposed, (WebOperation * __this, ExceptionDispatchInfo * field, MethodInfo * method)); +DO_APP_FUNC(0x02623980, ValueTuple_2_System_Runtime_ExceptionServices_ExceptionDispatchInfo_Boolean_, WebOperation_SetDisposed, (WebOperation * __this, ExceptionDispatchInfo * * field, MethodInfo * method)); DO_APP_FUNC(0x02623B50, ExceptionDispatchInfo *, WebOperation_CheckDisposed, (WebOperation * __this, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x02623C40, void, WebOperation_ThrowIfDisposed, (WebOperation * __this, MethodInfo * method)); DO_APP_FUNC(0x02623CA0, void, WebOperation_ThrowIfDisposed_1, (WebOperation * __this, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x02623D90, void, WebOperation_ThrowIfClosedOrDisposed, (WebOperation * __this, MethodInfo * method)); DO_APP_FUNC(0x02623DF0, void, WebOperation_ThrowIfClosedOrDisposed_1, (WebOperation * __this, CancellationToken cancellationToken, MethodInfo * method)); -DO_APP_FUNC(0x02623EF0, ExceptionDispatchInfo *, WebOperation_CheckThrowDisposed, (WebOperation * __this, bool throwIt, ExceptionDispatchInfo * field, MethodInfo * method)); +DO_APP_FUNC(0x02623EF0, ExceptionDispatchInfo *, WebOperation_CheckThrowDisposed, (WebOperation * __this, bool throwIt, ExceptionDispatchInfo * * field, MethodInfo * method)); DO_APP_FUNC(0x02623F70, void, WebOperation_RegisterRequest, (WebOperation * __this, ServicePoint * servicePoint, WebConnection * connection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1ABA8, WebOperation_RegisterRequest__MethodInfo); DO_APP_FUNC(0x026243D0, void, WebOperation_SetPriorityRequest, (WebOperation * __this, WebOperation * operation, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1ABC8, WebOperation_SetPriorityRequest__MethodInfo); DO_APP_FUNC(0x026245F0, Task_1_System_IO_Stream_ *, WebOperation_GetRequestStream, (WebOperation * __this, MethodInfo * method)); DO_APP_FUNC(0x02624780, Task_1_System_Net_WebRequestStream_ *, WebOperation_GetRequestStreamInternal, (WebOperation * __this, MethodInfo * method)); DO_APP_FUNC(0x026247D0, Task *, WebOperation_WaitUntilRequestWritten, (WebOperation * __this, MethodInfo * method)); @@ -32038,33 +36491,45 @@ DO_APP_FUNC(0x026248D0, void, WebOperation_Run, (WebOperation * __this, MethodIn DO_APP_FUNC(0x02624A10, void, WebOperation_CompleteRequestWritten, (WebOperation * __this, WebRequestStream * stream, Exception * error, MethodInfo * method)); DO_APP_FUNC(0x02624AA0, void, WebOperation_Finish, (WebOperation * __this, bool ok, Exception * error, MethodInfo * method)); DO_APP_FUNC(0x02624FC0, void, WebOperation__RegisterRequest_b__48_0, (WebOperation * __this, MethodInfo * method)); -DO_APP_FUNC(0x02625000, void, WebOperation_GetRequestStream_d_50_MoveNext, (WebOperation_GetRequestStream_d_50__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x026252D0, void, WebOperation_GetRequestStream_d_50_SetStateMachine, (WebOperation_GetRequestStream_d_50__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x02625340, void, WebOperation_Run_d_58_MoveNext, (WebOperation_Run_d_58__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00B29800, void, WebOperation_Run_d_58_SetStateMachine, (WebOperation_Run_d_58__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1ABB8, WebOperation__RegisterRequest_b__48_0__MethodInfo); +DO_APP_FUNC(0x02625000, void, WebOperation_GetRequestStream_d_50_MoveNext, (WebOperation_GetRequestStream_d_50 * __this, MethodInfo * method)); +DO_APP_FUNC(0x026252D0, void, WebOperation_GetRequestStream_d_50_SetStateMachine, (WebOperation_GetRequestStream_d_50 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x02625340, void, WebOperation_Run_d_58_MoveNext, (WebOperation_Run_d_58 * __this, MethodInfo * method)); +DO_APP_FUNC(0x00B29800, void, WebOperation_Run_d_58_SetStateMachine, (WebOperation_Run_d_58 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); DO_APP_FUNC(0x003BB3B0, WebOperation *, WebReadStream_get_Operation, (WebReadStream * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB330, Stream *, WebReadStream_get_InnerStream, (WebReadStream * __this, MethodInfo * method)); DO_APP_FUNC(0x003CB690, String *, WebReadStream_get_ME, (WebReadStream * __this, MethodInfo * method)); DO_APP_FUNC(0x02625DD0, void, WebReadStream__ctor, (WebReadStream * __this, WebOperation * operation, Stream * innerStream, MethodInfo * method)); DO_APP_FUNC(0x02625EE0, int64_t, WebReadStream_get_Length, (WebReadStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1AB40, WebReadStream_get_Length__MethodInfo); DO_APP_FUNC(0x02625F30, int64_t, WebReadStream_get_Position, (WebReadStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1AB38, WebReadStream_get_Position__MethodInfo); DO_APP_FUNC(0x02625F80, void, WebReadStream_set_Position, (WebReadStream * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1AB30, WebReadStream_set_Position__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, WebReadStream_get_CanSeek, (WebReadStream * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, WebReadStream_get_CanRead, (WebReadStream * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, WebReadStream_get_CanWrite, (WebReadStream * __this, MethodInfo * method)); DO_APP_FUNC(0x02625FD0, void, WebReadStream_SetLength, (WebReadStream * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1AB28, WebReadStream_SetLength__MethodInfo); DO_APP_FUNC(0x02626020, int64_t, WebReadStream_Seek, (WebReadStream * __this, int64_t offset, SeekOrigin__Enum origin, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1AB58, WebReadStream_Seek__MethodInfo); DO_APP_FUNC(0x02626070, void, WebReadStream_Write, (WebReadStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1AB50, WebReadStream_Write__MethodInfo); DO_APP_FUNC(0x026260C0, void, WebReadStream_Flush, (WebReadStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1AB48, WebReadStream_Flush__MethodInfo); DO_APP_FUNC(0x02626110, Exception *, WebReadStream_GetException, (WebReadStream * __this, Exception * e, MethodInfo * method)); DO_APP_FUNC(0x026262B0, int32_t, WebReadStream_Read, (WebReadStream * __this, Byte__Array * buffer, int32_t offset, int32_t size, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1AB88, WebReadStream_Read__MethodInfo); DO_APP_FUNC(0x02626590, IAsyncResult *, WebReadStream_BeginRead, (WebReadStream * __this, Byte__Array * buffer, int32_t offset, int32_t size, AsyncCallback * cb, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1AB90, WebReadStream_BeginRead__MethodInfo); DO_APP_FUNC(0x02626830, int32_t, WebReadStream_EndRead, (WebReadStream * __this, IAsyncResult * r, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1AB80, WebReadStream_EndRead__MethodInfo); DO_APP_FUNC(0x02626910, Task_1_System_Int32_ *, WebReadStream_ReadAsync, (WebReadStream * __this, Byte__Array * buffer, int32_t offset, int32_t size, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x0260B910, Task *, WebReadStream_FinishReading, (WebReadStream * __this, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x02626B90, void, WebReadStream_Dispose, (WebReadStream * __this, bool disposing, MethodInfo * method)); -DO_APP_FUNC(0x02626BC0, void, WebReadStream_ReadAsync_d_28_MoveNext, (WebReadStream_ReadAsync_d_28__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x026271D0, void, WebReadStream_ReadAsync_d_28_SetStateMachine, (WebReadStream_ReadAsync_d_28__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x02626BC0, void, WebReadStream_ReadAsync_d_28_MoveNext, (WebReadStream_ReadAsync_d_28 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1AB00, WebReadStream_ReadAsync_d_28_MoveNext__MethodInfo); +DO_APP_FUNC(0x026271D0, void, WebReadStream_ReadAsync_d_28_SetStateMachine, (WebReadStream_ReadAsync_d_28 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); DO_APP_FUNC(0x02627240, void, WebRequestStream__ctor, (WebRequestStream * __this, WebConnection * connection, WebOperation * operation, Stream * stream, WebConnectionTunnel * tunnel, MethodInfo * method)); DO_APP_FUNC(0x005B9620, Stream *, WebRequestStream_get_InnerStream, (WebRequestStream * __this, MethodInfo * method)); DO_APP_FUNC(0x005B8C30, bool, WebRequestStream_get_KeepAlive, (WebRequestStream * __this, MethodInfo * method)); @@ -32077,9 +36542,11 @@ DO_APP_FUNC(0x02627470, int32_t, WebRequestStream_get_WriteBufferLength, (WebReq DO_APP_FUNC(0x026274D0, BufferOffsetSize *, WebRequestStream_GetWriteBuffer, (WebRequestStream * __this, MethodInfo * method)); DO_APP_FUNC(0x02627610, Task *, WebRequestStream_FinishWriting, (WebRequestStream * __this, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x02627820, Task *, WebRequestStream_WriteAsync, (WebRequestStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, CancellationToken cancellationToken, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1AAF8, WebRequestStream_WriteAsync__MethodInfo); DO_APP_FUNC(0x02627B50, Task *, WebRequestStream_WriteAsyncInner, (WebRequestStream * __this, Byte__Array * buffer, int32_t offset, int32_t size, WebCompletionSource * completion, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x02627E40, Task *, WebRequestStream_ProcessWrite, (WebRequestStream * __this, Byte__Array * buffer, int32_t offset, int32_t size, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x026280E0, void, WebRequestStream_CheckWriteOverflow, (WebRequestStream * __this, int64_t contentLength, int64_t totalWritten, int64_t size, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1AB18, WebRequestStream_CheckWriteOverflow__MethodInfo); DO_APP_FUNC(0x02628190, Task *, WebRequestStream_Initialize, (WebRequestStream * __this, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x026283B0, Task *, WebRequestStream_SetHeadersAsync, (WebRequestStream * __this, bool setInternalLength, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x026285F0, Task *, WebRequestStream_WriteRequestAsync, (WebRequestStream * __this, CancellationToken cancellationToken, MethodInfo * method)); @@ -32087,25 +36554,30 @@ DO_APP_FUNC(0x02628810, Task *, WebRequestStream_WriteChunkTrailer_inner, (WebRe DO_APP_FUNC(0x02628A20, Task *, WebRequestStream_WriteChunkTrailer, (WebRequestStream * __this, MethodInfo * method)); DO_APP_FUNC(0x00717F20, void, WebRequestStream_KillBuffer, (WebRequestStream * __this, MethodInfo * method)); DO_APP_FUNC(0x02628BE0, Task_1_System_Int32_ *, WebRequestStream_ReadAsync, (WebRequestStream * __this, Byte__Array * buffer, int32_t offset, int32_t size, CancellationToken cancellationToken, MethodInfo * method)); -DO_APP_FUNC(0x02628D00, bool, WebRequestStream_TryReadFromBufferedContent, (WebRequestStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, int32_t result, MethodInfo * method)); -DO_APP_FUNC(0x02628D50, void, WebRequestStream_Close_internal, (WebRequestStream * __this, bool disposed, MethodInfo * method)); +DO_APP_FUNC(0x02628D00, bool, WebRequestStream_TryReadFromBufferedContent, (WebRequestStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, int32_t * result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1AAD0, WebRequestStream_TryReadFromBufferedContent__MethodInfo); +DO_APP_FUNC(0x02628D50, void, WebRequestStream_Close_internal, (WebRequestStream * __this, bool * disposed, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1AAB8, WebRequestStream_Close_internal__MethodInfo); DO_APP_FUNC(0x026290E0, void, WebRequestStream__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x026291C0, void, WebRequestStream_FinishWriting_d_31_MoveNext, (WebRequestStream_FinishWriting_d_31__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02629590, void, WebRequestStream_FinishWriting_d_31_SetStateMachine, (WebRequestStream_FinishWriting_d_31__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x026295F0, void, WebRequestStream_WriteAsyncInner_d_33_MoveNext, (WebRequestStream_WriteAsyncInner_d_33__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02629CB0, void, WebRequestStream_WriteAsyncInner_d_33_SetStateMachine, (WebRequestStream_WriteAsyncInner_d_33__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x02629D10, void, WebRequestStream_ProcessWrite_d_34_MoveNext, (WebRequestStream_ProcessWrite_d_34__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0262A4A0, void, WebRequestStream_ProcessWrite_d_34_SetStateMachine, (WebRequestStream_ProcessWrite_d_34__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x0262A500, void, WebRequestStream_Initialize_d_36_MoveNext, (WebRequestStream_Initialize_d_36__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0262A9D0, void, WebRequestStream_Initialize_d_36_SetStateMachine, (WebRequestStream_Initialize_d_36__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x0262AA30, void, WebRequestStream_SetHeadersAsync_d_37_MoveNext, (WebRequestStream_SetHeadersAsync_d_37__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0262B390, void, WebRequestStream_SetHeadersAsync_d_37_SetStateMachine, (WebRequestStream_SetHeadersAsync_d_37__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x0262B3F0, void, WebRequestStream_WriteRequestAsync_d_38_MoveNext, (WebRequestStream_WriteRequestAsync_d_38__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0262BC40, void, WebRequestStream_WriteRequestAsync_d_38_SetStateMachine, (WebRequestStream_WriteRequestAsync_d_38__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x0262BCA0, void, WebRequestStream_WriteChunkTrailer_inner_d_39_MoveNext, (WebRequestStream_WriteChunkTrailer_inner_d_39__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0262BFC0, void, WebRequestStream_WriteChunkTrailer_inner_d_39_SetStateMachine, (WebRequestStream_WriteChunkTrailer_inner_d_39__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x0262C020, void, WebRequestStream_WriteChunkTrailer_d_40_MoveNext, (WebRequestStream_WriteChunkTrailer_d_40__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0262CD80, void, WebRequestStream_WriteChunkTrailer_d_40_SetStateMachine, (WebRequestStream_WriteChunkTrailer_d_40__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x026291C0, void, WebRequestStream_FinishWriting_d_31_MoveNext, (WebRequestStream_FinishWriting_d_31 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02629590, void, WebRequestStream_FinishWriting_d_31_SetStateMachine, (WebRequestStream_FinishWriting_d_31 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x026295F0, void, WebRequestStream_WriteAsyncInner_d_33_MoveNext, (WebRequestStream_WriteAsyncInner_d_33 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02629CB0, void, WebRequestStream_WriteAsyncInner_d_33_SetStateMachine, (WebRequestStream_WriteAsyncInner_d_33 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x02629D10, void, WebRequestStream_ProcessWrite_d_34_MoveNext, (WebRequestStream_ProcessWrite_d_34 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0262A4A0, void, WebRequestStream_ProcessWrite_d_34_SetStateMachine, (WebRequestStream_ProcessWrite_d_34 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x0262A500, void, WebRequestStream_Initialize_d_36_MoveNext, (WebRequestStream_Initialize_d_36 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0262A9D0, void, WebRequestStream_Initialize_d_36_SetStateMachine, (WebRequestStream_Initialize_d_36 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x0262AA30, void, WebRequestStream_SetHeadersAsync_d_37_MoveNext, (WebRequestStream_SetHeadersAsync_d_37 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1AA00, WebRequestStream_SetHeadersAsync_d_37_MoveNext__MethodInfo); +DO_APP_FUNC(0x0262B390, void, WebRequestStream_SetHeadersAsync_d_37_SetStateMachine, (WebRequestStream_SetHeadersAsync_d_37 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x0262B3F0, void, WebRequestStream_WriteRequestAsync_d_38_MoveNext, (WebRequestStream_WriteRequestAsync_d_38 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1AA80, WebRequestStream_WriteRequestAsync_d_38_MoveNext__MethodInfo); +DO_APP_FUNC(0x0262BC40, void, WebRequestStream_WriteRequestAsync_d_38_SetStateMachine, (WebRequestStream_WriteRequestAsync_d_38 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x0262BCA0, void, WebRequestStream_WriteChunkTrailer_inner_d_39_MoveNext, (WebRequestStream_WriteChunkTrailer_inner_d_39 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0262BFC0, void, WebRequestStream_WriteChunkTrailer_inner_d_39_SetStateMachine, (WebRequestStream_WriteChunkTrailer_inner_d_39 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x0262C020, void, WebRequestStream_WriteChunkTrailer_d_40_MoveNext, (WebRequestStream_WriteChunkTrailer_d_40 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1AA68, WebRequestStream_WriteChunkTrailer_d_40_MoveNext__MethodInfo); +DO_APP_FUNC(0x0262CD80, void, WebRequestStream_WriteChunkTrailer_d_40_SetStateMachine, (WebRequestStream_WriteChunkTrailer_d_40 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); DO_APP_FUNC(0x003C9200, WebRequestStream *, WebResponseStream_get_RequestStream, (WebResponseStream * __this, MethodInfo * method)); DO_APP_FUNC(0x00A4F060, WebHeaderCollection *, WebResponseStream_get_Headers, (WebResponseStream * __this, MethodInfo * method)); DO_APP_FUNC(0x00A4F070, void, WebResponseStream_set_Headers, (WebResponseStream * __this, WebHeaderCollection * value, MethodInfo * method)); @@ -32124,29 +36596,37 @@ DO_APP_FUNC(0x005A0DF0, bool, WebResponseStream_get_ChunkedRead, (WebResponseStr DO_APP_FUNC(0x005A0E00, void, WebResponseStream_set_ChunkedRead, (WebResponseStream * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x0262CF10, Task_1_System_Int32_ *, WebResponseStream_ReadAsync, (WebResponseStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x0262D190, Task_1_System_Int32_ *, WebResponseStream_ProcessRead, (WebResponseStream * __this, Byte__Array * buffer, int32_t offset, int32_t size, CancellationToken cancellationToken, MethodInfo * method)); -DO_APP_FUNC(0x0262D580, bool, WebResponseStream_TryReadFromBufferedContent, (WebResponseStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, int32_t result, MethodInfo * method)); +DO_APP_FUNC(0x0262D580, bool, WebResponseStream_TryReadFromBufferedContent, (WebResponseStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, int32_t * result, MethodInfo * method)); DO_APP_FUNC(0x0262D6B0, bool, WebResponseStream_CheckAuthHeader, (WebResponseStream * __this, String * headerName, MethodInfo * method)); DO_APP_FUNC(0x0262D900, bool, WebResponseStream_get_ExpectContent, (WebResponseStream * __this, MethodInfo * method)); DO_APP_FUNC(0x0262D9C0, void, WebResponseStream_Initialize, (WebResponseStream * __this, BufferOffsetSize * buffer, MethodInfo * method)); DO_APP_FUNC(0x0262E9F0, Task_1_System_Byte_ *, WebResponseStream_ReadAllAsyncInner, (WebResponseStream * __this, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x0262EBF0, Task *, WebResponseStream_ReadAllAsync, (WebResponseStream * __this, bool resending, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x0262EE40, Task *, WebResponseStream_WriteAsync, (WebResponseStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, CancellationToken cancellationToken, MethodInfo * method)); -DO_APP_FUNC(0x0262EEE0, void, WebResponseStream_Close_internal, (WebResponseStream * __this, bool disposed, MethodInfo * method)); +DO_APP_FUNC(0x0262EEE0, void, WebResponseStream_Close_internal, (WebResponseStream * __this, bool * disposed, MethodInfo * method)); DO_APP_FUNC(0x0262EFD0, WebException *, WebResponseStream_GetReadException, (WebResponseStream * __this, WebExceptionStatus__Enum status, Exception * error, String * where, MethodInfo * method)); DO_APP_FUNC(0x0262F350, Task *, WebResponseStream_InitReadAsync, (WebResponseStream * __this, CancellationToken cancellationToken, MethodInfo * method)); -DO_APP_FUNC(0x0262F570, bool, WebResponseStream_GetResponse, (WebResponseStream * __this, BufferOffsetSize * buffer, int32_t pos, ReadState__Enum state, MethodInfo * method)); -DO_APP_FUNC(0x026301F0, void, WebResponseStream_ReadAsync_d_40_MoveNext, (WebResponseStream_ReadAsync_d_40__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02630EB0, void, WebResponseStream_ReadAsync_d_40_SetStateMachine, (WebResponseStream_ReadAsync_d_40__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x0262F570, bool, WebResponseStream_GetResponse, (WebResponseStream * __this, BufferOffsetSize * buffer, int32_t * pos, ReadState__Enum * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A920, WebResponseStream_GetResponse__MethodInfo); +DO_APP_FUNC(0x026301F0, void, WebResponseStream_ReadAsync_d_40_MoveNext, (WebResponseStream_ReadAsync_d_40 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A980, WebResponseStream_ReadAsync_d_40_MoveNext__MethodInfo); +DO_APP_FUNC(0x02630EB0, void, WebResponseStream_ReadAsync_d_40_SetStateMachine, (WebResponseStream_ReadAsync_d_40 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, WebResponseStream_c_DisplayClass41_0__ctor, (WebResponseStream_c_DisplayClass41_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x02630F20, Task_1_System_Int32_ *, WebResponseStream_c_DisplayClass41_0__ProcessRead_b__0, (WebResponseStream_c_DisplayClass41_0 * __this, CancellationToken ct, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A9A8, WebResponseStream_c_DisplayClass41_0__ProcessRead_b__0__MethodInfo); DO_APP_FUNC(0x02630F70, void, WebResponseStream_c_DisplayClass41_0__ProcessRead_b__1, (WebResponseStream_c_DisplayClass41_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A9A0, WebResponseStream_c_DisplayClass41_0__ProcessRead_b__1__MethodInfo); DO_APP_FUNC(0x02631000, bool, WebResponseStream_c_DisplayClass41_0__ProcessRead_b__2, (WebResponseStream_c_DisplayClass41_0 * __this, MethodInfo * method)); -DO_APP_FUNC(0x02631070, void, WebResponseStream_ReadAllAsyncInner_d_47_MoveNext, (WebResponseStream_ReadAllAsyncInner_d_47__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02631800, void, WebResponseStream_ReadAllAsyncInner_d_47_SetStateMachine, (WebResponseStream_ReadAllAsyncInner_d_47__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x02631870, void, WebResponseStream_ReadAllAsync_d_48_MoveNext, (WebResponseStream_ReadAllAsync_d_48__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02632A10, void, WebResponseStream_ReadAllAsync_d_48_SetStateMachine, (WebResponseStream_ReadAllAsync_d_48__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x02632A70, void, WebResponseStream_InitReadAsync_d_52_MoveNext, (WebResponseStream_InitReadAsync_d_52__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x026335D0, void, WebResponseStream_InitReadAsync_d_52_SetStateMachine, (WebResponseStream_InitReadAsync_d_52__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A998, WebResponseStream_c_DisplayClass41_0__ProcessRead_b__2__MethodInfo); +DO_APP_FUNC(0x02631070, void, WebResponseStream_ReadAllAsyncInner_d_47_MoveNext, (WebResponseStream_ReadAllAsyncInner_d_47 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A940, WebResponseStream_ReadAllAsyncInner_d_47_MoveNext__MethodInfo); +DO_APP_FUNC(0x02631800, void, WebResponseStream_ReadAllAsyncInner_d_47_SetStateMachine, (WebResponseStream_ReadAllAsyncInner_d_47 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x02631870, void, WebResponseStream_ReadAllAsync_d_48_MoveNext, (WebResponseStream_ReadAllAsync_d_48 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A880, WebResponseStream_ReadAllAsync_d_48_MoveNext__MethodInfo); +DO_APP_FUNC(0x02632A10, void, WebResponseStream_ReadAllAsync_d_48_SetStateMachine, (WebResponseStream_ReadAllAsync_d_48 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x02632A70, void, WebResponseStream_InitReadAsync_d_52_MoveNext, (WebResponseStream_InitReadAsync_d_52 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A8E0, WebResponseStream_InitReadAsync_d_52_MoveNext__MethodInfo); +DO_APP_FUNC(0x026335D0, void, WebResponseStream_InitReadAsync_d_52_SetStateMachine, (WebResponseStream_InitReadAsync_d_52 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GatewayIPAddressInformation__ctor, (GatewayIPAddressInformation * __this, MethodInfo * method)); DO_APP_FUNC(0x02633630, void, GatewayIPAddressInformationCollection__ctor, (GatewayIPAddressInformationCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x02633700, void, GatewayIPAddressInformationCollection_CopyTo, (GatewayIPAddressInformationCollection * __this, GatewayIPAddressInformation__Array * array, int32_t offset, MethodInfo * method)); @@ -32154,42 +36634,54 @@ DO_APP_FUNC(0x02633770, int32_t, GatewayIPAddressInformationCollection_get_Count DO_APP_FUNC(0x0041AEF0, bool, GatewayIPAddressInformationCollection_get_IsReadOnly, (GatewayIPAddressInformationCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x026337F0, GatewayIPAddressInformation *, GatewayIPAddressInformationCollection_get_Item, (GatewayIPAddressInformationCollection * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x02633880, void, GatewayIPAddressInformationCollection_Add, (GatewayIPAddressInformationCollection * __this, GatewayIPAddressInformation * address, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A830, GatewayIPAddressInformationCollection_Add__MethodInfo); DO_APP_FUNC(0x026338F0, void, GatewayIPAddressInformationCollection_InternalAdd, (GatewayIPAddressInformationCollection * __this, GatewayIPAddressInformation * address, MethodInfo * method)); DO_APP_FUNC(0x02633950, bool, GatewayIPAddressInformationCollection_Contains, (GatewayIPAddressInformationCollection * __this, GatewayIPAddressInformation * address, MethodInfo * method)); DO_APP_FUNC(0x026339E0, IEnumerator_1_System_Net_NetworkInformation_GatewayIPAddressInformation_ *, GatewayIPAddressInformationCollection_GetEnumerator, (GatewayIPAddressInformationCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x0248A3E0, IEnumerator *, GatewayIPAddressInformationCollection_System_Collections_IEnumerable_GetEnumerator, (GatewayIPAddressInformationCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x02633A60, bool, GatewayIPAddressInformationCollection_Remove, (GatewayIPAddressInformationCollection * __this, GatewayIPAddressInformation * address, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A868, GatewayIPAddressInformationCollection_Remove__MethodInfo); DO_APP_FUNC(0x02633AD0, void, GatewayIPAddressInformationCollection_Clear, (GatewayIPAddressInformationCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A860, GatewayIPAddressInformationCollection_Clear__MethodInfo); DO_APP_FUNC(0x02633B40, void, IPAddressCollection__ctor, (IPAddressCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x02633C10, void, IPAddressCollection_CopyTo, (IPAddressCollection * __this, IPAddress__Array * array, int32_t offset, MethodInfo * method)); DO_APP_FUNC(0x02633C80, int32_t, IPAddressCollection_get_Count, (IPAddressCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, IPAddressCollection_get_IsReadOnly, (IPAddressCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x02633D00, void, IPAddressCollection_Add, (IPAddressCollection * __this, IPAddress * address, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A858, IPAddressCollection_Add__MethodInfo); DO_APP_FUNC(0x02633D70, void, IPAddressCollection_InternalAdd, (IPAddressCollection * __this, IPAddress * address, MethodInfo * method)); DO_APP_FUNC(0x02633DD0, bool, IPAddressCollection_Contains, (IPAddressCollection * __this, IPAddress * address, MethodInfo * method)); DO_APP_FUNC(0x02633E60, IEnumerator *, IPAddressCollection_System_Collections_IEnumerable_GetEnumerator, (IPAddressCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x02633E80, IEnumerator_1_System_Net_IPAddress_ *, IPAddressCollection_GetEnumerator, (IPAddressCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x02633F00, IPAddress *, IPAddressCollection_get_Item, (IPAddressCollection * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x02633F90, bool, IPAddressCollection_Remove, (IPAddressCollection * __this, IPAddress * address, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A768, IPAddressCollection_Remove__MethodInfo); DO_APP_FUNC(0x02634000, void, IPAddressCollection_Clear, (IPAddressCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A760, IPAddressCollection_Clear__MethodInfo); DO_APP_FUNC(0x003AE050, void, IPAddressInformation__ctor, (IPAddressInformation * __this, MethodInfo * method)); DO_APP_FUNC(0x02634070, void, IPAddressInformationCollection__ctor, (IPAddressInformationCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x02634140, void, IPAddressInformationCollection_CopyTo, (IPAddressInformationCollection * __this, IPAddressInformation__Array * array, int32_t offset, MethodInfo * method)); DO_APP_FUNC(0x026341B0, int32_t, IPAddressInformationCollection_get_Count, (IPAddressInformationCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, IPAddressInformationCollection_get_IsReadOnly, (IPAddressInformationCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x02634230, void, IPAddressInformationCollection_Add, (IPAddressInformationCollection * __this, IPAddressInformation * address, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A800, IPAddressInformationCollection_Add__MethodInfo); DO_APP_FUNC(0x026342A0, void, IPAddressInformationCollection_InternalAdd, (IPAddressInformationCollection * __this, IPAddressInformation * address, MethodInfo * method)); DO_APP_FUNC(0x02634300, bool, IPAddressInformationCollection_Contains, (IPAddressInformationCollection * __this, IPAddressInformation * address, MethodInfo * method)); DO_APP_FUNC(0x02633E60, IEnumerator *, IPAddressInformationCollection_System_Collections_IEnumerable_GetEnumerator, (IPAddressInformationCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x02634390, IEnumerator_1_System_Net_NetworkInformation_IPAddressInformation_ *, IPAddressInformationCollection_GetEnumerator, (IPAddressInformationCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x02634410, IPAddressInformation *, IPAddressInformationCollection_get_Item, (IPAddressInformationCollection * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x026344A0, bool, IPAddressInformationCollection_Remove, (IPAddressInformationCollection * __this, IPAddressInformation * address, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A6B8, IPAddressInformationCollection_Remove__MethodInfo); DO_APP_FUNC(0x02634510, void, IPAddressInformationCollection_Clear, (IPAddressInformationCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A6B0, IPAddressInformationCollection_Clear__MethodInfo); DO_APP_FUNC(0x02634580, IPGlobalProperties *, IPGlobalProperties_GetIPGlobalProperties, (MethodInfo * method)); DO_APP_FUNC(0x02634580, IPGlobalProperties *, IPGlobalProperties_InternalGetIPGlobalProperties, (MethodInfo * method)); DO_APP_FUNC(0x026345D0, UnicastIPAddressInformationCollection *, IPGlobalProperties_GetUnicastAddresses, (IPGlobalProperties * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A6D8, IPGlobalProperties_GetUnicastAddresses__MethodInfo); DO_APP_FUNC(0x02634600, IAsyncResult *, IPGlobalProperties_BeginGetUnicastAddresses, (IPGlobalProperties * __this, AsyncCallback * callback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A6D0, IPGlobalProperties_BeginGetUnicastAddresses__MethodInfo); DO_APP_FUNC(0x02634630, UnicastIPAddressInformationCollection *, IPGlobalProperties_EndGetUnicastAddresses, (IPGlobalProperties * __this, IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A6C8, IPGlobalProperties_EndGetUnicastAddresses__MethodInfo); DO_APP_FUNC(0x02634660, Task_1_System_Net_NetworkInformation_UnicastIPAddressInformationCollection_ *, IPGlobalProperties_GetUnicastAddressesAsync, (IPGlobalProperties * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, IPGlobalProperties__ctor, (IPGlobalProperties * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, IPGlobalStatistics__ctor, (IPGlobalStatistics * __this, MethodInfo * method)); @@ -32198,6 +36690,7 @@ DO_APP_FUNC(0x003AE050, void, IPInterfaceStatistics__ctor, (IPInterfaceStatistic DO_APP_FUNC(0x003AE050, void, IPv4InterfaceStatistics__ctor, (IPv4InterfaceStatistics * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, IPv4InterfaceProperties__ctor, (IPv4InterfaceProperties * __this, MethodInfo * method)); DO_APP_FUNC(0x026347B0, int64_t, IPv6InterfaceProperties_GetScopeId, (IPv6InterfaceProperties * __this, ScopeLevel__Enum scopeLevel, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A698, IPv6InterfaceProperties_GetScopeId__MethodInfo); DO_APP_FUNC(0x003AE050, void, IPv6InterfaceProperties__ctor, (IPv6InterfaceProperties * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, IcmpV4Statistics__ctor, (IcmpV4Statistics * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, IcmpV6Statistics__ctor, (IcmpV6Statistics * __this, MethodInfo * method)); @@ -32207,16 +36700,20 @@ DO_APP_FUNC(0x026348D0, void, MulticastIPAddressInformationCollection_CopyTo, (M DO_APP_FUNC(0x02634940, int32_t, MulticastIPAddressInformationCollection_get_Count, (MulticastIPAddressInformationCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, MulticastIPAddressInformationCollection_get_IsReadOnly, (MulticastIPAddressInformationCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x026349C0, void, MulticastIPAddressInformationCollection_Add, (MulticastIPAddressInformationCollection * __this, MulticastIPAddressInformation * address, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A6F8, MulticastIPAddressInformationCollection_Add__MethodInfo); DO_APP_FUNC(0x02634A30, void, MulticastIPAddressInformationCollection_InternalAdd, (MulticastIPAddressInformationCollection * __this, MulticastIPAddressInformation * address, MethodInfo * method)); DO_APP_FUNC(0x02634A90, bool, MulticastIPAddressInformationCollection_Contains, (MulticastIPAddressInformationCollection * __this, MulticastIPAddressInformation * address, MethodInfo * method)); DO_APP_FUNC(0x02633E60, IEnumerator *, MulticastIPAddressInformationCollection_System_Collections_IEnumerable_GetEnumerator, (MulticastIPAddressInformationCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x02634B20, IEnumerator_1_System_Net_NetworkInformation_MulticastIPAddressInformation_ *, MulticastIPAddressInformationCollection_GetEnumerator, (MulticastIPAddressInformationCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x02634BA0, MulticastIPAddressInformation *, MulticastIPAddressInformationCollection_get_Item, (MulticastIPAddressInformationCollection * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x02634C30, bool, MulticastIPAddressInformationCollection_Remove, (MulticastIPAddressInformationCollection * __this, MulticastIPAddressInformation * address, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A5E8, MulticastIPAddressInformationCollection_Remove__MethodInfo); DO_APP_FUNC(0x02634CA0, void, MulticastIPAddressInformationCollection_Clear, (MulticastIPAddressInformationCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A5E0, MulticastIPAddressInformationCollection_Clear__MethodInfo); DO_APP_FUNC(0x02634D10, void, NetworkAvailabilityEventArgs__ctor, (NetworkAvailabilityEventArgs * __this, bool isAvailable, MethodInfo * method)); DO_APP_FUNC(0x003BCD20, bool, NetworkAvailabilityEventArgs_get_IsAvailable, (NetworkAvailabilityEventArgs * __this, MethodInfo * method)); DO_APP_FUNC(0x02634D70, void, NetworkAvailabilityEventArgs__ctor_1, (NetworkAvailabilityEventArgs * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A5C0, NetworkAvailabilityEventArgs__ctor_1__MethodInfo); DO_APP_FUNC(0x011139C0, void, NetworkAddressChangedEventHandler__ctor, (NetworkAddressChangedEventHandler * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EC2D0, void, NetworkAddressChangedEventHandler_Invoke, (NetworkAddressChangedEventHandler * __this, Object * sender, EventArgs * e, MethodInfo * method)); DO_APP_FUNC(0x0042F0F0, IAsyncResult *, NetworkAddressChangedEventHandler_BeginInvoke, (NetworkAddressChangedEventHandler * __this, Object * sender, EventArgs * e, AsyncCallback * callback, Object * object, MethodInfo * method)); @@ -32234,6 +36731,7 @@ DO_APP_FUNC(0x003BCD60, void, NetworkInformationPermissionAttribute__ctor, (Netw DO_APP_FUNC(0x003BB3D0, String *, NetworkInformationPermissionAttribute_get_Access, (NetworkInformationPermissionAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE960, void, NetworkInformationPermissionAttribute_set_Access, (NetworkInformationPermissionAttribute * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x02634E60, IPermission *, NetworkInformationPermissionAttribute_CreatePermission, (NetworkInformationPermissionAttribute * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A628, NetworkInformationPermissionAttribute_CreatePermission__MethodInfo); DO_APP_FUNC(0x02635210, void, NetworkInformationPermission__ctor, (NetworkInformationPermission * __this, PermissionState__Enum state, MethodInfo * method)); DO_APP_FUNC(0x02635230, void, NetworkInformationPermission__ctor_1, (NetworkInformationPermission * __this, bool unrestricted, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, NetworkInformationPermission__ctor_2, (NetworkInformationPermission * __this, NetworkInformationAccess__Enum access, MethodInfo * method)); @@ -32242,27 +36740,44 @@ DO_APP_FUNC(0x02635240, void, NetworkInformationPermission_AddPermission, (Netwo DO_APP_FUNC(0x003CD410, bool, NetworkInformationPermission_IsUnrestricted, (NetworkInformationPermission * __this, MethodInfo * method)); DO_APP_FUNC(0x02635250, IPermission *, NetworkInformationPermission_Copy, (NetworkInformationPermission * __this, MethodInfo * method)); DO_APP_FUNC(0x026352C0, IPermission *, NetworkInformationPermission_Union, (NetworkInformationPermission * __this, IPermission * target, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A600, NetworkInformationPermission_Union__MethodInfo); DO_APP_FUNC(0x026353F0, IPermission *, NetworkInformationPermission_Intersect, (NetworkInformationPermission * __this, IPermission * target, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A5F8, NetworkInformationPermission_Intersect__MethodInfo); DO_APP_FUNC(0x02635500, bool, NetworkInformationPermission_IsSubsetOf, (NetworkInformationPermission * __this, IPermission * target, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A608, NetworkInformationPermission_IsSubsetOf__MethodInfo); DO_APP_FUNC(0x02635600, void, NetworkInformationPermission_FromXml, (NetworkInformationPermission * __this, SecurityElement * securityElement, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A530, NetworkInformationPermission_FromXml__MethodInfo); DO_APP_FUNC(0x02635DD0, SecurityElement *, NetworkInformationPermission_ToXml, (NetworkInformationPermission * __this, MethodInfo * method)); DO_APP_FUNC(0x026360F0, NetworkInterface__Array *, NetworkInterface_GetAllNetworkInterfaces, (MethodInfo * method)); DO_APP_FUNC(0x02636140, bool, NetworkInterface_GetIsNetworkAvailable, (MethodInfo * method)); DO_APP_FUNC(0x02636190, int32_t, NetworkInterface_get_LoopbackInterfaceIndex, (MethodInfo * method)); DO_APP_FUNC(0x02636240, int32_t, NetworkInterface_get_IPv6LoopbackInterfaceIndex, (MethodInfo * method)); DO_APP_FUNC(0x02636280, String *, NetworkInterface_get_Id, (NetworkInterface * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A588, NetworkInterface_get_Id__MethodInfo); DO_APP_FUNC(0x026362D0, String *, NetworkInterface_get_Name, (NetworkInterface * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A580, NetworkInterface_get_Name__MethodInfo); DO_APP_FUNC(0x02636320, String *, NetworkInterface_get_Description, (NetworkInterface * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A5B8, NetworkInterface_get_Description__MethodInfo); DO_APP_FUNC(0x02636370, IPInterfaceProperties *, NetworkInterface_GetIPProperties, (NetworkInterface * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A5A8, NetworkInterface_GetIPProperties__MethodInfo); DO_APP_FUNC(0x026363C0, IPv4InterfaceStatistics *, NetworkInterface_GetIPv4Statistics, (NetworkInterface * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A5A0, NetworkInterface_GetIPv4Statistics__MethodInfo); DO_APP_FUNC(0x02636410, IPInterfaceStatistics *, NetworkInterface_GetIPStatistics, (NetworkInterface * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A598, NetworkInterface_GetIPStatistics__MethodInfo); DO_APP_FUNC(0x02636460, OperationalStatus__Enum, NetworkInterface_get_OperationalStatus, (NetworkInterface * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A560, NetworkInterface_get_OperationalStatus__MethodInfo); DO_APP_FUNC(0x026364B0, int64_t, NetworkInterface_get_Speed, (NetworkInterface * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A558, NetworkInterface_get_Speed__MethodInfo); DO_APP_FUNC(0x02636500, bool, NetworkInterface_get_IsReceiveOnly, (NetworkInterface * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A550, NetworkInterface_get_IsReceiveOnly__MethodInfo); DO_APP_FUNC(0x02636550, bool, NetworkInterface_get_SupportsMulticast, (NetworkInterface * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A548, NetworkInterface_get_SupportsMulticast__MethodInfo); DO_APP_FUNC(0x026365A0, PhysicalAddress *, NetworkInterface_GetPhysicalAddress, (NetworkInterface * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A578, NetworkInterface_GetPhysicalAddress__MethodInfo); DO_APP_FUNC(0x026365F0, NetworkInterfaceType__Enum, NetworkInterface_get_NetworkInterfaceType, (NetworkInterface * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A570, NetworkInterface_get_NetworkInterfaceType__MethodInfo); DO_APP_FUNC(0x02636640, bool, NetworkInterface_Supports, (NetworkInterface * __this, NetworkInterfaceComponent__Enum networkInterfaceComponent, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A568, NetworkInterface_Supports__MethodInfo); DO_APP_FUNC(0x003AE050, void, NetworkInterface__ctor, (NetworkInterface * __this, MethodInfo * method)); DO_APP_FUNC(0x01A52E60, void, PhysicalAddress__ctor, (PhysicalAddress * __this, Byte__Array * address, MethodInfo * method)); DO_APP_FUNC(0x02636690, int32_t, PhysicalAddress_GetHashCode, (PhysicalAddress * __this, MethodInfo * method)); @@ -32270,11 +36785,14 @@ DO_APP_FUNC(0x026367A0, bool, PhysicalAddress_Equals, (PhysicalAddress * __this, DO_APP_FUNC(0x02636880, String *, PhysicalAddress_ToString, (PhysicalAddress * __this, MethodInfo * method)); DO_APP_FUNC(0x026369C0, Byte__Array *, PhysicalAddress_GetAddressBytes, (PhysicalAddress * __this, MethodInfo * method)); DO_APP_FUNC(0x02636A50, PhysicalAddress *, PhysicalAddress_Parse, (String * address, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A4C8, PhysicalAddress_Parse__MethodInfo); DO_APP_FUNC(0x02636E50, void, PhysicalAddress__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02636F80, void, PingOptions__ctor, (PingOptions * __this, int32_t ttl, bool dontFragment, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FB08, PingOptions__ctor__MethodInfo); DO_APP_FUNC(0x02637000, void, PingOptions__ctor_1, (PingOptions * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD50, int32_t, PingOptions_get_Ttl, (PingOptions * __this, MethodInfo * method)); DO_APP_FUNC(0x02637010, void, PingOptions_set_Ttl, (PingOptions * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FA38, PingOptions_set_Ttl__MethodInfo); DO_APP_FUNC(0x003CD410, bool, PingOptions_get_DontFragment, (PingOptions * __this, MethodInfo * method)); DO_APP_FUNC(0x019BF330, void, PingOptions_set_DontFragment, (PingOptions * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, PingReply__ctor, (PingReply * __this, MethodInfo * method)); @@ -32314,19 +36832,23 @@ DO_APP_FUNC(0x003AE050, void, TcpConnectionInformation__ctor, (TcpConnectionInfo DO_APP_FUNC(0x003AE050, void, TcpStatistics__ctor, (TcpStatistics * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, UdpStatistics__ctor, (UdpStatistics * __this, MethodInfo * method)); DO_APP_FUNC(0x02637B70, int32_t, UnicastIPAddressInformation_get_PrefixLength, (UnicastIPAddressInformation * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FA90, UnicastIPAddressInformation_get_PrefixLength__MethodInfo); DO_APP_FUNC(0x003AE050, void, UnicastIPAddressInformation__ctor, (UnicastIPAddressInformation * __this, MethodInfo * method)); DO_APP_FUNC(0x02637BC0, void, UnicastIPAddressInformationCollection__ctor, (UnicastIPAddressInformationCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x02637C90, void, UnicastIPAddressInformationCollection_CopyTo, (UnicastIPAddressInformationCollection * __this, UnicastIPAddressInformation__Array * array, int32_t offset, MethodInfo * method)); DO_APP_FUNC(0x02637D00, int32_t, UnicastIPAddressInformationCollection_get_Count, (UnicastIPAddressInformationCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, UnicastIPAddressInformationCollection_get_IsReadOnly, (UnicastIPAddressInformationCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x02637D80, void, UnicastIPAddressInformationCollection_Add, (UnicastIPAddressInformationCollection * __this, UnicastIPAddressInformation * address, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FA50, UnicastIPAddressInformationCollection_Add__MethodInfo); DO_APP_FUNC(0x02637DF0, void, UnicastIPAddressInformationCollection_InternalAdd, (UnicastIPAddressInformationCollection * __this, UnicastIPAddressInformation * address, MethodInfo * method)); DO_APP_FUNC(0x02637E50, bool, UnicastIPAddressInformationCollection_Contains, (UnicastIPAddressInformationCollection * __this, UnicastIPAddressInformation * address, MethodInfo * method)); DO_APP_FUNC(0x02633E60, IEnumerator *, UnicastIPAddressInformationCollection_System_Collections_IEnumerable_GetEnumerator, (UnicastIPAddressInformationCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x02637EE0, IEnumerator_1_System_Net_NetworkInformation_UnicastIPAddressInformation_ *, UnicastIPAddressInformationCollection_GetEnumerator, (UnicastIPAddressInformationCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x02637F60, UnicastIPAddressInformation *, UnicastIPAddressInformationCollection_get_Item, (UnicastIPAddressInformationCollection * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x02637FF0, bool, UnicastIPAddressInformationCollection_Remove, (UnicastIPAddressInformationCollection * __this, UnicastIPAddressInformation * address, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F968, UnicastIPAddressInformationCollection_Remove__MethodInfo); DO_APP_FUNC(0x02638060, void, UnicastIPAddressInformationCollection_Clear, (UnicastIPAddressInformationCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F960, UnicastIPAddressInformationCollection_Clear__MethodInfo); DO_APP_FUNC(0x01B8BF70, void, PingException__ctor, (PingException * __this, MethodInfo * method)); DO_APP_FUNC(0x01980BF0, void, PingException__ctor_1, (PingException * __this, SerializationInfo * serializationInfo, StreamingContext streamingContext, MethodInfo * method)); DO_APP_FUNC(0x01B8BFC0, void, PingException__ctor_2, (PingException * __this, String * message, MethodInfo * method)); @@ -32337,18 +36859,20 @@ DO_APP_FUNC(0x026382B0, void, NetworkChange_remove_NetworkAddressChanged, (Netwo DO_APP_FUNC(0x02638490, void, NetworkChange_add_NetworkAvailabilityChanged, (NetworkAvailabilityChangedEventHandler * value, MethodInfo * method)); DO_APP_FUNC(0x02638670, void, NetworkChange_remove_NetworkAvailabilityChanged, (NetworkAvailabilityChangedEventHandler * value, MethodInfo * method)); DO_APP_FUNC(0x02638850, void, NetworkChange_MaybeCreate, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F9B8, NetworkChange_MaybeCreate__MethodInfo); DO_APP_FUNC(0x01B603B0, bool, NetworkChange_get_IsWindows, (MethodInfo * method)); DO_APP_FUNC(0x02638A10, void, NetworkChange_MaybeDispose, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NetworkChange__ctor, (NetworkChange * __this, MethodInfo * method)); DO_APP_FUNC(0x02638B20, void, NetworkChange_RegisterNetworkChange, (NetworkChange * nc, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F8E8, NetworkChange_RegisterNetworkChange__MethodInfo); DO_APP_FUNC(0x02638B50, void *, MacNetworkChange_dlopen, (String * path, int32_t mode, MethodInfo * method)); DO_APP_FUNC(0x02638BB0, void *, MacNetworkChange_dlsym, (void * handle, String * symbol, MethodInfo * method)); DO_APP_FUNC(0x02638C20, int32_t, MacNetworkChange_dlclose, (void * handle, MethodInfo * method)); DO_APP_FUNC(0x02638CA0, void, MacNetworkChange_CFRelease, (void * handle, MethodInfo * method)); DO_APP_FUNC(0x02638CD0, void *, MacNetworkChange_CFRunLoopGetMain, (MethodInfo * method)); -DO_APP_FUNC(0x02638D40, void *, MacNetworkChange_SCNetworkReachabilityCreateWithAddress, (void * allocator, MacNetworkChange_sockaddr_in sockaddr, MethodInfo * method)); -DO_APP_FUNC(0x02638DD0, bool, MacNetworkChange_SCNetworkReachabilityGetFlags, (void * reachability, MacNetworkChange_NetworkReachabilityFlags__Enum flags, MethodInfo * method)); -DO_APP_FUNC(0x02638E60, bool, MacNetworkChange_SCNetworkReachabilitySetCallback, (void * reachability, MacNetworkChange_SCNetworkReachabilityCallback * callback, MacNetworkChange_SCNetworkReachabilityContext context, MethodInfo * method)); +DO_APP_FUNC(0x02638D40, void *, MacNetworkChange_SCNetworkReachabilityCreateWithAddress, (void * allocator, MacNetworkChange_sockaddr_in * sockaddr, MethodInfo * method)); +DO_APP_FUNC(0x02638DD0, bool, MacNetworkChange_SCNetworkReachabilityGetFlags, (void * reachability, MacNetworkChange_NetworkReachabilityFlags__Enum * flags, MethodInfo * method)); +DO_APP_FUNC(0x02638E60, bool, MacNetworkChange_SCNetworkReachabilitySetCallback, (void * reachability, MacNetworkChange_SCNetworkReachabilityCallback * callback, MacNetworkChange_SCNetworkReachabilityContext * context, MethodInfo * method)); DO_APP_FUNC(0x02638F10, bool, MacNetworkChange_SCNetworkReachabilityScheduleWithRunLoop, (void * reachability, void * runLoop, void * runLoopMode, MethodInfo * method)); DO_APP_FUNC(0x02638FB0, bool, MacNetworkChange_SCNetworkReachabilityUnscheduleFromRunLoop, (void * reachability, void * runLoop, void * runLoopMode, MethodInfo * method)); DO_APP_FUNC(0x02639050, void, MacNetworkChange_add_networkAddressChanged, (MacNetworkChange * __this, NetworkAddressChangedEventHandler * value, MethodInfo * method)); @@ -32362,9 +36886,11 @@ DO_APP_FUNC(0x02639320, void, MacNetworkChange_remove_NetworkAvailabilityChanged DO_APP_FUNC(0x02639710, bool, MacNetworkChange_get_IsAvailable, (MacNetworkChange * __this, MethodInfo * method)); DO_APP_FUNC(0x02639730, bool, MacNetworkChange_get_HasRegisteredEvents, (MacNetworkChange * __this, MethodInfo * method)); DO_APP_FUNC(0x02639750, void, MacNetworkChange__ctor, (MacNetworkChange * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F818, MacNetworkChange__ctor__MethodInfo); DO_APP_FUNC(0x02639C30, bool, MacNetworkChange_LoadRunLoopMode, (MacNetworkChange * __this, MethodInfo * method)); DO_APP_FUNC(0x02639EA0, void, MacNetworkChange_Dispose, (MacNetworkChange * __this, MethodInfo * method)); DO_APP_FUNC(0x0263A1A0, void, MacNetworkChange_HandleCallback, (void * reachability, MacNetworkChange_NetworkReachabilityFlags__Enum flags, void * info, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F868, MacNetworkChange_HandleCallback__MethodInfo); DO_APP_FUNC(0x0263A390, void, MacNetworkChange_SCNetworkReachabilityCallback__ctor, (MacNetworkChange_SCNetworkReachabilityCallback * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EDBB0, void, MacNetworkChange_SCNetworkReachabilityCallback_Invoke, (MacNetworkChange_SCNetworkReachabilityCallback * __this, void * target, MacNetworkChange_NetworkReachabilityFlags__Enum flags, void * info, MethodInfo * method)); DO_APP_FUNC(0x0263A4C0, IAsyncResult *, MacNetworkChange_SCNetworkReachabilityCallback_BeginInvoke, (MacNetworkChange_SCNetworkReachabilityCallback * __this, void * target, MacNetworkChange_NetworkReachabilityFlags__Enum flags, void * info, AsyncCallback * callback, Object * object, MethodInfo * method)); @@ -32380,10 +36906,14 @@ DO_APP_FUNC(0x0263A7E0, bool, LinuxNetworkChange_EnsureSocket, (LinuxNetworkChan DO_APP_FUNC(0x0263A9A0, void, LinuxNetworkChange_MaybeCloseSocket, (LinuxNetworkChange * __this, MethodInfo * method)); DO_APP_FUNC(0x0263AA10, bool, LinuxNetworkChange_GetAvailability, (LinuxNetworkChange * __this, MethodInfo * method)); DO_APP_FUNC(0x0263AAF0, void, LinuxNetworkChange_OnAvailabilityChanged, (LinuxNetworkChange * __this, Object * unused, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F798, LinuxNetworkChange_OnAvailabilityChanged__MethodInfo); DO_APP_FUNC(0x0263AC70, void, LinuxNetworkChange_OnAddressChanged, (LinuxNetworkChange * __this, Object * unused, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F7A8, LinuxNetworkChange_OnAddressChanged__MethodInfo); DO_APP_FUNC(0x0263ACF0, void, LinuxNetworkChange_OnEventDue, (LinuxNetworkChange * __this, Object * unused, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F7C0, LinuxNetworkChange_OnEventDue__MethodInfo); DO_APP_FUNC(0x0263AFE0, void, LinuxNetworkChange_QueueEvent, (LinuxNetworkChange * __this, LinuxNetworkChange_EventType__Enum type, MethodInfo * method)); DO_APP_FUNC(0x0263B320, void, LinuxNetworkChange_OnDataAvailable, (LinuxNetworkChange * __this, Object * sender, SocketAsyncEventArgs * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F8B0, LinuxNetworkChange_OnDataAvailable__MethodInfo); DO_APP_FUNC(0x0263A5A0, void, LinuxNetworkChange_Register, (LinuxNetworkChange * __this, NetworkAddressChangedEventHandler * d, MethodInfo * method)); DO_APP_FUNC(0x0263A6B0, void, LinuxNetworkChange_Register_1, (LinuxNetworkChange * __this, NetworkAvailabilityChangedEventHandler * d, MethodInfo * method)); DO_APP_FUNC(0x0263B400, void, LinuxNetworkChange_Unregister, (LinuxNetworkChange * __this, NetworkAddressChangedEventHandler * d, MethodInfo * method)); @@ -32396,16 +36926,18 @@ DO_APP_FUNC(0x0263B900, NetworkInterface__Array *, SystemNetworkInterface_GetNet DO_APP_FUNC(0x0041AEF0, bool, SystemNetworkInterface_InternalGetIsNetworkAvailable, (MethodInfo * method)); DO_APP_FUNC(0x0263B990, int32_t, SystemNetworkInterface_get_InternalLoopbackInterfaceIndex, (MethodInfo * method)); DO_APP_FUNC(0x0263BA10, int32_t, SystemNetworkInterface_get_InternalIPv6LoopbackInterfaceIndex, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F7D0, SystemNetworkInterface_get_InternalIPv6LoopbackInterfaceIndex__MethodInfo); DO_APP_FUNC(0x0263BA60, IPAddress *, SystemNetworkInterface_GetNetMask, (IPAddress * address, MethodInfo * method)); DO_APP_FUNC(0x0263BAE0, void, SystemNetworkInterface__cctor, (MethodInfo * method)); DO_APP_FUNC(0x0263BC70, NetworkInterfaceFactory *, NetworkInterfaceFactory_Create, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NetworkInterfaceFactory__ctor, (NetworkInterfaceFactory * __this, MethodInfo * method)); DO_APP_FUNC(0x0263BC70, NetworkInterfaceFactory *, NetworkInterfaceFactoryPal_Create, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F7D8, NetworkInterfaceFactoryPal_Create__MethodInfo); DO_APP_FUNC(0x0263BD80, void, Ping_add_PingCompleted, (Ping * __this, PingCompletedEventHandler * value, MethodInfo * method)); DO_APP_FUNC(0x0263BE70, void, Ping_remove_PingCompleted, (Ping * __this, PingCompletedEventHandler * value, MethodInfo * method)); DO_APP_FUNC(0x0263BF60, void, Ping__cctor, (MethodInfo * method)); DO_APP_FUNC(0x0263C3F0, void, Ping__ctor, (Ping * __this, MethodInfo * method)); -DO_APP_FUNC(0x0263C4F0, int32_t, Ping_capget, (Ping_cap_user_header_t header, Ping_cap_user_data_t data, MethodInfo * method)); +DO_APP_FUNC(0x0263C4F0, int32_t, Ping_capget, (Ping_cap_user_header_t * header, Ping_cap_user_data_t * data, MethodInfo * method)); DO_APP_FUNC(0x0263C580, void, Ping_CheckLinuxCapabilities, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Ping_System_IDisposable_Dispose, (Ping * __this, MethodInfo * method)); DO_APP_FUNC(0x0263C6D0, void, Ping_OnPingCompleted, (Ping * __this, PingCompletedEventArgs * e, MethodInfo * method)); @@ -32417,7 +36949,9 @@ DO_APP_FUNC(0x0263CED0, PingReply *, Ping_Send_4, (Ping * __this, String * hostN DO_APP_FUNC(0x0263D010, PingReply *, Ping_Send_5, (Ping * __this, String * hostNameOrAddress, int32_t timeout, Byte__Array * buffer, MethodInfo * method)); DO_APP_FUNC(0x0263D110, PingReply *, Ping_Send_6, (Ping * __this, String * hostNameOrAddress, int32_t timeout, Byte__Array * buffer, PingOptions * options, MethodInfo * method)); DO_APP_FUNC(0x0263D1C0, PingReply *, Ping_Send_7, (Ping * __this, IPAddress * address, int32_t timeout, Byte__Array * buffer, PingOptions * options, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F5B0, Ping_Send_7__MethodInfo); DO_APP_FUNC(0x0263D3F0, PingReply *, Ping_SendPrivileged, (Ping * __this, IPAddress * address, int32_t timeout, Byte__Array * buffer, PingOptions * options, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F5B8, Ping_SendPrivileged__MethodInfo); DO_APP_FUNC(0x0263DF10, PingReply *, Ping_SendUnprivileged, (Ping * __this, IPAddress * address, int32_t timeout, Byte__Array * buffer, PingOptions * options, MethodInfo * method)); DO_APP_FUNC(0x0263E660, void, Ping_SendAsync, (Ping * __this, IPAddress * address, int32_t timeout, Byte__Array * buffer, Object * userToken, MethodInfo * method)); DO_APP_FUNC(0x0263E730, void, Ping_SendAsync_1, (Ping * __this, IPAddress * address, int32_t timeout, Object * userToken, MethodInfo * method)); @@ -32427,7 +36961,9 @@ DO_APP_FUNC(0x0263EA60, void, Ping_SendAsync_4, (Ping * __this, String * hostNam DO_APP_FUNC(0x0263EB20, void, Ping_SendAsync_5, (Ping * __this, String * hostNameOrAddress, int32_t timeout, Object * userToken, MethodInfo * method)); DO_APP_FUNC(0x0263EC70, void, Ping_SendAsync_6, (Ping * __this, String * hostNameOrAddress, Object * userToken, MethodInfo * method)); DO_APP_FUNC(0x0263EDD0, void, Ping_SendAsync_7, (Ping * __this, IPAddress * address, int32_t timeout, Byte__Array * buffer, PingOptions * options, Object * userToken, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F500, Ping_SendAsync_7__MethodInfo); DO_APP_FUNC(0x0263F180, void, Ping_SendAsyncCancel, (Ping * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F568, Ping_SendAsyncCancel__MethodInfo); DO_APP_FUNC(0x0263F260, String *, Ping_BuildPingArgs, (Ping * __this, IPAddress * address, int32_t timeout, PingOptions * options, MethodInfo * method)); DO_APP_FUNC(0x0263F530, Task_1_System_Net_NetworkInformation_PingReply_ *, Ping_SendPingAsync, (Ping * __this, IPAddress * address, int32_t timeout, Byte__Array * buffer, MethodInfo * method)); DO_APP_FUNC(0x0263F600, Task_1_System_Net_NetworkInformation_PingReply_ *, Ping_SendPingAsync_1, (Ping * __this, IPAddress * address, int32_t timeout, MethodInfo * method)); @@ -32437,6 +36973,7 @@ DO_APP_FUNC(0x0263F810, Task_1_System_Net_NetworkInformation_PingReply_ *, Ping_ DO_APP_FUNC(0x0263F8C0, Task_1_System_Net_NetworkInformation_PingReply_ *, Ping_SendPingAsync_5, (Ping * __this, String * hostNameOrAddress, int32_t timeout, MethodInfo * method)); DO_APP_FUNC(0x0263FA10, Task_1_System_Net_NetworkInformation_PingReply_ *, Ping_SendPingAsync_6, (Ping * __this, String * hostNameOrAddress, MethodInfo * method)); DO_APP_FUNC(0x0263FB50, Task_1_System_Net_NetworkInformation_PingReply_ *, Ping_SendPingAsync_7, (Ping * __this, IPAddress * address, int32_t timeout, Byte__Array * buffer, PingOptions * options, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F4E0, Ping_SendPingAsync_7__MethodInfo); DO_APP_FUNC(0x02640060, void, Ping_IcmpMessage__ctor, (Ping_IcmpMessage * __this, Byte__Array * bytes, int32_t offset, int32_t size, MethodInfo * method)); DO_APP_FUNC(0x02640140, void, Ping_IcmpMessage__ctor_1, (Ping_IcmpMessage * __this, uint8_t type, uint8_t code, uint16_t identifier, uint16_t sequence, Byte__Array * data, MethodInfo * method)); DO_APP_FUNC(0x02640380, uint8_t, Ping_IcmpMessage_get_Type, (Ping_IcmpMessage * __this, MethodInfo * method)); @@ -32449,13 +36986,18 @@ DO_APP_FUNC(0x026404C0, uint16_t, Ping_IcmpMessage_ComputeChecksum, (Byte__Array DO_APP_FUNC(0x02640540, IPStatus__Enum, Ping_IcmpMessage_get_IPStatus, (Ping_IcmpMessage * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Ping_c_DisplayClass39_0__ctor, (Ping_c_DisplayClass39_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x02640680, void, Ping_c_DisplayClass39_0__SendAsync_b__0, (Ping_c_DisplayClass39_0 * __this, Object * o, DoWorkEventArgs * ea, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F548, Ping_c_DisplayClass39_0__SendAsync_b__0__MethodInfo); DO_APP_FUNC(0x026407D0, void, Ping_c_DisplayClass39_0__SendAsync_b__1, (Ping_c_DisplayClass39_0 * __this, Object * o, RunWorkerCompletedEventArgs * ea, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F540, Ping_c_DisplayClass39_0__SendAsync_b__1__MethodInfo); DO_APP_FUNC(0x003AE050, void, Ping_c_DisplayClass50_0__ctor, (Ping_c_DisplayClass50_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x02640950, PingReply *, Ping_c_DisplayClass50_0__SendPingAsync_b__0, (Ping_c_DisplayClass50_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F498, Ping_c_DisplayClass50_0__SendPingAsync_b__0__MethodInfo); DO_APP_FUNC(0x02640990, void, Ping_c_DisplayClass50_0__SendPingAsync_b__1, (Ping_c_DisplayClass50_0 * __this, Task_1_System_Net_NetworkInformation_PingReply_ * t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F490, Ping_c_DisplayClass50_0__SendPingAsync_b__1__MethodInfo); DO_APP_FUNC(0x02640C60, void, PingCompletedEventArgs__ctor, (PingCompletedEventArgs * __this, Exception * ex, bool cancelled, Object * userState, PingReply * reply, MethodInfo * method)); DO_APP_FUNC(0x003BB3B0, PingReply *, PingCompletedEventArgs_get_Reply, (PingCompletedEventArgs * __this, MethodInfo * method)); DO_APP_FUNC(0x02640CD0, void, PingCompletedEventArgs__ctor_1, (PingCompletedEventArgs * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F3F8, PingCompletedEventArgs__ctor_1__MethodInfo); DO_APP_FUNC(0x0103E630, void, PingCompletedEventHandler__ctor, (PingCompletedEventHandler * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EC2D0, void, PingCompletedEventHandler_Invoke, (PingCompletedEventHandler * __this, Object * sender, PingCompletedEventArgs * e, MethodInfo * method)); DO_APP_FUNC(0x0042F0F0, IAsyncResult *, PingCompletedEventHandler_BeginInvoke, (PingCompletedEventHandler * __this, Object * sender, PingCompletedEventArgs * e, AsyncCallback * callback, Object * object, MethodInfo * method)); @@ -32469,33 +37011,41 @@ DO_APP_FUNC(0x026413C0, Win32IPAddressCollection *, Win32IPAddressCollection_Fro DO_APP_FUNC(0x02641490, Win32IPAddressCollection *, Win32IPAddressCollection_FromWinsServer, (void * ptr, MethodInfo * method)); DO_APP_FUNC(0x026416C0, void, Win32IPAddressCollection_AddSubsequentlyString, (Win32IPAddressCollection * __this, void * head, MethodInfo * method)); DO_APP_FUNC(0x026419C0, void, Win32IPAddressCollection__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02641B20, void, Win32IPGlobalProperties_FillTcpTable, (Win32IPGlobalProperties * __this, List_1_System_Net_NetworkInformation_Win32IPGlobalProperties_Win32_MIB_TCPROW_ * tab4, List_1_System_Net_NetworkInformation_Win32IPGlobalProperties_Win32_MIB_TCP6ROW_ * tab6, MethodInfo * method)); +DO_APP_FUNC(0x02641B20, void, Win32IPGlobalProperties_FillTcpTable, (Win32IPGlobalProperties * __this, List_1_System_Net_NetworkInformation_Win32IPGlobalProperties_Win32_MIB_TCPROW_ * * tab4, List_1_System_Net_NetworkInformation_Win32IPGlobalProperties_Win32_MIB_TCP6ROW_ * * tab6, MethodInfo * method)); DO_APP_FUNC(0x026422C0, bool, Win32IPGlobalProperties_IsListenerState, (Win32IPGlobalProperties * __this, TcpState__Enum state, MethodInfo * method)); DO_APP_FUNC(0x026422E0, TcpConnectionInformation__Array *, Win32IPGlobalProperties_GetActiveTcpConnections, (Win32IPGlobalProperties * __this, MethodInfo * method)); DO_APP_FUNC(0x02642860, IPEndPoint__Array *, Win32IPGlobalProperties_GetActiveTcpListeners, (Win32IPGlobalProperties * __this, MethodInfo * method)); DO_APP_FUNC(0x02642AC0, IPEndPoint__Array *, Win32IPGlobalProperties_GetActiveUdpListeners, (Win32IPGlobalProperties * __this, MethodInfo * method)); DO_APP_FUNC(0x02643310, IcmpV4Statistics *, Win32IPGlobalProperties_GetIcmpV4Statistics, (Win32IPGlobalProperties * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F278, Win32IPGlobalProperties_GetIcmpV4Statistics__MethodInfo); DO_APP_FUNC(0x02643550, IcmpV6Statistics *, Win32IPGlobalProperties_GetIcmpV6Statistics, (Win32IPGlobalProperties * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F288, Win32IPGlobalProperties_GetIcmpV6Statistics__MethodInfo); DO_APP_FUNC(0x02643750, IPGlobalStatistics *, Win32IPGlobalProperties_GetIPv4GlobalStatistics, (Win32IPGlobalProperties * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F258, Win32IPGlobalProperties_GetIPv4GlobalStatistics__MethodInfo); DO_APP_FUNC(0x02643970, IPGlobalStatistics *, Win32IPGlobalProperties_GetIPv6GlobalStatistics, (Win32IPGlobalProperties * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F250, Win32IPGlobalProperties_GetIPv6GlobalStatistics__MethodInfo); DO_APP_FUNC(0x02643B90, TcpStatistics *, Win32IPGlobalProperties_GetTcpIPv4Statistics, (Win32IPGlobalProperties * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F260, Win32IPGlobalProperties_GetTcpIPv4Statistics__MethodInfo); DO_APP_FUNC(0x02643DC0, TcpStatistics *, Win32IPGlobalProperties_GetTcpIPv6Statistics, (Win32IPGlobalProperties * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F298, Win32IPGlobalProperties_GetTcpIPv6Statistics__MethodInfo); DO_APP_FUNC(0x02643FF0, UdpStatistics *, Win32IPGlobalProperties_GetUdpIPv4Statistics, (Win32IPGlobalProperties * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F2A8, Win32IPGlobalProperties_GetUdpIPv4Statistics__MethodInfo); DO_APP_FUNC(0x026441B0, UdpStatistics *, Win32IPGlobalProperties_GetUdpIPv6Statistics, (Win32IPGlobalProperties * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F290, Win32IPGlobalProperties_GetUdpIPv6Statistics__MethodInfo); DO_APP_FUNC(0x02644370, String *, Win32IPGlobalProperties_get_DhcpScopeName, (Win32IPGlobalProperties * __this, MethodInfo * method)); DO_APP_FUNC(0x02644390, String *, Win32IPGlobalProperties_get_DomainName, (Win32IPGlobalProperties * __this, MethodInfo * method)); DO_APP_FUNC(0x026443B0, String *, Win32IPGlobalProperties_get_HostName, (Win32IPGlobalProperties * __this, MethodInfo * method)); DO_APP_FUNC(0x026443D0, bool, Win32IPGlobalProperties_get_IsWinsProxy, (Win32IPGlobalProperties * __this, MethodInfo * method)); DO_APP_FUNC(0x02644400, NetBiosNodeType__Enum, Win32IPGlobalProperties_get_NodeType, (Win32IPGlobalProperties * __this, MethodInfo * method)); -DO_APP_FUNC(0x02644420, int32_t, Win32IPGlobalProperties_GetTcpTable, (Byte__Array * pTcpTable, int32_t pdwSize, bool bOrder, MethodInfo * method)); -DO_APP_FUNC(0x026444D0, int32_t, Win32IPGlobalProperties_GetTcp6Table, (Byte__Array * TcpTable, int32_t SizePointer, bool Order, MethodInfo * method)); -DO_APP_FUNC(0x02644580, int32_t, Win32IPGlobalProperties_GetUdpTable, (Byte__Array * pUdpTable, int32_t pdwSize, bool bOrder, MethodInfo * method)); -DO_APP_FUNC(0x02644630, int32_t, Win32IPGlobalProperties_GetUdp6Table, (Byte__Array * Udp6Table, int32_t SizePointer, bool Order, MethodInfo * method)); -DO_APP_FUNC(0x026446E0, int32_t, Win32IPGlobalProperties_GetTcpStatisticsEx, (Win32_MIB_TCPSTATS pStats, int32_t dwFamily, MethodInfo * method)); -DO_APP_FUNC(0x02644770, int32_t, Win32IPGlobalProperties_GetUdpStatisticsEx, (Win32_MIB_UDPSTATS pStats, int32_t dwFamily, MethodInfo * method)); -DO_APP_FUNC(0x02644800, int32_t, Win32IPGlobalProperties_GetIcmpStatistics, (Win32_MIBICMPINFO pStats, int32_t dwFamily, MethodInfo * method)); -DO_APP_FUNC(0x02644890, int32_t, Win32IPGlobalProperties_GetIcmpStatisticsEx, (Win32_MIB_ICMP_EX pStats, int32_t dwFamily, MethodInfo * method)); -DO_APP_FUNC(0x02644AA0, int32_t, Win32IPGlobalProperties_GetIpStatisticsEx, (Win32_MIB_IPSTATS pStats, int32_t dwFamily, MethodInfo * method)); +DO_APP_FUNC(0x02644420, int32_t, Win32IPGlobalProperties_GetTcpTable, (Byte__Array * pTcpTable, int32_t * pdwSize, bool bOrder, MethodInfo * method)); +DO_APP_FUNC(0x026444D0, int32_t, Win32IPGlobalProperties_GetTcp6Table, (Byte__Array * TcpTable, int32_t * SizePointer, bool Order, MethodInfo * method)); +DO_APP_FUNC(0x02644580, int32_t, Win32IPGlobalProperties_GetUdpTable, (Byte__Array * pUdpTable, int32_t * pdwSize, bool bOrder, MethodInfo * method)); +DO_APP_FUNC(0x02644630, int32_t, Win32IPGlobalProperties_GetUdp6Table, (Byte__Array * Udp6Table, int32_t * SizePointer, bool Order, MethodInfo * method)); +DO_APP_FUNC(0x026446E0, int32_t, Win32IPGlobalProperties_GetTcpStatisticsEx, (Win32_MIB_TCPSTATS * pStats, int32_t dwFamily, MethodInfo * method)); +DO_APP_FUNC(0x02644770, int32_t, Win32IPGlobalProperties_GetUdpStatisticsEx, (Win32_MIB_UDPSTATS * pStats, int32_t dwFamily, MethodInfo * method)); +DO_APP_FUNC(0x02644800, int32_t, Win32IPGlobalProperties_GetIcmpStatistics, (Win32_MIBICMPINFO * pStats, int32_t dwFamily, MethodInfo * method)); +DO_APP_FUNC(0x02644890, int32_t, Win32IPGlobalProperties_GetIcmpStatisticsEx, (Win32_MIB_ICMP_EX * pStats, int32_t dwFamily, MethodInfo * method)); +DO_APP_FUNC(0x02644AA0, int32_t, Win32IPGlobalProperties_GetIpStatisticsEx, (Win32_MIB_IPSTATS * pStats, int32_t dwFamily, MethodInfo * method)); DO_APP_FUNC(0x02644B30, uint16_t, Win32IPGlobalProperties_ntohs, (uint16_t netshort, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Win32IPGlobalProperties__ctor, (Win32IPGlobalProperties * __this, MethodInfo * method)); DO_APP_FUNC(0x02644BB0, IPEndPoint *, Win32IPGlobalProperties_Win32_MIB_TCPROW_get_LocalEndPoint, (Win32IPGlobalProperties_Win32_MIB_TCPROW * __this, MethodInfo * method)); @@ -32550,8 +37100,9 @@ DO_APP_FUNC(0x026462C0, MulticastIPAddressInformationCollection *, Win32IPInterf DO_APP_FUNC(0x02646640, UnicastIPAddressInformationCollection *, Win32IPInterfaceProperties2_get_UnicastAddresses, (Win32IPInterfaceProperties2 * __this, MethodInfo * method)); DO_APP_FUNC(0x02646690, UnicastIPAddressInformationCollection *, Win32IPInterfaceProperties2_Win32FromUnicast, (void * ptr, MethodInfo * method)); DO_APP_FUNC(0x02646970, IPAddressCollection *, Win32IPInterfaceProperties2_get_WinsServersAddresses, (Win32IPInterfaceProperties2 * __this, MethodInfo * method)); -DO_APP_FUNC(0x02646A00, int32_t, Win32IPv4InterfaceProperties_GetPerAdapterInfo, (int32_t IfIndex, Win32_IP_PER_ADAPTER_INFO * pPerAdapterInfo, int32_t pOutBufLen, MethodInfo * method)); +DO_APP_FUNC(0x02646A00, int32_t, Win32IPv4InterfaceProperties_GetPerAdapterInfo, (int32_t IfIndex, Win32_IP_PER_ADAPTER_INFO * pPerAdapterInfo, int32_t * pOutBufLen, MethodInfo * method)); DO_APP_FUNC(0x02646B20, void, Win32IPv4InterfaceProperties__ctor, (Win32IPv4InterfaceProperties * __this, Win32_IP_ADAPTER_ADDRESSES addr, Win32_MIB_IFROW mib, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F180, Win32IPv4InterfaceProperties__ctor__MethodInfo); DO_APP_FUNC(0x01D17170, int32_t, Win32IPv4InterfaceProperties_get_Index, (Win32IPv4InterfaceProperties * __this, MethodInfo * method)); DO_APP_FUNC(0x02646E50, bool, Win32IPv4InterfaceProperties_get_IsAutomaticPrivateAddressingActive, (Win32IPv4InterfaceProperties * __this, MethodInfo * method)); DO_APP_FUNC(0x02646E80, bool, Win32IPv4InterfaceProperties_get_IsAutomaticPrivateAddressingEnabled, (Win32IPv4InterfaceProperties * __this, MethodInfo * method)); @@ -32637,17 +37188,21 @@ DO_APP_FUNC(0x02647600, int64_t, Win32IcmpV6Statistics_get_RouterSolicitsReceive DO_APP_FUNC(0x02647630, int64_t, Win32IcmpV6Statistics_get_RouterSolicitsSent, (Win32IcmpV6Statistics * __this, MethodInfo * method)); DO_APP_FUNC(0x02647660, int64_t, Win32IcmpV6Statistics_get_TimeExceededMessagesReceived, (Win32IcmpV6Statistics * __this, MethodInfo * method)); DO_APP_FUNC(0x02647690, int64_t, Win32IcmpV6Statistics_get_TimeExceededMessagesSent, (Win32IcmpV6Statistics * __this, MethodInfo * method)); -DO_APP_FUNC(0x026476C0, int32_t, Win32NetworkInterfaceAPI_GetAdaptersAddresses, (uint32_t family, uint32_t flags, void * reserved, void * info, int32_t size, MethodInfo * method)); -DO_APP_FUNC(0x02647780, uint32_t, Win32NetworkInterfaceAPI_GetBestInterfaceEx, (Byte__Array * ipAddress, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x026476C0, int32_t, Win32NetworkInterfaceAPI_GetAdaptersAddresses, (uint32_t family, uint32_t flags, void * reserved, void * info, int32_t * size, MethodInfo * method)); +DO_APP_FUNC(0x02647780, uint32_t, Win32NetworkInterfaceAPI_GetBestInterfaceEx, (Byte__Array * ipAddress, int32_t * index, MethodInfo * method)); DO_APP_FUNC(0x02647820, Win32_IP_ADAPTER_ADDRESSES__Array *, Win32NetworkInterfaceAPI_GetAdaptersAddresses_1, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F198, Win32NetworkInterfaceAPI_GetAdaptersAddresses_1__MethodInfo); DO_APP_FUNC(0x02647FD0, NetworkInterface__Array *, Win32NetworkInterfaceAPI_GetAllNetworkInterfaces, (Win32NetworkInterfaceAPI * __this, MethodInfo * method)); DO_APP_FUNC(0x02648260, int32_t, Win32NetworkInterfaceAPI_GetBestInterfaceForAddress, (IPAddress * addr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F140, Win32NetworkInterfaceAPI_GetBestInterfaceForAddress__MethodInfo); DO_APP_FUNC(0x026483A0, int32_t, Win32NetworkInterfaceAPI_GetLoopbackInterfaceIndex, (Win32NetworkInterfaceAPI * __this, MethodInfo * method)); DO_APP_FUNC(0x02648530, IPAddress *, Win32NetworkInterfaceAPI_GetNetMask, (Win32NetworkInterfaceAPI * __this, IPAddress * address, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F148, Win32NetworkInterfaceAPI_GetNetMask__MethodInfo); DO_APP_FUNC(0x003AE050, void, Win32NetworkInterfaceAPI__ctor, (Win32NetworkInterfaceAPI * __this, MethodInfo * method)); -DO_APP_FUNC(0x02648580, int32_t, Win32NetworkInterface2_GetAdaptersInfo, (void * info, int32_t size, MethodInfo * method)); -DO_APP_FUNC(0x02648610, int32_t, Win32NetworkInterface2_GetIfEntry, (Win32_MIB_IFROW row, MethodInfo * method)); +DO_APP_FUNC(0x02648580, int32_t, Win32NetworkInterface2_GetAdaptersInfo, (void * info, int32_t * size, MethodInfo * method)); +DO_APP_FUNC(0x02648610, int32_t, Win32NetworkInterface2_GetIfEntry, (Win32_MIB_IFROW * row, MethodInfo * method)); DO_APP_FUNC(0x02648780, Win32_IP_ADAPTER_INFO__Array *, Win32NetworkInterface2_GetAdaptersInfo_1, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F170, Win32NetworkInterface2_GetAdaptersInfo_1__MethodInfo); DO_APP_FUNC(0x02648E80, void, Win32NetworkInterface2__ctor, (Win32NetworkInterface2 * __this, Win32_IP_ADAPTER_ADDRESSES addr, MethodInfo * method)); DO_APP_FUNC(0x018BC790, IPInterfaceProperties *, Win32NetworkInterface2_GetIPProperties, (Win32NetworkInterface2 * __this, MethodInfo * method)); DO_APP_FUNC(0x018BC720, IPv4InterfaceStatistics *, Win32NetworkInterface2_GetIPv4Statistics, (Win32NetworkInterface2 * __this, MethodInfo * method)); @@ -32662,16 +37217,16 @@ DO_APP_FUNC(0x00A863A0, OperationalStatus__Enum, Win32NetworkInterface2_get_Oper DO_APP_FUNC(0x02649760, int64_t, Win32NetworkInterface2_get_Speed, (Win32NetworkInterface2 * __this, MethodInfo * method)); DO_APP_FUNC(0x02649780, bool, Win32NetworkInterface2_get_SupportsMulticast, (Win32NetworkInterface2 * __this, MethodInfo * method)); DO_APP_FUNC(0x02649790, NetworkInterfaceFactory *, Win32NetworkInterfaceFactoryPal_Create, (MethodInfo * method)); -DO_APP_FUNC(0x02649850, int32_t, Win32NetworkInterface_GetNetworkParams, (void * ptr, int32_t size, MethodInfo * method)); +DO_APP_FUNC(0x02649850, int32_t, Win32NetworkInterface_GetNetworkParams, (void * ptr, int32_t * size, MethodInfo * method)); DO_APP_FUNC(0x026498E0, Win32_FIXED_INFO, Win32NetworkInterface_get_FixedInfo, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Win32NetworkInterface__ctor, (Win32NetworkInterface * __this, MethodInfo * method)); -DO_APP_FUNC(0x02649CA0, bool, Win32_IP_ADAPTER_ADDRESSES_get_DdnsEnabled, (Win32_IP_ADAPTER_ADDRESSES__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02649CB0, bool, Win32_IP_ADAPTER_ADDRESSES_get_DhcpEnabled, (Win32_IP_ADAPTER_ADDRESSES__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02649CC0, bool, Win32_IP_ADAPTER_ADDRESSES_get_IsReceiveOnly, (Win32_IP_ADAPTER_ADDRESSES__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02649CD0, bool, Win32_IP_ADAPTER_ADDRESSES_get_NoMulticast, (Win32_IP_ADAPTER_ADDRESSES__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02649CE0, bool, Win32LengthFlagsUnion_get_IsDnsEligible, (Win32LengthFlagsUnion__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02649CF0, bool, Win32LengthFlagsUnion_get_IsTransient, (Win32LengthFlagsUnion__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02649D00, IPAddress *, Win32_SOCKET_ADDRESS_GetIPAddress, (Win32_SOCKET_ADDRESS__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02649CA0, bool, Win32_IP_ADAPTER_ADDRESSES_get_DdnsEnabled, (Win32_IP_ADAPTER_ADDRESSES * __this, MethodInfo * method)); +DO_APP_FUNC(0x02649CB0, bool, Win32_IP_ADAPTER_ADDRESSES_get_DhcpEnabled, (Win32_IP_ADAPTER_ADDRESSES * __this, MethodInfo * method)); +DO_APP_FUNC(0x02649CC0, bool, Win32_IP_ADAPTER_ADDRESSES_get_IsReceiveOnly, (Win32_IP_ADAPTER_ADDRESSES * __this, MethodInfo * method)); +DO_APP_FUNC(0x02649CD0, bool, Win32_IP_ADAPTER_ADDRESSES_get_NoMulticast, (Win32_IP_ADAPTER_ADDRESSES * __this, MethodInfo * method)); +DO_APP_FUNC(0x02649CE0, bool, Win32LengthFlagsUnion_get_IsDnsEligible, (Win32LengthFlagsUnion * __this, MethodInfo * method)); +DO_APP_FUNC(0x02649CF0, bool, Win32LengthFlagsUnion_get_IsTransient, (Win32LengthFlagsUnion * __this, MethodInfo * method)); +DO_APP_FUNC(0x02649D00, IPAddress *, Win32_SOCKET_ADDRESS_GetIPAddress, (Win32_SOCKET_ADDRESS * __this, MethodInfo * method)); DO_APP_FUNC(0x02649F20, void, Win32TcpStatistics__ctor, (Win32TcpStatistics * __this, Win32_MIB_TCPSTATS info, MethodInfo * method)); DO_APP_FUNC(0x003CD280, int64_t, Win32TcpStatistics_get_ConnectionsAccepted, (Win32TcpStatistics * __this, MethodInfo * method)); DO_APP_FUNC(0x003CC980, int64_t, Win32TcpStatistics_get_ConnectionsInitiated, (Win32TcpStatistics * __this, MethodInfo * method)); @@ -32763,11 +37318,14 @@ DO_APP_FUNC(0x0042F6D0, void, RequestCacheEntry_set_SystemMetadata, (RequestCach DO_APP_FUNC(0x0264A9F0, String *, RequestCacheEntry_ToString, (RequestCacheEntry * __this, bool verbose, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, RequestCacheManager__ctor, (RequestCacheManager * __this, MethodInfo * method)); DO_APP_FUNC(0x0264B790, RequestCacheBinding *, RequestCacheManager_GetBinding, (String * internedScheme, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F0C8, RequestCacheManager_GetBinding__MethodInfo); DO_APP_FUNC(0x0264BA10, bool, RequestCacheManager_get_IsCachingEnabled, (MethodInfo * method)); DO_APP_FUNC(0x0264BAD0, void, RequestCacheManager_SetBinding, (String * uriScheme, RequestCacheBinding * binding, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F0D8, RequestCacheManager_SetBinding__MethodInfo); DO_APP_FUNC(0x0264BE00, void, RequestCacheManager_LoadConfigSettings, (MethodInfo * method)); DO_APP_FUNC(0x0264C060, void, RequestCacheManager__cctor, (MethodInfo * method)); DO_APP_FUNC(0x0264C180, Object *, RequestCacheValidator_CreateValidator, (RequestCacheValidator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F038, RequestCacheValidator_CreateValidator__MethodInfo); DO_APP_FUNC(0x003AE050, void, RequestCacheValidator__ctor, (RequestCacheValidator * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD40, void, RequestCachingSectionInternal__ctor, (RequestCachingSectionInternal * __this, MethodInfo * method)); DO_APP_FUNC(0x00F8C320, void, RequestCacheBinding__ctor, (RequestCacheBinding * __this, RequestCache * requestCache, RequestCacheValidator * cacheValidator, RequestCachePolicy * policy, MethodInfo * method)); @@ -32776,12 +37334,15 @@ DO_APP_FUNC(0x003BB3D0, RequestCacheValidator *, RequestCacheBinding_get_Validat DO_APP_FUNC(0x003BB3E0, RequestCachePolicy *, RequestCacheBinding_get_Policy, (RequestCacheBinding * __this, MethodInfo * method)); DO_APP_FUNC(0x0264C1D0, void, RequestCachePolicy__ctor, (RequestCachePolicy * __this, MethodInfo * method)); DO_APP_FUNC(0x0264C1E0, void, RequestCachePolicy__ctor_1, (RequestCachePolicy * __this, RequestCacheLevel__Enum level, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F030, RequestCachePolicy__ctor_1__MethodInfo); DO_APP_FUNC(0x003BCD50, RequestCacheLevel__Enum, RequestCachePolicy_get_Level, (RequestCachePolicy * __this, MethodInfo * method)); DO_APP_FUNC(0x0264C250, String *, RequestCachePolicy_ToString, (RequestCachePolicy * __this, MethodInfo * method)); DO_APP_FUNC(0x0264C2D0, void, HttpRequestCachePolicy__ctor, (HttpRequestCachePolicy * __this, MethodInfo * method)); DO_APP_FUNC(0x0264C2E0, void, HttpRequestCachePolicy__ctor_1, (HttpRequestCachePolicy * __this, HttpRequestCacheLevel__Enum level, MethodInfo * method)); DO_APP_FUNC(0x0264C460, void, HttpRequestCachePolicy__ctor_2, (HttpRequestCachePolicy * __this, HttpCacheAgeControl__Enum cacheAgeControl, TimeSpan ageOrFreshOrStale, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F070, HttpRequestCachePolicy__ctor_2__MethodInfo); DO_APP_FUNC(0x0264C5A0, void, HttpRequestCachePolicy__ctor_3, (HttpRequestCachePolicy * __this, HttpCacheAgeControl__Enum cacheAgeControl, TimeSpan maxAge, TimeSpan freshOrStale, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F068, HttpRequestCachePolicy__ctor_3__MethodInfo); DO_APP_FUNC(0x0264C6F0, void, HttpRequestCachePolicy__ctor_4, (HttpRequestCachePolicy * __this, DateTime cacheSyncDate, MethodInfo * method)); DO_APP_FUNC(0x0264C760, void, HttpRequestCachePolicy__ctor_5, (HttpRequestCachePolicy * __this, HttpCacheAgeControl__Enum cacheAgeControl, TimeSpan maxAge, TimeSpan freshOrStale, DateTime cacheSyncDate, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, HttpRequestCacheLevel__Enum, HttpRequestCachePolicy_get_Level, (HttpRequestCachePolicy * __this, MethodInfo * method)); @@ -32792,12 +37353,16 @@ DO_APP_FUNC(0x003BB330, TimeSpan, HttpRequestCachePolicy_get_MinFresh, (HttpRequ DO_APP_FUNC(0x003C7320, TimeSpan, HttpRequestCachePolicy_get_MaxStale, (HttpRequestCachePolicy * __this, MethodInfo * method)); DO_APP_FUNC(0x0264CA70, String *, HttpRequestCachePolicy_ToString, (HttpRequestCachePolicy * __this, MethodInfo * method)); DO_APP_FUNC(0x0264D0B0, RequestCacheLevel__Enum, HttpRequestCachePolicy_MapLevel, (HttpRequestCacheLevel__Enum level, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EFB0, HttpRequestCachePolicy_MapLevel__MethodInfo); DO_APP_FUNC(0x0264D140, void, HttpRequestCachePolicy__cctor, (MethodInfo * method)); DO_APP_FUNC(0x0264D200, void, RequestCacheProtocol__ctor, (RequestCacheProtocol * __this, Object * arg1, Object * arg2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EFA8, RequestCacheProtocol__ctor__MethodInfo); DO_APP_FUNC(0x0264D250, bool, MultipleConnectAsync_StartConnectAsync, (MultipleConnectAsync * __this, SocketAsyncEventArgs * args, DnsEndPoint * endPoint, MethodInfo * method)); DO_APP_FUNC(0x0264D840, void, MultipleConnectAsync_DnsCallback, (MultipleConnectAsync * __this, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EFC0, MultipleConnectAsync_DnsCallback__MethodInfo); DO_APP_FUNC(0x0264D8B0, bool, MultipleConnectAsync_DoDnsCallback, (MultipleConnectAsync * __this, IAsyncResult * result, bool sync, MethodInfo * method)); DO_APP_FUNC(0x0264DF00, void, MultipleConnectAsync_InternalConnectCallback, (MultipleConnectAsync * __this, Object * sender, SocketAsyncEventArgs * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EFF0, MultipleConnectAsync_InternalConnectCallback__MethodInfo); DO_APP_FUNC(0x0264E300, Exception *, MultipleConnectAsync_AttemptConnection, (MultipleConnectAsync * __this, MethodInfo * method)); DO_APP_FUNC(0x0264E520, Exception *, MultipleConnectAsync_AttemptConnection_1, (MultipleConnectAsync * __this, Socket * attemptSocket, SocketAsyncEventArgs * args, MethodInfo * method)); DO_APP_FUNC(0x0264E650, void, MultipleConnectAsync_Succeed, (MultipleConnectAsync * __this, MethodInfo * method)); @@ -32808,18 +37373,20 @@ DO_APP_FUNC(0x0264EB00, void, MultipleConnectAsync_Cancel, (MultipleConnectAsync DO_APP_FUNC(0x0264EE50, void, MultipleConnectAsync_CallAsyncFail, (MultipleConnectAsync * __this, Object * ignored, MethodInfo * method)); DO_APP_FUNC(0x0264EEE0, void, MultipleConnectAsync__ctor, (MultipleConnectAsync * __this, MethodInfo * method)); DO_APP_FUNC(0x0264EE50, void, MultipleConnectAsync__Cancel_b__20_0, (MultipleConnectAsync * __this, Object * s, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EF38, MultipleConnectAsync__Cancel_b__20_0__MethodInfo); DO_APP_FUNC(0x0264EF70, void, SingleSocketMultipleConnectAsync__ctor, (SingleSocketMultipleConnectAsync * __this, Socket * socket, bool userSocket, MethodInfo * method)); -DO_APP_FUNC(0x0264F000, IPAddress *, SingleSocketMultipleConnectAsync_GetNextAddress, (SingleSocketMultipleConnectAsync * __this, Socket * attemptSocket, MethodInfo * method)); +DO_APP_FUNC(0x0264F000, IPAddress *, SingleSocketMultipleConnectAsync_GetNextAddress, (SingleSocketMultipleConnectAsync * __this, Socket * * attemptSocket, MethodInfo * method)); DO_APP_FUNC(0x0264F170, void, SingleSocketMultipleConnectAsync_OnFail, (SingleSocketMultipleConnectAsync * __this, bool abortive, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SingleSocketMultipleConnectAsync_OnSucceed, (SingleSocketMultipleConnectAsync * __this, MethodInfo * method)); DO_APP_FUNC(0x0264F200, void, DualSocketMultipleConnectAsync__ctor, (DualSocketMultipleConnectAsync * __this, SocketType__Enum socketType, ProtocolType__Enum protocolType, MethodInfo * method)); -DO_APP_FUNC(0x0264F460, IPAddress *, DualSocketMultipleConnectAsync_GetNextAddress, (DualSocketMultipleConnectAsync * __this, Socket * attemptSocket, MethodInfo * method)); +DO_APP_FUNC(0x0264F460, IPAddress *, DualSocketMultipleConnectAsync_GetNextAddress, (DualSocketMultipleConnectAsync * __this, Socket * * attemptSocket, MethodInfo * method)); DO_APP_FUNC(0x0264F530, void, DualSocketMultipleConnectAsync_OnSucceed, (DualSocketMultipleConnectAsync * __this, MethodInfo * method)); DO_APP_FUNC(0x0264F580, void, DualSocketMultipleConnectAsync_OnFail, (DualSocketMultipleConnectAsync * __this, bool abortive, MethodInfo * method)); DO_APP_FUNC(0x0264F5C0, void, NetworkStream__ctor, (NetworkStream * __this, Socket * socket, MethodInfo * method)); DO_APP_FUNC(0x0264F5E0, void, NetworkStream__ctor_1, (NetworkStream * __this, Socket * socket, bool ownsSocket, MethodInfo * method)); DO_APP_FUNC(0x0264F610, void, NetworkStream__ctor_2, (NetworkStream * __this, Socket * socket, FileAccess__Enum access, MethodInfo * method)); DO_APP_FUNC(0x0264F630, void, NetworkStream__ctor_3, (NetworkStream * __this, Socket * socket, FileAccess__Enum access, bool ownsSocket, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EF68, NetworkStream__ctor_3__MethodInfo); DO_APP_FUNC(0x003BB3B0, Socket *, NetworkStream_get_Socket, (NetworkStream * __this, MethodInfo * method)); DO_APP_FUNC(0x00594F30, bool, NetworkStream_get_Readable, (NetworkStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01CC4FB0, void, NetworkStream_set_Readable, (NetworkStream * __this, bool value, MethodInfo * method)); @@ -32831,35 +37398,57 @@ DO_APP_FUNC(0x004C9320, bool, NetworkStream_get_CanWrite, (NetworkStream * __thi DO_APP_FUNC(0x0041AEF0, bool, NetworkStream_get_CanTimeout, (NetworkStream * __this, MethodInfo * method)); DO_APP_FUNC(0x0264F850, int32_t, NetworkStream_get_ReadTimeout, (NetworkStream * __this, MethodInfo * method)); DO_APP_FUNC(0x0264F8E0, void, NetworkStream_set_ReadTimeout, (NetworkStream * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EF40, NetworkStream_set_ReadTimeout__MethodInfo); DO_APP_FUNC(0x0264F980, int32_t, NetworkStream_get_WriteTimeout, (NetworkStream * __this, MethodInfo * method)); DO_APP_FUNC(0x0264FA10, void, NetworkStream_set_WriteTimeout, (NetworkStream * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EF60, NetworkStream_set_WriteTimeout__MethodInfo); DO_APP_FUNC(0x0264FAB0, bool, NetworkStream_get_DataAvailable, (NetworkStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EF58, NetworkStream_get_DataAvailable__MethodInfo); DO_APP_FUNC(0x0264FB60, int64_t, NetworkStream_get_Length, (NetworkStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EF50, NetworkStream_get_Length__MethodInfo); DO_APP_FUNC(0x0264FBC0, int64_t, NetworkStream_get_Position, (NetworkStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EF48, NetworkStream_get_Position__MethodInfo); DO_APP_FUNC(0x0264FC20, void, NetworkStream_set_Position, (NetworkStream * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EEC8, NetworkStream_set_Position__MethodInfo); DO_APP_FUNC(0x0264FC80, int64_t, NetworkStream_Seek, (NetworkStream * __this, int64_t offset, SeekOrigin__Enum origin, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EEC0, NetworkStream_Seek__MethodInfo); DO_APP_FUNC(0x0264FCE0, int32_t, NetworkStream_Read, (NetworkStream * __this, Byte__Array * buffer, int32_t offset, int32_t size, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EEB8, NetworkStream_Read__MethodInfo); DO_APP_FUNC(0x02650090, int32_t, NetworkStream_Read_1, (NetworkStream * __this, Span_1_Byte_ destination, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EED0, NetworkStream_Read_1__MethodInfo); DO_APP_FUNC(0x026503B0, int32_t, NetworkStream_ReadByte, (NetworkStream * __this, MethodInfo * method)); DO_APP_FUNC(0x02650460, void, NetworkStream_Write, (NetworkStream * __this, Byte__Array * buffer, int32_t offset, int32_t size, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EEA0, NetworkStream_Write__MethodInfo); DO_APP_FUNC(0x02650810, void, NetworkStream_Write_1, (NetworkStream * __this, ReadOnlySpan_1_Byte_ source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EEA8, NetworkStream_Write_1__MethodInfo); DO_APP_FUNC(0x02650AF0, void, NetworkStream_WriteByte, (NetworkStream * __this, uint8_t value, MethodInfo * method)); DO_APP_FUNC(0x02650B90, void, NetworkStream_Close, (NetworkStream * __this, int32_t timeout, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EF18, NetworkStream_Close__MethodInfo); DO_APP_FUNC(0x02650C10, void, NetworkStream_Dispose, (NetworkStream * __this, bool disposing, MethodInfo * method)); DO_APP_FUNC(0x00C133E0, void, NetworkStream_Finalize, (NetworkStream * __this, MethodInfo * method)); DO_APP_FUNC(0x02650C90, IAsyncResult *, NetworkStream_BeginRead, (NetworkStream * __this, Byte__Array * buffer, int32_t offset, int32_t size, AsyncCallback * callback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EF10, NetworkStream_BeginRead__MethodInfo); DO_APP_FUNC(0x02651050, int32_t, NetworkStream_EndRead, (NetworkStream * __this, IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EF08, NetworkStream_EndRead__MethodInfo); DO_APP_FUNC(0x026512A0, IAsyncResult *, NetworkStream_BeginWrite, (NetworkStream * __this, Byte__Array * buffer, int32_t offset, int32_t size, AsyncCallback * callback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EF28, NetworkStream_BeginWrite__MethodInfo); DO_APP_FUNC(0x02651660, void, NetworkStream_EndWrite, (NetworkStream * __this, IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EF20, NetworkStream_EndWrite__MethodInfo); DO_APP_FUNC(0x026518C0, Task_1_System_Int32_ *, NetworkStream_ReadAsync, (NetworkStream * __this, Byte__Array * buffer, int32_t offset, int32_t size, CancellationToken cancellationToken, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EEE8, NetworkStream_ReadAsync__MethodInfo); DO_APP_FUNC(0x02651D40, ValueTask_1_System_Int32_, NetworkStream_ReadAsync_1, (NetworkStream * __this, Memory_1_Byte_ buffer, CancellationToken cancellationToken, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EEE0, NetworkStream_ReadAsync_1__MethodInfo); DO_APP_FUNC(0x02652000, Task *, NetworkStream_WriteAsync, (NetworkStream * __this, Byte__Array * buffer, int32_t offset, int32_t size, CancellationToken cancellationToken, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EF00, NetworkStream_WriteAsync__MethodInfo); DO_APP_FUNC(0x02652460, ValueTask, NetworkStream_WriteAsync_1, (NetworkStream * __this, ReadOnlyMemory_1_Byte_ buffer, CancellationToken cancellationToken, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EEF8, NetworkStream_WriteAsync_1__MethodInfo); DO_APP_FUNC(0x003AE050, void, NetworkStream_Flush, (NetworkStream * __this, MethodInfo * method)); DO_APP_FUNC(0x02652720, Task *, NetworkStream_FlushAsync, (NetworkStream * __this, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x026527C0, void, NetworkStream_SetLength, (NetworkStream * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EE20, NetworkStream_SetLength__MethodInfo); DO_APP_FUNC(0x02652820, void, NetworkStream_SetSocketTimeoutOption, (NetworkStream * __this, SocketShutdown__Enum mode, int32_t timeout, bool silent, MethodInfo * method)); DO_APP_FUNC(0x026529F0, Socket *, NetworkStream_get_InternalSocket, (NetworkStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EDF8, NetworkStream_get_InternalSocket__MethodInfo); DO_APP_FUNC(0x02652A90, Task_1_System_Net_Sockets_Socket_ *, Socket_AcceptAsync, (Socket * __this, Socket * acceptSocket, MethodInfo * method)); DO_APP_FUNC(0x02652FF0, Task_1_System_Net_Sockets_Socket_ *, Socket_AcceptAsyncApm, (Socket * __this, Socket * acceptSocket, MethodInfo * method)); DO_APP_FUNC(0x026531F0, Task *, Socket_ConnectAsync, (Socket * __this, EndPoint * remoteEP, MethodInfo * method)); @@ -32881,7 +37470,9 @@ DO_APP_FUNC(0x02655F20, Task_1_System_Int32_ *, Socket_SendAsync_2, (Socket * __ DO_APP_FUNC(0x02656010, Task_1_System_Int32_ *, Socket_SendAsyncApm_1, (Socket * __this, IList_1_System_ArraySegment_1_ * buffers, SocketFlags__Enum socketFlags, MethodInfo * method)); DO_APP_FUNC(0x02656220, Task_1_System_Int32_ *, Socket_SendToAsync, (Socket * __this, ArraySegment_1_Byte_ buffer, SocketFlags__Enum socketFlags, EndPoint * remoteEP, MethodInfo * method)); DO_APP_FUNC(0x026564D0, void, Socket_ValidateBuffer, (ArraySegment_1_Byte_ buffer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EC98, Socket_ValidateBuffer__MethodInfo); DO_APP_FUNC(0x026566E0, void, Socket_ValidateBuffersList, (IList_1_System_ArraySegment_1_ * buffers, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1ECE8, Socket_ValidateBuffersList__MethodInfo); DO_APP_FUNC(0x02656810, void, Socket_ConfigureBufferList, (Socket_Int32TaskSocketAsyncEventArgs * saea, IList_1_System_ArraySegment_1_ * buffers, SocketFlags__Enum socketFlags, MethodInfo * method)); DO_APP_FUNC(0x026568F0, Task_1_System_Int32_ *, Socket_GetTaskForSendReceive, (Socket * __this, bool pending, Socket_Int32TaskSocketAsyncEventArgs * saea, bool fromNetworkStream, bool isReceive, MethodInfo * method)); DO_APP_FUNC(0x02656B10, void, Socket_CompleteAccept, (Socket * s, Socket_TaskSocketAsyncEventArgs_1_Socket_ * saea, MethodInfo * method)); @@ -32893,6 +37484,7 @@ DO_APP_FUNC(0x02657430, void, Socket_ReturnSocketAsyncEventArgs_1, (Socket * __t DO_APP_FUNC(0x02657520, void, Socket_DisposeCachedTaskSocketAsyncEventArgs, (Socket * __this, MethodInfo * method)); DO_APP_FUNC(0x02657810, void, Socket__ctor, (Socket * __this, SocketType__Enum socketType, ProtocolType__Enum protocolType, MethodInfo * method)); DO_APP_FUNC(0x02657850, void, Socket__ctor_1, (Socket * __this, AddressFamily__Enum addressFamily, SocketType__Enum socketType, ProtocolType__Enum protocolType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EC10, Socket__ctor_1__MethodInfo); DO_APP_FUNC(0x02657B90, bool, Socket_get_SupportsIPv4, (MethodInfo * method)); DO_APP_FUNC(0x02657BF0, bool, Socket_get_OSSupportsIPv4, (MethodInfo * method)); DO_APP_FUNC(0x02657C50, bool, Socket_get_SupportsIPv6, (MethodInfo * method)); @@ -32906,32 +37498,46 @@ DO_APP_FUNC(0x003CD280, SocketType__Enum, Socket_get_SocketType, (Socket * __thi DO_APP_FUNC(0x00421680, ProtocolType__Enum, Socket_get_ProtocolType, (Socket * __this, MethodInfo * method)); DO_APP_FUNC(0x02657D70, bool, Socket_get_ExclusiveAddressUse, (Socket * __this, MethodInfo * method)); DO_APP_FUNC(0x02657DF0, void, Socket_set_ExclusiveAddressUse, (Socket * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EC38, Socket_set_ExclusiveAddressUse__MethodInfo); DO_APP_FUNC(0x02657E90, int32_t, Socket_get_ReceiveBufferSize, (Socket * __this, MethodInfo * method)); DO_APP_FUNC(0x02657F10, void, Socket_set_ReceiveBufferSize, (Socket * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EC60, Socket_set_ReceiveBufferSize__MethodInfo); DO_APP_FUNC(0x02657FA0, int32_t, Socket_get_SendBufferSize, (Socket * __this, MethodInfo * method)); DO_APP_FUNC(0x02658020, void, Socket_set_SendBufferSize, (Socket * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EAE8, Socket_set_SendBufferSize__MethodInfo); DO_APP_FUNC(0x026580B0, int32_t, Socket_get_ReceiveTimeout, (Socket * __this, MethodInfo * method)); DO_APP_FUNC(0x02658130, void, Socket_set_ReceiveTimeout, (Socket * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EB20, Socket_set_ReceiveTimeout__MethodInfo); DO_APP_FUNC(0x026581C0, int32_t, Socket_get_SendTimeout, (Socket * __this, MethodInfo * method)); DO_APP_FUNC(0x02658240, void, Socket_set_SendTimeout, (Socket * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EB00, Socket_set_SendTimeout__MethodInfo); DO_APP_FUNC(0x026582D0, LingerOption *, Socket_get_LingerState, (Socket * __this, MethodInfo * method)); DO_APP_FUNC(0x02658360, void, Socket_set_LingerState, (Socket * __this, LingerOption * value, MethodInfo * method)); DO_APP_FUNC(0x02658390, int16_t, Socket_get_Ttl, (Socket * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EAA0, Socket_get_Ttl__MethodInfo); DO_APP_FUNC(0x026584C0, void, Socket_set_Ttl, (Socket * __this, int16_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EA90, Socket_set_Ttl__MethodInfo); DO_APP_FUNC(0x026585E0, bool, Socket_get_DontFragment, (Socket * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EBC0, Socket_get_DontFragment__MethodInfo); DO_APP_FUNC(0x026586C0, void, Socket_set_DontFragment, (Socket * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EBB8, Socket_set_DontFragment__MethodInfo); DO_APP_FUNC(0x02658760, bool, Socket_get_DualMode, (Socket * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EBD0, Socket_get_DualMode__MethodInfo); DO_APP_FUNC(0x02658850, void, Socket_set_DualMode, (Socket * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EBC8, Socket_set_DualMode__MethodInfo); DO_APP_FUNC(0x026588F0, bool, Socket_get_IsDualMode, (Socket * __this, MethodInfo * method)); DO_APP_FUNC(0x026589F0, bool, Socket_CanTryAddressFamily, (Socket * __this, AddressFamily__Enum family, MethodInfo * method)); DO_APP_FUNC(0x02658A10, void, Socket_Connect, (Socket * __this, IPAddress__Array * addresses, int32_t port, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EB48, Socket_Connect__MethodInfo); DO_APP_FUNC(0x02658EB0, int32_t, Socket_Send, (Socket * __this, Byte__Array * buffer, int32_t size, SocketFlags__Enum socketFlags, MethodInfo * method)); DO_APP_FUNC(0x02658EE0, int32_t, Socket_Send_1, (Socket * __this, Byte__Array * buffer, SocketFlags__Enum socketFlags, MethodInfo * method)); DO_APP_FUNC(0x02658F20, int32_t, Socket_Send_2, (Socket * __this, Byte__Array * buffer, MethodInfo * method)); DO_APP_FUNC(0x02658F60, int32_t, Socket_Send_3, (Socket * __this, IList_1_System_ArraySegment_1_ * buffers, MethodInfo * method)); DO_APP_FUNC(0x02658FE0, int32_t, Socket_Send_4, (Socket * __this, IList_1_System_ArraySegment_1_ * buffers, SocketFlags__Enum socketFlags, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EB90, Socket_Send_4__MethodInfo); DO_APP_FUNC(0x02659060, void, Socket_SendFile, (Socket * __this, String * fileName, MethodInfo * method)); DO_APP_FUNC(0x02659080, int32_t, Socket_Send_5, (Socket * __this, Byte__Array * buffer, int32_t offset, int32_t size, SocketFlags__Enum socketFlags, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EB80, Socket_Send_5__MethodInfo); DO_APP_FUNC(0x02659110, int32_t, Socket_SendTo, (Socket * __this, Byte__Array * buffer, int32_t size, SocketFlags__Enum socketFlags, EndPoint * remoteEP, MethodInfo * method)); DO_APP_FUNC(0x02659140, int32_t, Socket_SendTo_1, (Socket * __this, Byte__Array * buffer, SocketFlags__Enum socketFlags, EndPoint * remoteEP, MethodInfo * method)); DO_APP_FUNC(0x02659180, int32_t, Socket_SendTo_2, (Socket * __this, Byte__Array * buffer, EndPoint * remoteEP, MethodInfo * method)); @@ -32939,29 +37545,40 @@ DO_APP_FUNC(0x026591C0, int32_t, Socket_Receive, (Socket * __this, Byte__Array * DO_APP_FUNC(0x026591F0, int32_t, Socket_Receive_1, (Socket * __this, Byte__Array * buffer, SocketFlags__Enum socketFlags, MethodInfo * method)); DO_APP_FUNC(0x02659230, int32_t, Socket_Receive_2, (Socket * __this, Byte__Array * buffer, MethodInfo * method)); DO_APP_FUNC(0x02659270, int32_t, Socket_Receive_3, (Socket * __this, Byte__Array * buffer, int32_t offset, int32_t size, SocketFlags__Enum socketFlags, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E9D0, Socket_Receive_3__MethodInfo); DO_APP_FUNC(0x02659300, int32_t, Socket_Receive_4, (Socket * __this, IList_1_System_ArraySegment_1_ * buffers, MethodInfo * method)); DO_APP_FUNC(0x02659380, int32_t, Socket_Receive_5, (Socket * __this, IList_1_System_ArraySegment_1_ * buffers, SocketFlags__Enum socketFlags, MethodInfo * method)); -DO_APP_FUNC(0x02659400, int32_t, Socket_ReceiveFrom, (Socket * __this, Byte__Array * buffer, int32_t size, SocketFlags__Enum socketFlags, EndPoint * remoteEP, MethodInfo * method)); -DO_APP_FUNC(0x02659430, int32_t, Socket_ReceiveFrom_1, (Socket * __this, Byte__Array * buffer, SocketFlags__Enum socketFlags, EndPoint * remoteEP, MethodInfo * method)); -DO_APP_FUNC(0x02659470, int32_t, Socket_ReceiveFrom_2, (Socket * __this, Byte__Array * buffer, EndPoint * remoteEP, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E9C8, Socket_Receive_5__MethodInfo); +DO_APP_FUNC(0x02659400, int32_t, Socket_ReceiveFrom, (Socket * __this, Byte__Array * buffer, int32_t size, SocketFlags__Enum socketFlags, EndPoint * * remoteEP, MethodInfo * method)); +DO_APP_FUNC(0x02659430, int32_t, Socket_ReceiveFrom_1, (Socket * __this, Byte__Array * buffer, SocketFlags__Enum socketFlags, EndPoint * * remoteEP, MethodInfo * method)); +DO_APP_FUNC(0x02659470, int32_t, Socket_ReceiveFrom_2, (Socket * __this, Byte__Array * buffer, EndPoint * * remoteEP, MethodInfo * method)); DO_APP_FUNC(0x026594B0, int32_t, Socket_IOControl, (Socket * __this, IOControlCode__Enum ioControlCode, Byte__Array * optionInValue, Byte__Array * optionOutValue, MethodInfo * method)); DO_APP_FUNC(0x02659660, void, Socket_SetIPProtectionLevel, (Socket * __this, IPProtectionLevel__Enum level, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E9C0, Socket_SetIPProtectionLevel__MethodInfo); DO_APP_FUNC(0x02659790, IAsyncResult *, Socket_BeginSendFile, (Socket * __this, String * fileName, AsyncCallback * callback, Object * state, MethodInfo * method)); DO_APP_FUNC(0x026597C0, IAsyncResult *, Socket_BeginConnect, (Socket * __this, IPAddress * address, int32_t port, AsyncCallback * requestCallback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E9E8, Socket_BeginConnect__MethodInfo); DO_APP_FUNC(0x02659AB0, IAsyncResult *, Socket_BeginSend, (Socket * __this, Byte__Array * buffer, int32_t offset, int32_t size, SocketFlags__Enum socketFlags, AsyncCallback * callback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E9E0, Socket_BeginSend__MethodInfo); DO_APP_FUNC(0x02659B60, IAsyncResult *, Socket_BeginSend_1, (Socket * __this, IList_1_System_ArraySegment_1_ * buffers, SocketFlags__Enum socketFlags, AsyncCallback * callback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E9D8, Socket_BeginSend_1__MethodInfo); DO_APP_FUNC(0x02659BF0, int32_t, Socket_EndSend, (Socket * __this, IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E9B0, Socket_EndSend__MethodInfo); DO_APP_FUNC(0x02659D20, IAsyncResult *, Socket_BeginReceive, (Socket * __this, Byte__Array * buffer, int32_t offset, int32_t size, SocketFlags__Enum socketFlags, AsyncCallback * callback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E9A0, Socket_BeginReceive__MethodInfo); DO_APP_FUNC(0x02659DD0, IAsyncResult *, Socket_BeginReceive_1, (Socket * __this, IList_1_System_ArraySegment_1_ * buffers, SocketFlags__Enum socketFlags, AsyncCallback * callback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E990, Socket_BeginReceive_1__MethodInfo); DO_APP_FUNC(0x02659E60, int32_t, Socket_EndReceive, (Socket * __this, IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E988, Socket_EndReceive__MethodInfo); DO_APP_FUNC(0x02659F90, IAsyncResult *, Socket_BeginAccept, (Socket * __this, int32_t receiveSize, AsyncCallback * callback, Object * state, MethodInfo * method)); -DO_APP_FUNC(0x02659FC0, Socket *, Socket_EndAccept, (Socket * __this, Byte__Array * buffer, IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC(0x02659FC0, Socket *, Socket_EndAccept, (Socket * __this, Byte__Array * * buffer, IAsyncResult * asyncResult, MethodInfo * method)); DO_APP_FUNC(0x0265A1C0, Object *, Socket_get_InternalSyncObject, (MethodInfo * method)); DO_APP_FUNC(0x0265A2F0, bool, Socket_get_CleanedUp, (Socket * __this, MethodInfo * method)); DO_APP_FUNC(0x0265A300, void, Socket_InitializeSockets, (MethodInfo * method)); DO_APP_FUNC(0x0265A740, void, Socket_Dispose, (Socket * __this, MethodInfo * method)); DO_APP_FUNC(0x0190D730, void, Socket_Finalize, (Socket * __this, MethodInfo * method)); DO_APP_FUNC(0x0265A7B0, bool, Socket_ConnectAsync_4, (SocketType__Enum socketType, ProtocolType__Enum protocolType, SocketAsyncEventArgs * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EA00, Socket_ConnectAsync_4__MethodInfo); DO_APP_FUNC(0x0265ABB0, void, Socket_InternalShutdown, (Socket * __this, SocketShutdown__Enum how, MethodInfo * method)); DO_APP_FUNC(0x0265AC30, IAsyncResult *, Socket_UnsafeBeginConnect, (Socket * __this, EndPoint * remoteEP, AsyncCallback * callback, Object * state, MethodInfo * method)); DO_APP_FUNC(0x0265AC40, IAsyncResult *, Socket_UnsafeBeginSend, (Socket * __this, Byte__Array * buffer, int32_t offset, int32_t size, SocketFlags__Enum socketFlags, AsyncCallback * callback, Object * state, MethodInfo * method)); @@ -32971,164 +37588,228 @@ DO_APP_FUNC(0x0265AED0, IAsyncResult *, Socket_UnsafeBeginMultipleSend, (Socket DO_APP_FUNC(0x0265AEE0, int32_t, Socket_EndMultipleSend, (Socket * __this, IAsyncResult * asyncResult, MethodInfo * method)); DO_APP_FUNC(0x0265AEF0, void, Socket_MultipleSend, (Socket * __this, BufferOffsetSize__Array * buffers, SocketFlags__Enum socketFlags, MethodInfo * method)); DO_APP_FUNC(0x0265B120, void, Socket_SetSocketOption, (Socket * __this, SocketOptionLevel__Enum optionLevel, SocketOptionName__Enum optionName, int32_t optionValue, bool silent, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E940, Socket_SetSocketOption__MethodInfo); DO_APP_FUNC(0x0265B2A0, void, Socket__ctor_2, (Socket * __this, SocketInformation socketInformation, MethodInfo * method)); DO_APP_FUNC(0x0265B6F0, void, Socket__ctor_3, (Socket * __this, AddressFamily__Enum family, SocketType__Enum type, ProtocolType__Enum proto, SafeSocketHandle * safe_handle, MethodInfo * method)); DO_APP_FUNC(0x0265B8F0, void, Socket_SocketDefaults, (Socket * __this, MethodInfo * method)); -DO_APP_FUNC(0x0265B940, void *, Socket_Socket_icall, (AddressFamily__Enum family, SocketType__Enum type, ProtocolType__Enum proto, int32_t error, MethodInfo * method)); +DO_APP_FUNC(0x0265B940, void *, Socket_Socket_icall, (AddressFamily__Enum family, SocketType__Enum type, ProtocolType__Enum proto, int32_t * error, MethodInfo * method)); DO_APP_FUNC(0x0265BAF0, int32_t, Socket_get_Available, (Socket * __this, MethodInfo * method)); -DO_APP_FUNC(0x0265BBB0, int32_t, Socket_Available_internal, (SafeSocketHandle * safeHandle, int32_t error, MethodInfo * method)); -DO_APP_FUNC(0x0265BCD0, int32_t, Socket_Available_icall, (void * socket, int32_t error, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E910, Socket_get_Available__MethodInfo); +DO_APP_FUNC(0x0265BBB0, int32_t, Socket_Available_internal, (SafeSocketHandle * safeHandle, int32_t * error, MethodInfo * method)); +DO_APP_FUNC(0x0265BCD0, int32_t, Socket_Available_icall, (void * socket, int32_t * error, MethodInfo * method)); DO_APP_FUNC(0x0265BCE0, bool, Socket_get_EnableBroadcast, (Socket * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E980, Socket_get_EnableBroadcast__MethodInfo); DO_APP_FUNC(0x0265BDB0, void, Socket_set_EnableBroadcast, (Socket * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E978, Socket_set_EnableBroadcast__MethodInfo); DO_APP_FUNC(0x005C2F90, bool, Socket_get_IsBound, (Socket * __this, MethodInfo * method)); DO_APP_FUNC(0x0265BE40, bool, Socket_get_MulticastLoopback, (Socket * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E960, Socket_get_MulticastLoopback__MethodInfo); DO_APP_FUNC(0x0265BFB0, void, Socket_set_MulticastLoopback, (Socket * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E950, Socket_set_MulticastLoopback__MethodInfo); DO_APP_FUNC(0x0265C0B0, EndPoint *, Socket_get_LocalEndPoint, (Socket * __this, MethodInfo * method)); -DO_APP_FUNC(0x0265C1C0, SocketAddress *, Socket_LocalEndPoint_internal, (SafeSocketHandle * safeHandle, int32_t family, int32_t error, MethodInfo * method)); -DO_APP_FUNC(0x0265C2F0, SocketAddress *, Socket_LocalEndPoint_icall, (void * socket, int32_t family, int32_t error, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E968, Socket_get_LocalEndPoint__MethodInfo); +DO_APP_FUNC(0x0265C1C0, SocketAddress *, Socket_LocalEndPoint_internal, (SafeSocketHandle * safeHandle, int32_t family, int32_t * error, MethodInfo * method)); +DO_APP_FUNC(0x0265C2F0, SocketAddress *, Socket_LocalEndPoint_icall, (void * socket, int32_t family, int32_t * error, MethodInfo * method)); DO_APP_FUNC(0x004217A0, bool, Socket_get_Blocking, (Socket * __this, MethodInfo * method)); DO_APP_FUNC(0x0265C300, void, Socket_set_Blocking, (Socket * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x0265C3E0, void, Socket_Blocking_internal, (SafeSocketHandle * safeHandle, bool block, int32_t error, MethodInfo * method)); -DO_APP_FUNC(0x0265C500, void, Socket_Blocking_icall, (void * socket, bool block, int32_t error, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E858, Socket_set_Blocking__MethodInfo); +DO_APP_FUNC(0x0265C3E0, void, Socket_Blocking_internal, (SafeSocketHandle * safeHandle, bool block, int32_t * error, MethodInfo * method)); +DO_APP_FUNC(0x0265C500, void, Socket_Blocking_icall, (void * socket, bool block, int32_t * error, MethodInfo * method)); DO_APP_FUNC(0x005C30A0, bool, Socket_get_Connected, (Socket * __this, MethodInfo * method)); DO_APP_FUNC(0x00702B20, void, Socket_set_Connected, (Socket * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x0265C650, bool, Socket_get_NoDelay, (Socket * __this, MethodInfo * method)); DO_APP_FUNC(0x0265C720, void, Socket_set_NoDelay, (Socket * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x0265C7B0, EndPoint *, Socket_get_RemoteEndPoint, (Socket * __this, MethodInfo * method)); -DO_APP_FUNC(0x0265C8C0, SocketAddress *, Socket_RemoteEndPoint_internal, (SafeSocketHandle * safeHandle, int32_t family, int32_t error, MethodInfo * method)); -DO_APP_FUNC(0x0265C9F0, SocketAddress *, Socket_RemoteEndPoint_icall, (void * socket, int32_t family, int32_t error, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E808, Socket_get_RemoteEndPoint__MethodInfo); +DO_APP_FUNC(0x0265C8C0, SocketAddress *, Socket_RemoteEndPoint_internal, (SafeSocketHandle * safeHandle, int32_t family, int32_t * error, MethodInfo * method)); +DO_APP_FUNC(0x0265C9F0, SocketAddress *, Socket_RemoteEndPoint_icall, (void * socket, int32_t family, int32_t * error, MethodInfo * method)); DO_APP_FUNC(0x003BB330, SafeHandle *, Socket_get_SafeHandle, (Socket * __this, MethodInfo * method)); DO_APP_FUNC(0x0265CA00, void, Socket_Select, (IList * checkRead, IList * checkWrite, IList * checkError, int32_t microSeconds, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E860, Socket_Select__MethodInfo); DO_APP_FUNC(0x0265CE80, void, Socket_AddSockets, (List_1_System_Net_Sockets_Socket_ * sockets, IList * list, String * name, MethodInfo * method)); -DO_APP_FUNC(0x0265D0F0, void, Socket_Select_icall, (Socket__Array * sockets, int32_t microSeconds, int32_t error, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E760, Socket_AddSockets__MethodInfo); +DO_APP_FUNC(0x0265D0F0, void, Socket_Select_icall, (Socket__Array * * sockets, int32_t microSeconds, int32_t * error, MethodInfo * method)); DO_APP_FUNC(0x0265D100, bool, Socket_Poll, (Socket * __this, int32_t microSeconds, SelectMode__Enum mode, MethodInfo * method)); -DO_APP_FUNC(0x0265D2C0, bool, Socket_Poll_internal, (SafeSocketHandle * safeHandle, SelectMode__Enum mode, int32_t timeout, int32_t error, MethodInfo * method)); -DO_APP_FUNC(0x0265D410, bool, Socket_Poll_icall, (void * socket, SelectMode__Enum mode, int32_t timeout, int32_t error, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E770, Socket_Poll__MethodInfo); +DO_APP_FUNC(0x0265D2C0, bool, Socket_Poll_internal, (SafeSocketHandle * safeHandle, SelectMode__Enum mode, int32_t timeout, int32_t * error, MethodInfo * method)); +DO_APP_FUNC(0x0265D410, bool, Socket_Poll_icall, (void * socket, SelectMode__Enum mode, int32_t timeout, int32_t * error, MethodInfo * method)); DO_APP_FUNC(0x0265D420, Socket *, Socket_Accept, (Socket * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E740, Socket_Accept__MethodInfo); DO_APP_FUNC(0x0265D5D0, void, Socket_Accept_1, (Socket * __this, Socket * acceptSocket, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E758, Socket_Accept_1__MethodInfo); DO_APP_FUNC(0x0265D7B0, bool, Socket_AcceptAsync_1, (Socket * __this, SocketAsyncEventArgs * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E790, Socket_AcceptAsync_1__MethodInfo); DO_APP_FUNC(0x0265DAF0, IAsyncResult *, Socket_BeginAccept_1, (Socket * __this, AsyncCallback * callback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E788, Socket_BeginAccept_1__MethodInfo); DO_APP_FUNC(0x0265DC90, IAsyncResult *, Socket_BeginAccept_2, (Socket * __this, Socket * acceptSocket, int32_t receiveSize, AsyncCallback * callback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E6E8, Socket_BeginAccept_2__MethodInfo); DO_APP_FUNC(0x0265E120, Socket *, Socket_EndAccept_1, (Socket * __this, IAsyncResult * asyncResult, MethodInfo * method)); -DO_APP_FUNC(0x0265E150, Socket *, Socket_EndAccept_2, (Socket * __this, Byte__Array * buffer, int32_t bytesTransferred, IAsyncResult * asyncResult, MethodInfo * method)); -DO_APP_FUNC(0x0265E2A0, SafeSocketHandle *, Socket_Accept_internal, (SafeSocketHandle * safeHandle, int32_t error, bool blocking, MethodInfo * method)); -DO_APP_FUNC(0x0265E440, void *, Socket_Accept_icall, (void * sock, int32_t error, bool blocking, MethodInfo * method)); +DO_APP_FUNC(0x0265E150, Socket *, Socket_EndAccept_2, (Socket * __this, Byte__Array * * buffer, int32_t * bytesTransferred, IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC(0x0265E2A0, SafeSocketHandle *, Socket_Accept_internal, (SafeSocketHandle * safeHandle, int32_t * error, bool blocking, MethodInfo * method)); +DO_APP_FUNC(0x0265E440, void *, Socket_Accept_icall, (void * sock, int32_t * error, bool blocking, MethodInfo * method)); DO_APP_FUNC(0x0265E4E0, void, Socket_Bind, (Socket * __this, EndPoint * localEP, MethodInfo * method)); -DO_APP_FUNC(0x0265E8E0, void, Socket_Bind_internal, (SafeSocketHandle * safeHandle, SocketAddress * sa, int32_t error, MethodInfo * method)); -DO_APP_FUNC(0x0265EA00, void, Socket_Bind_icall, (void * sock, SocketAddress * sa, int32_t error, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E730, Socket_Bind__MethodInfo); +DO_APP_FUNC(0x0265E8E0, void, Socket_Bind_internal, (SafeSocketHandle * safeHandle, SocketAddress * sa, int32_t * error, MethodInfo * method)); +DO_APP_FUNC(0x0265EA00, void, Socket_Bind_icall, (void * sock, SocketAddress * sa, int32_t * error, MethodInfo * method)); DO_APP_FUNC(0x0265EA10, void, Socket_Listen, (Socket * __this, int32_t backlog, MethodInfo * method)); -DO_APP_FUNC(0x0265EB30, void, Socket_Listen_internal, (SafeSocketHandle * safeHandle, int32_t backlog, int32_t error, MethodInfo * method)); -DO_APP_FUNC(0x0265ED70, void, Socket_Listen_icall, (void * sock, int32_t backlog, int32_t error, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E720, Socket_Listen__MethodInfo); +DO_APP_FUNC(0x0265EB30, void, Socket_Listen_internal, (SafeSocketHandle * safeHandle, int32_t backlog, int32_t * error, MethodInfo * method)); +DO_APP_FUNC(0x0265ED70, void, Socket_Listen_icall, (void * sock, int32_t backlog, int32_t * error, MethodInfo * method)); DO_APP_FUNC(0x0265EEC0, void, Socket_Connect_1, (Socket * __this, IPAddress * address, int32_t port, MethodInfo * method)); DO_APP_FUNC(0x0265EF50, void, Socket_Connect_2, (Socket * __this, String * host, int32_t port, MethodInfo * method)); DO_APP_FUNC(0x0265EFD0, void, Socket_Connect_3, (Socket * __this, EndPoint * remoteEP, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E650, Socket_Connect_3__MethodInfo); DO_APP_FUNC(0x0265F5E0, bool, Socket_ConnectAsync_5, (Socket * __this, SocketAsyncEventArgs * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E670, Socket_ConnectAsync_5__MethodInfo); DO_APP_FUNC(0x0265FAF0, void, Socket_CancelConnectAsync, (SocketAsyncEventArgs * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E608, Socket_CancelConnectAsync__MethodInfo); DO_APP_FUNC(0x0265FB80, IAsyncResult *, Socket_BeginConnect_1, (Socket * __this, String * host, int32_t port, AsyncCallback * callback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E698, Socket_BeginConnect_1__MethodInfo); DO_APP_FUNC(0x0265FEE0, IAsyncResult *, Socket_BeginConnect_2, (Socket * __this, EndPoint * remoteEP, AsyncCallback * callback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E6B0, Socket_BeginConnect_2__MethodInfo); DO_APP_FUNC(0x026600C0, IAsyncResult *, Socket_BeginConnect_3, (Socket * __this, IPAddress__Array * addresses, int32_t port, AsyncCallback * requestCallback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E680, Socket_BeginConnect_3__MethodInfo); DO_APP_FUNC(0x02660390, bool, Socket_BeginMConnect, (SocketAsyncResult * sockares, MethodInfo * method)); DO_APP_FUNC(0x026605B0, bool, Socket_BeginSConnect, (SocketAsyncResult * sockares, MethodInfo * method)); DO_APP_FUNC(0x02660C70, void, Socket_EndConnect, (Socket * __this, IAsyncResult * asyncResult, MethodInfo * method)); -DO_APP_FUNC(0x02660D30, void, Socket_Connect_internal, (SafeSocketHandle * safeHandle, SocketAddress * sa, int32_t error, bool blocking, MethodInfo * method)); -DO_APP_FUNC(0x02660E40, void, Socket_Connect_icall, (void * sock, SocketAddress * sa, int32_t error, bool blocking, MethodInfo * method)); -DO_APP_FUNC(0x02660E50, bool, Socket_GetCheckedIPs, (Socket * __this, SocketAsyncEventArgs * e, IPAddress__Array * addresses, MethodInfo * method)); +DO_APP_FUNC(0x02660D30, void, Socket_Connect_internal, (SafeSocketHandle * safeHandle, SocketAddress * sa, int32_t * error, bool blocking, MethodInfo * method)); +DO_APP_FUNC(0x02660E40, void, Socket_Connect_icall, (void * sock, SocketAddress * sa, int32_t * error, bool blocking, MethodInfo * method)); +DO_APP_FUNC(0x02660E50, bool, Socket_GetCheckedIPs, (Socket * __this, SocketAsyncEventArgs * e, IPAddress__Array * * addresses, MethodInfo * method)); DO_APP_FUNC(0x02661170, void, Socket_Disconnect, (Socket * __this, bool reuseSocket, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E5B0, Socket_Disconnect__MethodInfo); DO_APP_FUNC(0x02661290, bool, Socket_DisconnectAsync, (Socket * __this, SocketAsyncEventArgs * e, MethodInfo * method)); DO_APP_FUNC(0x026614F0, IAsyncResult *, Socket_BeginDisconnect, (Socket * __this, bool reuseSocket, AsyncCallback * callback, Object * state, MethodInfo * method)); DO_APP_FUNC(0x02661690, void, Socket_EndDisconnect, (Socket * __this, IAsyncResult * asyncResult, MethodInfo * method)); -DO_APP_FUNC(0x02661750, void, Socket_Disconnect_internal, (SafeSocketHandle * safeHandle, bool reuse, int32_t error, MethodInfo * method)); -DO_APP_FUNC(0x02661980, void, Socket_Disconnect_icall, (void * sock, bool reuse, int32_t error, MethodInfo * method)); -DO_APP_FUNC(0x02661AD0, int32_t, Socket_Receive_6, (Socket * __this, Byte__Array * buffer, int32_t offset, int32_t size, SocketFlags__Enum socketFlags, SocketError__Enum errorCode, MethodInfo * method)); -DO_APP_FUNC(0x02661C50, int32_t, Socket_Receive_7, (Socket * __this, Memory_1_Byte_ buffer, int32_t offset, int32_t size, SocketFlags__Enum socketFlags, SocketError__Enum errorCode, MethodInfo * method)); -DO_APP_FUNC(0x02661EC0, int32_t, Socket_Receive_8, (Socket * __this, IList_1_System_ArraySegment_1_ * buffers, SocketFlags__Enum socketFlags, SocketError__Enum errorCode, MethodInfo * method)); -DO_APP_FUNC(0x02662620, int32_t, Socket_Receive_9, (Socket * __this, Span_1_Byte_ buffer, SocketFlags__Enum socketFlags, SocketError__Enum errorCode, MethodInfo * method)); -DO_APP_FUNC(0x02662700, int32_t, Socket_Send_6, (Socket * __this, ReadOnlySpan_1_Byte_ buffer, SocketFlags__Enum socketFlags, SocketError__Enum errorCode, MethodInfo * method)); +DO_APP_FUNC(0x02661750, void, Socket_Disconnect_internal, (SafeSocketHandle * safeHandle, bool reuse, int32_t * error, MethodInfo * method)); +DO_APP_FUNC(0x02661980, void, Socket_Disconnect_icall, (void * sock, bool reuse, int32_t * error, MethodInfo * method)); +DO_APP_FUNC(0x02661AD0, int32_t, Socket_Receive_6, (Socket * __this, Byte__Array * buffer, int32_t offset, int32_t size, SocketFlags__Enum socketFlags, SocketError__Enum * errorCode, MethodInfo * method)); +DO_APP_FUNC(0x02661C50, int32_t, Socket_Receive_7, (Socket * __this, Memory_1_Byte_ buffer, int32_t offset, int32_t size, SocketFlags__Enum socketFlags, SocketError__Enum * errorCode, MethodInfo * method)); +DO_APP_FUNC(0x02661EC0, int32_t, Socket_Receive_8, (Socket * __this, IList_1_System_ArraySegment_1_ * buffers, SocketFlags__Enum socketFlags, SocketError__Enum * errorCode, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E540, Socket_Receive_8__MethodInfo); +DO_APP_FUNC(0x02662620, int32_t, Socket_Receive_9, (Socket * __this, Span_1_Byte_ buffer, SocketFlags__Enum socketFlags, SocketError__Enum * errorCode, MethodInfo * method)); +DO_APP_FUNC(0x02662700, int32_t, Socket_Send_6, (Socket * __this, ReadOnlySpan_1_Byte_ buffer, SocketFlags__Enum socketFlags, SocketError__Enum * errorCode, MethodInfo * method)); DO_APP_FUNC(0x02662790, int32_t, Socket_Receive_10, (Socket * __this, Span_1_Byte_ buffer, SocketFlags__Enum socketFlags, MethodInfo * method)); DO_APP_FUNC(0x02662860, int32_t, Socket_Receive_11, (Socket * __this, Span_1_Byte_ buffer, MethodInfo * method)); DO_APP_FUNC(0x02662930, bool, Socket_ReceiveAsync_3, (Socket * __this, SocketAsyncEventArgs * e, MethodInfo * method)); -DO_APP_FUNC(0x02662DB0, IAsyncResult *, Socket_BeginReceive_2, (Socket * __this, Byte__Array * buffer, int32_t offset, int32_t size, SocketFlags__Enum socketFlags, SocketError__Enum errorCode, AsyncCallback * callback, Object * state, MethodInfo * method)); -DO_APP_FUNC(0x026630F0, IAsyncResult *, Socket_BeginReceive_3, (Socket * __this, IList_1_System_ArraySegment_1_ * buffers, SocketFlags__Enum socketFlags, SocketError__Enum errorCode, AsyncCallback * callback, Object * state, MethodInfo * method)); -DO_APP_FUNC(0x02663300, int32_t, Socket_EndReceive_1, (Socket * __this, IAsyncResult * asyncResult, SocketError__Enum errorCode, MethodInfo * method)); -DO_APP_FUNC(0x026633F0, int32_t, Socket_Receive_internal, (SafeSocketHandle * safeHandle, Socket_WSABUF * bufarray, int32_t count, SocketFlags__Enum flags, int32_t error, bool blocking, MethodInfo * method)); -DO_APP_FUNC(0x02663520, int32_t, Socket_Receive_array_icall, (void * sock, Socket_WSABUF * bufarray, int32_t count, SocketFlags__Enum flags, int32_t error, bool blocking, MethodInfo * method)); -DO_APP_FUNC(0x02663530, int32_t, Socket_Receive_internal_1, (SafeSocketHandle * safeHandle, uint8_t * buffer, int32_t count, SocketFlags__Enum flags, int32_t error, bool blocking, MethodInfo * method)); -DO_APP_FUNC(0x02663660, int32_t, Socket_Receive_icall, (void * sock, uint8_t * buffer, int32_t count, SocketFlags__Enum flags, int32_t error, bool blocking, MethodInfo * method)); -DO_APP_FUNC(0x02663670, int32_t, Socket_ReceiveFrom_3, (Socket * __this, Byte__Array * buffer, int32_t offset, int32_t size, SocketFlags__Enum socketFlags, EndPoint * remoteEP, MethodInfo * method)); -DO_APP_FUNC(0x02663810, int32_t, Socket_ReceiveFrom_4, (Socket * __this, Byte__Array * buffer, int32_t offset, int32_t size, SocketFlags__Enum socketFlags, EndPoint * remoteEP, SocketError__Enum errorCode, MethodInfo * method)); -DO_APP_FUNC(0x02663A60, int32_t, Socket_ReceiveFrom_5, (Socket * __this, Memory_1_Byte_ buffer, int32_t offset, int32_t size, SocketFlags__Enum socketFlags, EndPoint * remoteEP, SocketError__Enum errorCode, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E528, Socket_ReceiveAsync_3__MethodInfo); +DO_APP_FUNC(0x02662DB0, IAsyncResult *, Socket_BeginReceive_2, (Socket * __this, Byte__Array * buffer, int32_t offset, int32_t size, SocketFlags__Enum socketFlags, SocketError__Enum * errorCode, AsyncCallback * callback, Object * state, MethodInfo * method)); +DO_APP_FUNC(0x026630F0, IAsyncResult *, Socket_BeginReceive_3, (Socket * __this, IList_1_System_ArraySegment_1_ * buffers, SocketFlags__Enum socketFlags, SocketError__Enum * errorCode, AsyncCallback * callback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E598, Socket_BeginReceive_3__MethodInfo); +DO_APP_FUNC(0x02663300, int32_t, Socket_EndReceive_1, (Socket * __this, IAsyncResult * asyncResult, SocketError__Enum * errorCode, MethodInfo * method)); +DO_APP_FUNC(0x026633F0, int32_t, Socket_Receive_internal, (SafeSocketHandle * safeHandle, Socket_WSABUF * bufarray, int32_t count, SocketFlags__Enum flags, int32_t * error, bool blocking, MethodInfo * method)); +DO_APP_FUNC(0x02663520, int32_t, Socket_Receive_array_icall, (void * sock, Socket_WSABUF * bufarray, int32_t count, SocketFlags__Enum flags, int32_t * error, bool blocking, MethodInfo * method)); +DO_APP_FUNC(0x02663530, int32_t, Socket_Receive_internal_1, (SafeSocketHandle * safeHandle, uint8_t * buffer, int32_t count, SocketFlags__Enum flags, int32_t * error, bool blocking, MethodInfo * method)); +DO_APP_FUNC(0x02663660, int32_t, Socket_Receive_icall, (void * sock, uint8_t * buffer, int32_t count, SocketFlags__Enum flags, int32_t * error, bool blocking, MethodInfo * method)); +DO_APP_FUNC(0x02663670, int32_t, Socket_ReceiveFrom_3, (Socket * __this, Byte__Array * buffer, int32_t offset, int32_t size, SocketFlags__Enum socketFlags, EndPoint * * remoteEP, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E578, Socket_ReceiveFrom_3__MethodInfo); +DO_APP_FUNC(0x02663810, int32_t, Socket_ReceiveFrom_4, (Socket * __this, Byte__Array * buffer, int32_t offset, int32_t size, SocketFlags__Enum socketFlags, EndPoint * * remoteEP, SocketError__Enum * errorCode, MethodInfo * method)); +DO_APP_FUNC(0x02663A60, int32_t, Socket_ReceiveFrom_5, (Socket * __this, Memory_1_Byte_ buffer, int32_t offset, int32_t size, SocketFlags__Enum socketFlags, EndPoint * * remoteEP, SocketError__Enum * errorCode, MethodInfo * method)); DO_APP_FUNC(0x02663E00, bool, Socket_ReceiveFromAsync_1, (Socket * __this, SocketAsyncEventArgs * e, MethodInfo * method)); -DO_APP_FUNC(0x026642D0, IAsyncResult *, Socket_BeginReceiveFrom, (Socket * __this, Byte__Array * buffer, int32_t offset, int32_t size, SocketFlags__Enum socketFlags, EndPoint * remoteEP, AsyncCallback * callback, Object * state, MethodInfo * method)); -DO_APP_FUNC(0x02664680, int32_t, Socket_EndReceiveFrom, (Socket * __this, IAsyncResult * asyncResult, EndPoint * endPoint, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E4C0, Socket_ReceiveFromAsync_1__MethodInfo); +DO_APP_FUNC(0x026642D0, IAsyncResult *, Socket_BeginReceiveFrom, (Socket * __this, Byte__Array * buffer, int32_t offset, int32_t size, SocketFlags__Enum socketFlags, EndPoint * * remoteEP, AsyncCallback * callback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E4A0, Socket_BeginReceiveFrom__MethodInfo); +DO_APP_FUNC(0x02664680, int32_t, Socket_EndReceiveFrom, (Socket * __this, IAsyncResult * asyncResult, EndPoint * * endPoint, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E4A8, Socket_EndReceiveFrom__MethodInfo); DO_APP_FUNC(0x02664800, int32_t, Socket_EndReceiveFrom_internal, (Socket * __this, SocketAsyncResult * sockares, SocketAsyncEventArgs * ares, MethodInfo * method)); -DO_APP_FUNC(0x02664930, int32_t, Socket_ReceiveFrom_internal, (SafeSocketHandle * safeHandle, uint8_t * buffer, int32_t count, SocketFlags__Enum flags, SocketAddress * sockaddr, int32_t error, bool blocking, MethodInfo * method)); -DO_APP_FUNC(0x02664A70, int32_t, Socket_ReceiveFrom_icall, (void * sock, uint8_t * buffer, int32_t count, SocketFlags__Enum flags, SocketAddress * sockaddr, int32_t error, bool blocking, MethodInfo * method)); -DO_APP_FUNC(0x02664A80, int32_t, Socket_ReceiveMessageFrom, (Socket * __this, Byte__Array * buffer, int32_t offset, int32_t size, SocketFlags__Enum socketFlags, EndPoint * remoteEP, IPPacketInformation ipPacketInformation, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E4F0, Socket_EndReceiveFrom_internal__MethodInfo); +DO_APP_FUNC(0x02664930, int32_t, Socket_ReceiveFrom_internal, (SafeSocketHandle * safeHandle, uint8_t * buffer, int32_t count, SocketFlags__Enum flags, SocketAddress * * sockaddr, int32_t * error, bool blocking, MethodInfo * method)); +DO_APP_FUNC(0x02664A70, int32_t, Socket_ReceiveFrom_icall, (void * sock, uint8_t * buffer, int32_t count, SocketFlags__Enum flags, SocketAddress * * sockaddr, int32_t * error, bool blocking, MethodInfo * method)); +DO_APP_FUNC(0x02664A80, int32_t, Socket_ReceiveMessageFrom, (Socket * __this, Byte__Array * buffer, int32_t offset, int32_t size, SocketFlags__Enum * socketFlags, EndPoint * * remoteEP, IPPacketInformation * ipPacketInformation, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E510, Socket_ReceiveMessageFrom__MethodInfo); DO_APP_FUNC(0x02664BC0, bool, Socket_ReceiveMessageFromAsync_1, (Socket * __this, SocketAsyncEventArgs * e, MethodInfo * method)); -DO_APP_FUNC(0x02664C10, IAsyncResult *, Socket_BeginReceiveMessageFrom, (Socket * __this, Byte__Array * buffer, int32_t offset, int32_t size, SocketFlags__Enum socketFlags, EndPoint * remoteEP, AsyncCallback * callback, Object * state, MethodInfo * method)); -DO_APP_FUNC(0x02664D50, int32_t, Socket_EndReceiveMessageFrom, (Socket * __this, IAsyncResult * asyncResult, SocketFlags__Enum socketFlags, EndPoint * endPoint, IPPacketInformation ipPacketInformation, MethodInfo * method)); -DO_APP_FUNC(0x02664E40, int32_t, Socket_Send_7, (Socket * __this, Byte__Array * buffer, int32_t offset, int32_t size, SocketFlags__Enum socketFlags, SocketError__Enum errorCode, MethodInfo * method)); -DO_APP_FUNC(0x02664FF0, int32_t, Socket_Send_8, (Socket * __this, IList_1_System_ArraySegment_1_ * buffers, SocketFlags__Enum socketFlags, SocketError__Enum errorCode, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E508, Socket_ReceiveMessageFromAsync_1__MethodInfo); +DO_APP_FUNC(0x02664C10, IAsyncResult *, Socket_BeginReceiveMessageFrom, (Socket * __this, Byte__Array * buffer, int32_t offset, int32_t size, SocketFlags__Enum socketFlags, EndPoint * * remoteEP, AsyncCallback * callback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E500, Socket_BeginReceiveMessageFrom__MethodInfo); +DO_APP_FUNC(0x02664D50, int32_t, Socket_EndReceiveMessageFrom, (Socket * __this, IAsyncResult * asyncResult, SocketFlags__Enum * socketFlags, EndPoint * * endPoint, IPPacketInformation * ipPacketInformation, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E4D8, Socket_EndReceiveMessageFrom__MethodInfo); +DO_APP_FUNC(0x02664E40, int32_t, Socket_Send_7, (Socket * __this, Byte__Array * buffer, int32_t offset, int32_t size, SocketFlags__Enum socketFlags, SocketError__Enum * errorCode, MethodInfo * method)); +DO_APP_FUNC(0x02664FF0, int32_t, Socket_Send_8, (Socket * __this, IList_1_System_ArraySegment_1_ * buffers, SocketFlags__Enum socketFlags, SocketError__Enum * errorCode, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E4E8, Socket_Send_8__MethodInfo); DO_APP_FUNC(0x02665650, int32_t, Socket_Send_9, (Socket * __this, ReadOnlySpan_1_Byte_ buffer, SocketFlags__Enum socketFlags, MethodInfo * method)); DO_APP_FUNC(0x026656E0, int32_t, Socket_Send_10, (Socket * __this, ReadOnlySpan_1_Byte_ buffer, MethodInfo * method)); DO_APP_FUNC(0x02665760, bool, Socket_SendAsync_3, (Socket * __this, SocketAsyncEventArgs * e, MethodInfo * method)); -DO_APP_FUNC(0x02665E00, IAsyncResult *, Socket_BeginSend_2, (Socket * __this, Byte__Array * buffer, int32_t offset, int32_t size, SocketFlags__Enum socketFlags, SocketError__Enum errorCode, AsyncCallback * callback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E468, Socket_SendAsync_3__MethodInfo); +DO_APP_FUNC(0x02665E00, IAsyncResult *, Socket_BeginSend_2, (Socket * __this, Byte__Array * buffer, int32_t offset, int32_t size, SocketFlags__Enum socketFlags, SocketError__Enum * errorCode, AsyncCallback * callback, Object * state, MethodInfo * method)); DO_APP_FUNC(0x02666240, void, Socket_BeginSendCallback, (SocketAsyncResult * sockares, int32_t sent_so_far, MethodInfo * method)); -DO_APP_FUNC(0x02666610, IAsyncResult *, Socket_BeginSend_3, (Socket * __this, IList_1_System_ArraySegment_1_ * buffers, SocketFlags__Enum socketFlags, SocketError__Enum errorCode, AsyncCallback * callback, Object * state, MethodInfo * method)); -DO_APP_FUNC(0x02666840, int32_t, Socket_EndSend_1, (Socket * __this, IAsyncResult * asyncResult, SocketError__Enum errorCode, MethodInfo * method)); -DO_APP_FUNC(0x02666930, int32_t, Socket_Send_internal, (SafeSocketHandle * safeHandle, Socket_WSABUF * bufarray, int32_t count, SocketFlags__Enum flags, int32_t error, bool blocking, MethodInfo * method)); -DO_APP_FUNC(0x02666A60, int32_t, Socket_Send_array_icall, (void * sock, Socket_WSABUF * bufarray, int32_t count, SocketFlags__Enum flags, int32_t error, bool blocking, MethodInfo * method)); -DO_APP_FUNC(0x02666A70, int32_t, Socket_Send_internal_1, (SafeSocketHandle * safeHandle, uint8_t * buffer, int32_t count, SocketFlags__Enum flags, int32_t error, bool blocking, MethodInfo * method)); -DO_APP_FUNC(0x02666BA0, int32_t, Socket_Send_icall, (void * sock, uint8_t * buffer, int32_t count, SocketFlags__Enum flags, int32_t error, bool blocking, MethodInfo * method)); +DO_APP_FUNC(0x02666610, IAsyncResult *, Socket_BeginSend_3, (Socket * __this, IList_1_System_ArraySegment_1_ * buffers, SocketFlags__Enum socketFlags, SocketError__Enum * errorCode, AsyncCallback * callback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E498, Socket_BeginSend_3__MethodInfo); +DO_APP_FUNC(0x02666840, int32_t, Socket_EndSend_1, (Socket * __this, IAsyncResult * asyncResult, SocketError__Enum * errorCode, MethodInfo * method)); +DO_APP_FUNC(0x02666930, int32_t, Socket_Send_internal, (SafeSocketHandle * safeHandle, Socket_WSABUF * bufarray, int32_t count, SocketFlags__Enum flags, int32_t * error, bool blocking, MethodInfo * method)); +DO_APP_FUNC(0x02666A60, int32_t, Socket_Send_array_icall, (void * sock, Socket_WSABUF * bufarray, int32_t count, SocketFlags__Enum flags, int32_t * error, bool blocking, MethodInfo * method)); +DO_APP_FUNC(0x02666A70, int32_t, Socket_Send_internal_1, (SafeSocketHandle * safeHandle, uint8_t * buffer, int32_t count, SocketFlags__Enum flags, int32_t * error, bool blocking, MethodInfo * method)); +DO_APP_FUNC(0x02666BA0, int32_t, Socket_Send_icall, (void * sock, uint8_t * buffer, int32_t count, SocketFlags__Enum flags, int32_t * error, bool blocking, MethodInfo * method)); DO_APP_FUNC(0x02666BB0, int32_t, Socket_SendTo_3, (Socket * __this, Byte__Array * buffer, int32_t offset, int32_t size, SocketFlags__Enum socketFlags, EndPoint * remoteEP, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E3E0, Socket_SendTo_3__MethodInfo); DO_APP_FUNC(0x02666E40, int32_t, Socket_SendTo_4, (Socket * __this, Memory_1_Byte_ buffer, int32_t offset, int32_t size, SocketFlags__Enum socketFlags, EndPoint * remoteEP, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E3C0, Socket_SendTo_4__MethodInfo); DO_APP_FUNC(0x026671E0, bool, Socket_SendToAsync_1, (Socket * __this, SocketAsyncEventArgs * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E3F0, Socket_SendToAsync_1__MethodInfo); DO_APP_FUNC(0x02667780, IAsyncResult *, Socket_BeginSendTo, (Socket * __this, Byte__Array * buffer, int32_t offset, int32_t size, SocketFlags__Enum socketFlags, EndPoint * remoteEP, AsyncCallback * callback, Object * state, MethodInfo * method)); DO_APP_FUNC(0x02667C20, void, Socket_BeginSendToCallback, (SocketAsyncResult * sockares, int32_t sent_so_far, MethodInfo * method)); DO_APP_FUNC(0x02667E00, int32_t, Socket_EndSendTo, (Socket * __this, IAsyncResult * asyncResult, MethodInfo * method)); -DO_APP_FUNC(0x02667EC0, int32_t, Socket_SendTo_internal, (SafeSocketHandle * safeHandle, uint8_t * buffer, int32_t count, SocketFlags__Enum flags, SocketAddress * sa, int32_t error, bool blocking, MethodInfo * method)); -DO_APP_FUNC(0x02668000, int32_t, Socket_SendTo_icall, (void * sock, uint8_t * buffer, int32_t count, SocketFlags__Enum flags, SocketAddress * sa, int32_t error, bool blocking, MethodInfo * method)); +DO_APP_FUNC(0x02667EC0, int32_t, Socket_SendTo_internal, (SafeSocketHandle * safeHandle, uint8_t * buffer, int32_t count, SocketFlags__Enum flags, SocketAddress * sa, int32_t * error, bool blocking, MethodInfo * method)); +DO_APP_FUNC(0x02668000, int32_t, Socket_SendTo_icall, (void * sock, uint8_t * buffer, int32_t count, SocketFlags__Enum flags, SocketAddress * sa, int32_t * error, bool blocking, MethodInfo * method)); DO_APP_FUNC(0x02668010, void, Socket_SendFile_1, (Socket * __this, String * fileName, Byte__Array * preBuffer, Byte__Array * postBuffer, TransmitFileOptions__Enum flags, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E418, Socket_SendFile_1__MethodInfo); DO_APP_FUNC(0x02668250, IAsyncResult *, Socket_BeginSendFile_1, (Socket * __this, String * fileName, Byte__Array * preBuffer, Byte__Array * postBuffer, TransmitFileOptions__Enum flags, AsyncCallback * callback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E320, Socket_BeginSendFile_1__MethodInfo); DO_APP_FUNC(0x02668670, void, Socket_EndSendFile, (Socket * __this, IAsyncResult * asyncResult, MethodInfo * method)); -DO_APP_FUNC(0x026687C0, bool, Socket_SendFile_internal, (SafeSocketHandle * safeHandle, String * filename, Byte__Array * pre_buffer, Byte__Array * post_buffer, TransmitFileOptions__Enum flags, int32_t error, bool blocking, MethodInfo * method)); -DO_APP_FUNC(0x02668900, bool, Socket_SendFile_icall, (void * sock, String * filename, Byte__Array * pre_buffer, Byte__Array * post_buffer, TransmitFileOptions__Enum flags, int32_t error, bool blocking, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E328, Socket_EndSendFile__MethodInfo); +DO_APP_FUNC(0x026687C0, bool, Socket_SendFile_internal, (SafeSocketHandle * safeHandle, String * filename, Byte__Array * pre_buffer, Byte__Array * post_buffer, TransmitFileOptions__Enum flags, int32_t * error, bool blocking, MethodInfo * method)); +DO_APP_FUNC(0x02668900, bool, Socket_SendFile_icall, (void * sock, String * filename, Byte__Array * pre_buffer, Byte__Array * post_buffer, TransmitFileOptions__Enum flags, int32_t * error, bool blocking, MethodInfo * method)); DO_APP_FUNC(0x02668910, bool, Socket_SendPacketsAsync, (Socket * __this, SocketAsyncEventArgs * e, MethodInfo * method)); -DO_APP_FUNC(0x0041AF00, bool, Socket_Duplicate_icall, (void * handle, int32_t targetProcessId, void * duplicateHandle, MonoIOError__Enum error, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E318, Socket_SendPacketsAsync__MethodInfo); +DO_APP_FUNC(0x0041AF00, bool, Socket_Duplicate_icall, (void * handle, int32_t targetProcessId, void * * duplicateHandle, MonoIOError__Enum * error, MethodInfo * method)); DO_APP_FUNC(0x02668960, SocketInformation, Socket_DuplicateAndClose, (Socket * __this, int32_t targetProcessId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E348, Socket_DuplicateAndClose__MethodInfo); DO_APP_FUNC(0x02668A90, void, Socket_GetSocketOption, (Socket * __this, SocketOptionLevel__Enum optionLevel, SocketOptionName__Enum optionName, Byte__Array * optionValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E358, Socket_GetSocketOption__MethodInfo); DO_APP_FUNC(0x02668BF0, Byte__Array *, Socket_GetSocketOption_1, (Socket * __this, SocketOptionLevel__Enum optionLevel, SocketOptionName__Enum optionName, int32_t optionLength, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E350, Socket_GetSocketOption_1__MethodInfo); DO_APP_FUNC(0x02668D00, Object *, Socket_GetSocketOption_2, (Socket * __this, SocketOptionLevel__Enum optionLevel, SocketOptionName__Enum optionName, MethodInfo * method)); -DO_APP_FUNC(0x02668F30, void, Socket_GetSocketOption_arr_internal, (SafeSocketHandle * safeHandle, SocketOptionLevel__Enum level, SocketOptionName__Enum name, Byte__Array * byte_val, int32_t error, MethodInfo * method)); -DO_APP_FUNC(0x02669070, void, Socket_GetSocketOption_arr_icall, (void * socket, SocketOptionLevel__Enum level, SocketOptionName__Enum name, Byte__Array * byte_val, int32_t error, MethodInfo * method)); -DO_APP_FUNC(0x02669080, void, Socket_GetSocketOption_obj_internal, (SafeSocketHandle * safeHandle, SocketOptionLevel__Enum level, SocketOptionName__Enum name, Object * obj_val, int32_t error, MethodInfo * method)); -DO_APP_FUNC(0x026691C0, void, Socket_GetSocketOption_obj_icall, (void * socket, SocketOptionLevel__Enum level, SocketOptionName__Enum name, Object * obj_val, int32_t error, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E330, Socket_GetSocketOption_2__MethodInfo); +DO_APP_FUNC(0x02668F30, void, Socket_GetSocketOption_arr_internal, (SafeSocketHandle * safeHandle, SocketOptionLevel__Enum level, SocketOptionName__Enum name, Byte__Array * * byte_val, int32_t * error, MethodInfo * method)); +DO_APP_FUNC(0x02669070, void, Socket_GetSocketOption_arr_icall, (void * socket, SocketOptionLevel__Enum level, SocketOptionName__Enum name, Byte__Array * * byte_val, int32_t * error, MethodInfo * method)); +DO_APP_FUNC(0x02669080, void, Socket_GetSocketOption_obj_internal, (SafeSocketHandle * safeHandle, SocketOptionLevel__Enum level, SocketOptionName__Enum name, Object * * obj_val, int32_t * error, MethodInfo * method)); +DO_APP_FUNC(0x026691C0, void, Socket_GetSocketOption_obj_icall, (void * socket, SocketOptionLevel__Enum level, SocketOptionName__Enum name, Object * * obj_val, int32_t * error, MethodInfo * method)); DO_APP_FUNC(0x026691D0, void, Socket_SetSocketOption_1, (Socket * __this, SocketOptionLevel__Enum optionLevel, SocketOptionName__Enum optionName, Byte__Array * optionValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E2F0, Socket_SetSocketOption_1__MethodInfo); DO_APP_FUNC(0x02669380, void, Socket_SetSocketOption_2, (Socket * __this, SocketOptionLevel__Enum optionLevel, SocketOptionName__Enum optionName, Object * optionValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E2C8, Socket_SetSocketOption_2__MethodInfo); DO_APP_FUNC(0x02669810, void, Socket_SetSocketOption_3, (Socket * __this, SocketOptionLevel__Enum optionLevel, SocketOptionName__Enum optionName, bool optionValue, MethodInfo * method)); DO_APP_FUNC(0x02669830, void, Socket_SetSocketOption_4, (Socket * __this, SocketOptionLevel__Enum optionLevel, SocketOptionName__Enum optionName, int32_t optionValue, MethodInfo * method)); -DO_APP_FUNC(0x02669980, void, Socket_SetSocketOption_internal, (SafeSocketHandle * safeHandle, SocketOptionLevel__Enum level, SocketOptionName__Enum name, Object * obj_val, Byte__Array * byte_val, int32_t int_val, int32_t error, MethodInfo * method)); -DO_APP_FUNC(0x02669AF0, void, Socket_SetSocketOption_icall, (void * socket, SocketOptionLevel__Enum level, SocketOptionName__Enum name, Object * obj_val, Byte__Array * byte_val, int32_t int_val, int32_t error, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E300, Socket_SetSocketOption_4__MethodInfo); +DO_APP_FUNC(0x02669980, void, Socket_SetSocketOption_internal, (SafeSocketHandle * safeHandle, SocketOptionLevel__Enum level, SocketOptionName__Enum name, Object * obj_val, Byte__Array * byte_val, int32_t int_val, int32_t * error, MethodInfo * method)); +DO_APP_FUNC(0x02669AF0, void, Socket_SetSocketOption_icall, (void * socket, SocketOptionLevel__Enum level, SocketOptionName__Enum name, Object * obj_val, Byte__Array * byte_val, int32_t int_val, int32_t * error, MethodInfo * method)); DO_APP_FUNC(0x02669B00, int32_t, Socket_IOControl_1, (Socket * __this, int32_t ioControlCode, Byte__Array * optionInValue, Byte__Array * optionOutValue, MethodInfo * method)); -DO_APP_FUNC(0x02669CB0, int32_t, Socket_IOControl_internal, (SafeSocketHandle * safeHandle, int32_t ioctl_code, Byte__Array * input, Byte__Array * output, int32_t error, MethodInfo * method)); -DO_APP_FUNC(0x02669E00, int32_t, Socket_IOControl_icall, (void * sock, int32_t ioctl_code, Byte__Array * input, Byte__Array * output, int32_t error, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E310, Socket_IOControl_1__MethodInfo); +DO_APP_FUNC(0x02669CB0, int32_t, Socket_IOControl_internal, (SafeSocketHandle * safeHandle, int32_t ioctl_code, Byte__Array * input, Byte__Array * output, int32_t * error, MethodInfo * method)); +DO_APP_FUNC(0x02669E00, int32_t, Socket_IOControl_icall, (void * sock, int32_t ioctl_code, Byte__Array * input, Byte__Array * output, int32_t * error, MethodInfo * method)); DO_APP_FUNC(0x02669E10, void, Socket_Close, (Socket * __this, MethodInfo * method)); DO_APP_FUNC(0x02669E80, void, Socket_Close_1, (Socket * __this, int32_t timeout, MethodInfo * method)); -DO_APP_FUNC(0x02669EF0, void, Socket_Close_icall, (void * socket, int32_t error, MethodInfo * method)); +DO_APP_FUNC(0x02669EF0, void, Socket_Close_icall, (void * socket, int32_t * error, MethodInfo * method)); DO_APP_FUNC(0x0266A040, void, Socket_Shutdown, (Socket * __this, SocketShutdown__Enum how, MethodInfo * method)); -DO_APP_FUNC(0x0266A160, void, Socket_Shutdown_internal, (SafeSocketHandle * safeHandle, SocketShutdown__Enum how, int32_t error, MethodInfo * method)); -DO_APP_FUNC(0x0266A280, void, Socket_Shutdown_icall, (void * socket, SocketShutdown__Enum how, int32_t error, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E2F8, Socket_Shutdown__MethodInfo); +DO_APP_FUNC(0x0266A160, void, Socket_Shutdown_internal, (SafeSocketHandle * safeHandle, SocketShutdown__Enum how, int32_t * error, MethodInfo * method)); +DO_APP_FUNC(0x0266A280, void, Socket_Shutdown_icall, (void * socket, SocketShutdown__Enum how, int32_t * error, MethodInfo * method)); DO_APP_FUNC(0x0266A3D0, void, Socket_Dispose_1, (Socket * __this, bool disposing, MethodInfo * method)); DO_APP_FUNC(0x0266A6E0, void, Socket_Linger, (Socket * __this, void * handle, MethodInfo * method)); DO_APP_FUNC(0x0266A980, void, Socket_ThrowIfDisposedAndClosed, (Socket * __this, Socket * socket, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E278, Socket_ThrowIfDisposedAndClosed__MethodInfo); DO_APP_FUNC(0x0266AA30, void, Socket_ThrowIfDisposedAndClosed_1, (Socket * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E270, Socket_ThrowIfDisposedAndClosed_1__MethodInfo); DO_APP_FUNC(0x0266AAC0, void, Socket_ThrowIfBufferNull, (Socket * __this, Byte__Array * buffer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E268, Socket_ThrowIfBufferNull__MethodInfo); DO_APP_FUNC(0x0266AB30, void, Socket_ThrowIfBufferOutOfRange, (Socket * __this, Byte__Array * buffer, int32_t offset, int32_t size, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E248, Socket_ThrowIfBufferOutOfRange__MethodInfo); DO_APP_FUNC(0x0266AD10, void, Socket_ThrowIfUdp, (Socket * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E258, Socket_ThrowIfUdp__MethodInfo); DO_APP_FUNC(0x0266AD70, SocketAsyncResult *, Socket_ValidateEndIAsyncResult, (Socket * __this, IAsyncResult * ares, String * methodName, String * argName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E2A0, Socket_ValidateEndIAsyncResult__MethodInfo); DO_APP_FUNC(0x0266AEF0, void, Socket_QueueIOSelectorJob, (Socket * __this, SemaphoreSlim * sem, void * handle, IOSelectorJob * job, MethodInfo * method)); DO_APP_FUNC(0x0266B170, void, Socket_InitSocketAsyncEventArgs, (Socket * __this, SocketAsyncEventArgs * e, AsyncCallback * callback, Object * state, SocketOperation__Enum operation, MethodInfo * method)); DO_APP_FUNC(0x0266B3A0, SocketAsyncOperation__Enum, Socket_SocketOperationToSocketAsyncOperation, (Socket * __this, SocketOperation__Enum op, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E288, Socket_SocketOperationToSocketAsyncOperation__MethodInfo); DO_APP_FUNC(0x0266B4D0, IPEndPoint *, Socket_RemapIPEndPoint, (Socket * __this, IPEndPoint * input, MethodInfo * method)); DO_APP_FUNC(0x0266B710, void, Socket_cancel_blocking_socket_operation, (Thread * thread, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, Socket_SupportsPortReuse, (ProtocolType__Enum proto, MethodInfo * method)); @@ -33154,16 +37835,23 @@ DO_APP_FUNC(0x0266D9F0, void, Socket_AwaitableSocketAsyncEventArgs_InvokeContinu DO_APP_FUNC(0x0266DE80, int32_t, Socket_AwaitableSocketAsyncEventArgs_GetResult, (Socket_AwaitableSocketAsyncEventArgs * __this, int16_t token, MethodInfo * method)); DO_APP_FUNC(0x0266DEE0, void, Socket_AwaitableSocketAsyncEventArgs_System_Threading_Tasks_Sources_IValueTaskSource_GetResult, (Socket_AwaitableSocketAsyncEventArgs * __this, int16_t token, MethodInfo * method)); DO_APP_FUNC(0x0266DF30, void, Socket_AwaitableSocketAsyncEventArgs_ThrowIncorrectTokenException, (Socket_AwaitableSocketAsyncEventArgs * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D234B8, Socket_AwaitableSocketAsyncEventArgs_ThrowIncorrectTokenException__MethodInfo); DO_APP_FUNC(0x0266DF90, void, Socket_AwaitableSocketAsyncEventArgs_ThrowMultipleContinuationsException, (Socket_AwaitableSocketAsyncEventArgs * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D234A8, Socket_AwaitableSocketAsyncEventArgs_ThrowMultipleContinuationsException__MethodInfo); DO_APP_FUNC(0x0266DFF0, void, Socket_AwaitableSocketAsyncEventArgs_ThrowException, (Socket_AwaitableSocketAsyncEventArgs * __this, SocketError__Enum error, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D234A0, Socket_AwaitableSocketAsyncEventArgs_ThrowException__MethodInfo); DO_APP_FUNC(0x0266E020, Exception *, Socket_AwaitableSocketAsyncEventArgs_CreateException, (Socket_AwaitableSocketAsyncEventArgs * __this, SocketError__Enum error, MethodInfo * method)); DO_APP_FUNC(0x0266E140, void, Socket_AwaitableSocketAsyncEventArgs__cctor, (MethodInfo * method)); DO_APP_FUNC(0x0266E420, void, Socket_AwaitableSocketAsyncEventArgs_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Socket_AwaitableSocketAsyncEventArgs_c__ctor, (Socket_AwaitableSocketAsyncEventArgs_c * __this, MethodInfo * method)); DO_APP_FUNC(0x0266E4D0, void, Socket_AwaitableSocketAsyncEventArgs_c__OnCompleted_b__14_0, (Socket_AwaitableSocketAsyncEventArgs_c * __this, Object * runState, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D234D8, Socket_AwaitableSocketAsyncEventArgs_c__OnCompleted_b__14_0__MethodInfo); DO_APP_FUNC(0x0266E5A0, void, Socket_AwaitableSocketAsyncEventArgs_c__InvokeContinuation_b__20_0, (Socket_AwaitableSocketAsyncEventArgs_c * __this, Object * s, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23440, Socket_AwaitableSocketAsyncEventArgs_c__InvokeContinuation_b__20_0__MethodInfo); DO_APP_FUNC(0x0266E650, void, Socket_AwaitableSocketAsyncEventArgs_c___cctor_b__27_0, (Socket_AwaitableSocketAsyncEventArgs_c * __this, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23488, Socket_AwaitableSocketAsyncEventArgs_c___cctor_b__27_0__MethodInfo); DO_APP_FUNC(0x0266E6B0, void, Socket_AwaitableSocketAsyncEventArgs_c___cctor_b__27_1, (Socket_AwaitableSocketAsyncEventArgs_c * __this, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23480, Socket_AwaitableSocketAsyncEventArgs_c___cctor_b__27_1__MethodInfo); DO_APP_FUNC(0x0266E710, void, Socket_SendFileHandler__ctor, (Socket_SendFileHandler * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EC600, void, Socket_SendFileHandler_Invoke, (Socket_SendFileHandler * __this, String * fileName, Byte__Array * preBuffer, Byte__Array * postBuffer, TransmitFileOptions__Enum flags, MethodInfo * method)); DO_APP_FUNC(0x0266E850, IAsyncResult *, Socket_SendFileHandler_BeginInvoke, (Socket_SendFileHandler * __this, String * fileName, Byte__Array * preBuffer, Byte__Array * postBuffer, TransmitFileOptions__Enum flags, AsyncCallback * callback, Object * object, MethodInfo * method)); @@ -33178,59 +37866,108 @@ DO_APP_FUNC(0x003BB3C0, IAsyncResult *, Socket_SendFileAsyncResult_get_Original, DO_APP_FUNC(0x0266EA40, void, Socket_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Socket_c__ctor, (Socket_c * __this, MethodInfo * method)); DO_APP_FUNC(0x0266EAF0, Socket_CachedEventArgs *, Socket_c__AcceptAsync_b__7_0, (Socket_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EE90, Socket_c__AcceptAsync_b__7_0__MethodInfo); DO_APP_FUNC(0x0266EB40, void, Socket_c__AcceptAsyncApm_b__8_0, (Socket_c * __this, IAsyncResult * iar, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EE38, Socket_c__AcceptAsyncApm_b__8_0__MethodInfo); DO_APP_FUNC(0x0266ED10, void, Socket_c__ConnectAsync_b__9_0, (Socket_c * __this, IAsyncResult * iar, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EE58, Socket_c__ConnectAsync_b__9_0__MethodInfo); DO_APP_FUNC(0x0266EEB0, void, Socket_c__ConnectAsync_b__10_0, (Socket_c * __this, IAsyncResult * iar, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EDA0, Socket_c__ConnectAsync_b__10_0__MethodInfo); DO_APP_FUNC(0x0266F050, void, Socket_c__ConnectAsync_b__11_0, (Socket_c * __this, IAsyncResult * iar, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EDA8, Socket_c__ConnectAsync_b__11_0__MethodInfo); DO_APP_FUNC(0x0266F1F0, void, Socket_c__ConnectAsync_b__12_0, (Socket_c * __this, IAsyncResult * iar, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1ED88, Socket_c__ConnectAsync_b__12_0__MethodInfo); DO_APP_FUNC(0x0266F390, Socket_CachedEventArgs *, Socket_c__ReceiveAsync_b__14_0, (Socket_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EDE0, Socket_c__ReceiveAsync_b__14_0__MethodInfo); DO_APP_FUNC(0x0266F3E0, Socket_AwaitableSocketAsyncEventArgs *, Socket_c__ReceiveAsync_b__14_1, (Socket_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EDD8, Socket_c__ReceiveAsync_b__14_1__MethodInfo); DO_APP_FUNC(0x0266F440, void, Socket_c__ReceiveAsyncApm_b__15_0, (Socket_c * __this, IAsyncResult * iar, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EDB0, Socket_c__ReceiveAsyncApm_b__15_0__MethodInfo); DO_APP_FUNC(0x0266F5D0, void, Socket_c__ReceiveAsyncApm_b__15_1, (Socket_c * __this, IAsyncResult * iar, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EDD0, Socket_c__ReceiveAsyncApm_b__15_1__MethodInfo); DO_APP_FUNC(0x0266FAA0, void, Socket_c__ReceiveAsyncApm_b__17_0, (Socket_c * __this, IAsyncResult * iar, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1ED18, Socket_c__ReceiveAsyncApm_b__17_0__MethodInfo); DO_APP_FUNC(0x0266FC30, void, Socket_c__ReceiveFromAsync_b__18_0, (Socket_c * __this, IAsyncResult * iar, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1ED20, Socket_c__ReceiveFromAsync_b__18_0__MethodInfo); DO_APP_FUNC(0x0266FED0, void, Socket_c__ReceiveMessageFromAsync_b__19_0, (Socket_c * __this, IAsyncResult * iar, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1ED08, Socket_c__ReceiveMessageFromAsync_b__19_0__MethodInfo); DO_APP_FUNC(0x02670040, Socket_CachedEventArgs *, Socket_c__SendAsync_b__21_0, (Socket_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1ED78, Socket_c__SendAsync_b__21_0__MethodInfo); DO_APP_FUNC(0x02670090, Socket_AwaitableSocketAsyncEventArgs *, Socket_c__SendAsync_b__21_1, (Socket_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1ED70, Socket_c__SendAsync_b__21_1__MethodInfo); DO_APP_FUNC(0x026700F0, Socket_CachedEventArgs *, Socket_c__SendAsyncForNetworkStream_b__22_0, (Socket_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1ED48, Socket_c__SendAsyncForNetworkStream_b__22_0__MethodInfo); DO_APP_FUNC(0x02670140, Socket_AwaitableSocketAsyncEventArgs *, Socket_c__SendAsyncForNetworkStream_b__22_1, (Socket_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1ED40, Socket_c__SendAsyncForNetworkStream_b__22_1__MethodInfo); DO_APP_FUNC(0x026701A0, void, Socket_c__SendAsyncApm_b__23_0, (Socket_c * __this, IAsyncResult * iar, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1ED50, Socket_c__SendAsyncApm_b__23_0__MethodInfo); DO_APP_FUNC(0x02670330, void, Socket_c__SendAsyncApm_b__23_1, (Socket_c * __this, IAsyncResult * iar, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1ECB8, Socket_c__SendAsyncApm_b__23_1__MethodInfo); DO_APP_FUNC(0x02670610, void, Socket_c__SendAsyncApm_b__25_0, (Socket_c * __this, IAsyncResult * iar, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1ECC0, Socket_c__SendAsyncApm_b__25_0__MethodInfo); DO_APP_FUNC(0x026707A0, void, Socket_c__SendToAsync_b__26_0, (Socket_c * __this, IAsyncResult * iar, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1ECA0, Socket_c__SendToAsync_b__26_0__MethodInfo); DO_APP_FUNC(0x02670930, Socket_CachedEventArgs *, Socket_c__RentSocketAsyncEventArgs_b__34_0, (Socket_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EC20, Socket_c__RentSocketAsyncEventArgs_b__34_0__MethodInfo); DO_APP_FUNC(0x02670980, void, Socket_c__SendAsync_b__295_0, (Socket_c * __this, IOAsyncResult * s, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E470, Socket_c__SendAsync_b__295_0__MethodInfo); DO_APP_FUNC(0x02670A10, void, Socket_c__BeginSend_b__297_0, (Socket_c * __this, IOAsyncResult * s, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E450, Socket_c__BeginSend_b__297_0__MethodInfo); DO_APP_FUNC(0x02670AA0, void, Socket_c__SendToAsync_b__308_0, (Socket_c * __this, IOAsyncResult * s, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E400, Socket_c__SendToAsync_b__308_0__MethodInfo); DO_APP_FUNC(0x02670B30, void, Socket_c__BeginSendTo_b__310_0, (Socket_c * __this, IOAsyncResult * s, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E370, Socket_c__BeginSendTo_b__310_0__MethodInfo); DO_APP_FUNC(0x02670BC0, void, Socket_c___cctor_b__367_0, (Socket_c * __this, Object * s, SocketAsyncEventArgs * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E1A8, Socket_c___cctor_b__367_0__MethodInfo); DO_APP_FUNC(0x02670E20, void, Socket_c___cctor_b__367_1, (Socket_c * __this, Object * s, SocketAsyncEventArgs * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E1F8, Socket_c___cctor_b__367_1__MethodInfo); DO_APP_FUNC(0x02670F00, void, Socket_c___cctor_b__367_2, (Socket_c * __this, Object * s, SocketAsyncEventArgs * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E230, Socket_c___cctor_b__367_2__MethodInfo); DO_APP_FUNC(0x02670FE0, void, Socket_c___cctor_b__367_3, (Socket_c * __this, IAsyncResult * ares, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E228, Socket_c___cctor_b__367_3__MethodInfo); DO_APP_FUNC(0x026713F0, void, Socket_c___cctor_b__367_4, (Socket_c * __this, IOAsyncResult * ares, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E220, Socket_c___cctor_b__367_4__MethodInfo); DO_APP_FUNC(0x02671530, void, Socket_c___cctor_b__367_5, (Socket_c * __this, IOAsyncResult * ares, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E218, Socket_c___cctor_b__367_5__MethodInfo); DO_APP_FUNC(0x02671770, void, Socket_c___cctor_b__367_6, (Socket_c * __this, IAsyncResult * ares, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E1F0, Socket_c___cctor_b__367_6__MethodInfo); DO_APP_FUNC(0x02671A00, void, Socket_c___cctor_b__367_7, (Socket_c * __this, IOAsyncResult * ares, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E1E8, Socket_c___cctor_b__367_7__MethodInfo); DO_APP_FUNC(0x02671DA0, void, Socket_c___cctor_b__367_8, (Socket_c * __this, IAsyncResult * ares, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E1E0, Socket_c___cctor_b__367_8__MethodInfo); DO_APP_FUNC(0x026720A0, void, Socket_c___cctor_b__367_9, (Socket_c * __this, IOAsyncResult * ares, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E1D8, Socket_c___cctor_b__367_9__MethodInfo); DO_APP_FUNC(0x02672270, void, Socket_c___cctor_b__367_10, (Socket_c * __this, IAsyncResult * ares, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E1A0, Socket_c___cctor_b__367_10__MethodInfo); DO_APP_FUNC(0x026724E0, void, Socket_c___cctor_b__367_11, (Socket_c * __this, IOAsyncResult * ares, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E1D0, Socket_c___cctor_b__367_11__MethodInfo); DO_APP_FUNC(0x026727C0, void, Socket_c___cctor_b__367_12, (Socket_c * __this, IOAsyncResult * ares, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E1C8, Socket_c___cctor_b__367_12__MethodInfo); DO_APP_FUNC(0x02672890, void, Socket_c___cctor_b__367_13, (Socket_c * __this, IAsyncResult * ares, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E1C0, Socket_c___cctor_b__367_13__MethodInfo); DO_APP_FUNC(0x02672C30, void, Socket_c___cctor_b__367_14, (Socket_c * __this, IOAsyncResult * ares, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E1B8, Socket_c___cctor_b__367_14__MethodInfo); DO_APP_FUNC(0x02672E00, void, Socket_c___cctor_b__367_15, (Socket_c * __this, IAsyncResult * ares, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E210, Socket_c___cctor_b__367_15__MethodInfo); DO_APP_FUNC(0x02673070, void, Socket_c___cctor_b__367_16, (Socket_c * __this, IOAsyncResult * ares, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E208, Socket_c___cctor_b__367_16__MethodInfo); DO_APP_FUNC(0x02673140, void, Socket_c___cctor_b__367_17, (Socket_c * __this, IAsyncResult * ares, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E200, Socket_c___cctor_b__367_17__MethodInfo); DO_APP_FUNC(0x003AE050, void, Socket_c_DisplayClass240_0__ctor, (Socket_c_DisplayClass240_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x026733B0, void, Socket_c_DisplayClass240_0__BeginConnect_b__0, (Socket_c_DisplayClass240_0 * __this, Task_1_System_Net_IPAddress_ * t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E6A8, Socket_c_DisplayClass240_0__BeginConnect_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, Socket_c_DisplayClass298_0__ctor, (Socket_c_DisplayClass298_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x02673640, void, Socket_c_DisplayClass298_0__BeginSendCallback_b__0, (Socket_c_DisplayClass298_0 * __this, IOAsyncResult * s, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E460, Socket_c_DisplayClass298_0__BeginSendCallback_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, Socket_c_DisplayClass311_0__ctor, (Socket_c_DisplayClass311_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x026736E0, void, Socket_c_DisplayClass311_0__BeginSendToCallback_b__0, (Socket_c_DisplayClass311_0 * __this, IOAsyncResult * s, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E3A8, Socket_c_DisplayClass311_0__BeginSendToCallback_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, Socket_c_DisplayClass316_0__ctor, (Socket_c_DisplayClass316_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x02673780, void, Socket_c_DisplayClass316_0__BeginSendFile_b__0, (Socket_c_DisplayClass316_0 * __this, IAsyncResult * ar, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E428, Socket_c_DisplayClass316_0__BeginSendFile_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, Socket_c_DisplayClass355_0__ctor, (Socket_c_DisplayClass355_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x02673820, void, Socket_c_DisplayClass355_0__QueueIOSelectorJob_b__0, (Socket_c_DisplayClass355_0 * __this, Task * t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E2B0, Socket_c_DisplayClass355_0__QueueIOSelectorJob_b__0__MethodInfo); DO_APP_FUNC(0x02673880, int32_t, SocketException_WSAGetLastError_icall, (MethodInfo * method)); DO_APP_FUNC(0x026738B0, void, SocketException__ctor, (SocketException * __this, MethodInfo * method)); DO_APP_FUNC(0x02595D50, void, SocketException__ctor_1, (SocketException * __this, int32_t error, String * message, MethodInfo * method)); @@ -33242,64 +37979,77 @@ DO_APP_FUNC(0x02595D90, void, SocketException__ctor_6, (SocketException * __this DO_APP_FUNC(0x00C2C5E0, int32_t, SocketException_get_ErrorCode, (SocketException * __this, MethodInfo * method)); DO_APP_FUNC(0x02673AD0, String *, SocketException_get_Message, (SocketException * __this, MethodInfo * method)); DO_APP_FUNC(0x00C2C5E0, SocketError__Enum, SocketException_get_SocketErrorCode, (SocketException * __this, MethodInfo * method)); -DO_APP_FUNC(0x004CB450, void, IPPacketInformation__ctor, (IPPacketInformation__Boxed * __this, IPAddress * address, int32_t networkInterface, MethodInfo * method)); -DO_APP_FUNC(0x00471910, IPAddress *, IPPacketInformation_get_Address, (IPPacketInformation__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471920, int32_t, IPPacketInformation_get_Interface, (IPPacketInformation__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x004CB450, void, IPPacketInformation__ctor, (IPPacketInformation * __this, IPAddress * address, int32_t networkInterface, MethodInfo * method)); +DO_APP_FUNC(0x00471910, IPAddress *, IPPacketInformation_get_Address, (IPPacketInformation * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471920, int32_t, IPPacketInformation_get_Interface, (IPPacketInformation * __this, MethodInfo * method)); DO_APP_FUNC(0x02673B70, bool, IPPacketInformation_op_Equality, (IPPacketInformation packetInformation1, IPPacketInformation packetInformation2, MethodInfo * method)); DO_APP_FUNC(0x02673BE0, bool, IPPacketInformation_op_Inequality, (IPPacketInformation packetInformation1, IPPacketInformation packetInformation2, MethodInfo * method)); -DO_APP_FUNC(0x02673C50, bool, IPPacketInformation_Equals, (IPPacketInformation__Boxed * __this, Object * comparand, MethodInfo * method)); -DO_APP_FUNC(0x02673D20, int32_t, IPPacketInformation_GetHashCode, (IPPacketInformation__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02673C50, bool, IPPacketInformation_Equals, (IPPacketInformation * __this, Object * comparand, MethodInfo * method)); +DO_APP_FUNC(0x02673D20, int32_t, IPPacketInformation_GetHashCode, (IPPacketInformation * __this, MethodInfo * method)); DO_APP_FUNC(0x01F4E940, void, LingerOption__ctor, (LingerOption * __this, bool enable, int32_t seconds, MethodInfo * method)); DO_APP_FUNC(0x003BCD20, bool, LingerOption_get_Enabled, (LingerOption * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD30, void, LingerOption_set_Enabled, (LingerOption * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x003BCD70, int32_t, LingerOption_get_LingerTime, (LingerOption * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD80, void, LingerOption_set_LingerTime, (LingerOption * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x02673D60, void, MulticastOption__ctor, (MulticastOption * __this, IPAddress * group, IPAddress * mcint, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D231D0, MulticastOption__ctor__MethodInfo); DO_APP_FUNC(0x02673E30, void, MulticastOption__ctor_1, (MulticastOption * __this, IPAddress * group, int32_t interfaceIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D231B0, MulticastOption__ctor_1__MethodInfo); DO_APP_FUNC(0x02673F00, void, MulticastOption__ctor_2, (MulticastOption * __this, IPAddress * group, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23128, MulticastOption__ctor_2__MethodInfo); DO_APP_FUNC(0x003BB3C0, IPAddress *, MulticastOption_get_Group, (MulticastOption * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, MulticastOption_set_Group, (MulticastOption * __this, IPAddress * value, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, IPAddress *, MulticastOption_get_LocalAddress, (MulticastOption * __this, MethodInfo * method)); DO_APP_FUNC(0x02674080, void, MulticastOption_set_LocalAddress, (MulticastOption * __this, IPAddress * value, MethodInfo * method)); DO_APP_FUNC(0x003CC980, int32_t, MulticastOption_get_InterfaceIndex, (MulticastOption * __this, MethodInfo * method)); DO_APP_FUNC(0x026740E0, void, MulticastOption_set_InterfaceIndex, (MulticastOption * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23178, MulticastOption_set_InterfaceIndex__MethodInfo); DO_APP_FUNC(0x026741B0, void, IPv6MulticastOption__ctor, (IPv6MulticastOption * __this, IPAddress * group, int64_t ifindex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23168, IPv6MulticastOption__ctor__MethodInfo); DO_APP_FUNC(0x026742E0, void, IPv6MulticastOption__ctor_1, (IPv6MulticastOption * __this, IPAddress * group, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23148, IPv6MulticastOption__ctor_1__MethodInfo); DO_APP_FUNC(0x003BB3C0, IPAddress *, IPv6MulticastOption_get_Group, (IPv6MulticastOption * __this, MethodInfo * method)); DO_APP_FUNC(0x026743A0, void, IPv6MulticastOption_set_Group, (IPv6MulticastOption * __this, IPAddress * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23010, IPv6MulticastOption_set_Group__MethodInfo); DO_APP_FUNC(0x003BB3D0, int64_t, IPv6MulticastOption_get_InterfaceIndex, (IPv6MulticastOption * __this, MethodInfo * method)); DO_APP_FUNC(0x02674460, void, IPv6MulticastOption_set_InterfaceIndex, (IPv6MulticastOption * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23000, IPv6MulticastOption_set_InterfaceIndex__MethodInfo); DO_APP_FUNC(0x003AE050, void, SendPacketsElement__ctor, (SendPacketsElement * __this, MethodInfo * method)); DO_APP_FUNC(0x026744E0, void, SendPacketsElement__ctor_1, (SendPacketsElement * __this, String * filepath, MethodInfo * method)); DO_APP_FUNC(0x02674570, void, SendPacketsElement__ctor_2, (SendPacketsElement * __this, String * filepath, int32_t offset, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x02674590, void, SendPacketsElement__ctor_3, (SendPacketsElement * __this, String * filepath, int32_t offset, int32_t count, bool endOfPacket, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22FF0, SendPacketsElement__ctor_3__MethodInfo); DO_APP_FUNC(0x026746D0, void, SendPacketsElement__ctor_4, (SendPacketsElement * __this, Byte__Array * buffer, MethodInfo * method)); DO_APP_FUNC(0x02674700, void, SendPacketsElement__ctor_5, (SendPacketsElement * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x02674720, void, SendPacketsElement__ctor_6, (SendPacketsElement * __this, Byte__Array * buffer, int32_t offset, int32_t count, bool endOfPacket, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23050, SendPacketsElement__ctor_6__MethodInfo); DO_APP_FUNC(0x02674870, void, SendPacketsElement_Initialize, (SendPacketsElement * __this, String * filePath, Byte__Array * buffer, int32_t offset, int32_t count, bool endOfPacket, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, String *, SendPacketsElement_get_FilePath, (SendPacketsElement * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Byte__Array *, SendPacketsElement_get_Buffer, (SendPacketsElement * __this, MethodInfo * method)); DO_APP_FUNC(0x003CD280, int32_t, SendPacketsElement_get_Count, (SendPacketsElement * __this, MethodInfo * method)); DO_APP_FUNC(0x003CC980, int32_t, SendPacketsElement_get_Offset, (SendPacketsElement * __this, MethodInfo * method)); DO_APP_FUNC(0x00424C10, bool, SendPacketsElement_get_EndOfPacket, (SendPacketsElement * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, Byte__Array *, SocketInformation_get_ProtocolInformation, (SocketInformation__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, SocketInformation_set_ProtocolInformation, (SocketInformation__Boxed * __this, Byte__Array * value, MethodInfo * method)); -DO_APP_FUNC(0x00471920, SocketInformationOptions__Enum, SocketInformation_get_Options, (SocketInformation__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018C6CC0, void, SocketInformation_set_Options, (SocketInformation__Boxed * __this, SocketInformationOptions__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x02674940, bool, SocketInformation_get_IsNonBlocking, (SocketInformation__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02674950, void, SocketInformation_set_IsNonBlocking, (SocketInformation__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02674970, bool, SocketInformation_get_IsConnected, (SocketInformation__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02674980, void, SocketInformation_set_IsConnected, (SocketInformation__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x026749A0, bool, SocketInformation_get_IsListening, (SocketInformation__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x026749B0, void, SocketInformation_set_IsListening, (SocketInformation__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x026749D0, bool, SocketInformation_get_UseOnlyOverlappedIO, (SocketInformation__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x026749E0, void, SocketInformation_set_UseOnlyOverlappedIO, (SocketInformation__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, EndPoint *, SocketInformation_get_RemoteEndPoint, (SocketInformation__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCBE0, void, SocketInformation_set_RemoteEndPoint, (SocketInformation__Boxed * __this, EndPoint * value, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Byte__Array *, SocketInformation_get_ProtocolInformation, (SocketInformation * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, SocketInformation_set_ProtocolInformation, (SocketInformation * __this, Byte__Array * value, MethodInfo * method)); +DO_APP_FUNC(0x00471920, SocketInformationOptions__Enum, SocketInformation_get_Options, (SocketInformation * __this, MethodInfo * method)); +DO_APP_FUNC(0x018C6CC0, void, SocketInformation_set_Options, (SocketInformation * __this, SocketInformationOptions__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x02674940, bool, SocketInformation_get_IsNonBlocking, (SocketInformation * __this, MethodInfo * method)); +DO_APP_FUNC(0x02674950, void, SocketInformation_set_IsNonBlocking, (SocketInformation * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02674970, bool, SocketInformation_get_IsConnected, (SocketInformation * __this, MethodInfo * method)); +DO_APP_FUNC(0x02674980, void, SocketInformation_set_IsConnected, (SocketInformation * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x026749A0, bool, SocketInformation_get_IsListening, (SocketInformation * __this, MethodInfo * method)); +DO_APP_FUNC(0x026749B0, void, SocketInformation_set_IsListening, (SocketInformation * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x026749D0, bool, SocketInformation_get_UseOnlyOverlappedIO, (SocketInformation * __this, MethodInfo * method)); +DO_APP_FUNC(0x026749E0, void, SocketInformation_set_UseOnlyOverlappedIO, (SocketInformation * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, EndPoint *, SocketInformation_get_RemoteEndPoint, (SocketInformation * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCBE0, void, SocketInformation_set_RemoteEndPoint, (SocketInformation * __this, EndPoint * value, MethodInfo * method)); DO_APP_FUNC(0x02674A00, void, TcpClient__ctor, (TcpClient * __this, IPEndPoint * localEP, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23040, TcpClient__ctor__MethodInfo); DO_APP_FUNC(0x02674AC0, void, TcpClient__ctor_1, (TcpClient * __this, MethodInfo * method)); DO_APP_FUNC(0x02674AD0, void, TcpClient__ctor_2, (TcpClient * __this, AddressFamily__Enum family, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22FC8, TcpClient__ctor_2__MethodInfo); DO_APP_FUNC(0x02674BD0, void, TcpClient__ctor_3, (TcpClient * __this, String * hostname, int32_t port, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22FE8, TcpClient__ctor_3__MethodInfo); DO_APP_FUNC(0x02674DF0, void, TcpClient__ctor_4, (TcpClient * __this, Socket * acceptedSocket, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, Socket *, TcpClient_get_Client, (TcpClient * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, TcpClient_set_Client, (TcpClient * __this, Socket * value, MethodInfo * method)); @@ -33310,17 +38060,25 @@ DO_APP_FUNC(0x02674E70, bool, TcpClient_get_Connected, (TcpClient * __this, Meth DO_APP_FUNC(0x02674E90, bool, TcpClient_get_ExclusiveAddressUse, (TcpClient * __this, MethodInfo * method)); DO_APP_FUNC(0x02674EB0, void, TcpClient_set_ExclusiveAddressUse, (TcpClient * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x02674ED0, void, TcpClient_Connect, (TcpClient * __this, String * hostname, int32_t port, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22FE0, TcpClient_Connect__MethodInfo); DO_APP_FUNC(0x026756D0, void, TcpClient_Connect_1, (TcpClient * __this, IPAddress * address, int32_t port, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D230C8, TcpClient_Connect_1__MethodInfo); DO_APP_FUNC(0x026758C0, void, TcpClient_Connect_2, (TcpClient * __this, IPEndPoint * remoteEP, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D230B8, TcpClient_Connect_2__MethodInfo); DO_APP_FUNC(0x026759C0, void, TcpClient_Connect_3, (TcpClient * __this, IPAddress__Array * ipAddresses, int32_t port, MethodInfo * method)); DO_APP_FUNC(0x026759F0, IAsyncResult *, TcpClient_BeginConnect, (TcpClient * __this, String * host, int32_t port, AsyncCallback * requestCallback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23090, TcpClient_BeginConnect__MethodInfo); DO_APP_FUNC(0x02675A20, IAsyncResult *, TcpClient_BeginConnect_1, (TcpClient * __this, IPAddress * address, int32_t port, AsyncCallback * requestCallback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23080, TcpClient_BeginConnect_1__MethodInfo); DO_APP_FUNC(0x02675A50, IAsyncResult *, TcpClient_BeginConnect_2, (TcpClient * __this, IPAddress__Array * addresses, int32_t port, AsyncCallback * requestCallback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22EB0, TcpClient_BeginConnect_2__MethodInfo); DO_APP_FUNC(0x02675A80, void, TcpClient_EndConnect, (TcpClient * __this, IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23070, TcpClient_EndConnect__MethodInfo); DO_APP_FUNC(0x02675AB0, Task *, TcpClient_ConnectAsync, (TcpClient * __this, IPAddress * address, int32_t port, MethodInfo * method)); DO_APP_FUNC(0x02675C60, Task *, TcpClient_ConnectAsync_1, (TcpClient * __this, String * host, int32_t port, MethodInfo * method)); DO_APP_FUNC(0x02675E10, Task *, TcpClient_ConnectAsync_2, (TcpClient * __this, IPAddress__Array * addresses, int32_t port, MethodInfo * method)); DO_APP_FUNC(0x02675FC0, NetworkStream *, TcpClient_GetStream, (TcpClient * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22EF0, TcpClient_GetStream__MethodInfo); DO_APP_FUNC(0x02676140, void, TcpClient_Close, (TcpClient * __this, MethodInfo * method)); DO_APP_FUNC(0x02676180, void, TcpClient_Dispose, (TcpClient * __this, bool disposing, MethodInfo * method)); DO_APP_FUNC(0x02676330, void, TcpClient_Dispose_1, (TcpClient * __this, MethodInfo * method)); @@ -33340,33 +38098,51 @@ DO_APP_FUNC(0x026765D0, void, TcpClient_set_NoDelay, (TcpClient * __this, bool v DO_APP_FUNC(0x02676610, void, TcpClient_initialize, (TcpClient * __this, MethodInfo * method)); DO_APP_FUNC(0x026766E0, int32_t, TcpClient_numericOption, (TcpClient * __this, SocketOptionLevel__Enum optionLevel, SocketOptionName__Enum optionName, MethodInfo * method)); DO_APP_FUNC(0x02676770, void, TcpListener__ctor, (TcpListener * __this, IPEndPoint * localEP, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22F70, TcpListener__ctor__MethodInfo); DO_APP_FUNC(0x02676930, void, TcpListener__ctor_1, (TcpListener * __this, IPAddress * localaddr, int32_t port, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22F98, TcpListener__ctor_1__MethodInfo); DO_APP_FUNC(0x02676BC0, void, TcpListener__ctor_2, (TcpListener * __this, int32_t port, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22F18, TcpListener__ctor_2__MethodInfo); DO_APP_FUNC(0x02676E30, TcpListener *, TcpListener_Create, (int32_t port, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22F48, TcpListener_Create__MethodInfo); DO_APP_FUNC(0x003BB3D0, Socket *, TcpListener_get_Server, (TcpListener * __this, MethodInfo * method)); DO_APP_FUNC(0x005F7520, bool, TcpListener_get_Active, (TcpListener * __this, MethodInfo * method)); DO_APP_FUNC(0x02676F80, EndPoint *, TcpListener_get_LocalEndpoint, (TcpListener * __this, MethodInfo * method)); DO_APP_FUNC(0x02676FB0, bool, TcpListener_get_ExclusiveAddressUse, (TcpListener * __this, MethodInfo * method)); DO_APP_FUNC(0x02676FD0, void, TcpListener_set_ExclusiveAddressUse, (TcpListener * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22D88, TcpListener_set_ExclusiveAddressUse__MethodInfo); DO_APP_FUNC(0x02677070, void, TcpListener_AllowNatTraversal, (TcpListener * __this, bool allowed, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22D78, TcpListener_AllowNatTraversal__MethodInfo); DO_APP_FUNC(0x02677130, void, TcpListener_Start, (TcpListener * __this, MethodInfo * method)); DO_APP_FUNC(0x02677140, void, TcpListener_Start_1, (TcpListener * __this, int32_t backlog, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22D68, TcpListener_Start_1__MethodInfo); DO_APP_FUNC(0x02677280, void, TcpListener_Stop, (TcpListener * __this, MethodInfo * method)); DO_APP_FUNC(0x02677400, bool, TcpListener_Pending, (TcpListener * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22D30, TcpListener_Pending__MethodInfo); DO_APP_FUNC(0x026774A0, Socket *, TcpListener_AcceptSocket, (TcpListener * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22D28, TcpListener_AcceptSocket__MethodInfo); DO_APP_FUNC(0x02677540, TcpClient *, TcpListener_AcceptTcpClient, (TcpListener * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22D50, TcpListener_AcceptTcpClient__MethodInfo); DO_APP_FUNC(0x02677670, IAsyncResult *, TcpListener_BeginAcceptSocket, (TcpListener * __this, AsyncCallback * callback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22D48, TcpListener_BeginAcceptSocket__MethodInfo); DO_APP_FUNC(0x02677710, Socket *, TcpListener_EndAcceptSocket, (TcpListener * __this, IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22E30, TcpListener_EndAcceptSocket__MethodInfo); DO_APP_FUNC(0x02677850, IAsyncResult *, TcpListener_BeginAcceptTcpClient, (TcpListener * __this, AsyncCallback * callback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22E10, TcpListener_BeginAcceptTcpClient__MethodInfo); DO_APP_FUNC(0x026778F0, TcpClient *, TcpListener_EndAcceptTcpClient, (TcpListener * __this, IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22E50, TcpListener_EndAcceptTcpClient__MethodInfo); DO_APP_FUNC(0x02677A80, Task_1_System_Net_Sockets_Socket_ *, TcpListener_AcceptSocketAsync, (TcpListener * __this, MethodInfo * method)); DO_APP_FUNC(0x02677BE0, Task_1_System_Net_Sockets_TcpClient_ *, TcpListener_AcceptTcpClientAsync, (TcpListener * __this, MethodInfo * method)); DO_APP_FUNC(0x02677D40, void, UdpClient__ctor, (UdpClient * __this, MethodInfo * method)); DO_APP_FUNC(0x02677D50, void, UdpClient__ctor_1, (UdpClient * __this, AddressFamily__Enum family, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22CA0, UdpClient__ctor_1__MethodInfo); DO_APP_FUNC(0x02677ED0, void, UdpClient__ctor_2, (UdpClient * __this, int32_t port, MethodInfo * method)); DO_APP_FUNC(0x02677EE0, void, UdpClient__ctor_3, (UdpClient * __this, int32_t port, AddressFamily__Enum family, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22C88, UdpClient__ctor_3__MethodInfo); DO_APP_FUNC(0x02678160, void, UdpClient__ctor_4, (UdpClient * __this, IPEndPoint * localEP, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22C38, UdpClient__ctor_4__MethodInfo); DO_APP_FUNC(0x026782A0, void, UdpClient__ctor_5, (UdpClient * __this, String * hostname, int32_t port, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22C50, UdpClient__ctor_5__MethodInfo); DO_APP_FUNC(0x003BB3C0, Socket *, UdpClient_get_Client, (UdpClient * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, UdpClient_set_Client, (UdpClient * __this, Socket * value, MethodInfo * method)); DO_APP_FUNC(0x003BCC40, bool, UdpClient_get_Active, (UdpClient * __this, MethodInfo * method)); @@ -33388,47 +38164,72 @@ DO_APP_FUNC(0x02678990, void, UdpClient_FreeResources, (UdpClient * __this, Meth DO_APP_FUNC(0x02676330, void, UdpClient_Dispose, (UdpClient * __this, MethodInfo * method)); DO_APP_FUNC(0x026789E0, void, UdpClient_Dispose_1, (UdpClient * __this, bool disposing, MethodInfo * method)); DO_APP_FUNC(0x02678A80, void, UdpClient_Connect, (UdpClient * __this, String * hostname, int32_t port, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22CF8, UdpClient_Connect__MethodInfo); DO_APP_FUNC(0x02679130, void, UdpClient_Connect_1, (UdpClient * __this, IPAddress * addr, int32_t port, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22D18, UdpClient_Connect_1__MethodInfo); DO_APP_FUNC(0x02679320, void, UdpClient_Connect_2, (UdpClient * __this, IPEndPoint * endPoint, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22D00, UdpClient_Connect_2__MethodInfo); DO_APP_FUNC(0x02679430, void, UdpClient_CheckForBroadcast, (UdpClient * __this, IPAddress * ipAddress, MethodInfo * method)); DO_APP_FUNC(0x02679510, bool, UdpClient_IsBroadcast, (IPAddress * address, MethodInfo * method)); DO_APP_FUNC(0x026795A0, int32_t, UdpClient_Send, (UdpClient * __this, Byte__Array * dgram, int32_t bytes, IPEndPoint * endPoint, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22CB8, UdpClient_Send__MethodInfo); DO_APP_FUNC(0x02679780, int32_t, UdpClient_Send_1, (UdpClient * __this, Byte__Array * dgram, int32_t bytes, String * hostname, int32_t port, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22CC8, UdpClient_Send_1__MethodInfo); DO_APP_FUNC(0x02679B00, int32_t, UdpClient_Send_2, (UdpClient * __this, Byte__Array * dgram, int32_t bytes, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22BA0, UdpClient_Send_2__MethodInfo); DO_APP_FUNC(0x02679C70, IAsyncResult *, UdpClient_BeginSend, (UdpClient * __this, Byte__Array * datagram, int32_t bytes, IPEndPoint * endPoint, AsyncCallback * requestCallback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22B98, UdpClient_BeginSend__MethodInfo); DO_APP_FUNC(0x02679EF0, IAsyncResult *, UdpClient_BeginSend_1, (UdpClient * __this, Byte__Array * datagram, int32_t bytes, String * hostname, int32_t port, AsyncCallback * requestCallback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22BB8, UdpClient_BeginSend_1__MethodInfo); DO_APP_FUNC(0x0267A170, IAsyncResult *, UdpClient_BeginSend_2, (UdpClient * __this, Byte__Array * datagram, int32_t bytes, AsyncCallback * requestCallback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22AE8, UdpClient_BeginSend_2__MethodInfo); DO_APP_FUNC(0x0267A1A0, int32_t, UdpClient_EndSend, (UdpClient * __this, IAsyncResult * asyncResult, MethodInfo * method)); -DO_APP_FUNC(0x0267A270, Byte__Array *, UdpClient_Receive, (UdpClient * __this, IPEndPoint * remoteEP, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22BA8, UdpClient_EndSend__MethodInfo); +DO_APP_FUNC(0x0267A270, Byte__Array *, UdpClient_Receive, (UdpClient * __this, IPEndPoint * * remoteEP, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22B70, UdpClient_Receive__MethodInfo); DO_APP_FUNC(0x0267A510, IAsyncResult *, UdpClient_BeginReceive, (UdpClient * __this, AsyncCallback * requestCallback, Object * state, MethodInfo * method)); -DO_APP_FUNC(0x0267A670, Byte__Array *, UdpClient_EndReceive, (UdpClient * __this, IAsyncResult * asyncResult, IPEndPoint * remoteEP, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22B88, UdpClient_BeginReceive__MethodInfo); +DO_APP_FUNC(0x0267A670, Byte__Array *, UdpClient_EndReceive, (UdpClient * __this, IAsyncResult * asyncResult, IPEndPoint * * remoteEP, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22B78, UdpClient_EndReceive__MethodInfo); DO_APP_FUNC(0x0267A900, void, UdpClient_JoinMulticastGroup, (UdpClient * __this, IPAddress * multicastAddr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22C00, UdpClient_JoinMulticastGroup__MethodInfo); DO_APP_FUNC(0x0267ABA0, void, UdpClient_JoinMulticastGroup_1, (UdpClient * __this, IPAddress * multicastAddr, IPAddress * localAddress, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22C18, UdpClient_JoinMulticastGroup_1__MethodInfo); DO_APP_FUNC(0x0267ADD0, void, UdpClient_JoinMulticastGroup_2, (UdpClient * __this, int32_t ifindex, IPAddress * multicastAddr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22BD0, UdpClient_JoinMulticastGroup_2__MethodInfo); DO_APP_FUNC(0x0267B010, void, UdpClient_JoinMulticastGroup_3, (UdpClient * __this, IPAddress * multicastAddr, int32_t timeToLive, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22BE8, UdpClient_JoinMulticastGroup_3__MethodInfo); DO_APP_FUNC(0x0267B1F0, void, UdpClient_DropMulticastGroup, (UdpClient * __this, IPAddress * multicastAddr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22AF0, UdpClient_DropMulticastGroup__MethodInfo); DO_APP_FUNC(0x0267B490, void, UdpClient_DropMulticastGroup_1, (UdpClient * __this, IPAddress * multicastAddr, int32_t ifindex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22B00, UdpClient_DropMulticastGroup_1__MethodInfo); DO_APP_FUNC(0x0267B6D0, Task_1_System_Int32_ *, UdpClient_SendAsync, (UdpClient * __this, Byte__Array * datagram, int32_t bytes, MethodInfo * method)); DO_APP_FUNC(0x0267B830, Task_1_System_Int32_ *, UdpClient_SendAsync_1, (UdpClient * __this, Byte__Array * datagram, int32_t bytes, IPEndPoint * endPoint, MethodInfo * method)); DO_APP_FUNC(0x0267B9B0, Task_1_System_Int32_ *, UdpClient_SendAsync_2, (UdpClient * __this, Byte__Array * datagram, int32_t bytes, String * hostname, int32_t port, MethodInfo * method)); DO_APP_FUNC(0x0267BC40, Task_1_System_Net_Sockets_UdpReceiveResult_ *, UdpClient_ReceiveAsync, (UdpClient * __this, MethodInfo * method)); DO_APP_FUNC(0x0267BDA0, void, UdpClient_createClientSocket, (UdpClient * __this, MethodInfo * method)); DO_APP_FUNC(0x0267A510, IAsyncResult *, UdpClient__ReceiveAsync_b__65_0, (UdpClient * __this, AsyncCallback * callback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22B08, UdpClient__ReceiveAsync_b__65_0__MethodInfo); DO_APP_FUNC(0x0267BE70, UdpReceiveResult, UdpClient__ReceiveAsync_b__65_1, (UdpClient * __this, IAsyncResult * ar, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22B30, UdpClient__ReceiveAsync_b__65_1__MethodInfo); DO_APP_FUNC(0x003AE050, void, UdpClient_c_DisplayClass64_0__ctor, (UdpClient_c_DisplayClass64_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0267C010, IAsyncResult *, UdpClient_c_DisplayClass64_0__SendAsync_b__0, (UdpClient_c_DisplayClass64_0 * __this, AsyncCallback * callback, Object * state, MethodInfo * method)); -DO_APP_FUNC(0x0267C060, void, UdpReceiveResult__ctor, (UdpReceiveResult__Boxed * __this, Byte__Array * buffer, IPEndPoint * remoteEndPoint, MethodInfo * method)); -DO_APP_FUNC(0x00471910, Byte__Array *, UdpReceiveResult_get_Buffer, (UdpReceiveResult__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, IPEndPoint *, UdpReceiveResult_get_RemoteEndPoint, (UdpReceiveResult__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0267C1E0, int32_t, UdpReceiveResult_GetHashCode, (UdpReceiveResult__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0267C250, bool, UdpReceiveResult_Equals, (UdpReceiveResult__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0267C350, bool, UdpReceiveResult_Equals_1, (UdpReceiveResult__Boxed * __this, UdpReceiveResult other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22B68, UdpClient_c_DisplayClass64_0__SendAsync_b__0__MethodInfo); +DO_APP_FUNC(0x0267C060, void, UdpReceiveResult__ctor, (UdpReceiveResult * __this, Byte__Array * buffer, IPEndPoint * remoteEndPoint, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22B28, UdpReceiveResult__ctor__MethodInfo); +DO_APP_FUNC(0x00471910, Byte__Array *, UdpReceiveResult_get_Buffer, (UdpReceiveResult * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, IPEndPoint *, UdpReceiveResult_get_RemoteEndPoint, (UdpReceiveResult * __this, MethodInfo * method)); +DO_APP_FUNC(0x0267C1E0, int32_t, UdpReceiveResult_GetHashCode, (UdpReceiveResult * __this, MethodInfo * method)); +DO_APP_FUNC(0x0267C250, bool, UdpReceiveResult_Equals, (UdpReceiveResult * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x0267C350, bool, UdpReceiveResult_Equals_1, (UdpReceiveResult * __this, UdpReceiveResult other, MethodInfo * method)); DO_APP_FUNC(0x0267C350, bool, UdpReceiveResult_op_Equality, (UdpReceiveResult left, UdpReceiveResult right, MethodInfo * method)); DO_APP_FUNC(0x0267C3E0, bool, UdpReceiveResult_op_Inequality, (UdpReceiveResult left, UdpReceiveResult right, MethodInfo * method)); DO_APP_FUNC(0x0267C470, void, SafeSocketHandle__ctor, (SafeSocketHandle * __this, void * preexistingHandle, bool ownsHandle, MethodInfo * method)); DO_APP_FUNC(0x0267C5B0, void, SafeSocketHandle__ctor_1, (SafeSocketHandle * __this, MethodInfo * method)); DO_APP_FUNC(0x0267C600, bool, SafeSocketHandle_ReleaseHandle, (SafeSocketHandle * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22A58, SafeSocketHandle_ReleaseHandle__MethodInfo); DO_APP_FUNC(0x0267CD50, void, SafeSocketHandle_RegisterForBlockingSyscall, (SafeSocketHandle * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22A40, SafeSocketHandle_RegisterForBlockingSyscall__MethodInfo); DO_APP_FUNC(0x0267D1D0, void, SafeSocketHandle_UnRegisterForBlockingSyscall, (SafeSocketHandle * __this, MethodInfo * method)); DO_APP_FUNC(0x0267D480, void, SafeSocketHandle__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003BB330, Exception *, SocketAsyncEventArgs_get_ConnectByNameError, (SocketAsyncEventArgs * __this, MethodInfo * method)); @@ -33470,6 +38271,7 @@ DO_APP_FUNC(0x004DF210, void, SocketAsyncEventArgs_SetBytesTransferred, (SocketA DO_APP_FUNC(0x003BB3E0, Socket *, SocketAsyncEventArgs_get_CurrentSocket, (SocketAsyncEventArgs * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCDE0, void, SocketAsyncEventArgs_SetCurrentSocket, (SocketAsyncEventArgs * __this, Socket * socket, MethodInfo * method)); DO_APP_FUNC(0x0267DA20, void, SocketAsyncEventArgs_SetLastOperation, (SocketAsyncEventArgs * __this, SocketAsyncOperation__Enum op, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D229B8, SocketAsyncEventArgs_SetLastOperation__MethodInfo); DO_APP_FUNC(0x0267DAF0, void, SocketAsyncEventArgs_Complete_internal, (SocketAsyncEventArgs * __this, MethodInfo * method)); DO_APP_FUNC(0x0267DB20, void, SocketAsyncEventArgs_OnCompleted, (SocketAsyncEventArgs * __this, SocketAsyncEventArgs * e, MethodInfo * method)); DO_APP_FUNC(0x003BCDE0, void, SocketAsyncEventArgs_StartOperationCommon, (SocketAsyncEventArgs * __this, Socket * socket, MethodInfo * method)); @@ -33485,19 +38287,26 @@ DO_APP_FUNC(0x01860190, int32_t, SocketAsyncEventArgs_get_Offset, (SocketAsyncEv DO_APP_FUNC(0x01806100, int32_t, SocketAsyncEventArgs_get_Count, (SocketAsyncEventArgs * __this, MethodInfo * method)); DO_APP_FUNC(0x003C1700, IList_1_System_ArraySegment_1_ *, SocketAsyncEventArgs_get_BufferList, (SocketAsyncEventArgs * __this, MethodInfo * method)); DO_APP_FUNC(0x0267DEF0, void, SocketAsyncEventArgs_set_BufferList, (SocketAsyncEventArgs * __this, IList_1_System_ArraySegment_1_ * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22A08, SocketAsyncEventArgs_set_BufferList__MethodInfo); DO_APP_FUNC(0x0267E610, void, SocketAsyncEventArgs_SetBuffer, (SocketAsyncEventArgs * __this, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22A18, SocketAsyncEventArgs_SetBuffer__MethodInfo); DO_APP_FUNC(0x0267E7D0, void, SocketAsyncEventArgs_CopyBufferFrom, (SocketAsyncEventArgs * __this, SocketAsyncEventArgs * source, MethodInfo * method)); DO_APP_FUNC(0x0267E880, void, SocketAsyncEventArgs_SetBuffer_1, (SocketAsyncEventArgs * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D229E8, SocketAsyncEventArgs_SetBuffer_1__MethodInfo); DO_APP_FUNC(0x0267EB20, void, SocketAsyncEventArgs_SetBuffer_2, (SocketAsyncEventArgs * __this, Memory_1_Byte_ buffer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D229C8, SocketAsyncEventArgs_SetBuffer_2__MethodInfo); DO_APP_FUNC(0x01040460, bool, SocketAsyncEventArgs_get_HasMultipleBuffers, (SocketAsyncEventArgs * __this, MethodInfo * method)); DO_APP_FUNC(0x0267EC50, SocketClientAccessPolicyProtocol__Enum, SocketAsyncEventArgs_get_SocketClientAccessPolicyProtocol, (SocketAsyncEventArgs * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D229F8, SocketAsyncEventArgs_get_SocketClientAccessPolicyProtocol__MethodInfo); DO_APP_FUNC(0x0267EC80, void, SocketAsyncEventArgs_set_SocketClientAccessPolicyProtocol, (SocketAsyncEventArgs * __this, SocketClientAccessPolicyProtocol__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22920, SocketAsyncEventArgs_set_SocketClientAccessPolicyProtocol__MethodInfo); DO_APP_FUNC(0x0267ECB0, void *, SocketAsyncResult_get_Handle, (SocketAsyncResult * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SocketAsyncResult__ctor, (SocketAsyncResult * __this, MethodInfo * method)); DO_APP_FUNC(0x0267ED20, void, SocketAsyncResult_Init, (SocketAsyncResult * __this, Socket * socket, AsyncCallback * callback, Object * state, SocketOperation__Enum operation, MethodInfo * method)); DO_APP_FUNC(0x0267F150, void, SocketAsyncResult__ctor_1, (SocketAsyncResult * __this, Socket * socket, AsyncCallback * callback, Object * state, SocketOperation__Enum operation, MethodInfo * method)); DO_APP_FUNC(0x0267F270, SocketError__Enum, SocketAsyncResult_get_ErrorCode, (SocketAsyncResult * __this, MethodInfo * method)); DO_APP_FUNC(0x0267F300, void, SocketAsyncResult_CheckIfThrowDelayedException, (SocketAsyncResult * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22900, SocketAsyncResult_CheckIfThrowDelayedException__MethodInfo); DO_APP_FUNC(0x0267F3B0, void, SocketAsyncResult_CompleteDisposed, (SocketAsyncResult * __this, MethodInfo * method)); DO_APP_FUNC(0x0267F3C0, void, SocketAsyncResult_Complete, (SocketAsyncResult * __this, MethodInfo * method)); DO_APP_FUNC(0x0267F690, void, SocketAsyncResult_Complete_1, (SocketAsyncResult * __this, bool synch, MethodInfo * method)); @@ -33509,6 +38318,7 @@ DO_APP_FUNC(0x0267F7D0, void, SocketAsyncResult_Complete_6, (SocketAsyncResult * DO_APP_FUNC(0x0267F840, void, SocketAsyncResult_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SocketAsyncResult_c__ctor, (SocketAsyncResult_c * __this, MethodInfo * method)); DO_APP_FUNC(0x0267F8F0, void, SocketAsyncResult_c__Complete_b__27_0, (SocketAsyncResult_c * __this, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22918, SocketAsyncResult_c__Complete_b__27_0__MethodInfo); DO_APP_FUNC(0x0267F980, Task_1_System_Net_Sockets_Socket_ *, SocketTaskExtensions_AcceptAsync, (Socket * socket, MethodInfo * method)); DO_APP_FUNC(0x0267FC50, Task_1_System_Net_Sockets_Socket_ *, SocketTaskExtensions_AcceptAsync_1, (Socket * socket, Socket * acceptSocket, MethodInfo * method)); DO_APP_FUNC(0x0267FF50, Task *, SocketTaskExtensions_ConnectAsync, (Socket * socket, EndPoint * remoteEP, MethodInfo * method)); @@ -33527,33 +38337,60 @@ DO_APP_FUNC(0x026826D0, ValueTask_1_System_Int32_, SocketTaskExtensions_ReceiveA DO_APP_FUNC(0x02682A50, void, SocketTaskExtensions_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SocketTaskExtensions_c__ctor, (SocketTaskExtensions_c * __this, MethodInfo * method)); DO_APP_FUNC(0x02682B00, IAsyncResult *, SocketTaskExtensions_c__AcceptAsync_b__0_0, (SocketTaskExtensions_c * __this, AsyncCallback * callback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22968, SocketTaskExtensions_c__AcceptAsync_b__0_0__MethodInfo); DO_APP_FUNC(0x02682B90, Socket *, SocketTaskExtensions_c__AcceptAsync_b__0_1, (SocketTaskExtensions_c * __this, IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22938, SocketTaskExtensions_c__AcceptAsync_b__0_1__MethodInfo); DO_APP_FUNC(0x02682C50, IAsyncResult *, SocketTaskExtensions_c__AcceptAsync_b__1_0, (SocketTaskExtensions_c * __this, Socket * socketForAccept, int32_t receiveSize, AsyncCallback * callback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22948, SocketTaskExtensions_c__AcceptAsync_b__1_0__MethodInfo); DO_APP_FUNC(0x02682D10, Socket *, SocketTaskExtensions_c__AcceptAsync_b__1_1, (SocketTaskExtensions_c * __this, IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22940, SocketTaskExtensions_c__AcceptAsync_b__1_1__MethodInfo); DO_APP_FUNC(0x02682DD0, IAsyncResult *, SocketTaskExtensions_c__ConnectAsync_b__2_0, (SocketTaskExtensions_c * __this, EndPoint * targetEndPoint, AsyncCallback * callback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22880, SocketTaskExtensions_c__ConnectAsync_b__2_0__MethodInfo); DO_APP_FUNC(0x02682E80, void, SocketTaskExtensions_c__ConnectAsync_b__2_1, (SocketTaskExtensions_c * __this, IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22870, SocketTaskExtensions_c__ConnectAsync_b__2_1__MethodInfo); DO_APP_FUNC(0x02682F30, IAsyncResult *, SocketTaskExtensions_c__ConnectAsync_b__3_0, (SocketTaskExtensions_c * __this, IPAddress * targetAddress, int32_t targetPort, AsyncCallback * callback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22838, SocketTaskExtensions_c__ConnectAsync_b__3_0__MethodInfo); DO_APP_FUNC(0x02682FF0, void, SocketTaskExtensions_c__ConnectAsync_b__3_1, (SocketTaskExtensions_c * __this, IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22830, SocketTaskExtensions_c__ConnectAsync_b__3_1__MethodInfo); DO_APP_FUNC(0x026830A0, IAsyncResult *, SocketTaskExtensions_c__ConnectAsync_b__4_0, (SocketTaskExtensions_c * __this, IPAddress__Array * targetAddresses, int32_t targetPort, AsyncCallback * callback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22850, SocketTaskExtensions_c__ConnectAsync_b__4_0__MethodInfo); DO_APP_FUNC(0x02683160, void, SocketTaskExtensions_c__ConnectAsync_b__4_1, (SocketTaskExtensions_c * __this, IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22840, SocketTaskExtensions_c__ConnectAsync_b__4_1__MethodInfo); DO_APP_FUNC(0x02683210, IAsyncResult *, SocketTaskExtensions_c__ConnectAsync_b__5_0, (SocketTaskExtensions_c * __this, String * targetHost, int32_t targetPort, AsyncCallback * callback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D228B0, SocketTaskExtensions_c__ConnectAsync_b__5_0__MethodInfo); DO_APP_FUNC(0x026832D0, void, SocketTaskExtensions_c__ConnectAsync_b__5_1, (SocketTaskExtensions_c * __this, IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D228A8, SocketTaskExtensions_c__ConnectAsync_b__5_1__MethodInfo); DO_APP_FUNC(0x02683380, IAsyncResult *, SocketTaskExtensions_c__ReceiveAsync_b__6_0, (SocketTaskExtensions_c * __this, ArraySegment_1_Byte_ targetBuffer, SocketFlags__Enum flags, AsyncCallback * callback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D228D0, SocketTaskExtensions_c__ReceiveAsync_b__6_0__MethodInfo); DO_APP_FUNC(0x026834A0, int32_t, SocketTaskExtensions_c__ReceiveAsync_b__6_1, (SocketTaskExtensions_c * __this, IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D228C0, SocketTaskExtensions_c__ReceiveAsync_b__6_1__MethodInfo); DO_APP_FUNC(0x02683550, IAsyncResult *, SocketTaskExtensions_c__ReceiveAsync_b__7_0, (SocketTaskExtensions_c * __this, IList_1_System_ArraySegment_1_ * targetBuffers, SocketFlags__Enum flags, AsyncCallback * callback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D228A0, SocketTaskExtensions_c__ReceiveAsync_b__7_0__MethodInfo); DO_APP_FUNC(0x02683610, int32_t, SocketTaskExtensions_c__ReceiveAsync_b__7_1, (SocketTaskExtensions_c * __this, IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22898, SocketTaskExtensions_c__ReceiveAsync_b__7_1__MethodInfo); DO_APP_FUNC(0x026836C0, IAsyncResult *, SocketTaskExtensions_c__ReceiveFromAsync_b__8_0, (SocketTaskExtensions_c * __this, ArraySegment_1_Byte_ targetBuffer, SocketFlags__Enum flags, AsyncCallback * callback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22780, SocketTaskExtensions_c__ReceiveFromAsync_b__8_0__MethodInfo); DO_APP_FUNC(0x02683950, SocketReceiveFromResult, SocketTaskExtensions_c__ReceiveFromAsync_b__8_1, (SocketTaskExtensions_c * __this, IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D227B8, SocketTaskExtensions_c__ReceiveFromAsync_b__8_1__MethodInfo); DO_APP_FUNC(0x02683B60, IAsyncResult *, SocketTaskExtensions_c__ReceiveMessageFromAsync_b__9_0, (SocketTaskExtensions_c * __this, ArraySegment_1_Byte_ targetBuffer, AsyncCallback * callback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22778, SocketTaskExtensions_c__ReceiveMessageFromAsync_b__9_0__MethodInfo); DO_APP_FUNC(0x02683CE0, SocketReceiveMessageFromResult, SocketTaskExtensions_c__ReceiveMessageFromAsync_b__9_1, (SocketTaskExtensions_c * __this, IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22770, SocketTaskExtensions_c__ReceiveMessageFromAsync_b__9_1__MethodInfo); DO_APP_FUNC(0x02683E20, IAsyncResult *, SocketTaskExtensions_c__SendAsync_b__10_0, (SocketTaskExtensions_c * __this, ArraySegment_1_Byte_ targetBuffer, SocketFlags__Enum flags, AsyncCallback * callback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22808, SocketTaskExtensions_c__SendAsync_b__10_0__MethodInfo); DO_APP_FUNC(0x02683F40, int32_t, SocketTaskExtensions_c__SendAsync_b__10_1, (SocketTaskExtensions_c * __this, IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D227F8, SocketTaskExtensions_c__SendAsync_b__10_1__MethodInfo); DO_APP_FUNC(0x02683FF0, IAsyncResult *, SocketTaskExtensions_c__SendAsync_b__11_0, (SocketTaskExtensions_c * __this, IList_1_System_ArraySegment_1_ * targetBuffers, SocketFlags__Enum flags, AsyncCallback * callback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22828, SocketTaskExtensions_c__SendAsync_b__11_0__MethodInfo); DO_APP_FUNC(0x026840B0, int32_t, SocketTaskExtensions_c__SendAsync_b__11_1, (SocketTaskExtensions_c * __this, IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22820, SocketTaskExtensions_c__SendAsync_b__11_1__MethodInfo); DO_APP_FUNC(0x02684160, IAsyncResult *, SocketTaskExtensions_c__SendToAsync_b__12_0, (SocketTaskExtensions_c * __this, ArraySegment_1_Byte_ targetBuffer, SocketFlags__Enum flags, EndPoint * endPoint, AsyncCallback * callback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D227C8, SocketTaskExtensions_c__SendToAsync_b__12_0__MethodInfo); DO_APP_FUNC(0x02684290, int32_t, SocketTaskExtensions_c__SendToAsync_b__12_1, (SocketTaskExtensions_c * __this, IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D227C0, SocketTaskExtensions_c__SendToAsync_b__12_1__MethodInfo); DO_APP_FUNC(0x003AE050, void, SocketTaskExtensions_c_DisplayClass14_0__ctor, (SocketTaskExtensions_c_DisplayClass14_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x02684340, void, SocketTaskExtensions_c_DisplayClass14_0__ReceiveAsync_b__0, (SocketTaskExtensions_c_DisplayClass14_0 * __this, IAsyncResult * iar, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D227E8, SocketTaskExtensions_c_DisplayClass14_0__ReceiveAsync_b__0__MethodInfo); DO_APP_FUNC(0x026845E0, ManagedWebSocket *, ManagedWebSocket_CreateFromConnectedStream, (Stream * stream, bool isServer, String * subprotocol, TimeSpan keepAliveInterval, MethodInfo * method)); DO_APP_FUNC(0x003BB330, Object *, ManagedWebSocket_get_StateUpdateLock, (ManagedWebSocket * __this, MethodInfo * method)); DO_APP_FUNC(0x003CD530, Object *, ManagedWebSocket_get_ReceiveAsyncLock, (ManagedWebSocket * __this, MethodInfo * method)); @@ -33565,7 +38402,9 @@ DO_APP_FUNC(0x003C91C0, String *, ManagedWebSocket_get_CloseStatusDescription, ( DO_APP_FUNC(0x007209F0, WebSocketState__Enum, ManagedWebSocket_get_State, (ManagedWebSocket * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, String *, ManagedWebSocket_get_SubProtocol, (ManagedWebSocket * __this, MethodInfo * method)); DO_APP_FUNC(0x026850C0, Task *, ManagedWebSocket_SendAsync, (ManagedWebSocket * __this, ArraySegment_1_Byte_ buffer, WebSocketMessageType__Enum messageType, bool endOfMessage, CancellationToken cancellationToken, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D224A8, ManagedWebSocket_SendAsync__MethodInfo); DO_APP_FUNC(0x02685390, ValueTask, ManagedWebSocket_SendPrivateAsync, (ManagedWebSocket * __this, ReadOnlyMemory_1_Byte_ buffer, WebSocketMessageType__Enum messageType, bool endOfMessage, CancellationToken cancellationToken, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D224E0, ManagedWebSocket_SendPrivateAsync__MethodInfo); DO_APP_FUNC(0x026856E0, Task_1_System_Net_WebSockets_WebSocketReceiveResult_ *, ManagedWebSocket_ReceiveAsync, (ManagedWebSocket * __this, ArraySegment_1_Byte_ buffer, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x02685B10, Task *, ManagedWebSocket_CloseAsync, (ManagedWebSocket * __this, WebSocketCloseStatus__Enum closeStatus, String * statusDescription, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x02685C10, Task *, ManagedWebSocket_CloseOutputAsync, (ManagedWebSocket * __this, WebSocketCloseStatus__Enum closeStatus, String * statusDescription, CancellationToken cancellationToken, MethodInfo * method)); @@ -33583,12 +38422,13 @@ DO_APP_FUNC(0x02687610, Task *, ManagedWebSocket_WaitForServerToCloseConnectionA DO_APP_FUNC(0x02687830, Task *, ManagedWebSocket_HandleReceivedPingPongAsync, (ManagedWebSocket * __this, ManagedWebSocket_MessageHeader header, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x02687A80, bool, ManagedWebSocket_IsValidCloseStatus, (WebSocketCloseStatus__Enum closeStatus, MethodInfo * method)); DO_APP_FUNC(0x02687AC0, Task *, ManagedWebSocket_CloseWithReceiveErrorAndThrowAsync, (ManagedWebSocket * __this, WebSocketCloseStatus__Enum closeStatus, WebSocketError__Enum error, Exception * innerException, MethodInfo * method)); -DO_APP_FUNC(0x02687D10, bool, ManagedWebSocket_TryParseMessageHeaderFromReceiveBuffer, (ManagedWebSocket * __this, ManagedWebSocket_MessageHeader resultHeader, MethodInfo * method)); +DO_APP_FUNC(0x02687D10, bool, ManagedWebSocket_TryParseMessageHeaderFromReceiveBuffer, (ManagedWebSocket * __this, ManagedWebSocket_MessageHeader * resultHeader, MethodInfo * method)); DO_APP_FUNC(0x02688000, Task *, ManagedWebSocket_CloseAsyncPrivate, (ManagedWebSocket * __this, WebSocketCloseStatus__Enum closeStatus, String * statusDescription, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x02688290, Task *, ManagedWebSocket_SendCloseFrameAsync, (ManagedWebSocket * __this, WebSocketCloseStatus__Enum closeStatus, String * closeStatusDescription, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x02688520, void, ManagedWebSocket_ConsumeFromBuffer, (ManagedWebSocket * __this, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x02688530, Task *, ManagedWebSocket_EnsureBufferContainsAsync, (ManagedWebSocket * __this, int32_t minimumRequiredBytes, CancellationToken cancellationToken, bool throwOnPrematureClosure, MethodInfo * method)); DO_APP_FUNC(0x02688770, void, ManagedWebSocket_ThrowIfEOFUnexpected, (ManagedWebSocket * __this, bool throwOnPrematureClosure, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22460, ManagedWebSocket_ThrowIfEOFUnexpected__MethodInfo); DO_APP_FUNC(0x02688820, void, ManagedWebSocket_AllocateSendBuffer, (ManagedWebSocket * __this, int32_t minLength, MethodInfo * method)); DO_APP_FUNC(0x02688910, void, ManagedWebSocket_ReleaseSendBuffer, (ManagedWebSocket * __this, MethodInfo * method)); DO_APP_FUNC(0x02688A00, int32_t, ManagedWebSocket_CombineMaskBytes, (Span_1_Byte_ buffer, int32_t maskOffset, MethodInfo * method)); @@ -33596,43 +38436,58 @@ DO_APP_FUNC(0x02688B10, int32_t, ManagedWebSocket_ApplyMask, (Span_1_Byte_ toMas DO_APP_FUNC(0x02688C30, int32_t, ManagedWebSocket_ApplyMask_1, (Span_1_Byte_ toMask, int32_t mask, int32_t maskIndex, MethodInfo * method)); DO_APP_FUNC(0x02688D20, void, ManagedWebSocket_ThrowIfOperationInProgress, (ManagedWebSocket * __this, bool operationCompleted, String * methodName, MethodInfo * method)); DO_APP_FUNC(0x02688D60, void, ManagedWebSocket_ThrowOperationInProgress, (ManagedWebSocket * __this, String * methodName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D223D0, ManagedWebSocket_ThrowOperationInProgress__MethodInfo); DO_APP_FUNC(0x02688DD0, Exception *, ManagedWebSocket_CreateOperationCanceledException, (Exception * innerException, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x02688ED0, bool, ManagedWebSocket_TryValidateUtf8, (Span_1_Byte_ span, bool endOfMessage, ManagedWebSocket_Utf8MessageState * state, MethodInfo * method)); DO_APP_FUNC(0x026890B0, Task *, ManagedWebSocket_ValidateAndReceiveAsync, (ManagedWebSocket * __this, Task * receiveTask, Byte__Array * buffer, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x02689310, void, ManagedWebSocket__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ManagedWebSocket_Utf8MessageState__ctor, (ManagedWebSocket_Utf8MessageState * __this, MethodInfo * method)); -DO_APP_FUNC(0x026898E0, WebSocketReceiveResult *, ManagedWebSocket_WebSocketReceiveResultGetter_GetResult, (ManagedWebSocket_WebSocketReceiveResultGetter__Boxed * __this, int32_t count, WebSocketMessageType__Enum messageType, bool endOfMessage, Nullable_1_System_Net_WebSockets_WebSocketCloseStatus_ closeStatus, String * closeDescription, MethodInfo * method)); +DO_APP_FUNC(0x026898E0, WebSocketReceiveResult *, ManagedWebSocket_WebSocketReceiveResultGetter_GetResult, (ManagedWebSocket_WebSocketReceiveResultGetter * __this, int32_t count, WebSocketMessageType__Enum messageType, bool endOfMessage, Nullable_1_System_Net_WebSockets_WebSocketCloseStatus_ closeStatus, String * closeDescription, MethodInfo * method)); DO_APP_FUNC(0x02689980, void, ManagedWebSocket_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ManagedWebSocket_c__ctor, (ManagedWebSocket_c * __this, MethodInfo * method)); DO_APP_FUNC(0x02689A30, void, ManagedWebSocket_c___ctor_b__36_0, (ManagedWebSocket_c * __this, Object * s, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22680, ManagedWebSocket_c___ctor_b__36_0__MethodInfo); DO_APP_FUNC(0x02689BF0, void, ManagedWebSocket_c___ctor_b__36_1, (ManagedWebSocket_c * __this, Object * s, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22678, ManagedWebSocket_c___ctor_b__36_1__MethodInfo); DO_APP_FUNC(0x02689C60, void, ManagedWebSocket_c__SendFrameFallbackAsync_b__56_0, (ManagedWebSocket_c * __this, Object * s, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22350, ManagedWebSocket_c__SendFrameFallbackAsync_b__56_0__MethodInfo); DO_APP_FUNC(0x02689CE0, void, ManagedWebSocket_c__SendKeepAliveFrameAsync_b__58_0, (ManagedWebSocket_c * __this, Task * p, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22448, ManagedWebSocket_c__SendKeepAliveFrameAsync_b__58_0__MethodInfo); DO_APP_FUNC(0x02689D20, void, ManagedWebSocket_c__WaitForServerToCloseConnectionAsync_b__63_0, (ManagedWebSocket_c * __this, Object * s, MethodInfo * method)); -DO_APP_FUNC(0x02689DA0, void, ManagedWebSocket_WaitForWriteTaskAsync_d_55_MoveNext, (ManagedWebSocket_WaitForWriteTaskAsync_d_55__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0268A320, void, ManagedWebSocket_WaitForWriteTaskAsync_d_55_SetStateMachine, (ManagedWebSocket_WaitForWriteTaskAsync_d_55__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x0268A380, void, ManagedWebSocket_SendFrameFallbackAsync_d_56_MoveNext, (ManagedWebSocket_SendFrameFallbackAsync_d_56__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0268B020, void, ManagedWebSocket_SendFrameFallbackAsync_d_56_SetStateMachine, (ManagedWebSocket_SendFrameFallbackAsync_d_56__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x0268B080, void, ManagedWebSocket_HandleReceivedCloseAsync_d_62_MoveNext, (ManagedWebSocket_HandleReceivedCloseAsync_d_62__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0268BF60, void, ManagedWebSocket_HandleReceivedCloseAsync_d_62_SetStateMachine, (ManagedWebSocket_HandleReceivedCloseAsync_d_62__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x0268BFC0, void, ManagedWebSocket_WaitForServerToCloseConnectionAsync_d_63_MoveNext, (ManagedWebSocket_WaitForServerToCloseConnectionAsync_d_63__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0268C8C0, void, ManagedWebSocket_WaitForServerToCloseConnectionAsync_d_63_SetStateMachine, (ManagedWebSocket_WaitForServerToCloseConnectionAsync_d_63__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x0268C920, void, ManagedWebSocket_HandleReceivedPingPongAsync_d_64_MoveNext, (ManagedWebSocket_HandleReceivedPingPongAsync_d_64__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0268D140, void, ManagedWebSocket_HandleReceivedPingPongAsync_d_64_SetStateMachine, (ManagedWebSocket_HandleReceivedPingPongAsync_d_64__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x0268D1A0, void, ManagedWebSocket_CloseWithReceiveErrorAndThrowAsync_d_66_MoveNext, (ManagedWebSocket_CloseWithReceiveErrorAndThrowAsync_d_66__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0268D450, void, ManagedWebSocket_CloseWithReceiveErrorAndThrowAsync_d_66_SetStateMachine, (ManagedWebSocket_CloseWithReceiveErrorAndThrowAsync_d_66__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x0268D4B0, void, ManagedWebSocket_CloseAsyncPrivate_d_68_MoveNext, (ManagedWebSocket_CloseAsyncPrivate_d_68__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0268DE80, void, ManagedWebSocket_CloseAsyncPrivate_d_68_SetStateMachine, (ManagedWebSocket_CloseAsyncPrivate_d_68__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x0268DEE0, void, ManagedWebSocket_SendCloseFrameAsync_d_69_MoveNext, (ManagedWebSocket_SendCloseFrameAsync_d_69__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0268ECC0, void, ManagedWebSocket_SendCloseFrameAsync_d_69_SetStateMachine, (ManagedWebSocket_SendCloseFrameAsync_d_69__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x0268ED20, void, ManagedWebSocket_EnsureBufferContainsAsync_d_71_MoveNext, (ManagedWebSocket_EnsureBufferContainsAsync_d_71__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0268F2C0, void, ManagedWebSocket_EnsureBufferContainsAsync_d_71_SetStateMachine, (ManagedWebSocket_EnsureBufferContainsAsync_d_71__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22378, ManagedWebSocket_c__WaitForServerToCloseConnectionAsync_b__63_0__MethodInfo); +DO_APP_FUNC(0x02689DA0, void, ManagedWebSocket_WaitForWriteTaskAsync_d_55_MoveNext, (ManagedWebSocket_WaitForWriteTaskAsync_d_55 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22368, ManagedWebSocket_WaitForWriteTaskAsync_d_55_MoveNext__MethodInfo); +DO_APP_FUNC(0x0268A320, void, ManagedWebSocket_WaitForWriteTaskAsync_d_55_SetStateMachine, (ManagedWebSocket_WaitForWriteTaskAsync_d_55 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x0268A380, void, ManagedWebSocket_SendFrameFallbackAsync_d_56_MoveNext, (ManagedWebSocket_SendFrameFallbackAsync_d_56 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22348, ManagedWebSocket_SendFrameFallbackAsync_d_56_MoveNext__MethodInfo); +DO_APP_FUNC(0x0268B020, void, ManagedWebSocket_SendFrameFallbackAsync_d_56_SetStateMachine, (ManagedWebSocket_SendFrameFallbackAsync_d_56 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x0268B080, void, ManagedWebSocket_HandleReceivedCloseAsync_d_62_MoveNext, (ManagedWebSocket_HandleReceivedCloseAsync_d_62 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0268BF60, void, ManagedWebSocket_HandleReceivedCloseAsync_d_62_SetStateMachine, (ManagedWebSocket_HandleReceivedCloseAsync_d_62 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x0268BFC0, void, ManagedWebSocket_WaitForServerToCloseConnectionAsync_d_63_MoveNext, (ManagedWebSocket_WaitForServerToCloseConnectionAsync_d_63 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0268C8C0, void, ManagedWebSocket_WaitForServerToCloseConnectionAsync_d_63_SetStateMachine, (ManagedWebSocket_WaitForServerToCloseConnectionAsync_d_63 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x0268C920, void, ManagedWebSocket_HandleReceivedPingPongAsync_d_64_MoveNext, (ManagedWebSocket_HandleReceivedPingPongAsync_d_64 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0268D140, void, ManagedWebSocket_HandleReceivedPingPongAsync_d_64_SetStateMachine, (ManagedWebSocket_HandleReceivedPingPongAsync_d_64 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x0268D1A0, void, ManagedWebSocket_CloseWithReceiveErrorAndThrowAsync_d_66_MoveNext, (ManagedWebSocket_CloseWithReceiveErrorAndThrowAsync_d_66 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D222B0, ManagedWebSocket_CloseWithReceiveErrorAndThrowAsync_d_66_MoveNext__MethodInfo); +DO_APP_FUNC(0x0268D450, void, ManagedWebSocket_CloseWithReceiveErrorAndThrowAsync_d_66_SetStateMachine, (ManagedWebSocket_CloseWithReceiveErrorAndThrowAsync_d_66 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x0268D4B0, void, ManagedWebSocket_CloseAsyncPrivate_d_68_MoveNext, (ManagedWebSocket_CloseAsyncPrivate_d_68 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0268DE80, void, ManagedWebSocket_CloseAsyncPrivate_d_68_SetStateMachine, (ManagedWebSocket_CloseAsyncPrivate_d_68 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x0268DEE0, void, ManagedWebSocket_SendCloseFrameAsync_d_69_MoveNext, (ManagedWebSocket_SendCloseFrameAsync_d_69 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0268ECC0, void, ManagedWebSocket_SendCloseFrameAsync_d_69_SetStateMachine, (ManagedWebSocket_SendCloseFrameAsync_d_69 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x0268ED20, void, ManagedWebSocket_EnsureBufferContainsAsync_d_71_MoveNext, (ManagedWebSocket_EnsureBufferContainsAsync_d_71 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0268F2C0, void, ManagedWebSocket_EnsureBufferContainsAsync_d_71_SetStateMachine, (ManagedWebSocket_EnsureBufferContainsAsync_d_71 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); DO_APP_FUNC(0x0268F320, void, WebSocketValidate_ThrowIfInvalidState, (WebSocketState__Enum currentState, bool isDisposed, WebSocketState__Enum__Array * validStates, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22320, WebSocketValidate_ThrowIfInvalidState__MethodInfo); DO_APP_FUNC(0x0268F4D0, void, WebSocketValidate_ValidateSubprotocol, (String * subProtocol, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22248, WebSocketValidate_ValidateSubprotocol__MethodInfo); DO_APP_FUNC(0x0268F7A0, void, WebSocketValidate_ValidateCloseStatus, (WebSocketCloseStatus__Enum closeStatus, String * statusDescription, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D221F8, WebSocketValidate_ValidateCloseStatus__MethodInfo); DO_APP_FUNC(0x0268FA00, void, WebSocketValidate_ThrowPlatformNotSupportedException, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22210, WebSocketValidate_ThrowPlatformNotSupportedException__MethodInfo); DO_APP_FUNC(0x0268FA60, void, WebSocketValidate_ValidateArraySegment, (ArraySegment_1_Byte_ arraySegment, String * parameterName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22278, WebSocketValidate_ValidateArraySegment__MethodInfo); DO_APP_FUNC(0x0268FCB0, void, WebSocketValidate_ValidateBuffer, (Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22288, WebSocketValidate_ValidateBuffer__MethodInfo); DO_APP_FUNC(0x0268FDD0, void, HttpListenerWebSocketContext__ctor, (HttpListenerWebSocketContext * __this, Uri * requestUri, NameValueCollection * headers, CookieCollection * cookieCollection, IPrincipal * user, bool isAuthenticated, bool isLocal, bool isSecureConnection, String * origin, IEnumerable_1_System_String_ * secWebSocketProtocols, String * secWebSocketVersion, String * secWebSocketKey, WebSocket * webSocket, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, Uri *, HttpListenerWebSocketContext_get_RequestUri, (HttpListenerWebSocketContext * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, NameValueCollection *, HttpListenerWebSocketContext_get_Headers, (HttpListenerWebSocketContext * __this, MethodInfo * method)); @@ -33647,7 +38502,9 @@ DO_APP_FUNC(0x00594F30, bool, HttpListenerWebSocketContext_get_IsLocal, (HttpLis DO_APP_FUNC(0x004C9320, bool, HttpListenerWebSocketContext_get_IsSecureConnection, (HttpListenerWebSocketContext * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7490, WebSocket *, HttpListenerWebSocketContext_get_WebSocket, (HttpListenerWebSocketContext * __this, MethodInfo * method)); DO_APP_FUNC(0x026902E0, IPrincipal *, HttpListenerWebSocketContext_CopyPrincipal, (IPrincipal * user, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22260, HttpListenerWebSocketContext_CopyPrincipal__MethodInfo); DO_APP_FUNC(0x026904B0, void, HttpListenerWebSocketContext__ctor_1, (HttpListenerWebSocketContext * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D221B0, HttpListenerWebSocketContext__ctor_1__MethodInfo); DO_APP_FUNC(0x026904E0, void, ClientWebSocket__ctor, (ClientWebSocket * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, ClientWebSocketOptions *, ClientWebSocket_get_Options, (ClientWebSocket * __this, MethodInfo * method)); DO_APP_FUNC(0x02690760, Nullable_1_System_Net_WebSockets_WebSocketCloseStatus_, ClientWebSocket_get_CloseStatus, (ClientWebSocket * __this, MethodInfo * method)); @@ -33655,6 +38512,7 @@ DO_APP_FUNC(0x026907F0, String *, ClientWebSocket_get_CloseStatusDescription, (C DO_APP_FUNC(0x02690880, String *, ClientWebSocket_get_SubProtocol, (ClientWebSocket * __this, MethodInfo * method)); DO_APP_FUNC(0x02690910, WebSocketState__Enum, ClientWebSocket_get_State, (ClientWebSocket * __this, MethodInfo * method)); DO_APP_FUNC(0x026909D0, Task *, ClientWebSocket_ConnectAsync, (ClientWebSocket * __this, Uri * uri, CancellationToken cancellationToken, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D221E0, ClientWebSocket_ConnectAsync__MethodInfo); DO_APP_FUNC(0x02690D20, Task *, ClientWebSocket_ConnectAsyncCore, (ClientWebSocket * __this, Uri * uri, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x02690FB0, Task *, ClientWebSocket_SendAsync, (ClientWebSocket * __this, ArraySegment_1_Byte_ buffer, WebSocketMessageType__Enum messageType, bool endOfMessage, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x02691040, ValueTask, ClientWebSocket_SendAsync_1, (ClientWebSocket * __this, ReadOnlyMemory_1_Byte_ buffer, WebSocketMessageType__Enum messageType, bool endOfMessage, CancellationToken cancellationToken, MethodInfo * method)); @@ -33665,15 +38523,21 @@ DO_APP_FUNC(0x02691280, Task *, ClientWebSocket_CloseOutputAsync, (ClientWebSock DO_APP_FUNC(0x02691300, void, ClientWebSocket_Abort, (ClientWebSocket * __this, MethodInfo * method)); DO_APP_FUNC(0x02691390, void, ClientWebSocket_Dispose, (ClientWebSocket * __this, MethodInfo * method)); DO_APP_FUNC(0x02691430, void, ClientWebSocket_ThrowIfNotConnected, (ClientWebSocket * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D221A8, ClientWebSocket_ThrowIfNotConnected__MethodInfo); DO_APP_FUNC(0x02691510, ClientWebSocket_DefaultWebProxy *, ClientWebSocket_DefaultWebProxy_get_Instance, (MethodInfo * method)); DO_APP_FUNC(0x02691570, ICredentials *, ClientWebSocket_DefaultWebProxy_get_Credentials, (ClientWebSocket_DefaultWebProxy * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25420, ClientWebSocket_DefaultWebProxy_get_Credentials__MethodInfo); DO_APP_FUNC(0x026915C0, void, ClientWebSocket_DefaultWebProxy_set_Credentials, (ClientWebSocket_DefaultWebProxy * __this, ICredentials * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25418, ClientWebSocket_DefaultWebProxy_set_Credentials__MethodInfo); DO_APP_FUNC(0x02691610, Uri *, ClientWebSocket_DefaultWebProxy_GetProxy, (ClientWebSocket_DefaultWebProxy * __this, Uri * destination, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25430, ClientWebSocket_DefaultWebProxy_GetProxy__MethodInfo); DO_APP_FUNC(0x02691660, bool, ClientWebSocket_DefaultWebProxy_IsBypassed, (ClientWebSocket_DefaultWebProxy * __this, Uri * host, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25428, ClientWebSocket_DefaultWebProxy_IsBypassed__MethodInfo); DO_APP_FUNC(0x003AE050, void, ClientWebSocket_DefaultWebProxy__ctor, (ClientWebSocket_DefaultWebProxy * __this, MethodInfo * method)); DO_APP_FUNC(0x026916B0, void, ClientWebSocket_DefaultWebProxy__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02691760, void, ClientWebSocket_ConnectAsyncCore_d_16_MoveNext, (ClientWebSocket_ConnectAsyncCore_d_16__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02691C80, void, ClientWebSocket_ConnectAsyncCore_d_16_SetStateMachine, (ClientWebSocket_ConnectAsyncCore_d_16__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x02691760, void, ClientWebSocket_ConnectAsyncCore_d_16_MoveNext, (ClientWebSocket_ConnectAsyncCore_d_16 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25448, ClientWebSocket_ConnectAsyncCore_d_16_MoveNext__MethodInfo); +DO_APP_FUNC(0x02691C80, void, ClientWebSocket_ConnectAsyncCore_d_16_SetStateMachine, (ClientWebSocket_ConnectAsyncCore_d_16 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); DO_APP_FUNC(0x02691CE0, void, ClientWebSocketOptions__ctor, (ClientWebSocketOptions * __this, MethodInfo * method)); DO_APP_FUNC(0x02691EE0, void, ClientWebSocketOptions_SetRequestHeader, (ClientWebSocketOptions * __this, String * headerName, String * headerValue, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, WebHeaderCollection *, ClientWebSocketOptions_get_RequestHeaders, (ClientWebSocketOptions * __this, MethodInfo * method)); @@ -33686,20 +38550,26 @@ DO_APP_FUNC(0x003C7390, IWebProxy *, ClientWebSocketOptions_get_Proxy, (ClientWe DO_APP_FUNC(0x02691FE0, void, ClientWebSocketOptions_set_Proxy, (ClientWebSocketOptions * __this, IWebProxy * value, MethodInfo * method)); DO_APP_FUNC(0x02692050, X509CertificateCollection *, ClientWebSocketOptions_get_ClientCertificates, (ClientWebSocketOptions * __this, MethodInfo * method)); DO_APP_FUNC(0x02692110, void, ClientWebSocketOptions_set_ClientCertificates, (ClientWebSocketOptions * __this, X509CertificateCollection * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25440, ClientWebSocketOptions_set_ClientCertificates__MethodInfo); DO_APP_FUNC(0x003C91E0, RemoteCertificateValidationCallback *, ClientWebSocketOptions_get_RemoteCertificateValidationCallback, (ClientWebSocketOptions * __this, MethodInfo * method)); DO_APP_FUNC(0x026921D0, void, ClientWebSocketOptions_set_RemoteCertificateValidationCallback, (ClientWebSocketOptions * __this, RemoteCertificateValidationCallback * value, MethodInfo * method)); DO_APP_FUNC(0x003C7420, CookieContainer *, ClientWebSocketOptions_get_Cookies, (ClientWebSocketOptions * __this, MethodInfo * method)); DO_APP_FUNC(0x02692240, void, ClientWebSocketOptions_set_Cookies, (ClientWebSocketOptions * __this, CookieContainer * value, MethodInfo * method)); DO_APP_FUNC(0x026922B0, void, ClientWebSocketOptions_AddSubProtocol, (ClientWebSocketOptions * __this, String * subProtocol, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D253A0, ClientWebSocketOptions_AddSubProtocol__MethodInfo); DO_APP_FUNC(0x003BB3B0, TimeSpan, ClientWebSocketOptions_get_KeepAliveInterval, (ClientWebSocketOptions * __this, MethodInfo * method)); DO_APP_FUNC(0x02692570, void, ClientWebSocketOptions_set_KeepAliveInterval, (ClientWebSocketOptions * __this, TimeSpan value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D253C0, ClientWebSocketOptions_set_KeepAliveInterval__MethodInfo); DO_APP_FUNC(0x007209F0, int32_t, ClientWebSocketOptions_get_ReceiveBufferSize, (ClientWebSocketOptions * __this, MethodInfo * method)); DO_APP_FUNC(0x00A9C5C0, int32_t, ClientWebSocketOptions_get_SendBufferSize, (ClientWebSocketOptions * __this, MethodInfo * method)); DO_APP_FUNC(0x02692730, Nullable_1_ArraySegment_1_Byte_, ClientWebSocketOptions_get_Buffer, (ClientWebSocketOptions * __this, MethodInfo * method)); DO_APP_FUNC(0x02692750, void, ClientWebSocketOptions_SetBuffer, (ClientWebSocketOptions * __this, int32_t receiveBufferSize, int32_t sendBufferSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D253B0, ClientWebSocketOptions_SetBuffer__MethodInfo); DO_APP_FUNC(0x02692920, void, ClientWebSocketOptions_SetBuffer_1, (ClientWebSocketOptions * __this, int32_t receiveBufferSize, int32_t sendBufferSize, ArraySegment_1_Byte_ buffer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25390, ClientWebSocketOptions_SetBuffer_1__MethodInfo); DO_APP_FUNC(0x003BCD40, void, ClientWebSocketOptions_SetToReadOnly, (ClientWebSocketOptions * __this, MethodInfo * method)); DO_APP_FUNC(0x02692C50, void, ClientWebSocketOptions_ThrowIfReadOnly, (ClientWebSocketOptions * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25388, ClientWebSocketOptions_ThrowIfReadOnly__MethodInfo); DO_APP_FUNC(0x02692CC0, WebSocketHandle *, WebSocketHandle_Create, (MethodInfo * method)); DO_APP_FUNC(0x00A878D0, bool, WebSocketHandle_IsValid, (WebSocketHandle * handle, MethodInfo * method)); DO_APP_FUNC(0x02692DB0, Nullable_1_System_Net_WebSockets_WebSocketCloseStatus_, WebSocketHandle_get_CloseStatus, (WebSocketHandle * __this, MethodInfo * method)); @@ -33720,48 +38590,64 @@ DO_APP_FUNC(0x02693380, Task_1_System_Net_Sockets_Socket_ *, WebSocketHandle_Con DO_APP_FUNC(0x026935E0, Byte__Array *, WebSocketHandle_BuildRequestHeader, (Uri * uri, ClientWebSocketOptions * options, String * secKey, MethodInfo * method)); DO_APP_FUNC(0x02694180, KeyValuePair_2_System_String_System_String_, WebSocketHandle_CreateSecKeyAndSecWebSocketAccept, (MethodInfo * method)); DO_APP_FUNC(0x02694660, Task_1_System_String_ *, WebSocketHandle_ParseAndValidateConnectResponseAsync, (WebSocketHandle * __this, Stream * stream, ClientWebSocketOptions * options, String * expectedSecWebSocketAccept, CancellationToken cancellationToken, MethodInfo * method)); -DO_APP_FUNC(0x02694900, void, WebSocketHandle_ValidateAndTrackHeader, (String * targetHeaderName, String * targetHeaderValue, String * foundHeaderName, String * foundHeaderValue, bool foundHeader, MethodInfo * method)); +DO_APP_FUNC(0x02694900, void, WebSocketHandle_ValidateAndTrackHeader, (String * targetHeaderName, String * targetHeaderValue, String * foundHeaderName, String * foundHeaderValue, bool * foundHeader, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25328, WebSocketHandle_ValidateAndTrackHeader__MethodInfo); DO_APP_FUNC(0x02694B70, Task_1_System_String_ *, WebSocketHandle_ReadResponseHeaderLineAsync, (Stream * stream, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x02694D70, void, WebSocketHandle__ctor, (WebSocketHandle * __this, MethodInfo * method)); DO_APP_FUNC(0x02694E30, void, WebSocketHandle__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02694ED0, void, WebSocketHandle_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, WebSocketHandle_c__ctor, (WebSocketHandle_c * __this, MethodInfo * method)); DO_APP_FUNC(0x02694F80, void, WebSocketHandle_c__ConnectAsyncCore_b__26_0, (WebSocketHandle_c * __this, Object * s, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25268, WebSocketHandle_c__ConnectAsyncCore_b__26_0__MethodInfo); DO_APP_FUNC(0x02694FF0, void, WebSocketHandle_c__ConnectSocketAsync_b__27_0, (WebSocketHandle_c * __this, Object * s, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25300, WebSocketHandle_c__ConnectSocketAsync_b__27_0__MethodInfo); DO_APP_FUNC(0x026950C0, void, WebSocketHandle_c__ConnectSocketAsync_b__27_1, (WebSocketHandle_c * __this, Object * s, MethodInfo * method)); -DO_APP_FUNC(0x02695190, void, WebSocketHandle_ConnectAsyncCore_d_26_MoveNext, (WebSocketHandle_ConnectAsyncCore_d_26__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02696700, void, WebSocketHandle_ConnectAsyncCore_d_26_SetStateMachine, (WebSocketHandle_ConnectAsyncCore_d_26__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x02696760, void, WebSocketHandle_ConnectSocketAsync_d_27_MoveNext, (WebSocketHandle_ConnectSocketAsync_d_27__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02697760, void, WebSocketHandle_ConnectSocketAsync_d_27_SetStateMachine, (WebSocketHandle_ConnectSocketAsync_d_27__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D252D0, WebSocketHandle_c__ConnectSocketAsync_b__27_1__MethodInfo); +DO_APP_FUNC(0x02695190, void, WebSocketHandle_ConnectAsyncCore_d_26_MoveNext, (WebSocketHandle_ConnectAsyncCore_d_26 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25280, WebSocketHandle_ConnectAsyncCore_d_26_MoveNext__MethodInfo); +DO_APP_FUNC(0x02696700, void, WebSocketHandle_ConnectAsyncCore_d_26_SetStateMachine, (WebSocketHandle_ConnectAsyncCore_d_26 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x02696760, void, WebSocketHandle_ConnectSocketAsync_d_27_MoveNext, (WebSocketHandle_ConnectSocketAsync_d_27 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D252C8, WebSocketHandle_ConnectSocketAsync_d_27_MoveNext__MethodInfo); +DO_APP_FUNC(0x02697760, void, WebSocketHandle_ConnectSocketAsync_d_27_SetStateMachine, (WebSocketHandle_ConnectSocketAsync_d_27 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, WebSocketHandle_c_DisplayClass30_0__ctor, (WebSocketHandle_c_DisplayClass30_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x026977D0, bool, WebSocketHandle_c_DisplayClass30_0__ParseAndValidateConnectResponseAsync_b__0, (WebSocketHandle_c_DisplayClass30_0 * __this, String * requested, MethodInfo * method)); -DO_APP_FUNC(0x026978B0, void, WebSocketHandle_ParseAndValidateConnectResponseAsync_d_30_MoveNext, (WebSocketHandle_ParseAndValidateConnectResponseAsync_d_30__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02698620, void, WebSocketHandle_ParseAndValidateConnectResponseAsync_d_30_SetStateMachine, (WebSocketHandle_ParseAndValidateConnectResponseAsync_d_30__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x02698690, void, WebSocketHandle_ReadResponseHeaderLineAsync_d_32_MoveNext, (WebSocketHandle_ReadResponseHeaderLineAsync_d_32__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02699070, void, WebSocketHandle_ReadResponseHeaderLineAsync_d_32_SetStateMachine, (WebSocketHandle_ReadResponseHeaderLineAsync_d_32__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x026990E0, void, ValueWebSocketReceiveResult__ctor, (ValueWebSocketReceiveResult__Boxed * __this, int32_t count, WebSocketMessageType__Enum messageType, bool endOfMessage, MethodInfo * method)); -DO_APP_FUNC(0x02699120, int32_t, ValueWebSocketReceiveResult_get_Count, (ValueWebSocketReceiveResult__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C045B0, bool, ValueWebSocketReceiveResult_get_EndOfMessage, (ValueWebSocketReceiveResult__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C173E0, WebSocketMessageType__Enum, ValueWebSocketReceiveResult_get_MessageType, (ValueWebSocketReceiveResult__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25208, WebSocketHandle_c_DisplayClass30_0__ParseAndValidateConnectResponseAsync_b__0__MethodInfo); +DO_APP_FUNC(0x026978B0, void, WebSocketHandle_ParseAndValidateConnectResponseAsync_d_30_MoveNext, (WebSocketHandle_ParseAndValidateConnectResponseAsync_d_30 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25218, WebSocketHandle_ParseAndValidateConnectResponseAsync_d_30_MoveNext__MethodInfo); +DO_APP_FUNC(0x02698620, void, WebSocketHandle_ParseAndValidateConnectResponseAsync_d_30_SetStateMachine, (WebSocketHandle_ParseAndValidateConnectResponseAsync_d_30 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x02698690, void, WebSocketHandle_ReadResponseHeaderLineAsync_d_32_MoveNext, (WebSocketHandle_ReadResponseHeaderLineAsync_d_32 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02699070, void, WebSocketHandle_ReadResponseHeaderLineAsync_d_32_SetStateMachine, (WebSocketHandle_ReadResponseHeaderLineAsync_d_32 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x026990E0, void, ValueWebSocketReceiveResult__ctor, (ValueWebSocketReceiveResult * __this, int32_t count, WebSocketMessageType__Enum messageType, bool endOfMessage, MethodInfo * method)); +DO_APP_FUNC(0x02699120, int32_t, ValueWebSocketReceiveResult_get_Count, (ValueWebSocketReceiveResult * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C045B0, bool, ValueWebSocketReceiveResult_get_EndOfMessage, (ValueWebSocketReceiveResult * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C173E0, WebSocketMessageType__Enum, ValueWebSocketReceiveResult_get_MessageType, (ValueWebSocketReceiveResult * __this, MethodInfo * method)); DO_APP_FUNC(0x02699130, void, ValueWebSocketReceiveResult_ThrowCountOutOfRange, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25260, ValueWebSocketReceiveResult_ThrowCountOutOfRange__MethodInfo); DO_APP_FUNC(0x02699190, void, ValueWebSocketReceiveResult_ThrowMessageTypeOutOfRange, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25258, ValueWebSocketReceiveResult_ThrowMessageTypeOutOfRange__MethodInfo); DO_APP_FUNC(0x026991F0, ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult_, WebSocket_ReceiveAsync, (WebSocket * __this, Memory_1_Byte_ buffer, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x026994A0, ValueTask, WebSocket_SendAsync, (WebSocket * __this, ReadOnlyMemory_1_Byte_ buffer, WebSocketMessageType__Enum messageType, bool endOfMessage, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x02699610, Task *, WebSocket_SendWithArrayPoolAsync, (WebSocket * __this, ReadOnlyMemory_1_Byte_ buffer, WebSocketMessageType__Enum messageType, bool endOfMessage, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x026998B0, TimeSpan, WebSocket_get_DefaultKeepAliveInterval, (MethodInfo * method)); DO_APP_FUNC(0x02699940, void, WebSocket_ThrowOnInvalidState, (WebSocketState__Enum state, WebSocketState__Enum__Array * validStates, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25180, WebSocket_ThrowOnInvalidState__MethodInfo); DO_APP_FUNC(0x02699A90, bool, WebSocket_IsStateTerminal, (WebSocketState__Enum state, MethodInfo * method)); DO_APP_FUNC(0x02699AA0, ArraySegment_1_Byte_, WebSocket_CreateClientBuffer, (int32_t receiveBufferSize, int32_t sendBufferSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25188, WebSocket_CreateClientBuffer__MethodInfo); DO_APP_FUNC(0x02699D30, ArraySegment_1_Byte_, WebSocket_CreateServerBuffer, (int32_t receiveBufferSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25158, WebSocket_CreateServerBuffer__MethodInfo); DO_APP_FUNC(0x02699EE0, WebSocket *, WebSocket_CreateFromStream, (Stream * stream, bool isServer, String * subProtocol, TimeSpan keepAliveInterval, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25178, WebSocket_CreateFromStream__MethodInfo); DO_APP_FUNC(0x0041AEF0, bool, WebSocket_IsApplicationTargeting45, (MethodInfo * method)); DO_APP_FUNC(0x0269A1F0, void, WebSocket_RegisterPrefixes, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25160, WebSocket_RegisterPrefixes__MethodInfo); DO_APP_FUNC(0x0269A240, WebSocket *, WebSocket_CreateClientWebSocket, (Stream * innerStream, String * subProtocol, int32_t receiveBufferSize, int32_t sendBufferSize, TimeSpan keepAliveInterval, bool useZeroMaskingKey, ArraySegment_1_Byte_ internalBuffer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D251C0, WebSocket_CreateClientWebSocket__MethodInfo); DO_APP_FUNC(0x003AE050, void, WebSocket__ctor, (WebSocket * __this, MethodInfo * method)); -DO_APP_FUNC(0x0269A630, void, WebSocket_ReceiveAsync_d_14_MoveNext, (WebSocket_ReceiveAsync_d_14__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0269AFB0, void, WebSocket_ReceiveAsync_d_14_SetStateMachine, (WebSocket_ReceiveAsync_d_14__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x0269B000, void, WebSocket_SendWithArrayPoolAsync_d_16_MoveNext, (WebSocket_SendWithArrayPoolAsync_d_16__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0269B7B0, void, WebSocket_SendWithArrayPoolAsync_d_16_SetStateMachine, (WebSocket_SendWithArrayPoolAsync_d_16__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x0269A630, void, WebSocket_ReceiveAsync_d_14_MoveNext, (WebSocket_ReceiveAsync_d_14 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0269AFB0, void, WebSocket_ReceiveAsync_d_14_SetStateMachine, (WebSocket_ReceiveAsync_d_14 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x0269B000, void, WebSocket_SendWithArrayPoolAsync_d_16_MoveNext, (WebSocket_SendWithArrayPoolAsync_d_16 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0269B7B0, void, WebSocket_SendWithArrayPoolAsync_d_16_SetStateMachine, (WebSocket_SendWithArrayPoolAsync_d_16 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, WebSocketContext__ctor, (WebSocketContext * __this, MethodInfo * method)); DO_APP_FUNC(0x0269B810, void, WebSocketException__ctor, (WebSocketException * __this, MethodInfo * method)); DO_APP_FUNC(0x0269B8E0, void, WebSocketException__ctor_1, (WebSocketException * __this, WebSocketError__Enum error, MethodInfo * method)); @@ -33786,6 +38672,7 @@ DO_APP_FUNC(0x0269BF60, void, WebSocketException_SetErrorCodeOnError, (WebSocket DO_APP_FUNC(0x01FECB40, bool, WebSocketException_Succeeded, (int32_t hr, MethodInfo * method)); DO_APP_FUNC(0x0269BF70, void, WebSocketReceiveResult__ctor, (WebSocketReceiveResult * __this, int32_t count, WebSocketMessageType__Enum messageType, bool endOfMessage, MethodInfo * method)); DO_APP_FUNC(0x0269BF90, void, WebSocketReceiveResult__ctor_1, (WebSocketReceiveResult * __this, int32_t count, WebSocketMessageType__Enum messageType, bool endOfMessage, Nullable_1_System_Net_WebSockets_WebSocketCloseStatus_ closeStatus, String * closeStatusDescription, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25120, WebSocketReceiveResult__ctor_1__MethodInfo); DO_APP_FUNC(0x003BCD50, int32_t, WebSocketReceiveResult_get_Count, (WebSocketReceiveResult * __this, MethodInfo * method)); DO_APP_FUNC(0x003CD410, bool, WebSocketReceiveResult_get_EndOfMessage, (WebSocketReceiveResult * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, WebSocketMessageType__Enum, WebSocketReceiveResult_get_MessageType, (WebSocketReceiveResult * __this, MethodInfo * method)); @@ -33797,15 +38684,20 @@ DO_APP_FUNC(0x0269C310, Boolean__Array *, MailBnfHelper_CreateCharactersAllowedI DO_APP_FUNC(0x0269C400, Boolean__Array *, MailBnfHelper_CreateCharactersAllowedInHeaderNames, (MethodInfo * method)); DO_APP_FUNC(0x0269C490, Boolean__Array *, MailBnfHelper_CreateCharactersAllowedInTokens, (MethodInfo * method)); DO_APP_FUNC(0x0269C5B0, Boolean__Array *, MailBnfHelper_CreateCharactersAllowedInComments, (MethodInfo * method)); -DO_APP_FUNC(0x0269C6C0, bool, MailBnfHelper_SkipCFWS, (String * data, int32_t offset, MethodInfo * method)); +DO_APP_FUNC(0x0269C6C0, bool, MailBnfHelper_SkipCFWS, (String * data, int32_t * offset, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25068, MailBnfHelper_SkipCFWS__MethodInfo); DO_APP_FUNC(0x0269C8D0, void, MailBnfHelper_ValidateHeaderName, (String * data, MethodInfo * method)); -DO_APP_FUNC(0x0269CAA0, String *, MailBnfHelper_ReadQuotedString, (String * data, int32_t offset, StringBuilder * builder, MethodInfo * method)); -DO_APP_FUNC(0x0269CB20, String *, MailBnfHelper_ReadQuotedString_1, (String * data, int32_t offset, StringBuilder * builder, bool doesntRequireQuotes, bool permitUnicodeInDisplayName, MethodInfo * method)); -DO_APP_FUNC(0x0269CFE0, String *, MailBnfHelper_ReadParameterAttribute, (String * data, int32_t offset, StringBuilder * builder, MethodInfo * method)); -DO_APP_FUNC(0x0269D080, String *, MailBnfHelper_ReadToken, (String * data, int32_t offset, StringBuilder * builder, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D250C8, MailBnfHelper_ValidateHeaderName__MethodInfo); +DO_APP_FUNC(0x0269CAA0, String *, MailBnfHelper_ReadQuotedString, (String * data, int32_t * offset, StringBuilder * builder, MethodInfo * method)); +DO_APP_FUNC(0x0269CB20, String *, MailBnfHelper_ReadQuotedString_1, (String * data, int32_t * offset, StringBuilder * builder, bool doesntRequireQuotes, bool permitUnicodeInDisplayName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D250D8, MailBnfHelper_ReadQuotedString_1__MethodInfo); +DO_APP_FUNC(0x0269CFE0, String *, MailBnfHelper_ReadParameterAttribute, (String * data, int32_t * offset, StringBuilder * builder, MethodInfo * method)); +DO_APP_FUNC(0x0269D080, String *, MailBnfHelper_ReadToken, (String * data, int32_t * offset, StringBuilder * builder, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D250A8, MailBnfHelper_ReadToken__MethodInfo); DO_APP_FUNC(0x0269D2F0, String *, MailBnfHelper_GetDateTimeString, (DateTime value, StringBuilder * builder, MethodInfo * method)); DO_APP_FUNC(0x0269DA90, void, MailBnfHelper_GetTokenOrQuotedString, (String * data, StringBuilder * builder, bool allowUnicode, MethodInfo * method)); DO_APP_FUNC(0x0269DD70, bool, MailBnfHelper_CheckForUnicode, (uint16_t ch, bool allowUnicode, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25020, MailBnfHelper_CheckForUnicode__MethodInfo); DO_APP_FUNC(0x0269DE70, bool, MailBnfHelper_IsAllowedWhiteSpace, (uint16_t c, MethodInfo * method)); DO_APP_FUNC(0x0269DF40, bool, MailBnfHelper_HasCROrLF, (String * data, MethodInfo * method)); DO_APP_FUNC(0x0269DFB0, bool, MailBnfHelper_IsFWSAt, (String * data, int32_t index, MethodInfo * method)); @@ -33817,21 +38709,27 @@ DO_APP_FUNC(0x01A71040, void, Base64WriteStateInfo_set_Padding, (Base64WriteStat DO_APP_FUNC(0x005C2A50, uint8_t, Base64WriteStateInfo_get_LastBits, (Base64WriteStateInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01D007E0, void, Base64WriteStateInfo_set_LastBits, (Base64WriteStateInfo * __this, uint8_t value, MethodInfo * method)); DO_APP_FUNC(0x0269EF60, void, BaseWriter__ctor, (BaseWriter * __this, Stream * stream, bool shouldEncodeLeadingDots, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25000, BaseWriter__ctor__MethodInfo); DO_APP_FUNC(0x0269F220, void, BaseWriter_WriteHeader, (BaseWriter * __this, String * name, String * value, bool allowUnicode, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25058, BaseWriter_WriteHeader__MethodInfo); DO_APP_FUNC(0x0269F4B0, void, BaseWriter_WriteAndFold, (BaseWriter * __this, String * value, int32_t charsAlreadyOnLine, bool allowUnicode, MethodInfo * method)); DO_APP_FUNC(0x0269F740, Stream *, BaseWriter_GetContentStream, (BaseWriter * __this, MethodInfo * method)); DO_APP_FUNC(0x0269F750, Stream *, BaseWriter_GetContentStream_1, (BaseWriter * __this, MultiAsyncResult * multiResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25040, BaseWriter_GetContentStream_1__MethodInfo); DO_APP_FUNC(0x0269F9D0, IAsyncResult *, BaseWriter_BeginGetContentStream, (BaseWriter * __this, AsyncCallback * callback, Object * state, MethodInfo * method)); DO_APP_FUNC(0x0269FB10, Stream *, BaseWriter_EndGetContentStream, (BaseWriter * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x0269FC40, void, BaseWriter_Flush, (BaseWriter * __this, MultiAsyncResult * multiResult, MethodInfo * method)); DO_APP_FUNC(0x0269FDE0, void, BaseWriter_OnWrite, (IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24F28, BaseWriter_OnWrite__MethodInfo); DO_APP_FUNC(0x003AE050, void, BaseWriter_CheckBoundary, (BaseWriter * __this, MethodInfo * method)); DO_APP_FUNC(0x0269FF40, void, BaseWriter__cctor, (MethodInfo * method)); DO_APP_FUNC(0x026A00F0, void, ContentDisposition__ctor, (ContentDisposition * __this, MethodInfo * method)); DO_APP_FUNC(0x026A01D0, void, ContentDisposition__ctor_1, (ContentDisposition * __this, String * disposition, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24FC8, ContentDisposition__ctor_1__MethodInfo); DO_APP_FUNC(0x026A02A0, DateTime, ContentDisposition_GetDateParameter, (ContentDisposition * __this, String * parameterName, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, String *, ContentDisposition_get_DispositionType, (ContentDisposition * __this, MethodInfo * method)); DO_APP_FUNC(0x026A0470, void, ContentDisposition_set_DispositionType, (ContentDisposition * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24F78, ContentDisposition_set_DispositionType__MethodInfo); DO_APP_FUNC(0x026A0600, StringDictionary *, ContentDisposition_get_Parameters, (ContentDisposition * __this, MethodInfo * method)); DO_APP_FUNC(0x026A0700, String *, ContentDisposition_get_FileName, (ContentDisposition * __this, MethodInfo * method)); DO_APP_FUNC(0x026A0770, void, ContentDisposition_set_FileName, (ContentDisposition * __this, String * value, MethodInfo * method)); @@ -33854,19 +38752,24 @@ DO_APP_FUNC(0x026A15A0, void, ContentDisposition_EncodeToBuffer, (String * value DO_APP_FUNC(0x026A1910, bool, ContentDisposition_Equals, (ContentDisposition * __this, Object * rparam, MethodInfo * method)); DO_APP_FUNC(0x026A1A20, int32_t, ContentDisposition_GetHashCode, (ContentDisposition * __this, MethodInfo * method)); DO_APP_FUNC(0x026A1A70, void, ContentDisposition_ParseValue, (ContentDisposition * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24E70, ContentDisposition_ParseValue__MethodInfo); DO_APP_FUNC(0x026A2150, void, ContentDisposition__cctor, (MethodInfo * method)); DO_APP_FUNC(0x026A2580, void, ContentDisposition_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ContentDisposition_c__ctor, (ContentDisposition_c * __this, MethodInfo * method)); DO_APP_FUNC(0x026A2630, Object *, ContentDisposition_c___cctor_b__49_0, (ContentDisposition_c * __this, Object * v, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24E78, ContentDisposition_c___cctor_b__49_0__MethodInfo); DO_APP_FUNC(0x026A26C0, Object *, ContentDisposition_c___cctor_b__49_1, (ContentDisposition_c * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24ED0, ContentDisposition_c___cctor_b__49_1__MethodInfo); DO_APP_FUNC(0x026A2820, void, ContentType__ctor, (ContentType * __this, MethodInfo * method)); DO_APP_FUNC(0x026A2870, void, ContentType__ctor_1, (ContentType * __this, String * contentType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24E20, ContentType__ctor_1__MethodInfo); DO_APP_FUNC(0x026A2AD0, String *, ContentType_get_Boundary, (ContentType * __this, MethodInfo * method)); DO_APP_FUNC(0x026A2B30, void, ContentType_set_Boundary, (ContentType * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x026A2C20, String *, ContentType_get_CharSet, (ContentType * __this, MethodInfo * method)); DO_APP_FUNC(0x026A2C80, void, ContentType_set_CharSet, (ContentType * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x026A2D70, String *, ContentType_get_MediaType, (ContentType * __this, MethodInfo * method)); DO_APP_FUNC(0x026A2DC0, void, ContentType_set_MediaType, (ContentType * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24E10, ContentType_set_MediaType__MethodInfo); DO_APP_FUNC(0x026A30F0, String *, ContentType_get_Name, (ContentType * __this, MethodInfo * method)); DO_APP_FUNC(0x026A31B0, void, ContentType_set_Name, (ContentType * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, StringDictionary *, ContentType_get_Parameters, (ContentType * __this, MethodInfo * method)); @@ -33879,31 +38782,43 @@ DO_APP_FUNC(0x026A39E0, void, ContentType_EncodeToBuffer, (String * value, Strin DO_APP_FUNC(0x026A1910, bool, ContentType_Equals, (ContentType * __this, Object * rparam, MethodInfo * method)); DO_APP_FUNC(0x026A1A20, int32_t, ContentType_GetHashCode, (ContentType * __this, MethodInfo * method)); DO_APP_FUNC(0x026A3D50, void, ContentType_ParseValue, (ContentType * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24DB0, ContentType_ParseValue__MethodInfo); DO_APP_FUNC(0x026A4380, WriteStateInfoBase *, EightBitStream_get_WriteState, (EightBitStream * __this, MethodInfo * method)); DO_APP_FUNC(0x026A4440, void, EightBitStream__ctor, (EightBitStream * __this, Stream * stream, MethodInfo * method)); DO_APP_FUNC(0x026A4450, void, EightBitStream__ctor_1, (EightBitStream * __this, Stream * stream, bool shouldEncodeLeadingDots, MethodInfo * method)); DO_APP_FUNC(0x026A4480, IAsyncResult *, EightBitStream_BeginWrite, (EightBitStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, AsyncCallback * callback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24DB8, EightBitStream_BeginWrite__MethodInfo); DO_APP_FUNC(0x026A4620, void, EightBitStream_EndWrite, (EightBitStream * __this, IAsyncResult * asyncResult, MethodInfo * method)); DO_APP_FUNC(0x026A46E0, void, EightBitStream_Write, (EightBitStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24D88, EightBitStream_Write__MethodInfo); DO_APP_FUNC(0x026A48A0, void, EightBitStream_EncodeLines, (EightBitStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x00A1B820, Stream *, EightBitStream_GetStream, (EightBitStream * __this, MethodInfo * method)); DO_APP_FUNC(0x026A49E0, int32_t, EightBitStream_DecodeBytes, (EightBitStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24D70, EightBitStream_DecodeBytes__MethodInfo); DO_APP_FUNC(0x026A4A30, int32_t, EightBitStream_EncodeBytes, (EightBitStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24D60, EightBitStream_EncodeBytes__MethodInfo); DO_APP_FUNC(0x026A4A80, String *, EightBitStream_GetEncodedString, (EightBitStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24DA0, EightBitStream_GetEncodedString__MethodInfo); DO_APP_FUNC(0x026A4AD0, IEncodableStream *, EncodedStreamFactory_GetEncoder, (EncodedStreamFactory * __this, TransferEncoding__Enum encoding, Stream * stream, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24DE0, EncodedStreamFactory_GetEncoder__MethodInfo); DO_APP_FUNC(0x026A4C70, IEncodableStream *, EncodedStreamFactory_GetEncoderForHeader, (EncodedStreamFactory * __this, Encoding * encoding, bool useBase64Encoding, int32_t headerTextLength, MethodInfo * method)); DO_APP_FUNC(0x026A50B0, Byte__Array *, EncodedStreamFactory_CreateHeader, (EncodedStreamFactory * __this, Encoding * encoding, bool useBase64Encoding, MethodInfo * method)); DO_APP_FUNC(0x026A51B0, Byte__Array *, EncodedStreamFactory_CreateFooter, (EncodedStreamFactory * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, EncodedStreamFactory__ctor, (EncodedStreamFactory * __this, MethodInfo * method)); DO_APP_FUNC(0x026A5210, void, HeaderCollection__ctor, (HeaderCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x026A5390, void, HeaderCollection_Remove, (HeaderCollection * __this, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24D38, HeaderCollection_Remove__MethodInfo); DO_APP_FUNC(0x026A5650, String *, HeaderCollection_Get, (HeaderCollection * __this, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24D08, HeaderCollection_Get__MethodInfo); DO_APP_FUNC(0x026A5970, String__Array *, HeaderCollection_GetValues, (HeaderCollection * __this, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24D20, HeaderCollection_GetValues__MethodInfo); DO_APP_FUNC(0x026A5C90, void, HeaderCollection_InternalRemove, (HeaderCollection * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x026A5CC0, void, HeaderCollection_InternalSet, (HeaderCollection * __this, String * name, String * value, MethodInfo * method)); DO_APP_FUNC(0x026A5CD0, void, HeaderCollection_InternalAdd, (HeaderCollection * __this, String * name, String * value, MethodInfo * method)); DO_APP_FUNC(0x026A5FB0, void, HeaderCollection_Set, (HeaderCollection * __this, String * name, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24D58, HeaderCollection_Set__MethodInfo); DO_APP_FUNC(0x026A6640, void, HeaderCollection_Add, (HeaderCollection * __this, String * name, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24D48, HeaderCollection_Add__MethodInfo); DO_APP_FUNC(0x003AE050, void, MimeBasePart__ctor, (MimeBasePart * __this, MethodInfo * method)); DO_APP_FUNC(0x026A6C10, bool, MimeBasePart_ShouldUseBase64Encoding, (Encoding * encoding, MethodInfo * method)); DO_APP_FUNC(0x026A6C60, String *, MimeBasePart_EncodeHeaderValue, (String * value, Encoding * encoding, bool base64Encoding, MethodInfo * method)); @@ -33911,6 +38826,7 @@ DO_APP_FUNC(0x026A6CE0, String *, MimeBasePart_EncodeHeaderValue_1, (String * va DO_APP_FUNC(0x026A6EE0, String *, MimeBasePart_DecodeHeaderValue, (String * value, MethodInfo * method)); DO_APP_FUNC(0x026A73D0, Encoding *, MimeBasePart_DecodeEncoding, (String * value, MethodInfo * method)); DO_APP_FUNC(0x026A75B0, bool, MimeBasePart_IsAscii, (String * value, bool permitCROrLF, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24CA8, MimeBasePart_IsAscii__MethodInfo); DO_APP_FUNC(0x026A7670, String *, MimeBasePart_get_ContentID, (MimeBasePart * __this, MethodInfo * method)); DO_APP_FUNC(0x026A7750, void, MimeBasePart_set_ContentID, (MimeBasePart * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x026A78F0, String *, MimeBasePart_get_ContentLocation, (MimeBasePart * __this, MethodInfo * method)); @@ -33918,22 +38834,30 @@ DO_APP_FUNC(0x026A79D0, void, MimeBasePart_set_ContentLocation, (MimeBasePart * DO_APP_FUNC(0x026A7B70, NameValueCollection *, MimeBasePart_get_Headers, (MimeBasePart * __this, MethodInfo * method)); DO_APP_FUNC(0x026A7EA0, ContentType *, MimeBasePart_get_ContentType, (MimeBasePart * __this, MethodInfo * method)); DO_APP_FUNC(0x026A7F90, void, MimeBasePart_set_ContentType, (MimeBasePart * __this, ContentType * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24CF8, MimeBasePart_set_ContentType__MethodInfo); DO_APP_FUNC(0x026A80E0, void, MimeBasePart_PrepareHeaders, (MimeBasePart * __this, bool allowUnicode, MethodInfo * method)); DO_APP_FUNC(0x026A8390, void, MimeBasePart_Send, (MimeBasePart * __this, BaseWriter * writer, bool allowUnicode, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24CC0, MimeBasePart_Send__MethodInfo); DO_APP_FUNC(0x026A83E0, IAsyncResult *, MimeBasePart_BeginSend, (MimeBasePart * __this, BaseWriter * writer, AsyncCallback * callback, bool allowUnicode, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24CB8, MimeBasePart_BeginSend__MethodInfo); DO_APP_FUNC(0x026A8430, void, MimeBasePart_EndSend, (MimeBasePart * __this, IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24CC8, MimeBasePart_EndSend__MethodInfo); DO_APP_FUNC(0x026A8690, void, MimeBasePart__cctor, (MethodInfo * method)); DO_APP_FUNC(0x026A88D0, void, MimeBasePart_MimePartAsyncResult__ctor, (MimeBasePart_MimePartAsyncResult * __this, MimeBasePart * part, Object * state, AsyncCallback * callback, MethodInfo * method)); DO_APP_FUNC(0x026A88E0, void, MimeMultiPart__ctor, (MimeMultiPart * __this, MimeMultiPartType__Enum type, MethodInfo * method)); DO_APP_FUNC(0x026A89C0, void, MimeMultiPart_set_MimeMultiPartType, (MimeMultiPart * __this, MimeMultiPartType__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24BF8, MimeMultiPart_set_MimeMultiPartType__MethodInfo); DO_APP_FUNC(0x026A8A60, void, MimeMultiPart_SetType, (MimeMultiPart * __this, MimeMultiPartType__Enum type, MethodInfo * method)); DO_APP_FUNC(0x026A8C50, Collection_1_System_Net_Mime_MimeBasePart_ *, MimeMultiPart_get_Parts, (MimeMultiPart * __this, MethodInfo * method)); DO_APP_FUNC(0x026A8D20, void, MimeMultiPart_Complete, (MimeMultiPart * __this, IAsyncResult * result, Exception * e, MethodInfo * method)); DO_APP_FUNC(0x026A8E80, void, MimeMultiPart_MimeWriterCloseCallback, (MimeMultiPart * __this, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24C50, MimeMultiPart_MimeWriterCloseCallback__MethodInfo); DO_APP_FUNC(0x026A8F80, void, MimeMultiPart_MimeWriterCloseCallbackHandler, (MimeMultiPart * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x026A9130, void, MimeMultiPart_MimePartSentCallback, (MimeMultiPart * __this, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24B78, MimeMultiPart_MimePartSentCallback__MethodInfo); DO_APP_FUNC(0x026A9230, void, MimeMultiPart_MimePartSentCallbackHandler, (MimeMultiPart * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x026A94D0, void, MimeMultiPart_ContentStreamCallback, (MimeMultiPart * __this, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24B80, MimeMultiPart_ContentStreamCallback__MethodInfo); DO_APP_FUNC(0x026A95D0, void, MimeMultiPart_ContentStreamCallbackHandler, (MimeMultiPart * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x026A9A40, IAsyncResult *, MimeMultiPart_BeginSend, (MimeMultiPart * __this, BaseWriter * writer, AsyncCallback * callback, bool allowUnicode, Object * state, MethodInfo * method)); DO_APP_FUNC(0x026A9D50, void, MimeMultiPart_Send, (MimeMultiPart * __this, BaseWriter * writer, bool allowUnicode, MethodInfo * method)); @@ -33946,23 +38870,33 @@ DO_APP_FUNC(0x003BB3D0, ContentDisposition *, MimePart_get_ContentDisposition, ( DO_APP_FUNC(0x026AA490, void, MimePart_set_ContentDisposition, (MimePart * __this, ContentDisposition * value, MethodInfo * method)); DO_APP_FUNC(0x026AA680, TransferEncoding__Enum, MimePart_get_TransferEncoding, (MimePart * __this, MethodInfo * method)); DO_APP_FUNC(0x026AAA50, void, MimePart_set_TransferEncoding, (MimePart * __this, TransferEncoding__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24BA0, MimePart_set_TransferEncoding__MethodInfo); DO_APP_FUNC(0x026AAE10, void, MimePart_SetContent, (MimePart * __this, Stream * stream, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24B98, MimePart_SetContent__MethodInfo); DO_APP_FUNC(0x026AAF80, void, MimePart_SetContent_1, (MimePart * __this, Stream * stream, String * name, String * mimeType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24BC8, MimePart_SetContent_1__MethodInfo); DO_APP_FUNC(0x026AB140, void, MimePart_SetContent_2, (MimePart * __this, Stream * stream, ContentType * contentType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24BC0, MimePart_SetContent_2__MethodInfo); DO_APP_FUNC(0x026AB210, void, MimePart_Complete, (MimePart * __this, IAsyncResult * result, Exception * e, MethodInfo * method)); DO_APP_FUNC(0x026AB370, void, MimePart_ReadCallback, (MimePart * __this, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24B08, MimePart_ReadCallback__MethodInfo); DO_APP_FUNC(0x026AB470, void, MimePart_ReadCallbackHandler, (MimePart * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x026AB5F0, void, MimePart_WriteCallback, (MimePart * __this, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24B38, MimePart_WriteCallback__MethodInfo); DO_APP_FUNC(0x026AB6F0, void, MimePart_WriteCallbackHandler, (MimePart * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x026AB850, Stream *, MimePart_GetEncodedStream, (MimePart * __this, Stream * stream, MethodInfo * method)); DO_APP_FUNC(0x026AB9E0, void, MimePart_ContentStreamCallbackHandler, (MimePart * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x026ABCD0, void, MimePart_ContentStreamCallback, (MimePart * __this, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24B40, MimePart_ContentStreamCallback__MethodInfo); DO_APP_FUNC(0x026ABDD0, IAsyncResult *, MimePart_BeginSend, (MimePart * __this, BaseWriter * writer, AsyncCallback * callback, bool allowUnicode, Object * state, MethodInfo * method)); DO_APP_FUNC(0x026AC0C0, void, MimePart_Send, (MimePart * __this, BaseWriter * writer, bool allowUnicode, MethodInfo * method)); DO_APP_FUNC(0x026AC230, void, MimePart_ResetStream, (MimePart * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24B20, MimePart_ResetStream__MethodInfo); DO_APP_FUNC(0x026AC2E0, void, MimePart_MimePartContext__ctor, (MimePart_MimePartContext * __this, BaseWriter * writer, LazyAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x026AC440, void, MimeWriter__ctor, (MimeWriter * __this, Stream * stream, String * boundary, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24B30, MimeWriter__ctor__MethodInfo); DO_APP_FUNC(0x026AC590, void, MimeWriter_WriteHeaders, (MimeWriter * __this, NameValueCollection * headers, bool allowUnicode, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24A98, MimeWriter_WriteHeaders__MethodInfo); DO_APP_FUNC(0x026ACB80, IAsyncResult *, MimeWriter_BeginClose, (MimeWriter * __this, AsyncCallback * callback, Object * state, MethodInfo * method)); DO_APP_FUNC(0x026ACC30, void, MimeWriter_EndClose, (MimeWriter * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x026ACCD0, void, MimeWriter_Close, (MimeWriter * __this, MethodInfo * method)); @@ -33983,8 +38917,10 @@ DO_APP_FUNC(0x026AD4D0, void, QEncodedStream__ctor, (QEncodedStream * __this, Wr DO_APP_FUNC(0x026AD5A0, QEncodedStream_ReadStateInfo *, QEncodedStream_get_ReadState, (QEncodedStream * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7390, WriteStateInfoBase *, QEncodedStream_get_WriteState, (QEncodedStream * __this, MethodInfo * method)); DO_APP_FUNC(0x026AD650, IAsyncResult *, QEncodedStream_BeginWrite, (QEncodedStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, AsyncCallback * callback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24AF8, QEncodedStream_BeginWrite__MethodInfo); DO_APP_FUNC(0x026AD8C0, void, QEncodedStream_Close, (QEncodedStream * __this, MethodInfo * method)); DO_APP_FUNC(0x026AD930, int32_t, QEncodedStream_DecodeBytes, (QEncodedStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24AB8, QEncodedStream_DecodeBytes__MethodInfo); DO_APP_FUNC(0x026ADFF0, int32_t, QEncodedStream_EncodeBytes, (QEncodedStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x026AE3F0, bool, QEncodedStream_IsAsciiLetterOrDigit, (uint16_t character, MethodInfo * method)); DO_APP_FUNC(0x026AE470, bool, QEncodedStream_IsAsciiLetter, (uint16_t character, MethodInfo * method)); @@ -33994,6 +38930,7 @@ DO_APP_FUNC(0x026AE4F0, void, QEncodedStream_EndWrite, (QEncodedStream * __this, DO_APP_FUNC(0x026AE5B0, void, QEncodedStream_Flush, (QEncodedStream * __this, MethodInfo * method)); DO_APP_FUNC(0x026AE620, void, QEncodedStream_FlushInternal, (QEncodedStream * __this, MethodInfo * method)); DO_APP_FUNC(0x026AE670, void, QEncodedStream_Write, (QEncodedStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D249D8, QEncodedStream_Write__MethodInfo); DO_APP_FUNC(0x026AE840, void, QEncodedStream__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003BCD20, bool, QEncodedStream_ReadStateInfo_get_IsEscaped, (QEncodedStream_ReadStateInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD30, void, QEncodedStream_ReadStateInfo_set_IsEscaped, (QEncodedStream_ReadStateInfo * __this, bool value, MethodInfo * method)); @@ -34004,15 +38941,19 @@ DO_APP_FUNC(0x026AE9F0, void, QEncodedStream_WriteAsyncResult__ctor, (QEncodedSt DO_APP_FUNC(0x026AEB00, void, QEncodedStream_WriteAsyncResult_CompleteWrite, (QEncodedStream_WriteAsyncResult * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x026AEB50, void, QEncodedStream_WriteAsyncResult_End, (IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x026AEBD0, void, QEncodedStream_WriteAsyncResult_OnWrite, (IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D249A8, QEncodedStream_WriteAsyncResult_OnWrite__MethodInfo); DO_APP_FUNC(0x026AED30, void, QEncodedStream_WriteAsyncResult_Write, (QEncodedStream_WriteAsyncResult * __this, MethodInfo * method)); DO_APP_FUNC(0x026AEFB0, void, QEncodedStream_WriteAsyncResult__cctor, (MethodInfo * method)); DO_APP_FUNC(0x026AF090, void, QuotedPrintableStream__ctor, (QuotedPrintableStream * __this, Stream * stream, int32_t lineLength, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24A50, QuotedPrintableStream__ctor__MethodInfo); DO_APP_FUNC(0x026AF110, void, QuotedPrintableStream__ctor_1, (QuotedPrintableStream * __this, Stream * stream, bool encodeCRLF, MethodInfo * method)); DO_APP_FUNC(0x026AF140, QuotedPrintableStream_ReadStateInfo *, QuotedPrintableStream_get_ReadState, (QuotedPrintableStream * __this, MethodInfo * method)); DO_APP_FUNC(0x026AF1F0, WriteStateInfoBase *, QuotedPrintableStream_get_WriteState, (QuotedPrintableStream * __this, MethodInfo * method)); DO_APP_FUNC(0x026AF2E0, IAsyncResult *, QuotedPrintableStream_BeginWrite, (QuotedPrintableStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, AsyncCallback * callback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24A10, QuotedPrintableStream_BeginWrite__MethodInfo); DO_APP_FUNC(0x026AF550, void, QuotedPrintableStream_Close, (QuotedPrintableStream * __this, MethodInfo * method)); DO_APP_FUNC(0x026AF590, int32_t, QuotedPrintableStream_DecodeBytes, (QuotedPrintableStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24A40, QuotedPrintableStream_DecodeBytes__MethodInfo); DO_APP_FUNC(0x026AFC40, int32_t, QuotedPrintableStream_EncodeBytes, (QuotedPrintableStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x00A1B820, Stream *, QuotedPrintableStream_GetStream, (QuotedPrintableStream * __this, MethodInfo * method)); DO_APP_FUNC(0x026B0150, String *, QuotedPrintableStream_GetEncodedString, (QuotedPrintableStream * __this, MethodInfo * method)); @@ -34020,6 +38961,7 @@ DO_APP_FUNC(0x026B01D0, void, QuotedPrintableStream_EndWrite, (QuotedPrintableSt DO_APP_FUNC(0x026B0280, void, QuotedPrintableStream_Flush, (QuotedPrintableStream * __this, MethodInfo * method)); DO_APP_FUNC(0x026B02C0, void, QuotedPrintableStream_FlushInternal, (QuotedPrintableStream * __this, MethodInfo * method)); DO_APP_FUNC(0x026B0340, void, QuotedPrintableStream_Write, (QuotedPrintableStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24868, QuotedPrintableStream_Write__MethodInfo); DO_APP_FUNC(0x026B04E0, void, QuotedPrintableStream__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003BCD20, bool, QuotedPrintableStream_ReadStateInfo_get_IsEscaped, (QuotedPrintableStream_ReadStateInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD30, void, QuotedPrintableStream_ReadStateInfo_set_IsEscaped, (QuotedPrintableStream_ReadStateInfo * __this, bool value, MethodInfo * method)); @@ -34030,6 +38972,7 @@ DO_APP_FUNC(0x026AE9F0, void, QuotedPrintableStream_WriteAsyncResult__ctor, (Quo DO_APP_FUNC(0x026B0680, void, QuotedPrintableStream_WriteAsyncResult_CompleteWrite, (QuotedPrintableStream_WriteAsyncResult * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x026B06E0, void, QuotedPrintableStream_WriteAsyncResult_End, (IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x026B0750, void, QuotedPrintableStream_WriteAsyncResult_OnWrite, (IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24848, QuotedPrintableStream_WriteAsyncResult_OnWrite__MethodInfo); DO_APP_FUNC(0x026B08A0, void, QuotedPrintableStream_WriteAsyncResult_Write, (QuotedPrintableStream_WriteAsyncResult * __this, MethodInfo * method)); DO_APP_FUNC(0x026B0B50, void, QuotedPrintableStream_WriteAsyncResult__cctor, (MethodInfo * method)); DO_APP_FUNC(0x026B0C30, Dictionary_2_System_String_System_TimeSpan_ *, SmtpDateTime_InitializeShortHandLookups, (MethodInfo * method)); @@ -34037,12 +38980,16 @@ DO_APP_FUNC(0x026B11E0, void, SmtpDateTime__ctor, (SmtpDateTime * __this, DateTi DO_APP_FUNC(0x026B1340, void, SmtpDateTime__ctor_1, (SmtpDateTime * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x026B1B60, DateTime, SmtpDateTime_get_Date, (SmtpDateTime * __this, MethodInfo * method)); DO_APP_FUNC(0x026B1C20, String *, SmtpDateTime_ToString, (SmtpDateTime * __this, MethodInfo * method)); -DO_APP_FUNC(0x026B1E00, void, SmtpDateTime_ValidateAndGetTimeZoneOffsetValues, (SmtpDateTime * __this, String * offset, bool positive, int32_t hours, int32_t minutes, MethodInfo * method)); +DO_APP_FUNC(0x026B1E00, void, SmtpDateTime_ValidateAndGetTimeZoneOffsetValues, (SmtpDateTime * __this, String * offset, bool * positive, int32_t * hours, int32_t * minutes, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24778, SmtpDateTime_ValidateAndGetTimeZoneOffsetValues__MethodInfo); DO_APP_FUNC(0x026B2140, void, SmtpDateTime_ValidateTimeZoneShortHandValue, (SmtpDateTime * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24738, SmtpDateTime_ValidateTimeZoneShortHandValue__MethodInfo); DO_APP_FUNC(0x026B2230, String *, SmtpDateTime_FormatDate, (SmtpDateTime * __this, DateTime value, MethodInfo * method)); -DO_APP_FUNC(0x026B2360, DateTime, SmtpDateTime_ParseValue, (SmtpDateTime * __this, String * data, String * timeZone, MethodInfo * method)); -DO_APP_FUNC(0x026B2780, bool, SmtpDateTime_TryParseTimeZoneString, (SmtpDateTime * __this, String * timeZoneString, TimeSpan timeZone, MethodInfo * method)); +DO_APP_FUNC(0x026B2360, DateTime, SmtpDateTime_ParseValue, (SmtpDateTime * __this, String * data, String * * timeZone, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24750, SmtpDateTime_ParseValue__MethodInfo); +DO_APP_FUNC(0x026B2780, bool, SmtpDateTime_TryParseTimeZoneString, (SmtpDateTime * __this, String * timeZoneString, TimeSpan * timeZone, MethodInfo * method)); DO_APP_FUNC(0x026B2AB0, TimeSpan, SmtpDateTime_ValidateAndGetSanitizedTimeSpan, (SmtpDateTime * __this, TimeSpan span, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24800, SmtpDateTime_ValidateAndGetSanitizedTimeSpan__MethodInfo); DO_APP_FUNC(0x026B2CB0, String *, SmtpDateTime_TimeSpanToOffset, (SmtpDateTime * __this, TimeSpan span, MethodInfo * method)); DO_APP_FUNC(0x026B2FA0, void, SmtpDateTime__cctor, (MethodInfo * method)); DO_APP_FUNC(0x026B3310, void, WriteStateInfoBase__ctor, (WriteStateInfoBase * __this, MethodInfo * method)); @@ -34064,22 +39011,34 @@ DO_APP_FUNC(0x003CC980, int32_t, WriteStateInfoBase_get_MaxLineLength, (WriteSta DO_APP_FUNC(0x026B3A20, void, WriteStateInfoBase_Reset, (WriteStateInfoBase * __this, MethodInfo * method)); DO_APP_FUNC(0x01D31F80, void, WriteStateInfoBase_BufferFlushed, (WriteStateInfoBase * __this, MethodInfo * method)); DO_APP_FUNC(0x026B3A30, int32_t, DomainLiteralReader_ReadReverse, (String * data, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24650, DomainLiteralReader_ReadReverse__MethodInfo); DO_APP_FUNC(0x026B3D00, int32_t, DotAtomReader_ReadReverse, (String * data, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24670, DotAtomReader_ReadReverse__MethodInfo); DO_APP_FUNC(0x026B3FF0, MailAddress *, MailAddressParser_ParseAddress, (String * data, MethodInfo * method)); DO_APP_FUNC(0x026B4020, List_1_System_Net_Mail_MailAddress_ *, MailAddressParser_ParseMultipleAddresses, (String * data, MethodInfo * method)); -DO_APP_FUNC(0x026B4100, MailAddress *, MailAddressParser_ParseAddress_1, (String * data, bool expectMultipleAddresses, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x026B4100, MailAddress *, MailAddressParser_ParseAddress_1, (String * data, bool expectMultipleAddresses, int32_t * index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D246F0, MailAddressParser_ParseAddress_1__MethodInfo); DO_APP_FUNC(0x026B46C0, int32_t, MailAddressParser_ReadCfwsAndThrowIfIncomplete, (String * data, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x026B4730, String *, MailAddressParser_ParseDomain, (String * data, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x026B4830, String *, MailAddressParser_ParseLocalPart, (String * data, int32_t index, bool expectAngleBracket, bool expectMultipleAddresses, MethodInfo * method)); -DO_APP_FUNC(0x026B4C00, String *, MailAddressParser_ParseDisplayName, (String * data, int32_t index, bool expectMultipleAddresses, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D246A0, MailAddressParser_ReadCfwsAndThrowIfIncomplete__MethodInfo); +DO_APP_FUNC(0x026B4730, String *, MailAddressParser_ParseDomain, (String * data, int32_t * index, MethodInfo * method)); +DO_APP_FUNC(0x026B4830, String *, MailAddressParser_ParseLocalPart, (String * data, int32_t * index, bool expectAngleBracket, bool expectMultipleAddresses, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D245E8, MailAddressParser_ParseLocalPart__MethodInfo); +DO_APP_FUNC(0x026B4C00, String *, MailAddressParser_ParseDisplayName, (String * data, int32_t * index, bool expectMultipleAddresses, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D245D0, MailAddressParser_ParseDisplayName__MethodInfo); DO_APP_FUNC(0x026B4E30, String *, MailAddressParser_NormalizeOrThrow, (String * input, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24600, MailAddressParser_NormalizeOrThrow__MethodInfo); DO_APP_FUNC(0x026B4ED0, int32_t, QuotedPairReader_CountQuotedChars, (String * data, int32_t index, bool permitUnicodeEscaping, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5D88, QuotedPairReader_CountQuotedChars__MethodInfo); DO_APP_FUNC(0x026B5110, int32_t, QuotedPairReader_CountBackslashes, (String * data, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x026B51D0, int32_t, QuotedStringFormatReader_ReadReverseQuoted, (String * data, int32_t index, bool permitUnicode, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5D90, QuotedStringFormatReader_ReadReverseQuoted__MethodInfo); DO_APP_FUNC(0x026B5430, int32_t, QuotedStringFormatReader_ReadReverseUnQuoted, (String * data, int32_t index, bool permitUnicode, bool expectCommaDelimiter, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5D78, QuotedStringFormatReader_ReadReverseUnQuoted__MethodInfo); DO_APP_FUNC(0x026B55E0, bool, QuotedStringFormatReader_IsValidQtext, (bool allowUnicode, uint16_t ch, MethodInfo * method)); DO_APP_FUNC(0x026B56A0, int32_t, WhitespaceReader_ReadFwsReverse, (String * data, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5D80, WhitespaceReader_ReadFwsReverse__MethodInfo); DO_APP_FUNC(0x026B5930, int32_t, WhitespaceReader_ReadCfwsReverse, (String * data, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5D48, WhitespaceReader_ReadCfwsReverse__MethodInfo); DO_APP_FUNC(0x026B5D30, void, BufferBuilder__ctor, (BufferBuilder * __this, MethodInfo * method)); DO_APP_FUNC(0x026B5DC0, void, BufferBuilder__ctor_1, (BufferBuilder * __this, int32_t initialSize, MethodInfo * method)); DO_APP_FUNC(0x026B5E60, void, BufferBuilder_EnsureBuffer, (BufferBuilder * __this, int32_t count, MethodInfo * method)); @@ -34090,6 +39049,7 @@ DO_APP_FUNC(0x026B6090, void, BufferBuilder_Append_3, (BufferBuilder * __this, S DO_APP_FUNC(0x026B60C0, void, BufferBuilder_Append_4, (BufferBuilder * __this, String * value, bool allowUnicode, MethodInfo * method)); DO_APP_FUNC(0x026B60F0, void, BufferBuilder_Append_5, (BufferBuilder * __this, String * value, int32_t offset, int32_t count, bool allowUnicode, MethodInfo * method)); DO_APP_FUNC(0x026B6310, void, BufferBuilder_Append_6, (BufferBuilder * __this, String * value, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5D50, BufferBuilder_Append_6__MethodInfo); DO_APP_FUNC(0x003BC2E0, int32_t, BufferBuilder_get_Length, (BufferBuilder * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, Byte__Array *, BufferBuilder_GetBuffer, (BufferBuilder * __this, MethodInfo * method)); DO_APP_FUNC(0x00A3FB40, void, BufferBuilder_Reset, (BufferBuilder * __this, MethodInfo * method)); @@ -34097,11 +39057,14 @@ DO_APP_FUNC(0x026B6460, void, MailAddress__ctor, (MailAddress * __this, String * DO_APP_FUNC(0x026B6610, void, MailAddress__ctor_1, (MailAddress * __this, String * address, MethodInfo * method)); DO_APP_FUNC(0x026B6630, void, MailAddress__ctor_2, (MailAddress * __this, String * address, String * displayName, MethodInfo * method)); DO_APP_FUNC(0x026B6650, void, MailAddress__ctor_3, (MailAddress * __this, String * address, String * displayName, Encoding * displayNameEncoding, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5D28, MailAddress__ctor_3__MethodInfo); DO_APP_FUNC(0x003BB3D0, String *, MailAddress_get_DisplayName, (MailAddress * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, String *, MailAddress_get_User, (MailAddress * __this, MethodInfo * method)); DO_APP_FUNC(0x026B6A30, String *, MailAddress_GetUser, (MailAddress * __this, bool allowUnicode, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5D38, MailAddress_GetUser__MethodInfo); DO_APP_FUNC(0x003BB3B0, String *, MailAddress_get_Host, (MailAddress * __this, MethodInfo * method)); DO_APP_FUNC(0x026B6B90, String *, MailAddress_GetHost, (MailAddress * __this, bool allowUnicode, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5D70, MailAddress_GetHost__MethodInfo); DO_APP_FUNC(0x026B6D60, String *, MailAddress_get_Address, (MailAddress * __this, MethodInfo * method)); DO_APP_FUNC(0x026B6DB0, String *, MailAddress_GetAddress, (MailAddress * __this, bool allowUnicode, MethodInfo * method)); DO_APP_FUNC(0x026B6F70, String *, MailAddress_get_SmtpAddress, (MailAddress * __this, MethodInfo * method)); @@ -34113,8 +39076,11 @@ DO_APP_FUNC(0x026B7300, String *, MailAddress_Encode, (MailAddress * __this, int DO_APP_FUNC(0x026B75E0, void, MailAddress__cctor, (MethodInfo * method)); DO_APP_FUNC(0x026B76A0, void, MailAddressCollection__ctor, (MailAddressCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x026B76E0, void, MailAddressCollection_Add, (MailAddressCollection * __this, String * addresses, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5CA0, MailAddressCollection_Add__MethodInfo); DO_APP_FUNC(0x026B7850, void, MailAddressCollection_SetItem, (MailAddressCollection * __this, int32_t index, MailAddress * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5C68, MailAddressCollection_SetItem__MethodInfo); DO_APP_FUNC(0x026B7910, void, MailAddressCollection_InsertItem, (MailAddressCollection * __this, int32_t index, MailAddress * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5C88, MailAddressCollection_InsertItem__MethodInfo); DO_APP_FUNC(0x026B79D0, void, MailAddressCollection_ParseValue, (MailAddressCollection * __this, String * addresses, MethodInfo * method)); DO_APP_FUNC(0x026B7C20, String *, MailAddressCollection_ToString, (MailAddressCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x026B7EC0, String *, MailAddressCollection_Encode, (MailAddressCollection * __this, int32_t charsConsumed, bool allowUnicode, MethodInfo * method)); @@ -34125,10 +39091,13 @@ DO_APP_FUNC(0x026BA0F0, bool, MailHeaderInfo_IsUserSettable, (String * name, Met DO_APP_FUNC(0x026BA210, bool, MailHeaderInfo_IsSingleton, (String * name, MethodInfo * method)); DO_APP_FUNC(0x026BA330, String *, MailHeaderInfo_NormalizeCase, (String * name, MethodInfo * method)); DO_APP_FUNC(0x026BA450, bool, MailHeaderInfo_AllowsUnicode, (String * name, MethodInfo * method)); -DO_APP_FUNC(0x026BA570, void, MailHeaderInfo_HeaderInfo__ctor, (MailHeaderInfo_HeaderInfo__Boxed * __this, MailHeaderID__Enum id, String * name, bool isSingleton, bool isUserSettable, bool allowsUnicode, MethodInfo * method)); +DO_APP_FUNC(0x026BA570, void, MailHeaderInfo_HeaderInfo__ctor, (MailHeaderInfo_HeaderInfo * __this, MailHeaderID__Enum id, String * name, bool isSingleton, bool isUserSettable, bool allowsUnicode, MethodInfo * method)); DO_APP_FUNC(0x026BA5E0, void, AlternateView__ctor, (AlternateView * __this, String * fileName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5AE8, AlternateView__ctor__MethodInfo); DO_APP_FUNC(0x026BA720, void, AlternateView__ctor_1, (AlternateView * __this, String * fileName, ContentType * contentType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5AF0, AlternateView__ctor_1__MethodInfo); DO_APP_FUNC(0x026BA870, void, AlternateView__ctor_2, (AlternateView * __this, String * fileName, String * mediaType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5B10, AlternateView__ctor_2__MethodInfo); DO_APP_FUNC(0x026BA9C0, void, AlternateView__ctor_3, (AlternateView * __this, Stream * contentStream, MethodInfo * method)); DO_APP_FUNC(0x026BAAC0, void, AlternateView__ctor_4, (AlternateView * __this, Stream * contentStream, String * mediaType, MethodInfo * method)); DO_APP_FUNC(0x026BABC0, void, AlternateView__ctor_5, (AlternateView * __this, Stream * contentStream, ContentType * contentType, MethodInfo * method)); @@ -34136,8 +39105,11 @@ DO_APP_FUNC(0x003BB330, Uri *, AlternateView_get_BaseUri, (AlternateView * __thi DO_APP_FUNC(0x00424C30, void, AlternateView_set_BaseUri, (AlternateView * __this, Uri * value, MethodInfo * method)); DO_APP_FUNC(0x003C7320, LinkedResourceCollection *, AlternateView_get_LinkedResources, (AlternateView * __this, MethodInfo * method)); DO_APP_FUNC(0x026BACC0, AlternateView *, AlternateView_CreateAlternateViewFromString, (String * content, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5B00, AlternateView_CreateAlternateViewFromString__MethodInfo); DO_APP_FUNC(0x026BAEA0, AlternateView *, AlternateView_CreateAlternateViewFromString_1, (String * content, ContentType * contentType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5B08, AlternateView_CreateAlternateViewFromString_1__MethodInfo); DO_APP_FUNC(0x026BB050, AlternateView *, AlternateView_CreateAlternateViewFromString_2, (String * content, Encoding * contentEncoding, String * mediaType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5A78, AlternateView_CreateAlternateViewFromString_2__MethodInfo); DO_APP_FUNC(0x026BB240, void, AlternateView_Dispose, (AlternateView * __this, bool disposing, MethodInfo * method)); DO_APP_FUNC(0x026BB480, void, AlternateViewCollection__ctor, (AlternateViewCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AlternateViewCollection_Dispose, (AlternateViewCollection * __this, MethodInfo * method)); @@ -34157,17 +39129,28 @@ DO_APP_FUNC(0x026BBEA0, void, Attachment_set_Name, (Attachment * __this, String DO_APP_FUNC(0x003C7320, Encoding *, Attachment_get_NameEncoding, (Attachment * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7330, void, Attachment_set_NameEncoding, (Attachment * __this, Encoding * value, MethodInfo * method)); DO_APP_FUNC(0x026BBEC0, Attachment *, Attachment_CreateAttachmentFromString, (String * content, ContentType * contentType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5A08, Attachment_CreateAttachmentFromString__MethodInfo); DO_APP_FUNC(0x026BC050, Attachment *, Attachment_CreateAttachmentFromString_1, (String * content, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD59F8, Attachment_CreateAttachmentFromString_1__MethodInfo); DO_APP_FUNC(0x026BC240, Attachment *, Attachment_CreateAttachmentFromString_2, (String * content, String * name, Encoding * contentEncoding, String * mediaType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD59B0, Attachment_CreateAttachmentFromString_2__MethodInfo); DO_APP_FUNC(0x026BC520, void, Attachment_InitName, (Attachment * __this, String * fileName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD59C0, Attachment_InitName__MethodInfo); DO_APP_FUNC(0x026BC5F0, void, AttachmentBase__ctor, (AttachmentBase * __this, Stream * contentStream, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5A38, AttachmentBase__ctor__MethodInfo); DO_APP_FUNC(0x026BC810, void, AttachmentBase__ctor_1, (AttachmentBase * __this, Stream * contentStream, ContentType * contentType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5A48, AttachmentBase__ctor_1__MethodInfo); DO_APP_FUNC(0x026BCA20, void, AttachmentBase__ctor_2, (AttachmentBase * __this, Stream * contentStream, String * mediaType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5A40, AttachmentBase__ctor_2__MethodInfo); DO_APP_FUNC(0x026BCBE0, void, AttachmentBase__ctor_3, (AttachmentBase * __this, String * fileName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5A20, AttachmentBase__ctor_3__MethodInfo); DO_APP_FUNC(0x026BCF30, void, AttachmentBase__ctor_4, (AttachmentBase * __this, String * fileName, ContentType * contentType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5A30, AttachmentBase__ctor_4__MethodInfo); DO_APP_FUNC(0x026BD130, void, AttachmentBase__ctor_5, (AttachmentBase * __this, String * fileName, String * mediaType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD58B8, AttachmentBase__ctor_5__MethodInfo); DO_APP_FUNC(0x003BB3C0, String *, AttachmentBase_get_ContentId, (AttachmentBase * __this, MethodInfo * method)); DO_APP_FUNC(0x026BD2F0, void, AttachmentBase_set_ContentId, (AttachmentBase * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5898, AttachmentBase_set_ContentId__MethodInfo); DO_APP_FUNC(0x003BB3E0, Stream *, AttachmentBase_get_ContentStream, (AttachmentBase * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, ContentType *, AttachmentBase_get_ContentType, (AttachmentBase * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE960, void, AttachmentBase_set_ContentType, (AttachmentBase * __this, ContentType * value, MethodInfo * method)); @@ -34185,16 +39168,25 @@ DO_APP_FUNC(0x026C5050, void, AttachmentCollection_InsertItem, (AttachmentCollec DO_APP_FUNC(0x026C50B0, void, AttachmentCollection_RemoveItem, (AttachmentCollection * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x026C5140, void, AttachmentCollection_SetItem, (AttachmentCollection * __this, int32_t index, Attachment * item, MethodInfo * method)); DO_APP_FUNC(0x026C51A0, void, LinkedResource__ctor, (LinkedResource * __this, String * fileName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3FC8, LinkedResource__ctor__MethodInfo); DO_APP_FUNC(0x026C5200, void, LinkedResource__ctor_1, (LinkedResource * __this, String * fileName, ContentType * contentType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3FA8, LinkedResource__ctor_1__MethodInfo); DO_APP_FUNC(0x026C5260, void, LinkedResource__ctor_2, (LinkedResource * __this, String * fileName, String * mediaType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3FB0, LinkedResource__ctor_2__MethodInfo); DO_APP_FUNC(0x026C52C0, void, LinkedResource__ctor_3, (LinkedResource * __this, Stream * contentStream, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3FE0, LinkedResource__ctor_3__MethodInfo); DO_APP_FUNC(0x026C5320, void, LinkedResource__ctor_4, (LinkedResource * __this, Stream * contentStream, ContentType * contentType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3FE8, LinkedResource__ctor_4__MethodInfo); DO_APP_FUNC(0x026C5380, void, LinkedResource__ctor_5, (LinkedResource * __this, Stream * contentStream, String * mediaType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3FD0, LinkedResource__ctor_5__MethodInfo); DO_APP_FUNC(0x003BB330, Uri *, LinkedResource_get_ContentLink, (LinkedResource * __this, MethodInfo * method)); DO_APP_FUNC(0x00424C30, void, LinkedResource_set_ContentLink, (LinkedResource * __this, Uri * value, MethodInfo * method)); DO_APP_FUNC(0x026C53E0, LinkedResource *, LinkedResource_CreateLinkedResourceFromString, (String * content, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD4050, LinkedResource_CreateLinkedResourceFromString__MethodInfo); DO_APP_FUNC(0x026C5500, LinkedResource *, LinkedResource_CreateLinkedResourceFromString_1, (String * content, ContentType * contentType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD4070, LinkedResource_CreateLinkedResourceFromString_1__MethodInfo); DO_APP_FUNC(0x026C5630, LinkedResource *, LinkedResource_CreateLinkedResourceFromString_2, (String * content, Encoding * contentEncoding, String * mediaType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD4038, LinkedResource_CreateLinkedResourceFromString_2__MethodInfo); DO_APP_FUNC(0x026C5760, void, LinkedResourceCollection__ctor, (LinkedResourceCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x026C57A0, void, LinkedResourceCollection_Dispose, (LinkedResourceCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, LinkedResourceCollection_Dispose_1, (LinkedResourceCollection * __this, bool disposing, MethodInfo * method)); @@ -34204,8 +39196,11 @@ DO_APP_FUNC(0x026C58D0, void, LinkedResourceCollection_RemoveItem, (LinkedResour DO_APP_FUNC(0x026C5960, void, LinkedResourceCollection_SetItem, (LinkedResourceCollection * __this, int32_t index, LinkedResource * item, MethodInfo * method)); DO_APP_FUNC(0x026C59C0, void, MailMessage__ctor, (MailMessage * __this, MethodInfo * method)); DO_APP_FUNC(0x026C5F20, void, MailMessage__ctor_1, (MailMessage * __this, MailAddress * from, MailAddress * to, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3F80, MailMessage__ctor_1__MethodInfo); DO_APP_FUNC(0x026C6030, void, MailMessage__ctor_2, (MailMessage * __this, String * from, String * to, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3F98, MailMessage__ctor_2__MethodInfo); DO_APP_FUNC(0x026C6320, void, MailMessage__ctor_3, (MailMessage * __this, String * from, String * to, String * subject, String * body, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3F88, MailMessage__ctor_3__MethodInfo); DO_APP_FUNC(0x003BB3C0, AlternateViewCollection *, MailMessage_get_AlternateViews, (MailMessage * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, AttachmentCollection *, MailMessage_get_Attachments, (MailMessage * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, MailAddressCollection *, MailMessage_get_Bcc, (MailMessage * __this, MethodInfo * method)); @@ -34217,6 +39212,7 @@ DO_APP_FUNC(0x003C91F0, Encoding *, MailMessage_get_BodyEncoding, (MailMessage * DO_APP_FUNC(0x00A86420, void, MailMessage_set_BodyEncoding, (MailMessage * __this, Encoding * value, MethodInfo * method)); DO_APP_FUNC(0x026C6A10, TransferEncoding__Enum, MailMessage_get_BodyTransferEncoding, (MailMessage * __this, MethodInfo * method)); DO_APP_FUNC(0x026C6A70, void, MailMessage_set_BodyTransferEncoding, (MailMessage * __this, TransferEncoding__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3F58, MailMessage_set_BodyTransferEncoding__MethodInfo); DO_APP_FUNC(0x003C7420, MailAddressCollection *, MailMessage_get_CC, (MailMessage * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7400, DeliveryNotificationOptions__Enum, MailMessage_get_DeliveryNotificationOptions, (MailMessage * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7410, void, MailMessage_set_DeliveryNotificationOptions, (MailMessage * __this, DeliveryNotificationOptions__Enum value, MethodInfo * method)); @@ -34265,40 +39261,52 @@ DO_APP_FUNC(0x00424C90, bool, SmtpClient_get_EnableSsl, (SmtpClient * __this, Me DO_APP_FUNC(0x026C79F0, void, SmtpClient_set_EnableSsl, (SmtpClient * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, String *, SmtpClient_get_Host, (SmtpClient * __this, MethodInfo * method)); DO_APP_FUNC(0x026C7A20, void, SmtpClient_set_Host, (SmtpClient * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3E80, SmtpClient_set_Host__MethodInfo); DO_APP_FUNC(0x003BB3B0, String *, SmtpClient_get_PickupDirectoryLocation, (SmtpClient * __this, MethodInfo * method)); DO_APP_FUNC(0x003C6500, void, SmtpClient_set_PickupDirectoryLocation, (SmtpClient * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, SmtpClient_get_Port, (SmtpClient * __this, MethodInfo * method)); DO_APP_FUNC(0x026C7B60, void, SmtpClient_set_Port, (SmtpClient * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3E70, SmtpClient_set_Port__MethodInfo); DO_APP_FUNC(0x00A2A110, SmtpDeliveryFormat__Enum, SmtpClient_get_DeliveryFormat, (SmtpClient * __this, MethodInfo * method)); DO_APP_FUNC(0x026C7BE0, void, SmtpClient_set_DeliveryFormat, (SmtpClient * __this, SmtpDeliveryFormat__Enum value, MethodInfo * method)); DO_APP_FUNC(0x026C7C10, ServicePoint *, SmtpClient_get_ServicePoint, (SmtpClient * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3E98, SmtpClient_get_ServicePoint__MethodInfo); DO_APP_FUNC(0x003CD440, int32_t, SmtpClient_get_Timeout, (SmtpClient * __this, MethodInfo * method)); DO_APP_FUNC(0x026C7C60, void, SmtpClient_set_Timeout, (SmtpClient * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3EB0, SmtpClient_set_Timeout__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, SmtpClient_get_UseDefaultCredentials, (SmtpClient * __this, MethodInfo * method)); DO_APP_FUNC(0x026C7CE0, void, SmtpClient_set_UseDefaultCredentials, (SmtpClient * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3E90, SmtpClient_set_UseDefaultCredentials__MethodInfo); DO_APP_FUNC(0x026C7D50, void, SmtpClient_add_SendCompleted, (SmtpClient * __this, SendCompletedEventHandler * value, MethodInfo * method)); DO_APP_FUNC(0x026C7E50, void, SmtpClient_remove_SendCompleted, (SmtpClient * __this, SendCompletedEventHandler * value, MethodInfo * method)); DO_APP_FUNC(0x02676330, void, SmtpClient_Dispose, (SmtpClient * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SmtpClient_Dispose_1, (SmtpClient * __this, bool disposing, MethodInfo * method)); DO_APP_FUNC(0x026C7F50, void, SmtpClient_CheckState, (SmtpClient * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3D38, SmtpClient_CheckState__MethodInfo); DO_APP_FUNC(0x026C7FC0, String *, SmtpClient_EncodeAddress, (MailAddress * address, MethodInfo * method)); DO_APP_FUNC(0x026C8280, String *, SmtpClient_EncodeAddresses, (MailAddressCollection * addresses, MethodInfo * method)); DO_APP_FUNC(0x026C8510, String *, SmtpClient_EncodeSubjectRFC2047, (SmtpClient * __this, MailMessage * message, MethodInfo * method)); DO_APP_FUNC(0x026C8580, String *, SmtpClient_EncodeBody, (SmtpClient * __this, MailMessage * message, MethodInfo * method)); DO_APP_FUNC(0x026C8790, String *, SmtpClient_EncodeBody_1, (SmtpClient * __this, AlternateView * av, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3DD0, SmtpClient_EncodeBody_1__MethodInfo); DO_APP_FUNC(0x026C88F0, void, SmtpClient_EndSection, (SmtpClient * __this, String * section, MethodInfo * method)); DO_APP_FUNC(0x026C89C0, String *, SmtpClient_GenerateBoundary, (SmtpClient * __this, MethodInfo * method)); DO_APP_FUNC(0x026C8B10, String *, SmtpClient_GenerateBoundary_1, (int32_t index, MethodInfo * method)); DO_APP_FUNC(0x026C8C40, bool, SmtpClient_IsError, (SmtpClient * __this, SmtpClient_SmtpResponse status, MethodInfo * method)); DO_APP_FUNC(0x026C8C50, void, SmtpClient_OnSendCompleted, (SmtpClient * __this, AsyncCompletedEventArgs * e, MethodInfo * method)); DO_APP_FUNC(0x026C8DA0, void, SmtpClient_CheckCancellation, (SmtpClient * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3D60, SmtpClient_CheckCancellation__MethodInfo); DO_APP_FUNC(0x026C8E10, SmtpClient_SmtpResponse, SmtpClient_Read, (SmtpClient * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3DA0, SmtpClient_Read__MethodInfo); DO_APP_FUNC(0x026C90E0, void, SmtpClient_ResetExtensions, (SmtpClient * __this, MethodInfo * method)); DO_APP_FUNC(0x026C90F0, void, SmtpClient_ParseExtensions, (SmtpClient * __this, String * extens, MethodInfo * method)); DO_APP_FUNC(0x026C9430, void, SmtpClient_Send, (SmtpClient * __this, MailMessage * message, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3B68, SmtpClient_Send__MethodInfo); DO_APP_FUNC(0x026C9780, void, SmtpClient_SendInternal, (SmtpClient * __this, MailMessage * message, MethodInfo * method)); DO_APP_FUNC(0x026C9B80, void, SmtpClient_SendToFile, (SmtpClient * __this, MailMessage * message, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3AD8, SmtpClient_SendToFile__MethodInfo); DO_APP_FUNC(0x026CA2D0, void, SmtpClient_SendCore, (SmtpClient * __this, MailMessage * message, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD39D8, SmtpClient_SendCore__MethodInfo); DO_APP_FUNC(0x026CB890, void, SmtpClient_Send_1, (SmtpClient * __this, String * from, String * recipients, String * subject, String * body, MethodInfo * method)); DO_APP_FUNC(0x026CB940, Task *, SmtpClient_SendMailAsync, (SmtpClient * __this, MailMessage * message, MethodInfo * method)); DO_APP_FUNC(0x026CBE30, Task *, SmtpClient_SendMailAsync_1, (SmtpClient * __this, String * from, String * recipients, String * subject, String * body, MethodInfo * method)); @@ -34306,16 +39314,21 @@ DO_APP_FUNC(0x026CBEE0, void, SmtpClient_SendMailAsyncCompletedHandler, (TaskCom DO_APP_FUNC(0x026CC120, void, SmtpClient_SendDot, (SmtpClient * __this, MethodInfo * method)); DO_APP_FUNC(0x026CC190, void, SmtpClient_SendData, (SmtpClient * __this, String * data, MethodInfo * method)); DO_APP_FUNC(0x026CC360, void, SmtpClient_SendAsync, (SmtpClient * __this, MailMessage * message, Object * userToken, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3A28, SmtpClient_SendAsync__MethodInfo); DO_APP_FUNC(0x026CC680, void, SmtpClient_SendAsync_1, (SmtpClient * __this, String * from, String * recipients, String * subject, String * body, Object * userToken, MethodInfo * method)); DO_APP_FUNC(0x026CC740, void, SmtpClient_SendAsyncCancel, (SmtpClient * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3A88, SmtpClient_SendAsyncCancel__MethodInfo); DO_APP_FUNC(0x026CC7C0, void, SmtpClient_AddPriorityHeader, (SmtpClient * __this, MailMessage * message, MethodInfo * method)); DO_APP_FUNC(0x026CC930, void, SmtpClient_SendSimpleBody, (SmtpClient * __this, MailMessage * message, MethodInfo * method)); DO_APP_FUNC(0x026CCB90, void, SmtpClient_SendBodylessSingleAlternate, (SmtpClient * __this, AlternateView * av, MethodInfo * method)); DO_APP_FUNC(0x026CCDA0, void, SmtpClient_SendWithoutAttachments, (SmtpClient * __this, MailMessage * message, String * boundary, bool attachmentExists, MethodInfo * method)); DO_APP_FUNC(0x026CCF60, void, SmtpClient_SendWithAttachments, (SmtpClient * __this, MailMessage * message, MethodInfo * method)); DO_APP_FUNC(0x026CD370, void, SmtpClient_SendBodyWithAlternateViews, (SmtpClient * __this, MailMessage * message, String * boundary, bool attachmentExists, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3858, SmtpClient_SendBodyWithAlternateViews__MethodInfo); DO_APP_FUNC(0x026CDCE0, void, SmtpClient_SendLinkedResources, (SmtpClient * __this, MailMessage * message, LinkedResourceCollection * resources, String * boundary, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3898, SmtpClient_SendLinkedResources__MethodInfo); DO_APP_FUNC(0x026CE0D0, void, SmtpClient_SendAttachments, (SmtpClient * __this, MailMessage * message, Attachment * body, String * boundary, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD35E0, SmtpClient_SendAttachments__MethodInfo); DO_APP_FUNC(0x026CE580, SmtpClient_SmtpResponse, SmtpClient_SendCommand, (SmtpClient * __this, String * command, MethodInfo * method)); DO_APP_FUNC(0x026CE640, void, SmtpClient_SendHeader, (SmtpClient * __this, String * name, String * value, MethodInfo * method)); DO_APP_FUNC(0x026CE700, void, SmtpClient_StartSection, (SmtpClient * __this, String * section, ContentType * sectionContentType, MethodInfo * method)); @@ -34325,17 +39338,25 @@ DO_APP_FUNC(0x026CEC40, String *, SmtpClient_ToQuotedPrintable, (SmtpClient * __ DO_APP_FUNC(0x026CEC80, String *, SmtpClient_ToQuotedPrintable_1, (SmtpClient * __this, Byte__Array * bytes, MethodInfo * method)); DO_APP_FUNC(0x026CEF30, String *, SmtpClient_GetTransferEncodingName, (TransferEncoding__Enum encoding, MethodInfo * method)); DO_APP_FUNC(0x026CEFD0, void, SmtpClient_InitiateSecureConnection, (SmtpClient * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3660, SmtpClient_InitiateSecureConnection__MethodInfo); DO_APP_FUNC(0x026CF2B0, void, SmtpClient_Authenticate, (SmtpClient * __this, MethodInfo * method)); DO_APP_FUNC(0x026CF3B0, void, SmtpClient_CheckStatus, (SmtpClient * __this, SmtpClient_SmtpResponse status, int32_t i, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3490, SmtpClient_CheckStatus__MethodInfo); DO_APP_FUNC(0x026CF420, void, SmtpClient_ThrowIfError, (SmtpClient * __this, SmtpClient_SmtpResponse status, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3498, SmtpClient_ThrowIfError__MethodInfo); DO_APP_FUNC(0x026CF490, void, SmtpClient_Authenticate_1, (SmtpClient * __this, String * user, String * password, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3458, SmtpClient_Authenticate_1__MethodInfo); DO_APP_FUNC(0x026CF890, void, SmtpClient_CancellationException__ctor, (SmtpClient_CancellationException * __this, MethodInfo * method)); DO_APP_FUNC(0x026CF8E0, SmtpClient_SmtpResponse, SmtpClient_SmtpResponse_Parse, (String * line, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3470, SmtpClient_SmtpResponse_Parse__MethodInfo); DO_APP_FUNC(0x003AE050, void, SmtpClient_c_DisplayClass85_0__ctor, (SmtpClient_c_DisplayClass85_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x026CFAB0, void, SmtpClient_c_DisplayClass85_0__SendMailAsync_b__0, (SmtpClient_c_DisplayClass85_0 * __this, Object * s, AsyncCompletedEventArgs * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3950, SmtpClient_c_DisplayClass85_0__SendMailAsync_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, SmtpClient_c_DisplayClass90_0__ctor, (SmtpClient_c_DisplayClass90_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x026CFAE0, void, SmtpClient_c_DisplayClass90_0__SendAsync_b__0, (SmtpClient_c_DisplayClass90_0 * __this, Object * o, DoWorkEventArgs * ea, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3AA8, SmtpClient_c_DisplayClass90_0__SendAsync_b__0__MethodInfo); DO_APP_FUNC(0x026CFBD0, void, SmtpClient_c_DisplayClass90_0__SendAsync_b__1, (SmtpClient_c_DisplayClass90_0 * __this, Object * o, RunWorkerCompletedEventArgs * ea, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3A40, SmtpClient_c_DisplayClass90_0__SendAsync_b__1__MethodInfo); DO_APP_FUNC(0x003BCE40, void, CCredentialsByHost__ctor, (CCredentialsByHost * __this, String * userName, String * password, MethodInfo * method)); DO_APP_FUNC(0x026CFC90, NetworkCredential *, CCredentialsByHost_GetCredential, (CCredentialsByHost * __this, String * host, int32_t port, String * authenticationType, MethodInfo * method)); DO_APP_FUNC(0x026CFD10, void, SmtpException__ctor, (SmtpException * __this, MethodInfo * method)); @@ -34347,16 +39368,19 @@ DO_APP_FUNC(0x026D00A0, void, SmtpException__ctor_5, (SmtpException * __this, St DO_APP_FUNC(0x00C2C5E0, SmtpStatusCode__Enum, SmtpException_get_StatusCode, (SmtpException * __this, MethodInfo * method)); DO_APP_FUNC(0x01DB9910, void, SmtpException_set_StatusCode, (SmtpException * __this, SmtpStatusCode__Enum value, MethodInfo * method)); DO_APP_FUNC(0x026D0120, void, SmtpException_GetObjectData, (SmtpException * __this, SerializationInfo * serializationInfo, StreamingContext streamingContext, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3318, SmtpException_GetObjectData__MethodInfo); DO_APP_FUNC(0x012305B0, void, SmtpException_System_Runtime_Serialization_ISerializable_GetObjectData, (SmtpException * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x026CFD10, void, SmtpFailedRecipientException__ctor, (SmtpFailedRecipientException * __this, MethodInfo * method)); DO_APP_FUNC(0x026D0330, void, SmtpFailedRecipientException__ctor_1, (SmtpFailedRecipientException * __this, String * message, MethodInfo * method)); DO_APP_FUNC(0x026D0340, void, SmtpFailedRecipientException__ctor_2, (SmtpFailedRecipientException * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3350, SmtpFailedRecipientException__ctor_2__MethodInfo); DO_APP_FUNC(0x026D0470, void, SmtpFailedRecipientException__ctor_3, (SmtpFailedRecipientException * __this, SmtpStatusCode__Enum statusCode, String * failedRecipient, MethodInfo * method)); DO_APP_FUNC(0x026D0530, void, SmtpFailedRecipientException__ctor_4, (SmtpFailedRecipientException * __this, String * message, Exception * innerException, MethodInfo * method)); DO_APP_FUNC(0x026D0540, void, SmtpFailedRecipientException__ctor_5, (SmtpFailedRecipientException * __this, String * message, String * failedRecipient, Exception * innerException, MethodInfo * method)); DO_APP_FUNC(0x026D05C0, void, SmtpFailedRecipientException__ctor_6, (SmtpFailedRecipientException * __this, SmtpStatusCode__Enum statusCode, String * failedRecipient, String * serverResponse, MethodInfo * method)); DO_APP_FUNC(0x0049E0C0, String *, SmtpFailedRecipientException_get_FailedRecipient, (SmtpFailedRecipientException * __this, MethodInfo * method)); DO_APP_FUNC(0x026D0640, void, SmtpFailedRecipientException_GetObjectData, (SmtpFailedRecipientException * __this, SerializationInfo * serializationInfo, StreamingContext streamingContext, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD32D8, SmtpFailedRecipientException_GetObjectData__MethodInfo); DO_APP_FUNC(0x012305B0, void, SmtpFailedRecipientException_System_Runtime_Serialization_ISerializable_GetObjectData, (SmtpFailedRecipientException * __this, SerializationInfo * serializationInfo, StreamingContext streamingContext, MethodInfo * method)); DO_APP_FUNC(0x026CFD10, void, SmtpFailedRecipientsException__ctor, (SmtpFailedRecipientsException * __this, MethodInfo * method)); DO_APP_FUNC(0x026D0330, void, SmtpFailedRecipientsException__ctor_1, (SmtpFailedRecipientsException * __this, String * message, MethodInfo * method)); @@ -34365,6 +39389,7 @@ DO_APP_FUNC(0x026D0720, void, SmtpFailedRecipientsException__ctor_3, (SmtpFailed DO_APP_FUNC(0x026D07A0, void, SmtpFailedRecipientsException__ctor_4, (SmtpFailedRecipientsException * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x005B9620, SmtpFailedRecipientException__Array *, SmtpFailedRecipientsException_get_InnerExceptions, (SmtpFailedRecipientsException * __this, MethodInfo * method)); DO_APP_FUNC(0x026D0A30, void, SmtpFailedRecipientsException_GetObjectData, (SmtpFailedRecipientsException * __this, SerializationInfo * serializationInfo, StreamingContext streamingContext, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3420, SmtpFailedRecipientsException_GetObjectData__MethodInfo); DO_APP_FUNC(0x012305B0, void, SmtpFailedRecipientsException_System_Runtime_Serialization_ISerializable_GetObjectData, (SmtpFailedRecipientsException * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x01E14640, bool, DelegatingStream_get_CanRead, (DelegatingStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01E14670, bool, DelegatingStream_get_CanSeek, (DelegatingStream * __this, MethodInfo * method)); @@ -34401,18 +39426,20 @@ DO_APP_FUNC(0x026D0DF0, Task *, DelegatingStream_CopyToAsync, (DelegatingStream DO_APP_FUNC(0x026D0E20, void, SafeDeleteContext__ctor, (SafeDeleteContext * __this, MethodInfo * method)); DO_APP_FUNC(0x026D0EB0, bool, SafeDeleteContext_get_IsInvalid, (SafeDeleteContext * __this, MethodInfo * method)); DO_APP_FUNC(0x026D0F20, String *, SafeDeleteContext_ToString, (SafeDeleteContext * __this, MethodInfo * method)); -DO_APP_FUNC(0x026D0F30, int32_t, SafeDeleteContext_InitializeSecurityContext, (SafeFreeCredentials * inCredentials, SafeDeleteContext * refContext, String * targetName, Interop_SspiCli_ContextFlags__Enum inFlags, Interop_SspiCli_Endianness__Enum endianness, SecurityBuffer * inSecBuffer, SecurityBuffer__Array * inSecBuffers, SecurityBuffer * outSecBuffer, Interop_SspiCli_ContextFlags__Enum outFlags, MethodInfo * method)); -DO_APP_FUNC(0x026D1DA0, int32_t, SafeDeleteContext_MustRunInitializeSecurityContext, (SafeFreeCredentials * inCredentials, Void * inContextPtr, uint8_t * targetName, Interop_SspiCli_ContextFlags__Enum inFlags, Interop_SspiCli_Endianness__Enum endianness, Interop_SspiCli_SecBufferDesc * inputBuffer, SafeDeleteContext * outContext, Interop_SspiCli_SecBufferDesc outputBuffer, Interop_SspiCli_ContextFlags__Enum attributes, SafeFreeContextBuffer * handleTemplate, MethodInfo * method)); -DO_APP_FUNC(0x026D2170, int32_t, SafeDeleteContext_AcceptSecurityContext, (SafeFreeCredentials * inCredentials, SafeDeleteContext * refContext, Interop_SspiCli_ContextFlags__Enum inFlags, Interop_SspiCli_Endianness__Enum endianness, SecurityBuffer * inSecBuffer, SecurityBuffer__Array * inSecBuffers, SecurityBuffer * outSecBuffer, Interop_SspiCli_ContextFlags__Enum outFlags, MethodInfo * method)); -DO_APP_FUNC(0x026D2D40, int32_t, SafeDeleteContext_MustRunAcceptSecurityContext_SECURITY, (SafeFreeCredentials * inCredentials, Void * inContextPtr, Interop_SspiCli_SecBufferDesc * inputBuffer, Interop_SspiCli_ContextFlags__Enum inFlags, Interop_SspiCli_Endianness__Enum endianness, SafeDeleteContext * outContext, Interop_SspiCli_SecBufferDesc outputBuffer, Interop_SspiCli_ContextFlags__Enum outFlags, SafeFreeContextBuffer * handleTemplate, MethodInfo * method)); -DO_APP_FUNC(0x026D2FE0, int32_t, SafeDeleteContext_CompleteAuthToken, (SafeDeleteContext * refContext, SecurityBuffer__Array * inSecBuffers, MethodInfo * method)); -DO_APP_FUNC(0x026D3870, int32_t, SafeDeleteContext_ApplyControlToken, (SafeDeleteContext * refContext, SecurityBuffer__Array * inSecBuffers, MethodInfo * method)); +DO_APP_FUNC(0x026D0F30, int32_t, SafeDeleteContext_InitializeSecurityContext, (SafeFreeCredentials * * inCredentials, SafeDeleteContext * * refContext, String * targetName, Interop_SspiCli_ContextFlags__Enum inFlags, Interop_SspiCli_Endianness__Enum endianness, SecurityBuffer * inSecBuffer, SecurityBuffer__Array * inSecBuffers, SecurityBuffer * outSecBuffer, Interop_SspiCli_ContextFlags__Enum * outFlags, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD31D0, SafeDeleteContext_InitializeSecurityContext__MethodInfo); +DO_APP_FUNC(0x026D1DA0, int32_t, SafeDeleteContext_MustRunInitializeSecurityContext, (SafeFreeCredentials * * inCredentials, Void * inContextPtr, uint8_t * targetName, Interop_SspiCli_ContextFlags__Enum inFlags, Interop_SspiCli_Endianness__Enum endianness, Interop_SspiCli_SecBufferDesc * inputBuffer, SafeDeleteContext * outContext, Interop_SspiCli_SecBufferDesc * outputBuffer, Interop_SspiCli_ContextFlags__Enum * attributes, SafeFreeContextBuffer * handleTemplate, MethodInfo * method)); +DO_APP_FUNC(0x026D2170, int32_t, SafeDeleteContext_AcceptSecurityContext, (SafeFreeCredentials * * inCredentials, SafeDeleteContext * * refContext, Interop_SspiCli_ContextFlags__Enum inFlags, Interop_SspiCli_Endianness__Enum endianness, SecurityBuffer * inSecBuffer, SecurityBuffer__Array * inSecBuffers, SecurityBuffer * outSecBuffer, Interop_SspiCli_ContextFlags__Enum * outFlags, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3170, SafeDeleteContext_AcceptSecurityContext__MethodInfo); +DO_APP_FUNC(0x026D2D40, int32_t, SafeDeleteContext_MustRunAcceptSecurityContext_SECURITY, (SafeFreeCredentials * * inCredentials, Void * inContextPtr, Interop_SspiCli_SecBufferDesc * inputBuffer, Interop_SspiCli_ContextFlags__Enum inFlags, Interop_SspiCli_Endianness__Enum endianness, SafeDeleteContext * outContext, Interop_SspiCli_SecBufferDesc * outputBuffer, Interop_SspiCli_ContextFlags__Enum * outFlags, SafeFreeContextBuffer * handleTemplate, MethodInfo * method)); +DO_APP_FUNC(0x026D2FE0, int32_t, SafeDeleteContext_CompleteAuthToken, (SafeDeleteContext * * refContext, SecurityBuffer__Array * inSecBuffers, MethodInfo * method)); +DO_APP_FUNC(0x026D3870, int32_t, SafeDeleteContext_ApplyControlToken, (SafeDeleteContext * * refContext, SecurityBuffer__Array * inSecBuffers, MethodInfo * method)); DO_APP_FUNC(0x026D4030, void, SafeDeleteContext__cctor, (MethodInfo * method)); DO_APP_FUNC(0x0194C130, void, SafeSspiAuthDataHandle__ctor, (SafeSspiAuthDataHandle * __this, MethodInfo * method)); DO_APP_FUNC(0x026D41A0, bool, SafeSspiAuthDataHandle_ReleaseHandle, (SafeSspiAuthDataHandle * __this, MethodInfo * method)); DO_APP_FUNC(0x0194C130, void, SafeFreeContextBuffer__ctor, (SafeFreeContextBuffer * __this, MethodInfo * method)); DO_APP_FUNC(0x0120DC90, void, SafeFreeContextBuffer_Set, (SafeFreeContextBuffer * __this, void * value, MethodInfo * method)); -DO_APP_FUNC(0x026D4230, int32_t, SafeFreeContextBuffer_EnumeratePackages, (int32_t pkgnum, SafeFreeContextBuffer * pkgArray, MethodInfo * method)); +DO_APP_FUNC(0x026D4230, int32_t, SafeFreeContextBuffer_EnumeratePackages, (int32_t * pkgnum, SafeFreeContextBuffer * * pkgArray, MethodInfo * method)); DO_APP_FUNC(0x026D43D0, SafeFreeContextBuffer *, SafeFreeContextBuffer_CreateEmptyHandle, (MethodInfo * method)); DO_APP_FUNC(0x026D4430, int32_t, SafeFreeContextBuffer_QueryContextAttributes, (SafeDeleteContext * phContext, Interop_SspiCli_ContextAttribute__Enum contextAttribute, uint8_t * buffer, SafeHandle * refHandle, MethodInfo * method)); DO_APP_FUNC(0x026D4640, int32_t, SafeFreeContextBuffer_SetContextAttributes, (SafeDeleteContext * phContext, Interop_SspiCli_ContextAttribute__Enum contextAttribute, Byte__Array * buffer, MethodInfo * method)); @@ -34423,10 +39450,10 @@ DO_APP_FUNC(0x0120DC90, void, SafeFreeCertContext_Set, (SafeFreeCertContext * __ DO_APP_FUNC(0x026D47D0, bool, SafeFreeCertContext_ReleaseHandle, (SafeFreeCertContext * __this, MethodInfo * method)); DO_APP_FUNC(0x026D4850, void, SafeFreeCredentials__ctor, (SafeFreeCredentials * __this, MethodInfo * method)); DO_APP_FUNC(0x026D0EB0, bool, SafeFreeCredentials_get_IsInvalid, (SafeFreeCredentials * __this, MethodInfo * method)); -DO_APP_FUNC(0x026D48E0, int32_t, SafeFreeCredentials_AcquireCredentialsHandle, (String * package, Interop_SspiCli_CredentialUse__Enum intent, Interop_SspiCli_SEC_WINNT_AUTH_IDENTITY_W authdata, SafeFreeCredentials * outCredential, MethodInfo * method)); -DO_APP_FUNC(0x026D4B10, int32_t, SafeFreeCredentials_AcquireDefaultCredential, (String * package, Interop_SspiCli_CredentialUse__Enum intent, SafeFreeCredentials * outCredential, MethodInfo * method)); -DO_APP_FUNC(0x026D4F30, int32_t, SafeFreeCredentials_AcquireCredentialsHandle_1, (String * package, Interop_SspiCli_CredentialUse__Enum intent, SafeSspiAuthDataHandle * authdata, SafeFreeCredentials * outCredential, MethodInfo * method)); -DO_APP_FUNC(0x026D5140, int32_t, SafeFreeCredentials_AcquireCredentialsHandle_2, (String * package, Interop_SspiCli_CredentialUse__Enum intent, Interop_SspiCli_SCHANNEL_CRED authdata, SafeFreeCredentials * outCredential, MethodInfo * method)); +DO_APP_FUNC(0x026D48E0, int32_t, SafeFreeCredentials_AcquireCredentialsHandle, (String * package, Interop_SspiCli_CredentialUse__Enum intent, Interop_SspiCli_SEC_WINNT_AUTH_IDENTITY_W * authdata, SafeFreeCredentials * * outCredential, MethodInfo * method)); +DO_APP_FUNC(0x026D4B10, int32_t, SafeFreeCredentials_AcquireDefaultCredential, (String * package, Interop_SspiCli_CredentialUse__Enum intent, SafeFreeCredentials * * outCredential, MethodInfo * method)); +DO_APP_FUNC(0x026D4F30, int32_t, SafeFreeCredentials_AcquireCredentialsHandle_1, (String * package, Interop_SspiCli_CredentialUse__Enum intent, SafeSspiAuthDataHandle * * authdata, SafeFreeCredentials * * outCredential, MethodInfo * method)); +DO_APP_FUNC(0x026D5140, int32_t, SafeFreeCredentials_AcquireCredentialsHandle_2, (String * package, Interop_SspiCli_CredentialUse__Enum intent, Interop_SspiCli_SCHANNEL_CRED * authdata, SafeFreeCredentials * * outCredential, MethodInfo * method)); DO_APP_FUNC(0x026D54E0, SafeCredentialReference *, SafeCredentialReference_CreateReference, (SafeFreeCredentials * target, MethodInfo * method)); DO_APP_FUNC(0x026D55E0, void, SafeCredentialReference__ctor, (SafeCredentialReference * __this, SafeFreeCredentials * target, MethodInfo * method)); DO_APP_FUNC(0x026D5680, bool, SafeCredentialReference_ReleaseHandle, (SafeCredentialReference * __this, MethodInfo * method)); @@ -34449,14 +39476,17 @@ DO_APP_FUNC(0x026D5E30, X509Certificate2 *, CertificateHelper_GetEligibleClientC DO_APP_FUNC(0x026D60D0, int32_t, NegotiateStreamPal_QueryMaxTokenSize, (String * package, MethodInfo * method)); DO_APP_FUNC(0x026D6150, SafeFreeCredentials *, NegotiateStreamPal_AcquireDefaultCredential, (String * package, bool isServer, MethodInfo * method)); DO_APP_FUNC(0x026D61D0, SafeFreeCredentials *, NegotiateStreamPal_AcquireCredentialsHandle, (String * package, bool isServer, NetworkCredential * credential, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD99A0, NegotiateStreamPal_AcquireCredentialsHandle__MethodInfo); DO_APP_FUNC(0x026D65C0, String *, NegotiateStreamPal_QueryContextClientSpecifiedSpn, (SafeDeleteContext * securityContext, MethodInfo * method)); DO_APP_FUNC(0x026D6670, String *, NegotiateStreamPal_QueryContextAuthenticationPackage, (SafeDeleteContext * securityContext, MethodInfo * method)); -DO_APP_FUNC(0x026D6740, SecurityStatusPal, NegotiateStreamPal_InitializeSecurityContext, (SafeFreeCredentials * credentialsHandle, SafeDeleteContext * securityContext, String * spn, ContextFlagsPal__Enum requestedContextFlags, SecurityBuffer__Array * inSecurityBufferArray, SecurityBuffer * outSecurityBuffer, ContextFlagsPal__Enum contextFlags, MethodInfo * method)); -DO_APP_FUNC(0x026D68B0, SecurityStatusPal, NegotiateStreamPal_CompleteAuthToken, (SafeDeleteContext * securityContext, SecurityBuffer__Array * inSecurityBufferArray, MethodInfo * method)); -DO_APP_FUNC(0x026D6A60, SecurityStatusPal, NegotiateStreamPal_AcceptSecurityContext, (SafeFreeCredentials * credentialsHandle, SafeDeleteContext * securityContext, ContextFlagsPal__Enum requestedContextFlags, SecurityBuffer__Array * inSecurityBufferArray, SecurityBuffer * outSecurityBuffer, ContextFlagsPal__Enum contextFlags, MethodInfo * method)); +DO_APP_FUNC(0x026D6740, SecurityStatusPal, NegotiateStreamPal_InitializeSecurityContext, (SafeFreeCredentials * credentialsHandle, SafeDeleteContext * * securityContext, String * spn, ContextFlagsPal__Enum requestedContextFlags, SecurityBuffer__Array * inSecurityBufferArray, SecurityBuffer * outSecurityBuffer, ContextFlagsPal__Enum * contextFlags, MethodInfo * method)); +DO_APP_FUNC(0x026D68B0, SecurityStatusPal, NegotiateStreamPal_CompleteAuthToken, (SafeDeleteContext * * securityContext, SecurityBuffer__Array * inSecurityBufferArray, MethodInfo * method)); +DO_APP_FUNC(0x026D6A60, SecurityStatusPal, NegotiateStreamPal_AcceptSecurityContext, (SafeFreeCredentials * credentialsHandle, SafeDeleteContext * * securityContext, ContextFlagsPal__Enum requestedContextFlags, SecurityBuffer__Array * inSecurityBufferArray, SecurityBuffer * outSecurityBuffer, ContextFlagsPal__Enum * contextFlags, MethodInfo * method)); DO_APP_FUNC(0x026D6BC0, Win32Exception *, NegotiateStreamPal_CreateExceptionFromError, (SecurityStatusPal statusCode, MethodInfo * method)); DO_APP_FUNC(0x026D6D60, int32_t, NegotiateStreamPal_VerifySignature, (SafeDeleteContext * securityContext, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); -DO_APP_FUNC(0x026D71C0, int32_t, NegotiateStreamPal_MakeSignature, (SafeDeleteContext * securityContext, Byte__Array * buffer, int32_t offset, int32_t count, Byte__Array * output, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9920, NegotiateStreamPal_VerifySignature__MethodInfo); +DO_APP_FUNC(0x026D71C0, int32_t, NegotiateStreamPal_MakeSignature, (SafeDeleteContext * securityContext, Byte__Array * buffer, int32_t offset, int32_t count, Byte__Array * * output, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9910, NegotiateStreamPal_MakeSignature__MethodInfo); DO_APP_FUNC(0x026D75E0, void, SecurityBuffer__ctor, (SecurityBuffer * __this, Byte__Array * data, int32_t offset, int32_t size, SecurityBufferType__Enum tokentype, MethodInfo * method)); DO_APP_FUNC(0x026D7900, void, SecurityBuffer__ctor_1, (SecurityBuffer * __this, Byte__Array * data, SecurityBufferType__Enum tokentype, MethodInfo * method)); DO_APP_FUNC(0x026D7980, void, SecurityBuffer__ctor_2, (SecurityBuffer * __this, int32_t size, SecurityBufferType__Enum tokentype, MethodInfo * method)); @@ -34465,14 +39495,15 @@ DO_APP_FUNC(0x0194CBB0, void, SecurityContextTokenHandle__ctor, (SecurityContext DO_APP_FUNC(0x003BB3C0, void *, SecurityContextTokenHandle_DangerousGetHandle, (SecurityContextTokenHandle * __this, MethodInfo * method)); DO_APP_FUNC(0x026D7C00, bool, SecurityContextTokenHandle_ReleaseHandle, (SecurityContextTokenHandle * __this, MethodInfo * method)); DO_APP_FUNC(0x026D7CC0, SslClientAuthenticationOptions *, SslClientAuthenticationOptionsExtensions_ShallowClone, (SslClientAuthenticationOptions * options, MethodInfo * method)); -DO_APP_FUNC(0x026D7F10, void, SslApplicationProtocol__ctor, (SslApplicationProtocol__Boxed * __this, Byte__Array * protocol, bool copy, MethodInfo * method)); -DO_APP_FUNC(0x026D81A0, void, SslApplicationProtocol__ctor_1, (SslApplicationProtocol__Boxed * __this, Byte__Array * protocol, MethodInfo * method)); -DO_APP_FUNC(0x026D8210, void, SslApplicationProtocol__ctor_2, (SslApplicationProtocol__Boxed * __this, String * protocol, MethodInfo * method)); -DO_APP_FUNC(0x00C2FFD0, ReadOnlyMemory_1_Byte_, SslApplicationProtocol_get_Protocol, (SslApplicationProtocol__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x026D82B0, bool, SslApplicationProtocol_Equals, (SslApplicationProtocol__Boxed * __this, SslApplicationProtocol other, MethodInfo * method)); -DO_APP_FUNC(0x026D84B0, bool, SslApplicationProtocol_Equals_1, (SslApplicationProtocol__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x026D8560, int32_t, SslApplicationProtocol_GetHashCode, (SslApplicationProtocol__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x026D8610, String *, SslApplicationProtocol_ToString, (SslApplicationProtocol__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x026D7F10, void, SslApplicationProtocol__ctor, (SslApplicationProtocol * __this, Byte__Array * protocol, bool copy, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9948, SslApplicationProtocol__ctor__MethodInfo); +DO_APP_FUNC(0x026D81A0, void, SslApplicationProtocol__ctor_1, (SslApplicationProtocol * __this, Byte__Array * protocol, MethodInfo * method)); +DO_APP_FUNC(0x026D8210, void, SslApplicationProtocol__ctor_2, (SslApplicationProtocol * __this, String * protocol, MethodInfo * method)); +DO_APP_FUNC(0x00C2FFD0, ReadOnlyMemory_1_Byte_, SslApplicationProtocol_get_Protocol, (SslApplicationProtocol * __this, MethodInfo * method)); +DO_APP_FUNC(0x026D82B0, bool, SslApplicationProtocol_Equals, (SslApplicationProtocol * __this, SslApplicationProtocol other, MethodInfo * method)); +DO_APP_FUNC(0x026D84B0, bool, SslApplicationProtocol_Equals_1, (SslApplicationProtocol * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x026D8560, int32_t, SslApplicationProtocol_GetHashCode, (SslApplicationProtocol * __this, MethodInfo * method)); +DO_APP_FUNC(0x026D8610, String *, SslApplicationProtocol_ToString, (SslApplicationProtocol * __this, MethodInfo * method)); DO_APP_FUNC(0x026D88E0, uint16_t, SslApplicationProtocol_GetHexValue, (int32_t i, MethodInfo * method)); DO_APP_FUNC(0x026D88F0, bool, SslApplicationProtocol_op_Equality, (SslApplicationProtocol left, SslApplicationProtocol right, MethodInfo * method)); DO_APP_FUNC(0x026D8960, bool, SslApplicationProtocol_op_Inequality, (SslApplicationProtocol left, SslApplicationProtocol right, MethodInfo * method)); @@ -34524,8 +39555,10 @@ DO_APP_FUNC(0x003C7390, X509CertificateCollection *, SslClientAuthenticationOpti DO_APP_FUNC(0x003C73A0, void, SslClientAuthenticationOptions_set_ClientCertificates, (SslClientAuthenticationOptions * __this, X509CertificateCollection * value, MethodInfo * method)); DO_APP_FUNC(0x003BCD70, X509RevocationMode__Enum, SslClientAuthenticationOptions_get_CertificateRevocationCheckMode, (SslClientAuthenticationOptions * __this, MethodInfo * method)); DO_APP_FUNC(0x026D9170, void, SslClientAuthenticationOptions_set_CertificateRevocationCheckMode, (SslClientAuthenticationOptions * __this, X509RevocationMode__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD98C8, SslClientAuthenticationOptions_set_CertificateRevocationCheckMode__MethodInfo); DO_APP_FUNC(0x003BCD50, EncryptionPolicy__Enum, SslClientAuthenticationOptions_get_EncryptionPolicy, (SslClientAuthenticationOptions * __this, MethodInfo * method)); DO_APP_FUNC(0x026D9220, void, SslClientAuthenticationOptions_set_EncryptionPolicy, (SslClientAuthenticationOptions * __this, EncryptionPolicy__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD98E8, SslClientAuthenticationOptions_set_EncryptionPolicy__MethodInfo); DO_APP_FUNC(0x003BC2E0, SslProtocols__Enum, SslClientAuthenticationOptions_get_EnabledSslProtocols, (SslClientAuthenticationOptions * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCDD0, void, SslClientAuthenticationOptions_set_EnabledSslProtocols, (SslClientAuthenticationOptions * __this, SslProtocols__Enum value, MethodInfo * method)); DO_APP_FUNC(0x024DA8E0, void, SslClientAuthenticationOptions__ctor, (SslClientAuthenticationOptions * __this, MethodInfo * method)); @@ -34545,10 +39578,13 @@ DO_APP_FUNC(0x003BCD70, SslProtocols__Enum, SslServerAuthenticationOptions_get_E DO_APP_FUNC(0x003BCD80, void, SslServerAuthenticationOptions_set_EnabledSslProtocols, (SslServerAuthenticationOptions * __this, SslProtocols__Enum value, MethodInfo * method)); DO_APP_FUNC(0x003BCD50, X509RevocationMode__Enum, SslServerAuthenticationOptions_get_CertificateRevocationCheckMode, (SslServerAuthenticationOptions * __this, MethodInfo * method)); DO_APP_FUNC(0x026D92D0, void, SslServerAuthenticationOptions_set_CertificateRevocationCheckMode, (SslServerAuthenticationOptions * __this, X509RevocationMode__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD98F0, SslServerAuthenticationOptions_set_CertificateRevocationCheckMode__MethodInfo); DO_APP_FUNC(0x003BC2E0, EncryptionPolicy__Enum, SslServerAuthenticationOptions_get_EncryptionPolicy, (SslServerAuthenticationOptions * __this, MethodInfo * method)); DO_APP_FUNC(0x026D9380, void, SslServerAuthenticationOptions_set_EncryptionPolicy, (SslServerAuthenticationOptions * __this, EncryptionPolicy__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD98E0, SslServerAuthenticationOptions_set_EncryptionPolicy__MethodInfo); DO_APP_FUNC(0x024DA8E0, void, SslServerAuthenticationOptions__ctor, (SslServerAuthenticationOptions * __this, MethodInfo * method)); DO_APP_FUNC(0x026D9430, void, AuthenticatedStream__ctor, (AuthenticatedStream * __this, Stream * innerStream, bool leaveInnerStreamOpen, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD98A0, AuthenticatedStream__ctor__MethodInfo); DO_APP_FUNC(0x00594F20, bool, AuthenticatedStream_get_LeaveInnerStreamOpen, (AuthenticatedStream * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3B0, Stream *, AuthenticatedStream_get_InnerStream, (AuthenticatedStream * __this, MethodInfo * method)); DO_APP_FUNC(0x026D95F0, void, AuthenticatedStream_Dispose, (AuthenticatedStream * __this, bool disposing, MethodInfo * method)); @@ -34561,62 +39597,104 @@ DO_APP_FUNC(0x026D9700, void, NegotiateStream__ctor_1, (NegotiateStream * __this DO_APP_FUNC(0x01E14640, bool, NegotiateStream_get_CanRead, (NegotiateStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01E14670, bool, NegotiateStream_get_CanSeek, (NegotiateStream * __this, MethodInfo * method)); DO_APP_FUNC(0x026D9710, bool, NegotiateStream_get_CanTimeout, (NegotiateStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9898, NegotiateStream_get_CanTimeout__MethodInfo); DO_APP_FUNC(0x01E146A0, bool, NegotiateStream_get_CanWrite, (NegotiateStream * __this, MethodInfo * method)); DO_APP_FUNC(0x026D9760, TokenImpersonationLevel__Enum, NegotiateStream_get_ImpersonationLevel, (NegotiateStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD98B8, NegotiateStream_get_ImpersonationLevel__MethodInfo); DO_APP_FUNC(0x026D97B0, bool, NegotiateStream_get_IsAuthenticated, (NegotiateStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD98C0, NegotiateStream_get_IsAuthenticated__MethodInfo); DO_APP_FUNC(0x026D9800, bool, NegotiateStream_get_IsEncrypted, (NegotiateStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD98A8, NegotiateStream_get_IsEncrypted__MethodInfo); DO_APP_FUNC(0x026D9850, bool, NegotiateStream_get_IsMutuallyAuthenticated, (NegotiateStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD98B0, NegotiateStream_get_IsMutuallyAuthenticated__MethodInfo); DO_APP_FUNC(0x026D98A0, bool, NegotiateStream_get_IsServer, (NegotiateStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD97D0, NegotiateStream_get_IsServer__MethodInfo); DO_APP_FUNC(0x026D98F0, bool, NegotiateStream_get_IsSigned, (NegotiateStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD97D8, NegotiateStream_get_IsSigned__MethodInfo); DO_APP_FUNC(0x01E14700, int64_t, NegotiateStream_get_Length, (NegotiateStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01E14740, int64_t, NegotiateStream_get_Position, (NegotiateStream * __this, MethodInfo * method)); DO_APP_FUNC(0x024A9860, void, NegotiateStream_set_Position, (NegotiateStream * __this, int64_t value, MethodInfo * method)); DO_APP_FUNC(0x009F7E90, int32_t, NegotiateStream_get_ReadTimeout, (NegotiateStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01A71040, void, NegotiateStream_set_ReadTimeout, (NegotiateStream * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x026D9940, IIdentity *, NegotiateStream_get_RemoteIdentity, (NegotiateStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD97C0, NegotiateStream_get_RemoteIdentity__MethodInfo); DO_APP_FUNC(0x013103A0, int32_t, NegotiateStream_get_WriteTimeout, (NegotiateStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01A246F0, void, NegotiateStream_set_WriteTimeout, (NegotiateStream * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x026D9990, IAsyncResult *, NegotiateStream_BeginAuthenticateAsClient, (NegotiateStream * __this, AsyncCallback * asyncCallback, Object * asyncState, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD97C8, NegotiateStream_BeginAuthenticateAsClient__MethodInfo); DO_APP_FUNC(0x026D99E0, IAsyncResult *, NegotiateStream_BeginAuthenticateAsClient_1, (NegotiateStream * __this, NetworkCredential * credential, ChannelBinding * binding, String * targetName, AsyncCallback * asyncCallback, Object * asyncState, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD97F0, NegotiateStream_BeginAuthenticateAsClient_1__MethodInfo); DO_APP_FUNC(0x026D9A30, IAsyncResult *, NegotiateStream_BeginAuthenticateAsClient_2, (NegotiateStream * __this, NetworkCredential * credential, String * targetName, AsyncCallback * asyncCallback, Object * asyncState, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD97F8, NegotiateStream_BeginAuthenticateAsClient_2__MethodInfo); DO_APP_FUNC(0x026D9A80, IAsyncResult *, NegotiateStream_BeginAuthenticateAsClient_3, (NegotiateStream * __this, NetworkCredential * credential, String * targetName, ProtectionLevel__Enum requiredProtectionLevel, TokenImpersonationLevel__Enum allowedImpersonationLevel, AsyncCallback * asyncCallback, Object * asyncState, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD97E0, NegotiateStream_BeginAuthenticateAsClient_3__MethodInfo); DO_APP_FUNC(0x026D9AD0, IAsyncResult *, NegotiateStream_BeginAuthenticateAsClient_4, (NegotiateStream * __this, NetworkCredential * credential, ChannelBinding * binding, String * targetName, ProtectionLevel__Enum requiredProtectionLevel, TokenImpersonationLevel__Enum allowedImpersonationLevel, AsyncCallback * asyncCallback, Object * asyncState, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD97E8, NegotiateStream_BeginAuthenticateAsClient_4__MethodInfo); DO_APP_FUNC(0x026D9B20, IAsyncResult *, NegotiateStream_BeginRead, (NegotiateStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, AsyncCallback * asyncCallback, Object * asyncState, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9790, NegotiateStream_BeginRead__MethodInfo); DO_APP_FUNC(0x026D9B70, IAsyncResult *, NegotiateStream_BeginAuthenticateAsServer, (NegotiateStream * __this, AsyncCallback * asyncCallback, Object * asyncState, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9798, NegotiateStream_BeginAuthenticateAsServer__MethodInfo); DO_APP_FUNC(0x026D9BC0, IAsyncResult *, NegotiateStream_BeginAuthenticateAsServer_1, (NegotiateStream * __this, NetworkCredential * credential, ExtendedProtectionPolicy * policy, ProtectionLevel__Enum requiredProtectionLevel, TokenImpersonationLevel__Enum requiredImpersonationLevel, AsyncCallback * asyncCallback, Object * asyncState, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9780, NegotiateStream_BeginAuthenticateAsServer_1__MethodInfo); DO_APP_FUNC(0x026D9C10, IAsyncResult *, NegotiateStream_BeginAuthenticateAsServer_2, (NegotiateStream * __this, NetworkCredential * credential, ProtectionLevel__Enum requiredProtectionLevel, TokenImpersonationLevel__Enum requiredImpersonationLevel, AsyncCallback * asyncCallback, Object * asyncState, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9788, NegotiateStream_BeginAuthenticateAsServer_2__MethodInfo); DO_APP_FUNC(0x026D9C60, IAsyncResult *, NegotiateStream_BeginAuthenticateAsServer_3, (NegotiateStream * __this, ExtendedProtectionPolicy * policy, AsyncCallback * asyncCallback, Object * asyncState, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD97B0, NegotiateStream_BeginAuthenticateAsServer_3__MethodInfo); DO_APP_FUNC(0x026D9CB0, IAsyncResult *, NegotiateStream_BeginWrite, (NegotiateStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, AsyncCallback * asyncCallback, Object * asyncState, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD97B8, NegotiateStream_BeginWrite__MethodInfo); DO_APP_FUNC(0x026D9D00, void, NegotiateStream_AuthenticateAsClient, (NegotiateStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD97A0, NegotiateStream_AuthenticateAsClient__MethodInfo); DO_APP_FUNC(0x026D9D50, void, NegotiateStream_AuthenticateAsClient_1, (NegotiateStream * __this, NetworkCredential * credential, String * targetName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD97A8, NegotiateStream_AuthenticateAsClient_1__MethodInfo); DO_APP_FUNC(0x026D9DA0, void, NegotiateStream_AuthenticateAsClient_2, (NegotiateStream * __this, NetworkCredential * credential, ChannelBinding * binding, String * targetName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9848, NegotiateStream_AuthenticateAsClient_2__MethodInfo); DO_APP_FUNC(0x026D9DF0, void, NegotiateStream_AuthenticateAsClient_3, (NegotiateStream * __this, NetworkCredential * credential, ChannelBinding * binding, String * targetName, ProtectionLevel__Enum requiredProtectionLevel, TokenImpersonationLevel__Enum allowedImpersonationLevel, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9850, NegotiateStream_AuthenticateAsClient_3__MethodInfo); DO_APP_FUNC(0x026D9E40, void, NegotiateStream_AuthenticateAsClient_4, (NegotiateStream * __this, NetworkCredential * credential, String * targetName, ProtectionLevel__Enum requiredProtectionLevel, TokenImpersonationLevel__Enum allowedImpersonationLevel, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9838, NegotiateStream_AuthenticateAsClient_4__MethodInfo); DO_APP_FUNC(0x026D9E90, void, NegotiateStream_AuthenticateAsServer, (NegotiateStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9840, NegotiateStream_AuthenticateAsServer__MethodInfo); DO_APP_FUNC(0x026D9EE0, void, NegotiateStream_AuthenticateAsServer_1, (NegotiateStream * __this, ExtendedProtectionPolicy * policy, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9868, NegotiateStream_AuthenticateAsServer_1__MethodInfo); DO_APP_FUNC(0x026D9F30, void, NegotiateStream_AuthenticateAsServer_2, (NegotiateStream * __this, NetworkCredential * credential, ExtendedProtectionPolicy * policy, ProtectionLevel__Enum requiredProtectionLevel, TokenImpersonationLevel__Enum requiredImpersonationLevel, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9870, NegotiateStream_AuthenticateAsServer_2__MethodInfo); DO_APP_FUNC(0x026D9F80, void, NegotiateStream_AuthenticateAsServer_3, (NegotiateStream * __this, NetworkCredential * credential, ProtectionLevel__Enum requiredProtectionLevel, TokenImpersonationLevel__Enum requiredImpersonationLevel, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9858, NegotiateStream_AuthenticateAsServer_3__MethodInfo); DO_APP_FUNC(0x003AE050, void, NegotiateStream_Dispose, (NegotiateStream * __this, bool disposing, MethodInfo * method)); DO_APP_FUNC(0x026D9FD0, void, NegotiateStream_EndAuthenticateAsClient, (NegotiateStream * __this, IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9860, NegotiateStream_EndAuthenticateAsClient__MethodInfo); DO_APP_FUNC(0x026DA020, int32_t, NegotiateStream_EndRead, (NegotiateStream * __this, IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9810, NegotiateStream_EndRead__MethodInfo); DO_APP_FUNC(0x026DA070, void, NegotiateStream_EndAuthenticateAsServer, (NegotiateStream * __this, IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9818, NegotiateStream_EndAuthenticateAsServer__MethodInfo); DO_APP_FUNC(0x026DA0C0, void, NegotiateStream_EndWrite, (NegotiateStream * __this, IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9800, NegotiateStream_EndWrite__MethodInfo); DO_APP_FUNC(0x01E146D0, void, NegotiateStream_Flush, (NegotiateStream * __this, MethodInfo * method)); DO_APP_FUNC(0x026DA110, int32_t, NegotiateStream_Read, (NegotiateStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9808, NegotiateStream_Read__MethodInfo); DO_APP_FUNC(0x026DA160, int64_t, NegotiateStream_Seek, (NegotiateStream * __this, int64_t offset, SeekOrigin__Enum origin, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9828, NegotiateStream_Seek__MethodInfo); DO_APP_FUNC(0x026DA1B0, void, NegotiateStream_SetLength, (NegotiateStream * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9830, NegotiateStream_SetLength__MethodInfo); DO_APP_FUNC(0x026DA200, void, NegotiateStream_Write, (NegotiateStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9820, NegotiateStream_Write__MethodInfo); DO_APP_FUNC(0x026DA250, Task *, NegotiateStream_AuthenticateAsClientAsync, (NegotiateStream * __this, MethodInfo * method)); DO_APP_FUNC(0x026DA3A0, Task *, NegotiateStream_AuthenticateAsClientAsync_1, (NegotiateStream * __this, NetworkCredential * credential, String * targetName, MethodInfo * method)); DO_APP_FUNC(0x026DA540, Task *, NegotiateStream_AuthenticateAsClientAsync_2, (NegotiateStream * __this, NetworkCredential * credential, String * targetName, ProtectionLevel__Enum requiredProtectionLevel, TokenImpersonationLevel__Enum allowedImpersonationLevel, MethodInfo * method)); DO_APP_FUNC(0x026DA7E0, Task *, NegotiateStream_AuthenticateAsClientAsync_3, (NegotiateStream * __this, NetworkCredential * credential, ChannelBinding * binding, String * targetName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9728, NegotiateStream_AuthenticateAsClientAsync_3__MethodInfo); DO_APP_FUNC(0x026DA830, Task *, NegotiateStream_AuthenticateAsClientAsync_4, (NegotiateStream * __this, NetworkCredential * credential, ChannelBinding * binding, String * targetName, ProtectionLevel__Enum requiredProtectionLevel, TokenImpersonationLevel__Enum allowedImpersonationLevel, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9718, NegotiateStream_AuthenticateAsClientAsync_4__MethodInfo); DO_APP_FUNC(0x026DA880, Task *, NegotiateStream_AuthenticateAsServerAsync, (NegotiateStream * __this, MethodInfo * method)); DO_APP_FUNC(0x026DA9D0, Task *, NegotiateStream_AuthenticateAsServerAsync_1, (NegotiateStream * __this, ExtendedProtectionPolicy * policy, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9740, NegotiateStream_AuthenticateAsServerAsync_1__MethodInfo); DO_APP_FUNC(0x026DAA20, Task *, NegotiateStream_AuthenticateAsServerAsync_2, (NegotiateStream * __this, NetworkCredential * credential, ProtectionLevel__Enum requiredProtectionLevel, TokenImpersonationLevel__Enum requiredImpersonationLevel, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9730, NegotiateStream_AuthenticateAsServerAsync_2__MethodInfo); DO_APP_FUNC(0x026DAA70, Task *, NegotiateStream_AuthenticateAsServerAsync_3, (NegotiateStream * __this, NetworkCredential * credential, ExtendedProtectionPolicy * policy, ProtectionLevel__Enum requiredProtectionLevel, TokenImpersonationLevel__Enum requiredImpersonationLevel, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9738, NegotiateStream_AuthenticateAsServerAsync_3__MethodInfo); DO_APP_FUNC(0x003AE050, void, NegotiateStream_c_DisplayClass69_0__ctor, (NegotiateStream_c_DisplayClass69_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x026DAAC0, IAsyncResult *, NegotiateStream_c_DisplayClass69_0__AuthenticateAsClientAsync_b__0, (NegotiateStream_c_DisplayClass69_0 * __this, AsyncCallback * callback, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9750, NegotiateStream_c_DisplayClass69_0__AuthenticateAsClientAsync_b__0__MethodInfo); DO_APP_FUNC(0x02344F30, void, RemoteCertificateValidationCallback__ctor, (RemoteCertificateValidationCallback * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003F09C0, bool, RemoteCertificateValidationCallback_Invoke, (RemoteCertificateValidationCallback * __this, Object * sender, X509Certificate * certificate, X509Chain * chain, SslPolicyErrors__Enum sslPolicyErrors, MethodInfo * method)); DO_APP_FUNC(0x026DAB20, IAsyncResult *, RemoteCertificateValidationCallback_BeginInvoke, (RemoteCertificateValidationCallback * __this, Object * sender, X509Certificate * certificate, X509Chain * chain, SslPolicyErrors__Enum sslPolicyErrors, AsyncCallback * callback, Object * object, MethodInfo * method)); @@ -34649,8 +39727,11 @@ DO_APP_FUNC(0x026DB240, void, SslStream__ctor_4, (SslStream * __this, Stream * i DO_APP_FUNC(0x026DB250, void, SslStream__ctor_5, (SslStream * __this, Stream * innerStream, bool leaveInnerStreamOpen, MonoTlsProvider * provider, MonoTlsSettings * settings, MethodInfo * method)); DO_APP_FUNC(0x026DB4D0, IMonoSslStream *, SslStream_CreateMonoSslStream, (Stream * innerStream, bool leaveInnerStreamOpen, MobileTlsProvider * provider, MonoTlsSettings * settings, MethodInfo * method)); DO_APP_FUNC(0x026DB580, void, SslStream_SetAndVerifyValidationCallback, (SslStream * __this, RemoteCertificateValidationCallback * callback, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9770, SslStream_SetAndVerifyValidationCallback__MethodInfo); DO_APP_FUNC(0x026DB720, void, SslStream_SetAndVerifySelectionCallback, (SslStream * __this, LocalCertificateSelectionCallback * callback, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD96C0, SslStream_SetAndVerifySelectionCallback__MethodInfo); DO_APP_FUNC(0x026DB9C0, MonoSslServerAuthenticationOptions *, SslStream_CreateAuthenticationOptions, (SslStream * __this, SslServerAuthenticationOptions * sslServerAuthenticationOptions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD96B0, SslStream_CreateAuthenticationOptions__MethodInfo); DO_APP_FUNC(0x026DBE10, void, SslStream_AuthenticateAsClient, (SslStream * __this, String * targetHost, MethodInfo * method)); DO_APP_FUNC(0x026DBEB0, void, SslStream_AuthenticateAsClient_1, (SslStream * __this, String * targetHost, X509CertificateCollection * clientCertificates, bool checkCertificateRevocation, MethodInfo * method)); DO_APP_FUNC(0x026DBEE0, void, SslStream_AuthenticateAsClient_2, (SslStream * __this, String * targetHost, X509CertificateCollection * clientCertificates, SslProtocols__Enum enabledSslProtocols, bool checkCertificateRevocation, MethodInfo * method)); @@ -34691,6 +39772,7 @@ DO_APP_FUNC(0x026DCDD0, int32_t, SslStream_get_HashStrength, (SslStream * __this DO_APP_FUNC(0x026DCF70, ExchangeAlgorithmType__Enum, SslStream_get_KeyExchangeAlgorithm, (SslStream * __this, MethodInfo * method)); DO_APP_FUNC(0x026DD060, int32_t, SslStream_get_KeyExchangeStrength, (SslStream * __this, MethodInfo * method)); DO_APP_FUNC(0x026DD090, SslApplicationProtocol, SslStream_get_NegotiatedApplicationProtocol, (SslStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9708, SslStream_get_NegotiatedApplicationProtocol__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, SslStream_get_CanSeek, (SslStream * __this, MethodInfo * method)); DO_APP_FUNC(0x026DD0F0, bool, SslStream_get_CanRead, (SslStream * __this, MethodInfo * method)); DO_APP_FUNC(0x0234B0B0, bool, SslStream_get_CanTimeout, (SslStream * __this, MethodInfo * method)); @@ -34702,11 +39784,14 @@ DO_APP_FUNC(0x026DD220, void, SslStream_set_WriteTimeout, (SslStream * __this, i DO_APP_FUNC(0x026DD270, int64_t, SslStream_get_Length, (SslStream * __this, MethodInfo * method)); DO_APP_FUNC(0x026DD2B0, int64_t, SslStream_get_Position, (SslStream * __this, MethodInfo * method)); DO_APP_FUNC(0x026DD2F0, void, SslStream_set_Position, (SslStream * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9710, SslStream_set_Position__MethodInfo); DO_APP_FUNC(0x026DD360, void, SslStream_SetLength, (SslStream * __this, int64_t value, MethodInfo * method)); DO_APP_FUNC(0x026DD3B0, int64_t, SslStream_Seek, (SslStream * __this, int64_t offset, SeekOrigin__Enum origin, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD96F8, SslStream_Seek__MethodInfo); DO_APP_FUNC(0x026D0CF0, Task *, SslStream_FlushAsync, (SslStream * __this, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x01E146D0, void, SslStream_Flush, (SslStream * __this, MethodInfo * method)); DO_APP_FUNC(0x026DD420, void, SslStream_CheckDisposed, (SslStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD96E8, SslStream_CheckDisposed__MethodInfo); DO_APP_FUNC(0x026DD490, void, SslStream_Dispose, (SslStream * __this, bool disposing, MethodInfo * method)); DO_APP_FUNC(0x026DD590, int32_t, SslStream_Read, (SslStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x026DD600, void, SslStream_Write, (SslStream * __this, Byte__Array * buffer, MethodInfo * method)); @@ -34719,8 +39804,10 @@ DO_APP_FUNC(0x026DD8D0, IAsyncResult *, SslStream_BeginWrite, (SslStream * __thi DO_APP_FUNC(0x0198AE30, void, SslStream_EndWrite, (SslStream * __this, IAsyncResult * asyncResult, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SslStream_c_DisplayClass21_0__ctor, (SslStream_c_DisplayClass21_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x026DD950, X509Certificate *, SslStream_c_DisplayClass21_0__SetAndVerifySelectionCallback_b__0, (SslStream_c_DisplayClass21_0 * __this, String * t, X509CertificateCollection * lc, X509Certificate * rc, String__Array * ai, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD96C8, SslStream_c_DisplayClass21_0__SetAndVerifySelectionCallback_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, SslStream_c_DisplayClass22_0__ctor, (SslStream_c_DisplayClass22_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x026DD9A0, X509Certificate *, SslStream_c_DisplayClass22_0__CreateAuthenticationOptions_b__0, (SslStream_c_DisplayClass22_0 * __this, String * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD96E0, SslStream_c_DisplayClass22_0__CreateAuthenticationOptions_b__0__MethodInfo); DO_APP_FUNC(0x026DD9D0, void, DefaultValueAttribute__ctor, (DefaultValueAttribute * __this, Type * type, String * value, MethodInfo * method)); DO_APP_FUNC(0x026DDD30, void, DefaultValueAttribute__ctor_1, (DefaultValueAttribute * __this, uint16_t value, MethodInfo * method)); DO_APP_FUNC(0x026DDDD0, void, DefaultValueAttribute__ctor_2, (DefaultValueAttribute * __this, uint8_t value, MethodInfo * method)); @@ -34740,7 +39827,8 @@ DO_APP_FUNC(0x003BB3C0, Object *, DefaultValueAttribute_get_Value, (DefaultValue DO_APP_FUNC(0x026DE4B0, bool, DefaultValueAttribute_Equals, (DefaultValueAttribute * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x026DE5F0, int32_t, DefaultValueAttribute_GetHashCode, (DefaultValueAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, DefaultValueAttribute_SetValue, (DefaultValueAttribute * __this, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x026DE600, bool, DefaultValueAttribute___ctor_g__TryConvertFromInvariantString_2_0, (Type * typeToConvert, String * stringValue, Object * conversionResult, MethodInfo * method)); +DO_APP_FUNC(0x026DE600, bool, DefaultValueAttribute___ctor_g__TryConvertFromInvariantString_2_0, (Type * typeToConvert, String * stringValue, Object * * conversionResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9678, DefaultValueAttribute___ctor_g__TryConvertFromInvariantString_2_0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, EditorBrowsableAttribute__ctor, (EditorBrowsableAttribute * __this, EditorBrowsableState__Enum state, MethodInfo * method)); DO_APP_FUNC(0x026DE8F0, void, EditorBrowsableAttribute__ctor_1, (EditorBrowsableAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD50, EditorBrowsableState__Enum, EditorBrowsableAttribute_get_State, (EditorBrowsableAttribute * __this, MethodInfo * method)); @@ -34756,16 +39844,21 @@ DO_APP_FUNC(0x026DEC50, void, AsyncOperation_OperationCompleted, (AsyncOperation DO_APP_FUNC(0x026DEC80, void, AsyncOperation_PostCore, (AsyncOperation * __this, SendOrPostCallback * d, Object * arg, bool markCompleted, MethodInfo * method)); DO_APP_FUNC(0x026DED60, void, AsyncOperation_OperationCompletedCore, (AsyncOperation * __this, MethodInfo * method)); DO_APP_FUNC(0x026DEE20, void, AsyncOperation_VerifyNotCompleted, (AsyncOperation * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9638, AsyncOperation_VerifyNotCompleted__MethodInfo); DO_APP_FUNC(0x026DEE90, void, AsyncOperation_VerifyDelegateNotNull, (AsyncOperation * __this, SendOrPostCallback * d, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9620, AsyncOperation_VerifyDelegateNotNull__MethodInfo); DO_APP_FUNC(0x026DEF20, AsyncOperation *, AsyncOperation_CreateOperation, (Object * userSuppliedState, SynchronizationContext * syncContext, MethodInfo * method)); DO_APP_FUNC(0x026DF050, void, AsyncOperation__ctor_1, (AsyncOperation * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9628, AsyncOperation__ctor_1__MethodInfo); DO_APP_FUNC(0x026DF080, AsyncOperation *, AsyncOperationManager_CreateOperation, (Object * userSuppliedState, MethodInfo * method)); DO_APP_FUNC(0x026DF200, SynchronizationContext *, AsyncOperationManager_get_SynchronizationContext, (MethodInfo * method)); DO_APP_FUNC(0x026DF260, void, AsyncOperationManager_set_SynchronizationContext, (SynchronizationContext * value, MethodInfo * method)); DO_APP_FUNC(0x026DF270, void, BackgroundWorker__ctor, (BackgroundWorker * __this, MethodInfo * method)); DO_APP_FUNC(0x026DF400, void, BackgroundWorker_AsyncOperationCompleted, (BackgroundWorker * __this, Object * arg, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9660, BackgroundWorker_AsyncOperationCompleted__MethodInfo); DO_APP_FUNC(0x00986FE0, bool, BackgroundWorker_get_CancellationPending, (BackgroundWorker * __this, MethodInfo * method)); DO_APP_FUNC(0x026DF4A0, void, BackgroundWorker_CancelAsync, (BackgroundWorker * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9658, BackgroundWorker_CancelAsync__MethodInfo); DO_APP_FUNC(0x026DF510, void, BackgroundWorker_add_DoWork, (BackgroundWorker * __this, DoWorkEventHandler * value, MethodInfo * method)); DO_APP_FUNC(0x026DF600, void, BackgroundWorker_remove_DoWork, (BackgroundWorker * __this, DoWorkEventHandler * value, MethodInfo * method)); DO_APP_FUNC(0x026DF6F0, bool, BackgroundWorker_get_IsBusy, (BackgroundWorker * __this, MethodInfo * method)); @@ -34775,10 +39868,13 @@ DO_APP_FUNC(0x026DF740, void, BackgroundWorker_OnProgressChanged, (BackgroundWor DO_APP_FUNC(0x026DF760, void, BackgroundWorker_add_ProgressChanged, (BackgroundWorker * __this, ProgressChangedEventHandler * value, MethodInfo * method)); DO_APP_FUNC(0x026DF850, void, BackgroundWorker_remove_ProgressChanged, (BackgroundWorker * __this, ProgressChangedEventHandler * value, MethodInfo * method)); DO_APP_FUNC(0x026DF940, void, BackgroundWorker_ProgressReporter, (BackgroundWorker * __this, Object * arg, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9670, BackgroundWorker_ProgressReporter__MethodInfo); DO_APP_FUNC(0x026DF9D0, void, BackgroundWorker_ReportProgress, (BackgroundWorker * __this, int32_t percentProgress, MethodInfo * method)); DO_APP_FUNC(0x026DFB80, void, BackgroundWorker_ReportProgress_1, (BackgroundWorker * __this, int32_t percentProgress, Object * userState, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD95D8, BackgroundWorker_ReportProgress_1__MethodInfo); DO_APP_FUNC(0x026DFD30, void, BackgroundWorker_RunWorkerAsync, (BackgroundWorker * __this, MethodInfo * method)); DO_APP_FUNC(0x026DFD40, void, BackgroundWorker_RunWorkerAsync_1, (BackgroundWorker * __this, Object * argument, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD95E0, BackgroundWorker_RunWorkerAsync_1__MethodInfo); DO_APP_FUNC(0x026DFF80, void, BackgroundWorker_add_RunWorkerCompleted, (BackgroundWorker * __this, RunWorkerCompletedEventHandler * value, MethodInfo * method)); DO_APP_FUNC(0x026E0070, void, BackgroundWorker_remove_RunWorkerCompleted, (BackgroundWorker * __this, RunWorkerCompletedEventHandler * value, MethodInfo * method)); DO_APP_FUNC(0x01CBB9E0, bool, BackgroundWorker_get_WorkerReportsProgress, (BackgroundWorker * __this, MethodInfo * method)); @@ -34788,6 +39884,7 @@ DO_APP_FUNC(0x00424C20, void, BackgroundWorker_set_WorkerSupportsCancellation, ( DO_APP_FUNC(0x026E0160, void, BackgroundWorker_WorkerThreadStart, (BackgroundWorker * __this, Object * argument, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BackgroundWorker_Dispose, (BackgroundWorker * __this, bool disposing, MethodInfo * method)); DO_APP_FUNC(0x026E0410, void, BackgroundWorker__RunWorkerAsync_b__27_0, (BackgroundWorker * __this, Object * arg, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD95E8, BackgroundWorker__RunWorkerAsync_b__27_0__MethodInfo); DO_APP_FUNC(0x003BCD30, void, BrowsableAttribute__ctor, (BrowsableAttribute * __this, bool browsable, MethodInfo * method)); DO_APP_FUNC(0x003BCD20, bool, BrowsableAttribute_get_Browsable, (BrowsableAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x026E0420, bool, BrowsableAttribute_Equals, (BrowsableAttribute * __this, Object * obj, MethodInfo * method)); @@ -34900,6 +39997,7 @@ DO_APP_FUNC(0x003BB3C0, Object *, AmbientValueAttribute_get_Value, (AmbientValue DO_APP_FUNC(0x026E39D0, bool, AmbientValueAttribute_Equals, (AmbientValueAttribute * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x026DE5F0, int32_t, AmbientValueAttribute_GetHashCode, (AmbientValueAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x026E3A80, Object *, ArrayConverter_ConvertTo, (ArrayConverter * __this, ITypeDescriptorContext * context, CultureInfo * culture, Object * value, Type * destinationType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9470, ArrayConverter_ConvertTo__MethodInfo); DO_APP_FUNC(0x026E3D00, PropertyDescriptorCollection *, ArrayConverter_GetProperties, (ArrayConverter * __this, ITypeDescriptorContext * context, Object * value, Attribute__Array * attributes, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, ArrayConverter_GetPropertiesSupported, (ArrayConverter * __this, ITypeDescriptorContext * context, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArrayConverter__ctor, (ArrayConverter * __this, MethodInfo * method)); @@ -34907,8 +40005,10 @@ DO_APP_FUNC(0x026E4010, void, ArrayConverter_ArrayPropertyDescriptor__ctor, (Arr DO_APP_FUNC(0x026E40D0, Object *, ArrayConverter_ArrayPropertyDescriptor_GetValue, (ArrayConverter_ArrayPropertyDescriptor * __this, Object * instance, MethodInfo * method)); DO_APP_FUNC(0x026E4190, void, ArrayConverter_ArrayPropertyDescriptor_SetValue, (ArrayConverter_ArrayPropertyDescriptor * __this, Object * instance, Object * value, MethodInfo * method)); DO_APP_FUNC(0x026E42E0, void, AttributeCollection__ctor, (AttributeCollection * __this, Attribute__Array * attributes, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD92C8, AttributeCollection__ctor__MethodInfo); DO_APP_FUNC(0x003AE050, void, AttributeCollection__ctor_1, (AttributeCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x026E4430, AttributeCollection *, AttributeCollection_FromExisting, (AttributeCollection * existing, Attribute__Array * newAttributes, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD93B0, AttributeCollection_FromExisting__MethodInfo); DO_APP_FUNC(0x003BB3C0, Attribute__Array *, AttributeCollection_get_Attributes, (AttributeCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x026E4810, int32_t, AttributeCollection_get_Count, (AttributeCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x026E4840, Attribute *, AttributeCollection_get_Item, (AttributeCollection * __this, int32_t index, MethodInfo * method)); @@ -34926,8 +40026,11 @@ DO_APP_FUNC(0x026E5740, IEnumerator *, AttributeCollection_System_Collections_IE DO_APP_FUNC(0x026E5940, void, AttributeCollection_CopyTo, (AttributeCollection * __this, Array * array, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x026E59D0, void, AttributeCollection__cctor, (MethodInfo * method)); DO_APP_FUNC(0x026E5B30, void, AttributeProviderAttribute__ctor, (AttributeProviderAttribute * __this, String * typeName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9368, AttributeProviderAttribute__ctor__MethodInfo); DO_APP_FUNC(0x026E5BF0, void, AttributeProviderAttribute__ctor_1, (AttributeProviderAttribute * __this, String * typeName, String * propertyName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9378, AttributeProviderAttribute__ctor_1__MethodInfo); DO_APP_FUNC(0x026E5D70, void, AttributeProviderAttribute__ctor_2, (AttributeProviderAttribute * __this, Type * type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD91C8, AttributeProviderAttribute__ctor_2__MethodInfo); DO_APP_FUNC(0x003BB3C0, String *, AttributeProviderAttribute_get_TypeName, (AttributeProviderAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, String *, AttributeProviderAttribute_get_PropertyName, (AttributeProviderAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x026E5E80, bool, ComponentEditor_EditComponent, (ComponentEditor * __this, Object * component, MethodInfo * method)); @@ -34936,7 +40039,9 @@ DO_APP_FUNC(0x003AE050, void, BaseNumberConverter__ctor, (BaseNumberConverter * DO_APP_FUNC(0x0041AEF0, bool, BaseNumberConverter_get_AllowHex, (BaseNumberConverter * __this, MethodInfo * method)); DO_APP_FUNC(0x026E5EA0, bool, BaseNumberConverter_CanConvertFrom, (BaseNumberConverter * __this, ITypeDescriptorContext * context, Type * sourceType, MethodInfo * method)); DO_APP_FUNC(0x026E5F80, Object *, BaseNumberConverter_ConvertFrom, (BaseNumberConverter * __this, ITypeDescriptorContext * context, CultureInfo * culture, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD91A0, BaseNumberConverter_ConvertFrom__MethodInfo); DO_APP_FUNC(0x026E6520, Object *, BaseNumberConverter_ConvertTo, (BaseNumberConverter * __this, ITypeDescriptorContext * context, CultureInfo * culture, Object * value, Type * destinationType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD91B8, BaseNumberConverter_ConvertTo__MethodInfo); DO_APP_FUNC(0x026E67E0, bool, BaseNumberConverter_CanConvertTo, (BaseNumberConverter * __this, ITypeDescriptorContext * context, Type * destinationType, MethodInfo * method)); DO_APP_FUNC(0x026E6830, void, BindableAttribute__ctor, (BindableAttribute * __this, bool bindable, MethodInfo * method)); DO_APP_FUNC(0x026E6840, void, BindableAttribute__ctor_1, (BindableAttribute * __this, bool bindable, BindingDirection__Enum direction, MethodInfo * method)); @@ -34950,6 +40055,7 @@ DO_APP_FUNC(0x026E6980, bool, BindableAttribute_IsDefaultAttribute, (BindableAtt DO_APP_FUNC(0x026E6A00, void, BindableAttribute__cctor, (MethodInfo * method)); DO_APP_FUNC(0x026E6BD0, bool, BooleanConverter_CanConvertFrom, (BooleanConverter * __this, ITypeDescriptorContext * context, Type * sourceType, MethodInfo * method)); DO_APP_FUNC(0x026E6CB0, Object *, BooleanConverter_ConvertFrom, (BooleanConverter * __this, ITypeDescriptorContext * context, CultureInfo * culture, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9230, BooleanConverter_ConvertFrom__MethodInfo); DO_APP_FUNC(0x026E6E70, TypeConverter_StandardValuesCollection *, BooleanConverter_GetStandardValues, (BooleanConverter * __this, ITypeDescriptorContext * context, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, BooleanConverter_GetStandardValuesExclusive, (BooleanConverter * __this, ITypeDescriptorContext * context, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, BooleanConverter_GetStandardValuesSupported, (BooleanConverter * __this, ITypeDescriptorContext * context, MethodInfo * method)); @@ -34966,6 +40072,7 @@ DO_APP_FUNC(0x003BA270, void, CancelEventHandler_EndInvoke, (CancelEventHandler DO_APP_FUNC(0x026E7370, bool, CharConverter_CanConvertFrom, (CharConverter * __this, ITypeDescriptorContext * context, Type * sourceType, MethodInfo * method)); DO_APP_FUNC(0x026E7450, Object *, CharConverter_ConvertTo, (CharConverter * __this, ITypeDescriptorContext * context, CultureInfo * culture, Object * value, Type * destinationType, MethodInfo * method)); DO_APP_FUNC(0x026E7580, Object *, CharConverter_ConvertFrom, (CharConverter * __this, ITypeDescriptorContext * context, CultureInfo * culture, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9180, CharConverter_ConvertFrom__MethodInfo); DO_APP_FUNC(0x003AE050, void, CharConverter__ctor, (CharConverter * __this, MethodInfo * method)); DO_APP_FUNC(0x026E7720, void, CollectionChangeEventArgs__ctor, (CollectionChangeEventArgs * __this, CollectionChangeAction__Enum action, Object * element, MethodInfo * method)); DO_APP_FUNC(0x003BCD50, CollectionChangeAction__Enum, CollectionChangeEventArgs_get_Action, (CollectionChangeEventArgs * __this, MethodInfo * method)); @@ -34987,7 +40094,8 @@ DO_APP_FUNC(0x026E79E0, void, ComponentResourceManager__ctor_1, (ComponentResour DO_APP_FUNC(0x026E7A40, CultureInfo *, ComponentResourceManager_get_NeutralResourcesCulture, (ComponentResourceManager * __this, MethodInfo * method)); DO_APP_FUNC(0x026E7B20, void, ComponentResourceManager_ApplyResources, (ComponentResourceManager * __this, Object * value, String * objectName, MethodInfo * method)); DO_APP_FUNC(0x026E7B50, void, ComponentResourceManager_ApplyResources_1, (ComponentResourceManager * __this, Object * value, String * objectName, CultureInfo * culture, MethodInfo * method)); -DO_APP_FUNC(0x026E88D0, SortedList_2_System_String_System_Object_ *, ComponentResourceManager_FillResources, (ComponentResourceManager * __this, CultureInfo * culture, ResourceSet * resourceSet, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD90C8, ComponentResourceManager_ApplyResources_1__MethodInfo); +DO_APP_FUNC(0x026E88D0, SortedList_2_System_String_System_Object_ *, ComponentResourceManager_FillResources, (ComponentResourceManager * __this, CultureInfo * culture, ResourceSet * * resourceSet, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ContainerFilterService__ctor, (ContainerFilterService * __this, MethodInfo * method)); DO_APP_FUNC(0x00420A60, ComponentCollection *, ContainerFilterService_FilterComponents, (ContainerFilterService * __this, ComponentCollection * components, MethodInfo * method)); DO_APP_FUNC(0x026E8F50, String *, CultureInfoConverter_get_DefaultCultureString, (CultureInfoConverter * __this, MethodInfo * method)); @@ -34995,7 +40103,9 @@ DO_APP_FUNC(0x026E8F90, String *, CultureInfoConverter_GetCultureName, (CultureI DO_APP_FUNC(0x026E8FC0, bool, CultureInfoConverter_CanConvertFrom, (CultureInfoConverter * __this, ITypeDescriptorContext * context, Type * sourceType, MethodInfo * method)); DO_APP_FUNC(0x026E90A0, bool, CultureInfoConverter_CanConvertTo, (CultureInfoConverter * __this, ITypeDescriptorContext * context, Type * destinationType, MethodInfo * method)); DO_APP_FUNC(0x026E9180, Object *, CultureInfoConverter_ConvertFrom, (CultureInfoConverter * __this, ITypeDescriptorContext * context, CultureInfo * culture, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD90F0, CultureInfoConverter_ConvertFrom__MethodInfo); DO_APP_FUNC(0x026E9BE0, Object *, CultureInfoConverter_ConvertTo, (CultureInfoConverter * __this, ITypeDescriptorContext * context, CultureInfo * culture, Object * value, Type * destinationType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9110, CultureInfoConverter_ConvertTo__MethodInfo); DO_APP_FUNC(0x026EA110, TypeConverter_StandardValuesCollection *, CultureInfoConverter_GetStandardValues, (CultureInfoConverter * __this, ITypeDescriptorContext * context, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, CultureInfoConverter_GetStandardValuesExclusive, (CultureInfoConverter * __this, ITypeDescriptorContext * context, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, CultureInfoConverter_GetStandardValuesSupported, (CultureInfoConverter * __this, ITypeDescriptorContext * context, MethodInfo * method)); @@ -35046,12 +40156,14 @@ DO_APP_FUNC(0x026F07E0, bool, DataObjectMethodAttribute_Match, (DataObjectMethod DO_APP_FUNC(0x026F0860, bool, DateTimeConverter_CanConvertFrom, (DateTimeConverter * __this, ITypeDescriptorContext * context, Type * sourceType, MethodInfo * method)); DO_APP_FUNC(0x026F0940, bool, DateTimeConverter_CanConvertTo, (DateTimeConverter * __this, ITypeDescriptorContext * context, Type * destinationType, MethodInfo * method)); DO_APP_FUNC(0x026F0A20, Object *, DateTimeConverter_ConvertFrom, (DateTimeConverter * __this, ITypeDescriptorContext * context, CultureInfo * culture, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7DA0, DateTimeConverter_ConvertFrom__MethodInfo); DO_APP_FUNC(0x026F0D20, Object *, DateTimeConverter_ConvertTo, (DateTimeConverter * __this, ITypeDescriptorContext * context, CultureInfo * culture, Object * value, Type * destinationType, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, DateTimeConverter__ctor, (DateTimeConverter * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, DecimalConverter_get_AllowHex, (DecimalConverter * __this, MethodInfo * method)); DO_APP_FUNC(0x026F1270, Type *, DecimalConverter_get_TargetType, (DecimalConverter * __this, MethodInfo * method)); DO_APP_FUNC(0x026F12E0, bool, DecimalConverter_CanConvertTo, (DecimalConverter * __this, ITypeDescriptorContext * context, Type * destinationType, MethodInfo * method)); DO_APP_FUNC(0x026F13B0, Object *, DecimalConverter_ConvertTo, (DecimalConverter * __this, ITypeDescriptorContext * context, CultureInfo * culture, Object * value, Type * destinationType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7CE0, DecimalConverter_ConvertTo__MethodInfo); DO_APP_FUNC(0x026F1820, Object *, DecimalConverter_FromString, (DecimalConverter * __this, String * value, int32_t radix, MethodInfo * method)); DO_APP_FUNC(0x026F1980, Object *, DecimalConverter_FromString_1, (DecimalConverter * __this, String * value, NumberFormatInfo * formatInfo, MethodInfo * method)); DO_APP_FUNC(0x026F1A10, String *, DecimalConverter_ToString, (DecimalConverter * __this, Object * value, NumberFormatInfo * formatInfo, MethodInfo * method)); @@ -35095,8 +40207,11 @@ DO_APP_FUNC(0x026F2830, void, PropertyTabAttribute__ctor, (PropertyTabAttribute DO_APP_FUNC(0x026F2950, void, PropertyTabAttribute__ctor_1, (PropertyTabAttribute * __this, Type * tabClass, MethodInfo * method)); DO_APP_FUNC(0x026F2960, void, PropertyTabAttribute__ctor_2, (PropertyTabAttribute * __this, String * tabClassName, MethodInfo * method)); DO_APP_FUNC(0x026F2970, void, PropertyTabAttribute__ctor_3, (PropertyTabAttribute * __this, Type * tabClass, PropertyTabScope__Enum tabScope, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7C48, PropertyTabAttribute__ctor_3__MethodInfo); DO_APP_FUNC(0x026F2BA0, void, PropertyTabAttribute__ctor_4, (PropertyTabAttribute * __this, String * tabClassName, PropertyTabScope__Enum tabScope, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7C70, PropertyTabAttribute__ctor_4__MethodInfo); DO_APP_FUNC(0x026F2DD0, Type__Array *, PropertyTabAttribute_get_TabClasses, (PropertyTabAttribute * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7C60, PropertyTabAttribute_get_TabClasses__MethodInfo); DO_APP_FUNC(0x026F3190, String__Array *, PropertyTabAttribute_get_TabClassNames, (PropertyTabAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, PropertyTabScope__Enum__Array *, PropertyTabAttribute_get_TabScopes, (PropertyTabAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCDE0, void, PropertyTabAttribute_set_TabScopes, (PropertyTabAttribute * __this, PropertyTabScope__Enum__Array * value, MethodInfo * method)); @@ -35106,11 +40221,13 @@ DO_APP_FUNC(0x026DE5F0, int32_t, PropertyTabAttribute_GetHashCode, (PropertyTabA DO_APP_FUNC(0x026F3470, void, PropertyTabAttribute_InitializeArrays, (PropertyTabAttribute * __this, String__Array * tabClassNames, PropertyTabScope__Enum__Array * tabScopes, MethodInfo * method)); DO_APP_FUNC(0x026F3490, void, PropertyTabAttribute_InitializeArrays_1, (PropertyTabAttribute * __this, Type__Array * tabClasses, PropertyTabScope__Enum__Array * tabScopes, MethodInfo * method)); DO_APP_FUNC(0x026F34B0, void, PropertyTabAttribute_InitializeArrays_2, (PropertyTabAttribute * __this, String__Array * tabClassNames, Type__Array * tabClasses, PropertyTabScope__Enum__Array * tabScopes, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7B20, PropertyTabAttribute_InitializeArrays_2__MethodInfo); DO_APP_FUNC(0x026F3980, bool, ToolboxItemAttribute_IsDefaultAttribute, (ToolboxItemAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x026F39F0, void, ToolboxItemAttribute__ctor, (ToolboxItemAttribute * __this, bool defaultType, MethodInfo * method)); DO_APP_FUNC(0x026F3A90, void, ToolboxItemAttribute__ctor_1, (ToolboxItemAttribute * __this, String * toolboxItemTypeName, MethodInfo * method)); DO_APP_FUNC(0x026F3C20, void, ToolboxItemAttribute__ctor_2, (ToolboxItemAttribute * __this, Type * toolboxItemType, MethodInfo * method)); DO_APP_FUNC(0x026F3D10, Type *, ToolboxItemAttribute_get_ToolboxItemType, (ToolboxItemAttribute * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7B08, ToolboxItemAttribute_get_ToolboxItemType__MethodInfo); DO_APP_FUNC(0x026F3EA0, String *, ToolboxItemAttribute_get_ToolboxItemTypeName, (ToolboxItemAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x026F3F00, bool, ToolboxItemAttribute_Equals, (ToolboxItemAttribute * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x026F4050, int32_t, ToolboxItemAttribute_GetHashCode, (ToolboxItemAttribute * __this, MethodInfo * method)); @@ -35146,9 +40263,12 @@ DO_APP_FUNC(0x026F5430, void, EventDescriptorCollection__ctor_2, (EventDescripto DO_APP_FUNC(0x0098C870, int32_t, EventDescriptorCollection_get_Count, (EventDescriptorCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x0098C880, void, EventDescriptorCollection_set_Count, (EventDescriptorCollection * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x026F5600, EventDescriptor *, EventDescriptorCollection_get_Item, (EventDescriptorCollection * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7A78, EventDescriptorCollection_get_Item__MethodInfo); DO_APP_FUNC(0x026F5690, EventDescriptor *, EventDescriptorCollection_get_Item_1, (EventDescriptorCollection * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x026F56B0, int32_t, EventDescriptorCollection_Add, (EventDescriptorCollection * __this, EventDescriptor * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7A80, EventDescriptorCollection_Add__MethodInfo); DO_APP_FUNC(0x026F5790, void, EventDescriptorCollection_Clear, (EventDescriptorCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7AB0, EventDescriptorCollection_Clear__MethodInfo); DO_APP_FUNC(0x026F57F0, bool, EventDescriptorCollection_Contains, (EventDescriptorCollection * __this, EventDescriptor * value, MethodInfo * method)); DO_APP_FUNC(0x026F5850, void, EventDescriptorCollection_System_Collections_ICollection_CopyTo, (EventDescriptorCollection * __this, Array * array, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x026F58A0, void, EventDescriptorCollection_EnsureEventsOwned, (EventDescriptorCollection * __this, MethodInfo * method)); @@ -35156,8 +40276,11 @@ DO_APP_FUNC(0x026F59A0, void, EventDescriptorCollection_EnsureSize, (EventDescri DO_APP_FUNC(0x026F5B60, EventDescriptor *, EventDescriptorCollection_Find, (EventDescriptorCollection * __this, String * name, bool ignoreCase, MethodInfo * method)); DO_APP_FUNC(0x026F5D80, int32_t, EventDescriptorCollection_IndexOf, (EventDescriptorCollection * __this, EventDescriptor * value, MethodInfo * method)); DO_APP_FUNC(0x026F5DE0, void, EventDescriptorCollection_Insert, (EventDescriptorCollection * __this, int32_t index, EventDescriptor * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD79D8, EventDescriptorCollection_Insert__MethodInfo); DO_APP_FUNC(0x026F5EE0, void, EventDescriptorCollection_Remove, (EventDescriptorCollection * __this, EventDescriptor * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD79B8, EventDescriptorCollection_Remove__MethodInfo); DO_APP_FUNC(0x026F5FA0, void, EventDescriptorCollection_RemoveAt, (EventDescriptorCollection * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD79C0, EventDescriptorCollection_RemoveAt__MethodInfo); DO_APP_FUNC(0x026F6050, IEnumerator *, EventDescriptorCollection_GetEnumerator, (EventDescriptorCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x026F6130, EventDescriptorCollection *, EventDescriptorCollection_Sort, (EventDescriptorCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x026F61E0, EventDescriptorCollection *, EventDescriptorCollection_Sort_1, (EventDescriptorCollection * __this, String__Array * names, MethodInfo * method)); @@ -35171,6 +40294,7 @@ DO_APP_FUNC(0x0098C870, int32_t, EventDescriptorCollection_System_Collections_IC DO_APP_FUNC(0x026F6930, IEnumerator *, EventDescriptorCollection_System_Collections_IEnumerable_GetEnumerator, (EventDescriptorCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x026F6A10, Object *, EventDescriptorCollection_System_Collections_IList_get_Item, (EventDescriptorCollection * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x026F6A30, void, EventDescriptorCollection_System_Collections_IList_set_Item, (EventDescriptorCollection * __this, int32_t index, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7A00, EventDescriptorCollection_System_Collections_IList_set_Item__MethodInfo); DO_APP_FUNC(0x026F6BE0, int32_t, EventDescriptorCollection_System_Collections_IList_Add, (EventDescriptorCollection * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x026F6D20, bool, EventDescriptorCollection_System_Collections_IList_Contains, (EventDescriptorCollection * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x026F5790, void, EventDescriptorCollection_System_Collections_IList_Clear, (EventDescriptorCollection * __this, MethodInfo * method)); @@ -35185,6 +40309,7 @@ DO_APP_FUNC(0x026F71F0, void, EventDescriptorCollection_ArraySubsetEnumerator__c DO_APP_FUNC(0x026F7260, bool, EventDescriptorCollection_ArraySubsetEnumerator_MoveNext, (EventDescriptorCollection_ArraySubsetEnumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x025CA180, void, EventDescriptorCollection_ArraySubsetEnumerator_Reset, (EventDescriptorCollection_ArraySubsetEnumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x026F7280, Object *, EventDescriptorCollection_ArraySubsetEnumerator_get_Current, (EventDescriptorCollection_ArraySubsetEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7900, EventDescriptorCollection_ArraySubsetEnumerator_get_Current__MethodInfo); DO_APP_FUNC(0x003AE050, void, ExpandableObjectConverter__ctor, (ExpandableObjectConverter * __this, MethodInfo * method)); DO_APP_FUNC(0x026F7300, PropertyDescriptorCollection *, ExpandableObjectConverter_GetProperties, (ExpandableObjectConverter * __this, ITypeDescriptorContext * context, Object * value, Attribute__Array * attributes, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, ExpandableObjectConverter_GetPropertiesSupported, (ExpandableObjectConverter * __this, ITypeDescriptorContext * context, MethodInfo * method)); @@ -35214,6 +40339,7 @@ DO_APP_FUNC(0x026F8130, bool, GuidConverter_CanConvertFrom, (GuidConverter * __t DO_APP_FUNC(0x026F8210, bool, GuidConverter_CanConvertTo, (GuidConverter * __this, ITypeDescriptorContext * context, Type * destinationType, MethodInfo * method)); DO_APP_FUNC(0x026F82F0, Object *, GuidConverter_ConvertFrom, (GuidConverter * __this, ITypeDescriptorContext * context, CultureInfo * culture, Object * value, MethodInfo * method)); DO_APP_FUNC(0x026F8500, Object *, GuidConverter_ConvertTo, (GuidConverter * __this, ITypeDescriptorContext * context, CultureInfo * culture, Object * value, Type * destinationType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD78B8, GuidConverter_ConvertTo__MethodInfo); DO_APP_FUNC(0x003AE050, void, GuidConverter__ctor, (GuidConverter * __this, MethodInfo * method)); DO_APP_FUNC(0x0270C620, void, HandledEventArgs__ctor, (HandledEventArgs * __this, MethodInfo * method)); DO_APP_FUNC(0x0270C670, void, HandledEventArgs__ctor_1, (HandledEventArgs * __this, bool defaultHandledValue, MethodInfo * method)); @@ -35226,6 +40352,7 @@ DO_APP_FUNC(0x003BA270, void, HandledEventHandler_EndInvoke, (HandledEventHandle DO_APP_FUNC(0x0270C6D0, void, InstallerTypeAttribute__ctor, (InstallerTypeAttribute * __this, Type * installerType, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, InstallerTypeAttribute__ctor_1, (InstallerTypeAttribute * __this, String * typeName, MethodInfo * method)); DO_APP_FUNC(0x0270C750, Type *, InstallerTypeAttribute_get_InstallerType, (InstallerTypeAttribute * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDB58, InstallerTypeAttribute_get_InstallerType__MethodInfo); DO_APP_FUNC(0x0270C7D0, bool, InstallerTypeAttribute_Equals, (InstallerTypeAttribute * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x026DE5F0, int32_t, InstallerTypeAttribute_GetHashCode, (InstallerTypeAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x0270C890, String *, InstanceCreationEditor_get_Text, (InstanceCreationEditor * __this, MethodInfo * method)); @@ -35265,28 +40392,35 @@ DO_APP_FUNC(0x003AE050, void, LicenseContext__ctor, (LicenseContext * __this, Me DO_APP_FUNC(0x003AE050, void, LicenseManager__ctor, (LicenseManager * __this, MethodInfo * method)); DO_APP_FUNC(0x0270D900, LicenseContext *, LicenseManager_get_CurrentContext, (MethodInfo * method)); DO_APP_FUNC(0x0270DBD0, void, LicenseManager_set_CurrentContext, (LicenseContext * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDB40, LicenseManager_set_CurrentContext__MethodInfo); DO_APP_FUNC(0x0270DE50, LicenseUsageMode__Enum, LicenseManager_get_UsageMode, (MethodInfo * method)); DO_APP_FUNC(0x0270DF10, void, LicenseManager_CacheProvider, (Type * type, LicenseProvider * provider, MethodInfo * method)); DO_APP_FUNC(0x0270E200, Object *, LicenseManager_CreateWithContext, (Type * type, LicenseContext * creationContext, MethodInfo * method)); DO_APP_FUNC(0x0270E290, Object *, LicenseManager_CreateWithContext_1, (Type * type, LicenseContext * creationContext, Object__Array * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDB30, LicenseManager_CreateWithContext_1__MethodInfo); DO_APP_FUNC(0x0270E680, bool, LicenseManager_GetCachedNoLicenseProvider, (Type * type, MethodInfo * method)); DO_APP_FUNC(0x0270E740, LicenseProvider *, LicenseManager_GetCachedProvider, (Type * type, MethodInfo * method)); DO_APP_FUNC(0x0270E810, LicenseProvider *, LicenseManager_GetCachedProviderInstance, (Type * providerType, MethodInfo * method)); DO_APP_FUNC(0x0270E8E0, bool, LicenseManager_IsLicensed, (Type * type, MethodInfo * method)); DO_APP_FUNC(0x0270E9D0, bool, LicenseManager_IsValid, (Type * type, MethodInfo * method)); -DO_APP_FUNC(0x0270EAC0, bool, LicenseManager_IsValid_1, (Type * type, Object * instance, License * license, MethodInfo * method)); +DO_APP_FUNC(0x0270EAC0, bool, LicenseManager_IsValid_1, (Type * type, Object * instance, License * * license, MethodInfo * method)); DO_APP_FUNC(0x0270EB40, void, LicenseManager_LockContext, (Object * contextUser, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDAB8, LicenseManager_LockContext__MethodInfo); DO_APP_FUNC(0x0270EDB0, void, LicenseManager_UnlockContext, (Object * contextUser, MethodInfo * method)); -DO_APP_FUNC(0x0270F030, bool, LicenseManager_ValidateInternal, (Type * type, Object * instance, bool allowExceptions, License * license, MethodInfo * method)); -DO_APP_FUNC(0x0270F0E0, bool, LicenseManager_ValidateInternalRecursive, (LicenseContext * context, Type * type, Object * instance, bool allowExceptions, License * license, String * licenseKey, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDAE0, LicenseManager_UnlockContext__MethodInfo); +DO_APP_FUNC(0x0270F030, bool, LicenseManager_ValidateInternal, (Type * type, Object * instance, bool allowExceptions, License * * license, MethodInfo * method)); +DO_APP_FUNC(0x0270F0E0, bool, LicenseManager_ValidateInternalRecursive, (LicenseContext * context, Type * type, Object * instance, bool allowExceptions, License * * license, String * * licenseKey, MethodInfo * method)); DO_APP_FUNC(0x0270F7C0, void, LicenseManager_Validate, (Type * type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDAC8, LicenseManager_Validate__MethodInfo); DO_APP_FUNC(0x0270F8E0, License *, LicenseManager_Validate_1, (Type * type, Object * instance, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDAD8, LicenseManager_Validate_1__MethodInfo); DO_APP_FUNC(0x0270FA00, void, LicenseManager__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, LicenseProvider__ctor, (LicenseProvider * __this, MethodInfo * method)); DO_APP_FUNC(0x01977560, void, LicenseProviderAttribute__ctor, (LicenseProviderAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE960, void, LicenseProviderAttribute__ctor_1, (LicenseProviderAttribute * __this, String * typeName, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, LicenseProviderAttribute__ctor_2, (LicenseProviderAttribute * __this, Type * type, MethodInfo * method)); DO_APP_FUNC(0x0270FB50, Type *, LicenseProviderAttribute_get_LicenseProvider, (LicenseProviderAttribute * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDA80, LicenseProviderAttribute_get_LicenseProvider__MethodInfo); DO_APP_FUNC(0x0270FC50, Object *, LicenseProviderAttribute_get_TypeId, (LicenseProviderAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x0270FD20, bool, LicenseProviderAttribute_Equals, (LicenseProviderAttribute * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x026DE5F0, int32_t, LicenseProviderAttribute_GetHashCode, (LicenseProviderAttribute * __this, MethodInfo * method)); @@ -35319,17 +40453,24 @@ DO_APP_FUNC(0x027104B0, void, ListSortDescriptionCollection__ctor, (ListSortDesc DO_APP_FUNC(0x02710560, void, ListSortDescriptionCollection__ctor_1, (ListSortDescriptionCollection * __this, ListSortDescription__Array * sorts, MethodInfo * method)); DO_APP_FUNC(0x02710660, ListSortDescription *, ListSortDescriptionCollection_get_Item, (ListSortDescriptionCollection * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x02710700, void, ListSortDescriptionCollection_set_Item, (ListSortDescriptionCollection * __this, int32_t index, ListSortDescription * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDA88, ListSortDescriptionCollection_set_Item__MethodInfo); DO_APP_FUNC(0x0041AEF0, bool, ListSortDescriptionCollection_System_Collections_IList_get_IsFixedSize, (ListSortDescriptionCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, ListSortDescriptionCollection_System_Collections_IList_get_IsReadOnly, (ListSortDescriptionCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x02710660, Object *, ListSortDescriptionCollection_System_Collections_IList_get_Item, (ListSortDescriptionCollection * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x02710760, void, ListSortDescriptionCollection_System_Collections_IList_set_Item, (ListSortDescriptionCollection * __this, int32_t index, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDA90, ListSortDescriptionCollection_System_Collections_IList_set_Item__MethodInfo); DO_APP_FUNC(0x027107C0, int32_t, ListSortDescriptionCollection_System_Collections_IList_Add, (ListSortDescriptionCollection * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDA20, ListSortDescriptionCollection_System_Collections_IList_Add__MethodInfo); DO_APP_FUNC(0x02710820, void, ListSortDescriptionCollection_System_Collections_IList_Clear, (ListSortDescriptionCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDA28, ListSortDescriptionCollection_System_Collections_IList_Clear__MethodInfo); DO_APP_FUNC(0x02710880, bool, ListSortDescriptionCollection_Contains, (ListSortDescriptionCollection * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x027108E0, int32_t, ListSortDescriptionCollection_IndexOf, (ListSortDescriptionCollection * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x02710940, void, ListSortDescriptionCollection_System_Collections_IList_Insert, (ListSortDescriptionCollection * __this, int32_t index, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDA30, ListSortDescriptionCollection_System_Collections_IList_Insert__MethodInfo); DO_APP_FUNC(0x027109A0, void, ListSortDescriptionCollection_System_Collections_IList_Remove, (ListSortDescriptionCollection * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDA38, ListSortDescriptionCollection_System_Collections_IList_Remove__MethodInfo); DO_APP_FUNC(0x02710A00, void, ListSortDescriptionCollection_System_Collections_IList_RemoveAt, (ListSortDescriptionCollection * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDA10, ListSortDescriptionCollection_System_Collections_IList_RemoveAt__MethodInfo); DO_APP_FUNC(0x01B1A1A0, int32_t, ListSortDescriptionCollection_get_Count, (ListSortDescriptionCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, ListSortDescriptionCollection_System_Collections_ICollection_get_IsSynchronized, (ListSortDescriptionCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x00A1B820, Object *, ListSortDescriptionCollection_System_Collections_ICollection_get_SyncRoot, (ListSortDescriptionCollection * __this, MethodInfo * method)); @@ -35365,6 +40506,7 @@ DO_APP_FUNC(0x02711800, void, MaskedTextProvider__ctor_3, (MaskedTextProvider * DO_APP_FUNC(0x02711830, void, MaskedTextProvider__ctor_4, (MaskedTextProvider * __this, String * mask, uint16_t passwordChar, bool allowPromptAsInput, MethodInfo * method)); DO_APP_FUNC(0x02711860, void, MaskedTextProvider__ctor_5, (MaskedTextProvider * __this, String * mask, CultureInfo * culture, uint16_t passwordChar, bool allowPromptAsInput, MethodInfo * method)); DO_APP_FUNC(0x02711890, void, MaskedTextProvider__ctor_6, (MaskedTextProvider * __this, String * mask, CultureInfo * culture, bool allowPromptAsInput, uint16_t promptChar, uint16_t passwordChar, bool restrictToAscii, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD950, MaskedTextProvider__ctor_6__MethodInfo); DO_APP_FUNC(0x02711D00, void, MaskedTextProvider_Initialize, (MaskedTextProvider * __this, MethodInfo * method)); DO_APP_FUNC(0x02712300, bool, MaskedTextProvider_get_AllowPromptAsInput, (MaskedTextProvider * __this, MethodInfo * method)); DO_APP_FUNC(0x009F7E90, int32_t, MaskedTextProvider_get_AssignedEditPositionCount, (MaskedTextProvider * __this, MethodInfo * method)); @@ -35390,8 +40532,10 @@ DO_APP_FUNC(0x02713340, bool, MaskedTextProvider_get_MaskCompleted, (MaskedTextP DO_APP_FUNC(0x02713350, bool, MaskedTextProvider_get_MaskFull, (MaskedTextProvider * __this, MethodInfo * method)); DO_APP_FUNC(0x009AF720, uint16_t, MaskedTextProvider_get_PasswordChar, (MaskedTextProvider * __this, MethodInfo * method)); DO_APP_FUNC(0x02713360, void, MaskedTextProvider_set_PasswordChar, (MaskedTextProvider * __this, uint16_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD8F8, MaskedTextProvider_set_PasswordChar__MethodInfo); DO_APP_FUNC(0x021EBD90, uint16_t, MaskedTextProvider_get_PromptChar, (MaskedTextProvider * __this, MethodInfo * method)); DO_APP_FUNC(0x027134B0, void, MaskedTextProvider_set_PromptChar, (MaskedTextProvider * __this, uint16_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD920, MaskedTextProvider_set_PromptChar__MethodInfo); DO_APP_FUNC(0x02713690, bool, MaskedTextProvider_get_ResetOnPrompt, (MaskedTextProvider * __this, MethodInfo * method)); DO_APP_FUNC(0x02713700, void, MaskedTextProvider_set_ResetOnPrompt, (MaskedTextProvider * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x02713790, bool, MaskedTextProvider_get_ResetOnSpace, (MaskedTextProvider * __this, MethodInfo * method)); @@ -35399,12 +40543,14 @@ DO_APP_FUNC(0x02713800, void, MaskedTextProvider_set_ResetOnSpace, (MaskedTextPr DO_APP_FUNC(0x02713890, bool, MaskedTextProvider_get_SkipLiterals, (MaskedTextProvider * __this, MethodInfo * method)); DO_APP_FUNC(0x02713900, void, MaskedTextProvider_set_SkipLiterals, (MaskedTextProvider * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x02713990, uint16_t, MaskedTextProvider_get_Item, (MaskedTextProvider * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD870, MaskedTextProvider_get_Item__MethodInfo); DO_APP_FUNC(0x02713A60, bool, MaskedTextProvider_Add, (MaskedTextProvider * __this, uint16_t input, MethodInfo * method)); -DO_APP_FUNC(0x02713B70, bool, MaskedTextProvider_Add_1, (MaskedTextProvider * __this, uint16_t input, int32_t testPosition, MaskedTextResultHint__Enum resultHint, MethodInfo * method)); +DO_APP_FUNC(0x02713B70, bool, MaskedTextProvider_Add_1, (MaskedTextProvider * __this, uint16_t input, int32_t * testPosition, MaskedTextResultHint__Enum * resultHint, MethodInfo * method)); DO_APP_FUNC(0x02713CD0, bool, MaskedTextProvider_Add_2, (MaskedTextProvider * __this, String * input, MethodInfo * method)); -DO_APP_FUNC(0x02713DD0, bool, MaskedTextProvider_Add_3, (MaskedTextProvider * __this, String * input, int32_t testPosition, MaskedTextResultHint__Enum resultHint, MethodInfo * method)); +DO_APP_FUNC(0x02713DD0, bool, MaskedTextProvider_Add_3, (MaskedTextProvider * __this, String * input, int32_t * testPosition, MaskedTextResultHint__Enum * resultHint, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD880, MaskedTextProvider_Add_3__MethodInfo); DO_APP_FUNC(0x02713EE0, void, MaskedTextProvider_Clear, (MaskedTextProvider * __this, MethodInfo * method)); -DO_APP_FUNC(0x02713F00, void, MaskedTextProvider_Clear_1, (MaskedTextProvider * __this, MaskedTextResultHint__Enum resultHint, MethodInfo * method)); +DO_APP_FUNC(0x02713F00, void, MaskedTextProvider_Clear_1, (MaskedTextProvider * __this, MaskedTextResultHint__Enum * resultHint, MethodInfo * method)); DO_APP_FUNC(0x02714030, int32_t, MaskedTextProvider_FindAssignedEditPositionFrom, (MaskedTextProvider * __this, int32_t position, bool direction, MethodInfo * method)); DO_APP_FUNC(0x02714090, int32_t, MaskedTextProvider_FindAssignedEditPositionInRange, (MaskedTextProvider * __this, int32_t startPosition, int32_t endPosition, bool direction, MethodInfo * method)); DO_APP_FUNC(0x027141D0, int32_t, MaskedTextProvider_FindEditPositionFrom, (MaskedTextProvider * __this, int32_t position, bool direction, MethodInfo * method)); @@ -35417,10 +40563,11 @@ DO_APP_FUNC(0x027144E0, int32_t, MaskedTextProvider_FindUnassignedEditPositionFr DO_APP_FUNC(0x02714530, int32_t, MaskedTextProvider_FindUnassignedEditPositionInRange, (MaskedTextProvider * __this, int32_t startPosition, int32_t endPosition, bool direction, MethodInfo * method)); DO_APP_FUNC(0x02714640, bool, MaskedTextProvider_GetOperationResultFromHint, (MaskedTextResultHint__Enum hint, MethodInfo * method)); DO_APP_FUNC(0x02714650, bool, MaskedTextProvider_InsertAt, (MaskedTextProvider * __this, uint16_t input, int32_t position, MethodInfo * method)); -DO_APP_FUNC(0x02714780, bool, MaskedTextProvider_InsertAt_1, (MaskedTextProvider * __this, uint16_t input, int32_t position, int32_t testPosition, MaskedTextResultHint__Enum resultHint, MethodInfo * method)); +DO_APP_FUNC(0x02714780, bool, MaskedTextProvider_InsertAt_1, (MaskedTextProvider * __this, uint16_t input, int32_t position, int32_t * testPosition, MaskedTextResultHint__Enum * resultHint, MethodInfo * method)); DO_APP_FUNC(0x02714890, bool, MaskedTextProvider_InsertAt_2, (MaskedTextProvider * __this, String * input, int32_t position, MethodInfo * method)); -DO_APP_FUNC(0x02714950, bool, MaskedTextProvider_InsertAt_3, (MaskedTextProvider * __this, String * input, int32_t position, int32_t testPosition, MaskedTextResultHint__Enum resultHint, MethodInfo * method)); -DO_APP_FUNC(0x02714A10, bool, MaskedTextProvider_InsertAtInt, (MaskedTextProvider * __this, String * input, int32_t position, int32_t testPosition, MaskedTextResultHint__Enum resultHint, bool testOnly, MethodInfo * method)); +DO_APP_FUNC(0x02714950, bool, MaskedTextProvider_InsertAt_3, (MaskedTextProvider * __this, String * input, int32_t position, int32_t * testPosition, MaskedTextResultHint__Enum * resultHint, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD860, MaskedTextProvider_InsertAt_3__MethodInfo); +DO_APP_FUNC(0x02714A10, bool, MaskedTextProvider_InsertAtInt, (MaskedTextProvider * __this, String * input, int32_t position, int32_t * testPosition, MaskedTextResultHint__Enum * resultHint, bool testOnly, MethodInfo * method)); DO_APP_FUNC(0x02714E30, bool, MaskedTextProvider_IsAscii, (uint16_t c, MethodInfo * method)); DO_APP_FUNC(0x02714E50, bool, MaskedTextProvider_IsAciiAlphanumeric, (uint16_t c, MethodInfo * method)); DO_APP_FUNC(0x02714E80, bool, MaskedTextProvider_IsAlphanumeric, (uint16_t c, MethodInfo * method)); @@ -35434,30 +40581,33 @@ DO_APP_FUNC(0x02715260, bool, MaskedTextProvider_IsValidInputChar, (uint16_t c, DO_APP_FUNC(0x027152B0, bool, MaskedTextProvider_IsValidMaskChar, (uint16_t c, MethodInfo * method)); DO_APP_FUNC(0x02715300, bool, MaskedTextProvider_IsValidPasswordChar, (uint16_t c, MethodInfo * method)); DO_APP_FUNC(0x02715370, bool, MaskedTextProvider_Remove, (MaskedTextProvider * __this, MethodInfo * method)); -DO_APP_FUNC(0x027153D0, bool, MaskedTextProvider_Remove_1, (MaskedTextProvider * __this, int32_t testPosition, MaskedTextResultHint__Enum resultHint, MethodInfo * method)); +DO_APP_FUNC(0x027153D0, bool, MaskedTextProvider_Remove_1, (MaskedTextProvider * __this, int32_t * testPosition, MaskedTextResultHint__Enum * resultHint, MethodInfo * method)); DO_APP_FUNC(0x02715470, bool, MaskedTextProvider_RemoveAt, (MaskedTextProvider * __this, int32_t position, MethodInfo * method)); DO_APP_FUNC(0x027154D0, bool, MaskedTextProvider_RemoveAt_1, (MaskedTextProvider * __this, int32_t startPosition, int32_t endPosition, MethodInfo * method)); -DO_APP_FUNC(0x02715530, bool, MaskedTextProvider_RemoveAt_2, (MaskedTextProvider * __this, int32_t startPosition, int32_t endPosition, int32_t testPosition, MaskedTextResultHint__Enum resultHint, MethodInfo * method)); -DO_APP_FUNC(0x027155B0, bool, MaskedTextProvider_RemoveAtInt, (MaskedTextProvider * __this, int32_t startPosition, int32_t endPosition, int32_t testPosition, MaskedTextResultHint__Enum resultHint, bool testOnly, MethodInfo * method)); +DO_APP_FUNC(0x02715530, bool, MaskedTextProvider_RemoveAt_2, (MaskedTextProvider * __this, int32_t startPosition, int32_t endPosition, int32_t * testPosition, MaskedTextResultHint__Enum * resultHint, MethodInfo * method)); +DO_APP_FUNC(0x027155B0, bool, MaskedTextProvider_RemoveAtInt, (MaskedTextProvider * __this, int32_t startPosition, int32_t endPosition, int32_t * testPosition, MaskedTextResultHint__Enum * resultHint, bool testOnly, MethodInfo * method)); DO_APP_FUNC(0x027159B0, bool, MaskedTextProvider_Replace, (MaskedTextProvider * __this, uint16_t input, int32_t position, MethodInfo * method)); -DO_APP_FUNC(0x02715AB0, bool, MaskedTextProvider_Replace_1, (MaskedTextProvider * __this, uint16_t input, int32_t position, int32_t testPosition, MaskedTextResultHint__Enum resultHint, MethodInfo * method)); -DO_APP_FUNC(0x02715BD0, bool, MaskedTextProvider_Replace_2, (MaskedTextProvider * __this, uint16_t input, int32_t startPosition, int32_t endPosition, int32_t testPosition, MaskedTextResultHint__Enum resultHint, MethodInfo * method)); +DO_APP_FUNC(0x02715AB0, bool, MaskedTextProvider_Replace_1, (MaskedTextProvider * __this, uint16_t input, int32_t position, int32_t * testPosition, MaskedTextResultHint__Enum * resultHint, MethodInfo * method)); +DO_APP_FUNC(0x02715BD0, bool, MaskedTextProvider_Replace_2, (MaskedTextProvider * __this, uint16_t input, int32_t startPosition, int32_t endPosition, int32_t * testPosition, MaskedTextResultHint__Enum * resultHint, MethodInfo * method)); DO_APP_FUNC(0x02715D30, bool, MaskedTextProvider_Replace_3, (MaskedTextProvider * __this, String * input, int32_t position, MethodInfo * method)); -DO_APP_FUNC(0x02715E10, bool, MaskedTextProvider_Replace_4, (MaskedTextProvider * __this, String * input, int32_t position, int32_t testPosition, MaskedTextResultHint__Enum resultHint, MethodInfo * method)); -DO_APP_FUNC(0x02715EF0, bool, MaskedTextProvider_Replace_5, (MaskedTextProvider * __this, String * input, int32_t startPosition, int32_t endPosition, int32_t testPosition, MaskedTextResultHint__Enum resultHint, MethodInfo * method)); +DO_APP_FUNC(0x02715E10, bool, MaskedTextProvider_Replace_4, (MaskedTextProvider * __this, String * input, int32_t position, int32_t * testPosition, MaskedTextResultHint__Enum * resultHint, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD7C8, MaskedTextProvider_Replace_4__MethodInfo); +DO_APP_FUNC(0x02715EF0, bool, MaskedTextProvider_Replace_5, (MaskedTextProvider * __this, String * input, int32_t startPosition, int32_t endPosition, int32_t * testPosition, MaskedTextResultHint__Enum * resultHint, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD7B0, MaskedTextProvider_Replace_5__MethodInfo); DO_APP_FUNC(0x02716290, void, MaskedTextProvider_ResetChar, (MaskedTextProvider * __this, int32_t testPosition, MethodInfo * method)); DO_APP_FUNC(0x02716350, void, MaskedTextProvider_ResetString, (MaskedTextProvider * __this, int32_t startPosition, int32_t endPosition, MethodInfo * method)); DO_APP_FUNC(0x027164F0, bool, MaskedTextProvider_Set, (MaskedTextProvider * __this, String * input, MethodInfo * method)); -DO_APP_FUNC(0x02716630, bool, MaskedTextProvider_Set_1, (MaskedTextProvider * __this, String * input, int32_t testPosition, MaskedTextResultHint__Enum resultHint, MethodInfo * method)); +DO_APP_FUNC(0x02716630, bool, MaskedTextProvider_Set_1, (MaskedTextProvider * __this, String * input, int32_t * testPosition, MaskedTextResultHint__Enum * resultHint, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD7D8, MaskedTextProvider_Set_1__MethodInfo); DO_APP_FUNC(0x02716780, void, MaskedTextProvider_SetChar, (MaskedTextProvider * __this, uint16_t input, int32_t position, MethodInfo * method)); DO_APP_FUNC(0x02716820, void, MaskedTextProvider_SetChar_1, (MaskedTextProvider * __this, uint16_t input, int32_t position, MaskedTextProvider_CharDescriptor * charDescriptor, MethodInfo * method)); DO_APP_FUNC(0x02716A10, void, MaskedTextProvider_SetString, (MaskedTextProvider * __this, String * input, int32_t testPosition, MethodInfo * method)); -DO_APP_FUNC(0x02716B70, bool, MaskedTextProvider_TestChar, (MaskedTextProvider * __this, uint16_t input, int32_t position, MaskedTextResultHint__Enum resultHint, MethodInfo * method)); +DO_APP_FUNC(0x02716B70, bool, MaskedTextProvider_TestChar, (MaskedTextProvider * __this, uint16_t input, int32_t position, MaskedTextResultHint__Enum * resultHint, MethodInfo * method)); DO_APP_FUNC(0x027170B0, bool, MaskedTextProvider_TestEscapeChar, (MaskedTextProvider * __this, uint16_t input, int32_t position, MethodInfo * method)); DO_APP_FUNC(0x02717150, bool, MaskedTextProvider_TestEscapeChar_1, (MaskedTextProvider * __this, uint16_t input, int32_t position, MaskedTextProvider_CharDescriptor * charDex, MethodInfo * method)); -DO_APP_FUNC(0x02717230, bool, MaskedTextProvider_TestSetChar, (MaskedTextProvider * __this, uint16_t input, int32_t position, MaskedTextResultHint__Enum resultHint, MethodInfo * method)); -DO_APP_FUNC(0x027172A0, bool, MaskedTextProvider_TestSetString, (MaskedTextProvider * __this, String * input, int32_t position, int32_t testPosition, MaskedTextResultHint__Enum resultHint, MethodInfo * method)); -DO_APP_FUNC(0x02717310, bool, MaskedTextProvider_TestString, (MaskedTextProvider * __this, String * input, int32_t position, int32_t testPosition, MaskedTextResultHint__Enum resultHint, MethodInfo * method)); +DO_APP_FUNC(0x02717230, bool, MaskedTextProvider_TestSetChar, (MaskedTextProvider * __this, uint16_t input, int32_t position, MaskedTextResultHint__Enum * resultHint, MethodInfo * method)); +DO_APP_FUNC(0x027172A0, bool, MaskedTextProvider_TestSetString, (MaskedTextProvider * __this, String * input, int32_t position, int32_t * testPosition, MaskedTextResultHint__Enum * resultHint, MethodInfo * method)); +DO_APP_FUNC(0x02717310, bool, MaskedTextProvider_TestString, (MaskedTextProvider * __this, String * input, int32_t position, int32_t * testPosition, MaskedTextResultHint__Enum * resultHint, MethodInfo * method)); DO_APP_FUNC(0x02717480, String *, MaskedTextProvider_ToDisplayString, (MaskedTextProvider * __this, MethodInfo * method)); DO_APP_FUNC(0x02717650, String *, MaskedTextProvider_ToString, (MaskedTextProvider * __this, MethodInfo * method)); DO_APP_FUNC(0x027176C0, String *, MaskedTextProvider_ToString_1, (MaskedTextProvider * __this, bool ignorePasswordChar, MethodInfo * method)); @@ -35466,24 +40616,28 @@ DO_APP_FUNC(0x027177B0, String *, MaskedTextProvider_ToString_3, (MaskedTextProv DO_APP_FUNC(0x02717830, String *, MaskedTextProvider_ToString_4, (MaskedTextProvider * __this, bool includePrompt, bool includeLiterals, MethodInfo * method)); DO_APP_FUNC(0x02717870, String *, MaskedTextProvider_ToString_5, (MaskedTextProvider * __this, bool includePrompt, bool includeLiterals, int32_t startPosition, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x027178A0, String *, MaskedTextProvider_ToString_6, (MaskedTextProvider * __this, bool ignorePasswordChar, bool includePrompt, bool includeLiterals, int32_t startPosition, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x02717BD0, bool, MaskedTextProvider_VerifyChar, (MaskedTextProvider * __this, uint16_t input, int32_t position, MaskedTextResultHint__Enum hint, MethodInfo * method)); +DO_APP_FUNC(0x02717BD0, bool, MaskedTextProvider_VerifyChar, (MaskedTextProvider * __this, uint16_t input, int32_t position, MaskedTextResultHint__Enum * hint, MethodInfo * method)); DO_APP_FUNC(0x02717C20, bool, MaskedTextProvider_VerifyEscapeChar, (MaskedTextProvider * __this, uint16_t input, int32_t position, MethodInfo * method)); DO_APP_FUNC(0x02717C60, bool, MaskedTextProvider_VerifyString, (MaskedTextProvider * __this, String * input, MethodInfo * method)); -DO_APP_FUNC(0x02717CA0, bool, MaskedTextProvider_VerifyString_1, (MaskedTextProvider * __this, String * input, int32_t testPosition, MaskedTextResultHint__Enum resultHint, MethodInfo * method)); +DO_APP_FUNC(0x02717CA0, bool, MaskedTextProvider_VerifyString_1, (MaskedTextProvider * __this, String * input, int32_t * testPosition, MaskedTextResultHint__Enum * resultHint, MethodInfo * method)); DO_APP_FUNC(0x02717CE0, void, MaskedTextProvider__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02717ED0, void, MaskedTextProvider_CharDescriptor__ctor, (MaskedTextProvider_CharDescriptor * __this, int32_t maskPos, MaskedTextProvider_CharType__Enum charType, MethodInfo * method)); DO_APP_FUNC(0x02717EE0, String *, MaskedTextProvider_CharDescriptor_ToString, (MaskedTextProvider_CharDescriptor * __this, MethodInfo * method)); DO_APP_FUNC(0x027181D0, Object *, MultilineStringConverter_ConvertTo, (MultilineStringConverter * __this, ITypeDescriptorContext * context, CultureInfo * culture, Object * value, Type * destinationType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD6E8, MultilineStringConverter_ConvertTo__MethodInfo); DO_APP_FUNC(0x003CB690, PropertyDescriptorCollection *, MultilineStringConverter_GetProperties, (MultilineStringConverter * __this, ITypeDescriptorContext * context, Object * value, Attribute__Array * attributes, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, MultilineStringConverter_GetPropertiesSupported, (MultilineStringConverter * __this, ITypeDescriptorContext * context, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, MultilineStringConverter__ctor, (MultilineStringConverter * __this, MethodInfo * method)); DO_APP_FUNC(0x02718340, void, NestedContainer__ctor, (NestedContainer * __this, IComponent * owner, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD6F8, NestedContainer__ctor__MethodInfo); DO_APP_FUNC(0x003C7390, IComponent *, NestedContainer_get_Owner, (NestedContainer * __this, MethodInfo * method)); DO_APP_FUNC(0x02718540, String *, NestedContainer_get_OwnerName, (NestedContainer * __this, MethodInfo * method)); DO_APP_FUNC(0x02718630, ISite *, NestedContainer_CreateSite, (NestedContainer * __this, IComponent * component, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD6B8, NestedContainer_CreateSite__MethodInfo); DO_APP_FUNC(0x02718800, void, NestedContainer_Dispose, (NestedContainer * __this, bool disposing, MethodInfo * method)); DO_APP_FUNC(0x027188D0, Object *, NestedContainer_GetService, (NestedContainer * __this, Type * service, MethodInfo * method)); DO_APP_FUNC(0x027189C0, void, NestedContainer_OnOwnerDisposed, (NestedContainer * __this, Object * sender, EventArgs * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD710, NestedContainer_OnOwnerDisposed__MethodInfo); DO_APP_FUNC(0x02718A30, void, NestedContainer_Site__ctor, (NestedContainer_Site * __this, IComponent * component, NestedContainer * container, String * name, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, IComponent *, NestedContainer_Site_get_Component, (NestedContainer_Site * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, IContainer *, NestedContainer_Site_get_Container, (NestedContainer_Site * __this, MethodInfo * method)); @@ -35493,10 +40647,12 @@ DO_APP_FUNC(0x02718D20, String *, NestedContainer_Site_get_FullName, (NestedCont DO_APP_FUNC(0x003BB3C0, String *, NestedContainer_Site_get_Name, (NestedContainer_Site * __this, MethodInfo * method)); DO_APP_FUNC(0x02718E40, void, NestedContainer_Site_set_Name, (NestedContainer_Site * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x02718F70, void, NullableConverter__ctor, (NullableConverter * __this, Type * type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD5E0, NullableConverter__ctor__MethodInfo); DO_APP_FUNC(0x02719170, bool, NullableConverter_CanConvertFrom, (NullableConverter * __this, ITypeDescriptorContext * context, Type * sourceType, MethodInfo * method)); DO_APP_FUNC(0x02719230, Object *, NullableConverter_ConvertFrom, (NullableConverter * __this, ITypeDescriptorContext * context, CultureInfo * culture, Object * value, MethodInfo * method)); DO_APP_FUNC(0x02719390, bool, NullableConverter_CanConvertTo, (NullableConverter * __this, ITypeDescriptorContext * context, Type * destinationType, MethodInfo * method)); DO_APP_FUNC(0x02719450, Object *, NullableConverter_ConvertTo, (NullableConverter * __this, ITypeDescriptorContext * context, CultureInfo * culture, Object * value, Type * destinationType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD5A8, NullableConverter_ConvertTo__MethodInfo); DO_APP_FUNC(0x02719630, Object *, NullableConverter_CreateInstance, (NullableConverter * __this, ITypeDescriptorContext * context, IDictionary * propertyValues, MethodInfo * method)); DO_APP_FUNC(0x02719660, bool, NullableConverter_GetCreateInstanceSupported, (NullableConverter * __this, ITypeDescriptorContext * context, MethodInfo * method)); DO_APP_FUNC(0x02719690, PropertyDescriptorCollection *, NullableConverter_GetProperties, (NullableConverter * __this, ITypeDescriptorContext * context, Object * value, Attribute__Array * attributes, MethodInfo * method)); @@ -35522,6 +40678,7 @@ DO_APP_FUNC(0x02719CF0, TypeConverter *, PropertyDescriptor_get_Converter, (Prop DO_APP_FUNC(0x0271A000, bool, PropertyDescriptor_get_IsLocalizable, (PropertyDescriptor * __this, MethodInfo * method)); DO_APP_FUNC(0x0271A110, DesignerSerializationVisibility__Enum, PropertyDescriptor_get_SerializationVisibility, (PropertyDescriptor * __this, MethodInfo * method)); DO_APP_FUNC(0x0271A210, void, PropertyDescriptor_AddValueChanged, (PropertyDescriptor * __this, Object * component, EventHandler * handler, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD4F8, PropertyDescriptor_AddValueChanged__MethodInfo); DO_APP_FUNC(0x0271A520, bool, PropertyDescriptor_Equals, (PropertyDescriptor * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x0271A6D0, Object *, PropertyDescriptor_CreateInstance, (PropertyDescriptor * __this, Type * type, MethodInfo * method)); DO_APP_FUNC(0x0271A9F0, void, PropertyDescriptor_FillAttributes, (PropertyDescriptor * __this, IList * attributeList, MethodInfo * method)); @@ -35533,8 +40690,10 @@ DO_APP_FUNC(0x0271AC10, Object *, PropertyDescriptor_GetEditor, (PropertyDescrip DO_APP_FUNC(0x0271B100, int32_t, PropertyDescriptor_GetHashCode, (PropertyDescriptor * __this, MethodInfo * method)); DO_APP_FUNC(0x0271B170, Object *, PropertyDescriptor_GetInvocationTarget, (PropertyDescriptor * __this, Type * type, Object * instance, MethodInfo * method)); DO_APP_FUNC(0x0271B300, Type *, PropertyDescriptor_GetTypeFromName, (PropertyDescriptor * __this, String * typeName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD560, PropertyDescriptor_GetTypeFromName__MethodInfo); DO_APP_FUNC(0x0271B560, void, PropertyDescriptor_OnValueChanged, (PropertyDescriptor * __this, Object * component, EventArgs * e, MethodInfo * method)); DO_APP_FUNC(0x0271B610, void, PropertyDescriptor_RemoveValueChanged, (PropertyDescriptor * __this, Object * component, EventHandler * handler, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD4A0, PropertyDescriptor_RemoveValueChanged__MethodInfo); DO_APP_FUNC(0x0271B7E0, EventHandler *, PropertyDescriptor_GetValueChangedHandler, (PropertyDescriptor * __this, Object * component, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, PropertyDescriptor_get_SupportsChangeEvents, (PropertyDescriptor * __this, MethodInfo * method)); DO_APP_FUNC(0x0271B870, void, PropertyDescriptorCollection__ctor, (PropertyDescriptorCollection * __this, PropertyDescriptor__Array * properties, MethodInfo * method)); @@ -35543,9 +40702,12 @@ DO_APP_FUNC(0x0271BA30, void, PropertyDescriptorCollection__ctor_2, (PropertyDes DO_APP_FUNC(0x003C7400, int32_t, PropertyDescriptorCollection_get_Count, (PropertyDescriptorCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7410, void, PropertyDescriptorCollection_set_Count, (PropertyDescriptorCollection * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x0271BC80, PropertyDescriptor *, PropertyDescriptorCollection_get_Item, (PropertyDescriptorCollection * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD490, PropertyDescriptorCollection_get_Item__MethodInfo); DO_APP_FUNC(0x0271BD10, PropertyDescriptor *, PropertyDescriptorCollection_get_Item_1, (PropertyDescriptorCollection * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x0271BD30, int32_t, PropertyDescriptorCollection_Add, (PropertyDescriptorCollection * __this, PropertyDescriptor * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD470, PropertyDescriptorCollection_Add__MethodInfo); DO_APP_FUNC(0x0271BE10, void, PropertyDescriptorCollection_Clear, (PropertyDescriptorCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD480, PropertyDescriptorCollection_Clear__MethodInfo); DO_APP_FUNC(0x0271BEC0, bool, PropertyDescriptorCollection_Contains, (PropertyDescriptorCollection * __this, PropertyDescriptor * value, MethodInfo * method)); DO_APP_FUNC(0x0271BF20, void, PropertyDescriptorCollection_CopyTo, (PropertyDescriptorCollection * __this, Array * array, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x0271BF70, void, PropertyDescriptorCollection_EnsurePropsOwned, (PropertyDescriptorCollection * __this, MethodInfo * method)); @@ -35553,8 +40715,11 @@ DO_APP_FUNC(0x0271C070, void, PropertyDescriptorCollection_EnsureSize, (Property DO_APP_FUNC(0x0271C230, PropertyDescriptor *, PropertyDescriptorCollection_Find, (PropertyDescriptorCollection * __this, String * name, bool ignoreCase, MethodInfo * method)); DO_APP_FUNC(0x0271C8B0, int32_t, PropertyDescriptorCollection_IndexOf, (PropertyDescriptorCollection * __this, PropertyDescriptor * value, MethodInfo * method)); DO_APP_FUNC(0x0271C910, void, PropertyDescriptorCollection_Insert, (PropertyDescriptorCollection * __this, int32_t index, PropertyDescriptor * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD4F0, PropertyDescriptorCollection_Insert__MethodInfo); DO_APP_FUNC(0x0271CA10, void, PropertyDescriptorCollection_Remove, (PropertyDescriptorCollection * __this, PropertyDescriptor * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD4D8, PropertyDescriptorCollection_Remove__MethodInfo); DO_APP_FUNC(0x0271CAD0, void, PropertyDescriptorCollection_RemoveAt, (PropertyDescriptorCollection * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD4E0, PropertyDescriptorCollection_RemoveAt__MethodInfo); DO_APP_FUNC(0x0271CB80, PropertyDescriptorCollection *, PropertyDescriptorCollection_Sort, (PropertyDescriptorCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x0271CC30, PropertyDescriptorCollection *, PropertyDescriptorCollection_Sort_1, (PropertyDescriptorCollection * __this, String__Array * names, MethodInfo * method)); DO_APP_FUNC(0x0271CCE0, PropertyDescriptorCollection *, PropertyDescriptorCollection_Sort_2, (PropertyDescriptorCollection * __this, String__Array * names, IComparer * comparer, MethodInfo * method)); @@ -35570,12 +40735,14 @@ DO_APP_FUNC(0x0271D430, void, PropertyDescriptorCollection_System_Collections_ID DO_APP_FUNC(0x0271D440, IEnumerator *, PropertyDescriptorCollection_System_Collections_IEnumerable_GetEnumerator, (PropertyDescriptorCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x0271D460, void, PropertyDescriptorCollection_System_Collections_IList_RemoveAt, (PropertyDescriptorCollection * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x0271D470, void, PropertyDescriptorCollection_System_Collections_IDictionary_Add, (PropertyDescriptorCollection * __this, Object * key, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD420, PropertyDescriptorCollection_System_Collections_IDictionary_Add__MethodInfo); DO_APP_FUNC(0x0271D540, bool, PropertyDescriptorCollection_System_Collections_IDictionary_Contains, (PropertyDescriptorCollection * __this, Object * key, MethodInfo * method)); DO_APP_FUNC(0x0271D5E0, IDictionaryEnumerator *, PropertyDescriptorCollection_System_Collections_IDictionary_GetEnumerator, (PropertyDescriptorCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x0086E140, bool, PropertyDescriptorCollection_System_Collections_IDictionary_get_IsFixedSize, (PropertyDescriptorCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x0086E140, bool, PropertyDescriptorCollection_System_Collections_IDictionary_get_IsReadOnly, (PropertyDescriptorCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x0271D680, Object *, PropertyDescriptorCollection_System_Collections_IDictionary_get_Item, (PropertyDescriptorCollection * __this, Object * key, MethodInfo * method)); DO_APP_FUNC(0x0271D720, void, PropertyDescriptorCollection_System_Collections_IDictionary_set_Item, (PropertyDescriptorCollection * __this, Object * key, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD468, PropertyDescriptorCollection_System_Collections_IDictionary_set_Item__MethodInfo); DO_APP_FUNC(0x0271DBC0, ICollection *, PropertyDescriptorCollection_System_Collections_IDictionary_get_Keys, (PropertyDescriptorCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x0271DD20, ICollection *, PropertyDescriptorCollection_System_Collections_IDictionary_get_Values, (PropertyDescriptorCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x0271DE00, void, PropertyDescriptorCollection_System_Collections_IDictionary_Remove, (PropertyDescriptorCollection * __this, Object * key, MethodInfo * method)); @@ -35588,6 +40755,7 @@ DO_APP_FUNC(0x0086E140, bool, PropertyDescriptorCollection_System_Collections_IL DO_APP_FUNC(0x0271E240, void, PropertyDescriptorCollection_System_Collections_IList_Remove, (PropertyDescriptorCollection * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x0271E350, Object *, PropertyDescriptorCollection_System_Collections_IList_get_Item, (PropertyDescriptorCollection * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x0271E370, void, PropertyDescriptorCollection_System_Collections_IList_set_Item, (PropertyDescriptorCollection * __this, int32_t index, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD380, PropertyDescriptorCollection_System_Collections_IList_set_Item__MethodInfo); DO_APP_FUNC(0x0271E5B0, void, PropertyDescriptorCollection__cctor, (MethodInfo * method)); DO_APP_FUNC(0x019CA400, void, PropertyDescriptorCollection_PropertyDescriptorEnumerator__ctor, (PropertyDescriptorCollection_PropertyDescriptorEnumerator * __this, PropertyDescriptorCollection * owner, MethodInfo * method)); DO_APP_FUNC(0x0271E670, Object *, PropertyDescriptorCollection_PropertyDescriptorEnumerator_get_Current, (PropertyDescriptorCollection_PropertyDescriptorEnumerator * __this, MethodInfo * method)); @@ -35613,6 +40781,7 @@ DO_APP_FUNC(0x003BCBE0, void, ReferenceConverter__ctor, (ReferenceConverter * __ DO_APP_FUNC(0x0271ED50, bool, ReferenceConverter_CanConvertFrom, (ReferenceConverter * __this, ITypeDescriptorContext * context, Type * sourceType, MethodInfo * method)); DO_APP_FUNC(0x0271EE50, Object *, ReferenceConverter_ConvertFrom, (ReferenceConverter * __this, ITypeDescriptorContext * context, CultureInfo * culture, Object * value, MethodInfo * method)); DO_APP_FUNC(0x0271F110, Object *, ReferenceConverter_ConvertTo, (ReferenceConverter * __this, ITypeDescriptorContext * context, CultureInfo * culture, Object * value, Type * destinationType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD300, ReferenceConverter_ConvertTo__MethodInfo); DO_APP_FUNC(0x0271F450, TypeConverter_StandardValuesCollection *, ReferenceConverter_GetStandardValues, (ReferenceConverter * __this, ITypeDescriptorContext * context, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, ReferenceConverter_GetStandardValuesExclusive, (ReferenceConverter * __this, ITypeDescriptorContext * context, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, ReferenceConverter_GetStandardValuesSupported, (ReferenceConverter * __this, ITypeDescriptorContext * context, MethodInfo * method)); @@ -35621,17 +40790,22 @@ DO_APP_FUNC(0x0271F9E0, void, ReferenceConverter__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, ReferenceConverter_ReferenceComparer__ctor, (ReferenceConverter_ReferenceComparer * __this, ReferenceConverter * converter, MethodInfo * method)); DO_APP_FUNC(0x0271FA90, int32_t, ReferenceConverter_ReferenceComparer_Compare, (ReferenceConverter_ReferenceComparer * __this, Object * item1, Object * item2, MethodInfo * method)); DO_APP_FUNC(0x0271FC10, void, ReflectEventDescriptor__ctor, (ReflectEventDescriptor * __this, Type * componentClass, String * name, Type * type, Attribute__Array * attributes, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD2D8, ReflectEventDescriptor__ctor__MethodInfo); DO_APP_FUNC(0x0271FE20, void, ReflectEventDescriptor__ctor_1, (ReflectEventDescriptor * __this, Type * componentClass, EventInfo_1 * eventInfo, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD360, ReflectEventDescriptor__ctor_1__MethodInfo); DO_APP_FUNC(0x02720010, void, ReflectEventDescriptor__ctor_2, (ReflectEventDescriptor * __this, Type * componentType, EventDescriptor * oldReflectEventDescriptor, Attribute__Array * attributes, MethodInfo * method)); DO_APP_FUNC(0x003C91C0, Type *, ReflectEventDescriptor_get_ComponentType, (ReflectEventDescriptor * __this, MethodInfo * method)); DO_APP_FUNC(0x02720210, Type *, ReflectEventDescriptor_get_EventType, (ReflectEventDescriptor * __this, MethodInfo * method)); DO_APP_FUNC(0x02720230, bool, ReflectEventDescriptor_get_IsMulticast, (ReflectEventDescriptor * __this, MethodInfo * method)); DO_APP_FUNC(0x027202E0, void, ReflectEventDescriptor_AddEventHandler, (ReflectEventDescriptor * __this, Object * component, Delegate * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD350, ReflectEventDescriptor_AddEventHandler__MethodInfo); DO_APP_FUNC(0x02720770, void, ReflectEventDescriptor_FillAttributes, (ReflectEventDescriptor * __this, IList * attributes, MethodInfo * method)); DO_APP_FUNC(0x027207E0, void, ReflectEventDescriptor_FillEventInfoAttribute, (ReflectEventDescriptor * __this, EventInfo_1 * realEventInfo, IList * attributes, MethodInfo * method)); DO_APP_FUNC(0x02720B10, void, ReflectEventDescriptor_FillMethods, (ReflectEventDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD220, ReflectEventDescriptor_FillMethods__MethodInfo); DO_APP_FUNC(0x027210C0, void, ReflectEventDescriptor_FillSingleMethodAttribute, (ReflectEventDescriptor * __this, MethodInfo_1 * realMethodInfo, IList * attributes, MethodInfo * method)); DO_APP_FUNC(0x02721500, void, ReflectEventDescriptor_RemoveEventHandler, (ReflectEventDescriptor * __this, Object * component, Delegate * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD238, ReflectEventDescriptor_RemoveEventHandler__MethodInfo); DO_APP_FUNC(0x027218D0, void, RefreshEventArgs__ctor, (RefreshEventArgs * __this, Object * componentChanged, MethodInfo * method)); DO_APP_FUNC(0x027219F0, void, RefreshEventArgs__ctor_1, (RefreshEventArgs * __this, Type * typeChanged, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, Object *, RefreshEventArgs_get_ComponentChanged, (RefreshEventArgs * __this, MethodInfo * method)); @@ -35671,7 +40845,9 @@ DO_APP_FUNC(0x02722950, bool, SyntaxCheck_CheckRootedPath, (String * value, Meth DO_APP_FUNC(0x02722A20, bool, TimeSpanConverter_CanConvertFrom, (TimeSpanConverter * __this, ITypeDescriptorContext * context, Type * sourceType, MethodInfo * method)); DO_APP_FUNC(0x02722B00, bool, TimeSpanConverter_CanConvertTo, (TimeSpanConverter * __this, ITypeDescriptorContext * context, Type * destinationType, MethodInfo * method)); DO_APP_FUNC(0x02722BE0, Object *, TimeSpanConverter_ConvertFrom, (TimeSpanConverter * __this, ITypeDescriptorContext * context, CultureInfo * culture, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD0F0, TimeSpanConverter_ConvertFrom__MethodInfo); DO_APP_FUNC(0x02722E30, Object *, TimeSpanConverter_ConvertTo, (TimeSpanConverter * __this, ITypeDescriptorContext * context, CultureInfo * culture, Object * value, Type * destinationType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD110, TimeSpanConverter_ConvertTo__MethodInfo); DO_APP_FUNC(0x003AE050, void, TimeSpanConverter__ctor, (TimeSpanConverter * __this, MethodInfo * method)); DO_APP_FUNC(0x02723190, void, ToolboxItemFilterAttribute__ctor, (ToolboxItemFilterAttribute * __this, String * filterString, MethodInfo * method)); DO_APP_FUNC(0x02723240, void, ToolboxItemFilterAttribute__ctor_1, (ToolboxItemFilterAttribute * __this, String * filterString, ToolboxItemFilterType__Enum filterType, MethodInfo * method)); @@ -35692,27 +40868,36 @@ DO_APP_FUNC(0x027238A0, void, TypeConverterAttribute__cctor, (MethodInfo * metho DO_APP_FUNC(0x003AE050, void, TypeDescriptionProvider__ctor, (TypeDescriptionProvider * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, TypeDescriptionProvider__ctor_1, (TypeDescriptionProvider * __this, TypeDescriptionProvider * parent, MethodInfo * method)); DO_APP_FUNC(0x027239E0, Object *, TypeDescriptionProvider_CreateInstance, (TypeDescriptionProvider * __this, IServiceProvider * provider, Type * objectType, Type__Array * argTypes, Object__Array * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD130, TypeDescriptionProvider_CreateInstance__MethodInfo); DO_APP_FUNC(0x02723B10, IDictionary *, TypeDescriptionProvider_GetCache, (TypeDescriptionProvider * __this, Object * instance, MethodInfo * method)); DO_APP_FUNC(0x02723B30, ICustomTypeDescriptor *, TypeDescriptionProvider_GetExtendedTypeDescriptor, (TypeDescriptionProvider * __this, Object * instance, MethodInfo * method)); DO_APP_FUNC(0x02723C10, IExtenderProvider__Array *, TypeDescriptionProvider_GetExtenderProviders, (TypeDescriptionProvider * __this, Object * instance, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD060, TypeDescriptionProvider_GetExtenderProviders__MethodInfo); DO_APP_FUNC(0x02723CF0, String *, TypeDescriptionProvider_GetFullComponentName, (TypeDescriptionProvider * __this, Object * component, MethodInfo * method)); DO_APP_FUNC(0x01919D00, Type *, TypeDescriptionProvider_GetReflectionType, (TypeDescriptionProvider * __this, Type * objectType, MethodInfo * method)); DO_APP_FUNC(0x02723E00, Type *, TypeDescriptionProvider_GetReflectionType_1, (TypeDescriptionProvider * __this, Object * instance, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD080, TypeDescriptionProvider_GetReflectionType_1__MethodInfo); DO_APP_FUNC(0x02723EA0, Type *, TypeDescriptionProvider_GetReflectionType_2, (TypeDescriptionProvider * __this, Type * objectType, Object * instance, MethodInfo * method)); DO_APP_FUNC(0x02723ED0, Type *, TypeDescriptionProvider_GetRuntimeType, (TypeDescriptionProvider * __this, Type * reflectionType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD040, TypeDescriptionProvider_GetRuntimeType__MethodInfo); DO_APP_FUNC(0x027240C0, ICustomTypeDescriptor *, TypeDescriptionProvider_GetTypeDescriptor, (TypeDescriptionProvider * __this, Type * objectType, MethodInfo * method)); DO_APP_FUNC(0x027240E0, ICustomTypeDescriptor *, TypeDescriptionProvider_GetTypeDescriptor_1, (TypeDescriptionProvider * __this, Object * instance, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD020, TypeDescriptionProvider_GetTypeDescriptor_1__MethodInfo); DO_APP_FUNC(0x02724180, ICustomTypeDescriptor *, TypeDescriptionProvider_GetTypeDescriptor_2, (TypeDescriptionProvider * __this, Type * objectType, Object * instance, MethodInfo * method)); DO_APP_FUNC(0x02724280, bool, TypeDescriptionProvider_IsSupportedType, (TypeDescriptionProvider * __this, Type * type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD058, TypeDescriptionProvider_IsSupportedType__MethodInfo); DO_APP_FUNC(0x003AE050, void, TypeDescriptionProvider_EmptyCustomTypeDescriptor__ctor, (TypeDescriptionProvider_EmptyCustomTypeDescriptor * __this, MethodInfo * method)); DO_APP_FUNC(0x02724360, void, TypeDescriptionProviderAttribute__ctor, (TypeDescriptionProviderAttribute * __this, String * typeName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD0A8, TypeDescriptionProviderAttribute__ctor__MethodInfo); DO_APP_FUNC(0x02724420, void, TypeDescriptionProviderAttribute__ctor_1, (TypeDescriptionProviderAttribute * __this, Type * type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD0A0, TypeDescriptionProviderAttribute__ctor_1__MethodInfo); DO_APP_FUNC(0x003BB3C0, String *, TypeDescriptionProviderAttribute_get_TypeName, (TypeDescriptionProviderAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, TypeListConverter__ctor, (TypeListConverter * __this, Type__Array * types, MethodInfo * method)); DO_APP_FUNC(0x02724530, bool, TypeListConverter_CanConvertFrom, (TypeListConverter * __this, ITypeDescriptorContext * context, Type * sourceType, MethodInfo * method)); DO_APP_FUNC(0x02724610, bool, TypeListConverter_CanConvertTo, (TypeListConverter * __this, ITypeDescriptorContext * context, Type * destinationType, MethodInfo * method)); DO_APP_FUNC(0x027246F0, Object *, TypeListConverter_ConvertFrom, (TypeListConverter * __this, ITypeDescriptorContext * context, CultureInfo * culture, Object * value, MethodInfo * method)); DO_APP_FUNC(0x02724840, Object *, TypeListConverter_ConvertTo, (TypeListConverter * __this, ITypeDescriptorContext * context, CultureInfo * culture, Object * value, Type * destinationType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD090, TypeListConverter_ConvertTo__MethodInfo); DO_APP_FUNC(0x027249E0, TypeConverter_StandardValuesCollection *, TypeListConverter_GetStandardValues, (TypeListConverter * __this, ITypeDescriptorContext * context, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, TypeListConverter_GetStandardValuesExclusive, (TypeListConverter * __this, ITypeDescriptorContext * context, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, TypeListConverter_GetStandardValuesSupported, (TypeListConverter * __this, ITypeDescriptorContext * context, MethodInfo * method)); @@ -35762,12 +40947,14 @@ DO_APP_FUNC(0x026F71F0, void, ArraySubsetEnumerator__ctor, (ArraySubsetEnumerato DO_APP_FUNC(0x026F7260, bool, ArraySubsetEnumerator_MoveNext, (ArraySubsetEnumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x025CA180, void, ArraySubsetEnumerator_Reset, (ArraySubsetEnumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x02725E20, Object *, ArraySubsetEnumerator_get_Current, (ArraySubsetEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCFF0, ArraySubsetEnumerator_get_Current__MethodInfo); DO_APP_FUNC(0x02725EA0, void, AsyncCompletedEventArgs__ctor, (AsyncCompletedEventArgs * __this, MethodInfo * method)); DO_APP_FUNC(0x02725EF0, void, AsyncCompletedEventArgs__ctor_1, (AsyncCompletedEventArgs * __this, Exception * error, bool cancelled, Object * userState, MethodInfo * method)); DO_APP_FUNC(0x003BCC40, bool, AsyncCompletedEventArgs_get_Cancelled, (AsyncCompletedEventArgs * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, Exception *, AsyncCompletedEventArgs_get_Error, (AsyncCompletedEventArgs * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, Object *, AsyncCompletedEventArgs_get_UserState, (AsyncCompletedEventArgs * __this, MethodInfo * method)); DO_APP_FUNC(0x02726000, void, AsyncCompletedEventArgs_RaiseExceptionIfNecessary, (AsyncCompletedEventArgs * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCFE8, AsyncCompletedEventArgs_RaiseExceptionIfNecessary__MethodInfo); DO_APP_FUNC(0x011139C0, void, AsyncCompletedEventHandler__ctor, (AsyncCompletedEventHandler * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EC2D0, void, AsyncCompletedEventHandler_Invoke, (AsyncCompletedEventHandler * __this, Object * sender, AsyncCompletedEventArgs * e, MethodInfo * method)); DO_APP_FUNC(0x0042F0F0, IAsyncResult *, AsyncCompletedEventHandler_BeginInvoke, (AsyncCompletedEventHandler * __this, Object * sender, AsyncCompletedEventArgs * e, AsyncCallback * callback, Object * object, MethodInfo * method)); @@ -35794,6 +40981,7 @@ DO_APP_FUNC(0x02727710, int32_t, CategoryAttribute_GetHashCode, (CategoryAttribu DO_APP_FUNC(0x02727750, String *, CategoryAttribute_GetLocalizedString, (CategoryAttribute * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x02727EC0, bool, CategoryAttribute_IsDefaultAttribute, (CategoryAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x027280A0, Object *, CollectionConverter_ConvertTo, (CollectionConverter * __this, ITypeDescriptorContext * context, CultureInfo * culture, Object * value, Type * destinationType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCF60, CollectionConverter_ConvertTo__MethodInfo); DO_APP_FUNC(0x003CB690, PropertyDescriptorCollection *, CollectionConverter_GetProperties, (CollectionConverter * __this, ITypeDescriptorContext * context, Object * value, Attribute__Array * attributes, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, CollectionConverter_GetPropertiesSupported, (CollectionConverter * __this, ITypeDescriptorContext * context, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CollectionConverter__ctor, (CollectionConverter * __this, MethodInfo * method)); @@ -35830,6 +41018,7 @@ DO_APP_FUNC(0x02729F30, void, Container_Remove, (Container * __this, IComponent DO_APP_FUNC(0x02729F40, void, Container_Remove_1, (Container * __this, IComponent * component, bool preserveSite, MethodInfo * method)); DO_APP_FUNC(0x0272A260, void, Container_RemoveWithoutUnsiting, (Container * __this, IComponent * component, MethodInfo * method)); DO_APP_FUNC(0x0272A270, void, Container_ValidateName, (Container * __this, IComponent * component, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCEE0, Container_ValidateName__MethodInfo); DO_APP_FUNC(0x0272A660, void, Container__ctor, (Container * __this, MethodInfo * method)); DO_APP_FUNC(0x00F8C320, void, Container_Site__ctor, (Container_Site * __this, IComponent * component, Container * container, String * name, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, IComponent *, Container_Site_get_Component, (Container_Site * __this, MethodInfo * method)); @@ -35841,6 +41030,7 @@ DO_APP_FUNC(0x0272A7B0, void, Container_Site_set_Name, (Container_Site * __this, DO_APP_FUNC(0x0272A880, bool, DateTimeOffsetConverter_CanConvertFrom, (DateTimeOffsetConverter * __this, ITypeDescriptorContext * context, Type * sourceType, MethodInfo * method)); DO_APP_FUNC(0x0272A960, bool, DateTimeOffsetConverter_CanConvertTo, (DateTimeOffsetConverter * __this, ITypeDescriptorContext * context, Type * destinationType, MethodInfo * method)); DO_APP_FUNC(0x0272AA40, Object *, DateTimeOffsetConverter_ConvertFrom, (DateTimeOffsetConverter * __this, ITypeDescriptorContext * context, CultureInfo * culture, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCEC8, DateTimeOffsetConverter_ConvertFrom__MethodInfo); DO_APP_FUNC(0x0272AE70, Object *, DateTimeOffsetConverter_ConvertTo, (DateTimeOffsetConverter * __this, ITypeDescriptorContext * context, CultureInfo * culture, Object * value, Type * destinationType, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, DateTimeOffsetConverter__ctor, (DateTimeOffsetConverter * __this, MethodInfo * method)); DO_APP_FUNC(0x0272BE10, void, DesignerAttribute__ctor, (DesignerAttribute * __this, String * designerTypeName, MethodInfo * method)); @@ -35869,7 +41059,9 @@ DO_APP_FUNC(0x0272C980, bool, EnumConverter_CanConvertFrom, (EnumConverter * __t DO_APP_FUNC(0x0272CAA0, bool, EnumConverter_CanConvertTo, (EnumConverter * __this, ITypeDescriptorContext * context, Type * destinationType, MethodInfo * method)); DO_APP_FUNC(0x0272CBC0, IComparer *, EnumConverter_get_Comparer, (EnumConverter * __this, MethodInfo * method)); DO_APP_FUNC(0x0272CC20, Object *, EnumConverter_ConvertFrom, (EnumConverter * __this, ITypeDescriptorContext * context, CultureInfo * culture, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCE70, EnumConverter_ConvertFrom__MethodInfo); DO_APP_FUNC(0x0272D100, Object *, EnumConverter_ConvertTo, (EnumConverter * __this, ITypeDescriptorContext * context, CultureInfo * culture, Object * value, Type * destinationType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCEB8, EnumConverter_ConvertTo__MethodInfo); DO_APP_FUNC(0x0272E120, TypeConverter_StandardValuesCollection *, EnumConverter_GetStandardValues, (EnumConverter * __this, ITypeDescriptorContext * context, MethodInfo * method)); DO_APP_FUNC(0x0272E550, bool, EnumConverter_GetStandardValuesExclusive, (EnumConverter * __this, ITypeDescriptorContext * context, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, EnumConverter_GetStandardValuesSupported, (EnumConverter * __this, ITypeDescriptorContext * context, MethodInfo * method)); @@ -35882,8 +41074,10 @@ DO_APP_FUNC(0x0272EB30, void, LicenseException__ctor_3, (LicenseException * __th DO_APP_FUNC(0x0272EC30, void, LicenseException__ctor_4, (LicenseException * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x00A4F060, Type *, LicenseException_get_LicensedType, (LicenseException * __this, MethodInfo * method)); DO_APP_FUNC(0x0272EED0, void, LicenseException_GetObjectData, (LicenseException * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFB18, LicenseException_GetObjectData__MethodInfo); DO_APP_FUNC(0x0272EFD0, void, MemberDescriptor__ctor, (MemberDescriptor * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x0272EFE0, void, MemberDescriptor__ctor_1, (MemberDescriptor * __this, String * name, Attribute__Array * attributes, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFB28, MemberDescriptor__ctor_1__MethodInfo); DO_APP_FUNC(0x0272F270, void, MemberDescriptor__ctor_2, (MemberDescriptor * __this, MemberDescriptor * descr, MethodInfo * method)); DO_APP_FUNC(0x0272F540, void, MemberDescriptor__ctor_3, (MemberDescriptor * __this, MemberDescriptor * oldMemberDescriptor, Attribute__Array * newAttributes, MethodInfo * method)); DO_APP_FUNC(0x0272FB00, Attribute__Array *, MemberDescriptor_get_AttributeArray, (MemberDescriptor * __this, MethodInfo * method)); @@ -35905,8 +41099,10 @@ DO_APP_FUNC(0x02731190, MethodInfo_1 *, MemberDescriptor_FindMethod, (Type * com DO_APP_FUNC(0x027311B0, MethodInfo_1 *, MemberDescriptor_FindMethod_1, (Type * componentClass, String * name, Type__Array * args, Type * returnType, bool publicOnly, MethodInfo * method)); DO_APP_FUNC(0x003CC980, int32_t, MemberDescriptor_GetHashCode, (MemberDescriptor * __this, MethodInfo * method)); DO_APP_FUNC(0x02731260, Object *, MemberDescriptor_GetInvocationTarget, (MemberDescriptor * __this, Type * type, Object * instance, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFAC0, MemberDescriptor_GetInvocationTarget__MethodInfo); DO_APP_FUNC(0x02731390, ISite *, MemberDescriptor_GetSite, (Object * component, MethodInfo * method)); DO_APP_FUNC(0x02731450, Object *, MemberDescriptor_GetInvokee, (Type * componentClass, Object * component, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFA48, MemberDescriptor_GetInvokee__MethodInfo); DO_APP_FUNC(0x02731580, void, ProgressChangedEventArgs__ctor, (ProgressChangedEventArgs * __this, int32_t progressPercentage, Object * userState, MethodInfo * method)); DO_APP_FUNC(0x003BCD50, int32_t, ProgressChangedEventArgs_get_ProgressPercentage, (ProgressChangedEventArgs * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, ProgressChangedEventArgs_get_UserState, (ProgressChangedEventArgs * __this, MethodInfo * method)); @@ -35915,9 +41111,11 @@ DO_APP_FUNC(0x003EC2D0, void, ProgressChangedEventHandler_Invoke, (ProgressChang DO_APP_FUNC(0x0042F0F0, IAsyncResult *, ProgressChangedEventHandler_BeginInvoke, (ProgressChangedEventHandler * __this, Object * sender, ProgressChangedEventArgs * e, AsyncCallback * callback, Object * object, MethodInfo * method)); DO_APP_FUNC(0x003BA270, void, ProgressChangedEventHandler_EndInvoke, (ProgressChangedEventHandler * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x02731640, void, ReflectPropertyDescriptor__ctor, (ReflectPropertyDescriptor * __this, Type * componentClass, String * name, Type * type, Attribute__Array * attributes, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFA40, ReflectPropertyDescriptor__ctor__MethodInfo); DO_APP_FUNC(0x02731920, void, ReflectPropertyDescriptor__ctor_1, (ReflectPropertyDescriptor * __this, Type * componentClass, String * name, Type * type, PropertyInfo_1 * propInfo, MethodInfo_1 * getMethod, MethodInfo_1 * setMethod, Attribute__Array * attrs, MethodInfo * method)); DO_APP_FUNC(0x02731B30, void, ReflectPropertyDescriptor__ctor_2, (ReflectPropertyDescriptor * __this, Type * componentClass, String * name, Type * type, Type * receiverType, MethodInfo_1 * getMethod, MethodInfo_1 * setMethod, Attribute__Array * attrs, MethodInfo * method)); DO_APP_FUNC(0x02731D00, void, ReflectPropertyDescriptor__ctor_3, (ReflectPropertyDescriptor * __this, Type * componentClass, PropertyDescriptor * oldReflectPropertyDescriptor, Attribute__Array * attributes, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFA68, ReflectPropertyDescriptor__ctor_3__MethodInfo); DO_APP_FUNC(0x027322B0, Object *, ReflectPropertyDescriptor_get_AmbientValue, (ReflectPropertyDescriptor * __this, MethodInfo * method)); DO_APP_FUNC(0x02732530, EventDescriptor *, ReflectPropertyDescriptor_get_ChangedEventValue, (ReflectPropertyDescriptor * __this, MethodInfo * method)); DO_APP_FUNC(0x02732750, EventDescriptor *, ReflectPropertyDescriptor_get_IPropChangedEventValue, (ReflectPropertyDescriptor * __this, MethodInfo * method)); @@ -35925,6 +41123,7 @@ DO_APP_FUNC(0x02732970, void, ReflectPropertyDescriptor_set_IPropChangedEventVal DO_APP_FUNC(0x00A4F060, Type *, ReflectPropertyDescriptor_get_ComponentType, (ReflectPropertyDescriptor * __this, MethodInfo * method)); DO_APP_FUNC(0x02732A30, Object *, ReflectPropertyDescriptor_get_DefaultValue, (ReflectPropertyDescriptor * __this, MethodInfo * method)); DO_APP_FUNC(0x02732DF0, MethodInfo_1 *, ReflectPropertyDescriptor_get_GetMethodValue, (ReflectPropertyDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFA08, ReflectPropertyDescriptor_get_GetMethodValue__MethodInfo); DO_APP_FUNC(0x02733380, bool, ReflectPropertyDescriptor_get_IsExtender, (ReflectPropertyDescriptor * __this, MethodInfo * method)); DO_APP_FUNC(0x027333E0, bool, ReflectPropertyDescriptor_get_IsReadOnly, (ReflectPropertyDescriptor * __this, MethodInfo * method)); DO_APP_FUNC(0x0049E0C0, Type *, ReflectPropertyDescriptor_get_PropertyType, (ReflectPropertyDescriptor * __this, MethodInfo * method)); @@ -35932,21 +41131,30 @@ DO_APP_FUNC(0x027334F0, MethodInfo_1 *, ReflectPropertyDescriptor_get_ResetMetho DO_APP_FUNC(0x02733770, MethodInfo_1 *, ReflectPropertyDescriptor_get_SetMethodValue, (ReflectPropertyDescriptor * __this, MethodInfo * method)); DO_APP_FUNC(0x02733EB0, MethodInfo_1 *, ReflectPropertyDescriptor_get_ShouldSerializeMethodValue, (ReflectPropertyDescriptor * __this, MethodInfo * method)); DO_APP_FUNC(0x02734130, void, ReflectPropertyDescriptor_AddValueChanged, (ReflectPropertyDescriptor * __this, Object * component, EventHandler * handler, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFA30, ReflectPropertyDescriptor_AddValueChanged__MethodInfo); DO_APP_FUNC(0x02734350, bool, ReflectPropertyDescriptor_ExtenderCanResetValue, (ReflectPropertyDescriptor * __this, IExtenderProvider * provider, Object * component, MethodInfo * method)); DO_APP_FUNC(0x009A2B70, Type *, ReflectPropertyDescriptor_ExtenderGetReceiverType, (ReflectPropertyDescriptor * __this, MethodInfo * method)); DO_APP_FUNC(0x027345B0, Type *, ReflectPropertyDescriptor_ExtenderGetType, (ReflectPropertyDescriptor * __this, IExtenderProvider * provider, MethodInfo * method)); DO_APP_FUNC(0x027345D0, Object *, ReflectPropertyDescriptor_ExtenderGetValue, (ReflectPropertyDescriptor * __this, IExtenderProvider * provider, Object * component, MethodInfo * method)); DO_APP_FUNC(0x02734750, void, ReflectPropertyDescriptor_ExtenderResetValue, (ReflectPropertyDescriptor * __this, IExtenderProvider * provider, Object * component, PropertyDescriptor * notifyDesc, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFA20, ReflectPropertyDescriptor_ExtenderResetValue__MethodInfo); DO_APP_FUNC(0x02734B30, void, ReflectPropertyDescriptor_ExtenderSetValue, (ReflectPropertyDescriptor * __this, IExtenderProvider * provider, Object * component, Object * value, PropertyDescriptor * notifyDesc, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFA18, ReflectPropertyDescriptor_ExtenderSetValue__MethodInfo); DO_APP_FUNC(0x02734E90, bool, ReflectPropertyDescriptor_ExtenderShouldSerializeValue, (ReflectPropertyDescriptor * __this, IExtenderProvider * provider, Object * component, MethodInfo * method)); DO_APP_FUNC(0x027352D0, bool, ReflectPropertyDescriptor_CanResetValue, (ReflectPropertyDescriptor * __this, Object * component, MethodInfo * method)); DO_APP_FUNC(0x027355A0, void, ReflectPropertyDescriptor_FillAttributes, (ReflectPropertyDescriptor * __this, IList * attributes, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDF990, ReflectPropertyDescriptor_FillAttributes__MethodInfo); DO_APP_FUNC(0x027360F0, Object *, ReflectPropertyDescriptor_GetValue, (ReflectPropertyDescriptor * __this, Object * component, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDF998, ReflectPropertyDescriptor_GetValue__MethodInfo); DO_APP_FUNC(0x02736410, void, ReflectPropertyDescriptor_OnINotifyPropertyChanged, (ReflectPropertyDescriptor * __this, Object * component, PropertyChangedEventArgs * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFA00, ReflectPropertyDescriptor_OnINotifyPropertyChanged__MethodInfo); DO_APP_FUNC(0x027365B0, void, ReflectPropertyDescriptor_OnValueChanged, (ReflectPropertyDescriptor * __this, Object * component, EventArgs * e, MethodInfo * method)); DO_APP_FUNC(0x027366C0, void, ReflectPropertyDescriptor_RemoveValueChanged, (ReflectPropertyDescriptor * __this, Object * component, EventHandler * handler, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDF980, ReflectPropertyDescriptor_RemoveValueChanged__MethodInfo); DO_APP_FUNC(0x027368D0, void, ReflectPropertyDescriptor_ResetValue, (ReflectPropertyDescriptor * __this, Object * component, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDF9D8, ReflectPropertyDescriptor_ResetValue__MethodInfo); DO_APP_FUNC(0x02736BC0, void, ReflectPropertyDescriptor_SetValue, (ReflectPropertyDescriptor * __this, Object * component, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDF9D0, ReflectPropertyDescriptor_SetValue__MethodInfo); DO_APP_FUNC(0x027370B0, bool, ReflectPropertyDescriptor_ShouldSerializeValue, (ReflectPropertyDescriptor * __this, Object * component, MethodInfo * method)); DO_APP_FUNC(0x02737400, bool, ReflectPropertyDescriptor_get_SupportsChangeEvents, (ReflectPropertyDescriptor * __this, MethodInfo * method)); DO_APP_FUNC(0x02737440, void, ReflectPropertyDescriptor__cctor, (MethodInfo * method)); @@ -35954,6 +41162,7 @@ DO_APP_FUNC(0x027378C0, Guid, ReflectTypeDescriptionProvider_get_ExtenderProvide DO_APP_FUNC(0x003AE050, void, ReflectTypeDescriptionProvider__ctor, (ReflectTypeDescriptionProvider * __this, MethodInfo * method)); DO_APP_FUNC(0x02737920, Hashtable *, ReflectTypeDescriptionProvider_get_IntrinsicTypeConverters, (MethodInfo * method)); DO_APP_FUNC(0x027384B0, void, ReflectTypeDescriptionProvider_AddEditorTable, (Type * editorBaseType, Hashtable * table, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDF920, ReflectTypeDescriptionProvider_AddEditorTable__MethodInfo); DO_APP_FUNC(0x02738870, Object *, ReflectTypeDescriptionProvider_CreateInstance, (ReflectTypeDescriptionProvider * __this, IServiceProvider * provider, Type * objectType, Type__Array * argTypes, Object__Array * args, MethodInfo * method)); DO_APP_FUNC(0x02738B10, Object *, ReflectTypeDescriptionProvider_CreateInstance_1, (Type * objectType, Type * callingType, MethodInfo * method)); DO_APP_FUNC(0x02738CD0, AttributeCollection *, ReflectTypeDescriptionProvider_GetAttributes, (ReflectTypeDescriptionProvider * __this, Type * type, MethodInfo * method)); @@ -35976,6 +41185,7 @@ DO_APP_FUNC(0x027399B0, Object *, ReflectTypeDescriptionProvider_GetExtendedEdit DO_APP_FUNC(0x02739A20, EventDescriptorCollection *, ReflectTypeDescriptionProvider_GetExtendedEvents, (ReflectTypeDescriptionProvider * __this, Object * instance, MethodInfo * method)); DO_APP_FUNC(0x02739A80, PropertyDescriptorCollection *, ReflectTypeDescriptionProvider_GetExtendedProperties, (ReflectTypeDescriptionProvider * __this, Object * instance, MethodInfo * method)); DO_APP_FUNC(0x02739F90, IExtenderProvider__Array *, ReflectTypeDescriptionProvider_GetExtenderProviders, (ReflectTypeDescriptionProvider * __this, Object * instance, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDF868, ReflectTypeDescriptionProvider_GetExtenderProviders__MethodInfo); DO_APP_FUNC(0x0273A280, IExtenderProvider__Array *, ReflectTypeDescriptionProvider_GetExtenders, (ICollection * components, Object * instance, IDictionary * cache, MethodInfo * method)); DO_APP_FUNC(0x0273AB10, Object *, ReflectTypeDescriptionProvider_GetExtendedPropertyOwner, (ReflectTypeDescriptionProvider * __this, Object * instance, PropertyDescriptor * pd, MethodInfo * method)); DO_APP_FUNC(0x003CB690, ICustomTypeDescriptor *, ReflectTypeDescriptionProvider_GetExtendedTypeDescriptor, (ReflectTypeDescriptionProvider * __this, Object * instance, MethodInfo * method)); @@ -35987,6 +41197,7 @@ DO_APP_FUNC(0x00420A60, Type *, ReflectTypeDescriptionProvider_GetReflectionType DO_APP_FUNC(0x0273B1F0, ReflectTypeDescriptionProvider_ReflectedTypeData *, ReflectTypeDescriptionProvider_GetTypeData, (ReflectTypeDescriptionProvider * __this, Type * type, bool createIfNeeded, MethodInfo * method)); DO_APP_FUNC(0x003CB690, ICustomTypeDescriptor *, ReflectTypeDescriptionProvider_GetTypeDescriptor, (ReflectTypeDescriptionProvider * __this, Type * objectType, Object * instance, MethodInfo * method)); DO_APP_FUNC(0x0273B610, Type *, ReflectTypeDescriptionProvider_GetTypeFromName, (String * typeName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDF858, ReflectTypeDescriptionProvider_GetTypeFromName__MethodInfo); DO_APP_FUNC(0x0273B700, bool, ReflectTypeDescriptionProvider_IsPopulated, (ReflectTypeDescriptionProvider * __this, Type * type, MethodInfo * method)); DO_APP_FUNC(0x0273B750, Attribute__Array *, ReflectTypeDescriptionProvider_ReflectGetAttributes, (Type * type, MethodInfo * method)); DO_APP_FUNC(0x0273BE00, Attribute__Array *, ReflectTypeDescriptionProvider_ReflectGetAttributes_1, (MemberInfo_1 * member, MethodInfo * method)); @@ -35995,6 +41206,7 @@ DO_APP_FUNC(0x0273CDE0, PropertyDescriptor__Array *, ReflectTypeDescriptionProvi DO_APP_FUNC(0x0273DD70, PropertyDescriptor__Array *, ReflectTypeDescriptionProvider_ReflectGetProperties, (Type * type, MethodInfo * method)); DO_APP_FUNC(0x0273E5D0, void, ReflectTypeDescriptionProvider_Refresh, (ReflectTypeDescriptionProvider * __this, Type * type, MethodInfo * method)); DO_APP_FUNC(0x0273E600, Object *, ReflectTypeDescriptionProvider_SearchIntrinsicTable, (Hashtable * table, Type * callingType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDF7C8, ReflectTypeDescriptionProvider_SearchIntrinsicTable__MethodInfo); DO_APP_FUNC(0x0273EE80, void, ReflectTypeDescriptionProvider__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, ReflectTypeDescriptionProvider_ReflectedTypeData__ctor, (ReflectTypeDescriptionProvider_ReflectedTypeData * __this, Type * type, MethodInfo * method)); DO_APP_FUNC(0x0273F490, bool, ReflectTypeDescriptionProvider_ReflectedTypeData_get_IsPopulated, (ReflectTypeDescriptionProvider_ReflectedTypeData * __this, MethodInfo * method)); @@ -36006,9 +41218,11 @@ DO_APP_FUNC(0x02740260, EventDescriptor *, ReflectTypeDescriptionProvider_Reflec DO_APP_FUNC(0x02740490, PropertyDescriptor *, ReflectTypeDescriptionProvider_ReflectedTypeData_GetDefaultProperty, (ReflectTypeDescriptionProvider_ReflectedTypeData * __this, Object * instance, MethodInfo * method)); DO_APP_FUNC(0x02740680, Object *, ReflectTypeDescriptionProvider_ReflectedTypeData_GetEditor, (ReflectTypeDescriptionProvider_ReflectedTypeData * __this, Object * instance, Type * editorBaseType, MethodInfo * method)); DO_APP_FUNC(0x02740E30, EditorAttribute *, ReflectTypeDescriptionProvider_ReflectedTypeData_GetEditorAttribute, (AttributeCollection * attributes, Type * editorBaseType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDF698, ReflectTypeDescriptionProvider_ReflectedTypeData_GetEditorAttribute__MethodInfo); DO_APP_FUNC(0x027410D0, EventDescriptorCollection *, ReflectTypeDescriptionProvider_ReflectedTypeData_GetEvents, (ReflectTypeDescriptionProvider_ReflectedTypeData * __this, MethodInfo * method)); DO_APP_FUNC(0x02741560, PropertyDescriptorCollection *, ReflectTypeDescriptionProvider_ReflectedTypeData_GetProperties, (ReflectTypeDescriptionProvider_ReflectedTypeData * __this, MethodInfo * method)); DO_APP_FUNC(0x02741920, Type *, ReflectTypeDescriptionProvider_ReflectedTypeData_GetTypeFromName, (ReflectTypeDescriptionProvider_ReflectedTypeData * __this, String * typeName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDF658, ReflectTypeDescriptionProvider_ReflectedTypeData_GetTypeFromName__MethodInfo); DO_APP_FUNC(0x02741AC0, void, ReflectTypeDescriptionProvider_ReflectedTypeData_Refresh, (ReflectTypeDescriptionProvider_ReflectedTypeData * __this, MethodInfo * method)); DO_APP_FUNC(0x02741CB0, void, RunWorkerCompletedEventArgs__ctor, (RunWorkerCompletedEventArgs * __this, Object * result, Exception * error, bool cancelled, MethodInfo * method)); DO_APP_FUNC(0x02591EA0, Object *, RunWorkerCompletedEventArgs_get_Result, (RunWorkerCompletedEventArgs * __this, MethodInfo * method)); @@ -36031,6 +41245,7 @@ DO_APP_FUNC(0x02742180, Object *, TypeConverter_ConvertFromString_1, (TypeConver DO_APP_FUNC(0x02742250, Object *, TypeConverter_ConvertFromString_2, (TypeConverter * __this, ITypeDescriptorContext * context, CultureInfo * culture, String * text, MethodInfo * method)); DO_APP_FUNC(0x02742270, Object *, TypeConverter_ConvertTo, (TypeConverter * __this, Object * value, Type * destinationType, MethodInfo * method)); DO_APP_FUNC(0x027422A0, Object *, TypeConverter_ConvertTo_1, (TypeConverter * __this, ITypeDescriptorContext * context, CultureInfo * culture, Object * value, Type * destinationType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDF680, TypeConverter_ConvertTo_1__MethodInfo); DO_APP_FUNC(0x02742480, String *, TypeConverter_ConvertToInvariantString, (TypeConverter * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x02742540, String *, TypeConverter_ConvertToInvariantString_1, (TypeConverter * __this, ITypeDescriptorContext * context, Object * value, MethodInfo * method)); DO_APP_FUNC(0x02742610, String *, TypeConverter_ConvertToString, (TypeConverter * __this, Object * value, MethodInfo * method)); @@ -36039,7 +41254,9 @@ DO_APP_FUNC(0x027428E0, String *, TypeConverter_ConvertToString_2, (TypeConverte DO_APP_FUNC(0x027429E0, Object *, TypeConverter_CreateInstance, (TypeConverter * __this, IDictionary * propertyValues, MethodInfo * method)); DO_APP_FUNC(0x003CB690, Object *, TypeConverter_CreateInstance_1, (TypeConverter * __this, ITypeDescriptorContext * context, IDictionary * propertyValues, MethodInfo * method)); DO_APP_FUNC(0x02742A00, Exception *, TypeConverter_GetConvertFromException, (TypeConverter * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDF618, TypeConverter_GetConvertFromException__MethodInfo); DO_APP_FUNC(0x02742B50, Exception *, TypeConverter_GetConvertToException, (TypeConverter * __this, Object * value, Type * destinationType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDF608, TypeConverter_GetConvertToException__MethodInfo); DO_APP_FUNC(0x02742CE0, bool, TypeConverter_GetCreateInstanceSupported, (TypeConverter * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, TypeConverter_GetCreateInstanceSupported_1, (TypeConverter * __this, ITypeDescriptorContext * context, MethodInfo * method)); DO_APP_FUNC(0x02742D00, PropertyDescriptorCollection *, TypeConverter_GetProperties, (TypeConverter * __this, Object * value, MethodInfo * method)); @@ -36084,18 +41301,28 @@ DO_APP_FUNC(0x02743E40, int32_t, TypeDescriptor_get_MetadataVersion, (MethodInfo DO_APP_FUNC(0x02743EA0, void, TypeDescriptor_add_Refreshed, (RefreshEventHandler * value, MethodInfo * method)); DO_APP_FUNC(0x02743FF0, void, TypeDescriptor_remove_Refreshed, (RefreshEventHandler * value, MethodInfo * method)); DO_APP_FUNC(0x02744140, TypeDescriptionProvider *, TypeDescriptor_AddAttributes, (Type * type, Attribute__Array * attributes, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDF540, TypeDescriptor_AddAttributes__MethodInfo); DO_APP_FUNC(0x02744340, TypeDescriptionProvider *, TypeDescriptor_AddAttributes_1, (Object * instance, Attribute__Array * attributes, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDF5A0, TypeDescriptor_AddAttributes_1__MethodInfo); DO_APP_FUNC(0x027444F0, void, TypeDescriptor_AddEditorTable, (Type * editorBaseType, Hashtable * table, MethodInfo * method)); DO_APP_FUNC(0x02744550, void, TypeDescriptor_AddProvider, (TypeDescriptionProvider * provider, Type * type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDF578, TypeDescriptor_AddProvider__MethodInfo); DO_APP_FUNC(0x02744920, void, TypeDescriptor_AddProvider_1, (TypeDescriptionProvider * provider, Object * instance, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDF570, TypeDescriptor_AddProvider_1__MethodInfo); DO_APP_FUNC(0x02744D10, void, TypeDescriptor_AddProviderTransparent, (TypeDescriptionProvider * provider, Type * type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDF590, TypeDescriptor_AddProviderTransparent__MethodInfo); DO_APP_FUNC(0x02744E40, void, TypeDescriptor_AddProviderTransparent_1, (TypeDescriptionProvider * provider, Object * instance, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDF490, TypeDescriptor_AddProviderTransparent_1__MethodInfo); DO_APP_FUNC(0x02744F50, void, TypeDescriptor_CheckDefaultProvider, (Type * type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDF460, TypeDescriptor_CheckDefaultProvider__MethodInfo); DO_APP_FUNC(0x027457C0, void, TypeDescriptor_CreateAssociation, (Object * primary, Object * secondary, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDF468, TypeDescriptor_CreateAssociation__MethodInfo); DO_APP_FUNC(0x027461E0, IDesigner *, TypeDescriptor_CreateDesigner, (IComponent * component, Type * designerBaseType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDF520, TypeDescriptor_CreateDesigner__MethodInfo); DO_APP_FUNC(0x027465C0, EventDescriptor *, TypeDescriptor_CreateEvent, (Type * componentType, String * name, Type * type, Attribute__Array * attributes, MethodInfo * method)); DO_APP_FUNC(0x02746660, EventDescriptor *, TypeDescriptor_CreateEvent_1, (Type * componentType, EventDescriptor * oldEventDescriptor, Attribute__Array * attributes, MethodInfo * method)); DO_APP_FUNC(0x027466F0, Object *, TypeDescriptor_CreateInstance, (IServiceProvider * provider, Type * objectType, Type__Array * argTypes, Object__Array * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDF4D8, TypeDescriptor_CreateInstance__MethodInfo); DO_APP_FUNC(0x027469B0, PropertyDescriptor *, TypeDescriptor_CreateProperty, (Type * componentType, String * name, Type * type, Attribute__Array * attributes, MethodInfo * method)); DO_APP_FUNC(0x02746A50, PropertyDescriptor *, TypeDescriptor_CreateProperty_1, (Type * componentType, PropertyDescriptor * oldPropertyDescriptor, Attribute__Array * attributes, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TypeDescriptor_DebugValidate, (Type * type, AttributeCollection * attributes, AttributeCollection * debugAttributes, MethodInfo * method)); @@ -36110,6 +41337,7 @@ DO_APP_FUNC(0x003AE050, void, TypeDescriptor_DebugValidate_8, (PropertyDescripto DO_APP_FUNC(0x003AE050, void, TypeDescriptor_DebugValidate_9, (PropertyDescriptorCollection * properties, Object * instance, Attribute__Array * attributes, bool noCustomTypeDesc, MethodInfo * method)); DO_APP_FUNC(0x02746C50, ArrayList *, TypeDescriptor_FilterMembers, (IList * members, Attribute__Array * attributes, MethodInfo * method)); DO_APP_FUNC(0x02746EA0, Object *, TypeDescriptor_GetAssociation, (Type * type, Object * primary, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDF390, TypeDescriptor_GetAssociation__MethodInfo); DO_APP_FUNC(0x02747440, AttributeCollection *, TypeDescriptor_GetAttributes, (Type * componentType, MethodInfo * method)); DO_APP_FUNC(0x02747540, AttributeCollection *, TypeDescriptor_GetAttributes_1, (Object * component, MethodInfo * method)); DO_APP_FUNC(0x027475A0, AttributeCollection *, TypeDescriptor_GetAttributes_2, (Object * component, bool noCustomTypeDesc, MethodInfo * method)); @@ -36130,11 +41358,16 @@ DO_APP_FUNC(0x027480E0, PropertyDescriptor *, TypeDescriptor_GetDefaultProperty, DO_APP_FUNC(0x027481A0, PropertyDescriptor *, TypeDescriptor_GetDefaultProperty_1, (Object * component, MethodInfo * method)); DO_APP_FUNC(0x02748260, PropertyDescriptor *, TypeDescriptor_GetDefaultProperty_2, (Object * component, bool noCustomTypeDesc, MethodInfo * method)); DO_APP_FUNC(0x02748300, ICustomTypeDescriptor *, TypeDescriptor_GetDescriptor, (Type * type, String * typeName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDF378, TypeDescriptor_GetDescriptor__MethodInfo); DO_APP_FUNC(0x02748430, ICustomTypeDescriptor *, TypeDescriptor_GetDescriptor_1, (Object * component, bool noCustomTypeDesc, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDF358, TypeDescriptor_GetDescriptor_1__MethodInfo); DO_APP_FUNC(0x02748770, ICustomTypeDescriptor *, TypeDescriptor_GetExtendedDescriptor, (Object * component, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDF360, TypeDescriptor_GetExtendedDescriptor__MethodInfo); DO_APP_FUNC(0x02748880, Object *, TypeDescriptor_GetEditor, (Object * component, Type * editorBaseType, MethodInfo * method)); DO_APP_FUNC(0x027489D0, Object *, TypeDescriptor_GetEditor_1, (Object * component, Type * editorBaseType, bool noCustomTypeDesc, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDF210, TypeDescriptor_GetEditor_1__MethodInfo); DO_APP_FUNC(0x02748AF0, Object *, TypeDescriptor_GetEditor_2, (Type * type, Type * editorBaseType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDF248, TypeDescriptor_GetEditor_2__MethodInfo); DO_APP_FUNC(0x02748C20, EventDescriptorCollection *, TypeDescriptor_GetEvents, (Type * componentType, MethodInfo * method)); DO_APP_FUNC(0x02748D20, EventDescriptorCollection *, TypeDescriptor_GetEvents_1, (Type * componentType, Attribute__Array * attributes, MethodInfo * method)); DO_APP_FUNC(0x02748F40, EventDescriptorCollection *, TypeDescriptor_GetEvents_2, (Object * component, MethodInfo * method)); @@ -36143,6 +41376,7 @@ DO_APP_FUNC(0x02749010, EventDescriptorCollection *, TypeDescriptor_GetEvents_4, DO_APP_FUNC(0x02749080, EventDescriptorCollection *, TypeDescriptor_GetEvents_5, (Object * component, Attribute__Array * attributes, bool noCustomTypeDesc, MethodInfo * method)); DO_APP_FUNC(0x027493C0, String *, TypeDescriptor_GetExtenderCollisionSuffix, (MemberDescriptor * member, MethodInfo * method)); DO_APP_FUNC(0x02749620, String *, TypeDescriptor_GetFullComponentName, (Object * component, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDF260, TypeDescriptor_GetFullComponentName__MethodInfo); DO_APP_FUNC(0x02749730, Type *, TypeDescriptor_GetNodeForBaseType, (Type * searchType, MethodInfo * method)); DO_APP_FUNC(0x02749810, PropertyDescriptorCollection *, TypeDescriptor_GetProperties, (Type * componentType, MethodInfo * method)); DO_APP_FUNC(0x02749910, PropertyDescriptorCollection *, TypeDescriptor_GetProperties_1, (Type * componentType, Attribute__Array * attributes, MethodInfo * method)); @@ -36152,10 +41386,14 @@ DO_APP_FUNC(0x02749C30, PropertyDescriptorCollection *, TypeDescriptor_GetProper DO_APP_FUNC(0x02749CE0, PropertyDescriptorCollection *, TypeDescriptor_GetProperties_5, (Object * component, Attribute__Array * attributes, bool noCustomTypeDesc, MethodInfo * method)); DO_APP_FUNC(0x02749D60, PropertyDescriptorCollection *, TypeDescriptor_GetPropertiesImpl, (Object * component, Attribute__Array * attributes, bool noCustomTypeDesc, bool noAttributes, MethodInfo * method)); DO_APP_FUNC(0x0274A110, TypeDescriptionProvider *, TypeDescriptor_GetProvider, (Type * type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDF100, TypeDescriptor_GetProvider__MethodInfo); DO_APP_FUNC(0x0274A1E0, TypeDescriptionProvider *, TypeDescriptor_GetProvider_1, (Object * instance, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDF0E8, TypeDescriptor_GetProvider_1__MethodInfo); DO_APP_FUNC(0x0274A290, TypeDescriptionProvider *, TypeDescriptor_GetProviderRecursive, (Type * type, MethodInfo * method)); DO_APP_FUNC(0x0274A2F0, Type *, TypeDescriptor_GetReflectionType, (Type * type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDF1D0, TypeDescriptor_GetReflectionType__MethodInfo); DO_APP_FUNC(0x0274A420, Type *, TypeDescriptor_GetReflectionType_1, (Object * instance, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDF1C8, TypeDescriptor_GetReflectionType_1__MethodInfo); DO_APP_FUNC(0x0274A550, TypeDescriptor_TypeDescriptionNode *, TypeDescriptor_NodeFor, (Type * type, MethodInfo * method)); DO_APP_FUNC(0x0274A5B0, TypeDescriptor_TypeDescriptionNode *, TypeDescriptor_NodeFor_1, (Type * type, bool createDelegator, MethodInfo * method)); DO_APP_FUNC(0x0274AC50, TypeDescriptor_TypeDescriptionNode *, TypeDescriptor_NodeFor_2, (Object * instance, MethodInfo * method)); @@ -36163,6 +41401,7 @@ DO_APP_FUNC(0x0274ACB0, TypeDescriptor_TypeDescriptionNode *, TypeDescriptor_Nod DO_APP_FUNC(0x0274AEA0, void, TypeDescriptor_NodeRemove, (Object * key, TypeDescriptionProvider * provider, MethodInfo * method)); DO_APP_FUNC(0x0274B450, ICollection *, TypeDescriptor_PipelineAttributeFilter, (int32_t pipelineType, ICollection * members, Attribute__Array * filter, Object * instance, IDictionary * cache, MethodInfo * method)); DO_APP_FUNC(0x0274B9A0, ICollection *, TypeDescriptor_PipelineFilter, (int32_t pipelineType, ICollection * members, Object * instance, IDictionary * cache, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDEFE0, TypeDescriptor_PipelineFilter__MethodInfo); DO_APP_FUNC(0x0274CBD0, ICollection *, TypeDescriptor_PipelineInitialize, (int32_t pipelineType, ICollection * members, IDictionary * cache, MethodInfo * method)); DO_APP_FUNC(0x0274CF90, ICollection *, TypeDescriptor_PipelineMerge, (int32_t pipelineType, ICollection * primary, ICollection * secondary, Object * instance, IDictionary * cache, MethodInfo * method)); DO_APP_FUNC(0x0274D9C0, void, TypeDescriptor_RaiseRefresh, (Object * component, MethodInfo * method)); @@ -36173,13 +41412,20 @@ DO_APP_FUNC(0x0274E4D0, void, TypeDescriptor_Refresh_2, (Type * type, MethodInfo DO_APP_FUNC(0x0274EA70, void, TypeDescriptor_Refresh_3, (Module * module, MethodInfo * method)); DO_APP_FUNC(0x0274F2D0, void, TypeDescriptor_Refresh_4, (Assembly * assembly, MethodInfo * method)); DO_APP_FUNC(0x0274F390, void, TypeDescriptor_RemoveAssociation, (Object * primary, Object * secondary, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDEF08, TypeDescriptor_RemoveAssociation__MethodInfo); DO_APP_FUNC(0x0274F740, void, TypeDescriptor_RemoveAssociations, (Object * primary, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDEF00, TypeDescriptor_RemoveAssociations__MethodInfo); DO_APP_FUNC(0x0274F820, void, TypeDescriptor_RemoveProvider, (TypeDescriptionProvider * provider, Type * type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDEEC0, TypeDescriptor_RemoveProvider__MethodInfo); DO_APP_FUNC(0x0274F960, void, TypeDescriptor_RemoveProvider_1, (TypeDescriptionProvider * provider, Object * instance, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDEEF0, TypeDescriptor_RemoveProvider_1__MethodInfo); DO_APP_FUNC(0x0274FA80, void, TypeDescriptor_RemoveProviderTransparent, (TypeDescriptionProvider * provider, Type * type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDEF70, TypeDescriptor_RemoveProviderTransparent__MethodInfo); DO_APP_FUNC(0x0274FC20, void, TypeDescriptor_RemoveProviderTransparent_1, (TypeDescriptionProvider * provider, Object * instance, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDEF60, TypeDescriptor_RemoveProviderTransparent_1__MethodInfo); DO_APP_FUNC(0x0274FD70, bool, TypeDescriptor_ShouldHideMember, (MemberDescriptor * member, Attribute * attribute, MethodInfo * method)); DO_APP_FUNC(0x0274FE30, void, TypeDescriptor_SortDescriptorArray, (IList * infos, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDEF20, TypeDescriptor_SortDescriptorArray__MethodInfo); DO_APP_FUNC(0x003AE050, void, TypeDescriptor_Trace, (String * message, Object__Array * args, MethodInfo * method)); DO_APP_FUNC(0x0274FF50, void, TypeDescriptor__cctor, (MethodInfo * method)); DO_APP_FUNC(0x027508D0, void, TypeDescriptor_AttributeProvider__ctor, (TypeDescriptor_AttributeProvider * __this, TypeDescriptionProvider * existingProvider, Attribute__Array * attrs, MethodInfo * method)); @@ -36190,6 +41436,7 @@ DO_APP_FUNC(0x003BCDE0, void, TypeDescriptor_ComNativeDescriptionProvider__ctor, DO_APP_FUNC(0x003BB3E0, IComNativeDescriptorHandler *, TypeDescriptor_ComNativeDescriptionProvider_get_Handler, (TypeDescriptor_ComNativeDescriptionProvider * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCDE0, void, TypeDescriptor_ComNativeDescriptionProvider_set_Handler, (TypeDescriptor_ComNativeDescriptionProvider * __this, IComNativeDescriptorHandler * value, MethodInfo * method)); DO_APP_FUNC(0x02750EE0, ICustomTypeDescriptor *, TypeDescriptor_ComNativeDescriptionProvider_GetTypeDescriptor, (TypeDescriptor_ComNativeDescriptionProvider * __this, Type * objectType, Object * instance, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDEEA0, TypeDescriptor_ComNativeDescriptionProvider_GetTypeDescriptor__MethodInfo); DO_APP_FUNC(0x003BCE40, void, TypeDescriptor_ComNativeDescriptionProvider_ComNativeTypeDescriptor__ctor, (TypeDescriptor_ComNativeDescriptionProvider_ComNativeTypeDescriptor * __this, IComNativeDescriptorHandler * handler, Object * instance, MethodInfo * method)); DO_APP_FUNC(0x02751110, AttributeCollection *, TypeDescriptor_ComNativeDescriptionProvider_ComNativeTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetAttributes, (TypeDescriptor_ComNativeDescriptionProvider_ComNativeTypeDescriptor * __this, MethodInfo * method)); DO_APP_FUNC(0x027511D0, String *, TypeDescriptor_ComNativeDescriptionProvider_ComNativeTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetClassName, (TypeDescriptor_ComNativeDescriptionProvider_ComNativeTypeDescriptor * __this, MethodInfo * method)); @@ -36218,6 +41465,7 @@ DO_APP_FUNC(0x02751C00, TypeConverter *, TypeDescriptor_MergedTypeDescriptor_Sys DO_APP_FUNC(0x02751C60, EventDescriptor *, TypeDescriptor_MergedTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetDefaultEvent, (TypeDescriptor_MergedTypeDescriptor * __this, MethodInfo * method)); DO_APP_FUNC(0x02751CC0, PropertyDescriptor *, TypeDescriptor_MergedTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetDefaultProperty, (TypeDescriptor_MergedTypeDescriptor * __this, MethodInfo * method)); DO_APP_FUNC(0x02751D20, Object *, TypeDescriptor_MergedTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetEditor, (TypeDescriptor_MergedTypeDescriptor * __this, Type * editorBaseType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDEE28, TypeDescriptor_MergedTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetEditor__MethodInfo); DO_APP_FUNC(0x02751E20, EventDescriptorCollection *, TypeDescriptor_MergedTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetEvents, (TypeDescriptor_MergedTypeDescriptor * __this, MethodInfo * method)); DO_APP_FUNC(0x02751E80, EventDescriptorCollection *, TypeDescriptor_MergedTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetEvents_1, (TypeDescriptor_MergedTypeDescriptor * __this, Attribute__Array * attributes, MethodInfo * method)); DO_APP_FUNC(0x02751EF0, PropertyDescriptorCollection *, TypeDescriptor_MergedTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetProperties, (TypeDescriptor_MergedTypeDescriptor * __this, MethodInfo * method)); @@ -36225,40 +41473,73 @@ DO_APP_FUNC(0x02751F50, PropertyDescriptorCollection *, TypeDescriptor_MergedTyp DO_APP_FUNC(0x02751FC0, Object *, TypeDescriptor_MergedTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetPropertyOwner, (TypeDescriptor_MergedTypeDescriptor * __this, PropertyDescriptor * pd, MethodInfo * method)); DO_APP_FUNC(0x003C6500, void, TypeDescriptor_TypeDescriptionNode__ctor, (TypeDescriptor_TypeDescriptionNode * __this, TypeDescriptionProvider * provider, MethodInfo * method)); DO_APP_FUNC(0x02752030, Object *, TypeDescriptor_TypeDescriptionNode_CreateInstance, (TypeDescriptor_TypeDescriptionNode * __this, IServiceProvider * provider, Type * objectType, Type__Array * argTypes, Object__Array * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDEE38, TypeDescriptor_TypeDescriptionNode_CreateInstance__MethodInfo); DO_APP_FUNC(0x02752200, IDictionary *, TypeDescriptor_TypeDescriptionNode_GetCache, (TypeDescriptor_TypeDescriptionNode * __this, Object * instance, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDEE40, TypeDescriptor_TypeDescriptionNode_GetCache__MethodInfo); DO_APP_FUNC(0x02752290, ICustomTypeDescriptor *, TypeDescriptor_TypeDescriptionNode_GetExtendedTypeDescriptor, (TypeDescriptor_TypeDescriptionNode * __this, Object * instance, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDEE60, TypeDescriptor_TypeDescriptionNode_GetExtendedTypeDescriptor__MethodInfo); DO_APP_FUNC(0x02752360, IExtenderProvider__Array *, TypeDescriptor_TypeDescriptionNode_GetExtenderProviders, (TypeDescriptor_TypeDescriptionNode * __this, Object * instance, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDED68, TypeDescriptor_TypeDescriptionNode_GetExtenderProviders__MethodInfo); DO_APP_FUNC(0x027523F0, String *, TypeDescriptor_TypeDescriptionNode_GetFullComponentName, (TypeDescriptor_TypeDescriptionNode * __this, Object * component, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDED70, TypeDescriptor_TypeDescriptionNode_GetFullComponentName__MethodInfo); DO_APP_FUNC(0x02752480, Type *, TypeDescriptor_TypeDescriptionNode_GetReflectionType, (TypeDescriptor_TypeDescriptionNode * __this, Type * objectType, Object * instance, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDED90, TypeDescriptor_TypeDescriptionNode_GetReflectionType__MethodInfo); DO_APP_FUNC(0x02752560, Type *, TypeDescriptor_TypeDescriptionNode_GetRuntimeType, (TypeDescriptor_TypeDescriptionNode * __this, Type * objectType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDED80, TypeDescriptor_TypeDescriptionNode_GetRuntimeType__MethodInfo); DO_APP_FUNC(0x02752630, ICustomTypeDescriptor *, TypeDescriptor_TypeDescriptionNode_GetTypeDescriptor, (TypeDescriptor_TypeDescriptionNode * __this, Type * objectType, Object * instance, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDED48, TypeDescriptor_TypeDescriptionNode_GetTypeDescriptor__MethodInfo); DO_APP_FUNC(0x027527C0, bool, TypeDescriptor_TypeDescriptionNode_IsSupportedType, (TypeDescriptor_TypeDescriptionNode * __this, Type * type, MethodInfo * method)); -DO_APP_FUNC(0x00A76400, void, TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor__ctor, (TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor__Boxed * __this, TypeDescriptor_TypeDescriptionNode * node, Object * instance, MethodInfo * method)); -DO_APP_FUNC(0x02752890, AttributeCollection *, TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetAttributes, (TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02752BC0, String *, TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetClassName, (TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02752E20, String *, TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetComponentName, (TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02753020, TypeConverter *, TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetConverter, (TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02753340, EventDescriptor *, TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetDefaultEvent, (TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02753500, PropertyDescriptor *, TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetDefaultProperty, (TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x027536C0, Object *, TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetEditor, (TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor__Boxed * __this, Type * editorBaseType, MethodInfo * method)); -DO_APP_FUNC(0x02753970, EventDescriptorCollection *, TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetEvents, (TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02753CA0, EventDescriptorCollection *, TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetEvents_1, (TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor__Boxed * __this, Attribute__Array * attributes, MethodInfo * method)); -DO_APP_FUNC(0x02753FD0, PropertyDescriptorCollection *, TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetProperties, (TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x027542C0, PropertyDescriptorCollection *, TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetProperties_1, (TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor__Boxed * __this, Attribute__Array * attributes, MethodInfo * method)); -DO_APP_FUNC(0x027545B0, Object *, TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetPropertyOwner, (TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor__Boxed * __this, PropertyDescriptor * pd, MethodInfo * method)); -DO_APP_FUNC(0x0096DD20, void, TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor__ctor, (TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor__Boxed * __this, TypeDescriptor_TypeDescriptionNode * node, Type * objectType, Object * instance, MethodInfo * method)); -DO_APP_FUNC(0x02754840, AttributeCollection *, TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetAttributes, (TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02754B40, String *, TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetClassName, (TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02754D50, String *, TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetComponentName, (TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02754F20, TypeConverter *, TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetConverter, (TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02755220, EventDescriptor *, TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetDefaultEvent, (TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02755410, PropertyDescriptor *, TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetDefaultProperty, (TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02755600, Object *, TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetEditor, (TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor__Boxed * __this, Type * editorBaseType, MethodInfo * method)); -DO_APP_FUNC(0x027558A0, EventDescriptorCollection *, TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetEvents, (TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02755BA0, EventDescriptorCollection *, TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetEvents_1, (TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor__Boxed * __this, Attribute__Array * attributes, MethodInfo * method)); -DO_APP_FUNC(0x02755EA0, PropertyDescriptorCollection *, TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetProperties, (TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x027561A0, PropertyDescriptorCollection *, TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetProperties_1, (TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor__Boxed * __this, Attribute__Array * attributes, MethodInfo * method)); -DO_APP_FUNC(0x027564A0, Object *, TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetPropertyOwner, (TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor__Boxed * __this, PropertyDescriptor * pd, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDED50, TypeDescriptor_TypeDescriptionNode_IsSupportedType__MethodInfo); +DO_APP_FUNC(0x00A76400, void, TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor__ctor, (TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor * __this, TypeDescriptor_TypeDescriptionNode * node, Object * instance, MethodInfo * method)); +DO_APP_FUNC(0x02752890, AttributeCollection *, TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetAttributes, (TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDEDF8, TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetAttributes__MethodInfo); +DO_APP_FUNC(0x02752BC0, String *, TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetClassName, (TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDEDB0, TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetClassName__MethodInfo); +DO_APP_FUNC(0x02752E20, String *, TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetComponentName, (TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDEDA8, TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetComponentName__MethodInfo); +DO_APP_FUNC(0x02753020, TypeConverter *, TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetConverter, (TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDEDC8, TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetConverter__MethodInfo); +DO_APP_FUNC(0x02753340, EventDescriptor *, TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetDefaultEvent, (TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDECD0, TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetDefaultEvent__MethodInfo); +DO_APP_FUNC(0x02753500, PropertyDescriptor *, TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetDefaultProperty, (TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDECE8, TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetDefaultProperty__MethodInfo); +DO_APP_FUNC(0x027536C0, Object *, TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetEditor, (TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor * __this, Type * editorBaseType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDECA0, TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetEditor__MethodInfo); +DO_APP_FUNC(0x02753970, EventDescriptorCollection *, TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetEvents, (TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDEC98, TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetEvents__MethodInfo); +DO_APP_FUNC(0x02753CA0, EventDescriptorCollection *, TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetEvents_1, (TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor * __this, Attribute__Array * attributes, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDECB8, TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetEvents_1__MethodInfo); +DO_APP_FUNC(0x02753FD0, PropertyDescriptorCollection *, TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetProperties, (TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDED08, TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetProperties__MethodInfo); +DO_APP_FUNC(0x027542C0, PropertyDescriptorCollection *, TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetProperties_1, (TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor * __this, Attribute__Array * attributes, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDED20, TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetProperties_1__MethodInfo); +DO_APP_FUNC(0x027545B0, Object *, TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetPropertyOwner, (TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor * __this, PropertyDescriptor * pd, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDECF0, TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetPropertyOwner__MethodInfo); +DO_APP_FUNC(0x0096DD20, void, TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor__ctor, (TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor * __this, TypeDescriptor_TypeDescriptionNode * node, Type * objectType, Object * instance, MethodInfo * method)); +DO_APP_FUNC(0x02754840, AttributeCollection *, TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetAttributes, (TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2AF8, TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetAttributes__MethodInfo); +DO_APP_FUNC(0x02754B40, String *, TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetClassName, (TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2B00, TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetClassName__MethodInfo); +DO_APP_FUNC(0x02754D50, String *, TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetComponentName, (TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2AD8, TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetComponentName__MethodInfo); +DO_APP_FUNC(0x02754F20, TypeConverter *, TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetConverter, (TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2AE8, TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetConverter__MethodInfo); +DO_APP_FUNC(0x02755220, EventDescriptor *, TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetDefaultEvent, (TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2AE0, TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetDefaultEvent__MethodInfo); +DO_APP_FUNC(0x02755410, PropertyDescriptor *, TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetDefaultProperty, (TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2B20, TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetDefaultProperty__MethodInfo); +DO_APP_FUNC(0x02755600, Object *, TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetEditor, (TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor * __this, Type * editorBaseType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2B28, TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetEditor__MethodInfo); +DO_APP_FUNC(0x027558A0, EventDescriptorCollection *, TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetEvents, (TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2B10, TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetEvents__MethodInfo); +DO_APP_FUNC(0x02755BA0, EventDescriptorCollection *, TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetEvents_1, (TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor * __this, Attribute__Array * attributes, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2B08, TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetEvents_1__MethodInfo); +DO_APP_FUNC(0x02755EA0, PropertyDescriptorCollection *, TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetProperties, (TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2B18, TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetProperties__MethodInfo); +DO_APP_FUNC(0x027561A0, PropertyDescriptorCollection *, TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetProperties_1, (TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor * __this, Attribute__Array * attributes, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2A58, TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetProperties_1__MethodInfo); +DO_APP_FUNC(0x027564A0, Object *, TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetPropertyOwner, (TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor * __this, PropertyDescriptor * pd, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2A60, TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor_System_ComponentModel_ICustomTypeDescriptor_GetPropertyOwner__MethodInfo); DO_APP_FUNC(0x003AE050, void, TypeDescriptor_TypeDescriptorComObject__ctor, (TypeDescriptor_TypeDescriptorComObject * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TypeDescriptor_TypeDescriptorInterface__ctor, (TypeDescriptor_TypeDescriptorInterface * __this, MethodInfo * method)); DO_APP_FUNC(0x027566D0, void, Win32Exception__ctor, (Win32Exception * __this, MethodInfo * method)); @@ -36269,6 +41550,7 @@ DO_APP_FUNC(0x02756850, void, Win32Exception__ctor_4, (Win32Exception * __this, DO_APP_FUNC(0x02595D90, void, Win32Exception__ctor_5, (Win32Exception * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x00C2C5E0, int32_t, Win32Exception_get_NativeErrorCode, (Win32Exception * __this, MethodInfo * method)); DO_APP_FUNC(0x02756920, void, Win32Exception_GetObjectData, (Win32Exception * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2AB0, Win32Exception_GetObjectData__MethodInfo); DO_APP_FUNC(0x02756A00, String *, Win32Exception_GetErrorMessage, (int32_t error, MethodInfo * method)); DO_APP_FUNC(0x003BCD30, void, NotifyParentPropertyAttribute__ctor, (NotifyParentPropertyAttribute * __this, bool notifyParent, MethodInfo * method)); DO_APP_FUNC(0x003BCD20, bool, NotifyParentPropertyAttribute_get_NotifyParent, (NotifyParentPropertyAttribute * __this, MethodInfo * method)); @@ -36383,7 +41665,9 @@ DO_APP_FUNC(0x02759C90, DesignerVerb *, DesignerVerbCollection_get_Item, (Design DO_APP_FUNC(0x02759D40, void, DesignerVerbCollection_set_Item, (DesignerVerbCollection * __this, int32_t index, DesignerVerb * value, MethodInfo * method)); DO_APP_FUNC(0x02759DB0, int32_t, DesignerVerbCollection_Add, (DesignerVerbCollection * __this, DesignerVerb * value, MethodInfo * method)); DO_APP_FUNC(0x02759E10, void, DesignerVerbCollection_AddRange, (DesignerVerbCollection * __this, DesignerVerb__Array * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2810, DesignerVerbCollection_AddRange__MethodInfo); DO_APP_FUNC(0x02759F00, void, DesignerVerbCollection_AddRange_1, (DesignerVerbCollection * __this, DesignerVerbCollection * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2808, DesignerVerbCollection_AddRange_1__MethodInfo); DO_APP_FUNC(0x0275A0A0, void, DesignerVerbCollection_Insert, (DesignerVerbCollection * __this, int32_t index, DesignerVerb * value, MethodInfo * method)); DO_APP_FUNC(0x0275A110, int32_t, DesignerVerbCollection_IndexOf, (DesignerVerbCollection * __this, DesignerVerb * value, MethodInfo * method)); DO_APP_FUNC(0x0275A170, bool, DesignerVerbCollection_Contains, (DesignerVerbCollection * __this, DesignerVerb * value, MethodInfo * method)); @@ -36424,7 +41708,9 @@ DO_APP_FUNC(0x0042F0F0, IAsyncResult *, DesignerEventHandler_BeginInvoke, (Desig DO_APP_FUNC(0x003BA270, void, DesignerEventHandler_EndInvoke, (DesignerEventHandler * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HelpKeywordAttribute__ctor, (HelpKeywordAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x0275B7B0, void, HelpKeywordAttribute__ctor_1, (HelpKeywordAttribute * __this, String * keyword, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE27F0, HelpKeywordAttribute__ctor_1__MethodInfo); DO_APP_FUNC(0x0275B870, void, HelpKeywordAttribute__ctor_2, (HelpKeywordAttribute * __this, Type * t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2770, HelpKeywordAttribute__ctor_2__MethodInfo); DO_APP_FUNC(0x003BB3C0, String *, HelpKeywordAttribute_get_HelpKeyword, (HelpKeywordAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x0275B980, bool, HelpKeywordAttribute_Equals, (HelpKeywordAttribute * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x026DE5F0, int32_t, HelpKeywordAttribute_GetHashCode, (HelpKeywordAttribute * __this, MethodInfo * method)); @@ -36460,13 +41746,16 @@ DO_APP_FUNC(0x0275C2F0, Type__Array *, ServiceContainer_get_DefaultServices, (Se DO_APP_FUNC(0x0275C350, ServiceContainer_ServiceCollection_1_System_Object_ *, ServiceContainer_get_Services, (ServiceContainer * __this, MethodInfo * method)); DO_APP_FUNC(0x0275C4A0, void, ServiceContainer_AddService, (ServiceContainer * __this, Type * serviceType, Object * serviceInstance, MethodInfo * method)); DO_APP_FUNC(0x0275C4D0, void, ServiceContainer_AddService_1, (ServiceContainer * __this, Type * serviceType, Object * serviceInstance, bool promote, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE26E0, ServiceContainer_AddService_1__MethodInfo); DO_APP_FUNC(0x0275C8F0, void, ServiceContainer_AddService_2, (ServiceContainer * __this, Type * serviceType, ServiceCreatorCallback * callback, MethodInfo * method)); DO_APP_FUNC(0x0275C920, void, ServiceContainer_AddService_3, (ServiceContainer * __this, Type * serviceType, ServiceCreatorCallback * callback, bool promote, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2748, ServiceContainer_AddService_3__MethodInfo); DO_APP_FUNC(0x0275CC50, void, ServiceContainer_Dispose, (ServiceContainer * __this, MethodInfo * method)); DO_APP_FUNC(0x0275CC70, void, ServiceContainer_Dispose_1, (ServiceContainer * __this, bool disposing, MethodInfo * method)); DO_APP_FUNC(0x0275CF80, Object *, ServiceContainer_GetService, (ServiceContainer * __this, Type * serviceType, MethodInfo * method)); DO_APP_FUNC(0x0275D200, void, ServiceContainer_RemoveService, (ServiceContainer * __this, Type * serviceType, MethodInfo * method)); DO_APP_FUNC(0x0275D220, void, ServiceContainer_RemoveService_1, (ServiceContainer * __this, Type * serviceType, bool promote, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2730, ServiceContainer_RemoveService_1__MethodInfo); DO_APP_FUNC(0x0275D3C0, void, ServiceContainer__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, StandardCommands__ctor, (StandardCommands * __this, MethodInfo * method)); DO_APP_FUNC(0x0275D660, void, StandardCommands__cctor, (MethodInfo * method)); @@ -36476,7 +41765,9 @@ DO_APP_FUNC(0x0275FEB0, void, StandardToolWindows__cctor, (MethodInfo * method)) DO_APP_FUNC(0x003AE050, void, TypeDescriptionProviderService__ctor, (TypeDescriptionProviderService * __this, MethodInfo * method)); DO_APP_FUNC(0x027608B0, DesignerOptionService_DesignerOptionCollection *, DesignerOptionService_get_Options, (DesignerOptionService * __this, MethodInfo * method)); DO_APP_FUNC(0x027609B0, DesignerOptionService_DesignerOptionCollection *, DesignerOptionService_CreateOptionCollection, (DesignerOptionService * __this, DesignerOptionService_DesignerOptionCollection * parent, String * name, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2690, DesignerOptionService_CreateOptionCollection__MethodInfo); DO_APP_FUNC(0x02760C30, PropertyDescriptor *, DesignerOptionService_GetOptionProperty, (DesignerOptionService * __this, String * pageName, String * valueName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE25F0, DesignerOptionService_GetOptionProperty__MethodInfo); DO_APP_FUNC(0x003AE050, void, DesignerOptionService_PopulateOptionCollection, (DesignerOptionService * __this, DesignerOptionService_DesignerOptionCollection * options, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, DesignerOptionService_ShowDialog, (DesignerOptionService * __this, DesignerOptionService_DesignerOptionCollection * options, Object * optionObject, MethodInfo * method)); DO_APP_FUNC(0x02760ED0, Object *, DesignerOptionService_System_ComponentModel_Design_IDesignerOptionService_GetOptionValue, (DesignerOptionService * __this, String * pageName, String * valueName, MethodInfo * method)); @@ -36488,6 +41779,7 @@ DO_APP_FUNC(0x003BB3E0, String *, DesignerOptionService_DesignerOptionCollection DO_APP_FUNC(0x003BB3D0, DesignerOptionService_DesignerOptionCollection *, DesignerOptionService_DesignerOptionCollection_get_Parent, (DesignerOptionService_DesignerOptionCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x027611F0, PropertyDescriptorCollection *, DesignerOptionService_DesignerOptionCollection_get_Properties, (DesignerOptionService_DesignerOptionCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x02761A50, DesignerOptionService_DesignerOptionCollection *, DesignerOptionService_DesignerOptionCollection_get_Item, (DesignerOptionService_DesignerOptionCollection * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE25C8, DesignerOptionService_DesignerOptionCollection_get_Item__MethodInfo); DO_APP_FUNC(0x02761B60, DesignerOptionService_DesignerOptionCollection *, DesignerOptionService_DesignerOptionCollection_get_Item_1, (DesignerOptionService_DesignerOptionCollection * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x02761E80, void, DesignerOptionService_DesignerOptionCollection_CopyTo, (DesignerOptionService_DesignerOptionCollection * __this, Array * array, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x02761EE0, void, DesignerOptionService_DesignerOptionCollection_EnsurePopulated, (DesignerOptionService_DesignerOptionCollection * __this, MethodInfo * method)); @@ -36501,14 +41793,21 @@ DO_APP_FUNC(0x0041AEF0, bool, DesignerOptionService_DesignerOptionCollection_Sys DO_APP_FUNC(0x0041AEF0, bool, DesignerOptionService_DesignerOptionCollection_System_Collections_IList_get_IsReadOnly, (DesignerOptionService_DesignerOptionCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x02761A50, Object *, DesignerOptionService_DesignerOptionCollection_System_Collections_IList_get_Item, (DesignerOptionService_DesignerOptionCollection * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x027622A0, void, DesignerOptionService_DesignerOptionCollection_System_Collections_IList_set_Item, (DesignerOptionService_DesignerOptionCollection * __this, int32_t index, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2628, DesignerOptionService_DesignerOptionCollection_System_Collections_IList_set_Item__MethodInfo); DO_APP_FUNC(0x027622F0, int32_t, DesignerOptionService_DesignerOptionCollection_System_Collections_IList_Add, (DesignerOptionService_DesignerOptionCollection * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2618, DesignerOptionService_DesignerOptionCollection_System_Collections_IList_Add__MethodInfo); DO_APP_FUNC(0x02762340, void, DesignerOptionService_DesignerOptionCollection_System_Collections_IList_Clear, (DesignerOptionService_DesignerOptionCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2620, DesignerOptionService_DesignerOptionCollection_System_Collections_IList_Clear__MethodInfo); DO_APP_FUNC(0x02762390, bool, DesignerOptionService_DesignerOptionCollection_System_Collections_IList_Contains, (DesignerOptionService_DesignerOptionCollection * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x02762010, int32_t, DesignerOptionService_DesignerOptionCollection_System_Collections_IList_IndexOf, (DesignerOptionService_DesignerOptionCollection * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x027623E0, void, DesignerOptionService_DesignerOptionCollection_System_Collections_IList_Insert, (DesignerOptionService_DesignerOptionCollection * __this, int32_t index, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2600, DesignerOptionService_DesignerOptionCollection_System_Collections_IList_Insert__MethodInfo); DO_APP_FUNC(0x02762430, void, DesignerOptionService_DesignerOptionCollection_System_Collections_IList_Remove, (DesignerOptionService_DesignerOptionCollection * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2608, DesignerOptionService_DesignerOptionCollection_System_Collections_IList_Remove__MethodInfo); DO_APP_FUNC(0x02762480, void, DesignerOptionService_DesignerOptionCollection_System_Collections_IList_RemoveAt, (DesignerOptionService_DesignerOptionCollection * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE25F8, DesignerOptionService_DesignerOptionCollection_System_Collections_IList_RemoveAt__MethodInfo); DO_APP_FUNC(0x027624D0, void, DesignerOptionService_DesignerOptionCollection__ctor_1, (DesignerOptionService_DesignerOptionCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2610, DesignerOptionService_DesignerOptionCollection__ctor_1__MethodInfo); DO_APP_FUNC(0x02762500, void, DesignerOptionService_DesignerOptionCollection_WrappedPropertyDescriptor__ctor, (DesignerOptionService_DesignerOptionCollection_WrappedPropertyDescriptor * __this, PropertyDescriptor * property, Object * target, MethodInfo * method)); DO_APP_FUNC(0x02762620, AttributeCollection *, DesignerOptionService_DesignerOptionCollection_WrappedPropertyDescriptor_get_Attributes, (DesignerOptionService_DesignerOptionCollection_WrappedPropertyDescriptor * __this, MethodInfo * method)); DO_APP_FUNC(0x02762650, Type *, DesignerOptionService_DesignerOptionCollection_WrappedPropertyDescriptor_get_ComponentType, (DesignerOptionService_DesignerOptionCollection_WrappedPropertyDescriptor * __this, MethodInfo * method)); @@ -36537,13 +41836,19 @@ DO_APP_FUNC(0x02762F70, void, ComponentSerializationService_DeserializeTo_1, (Co DO_APP_FUNC(0x003AE050, void, ComponentSerializationService__ctor, (ComponentSerializationService * __this, MethodInfo * method)); DO_APP_FUNC(0x02762FA0, Object *, ContextStack_get_Current, (ContextStack * __this, MethodInfo * method)); DO_APP_FUNC(0x02763030, Object *, ContextStack_get_Item, (ContextStack * __this, int32_t level, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2558, ContextStack_get_Item__MethodInfo); DO_APP_FUNC(0x02763120, Object *, ContextStack_get_Item_1, (ContextStack * __this, Type * type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2568, ContextStack_get_Item_1__MethodInfo); DO_APP_FUNC(0x02763260, void, ContextStack_Append, (ContextStack * __this, Object * context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2540, ContextStack_Append__MethodInfo); DO_APP_FUNC(0x027633A0, Object *, ContextStack_Pop, (ContextStack * __this, MethodInfo * method)); DO_APP_FUNC(0x02763450, void, ContextStack_Push, (ContextStack * __this, Object * context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2550, ContextStack_Push__MethodInfo); DO_APP_FUNC(0x003AE050, void, ContextStack__ctor, (ContextStack * __this, MethodInfo * method)); DO_APP_FUNC(0x02763590, void, DefaultSerializationProviderAttribute__ctor, (DefaultSerializationProviderAttribute * __this, Type * providerType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2598, DefaultSerializationProviderAttribute__ctor__MethodInfo); DO_APP_FUNC(0x027636A0, void, DefaultSerializationProviderAttribute__ctor_1, (DefaultSerializationProviderAttribute * __this, String * providerTypeName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2590, DefaultSerializationProviderAttribute__ctor_1__MethodInfo); DO_APP_FUNC(0x003BB3C0, String *, DefaultSerializationProviderAttribute_get_ProviderTypeName, (DefaultSerializationProviderAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, DesignerLoader_get_Loading, (DesignerLoader * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, DesignerLoader_Flush, (DesignerLoader * __this, MethodInfo * method)); @@ -36556,28 +41861,35 @@ DO_APP_FUNC(0x003BB3E0, String *, DesignerSerializerAttribute_get_SerializerBase DO_APP_FUNC(0x02763960, Object *, DesignerSerializerAttribute_get_TypeId, (DesignerSerializerAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x02763A50, void, InstanceDescriptor__ctor, (InstanceDescriptor * __this, MemberInfo_1 * member, ICollection * arguments, MethodInfo * method)); DO_APP_FUNC(0x02763A70, void, InstanceDescriptor__ctor_1, (InstanceDescriptor * __this, MemberInfo_1 * member, ICollection * arguments, bool isComplete, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE25A8, InstanceDescriptor__ctor_1__MethodInfo); DO_APP_FUNC(0x003BB3C0, ICollection *, InstanceDescriptor_get_Arguments, (InstanceDescriptor * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCC40, bool, InstanceDescriptor_get_IsComplete, (InstanceDescriptor * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, MemberInfo_1 *, InstanceDescriptor_get_MemberInfo, (InstanceDescriptor * __this, MethodInfo * method)); DO_APP_FUNC(0x02764230, Object *, InstanceDescriptor_Invoke, (InstanceDescriptor * __this, MethodInfo * method)); DO_APP_FUNC(0x02764660, MemberRelationship, MemberRelationshipService_get_Item, (MemberRelationshipService * __this, MemberRelationship source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE24E8, MemberRelationshipService_get_Item__MethodInfo); DO_APP_FUNC(0x027647C0, void, MemberRelationshipService_set_Item, (MemberRelationshipService * __this, MemberRelationship source, MemberRelationship value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2508, MemberRelationshipService_set_Item__MethodInfo); DO_APP_FUNC(0x02764920, MemberRelationship, MemberRelationshipService_get_Item_1, (MemberRelationshipService * __this, Object * sourceOwner, MemberDescriptor * sourceMember, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE24F8, MemberRelationshipService_get_Item_1__MethodInfo); DO_APP_FUNC(0x02764AE0, void, MemberRelationshipService_set_Item_1, (MemberRelationshipService * __this, Object * sourceOwner, MemberDescriptor * sourceMember, MemberRelationship value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE24D0, MemberRelationshipService_set_Item_1__MethodInfo); DO_APP_FUNC(0x02764CA0, MemberRelationship, MemberRelationshipService_GetRelationship, (MemberRelationshipService * __this, MemberRelationship source, MethodInfo * method)); DO_APP_FUNC(0x02764EB0, void, MemberRelationshipService_SetRelationship, (MemberRelationshipService * __this, MemberRelationship source, MemberRelationship relationship, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2528, MemberRelationshipService_SetRelationship__MethodInfo); DO_APP_FUNC(0x02765360, void, MemberRelationshipService__ctor, (MemberRelationshipService * __this, MethodInfo * method)); -DO_APP_FUNC(0x02765440, void, MemberRelationshipService_RelationshipEntry__ctor, (MemberRelationshipService_RelationshipEntry__Boxed * __this, MemberRelationship rel, MethodInfo * method)); -DO_APP_FUNC(0x027655D0, bool, MemberRelationshipService_RelationshipEntry_Equals, (MemberRelationshipService_RelationshipEntry__Boxed * __this, Object * o, MethodInfo * method)); +DO_APP_FUNC(0x02765440, void, MemberRelationshipService_RelationshipEntry__ctor, (MemberRelationshipService_RelationshipEntry * __this, MemberRelationship rel, MethodInfo * method)); +DO_APP_FUNC(0x027655D0, bool, MemberRelationshipService_RelationshipEntry_Equals, (MemberRelationshipService_RelationshipEntry * __this, Object * o, MethodInfo * method)); DO_APP_FUNC(0x02765690, bool, MemberRelationshipService_RelationshipEntry_op_Equality, (MemberRelationshipService_RelationshipEntry re1, MemberRelationshipService_RelationshipEntry re2, MethodInfo * method)); DO_APP_FUNC(0x02765780, bool, MemberRelationshipService_RelationshipEntry_op_Inequality, (MemberRelationshipService_RelationshipEntry re1, MemberRelationshipService_RelationshipEntry re2, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, int32_t, MemberRelationshipService_RelationshipEntry_GetHashCode, (MemberRelationshipService_RelationshipEntry__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x027657D0, void, MemberRelationship__ctor, (MemberRelationship__Boxed * __this, Object * owner, MemberDescriptor * member, MethodInfo * method)); -DO_APP_FUNC(0x02765950, bool, MemberRelationship_get_IsEmpty, (MemberRelationship__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, MemberDescriptor *, MemberRelationship_get_Member, (MemberRelationship__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, Object *, MemberRelationship_get_Owner, (MemberRelationship__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x027659A0, bool, MemberRelationship_Equals, (MemberRelationship__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02765A70, int32_t, MemberRelationship_GetHashCode, (MemberRelationship__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, int32_t, MemberRelationshipService_RelationshipEntry_GetHashCode, (MemberRelationshipService_RelationshipEntry * __this, MethodInfo * method)); +DO_APP_FUNC(0x027657D0, void, MemberRelationship__ctor, (MemberRelationship * __this, Object * owner, MemberDescriptor * member, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2518, MemberRelationship__ctor__MethodInfo); +DO_APP_FUNC(0x02765950, bool, MemberRelationship_get_IsEmpty, (MemberRelationship * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, MemberDescriptor *, MemberRelationship_get_Member, (MemberRelationship * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, Object *, MemberRelationship_get_Owner, (MemberRelationship * __this, MethodInfo * method)); +DO_APP_FUNC(0x027659A0, bool, MemberRelationship_Equals, (MemberRelationship * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02765A70, int32_t, MemberRelationship_GetHashCode, (MemberRelationship * __this, MethodInfo * method)); DO_APP_FUNC(0x02765B40, bool, MemberRelationship_op_Equality, (MemberRelationship left, MemberRelationship right, MethodInfo * method)); DO_APP_FUNC(0x02765BD0, bool, MemberRelationship_op_Inequality, (MemberRelationship left, MemberRelationship right, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, MemberRelationship__cctor, (MethodInfo * method)); @@ -36605,39 +41917,42 @@ DO_APP_FUNC(0x02766540, Hashtable *, CollectionsUtil_CreateCaseInsensitiveHashta DO_APP_FUNC(0x027665E0, Hashtable *, CollectionsUtil_CreateCaseInsensitiveHashtable_2, (IDictionary * d, MethodInfo * method)); DO_APP_FUNC(0x02766690, SortedList *, CollectionsUtil_CreateCaseInsensitiveSortedList, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CollectionsUtil__ctor, (CollectionsUtil * __this, MethodInfo * method)); -DO_APP_FUNC(0x00959BA0, void, BitVector32__ctor, (BitVector32__Boxed * __this, int32_t data, MethodInfo * method)); -DO_APP_FUNC(0x00959BA0, void, BitVector32__ctor_1, (BitVector32__Boxed * __this, BitVector32 value, MethodInfo * method)); -DO_APP_FUNC(0x02766750, bool, BitVector32_get_Item, (BitVector32__Boxed * __this, int32_t bit, MethodInfo * method)); -DO_APP_FUNC(0x02766770, void, BitVector32_set_Item, (BitVector32__Boxed * __this, int32_t bit, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02766790, int32_t, BitVector32_get_Item_1, (BitVector32__Boxed * __this, BitVector32_Section section, MethodInfo * method)); -DO_APP_FUNC(0x027667B0, void, BitVector32_set_Item_1, (BitVector32__Boxed * __this, BitVector32_Section section, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, BitVector32_get_Data, (BitVector32__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00959BA0, void, BitVector32__ctor, (BitVector32 * __this, int32_t data, MethodInfo * method)); +DO_APP_FUNC(0x00959BA0, void, BitVector32__ctor_1, (BitVector32 * __this, BitVector32 value, MethodInfo * method)); +DO_APP_FUNC(0x02766750, bool, BitVector32_get_Item, (BitVector32 * __this, int32_t bit, MethodInfo * method)); +DO_APP_FUNC(0x02766770, void, BitVector32_set_Item, (BitVector32 * __this, int32_t bit, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02766790, int32_t, BitVector32_get_Item_1, (BitVector32 * __this, BitVector32_Section section, MethodInfo * method)); +DO_APP_FUNC(0x027667B0, void, BitVector32_set_Item_1, (BitVector32 * __this, BitVector32_Section section, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, BitVector32_get_Data, (BitVector32 * __this, MethodInfo * method)); DO_APP_FUNC(0x027667E0, int16_t, BitVector32_CountBitsSet, (int16_t mask, MethodInfo * method)); DO_APP_FUNC(0x007205E0, int32_t, BitVector32_CreateMask, (MethodInfo * method)); DO_APP_FUNC(0x02766800, int32_t, BitVector32_CreateMask_1, (int32_t previous, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE24B0, BitVector32_CreateMask_1__MethodInfo); DO_APP_FUNC(0x02766880, int16_t, BitVector32_CreateMaskFromHighValue, (int16_t highValue, MethodInfo * method)); DO_APP_FUNC(0x027668B0, BitVector32_Section, BitVector32_CreateSection, (int16_t maxValue, MethodInfo * method)); DO_APP_FUNC(0x027668C0, BitVector32_Section, BitVector32_CreateSection_1, (int16_t maxValue, BitVector32_Section previous, MethodInfo * method)); DO_APP_FUNC(0x027668D0, BitVector32_Section, BitVector32_CreateSectionHelper, (int16_t maxValue, int16_t priorMask, int16_t priorOffset, MethodInfo * method)); -DO_APP_FUNC(0x02766A50, bool, BitVector32_Equals, (BitVector32__Boxed * __this, Object * o, MethodInfo * method)); -DO_APP_FUNC(0x02766AE0, int32_t, BitVector32_GetHashCode, (BitVector32__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE24C0, BitVector32_CreateSectionHelper__MethodInfo); +DO_APP_FUNC(0x02766A50, bool, BitVector32_Equals, (BitVector32 * __this, Object * o, MethodInfo * method)); +DO_APP_FUNC(0x02766AE0, int32_t, BitVector32_GetHashCode, (BitVector32 * __this, MethodInfo * method)); DO_APP_FUNC(0x02766B30, String *, BitVector32_ToString, (BitVector32 value, MethodInfo * method)); -DO_APP_FUNC(0x02766CA0, String *, BitVector32_ToString_1, (BitVector32__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01ABF690, void, BitVector32_Section__ctor, (BitVector32_Section__Boxed * __this, int16_t mask, int16_t offset, MethodInfo * method)); -DO_APP_FUNC(0x00C15E20, int16_t, BitVector32_Section_get_Mask, (BitVector32_Section__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181A0D0, int16_t, BitVector32_Section_get_Offset, (BitVector32_Section__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02766E10, bool, BitVector32_Section_Equals, (BitVector32_Section__Boxed * __this, Object * o, MethodInfo * method)); -DO_APP_FUNC(0x02766EA0, bool, BitVector32_Section_Equals_1, (BitVector32_Section__Boxed * __this, BitVector32_Section obj, MethodInfo * method)); +DO_APP_FUNC(0x02766CA0, String *, BitVector32_ToString_1, (BitVector32 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01ABF690, void, BitVector32_Section__ctor, (BitVector32_Section * __this, int16_t mask, int16_t offset, MethodInfo * method)); +DO_APP_FUNC(0x00C15E20, int16_t, BitVector32_Section_get_Mask, (BitVector32_Section * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181A0D0, int16_t, BitVector32_Section_get_Offset, (BitVector32_Section * __this, MethodInfo * method)); +DO_APP_FUNC(0x02766E10, bool, BitVector32_Section_Equals, (BitVector32_Section * __this, Object * o, MethodInfo * method)); +DO_APP_FUNC(0x02766EA0, bool, BitVector32_Section_Equals_1, (BitVector32_Section * __this, BitVector32_Section obj, MethodInfo * method)); DO_APP_FUNC(0x02766EC0, bool, BitVector32_Section_op_Equality, (BitVector32_Section a, BitVector32_Section b, MethodInfo * method)); DO_APP_FUNC(0x02766EE0, bool, BitVector32_Section_op_Inequality, (BitVector32_Section a, BitVector32_Section b, MethodInfo * method)); -DO_APP_FUNC(0x02766F00, int32_t, BitVector32_Section_GetHashCode, (BitVector32_Section__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02766F00, int32_t, BitVector32_Section_GetHashCode, (BitVector32_Section * __this, MethodInfo * method)); DO_APP_FUNC(0x02766F50, String *, BitVector32_Section_ToString, (BitVector32_Section value, MethodInfo * method)); -DO_APP_FUNC(0x027671C0, String *, BitVector32_Section_ToString_1, (BitVector32_Section__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x027671C0, String *, BitVector32_Section_ToString_1, (BitVector32_Section * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HybridDictionary__ctor, (HybridDictionary * __this, MethodInfo * method)); DO_APP_FUNC(0x027671D0, void, HybridDictionary__ctor_1, (HybridDictionary * __this, int32_t initialSize, MethodInfo * method)); DO_APP_FUNC(0x00715340, void, HybridDictionary__ctor_2, (HybridDictionary * __this, bool caseInsensitive, MethodInfo * method)); DO_APP_FUNC(0x027672B0, void, HybridDictionary__ctor_3, (HybridDictionary * __this, int32_t initialSize, bool caseInsensitive, MethodInfo * method)); DO_APP_FUNC(0x02767460, Object *, HybridDictionary_get_Item, (HybridDictionary * __this, Object * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2450, HybridDictionary_get_Item__MethodInfo); DO_APP_FUNC(0x02767510, void, HybridDictionary_set_Item, (HybridDictionary * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x027676A0, ListDictionary *, HybridDictionary_get_List, (HybridDictionary * __this, MethodInfo * method)); DO_APP_FUNC(0x027677F0, void, HybridDictionary_ChangeOver, (HybridDictionary * __this, MethodInfo * method)); @@ -36651,14 +41966,18 @@ DO_APP_FUNC(0x02767CE0, ICollection *, HybridDictionary_get_Values, (HybridDicti DO_APP_FUNC(0x02767DD0, void, HybridDictionary_Add, (HybridDictionary * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x02767F50, void, HybridDictionary_Clear, (HybridDictionary * __this, MethodInfo * method)); DO_APP_FUNC(0x027680A0, bool, HybridDictionary_Contains, (HybridDictionary * __this, Object * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2480, HybridDictionary_Contains__MethodInfo); DO_APP_FUNC(0x02768270, void, HybridDictionary_CopyTo, (HybridDictionary * __this, Array * array, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x027682E0, IDictionaryEnumerator *, HybridDictionary_GetEnumerator, (HybridDictionary * __this, MethodInfo * method)); DO_APP_FUNC(0x02768430, IEnumerator *, HybridDictionary_System_Collections_IEnumerable_GetEnumerator, (HybridDictionary * __this, MethodInfo * method)); DO_APP_FUNC(0x02768580, void, HybridDictionary_Remove, (HybridDictionary * __this, Object * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2488, HybridDictionary_Remove__MethodInfo); DO_APP_FUNC(0x003AE050, void, ListDictionary__ctor, (ListDictionary * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCDE0, void, ListDictionary__ctor_1, (ListDictionary * __this, IComparer * comparer, MethodInfo * method)); DO_APP_FUNC(0x02768780, Object *, ListDictionary_get_Item, (ListDictionary * __this, Object * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2468, ListDictionary_get_Item__MethodInfo); DO_APP_FUNC(0x027688C0, void, ListDictionary_set_Item, (ListDictionary * __this, Object * key, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2478, ListDictionary_set_Item__MethodInfo); DO_APP_FUNC(0x003CD440, int32_t, ListDictionary_get_Count, (ListDictionary * __this, MethodInfo * method)); DO_APP_FUNC(0x02768A80, ICollection *, ListDictionary_get_Keys, (ListDictionary * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, ListDictionary_get_IsReadOnly, (ListDictionary * __this, MethodInfo * method)); @@ -36667,29 +41986,42 @@ DO_APP_FUNC(0x0041AF00, bool, ListDictionary_get_IsSynchronized, (ListDictionary DO_APP_FUNC(0x02768B30, Object *, ListDictionary_get_SyncRoot, (ListDictionary * __this, MethodInfo * method)); DO_APP_FUNC(0x02768BE0, ICollection *, ListDictionary_get_Values, (ListDictionary * __this, MethodInfo * method)); DO_APP_FUNC(0x02768C90, void, ListDictionary_Add, (ListDictionary * __this, Object * key, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2400, ListDictionary_Add__MethodInfo); DO_APP_FUNC(0x01B18160, void, ListDictionary_Clear, (ListDictionary * __this, MethodInfo * method)); DO_APP_FUNC(0x02768F20, bool, ListDictionary_Contains, (ListDictionary * __this, Object * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE23E8, ListDictionary_Contains__MethodInfo); DO_APP_FUNC(0x02769050, void, ListDictionary_CopyTo, (ListDictionary * __this, Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE23F0, ListDictionary_CopyTo__MethodInfo); DO_APP_FUNC(0x02769300, IDictionaryEnumerator *, ListDictionary_GetEnumerator, (ListDictionary * __this, MethodInfo * method)); DO_APP_FUNC(0x02769370, IEnumerator *, ListDictionary_System_Collections_IEnumerable_GetEnumerator, (ListDictionary * __this, MethodInfo * method)); DO_APP_FUNC(0x027693E0, void, ListDictionary_Remove, (ListDictionary * __this, Object * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2448, ListDictionary_Remove__MethodInfo); DO_APP_FUNC(0x01B187B0, void, ListDictionary_NodeEnumerator__ctor, (ListDictionary_NodeEnumerator * __this, ListDictionary * list, MethodInfo * method)); DO_APP_FUNC(0x02769540, Object *, ListDictionary_NodeEnumerator_get_Current, (ListDictionary_NodeEnumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x02769610, DictionaryEntry, ListDictionary_NodeEnumerator_get_Entry, (ListDictionary_NodeEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2418, ListDictionary_NodeEnumerator_get_Entry__MethodInfo); DO_APP_FUNC(0x027696A0, Object *, ListDictionary_NodeEnumerator_get_Key, (ListDictionary_NodeEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2420, ListDictionary_NodeEnumerator_get_Key__MethodInfo); DO_APP_FUNC(0x02769720, Object *, ListDictionary_NodeEnumerator_get_Value, (ListDictionary_NodeEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2408, ListDictionary_NodeEnumerator_get_Value__MethodInfo); DO_APP_FUNC(0x027697A0, bool, ListDictionary_NodeEnumerator_MoveNext, (ListDictionary_NodeEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2410, ListDictionary_NodeEnumerator_MoveNext__MethodInfo); DO_APP_FUNC(0x027698D0, void, ListDictionary_NodeEnumerator_Reset, (ListDictionary_NodeEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2428, ListDictionary_NodeEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BCCC0, void, ListDictionary_NodeKeyValueCollection__ctor, (ListDictionary_NodeKeyValueCollection * __this, ListDictionary * list, bool isKeys, MethodInfo * method)); DO_APP_FUNC(0x027699B0, void, ListDictionary_NodeKeyValueCollection_System_Collections_ICollection_CopyTo, (ListDictionary_NodeKeyValueCollection * __this, Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2430, ListDictionary_NodeKeyValueCollection_System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x01B18F30, int32_t, ListDictionary_NodeKeyValueCollection_System_Collections_ICollection_get_Count, (ListDictionary_NodeKeyValueCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, ListDictionary_NodeKeyValueCollection_System_Collections_ICollection_get_IsSynchronized, (ListDictionary_NodeKeyValueCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x02769B20, Object *, ListDictionary_NodeKeyValueCollection_System_Collections_ICollection_get_SyncRoot, (ListDictionary_NodeKeyValueCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x02769BE0, IEnumerator *, ListDictionary_NodeKeyValueCollection_System_Collections_IEnumerable_GetEnumerator, (ListDictionary_NodeKeyValueCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x01B19160, void, ListDictionary_NodeKeyValueCollection_NodeKeyValueEnumerator__ctor, (ListDictionary_NodeKeyValueCollection_NodeKeyValueEnumerator * __this, ListDictionary * list, bool isKeys, MethodInfo * method)); DO_APP_FUNC(0x02769D10, Object *, ListDictionary_NodeKeyValueCollection_NodeKeyValueEnumerator_get_Current, (ListDictionary_NodeKeyValueCollection_NodeKeyValueEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2360, ListDictionary_NodeKeyValueCollection_NodeKeyValueEnumerator_get_Current__MethodInfo); DO_APP_FUNC(0x02769DA0, bool, ListDictionary_NodeKeyValueCollection_NodeKeyValueEnumerator_MoveNext, (ListDictionary_NodeKeyValueCollection_NodeKeyValueEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2340, ListDictionary_NodeKeyValueCollection_NodeKeyValueEnumerator_MoveNext__MethodInfo); DO_APP_FUNC(0x02769ED0, void, ListDictionary_NodeKeyValueCollection_NodeKeyValueEnumerator_Reset, (ListDictionary_NodeKeyValueCollection_NodeKeyValueEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2350, ListDictionary_NodeKeyValueCollection_NodeKeyValueEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003AE050, void, ListDictionary_DictionaryNode__ctor, (ListDictionary_DictionaryNode * __this, MethodInfo * method)); DO_APP_FUNC(0x02769FB0, void, NameValueCollection__ctor, (NameValueCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x0276A0F0, void, NameValueCollection__ctor_1, (NameValueCollection * __this, NameValueCollection * col, MethodInfo * method)); @@ -36698,20 +42030,26 @@ DO_APP_FUNC(0x0276A340, void, NameValueCollection__ctor_3, (NameValueCollection DO_APP_FUNC(0x0276A470, void, NameValueCollection__ctor_4, (NameValueCollection * __this, IEqualityComparer * equalityComparer, MethodInfo * method)); DO_APP_FUNC(0x0276A570, void, NameValueCollection__ctor_5, (NameValueCollection * __this, int32_t capacity, IEqualityComparer * equalityComparer, MethodInfo * method)); DO_APP_FUNC(0x0276A690, void, NameValueCollection__ctor_6, (NameValueCollection * __this, int32_t capacity, NameValueCollection * col, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE23D0, NameValueCollection__ctor_6__MethodInfo); DO_APP_FUNC(0x0276A8C0, void, NameValueCollection__ctor_7, (NameValueCollection * __this, int32_t capacity, IHashCodeProvider * hashProvider, IComparer * comparer, MethodInfo * method)); DO_APP_FUNC(0x0276A9E0, void, NameValueCollection__ctor_8, (NameValueCollection * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x0077F290, void, NameValueCollection_InvalidateCachedArrays, (NameValueCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x0276AA80, String *, NameValueCollection_GetAsOneString, (ArrayList * list, MethodInfo * method)); DO_APP_FUNC(0x0276ACE0, String__Array *, NameValueCollection_GetAsStringArray, (ArrayList * list, MethodInfo * method)); DO_APP_FUNC(0x0276AD90, void, NameValueCollection_Add, (NameValueCollection * __this, NameValueCollection * c, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE23B0, NameValueCollection_Add__MethodInfo); DO_APP_FUNC(0x0276AEF0, void, NameValueCollection_Clear, (NameValueCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE23B8, NameValueCollection_Clear__MethodInfo); DO_APP_FUNC(0x0276AFE0, void, NameValueCollection_CopyTo, (NameValueCollection * __this, Array * dest, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE22B8, NameValueCollection_CopyTo__MethodInfo); DO_APP_FUNC(0x022CBF90, bool, NameValueCollection_HasKeys, (NameValueCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x0276B400, bool, NameValueCollection_InternalHasKeys, (NameValueCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x0276B440, void, NameValueCollection_Add_1, (NameValueCollection * __this, String * name, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE22D8, NameValueCollection_Add_1__MethodInfo); DO_APP_FUNC(0x0276B5D0, String *, NameValueCollection_Get, (NameValueCollection * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x0276B670, String__Array *, NameValueCollection_GetValues, (NameValueCollection * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x0276B710, void, NameValueCollection_Set, (NameValueCollection * __this, String * name, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2290, NameValueCollection_Set__MethodInfo); DO_APP_FUNC(0x026A5C90, void, NameValueCollection_Remove, (NameValueCollection * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x0276B990, String *, NameValueCollection_get_Item, (NameValueCollection * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x0276B9B0, void, NameValueCollection_set_Item, (NameValueCollection * __this, String * name, String * value, MethodInfo * method)); @@ -36737,23 +42075,32 @@ DO_APP_FUNC(0x0276C1E0, Hashtable *, OrderedDictionary_get_objectsTable, (Ordere DO_APP_FUNC(0x0276C2B0, Object *, OrderedDictionary_System_Collections_ICollection_get_SyncRoot, (OrderedDictionary * __this, MethodInfo * method)); DO_APP_FUNC(0x0276C360, Object *, OrderedDictionary_get_Item, (OrderedDictionary * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x0276C400, void, OrderedDictionary_set_Item, (OrderedDictionary * __this, int32_t index, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE21D0, OrderedDictionary_set_Item__MethodInfo); DO_APP_FUNC(0x0276C650, Object *, OrderedDictionary_get_Item_1, (OrderedDictionary * __this, Object * key, MethodInfo * method)); DO_APP_FUNC(0x0276C690, void, OrderedDictionary_set_Item_1, (OrderedDictionary * __this, Object * key, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE21C8, OrderedDictionary_set_Item_1__MethodInfo); DO_APP_FUNC(0x0276C950, ICollection *, OrderedDictionary_get_Values, (OrderedDictionary * __this, MethodInfo * method)); DO_APP_FUNC(0x0276CA00, void, OrderedDictionary_Add, (OrderedDictionary * __this, Object * key, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE21B0, OrderedDictionary_Add__MethodInfo); DO_APP_FUNC(0x0276CB40, void, OrderedDictionary_Clear, (OrderedDictionary * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE21B8, OrderedDictionary_Clear__MethodInfo); DO_APP_FUNC(0x0276CC00, OrderedDictionary *, OrderedDictionary_AsReadOnly, (OrderedDictionary * __this, MethodInfo * method)); DO_APP_FUNC(0x0276CD60, bool, OrderedDictionary_Contains, (OrderedDictionary * __this, Object * key, MethodInfo * method)); DO_APP_FUNC(0x0276CDA0, void, OrderedDictionary_CopyTo, (OrderedDictionary * __this, Array * array, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x0276CDF0, int32_t, OrderedDictionary_IndexOfKey, (OrderedDictionary * __this, Object * key, MethodInfo * method)); DO_APP_FUNC(0x0276CF60, void, OrderedDictionary_Insert, (OrderedDictionary * __this, int32_t index, Object * key, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2240, OrderedDictionary_Insert__MethodInfo); DO_APP_FUNC(0x0276D140, void, OrderedDictionary_RemoveAt, (OrderedDictionary * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2230, OrderedDictionary_RemoveAt__MethodInfo); DO_APP_FUNC(0x0276D320, void, OrderedDictionary_Remove, (OrderedDictionary * __this, Object * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2270, OrderedDictionary_Remove__MethodInfo); DO_APP_FUNC(0x0276D460, IDictionaryEnumerator *, OrderedDictionary_GetEnumerator, (OrderedDictionary * __this, MethodInfo * method)); DO_APP_FUNC(0x0276D530, IEnumerator *, OrderedDictionary_System_Collections_IEnumerable_GetEnumerator, (OrderedDictionary * __this, MethodInfo * method)); DO_APP_FUNC(0x0276D600, void, OrderedDictionary_GetObjectData, (OrderedDictionary * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2210, OrderedDictionary_GetObjectData__MethodInfo); DO_APP_FUNC(0x0276D8B0, void, OrderedDictionary_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization, (OrderedDictionary * __this, Object * sender, MethodInfo * method)); DO_APP_FUNC(0x0276D8D0, void, OrderedDictionary_OnDeserialization, (OrderedDictionary * __this, Object * sender, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2148, OrderedDictionary_OnDeserialization__MethodInfo); DO_APP_FUNC(0x0276DCF0, void, OrderedDictionary_OrderedDictionaryEnumerator__ctor, (OrderedDictionary_OrderedDictionaryEnumerator * __this, ArrayList * array, int32_t objectReturnType, MethodInfo * method)); DO_APP_FUNC(0x0276DD90, Object *, OrderedDictionary_OrderedDictionaryEnumerator_get_Current, (OrderedDictionary_OrderedDictionaryEnumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x0276E050, DictionaryEntry, OrderedDictionary_OrderedDictionaryEnumerator_get_Entry, (OrderedDictionary_OrderedDictionaryEnumerator * __this, MethodInfo * method)); @@ -36763,6 +42110,7 @@ DO_APP_FUNC(0x0276E280, bool, OrderedDictionary_OrderedDictionaryEnumerator_Move DO_APP_FUNC(0x0276E2D0, void, OrderedDictionary_OrderedDictionaryEnumerator_Reset, (OrderedDictionary_OrderedDictionaryEnumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCCC0, void, OrderedDictionary_OrderedDictionaryKeyValueCollection__ctor, (OrderedDictionary_OrderedDictionaryKeyValueCollection * __this, ArrayList * array, bool isKeys, MethodInfo * method)); DO_APP_FUNC(0x0276E320, void, OrderedDictionary_OrderedDictionaryKeyValueCollection_System_Collections_ICollection_CopyTo, (OrderedDictionary_OrderedDictionaryKeyValueCollection * __this, Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2190, OrderedDictionary_OrderedDictionaryKeyValueCollection_System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x01B1A1A0, int32_t, OrderedDictionary_OrderedDictionaryKeyValueCollection_System_Collections_ICollection_get_Count, (OrderedDictionary_OrderedDictionaryKeyValueCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, OrderedDictionary_OrderedDictionaryKeyValueCollection_System_Collections_ICollection_get_IsSynchronized, (OrderedDictionary_OrderedDictionaryKeyValueCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x01B1A430, Object *, OrderedDictionary_OrderedDictionaryKeyValueCollection_System_Collections_ICollection_get_SyncRoot, (OrderedDictionary_OrderedDictionaryKeyValueCollection * __this, MethodInfo * method)); @@ -36774,6 +42122,7 @@ DO_APP_FUNC(0x0041AF00, bool, StringCollection_System_Collections_IList_get_IsRe DO_APP_FUNC(0x0041AF00, bool, StringCollection_System_Collections_IList_get_IsFixedSize, (StringCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x0276E830, int32_t, StringCollection_Add, (StringCollection * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x0276E860, void, StringCollection_AddRange, (StringCollection * __this, String__Array * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE21A0, StringCollection_AddRange__MethodInfo); DO_APP_FUNC(0x0276E8F0, void, StringCollection_Clear, (StringCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x01B1A730, bool, StringCollection_Contains, (StringCollection * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x01B1A460, void, StringCollection_CopyTo, (StringCollection * __this, String__Array * array, int32_t index, MethodInfo * method)); @@ -36800,34 +42149,51 @@ DO_APP_FUNC(0x0276EFF0, String *, StringEnumerator_get_Current, (StringEnumerato DO_APP_FUNC(0x0276F080, bool, StringEnumerator_MoveNext, (StringEnumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x0276F0D0, void, StringEnumerator_Reset, (StringEnumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x0276F120, void, StringEnumerator__ctor_1, (StringEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE20F8, StringEnumerator__ctor_1__MethodInfo); DO_APP_FUNC(0x0276F150, void, StringDictionary__ctor, (StringDictionary * __this, MethodInfo * method)); DO_APP_FUNC(0x023D4C40, int32_t, StringDictionary_get_Count, (StringDictionary * __this, MethodInfo * method)); DO_APP_FUNC(0x01B2BE70, bool, StringDictionary_get_IsSynchronized, (StringDictionary * __this, MethodInfo * method)); DO_APP_FUNC(0x0276F210, String *, StringDictionary_get_Item, (StringDictionary * __this, String * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE20D8, StringDictionary_get_Item__MethodInfo); DO_APP_FUNC(0x0276F300, void, StringDictionary_set_Item, (StringDictionary * __this, String * key, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE20E0, StringDictionary_set_Item__MethodInfo); DO_APP_FUNC(0x0276F3B0, ICollection *, StringDictionary_get_Keys, (StringDictionary * __this, MethodInfo * method)); DO_APP_FUNC(0x01B2BEA0, Object *, StringDictionary_get_SyncRoot, (StringDictionary * __this, MethodInfo * method)); DO_APP_FUNC(0x0276F3E0, ICollection *, StringDictionary_get_Values, (StringDictionary * __this, MethodInfo * method)); DO_APP_FUNC(0x0276F410, void, StringDictionary_Add, (StringDictionary * __this, String * key, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE20B8, StringDictionary_Add__MethodInfo); DO_APP_FUNC(0x0276F4C0, void, StringDictionary_Clear, (StringDictionary * __this, MethodInfo * method)); DO_APP_FUNC(0x0276F4F0, bool, StringDictionary_ContainsKey, (StringDictionary * __this, String * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE20C8, StringDictionary_ContainsKey__MethodInfo); DO_APP_FUNC(0x0276F590, bool, StringDictionary_ContainsValue, (StringDictionary * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x0276F5C0, void, StringDictionary_CopyTo, (StringDictionary * __this, Array * array, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x0276F5F0, IEnumerator *, StringDictionary_GetEnumerator, (StringDictionary * __this, MethodInfo * method)); DO_APP_FUNC(0x0276F620, void, StringDictionary_Remove, (StringDictionary * __this, String * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE20F0, StringDictionary_Remove__MethodInfo); DO_APP_FUNC(0x003BCBE0, void, StringDictionary_ReplaceHashtable, (StringDictionary * __this, Hashtable * useThisHashtableInstead, MethodInfo * method)); DO_APP_FUNC(0x0276F6C0, IDictionary_2_System_String_System_String_ *, StringDictionary_AsGenericDictionary, (StringDictionary * __this, MethodInfo * method)); DO_APP_FUNC(0x0276F760, void, NotifyCollectionChangedEventArgs__ctor, (NotifyCollectionChangedEventArgs * __this, NotifyCollectionChangedAction__Enum action, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2018, NotifyCollectionChangedEventArgs__ctor__MethodInfo); DO_APP_FUNC(0x0276F8D0, void, NotifyCollectionChangedEventArgs__ctor_1, (NotifyCollectionChangedEventArgs * __this, NotifyCollectionChangedAction__Enum action, Object * changedItem, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1F90, NotifyCollectionChangedEventArgs__ctor_1__MethodInfo); DO_APP_FUNC(0x0276FB00, void, NotifyCollectionChangedEventArgs__ctor_2, (NotifyCollectionChangedEventArgs * __this, NotifyCollectionChangedAction__Enum action, Object * changedItem, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1FB8, NotifyCollectionChangedEventArgs__ctor_2__MethodInfo); DO_APP_FUNC(0x0276FD90, void, NotifyCollectionChangedEventArgs__ctor_3, (NotifyCollectionChangedEventArgs * __this, NotifyCollectionChangedAction__Enum action, IList * changedItems, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2060, NotifyCollectionChangedEventArgs__ctor_3__MethodInfo); DO_APP_FUNC(0x0276FF90, void, NotifyCollectionChangedEventArgs__ctor_4, (NotifyCollectionChangedEventArgs * __this, NotifyCollectionChangedAction__Enum action, IList * changedItems, int32_t startingIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2088, NotifyCollectionChangedEventArgs__ctor_4__MethodInfo); DO_APP_FUNC(0x02770260, void, NotifyCollectionChangedEventArgs__ctor_5, (NotifyCollectionChangedEventArgs * __this, NotifyCollectionChangedAction__Enum action, Object * newItem, Object * oldItem, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2030, NotifyCollectionChangedEventArgs__ctor_5__MethodInfo); DO_APP_FUNC(0x02770470, void, NotifyCollectionChangedEventArgs__ctor_6, (NotifyCollectionChangedEventArgs * __this, NotifyCollectionChangedAction__Enum action, Object * newItem, Object * oldItem, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2040, NotifyCollectionChangedEventArgs__ctor_6__MethodInfo); DO_APP_FUNC(0x02770670, void, NotifyCollectionChangedEventArgs__ctor_7, (NotifyCollectionChangedEventArgs * __this, NotifyCollectionChangedAction__Enum action, IList * newItems, IList * oldItems, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2038, NotifyCollectionChangedEventArgs__ctor_7__MethodInfo); DO_APP_FUNC(0x02770860, void, NotifyCollectionChangedEventArgs__ctor_8, (NotifyCollectionChangedEventArgs * __this, NotifyCollectionChangedAction__Enum action, IList * newItems, IList * oldItems, int32_t startingIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1F38, NotifyCollectionChangedEventArgs__ctor_8__MethodInfo); DO_APP_FUNC(0x02770A60, void, NotifyCollectionChangedEventArgs__ctor_9, (NotifyCollectionChangedEventArgs * __this, NotifyCollectionChangedAction__Enum action, Object * changedItem, int32_t index, int32_t oldIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1F28, NotifyCollectionChangedEventArgs__ctor_9__MethodInfo); DO_APP_FUNC(0x02770C80, void, NotifyCollectionChangedEventArgs__ctor_10, (NotifyCollectionChangedEventArgs * __this, NotifyCollectionChangedAction__Enum action, IList * changedItems, int32_t index, int32_t oldIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1ED0, NotifyCollectionChangedEventArgs__ctor_10__MethodInfo); DO_APP_FUNC(0x02770E30, void, NotifyCollectionChangedEventArgs__ctor_11, (NotifyCollectionChangedEventArgs * __this, NotifyCollectionChangedAction__Enum action, IList * newItems, IList * oldItems, int32_t newIndex, int32_t oldIndex, MethodInfo * method)); DO_APP_FUNC(0x02771070, void, NotifyCollectionChangedEventArgs_InitializeAddOrRemove, (NotifyCollectionChangedEventArgs * __this, NotifyCollectionChangedAction__Enum action, IList * changedItems, int32_t startingIndex, MethodInfo * method)); DO_APP_FUNC(0x027710A0, void, NotifyCollectionChangedEventArgs_InitializeAdd, (NotifyCollectionChangedEventArgs * __this, NotifyCollectionChangedAction__Enum action, IList * newItems, int32_t newStartingIndex, MethodInfo * method)); @@ -36849,22 +42215,33 @@ DO_APP_FUNC(0x0041AEF0, bool, ReadOnlyList_get_IsFixedSize, (ReadOnlyList * __th DO_APP_FUNC(0x027713B0, bool, ReadOnlyList_get_IsSynchronized, (ReadOnlyList * __this, MethodInfo * method)); DO_APP_FUNC(0x02771400, Object *, ReadOnlyList_get_Item, (ReadOnlyList * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x02771460, void, ReadOnlyList_set_Item, (ReadOnlyList * __this, int32_t index, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1F60, ReadOnlyList_set_Item__MethodInfo); DO_APP_FUNC(0x027714C0, Object *, ReadOnlyList_get_SyncRoot, (ReadOnlyList * __this, MethodInfo * method)); DO_APP_FUNC(0x02771510, int32_t, ReadOnlyList_Add, (ReadOnlyList * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1F50, ReadOnlyList_Add__MethodInfo); DO_APP_FUNC(0x02771570, void, ReadOnlyList_Clear, (ReadOnlyList * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1F68, ReadOnlyList_Clear__MethodInfo); DO_APP_FUNC(0x027715D0, bool, ReadOnlyList_Contains, (ReadOnlyList * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x02771630, void, ReadOnlyList_CopyTo, (ReadOnlyList * __this, Array * array, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x027716A0, IEnumerator *, ReadOnlyList_GetEnumerator, (ReadOnlyList * __this, MethodInfo * method)); DO_APP_FUNC(0x027716F0, int32_t, ReadOnlyList_IndexOf, (ReadOnlyList * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x02771750, void, ReadOnlyList_Insert, (ReadOnlyList * __this, int32_t index, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1E28, ReadOnlyList_Insert__MethodInfo); DO_APP_FUNC(0x027717B0, void, ReadOnlyList_Remove, (ReadOnlyList * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1DF8, ReadOnlyList_Remove__MethodInfo); DO_APP_FUNC(0x02771810, void, ReadOnlyList_RemoveAt, (ReadOnlyList * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1E08, ReadOnlyList_RemoveAt__MethodInfo); DO_APP_FUNC(0x02771870, void, CaseSensitiveStringDictionary__ctor, (CaseSensitiveStringDictionary * __this, MethodInfo * method)); DO_APP_FUNC(0x02771880, String *, CaseSensitiveStringDictionary_get_Item, (CaseSensitiveStringDictionary * __this, String * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1D98, CaseSensitiveStringDictionary_get_Item__MethodInfo); DO_APP_FUNC(0x02771960, void, CaseSensitiveStringDictionary_set_Item, (CaseSensitiveStringDictionary * __this, String * key, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1DA8, CaseSensitiveStringDictionary_set_Item__MethodInfo); DO_APP_FUNC(0x027719F0, void, CaseSensitiveStringDictionary_Add, (CaseSensitiveStringDictionary * __this, String * key, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1DC0, CaseSensitiveStringDictionary_Add__MethodInfo); DO_APP_FUNC(0x02771A80, bool, CaseSensitiveStringDictionary_ContainsKey, (CaseSensitiveStringDictionary * __this, String * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1DC8, CaseSensitiveStringDictionary_ContainsKey__MethodInfo); DO_APP_FUNC(0x02771B10, void, CaseSensitiveStringDictionary_Remove, (CaseSensitiveStringDictionary * __this, String * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1DB0, CaseSensitiveStringDictionary_Remove__MethodInfo); DO_APP_FUNC(0x02771BA0, void, NameObjectCollectionBase__ctor, (NameObjectCollectionBase * __this, MethodInfo * method)); DO_APP_FUNC(0x02771CB0, void, NameObjectCollectionBase__ctor_1, (NameObjectCollectionBase * __this, IEqualityComparer * equalityComparer, MethodInfo * method)); DO_APP_FUNC(0x02771D80, void, NameObjectCollectionBase__ctor_2, (NameObjectCollectionBase * __this, int32_t capacity, IEqualityComparer * equalityComparer, MethodInfo * method)); @@ -36874,7 +42251,9 @@ DO_APP_FUNC(0x02772020, void, NameObjectCollectionBase__ctor_5, (NameObjectColle DO_APP_FUNC(0x003AE050, void, NameObjectCollectionBase__ctor_6, (NameObjectCollectionBase * __this, DBNull * dummy, MethodInfo * method)); DO_APP_FUNC(0x003C73A0, void, NameObjectCollectionBase__ctor_7, (NameObjectCollectionBase * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x02772120, void, NameObjectCollectionBase_GetObjectData, (NameObjectCollectionBase * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1E70, NameObjectCollectionBase_GetObjectData__MethodInfo); DO_APP_FUNC(0x02772F60, void, NameObjectCollectionBase_OnDeserialization, (NameObjectCollectionBase * __this, Object * sender, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1CF0, NameObjectCollectionBase_OnDeserialization__MethodInfo); DO_APP_FUNC(0x027739B0, void, NameObjectCollectionBase_Reset, (NameObjectCollectionBase * __this, MethodInfo * method)); DO_APP_FUNC(0x02773B80, void, NameObjectCollectionBase_Reset_1, (NameObjectCollectionBase * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x02773D50, NameObjectCollectionBase_NameObjectEntry *, NameObjectCollectionBase_FindEntry, (NameObjectCollectionBase * __this, String * key, MethodInfo * method)); @@ -36884,41 +42263,55 @@ DO_APP_FUNC(0x003BCD20, bool, NameObjectCollectionBase_get_IsReadOnly, (NameObje DO_APP_FUNC(0x003BCD30, void, NameObjectCollectionBase_set_IsReadOnly, (NameObjectCollectionBase * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x0276B400, bool, NameObjectCollectionBase_BaseHasKeys, (NameObjectCollectionBase * __this, MethodInfo * method)); DO_APP_FUNC(0x02773E10, void, NameObjectCollectionBase_BaseAdd, (NameObjectCollectionBase * __this, String * name, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1C80, NameObjectCollectionBase_BaseAdd__MethodInfo); DO_APP_FUNC(0x02774030, void, NameObjectCollectionBase_BaseRemove, (NameObjectCollectionBase * __this, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1CD8, NameObjectCollectionBase_BaseRemove__MethodInfo); DO_APP_FUNC(0x027742D0, void, NameObjectCollectionBase_BaseRemoveAt, (NameObjectCollectionBase * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1CB0, NameObjectCollectionBase_BaseRemoveAt__MethodInfo); DO_APP_FUNC(0x02774400, void, NameObjectCollectionBase_BaseClear, (NameObjectCollectionBase * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1CC0, NameObjectCollectionBase_BaseClear__MethodInfo); DO_APP_FUNC(0x02774490, Object *, NameObjectCollectionBase_BaseGet, (NameObjectCollectionBase * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x027744B0, void, NameObjectCollectionBase_BaseSet, (NameObjectCollectionBase * __this, String * name, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1D70, NameObjectCollectionBase_BaseSet__MethodInfo); DO_APP_FUNC(0x027745D0, Object *, NameObjectCollectionBase_BaseGet_1, (NameObjectCollectionBase * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x02774670, String *, NameObjectCollectionBase_BaseGetKey, (NameObjectCollectionBase * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x02774710, void, NameObjectCollectionBase_BaseSet_1, (NameObjectCollectionBase * __this, int32_t index, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1D88, NameObjectCollectionBase_BaseSet_1__MethodInfo); DO_APP_FUNC(0x027748C0, IEnumerator *, NameObjectCollectionBase_GetEnumerator, (NameObjectCollectionBase * __this, MethodInfo * method)); DO_APP_FUNC(0x025C96F0, int32_t, NameObjectCollectionBase_get_Count, (NameObjectCollectionBase * __this, MethodInfo * method)); DO_APP_FUNC(0x02774930, void, NameObjectCollectionBase_System_Collections_ICollection_CopyTo, (NameObjectCollectionBase * __this, Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1D38, NameObjectCollectionBase_System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x02774CA0, Object *, NameObjectCollectionBase_System_Collections_ICollection_get_SyncRoot, (NameObjectCollectionBase * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, NameObjectCollectionBase_System_Collections_ICollection_get_IsSynchronized, (NameObjectCollectionBase * __this, MethodInfo * method)); DO_APP_FUNC(0x02774D50, String__Array *, NameObjectCollectionBase_BaseGetAllKeys, (NameObjectCollectionBase * __this, MethodInfo * method)); DO_APP_FUNC(0x02774EB0, Object__Array *, NameObjectCollectionBase_BaseGetAllValues, (NameObjectCollectionBase * __this, MethodInfo * method)); DO_APP_FUNC(0x02775010, Object__Array *, NameObjectCollectionBase_BaseGetAllValues_1, (NameObjectCollectionBase * __this, Type * type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1BF0, NameObjectCollectionBase_BaseGetAllValues_1__MethodInfo); DO_APP_FUNC(0x02775240, NameObjectCollectionBase_KeysCollection *, NameObjectCollectionBase_get_Keys, (NameObjectCollectionBase * __this, MethodInfo * method)); DO_APP_FUNC(0x02775350, void, NameObjectCollectionBase__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003BCE40, void, NameObjectCollectionBase_NameObjectEntry__ctor, (NameObjectCollectionBase_NameObjectEntry * __this, String * name, Object * value, MethodInfo * method)); DO_APP_FUNC(0x02775450, void, NameObjectCollectionBase_NameObjectKeysEnumerator__ctor, (NameObjectCollectionBase_NameObjectKeysEnumerator * __this, NameObjectCollectionBase * coll, MethodInfo * method)); DO_APP_FUNC(0x027754D0, bool, NameObjectCollectionBase_NameObjectKeysEnumerator_MoveNext, (NameObjectCollectionBase_NameObjectKeysEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1BD8, NameObjectCollectionBase_NameObjectKeysEnumerator_MoveNext__MethodInfo); DO_APP_FUNC(0x027755B0, void, NameObjectCollectionBase_NameObjectKeysEnumerator_Reset, (NameObjectCollectionBase_NameObjectKeysEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1BC0, NameObjectCollectionBase_NameObjectKeysEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x02775650, Object *, NameObjectCollectionBase_NameObjectKeysEnumerator_get_Current, (NameObjectCollectionBase_NameObjectKeysEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1BC8, NameObjectCollectionBase_NameObjectKeysEnumerator_get_Current__MethodInfo); DO_APP_FUNC(0x003BCBE0, void, NameObjectCollectionBase_KeysCollection__ctor, (NameObjectCollectionBase_KeysCollection * __this, NameObjectCollectionBase * coll, MethodInfo * method)); DO_APP_FUNC(0x02775710, String *, NameObjectCollectionBase_KeysCollection_Get, (NameObjectCollectionBase_KeysCollection * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01D474B0, String *, NameObjectCollectionBase_KeysCollection_get_Item, (NameObjectCollectionBase_KeysCollection * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x02775730, IEnumerator *, NameObjectCollectionBase_KeysCollection_GetEnumerator, (NameObjectCollectionBase_KeysCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x0244EB80, int32_t, NameObjectCollectionBase_KeysCollection_get_Count, (NameObjectCollectionBase_KeysCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x027757A0, void, NameObjectCollectionBase_KeysCollection_System_Collections_ICollection_CopyTo, (NameObjectCollectionBase_KeysCollection * __this, Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1C70, NameObjectCollectionBase_KeysCollection_System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x02775B40, Object *, NameObjectCollectionBase_KeysCollection_System_Collections_ICollection_get_SyncRoot, (NameObjectCollectionBase_KeysCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, NameObjectCollectionBase_KeysCollection_System_Collections_ICollection_get_IsSynchronized, (NameObjectCollectionBase_KeysCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x02775B90, void, NameObjectCollectionBase_KeysCollection__ctor_1, (NameObjectCollectionBase_KeysCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1C28, NameObjectCollectionBase_KeysCollection__ctor_1__MethodInfo); DO_APP_FUNC(0x003BCE40, void, CompatibleComparer_1__ctor, (CompatibleComparer_1 * __this, IComparer * comparer, IHashCodeProvider * hashCodeProvider, MethodInfo * method)); DO_APP_FUNC(0x02775BC0, bool, CompatibleComparer_1_Equals, (CompatibleComparer_1 * __this, Object * a, Object * b, MethodInfo * method)); DO_APP_FUNC(0x02775CE0, int32_t, CompatibleComparer_1_GetHashCode, (CompatibleComparer_1 * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1C40, CompatibleComparer_1_GetHashCode__MethodInfo); DO_APP_FUNC(0x003BB3C0, IComparer *, CompatibleComparer_1_get_Comparer, (CompatibleComparer_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, IHashCodeProvider *, CompatibleComparer_1_get_HashCodeProvider, (CompatibleComparer_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02775DC0, IComparer *, CompatibleComparer_1_get_DefaultComparer, (MethodInfo * method)); @@ -36929,22 +42322,27 @@ DO_APP_FUNC(0x02776270, bool, GenericAdapter_ContainsKey, (GenericAdapter * __th DO_APP_FUNC(0x027762A0, void, GenericAdapter_Clear, (GenericAdapter * __this, MethodInfo * method)); DO_APP_FUNC(0x00542450, int32_t, GenericAdapter_get_Count, (GenericAdapter * __this, MethodInfo * method)); DO_APP_FUNC(0x027762D0, String *, GenericAdapter_get_Item, (GenericAdapter * __this, String * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1AA8, GenericAdapter_get_Item__MethodInfo); DO_APP_FUNC(0x027761E0, void, GenericAdapter_set_Item, (GenericAdapter * __this, String * key, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1AF0, GenericAdapter_set_Item__MethodInfo); DO_APP_FUNC(0x027763D0, ICollection_1_System_String_ *, GenericAdapter_get_Keys, (GenericAdapter * __this, MethodInfo * method)); DO_APP_FUNC(0x02776550, ICollection_1_System_String_ *, GenericAdapter_get_Values, (GenericAdapter * __this, MethodInfo * method)); DO_APP_FUNC(0x027766D0, bool, GenericAdapter_Remove, (GenericAdapter * __this, String * key, MethodInfo * method)); -DO_APP_FUNC(0x02776740, bool, GenericAdapter_TryGetValue, (GenericAdapter * __this, String * key, String * value, MethodInfo * method)); +DO_APP_FUNC(0x02776740, bool, GenericAdapter_TryGetValue, (GenericAdapter * __this, String * key, String * * value, MethodInfo * method)); DO_APP_FUNC(0x02776880, void, GenericAdapter_System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_System_String_System_String___Add, (GenericAdapter * __this, KeyValuePair_2_System_String_System_String_ item, MethodInfo * method)); DO_APP_FUNC(0x02776900, bool, GenericAdapter_System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_System_String_System_String___Contains, (GenericAdapter * __this, KeyValuePair_2_System_String_System_String_ item, MethodInfo * method)); DO_APP_FUNC(0x02776AC0, void, GenericAdapter_System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_System_String_System_String___CopyTo, (GenericAdapter * __this, KeyValuePair_2_System_String_System_String___Array * array, int32_t arrayIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1B70, GenericAdapter_System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_System_String_System_String___CopyTo__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, GenericAdapter_System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_System_String_System_String___get_IsReadOnly, (GenericAdapter * __this, MethodInfo * method)); DO_APP_FUNC(0x02776F00, bool, GenericAdapter_System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_System_String_System_String___Remove, (GenericAdapter * __this, KeyValuePair_2_System_String_System_String_ item, MethodInfo * method)); DO_APP_FUNC(0x02777000, IEnumerator *, GenericAdapter_System_Collections_IEnumerable_GetEnumerator, (GenericAdapter * __this, MethodInfo * method)); DO_APP_FUNC(0x02777000, IEnumerator_1_KeyValuePair_2_System_String_System_String_ *, GenericAdapter_GetEnumerator, (GenericAdapter * __this, MethodInfo * method)); DO_APP_FUNC(0x027770A0, void, GenericAdapter_ICollectionToGenericCollectionAdapter__ctor, (GenericAdapter_ICollectionToGenericCollectionAdapter * __this, StringDictionary * source, GenericAdapter_KeyOrValue__Enum keyOrValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1B18, GenericAdapter_ICollectionToGenericCollectionAdapter__ctor__MethodInfo); DO_APP_FUNC(0x02777160, void, GenericAdapter_ICollectionToGenericCollectionAdapter_Add, (GenericAdapter_ICollectionToGenericCollectionAdapter * __this, String * item, MethodInfo * method)); DO_APP_FUNC(0x02777160, void, GenericAdapter_ICollectionToGenericCollectionAdapter_Clear, (GenericAdapter_ICollectionToGenericCollectionAdapter * __this, MethodInfo * method)); DO_APP_FUNC(0x02777170, void, GenericAdapter_ICollectionToGenericCollectionAdapter_ThrowNotSupportedException, (GenericAdapter_ICollectionToGenericCollectionAdapter * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1B28, GenericAdapter_ICollectionToGenericCollectionAdapter_ThrowNotSupportedException__MethodInfo); DO_APP_FUNC(0x02777240, bool, GenericAdapter_ICollectionToGenericCollectionAdapter_Contains, (GenericAdapter_ICollectionToGenericCollectionAdapter * __this, String * item, MethodInfo * method)); DO_APP_FUNC(0x027772A0, void, GenericAdapter_ICollectionToGenericCollectionAdapter_CopyTo, (GenericAdapter_ICollectionToGenericCollectionAdapter * __this, String__Array * array, int32_t arrayIndex, MethodInfo * method)); DO_APP_FUNC(0x00542450, int32_t, GenericAdapter_ICollectionToGenericCollectionAdapter_get_Count, (GenericAdapter_ICollectionToGenericCollectionAdapter * __this, MethodInfo * method)); @@ -36959,6 +42357,7 @@ DO_APP_FUNC(0x027775B0, bool, GenericAdapter_ICollectionToGenericCollectionAdapt DO_APP_FUNC(0x027778D0, void, GenericAdapter_ICollectionToGenericCollectionAdapter_GetEnumerator_d_14___m__Finally1, (GenericAdapter_ICollectionToGenericCollectionAdapter_GetEnumerator_d_14 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, String *, GenericAdapter_ICollectionToGenericCollectionAdapter_GetEnumerator_d_14_System_Collections_Generic_IEnumerator_System_String__get_Current, (GenericAdapter_ICollectionToGenericCollectionAdapter_GetEnumerator_d_14 * __this, MethodInfo * method)); DO_APP_FUNC(0x02777940, void, GenericAdapter_ICollectionToGenericCollectionAdapter_GetEnumerator_d_14_System_Collections_IEnumerator_Reset, (GenericAdapter_ICollectionToGenericCollectionAdapter_GetEnumerator_d_14 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB318, GenericAdapter_ICollectionToGenericCollectionAdapter_GetEnumerator_d_14_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, GenericAdapter_ICollectionToGenericCollectionAdapter_GetEnumerator_d_14_System_Collections_IEnumerator_get_Current, (GenericAdapter_ICollectionToGenericCollectionAdapter_GetEnumerator_d_14 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, GenericAdapter_GetEnumerator_d_25__ctor, (GenericAdapter_GetEnumerator_d_25 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x02777990, void, GenericAdapter_GetEnumerator_d_25_System_IDisposable_Dispose, (GenericAdapter_GetEnumerator_d_25 * __this, MethodInfo * method)); @@ -36966,6 +42365,7 @@ DO_APP_FUNC(0x02777A70, bool, GenericAdapter_GetEnumerator_d_25_MoveNext, (Gener DO_APP_FUNC(0x02777DD0, void, GenericAdapter_GetEnumerator_d_25___m__Finally1, (GenericAdapter_GetEnumerator_d_25 * __this, MethodInfo * method)); DO_APP_FUNC(0x0093E890, KeyValuePair_2_System_String_System_String_, GenericAdapter_GetEnumerator_d_25_System_Collections_Generic_IEnumerator_System_Collections_Generic_KeyValuePair_System_String_System_String___get_Current, (GenericAdapter_GetEnumerator_d_25 * __this, MethodInfo * method)); DO_APP_FUNC(0x02777E40, void, GenericAdapter_GetEnumerator_d_25_System_Collections_IEnumerator_Reset, (GenericAdapter_GetEnumerator_d_25 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB308, GenericAdapter_GetEnumerator_d_25_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x02777E90, Object *, GenericAdapter_GetEnumerator_d_25_System_Collections_IEnumerator_get_Current, (GenericAdapter_GetEnumerator_d_25 * __this, MethodInfo * method)); DO_APP_FUNC(0x01B2D910, void, CDSCollectionETWBCLProvider_1__ctor, (CDSCollectionETWBCLProvider_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x00A8C430, void, CDSCollectionETWBCLProvider_1_ConcurrentStack_FastPushFailed, (CDSCollectionETWBCLProvider_1 * __this, int32_t spinCount, MethodInfo * method)); @@ -36996,10 +42396,15 @@ DO_APP_FUNC(0x02778880, int64_t, ChunkedMemoryStream_get_Length, (ChunkedMemoryS DO_APP_FUNC(0x003AE050, void, ChunkedMemoryStream_Flush, (ChunkedMemoryStream * __this, MethodInfo * method)); DO_APP_FUNC(0x02778890, Task *, ChunkedMemoryStream_FlushAsync, (ChunkedMemoryStream * __this, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x02778930, int64_t, ChunkedMemoryStream_get_Position, (ChunkedMemoryStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB2D8, ChunkedMemoryStream_get_Position__MethodInfo); DO_APP_FUNC(0x02778980, void, ChunkedMemoryStream_set_Position, (ChunkedMemoryStream * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB2E0, ChunkedMemoryStream_set_Position__MethodInfo); DO_APP_FUNC(0x027789D0, int32_t, ChunkedMemoryStream_Read, (ChunkedMemoryStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB2C8, ChunkedMemoryStream_Read__MethodInfo); DO_APP_FUNC(0x02778A20, int64_t, ChunkedMemoryStream_Seek, (ChunkedMemoryStream * __this, int64_t offset, SeekOrigin__Enum origin, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB2D0, ChunkedMemoryStream_Seek__MethodInfo); DO_APP_FUNC(0x02778A70, void, ChunkedMemoryStream_SetLength, (ChunkedMemoryStream * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB2E8, ChunkedMemoryStream_SetLength__MethodInfo); DO_APP_FUNC(0x02778AE0, void, ChunkedMemoryStream_MemoryChunk__ctor, (ChunkedMemoryStream_MemoryChunk * __this, int32_t bufferSize, MethodInfo * method)); DO_APP_FUNC(0x02778B80, StringComparison__Enum, PathInternal_1_get_StringComparison, (MethodInfo * method)); DO_APP_FUNC(0x02778BE0, bool, PathInternal_1_get_IsCaseSensitive, (MethodInfo * method)); @@ -37012,7 +42417,9 @@ DO_APP_FUNC(0x0041AF00, bool, ReadOnlyMemoryStream_get_CanWrite, (ReadOnlyMemory DO_APP_FUNC(0x02778F70, int64_t, ReadOnlyMemoryStream_get_Length, (ReadOnlyMemoryStream * __this, MethodInfo * method)); DO_APP_FUNC(0x02778880, int64_t, ReadOnlyMemoryStream_get_Position, (ReadOnlyMemoryStream * __this, MethodInfo * method)); DO_APP_FUNC(0x02778FB0, void, ReadOnlyMemoryStream_set_Position, (ReadOnlyMemoryStream * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB300, ReadOnlyMemoryStream_set_Position__MethodInfo); DO_APP_FUNC(0x02779020, int64_t, ReadOnlyMemoryStream_Seek, (ReadOnlyMemoryStream * __this, int64_t offset, SeekOrigin__Enum origin, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB2F8, ReadOnlyMemoryStream_Seek__MethodInfo); DO_APP_FUNC(0x027791A0, int32_t, ReadOnlyMemoryStream_ReadByte, (ReadOnlyMemoryStream * __this, MethodInfo * method)); DO_APP_FUNC(0x02779230, int32_t, ReadOnlyMemoryStream_Read, (ReadOnlyMemoryStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x02779320, int32_t, ReadOnlyMemoryStream_Read_1, (ReadOnlyMemoryStream * __this, Span_1_Byte_ buffer, MethodInfo * method)); @@ -37025,8 +42432,11 @@ DO_APP_FUNC(0x02779A30, Task *, ReadOnlyMemoryStream_CopyToAsync, (ReadOnlyMemor DO_APP_FUNC(0x003AE050, void, ReadOnlyMemoryStream_Flush, (ReadOnlyMemoryStream * __this, MethodInfo * method)); DO_APP_FUNC(0x02779C30, Task *, ReadOnlyMemoryStream_FlushAsync, (ReadOnlyMemoryStream * __this, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x02779CD0, void, ReadOnlyMemoryStream_SetLength, (ReadOnlyMemoryStream * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB250, ReadOnlyMemoryStream_SetLength__MethodInfo); DO_APP_FUNC(0x02779D20, void, ReadOnlyMemoryStream_Write, (ReadOnlyMemoryStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB258, ReadOnlyMemoryStream_Write__MethodInfo); DO_APP_FUNC(0x02779D70, void, ReadOnlyMemoryStream_ValidateReadArrayArguments, (Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB248, ReadOnlyMemoryStream_ValidateReadArrayArguments__MethodInfo); DO_APP_FUNC(0x0103E630, void, FileSystemEventHandler__ctor, (FileSystemEventHandler * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EC2D0, void, FileSystemEventHandler_Invoke, (FileSystemEventHandler * __this, Object * sender, FileSystemEventArgs * e, MethodInfo * method)); DO_APP_FUNC(0x0042F0F0, IAsyncResult *, FileSystemEventHandler_BeginInvoke, (FileSystemEventHandler * __this, Object * sender, FileSystemEventArgs * e, AsyncCallback * callback, Object * object, MethodInfo * method)); @@ -37038,24 +42448,25 @@ DO_APP_FUNC(0x0103E630, void, RenamedEventHandler__ctor, (RenamedEventHandler * DO_APP_FUNC(0x003EC2D0, void, RenamedEventHandler_Invoke, (RenamedEventHandler * __this, Object * sender, RenamedEventArgs * e, MethodInfo * method)); DO_APP_FUNC(0x0042F0F0, IAsyncResult *, RenamedEventHandler_BeginInvoke, (RenamedEventHandler * __this, Object * sender, RenamedEventArgs * e, AsyncCallback * callback, Object * object, MethodInfo * method)); DO_APP_FUNC(0x003BA270, void, RenamedEventHandler_EndInvoke, (RenamedEventHandler * __this, IAsyncResult * result, MethodInfo * method)); -DO_APP_FUNC(0x02779F80, void, WaitForChangedResult__ctor, (WaitForChangedResult__Boxed * __this, WatcherChangeTypes__Enum changeType, String * name, String * oldName, bool timedOut, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, WatcherChangeTypes__Enum, WaitForChangedResult_get_ChangeType, (WaitForChangedResult__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00959BA0, void, WaitForChangedResult_set_ChangeType, (WaitForChangedResult__Boxed * __this, WatcherChangeTypes__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, String *, WaitForChangedResult_get_Name, (WaitForChangedResult__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x005F25C0, void, WaitForChangedResult_set_Name, (WaitForChangedResult__Boxed * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, String *, WaitForChangedResult_get_OldName, (WaitForChangedResult__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCBE0, void, WaitForChangedResult_set_OldName, (WaitForChangedResult__Boxed * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x003BCC40, bool, WaitForChangedResult_get_TimedOut, (WaitForChangedResult__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCC50, void, WaitForChangedResult_set_TimedOut, (WaitForChangedResult__Boxed * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02779F80, void, WaitForChangedResult__ctor, (WaitForChangedResult * __this, WatcherChangeTypes__Enum changeType, String * name, String * oldName, bool timedOut, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, WatcherChangeTypes__Enum, WaitForChangedResult_get_ChangeType, (WaitForChangedResult * __this, MethodInfo * method)); +DO_APP_FUNC(0x00959BA0, void, WaitForChangedResult_set_ChangeType, (WaitForChangedResult * __this, WatcherChangeTypes__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, String *, WaitForChangedResult_get_Name, (WaitForChangedResult * __this, MethodInfo * method)); +DO_APP_FUNC(0x005F25C0, void, WaitForChangedResult_set_Name, (WaitForChangedResult * __this, String * value, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, String *, WaitForChangedResult_get_OldName, (WaitForChangedResult * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCBE0, void, WaitForChangedResult_set_OldName, (WaitForChangedResult * __this, String * value, MethodInfo * method)); +DO_APP_FUNC(0x003BCC40, bool, WaitForChangedResult_get_TimedOut, (WaitForChangedResult * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCC50, void, WaitForChangedResult_set_TimedOut, (WaitForChangedResult * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x0277A0A0, void, WaitForChangedResult__cctor, (MethodInfo * method)); DO_APP_FUNC(0x0277A170, void, DefaultWatcherData__ctor, (DefaultWatcherData * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, FileData__ctor, (FileData * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, DefaultWatcher__ctor, (DefaultWatcher * __this, MethodInfo * method)); -DO_APP_FUNC(0x0277A200, bool, DefaultWatcher_GetInstance, (IFileWatcher * watcher, MethodInfo * method)); +DO_APP_FUNC(0x0277A200, bool, DefaultWatcher_GetInstance, (IFileWatcher * * watcher, MethodInfo * method)); DO_APP_FUNC(0x0277A3F0, void, DefaultWatcher_StartDispatching, (DefaultWatcher * __this, Object * handle, MethodInfo * method)); DO_APP_FUNC(0x0277B160, void, DefaultWatcher_StopDispatching, (DefaultWatcher * __this, Object * handle, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, DefaultWatcher_Dispose, (DefaultWatcher * __this, Object * handle, MethodInfo * method)); DO_APP_FUNC(0x0277B760, void, DefaultWatcher_Monitor, (DefaultWatcher * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB290, DefaultWatcher_Monitor__MethodInfo); DO_APP_FUNC(0x0277C1C0, bool, DefaultWatcher_UpdateDataAndDispatch, (DefaultWatcher * __this, DefaultWatcherData * data, bool dispatch, MethodInfo * method)); DO_APP_FUNC(0x0277C300, void, DefaultWatcher_DispatchEvents, (FileSystemWatcher * fsw, FileAction__Enum action, String * filename, MethodInfo * method)); DO_APP_FUNC(0x0277C4A0, void, DefaultWatcher_DoFiles, (DefaultWatcher * __this, DefaultWatcherData * data, String * directory, bool dispatch, MethodInfo * method)); @@ -37071,6 +42482,7 @@ DO_APP_FUNC(0x003BA270, void, ErrorEventHandler_EndInvoke, (ErrorEventHandler * DO_APP_FUNC(0x0277D8E0, void, FileSystemWatcher__ctor, (FileSystemWatcher * __this, MethodInfo * method)); DO_APP_FUNC(0x0277DA20, void, FileSystemWatcher__ctor_1, (FileSystemWatcher * __this, String * path, MethodInfo * method)); DO_APP_FUNC(0x0277DA70, void, FileSystemWatcher__ctor_2, (FileSystemWatcher * __this, String * path, String * filter, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB0D0, FileSystemWatcher__ctor_2__MethodInfo); DO_APP_FUNC(0x0277DD80, void, FileSystemWatcher_InitWatcher, (FileSystemWatcher * __this, MethodInfo * method)); DO_APP_FUNC(0x0277E190, void, FileSystemWatcher_ShowWatcherInfo, (FileSystemWatcher * __this, MethodInfo * method)); DO_APP_FUNC(0x005D90C0, bool, FileSystemWatcher_get_Waiting, (FileSystemWatcher * __this, MethodInfo * method)); @@ -37080,6 +42492,7 @@ DO_APP_FUNC(0x0277E300, SearchPattern2 *, FileSystemWatcher_get_Pattern, (FileSy DO_APP_FUNC(0x0277E460, String *, FileSystemWatcher_get_FullPath, (FileSystemWatcher * __this, MethodInfo * method)); DO_APP_FUNC(0x00986FE0, bool, FileSystemWatcher_get_EnableRaisingEvents, (FileSystemWatcher * __this, MethodInfo * method)); DO_APP_FUNC(0x0277E590, void, FileSystemWatcher_set_EnableRaisingEvents, (FileSystemWatcher * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB138, FileSystemWatcher_set_EnableRaisingEvents__MethodInfo); DO_APP_FUNC(0x003BB330, String *, FileSystemWatcher_get_Filter, (FileSystemWatcher * __this, MethodInfo * method)); DO_APP_FUNC(0x0277E650, void, FileSystemWatcher_set_Filter, (FileSystemWatcher * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x00424C90, bool, FileSystemWatcher_get_IncludeSubdirectories, (FileSystemWatcher * __this, MethodInfo * method)); @@ -37090,6 +42503,7 @@ DO_APP_FUNC(0x00439170, NotifyFilters__Enum, FileSystemWatcher_get_NotifyFilter, DO_APP_FUNC(0x0277E950, void, FileSystemWatcher_set_NotifyFilter, (FileSystemWatcher * __this, NotifyFilters__Enum value, MethodInfo * method)); DO_APP_FUNC(0x003CD530, String *, FileSystemWatcher_get_Path, (FileSystemWatcher * __this, MethodInfo * method)); DO_APP_FUNC(0x0277E990, void, FileSystemWatcher_set_Path, (FileSystemWatcher * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB160, FileSystemWatcher_set_Path__MethodInfo); DO_APP_FUNC(0x003BB3D0, ISite *, FileSystemWatcher_get_Site, (FileSystemWatcher * __this, MethodInfo * method)); DO_APP_FUNC(0x0277EC10, void, FileSystemWatcher_set_Site, (FileSystemWatcher * __this, ISite * value, MethodInfo * method)); DO_APP_FUNC(0x003C7490, ISynchronizeInvoke *, FileSystemWatcher_get_SynchronizingObject, (FileSystemWatcher * __this, MethodInfo * method)); @@ -37107,7 +42521,7 @@ DO_APP_FUNC(0x0277F420, void, FileSystemWatcher_OnRenamed, (FileSystemWatcher * DO_APP_FUNC(0x0277F450, WaitForChangedResult, FileSystemWatcher_WaitForChanged, (FileSystemWatcher * __this, WatcherChangeTypes__Enum changeType, MethodInfo * method)); DO_APP_FUNC(0x0277F490, WaitForChangedResult, FileSystemWatcher_WaitForChanged_1, (FileSystemWatcher * __this, WatcherChangeTypes__Enum changeType, int32_t timeout, MethodInfo * method)); DO_APP_FUNC(0x0277F6B0, void, FileSystemWatcher_DispatchErrorEvents, (FileSystemWatcher * __this, ErrorEventArgs * args, MethodInfo * method)); -DO_APP_FUNC(0x0277F6E0, void, FileSystemWatcher_DispatchEvents, (FileSystemWatcher * __this, FileAction__Enum act, String * filename, RenamedEventArgs * renamed, MethodInfo * method)); +DO_APP_FUNC(0x0277F6E0, void, FileSystemWatcher_DispatchEvents, (FileSystemWatcher * __this, FileAction__Enum act, String * filename, RenamedEventArgs * * renamed, MethodInfo * method)); DO_APP_FUNC(0x0277FC70, void, FileSystemWatcher_Start, (FileSystemWatcher * __this, MethodInfo * method)); DO_APP_FUNC(0x0277FCE0, void, FileSystemWatcher_Stop, (FileSystemWatcher * __this, MethodInfo * method)); DO_APP_FUNC(0x0277FD50, void, FileSystemWatcher_add_Changed, (FileSystemWatcher * __this, FileSystemEventHandler * value, MethodInfo * method)); @@ -37124,10 +42538,14 @@ DO_APP_FUNC(0x007205E0, int32_t, FileSystemWatcher_InternalSupportsFSW, (MethodI DO_APP_FUNC(0x02780750, void, FileSystemWatcher__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, FileSystemWatcher_c_DisplayClass70_0__ctor, (FileSystemWatcher_c_DisplayClass70_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x02780810, void, FileSystemWatcher_c_DisplayClass70_0__DispatchEvents_b__0, (FileSystemWatcher_c_DisplayClass70_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEAFC0, FileSystemWatcher_c_DisplayClass70_0__DispatchEvents_b__0__MethodInfo); DO_APP_FUNC(0x027808D0, void, FileSystemWatcher_c_DisplayClass70_0__DispatchEvents_b__1, (FileSystemWatcher_c_DisplayClass70_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEAFD8, FileSystemWatcher_c_DisplayClass70_0__DispatchEvents_b__1__MethodInfo); DO_APP_FUNC(0x02780990, void, FileSystemWatcher_c_DisplayClass70_0__DispatchEvents_b__2, (FileSystemWatcher_c_DisplayClass70_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEAFB0, FileSystemWatcher_c_DisplayClass70_0__DispatchEvents_b__2__MethodInfo); DO_APP_FUNC(0x003AE050, void, FileSystemWatcher_c_DisplayClass70_1__ctor, (FileSystemWatcher_c_DisplayClass70_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02780A50, void, FileSystemWatcher_c_DisplayClass70_1__DispatchEvents_b__3, (FileSystemWatcher_c_DisplayClass70_1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB050, FileSystemWatcher_c_DisplayClass70_1__DispatchEvents_b__3__MethodInfo); DO_APP_FUNC(0x02780AA0, void, IODescriptionAttribute__ctor, (IODescriptionAttribute * __this, String * description, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, String *, IODescriptionAttribute_get_Description, (IODescriptionAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x02780B40, void, InternalBufferOverflowException__ctor, (InternalBufferOverflowException * __this, MethodInfo * method)); @@ -37141,7 +42559,7 @@ DO_APP_FUNC(0x01980BF0, void, InvalidDataException__ctor_3, (InvalidDataExceptio DO_APP_FUNC(0x003AE050, void, NullFileWatcher_StartDispatching, (NullFileWatcher * __this, Object * handle, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NullFileWatcher_StopDispatching, (NullFileWatcher * __this, Object * handle, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NullFileWatcher_Dispose, (NullFileWatcher * __this, Object * handle, MethodInfo * method)); -DO_APP_FUNC(0x02780C20, bool, NullFileWatcher_GetInstance, (IFileWatcher * watcher, MethodInfo * method)); +DO_APP_FUNC(0x02780C20, bool, NullFileWatcher_GetInstance, (IFileWatcher * * watcher, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NullFileWatcher__ctor, (NullFileWatcher * __this, MethodInfo * method)); DO_APP_FUNC(0x02780DB0, void, SearchPattern2__ctor, (SearchPattern2 * __this, String * pattern, MethodInfo * method)); DO_APP_FUNC(0x02780E10, void, SearchPattern2__ctor_1, (SearchPattern2 * __this, String * pattern, bool ignore, MethodInfo * method)); @@ -37149,16 +42567,23 @@ DO_APP_FUNC(0x02780E70, bool, SearchPattern2_IsMatch, (SearchPattern2 * __this, DO_APP_FUNC(0x02781080, bool, SearchPattern2_IsMatch_1, (SearchPattern2 * __this, String * text, MethodInfo * method)); DO_APP_FUNC(0x006B5710, bool, SearchPattern2_get_HasWildcard, (SearchPattern2 * __this, MethodInfo * method)); DO_APP_FUNC(0x02781090, void, SearchPattern2_Compile, (SearchPattern2 * __this, String * pattern, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEAE00, SearchPattern2_Compile__MethodInfo); DO_APP_FUNC(0x027814E0, bool, SearchPattern2_Match, (SearchPattern2 * __this, SearchPattern2_Op * op, String * text, int32_t ptr, MethodInfo * method)); DO_APP_FUNC(0x02781660, void, SearchPattern2__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02781860, void, SearchPattern2_Op__ctor, (SearchPattern2_Op * __this, SearchPattern2_OpCode__Enum code, MethodInfo * method)); DO_APP_FUNC(0x02781920, void, InternalResources_EndOfFile, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEADF0, InternalResources_EndOfFile__MethodInfo); DO_APP_FUNC(0x02781990, String *, InternalResources_GetMessage, (int32_t errorCode, MethodInfo * method)); DO_APP_FUNC(0x02781A70, void, InternalResources_FileNotOpen, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEAD98, InternalResources_FileNotOpen__MethodInfo); DO_APP_FUNC(0x02781AE0, void, InternalResources_WrongAsyncResult, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEADB0, InternalResources_WrongAsyncResult__MethodInfo); DO_APP_FUNC(0x02781B50, void, InternalResources_EndReadCalledTwice, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEAD78, InternalResources_EndReadCalledTwice__MethodInfo); DO_APP_FUNC(0x02781BC0, void, InternalResources_EndWriteCalledTwice, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEAD80, InternalResources_EndWriteCalledTwice__MethodInfo); DO_APP_FUNC(0x02781C30, void, InternalResources_WinIOError, (int32_t errorCode, String * str, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEAE60, InternalResources_WinIOError__MethodInfo); DO_APP_FUNC(0x0194C120, int32_t, InternalResources_MakeHRFromErrorCode, (int32_t errorCode, MethodInfo * method)); DO_APP_FUNC(0x02782060, void, GZipStream__ctor, (GZipStream * __this, Stream * stream, CompressionMode__Enum mode, MethodInfo * method)); DO_APP_FUNC(0x02782160, void, GZipStream__ctor_1, (GZipStream * __this, Stream * stream, CompressionMode__Enum mode, bool leaveOpen, MethodInfo * method)); @@ -37168,11 +42593,16 @@ DO_APP_FUNC(0x02782480, bool, GZipStream_get_CanRead, (GZipStream * __this, Meth DO_APP_FUNC(0x027824A0, bool, GZipStream_get_CanWrite, (GZipStream * __this, MethodInfo * method)); DO_APP_FUNC(0x027824C0, bool, GZipStream_get_CanSeek, (GZipStream * __this, MethodInfo * method)); DO_APP_FUNC(0x027824E0, int64_t, GZipStream_get_Length, (GZipStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEAE18, GZipStream_get_Length__MethodInfo); DO_APP_FUNC(0x02782540, int64_t, GZipStream_get_Position, (GZipStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEAE20, GZipStream_get_Position__MethodInfo); DO_APP_FUNC(0x027825A0, void, GZipStream_set_Position, (GZipStream * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEAE08, GZipStream_set_Position__MethodInfo); DO_APP_FUNC(0x02782600, void, GZipStream_Flush, (GZipStream * __this, MethodInfo * method)); DO_APP_FUNC(0x02782630, int64_t, GZipStream_Seek, (GZipStream * __this, int64_t offset, SeekOrigin__Enum origin, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEAE10, GZipStream_Seek__MethodInfo); DO_APP_FUNC(0x02782690, void, GZipStream_SetLength, (GZipStream * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEAE30, GZipStream_SetLength__MethodInfo); DO_APP_FUNC(0x027826F0, int32_t, GZipStream_ReadByte, (GZipStream * __this, MethodInfo * method)); DO_APP_FUNC(0x02782720, IAsyncResult *, GZipStream_BeginRead, (GZipStream * __this, Byte__Array * array, int32_t offset, int32_t count, AsyncCallback * asyncCallback, Object * asyncState, MethodInfo * method)); DO_APP_FUNC(0x027827D0, int32_t, GZipStream_EndRead, (GZipStream * __this, IAsyncResult * asyncResult, MethodInfo * method)); @@ -37193,10 +42623,12 @@ DO_APP_FUNC(0x02782EF0, Task *, GZipStream_FlushAsync, (GZipStream * __this, Can DO_APP_FUNC(0x02782F20, Task *, GZipStream_CopyToAsync, (GZipStream * __this, Stream * destination, int32_t bufferSize, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x02782F60, void, GZipStream_CheckDeflateStream, (GZipStream * __this, MethodInfo * method)); DO_APP_FUNC(0x02782F80, void, GZipStream_ThrowStreamClosedException, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEAC38, GZipStream_ThrowStreamClosedException__MethodInfo); DO_APP_FUNC(0x02782FE0, void, DeflateStream__ctor, (DeflateStream * __this, Stream * stream, CompressionMode__Enum mode, MethodInfo * method)); DO_APP_FUNC(0x02783000, void, DeflateStream__ctor_1, (DeflateStream * __this, Stream * stream, CompressionMode__Enum mode, bool leaveOpen, MethodInfo * method)); DO_APP_FUNC(0x02783020, void, DeflateStream__ctor_2, (DeflateStream * __this, Stream * stream, CompressionMode__Enum mode, bool leaveOpen, int32_t windowsBits, MethodInfo * method)); DO_APP_FUNC(0x02783040, void, DeflateStream__ctor_3, (DeflateStream * __this, Stream * compressedStream, CompressionMode__Enum mode, bool leaveOpen, bool gzip, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEAD08, DeflateStream__ctor_3__MethodInfo); DO_APP_FUNC(0x02783290, void, DeflateStream__ctor_4, (DeflateStream * __this, Stream * stream, CompressionLevel__Enum compressionLevel, MethodInfo * method)); DO_APP_FUNC(0x027832C0, void, DeflateStream__ctor_5, (DeflateStream * __this, Stream * stream, CompressionLevel__Enum compressionLevel, bool leaveOpen, MethodInfo * method)); DO_APP_FUNC(0x027832F0, void, DeflateStream__ctor_6, (DeflateStream * __this, Stream * stream, CompressionLevel__Enum compressionLevel, bool leaveOpen, int32_t windowsBits, MethodInfo * method)); @@ -37204,27 +42636,41 @@ DO_APP_FUNC(0x02783310, void, DeflateStream__ctor_7, (DeflateStream * __this, St DO_APP_FUNC(0x00C133E0, void, DeflateStream_Finalize, (DeflateStream * __this, MethodInfo * method)); DO_APP_FUNC(0x02783330, void, DeflateStream_Dispose, (DeflateStream * __this, bool disposing, MethodInfo * method)); DO_APP_FUNC(0x027833F0, int32_t, DeflateStream_ReadInternal, (DeflateStream * __this, Byte__Array * array, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEAB30, DeflateStream_ReadInternal__MethodInfo); DO_APP_FUNC(0x02783500, ValueTask_1_System_Int32_, DeflateStream_ReadAsyncMemory, (DeflateStream * __this, Memory_1_Byte_ destination, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x02783540, int32_t, DeflateStream_ReadCore, (DeflateStream * __this, Span_1_Byte_ destination, MethodInfo * method)); DO_APP_FUNC(0x027836E0, int32_t, DeflateStream_Read, (DeflateStream * __this, Byte__Array * array, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEAD38, DeflateStream_Read__MethodInfo); DO_APP_FUNC(0x02783A40, void, DeflateStream_WriteInternal, (DeflateStream * __this, Byte__Array * array, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEAB38, DeflateStream_WriteInternal__MethodInfo); DO_APP_FUNC(0x02783B40, ValueTask, DeflateStream_WriteAsyncMemory, (DeflateStream * __this, ReadOnlyMemory_1_Byte_ source, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x02783B80, void, DeflateStream_WriteCore, (DeflateStream * __this, ReadOnlySpan_1_Byte_ source, MethodInfo * method)); DO_APP_FUNC(0x02783C00, void, DeflateStream_Write, (DeflateStream * __this, Byte__Array * array, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEACC8, DeflateStream_Write__MethodInfo); DO_APP_FUNC(0x02783F50, void, DeflateStream_Flush, (DeflateStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEACA8, DeflateStream_Flush__MethodInfo); DO_APP_FUNC(0x027840E0, IAsyncResult *, DeflateStream_BeginRead, (DeflateStream * __this, Byte__Array * array, int32_t offset, int32_t count, AsyncCallback * asyncCallback, Object * asyncState, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEAB18, DeflateStream_BeginRead__MethodInfo); DO_APP_FUNC(0x02784540, IAsyncResult *, DeflateStream_BeginWrite, (DeflateStream * __this, Byte__Array * array, int32_t offset, int32_t count, AsyncCallback * asyncCallback, Object * asyncState, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEAAD0, DeflateStream_BeginWrite__MethodInfo); DO_APP_FUNC(0x027849A0, int32_t, DeflateStream_EndRead, (DeflateStream * __this, IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEAAC0, DeflateStream_EndRead__MethodInfo); DO_APP_FUNC(0x02784BB0, void, DeflateStream_EndWrite, (DeflateStream * __this, IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEAAF0, DeflateStream_EndWrite__MethodInfo); DO_APP_FUNC(0x02784DA0, int64_t, DeflateStream_Seek, (DeflateStream * __this, int64_t offset, SeekOrigin__Enum origin, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEAAF8, DeflateStream_Seek__MethodInfo); DO_APP_FUNC(0x02784DF0, void, DeflateStream_SetLength, (DeflateStream * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEABC8, DeflateStream_SetLength__MethodInfo); DO_APP_FUNC(0x003BB3B0, Stream *, DeflateStream_get_BaseStream, (DeflateStream * __this, MethodInfo * method)); DO_APP_FUNC(0x02784E40, bool, DeflateStream_get_CanRead, (DeflateStream * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, DeflateStream_get_CanSeek, (DeflateStream * __this, MethodInfo * method)); DO_APP_FUNC(0x02784E80, bool, DeflateStream_get_CanWrite, (DeflateStream * __this, MethodInfo * method)); DO_APP_FUNC(0x02784EC0, int64_t, DeflateStream_get_Length, (DeflateStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEABD8, DeflateStream_get_Length__MethodInfo); DO_APP_FUNC(0x02784F10, int64_t, DeflateStream_get_Position, (DeflateStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEABB0, DeflateStream_get_Position__MethodInfo); DO_APP_FUNC(0x02784F60, void, DeflateStream_set_Position, (DeflateStream * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEABB8, DeflateStream_set_Position__MethodInfo); DO_APP_FUNC(0x01B57820, void, DeflateStream_ReadMethod__ctor, (DeflateStream_ReadMethod * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EF9C0, int32_t, DeflateStream_ReadMethod_Invoke, (DeflateStream_ReadMethod * __this, Byte__Array * array, int32_t offset, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x02784FB0, IAsyncResult *, DeflateStream_ReadMethod_BeginInvoke, (DeflateStream_ReadMethod * __this, Byte__Array * array, int32_t offset, int32_t count, AsyncCallback * callback, Object * object, MethodInfo * method)); @@ -37241,10 +42687,13 @@ DO_APP_FUNC(0x02785610, void, DeflateStreamNative_Flush, (DeflateStreamNative * DO_APP_FUNC(0x02785700, int32_t, DeflateStreamNative_ReadZStream, (DeflateStreamNative * __this, void * buffer, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x027857D0, void, DeflateStreamNative_WriteZStream, (DeflateStreamNative * __this, void * buffer, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x02785890, int32_t, DeflateStreamNative_UnmanagedRead, (void * buffer, int32_t length, void * data, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEAB60, DeflateStreamNative_UnmanagedRead__MethodInfo); DO_APP_FUNC(0x027859D0, int32_t, DeflateStreamNative_UnmanagedRead_1, (DeflateStreamNative * __this, void * buffer, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x02785B80, int32_t, DeflateStreamNative_UnmanagedWrite, (void * buffer, int32_t length, void * data, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEAB68, DeflateStreamNative_UnmanagedWrite__MethodInfo); DO_APP_FUNC(0x02785CC0, int32_t, DeflateStreamNative_UnmanagedWrite_1, (DeflateStreamNative * __this, void * buffer, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x02785E40, void, DeflateStreamNative_CheckResult, (DeflateStreamNative * __this, int32_t result, String * where, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEAA70, DeflateStreamNative_CheckResult__MethodInfo); DO_APP_FUNC(0x02785F90, DeflateStreamNative_SafeDeflateStreamHandle *, DeflateStreamNative_CreateZStream, (CompressionMode__Enum compress, bool gzip, DeflateStreamNative_UnmanagedReadOrWrite * feeder, void * data, MethodInfo * method)); DO_APP_FUNC(0x02786070, int32_t, DeflateStreamNative_CloseZStream, (void * stream, MethodInfo * method)); DO_APP_FUNC(0x02786080, int32_t, DeflateStreamNative_Flush_1, (DeflateStreamNative_SafeDeflateStreamHandle * stream, MethodInfo * method)); @@ -37261,12 +42710,16 @@ DO_APP_FUNC(0x027863B0, bool, DeflateStreamNative_SafeDeflateStreamHandle_Releas DO_APP_FUNC(0x003AE050, void, ZLibNative__ctor, (ZLibNative * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, FileSystemWatcher_1_FinalizeDispose, (FileSystemWatcher_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x027863D0, void, FileSystemWatcher_1_StartRaisingEvents, (FileSystemWatcher_1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA898, FileSystemWatcher_1_StartRaisingEvents__MethodInfo); DO_APP_FUNC(0x02786420, void, FileSystemWatcher_1_StopRaisingEvents, (FileSystemWatcher_1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA8A0, FileSystemWatcher_1_StopRaisingEvents__MethodInfo); DO_APP_FUNC(0x02786470, void, FileSystemWatcher_1__ctor, (FileSystemWatcher_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x027865D0, void, FileSystemWatcher_1__ctor_1, (FileSystemWatcher_1 * __this, String * path, MethodInfo * method)); DO_APP_FUNC(0x02786750, void, FileSystemWatcher_1__ctor_2, (FileSystemWatcher_1 * __this, String * path, String * filter, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA900, FileSystemWatcher_1__ctor_2__MethodInfo); DO_APP_FUNC(0x009F7E90, NotifyFilters__Enum, FileSystemWatcher_1_get_NotifyFilter, (FileSystemWatcher_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02786990, void, FileSystemWatcher_1_set_NotifyFilter, (FileSystemWatcher_1 * __this, NotifyFilters__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA8F8, FileSystemWatcher_1_set_NotifyFilter__MethodInfo); DO_APP_FUNC(0x003BB3B0, Collection_1_System_String_ *, FileSystemWatcher_1_get_Filters, (FileSystemWatcher_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x005C3700, bool, FileSystemWatcher_1_get_EnableRaisingEvents, (FileSystemWatcher_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02786A80, void, FileSystemWatcher_1_set_EnableRaisingEvents, (FileSystemWatcher_1 * __this, bool value, MethodInfo * method)); @@ -37277,8 +42730,10 @@ DO_APP_FUNC(0x02786C60, void, FileSystemWatcher_1_set_IncludeSubdirectories, (Fi DO_APP_FUNC(0x00439170, int32_t, FileSystemWatcher_1_get_InternalBufferSize, (FileSystemWatcher_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02786C70, void, FileSystemWatcher_1_set_InternalBufferSize, (FileSystemWatcher_1 * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x02786CA0, Byte__Array *, FileSystemWatcher_1_AllocateBuffer, (FileSystemWatcher_1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA8D0, FileSystemWatcher_1_AllocateBuffer__MethodInfo); DO_APP_FUNC(0x003BB330, String *, FileSystemWatcher_1_get_Path, (FileSystemWatcher_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02786D80, void, FileSystemWatcher_1_set_Path, (FileSystemWatcher_1 * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA758, FileSystemWatcher_1_set_Path__MethodInfo); DO_APP_FUNC(0x02786F90, void, FileSystemWatcher_1_add_Changed, (FileSystemWatcher_1 * __this, FileSystemEventHandler * value, MethodInfo * method)); DO_APP_FUNC(0x02787080, void, FileSystemWatcher_1_remove_Changed, (FileSystemWatcher_1 * __this, FileSystemEventHandler * value, MethodInfo * method)); DO_APP_FUNC(0x02787170, void, FileSystemWatcher_1_add_Created, (FileSystemWatcher_1 * __this, FileSystemEventHandler * value, MethodInfo * method)); @@ -37291,6 +42746,7 @@ DO_APP_FUNC(0x02787710, void, FileSystemWatcher_1_add_Renamed, (FileSystemWatche DO_APP_FUNC(0x02787800, void, FileSystemWatcher_1_remove_Renamed, (FileSystemWatcher_1 * __this, RenamedEventHandler * value, MethodInfo * method)); DO_APP_FUNC(0x027878F0, void, FileSystemWatcher_1_Dispose, (FileSystemWatcher_1 * __this, bool disposing, MethodInfo * method)); DO_APP_FUNC(0x02787980, void, FileSystemWatcher_1_CheckPathValidity, (String * path, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA810, FileSystemWatcher_1_CheckPathValidity__MethodInfo); DO_APP_FUNC(0x02787AF0, bool, FileSystemWatcher_1_MatchPattern, (FileSystemWatcher_1 * __this, ReadOnlySpan_1_Char_ relativePath, MethodInfo * method)); DO_APP_FUNC(0x02787EA0, void, FileSystemWatcher_1_NotifyInternalBufferOverflowEvent, (FileSystemWatcher_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02788010, void, FileSystemWatcher_1_NotifyRenameEventArgs, (FileSystemWatcher_1 * __this, WatcherChangeTypes__Enum action, ReadOnlySpan_1_Char_ name, ReadOnlySpan_1_Char_ oldName, MethodInfo * method)); @@ -37307,6 +42763,7 @@ DO_APP_FUNC(0x027888F0, WaitForChangedResult, FileSystemWatcher_1_WaitForChanged DO_APP_FUNC(0x02788930, WaitForChangedResult, FileSystemWatcher_1_WaitForChanged_1, (FileSystemWatcher_1 * __this, WatcherChangeTypes__Enum changeType, int32_t timeout, MethodInfo * method)); DO_APP_FUNC(0x02789620, void, FileSystemWatcher_1_Restart, (FileSystemWatcher_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02789690, void, FileSystemWatcher_1_StartRaisingEventsIfNotDisposed, (FileSystemWatcher_1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA6E0, FileSystemWatcher_1_StartRaisingEventsIfNotDisposed__MethodInfo); DO_APP_FUNC(0x003BB3D0, ISite *, FileSystemWatcher_1_get_Site, (FileSystemWatcher_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02789720, void, FileSystemWatcher_1_set_Site, (FileSystemWatcher_1 * __this, ISite * value, MethodInfo * method)); DO_APP_FUNC(0x003C91D0, ISynchronizeInvoke *, FileSystemWatcher_1_get_SynchronizingObject, (FileSystemWatcher_1 * __this, MethodInfo * method)); @@ -37320,10 +42777,12 @@ DO_APP_FUNC(0x02789B00, void, FileSystemWatcher_NormalizedFilterCollection_Inser DO_APP_FUNC(0x02789BD0, void, FileSystemWatcher_NormalizedFilterCollection_SetItem, (FileSystemWatcher_NormalizedFilterCollection * __this, int32_t index, String * item, MethodInfo * method)); DO_APP_FUNC(0x02789CA0, String__Array *, FileSystemWatcher_NormalizedFilterCollection_GetFilters, (FileSystemWatcher_NormalizedFilterCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x02789D20, String *, FileSystemWatcher_NormalizedFilterCollection_ImmutableStringList_get_Item, (FileSystemWatcher_NormalizedFilterCollection_ImmutableStringList * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA5C0, FileSystemWatcher_NormalizedFilterCollection_ImmutableStringList_get_Item__MethodInfo); DO_APP_FUNC(0x02789DA0, void, FileSystemWatcher_NormalizedFilterCollection_ImmutableStringList_set_Item, (FileSystemWatcher_NormalizedFilterCollection_ImmutableStringList * __this, int32_t index, String * value, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, FileSystemWatcher_NormalizedFilterCollection_ImmutableStringList_get_Count, (FileSystemWatcher_NormalizedFilterCollection_ImmutableStringList * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, FileSystemWatcher_NormalizedFilterCollection_ImmutableStringList_get_IsReadOnly, (FileSystemWatcher_NormalizedFilterCollection_ImmutableStringList * __this, MethodInfo * method)); DO_APP_FUNC(0x02789ED0, void, FileSystemWatcher_NormalizedFilterCollection_ImmutableStringList_Add, (FileSystemWatcher_NormalizedFilterCollection_ImmutableStringList * __this, String * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA5B0, FileSystemWatcher_NormalizedFilterCollection_ImmutableStringList_Add__MethodInfo); DO_APP_FUNC(0x02789F20, void, FileSystemWatcher_NormalizedFilterCollection_ImmutableStringList_Clear, (FileSystemWatcher_NormalizedFilterCollection_ImmutableStringList * __this, MethodInfo * method)); DO_APP_FUNC(0x02789FB0, bool, FileSystemWatcher_NormalizedFilterCollection_ImmutableStringList_Contains, (FileSystemWatcher_NormalizedFilterCollection_ImmutableStringList * __this, String * item, MethodInfo * method)); DO_APP_FUNC(0x0278A070, void, FileSystemWatcher_NormalizedFilterCollection_ImmutableStringList_CopyTo, (FileSystemWatcher_NormalizedFilterCollection_ImmutableStringList * __this, String__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -37331,2046 +42790,4045 @@ DO_APP_FUNC(0x0278A090, IEnumerator_1_System_String_ *, FileSystemWatcher_Normal DO_APP_FUNC(0x0278A0E0, int32_t, FileSystemWatcher_NormalizedFilterCollection_ImmutableStringList_IndexOf, (FileSystemWatcher_NormalizedFilterCollection_ImmutableStringList * __this, String * item, MethodInfo * method)); DO_APP_FUNC(0x0278A1A0, void, FileSystemWatcher_NormalizedFilterCollection_ImmutableStringList_Insert, (FileSystemWatcher_NormalizedFilterCollection_ImmutableStringList * __this, int32_t index, String * item, MethodInfo * method)); DO_APP_FUNC(0x0278A630, bool, FileSystemWatcher_NormalizedFilterCollection_ImmutableStringList_Remove, (FileSystemWatcher_NormalizedFilterCollection_ImmutableStringList * __this, String * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA618, FileSystemWatcher_NormalizedFilterCollection_ImmutableStringList_Remove__MethodInfo); DO_APP_FUNC(0x0278A680, void, FileSystemWatcher_NormalizedFilterCollection_ImmutableStringList_RemoveAt, (FileSystemWatcher_NormalizedFilterCollection_ImmutableStringList * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x0278A090, IEnumerator *, FileSystemWatcher_NormalizedFilterCollection_ImmutableStringList_System_Collections_IEnumerable_GetEnumerator, (FileSystemWatcher_NormalizedFilterCollection_ImmutableStringList * __this, MethodInfo * method)); DO_APP_FUNC(0x0278AAC0, void, FileSystemWatcher_NormalizedFilterCollection_ImmutableStringList__ctor, (FileSystemWatcher_NormalizedFilterCollection_ImmutableStringList * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, FileSystemWatcher_c_DisplayClass73_0__ctor, (FileSystemWatcher_c_DisplayClass73_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0278AB50, void, FileSystemWatcher_c_DisplayClass73_0__WaitForChanged_b__0, (FileSystemWatcher_c_DisplayClass73_0 * __this, Object * s, FileSystemEventArgs * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA660, FileSystemWatcher_c_DisplayClass73_0__WaitForChanged_b__0__MethodInfo); DO_APP_FUNC(0x0278AC60, void, FileSystemWatcher_c_DisplayClass73_0__WaitForChanged_b__1, (FileSystemWatcher_c_DisplayClass73_0 * __this, Object * s, RenamedEventArgs * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA6F0, FileSystemWatcher_c_DisplayClass73_0__WaitForChanged_b__1__MethodInfo); DO_APP_FUNC(0x00843C60, uint32_t, _PrivateImplementationDetails__2_ComputeStringHash, (String * s, MethodInfo * method)); DO_APP_FUNC(0x0278AD70, void, CodeDomProvider__ctor, (CodeDomProvider * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA3F0, CodeDomProvider__ctor__MethodInfo); DO_APP_FUNC(0x0278ADA0, String *, CodeDomProvider_get_FileExtension, (CodeDomProvider * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA438, CodeDomProvider_get_FileExtension__MethodInfo); DO_APP_FUNC(0x0278ADD0, LanguageOptions__Enum, CodeDomProvider_get_LanguageOptions, (CodeDomProvider * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA398, CodeDomProvider_get_LanguageOptions__MethodInfo); DO_APP_FUNC(0x0278AE00, CompilerResults *, CodeDomProvider_CompileAssemblyFromDom, (CodeDomProvider * __this, CompilerParameters * options, CodeCompileUnit__Array * compilationUnits, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA380, CodeDomProvider_CompileAssemblyFromDom__MethodInfo); DO_APP_FUNC(0x0278AE30, CompilerResults *, CodeDomProvider_CompileAssemblyFromFile, (CodeDomProvider * __this, CompilerParameters * options, String__Array * fileNames, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA3B8, CodeDomProvider_CompileAssemblyFromFile__MethodInfo); DO_APP_FUNC(0x0278AE60, CompilerResults *, CodeDomProvider_CompileAssemblyFromSource, (CodeDomProvider * __this, CompilerParameters * options, String__Array * sources, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA4D0, CodeDomProvider_CompileAssemblyFromSource__MethodInfo); DO_APP_FUNC(0x0278AE90, String *, CodeDomProvider_CreateEscapedIdentifier, (CodeDomProvider * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA508, CodeDomProvider_CreateEscapedIdentifier__MethodInfo); DO_APP_FUNC(0x0278AEC0, ICodeGenerator *, CodeDomProvider_CreateGenerator, (CodeDomProvider * __this, TextWriter * output, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA4F0, CodeDomProvider_CreateGenerator__MethodInfo); DO_APP_FUNC(0x0278AEF0, ICodeGenerator *, CodeDomProvider_CreateGenerator_1, (CodeDomProvider * __this, String * fileName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA440, CodeDomProvider_CreateGenerator_1__MethodInfo); DO_APP_FUNC(0x0278AF20, ICodeParser *, CodeDomProvider_CreateParser, (CodeDomProvider * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA498, CodeDomProvider_CreateParser__MethodInfo); DO_APP_FUNC(0x0278AF50, CodeDomProvider *, CodeDomProvider_CreateProvider, (String * language, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA210, CodeDomProvider_CreateProvider__MethodInfo); DO_APP_FUNC(0x0278AF80, CodeDomProvider *, CodeDomProvider_CreateProvider_1, (String * language, IDictionary_2_System_String_System_String_ * providerOptions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA1F8, CodeDomProvider_CreateProvider_1__MethodInfo); DO_APP_FUNC(0x0278AFB0, String *, CodeDomProvider_CreateValidIdentifier, (CodeDomProvider * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA230, CodeDomProvider_CreateValidIdentifier__MethodInfo); DO_APP_FUNC(0x0278AFE0, void, CodeDomProvider_GenerateCodeFromCompileUnit, (CodeDomProvider * __this, CodeCompileUnit * compileUnit, TextWriter * writer, CodeGeneratorOptions * options, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA190, CodeDomProvider_GenerateCodeFromCompileUnit__MethodInfo); DO_APP_FUNC(0x0278B010, void, CodeDomProvider_GenerateCodeFromExpression, (CodeDomProvider * __this, CodeExpression * expression, TextWriter * writer, CodeGeneratorOptions * options, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA1C0, CodeDomProvider_GenerateCodeFromExpression__MethodInfo); DO_APP_FUNC(0x0278B040, void, CodeDomProvider_GenerateCodeFromMember, (CodeDomProvider * __this, CodeTypeMember * member, TextWriter * writer, CodeGeneratorOptions * options, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA1B0, CodeDomProvider_GenerateCodeFromMember__MethodInfo); DO_APP_FUNC(0x0278B070, void, CodeDomProvider_GenerateCodeFromNamespace, (CodeDomProvider * __this, CodeNamespace * codeNamespace, TextWriter * writer, CodeGeneratorOptions * options, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA2F0, CodeDomProvider_GenerateCodeFromNamespace__MethodInfo); DO_APP_FUNC(0x0278B0A0, void, CodeDomProvider_GenerateCodeFromStatement, (CodeDomProvider * __this, CodeStatement * statement, TextWriter * writer, CodeGeneratorOptions * options, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA350, CodeDomProvider_GenerateCodeFromStatement__MethodInfo); DO_APP_FUNC(0x0278B0D0, void, CodeDomProvider_GenerateCodeFromType, (CodeDomProvider * __this, CodeTypeDeclaration * codeType, TextWriter * writer, CodeGeneratorOptions * options, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA2A0, CodeDomProvider_GenerateCodeFromType__MethodInfo); DO_APP_FUNC(0x0278B100, CompilerInfo__Array *, CodeDomProvider_GetAllCompilerInfo, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA288, CodeDomProvider_GetAllCompilerInfo__MethodInfo); DO_APP_FUNC(0x0278B130, CompilerInfo *, CodeDomProvider_GetCompilerInfo, (String * language, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA2C0, CodeDomProvider_GetCompilerInfo__MethodInfo); DO_APP_FUNC(0x0278B160, TypeConverter *, CodeDomProvider_GetConverter, (CodeDomProvider * __this, Type * type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9FB0, CodeDomProvider_GetConverter__MethodInfo); DO_APP_FUNC(0x0278B190, String *, CodeDomProvider_GetLanguageFromExtension, (String * extension, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9FF8, CodeDomProvider_GetLanguageFromExtension__MethodInfo); DO_APP_FUNC(0x0278B1C0, String *, CodeDomProvider_GetTypeOutput, (CodeDomProvider * __this, CodeTypeReference * type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9FD8, CodeDomProvider_GetTypeOutput__MethodInfo); DO_APP_FUNC(0x0278B1F0, bool, CodeDomProvider_IsDefinedExtension, (String * extension, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9EF8, CodeDomProvider_IsDefinedExtension__MethodInfo); DO_APP_FUNC(0x0278B220, bool, CodeDomProvider_IsDefinedLanguage, (String * language, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9F78, CodeDomProvider_IsDefinedLanguage__MethodInfo); DO_APP_FUNC(0x0278B250, bool, CodeDomProvider_IsValidIdentifier, (CodeDomProvider * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA108, CodeDomProvider_IsValidIdentifier__MethodInfo); DO_APP_FUNC(0x0278B280, CodeCompileUnit *, CodeDomProvider_Parse, (CodeDomProvider * __this, TextReader * codeStream, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA0F0, CodeDomProvider_Parse__MethodInfo); DO_APP_FUNC(0x0278B2B0, bool, CodeDomProvider_Supports, (CodeDomProvider * __this, GeneratorSupport__Enum generatorSupport, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA128, CodeDomProvider_Supports__MethodInfo); DO_APP_FUNC(0x0278B2E0, void, CompilerParameters__ctor, (CompilerParameters * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA060, CompilerParameters__ctor__MethodInfo); DO_APP_FUNC(0x0278B310, void, CompilerParameters__ctor_1, (CompilerParameters * __this, String__Array * assemblyNames, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA0B0, CompilerParameters__ctor_1__MethodInfo); DO_APP_FUNC(0x0278B340, void, CompilerParameters__ctor_2, (CompilerParameters * __this, String__Array * assemblyNames, String * outputName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA098, CompilerParameters__ctor_2__MethodInfo); DO_APP_FUNC(0x0278B370, void, CompilerParameters__ctor_3, (CompilerParameters * __this, String__Array * assemblyNames, String * outputName, bool includeDebugInformation, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9DC8, CompilerParameters__ctor_3__MethodInfo); DO_APP_FUNC(0x0278B3A0, String *, CompilerParameters_get_CompilerOptions, (CompilerParameters * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9E10, CompilerParameters_get_CompilerOptions__MethodInfo); DO_APP_FUNC(0x0278B3D0, void, CompilerParameters_set_CompilerOptions, (CompilerParameters * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9D70, CompilerParameters_set_CompilerOptions__MethodInfo); DO_APP_FUNC(0x0278B400, String *, CompilerParameters_get_CoreAssemblyFileName, (CompilerParameters * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9D68, CompilerParameters_get_CoreAssemblyFileName__MethodInfo); DO_APP_FUNC(0x0278B430, void, CompilerParameters_set_CoreAssemblyFileName, (CompilerParameters * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9D98, CompilerParameters_set_CoreAssemblyFileName__MethodInfo); DO_APP_FUNC(0x0278B460, StringCollection *, CompilerParameters_get_EmbeddedResources, (CompilerParameters * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9EB8, CompilerParameters_get_EmbeddedResources__MethodInfo); DO_APP_FUNC(0x0278B490, Evidence *, CompilerParameters_get_Evidence, (CompilerParameters * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9EE8, CompilerParameters_get_Evidence__MethodInfo); DO_APP_FUNC(0x0278B4C0, void, CompilerParameters_set_Evidence, (CompilerParameters * __this, Evidence * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9ED8, CompilerParameters_set_Evidence__MethodInfo); DO_APP_FUNC(0x0278B4F0, bool, CompilerParameters_get_GenerateExecutable, (CompilerParameters * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9E20, CompilerParameters_get_GenerateExecutable__MethodInfo); DO_APP_FUNC(0x0278B520, void, CompilerParameters_set_GenerateExecutable, (CompilerParameters * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9E70, CompilerParameters_set_GenerateExecutable__MethodInfo); DO_APP_FUNC(0x0278B550, bool, CompilerParameters_get_GenerateInMemory, (CompilerParameters * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9B90, CompilerParameters_get_GenerateInMemory__MethodInfo); DO_APP_FUNC(0x0278B580, void, CompilerParameters_set_GenerateInMemory, (CompilerParameters * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9B80, CompilerParameters_set_GenerateInMemory__MethodInfo); DO_APP_FUNC(0x0278B5B0, bool, CompilerParameters_get_IncludeDebugInformation, (CompilerParameters * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9BB0, CompilerParameters_get_IncludeDebugInformation__MethodInfo); DO_APP_FUNC(0x0278B5E0, void, CompilerParameters_set_IncludeDebugInformation, (CompilerParameters * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9B38, CompilerParameters_set_IncludeDebugInformation__MethodInfo); DO_APP_FUNC(0x0278B610, StringCollection *, CompilerParameters_get_LinkedResources, (CompilerParameters * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9B68, CompilerParameters_get_LinkedResources__MethodInfo); DO_APP_FUNC(0x0278B640, String *, CompilerParameters_get_MainClass, (CompilerParameters * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9B60, CompilerParameters_get_MainClass__MethodInfo); DO_APP_FUNC(0x0278B670, void, CompilerParameters_set_MainClass, (CompilerParameters * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9CB8, CompilerParameters_set_MainClass__MethodInfo); DO_APP_FUNC(0x0278B6A0, String *, CompilerParameters_get_OutputAssembly, (CompilerParameters * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9D40, CompilerParameters_get_OutputAssembly__MethodInfo); DO_APP_FUNC(0x0278B6D0, void, CompilerParameters_set_OutputAssembly, (CompilerParameters * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9C30, CompilerParameters_set_OutputAssembly__MethodInfo); DO_APP_FUNC(0x0278B700, StringCollection *, CompilerParameters_get_ReferencedAssemblies, (CompilerParameters * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9C18, CompilerParameters_get_ReferencedAssemblies__MethodInfo); DO_APP_FUNC(0x0278B730, TempFileCollection *, CompilerParameters_get_TempFiles, (CompilerParameters * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9C58, CompilerParameters_get_TempFiles__MethodInfo); DO_APP_FUNC(0x0278B760, void, CompilerParameters_set_TempFiles, (CompilerParameters * __this, TempFileCollection * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9A00, CompilerParameters_set_TempFiles__MethodInfo); DO_APP_FUNC(0x0278B790, bool, CompilerParameters_get_TreatWarningsAsErrors, (CompilerParameters * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9A28, CompilerParameters_get_TreatWarningsAsErrors__MethodInfo); DO_APP_FUNC(0x0278B7C0, void, CompilerParameters_set_TreatWarningsAsErrors, (CompilerParameters * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9A18, CompilerParameters_set_TreatWarningsAsErrors__MethodInfo); DO_APP_FUNC(0x0278B7F0, void *, CompilerParameters_get_UserToken, (CompilerParameters * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9990, CompilerParameters_get_UserToken__MethodInfo); DO_APP_FUNC(0x0278B820, void, CompilerParameters_set_UserToken, (CompilerParameters * __this, void * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE99D0, CompilerParameters_set_UserToken__MethodInfo); DO_APP_FUNC(0x0278B850, int32_t, CompilerParameters_get_WarningLevel, (CompilerParameters * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9AC8, CompilerParameters_get_WarningLevel__MethodInfo); DO_APP_FUNC(0x0278B880, void, CompilerParameters_set_WarningLevel, (CompilerParameters * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9AB0, CompilerParameters_set_WarningLevel__MethodInfo); DO_APP_FUNC(0x0278B8B0, String *, CompilerParameters_get_Win32Resource, (CompilerParameters * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9AD8, CompilerParameters_get_Win32Resource__MethodInfo); DO_APP_FUNC(0x0278B8E0, void, CompilerParameters_set_Win32Resource, (CompilerParameters * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9A58, CompilerParameters_set_Win32Resource__MethodInfo); DO_APP_FUNC(0x0278B910, void, TempFileCollection__ctor, (TempFileCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9A88, TempFileCollection__ctor__MethodInfo); DO_APP_FUNC(0x0278B940, void, TempFileCollection__ctor_1, (TempFileCollection * __this, String * tempDir, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9A70, TempFileCollection__ctor_1__MethodInfo); DO_APP_FUNC(0x0278B970, void, TempFileCollection__ctor_2, (TempFileCollection * __this, String * tempDir, bool keepFiles, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9808, TempFileCollection__ctor_2__MethodInfo); DO_APP_FUNC(0x0278B9A0, String *, TempFileCollection_get_BasePath, (TempFileCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9848, TempFileCollection_get_BasePath__MethodInfo); DO_APP_FUNC(0x0278B9D0, int32_t, TempFileCollection_get_Count, (TempFileCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE97E0, TempFileCollection_get_Count__MethodInfo); DO_APP_FUNC(0x0278BA00, bool, TempFileCollection_get_KeepFiles, (TempFileCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE97C8, TempFileCollection_get_KeepFiles__MethodInfo); DO_APP_FUNC(0x0278BA30, void, TempFileCollection_set_KeepFiles, (TempFileCollection * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE97F0, TempFileCollection_set_KeepFiles__MethodInfo); DO_APP_FUNC(0x0278BA60, int32_t, TempFileCollection_System_Collections_ICollection_get_Count, (TempFileCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9920, TempFileCollection_System_Collections_ICollection_get_Count__MethodInfo); DO_APP_FUNC(0x0278BA90, bool, TempFileCollection_System_Collections_ICollection_get_IsSynchronized, (TempFileCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9968, TempFileCollection_System_Collections_ICollection_get_IsSynchronized__MethodInfo); DO_APP_FUNC(0x0278BAC0, Object *, TempFileCollection_System_Collections_ICollection_get_SyncRoot, (TempFileCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9950, TempFileCollection_System_Collections_ICollection_get_SyncRoot__MethodInfo); DO_APP_FUNC(0x0278BAF0, String *, TempFileCollection_get_TempDir, (TempFileCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9868, TempFileCollection_get_TempDir__MethodInfo); DO_APP_FUNC(0x0278BB20, String *, TempFileCollection_AddExtension, (TempFileCollection * __this, String * fileExtension, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE98D8, TempFileCollection_AddExtension__MethodInfo); DO_APP_FUNC(0x0278BB50, String *, TempFileCollection_AddExtension_1, (TempFileCollection * __this, String * fileExtension, bool keepFile, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9700, TempFileCollection_AddExtension_1__MethodInfo); DO_APP_FUNC(0x0278BB80, void, TempFileCollection_AddFile, (TempFileCollection * __this, String * fileName, bool keepFile, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE96E8, TempFileCollection_AddFile__MethodInfo); DO_APP_FUNC(0x0278BBB0, void, TempFileCollection_CopyTo, (TempFileCollection * __this, String__Array * fileNames, int32_t start, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9720, TempFileCollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0278BBE0, void, TempFileCollection_Delete, (TempFileCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE96A0, TempFileCollection_Delete__MethodInfo); DO_APP_FUNC(0x0278BC10, void, TempFileCollection_Dispose, (TempFileCollection * __this, bool disposing, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE96C0, TempFileCollection_Dispose__MethodInfo); DO_APP_FUNC(0x0278BC40, IEnumerator *, TempFileCollection_GetEnumerator, (TempFileCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE96B0, TempFileCollection_GetEnumerator__MethodInfo); DO_APP_FUNC(0x0278BC70, void, TempFileCollection_System_Collections_ICollection_CopyTo, (TempFileCollection * __this, Array * array, int32_t start, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9788, TempFileCollection_System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0278BCA0, IEnumerator *, TempFileCollection_System_Collections_IEnumerable_GetEnumerator, (TempFileCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE97C0, TempFileCollection_System_Collections_IEnumerable_GetEnumerator__MethodInfo); DO_APP_FUNC(0x0278BCD0, void, TempFileCollection_System_IDisposable_Dispose, (TempFileCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9758, TempFileCollection_System_IDisposable_Dispose__MethodInfo); DO_APP_FUNC(0x0278BD00, void, CompilerResults__ctor, (CompilerResults * __this, TempFileCollection * tempFiles, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9750, CompilerResults__ctor__MethodInfo); DO_APP_FUNC(0x0278BD30, Assembly *, CompilerResults_get_CompiledAssembly, (CompilerResults * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9770, CompilerResults_get_CompiledAssembly__MethodInfo); DO_APP_FUNC(0x0278BD60, void, CompilerResults_set_CompiledAssembly, (CompilerResults * __this, Assembly * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE95B8, CompilerResults_set_CompiledAssembly__MethodInfo); DO_APP_FUNC(0x0278BD90, CompilerErrorCollection *, CompilerResults_get_Errors, (CompilerResults * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE95D8, CompilerResults_get_Errors__MethodInfo); DO_APP_FUNC(0x0278BDC0, Evidence *, CompilerResults_get_Evidence, (CompilerResults * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE95D0, CompilerResults_get_Evidence__MethodInfo); DO_APP_FUNC(0x0278BDF0, void, CompilerResults_set_Evidence, (CompilerResults * __this, Evidence * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9560, CompilerResults_set_Evidence__MethodInfo); DO_APP_FUNC(0x0278BE20, int32_t, CompilerResults_get_NativeCompilerReturnValue, (CompilerResults * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9598, CompilerResults_get_NativeCompilerReturnValue__MethodInfo); DO_APP_FUNC(0x0278BE50, void, CompilerResults_set_NativeCompilerReturnValue, (CompilerResults * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9638, CompilerResults_set_NativeCompilerReturnValue__MethodInfo); DO_APP_FUNC(0x0278BE80, StringCollection *, CompilerResults_get_Output, (CompilerResults * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9630, CompilerResults_get_Output__MethodInfo); DO_APP_FUNC(0x0278BEB0, String *, CompilerResults_get_PathToAssembly, (CompilerResults * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9650, CompilerResults_get_PathToAssembly__MethodInfo); DO_APP_FUNC(0x0278BEE0, void, CompilerResults_set_PathToAssembly, (CompilerResults * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9600, CompilerResults_set_PathToAssembly__MethodInfo); DO_APP_FUNC(0x0278BF10, TempFileCollection *, CompilerResults_get_TempFiles, (CompilerResults * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9618, CompilerResults_get_TempFiles__MethodInfo); DO_APP_FUNC(0x0278BF40, void, CompilerResults_set_TempFiles, (CompilerResults * __this, TempFileCollection * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9610, CompilerResults_set_TempFiles__MethodInfo); DO_APP_FUNC(0x0278BF70, void, CompilerErrorCollection__ctor, (CompilerErrorCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9508, CompilerErrorCollection__ctor__MethodInfo); DO_APP_FUNC(0x0278BFA0, void, CompilerErrorCollection__ctor_1, (CompilerErrorCollection * __this, CompilerErrorCollection * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9510, CompilerErrorCollection__ctor_1__MethodInfo); DO_APP_FUNC(0x0278BFD0, void, CompilerErrorCollection__ctor_2, (CompilerErrorCollection * __this, CompilerError__Array * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE94E8, CompilerErrorCollection__ctor_2__MethodInfo); DO_APP_FUNC(0x0278C000, bool, CompilerErrorCollection_get_HasErrors, (CompilerErrorCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE94D8, CompilerErrorCollection_get_HasErrors__MethodInfo); DO_APP_FUNC(0x0278C030, bool, CompilerErrorCollection_get_HasWarnings, (CompilerErrorCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE94F8, CompilerErrorCollection_get_HasWarnings__MethodInfo); DO_APP_FUNC(0x0278C060, CompilerError *, CompilerErrorCollection_get_Item, (CompilerErrorCollection * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9540, CompilerErrorCollection_get_Item__MethodInfo); DO_APP_FUNC(0x0278C090, void, CompilerErrorCollection_set_Item, (CompilerErrorCollection * __this, int32_t index, CompilerError * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9558, CompilerErrorCollection_set_Item__MethodInfo); DO_APP_FUNC(0x0278C0C0, int32_t, CompilerErrorCollection_Add, (CompilerErrorCollection * __this, CompilerError * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9548, CompilerErrorCollection_Add__MethodInfo); DO_APP_FUNC(0x0278C0F0, void, CompilerErrorCollection_AddRange, (CompilerErrorCollection * __this, CompilerErrorCollection * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9518, CompilerErrorCollection_AddRange__MethodInfo); DO_APP_FUNC(0x0278C120, void, CompilerErrorCollection_AddRange_1, (CompilerErrorCollection * __this, CompilerError__Array * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9530, CompilerErrorCollection_AddRange_1__MethodInfo); DO_APP_FUNC(0x0278C150, bool, CompilerErrorCollection_Contains, (CompilerErrorCollection * __this, CompilerError * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9460, CompilerErrorCollection_Contains__MethodInfo); DO_APP_FUNC(0x0278C180, void, CompilerErrorCollection_CopyTo, (CompilerErrorCollection * __this, CompilerError__Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9458, CompilerErrorCollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0278C1B0, int32_t, CompilerErrorCollection_IndexOf, (CompilerErrorCollection * __this, CompilerError * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9478, CompilerErrorCollection_IndexOf__MethodInfo); DO_APP_FUNC(0x0278C1E0, void, CompilerErrorCollection_Insert, (CompilerErrorCollection * __this, int32_t index, CompilerError * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9428, CompilerErrorCollection_Insert__MethodInfo); DO_APP_FUNC(0x0278C210, void, CompilerErrorCollection_Remove, (CompilerErrorCollection * __this, CompilerError * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9448, CompilerErrorCollection_Remove__MethodInfo); DO_APP_FUNC(0x0278C240, void, CompilerError__ctor, (CompilerError * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9438, CompilerError__ctor__MethodInfo); DO_APP_FUNC(0x0278C270, void, CompilerError__ctor_1, (CompilerError * __this, String * fileName, int32_t line, int32_t column, String * errorNumber, String * errorText, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE94B0, CompilerError__ctor_1__MethodInfo); DO_APP_FUNC(0x0278C2A0, int32_t, CompilerError_get_Column, (CompilerError * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE94C0, CompilerError_get_Column__MethodInfo); DO_APP_FUNC(0x0278C2D0, void, CompilerError_set_Column, (CompilerError * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE94A0, CompilerError_set_Column__MethodInfo); DO_APP_FUNC(0x0278C300, String *, CompilerError_get_ErrorNumber, (CompilerError * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9490, CompilerError_get_ErrorNumber__MethodInfo); DO_APP_FUNC(0x0278C330, void, CompilerError_set_ErrorNumber, (CompilerError * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE94A8, CompilerError_set_ErrorNumber__MethodInfo); DO_APP_FUNC(0x0278C360, String *, CompilerError_get_ErrorText, (CompilerError * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9388, CompilerError_get_ErrorText__MethodInfo); DO_APP_FUNC(0x0278C390, void, CompilerError_set_ErrorText, (CompilerError * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9398, CompilerError_set_ErrorText__MethodInfo); DO_APP_FUNC(0x0278C3C0, String *, CompilerError_get_FileName, (CompilerError * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9390, CompilerError_get_FileName__MethodInfo); DO_APP_FUNC(0x0278C3F0, void, CompilerError_set_FileName, (CompilerError * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9378, CompilerError_set_FileName__MethodInfo); DO_APP_FUNC(0x0278C420, bool, CompilerError_get_IsWarning, (CompilerError * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9380, CompilerError_get_IsWarning__MethodInfo); DO_APP_FUNC(0x0278C450, void, CompilerError_set_IsWarning, (CompilerError * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE93E8, CompilerError_set_IsWarning__MethodInfo); DO_APP_FUNC(0x0278C480, int32_t, CompilerError_get_Line, (CompilerError * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE93E0, CompilerError_get_Line__MethodInfo); DO_APP_FUNC(0x0278C4B0, void, CompilerError_set_Line, (CompilerError * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE93F8, CompilerError_set_Line__MethodInfo); DO_APP_FUNC(0x0278C4E0, void, CodeGeneratorOptions__ctor, (CodeGeneratorOptions * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE93A8, CodeGeneratorOptions__ctor__MethodInfo); DO_APP_FUNC(0x0278C510, bool, CodeGeneratorOptions_get_BlankLinesBetweenMembers, (CodeGeneratorOptions * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE93D0, CodeGeneratorOptions_get_BlankLinesBetweenMembers__MethodInfo); DO_APP_FUNC(0x0278C540, void, CodeGeneratorOptions_set_BlankLinesBetweenMembers, (CodeGeneratorOptions * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE93C0, CodeGeneratorOptions_set_BlankLinesBetweenMembers__MethodInfo); DO_APP_FUNC(0x0278C570, String *, CodeGeneratorOptions_get_BracingStyle, (CodeGeneratorOptions * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9320, CodeGeneratorOptions_get_BracingStyle__MethodInfo); DO_APP_FUNC(0x0278C5A0, void, CodeGeneratorOptions_set_BracingStyle, (CodeGeneratorOptions * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9330, CodeGeneratorOptions_set_BracingStyle__MethodInfo); DO_APP_FUNC(0x0278C5D0, bool, CodeGeneratorOptions_get_ElseOnClosing, (CodeGeneratorOptions * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9308, CodeGeneratorOptions_get_ElseOnClosing__MethodInfo); DO_APP_FUNC(0x0278C600, void, CodeGeneratorOptions_set_ElseOnClosing, (CodeGeneratorOptions * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9300, CodeGeneratorOptions_set_ElseOnClosing__MethodInfo); DO_APP_FUNC(0x0278C630, String *, CodeGeneratorOptions_get_IndentString, (CodeGeneratorOptions * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9310, CodeGeneratorOptions_get_IndentString__MethodInfo); DO_APP_FUNC(0x0278C660, void, CodeGeneratorOptions_set_IndentString, (CodeGeneratorOptions * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9360, CodeGeneratorOptions_set_IndentString__MethodInfo); DO_APP_FUNC(0x0278C690, Object *, CodeGeneratorOptions_get_Item, (CodeGeneratorOptions * __this, String * index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9370, CodeGeneratorOptions_get_Item__MethodInfo); DO_APP_FUNC(0x0278C6C0, void, CodeGeneratorOptions_set_Item, (CodeGeneratorOptions * __this, String * index, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9368, CodeGeneratorOptions_set_Item__MethodInfo); DO_APP_FUNC(0x0278C6F0, bool, CodeGeneratorOptions_get_VerbatimOrder, (CodeGeneratorOptions * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9340, CodeGeneratorOptions_get_VerbatimOrder__MethodInfo); DO_APP_FUNC(0x0278C720, void, CodeGeneratorOptions_set_VerbatimOrder, (CodeGeneratorOptions * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9358, CodeGeneratorOptions_set_VerbatimOrder__MethodInfo); DO_APP_FUNC(0x0278C750, void, CodeExpression__ctor, (CodeExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE92B0, CodeExpression__ctor__MethodInfo); DO_APP_FUNC(0x0278C780, void, CodeObject__ctor, (CodeObject * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE92A8, CodeObject__ctor__MethodInfo); DO_APP_FUNC(0x0278C7B0, IDictionary *, CodeObject_get_UserData, (CodeObject * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE92B8, CodeObject_get_UserData__MethodInfo); DO_APP_FUNC(0x0278C7E0, void, CodeNamespace__ctor, (CodeNamespace * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9288, CodeNamespace__ctor__MethodInfo); DO_APP_FUNC(0x0278C810, void, CodeNamespace__ctor_1, (CodeNamespace * __this, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9298, CodeNamespace__ctor_1__MethodInfo); DO_APP_FUNC(0x0278C840, CodeCommentStatementCollection *, CodeNamespace_get_Comments, (CodeNamespace * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9290, CodeNamespace_get_Comments__MethodInfo); DO_APP_FUNC(0x0278C870, CodeNamespaceImportCollection *, CodeNamespace_get_Imports, (CodeNamespace * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE92E8, CodeNamespace_get_Imports__MethodInfo); DO_APP_FUNC(0x0278C8A0, String *, CodeNamespace_get_Name, (CodeNamespace * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE92F8, CodeNamespace_get_Name__MethodInfo); DO_APP_FUNC(0x0278C8D0, void, CodeNamespace_set_Name, (CodeNamespace * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE92C8, CodeNamespace_set_Name__MethodInfo); DO_APP_FUNC(0x0278C900, CodeTypeDeclarationCollection *, CodeNamespace_get_Types, (CodeNamespace * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE92C0, CodeNamespace_get_Types__MethodInfo); DO_APP_FUNC(0x0278C930, void, CodeNamespace_add_PopulateComments, (CodeNamespace * __this, EventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE92D8, CodeNamespace_add_PopulateComments__MethodInfo); DO_APP_FUNC(0x0278C960, void, CodeNamespace_remove_PopulateComments, (CodeNamespace * __this, EventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9240, CodeNamespace_remove_PopulateComments__MethodInfo); DO_APP_FUNC(0x0278C990, void, CodeNamespace_add_PopulateImports, (CodeNamespace * __this, EventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9250, CodeNamespace_add_PopulateImports__MethodInfo); DO_APP_FUNC(0x0278C9C0, void, CodeNamespace_remove_PopulateImports, (CodeNamespace * __this, EventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9248, CodeNamespace_remove_PopulateImports__MethodInfo); DO_APP_FUNC(0x0278C9F0, void, CodeNamespace_add_PopulateTypes, (CodeNamespace * __this, EventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9230, CodeNamespace_add_PopulateTypes__MethodInfo); DO_APP_FUNC(0x0278CA20, void, CodeNamespace_remove_PopulateTypes, (CodeNamespace * __this, EventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9238, CodeNamespace_remove_PopulateTypes__MethodInfo); DO_APP_FUNC(0x0278CA50, void, CodeCommentStatementCollection__ctor, (CodeCommentStatementCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9278, CodeCommentStatementCollection__ctor__MethodInfo); DO_APP_FUNC(0x0278CA80, void, CodeCommentStatementCollection__ctor_1, (CodeCommentStatementCollection * __this, CodeCommentStatementCollection * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9270, CodeCommentStatementCollection__ctor_1__MethodInfo); DO_APP_FUNC(0x0278CAB0, void, CodeCommentStatementCollection__ctor_2, (CodeCommentStatementCollection * __this, CodeCommentStatement__Array * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9280, CodeCommentStatementCollection__ctor_2__MethodInfo); DO_APP_FUNC(0x0278CAE0, CodeCommentStatement *, CodeCommentStatementCollection_get_Item, (CodeCommentStatementCollection * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9258, CodeCommentStatementCollection_get_Item__MethodInfo); DO_APP_FUNC(0x0278CB10, void, CodeCommentStatementCollection_set_Item, (CodeCommentStatementCollection * __this, int32_t index, CodeCommentStatement * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9268, CodeCommentStatementCollection_set_Item__MethodInfo); DO_APP_FUNC(0x0278CB40, int32_t, CodeCommentStatementCollection_Add, (CodeCommentStatementCollection * __this, CodeCommentStatement * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9260, CodeCommentStatementCollection_Add__MethodInfo); DO_APP_FUNC(0x0278CB70, void, CodeCommentStatementCollection_AddRange, (CodeCommentStatementCollection * __this, CodeCommentStatementCollection * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE91F8, CodeCommentStatementCollection_AddRange__MethodInfo); DO_APP_FUNC(0x0278CBA0, void, CodeCommentStatementCollection_AddRange_1, (CodeCommentStatementCollection * __this, CodeCommentStatement__Array * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9200, CodeCommentStatementCollection_AddRange_1__MethodInfo); DO_APP_FUNC(0x0278CBD0, bool, CodeCommentStatementCollection_Contains, (CodeCommentStatementCollection * __this, CodeCommentStatement * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE91E8, CodeCommentStatementCollection_Contains__MethodInfo); DO_APP_FUNC(0x0278CC00, void, CodeCommentStatementCollection_CopyTo, (CodeCommentStatementCollection * __this, CodeCommentStatement__Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE91E0, CodeCommentStatementCollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0278CC30, int32_t, CodeCommentStatementCollection_IndexOf, (CodeCommentStatementCollection * __this, CodeCommentStatement * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE91F0, CodeCommentStatementCollection_IndexOf__MethodInfo); DO_APP_FUNC(0x0278CC60, void, CodeCommentStatementCollection_Insert, (CodeCommentStatementCollection * __this, int32_t index, CodeCommentStatement * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9218, CodeCommentStatementCollection_Insert__MethodInfo); DO_APP_FUNC(0x0278CC90, void, CodeCommentStatementCollection_Remove, (CodeCommentStatementCollection * __this, CodeCommentStatement * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9228, CodeCommentStatementCollection_Remove__MethodInfo); DO_APP_FUNC(0x0278CCC0, void, CodeCommentStatement__ctor, (CodeCommentStatement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9220, CodeCommentStatement__ctor__MethodInfo); DO_APP_FUNC(0x0278CCF0, void, CodeCommentStatement__ctor_1, (CodeCommentStatement * __this, CodeComment * comment, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9208, CodeCommentStatement__ctor_1__MethodInfo); DO_APP_FUNC(0x0278CD20, void, CodeCommentStatement__ctor_2, (CodeCommentStatement * __this, String * text, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9210, CodeCommentStatement__ctor_2__MethodInfo); DO_APP_FUNC(0x0278CD50, void, CodeCommentStatement__ctor_3, (CodeCommentStatement * __this, String * text, bool docComment, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE91A8, CodeCommentStatement__ctor_3__MethodInfo); DO_APP_FUNC(0x0278CD80, CodeComment *, CodeCommentStatement_get_Comment, (CodeCommentStatement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE91A0, CodeCommentStatement_get_Comment__MethodInfo); DO_APP_FUNC(0x0278CDB0, void, CodeCommentStatement_set_Comment, (CodeCommentStatement * __this, CodeComment * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE91B0, CodeCommentStatement_set_Comment__MethodInfo); DO_APP_FUNC(0x0278CDE0, void, CodeStatement__ctor, (CodeStatement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9188, CodeStatement__ctor__MethodInfo); DO_APP_FUNC(0x0278CE10, CodeDirectiveCollection *, CodeStatement_get_EndDirectives, (CodeStatement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9198, CodeStatement_get_EndDirectives__MethodInfo); DO_APP_FUNC(0x0278CE40, CodeLinePragma *, CodeStatement_get_LinePragma, (CodeStatement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9190, CodeStatement_get_LinePragma__MethodInfo); DO_APP_FUNC(0x0278CE70, void, CodeStatement_set_LinePragma, (CodeStatement * __this, CodeLinePragma * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE91D0, CodeStatement_set_LinePragma__MethodInfo); DO_APP_FUNC(0x0278CEA0, CodeDirectiveCollection *, CodeStatement_get_StartDirectives, (CodeStatement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE91D8, CodeStatement_get_StartDirectives__MethodInfo); DO_APP_FUNC(0x0278CED0, void, CodeDirectiveCollection__ctor, (CodeDirectiveCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE91C0, CodeDirectiveCollection__ctor__MethodInfo); DO_APP_FUNC(0x0278CF00, void, CodeDirectiveCollection__ctor_1, (CodeDirectiveCollection * __this, CodeDirectiveCollection * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE91B8, CodeDirectiveCollection__ctor_1__MethodInfo); DO_APP_FUNC(0x0278CF30, void, CodeDirectiveCollection__ctor_2, (CodeDirectiveCollection * __this, CodeDirective__Array * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE91C8, CodeDirectiveCollection__ctor_2__MethodInfo); DO_APP_FUNC(0x0278CF60, CodeDirective *, CodeDirectiveCollection_get_Item, (CodeDirectiveCollection * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9140, CodeDirectiveCollection_get_Item__MethodInfo); DO_APP_FUNC(0x0278CF90, void, CodeDirectiveCollection_set_Item, (CodeDirectiveCollection * __this, int32_t index, CodeDirective * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9150, CodeDirectiveCollection_set_Item__MethodInfo); DO_APP_FUNC(0x0278CFC0, int32_t, CodeDirectiveCollection_Add, (CodeDirectiveCollection * __this, CodeDirective * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9148, CodeDirectiveCollection_Add__MethodInfo); DO_APP_FUNC(0x0278CFF0, void, CodeDirectiveCollection_AddRange, (CodeDirectiveCollection * __this, CodeDirectiveCollection * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9130, CodeDirectiveCollection_AddRange__MethodInfo); DO_APP_FUNC(0x0278D020, void, CodeDirectiveCollection_AddRange_1, (CodeDirectiveCollection * __this, CodeDirective__Array * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9138, CodeDirectiveCollection_AddRange_1__MethodInfo); DO_APP_FUNC(0x0278D050, bool, CodeDirectiveCollection_Contains, (CodeDirectiveCollection * __this, CodeDirective * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9178, CodeDirectiveCollection_Contains__MethodInfo); DO_APP_FUNC(0x0278D080, void, CodeDirectiveCollection_CopyTo, (CodeDirectiveCollection * __this, CodeDirective__Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9170, CodeDirectiveCollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0278D0B0, int32_t, CodeDirectiveCollection_IndexOf, (CodeDirectiveCollection * __this, CodeDirective * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9180, CodeDirectiveCollection_IndexOf__MethodInfo); DO_APP_FUNC(0x0278D0E0, void, CodeDirectiveCollection_Insert, (CodeDirectiveCollection * __this, int32_t index, CodeDirective * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9158, CodeDirectiveCollection_Insert__MethodInfo); DO_APP_FUNC(0x0278D110, void, CodeDirectiveCollection_Remove, (CodeDirectiveCollection * __this, CodeDirective * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9168, CodeDirectiveCollection_Remove__MethodInfo); DO_APP_FUNC(0x0278D140, void, CodeDirective__ctor, (CodeDirective * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9160, CodeDirective__ctor__MethodInfo); DO_APP_FUNC(0x0278D170, void, CodeLinePragma__ctor, (CodeLinePragma * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE90F8, CodeLinePragma__ctor__MethodInfo); DO_APP_FUNC(0x0278D1A0, void, CodeLinePragma__ctor_1, (CodeLinePragma * __this, String * fileName, int32_t lineNumber, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9100, CodeLinePragma__ctor_1__MethodInfo); DO_APP_FUNC(0x0278D1D0, String *, CodeLinePragma_get_FileName, (CodeLinePragma * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE90E8, CodeLinePragma_get_FileName__MethodInfo); DO_APP_FUNC(0x0278D200, void, CodeLinePragma_set_FileName, (CodeLinePragma * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE90E0, CodeLinePragma_set_FileName__MethodInfo); DO_APP_FUNC(0x0278D230, int32_t, CodeLinePragma_get_LineNumber, (CodeLinePragma * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE90F0, CodeLinePragma_get_LineNumber__MethodInfo); DO_APP_FUNC(0x0278D260, void, CodeLinePragma_set_LineNumber, (CodeLinePragma * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9118, CodeLinePragma_set_LineNumber__MethodInfo); DO_APP_FUNC(0x0278D290, void, CodeComment__ctor, (CodeComment * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9128, CodeComment__ctor__MethodInfo); DO_APP_FUNC(0x0278D2C0, void, CodeComment__ctor_1, (CodeComment * __this, String * text, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9120, CodeComment__ctor_1__MethodInfo); DO_APP_FUNC(0x0278D2F0, void, CodeComment__ctor_2, (CodeComment * __this, String * text, bool docComment, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9108, CodeComment__ctor_2__MethodInfo); DO_APP_FUNC(0x0278D320, bool, CodeComment_get_DocComment, (CodeComment * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9110, CodeComment_get_DocComment__MethodInfo); DO_APP_FUNC(0x0278D350, void, CodeComment_set_DocComment, (CodeComment * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE90A8, CodeComment_set_DocComment__MethodInfo); DO_APP_FUNC(0x0278D380, String *, CodeComment_get_Text, (CodeComment * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE90A0, CodeComment_get_Text__MethodInfo); DO_APP_FUNC(0x0278D3B0, void, CodeComment_set_Text, (CodeComment * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE90B0, CodeComment_set_Text__MethodInfo); DO_APP_FUNC(0x0278D3E0, void, CodeNamespaceImportCollection__ctor, (CodeNamespaceImportCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9088, CodeNamespaceImportCollection__ctor__MethodInfo); DO_APP_FUNC(0x0278D410, int32_t, CodeNamespaceImportCollection_get_Count, (CodeNamespaceImportCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9098, CodeNamespaceImportCollection_get_Count__MethodInfo); DO_APP_FUNC(0x0278D440, CodeNamespaceImport *, CodeNamespaceImportCollection_get_Item, (CodeNamespaceImportCollection * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9090, CodeNamespaceImportCollection_get_Item__MethodInfo); DO_APP_FUNC(0x0278D470, void, CodeNamespaceImportCollection_set_Item, (CodeNamespaceImportCollection * __this, int32_t index, CodeNamespaceImport * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE90D0, CodeNamespaceImportCollection_set_Item__MethodInfo); DO_APP_FUNC(0x0278D4A0, int32_t, CodeNamespaceImportCollection_System_Collections_ICollection_get_Count, (CodeNamespaceImportCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE90D8, CodeNamespaceImportCollection_System_Collections_ICollection_get_Count__MethodInfo); DO_APP_FUNC(0x0278D4D0, bool, CodeNamespaceImportCollection_System_Collections_ICollection_get_IsSynchronized, (CodeNamespaceImportCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE90C0, CodeNamespaceImportCollection_System_Collections_ICollection_get_IsSynchronized__MethodInfo); DO_APP_FUNC(0x0278D500, Object *, CodeNamespaceImportCollection_System_Collections_ICollection_get_SyncRoot, (CodeNamespaceImportCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE90B8, CodeNamespaceImportCollection_System_Collections_ICollection_get_SyncRoot__MethodInfo); DO_APP_FUNC(0x0278D530, bool, CodeNamespaceImportCollection_System_Collections_IList_get_IsFixedSize, (CodeNamespaceImportCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE90C8, CodeNamespaceImportCollection_System_Collections_IList_get_IsFixedSize__MethodInfo); DO_APP_FUNC(0x0278D560, bool, CodeNamespaceImportCollection_System_Collections_IList_get_IsReadOnly, (CodeNamespaceImportCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9040, CodeNamespaceImportCollection_System_Collections_IList_get_IsReadOnly__MethodInfo); DO_APP_FUNC(0x0278D590, Object *, CodeNamespaceImportCollection_System_Collections_IList_get_Item, (CodeNamespaceImportCollection * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9050, CodeNamespaceImportCollection_System_Collections_IList_get_Item__MethodInfo); DO_APP_FUNC(0x0278D5C0, void, CodeNamespaceImportCollection_System_Collections_IList_set_Item, (CodeNamespaceImportCollection * __this, int32_t index, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9048, CodeNamespaceImportCollection_System_Collections_IList_set_Item__MethodInfo); DO_APP_FUNC(0x0278D5F0, void, CodeNamespaceImportCollection_Add, (CodeNamespaceImportCollection * __this, CodeNamespaceImport * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9030, CodeNamespaceImportCollection_Add__MethodInfo); DO_APP_FUNC(0x0278D620, void, CodeNamespaceImportCollection_AddRange, (CodeNamespaceImportCollection * __this, CodeNamespaceImport__Array * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9038, CodeNamespaceImportCollection_AddRange__MethodInfo); DO_APP_FUNC(0x0278D650, void, CodeNamespaceImportCollection_Clear, (CodeNamespaceImportCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9078, CodeNamespaceImportCollection_Clear__MethodInfo); DO_APP_FUNC(0x0278D680, IEnumerator *, CodeNamespaceImportCollection_GetEnumerator, (CodeNamespaceImportCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9070, CodeNamespaceImportCollection_GetEnumerator__MethodInfo); DO_APP_FUNC(0x0278D6B0, void, CodeNamespaceImportCollection_System_Collections_ICollection_CopyTo, (CodeNamespaceImportCollection * __this, Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9080, CodeNamespaceImportCollection_System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0278D6E0, IEnumerator *, CodeNamespaceImportCollection_System_Collections_IEnumerable_GetEnumerator, (CodeNamespaceImportCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9058, CodeNamespaceImportCollection_System_Collections_IEnumerable_GetEnumerator__MethodInfo); DO_APP_FUNC(0x0278D710, int32_t, CodeNamespaceImportCollection_System_Collections_IList_Add, (CodeNamespaceImportCollection * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9068, CodeNamespaceImportCollection_System_Collections_IList_Add__MethodInfo); DO_APP_FUNC(0x0278D740, void, CodeNamespaceImportCollection_System_Collections_IList_Clear, (CodeNamespaceImportCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9060, CodeNamespaceImportCollection_System_Collections_IList_Clear__MethodInfo); DO_APP_FUNC(0x0278D770, bool, CodeNamespaceImportCollection_System_Collections_IList_Contains, (CodeNamespaceImportCollection * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8FF8, CodeNamespaceImportCollection_System_Collections_IList_Contains__MethodInfo); DO_APP_FUNC(0x0278D7A0, int32_t, CodeNamespaceImportCollection_System_Collections_IList_IndexOf, (CodeNamespaceImportCollection * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9000, CodeNamespaceImportCollection_System_Collections_IList_IndexOf__MethodInfo); DO_APP_FUNC(0x0278D7D0, void, CodeNamespaceImportCollection_System_Collections_IList_Insert, (CodeNamespaceImportCollection * __this, int32_t index, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8FE8, CodeNamespaceImportCollection_System_Collections_IList_Insert__MethodInfo); DO_APP_FUNC(0x0278D800, void, CodeNamespaceImportCollection_System_Collections_IList_Remove, (CodeNamespaceImportCollection * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8FE0, CodeNamespaceImportCollection_System_Collections_IList_Remove__MethodInfo); DO_APP_FUNC(0x0278D830, void, CodeNamespaceImportCollection_System_Collections_IList_RemoveAt, (CodeNamespaceImportCollection * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8FF0, CodeNamespaceImportCollection_System_Collections_IList_RemoveAt__MethodInfo); DO_APP_FUNC(0x0278D860, void, CodeNamespaceImport__ctor, (CodeNamespaceImport * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9018, CodeNamespaceImport__ctor__MethodInfo); DO_APP_FUNC(0x0278D890, void, CodeNamespaceImport__ctor_1, (CodeNamespaceImport * __this, String * nameSpace, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9028, CodeNamespaceImport__ctor_1__MethodInfo); DO_APP_FUNC(0x0278D8C0, CodeLinePragma *, CodeNamespaceImport_get_LinePragma, (CodeNamespaceImport * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9020, CodeNamespaceImport_get_LinePragma__MethodInfo); DO_APP_FUNC(0x0278D8F0, void, CodeNamespaceImport_set_LinePragma, (CodeNamespaceImport * __this, CodeLinePragma * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9008, CodeNamespaceImport_set_LinePragma__MethodInfo); DO_APP_FUNC(0x0278D920, String *, CodeNamespaceImport_get_Namespace, (CodeNamespaceImport * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9010, CodeNamespaceImport_get_Namespace__MethodInfo); DO_APP_FUNC(0x0278D950, void, CodeNamespaceImport_set_Namespace, (CodeNamespaceImport * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8FA8, CodeNamespaceImport_set_Namespace__MethodInfo); DO_APP_FUNC(0x0278D980, void, CodeTypeDeclarationCollection__ctor, (CodeTypeDeclarationCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8FA0, CodeTypeDeclarationCollection__ctor__MethodInfo); DO_APP_FUNC(0x0278D9B0, void, CodeTypeDeclarationCollection__ctor_1, (CodeTypeDeclarationCollection * __this, CodeTypeDeclarationCollection * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8FB0, CodeTypeDeclarationCollection__ctor_1__MethodInfo); DO_APP_FUNC(0x0278D9E0, void, CodeTypeDeclarationCollection__ctor_2, (CodeTypeDeclarationCollection * __this, CodeTypeDeclaration__Array * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8F88, CodeTypeDeclarationCollection__ctor_2__MethodInfo); DO_APP_FUNC(0x0278DA10, CodeTypeDeclaration *, CodeTypeDeclarationCollection_get_Item, (CodeTypeDeclarationCollection * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8F98, CodeTypeDeclarationCollection_get_Item__MethodInfo); DO_APP_FUNC(0x0278DA40, void, CodeTypeDeclarationCollection_set_Item, (CodeTypeDeclarationCollection * __this, int32_t index, CodeTypeDeclaration * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8F90, CodeTypeDeclarationCollection_set_Item__MethodInfo); DO_APP_FUNC(0x0278DA70, int32_t, CodeTypeDeclarationCollection_Add, (CodeTypeDeclarationCollection * __this, CodeTypeDeclaration * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8FD0, CodeTypeDeclarationCollection_Add__MethodInfo); DO_APP_FUNC(0x0278DAA0, void, CodeTypeDeclarationCollection_AddRange, (CodeTypeDeclarationCollection * __this, CodeTypeDeclarationCollection * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8FD8, CodeTypeDeclarationCollection_AddRange__MethodInfo); DO_APP_FUNC(0x0278DAD0, void, CodeTypeDeclarationCollection_AddRange_1, (CodeTypeDeclarationCollection * __this, CodeTypeDeclaration__Array * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8FC0, CodeTypeDeclarationCollection_AddRange_1__MethodInfo); DO_APP_FUNC(0x0278DB00, bool, CodeTypeDeclarationCollection_Contains, (CodeTypeDeclarationCollection * __this, CodeTypeDeclaration * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8FB8, CodeTypeDeclarationCollection_Contains__MethodInfo); DO_APP_FUNC(0x0278DB30, void, CodeTypeDeclarationCollection_CopyTo, (CodeTypeDeclarationCollection * __this, CodeTypeDeclaration__Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8FC8, CodeTypeDeclarationCollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0278DB60, int32_t, CodeTypeDeclarationCollection_IndexOf, (CodeTypeDeclarationCollection * __this, CodeTypeDeclaration * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8F40, CodeTypeDeclarationCollection_IndexOf__MethodInfo); DO_APP_FUNC(0x0278DB90, void, CodeTypeDeclarationCollection_Insert, (CodeTypeDeclarationCollection * __this, int32_t index, CodeTypeDeclaration * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8F50, CodeTypeDeclarationCollection_Insert__MethodInfo); DO_APP_FUNC(0x0278DBC0, void, CodeTypeDeclarationCollection_Remove, (CodeTypeDeclarationCollection * __this, CodeTypeDeclaration * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8F48, CodeTypeDeclarationCollection_Remove__MethodInfo); DO_APP_FUNC(0x0278DBF0, void, CodeTypeReference__ctor, (CodeTypeReference * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8F30, CodeTypeReference__ctor__MethodInfo); DO_APP_FUNC(0x0278DC20, void, CodeTypeReference__ctor_1, (CodeTypeReference * __this, CodeTypeParameter * typeParameter, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8F38, CodeTypeReference__ctor_1__MethodInfo); DO_APP_FUNC(0x0278DC50, void, CodeTypeReference__ctor_2, (CodeTypeReference * __this, CodeTypeReference * arrayType, int32_t rank, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8F78, CodeTypeReference__ctor_2__MethodInfo); DO_APP_FUNC(0x0278DC80, void, CodeTypeReference__ctor_3, (CodeTypeReference * __this, String * typeName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8F70, CodeTypeReference__ctor_3__MethodInfo); DO_APP_FUNC(0x0278DCB0, void, CodeTypeReference__ctor_4, (CodeTypeReference * __this, String * typeName, CodeTypeReferenceOptions__Enum codeTypeReferenceOption, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8F80, CodeTypeReference__ctor_4__MethodInfo); DO_APP_FUNC(0x0278DCE0, void, CodeTypeReference__ctor_5, (CodeTypeReference * __this, String * typeName, CodeTypeReference__Array * typeArguments, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8F58, CodeTypeReference__ctor_5__MethodInfo); DO_APP_FUNC(0x0278DD10, void, CodeTypeReference__ctor_6, (CodeTypeReference * __this, String * baseType, int32_t rank, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8F68, CodeTypeReference__ctor_6__MethodInfo); DO_APP_FUNC(0x0278DD40, void, CodeTypeReference__ctor_7, (CodeTypeReference * __this, Type * type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8F60, CodeTypeReference__ctor_7__MethodInfo); DO_APP_FUNC(0x0278DD70, void, CodeTypeReference__ctor_8, (CodeTypeReference * __this, Type * type, CodeTypeReferenceOptions__Enum codeTypeReferenceOption, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8EF8, CodeTypeReference__ctor_8__MethodInfo); DO_APP_FUNC(0x0278DDA0, CodeTypeReference *, CodeTypeReference_get_ArrayElementType, (CodeTypeReference * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8F00, CodeTypeReference_get_ArrayElementType__MethodInfo); DO_APP_FUNC(0x0278DDD0, void, CodeTypeReference_set_ArrayElementType, (CodeTypeReference * __this, CodeTypeReference * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8EE8, CodeTypeReference_set_ArrayElementType__MethodInfo); DO_APP_FUNC(0x0278DE00, int32_t, CodeTypeReference_get_ArrayRank, (CodeTypeReference * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8EE0, CodeTypeReference_get_ArrayRank__MethodInfo); DO_APP_FUNC(0x0278DE30, void, CodeTypeReference_set_ArrayRank, (CodeTypeReference * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8EF0, CodeTypeReference_set_ArrayRank__MethodInfo); DO_APP_FUNC(0x0278DE60, String *, CodeTypeReference_get_BaseType, (CodeTypeReference * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8F18, CodeTypeReference_get_BaseType__MethodInfo); DO_APP_FUNC(0x0278DE90, void, CodeTypeReference_set_BaseType, (CodeTypeReference * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8F28, CodeTypeReference_set_BaseType__MethodInfo); DO_APP_FUNC(0x0278DEC0, CodeTypeReferenceOptions__Enum, CodeTypeReference_get_Options, (CodeTypeReference * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8F20, CodeTypeReference_get_Options__MethodInfo); DO_APP_FUNC(0x0278DEF0, void, CodeTypeReference_set_Options, (CodeTypeReference * __this, CodeTypeReferenceOptions__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8F08, CodeTypeReference_set_Options__MethodInfo); DO_APP_FUNC(0x0278DF20, CodeTypeReferenceCollection *, CodeTypeReference_get_TypeArguments, (CodeTypeReference * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8F10, CodeTypeReference_get_TypeArguments__MethodInfo); DO_APP_FUNC(0x0278DF50, void, CodeTypeParameter__ctor, (CodeTypeParameter * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8EA8, CodeTypeParameter__ctor__MethodInfo); DO_APP_FUNC(0x0278DF80, void, CodeTypeParameter__ctor_1, (CodeTypeParameter * __this, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8EA0, CodeTypeParameter__ctor_1__MethodInfo); DO_APP_FUNC(0x0278DFB0, CodeTypeReferenceCollection *, CodeTypeParameter_get_Constraints, (CodeTypeParameter * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8EB0, CodeTypeParameter_get_Constraints__MethodInfo); DO_APP_FUNC(0x0278DFE0, CodeAttributeDeclarationCollection *, CodeTypeParameter_get_CustomAttributes, (CodeTypeParameter * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8E88, CodeTypeParameter_get_CustomAttributes__MethodInfo); DO_APP_FUNC(0x0278E010, bool, CodeTypeParameter_get_HasConstructorConstraint, (CodeTypeParameter * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8E98, CodeTypeParameter_get_HasConstructorConstraint__MethodInfo); DO_APP_FUNC(0x0278E040, void, CodeTypeParameter_set_HasConstructorConstraint, (CodeTypeParameter * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8E90, CodeTypeParameter_set_HasConstructorConstraint__MethodInfo); DO_APP_FUNC(0x0278E070, String *, CodeTypeParameter_get_Name, (CodeTypeParameter * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8ED0, CodeTypeParameter_get_Name__MethodInfo); DO_APP_FUNC(0x0278E0A0, void, CodeTypeParameter_set_Name, (CodeTypeParameter * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8ED8, CodeTypeParameter_set_Name__MethodInfo); DO_APP_FUNC(0x0278E0D0, void, CodeTypeReferenceCollection__ctor, (CodeTypeReferenceCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8EC0, CodeTypeReferenceCollection__ctor__MethodInfo); DO_APP_FUNC(0x0278E100, void, CodeTypeReferenceCollection__ctor_1, (CodeTypeReferenceCollection * __this, CodeTypeReferenceCollection * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8EB8, CodeTypeReferenceCollection__ctor_1__MethodInfo); DO_APP_FUNC(0x0278E130, void, CodeTypeReferenceCollection__ctor_2, (CodeTypeReferenceCollection * __this, CodeTypeReference__Array * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8EC8, CodeTypeReferenceCollection__ctor_2__MethodInfo); DO_APP_FUNC(0x0278E160, CodeTypeReference *, CodeTypeReferenceCollection_get_Item, (CodeTypeReferenceCollection * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8E40, CodeTypeReferenceCollection_get_Item__MethodInfo); DO_APP_FUNC(0x0278E190, void, CodeTypeReferenceCollection_set_Item, (CodeTypeReferenceCollection * __this, int32_t index, CodeTypeReference * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8E50, CodeTypeReferenceCollection_set_Item__MethodInfo); DO_APP_FUNC(0x0278E1C0, int32_t, CodeTypeReferenceCollection_Add, (CodeTypeReferenceCollection * __this, CodeTypeReference * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8E48, CodeTypeReferenceCollection_Add__MethodInfo); DO_APP_FUNC(0x0278E1F0, void, CodeTypeReferenceCollection_Add_1, (CodeTypeReferenceCollection * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8E30, CodeTypeReferenceCollection_Add_1__MethodInfo); DO_APP_FUNC(0x0278E220, void, CodeTypeReferenceCollection_Add_2, (CodeTypeReferenceCollection * __this, Type * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8E38, CodeTypeReferenceCollection_Add_2__MethodInfo); DO_APP_FUNC(0x0278E250, void, CodeTypeReferenceCollection_AddRange, (CodeTypeReferenceCollection * __this, CodeTypeReferenceCollection * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8E78, CodeTypeReferenceCollection_AddRange__MethodInfo); DO_APP_FUNC(0x0278E280, void, CodeTypeReferenceCollection_AddRange_1, (CodeTypeReferenceCollection * __this, CodeTypeReference__Array * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8E70, CodeTypeReferenceCollection_AddRange_1__MethodInfo); DO_APP_FUNC(0x0278E2B0, bool, CodeTypeReferenceCollection_Contains, (CodeTypeReferenceCollection * __this, CodeTypeReference * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8E80, CodeTypeReferenceCollection_Contains__MethodInfo); DO_APP_FUNC(0x0278E2E0, void, CodeTypeReferenceCollection_CopyTo, (CodeTypeReferenceCollection * __this, CodeTypeReference__Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8E58, CodeTypeReferenceCollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0278E310, int32_t, CodeTypeReferenceCollection_IndexOf, (CodeTypeReferenceCollection * __this, CodeTypeReference * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8E68, CodeTypeReferenceCollection_IndexOf__MethodInfo); DO_APP_FUNC(0x0278E340, void, CodeTypeReferenceCollection_Insert, (CodeTypeReferenceCollection * __this, int32_t index, CodeTypeReference * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8E60, CodeTypeReferenceCollection_Insert__MethodInfo); DO_APP_FUNC(0x0278E370, void, CodeTypeReferenceCollection_Remove, (CodeTypeReferenceCollection * __this, CodeTypeReference * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8DF8, CodeTypeReferenceCollection_Remove__MethodInfo); DO_APP_FUNC(0x0278E3A0, void, CodeAttributeDeclarationCollection__ctor, (CodeAttributeDeclarationCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8E00, CodeAttributeDeclarationCollection__ctor__MethodInfo); DO_APP_FUNC(0x0278E3D0, void, CodeAttributeDeclarationCollection__ctor_1, (CodeAttributeDeclarationCollection * __this, CodeAttributeDeclarationCollection * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8DE8, CodeAttributeDeclarationCollection__ctor_1__MethodInfo); DO_APP_FUNC(0x0278E400, void, CodeAttributeDeclarationCollection__ctor_2, (CodeAttributeDeclarationCollection * __this, CodeAttributeDeclaration__Array * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8DE0, CodeAttributeDeclarationCollection__ctor_2__MethodInfo); DO_APP_FUNC(0x0278E430, CodeAttributeDeclaration *, CodeAttributeDeclarationCollection_get_Item, (CodeAttributeDeclarationCollection * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8DF0, CodeAttributeDeclarationCollection_get_Item__MethodInfo); DO_APP_FUNC(0x0278E460, void, CodeAttributeDeclarationCollection_set_Item, (CodeAttributeDeclarationCollection * __this, int32_t index, CodeAttributeDeclaration * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8E18, CodeAttributeDeclarationCollection_set_Item__MethodInfo); DO_APP_FUNC(0x0278E490, int32_t, CodeAttributeDeclarationCollection_Add, (CodeAttributeDeclarationCollection * __this, CodeAttributeDeclaration * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8E28, CodeAttributeDeclarationCollection_Add__MethodInfo); DO_APP_FUNC(0x0278E4C0, void, CodeAttributeDeclarationCollection_AddRange, (CodeAttributeDeclarationCollection * __this, CodeAttributeDeclarationCollection * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8E20, CodeAttributeDeclarationCollection_AddRange__MethodInfo); DO_APP_FUNC(0x0278E4F0, void, CodeAttributeDeclarationCollection_AddRange_1, (CodeAttributeDeclarationCollection * __this, CodeAttributeDeclaration__Array * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8E08, CodeAttributeDeclarationCollection_AddRange_1__MethodInfo); DO_APP_FUNC(0x0278E520, bool, CodeAttributeDeclarationCollection_Contains, (CodeAttributeDeclarationCollection * __this, CodeAttributeDeclaration * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8E10, CodeAttributeDeclarationCollection_Contains__MethodInfo); DO_APP_FUNC(0x0278E550, void, CodeAttributeDeclarationCollection_CopyTo, (CodeAttributeDeclarationCollection * __this, CodeAttributeDeclaration__Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8DA8, CodeAttributeDeclarationCollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0278E580, int32_t, CodeAttributeDeclarationCollection_IndexOf, (CodeAttributeDeclarationCollection * __this, CodeAttributeDeclaration * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8DA0, CodeAttributeDeclarationCollection_IndexOf__MethodInfo); DO_APP_FUNC(0x0278E5B0, void, CodeAttributeDeclarationCollection_Insert, (CodeAttributeDeclarationCollection * __this, int32_t index, CodeAttributeDeclaration * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8DB0, CodeAttributeDeclarationCollection_Insert__MethodInfo); DO_APP_FUNC(0x0278E5E0, void, CodeAttributeDeclarationCollection_Remove, (CodeAttributeDeclarationCollection * __this, CodeAttributeDeclaration * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8D88, CodeAttributeDeclarationCollection_Remove__MethodInfo); DO_APP_FUNC(0x0278E610, void, CodeAttributeDeclaration__ctor, (CodeAttributeDeclaration * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8D98, CodeAttributeDeclaration__ctor__MethodInfo); DO_APP_FUNC(0x0278E640, void, CodeAttributeDeclaration__ctor_1, (CodeAttributeDeclaration * __this, CodeTypeReference * attributeType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8D90, CodeAttributeDeclaration__ctor_1__MethodInfo); DO_APP_FUNC(0x0278E670, void, CodeAttributeDeclaration__ctor_2, (CodeAttributeDeclaration * __this, CodeTypeReference * attributeType, CodeAttributeArgument__Array * arguments, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8DD0, CodeAttributeDeclaration__ctor_2__MethodInfo); DO_APP_FUNC(0x0278E6A0, void, CodeAttributeDeclaration__ctor_3, (CodeAttributeDeclaration * __this, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8DD8, CodeAttributeDeclaration__ctor_3__MethodInfo); DO_APP_FUNC(0x0278E6D0, void, CodeAttributeDeclaration__ctor_4, (CodeAttributeDeclaration * __this, String * name, CodeAttributeArgument__Array * arguments, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8DC0, CodeAttributeDeclaration__ctor_4__MethodInfo); DO_APP_FUNC(0x0278E700, CodeAttributeArgumentCollection *, CodeAttributeDeclaration_get_Arguments, (CodeAttributeDeclaration * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8DB8, CodeAttributeDeclaration_get_Arguments__MethodInfo); DO_APP_FUNC(0x0278E730, CodeTypeReference *, CodeAttributeDeclaration_get_AttributeType, (CodeAttributeDeclaration * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8DC8, CodeAttributeDeclaration_get_AttributeType__MethodInfo); DO_APP_FUNC(0x0278E760, String *, CodeAttributeDeclaration_get_Name, (CodeAttributeDeclaration * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8D40, CodeAttributeDeclaration_get_Name__MethodInfo); DO_APP_FUNC(0x0278E790, void, CodeAttributeDeclaration_set_Name, (CodeAttributeDeclaration * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8D50, CodeAttributeDeclaration_set_Name__MethodInfo); DO_APP_FUNC(0x0278E7C0, void, CodeAttributeArgument__ctor, (CodeAttributeArgument * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8D48, CodeAttributeArgument__ctor__MethodInfo); DO_APP_FUNC(0x0278E7F0, void, CodeAttributeArgument__ctor_1, (CodeAttributeArgument * __this, CodeExpression * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8D30, CodeAttributeArgument__ctor_1__MethodInfo); DO_APP_FUNC(0x0278E820, void, CodeAttributeArgument__ctor_2, (CodeAttributeArgument * __this, String * name, CodeExpression * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8D38, CodeAttributeArgument__ctor_2__MethodInfo); DO_APP_FUNC(0x0278E850, String *, CodeAttributeArgument_get_Name, (CodeAttributeArgument * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8D78, CodeAttributeArgument_get_Name__MethodInfo); DO_APP_FUNC(0x0278E880, void, CodeAttributeArgument_set_Name, (CodeAttributeArgument * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8D70, CodeAttributeArgument_set_Name__MethodInfo); DO_APP_FUNC(0x0278E8B0, CodeExpression *, CodeAttributeArgument_get_Value, (CodeAttributeArgument * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8D80, CodeAttributeArgument_get_Value__MethodInfo); DO_APP_FUNC(0x0278E8E0, void, CodeAttributeArgument_set_Value, (CodeAttributeArgument * __this, CodeExpression * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8D58, CodeAttributeArgument_set_Value__MethodInfo); DO_APP_FUNC(0x0278E910, void, CodeAttributeArgumentCollection__ctor, (CodeAttributeArgumentCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8D68, CodeAttributeArgumentCollection__ctor__MethodInfo); DO_APP_FUNC(0x0278E940, void, CodeAttributeArgumentCollection__ctor_1, (CodeAttributeArgumentCollection * __this, CodeAttributeArgumentCollection * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8D60, CodeAttributeArgumentCollection__ctor_1__MethodInfo); DO_APP_FUNC(0x0278E970, void, CodeAttributeArgumentCollection__ctor_2, (CodeAttributeArgumentCollection * __this, CodeAttributeArgument__Array * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8CF8, CodeAttributeArgumentCollection__ctor_2__MethodInfo); DO_APP_FUNC(0x0278E9A0, CodeAttributeArgument *, CodeAttributeArgumentCollection_get_Item, (CodeAttributeArgumentCollection * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8D00, CodeAttributeArgumentCollection_get_Item__MethodInfo); DO_APP_FUNC(0x0278E9D0, void, CodeAttributeArgumentCollection_set_Item, (CodeAttributeArgumentCollection * __this, int32_t index, CodeAttributeArgument * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8CE8, CodeAttributeArgumentCollection_set_Item__MethodInfo); DO_APP_FUNC(0x0278EA00, int32_t, CodeAttributeArgumentCollection_Add, (CodeAttributeArgumentCollection * __this, CodeAttributeArgument * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8CE0, CodeAttributeArgumentCollection_Add__MethodInfo); DO_APP_FUNC(0x0278EA30, void, CodeAttributeArgumentCollection_AddRange, (CodeAttributeArgumentCollection * __this, CodeAttributeArgumentCollection * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8CF0, CodeAttributeArgumentCollection_AddRange__MethodInfo); DO_APP_FUNC(0x0278EA60, void, CodeAttributeArgumentCollection_AddRange_1, (CodeAttributeArgumentCollection * __this, CodeAttributeArgument__Array * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8D18, CodeAttributeArgumentCollection_AddRange_1__MethodInfo); DO_APP_FUNC(0x0278EA90, bool, CodeAttributeArgumentCollection_Contains, (CodeAttributeArgumentCollection * __this, CodeAttributeArgument * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8D28, CodeAttributeArgumentCollection_Contains__MethodInfo); DO_APP_FUNC(0x0278EAC0, void, CodeAttributeArgumentCollection_CopyTo, (CodeAttributeArgumentCollection * __this, CodeAttributeArgument__Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8D20, CodeAttributeArgumentCollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0278EAF0, int32_t, CodeAttributeArgumentCollection_IndexOf, (CodeAttributeArgumentCollection * __this, CodeAttributeArgument * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8D08, CodeAttributeArgumentCollection_IndexOf__MethodInfo); DO_APP_FUNC(0x0278EB20, void, CodeAttributeArgumentCollection_Insert, (CodeAttributeArgumentCollection * __this, int32_t index, CodeAttributeArgument * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8D10, CodeAttributeArgumentCollection_Insert__MethodInfo); DO_APP_FUNC(0x0278EB50, void, CodeAttributeArgumentCollection_Remove, (CodeAttributeArgumentCollection * __this, CodeAttributeArgument * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8CA8, CodeAttributeArgumentCollection_Remove__MethodInfo); DO_APP_FUNC(0x0278EB80, void, CodeTypeMember__ctor, (CodeTypeMember * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8CA0, CodeTypeMember__ctor__MethodInfo); DO_APP_FUNC(0x0278EBB0, MemberAttributes__Enum, CodeTypeMember_get_Attributes, (CodeTypeMember * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8CB0, CodeTypeMember_get_Attributes__MethodInfo); DO_APP_FUNC(0x0278EBE0, void, CodeTypeMember_set_Attributes, (CodeTypeMember * __this, MemberAttributes__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8C88, CodeTypeMember_set_Attributes__MethodInfo); DO_APP_FUNC(0x0278EC10, CodeCommentStatementCollection *, CodeTypeMember_get_Comments, (CodeTypeMember * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8C98, CodeTypeMember_get_Comments__MethodInfo); DO_APP_FUNC(0x0278EC40, CodeAttributeDeclarationCollection *, CodeTypeMember_get_CustomAttributes, (CodeTypeMember * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8C90, CodeTypeMember_get_CustomAttributes__MethodInfo); DO_APP_FUNC(0x0278EC70, void, CodeTypeMember_set_CustomAttributes, (CodeTypeMember * __this, CodeAttributeDeclarationCollection * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8CD0, CodeTypeMember_set_CustomAttributes__MethodInfo); DO_APP_FUNC(0x0278ECA0, CodeDirectiveCollection *, CodeTypeMember_get_EndDirectives, (CodeTypeMember * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8CD8, CodeTypeMember_get_EndDirectives__MethodInfo); DO_APP_FUNC(0x0278ECD0, CodeLinePragma *, CodeTypeMember_get_LinePragma, (CodeTypeMember * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8CC0, CodeTypeMember_get_LinePragma__MethodInfo); DO_APP_FUNC(0x0278ED00, void, CodeTypeMember_set_LinePragma, (CodeTypeMember * __this, CodeLinePragma * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8CB8, CodeTypeMember_set_LinePragma__MethodInfo); DO_APP_FUNC(0x0278ED30, String *, CodeTypeMember_get_Name, (CodeTypeMember * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8CC8, CodeTypeMember_get_Name__MethodInfo); DO_APP_FUNC(0x0278ED60, void, CodeTypeMember_set_Name, (CodeTypeMember * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8C40, CodeTypeMember_set_Name__MethodInfo); DO_APP_FUNC(0x0278ED90, CodeDirectiveCollection *, CodeTypeMember_get_StartDirectives, (CodeTypeMember * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8C50, CodeTypeMember_get_StartDirectives__MethodInfo); DO_APP_FUNC(0x0278EDC0, void, CompilerInfo__ctor, (CompilerInfo * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8C48, CompilerInfo__ctor__MethodInfo); DO_APP_FUNC(0x0278EDF0, Type *, CompilerInfo_get_CodeDomProviderType, (CompilerInfo * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8C30, CompilerInfo_get_CodeDomProviderType__MethodInfo); DO_APP_FUNC(0x0278EE20, bool, CompilerInfo_get_IsCodeDomProviderTypeValid, (CompilerInfo * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8C38, CompilerInfo_get_IsCodeDomProviderTypeValid__MethodInfo); DO_APP_FUNC(0x0278EE50, CompilerParameters *, CompilerInfo_CreateDefaultCompilerParameters, (CompilerInfo * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8C78, CompilerInfo_CreateDefaultCompilerParameters__MethodInfo); DO_APP_FUNC(0x0278EE80, CodeDomProvider *, CompilerInfo_CreateProvider, (CompilerInfo * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8C70, CompilerInfo_CreateProvider__MethodInfo); DO_APP_FUNC(0x0278EEB0, CodeDomProvider *, CompilerInfo_CreateProvider_1, (CompilerInfo * __this, IDictionary_2_System_String_System_String_ * providerOptions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8C80, CompilerInfo_CreateProvider_1__MethodInfo); DO_APP_FUNC(0x0278EEE0, String__Array *, CompilerInfo_GetExtensions, (CompilerInfo * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8C58, CompilerInfo_GetExtensions__MethodInfo); DO_APP_FUNC(0x0278EF10, String__Array *, CompilerInfo_GetLanguages, (CompilerInfo * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8C68, CompilerInfo_GetLanguages__MethodInfo); DO_APP_FUNC(0x0278EF40, void, CodeNamespaceCollection__ctor, (CodeNamespaceCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8C60, CodeNamespaceCollection__ctor__MethodInfo); DO_APP_FUNC(0x0278EF70, void, CodeNamespaceCollection__ctor_1, (CodeNamespaceCollection * __this, CodeNamespaceCollection * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8BF8, CodeNamespaceCollection__ctor_1__MethodInfo); DO_APP_FUNC(0x0278EFA0, void, CodeNamespaceCollection__ctor_2, (CodeNamespaceCollection * __this, CodeNamespace__Array * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8C00, CodeNamespaceCollection__ctor_2__MethodInfo); DO_APP_FUNC(0x0278EFD0, CodeNamespace *, CodeNamespaceCollection_get_Item, (CodeNamespaceCollection * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8BE8, CodeNamespaceCollection_get_Item__MethodInfo); DO_APP_FUNC(0x0278F000, void, CodeNamespaceCollection_set_Item, (CodeNamespaceCollection * __this, int32_t index, CodeNamespace * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8BE0, CodeNamespaceCollection_set_Item__MethodInfo); DO_APP_FUNC(0x0278F030, int32_t, CodeNamespaceCollection_Add, (CodeNamespaceCollection * __this, CodeNamespace * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8BF0, CodeNamespaceCollection_Add__MethodInfo); DO_APP_FUNC(0x0278F060, void, CodeNamespaceCollection_AddRange, (CodeNamespaceCollection * __this, CodeNamespaceCollection * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8C18, CodeNamespaceCollection_AddRange__MethodInfo); DO_APP_FUNC(0x0278F090, void, CodeNamespaceCollection_AddRange_1, (CodeNamespaceCollection * __this, CodeNamespace__Array * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8C28, CodeNamespaceCollection_AddRange_1__MethodInfo); DO_APP_FUNC(0x0278F0C0, bool, CodeNamespaceCollection_Contains, (CodeNamespaceCollection * __this, CodeNamespace * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8C20, CodeNamespaceCollection_Contains__MethodInfo); DO_APP_FUNC(0x0278F0F0, void, CodeNamespaceCollection_CopyTo, (CodeNamespaceCollection * __this, CodeNamespace__Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8C08, CodeNamespaceCollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0278F120, int32_t, CodeNamespaceCollection_IndexOf, (CodeNamespaceCollection * __this, CodeNamespace * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8C10, CodeNamespaceCollection_IndexOf__MethodInfo); DO_APP_FUNC(0x0278F150, void, CodeNamespaceCollection_Insert, (CodeNamespaceCollection * __this, int32_t index, CodeNamespace * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8BA8, CodeNamespaceCollection_Insert__MethodInfo); DO_APP_FUNC(0x0278F180, void, CodeNamespaceCollection_Remove, (CodeNamespaceCollection * __this, CodeNamespace * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8BA0, CodeNamespaceCollection_Remove__MethodInfo); DO_APP_FUNC(0x0278F1B0, void, CodeTypeMemberCollection__ctor, (CodeTypeMemberCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8BB0, CodeTypeMemberCollection__ctor__MethodInfo); DO_APP_FUNC(0x0278F1E0, void, CodeTypeMemberCollection__ctor_1, (CodeTypeMemberCollection * __this, CodeTypeMemberCollection * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8B88, CodeTypeMemberCollection__ctor_1__MethodInfo); DO_APP_FUNC(0x0278F210, void, CodeTypeMemberCollection__ctor_2, (CodeTypeMemberCollection * __this, CodeTypeMember__Array * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8B98, CodeTypeMemberCollection__ctor_2__MethodInfo); DO_APP_FUNC(0x0278F240, CodeTypeMember *, CodeTypeMemberCollection_get_Item, (CodeTypeMemberCollection * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8B90, CodeTypeMemberCollection_get_Item__MethodInfo); DO_APP_FUNC(0x0278F270, void, CodeTypeMemberCollection_set_Item, (CodeTypeMemberCollection * __this, int32_t index, CodeTypeMember * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8BD0, CodeTypeMemberCollection_set_Item__MethodInfo); DO_APP_FUNC(0x0278F2A0, int32_t, CodeTypeMemberCollection_Add, (CodeTypeMemberCollection * __this, CodeTypeMember * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8BD8, CodeTypeMemberCollection_Add__MethodInfo); DO_APP_FUNC(0x0278F2D0, void, CodeTypeMemberCollection_AddRange, (CodeTypeMemberCollection * __this, CodeTypeMemberCollection * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8BC0, CodeTypeMemberCollection_AddRange__MethodInfo); DO_APP_FUNC(0x0278F300, void, CodeTypeMemberCollection_AddRange_1, (CodeTypeMemberCollection * __this, CodeTypeMember__Array * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8BB8, CodeTypeMemberCollection_AddRange_1__MethodInfo); DO_APP_FUNC(0x0278F330, bool, CodeTypeMemberCollection_Contains, (CodeTypeMemberCollection * __this, CodeTypeMember * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8BC8, CodeTypeMemberCollection_Contains__MethodInfo); DO_APP_FUNC(0x0278F360, void, CodeTypeMemberCollection_CopyTo, (CodeTypeMemberCollection * __this, CodeTypeMember__Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8B40, CodeTypeMemberCollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0278F390, int32_t, CodeTypeMemberCollection_IndexOf, (CodeTypeMemberCollection * __this, CodeTypeMember * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8B50, CodeTypeMemberCollection_IndexOf__MethodInfo); DO_APP_FUNC(0x0278F3C0, void, CodeTypeMemberCollection_Insert, (CodeTypeMemberCollection * __this, int32_t index, CodeTypeMember * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8B48, CodeTypeMemberCollection_Insert__MethodInfo); DO_APP_FUNC(0x0278F3F0, void, CodeTypeMemberCollection_Remove, (CodeTypeMemberCollection * __this, CodeTypeMember * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8B30, CodeTypeMemberCollection_Remove__MethodInfo); DO_APP_FUNC(0x0278F420, void, CodeTypeParameterCollection__ctor, (CodeTypeParameterCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8B38, CodeTypeParameterCollection__ctor__MethodInfo); DO_APP_FUNC(0x0278F450, void, CodeTypeParameterCollection__ctor_1, (CodeTypeParameterCollection * __this, CodeTypeParameterCollection * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8B78, CodeTypeParameterCollection__ctor_1__MethodInfo); DO_APP_FUNC(0x0278F480, void, CodeTypeParameterCollection__ctor_2, (CodeTypeParameterCollection * __this, CodeTypeParameter__Array * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8B70, CodeTypeParameterCollection__ctor_2__MethodInfo); DO_APP_FUNC(0x0278F4B0, CodeTypeParameter *, CodeTypeParameterCollection_get_Item, (CodeTypeParameterCollection * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8B80, CodeTypeParameterCollection_get_Item__MethodInfo); DO_APP_FUNC(0x0278F4E0, void, CodeTypeParameterCollection_set_Item, (CodeTypeParameterCollection * __this, int32_t index, CodeTypeParameter * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8B58, CodeTypeParameterCollection_set_Item__MethodInfo); DO_APP_FUNC(0x0278F510, int32_t, CodeTypeParameterCollection_Add, (CodeTypeParameterCollection * __this, CodeTypeParameter * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8B68, CodeTypeParameterCollection_Add__MethodInfo); DO_APP_FUNC(0x0278F540, void, CodeTypeParameterCollection_Add_1, (CodeTypeParameterCollection * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8B60, CodeTypeParameterCollection_Add_1__MethodInfo); DO_APP_FUNC(0x0278F570, void, CodeTypeParameterCollection_AddRange, (CodeTypeParameterCollection * __this, CodeTypeParameterCollection * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8AF8, CodeTypeParameterCollection_AddRange__MethodInfo); DO_APP_FUNC(0x0278F5A0, void, CodeTypeParameterCollection_AddRange_1, (CodeTypeParameterCollection * __this, CodeTypeParameter__Array * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8B00, CodeTypeParameterCollection_AddRange_1__MethodInfo); DO_APP_FUNC(0x0278F5D0, bool, CodeTypeParameterCollection_Contains, (CodeTypeParameterCollection * __this, CodeTypeParameter * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8AE8, CodeTypeParameterCollection_Contains__MethodInfo); DO_APP_FUNC(0x0278F600, void, CodeTypeParameterCollection_CopyTo, (CodeTypeParameterCollection * __this, CodeTypeParameter__Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8AE0, CodeTypeParameterCollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0278F630, int32_t, CodeTypeParameterCollection_IndexOf, (CodeTypeParameterCollection * __this, CodeTypeParameter * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8AF0, CodeTypeParameterCollection_IndexOf__MethodInfo); DO_APP_FUNC(0x0278F660, void, CodeTypeParameterCollection_Insert, (CodeTypeParameterCollection * __this, int32_t index, CodeTypeParameter * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8B18, CodeTypeParameterCollection_Insert__MethodInfo); DO_APP_FUNC(0x0278F690, void, CodeTypeParameterCollection_Remove, (CodeTypeParameterCollection * __this, CodeTypeParameter * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8B28, CodeTypeParameterCollection_Remove__MethodInfo); DO_APP_FUNC(0x0278F6C0, void, CounterCreationDataCollection__ctor, (CounterCreationDataCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8B20, CounterCreationDataCollection__ctor__MethodInfo); DO_APP_FUNC(0x0278F6F0, void, CounterCreationDataCollection__ctor_1, (CounterCreationDataCollection * __this, CounterCreationDataCollection * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8B08, CounterCreationDataCollection__ctor_1__MethodInfo); DO_APP_FUNC(0x0278F720, void, CounterCreationDataCollection__ctor_2, (CounterCreationDataCollection * __this, CounterCreationData__Array * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8B10, CounterCreationDataCollection__ctor_2__MethodInfo); DO_APP_FUNC(0x0278F750, CounterCreationData *, CounterCreationDataCollection_get_Item, (CounterCreationDataCollection * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8AA8, CounterCreationDataCollection_get_Item__MethodInfo); DO_APP_FUNC(0x0278F780, void, CounterCreationDataCollection_set_Item, (CounterCreationDataCollection * __this, int32_t index, CounterCreationData * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8AA0, CounterCreationDataCollection_set_Item__MethodInfo); DO_APP_FUNC(0x0278F7B0, int32_t, CounterCreationDataCollection_Add, (CounterCreationDataCollection * __this, CounterCreationData * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8AB0, CounterCreationDataCollection_Add__MethodInfo); DO_APP_FUNC(0x0278F7E0, void, CounterCreationDataCollection_AddRange, (CounterCreationDataCollection * __this, CounterCreationDataCollection * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8A88, CounterCreationDataCollection_AddRange__MethodInfo); DO_APP_FUNC(0x0278F810, void, CounterCreationDataCollection_AddRange_1, (CounterCreationDataCollection * __this, CounterCreationData__Array * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8A98, CounterCreationDataCollection_AddRange_1__MethodInfo); DO_APP_FUNC(0x0278F840, bool, CounterCreationDataCollection_Contains, (CounterCreationDataCollection * __this, CounterCreationData * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8A90, CounterCreationDataCollection_Contains__MethodInfo); DO_APP_FUNC(0x0278F870, void, CounterCreationDataCollection_CopyTo, (CounterCreationDataCollection * __this, CounterCreationData__Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8AD0, CounterCreationDataCollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0278F8A0, int32_t, CounterCreationDataCollection_IndexOf, (CounterCreationDataCollection * __this, CounterCreationData * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8AD8, CounterCreationDataCollection_IndexOf__MethodInfo); DO_APP_FUNC(0x0278F8D0, void, CounterCreationDataCollection_Insert, (CounterCreationDataCollection * __this, int32_t index, CounterCreationData * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8AC0, CounterCreationDataCollection_Insert__MethodInfo); DO_APP_FUNC(0x0278F900, void, CounterCreationDataCollection_Remove, (CounterCreationDataCollection * __this, CounterCreationData * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8AB8, CounterCreationDataCollection_Remove__MethodInfo); DO_APP_FUNC(0x0278F930, void, CounterCreationData__ctor, (CounterCreationData * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8AC8, CounterCreationData__ctor__MethodInfo); DO_APP_FUNC(0x0278F960, void, CounterCreationData__ctor_1, (CounterCreationData * __this, String * counterName, String * counterHelp, PerformanceCounterType__Enum counterType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8A40, CounterCreationData__ctor_1__MethodInfo); DO_APP_FUNC(0x0278F990, String *, CounterCreationData_get_CounterHelp, (CounterCreationData * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8A50, CounterCreationData_get_CounterHelp__MethodInfo); DO_APP_FUNC(0x0278F9C0, void, CounterCreationData_set_CounterHelp, (CounterCreationData * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8A48, CounterCreationData_set_CounterHelp__MethodInfo); DO_APP_FUNC(0x0278F9F0, String *, CounterCreationData_get_CounterName, (CounterCreationData * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8A30, CounterCreationData_get_CounterName__MethodInfo); DO_APP_FUNC(0x0278FA20, void, CounterCreationData_set_CounterName, (CounterCreationData * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8A38, CounterCreationData_set_CounterName__MethodInfo); DO_APP_FUNC(0x0278FA50, PerformanceCounterType__Enum, CounterCreationData_get_CounterType, (CounterCreationData * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8A78, CounterCreationData_get_CounterType__MethodInfo); DO_APP_FUNC(0x0278FA80, void, CounterCreationData_set_CounterType, (CounterCreationData * __this, PerformanceCounterType__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8A70, CounterCreationData_set_CounterType__MethodInfo); DO_APP_FUNC(0x0278FAB0, void, ConfigurationException__ctor, (ConfigurationException * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8A80, ConfigurationException__ctor__MethodInfo); DO_APP_FUNC(0x0278FAE0, void, ConfigurationException__ctor_1, (ConfigurationException * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8A58, ConfigurationException__ctor_1__MethodInfo); DO_APP_FUNC(0x0278FB10, void, ConfigurationException__ctor_2, (ConfigurationException * __this, String * message, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8A68, ConfigurationException__ctor_2__MethodInfo); DO_APP_FUNC(0x0278FB40, void, ConfigurationException__ctor_3, (ConfigurationException * __this, String * message, Exception * inner, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8A60, ConfigurationException__ctor_3__MethodInfo); DO_APP_FUNC(0x0278FB70, void, ConfigurationException__ctor_4, (ConfigurationException * __this, String * message, Exception * inner, String * filename, int32_t line, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE89F8, ConfigurationException__ctor_4__MethodInfo); DO_APP_FUNC(0x0278FBA0, void, ConfigurationException__ctor_5, (ConfigurationException * __this, String * message, Exception * inner, XmlNode * node, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8A00, ConfigurationException__ctor_5__MethodInfo); DO_APP_FUNC(0x0278FBD0, void, ConfigurationException__ctor_6, (ConfigurationException * __this, String * message, String * filename, int32_t line, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE89E8, ConfigurationException__ctor_6__MethodInfo); DO_APP_FUNC(0x0278FC00, void, ConfigurationException__ctor_7, (ConfigurationException * __this, String * message, XmlNode * node, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE89E0, ConfigurationException__ctor_7__MethodInfo); DO_APP_FUNC(0x0278FC30, String *, ConfigurationException_get_BareMessage, (ConfigurationException * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE89F0, ConfigurationException_get_BareMessage__MethodInfo); DO_APP_FUNC(0x0278FC60, String *, ConfigurationException_get_Filename, (ConfigurationException * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8A18, ConfigurationException_get_Filename__MethodInfo); DO_APP_FUNC(0x0278FC90, int32_t, ConfigurationException_get_Line, (ConfigurationException * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8A28, ConfigurationException_get_Line__MethodInfo); DO_APP_FUNC(0x0278FCC0, String *, ConfigurationException_GetXmlNodeFilename, (XmlNode * node, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8A20, ConfigurationException_GetXmlNodeFilename__MethodInfo); DO_APP_FUNC(0x0278FCF0, int32_t, ConfigurationException_GetXmlNodeLineNumber, (XmlNode * node, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8A08, ConfigurationException_GetXmlNodeLineNumber__MethodInfo); DO_APP_FUNC(0x0278FD20, void, StandardOleMarshalObject__ctor, (StandardOleMarshalObject * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8A10, StandardOleMarshalObject__ctor__MethodInfo); DO_APP_FUNC(0x0278FD50, void, CodeStatementCollection__ctor, (CodeStatementCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE89A8, CodeStatementCollection__ctor__MethodInfo); DO_APP_FUNC(0x0278FD80, void, CodeStatementCollection__ctor_1, (CodeStatementCollection * __this, CodeStatementCollection * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE89A0, CodeStatementCollection__ctor_1__MethodInfo); DO_APP_FUNC(0x0278FDB0, void, CodeStatementCollection__ctor_2, (CodeStatementCollection * __this, CodeStatement__Array * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE89B0, CodeStatementCollection__ctor_2__MethodInfo); DO_APP_FUNC(0x0278FDE0, CodeStatement *, CodeStatementCollection_get_Item, (CodeStatementCollection * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8988, CodeStatementCollection_get_Item__MethodInfo); DO_APP_FUNC(0x0278FE10, void, CodeStatementCollection_set_Item, (CodeStatementCollection * __this, int32_t index, CodeStatement * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8998, CodeStatementCollection_set_Item__MethodInfo); DO_APP_FUNC(0x0278FE40, int32_t, CodeStatementCollection_Add, (CodeStatementCollection * __this, CodeExpression * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8990, CodeStatementCollection_Add__MethodInfo); DO_APP_FUNC(0x0278FE70, int32_t, CodeStatementCollection_Add_1, (CodeStatementCollection * __this, CodeStatement * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE89D0, CodeStatementCollection_Add_1__MethodInfo); DO_APP_FUNC(0x0278FEA0, void, CodeStatementCollection_AddRange, (CodeStatementCollection * __this, CodeStatementCollection * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE89D8, CodeStatementCollection_AddRange__MethodInfo); DO_APP_FUNC(0x0278FED0, void, CodeStatementCollection_AddRange_1, (CodeStatementCollection * __this, CodeStatement__Array * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE89C0, CodeStatementCollection_AddRange_1__MethodInfo); DO_APP_FUNC(0x0278FF00, bool, CodeStatementCollection_Contains, (CodeStatementCollection * __this, CodeStatement * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE89B8, CodeStatementCollection_Contains__MethodInfo); DO_APP_FUNC(0x0278FF30, void, CodeStatementCollection_CopyTo, (CodeStatementCollection * __this, CodeStatement__Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE89C8, CodeStatementCollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0278FF60, int32_t, CodeStatementCollection_IndexOf, (CodeStatementCollection * __this, CodeStatement * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8940, CodeStatementCollection_IndexOf__MethodInfo); DO_APP_FUNC(0x0278FF90, void, CodeStatementCollection_Insert, (CodeStatementCollection * __this, int32_t index, CodeStatement * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8950, CodeStatementCollection_Insert__MethodInfo); DO_APP_FUNC(0x0278FFC0, void, CodeStatementCollection_Remove, (CodeStatementCollection * __this, CodeStatement * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8948, CodeStatementCollection_Remove__MethodInfo); DO_APP_FUNC(0x0278FFF0, void, SettingsBase__ctor, (SettingsBase * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8930, SettingsBase__ctor__MethodInfo); DO_APP_FUNC(0x02790020, SettingsContext *, SettingsBase_get_Context, (SettingsBase * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8938, SettingsBase_get_Context__MethodInfo); DO_APP_FUNC(0x02790050, bool, SettingsBase_get_IsSynchronized, (SettingsBase * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8978, SettingsBase_get_IsSynchronized__MethodInfo); DO_APP_FUNC(0x02790080, Object *, SettingsBase_get_Item, (SettingsBase * __this, String * propertyName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8970, SettingsBase_get_Item__MethodInfo); DO_APP_FUNC(0x027900B0, void, SettingsBase_set_Item, (SettingsBase * __this, String * propertyName, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8980, SettingsBase_set_Item__MethodInfo); DO_APP_FUNC(0x027900E0, SettingsPropertyCollection *, SettingsBase_get_Properties, (SettingsBase * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8958, SettingsBase_get_Properties__MethodInfo); DO_APP_FUNC(0x02790110, SettingsPropertyValueCollection *, SettingsBase_get_PropertyValues, (SettingsBase * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8968, SettingsBase_get_PropertyValues__MethodInfo); DO_APP_FUNC(0x02790140, SettingsProviderCollection *, SettingsBase_get_Providers, (SettingsBase * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8960, SettingsBase_get_Providers__MethodInfo); DO_APP_FUNC(0x02790170, void, SettingsBase_Initialize, (SettingsBase * __this, SettingsContext * context, SettingsPropertyCollection * properties, SettingsProviderCollection * providers, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE88F8, SettingsBase_Initialize__MethodInfo); DO_APP_FUNC(0x027901A0, void, SettingsBase_Save, (SettingsBase * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8900, SettingsBase_Save__MethodInfo); DO_APP_FUNC(0x027901D0, SettingsBase *, SettingsBase_Synchronized, (SettingsBase * settingsBase, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE88E8, SettingsBase_Synchronized__MethodInfo); DO_APP_FUNC(0x02790200, void, SettingsContext__ctor, (SettingsContext * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE88E0, SettingsContext__ctor__MethodInfo); DO_APP_FUNC(0x02790230, void, SettingsPropertyCollection__ctor, (SettingsPropertyCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE88F0, SettingsPropertyCollection__ctor__MethodInfo); DO_APP_FUNC(0x02790260, int32_t, SettingsPropertyCollection_get_Count, (SettingsPropertyCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8918, SettingsPropertyCollection_get_Count__MethodInfo); DO_APP_FUNC(0x02790290, bool, SettingsPropertyCollection_get_IsSynchronized, (SettingsPropertyCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8928, SettingsPropertyCollection_get_IsSynchronized__MethodInfo); DO_APP_FUNC(0x027902C0, SettingsProperty *, SettingsPropertyCollection_get_Item, (SettingsPropertyCollection * __this, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8920, SettingsPropertyCollection_get_Item__MethodInfo); DO_APP_FUNC(0x027902F0, Object *, SettingsPropertyCollection_get_SyncRoot, (SettingsPropertyCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8908, SettingsPropertyCollection_get_SyncRoot__MethodInfo); DO_APP_FUNC(0x02790320, void, SettingsPropertyCollection_Add, (SettingsPropertyCollection * __this, SettingsProperty * property, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8910, SettingsPropertyCollection_Add__MethodInfo); DO_APP_FUNC(0x02790350, void, SettingsPropertyCollection_Clear, (SettingsPropertyCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE88A8, SettingsPropertyCollection_Clear__MethodInfo); DO_APP_FUNC(0x02790380, Object *, SettingsPropertyCollection_Clone, (SettingsPropertyCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE88A0, SettingsPropertyCollection_Clone__MethodInfo); DO_APP_FUNC(0x027903B0, void, SettingsPropertyCollection_CopyTo, (SettingsPropertyCollection * __this, Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE88B0, SettingsPropertyCollection_CopyTo__MethodInfo); DO_APP_FUNC(0x027903E0, IEnumerator *, SettingsPropertyCollection_GetEnumerator, (SettingsPropertyCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8888, SettingsPropertyCollection_GetEnumerator__MethodInfo); DO_APP_FUNC(0x02790410, void, SettingsPropertyCollection_OnAdd, (SettingsPropertyCollection * __this, SettingsProperty * property, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8898, SettingsPropertyCollection_OnAdd__MethodInfo); DO_APP_FUNC(0x02790440, void, SettingsPropertyCollection_OnAddComplete, (SettingsPropertyCollection * __this, SettingsProperty * property, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8890, SettingsPropertyCollection_OnAddComplete__MethodInfo); DO_APP_FUNC(0x02790470, void, SettingsPropertyCollection_OnClear, (SettingsPropertyCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE88D0, SettingsPropertyCollection_OnClear__MethodInfo); DO_APP_FUNC(0x027904A0, void, SettingsPropertyCollection_OnClearComplete, (SettingsPropertyCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE88D8, SettingsPropertyCollection_OnClearComplete__MethodInfo); DO_APP_FUNC(0x027904D0, void, SettingsPropertyCollection_OnRemove, (SettingsPropertyCollection * __this, SettingsProperty * property, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE88C0, SettingsPropertyCollection_OnRemove__MethodInfo); DO_APP_FUNC(0x02790500, void, SettingsPropertyCollection_OnRemoveComplete, (SettingsPropertyCollection * __this, SettingsProperty * property, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE88B8, SettingsPropertyCollection_OnRemoveComplete__MethodInfo); DO_APP_FUNC(0x02790530, void, SettingsPropertyCollection_Remove, (SettingsPropertyCollection * __this, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE88C8, SettingsPropertyCollection_Remove__MethodInfo); DO_APP_FUNC(0x02790560, void, SettingsPropertyCollection_SetReadOnly, (SettingsPropertyCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8838, SettingsPropertyCollection_SetReadOnly__MethodInfo); DO_APP_FUNC(0x02790590, void, SettingsProperty__ctor, (SettingsProperty * __this, SettingsProperty * propertyToCopy, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8848, SettingsProperty__ctor__MethodInfo); DO_APP_FUNC(0x027905C0, void, SettingsProperty__ctor_1, (SettingsProperty * __this, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8840, SettingsProperty__ctor_1__MethodInfo); DO_APP_FUNC(0x027905F0, void, SettingsProperty__ctor_2, (SettingsProperty * __this, String * name, Type * propertyType, SettingsProvider * provider, bool isReadOnly, Object * defaultValue, SettingsSerializeAs__Enum serializeAs, SettingsAttributeDictionary * attributes, bool throwOnErrorDeserializing, bool throwOnErrorSerializing, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8808, SettingsProperty__ctor_2__MethodInfo); DO_APP_FUNC(0x02790620, SettingsAttributeDictionary *, SettingsProperty_get_Attributes, (SettingsProperty * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8820, SettingsProperty_get_Attributes__MethodInfo); DO_APP_FUNC(0x02790650, Object *, SettingsProperty_get_DefaultValue, (SettingsProperty * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8878, SettingsProperty_get_DefaultValue__MethodInfo); DO_APP_FUNC(0x02790680, void, SettingsProperty_set_DefaultValue, (SettingsProperty * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8870, SettingsProperty_set_DefaultValue__MethodInfo); DO_APP_FUNC(0x027906B0, bool, SettingsProperty_get_IsReadOnly, (SettingsProperty * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8880, SettingsProperty_get_IsReadOnly__MethodInfo); DO_APP_FUNC(0x027906E0, void, SettingsProperty_set_IsReadOnly, (SettingsProperty * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8850, SettingsProperty_set_IsReadOnly__MethodInfo); DO_APP_FUNC(0x02790710, String *, SettingsProperty_get_Name, (SettingsProperty * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8860, SettingsProperty_get_Name__MethodInfo); DO_APP_FUNC(0x02790740, void, SettingsProperty_set_Name, (SettingsProperty * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8858, SettingsProperty_set_Name__MethodInfo); DO_APP_FUNC(0x02790770, Type *, SettingsProperty_get_PropertyType, (SettingsProperty * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8788, SettingsProperty_get_PropertyType__MethodInfo); DO_APP_FUNC(0x027907A0, void, SettingsProperty_set_PropertyType, (SettingsProperty * __this, Type * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE87A8, SettingsProperty_set_PropertyType__MethodInfo); DO_APP_FUNC(0x027907D0, SettingsProvider *, SettingsProperty_get_Provider, (SettingsProperty * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8770, SettingsProperty_get_Provider__MethodInfo); DO_APP_FUNC(0x02790800, void, SettingsProperty_set_Provider, (SettingsProperty * __this, SettingsProvider * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8768, SettingsProperty_set_Provider__MethodInfo); DO_APP_FUNC(0x02790830, SettingsSerializeAs__Enum, SettingsProperty_get_SerializeAs, (SettingsProperty * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8778, SettingsProperty_get_SerializeAs__MethodInfo); DO_APP_FUNC(0x02790860, void, SettingsProperty_set_SerializeAs, (SettingsProperty * __this, SettingsSerializeAs__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE87E0, SettingsProperty_set_SerializeAs__MethodInfo); DO_APP_FUNC(0x02790890, bool, SettingsProperty_get_ThrowOnErrorDeserializing, (SettingsProperty * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE87F8, SettingsProperty_get_ThrowOnErrorDeserializing__MethodInfo); DO_APP_FUNC(0x027908C0, void, SettingsProperty_set_ThrowOnErrorDeserializing, (SettingsProperty * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE87F0, SettingsProperty_set_ThrowOnErrorDeserializing__MethodInfo); DO_APP_FUNC(0x027908F0, bool, SettingsProperty_get_ThrowOnErrorSerializing, (SettingsProperty * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE87B0, SettingsProperty_get_ThrowOnErrorSerializing__MethodInfo); DO_APP_FUNC(0x02790920, void, SettingsProperty_set_ThrowOnErrorSerializing, (SettingsProperty * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE87D0, SettingsProperty_set_ThrowOnErrorSerializing__MethodInfo); DO_APP_FUNC(0x02790950, void, SettingsProvider__ctor, (SettingsProvider * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8710, SettingsProvider__ctor__MethodInfo); DO_APP_FUNC(0x02790980, void, SettingsPropertyValueCollection__ctor, (SettingsPropertyValueCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8708, SettingsPropertyValueCollection__ctor__MethodInfo); DO_APP_FUNC(0x027909B0, int32_t, SettingsPropertyValueCollection_get_Count, (SettingsPropertyValueCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8718, SettingsPropertyValueCollection_get_Count__MethodInfo); DO_APP_FUNC(0x027909E0, bool, SettingsPropertyValueCollection_get_IsSynchronized, (SettingsPropertyValueCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE86E0, SettingsPropertyValueCollection_get_IsSynchronized__MethodInfo); DO_APP_FUNC(0x02790A10, SettingsPropertyValue *, SettingsPropertyValueCollection_get_Item, (SettingsPropertyValueCollection * __this, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE86F8, SettingsPropertyValueCollection_get_Item__MethodInfo); DO_APP_FUNC(0x02790A40, Object *, SettingsPropertyValueCollection_get_SyncRoot, (SettingsPropertyValueCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE86F0, SettingsPropertyValueCollection_get_SyncRoot__MethodInfo); DO_APP_FUNC(0x02790A70, void, SettingsPropertyValueCollection_Add, (SettingsPropertyValueCollection * __this, SettingsPropertyValue * property, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8758, SettingsPropertyValueCollection_Add__MethodInfo); DO_APP_FUNC(0x02790AA0, void, SettingsPropertyValueCollection_Clear, (SettingsPropertyValueCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8760, SettingsPropertyValueCollection_Clear__MethodInfo); DO_APP_FUNC(0x02790AD0, Object *, SettingsPropertyValueCollection_Clone, (SettingsPropertyValueCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8738, SettingsPropertyValueCollection_Clone__MethodInfo); DO_APP_FUNC(0x02790B00, void, SettingsPropertyValueCollection_CopyTo, (SettingsPropertyValueCollection * __this, Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8730, SettingsPropertyValueCollection_CopyTo__MethodInfo); DO_APP_FUNC(0x02790B30, IEnumerator *, SettingsPropertyValueCollection_GetEnumerator, (SettingsPropertyValueCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8748, SettingsPropertyValueCollection_GetEnumerator__MethodInfo); DO_APP_FUNC(0x02790B60, void, SettingsPropertyValueCollection_Remove, (SettingsPropertyValueCollection * __this, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8660, SettingsPropertyValueCollection_Remove__MethodInfo); DO_APP_FUNC(0x02790B90, void, SettingsPropertyValueCollection_SetReadOnly, (SettingsPropertyValueCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8680, SettingsPropertyValueCollection_SetReadOnly__MethodInfo); DO_APP_FUNC(0x02790BC0, void, SettingsPropertyValue__ctor, (SettingsPropertyValue * __this, SettingsProperty * property, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8670, SettingsPropertyValue__ctor__MethodInfo); DO_APP_FUNC(0x02790BF0, bool, SettingsPropertyValue_get_Deserialized, (SettingsPropertyValue * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8648, SettingsPropertyValue_get_Deserialized__MethodInfo); DO_APP_FUNC(0x02790C20, void, SettingsPropertyValue_set_Deserialized, (SettingsPropertyValue * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8650, SettingsPropertyValue_set_Deserialized__MethodInfo); DO_APP_FUNC(0x02790C50, bool, SettingsPropertyValue_get_IsDirty, (SettingsPropertyValue * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE86C8, SettingsPropertyValue_get_IsDirty__MethodInfo); DO_APP_FUNC(0x02790C80, void, SettingsPropertyValue_set_IsDirty, (SettingsPropertyValue * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE86B8, SettingsPropertyValue_set_IsDirty__MethodInfo); DO_APP_FUNC(0x02790CB0, String *, SettingsPropertyValue_get_Name, (SettingsPropertyValue * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE86D8, SettingsPropertyValue_get_Name__MethodInfo); DO_APP_FUNC(0x02790CE0, SettingsProperty *, SettingsPropertyValue_get_Property, (SettingsPropertyValue * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8688, SettingsPropertyValue_get_Property__MethodInfo); DO_APP_FUNC(0x02790D10, Object *, SettingsPropertyValue_get_PropertyValue, (SettingsPropertyValue * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE86A8, SettingsPropertyValue_get_PropertyValue__MethodInfo); DO_APP_FUNC(0x02790D40, void, SettingsPropertyValue_set_PropertyValue, (SettingsPropertyValue * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE86A0, SettingsPropertyValue_set_PropertyValue__MethodInfo); DO_APP_FUNC(0x02790D70, Object *, SettingsPropertyValue_get_SerializedValue, (SettingsPropertyValue * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE85D0, SettingsPropertyValue_get_SerializedValue__MethodInfo); DO_APP_FUNC(0x02790DA0, void, SettingsPropertyValue_set_SerializedValue, (SettingsPropertyValue * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE85E8, SettingsPropertyValue_set_SerializedValue__MethodInfo); DO_APP_FUNC(0x02790DD0, bool, SettingsPropertyValue_get_UsingDefaultValue, (SettingsPropertyValue * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE85B8, SettingsPropertyValue_get_UsingDefaultValue__MethodInfo); DO_APP_FUNC(0x02790E00, void, SettingsAttributeDictionary__ctor, (SettingsAttributeDictionary * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE85B0, SettingsAttributeDictionary__ctor__MethodInfo); DO_APP_FUNC(0x02790E30, void, SettingsAttributeDictionary__ctor_1, (SettingsAttributeDictionary * __this, SettingsAttributeDictionary * attributes, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE85C0, SettingsAttributeDictionary__ctor_1__MethodInfo); DO_APP_FUNC(0x02790E60, void, SettingsProviderCollection__ctor, (SettingsProviderCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8628, SettingsProviderCollection__ctor__MethodInfo); DO_APP_FUNC(0x02790E90, SettingsProvider *, SettingsProviderCollection_get_Item, (SettingsProviderCollection * __this, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8638, SettingsProviderCollection_get_Item__MethodInfo); DO_APP_FUNC(0x02790EC0, void, SettingsProviderCollection_Add, (SettingsProviderCollection * __this, ProviderBase * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8630, SettingsProviderCollection_Add__MethodInfo); DO_APP_FUNC(0x02790EF0, void, CodeMemberMethod__ctor, (CodeMemberMethod * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE85F0, CodeMemberMethod__ctor__MethodInfo); DO_APP_FUNC(0x02790F20, CodeTypeReferenceCollection *, CodeMemberMethod_get_ImplementationTypes, (CodeMemberMethod * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8610, CodeMemberMethod_get_ImplementationTypes__MethodInfo); DO_APP_FUNC(0x02790F50, CodeParameterDeclarationExpressionCollection *, CodeMemberMethod_get_Parameters, (CodeMemberMethod * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8520, CodeMemberMethod_get_Parameters__MethodInfo); DO_APP_FUNC(0x02790F80, CodeTypeReference *, CodeMemberMethod_get_PrivateImplementationType, (CodeMemberMethod * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8518, CodeMemberMethod_get_PrivateImplementationType__MethodInfo); DO_APP_FUNC(0x02790FB0, void, CodeMemberMethod_set_PrivateImplementationType, (CodeMemberMethod * __this, CodeTypeReference * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8538, CodeMemberMethod_set_PrivateImplementationType__MethodInfo); DO_APP_FUNC(0x02790FE0, CodeTypeReference *, CodeMemberMethod_get_ReturnType, (CodeMemberMethod * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE84F0, CodeMemberMethod_get_ReturnType__MethodInfo); DO_APP_FUNC(0x02791010, void, CodeMemberMethod_set_ReturnType, (CodeMemberMethod * __this, CodeTypeReference * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8500, CodeMemberMethod_set_ReturnType__MethodInfo); DO_APP_FUNC(0x02791040, CodeAttributeDeclarationCollection *, CodeMemberMethod_get_ReturnTypeCustomAttributes, (CodeMemberMethod * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE84F8, CodeMemberMethod_get_ReturnTypeCustomAttributes__MethodInfo); DO_APP_FUNC(0x02791070, CodeStatementCollection *, CodeMemberMethod_get_Statements, (CodeMemberMethod * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8570, CodeMemberMethod_get_Statements__MethodInfo); DO_APP_FUNC(0x027910A0, CodeTypeParameterCollection *, CodeMemberMethod_get_TypeParameters, (CodeMemberMethod * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE85A0, CodeMemberMethod_get_TypeParameters__MethodInfo); DO_APP_FUNC(0x027910D0, void, CodeMemberMethod_add_PopulateImplementationTypes, (CodeMemberMethod * __this, EventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8558, CodeMemberMethod_add_PopulateImplementationTypes__MethodInfo); DO_APP_FUNC(0x02791100, void, CodeMemberMethod_remove_PopulateImplementationTypes, (CodeMemberMethod * __this, EventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8548, CodeMemberMethod_remove_PopulateImplementationTypes__MethodInfo); DO_APP_FUNC(0x02791130, void, CodeMemberMethod_add_PopulateParameters, (CodeMemberMethod * __this, EventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8568, CodeMemberMethod_add_PopulateParameters__MethodInfo); DO_APP_FUNC(0x02791160, void, CodeMemberMethod_remove_PopulateParameters, (CodeMemberMethod * __this, EventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8490, CodeMemberMethod_remove_PopulateParameters__MethodInfo); DO_APP_FUNC(0x02791190, void, CodeMemberMethod_add_PopulateStatements, (CodeMemberMethod * __this, EventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE84A0, CodeMemberMethod_add_PopulateStatements__MethodInfo); DO_APP_FUNC(0x027911C0, void, CodeMemberMethod_remove_PopulateStatements, (CodeMemberMethod * __this, EventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8498, CodeMemberMethod_remove_PopulateStatements__MethodInfo); DO_APP_FUNC(0x027911F0, void, CodeParameterDeclarationExpressionCollection__ctor, (CodeParameterDeclarationExpressionCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8478, CodeParameterDeclarationExpressionCollection__ctor__MethodInfo); DO_APP_FUNC(0x02791220, void, CodeParameterDeclarationExpressionCollection__ctor_1, (CodeParameterDeclarationExpressionCollection * __this, CodeParameterDeclarationExpressionCollection * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8480, CodeParameterDeclarationExpressionCollection__ctor_1__MethodInfo); DO_APP_FUNC(0x02791250, void, CodeParameterDeclarationExpressionCollection__ctor_2, (CodeParameterDeclarationExpressionCollection * __this, CodeParameterDeclarationExpression__Array * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE84D0, CodeParameterDeclarationExpressionCollection__ctor_2__MethodInfo); DO_APP_FUNC(0x02791280, CodeParameterDeclarationExpression *, CodeParameterDeclarationExpressionCollection_get_Item, (CodeParameterDeclarationExpressionCollection * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE84C8, CodeParameterDeclarationExpressionCollection_get_Item__MethodInfo); DO_APP_FUNC(0x027912B0, void, CodeParameterDeclarationExpressionCollection_set_Item, (CodeParameterDeclarationExpressionCollection * __this, int32_t index, CodeParameterDeclarationExpression * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE84D8, CodeParameterDeclarationExpressionCollection_set_Item__MethodInfo); DO_APP_FUNC(0x027912E0, int32_t, CodeParameterDeclarationExpressionCollection_Add, (CodeParameterDeclarationExpressionCollection * __this, CodeParameterDeclarationExpression * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE84B0, CodeParameterDeclarationExpressionCollection_Add__MethodInfo); DO_APP_FUNC(0x02791310, void, CodeParameterDeclarationExpressionCollection_AddRange, (CodeParameterDeclarationExpressionCollection * __this, CodeParameterDeclarationExpressionCollection * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE84C0, CodeParameterDeclarationExpressionCollection_AddRange__MethodInfo); DO_APP_FUNC(0x02791340, void, CodeParameterDeclarationExpressionCollection_AddRange_1, (CodeParameterDeclarationExpressionCollection * __this, CodeParameterDeclarationExpression__Array * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE84B8, CodeParameterDeclarationExpressionCollection_AddRange_1__MethodInfo); DO_APP_FUNC(0x02791370, bool, CodeParameterDeclarationExpressionCollection_Contains, (CodeParameterDeclarationExpressionCollection * __this, CodeParameterDeclarationExpression * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8440, CodeParameterDeclarationExpressionCollection_Contains__MethodInfo); DO_APP_FUNC(0x027913A0, void, CodeParameterDeclarationExpressionCollection_CopyTo, (CodeParameterDeclarationExpressionCollection * __this, CodeParameterDeclarationExpression__Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8448, CodeParameterDeclarationExpressionCollection_CopyTo__MethodInfo); DO_APP_FUNC(0x027913D0, int32_t, CodeParameterDeclarationExpressionCollection_IndexOf, (CodeParameterDeclarationExpressionCollection * __this, CodeParameterDeclarationExpression * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8430, CodeParameterDeclarationExpressionCollection_IndexOf__MethodInfo); DO_APP_FUNC(0x02791400, void, CodeParameterDeclarationExpressionCollection_Insert, (CodeParameterDeclarationExpressionCollection * __this, int32_t index, CodeParameterDeclarationExpression * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8428, CodeParameterDeclarationExpressionCollection_Insert__MethodInfo); DO_APP_FUNC(0x02791430, void, CodeParameterDeclarationExpressionCollection_Remove, (CodeParameterDeclarationExpressionCollection * __this, CodeParameterDeclarationExpression * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8438, CodeParameterDeclarationExpressionCollection_Remove__MethodInfo); DO_APP_FUNC(0x02791460, void, CodeParameterDeclarationExpression__ctor, (CodeParameterDeclarationExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8460, CodeParameterDeclarationExpression__ctor__MethodInfo); DO_APP_FUNC(0x02791490, void, CodeParameterDeclarationExpression__ctor_1, (CodeParameterDeclarationExpression * __this, CodeTypeReference * type, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8470, CodeParameterDeclarationExpression__ctor_1__MethodInfo); DO_APP_FUNC(0x027914C0, void, CodeParameterDeclarationExpression__ctor_2, (CodeParameterDeclarationExpression * __this, String * type, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8468, CodeParameterDeclarationExpression__ctor_2__MethodInfo); DO_APP_FUNC(0x027914F0, void, CodeParameterDeclarationExpression__ctor_3, (CodeParameterDeclarationExpression * __this, Type * type, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8450, CodeParameterDeclarationExpression__ctor_3__MethodInfo); DO_APP_FUNC(0x02791520, CodeAttributeDeclarationCollection *, CodeParameterDeclarationExpression_get_CustomAttributes, (CodeParameterDeclarationExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8458, CodeParameterDeclarationExpression_get_CustomAttributes__MethodInfo); DO_APP_FUNC(0x02791550, void, CodeParameterDeclarationExpression_set_CustomAttributes, (CodeParameterDeclarationExpression * __this, CodeAttributeDeclarationCollection * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE83F0, CodeParameterDeclarationExpression_set_CustomAttributes__MethodInfo); DO_APP_FUNC(0x02791580, FieldDirection__Enum, CodeParameterDeclarationExpression_get_Direction, (CodeParameterDeclarationExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE83E8, CodeParameterDeclarationExpression_get_Direction__MethodInfo); DO_APP_FUNC(0x027915B0, void, CodeParameterDeclarationExpression_set_Direction, (CodeParameterDeclarationExpression * __this, FieldDirection__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE83F8, CodeParameterDeclarationExpression_set_Direction__MethodInfo); DO_APP_FUNC(0x027915E0, String *, CodeParameterDeclarationExpression_get_Name, (CodeParameterDeclarationExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE83D0, CodeParameterDeclarationExpression_get_Name__MethodInfo); DO_APP_FUNC(0x02791610, void, CodeParameterDeclarationExpression_set_Name, (CodeParameterDeclarationExpression * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE83E0, CodeParameterDeclarationExpression_set_Name__MethodInfo); DO_APP_FUNC(0x02791640, CodeTypeReference *, CodeParameterDeclarationExpression_get_Type, (CodeParameterDeclarationExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE83D8, CodeParameterDeclarationExpression_get_Type__MethodInfo); DO_APP_FUNC(0x02791670, void, CodeParameterDeclarationExpression_set_Type, (CodeParameterDeclarationExpression * __this, CodeTypeReference * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8418, CodeParameterDeclarationExpression_set_Type__MethodInfo); DO_APP_FUNC(0x027916A0, void, ResourcePermissionBase__ctor, (ResourcePermissionBase * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8420, ResourcePermissionBase__ctor__MethodInfo); DO_APP_FUNC(0x027916D0, void, ResourcePermissionBase__ctor_1, (ResourcePermissionBase * __this, PermissionState__Enum state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8408, ResourcePermissionBase__ctor_1__MethodInfo); DO_APP_FUNC(0x02791700, Type *, ResourcePermissionBase_get_PermissionAccessType, (ResourcePermissionBase * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8400, ResourcePermissionBase_get_PermissionAccessType__MethodInfo); DO_APP_FUNC(0x02791730, void, ResourcePermissionBase_set_PermissionAccessType, (ResourcePermissionBase * __this, Type * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8410, ResourcePermissionBase_set_PermissionAccessType__MethodInfo); DO_APP_FUNC(0x02791760, String__Array *, ResourcePermissionBase_get_TagNames, (ResourcePermissionBase * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8388, ResourcePermissionBase_get_TagNames__MethodInfo); DO_APP_FUNC(0x02791790, void, ResourcePermissionBase_set_TagNames, (ResourcePermissionBase * __this, String__Array * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8398, ResourcePermissionBase_set_TagNames__MethodInfo); DO_APP_FUNC(0x027917C0, void, ResourcePermissionBase_AddPermissionAccess, (ResourcePermissionBase * __this, ResourcePermissionBaseEntry * entry, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8390, ResourcePermissionBase_AddPermissionAccess__MethodInfo); DO_APP_FUNC(0x027917F0, void, ResourcePermissionBase_Clear, (ResourcePermissionBase * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8378, ResourcePermissionBase_Clear__MethodInfo); DO_APP_FUNC(0x02791820, IPermission *, ResourcePermissionBase_Copy, (ResourcePermissionBase * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8380, ResourcePermissionBase_Copy__MethodInfo); DO_APP_FUNC(0x02791850, void, ResourcePermissionBase_FromXml, (ResourcePermissionBase * __this, SecurityElement * securityElement, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE83C0, ResourcePermissionBase_FromXml__MethodInfo); DO_APP_FUNC(0x02791880, ResourcePermissionBaseEntry__Array *, ResourcePermissionBase_GetPermissionEntries, (ResourcePermissionBase * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE83B8, ResourcePermissionBase_GetPermissionEntries__MethodInfo); DO_APP_FUNC(0x027918B0, IPermission *, ResourcePermissionBase_Intersect, (ResourcePermissionBase * __this, IPermission * target, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE83C8, ResourcePermissionBase_Intersect__MethodInfo); DO_APP_FUNC(0x027918E0, bool, ResourcePermissionBase_IsSubsetOf, (ResourcePermissionBase * __this, IPermission * target, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE83A0, ResourcePermissionBase_IsSubsetOf__MethodInfo); DO_APP_FUNC(0x02791910, bool, ResourcePermissionBase_IsUnrestricted, (ResourcePermissionBase * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE83B0, ResourcePermissionBase_IsUnrestricted__MethodInfo); DO_APP_FUNC(0x02791940, void, ResourcePermissionBase_RemovePermissionAccess, (ResourcePermissionBase * __this, ResourcePermissionBaseEntry * entry, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE83A8, ResourcePermissionBase_RemovePermissionAccess__MethodInfo); DO_APP_FUNC(0x02791970, SecurityElement *, ResourcePermissionBase_ToXml, (ResourcePermissionBase * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8340, ResourcePermissionBase_ToXml__MethodInfo); DO_APP_FUNC(0x027919A0, void, ResourcePermissionBaseEntry__ctor, (ResourcePermissionBaseEntry * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8348, ResourcePermissionBaseEntry__ctor__MethodInfo); DO_APP_FUNC(0x027919D0, void, ResourcePermissionBaseEntry__ctor_1, (ResourcePermissionBaseEntry * __this, int32_t permissionAccess, String__Array * permissionAccessPath, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8330, ResourcePermissionBaseEntry__ctor_1__MethodInfo); DO_APP_FUNC(0x02791A00, int32_t, ResourcePermissionBaseEntry_get_PermissionAccess, (ResourcePermissionBaseEntry * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8328, ResourcePermissionBaseEntry_get_PermissionAccess__MethodInfo); DO_APP_FUNC(0x02791A30, String__Array *, ResourcePermissionBaseEntry_get_PermissionAccessPath, (ResourcePermissionBaseEntry * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8338, ResourcePermissionBaseEntry_get_PermissionAccessPath__MethodInfo); DO_APP_FUNC(0x02791A60, void, ExtendedProtectionPolicyElement__ctor, (ExtendedProtectionPolicyElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8360, ExtendedProtectionPolicyElement__ctor__MethodInfo); DO_APP_FUNC(0x02791A90, ServiceNameElementCollection *, ExtendedProtectionPolicyElement_get_CustomServiceNames, (ExtendedProtectionPolicyElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8370, ExtendedProtectionPolicyElement_get_CustomServiceNames__MethodInfo); DO_APP_FUNC(0x02791AC0, PolicyEnforcement__Enum, ExtendedProtectionPolicyElement_get_PolicyEnforcement, (ExtendedProtectionPolicyElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8368, ExtendedProtectionPolicyElement_get_PolicyEnforcement__MethodInfo); DO_APP_FUNC(0x02791AF0, void, ExtendedProtectionPolicyElement_set_PolicyEnforcement, (ExtendedProtectionPolicyElement * __this, PolicyEnforcement__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8350, ExtendedProtectionPolicyElement_set_PolicyEnforcement__MethodInfo); DO_APP_FUNC(0x02791B20, ConfigurationPropertyCollection *, ExtendedProtectionPolicyElement_get_Properties, (ExtendedProtectionPolicyElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8358, ExtendedProtectionPolicyElement_get_Properties__MethodInfo); DO_APP_FUNC(0x02791B50, ProtectionScenario__Enum, ExtendedProtectionPolicyElement_get_ProtectionScenario, (ExtendedProtectionPolicyElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE82F0, ExtendedProtectionPolicyElement_get_ProtectionScenario__MethodInfo); DO_APP_FUNC(0x02791B80, void, ExtendedProtectionPolicyElement_set_ProtectionScenario, (ExtendedProtectionPolicyElement * __this, ProtectionScenario__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE82E8, ExtendedProtectionPolicyElement_set_ProtectionScenario__MethodInfo); DO_APP_FUNC(0x02791BB0, ExtendedProtectionPolicy *, ExtendedProtectionPolicyElement_BuildPolicy, (ExtendedProtectionPolicyElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE82F8, ExtendedProtectionPolicyElement_BuildPolicy__MethodInfo); DO_APP_FUNC(0x02791BE0, void, ServiceNameElementCollection__ctor, (ServiceNameElementCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE82D0, ServiceNameElementCollection__ctor__MethodInfo); DO_APP_FUNC(0x02791C10, ServiceNameElement *, ServiceNameElementCollection_get_Item, (ServiceNameElementCollection * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE82E0, ServiceNameElementCollection_get_Item__MethodInfo); DO_APP_FUNC(0x02791C40, void, ServiceNameElementCollection_set_Item, (ServiceNameElementCollection * __this, int32_t index, ServiceNameElement * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE82D8, ServiceNameElementCollection_set_Item__MethodInfo); DO_APP_FUNC(0x02791C70, ServiceNameElement *, ServiceNameElementCollection_get_Item_1, (ServiceNameElementCollection * __this, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8318, ServiceNameElementCollection_get_Item_1__MethodInfo); DO_APP_FUNC(0x02791CA0, void, ServiceNameElementCollection_set_Item_1, (ServiceNameElementCollection * __this, String * name, ServiceNameElement * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8320, ServiceNameElementCollection_set_Item_1__MethodInfo); DO_APP_FUNC(0x02791CD0, void, ServiceNameElementCollection_Add, (ServiceNameElementCollection * __this, ServiceNameElement * element, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8308, ServiceNameElementCollection_Add__MethodInfo); DO_APP_FUNC(0x02791D00, void, ServiceNameElementCollection_Clear, (ServiceNameElementCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8300, ServiceNameElementCollection_Clear__MethodInfo); DO_APP_FUNC(0x02791D30, ConfigurationElement *, ServiceNameElementCollection_CreateNewElement, (ServiceNameElementCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8310, ServiceNameElementCollection_CreateNewElement__MethodInfo); DO_APP_FUNC(0x02791D60, Object *, ServiceNameElementCollection_GetElementKey, (ServiceNameElementCollection * __this, ConfigurationElement * element, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8288, ServiceNameElementCollection_GetElementKey__MethodInfo); DO_APP_FUNC(0x02791D90, int32_t, ServiceNameElementCollection_IndexOf, (ServiceNameElementCollection * __this, ServiceNameElement * element, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8298, ServiceNameElementCollection_IndexOf__MethodInfo); DO_APP_FUNC(0x02791DC0, void, ServiceNameElementCollection_Remove, (ServiceNameElementCollection * __this, ServiceNameElement * element, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8290, ServiceNameElementCollection_Remove__MethodInfo); DO_APP_FUNC(0x02791DF0, void, ServiceNameElementCollection_Remove_1, (ServiceNameElementCollection * __this, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8278, ServiceNameElementCollection_Remove_1__MethodInfo); DO_APP_FUNC(0x02791E20, void, ServiceNameElementCollection_RemoveAt, (ServiceNameElementCollection * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8280, ServiceNameElementCollection_RemoveAt__MethodInfo); DO_APP_FUNC(0x02791E50, void, ServiceNameElement__ctor, (ServiceNameElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE82C0, ServiceNameElement__ctor__MethodInfo); DO_APP_FUNC(0x02791E80, String *, ServiceNameElement_get_Name, (ServiceNameElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE82B8, ServiceNameElement_get_Name__MethodInfo); DO_APP_FUNC(0x02791EB0, void, ServiceNameElement_set_Name, (ServiceNameElement * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE82C8, ServiceNameElement_set_Name__MethodInfo); DO_APP_FUNC(0x02791EE0, ConfigurationPropertyCollection *, ServiceNameElement_get_Properties, (ServiceNameElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE82A0, ServiceNameElement_get_Properties__MethodInfo); DO_APP_FUNC(0x02791F10, void, EventLog__ctor, (EventLog * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE82B0, EventLog__ctor__MethodInfo); DO_APP_FUNC(0x02791F40, void, EventLog__ctor_1, (EventLog * __this, String * logName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE82A8, EventLog__ctor_1__MethodInfo); DO_APP_FUNC(0x02791F70, void, EventLog__ctor_2, (EventLog * __this, String * logName, String * machineName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8240, EventLog__ctor_2__MethodInfo); DO_APP_FUNC(0x02791FA0, void, EventLog__ctor_3, (EventLog * __this, String * logName, String * machineName, String * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8248, EventLog__ctor_3__MethodInfo); DO_APP_FUNC(0x02791FD0, bool, EventLog_get_EnableRaisingEvents, (EventLog * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8230, EventLog_get_EnableRaisingEvents__MethodInfo); DO_APP_FUNC(0x02792000, void, EventLog_set_EnableRaisingEvents, (EventLog * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8228, EventLog_set_EnableRaisingEvents__MethodInfo); DO_APP_FUNC(0x02792030, EventLogEntryCollection *, EventLog_get_Entries, (EventLog * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8238, EventLog_get_Entries__MethodInfo); DO_APP_FUNC(0x02792060, String *, EventLog_get_Log, (EventLog * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8260, EventLog_get_Log__MethodInfo); DO_APP_FUNC(0x02792090, void, EventLog_set_Log, (EventLog * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8270, EventLog_set_Log__MethodInfo); DO_APP_FUNC(0x027920C0, String *, EventLog_get_LogDisplayName, (EventLog * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8268, EventLog_get_LogDisplayName__MethodInfo); DO_APP_FUNC(0x027920F0, String *, EventLog_get_MachineName, (EventLog * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8250, EventLog_get_MachineName__MethodInfo); DO_APP_FUNC(0x02792120, void, EventLog_set_MachineName, (EventLog * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8258, EventLog_set_MachineName__MethodInfo); DO_APP_FUNC(0x02792150, int64_t, EventLog_get_MaximumKilobytes, (EventLog * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE81F0, EventLog_get_MaximumKilobytes__MethodInfo); DO_APP_FUNC(0x02792180, void, EventLog_set_MaximumKilobytes, (EventLog * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE81E8, EventLog_set_MaximumKilobytes__MethodInfo); DO_APP_FUNC(0x027921B0, int32_t, EventLog_get_MinimumRetentionDays, (EventLog * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE81F8, EventLog_get_MinimumRetentionDays__MethodInfo); DO_APP_FUNC(0x027921E0, OverflowAction__Enum, EventLog_get_OverflowAction, (EventLog * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE81D0, EventLog_get_OverflowAction__MethodInfo); DO_APP_FUNC(0x02792210, String *, EventLog_get_Source, (EventLog * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE81E0, EventLog_get_Source__MethodInfo); DO_APP_FUNC(0x02792240, void, EventLog_set_Source, (EventLog * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE81D8, EventLog_set_Source__MethodInfo); DO_APP_FUNC(0x02792270, ISynchronizeInvoke *, EventLog_get_SynchronizingObject, (EventLog * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8218, EventLog_get_SynchronizingObject__MethodInfo); DO_APP_FUNC(0x027922A0, void, EventLog_set_SynchronizingObject, (EventLog * __this, ISynchronizeInvoke * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8220, EventLog_set_SynchronizingObject__MethodInfo); DO_APP_FUNC(0x027922D0, void, EventLog_add_EntryWritten, (EventLog * __this, EntryWrittenEventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8208, EventLog_add_EntryWritten__MethodInfo); DO_APP_FUNC(0x02792300, void, EventLog_remove_EntryWritten, (EventLog * __this, EntryWrittenEventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8200, EventLog_remove_EntryWritten__MethodInfo); DO_APP_FUNC(0x02792330, void, EventLog_BeginInit, (EventLog * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8210, EventLog_BeginInit__MethodInfo); DO_APP_FUNC(0x02792360, void, EventLog_Clear, (EventLog * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8188, EventLog_Clear__MethodInfo); DO_APP_FUNC(0x02792390, void, EventLog_Close, (EventLog * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8198, EventLog_Close__MethodInfo); DO_APP_FUNC(0x027923C0, void, EventLog_CreateEventSource, (EventSourceCreationData * sourceData, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8190, EventLog_CreateEventSource__MethodInfo); DO_APP_FUNC(0x027923F0, void, EventLog_CreateEventSource_1, (String * source, String * logName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8178, EventLog_CreateEventSource_1__MethodInfo); DO_APP_FUNC(0x02792420, void, EventLog_CreateEventSource_2, (String * source, String * logName, String * machineName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8180, EventLog_CreateEventSource_2__MethodInfo); DO_APP_FUNC(0x02792450, void, EventLog_Delete, (String * logName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE81C0, EventLog_Delete__MethodInfo); DO_APP_FUNC(0x02792480, void, EventLog_Delete_1, (String * logName, String * machineName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE81B8, EventLog_Delete_1__MethodInfo); DO_APP_FUNC(0x027924B0, void, EventLog_DeleteEventSource, (String * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE81C8, EventLog_DeleteEventSource__MethodInfo); DO_APP_FUNC(0x027924E0, void, EventLog_DeleteEventSource_1, (String * source, String * machineName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE81A0, EventLog_DeleteEventSource_1__MethodInfo); DO_APP_FUNC(0x02792510, void, EventLog_EndInit, (EventLog * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE81B0, EventLog_EndInit__MethodInfo); DO_APP_FUNC(0x02792540, bool, EventLog_Exists, (String * logName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE81A8, EventLog_Exists__MethodInfo); DO_APP_FUNC(0x02792570, bool, EventLog_Exists_1, (String * logName, String * machineName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8140, EventLog_Exists_1__MethodInfo); DO_APP_FUNC(0x027925A0, EventLog__Array *, EventLog_GetEventLogs, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8148, EventLog_GetEventLogs__MethodInfo); DO_APP_FUNC(0x027925D0, EventLog__Array *, EventLog_GetEventLogs_1, (String * machineName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8130, EventLog_GetEventLogs_1__MethodInfo); DO_APP_FUNC(0x02792600, String *, EventLog_LogNameFromSourceName, (String * source, String * machineName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8128, EventLog_LogNameFromSourceName__MethodInfo); DO_APP_FUNC(0x02792630, void, EventLog_ModifyOverflowPolicy, (EventLog * __this, OverflowAction__Enum action, int32_t retentionDays, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8138, EventLog_ModifyOverflowPolicy__MethodInfo); DO_APP_FUNC(0x02792660, void, EventLog_RegisterDisplayName, (EventLog * __this, String * resourceFile, int64_t resourceId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8160, EventLog_RegisterDisplayName__MethodInfo); DO_APP_FUNC(0x02792690, bool, EventLog_SourceExists, (String * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8170, EventLog_SourceExists__MethodInfo); DO_APP_FUNC(0x027926C0, bool, EventLog_SourceExists_1, (String * source, String * machineName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8168, EventLog_SourceExists_1__MethodInfo); DO_APP_FUNC(0x027926F0, void, EventLog_WriteEntry, (EventLog * __this, String * message, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8150, EventLog_WriteEntry__MethodInfo); DO_APP_FUNC(0x02792720, void, EventLog_WriteEntry_1, (EventLog * __this, String * message, EventLogEntryType__Enum type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8158, EventLog_WriteEntry_1__MethodInfo); DO_APP_FUNC(0x02792750, void, EventLog_WriteEntry_2, (EventLog * __this, String * message, EventLogEntryType__Enum type, int32_t eventID, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE80F0, EventLog_WriteEntry_2__MethodInfo); DO_APP_FUNC(0x02792780, void, EventLog_WriteEntry_3, (EventLog * __this, String * message, EventLogEntryType__Enum type, int32_t eventID, int16_t category, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE80E8, EventLog_WriteEntry_3__MethodInfo); DO_APP_FUNC(0x027927B0, void, EventLog_WriteEntry_4, (EventLog * __this, String * message, EventLogEntryType__Enum type, int32_t eventID, int16_t category, Byte__Array * rawData, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE80F8, EventLog_WriteEntry_4__MethodInfo); DO_APP_FUNC(0x027927E0, void, EventLog_WriteEntry_5, (String * source, String * message, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE80D0, EventLog_WriteEntry_5__MethodInfo); DO_APP_FUNC(0x02792810, void, EventLog_WriteEntry_6, (String * source, String * message, EventLogEntryType__Enum type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE80E0, EventLog_WriteEntry_6__MethodInfo); DO_APP_FUNC(0x02792840, void, EventLog_WriteEntry_7, (String * source, String * message, EventLogEntryType__Enum type, int32_t eventID, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE80D8, EventLog_WriteEntry_7__MethodInfo); DO_APP_FUNC(0x02792870, void, EventLog_WriteEntry_8, (String * source, String * message, EventLogEntryType__Enum type, int32_t eventID, int16_t category, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8118, EventLog_WriteEntry_8__MethodInfo); DO_APP_FUNC(0x027928A0, void, EventLog_WriteEntry_9, (String * source, String * message, EventLogEntryType__Enum type, int32_t eventID, int16_t category, Byte__Array * rawData, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8120, EventLog_WriteEntry_9__MethodInfo); DO_APP_FUNC(0x027928D0, void, EventLog_WriteEvent, (EventLog * __this, EventInstance * instance, Byte__Array * data, Object__Array * values, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8108, EventLog_WriteEvent__MethodInfo); DO_APP_FUNC(0x02792900, void, EventLog_WriteEvent_1, (EventLog * __this, EventInstance * instance, Object__Array * values, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8100, EventLog_WriteEvent_1__MethodInfo); DO_APP_FUNC(0x02792930, void, EventLog_WriteEvent_2, (String * source, EventInstance * instance, Byte__Array * data, Object__Array * values, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8110, EventLog_WriteEvent_2__MethodInfo); DO_APP_FUNC(0x02792960, void, EventLog_WriteEvent_3, (String * source, EventInstance * instance, Object__Array * values, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8088, EventLog_WriteEvent_3__MethodInfo); DO_APP_FUNC(0x02792990, void, EventLogEntryCollection__ctor, (EventLogEntryCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8098, EventLogEntryCollection__ctor__MethodInfo); DO_APP_FUNC(0x027929C0, int32_t, EventLogEntryCollection_get_Count, (EventLogEntryCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8090, EventLogEntryCollection_get_Count__MethodInfo); DO_APP_FUNC(0x027929F0, EventLogEntry *, EventLogEntryCollection_get_Item, (EventLogEntryCollection * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8078, EventLogEntryCollection_get_Item__MethodInfo); DO_APP_FUNC(0x02792A20, bool, EventLogEntryCollection_System_Collections_ICollection_get_IsSynchronized, (EventLogEntryCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8080, EventLogEntryCollection_System_Collections_ICollection_get_IsSynchronized__MethodInfo); DO_APP_FUNC(0x02792A50, Object *, EventLogEntryCollection_System_Collections_ICollection_get_SyncRoot, (EventLogEntryCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE80C0, EventLogEntryCollection_System_Collections_ICollection_get_SyncRoot__MethodInfo); DO_APP_FUNC(0x02792A80, void, EventLogEntryCollection_CopyTo, (EventLogEntryCollection * __this, EventLogEntry__Array * entries, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE80B8, EventLogEntryCollection_CopyTo__MethodInfo); DO_APP_FUNC(0x02792AB0, IEnumerator *, EventLogEntryCollection_GetEnumerator, (EventLogEntryCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE80C8, EventLogEntryCollection_GetEnumerator__MethodInfo); DO_APP_FUNC(0x02792AE0, void, EventLogEntryCollection_System_Collections_ICollection_CopyTo, (EventLogEntryCollection * __this, Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE80A0, EventLogEntryCollection_System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x02792B10, void, EventLogEntry__ctor, (EventLogEntry * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE80B0, EventLogEntry__ctor__MethodInfo); DO_APP_FUNC(0x02792B40, String *, EventLogEntry_get_Category, (EventLogEntry * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE80A8, EventLogEntry_get_Category__MethodInfo); DO_APP_FUNC(0x02792B70, int16_t, EventLogEntry_get_CategoryNumber, (EventLogEntry * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8040, EventLogEntry_get_CategoryNumber__MethodInfo); DO_APP_FUNC(0x02792BA0, Byte__Array *, EventLogEntry_get_Data, (EventLogEntry * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8048, EventLogEntry_get_Data__MethodInfo); DO_APP_FUNC(0x02792BD0, EventLogEntryType__Enum, EventLogEntry_get_EntryType, (EventLogEntry * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8030, EventLogEntry_get_EntryType__MethodInfo); DO_APP_FUNC(0x02792C00, int32_t, EventLogEntry_get_EventID, (EventLogEntry * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8028, EventLogEntry_get_EventID__MethodInfo); DO_APP_FUNC(0x02792C30, int32_t, EventLogEntry_get_Index, (EventLogEntry * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8038, EventLogEntry_get_Index__MethodInfo); DO_APP_FUNC(0x02792C60, int64_t, EventLogEntry_get_InstanceId, (EventLogEntry * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8060, EventLogEntry_get_InstanceId__MethodInfo); DO_APP_FUNC(0x02792C90, String *, EventLogEntry_get_MachineName, (EventLogEntry * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8070, EventLogEntry_get_MachineName__MethodInfo); DO_APP_FUNC(0x02792CC0, String *, EventLogEntry_get_Message, (EventLogEntry * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8068, EventLogEntry_get_Message__MethodInfo); DO_APP_FUNC(0x02792CF0, String__Array *, EventLogEntry_get_ReplacementStrings, (EventLogEntry * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8050, EventLogEntry_get_ReplacementStrings__MethodInfo); DO_APP_FUNC(0x02792D20, String *, EventLogEntry_get_Source, (EventLogEntry * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8058, EventLogEntry_get_Source__MethodInfo); DO_APP_FUNC(0x02792D50, DateTime, EventLogEntry_get_TimeGenerated, (EventLogEntry * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7FF0, EventLogEntry_get_TimeGenerated__MethodInfo); DO_APP_FUNC(0x02792D80, DateTime, EventLogEntry_get_TimeWritten, (EventLogEntry * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7FE8, EventLogEntry_get_TimeWritten__MethodInfo); DO_APP_FUNC(0x02792DB0, String *, EventLogEntry_get_UserName, (EventLogEntry * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7FF8, EventLogEntry_get_UserName__MethodInfo); DO_APP_FUNC(0x02792DE0, bool, EventLogEntry_Equals, (EventLogEntry * __this, EventLogEntry * otherEntry, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7FD0, EventLogEntry_Equals__MethodInfo); DO_APP_FUNC(0x02792E10, void, EventLogEntry_System_Runtime_Serialization_ISerializable_GetObjectData, (EventLogEntry * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7FE0, EventLogEntry_System_Runtime_Serialization_ISerializable_GetObjectData__MethodInfo); DO_APP_FUNC(0x02792E40, void, EntryWrittenEventHandler__ctor, (EntryWrittenEventHandler * __this, Object * object, void * method_1, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7FD8, EntryWrittenEventHandler__ctor__MethodInfo); DO_APP_FUNC(0x02792E70, void, EntryWrittenEventHandler_Invoke, (EntryWrittenEventHandler * __this, Object * sender, EntryWrittenEventArgs * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8018, EntryWrittenEventHandler_Invoke__MethodInfo); DO_APP_FUNC(0x02792EA0, IAsyncResult *, EntryWrittenEventHandler_BeginInvoke, (EntryWrittenEventHandler * __this, Object * sender, EntryWrittenEventArgs * e, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8020, EntryWrittenEventHandler_BeginInvoke__MethodInfo); DO_APP_FUNC(0x02792ED0, void, EntryWrittenEventHandler_EndInvoke, (EntryWrittenEventHandler * __this, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8008, EntryWrittenEventHandler_EndInvoke__MethodInfo); DO_APP_FUNC(0x02792F00, void, EntryWrittenEventArgs__ctor, (EntryWrittenEventArgs * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8000, EntryWrittenEventArgs__ctor__MethodInfo); DO_APP_FUNC(0x02792F30, void, EntryWrittenEventArgs__ctor_1, (EntryWrittenEventArgs * __this, EventLogEntry * entry, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8010, EntryWrittenEventArgs__ctor_1__MethodInfo); DO_APP_FUNC(0x02792F60, EventLogEntry *, EntryWrittenEventArgs_get_Entry, (EntryWrittenEventArgs * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7F88, EntryWrittenEventArgs_get_Entry__MethodInfo); DO_APP_FUNC(0x02792F90, void, EventSourceCreationData__ctor, (EventSourceCreationData * __this, String * source, String * logName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7F98, EventSourceCreationData__ctor__MethodInfo); DO_APP_FUNC(0x02792FC0, int32_t, EventSourceCreationData_get_CategoryCount, (EventSourceCreationData * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7F90, EventSourceCreationData_get_CategoryCount__MethodInfo); DO_APP_FUNC(0x02792FF0, void, EventSourceCreationData_set_CategoryCount, (EventSourceCreationData * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7F78, EventSourceCreationData_set_CategoryCount__MethodInfo); DO_APP_FUNC(0x02793020, String *, EventSourceCreationData_get_CategoryResourceFile, (EventSourceCreationData * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7F80, EventSourceCreationData_get_CategoryResourceFile__MethodInfo); DO_APP_FUNC(0x02793050, void, EventSourceCreationData_set_CategoryResourceFile, (EventSourceCreationData * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7FC0, EventSourceCreationData_set_CategoryResourceFile__MethodInfo); DO_APP_FUNC(0x02793080, String *, EventSourceCreationData_get_LogName, (EventSourceCreationData * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7FB8, EventSourceCreationData_get_LogName__MethodInfo); DO_APP_FUNC(0x027930B0, void, EventSourceCreationData_set_LogName, (EventSourceCreationData * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7FC8, EventSourceCreationData_set_LogName__MethodInfo); DO_APP_FUNC(0x027930E0, String *, EventSourceCreationData_get_MachineName, (EventSourceCreationData * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7FA0, EventSourceCreationData_get_MachineName__MethodInfo); DO_APP_FUNC(0x02793110, void, EventSourceCreationData_set_MachineName, (EventSourceCreationData * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7FB0, EventSourceCreationData_set_MachineName__MethodInfo); DO_APP_FUNC(0x02793140, String *, EventSourceCreationData_get_MessageResourceFile, (EventSourceCreationData * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7FA8, EventSourceCreationData_get_MessageResourceFile__MethodInfo); DO_APP_FUNC(0x02793170, void, EventSourceCreationData_set_MessageResourceFile, (EventSourceCreationData * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7F40, EventSourceCreationData_set_MessageResourceFile__MethodInfo); DO_APP_FUNC(0x027931A0, String *, EventSourceCreationData_get_ParameterResourceFile, (EventSourceCreationData * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7F48, EventSourceCreationData_get_ParameterResourceFile__MethodInfo); DO_APP_FUNC(0x027931D0, void, EventSourceCreationData_set_ParameterResourceFile, (EventSourceCreationData * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7F30, EventSourceCreationData_set_ParameterResourceFile__MethodInfo); DO_APP_FUNC(0x02793200, String *, EventSourceCreationData_get_Source, (EventSourceCreationData * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7F28, EventSourceCreationData_get_Source__MethodInfo); DO_APP_FUNC(0x02793230, void, EventSourceCreationData_set_Source, (EventSourceCreationData * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7F38, EventSourceCreationData_set_Source__MethodInfo); DO_APP_FUNC(0x02793260, void, EventInstance__ctor, (EventInstance * __this, int64_t instanceId, int32_t categoryId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7F60, EventInstance__ctor__MethodInfo); DO_APP_FUNC(0x02793290, void, EventInstance__ctor_1, (EventInstance * __this, int64_t instanceId, int32_t categoryId, EventLogEntryType__Enum entryType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7F70, EventInstance__ctor_1__MethodInfo); DO_APP_FUNC(0x027932C0, int32_t, EventInstance_get_CategoryId, (EventInstance * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7F68, EventInstance_get_CategoryId__MethodInfo); DO_APP_FUNC(0x027932F0, void, EventInstance_set_CategoryId, (EventInstance * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7F50, EventInstance_set_CategoryId__MethodInfo); DO_APP_FUNC(0x02793320, EventLogEntryType__Enum, EventInstance_get_EntryType, (EventInstance * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7F58, EventInstance_get_EntryType__MethodInfo); DO_APP_FUNC(0x02793350, void, EventInstance_set_EntryType, (EventInstance * __this, EventLogEntryType__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7EF0, EventInstance_set_EntryType__MethodInfo); DO_APP_FUNC(0x02793380, int64_t, EventInstance_get_InstanceId, (EventInstance * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7EE8, EventInstance_get_InstanceId__MethodInfo); DO_APP_FUNC(0x027933B0, void, EventInstance_set_InstanceId, (EventInstance * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7EF8, EventInstance_set_InstanceId__MethodInfo); DO_APP_FUNC(0x027933E0, void, CodeArgumentReferenceExpression__ctor, (CodeArgumentReferenceExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7ED0, CodeArgumentReferenceExpression__ctor__MethodInfo); DO_APP_FUNC(0x02793410, void, CodeArgumentReferenceExpression__ctor_1, (CodeArgumentReferenceExpression * __this, String * parameterName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7EE0, CodeArgumentReferenceExpression__ctor_1__MethodInfo); DO_APP_FUNC(0x02793440, String *, CodeArgumentReferenceExpression_get_ParameterName, (CodeArgumentReferenceExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7ED8, CodeArgumentReferenceExpression_get_ParameterName__MethodInfo); DO_APP_FUNC(0x02793470, void, CodeArgumentReferenceExpression_set_ParameterName, (CodeArgumentReferenceExpression * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7F18, CodeArgumentReferenceExpression_set_ParameterName__MethodInfo); DO_APP_FUNC(0x027934A0, void, IntranetZoneCredentialPolicy__ctor, (IntranetZoneCredentialPolicy * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7F20, IntranetZoneCredentialPolicy__ctor__MethodInfo); DO_APP_FUNC(0x027934D0, bool, IntranetZoneCredentialPolicy_ShouldSendCredential, (IntranetZoneCredentialPolicy * __this, Uri * challengeUri, WebRequest * request, NetworkCredential * credential, IAuthenticationModule * authModule, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7F08, IntranetZoneCredentialPolicy_ShouldSendCredential__MethodInfo); DO_APP_FUNC(0x02793500, void, PowerModeChangedEventArgs__ctor, (PowerModeChangedEventArgs * __this, PowerModes__Enum mode, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7F00, PowerModeChangedEventArgs__ctor__MethodInfo); DO_APP_FUNC(0x02793530, PowerModes__Enum, PowerModeChangedEventArgs_get_Mode, (PowerModeChangedEventArgs * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7F10, PowerModeChangedEventArgs_get_Mode__MethodInfo); DO_APP_FUNC(0x02793560, void, PowerModeChangedEventHandler__ctor, (PowerModeChangedEventHandler * __this, Object * object, void * method_1, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7E88, PowerModeChangedEventHandler__ctor__MethodInfo); DO_APP_FUNC(0x02793590, void, PowerModeChangedEventHandler_Invoke, (PowerModeChangedEventHandler * __this, Object * sender, PowerModeChangedEventArgs * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7E98, PowerModeChangedEventHandler_Invoke__MethodInfo); DO_APP_FUNC(0x027935C0, IAsyncResult *, PowerModeChangedEventHandler_BeginInvoke, (PowerModeChangedEventHandler * __this, Object * sender, PowerModeChangedEventArgs * e, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7E90, PowerModeChangedEventHandler_BeginInvoke__MethodInfo); DO_APP_FUNC(0x027935F0, void, PowerModeChangedEventHandler_EndInvoke, (PowerModeChangedEventHandler * __this, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7E78, PowerModeChangedEventHandler_EndInvoke__MethodInfo); DO_APP_FUNC(0x02793620, void, SessionEndedEventArgs__ctor, (SessionEndedEventArgs * __this, SessionEndReasons__Enum reason, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7E80, SessionEndedEventArgs__ctor__MethodInfo); DO_APP_FUNC(0x02793650, SessionEndReasons__Enum, SessionEndedEventArgs_get_Reason, (SessionEndedEventArgs * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7EC0, SessionEndedEventArgs_get_Reason__MethodInfo); DO_APP_FUNC(0x02793680, void, SessionEndedEventHandler__ctor, (SessionEndedEventHandler * __this, Object * object, void * method_1, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7EB8, SessionEndedEventHandler__ctor__MethodInfo); DO_APP_FUNC(0x027936B0, void, SessionEndedEventHandler_Invoke, (SessionEndedEventHandler * __this, Object * sender, SessionEndedEventArgs * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7EC8, SessionEndedEventHandler_Invoke__MethodInfo); DO_APP_FUNC(0x027936E0, IAsyncResult *, SessionEndedEventHandler_BeginInvoke, (SessionEndedEventHandler * __this, Object * sender, SessionEndedEventArgs * e, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7EA0, SessionEndedEventHandler_BeginInvoke__MethodInfo); DO_APP_FUNC(0x02793710, void, SessionEndedEventHandler_EndInvoke, (SessionEndedEventHandler * __this, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7EB0, SessionEndedEventHandler_EndInvoke__MethodInfo); DO_APP_FUNC(0x02793740, void, SessionEndingEventArgs__ctor, (SessionEndingEventArgs * __this, SessionEndReasons__Enum reason, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7EA8, SessionEndingEventArgs__ctor__MethodInfo); DO_APP_FUNC(0x02793770, bool, SessionEndingEventArgs_get_Cancel, (SessionEndingEventArgs * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7E40, SessionEndingEventArgs_get_Cancel__MethodInfo); DO_APP_FUNC(0x027937A0, void, SessionEndingEventArgs_set_Cancel, (SessionEndingEventArgs * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7E48, SessionEndingEventArgs_set_Cancel__MethodInfo); DO_APP_FUNC(0x027937D0, SessionEndReasons__Enum, SessionEndingEventArgs_get_Reason, (SessionEndingEventArgs * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7E30, SessionEndingEventArgs_get_Reason__MethodInfo); DO_APP_FUNC(0x02793800, void, SessionEndingEventHandler__ctor, (SessionEndingEventHandler * __this, Object * object, void * method_1, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7E28, SessionEndingEventHandler__ctor__MethodInfo); DO_APP_FUNC(0x02793830, void, SessionEndingEventHandler_Invoke, (SessionEndingEventHandler * __this, Object * sender, SessionEndingEventArgs * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7E38, SessionEndingEventHandler_Invoke__MethodInfo); DO_APP_FUNC(0x02793860, IAsyncResult *, SessionEndingEventHandler_BeginInvoke, (SessionEndingEventHandler * __this, Object * sender, SessionEndingEventArgs * e, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7E60, SessionEndingEventHandler_BeginInvoke__MethodInfo); DO_APP_FUNC(0x02793890, void, SessionEndingEventHandler_EndInvoke, (SessionEndingEventHandler * __this, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7E70, SessionEndingEventHandler_EndInvoke__MethodInfo); DO_APP_FUNC(0x027938C0, void, SessionSwitchEventArgs__ctor, (SessionSwitchEventArgs * __this, SessionSwitchReason__Enum reason, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7E68, SessionSwitchEventArgs__ctor__MethodInfo); DO_APP_FUNC(0x027938F0, SessionSwitchReason__Enum, SessionSwitchEventArgs_get_Reason, (SessionSwitchEventArgs * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7E50, SessionSwitchEventArgs_get_Reason__MethodInfo); DO_APP_FUNC(0x02793920, void, SessionSwitchEventHandler__ctor, (SessionSwitchEventHandler * __this, Object * object, void * method_1, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7E58, SessionSwitchEventHandler__ctor__MethodInfo); DO_APP_FUNC(0x02793950, void, SessionSwitchEventHandler_Invoke, (SessionSwitchEventHandler * __this, Object * sender, SessionSwitchEventArgs * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7DF0, SessionSwitchEventHandler_Invoke__MethodInfo); DO_APP_FUNC(0x02793980, IAsyncResult *, SessionSwitchEventHandler_BeginInvoke, (SessionSwitchEventHandler * __this, Object * sender, SessionSwitchEventArgs * e, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7DE8, SessionSwitchEventHandler_BeginInvoke__MethodInfo); DO_APP_FUNC(0x027939B0, void, SessionSwitchEventHandler_EndInvoke, (SessionSwitchEventHandler * __this, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7DF8, SessionSwitchEventHandler_EndInvoke__MethodInfo); DO_APP_FUNC(0x027939E0, void, SystemEvents__ctor, (SystemEvents * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7DD0, SystemEvents__ctor__MethodInfo); DO_APP_FUNC(0x02793A10, void, SystemEvents_add_DisplaySettingsChanged, (EventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7DE0, SystemEvents_add_DisplaySettingsChanged__MethodInfo); DO_APP_FUNC(0x02793A40, void, SystemEvents_remove_DisplaySettingsChanged, (EventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7DD8, SystemEvents_remove_DisplaySettingsChanged__MethodInfo); DO_APP_FUNC(0x02793A70, void, SystemEvents_add_DisplaySettingsChanging, (EventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7E18, SystemEvents_add_DisplaySettingsChanging__MethodInfo); DO_APP_FUNC(0x02793AA0, void, SystemEvents_remove_DisplaySettingsChanging, (EventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7E20, SystemEvents_remove_DisplaySettingsChanging__MethodInfo); DO_APP_FUNC(0x02793AD0, void, SystemEvents_add_EventsThreadShutdown, (EventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7E08, SystemEvents_add_EventsThreadShutdown__MethodInfo); DO_APP_FUNC(0x02793B00, void, SystemEvents_remove_EventsThreadShutdown, (EventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7E00, SystemEvents_remove_EventsThreadShutdown__MethodInfo); DO_APP_FUNC(0x02793B30, void, SystemEvents_add_InstalledFontsChanged, (EventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7E10, SystemEvents_add_InstalledFontsChanged__MethodInfo); DO_APP_FUNC(0x02793B60, void, SystemEvents_remove_InstalledFontsChanged, (EventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7D88, SystemEvents_remove_InstalledFontsChanged__MethodInfo); DO_APP_FUNC(0x02793B90, void, SystemEvents_add_LowMemory, (EventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7D98, SystemEvents_add_LowMemory__MethodInfo); DO_APP_FUNC(0x02793BC0, void, SystemEvents_remove_LowMemory, (EventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7D90, SystemEvents_remove_LowMemory__MethodInfo); DO_APP_FUNC(0x02793BF0, void, SystemEvents_add_PaletteChanged, (EventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7D78, SystemEvents_add_PaletteChanged__MethodInfo); DO_APP_FUNC(0x02793C20, void, SystemEvents_remove_PaletteChanged, (EventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7D80, SystemEvents_remove_PaletteChanged__MethodInfo); DO_APP_FUNC(0x02793C50, void, SystemEvents_add_PowerModeChanged, (PowerModeChangedEventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7DC0, SystemEvents_add_PowerModeChanged__MethodInfo); DO_APP_FUNC(0x02793C80, void, SystemEvents_remove_PowerModeChanged, (PowerModeChangedEventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7DB8, SystemEvents_remove_PowerModeChanged__MethodInfo); DO_APP_FUNC(0x02793CB0, void, SystemEvents_add_SessionEnded, (SessionEndedEventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7DC8, SystemEvents_add_SessionEnded__MethodInfo); DO_APP_FUNC(0x02793CE0, void, SystemEvents_remove_SessionEnded, (SessionEndedEventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7DA0, SystemEvents_remove_SessionEnded__MethodInfo); DO_APP_FUNC(0x02793D10, void, SystemEvents_add_SessionEnding, (SessionEndingEventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7DB0, SystemEvents_add_SessionEnding__MethodInfo); DO_APP_FUNC(0x02793D40, void, SystemEvents_remove_SessionEnding, (SessionEndingEventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7DA8, SystemEvents_remove_SessionEnding__MethodInfo); DO_APP_FUNC(0x02793D70, void, SystemEvents_add_SessionSwitch, (SessionSwitchEventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7D40, SystemEvents_add_SessionSwitch__MethodInfo); DO_APP_FUNC(0x02793DA0, void, SystemEvents_remove_SessionSwitch, (SessionSwitchEventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7D48, SystemEvents_remove_SessionSwitch__MethodInfo); DO_APP_FUNC(0x02793DD0, void, SystemEvents_add_TimeChanged, (EventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7D30, SystemEvents_add_TimeChanged__MethodInfo); DO_APP_FUNC(0x02793E00, void, SystemEvents_remove_TimeChanged, (EventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7D28, SystemEvents_remove_TimeChanged__MethodInfo); DO_APP_FUNC(0x02793E30, void, SystemEvents_add_TimerElapsed, (TimerElapsedEventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7D38, SystemEvents_add_TimerElapsed__MethodInfo); DO_APP_FUNC(0x02793E60, void, SystemEvents_remove_TimerElapsed, (TimerElapsedEventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7D60, SystemEvents_remove_TimerElapsed__MethodInfo); DO_APP_FUNC(0x02793E90, void, SystemEvents_add_UserPreferenceChanged, (UserPreferenceChangedEventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7D70, SystemEvents_add_UserPreferenceChanged__MethodInfo); DO_APP_FUNC(0x02793EC0, void, SystemEvents_remove_UserPreferenceChanged, (UserPreferenceChangedEventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7D68, SystemEvents_remove_UserPreferenceChanged__MethodInfo); DO_APP_FUNC(0x02793EF0, void, SystemEvents_add_UserPreferenceChanging, (UserPreferenceChangingEventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7D50, SystemEvents_add_UserPreferenceChanging__MethodInfo); DO_APP_FUNC(0x02793F20, void, SystemEvents_remove_UserPreferenceChanging, (UserPreferenceChangingEventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7D58, SystemEvents_remove_UserPreferenceChanging__MethodInfo); DO_APP_FUNC(0x02793F50, void *, SystemEvents_CreateTimer, (int32_t interval, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7CF0, SystemEvents_CreateTimer__MethodInfo); DO_APP_FUNC(0x02793F80, void, SystemEvents_InvokeOnEventsThread, (Delegate * method_1, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7CE8, SystemEvents_InvokeOnEventsThread__MethodInfo); DO_APP_FUNC(0x02793FB0, void, SystemEvents_KillTimer, (void * timerId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7CF8, SystemEvents_KillTimer__MethodInfo); DO_APP_FUNC(0x02793FE0, void, TimerElapsedEventHandler__ctor, (TimerElapsedEventHandler * __this, Object * object, void * method_1, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7CD0, TimerElapsedEventHandler__ctor__MethodInfo); DO_APP_FUNC(0x02794010, void, TimerElapsedEventHandler_Invoke, (TimerElapsedEventHandler * __this, Object * sender, TimerElapsedEventArgs * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7CE0, TimerElapsedEventHandler_Invoke__MethodInfo); DO_APP_FUNC(0x02794040, IAsyncResult *, TimerElapsedEventHandler_BeginInvoke, (TimerElapsedEventHandler * __this, Object * sender, TimerElapsedEventArgs * e, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7CD8, TimerElapsedEventHandler_BeginInvoke__MethodInfo); DO_APP_FUNC(0x02794070, void, TimerElapsedEventHandler_EndInvoke, (TimerElapsedEventHandler * __this, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7D18, TimerElapsedEventHandler_EndInvoke__MethodInfo); DO_APP_FUNC(0x027940A0, void, TimerElapsedEventArgs__ctor, (TimerElapsedEventArgs * __this, void * timerId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7D20, TimerElapsedEventArgs__ctor__MethodInfo); DO_APP_FUNC(0x027940D0, void *, TimerElapsedEventArgs_get_TimerId, (TimerElapsedEventArgs * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7D08, TimerElapsedEventArgs_get_TimerId__MethodInfo); DO_APP_FUNC(0x02794100, void, UserPreferenceChangedEventHandler__ctor, (UserPreferenceChangedEventHandler * __this, Object * object, void * method_1, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7D00, UserPreferenceChangedEventHandler__ctor__MethodInfo); DO_APP_FUNC(0x02794130, void, UserPreferenceChangedEventHandler_Invoke, (UserPreferenceChangedEventHandler * __this, Object * sender, UserPreferenceChangedEventArgs * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7D10, UserPreferenceChangedEventHandler_Invoke__MethodInfo); DO_APP_FUNC(0x02794160, IAsyncResult *, UserPreferenceChangedEventHandler_BeginInvoke, (UserPreferenceChangedEventHandler * __this, Object * sender, UserPreferenceChangedEventArgs * e, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7C88, UserPreferenceChangedEventHandler_BeginInvoke__MethodInfo); DO_APP_FUNC(0x02794190, void, UserPreferenceChangedEventHandler_EndInvoke, (UserPreferenceChangedEventHandler * __this, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7C98, UserPreferenceChangedEventHandler_EndInvoke__MethodInfo); DO_APP_FUNC(0x027941C0, void, UserPreferenceChangedEventArgs__ctor, (UserPreferenceChangedEventArgs * __this, UserPreferenceCategory__Enum category, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7C90, UserPreferenceChangedEventArgs__ctor__MethodInfo); DO_APP_FUNC(0x027941F0, UserPreferenceCategory__Enum, UserPreferenceChangedEventArgs_get_Category, (UserPreferenceChangedEventArgs * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7C78, UserPreferenceChangedEventArgs_get_Category__MethodInfo); DO_APP_FUNC(0x02794220, void, UserPreferenceChangingEventHandler__ctor, (UserPreferenceChangingEventHandler * __this, Object * object, void * method_1, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7C80, UserPreferenceChangingEventHandler__ctor__MethodInfo); DO_APP_FUNC(0x02794250, void, UserPreferenceChangingEventHandler_Invoke, (UserPreferenceChangingEventHandler * __this, Object * sender, UserPreferenceChangingEventArgs * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7CC0, UserPreferenceChangingEventHandler_Invoke__MethodInfo); DO_APP_FUNC(0x02794280, IAsyncResult *, UserPreferenceChangingEventHandler_BeginInvoke, (UserPreferenceChangingEventHandler * __this, Object * sender, UserPreferenceChangingEventArgs * e, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7CB8, UserPreferenceChangingEventHandler_BeginInvoke__MethodInfo); DO_APP_FUNC(0x027942B0, void, UserPreferenceChangingEventHandler_EndInvoke, (UserPreferenceChangingEventHandler * __this, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7CC8, UserPreferenceChangingEventHandler_EndInvoke__MethodInfo); DO_APP_FUNC(0x027942E0, void, UserPreferenceChangingEventArgs__ctor, (UserPreferenceChangingEventArgs * __this, UserPreferenceCategory__Enum category, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7CA0, UserPreferenceChangingEventArgs__ctor__MethodInfo); DO_APP_FUNC(0x02794310, UserPreferenceCategory__Enum, UserPreferenceChangingEventArgs_get_Category, (UserPreferenceChangingEventArgs * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7CB0, UserPreferenceChangingEventArgs_get_Category__MethodInfo); DO_APP_FUNC(0x02794340, void, VBCodeProvider__ctor, (VBCodeProvider * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7CA8, VBCodeProvider__ctor__MethodInfo); DO_APP_FUNC(0x02794370, void, VBCodeProvider__ctor_1, (VBCodeProvider * __this, IDictionary_2_System_String_System_String_ * providerOptions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7C40, VBCodeProvider__ctor_1__MethodInfo); DO_APP_FUNC(0x027943A0, String *, VBCodeProvider_get_FileExtension, (VBCodeProvider * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7C48, VBCodeProvider_get_FileExtension__MethodInfo); DO_APP_FUNC(0x027943D0, LanguageOptions__Enum, VBCodeProvider_get_LanguageOptions, (VBCodeProvider * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7C30, VBCodeProvider_get_LanguageOptions__MethodInfo); DO_APP_FUNC(0x02794400, ICodeCompiler *, VBCodeProvider_CreateCompiler, (VBCodeProvider * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7C28, VBCodeProvider_CreateCompiler__MethodInfo); DO_APP_FUNC(0x02794430, ICodeGenerator *, VBCodeProvider_CreateGenerator, (VBCodeProvider * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7C38, VBCodeProvider_CreateGenerator__MethodInfo); DO_APP_FUNC(0x02794460, void, VBCodeProvider_GenerateCodeFromMember, (VBCodeProvider * __this, CodeTypeMember * member, TextWriter * writer, CodeGeneratorOptions * options, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7C60, VBCodeProvider_GenerateCodeFromMember__MethodInfo); DO_APP_FUNC(0x02794490, TypeConverter *, VBCodeProvider_GetConverter, (VBCodeProvider * __this, Type * type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7C70, VBCodeProvider_GetConverter__MethodInfo); DO_APP_FUNC(0x027944C0, void, CSharpCodeProvider__ctor, (CSharpCodeProvider * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7C68, CSharpCodeProvider__ctor__MethodInfo); DO_APP_FUNC(0x027944F0, void, CSharpCodeProvider__ctor_1, (CSharpCodeProvider * __this, IDictionary_2_System_String_System_String_ * providerOptions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7C50, CSharpCodeProvider__ctor_1__MethodInfo); DO_APP_FUNC(0x02794520, String *, CSharpCodeProvider_get_FileExtension, (CSharpCodeProvider * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7C58, CSharpCodeProvider_get_FileExtension__MethodInfo); DO_APP_FUNC(0x02794550, ICodeCompiler *, CSharpCodeProvider_CreateCompiler, (CSharpCodeProvider * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7BF0, CSharpCodeProvider_CreateCompiler__MethodInfo); DO_APP_FUNC(0x02794580, ICodeGenerator *, CSharpCodeProvider_CreateGenerator, (CSharpCodeProvider * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7BE8, CSharpCodeProvider_CreateGenerator__MethodInfo); DO_APP_FUNC(0x027945B0, void, CSharpCodeProvider_GenerateCodeFromMember, (CSharpCodeProvider * __this, CodeTypeMember * member, TextWriter * writer, CodeGeneratorOptions * options, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7BF8, CSharpCodeProvider_GenerateCodeFromMember__MethodInfo); DO_APP_FUNC(0x027945E0, TypeConverter *, CSharpCodeProvider_GetConverter, (CSharpCodeProvider * __this, Type * type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7BD0, CSharpCodeProvider_GetConverter__MethodInfo); DO_APP_FUNC(0x02794610, void, AspNetHostingPermission__ctor, (AspNetHostingPermission * __this, PermissionState__Enum state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7BE0, AspNetHostingPermission__ctor__MethodInfo); DO_APP_FUNC(0x02794640, void, AspNetHostingPermission__ctor_1, (AspNetHostingPermission * __this, AspNetHostingPermissionLevel__Enum level, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7BD8, AspNetHostingPermission__ctor_1__MethodInfo); DO_APP_FUNC(0x02794670, AspNetHostingPermissionLevel__Enum, AspNetHostingPermission_get_Level, (AspNetHostingPermission * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7C18, AspNetHostingPermission_get_Level__MethodInfo); DO_APP_FUNC(0x027946A0, void, AspNetHostingPermission_set_Level, (AspNetHostingPermission * __this, AspNetHostingPermissionLevel__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7C20, AspNetHostingPermission_set_Level__MethodInfo); DO_APP_FUNC(0x027946D0, IPermission *, AspNetHostingPermission_Copy, (AspNetHostingPermission * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7C08, AspNetHostingPermission_Copy__MethodInfo); DO_APP_FUNC(0x02794700, void, AspNetHostingPermission_FromXml, (AspNetHostingPermission * __this, SecurityElement * securityElement, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7C00, AspNetHostingPermission_FromXml__MethodInfo); DO_APP_FUNC(0x02794730, IPermission *, AspNetHostingPermission_Intersect, (AspNetHostingPermission * __this, IPermission * target, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7C10, AspNetHostingPermission_Intersect__MethodInfo); DO_APP_FUNC(0x02794760, bool, AspNetHostingPermission_IsSubsetOf, (AspNetHostingPermission * __this, IPermission * target, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7B88, AspNetHostingPermission_IsSubsetOf__MethodInfo); DO_APP_FUNC(0x02794790, bool, AspNetHostingPermission_IsUnrestricted, (AspNetHostingPermission * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7B98, AspNetHostingPermission_IsUnrestricted__MethodInfo); DO_APP_FUNC(0x027947C0, SecurityElement *, AspNetHostingPermission_ToXml, (AspNetHostingPermission * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7B90, AspNetHostingPermission_ToXml__MethodInfo); DO_APP_FUNC(0x003AE050, void, AspNetHostingPermissionAttribute__ctor, (AspNetHostingPermissionAttribute * __this, SecurityAction__Enum action, MethodInfo * method)); DO_APP_FUNC(0x027947F0, AspNetHostingPermissionLevel__Enum, AspNetHostingPermissionAttribute_get_Level, (AspNetHostingPermissionAttribute * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7B78, AspNetHostingPermissionAttribute_get_Level__MethodInfo); DO_APP_FUNC(0x003AE050, void, AspNetHostingPermissionAttribute_set_Level, (AspNetHostingPermissionAttribute * __this, AspNetHostingPermissionLevel__Enum value, MethodInfo * method)); DO_APP_FUNC(0x02794820, IPermission *, AspNetHostingPermissionAttribute_CreatePermission, (AspNetHostingPermissionAttribute * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7B80, AspNetHostingPermissionAttribute_CreatePermission__MethodInfo); DO_APP_FUNC(0x02794850, void, DnsPermission__ctor, (DnsPermission * __this, PermissionState__Enum state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7BC0, DnsPermission__ctor__MethodInfo); DO_APP_FUNC(0x02794880, IPermission *, DnsPermission_Copy, (DnsPermission * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7BB8, DnsPermission_Copy__MethodInfo); DO_APP_FUNC(0x027948B0, void, DnsPermission_FromXml, (DnsPermission * __this, SecurityElement * securityElement, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7BC8, DnsPermission_FromXml__MethodInfo); DO_APP_FUNC(0x027948E0, IPermission *, DnsPermission_Intersect, (DnsPermission * __this, IPermission * target, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7BA0, DnsPermission_Intersect__MethodInfo); DO_APP_FUNC(0x02794910, bool, DnsPermission_IsSubsetOf, (DnsPermission * __this, IPermission * target, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7BB0, DnsPermission_IsSubsetOf__MethodInfo); DO_APP_FUNC(0x02794940, bool, DnsPermission_IsUnrestricted, (DnsPermission * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7BA8, DnsPermission_IsUnrestricted__MethodInfo); DO_APP_FUNC(0x02794970, SecurityElement *, DnsPermission_ToXml, (DnsPermission * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7B40, DnsPermission_ToXml__MethodInfo); DO_APP_FUNC(0x003AE050, void, DnsPermissionAttribute__ctor, (DnsPermissionAttribute * __this, SecurityAction__Enum action, MethodInfo * method)); DO_APP_FUNC(0x027949A0, IPermission *, DnsPermissionAttribute_CreatePermission, (DnsPermissionAttribute * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7B48, DnsPermissionAttribute_CreatePermission__MethodInfo); DO_APP_FUNC(0x027949D0, void, SmtpPermission__ctor, (SmtpPermission * __this, bool unrestricted, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7B30, SmtpPermission__ctor__MethodInfo); DO_APP_FUNC(0x02794A00, void, SmtpPermission__ctor_1, (SmtpPermission * __this, SmtpAccess__Enum access, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7B28, SmtpPermission__ctor_1__MethodInfo); DO_APP_FUNC(0x02794A30, void, SmtpPermission__ctor_2, (SmtpPermission * __this, PermissionState__Enum state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7B38, SmtpPermission__ctor_2__MethodInfo); DO_APP_FUNC(0x02794A60, SmtpAccess__Enum, SmtpPermission_get_Access, (SmtpPermission * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7B60, SmtpPermission_get_Access__MethodInfo); DO_APP_FUNC(0x02794A90, void, SmtpPermission_AddPermission, (SmtpPermission * __this, SmtpAccess__Enum access, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7B70, SmtpPermission_AddPermission__MethodInfo); DO_APP_FUNC(0x02794AC0, IPermission *, SmtpPermission_Copy, (SmtpPermission * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7B68, SmtpPermission_Copy__MethodInfo); DO_APP_FUNC(0x02794AF0, void, SmtpPermission_FromXml, (SmtpPermission * __this, SecurityElement * securityElement, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7B50, SmtpPermission_FromXml__MethodInfo); DO_APP_FUNC(0x02794B20, IPermission *, SmtpPermission_Intersect, (SmtpPermission * __this, IPermission * target, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7B58, SmtpPermission_Intersect__MethodInfo); DO_APP_FUNC(0x02794B50, bool, SmtpPermission_IsSubsetOf, (SmtpPermission * __this, IPermission * target, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7AF0, SmtpPermission_IsSubsetOf__MethodInfo); DO_APP_FUNC(0x02794B80, bool, SmtpPermission_IsUnrestricted, (SmtpPermission * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7AE8, SmtpPermission_IsUnrestricted__MethodInfo); DO_APP_FUNC(0x02794BB0, SecurityElement *, SmtpPermission_ToXml, (SmtpPermission * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7AF8, SmtpPermission_ToXml__MethodInfo); DO_APP_FUNC(0x003AE050, void, SmtpPermissionAttribute__ctor, (SmtpPermissionAttribute * __this, SecurityAction__Enum action, MethodInfo * method)); DO_APP_FUNC(0x02794BE0, String *, SmtpPermissionAttribute_get_Access, (SmtpPermissionAttribute * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7AD0, SmtpPermissionAttribute_get_Access__MethodInfo); DO_APP_FUNC(0x003AE050, void, SmtpPermissionAttribute_set_Access, (SmtpPermissionAttribute * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x02794C10, IPermission *, SmtpPermissionAttribute_CreatePermission, (SmtpPermissionAttribute * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7AE0, SmtpPermissionAttribute_CreatePermission__MethodInfo); DO_APP_FUNC(0x02794C40, void, AuthenticationModuleElement__ctor, (AuthenticationModuleElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7AD8, AuthenticationModuleElement__ctor__MethodInfo); DO_APP_FUNC(0x02794C70, void, AuthenticationModuleElement__ctor_1, (AuthenticationModuleElement * __this, String * typeName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7B18, AuthenticationModuleElement__ctor_1__MethodInfo); DO_APP_FUNC(0x02794CA0, ConfigurationPropertyCollection *, AuthenticationModuleElement_get_Properties, (AuthenticationModuleElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7B20, AuthenticationModuleElement_get_Properties__MethodInfo); DO_APP_FUNC(0x02794CD0, String *, AuthenticationModuleElement_get_Type, (AuthenticationModuleElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7B08, AuthenticationModuleElement_get_Type__MethodInfo); DO_APP_FUNC(0x02794D00, void, AuthenticationModuleElement_set_Type, (AuthenticationModuleElement * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7B00, AuthenticationModuleElement_set_Type__MethodInfo); DO_APP_FUNC(0x02794D30, void, AuthenticationModuleElementCollection__ctor, (AuthenticationModuleElementCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7B10, AuthenticationModuleElementCollection__ctor__MethodInfo); DO_APP_FUNC(0x02794D60, AuthenticationModuleElement *, AuthenticationModuleElementCollection_get_Item, (AuthenticationModuleElementCollection * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7A88, AuthenticationModuleElementCollection_get_Item__MethodInfo); DO_APP_FUNC(0x02794D90, void, AuthenticationModuleElementCollection_set_Item, (AuthenticationModuleElementCollection * __this, int32_t index, AuthenticationModuleElement * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7A98, AuthenticationModuleElementCollection_set_Item__MethodInfo); DO_APP_FUNC(0x02794DC0, AuthenticationModuleElement *, AuthenticationModuleElementCollection_get_Item_1, (AuthenticationModuleElementCollection * __this, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7A90, AuthenticationModuleElementCollection_get_Item_1__MethodInfo); DO_APP_FUNC(0x02794DF0, void, AuthenticationModuleElementCollection_set_Item_1, (AuthenticationModuleElementCollection * __this, String * name, AuthenticationModuleElement * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7A78, AuthenticationModuleElementCollection_set_Item_1__MethodInfo); DO_APP_FUNC(0x02794E20, void, AuthenticationModuleElementCollection_Add, (AuthenticationModuleElementCollection * __this, AuthenticationModuleElement * element, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7A80, AuthenticationModuleElementCollection_Add__MethodInfo); DO_APP_FUNC(0x02794E50, void, AuthenticationModuleElementCollection_Clear, (AuthenticationModuleElementCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7AC0, AuthenticationModuleElementCollection_Clear__MethodInfo); DO_APP_FUNC(0x02794E80, ConfigurationElement *, AuthenticationModuleElementCollection_CreateNewElement, (AuthenticationModuleElementCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7AB8, AuthenticationModuleElementCollection_CreateNewElement__MethodInfo); DO_APP_FUNC(0x02794EB0, Object *, AuthenticationModuleElementCollection_GetElementKey, (AuthenticationModuleElementCollection * __this, ConfigurationElement * element, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7AC8, AuthenticationModuleElementCollection_GetElementKey__MethodInfo); DO_APP_FUNC(0x02794EE0, int32_t, AuthenticationModuleElementCollection_IndexOf, (AuthenticationModuleElementCollection * __this, AuthenticationModuleElement * element, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7AA0, AuthenticationModuleElementCollection_IndexOf__MethodInfo); DO_APP_FUNC(0x02794F10, void, AuthenticationModuleElementCollection_Remove, (AuthenticationModuleElementCollection * __this, AuthenticationModuleElement * element, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7AB0, AuthenticationModuleElementCollection_Remove__MethodInfo); DO_APP_FUNC(0x02794F40, void, AuthenticationModuleElementCollection_Remove_1, (AuthenticationModuleElementCollection * __this, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7AA8, AuthenticationModuleElementCollection_Remove_1__MethodInfo); DO_APP_FUNC(0x02794F70, void, AuthenticationModuleElementCollection_RemoveAt, (AuthenticationModuleElementCollection * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7A40, AuthenticationModuleElementCollection_RemoveAt__MethodInfo); DO_APP_FUNC(0x02794FA0, void, AuthenticationModulesSection__ctor, (AuthenticationModulesSection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7A48, AuthenticationModulesSection__ctor__MethodInfo); DO_APP_FUNC(0x02794FD0, AuthenticationModuleElementCollection *, AuthenticationModulesSection_get_AuthenticationModules, (AuthenticationModulesSection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7A30, AuthenticationModulesSection_get_AuthenticationModules__MethodInfo); DO_APP_FUNC(0x02795000, ConfigurationPropertyCollection *, AuthenticationModulesSection_get_Properties, (AuthenticationModulesSection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7A28, AuthenticationModulesSection_get_Properties__MethodInfo); DO_APP_FUNC(0x02795030, void, AuthenticationModulesSection_InitializeDefault, (AuthenticationModulesSection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7A38, AuthenticationModulesSection_InitializeDefault__MethodInfo); DO_APP_FUNC(0x02795060, void, AuthenticationModulesSection_PostDeserialize, (AuthenticationModulesSection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7A60, AuthenticationModulesSection_PostDeserialize__MethodInfo); DO_APP_FUNC(0x02795090, void, BypassElement__ctor, (BypassElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7A70, BypassElement__ctor__MethodInfo); DO_APP_FUNC(0x027950C0, void, BypassElement__ctor_1, (BypassElement * __this, String * address, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7A68, BypassElement__ctor_1__MethodInfo); DO_APP_FUNC(0x027950F0, String *, BypassElement_get_Address, (BypassElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7A50, BypassElement_get_Address__MethodInfo); DO_APP_FUNC(0x02795120, void, BypassElement_set_Address, (BypassElement * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7A58, BypassElement_set_Address__MethodInfo); DO_APP_FUNC(0x02795150, ConfigurationPropertyCollection *, BypassElement_get_Properties, (BypassElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE79F0, BypassElement_get_Properties__MethodInfo); DO_APP_FUNC(0x02795180, void, BypassElementCollection__ctor, (BypassElementCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE79E8, BypassElementCollection__ctor__MethodInfo); DO_APP_FUNC(0x027951B0, BypassElement *, BypassElementCollection_get_Item, (BypassElementCollection * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE79F8, BypassElementCollection_get_Item__MethodInfo); DO_APP_FUNC(0x027951E0, void, BypassElementCollection_set_Item, (BypassElementCollection * __this, int32_t index, BypassElement * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE79D0, BypassElementCollection_set_Item__MethodInfo); DO_APP_FUNC(0x02795210, BypassElement *, BypassElementCollection_get_Item_1, (BypassElementCollection * __this, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE79E0, BypassElementCollection_get_Item_1__MethodInfo); DO_APP_FUNC(0x02795240, void, BypassElementCollection_set_Item_1, (BypassElementCollection * __this, String * name, BypassElement * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE79D8, BypassElementCollection_set_Item_1__MethodInfo); DO_APP_FUNC(0x02795270, bool, BypassElementCollection_get_ThrowOnDuplicate, (BypassElementCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7A18, BypassElementCollection_get_ThrowOnDuplicate__MethodInfo); DO_APP_FUNC(0x027952A0, void, BypassElementCollection_Add, (BypassElementCollection * __this, BypassElement * element, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7A20, BypassElementCollection_Add__MethodInfo); DO_APP_FUNC(0x027952D0, void, BypassElementCollection_Clear, (BypassElementCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7A08, BypassElementCollection_Clear__MethodInfo); DO_APP_FUNC(0x02795300, ConfigurationElement *, BypassElementCollection_CreateNewElement, (BypassElementCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7A00, BypassElementCollection_CreateNewElement__MethodInfo); DO_APP_FUNC(0x02795330, Object *, BypassElementCollection_GetElementKey, (BypassElementCollection * __this, ConfigurationElement * element, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7A10, BypassElementCollection_GetElementKey__MethodInfo); DO_APP_FUNC(0x02795360, int32_t, BypassElementCollection_IndexOf, (BypassElementCollection * __this, BypassElement * element, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7988, BypassElementCollection_IndexOf__MethodInfo); DO_APP_FUNC(0x02795390, void, BypassElementCollection_Remove, (BypassElementCollection * __this, BypassElement * element, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7998, BypassElementCollection_Remove__MethodInfo); DO_APP_FUNC(0x027953C0, void, BypassElementCollection_Remove_1, (BypassElementCollection * __this, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7990, BypassElementCollection_Remove_1__MethodInfo); DO_APP_FUNC(0x027953F0, void, BypassElementCollection_RemoveAt, (BypassElementCollection * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7978, BypassElementCollection_RemoveAt__MethodInfo); DO_APP_FUNC(0x02795420, void, ConnectionManagementElement__ctor, (ConnectionManagementElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7980, ConnectionManagementElement__ctor__MethodInfo); DO_APP_FUNC(0x02795450, void, ConnectionManagementElement__ctor_1, (ConnectionManagementElement * __this, String * address, int32_t maxConnection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE79C0, ConnectionManagementElement__ctor_1__MethodInfo); DO_APP_FUNC(0x02795480, String *, ConnectionManagementElement_get_Address, (ConnectionManagementElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE79B8, ConnectionManagementElement_get_Address__MethodInfo); DO_APP_FUNC(0x027954B0, void, ConnectionManagementElement_set_Address, (ConnectionManagementElement * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE79C8, ConnectionManagementElement_set_Address__MethodInfo); DO_APP_FUNC(0x027954E0, int32_t, ConnectionManagementElement_get_MaxConnection, (ConnectionManagementElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE79A0, ConnectionManagementElement_get_MaxConnection__MethodInfo); DO_APP_FUNC(0x02795510, void, ConnectionManagementElement_set_MaxConnection, (ConnectionManagementElement * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE79B0, ConnectionManagementElement_set_MaxConnection__MethodInfo); DO_APP_FUNC(0x02795540, ConfigurationPropertyCollection *, ConnectionManagementElement_get_Properties, (ConnectionManagementElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE79A8, ConnectionManagementElement_get_Properties__MethodInfo); DO_APP_FUNC(0x02795570, void, ConnectionManagementElementCollection__ctor, (ConnectionManagementElementCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7940, ConnectionManagementElementCollection__ctor__MethodInfo); DO_APP_FUNC(0x027955A0, ConnectionManagementElement *, ConnectionManagementElementCollection_get_Item, (ConnectionManagementElementCollection * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7948, ConnectionManagementElementCollection_get_Item__MethodInfo); DO_APP_FUNC(0x027955D0, void, ConnectionManagementElementCollection_set_Item, (ConnectionManagementElementCollection * __this, int32_t index, ConnectionManagementElement * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7930, ConnectionManagementElementCollection_set_Item__MethodInfo); DO_APP_FUNC(0x02795600, ConnectionManagementElement *, ConnectionManagementElementCollection_get_Item_1, (ConnectionManagementElementCollection * __this, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7928, ConnectionManagementElementCollection_get_Item_1__MethodInfo); DO_APP_FUNC(0x02795630, void, ConnectionManagementElementCollection_set_Item_1, (ConnectionManagementElementCollection * __this, String * name, ConnectionManagementElement * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7938, ConnectionManagementElementCollection_set_Item_1__MethodInfo); DO_APP_FUNC(0x02795660, void, ConnectionManagementElementCollection_Add, (ConnectionManagementElementCollection * __this, ConnectionManagementElement * element, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7960, ConnectionManagementElementCollection_Add__MethodInfo); DO_APP_FUNC(0x02795690, void, ConnectionManagementElementCollection_Clear, (ConnectionManagementElementCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7970, ConnectionManagementElementCollection_Clear__MethodInfo); DO_APP_FUNC(0x027956C0, ConfigurationElement *, ConnectionManagementElementCollection_CreateNewElement, (ConnectionManagementElementCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7968, ConnectionManagementElementCollection_CreateNewElement__MethodInfo); DO_APP_FUNC(0x027956F0, Object *, ConnectionManagementElementCollection_GetElementKey, (ConnectionManagementElementCollection * __this, ConfigurationElement * element, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7950, ConnectionManagementElementCollection_GetElementKey__MethodInfo); DO_APP_FUNC(0x02795720, int32_t, ConnectionManagementElementCollection_IndexOf, (ConnectionManagementElementCollection * __this, ConnectionManagementElement * element, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7958, ConnectionManagementElementCollection_IndexOf__MethodInfo); DO_APP_FUNC(0x02795750, void, ConnectionManagementElementCollection_Remove, (ConnectionManagementElementCollection * __this, ConnectionManagementElement * element, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE78F0, ConnectionManagementElementCollection_Remove__MethodInfo); DO_APP_FUNC(0x02795780, void, ConnectionManagementElementCollection_Remove_1, (ConnectionManagementElementCollection * __this, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE78E8, ConnectionManagementElementCollection_Remove_1__MethodInfo); DO_APP_FUNC(0x027957B0, void, ConnectionManagementElementCollection_RemoveAt, (ConnectionManagementElementCollection * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE78F8, ConnectionManagementElementCollection_RemoveAt__MethodInfo); DO_APP_FUNC(0x027957E0, void, ConnectionManagementSection__ctor, (ConnectionManagementSection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE78D0, ConnectionManagementSection__ctor__MethodInfo); DO_APP_FUNC(0x02795810, ConnectionManagementElementCollection *, ConnectionManagementSection_get_ConnectionManagement, (ConnectionManagementSection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE78E0, ConnectionManagementSection_get_ConnectionManagement__MethodInfo); DO_APP_FUNC(0x02795840, ConfigurationPropertyCollection *, ConnectionManagementSection_get_Properties, (ConnectionManagementSection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE78D8, ConnectionManagementSection_get_Properties__MethodInfo); DO_APP_FUNC(0x02795870, void, DefaultProxySection__ctor, (DefaultProxySection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7918, DefaultProxySection__ctor__MethodInfo); DO_APP_FUNC(0x027958A0, BypassElementCollection *, DefaultProxySection_get_BypassList, (DefaultProxySection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7920, DefaultProxySection_get_BypassList__MethodInfo); DO_APP_FUNC(0x027958D0, bool, DefaultProxySection_get_Enabled, (DefaultProxySection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7908, DefaultProxySection_get_Enabled__MethodInfo); DO_APP_FUNC(0x02795900, void, DefaultProxySection_set_Enabled, (DefaultProxySection * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7900, DefaultProxySection_set_Enabled__MethodInfo); DO_APP_FUNC(0x02795930, ModuleElement *, DefaultProxySection_get_Module, (DefaultProxySection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7910, DefaultProxySection_get_Module__MethodInfo); DO_APP_FUNC(0x02795960, ConfigurationPropertyCollection *, DefaultProxySection_get_Properties, (DefaultProxySection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7888, DefaultProxySection_get_Properties__MethodInfo); DO_APP_FUNC(0x02795990, ProxyElement *, DefaultProxySection_get_Proxy, (DefaultProxySection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7898, DefaultProxySection_get_Proxy__MethodInfo); DO_APP_FUNC(0x027959C0, bool, DefaultProxySection_get_UseDefaultCredentials, (DefaultProxySection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7890, DefaultProxySection_get_UseDefaultCredentials__MethodInfo); DO_APP_FUNC(0x027959F0, void, DefaultProxySection_set_UseDefaultCredentials, (DefaultProxySection * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7878, DefaultProxySection_set_UseDefaultCredentials__MethodInfo); DO_APP_FUNC(0x02795A20, void, DefaultProxySection_PostDeserialize, (DefaultProxySection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7880, DefaultProxySection_PostDeserialize__MethodInfo); DO_APP_FUNC(0x02795A50, void, DefaultProxySection_Reset, (DefaultProxySection * __this, ConfigurationElement * parentElement, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE78C0, DefaultProxySection_Reset__MethodInfo); DO_APP_FUNC(0x02795A80, void, ModuleElement__ctor, (ModuleElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE78B8, ModuleElement__ctor__MethodInfo); DO_APP_FUNC(0x02795AB0, ConfigurationPropertyCollection *, ModuleElement_get_Properties, (ModuleElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE78C8, ModuleElement_get_Properties__MethodInfo); DO_APP_FUNC(0x02795AE0, String *, ModuleElement_get_Type, (ModuleElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE78A0, ModuleElement_get_Type__MethodInfo); DO_APP_FUNC(0x02795B10, void, ModuleElement_set_Type, (ModuleElement * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE78B0, ModuleElement_set_Type__MethodInfo); DO_APP_FUNC(0x02795B40, void, ProxyElement__ctor, (ProxyElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE78A8, ProxyElement__ctor__MethodInfo); DO_APP_FUNC(0x02795B70, ProxyElement_AutoDetectValues__Enum, ProxyElement_get_AutoDetect, (ProxyElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7840, ProxyElement_get_AutoDetect__MethodInfo); DO_APP_FUNC(0x02795BA0, void, ProxyElement_set_AutoDetect, (ProxyElement * __this, ProxyElement_AutoDetectValues__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7848, ProxyElement_set_AutoDetect__MethodInfo); DO_APP_FUNC(0x02795BD0, ProxyElement_BypassOnLocalValues__Enum, ProxyElement_get_BypassOnLocal, (ProxyElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7830, ProxyElement_get_BypassOnLocal__MethodInfo); DO_APP_FUNC(0x02795C00, void, ProxyElement_set_BypassOnLocal, (ProxyElement * __this, ProxyElement_BypassOnLocalValues__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7828, ProxyElement_set_BypassOnLocal__MethodInfo); DO_APP_FUNC(0x02795C30, ConfigurationPropertyCollection *, ProxyElement_get_Properties, (ProxyElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7838, ProxyElement_get_Properties__MethodInfo); DO_APP_FUNC(0x02795C60, Uri *, ProxyElement_get_ProxyAddress, (ProxyElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7860, ProxyElement_get_ProxyAddress__MethodInfo); DO_APP_FUNC(0x02795C90, void, ProxyElement_set_ProxyAddress, (ProxyElement * __this, Uri * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7870, ProxyElement_set_ProxyAddress__MethodInfo); DO_APP_FUNC(0x02795CC0, Uri *, ProxyElement_get_ScriptLocation, (ProxyElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7868, ProxyElement_get_ScriptLocation__MethodInfo); DO_APP_FUNC(0x02795CF0, void, ProxyElement_set_ScriptLocation, (ProxyElement * __this, Uri * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7850, ProxyElement_set_ScriptLocation__MethodInfo); DO_APP_FUNC(0x02795D20, ProxyElement_UseSystemDefaultValues__Enum, ProxyElement_get_UseSystemDefault, (ProxyElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7858, ProxyElement_get_UseSystemDefault__MethodInfo); DO_APP_FUNC(0x02795D50, void, ProxyElement_set_UseSystemDefault, (ProxyElement * __this, ProxyElement_UseSystemDefaultValues__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE77F0, ProxyElement_set_UseSystemDefault__MethodInfo); DO_APP_FUNC(0x02795D80, void, FtpCachePolicyElement__ctor, (FtpCachePolicyElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE77E8, FtpCachePolicyElement__ctor__MethodInfo); DO_APP_FUNC(0x02795DB0, RequestCacheLevel__Enum, FtpCachePolicyElement_get_PolicyLevel, (FtpCachePolicyElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE77F8, FtpCachePolicyElement_get_PolicyLevel__MethodInfo); DO_APP_FUNC(0x02795DE0, void, FtpCachePolicyElement_set_PolicyLevel, (FtpCachePolicyElement * __this, RequestCacheLevel__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE77D0, FtpCachePolicyElement_set_PolicyLevel__MethodInfo); DO_APP_FUNC(0x02795E10, ConfigurationPropertyCollection *, FtpCachePolicyElement_get_Properties, (FtpCachePolicyElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE77E0, FtpCachePolicyElement_get_Properties__MethodInfo); DO_APP_FUNC(0x02795E40, void, FtpCachePolicyElement_DeserializeElement, (FtpCachePolicyElement * __this, XmlReader * reader, bool serializeCollectionKey, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE77D8, FtpCachePolicyElement_DeserializeElement__MethodInfo); DO_APP_FUNC(0x02795E70, void, FtpCachePolicyElement_Reset, (FtpCachePolicyElement * __this, ConfigurationElement * parentElement, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7818, FtpCachePolicyElement_Reset__MethodInfo); DO_APP_FUNC(0x02795EA0, void, HttpCachePolicyElement__ctor, (HttpCachePolicyElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7820, HttpCachePolicyElement__ctor__MethodInfo); DO_APP_FUNC(0x02795ED0, TimeSpan, HttpCachePolicyElement_get_MaximumAge, (HttpCachePolicyElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7808, HttpCachePolicyElement_get_MaximumAge__MethodInfo); DO_APP_FUNC(0x02795F00, void, HttpCachePolicyElement_set_MaximumAge, (HttpCachePolicyElement * __this, TimeSpan value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7800, HttpCachePolicyElement_set_MaximumAge__MethodInfo); DO_APP_FUNC(0x02795F30, TimeSpan, HttpCachePolicyElement_get_MaximumStale, (HttpCachePolicyElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7810, HttpCachePolicyElement_get_MaximumStale__MethodInfo); DO_APP_FUNC(0x02795F60, void, HttpCachePolicyElement_set_MaximumStale, (HttpCachePolicyElement * __this, TimeSpan value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7788, HttpCachePolicyElement_set_MaximumStale__MethodInfo); DO_APP_FUNC(0x02795F90, TimeSpan, HttpCachePolicyElement_get_MinimumFresh, (HttpCachePolicyElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7798, HttpCachePolicyElement_get_MinimumFresh__MethodInfo); DO_APP_FUNC(0x02795FC0, void, HttpCachePolicyElement_set_MinimumFresh, (HttpCachePolicyElement * __this, TimeSpan value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7790, HttpCachePolicyElement_set_MinimumFresh__MethodInfo); DO_APP_FUNC(0x02795FF0, HttpRequestCacheLevel__Enum, HttpCachePolicyElement_get_PolicyLevel, (HttpCachePolicyElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7778, HttpCachePolicyElement_get_PolicyLevel__MethodInfo); DO_APP_FUNC(0x02796020, void, HttpCachePolicyElement_set_PolicyLevel, (HttpCachePolicyElement * __this, HttpRequestCacheLevel__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7780, HttpCachePolicyElement_set_PolicyLevel__MethodInfo); DO_APP_FUNC(0x02796050, ConfigurationPropertyCollection *, HttpCachePolicyElement_get_Properties, (HttpCachePolicyElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE77C0, HttpCachePolicyElement_get_Properties__MethodInfo); DO_APP_FUNC(0x02796080, void, HttpCachePolicyElement_DeserializeElement, (HttpCachePolicyElement * __this, XmlReader * reader, bool serializeCollectionKey, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE77B8, HttpCachePolicyElement_DeserializeElement__MethodInfo); DO_APP_FUNC(0x027960B0, void, HttpCachePolicyElement_Reset, (HttpCachePolicyElement * __this, ConfigurationElement * parentElement, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE77C8, HttpCachePolicyElement_Reset__MethodInfo); DO_APP_FUNC(0x027960E0, void, HttpListenerElement__ctor, (HttpListenerElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE77A0, HttpListenerElement__ctor__MethodInfo); DO_APP_FUNC(0x02796110, ConfigurationPropertyCollection *, HttpListenerElement_get_Properties, (HttpListenerElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE77B0, HttpListenerElement_get_Properties__MethodInfo); DO_APP_FUNC(0x02796140, HttpListenerTimeoutsElement *, HttpListenerElement_get_Timeouts, (HttpListenerElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE77A8, HttpListenerElement_get_Timeouts__MethodInfo); DO_APP_FUNC(0x02796170, bool, HttpListenerElement_get_UnescapeRequestUrl, (HttpListenerElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7740, HttpListenerElement_get_UnescapeRequestUrl__MethodInfo); DO_APP_FUNC(0x027961A0, void, HttpListenerTimeoutsElement__ctor, (HttpListenerTimeoutsElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7748, HttpListenerTimeoutsElement__ctor__MethodInfo); DO_APP_FUNC(0x027961D0, TimeSpan, HttpListenerTimeoutsElement_get_DrainEntityBody, (HttpListenerTimeoutsElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7730, HttpListenerTimeoutsElement_get_DrainEntityBody__MethodInfo); DO_APP_FUNC(0x02796200, TimeSpan, HttpListenerTimeoutsElement_get_EntityBody, (HttpListenerTimeoutsElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7728, HttpListenerTimeoutsElement_get_EntityBody__MethodInfo); DO_APP_FUNC(0x02796230, TimeSpan, HttpListenerTimeoutsElement_get_HeaderWait, (HttpListenerTimeoutsElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7738, HttpListenerTimeoutsElement_get_HeaderWait__MethodInfo); DO_APP_FUNC(0x02796260, TimeSpan, HttpListenerTimeoutsElement_get_IdleConnection, (HttpListenerTimeoutsElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7760, HttpListenerTimeoutsElement_get_IdleConnection__MethodInfo); DO_APP_FUNC(0x02796290, int64_t, HttpListenerTimeoutsElement_get_MinSendBytesPerSecond, (HttpListenerTimeoutsElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7770, HttpListenerTimeoutsElement_get_MinSendBytesPerSecond__MethodInfo); DO_APP_FUNC(0x027962C0, ConfigurationPropertyCollection *, HttpListenerTimeoutsElement_get_Properties, (HttpListenerTimeoutsElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7768, HttpListenerTimeoutsElement_get_Properties__MethodInfo); DO_APP_FUNC(0x027962F0, TimeSpan, HttpListenerTimeoutsElement_get_RequestQueue, (HttpListenerTimeoutsElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7750, HttpListenerTimeoutsElement_get_RequestQueue__MethodInfo); DO_APP_FUNC(0x02796320, void, HttpWebRequestElement__ctor, (HttpWebRequestElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7758, HttpWebRequestElement__ctor__MethodInfo); DO_APP_FUNC(0x02796350, int32_t, HttpWebRequestElement_get_MaximumErrorResponseLength, (HttpWebRequestElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE76F0, HttpWebRequestElement_get_MaximumErrorResponseLength__MethodInfo); DO_APP_FUNC(0x02796380, void, HttpWebRequestElement_set_MaximumErrorResponseLength, (HttpWebRequestElement * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE76E8, HttpWebRequestElement_set_MaximumErrorResponseLength__MethodInfo); DO_APP_FUNC(0x027963B0, int32_t, HttpWebRequestElement_get_MaximumResponseHeadersLength, (HttpWebRequestElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE76F8, HttpWebRequestElement_get_MaximumResponseHeadersLength__MethodInfo); DO_APP_FUNC(0x027963E0, void, HttpWebRequestElement_set_MaximumResponseHeadersLength, (HttpWebRequestElement * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE76D0, HttpWebRequestElement_set_MaximumResponseHeadersLength__MethodInfo); DO_APP_FUNC(0x02796410, int32_t, HttpWebRequestElement_get_MaximumUnauthorizedUploadLength, (HttpWebRequestElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE76E0, HttpWebRequestElement_get_MaximumUnauthorizedUploadLength__MethodInfo); DO_APP_FUNC(0x02796440, void, HttpWebRequestElement_set_MaximumUnauthorizedUploadLength, (HttpWebRequestElement * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE76D8, HttpWebRequestElement_set_MaximumUnauthorizedUploadLength__MethodInfo); DO_APP_FUNC(0x02796470, ConfigurationPropertyCollection *, HttpWebRequestElement_get_Properties, (HttpWebRequestElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7718, HttpWebRequestElement_get_Properties__MethodInfo); DO_APP_FUNC(0x027964A0, bool, HttpWebRequestElement_get_UseUnsafeHeaderParsing, (HttpWebRequestElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7720, HttpWebRequestElement_get_UseUnsafeHeaderParsing__MethodInfo); DO_APP_FUNC(0x027964D0, void, HttpWebRequestElement_set_UseUnsafeHeaderParsing, (HttpWebRequestElement * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7708, HttpWebRequestElement_set_UseUnsafeHeaderParsing__MethodInfo); DO_APP_FUNC(0x02796500, void, HttpWebRequestElement_PostDeserialize, (HttpWebRequestElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7700, HttpWebRequestElement_PostDeserialize__MethodInfo); DO_APP_FUNC(0x02796530, void, Ipv6Element__ctor, (Ipv6Element * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7710, Ipv6Element__ctor__MethodInfo); DO_APP_FUNC(0x02796560, bool, Ipv6Element_get_Enabled, (Ipv6Element * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7688, Ipv6Element_get_Enabled__MethodInfo); DO_APP_FUNC(0x02796590, void, Ipv6Element_set_Enabled, (Ipv6Element * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7698, Ipv6Element_set_Enabled__MethodInfo); DO_APP_FUNC(0x027965C0, ConfigurationPropertyCollection *, Ipv6Element_get_Properties, (Ipv6Element * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7690, Ipv6Element_get_Properties__MethodInfo); DO_APP_FUNC(0x027965F0, void, MailSettingsSectionGroup__ctor, (MailSettingsSectionGroup * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7678, MailSettingsSectionGroup__ctor__MethodInfo); DO_APP_FUNC(0x02796620, SmtpSection *, MailSettingsSectionGroup_get_Smtp, (MailSettingsSectionGroup * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7680, MailSettingsSectionGroup_get_Smtp__MethodInfo); DO_APP_FUNC(0x02796650, void, SmtpSection__ctor, (SmtpSection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE76C0, SmtpSection__ctor__MethodInfo); DO_APP_FUNC(0x02796680, SmtpDeliveryFormat__Enum, SmtpSection_get_DeliveryFormat, (SmtpSection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE76B8, SmtpSection_get_DeliveryFormat__MethodInfo); DO_APP_FUNC(0x027966B0, void, SmtpSection_set_DeliveryFormat, (SmtpSection * __this, SmtpDeliveryFormat__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE76C8, SmtpSection_set_DeliveryFormat__MethodInfo); DO_APP_FUNC(0x027966E0, SmtpDeliveryMethod__Enum, SmtpSection_get_DeliveryMethod, (SmtpSection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE76A0, SmtpSection_get_DeliveryMethod__MethodInfo); DO_APP_FUNC(0x02796710, void, SmtpSection_set_DeliveryMethod, (SmtpSection * __this, SmtpDeliveryMethod__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE76B0, SmtpSection_set_DeliveryMethod__MethodInfo); DO_APP_FUNC(0x02796740, String *, SmtpSection_get_From, (SmtpSection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE76A8, SmtpSection_get_From__MethodInfo); DO_APP_FUNC(0x02796770, void, SmtpSection_set_From, (SmtpSection * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7640, SmtpSection_set_From__MethodInfo); DO_APP_FUNC(0x027967A0, SmtpNetworkElement *, SmtpSection_get_Network, (SmtpSection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7648, SmtpSection_get_Network__MethodInfo); DO_APP_FUNC(0x027967D0, ConfigurationPropertyCollection *, SmtpSection_get_Properties, (SmtpSection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7630, SmtpSection_get_Properties__MethodInfo); DO_APP_FUNC(0x02796800, SmtpSpecifiedPickupDirectoryElement *, SmtpSection_get_SpecifiedPickupDirectory, (SmtpSection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7628, SmtpSection_get_SpecifiedPickupDirectory__MethodInfo); DO_APP_FUNC(0x02796830, void, SmtpNetworkElement__ctor, (SmtpNetworkElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7638, SmtpNetworkElement__ctor__MethodInfo); DO_APP_FUNC(0x02796860, String *, SmtpNetworkElement_get_ClientDomain, (SmtpNetworkElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7660, SmtpNetworkElement_get_ClientDomain__MethodInfo); DO_APP_FUNC(0x02796890, void, SmtpNetworkElement_set_ClientDomain, (SmtpNetworkElement * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7670, SmtpNetworkElement_set_ClientDomain__MethodInfo); DO_APP_FUNC(0x027968C0, bool, SmtpNetworkElement_get_DefaultCredentials, (SmtpNetworkElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7668, SmtpNetworkElement_get_DefaultCredentials__MethodInfo); DO_APP_FUNC(0x027968F0, void, SmtpNetworkElement_set_DefaultCredentials, (SmtpNetworkElement * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7650, SmtpNetworkElement_set_DefaultCredentials__MethodInfo); DO_APP_FUNC(0x02796920, bool, SmtpNetworkElement_get_EnableSsl, (SmtpNetworkElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7658, SmtpNetworkElement_get_EnableSsl__MethodInfo); DO_APP_FUNC(0x02796950, void, SmtpNetworkElement_set_EnableSsl, (SmtpNetworkElement * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE75F0, SmtpNetworkElement_set_EnableSsl__MethodInfo); DO_APP_FUNC(0x02796980, String *, SmtpNetworkElement_get_Host, (SmtpNetworkElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE75E8, SmtpNetworkElement_get_Host__MethodInfo); DO_APP_FUNC(0x027969B0, void, SmtpNetworkElement_set_Host, (SmtpNetworkElement * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE75F8, SmtpNetworkElement_set_Host__MethodInfo); DO_APP_FUNC(0x027969E0, String *, SmtpNetworkElement_get_Password, (SmtpNetworkElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE75D0, SmtpNetworkElement_get_Password__MethodInfo); DO_APP_FUNC(0x02796A10, void, SmtpNetworkElement_set_Password, (SmtpNetworkElement * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE75E0, SmtpNetworkElement_set_Password__MethodInfo); DO_APP_FUNC(0x02796A40, int32_t, SmtpNetworkElement_get_Port, (SmtpNetworkElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE75D8, SmtpNetworkElement_get_Port__MethodInfo); DO_APP_FUNC(0x02796A70, void, SmtpNetworkElement_set_Port, (SmtpNetworkElement * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7618, SmtpNetworkElement_set_Port__MethodInfo); DO_APP_FUNC(0x02796AA0, ConfigurationPropertyCollection *, SmtpNetworkElement_get_Properties, (SmtpNetworkElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7620, SmtpNetworkElement_get_Properties__MethodInfo); DO_APP_FUNC(0x02796AD0, String *, SmtpNetworkElement_get_TargetName, (SmtpNetworkElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7608, SmtpNetworkElement_get_TargetName__MethodInfo); DO_APP_FUNC(0x02796B00, void, SmtpNetworkElement_set_TargetName, (SmtpNetworkElement * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7600, SmtpNetworkElement_set_TargetName__MethodInfo); DO_APP_FUNC(0x02796B30, String *, SmtpNetworkElement_get_UserName, (SmtpNetworkElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7610, SmtpNetworkElement_get_UserName__MethodInfo); DO_APP_FUNC(0x02796B60, void, SmtpNetworkElement_set_UserName, (SmtpNetworkElement * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7588, SmtpNetworkElement_set_UserName__MethodInfo); DO_APP_FUNC(0x02796B90, void, SmtpNetworkElement_PostDeserialize, (SmtpNetworkElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7598, SmtpNetworkElement_PostDeserialize__MethodInfo); DO_APP_FUNC(0x02796BC0, void, SmtpSpecifiedPickupDirectoryElement__ctor, (SmtpSpecifiedPickupDirectoryElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7590, SmtpSpecifiedPickupDirectoryElement__ctor__MethodInfo); DO_APP_FUNC(0x02796BF0, String *, SmtpSpecifiedPickupDirectoryElement_get_PickupDirectoryLocation, (SmtpSpecifiedPickupDirectoryElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7578, SmtpSpecifiedPickupDirectoryElement_get_PickupDirectoryLocation__MethodInfo); DO_APP_FUNC(0x02796C20, void, SmtpSpecifiedPickupDirectoryElement_set_PickupDirectoryLocation, (SmtpSpecifiedPickupDirectoryElement * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7580, SmtpSpecifiedPickupDirectoryElement_set_PickupDirectoryLocation__MethodInfo); DO_APP_FUNC(0x02796C50, ConfigurationPropertyCollection *, SmtpSpecifiedPickupDirectoryElement_get_Properties, (SmtpSpecifiedPickupDirectoryElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE75C0, SmtpSpecifiedPickupDirectoryElement_get_Properties__MethodInfo); DO_APP_FUNC(0x02796C80, void, NetSectionGroup__ctor, (NetSectionGroup * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE75B8, NetSectionGroup__ctor__MethodInfo); DO_APP_FUNC(0x02796CB0, AuthenticationModulesSection *, NetSectionGroup_get_AuthenticationModules, (NetSectionGroup * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE75C8, NetSectionGroup_get_AuthenticationModules__MethodInfo); DO_APP_FUNC(0x02796CE0, ConnectionManagementSection *, NetSectionGroup_get_ConnectionManagement, (NetSectionGroup * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE75A0, NetSectionGroup_get_ConnectionManagement__MethodInfo); DO_APP_FUNC(0x02796D10, DefaultProxySection *, NetSectionGroup_get_DefaultProxy, (NetSectionGroup * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE75B0, NetSectionGroup_get_DefaultProxy__MethodInfo); DO_APP_FUNC(0x02796D40, MailSettingsSectionGroup *, NetSectionGroup_get_MailSettings, (NetSectionGroup * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE75A8, NetSectionGroup_get_MailSettings__MethodInfo); DO_APP_FUNC(0x02796D70, RequestCachingSection *, NetSectionGroup_get_RequestCaching, (NetSectionGroup * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7540, NetSectionGroup_get_RequestCaching__MethodInfo); DO_APP_FUNC(0x02796DA0, SettingsSection *, NetSectionGroup_get_Settings, (NetSectionGroup * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7548, NetSectionGroup_get_Settings__MethodInfo); DO_APP_FUNC(0x02796DD0, WebRequestModulesSection *, NetSectionGroup_get_WebRequestModules, (NetSectionGroup * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7530, NetSectionGroup_get_WebRequestModules__MethodInfo); DO_APP_FUNC(0x02796E00, NetSectionGroup *, NetSectionGroup_GetSectionGroup, (Configuration * config, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7528, NetSectionGroup_GetSectionGroup__MethodInfo); DO_APP_FUNC(0x02796E30, void, RequestCachingSection__ctor, (RequestCachingSection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7538, RequestCachingSection__ctor__MethodInfo); DO_APP_FUNC(0x02796E60, FtpCachePolicyElement *, RequestCachingSection_get_DefaultFtpCachePolicy, (RequestCachingSection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7560, RequestCachingSection_get_DefaultFtpCachePolicy__MethodInfo); DO_APP_FUNC(0x02796E90, HttpCachePolicyElement *, RequestCachingSection_get_DefaultHttpCachePolicy, (RequestCachingSection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7570, RequestCachingSection_get_DefaultHttpCachePolicy__MethodInfo); DO_APP_FUNC(0x02796EC0, RequestCacheLevel__Enum, RequestCachingSection_get_DefaultPolicyLevel, (RequestCachingSection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7568, RequestCachingSection_get_DefaultPolicyLevel__MethodInfo); DO_APP_FUNC(0x02796EF0, void, RequestCachingSection_set_DefaultPolicyLevel, (RequestCachingSection * __this, RequestCacheLevel__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7550, RequestCachingSection_set_DefaultPolicyLevel__MethodInfo); DO_APP_FUNC(0x02796F20, bool, RequestCachingSection_get_DisableAllCaching, (RequestCachingSection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7558, RequestCachingSection_get_DisableAllCaching__MethodInfo); DO_APP_FUNC(0x02796F50, void, RequestCachingSection_set_DisableAllCaching, (RequestCachingSection * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE74F0, RequestCachingSection_set_DisableAllCaching__MethodInfo); DO_APP_FUNC(0x02796F80, bool, RequestCachingSection_get_IsPrivateCache, (RequestCachingSection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE74E8, RequestCachingSection_get_IsPrivateCache__MethodInfo); DO_APP_FUNC(0x02796FB0, void, RequestCachingSection_set_IsPrivateCache, (RequestCachingSection * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE74F8, RequestCachingSection_set_IsPrivateCache__MethodInfo); DO_APP_FUNC(0x02796FE0, ConfigurationPropertyCollection *, RequestCachingSection_get_Properties, (RequestCachingSection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE74D0, RequestCachingSection_get_Properties__MethodInfo); DO_APP_FUNC(0x02797010, TimeSpan, RequestCachingSection_get_UnspecifiedMaximumAge, (RequestCachingSection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE74E0, RequestCachingSection_get_UnspecifiedMaximumAge__MethodInfo); DO_APP_FUNC(0x02797040, void, RequestCachingSection_set_UnspecifiedMaximumAge, (RequestCachingSection * __this, TimeSpan value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE74D8, RequestCachingSection_set_UnspecifiedMaximumAge__MethodInfo); DO_APP_FUNC(0x02797070, void, RequestCachingSection_DeserializeElement, (RequestCachingSection * __this, XmlReader * reader, bool serializeCollectionKey, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7518, RequestCachingSection_DeserializeElement__MethodInfo); DO_APP_FUNC(0x027970A0, void, RequestCachingSection_PostDeserialize, (RequestCachingSection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7520, RequestCachingSection_PostDeserialize__MethodInfo); DO_APP_FUNC(0x027970D0, void, SettingsSection__ctor, (SettingsSection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7508, SettingsSection__ctor__MethodInfo); DO_APP_FUNC(0x02797100, HttpListenerElement *, SettingsSection_get_HttpListener, (SettingsSection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7500, SettingsSection_get_HttpListener__MethodInfo); DO_APP_FUNC(0x02797130, HttpWebRequestElement *, SettingsSection_get_HttpWebRequest, (SettingsSection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7510, SettingsSection_get_HttpWebRequest__MethodInfo); DO_APP_FUNC(0x02797160, Ipv6Element *, SettingsSection_get_Ipv6, (SettingsSection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7488, SettingsSection_get_Ipv6__MethodInfo); DO_APP_FUNC(0x02797190, PerformanceCountersElement *, SettingsSection_get_PerformanceCounters, (SettingsSection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7498, SettingsSection_get_PerformanceCounters__MethodInfo); DO_APP_FUNC(0x027971C0, ConfigurationPropertyCollection *, SettingsSection_get_Properties, (SettingsSection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7490, SettingsSection_get_Properties__MethodInfo); DO_APP_FUNC(0x027971F0, ServicePointManagerElement *, SettingsSection_get_ServicePointManager, (SettingsSection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7478, SettingsSection_get_ServicePointManager__MethodInfo); DO_APP_FUNC(0x02797220, SocketElement *, SettingsSection_get_Socket, (SettingsSection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7480, SettingsSection_get_Socket__MethodInfo); DO_APP_FUNC(0x02797250, WebProxyScriptElement *, SettingsSection_get_WebProxyScript, (SettingsSection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE74C0, SettingsSection_get_WebProxyScript__MethodInfo); DO_APP_FUNC(0x02797280, WebUtilityElement *, SettingsSection_get_WebUtility, (SettingsSection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE74B8, SettingsSection_get_WebUtility__MethodInfo); DO_APP_FUNC(0x027972B0, WindowsAuthenticationElement *, SettingsSection_get_WindowsAuthentication, (SettingsSection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE74C8, SettingsSection_get_WindowsAuthentication__MethodInfo); DO_APP_FUNC(0x027972E0, void, PerformanceCountersElement__ctor, (PerformanceCountersElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE74A0, PerformanceCountersElement__ctor__MethodInfo); DO_APP_FUNC(0x02797310, bool, PerformanceCountersElement_get_Enabled, (PerformanceCountersElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE74B0, PerformanceCountersElement_get_Enabled__MethodInfo); DO_APP_FUNC(0x02797340, void, PerformanceCountersElement_set_Enabled, (PerformanceCountersElement * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE74A8, PerformanceCountersElement_set_Enabled__MethodInfo); DO_APP_FUNC(0x02797370, ConfigurationPropertyCollection *, PerformanceCountersElement_get_Properties, (PerformanceCountersElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7440, PerformanceCountersElement_get_Properties__MethodInfo); DO_APP_FUNC(0x027973A0, void, ServicePointManagerElement__ctor, (ServicePointManagerElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7448, ServicePointManagerElement__ctor__MethodInfo); DO_APP_FUNC(0x027973D0, bool, ServicePointManagerElement_get_CheckCertificateName, (ServicePointManagerElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7430, ServicePointManagerElement_get_CheckCertificateName__MethodInfo); DO_APP_FUNC(0x02797400, void, ServicePointManagerElement_set_CheckCertificateName, (ServicePointManagerElement * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7428, ServicePointManagerElement_set_CheckCertificateName__MethodInfo); DO_APP_FUNC(0x02797430, bool, ServicePointManagerElement_get_CheckCertificateRevocationList, (ServicePointManagerElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7438, ServicePointManagerElement_get_CheckCertificateRevocationList__MethodInfo); DO_APP_FUNC(0x02797460, void, ServicePointManagerElement_set_CheckCertificateRevocationList, (ServicePointManagerElement * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7460, ServicePointManagerElement_set_CheckCertificateRevocationList__MethodInfo); DO_APP_FUNC(0x02797490, int32_t, ServicePointManagerElement_get_DnsRefreshTimeout, (ServicePointManagerElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7470, ServicePointManagerElement_get_DnsRefreshTimeout__MethodInfo); DO_APP_FUNC(0x027974C0, void, ServicePointManagerElement_set_DnsRefreshTimeout, (ServicePointManagerElement * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7468, ServicePointManagerElement_set_DnsRefreshTimeout__MethodInfo); DO_APP_FUNC(0x027974F0, bool, ServicePointManagerElement_get_EnableDnsRoundRobin, (ServicePointManagerElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7450, ServicePointManagerElement_get_EnableDnsRoundRobin__MethodInfo); DO_APP_FUNC(0x02797520, void, ServicePointManagerElement_set_EnableDnsRoundRobin, (ServicePointManagerElement * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7458, ServicePointManagerElement_set_EnableDnsRoundRobin__MethodInfo); DO_APP_FUNC(0x02797550, EncryptionPolicy__Enum, ServicePointManagerElement_get_EncryptionPolicy, (ServicePointManagerElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE73F0, ServicePointManagerElement_get_EncryptionPolicy__MethodInfo); DO_APP_FUNC(0x02797580, void, ServicePointManagerElement_set_EncryptionPolicy, (ServicePointManagerElement * __this, EncryptionPolicy__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE73E8, ServicePointManagerElement_set_EncryptionPolicy__MethodInfo); DO_APP_FUNC(0x027975B0, bool, ServicePointManagerElement_get_Expect100Continue, (ServicePointManagerElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE73F8, ServicePointManagerElement_get_Expect100Continue__MethodInfo); DO_APP_FUNC(0x027975E0, void, ServicePointManagerElement_set_Expect100Continue, (ServicePointManagerElement * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE73D0, ServicePointManagerElement_set_Expect100Continue__MethodInfo); DO_APP_FUNC(0x02797610, ConfigurationPropertyCollection *, ServicePointManagerElement_get_Properties, (ServicePointManagerElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE73E0, ServicePointManagerElement_get_Properties__MethodInfo); DO_APP_FUNC(0x02797640, bool, ServicePointManagerElement_get_UseNagleAlgorithm, (ServicePointManagerElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE73D8, ServicePointManagerElement_get_UseNagleAlgorithm__MethodInfo); DO_APP_FUNC(0x02797670, void, ServicePointManagerElement_set_UseNagleAlgorithm, (ServicePointManagerElement * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7418, ServicePointManagerElement_set_UseNagleAlgorithm__MethodInfo); DO_APP_FUNC(0x027976A0, void, ServicePointManagerElement_PostDeserialize, (ServicePointManagerElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7420, ServicePointManagerElement_PostDeserialize__MethodInfo); DO_APP_FUNC(0x027976D0, void, SocketElement__ctor, (SocketElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7408, SocketElement__ctor__MethodInfo); DO_APP_FUNC(0x02797700, bool, SocketElement_get_AlwaysUseCompletionPortsForAccept, (SocketElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7400, SocketElement_get_AlwaysUseCompletionPortsForAccept__MethodInfo); DO_APP_FUNC(0x02797730, void, SocketElement_set_AlwaysUseCompletionPortsForAccept, (SocketElement * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7410, SocketElement_set_AlwaysUseCompletionPortsForAccept__MethodInfo); DO_APP_FUNC(0x02797760, bool, SocketElement_get_AlwaysUseCompletionPortsForConnect, (SocketElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7388, SocketElement_get_AlwaysUseCompletionPortsForConnect__MethodInfo); DO_APP_FUNC(0x02797790, void, SocketElement_set_AlwaysUseCompletionPortsForConnect, (SocketElement * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7398, SocketElement_set_AlwaysUseCompletionPortsForConnect__MethodInfo); DO_APP_FUNC(0x027977C0, IPProtectionLevel__Enum, SocketElement_get_IPProtectionLevel, (SocketElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7390, SocketElement_get_IPProtectionLevel__MethodInfo); DO_APP_FUNC(0x027977F0, void, SocketElement_set_IPProtectionLevel, (SocketElement * __this, IPProtectionLevel__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7378, SocketElement_set_IPProtectionLevel__MethodInfo); DO_APP_FUNC(0x02797820, ConfigurationPropertyCollection *, SocketElement_get_Properties, (SocketElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7380, SocketElement_get_Properties__MethodInfo); DO_APP_FUNC(0x02797850, void, SocketElement_PostDeserialize, (SocketElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE73C0, SocketElement_PostDeserialize__MethodInfo); DO_APP_FUNC(0x02797880, void, WebProxyScriptElement__ctor, (WebProxyScriptElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE73B8, WebProxyScriptElement__ctor__MethodInfo); DO_APP_FUNC(0x027978B0, int32_t, WebProxyScriptElement_get_AutoConfigUrlRetryInterval, (WebProxyScriptElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE73C8, WebProxyScriptElement_get_AutoConfigUrlRetryInterval__MethodInfo); DO_APP_FUNC(0x027978E0, void, WebProxyScriptElement_set_AutoConfigUrlRetryInterval, (WebProxyScriptElement * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE73A0, WebProxyScriptElement_set_AutoConfigUrlRetryInterval__MethodInfo); DO_APP_FUNC(0x02797910, TimeSpan, WebProxyScriptElement_get_DownloadTimeout, (WebProxyScriptElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE73B0, WebProxyScriptElement_get_DownloadTimeout__MethodInfo); DO_APP_FUNC(0x02797940, void, WebProxyScriptElement_set_DownloadTimeout, (WebProxyScriptElement * __this, TimeSpan value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE73A8, WebProxyScriptElement_set_DownloadTimeout__MethodInfo); DO_APP_FUNC(0x02797970, ConfigurationPropertyCollection *, WebProxyScriptElement_get_Properties, (WebProxyScriptElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7340, WebProxyScriptElement_get_Properties__MethodInfo); DO_APP_FUNC(0x027979A0, void, WebProxyScriptElement_PostDeserialize, (WebProxyScriptElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7348, WebProxyScriptElement_PostDeserialize__MethodInfo); DO_APP_FUNC(0x027979D0, void, WebUtilityElement__ctor, (WebUtilityElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7330, WebUtilityElement__ctor__MethodInfo); DO_APP_FUNC(0x02797A00, ConfigurationPropertyCollection *, WebUtilityElement_get_Properties, (WebUtilityElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7328, WebUtilityElement_get_Properties__MethodInfo); DO_APP_FUNC(0x02797A30, UnicodeDecodingConformance__Enum, WebUtilityElement_get_UnicodeDecodingConformance, (WebUtilityElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7338, WebUtilityElement_get_UnicodeDecodingConformance__MethodInfo); DO_APP_FUNC(0x02797A60, void, WebUtilityElement_set_UnicodeDecodingConformance, (WebUtilityElement * __this, UnicodeDecodingConformance__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7360, WebUtilityElement_set_UnicodeDecodingConformance__MethodInfo); DO_APP_FUNC(0x02797A90, UnicodeEncodingConformance__Enum, WebUtilityElement_get_UnicodeEncodingConformance, (WebUtilityElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7370, WebUtilityElement_get_UnicodeEncodingConformance__MethodInfo); DO_APP_FUNC(0x02797AC0, void, WebUtilityElement_set_UnicodeEncodingConformance, (WebUtilityElement * __this, UnicodeEncodingConformance__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7368, WebUtilityElement_set_UnicodeEncodingConformance__MethodInfo); DO_APP_FUNC(0x02797AF0, void, WindowsAuthenticationElement__ctor, (WindowsAuthenticationElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7350, WindowsAuthenticationElement__ctor__MethodInfo); DO_APP_FUNC(0x02797B20, int32_t, WindowsAuthenticationElement_get_DefaultCredentialsHandleCacheSize, (WindowsAuthenticationElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7358, WindowsAuthenticationElement_get_DefaultCredentialsHandleCacheSize__MethodInfo); DO_APP_FUNC(0x02797B50, void, WindowsAuthenticationElement_set_DefaultCredentialsHandleCacheSize, (WindowsAuthenticationElement * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE72F0, WindowsAuthenticationElement_set_DefaultCredentialsHandleCacheSize__MethodInfo); DO_APP_FUNC(0x02797B80, ConfigurationPropertyCollection *, WindowsAuthenticationElement_get_Properties, (WindowsAuthenticationElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE72E8, WindowsAuthenticationElement_get_Properties__MethodInfo); DO_APP_FUNC(0x02797BB0, void, WebRequestModulesSection__ctor, (WebRequestModulesSection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE72F8, WebRequestModulesSection__ctor__MethodInfo); DO_APP_FUNC(0x02797BE0, ConfigurationPropertyCollection *, WebRequestModulesSection_get_Properties, (WebRequestModulesSection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE72D0, WebRequestModulesSection_get_Properties__MethodInfo); DO_APP_FUNC(0x02797C10, WebRequestModuleElementCollection *, WebRequestModulesSection_get_WebRequestModules, (WebRequestModulesSection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE72E0, WebRequestModulesSection_get_WebRequestModules__MethodInfo); DO_APP_FUNC(0x02797C40, void, WebRequestModulesSection_InitializeDefault, (WebRequestModulesSection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE72D8, WebRequestModulesSection_InitializeDefault__MethodInfo); DO_APP_FUNC(0x02797C70, void, WebRequestModulesSection_PostDeserialize, (WebRequestModulesSection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7318, WebRequestModulesSection_PostDeserialize__MethodInfo); DO_APP_FUNC(0x02797CA0, void, WebRequestModuleElementCollection__ctor, (WebRequestModuleElementCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7320, WebRequestModuleElementCollection__ctor__MethodInfo); DO_APP_FUNC(0x02797CD0, WebRequestModuleElement *, WebRequestModuleElementCollection_get_Item, (WebRequestModuleElementCollection * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7308, WebRequestModuleElementCollection_get_Item__MethodInfo); DO_APP_FUNC(0x02797D00, void, WebRequestModuleElementCollection_set_Item, (WebRequestModuleElementCollection * __this, int32_t index, WebRequestModuleElement * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7300, WebRequestModuleElementCollection_set_Item__MethodInfo); DO_APP_FUNC(0x02797D30, WebRequestModuleElement *, WebRequestModuleElementCollection_get_Item_1, (WebRequestModuleElementCollection * __this, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7310, WebRequestModuleElementCollection_get_Item_1__MethodInfo); DO_APP_FUNC(0x02797D60, void, WebRequestModuleElementCollection_set_Item_1, (WebRequestModuleElementCollection * __this, String * name, WebRequestModuleElement * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7288, WebRequestModuleElementCollection_set_Item_1__MethodInfo); DO_APP_FUNC(0x02797D90, void, WebRequestModuleElementCollection_Add, (WebRequestModuleElementCollection * __this, WebRequestModuleElement * element, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7298, WebRequestModuleElementCollection_Add__MethodInfo); DO_APP_FUNC(0x02797DC0, void, WebRequestModuleElementCollection_Clear, (WebRequestModuleElementCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7290, WebRequestModuleElementCollection_Clear__MethodInfo); DO_APP_FUNC(0x02797DF0, ConfigurationElement *, WebRequestModuleElementCollection_CreateNewElement, (WebRequestModuleElementCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7278, WebRequestModuleElementCollection_CreateNewElement__MethodInfo); DO_APP_FUNC(0x02797E20, Object *, WebRequestModuleElementCollection_GetElementKey, (WebRequestModuleElementCollection * __this, ConfigurationElement * element, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7280, WebRequestModuleElementCollection_GetElementKey__MethodInfo); DO_APP_FUNC(0x02797E50, int32_t, WebRequestModuleElementCollection_IndexOf, (WebRequestModuleElementCollection * __this, WebRequestModuleElement * element, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE72C0, WebRequestModuleElementCollection_IndexOf__MethodInfo); DO_APP_FUNC(0x02797E80, void, WebRequestModuleElementCollection_Remove, (WebRequestModuleElementCollection * __this, WebRequestModuleElement * element, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE72B8, WebRequestModuleElementCollection_Remove__MethodInfo); DO_APP_FUNC(0x02797EB0, void, WebRequestModuleElementCollection_Remove_1, (WebRequestModuleElementCollection * __this, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE72C8, WebRequestModuleElementCollection_Remove_1__MethodInfo); DO_APP_FUNC(0x02797EE0, void, WebRequestModuleElementCollection_RemoveAt, (WebRequestModuleElementCollection * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE72A0, WebRequestModuleElementCollection_RemoveAt__MethodInfo); DO_APP_FUNC(0x02797F10, void, WebRequestModuleElement__ctor, (WebRequestModuleElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE72B0, WebRequestModuleElement__ctor__MethodInfo); DO_APP_FUNC(0x02797F40, void, WebRequestModuleElement__ctor_1, (WebRequestModuleElement * __this, String * prefix, String * type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE72A8, WebRequestModuleElement__ctor_1__MethodInfo); DO_APP_FUNC(0x02797F70, void, WebRequestModuleElement__ctor_2, (WebRequestModuleElement * __this, String * prefix, Type * type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7240, WebRequestModuleElement__ctor_2__MethodInfo); DO_APP_FUNC(0x02797FA0, String *, WebRequestModuleElement_get_Prefix, (WebRequestModuleElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7248, WebRequestModuleElement_get_Prefix__MethodInfo); DO_APP_FUNC(0x02797FD0, void, WebRequestModuleElement_set_Prefix, (WebRequestModuleElement * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7230, WebRequestModuleElement_set_Prefix__MethodInfo); DO_APP_FUNC(0x02798000, ConfigurationPropertyCollection *, WebRequestModuleElement_get_Properties, (WebRequestModuleElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7228, WebRequestModuleElement_get_Properties__MethodInfo); DO_APP_FUNC(0x02798030, Type *, WebRequestModuleElement_get_Type, (WebRequestModuleElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7238, WebRequestModuleElement_get_Type__MethodInfo); DO_APP_FUNC(0x02798060, void, WebRequestModuleElement_set_Type, (WebRequestModuleElement * __this, Type * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7260, WebRequestModuleElement_set_Type__MethodInfo); DO_APP_FUNC(0x02798090, void, SoundPlayer__ctor, (SoundPlayer * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7270, SoundPlayer__ctor__MethodInfo); DO_APP_FUNC(0x027980C0, void, SoundPlayer__ctor_1, (SoundPlayer * __this, Stream * stream, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7268, SoundPlayer__ctor_1__MethodInfo); DO_APP_FUNC(0x027980F0, void, SoundPlayer__ctor_2, (SoundPlayer * __this, SerializationInfo * serializationInfo, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7250, SoundPlayer__ctor_2__MethodInfo); DO_APP_FUNC(0x02798120, void, SoundPlayer__ctor_3, (SoundPlayer * __this, String * soundLocation, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7258, SoundPlayer__ctor_3__MethodInfo); DO_APP_FUNC(0x02798150, bool, SoundPlayer_get_IsLoadCompleted, (SoundPlayer * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE71F0, SoundPlayer_get_IsLoadCompleted__MethodInfo); DO_APP_FUNC(0x02798180, int32_t, SoundPlayer_get_LoadTimeout, (SoundPlayer * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE71E8, SoundPlayer_get_LoadTimeout__MethodInfo); DO_APP_FUNC(0x027981B0, void, SoundPlayer_set_LoadTimeout, (SoundPlayer * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE71F8, SoundPlayer_set_LoadTimeout__MethodInfo); DO_APP_FUNC(0x027981E0, String *, SoundPlayer_get_SoundLocation, (SoundPlayer * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE71D0, SoundPlayer_get_SoundLocation__MethodInfo); DO_APP_FUNC(0x02798210, void, SoundPlayer_set_SoundLocation, (SoundPlayer * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE71E0, SoundPlayer_set_SoundLocation__MethodInfo); DO_APP_FUNC(0x02798240, Stream *, SoundPlayer_get_Stream, (SoundPlayer * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE71D8, SoundPlayer_get_Stream__MethodInfo); DO_APP_FUNC(0x02798270, void, SoundPlayer_set_Stream, (SoundPlayer * __this, Stream * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7218, SoundPlayer_set_Stream__MethodInfo); DO_APP_FUNC(0x027982A0, Object *, SoundPlayer_get_Tag, (SoundPlayer * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7220, SoundPlayer_get_Tag__MethodInfo); DO_APP_FUNC(0x027982D0, void, SoundPlayer_set_Tag, (SoundPlayer * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7208, SoundPlayer_set_Tag__MethodInfo); DO_APP_FUNC(0x02798300, void, SoundPlayer_add_LoadCompleted, (SoundPlayer * __this, AsyncCompletedEventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7200, SoundPlayer_add_LoadCompleted__MethodInfo); DO_APP_FUNC(0x02798330, void, SoundPlayer_remove_LoadCompleted, (SoundPlayer * __this, AsyncCompletedEventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7210, SoundPlayer_remove_LoadCompleted__MethodInfo); DO_APP_FUNC(0x02798360, void, SoundPlayer_add_SoundLocationChanged, (SoundPlayer * __this, EventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7188, SoundPlayer_add_SoundLocationChanged__MethodInfo); DO_APP_FUNC(0x02798390, void, SoundPlayer_remove_SoundLocationChanged, (SoundPlayer * __this, EventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7198, SoundPlayer_remove_SoundLocationChanged__MethodInfo); DO_APP_FUNC(0x027983C0, void, SoundPlayer_add_StreamChanged, (SoundPlayer * __this, EventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7190, SoundPlayer_add_StreamChanged__MethodInfo); DO_APP_FUNC(0x027983F0, void, SoundPlayer_remove_StreamChanged, (SoundPlayer * __this, EventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7178, SoundPlayer_remove_StreamChanged__MethodInfo); DO_APP_FUNC(0x02798420, void, SoundPlayer_Load, (SoundPlayer * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7180, SoundPlayer_Load__MethodInfo); DO_APP_FUNC(0x02798450, void, SoundPlayer_LoadAsync, (SoundPlayer * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE71C0, SoundPlayer_LoadAsync__MethodInfo); DO_APP_FUNC(0x02798480, void, SoundPlayer_OnLoadCompleted, (SoundPlayer * __this, AsyncCompletedEventArgs * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE71B8, SoundPlayer_OnLoadCompleted__MethodInfo); DO_APP_FUNC(0x027984B0, void, SoundPlayer_OnSoundLocationChanged, (SoundPlayer * __this, EventArgs * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE71C8, SoundPlayer_OnSoundLocationChanged__MethodInfo); DO_APP_FUNC(0x027984E0, void, SoundPlayer_OnStreamChanged, (SoundPlayer * __this, EventArgs * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE71A0, SoundPlayer_OnStreamChanged__MethodInfo); DO_APP_FUNC(0x02798510, void, SoundPlayer_Play, (SoundPlayer * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE71B0, SoundPlayer_Play__MethodInfo); DO_APP_FUNC(0x02798540, void, SoundPlayer_PlayLooping, (SoundPlayer * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE71A8, SoundPlayer_PlayLooping__MethodInfo); DO_APP_FUNC(0x02798570, void, SoundPlayer_PlaySync, (SoundPlayer * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7140, SoundPlayer_PlaySync__MethodInfo); DO_APP_FUNC(0x027985A0, void, SoundPlayer_Stop, (SoundPlayer * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7148, SoundPlayer_Stop__MethodInfo); DO_APP_FUNC(0x027985D0, void, SoundPlayer_System_Runtime_Serialization_ISerializable_GetObjectData, (SoundPlayer * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7130, SoundPlayer_System_Runtime_Serialization_ISerializable_GetObjectData__MethodInfo); DO_APP_FUNC(0x02798600, void, SystemSound__ctor, (SystemSound * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7128, SystemSound__ctor__MethodInfo); DO_APP_FUNC(0x02798630, void, SystemSound_Play, (SystemSound * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7138, SystemSound_Play__MethodInfo); DO_APP_FUNC(0x02798660, void, SystemSounds__ctor, (SystemSounds * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7160, SystemSounds__ctor__MethodInfo); DO_APP_FUNC(0x02798690, SystemSound *, SystemSounds_get_Asterisk, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7170, SystemSounds_get_Asterisk__MethodInfo); DO_APP_FUNC(0x027986C0, SystemSound *, SystemSounds_get_Beep, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7168, SystemSounds_get_Beep__MethodInfo); DO_APP_FUNC(0x027986F0, SystemSound *, SystemSounds_get_Exclamation, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7150, SystemSounds_get_Exclamation__MethodInfo); DO_APP_FUNC(0x02798720, SystemSound *, SystemSounds_get_Hand, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7158, SystemSounds_get_Hand__MethodInfo); DO_APP_FUNC(0x02798750, SystemSound *, SystemSounds_get_Question, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE70F0, SystemSounds_get_Question__MethodInfo); DO_APP_FUNC(0x02798780, void, SerialDataReceivedEventArgs__ctor, (SerialDataReceivedEventArgs * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE70E8, SerialDataReceivedEventArgs__ctor__MethodInfo); DO_APP_FUNC(0x027987B0, SerialData__Enum, SerialDataReceivedEventArgs_get_EventType, (SerialDataReceivedEventArgs * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE70F8, SerialDataReceivedEventArgs_get_EventType__MethodInfo); DO_APP_FUNC(0x027987E0, void, SerialDataReceivedEventHandler__ctor, (SerialDataReceivedEventHandler * __this, Object * object, void * method_1, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE70D0, SerialDataReceivedEventHandler__ctor__MethodInfo); DO_APP_FUNC(0x02798810, void, SerialDataReceivedEventHandler_Invoke, (SerialDataReceivedEventHandler * __this, Object * sender, SerialDataReceivedEventArgs * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE70E0, SerialDataReceivedEventHandler_Invoke__MethodInfo); DO_APP_FUNC(0x02798840, IAsyncResult *, SerialDataReceivedEventHandler_BeginInvoke, (SerialDataReceivedEventHandler * __this, Object * sender, SerialDataReceivedEventArgs * e, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE70D8, SerialDataReceivedEventHandler_BeginInvoke__MethodInfo); DO_APP_FUNC(0x02798870, void, SerialDataReceivedEventHandler_EndInvoke, (SerialDataReceivedEventHandler * __this, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7118, SerialDataReceivedEventHandler_EndInvoke__MethodInfo); DO_APP_FUNC(0x027988A0, void, SerialErrorReceivedEventArgs__ctor, (SerialErrorReceivedEventArgs * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7120, SerialErrorReceivedEventArgs__ctor__MethodInfo); DO_APP_FUNC(0x027988D0, SerialError__Enum, SerialErrorReceivedEventArgs_get_EventType, (SerialErrorReceivedEventArgs * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7108, SerialErrorReceivedEventArgs_get_EventType__MethodInfo); DO_APP_FUNC(0x02798900, void, SerialErrorReceivedEventHandler__ctor, (SerialErrorReceivedEventHandler * __this, Object * object, void * method_1, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7100, SerialErrorReceivedEventHandler__ctor__MethodInfo); DO_APP_FUNC(0x02798930, void, SerialErrorReceivedEventHandler_Invoke, (SerialErrorReceivedEventHandler * __this, Object * sender, SerialErrorReceivedEventArgs * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7110, SerialErrorReceivedEventHandler_Invoke__MethodInfo); DO_APP_FUNC(0x02798960, IAsyncResult *, SerialErrorReceivedEventHandler_BeginInvoke, (SerialErrorReceivedEventHandler * __this, Object * sender, SerialErrorReceivedEventArgs * e, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7088, SerialErrorReceivedEventHandler_BeginInvoke__MethodInfo); DO_APP_FUNC(0x02798990, void, SerialErrorReceivedEventHandler_EndInvoke, (SerialErrorReceivedEventHandler * __this, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7098, SerialErrorReceivedEventHandler_EndInvoke__MethodInfo); DO_APP_FUNC(0x027989C0, void, SerialPinChangedEventArgs__ctor, (SerialPinChangedEventArgs * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7090, SerialPinChangedEventArgs__ctor__MethodInfo); DO_APP_FUNC(0x027989F0, SerialPinChange__Enum, SerialPinChangedEventArgs_get_EventType, (SerialPinChangedEventArgs * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7078, SerialPinChangedEventArgs_get_EventType__MethodInfo); DO_APP_FUNC(0x02798A20, void, SerialPinChangedEventHandler__ctor, (SerialPinChangedEventHandler * __this, Object * object, void * method_1, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7080, SerialPinChangedEventHandler__ctor__MethodInfo); DO_APP_FUNC(0x02798A50, void, SerialPinChangedEventHandler_Invoke, (SerialPinChangedEventHandler * __this, Object * sender, SerialPinChangedEventArgs * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE70C0, SerialPinChangedEventHandler_Invoke__MethodInfo); DO_APP_FUNC(0x02798A80, IAsyncResult *, SerialPinChangedEventHandler_BeginInvoke, (SerialPinChangedEventHandler * __this, Object * sender, SerialPinChangedEventArgs * e, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE70B8, SerialPinChangedEventHandler_BeginInvoke__MethodInfo); DO_APP_FUNC(0x02798AB0, void, SerialPinChangedEventHandler_EndInvoke, (SerialPinChangedEventHandler * __this, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE70C8, SerialPinChangedEventHandler_EndInvoke__MethodInfo); DO_APP_FUNC(0x02798AE0, void, SerialPort__ctor, (SerialPort * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE70A0, SerialPort__ctor__MethodInfo); DO_APP_FUNC(0x02798B10, void, SerialPort__ctor_1, (SerialPort * __this, IContainer * container, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE70B0, SerialPort__ctor_1__MethodInfo); DO_APP_FUNC(0x02798B40, void, SerialPort__ctor_2, (SerialPort * __this, String * portName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE70A8, SerialPort__ctor_2__MethodInfo); DO_APP_FUNC(0x02798B70, void, SerialPort__ctor_3, (SerialPort * __this, String * portName, int32_t baudRate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7020, SerialPort__ctor_3__MethodInfo); DO_APP_FUNC(0x02798BA0, void, SerialPort__ctor_4, (SerialPort * __this, String * portName, int32_t baudRate, Parity__Enum parity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7028, SerialPort__ctor_4__MethodInfo); DO_APP_FUNC(0x02798BD0, void, SerialPort__ctor_5, (SerialPort * __this, String * portName, int32_t baudRate, Parity__Enum parity, int32_t dataBits, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7010, SerialPort__ctor_5__MethodInfo); DO_APP_FUNC(0x02798C00, void, SerialPort__ctor_6, (SerialPort * __this, String * portName, int32_t baudRate, Parity__Enum parity, int32_t dataBits, StopBits__Enum stopBits, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7008, SerialPort__ctor_6__MethodInfo); DO_APP_FUNC(0x02798C30, Stream *, SerialPort_get_BaseStream, (SerialPort * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7018, SerialPort_get_BaseStream__MethodInfo); DO_APP_FUNC(0x02798C60, int32_t, SerialPort_get_BaudRate, (SerialPort * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7060, SerialPort_get_BaudRate__MethodInfo); DO_APP_FUNC(0x02798C90, void, SerialPort_set_BaudRate, (SerialPort * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7070, SerialPort_set_BaudRate__MethodInfo); DO_APP_FUNC(0x02798CC0, bool, SerialPort_get_BreakState, (SerialPort * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7068, SerialPort_get_BreakState__MethodInfo); DO_APP_FUNC(0x02798CF0, void, SerialPort_set_BreakState, (SerialPort * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7030, SerialPort_set_BreakState__MethodInfo); DO_APP_FUNC(0x02798D20, int32_t, SerialPort_get_BytesToRead, (SerialPort * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7058, SerialPort_get_BytesToRead__MethodInfo); DO_APP_FUNC(0x02798D50, int32_t, SerialPort_get_BytesToWrite, (SerialPort * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6FC8, SerialPort_get_BytesToWrite__MethodInfo); DO_APP_FUNC(0x02798D80, bool, SerialPort_get_CDHolding, (SerialPort * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6FC0, SerialPort_get_CDHolding__MethodInfo); DO_APP_FUNC(0x02798DB0, bool, SerialPort_get_CtsHolding, (SerialPort * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6FD0, SerialPort_get_CtsHolding__MethodInfo); DO_APP_FUNC(0x02798DE0, int32_t, SerialPort_get_DataBits, (SerialPort * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6FA8, SerialPort_get_DataBits__MethodInfo); DO_APP_FUNC(0x02798E10, void, SerialPort_set_DataBits, (SerialPort * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6FB8, SerialPort_set_DataBits__MethodInfo); DO_APP_FUNC(0x02798E40, bool, SerialPort_get_DiscardNull, (SerialPort * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6FB0, SerialPort_get_DiscardNull__MethodInfo); DO_APP_FUNC(0x02798E70, void, SerialPort_set_DiscardNull, (SerialPort * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6FF8, SerialPort_set_DiscardNull__MethodInfo); DO_APP_FUNC(0x02798EA0, bool, SerialPort_get_DsrHolding, (SerialPort * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE7000, SerialPort_get_DsrHolding__MethodInfo); DO_APP_FUNC(0x02798ED0, bool, SerialPort_get_DtrEnable, (SerialPort * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6FE8, SerialPort_get_DtrEnable__MethodInfo); DO_APP_FUNC(0x02798F00, void, SerialPort_set_DtrEnable, (SerialPort * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6FE0, SerialPort_set_DtrEnable__MethodInfo); DO_APP_FUNC(0x02798F30, Encoding *, SerialPort_get_Encoding, (SerialPort * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6FF0, SerialPort_get_Encoding__MethodInfo); DO_APP_FUNC(0x02798F60, void, SerialPort_set_Encoding, (SerialPort * __this, Encoding * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6F60, SerialPort_set_Encoding__MethodInfo); DO_APP_FUNC(0x02798F90, Handshake__Enum, SerialPort_get_Handshake, (SerialPort * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6F70, SerialPort_get_Handshake__MethodInfo); DO_APP_FUNC(0x02798FC0, void, SerialPort_set_Handshake, (SerialPort * __this, Handshake__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6F68, SerialPort_set_Handshake__MethodInfo); DO_APP_FUNC(0x02798FF0, bool, SerialPort_get_IsOpen, (SerialPort * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6F50, SerialPort_get_IsOpen__MethodInfo); DO_APP_FUNC(0x02799020, String *, SerialPort_get_NewLine, (SerialPort * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6F58, SerialPort_get_NewLine__MethodInfo); DO_APP_FUNC(0x02799050, void, SerialPort_set_NewLine, (SerialPort * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6F98, SerialPort_set_NewLine__MethodInfo); DO_APP_FUNC(0x02799080, Parity__Enum, SerialPort_get_Parity, (SerialPort * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6F90, SerialPort_get_Parity__MethodInfo); DO_APP_FUNC(0x027990B0, void, SerialPort_set_Parity, (SerialPort * __this, Parity__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6FA0, SerialPort_set_Parity__MethodInfo); DO_APP_FUNC(0x027990E0, uint8_t, SerialPort_get_ParityReplace, (SerialPort * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6F78, SerialPort_get_ParityReplace__MethodInfo); DO_APP_FUNC(0x02799110, void, SerialPort_set_ParityReplace, (SerialPort * __this, uint8_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6F88, SerialPort_set_ParityReplace__MethodInfo); DO_APP_FUNC(0x02799140, String *, SerialPort_get_PortName, (SerialPort * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6F80, SerialPort_get_PortName__MethodInfo); DO_APP_FUNC(0x02799170, void, SerialPort_set_PortName, (SerialPort * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6F10, SerialPort_set_PortName__MethodInfo); DO_APP_FUNC(0x027991A0, int32_t, SerialPort_get_ReadBufferSize, (SerialPort * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6F18, SerialPort_get_ReadBufferSize__MethodInfo); DO_APP_FUNC(0x027991D0, void, SerialPort_set_ReadBufferSize, (SerialPort * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6F00, SerialPort_set_ReadBufferSize__MethodInfo); DO_APP_FUNC(0x02799200, int32_t, SerialPort_get_ReadTimeout, (SerialPort * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6EF8, SerialPort_get_ReadTimeout__MethodInfo); DO_APP_FUNC(0x02799230, void, SerialPort_set_ReadTimeout, (SerialPort * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6F08, SerialPort_set_ReadTimeout__MethodInfo); DO_APP_FUNC(0x02799260, int32_t, SerialPort_get_ReceivedBytesThreshold, (SerialPort * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6F38, SerialPort_get_ReceivedBytesThreshold__MethodInfo); DO_APP_FUNC(0x02799290, void, SerialPort_set_ReceivedBytesThreshold, (SerialPort * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6F48, SerialPort_set_ReceivedBytesThreshold__MethodInfo); DO_APP_FUNC(0x027992C0, bool, SerialPort_get_RtsEnable, (SerialPort * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6F40, SerialPort_get_RtsEnable__MethodInfo); DO_APP_FUNC(0x027992F0, void, SerialPort_set_RtsEnable, (SerialPort * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6F28, SerialPort_set_RtsEnable__MethodInfo); DO_APP_FUNC(0x02799320, StopBits__Enum, SerialPort_get_StopBits, (SerialPort * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6F30, SerialPort_get_StopBits__MethodInfo); DO_APP_FUNC(0x02799350, void, SerialPort_set_StopBits, (SerialPort * __this, StopBits__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6EB8, SerialPort_set_StopBits__MethodInfo); DO_APP_FUNC(0x02799380, int32_t, SerialPort_get_WriteBufferSize, (SerialPort * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6EB0, SerialPort_get_WriteBufferSize__MethodInfo); DO_APP_FUNC(0x027993B0, void, SerialPort_set_WriteBufferSize, (SerialPort * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6EC8, SerialPort_set_WriteBufferSize__MethodInfo); DO_APP_FUNC(0x027993E0, int32_t, SerialPort_get_WriteTimeout, (SerialPort * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6E98, SerialPort_get_WriteTimeout__MethodInfo); DO_APP_FUNC(0x02799410, void, SerialPort_set_WriteTimeout, (SerialPort * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6EA8, SerialPort_set_WriteTimeout__MethodInfo); DO_APP_FUNC(0x02799440, void, SerialPort_add_DataReceived, (SerialPort * __this, SerialDataReceivedEventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6EA0, SerialPort_add_DataReceived__MethodInfo); DO_APP_FUNC(0x02799470, void, SerialPort_remove_DataReceived, (SerialPort * __this, SerialDataReceivedEventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6EE8, SerialPort_remove_DataReceived__MethodInfo); DO_APP_FUNC(0x027994A0, void, SerialPort_add_ErrorReceived, (SerialPort * __this, SerialErrorReceivedEventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6EF0, SerialPort_add_ErrorReceived__MethodInfo); DO_APP_FUNC(0x027994D0, void, SerialPort_remove_ErrorReceived, (SerialPort * __this, SerialErrorReceivedEventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6ED8, SerialPort_remove_ErrorReceived__MethodInfo); DO_APP_FUNC(0x02799500, void, SerialPort_add_PinChanged, (SerialPort * __this, SerialPinChangedEventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6ED0, SerialPort_add_PinChanged__MethodInfo); DO_APP_FUNC(0x02799530, void, SerialPort_remove_PinChanged, (SerialPort * __this, SerialPinChangedEventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6EE0, SerialPort_remove_PinChanged__MethodInfo); DO_APP_FUNC(0x02799560, void, SerialPort_Close, (SerialPort * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6E50, SerialPort_Close__MethodInfo); DO_APP_FUNC(0x02799590, void, SerialPort_DiscardInBuffer, (SerialPort * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6E60, SerialPort_DiscardInBuffer__MethodInfo); DO_APP_FUNC(0x027995C0, void, SerialPort_DiscardOutBuffer, (SerialPort * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6E58, SerialPort_DiscardOutBuffer__MethodInfo); DO_APP_FUNC(0x027995F0, String__Array *, SerialPort_GetPortNames, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6E40, SerialPort_GetPortNames__MethodInfo); DO_APP_FUNC(0x02799620, void, SerialPort_Open, (SerialPort * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6E48, SerialPort_Open__MethodInfo); DO_APP_FUNC(0x02799650, int32_t, SerialPort_Read, (SerialPort * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6E88, SerialPort_Read__MethodInfo); DO_APP_FUNC(0x02799680, int32_t, SerialPort_Read_1, (SerialPort * __this, Char__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6E80, SerialPort_Read_1__MethodInfo); DO_APP_FUNC(0x027996B0, int32_t, SerialPort_ReadByte, (SerialPort * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6E90, SerialPort_ReadByte__MethodInfo); DO_APP_FUNC(0x027996E0, int32_t, SerialPort_ReadChar, (SerialPort * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6E68, SerialPort_ReadChar__MethodInfo); DO_APP_FUNC(0x02799710, String *, SerialPort_ReadExisting, (SerialPort * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6E78, SerialPort_ReadExisting__MethodInfo); DO_APP_FUNC(0x02799740, String *, SerialPort_ReadLine, (SerialPort * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6E70, SerialPort_ReadLine__MethodInfo); DO_APP_FUNC(0x02799770, String *, SerialPort_ReadTo, (SerialPort * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6E00, SerialPort_ReadTo__MethodInfo); DO_APP_FUNC(0x027997A0, void, SerialPort_Write, (SerialPort * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6E08, SerialPort_Write__MethodInfo); DO_APP_FUNC(0x027997D0, void, SerialPort_Write_1, (SerialPort * __this, Char__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6DF0, SerialPort_Write_1__MethodInfo); DO_APP_FUNC(0x02799800, void, SerialPort_Write_2, (SerialPort * __this, String * text, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6DE8, SerialPort_Write_2__MethodInfo); DO_APP_FUNC(0x02799830, void, SerialPort_WriteLine, (SerialPort * __this, String * text, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6DF8, SerialPort_WriteLine__MethodInfo); DO_APP_FUNC(0x02799860, void, ConsoleTraceListener__ctor, (ConsoleTraceListener * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6E20, ConsoleTraceListener__ctor__MethodInfo); DO_APP_FUNC(0x02799890, void, ConsoleTraceListener__ctor_1, (ConsoleTraceListener * __this, bool useErrorStream, MethodInfo * method)); -DO_APP_FUNC(0x027998C0, void, CounterSample__ctor, (CounterSample__Boxed * __this, int64_t rawValue, int64_t baseValue, int64_t counterFrequency, int64_t systemFrequency, int64_t timeStamp, int64_t timeStamp100nSec, PerformanceCounterType__Enum counterType, MethodInfo * method)); -DO_APP_FUNC(0x027998F0, void, CounterSample__ctor_1, (CounterSample__Boxed * __this, int64_t rawValue, int64_t baseValue, int64_t counterFrequency, int64_t systemFrequency, int64_t timeStamp, int64_t timeStamp100nSec, PerformanceCounterType__Enum counterType, int64_t counterTimeStamp, MethodInfo * method)); -DO_APP_FUNC(0x02799920, int64_t, CounterSample_get_BaseValue, (CounterSample__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02799950, int64_t, CounterSample_get_CounterFrequency, (CounterSample__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02799980, int64_t, CounterSample_get_CounterTimeStamp, (CounterSample__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x027999B0, PerformanceCounterType__Enum, CounterSample_get_CounterType, (CounterSample__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x027999E0, int64_t, CounterSample_get_RawValue, (CounterSample__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02799A10, int64_t, CounterSample_get_SystemFrequency, (CounterSample__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02799A40, int64_t, CounterSample_get_TimeStamp, (CounterSample__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02799A70, int64_t, CounterSample_get_TimeStamp100nSec, (CounterSample__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6E38, ConsoleTraceListener__ctor_1__MethodInfo); +DO_APP_FUNC(0x027998C0, void, CounterSample__ctor, (CounterSample * __this, int64_t rawValue, int64_t baseValue, int64_t counterFrequency, int64_t systemFrequency, int64_t timeStamp, int64_t timeStamp100nSec, PerformanceCounterType__Enum counterType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6E30, CounterSample__ctor__MethodInfo); +DO_APP_FUNC(0x027998F0, void, CounterSample__ctor_1, (CounterSample * __this, int64_t rawValue, int64_t baseValue, int64_t counterFrequency, int64_t systemFrequency, int64_t timeStamp, int64_t timeStamp100nSec, PerformanceCounterType__Enum counterType, int64_t counterTimeStamp, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6E10, CounterSample__ctor_1__MethodInfo); +DO_APP_FUNC(0x02799920, int64_t, CounterSample_get_BaseValue, (CounterSample * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6E18, CounterSample_get_BaseValue__MethodInfo); +DO_APP_FUNC(0x02799950, int64_t, CounterSample_get_CounterFrequency, (CounterSample * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6DA0, CounterSample_get_CounterFrequency__MethodInfo); +DO_APP_FUNC(0x02799980, int64_t, CounterSample_get_CounterTimeStamp, (CounterSample * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6D98, CounterSample_get_CounterTimeStamp__MethodInfo); +DO_APP_FUNC(0x027999B0, PerformanceCounterType__Enum, CounterSample_get_CounterType, (CounterSample * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6DA8, CounterSample_get_CounterType__MethodInfo); +DO_APP_FUNC(0x027999E0, int64_t, CounterSample_get_RawValue, (CounterSample * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6D78, CounterSample_get_RawValue__MethodInfo); +DO_APP_FUNC(0x02799A10, int64_t, CounterSample_get_SystemFrequency, (CounterSample * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6D88, CounterSample_get_SystemFrequency__MethodInfo); +DO_APP_FUNC(0x02799A40, int64_t, CounterSample_get_TimeStamp, (CounterSample * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6D80, CounterSample_get_TimeStamp__MethodInfo); +DO_APP_FUNC(0x02799A70, int64_t, CounterSample_get_TimeStamp100nSec, (CounterSample * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6DC8, CounterSample_get_TimeStamp100nSec__MethodInfo); DO_APP_FUNC(0x02799AA0, float, CounterSample_Calculate, (CounterSample counterSample, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6DE0, CounterSample_Calculate__MethodInfo); DO_APP_FUNC(0x02799AD0, float, CounterSample_Calculate_1, (CounterSample counterSample, CounterSample nextCounterSample, MethodInfo * method)); -DO_APP_FUNC(0x02799B00, bool, CounterSample_Equals, (CounterSample__Boxed * __this, CounterSample sample, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6DB8, CounterSample_Calculate_1__MethodInfo); +DO_APP_FUNC(0x02799B00, bool, CounterSample_Equals, (CounterSample * __this, CounterSample sample, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6DB0, CounterSample_Equals__MethodInfo); DO_APP_FUNC(0x02799B30, bool, CounterSample_op_Equality, (CounterSample a, CounterSample b, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6DC0, CounterSample_op_Equality__MethodInfo); DO_APP_FUNC(0x02799B60, bool, CounterSample_op_Inequality, (CounterSample a, CounterSample b, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6D08, CounterSample_op_Inequality__MethodInfo); DO_APP_FUNC(0x02799B90, float, CounterSampleCalculator_ComputeCounterValue, (CounterSample newSample, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6D18, CounterSampleCalculator_ComputeCounterValue__MethodInfo); DO_APP_FUNC(0x02799BC0, float, CounterSampleCalculator_ComputeCounterValue_1, (CounterSample oldSample, CounterSample newSample, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6D10, CounterSampleCalculator_ComputeCounterValue_1__MethodInfo); DO_APP_FUNC(0x02799BF0, void, DiagnosticsConfigurationHandler__ctor, (DiagnosticsConfigurationHandler * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6CE8, DiagnosticsConfigurationHandler__ctor__MethodInfo); DO_APP_FUNC(0x02799C20, Object *, DiagnosticsConfigurationHandler_Create, (DiagnosticsConfigurationHandler * __this, Object * parent, Object * configContext, XmlNode * section, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6CF8, DiagnosticsConfigurationHandler_Create__MethodInfo); DO_APP_FUNC(0x02799C50, void, EventLogPermission__ctor, (EventLogPermission * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6D60, EventLogPermission__ctor__MethodInfo); DO_APP_FUNC(0x02799C80, void, EventLogPermission__ctor_1, (EventLogPermission * __this, EventLogPermissionAccess__Enum permissionAccess, String * machineName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6D58, EventLogPermission__ctor_1__MethodInfo); DO_APP_FUNC(0x02799CB0, void, EventLogPermission__ctor_2, (EventLogPermission * __this, EventLogPermissionEntry__Array * permissionAccessEntries, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6D70, EventLogPermission__ctor_2__MethodInfo); DO_APP_FUNC(0x02799CE0, void, EventLogPermission__ctor_3, (EventLogPermission * __this, PermissionState__Enum state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6D28, EventLogPermission__ctor_3__MethodInfo); DO_APP_FUNC(0x02799D10, EventLogPermissionEntryCollection *, EventLogPermission_get_PermissionEntries, (EventLogPermission * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6D40, EventLogPermission_get_PermissionEntries__MethodInfo); DO_APP_FUNC(0x02799D40, void, EventLogPermissionEntry__ctor, (EventLogPermissionEntry * __this, EventLogPermissionAccess__Enum permissionAccess, String * machineName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6D38, EventLogPermissionEntry__ctor__MethodInfo); DO_APP_FUNC(0x02799D70, String *, EventLogPermissionEntry_get_MachineName, (EventLogPermissionEntry * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6C88, EventLogPermissionEntry_get_MachineName__MethodInfo); DO_APP_FUNC(0x02799DA0, EventLogPermissionAccess__Enum, EventLogPermissionEntry_get_PermissionAccess, (EventLogPermissionEntry * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6CA0, EventLogPermissionEntry_get_PermissionAccess__MethodInfo); DO_APP_FUNC(0x02799DD0, void, EventLogPermissionEntryCollection__ctor, (EventLogPermissionEntryCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6C70, EventLogPermissionEntryCollection__ctor__MethodInfo); DO_APP_FUNC(0x02799E00, EventLogPermissionEntry *, EventLogPermissionEntryCollection_get_Item, (EventLogPermissionEntryCollection * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6C68, EventLogPermissionEntryCollection_get_Item__MethodInfo); DO_APP_FUNC(0x02799E30, void, EventLogPermissionEntryCollection_set_Item, (EventLogPermissionEntryCollection * __this, int32_t index, EventLogPermissionEntry * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6C78, EventLogPermissionEntryCollection_set_Item__MethodInfo); DO_APP_FUNC(0x02799E60, int32_t, EventLogPermissionEntryCollection_Add, (EventLogPermissionEntryCollection * __this, EventLogPermissionEntry * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6CC8, EventLogPermissionEntryCollection_Add__MethodInfo); DO_APP_FUNC(0x02799E90, void, EventLogPermissionEntryCollection_AddRange, (EventLogPermissionEntryCollection * __this, EventLogPermissionEntryCollection * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6CD8, EventLogPermissionEntryCollection_AddRange__MethodInfo); DO_APP_FUNC(0x02799EC0, void, EventLogPermissionEntryCollection_AddRange_1, (EventLogPermissionEntryCollection * __this, EventLogPermissionEntry__Array * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6CD0, EventLogPermissionEntryCollection_AddRange_1__MethodInfo); DO_APP_FUNC(0x02799EF0, bool, EventLogPermissionEntryCollection_Contains, (EventLogPermissionEntryCollection * __this, EventLogPermissionEntry * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6CA8, EventLogPermissionEntryCollection_Contains__MethodInfo); DO_APP_FUNC(0x02799F20, void, EventLogPermissionEntryCollection_CopyTo, (EventLogPermissionEntryCollection * __this, EventLogPermissionEntry__Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6CB8, EventLogPermissionEntryCollection_CopyTo__MethodInfo); DO_APP_FUNC(0x02799F50, int32_t, EventLogPermissionEntryCollection_IndexOf, (EventLogPermissionEntryCollection * __this, EventLogPermissionEntry * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6C20, EventLogPermissionEntryCollection_IndexOf__MethodInfo); DO_APP_FUNC(0x02799F80, void, EventLogPermissionEntryCollection_Insert, (EventLogPermissionEntryCollection * __this, int32_t index, EventLogPermissionEntry * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6C18, EventLogPermissionEntryCollection_Insert__MethodInfo); DO_APP_FUNC(0x02799FB0, void, EventLogPermissionEntryCollection_Remove, (EventLogPermissionEntryCollection * __this, EventLogPermissionEntry * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6C28, EventLogPermissionEntryCollection_Remove__MethodInfo); DO_APP_FUNC(0x003AE050, void, EventLogPermissionAttribute__ctor, (EventLogPermissionAttribute * __this, SecurityAction__Enum action, MethodInfo * method)); DO_APP_FUNC(0x02799FE0, String *, EventLogPermissionAttribute_get_MachineName, (EventLogPermissionAttribute * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6BF8, EventLogPermissionAttribute_get_MachineName__MethodInfo); DO_APP_FUNC(0x003AE050, void, EventLogPermissionAttribute_set_MachineName, (EventLogPermissionAttribute * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x0279A010, EventLogPermissionAccess__Enum, EventLogPermissionAttribute_get_PermissionAccess, (EventLogPermissionAttribute * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6C08, EventLogPermissionAttribute_get_PermissionAccess__MethodInfo); DO_APP_FUNC(0x003AE050, void, EventLogPermissionAttribute_set_PermissionAccess, (EventLogPermissionAttribute * __this, EventLogPermissionAccess__Enum value, MethodInfo * method)); DO_APP_FUNC(0x0279A040, IPermission *, EventLogPermissionAttribute_CreatePermission, (EventLogPermissionAttribute * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6C00, EventLogPermissionAttribute_CreatePermission__MethodInfo); DO_APP_FUNC(0x0279A070, void, EventLogTraceListener__ctor, (EventLogTraceListener * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6C50, EventLogTraceListener__ctor__MethodInfo); DO_APP_FUNC(0x0279A0A0, void, EventLogTraceListener__ctor_1, (EventLogTraceListener * __this, EventLog * eventLog, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6C60, EventLogTraceListener__ctor_1__MethodInfo); DO_APP_FUNC(0x0279A0D0, void, EventLogTraceListener__ctor_2, (EventLogTraceListener * __this, String * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6C38, EventLogTraceListener__ctor_2__MethodInfo); DO_APP_FUNC(0x0279A100, EventLog *, EventLogTraceListener_get_EventLog, (EventLogTraceListener * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6C30, EventLogTraceListener_get_EventLog__MethodInfo); DO_APP_FUNC(0x0279A130, void, EventLogTraceListener_set_EventLog, (EventLogTraceListener * __this, EventLog * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6C40, EventLogTraceListener_set_EventLog__MethodInfo); DO_APP_FUNC(0x0279A160, void, EventLogTraceListener_Write, (EventLogTraceListener * __this, String * message, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6BA0, EventLogTraceListener_Write__MethodInfo); DO_APP_FUNC(0x0279A190, void, EventLogTraceListener_WriteLine, (EventLogTraceListener * __this, String * message, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6BB0, EventLogTraceListener_WriteLine__MethodInfo); DO_APP_FUNC(0x0279A1C0, void, InstanceData__ctor, (InstanceData * __this, String * instanceName, CounterSample sample, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6BA8, InstanceData__ctor__MethodInfo); DO_APP_FUNC(0x0279A1F0, String *, InstanceData_get_InstanceName, (InstanceData * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6B90, InstanceData_get_InstanceName__MethodInfo); DO_APP_FUNC(0x0279A220, int64_t, InstanceData_get_RawValue, (InstanceData * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6B98, InstanceData_get_RawValue__MethodInfo); DO_APP_FUNC(0x0279A250, CounterSample, InstanceData_get_Sample, (InstanceData * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6BE8, InstanceData_get_Sample__MethodInfo); DO_APP_FUNC(0x0279A280, void, InstanceDataCollection__ctor, (InstanceDataCollection * __this, String * counterName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6BE0, InstanceDataCollection__ctor__MethodInfo); DO_APP_FUNC(0x0279A2B0, String *, InstanceDataCollection_get_CounterName, (InstanceDataCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6BF0, InstanceDataCollection_get_CounterName__MethodInfo); DO_APP_FUNC(0x0279A2E0, InstanceData *, InstanceDataCollection_get_Item, (InstanceDataCollection * __this, String * instanceName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6BB8, InstanceDataCollection_get_Item__MethodInfo); DO_APP_FUNC(0x0279A310, ICollection *, InstanceDataCollection_get_Keys, (InstanceDataCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6BC8, InstanceDataCollection_get_Keys__MethodInfo); DO_APP_FUNC(0x0279A340, ICollection *, InstanceDataCollection_get_Values, (InstanceDataCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6BC0, InstanceDataCollection_get_Values__MethodInfo); DO_APP_FUNC(0x0279A370, bool, InstanceDataCollection_Contains, (InstanceDataCollection * __this, String * instanceName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6B58, InstanceDataCollection_Contains__MethodInfo); DO_APP_FUNC(0x0279A3A0, void, InstanceDataCollection_CopyTo, (InstanceDataCollection * __this, InstanceData__Array * instances, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6B60, InstanceDataCollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0279A3D0, void, InstanceDataCollectionCollection__ctor, (InstanceDataCollectionCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6B48, InstanceDataCollectionCollection__ctor__MethodInfo); DO_APP_FUNC(0x0279A400, InstanceDataCollection *, InstanceDataCollectionCollection_get_Item, (InstanceDataCollectionCollection * __this, String * counterName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6B40, InstanceDataCollectionCollection_get_Item__MethodInfo); DO_APP_FUNC(0x0279A430, ICollection *, InstanceDataCollectionCollection_get_Keys, (InstanceDataCollectionCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6B50, InstanceDataCollectionCollection_get_Keys__MethodInfo); DO_APP_FUNC(0x0279A460, ICollection *, InstanceDataCollectionCollection_get_Values, (InstanceDataCollectionCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6B78, InstanceDataCollectionCollection_get_Values__MethodInfo); DO_APP_FUNC(0x0279A490, bool, InstanceDataCollectionCollection_Contains, (InstanceDataCollectionCollection * __this, String * counterName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6B88, InstanceDataCollectionCollection_Contains__MethodInfo); DO_APP_FUNC(0x0279A4C0, void, InstanceDataCollectionCollection_CopyTo, (InstanceDataCollectionCollection * __this, InstanceDataCollection__Array * counters, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6B80, InstanceDataCollectionCollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0279A4F0, void, PerformanceCounter__ctor, (PerformanceCounter * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6B68, PerformanceCounter__ctor__MethodInfo); DO_APP_FUNC(0x0279A520, void, PerformanceCounter__ctor_1, (PerformanceCounter * __this, String * categoryName, String * counterName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6B70, PerformanceCounter__ctor_1__MethodInfo); DO_APP_FUNC(0x0279A550, void, PerformanceCounter__ctor_2, (PerformanceCounter * __this, String * categoryName, String * counterName, bool readOnly, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6B00, PerformanceCounter__ctor_2__MethodInfo); DO_APP_FUNC(0x0279A580, void, PerformanceCounter__ctor_3, (PerformanceCounter * __this, String * categoryName, String * counterName, String * instanceName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6AF8, PerformanceCounter__ctor_3__MethodInfo); DO_APP_FUNC(0x0279A5B0, void, PerformanceCounter__ctor_4, (PerformanceCounter * __this, String * categoryName, String * counterName, String * instanceName, bool readOnly, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6B08, PerformanceCounter__ctor_4__MethodInfo); DO_APP_FUNC(0x0279A5E0, void, PerformanceCounter__ctor_5, (PerformanceCounter * __this, String * categoryName, String * counterName, String * instanceName, String * machineName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6AE0, PerformanceCounter__ctor_5__MethodInfo); DO_APP_FUNC(0x0279A610, String *, PerformanceCounter_get_CategoryName, (PerformanceCounter * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6AF0, PerformanceCounter_get_CategoryName__MethodInfo); DO_APP_FUNC(0x0279A640, void, PerformanceCounter_set_CategoryName, (PerformanceCounter * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6AE8, PerformanceCounter_set_CategoryName__MethodInfo); DO_APP_FUNC(0x0279A670, String *, PerformanceCounter_get_CounterHelp, (PerformanceCounter * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6B30, PerformanceCounter_get_CounterHelp__MethodInfo); DO_APP_FUNC(0x0279A6A0, String *, PerformanceCounter_get_CounterName, (PerformanceCounter * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6B38, PerformanceCounter_get_CounterName__MethodInfo); DO_APP_FUNC(0x0279A6D0, void, PerformanceCounter_set_CounterName, (PerformanceCounter * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6B20, PerformanceCounter_set_CounterName__MethodInfo); DO_APP_FUNC(0x0279A700, PerformanceCounterType__Enum, PerformanceCounter_get_CounterType, (PerformanceCounter * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6B10, PerformanceCounter_get_CounterType__MethodInfo); DO_APP_FUNC(0x0279A730, PerformanceCounterInstanceLifetime__Enum, PerformanceCounter_get_InstanceLifetime, (PerformanceCounter * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6B28, PerformanceCounter_get_InstanceLifetime__MethodInfo); DO_APP_FUNC(0x0279A760, void, PerformanceCounter_set_InstanceLifetime, (PerformanceCounter * __this, PerformanceCounterInstanceLifetime__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6A98, PerformanceCounter_set_InstanceLifetime__MethodInfo); DO_APP_FUNC(0x0279A790, String *, PerformanceCounter_get_InstanceName, (PerformanceCounter * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6AA8, PerformanceCounter_get_InstanceName__MethodInfo); DO_APP_FUNC(0x0279A7C0, void, PerformanceCounter_set_InstanceName, (PerformanceCounter * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6AA0, PerformanceCounter_set_InstanceName__MethodInfo); DO_APP_FUNC(0x0279A7F0, String *, PerformanceCounter_get_MachineName, (PerformanceCounter * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6A88, PerformanceCounter_get_MachineName__MethodInfo); DO_APP_FUNC(0x0279A820, void, PerformanceCounter_set_MachineName, (PerformanceCounter * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6A90, PerformanceCounter_set_MachineName__MethodInfo); DO_APP_FUNC(0x0279A850, int64_t, PerformanceCounter_get_RawValue, (PerformanceCounter * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6AD0, PerformanceCounter_get_RawValue__MethodInfo); DO_APP_FUNC(0x0279A880, void, PerformanceCounter_set_RawValue, (PerformanceCounter * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6AC8, PerformanceCounter_set_RawValue__MethodInfo); DO_APP_FUNC(0x0279A8B0, bool, PerformanceCounter_get_ReadOnly, (PerformanceCounter * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6AD8, PerformanceCounter_get_ReadOnly__MethodInfo); DO_APP_FUNC(0x0279A8E0, void, PerformanceCounter_set_ReadOnly, (PerformanceCounter * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6AB0, PerformanceCounter_set_ReadOnly__MethodInfo); DO_APP_FUNC(0x0279A910, void, PerformanceCounter_BeginInit, (PerformanceCounter * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6AC0, PerformanceCounter_BeginInit__MethodInfo); DO_APP_FUNC(0x0279A940, void, PerformanceCounter_Close, (PerformanceCounter * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6AB8, PerformanceCounter_Close__MethodInfo); DO_APP_FUNC(0x0279A970, void, PerformanceCounter_CloseSharedResources, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6A50, PerformanceCounter_CloseSharedResources__MethodInfo); DO_APP_FUNC(0x0279A9A0, int64_t, PerformanceCounter_Decrement, (PerformanceCounter * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6A58, PerformanceCounter_Decrement__MethodInfo); DO_APP_FUNC(0x0279A9D0, void, PerformanceCounter_EndInit, (PerformanceCounter * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6A40, PerformanceCounter_EndInit__MethodInfo); DO_APP_FUNC(0x0279AA00, int64_t, PerformanceCounter_Increment, (PerformanceCounter * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6A38, PerformanceCounter_Increment__MethodInfo); DO_APP_FUNC(0x0279AA30, int64_t, PerformanceCounter_IncrementBy, (PerformanceCounter * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6A48, PerformanceCounter_IncrementBy__MethodInfo); DO_APP_FUNC(0x0279AA60, CounterSample, PerformanceCounter_NextSample, (PerformanceCounter * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6A70, PerformanceCounter_NextSample__MethodInfo); DO_APP_FUNC(0x0279AA90, float, PerformanceCounter_NextValue, (PerformanceCounter * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6A80, PerformanceCounter_NextValue__MethodInfo); DO_APP_FUNC(0x0279AAC0, void, PerformanceCounter_RemoveInstance, (PerformanceCounter * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6A78, PerformanceCounter_RemoveInstance__MethodInfo); DO_APP_FUNC(0x0279AAF0, void, PerformanceCounterCategory__ctor, (PerformanceCounterCategory * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6A60, PerformanceCounterCategory__ctor__MethodInfo); DO_APP_FUNC(0x0279AB20, void, PerformanceCounterCategory__ctor_1, (PerformanceCounterCategory * __this, String * categoryName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6A68, PerformanceCounterCategory__ctor_1__MethodInfo); DO_APP_FUNC(0x0279AB50, void, PerformanceCounterCategory__ctor_2, (PerformanceCounterCategory * __this, String * categoryName, String * machineName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6A00, PerformanceCounterCategory__ctor_2__MethodInfo); DO_APP_FUNC(0x0279AB80, String *, PerformanceCounterCategory_get_CategoryHelp, (PerformanceCounterCategory * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE69F8, PerformanceCounterCategory_get_CategoryHelp__MethodInfo); DO_APP_FUNC(0x0279ABB0, String *, PerformanceCounterCategory_get_CategoryName, (PerformanceCounterCategory * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6A08, PerformanceCounterCategory_get_CategoryName__MethodInfo); DO_APP_FUNC(0x0279ABE0, void, PerformanceCounterCategory_set_CategoryName, (PerformanceCounterCategory * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE69E0, PerformanceCounterCategory_set_CategoryName__MethodInfo); DO_APP_FUNC(0x0279AC10, PerformanceCounterCategoryType__Enum, PerformanceCounterCategory_get_CategoryType, (PerformanceCounterCategory * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE69F0, PerformanceCounterCategory_get_CategoryType__MethodInfo); DO_APP_FUNC(0x0279AC40, String *, PerformanceCounterCategory_get_MachineName, (PerformanceCounterCategory * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE69E8, PerformanceCounterCategory_get_MachineName__MethodInfo); DO_APP_FUNC(0x0279AC70, void, PerformanceCounterCategory_set_MachineName, (PerformanceCounterCategory * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6A28, PerformanceCounterCategory_set_MachineName__MethodInfo); DO_APP_FUNC(0x0279ACA0, bool, PerformanceCounterCategory_CounterExists, (PerformanceCounterCategory * __this, String * counterName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6A30, PerformanceCounterCategory_CounterExists__MethodInfo); DO_APP_FUNC(0x0279ACD0, bool, PerformanceCounterCategory_CounterExists_1, (String * counterName, String * categoryName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6A18, PerformanceCounterCategory_CounterExists_1__MethodInfo); DO_APP_FUNC(0x0279AD00, bool, PerformanceCounterCategory_CounterExists_2, (String * counterName, String * categoryName, String * machineName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6A10, PerformanceCounterCategory_CounterExists_2__MethodInfo); DO_APP_FUNC(0x0279AD30, PerformanceCounterCategory *, PerformanceCounterCategory_Create, (String * categoryName, String * categoryHelp, CounterCreationDataCollection * counterData, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6A20, PerformanceCounterCategory_Create__MethodInfo); DO_APP_FUNC(0x0279AD60, PerformanceCounterCategory *, PerformanceCounterCategory_Create_1, (String * categoryName, String * categoryHelp, PerformanceCounterCategoryType__Enum categoryType, CounterCreationDataCollection * counterData, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6998, PerformanceCounterCategory_Create_1__MethodInfo); DO_APP_FUNC(0x0279AD90, PerformanceCounterCategory *, PerformanceCounterCategory_Create_2, (String * categoryName, String * categoryHelp, PerformanceCounterCategoryType__Enum categoryType, String * counterName, String * counterHelp, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE69A8, PerformanceCounterCategory_Create_2__MethodInfo); DO_APP_FUNC(0x0279ADC0, PerformanceCounterCategory *, PerformanceCounterCategory_Create_3, (String * categoryName, String * categoryHelp, String * counterName, String * counterHelp, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE69A0, PerformanceCounterCategory_Create_3__MethodInfo); DO_APP_FUNC(0x0279ADF0, void, PerformanceCounterCategory_Delete, (String * categoryName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6988, PerformanceCounterCategory_Delete__MethodInfo); DO_APP_FUNC(0x0279AE20, bool, PerformanceCounterCategory_Exists, (String * categoryName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6990, PerformanceCounterCategory_Exists__MethodInfo); DO_APP_FUNC(0x0279AE50, bool, PerformanceCounterCategory_Exists_1, (String * categoryName, String * machineName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE69D0, PerformanceCounterCategory_Exists_1__MethodInfo); DO_APP_FUNC(0x0279AE80, PerformanceCounterCategory__Array *, PerformanceCounterCategory_GetCategories, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE69C8, PerformanceCounterCategory_GetCategories__MethodInfo); DO_APP_FUNC(0x0279AEB0, PerformanceCounterCategory__Array *, PerformanceCounterCategory_GetCategories_1, (String * machineName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE69D8, PerformanceCounterCategory_GetCategories_1__MethodInfo); DO_APP_FUNC(0x0279AEE0, PerformanceCounter__Array *, PerformanceCounterCategory_GetCounters, (PerformanceCounterCategory * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE69B0, PerformanceCounterCategory_GetCounters__MethodInfo); DO_APP_FUNC(0x0279AF10, PerformanceCounter__Array *, PerformanceCounterCategory_GetCounters_1, (PerformanceCounterCategory * __this, String * instanceName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE69C0, PerformanceCounterCategory_GetCounters_1__MethodInfo); DO_APP_FUNC(0x0279AF40, String__Array *, PerformanceCounterCategory_GetInstanceNames, (PerformanceCounterCategory * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE69B8, PerformanceCounterCategory_GetInstanceNames__MethodInfo); DO_APP_FUNC(0x0279AF70, bool, PerformanceCounterCategory_InstanceExists, (PerformanceCounterCategory * __this, String * instanceName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6950, PerformanceCounterCategory_InstanceExists__MethodInfo); DO_APP_FUNC(0x0279AFA0, bool, PerformanceCounterCategory_InstanceExists_1, (String * instanceName, String * categoryName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6958, PerformanceCounterCategory_InstanceExists_1__MethodInfo); DO_APP_FUNC(0x0279AFD0, bool, PerformanceCounterCategory_InstanceExists_2, (String * instanceName, String * categoryName, String * machineName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6940, PerformanceCounterCategory_InstanceExists_2__MethodInfo); DO_APP_FUNC(0x0279B000, InstanceDataCollectionCollection *, PerformanceCounterCategory_ReadCategory, (PerformanceCounterCategory * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6938, PerformanceCounterCategory_ReadCategory__MethodInfo); DO_APP_FUNC(0x0279B030, void, PerformanceCounterManager__ctor, (PerformanceCounterManager * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6948, PerformanceCounterManager__ctor__MethodInfo); DO_APP_FUNC(0x0279B060, void, PerformanceCounterManager_System_Diagnostics_ICollectData_CloseData, (PerformanceCounterManager * __this, MethodInfo * method)); -DO_APP_FUNC(0x0279B090, void, PerformanceCounterManager_System_Diagnostics_ICollectData_CollectData, (PerformanceCounterManager * __this, int32_t callIdx, void * valueNamePtr, void * dataPtr, int32_t totalBytes, void * res, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6970, PerformanceCounterManager_System_Diagnostics_ICollectData_CloseData__MethodInfo); +DO_APP_FUNC(0x0279B090, void, PerformanceCounterManager_System_Diagnostics_ICollectData_CollectData, (PerformanceCounterManager * __this, int32_t callIdx, void * valueNamePtr, void * dataPtr, int32_t totalBytes, void * * res, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6980, PerformanceCounterManager_System_Diagnostics_ICollectData_CollectData__MethodInfo); DO_APP_FUNC(0x0279B0C0, void, PerformanceCounterPermission__ctor, (PerformanceCounterPermission * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6978, PerformanceCounterPermission__ctor__MethodInfo); DO_APP_FUNC(0x0279B0F0, void, PerformanceCounterPermission__ctor_1, (PerformanceCounterPermission * __this, PerformanceCounterPermissionAccess__Enum permissionAccess, String * machineName, String * categoryName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6960, PerformanceCounterPermission__ctor_1__MethodInfo); DO_APP_FUNC(0x0279B120, void, PerformanceCounterPermission__ctor_2, (PerformanceCounterPermission * __this, PerformanceCounterPermissionEntry__Array * permissionAccessEntries, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6968, PerformanceCounterPermission__ctor_2__MethodInfo); DO_APP_FUNC(0x0279B150, void, PerformanceCounterPermission__ctor_3, (PerformanceCounterPermission * __this, PermissionState__Enum state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6900, PerformanceCounterPermission__ctor_3__MethodInfo); DO_APP_FUNC(0x0279B180, PerformanceCounterPermissionEntryCollection *, PerformanceCounterPermission_get_PermissionEntries, (PerformanceCounterPermission * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE68F8, PerformanceCounterPermission_get_PermissionEntries__MethodInfo); DO_APP_FUNC(0x0279B1B0, void, PerformanceCounterPermissionEntry__ctor, (PerformanceCounterPermissionEntry * __this, PerformanceCounterPermissionAccess__Enum permissionAccess, String * machineName, String * categoryName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6908, PerformanceCounterPermissionEntry__ctor__MethodInfo); DO_APP_FUNC(0x0279B1E0, String *, PerformanceCounterPermissionEntry_get_CategoryName, (PerformanceCounterPermissionEntry * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE68E0, PerformanceCounterPermissionEntry_get_CategoryName__MethodInfo); DO_APP_FUNC(0x0279B210, String *, PerformanceCounterPermissionEntry_get_MachineName, (PerformanceCounterPermissionEntry * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE68F0, PerformanceCounterPermissionEntry_get_MachineName__MethodInfo); DO_APP_FUNC(0x0279B240, PerformanceCounterPermissionAccess__Enum, PerformanceCounterPermissionEntry_get_PermissionAccess, (PerformanceCounterPermissionEntry * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE68E8, PerformanceCounterPermissionEntry_get_PermissionAccess__MethodInfo); DO_APP_FUNC(0x0279B270, void, PerformanceCounterPermissionEntryCollection__ctor, (PerformanceCounterPermissionEntryCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6928, PerformanceCounterPermissionEntryCollection__ctor__MethodInfo); DO_APP_FUNC(0x0279B2A0, PerformanceCounterPermissionEntry *, PerformanceCounterPermissionEntryCollection_get_Item, (PerformanceCounterPermissionEntryCollection * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6930, PerformanceCounterPermissionEntryCollection_get_Item__MethodInfo); DO_APP_FUNC(0x0279B2D0, void, PerformanceCounterPermissionEntryCollection_set_Item, (PerformanceCounterPermissionEntryCollection * __this, int32_t index, PerformanceCounterPermissionEntry * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6918, PerformanceCounterPermissionEntryCollection_set_Item__MethodInfo); DO_APP_FUNC(0x0279B300, int32_t, PerformanceCounterPermissionEntryCollection_Add, (PerformanceCounterPermissionEntryCollection * __this, PerformanceCounterPermissionEntry * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6910, PerformanceCounterPermissionEntryCollection_Add__MethodInfo); DO_APP_FUNC(0x0279B330, void, PerformanceCounterPermissionEntryCollection_AddRange, (PerformanceCounterPermissionEntryCollection * __this, PerformanceCounterPermissionEntryCollection * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6920, PerformanceCounterPermissionEntryCollection_AddRange__MethodInfo); DO_APP_FUNC(0x0279B360, void, PerformanceCounterPermissionEntryCollection_AddRange_1, (PerformanceCounterPermissionEntryCollection * __this, PerformanceCounterPermissionEntry__Array * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6890, PerformanceCounterPermissionEntryCollection_AddRange_1__MethodInfo); DO_APP_FUNC(0x0279B390, bool, PerformanceCounterPermissionEntryCollection_Contains, (PerformanceCounterPermissionEntryCollection * __this, PerformanceCounterPermissionEntry * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE68A0, PerformanceCounterPermissionEntryCollection_Contains__MethodInfo); DO_APP_FUNC(0x0279B3C0, void, PerformanceCounterPermissionEntryCollection_CopyTo, (PerformanceCounterPermissionEntryCollection * __this, PerformanceCounterPermissionEntry__Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6898, PerformanceCounterPermissionEntryCollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0279B3F0, int32_t, PerformanceCounterPermissionEntryCollection_IndexOf, (PerformanceCounterPermissionEntryCollection * __this, PerformanceCounterPermissionEntry * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6870, PerformanceCounterPermissionEntryCollection_IndexOf__MethodInfo); DO_APP_FUNC(0x0279B420, void, PerformanceCounterPermissionEntryCollection_Insert, (PerformanceCounterPermissionEntryCollection * __this, int32_t index, PerformanceCounterPermissionEntry * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6878, PerformanceCounterPermissionEntryCollection_Insert__MethodInfo); DO_APP_FUNC(0x0279B450, void, PerformanceCounterPermissionEntryCollection_Remove, (PerformanceCounterPermissionEntryCollection * __this, PerformanceCounterPermissionEntry * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE68D0, PerformanceCounterPermissionEntryCollection_Remove__MethodInfo); DO_APP_FUNC(0x003AE050, void, PerformanceCounterPermissionAttribute__ctor, (PerformanceCounterPermissionAttribute * __this, SecurityAction__Enum action, MethodInfo * method)); DO_APP_FUNC(0x0279B480, String *, PerformanceCounterPermissionAttribute_get_CategoryName, (PerformanceCounterPermissionAttribute * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE68C8, PerformanceCounterPermissionAttribute_get_CategoryName__MethodInfo); DO_APP_FUNC(0x003AE050, void, PerformanceCounterPermissionAttribute_set_CategoryName, (PerformanceCounterPermissionAttribute * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x0279B4B0, String *, PerformanceCounterPermissionAttribute_get_MachineName, (PerformanceCounterPermissionAttribute * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE68D8, PerformanceCounterPermissionAttribute_get_MachineName__MethodInfo); DO_APP_FUNC(0x003AE050, void, PerformanceCounterPermissionAttribute_set_MachineName, (PerformanceCounterPermissionAttribute * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x0279B4E0, PerformanceCounterPermissionAccess__Enum, PerformanceCounterPermissionAttribute_get_PermissionAccess, (PerformanceCounterPermissionAttribute * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE68B0, PerformanceCounterPermissionAttribute_get_PermissionAccess__MethodInfo); DO_APP_FUNC(0x003AE050, void, PerformanceCounterPermissionAttribute_set_PermissionAccess, (PerformanceCounterPermissionAttribute * __this, PerformanceCounterPermissionAccess__Enum value, MethodInfo * method)); DO_APP_FUNC(0x0279B510, IPermission *, PerformanceCounterPermissionAttribute_CreatePermission, (PerformanceCounterPermissionAttribute * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE68C0, PerformanceCounterPermissionAttribute_CreatePermission__MethodInfo); DO_APP_FUNC(0x0279B540, void, XmlWriterTraceListener__ctor, (XmlWriterTraceListener * __this, Stream * stream, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE68B8, XmlWriterTraceListener__ctor__MethodInfo); DO_APP_FUNC(0x0279B570, void, XmlWriterTraceListener__ctor_1, (XmlWriterTraceListener * __this, Stream * stream, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6838, XmlWriterTraceListener__ctor_1__MethodInfo); DO_APP_FUNC(0x0279B5A0, void, XmlWriterTraceListener__ctor_2, (XmlWriterTraceListener * __this, TextWriter * writer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6840, XmlWriterTraceListener__ctor_2__MethodInfo); DO_APP_FUNC(0x0279B5D0, void, XmlWriterTraceListener__ctor_3, (XmlWriterTraceListener * __this, TextWriter * writer, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6828, XmlWriterTraceListener__ctor_3__MethodInfo); DO_APP_FUNC(0x0279B600, void, XmlWriterTraceListener__ctor_4, (XmlWriterTraceListener * __this, String * filename, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6820, XmlWriterTraceListener__ctor_4__MethodInfo); DO_APP_FUNC(0x0279B630, void, XmlWriterTraceListener__ctor_5, (XmlWriterTraceListener * __this, String * filename, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6830, XmlWriterTraceListener__ctor_5__MethodInfo); DO_APP_FUNC(0x003AE050, void, ApplicationScopedSettingAttribute__ctor, (ApplicationScopedSettingAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SettingAttribute__ctor, (SettingAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x0279B660, void, ApplicationSettingsBase__ctor, (ApplicationSettingsBase * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6858, ApplicationSettingsBase__ctor__MethodInfo); DO_APP_FUNC(0x0279B690, void, ApplicationSettingsBase__ctor_1, (ApplicationSettingsBase * __this, IComponent * owner, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6868, ApplicationSettingsBase__ctor_1__MethodInfo); DO_APP_FUNC(0x0279B6C0, void, ApplicationSettingsBase__ctor_2, (ApplicationSettingsBase * __this, IComponent * owner, String * settingsKey, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6860, ApplicationSettingsBase__ctor_2__MethodInfo); DO_APP_FUNC(0x0279B6F0, void, ApplicationSettingsBase__ctor_3, (ApplicationSettingsBase * __this, String * settingsKey, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6848, ApplicationSettingsBase__ctor_3__MethodInfo); DO_APP_FUNC(0x0279B720, SettingsContext *, ApplicationSettingsBase_get_Context, (ApplicationSettingsBase * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6850, ApplicationSettingsBase_get_Context__MethodInfo); DO_APP_FUNC(0x0279B750, Object *, ApplicationSettingsBase_get_Item, (ApplicationSettingsBase * __this, String * propertyName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE67E0, ApplicationSettingsBase_get_Item__MethodInfo); DO_APP_FUNC(0x0279B780, void, ApplicationSettingsBase_set_Item, (ApplicationSettingsBase * __this, String * propertyName, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE67D8, ApplicationSettingsBase_set_Item__MethodInfo); DO_APP_FUNC(0x0279B7B0, SettingsPropertyCollection *, ApplicationSettingsBase_get_Properties, (ApplicationSettingsBase * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE67E8, ApplicationSettingsBase_get_Properties__MethodInfo); DO_APP_FUNC(0x0279B7E0, SettingsPropertyValueCollection *, ApplicationSettingsBase_get_PropertyValues, (ApplicationSettingsBase * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE67C0, ApplicationSettingsBase_get_PropertyValues__MethodInfo); DO_APP_FUNC(0x0279B810, SettingsProviderCollection *, ApplicationSettingsBase_get_Providers, (ApplicationSettingsBase * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE67D0, ApplicationSettingsBase_get_Providers__MethodInfo); DO_APP_FUNC(0x0279B840, String *, ApplicationSettingsBase_get_SettingsKey, (ApplicationSettingsBase * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE67C8, ApplicationSettingsBase_get_SettingsKey__MethodInfo); DO_APP_FUNC(0x0279B870, void, ApplicationSettingsBase_set_SettingsKey, (ApplicationSettingsBase * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6810, ApplicationSettingsBase_set_SettingsKey__MethodInfo); DO_APP_FUNC(0x0279B8A0, void, ApplicationSettingsBase_add_PropertyChanged, (ApplicationSettingsBase * __this, PropertyChangedEventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6818, ApplicationSettingsBase_add_PropertyChanged__MethodInfo); DO_APP_FUNC(0x0279B8D0, void, ApplicationSettingsBase_remove_PropertyChanged, (ApplicationSettingsBase * __this, PropertyChangedEventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6800, ApplicationSettingsBase_remove_PropertyChanged__MethodInfo); DO_APP_FUNC(0x0279B900, void, ApplicationSettingsBase_add_SettingChanging, (ApplicationSettingsBase * __this, SettingChangingEventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE67F8, ApplicationSettingsBase_add_SettingChanging__MethodInfo); DO_APP_FUNC(0x0279B930, void, ApplicationSettingsBase_remove_SettingChanging, (ApplicationSettingsBase * __this, SettingChangingEventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6808, ApplicationSettingsBase_remove_SettingChanging__MethodInfo); DO_APP_FUNC(0x0279B960, void, ApplicationSettingsBase_add_SettingsLoaded, (ApplicationSettingsBase * __this, SettingsLoadedEventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6768, ApplicationSettingsBase_add_SettingsLoaded__MethodInfo); DO_APP_FUNC(0x0279B990, void, ApplicationSettingsBase_remove_SettingsLoaded, (ApplicationSettingsBase * __this, SettingsLoadedEventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6778, ApplicationSettingsBase_remove_SettingsLoaded__MethodInfo); DO_APP_FUNC(0x0279B9C0, void, ApplicationSettingsBase_add_SettingsSaving, (ApplicationSettingsBase * __this, SettingsSavingEventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6770, ApplicationSettingsBase_add_SettingsSaving__MethodInfo); DO_APP_FUNC(0x0279B9F0, void, ApplicationSettingsBase_remove_SettingsSaving, (ApplicationSettingsBase * __this, SettingsSavingEventHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6758, ApplicationSettingsBase_remove_SettingsSaving__MethodInfo); DO_APP_FUNC(0x0279BA20, Object *, ApplicationSettingsBase_GetPreviousVersion, (ApplicationSettingsBase * __this, String * propertyName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6760, ApplicationSettingsBase_GetPreviousVersion__MethodInfo); DO_APP_FUNC(0x0279BA50, void, ApplicationSettingsBase_OnPropertyChanged, (ApplicationSettingsBase * __this, Object * sender, PropertyChangedEventArgs * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE67B0, ApplicationSettingsBase_OnPropertyChanged__MethodInfo); DO_APP_FUNC(0x0279BA80, void, ApplicationSettingsBase_OnSettingChanging, (ApplicationSettingsBase * __this, Object * sender, SettingChangingEventArgs * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE67A8, ApplicationSettingsBase_OnSettingChanging__MethodInfo); DO_APP_FUNC(0x0279BAB0, void, ApplicationSettingsBase_OnSettingsLoaded, (ApplicationSettingsBase * __this, Object * sender, SettingsLoadedEventArgs * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE67B8, ApplicationSettingsBase_OnSettingsLoaded__MethodInfo); DO_APP_FUNC(0x0279BAE0, void, ApplicationSettingsBase_OnSettingsSaving, (ApplicationSettingsBase * __this, Object * sender, CancelEventArgs * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6788, ApplicationSettingsBase_OnSettingsSaving__MethodInfo); DO_APP_FUNC(0x0279BB10, void, ApplicationSettingsBase_Reload, (ApplicationSettingsBase * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE67A0, ApplicationSettingsBase_Reload__MethodInfo); DO_APP_FUNC(0x0279BB40, void, ApplicationSettingsBase_Reset, (ApplicationSettingsBase * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6790, ApplicationSettingsBase_Reset__MethodInfo); DO_APP_FUNC(0x0279BB70, void, ApplicationSettingsBase_Save, (ApplicationSettingsBase * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6720, ApplicationSettingsBase_Save__MethodInfo); DO_APP_FUNC(0x0279BBA0, void, ApplicationSettingsBase_Upgrade, (ApplicationSettingsBase * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6728, ApplicationSettingsBase_Upgrade__MethodInfo); DO_APP_FUNC(0x0279BBD0, void, SettingChangingEventHandler__ctor, (SettingChangingEventHandler * __this, Object * object, void * method_1, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6710, SettingChangingEventHandler__ctor__MethodInfo); DO_APP_FUNC(0x0279BC00, void, SettingChangingEventHandler_Invoke, (SettingChangingEventHandler * __this, Object * sender, SettingChangingEventArgs * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6708, SettingChangingEventHandler_Invoke__MethodInfo); DO_APP_FUNC(0x0279BC30, IAsyncResult *, SettingChangingEventHandler_BeginInvoke, (SettingChangingEventHandler * __this, Object * sender, SettingChangingEventArgs * e, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6718, SettingChangingEventHandler_BeginInvoke__MethodInfo); DO_APP_FUNC(0x0279BC60, void, SettingChangingEventHandler_EndInvoke, (SettingChangingEventHandler * __this, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6740, SettingChangingEventHandler_EndInvoke__MethodInfo); DO_APP_FUNC(0x0279BC90, void, SettingChangingEventArgs__ctor, (SettingChangingEventArgs * __this, String * settingName, String * settingClass, String * settingKey, Object * newValue, bool cancel, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6750, SettingChangingEventArgs__ctor__MethodInfo); DO_APP_FUNC(0x0279BCC0, Object *, SettingChangingEventArgs_get_NewValue, (SettingChangingEventArgs * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6748, SettingChangingEventArgs_get_NewValue__MethodInfo); DO_APP_FUNC(0x0279BCF0, String *, SettingChangingEventArgs_get_SettingClass, (SettingChangingEventArgs * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6730, SettingChangingEventArgs_get_SettingClass__MethodInfo); DO_APP_FUNC(0x0279BD20, String *, SettingChangingEventArgs_get_SettingKey, (SettingChangingEventArgs * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6738, SettingChangingEventArgs_get_SettingKey__MethodInfo); DO_APP_FUNC(0x0279BD50, String *, SettingChangingEventArgs_get_SettingName, (SettingChangingEventArgs * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE66D0, SettingChangingEventArgs_get_SettingName__MethodInfo); DO_APP_FUNC(0x0279BD80, void, SettingsLoadedEventHandler__ctor, (SettingsLoadedEventHandler * __this, Object * object, void * method_1, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE66C8, SettingsLoadedEventHandler__ctor__MethodInfo); DO_APP_FUNC(0x0279BDB0, void, SettingsLoadedEventHandler_Invoke, (SettingsLoadedEventHandler * __this, Object * sender, SettingsLoadedEventArgs * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE66D8, SettingsLoadedEventHandler_Invoke__MethodInfo); DO_APP_FUNC(0x0279BDE0, IAsyncResult *, SettingsLoadedEventHandler_BeginInvoke, (SettingsLoadedEventHandler * __this, Object * sender, SettingsLoadedEventArgs * e, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE66B0, SettingsLoadedEventHandler_BeginInvoke__MethodInfo); DO_APP_FUNC(0x0279BE10, void, SettingsLoadedEventHandler_EndInvoke, (SettingsLoadedEventHandler * __this, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE66C0, SettingsLoadedEventHandler_EndInvoke__MethodInfo); DO_APP_FUNC(0x0279BE40, void, SettingsLoadedEventArgs__ctor, (SettingsLoadedEventArgs * __this, SettingsProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE66B8, SettingsLoadedEventArgs__ctor__MethodInfo); DO_APP_FUNC(0x0279BE70, SettingsProvider *, SettingsLoadedEventArgs_get_Provider, (SettingsLoadedEventArgs * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE66F8, SettingsLoadedEventArgs_get_Provider__MethodInfo); DO_APP_FUNC(0x0279BEA0, void, SettingsSavingEventHandler__ctor, (SettingsSavingEventHandler * __this, Object * object, void * method_1, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6700, SettingsSavingEventHandler__ctor__MethodInfo); DO_APP_FUNC(0x0279BED0, void, SettingsSavingEventHandler_Invoke, (SettingsSavingEventHandler * __this, Object * sender, CancelEventArgs * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE66E8, SettingsSavingEventHandler_Invoke__MethodInfo); DO_APP_FUNC(0x0279BF00, IAsyncResult *, SettingsSavingEventHandler_BeginInvoke, (SettingsSavingEventHandler * __this, Object * sender, CancelEventArgs * e, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE66E0, SettingsSavingEventHandler_BeginInvoke__MethodInfo); DO_APP_FUNC(0x0279BF30, void, SettingsSavingEventHandler_EndInvoke, (SettingsSavingEventHandler * __this, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE66F0, SettingsSavingEventHandler_EndInvoke__MethodInfo); DO_APP_FUNC(0x0279BF60, void, ApplicationSettingsGroup__ctor, (ApplicationSettingsGroup * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6668, ApplicationSettingsGroup__ctor__MethodInfo); DO_APP_FUNC(0x0279BF90, void, AppSettingsReader__ctor, (AppSettingsReader * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6678, AppSettingsReader__ctor__MethodInfo); DO_APP_FUNC(0x0279BFC0, Object *, AppSettingsReader_GetValue, (AppSettingsReader * __this, String * key, Type * type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6670, AppSettingsReader_GetValue__MethodInfo); DO_APP_FUNC(0x0279BFF0, void, ClientSettingsSection__ctor, (ClientSettingsSection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6658, ClientSettingsSection__ctor__MethodInfo); DO_APP_FUNC(0x0279C020, ConfigurationPropertyCollection *, ClientSettingsSection_get_Properties, (ClientSettingsSection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6660, ClientSettingsSection_get_Properties__MethodInfo); DO_APP_FUNC(0x0279C050, SettingElementCollection *, ClientSettingsSection_get_Settings, (ClientSettingsSection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE66A0, ClientSettingsSection_get_Settings__MethodInfo); DO_APP_FUNC(0x0279C080, void, SettingElementCollection__ctor, (SettingElementCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6698, SettingElementCollection__ctor__MethodInfo); DO_APP_FUNC(0x0279C0B0, ConfigurationElementCollectionType__Enum, SettingElementCollection_get_CollectionType, (SettingElementCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE66A8, SettingElementCollection_get_CollectionType__MethodInfo); DO_APP_FUNC(0x0279C0E0, String *, SettingElementCollection_get_ElementName, (SettingElementCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6680, SettingElementCollection_get_ElementName__MethodInfo); DO_APP_FUNC(0x0279C110, void, SettingElementCollection_Add, (SettingElementCollection * __this, SettingElement * element, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6690, SettingElementCollection_Add__MethodInfo); DO_APP_FUNC(0x0279C140, void, SettingElementCollection_Clear, (SettingElementCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6688, SettingElementCollection_Clear__MethodInfo); DO_APP_FUNC(0x0279C170, ConfigurationElement *, SettingElementCollection_CreateNewElement, (SettingElementCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6648, SettingElementCollection_CreateNewElement__MethodInfo); DO_APP_FUNC(0x0279C1A0, SettingElement *, SettingElementCollection_Get, (SettingElementCollection * __this, String * elementKey, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6650, SettingElementCollection_Get__MethodInfo); DO_APP_FUNC(0x0279C1D0, Object *, SettingElementCollection_GetElementKey, (SettingElementCollection * __this, ConfigurationElement * element, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6640, SettingElementCollection_GetElementKey__MethodInfo); DO_APP_FUNC(0x0279C200, void, SettingElementCollection_Remove, (SettingElementCollection * __this, SettingElement * element, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6638, SettingElementCollection_Remove__MethodInfo); DO_APP_FUNC(0x0279C230, void, SettingElement__ctor, (SettingElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED078, SettingElement__ctor__MethodInfo); DO_APP_FUNC(0x0279C260, void, SettingElement__ctor_1, (SettingElement * __this, String * name, SettingsSerializeAs__Enum serializeAs, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED070, SettingElement__ctor_1__MethodInfo); DO_APP_FUNC(0x0279C290, String *, SettingElement_get_Name, (SettingElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED080, SettingElement_get_Name__MethodInfo); DO_APP_FUNC(0x0279C2C0, void, SettingElement_set_Name, (SettingElement * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED098, SettingElement_set_Name__MethodInfo); DO_APP_FUNC(0x0279C2F0, ConfigurationPropertyCollection *, SettingElement_get_Properties, (SettingElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED0A8, SettingElement_get_Properties__MethodInfo); DO_APP_FUNC(0x0279C320, SettingsSerializeAs__Enum, SettingElement_get_SerializeAs, (SettingElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED0A0, SettingElement_get_SerializeAs__MethodInfo); DO_APP_FUNC(0x0279C350, void, SettingElement_set_SerializeAs, (SettingElement * __this, SettingsSerializeAs__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED088, SettingElement_set_SerializeAs__MethodInfo); DO_APP_FUNC(0x0279C380, SettingValueElement *, SettingElement_get_Value, (SettingElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED090, SettingElement_get_Value__MethodInfo); DO_APP_FUNC(0x0279C3B0, void, SettingElement_set_Value, (SettingElement * __this, SettingValueElement * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED038, SettingElement_set_Value__MethodInfo); DO_APP_FUNC(0x0279C3E0, void, SettingValueElement__ctor, (SettingValueElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED030, SettingValueElement__ctor__MethodInfo); DO_APP_FUNC(0x0279C410, ConfigurationPropertyCollection *, SettingValueElement_get_Properties, (SettingValueElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED040, SettingValueElement_get_Properties__MethodInfo); DO_APP_FUNC(0x0279C440, XmlNode *, SettingValueElement_get_ValueXml, (SettingValueElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED018, SettingValueElement_get_ValueXml__MethodInfo); DO_APP_FUNC(0x0279C470, void, SettingValueElement_set_ValueXml, (SettingValueElement * __this, XmlNode * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED028, SettingValueElement_set_ValueXml__MethodInfo); DO_APP_FUNC(0x0279C4A0, void, SettingValueElement_DeserializeElement, (SettingValueElement * __this, XmlReader * reader, bool serializeCollectionKey, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED020, SettingValueElement_DeserializeElement__MethodInfo); DO_APP_FUNC(0x0279C4D0, bool, SettingValueElement_IsModified, (SettingValueElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED060, SettingValueElement_IsModified__MethodInfo); DO_APP_FUNC(0x0279C500, void, SettingValueElement_Reset, (SettingValueElement * __this, ConfigurationElement * parentElement, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED068, SettingValueElement_Reset__MethodInfo); DO_APP_FUNC(0x0279C530, void, SettingValueElement_ResetModified, (SettingValueElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED050, SettingValueElement_ResetModified__MethodInfo); DO_APP_FUNC(0x0279C560, bool, SettingValueElement_SerializeToXmlElement, (SettingValueElement * __this, XmlWriter * writer, String * elementName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED048, SettingValueElement_SerializeToXmlElement__MethodInfo); DO_APP_FUNC(0x0279C590, void, SettingValueElement_Unmerge, (SettingValueElement * __this, ConfigurationElement * sourceElement, ConfigurationElement * parentElement, ConfigurationSaveMode__Enum saveMode, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED058, SettingValueElement_Unmerge__MethodInfo); DO_APP_FUNC(0x0279C5C0, void, ConfigurationSettings__ctor, (ConfigurationSettings * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECFD0, ConfigurationSettings__ctor__MethodInfo); DO_APP_FUNC(0x0279C5F0, NameValueCollection *, ConfigurationSettings_get_AppSettings, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECFE0, ConfigurationSettings_get_AppSettings__MethodInfo); DO_APP_FUNC(0x0279C620, Object *, ConfigurationSettings_GetConfig, (String * sectionName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECFD8, ConfigurationSettings_GetConfig__MethodInfo); DO_APP_FUNC(0x0279C650, void, ConfigXmlDocument__ctor, (ConfigXmlDocument * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECFC0, ConfigXmlDocument__ctor__MethodInfo); DO_APP_FUNC(0x0279C680, String *, ConfigXmlDocument_get_Filename, (ConfigXmlDocument * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECFC8, ConfigXmlDocument_get_Filename__MethodInfo); DO_APP_FUNC(0x0279C6B0, int32_t, ConfigXmlDocument_get_LineNumber, (ConfigXmlDocument * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED008, ConfigXmlDocument_get_LineNumber__MethodInfo); DO_APP_FUNC(0x0279C6E0, String *, ConfigXmlDocument_System_Configuration_Internal_IConfigErrorInfo_get_Filename, (ConfigXmlDocument * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED000, ConfigXmlDocument_System_Configuration_Internal_IConfigErrorInfo_get_Filename__MethodInfo); DO_APP_FUNC(0x0279C710, int32_t, ConfigXmlDocument_System_Configuration_Internal_IConfigErrorInfo_get_LineNumber, (ConfigXmlDocument * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED010, ConfigXmlDocument_System_Configuration_Internal_IConfigErrorInfo_get_LineNumber__MethodInfo); DO_APP_FUNC(0x0279C740, void, ConfigXmlDocument_LoadSingleElement, (ConfigXmlDocument * __this, String * filename, XmlTextReader * sourceReader, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECFE8, ConfigXmlDocument_LoadSingleElement__MethodInfo); DO_APP_FUNC(0x003AE050, void, DefaultSettingValueAttribute__ctor, (DefaultSettingValueAttribute * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x0279C770, String *, DefaultSettingValueAttribute_get_Value, (DefaultSettingValueAttribute * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECFF8, DefaultSettingValueAttribute_get_Value__MethodInfo); DO_APP_FUNC(0x0279C7A0, void, DictionarySectionHandler__ctor, (DictionarySectionHandler * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECFF0, DictionarySectionHandler__ctor__MethodInfo); DO_APP_FUNC(0x0279C7D0, String *, DictionarySectionHandler_get_KeyAttributeName, (DictionarySectionHandler * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECF88, DictionarySectionHandler_get_KeyAttributeName__MethodInfo); DO_APP_FUNC(0x0279C800, String *, DictionarySectionHandler_get_ValueAttributeName, (DictionarySectionHandler * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECF90, DictionarySectionHandler_get_ValueAttributeName__MethodInfo); DO_APP_FUNC(0x0279C830, Object *, DictionarySectionHandler_Create, (DictionarySectionHandler * __this, Object * parent, Object * context, XmlNode * section, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECF78, DictionarySectionHandler_Create__MethodInfo); DO_APP_FUNC(0x0279C860, void, IdnElement__ctor, (IdnElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECF70, IdnElement__ctor__MethodInfo); DO_APP_FUNC(0x0279C890, UriIdnScope__Enum, IdnElement_get_Enabled, (IdnElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECF80, IdnElement_get_Enabled__MethodInfo); DO_APP_FUNC(0x0279C8C0, void, IdnElement_set_Enabled, (IdnElement * __this, UriIdnScope__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECFA8, IdnElement_set_Enabled__MethodInfo); DO_APP_FUNC(0x0279C8F0, ConfigurationPropertyCollection *, IdnElement_get_Properties, (IdnElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECFB8, IdnElement_get_Properties__MethodInfo); DO_APP_FUNC(0x0279C920, void, IgnoreSectionHandler__ctor, (IgnoreSectionHandler * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECFB0, IgnoreSectionHandler__ctor__MethodInfo); DO_APP_FUNC(0x0279C950, Object *, IgnoreSectionHandler_Create, (IgnoreSectionHandler * __this, Object * parent, Object * configContext, XmlNode * section, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECF98, IgnoreSectionHandler_Create__MethodInfo); DO_APP_FUNC(0x0279C980, void, IriParsingElement__ctor, (IriParsingElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECFA0, IriParsingElement__ctor__MethodInfo); DO_APP_FUNC(0x0279C9B0, bool, IriParsingElement_get_Enabled, (IriParsingElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECF38, IriParsingElement_get_Enabled__MethodInfo); DO_APP_FUNC(0x0279C9E0, void, IriParsingElement_set_Enabled, (IriParsingElement * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECF30, IriParsingElement_set_Enabled__MethodInfo); DO_APP_FUNC(0x0279CA10, ConfigurationPropertyCollection *, IriParsingElement_get_Properties, (IriParsingElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECF40, IriParsingElement_get_Properties__MethodInfo); DO_APP_FUNC(0x0279CA40, void, LocalFileSettingsProvider__ctor, (LocalFileSettingsProvider * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECF18, LocalFileSettingsProvider__ctor__MethodInfo); DO_APP_FUNC(0x0279CA70, String *, LocalFileSettingsProvider_get_ApplicationName, (LocalFileSettingsProvider * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECF28, LocalFileSettingsProvider_get_ApplicationName__MethodInfo); DO_APP_FUNC(0x0279CAA0, void, LocalFileSettingsProvider_set_ApplicationName, (LocalFileSettingsProvider * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECF20, LocalFileSettingsProvider_set_ApplicationName__MethodInfo); DO_APP_FUNC(0x0279CAD0, SettingsPropertyValue *, LocalFileSettingsProvider_GetPreviousVersion, (LocalFileSettingsProvider * __this, SettingsContext * context, SettingsProperty * property, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECF60, LocalFileSettingsProvider_GetPreviousVersion__MethodInfo); DO_APP_FUNC(0x0279CB00, SettingsPropertyValueCollection *, LocalFileSettingsProvider_GetPropertyValues, (LocalFileSettingsProvider * __this, SettingsContext * context, SettingsPropertyCollection * properties, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECF68, LocalFileSettingsProvider_GetPropertyValues__MethodInfo); DO_APP_FUNC(0x0279CB30, void, LocalFileSettingsProvider_Initialize, (LocalFileSettingsProvider * __this, String * name, NameValueCollection * values, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECF50, LocalFileSettingsProvider_Initialize__MethodInfo); DO_APP_FUNC(0x0279CB60, void, LocalFileSettingsProvider_Reset, (LocalFileSettingsProvider * __this, SettingsContext * context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECF48, LocalFileSettingsProvider_Reset__MethodInfo); DO_APP_FUNC(0x0279CB90, void, LocalFileSettingsProvider_SetPropertyValues, (LocalFileSettingsProvider * __this, SettingsContext * context, SettingsPropertyValueCollection * values, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECF58, LocalFileSettingsProvider_SetPropertyValues__MethodInfo); DO_APP_FUNC(0x0279CBC0, void, LocalFileSettingsProvider_Upgrade, (LocalFileSettingsProvider * __this, SettingsContext * context, SettingsPropertyCollection * properties, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECED0, LocalFileSettingsProvider_Upgrade__MethodInfo); DO_APP_FUNC(0x0279CBF0, void, NameValueFileSectionHandler__ctor, (NameValueFileSectionHandler * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECEE0, NameValueFileSectionHandler__ctor__MethodInfo); DO_APP_FUNC(0x0279CC20, Object *, NameValueFileSectionHandler_Create, (NameValueFileSectionHandler * __this, Object * parent, Object * configContext, XmlNode * section, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECED8, NameValueFileSectionHandler_Create__MethodInfo); DO_APP_FUNC(0x0279CC50, void, NameValueSectionHandler__ctor, (NameValueSectionHandler * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECEC0, NameValueSectionHandler__ctor__MethodInfo); DO_APP_FUNC(0x0279CC80, String *, NameValueSectionHandler_get_KeyAttributeName, (NameValueSectionHandler * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECEC8, NameValueSectionHandler_get_KeyAttributeName__MethodInfo); DO_APP_FUNC(0x0279CCB0, String *, NameValueSectionHandler_get_ValueAttributeName, (NameValueSectionHandler * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECF08, NameValueSectionHandler_get_ValueAttributeName__MethodInfo); DO_APP_FUNC(0x0279CCE0, Object *, NameValueSectionHandler_Create, (NameValueSectionHandler * __this, Object * parent, Object * context, XmlNode * section, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECF00, NameValueSectionHandler_Create__MethodInfo); DO_APP_FUNC(0x003AE050, void, NoSettingsVersionUpgradeAttribute__ctor, (NoSettingsVersionUpgradeAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x0279CD10, void, SchemeSettingElement__ctor, (SchemeSettingElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECF10, SchemeSettingElement__ctor__MethodInfo); DO_APP_FUNC(0x0279CD40, GenericUriParserOptions__Enum, SchemeSettingElement_get_GenericUriParserOptions, (SchemeSettingElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECEE8, SchemeSettingElement_get_GenericUriParserOptions__MethodInfo); DO_APP_FUNC(0x0279CD70, String *, SchemeSettingElement_get_Name, (SchemeSettingElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECEF8, SchemeSettingElement_get_Name__MethodInfo); DO_APP_FUNC(0x0279CDA0, ConfigurationPropertyCollection *, SchemeSettingElement_get_Properties, (SchemeSettingElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECEF0, SchemeSettingElement_get_Properties__MethodInfo); DO_APP_FUNC(0x0279CDD0, void, SchemeSettingElementCollection__ctor, (SchemeSettingElementCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECE88, SchemeSettingElementCollection__ctor__MethodInfo); DO_APP_FUNC(0x0279CE00, ConfigurationElementCollectionType__Enum, SchemeSettingElementCollection_get_CollectionType, (SchemeSettingElementCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECE90, SchemeSettingElementCollection_get_CollectionType__MethodInfo); DO_APP_FUNC(0x0279CE30, SchemeSettingElement *, SchemeSettingElementCollection_get_Item, (SchemeSettingElementCollection * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECE78, SchemeSettingElementCollection_get_Item__MethodInfo); DO_APP_FUNC(0x0279CE60, SchemeSettingElement *, SchemeSettingElementCollection_get_Item_1, (SchemeSettingElementCollection * __this, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECE70, SchemeSettingElementCollection_get_Item_1__MethodInfo); DO_APP_FUNC(0x0279CE90, ConfigurationElement *, SchemeSettingElementCollection_CreateNewElement, (SchemeSettingElementCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECE80, SchemeSettingElementCollection_CreateNewElement__MethodInfo); DO_APP_FUNC(0x0279CEC0, Object *, SchemeSettingElementCollection_GetElementKey, (SchemeSettingElementCollection * __this, ConfigurationElement * element, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECEA8, SchemeSettingElementCollection_GetElementKey__MethodInfo); DO_APP_FUNC(0x0279CEF0, int32_t, SchemeSettingElementCollection_IndexOf, (SchemeSettingElementCollection * __this, SchemeSettingElement * element, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECEB8, SchemeSettingElementCollection_IndexOf__MethodInfo); DO_APP_FUNC(0x003AE050, void, SettingsDescriptionAttribute__ctor, (SettingsDescriptionAttribute * __this, String * description, MethodInfo * method)); DO_APP_FUNC(0x0279CF20, String *, SettingsDescriptionAttribute_get_Description, (SettingsDescriptionAttribute * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECEB0, SettingsDescriptionAttribute_get_Description__MethodInfo); DO_APP_FUNC(0x003AE050, void, SettingsGroupDescriptionAttribute__ctor, (SettingsGroupDescriptionAttribute * __this, String * description, MethodInfo * method)); DO_APP_FUNC(0x0279CF50, String *, SettingsGroupDescriptionAttribute_get_Description, (SettingsGroupDescriptionAttribute * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECE98, SettingsGroupDescriptionAttribute_get_Description__MethodInfo); DO_APP_FUNC(0x003AE050, void, SettingsGroupNameAttribute__ctor, (SettingsGroupNameAttribute * __this, String * groupName, MethodInfo * method)); DO_APP_FUNC(0x0279CF80, String *, SettingsGroupNameAttribute_get_GroupName, (SettingsGroupNameAttribute * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECEA0, SettingsGroupNameAttribute_get_GroupName__MethodInfo); DO_APP_FUNC(0x003AE050, void, SettingsManageabilityAttribute__ctor, (SettingsManageabilityAttribute * __this, SettingsManageability__Enum manageability, MethodInfo * method)); DO_APP_FUNC(0x0279CFB0, SettingsManageability__Enum, SettingsManageabilityAttribute_get_Manageability, (SettingsManageabilityAttribute * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECE38, SettingsManageabilityAttribute_get_Manageability__MethodInfo); DO_APP_FUNC(0x0279CFE0, void, SettingsPropertyIsReadOnlyException__ctor, (SettingsPropertyIsReadOnlyException * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECE30, SettingsPropertyIsReadOnlyException__ctor__MethodInfo); DO_APP_FUNC(0x0279D010, void, SettingsPropertyIsReadOnlyException__ctor_1, (SettingsPropertyIsReadOnlyException * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECE40, SettingsPropertyIsReadOnlyException__ctor_1__MethodInfo); DO_APP_FUNC(0x0279D040, void, SettingsPropertyIsReadOnlyException__ctor_2, (SettingsPropertyIsReadOnlyException * __this, String * message, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECE18, SettingsPropertyIsReadOnlyException__ctor_2__MethodInfo); DO_APP_FUNC(0x0279D070, void, SettingsPropertyIsReadOnlyException__ctor_3, (SettingsPropertyIsReadOnlyException * __this, String * message, Exception * innerException, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECE28, SettingsPropertyIsReadOnlyException__ctor_3__MethodInfo); DO_APP_FUNC(0x0279D0A0, void, SettingsPropertyNotFoundException__ctor, (SettingsPropertyNotFoundException * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECE20, SettingsPropertyNotFoundException__ctor__MethodInfo); DO_APP_FUNC(0x0279D0D0, void, SettingsPropertyNotFoundException__ctor_1, (SettingsPropertyNotFoundException * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECE60, SettingsPropertyNotFoundException__ctor_1__MethodInfo); DO_APP_FUNC(0x0279D100, void, SettingsPropertyNotFoundException__ctor_2, (SettingsPropertyNotFoundException * __this, String * message, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECE68, SettingsPropertyNotFoundException__ctor_2__MethodInfo); DO_APP_FUNC(0x0279D130, void, SettingsPropertyNotFoundException__ctor_3, (SettingsPropertyNotFoundException * __this, String * message, Exception * innerException, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECE50, SettingsPropertyNotFoundException__ctor_3__MethodInfo); DO_APP_FUNC(0x0279D160, void, SettingsPropertyWrongTypeException__ctor, (SettingsPropertyWrongTypeException * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECE48, SettingsPropertyWrongTypeException__ctor__MethodInfo); DO_APP_FUNC(0x0279D190, void, SettingsPropertyWrongTypeException__ctor_1, (SettingsPropertyWrongTypeException * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECE58, SettingsPropertyWrongTypeException__ctor_1__MethodInfo); DO_APP_FUNC(0x0279D1C0, void, SettingsPropertyWrongTypeException__ctor_2, (SettingsPropertyWrongTypeException * __this, String * message, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECDD0, SettingsPropertyWrongTypeException__ctor_2__MethodInfo); DO_APP_FUNC(0x0279D1F0, void, SettingsPropertyWrongTypeException__ctor_3, (SettingsPropertyWrongTypeException * __this, String * message, Exception * innerException, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECDE0, SettingsPropertyWrongTypeException__ctor_3__MethodInfo); DO_APP_FUNC(0x003AE050, void, SettingsProviderAttribute__ctor, (SettingsProviderAttribute * __this, String * providerTypeName, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SettingsProviderAttribute__ctor_1, (SettingsProviderAttribute * __this, Type * providerType, MethodInfo * method)); DO_APP_FUNC(0x0279D220, String *, SettingsProviderAttribute_get_ProviderTypeName, (SettingsProviderAttribute * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECDD8, SettingsProviderAttribute_get_ProviderTypeName__MethodInfo); DO_APP_FUNC(0x003AE050, void, SettingsSerializeAsAttribute__ctor, (SettingsSerializeAsAttribute * __this, SettingsSerializeAs__Enum serializeAs, MethodInfo * method)); DO_APP_FUNC(0x0279D250, SettingsSerializeAs__Enum, SettingsSerializeAsAttribute_get_SerializeAs, (SettingsSerializeAsAttribute * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECDC0, SettingsSerializeAsAttribute_get_SerializeAs__MethodInfo); DO_APP_FUNC(0x0279D280, void, SingleTagSectionHandler__ctor, (SingleTagSectionHandler * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECDC8, SingleTagSectionHandler__ctor__MethodInfo); DO_APP_FUNC(0x0279D2B0, Object *, SingleTagSectionHandler_Create, (SingleTagSectionHandler * __this, Object * parent, Object * context, XmlNode * section, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECE08, SingleTagSectionHandler_Create__MethodInfo); DO_APP_FUNC(0x003AE050, void, SpecialSettingAttribute__ctor, (SpecialSettingAttribute * __this, SpecialSetting__Enum specialSetting, MethodInfo * method)); DO_APP_FUNC(0x0279D2E0, SpecialSetting__Enum, SpecialSettingAttribute_get_SpecialSetting, (SpecialSettingAttribute * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECE00, SpecialSettingAttribute_get_SpecialSetting__MethodInfo); DO_APP_FUNC(0x0279D310, void, UriSection__ctor, (UriSection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECE10, UriSection__ctor__MethodInfo); DO_APP_FUNC(0x0279D340, IdnElement *, UriSection_get_Idn, (UriSection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECDE8, UriSection_get_Idn__MethodInfo); DO_APP_FUNC(0x0279D370, IriParsingElement *, UriSection_get_IriParsing, (UriSection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECDF8, UriSection_get_IriParsing__MethodInfo); DO_APP_FUNC(0x0279D3A0, ConfigurationPropertyCollection *, UriSection_get_Properties, (UriSection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECDF0, UriSection_get_Properties__MethodInfo); DO_APP_FUNC(0x0279D3D0, SchemeSettingElementCollection *, UriSection_get_SchemeSettings, (UriSection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECD88, UriSection_get_SchemeSettings__MethodInfo); DO_APP_FUNC(0x003AE050, void, UserScopedSettingAttribute__ctor, (UserScopedSettingAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x0279D400, void, UserSettingsGroup__ctor, (UserSettingsGroup * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECD90, UserSettingsGroup__ctor__MethodInfo); DO_APP_FUNC(0x0279D430, void, CodeArrayCreateExpression__ctor, (CodeArrayCreateExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECD78, CodeArrayCreateExpression__ctor__MethodInfo); DO_APP_FUNC(0x0279D460, void, CodeArrayCreateExpression__ctor_1, (CodeArrayCreateExpression * __this, CodeTypeReference * createType, CodeExpression * size, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECD70, CodeArrayCreateExpression__ctor_1__MethodInfo); DO_APP_FUNC(0x0279D490, void, CodeArrayCreateExpression__ctor_2, (CodeArrayCreateExpression * __this, CodeTypeReference * createType, CodeExpression__Array * initializers, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECD80, CodeArrayCreateExpression__ctor_2__MethodInfo); DO_APP_FUNC(0x0279D4C0, void, CodeArrayCreateExpression__ctor_3, (CodeArrayCreateExpression * __this, CodeTypeReference * createType, int32_t size, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECDA8, CodeArrayCreateExpression__ctor_3__MethodInfo); DO_APP_FUNC(0x0279D4F0, void, CodeArrayCreateExpression__ctor_4, (CodeArrayCreateExpression * __this, String * createType, CodeExpression * size, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECDB8, CodeArrayCreateExpression__ctor_4__MethodInfo); DO_APP_FUNC(0x0279D520, void, CodeArrayCreateExpression__ctor_5, (CodeArrayCreateExpression * __this, String * createType, CodeExpression__Array * initializers, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECDB0, CodeArrayCreateExpression__ctor_5__MethodInfo); DO_APP_FUNC(0x0279D550, void, CodeArrayCreateExpression__ctor_6, (CodeArrayCreateExpression * __this, String * createType, int32_t size, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECD98, CodeArrayCreateExpression__ctor_6__MethodInfo); DO_APP_FUNC(0x0279D580, void, CodeArrayCreateExpression__ctor_7, (CodeArrayCreateExpression * __this, Type * createType, CodeExpression * size, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECDA0, CodeArrayCreateExpression__ctor_7__MethodInfo); DO_APP_FUNC(0x0279D5B0, void, CodeArrayCreateExpression__ctor_8, (CodeArrayCreateExpression * __this, Type * createType, CodeExpression__Array * initializers, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECD38, CodeArrayCreateExpression__ctor_8__MethodInfo); DO_APP_FUNC(0x0279D5E0, void, CodeArrayCreateExpression__ctor_9, (CodeArrayCreateExpression * __this, Type * createType, int32_t size, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECD30, CodeArrayCreateExpression__ctor_9__MethodInfo); DO_APP_FUNC(0x0279D610, CodeTypeReference *, CodeArrayCreateExpression_get_CreateType, (CodeArrayCreateExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECD40, CodeArrayCreateExpression_get_CreateType__MethodInfo); DO_APP_FUNC(0x0279D640, void, CodeArrayCreateExpression_set_CreateType, (CodeArrayCreateExpression * __this, CodeTypeReference * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECD18, CodeArrayCreateExpression_set_CreateType__MethodInfo); DO_APP_FUNC(0x0279D670, CodeExpressionCollection *, CodeArrayCreateExpression_get_Initializers, (CodeArrayCreateExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECD28, CodeArrayCreateExpression_get_Initializers__MethodInfo); DO_APP_FUNC(0x0279D6A0, int32_t, CodeArrayCreateExpression_get_Size, (CodeArrayCreateExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECD20, CodeArrayCreateExpression_get_Size__MethodInfo); DO_APP_FUNC(0x0279D6D0, void, CodeArrayCreateExpression_set_Size, (CodeArrayCreateExpression * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECD60, CodeArrayCreateExpression_set_Size__MethodInfo); DO_APP_FUNC(0x0279D700, CodeExpression *, CodeArrayCreateExpression_get_SizeExpression, (CodeArrayCreateExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECD68, CodeArrayCreateExpression_get_SizeExpression__MethodInfo); DO_APP_FUNC(0x0279D730, void, CodeArrayCreateExpression_set_SizeExpression, (CodeArrayCreateExpression * __this, CodeExpression * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECD50, CodeArrayCreateExpression_set_SizeExpression__MethodInfo); DO_APP_FUNC(0x0279D760, void, CodeExpressionCollection__ctor, (CodeExpressionCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECD48, CodeExpressionCollection__ctor__MethodInfo); DO_APP_FUNC(0x0279D790, void, CodeExpressionCollection__ctor_1, (CodeExpressionCollection * __this, CodeExpressionCollection * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECD58, CodeExpressionCollection__ctor_1__MethodInfo); DO_APP_FUNC(0x0279D7C0, void, CodeExpressionCollection__ctor_2, (CodeExpressionCollection * __this, CodeExpression__Array * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECCD0, CodeExpressionCollection__ctor_2__MethodInfo); DO_APP_FUNC(0x0279D7F0, CodeExpression *, CodeExpressionCollection_get_Item, (CodeExpressionCollection * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECCE0, CodeExpressionCollection_get_Item__MethodInfo); DO_APP_FUNC(0x0279D820, void, CodeExpressionCollection_set_Item, (CodeExpressionCollection * __this, int32_t index, CodeExpression * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECCD8, CodeExpressionCollection_set_Item__MethodInfo); DO_APP_FUNC(0x0279D850, int32_t, CodeExpressionCollection_Add, (CodeExpressionCollection * __this, CodeExpression * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECCC0, CodeExpressionCollection_Add__MethodInfo); DO_APP_FUNC(0x0279D880, void, CodeExpressionCollection_AddRange, (CodeExpressionCollection * __this, CodeExpressionCollection * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECCC8, CodeExpressionCollection_AddRange__MethodInfo); DO_APP_FUNC(0x0279D8B0, void, CodeExpressionCollection_AddRange_1, (CodeExpressionCollection * __this, CodeExpression__Array * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECD08, CodeExpressionCollection_AddRange_1__MethodInfo); DO_APP_FUNC(0x0279D8E0, bool, CodeExpressionCollection_Contains, (CodeExpressionCollection * __this, CodeExpression * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECD00, CodeExpressionCollection_Contains__MethodInfo); DO_APP_FUNC(0x0279D910, void, CodeExpressionCollection_CopyTo, (CodeExpressionCollection * __this, CodeExpression__Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECD10, CodeExpressionCollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0279D940, int32_t, CodeExpressionCollection_IndexOf, (CodeExpressionCollection * __this, CodeExpression * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECCE8, CodeExpressionCollection_IndexOf__MethodInfo); DO_APP_FUNC(0x0279D970, void, CodeExpressionCollection_Insert, (CodeExpressionCollection * __this, int32_t index, CodeExpression * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECCF8, CodeExpressionCollection_Insert__MethodInfo); DO_APP_FUNC(0x0279D9A0, void, CodeExpressionCollection_Remove, (CodeExpressionCollection * __this, CodeExpression * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECCF0, CodeExpressionCollection_Remove__MethodInfo); DO_APP_FUNC(0x0279D9D0, void, CodeArrayIndexerExpression__ctor, (CodeArrayIndexerExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECC88, CodeArrayIndexerExpression__ctor__MethodInfo); DO_APP_FUNC(0x0279DA00, void, CodeArrayIndexerExpression__ctor_1, (CodeArrayIndexerExpression * __this, CodeExpression * targetObject, CodeExpression__Array * indices, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECC90, CodeArrayIndexerExpression__ctor_1__MethodInfo); DO_APP_FUNC(0x0279DA30, CodeExpressionCollection *, CodeArrayIndexerExpression_get_Indices, (CodeArrayIndexerExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECC78, CodeArrayIndexerExpression_get_Indices__MethodInfo); DO_APP_FUNC(0x0279DA60, CodeExpression *, CodeArrayIndexerExpression_get_TargetObject, (CodeArrayIndexerExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECC70, CodeArrayIndexerExpression_get_TargetObject__MethodInfo); DO_APP_FUNC(0x0279DA90, void, CodeArrayIndexerExpression_set_TargetObject, (CodeArrayIndexerExpression * __this, CodeExpression * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECC80, CodeArrayIndexerExpression_set_TargetObject__MethodInfo); DO_APP_FUNC(0x0279DAC0, void, CodeAssignStatement__ctor, (CodeAssignStatement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECCA8, CodeAssignStatement__ctor__MethodInfo); DO_APP_FUNC(0x0279DAF0, void, CodeAssignStatement__ctor_1, (CodeAssignStatement * __this, CodeExpression * left, CodeExpression * right, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECCB8, CodeAssignStatement__ctor_1__MethodInfo); DO_APP_FUNC(0x0279DB20, CodeExpression *, CodeAssignStatement_get_Left, (CodeAssignStatement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECCB0, CodeAssignStatement_get_Left__MethodInfo); DO_APP_FUNC(0x0279DB50, void, CodeAssignStatement_set_Left, (CodeAssignStatement * __this, CodeExpression * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECC98, CodeAssignStatement_set_Left__MethodInfo); DO_APP_FUNC(0x0279DB80, CodeExpression *, CodeAssignStatement_get_Right, (CodeAssignStatement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECCA0, CodeAssignStatement_get_Right__MethodInfo); DO_APP_FUNC(0x0279DBB0, void, CodeAssignStatement_set_Right, (CodeAssignStatement * __this, CodeExpression * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECC38, CodeAssignStatement_set_Right__MethodInfo); DO_APP_FUNC(0x0279DBE0, void, CodeAttachEventStatement__ctor, (CodeAttachEventStatement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECC30, CodeAttachEventStatement__ctor__MethodInfo); DO_APP_FUNC(0x0279DC10, void, CodeAttachEventStatement__ctor_1, (CodeAttachEventStatement * __this, CodeEventReferenceExpression * eventRef, CodeExpression * listener, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECC40, CodeAttachEventStatement__ctor_1__MethodInfo); DO_APP_FUNC(0x0279DC40, void, CodeAttachEventStatement__ctor_2, (CodeAttachEventStatement * __this, CodeExpression * targetObject, String * eventName, CodeExpression * listener, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECC18, CodeAttachEventStatement__ctor_2__MethodInfo); DO_APP_FUNC(0x0279DC70, CodeEventReferenceExpression *, CodeAttachEventStatement_get_Event, (CodeAttachEventStatement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECC28, CodeAttachEventStatement_get_Event__MethodInfo); DO_APP_FUNC(0x0279DCA0, void, CodeAttachEventStatement_set_Event, (CodeAttachEventStatement * __this, CodeEventReferenceExpression * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECC20, CodeAttachEventStatement_set_Event__MethodInfo); DO_APP_FUNC(0x0279DCD0, CodeExpression *, CodeAttachEventStatement_get_Listener, (CodeAttachEventStatement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECC60, CodeAttachEventStatement_get_Listener__MethodInfo); DO_APP_FUNC(0x0279DD00, void, CodeAttachEventStatement_set_Listener, (CodeAttachEventStatement * __this, CodeExpression * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECC68, CodeAttachEventStatement_set_Listener__MethodInfo); DO_APP_FUNC(0x0279DD30, void, CodeEventReferenceExpression__ctor, (CodeEventReferenceExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECC50, CodeEventReferenceExpression__ctor__MethodInfo); DO_APP_FUNC(0x0279DD60, void, CodeEventReferenceExpression__ctor_1, (CodeEventReferenceExpression * __this, CodeExpression * targetObject, String * eventName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECC48, CodeEventReferenceExpression__ctor_1__MethodInfo); DO_APP_FUNC(0x0279DD90, String *, CodeEventReferenceExpression_get_EventName, (CodeEventReferenceExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECC58, CodeEventReferenceExpression_get_EventName__MethodInfo); DO_APP_FUNC(0x0279DDC0, void, CodeEventReferenceExpression_set_EventName, (CodeEventReferenceExpression * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECBD0, CodeEventReferenceExpression_set_EventName__MethodInfo); DO_APP_FUNC(0x0279DDF0, CodeExpression *, CodeEventReferenceExpression_get_TargetObject, (CodeEventReferenceExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECBE0, CodeEventReferenceExpression_get_TargetObject__MethodInfo); DO_APP_FUNC(0x0279DE20, void, CodeEventReferenceExpression_set_TargetObject, (CodeEventReferenceExpression * __this, CodeExpression * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECBD8, CodeEventReferenceExpression_set_TargetObject__MethodInfo); DO_APP_FUNC(0x0279DE50, void, CodeBaseReferenceExpression__ctor, (CodeBaseReferenceExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECBC0, CodeBaseReferenceExpression__ctor__MethodInfo); DO_APP_FUNC(0x0279DE80, void, CodeBinaryOperatorExpression__ctor, (CodeBinaryOperatorExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECBC8, CodeBinaryOperatorExpression__ctor__MethodInfo); DO_APP_FUNC(0x0279DEB0, void, CodeBinaryOperatorExpression__ctor_1, (CodeBinaryOperatorExpression * __this, CodeExpression * left, CodeBinaryOperatorType__Enum op, CodeExpression * right, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECC08, CodeBinaryOperatorExpression__ctor_1__MethodInfo); DO_APP_FUNC(0x0279DEE0, CodeExpression *, CodeBinaryOperatorExpression_get_Left, (CodeBinaryOperatorExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECC00, CodeBinaryOperatorExpression_get_Left__MethodInfo); DO_APP_FUNC(0x0279DF10, void, CodeBinaryOperatorExpression_set_Left, (CodeBinaryOperatorExpression * __this, CodeExpression * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECC10, CodeBinaryOperatorExpression_set_Left__MethodInfo); DO_APP_FUNC(0x0279DF40, CodeBinaryOperatorType__Enum, CodeBinaryOperatorExpression_get_Operator, (CodeBinaryOperatorExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECBE8, CodeBinaryOperatorExpression_get_Operator__MethodInfo); DO_APP_FUNC(0x0279DF70, void, CodeBinaryOperatorExpression_set_Operator, (CodeBinaryOperatorExpression * __this, CodeBinaryOperatorType__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECBF8, CodeBinaryOperatorExpression_set_Operator__MethodInfo); DO_APP_FUNC(0x0279DFA0, CodeExpression *, CodeBinaryOperatorExpression_get_Right, (CodeBinaryOperatorExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECBF0, CodeBinaryOperatorExpression_get_Right__MethodInfo); DO_APP_FUNC(0x0279DFD0, void, CodeBinaryOperatorExpression_set_Right, (CodeBinaryOperatorExpression * __this, CodeExpression * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECB88, CodeBinaryOperatorExpression_set_Right__MethodInfo); DO_APP_FUNC(0x0279E000, void, CodeCastExpression__ctor, (CodeCastExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECB90, CodeCastExpression__ctor__MethodInfo); DO_APP_FUNC(0x0279E030, void, CodeCastExpression__ctor_1, (CodeCastExpression * __this, CodeTypeReference * targetType, CodeExpression * expression, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECB78, CodeCastExpression__ctor_1__MethodInfo); DO_APP_FUNC(0x0279E060, void, CodeCastExpression__ctor_2, (CodeCastExpression * __this, String * targetType, CodeExpression * expression, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECB70, CodeCastExpression__ctor_2__MethodInfo); DO_APP_FUNC(0x0279E090, void, CodeCastExpression__ctor_3, (CodeCastExpression * __this, Type * targetType, CodeExpression * expression, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECB80, CodeCastExpression__ctor_3__MethodInfo); DO_APP_FUNC(0x0279E0C0, CodeExpression *, CodeCastExpression_get_Expression, (CodeCastExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECBA8, CodeCastExpression_get_Expression__MethodInfo); DO_APP_FUNC(0x0279E0F0, void, CodeCastExpression_set_Expression, (CodeCastExpression * __this, CodeExpression * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECBB8, CodeCastExpression_set_Expression__MethodInfo); DO_APP_FUNC(0x0279E120, CodeTypeReference *, CodeCastExpression_get_TargetType, (CodeCastExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECBB0, CodeCastExpression_get_TargetType__MethodInfo); DO_APP_FUNC(0x0279E150, void, CodeCastExpression_set_TargetType, (CodeCastExpression * __this, CodeTypeReference * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECB98, CodeCastExpression_set_TargetType__MethodInfo); DO_APP_FUNC(0x0279E180, void, CodeCatchClause__ctor, (CodeCatchClause * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECBA0, CodeCatchClause__ctor__MethodInfo); DO_APP_FUNC(0x0279E1B0, void, CodeCatchClause__ctor_1, (CodeCatchClause * __this, String * localName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECB38, CodeCatchClause__ctor_1__MethodInfo); DO_APP_FUNC(0x0279E1E0, void, CodeCatchClause__ctor_2, (CodeCatchClause * __this, String * localName, CodeTypeReference * catchExceptionType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECB30, CodeCatchClause__ctor_2__MethodInfo); DO_APP_FUNC(0x0279E210, void, CodeCatchClause__ctor_3, (CodeCatchClause * __this, String * localName, CodeTypeReference * catchExceptionType, CodeStatement__Array * statements, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECB40, CodeCatchClause__ctor_3__MethodInfo); DO_APP_FUNC(0x0279E240, CodeTypeReference *, CodeCatchClause_get_CatchExceptionType, (CodeCatchClause * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECB18, CodeCatchClause_get_CatchExceptionType__MethodInfo); DO_APP_FUNC(0x0279E270, void, CodeCatchClause_set_CatchExceptionType, (CodeCatchClause * __this, CodeTypeReference * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECB28, CodeCatchClause_set_CatchExceptionType__MethodInfo); DO_APP_FUNC(0x0279E2A0, String *, CodeCatchClause_get_LocalName, (CodeCatchClause * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECB20, CodeCatchClause_get_LocalName__MethodInfo); DO_APP_FUNC(0x0279E2D0, void, CodeCatchClause_set_LocalName, (CodeCatchClause * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECB60, CodeCatchClause_set_LocalName__MethodInfo); DO_APP_FUNC(0x0279E300, CodeStatementCollection *, CodeCatchClause_get_Statements, (CodeCatchClause * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECB68, CodeCatchClause_get_Statements__MethodInfo); DO_APP_FUNC(0x0279E330, void, CodeCatchClauseCollection__ctor, (CodeCatchClauseCollection * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECB50, CodeCatchClauseCollection__ctor__MethodInfo); DO_APP_FUNC(0x0279E360, void, CodeCatchClauseCollection__ctor_1, (CodeCatchClauseCollection * __this, CodeCatchClauseCollection * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECB48, CodeCatchClauseCollection__ctor_1__MethodInfo); DO_APP_FUNC(0x0279E390, void, CodeCatchClauseCollection__ctor_2, (CodeCatchClauseCollection * __this, CodeCatchClause__Array * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECB58, CodeCatchClauseCollection__ctor_2__MethodInfo); DO_APP_FUNC(0x0279E3C0, CodeCatchClause *, CodeCatchClauseCollection_get_Item, (CodeCatchClauseCollection * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECAD0, CodeCatchClauseCollection_get_Item__MethodInfo); DO_APP_FUNC(0x0279E3F0, void, CodeCatchClauseCollection_set_Item, (CodeCatchClauseCollection * __this, int32_t index, CodeCatchClause * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECAE0, CodeCatchClauseCollection_set_Item__MethodInfo); DO_APP_FUNC(0x0279E420, int32_t, CodeCatchClauseCollection_Add, (CodeCatchClauseCollection * __this, CodeCatchClause * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECAD8, CodeCatchClauseCollection_Add__MethodInfo); DO_APP_FUNC(0x0279E450, void, CodeCatchClauseCollection_AddRange, (CodeCatchClauseCollection * __this, CodeCatchClauseCollection * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECAC0, CodeCatchClauseCollection_AddRange__MethodInfo); DO_APP_FUNC(0x0279E480, void, CodeCatchClauseCollection_AddRange_1, (CodeCatchClauseCollection * __this, CodeCatchClause__Array * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECAC8, CodeCatchClauseCollection_AddRange_1__MethodInfo); DO_APP_FUNC(0x0279E4B0, bool, CodeCatchClauseCollection_Contains, (CodeCatchClauseCollection * __this, CodeCatchClause * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECB08, CodeCatchClauseCollection_Contains__MethodInfo); DO_APP_FUNC(0x0279E4E0, void, CodeCatchClauseCollection_CopyTo, (CodeCatchClauseCollection * __this, CodeCatchClause__Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECB00, CodeCatchClauseCollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0279E510, int32_t, CodeCatchClauseCollection_IndexOf, (CodeCatchClauseCollection * __this, CodeCatchClause * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECB10, CodeCatchClauseCollection_IndexOf__MethodInfo); DO_APP_FUNC(0x0279E540, void, CodeCatchClauseCollection_Insert, (CodeCatchClauseCollection * __this, int32_t index, CodeCatchClause * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECAE8, CodeCatchClauseCollection_Insert__MethodInfo); DO_APP_FUNC(0x0279E570, void, CodeCatchClauseCollection_Remove, (CodeCatchClauseCollection * __this, CodeCatchClause * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECAF8, CodeCatchClauseCollection_Remove__MethodInfo); DO_APP_FUNC(0x0279E5A0, void, CodeChecksumPragma__ctor, (CodeChecksumPragma * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECAF0, CodeChecksumPragma__ctor__MethodInfo); DO_APP_FUNC(0x0279E5D0, void, CodeChecksumPragma__ctor_1, (CodeChecksumPragma * __this, String * fileName, Guid checksumAlgorithmId, Byte__Array * checksumData, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECA88, CodeChecksumPragma__ctor_1__MethodInfo); DO_APP_FUNC(0x0279E600, Guid, CodeChecksumPragma_get_ChecksumAlgorithmId, (CodeChecksumPragma * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECA90, CodeChecksumPragma_get_ChecksumAlgorithmId__MethodInfo); DO_APP_FUNC(0x0279E640, void, CodeChecksumPragma_set_ChecksumAlgorithmId, (CodeChecksumPragma * __this, Guid value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECA78, CodeChecksumPragma_set_ChecksumAlgorithmId__MethodInfo); DO_APP_FUNC(0x0279E670, Byte__Array *, CodeChecksumPragma_get_ChecksumData, (CodeChecksumPragma * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECA70, CodeChecksumPragma_get_ChecksumData__MethodInfo); DO_APP_FUNC(0x0279E6A0, void, CodeChecksumPragma_set_ChecksumData, (CodeChecksumPragma * __this, Byte__Array * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECA80, CodeChecksumPragma_set_ChecksumData__MethodInfo); DO_APP_FUNC(0x0279E6D0, String *, CodeChecksumPragma_get_FileName, (CodeChecksumPragma * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECAA8, CodeChecksumPragma_get_FileName__MethodInfo); DO_APP_FUNC(0x0279E700, void, CodeChecksumPragma_set_FileName, (CodeChecksumPragma * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECAB8, CodeChecksumPragma_set_FileName__MethodInfo); DO_APP_FUNC(0x0279E730, void, CodeConditionStatement__ctor, (CodeConditionStatement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECAB0, CodeConditionStatement__ctor__MethodInfo); DO_APP_FUNC(0x0279E760, void, CodeConditionStatement__ctor_1, (CodeConditionStatement * __this, CodeExpression * condition, CodeStatement__Array * trueStatements, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECA98, CodeConditionStatement__ctor_1__MethodInfo); DO_APP_FUNC(0x0279E790, void, CodeConditionStatement__ctor_2, (CodeConditionStatement * __this, CodeExpression * condition, CodeStatement__Array * trueStatements, CodeStatement__Array * falseStatements, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECAA0, CodeConditionStatement__ctor_2__MethodInfo); DO_APP_FUNC(0x0279E7C0, CodeExpression *, CodeConditionStatement_get_Condition, (CodeConditionStatement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECA38, CodeConditionStatement_get_Condition__MethodInfo); DO_APP_FUNC(0x0279E7F0, void, CodeConditionStatement_set_Condition, (CodeConditionStatement * __this, CodeExpression * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECA30, CodeConditionStatement_set_Condition__MethodInfo); DO_APP_FUNC(0x0279E820, CodeStatementCollection *, CodeConditionStatement_get_FalseStatements, (CodeConditionStatement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECA40, CodeConditionStatement_get_FalseStatements__MethodInfo); DO_APP_FUNC(0x0279E850, CodeStatementCollection *, CodeConditionStatement_get_TrueStatements, (CodeConditionStatement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECA18, CodeConditionStatement_get_TrueStatements__MethodInfo); DO_APP_FUNC(0x0279E880, void, CodeConstructor__ctor, (CodeConstructor * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECA28, CodeConstructor__ctor__MethodInfo); DO_APP_FUNC(0x0279E8B0, CodeExpressionCollection *, CodeConstructor_get_BaseConstructorArgs, (CodeConstructor * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECA20, CodeConstructor_get_BaseConstructorArgs__MethodInfo); DO_APP_FUNC(0x0279E8E0, CodeExpressionCollection *, CodeConstructor_get_ChainedConstructorArgs, (CodeConstructor * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECA60, CodeConstructor_get_ChainedConstructorArgs__MethodInfo); DO_APP_FUNC(0x0279E910, void, CodeDefaultValueExpression__ctor, (CodeDefaultValueExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECA68, CodeDefaultValueExpression__ctor__MethodInfo); DO_APP_FUNC(0x0279E940, void, CodeDefaultValueExpression__ctor_1, (CodeDefaultValueExpression * __this, CodeTypeReference * type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECA50, CodeDefaultValueExpression__ctor_1__MethodInfo); DO_APP_FUNC(0x0279E970, CodeTypeReference *, CodeDefaultValueExpression_get_Type, (CodeDefaultValueExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECA48, CodeDefaultValueExpression_get_Type__MethodInfo); DO_APP_FUNC(0x0279E9A0, void, CodeDefaultValueExpression_set_Type, (CodeDefaultValueExpression * __this, CodeTypeReference * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECA58, CodeDefaultValueExpression_set_Type__MethodInfo); DO_APP_FUNC(0x0279E9D0, void, CodeDelegateCreateExpression__ctor, (CodeDelegateCreateExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC9C0, CodeDelegateCreateExpression__ctor__MethodInfo); DO_APP_FUNC(0x0279EA00, void, CodeDelegateCreateExpression__ctor_1, (CodeDelegateCreateExpression * __this, CodeTypeReference * delegateType, CodeExpression * targetObject, String * methodName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC9D0, CodeDelegateCreateExpression__ctor_1__MethodInfo); DO_APP_FUNC(0x0279EA30, CodeTypeReference *, CodeDelegateCreateExpression_get_DelegateType, (CodeDelegateCreateExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC9C8, CodeDelegateCreateExpression_get_DelegateType__MethodInfo); DO_APP_FUNC(0x0279EA60, void, CodeDelegateCreateExpression_set_DelegateType, (CodeDelegateCreateExpression * __this, CodeTypeReference * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC9B0, CodeDelegateCreateExpression_set_DelegateType__MethodInfo); DO_APP_FUNC(0x0279EA90, String *, CodeDelegateCreateExpression_get_MethodName, (CodeDelegateCreateExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC9B8, CodeDelegateCreateExpression_get_MethodName__MethodInfo); DO_APP_FUNC(0x0279EAC0, void, CodeDelegateCreateExpression_set_MethodName, (CodeDelegateCreateExpression * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECA00, CodeDelegateCreateExpression_set_MethodName__MethodInfo); DO_APP_FUNC(0x0279EAF0, CodeExpression *, CodeDelegateCreateExpression_get_TargetObject, (CodeDelegateCreateExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC9F0, CodeDelegateCreateExpression_get_TargetObject__MethodInfo); DO_APP_FUNC(0x0279EB20, void, CodeDelegateCreateExpression_set_TargetObject, (CodeDelegateCreateExpression * __this, CodeExpression * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CECA08, CodeDelegateCreateExpression_set_TargetObject__MethodInfo); DO_APP_FUNC(0x0279EB50, void, CodeDelegateInvokeExpression__ctor, (CodeDelegateInvokeExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC9D8, CodeDelegateInvokeExpression__ctor__MethodInfo); DO_APP_FUNC(0x0279EB80, void, CodeDelegateInvokeExpression__ctor_1, (CodeDelegateInvokeExpression * __this, CodeExpression * targetObject, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC9E8, CodeDelegateInvokeExpression__ctor_1__MethodInfo); DO_APP_FUNC(0x0279EBB0, void, CodeDelegateInvokeExpression__ctor_2, (CodeDelegateInvokeExpression * __this, CodeExpression * targetObject, CodeExpression__Array * parameters, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC9E0, CodeDelegateInvokeExpression__ctor_2__MethodInfo); DO_APP_FUNC(0x0279EBE0, CodeExpressionCollection *, CodeDelegateInvokeExpression_get_Parameters, (CodeDelegateInvokeExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC978, CodeDelegateInvokeExpression_get_Parameters__MethodInfo); DO_APP_FUNC(0x0279EC10, CodeExpression *, CodeDelegateInvokeExpression_get_TargetObject, (CodeDelegateInvokeExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC980, CodeDelegateInvokeExpression_get_TargetObject__MethodInfo); DO_APP_FUNC(0x0279EC40, void, CodeDelegateInvokeExpression_set_TargetObject, (CodeDelegateInvokeExpression * __this, CodeExpression * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC968, CodeDelegateInvokeExpression_set_TargetObject__MethodInfo); DO_APP_FUNC(0x0279EC70, void, CodeDirectionExpression__ctor, (CodeDirectionExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC960, CodeDirectionExpression__ctor__MethodInfo); DO_APP_FUNC(0x0279ECA0, void, CodeDirectionExpression__ctor_1, (CodeDirectionExpression * __this, FieldDirection__Enum direction, CodeExpression * expression, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC970, CodeDirectionExpression__ctor_1__MethodInfo); DO_APP_FUNC(0x0279ECD0, FieldDirection__Enum, CodeDirectionExpression_get_Direction, (CodeDirectionExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC998, CodeDirectionExpression_get_Direction__MethodInfo); DO_APP_FUNC(0x0279ED00, void, CodeDirectionExpression_set_Direction, (CodeDirectionExpression * __this, FieldDirection__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC9A8, CodeDirectionExpression_set_Direction__MethodInfo); DO_APP_FUNC(0x0279ED30, CodeExpression *, CodeDirectionExpression_get_Expression, (CodeDirectionExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC9A0, CodeDirectionExpression_get_Expression__MethodInfo); DO_APP_FUNC(0x0279ED60, void, CodeDirectionExpression_set_Expression, (CodeDirectionExpression * __this, CodeExpression * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC988, CodeDirectionExpression_set_Expression__MethodInfo); DO_APP_FUNC(0x0279ED90, void, CodeEntryPointMethod__ctor, (CodeEntryPointMethod * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC990, CodeEntryPointMethod__ctor__MethodInfo); DO_APP_FUNC(0x0279EDC0, void, CodeExpressionStatement__ctor, (CodeExpressionStatement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC910, CodeExpressionStatement__ctor__MethodInfo); DO_APP_FUNC(0x0279EDF0, void, CodeExpressionStatement__ctor_1, (CodeExpressionStatement * __this, CodeExpression * expression, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC908, CodeExpressionStatement__ctor_1__MethodInfo); DO_APP_FUNC(0x0279EE20, CodeExpression *, CodeExpressionStatement_get_Expression, (CodeExpressionStatement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC918, CodeExpressionStatement_get_Expression__MethodInfo); DO_APP_FUNC(0x0279EE50, void, CodeExpressionStatement_set_Expression, (CodeExpressionStatement * __this, CodeExpression * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC8E8, CodeExpressionStatement_set_Expression__MethodInfo); DO_APP_FUNC(0x0279EE80, void, CodeFieldReferenceExpression__ctor, (CodeFieldReferenceExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC8F8, CodeFieldReferenceExpression__ctor__MethodInfo); DO_APP_FUNC(0x0279EEB0, void, CodeFieldReferenceExpression__ctor_1, (CodeFieldReferenceExpression * __this, CodeExpression * targetObject, String * fieldName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC8F0, CodeFieldReferenceExpression__ctor_1__MethodInfo); DO_APP_FUNC(0x0279EEE0, String *, CodeFieldReferenceExpression_get_FieldName, (CodeFieldReferenceExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC938, CodeFieldReferenceExpression_get_FieldName__MethodInfo); DO_APP_FUNC(0x0279EF10, void, CodeFieldReferenceExpression_set_FieldName, (CodeFieldReferenceExpression * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC950, CodeFieldReferenceExpression_set_FieldName__MethodInfo); DO_APP_FUNC(0x0279EF40, CodeExpression *, CodeFieldReferenceExpression_get_TargetObject, (CodeFieldReferenceExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC928, CodeFieldReferenceExpression_get_TargetObject__MethodInfo); DO_APP_FUNC(0x0279EF70, void, CodeFieldReferenceExpression_set_TargetObject, (CodeFieldReferenceExpression * __this, CodeExpression * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC920, CodeFieldReferenceExpression_set_TargetObject__MethodInfo); DO_APP_FUNC(0x0279EFA0, void, CodeGotoStatement__ctor, (CodeGotoStatement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC930, CodeGotoStatement__ctor__MethodInfo); DO_APP_FUNC(0x0279EFD0, void, CodeGotoStatement__ctor_1, (CodeGotoStatement * __this, String * label, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC890, CodeGotoStatement__ctor_1__MethodInfo); DO_APP_FUNC(0x0279F000, String *, CodeGotoStatement_get_Label, (CodeGotoStatement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC8A0, CodeGotoStatement_get_Label__MethodInfo); DO_APP_FUNC(0x0279F030, void, CodeGotoStatement_set_Label, (CodeGotoStatement * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC898, CodeGotoStatement_set_Label__MethodInfo); DO_APP_FUNC(0x0279F060, void, CodeIndexerExpression__ctor, (CodeIndexerExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC880, CodeIndexerExpression__ctor__MethodInfo); DO_APP_FUNC(0x0279F090, void, CodeIndexerExpression__ctor_1, (CodeIndexerExpression * __this, CodeExpression * targetObject, CodeExpression__Array * indices, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC888, CodeIndexerExpression__ctor_1__MethodInfo); DO_APP_FUNC(0x0279F0C0, CodeExpressionCollection *, CodeIndexerExpression_get_Indices, (CodeIndexerExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC8C8, CodeIndexerExpression_get_Indices__MethodInfo); DO_APP_FUNC(0x0279F0F0, CodeExpression *, CodeIndexerExpression_get_TargetObject, (CodeIndexerExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC8C0, CodeIndexerExpression_get_TargetObject__MethodInfo); DO_APP_FUNC(0x0279F120, void, CodeIndexerExpression_set_TargetObject, (CodeIndexerExpression * __this, CodeExpression * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC8D0, CodeIndexerExpression_set_TargetObject__MethodInfo); DO_APP_FUNC(0x0279F150, void, CodeIterationStatement__ctor, (CodeIterationStatement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC8A8, CodeIterationStatement__ctor__MethodInfo); DO_APP_FUNC(0x0279F180, void, CodeIterationStatement__ctor_1, (CodeIterationStatement * __this, CodeStatement * initStatement, CodeExpression * testExpression, CodeStatement * incrementStatement, CodeStatement__Array * statements, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC8B8, CodeIterationStatement__ctor_1__MethodInfo); DO_APP_FUNC(0x0279F1B0, CodeStatement *, CodeIterationStatement_get_IncrementStatement, (CodeIterationStatement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC8B0, CodeIterationStatement_get_IncrementStatement__MethodInfo); DO_APP_FUNC(0x0279F1E0, void, CodeIterationStatement_set_IncrementStatement, (CodeIterationStatement * __this, CodeStatement * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC828, CodeIterationStatement_set_IncrementStatement__MethodInfo); DO_APP_FUNC(0x0279F210, CodeStatement *, CodeIterationStatement_get_InitStatement, (CodeIterationStatement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC840, CodeIterationStatement_get_InitStatement__MethodInfo); DO_APP_FUNC(0x0279F240, void, CodeIterationStatement_set_InitStatement, (CodeIterationStatement * __this, CodeStatement * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC818, CodeIterationStatement_set_InitStatement__MethodInfo); DO_APP_FUNC(0x0279F270, CodeStatementCollection *, CodeIterationStatement_get_Statements, (CodeIterationStatement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC810, CodeIterationStatement_get_Statements__MethodInfo); DO_APP_FUNC(0x0279F2A0, CodeExpression *, CodeIterationStatement_get_TestExpression, (CodeIterationStatement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC820, CodeIterationStatement_get_TestExpression__MethodInfo); DO_APP_FUNC(0x0279F2D0, void, CodeIterationStatement_set_TestExpression, (CodeIterationStatement * __this, CodeExpression * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC860, CodeIterationStatement_set_TestExpression__MethodInfo); DO_APP_FUNC(0x0279F300, void, CodeLabeledStatement__ctor, (CodeLabeledStatement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC878, CodeLabeledStatement__ctor__MethodInfo); DO_APP_FUNC(0x0279F330, void, CodeLabeledStatement__ctor_1, (CodeLabeledStatement * __this, String * label, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC868, CodeLabeledStatement__ctor_1__MethodInfo); DO_APP_FUNC(0x0279F360, void, CodeLabeledStatement__ctor_2, (CodeLabeledStatement * __this, String * label, CodeStatement * statement, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC848, CodeLabeledStatement__ctor_2__MethodInfo); DO_APP_FUNC(0x0279F390, String *, CodeLabeledStatement_get_Label, (CodeLabeledStatement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC850, CodeLabeledStatement_get_Label__MethodInfo); DO_APP_FUNC(0x0279F3C0, void, CodeLabeledStatement_set_Label, (CodeLabeledStatement * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC790, CodeLabeledStatement_set_Label__MethodInfo); DO_APP_FUNC(0x0279F3F0, CodeStatement *, CodeLabeledStatement_get_Statement, (CodeLabeledStatement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC788, CodeLabeledStatement_get_Statement__MethodInfo); DO_APP_FUNC(0x0279F420, void, CodeLabeledStatement_set_Statement, (CodeLabeledStatement * __this, CodeStatement * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC7A0, CodeLabeledStatement_set_Statement__MethodInfo); DO_APP_FUNC(0x0279F450, void, CodeMemberEvent__ctor, (CodeMemberEvent * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC760, CodeMemberEvent__ctor__MethodInfo); DO_APP_FUNC(0x0279F480, CodeTypeReferenceCollection *, CodeMemberEvent_get_ImplementationTypes, (CodeMemberEvent * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC778, CodeMemberEvent_get_ImplementationTypes__MethodInfo); DO_APP_FUNC(0x0279F4B0, CodeTypeReference *, CodeMemberEvent_get_PrivateImplementationType, (CodeMemberEvent * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC770, CodeMemberEvent_get_PrivateImplementationType__MethodInfo); DO_APP_FUNC(0x0279F4E0, void, CodeMemberEvent_set_PrivateImplementationType, (CodeMemberEvent * __this, CodeTypeReference * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC7E8, CodeMemberEvent_set_PrivateImplementationType__MethodInfo); DO_APP_FUNC(0x0279F510, CodeTypeReference *, CodeMemberEvent_get_Type, (CodeMemberEvent * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC808, CodeMemberEvent_get_Type__MethodInfo); DO_APP_FUNC(0x0279F540, void, CodeMemberEvent_set_Type, (CodeMemberEvent * __this, CodeTypeReference * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC7C0, CodeMemberEvent_set_Type__MethodInfo); DO_APP_FUNC(0x0279F570, void, CodeMemberField__ctor, (CodeMemberField * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC7B8, CodeMemberField__ctor__MethodInfo); DO_APP_FUNC(0x0279F5A0, void, CodeMemberField__ctor_1, (CodeMemberField * __this, CodeTypeReference * type, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC7D8, CodeMemberField__ctor_1__MethodInfo); DO_APP_FUNC(0x0279F5D0, void, CodeMemberField__ctor_2, (CodeMemberField * __this, String * type, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC6F0, CodeMemberField__ctor_2__MethodInfo); DO_APP_FUNC(0x0279F600, void, CodeMemberField__ctor_3, (CodeMemberField * __this, Type * type, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC708, CodeMemberField__ctor_3__MethodInfo); DO_APP_FUNC(0x0279F630, CodeExpression *, CodeMemberField_get_InitExpression, (CodeMemberField * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC700, CodeMemberField_get_InitExpression__MethodInfo); DO_APP_FUNC(0x0279F660, void, CodeMemberField_set_InitExpression, (CodeMemberField * __this, CodeExpression * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC6A8, CodeMemberField_set_InitExpression__MethodInfo); DO_APP_FUNC(0x0279F690, CodeTypeReference *, CodeMemberField_get_Type, (CodeMemberField * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC6E0, CodeMemberField_get_Type__MethodInfo); DO_APP_FUNC(0x0279F6C0, void, CodeMemberField_set_Type, (CodeMemberField * __this, CodeTypeReference * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC750, CodeMemberField_set_Type__MethodInfo); DO_APP_FUNC(0x0279F6F0, void, CodeMemberProperty__ctor, (CodeMemberProperty * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC748, CodeMemberProperty__ctor__MethodInfo); DO_APP_FUNC(0x0279F720, CodeStatementCollection *, CodeMemberProperty_get_GetStatements, (CodeMemberProperty * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC758, CodeMemberProperty_get_GetStatements__MethodInfo); DO_APP_FUNC(0x0279F750, bool, CodeMemberProperty_get_HasGet, (CodeMemberProperty * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC730, CodeMemberProperty_get_HasGet__MethodInfo); DO_APP_FUNC(0x0279F780, void, CodeMemberProperty_set_HasGet, (CodeMemberProperty * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC740, CodeMemberProperty_set_HasGet__MethodInfo); DO_APP_FUNC(0x0279F7B0, bool, CodeMemberProperty_get_HasSet, (CodeMemberProperty * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC738, CodeMemberProperty_get_HasSet__MethodInfo); DO_APP_FUNC(0x0279F7E0, void, CodeMemberProperty_set_HasSet, (CodeMemberProperty * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC630, CodeMemberProperty_set_HasSet__MethodInfo); DO_APP_FUNC(0x0279F810, CodeTypeReferenceCollection *, CodeMemberProperty_get_ImplementationTypes, (CodeMemberProperty * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC640, CodeMemberProperty_get_ImplementationTypes__MethodInfo); DO_APP_FUNC(0x0279F840, CodeParameterDeclarationExpressionCollection *, CodeMemberProperty_get_Parameters, (CodeMemberProperty * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC620, CodeMemberProperty_get_Parameters__MethodInfo); DO_APP_FUNC(0x0279F870, CodeTypeReference *, CodeMemberProperty_get_PrivateImplementationType, (CodeMemberProperty * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC618, CodeMemberProperty_get_PrivateImplementationType__MethodInfo); DO_APP_FUNC(0x0279F8A0, void, CodeMemberProperty_set_PrivateImplementationType, (CodeMemberProperty * __this, CodeTypeReference * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC628, CodeMemberProperty_set_PrivateImplementationType__MethodInfo); DO_APP_FUNC(0x0279F8D0, CodeStatementCollection *, CodeMemberProperty_get_SetStatements, (CodeMemberProperty * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC680, CodeMemberProperty_get_SetStatements__MethodInfo); DO_APP_FUNC(0x0279F900, CodeTypeReference *, CodeMemberProperty_get_Type, (CodeMemberProperty * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC698, CodeMemberProperty_get_Type__MethodInfo); DO_APP_FUNC(0x0279F930, void, CodeMemberProperty_set_Type, (CodeMemberProperty * __this, CodeTypeReference * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC690, CodeMemberProperty_set_Type__MethodInfo); DO_APP_FUNC(0x0279F960, void, CodeMethodInvokeExpression__ctor, (CodeMethodInvokeExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC648, CodeMethodInvokeExpression__ctor__MethodInfo); DO_APP_FUNC(0x0279F990, void, CodeMethodInvokeExpression__ctor_1, (CodeMethodInvokeExpression * __this, CodeExpression * targetObject, String * methodName, CodeExpression__Array * parameters, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC660, CodeMethodInvokeExpression__ctor_1__MethodInfo); DO_APP_FUNC(0x0279F9C0, void, CodeMethodInvokeExpression__ctor_2, (CodeMethodInvokeExpression * __this, CodeMethodReferenceExpression * method_1, CodeExpression__Array * parameters, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC5D0, CodeMethodInvokeExpression__ctor_2__MethodInfo); DO_APP_FUNC(0x0279F9F0, CodeMethodReferenceExpression *, CodeMethodInvokeExpression_get_Method, (CodeMethodInvokeExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC5C8, CodeMethodInvokeExpression_get_Method__MethodInfo); DO_APP_FUNC(0x0279FA20, void, CodeMethodInvokeExpression_set_Method, (CodeMethodInvokeExpression * __this, CodeMethodReferenceExpression * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC5D8, CodeMethodInvokeExpression_set_Method__MethodInfo); DO_APP_FUNC(0x0279FA50, CodeExpressionCollection *, CodeMethodInvokeExpression_get_Parameters, (CodeMethodInvokeExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC5A8, CodeMethodInvokeExpression_get_Parameters__MethodInfo); DO_APP_FUNC(0x0279FA80, void, CodeMethodReferenceExpression__ctor, (CodeMethodReferenceExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC5C0, CodeMethodReferenceExpression__ctor__MethodInfo); DO_APP_FUNC(0x0279FAB0, void, CodeMethodReferenceExpression__ctor_1, (CodeMethodReferenceExpression * __this, CodeExpression * targetObject, String * methodName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC5B8, CodeMethodReferenceExpression__ctor_1__MethodInfo); DO_APP_FUNC(0x0279FAE0, void, CodeMethodReferenceExpression__ctor_2, (CodeMethodReferenceExpression * __this, CodeExpression * targetObject, String * methodName, CodeTypeReference__Array * typeParameters, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC608, CodeMethodReferenceExpression__ctor_2__MethodInfo); DO_APP_FUNC(0x0279FB10, String *, CodeMethodReferenceExpression_get_MethodName, (CodeMethodReferenceExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC610, CodeMethodReferenceExpression_get_MethodName__MethodInfo); DO_APP_FUNC(0x0279FB40, void, CodeMethodReferenceExpression_set_MethodName, (CodeMethodReferenceExpression * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC5F0, CodeMethodReferenceExpression_set_MethodName__MethodInfo); DO_APP_FUNC(0x0279FB70, CodeExpression *, CodeMethodReferenceExpression_get_TargetObject, (CodeMethodReferenceExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC5E8, CodeMethodReferenceExpression_get_TargetObject__MethodInfo); DO_APP_FUNC(0x0279FBA0, void, CodeMethodReferenceExpression_set_TargetObject, (CodeMethodReferenceExpression * __this, CodeExpression * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC5F8, CodeMethodReferenceExpression_set_TargetObject__MethodInfo); DO_APP_FUNC(0x0279FBD0, CodeTypeReferenceCollection *, CodeMethodReferenceExpression_get_TypeArguments, (CodeMethodReferenceExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC548, CodeMethodReferenceExpression_get_TypeArguments__MethodInfo); DO_APP_FUNC(0x0279FC00, void, CodeMethodReturnStatement__ctor, (CodeMethodReturnStatement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC558, CodeMethodReturnStatement__ctor__MethodInfo); DO_APP_FUNC(0x0279FC30, void, CodeMethodReturnStatement__ctor_1, (CodeMethodReturnStatement * __this, CodeExpression * expression, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC550, CodeMethodReturnStatement__ctor_1__MethodInfo); DO_APP_FUNC(0x0279FC60, CodeExpression *, CodeMethodReturnStatement_get_Expression, (CodeMethodReturnStatement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC520, CodeMethodReturnStatement_get_Expression__MethodInfo); DO_APP_FUNC(0x0279FC90, void, CodeMethodReturnStatement_set_Expression, (CodeMethodReturnStatement * __this, CodeExpression * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC540, CodeMethodReturnStatement_set_Expression__MethodInfo); DO_APP_FUNC(0x0279FCC0, void, CodeObjectCreateExpression__ctor, (CodeObjectCreateExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC598, CodeObjectCreateExpression__ctor__MethodInfo); DO_APP_FUNC(0x0279FCF0, void, CodeObjectCreateExpression__ctor_1, (CodeObjectCreateExpression * __this, CodeTypeReference * createType, CodeExpression__Array * parameters, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC590, CodeObjectCreateExpression__ctor_1__MethodInfo); DO_APP_FUNC(0x0279FD20, void, CodeObjectCreateExpression__ctor_2, (CodeObjectCreateExpression * __this, String * createType, CodeExpression__Array * parameters, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC5A0, CodeObjectCreateExpression__ctor_2__MethodInfo); DO_APP_FUNC(0x0279FD50, void, CodeObjectCreateExpression__ctor_3, (CodeObjectCreateExpression * __this, Type * createType, CodeExpression__Array * parameters, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC568, CodeObjectCreateExpression__ctor_3__MethodInfo); DO_APP_FUNC(0x0279FD80, CodeTypeReference *, CodeObjectCreateExpression_get_CreateType, (CodeObjectCreateExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC580, CodeObjectCreateExpression_get_CreateType__MethodInfo); DO_APP_FUNC(0x0279FDB0, void, CodeObjectCreateExpression_set_CreateType, (CodeObjectCreateExpression * __this, CodeTypeReference * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC570, CodeObjectCreateExpression_set_CreateType__MethodInfo); DO_APP_FUNC(0x0279FDE0, CodeExpressionCollection *, CodeObjectCreateExpression_get_Parameters, (CodeObjectCreateExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC488, CodeObjectCreateExpression_get_Parameters__MethodInfo); DO_APP_FUNC(0x0279FE10, void, CodePrimitiveExpression__ctor, (CodePrimitiveExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC498, CodePrimitiveExpression__ctor__MethodInfo); DO_APP_FUNC(0x0279FE40, void, CodePrimitiveExpression__ctor_1, (CodePrimitiveExpression * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC468, CodePrimitiveExpression__ctor_1__MethodInfo); DO_APP_FUNC(0x0279FE70, Object *, CodePrimitiveExpression_get_Value, (CodePrimitiveExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC460, CodePrimitiveExpression_get_Value__MethodInfo); DO_APP_FUNC(0x0279FEA0, void, CodePrimitiveExpression_set_Value, (CodePrimitiveExpression * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC470, CodePrimitiveExpression_set_Value__MethodInfo); DO_APP_FUNC(0x0279FED0, void, CodePropertyReferenceExpression__ctor, (CodePropertyReferenceExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC500, CodePropertyReferenceExpression__ctor__MethodInfo); DO_APP_FUNC(0x0279FF00, void, CodePropertyReferenceExpression__ctor_1, (CodePropertyReferenceExpression * __this, CodeExpression * targetObject, String * propertyName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC518, CodePropertyReferenceExpression__ctor_1__MethodInfo); DO_APP_FUNC(0x0279FF30, String *, CodePropertyReferenceExpression_get_PropertyName, (CodePropertyReferenceExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC510, CodePropertyReferenceExpression_get_PropertyName__MethodInfo); DO_APP_FUNC(0x0279FF60, void, CodePropertyReferenceExpression_set_PropertyName, (CodePropertyReferenceExpression * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC4A0, CodePropertyReferenceExpression_set_PropertyName__MethodInfo); DO_APP_FUNC(0x0279FF90, CodeExpression *, CodePropertyReferenceExpression_get_TargetObject, (CodePropertyReferenceExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC4E0, CodePropertyReferenceExpression_get_TargetObject__MethodInfo); DO_APP_FUNC(0x0279FFC0, void, CodePropertyReferenceExpression_set_TargetObject, (CodePropertyReferenceExpression * __this, CodeExpression * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC408, CodePropertyReferenceExpression_set_TargetObject__MethodInfo); DO_APP_FUNC(0x0279FFF0, void, CodePropertySetValueReferenceExpression__ctor, (CodePropertySetValueReferenceExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC400, CodePropertySetValueReferenceExpression__ctor__MethodInfo); DO_APP_FUNC(0x027A0020, void, CodeRegionDirective__ctor, (CodeRegionDirective * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC418, CodeRegionDirective__ctor__MethodInfo); DO_APP_FUNC(0x027A0050, void, CodeRegionDirective__ctor_1, (CodeRegionDirective * __this, CodeRegionMode__Enum regionMode, String * regionText, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC3E8, CodeRegionDirective__ctor_1__MethodInfo); DO_APP_FUNC(0x027A0080, CodeRegionMode__Enum, CodeRegionDirective_get_RegionMode, (CodeRegionDirective * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC3F8, CodeRegionDirective_get_RegionMode__MethodInfo); DO_APP_FUNC(0x027A00B0, void, CodeRegionDirective_set_RegionMode, (CodeRegionDirective * __this, CodeRegionMode__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC3F0, CodeRegionDirective_set_RegionMode__MethodInfo); DO_APP_FUNC(0x027A00E0, String *, CodeRegionDirective_get_RegionText, (CodeRegionDirective * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC448, CodeRegionDirective_get_RegionText__MethodInfo); DO_APP_FUNC(0x027A0110, void, CodeRegionDirective_set_RegionText, (CodeRegionDirective * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC450, CodeRegionDirective_set_RegionText__MethodInfo); DO_APP_FUNC(0x027A0140, void, CodeRemoveEventStatement__ctor, (CodeRemoveEventStatement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC438, CodeRemoveEventStatement__ctor__MethodInfo); DO_APP_FUNC(0x027A0170, void, CodeRemoveEventStatement__ctor_1, (CodeRemoveEventStatement * __this, CodeEventReferenceExpression * eventRef, CodeExpression * listener, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC430, CodeRemoveEventStatement__ctor_1__MethodInfo); DO_APP_FUNC(0x027A01A0, void, CodeRemoveEventStatement__ctor_2, (CodeRemoveEventStatement * __this, CodeExpression * targetObject, String * eventName, CodeExpression * listener, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC440, CodeRemoveEventStatement__ctor_2__MethodInfo); DO_APP_FUNC(0x027A01D0, CodeEventReferenceExpression *, CodeRemoveEventStatement_get_Event, (CodeRemoveEventStatement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC3A0, CodeRemoveEventStatement_get_Event__MethodInfo); DO_APP_FUNC(0x027A0200, void, CodeRemoveEventStatement_set_Event, (CodeRemoveEventStatement * __this, CodeEventReferenceExpression * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC3B0, CodeRemoveEventStatement_set_Event__MethodInfo); DO_APP_FUNC(0x027A0230, CodeExpression *, CodeRemoveEventStatement_get_Listener, (CodeRemoveEventStatement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC3A8, CodeRemoveEventStatement_get_Listener__MethodInfo); DO_APP_FUNC(0x027A0260, void, CodeRemoveEventStatement_set_Listener, (CodeRemoveEventStatement * __this, CodeExpression * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC388, CodeRemoveEventStatement_set_Listener__MethodInfo); DO_APP_FUNC(0x027A0290, void, CodeSnippetCompileUnit__ctor, (CodeSnippetCompileUnit * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC398, CodeSnippetCompileUnit__ctor__MethodInfo); DO_APP_FUNC(0x027A02C0, void, CodeSnippetCompileUnit__ctor_1, (CodeSnippetCompileUnit * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC3D8, CodeSnippetCompileUnit__ctor_1__MethodInfo); DO_APP_FUNC(0x027A02F0, CodeLinePragma *, CodeSnippetCompileUnit_get_LinePragma, (CodeSnippetCompileUnit * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC3D0, CodeSnippetCompileUnit_get_LinePragma__MethodInfo); DO_APP_FUNC(0x027A0320, void, CodeSnippetCompileUnit_set_LinePragma, (CodeSnippetCompileUnit * __this, CodeLinePragma * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC3E0, CodeSnippetCompileUnit_set_LinePragma__MethodInfo); DO_APP_FUNC(0x027A0350, String *, CodeSnippetCompileUnit_get_Value, (CodeSnippetCompileUnit * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC3B8, CodeSnippetCompileUnit_get_Value__MethodInfo); DO_APP_FUNC(0x027A0380, void, CodeSnippetCompileUnit_set_Value, (CodeSnippetCompileUnit * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC3C8, CodeSnippetCompileUnit_set_Value__MethodInfo); DO_APP_FUNC(0x027A03B0, void, CodeSnippetExpression__ctor, (CodeSnippetExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC3C0, CodeSnippetExpression__ctor__MethodInfo); DO_APP_FUNC(0x027A03E0, void, CodeSnippetExpression__ctor_1, (CodeSnippetExpression * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC318, CodeSnippetExpression__ctor_1__MethodInfo); DO_APP_FUNC(0x027A0410, String *, CodeSnippetExpression_get_Value, (CodeSnippetExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC328, CodeSnippetExpression_get_Value__MethodInfo); DO_APP_FUNC(0x027A0440, void, CodeSnippetExpression_set_Value, (CodeSnippetExpression * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC300, CodeSnippetExpression_set_Value__MethodInfo); DO_APP_FUNC(0x027A0470, void, CodeSnippetStatement__ctor, (CodeSnippetStatement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC2F8, CodeSnippetStatement__ctor__MethodInfo); DO_APP_FUNC(0x027A04A0, void, CodeSnippetStatement__ctor_1, (CodeSnippetStatement * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC308, CodeSnippetStatement__ctor_1__MethodInfo); DO_APP_FUNC(0x027A04D0, String *, CodeSnippetStatement_get_Value, (CodeSnippetStatement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC360, CodeSnippetStatement_get_Value__MethodInfo); DO_APP_FUNC(0x027A0500, void, CodeSnippetStatement_set_Value, (CodeSnippetStatement * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC378, CodeSnippetStatement_set_Value__MethodInfo); DO_APP_FUNC(0x027A0530, void, CodeSnippetTypeMember__ctor, (CodeSnippetTypeMember * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC370, CodeSnippetTypeMember__ctor__MethodInfo); DO_APP_FUNC(0x027A0560, void, CodeSnippetTypeMember__ctor_1, (CodeSnippetTypeMember * __this, String * text, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC330, CodeSnippetTypeMember__ctor_1__MethodInfo); DO_APP_FUNC(0x027A0590, String *, CodeSnippetTypeMember_get_Text, (CodeSnippetTypeMember * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC358, CodeSnippetTypeMember_get_Text__MethodInfo); DO_APP_FUNC(0x027A05C0, void, CodeSnippetTypeMember_set_Text, (CodeSnippetTypeMember * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC2A0, CodeSnippetTypeMember_set_Text__MethodInfo); DO_APP_FUNC(0x027A05F0, void, CodeThisReferenceExpression__ctor, (CodeThisReferenceExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC298, CodeThisReferenceExpression__ctor__MethodInfo); DO_APP_FUNC(0x027A0620, void, CodeThrowExceptionStatement__ctor, (CodeThrowExceptionStatement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC2A8, CodeThrowExceptionStatement__ctor__MethodInfo); DO_APP_FUNC(0x027A0650, void, CodeThrowExceptionStatement__ctor_1, (CodeThrowExceptionStatement * __this, CodeExpression * toThrow, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC278, CodeThrowExceptionStatement__ctor_1__MethodInfo); DO_APP_FUNC(0x027A0680, CodeExpression *, CodeThrowExceptionStatement_get_ToThrow, (CodeThrowExceptionStatement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC290, CodeThrowExceptionStatement_get_ToThrow__MethodInfo); DO_APP_FUNC(0x027A06B0, void, CodeThrowExceptionStatement_set_ToThrow, (CodeThrowExceptionStatement * __this, CodeExpression * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC288, CodeThrowExceptionStatement_set_ToThrow__MethodInfo); DO_APP_FUNC(0x027A06E0, void, CodeTryCatchFinallyStatement__ctor, (CodeTryCatchFinallyStatement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC2D8, CodeTryCatchFinallyStatement__ctor__MethodInfo); DO_APP_FUNC(0x027A0710, void, CodeTryCatchFinallyStatement__ctor_1, (CodeTryCatchFinallyStatement * __this, CodeStatement__Array * tryStatements, CodeCatchClause__Array * catchClauses, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC2F0, CodeTryCatchFinallyStatement__ctor_1__MethodInfo); DO_APP_FUNC(0x027A0740, void, CodeTryCatchFinallyStatement__ctor_2, (CodeTryCatchFinallyStatement * __this, CodeStatement__Array * tryStatements, CodeCatchClause__Array * catchClauses, CodeStatement__Array * finallyStatements, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC2B8, CodeTryCatchFinallyStatement__ctor_2__MethodInfo); DO_APP_FUNC(0x027A0770, CodeCatchClauseCollection *, CodeTryCatchFinallyStatement_get_CatchClauses, (CodeTryCatchFinallyStatement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC2B0, CodeTryCatchFinallyStatement_get_CatchClauses__MethodInfo); DO_APP_FUNC(0x027A07A0, CodeStatementCollection *, CodeTryCatchFinallyStatement_get_FinallyStatements, (CodeTryCatchFinallyStatement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC2D0, CodeTryCatchFinallyStatement_get_FinallyStatements__MethodInfo); DO_APP_FUNC(0x027A07D0, CodeStatementCollection *, CodeTryCatchFinallyStatement_get_TryStatements, (CodeTryCatchFinallyStatement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC1F8, CodeTryCatchFinallyStatement_get_TryStatements__MethodInfo); DO_APP_FUNC(0x027A0800, void, CodeTypeConstructor__ctor, (CodeTypeConstructor * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC210, CodeTypeConstructor__ctor__MethodInfo); DO_APP_FUNC(0x027A0830, void, CodeTypeDelegate__ctor, (CodeTypeDelegate * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC208, CodeTypeDelegate__ctor__MethodInfo); DO_APP_FUNC(0x027A0860, void, CodeTypeDelegate__ctor_1, (CodeTypeDelegate * __this, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC1D8, CodeTypeDelegate__ctor_1__MethodInfo); DO_APP_FUNC(0x027A0890, CodeParameterDeclarationExpressionCollection *, CodeTypeDelegate_get_Parameters, (CodeTypeDelegate * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC1E8, CodeTypeDelegate_get_Parameters__MethodInfo); DO_APP_FUNC(0x027A08C0, CodeTypeReference *, CodeTypeDelegate_get_ReturnType, (CodeTypeDelegate * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC268, CodeTypeDelegate_get_ReturnType__MethodInfo); DO_APP_FUNC(0x027A08F0, void, CodeTypeDelegate_set_ReturnType, (CodeTypeDelegate * __this, CodeTypeReference * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC260, CodeTypeDelegate_set_ReturnType__MethodInfo); DO_APP_FUNC(0x027A0920, void, CodeTypeOfExpression__ctor, (CodeTypeOfExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC270, CodeTypeOfExpression__ctor__MethodInfo); DO_APP_FUNC(0x027A0950, void, CodeTypeOfExpression__ctor_1, (CodeTypeOfExpression * __this, CodeTypeReference * type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC228, CodeTypeOfExpression__ctor_1__MethodInfo); DO_APP_FUNC(0x027A0980, void, CodeTypeOfExpression__ctor_2, (CodeTypeOfExpression * __this, String * type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC250, CodeTypeOfExpression__ctor_2__MethodInfo); DO_APP_FUNC(0x027A09B0, void, CodeTypeOfExpression__ctor_3, (CodeTypeOfExpression * __this, Type * type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC240, CodeTypeOfExpression__ctor_3__MethodInfo); DO_APP_FUNC(0x027A09E0, CodeTypeReference *, CodeTypeOfExpression_get_Type, (CodeTypeOfExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC188, CodeTypeOfExpression_get_Type__MethodInfo); DO_APP_FUNC(0x027A0A10, void, CodeTypeOfExpression_set_Type, (CodeTypeOfExpression * __this, CodeTypeReference * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC1A0, CodeTypeOfExpression_set_Type__MethodInfo); DO_APP_FUNC(0x027A0A40, void, CodeTypeReferenceExpression__ctor, (CodeTypeReferenceExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC168, CodeTypeReferenceExpression__ctor__MethodInfo); DO_APP_FUNC(0x027A0A70, void, CodeTypeReferenceExpression__ctor_1, (CodeTypeReferenceExpression * __this, CodeTypeReference * type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC160, CodeTypeReferenceExpression__ctor_1__MethodInfo); DO_APP_FUNC(0x027A0AA0, void, CodeTypeReferenceExpression__ctor_2, (CodeTypeReferenceExpression * __this, String * type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC178, CodeTypeReferenceExpression__ctor_2__MethodInfo); DO_APP_FUNC(0x027A0AD0, void, CodeTypeReferenceExpression__ctor_3, (CodeTypeReferenceExpression * __this, Type * type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC1B8, CodeTypeReferenceExpression__ctor_3__MethodInfo); DO_APP_FUNC(0x027A0B00, CodeTypeReference *, CodeTypeReferenceExpression_get_Type, (CodeTypeReferenceExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC1C8, CodeTypeReferenceExpression_get_Type__MethodInfo); DO_APP_FUNC(0x027A0B30, void, CodeTypeReferenceExpression_set_Type, (CodeTypeReferenceExpression * __this, CodeTypeReference * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC1C0, CodeTypeReferenceExpression_set_Type__MethodInfo); DO_APP_FUNC(0x027A0B60, void, CodeVariableDeclarationStatement__ctor, (CodeVariableDeclarationStatement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC1A8, CodeVariableDeclarationStatement__ctor__MethodInfo); DO_APP_FUNC(0x027A0B90, void, CodeVariableDeclarationStatement__ctor_1, (CodeVariableDeclarationStatement * __this, CodeTypeReference * type, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC1B0, CodeVariableDeclarationStatement__ctor_1__MethodInfo); DO_APP_FUNC(0x027A0BC0, void, CodeVariableDeclarationStatement__ctor_2, (CodeVariableDeclarationStatement * __this, CodeTypeReference * type, String * name, CodeExpression * initExpression, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC118, CodeVariableDeclarationStatement__ctor_2__MethodInfo); DO_APP_FUNC(0x027A0BF0, void, CodeVariableDeclarationStatement__ctor_3, (CodeVariableDeclarationStatement * __this, String * type, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC110, CodeVariableDeclarationStatement__ctor_3__MethodInfo); DO_APP_FUNC(0x027A0C20, void, CodeVariableDeclarationStatement__ctor_4, (CodeVariableDeclarationStatement * __this, String * type, String * name, CodeExpression * initExpression, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC120, CodeVariableDeclarationStatement__ctor_4__MethodInfo); DO_APP_FUNC(0x027A0C50, void, CodeVariableDeclarationStatement__ctor_5, (CodeVariableDeclarationStatement * __this, Type * type, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC0F0, CodeVariableDeclarationStatement__ctor_5__MethodInfo); DO_APP_FUNC(0x027A0C80, void, CodeVariableDeclarationStatement__ctor_6, (CodeVariableDeclarationStatement * __this, Type * type, String * name, CodeExpression * initExpression, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC100, CodeVariableDeclarationStatement__ctor_6__MethodInfo); DO_APP_FUNC(0x027A0CB0, CodeExpression *, CodeVariableDeclarationStatement_get_InitExpression, (CodeVariableDeclarationStatement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC0F8, CodeVariableDeclarationStatement_get_InitExpression__MethodInfo); DO_APP_FUNC(0x027A0CE0, void, CodeVariableDeclarationStatement_set_InitExpression, (CodeVariableDeclarationStatement * __this, CodeExpression * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC150, CodeVariableDeclarationStatement_set_InitExpression__MethodInfo); DO_APP_FUNC(0x027A0D10, String *, CodeVariableDeclarationStatement_get_Name, (CodeVariableDeclarationStatement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC158, CodeVariableDeclarationStatement_get_Name__MethodInfo); DO_APP_FUNC(0x027A0D40, void, CodeVariableDeclarationStatement_set_Name, (CodeVariableDeclarationStatement * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC138, CodeVariableDeclarationStatement_set_Name__MethodInfo); DO_APP_FUNC(0x027A0D70, CodeTypeReference *, CodeVariableDeclarationStatement_get_Type, (CodeVariableDeclarationStatement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC130, CodeVariableDeclarationStatement_get_Type__MethodInfo); DO_APP_FUNC(0x027A0DA0, void, CodeVariableDeclarationStatement_set_Type, (CodeVariableDeclarationStatement * __this, CodeTypeReference * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC140, CodeVariableDeclarationStatement_set_Type__MethodInfo); DO_APP_FUNC(0x027A0DD0, void, CodeVariableReferenceExpression__ctor, (CodeVariableReferenceExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBFF0, CodeVariableReferenceExpression__ctor__MethodInfo); DO_APP_FUNC(0x027A0E00, void, CodeVariableReferenceExpression__ctor_1, (CodeVariableReferenceExpression * __this, String * variableName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC028, CodeVariableReferenceExpression__ctor_1__MethodInfo); DO_APP_FUNC(0x027A0E30, String *, CodeVariableReferenceExpression_get_VariableName, (CodeVariableReferenceExpression * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC018, CodeVariableReferenceExpression_get_VariableName__MethodInfo); DO_APP_FUNC(0x027A0E60, void, CodeVariableReferenceExpression_set_VariableName, (CodeVariableReferenceExpression * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBFA0, CodeVariableReferenceExpression_set_VariableName__MethodInfo); DO_APP_FUNC(0x027A0E90, void, CodeCompiler__ctor, (CodeCompiler * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBFC8, CodeCompiler__ctor__MethodInfo); DO_APP_FUNC(0x027A0EC0, CompilerResults *, CodeCompiler_FromDom, (CodeCompiler * __this, CompilerParameters * options, CodeCompileUnit * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC0C8, CodeCompiler_FromDom__MethodInfo); DO_APP_FUNC(0x027A0EF0, CompilerResults *, CodeCompiler_FromDomBatch, (CodeCompiler * __this, CompilerParameters * options, CodeCompileUnit__Array * ea, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC0B8, CodeCompiler_FromDomBatch__MethodInfo); DO_APP_FUNC(0x027A0F20, CompilerResults *, CodeCompiler_FromFile, (CodeCompiler * __this, CompilerParameters * options, String * fileName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC0E0, CodeCompiler_FromFile__MethodInfo); DO_APP_FUNC(0x027A0F50, CompilerResults *, CodeCompiler_FromFileBatch, (CodeCompiler * __this, CompilerParameters * options, String__Array * fileNames, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC068, CodeCompiler_FromFileBatch__MethodInfo); DO_APP_FUNC(0x027A0F80, CompilerResults *, CodeCompiler_FromSource, (CodeCompiler * __this, CompilerParameters * options, String * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC090, CodeCompiler_FromSource__MethodInfo); DO_APP_FUNC(0x027A0FB0, CompilerResults *, CodeCompiler_FromSourceBatch, (CodeCompiler * __this, CompilerParameters * options, String__Array * sources, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC080, CodeCompiler_FromSourceBatch__MethodInfo); DO_APP_FUNC(0x027A0FE0, String *, CodeCompiler_GetResponseFileCmdArgs, (CodeCompiler * __this, CompilerParameters * options, String * cmdArgs, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBF20, CodeCompiler_GetResponseFileCmdArgs__MethodInfo); DO_APP_FUNC(0x027A1010, String *, CodeCompiler_JoinStringArray, (String__Array * sa, String * separator, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBF48, CodeCompiler_JoinStringArray__MethodInfo); DO_APP_FUNC(0x027A1040, CompilerResults *, CodeCompiler_System_CodeDom_Compiler_ICodeCompiler_CompileAssemblyFromDom, (CodeCompiler * __this, CompilerParameters * options, CodeCompileUnit * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBF08, CodeCompiler_System_CodeDom_Compiler_ICodeCompiler_CompileAssemblyFromDom__MethodInfo); DO_APP_FUNC(0x027A1070, CompilerResults *, CodeCompiler_System_CodeDom_Compiler_ICodeCompiler_CompileAssemblyFromDomBatch, (CodeCompiler * __this, CompilerParameters * options, CodeCompileUnit__Array * ea, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBF00, CodeCompiler_System_CodeDom_Compiler_ICodeCompiler_CompileAssemblyFromDomBatch__MethodInfo); DO_APP_FUNC(0x027A10A0, CompilerResults *, CodeCompiler_System_CodeDom_Compiler_ICodeCompiler_CompileAssemblyFromFile, (CodeCompiler * __this, CompilerParameters * options, String * fileName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBF10, CodeCompiler_System_CodeDom_Compiler_ICodeCompiler_CompileAssemblyFromFile__MethodInfo); DO_APP_FUNC(0x027A10D0, CompilerResults *, CodeCompiler_System_CodeDom_Compiler_ICodeCompiler_CompileAssemblyFromFileBatch, (CodeCompiler * __this, CompilerParameters * options, String__Array * fileNames, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBF80, CodeCompiler_System_CodeDom_Compiler_ICodeCompiler_CompileAssemblyFromFileBatch__MethodInfo); DO_APP_FUNC(0x027A1100, CompilerResults *, CodeCompiler_System_CodeDom_Compiler_ICodeCompiler_CompileAssemblyFromSource, (CodeCompiler * __this, CompilerParameters * options, String * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBF98, CodeCompiler_System_CodeDom_Compiler_ICodeCompiler_CompileAssemblyFromSource__MethodInfo); DO_APP_FUNC(0x027A1130, CompilerResults *, CodeCompiler_System_CodeDom_Compiler_ICodeCompiler_CompileAssemblyFromSourceBatch, (CodeCompiler * __this, CompilerParameters * options, String__Array * sources, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBF88, CodeCompiler_System_CodeDom_Compiler_ICodeCompiler_CompileAssemblyFromSourceBatch__MethodInfo); DO_APP_FUNC(0x027A1160, void, CodeGenerator__ctor, (CodeGenerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBF58, CodeGenerator__ctor__MethodInfo); DO_APP_FUNC(0x027A1190, CodeTypeDeclaration *, CodeGenerator_get_CurrentClass, (CodeGenerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBF78, CodeGenerator_get_CurrentClass__MethodInfo); DO_APP_FUNC(0x027A11C0, CodeTypeMember *, CodeGenerator_get_CurrentMember, (CodeGenerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBE90, CodeGenerator_get_CurrentMember__MethodInfo); DO_APP_FUNC(0x027A11F0, String *, CodeGenerator_get_CurrentMemberName, (CodeGenerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBE80, CodeGenerator_get_CurrentMemberName__MethodInfo); DO_APP_FUNC(0x027A1220, String *, CodeGenerator_get_CurrentTypeName, (CodeGenerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBEA0, CodeGenerator_get_CurrentTypeName__MethodInfo); DO_APP_FUNC(0x027A1250, int32_t, CodeGenerator_get_Indent, (CodeGenerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBE60, CodeGenerator_get_Indent__MethodInfo); DO_APP_FUNC(0x027A1280, void, CodeGenerator_set_Indent, (CodeGenerator * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBE70, CodeGenerator_set_Indent__MethodInfo); DO_APP_FUNC(0x027A12B0, bool, CodeGenerator_get_IsCurrentClass, (CodeGenerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBE68, CodeGenerator_get_IsCurrentClass__MethodInfo); DO_APP_FUNC(0x027A12E0, bool, CodeGenerator_get_IsCurrentDelegate, (CodeGenerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBEE8, CodeGenerator_get_IsCurrentDelegate__MethodInfo); DO_APP_FUNC(0x027A1310, bool, CodeGenerator_get_IsCurrentEnum, (CodeGenerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBEF0, CodeGenerator_get_IsCurrentEnum__MethodInfo); DO_APP_FUNC(0x027A1340, bool, CodeGenerator_get_IsCurrentInterface, (CodeGenerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBED0, CodeGenerator_get_IsCurrentInterface__MethodInfo); DO_APP_FUNC(0x027A1370, bool, CodeGenerator_get_IsCurrentStruct, (CodeGenerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBEC0, CodeGenerator_get_IsCurrentStruct__MethodInfo); DO_APP_FUNC(0x027A13A0, CodeGeneratorOptions *, CodeGenerator_get_Options, (CodeGenerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBEE0, CodeGenerator_get_Options__MethodInfo); DO_APP_FUNC(0x027A13D0, TextWriter *, CodeGenerator_get_Output, (CodeGenerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBDD8, CodeGenerator_get_Output__MethodInfo); DO_APP_FUNC(0x027A1400, void, CodeGenerator_ContinueOnNewLine, (CodeGenerator * __this, String * st, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBDE8, CodeGenerator_ContinueOnNewLine__MethodInfo); DO_APP_FUNC(0x027A1430, void, CodeGenerator_GenerateBinaryOperatorExpression, (CodeGenerator * __this, CodeBinaryOperatorExpression * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBDE0, CodeGenerator_GenerateBinaryOperatorExpression__MethodInfo); DO_APP_FUNC(0x027A1460, void, CodeGenerator_GenerateCodeFromMember, (CodeGenerator * __this, CodeTypeMember * member, TextWriter * writer, CodeGeneratorOptions * options, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBDB8, CodeGenerator_GenerateCodeFromMember__MethodInfo); DO_APP_FUNC(0x027A1490, void, CodeGenerator_GenerateCommentStatement, (CodeGenerator * __this, CodeCommentStatement * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBDD0, CodeGenerator_GenerateCommentStatement__MethodInfo); DO_APP_FUNC(0x027A14C0, void, CodeGenerator_GenerateCommentStatements, (CodeGenerator * __this, CodeCommentStatementCollection * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBE30, CodeGenerator_GenerateCommentStatements__MethodInfo); DO_APP_FUNC(0x027A14F0, void, CodeGenerator_GenerateCompileUnit, (CodeGenerator * __this, CodeCompileUnit * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBE28, CodeGenerator_GenerateCompileUnit__MethodInfo); DO_APP_FUNC(0x027A1520, void, CodeGenerator_GenerateCompileUnitEnd, (CodeGenerator * __this, CodeCompileUnit * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBE38, CodeGenerator_GenerateCompileUnitEnd__MethodInfo); DO_APP_FUNC(0x027A1550, void, CodeGenerator_GenerateCompileUnitStart, (CodeGenerator * __this, CodeCompileUnit * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBDF8, CodeGenerator_GenerateCompileUnitStart__MethodInfo); DO_APP_FUNC(0x027A1580, void, CodeGenerator_GenerateDecimalValue, (CodeGenerator * __this, Decimal d, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBE08, CodeGenerator_GenerateDecimalValue__MethodInfo); DO_APP_FUNC(0x027A15B0, void, CodeGenerator_GenerateDefaultValueExpression, (CodeGenerator * __this, CodeDefaultValueExpression * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBE00, CodeGenerator_GenerateDefaultValueExpression__MethodInfo); DO_APP_FUNC(0x027A15E0, void, CodeGenerator_GenerateDirectionExpression, (CodeGenerator * __this, CodeDirectionExpression * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBD28, CodeGenerator_GenerateDirectionExpression__MethodInfo); DO_APP_FUNC(0x027A1610, void, CodeGenerator_GenerateDirectives, (CodeGenerator * __this, CodeDirectiveCollection * directives, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBD50, CodeGenerator_GenerateDirectives__MethodInfo); DO_APP_FUNC(0x027A1640, void, CodeGenerator_GenerateDoubleValue, (CodeGenerator * __this, double d, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBD18, CodeGenerator_GenerateDoubleValue__MethodInfo); DO_APP_FUNC(0x027A1670, void, CodeGenerator_GenerateExpression, (CodeGenerator * __this, CodeExpression * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBD10, CodeGenerator_GenerateExpression__MethodInfo); DO_APP_FUNC(0x027A16A0, void, CodeGenerator_GenerateNamespace, (CodeGenerator * __this, CodeNamespace * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBD20, CodeGenerator_GenerateNamespace__MethodInfo); DO_APP_FUNC(0x027A16D0, void, CodeGenerator_GenerateNamespaceImports, (CodeGenerator * __this, CodeNamespace * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBD98, CodeGenerator_GenerateNamespaceImports__MethodInfo); DO_APP_FUNC(0x027A1700, void, CodeGenerator_GenerateNamespaces, (CodeGenerator * __this, CodeCompileUnit * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBDA8, CodeGenerator_GenerateNamespaces__MethodInfo); DO_APP_FUNC(0x027A1730, void, CodeGenerator_GenerateParameterDeclarationExpression, (CodeGenerator * __this, CodeParameterDeclarationExpression * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBDA0, CodeGenerator_GenerateParameterDeclarationExpression__MethodInfo); DO_APP_FUNC(0x027A1760, void, CodeGenerator_GeneratePrimitiveExpression, (CodeGenerator * __this, CodePrimitiveExpression * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBD60, CodeGenerator_GeneratePrimitiveExpression__MethodInfo); DO_APP_FUNC(0x027A1790, void, CodeGenerator_GenerateSingleFloatValue, (CodeGenerator * __this, float s, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBD78, CodeGenerator_GenerateSingleFloatValue__MethodInfo); DO_APP_FUNC(0x027A17C0, void, CodeGenerator_GenerateSnippetCompileUnit, (CodeGenerator * __this, CodeSnippetCompileUnit * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBCB8, CodeGenerator_GenerateSnippetCompileUnit__MethodInfo); DO_APP_FUNC(0x027A17F0, void, CodeGenerator_GenerateSnippetStatement, (CodeGenerator * __this, CodeSnippetStatement * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBCB0, CodeGenerator_GenerateSnippetStatement__MethodInfo); DO_APP_FUNC(0x027A1820, void, CodeGenerator_GenerateStatement, (CodeGenerator * __this, CodeStatement * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBCC8, CodeGenerator_GenerateStatement__MethodInfo); DO_APP_FUNC(0x027A1850, void, CodeGenerator_GenerateStatements, (CodeGenerator * __this, CodeStatementCollection * stms, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBC88, CodeGenerator_GenerateStatements__MethodInfo); DO_APP_FUNC(0x027A1880, void, CodeGenerator_GenerateTypeOfExpression, (CodeGenerator * __this, CodeTypeOfExpression * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBCA0, CodeGenerator_GenerateTypeOfExpression__MethodInfo); DO_APP_FUNC(0x027A18B0, void, CodeGenerator_GenerateTypeReferenceExpression, (CodeGenerator * __this, CodeTypeReferenceExpression * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBC90, CodeGenerator_GenerateTypeReferenceExpression__MethodInfo); DO_APP_FUNC(0x027A18E0, void, CodeGenerator_GenerateTypes, (CodeGenerator * __this, CodeNamespace * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBCF0, CodeGenerator_GenerateTypes__MethodInfo); DO_APP_FUNC(0x027A1910, bool, CodeGenerator_IsValidLanguageIndependentIdentifier, (String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBD00, CodeGenerator_IsValidLanguageIndependentIdentifier__MethodInfo); DO_APP_FUNC(0x027A1940, void, CodeGenerator_OutputAttributeArgument, (CodeGenerator * __this, CodeAttributeArgument * arg, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBCD8, CodeGenerator_OutputAttributeArgument__MethodInfo); DO_APP_FUNC(0x027A1970, void, CodeGenerator_OutputAttributeDeclarations, (CodeGenerator * __this, CodeAttributeDeclarationCollection * attributes, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBCD0, CodeGenerator_OutputAttributeDeclarations__MethodInfo); DO_APP_FUNC(0x027A19A0, void, CodeGenerator_OutputDirection, (CodeGenerator * __this, FieldDirection__Enum dir, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBCE0, CodeGenerator_OutputDirection__MethodInfo); DO_APP_FUNC(0x027A19D0, void, CodeGenerator_OutputExpressionList, (CodeGenerator * __this, CodeExpressionCollection * expressions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBB80, CodeGenerator_OutputExpressionList__MethodInfo); DO_APP_FUNC(0x027A1A00, void, CodeGenerator_OutputExpressionList_1, (CodeGenerator * __this, CodeExpressionCollection * expressions, bool newlineBetweenItems, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBBA8, CodeGenerator_OutputExpressionList_1__MethodInfo); DO_APP_FUNC(0x027A1A30, void, CodeGenerator_OutputFieldScopeModifier, (CodeGenerator * __this, MemberAttributes__Enum attributes, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBB98, CodeGenerator_OutputFieldScopeModifier__MethodInfo); DO_APP_FUNC(0x027A1A60, void, CodeGenerator_OutputIdentifier, (CodeGenerator * __this, String * ident, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBAF0, CodeGenerator_OutputIdentifier__MethodInfo); DO_APP_FUNC(0x027A1A90, void, CodeGenerator_OutputMemberAccessModifier, (CodeGenerator * __this, MemberAttributes__Enum attributes, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBB50, CodeGenerator_OutputMemberAccessModifier__MethodInfo); DO_APP_FUNC(0x027A1AC0, void, CodeGenerator_OutputMemberScopeModifier, (CodeGenerator * __this, MemberAttributes__Enum attributes, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBC38, CodeGenerator_OutputMemberScopeModifier__MethodInfo); DO_APP_FUNC(0x027A1AF0, void, CodeGenerator_OutputOperator, (CodeGenerator * __this, CodeBinaryOperatorType__Enum op, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBC20, CodeGenerator_OutputOperator__MethodInfo); DO_APP_FUNC(0x027A1B20, void, CodeGenerator_OutputParameters, (CodeGenerator * __this, CodeParameterDeclarationExpressionCollection * parameters, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBC50, CodeGenerator_OutputParameters__MethodInfo); DO_APP_FUNC(0x027A1B50, void, CodeGenerator_OutputTypeAttributes, (CodeGenerator * __this, TypeAttributes__Enum attributes, bool isStruct, bool isEnum, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBBC8, CodeGenerator_OutputTypeAttributes__MethodInfo); DO_APP_FUNC(0x027A1B80, void, CodeGenerator_OutputTypeNamePair, (CodeGenerator * __this, CodeTypeReference * typeRef, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBBF0, CodeGenerator_OutputTypeNamePair__MethodInfo); DO_APP_FUNC(0x027A1BB0, String *, CodeGenerator_System_CodeDom_Compiler_ICodeGenerator_CreateEscapedIdentifier, (CodeGenerator * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBBE0, CodeGenerator_System_CodeDom_Compiler_ICodeGenerator_CreateEscapedIdentifier__MethodInfo); DO_APP_FUNC(0x027A1BE0, String *, CodeGenerator_System_CodeDom_Compiler_ICodeGenerator_CreateValidIdentifier, (CodeGenerator * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBA00, CodeGenerator_System_CodeDom_Compiler_ICodeGenerator_CreateValidIdentifier__MethodInfo); DO_APP_FUNC(0x027A1C10, void, CodeGenerator_System_CodeDom_Compiler_ICodeGenerator_GenerateCodeFromCompileUnit, (CodeGenerator * __this, CodeCompileUnit * e, TextWriter * w, CodeGeneratorOptions * o, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBA50, CodeGenerator_System_CodeDom_Compiler_ICodeGenerator_GenerateCodeFromCompileUnit__MethodInfo); DO_APP_FUNC(0x027A1C40, void, CodeGenerator_System_CodeDom_Compiler_ICodeGenerator_GenerateCodeFromExpression, (CodeGenerator * __this, CodeExpression * e, TextWriter * w, CodeGeneratorOptions * o, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB9C0, CodeGenerator_System_CodeDom_Compiler_ICodeGenerator_GenerateCodeFromExpression__MethodInfo); DO_APP_FUNC(0x027A1C70, void, CodeGenerator_System_CodeDom_Compiler_ICodeGenerator_GenerateCodeFromNamespace, (CodeGenerator * __this, CodeNamespace * e, TextWriter * w, CodeGeneratorOptions * o, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB9B0, CodeGenerator_System_CodeDom_Compiler_ICodeGenerator_GenerateCodeFromNamespace__MethodInfo); DO_APP_FUNC(0x027A1CA0, void, CodeGenerator_System_CodeDom_Compiler_ICodeGenerator_GenerateCodeFromStatement, (CodeGenerator * __this, CodeStatement * e, TextWriter * w, CodeGeneratorOptions * o, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB9D8, CodeGenerator_System_CodeDom_Compiler_ICodeGenerator_GenerateCodeFromStatement__MethodInfo); DO_APP_FUNC(0x027A1CD0, void, CodeGenerator_System_CodeDom_Compiler_ICodeGenerator_GenerateCodeFromType, (CodeGenerator * __this, CodeTypeDeclaration * e, TextWriter * w, CodeGeneratorOptions * o, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBAA8, CodeGenerator_System_CodeDom_Compiler_ICodeGenerator_GenerateCodeFromType__MethodInfo); DO_APP_FUNC(0x027A1D00, String *, CodeGenerator_System_CodeDom_Compiler_ICodeGenerator_GetTypeOutput, (CodeGenerator * __this, CodeTypeReference * type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBAD0, CodeGenerator_System_CodeDom_Compiler_ICodeGenerator_GetTypeOutput__MethodInfo); DO_APP_FUNC(0x027A1D30, bool, CodeGenerator_System_CodeDom_Compiler_ICodeGenerator_IsValidIdentifier, (CodeGenerator * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBAB8, CodeGenerator_System_CodeDom_Compiler_ICodeGenerator_IsValidIdentifier__MethodInfo); DO_APP_FUNC(0x027A1D60, bool, CodeGenerator_System_CodeDom_Compiler_ICodeGenerator_Supports, (CodeGenerator * __this, GeneratorSupport__Enum support, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBA68, CodeGenerator_System_CodeDom_Compiler_ICodeGenerator_Supports__MethodInfo); DO_APP_FUNC(0x027A1D90, void, CodeGenerator_System_CodeDom_Compiler_ICodeGenerator_ValidateIdentifier, (CodeGenerator * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBA88, CodeGenerator_System_CodeDom_Compiler_ICodeGenerator_ValidateIdentifier__MethodInfo); DO_APP_FUNC(0x027A1DC0, void, CodeGenerator_ValidateIdentifier, (CodeGenerator * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB930, CodeGenerator_ValidateIdentifier__MethodInfo); DO_APP_FUNC(0x027A1DF0, void, CodeGenerator_ValidateIdentifiers, (CodeObject * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB920, CodeGenerator_ValidateIdentifiers__MethodInfo); DO_APP_FUNC(0x027A1E20, void, CodeParser__ctor, (CodeParser * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB940, CodeParser__ctor__MethodInfo); DO_APP_FUNC(0x027A1E50, void, Executor_ExecWait, (String * cmd, TempFileCollection * tempFiles, MethodInfo * method)); -DO_APP_FUNC(0x027A1E80, int32_t, Executor_ExecWaitWithCapture, (void * userToken, String * cmd, TempFileCollection * tempFiles, String * outputName, String * errorName, MethodInfo * method)); -DO_APP_FUNC(0x027A1EB0, int32_t, Executor_ExecWaitWithCapture_1, (void * userToken, String * cmd, String * currentDir, TempFileCollection * tempFiles, String * outputName, String * errorName, MethodInfo * method)); -DO_APP_FUNC(0x027A1EE0, int32_t, Executor_ExecWaitWithCapture_2, (String * cmd, TempFileCollection * tempFiles, String * outputName, String * errorName, MethodInfo * method)); -DO_APP_FUNC(0x027A1F10, int32_t, Executor_ExecWaitWithCapture_3, (String * cmd, String * currentDir, TempFileCollection * tempFiles, String * outputName, String * errorName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB8F8, Executor_ExecWait__MethodInfo); +DO_APP_FUNC(0x027A1E80, int32_t, Executor_ExecWaitWithCapture, (void * userToken, String * cmd, TempFileCollection * tempFiles, String * * outputName, String * * errorName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB908, Executor_ExecWaitWithCapture__MethodInfo); +DO_APP_FUNC(0x027A1EB0, int32_t, Executor_ExecWaitWithCapture_1, (void * userToken, String * cmd, String * currentDir, TempFileCollection * tempFiles, String * * outputName, String * * errorName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB900, Executor_ExecWaitWithCapture_1__MethodInfo); +DO_APP_FUNC(0x027A1EE0, int32_t, Executor_ExecWaitWithCapture_2, (String * cmd, TempFileCollection * tempFiles, String * * outputName, String * * errorName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB990, Executor_ExecWaitWithCapture_2__MethodInfo); +DO_APP_FUNC(0x027A1F10, int32_t, Executor_ExecWaitWithCapture_3, (String * cmd, String * currentDir, TempFileCollection * tempFiles, String * * outputName, String * * errorName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB9A0, Executor_ExecWaitWithCapture_3__MethodInfo); DO_APP_FUNC(0x027A1F40, void, StorePermission__ctor, (StorePermission * __this, PermissionState__Enum state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB970, StorePermission__ctor__MethodInfo); DO_APP_FUNC(0x027A1F70, void, StorePermission__ctor_1, (StorePermission * __this, StorePermissionFlags__Enum flag, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB960, StorePermission__ctor_1__MethodInfo); DO_APP_FUNC(0x027A1FA0, StorePermissionFlags__Enum, StorePermission_get_Flags, (StorePermission * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB978, StorePermission_get_Flags__MethodInfo); DO_APP_FUNC(0x027A1FD0, void, StorePermission_set_Flags, (StorePermission * __this, StorePermissionFlags__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB850, StorePermission_set_Flags__MethodInfo); DO_APP_FUNC(0x027A2000, IPermission *, StorePermission_Copy, (StorePermission * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB878, StorePermission_Copy__MethodInfo); DO_APP_FUNC(0x027A2030, void, StorePermission_FromXml, (StorePermission * __this, SecurityElement * securityElement, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB868, StorePermission_FromXml__MethodInfo); DO_APP_FUNC(0x027A2060, IPermission *, StorePermission_Intersect, (StorePermission * __this, IPermission * target, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB810, StorePermission_Intersect__MethodInfo); DO_APP_FUNC(0x027A2090, bool, StorePermission_IsSubsetOf, (StorePermission * __this, IPermission * target, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB830, StorePermission_IsSubsetOf__MethodInfo); DO_APP_FUNC(0x027A20C0, bool, StorePermission_IsUnrestricted, (StorePermission * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB8C8, StorePermission_IsUnrestricted__MethodInfo); DO_APP_FUNC(0x027A20F0, SecurityElement *, StorePermission_ToXml, (StorePermission * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB8C0, StorePermission_ToXml__MethodInfo); DO_APP_FUNC(0x003AE050, void, StorePermissionAttribute__ctor, (StorePermissionAttribute * __this, SecurityAction__Enum action, MethodInfo * method)); DO_APP_FUNC(0x027A2120, bool, StorePermissionAttribute_get_AddToStore, (StorePermissionAttribute * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB8E8, StorePermissionAttribute_get_AddToStore__MethodInfo); DO_APP_FUNC(0x003AE050, void, StorePermissionAttribute_set_AddToStore, (StorePermissionAttribute * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x027A2150, bool, StorePermissionAttribute_get_CreateStore, (StorePermissionAttribute * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB890, StorePermissionAttribute_get_CreateStore__MethodInfo); DO_APP_FUNC(0x003AE050, void, StorePermissionAttribute_set_CreateStore, (StorePermissionAttribute * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x027A2180, bool, StorePermissionAttribute_get_DeleteStore, (StorePermissionAttribute * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB8B8, StorePermissionAttribute_get_DeleteStore__MethodInfo); DO_APP_FUNC(0x003AE050, void, StorePermissionAttribute_set_DeleteStore, (StorePermissionAttribute * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x027A21B0, bool, StorePermissionAttribute_get_EnumerateCertificates, (StorePermissionAttribute * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB8A8, StorePermissionAttribute_get_EnumerateCertificates__MethodInfo); DO_APP_FUNC(0x003AE050, void, StorePermissionAttribute_set_EnumerateCertificates, (StorePermissionAttribute * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x027A21E0, bool, StorePermissionAttribute_get_EnumerateStores, (StorePermissionAttribute * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB7D8, StorePermissionAttribute_get_EnumerateStores__MethodInfo); DO_APP_FUNC(0x003AE050, void, StorePermissionAttribute_set_EnumerateStores, (StorePermissionAttribute * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x027A2210, StorePermissionFlags__Enum, StorePermissionAttribute_get_Flags, (StorePermissionAttribute * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB7E0, StorePermissionAttribute_get_Flags__MethodInfo); DO_APP_FUNC(0x003AE050, void, StorePermissionAttribute_set_Flags, (StorePermissionAttribute * __this, StorePermissionFlags__Enum value, MethodInfo * method)); DO_APP_FUNC(0x027A2240, bool, StorePermissionAttribute_get_OpenStore, (StorePermissionAttribute * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB7C8, StorePermissionAttribute_get_OpenStore__MethodInfo); DO_APP_FUNC(0x003AE050, void, StorePermissionAttribute_set_OpenStore, (StorePermissionAttribute * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x027A2270, bool, StorePermissionAttribute_get_RemoveFromStore, (StorePermissionAttribute * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB7C0, StorePermissionAttribute_get_RemoveFromStore__MethodInfo); DO_APP_FUNC(0x003AE050, void, StorePermissionAttribute_set_RemoveFromStore, (StorePermissionAttribute * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x027A22A0, IPermission *, StorePermissionAttribute_CreatePermission, (StorePermissionAttribute * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB7D0, StorePermissionAttribute_CreatePermission__MethodInfo); DO_APP_FUNC(0x003AE050, void, TypeDescriptorPermissionAttribute__ctor, (TypeDescriptorPermissionAttribute * __this, SecurityAction__Enum action, MethodInfo * method)); DO_APP_FUNC(0x027A22D0, TypeDescriptorPermissionFlags__Enum, TypeDescriptorPermissionAttribute_get_Flags, (TypeDescriptorPermissionAttribute * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB7F8, TypeDescriptorPermissionAttribute_get_Flags__MethodInfo); DO_APP_FUNC(0x003AE050, void, TypeDescriptorPermissionAttribute_set_Flags, (TypeDescriptorPermissionAttribute * __this, TypeDescriptorPermissionFlags__Enum value, MethodInfo * method)); DO_APP_FUNC(0x027A2300, bool, TypeDescriptorPermissionAttribute_get_RestrictedRegistrationAccess, (TypeDescriptorPermissionAttribute * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB808, TypeDescriptorPermissionAttribute_get_RestrictedRegistrationAccess__MethodInfo); DO_APP_FUNC(0x003AE050, void, TypeDescriptorPermissionAttribute_set_RestrictedRegistrationAccess, (TypeDescriptorPermissionAttribute * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x027A2330, IPermission *, TypeDescriptorPermissionAttribute_CreatePermission, (TypeDescriptorPermissionAttribute * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB800, TypeDescriptorPermissionAttribute_CreatePermission__MethodInfo); DO_APP_FUNC(0x027A2360, void, DynamicRoleClaimProvider_AddDynamicRoleClaims, (ClaimsIdentity * claimsIdentity, IEnumerable_1_System_Security_Claims_Claim_ * claims, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB7E8, DynamicRoleClaimProvider_AddDynamicRoleClaims__MethodInfo); DO_APP_FUNC(0x027A2390, void, ThrowStub_1_ThrowNotSupportedException, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB7F0, ThrowStub_1_ThrowNotSupportedException__MethodInfo); DO_APP_FUNC(0x003BB3C0, Type *, ActionIdPropertyAttribute_get_Type, (ActionIdPropertyAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, ActionIdPropertyAttribute__ctor, (ActionIdPropertyAttribute * __this, Type * param_000098b6, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, Type *, PlayerIdPropertyAttribute_get_Type, (PlayerIdPropertyAttribute * __this, MethodInfo * method)); @@ -39384,204 +46842,204 @@ DO_APP_FUNC(0x003BCD20, bool, ControllerAssignmentChangedEventArgs_get_state, (C DO_APP_FUNC(0x01EC60B0, Controller *, ControllerAssignmentChangedEventArgs_get_controller, (ControllerAssignmentChangedEventArgs * __this, MethodInfo * method)); DO_APP_FUNC(0x01EC6180, Player *, ControllerAssignmentChangedEventArgs_get_player, (ControllerAssignmentChangedEventArgs * __this, MethodInfo * method)); DO_APP_FUNC(0x01EC6250, void, ControllerAssignmentChangedEventArgs__ctor, (ControllerAssignmentChangedEventArgs * __this, int32_t param_000098bb, int32_t param_000098bc, ControllerType__Enum param_000098bd, bool param_000098be, MethodInfo * method)); -DO_APP_FUNC(0x00471920, InputActionEventType__Enum, InputActionEventData_get_eventType, (InputActionEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018C6CC0, void, InputActionEventData_WsvkINdjolZvMgABaLVnmeFOYWAC, (InputActionEventData__Boxed * __this, InputActionEventType__Enum param_000098bf, MethodInfo * method)); -DO_APP_FUNC(0x01EC62D0, Player *, InputActionEventData_get_player, (InputActionEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC63A0, String *, InputActionEventData_get_actionName, (InputActionEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC64D0, String *, InputActionEventData_get_actionDescriptiveName, (InputActionEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC6600, float, InputActionEventData_GetAxis, (InputActionEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC6620, float, InputActionEventData_GetAxisPrev, (InputActionEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC6640, float, InputActionEventData_GetAxisDelta, (InputActionEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC66A0, double, InputActionEventData_GetAxisTimeActive, (InputActionEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC66C0, double, InputActionEventData_GetAxisTimeInactive, (InputActionEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC66E0, float, InputActionEventData_GetAxisRaw, (InputActionEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC6700, float, InputActionEventData_GetAxisRawDelta, (InputActionEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC6760, float, InputActionEventData_GetAxisRawPrev, (InputActionEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC6780, double, InputActionEventData_GetAxisRawTimeActive, (InputActionEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC67A0, double, InputActionEventData_GetAxisRawTimeInactive, (InputActionEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC67C0, AxisCoordinateMode__Enum, InputActionEventData_GetAxisCoordinateMode, (InputActionEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC67E0, AxisCoordinateMode__Enum, InputActionEventData_GetAxisCoordinateModePrev, (InputActionEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC6800, AxisCoordinateMode__Enum, InputActionEventData_GetAxisRawCoordinateMode, (InputActionEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC6820, AxisCoordinateMode__Enum, InputActionEventData_GetAxisRawCoordinateModePrev, (InputActionEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC6840, bool, InputActionEventData_GetButton, (InputActionEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC6860, bool, InputActionEventData_GetButtonPrev, (InputActionEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC6880, bool, InputActionEventData_GetButtonDown, (InputActionEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC68A0, bool, InputActionEventData_GetButtonUp, (InputActionEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC68C0, bool, InputActionEventData_GetButtonSinglePressHold, (InputActionEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC68E0, bool, InputActionEventData_GetButtonSinglePressDown, (InputActionEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC6900, bool, InputActionEventData_GetButtonSinglePressUp, (InputActionEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC6920, bool, InputActionEventData_GetButtonDoublePressDown, (InputActionEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC6950, bool, InputActionEventData_GetButtonDoublePressDown_1, (InputActionEventData__Boxed * __this, float speed, MethodInfo * method)); -DO_APP_FUNC(0x01EC6970, bool, InputActionEventData_GetButtonDoublePressHold, (InputActionEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC69A0, bool, InputActionEventData_GetButtonDoublePressHold_1, (InputActionEventData__Boxed * __this, float speed, MethodInfo * method)); -DO_APP_FUNC(0x01EC69C0, bool, InputActionEventData_GetButtonDoublePressUp, (InputActionEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC69F0, bool, InputActionEventData_GetButtonDoublePressUp_1, (InputActionEventData__Boxed * __this, float speed, MethodInfo * method)); -DO_APP_FUNC(0x01EC6A10, bool, InputActionEventData_GetButtonTimedPress, (InputActionEventData__Boxed * __this, float time, MethodInfo * method)); -DO_APP_FUNC(0x01EC6A40, bool, InputActionEventData_GetButtonTimedPress_1, (InputActionEventData__Boxed * __this, float time, float expireIn, MethodInfo * method)); -DO_APP_FUNC(0x01EC6A60, bool, InputActionEventData_GetButtonTimedPressDown, (InputActionEventData__Boxed * __this, float time, MethodInfo * method)); -DO_APP_FUNC(0x01EC6A80, bool, InputActionEventData_GetButtonTimedPressUp, (InputActionEventData__Boxed * __this, float time, MethodInfo * method)); -DO_APP_FUNC(0x01EC6AB0, bool, InputActionEventData_GetButtonTimedPressUp_1, (InputActionEventData__Boxed * __this, float time, float expireIn, MethodInfo * method)); -DO_APP_FUNC(0x01EC6AD0, bool, InputActionEventData_GetButtonShortPress, (InputActionEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC6B10, bool, InputActionEventData_GetButtonShortPressDown, (InputActionEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC6B40, bool, InputActionEventData_GetButtonShortPressUp, (InputActionEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC6B80, bool, InputActionEventData_GetButtonLongPress, (InputActionEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC6BC0, bool, InputActionEventData_GetButtonLongPressDown, (InputActionEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC6BF0, bool, InputActionEventData_GetButtonLongPressUp, (InputActionEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC6C30, bool, InputActionEventData_GetButtonRepeating, (InputActionEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC6C50, double, InputActionEventData_GetButtonTimePressed, (InputActionEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC6C70, double, InputActionEventData_GetButtonTimeUnpressed, (InputActionEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC6C90, bool, InputActionEventData_GetNegativeButton, (InputActionEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC6CD0, bool, InputActionEventData_GetNegativeButtonPrev, (InputActionEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC6D10, bool, InputActionEventData_GetNegativeButtonDown, (InputActionEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC6D70, bool, InputActionEventData_GetNegativeButtonUp, (InputActionEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC6DB0, bool, InputActionEventData_GetNegativeButtonSinglePressHold, (InputActionEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC6E00, bool, InputActionEventData_GetNegativeButtonSinglePressDown, (InputActionEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC6E50, bool, InputActionEventData_GetNegativeButtonSinglePressUp, (InputActionEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC6EA0, bool, InputActionEventData_GetNegativeButtonDoublePressDown, (InputActionEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC6ED0, bool, InputActionEventData_GetNegativeButtonDoublePressDown_1, (InputActionEventData__Boxed * __this, float speed, MethodInfo * method)); -DO_APP_FUNC(0x01EC6EF0, bool, InputActionEventData_GetNegativeButtonDoublePressHold, (InputActionEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC6F40, bool, InputActionEventData_GetNegativeButtonDoublePressHold_1, (InputActionEventData__Boxed * __this, float speed, MethodInfo * method)); -DO_APP_FUNC(0x01EC6F60, bool, InputActionEventData_GetNegativeButtonDoublePressUp, (InputActionEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC6FC0, bool, InputActionEventData_GetNegativeButtonDoublePressUp_1, (InputActionEventData__Boxed * __this, float speed, MethodInfo * method)); -DO_APP_FUNC(0x01EC6FE0, bool, InputActionEventData_GetNegativeButtonTimedPress, (InputActionEventData__Boxed * __this, float time, MethodInfo * method)); -DO_APP_FUNC(0x01EC7010, bool, InputActionEventData_GetNegativeButtonTimedPress_1, (InputActionEventData__Boxed * __this, float time, float expireIn, MethodInfo * method)); -DO_APP_FUNC(0x01EC7030, bool, InputActionEventData_GetNegativeButtonTimedPressDown, (InputActionEventData__Boxed * __this, float time, MethodInfo * method)); -DO_APP_FUNC(0x01EC7050, bool, InputActionEventData_GetNegativeButtonTimedPressUp, (InputActionEventData__Boxed * __this, float time, MethodInfo * method)); -DO_APP_FUNC(0x01EC7080, bool, InputActionEventData_GetNegativeButtonTimedPressUp_1, (InputActionEventData__Boxed * __this, float time, float expireIn, MethodInfo * method)); -DO_APP_FUNC(0x01EC70A0, bool, InputActionEventData_GetNegativeButtonShortPress, (InputActionEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC70E0, bool, InputActionEventData_GetNegativeButtonShortPressDown, (InputActionEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC7110, bool, InputActionEventData_GetNegativeButtonShortPressUp, (InputActionEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC7150, bool, InputActionEventData_GetNegativeButtonLongPress, (InputActionEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC7190, bool, InputActionEventData_GetNegativeButtonLongPressDown, (InputActionEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC71C0, bool, InputActionEventData_GetNegativeButtonLongPressUp, (InputActionEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC7200, bool, InputActionEventData_GetNegativeButtonRepeating, (InputActionEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC7250, double, InputActionEventData_GetNegativeButtonTimePressed, (InputActionEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC72A0, double, InputActionEventData_GetNegativeButtonTimeUnpressed, (InputActionEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC72F0, IList_1_Rewired_InputActionSourceData_ *, InputActionEventData_GetCurrentInputSources, (InputActionEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC73A0, bool, InputActionEventData_IsCurrentInputSource, (InputActionEventData__Boxed * __this, ControllerType__Enum controllerType, MethodInfo * method)); -DO_APP_FUNC(0x01EC7450, bool, InputActionEventData_IsCurrentInputSource_1, (InputActionEventData__Boxed * __this, ControllerType__Enum controllerType, int32_t controllerId, MethodInfo * method)); -DO_APP_FUNC(0x01EC7510, bool, InputActionEventData_IsCurrentInputSource_2, (InputActionEventData__Boxed * __this, Controller * controller, MethodInfo * method)); -DO_APP_FUNC(0x01EC75C0, void, InputActionEventData__ctor, (InputActionEventData__Boxed * __this, cgAhWyfsfnPBbygscaxJCrsKfviSB * param_000098d8, int32_t param_000098d9, int32_t param_000098da, UpdateLoopType__Enum param_000098db, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, ControllerPollingInfo_get_success, (ControllerPollingInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C3C200, void, ControllerPollingInfo_AHeyUlLuVxEpXJJnSiiCANbISbPyA, (ControllerPollingInfo__Boxed * __this, bool param_000098dc, MethodInfo * method)); -DO_APP_FUNC(0x00C173E0, int32_t, ControllerPollingInfo_get_playerId, (ControllerPollingInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018C6CA0, void, ControllerPollingInfo_dFFlgStzvedYtrIYqtDDyjmOXAFc, (ControllerPollingInfo__Boxed * __this, int32_t param_000098dd, MethodInfo * method)); -DO_APP_FUNC(0x00471920, int32_t, ControllerPollingInfo_get_controllerId, (ControllerPollingInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018C6CC0, void, ControllerPollingInfo_gEhENuQhNdqYPZLxbDRTUICIFDkM, (ControllerPollingInfo__Boxed * __this, int32_t param_000098de, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, String *, ControllerPollingInfo_get_controllerName, (ControllerPollingInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCBE0, void, ControllerPollingInfo_JWmdgwoSqFAafVOXdJWjgJPzuhQF, (ControllerPollingInfo__Boxed * __this, String * param_000098df, MethodInfo * method)); -DO_APP_FUNC(0x003BC2E0, ControllerType__Enum, ControllerPollingInfo_get_controllerType, (ControllerPollingInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCDD0, void, ControllerPollingInfo_MoaFsMmogWjzQbmrkhXmqURBYRcP, (ControllerPollingInfo__Boxed * __this, ControllerType__Enum param_000098e0, MethodInfo * method)); -DO_APP_FUNC(0x003CD440, ControllerElementType__Enum, ControllerPollingInfo_get_elementType, (ControllerPollingInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x006D8870, void, ControllerPollingInfo_kGPFTtahToOJKneCeCyIywUXpZHN, (ControllerPollingInfo__Boxed * __this, ControllerElementType__Enum param_000098e1, MethodInfo * method)); -DO_APP_FUNC(0x003CC980, int32_t, ControllerPollingInfo_get_elementIndex, (ControllerPollingInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003CC990, void, ControllerPollingInfo_ymgCFiChSxfqPqgGWPanuntwwuIr, (ControllerPollingInfo__Boxed * __this, int32_t param_000098e2, MethodInfo * method)); -DO_APP_FUNC(0x003CD280, Pole__Enum, ControllerPollingInfo_get_axisPole, (ControllerPollingInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x006D8950, void, ControllerPollingInfo_tIQnGxkjcEOqCdzbGpGinoEnKtix, (ControllerPollingInfo__Boxed * __this, Pole__Enum param_000098e3, MethodInfo * method)); -DO_APP_FUNC(0x003BB3B0, String *, ControllerPollingInfo_get_elementIdentifierName, (ControllerPollingInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003C6500, void, ControllerPollingInfo_XpJvldmezItUGXFRqbVUwjHdBqIHA, (ControllerPollingInfo__Boxed * __this, String * param_000098e4, MethodInfo * method)); -DO_APP_FUNC(0x003C7300, int32_t, ControllerPollingInfo_get_elementIdentifierId, (ControllerPollingInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003C7310, void, ControllerPollingInfo_QBSGkXDKxheSgJCTgoixiukihrFrB, (ControllerPollingInfo__Boxed * __this, int32_t param_000098e5, MethodInfo * method)); -DO_APP_FUNC(0x00A2A110, KeyCode__Enum, ControllerPollingInfo_get_keyboardKey, (ControllerPollingInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BC6590, void, ControllerPollingInfo_MGULmOhlmdEuUyrNodsPjwiEORUFA, (ControllerPollingInfo__Boxed * __this, KeyCode__Enum param_000098e6, MethodInfo * method)); -DO_APP_FUNC(0x01EC7630, Player *, ControllerPollingInfo_get_player, (ControllerPollingInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC7740, Controller *, ControllerPollingInfo_get_controller, (ControllerPollingInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC7810, ControllerElementIdentifier *, ControllerPollingInfo_get_elementIdentifier, (ControllerPollingInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC78D0, void, ControllerPollingInfo__ctor, (ControllerPollingInfo__Boxed * __this, bool param_000098e7, int32_t param_000098e8, int32_t param_000098e9, String * param_000098ea, ControllerType__Enum param_000098eb, ControllerElementType__Enum param_000098ec, int32_t param_000098ed, Pole__Enum param_000098ee, String * param_000098ef, int32_t param_000098f0, KeyCode__Enum param_000098f1, MethodInfo * method)); -DO_APP_FUNC(0x01EC79C0, void, ControllerPollingInfo__ctor_1, (ControllerPollingInfo__Boxed * __this, ControllerPollingInfo param_000098f2, MethodInfo * method)); +DO_APP_FUNC(0x00471920, InputActionEventType__Enum, InputActionEventData_get_eventType, (InputActionEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x018C6CC0, void, InputActionEventData_WsvkINdjolZvMgABaLVnmeFOYWAC, (InputActionEventData * __this, InputActionEventType__Enum param_000098bf, MethodInfo * method)); +DO_APP_FUNC(0x01EC62D0, Player *, InputActionEventData_get_player, (InputActionEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC63A0, String *, InputActionEventData_get_actionName, (InputActionEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC64D0, String *, InputActionEventData_get_actionDescriptiveName, (InputActionEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC6600, float, InputActionEventData_GetAxis, (InputActionEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC6620, float, InputActionEventData_GetAxisPrev, (InputActionEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC6640, float, InputActionEventData_GetAxisDelta, (InputActionEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC66A0, double, InputActionEventData_GetAxisTimeActive, (InputActionEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC66C0, double, InputActionEventData_GetAxisTimeInactive, (InputActionEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC66E0, float, InputActionEventData_GetAxisRaw, (InputActionEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC6700, float, InputActionEventData_GetAxisRawDelta, (InputActionEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC6760, float, InputActionEventData_GetAxisRawPrev, (InputActionEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC6780, double, InputActionEventData_GetAxisRawTimeActive, (InputActionEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC67A0, double, InputActionEventData_GetAxisRawTimeInactive, (InputActionEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC67C0, AxisCoordinateMode__Enum, InputActionEventData_GetAxisCoordinateMode, (InputActionEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC67E0, AxisCoordinateMode__Enum, InputActionEventData_GetAxisCoordinateModePrev, (InputActionEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC6800, AxisCoordinateMode__Enum, InputActionEventData_GetAxisRawCoordinateMode, (InputActionEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC6820, AxisCoordinateMode__Enum, InputActionEventData_GetAxisRawCoordinateModePrev, (InputActionEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC6840, bool, InputActionEventData_GetButton, (InputActionEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC6860, bool, InputActionEventData_GetButtonPrev, (InputActionEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC6880, bool, InputActionEventData_GetButtonDown, (InputActionEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC68A0, bool, InputActionEventData_GetButtonUp, (InputActionEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC68C0, bool, InputActionEventData_GetButtonSinglePressHold, (InputActionEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC68E0, bool, InputActionEventData_GetButtonSinglePressDown, (InputActionEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC6900, bool, InputActionEventData_GetButtonSinglePressUp, (InputActionEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC6920, bool, InputActionEventData_GetButtonDoublePressDown, (InputActionEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC6950, bool, InputActionEventData_GetButtonDoublePressDown_1, (InputActionEventData * __this, float speed, MethodInfo * method)); +DO_APP_FUNC(0x01EC6970, bool, InputActionEventData_GetButtonDoublePressHold, (InputActionEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC69A0, bool, InputActionEventData_GetButtonDoublePressHold_1, (InputActionEventData * __this, float speed, MethodInfo * method)); +DO_APP_FUNC(0x01EC69C0, bool, InputActionEventData_GetButtonDoublePressUp, (InputActionEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC69F0, bool, InputActionEventData_GetButtonDoublePressUp_1, (InputActionEventData * __this, float speed, MethodInfo * method)); +DO_APP_FUNC(0x01EC6A10, bool, InputActionEventData_GetButtonTimedPress, (InputActionEventData * __this, float time, MethodInfo * method)); +DO_APP_FUNC(0x01EC6A40, bool, InputActionEventData_GetButtonTimedPress_1, (InputActionEventData * __this, float time, float expireIn, MethodInfo * method)); +DO_APP_FUNC(0x01EC6A60, bool, InputActionEventData_GetButtonTimedPressDown, (InputActionEventData * __this, float time, MethodInfo * method)); +DO_APP_FUNC(0x01EC6A80, bool, InputActionEventData_GetButtonTimedPressUp, (InputActionEventData * __this, float time, MethodInfo * method)); +DO_APP_FUNC(0x01EC6AB0, bool, InputActionEventData_GetButtonTimedPressUp_1, (InputActionEventData * __this, float time, float expireIn, MethodInfo * method)); +DO_APP_FUNC(0x01EC6AD0, bool, InputActionEventData_GetButtonShortPress, (InputActionEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC6B10, bool, InputActionEventData_GetButtonShortPressDown, (InputActionEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC6B40, bool, InputActionEventData_GetButtonShortPressUp, (InputActionEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC6B80, bool, InputActionEventData_GetButtonLongPress, (InputActionEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC6BC0, bool, InputActionEventData_GetButtonLongPressDown, (InputActionEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC6BF0, bool, InputActionEventData_GetButtonLongPressUp, (InputActionEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC6C30, bool, InputActionEventData_GetButtonRepeating, (InputActionEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC6C50, double, InputActionEventData_GetButtonTimePressed, (InputActionEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC6C70, double, InputActionEventData_GetButtonTimeUnpressed, (InputActionEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC6C90, bool, InputActionEventData_GetNegativeButton, (InputActionEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC6CD0, bool, InputActionEventData_GetNegativeButtonPrev, (InputActionEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC6D10, bool, InputActionEventData_GetNegativeButtonDown, (InputActionEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC6D70, bool, InputActionEventData_GetNegativeButtonUp, (InputActionEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC6DB0, bool, InputActionEventData_GetNegativeButtonSinglePressHold, (InputActionEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC6E00, bool, InputActionEventData_GetNegativeButtonSinglePressDown, (InputActionEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC6E50, bool, InputActionEventData_GetNegativeButtonSinglePressUp, (InputActionEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC6EA0, bool, InputActionEventData_GetNegativeButtonDoublePressDown, (InputActionEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC6ED0, bool, InputActionEventData_GetNegativeButtonDoublePressDown_1, (InputActionEventData * __this, float speed, MethodInfo * method)); +DO_APP_FUNC(0x01EC6EF0, bool, InputActionEventData_GetNegativeButtonDoublePressHold, (InputActionEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC6F40, bool, InputActionEventData_GetNegativeButtonDoublePressHold_1, (InputActionEventData * __this, float speed, MethodInfo * method)); +DO_APP_FUNC(0x01EC6F60, bool, InputActionEventData_GetNegativeButtonDoublePressUp, (InputActionEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC6FC0, bool, InputActionEventData_GetNegativeButtonDoublePressUp_1, (InputActionEventData * __this, float speed, MethodInfo * method)); +DO_APP_FUNC(0x01EC6FE0, bool, InputActionEventData_GetNegativeButtonTimedPress, (InputActionEventData * __this, float time, MethodInfo * method)); +DO_APP_FUNC(0x01EC7010, bool, InputActionEventData_GetNegativeButtonTimedPress_1, (InputActionEventData * __this, float time, float expireIn, MethodInfo * method)); +DO_APP_FUNC(0x01EC7030, bool, InputActionEventData_GetNegativeButtonTimedPressDown, (InputActionEventData * __this, float time, MethodInfo * method)); +DO_APP_FUNC(0x01EC7050, bool, InputActionEventData_GetNegativeButtonTimedPressUp, (InputActionEventData * __this, float time, MethodInfo * method)); +DO_APP_FUNC(0x01EC7080, bool, InputActionEventData_GetNegativeButtonTimedPressUp_1, (InputActionEventData * __this, float time, float expireIn, MethodInfo * method)); +DO_APP_FUNC(0x01EC70A0, bool, InputActionEventData_GetNegativeButtonShortPress, (InputActionEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC70E0, bool, InputActionEventData_GetNegativeButtonShortPressDown, (InputActionEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC7110, bool, InputActionEventData_GetNegativeButtonShortPressUp, (InputActionEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC7150, bool, InputActionEventData_GetNegativeButtonLongPress, (InputActionEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC7190, bool, InputActionEventData_GetNegativeButtonLongPressDown, (InputActionEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC71C0, bool, InputActionEventData_GetNegativeButtonLongPressUp, (InputActionEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC7200, bool, InputActionEventData_GetNegativeButtonRepeating, (InputActionEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC7250, double, InputActionEventData_GetNegativeButtonTimePressed, (InputActionEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC72A0, double, InputActionEventData_GetNegativeButtonTimeUnpressed, (InputActionEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC72F0, IList_1_Rewired_InputActionSourceData_ *, InputActionEventData_GetCurrentInputSources, (InputActionEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC73A0, bool, InputActionEventData_IsCurrentInputSource, (InputActionEventData * __this, ControllerType__Enum controllerType, MethodInfo * method)); +DO_APP_FUNC(0x01EC7450, bool, InputActionEventData_IsCurrentInputSource_1, (InputActionEventData * __this, ControllerType__Enum controllerType, int32_t controllerId, MethodInfo * method)); +DO_APP_FUNC(0x01EC7510, bool, InputActionEventData_IsCurrentInputSource_2, (InputActionEventData * __this, Controller * controller, MethodInfo * method)); +DO_APP_FUNC(0x01EC75C0, void, InputActionEventData__ctor, (InputActionEventData * __this, cgAhWyfsfnPBbygscaxJCrsKfviSB * param_000098d8, int32_t param_000098d9, int32_t param_000098da, UpdateLoopType__Enum param_000098db, MethodInfo * method)); +DO_APP_FUNC(0x00C173D0, bool, ControllerPollingInfo_get_success, (ControllerPollingInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C3C200, void, ControllerPollingInfo_AHeyUlLuVxEpXJJnSiiCANbISbPyA, (ControllerPollingInfo * __this, bool param_000098dc, MethodInfo * method)); +DO_APP_FUNC(0x00C173E0, int32_t, ControllerPollingInfo_get_playerId, (ControllerPollingInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x018C6CA0, void, ControllerPollingInfo_dFFlgStzvedYtrIYqtDDyjmOXAFc, (ControllerPollingInfo * __this, int32_t param_000098dd, MethodInfo * method)); +DO_APP_FUNC(0x00471920, int32_t, ControllerPollingInfo_get_controllerId, (ControllerPollingInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x018C6CC0, void, ControllerPollingInfo_gEhENuQhNdqYPZLxbDRTUICIFDkM, (ControllerPollingInfo * __this, int32_t param_000098de, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, String *, ControllerPollingInfo_get_controllerName, (ControllerPollingInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCBE0, void, ControllerPollingInfo_JWmdgwoSqFAafVOXdJWjgJPzuhQF, (ControllerPollingInfo * __this, String * param_000098df, MethodInfo * method)); +DO_APP_FUNC(0x003BC2E0, ControllerType__Enum, ControllerPollingInfo_get_controllerType, (ControllerPollingInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCDD0, void, ControllerPollingInfo_MoaFsMmogWjzQbmrkhXmqURBYRcP, (ControllerPollingInfo * __this, ControllerType__Enum param_000098e0, MethodInfo * method)); +DO_APP_FUNC(0x003CD440, ControllerElementType__Enum, ControllerPollingInfo_get_elementType, (ControllerPollingInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x006D8870, void, ControllerPollingInfo_kGPFTtahToOJKneCeCyIywUXpZHN, (ControllerPollingInfo * __this, ControllerElementType__Enum param_000098e1, MethodInfo * method)); +DO_APP_FUNC(0x003CC980, int32_t, ControllerPollingInfo_get_elementIndex, (ControllerPollingInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x003CC990, void, ControllerPollingInfo_ymgCFiChSxfqPqgGWPanuntwwuIr, (ControllerPollingInfo * __this, int32_t param_000098e2, MethodInfo * method)); +DO_APP_FUNC(0x003CD280, Pole__Enum, ControllerPollingInfo_get_axisPole, (ControllerPollingInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x006D8950, void, ControllerPollingInfo_tIQnGxkjcEOqCdzbGpGinoEnKtix, (ControllerPollingInfo * __this, Pole__Enum param_000098e3, MethodInfo * method)); +DO_APP_FUNC(0x003BB3B0, String *, ControllerPollingInfo_get_elementIdentifierName, (ControllerPollingInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x003C6500, void, ControllerPollingInfo_XpJvldmezItUGXFRqbVUwjHdBqIHA, (ControllerPollingInfo * __this, String * param_000098e4, MethodInfo * method)); +DO_APP_FUNC(0x003C7300, int32_t, ControllerPollingInfo_get_elementIdentifierId, (ControllerPollingInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x003C7310, void, ControllerPollingInfo_QBSGkXDKxheSgJCTgoixiukihrFrB, (ControllerPollingInfo * __this, int32_t param_000098e5, MethodInfo * method)); +DO_APP_FUNC(0x00A2A110, KeyCode__Enum, ControllerPollingInfo_get_keyboardKey, (ControllerPollingInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x00BC6590, void, ControllerPollingInfo_MGULmOhlmdEuUyrNodsPjwiEORUFA, (ControllerPollingInfo * __this, KeyCode__Enum param_000098e6, MethodInfo * method)); +DO_APP_FUNC(0x01EC7630, Player *, ControllerPollingInfo_get_player, (ControllerPollingInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC7740, Controller *, ControllerPollingInfo_get_controller, (ControllerPollingInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC7810, ControllerElementIdentifier *, ControllerPollingInfo_get_elementIdentifier, (ControllerPollingInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC78D0, void, ControllerPollingInfo__ctor, (ControllerPollingInfo * __this, bool param_000098e7, int32_t param_000098e8, int32_t param_000098e9, String * param_000098ea, ControllerType__Enum param_000098eb, ControllerElementType__Enum param_000098ec, int32_t param_000098ed, Pole__Enum param_000098ee, String * param_000098ef, int32_t param_000098f0, KeyCode__Enum param_000098f1, MethodInfo * method)); +DO_APP_FUNC(0x01EC79C0, void, ControllerPollingInfo__ctor_1, (ControllerPollingInfo * __this, ControllerPollingInfo param_000098f2, MethodInfo * method)); DO_APP_FUNC(0x01EC7AC0, ControllerPollingInfo, ControllerPollingInfo_rjsZtWhlvFEvYIshkKFqNaFAtdlU, (MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, ElementAssignmentConflictInfo_get_isConflict, (ElementAssignmentConflictInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C3C200, void, ElementAssignmentConflictInfo_SamVvFAjUtaVliheLStVbOOAozygb, (ElementAssignmentConflictInfo__Boxed * __this, bool param_000098f3, MethodInfo * method)); -DO_APP_FUNC(0x01819930, bool, ElementAssignmentConflictInfo_get_isUserAssignable, (ElementAssignmentConflictInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC7BF0, void, ElementAssignmentConflictInfo_yBCCZFRebwQDCFFydhwtClhirkTj, (ElementAssignmentConflictInfo__Boxed * __this, bool param_000098f4, MethodInfo * method)); -DO_APP_FUNC(0x00C173E0, int32_t, ElementAssignmentConflictInfo_get_playerId, (ElementAssignmentConflictInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018C6CA0, void, ElementAssignmentConflictInfo_dFFlgStzvedYtrIYqtDDyjmOXAFc, (ElementAssignmentConflictInfo__Boxed * __this, int32_t param_000098f5, MethodInfo * method)); -DO_APP_FUNC(0x00471920, ControllerType__Enum, ElementAssignmentConflictInfo_get_controllerType, (ElementAssignmentConflictInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018C6CC0, void, ElementAssignmentConflictInfo_MoaFsMmogWjzQbmrkhXmqURBYRcP, (ElementAssignmentConflictInfo__Boxed * __this, ControllerType__Enum param_000098f6, MethodInfo * method)); -DO_APP_FUNC(0x00E57F20, int32_t, ElementAssignmentConflictInfo_get_controllerId, (ElementAssignmentConflictInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B16CA0, void, ElementAssignmentConflictInfo_gEhENuQhNdqYPZLxbDRTUICIFDkM, (ElementAssignmentConflictInfo__Boxed * __this, int32_t param_000098f7, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, int32_t, ElementAssignmentConflictInfo_get_controllerMapId, (ElementAssignmentConflictInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD60, void, ElementAssignmentConflictInfo_ymInOGmUumfChKMtGOIFAVtKRXxd, (ElementAssignmentConflictInfo__Boxed * __this, int32_t param_000098f8, MethodInfo * method)); -DO_APP_FUNC(0x003BCD70, int32_t, ElementAssignmentConflictInfo_get_elementMapId, (ElementAssignmentConflictInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD80, void, ElementAssignmentConflictInfo_vCqevUhnDCLescgiPVKTCMJndBgBb, (ElementAssignmentConflictInfo__Boxed * __this, int32_t param_000098f9, MethodInfo * method)); -DO_APP_FUNC(0x003BC2E0, ControllerElementType__Enum, ElementAssignmentConflictInfo_get_elementType, (ElementAssignmentConflictInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCDD0, void, ElementAssignmentConflictInfo_kGPFTtahToOJKneCeCyIywUXpZHN, (ElementAssignmentConflictInfo__Boxed * __this, ControllerElementType__Enum param_000098fa, MethodInfo * method)); -DO_APP_FUNC(0x003CD440, int32_t, ElementAssignmentConflictInfo_get_elementIdentifierId, (ElementAssignmentConflictInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x006D8870, void, ElementAssignmentConflictInfo_QBSGkXDKxheSgJCTgoixiukihrFrB, (ElementAssignmentConflictInfo__Boxed * __this, int32_t param_000098fb, MethodInfo * method)); -DO_APP_FUNC(0x003CC980, KeyCode__Enum, ElementAssignmentConflictInfo_get_keyCode, (ElementAssignmentConflictInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003CC990, void, ElementAssignmentConflictInfo_WkZoGblKFhTlBkSJuIosWUjCxJQK, (ElementAssignmentConflictInfo__Boxed * __this, KeyCode__Enum param_000098fc, MethodInfo * method)); -DO_APP_FUNC(0x003CD280, ModifierKeyFlags__Enum, ElementAssignmentConflictInfo_get_modifierKeyFlags, (ElementAssignmentConflictInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x006D8950, void, ElementAssignmentConflictInfo_UzEGGvcKKPNzVuFLHxBySLspEJOOA, (ElementAssignmentConflictInfo__Boxed * __this, ModifierKeyFlags__Enum param_000098fd, MethodInfo * method)); -DO_APP_FUNC(0x00421680, int32_t, ElementAssignmentConflictInfo_get_actionId, (ElementAssignmentConflictInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00421690, void, ElementAssignmentConflictInfo_MhAfStKVAostGkuNHzBfnBwjEyOd, (ElementAssignmentConflictInfo__Boxed * __this, int32_t param_000098fe, MethodInfo * method)); -DO_APP_FUNC(0x01EC7C00, Player *, ElementAssignmentConflictInfo_get_player, (ElementAssignmentConflictInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC7CD0, InputAction *, ElementAssignmentConflictInfo_get_action, (ElementAssignmentConflictInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC7DA0, Controller *, ElementAssignmentConflictInfo_get_controller, (ElementAssignmentConflictInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC7E70, ControllerMap *, ElementAssignmentConflictInfo_get_controllerMap, (ElementAssignmentConflictInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC7EE0, ControllerElementIdentifier *, ElementAssignmentConflictInfo_get_elementIdentifier, (ElementAssignmentConflictInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC7F30, ActionElementMap *, ElementAssignmentConflictInfo_get_elementMap, (ElementAssignmentConflictInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC7FC0, String *, ElementAssignmentConflictInfo_get_elementDisplayName, (ElementAssignmentConflictInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC8060, void, ElementAssignmentConflictInfo__ctor, (ElementAssignmentConflictInfo__Boxed * __this, bool param_000098ff, bool param_00009900, int32_t param_00009901, ControllerType__Enum param_00009902, int32_t param_00009903, int32_t param_00009904, int32_t param_00009905, int32_t param_00009906, ControllerElementType__Enum param_00009907, int32_t param_00009908, KeyCode__Enum param_00009909, ModifierKeyFlags__Enum param_0000990a, MethodInfo * method)); -DO_APP_FUNC(0x01EC80B0, void, ElementAssignmentConflictInfo__ctor_1, (ElementAssignmentConflictInfo__Boxed * __this, ElementAssignmentConflictInfo param_0000990b, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, ElementAssignmentType__Enum, ElementAssignmentConflictCheck_get_elementAssignmentType, (ElementAssignmentConflictCheck__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00959BA0, void, ElementAssignmentConflictCheck_set_elementAssignmentType, (ElementAssignmentConflictCheck__Boxed * __this, ElementAssignmentType__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x00C173E0, int32_t, ElementAssignmentConflictCheck_get_playerId, (ElementAssignmentConflictCheck__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018C6CA0, void, ElementAssignmentConflictCheck_set_playerId, (ElementAssignmentConflictCheck__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00471920, ControllerType__Enum, ElementAssignmentConflictCheck_get_controllerType, (ElementAssignmentConflictCheck__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018C6CC0, void, ElementAssignmentConflictCheck_set_controllerType, (ElementAssignmentConflictCheck__Boxed * __this, ControllerType__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x00E57F20, int32_t, ElementAssignmentConflictCheck_get_controllerId, (ElementAssignmentConflictCheck__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B16CA0, void, ElementAssignmentConflictCheck_set_controllerId, (ElementAssignmentConflictCheck__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, int32_t, ElementAssignmentConflictCheck_get_controllerMapId, (ElementAssignmentConflictCheck__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD60, void, ElementAssignmentConflictCheck_set_controllerMapId, (ElementAssignmentConflictCheck__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x003BCD70, int32_t, ElementAssignmentConflictCheck_get_controllerMapCategoryId, (ElementAssignmentConflictCheck__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD80, void, ElementAssignmentConflictCheck_set_controllerMapCategoryId, (ElementAssignmentConflictCheck__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x003BC2E0, int32_t, ElementAssignmentConflictCheck_get_elementMapId, (ElementAssignmentConflictCheck__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCDD0, void, ElementAssignmentConflictCheck_set_elementMapId, (ElementAssignmentConflictCheck__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x003CD440, int32_t, ElementAssignmentConflictCheck_get_elementIdentifierId, (ElementAssignmentConflictCheck__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x006D8870, void, ElementAssignmentConflictCheck_set_elementIdentifierId, (ElementAssignmentConflictCheck__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x003CC980, AxisRange__Enum, ElementAssignmentConflictCheck_get_axisRange, (ElementAssignmentConflictCheck__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003CC990, void, ElementAssignmentConflictCheck_set_axisRange, (ElementAssignmentConflictCheck__Boxed * __this, AxisRange__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x003CD280, KeyCode__Enum, ElementAssignmentConflictCheck_get_keyboardKey, (ElementAssignmentConflictCheck__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x006D8950, void, ElementAssignmentConflictCheck_set_keyboardKey, (ElementAssignmentConflictCheck__Boxed * __this, KeyCode__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x00421680, ModifierKeyFlags__Enum, ElementAssignmentConflictCheck_get_modifierKeyFlags, (ElementAssignmentConflictCheck__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00421690, void, ElementAssignmentConflictCheck_set_modifierKeyFlags, (ElementAssignmentConflictCheck__Boxed * __this, ModifierKeyFlags__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x0098C870, int32_t, ElementAssignmentConflictCheck_get_actionId, (ElementAssignmentConflictCheck__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0098C880, void, ElementAssignmentConflictCheck_set_actionId, (ElementAssignmentConflictCheck__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x003C7300, Pole__Enum, ElementAssignmentConflictCheck_get_axisContribution, (ElementAssignmentConflictCheck__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003C7310, void, ElementAssignmentConflictCheck_set_axisContribution, (ElementAssignmentConflictCheck__Boxed * __this, Pole__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x005C47D0, bool, ElementAssignmentConflictCheck_get_invert, (ElementAssignmentConflictCheck__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01DB9820, void, ElementAssignmentConflictCheck_set_invert, (ElementAssignmentConflictCheck__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x01EC8100, void, ElementAssignmentConflictCheck__ctor, (ElementAssignmentConflictCheck__Boxed * __this, int32_t param_0000991a, ControllerType__Enum param_0000991b, int32_t param_0000991c, int32_t param_0000991d, ElementAssignmentType__Enum param_0000991e, int32_t param_0000991f, AxisRange__Enum param_00009920, KeyCode__Enum param_00009921, ModifierKeyFlags__Enum param_00009922, int32_t param_00009923, Pole__Enum param_00009924, bool param_00009925, MethodInfo * method)); -DO_APP_FUNC(0x01EC8170, void, ElementAssignmentConflictCheck__ctor_1, (ElementAssignmentConflictCheck__Boxed * __this, int32_t param_00009926, ControllerType__Enum param_00009927, int32_t param_00009928, int32_t param_00009929, ElementAssignmentType__Enum param_0000992a, int32_t param_0000992b, AxisRange__Enum param_0000992c, KeyCode__Enum param_0000992d, ModifierKeyFlags__Enum param_0000992e, int32_t param_0000992f, Pole__Enum param_00009930, bool param_00009931, int32_t param_00009932, MethodInfo * method)); -DO_APP_FUNC(0x01EC81E0, void, ElementAssignmentConflictCheck__ctor_2, (ElementAssignmentConflictCheck__Boxed * __this, int32_t param_00009933, ControllerType__Enum param_00009934, int32_t param_00009935, int32_t param_00009936, ControllerElementType__Enum param_00009937, int32_t param_00009938, AxisRange__Enum param_00009939, KeyCode__Enum param_0000993a, ModifierKeyFlags__Enum param_0000993b, int32_t param_0000993c, Pole__Enum param_0000993d, bool param_0000993e, MethodInfo * method)); -DO_APP_FUNC(0x01EC8280, void, ElementAssignmentConflictCheck__ctor_3, (ElementAssignmentConflictCheck__Boxed * __this, int32_t param_0000993f, ControllerType__Enum param_00009940, int32_t param_00009941, int32_t param_00009942, ControllerElementType__Enum param_00009943, int32_t param_00009944, AxisRange__Enum param_00009945, KeyCode__Enum param_00009946, ModifierKeyFlags__Enum param_00009947, int32_t param_00009948, Pole__Enum param_00009949, bool param_0000994a, int32_t param_0000994b, MethodInfo * method)); -DO_APP_FUNC(0x01EC8360, void, ElementAssignmentConflictCheck__ctor_4, (ElementAssignmentConflictCheck__Boxed * __this, int32_t param_0000994c, ControllerType__Enum param_0000994d, int32_t param_0000994e, int32_t param_0000994f, int32_t param_00009950, int32_t param_00009951, bool param_00009952, MethodInfo * method)); -DO_APP_FUNC(0x01EC8440, void, ElementAssignmentConflictCheck__ctor_5, (ElementAssignmentConflictCheck__Boxed * __this, int32_t param_00009953, ControllerType__Enum param_00009954, int32_t param_00009955, int32_t param_00009956, int32_t param_00009957, int32_t param_00009958, bool param_00009959, int32_t param_0000995a, MethodInfo * method)); -DO_APP_FUNC(0x01EC8520, void, ElementAssignmentConflictCheck__ctor_6, (ElementAssignmentConflictCheck__Boxed * __this, int32_t param_0000995b, ControllerType__Enum param_0000995c, int32_t param_0000995d, int32_t param_0000995e, int32_t param_0000995f, AxisRange__Enum param_00009960, int32_t param_00009961, Pole__Enum param_00009962, MethodInfo * method)); -DO_APP_FUNC(0x01EC8600, void, ElementAssignmentConflictCheck__ctor_7, (ElementAssignmentConflictCheck__Boxed * __this, int32_t param_00009963, ControllerType__Enum param_00009964, int32_t param_00009965, int32_t param_00009966, int32_t param_00009967, AxisRange__Enum param_00009968, int32_t param_00009969, Pole__Enum param_0000996a, int32_t param_0000996b, MethodInfo * method)); -DO_APP_FUNC(0x01EC86E0, void, ElementAssignmentConflictCheck__ctor_8, (ElementAssignmentConflictCheck__Boxed * __this, int32_t param_0000996c, ControllerType__Enum param_0000996d, int32_t param_0000996e, int32_t param_0000996f, int32_t param_00009970, int32_t param_00009971, Pole__Enum param_00009972, MethodInfo * method)); -DO_APP_FUNC(0x01EC87C0, void, ElementAssignmentConflictCheck__ctor_9, (ElementAssignmentConflictCheck__Boxed * __this, int32_t param_00009973, ControllerType__Enum param_00009974, int32_t param_00009975, int32_t param_00009976, int32_t param_00009977, int32_t param_00009978, Pole__Enum param_00009979, int32_t param_0000997a, MethodInfo * method)); -DO_APP_FUNC(0x01EC88B0, void, ElementAssignmentConflictCheck__ctor_10, (ElementAssignmentConflictCheck__Boxed * __this, int32_t param_0000997b, ControllerType__Enum param_0000997c, int32_t param_0000997d, int32_t param_0000997e, KeyCode__Enum param_0000997f, ModifierKeyFlags__Enum param_00009980, int32_t param_00009981, Pole__Enum param_00009982, MethodInfo * method)); -DO_APP_FUNC(0x01EC8920, void, ElementAssignmentConflictCheck__ctor_11, (ElementAssignmentConflictCheck__Boxed * __this, int32_t param_00009983, ControllerType__Enum param_00009984, int32_t param_00009985, int32_t param_00009986, KeyCode__Enum param_00009987, ModifierKeyFlags__Enum param_00009988, int32_t param_00009989, Pole__Enum param_0000998a, int32_t param_0000998b, MethodInfo * method)); -DO_APP_FUNC(0x01EC8990, void, ElementAssignmentConflictCheck__ctor_12, (ElementAssignmentConflictCheck__Boxed * __this, ElementAssignmentConflictCheck param_0000998c, MethodInfo * method)); -DO_APP_FUNC(0x01EC89F0, ElementAssignment, ElementAssignmentConflictCheck_ToElementAssignment, (ElementAssignmentConflictCheck__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC8A70, ElementAssignment, ElementAssignmentConflictCheck_ToFullAxisAssignment, (ElementAssignmentConflictCheck__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC8AB0, ElementAssignment, ElementAssignmentConflictCheck_ToSplitAxisAssignment, (ElementAssignmentConflictCheck__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC8AF0, ElementAssignment, ElementAssignmentConflictCheck_ToButtonAssignment, (ElementAssignmentConflictCheck__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC8B60, ElementAssignment, ElementAssignmentConflictCheck_ToKeyboardKeyAssignment, (ElementAssignmentConflictCheck__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC8BD0, void, ElementAssignmentConflictCheck_eXSappDDgdBKInGEBtQFHIXGBQNs, (ElementAssignmentConflictCheck__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC8BF0, void, ElementAssignment__ctor, (ElementAssignment__Boxed * __this, ElementAssignmentType__Enum param_0000998d, int32_t param_0000998e, AxisRange__Enum param_0000998f, KeyCode__Enum param_00009990, ModifierKeyFlags__Enum param_00009991, int32_t param_00009992, Pole__Enum param_00009993, bool param_00009994, int32_t param_00009995, MethodInfo * method)); -DO_APP_FUNC(0x01EC8C30, void, ElementAssignment__ctor_1, (ElementAssignment__Boxed * __this, ControllerType__Enum param_00009996, ControllerElementType__Enum param_00009997, int32_t param_00009998, AxisRange__Enum param_00009999, KeyCode__Enum param_0000999a, ModifierKeyFlags__Enum param_0000999b, int32_t param_0000999c, Pole__Enum param_0000999d, bool param_0000999e, int32_t param_0000999f, MethodInfo * method)); -DO_APP_FUNC(0x01EC8CB0, void, ElementAssignment__ctor_2, (ElementAssignment__Boxed * __this, ElementAssignmentType__Enum param_000099a0, int32_t param_000099a1, AxisRange__Enum param_000099a2, KeyCode__Enum param_000099a3, ModifierKeyFlags__Enum param_000099a4, int32_t param_000099a5, Pole__Enum param_000099a6, bool param_000099a7, MethodInfo * method)); -DO_APP_FUNC(0x01EC8CF0, void, ElementAssignment__ctor_3, (ElementAssignment__Boxed * __this, ControllerType__Enum param_000099a8, ControllerElementType__Enum param_000099a9, int32_t param_000099aa, AxisRange__Enum param_000099ab, KeyCode__Enum param_000099ac, ModifierKeyFlags__Enum param_000099ad, int32_t param_000099ae, Pole__Enum param_000099af, bool param_000099b0, MethodInfo * method)); -DO_APP_FUNC(0x01EC8D70, void, ElementAssignment__ctor_4, (ElementAssignment__Boxed * __this, int32_t param_000099b1, int32_t param_000099b2, bool param_000099b3, MethodInfo * method)); -DO_APP_FUNC(0x01EC8DA0, void, ElementAssignment__ctor_5, (ElementAssignment__Boxed * __this, int32_t param_000099b4, int32_t param_000099b5, bool param_000099b6, int32_t param_000099b7, MethodInfo * method)); -DO_APP_FUNC(0x01EC8DD0, void, ElementAssignment__ctor_6, (ElementAssignment__Boxed * __this, int32_t param_000099b8, AxisRange__Enum param_000099b9, int32_t param_000099ba, Pole__Enum param_000099bb, MethodInfo * method)); -DO_APP_FUNC(0x01EC8E00, void, ElementAssignment__ctor_7, (ElementAssignment__Boxed * __this, int32_t param_000099bc, AxisRange__Enum param_000099bd, int32_t param_000099be, Pole__Enum param_000099bf, int32_t param_000099c0, MethodInfo * method)); -DO_APP_FUNC(0x01EC8E30, void, ElementAssignment__ctor_8, (ElementAssignment__Boxed * __this, int32_t param_000099c1, int32_t param_000099c2, Pole__Enum param_000099c3, MethodInfo * method)); -DO_APP_FUNC(0x01EC8E60, void, ElementAssignment__ctor_9, (ElementAssignment__Boxed * __this, int32_t param_000099c4, int32_t param_000099c5, Pole__Enum param_000099c6, int32_t param_000099c7, MethodInfo * method)); -DO_APP_FUNC(0x01EC8E90, void, ElementAssignment__ctor_10, (ElementAssignment__Boxed * __this, KeyCode__Enum param_000099c8, ModifierKeyFlags__Enum param_000099c9, int32_t param_000099ca, Pole__Enum param_000099cb, MethodInfo * method)); -DO_APP_FUNC(0x01EC8F10, void, ElementAssignment__ctor_11, (ElementAssignment__Boxed * __this, KeyCode__Enum param_000099cc, ModifierKeyFlags__Enum param_000099cd, int32_t param_000099ce, Pole__Enum param_000099cf, int32_t param_000099d0, MethodInfo * method)); +DO_APP_FUNC(0x00C173D0, bool, ElementAssignmentConflictInfo_get_isConflict, (ElementAssignmentConflictInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C3C200, void, ElementAssignmentConflictInfo_SamVvFAjUtaVliheLStVbOOAozygb, (ElementAssignmentConflictInfo * __this, bool param_000098f3, MethodInfo * method)); +DO_APP_FUNC(0x01819930, bool, ElementAssignmentConflictInfo_get_isUserAssignable, (ElementAssignmentConflictInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC7BF0, void, ElementAssignmentConflictInfo_yBCCZFRebwQDCFFydhwtClhirkTj, (ElementAssignmentConflictInfo * __this, bool param_000098f4, MethodInfo * method)); +DO_APP_FUNC(0x00C173E0, int32_t, ElementAssignmentConflictInfo_get_playerId, (ElementAssignmentConflictInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x018C6CA0, void, ElementAssignmentConflictInfo_dFFlgStzvedYtrIYqtDDyjmOXAFc, (ElementAssignmentConflictInfo * __this, int32_t param_000098f5, MethodInfo * method)); +DO_APP_FUNC(0x00471920, ControllerType__Enum, ElementAssignmentConflictInfo_get_controllerType, (ElementAssignmentConflictInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x018C6CC0, void, ElementAssignmentConflictInfo_MoaFsMmogWjzQbmrkhXmqURBYRcP, (ElementAssignmentConflictInfo * __this, ControllerType__Enum param_000098f6, MethodInfo * method)); +DO_APP_FUNC(0x00E57F20, int32_t, ElementAssignmentConflictInfo_get_controllerId, (ElementAssignmentConflictInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B16CA0, void, ElementAssignmentConflictInfo_gEhENuQhNdqYPZLxbDRTUICIFDkM, (ElementAssignmentConflictInfo * __this, int32_t param_000098f7, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, int32_t, ElementAssignmentConflictInfo_get_controllerMapId, (ElementAssignmentConflictInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD60, void, ElementAssignmentConflictInfo_ymInOGmUumfChKMtGOIFAVtKRXxd, (ElementAssignmentConflictInfo * __this, int32_t param_000098f8, MethodInfo * method)); +DO_APP_FUNC(0x003BCD70, int32_t, ElementAssignmentConflictInfo_get_elementMapId, (ElementAssignmentConflictInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD80, void, ElementAssignmentConflictInfo_vCqevUhnDCLescgiPVKTCMJndBgBb, (ElementAssignmentConflictInfo * __this, int32_t param_000098f9, MethodInfo * method)); +DO_APP_FUNC(0x003BC2E0, ControllerElementType__Enum, ElementAssignmentConflictInfo_get_elementType, (ElementAssignmentConflictInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCDD0, void, ElementAssignmentConflictInfo_kGPFTtahToOJKneCeCyIywUXpZHN, (ElementAssignmentConflictInfo * __this, ControllerElementType__Enum param_000098fa, MethodInfo * method)); +DO_APP_FUNC(0x003CD440, int32_t, ElementAssignmentConflictInfo_get_elementIdentifierId, (ElementAssignmentConflictInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x006D8870, void, ElementAssignmentConflictInfo_QBSGkXDKxheSgJCTgoixiukihrFrB, (ElementAssignmentConflictInfo * __this, int32_t param_000098fb, MethodInfo * method)); +DO_APP_FUNC(0x003CC980, KeyCode__Enum, ElementAssignmentConflictInfo_get_keyCode, (ElementAssignmentConflictInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x003CC990, void, ElementAssignmentConflictInfo_WkZoGblKFhTlBkSJuIosWUjCxJQK, (ElementAssignmentConflictInfo * __this, KeyCode__Enum param_000098fc, MethodInfo * method)); +DO_APP_FUNC(0x003CD280, ModifierKeyFlags__Enum, ElementAssignmentConflictInfo_get_modifierKeyFlags, (ElementAssignmentConflictInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x006D8950, void, ElementAssignmentConflictInfo_UzEGGvcKKPNzVuFLHxBySLspEJOOA, (ElementAssignmentConflictInfo * __this, ModifierKeyFlags__Enum param_000098fd, MethodInfo * method)); +DO_APP_FUNC(0x00421680, int32_t, ElementAssignmentConflictInfo_get_actionId, (ElementAssignmentConflictInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x00421690, void, ElementAssignmentConflictInfo_MhAfStKVAostGkuNHzBfnBwjEyOd, (ElementAssignmentConflictInfo * __this, int32_t param_000098fe, MethodInfo * method)); +DO_APP_FUNC(0x01EC7C00, Player *, ElementAssignmentConflictInfo_get_player, (ElementAssignmentConflictInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC7CD0, InputAction *, ElementAssignmentConflictInfo_get_action, (ElementAssignmentConflictInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC7DA0, Controller *, ElementAssignmentConflictInfo_get_controller, (ElementAssignmentConflictInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC7E70, ControllerMap *, ElementAssignmentConflictInfo_get_controllerMap, (ElementAssignmentConflictInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC7EE0, ControllerElementIdentifier *, ElementAssignmentConflictInfo_get_elementIdentifier, (ElementAssignmentConflictInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC7F30, ActionElementMap *, ElementAssignmentConflictInfo_get_elementMap, (ElementAssignmentConflictInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC7FC0, String *, ElementAssignmentConflictInfo_get_elementDisplayName, (ElementAssignmentConflictInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC8060, void, ElementAssignmentConflictInfo__ctor, (ElementAssignmentConflictInfo * __this, bool param_000098ff, bool param_00009900, int32_t param_00009901, ControllerType__Enum param_00009902, int32_t param_00009903, int32_t param_00009904, int32_t param_00009905, int32_t param_00009906, ControllerElementType__Enum param_00009907, int32_t param_00009908, KeyCode__Enum param_00009909, ModifierKeyFlags__Enum param_0000990a, MethodInfo * method)); +DO_APP_FUNC(0x01EC80B0, void, ElementAssignmentConflictInfo__ctor_1, (ElementAssignmentConflictInfo * __this, ElementAssignmentConflictInfo param_0000990b, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, ElementAssignmentType__Enum, ElementAssignmentConflictCheck_get_elementAssignmentType, (ElementAssignmentConflictCheck * __this, MethodInfo * method)); +DO_APP_FUNC(0x00959BA0, void, ElementAssignmentConflictCheck_set_elementAssignmentType, (ElementAssignmentConflictCheck * __this, ElementAssignmentType__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x00C173E0, int32_t, ElementAssignmentConflictCheck_get_playerId, (ElementAssignmentConflictCheck * __this, MethodInfo * method)); +DO_APP_FUNC(0x018C6CA0, void, ElementAssignmentConflictCheck_set_playerId, (ElementAssignmentConflictCheck * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x00471920, ControllerType__Enum, ElementAssignmentConflictCheck_get_controllerType, (ElementAssignmentConflictCheck * __this, MethodInfo * method)); +DO_APP_FUNC(0x018C6CC0, void, ElementAssignmentConflictCheck_set_controllerType, (ElementAssignmentConflictCheck * __this, ControllerType__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x00E57F20, int32_t, ElementAssignmentConflictCheck_get_controllerId, (ElementAssignmentConflictCheck * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B16CA0, void, ElementAssignmentConflictCheck_set_controllerId, (ElementAssignmentConflictCheck * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, int32_t, ElementAssignmentConflictCheck_get_controllerMapId, (ElementAssignmentConflictCheck * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD60, void, ElementAssignmentConflictCheck_set_controllerMapId, (ElementAssignmentConflictCheck * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x003BCD70, int32_t, ElementAssignmentConflictCheck_get_controllerMapCategoryId, (ElementAssignmentConflictCheck * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD80, void, ElementAssignmentConflictCheck_set_controllerMapCategoryId, (ElementAssignmentConflictCheck * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x003BC2E0, int32_t, ElementAssignmentConflictCheck_get_elementMapId, (ElementAssignmentConflictCheck * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCDD0, void, ElementAssignmentConflictCheck_set_elementMapId, (ElementAssignmentConflictCheck * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x003CD440, int32_t, ElementAssignmentConflictCheck_get_elementIdentifierId, (ElementAssignmentConflictCheck * __this, MethodInfo * method)); +DO_APP_FUNC(0x006D8870, void, ElementAssignmentConflictCheck_set_elementIdentifierId, (ElementAssignmentConflictCheck * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x003CC980, AxisRange__Enum, ElementAssignmentConflictCheck_get_axisRange, (ElementAssignmentConflictCheck * __this, MethodInfo * method)); +DO_APP_FUNC(0x003CC990, void, ElementAssignmentConflictCheck_set_axisRange, (ElementAssignmentConflictCheck * __this, AxisRange__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x003CD280, KeyCode__Enum, ElementAssignmentConflictCheck_get_keyboardKey, (ElementAssignmentConflictCheck * __this, MethodInfo * method)); +DO_APP_FUNC(0x006D8950, void, ElementAssignmentConflictCheck_set_keyboardKey, (ElementAssignmentConflictCheck * __this, KeyCode__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x00421680, ModifierKeyFlags__Enum, ElementAssignmentConflictCheck_get_modifierKeyFlags, (ElementAssignmentConflictCheck * __this, MethodInfo * method)); +DO_APP_FUNC(0x00421690, void, ElementAssignmentConflictCheck_set_modifierKeyFlags, (ElementAssignmentConflictCheck * __this, ModifierKeyFlags__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x0098C870, int32_t, ElementAssignmentConflictCheck_get_actionId, (ElementAssignmentConflictCheck * __this, MethodInfo * method)); +DO_APP_FUNC(0x0098C880, void, ElementAssignmentConflictCheck_set_actionId, (ElementAssignmentConflictCheck * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x003C7300, Pole__Enum, ElementAssignmentConflictCheck_get_axisContribution, (ElementAssignmentConflictCheck * __this, MethodInfo * method)); +DO_APP_FUNC(0x003C7310, void, ElementAssignmentConflictCheck_set_axisContribution, (ElementAssignmentConflictCheck * __this, Pole__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x005C47D0, bool, ElementAssignmentConflictCheck_get_invert, (ElementAssignmentConflictCheck * __this, MethodInfo * method)); +DO_APP_FUNC(0x01DB9820, void, ElementAssignmentConflictCheck_set_invert, (ElementAssignmentConflictCheck * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x01EC8100, void, ElementAssignmentConflictCheck__ctor, (ElementAssignmentConflictCheck * __this, int32_t param_0000991a, ControllerType__Enum param_0000991b, int32_t param_0000991c, int32_t param_0000991d, ElementAssignmentType__Enum param_0000991e, int32_t param_0000991f, AxisRange__Enum param_00009920, KeyCode__Enum param_00009921, ModifierKeyFlags__Enum param_00009922, int32_t param_00009923, Pole__Enum param_00009924, bool param_00009925, MethodInfo * method)); +DO_APP_FUNC(0x01EC8170, void, ElementAssignmentConflictCheck__ctor_1, (ElementAssignmentConflictCheck * __this, int32_t param_00009926, ControllerType__Enum param_00009927, int32_t param_00009928, int32_t param_00009929, ElementAssignmentType__Enum param_0000992a, int32_t param_0000992b, AxisRange__Enum param_0000992c, KeyCode__Enum param_0000992d, ModifierKeyFlags__Enum param_0000992e, int32_t param_0000992f, Pole__Enum param_00009930, bool param_00009931, int32_t param_00009932, MethodInfo * method)); +DO_APP_FUNC(0x01EC81E0, void, ElementAssignmentConflictCheck__ctor_2, (ElementAssignmentConflictCheck * __this, int32_t param_00009933, ControllerType__Enum param_00009934, int32_t param_00009935, int32_t param_00009936, ControllerElementType__Enum param_00009937, int32_t param_00009938, AxisRange__Enum param_00009939, KeyCode__Enum param_0000993a, ModifierKeyFlags__Enum param_0000993b, int32_t param_0000993c, Pole__Enum param_0000993d, bool param_0000993e, MethodInfo * method)); +DO_APP_FUNC(0x01EC8280, void, ElementAssignmentConflictCheck__ctor_3, (ElementAssignmentConflictCheck * __this, int32_t param_0000993f, ControllerType__Enum param_00009940, int32_t param_00009941, int32_t param_00009942, ControllerElementType__Enum param_00009943, int32_t param_00009944, AxisRange__Enum param_00009945, KeyCode__Enum param_00009946, ModifierKeyFlags__Enum param_00009947, int32_t param_00009948, Pole__Enum param_00009949, bool param_0000994a, int32_t param_0000994b, MethodInfo * method)); +DO_APP_FUNC(0x01EC8360, void, ElementAssignmentConflictCheck__ctor_4, (ElementAssignmentConflictCheck * __this, int32_t param_0000994c, ControllerType__Enum param_0000994d, int32_t param_0000994e, int32_t param_0000994f, int32_t param_00009950, int32_t param_00009951, bool param_00009952, MethodInfo * method)); +DO_APP_FUNC(0x01EC8440, void, ElementAssignmentConflictCheck__ctor_5, (ElementAssignmentConflictCheck * __this, int32_t param_00009953, ControllerType__Enum param_00009954, int32_t param_00009955, int32_t param_00009956, int32_t param_00009957, int32_t param_00009958, bool param_00009959, int32_t param_0000995a, MethodInfo * method)); +DO_APP_FUNC(0x01EC8520, void, ElementAssignmentConflictCheck__ctor_6, (ElementAssignmentConflictCheck * __this, int32_t param_0000995b, ControllerType__Enum param_0000995c, int32_t param_0000995d, int32_t param_0000995e, int32_t param_0000995f, AxisRange__Enum param_00009960, int32_t param_00009961, Pole__Enum param_00009962, MethodInfo * method)); +DO_APP_FUNC(0x01EC8600, void, ElementAssignmentConflictCheck__ctor_7, (ElementAssignmentConflictCheck * __this, int32_t param_00009963, ControllerType__Enum param_00009964, int32_t param_00009965, int32_t param_00009966, int32_t param_00009967, AxisRange__Enum param_00009968, int32_t param_00009969, Pole__Enum param_0000996a, int32_t param_0000996b, MethodInfo * method)); +DO_APP_FUNC(0x01EC86E0, void, ElementAssignmentConflictCheck__ctor_8, (ElementAssignmentConflictCheck * __this, int32_t param_0000996c, ControllerType__Enum param_0000996d, int32_t param_0000996e, int32_t param_0000996f, int32_t param_00009970, int32_t param_00009971, Pole__Enum param_00009972, MethodInfo * method)); +DO_APP_FUNC(0x01EC87C0, void, ElementAssignmentConflictCheck__ctor_9, (ElementAssignmentConflictCheck * __this, int32_t param_00009973, ControllerType__Enum param_00009974, int32_t param_00009975, int32_t param_00009976, int32_t param_00009977, int32_t param_00009978, Pole__Enum param_00009979, int32_t param_0000997a, MethodInfo * method)); +DO_APP_FUNC(0x01EC88B0, void, ElementAssignmentConflictCheck__ctor_10, (ElementAssignmentConflictCheck * __this, int32_t param_0000997b, ControllerType__Enum param_0000997c, int32_t param_0000997d, int32_t param_0000997e, KeyCode__Enum param_0000997f, ModifierKeyFlags__Enum param_00009980, int32_t param_00009981, Pole__Enum param_00009982, MethodInfo * method)); +DO_APP_FUNC(0x01EC8920, void, ElementAssignmentConflictCheck__ctor_11, (ElementAssignmentConflictCheck * __this, int32_t param_00009983, ControllerType__Enum param_00009984, int32_t param_00009985, int32_t param_00009986, KeyCode__Enum param_00009987, ModifierKeyFlags__Enum param_00009988, int32_t param_00009989, Pole__Enum param_0000998a, int32_t param_0000998b, MethodInfo * method)); +DO_APP_FUNC(0x01EC8990, void, ElementAssignmentConflictCheck__ctor_12, (ElementAssignmentConflictCheck * __this, ElementAssignmentConflictCheck param_0000998c, MethodInfo * method)); +DO_APP_FUNC(0x01EC89F0, ElementAssignment, ElementAssignmentConflictCheck_ToElementAssignment, (ElementAssignmentConflictCheck * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC8A70, ElementAssignment, ElementAssignmentConflictCheck_ToFullAxisAssignment, (ElementAssignmentConflictCheck * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC8AB0, ElementAssignment, ElementAssignmentConflictCheck_ToSplitAxisAssignment, (ElementAssignmentConflictCheck * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC8AF0, ElementAssignment, ElementAssignmentConflictCheck_ToButtonAssignment, (ElementAssignmentConflictCheck * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC8B60, ElementAssignment, ElementAssignmentConflictCheck_ToKeyboardKeyAssignment, (ElementAssignmentConflictCheck * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC8BD0, void, ElementAssignmentConflictCheck_eXSappDDgdBKInGEBtQFHIXGBQNs, (ElementAssignmentConflictCheck * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC8BF0, void, ElementAssignment__ctor, (ElementAssignment * __this, ElementAssignmentType__Enum param_0000998d, int32_t param_0000998e, AxisRange__Enum param_0000998f, KeyCode__Enum param_00009990, ModifierKeyFlags__Enum param_00009991, int32_t param_00009992, Pole__Enum param_00009993, bool param_00009994, int32_t param_00009995, MethodInfo * method)); +DO_APP_FUNC(0x01EC8C30, void, ElementAssignment__ctor_1, (ElementAssignment * __this, ControllerType__Enum param_00009996, ControllerElementType__Enum param_00009997, int32_t param_00009998, AxisRange__Enum param_00009999, KeyCode__Enum param_0000999a, ModifierKeyFlags__Enum param_0000999b, int32_t param_0000999c, Pole__Enum param_0000999d, bool param_0000999e, int32_t param_0000999f, MethodInfo * method)); +DO_APP_FUNC(0x01EC8CB0, void, ElementAssignment__ctor_2, (ElementAssignment * __this, ElementAssignmentType__Enum param_000099a0, int32_t param_000099a1, AxisRange__Enum param_000099a2, KeyCode__Enum param_000099a3, ModifierKeyFlags__Enum param_000099a4, int32_t param_000099a5, Pole__Enum param_000099a6, bool param_000099a7, MethodInfo * method)); +DO_APP_FUNC(0x01EC8CF0, void, ElementAssignment__ctor_3, (ElementAssignment * __this, ControllerType__Enum param_000099a8, ControllerElementType__Enum param_000099a9, int32_t param_000099aa, AxisRange__Enum param_000099ab, KeyCode__Enum param_000099ac, ModifierKeyFlags__Enum param_000099ad, int32_t param_000099ae, Pole__Enum param_000099af, bool param_000099b0, MethodInfo * method)); +DO_APP_FUNC(0x01EC8D70, void, ElementAssignment__ctor_4, (ElementAssignment * __this, int32_t param_000099b1, int32_t param_000099b2, bool param_000099b3, MethodInfo * method)); +DO_APP_FUNC(0x01EC8DA0, void, ElementAssignment__ctor_5, (ElementAssignment * __this, int32_t param_000099b4, int32_t param_000099b5, bool param_000099b6, int32_t param_000099b7, MethodInfo * method)); +DO_APP_FUNC(0x01EC8DD0, void, ElementAssignment__ctor_6, (ElementAssignment * __this, int32_t param_000099b8, AxisRange__Enum param_000099b9, int32_t param_000099ba, Pole__Enum param_000099bb, MethodInfo * method)); +DO_APP_FUNC(0x01EC8E00, void, ElementAssignment__ctor_7, (ElementAssignment * __this, int32_t param_000099bc, AxisRange__Enum param_000099bd, int32_t param_000099be, Pole__Enum param_000099bf, int32_t param_000099c0, MethodInfo * method)); +DO_APP_FUNC(0x01EC8E30, void, ElementAssignment__ctor_8, (ElementAssignment * __this, int32_t param_000099c1, int32_t param_000099c2, Pole__Enum param_000099c3, MethodInfo * method)); +DO_APP_FUNC(0x01EC8E60, void, ElementAssignment__ctor_9, (ElementAssignment * __this, int32_t param_000099c4, int32_t param_000099c5, Pole__Enum param_000099c6, int32_t param_000099c7, MethodInfo * method)); +DO_APP_FUNC(0x01EC8E90, void, ElementAssignment__ctor_10, (ElementAssignment * __this, KeyCode__Enum param_000099c8, ModifierKeyFlags__Enum param_000099c9, int32_t param_000099ca, Pole__Enum param_000099cb, MethodInfo * method)); +DO_APP_FUNC(0x01EC8F10, void, ElementAssignment__ctor_11, (ElementAssignment * __this, KeyCode__Enum param_000099cc, ModifierKeyFlags__Enum param_000099cd, int32_t param_000099ce, Pole__Enum param_000099cf, int32_t param_000099d0, MethodInfo * method)); DO_APP_FUNC(0x01EC8F90, ElementAssignment, ElementAssignment_CompleteAssignment, (ElementAssignmentType__Enum elementAssignmentType, int32_t elementIdentifierId, AxisRange__Enum axisRange, KeyCode__Enum keyboardKey, ModifierKeyFlags__Enum modifierKeyFlags, int32_t actionId, Pole__Enum axisContribution, bool invert, int32_t elementMapId, MethodInfo * method)); DO_APP_FUNC(0x01EC8FE0, ElementAssignment, ElementAssignment_CompleteAssignment_1, (ControllerType__Enum controllerType, ControllerElementType__Enum elementType, int32_t elementIdentifierId, AxisRange__Enum axisRange, KeyCode__Enum keyboardKey, ModifierKeyFlags__Enum modifierKeyFlags, int32_t actionId, Pole__Enum axisContribution, bool invert, int32_t elementMapId, MethodInfo * method)); DO_APP_FUNC(0x01EC9070, ElementAssignment, ElementAssignment_CompleteAssignment_2, (ElementAssignmentType__Enum elementAssignmentType, int32_t elementIdentifierId, AxisRange__Enum axisRange, KeyCode__Enum keyboardKey, ModifierKeyFlags__Enum modifierKeyFlags, int32_t actionId, Pole__Enum axisContribution, bool invert, MethodInfo * method)); @@ -39594,7 +47052,7 @@ DO_APP_FUNC(0x01EC9230, ElementAssignment, ElementAssignment_ButtonAssignment, ( DO_APP_FUNC(0x01EC9270, ElementAssignment, ElementAssignment_ButtonAssignment_1, (int32_t elementIdentifierId, int32_t actionId, Pole__Enum axisContribution, int32_t elementMapId, MethodInfo * method)); DO_APP_FUNC(0x01EC92B0, ElementAssignment, ElementAssignment_KeyboardKeyAssignment, (KeyCode__Enum keyboardKey, ModifierKeyFlags__Enum modifierKeyFlags, int32_t actionId, Pole__Enum axisContribution, MethodInfo * method)); DO_APP_FUNC(0x01EC9340, ElementAssignment, ElementAssignment_KeyboardKeyAssignment_1, (KeyCode__Enum keyboardKey, ModifierKeyFlags__Enum modifierKeyFlags, int32_t actionId, Pole__Enum axisContribution, int32_t elementMapId, MethodInfo * method)); -DO_APP_FUNC(0x01EC93D0, ElementAssignmentConflictCheck, ElementAssignment_ToElementAssignmentConflictCheck, (ElementAssignment__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC93D0, ElementAssignmentConflictCheck, ElementAssignment_ToElementAssignmentConflictCheck, (ElementAssignment * __this, MethodInfo * method)); DO_APP_FUNC(0x01EC9430, Player *, ElementAssignmentInfo_get_player, (ElementAssignmentInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01EC9590, InputAction *, ElementAssignmentInfo_get_action, (ElementAssignmentInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01EC9660, Controller *, ElementAssignmentInfo_get_controller, (ElementAssignmentInfo * __this, MethodInfo * method)); @@ -39611,28 +47069,30 @@ DO_APP_FUNC(0x00421680, KeyCode__Enum, ElementAssignmentInfo_get_keyCode, (Eleme DO_APP_FUNC(0x0098C870, ModifierKeyFlags__Enum, ElementAssignmentInfo_get_modifierKeyFlags, (ElementAssignmentInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01EC9950, String *, ElementAssignmentInfo_get_elementDisplayName, (ElementAssignmentInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01EC9AA0, void, ElementAssignmentInfo__ctor, (ElementAssignmentInfo * __this, ControllerMap * param_00009a15, ElementAssignment param_00009a16, MethodInfo * method)); -DO_APP_FUNC(0x00471910, Controller *, InputActionSourceData_get_controller, (InputActionSourceData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC9BF0, ControllerType__Enum, InputActionSourceData_get_controllerType, (InputActionSourceData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, ControllerMap *, InputActionSourceData_get_controllerMap, (InputActionSourceData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, ActionElementMap *, InputActionSourceData_get_actionElementMap, (InputActionSourceData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC9C10, String *, InputActionSourceData_get_elementIdentifierName, (InputActionSourceData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0096DD20, void, InputActionSourceData__ctor, (InputActionSourceData__Boxed * __this, Controller * param_00009a17, ControllerMap * param_00009a18, ActionElementMap * param_00009a19, MethodInfo * method)); -DO_APP_FUNC(0x01EC9C60, void, InputActionSourceData__ctor_1, (InputActionSourceData__Boxed * __this, othBwbjJCfqjCkCuDgXhdkQCXIPtA * param_00009a1a, MethodInfo * method)); -DO_APP_FUNC(0x01EC9D90, void, ControllerIdentifier__ctor, (ControllerIdentifier__Boxed * __this, Controller * param_00009a1b, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, ControllerIdentifier_get_controllerId, (ControllerIdentifier__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00959BA0, void, ControllerIdentifier_set_controllerId, (ControllerIdentifier__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00C173E0, ControllerType__Enum, ControllerIdentifier_get_controllerType, (ControllerIdentifier__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018C6CA0, void, ControllerIdentifier_set_controllerType, (ControllerIdentifier__Boxed * __this, ControllerType__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x00C16880, Guid, ControllerIdentifier_get_hardwareTypeGuid, (ControllerIdentifier__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B621E0, void, ControllerIdentifier_set_hardwareTypeGuid, (ControllerIdentifier__Boxed * __this, Guid value, MethodInfo * method)); -DO_APP_FUNC(0x003BB3D0, String *, ControllerIdentifier_get_hardwareIdentifier, (ControllerIdentifier__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003AE960, void, ControllerIdentifier_set_hardwareIdentifier, (ControllerIdentifier__Boxed * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x01042010, Guid, ControllerIdentifier_get_deviceInstanceGuid, (ControllerIdentifier__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01903F70, void, ControllerIdentifier_set_deviceInstanceGuid, (ControllerIdentifier__Boxed * __this, Guid value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB208, ElementAssignmentInfo__ctor__MethodInfo); +DO_APP_FUNC(0x00471910, Controller *, InputActionSourceData_get_controller, (InputActionSourceData * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC9BF0, ControllerType__Enum, InputActionSourceData_get_controllerType, (InputActionSourceData * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, ControllerMap *, InputActionSourceData_get_controllerMap, (InputActionSourceData * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, ActionElementMap *, InputActionSourceData_get_actionElementMap, (InputActionSourceData * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC9C10, String *, InputActionSourceData_get_elementIdentifierName, (InputActionSourceData * __this, MethodInfo * method)); +DO_APP_FUNC(0x0096DD20, void, InputActionSourceData__ctor, (InputActionSourceData * __this, Controller * param_00009a17, ControllerMap * param_00009a18, ActionElementMap * param_00009a19, MethodInfo * method)); +DO_APP_FUNC(0x01EC9C60, void, InputActionSourceData__ctor_1, (InputActionSourceData * __this, othBwbjJCfqjCkCuDgXhdkQCXIPtA * param_00009a1a, MethodInfo * method)); +DO_APP_FUNC(0x01EC9D90, void, ControllerIdentifier__ctor, (ControllerIdentifier * __this, Controller * param_00009a1b, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, ControllerIdentifier_get_controllerId, (ControllerIdentifier * __this, MethodInfo * method)); +DO_APP_FUNC(0x00959BA0, void, ControllerIdentifier_set_controllerId, (ControllerIdentifier * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x00C173E0, ControllerType__Enum, ControllerIdentifier_get_controllerType, (ControllerIdentifier * __this, MethodInfo * method)); +DO_APP_FUNC(0x018C6CA0, void, ControllerIdentifier_set_controllerType, (ControllerIdentifier * __this, ControllerType__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x00C16880, Guid, ControllerIdentifier_get_hardwareTypeGuid, (ControllerIdentifier * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B621E0, void, ControllerIdentifier_set_hardwareTypeGuid, (ControllerIdentifier * __this, Guid value, MethodInfo * method)); +DO_APP_FUNC(0x003BB3D0, String *, ControllerIdentifier_get_hardwareIdentifier, (ControllerIdentifier * __this, MethodInfo * method)); +DO_APP_FUNC(0x003AE960, void, ControllerIdentifier_set_hardwareIdentifier, (ControllerIdentifier * __this, String * value, MethodInfo * method)); +DO_APP_FUNC(0x01042010, Guid, ControllerIdentifier_get_deviceInstanceGuid, (ControllerIdentifier * __this, MethodInfo * method)); +DO_APP_FUNC(0x01903F70, void, ControllerIdentifier_set_deviceInstanceGuid, (ControllerIdentifier * __this, Guid value, MethodInfo * method)); DO_APP_FUNC(0x01EC9E60, ControllerIdentifier, ControllerIdentifier_get_Blank, (MethodInfo * method)); DO_APP_FUNC(0x01EC9E80, void, ControllerSetSelector__ctor, (ControllerSetSelector * __this, ControllerSetSelector_Type__Enum param_00009a21, MethodInfo * method)); DO_APP_FUNC(0x019ECA80, void, ControllerSetSelector__ctor_1, (ControllerSetSelector * __this, MethodInfo * method)); DO_APP_FUNC(0x01EC9E90, void, ControllerSetSelector__ctor_2, (ControllerSetSelector * __this, ControllerSetSelector * param_00009a22, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB1F0, ControllerSetSelector__ctor_2__MethodInfo); DO_APP_FUNC(0x01EC9FD0, void, ControllerSetSelector__ctor_3, (ControllerSetSelector * __this, ControllerSetSelector_Type__Enum param_00009a23, ControllerType__Enum param_00009a24, String * param_00009a25, String * param_00009a26, int32_t param_00009a27, MethodInfo * method)); DO_APP_FUNC(0x01ECA110, bool, ControllerSetSelector_LBPEXzRMpVYOgRrcWauvhqmsWDtN, (ControllerSetSelector * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD50, ControllerSetSelector_Type__Enum, ControllerSetSelector_get_type, (ControllerSetSelector * __this, MethodInfo * method)); @@ -39650,6 +47110,7 @@ DO_APP_FUNC(0x01ECA610, void, ControllerSetSelector_set_deviceInstanceGuid, (Con DO_APP_FUNC(0x00421680, int32_t, ControllerSetSelector_get_controllerId, (ControllerSetSelector * __this, MethodInfo * method)); DO_APP_FUNC(0x00421690, void, ControllerSetSelector_set_controllerId, (ControllerSetSelector * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01ECA770, bool, ControllerSetSelector_Matches, (ControllerSetSelector * __this, Controller * controller, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB158, ControllerSetSelector_Matches__MethodInfo); DO_APP_FUNC(0x01ECAAA0, String *, ControllerSetSelector_ToString, (ControllerSetSelector * __this, MethodInfo * method)); DO_APP_FUNC(0x01ECACD0, void, ControllerSetSelector_TircSQEpUWUBTfOOEBOScDxcUKbhb, (ControllerSetSelector * __this, MethodInfo * method)); DO_APP_FUNC(0x01ECAD80, void, ControllerSetSelector_UnityEngine_ISerializationCallbackReceiver_OnAfterDeserialize, (ControllerSetSelector * __this, MethodInfo * method)); @@ -39659,27 +47120,31 @@ DO_APP_FUNC(0x01ECAF70, ControllerSetSelector *, ControllerSetSelector_SelectAll DO_APP_FUNC(0x01ECAFC0, ControllerSetSelector *, ControllerSetSelector_SelectControllerType, (ControllerType__Enum controllerType, MethodInfo * method)); DO_APP_FUNC(0x01ECB020, ControllerSetSelector *, ControllerSetSelector_SelectHardwareType, (ControllerType__Enum controllerType, Guid hardwareTypeGuid, String * hardwareIdentifier, MethodInfo * method)); DO_APP_FUNC(0x01ECB240, ControllerSetSelector *, ControllerSetSelector_SelectHardwareType_1, (Controller * controller, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEAFC8, ControllerSetSelector_SelectHardwareType_1__MethodInfo); DO_APP_FUNC(0x01ECB300, ControllerSetSelector *, ControllerSetSelector_SelectControllerTemplateType, (ControllerType__Enum controllerType, Guid controllerTemplateTypeGuid, MethodInfo * method)); DO_APP_FUNC(0x01ECB4C0, ControllerSetSelector *, ControllerSetSelector_SelectControllerTemplateType_1, (IControllerTemplate * controllerTemplate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEAFA0, ControllerSetSelector_SelectControllerTemplateType_1__MethodInfo); DO_APP_FUNC(0x01ECB740, ControllerSetSelector *, ControllerSetSelector_SelectPersistentControllerInstance, (ControllerType__Enum controllerType, Guid deviceInstanceGuid, MethodInfo * method)); DO_APP_FUNC(0x01ECB900, ControllerSetSelector *, ControllerSetSelector_SelectPersistentControllerInstance_1, (Controller * controller, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB070, ControllerSetSelector_SelectPersistentControllerInstance_1__MethodInfo); DO_APP_FUNC(0x01ECBB40, ControllerSetSelector *, ControllerSetSelector_SelectSessionControllerInstance, (ControllerType__Enum controllerType, int32_t controllerId, MethodInfo * method)); DO_APP_FUNC(0x01ECBBA0, ControllerSetSelector *, ControllerSetSelector_SelectSessionControllerInstance_1, (Controller * controller, MethodInfo * method)); -DO_APP_FUNC(0x01ECBC60, void, ywNXWnsnHdbzydwyXSyhaBXpIvPJ__ctor, (ywNXWnsnHdbzydwyXSyhaBXpIvPJ__Boxed * __this, KeyboardKeyCode__Enum param_00009a3e, ModifierKey__Enum param_00009a3f, ModifierKey__Enum param_00009a40, ModifierKey__Enum param_00009a41, MethodInfo * method)); -DO_APP_FUNC(0x01ECBC80, void, ywNXWnsnHdbzydwyXSyhaBXpIvPJ_sjgQXMMRIHmhSmDrVpgFKxoFoOIy, (ywNXWnsnHdbzydwyXSyhaBXpIvPJ__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B87680, bool, ywNXWnsnHdbzydwyXSyhaBXpIvPJ_Equals, (ywNXWnsnHdbzydwyXSyhaBXpIvPJ__Boxed * __this, ywNXWnsnHdbzydwyXSyhaBXpIvPJ other, MethodInfo * method)); -DO_APP_FUNC(0x01ECBCB0, bool, ywNXWnsnHdbzydwyXSyhaBXpIvPJ_iQEVYTGAMFzzDLVJfsQNCvRcoATV, (ywNXWnsnHdbzydwyXSyhaBXpIvPJ__Boxed * __this, Object * param_00009a43, MethodInfo * method)); -DO_APP_FUNC(0x01ECBD60, int32_t, ywNXWnsnHdbzydwyXSyhaBXpIvPJ_KwJDvJLxEpOiRpZZrQYcZSKAviyg, (ywNXWnsnHdbzydwyXSyhaBXpIvPJ__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB058, ControllerSetSelector_SelectSessionControllerInstance_1__MethodInfo); +DO_APP_FUNC(0x01ECBC60, void, ywNXWnsnHdbzydwyXSyhaBXpIvPJ__ctor, (ywNXWnsnHdbzydwyXSyhaBXpIvPJ * __this, KeyboardKeyCode__Enum param_00009a3e, ModifierKey__Enum param_00009a3f, ModifierKey__Enum param_00009a40, ModifierKey__Enum param_00009a41, MethodInfo * method)); +DO_APP_FUNC(0x01ECBC80, void, ywNXWnsnHdbzydwyXSyhaBXpIvPJ_sjgQXMMRIHmhSmDrVpgFKxoFoOIy, (ywNXWnsnHdbzydwyXSyhaBXpIvPJ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B87680, bool, ywNXWnsnHdbzydwyXSyhaBXpIvPJ_Equals, (ywNXWnsnHdbzydwyXSyhaBXpIvPJ * __this, ywNXWnsnHdbzydwyXSyhaBXpIvPJ other, MethodInfo * method)); +DO_APP_FUNC(0x01ECBCB0, bool, ywNXWnsnHdbzydwyXSyhaBXpIvPJ_iQEVYTGAMFzzDLVJfsQNCvRcoATV, (ywNXWnsnHdbzydwyXSyhaBXpIvPJ * __this, Object * param_00009a43, MethodInfo * method)); +DO_APP_FUNC(0x01ECBD60, int32_t, ywNXWnsnHdbzydwyXSyhaBXpIvPJ_KwJDvJLxEpOiRpZZrQYcZSKAviyg, (ywNXWnsnHdbzydwyXSyhaBXpIvPJ * __this, MethodInfo * method)); DO_APP_FUNC(0x01B87680, bool, ywNXWnsnHdbzydwyXSyhaBXpIvPJ_zSoAYUesmvVtuFpcyKInOBvUUaKD, (ywNXWnsnHdbzydwyXSyhaBXpIvPJ param_00009a44, ywNXWnsnHdbzydwyXSyhaBXpIvPJ param_00009a45, MethodInfo * method)); DO_APP_FUNC(0x01ECBD80, bool, ywNXWnsnHdbzydwyXSyhaBXpIvPJ_DsGZIPdfxjPaInJQFsisJcfTqHzt, (ywNXWnsnHdbzydwyXSyhaBXpIvPJ param_00009a46, ywNXWnsnHdbzydwyXSyhaBXpIvPJ param_00009a47, MethodInfo * method)); -DO_APP_FUNC(0x01ECBDC0, ModifierKey__Enum, EzzWGxTDYcslHGKkXwwdMNaAuubb_RqlQXVCuqdhJnxcXhpOqbWpqutCF, (EzzWGxTDYcslHGKkXwwdMNaAuubb__Boxed * __this, int32_t param_00009a48, MethodInfo * method)); -DO_APP_FUNC(0x01ECBDE0, void, EzzWGxTDYcslHGKkXwwdMNaAuubb_vzddzdfIMCcNmCiSRNbXbSuDKdOGB, (EzzWGxTDYcslHGKkXwwdMNaAuubb__Boxed * __this, int32_t param_00009a49, ModifierKey__Enum param_00009a4a, MethodInfo * method)); -DO_APP_FUNC(0x00977060, void, EzzWGxTDYcslHGKkXwwdMNaAuubb__ctor, (EzzWGxTDYcslHGKkXwwdMNaAuubb__Boxed * __this, ModifierKey__Enum param_00009a4b, ModifierKey__Enum param_00009a4c, ModifierKey__Enum param_00009a4d, MethodInfo * method)); -DO_APP_FUNC(0x01ECBE00, void, EzzWGxTDYcslHGKkXwwdMNaAuubb_sjgQXMMRIHmhSmDrVpgFKxoFoOIy, (EzzWGxTDYcslHGKkXwwdMNaAuubb__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01ECBDC0, ModifierKey__Enum, EzzWGxTDYcslHGKkXwwdMNaAuubb_RqlQXVCuqdhJnxcXhpOqbWpqutCF, (EzzWGxTDYcslHGKkXwwdMNaAuubb * __this, int32_t param_00009a48, MethodInfo * method)); +DO_APP_FUNC(0x01ECBDE0, void, EzzWGxTDYcslHGKkXwwdMNaAuubb_vzddzdfIMCcNmCiSRNbXbSuDKdOGB, (EzzWGxTDYcslHGKkXwwdMNaAuubb * __this, int32_t param_00009a49, ModifierKey__Enum param_00009a4a, MethodInfo * method)); +DO_APP_FUNC(0x00977060, void, EzzWGxTDYcslHGKkXwwdMNaAuubb__ctor, (EzzWGxTDYcslHGKkXwwdMNaAuubb * __this, ModifierKey__Enum param_00009a4b, ModifierKey__Enum param_00009a4c, ModifierKey__Enum param_00009a4d, MethodInfo * method)); +DO_APP_FUNC(0x01ECBE00, void, EzzWGxTDYcslHGKkXwwdMNaAuubb_sjgQXMMRIHmhSmDrVpgFKxoFoOIy, (EzzWGxTDYcslHGKkXwwdMNaAuubb * __this, MethodInfo * method)); DO_APP_FUNC(0x01ECBE20, EzzWGxTDYcslHGKkXwwdMNaAuubb, EzzWGxTDYcslHGKkXwwdMNaAuubb_oioCipmiRIvMZzjCMbmhICFxFiAHA, (ModifierKeyFlags__Enum param_00009a4e, MethodInfo * method)); -DO_APP_FUNC(0x00977070, bool, EzzWGxTDYcslHGKkXwwdMNaAuubb_Equals, (EzzWGxTDYcslHGKkXwwdMNaAuubb__Boxed * __this, EzzWGxTDYcslHGKkXwwdMNaAuubb other, MethodInfo * method)); -DO_APP_FUNC(0x01ECBEE0, bool, EzzWGxTDYcslHGKkXwwdMNaAuubb_iQEVYTGAMFzzDLVJfsQNCvRcoATV, (EzzWGxTDYcslHGKkXwwdMNaAuubb__Boxed * __this, Object * param_00009a50, MethodInfo * method)); -DO_APP_FUNC(0x01ECBF90, int32_t, EzzWGxTDYcslHGKkXwwdMNaAuubb_KwJDvJLxEpOiRpZZrQYcZSKAviyg, (EzzWGxTDYcslHGKkXwwdMNaAuubb__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00977070, bool, EzzWGxTDYcslHGKkXwwdMNaAuubb_Equals, (EzzWGxTDYcslHGKkXwwdMNaAuubb * __this, EzzWGxTDYcslHGKkXwwdMNaAuubb other, MethodInfo * method)); +DO_APP_FUNC(0x01ECBEE0, bool, EzzWGxTDYcslHGKkXwwdMNaAuubb_iQEVYTGAMFzzDLVJfsQNCvRcoATV, (EzzWGxTDYcslHGKkXwwdMNaAuubb * __this, Object * param_00009a50, MethodInfo * method)); +DO_APP_FUNC(0x01ECBF90, int32_t, EzzWGxTDYcslHGKkXwwdMNaAuubb_KwJDvJLxEpOiRpZZrQYcZSKAviyg, (EzzWGxTDYcslHGKkXwwdMNaAuubb * __this, MethodInfo * method)); DO_APP_FUNC(0x00977070, bool, EzzWGxTDYcslHGKkXwwdMNaAuubb_zSoAYUesmvVtuFpcyKInOBvUUaKD, (EzzWGxTDYcslHGKkXwwdMNaAuubb param_00009a51, EzzWGxTDYcslHGKkXwwdMNaAuubb param_00009a52, MethodInfo * method)); DO_APP_FUNC(0x01ECBFB0, bool, EzzWGxTDYcslHGKkXwwdMNaAuubb_DsGZIPdfxjPaInJQFsisJcfTqHzt, (EzzWGxTDYcslHGKkXwwdMNaAuubb param_00009a53, EzzWGxTDYcslHGKkXwwdMNaAuubb param_00009a54, MethodInfo * method)); DO_APP_FUNC(0x01ECC020, double, ButtonStateRecorder_ixFqUUxDfnTKWJsKVschqChFsDkP, (ButtonStateRecorder * __this, MethodInfo * method)); @@ -39724,6 +47189,7 @@ DO_APP_FUNC(0x01ECD410, void, bltYvSitjPywwmJtwAjtAAgZkNaj_EYgUqxVOvlxAncmlBdqRq DO_APP_FUNC(0x01ECD430, void, bltYvSitjPywwmJtwAjtAAgZkNaj_IyemPRRciiSzZXuKfBNHuoLsjYVp, (bltYvSitjPywwmJtwAjtAAgZkNaj * __this, bool param_00009a72, double param_00009a73, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TTThSetrNwcNFnjvmLttoQrcZXbI__ctor, (TTThSetrNwcNFnjvmLttoQrcZXbI * __this, MethodInfo * method)); DO_APP_FUNC(0x01ECD450, void, NEKNFNnBnMerBGmvtGdFgVoKfnGUA__ctor, (NEKNFNnBnMerBGmvtGdFgVoKfnGUA * __this, Type__Array * param_00009a74, Type__Array * param_00009a75, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEAF30, NEKNFNnBnMerBGmvtGdFgVoKfnGUA__ctor__MethodInfo); DO_APP_FUNC(0x01ECD810, void, NEKNFNnBnMerBGmvtGdFgVoKfnGUA_AVHhRVQijicKecirlEvwMqcLjcdTA, (NEKNFNnBnMerBGmvtGdFgVoKfnGUA * __this, Controller * param_00009a76, MethodInfo * method)); DO_APP_FUNC(0x01ECDA10, void, NEKNFNnBnMerBGmvtGdFgVoKfnGUA_lmYgIyeMVKbbxyZgLEytfdPXQjim, (NEKNFNnBnMerBGmvtGdFgVoKfnGUA * __this, Controller * param_00009a77, MethodInfo * method)); DO_APP_FUNC(0x01ECDC10, NEKNFNnBnMerBGmvtGdFgVoKfnGUA_RifmWctMhNdhIJYvjlOuqmVzJHgX *, NEKNFNnBnMerBGmvtGdFgVoKfnGUA_PiHMgAzYUyPwlOnuLmfllWrCVamb, (NEKNFNnBnMerBGmvtGdFgVoKfnGUA * __this, Type * param_00009a78, MethodInfo * method)); @@ -39749,7 +47215,7 @@ DO_APP_FUNC(0x01ECE9E0, bool, UnknownControllerHat_IsButtonIndexCardinal, (Unkno DO_APP_FUNC(0x003BB3C0, UnknownControllerHat_HatButtons *, UnknownControllerHat_GetButtons, (UnknownControllerHat * __this, MethodInfo * method)); DO_APP_FUNC(0x01ECEA50, int32_t, UnknownControllerHat_HatButtons_get_Item, (UnknownControllerHat_HatButtons * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, UnknownControllerHat_HatButtons__ctor, (UnknownControllerHat_HatButtons * __this, Int32__Array * param_00009a92, MethodInfo * method)); -DO_APP_FUNC(0x01ECEA80, void, UnknownControllerHat_HatButtons_GetNeighbors, (UnknownControllerHat_HatButtons * __this, int32_t button, int32_t neighbor1, int32_t neighbor2, MethodInfo * method)); +DO_APP_FUNC(0x01ECEA80, void, UnknownControllerHat_HatButtons_GetNeighbors, (UnknownControllerHat_HatButtons * __this, int32_t button, int32_t * neighbor1, int32_t * neighbor2, MethodInfo * method)); DO_APP_FUNC(0x01ECEB60, bool, UnknownControllerHat_HatButtons_IsCardinal, (UnknownControllerHat_HatButtons * __this, int32_t button, MethodInfo * method)); DO_APP_FUNC(0x01ECEBC0, bool, UnknownControllerHat_HatButtons_IsCorner, (UnknownControllerHat_HatButtons * __this, int32_t button, MethodInfo * method)); DO_APP_FUNC(0x01ECEC20, int32_t, UnknownControllerHat_HatButtons_IndexOf, (UnknownControllerHat_HatButtons * __this, int32_t button, MethodInfo * method)); @@ -39758,7 +47224,9 @@ DO_APP_FUNC(0x01ECECE0, void, MRGkKzhgDCfculrfXakxXfUSFUsK__cctor, (MethodInfo * DO_APP_FUNC(0x003AE050, void, MRGkKzhgDCfculrfXakxXfUSFUsK__ctor, (MRGkKzhgDCfculrfXakxXfUSFUsK * __this, MethodInfo * method)); DO_APP_FUNC(0x01ECEDA0, void, MRGkKzhgDCfculrfXakxXfUSFUsK_LIeljCbdoWdgBAecluMnblrpCnHu, (MRGkKzhgDCfculrfXakxXfUSFUsK * __this, MethodInfo * method)); DO_APP_FUNC(0x01ECF1E0, void, MRGkKzhgDCfculrfXakxXfUSFUsK_YyaiYaGUxjKjZEWydSvZkBSarkwU, (MRGkKzhgDCfculrfXakxXfUSFUsK * __this, cgAhWyfsfnPBbygscaxJCrsKfviSB * param_00009abb, UpdateLoopType__Enum param_00009abc, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEAD28, MRGkKzhgDCfculrfXakxXfUSFUsK_YyaiYaGUxjKjZEWydSvZkBSarkwU__MethodInfo); DO_APP_FUNC(0x01ECFD50, void, MRGkKzhgDCfculrfXakxXfUSFUsK_lvbMDsoxEFvYCrmdvbCPUOXygBBP, (MRGkKzhgDCfculrfXakxXfUSFUsK * __this, Action_1_Rewired_InputActionEventData_ * param_00009abd, UpdateLoopType__Enum param_00009abe, InputActionEventType__Enum param_00009abf, int32_t param_00009ac0, Object__Array * param_00009ac1, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEACB0, MRGkKzhgDCfculrfXakxXfUSFUsK_lvbMDsoxEFvYCrmdvbCPUOXygBBP__MethodInfo); DO_APP_FUNC(0x01ECFFF0, void, MRGkKzhgDCfculrfXakxXfUSFUsK_lvbMDsoxEFvYCrmdvbCPUOXygBBP_1, (MRGkKzhgDCfculrfXakxXfUSFUsK * __this, Action_1_Rewired_InputActionEventData_ * param_00009ac2, UpdateLoopType__Enum param_00009ac3, InputActionEventType__Enum param_00009ac4, Object__Array * param_00009ac5, MethodInfo * method)); DO_APP_FUNC(0x01ED01A0, void, MRGkKzhgDCfculrfXakxXfUSFUsK_MnPoAwVgsujOaNGtvjGOXGjEDFBK, (MRGkKzhgDCfculrfXakxXfUSFUsK * __this, Action_1_Rewired_InputActionEventData_ * param_00009ac6, MethodInfo * method)); DO_APP_FUNC(0x01ED0380, void, MRGkKzhgDCfculrfXakxXfUSFUsK_MnPoAwVgsujOaNGtvjGOXGjEDFBK_1, (MRGkKzhgDCfculrfXakxXfUSFUsK * __this, Action_1_Rewired_InputActionEventData_ * param_00009ac7, int32_t param_00009ac8, MethodInfo * method)); @@ -39771,27 +47239,37 @@ DO_APP_FUNC(0x01ED0FF0, void, MRGkKzhgDCfculrfXakxXfUSFUsK_MnPoAwVgsujOaNGtvjGOX DO_APP_FUNC(0x01ED1220, void, MRGkKzhgDCfculrfXakxXfUSFUsK_sjgQXMMRIHmhSmDrVpgFKxoFoOIy, (MRGkKzhgDCfculrfXakxXfUSFUsK * __this, MethodInfo * method)); DO_APP_FUNC(0x01ED1320, void, MRGkKzhgDCfculrfXakxXfUSFUsK_mZGbCBkdNtyyfXYyjMeXpAyQhmRw, (MRGkKzhgDCfculrfXakxXfUSFUsK * __this, MethodInfo * method)); DO_APP_FUNC(0x01ED1380, void, MRGkKzhgDCfculrfXakxXfUSFUsK_pEhrOFQDNlWhiCRQwqLfhdkKHswE__ctor, (MRGkKzhgDCfculrfXakxXfUSFUsK_pEhrOFQDNlWhiCRQwqLfhdkKHswE * __this, Action_1_Rewired_InputActionEventData_ * param_00009ada, UpdateLoopType__Enum param_00009adb, InputActionEventType__Enum param_00009adc, int32_t param_00009add, Object__Array * param_00009ade, MethodInfo * method)); -DO_APP_FUNC(0x01ED1430, bool, MRGkKzhgDCfculrfXakxXfUSFUsK_pEhrOFQDNlWhiCRQwqLfhdkKHswE_YBjRBOdeLGbtHUqYZMDkscltzEdi, (MRGkKzhgDCfculrfXakxXfUSFUsK_pEhrOFQDNlWhiCRQwqLfhdkKHswE * __this, int32_t param_00009adf, float param_00009ae0, MethodInfo * method)); +DO_APP_FUNC(0x01ED1430, bool, MRGkKzhgDCfculrfXakxXfUSFUsK_pEhrOFQDNlWhiCRQwqLfhdkKHswE_YBjRBOdeLGbtHUqYZMDkscltzEdi, (MRGkKzhgDCfculrfXakxXfUSFUsK_pEhrOFQDNlWhiCRQwqLfhdkKHswE * __this, int32_t param_00009adf, float * param_00009ae0, MethodInfo * method)); DO_APP_FUNC(0x01ED1470, void, MRGkKzhgDCfculrfXakxXfUSFUsK_pEhrOFQDNlWhiCRQwqLfhdkKHswE_arWMPHGKARoKPVdtInVtCaOCfRfDA, (MRGkKzhgDCfculrfXakxXfUSFUsK_pEhrOFQDNlWhiCRQwqLfhdkKHswE * __this, Object__Array * param_00009ae1, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA998, MRGkKzhgDCfculrfXakxXfUSFUsK_pEhrOFQDNlWhiCRQwqLfhdkKHswE_arWMPHGKARoKPVdtInVtCaOCfRfDA__MethodInfo); DO_APP_FUNC(0x01ED1D70, void, MRGkKzhgDCfculrfXakxXfUSFUsK_yMIrGgsBpHaKpclrrACyRBctPBLfb__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, MRGkKzhgDCfculrfXakxXfUSFUsK_yMIrGgsBpHaKpclrrACyRBctPBLfb__ctor, (MRGkKzhgDCfculrfXakxXfUSFUsK_yMIrGgsBpHaKpclrrACyRBctPBLfb * __this, MethodInfo * method)); DO_APP_FUNC(0x01ED1E20, AList_1_MRGkKzhgDCfculrfXakxXfUSFUsK_pEhrOFQDNlWhiCRQwqLfhdkKHswE_ *, MRGkKzhgDCfculrfXakxXfUSFUsK_yMIrGgsBpHaKpclrrACyRBctPBLfb_gLZBPtLXDoiIDBrJeqbcezjzyZLRA, (MRGkKzhgDCfculrfXakxXfUSFUsK_yMIrGgsBpHaKpclrrACyRBctPBLfb * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEAC08, MRGkKzhgDCfculrfXakxXfUSFUsK_yMIrGgsBpHaKpclrrACyRBctPBLfb_gLZBPtLXDoiIDBrJeqbcezjzyZLRA__MethodInfo); DO_APP_FUNC(0x003AE050, void, MRGkKzhgDCfculrfXakxXfUSFUsK_tvvEsJOMmEQyaCgJPcXcNROjrkjI__ctor, (MRGkKzhgDCfculrfXakxXfUSFUsK_tvvEsJOMmEQyaCgJPcXcNROjrkjI * __this, MethodInfo * method)); DO_APP_FUNC(0x01ED1EB0, bool, MRGkKzhgDCfculrfXakxXfUSFUsK_tvvEsJOMmEQyaCgJPcXcNROjrkjI_IaASuLWDKyByQFgVzeoVnJcTrgIsA, (MRGkKzhgDCfculrfXakxXfUSFUsK_tvvEsJOMmEQyaCgJPcXcNROjrkjI * __this, MRGkKzhgDCfculrfXakxXfUSFUsK_pEhrOFQDNlWhiCRQwqLfhdkKHswE * param_00009ae2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEAB50, MRGkKzhgDCfculrfXakxXfUSFUsK_tvvEsJOMmEQyaCgJPcXcNROjrkjI_IaASuLWDKyByQFgVzeoVnJcTrgIsA__MethodInfo); DO_APP_FUNC(0x003AE050, void, MRGkKzhgDCfculrfXakxXfUSFUsK_OrgkFeLhoJyTVHhCgCIbkVdlqdWV__ctor, (MRGkKzhgDCfculrfXakxXfUSFUsK_OrgkFeLhoJyTVHhCgCIbkVdlqdWV * __this, MethodInfo * method)); DO_APP_FUNC(0x01ED1F00, bool, MRGkKzhgDCfculrfXakxXfUSFUsK_OrgkFeLhoJyTVHhCgCIbkVdlqdWV_IaASuLWDKyByQFgVzeoVnJcTrgIsA, (MRGkKzhgDCfculrfXakxXfUSFUsK_OrgkFeLhoJyTVHhCgCIbkVdlqdWV * __this, MRGkKzhgDCfculrfXakxXfUSFUsK_pEhrOFQDNlWhiCRQwqLfhdkKHswE * param_00009ae3, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEAB20, MRGkKzhgDCfculrfXakxXfUSFUsK_OrgkFeLhoJyTVHhCgCIbkVdlqdWV_IaASuLWDKyByQFgVzeoVnJcTrgIsA__MethodInfo); DO_APP_FUNC(0x003AE050, void, MRGkKzhgDCfculrfXakxXfUSFUsK_jwBTxADLWKlTituoCAazSMHLmyTn__ctor, (MRGkKzhgDCfculrfXakxXfUSFUsK_jwBTxADLWKlTituoCAazSMHLmyTn * __this, MethodInfo * method)); DO_APP_FUNC(0x01ED1F70, bool, MRGkKzhgDCfculrfXakxXfUSFUsK_jwBTxADLWKlTituoCAazSMHLmyTn_IaASuLWDKyByQFgVzeoVnJcTrgIsA, (MRGkKzhgDCfculrfXakxXfUSFUsK_jwBTxADLWKlTituoCAazSMHLmyTn * __this, MRGkKzhgDCfculrfXakxXfUSFUsK_pEhrOFQDNlWhiCRQwqLfhdkKHswE * param_00009ae4, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEAB00, MRGkKzhgDCfculrfXakxXfUSFUsK_jwBTxADLWKlTituoCAazSMHLmyTn_IaASuLWDKyByQFgVzeoVnJcTrgIsA__MethodInfo); DO_APP_FUNC(0x003AE050, void, MRGkKzhgDCfculrfXakxXfUSFUsK_bObgWpxRhVLPqRHFLlplCNCrZaeI__ctor, (MRGkKzhgDCfculrfXakxXfUSFUsK_bObgWpxRhVLPqRHFLlplCNCrZaeI * __this, MethodInfo * method)); DO_APP_FUNC(0x01ED1FE0, bool, MRGkKzhgDCfculrfXakxXfUSFUsK_bObgWpxRhVLPqRHFLlplCNCrZaeI_IaASuLWDKyByQFgVzeoVnJcTrgIsA, (MRGkKzhgDCfculrfXakxXfUSFUsK_bObgWpxRhVLPqRHFLlplCNCrZaeI * __this, MRGkKzhgDCfculrfXakxXfUSFUsK_pEhrOFQDNlWhiCRQwqLfhdkKHswE * param_00009ae5, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEAAC8, MRGkKzhgDCfculrfXakxXfUSFUsK_bObgWpxRhVLPqRHFLlplCNCrZaeI_IaASuLWDKyByQFgVzeoVnJcTrgIsA__MethodInfo); DO_APP_FUNC(0x003AE050, void, MRGkKzhgDCfculrfXakxXfUSFUsK_leaZnJplEvrpSYsnEPvQFdUeegWu__ctor, (MRGkKzhgDCfculrfXakxXfUSFUsK_leaZnJplEvrpSYsnEPvQFdUeegWu * __this, MethodInfo * method)); DO_APP_FUNC(0x01ED2050, bool, MRGkKzhgDCfculrfXakxXfUSFUsK_leaZnJplEvrpSYsnEPvQFdUeegWu_IaASuLWDKyByQFgVzeoVnJcTrgIsA, (MRGkKzhgDCfculrfXakxXfUSFUsK_leaZnJplEvrpSYsnEPvQFdUeegWu * __this, MRGkKzhgDCfculrfXakxXfUSFUsK_pEhrOFQDNlWhiCRQwqLfhdkKHswE * param_00009ae6, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEABE0, MRGkKzhgDCfculrfXakxXfUSFUsK_leaZnJplEvrpSYsnEPvQFdUeegWu_IaASuLWDKyByQFgVzeoVnJcTrgIsA__MethodInfo); DO_APP_FUNC(0x003AE050, void, MRGkKzhgDCfculrfXakxXfUSFUsK_tGKTflHZqTsCeIOPVeCdHvPRGNAGA__ctor, (MRGkKzhgDCfculrfXakxXfUSFUsK_tGKTflHZqTsCeIOPVeCdHvPRGNAGA * __this, MethodInfo * method)); DO_APP_FUNC(0x01ED20D0, bool, MRGkKzhgDCfculrfXakxXfUSFUsK_tGKTflHZqTsCeIOPVeCdHvPRGNAGA_IaASuLWDKyByQFgVzeoVnJcTrgIsA, (MRGkKzhgDCfculrfXakxXfUSFUsK_tGKTflHZqTsCeIOPVeCdHvPRGNAGA * __this, MRGkKzhgDCfculrfXakxXfUSFUsK_pEhrOFQDNlWhiCRQwqLfhdkKHswE * param_00009ae7, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEABC0, MRGkKzhgDCfculrfXakxXfUSFUsK_tGKTflHZqTsCeIOPVeCdHvPRGNAGA_IaASuLWDKyByQFgVzeoVnJcTrgIsA__MethodInfo); DO_APP_FUNC(0x003AE050, void, MRGkKzhgDCfculrfXakxXfUSFUsK_RoXEZWDhIiRQHRObWQCPyjvWzuNL__ctor, (MRGkKzhgDCfculrfXakxXfUSFUsK_RoXEZWDhIiRQHRObWQCPyjvWzuNL * __this, MethodInfo * method)); DO_APP_FUNC(0x01ED2150, bool, MRGkKzhgDCfculrfXakxXfUSFUsK_RoXEZWDhIiRQHRObWQCPyjvWzuNL_IaASuLWDKyByQFgVzeoVnJcTrgIsA, (MRGkKzhgDCfculrfXakxXfUSFUsK_RoXEZWDhIiRQHRObWQCPyjvWzuNL * __this, MRGkKzhgDCfculrfXakxXfUSFUsK_pEhrOFQDNlWhiCRQwqLfhdkKHswE * param_00009ae8, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEAB88, MRGkKzhgDCfculrfXakxXfUSFUsK_RoXEZWDhIiRQHRObWQCPyjvWzuNL_IaASuLWDKyByQFgVzeoVnJcTrgIsA__MethodInfo); DO_APP_FUNC(0x003AE050, void, MRGkKzhgDCfculrfXakxXfUSFUsK_iDWnzYHVfmBYUfCOMgYtoOCbHzmY__ctor, (MRGkKzhgDCfculrfXakxXfUSFUsK_iDWnzYHVfmBYUfCOMgYtoOCbHzmY * __this, MethodInfo * method)); DO_APP_FUNC(0x01ED21D0, bool, MRGkKzhgDCfculrfXakxXfUSFUsK_iDWnzYHVfmBYUfCOMgYtoOCbHzmY_IaASuLWDKyByQFgVzeoVnJcTrgIsA, (MRGkKzhgDCfculrfXakxXfUSFUsK_iDWnzYHVfmBYUfCOMgYtoOCbHzmY * __this, MRGkKzhgDCfculrfXakxXfUSFUsK_pEhrOFQDNlWhiCRQwqLfhdkKHswE * param_00009ae9, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEAB70, MRGkKzhgDCfculrfXakxXfUSFUsK_iDWnzYHVfmBYUfCOMgYtoOCbHzmY_IaASuLWDKyByQFgVzeoVnJcTrgIsA__MethodInfo); DO_APP_FUNC(0x01ED2250, void, othBwbjJCfqjCkCuDgXhdkQCXIPtA_sjgQXMMRIHmhSmDrVpgFKxoFoOIy, (othBwbjJCfqjCkCuDgXhdkQCXIPtA * __this, MethodInfo * method)); DO_APP_FUNC(0x01ED2360, void, othBwbjJCfqjCkCuDgXhdkQCXIPtA_kIkezWISFZiNZPpmTjWSviJqCHRq, (othBwbjJCfqjCkCuDgXhdkQCXIPtA * __this, othBwbjJCfqjCkCuDgXhdkQCXIPtA * param_00009aef, MethodInfo * method)); DO_APP_FUNC(0x01ED24A0, void, othBwbjJCfqjCkCuDgXhdkQCXIPtA_kIkezWISFZiNZPpmTjWSviJqCHRq_1, (othBwbjJCfqjCkCuDgXhdkQCXIPtA * __this, TTThSetrNwcNFnjvmLttoQrcZXbI * param_00009af0, MethodInfo * method)); @@ -39800,6 +47278,7 @@ DO_APP_FUNC(0x01ED25E0, void, ButtonLoopSet__ctor, (ButtonLoopSet * __this, Upda DO_APP_FUNC(0x01ED27A0, void, ButtonLoopSet_SetValue, (ButtonLoopSet * __this, int32_t index, bool value, double timestamp, MethodInfo * method)); DO_APP_FUNC(0x01ED2910, void, ButtonLoopSet_Clear, (ButtonLoopSet * __this, MethodInfo * method)); DO_APP_FUNC(0x01ED2A90, void, ButtonLoopSet_Import, (ButtonLoopSet * __this, ButtonLoopSet * set, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA888, ButtonLoopSet_Import__MethodInfo); DO_APP_FUNC(0x01ED2BF0, Boolean__Array *, ButtonLoopSet_ButtonData_get_effectiveValue, (ButtonLoopSet_ButtonData * __this, MethodInfo * method)); DO_APP_FUNC(0x01ED2C20, void, ButtonLoopSet_ButtonData__ctor, (ButtonLoopSet_ButtonData * __this, int32_t param_00009b04, UpdateLoopType__Enum param_00009b05, MethodInfo * method)); DO_APP_FUNC(0x01ED2E90, void, ButtonLoopSet_ButtonData_SetValue, (ButtonLoopSet_ButtonData * __this, int32_t index, bool value, MethodInfo * method)); @@ -39807,51 +47286,52 @@ DO_APP_FUNC(0x01ED2F80, void, ButtonLoopSet_ButtonData_ClearWasTrueThisFrame, (B DO_APP_FUNC(0x01ED3020, void, ButtonLoopSet_ButtonData_Clear, (ButtonLoopSet_ButtonData * __this, MethodInfo * method)); DO_APP_FUNC(0x01ED3110, void, ButtonLoopSet_ButtonData_Import, (ButtonLoopSet_ButtonData * __this, ButtonLoopSet_ButtonData * source, MethodInfo * method)); DO_APP_FUNC(0x01ED32B0, void, ButtonLoopSet_ButtonData_GWSnSksnkrBSOIqfUQTOBbufzVBab, (ButtonLoopSet_ButtonData * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, TouchInfo_get_isValid, (TouchInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C3C200, void, TouchInfo_set_isValid, (TouchInfo__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x00C173E0, int32_t, TouchInfo_get_touchId, (TouchInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018C6CA0, void, TouchInfo_set_touchId, (TouchInfo__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x0171D170, Vector2, TouchInfo_get_touchPos, (TouchInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01ED3330, void, TouchInfo_set_touchPos, (TouchInfo__Boxed * __this, Vector2 value, MethodInfo * method)); -DO_APP_FUNC(0x01447170, Vector2, TouchInfo_get_touchPosRaw, (TouchInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0120DC90, void, TouchInfo_set_touchPosRaw, (TouchInfo__Boxed * __this, Vector2 value, MethodInfo * method)); -DO_APP_FUNC(0x00A79C10, Vector2, TouchInfo_get_deltaPos, (TouchInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A79C30, void, TouchInfo_set_deltaPos, (TouchInfo__Boxed * __this, Vector2 value, MethodInfo * method)); -DO_APP_FUNC(0x01ED3340, Vector2, TouchInfo_get_deltaPosRaw, (TouchInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00421670, void, TouchInfo_set_deltaPosRaw, (TouchInfo__Boxed * __this, Vector2 value, MethodInfo * method)); -DO_APP_FUNC(0x003CD360, float, TouchInfo_get_deltaTime, (TouchInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00945270, void, TouchInfo_set_deltaTime, (TouchInfo__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x0098C870, int32_t, TouchInfo_get_tapCount, (TouchInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0098C880, void, TouchInfo_set_tapCount, (TouchInfo__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x01ED3360, void, TouchInfo__ctor, (TouchInfo__Boxed * __this, bool param_00009b11, int32_t param_00009b12, Vector2 param_00009b13, Vector2 param_00009b14, Vector2 param_00009b15, Vector2 param_00009b16, float param_00009b17, int32_t param_00009b18, MethodInfo * method)); +DO_APP_FUNC(0x00C173D0, bool, TouchInfo_get_isValid, (TouchInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C3C200, void, TouchInfo_set_isValid, (TouchInfo * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x00C173E0, int32_t, TouchInfo_get_touchId, (TouchInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x018C6CA0, void, TouchInfo_set_touchId, (TouchInfo * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x0171D170, Vector2, TouchInfo_get_touchPos, (TouchInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x01ED3330, void, TouchInfo_set_touchPos, (TouchInfo * __this, Vector2 value, MethodInfo * method)); +DO_APP_FUNC(0x01447170, Vector2, TouchInfo_get_touchPosRaw, (TouchInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x0120DC90, void, TouchInfo_set_touchPosRaw, (TouchInfo * __this, Vector2 value, MethodInfo * method)); +DO_APP_FUNC(0x00A79C10, Vector2, TouchInfo_get_deltaPos, (TouchInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A79C30, void, TouchInfo_set_deltaPos, (TouchInfo * __this, Vector2 value, MethodInfo * method)); +DO_APP_FUNC(0x01ED3340, Vector2, TouchInfo_get_deltaPosRaw, (TouchInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x00421670, void, TouchInfo_set_deltaPosRaw, (TouchInfo * __this, Vector2 value, MethodInfo * method)); +DO_APP_FUNC(0x003CD360, float, TouchInfo_get_deltaTime, (TouchInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x00945270, void, TouchInfo_set_deltaTime, (TouchInfo * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x0098C870, int32_t, TouchInfo_get_tapCount, (TouchInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x0098C880, void, TouchInfo_set_tapCount, (TouchInfo * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x01ED3360, void, TouchInfo__ctor, (TouchInfo * __this, bool param_00009b11, int32_t param_00009b12, Vector2 param_00009b13, Vector2 param_00009b14, Vector2 param_00009b15, Vector2 param_00009b16, float param_00009b17, int32_t param_00009b18, MethodInfo * method)); DO_APP_FUNC(0x01ED33A0, TouchInfo, TouchInfo_get_Invalid, (MethodInfo * method)); DO_APP_FUNC(0x01ED33C0, void, SteamAction__ctor, (SteamAction * __this, String * param_00009b19, uint64_t param_00009b1a, MethodInfo * method)); DO_APP_FUNC(0x01ED3420, void, SteamActionSet__ctor, (SteamActionSet * __this, String * param_00009b1b, uint64_t param_00009b1c, MethodInfo * method)); DO_APP_FUNC(0x01ED3580, void, SteamActionSet_AddAction, (SteamActionSet * __this, SteamAction * action, MethodInfo * method)); -DO_APP_FUNC(0x01ED3640, void, HardwareControllerMapIdentifier__ctor, (HardwareControllerMapIdentifier__Boxed * __this, Guid param_00009b1e, InputSource__Enum param_00009b1f, InputPlatform__Enum param_00009b20, int32_t param_00009b21, MethodInfo * method)); -DO_APP_FUNC(0x01ED3660, void, RewiredVersion__ctor, (RewiredVersion__Boxed * __this, int32_t param_00009b22, int32_t param_00009b23, int32_t param_00009b24, int32_t param_00009b25, String * param_00009b26, MethodInfo * method)); -DO_APP_FUNC(0x01ED36D0, void, RewiredVersion__ctor_1, (RewiredVersion__Boxed * __this, String * param_00009b27, MethodInfo * method)); -DO_APP_FUNC(0x01ED3930, bool, RewiredVersion_Equals, (RewiredVersion__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x01ED39F0, int32_t, RewiredVersion_GetHashCode, (RewiredVersion__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01ED3A60, String *, RewiredVersion_ToString, (RewiredVersion__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA908, SteamActionSet_AddAction__MethodInfo); +DO_APP_FUNC(0x01ED3640, void, HardwareControllerMapIdentifier__ctor, (HardwareControllerMapIdentifier * __this, Guid param_00009b1e, InputSource__Enum param_00009b1f, InputPlatform__Enum param_00009b20, int32_t param_00009b21, MethodInfo * method)); +DO_APP_FUNC(0x01ED3660, void, RewiredVersion__ctor, (RewiredVersion * __this, int32_t param_00009b22, int32_t param_00009b23, int32_t param_00009b24, int32_t param_00009b25, String * param_00009b26, MethodInfo * method)); +DO_APP_FUNC(0x01ED36D0, void, RewiredVersion__ctor_1, (RewiredVersion * __this, String * param_00009b27, MethodInfo * method)); +DO_APP_FUNC(0x01ED3930, bool, RewiredVersion_Equals, (RewiredVersion * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x01ED39F0, int32_t, RewiredVersion_GetHashCode, (RewiredVersion * __this, MethodInfo * method)); +DO_APP_FUNC(0x01ED3A60, String *, RewiredVersion_ToString, (RewiredVersion * __this, MethodInfo * method)); DO_APP_FUNC(0x01ED3D10, bool, RewiredVersion_op_Equality, (RewiredVersion a, RewiredVersion b, MethodInfo * method)); DO_APP_FUNC(0x01ED3EB0, bool, RewiredVersion_op_Inequality, (RewiredVersion a, RewiredVersion b, MethodInfo * method)); DO_APP_FUNC(0x01ED3F00, bool, RewiredVersion_op_GreaterThan, (RewiredVersion a, RewiredVersion b, MethodInfo * method)); DO_APP_FUNC(0x01ED3FB0, bool, RewiredVersion_op_LessThan, (RewiredVersion a, RewiredVersion b, MethodInfo * method)); -DO_APP_FUNC(0x01ABF690, void, PidVid__ctor, (PidVid__Boxed * __this, uint16_t param_00009b31, uint16_t param_00009b32, MethodInfo * method)); -DO_APP_FUNC(0x01ED4060, void, PidVid__ctor_1, (PidVid__Boxed * __this, String * param_00009b33, MethodInfo * method)); -DO_APP_FUNC(0x01ED41F0, void, PidVid__ctor_2, (PidVid__Boxed * __this, Guid param_00009b34, MethodInfo * method)); -DO_APP_FUNC(0x01ED4270, bool, PidVid_get_isZero, (PidVid__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01ED4290, bool, PidVid_Equals, (PidVid__Boxed * __this, String * pidVid, MethodInfo * method)); -DO_APP_FUNC(0x01ED42C0, Guid, PidVid_ToProductGuid, (PidVid__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01ED4340, bool, PidVid_UYTZwcRDXxGJqhSzrGsyEumabKmC, (PidVid__Boxed * __this, String * param_00009b36, MethodInfo * method)); -DO_APP_FUNC(0x01ED4460, bool, PidVid_Equals_1, (PidVid__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x01ED44F0, int32_t, PidVid_GetHashCode, (PidVid__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01ED4510, bool, PidVid_Equals_2, (PidVid__Boxed * __this, PidVid other, MethodInfo * method)); +DO_APP_FUNC(0x01ABF690, void, PidVid__ctor, (PidVid * __this, uint16_t param_00009b31, uint16_t param_00009b32, MethodInfo * method)); +DO_APP_FUNC(0x01ED4060, void, PidVid__ctor_1, (PidVid * __this, String * param_00009b33, MethodInfo * method)); +DO_APP_FUNC(0x01ED41F0, void, PidVid__ctor_2, (PidVid * __this, Guid param_00009b34, MethodInfo * method)); +DO_APP_FUNC(0x01ED4270, bool, PidVid_get_isZero, (PidVid * __this, MethodInfo * method)); +DO_APP_FUNC(0x01ED4290, bool, PidVid_Equals, (PidVid * __this, String * pidVid, MethodInfo * method)); +DO_APP_FUNC(0x01ED42C0, Guid, PidVid_ToProductGuid, (PidVid * __this, MethodInfo * method)); +DO_APP_FUNC(0x01ED4340, bool, PidVid_UYTZwcRDXxGJqhSzrGsyEumabKmC, (PidVid * __this, String * param_00009b36, MethodInfo * method)); +DO_APP_FUNC(0x01ED4460, bool, PidVid_Equals_1, (PidVid * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x01ED44F0, int32_t, PidVid_GetHashCode, (PidVid * __this, MethodInfo * method)); +DO_APP_FUNC(0x01ED4510, bool, PidVid_Equals_2, (PidVid * __this, PidVid other, MethodInfo * method)); DO_APP_FUNC(0x01ED4530, bool, PidVid_op_Equality, (PidVid x, PidVid y, MethodInfo * method)); DO_APP_FUNC(0x01ED4550, bool, PidVid_op_Inequality, (PidVid x, PidVid y, MethodInfo * method)); -DO_APP_FUNC(0x01ED4570, String *, PidVid_ToString, (PidVid__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01ED45E0, bool, PidVid_ArrayContains, (String__Array * pidVids, PidVid vidPid, MethodInfo * method)); +DO_APP_FUNC(0x01ED4570, String *, PidVid_ToString, (PidVid * __this, MethodInfo * method)); +DO_APP_FUNC(0x01ED45E0, bool, PidVid_ArrayContains, (String__Array * pidVids, PidVid * vidPid, MethodInfo * method)); DO_APP_FUNC(0x01ED4660, String *, PidVid_thdjojIeRZIVdgDdQCKPaAMnQQEQ, (String * param_00009b3f, MethodInfo * method)); DO_APP_FUNC(0x01ED4740, void, Profiler_uUXFiwMZrrGvOYCVIjXtsxKTwLER, (MethodInfo * method)); DO_APP_FUNC(0x01ED4780, bool, Profiler_get_enableBinaryLog, (MethodInfo * method)); @@ -39880,7 +47360,9 @@ DO_APP_FUNC(0x003CB690, int64_t, Profiler_GetTotalReservedMemoryLong, (MethodInf DO_APP_FUNC(0x003CB690, uint32_t, Profiler_GetTotalUnusedReservedMemory, (MethodInfo * method)); DO_APP_FUNC(0x003CB690, int64_t, Profiler_GetTotalUnusedReservedMemoryLong, (MethodInfo * method)); DO_APP_FUNC(0x01ED4870, int32_t, EnumConverter_1_ToUpdateLoopTypes, (UpdateLoopSetting__Enum updateLoopSetting, List_1_Rewired_UpdateLoopType_ * results, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA7C0, EnumConverter_1_ToUpdateLoopTypes__MethodInfo); DO_APP_FUNC(0x01ED4B30, AlternateAxisCalibrationType__Enum, EnumConverter_1_ToAlternateAxisCalibrationType, (ThrottleCalibrationMode__Enum throttleCalibrationMode, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA7D0, EnumConverter_1_ToAlternateAxisCalibrationType__MethodInfo); DO_APP_FUNC(0x01ED4BA0, ThreadSafeUnityInput_Mouse *, ThreadSafeUnityInput_get_mouse, (MethodInfo * method)); DO_APP_FUNC(0x01ED4DD0, ThreadSafeUnityInput_Keyboard *, ThreadSafeUnityInput_get_keyboard, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ThreadSafeUnityInput_Initialize, (MethodInfo * method)); @@ -39925,22 +47407,25 @@ DO_APP_FUNC(0x01ED6BB0, void, ThreadSafeUnityInput_Mouse_MYgXLsuMgXeepaFsBJsCeaQ DO_APP_FUNC(0x01ED6C50, void, ThreadSafeUnityInput_Mouse_NrLBUyGBxKGbWvfIVWNuTAZtDqurA, (ThreadSafeUnityInput_Mouse * __this, MethodInfo * method)); DO_APP_FUNC(0x01ED6C90, void, ThreadSafeUnityInput_Mouse_nGXepOJqMfGbggZCSiPAHhUXKxqf, (ThreadSafeUnityInput_Mouse * __this, MethodInfo * method)); DO_APP_FUNC(0x0110BEC0, void, QYIvqhKfoKYTEUONdLAPWBueYUGd__ctor, (QYIvqhKfoKYTEUONdLAPWBueYUGd * __this, QrmFKaXWCucaXPGsKbkrhZUVAexX__Array * param_00009b55, QrmFKaXWCucaXPGsKbkrhZUVAexX__Array * param_00009b56, QrmFKaXWCucaXPGsKbkrhZUVAexX__Array * param_00009b57, QrmFKaXWCucaXPGsKbkrhZUVAexX__Array * param_00009b58, MethodInfo * method)); -DO_APP_FUNC(0x01ED6CD0, bool, LowLevelInputEvent_get_isValid, (LowLevelInputEvent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E57F20, int32_t, LowLevelInputEvent_get_buttonCount, (LowLevelInputEvent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, int32_t, LowLevelInputEvent_get_axisCount, (LowLevelInputEvent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD70, int32_t, LowLevelInputEvent_get_byteIndex_axesStart, (LowLevelInputEvent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC2E0, int32_t, LowLevelInputEvent_get_byteIndex_buttonsStart, (LowLevelInputEvent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003CD440, int32_t, LowLevelInputEvent_get_byteIndex_hatsStart, (LowLevelInputEvent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01ED6D20, void, LowLevelInputEvent__ctor, (LowLevelInputEvent__Boxed * __this, void * param_00009b59, int32_t param_00009b5a, int32_t param_00009b5b, int32_t param_00009b5c, MethodInfo * method)); -DO_APP_FUNC(0x01ED6E00, void, LowLevelInputEvent_SetButtonsBitMask, (LowLevelInputEvent__Boxed * __this, int32_t bitMask, int32_t startButtonIndex, MethodInfo * method)); -DO_APP_FUNC(0x01ED6F30, void, LowLevelInputEvent_SetAxisValue, (LowLevelInputEvent__Boxed * __this, int32_t index, float value, MethodInfo * method)); -DO_APP_FUNC(0x01ED6FF0, void, LowLevelInputEvent_SetId, (LowLevelInputEvent__Boxed * __this, uint32_t id, MethodInfo * method)); -DO_APP_FUNC(0x01ED7080, void, LowLevelInputEvent_SetTimestamp, (LowLevelInputEvent__Boxed * __this, double value, MethodInfo * method)); -DO_APP_FUNC(0x01ED7120, bool, LowLevelInputEvent_GetButtonValue, (LowLevelInputEvent__Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01ED7210, int32_t, LowLevelInputEvent_GetButtonsBitMask, (LowLevelInputEvent__Boxed * __this, int32_t startButtonIndex, MethodInfo * method)); -DO_APP_FUNC(0x01ED7340, float, LowLevelInputEvent_GetAxisValue, (LowLevelInputEvent__Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01ED7400, uint32_t, LowLevelInputEvent_GetId, (LowLevelInputEvent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01ED7490, double, LowLevelInputEvent_GetTimestamp, (LowLevelInputEvent__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01ED6CD0, bool, LowLevelInputEvent_get_isValid, (LowLevelInputEvent * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E57F20, int32_t, LowLevelInputEvent_get_buttonCount, (LowLevelInputEvent * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, int32_t, LowLevelInputEvent_get_axisCount, (LowLevelInputEvent * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD70, int32_t, LowLevelInputEvent_get_byteIndex_axesStart, (LowLevelInputEvent * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC2E0, int32_t, LowLevelInputEvent_get_byteIndex_buttonsStart, (LowLevelInputEvent * __this, MethodInfo * method)); +DO_APP_FUNC(0x003CD440, int32_t, LowLevelInputEvent_get_byteIndex_hatsStart, (LowLevelInputEvent * __this, MethodInfo * method)); +DO_APP_FUNC(0x01ED6D20, void, LowLevelInputEvent__ctor, (LowLevelInputEvent * __this, void * param_00009b59, int32_t param_00009b5a, int32_t param_00009b5b, int32_t param_00009b5c, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA558, LowLevelInputEvent__ctor__MethodInfo); +DO_APP_FUNC(0x01ED6E00, void, LowLevelInputEvent_SetButtonsBitMask, (LowLevelInputEvent * __this, int32_t bitMask, int32_t startButtonIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA540, LowLevelInputEvent_SetButtonsBitMask__MethodInfo); +DO_APP_FUNC(0x01ED6F30, void, LowLevelInputEvent_SetAxisValue, (LowLevelInputEvent * __this, int32_t index, float value, MethodInfo * method)); +DO_APP_FUNC(0x01ED6FF0, void, LowLevelInputEvent_SetId, (LowLevelInputEvent * __this, uint32_t id, MethodInfo * method)); +DO_APP_FUNC(0x01ED7080, void, LowLevelInputEvent_SetTimestamp, (LowLevelInputEvent * __this, double value, MethodInfo * method)); +DO_APP_FUNC(0x01ED7120, bool, LowLevelInputEvent_GetButtonValue, (LowLevelInputEvent * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x01ED7210, int32_t, LowLevelInputEvent_GetButtonsBitMask, (LowLevelInputEvent * __this, int32_t startButtonIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA5F0, LowLevelInputEvent_GetButtonsBitMask__MethodInfo); +DO_APP_FUNC(0x01ED7340, float, LowLevelInputEvent_GetAxisValue, (LowLevelInputEvent * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x01ED7400, uint32_t, LowLevelInputEvent_GetId, (LowLevelInputEvent * __this, MethodInfo * method)); +DO_APP_FUNC(0x01ED7490, double, LowLevelInputEvent_GetTimestamp, (LowLevelInputEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x01ED7530, int32_t, LowLevelInputEvent_GetReportSize, (int32_t buttonCount, int32_t axisCount, int32_t hatCount, MethodInfo * method)); DO_APP_FUNC(0x01AD0410, int32_t, Consts_get_nintendoSwitchPlugin_minPluginVersion, (MethodInfo * method)); DO_APP_FUNC(0x01B8B750, int32_t, Consts_get_stadiaPlugin_minPluginVersion, (MethodInfo * method)); @@ -40021,8 +47506,8 @@ DO_APP_FUNC(0x0109C000, IEnumerable_1_Rewired_ControllerPollingInfo_ *, Controll DO_APP_FUNC(0x01BAA640, IEnumerable_1_Rewired_ControllerPollingInfo_ *, Controller_PollForAllElementsDown, (Controller * __this, MethodInfo * method)); DO_APP_FUNC(0x01EE2810, IEnumerable_1_Rewired_ControllerPollingInfo_ *, Controller_PollForAllButtons, (Controller * __this, MethodInfo * method)); DO_APP_FUNC(0x01EE28D0, IEnumerable_1_Rewired_ControllerPollingInfo_ *, Controller_PollForAllButtonsDown, (Controller * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EE2990, bool, Controller_QTQIKtoLrywcoTscrBJzdNeJbVI, (Controller * __this, int32_t param_00009b9d, int32_t param_00009b9e, MethodInfo * method)); -DO_APP_FUNC(0x01EE2A70, bool, Controller_WkIhnqmrwaIChPLGGxbYqwolfdzW, (Controller * __this, int32_t param_00009b9f, int32_t param_00009ba0, MethodInfo * method)); +DO_APP_FUNC(0x01EE2990, bool, Controller_QTQIKtoLrywcoTscrBJzdNeJbVI, (Controller * __this, int32_t param_00009b9d, int32_t * param_00009b9e, MethodInfo * method)); +DO_APP_FUNC(0x01EE2A70, bool, Controller_WkIhnqmrwaIChPLGGxbYqwolfdzW, (Controller * __this, int32_t param_00009b9f, int32_t * param_00009ba0, MethodInfo * method)); DO_APP_FUNC(0x01EE2B50, void, Controller_UpdatePollingFrameTracking, (Controller * __this, MethodInfo * method)); DO_APP_FUNC(0x01EE2C80, double, Controller_GetLastTimeActive, (Controller * __this, MethodInfo * method)); DO_APP_FUNC(0x01EE2D30, double, Controller_GetLastTimeActive_1, (Controller * __this, bool useRawValues, MethodInfo * method)); @@ -40036,6 +47521,7 @@ DO_APP_FUNC(0x01EE34F0, IControllerTemplate *, Controller_GetTemplate, (Controll DO_APP_FUNC(0x01EE36B0, IControllerTemplate *, Controller_GetTemplate_1, (Controller * __this, Type * type, MethodInfo * method)); DO_APP_FUNC(0x01EE3810, bool, Controller_ImplementsTemplate, (Controller * __this, Guid typeGuid, MethodInfo * method)); DO_APP_FUNC(0x01EE39B0, bool, Controller_ImplementsTemplate_1, (Controller * __this, Type * type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9488, Controller_ImplementsTemplate_1__MethodInfo); DO_APP_FUNC(0x01EE3B50, void, Controller_oWNoPUmLkAxZWxLnLyILWIUMiIYA, (Controller * __this, IControllerTemplate__Array * param_00009ba7, MethodInfo * method)); DO_APP_FUNC(0x01EE3CF0, void, Controller_jeaouqEbQHoWmxiqLJMNAZYkbhZj, (Controller * __this, UpdateLoopType__Enum param_00009ba8, MethodInfo * method)); DO_APP_FUNC(0x01EE3E60, ButtonStateFlags__Enum, Controller_rOGLHjwYPTGbdxOLjPIIjsDBTIw, (Controller * __this, int32_t param_00009ba9, MethodInfo * method)); @@ -40045,8 +47531,8 @@ DO_APP_FUNC(0x01EE41E0, void, Controller_sjgQXMMRIHmhSmDrVpgFKxoFoOIy, (Controll DO_APP_FUNC(0x01EE4300, bool, Controller_pVdcYOMqnPUbMLgPvBJpIlXZpcXy, (Controller * __this, bool param_00009bac, MethodInfo * method)); DO_APP_FUNC(0x01EE4370, void, Controller_HjuYadaxwxMvUXiwNNYvpThGTpfT, (Controller * __this, ControllerMap * param_00009bad, MethodInfo * method)); DO_APP_FUNC(0x01EE4610, void, Controller_jYXJvXIKABNgacZvmVQXddAdKMNl, (Controller * __this, ControllerMap * param_00009bae, ActionElementMap * param_00009baf, MethodInfo * method)); -DO_APP_FUNC(0x01EE4630, bool, Controller_qEjEwCSLdmgETaIykJlIBjVdYKYgb, (Controller * __this, ActionElementMap * param_00009bb0, int32_t param_00009bb1, float param_00009bb2, bool param_00009bb3, MethodInfo * method)); -DO_APP_FUNC(0x01EE4780, bool, Controller_qEjEwCSLdmgETaIykJlIBjVdYKYgb_1, (Controller * __this, ActionElementMap * param_00009bb4, int32_t param_00009bb5, bool param_00009bb6, float param_00009bb7, MethodInfo * method)); +DO_APP_FUNC(0x01EE4630, bool, Controller_qEjEwCSLdmgETaIykJlIBjVdYKYgb, (Controller * __this, ActionElementMap * param_00009bb0, int32_t param_00009bb1, float * param_00009bb2, bool * param_00009bb3, MethodInfo * method)); +DO_APP_FUNC(0x01EE4780, bool, Controller_qEjEwCSLdmgETaIykJlIBjVdYKYgb_1, (Controller * __this, ActionElementMap * param_00009bb4, int32_t param_00009bb5, bool param_00009bb6, float * param_00009bb7, MethodInfo * method)); DO_APP_FUNC(0x01EE4810, void, Controller_bDWOTslUkzxjjeYHmyeJqqMbJJtF, (Controller * __this, Controller_Element * param_00009bb8, MethodInfo * method)); DO_APP_FUNC(0x01EE4870, void, Controller_OnpgiuYddricHKRgSioCyDxbdkRJA, (Controller * __this, Controller_CompoundElement * param_00009bb9, MethodInfo * method)); DO_APP_FUNC(0x01EE48D0, Guid, Controller_RutspDhaoeouoDERHryjBHRWMHPK, (Controller * __this, MethodInfo * method)); @@ -40090,6 +47576,7 @@ DO_APP_FUNC(0x01EE6B20, float, Controller_Axis_GmYVmSsSptJOjWIUjZkNMNMgAsPW, (Co DO_APP_FUNC(0x01EE6BB0, float, Controller_Axis_xoivwsPkRhSUtkdhgbSbBCYUKGfyA, (Controller_Axis * __this, MethodInfo * method)); DO_APP_FUNC(0x01EE6C40, void, Controller_Axis_HtYuNHARwssPEaYdHMuoTHOgBZKh, (Controller_Axis * __this, float param_00009bc5, MethodInfo * method)); DO_APP_FUNC(0x01EE6CE0, float, Controller_Axis_hcQYYHxcnnRDFGrGICdLzudWZjoD, (Controller_Axis * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC838, Controller_Axis_hcQYYHxcnnRDFGrGICdLzudWZjoD__MethodInfo); DO_APP_FUNC(0x01EE6E40, void, Controller_Axis__ctor, (Controller_Axis * __this, Controller * param_00009bc6, int32_t param_00009bc7, String * param_00009bc8, AxisRange__Enum param_00009bc9, HardwareAxisInfo * param_00009bca, MethodInfo * method)); DO_APP_FUNC(0x01EE7160, void, Controller_Axis_iPCCUgTrDaogsouEfqsISVyRVnlA, (Controller_Axis * __this, UpdateLoopType__Enum param_00009bcb, MethodInfo * method)); DO_APP_FUNC(0x01EE7180, void, Controller_Axis_RUqqckmHfogvMEQdiRvQcANztwiHA, (Controller_Axis * __this, AxisCalibration * param_00009bcc, MethodInfo * method)); @@ -40180,6 +47667,7 @@ DO_APP_FUNC(0x01EEC3E0, Controller_Button *, Controller_Hat_get_buttonDownRight, DO_APP_FUNC(0x01EEC490, Controller_Button *, Controller_Hat_get_buttonDownLeft, (Controller_Hat * __this, MethodInfo * method)); DO_APP_FUNC(0x01EEC540, Controller_Button *, Controller_Hat_get_buttonUpLeft, (Controller_Hat * __this, MethodInfo * method)); DO_APP_FUNC(0x01EEC5F0, void, Controller_Hat__ctor, (Controller_Hat * __this, Controller * param_00009c02, int32_t param_00009c03, String * param_00009c04, Controller_Button__Array * param_00009c05, Int32__Array * param_00009c06, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC538, Controller_Hat__ctor__MethodInfo); DO_APP_FUNC(0x01EEC950, void, Controller_Hat_sOnJhUbggOcodSurOoTYUrMjDrBk, (Controller_Hat * __this, UpdateLoopType__Enum param_00009c07, ControllerDataUpdater * param_00009c08, MethodInfo * method)); DO_APP_FUNC(0x01EECED0, void, Controller_Hat_HfiulUxZJZxkbswmQMiQqWpkPjZb, (Controller_Hat * __this, Controller_Button * param_00009c09, int32_t param_00009c0a, int32_t param_00009c0b, int32_t param_00009c0c, UpdateLoopType__Enum param_00009c0d, ControllerDataUpdater * param_00009c0e, MethodInfo * method)); DO_APP_FUNC(0x01EED080, void, Controller_Hat_ATybcdhyZyainMTCiSCWcROIzyIh, (Controller_Hat * __this, Controller_Button * param_00009c0f, int32_t param_00009c10, UpdateLoopType__Enum param_00009c11, ControllerDataUpdater * param_00009c12, MethodInfo * method)); @@ -40196,12 +47684,15 @@ DO_APP_FUNC(0x003AE050, void, Controller_Extension_Clear, (Controller_Extension DO_APP_FUNC(0x01EED300, void, Controller_JWRohisJXmIuHwEGEGEggUqRKtxAb__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Controller_JWRohisJXmIuHwEGEGEggUqRKtxAb__ctor, (Controller_JWRohisJXmIuHwEGEGEggUqRKtxAb * __this, MethodInfo * method)); DO_APP_FUNC(0x01EED3B0, bool, Controller_JWRohisJXmIuHwEGEGEggUqRKtxAb_QLmqYCcstnkfdSaRxIxOxZQHDSmG, (Controller_JWRohisJXmIuHwEGEGEggUqRKtxAb * __this, Controller * param_00009c1a, Guid param_00009c1b, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE93A0, Controller_JWRohisJXmIuHwEGEGEggUqRKtxAb_QLmqYCcstnkfdSaRxIxOxZQHDSmG__MethodInfo); DO_APP_FUNC(0x01EED3E0, bool, Controller_JWRohisJXmIuHwEGEGEggUqRKtxAb_vtewqZkAjrVOTRcVQDWxAOsjtdOqA, (Controller_JWRohisJXmIuHwEGEGEggUqRKtxAb * __this, Controller * param_00009c1c, Type * param_00009c1d, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9338, Controller_JWRohisJXmIuHwEGEGEggUqRKtxAb_vtewqZkAjrVOTRcVQDWxAOsjtdOqA__MethodInfo); DO_APP_FUNC(0x01EED410, void, Controller_PWCpFqgnfCquxMQUouzVLdNuQZKm__ctor, (Controller_PWCpFqgnfCquxMQUouzVLdNuQZKm * __this, int32_t param_00009c1e, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Controller_PWCpFqgnfCquxMQUouzVLdNuQZKm_System_IDisposable_Dispose, (Controller_PWCpFqgnfCquxMQUouzVLdNuQZKm * __this, MethodInfo * method)); DO_APP_FUNC(0x01EED490, bool, Controller_PWCpFqgnfCquxMQUouzVLdNuQZKm_MoveNext, (Controller_PWCpFqgnfCquxMQUouzVLdNuQZKm * __this, MethodInfo * method)); DO_APP_FUNC(0x01EED6A0, ControllerPollingInfo, Controller_PWCpFqgnfCquxMQUouzVLdNuQZKm_System_Collections_Generic_IEnumerator_Rewired_ControllerPollingInfo__get_Current, (Controller_PWCpFqgnfCquxMQUouzVLdNuQZKm * __this, MethodInfo * method)); DO_APP_FUNC(0x01EED6D0, void, Controller_PWCpFqgnfCquxMQUouzVLdNuQZKm_System_Collections_IEnumerator_Reset, (Controller_PWCpFqgnfCquxMQUouzVLdNuQZKm * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC588, Controller_PWCpFqgnfCquxMQUouzVLdNuQZKm_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x01EED720, Object *, Controller_PWCpFqgnfCquxMQUouzVLdNuQZKm_System_Collections_IEnumerator_get_Current, (Controller_PWCpFqgnfCquxMQUouzVLdNuQZKm * __this, MethodInfo * method)); DO_APP_FUNC(0x01EED790, IEnumerator_1_Rewired_ControllerPollingInfo_ *, Controller_PWCpFqgnfCquxMQUouzVLdNuQZKm_System_Collections_Generic_IEnumerable_Rewired_ControllerPollingInfo__GetEnumerator, (Controller_PWCpFqgnfCquxMQUouzVLdNuQZKm * __this, MethodInfo * method)); DO_APP_FUNC(0x01EED790, IEnumerator *, Controller_PWCpFqgnfCquxMQUouzVLdNuQZKm_System_Collections_IEnumerable_GetEnumerator, (Controller_PWCpFqgnfCquxMQUouzVLdNuQZKm * __this, MethodInfo * method)); @@ -40210,6 +47701,7 @@ DO_APP_FUNC(0x003AE050, void, Controller_HUhqQmURjZefXCLGSpCcHVTRkck_System_IDis DO_APP_FUNC(0x01EED8D0, bool, Controller_HUhqQmURjZefXCLGSpCcHVTRkck_MoveNext, (Controller_HUhqQmURjZefXCLGSpCcHVTRkck * __this, MethodInfo * method)); DO_APP_FUNC(0x01EED6A0, ControllerPollingInfo, Controller_HUhqQmURjZefXCLGSpCcHVTRkck_System_Collections_Generic_IEnumerator_Rewired_ControllerPollingInfo__get_Current, (Controller_HUhqQmURjZefXCLGSpCcHVTRkck * __this, MethodInfo * method)); DO_APP_FUNC(0x01EEDAE0, void, Controller_HUhqQmURjZefXCLGSpCcHVTRkck_System_Collections_IEnumerator_Reset, (Controller_HUhqQmURjZefXCLGSpCcHVTRkck * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC490, Controller_HUhqQmURjZefXCLGSpCcHVTRkck_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x01EEDB30, Object *, Controller_HUhqQmURjZefXCLGSpCcHVTRkck_System_Collections_IEnumerator_get_Current, (Controller_HUhqQmURjZefXCLGSpCcHVTRkck * __this, MethodInfo * method)); DO_APP_FUNC(0x01EEDBA0, IEnumerator_1_Rewired_ControllerPollingInfo_ *, Controller_HUhqQmURjZefXCLGSpCcHVTRkck_System_Collections_Generic_IEnumerable_Rewired_ControllerPollingInfo__GetEnumerator, (Controller_HUhqQmURjZefXCLGSpCcHVTRkck * __this, MethodInfo * method)); DO_APP_FUNC(0x01EEDBA0, IEnumerator *, Controller_HUhqQmURjZefXCLGSpCcHVTRkck_System_Collections_IEnumerable_GetEnumerator, (Controller_HUhqQmURjZefXCLGSpCcHVTRkck * __this, MethodInfo * method)); @@ -40265,14 +47757,15 @@ DO_APP_FUNC(0x01EF1E40, IEnumerable_1_Rewired_ControllerPollingInfo_ *, Controll DO_APP_FUNC(0x01EF1F00, IEnumerable_1_Rewired_ControllerPollingInfo_ *, ControllerWithAxes_PollForAllElementsDown, (ControllerWithAxes * __this, MethodInfo * method)); DO_APP_FUNC(0x01EF1FC0, IEnumerable_1_Rewired_ControllerPollingInfo_ *, ControllerWithAxes_PollForAllAxes, (ControllerWithAxes * __this, MethodInfo * method)); DO_APP_FUNC(0x01EF2080, void, ControllerWithAxes_CSFHFpMaiAAgHEWxNTwfgBSriMWfb, (ControllerWithAxes * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EF2210, bool, ControllerWithAxes_IsPolledAxisActive, (ControllerWithAxes * __this, int32_t index, Pole__Enum pole, int32_t elementIdentifierId, MethodInfo * method)); +DO_APP_FUNC(0x01EF2210, bool, ControllerWithAxes_IsPolledAxisActive, (ControllerWithAxes * __this, int32_t index, Pole__Enum * pole, int32_t * elementIdentifierId, MethodInfo * method)); DO_APP_FUNC(0x01EF2430, bool, ControllerWithAxes_ImportCalibrationMapFromXmlString, (ControllerWithAxes * __this, String * xmlString, MethodInfo * method)); DO_APP_FUNC(0x01EF24F0, bool, ControllerWithAxes_ImportCalibrationMapFromJsonString, (ControllerWithAxes * __this, String * jsonString, MethodInfo * method)); DO_APP_FUNC(0x01EF25B0, void, ControllerWithAxes_jeaouqEbQHoWmxiqLJMNAZYkbhZj, (ControllerWithAxes * __this, UpdateLoopType__Enum param_00009c54, MethodInfo * method)); -DO_APP_FUNC(0x01EF2A90, bool, ControllerWithAxes_WzznNjxPtDAIiIDYueutBsgTrmZfb, (ControllerWithAxes * __this, ActionElementMap * param_00009c55, int32_t param_00009c56, bool param_00009c57, bool param_00009c58, float param_00009c59, MethodInfo * method)); +DO_APP_FUNC(0x01EF2A90, bool, ControllerWithAxes_WzznNjxPtDAIiIDYueutBsgTrmZfb, (ControllerWithAxes * __this, ActionElementMap * param_00009c55, int32_t param_00009c56, bool param_00009c57, bool param_00009c58, float * param_00009c59, MethodInfo * method)); DO_APP_FUNC(0x01EF2C40, void, ControllerWithAxes_HjuYadaxwxMvUXiwNNYvpThGTpfT, (ControllerWithAxes * __this, ControllerMap * param_00009c5a, MethodInfo * method)); DO_APP_FUNC(0x01EF2F60, void, ControllerWithAxes_jYXJvXIKABNgacZvmVQXddAdKMNl, (ControllerWithAxes * __this, ControllerMap * param_00009c5b, ActionElementMap * param_00009c5c, MethodInfo * method)); DO_APP_FUNC(0x01EF2FB0, void, ControllerWithAxes_oUDdrAVkkBTuffgcgGZUFpJpcInDb, (ControllerWithAxes * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC2E8, ControllerWithAxes_oUDdrAVkkBTuffgcgGZUFpJpcInDb__MethodInfo); DO_APP_FUNC(0x01EF3170, void, ControllerWithAxes_sjgQXMMRIHmhSmDrVpgFKxoFoOIy, (ControllerWithAxes * __this, MethodInfo * method)); DO_APP_FUNC(0x0109C000, IEnumerable_1_Rewired_ControllerPollingInfo_ *, ControllerWithAxes_BqeBpUQJwvUtcgRVMEjmKmJywdPpA, (ControllerWithAxes * __this, MethodInfo * method)); DO_APP_FUNC(0x01BAA640, IEnumerable_1_Rewired_ControllerPollingInfo_ *, ControllerWithAxes_KkkAQZiGCRvNkGrorogDOccsvdSKA, (ControllerWithAxes * __this, MethodInfo * method)); @@ -40281,6 +47774,7 @@ DO_APP_FUNC(0x003AE050, void, ControllerWithAxes_LetpMdmjdGTLpJWETwibvziyVxxg_Sy DO_APP_FUNC(0x01EF31E0, bool, ControllerWithAxes_LetpMdmjdGTLpJWETwibvziyVxxg_MoveNext, (ControllerWithAxes_LetpMdmjdGTLpJWETwibvziyVxxg * __this, MethodInfo * method)); DO_APP_FUNC(0x01EED6A0, ControllerPollingInfo, ControllerWithAxes_LetpMdmjdGTLpJWETwibvziyVxxg_System_Collections_Generic_IEnumerator_Rewired_ControllerPollingInfo__get_Current, (ControllerWithAxes_LetpMdmjdGTLpJWETwibvziyVxxg * __this, MethodInfo * method)); DO_APP_FUNC(0x01EF3410, void, ControllerWithAxes_LetpMdmjdGTLpJWETwibvziyVxxg_System_Collections_IEnumerator_Reset, (ControllerWithAxes_LetpMdmjdGTLpJWETwibvziyVxxg * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC2E0, ControllerWithAxes_LetpMdmjdGTLpJWETwibvziyVxxg_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x01EF3460, Object *, ControllerWithAxes_LetpMdmjdGTLpJWETwibvziyVxxg_System_Collections_IEnumerator_get_Current, (ControllerWithAxes_LetpMdmjdGTLpJWETwibvziyVxxg * __this, MethodInfo * method)); DO_APP_FUNC(0x01EF34D0, IEnumerator_1_Rewired_ControllerPollingInfo_ *, ControllerWithAxes_LetpMdmjdGTLpJWETwibvziyVxxg_System_Collections_Generic_IEnumerable_Rewired_ControllerPollingInfo__GetEnumerator, (ControllerWithAxes_LetpMdmjdGTLpJWETwibvziyVxxg * __this, MethodInfo * method)); DO_APP_FUNC(0x01EF34D0, IEnumerator *, ControllerWithAxes_LetpMdmjdGTLpJWETwibvziyVxxg_System_Collections_IEnumerable_GetEnumerator, (ControllerWithAxes_LetpMdmjdGTLpJWETwibvziyVxxg * __this, MethodInfo * method)); @@ -40291,6 +47785,7 @@ DO_APP_FUNC(0x01EF3DB0, void, ControllerWithAxes_NzvSOgBMKPbhHAioOqyiZXkkpfXz_QD DO_APP_FUNC(0x01EF3E10, void, ControllerWithAxes_NzvSOgBMKPbhHAioOqyiZXkkpfXz_DoQXnKzdNUehTxxsxBJvgNhCuILy, (ControllerWithAxes_NzvSOgBMKPbhHAioOqyiZXkkpfXz * __this, MethodInfo * method)); DO_APP_FUNC(0x01EED6A0, ControllerPollingInfo, ControllerWithAxes_NzvSOgBMKPbhHAioOqyiZXkkpfXz_System_Collections_Generic_IEnumerator_Rewired_ControllerPollingInfo__get_Current, (ControllerWithAxes_NzvSOgBMKPbhHAioOqyiZXkkpfXz * __this, MethodInfo * method)); DO_APP_FUNC(0x01EF3E70, void, ControllerWithAxes_NzvSOgBMKPbhHAioOqyiZXkkpfXz_System_Collections_IEnumerator_Reset, (ControllerWithAxes_NzvSOgBMKPbhHAioOqyiZXkkpfXz * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC200, ControllerWithAxes_NzvSOgBMKPbhHAioOqyiZXkkpfXz_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x01EF3EC0, Object *, ControllerWithAxes_NzvSOgBMKPbhHAioOqyiZXkkpfXz_System_Collections_IEnumerator_get_Current, (ControllerWithAxes_NzvSOgBMKPbhHAioOqyiZXkkpfXz * __this, MethodInfo * method)); DO_APP_FUNC(0x01EF3F30, IEnumerator_1_Rewired_ControllerPollingInfo_ *, ControllerWithAxes_NzvSOgBMKPbhHAioOqyiZXkkpfXz_System_Collections_Generic_IEnumerable_Rewired_ControllerPollingInfo__GetEnumerator, (ControllerWithAxes_NzvSOgBMKPbhHAioOqyiZXkkpfXz * __this, MethodInfo * method)); DO_APP_FUNC(0x01EF3F30, IEnumerator *, ControllerWithAxes_NzvSOgBMKPbhHAioOqyiZXkkpfXz_System_Collections_IEnumerable_GetEnumerator, (ControllerWithAxes_NzvSOgBMKPbhHAioOqyiZXkkpfXz * __this, MethodInfo * method)); @@ -40301,6 +47796,7 @@ DO_APP_FUNC(0x01EF4810, void, ControllerWithAxes_rfkTPrxKnqjKmBlFsGBNjMGzhcjRA_Q DO_APP_FUNC(0x01EF4870, void, ControllerWithAxes_rfkTPrxKnqjKmBlFsGBNjMGzhcjRA_DoQXnKzdNUehTxxsxBJvgNhCuILy, (ControllerWithAxes_rfkTPrxKnqjKmBlFsGBNjMGzhcjRA * __this, MethodInfo * method)); DO_APP_FUNC(0x01EED6A0, ControllerPollingInfo, ControllerWithAxes_rfkTPrxKnqjKmBlFsGBNjMGzhcjRA_System_Collections_Generic_IEnumerator_Rewired_ControllerPollingInfo__get_Current, (ControllerWithAxes_rfkTPrxKnqjKmBlFsGBNjMGzhcjRA * __this, MethodInfo * method)); DO_APP_FUNC(0x01EF48D0, void, ControllerWithAxes_rfkTPrxKnqjKmBlFsGBNjMGzhcjRA_System_Collections_IEnumerator_Reset, (ControllerWithAxes_rfkTPrxKnqjKmBlFsGBNjMGzhcjRA * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC1E0, ControllerWithAxes_rfkTPrxKnqjKmBlFsGBNjMGzhcjRA_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x01EF4920, Object *, ControllerWithAxes_rfkTPrxKnqjKmBlFsGBNjMGzhcjRA_System_Collections_IEnumerator_get_Current, (ControllerWithAxes_rfkTPrxKnqjKmBlFsGBNjMGzhcjRA * __this, MethodInfo * method)); DO_APP_FUNC(0x01EF4990, IEnumerator_1_Rewired_ControllerPollingInfo_ *, ControllerWithAxes_rfkTPrxKnqjKmBlFsGBNjMGzhcjRA_System_Collections_Generic_IEnumerable_Rewired_ControllerPollingInfo__GetEnumerator, (ControllerWithAxes_rfkTPrxKnqjKmBlFsGBNjMGzhcjRA * __this, MethodInfo * method)); DO_APP_FUNC(0x01EF4990, IEnumerator *, ControllerWithAxes_rfkTPrxKnqjKmBlFsGBNjMGzhcjRA_System_Collections_IEnumerable_GetEnumerator, (ControllerWithAxes_rfkTPrxKnqjKmBlFsGBNjMGzhcjRA * __this, MethodInfo * method)); @@ -40339,6 +47835,7 @@ DO_APP_FUNC(0x01EF6F30, IList_1_Rewired_Controller_Hat_ *, Joystick_get_Hats, (J DO_APP_FUNC(0x01EF6FE0, int32_t, Joystick_wlyBIkvWeGYXtEwphBomHJSTSdUA, (Joystick * __this, MethodInfo * method)); DO_APP_FUNC(0x01EF7040, HardwareControllerMapIdentifier, Joystick_caQhMpOOKzCugFmwGVvSPoHyvhsEA, (Joystick * __this, MethodInfo * method)); DO_APP_FUNC(0x01EF70A0, void, Joystick__ctor, (Joystick * __this, BridgedController * param_00009c8f, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBFB0, Joystick__ctor__MethodInfo); DO_APP_FUNC(0x01EF7C50, void, Joystick__ctor_1, (Joystick * __this, int32_t param_00009c90, InputSource__Enum param_00009c91, String * param_00009c92, String * param_00009c93, String * param_00009c94, Guid param_00009c95, int32_t param_00009c96, int32_t param_00009c97, Boolean__Array * param_00009c98, HardwareControllerMap_Game * param_00009c99, Controller_Extension * param_00009c9a, ControllerDataUpdater * param_00009c9b, MethodInfo * method)); DO_APP_FUNC(0x01EF87B0, bool, Joystick_VqdQaBXOrvCcSvkvywwrIaZnCXfu, (Joystick * __this, JoystickType__Enum param_00009c9c, MethodInfo * method)); DO_APP_FUNC(0x01EF88A0, JoystickCalibrationMapSaveData *, Joystick_GetCalibrationMapSaveData, (Joystick * __this, MethodInfo * method)); @@ -40362,6 +47859,7 @@ DO_APP_FUNC(0x01EF9B80, void, Joystick_XQvqAuASXmbYNrNehBDJBZTpysRj, (Joystick * DO_APP_FUNC(0x01EF9D10, void, Joystick_vUZKmBCVJuUkbgWQQmNuorYPulRy, (Joystick * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Joystick_PGogNexLJGZoHMUpxAPyfooCKWew, (Joystick * __this, MethodInfo * method)); DO_APP_FUNC(0x01EF9E80, int32_t, Joystick_fvTBLcIxexbdxoAJYdOCzPCdReUe, (Joystick * param_00009cba, Joystick * param_00009cbb, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2DE8, Joystick_fvTBLcIxexbdxoAJYdOCzPCdReUe__MethodInfo); DO_APP_FUNC(0x01EF9FF0, KeyboardKeyCode__Enum__Array *, Keyboard_LaNnmaiZypgMsPSbWvlepQAkstIi, (MethodInfo * method)); DO_APP_FUNC(0x01EFA190, void, Keyboard__ctor, (Keyboard * __this, String * param_00009cbc, IUnifiedKeyboardSource * param_00009cbd, MethodInfo * method)); DO_APP_FUNC(0x01EFA680, void, Keyboard__ctor_1, (Keyboard * __this, int32_t param_00009cbe, InputSource__Enum param_00009cbf, String * param_00009cc0, String * param_00009cc1, HardwareControllerMap_Game * param_00009cc2, int32_t param_00009cc3, Controller_Extension * param_00009cc4, ControllerDataUpdater * param_00009cc5, MethodInfo * method)); @@ -40413,7 +47911,7 @@ DO_APP_FUNC(0x01EFCA10, ModifierKeyFlags__Enum, Keyboard_GAtEIhZQFlwoxdKNREjHgfM DO_APP_FUNC(0x01EFCA70, int32_t, Keyboard_xtxgtLEqBhLjJBIaFjHyfdwESouvc, (ModifierKeyFlags__Enum param_00009cf0, MethodInfo * method)); DO_APP_FUNC(0x01EFCAB0, KeyboardKeyCode__Enum, Keyboard_GetKeyboardKeyCodeByButtonIndex, (int32_t buttonIndex, MethodInfo * method)); DO_APP_FUNC(0x01EFCC70, int32_t, Keyboard_OAOYmWxVGINaRSwwcSZsIimfGGKm, (KeyboardKeyCode__Enum param_00009cf2, MethodInfo * method)); -DO_APP_FUNC(0x01EFCD30, void, Keyboard_wzaxEMQepyIIAaTZUqDLBgGIRFBpA, (int32_t param_00009cf3, KeyCode__Enum param_00009cf4, MethodInfo * method)); +DO_APP_FUNC(0x01EFCD30, void, Keyboard_wzaxEMQepyIIAaTZUqDLBgGIRFBpA, (int32_t * param_00009cf3, KeyCode__Enum * param_00009cf4, MethodInfo * method)); DO_APP_FUNC(0x01EFCDE0, void, Keyboard_jeaouqEbQHoWmxiqLJMNAZYkbhZj, (Keyboard * __this, UpdateLoopType__Enum param_00009cf5, MethodInfo * method)); DO_APP_FUNC(0x01EFCE60, void, Keyboard_vhADUWjoXaiyeCkrRUFxxQOyiFcL, (Keyboard * __this, UpdateLoopType__Enum param_00009cf6, MethodInfo * method)); DO_APP_FUNC(0x01EFD0F0, bool, Keyboard_hvNfzOWOJwCJgiOjkZpjgdGQhlDN, (Keyboard * __this, KeyboardKeyCode__Enum param_00009cf7, MethodInfo * method)); @@ -40425,13 +47923,14 @@ DO_APP_FUNC(0x01EFD510, void, Keyboard_BakeMap, (Keyboard * __this, ControllerMa DO_APP_FUNC(0x01EFD650, void, Keyboard_BakeActionElementMap, (Keyboard * __this, ControllerMap * controllerMap, ActionElementMap * map, MethodInfo * method)); DO_APP_FUNC(0x01EFD670, void, Keyboard_sjgQXMMRIHmhSmDrVpgFKxoFoOIy, (Keyboard * __this, MethodInfo * method)); DO_APP_FUNC(0x01EFD690, bool, Keyboard_pVdcYOMqnPUbMLgPvBJpIlXZpcXy, (Keyboard * __this, bool param_00009d01, MethodInfo * method)); -DO_APP_FUNC(0x01EFD750, bool, Keyboard_apihxtidGUqvIaJCwNevmJtvnSKE, (Keyboard * __this, Controller_Button * param_00009d02, Controller_Button * param_00009d03, ModifierKey__Enum param_00009d04, MethodInfo * method)); +DO_APP_FUNC(0x01EFD750, bool, Keyboard_apihxtidGUqvIaJCwNevmJtvnSKE, (Keyboard * __this, Controller_Button * * param_00009d02, Controller_Button * * param_00009d03, ModifierKey__Enum param_00009d04, MethodInfo * method)); DO_APP_FUNC(0x01EFDAE0, void, Keyboard_dCAZjEUomjOBGxfmbWwdOeLTapxdA, (Keyboard * __this, MethodInfo * method)); DO_APP_FUNC(0x01EED410, void, Keyboard_YiQbQZcElEPdkLsCcWxDLIlxGCxtA__ctor, (Keyboard_YiQbQZcElEPdkLsCcWxDLIlxGCxtA * __this, int32_t param_00009d05, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Keyboard_YiQbQZcElEPdkLsCcWxDLIlxGCxtA_System_IDisposable_Dispose, (Keyboard_YiQbQZcElEPdkLsCcWxDLIlxGCxtA * __this, MethodInfo * method)); DO_APP_FUNC(0x01EFDE60, bool, Keyboard_YiQbQZcElEPdkLsCcWxDLIlxGCxtA_MoveNext, (Keyboard_YiQbQZcElEPdkLsCcWxDLIlxGCxtA * __this, MethodInfo * method)); DO_APP_FUNC(0x01EED6A0, ControllerPollingInfo, Keyboard_YiQbQZcElEPdkLsCcWxDLIlxGCxtA_System_Collections_Generic_IEnumerator_Rewired_ControllerPollingInfo__get_Current, (Keyboard_YiQbQZcElEPdkLsCcWxDLIlxGCxtA * __this, MethodInfo * method)); DO_APP_FUNC(0x01EFE170, void, Keyboard_YiQbQZcElEPdkLsCcWxDLIlxGCxtA_System_Collections_IEnumerator_Reset, (Keyboard_YiQbQZcElEPdkLsCcWxDLIlxGCxtA * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBD80, Keyboard_YiQbQZcElEPdkLsCcWxDLIlxGCxtA_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x01EFE1C0, Object *, Keyboard_YiQbQZcElEPdkLsCcWxDLIlxGCxtA_System_Collections_IEnumerator_get_Current, (Keyboard_YiQbQZcElEPdkLsCcWxDLIlxGCxtA * __this, MethodInfo * method)); DO_APP_FUNC(0x01EFE230, IEnumerator_1_Rewired_ControllerPollingInfo_ *, Keyboard_YiQbQZcElEPdkLsCcWxDLIlxGCxtA_System_Collections_Generic_IEnumerable_Rewired_ControllerPollingInfo__GetEnumerator, (Keyboard_YiQbQZcElEPdkLsCcWxDLIlxGCxtA * __this, MethodInfo * method)); DO_APP_FUNC(0x01EFE230, IEnumerator *, Keyboard_YiQbQZcElEPdkLsCcWxDLIlxGCxtA_System_Collections_IEnumerable_GetEnumerator, (Keyboard_YiQbQZcElEPdkLsCcWxDLIlxGCxtA * __this, MethodInfo * method)); @@ -40440,6 +47939,7 @@ DO_APP_FUNC(0x003AE050, void, Keyboard_veHHyYzYqHrBOckTvyQvjPOBhJKBA_System_IDis DO_APP_FUNC(0x01EFE370, bool, Keyboard_veHHyYzYqHrBOckTvyQvjPOBhJKBA_MoveNext, (Keyboard_veHHyYzYqHrBOckTvyQvjPOBhJKBA * __this, MethodInfo * method)); DO_APP_FUNC(0x01EED6A0, ControllerPollingInfo, Keyboard_veHHyYzYqHrBOckTvyQvjPOBhJKBA_System_Collections_Generic_IEnumerator_Rewired_ControllerPollingInfo__get_Current, (Keyboard_veHHyYzYqHrBOckTvyQvjPOBhJKBA * __this, MethodInfo * method)); DO_APP_FUNC(0x01EFE680, void, Keyboard_veHHyYzYqHrBOckTvyQvjPOBhJKBA_System_Collections_IEnumerator_Reset, (Keyboard_veHHyYzYqHrBOckTvyQvjPOBhJKBA * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBD68, Keyboard_veHHyYzYqHrBOckTvyQvjPOBhJKBA_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x01EFE6D0, Object *, Keyboard_veHHyYzYqHrBOckTvyQvjPOBhJKBA_System_Collections_IEnumerator_get_Current, (Keyboard_veHHyYzYqHrBOckTvyQvjPOBhJKBA * __this, MethodInfo * method)); DO_APP_FUNC(0x01EFE740, IEnumerator_1_Rewired_ControllerPollingInfo_ *, Keyboard_veHHyYzYqHrBOckTvyQvjPOBhJKBA_System_Collections_Generic_IEnumerable_Rewired_ControllerPollingInfo__GetEnumerator, (Keyboard_veHHyYzYqHrBOckTvyQvjPOBhJKBA * __this, MethodInfo * method)); DO_APP_FUNC(0x01EFE740, IEnumerator *, Keyboard_veHHyYzYqHrBOckTvyQvjPOBhJKBA_System_Collections_IEnumerable_GetEnumerator, (Keyboard_veHHyYzYqHrBOckTvyQvjPOBhJKBA * __this, MethodInfo * method)); @@ -40450,12 +47950,13 @@ DO_APP_FUNC(0x01EFEB30, Guid, Mouse_get_deviceInstanceGuid, (Mouse * __this, Met DO_APP_FUNC(0x01EFEC00, void, Mouse__ctor, (Mouse * __this, String * param_00009d07, IUnifiedMouseSource * param_00009d08, MethodInfo * method)); DO_APP_FUNC(0x01EFEF60, void, Mouse__ctor_1, (Mouse * __this, int32_t param_00009d09, InputSource__Enum param_00009d0a, String * param_00009d0b, String * param_00009d0c, int32_t param_00009d0d, int32_t param_00009d0e, HardwareControllerMap_Game * param_00009d0f, Controller_Extension * param_00009d10, ControllerDataUpdater * param_00009d11, MethodInfo * method)); DO_APP_FUNC(0x01EFF080, void, Mouse_jeaouqEbQHoWmxiqLJMNAZYkbhZj, (Mouse * __this, UpdateLoopType__Enum param_00009d12, MethodInfo * method)); -DO_APP_FUNC(0x01EFF100, bool, Mouse_IsPolledAxisActive, (Mouse * __this, int32_t index, Pole__Enum pole, int32_t elementIdentifierId, MethodInfo * method)); +DO_APP_FUNC(0x01EFF100, bool, Mouse_IsPolledAxisActive, (Mouse * __this, int32_t index, Pole__Enum * pole, int32_t * elementIdentifierId, MethodInfo * method)); DO_APP_FUNC(0x01EFF510, void, Mouse_sjgQXMMRIHmhSmDrVpgFKxoFoOIy, (Mouse * __this, MethodInfo * method)); DO_APP_FUNC(0x01EFF5E0, bool, Mouse_pVdcYOMqnPUbMLgPvBJpIlXZpcXy, (Mouse * __this, bool param_00009d16, MethodInfo * method)); DO_APP_FUNC(0x01EFF6F0, void, Mouse_IdnmcbHcHXWoNficwaMhJFmoOlSEb, (Mouse * __this, MethodInfo * method)); DO_APP_FUNC(0x006AF4B0, void, ControllerTemplate__ctor, (ControllerTemplate * __this, Object * param_00009d17, MethodInfo * method)); DO_APP_FUNC(0x01EFF850, void, ControllerTemplate__ctor_1, (ControllerTemplate * __this, ControllerTemplate_SZMjASumErbiSjGUvdCcemyAxmWCc * param_00009d18, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBAB0, ControllerTemplate__ctor_1__MethodInfo); DO_APP_FUNC(0x01F01910, IControllerTemplateElement *, ControllerTemplate_GetElement, (ControllerTemplate * __this, int32_t id, MethodInfo * method)); DO_APP_FUNC(0x01F01BA0, Controller *, ControllerTemplate_Rewired_IControllerTemplate_get_controller, (ControllerTemplate * __this, MethodInfo * method)); DO_APP_FUNC(0x01F01C30, String *, ControllerTemplate_Rewired_IControllerTemplate_get_name, (ControllerTemplate * __this, MethodInfo * method)); @@ -40464,8 +47965,10 @@ DO_APP_FUNC(0x01F01D90, IList_1_Rewired_IControllerTemplateElement_ *, Controlle DO_APP_FUNC(0x01F01E20, int32_t, ControllerTemplate_Rewired_IControllerTemplate_get_elementCount, (ControllerTemplate * __this, MethodInfo * method)); DO_APP_FUNC(0x01F01EC0, IControllerTemplateElement *, ControllerTemplate_Rewired_IControllerTemplate_GetElement, (ControllerTemplate * __this, int32_t id, MethodInfo * method)); DO_APP_FUNC(0x01F01F70, int32_t, ControllerTemplate_Rewired_IControllerTemplate_GetElementTargets, (ControllerTemplate * __this, ControllerElementTarget find, IList_1_Rewired_ControllerTemplateElementTarget_ * results, MethodInfo * method)); -DO_APP_FUNC(0x01F02090, int32_t, ControllerTemplate_GetElementTargets, (ControllerTemplate * __this, ControllerElementTarget find, IList_1_Rewired_ControllerTemplateElementTarget_ * results, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB988, ControllerTemplate_Rewired_IControllerTemplate_GetElementTargets__MethodInfo); +DO_APP_FUNC(0x01F02090, int32_t, ControllerTemplate_GetElementTargets, (ControllerTemplate * __this, ControllerElementTarget find, IList_1_Rewired_ControllerTemplateElementTarget_ * * results, MethodInfo * method)); DO_APP_FUNC(0x01F02310, Type *, ControllerTemplate_GetInterfaceType, (ControllerTemplateElementType__Enum elementType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB840, ControllerTemplate_GetInterfaceType__MethodInfo); DO_APP_FUNC(0x01F024D0, IList_1_Rewired_ControllerTemplate_kvOnxGBUMwSXiAWzvbgaylKBYqUs_ *, ControllerTemplate_mRNkMoGTotlQkdgqxOzmTKuJbFEK, (Controller * param_00009d22, IControllerTemplateAxisSource * param_00009d23, MethodInfo * method)); DO_APP_FUNC(0x01F02B40, IList_1_Rewired_ControllerTemplate_kvOnxGBUMwSXiAWzvbgaylKBYqUs_ *, ControllerTemplate_mRNkMoGTotlQkdgqxOzmTKuJbFEK_1, (Controller * param_00009d24, IControllerTemplateButtonSource * param_00009d25, MethodInfo * method)); DO_APP_FUNC(0x01F02BB0, IList_1_Rewired_ControllerTemplate_kvOnxGBUMwSXiAWzvbgaylKBYqUs_ *, ControllerTemplate_mRNkMoGTotlQkdgqxOzmTKuJbFEK_2, (Controller * param_00009d26, IControllerElementTarget * param_00009d27, MethodInfo * method)); @@ -40473,6 +47976,7 @@ DO_APP_FUNC(0x01F02D40, IControllerTemplateElement *, ControllerTemplate_GmWRGtZ DO_APP_FUNC(0x01F02E20, ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS *, ControllerTemplate_jivKHUnlgWCKXykxSnbhjKPFsanK, (IControllerTemplate * param_00009d2a, ADictionary_2_System_Int32_Rewired_IControllerTemplateElement_ * param_00009d2b, int32_t param_00009d2c, MethodInfo * method)); DO_APP_FUNC(0x01F02ED0, ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS *, ControllerTemplate_UuwdENcDlDpLodXWoMwdibAEhISt, (IControllerTemplate * param_00009d2d, ADictionary_2_System_Int32_Rewired_IControllerTemplateElement_ * param_00009d2e, int32_t param_00009d2f, MethodInfo * method)); DO_APP_FUNC(0x02036610, void, ControllerTemplate_LqGoLqohdgcNcwPSNdVMdAIXzmDeA__ctor, (ControllerTemplate_LqGoLqohdgcNcwPSNdVMdAIXzmDeA * __this, IControllerTemplate * param_00009d30, int32_t param_00009d31, String * param_00009d32, ControllerTemplateElementType__Enum param_00009d33, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDC78, ControllerTemplate_LqGoLqohdgcNcwPSNdVMdAIXzmDeA__ctor__MethodInfo); DO_APP_FUNC(0x020367A0, int32_t, ControllerTemplate_LqGoLqohdgcNcwPSNdVMdAIXzmDeA_get_id, (ControllerTemplate_LqGoLqohdgcNcwPSNdVMdAIXzmDeA * __this, MethodInfo * method)); DO_APP_FUNC(0x02036830, String *, ControllerTemplate_LqGoLqohdgcNcwPSNdVMdAIXzmDeA_get_descriptiveName, (ControllerTemplate_LqGoLqohdgcNcwPSNdVMdAIXzmDeA * __this, MethodInfo * method)); DO_APP_FUNC(0x020368C0, ControllerTemplateElementType__Enum, ControllerTemplate_LqGoLqohdgcNcwPSNdVMdAIXzmDeA_get_type, (ControllerTemplate_LqGoLqohdgcNcwPSNdVMdAIXzmDeA * __this, MethodInfo * method)); @@ -40480,6 +47984,7 @@ DO_APP_FUNC(0x003BB3C0, IControllerTemplate *, ControllerTemplate_LqGoLqohdgcNcw DO_APP_FUNC(0x02036950, void, ControllerTemplate_PKDCmzDgMHghiGPOjUfIymxWeMYsb__ctor, (ControllerTemplate_PKDCmzDgMHghiGPOjUfIymxWeMYsb * __this, IControllerTemplate * param_00009d37, int32_t param_00009d38, String * param_00009d39, ControllerTemplateElementType__Enum param_00009d3a, IList_1_Rewired_ControllerTemplate_kvOnxGBUMwSXiAWzvbgaylKBYqUs_ * param_00009d3b, MethodInfo * method)); DO_APP_FUNC(0x02036A60, bool, ControllerTemplate_PKDCmzDgMHghiGPOjUfIymxWeMYsb_mvQvvKgJFbOEnKODiISzhnaGQcFRA, (ControllerTemplate_PKDCmzDgMHghiGPOjUfIymxWeMYsb * __this, MethodInfo * method)); DO_APP_FUNC(0x02036B30, void, ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS__ctor, (ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS * __this, IControllerTemplate * param_00009d3c, int32_t param_00009d3d, String * param_00009d3e, String * param_00009d3f, String * param_00009d40, ControllerTemplateElementType__Enum param_00009d41, tAekPsTTZodxujISbkMNBntFDmVT * param_00009d42, IList_1_Rewired_ControllerTemplate_kvOnxGBUMwSXiAWzvbgaylKBYqUs_ * param_00009d43, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDD20, ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS__ctor__MethodInfo); DO_APP_FUNC(0x02036E50, float, ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS_vWGSiHfLpqrPIPaIAaveflcnWAsLA, (ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS * __this, MethodInfo * method)); DO_APP_FUNC(0x02036FC0, float, ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS_XATFDBcaUoIaWBORCKSmbsNDOfTaB, (ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS * __this, MethodInfo * method)); DO_APP_FUNC(0x02037130, bool, ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS_cWFlOSaGhDCJEdvxsfeIaiAiCTBSB, (ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS * __this, MethodInfo * method)); @@ -40490,6 +47995,7 @@ DO_APP_FUNC(0x02037470, float, ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS_R DO_APP_FUNC(0x02037500, float, ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS_Rewired_IControllerTemplateAxis_get_valuePrev, (ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS * __this, MethodInfo * method)); DO_APP_FUNC(0x02037590, IControllerTemplateAxisSource *, ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS_Rewired_IControllerTemplateAxis_get_source, (ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS * __this, MethodInfo * method)); DO_APP_FUNC(0x02037620, String *, ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS_Rewired_IControllerTemplateAxis_GetDescriptiveName, (ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS * __this, AxisRange__Enum axisRange, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDC60, ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS_Rewired_IControllerTemplateAxis_GetDescriptiveName__MethodInfo); DO_APP_FUNC(0x02037790, bool, ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS_Rewired_IControllerTemplateButton_get_value, (ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS * __this, MethodInfo * method)); DO_APP_FUNC(0x02037820, bool, ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS_Rewired_IControllerTemplateButton_get_valuePrev, (ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS * __this, MethodInfo * method)); DO_APP_FUNC(0x020378B0, bool, ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS_Rewired_IControllerTemplateButton_get_justPressed, (ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS * __this, MethodInfo * method)); @@ -40501,20 +48007,25 @@ DO_APP_FUNC(0x02037DA0, IControllerTemplateButtonSource *, ControllerTemplate_Bj DO_APP_FUNC(0x02037E30, IControllerTemplateElementSource *, ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS_get_source, (ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS * __this, MethodInfo * method)); DO_APP_FUNC(0x003CB690, int32_t, ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS_get_elementCount, (ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS * __this, MethodInfo * method)); DO_APP_FUNC(0x003CB690, IControllerTemplateElement *, ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS_GetElement, (ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x02037EC0, int32_t, ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS_GetElementTargets, (ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS * __this, ControllerElementTarget find, IList_1_Rewired_ControllerTemplateElementTarget_ * list, MethodInfo * method)); +DO_APP_FUNC(0x02037EC0, int32_t, ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS_GetElementTargets, (ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS * __this, ControllerElementTarget find, IList_1_Rewired_ControllerTemplateElementTarget_ * * list, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDB60, ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS_GetElementTargets__MethodInfo); DO_APP_FUNC(0x02038350, IControllerTemplateAxis *, ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS_get_AsAxis, (ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS * __this, MethodInfo * method)); DO_APP_FUNC(0x020383E0, IControllerTemplateButton *, ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS_get_AsButton, (ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS * __this, MethodInfo * method)); DO_APP_FUNC(0x02038470, bool, ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS_nhkCdWAEkRwCKZyiCthfBDorEglh, (ControllerElementTarget param_00009d48, IControllerElementTarget * param_00009d49, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDB40, ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS_nhkCdWAEkRwCKZyiCthfBDorEglh__MethodInfo); DO_APP_FUNC(0x02038570, void, ControllerTemplate_csTIWrUXyfGgoqNJIIGeVAagTJdD__ctor, (ControllerTemplate_csTIWrUXyfGgoqNJIIGeVAagTJdD * __this, IControllerTemplate * param_00009d4a, int32_t param_00009d4b, String * param_00009d4c, String * param_00009d4d, String * param_00009d4e, tAekPsTTZodxujISbkMNBntFDmVT * param_00009d4f, IList_1_Rewired_ControllerTemplate_kvOnxGBUMwSXiAWzvbgaylKBYqUs_ * param_00009d50, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDBF8, ControllerTemplate_csTIWrUXyfGgoqNJIIGeVAagTJdD__ctor__MethodInfo); DO_APP_FUNC(0x02038690, ControllerTemplate_csTIWrUXyfGgoqNJIIGeVAagTJdD *, ControllerTemplate_csTIWrUXyfGgoqNJIIGeVAagTJdD_XwyzCMHXHtSNPjCpwiEciTSxvatt, (IControllerTemplate * param_00009d51, MethodInfo * method)); DO_APP_FUNC(0x02038790, void, ControllerTemplate_VprbNFJpetAhhvdTDWAwqKAtHwat__ctor, (ControllerTemplate_VprbNFJpetAhhvdTDWAwqKAtHwat * __this, IControllerTemplate * param_00009d52, int32_t param_00009d53, String * param_00009d54, String * param_00009d55, String * param_00009d56, tAekPsTTZodxujISbkMNBntFDmVT * param_00009d57, IList_1_Rewired_ControllerTemplate_kvOnxGBUMwSXiAWzvbgaylKBYqUs_ * param_00009d58, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDBD8, ControllerTemplate_VprbNFJpetAhhvdTDWAwqKAtHwat__ctor__MethodInfo); DO_APP_FUNC(0x020388C0, ControllerTemplate_VprbNFJpetAhhvdTDWAwqKAtHwat *, ControllerTemplate_VprbNFJpetAhhvdTDWAwqKAtHwat_XwyzCMHXHtSNPjCpwiEciTSxvatt, (IControllerTemplate * param_00009d59, MethodInfo * method)); DO_APP_FUNC(0x020389C0, void, ControllerTemplate_fwjgjCbzdISWwdXTDhMxAPSlqGkm__ctor, (ControllerTemplate_fwjgjCbzdISWwdXTDhMxAPSlqGkm * __this, IControllerTemplate * param_00009d5a, int32_t param_00009d5b, String * param_00009d5c, ControllerTemplateElementType__Enum param_00009d5d, ControllerTemplate_LqGoLqohdgcNcwPSNdVMdAIXzmDeA__Array * param_00009d5e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDBA8, ControllerTemplate_fwjgjCbzdISWwdXTDhMxAPSlqGkm__ctor__MethodInfo); DO_APP_FUNC(0x02038B40, bool, ControllerTemplate_fwjgjCbzdISWwdXTDhMxAPSlqGkm_mvQvvKgJFbOEnKODiISzhnaGQcFRA, (ControllerTemplate_fwjgjCbzdISWwdXTDhMxAPSlqGkm * __this, MethodInfo * method)); DO_APP_FUNC(0x02038C30, IControllerTemplateElementSource *, ControllerTemplate_fwjgjCbzdISWwdXTDhMxAPSlqGkm_sQARNbuHNGgIeGFLlNtQDsIENlgXA, (ControllerTemplate_fwjgjCbzdISWwdXTDhMxAPSlqGkm * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7300, int32_t, ControllerTemplate_fwjgjCbzdISWwdXTDhMxAPSlqGkm_vSyUaKflVqmZsYMBRiIpQevuyQIh, (ControllerTemplate_fwjgjCbzdISWwdXTDhMxAPSlqGkm * __this, MethodInfo * method)); DO_APP_FUNC(0x02038CB0, IControllerTemplateElement *, ControllerTemplate_fwjgjCbzdISWwdXTDhMxAPSlqGkm_FKqoMXwksyYwglCiMZjznCnUOvvD, (ControllerTemplate_fwjgjCbzdISWwdXTDhMxAPSlqGkm * __this, int32_t param_00009d5f, MethodInfo * method)); -DO_APP_FUNC(0x02038CE0, int32_t, ControllerTemplate_fwjgjCbzdISWwdXTDhMxAPSlqGkm_PLyWhQsjPyFeZdXtwtNPQfJAjcct, (ControllerTemplate_fwjgjCbzdISWwdXTDhMxAPSlqGkm * __this, ControllerElementTarget param_00009d60, IList_1_Rewired_ControllerTemplateElementTarget_ * param_00009d61, MethodInfo * method)); +DO_APP_FUNC(0x02038CE0, int32_t, ControllerTemplate_fwjgjCbzdISWwdXTDhMxAPSlqGkm_PLyWhQsjPyFeZdXtwtNPQfJAjcct, (ControllerTemplate_fwjgjCbzdISWwdXTDhMxAPSlqGkm * __this, ControllerElementTarget param_00009d60, IList_1_Rewired_ControllerTemplateElementTarget_ * * param_00009d61, MethodInfo * method)); DO_APP_FUNC(0x02038DA0, void, ControllerTemplate_TLUiXsobLxTVTJRrjcplykESFfCeA__ctor, (ControllerTemplate_TLUiXsobLxTVTJRrjcplykESFfCeA * __this, IControllerTemplate * param_00009d62, int32_t param_00009d63, String * param_00009d64, ControllerTemplateElementType__Enum param_00009d65, ControllerTemplate_LqGoLqohdgcNcwPSNdVMdAIXzmDeA__Array * param_00009d66, MethodInfo * method)); DO_APP_FUNC(0x02038DB0, Vector2, ControllerTemplate_TLUiXsobLxTVTJRrjcplykESFfCeA_get_value, (ControllerTemplate_TLUiXsobLxTVTJRrjcplykESFfCeA * __this, MethodInfo * method)); DO_APP_FUNC(0x02038FA0, Vector2, ControllerTemplate_TLUiXsobLxTVTJRrjcplykESFfCeA_get_valuePrev, (ControllerTemplate_TLUiXsobLxTVTJRrjcplykESFfCeA * __this, MethodInfo * method)); @@ -40538,12 +48049,15 @@ DO_APP_FUNC(0x0203A870, IControllerTemplateAxis *, ControllerTemplate_fDynDVvjzn DO_APP_FUNC(0x0203A960, IControllerTemplateAxis *, ControllerTemplate_fDynDVvjznBWabqsQsFxkQzjMZpV_get_rotationY, (ControllerTemplate_fDynDVvjznBWabqsQsFxkQzjMZpV * __this, MethodInfo * method)); DO_APP_FUNC(0x0203AA50, IControllerTemplateAxis *, ControllerTemplate_fDynDVvjznBWabqsQsFxkQzjMZpV_get_rotationZ, (ControllerTemplate_fDynDVvjznBWabqsQsFxkQzjMZpV * __this, MethodInfo * method)); DO_APP_FUNC(0x0203AB40, void, ControllerTemplate_hZysWHpWWPJwqEXJmcOhPIYaomTc__ctor, (ControllerTemplate_hZysWHpWWPJwqEXJmcOhPIYaomTc * __this, IControllerTemplate * param_00009d71, int32_t param_00009d72, String * param_00009d73, ControllerTemplate_LqGoLqohdgcNcwPSNdVMdAIXzmDeA__Array * param_00009d74, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD9F0, ControllerTemplate_hZysWHpWWPJwqEXJmcOhPIYaomTc__ctor__MethodInfo); DO_APP_FUNC(0x0203AC10, void, ControllerTemplate_hZysWHpWWPJwqEXJmcOhPIYaomTc__ctor_1, (ControllerTemplate_hZysWHpWWPJwqEXJmcOhPIYaomTc * __this, IControllerTemplate * param_00009d75, int32_t param_00009d76, String * param_00009d77, ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS * param_00009d78, ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS * param_00009d79, ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS * param_00009d7a, MethodInfo * method)); DO_APP_FUNC(0x0203AE00, IControllerTemplateAxis *, ControllerTemplate_hZysWHpWWPJwqEXJmcOhPIYaomTc_get_rotation, (ControllerTemplate_hZysWHpWWPJwqEXJmcOhPIYaomTc * __this, MethodInfo * method)); DO_APP_FUNC(0x0203AEF0, void, ControllerTemplate_keNtRjPezcVjAtqoTuZcGIbdFhXp__ctor, (ControllerTemplate_keNtRjPezcVjAtqoTuZcGIbdFhXp * __this, IControllerTemplate * param_00009d7b, int32_t param_00009d7c, String * param_00009d7d, ControllerTemplate_LqGoLqohdgcNcwPSNdVMdAIXzmDeA__Array * param_00009d7e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDAA0, ControllerTemplate_keNtRjPezcVjAtqoTuZcGIbdFhXp__ctor__MethodInfo); DO_APP_FUNC(0x0203AFC0, void, ControllerTemplate_keNtRjPezcVjAtqoTuZcGIbdFhXp__ctor_1, (ControllerTemplate_keNtRjPezcVjAtqoTuZcGIbdFhXp * __this, IControllerTemplate * param_00009d7f, int32_t param_00009d80, String * param_00009d81, ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS * param_00009d82, ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS * param_00009d83, ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS * param_00009d84, MethodInfo * method)); DO_APP_FUNC(0x0203B1B0, IControllerTemplateButton *, ControllerTemplate_keNtRjPezcVjAtqoTuZcGIbdFhXp_get_press, (ControllerTemplate_keNtRjPezcVjAtqoTuZcGIbdFhXp * __this, MethodInfo * method)); DO_APP_FUNC(0x0203B2A0, void, ControllerTemplate_MywGTeyeQfMqjzMNzumxRZbKtTBo__ctor, (ControllerTemplate_MywGTeyeQfMqjzMNzumxRZbKtTBo * __this, IControllerTemplate * param_00009d85, int32_t param_00009d86, String * param_00009d87, ControllerTemplate_LqGoLqohdgcNcwPSNdVMdAIXzmDeA__Array * param_00009d88, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDA98, ControllerTemplate_MywGTeyeQfMqjzMNzumxRZbKtTBo__ctor__MethodInfo); DO_APP_FUNC(0x0203B370, void, ControllerTemplate_MywGTeyeQfMqjzMNzumxRZbKtTBo__ctor_1, (ControllerTemplate_MywGTeyeQfMqjzMNzumxRZbKtTBo * __this, IControllerTemplate * param_00009d89, int32_t param_00009d8a, String * param_00009d8b, ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS * param_00009d8c, ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS * param_00009d8d, ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS * param_00009d8e, ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS * param_00009d8f, ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS * param_00009d90, MethodInfo * method)); DO_APP_FUNC(0x0203B5F0, Vector2, ControllerTemplate_MywGTeyeQfMqjzMNzumxRZbKtTBo_get_value, (ControllerTemplate_MywGTeyeQfMqjzMNzumxRZbKtTBo * __this, MethodInfo * method)); DO_APP_FUNC(0x0203B910, Vector2, ControllerTemplate_MywGTeyeQfMqjzMNzumxRZbKtTBo_get_valuePrev, (ControllerTemplate_MywGTeyeQfMqjzMNzumxRZbKtTBo * __this, MethodInfo * method)); @@ -40553,12 +48067,14 @@ DO_APP_FUNC(0x0203BE10, IControllerTemplateButton *, ControllerTemplate_MywGTeye DO_APP_FUNC(0x0203BF00, IControllerTemplateButton *, ControllerTemplate_MywGTeyeQfMqjzMNzumxRZbKtTBo_get_left, (ControllerTemplate_MywGTeyeQfMqjzMNzumxRZbKtTBo * __this, MethodInfo * method)); DO_APP_FUNC(0x0203BFF0, IControllerTemplateButton *, ControllerTemplate_MywGTeyeQfMqjzMNzumxRZbKtTBo_get_press, (ControllerTemplate_MywGTeyeQfMqjzMNzumxRZbKtTBo * __this, MethodInfo * method)); DO_APP_FUNC(0x0203C0E0, void, ControllerTemplate_NWfSIRjqjwVEJxjZcKyhGmCCerOA__ctor, (ControllerTemplate_NWfSIRjqjwVEJxjZcKyhGmCCerOA * __this, IControllerTemplate * param_00009d91, int32_t param_00009d92, String * param_00009d93, ControllerTemplate_LqGoLqohdgcNcwPSNdVMdAIXzmDeA__Array * param_00009d94, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD930, ControllerTemplate_NWfSIRjqjwVEJxjZcKyhGmCCerOA__ctor__MethodInfo); DO_APP_FUNC(0x0203C1B0, void, ControllerTemplate_NWfSIRjqjwVEJxjZcKyhGmCCerOA__ctor_1, (ControllerTemplate_NWfSIRjqjwVEJxjZcKyhGmCCerOA * __this, IControllerTemplate * param_00009d95, int32_t param_00009d96, String * param_00009d97, ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS * param_00009d98, ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS * param_00009d99, MethodInfo * method)); DO_APP_FUNC(0x0203C360, float, ControllerTemplate_NWfSIRjqjwVEJxjZcKyhGmCCerOA_get_value, (ControllerTemplate_NWfSIRjqjwVEJxjZcKyhGmCCerOA * __this, MethodInfo * method)); DO_APP_FUNC(0x0203C460, float, ControllerTemplate_NWfSIRjqjwVEJxjZcKyhGmCCerOA_get_valuePrev, (ControllerTemplate_NWfSIRjqjwVEJxjZcKyhGmCCerOA * __this, MethodInfo * method)); DO_APP_FUNC(0x0203C560, IControllerTemplateAxis *, ControllerTemplate_NWfSIRjqjwVEJxjZcKyhGmCCerOA_get_throttle, (ControllerTemplate_NWfSIRjqjwVEJxjZcKyhGmCCerOA * __this, MethodInfo * method)); DO_APP_FUNC(0x0203C650, IControllerTemplateButton *, ControllerTemplate_NWfSIRjqjwVEJxjZcKyhGmCCerOA_get_minDetent, (ControllerTemplate_NWfSIRjqjwVEJxjZcKyhGmCCerOA * __this, MethodInfo * method)); DO_APP_FUNC(0x0203C740, void, ControllerTemplate_azkWVQKcgJkWZwHDKLnVikmNgIJX__ctor, (ControllerTemplate_azkWVQKcgJkWZwHDKLnVikmNgIJX * __this, IControllerTemplate * param_00009d9a, int32_t param_00009d9b, String * param_00009d9c, ControllerTemplate_LqGoLqohdgcNcwPSNdVMdAIXzmDeA__Array * param_00009d9d, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD9A0, ControllerTemplate_azkWVQKcgJkWZwHDKLnVikmNgIJX__ctor__MethodInfo); DO_APP_FUNC(0x0203C810, void, ControllerTemplate_azkWVQKcgJkWZwHDKLnVikmNgIJX__ctor_1, (ControllerTemplate_azkWVQKcgJkWZwHDKLnVikmNgIJX * __this, IControllerTemplate * param_00009d9e, int32_t param_00009d9f, String * param_00009da0, ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS * param_00009da1, ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS * param_00009da2, ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS * param_00009da3, ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS * param_00009da4, ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS * param_00009da5, ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS * param_00009da6, ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS * param_00009da7, ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS * param_00009da8, MethodInfo * method)); DO_APP_FUNC(0x0203CB60, Vector2, ControllerTemplate_azkWVQKcgJkWZwHDKLnVikmNgIJX_get_value, (ControllerTemplate_azkWVQKcgJkWZwHDKLnVikmNgIJX * __this, MethodInfo * method)); DO_APP_FUNC(0x0203D070, Vector2, ControllerTemplate_azkWVQKcgJkWZwHDKLnVikmNgIJX_get_valuePrev, (ControllerTemplate_azkWVQKcgJkWZwHDKLnVikmNgIJX * __this, MethodInfo * method)); @@ -40585,8 +48101,11 @@ DO_APP_FUNC(0x0203E730, float, ControllerTemplate_kvOnxGBUMwSXiAWzvbgaylKBYqUs_v DO_APP_FUNC(0x0203E880, float, ControllerTemplate_kvOnxGBUMwSXiAWzvbgaylKBYqUs_XATFDBcaUoIaWBORCKSmbsNDOfTaB, (ControllerTemplate_kvOnxGBUMwSXiAWzvbgaylKBYqUs * __this, MethodInfo * method)); DO_APP_FUNC(0x0203E9D0, ControllerTemplate_kvOnxGBUMwSXiAWzvbgaylKBYqUs *, ControllerTemplate_kvOnxGBUMwSXiAWzvbgaylKBYqUs_XwyzCMHXHtSNPjCpwiEciTSxvatt, (MethodInfo * method)); DO_APP_FUNC(0x0203EA40, void, ControllerTemplate_SZMjASumErbiSjGUvdCcemyAxmWCc__ctor, (ControllerTemplate_SZMjASumErbiSjGUvdCcemyAxmWCc * __this, Controller * param_00009dc1, IHardwareControllerTemplateMap_Internal * param_00009dc2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD8B0, ControllerTemplate_SZMjASumErbiSjGUvdCcemyAxmWCc__ctor__MethodInfo); DO_APP_FUNC(0x0203EBC0, void, ControllerTemplateActionElementMap__ctor, (ControllerTemplateActionElementMap * __this, ControllerTemplateElementType__Enum param_00009dc3, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD740, ControllerTemplateActionElementMap__ctor__MethodInfo); DO_APP_FUNC(0x0203ECC0, void, ControllerTemplateActionElementMap__ctor_1, (ControllerTemplateActionElementMap * __this, ControllerTemplateElementType__Enum param_00009dc4, int32_t param_00009dc5, ActionElementMap * param_00009dc6, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD750, ControllerTemplateActionElementMap__ctor_1__MethodInfo); DO_APP_FUNC(0x0203ED60, void, ControllerTemplateActionElementMap__ctor_2, (ControllerTemplateActionElementMap * __this, ControllerTemplateElementType__Enum param_00009dc7, int32_t param_00009dc8, int32_t param_00009dc9, bool param_00009dca, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ControllerTemplateActionElementMap__ctor_3, (ControllerTemplateActionElementMap * __this, ActionElementMap * param_00009dcb, MethodInfo * method)); DO_APP_FUNC(0x003BCD50, int32_t, ControllerTemplateActionElementMap_get_id, (ControllerTemplateActionElementMap * __this, MethodInfo * method)); @@ -40598,15 +48117,21 @@ DO_APP_FUNC(0x006D8870, void, ControllerTemplateActionElementMap_set_actionId, ( DO_APP_FUNC(0x003CC980, int32_t, ControllerTemplateActionElementMap_get_elementIdentifierId, (ControllerTemplateActionElementMap * __this, MethodInfo * method)); DO_APP_FUNC(0x003CC990, void, ControllerTemplateActionElementMap_set_elementIdentifierId, (ControllerTemplateActionElementMap * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x0203EDA0, int32_t, ControllerTemplateActionElementMap_lSnmPVjPOwKQfjMvlMlihiAWnmIC, (ControllerTemplateActionElementMap * __this, IControllerTemplate * param_00009dcf, List_1_Rewired_ActionElementMap_ * param_00009dd0, bool param_00009dd1, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD730, ControllerTemplateActionElementMap_lSnmPVjPOwKQfjMvlMlihiAWnmIC__MethodInfo); DO_APP_FUNC(0x0203F070, SerializedObject *, ControllerTemplateActionElementMap_rAUhjfejRrIJfxDUKBLGIOUYDmiiA, (ControllerTemplateActionElementMap * __this, MethodInfo * method)); DO_APP_FUNC(0x0203F110, void, ControllerTemplateActionElementMap_rAUhjfejRrIJfxDUKBLGIOUYDmiiA_1, (ControllerTemplateActionElementMap * __this, SerializedObject * param_00009dd2, MethodInfo * method)); DO_APP_FUNC(0x0203F220, void, ControllerTemplateActionElementMap_WNbVEfxCrMFzNsCNGLLeSCQGYXQB, (ControllerTemplateActionElementMap * __this, SerializedObject * param_00009dd3, MethodInfo * method)); DO_APP_FUNC(0x0203F390, void, ControllerTemplateActionElementMap_sjgQXMMRIHmhSmDrVpgFKxoFoOIy, (ControllerTemplateActionElementMap * __this, MethodInfo * method)); DO_APP_FUNC(0x0203F3A0, int32_t, ControllerTemplateActionElementMap_eCadsocLEXWAMUcBEpVjADyFcznCB, (ControllerTemplateActionElementMap * __this, IControllerTemplate * param_00009dd7, List_1_Rewired_ActionElementMap_ * param_00009dd8, bool param_00009dd9, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD798, ControllerTemplateActionElementMap_eCadsocLEXWAMUcBEpVjADyFcznCB__MethodInfo); DO_APP_FUNC(0x0203F510, ControllerTemplateActionElementMap *, ControllerTemplateActionElementMap_FZPmmsnDnbvylVLEXMIlDLCjajwN, (SerializedObject * param_00009dda, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD688, ControllerTemplateActionElementMap_FZPmmsnDnbvylVLEXMIlDLCjajwN__MethodInfo); DO_APP_FUNC(0x0203F7C0, ControllerTemplateActionElementMap *, ControllerTemplateActionElementMap_FZPmmsnDnbvylVLEXMIlDLCjajwN_1, (ControllerTemplateElementTarget param_00009ddb, ActionElementMap * param_00009ddc, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD660, ControllerTemplateActionElementMap_FZPmmsnDnbvylVLEXMIlDLCjajwN_1__MethodInfo); DO_APP_FUNC(0x0203FAA0, ControllerTemplateActionElementMap *, ControllerTemplateActionElementMap_FZPmmsnDnbvylVLEXMIlDLCjajwN_2, (ActionElementMap * param_00009ddd, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD638, ControllerTemplateActionElementMap_FZPmmsnDnbvylVLEXMIlDLCjajwN_2__MethodInfo); DO_APP_FUNC(0x0203FCA0, void, ControllerTemplateActionButtonMap__ctor, (ControllerTemplateActionButtonMap * __this, SerializedObject * param_00009dde, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD658, ControllerTemplateActionButtonMap__ctor__MethodInfo); DO_APP_FUNC(0x0203FD70, void, ControllerTemplateActionButtonMap__ctor_1, (ControllerTemplateActionButtonMap * __this, int32_t param_00009ddf, ActionElementMap * param_00009de0, MethodInfo * method)); DO_APP_FUNC(0x0203FE50, void, ControllerTemplateActionButtonMap__ctor_2, (ControllerTemplateActionButtonMap * __this, int32_t param_00009de1, int32_t param_00009de2, Pole__Enum param_00009de3, bool param_00009de4, MethodInfo * method)); DO_APP_FUNC(0x00421680, Pole__Enum, ControllerTemplateActionButtonMap_get_axisContribution, (ControllerTemplateActionButtonMap * __this, MethodInfo * method)); @@ -40616,6 +48141,7 @@ DO_APP_FUNC(0x0203FFF0, void, ControllerTemplateActionButtonMap_sjgQXMMRIHmhSmDr DO_APP_FUNC(0x02040000, int32_t, ControllerTemplateActionButtonMap_AAvxGGozhAaVDFQoOEEvHpYSHwRx, (ControllerTemplateActionButtonMap * __this, IControllerTemplateElementSource * param_00009de7, List_1_Rewired_ActionElementMap_ * param_00009de8, bool param_00009de9, MethodInfo * method)); DO_APP_FUNC(0x020401A0, ActionElementMap *, ControllerTemplateActionButtonMap_VMjEFoaSePQNuGXlezMNAzxWVPUTB, (ControllerTemplateActionButtonMap * __this, IControllerElementTarget * param_00009dea, Pole__Enum param_00009deb, MethodInfo * method)); DO_APP_FUNC(0x020402C0, void, ControllerTemplateActionAxisMap__ctor, (ControllerTemplateActionAxisMap * __this, SerializedObject * param_00009dec, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD6D8, ControllerTemplateActionAxisMap__ctor__MethodInfo); DO_APP_FUNC(0x02040390, void, ControllerTemplateActionAxisMap__ctor_1, (ControllerTemplateActionAxisMap * __this, int32_t param_00009ded, AxisRange__Enum param_00009dee, ActionElementMap * param_00009def, MethodInfo * method)); DO_APP_FUNC(0x02040480, void, ControllerTemplateActionAxisMap__ctor_2, (ControllerTemplateActionAxisMap * __this, int32_t param_00009df0, int32_t param_00009df1, AxisRange__Enum param_00009df2, Pole__Enum param_00009df3, bool param_00009df4, bool param_00009df5, MethodInfo * method)); DO_APP_FUNC(0x00421680, AxisRange__Enum, ControllerTemplateActionAxisMap_get_axisRange, (ControllerTemplateActionAxisMap * __this, MethodInfo * method)); @@ -40628,6 +48154,7 @@ DO_APP_FUNC(0x02040750, int32_t, ControllerTemplateActionAxisMap_AAvxGGozhAaVDFQ DO_APP_FUNC(0x02040960, ActionElementMap *, ControllerTemplateActionAxisMap_zPVZZdaHOTPiHbihitWbBRqCsyZh, (ControllerTemplateActionAxisMap * __this, IControllerElementTarget * param_00009dfb, AxisRange__Enum param_00009dfc, Pole__Enum param_00009dfd, MethodInfo * method)); DO_APP_FUNC(0x02040AB0, ActionElementMap *, ControllerTemplateActionAxisMap_AwrgJmcIYEkXYCKyfGYEDEKihAiYC, (ControllerTemplateActionAxisMap * __this, IControllerElementTarget * param_00009dfe, Pole__Enum param_00009dff, Pole__Enum param_00009e00, MethodInfo * method)); DO_APP_FUNC(0x02040BD0, void, tAekPsTTZodxujISbkMNBntFDmVT__ctor, (tAekPsTTZodxujISbkMNBntFDmVT * __this, ControllerTemplateElementType__Enum param_00009e01, bool param_00009e02, IControllerElementTarget * param_00009e03, IControllerElementTarget * param_00009e04, IControllerElementTarget * param_00009e05, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD580, tAekPsTTZodxujISbkMNBntFDmVT__ctor__MethodInfo); DO_APP_FUNC(0x02040D20, ControllerTemplateElementSourceType__Enum, tAekPsTTZodxujISbkMNBntFDmVT_Rewired_IControllerTemplateElementSource_get_type, (tAekPsTTZodxujISbkMNBntFDmVT * __this, MethodInfo * method)); DO_APP_FUNC(0x003CD410, bool, tAekPsTTZodxujISbkMNBntFDmVT_Rewired_IControllerTemplateAxisSource_get_splitAxis, (tAekPsTTZodxujISbkMNBntFDmVT * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, IControllerElementTarget *, tAekPsTTZodxujISbkMNBntFDmVT_Rewired_IControllerTemplateAxisSource_get_fullTarget, (tAekPsTTZodxujISbkMNBntFDmVT * __this, MethodInfo * method)); @@ -40635,28 +48162,31 @@ DO_APP_FUNC(0x003BB3E0, IControllerElementTarget *, tAekPsTTZodxujISbkMNBntFDmVT DO_APP_FUNC(0x003BB3B0, IControllerElementTarget *, tAekPsTTZodxujISbkMNBntFDmVT_Rewired_IControllerTemplateAxisSource_get_negativeTarget, (tAekPsTTZodxujISbkMNBntFDmVT * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, IControllerElementTarget *, tAekPsTTZodxujISbkMNBntFDmVT_Rewired_IControllerTemplateButtonSource_get_target, (tAekPsTTZodxujISbkMNBntFDmVT * __this, MethodInfo * method)); DO_APP_FUNC(0x02040D40, tAekPsTTZodxujISbkMNBntFDmVT *, tAekPsTTZodxujISbkMNBntFDmVT_XwyzCMHXHtSNPjCpwiEciTSxvatt, (ControllerTemplateElementType__Enum param_00009e06, MethodInfo * method)); -DO_APP_FUNC(0x02040F00, void, ControllerTemplateElementTarget__ctor, (ControllerTemplateElementTarget__Boxed * __this, IControllerTemplateElement * param_00009e07, AxisRange__Enum param_00009e08, MethodInfo * method)); -DO_APP_FUNC(0x02040FC0, void, ControllerTemplateElementTarget__ctor_1, (ControllerTemplateElementTarget__Boxed * __this, ControllerTemplateElementTarget param_00009e09, MethodInfo * method)); -DO_APP_FUNC(0x00471920, AxisRange__Enum, ControllerTemplateElementTarget_get_axisRange, (ControllerTemplateElementTarget__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018C6CC0, void, ControllerTemplateElementTarget_set_axisRange, (ControllerTemplateElementTarget__Boxed * __this, AxisRange__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x02041030, ControllerTemplateElementType__Enum, ControllerTemplateElementTarget_get_elementType, (ControllerTemplateElementTarget__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02041090, String *, ControllerTemplateElementTarget_get_descriptiveName, (ControllerTemplateElementTarget__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, IControllerTemplateElement *, ControllerTemplateElementTarget_get_element, (ControllerTemplateElementTarget__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, ControllerTemplateElementTarget_set_element, (ControllerTemplateElementTarget__Boxed * __this, IControllerTemplateElement * value, MethodInfo * method)); -DO_APP_FUNC(0x02041240, IControllerTemplate *, ControllerTemplateElementTarget_get_template, (ControllerTemplateElementTarget__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C0DCF0, bool, ControllerTemplateElementTarget_get_hasTarget, (ControllerTemplateElementTarget__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x020412C0, void, ControllerElementTarget__ctor, (ControllerElementTarget__Boxed * __this, ActionElementMap * param_00009e0c, MethodInfo * method)); -DO_APP_FUNC(0x02040FC0, void, ControllerElementTarget__ctor_1, (ControllerElementTarget__Boxed * __this, ControllerElementTarget param_00009e0d, MethodInfo * method)); -DO_APP_FUNC(0x020414D0, void, ControllerElementTarget__ctor_2, (ControllerElementTarget__Boxed * __this, IControllerElementTarget * param_00009e0e, MethodInfo * method)); -DO_APP_FUNC(0x020415D0, int32_t, ControllerElementTarget_get_elementIdentifierId, (ControllerElementTarget__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471920, AxisRange__Enum, ControllerElementTarget_get_axisRange, (ControllerElementTarget__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018C6CC0, void, ControllerElementTarget_set_axisRange, (ControllerElementTarget__Boxed * __this, AxisRange__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x01C0DCF0, bool, ControllerElementTarget_get_hasTarget, (ControllerElementTarget__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x020415F0, ControllerElementType__Enum, ControllerElementTarget_get_elementType, (ControllerElementTarget__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02041600, String *, ControllerElementTarget_get_descriptiveName, (ControllerElementTarget__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02041680, Controller *, ControllerElementTarget_get_controller, (ControllerElementTarget__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, Controller_Element *, ControllerElementTarget_get_element, (ControllerElementTarget__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, ControllerElementTarget_set_element, (ControllerElementTarget__Boxed * __this, Controller_Element * value, MethodInfo * method)); +DO_APP_FUNC(0x02040F00, void, ControllerTemplateElementTarget__ctor, (ControllerTemplateElementTarget * __this, IControllerTemplateElement * param_00009e07, AxisRange__Enum param_00009e08, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD570, ControllerTemplateElementTarget__ctor__MethodInfo); +DO_APP_FUNC(0x02040FC0, void, ControllerTemplateElementTarget__ctor_1, (ControllerTemplateElementTarget * __this, ControllerTemplateElementTarget param_00009e09, MethodInfo * method)); +DO_APP_FUNC(0x00471920, AxisRange__Enum, ControllerTemplateElementTarget_get_axisRange, (ControllerTemplateElementTarget * __this, MethodInfo * method)); +DO_APP_FUNC(0x018C6CC0, void, ControllerTemplateElementTarget_set_axisRange, (ControllerTemplateElementTarget * __this, AxisRange__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x02041030, ControllerTemplateElementType__Enum, ControllerTemplateElementTarget_get_elementType, (ControllerTemplateElementTarget * __this, MethodInfo * method)); +DO_APP_FUNC(0x02041090, String *, ControllerTemplateElementTarget_get_descriptiveName, (ControllerTemplateElementTarget * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, IControllerTemplateElement *, ControllerTemplateElementTarget_get_element, (ControllerTemplateElementTarget * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, ControllerTemplateElementTarget_set_element, (ControllerTemplateElementTarget * __this, IControllerTemplateElement * value, MethodInfo * method)); +DO_APP_FUNC(0x02041240, IControllerTemplate *, ControllerTemplateElementTarget_get_template, (ControllerTemplateElementTarget * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C0DCF0, bool, ControllerTemplateElementTarget_get_hasTarget, (ControllerTemplateElementTarget * __this, MethodInfo * method)); +DO_APP_FUNC(0x020412C0, void, ControllerElementTarget__ctor, (ControllerElementTarget * __this, ActionElementMap * param_00009e0c, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD5D0, ControllerElementTarget__ctor__MethodInfo); +DO_APP_FUNC(0x02040FC0, void, ControllerElementTarget__ctor_1, (ControllerElementTarget * __this, ControllerElementTarget param_00009e0d, MethodInfo * method)); +DO_APP_FUNC(0x020414D0, void, ControllerElementTarget__ctor_2, (ControllerElementTarget * __this, IControllerElementTarget * param_00009e0e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD5C0, ControllerElementTarget__ctor_2__MethodInfo); +DO_APP_FUNC(0x020415D0, int32_t, ControllerElementTarget_get_elementIdentifierId, (ControllerElementTarget * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471920, AxisRange__Enum, ControllerElementTarget_get_axisRange, (ControllerElementTarget * __this, MethodInfo * method)); +DO_APP_FUNC(0x018C6CC0, void, ControllerElementTarget_set_axisRange, (ControllerElementTarget * __this, AxisRange__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x01C0DCF0, bool, ControllerElementTarget_get_hasTarget, (ControllerElementTarget * __this, MethodInfo * method)); +DO_APP_FUNC(0x020415F0, ControllerElementType__Enum, ControllerElementTarget_get_elementType, (ControllerElementTarget * __this, MethodInfo * method)); +DO_APP_FUNC(0x02041600, String *, ControllerElementTarget_get_descriptiveName, (ControllerElementTarget * __this, MethodInfo * method)); +DO_APP_FUNC(0x02041680, Controller *, ControllerElementTarget_get_controller, (ControllerElementTarget * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Controller_Element *, ControllerElementTarget_get_element, (ControllerElementTarget * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, ControllerElementTarget_set_element, (ControllerElementTarget * __this, Controller_Element * value, MethodInfo * method)); DO_APP_FUNC(0x020416A0, ControllerElementTarget, ControllerElementTarget_op_Implicit, (ActionElementMap * actionElementMap, MethodInfo * method)); DO_APP_FUNC(0x01ABCF40, void, OPozBwLHHQdOXXBAjdfoHzmJkpRuA__ctor, (OPozBwLHHQdOXXBAjdfoHzmJkpRuA * __this, Controller * param_00009e12, int32_t param_00009e13, AxisRange__Enum param_00009e14, MethodInfo * method)); DO_APP_FUNC(0x020416E0, void, OPozBwLHHQdOXXBAjdfoHzmJkpRuA_WNbVEfxCrMFzNsCNGLLeSCQGYXQB, (OPozBwLHHQdOXXBAjdfoHzmJkpRuA * __this, ControllerElementTarget param_00009e15, MethodInfo * method)); @@ -40684,6 +48214,7 @@ DO_APP_FUNC(0x02042100, void, OPozBwLHHQdOXXBAjdfoHzmJkpRuA_IEkPCabxTSDlHrotLqbc DO_APP_FUNC(0x02042160, void, OPozBwLHHQdOXXBAjdfoHzmJkpRuA_CdLLULBDvMouDJtduTaboGwUChUK__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, OPozBwLHHQdOXXBAjdfoHzmJkpRuA_CdLLULBDvMouDJtduTaboGwUChUK__ctor, (OPozBwLHHQdOXXBAjdfoHzmJkpRuA_CdLLULBDvMouDJtduTaboGwUChUK * __this, MethodInfo * method)); DO_APP_FUNC(0x02042210, OPozBwLHHQdOXXBAjdfoHzmJkpRuA *, OPozBwLHHQdOXXBAjdfoHzmJkpRuA_CdLLULBDvMouDJtduTaboGwUChUK_EvpADXCINWHBARJQxfRJAaCTgMsv, (OPozBwLHHQdOXXBAjdfoHzmJkpRuA_CdLLULBDvMouDJtduTaboGwUChUK * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD4C8, OPozBwLHHQdOXXBAjdfoHzmJkpRuA_CdLLULBDvMouDJtduTaboGwUChUK_EvpADXCINWHBARJQxfRJAaCTgMsv__MethodInfo); DO_APP_FUNC(0x02042220, void, ControllerTemplateMap__ctor, (ControllerTemplateMap * __this, Guid param_00009e24, MethodInfo * method)); DO_APP_FUNC(0x02042470, void, ControllerTemplateMap__ctor_1, (ControllerTemplateMap * __this, Guid param_00009e25, int32_t param_00009e26, int32_t param_00009e27, int32_t param_00009e28, MethodInfo * method)); DO_APP_FUNC(0x020424C0, int32_t, ControllerTemplateMap_get_id, (ControllerTemplateMap * __this, MethodInfo * method)); @@ -40698,16 +48229,20 @@ DO_APP_FUNC(0x020427D0, IList_1_Rewired_ControllerTemplateActionElementMap_ *, C DO_APP_FUNC(0x02042880, String *, ControllerTemplateMap_ToXmlString, (ControllerTemplateMap * __this, MethodInfo * method)); DO_APP_FUNC(0x02042A30, String *, ControllerTemplateMap_ToJsonString, (ControllerTemplateMap * __this, MethodInfo * method)); DO_APP_FUNC(0x02042BE0, ControllerMap *, ControllerTemplateMap_ToControllerMap, (ControllerTemplateMap * __this, Controller * controller, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD428, ControllerTemplateMap_ToControllerMap__MethodInfo); DO_APP_FUNC(0x02042F90, void, ControllerTemplateMap_UHLgoHamvyOzducEmiGCDFddEAzTb, (ControllerTemplateMap * __this, SerializedObject * param_00009e2d, MethodInfo * method)); DO_APP_FUNC(0x02043C90, void, ControllerTemplateMap_WNbVEfxCrMFzNsCNGLLeSCQGYXQB, (ControllerTemplateMap * __this, SerializedObject * param_00009e2e, MethodInfo * method)); DO_APP_FUNC(0x02044140, void, ControllerTemplateMap_sjgQXMMRIHmhSmDrVpgFKxoFoOIy, (ControllerTemplateMap * __this, MethodInfo * method)); DO_APP_FUNC(0x020441C0, SerializedObject *, ControllerTemplateMap_rAUhjfejRrIJfxDUKBLGIOUYDmiiA, (ControllerTemplateMap * __this, MethodInfo * method)); DO_APP_FUNC(0x02044260, void, ControllerTemplateMap_lcCHvdERwymNOczHjMeiOyzVCHgD, (ControllerTemplateMap * __this, ControllerTemplateActionElementMap * param_00009e2f, MethodInfo * method)); DO_APP_FUNC(0x02044310, ControllerTemplateMap *, ControllerTemplateMap_fjgXDXUoNjFhgBBTqCzLxraFcVMkA, (IControllerTemplate * param_00009e30, ControllerMap * param_00009e31, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD1F8, ControllerTemplateMap_fjgXDXUoNjFhgBBTqCzLxraFcVMkA__MethodInfo); DO_APP_FUNC(0x02044930, ControllerTemplateMap *, ControllerTemplateMap_FromXml, (String * xmlString, MethodInfo * method)); DO_APP_FUNC(0x02044A40, ControllerTemplateMap *, ControllerTemplateMap_FromJson, (String * jsonString, MethodInfo * method)); DO_APP_FUNC(0x02044B50, ControllerTemplateMap *, ControllerTemplateMap_gVNVxQjBiNESjxjhUSxIfjLMsIyR, (SerializedObject * param_00009e34, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD270, ControllerTemplateMap_gVNVxQjBiNESjxjhUSxIfjLMsIyR__MethodInfo); DO_APP_FUNC(0x02044D80, void, PlayerController__ctor, (PlayerController * __this, PlayerController_Definition * param_00009e44, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD1A0, PlayerController__ctor__MethodInfo); DO_APP_FUNC(0x02045880, void, PlayerController_Finalize, (PlayerController * __this, MethodInfo * method)); DO_APP_FUNC(0x02045950, bool, PlayerController_get_enabled, (PlayerController * __this, MethodInfo * method)); DO_APP_FUNC(0x020459E0, void, PlayerController_set_enabled, (PlayerController * __this, bool value, MethodInfo * method)); @@ -40733,6 +48268,7 @@ DO_APP_FUNC(0x02046B80, float, PlayerController_GetAxisRaw, (PlayerController * DO_APP_FUNC(0x02046C70, PlayerController_Element *, PlayerController_GetElement, (PlayerController * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x02046D40, Player *, PlayerController_zblZdhDuHcJLVeIAUNgfcLTcepBAA, (PlayerController * __this, MethodInfo * method)); DO_APP_FUNC(0x02046E30, void, PlayerController_bvuJmnqUwayyDafnxDLSclDQIjuB, (PlayerController * __this, UpdateLoopType__Enum param_00009e54, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD0C8, PlayerController_bvuJmnqUwayyDafnxDLSclDQIjuB__MethodInfo); DO_APP_FUNC(0x02046E70, bool, PlayerController_Update, (PlayerController * __this, UpdateLoopType__Enum updateLoop, MethodInfo * method)); DO_APP_FUNC(0x02047340, void, PlayerController_UpdateFinished, (PlayerController * __this, MethodInfo * method)); DO_APP_FUNC(0x020475A0, void, PlayerController_ClearVars, (PlayerController * __this, MethodInfo * method)); @@ -40784,8 +48320,10 @@ DO_APP_FUNC(0x020490B0, void, PlayerController_CompoundElement__ctor, (PlayerCon DO_APP_FUNC(0x020492A0, int32_t, PlayerController_CompoundElement_vSyUaKflVqmZsYMBRiIpQevuyQIh, (PlayerController_CompoundElement * __this, MethodInfo * method)); DO_APP_FUNC(0x020492F0, void, PlayerController_CompoundElement_QIRJcoqIxAjztpJTfyzaCEzSGONe, (PlayerController_CompoundElement * __this, List_1_Rewired_PlayerController_Element_ * param_00009e7b, MethodInfo * method)); DO_APP_FUNC(0x020494B0, void, PlayerController_CompoundElement_bDWOTslUkzxjjeYHmyeJqqMbJJtF, (PlayerController_CompoundElement * __this, PlayerController_Element * param_00009e7c, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBCE48, PlayerController_CompoundElement_bDWOTslUkzxjjeYHmyeJqqMbJJtF__MethodInfo); DO_APP_FUNC(0x02048660, void, PlayerController_CompoundElement_Definition__ctor, (PlayerController_CompoundElement_Definition * __this, MethodInfo * method)); DO_APP_FUNC(0x02049560, void, PlayerController_Element__ctor, (PlayerController_Element * __this, PlayerController * param_00009e7d, PlayerController_Element_Definition * param_00009e7e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBCE40, PlayerController_Element__ctor__MethodInfo); DO_APP_FUNC(0x020496F0, Player *, PlayerController_Element_get_player, (PlayerController_Element * __this, MethodInfo * method)); DO_APP_FUNC(0x020497D0, bool, PlayerController_Element_get_selfAndParentEnabled, (PlayerController_Element * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCC40, bool, PlayerController_Element_swYLzXHESsCSeBcYABfxRAoIHpwbA, (PlayerController_Element * __this, MethodInfo * method)); @@ -40799,10 +48337,13 @@ DO_APP_FUNC(0x003AE050, void, PlayerController_Element_EnabledStateChanged, (Pla DO_APP_FUNC(0x02049820, bool, PlayerController_Element_IsTypeWithSource, (PlayerController_Element_Type__Enum type, MethodInfo * method)); DO_APP_FUNC(0x02049AA0, bool, PlayerController_Element_IsCompoundType, (PlayerController_Element_Type__Enum type, MethodInfo * method)); DO_APP_FUNC(0x02049D30, int32_t, PlayerController_Element_GetMaxElementCount, (PlayerController_Element_Type__Enum type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBCDF8, PlayerController_Element_GetMaxElementCount__MethodInfo); DO_APP_FUNC(0x02049E00, String *, PlayerController_Element_GetElementTitle, (PlayerController_Element_Type__Enum type, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBCDE0, PlayerController_Element_GetElementTitle__MethodInfo); DO_APP_FUNC(0x02049FE0, PlayerController_Element_Definition *, PlayerController_Element_CreateDefinition, (PlayerController_Element_Type__Enum type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBCE20, PlayerController_Element_CreateDefinition__MethodInfo); DO_APP_FUNC(0x02048660, void, PlayerController_Element_Definition__ctor, (PlayerController_Element_Definition * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BAE2D0, void, PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__ctor, (PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__Boxed * __this, ControllerElementType__Enum param_00009e8a, int32_t param_00009e8b, float param_00009e8c, MethodInfo * method)); +DO_APP_FUNC(0x00BAE2D0, void, PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__ctor, (PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb * __this, ControllerElementType__Enum param_00009e8a, int32_t param_00009e8b, float param_00009e8c, MethodInfo * method)); DO_APP_FUNC(0x02048C70, void, PlayerController_ElementWithSource__ctor, (PlayerController_ElementWithSource * __this, PlayerController * param_00009e8d, PlayerController_ElementWithSource_Definition * param_00009e8e, MethodInfo * method)); DO_APP_FUNC(0x00421680, int32_t, PlayerController_ElementWithSource_get_actionId, (PlayerController_ElementWithSource * __this, MethodInfo * method)); DO_APP_FUNC(0x00421690, void, PlayerController_ElementWithSource_set_actionId, (PlayerController_ElementWithSource * __this, int32_t value, MethodInfo * method)); @@ -40861,9 +48402,12 @@ DO_APP_FUNC(0x0204CF60, bool, PlayerMouse_1_Update, (PlayerMouse_1 * __this, Upd DO_APP_FUNC(0x0204D320, void, PlayerMouse_1_UpdateFinished, (PlayerMouse_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x0204D410, void, PlayerMouse_1_ClearVars, (PlayerMouse_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x0204D4E0, void, PlayerMouse_1_DfBmjxINxyjgMbHCfAHoWShwxrVN, (PlayerMouse_1 * __this, Vector2 param_00009eac, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBCD40, PlayerMouse_1_DfBmjxINxyjgMbHCfAHoWShwxrVN__MethodInfo); DO_APP_FUNC(0x0204D6E0, ScreenRect, PlayerMouse_1_zhatwMfBLkPYDDYleWcmtlknqlRq, (PlayerMouse_1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBCD38, PlayerMouse_1_zhatwMfBLkPYDDYleWcmtlknqlRq__MethodInfo); DO_APP_FUNC(0x0204D940, void, PlayerMouse_1_vZGEGqykMMYMlubrmbQQUfjUaCoJA, (PlayerMouse_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x0204D9F0, float, PlayerMouse_1_KjESmxKHlAbFnEgVDLMriyIvCbqS, (PlayerController_Axis * param_00009ead, float param_00009eae, float param_00009eaf, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBCD30, PlayerMouse_1_KjESmxKHlAbFnEgVDLMriyIvCbqS__MethodInfo); DO_APP_FUNC(0x0204DAC0, bool, PlayerMouse_1_Rewired_UI_IMouseInputSource_get_enabled, (PlayerMouse_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x0204DAD0, bool, PlayerMouse_1_Rewired_UI_IMouseInputSource_GetButtonDown, (PlayerMouse_1 * __this, int32_t button, MethodInfo * method)); DO_APP_FUNC(0x0204DAE0, bool, PlayerMouse_1_Rewired_UI_IMouseInputSource_GetButtonUp, (PlayerMouse_1 * __this, int32_t button, MethodInfo * method)); @@ -40880,7 +48424,9 @@ DO_APP_FUNC(0x0204E940, PlayerMouse_1 *, PlayerMouse_Factory_Create_1, (PlayerMo DO_APP_FUNC(0x0204E9B0, void, PlayerMouse_iHCnGgosCUKhkJyLqSatDEOWlav__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, PlayerMouse_iHCnGgosCUKhkJyLqSatDEOWlav__ctor, (PlayerMouse_iHCnGgosCUKhkJyLqSatDEOWlav * __this, MethodInfo * method)); DO_APP_FUNC(0x0204EA60, bool, PlayerMouse_iHCnGgosCUKhkJyLqSatDEOWlav_FrtpjBxQBqNnzYJdBChiFRpgVqle, (PlayerMouse_iHCnGgosCUKhkJyLqSatDEOWlav * __this, PlayerController_Axis * param_00009eb6, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBCD98, PlayerMouse_iHCnGgosCUKhkJyLqSatDEOWlav_FrtpjBxQBqNnzYJdBChiFRpgVqle__MethodInfo); DO_APP_FUNC(0x0204EB10, bool, PlayerMouse_iHCnGgosCUKhkJyLqSatDEOWlav_hVycHGcMZZmMZCYIavbOmJsZNEqL, (PlayerMouse_iHCnGgosCUKhkJyLqSatDEOWlav * __this, PlayerController_Axis * param_00009eb7, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBCD80, PlayerMouse_iHCnGgosCUKhkJyLqSatDEOWlav_hVycHGcMZZmMZCYIavbOmJsZNEqL__MethodInfo); DO_APP_FUNC(0x0204EBC0, List_1_System_String_ *, Logger_get_screenLog, (MethodInfo * method)); DO_APP_FUNC(0x0204ECC0, LogLevelFlags__Enum, Logger_get_logLevel, (MethodInfo * method)); DO_APP_FUNC(0x0204EDA0, bool, Logger_get_logToScreen, (MethodInfo * method)); @@ -40904,6 +48450,7 @@ DO_APP_FUNC(0x02050730, void, Logger_LogWarningNow, (Object * msg, bool requireT DO_APP_FUNC(0x02050890, void, Logger_LogErrorNow, (Object * msg, bool requireThreadSafety, MethodInfo * method)); DO_APP_FUNC(0x020509F0, void, Logger_LogExceptionNow, (Exception * exception, Object * msg, bool requireThreadSafety, MethodInfo * method)); DO_APP_FUNC(0x02050C80, bool, Logger_IsLoggingAllowed, (LogLevel__Enum logLevel, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBCC80, Logger_IsLoggingAllowed__MethodInfo); DO_APP_FUNC(0x02050D20, void, Logger_LogToScreen, (Object * msg, MethodInfo * method)); DO_APP_FUNC(0x020511E0, void, Logger_LogInit, (Object * o, MethodInfo * method)); DO_APP_FUNC(0x020511F0, void, Logger_LogInitError, (Object * o, MethodInfo * method)); @@ -40939,6 +48486,7 @@ DO_APP_FUNC(0x02051F30, bool, BridgedController_get_isUnknownController, (Bridge DO_APP_FUNC(0x003AE050, void, BridgedController__ctor, (BridgedController * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, vIqliCMhumeoieWDPqygMpDRxkfk__ctor, (vIqliCMhumeoieWDPqygMpDRxkfk * __this, MethodInfo * method)); DO_APP_FUNC(0x02051FC0, void, ControllerDataUpdater__ctor, (ControllerDataUpdater * __this, InputSource__Enum param_00009ef6, int32_t param_00009ef7, int32_t param_00009ef8, UnknownControllerHat__Array * param_00009ef9, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBCCA8, ControllerDataUpdater__ctor__MethodInfo); DO_APP_FUNC(0x02052260, bool, ControllerDataUpdater_IsUnknownHatCardinal, (ControllerDataUpdater * __this, int32_t buttonIndex, MethodInfo * method)); DO_APP_FUNC(0x02052320, UnknownControllerHat_HatButtons *, ControllerDataUpdater_GetUnknownHatButtons, (ControllerDataUpdater * __this, int32_t buttonIndex, MethodInfo * method)); DO_APP_FUNC(0x02052420, void, ControllerDataUpdater_ClearData, (ControllerDataUpdater * __this, MethodInfo * method)); @@ -40970,9 +48518,12 @@ DO_APP_FUNC(0x020537D0, void, InputManager_Base_TryStopRunInEditMode, (InputMana DO_APP_FUNC(0x02053800, bool, InputManager_Base_bgYJOAdrGwBckdcAdrsLXbwGlbCDA, (InputManager_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x02053870, void, InputManager_Base_LIeljCbdoWdgBAecluMnblrpCnHu, (InputManager_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x01A71040, void, InputManager_Base_VjeHdhOgsjNhnRHDVElknIeJAlji, (InputManager_Base * __this, Platform__Enum param_00009f04, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBCB38, InputManager_Base_VjeHdhOgsjNhnRHDVElknIeJAlji__MethodInfo); DO_APP_FUNC(0x02054170, Object *, InputManager_Base_zCWDcEcyRumaCKVclTnVAcKcwPqaA, (InputManager_Base * __this, ConfigVars * param_00009f05, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBCB68, InputManager_Base_zCWDcEcyRumaCKVclTnVAcKcwPqaA__MethodInfo); DO_APP_FUNC(0x02054230, List_1_System_Reflection_Assembly_ *, InputManager_Base_fHRnWKAqvjaSyvddHWTOwANorkiq, (InputManager_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x02054670, List_1_System_Reflection_Assembly_ *, InputManager_Base_IWndVdWErDPrHAhizCcyhFpAYECQ, (InputManager_Base * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBCA18, InputManager_Base_IWndVdWErDPrHAhizCcyhFpAYECQ__MethodInfo); DO_APP_FUNC(0x02054960, Byte__Array *, InputManager_Base_tOERnqISXnluATSTmgvnVIGtegpT, (InputManager_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x02054CA0, void, InputManager_Base_EswDNvcLNSbbUPIviNVNwzBVNDKuA, (InputManager_Base * __this, List_1_UnityEngine_TextAsset_ * param_00009f06, List_1_System_String_ * param_00009f07, MethodInfo * method)); DO_APP_FUNC(0x02054F00, String *, InputManager_Base_cPXhZPmtlrUWPstPPdTUlZGgBWE, (InputManager_Base * __this, MethodInfo * method)); @@ -40985,10 +48536,11 @@ DO_APP_FUNC(0x006B4650, void, InputManager_Base_OnSceneLoaded, (InputManager_Bas DO_APP_FUNC(0x020554D0, void, InputManager_Base_UzXjOSbmclbwyGYZGKqkNhbIQGLJA, (InputManager_Base * __this, InputManager_Base_GdujaQKgvdmbcNJufFVoEJUApOUXB__Enum param_00009f08, String * param_00009f09, Exception * param_00009f0a, MethodInfo * method)); DO_APP_FUNC(0x02055630, void, InputManager_Base_ResetAll, (InputManager_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x02055650, EditorPlatform__Enum, InputManager_Base_GetEditorPlatform, (InputManager_Base * __this, MethodInfo * method)); -DO_APP_FUNC(0x02055690, void, InputManager_Base_GetSupportedEditModeControllerTypes, (InputManager_Base * __this, bool keyboardSupported, bool mouseSupported, bool joystickSupported, MethodInfo * method)); +DO_APP_FUNC(0x02055690, void, InputManager_Base_GetSupportedEditModeControllerTypes, (InputManager_Base * __this, bool * keyboardSupported, bool * mouseSupported, bool * joystickSupported, MethodInfo * method)); DO_APP_FUNC(0x020557E0, bool, InputManager_Base_IsEditModeSupported, (InputManager_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x006B4700, void, InputManager_Base__ctor, (InputManager_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x02055960, bool, InputManager_Base_fBuacbBIqlgigQCZWGTcFmApcvRP, (InputManager_Base * __this, Assembly * param_00009f0e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBCA20, InputManager_Base_fBuacbBIqlgigQCZWGTcFmApcvRP__MethodInfo); DO_APP_FUNC(0x0208BB30, void, aFmJpwxQsLcpqNsVpQUVNGddslvo__ctor, (aFmJpwxQsLcpqNsVpQUVNGddslvo * __this, UpdateLoopSetting__Enum param_00009f0f, Keyboard * param_00009f10, MethodInfo * method)); DO_APP_FUNC(0x0208BF00, void, aFmJpwxQsLcpqNsVpQUVNGddslvo_XUYlHArjcZHIIZmMQVtfQqgGDltj, (aFmJpwxQsLcpqNsVpQUVNGddslvo * __this, UpdateLoopType__Enum param_00009f11, MethodInfo * method)); DO_APP_FUNC(0x0208BFA0, void, aFmJpwxQsLcpqNsVpQUVNGddslvo_jjKCplyjxSKglvtrxUIjdwQDIepW, (aFmJpwxQsLcpqNsVpQUVNGddslvo * __this, KeyboardMap * param_00009f12, MethodInfo * method)); @@ -41007,20 +48559,35 @@ DO_APP_FUNC(0x0206DB90, void, aFmJpwxQsLcpqNsVpQUVNGddslvo_KKctsriiMZhFbEJSCKNPC DO_APP_FUNC(0x003CB690, int32_t, aFmJpwxQsLcpqNsVpQUVNGddslvo_KKctsriiMZhFbEJSCKNPCsivbPjAb_TkYqOpldVGYAcSDtGYaHrNqSSLEE_CompareTo, (aFmJpwxQsLcpqNsVpQUVNGddslvo_KKctsriiMZhFbEJSCKNPCsivbPjAb_TkYqOpldVGYAcSDtGYaHrNqSSLEE * __this, aFmJpwxQsLcpqNsVpQUVNGddslvo_KKctsriiMZhFbEJSCKNPCsivbPjAb_TkYqOpldVGYAcSDtGYaHrNqSSLEE * other, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, aFmJpwxQsLcpqNsVpQUVNGddslvo_KKctsriiMZhFbEJSCKNPCsivbPjAb_TkYqOpldVGYAcSDtGYaHrNqSSLEE__ctor, (aFmJpwxQsLcpqNsVpQUVNGddslvo_KKctsriiMZhFbEJSCKNPCsivbPjAb_TkYqOpldVGYAcSDtGYaHrNqSSLEE * __this, MethodInfo * method)); DO_APP_FUNC(0x0208CA70, ControllerElementType__Enum, qlXPRsOLELaMvIYaABRChqDOoeYd_VOJGUwhDRYqFrUiBAykYBrEcqPoUA, (ElementAssignmentType__Enum param_00009f23, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC4068, qlXPRsOLELaMvIYaABRChqDOoeYd_VOJGUwhDRYqFrUiBAykYBrEcqPoUA__MethodInfo); DO_APP_FUNC(0x0208CAF0, ElementAssignmentType__Enum, qlXPRsOLELaMvIYaABRChqDOoeYd_qDZmgVHYCehSyUdrAeEQeIeOOgKOA, (ControllerType__Enum param_00009f24, ControllerElementType__Enum param_00009f25, AxisRange__Enum param_00009f26, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC4060, qlXPRsOLELaMvIYaABRChqDOoeYd_qDZmgVHYCehSyUdrAeEQeIeOOgKOA__MethodInfo); DO_APP_FUNC(0x0208CB70, AxisRange__Enum, qlXPRsOLELaMvIYaABRChqDOoeYd_elwANQNEnxkHzkpXfaTxaaqBNfEIb, (Pole__Enum param_00009f27, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC4048, qlXPRsOLELaMvIYaABRChqDOoeYd_elwANQNEnxkHzkpXfaTxaaqBNfEIb__MethodInfo); DO_APP_FUNC(0x0208CBE0, Type *, qlXPRsOLELaMvIYaABRChqDOoeYd_XBCjYlBEkvCwnvrQFJdZNRBdbIbcb, (Type * param_00009f28, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC4038, qlXPRsOLELaMvIYaABRChqDOoeYd_XBCjYlBEkvCwnvrQFJdZNRBdbIbcb__MethodInfo); DO_APP_FUNC(0x0208D010, Type *, qlXPRsOLELaMvIYaABRChqDOoeYd_lTnDAuNjupImbmtluDIjyfAQhJHAA, (ControllerType__Enum param_00009f29, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC40B8, qlXPRsOLELaMvIYaABRChqDOoeYd_lTnDAuNjupImbmtluDIjyfAQhJHAA__MethodInfo); DO_APP_FUNC(0x0208D120, Type *, qlXPRsOLELaMvIYaABRChqDOoeYd_cHIkBEWzffDNGUcSnuKEFsgBGiwhA, (ControllerType__Enum param_00009f2a, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC40A8, qlXPRsOLELaMvIYaABRChqDOoeYd_cHIkBEWzffDNGUcSnuKEFsgBGiwhA__MethodInfo); DO_APP_FUNC(0x0208D230, ControllerType__Enum, qlXPRsOLELaMvIYaABRChqDOoeYd_fQAhNNldoShfGKItXqYBOccffulFb, (Type * param_00009f2b, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC40A0, qlXPRsOLELaMvIYaABRChqDOoeYd_fQAhNNldoShfGKItXqYBOccffulFb__MethodInfo); DO_APP_FUNC(0x0208D670, ControllerType__Enum, qlXPRsOLELaMvIYaABRChqDOoeYd_JzkfOWekIiPiQECEzrZBviaNlfPh, (Type * param_00009f2c, MethodInfo * method)); -DO_APP_FUNC(0x0208D720, bool, qlXPRsOLELaMvIYaABRChqDOoeYd_BjtoENHodgmGSnoLUcZiiCgBYiPvA, (Type * param_00009f2d, ControllerType__Enum param_00009f2e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC4098, qlXPRsOLELaMvIYaABRChqDOoeYd_JzkfOWekIiPiQECEzrZBviaNlfPh__MethodInfo); +DO_APP_FUNC(0x0208D720, bool, qlXPRsOLELaMvIYaABRChqDOoeYd_BjtoENHodgmGSnoLUcZiiCgBYiPvA, (Type * param_00009f2d, ControllerType__Enum * param_00009f2e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC4088, qlXPRsOLELaMvIYaABRChqDOoeYd_BjtoENHodgmGSnoLUcZiiCgBYiPvA__MethodInfo); DO_APP_FUNC(0x0208D9F0, ControllerType__Enum, qlXPRsOLELaMvIYaABRChqDOoeYd_LUkoYkYyGZJpIUKiaAwIFuXAqamEb, (Type * param_00009f30, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3FC8, qlXPRsOLELaMvIYaABRChqDOoeYd_LUkoYkYyGZJpIUKiaAwIFuXAqamEb__MethodInfo); DO_APP_FUNC(0x0208DCB0, bool, qlXPRsOLELaMvIYaABRChqDOoeYd_NWhioGIQTHWIJiNJWGzSJyccbFph, (ControllerTemplateElementType__Enum param_00009f31, ControllerElementType__Enum param_00009f32, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3FA0, qlXPRsOLELaMvIYaABRChqDOoeYd_NWhioGIQTHWIJiNJWGzSJyccbFph__MethodInfo); DO_APP_FUNC(0x0208DD30, ControllerElementType__Enum, qlXPRsOLELaMvIYaABRChqDOoeYd_mKSTKPqaLPHoOKyyOsIGJqgCkfwAA, (Object * param_00009f33, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3F80, qlXPRsOLELaMvIYaABRChqDOoeYd_mKSTKPqaLPHoOKyyOsIGJqgCkfwAA__MethodInfo); DO_APP_FUNC(0x0208DF20, ControllerElementType__Enum, qlXPRsOLELaMvIYaABRChqDOoeYd_mKSTKPqaLPHoOKyyOsIGJqgCkfwAA_1, (ControllerTemplateElementType__Enum param_00009f34, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3F78, qlXPRsOLELaMvIYaABRChqDOoeYd_mKSTKPqaLPHoOKyyOsIGJqgCkfwAA_1__MethodInfo); DO_APP_FUNC(0x0208DF90, ControllerTemplateElementSourceType__Enum, qlXPRsOLELaMvIYaABRChqDOoeYd_UXuGyYtxmoWKUxvzeQcoRkllBztE, (ControllerTemplateElementType__Enum param_00009f35, bool param_00009f36, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3F98, qlXPRsOLELaMvIYaABRChqDOoeYd_UXuGyYtxmoWKUxvzeQcoRkllBztE__MethodInfo); DO_APP_FUNC(0x0208E010, ControllerTemplateElementType__Enum, qlXPRsOLELaMvIYaABRChqDOoeYd_AzRNhrVyNRGqcuPRdWTPCNrltduN, (ControllerElementType__Enum param_00009f37, bool param_00009f38, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3F90, qlXPRsOLELaMvIYaABRChqDOoeYd_AzRNhrVyNRGqcuPRdWTPCNrltduN__MethodInfo); DO_APP_FUNC(0x0208E090, void, UnityInputHelper__cctor, (MethodInfo * method)); DO_APP_FUNC(0x0208E2A0, float, UnityInputHelper_GetJoystickAxisValueByJoystickId, (int32_t joystickId, int32_t axisIndex, MethodInfo * method)); DO_APP_FUNC(0x0208E360, float, UnityInputHelper_GetJoystickAxisRawValueByJoystickId, (int32_t joystickId, int32_t axisIndex, MethodInfo * method)); @@ -41055,7 +48622,9 @@ DO_APP_FUNC(0x0208F780, void, UnityUnifiedMouseSource__ctor, (UnityUnifiedMouseS DO_APP_FUNC(0x0208FE50, void, UnityUnifiedMouseSource_UpdateInputData, (UnityUnifiedMouseSource * __this, ControllerDataUpdater * dataUpdater, MethodInfo * method)); DO_APP_FUNC(0x0208FF50, void, UnityUnifiedMouseSource_Clear, (UnityUnifiedMouseSource * __this, MethodInfo * method)); DO_APP_FUNC(0x02090090, void, UnityUnifiedMouseSource_rGjVIWwAhVbCAlkHABAPHIQFQjWd, (UnityUnifiedMouseSource * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3F68, UnityUnifiedMouseSource_rGjVIWwAhVbCAlkHABAPHIQFQjWd__MethodInfo); DO_APP_FUNC(0x02090590, void, UnityUnifiedMouseSource_rIDDSusYUTAgPpLFgERBOJcMLRsS, (UnityUnifiedMouseSource * __this, UpdateLoopType__Enum param_00009f4c, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3F50, UnityUnifiedMouseSource_rIDDSusYUTAgPpLFgERBOJcMLRsS__MethodInfo); DO_APP_FUNC(0x02090630, HardwareControllerMap_Game *, UnityUnifiedMouseSource_zlydWKaoehTgRkkHGmyRArvIYDmv, (MethodInfo * method)); DO_APP_FUNC(0x02090DE0, void, UnityUnifiedMouseSource_Dispose, (UnityUnifiedMouseSource * __this, MethodInfo * method)); DO_APP_FUNC(0x02090E50, void, UnityUnifiedMouseSource_Finalize, (UnityUnifiedMouseSource * __this, MethodInfo * method)); @@ -41069,6 +48638,7 @@ DO_APP_FUNC(0x020916C0, void, UnityUnifiedMouseSource_VfDxCbYROgLLrrqQJZnvCkuaHS DO_APP_FUNC(0x020916F0, void, UnityUnifiedMouseSource_XqaEhuPYVQesdGWUcobErQcCAxFB__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, UnityUnifiedMouseSource_XqaEhuPYVQesdGWUcobErQcCAxFB__ctor, (UnityUnifiedMouseSource_XqaEhuPYVQesdGWUcobErQcCAxFB * __this, MethodInfo * method)); DO_APP_FUNC(0x020917A0, UnityUnifiedMouseSource_VfDxCbYROgLLrrqQJZnvCkuaHSaJ *, UnityUnifiedMouseSource_XqaEhuPYVQesdGWUcobErQcCAxFB_mreQxSyfkZZgCCqyYeRDzhBIborb, (UnityUnifiedMouseSource_XqaEhuPYVQesdGWUcobErQcCAxFB * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3F58, UnityUnifiedMouseSource_XqaEhuPYVQesdGWUcobErQcCAxFB_mreQxSyfkZZgCCqyYeRDzhBIborb__MethodInfo); DO_APP_FUNC(0x020918F0, void, QWCZHCNDmpDloSdqwdUrqIUsGkjX__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02091B80, void, QWCZHCNDmpDloSdqwdUrqIUsGkjX_DiSEicMGRLeyYCcOOCJVXiKUImDxA, (MethodInfo * method)); DO_APP_FUNC(0x02091C10, QWCZHCNDmpDloSdqwdUrqIUsGkjX *, QWCZHCNDmpDloSdqwdUrqIUsGkjX_TmHMMZEuNOMgSCsVFjyjHikYiDne, (int32_t param_00009f54, MethodInfo * method)); @@ -41096,8 +48666,11 @@ DO_APP_FUNC(0x003AE050, void, QWCZHCNDmpDloSdqwdUrqIUsGkjX_maTEitTqrfublisfyhuer DO_APP_FUNC(0x02092FE0, void, QWCZHCNDmpDloSdqwdUrqIUsGkjX_QOvzUOgRmTAQcYETwDKeyJSpVFrL__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, QWCZHCNDmpDloSdqwdUrqIUsGkjX_QOvzUOgRmTAQcYETwDKeyJSpVFrL__ctor, (QWCZHCNDmpDloSdqwdUrqIUsGkjX_QOvzUOgRmTAQcYETwDKeyJSpVFrL * __this, MethodInfo * method)); DO_APP_FUNC(0x02093090, QWCZHCNDmpDloSdqwdUrqIUsGkjX *, QWCZHCNDmpDloSdqwdUrqIUsGkjX_QOvzUOgRmTAQcYETwDKeyJSpVFrL_kElvduyCnpZFVxMnVrjvksrjqHdV, (QWCZHCNDmpDloSdqwdUrqIUsGkjX_QOvzUOgRmTAQcYETwDKeyJSpVFrL * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3EB8, QWCZHCNDmpDloSdqwdUrqIUsGkjX_QOvzUOgRmTAQcYETwDKeyJSpVFrL_kElvduyCnpZFVxMnVrjvksrjqHdV__MethodInfo); DO_APP_FUNC(0x020930F0, void, QWCZHCNDmpDloSdqwdUrqIUsGkjX_QOvzUOgRmTAQcYETwDKeyJSpVFrL_BHoXecDBHQENTDnakBXAQajuYJTiA, (QWCZHCNDmpDloSdqwdUrqIUsGkjX_QOvzUOgRmTAQcYETwDKeyJSpVFrL * __this, QWCZHCNDmpDloSdqwdUrqIUsGkjX * param_00009f64, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3E98, QWCZHCNDmpDloSdqwdUrqIUsGkjX_QOvzUOgRmTAQcYETwDKeyJSpVFrL_BHoXecDBHQENTDnakBXAQajuYJTiA__MethodInfo); DO_APP_FUNC(0x02093110, QWCZHCNDmpDloSdqwdUrqIUsGkjX_maTEitTqrfublisfyhueruzJbaIw *, QWCZHCNDmpDloSdqwdUrqIUsGkjX_QOvzUOgRmTAQcYETwDKeyJSpVFrL_iHNpautbamaqEBicoKHnFReEJUjJb, (QWCZHCNDmpDloSdqwdUrqIUsGkjX_QOvzUOgRmTAQcYETwDKeyJSpVFrL * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3DD0, QWCZHCNDmpDloSdqwdUrqIUsGkjX_QOvzUOgRmTAQcYETwDKeyJSpVFrL_iHNpautbamaqEBicoKHnFReEJUjJb__MethodInfo); DO_APP_FUNC(0x02093160, void, cgAhWyfsfnPBbygscaxJCrsKfviSB__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02093220, void, cgAhWyfsfnPBbygscaxJCrsKfviSB__ctor, (cgAhWyfsfnPBbygscaxJCrsKfviSB * __this, int32_t param_00009f65, InputAction * param_00009f66, InputBehavior * param_00009f67, ConfigVars * param_00009f68, MethodInfo * method)); DO_APP_FUNC(0x02093860, void, cgAhWyfsfnPBbygscaxJCrsKfviSB_wdXOeuCDXJwEijecGJmHhCuCyiZi, (ConfigVars * param_00009f69, MethodInfo * method)); @@ -41105,6 +48678,7 @@ DO_APP_FUNC(0x02093970, void, cgAhWyfsfnPBbygscaxJCrsKfviSB_tSuDWoDArnKfqaqBclUH DO_APP_FUNC(0x02093BE0, void, cgAhWyfsfnPBbygscaxJCrsKfviSB_wgRPplYpLufzWUSEUbUOclPxMxsDA, (MethodInfo * method)); DO_APP_FUNC(0x02093C60, void, cgAhWyfsfnPBbygscaxJCrsKfviSB_RZbDeldCYOfyczEHDztutNQGqRxhA, (cgAhWyfsfnPBbygscaxJCrsKfviSB * __this, MethodInfo * method)); DO_APP_FUNC(0x02093E50, void, cgAhWyfsfnPBbygscaxJCrsKfviSB_dNffQDDBctEzIwtVWcQaUyHoUptKA, (cgAhWyfsfnPBbygscaxJCrsKfviSB * __this, bool param_00009f6b, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC39E0, cgAhWyfsfnPBbygscaxJCrsKfviSB_dNffQDDBctEzIwtVWcQaUyHoUptKA__MethodInfo); DO_APP_FUNC(0x02094530, void, cgAhWyfsfnPBbygscaxJCrsKfviSB_trzECiPLqsCljdzDZQhWlEIINuqu, (cgAhWyfsfnPBbygscaxJCrsKfviSB * __this, TTThSetrNwcNFnjvmLttoQrcZXbI * param_00009f6c, float param_00009f6d, MethodInfo * method)); DO_APP_FUNC(0x02094680, void, cgAhWyfsfnPBbygscaxJCrsKfviSB_dVMIwUjlamtWqQdbsdlozNEPReYp, (cgAhWyfsfnPBbygscaxJCrsKfviSB * __this, TTThSetrNwcNFnjvmLttoQrcZXbI * param_00009f6e, float param_00009f6f, bool param_00009f70, MethodInfo * method)); DO_APP_FUNC(0x02094C20, void, cgAhWyfsfnPBbygscaxJCrsKfviSB_sbhhXXEOyqmbpECrhKcvpbjhqVxWA, (cgAhWyfsfnPBbygscaxJCrsKfviSB * __this, MethodInfo * method)); @@ -41193,7 +48767,7 @@ DO_APP_FUNC(0x02098760, void, cgAhWyfsfnPBbygscaxJCrsKfviSB_LpkzJWjuOvNrIoNrVUFo DO_APP_FUNC(0x020987D0, void, cgAhWyfsfnPBbygscaxJCrsKfviSB_YSlREAzODkQkWQAGaYTiDpHLvVZm, (cgAhWyfsfnPBbygscaxJCrsKfviSB * __this, Controller * param_00009f8b, ControllerMap * param_00009f8c, ActionElementMap * param_00009f8d, MethodInfo * method)); DO_APP_FUNC(0x02098AA0, void, cgAhWyfsfnPBbygscaxJCrsKfviSB_FBdgAEHnLyLBvrPKGJLxOOxMkSeE, (cgAhWyfsfnPBbygscaxJCrsKfviSB * __this, MethodInfo * method)); DO_APP_FUNC(0x02098BF0, void, cgAhWyfsfnPBbygscaxJCrsKfviSB_mbToTVBKayIblBMBleLmuxcvhJGM, (cgAhWyfsfnPBbygscaxJCrsKfviSB * __this, MethodInfo * method)); -DO_APP_FUNC(0x02098D90, void, cgAhWyfsfnPBbygscaxJCrsKfviSB_LzScfCUqMYydDXBRZFsVfaCmlvUb, (ButtonStateFlags__Enum param_00009f8e, ButtonStateFlags__Enum param_00009f8f, MethodInfo * method)); +DO_APP_FUNC(0x02098D90, void, cgAhWyfsfnPBbygscaxJCrsKfviSB_LzScfCUqMYydDXBRZFsVfaCmlvUb, (ButtonStateFlags__Enum * param_00009f8e, ButtonStateFlags__Enum param_00009f8f, MethodInfo * method)); DO_APP_FUNC(0x02098DC0, void, cgAhWyfsfnPBbygscaxJCrsKfviSB_gtktRJZQdSncUUzoSqggqmYQqHdH_hPhGVWkMoPHFammZJKuDewrqOZqK, (cgAhWyfsfnPBbygscaxJCrsKfviSB_gtktRJZQdSncUUzoSqggqmYQqHdH * __this, UpdateLoopType__Enum param_00009f90, MethodInfo * method)); DO_APP_FUNC(0x02098E60, void, cgAhWyfsfnPBbygscaxJCrsKfviSB_gtktRJZQdSncUUzoSqggqmYQqHdH__ctor, (cgAhWyfsfnPBbygscaxJCrsKfviSB_gtktRJZQdSncUUzoSqggqmYQqHdH * __this, UpdateLoopSetting__Enum param_00009f91, InputBehavior * param_00009f92, MethodInfo * method)); DO_APP_FUNC(0x02099340, bool, cgAhWyfsfnPBbygscaxJCrsKfviSB_gtktRJZQdSncUUzoSqggqmYQqHdH_HKIwqGIKfORLWVtkrdeqqJDltOck, (cgAhWyfsfnPBbygscaxJCrsKfviSB_gtktRJZQdSncUUzoSqggqmYQqHdH * __this, MethodInfo * method)); @@ -41285,10 +48859,13 @@ DO_APP_FUNC(0x0209F0C0, IEnumerable_1_Rewired_CustomController_ *, XKHfzUVAieDxX DO_APP_FUNC(0x003BB330, IList_1_Rewired_Controller_ *, XKHfzUVAieDxXBogCMTJRCSldnQzA_DUrsNyhHXcHiEFEMnhfDYVARwciU, (XKHfzUVAieDxXBogCMTJRCSldnQzA * __this, MethodInfo * method)); DO_APP_FUNC(0x0209F1F0, int32_t, XKHfzUVAieDxXBogCMTJRCSldnQzA_OvXxCJUXbWWWAVKRmhQkbhPDknLu, (XKHfzUVAieDxXBogCMTJRCSldnQzA * __this, MethodInfo * method)); DO_APP_FUNC(0x0209F240, Controller *, XKHfzUVAieDxXBogCMTJRCSldnQzA_wlIXihzDaiWJqyTKSzVwLUmcSFne, (XKHfzUVAieDxXBogCMTJRCSldnQzA * __this, ControllerType__Enum param_00009fd9, int32_t param_00009fda, bool param_00009fdb, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC34B0, XKHfzUVAieDxXBogCMTJRCSldnQzA_wlIXihzDaiWJqyTKSzVwLUmcSFne__MethodInfo); DO_APP_FUNC(0x0209F2E0, Controller *, XKHfzUVAieDxXBogCMTJRCSldnQzA_wlIXihzDaiWJqyTKSzVwLUmcSFne_1, (XKHfzUVAieDxXBogCMTJRCSldnQzA * __this, ControllerIdentifier param_00009fdc, bool param_00009fdd, MethodInfo * method)); DO_APP_FUNC(0x0209F3D0, Controller *, XKHfzUVAieDxXBogCMTJRCSldnQzA_wlIXihzDaiWJqyTKSzVwLUmcSFne_2, (XKHfzUVAieDxXBogCMTJRCSldnQzA * __this, Guid param_00009fde, bool param_00009fdf, MethodInfo * method)); DO_APP_FUNC(0x0209F790, Controller__Array *, XKHfzUVAieDxXBogCMTJRCSldnQzA_RPaygoZFetgssNaAONaRLQbhVEKW, (XKHfzUVAieDxXBogCMTJRCSldnQzA * __this, ControllerType__Enum param_00009fe0, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC33F0, XKHfzUVAieDxXBogCMTJRCSldnQzA_RPaygoZFetgssNaAONaRLQbhVEKW__MethodInfo); DO_APP_FUNC(0x0209F900, String__Array *, XKHfzUVAieDxXBogCMTJRCSldnQzA_cbhIrUxLGUECDhrxIiQvbIVDDEvkb, (XKHfzUVAieDxXBogCMTJRCSldnQzA * __this, ControllerType__Enum param_00009fe1, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC33D0, XKHfzUVAieDxXBogCMTJRCSldnQzA_cbhIrUxLGUECDhrxIiQvbIVDDEvkb__MethodInfo); DO_APP_FUNC(0x0209FA90, void, XKHfzUVAieDxXBogCMTJRCSldnQzA_PERRqjpBqNbmPaYSFRVOEFSfllhe, (XKHfzUVAieDxXBogCMTJRCSldnQzA * __this, int32_t param_00009fe2, Action_1_Rewired_InputActionEventData_ * param_00009fe3, UpdateLoopType__Enum param_00009fe4, MethodInfo * method)); DO_APP_FUNC(0x0209FAF0, void, XKHfzUVAieDxXBogCMTJRCSldnQzA_PERRqjpBqNbmPaYSFRVOEFSfllhe_1, (XKHfzUVAieDxXBogCMTJRCSldnQzA * __this, int32_t param_00009fe5, Action_1_Rewired_InputActionEventData_ * param_00009fe6, UpdateLoopType__Enum param_00009fe7, int32_t param_00009fe8, MethodInfo * method)); DO_APP_FUNC(0x0209FB50, void, XKHfzUVAieDxXBogCMTJRCSldnQzA_PERRqjpBqNbmPaYSFRVOEFSfllhe_2, (XKHfzUVAieDxXBogCMTJRCSldnQzA * __this, int32_t param_00009fe9, Action_1_Rewired_InputActionEventData_ * param_00009fea, UpdateLoopType__Enum param_00009feb, String * param_00009fec, MethodInfo * method)); @@ -41318,14 +48895,19 @@ DO_APP_FUNC(0x020A0E00, bool, XKHfzUVAieDxXBogCMTJRCSldnQzA_bprFhwBrRnkIXsOgJoZn DO_APP_FUNC(0x020A0F30, bool, XKHfzUVAieDxXBogCMTJRCSldnQzA_xhjSrbNbVHABwZvEhdumNGlBOwxm, (XKHfzUVAieDxXBogCMTJRCSldnQzA * __this, int32_t param_0000a032, MethodInfo * method)); DO_APP_FUNC(0x020A1060, bool, XKHfzUVAieDxXBogCMTJRCSldnQzA_lTydDngNomYHuigfhNfxundkPAOhA, (XKHfzUVAieDxXBogCMTJRCSldnQzA * __this, MethodInfo * method)); DO_APP_FUNC(0x020A1120, bool, XKHfzUVAieDxXBogCMTJRCSldnQzA_lTydDngNomYHuigfhNfxundkPAOhA_1, (XKHfzUVAieDxXBogCMTJRCSldnQzA * __this, ControllerType__Enum param_0000a033, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3430, XKHfzUVAieDxXBogCMTJRCSldnQzA_lTydDngNomYHuigfhNfxundkPAOhA_1__MethodInfo); DO_APP_FUNC(0x020A1230, bool, XKHfzUVAieDxXBogCMTJRCSldnQzA_jwzGjIatPRhWXTpXZrztrNhJxAbaA, (XKHfzUVAieDxXBogCMTJRCSldnQzA * __this, MethodInfo * method)); DO_APP_FUNC(0x020A12F0, bool, XKHfzUVAieDxXBogCMTJRCSldnQzA_jwzGjIatPRhWXTpXZrztrNhJxAbaA_1, (XKHfzUVAieDxXBogCMTJRCSldnQzA * __this, ControllerType__Enum param_0000a034, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3410, XKHfzUVAieDxXBogCMTJRCSldnQzA_jwzGjIatPRhWXTpXZrztrNhJxAbaA_1__MethodInfo); DO_APP_FUNC(0x020A1400, bool, XKHfzUVAieDxXBogCMTJRCSldnQzA_DHoJMWJxuckjIjbQLshEgvCscShu, (XKHfzUVAieDxXBogCMTJRCSldnQzA * __this, MethodInfo * method)); DO_APP_FUNC(0x020A14C0, bool, XKHfzUVAieDxXBogCMTJRCSldnQzA_DHoJMWJxuckjIjbQLshEgvCscShu_1, (XKHfzUVAieDxXBogCMTJRCSldnQzA * __this, ControllerType__Enum param_0000a035, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC32F8, XKHfzUVAieDxXBogCMTJRCSldnQzA_DHoJMWJxuckjIjbQLshEgvCscShu_1__MethodInfo); DO_APP_FUNC(0x020A15D0, bool, XKHfzUVAieDxXBogCMTJRCSldnQzA_IdoBsBWhwLzhUQzyXbTpuhSwcbbw, (XKHfzUVAieDxXBogCMTJRCSldnQzA * __this, MethodInfo * method)); DO_APP_FUNC(0x020A1690, bool, XKHfzUVAieDxXBogCMTJRCSldnQzA_IdoBsBWhwLzhUQzyXbTpuhSwcbbw_1, (XKHfzUVAieDxXBogCMTJRCSldnQzA * __this, ControllerType__Enum param_0000a036, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3270, XKHfzUVAieDxXBogCMTJRCSldnQzA_IdoBsBWhwLzhUQzyXbTpuhSwcbbw_1__MethodInfo); DO_APP_FUNC(0x020A17A0, bool, XKHfzUVAieDxXBogCMTJRCSldnQzA_RVyZTLSrmmGgmhirYsrAYLilGgix, (XKHfzUVAieDxXBogCMTJRCSldnQzA * __this, MethodInfo * method)); DO_APP_FUNC(0x020A1860, bool, XKHfzUVAieDxXBogCMTJRCSldnQzA_RVyZTLSrmmGgmhirYsrAYLilGgix_1, (XKHfzUVAieDxXBogCMTJRCSldnQzA * __this, ControllerType__Enum param_0000a037, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC33A0, XKHfzUVAieDxXBogCMTJRCSldnQzA_RVyZTLSrmmGgmhirYsrAYLilGgix_1__MethodInfo); DO_APP_FUNC(0x020A1970, bool, XKHfzUVAieDxXBogCMTJRCSldnQzA_lTydDngNomYHuigfhNfxundkPAOhA_2, (XKHfzUVAieDxXBogCMTJRCSldnQzA * __this, Controller * param_0000a039, MethodInfo * method)); DO_APP_FUNC(0x020A19A0, bool, XKHfzUVAieDxXBogCMTJRCSldnQzA_jwzGjIatPRhWXTpXZrztrNhJxAbaA_2, (XKHfzUVAieDxXBogCMTJRCSldnQzA * __this, Controller * param_0000a03b, MethodInfo * method)); DO_APP_FUNC(0x020A19D0, bool, XKHfzUVAieDxXBogCMTJRCSldnQzA_DHoJMWJxuckjIjbQLshEgvCscShu_2, (XKHfzUVAieDxXBogCMTJRCSldnQzA * __this, Controller * param_0000a03d, MethodInfo * method)); @@ -41333,6 +48915,7 @@ DO_APP_FUNC(0x020A1A00, bool, XKHfzUVAieDxXBogCMTJRCSldnQzA_IdoBsBWhwLzhUQzyXbTp DO_APP_FUNC(0x020A1A30, bool, XKHfzUVAieDxXBogCMTJRCSldnQzA_RVyZTLSrmmGgmhirYsrAYLilGgix_2, (XKHfzUVAieDxXBogCMTJRCSldnQzA * __this, Controller * param_0000a041, MethodInfo * method)); DO_APP_FUNC(0x020A1A60, Controller *, XKHfzUVAieDxXBogCMTJRCSldnQzA_LsIzBFwMYteiZfckNBrRUNxPnrmY, (XKHfzUVAieDxXBogCMTJRCSldnQzA * __this, MethodInfo * method)); DO_APP_FUNC(0x020A1EE0, Controller *, XKHfzUVAieDxXBogCMTJRCSldnQzA_LsIzBFwMYteiZfckNBrRUNxPnrmY_1, (XKHfzUVAieDxXBogCMTJRCSldnQzA * __this, ControllerType__Enum param_0000a042, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3360, XKHfzUVAieDxXBogCMTJRCSldnQzA_LsIzBFwMYteiZfckNBrRUNxPnrmY_1__MethodInfo); DO_APP_FUNC(0x020A2200, ControllerType__Enum, XKHfzUVAieDxXBogCMTJRCSldnQzA_BinHiyCEAhEczsLzZDsytLirbvET, (XKHfzUVAieDxXBogCMTJRCSldnQzA * __this, MethodInfo * method)); DO_APP_FUNC(0x020A2230, void, XKHfzUVAieDxXBogCMTJRCSldnQzA_HuTmAaBDeBsPWohwFjySNHVRzwyg, (XKHfzUVAieDxXBogCMTJRCSldnQzA * __this, ActiveControllerChangedDelegate * param_0000a043, MethodInfo * method)); DO_APP_FUNC(0x020A22E0, void, XKHfzUVAieDxXBogCMTJRCSldnQzA_HuTmAaBDeBsPWohwFjySNHVRzwyg_1, (XKHfzUVAieDxXBogCMTJRCSldnQzA * __this, ActiveControllerChangedDelegate * param_0000a044, ControllerType__Enum param_0000a045, MethodInfo * method)); @@ -41349,17 +48932,22 @@ DO_APP_FUNC(0x020A2D20, void, XKHfzUVAieDxXBogCMTJRCSldnQzA_XUBqcYqPVGdDgzkqAsMn DO_APP_FUNC(0x020A2F30, void, XKHfzUVAieDxXBogCMTJRCSldnQzA_XUBqcYqPVGdDgzkqAsMnVoxASPM_1, (XKHfzUVAieDxXBogCMTJRCSldnQzA * __this, ControllerWithAxes * param_0000a055, ThrottleCalibrationMode__Enum param_0000a056, MethodInfo * method)); DO_APP_FUNC(0x020A30D0, int32_t, XKHfzUVAieDxXBogCMTJRCSldnQzA_tSEVvGCByumINwcicisgaAVGVuSfA, (XKHfzUVAieDxXBogCMTJRCSldnQzA * __this, MethodInfo * method)); DO_APP_FUNC(0x020A3100, void, XKHfzUVAieDxXBogCMTJRCSldnQzA_LIeljCbdoWdgBAecluMnblrpCnHu_1, (XKHfzUVAieDxXBogCMTJRCSldnQzA * __this, List_1_Rewired_InputBehavior_ * param_0000a057, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3038, XKHfzUVAieDxXBogCMTJRCSldnQzA_LIeljCbdoWdgBAecluMnblrpCnHu_1__MethodInfo); DO_APP_FUNC(0x020A4970, void, XKHfzUVAieDxXBogCMTJRCSldnQzA_XlUnlWAWiNuMykLhYzKLdJckzsvv, (XKHfzUVAieDxXBogCMTJRCSldnQzA * __this, UpdateLoopType__Enum param_0000a058, MethodInfo * method)); DO_APP_FUNC(0x020A4DC0, void, XKHfzUVAieDxXBogCMTJRCSldnQzA_qDXEcuIGsZxemwUhkLrBQSNhEBvL, (XKHfzUVAieDxXBogCMTJRCSldnQzA * __this, UpdateLoopType__Enum param_0000a059, MethodInfo * method)); DO_APP_FUNC(0x020A5390, void, XKHfzUVAieDxXBogCMTJRCSldnQzA_UPXXneiiDQdTLYPoaIjDyxXOoiRG, (XKHfzUVAieDxXBogCMTJRCSldnQzA * __this, bool param_0000a05a, int32_t param_0000a05b, int32_t param_0000a05c, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2E90, XKHfzUVAieDxXBogCMTJRCSldnQzA_UPXXneiiDQdTLYPoaIjDyxXOoiRG__MethodInfo); DO_APP_FUNC(0x020A5450, void, XKHfzUVAieDxXBogCMTJRCSldnQzA_rMAMSuSCKvMvHptcoiJtZeiGpGeB, (XKHfzUVAieDxXBogCMTJRCSldnQzA * __this, BridgedController * param_0000a05d, MethodInfo * method)); DO_APP_FUNC(0x020A5770, void, XKHfzUVAieDxXBogCMTJRCSldnQzA_mvJDTClCYwIDZyMigGPBLlLCEerV, (XKHfzUVAieDxXBogCMTJRCSldnQzA * __this, int32_t param_0000a05e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2DB0, XKHfzUVAieDxXBogCMTJRCSldnQzA_mvJDTClCYwIDZyMigGPBLlLCEerV__MethodInfo); DO_APP_FUNC(0x020A5A20, void, XKHfzUVAieDxXBogCMTJRCSldnQzA_TpXqXvUHFIrndXZKDzFvKGjaGMlk, (XKHfzUVAieDxXBogCMTJRCSldnQzA * __this, MethodInfo * method)); DO_APP_FUNC(0x020A5D10, bool, XKHfzUVAieDxXBogCMTJRCSldnQzA_GmMBLdVbPNckdERQZkbMFdUPPjnSA, (XKHfzUVAieDxXBogCMTJRCSldnQzA * __this, CustomController * param_0000a05f, MethodInfo * method)); DO_APP_FUNC(0x020A5E80, bool, XKHfzUVAieDxXBogCMTJRCSldnQzA_QDAroDfYWNkuLjEXHQXlecxDZcRR, (XKHfzUVAieDxXBogCMTJRCSldnQzA * __this, CustomController * param_0000a060, MethodInfo * method)); DO_APP_FUNC(0x020A5F30, MRGkKzhgDCfculrfXakxXfUSFUsK *, XKHfzUVAieDxXBogCMTJRCSldnQzA_bdgyHgeVVekUdfgsScssQRYYbPKv, (XKHfzUVAieDxXBogCMTJRCSldnQzA * __this, int32_t param_0000a061, MethodInfo * method)); DO_APP_FUNC(0x020A5FF0, void, XKHfzUVAieDxXBogCMTJRCSldnQzA_wIfyYAwrXYLEzVKsMBtXpncyNQSD, (XKHfzUVAieDxXBogCMTJRCSldnQzA * __this, bool param_0000a062, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC35B0, XKHfzUVAieDxXBogCMTJRCSldnQzA_wIfyYAwrXYLEzVKsMBtXpncyNQSD__MethodInfo); DO_APP_FUNC(0x020A6070, void, XKHfzUVAieDxXBogCMTJRCSldnQzA_PolSnbSBGmyhlhfNuaOpsWqcuIUc, (XKHfzUVAieDxXBogCMTJRCSldnQzA * __this, bool param_0000a063, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC35B8, XKHfzUVAieDxXBogCMTJRCSldnQzA_PolSnbSBGmyhlhfNuaOpsWqcuIUc__MethodInfo); DO_APP_FUNC(0x020A6230, void, XKHfzUVAieDxXBogCMTJRCSldnQzA_Dispose, (XKHfzUVAieDxXBogCMTJRCSldnQzA * __this, MethodInfo * method)); DO_APP_FUNC(0x020A6290, void, XKHfzUVAieDxXBogCMTJRCSldnQzA_CKQeYexxcEWMBSnZtVhPKvVjjVUV, (XKHfzUVAieDxXBogCMTJRCSldnQzA * __this, MethodInfo * method)); DO_APP_FUNC(0x020A6300, void, XKHfzUVAieDxXBogCMTJRCSldnQzA_IEkPCabxTSDlHrotLqbcXFSgZNMJ, (XKHfzUVAieDxXBogCMTJRCSldnQzA * __this, bool param_0000a064, MethodInfo * method)); @@ -41370,6 +48958,7 @@ DO_APP_FUNC(0x003AE050, void, XKHfzUVAieDxXBogCMTJRCSldnQzA_ZAqVFAUrYoMWMOlzBsXk DO_APP_FUNC(0x020A6970, bool, XKHfzUVAieDxXBogCMTJRCSldnQzA_ZAqVFAUrYoMWMOlzBsXkKEhadZDR_MoveNext, (XKHfzUVAieDxXBogCMTJRCSldnQzA_ZAqVFAUrYoMWMOlzBsXkKEhadZDR * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, CustomController *, XKHfzUVAieDxXBogCMTJRCSldnQzA_ZAqVFAUrYoMWMOlzBsXkKEhadZDR_System_Collections_Generic_IEnumerator_Rewired_CustomController__get_Current, (XKHfzUVAieDxXBogCMTJRCSldnQzA_ZAqVFAUrYoMWMOlzBsXkKEhadZDR * __this, MethodInfo * method)); DO_APP_FUNC(0x020A6A80, void, XKHfzUVAieDxXBogCMTJRCSldnQzA_ZAqVFAUrYoMWMOlzBsXkKEhadZDR_System_Collections_IEnumerator_Reset, (XKHfzUVAieDxXBogCMTJRCSldnQzA_ZAqVFAUrYoMWMOlzBsXkKEhadZDR * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2D40, XKHfzUVAieDxXBogCMTJRCSldnQzA_ZAqVFAUrYoMWMOlzBsXkKEhadZDR_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, XKHfzUVAieDxXBogCMTJRCSldnQzA_ZAqVFAUrYoMWMOlzBsXkKEhadZDR_System_Collections_IEnumerator_get_Current, (XKHfzUVAieDxXBogCMTJRCSldnQzA_ZAqVFAUrYoMWMOlzBsXkKEhadZDR * __this, MethodInfo * method)); DO_APP_FUNC(0x020A6AD0, IEnumerator_1_Rewired_CustomController_ *, XKHfzUVAieDxXBogCMTJRCSldnQzA_ZAqVFAUrYoMWMOlzBsXkKEhadZDR_System_Collections_Generic_IEnumerable_Rewired_CustomController__GetEnumerator, (XKHfzUVAieDxXBogCMTJRCSldnQzA_ZAqVFAUrYoMWMOlzBsXkKEhadZDR * __this, MethodInfo * method)); DO_APP_FUNC(0x020A6AD0, IEnumerator *, XKHfzUVAieDxXBogCMTJRCSldnQzA_ZAqVFAUrYoMWMOlzBsXkKEhadZDR_System_Collections_IEnumerable_GetEnumerator, (XKHfzUVAieDxXBogCMTJRCSldnQzA_ZAqVFAUrYoMWMOlzBsXkKEhadZDR * __this, MethodInfo * method)); @@ -41378,6 +48967,7 @@ DO_APP_FUNC(0x003AE050, void, XKHfzUVAieDxXBogCMTJRCSldnQzA_DnqqNTGrNZBJsKBRjRKe DO_APP_FUNC(0x020A6C10, bool, XKHfzUVAieDxXBogCMTJRCSldnQzA_DnqqNTGrNZBJsKBRjRKefzDQZSak_MoveNext, (XKHfzUVAieDxXBogCMTJRCSldnQzA_DnqqNTGrNZBJsKBRjRKefzDQZSak * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, CustomController *, XKHfzUVAieDxXBogCMTJRCSldnQzA_DnqqNTGrNZBJsKBRjRKefzDQZSak_System_Collections_Generic_IEnumerator_Rewired_CustomController__get_Current, (XKHfzUVAieDxXBogCMTJRCSldnQzA_DnqqNTGrNZBJsKBRjRKefzDQZSak * __this, MethodInfo * method)); DO_APP_FUNC(0x020A6E10, void, XKHfzUVAieDxXBogCMTJRCSldnQzA_DnqqNTGrNZBJsKBRjRKefzDQZSak_System_Collections_IEnumerator_Reset, (XKHfzUVAieDxXBogCMTJRCSldnQzA_DnqqNTGrNZBJsKBRjRKefzDQZSak * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2D98, XKHfzUVAieDxXBogCMTJRCSldnQzA_DnqqNTGrNZBJsKBRjRKefzDQZSak_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, XKHfzUVAieDxXBogCMTJRCSldnQzA_DnqqNTGrNZBJsKBRjRKefzDQZSak_System_Collections_IEnumerator_get_Current, (XKHfzUVAieDxXBogCMTJRCSldnQzA_DnqqNTGrNZBJsKBRjRKefzDQZSak * __this, MethodInfo * method)); DO_APP_FUNC(0x020A6E60, IEnumerator_1_Rewired_CustomController_ *, XKHfzUVAieDxXBogCMTJRCSldnQzA_DnqqNTGrNZBJsKBRjRKefzDQZSak_System_Collections_Generic_IEnumerable_Rewired_CustomController__GetEnumerator, (XKHfzUVAieDxXBogCMTJRCSldnQzA_DnqqNTGrNZBJsKBRjRKefzDQZSak * __this, MethodInfo * method)); DO_APP_FUNC(0x020A7020, IEnumerator *, XKHfzUVAieDxXBogCMTJRCSldnQzA_DnqqNTGrNZBJsKBRjRKefzDQZSak_System_Collections_IEnumerable_GetEnumerator, (XKHfzUVAieDxXBogCMTJRCSldnQzA_DnqqNTGrNZBJsKBRjRKefzDQZSak * __this, MethodInfo * method)); @@ -41394,6 +48984,7 @@ DO_APP_FUNC(0x020A7BD0, void, plBfGLfQeUzmsEdwSpoZbnYJHVeW_UpdateControllerData, DO_APP_FUNC(0x020A7D10, void, plBfGLfQeUzmsEdwSpoZbnYJHVeW_SystemDeviceConnected, (plBfGLfQeUzmsEdwSpoZbnYJHVeW * __this, MethodInfo * method)); DO_APP_FUNC(0x020A7D30, void, plBfGLfQeUzmsEdwSpoZbnYJHVeW_SystemDeviceDisconnected, (plBfGLfQeUzmsEdwSpoZbnYJHVeW * __this, MethodInfo * method)); DO_APP_FUNC(0x020A7D50, void, plBfGLfQeUzmsEdwSpoZbnYJHVeW_BqfBAdEqEggcfQhySUSzwaivVqwR, (plBfGLfQeUzmsEdwSpoZbnYJHVeW * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2D80, plBfGLfQeUzmsEdwSpoZbnYJHVeW_BqfBAdEqEggcfQhySUSzwaivVqwR__MethodInfo); DO_APP_FUNC(0x020A7D60, void, plBfGLfQeUzmsEdwSpoZbnYJHVeW_SetUnityJoystickId, (plBfGLfQeUzmsEdwSpoZbnYJHVeW * __this, int32_t joystickId, int32_t unityJoystickId, MethodInfo * method)); DO_APP_FUNC(0x003C91F0, IUnifiedMouseSource *, plBfGLfQeUzmsEdwSpoZbnYJHVeW_GetUnifiedMouseSource, (plBfGLfQeUzmsEdwSpoZbnYJHVeW * __this, MethodInfo * method)); DO_APP_FUNC(0x003C91E0, IUnifiedKeyboardSource *, plBfGLfQeUzmsEdwSpoZbnYJHVeW_GetUnifiedKeyboardSource, (plBfGLfQeUzmsEdwSpoZbnYJHVeW * __this, MethodInfo * method)); @@ -41432,6 +49023,7 @@ DO_APP_FUNC(0x020A9CA0, int32_t, plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwct DO_APP_FUNC(0x020A9E20, void, plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG_hugsFbKZfWraiQkiGFWQikzsmvDj, (plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG * __this, BridgedControllerHWInfo * param_0000a091, MethodInfo * method)); DO_APP_FUNC(0x020A9F20, void, plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG_hugsFbKZfWraiQkiGFWQikzsmvDj_1, (plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG * __this, BridgedController * param_0000a092, MethodInfo * method)); DO_APP_FUNC(0x020AA120, void, plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG_FillData, (plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG * __this, ControllerDataUpdater * dataUpdater, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC4FF0, plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG_FillData__MethodInfo); DO_APP_FUNC(0x020AA300, void, plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG_sbpbOGFKIijcFZJbXWEhqaqsalnpA, (plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG * __this, int32_t param_0000a094, MethodInfo * method)); DO_APP_FUNC(0x020AA310, void, plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG_VZgWmJYNVgDmEgDNcNwmypgzkEYuA, (plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG * __this, MethodInfo * method)); DO_APP_FUNC(0x020AA370, BridgedControllerHWInfo *, plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG_GBKpRaKkozAlrfTWcfBobtBEXJSEA, (plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG * __this, MethodInfo * method)); @@ -41439,22 +49031,26 @@ DO_APP_FUNC(0x020AA3E0, BridgedController *, plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDK DO_APP_FUNC(0x020AA450, ControllerDisconnectedEventArgs *, plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG_ToControllerDisconnectedEventArgs, (plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG * __this, MethodInfo * method)); DO_APP_FUNC(0x020AA4F0, void, plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG_zVxsAbJQfSocggRvOJXqudeimoTM, (plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG * __this, MethodInfo * method)); DO_APP_FUNC(0x020AA5D0, void, plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG_HIIydJwkxPRjeUmnKMhynZSlhZFr, (plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC4FB8, plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG_HIIydJwkxPRjeUmnKMhynZSlhZFr__MethodInfo); DO_APP_FUNC(0x020AA850, void, plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG_qgkozYJKRLUdDDRvgDzLkjaguBYt, (plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC4FC0, plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG_qgkozYJKRLUdDDRvgDzLkjaguBYt__MethodInfo); DO_APP_FUNC(0x020AA9E0, bool, plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG_fPEIieuOrXYRdNGxxzydLWhVnvVE, (plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG * __this, HardwareJoystickMap_Platform_Fallback_Base_Button * param_0000a095, MethodInfo * method)); DO_APP_FUNC(0x01F232F0, bool, plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG_IsWYiKskLiCGBxoAqmaZKpCqaMghA, (plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG * __this, float param_0000a096, float param_0000a097, MethodInfo * method)); DO_APP_FUNC(0x020AB040, float, plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG_XAXNwRQUnmcOzPeHVLVuoeCfedSaA, (plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG * __this, HardwareJoystickMap_Platform_Fallback_Base_Axis * param_0000a098, MethodInfo * method)); DO_APP_FUNC(0x020AB2E0, float, plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG_XAXNwRQUnmcOzPeHVLVuoeCfedSaA_1, (plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG * __this, UnityAxis__Enum param_0000a099, MethodInfo * method)); DO_APP_FUNC(0x020AB320, bool, plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG_fPEIieuOrXYRdNGxxzydLWhVnvVE_1, (plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG * __this, UnityButton__Enum param_0000a09a, MethodInfo * method)); -DO_APP_FUNC(0x020AB380, bool, plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG_kYPcfnbmnGsErGeXrEyEUPRyMfgzA, (plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG * __this, HardwareJoystickMap_Platform_Fallback_Base_CustomCalculationSourceData * param_0000a09b, bool param_0000a09c, MethodInfo * method)); -DO_APP_FUNC(0x020AB3C0, bool, plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG_gmLVYIQBbyWaicPaVXqGelNOzSjC, (plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG * __this, HardwareJoystickMap_Platform_Fallback_Base_CustomCalculationSourceData * param_0000a09d, bool param_0000a09e, MethodInfo * method)); -DO_APP_FUNC(0x020AB450, bool, plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG_RDGBvwRnSgvWbQbhGcwVAftqIyPbA, (plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG * __this, HardwareJoystickMap_Platform_Fallback_Base_CustomCalculationSourceData * param_0000a09f, float param_0000a0a0, MethodInfo * method)); +DO_APP_FUNC(0x020AB380, bool, plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG_kYPcfnbmnGsErGeXrEyEUPRyMfgzA, (plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG * __this, HardwareJoystickMap_Platform_Fallback_Base_CustomCalculationSourceData * param_0000a09b, bool * param_0000a09c, MethodInfo * method)); +DO_APP_FUNC(0x020AB3C0, bool, plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG_gmLVYIQBbyWaicPaVXqGelNOzSjC, (plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG * __this, HardwareJoystickMap_Platform_Fallback_Base_CustomCalculationSourceData * param_0000a09d, bool * param_0000a09e, MethodInfo * method)); +DO_APP_FUNC(0x020AB450, bool, plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG_RDGBvwRnSgvWbQbhGcwVAftqIyPbA, (plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG * __this, HardwareJoystickMap_Platform_Fallback_Base_CustomCalculationSourceData * param_0000a09f, float * param_0000a0a0, MethodInfo * method)); DO_APP_FUNC(0x020AB530, bool, plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG_alkXcRfjhTFTxEVSRuZInJujXGJe, (plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG * __this, UnityAxis__Enum param_0000a0a1, MethodInfo * method)); DO_APP_FUNC(0x020AB570, void, plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG_QiRaNfkfgHgWUjtXCaMEyCrzuWuLA, (plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG * __this, MethodInfo * method)); DO_APP_FUNC(0x020ABCC0, void, plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG_eCXpDHcIiDStWqAgQeoedOPBdXBb, (plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG * __this, MethodInfo * method)); DO_APP_FUNC(0x020ABD10, String *, plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG_WgGjQqIqpQMBHjXuEtRmypmSzSlH, (plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG * __this, MethodInfo * method)); DO_APP_FUNC(0x020AC250, InputSource__Enum, plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG_IYpPEwfLfVLMERnzmubXHtBHTZcA, (plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG * __this, MethodInfo * method)); DO_APP_FUNC(0x01F19080, int32_t, plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG_jYdTCDXHeXzSAQlNQesAGmuXqlUdb, (plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG * param_0000a0a2, plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG * param_0000a0a3, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2D10, plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG_jYdTCDXHeXzSAQlNQesAGmuXqlUdb__MethodInfo); DO_APP_FUNC(0x020AC310, int32_t, plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG_bTfCMOafWYSxwIxqDnrcQCKUhFTKA, (plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG * param_0000a0a4, plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG * param_0000a0a5, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2D00, plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG_bTfCMOafWYSxwIxqDnrcQCKUhFTKA__MethodInfo); DO_APP_FUNC(0x020AC350, String *, plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG_LIEhHyiDbfqLUhfZAfxeGgbYwrKfA, (String * param_0000a0a6, MethodInfo * method)); DO_APP_FUNC(0x020AC430, void, plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA__ctor, (plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA * __this, MethodInfo * method)); DO_APP_FUNC(0x020AC500, int32_t, plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA_VJsfGkCeXFnNPjNkvMaQfRowrhXo, (plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA * __this, MethodInfo * method)); @@ -41464,12 +49060,14 @@ DO_APP_FUNC(0x020AC960, IEnumerable_1_plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhH DO_APP_FUNC(0x020ACA90, int32_t, plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA_HVujqEvIFcMKdvpImleAuaPcoEPv, (plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA * __this, plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA_QEirwUTXDJlRbyOtHactBdFdXgSR * param_0000a0ac, MethodInfo * method)); DO_APP_FUNC(0x020ACB40, void, plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA_KlkBjwjuozSIWjtafFupuZDYyxHfA, (plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA * __this, int32_t param_0000a0ad, int32_t param_0000a0ae, MethodInfo * method)); DO_APP_FUNC(0x020ACC10, bool, plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA_QEirwUTXDJlRbyOtHactBdFdXgSR_NWhioGIQTHWIJiNJWGzSJyccbFph, (plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA_QEirwUTXDJlRbyOtHactBdFdXgSR * __this, plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG * param_0000a0af, plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA_KoOumEAvjvAQhyhRGAodpJylYngj__Enum param_0000a0b0, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC4F88, plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA_QEirwUTXDJlRbyOtHactBdFdXgSR_NWhioGIQTHWIJiNJWGzSJyccbFph__MethodInfo); DO_APP_FUNC(0x003AE050, void, plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA_QEirwUTXDJlRbyOtHactBdFdXgSR__ctor, (plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA_QEirwUTXDJlRbyOtHactBdFdXgSR * __this, MethodInfo * method)); DO_APP_FUNC(0x00FDB5B0, void, plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA_BEqvclfNAlKPJcyFrcJtxbAcfxREA__ctor, (plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA_BEqvclfNAlKPJcyFrcJtxbAcfxREA * __this, int32_t param_0000a0b1, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA_BEqvclfNAlKPJcyFrcJtxbAcfxREA_System_IDisposable_Dispose, (plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA_BEqvclfNAlKPJcyFrcJtxbAcfxREA * __this, MethodInfo * method)); DO_APP_FUNC(0x020ACDA0, bool, plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA_BEqvclfNAlKPJcyFrcJtxbAcfxREA_MoveNext, (plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA_BEqvclfNAlKPJcyFrcJtxbAcfxREA * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA_QEirwUTXDJlRbyOtHactBdFdXgSR *, plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA_BEqvclfNAlKPJcyFrcJtxbAcfxREA_System_Collections_Generic_IEnumerator_Rewired_FallbackInputManager_JoystickRecords_Record__get_Current, (plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA_BEqvclfNAlKPJcyFrcJtxbAcfxREA * __this, MethodInfo * method)); DO_APP_FUNC(0x020ACED0, void, plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA_BEqvclfNAlKPJcyFrcJtxbAcfxREA_System_Collections_IEnumerator_Reset, (plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA_BEqvclfNAlKPJcyFrcJtxbAcfxREA * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC4F90, plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA_BEqvclfNAlKPJcyFrcJtxbAcfxREA_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA_BEqvclfNAlKPJcyFrcJtxbAcfxREA_System_Collections_IEnumerator_get_Current, (plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA_BEqvclfNAlKPJcyFrcJtxbAcfxREA * __this, MethodInfo * method)); DO_APP_FUNC(0x020ACF20, IEnumerator_1_plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA_QEirwUTXDJlRbyOtHactBdFdXgSR_ *, plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA_BEqvclfNAlKPJcyFrcJtxbAcfxREA_System_Collections_Generic_IEnumerable_Rewired_FallbackInputManager_JoystickRecords_Record__GetEnumerator, (plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA_BEqvclfNAlKPJcyFrcJtxbAcfxREA * __this, MethodInfo * method)); DO_APP_FUNC(0x020AD0E0, IEnumerator *, plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA_BEqvclfNAlKPJcyFrcJtxbAcfxREA_System_Collections_IEnumerable_GetEnumerator, (plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA_BEqvclfNAlKPJcyFrcJtxbAcfxREA * __this, MethodInfo * method)); @@ -41481,9 +49079,11 @@ DO_APP_FUNC(0x003BB3B0, Player__Array *, rmOEevBvfrQDGKHWQeGbdjrwKrIx_TbzUQRVSpl DO_APP_FUNC(0x003C7320, IList_1_Rewired_Player_ *, rmOEevBvfrQDGKHWQeGbdjrwKrIx_nAXlcxZngqGJzhvwcMCFcyBaBeHGc, (rmOEevBvfrQDGKHWQeGbdjrwKrIx * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB330, IList_1_Rewired_Player_ *, rmOEevBvfrQDGKHWQeGbdjrwKrIx_DDaXiUhWkcugLFYTgbmPYLoBcwim, (rmOEevBvfrQDGKHWQeGbdjrwKrIx * __this, MethodInfo * method)); DO_APP_FUNC(0x020AD0F0, void, rmOEevBvfrQDGKHWQeGbdjrwKrIx_LIeljCbdoWdgBAecluMnblrpCnHu, (rmOEevBvfrQDGKHWQeGbdjrwKrIx * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC4F60, rmOEevBvfrQDGKHWQeGbdjrwKrIx_LIeljCbdoWdgBAecluMnblrpCnHu__MethodInfo); DO_APP_FUNC(0x020AD880, void, rmOEevBvfrQDGKHWQeGbdjrwKrIx_irsobizeyGSrhCgfeiKcXSEBuceF, (rmOEevBvfrQDGKHWQeGbdjrwKrIx * __this, Joystick * param_0000a0b3, MethodInfo * method)); DO_APP_FUNC(0x020ADB90, void, rmOEevBvfrQDGKHWQeGbdjrwKrIx_LtmErFTvmImMTdGbyfeJfMLtjRmP, (rmOEevBvfrQDGKHWQeGbdjrwKrIx * __this, Joystick * param_0000a0b4, MethodInfo * method)); DO_APP_FUNC(0x020ADBC0, void, rmOEevBvfrQDGKHWQeGbdjrwKrIx_MAtoFvuLYySnKPMFswUKIJkFkfNT, (rmOEevBvfrQDGKHWQeGbdjrwKrIx * __this, ControllerType__Enum param_0000a0b5, int32_t param_0000a0b6, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9730, rmOEevBvfrQDGKHWQeGbdjrwKrIx_MAtoFvuLYySnKPMFswUKIJkFkfNT__MethodInfo); DO_APP_FUNC(0x020ADD60, Player *, rmOEevBvfrQDGKHWQeGbdjrwKrIx_MJkElpFYqWCPwxBOZnOElZjiSdKH, (rmOEevBvfrQDGKHWQeGbdjrwKrIx * __this, int32_t param_0000a0b7, MethodInfo * method)); DO_APP_FUNC(0x020ADEA0, Player *, rmOEevBvfrQDGKHWQeGbdjrwKrIx_MJkElpFYqWCPwxBOZnOElZjiSdKH_1, (rmOEevBvfrQDGKHWQeGbdjrwKrIx * __this, String * param_0000a0b8, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Player *, rmOEevBvfrQDGKHWQeGbdjrwKrIx_FZzatAdcbQAOMTAHsNftCzbiwmFE, (rmOEevBvfrQDGKHWQeGbdjrwKrIx * __this, MethodInfo * method)); @@ -41514,6 +49114,7 @@ DO_APP_FUNC(0x020AF760, int32_t, rmOEevBvfrQDGKHWQeGbdjrwKrIx_ULqrAXoCQVPUYuIAgB DO_APP_FUNC(0x020AF8C0, int32_t, rmOEevBvfrQDGKHWQeGbdjrwKrIx_IYymmjPqaLxcxqgDZSCTCkdCdwzQ, (rmOEevBvfrQDGKHWQeGbdjrwKrIx * __this, int32_t param_0000a0dc, MethodInfo * method)); DO_APP_FUNC(0x020AFA60, bool, ActionElementMap_mmdyTFCKVNvCpuVkQmfeZZUstqkk, (ActionElementMap * param_0000a0dd, MethodInfo * method)); DO_APP_FUNC(0x020AFB10, void, ActionElementMap_laicSdEALWcmKyIPCrqzrteCqiOq, (ActionElementMap * param_0000a0de, ActionElementMap * param_0000a0df, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC4F00, ActionElementMap_laicSdEALWcmKyIPCrqzrteCqiOq__MethodInfo); DO_APP_FUNC(0x003BCD70, int32_t, ActionElementMap_get_actionId, (ActionElementMap * __this, MethodInfo * method)); DO_APP_FUNC(0x020AFD30, void, ActionElementMap_set_actionId, (ActionElementMap * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, ControllerElementType__Enum, ActionElementMap_get_elementType, (ActionElementMap * __this, MethodInfo * method)); @@ -41559,16 +49160,21 @@ DO_APP_FUNC(0x020B0A10, bool, ActionElementMap_CheckForAssignmentConflict_1, (Ac DO_APP_FUNC(0x020B0AA0, bool, ActionElementMap_ShowInField, (ActionElementMap * __this, AxisRange__Enum fieldActionRange, MethodInfo * method)); DO_APP_FUNC(0x020B0C20, bool, ActionElementMap_IsTarget, (ActionElementMap * __this, ControllerElementTarget elementTarget, MethodInfo * method)); DO_APP_FUNC(0x020B0CC0, bool, ActionElementMap_IsTarget_1, (ActionElementMap * __this, IControllerElementTarget * elementTarget, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC4F08, ActionElementMap_IsTarget_1__MethodInfo); DO_APP_FUNC(0x020B0E50, void, ActionElementMap_LVenmcaXbqMmYeWnREpQMSMUvyrN, (ActionElementMap * __this, ControllerMap * param_0000a107, MethodInfo * method)); DO_APP_FUNC(0x020B0F30, void, ActionElementMap_vhqtSJxabOdpJEDgrOnOFuwfKLykb, (ActionElementMap * __this, ControllerMap * param_0000a108, HardwareControllerMap_Game * param_0000a109, MethodInfo * method)); DO_APP_FUNC(0x020B1000, void, ActionElementMap_LVenmcaXbqMmYeWnREpQMSMUvyrN_1, (ActionElementMap * __this, bool param_0000a10a, MethodInfo * method)); DO_APP_FUNC(0x020B1090, void, ActionElementMap_LVenmcaXbqMmYeWnREpQMSMUvyrN_2, (ActionElementMap * __this, ControllerType__Enum param_0000a10b, HardwareControllerMap_Game * param_0000a10c, bool param_0000a10d, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC4E78, ActionElementMap_LVenmcaXbqMmYeWnREpQMSMUvyrN_2__MethodInfo); DO_APP_FUNC(0x020B1540, void, ActionElementMap_aLvtDhsMTBZAnHWDDDsWLNdPqLSd, (ActionElementMap * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC4E80, ActionElementMap_aLvtDhsMTBZAnHWDDDsWLNdPqLSd__MethodInfo); DO_APP_FUNC(0x020B1850, String *, ActionElementMap_ncmsrjZHjnUWavwVkFZFCWmVXxxh, (ActionElementMap * __this, MethodInfo * method)); DO_APP_FUNC(0x020B1C00, void, ActionElementMap_sjgQXMMRIHmhSmDrVpgFKxoFoOIy, (ActionElementMap * __this, MethodInfo * method)); DO_APP_FUNC(0x020B1D70, bool, ActionElementMap_FtyLxbotPOjpzCFaTEpgdmNScVFk, (ActionElementMap * __this, KeyboardKeyCode__Enum param_0000a10e, ModifierKeyFlags__Enum param_0000a10f, MethodInfo * method)); DO_APP_FUNC(0x020B1E70, bool, ActionElementMap_vwTrsmrLzsNAuyGFiEiagzPiwyUe, (ActionElementMap * __this, int32_t param_0000a110, AxisRange__Enum param_0000a111, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC4E60, ActionElementMap_vwTrsmrLzsNAuyGFiEiagzPiwyUe__MethodInfo); DO_APP_FUNC(0x020B1F00, bool, ActionElementMap_hGylBjmOYAbgoepklZfETuiJFyXVA, (ActionElementMap * __this, ElementAssignmentType__Enum param_0000a112, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC4E68, ActionElementMap_hGylBjmOYAbgoepklZfETuiJFyXVA__MethodInfo); DO_APP_FUNC(0x020B1F90, void, ActionElementMap_myuHstsianBJbOgGKosAJMEChEECA, (ActionElementMap * __this, MethodInfo * method)); DO_APP_FUNC(0x020B1FB0, void, ActionElementMap_RqfgTxpoMfdnCHpNJPFohQrHQVJL, (ActionElementMap * __this, MethodInfo * method)); DO_APP_FUNC(0x020B2060, void, ActionElementMap_uZtuaeEOnyYpMXssFWlfkqWhlCsk, (ActionElementMap * __this, MethodInfo * method)); @@ -41638,9 +49244,9 @@ DO_APP_FUNC(0x020B6AC0, void, AxisCalibration_InitHardwareCalibrations, (AxisCal DO_APP_FUNC(0x020B6DC0, void, AxisCalibration_CreateDefaultHardwareCalibration, (AxisCalibration * __this, AxisCalibrationData defaultData, MethodInfo * method)); DO_APP_FUNC(0x020B6EC0, AxisCalibrationInfo *, AxisCalibration_GetHardwareDefault, (AxisCalibration * __this, MethodInfo * method)); DO_APP_FUNC(0x020B6F90, AxisCalibration *, AxisCalibration_CreateRelative, (MethodInfo * method)); -DO_APP_FUNC(0x020B72A0, void, AxisCalibrationData__ctor, (AxisCalibrationData__Boxed * __this, bool param_0000a158, float param_0000a159, float param_0000a15a, float param_0000a15b, float param_0000a15c, bool param_0000a15d, bool param_0000a15e, MethodInfo * method)); -DO_APP_FUNC(0x020B74B0, void, AxisCalibrationData__ctor_1, (AxisCalibrationData__Boxed * __this, bool param_0000a15f, float param_0000a160, float param_0000a161, float param_0000a162, float param_0000a163, bool param_0000a164, bool param_0000a165, float param_0000a166, MethodInfo * method)); -DO_APP_FUNC(0x020B76C0, void, AxisCalibrationData__ctor_2, (AxisCalibrationData__Boxed * __this, bool param_0000a167, float param_0000a168, float param_0000a169, float param_0000a16a, float param_0000a16b, bool param_0000a16c, bool param_0000a16d, AxisSensitivityType__Enum param_0000a16e, float param_0000a16f, AnimationCurve * param_0000a170, MethodInfo * method)); +DO_APP_FUNC(0x020B72A0, void, AxisCalibrationData__ctor, (AxisCalibrationData * __this, bool param_0000a158, float param_0000a159, float param_0000a15a, float param_0000a15b, float param_0000a15c, bool param_0000a15d, bool param_0000a15e, MethodInfo * method)); +DO_APP_FUNC(0x020B74B0, void, AxisCalibrationData__ctor_1, (AxisCalibrationData * __this, bool param_0000a15f, float param_0000a160, float param_0000a161, float param_0000a162, float param_0000a163, bool param_0000a164, bool param_0000a165, float param_0000a166, MethodInfo * method)); +DO_APP_FUNC(0x020B76C0, void, AxisCalibrationData__ctor_2, (AxisCalibrationData * __this, bool param_0000a167, float param_0000a168, float param_0000a169, float param_0000a16a, float param_0000a16b, bool param_0000a16c, bool param_0000a16d, AxisSensitivityType__Enum param_0000a16e, float param_0000a16f, AnimationCurve * param_0000a170, MethodInfo * method)); DO_APP_FUNC(0x020B77C0, AxisCalibrationData, AxisCalibrationData_get_Default, (MethodInfo * method)); DO_APP_FUNC(0x020B7930, AxisCalibrationData, AxisCalibrationData_get_Raw, (MethodInfo * method)); DO_APP_FUNC(0x003BCD50, DeadZone2DType__Enum, Axis2DCalibration_get_deadZoneType, (Axis2DCalibration * __this, MethodInfo * method)); @@ -41650,6 +49256,7 @@ DO_APP_FUNC(0x003BCD80, void, Axis2DCalibration_set_sensitivityType, (Axis2DCali DO_APP_FUNC(0x01A1DED0, void, Axis2DCalibration__ctor, (Axis2DCalibration * __this, MethodInfo * method)); DO_APP_FUNC(0x020B7AA0, Vector2, Axis2DCalibration_GetCalibrated2DValue, (Axis2DCalibration * __this, float valueRawX, float valueRawY, AxisCalibration * xAxis, AxisCalibration * yAxis, MethodInfo * method)); DO_APP_FUNC(0x020B7AE0, Vector2, Axis2DCalibration_GetCalibrated2DValue_1, (float valueRawX, float valueRawY, AxisCalibration * xAxis, AxisCalibration * yAxis, DeadZone2DType__Enum deadZoneType, AxisSensitivity2DType__Enum sensitivityType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC4C68, Axis2DCalibration_GetCalibrated2DValue_1__MethodInfo); DO_APP_FUNC(0x003BCD50, int32_t, ControllerElementIdentifier_get_id, (ControllerElementIdentifier * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, String *, ControllerElementIdentifier_get_name, (ControllerElementIdentifier * __this, MethodInfo * method)); DO_APP_FUNC(0x020B80E0, void, ControllerElementIdentifier_set_name, (ControllerElementIdentifier * __this, String * value, MethodInfo * method)); @@ -41667,11 +49274,13 @@ DO_APP_FUNC(0x020B84A0, void, ControllerElementIdentifier__ctor_3, (ControllerEl DO_APP_FUNC(0x020B85C0, void, ControllerElementIdentifier__ctor_4, (ControllerElementIdentifier * __this, ControllerElementIdentifier * param_0000a18e, bool param_0000a18f, ControllerElementType__Enum param_0000a190, MethodInfo * method)); DO_APP_FUNC(0x020B8600, ControllerElementIdentifier *, ControllerElementIdentifier_Clone, (ControllerElementIdentifier * __this, MethodInfo * method)); DO_APP_FUNC(0x020B8670, String *, ControllerElementIdentifier_GetDisplayName, (ControllerElementIdentifier * __this, ControllerElementType__Enum actualElementType, AxisRange__Enum axisRange, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC4C38, ControllerElementIdentifier_GetDisplayName__MethodInfo); DO_APP_FUNC(0x020B87C0, String *, ControllerElementIdentifier_GetDisplayName_1, (ControllerElementIdentifier * __this, AxisRange__Enum axisRange, MethodInfo * method)); DO_APP_FUNC(0x020B87D0, Object *, ControllerElementIdentifier_Rewired_Interfaces_IControllerElementIdentifierCommon_Internal_get_elementType, (ControllerElementIdentifier * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, ControllerElementIdentifier_Rewired_Interfaces_IControllerElementIdentifierCommon_Internal_get_useEditorElementTypeOverride, (ControllerElementIdentifier * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7300, ControllerElementType__Enum, ControllerElementIdentifier_Rewired_Interfaces_IControllerElementIdentifierCommon_Internal_get_editorElementTypeOverride, (ControllerElementIdentifier * __this, MethodInfo * method)); DO_APP_FUNC(0x020B8820, void, ControllerElementIdentifier_PqxGkoxWyIwBnWzeJmkFRegOSOsk, (ControllerElementIdentifier * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC4C08, ControllerElementIdentifier_PqxGkoxWyIwBnWzeJmkFRegOSOsk__MethodInfo); DO_APP_FUNC(0x020B8890, ControllerElementIdentifier *, ControllerElementIdentifier_get_BlankReadOnly, (MethodInfo * method)); DO_APP_FUNC(0x003BCD50, int32_t, ControllerTemplateElementIdentifier_get_id, (ControllerTemplateElementIdentifier * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, String *, ControllerTemplateElementIdentifier_get_name, (ControllerTemplateElementIdentifier * __this, MethodInfo * method)); @@ -41683,22 +49292,26 @@ DO_APP_FUNC(0x003C6500, void, ControllerTemplateElementIdentifier_set_negativeNa DO_APP_FUNC(0x003C7300, ControllerTemplateElementType__Enum, ControllerTemplateElementIdentifier_get_elementType, (ControllerTemplateElementIdentifier * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, ControllerTemplateElementIdentifier_get_useEditorElementTypeOverride, (ControllerTemplateElementIdentifier * __this, MethodInfo * method)); DO_APP_FUNC(0x020B8960, ControllerElementType__Enum, ControllerTemplateElementIdentifier_get_editorElementTypeOverride, (ControllerTemplateElementIdentifier * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC4D18, ControllerTemplateElementIdentifier_get_editorElementTypeOverride__MethodInfo); DO_APP_FUNC(0x003AE050, void, ControllerTemplateElementIdentifier__ctor, (ControllerTemplateElementIdentifier * __this, MethodInfo * method)); DO_APP_FUNC(0x020B89B0, void, ControllerTemplateElementIdentifier__ctor_1, (ControllerTemplateElementIdentifier * __this, ControllerTemplateElementIdentifier * param_0000a197, MethodInfo * method)); DO_APP_FUNC(0x020B8AE0, void, ControllerTemplateElementIdentifier__ctor_2, (ControllerTemplateElementIdentifier * __this, int32_t param_0000a198, String * param_0000a199, String * param_0000a19a, String * param_0000a19b, ControllerTemplateElementType__Enum param_0000a19c, bool param_0000a19d, MethodInfo * method)); DO_APP_FUNC(0x020B8BF0, void, ControllerTemplateElementIdentifier__ctor_3, (ControllerTemplateElementIdentifier * __this, ControllerTemplateElementIdentifier * param_0000a19e, ControllerTemplateElementType__Enum param_0000a19f, bool param_0000a1a0, MethodInfo * method)); DO_APP_FUNC(0x020B8C30, ControllerTemplateElementIdentifier *, ControllerTemplateElementIdentifier_Clone, (ControllerTemplateElementIdentifier * __this, MethodInfo * method)); DO_APP_FUNC(0x020B8CA0, String *, ControllerTemplateElementIdentifier_GetDisplayName, (ControllerTemplateElementIdentifier * __this, AxisRange__Enum axisRange, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC4D08, ControllerTemplateElementIdentifier_GetDisplayName__MethodInfo); DO_APP_FUNC(0x020B8DA0, ControllerElementIdentifier *, ControllerTemplateElementIdentifier_ToControllerElementIdentifier, (ControllerTemplateElementIdentifier * __this, MethodInfo * method)); DO_APP_FUNC(0x020B8EC0, Object *, ControllerTemplateElementIdentifier_Rewired_Interfaces_IControllerElementIdentifierCommon_Internal_get_elementType, (ControllerTemplateElementIdentifier * __this, MethodInfo * method)); DO_APP_FUNC(0x020B8F10, bool, ControllerTemplateElementIdentifier_Rewired_Interfaces_IControllerElementIdentifierCommon_Internal_get_useEditorElementTypeOverride, (ControllerTemplateElementIdentifier * __this, MethodInfo * method)); DO_APP_FUNC(0x00C27300, ControllerElementType__Enum, ControllerTemplateElementIdentifier_Rewired_Interfaces_IControllerElementIdentifierCommon_Internal_get_editorElementTypeOverride, (ControllerTemplateElementIdentifier * __this, MethodInfo * method)); DO_APP_FUNC(0x020B8F30, void, ControllerMapEnabler__ctor, (ControllerMapEnabler * __this, Player * param_0000a1a2, ControllerMapEnabler_OKJjdMVAalCqZcLQzdQgZmMptzek * param_0000a1a3, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC4CA8, ControllerMapEnabler__ctor__MethodInfo); DO_APP_FUNC(0x003BCD20, bool, ControllerMapEnabler_get_enabled, (ControllerMapEnabler * __this, MethodInfo * method)); DO_APP_FUNC(0x020B90F0, void, ControllerMapEnabler_set_enabled, (ControllerMapEnabler * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x003BB330, List_1_Rewired_ControllerMapEnabler_RuleSet_ *, ControllerMapEnabler_get_ruleSets, (ControllerMapEnabler * __this, MethodInfo * method)); DO_APP_FUNC(0x020B9100, void, ControllerMapEnabler_set_ruleSets, (ControllerMapEnabler * __this, List_1_Rewired_ControllerMapEnabler_RuleSet_ * value, MethodInfo * method)); DO_APP_FUNC(0x020B91D0, void, ControllerMapEnabler_Apply, (ControllerMapEnabler * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8BB8, ControllerMapEnabler_Apply__MethodInfo); DO_APP_FUNC(0x020B9520, void, ControllerMapEnabler_LoadDefaults, (ControllerMapEnabler * __this, MethodInfo * method)); DO_APP_FUNC(0x020B97C0, String *, ControllerMapEnabler_ToXmlString, (ControllerMapEnabler * __this, MethodInfo * method)); DO_APP_FUNC(0x020B9970, String *, ControllerMapEnabler_ToJsonString, (ControllerMapEnabler * __this, MethodInfo * method)); @@ -41709,6 +49322,7 @@ DO_APP_FUNC(0x020B9F40, void, ControllerMapEnabler_UHLgoHamvyOzducEmiGCDFddEAzTb DO_APP_FUNC(0x020BA8F0, bool, ControllerMapEnabler_WNbVEfxCrMFzNsCNGLLeSCQGYXQB, (ControllerMapEnabler * __this, SerializedObject * param_0000a1a9, MethodInfo * method)); DO_APP_FUNC(0x020BAB50, void, ControllerMapEnabler_Rule__ctor, (ControllerMapEnabler_Rule * __this, MethodInfo * method)); DO_APP_FUNC(0x020BACE0, void, ControllerMapEnabler_Rule__ctor_1, (ControllerMapEnabler_Rule * __this, ControllerMapEnabler_Rule * param_0000a1aa, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC4A68, ControllerMapEnabler_Rule__ctor_1__MethodInfo); DO_APP_FUNC(0x020BB030, void, ControllerMapEnabler_Rule__ctor_2, (ControllerMapEnabler_Rule * __this, String * param_0000a1ab, bool param_0000a1ac, Int32__Array * param_0000a1ad, Int32__Array * param_0000a1ae, ControllerSetSelector * param_0000a1af, MethodInfo * method)); DO_APP_FUNC(0x020BB190, bool, ControllerMapEnabler_Rule_get_appliesToAllLayouts, (ControllerMapEnabler_Rule * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, String *, ControllerMapEnabler_Rule_get_tag, (ControllerMapEnabler_Rule * __this, MethodInfo * method)); @@ -41747,10 +49361,15 @@ DO_APP_FUNC(0x020BDE90, void, ControllerMapEnabler_RuleSet_set_rules, (Controlle DO_APP_FUNC(0x020BDEF0, void, ControllerMapEnabler_RuleSet__ctor, (ControllerMapEnabler_RuleSet * __this, bool param_0000a1bf, String * param_0000a1c0, List_1_Rewired_ControllerMapEnabler_Rule_ * param_0000a1c1, MethodInfo * method)); DO_APP_FUNC(0x020BE0A0, void, ControllerMapEnabler_RuleSet__ctor_1, (ControllerMapEnabler_RuleSet * __this, MethodInfo * method)); DO_APP_FUNC(0x020BE170, void, ControllerMapEnabler_RuleSet__ctor_2, (ControllerMapEnabler_RuleSet * __this, ControllerMapEnabler_RuleSet * param_0000a1c2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC49E0, ControllerMapEnabler_RuleSet__ctor_2__MethodInfo); DO_APP_FUNC(0x020BE320, ControllerMapEnabler_Rule *, ControllerMapEnabler_RuleSet_Find, (ControllerMapEnabler_RuleSet * __this, Predicate_1_Rewired_ControllerMapEnabler_Rule_ * predicate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC4958, ControllerMapEnabler_RuleSet_Find__MethodInfo); DO_APP_FUNC(0x020BE4E0, ControllerMapEnabler_Rule *, ControllerMapEnabler_RuleSet_FindLast, (ControllerMapEnabler_RuleSet * __this, Predicate_1_Rewired_ControllerMapEnabler_Rule_ * predicate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC4928, ControllerMapEnabler_RuleSet_FindLast__MethodInfo); DO_APP_FUNC(0x020BE670, int32_t, ControllerMapEnabler_RuleSet_FindIndex, (ControllerMapEnabler_RuleSet * __this, Predicate_1_Rewired_ControllerMapEnabler_Rule_ * predicate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC4910, ControllerMapEnabler_RuleSet_FindIndex__MethodInfo); DO_APP_FUNC(0x020BE810, int32_t, ControllerMapEnabler_RuleSet_FindLastIndex, (ControllerMapEnabler_RuleSet * __this, Predicate_1_Rewired_ControllerMapEnabler_Rule_ * predicate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC4900, ControllerMapEnabler_RuleSet_FindLastIndex__MethodInfo); DO_APP_FUNC(0x020BE990, int32_t, ControllerMapEnabler_RuleSet_IndexOf, (ControllerMapEnabler_RuleSet * __this, ControllerMapEnabler_Rule * item, MethodInfo * method)); DO_APP_FUNC(0x020BE9E0, void, ControllerMapEnabler_RuleSet_Insert, (ControllerMapEnabler_RuleSet * __this, int32_t index, ControllerMapEnabler_Rule * item, MethodInfo * method)); DO_APP_FUNC(0x020BEA60, void, ControllerMapEnabler_RuleSet_RemoveAt, (ControllerMapEnabler_RuleSet * __this, int32_t index, MethodInfo * method)); @@ -41771,6 +49390,7 @@ DO_APP_FUNC(0x018DDE30, void, ControllerMapEnabler_OKJjdMVAalCqZcLQzdQgZmMptzek_ DO_APP_FUNC(0x020BF3C0, void, ControllerMapLayoutManager_wThuijrtUhWWBsDoXJydERnkHUcg, (ControllerMapLayoutManager * __this, Action * param_0000a1d5, MethodInfo * method)); DO_APP_FUNC(0x020BF4B0, void, ControllerMapLayoutManager_QOOuqfHrncYjhLTXFrJHnjOWcmoE, (ControllerMapLayoutManager * __this, Action * param_0000a1d6, MethodInfo * method)); DO_APP_FUNC(0x020BF5A0, void, ControllerMapLayoutManager__ctor, (ControllerMapLayoutManager * __this, Player * param_0000a1d7, ControllerMapLayoutManager_OAjbFOivILIoOuJJWeCBbjSYTLeUA * param_0000a1d8, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC4818, ControllerMapLayoutManager__ctor__MethodInfo); DO_APP_FUNC(0x003BCD20, bool, ControllerMapLayoutManager_get_enabled, (ControllerMapLayoutManager * __this, MethodInfo * method)); DO_APP_FUNC(0x020BF770, void, ControllerMapLayoutManager_set_enabled, (ControllerMapLayoutManager * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x00424BF0, bool, ControllerMapLayoutManager_get_loadFromUserDataStore, (ControllerMapLayoutManager * __this, MethodInfo * method)); @@ -41789,6 +49409,7 @@ DO_APP_FUNC(0x020C1950, bool, ControllerMapLayoutManager_WNbVEfxCrMFzNsCNGLLeSCQ DO_APP_FUNC(0x020C1C00, void, ControllerMapLayoutManager_OAjbFOivILIoOuJJWeCBbjSYTLeUA__ctor, (ControllerMapLayoutManager_OAjbFOivILIoOuJJWeCBbjSYTLeUA * __this, bool param_0000a1e0, bool param_0000a1e1, XXNesqlLzdVyNWEawBsQGxYGjphX__Array * param_0000a1e2, MethodInfo * method)); DO_APP_FUNC(0x020C1C60, void, ControllerMapLayoutManager_Rule__ctor, (ControllerMapLayoutManager_Rule * __this, MethodInfo * method)); DO_APP_FUNC(0x020C1D90, void, ControllerMapLayoutManager_Rule__ctor_1, (ControllerMapLayoutManager_Rule * __this, ControllerMapLayoutManager_Rule * param_0000a1e3, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC4750, ControllerMapLayoutManager_Rule__ctor_1__MethodInfo); DO_APP_FUNC(0x020C2090, void, ControllerMapLayoutManager_Rule__ctor_2, (ControllerMapLayoutManager_Rule * __this, String * param_0000a1e4, Int32__Array * param_0000a1e5, int32_t param_0000a1e6, ControllerSetSelector * param_0000a1e7, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, String *, ControllerMapLayoutManager_Rule_get_tag, (ControllerMapLayoutManager_Rule * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, ControllerMapLayoutManager_Rule_set_tag, (ControllerMapLayoutManager_Rule * __this, String * value, MethodInfo * method)); @@ -41818,10 +49439,15 @@ DO_APP_FUNC(0x020C3EF0, void, ControllerMapLayoutManager_RuleSet_set_rules, (Con DO_APP_FUNC(0x020C3F50, void, ControllerMapLayoutManager_RuleSet__ctor, (ControllerMapLayoutManager_RuleSet * __this, bool param_0000a1f3, String * param_0000a1f4, List_1_Rewired_ControllerMapLayoutManager_Rule_ * param_0000a1f5, MethodInfo * method)); DO_APP_FUNC(0x020C4100, void, ControllerMapLayoutManager_RuleSet__ctor_1, (ControllerMapLayoutManager_RuleSet * __this, MethodInfo * method)); DO_APP_FUNC(0x020C41D0, void, ControllerMapLayoutManager_RuleSet__ctor_2, (ControllerMapLayoutManager_RuleSet * __this, ControllerMapLayoutManager_RuleSet * param_0000a1f6, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC4670, ControllerMapLayoutManager_RuleSet__ctor_2__MethodInfo); DO_APP_FUNC(0x020C4380, ControllerMapLayoutManager_Rule *, ControllerMapLayoutManager_RuleSet_Find, (ControllerMapLayoutManager_RuleSet * __this, Predicate_1_Rewired_ControllerMapLayoutManager_Rule_ * predicate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC46E0, ControllerMapLayoutManager_RuleSet_Find__MethodInfo); DO_APP_FUNC(0x020C4540, ControllerMapLayoutManager_Rule *, ControllerMapLayoutManager_RuleSet_FindLast, (ControllerMapLayoutManager_RuleSet * __this, Predicate_1_Rewired_ControllerMapLayoutManager_Rule_ * predicate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC46C0, ControllerMapLayoutManager_RuleSet_FindLast__MethodInfo); DO_APP_FUNC(0x020C46D0, int32_t, ControllerMapLayoutManager_RuleSet_FindIndex, (ControllerMapLayoutManager_RuleSet * __this, Predicate_1_Rewired_ControllerMapLayoutManager_Rule_ * predicate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC46B0, ControllerMapLayoutManager_RuleSet_FindIndex__MethodInfo); DO_APP_FUNC(0x020C4870, int32_t, ControllerMapLayoutManager_RuleSet_FindLastIndex, (ControllerMapLayoutManager_RuleSet * __this, Predicate_1_Rewired_ControllerMapLayoutManager_Rule_ * predicate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC4618, ControllerMapLayoutManager_RuleSet_FindLastIndex__MethodInfo); DO_APP_FUNC(0x020C49F0, int32_t, ControllerMapLayoutManager_RuleSet_IndexOf, (ControllerMapLayoutManager_RuleSet * __this, ControllerMapLayoutManager_Rule * item, MethodInfo * method)); DO_APP_FUNC(0x020C4A40, void, ControllerMapLayoutManager_RuleSet_Insert, (ControllerMapLayoutManager_RuleSet * __this, int32_t index, ControllerMapLayoutManager_Rule * item, MethodInfo * method)); DO_APP_FUNC(0x020C4AC0, void, ControllerMapLayoutManager_RuleSet_RemoveAt, (ControllerMapLayoutManager_RuleSet * __this, int32_t index, MethodInfo * method)); @@ -41848,6 +49474,7 @@ DO_APP_FUNC(0x020C58B0, ControllerType__Enum, ControllerMapSaveData_get_controll DO_APP_FUNC(0x020C5950, String *, ControllerMapSaveData_get_controllerHardwareIdentifier, (ControllerMapSaveData * __this, MethodInfo * method)); DO_APP_FUNC(0x020C5A10, void, ControllerMapSaveData__ctor, (ControllerMapSaveData * __this, Controller * param_0000a207, ControllerMap * param_0000a208, MethodInfo * method)); DO_APP_FUNC(0x020C5B30, ControllerMapSaveData *, ControllerMapSaveData_FZPmmsnDnbvylVLEXMIlDLCjajwN, (Controller * param_0000a20b, ControllerMap * param_0000a20c, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5C88, ControllerMapSaveData_FZPmmsnDnbvylVLEXMIlDLCjajwN__MethodInfo); DO_APP_FUNC(0x020C5E90, KeyboardMap *, KeyboardMapSaveData_get_keyboardMap, (KeyboardMapSaveData * __this, MethodInfo * method)); DO_APP_FUNC(0x020C5F50, void, KeyboardMapSaveData__ctor, (KeyboardMapSaveData * __this, Keyboard * param_0000a20d, KeyboardMap * param_0000a20e, MethodInfo * method)); DO_APP_FUNC(0x020C5F60, MouseMap *, MouseMapSaveData_get_keyboardMap, (MouseMapSaveData * __this, MethodInfo * method)); @@ -41895,23 +49522,25 @@ DO_APP_FUNC(0x020C7B20, bool, ControllerMap_ContainsKeyboardKey, (ControllerMap DO_APP_FUNC(0x020C7C80, bool, ControllerMap_ContainsElementMap, (ControllerMap * __this, ActionElementMap * elementMap, MethodInfo * method)); DO_APP_FUNC(0x020C7DA0, bool, ControllerMap_ContainsElementMap_1, (ControllerMap * __this, int32_t elementMapId, MethodInfo * method)); DO_APP_FUNC(0x020C7EC0, bool, ControllerMap_ReplaceOrCreateElementMap, (ControllerMap * __this, ElementAssignment elementAssignment, MethodInfo * method)); -DO_APP_FUNC(0x020C7F90, bool, ControllerMap_ReplaceOrCreateElementMap_1, (ControllerMap * __this, ElementAssignment elementAssignment, ActionElementMap * result, MethodInfo * method)); +DO_APP_FUNC(0x020C7F90, bool, ControllerMap_ReplaceOrCreateElementMap_1, (ControllerMap * __this, ElementAssignment elementAssignment, ActionElementMap * * result, MethodInfo * method)); DO_APP_FUNC(0x020C8100, bool, ControllerMap_CreateElementMap, (ControllerMap * __this, ElementAssignment elementAssignment, MethodInfo * method)); -DO_APP_FUNC(0x020C81D0, bool, ControllerMap_CreateElementMap_1, (ControllerMap * __this, ElementAssignment elementAssignment, ActionElementMap * result, MethodInfo * method)); +DO_APP_FUNC(0x020C81D0, bool, ControllerMap_CreateElementMap_1, (ControllerMap * __this, ElementAssignment elementAssignment, ActionElementMap * * result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5C40, ControllerMap_CreateElementMap_1__MethodInfo); DO_APP_FUNC(0x020C83A0, bool, ControllerMap_CreateElementMap_2, (ControllerMap * __this, int32_t actionId, Pole__Enum axisContribution, KeyCode__Enum keyCode, ModifierKey__Enum modifierKey1, ModifierKey__Enum modifierKey2, ModifierKey__Enum modifierKey3, MethodInfo * method)); -DO_APP_FUNC(0x020C83F0, bool, ControllerMap_CreateElementMap_3, (ControllerMap * __this, int32_t actionId, Pole__Enum axisContribution, KeyCode__Enum keyCode, ModifierKey__Enum modifierKey1, ModifierKey__Enum modifierKey2, ModifierKey__Enum modifierKey3, ActionElementMap * result, MethodInfo * method)); +DO_APP_FUNC(0x020C83F0, bool, ControllerMap_CreateElementMap_3, (ControllerMap * __this, int32_t actionId, Pole__Enum axisContribution, KeyCode__Enum keyCode, ModifierKey__Enum modifierKey1, ModifierKey__Enum modifierKey2, ModifierKey__Enum modifierKey3, ActionElementMap * * result, MethodInfo * method)); DO_APP_FUNC(0x020C8630, bool, ControllerMap_CreateElementMap_4, (ControllerMap * __this, int32_t actionId, Pole__Enum axisContribution, KeyCode__Enum keyCode, ModifierKeyFlags__Enum modifierKeyFlags, MethodInfo * method)); -DO_APP_FUNC(0x020C8660, bool, ControllerMap_CreateElementMap_5, (ControllerMap * __this, int32_t actionId, Pole__Enum axisContribution, KeyCode__Enum keyCode, ModifierKeyFlags__Enum modifierKeyFlags, ActionElementMap * result, MethodInfo * method)); +DO_APP_FUNC(0x020C8660, bool, ControllerMap_CreateElementMap_5, (ControllerMap * __this, int32_t actionId, Pole__Enum axisContribution, KeyCode__Enum keyCode, ModifierKeyFlags__Enum modifierKeyFlags, ActionElementMap * * result, MethodInfo * method)); DO_APP_FUNC(0x020C87C0, bool, ControllerMap_CreateElementMap_6, (ControllerMap * __this, int32_t actionId, Pole__Enum axisContribution, int32_t elementIdentifierId, ControllerElementType__Enum elementType, AxisRange__Enum axisRange, bool invert, MethodInfo * method)); -DO_APP_FUNC(0x020C8820, bool, ControllerMap_CreateElementMap_7, (ControllerMap * __this, int32_t actionId, Pole__Enum axisContribution, int32_t elementIdentifierId, ControllerElementType__Enum elementType, AxisRange__Enum axisRange, bool invert, ActionElementMap * result, MethodInfo * method)); +DO_APP_FUNC(0x020C8820, bool, ControllerMap_CreateElementMap_7, (ControllerMap * __this, int32_t actionId, Pole__Enum axisContribution, int32_t elementIdentifierId, ControllerElementType__Enum elementType, AxisRange__Enum axisRange, bool invert, ActionElementMap * * result, MethodInfo * method)); DO_APP_FUNC(0x020C8A70, bool, ControllerMap_ReplaceElementMap, (ControllerMap * __this, ElementAssignment elementAssignment, MethodInfo * method)); -DO_APP_FUNC(0x020C8AB0, bool, ControllerMap_ReplaceElementMap_1, (ControllerMap * __this, ElementAssignment elementAssignment, ActionElementMap * result, MethodInfo * method)); +DO_APP_FUNC(0x020C8AB0, bool, ControllerMap_ReplaceElementMap_1, (ControllerMap * __this, ElementAssignment elementAssignment, ActionElementMap * * result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5C38, ControllerMap_ReplaceElementMap_1__MethodInfo); DO_APP_FUNC(0x020C8CB0, bool, ControllerMap_ReplaceElementMap_2, (ControllerMap * __this, int32_t elementMapId, int32_t actionId, Pole__Enum axisContribution, KeyCode__Enum keyCode, ModifierKey__Enum modifierKey1, ModifierKey__Enum modifierKey2, ModifierKey__Enum modifierKey3, MethodInfo * method)); -DO_APP_FUNC(0x020C8D00, bool, ControllerMap_ReplaceElementMap_3, (ControllerMap * __this, int32_t elementMapId, int32_t actionId, Pole__Enum axisContribution, KeyCode__Enum keyCode, ModifierKey__Enum modifierKey1, ModifierKey__Enum modifierKey2, ModifierKey__Enum modifierKey3, ActionElementMap * result, MethodInfo * method)); +DO_APP_FUNC(0x020C8D00, bool, ControllerMap_ReplaceElementMap_3, (ControllerMap * __this, int32_t elementMapId, int32_t actionId, Pole__Enum axisContribution, KeyCode__Enum keyCode, ModifierKey__Enum modifierKey1, ModifierKey__Enum modifierKey2, ModifierKey__Enum modifierKey3, ActionElementMap * * result, MethodInfo * method)); DO_APP_FUNC(0x020C8FA0, bool, ControllerMap_ReplaceElementMap_4, (ControllerMap * __this, int32_t elementMapId, int32_t actionId, Pole__Enum axisContribution, KeyCode__Enum keyCode, ModifierKeyFlags__Enum modifierKeyFlags, MethodInfo * method)); -DO_APP_FUNC(0x020C9050, bool, ControllerMap_ReplaceElementMap_5, (ControllerMap * __this, int32_t elementMapId, int32_t actionId, Pole__Enum axisContribution, KeyCode__Enum keyCode, ModifierKeyFlags__Enum modifierKeyFlags, ActionElementMap * result, MethodInfo * method)); +DO_APP_FUNC(0x020C9050, bool, ControllerMap_ReplaceElementMap_5, (ControllerMap * __this, int32_t elementMapId, int32_t actionId, Pole__Enum axisContribution, KeyCode__Enum keyCode, ModifierKeyFlags__Enum modifierKeyFlags, ActionElementMap * * result, MethodInfo * method)); DO_APP_FUNC(0x020C9100, bool, ControllerMap_ReplaceElementMap_6, (ControllerMap * __this, int32_t elementMapId, int32_t actionId, Pole__Enum axisContribution, int32_t elementIdentifierId, ControllerElementType__Enum elementType, AxisRange__Enum axisRange, bool invert, MethodInfo * method)); -DO_APP_FUNC(0x020C9170, bool, ControllerMap_ReplaceElementMap_7, (ControllerMap * __this, int32_t elementMapId, int32_t actionId, Pole__Enum axisContribution, int32_t elementIdentifierId, ControllerElementType__Enum elementType, AxisRange__Enum axisRange, bool invert, ActionElementMap * result, MethodInfo * method)); +DO_APP_FUNC(0x020C9170, bool, ControllerMap_ReplaceElementMap_7, (ControllerMap * __this, int32_t elementMapId, int32_t actionId, Pole__Enum axisContribution, int32_t elementIdentifierId, ControllerElementType__Enum elementType, AxisRange__Enum axisRange, bool invert, ActionElementMap * * result, MethodInfo * method)); DO_APP_FUNC(0x020C93B0, bool, ControllerMap_DeleteElementMap, (ControllerMap * __this, int32_t elementMapId, MethodInfo * method)); DO_APP_FUNC(0x020C9470, bool, ControllerMap_DeleteElementMapsWithAction, (ControllerMap * __this, String * actionName, MethodInfo * method)); DO_APP_FUNC(0x020C9580, bool, ControllerMap_DeleteElementMapsWithAction_1, (ControllerMap * __this, int32_t actionId, MethodInfo * method)); @@ -41920,6 +49549,7 @@ DO_APP_FUNC(0x020C96C0, ActionElementMap__Array *, ControllerMap_GetElementMaps, DO_APP_FUNC(0x020C96D0, ActionElementMap__Array *, ControllerMap_GetElementMaps_1, (ControllerMap * __this, bool skipDisabledMaps, MethodInfo * method)); DO_APP_FUNC(0x020C99F0, int32_t, ControllerMap_GetElementMaps_2, (ControllerMap * __this, List_1_Rewired_ActionElementMap_ * results, MethodInfo * method)); DO_APP_FUNC(0x020C9B30, int32_t, ControllerMap_GetElementMaps_3, (ControllerMap * __this, bool skipDisabledMaps, List_1_Rewired_ActionElementMap_ * results, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5C08, ControllerMap_GetElementMaps_3__MethodInfo); DO_APP_FUNC(0x020C9C80, ActionElementMap__Array *, ControllerMap_GetElementMapsWithAction, (ControllerMap * __this, String * actionName, MethodInfo * method)); DO_APP_FUNC(0x020C9DF0, ActionElementMap__Array *, ControllerMap_GetElementMapsWithAction_1, (ControllerMap * __this, int32_t actionId, MethodInfo * method)); DO_APP_FUNC(0x020C9E00, ActionElementMap__Array *, ControllerMap_GetElementMapsWithAction_2, (ControllerMap * __this, String * actionName, bool skipDisabledMaps, MethodInfo * method)); @@ -41959,6 +49589,7 @@ DO_APP_FUNC(0x020CCC10, ActionElementMap *, ControllerMap_idiXOeVuuXbVTDMrcPmPRA DO_APP_FUNC(0x020CCC20, int32_t, ControllerMap_GetElementMapMatches, (ControllerMap * __this, Predicate_1_Rewired_ActionElementMap_ * predicate, List_1_Rewired_ActionElementMap_ * results, MethodInfo * method)); DO_APP_FUNC(0x020CCD00, int32_t, ControllerMap_YRTxLbJigofdOmnjXcMmhKqxQTrv, (ControllerMap * __this, Predicate_1_Rewired_ActionElementMap_ * param_0000a2d9, bool param_0000a2da, List_1_Rewired_ActionElementMap_ * param_0000a2db, bool param_0000a2dc, MethodInfo * method)); DO_APP_FUNC(0x020CCD20, void, ControllerMap_ForEachElementMapMatch, (ControllerMap * __this, Predicate_1_Rewired_ActionElementMap_ * predicate, Action_1_Rewired_ActionElementMap_ * actionToPerform, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5BF0, ControllerMap_ForEachElementMapMatch__MethodInfo); DO_APP_FUNC(0x020CCF60, void, ControllerMap_ClearElementMaps, (ControllerMap * __this, MethodInfo * method)); DO_APP_FUNC(0x020CD060, int32_t, ControllerMap_SetAllElementMapsEnabled, (ControllerMap * __this, bool state, MethodInfo * method)); DO_APP_FUNC(0x020CD190, ActionElementMap *, ControllerMap_GetButtonMap, (ControllerMap * __this, int32_t index, MethodInfo * method)); @@ -41983,9 +49614,12 @@ DO_APP_FUNC(0x020CE670, ActionElementMap *, ControllerMap_GetFirstButtonMapWithA DO_APP_FUNC(0x020CE7B0, ActionElementMap *, ControllerMap_GetFirstButtonMapWithAction_3, (ControllerMap * __this, String * actionName, bool skipDisabledMaps, MethodInfo * method)); DO_APP_FUNC(0x020CE920, ActionElementMap *, ControllerMap_GetFirstButtonMapMatch, (ControllerMap * __this, Predicate_1_Rewired_ActionElementMap_ * predicate, MethodInfo * method)); DO_APP_FUNC(0x020CE9D0, ActionElementMap *, ControllerMap_rDamqEsutEkrPJTOkMPFOPhGHvtO, (ControllerMap * __this, Predicate_1_Rewired_ActionElementMap_ * param_0000a301, bool param_0000a302, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5A08, ControllerMap_rDamqEsutEkrPJTOkMPFOPhGHvtO__MethodInfo); DO_APP_FUNC(0x020CEBB0, int32_t, ControllerMap_GetButtonMapMatches, (ControllerMap * __this, Predicate_1_Rewired_ActionElementMap_ * predicate, List_1_Rewired_ActionElementMap_ * results, MethodInfo * method)); DO_APP_FUNC(0x020CEC80, int32_t, ControllerMap_PHSGcOPrUKagjwGvIcGVXwYOuLve, (ControllerMap * __this, Predicate_1_Rewired_ActionElementMap_ * param_0000a305, bool param_0000a306, List_1_Rewired_ActionElementMap_ * param_0000a307, bool param_0000a308, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC59F8, ControllerMap_PHSGcOPrUKagjwGvIcGVXwYOuLve__MethodInfo); DO_APP_FUNC(0x020CEF60, void, ControllerMap_ForEachButtonMapMatch, (ControllerMap * __this, Predicate_1_Rewired_ActionElementMap_ * predicate, Action_1_Rewired_ActionElementMap_ * actionToPerform, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC59F0, ControllerMap_ForEachButtonMapMatch__MethodInfo); DO_APP_FUNC(0x020CF1A0, bool, ControllerMap_DeleteButtonMapsWithAction, (ControllerMap * __this, String * actionName, MethodInfo * method)); DO_APP_FUNC(0x020CF2A0, bool, ControllerMap_DeleteButtonMapsWithAction_1, (ControllerMap * __this, int32_t actionId, MethodInfo * method)); DO_APP_FUNC(0x020CF3E0, int32_t, ControllerMap_SetAllButtonMapsEnabled, (ControllerMap * __this, bool state, MethodInfo * method)); @@ -42020,27 +49654,38 @@ DO_APP_FUNC(0x020D1270, int32_t, ControllerMap_ForEachElementAssignmentConflict, DO_APP_FUNC(0x020D1290, int32_t, ControllerMap_ForEachElementAssignmentConflict_1, (ControllerMap * __this, ActionElementMap * actionElementMap, Action_1_Rewired_ActionElementMap_ * actionToPerform, MethodInfo * method)); DO_APP_FUNC(0x020D12B0, int32_t, ControllerMap_ForEachElementAssignmentConflict_2, (ControllerMap * __this, ElementAssignmentConflictCheck conflictCheck, Action_1_Rewired_ActionElementMap_ * actionToPerform, MethodInfo * method)); DO_APP_FUNC(0x020D1300, int32_t, ControllerMap_ForEachElementAssignmentConflict_3, (ControllerMap * __this, ControllerMap * controllerMap, Action_1_Rewired_ActionElementMap_ * actionToPerform, bool skipDisabledMaps, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC59B8, ControllerMap_ForEachElementAssignmentConflict_3__MethodInfo); DO_APP_FUNC(0x020D1630, int32_t, ControllerMap_ForEachElementAssignmentConflict_4, (ControllerMap * __this, ActionElementMap * actionElementMap, Action_1_Rewired_ActionElementMap_ * actionToPerform, bool skipDisabledMaps, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC59B0, ControllerMap_ForEachElementAssignmentConflict_4__MethodInfo); DO_APP_FUNC(0x020D18B0, int32_t, ControllerMap_ForEachElementAssignmentConflict_5, (ControllerMap * __this, ElementAssignmentConflictCheck conflictCheck, Action_1_Rewired_ActionElementMap_ * actionToPerform, bool skipDisabledMaps, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC58F8, ControllerMap_ForEachElementAssignmentConflict_5__MethodInfo); DO_APP_FUNC(0x020D1BE0, String__Array *, ControllerMap_GetButtonNames, (ControllerMap * __this, MethodInfo * method)); DO_APP_FUNC(0x020D1E40, String *, ControllerMap_ToXmlString, (ControllerMap * __this, MethodInfo * method)); DO_APP_FUNC(0x020D1FF0, String *, ControllerMap_ToJsonString, (ControllerMap * __this, MethodInfo * method)); DO_APP_FUNC(0x020D21A0, ControllerTemplateMap *, ControllerMap_ToControllerTemplateMap, (ControllerMap * __this, Guid templateTypeGuid, MethodInfo * method)); DO_APP_FUNC(0x020D2510, ControllerTemplateMap *, ControllerMap_ToControllerTemplateMap_1, (ControllerMap * __this, Type * templateInterfaceType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5940, ControllerMap_ToControllerTemplateMap_1__MethodInfo); DO_APP_FUNC(0x020D2770, ControllerTemplateMap *, ControllerMap_TQSDRZnEEyjxLCMBjyboNRWAeBlA, (ControllerMap * __this, IControllerTemplate * param_0000a34f, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5950, ControllerMap_TQSDRZnEEyjxLCMBjyboNRWAeBlA__MethodInfo); DO_APP_FUNC(0x003C7390, AList_1_Rewired_ActionElementMap_ *, ControllerMap_auNcIFItyXztqrSdxCnpGLjkrdLqB, (ControllerMap * __this, MethodInfo * method)); DO_APP_FUNC(0x020D2870, bool, ControllerMap_NisTrSqXMfijrgljHcPNeEXgjAcFb, (ControllerMap * __this, ActionElementMap * param_0000a350, MethodInfo * method)); DO_APP_FUNC(0x020D28A0, int32_t, ControllerMap_sRufPxNczfKRFfGQmPAYLkmFHVHL, (ControllerMap * __this, List_1_Rewired_ActionElementMap_ * param_0000a351, bool param_0000a352, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5938, ControllerMap_sRufPxNczfKRFfGQmPAYLkmFHVHL__MethodInfo); DO_APP_FUNC(0x020D2A10, ActionElementMap *, ControllerMap_FIXOSYCHeBfvYvfzYfpLjkcAhXmb, (ControllerMap * __this, int32_t param_0000a353, int32_t param_0000a354, ControllerElementType__Enum param_0000a355, MethodInfo * method)); DO_APP_FUNC(0x020D2AC0, int32_t, ControllerMap_kAxsFdxQmnfoXgVrkVdIbfelQaVeA, (ControllerMap * __this, int32_t param_0000a356, List_1_Rewired_ActionElementMap_ * param_0000a357, bool param_0000a358, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5920, ControllerMap_kAxsFdxQmnfoXgVrkVdIbfelQaVeA__MethodInfo); DO_APP_FUNC(0x020D2C60, bool, ControllerMap_qTRXnwGNQpKriKCbshvTgodAesuEA, (ControllerMap * __this, int32_t param_0000a359, int32_t param_0000a35a, ControllerElementType__Enum param_0000a35b, MethodInfo * method)); DO_APP_FUNC(0x020D2D30, int32_t, ControllerMap_PXzJPBIfiOFSeloeNbKranGjBVSB, (ControllerMap * __this, int32_t param_0000a35c, int32_t param_0000a35d, ControllerElementType__Enum param_0000a35e, MethodInfo * method)); DO_APP_FUNC(0x020D2E10, int32_t, ControllerMap_TpovdEYIGnPvvrTQOxWjJPNCNOkl, (ControllerMap * __this, int32_t param_0000a35f, MethodInfo * method)); DO_APP_FUNC(0x020D2EB0, int32_t, ControllerMap_pdsdScpzZjdVPXBuQLXsjuutabIp, (ControllerMap * __this, bool param_0000a360, List_1_Rewired_ActionElementMap_ * param_0000a361, bool param_0000a362, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5830, ControllerMap_pdsdScpzZjdVPXBuQLXsjuutabIp__MethodInfo); DO_APP_FUNC(0x020D3020, int32_t, ControllerMap_bLGjsdslAjPhWDYoFWfjnUbusQhk, (ControllerMap * __this, int32_t param_0000a363, bool param_0000a364, List_1_Rewired_ActionElementMap_ * param_0000a365, bool param_0000a366, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5838, ControllerMap_bLGjsdslAjPhWDYoFWfjnUbusQhk__MethodInfo); DO_APP_FUNC(0x020D31A0, int32_t, ControllerMap_MkuUDHAnIfNXmuwBwacuhdytGvCk, (ControllerMap * __this, int32_t param_0000a367, bool param_0000a368, List_1_Rewired_ActionElementMap_ * param_0000a369, bool param_0000a36a, MethodInfo * method)); -DO_APP_FUNC(0x020D3330, ActionElementMap *, ControllerMap_oQQzKhFZaSKfXmUbMwyJwbyzKXRq, (ControllerMap * __this, IControllerElementTarget * param_0000a36b, bool param_0000a36c, int32_t param_0000a36d, bool param_0000a36e, bool param_0000a36f, MethodInfo * method)); -DO_APP_FUNC(0x020D3540, int32_t, ControllerMap_oVhDKeEDhHBUfilfbxVvjXQtIbOLA, (ControllerMap * __this, IControllerElementTarget * param_0000a370, bool param_0000a371, int32_t param_0000a372, bool param_0000a373, List_1_Rewired_ActionElementMap_ * param_0000a374, bool param_0000a375, bool param_0000a376, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5828, ControllerMap_MkuUDHAnIfNXmuwBwacuhdytGvCk__MethodInfo); +DO_APP_FUNC(0x020D3330, ActionElementMap *, ControllerMap_oQQzKhFZaSKfXmUbMwyJwbyzKXRq, (ControllerMap * __this, IControllerElementTarget * param_0000a36b, bool param_0000a36c, int32_t param_0000a36d, bool param_0000a36e, bool * param_0000a36f, MethodInfo * method)); +DO_APP_FUNC(0x020D3540, int32_t, ControllerMap_oVhDKeEDhHBUfilfbxVvjXQtIbOLA, (ControllerMap * __this, IControllerElementTarget * param_0000a370, bool param_0000a371, int32_t param_0000a372, bool param_0000a373, List_1_Rewired_ActionElementMap_ * param_0000a374, bool param_0000a375, bool * param_0000a376, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5818, ControllerMap_oVhDKeEDhHBUfilfbxVvjXQtIbOLA__MethodInfo); DO_APP_FUNC(0x020D3820, void, ControllerMap_nzjkSmmgQJHfVgJHYkMAZSvCwVSB, (ControllerMap * __this, int32_t param_0000a377, ControllerElementType__Enum param_0000a378, MethodInfo * method)); DO_APP_FUNC(0x020D38B0, bool, ControllerMap_lcCHvdERwymNOczHjMeiOyzVCHgD, (ControllerMap * __this, ActionElementMap * param_0000a379, MethodInfo * method)); DO_APP_FUNC(0x020D3940, bool, ControllerMap_GJcyWLHQLfZlOUGfaBEwxFVOHwTS, (ControllerMap * __this, IControllerElementTarget * param_0000a37a, MethodInfo * method)); @@ -42060,17 +49705,21 @@ DO_APP_FUNC(0x020D5560, void, ControllerMap_sdQtwFzPDxcQbVzNAVIcboANGJBD, (Contr DO_APP_FUNC(0x020D5620, int32_t, ControllerMap_GqfQqXRnjMaJgGHyVAXdxJzVSuvS, (ControllerMap * __this, int32_t param_0000a391, MethodInfo * method)); DO_APP_FUNC(0x020D56D0, SerializedObject *, ControllerMap_rAUhjfejRrIJfxDUKBLGIOUYDmiiA, (ControllerMap * __this, MethodInfo * method)); DO_APP_FUNC(0x020D5770, ControllerMap *, ControllerMap_FZPmmsnDnbvylVLEXMIlDLCjajwN, (ControllerType__Enum param_0000a392, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC57B0, ControllerMap_FZPmmsnDnbvylVLEXMIlDLCjajwN__MethodInfo); DO_APP_FUNC(0x020D58F0, ControllerMap *, ControllerMap_bJgAyRcnPgnMqUurDPRrkDfLjuWmA, (Controller * param_0000a393, int32_t param_0000a394, int32_t param_0000a395, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC56F0, ControllerMap_bJgAyRcnPgnMqUurDPRrkDfLjuWmA__MethodInfo); DO_APP_FUNC(0x020D5AD0, ControllerMap *, ControllerMap_CreateFromXml, (ControllerType__Enum controllerType, String * xmlString, MethodInfo * method)); DO_APP_FUNC(0x020D5B30, ControllerMap *, ControllerMap_CreateFromJson, (ControllerType__Enum controllerType, String * jsonString, MethodInfo * method)); DO_APP_FUNC(0x020D5B90, ControllerMap_UnMEVnxGaOFgKwizSmKjhnAbdaNG *, ControllerMap_UnMEVnxGaOFgKwizSmKjhnAbdaNG_vDKbPXeMjezAhWFpTqlmMbBAocdgA, (MethodInfo * method)); DO_APP_FUNC(0x020D5C50, int32_t, ControllerMap_UnMEVnxGaOFgKwizSmKjhnAbdaNG_Compare, (ControllerMap_UnMEVnxGaOFgKwizSmKjhnAbdaNG * __this, ActionElementMap * x, ActionElementMap * y, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC56D0, ControllerMap_UnMEVnxGaOFgKwizSmKjhnAbdaNG_Compare__MethodInfo); DO_APP_FUNC(0x003AE050, void, ControllerMap_UnMEVnxGaOFgKwizSmKjhnAbdaNG__ctor, (ControllerMap_UnMEVnxGaOFgKwizSmKjhnAbdaNG * __this, MethodInfo * method)); DO_APP_FUNC(0x00FDB5B0, void, ControllerMap_fyrbjYHXyTKwCezIExpQzNLrEOmP__ctor, (ControllerMap_fyrbjYHXyTKwCezIExpQzNLrEOmP * __this, int32_t param_0000a39c, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ControllerMap_fyrbjYHXyTKwCezIExpQzNLrEOmP_System_IDisposable_Dispose, (ControllerMap_fyrbjYHXyTKwCezIExpQzNLrEOmP * __this, MethodInfo * method)); DO_APP_FUNC(0x020D5D90, bool, ControllerMap_fyrbjYHXyTKwCezIExpQzNLrEOmP_MoveNext, (ControllerMap_fyrbjYHXyTKwCezIExpQzNLrEOmP * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, ActionElementMap *, ControllerMap_fyrbjYHXyTKwCezIExpQzNLrEOmP_System_Collections_Generic_IEnumerator_Rewired_ActionElementMap__get_Current, (ControllerMap_fyrbjYHXyTKwCezIExpQzNLrEOmP * __this, MethodInfo * method)); DO_APP_FUNC(0x020D5EF0, void, ControllerMap_fyrbjYHXyTKwCezIExpQzNLrEOmP_System_Collections_IEnumerator_Reset, (ControllerMap_fyrbjYHXyTKwCezIExpQzNLrEOmP * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC56C8, ControllerMap_fyrbjYHXyTKwCezIExpQzNLrEOmP_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, ControllerMap_fyrbjYHXyTKwCezIExpQzNLrEOmP_System_Collections_IEnumerator_get_Current, (ControllerMap_fyrbjYHXyTKwCezIExpQzNLrEOmP * __this, MethodInfo * method)); DO_APP_FUNC(0x020D5F40, IEnumerator_1_Rewired_ActionElementMap_ *, ControllerMap_fyrbjYHXyTKwCezIExpQzNLrEOmP_System_Collections_Generic_IEnumerable_Rewired_ActionElementMap__GetEnumerator, (ControllerMap_fyrbjYHXyTKwCezIExpQzNLrEOmP * __this, MethodInfo * method)); DO_APP_FUNC(0x020D5F40, IEnumerator *, ControllerMap_fyrbjYHXyTKwCezIExpQzNLrEOmP_System_Collections_IEnumerable_GetEnumerator, (ControllerMap_fyrbjYHXyTKwCezIExpQzNLrEOmP * __this, MethodInfo * method)); @@ -42079,6 +49728,7 @@ DO_APP_FUNC(0x003AE050, void, ControllerMap_QHJZtHMwfGwDDCdQtNjfgklCaxLEA_System DO_APP_FUNC(0x020D6090, bool, ControllerMap_QHJZtHMwfGwDDCdQtNjfgklCaxLEA_MoveNext, (ControllerMap_QHJZtHMwfGwDDCdQtNjfgklCaxLEA * __this, MethodInfo * method)); DO_APP_FUNC(0x00F95D10, ElementAssignmentConflictInfo, ControllerMap_QHJZtHMwfGwDDCdQtNjfgklCaxLEA_System_Collections_Generic_IEnumerator_Rewired_ElementAssignmentConflictInfo__get_Current, (ControllerMap_QHJZtHMwfGwDDCdQtNjfgklCaxLEA * __this, MethodInfo * method)); DO_APP_FUNC(0x020D6450, void, ControllerMap_QHJZtHMwfGwDDCdQtNjfgklCaxLEA_System_Collections_IEnumerator_Reset, (ControllerMap_QHJZtHMwfGwDDCdQtNjfgklCaxLEA * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC56B8, ControllerMap_QHJZtHMwfGwDDCdQtNjfgklCaxLEA_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x020D64A0, Object *, ControllerMap_QHJZtHMwfGwDDCdQtNjfgklCaxLEA_System_Collections_IEnumerator_get_Current, (ControllerMap_QHJZtHMwfGwDDCdQtNjfgklCaxLEA * __this, MethodInfo * method)); DO_APP_FUNC(0x020D6510, IEnumerator_1_Rewired_ElementAssignmentConflictInfo_ *, ControllerMap_QHJZtHMwfGwDDCdQtNjfgklCaxLEA_System_Collections_Generic_IEnumerable_Rewired_ElementAssignmentConflictInfo__GetEnumerator, (ControllerMap_QHJZtHMwfGwDDCdQtNjfgklCaxLEA * __this, MethodInfo * method)); DO_APP_FUNC(0x020D66D0, IEnumerator *, ControllerMap_QHJZtHMwfGwDDCdQtNjfgklCaxLEA_System_Collections_IEnumerable_GetEnumerator, (ControllerMap_QHJZtHMwfGwDDCdQtNjfgklCaxLEA * __this, MethodInfo * method)); @@ -42087,6 +49737,7 @@ DO_APP_FUNC(0x003AE050, void, ControllerMap_SMXDmqLsDBYVRfvTcFsLMmvOBexJA_System DO_APP_FUNC(0x020D66E0, bool, ControllerMap_SMXDmqLsDBYVRfvTcFsLMmvOBexJA_MoveNext, (ControllerMap_SMXDmqLsDBYVRfvTcFsLMmvOBexJA * __this, MethodInfo * method)); DO_APP_FUNC(0x00F95D10, ElementAssignmentConflictInfo, ControllerMap_SMXDmqLsDBYVRfvTcFsLMmvOBexJA_System_Collections_Generic_IEnumerator_Rewired_ElementAssignmentConflictInfo__get_Current, (ControllerMap_SMXDmqLsDBYVRfvTcFsLMmvOBexJA * __this, MethodInfo * method)); DO_APP_FUNC(0x020D6930, void, ControllerMap_SMXDmqLsDBYVRfvTcFsLMmvOBexJA_System_Collections_IEnumerator_Reset, (ControllerMap_SMXDmqLsDBYVRfvTcFsLMmvOBexJA * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5710, ControllerMap_SMXDmqLsDBYVRfvTcFsLMmvOBexJA_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x020D6980, Object *, ControllerMap_SMXDmqLsDBYVRfvTcFsLMmvOBexJA_System_Collections_IEnumerator_get_Current, (ControllerMap_SMXDmqLsDBYVRfvTcFsLMmvOBexJA * __this, MethodInfo * method)); DO_APP_FUNC(0x020D69F0, IEnumerator_1_Rewired_ElementAssignmentConflictInfo_ *, ControllerMap_SMXDmqLsDBYVRfvTcFsLMmvOBexJA_System_Collections_Generic_IEnumerable_Rewired_ElementAssignmentConflictInfo__GetEnumerator, (ControllerMap_SMXDmqLsDBYVRfvTcFsLMmvOBexJA * __this, MethodInfo * method)); DO_APP_FUNC(0x020D6BB0, IEnumerator *, ControllerMap_SMXDmqLsDBYVRfvTcFsLMmvOBexJA_System_Collections_IEnumerable_GetEnumerator, (ControllerMap_SMXDmqLsDBYVRfvTcFsLMmvOBexJA * __this, MethodInfo * method)); @@ -42095,6 +49746,7 @@ DO_APP_FUNC(0x003AE050, void, ControllerMap_MdZZZwNWzGixwfGkDnEFleHlwMHI_System_ DO_APP_FUNC(0x020D6BC0, bool, ControllerMap_MdZZZwNWzGixwfGkDnEFleHlwMHI_MoveNext, (ControllerMap_MdZZZwNWzGixwfGkDnEFleHlwMHI * __this, MethodInfo * method)); DO_APP_FUNC(0x00F95D10, ElementAssignmentConflictInfo, ControllerMap_MdZZZwNWzGixwfGkDnEFleHlwMHI_System_Collections_Generic_IEnumerator_Rewired_ElementAssignmentConflictInfo__get_Current, (ControllerMap_MdZZZwNWzGixwfGkDnEFleHlwMHI * __this, MethodInfo * method)); DO_APP_FUNC(0x020D6EC0, void, ControllerMap_MdZZZwNWzGixwfGkDnEFleHlwMHI_System_Collections_IEnumerator_Reset, (ControllerMap_MdZZZwNWzGixwfGkDnEFleHlwMHI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5708, ControllerMap_MdZZZwNWzGixwfGkDnEFleHlwMHI_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x020D6F10, Object *, ControllerMap_MdZZZwNWzGixwfGkDnEFleHlwMHI_System_Collections_IEnumerator_get_Current, (ControllerMap_MdZZZwNWzGixwfGkDnEFleHlwMHI * __this, MethodInfo * method)); DO_APP_FUNC(0x020D6F80, IEnumerator_1_Rewired_ElementAssignmentConflictInfo_ *, ControllerMap_MdZZZwNWzGixwfGkDnEFleHlwMHI_System_Collections_Generic_IEnumerable_Rewired_ElementAssignmentConflictInfo__GetEnumerator, (ControllerMap_MdZZZwNWzGixwfGkDnEFleHlwMHI * __this, MethodInfo * method)); DO_APP_FUNC(0x020D7120, IEnumerator *, ControllerMap_MdZZZwNWzGixwfGkDnEFleHlwMHI_System_Collections_IEnumerable_GetEnumerator, (ControllerMap_MdZZZwNWzGixwfGkDnEFleHlwMHI * __this, MethodInfo * method)); @@ -42104,6 +49756,7 @@ DO_APP_FUNC(0x020D7390, bool, ControllerMap_oQKomAcpYvbNoGayiARhbNRCpgFwb_MoveNe DO_APP_FUNC(0x020D7680, void, ControllerMap_oQKomAcpYvbNoGayiARhbNRCpgFwb_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (ControllerMap_oQKomAcpYvbNoGayiARhbNRCpgFwb * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, ActionElementMap *, ControllerMap_oQKomAcpYvbNoGayiARhbNRCpgFwb_System_Collections_Generic_IEnumerator_Rewired_ActionElementMap__get_Current, (ControllerMap_oQKomAcpYvbNoGayiARhbNRCpgFwb * __this, MethodInfo * method)); DO_APP_FUNC(0x020D76E0, void, ControllerMap_oQKomAcpYvbNoGayiARhbNRCpgFwb_System_Collections_IEnumerator_Reset, (ControllerMap_oQKomAcpYvbNoGayiARhbNRCpgFwb * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC56A0, ControllerMap_oQKomAcpYvbNoGayiARhbNRCpgFwb_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, ControllerMap_oQKomAcpYvbNoGayiARhbNRCpgFwb_System_Collections_IEnumerator_get_Current, (ControllerMap_oQKomAcpYvbNoGayiARhbNRCpgFwb * __this, MethodInfo * method)); DO_APP_FUNC(0x020D7730, IEnumerator_1_Rewired_ActionElementMap_ *, ControllerMap_oQKomAcpYvbNoGayiARhbNRCpgFwb_System_Collections_Generic_IEnumerable_Rewired_ActionElementMap__GetEnumerator, (ControllerMap_oQKomAcpYvbNoGayiARhbNRCpgFwb * __this, MethodInfo * method)); DO_APP_FUNC(0x020D7730, IEnumerator *, ControllerMap_oQKomAcpYvbNoGayiARhbNRCpgFwb_System_Collections_IEnumerable_GetEnumerator, (ControllerMap_oQKomAcpYvbNoGayiARhbNRCpgFwb * __this, MethodInfo * method)); @@ -42114,6 +49767,7 @@ DO_APP_FUNC(0x020D7F30, void, ControllerMap_pHANlcpTmpBufeLdCBtEPKFWGlsDA_QDNfco DO_APP_FUNC(0x020D7F90, void, ControllerMap_pHANlcpTmpBufeLdCBtEPKFWGlsDA_DoQXnKzdNUehTxxsxBJvgNhCuILy, (ControllerMap_pHANlcpTmpBufeLdCBtEPKFWGlsDA * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, ActionElementMap *, ControllerMap_pHANlcpTmpBufeLdCBtEPKFWGlsDA_System_Collections_Generic_IEnumerator_Rewired_ActionElementMap__get_Current, (ControllerMap_pHANlcpTmpBufeLdCBtEPKFWGlsDA * __this, MethodInfo * method)); DO_APP_FUNC(0x020D7FE0, void, ControllerMap_pHANlcpTmpBufeLdCBtEPKFWGlsDA_System_Collections_IEnumerator_Reset, (ControllerMap_pHANlcpTmpBufeLdCBtEPKFWGlsDA * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5690, ControllerMap_pHANlcpTmpBufeLdCBtEPKFWGlsDA_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, ControllerMap_pHANlcpTmpBufeLdCBtEPKFWGlsDA_System_Collections_IEnumerator_get_Current, (ControllerMap_pHANlcpTmpBufeLdCBtEPKFWGlsDA * __this, MethodInfo * method)); DO_APP_FUNC(0x020D8030, IEnumerator_1_Rewired_ActionElementMap_ *, ControllerMap_pHANlcpTmpBufeLdCBtEPKFWGlsDA_System_Collections_Generic_IEnumerable_Rewired_ActionElementMap__GetEnumerator, (ControllerMap_pHANlcpTmpBufeLdCBtEPKFWGlsDA * __this, MethodInfo * method)); DO_APP_FUNC(0x020D81F0, IEnumerator *, ControllerMap_pHANlcpTmpBufeLdCBtEPKFWGlsDA_System_Collections_IEnumerable_GetEnumerator, (ControllerMap_pHANlcpTmpBufeLdCBtEPKFWGlsDA * __this, MethodInfo * method)); @@ -42124,6 +49778,7 @@ DO_APP_FUNC(0x020D88B0, void, ControllerMap_XdoESdCfkeUOWTJGnOrOthhsLbeeb_QDNfco DO_APP_FUNC(0x020D8910, void, ControllerMap_XdoESdCfkeUOWTJGnOrOthhsLbeeb_DoQXnKzdNUehTxxsxBJvgNhCuILy, (ControllerMap_XdoESdCfkeUOWTJGnOrOthhsLbeeb * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, ActionElementMap *, ControllerMap_XdoESdCfkeUOWTJGnOrOthhsLbeeb_System_Collections_Generic_IEnumerator_Rewired_ActionElementMap__get_Current, (ControllerMap_XdoESdCfkeUOWTJGnOrOthhsLbeeb * __this, MethodInfo * method)); DO_APP_FUNC(0x020D8960, void, ControllerMap_XdoESdCfkeUOWTJGnOrOthhsLbeeb_System_Collections_IEnumerator_Reset, (ControllerMap_XdoESdCfkeUOWTJGnOrOthhsLbeeb * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC56B0, ControllerMap_XdoESdCfkeUOWTJGnOrOthhsLbeeb_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, ControllerMap_XdoESdCfkeUOWTJGnOrOthhsLbeeb_System_Collections_IEnumerator_get_Current, (ControllerMap_XdoESdCfkeUOWTJGnOrOthhsLbeeb * __this, MethodInfo * method)); DO_APP_FUNC(0x020D89B0, IEnumerator_1_Rewired_ActionElementMap_ *, ControllerMap_XdoESdCfkeUOWTJGnOrOthhsLbeeb_System_Collections_Generic_IEnumerable_Rewired_ActionElementMap__GetEnumerator, (ControllerMap_XdoESdCfkeUOWTJGnOrOthhsLbeeb * __this, MethodInfo * method)); DO_APP_FUNC(0x020D8B80, IEnumerator *, ControllerMap_XdoESdCfkeUOWTJGnOrOthhsLbeeb_System_Collections_IEnumerable_GetEnumerator, (ControllerMap_XdoESdCfkeUOWTJGnOrOthhsLbeeb * __this, MethodInfo * method)); @@ -42132,8 +49787,8 @@ DO_APP_FUNC(0x020D8C40, IList_1_Rewired_ActionElementMap_ *, ControllerMapWithAx DO_APP_FUNC(0x020D8CF0, void, ControllerMapWithAxes__ctor, (ControllerMapWithAxes * __this, MethodInfo * method)); DO_APP_FUNC(0x020D8EE0, void, ControllerMapWithAxes__ctor_1, (ControllerMapWithAxes * __this, ControllerMapWithAxes * param_0000a3a3, MethodInfo * method)); DO_APP_FUNC(0x020D9230, bool, ControllerMapWithAxes_ContainsAction, (ControllerMapWithAxes * __this, int32_t actionId, MethodInfo * method)); -DO_APP_FUNC(0x020D9440, bool, ControllerMapWithAxes_CreateElementMap, (ControllerMapWithAxes * __this, int32_t actionId, Pole__Enum axisContribution, int32_t elementIdentifierId, ControllerElementType__Enum elementType, AxisRange__Enum axisRange, bool invert, ActionElementMap * result, MethodInfo * method)); -DO_APP_FUNC(0x020D9630, bool, ControllerMapWithAxes_ReplaceElementMap, (ControllerMapWithAxes * __this, int32_t elementMapId, int32_t actionId, Pole__Enum axisContribution, int32_t elementIdentifierId, ControllerElementType__Enum elementType, AxisRange__Enum axisRange, bool invert, ActionElementMap * result, MethodInfo * method)); +DO_APP_FUNC(0x020D9440, bool, ControllerMapWithAxes_CreateElementMap, (ControllerMapWithAxes * __this, int32_t actionId, Pole__Enum axisContribution, int32_t elementIdentifierId, ControllerElementType__Enum elementType, AxisRange__Enum axisRange, bool invert, ActionElementMap * * result, MethodInfo * method)); +DO_APP_FUNC(0x020D9630, bool, ControllerMapWithAxes_ReplaceElementMap, (ControllerMapWithAxes * __this, int32_t elementMapId, int32_t actionId, Pole__Enum axisContribution, int32_t elementIdentifierId, ControllerElementType__Enum elementType, AxisRange__Enum axisRange, bool invert, ActionElementMap * * result, MethodInfo * method)); DO_APP_FUNC(0x020D9870, bool, ControllerMapWithAxes_DeleteElementMap, (ControllerMapWithAxes * __this, int32_t elementMapId, MethodInfo * method)); DO_APP_FUNC(0x020D99E0, bool, ControllerMapWithAxes_DeleteElementMapsWithAction, (ControllerMapWithAxes * __this, String * actionName, MethodInfo * method)); DO_APP_FUNC(0x020D9B40, bool, ControllerMapWithAxes_DeleteElementMapsWithAction_1, (ControllerMapWithAxes * __this, int32_t actionId, MethodInfo * method)); @@ -42165,9 +49820,12 @@ DO_APP_FUNC(0x020DB930, ActionElementMap *, ControllerMapWithAxes_GetFirstAxisMa DO_APP_FUNC(0x020DBA80, ActionElementMap *, ControllerMapWithAxes_GetFirstAxisMapWithAction_3, (ControllerMapWithAxes * __this, String * actionName, bool skipDisabledMaps, MethodInfo * method)); DO_APP_FUNC(0x020DBBF0, ActionElementMap *, ControllerMapWithAxes_GetFirstAxisMapMatch, (ControllerMapWithAxes * __this, Predicate_1_Rewired_ActionElementMap_ * predicate, MethodInfo * method)); DO_APP_FUNC(0x020DBCA0, ActionElementMap *, ControllerMapWithAxes_KZutoqqYKLTDRbFhtAxVVZDeKUvv, (ControllerMapWithAxes * __this, Predicate_1_Rewired_ActionElementMap_ * param_0000a3e2, bool param_0000a3e3, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5688, ControllerMapWithAxes_KZutoqqYKLTDRbFhtAxVVZDeKUvv__MethodInfo); DO_APP_FUNC(0x020DBE20, int32_t, ControllerMapWithAxes_GetAxisMapMatches, (ControllerMapWithAxes * __this, Predicate_1_Rewired_ActionElementMap_ * predicate, List_1_Rewired_ActionElementMap_ * results, MethodInfo * method)); DO_APP_FUNC(0x020DBEF0, int32_t, ControllerMapWithAxes_OYkUwYyoPoLGuXCcjIhptvJecpKq, (ControllerMapWithAxes * __this, Predicate_1_Rewired_ActionElementMap_ * param_0000a3e6, bool param_0000a3e7, List_1_Rewired_ActionElementMap_ * param_0000a3e8, bool param_0000a3e9, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5658, ControllerMapWithAxes_OYkUwYyoPoLGuXCcjIhptvJecpKq__MethodInfo); DO_APP_FUNC(0x020DC1D0, void, ControllerMapWithAxes_ForEachAxisMapMatch, (ControllerMapWithAxes * __this, Predicate_1_Rewired_ActionElementMap_ * predicate, Action_1_Rewired_ActionElementMap_ * actionToPerform, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5648, ControllerMapWithAxes_ForEachAxisMapMatch__MethodInfo); DO_APP_FUNC(0x020DC420, bool, ControllerMapWithAxes_DeleteAxisMapsWithAction, (ControllerMapWithAxes * __this, String * actionName, MethodInfo * method)); DO_APP_FUNC(0x020DC520, bool, ControllerMapWithAxes_DeleteAxisMapsWithAction_1, (ControllerMapWithAxes * __this, int32_t actionId, MethodInfo * method)); DO_APP_FUNC(0x020DC720, int32_t, ControllerMapWithAxes_SetAllAxisMapsEnabled, (ControllerMapWithAxes * __this, bool state, MethodInfo * method)); @@ -42189,14 +49847,17 @@ DO_APP_FUNC(0x020DE6D0, bool, ControllerMapWithAxes_NisTrSqXMfijrgljHcPNeEXgjAcF DO_APP_FUNC(0x020DE710, int32_t, ControllerMapWithAxes_sRufPxNczfKRFfGQmPAYLkmFHVHL, (ControllerMapWithAxes * __this, List_1_Rewired_ActionElementMap_ * param_0000a40e, bool param_0000a40f, MethodInfo * method)); DO_APP_FUNC(0x020DE950, ActionElementMap *, ControllerMapWithAxes_FIXOSYCHeBfvYvfzYfpLjkcAhXmb, (ControllerMapWithAxes * __this, int32_t param_0000a410, int32_t param_0000a411, ControllerElementType__Enum param_0000a412, MethodInfo * method)); DO_APP_FUNC(0x020DEA60, int32_t, ControllerMapWithAxes_kAxsFdxQmnfoXgVrkVdIbfelQaVeA, (ControllerMapWithAxes * __this, int32_t param_0000a413, List_1_Rewired_ActionElementMap_ * param_0000a414, bool param_0000a415, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5638, ControllerMapWithAxes_kAxsFdxQmnfoXgVrkVdIbfelQaVeA__MethodInfo); DO_APP_FUNC(0x020DEC80, bool, ControllerMapWithAxes_qTRXnwGNQpKriKCbshvTgodAesuEA, (ControllerMapWithAxes * __this, int32_t param_0000a416, int32_t param_0000a417, ControllerElementType__Enum param_0000a418, MethodInfo * method)); DO_APP_FUNC(0x020DEE10, int32_t, ControllerMapWithAxes_PXzJPBIfiOFSeloeNbKranGjBVSB, (ControllerMapWithAxes * __this, int32_t param_0000a419, int32_t param_0000a41a, ControllerElementType__Enum param_0000a41b, MethodInfo * method)); DO_APP_FUNC(0x020DEFB0, int32_t, ControllerMapWithAxes_xnyhffaOsJlVDNBHgMFedKyIOGph, (ControllerMapWithAxes * __this, int32_t param_0000a41c, MethodInfo * method)); DO_APP_FUNC(0x020DF070, int32_t, ControllerMapWithAxes_gjoaIZpcpgAJLDiCLYJnBgOdEcGn, (ControllerMapWithAxes * __this, bool param_0000a41d, List_1_Rewired_ActionElementMap_ * param_0000a41e, bool param_0000a41f, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5630, ControllerMapWithAxes_gjoaIZpcpgAJLDiCLYJnBgOdEcGn__MethodInfo); DO_APP_FUNC(0x020DF250, int32_t, ControllerMapWithAxes_lnkbEjDNharvFVyajuEADJTHagZo, (ControllerMapWithAxes * __this, int32_t param_0000a420, bool param_0000a421, List_1_Rewired_ActionElementMap_ * param_0000a422, bool param_0000a423, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5610, ControllerMapWithAxes_lnkbEjDNharvFVyajuEADJTHagZo__MethodInfo); DO_APP_FUNC(0x020DF470, int32_t, ControllerMapWithAxes_MkuUDHAnIfNXmuwBwacuhdytGvCk, (ControllerMapWithAxes * __this, int32_t param_0000a424, bool param_0000a425, List_1_Rewired_ActionElementMap_ * param_0000a426, bool param_0000a427, MethodInfo * method)); -DO_APP_FUNC(0x020DF710, ActionElementMap *, ControllerMapWithAxes_oQQzKhFZaSKfXmUbMwyJwbyzKXRq, (ControllerMapWithAxes * __this, IControllerElementTarget * param_0000a428, bool param_0000a429, int32_t param_0000a42a, bool param_0000a42b, bool param_0000a42c, MethodInfo * method)); -DO_APP_FUNC(0x020DF8B0, int32_t, ControllerMapWithAxes_oVhDKeEDhHBUfilfbxVvjXQtIbOLA, (ControllerMapWithAxes * __this, IControllerElementTarget * param_0000a42d, bool param_0000a42e, int32_t param_0000a42f, bool param_0000a430, List_1_Rewired_ActionElementMap_ * param_0000a431, bool param_0000a432, bool param_0000a433, MethodInfo * method)); +DO_APP_FUNC(0x020DF710, ActionElementMap *, ControllerMapWithAxes_oQQzKhFZaSKfXmUbMwyJwbyzKXRq, (ControllerMapWithAxes * __this, IControllerElementTarget * param_0000a428, bool param_0000a429, int32_t param_0000a42a, bool param_0000a42b, bool * param_0000a42c, MethodInfo * method)); +DO_APP_FUNC(0x020DF8B0, int32_t, ControllerMapWithAxes_oVhDKeEDhHBUfilfbxVvjXQtIbOLA, (ControllerMapWithAxes * __this, IControllerElementTarget * param_0000a42d, bool param_0000a42e, int32_t param_0000a42f, bool param_0000a430, List_1_Rewired_ActionElementMap_ * param_0000a431, bool param_0000a432, bool * param_0000a433, MethodInfo * method)); DO_APP_FUNC(0x020DFA90, bool, ControllerMapWithAxes_lcCHvdERwymNOczHjMeiOyzVCHgD, (ControllerMapWithAxes * __this, ActionElementMap * param_0000a434, MethodInfo * method)); DO_APP_FUNC(0x018BDAF0, bool, ControllerMapWithAxes_SvfUGBHsnzXekLGkgDGTUvRSeOxl, (ControllerMapWithAxes * __this, ControllerElementType__Enum param_0000a435, MethodInfo * method)); DO_APP_FUNC(0x020DFB50, void, ControllerMapWithAxes_VuIJFvGmAfLSVcAeRruTCtRnyfLc, (ControllerMapWithAxes * __this, int32_t param_0000a436, int32_t param_0000a437, MethodInfo * method)); @@ -42213,6 +49874,7 @@ DO_APP_FUNC(0x020E0310, bool, ControllerMapWithAxes_rKxAGAiafCMdAGCWJVArdWBEplis DO_APP_FUNC(0x020E05C0, void, ControllerMapWithAxes_rKxAGAiafCMdAGCWJVArdWBEplisd_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (ControllerMapWithAxes_rKxAGAiafCMdAGCWJVArdWBEplisd * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, ActionElementMap *, ControllerMapWithAxes_rKxAGAiafCMdAGCWJVArdWBEplisd_System_Collections_Generic_IEnumerator_Rewired_ActionElementMap__get_Current, (ControllerMapWithAxes_rKxAGAiafCMdAGCWJVArdWBEplisd * __this, MethodInfo * method)); DO_APP_FUNC(0x020E0620, void, ControllerMapWithAxes_rKxAGAiafCMdAGCWJVArdWBEplisd_System_Collections_IEnumerator_Reset, (ControllerMapWithAxes_rKxAGAiafCMdAGCWJVArdWBEplisd * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5620, ControllerMapWithAxes_rKxAGAiafCMdAGCWJVArdWBEplisd_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, ControllerMapWithAxes_rKxAGAiafCMdAGCWJVArdWBEplisd_System_Collections_IEnumerator_get_Current, (ControllerMapWithAxes_rKxAGAiafCMdAGCWJVArdWBEplisd * __this, MethodInfo * method)); DO_APP_FUNC(0x020E0670, IEnumerator_1_Rewired_ActionElementMap_ *, ControllerMapWithAxes_rKxAGAiafCMdAGCWJVArdWBEplisd_System_Collections_Generic_IEnumerable_Rewired_ActionElementMap__GetEnumerator, (ControllerMapWithAxes_rKxAGAiafCMdAGCWJVArdWBEplisd * __this, MethodInfo * method)); DO_APP_FUNC(0x020E0670, IEnumerator *, ControllerMapWithAxes_rKxAGAiafCMdAGCWJVArdWBEplisd_System_Collections_IEnumerable_GetEnumerator, (ControllerMapWithAxes_rKxAGAiafCMdAGCWJVArdWBEplisd * __this, MethodInfo * method)); @@ -42222,6 +49884,7 @@ DO_APP_FUNC(0x020E0890, bool, ControllerMapWithAxes_jcaIgGiYmHlLNGKhGKXxBEtkUgDb DO_APP_FUNC(0x020E1190, void, ControllerMapWithAxes_jcaIgGiYmHlLNGKhGKXxBEtkUgDbb_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (ControllerMapWithAxes_jcaIgGiYmHlLNGKhGKXxBEtkUgDbb * __this, MethodInfo * method)); DO_APP_FUNC(0x00F95D10, ElementAssignmentConflictInfo, ControllerMapWithAxes_jcaIgGiYmHlLNGKhGKXxBEtkUgDbb_System_Collections_Generic_IEnumerator_Rewired_ElementAssignmentConflictInfo__get_Current, (ControllerMapWithAxes_jcaIgGiYmHlLNGKhGKXxBEtkUgDbb * __this, MethodInfo * method)); DO_APP_FUNC(0x020E11F0, void, ControllerMapWithAxes_jcaIgGiYmHlLNGKhGKXxBEtkUgDbb_System_Collections_IEnumerator_Reset, (ControllerMapWithAxes_jcaIgGiYmHlLNGKhGKXxBEtkUgDbb * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5618, ControllerMapWithAxes_jcaIgGiYmHlLNGKhGKXxBEtkUgDbb_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x020E1240, Object *, ControllerMapWithAxes_jcaIgGiYmHlLNGKhGKXxBEtkUgDbb_System_Collections_IEnumerator_get_Current, (ControllerMapWithAxes_jcaIgGiYmHlLNGKhGKXxBEtkUgDbb * __this, MethodInfo * method)); DO_APP_FUNC(0x020E12B0, IEnumerator_1_Rewired_ElementAssignmentConflictInfo_ *, ControllerMapWithAxes_jcaIgGiYmHlLNGKhGKXxBEtkUgDbb_System_Collections_Generic_IEnumerable_Rewired_ElementAssignmentConflictInfo__GetEnumerator, (ControllerMapWithAxes_jcaIgGiYmHlLNGKhGKXxBEtkUgDbb * __this, MethodInfo * method)); DO_APP_FUNC(0x020E1470, IEnumerator *, ControllerMapWithAxes_jcaIgGiYmHlLNGKhGKXxBEtkUgDbb_System_Collections_IEnumerable_GetEnumerator, (ControllerMapWithAxes_jcaIgGiYmHlLNGKhGKXxBEtkUgDbb * __this, MethodInfo * method)); @@ -42231,6 +49894,7 @@ DO_APP_FUNC(0x020E1550, bool, ControllerMapWithAxes_cwjzGlYFSOhyksDSnMiqKJeojfmb DO_APP_FUNC(0x020E1C40, void, ControllerMapWithAxes_cwjzGlYFSOhyksDSnMiqKJeojfmbA_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (ControllerMapWithAxes_cwjzGlYFSOhyksDSnMiqKJeojfmbA * __this, MethodInfo * method)); DO_APP_FUNC(0x00F95D10, ElementAssignmentConflictInfo, ControllerMapWithAxes_cwjzGlYFSOhyksDSnMiqKJeojfmbA_System_Collections_Generic_IEnumerator_Rewired_ElementAssignmentConflictInfo__get_Current, (ControllerMapWithAxes_cwjzGlYFSOhyksDSnMiqKJeojfmbA * __this, MethodInfo * method)); DO_APP_FUNC(0x020E1CA0, void, ControllerMapWithAxes_cwjzGlYFSOhyksDSnMiqKJeojfmbA_System_Collections_IEnumerator_Reset, (ControllerMapWithAxes_cwjzGlYFSOhyksDSnMiqKJeojfmbA * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5600, ControllerMapWithAxes_cwjzGlYFSOhyksDSnMiqKJeojfmbA_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x020E1CF0, Object *, ControllerMapWithAxes_cwjzGlYFSOhyksDSnMiqKJeojfmbA_System_Collections_IEnumerator_get_Current, (ControllerMapWithAxes_cwjzGlYFSOhyksDSnMiqKJeojfmbA * __this, MethodInfo * method)); DO_APP_FUNC(0x020E1D60, IEnumerator_1_Rewired_ElementAssignmentConflictInfo_ *, ControllerMapWithAxes_cwjzGlYFSOhyksDSnMiqKJeojfmbA_System_Collections_Generic_IEnumerable_Rewired_ElementAssignmentConflictInfo__GetEnumerator, (ControllerMapWithAxes_cwjzGlYFSOhyksDSnMiqKJeojfmbA * __this, MethodInfo * method)); DO_APP_FUNC(0x020E1F20, IEnumerator *, ControllerMapWithAxes_cwjzGlYFSOhyksDSnMiqKJeojfmbA_System_Collections_IEnumerable_GetEnumerator, (ControllerMapWithAxes_cwjzGlYFSOhyksDSnMiqKJeojfmbA * __this, MethodInfo * method)); @@ -42240,6 +49904,7 @@ DO_APP_FUNC(0x020E2000, bool, ControllerMapWithAxes_CCvmbykhvkxMGAufLAVhizMKLlMB DO_APP_FUNC(0x020E27D0, void, ControllerMapWithAxes_CCvmbykhvkxMGAufLAVhizMKLlMB_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (ControllerMapWithAxes_CCvmbykhvkxMGAufLAVhizMKLlMB * __this, MethodInfo * method)); DO_APP_FUNC(0x00F95D10, ElementAssignmentConflictInfo, ControllerMapWithAxes_CCvmbykhvkxMGAufLAVhizMKLlMB_System_Collections_Generic_IEnumerator_Rewired_ElementAssignmentConflictInfo__get_Current, (ControllerMapWithAxes_CCvmbykhvkxMGAufLAVhizMKLlMB * __this, MethodInfo * method)); DO_APP_FUNC(0x020E2830, void, ControllerMapWithAxes_CCvmbykhvkxMGAufLAVhizMKLlMB_System_Collections_IEnumerator_Reset, (ControllerMapWithAxes_CCvmbykhvkxMGAufLAVhizMKLlMB * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5608, ControllerMapWithAxes_CCvmbykhvkxMGAufLAVhizMKLlMB_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x020E2880, Object *, ControllerMapWithAxes_CCvmbykhvkxMGAufLAVhizMKLlMB_System_Collections_IEnumerator_get_Current, (ControllerMapWithAxes_CCvmbykhvkxMGAufLAVhizMKLlMB * __this, MethodInfo * method)); DO_APP_FUNC(0x020E28F0, IEnumerator_1_Rewired_ElementAssignmentConflictInfo_ *, ControllerMapWithAxes_CCvmbykhvkxMGAufLAVhizMKLlMB_System_Collections_Generic_IEnumerable_Rewired_ElementAssignmentConflictInfo__GetEnumerator, (ControllerMapWithAxes_CCvmbykhvkxMGAufLAVhizMKLlMB * __this, MethodInfo * method)); DO_APP_FUNC(0x020E2A90, IEnumerator *, ControllerMapWithAxes_CCvmbykhvkxMGAufLAVhizMKLlMB_System_Collections_IEnumerable_GetEnumerator, (ControllerMapWithAxes_CCvmbykhvkxMGAufLAVhizMKLlMB * __this, MethodInfo * method)); @@ -42270,6 +49935,7 @@ DO_APP_FUNC(0x020E45B0, String *, HardwareControllerMap_Game_GetElementIdentifie DO_APP_FUNC(0x020E4690, String *, HardwareControllerMap_Game_GetElementIdentifierPositiveName, (HardwareControllerMap_Game * __this, int32_t elementIdentifierId, MethodInfo * method)); DO_APP_FUNC(0x020E4770, String *, HardwareControllerMap_Game_GetElementIdentifierNegativeName, (HardwareControllerMap_Game * __this, int32_t elementIdentifierId, MethodInfo * method)); DO_APP_FUNC(0x020E4850, int32_t, HardwareControllerMap_Game_GetAxisIndex, (HardwareControllerMap_Game * __this, int32_t elementIdentifierId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC4D0, HardwareControllerMap_Game_GetAxisIndex__MethodInfo); DO_APP_FUNC(0x020E48B0, int32_t, HardwareControllerMap_Game_GetAxisIndex_1, (HardwareControllerMap_Game * __this, String * elementIdentifierName, MethodInfo * method)); DO_APP_FUNC(0x020E4AC0, int32_t, HardwareControllerMap_Game_GetButtonIndex, (HardwareControllerMap_Game * __this, int32_t elementIdentifierId, MethodInfo * method)); DO_APP_FUNC(0x020E4B20, int32_t, HardwareControllerMap_Game_GetButtonIndex_1, (HardwareControllerMap_Game * __this, String * elementIdentifierName, MethodInfo * method)); @@ -42435,10 +50101,12 @@ DO_APP_FUNC(0x00421680, AxisRange__Enum, InputMapper_Context_get_actionRange, (I DO_APP_FUNC(0x020EBBB0, void, InputMapper_Context_set_actionRange, (InputMapper_Context * __this, AxisRange__Enum value, MethodInfo * method)); DO_APP_FUNC(0x020EBC10, void, InputMapper_Context__ctor, (InputMapper_Context * __this, MethodInfo * method)); DO_APP_FUNC(0x020EBC20, void, InputMapper_Context__ctor_1, (InputMapper_Context * __this, InputMapper_Context * param_0000a556, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC6EC0, InputMapper_Context__ctor_1__MethodInfo); DO_APP_FUNC(0x020EBD60, InputMapper_Context *, InputMapper_Context_Clone, (InputMapper_Context * __this, MethodInfo * method)); DO_APP_FUNC(0x01C5A360, void, InputMapper_Context_mVIdyOEMeDarcCGsEHYtnTHnCuLib, (InputMapper_Context * __this, MethodInfo * method)); DO_APP_FUNC(0x020EBED0, bool, InputMapper_Context_dIhAWFuIZJbiAZZKYWteTPPRgxOj, (InputMapper_Context * __this, MethodInfo * method)); DO_APP_FUNC(0x020EBF30, void, InputMapper_Context_Copy, (InputMapper_Context * source, InputMapper_Context * destination, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC6EA8, InputMapper_Context_Copy__MethodInfo); DO_APP_FUNC(0x003BCBE0, void, InputMapper_EventData__ctor, (InputMapper_EventData * __this, InputMapper * param_0000a559, MethodInfo * method)); DO_APP_FUNC(0x003BCE40, void, InputMapper_InputMappedEventData__ctor, (InputMapper_InputMappedEventData * __this, InputMapper * param_0000a55a, ActionElementMap * param_0000a55b, MethodInfo * method)); DO_APP_FUNC(0x003BCE40, void, InputMapper_CanceledEventData__ctor, (InputMapper_CanceledEventData * __this, InputMapper * param_0000a55c, String * param_0000a55d, MethodInfo * method)); @@ -42452,17 +50120,20 @@ DO_APP_FUNC(0x020EC210, float, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_eqxvKoWi DO_APP_FUNC(0x020EC2C0, InputMapper_Context *, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_fLeHNCPtmrlgkROaFwWtQoPjVAYm, (InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR * __this, MethodInfo * method)); DO_APP_FUNC(0x020EC2F0, bool, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_DdaiWwXcWZutXAnyRbDlkeXXDYloA, (InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR * __this, MethodInfo * method)); DO_APP_FUNC(0x020EC330, void, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR__ctor, (InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR * __this, InputMapper * param_0000a568, Dictionary_2_Rewired_InputMapper_LHIKMCjQdqDNBdfhNEqxmrgcNERkA_Rewired_Utils_SafeDelegate_ * param_0000a569, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC6F08, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR__ctor__MethodInfo); DO_APP_FUNC(0x020EC710, void, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_CKQeYexxcEWMBSnZtVhPKvVjjVUV, (InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR * __this, MethodInfo * method)); DO_APP_FUNC(0x020EC750, void, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_EYgUqxVOvlxAncmlBdqRqEjCJSBv, (InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR * __this, InputMapper_Context * param_0000a56a, InputMapper_Options * param_0000a56b, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC6ED0, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_EYgUqxVOvlxAncmlBdqRqEjCJSBv__MethodInfo); DO_APP_FUNC(0x020ECB40, void, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_YTKNnHfkhlBSgWEjOhCZGKDfZafwA, (InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR * __this, String * param_0000a56c, MethodInfo * method)); DO_APP_FUNC(0x020ECB50, void, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_XUYlHArjcZHIIZmMQVtfQqgGDltj, (InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR * __this, UpdateLoopType__Enum param_0000a56d, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC6E50, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_XUYlHArjcZHIIZmMQVtfQqgGDltj__MethodInfo); DO_APP_FUNC(0x020ED050, void, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_RKFCdeGEFKARohjtZIMETfTjywVp, (InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR * __this, MethodInfo * method)); DO_APP_FUNC(0x020ED150, void, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_LEVMBTiGAHYaimJyWTBXOzhWSbXE, (InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR * __this, MethodInfo * method)); -DO_APP_FUNC(0x020ED200, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_LXrhUiKcfDhdcAxSIwfRGDqggPoMA__Enum, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_yMjEHhJadoUjlBJwIhWrtnpXmUDBb, (InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR * __this, ElementAssignment param_0000a56e, MethodInfo * method)); -DO_APP_FUNC(0x020ED620, bool, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_aRlwIqawrbxgqjFzdtjmSCpVvNyj, (InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR * __this, IEnumerable_1_Rewired_ControllerPollingInfo_ * param_0000a56f, ModifierKeyFlags__Enum param_0000a570, MethodInfo * method)); -DO_APP_FUNC(0x020ED940, IEnumerable_1_Rewired_ControllerPollingInfo_ *, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_lrKHDIPdKIaYGaSHGVAzdHTaEIyGb, (InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR * __this, ModifierKeyFlags__Enum param_0000a571, MethodInfo * method)); -DO_APP_FUNC(0x020EDBC0, ControllerPollingInfo, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_DHgtiKFYwTmQlQHWIkzVkwexkmEk, (InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR * __this, InputMapper_Options * param_0000a572, ModifierKeyFlags__Enum param_0000a573, MethodInfo * method)); -DO_APP_FUNC(0x020EDCB0, ControllerPollingInfo, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_DHgtiKFYwTmQlQHWIkzVkwexkmEk_1, (InputMapper_Options * param_0000a574, bool param_0000a575, ModifierKeyFlags__Enum param_0000a576, String * param_0000a577, MethodInfo * method)); +DO_APP_FUNC(0x020ED200, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_LXrhUiKcfDhdcAxSIwfRGDqggPoMA__Enum, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_yMjEHhJadoUjlBJwIhWrtnpXmUDBb, (InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR * __this, ElementAssignment * param_0000a56e, MethodInfo * method)); +DO_APP_FUNC(0x020ED620, bool, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_aRlwIqawrbxgqjFzdtjmSCpVvNyj, (InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR * __this, IEnumerable_1_Rewired_ControllerPollingInfo_ * * param_0000a56f, ModifierKeyFlags__Enum * param_0000a570, MethodInfo * method)); +DO_APP_FUNC(0x020ED940, IEnumerable_1_Rewired_ControllerPollingInfo_ *, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_lrKHDIPdKIaYGaSHGVAzdHTaEIyGb, (InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR * __this, ModifierKeyFlags__Enum * param_0000a571, MethodInfo * method)); +DO_APP_FUNC(0x020EDBC0, ControllerPollingInfo, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_DHgtiKFYwTmQlQHWIkzVkwexkmEk, (InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR * __this, InputMapper_Options * param_0000a572, ModifierKeyFlags__Enum * param_0000a573, MethodInfo * method)); +DO_APP_FUNC(0x020EDCB0, ControllerPollingInfo, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_DHgtiKFYwTmQlQHWIkzVkwexkmEk_1, (InputMapper_Options * param_0000a574, bool * param_0000a575, ModifierKeyFlags__Enum * param_0000a576, String * * param_0000a577, MethodInfo * method)); DO_APP_FUNC(0x020EE400, bool, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_CQpNFyzXAJKsEyuHfxuDNhXvBQSiA, (ControllerPollingInfo param_0000a578, InputMapper_Options * param_0000a579, MethodInfo * method)); DO_APP_FUNC(0x020EE520, bool, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_RyycAcqflvmFFvpCDtEBdyekULvW, (InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_ktfcPBlLMXTfubNjdRHamORfRcXM * param_0000a57a, ControllerPollingInfo param_0000a57b, InputMapper_Options * param_0000a57c, MethodInfo * method)); DO_APP_FUNC(0x020EE570, void, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_hTZdJXchkRVtgGAkDfXXTUIZHtz, (InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR * __this, MethodInfo * method)); @@ -42470,7 +50141,7 @@ DO_APP_FUNC(0x020EEA10, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_LXrhUiKcfDhdcAx DO_APP_FUNC(0x020EEC30, bool, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_TyFWKRbbNVFNHsRvmIoLYGmTttGm, (InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_ktfcPBlLMXTfubNjdRHamORfRcXM * param_0000a57e, ElementAssignment param_0000a57f, List_1_Rewired_Player_ * param_0000a580, MethodInfo * method)); DO_APP_FUNC(0x020EEDD0, bool, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_lEBoDhXcakIcicQCRJZeuZHtmFyi, (InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_ktfcPBlLMXTfubNjdRHamORfRcXM * param_0000a581, ElementAssignment param_0000a582, List_1_Rewired_Player_ * param_0000a583, MethodInfo * method)); DO_APP_FUNC(0x020EF0D0, IList_1_Rewired_ElementAssignmentConflictInfo_ *, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_IUNLmIzQQZpEDtKmOebKJMODFmMGA, (InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_ktfcPBlLMXTfubNjdRHamORfRcXM * param_0000a584, ElementAssignment param_0000a585, List_1_Rewired_Player_ * param_0000a586, MethodInfo * method)); -DO_APP_FUNC(0x020EF450, bool, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_tqYYKPucsQRepDiimJLXciwXkKbr, (InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_ktfcPBlLMXTfubNjdRHamORfRcXM * param_0000a587, ElementAssignment param_0000a588, ElementAssignmentConflictCheck param_0000a589, MethodInfo * method)); +DO_APP_FUNC(0x020EF450, bool, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_tqYYKPucsQRepDiimJLXciwXkKbr, (InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_ktfcPBlLMXTfubNjdRHamORfRcXM * param_0000a587, ElementAssignment param_0000a588, ElementAssignmentConflictCheck * param_0000a589, MethodInfo * method)); DO_APP_FUNC(0x020EF5A0, void, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_ZMFxMkYOKynCHMoufJmNhVlvkQFH, (InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_ktfcPBlLMXTfubNjdRHamORfRcXM * param_0000a58a, ElementAssignment param_0000a58b, List_1_Rewired_Player_ * param_0000a58c, MethodInfo * method)); DO_APP_FUNC(0x020EF760, void, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_DzZNislCYimvSlIHwfvcZRoagqOiA, (InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR * __this, MethodInfo * method)); DO_APP_FUNC(0x020EF840, void, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_nkPytsnWaCRhLOVXEKkPfhqdjONU, (InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR * __this, MethodInfo * method)); @@ -42482,6 +50153,7 @@ DO_APP_FUNC(0x020EFB40, void, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_MlJhRQoRw DO_APP_FUNC(0x020EFCA0, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_LXrhUiKcfDhdcAxSIwfRGDqggPoMA__Enum, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_xnBBqgbeZffYXojxdaPbsnDAaOUk, (InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR * __this, ElementAssignment param_0000a592, MethodInfo * method)); DO_APP_FUNC(0x020EFFB0, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_LXrhUiKcfDhdcAxSIwfRGDqggPoMA__Enum, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_FnRbSSwJSzsqKyrEJdyvaSJGvUzj, (InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR * __this, InputMapper_ConflictResponse__Enum param_0000a593, ElementAssignment param_0000a594, MethodInfo * method)); DO_APP_FUNC(0x020F0040, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_LXrhUiKcfDhdcAxSIwfRGDqggPoMA__Enum, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_FnRbSSwJSzsqKyrEJdyvaSJGvUzj_1, (InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR * __this, InputMapper_ConflictResponse__Enum param_0000a595, ElementAssignment param_0000a596, bool param_0000a597, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC6E40, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_FnRbSSwJSzsqKyrEJdyvaSJGvUzj_1__MethodInfo); DO_APP_FUNC(0x020F0340, void, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_rApMoPrEnZGQIKdJDrGFLWFJcpuBb, (InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR * __this, MethodInfo * method)); DO_APP_FUNC(0x020F0430, void, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_SmzTftWfrdLfToPAZIjiYsOQaAOg, (InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR * __this, String * param_0000a598, MethodInfo * method)); DO_APP_FUNC(0x020F0590, void, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_RtsnMHQeGKefotAiqEYOgmwsrdQk, (InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR * __this, MethodInfo * method)); @@ -42495,6 +50167,7 @@ DO_APP_FUNC(0x020F0D40, void, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_yJnepmyXL DO_APP_FUNC(0x020F0FB0, void, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_SbOfjQVQuUAzygNAxMldggKKzkui, (InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR * __this, MethodInfo * method)); DO_APP_FUNC(0x020F10A0, void, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_NPINRNuptmeelGOXTsimLbhaYntb, (InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR * __this, MethodInfo * method)); DO_APP_FUNC(0x020F1190, void, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_wKittLqrLhOuPzqgcxrKWWttlJaj, (InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR * __this, InputMapper_ConflictResponse__Enum param_0000a5a0, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC6DF0, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_wKittLqrLhOuPzqgcxrKWWttlJaj__MethodInfo); DO_APP_FUNC(0x003BB3C0, Player *, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_ktfcPBlLMXTfubNjdRHamORfRcXM_zblZdhDuHcJLVeIAUNgfcLTcepBAA, (InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_ktfcPBlLMXTfubNjdRHamORfRcXM * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_ktfcPBlLMXTfubNjdRHamORfRcXM_oodOKDCqHNzBiTEIYCCBJauiPuUTA, (InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_ktfcPBlLMXTfubNjdRHamORfRcXM * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, InputMapper_Context *, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_ktfcPBlLMXTfubNjdRHamORfRcXM_xlRFCQGivkRGarqbMRbDTEwvjDMDA, (InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_ktfcPBlLMXTfubNjdRHamORfRcXM * __this, MethodInfo * method)); @@ -42506,6 +50179,7 @@ DO_APP_FUNC(0x020F1320, AxisRange__Enum, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuog DO_APP_FUNC(0x020F1370, String *, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_ktfcPBlLMXTfubNjdRHamORfRcXM_vKHUsFrDYVrHGJlmIPUUorvDuTgd, (InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_ktfcPBlLMXTfubNjdRHamORfRcXM * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_ktfcPBlLMXTfubNjdRHamORfRcXM__ctor, (InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_ktfcPBlLMXTfubNjdRHamORfRcXM * __this, MethodInfo * method)); DO_APP_FUNC(0x020F1520, void, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_ktfcPBlLMXTfubNjdRHamORfRcXM_LIeljCbdoWdgBAecluMnblrpCnHu, (InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_ktfcPBlLMXTfubNjdRHamORfRcXM * __this, Player * param_0000a5a1, InputMapper_Context * param_0000a5a2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC6D28, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_ktfcPBlLMXTfubNjdRHamORfRcXM_LIeljCbdoWdgBAecluMnblrpCnHu__MethodInfo); DO_APP_FUNC(0x020F16C0, void, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_ktfcPBlLMXTfubNjdRHamORfRcXM_sjgQXMMRIHmhSmDrVpgFKxoFoOIy, (InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_ktfcPBlLMXTfubNjdRHamORfRcXM * __this, MethodInfo * method)); DO_APP_FUNC(0x020F17A0, ElementAssignment, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_ktfcPBlLMXTfubNjdRHamORfRcXM_SiEnCAuqXRXwqGXZyTCffAevlIWk, (InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_ktfcPBlLMXTfubNjdRHamORfRcXM * __this, ControllerPollingInfo param_0000a5a3, MethodInfo * method)); DO_APP_FUNC(0x020F1850, ElementAssignment, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_ktfcPBlLMXTfubNjdRHamORfRcXM_SiEnCAuqXRXwqGXZyTCffAevlIWk_1, (InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_ktfcPBlLMXTfubNjdRHamORfRcXM * __this, ControllerPollingInfo param_0000a5a4, ModifierKeyFlags__Enum param_0000a5a5, MethodInfo * method)); @@ -42544,39 +50218,50 @@ DO_APP_FUNC(0x020F1A80, Predicate_1_Rewired_ControllerPollingInfo_ *, InputMappe DO_APP_FUNC(0x020F1BD0, void, InputMapper_Options_set_isElementAllowedCallback, (InputMapper_Options * __this, Predicate_1_Rewired_ControllerPollingInfo_ * value, MethodInfo * method)); DO_APP_FUNC(0x020F1EB0, void, InputMapper_Options__ctor, (InputMapper_Options * __this, MethodInfo * method)); DO_APP_FUNC(0x020F2010, void, InputMapper_Options__ctor_1, (InputMapper_Options * __this, InputMapper_Options * param_0000a5b7, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC6D50, InputMapper_Options__ctor_1__MethodInfo); DO_APP_FUNC(0x020F21D0, InputMapper_Options *, InputMapper_Options_Clone, (InputMapper_Options * __this, MethodInfo * method)); DO_APP_FUNC(0x020F2240, String *, InputMapper_Options_ToString, (InputMapper_Options * __this, MethodInfo * method)); DO_APP_FUNC(0x020F2A90, void, InputMapper_Options_sjgQXMMRIHmhSmDrVpgFKxoFoOIy, (InputMapper_Options * __this, MethodInfo * method)); DO_APP_FUNC(0x020F2D50, void, InputMapper_Options_Copy, (InputMapper_Options * source, InputMapper_Options * destination, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC6CB8, InputMapper_Options_Copy__MethodInfo); DO_APP_FUNC(0x020F31F0, void, InputMapper_Options_mnQqKVJdLjcHLkZPQaFpTGBnrgQv__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InputMapper_Options_mnQqKVJdLjcHLkZPQaFpTGBnrgQv__ctor, (InputMapper_Options_mnQqKVJdLjcHLkZPQaFpTGBnrgQv * __this, MethodInfo * method)); DO_APP_FUNC(0x020F32A0, void, InputMapper_Options_mnQqKVJdLjcHLkZPQaFpTGBnrgQv_ttOiQnMpmopDpRZcsDybmtLUaUfk, (InputMapper_Options_mnQqKVJdLjcHLkZPQaFpTGBnrgQv * __this, Exception * param_0000a5ba, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC6D70, InputMapper_Options_mnQqKVJdLjcHLkZPQaFpTGBnrgQv_ttOiQnMpmopDpRZcsDybmtLUaUfk__MethodInfo); DO_APP_FUNC(0x020F3310, void, InputMapper_cUmGPChoVXjcvJTCnyVIQqUnPsZXA__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InputMapper_cUmGPChoVXjcvJTCnyVIQqUnPsZXA__ctor, (InputMapper_cUmGPChoVXjcvJTCnyVIQqUnPsZXA * __this, MethodInfo * method)); DO_APP_FUNC(0x020F33C0, void, InputMapper_cUmGPChoVXjcvJTCnyVIQqUnPsZXA_hQHfEGjSvhCNkFaaIPJAhWEDnOAue, (InputMapper_cUmGPChoVXjcvJTCnyVIQqUnPsZXA * __this, Exception * param_0000a5bb, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC6F78, InputMapper_cUmGPChoVXjcvJTCnyVIQqUnPsZXA_hQHfEGjSvhCNkFaaIPJAhWEDnOAue__MethodInfo); DO_APP_FUNC(0x020F3430, void, InputMapper_cUmGPChoVXjcvJTCnyVIQqUnPsZXA_AtyNQNmbddGWQIjLCFeqKiqSunnPA, (InputMapper_cUmGPChoVXjcvJTCnyVIQqUnPsZXA * __this, Exception * param_0000a5bc, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC6F80, InputMapper_cUmGPChoVXjcvJTCnyVIQqUnPsZXA_AtyNQNmbddGWQIjLCFeqKiqSunnPA__MethodInfo); DO_APP_FUNC(0x020F34A0, void, InputMapper_cUmGPChoVXjcvJTCnyVIQqUnPsZXA_yxYaNzVAuNMFTJDSbsDSCGOHJVVC, (InputMapper_cUmGPChoVXjcvJTCnyVIQqUnPsZXA * __this, Exception * param_0000a5bd, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC6F28, InputMapper_cUmGPChoVXjcvJTCnyVIQqUnPsZXA_yxYaNzVAuNMFTJDSbsDSCGOHJVVC__MethodInfo); DO_APP_FUNC(0x020F3510, void, InputMapper_cUmGPChoVXjcvJTCnyVIQqUnPsZXA_tqZglOqOBqhuCEBVfuhdMhWcQKdHA, (InputMapper_cUmGPChoVXjcvJTCnyVIQqUnPsZXA * __this, Exception * param_0000a5be, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC6F58, InputMapper_cUmGPChoVXjcvJTCnyVIQqUnPsZXA_tqZglOqOBqhuCEBVfuhdMhWcQKdHA__MethodInfo); DO_APP_FUNC(0x020F3580, void, InputMapper_cUmGPChoVXjcvJTCnyVIQqUnPsZXA_qiwDckFqbnXkZKEpSmJfqDhhnOMu, (InputMapper_cUmGPChoVXjcvJTCnyVIQqUnPsZXA * __this, Exception * param_0000a5bf, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC6F48, InputMapper_cUmGPChoVXjcvJTCnyVIQqUnPsZXA_qiwDckFqbnXkZKEpSmJfqDhhnOMu__MethodInfo); DO_APP_FUNC(0x020F35F0, void, InputMapper_cUmGPChoVXjcvJTCnyVIQqUnPsZXA_xFDaYVhGkZECffjkElEnncsAKedp, (InputMapper_cUmGPChoVXjcvJTCnyVIQqUnPsZXA * __this, Exception * param_0000a5c0, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC6F30, InputMapper_cUmGPChoVXjcvJTCnyVIQqUnPsZXA_xFDaYVhGkZECffjkElEnncsAKedp__MethodInfo); DO_APP_FUNC(0x020F3660, void, InputMapper_cUmGPChoVXjcvJTCnyVIQqUnPsZXA_iTYlmWmaJxwRFSONSWZGdVnkUAWN, (InputMapper_cUmGPChoVXjcvJTCnyVIQqUnPsZXA * __this, Exception * param_0000a5c1, MethodInfo * method)); -DO_APP_FUNC(0x00471910, JoystickMapSaveData__Array *, PlayerSaveData_get_joystickMapSaveData, (PlayerSaveData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, KeyboardMapSaveData__Array *, PlayerSaveData_get_keyboardMapSaveData, (PlayerSaveData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, MouseMapSaveData__Array *, PlayerSaveData_get_mouseMapSaveData, (PlayerSaveData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3D0, CustomControllerMapSaveData__Array *, PlayerSaveData_get_customControllerMapSaveData, (PlayerSaveData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3E0, InputBehavior__Array *, PlayerSaveData_get_inputBehaviors, (PlayerSaveData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FDBD10, int32_t, PlayerSaveData_get_joystickMapCount, (PlayerSaveData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x020F36D0, int32_t, PlayerSaveData_get_keyboardMapCount, (PlayerSaveData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x006BD6A0, int32_t, PlayerSaveData_get_mouseMapCount, (PlayerSaveData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x006BD920, int32_t, PlayerSaveData_get_customControllerMapCount, (PlayerSaveData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01F36830, int32_t, PlayerSaveData_get_inputBehaviorCount, (PlayerSaveData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x020F36F0, IEnumerable_1_Rewired_ControllerMapSaveData_ *, PlayerSaveData_get_AllControllerMapSaveData, (PlayerSaveData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x020F37C0, void, PlayerSaveData__ctor, (PlayerSaveData__Boxed * __this, JoystickMapSaveData__Array * param_0000a5c2, KeyboardMapSaveData__Array * param_0000a5c3, MouseMapSaveData__Array * param_0000a5c4, CustomControllerMapSaveData__Array * param_0000a5c5, IList_1_Rewired_InputBehavior_ * param_0000a5c6, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC6F50, InputMapper_cUmGPChoVXjcvJTCnyVIQqUnPsZXA_iTYlmWmaJxwRFSONSWZGdVnkUAWN__MethodInfo); +DO_APP_FUNC(0x00471910, JoystickMapSaveData__Array *, PlayerSaveData_get_joystickMapSaveData, (PlayerSaveData * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, KeyboardMapSaveData__Array *, PlayerSaveData_get_keyboardMapSaveData, (PlayerSaveData * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, MouseMapSaveData__Array *, PlayerSaveData_get_mouseMapSaveData, (PlayerSaveData * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3D0, CustomControllerMapSaveData__Array *, PlayerSaveData_get_customControllerMapSaveData, (PlayerSaveData * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3E0, InputBehavior__Array *, PlayerSaveData_get_inputBehaviors, (PlayerSaveData * __this, MethodInfo * method)); +DO_APP_FUNC(0x00FDBD10, int32_t, PlayerSaveData_get_joystickMapCount, (PlayerSaveData * __this, MethodInfo * method)); +DO_APP_FUNC(0x020F36D0, int32_t, PlayerSaveData_get_keyboardMapCount, (PlayerSaveData * __this, MethodInfo * method)); +DO_APP_FUNC(0x006BD6A0, int32_t, PlayerSaveData_get_mouseMapCount, (PlayerSaveData * __this, MethodInfo * method)); +DO_APP_FUNC(0x006BD920, int32_t, PlayerSaveData_get_customControllerMapCount, (PlayerSaveData * __this, MethodInfo * method)); +DO_APP_FUNC(0x01F36830, int32_t, PlayerSaveData_get_inputBehaviorCount, (PlayerSaveData * __this, MethodInfo * method)); +DO_APP_FUNC(0x020F36F0, IEnumerable_1_Rewired_ControllerMapSaveData_ *, PlayerSaveData_get_AllControllerMapSaveData, (PlayerSaveData * __this, MethodInfo * method)); +DO_APP_FUNC(0x020F37C0, void, PlayerSaveData__ctor, (PlayerSaveData * __this, JoystickMapSaveData__Array * param_0000a5c2, KeyboardMapSaveData__Array * param_0000a5c3, MouseMapSaveData__Array * param_0000a5c4, CustomControllerMapSaveData__Array * param_0000a5c5, IList_1_Rewired_InputBehavior_ * param_0000a5c6, MethodInfo * method)); DO_APP_FUNC(0x00FDB5B0, void, PlayerSaveData_PxSBarjRLxILyjbHDfQzCujrtzVEB__ctor, (PlayerSaveData_PxSBarjRLxILyjbHDfQzCujrtzVEB * __this, int32_t param_0000a5c7, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, PlayerSaveData_PxSBarjRLxILyjbHDfQzCujrtzVEB_System_IDisposable_Dispose, (PlayerSaveData_PxSBarjRLxILyjbHDfQzCujrtzVEB * __this, MethodInfo * method)); DO_APP_FUNC(0x020F3BB0, bool, PlayerSaveData_PxSBarjRLxILyjbHDfQzCujrtzVEB_MoveNext, (PlayerSaveData_PxSBarjRLxILyjbHDfQzCujrtzVEB * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, ControllerMapSaveData *, PlayerSaveData_PxSBarjRLxILyjbHDfQzCujrtzVEB_System_Collections_Generic_IEnumerator_Rewired_ControllerMapSaveData__get_Current, (PlayerSaveData_PxSBarjRLxILyjbHDfQzCujrtzVEB * __this, MethodInfo * method)); DO_APP_FUNC(0x020F3E00, void, PlayerSaveData_PxSBarjRLxILyjbHDfQzCujrtzVEB_System_Collections_IEnumerator_Reset, (PlayerSaveData_PxSBarjRLxILyjbHDfQzCujrtzVEB * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC6C08, PlayerSaveData_PxSBarjRLxILyjbHDfQzCujrtzVEB_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, PlayerSaveData_PxSBarjRLxILyjbHDfQzCujrtzVEB_System_Collections_IEnumerator_get_Current, (PlayerSaveData_PxSBarjRLxILyjbHDfQzCujrtzVEB * __this, MethodInfo * method)); DO_APP_FUNC(0x020F3E50, IEnumerator_1_Rewired_ControllerMapSaveData_ *, PlayerSaveData_PxSBarjRLxILyjbHDfQzCujrtzVEB_System_Collections_Generic_IEnumerable_Rewired_ControllerMapSaveData__GetEnumerator, (PlayerSaveData_PxSBarjRLxILyjbHDfQzCujrtzVEB * __this, MethodInfo * method)); DO_APP_FUNC(0x020F3E50, IEnumerator *, PlayerSaveData_PxSBarjRLxILyjbHDfQzCujrtzVEB_System_Collections_IEnumerable_GetEnumerator, (PlayerSaveData_PxSBarjRLxILyjbHDfQzCujrtzVEB * __this, MethodInfo * method)); @@ -42598,13 +50283,16 @@ DO_APP_FUNC(0x020F4690, Object *, mPaPWDBbSWieAQWusiGiHwPgKihA_FiYaBCoiTEXpixQUQ DO_APP_FUNC(0x020F4A00, PlatformInitializer *, mPaPWDBbSWieAQWusiGiHwPgKihA_gyTGQwZFswwEXYcrUySeIgjsMYIt, (Type * param_0000a5db, MethodInfo * method)); DO_APP_FUNC(0x020F4AF0, void, mPaPWDBbSWieAQWusiGiHwPgKihA__cctor, (MethodInfo * method)); DO_APP_FUNC(0x020F4BA0, List_1_System_Reflection_Assembly_ *, mPaPWDBbSWieAQWusiGiHwPgKihA_CCtOoxVlHFdxgUoBmTqEmuTeyPDl_iHMooNyWyMFNDFhcLhzVNEBJeoNy, (List_1_UnityEngine_TextAsset_ * param_0000a5dc, bool param_0000a5dd, String * param_0000a5de, int64_t param_0000a5df, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC6BD8, mPaPWDBbSWieAQWusiGiHwPgKihA_CCtOoxVlHFdxgUoBmTqEmuTeyPDl_iHMooNyWyMFNDFhcLhzVNEBJeoNy__MethodInfo); DO_APP_FUNC(0x020F4D30, void, mPaPWDBbSWieAQWusiGiHwPgKihA_CCtOoxVlHFdxgUoBmTqEmuTeyPDl_xCeinDCQhjHuUjxeOGuGDlllKmCcA, (Stream * param_0000a5e0, Stream * param_0000a5e1, MethodInfo * method)); DO_APP_FUNC(0x020F4E00, int64_t, mPaPWDBbSWieAQWusiGiHwPgKihA_CCtOoxVlHFdxgUoBmTqEmuTeyPDl_YuoOwktZPHQdnewYQjMtKUQqiygn, (Assembly * param_0000a5e2, int64_t param_0000a5e3, MethodInfo * method)); DO_APP_FUNC(0x020F5000, List_1_System_Reflection_Assembly_ *, mPaPWDBbSWieAQWusiGiHwPgKihA_CCtOoxVlHFdxgUoBmTqEmuTeyPDl_iHMooNyWyMFNDFhcLhzVNEBJeoNy_1, (List_1_UnityEngine_TextAsset_ * param_0000a5e4, bool param_0000a5e5, int64_t param_0000a5e6, MethodInfo * method)); DO_APP_FUNC(0x020F5230, Assembly *, mPaPWDBbSWieAQWusiGiHwPgKihA_CCtOoxVlHFdxgUoBmTqEmuTeyPDl_idRhXAgRJppcSVGtxFdkhqWeQjftb, (TextAsset * param_0000a5e7, bool param_0000a5e8, int64_t param_0000a5e9, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC6B68, mPaPWDBbSWieAQWusiGiHwPgKihA_CCtOoxVlHFdxgUoBmTqEmuTeyPDl_idRhXAgRJppcSVGtxFdkhqWeQjftb__MethodInfo); DO_APP_FUNC(0x020F5460, Byte__Array *, mPaPWDBbSWieAQWusiGiHwPgKihA_CCtOoxVlHFdxgUoBmTqEmuTeyPDl_ryORdrPNINfhwUKYNHnXIHTmhwGA_dKZrkARuHQaFBNoqtCeovhLtAhbY, (TextAsset * param_0000a5ea, int64_t param_0000a5eb, MethodInfo * method)); DO_APP_FUNC(0x020F55D0, Byte__Array *, mPaPWDBbSWieAQWusiGiHwPgKihA_CCtOoxVlHFdxgUoBmTqEmuTeyPDl_ryORdrPNINfhwUKYNHnXIHTmhwGA_dKZrkARuHQaFBNoqtCeovhLtAhbY_1, (Byte__Array * param_0000a5ec, int64_t param_0000a5ed, MethodInfo * method)); DO_APP_FUNC(0x020F5A70, Byte__Array *, mPaPWDBbSWieAQWusiGiHwPgKihA_CCtOoxVlHFdxgUoBmTqEmuTeyPDl_ryORdrPNINfhwUKYNHnXIHTmhwGA_dKZrkARuHQaFBNoqtCeovhLtAhbY_2, (Byte__Array * param_0000a5ee, String * param_0000a5ef, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC6B58, mPaPWDBbSWieAQWusiGiHwPgKihA_CCtOoxVlHFdxgUoBmTqEmuTeyPDl_ryORdrPNINfhwUKYNHnXIHTmhwGA_dKZrkARuHQaFBNoqtCeovhLtAhbY_2__MethodInfo); DO_APP_FUNC(0x020F5E50, Stream *, mPaPWDBbSWieAQWusiGiHwPgKihA_CCtOoxVlHFdxgUoBmTqEmuTeyPDl_ryORdrPNINfhwUKYNHnXIHTmhwGA_xrJIAjMXgYKNsJBVVArvSuNxQZSP, (String * param_0000a5f0, Encoding * param_0000a5f1, MethodInfo * method)); DO_APP_FUNC(0x020F5F60, void, Player__ctor, (Player * __this, bool param_0000a5f2, int32_t param_0000a5f3, String * param_0000a5f4, String * param_0000a5f5, QYIvqhKfoKYTEUONdLAPWBueYUGd * param_0000a5f6, ControllerMapLayoutManager_OAjbFOivILIoOuJJWeCBbjSYTLeUA * param_0000a5f7, ControllerMapEnabler_OKJjdMVAalCqZcLQzdQgZmMptzek * param_0000a5f8, MethodInfo * method)); DO_APP_FUNC(0x020F61B0, int32_t, Player_get_id, (Player * __this, MethodInfo * method)); @@ -42831,16 +50519,23 @@ DO_APP_FUNC(0x02104970, IEnumerable_1_Rewired_Controller_ *, Player_ControllerHe DO_APP_FUNC(0x02104A30, Controller *, Player_ControllerHelper_GetController, (Player_ControllerHelper * __this, ControllerType__Enum controllerType, int32_t controllerId, MethodInfo * method)); DO_APP_FUNC(0x02104B10, Controller *, Player_ControllerHelper_GetControllerWithTag, (Player_ControllerHelper * __this, ControllerType__Enum controllerType, String * tag, MethodInfo * method)); DO_APP_FUNC(0x02104BF0, void, Player_ControllerHelper_AddController, (Player_ControllerHelper * __this, Controller * controller, bool removeFromOtherPlayers, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8F48, Player_ControllerHelper_AddController__MethodInfo); DO_APP_FUNC(0x02104DE0, void, Player_ControllerHelper_AddController_1, (Player_ControllerHelper * __this, ControllerType__Enum controllerType, int32_t controllerId, bool removeFromOtherPlayers, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8F40, Player_ControllerHelper_AddController_1__MethodInfo); DO_APP_FUNC(0x021050A0, void, Player_ControllerHelper_RemoveController, (Player_ControllerHelper * __this, ControllerType__Enum controllerType, int32_t controllerId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8F38, Player_ControllerHelper_RemoveController__MethodInfo); DO_APP_FUNC(0x02105210, void, Player_ControllerHelper_RemoveController_1, (Player_ControllerHelper * __this, Controller * controller, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8F28, Player_ControllerHelper_RemoveController_1__MethodInfo); DO_APP_FUNC(0x021053E0, bool, Player_ControllerHelper_ContainsController, (Player_ControllerHelper * __this, ControllerType__Enum controllerType, int32_t controllerId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8F30, Player_ControllerHelper_ContainsController__MethodInfo); DO_APP_FUNC(0x02105580, bool, Player_ControllerHelper_ContainsController_1, (Player_ControllerHelper * __this, Controller * controller, MethodInfo * method)); DO_APP_FUNC(0x02105640, void, Player_ControllerHelper_ClearControllersOfType, (Player_ControllerHelper * __this, ControllerType__Enum controllerType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8F58, Player_ControllerHelper_ClearControllersOfType__MethodInfo); DO_APP_FUNC(0x02105780, void, Player_ControllerHelper_ClearAllControllers, (Player_ControllerHelper * __this, MethodInfo * method)); DO_APP_FUNC(0x02105830, Controller *, Player_ControllerHelper_GetLastActiveController, (Player_ControllerHelper * __this, MethodInfo * method)); DO_APP_FUNC(0x02105970, Controller *, Player_ControllerHelper_GetLastActiveController_1, (Player_ControllerHelper * __this, ControllerType__Enum controllerType, MethodInfo * method)); -DO_APP_FUNC(0x02105AF0, void, Player_ControllerHelper_NKYLYniBxxVsZDKHbSxZGuiPhhGI, (Player_ControllerHelper * __this, ControllerType__Enum param_0000a73e, Controller * param_0000a73f, double param_0000a740, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8F50, Player_ControllerHelper_GetLastActiveController_1__MethodInfo); +DO_APP_FUNC(0x02105AF0, void, Player_ControllerHelper_NKYLYniBxxVsZDKHbSxZGuiPhhGI, (Player_ControllerHelper * __this, ControllerType__Enum param_0000a73e, Controller * * param_0000a73f, double * param_0000a740, MethodInfo * method)); DO_APP_FUNC(0x02105D40, void, Player_ControllerHelper_AddLastActiveControllerChangedDelegate, (Player_ControllerHelper * __this, PlayerActiveControllerChangedDelegate * callback, MethodInfo * method)); DO_APP_FUNC(0x02105EF0, void, Player_ControllerHelper_AddLastActiveControllerChangedDelegate_1, (Player_ControllerHelper * __this, PlayerActiveControllerChangedDelegate * callback, ControllerType__Enum controllerType, MethodInfo * method)); DO_APP_FUNC(0x021060A0, void, Player_ControllerHelper_RemoveLastActiveControllerChangedDelegate, (Player_ControllerHelper * __this, PlayerActiveControllerChangedDelegate * callback, MethodInfo * method)); @@ -42870,39 +50565,51 @@ DO_APP_FUNC(0x02109600, void, Player_ControllerHelper_ConflictCheckingHelper__ct DO_APP_FUNC(0x02109710, bool, Player_ControllerHelper_ConflictCheckingHelper_DoesElementAssignmentConflict, (Player_ControllerHelper_ConflictCheckingHelper * __this, ControllerType__Enum controllerType, int32_t controllerId, ControllerMap * controllerMap, MethodInfo * method)); DO_APP_FUNC(0x02109740, bool, Player_ControllerHelper_ConflictCheckingHelper_DoesElementAssignmentConflict_1, (Player_ControllerHelper_ConflictCheckingHelper * __this, ControllerType__Enum controllerType, int32_t controllerId, ControllerMap * controllerMap, bool skipDisabledMaps, MethodInfo * method)); DO_APP_FUNC(0x02109770, bool, Player_ControllerHelper_ConflictCheckingHelper_DoesElementAssignmentConflict_2, (Player_ControllerHelper_ConflictCheckingHelper * __this, ControllerType__Enum controllerType, int32_t controllerId, ControllerMap * controllerMap, bool skipDisabledMaps, bool forceCheckAllCategories, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8EB8, Player_ControllerHelper_ConflictCheckingHelper_DoesElementAssignmentConflict_2__MethodInfo); DO_APP_FUNC(0x02109A30, bool, Player_ControllerHelper_ConflictCheckingHelper_DoesElementAssignmentConflict_3, (Player_ControllerHelper_ConflictCheckingHelper * __this, ControllerType__Enum controllerType, int32_t controllerId, ControllerMap * controllerMap, ActionElementMap * elementMap, MethodInfo * method)); DO_APP_FUNC(0x02109A60, bool, Player_ControllerHelper_ConflictCheckingHelper_DoesElementAssignmentConflict_4, (Player_ControllerHelper_ConflictCheckingHelper * __this, ControllerType__Enum controllerType, int32_t controllerId, ControllerMap * controllerMap, ActionElementMap * elementMap, bool skipDisabledMaps, MethodInfo * method)); DO_APP_FUNC(0x02109A90, bool, Player_ControllerHelper_ConflictCheckingHelper_DoesElementAssignmentConflict_5, (Player_ControllerHelper_ConflictCheckingHelper * __this, ControllerType__Enum controllerType, int32_t controllerId, ControllerMap * controllerMap, ActionElementMap * elementMap, bool skipDisabledMaps, bool forceCheckAllCategories, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8E58, Player_ControllerHelper_ConflictCheckingHelper_DoesElementAssignmentConflict_5__MethodInfo); DO_APP_FUNC(0x02109DA0, bool, Player_ControllerHelper_ConflictCheckingHelper_DoesElementAssignmentConflict_6, (Player_ControllerHelper_ConflictCheckingHelper * __this, ElementAssignmentConflictCheck conflictCheck, MethodInfo * method)); DO_APP_FUNC(0x02109DF0, bool, Player_ControllerHelper_ConflictCheckingHelper_DoesElementAssignmentConflict_7, (Player_ControllerHelper_ConflictCheckingHelper * __this, ElementAssignmentConflictCheck conflictCheck, bool skipDisabledMaps, MethodInfo * method)); DO_APP_FUNC(0x02109E40, bool, Player_ControllerHelper_ConflictCheckingHelper_DoesElementAssignmentConflict_8, (Player_ControllerHelper_ConflictCheckingHelper * __this, ElementAssignmentConflictCheck conflictCheck, bool skipDisabledMaps, bool forceCheckAllCategories, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8E60, Player_ControllerHelper_ConflictCheckingHelper_DoesElementAssignmentConflict_8__MethodInfo); DO_APP_FUNC(0x0210A0C0, IEnumerable_1_Rewired_ElementAssignmentConflictInfo_ *, Player_ControllerHelper_ConflictCheckingHelper_ElementAssignmentConflicts, (Player_ControllerHelper_ConflictCheckingHelper * __this, ControllerType__Enum controllerType, int32_t controllerId, ControllerMap * controllerMap, MethodInfo * method)); DO_APP_FUNC(0x0210A0F0, IEnumerable_1_Rewired_ElementAssignmentConflictInfo_ *, Player_ControllerHelper_ConflictCheckingHelper_ElementAssignmentConflicts_1, (Player_ControllerHelper_ConflictCheckingHelper * __this, ControllerType__Enum controllerType, int32_t controllerId, ControllerMap * controllerMap, bool skipDisabledMaps, MethodInfo * method)); DO_APP_FUNC(0x0210A120, IEnumerable_1_Rewired_ElementAssignmentConflictInfo_ *, Player_ControllerHelper_ConflictCheckingHelper_ElementAssignmentConflicts_2, (Player_ControllerHelper_ConflictCheckingHelper * __this, ControllerType__Enum controllerType, int32_t controllerId, ControllerMap * controllerMap, bool skipDisabledMaps, bool forceCheckAllCategories, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8E48, Player_ControllerHelper_ConflictCheckingHelper_ElementAssignmentConflicts_2__MethodInfo); DO_APP_FUNC(0x0210A620, IEnumerable_1_Rewired_ElementAssignmentConflictInfo_ *, Player_ControllerHelper_ConflictCheckingHelper_ElementAssignmentConflicts_3, (Player_ControllerHelper_ConflictCheckingHelper * __this, ControllerType__Enum controllerType, int32_t controllerId, ControllerMap * controllerMap, ActionElementMap * elementMap, MethodInfo * method)); DO_APP_FUNC(0x0210A650, IEnumerable_1_Rewired_ElementAssignmentConflictInfo_ *, Player_ControllerHelper_ConflictCheckingHelper_ElementAssignmentConflicts_4, (Player_ControllerHelper_ConflictCheckingHelper * __this, ControllerType__Enum controllerType, int32_t controllerId, ControllerMap * controllerMap, ActionElementMap * elementMap, bool skipDisabledMaps, MethodInfo * method)); DO_APP_FUNC(0x0210A680, IEnumerable_1_Rewired_ElementAssignmentConflictInfo_ *, Player_ControllerHelper_ConflictCheckingHelper_ElementAssignmentConflicts_5, (Player_ControllerHelper_ConflictCheckingHelper * __this, ControllerType__Enum controllerType, int32_t controllerId, ControllerMap * controllerMap, ActionElementMap * elementMap, bool skipDisabledMaps, bool forceCheckAllCategories, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8E40, Player_ControllerHelper_ConflictCheckingHelper_ElementAssignmentConflicts_5__MethodInfo); DO_APP_FUNC(0x0210AC40, IEnumerable_1_Rewired_ElementAssignmentConflictInfo_ *, Player_ControllerHelper_ConflictCheckingHelper_ElementAssignmentConflicts_6, (Player_ControllerHelper_ConflictCheckingHelper * __this, ElementAssignmentConflictCheck conflictCheck, MethodInfo * method)); DO_APP_FUNC(0x0210AC90, IEnumerable_1_Rewired_ElementAssignmentConflictInfo_ *, Player_ControllerHelper_ConflictCheckingHelper_ElementAssignmentConflicts_7, (Player_ControllerHelper_ConflictCheckingHelper * __this, ElementAssignmentConflictCheck conflictCheck, bool skipDisabledMaps, MethodInfo * method)); DO_APP_FUNC(0x0210ACE0, IEnumerable_1_Rewired_ElementAssignmentConflictInfo_ *, Player_ControllerHelper_ConflictCheckingHelper_ElementAssignmentConflicts_8, (Player_ControllerHelper_ConflictCheckingHelper * __this, ElementAssignmentConflictCheck conflictCheck, bool skipDisabledMaps, bool forceCheckAllCategories, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8E38, Player_ControllerHelper_ConflictCheckingHelper_ElementAssignmentConflicts_8__MethodInfo); DO_APP_FUNC(0x0210B150, int32_t, Player_ControllerHelper_ConflictCheckingHelper_RemoveElementAssignmentConflicts, (Player_ControllerHelper_ConflictCheckingHelper * __this, ControllerType__Enum controllerType, int32_t controllerId, ControllerMap * controllerMap, MethodInfo * method)); DO_APP_FUNC(0x0210B180, int32_t, Player_ControllerHelper_ConflictCheckingHelper_RemoveElementAssignmentConflicts_1, (Player_ControllerHelper_ConflictCheckingHelper * __this, ControllerType__Enum controllerType, int32_t controllerId, ControllerMap * controllerMap, bool skipRemovedMaps, MethodInfo * method)); DO_APP_FUNC(0x0210B1B0, int32_t, Player_ControllerHelper_ConflictCheckingHelper_RemoveElementAssignmentConflicts_2, (Player_ControllerHelper_ConflictCheckingHelper * __this, ControllerType__Enum controllerType, int32_t controllerId, ControllerMap * controllerMap, bool skipRemovedMaps, bool forceCheckAllCategories, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8E88, Player_ControllerHelper_ConflictCheckingHelper_RemoveElementAssignmentConflicts_2__MethodInfo); DO_APP_FUNC(0x0210B470, int32_t, Player_ControllerHelper_ConflictCheckingHelper_RemoveElementAssignmentConflicts_3, (Player_ControllerHelper_ConflictCheckingHelper * __this, ControllerType__Enum controllerType, int32_t controllerId, ControllerMap * controllerMap, ActionElementMap * elementMap, MethodInfo * method)); DO_APP_FUNC(0x0210B4A0, int32_t, Player_ControllerHelper_ConflictCheckingHelper_RemoveElementAssignmentConflicts_4, (Player_ControllerHelper_ConflictCheckingHelper * __this, ControllerType__Enum controllerType, int32_t controllerId, ControllerMap * controllerMap, ActionElementMap * elementMap, bool skipRemovedMaps, MethodInfo * method)); DO_APP_FUNC(0x0210B4D0, int32_t, Player_ControllerHelper_ConflictCheckingHelper_RemoveElementAssignmentConflicts_5, (Player_ControllerHelper_ConflictCheckingHelper * __this, ControllerType__Enum controllerType, int32_t controllerId, ControllerMap * controllerMap, ActionElementMap * elementMap, bool skipRemovedMaps, bool forceCheckAllCategories, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8E90, Player_ControllerHelper_ConflictCheckingHelper_RemoveElementAssignmentConflicts_5__MethodInfo); DO_APP_FUNC(0x0210B7E0, int32_t, Player_ControllerHelper_ConflictCheckingHelper_RemoveElementAssignmentConflicts_6, (Player_ControllerHelper_ConflictCheckingHelper * __this, ElementAssignmentConflictCheck conflictCheck, MethodInfo * method)); DO_APP_FUNC(0x0210B830, int32_t, Player_ControllerHelper_ConflictCheckingHelper_RemoveElementAssignmentConflicts_7, (Player_ControllerHelper_ConflictCheckingHelper * __this, ElementAssignmentConflictCheck conflictCheck, bool skipRemovedMaps, MethodInfo * method)); DO_APP_FUNC(0x0210B880, int32_t, Player_ControllerHelper_ConflictCheckingHelper_RemoveElementAssignmentConflicts_8, (Player_ControllerHelper_ConflictCheckingHelper * __this, ElementAssignmentConflictCheck conflictCheck, bool skipRemovedMaps, bool forceCheckAllCategories, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8E80, Player_ControllerHelper_ConflictCheckingHelper_RemoveElementAssignmentConflicts_8__MethodInfo); DO_APP_FUNC(0x0210BB00, int32_t, Player_ControllerHelper_ConflictCheckingHelper_DisableElementAssignmentConflicts, (Player_ControllerHelper_ConflictCheckingHelper * __this, ControllerType__Enum controllerType, int32_t controllerId, ControllerMap * controllerMap, MethodInfo * method)); DO_APP_FUNC(0x0210BB30, int32_t, Player_ControllerHelper_ConflictCheckingHelper_DisableElementAssignmentConflicts_1, (Player_ControllerHelper_ConflictCheckingHelper * __this, ControllerType__Enum controllerType, int32_t controllerId, ControllerMap * controllerMap, bool skipDisabledMaps, MethodInfo * method)); DO_APP_FUNC(0x0210BB60, int32_t, Player_ControllerHelper_ConflictCheckingHelper_DisableElementAssignmentConflicts_2, (Player_ControllerHelper_ConflictCheckingHelper * __this, ControllerType__Enum controllerType, int32_t controllerId, ControllerMap * controllerMap, bool skipDisabledMaps, bool forceCheckAllCategories, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8E78, Player_ControllerHelper_ConflictCheckingHelper_DisableElementAssignmentConflicts_2__MethodInfo); DO_APP_FUNC(0x0210BE50, int32_t, Player_ControllerHelper_ConflictCheckingHelper_DisableElementAssignmentConflicts_3, (Player_ControllerHelper_ConflictCheckingHelper * __this, ControllerType__Enum controllerType, int32_t controllerId, ControllerMap * controllerMap, ActionElementMap * elementMap, MethodInfo * method)); DO_APP_FUNC(0x0210BE80, int32_t, Player_ControllerHelper_ConflictCheckingHelper_DisableElementAssignmentConflicts_4, (Player_ControllerHelper_ConflictCheckingHelper * __this, ControllerType__Enum controllerType, int32_t controllerId, ControllerMap * controllerMap, ActionElementMap * elementMap, bool skipDisabledMaps, MethodInfo * method)); DO_APP_FUNC(0x0210BEB0, int32_t, Player_ControllerHelper_ConflictCheckingHelper_DisableElementAssignmentConflicts_5, (Player_ControllerHelper_ConflictCheckingHelper * __this, ControllerType__Enum controllerType, int32_t controllerId, ControllerMap * controllerMap, ActionElementMap * elementMap, bool skipDisabledMaps, bool forceCheckAllCategories, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8E68, Player_ControllerHelper_ConflictCheckingHelper_DisableElementAssignmentConflicts_5__MethodInfo); DO_APP_FUNC(0x0210C1E0, int32_t, Player_ControllerHelper_ConflictCheckingHelper_DisableElementAssignmentConflicts_6, (Player_ControllerHelper_ConflictCheckingHelper * __this, ElementAssignmentConflictCheck conflictCheck, MethodInfo * method)); DO_APP_FUNC(0x0210C230, int32_t, Player_ControllerHelper_ConflictCheckingHelper_DisableElementAssignmentConflicts_7, (Player_ControllerHelper_ConflictCheckingHelper * __this, ElementAssignmentConflictCheck conflictCheck, bool skipDisabledMaps, MethodInfo * method)); DO_APP_FUNC(0x0210C280, int32_t, Player_ControllerHelper_ConflictCheckingHelper_DisableElementAssignmentConflicts_8, (Player_ControllerHelper_ConflictCheckingHelper * __this, ElementAssignmentConflictCheck conflictCheck, bool skipDisabledMaps, bool forceCheckAllCategories, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8E70, Player_ControllerHelper_ConflictCheckingHelper_DisableElementAssignmentConflicts_8__MethodInfo); DO_APP_FUNC(0x0210C510, bool, Player_ControllerHelper_ConflictCheckingHelper_KnHHDDHlGmPvNTtaPtMvZjWsvrbh, (Player_ControllerHelper_ConflictCheckingHelper * __this, int32_t param_0000a7fb, JoystickMap * param_0000a7fc, bool param_0000a7fd, bool param_0000a7fe, MethodInfo * method)); DO_APP_FUNC(0x0210C720, bool, Player_ControllerHelper_ConflictCheckingHelper_KnHHDDHlGmPvNTtaPtMvZjWsvrbh_1, (Player_ControllerHelper_ConflictCheckingHelper * __this, int32_t param_0000a7ff, JoystickMap * param_0000a800, ActionElementMap * param_0000a801, bool param_0000a802, bool param_0000a803, MethodInfo * method)); DO_APP_FUNC(0x0210C950, bool, Player_ControllerHelper_ConflictCheckingHelper_KnHHDDHlGmPvNTtaPtMvZjWsvrbh_2, (Player_ControllerHelper_ConflictCheckingHelper * __this, ElementAssignmentConflictCheck param_0000a804, bool param_0000a805, bool param_0000a806, MethodInfo * method)); @@ -42958,6 +50665,7 @@ DO_APP_FUNC(0x02111110, bool, Player_ControllerHelper_ConflictCheckingHelper_seM DO_APP_FUNC(0x02111630, void, Player_ControllerHelper_ConflictCheckingHelper_seMFeVgthuYlnQkjTeOBPcrptLpN_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (Player_ControllerHelper_ConflictCheckingHelper_seMFeVgthuYlnQkjTeOBPcrptLpN * __this, MethodInfo * method)); DO_APP_FUNC(0x00F95D10, ElementAssignmentConflictInfo, Player_ControllerHelper_ConflictCheckingHelper_seMFeVgthuYlnQkjTeOBPcrptLpN_System_Collections_Generic_IEnumerator_Rewired_ElementAssignmentConflictInfo__get_Current, (Player_ControllerHelper_ConflictCheckingHelper_seMFeVgthuYlnQkjTeOBPcrptLpN * __this, MethodInfo * method)); DO_APP_FUNC(0x02111690, void, Player_ControllerHelper_ConflictCheckingHelper_seMFeVgthuYlnQkjTeOBPcrptLpN_System_Collections_IEnumerator_Reset, (Player_ControllerHelper_ConflictCheckingHelper_seMFeVgthuYlnQkjTeOBPcrptLpN * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8CB8, Player_ControllerHelper_ConflictCheckingHelper_seMFeVgthuYlnQkjTeOBPcrptLpN_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x021116E0, Object *, Player_ControllerHelper_ConflictCheckingHelper_seMFeVgthuYlnQkjTeOBPcrptLpN_System_Collections_IEnumerator_get_Current, (Player_ControllerHelper_ConflictCheckingHelper_seMFeVgthuYlnQkjTeOBPcrptLpN * __this, MethodInfo * method)); DO_APP_FUNC(0x02111750, IEnumerator_1_Rewired_ElementAssignmentConflictInfo_ *, Player_ControllerHelper_ConflictCheckingHelper_seMFeVgthuYlnQkjTeOBPcrptLpN_System_Collections_Generic_IEnumerable_Rewired_ElementAssignmentConflictInfo__GetEnumerator, (Player_ControllerHelper_ConflictCheckingHelper_seMFeVgthuYlnQkjTeOBPcrptLpN * __this, MethodInfo * method)); DO_APP_FUNC(0x02111920, IEnumerator *, Player_ControllerHelper_ConflictCheckingHelper_seMFeVgthuYlnQkjTeOBPcrptLpN_System_Collections_IEnumerable_GetEnumerator, (Player_ControllerHelper_ConflictCheckingHelper_seMFeVgthuYlnQkjTeOBPcrptLpN * __this, MethodInfo * method)); @@ -42967,6 +50675,7 @@ DO_APP_FUNC(0x02111A00, bool, Player_ControllerHelper_ConflictCheckingHelper_mgp DO_APP_FUNC(0x02111F40, void, Player_ControllerHelper_ConflictCheckingHelper_mgpdnBgaYGGaXcBWLoElhQRfruil_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (Player_ControllerHelper_ConflictCheckingHelper_mgpdnBgaYGGaXcBWLoElhQRfruil * __this, MethodInfo * method)); DO_APP_FUNC(0x00F95D10, ElementAssignmentConflictInfo, Player_ControllerHelper_ConflictCheckingHelper_mgpdnBgaYGGaXcBWLoElhQRfruil_System_Collections_Generic_IEnumerator_Rewired_ElementAssignmentConflictInfo__get_Current, (Player_ControllerHelper_ConflictCheckingHelper_mgpdnBgaYGGaXcBWLoElhQRfruil * __this, MethodInfo * method)); DO_APP_FUNC(0x02111FA0, void, Player_ControllerHelper_ConflictCheckingHelper_mgpdnBgaYGGaXcBWLoElhQRfruil_System_Collections_IEnumerator_Reset, (Player_ControllerHelper_ConflictCheckingHelper_mgpdnBgaYGGaXcBWLoElhQRfruil * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8C68, Player_ControllerHelper_ConflictCheckingHelper_mgpdnBgaYGGaXcBWLoElhQRfruil_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x02111FF0, Object *, Player_ControllerHelper_ConflictCheckingHelper_mgpdnBgaYGGaXcBWLoElhQRfruil_System_Collections_IEnumerator_get_Current, (Player_ControllerHelper_ConflictCheckingHelper_mgpdnBgaYGGaXcBWLoElhQRfruil * __this, MethodInfo * method)); DO_APP_FUNC(0x02112060, IEnumerator_1_Rewired_ElementAssignmentConflictInfo_ *, Player_ControllerHelper_ConflictCheckingHelper_mgpdnBgaYGGaXcBWLoElhQRfruil_System_Collections_Generic_IEnumerable_Rewired_ElementAssignmentConflictInfo__GetEnumerator, (Player_ControllerHelper_ConflictCheckingHelper_mgpdnBgaYGGaXcBWLoElhQRfruil * __this, MethodInfo * method)); DO_APP_FUNC(0x02112290, IEnumerator *, Player_ControllerHelper_ConflictCheckingHelper_mgpdnBgaYGGaXcBWLoElhQRfruil_System_Collections_IEnumerable_GetEnumerator, (Player_ControllerHelper_ConflictCheckingHelper_mgpdnBgaYGGaXcBWLoElhQRfruil * __this, MethodInfo * method)); @@ -42976,6 +50685,7 @@ DO_APP_FUNC(0x02112370, bool, Player_ControllerHelper_ConflictCheckingHelper_mUW DO_APP_FUNC(0x02112900, void, Player_ControllerHelper_ConflictCheckingHelper_mUWkDBagfYzQjOYHxanJRxnKhJKR_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (Player_ControllerHelper_ConflictCheckingHelper_mUWkDBagfYzQjOYHxanJRxnKhJKR * __this, MethodInfo * method)); DO_APP_FUNC(0x00F95D10, ElementAssignmentConflictInfo, Player_ControllerHelper_ConflictCheckingHelper_mUWkDBagfYzQjOYHxanJRxnKhJKR_System_Collections_Generic_IEnumerator_Rewired_ElementAssignmentConflictInfo__get_Current, (Player_ControllerHelper_ConflictCheckingHelper_mUWkDBagfYzQjOYHxanJRxnKhJKR * __this, MethodInfo * method)); DO_APP_FUNC(0x02112960, void, Player_ControllerHelper_ConflictCheckingHelper_mUWkDBagfYzQjOYHxanJRxnKhJKR_System_Collections_IEnumerator_Reset, (Player_ControllerHelper_ConflictCheckingHelper_mUWkDBagfYzQjOYHxanJRxnKhJKR * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8C60, Player_ControllerHelper_ConflictCheckingHelper_mUWkDBagfYzQjOYHxanJRxnKhJKR_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x021129B0, Object *, Player_ControllerHelper_ConflictCheckingHelper_mUWkDBagfYzQjOYHxanJRxnKhJKR_System_Collections_IEnumerator_get_Current, (Player_ControllerHelper_ConflictCheckingHelper_mUWkDBagfYzQjOYHxanJRxnKhJKR * __this, MethodInfo * method)); DO_APP_FUNC(0x02112A20, IEnumerator_1_Rewired_ElementAssignmentConflictInfo_ *, Player_ControllerHelper_ConflictCheckingHelper_mUWkDBagfYzQjOYHxanJRxnKhJKR_System_Collections_Generic_IEnumerable_Rewired_ElementAssignmentConflictInfo__GetEnumerator, (Player_ControllerHelper_ConflictCheckingHelper_mUWkDBagfYzQjOYHxanJRxnKhJKR * __this, MethodInfo * method)); DO_APP_FUNC(0x02112BE0, IEnumerator *, Player_ControllerHelper_ConflictCheckingHelper_mUWkDBagfYzQjOYHxanJRxnKhJKR_System_Collections_IEnumerable_GetEnumerator, (Player_ControllerHelper_ConflictCheckingHelper_mUWkDBagfYzQjOYHxanJRxnKhJKR * __this, MethodInfo * method)); @@ -42985,6 +50695,7 @@ DO_APP_FUNC(0x02112E60, bool, Player_ControllerHelper_ConflictCheckingHelper_UfN DO_APP_FUNC(0x02113380, void, Player_ControllerHelper_ConflictCheckingHelper_UfNDvLSuuVWMljDzPWrCWaYplcOt_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (Player_ControllerHelper_ConflictCheckingHelper_UfNDvLSuuVWMljDzPWrCWaYplcOt * __this, MethodInfo * method)); DO_APP_FUNC(0x00F95D10, ElementAssignmentConflictInfo, Player_ControllerHelper_ConflictCheckingHelper_UfNDvLSuuVWMljDzPWrCWaYplcOt_System_Collections_Generic_IEnumerator_Rewired_ElementAssignmentConflictInfo__get_Current, (Player_ControllerHelper_ConflictCheckingHelper_UfNDvLSuuVWMljDzPWrCWaYplcOt * __this, MethodInfo * method)); DO_APP_FUNC(0x021133E0, void, Player_ControllerHelper_ConflictCheckingHelper_UfNDvLSuuVWMljDzPWrCWaYplcOt_System_Collections_IEnumerator_Reset, (Player_ControllerHelper_ConflictCheckingHelper_UfNDvLSuuVWMljDzPWrCWaYplcOt * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8C78, Player_ControllerHelper_ConflictCheckingHelper_UfNDvLSuuVWMljDzPWrCWaYplcOt_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x02113430, Object *, Player_ControllerHelper_ConflictCheckingHelper_UfNDvLSuuVWMljDzPWrCWaYplcOt_System_Collections_IEnumerator_get_Current, (Player_ControllerHelper_ConflictCheckingHelper_UfNDvLSuuVWMljDzPWrCWaYplcOt * __this, MethodInfo * method)); DO_APP_FUNC(0x021134A0, IEnumerator_1_Rewired_ElementAssignmentConflictInfo_ *, Player_ControllerHelper_ConflictCheckingHelper_UfNDvLSuuVWMljDzPWrCWaYplcOt_System_Collections_Generic_IEnumerable_Rewired_ElementAssignmentConflictInfo__GetEnumerator, (Player_ControllerHelper_ConflictCheckingHelper_UfNDvLSuuVWMljDzPWrCWaYplcOt * __this, MethodInfo * method)); DO_APP_FUNC(0x02113670, IEnumerator *, Player_ControllerHelper_ConflictCheckingHelper_UfNDvLSuuVWMljDzPWrCWaYplcOt_System_Collections_IEnumerable_GetEnumerator, (Player_ControllerHelper_ConflictCheckingHelper_UfNDvLSuuVWMljDzPWrCWaYplcOt * __this, MethodInfo * method)); @@ -42994,6 +50705,7 @@ DO_APP_FUNC(0x02113750, bool, Player_ControllerHelper_ConflictCheckingHelper_Cpb DO_APP_FUNC(0x02113C90, void, Player_ControllerHelper_ConflictCheckingHelper_CpboUSTDPpAlEByKEzJxQNQnVRSjA_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (Player_ControllerHelper_ConflictCheckingHelper_CpboUSTDPpAlEByKEzJxQNQnVRSjA * __this, MethodInfo * method)); DO_APP_FUNC(0x00F95D10, ElementAssignmentConflictInfo, Player_ControllerHelper_ConflictCheckingHelper_CpboUSTDPpAlEByKEzJxQNQnVRSjA_System_Collections_Generic_IEnumerator_Rewired_ElementAssignmentConflictInfo__get_Current, (Player_ControllerHelper_ConflictCheckingHelper_CpboUSTDPpAlEByKEzJxQNQnVRSjA * __this, MethodInfo * method)); DO_APP_FUNC(0x02113CF0, void, Player_ControllerHelper_ConflictCheckingHelper_CpboUSTDPpAlEByKEzJxQNQnVRSjA_System_Collections_IEnumerator_Reset, (Player_ControllerHelper_ConflictCheckingHelper_CpboUSTDPpAlEByKEzJxQNQnVRSjA * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8C10, Player_ControllerHelper_ConflictCheckingHelper_CpboUSTDPpAlEByKEzJxQNQnVRSjA_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x02113D40, Object *, Player_ControllerHelper_ConflictCheckingHelper_CpboUSTDPpAlEByKEzJxQNQnVRSjA_System_Collections_IEnumerator_get_Current, (Player_ControllerHelper_ConflictCheckingHelper_CpboUSTDPpAlEByKEzJxQNQnVRSjA * __this, MethodInfo * method)); DO_APP_FUNC(0x02113DB0, IEnumerator_1_Rewired_ElementAssignmentConflictInfo_ *, Player_ControllerHelper_ConflictCheckingHelper_CpboUSTDPpAlEByKEzJxQNQnVRSjA_System_Collections_Generic_IEnumerable_Rewired_ElementAssignmentConflictInfo__GetEnumerator, (Player_ControllerHelper_ConflictCheckingHelper_CpboUSTDPpAlEByKEzJxQNQnVRSjA * __this, MethodInfo * method)); DO_APP_FUNC(0x02113FE0, IEnumerator *, Player_ControllerHelper_ConflictCheckingHelper_CpboUSTDPpAlEByKEzJxQNQnVRSjA_System_Collections_IEnumerable_GetEnumerator, (Player_ControllerHelper_ConflictCheckingHelper_CpboUSTDPpAlEByKEzJxQNQnVRSjA * __this, MethodInfo * method)); @@ -43003,6 +50715,7 @@ DO_APP_FUNC(0x021140C0, bool, Player_ControllerHelper_ConflictCheckingHelper_XkL DO_APP_FUNC(0x02114650, void, Player_ControllerHelper_ConflictCheckingHelper_XkLhlYBnluQbLhNtRkMMXhTvLXOs_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (Player_ControllerHelper_ConflictCheckingHelper_XkLhlYBnluQbLhNtRkMMXhTvLXOs * __this, MethodInfo * method)); DO_APP_FUNC(0x00F95D10, ElementAssignmentConflictInfo, Player_ControllerHelper_ConflictCheckingHelper_XkLhlYBnluQbLhNtRkMMXhTvLXOs_System_Collections_Generic_IEnumerator_Rewired_ElementAssignmentConflictInfo__get_Current, (Player_ControllerHelper_ConflictCheckingHelper_XkLhlYBnluQbLhNtRkMMXhTvLXOs * __this, MethodInfo * method)); DO_APP_FUNC(0x021146B0, void, Player_ControllerHelper_ConflictCheckingHelper_XkLhlYBnluQbLhNtRkMMXhTvLXOs_System_Collections_IEnumerator_Reset, (Player_ControllerHelper_ConflictCheckingHelper_XkLhlYBnluQbLhNtRkMMXhTvLXOs * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8BF8, Player_ControllerHelper_ConflictCheckingHelper_XkLhlYBnluQbLhNtRkMMXhTvLXOs_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x02114700, Object *, Player_ControllerHelper_ConflictCheckingHelper_XkLhlYBnluQbLhNtRkMMXhTvLXOs_System_Collections_IEnumerator_get_Current, (Player_ControllerHelper_ConflictCheckingHelper_XkLhlYBnluQbLhNtRkMMXhTvLXOs * __this, MethodInfo * method)); DO_APP_FUNC(0x02114770, IEnumerator_1_Rewired_ElementAssignmentConflictInfo_ *, Player_ControllerHelper_ConflictCheckingHelper_XkLhlYBnluQbLhNtRkMMXhTvLXOs_System_Collections_Generic_IEnumerable_Rewired_ElementAssignmentConflictInfo__GetEnumerator, (Player_ControllerHelper_ConflictCheckingHelper_XkLhlYBnluQbLhNtRkMMXhTvLXOs * __this, MethodInfo * method)); DO_APP_FUNC(0x02114930, IEnumerator *, Player_ControllerHelper_ConflictCheckingHelper_XkLhlYBnluQbLhNtRkMMXhTvLXOs_System_Collections_IEnumerable_GetEnumerator, (Player_ControllerHelper_ConflictCheckingHelper_XkLhlYBnluQbLhNtRkMMXhTvLXOs * __this, MethodInfo * method)); @@ -43010,6 +50723,7 @@ DO_APP_FUNC(0x02114AE0, Player_ControllerHelper_fsFeIeGDhTZoJrGbaYxAfXlTfeQO *, DO_APP_FUNC(0x02114B10, ControllerType__Enum, Player_ControllerHelper_dQSYPTHvbqNnvMJggKPUmplchfgjA_kzDjgDNVMcIrBBQfdEqRkmKyZgUY, (Player_ControllerHelper_dQSYPTHvbqNnvMJggKPUmplchfgjA * __this, int32_t param_0000a930, MethodInfo * method)); DO_APP_FUNC(0x02114B40, void, Player_ControllerHelper_dQSYPTHvbqNnvMJggKPUmplchfgjA__ctor, (Player_ControllerHelper_dQSYPTHvbqNnvMJggKPUmplchfgjA * __this, int32_t param_0000a931, MethodInfo * method)); DO_APP_FUNC(0x02114C70, Player_ControllerHelper_fsFeIeGDhTZoJrGbaYxAfXlTfeQO *, Player_ControllerHelper_dQSYPTHvbqNnvMJggKPUmplchfgjA_WmwbBYvcMgWNiAkYmGokAOzlhKHxA, (Player_ControllerHelper_dQSYPTHvbqNnvMJggKPUmplchfgjA * __this, ControllerType__Enum param_0000a932, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8C48, Player_ControllerHelper_dQSYPTHvbqNnvMJggKPUmplchfgjA_WmwbBYvcMgWNiAkYmGokAOzlhKHxA__MethodInfo); DO_APP_FUNC(0x02114D30, void, Player_ControllerHelper_dQSYPTHvbqNnvMJggKPUmplchfgjA_nVPrHxKDQGfhFiPrlaiEvyShXRVP, (Player_ControllerHelper_dQSYPTHvbqNnvMJggKPUmplchfgjA * __this, int32_t param_0000a933, ControllerType__Enum param_0000a934, Player_ControllerHelper_fsFeIeGDhTZoJrGbaYxAfXlTfeQO * param_0000a935, MethodInfo * method)); DO_APP_FUNC(0x02114E10, void, Player_ControllerHelper_eRpAeFxcyMygNogiZCgHnqGANSDc__ctor, (Player_ControllerHelper_eRpAeFxcyMygNogiZCgHnqGANSDc * __this, Player * param_0000a936, MethodInfo * method)); DO_APP_FUNC(0x02114F30, void, Player_ControllerHelper_eRpAeFxcyMygNogiZCgHnqGANSDc_uHctqJCHbChBJfvVwkwSXBHumPvzA, (Player_ControllerHelper_eRpAeFxcyMygNogiZCgHnqGANSDc * __this, Joystick * param_0000a937, FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_Rewired_JoystickMap_ * param_0000a938, MethodInfo * method)); @@ -43031,16 +50745,20 @@ DO_APP_FUNC(0x02115D10, void, Player_ControllerHelper_MapHelper_uICeDyIZlbdfloeA DO_APP_FUNC(0x02115DE0, void, Player_ControllerHelper_MapHelper_uICeDyIZlbdfloeAyQHjAnrjoOXhb_1, (Player_ControllerHelper_MapHelper * __this, ControllerType__Enum param_0000a972, int32_t param_0000a973, String * param_0000a974, String * param_0000a975, BoolOption__Enum param_0000a976, MethodInfo * method)); DO_APP_FUNC(0x02115EC0, IEnumerable_1_Rewired_ControllerMap_ *, Player_ControllerHelper_MapHelper_GetAllMaps, (Player_ControllerHelper_MapHelper * __this, MethodInfo * method)); DO_APP_FUNC(0x02115F80, int32_t, Player_ControllerHelper_MapHelper_GetAllMaps_1, (Player_ControllerHelper_MapHelper * __this, List_1_Rewired_ControllerMap_ * results, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8BD0, Player_ControllerHelper_MapHelper_GetAllMaps_1__MethodInfo); DO_APP_FUNC(0x02116210, IEnumerable_1_Rewired_ControllerMap_ *, Player_ControllerHelper_MapHelper_GetAllMaps_2, (Player_ControllerHelper_MapHelper * __this, ControllerType__Enum controllerType, MethodInfo * method)); DO_APP_FUNC(0x021162D0, int32_t, Player_ControllerHelper_MapHelper_GetAllMaps_3, (Player_ControllerHelper_MapHelper * __this, ControllerType__Enum controllerType, List_1_Rewired_ControllerMap_ * results, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8B98, Player_ControllerHelper_MapHelper_GetAllMaps_3__MethodInfo); DO_APP_FUNC(0x02116670, IEnumerable_1_Rewired_ControllerMap_ *, Player_ControllerHelper_MapHelper_GetAllMapsInCategory, (Player_ControllerHelper_MapHelper * __this, String * categoryName, MethodInfo * method)); DO_APP_FUNC(0x02116870, IEnumerable_1_Rewired_ControllerMap_ *, Player_ControllerHelper_MapHelper_GetAllMapsInCategory_1, (Player_ControllerHelper_MapHelper * __this, int32_t categoryId, MethodInfo * method)); DO_APP_FUNC(0x02116930, IEnumerable_1_Rewired_ControllerMap_ *, Player_ControllerHelper_MapHelper_GetAllMapsInCategory_2, (Player_ControllerHelper_MapHelper * __this, String * categoryName, ControllerType__Enum controllerType, MethodInfo * method)); DO_APP_FUNC(0x02116B30, IEnumerable_1_Rewired_ControllerMap_ *, Player_ControllerHelper_MapHelper_GetAllMapsInCategory_3, (Player_ControllerHelper_MapHelper * __this, int32_t categoryId, ControllerType__Enum controllerType, MethodInfo * method)); DO_APP_FUNC(0x02116C10, int32_t, Player_ControllerHelper_MapHelper_GetAllMapsInCategory_4, (Player_ControllerHelper_MapHelper * __this, String * categoryName, List_1_Rewired_ControllerMap_ * results, MethodInfo * method)); DO_APP_FUNC(0x02116D00, int32_t, Player_ControllerHelper_MapHelper_GetAllMapsInCategory_5, (Player_ControllerHelper_MapHelper * __this, int32_t categoryId, List_1_Rewired_ControllerMap_ * results, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8BA8, Player_ControllerHelper_MapHelper_GetAllMapsInCategory_5__MethodInfo); DO_APP_FUNC(0x02116FE0, int32_t, Player_ControllerHelper_MapHelper_GetAllMapsInCategory_6, (Player_ControllerHelper_MapHelper * __this, String * categoryName, ControllerType__Enum controllerType, List_1_Rewired_ControllerMap_ * results, MethodInfo * method)); DO_APP_FUNC(0x021170E0, int32_t, Player_ControllerHelper_MapHelper_GetAllMapsInCategory_7, (Player_ControllerHelper_MapHelper * __this, int32_t categoryId, ControllerType__Enum controllerType, List_1_Rewired_ControllerMap_ * results, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8BA0, Player_ControllerHelper_MapHelper_GetAllMapsInCategory_7__MethodInfo); DO_APP_FUNC(0x021174D0, IList_1_Rewired_ControllerMap_ *, Player_ControllerHelper_MapHelper_GetMaps, (Player_ControllerHelper_MapHelper * __this, ControllerType__Enum controllerType, int32_t controllerId, MethodInfo * method)); DO_APP_FUNC(0x021175A0, IList_1_Rewired_ControllerMap_ *, Player_ControllerHelper_MapHelper_GetMaps_1, (Player_ControllerHelper_MapHelper * __this, Controller * controller, MethodInfo * method)); DO_APP_FUNC(0x02117720, IEnumerable_1_Rewired_ControllerMap_ *, Player_ControllerHelper_MapHelper_GetMapsInCategory, (Player_ControllerHelper_MapHelper * __this, ControllerType__Enum controllerType, int32_t controllerId, int32_t categoryId, MethodInfo * method)); @@ -43048,6 +50766,7 @@ DO_APP_FUNC(0x021178E0, IEnumerable_1_Rewired_ControllerMap_ *, Player_Controlle DO_APP_FUNC(0x021179F0, IEnumerable_1_Rewired_ControllerMap_ *, Player_ControllerHelper_MapHelper_GetMapsInCategory_2, (Player_ControllerHelper_MapHelper * __this, Controller * controller, int32_t categoryId, MethodInfo * method)); DO_APP_FUNC(0x02117AE0, IEnumerable_1_Rewired_ControllerMap_ *, Player_ControllerHelper_MapHelper_GetMapsInCategory_3, (Player_ControllerHelper_MapHelper * __this, Controller * controller, String * categoryName, MethodInfo * method)); DO_APP_FUNC(0x02117C10, int32_t, Player_ControllerHelper_MapHelper_GetMapsInCategory_4, (Player_ControllerHelper_MapHelper * __this, ControllerType__Enum controllerType, int32_t controllerId, int32_t categoryId, List_1_Rewired_ControllerMap_ * results, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8B78, Player_ControllerHelper_MapHelper_GetMapsInCategory_4__MethodInfo); DO_APP_FUNC(0x02117E70, int32_t, Player_ControllerHelper_MapHelper_GetMapsInCategory_5, (Player_ControllerHelper_MapHelper * __this, ControllerType__Enum controllerType, int32_t controllerId, String * categoryName, List_1_Rewired_ControllerMap_ * results, MethodInfo * method)); DO_APP_FUNC(0x02117FD0, int32_t, Player_ControllerHelper_MapHelper_GetMapsInCategory_6, (Player_ControllerHelper_MapHelper * __this, Controller * controller, int32_t categoryId, List_1_Rewired_ControllerMap_ * results, MethodInfo * method)); DO_APP_FUNC(0x021180F0, int32_t, Player_ControllerHelper_MapHelper_GetMapsInCategory_7, (Player_ControllerHelper_MapHelper * __this, Controller * controller, String * categoryName, List_1_Rewired_ControllerMap_ * results, MethodInfo * method)); @@ -43109,6 +50828,7 @@ DO_APP_FUNC(0x0211CC90, IEnumerable_1_Rewired_ActionElementMap_ *, Player_Contro DO_APP_FUNC(0x0211CEB0, int32_t, Player_ControllerHelper_MapHelper_GetButtonMapsWithAction, (Player_ControllerHelper_MapHelper * __this, ControllerType__Enum controllerType, int32_t controllerId, int32_t actionId, bool skipDisabledMaps, List_1_Rewired_ActionElementMap_ * results, MethodInfo * method)); DO_APP_FUNC(0x0211CF70, int32_t, Player_ControllerHelper_MapHelper_GetButtonMapsWithAction_1, (Player_ControllerHelper_MapHelper * __this, ControllerType__Enum controllerType, int32_t controllerId, String * actionName, bool skipDisabledMaps, List_1_Rewired_ActionElementMap_ * results, MethodInfo * method)); DO_APP_FUNC(0x0211D150, int32_t, Player_ControllerHelper_MapHelper_GetButtonMapsWithAction_2, (Player_ControllerHelper_MapHelper * __this, Controller * controller, int32_t actionId, bool skipDisabledMaps, List_1_Rewired_ActionElementMap_ * results, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8A30, Player_ControllerHelper_MapHelper_GetButtonMapsWithAction_2__MethodInfo); DO_APP_FUNC(0x0211D2D0, int32_t, Player_ControllerHelper_MapHelper_GetButtonMapsWithAction_3, (Player_ControllerHelper_MapHelper * __this, Controller * controller, String * actionName, bool skipDisabledMaps, List_1_Rewired_ActionElementMap_ * results, MethodInfo * method)); DO_APP_FUNC(0x0211D450, int32_t, Player_ControllerHelper_MapHelper_GetButtonMapsWithAction_4, (Player_ControllerHelper_MapHelper * __this, ControllerType__Enum controllerType, int32_t actionId, bool skipDisabledMaps, List_1_Rewired_ActionElementMap_ * results, MethodInfo * method)); DO_APP_FUNC(0x0211D530, int32_t, Player_ControllerHelper_MapHelper_GetButtonMapsWithAction_5, (Player_ControllerHelper_MapHelper * __this, ControllerType__Enum controllerType, String * actionName, bool skipDisabledMaps, List_1_Rewired_ActionElementMap_ * results, MethodInfo * method)); @@ -43135,6 +50855,7 @@ DO_APP_FUNC(0x0211F020, int32_t, Player_ControllerHelper_MapHelper_GetAxisMapsWi DO_APP_FUNC(0x0211F200, int32_t, Player_ControllerHelper_MapHelper_GetAxisMapsWithAction_2, (Player_ControllerHelper_MapHelper * __this, Controller * controller, int32_t actionId, bool skipDisabledMaps, List_1_Rewired_ActionElementMap_ * results, MethodInfo * method)); DO_APP_FUNC(0x0211F2F0, int32_t, Player_ControllerHelper_MapHelper_GetAxisMapsWithAction_3, (Player_ControllerHelper_MapHelper * __this, Controller * controller, String * actionName, bool skipDisabledMaps, List_1_Rewired_ActionElementMap_ * results, MethodInfo * method)); DO_APP_FUNC(0x0211F470, int32_t, Player_ControllerHelper_MapHelper_GetAxisMapsWithAction_4, (Player_ControllerHelper_MapHelper * __this, ControllerType__Enum controllerType, int32_t actionId, bool skipDisabledMaps, List_1_Rewired_ActionElementMap_ * results, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8960, Player_ControllerHelper_MapHelper_GetAxisMapsWithAction_4__MethodInfo); DO_APP_FUNC(0x0211F5A0, int32_t, Player_ControllerHelper_MapHelper_GetAxisMapsWithAction_5, (Player_ControllerHelper_MapHelper * __this, ControllerType__Enum controllerType, String * actionName, bool skipDisabledMaps, List_1_Rewired_ActionElementMap_ * results, MethodInfo * method)); DO_APP_FUNC(0x0211F810, int32_t, Player_ControllerHelper_MapHelper_GetAxisMapsWithAction_6, (Player_ControllerHelper_MapHelper * __this, int32_t actionId, bool skipDisabledMaps, List_1_Rewired_ActionElementMap_ * results, MethodInfo * method)); DO_APP_FUNC(0x0211F830, int32_t, Player_ControllerHelper_MapHelper_GetAxisMapsWithAction_7, (Player_ControllerHelper_MapHelper * __this, String * actionName, bool skipDisabledMaps, List_1_Rewired_ActionElementMap_ * results, MethodInfo * method)); @@ -43199,6 +50920,7 @@ DO_APP_FUNC(0x02124840, int32_t, Player_ControllerHelper_MapHelper_SetMapsEnable DO_APP_FUNC(0x021249E0, int32_t, Player_ControllerHelper_MapHelper_SetMapsEnabled_9, (Player_ControllerHelper_MapHelper * __this, bool state, Controller * controller, String * categoryName, MethodInfo * method)); DO_APP_FUNC(0x02124BF0, int32_t, Player_ControllerHelper_MapHelper_SetMapsEnabled_10, (Player_ControllerHelper_MapHelper * __this, bool state, Controller * controller, String * categoryName, String * layoutName, MethodInfo * method)); DO_APP_FUNC(0x02124E70, void, Player_ControllerHelper_MapHelper_LoadDefaultMaps, (Player_ControllerHelper_MapHelper * __this, ControllerType__Enum controllerType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC86F8, Player_ControllerHelper_MapHelper_LoadDefaultMaps__MethodInfo); DO_APP_FUNC(0x02124FB0, bool, Player_ControllerHelper_MapHelper_ContainsMapInCategory, (Player_ControllerHelper_MapHelper * __this, InputMapCategory * category, MethodInfo * method)); DO_APP_FUNC(0x02125060, bool, Player_ControllerHelper_MapHelper_ContainsMapInCategory_1, (Player_ControllerHelper_MapHelper * __this, int32_t categoryId, MethodInfo * method)); DO_APP_FUNC(0x02125270, bool, Player_ControllerHelper_MapHelper_ContainsMapInCategory_2, (Player_ControllerHelper_MapHelper * __this, String * categoryName, MethodInfo * method)); @@ -43275,13 +50997,19 @@ DO_APP_FUNC(0x0212AE40, ActionElementMap *, Player_ControllerHelper_MapHelper_av DO_APP_FUNC(0x0212AF60, IEnumerable_1_Rewired_ActionElementMap_ *, Player_ControllerHelper_MapHelper_ZCNrIGdaRZSOosEPjljGGJwmMIak, (Player_ControllerHelper_MapHelper * __this, ControllerType__Enum param_0000ac9c, int32_t param_0000ac9d, bool param_0000ac9e, MethodInfo * method)); DO_APP_FUNC(0x0212B040, IEnumerable_1_Rewired_ActionElementMap_ *, Player_ControllerHelper_MapHelper_ZCNrIGdaRZSOosEPjljGGJwmMIak_1, (Player_ControllerHelper_MapHelper * __this, ControllerType__Enum param_0000ac9f, String * param_0000aca0, bool param_0000aca1, MethodInfo * method)); DO_APP_FUNC(0x0212B160, int32_t, Player_ControllerHelper_MapHelper_bLGjsdslAjPhWDYoFWfjnUbusQhk, (Player_ControllerHelper_MapHelper * __this, int32_t param_0000aca2, bool param_0000aca3, List_1_Rewired_ActionElementMap_ * param_0000aca4, bool param_0000aca5, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC85F0, Player_ControllerHelper_MapHelper_bLGjsdslAjPhWDYoFWfjnUbusQhk__MethodInfo); DO_APP_FUNC(0x0212B480, int32_t, Player_ControllerHelper_MapHelper_lnkbEjDNharvFVyajuEADJTHagZo, (Player_ControllerHelper_MapHelper * __this, int32_t param_0000aca6, bool param_0000aca7, List_1_Rewired_ActionElementMap_ * param_0000aca8, bool param_0000aca9, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC85D0, Player_ControllerHelper_MapHelper_lnkbEjDNharvFVyajuEADJTHagZo__MethodInfo); DO_APP_FUNC(0x0212B7E0, int32_t, Player_ControllerHelper_MapHelper_MkuUDHAnIfNXmuwBwacuhdytGvCk, (Player_ControllerHelper_MapHelper * __this, int32_t param_0000acaa, bool param_0000acab, List_1_Rewired_ActionElementMap_ * param_0000acac, bool param_0000acad, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC85B8, Player_ControllerHelper_MapHelper_MkuUDHAnIfNXmuwBwacuhdytGvCk__MethodInfo); DO_APP_FUNC(0x0212BB00, int32_t, Player_ControllerHelper_MapHelper_YSeWdpHCzYAklBSQNTjWREhWhcOH, (Player_ControllerHelper_MapHelper * __this, ControllerType__Enum param_0000acae, int32_t param_0000acaf, bool param_0000acb0, List_1_Rewired_ActionElementMap_ * param_0000acb1, bool param_0000acb2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC85C0, Player_ControllerHelper_MapHelper_YSeWdpHCzYAklBSQNTjWREhWhcOH__MethodInfo); DO_APP_FUNC(0x0212BE00, int32_t, Player_ControllerHelper_MapHelper_YSeWdpHCzYAklBSQNTjWREhWhcOH_1, (Player_ControllerHelper_MapHelper * __this, ControllerType__Enum param_0000acb3, String * param_0000acb4, bool param_0000acb5, List_1_Rewired_ActionElementMap_ * param_0000acb6, bool param_0000acb7, MethodInfo * method)); DO_APP_FUNC(0x0212BF30, int32_t, Player_ControllerHelper_MapHelper_nrkgTzeBkOXpDhtPmlpoJhOURFSN, (Player_ControllerHelper_MapHelper * __this, ControllerType__Enum param_0000acb8, int32_t param_0000acb9, bool param_0000acba, List_1_Rewired_ActionElementMap_ * param_0000acbb, bool param_0000acbc, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8528, Player_ControllerHelper_MapHelper_nrkgTzeBkOXpDhtPmlpoJhOURFSN__MethodInfo); DO_APP_FUNC(0x0212C310, int32_t, Player_ControllerHelper_MapHelper_nrkgTzeBkOXpDhtPmlpoJhOURFSN_1, (Player_ControllerHelper_MapHelper * __this, ControllerType__Enum param_0000acbd, String * param_0000acbe, bool param_0000acbf, List_1_Rewired_ActionElementMap_ * param_0000acc0, bool param_0000acc1, MethodInfo * method)); DO_APP_FUNC(0x0212C440, int32_t, Player_ControllerHelper_MapHelper_jdoTyPRWoXHKBajbdpPyhJZtezji, (Player_ControllerHelper_MapHelper * __this, ControllerType__Enum param_0000acc2, int32_t param_0000acc3, bool param_0000acc4, List_1_Rewired_ActionElementMap_ * param_0000acc5, bool param_0000acc6, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8520, Player_ControllerHelper_MapHelper_jdoTyPRWoXHKBajbdpPyhJZtezji__MethodInfo); DO_APP_FUNC(0x0212C730, int32_t, Player_ControllerHelper_MapHelper_jdoTyPRWoXHKBajbdpPyhJZtezji_1, (Player_ControllerHelper_MapHelper * __this, ControllerType__Enum param_0000acc7, String * param_0000acc8, bool param_0000acc9, List_1_Rewired_ActionElementMap_ * param_0000acca, bool param_0000accb, MethodInfo * method)); DO_APP_FUNC(0x0212C860, ActionElementMap *, Player_ControllerHelper_MapHelper_iSneYnUAhFCzraRfmdhRmgpDFFqIA_2, (Player_ControllerHelper_MapHelper * __this, ControllerType__Enum param_0000accc, int32_t param_0000accd, int32_t param_0000acce, bool param_0000accf, MethodInfo * method)); DO_APP_FUNC(0x0212CA80, ActionElementMap *, Player_ControllerHelper_MapHelper_iSneYnUAhFCzraRfmdhRmgpDFFqIA_3, (Player_ControllerHelper_MapHelper * __this, ControllerType__Enum param_0000acd0, int32_t param_0000acd1, String * param_0000acd2, bool param_0000acd3, MethodInfo * method)); @@ -43296,20 +51024,25 @@ DO_APP_FUNC(0x0212D610, ActionElementMap *, Player_ControllerHelper_MapHelper_av DO_APP_FUNC(0x0212D730, IEnumerable_1_Rewired_ActionElementMap_ *, Player_ControllerHelper_MapHelper_ZCNrIGdaRZSOosEPjljGGJwmMIak_2, (Player_ControllerHelper_MapHelper * __this, ControllerType__Enum param_0000acf4, int32_t param_0000acf5, int32_t param_0000acf6, bool param_0000acf7, MethodInfo * method)); DO_APP_FUNC(0x0212D830, IEnumerable_1_Rewired_ActionElementMap_ *, Player_ControllerHelper_MapHelper_ZCNrIGdaRZSOosEPjljGGJwmMIak_3, (Player_ControllerHelper_MapHelper * __this, ControllerType__Enum param_0000acf8, int32_t param_0000acf9, String * param_0000acfa, bool param_0000acfb, MethodInfo * method)); DO_APP_FUNC(0x0212D950, int32_t, Player_ControllerHelper_MapHelper_YSeWdpHCzYAklBSQNTjWREhWhcOH_2, (Player_ControllerHelper_MapHelper * __this, ControllerType__Enum param_0000acfc, int32_t param_0000acfd, int32_t param_0000acfe, bool param_0000acff, List_1_Rewired_ActionElementMap_ * param_0000ad00, bool param_0000ad01, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8480, Player_ControllerHelper_MapHelper_YSeWdpHCzYAklBSQNTjWREhWhcOH_2__MethodInfo); DO_APP_FUNC(0x0212DCE0, int32_t, Player_ControllerHelper_MapHelper_YSeWdpHCzYAklBSQNTjWREhWhcOH_3, (Player_ControllerHelper_MapHelper * __this, ControllerType__Enum param_0000ad02, int32_t param_0000ad03, String * param_0000ad04, bool param_0000ad05, List_1_Rewired_ActionElementMap_ * param_0000ad06, bool param_0000ad07, MethodInfo * method)); DO_APP_FUNC(0x0212DE20, int32_t, Player_ControllerHelper_MapHelper_nrkgTzeBkOXpDhtPmlpoJhOURFSN_2, (Player_ControllerHelper_MapHelper * __this, ControllerType__Enum param_0000ad08, int32_t param_0000ad09, int32_t param_0000ad0a, bool param_0000ad0b, List_1_Rewired_ActionElementMap_ * param_0000ad0c, bool param_0000ad0d, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8500, Player_ControllerHelper_MapHelper_nrkgTzeBkOXpDhtPmlpoJhOURFSN_2__MethodInfo); DO_APP_FUNC(0x0212E130, int32_t, Player_ControllerHelper_MapHelper_nrkgTzeBkOXpDhtPmlpoJhOURFSN_3, (Player_ControllerHelper_MapHelper * __this, ControllerType__Enum param_0000ad0e, int32_t param_0000ad0f, String * param_0000ad10, bool param_0000ad11, List_1_Rewired_ActionElementMap_ * param_0000ad12, bool param_0000ad13, MethodInfo * method)); DO_APP_FUNC(0x0212E270, int32_t, Player_ControllerHelper_MapHelper_jdoTyPRWoXHKBajbdpPyhJZtezji_2, (Player_ControllerHelper_MapHelper * __this, ControllerType__Enum param_0000ad14, int32_t param_0000ad15, int32_t param_0000ad16, bool param_0000ad17, List_1_Rewired_ActionElementMap_ * param_0000ad18, bool param_0000ad19, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC84F8, Player_ControllerHelper_MapHelper_jdoTyPRWoXHKBajbdpPyhJZtezji_2__MethodInfo); DO_APP_FUNC(0x0212E5C0, int32_t, Player_ControllerHelper_MapHelper_jdoTyPRWoXHKBajbdpPyhJZtezji_3, (Player_ControllerHelper_MapHelper * __this, ControllerType__Enum param_0000ad1a, int32_t param_0000ad1b, String * param_0000ad1c, bool param_0000ad1d, List_1_Rewired_ActionElementMap_ * param_0000ad1e, bool param_0000ad1f, MethodInfo * method)); DO_APP_FUNC(0x0212E700, ActionElementMap *, Player_ControllerHelper_MapHelper_oQQzKhFZaSKfXmUbMwyJwbyzKXRq, (Player_ControllerHelper_MapHelper * __this, IControllerElementTarget * param_0000ad20, bool param_0000ad21, int32_t param_0000ad22, bool param_0000ad23, MethodInfo * method)); DO_APP_FUNC(0x0212E9B0, IEnumerable_1_Rewired_ActionElementMap_ *, Player_ControllerHelper_MapHelper_JBUhReAQfGHxLrrCTsdwBGMVrbWA, (Player_ControllerHelper_MapHelper * __this, IControllerElementTarget * param_0000ad24, bool param_0000ad25, int32_t param_0000ad26, bool param_0000ad27, MethodInfo * method)); DO_APP_FUNC(0x0212EB00, int32_t, Player_ControllerHelper_MapHelper_oVhDKeEDhHBUfilfbxVvjXQtIbOLA, (Player_ControllerHelper_MapHelper * __this, IControllerElementTarget * param_0000ad28, bool param_0000ad29, int32_t param_0000ad2a, bool param_0000ad2b, List_1_Rewired_ActionElementMap_ * param_0000ad2c, bool param_0000ad2d, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8460, Player_ControllerHelper_MapHelper_oVhDKeEDhHBUfilfbxVvjXQtIbOLA__MethodInfo); DO_APP_FUNC(0x00FDB5B0, void, Player_ControllerHelper_MapHelper_HYSyuRXnshtieedJbPURVDASbQTY__ctor, (Player_ControllerHelper_MapHelper_HYSyuRXnshtieedJbPURVDASbQTY * __this, int32_t param_0000ad2e, MethodInfo * method)); DO_APP_FUNC(0x0212EE80, void, Player_ControllerHelper_MapHelper_HYSyuRXnshtieedJbPURVDASbQTY_System_IDisposable_Dispose, (Player_ControllerHelper_MapHelper_HYSyuRXnshtieedJbPURVDASbQTY * __this, MethodInfo * method)); DO_APP_FUNC(0x0212EF50, bool, Player_ControllerHelper_MapHelper_HYSyuRXnshtieedJbPURVDASbQTY_MoveNext, (Player_ControllerHelper_MapHelper_HYSyuRXnshtieedJbPURVDASbQTY * __this, MethodInfo * method)); DO_APP_FUNC(0x0212F680, void, Player_ControllerHelper_MapHelper_HYSyuRXnshtieedJbPURVDASbQTY_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (Player_ControllerHelper_MapHelper_HYSyuRXnshtieedJbPURVDASbQTY * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, ActionElementMap *, Player_ControllerHelper_MapHelper_HYSyuRXnshtieedJbPURVDASbQTY_System_Collections_Generic_IEnumerator_Rewired_ActionElementMap__get_Current, (Player_ControllerHelper_MapHelper_HYSyuRXnshtieedJbPURVDASbQTY * __this, MethodInfo * method)); DO_APP_FUNC(0x0212F6E0, void, Player_ControllerHelper_MapHelper_HYSyuRXnshtieedJbPURVDASbQTY_System_Collections_IEnumerator_Reset, (Player_ControllerHelper_MapHelper_HYSyuRXnshtieedJbPURVDASbQTY * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA810, Player_ControllerHelper_MapHelper_HYSyuRXnshtieedJbPURVDASbQTY_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Player_ControllerHelper_MapHelper_HYSyuRXnshtieedJbPURVDASbQTY_System_Collections_IEnumerator_get_Current, (Player_ControllerHelper_MapHelper_HYSyuRXnshtieedJbPURVDASbQTY * __this, MethodInfo * method)); DO_APP_FUNC(0x0212F730, IEnumerator_1_Rewired_ActionElementMap_ *, Player_ControllerHelper_MapHelper_HYSyuRXnshtieedJbPURVDASbQTY_System_Collections_Generic_IEnumerable_Rewired_ActionElementMap__GetEnumerator, (Player_ControllerHelper_MapHelper_HYSyuRXnshtieedJbPURVDASbQTY * __this, MethodInfo * method)); DO_APP_FUNC(0x0212F730, IEnumerator *, Player_ControllerHelper_MapHelper_HYSyuRXnshtieedJbPURVDASbQTY_System_Collections_IEnumerable_GetEnumerator, (Player_ControllerHelper_MapHelper_HYSyuRXnshtieedJbPURVDASbQTY * __this, MethodInfo * method)); @@ -43319,6 +51052,7 @@ DO_APP_FUNC(0x0212F950, bool, Player_ControllerHelper_MapHelper_WGmikJepMpwFccOm DO_APP_FUNC(0x02130050, void, Player_ControllerHelper_MapHelper_WGmikJepMpwFccOmvBoErYTSdqbo_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (Player_ControllerHelper_MapHelper_WGmikJepMpwFccOmvBoErYTSdqbo * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, ActionElementMap *, Player_ControllerHelper_MapHelper_WGmikJepMpwFccOmvBoErYTSdqbo_System_Collections_Generic_IEnumerator_Rewired_ActionElementMap__get_Current, (Player_ControllerHelper_MapHelper_WGmikJepMpwFccOmvBoErYTSdqbo * __this, MethodInfo * method)); DO_APP_FUNC(0x021300B0, void, Player_ControllerHelper_MapHelper_WGmikJepMpwFccOmvBoErYTSdqbo_System_Collections_IEnumerator_Reset, (Player_ControllerHelper_MapHelper_WGmikJepMpwFccOmvBoErYTSdqbo * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA7E0, Player_ControllerHelper_MapHelper_WGmikJepMpwFccOmvBoErYTSdqbo_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Player_ControllerHelper_MapHelper_WGmikJepMpwFccOmvBoErYTSdqbo_System_Collections_IEnumerator_get_Current, (Player_ControllerHelper_MapHelper_WGmikJepMpwFccOmvBoErYTSdqbo * __this, MethodInfo * method)); DO_APP_FUNC(0x02130100, IEnumerator_1_Rewired_ActionElementMap_ *, Player_ControllerHelper_MapHelper_WGmikJepMpwFccOmvBoErYTSdqbo_System_Collections_Generic_IEnumerable_Rewired_ActionElementMap__GetEnumerator, (Player_ControllerHelper_MapHelper_WGmikJepMpwFccOmvBoErYTSdqbo * __this, MethodInfo * method)); DO_APP_FUNC(0x02130100, IEnumerator *, Player_ControllerHelper_MapHelper_WGmikJepMpwFccOmvBoErYTSdqbo_System_Collections_IEnumerable_GetEnumerator, (Player_ControllerHelper_MapHelper_WGmikJepMpwFccOmvBoErYTSdqbo * __this, MethodInfo * method)); @@ -43328,6 +51062,7 @@ DO_APP_FUNC(0x02130320, bool, Player_ControllerHelper_MapHelper_LdrVkWIBUXuRRjiJ DO_APP_FUNC(0x02130A60, void, Player_ControllerHelper_MapHelper_LdrVkWIBUXuRRjiJcsLhszimLfCp_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (Player_ControllerHelper_MapHelper_LdrVkWIBUXuRRjiJcsLhszimLfCp * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, ActionElementMap *, Player_ControllerHelper_MapHelper_LdrVkWIBUXuRRjiJcsLhszimLfCp_System_Collections_Generic_IEnumerator_Rewired_ActionElementMap__get_Current, (Player_ControllerHelper_MapHelper_LdrVkWIBUXuRRjiJcsLhszimLfCp * __this, MethodInfo * method)); DO_APP_FUNC(0x02130AC0, void, Player_ControllerHelper_MapHelper_LdrVkWIBUXuRRjiJcsLhszimLfCp_System_Collections_IEnumerator_Reset, (Player_ControllerHelper_MapHelper_LdrVkWIBUXuRRjiJcsLhszimLfCp * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA868, Player_ControllerHelper_MapHelper_LdrVkWIBUXuRRjiJcsLhszimLfCp_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Player_ControllerHelper_MapHelper_LdrVkWIBUXuRRjiJcsLhszimLfCp_System_Collections_IEnumerator_get_Current, (Player_ControllerHelper_MapHelper_LdrVkWIBUXuRRjiJcsLhszimLfCp * __this, MethodInfo * method)); DO_APP_FUNC(0x02130B10, IEnumerator_1_Rewired_ActionElementMap_ *, Player_ControllerHelper_MapHelper_LdrVkWIBUXuRRjiJcsLhszimLfCp_System_Collections_Generic_IEnumerable_Rewired_ActionElementMap__GetEnumerator, (Player_ControllerHelper_MapHelper_LdrVkWIBUXuRRjiJcsLhszimLfCp * __this, MethodInfo * method)); DO_APP_FUNC(0x02130B10, IEnumerator *, Player_ControllerHelper_MapHelper_LdrVkWIBUXuRRjiJcsLhszimLfCp_System_Collections_IEnumerable_GetEnumerator, (Player_ControllerHelper_MapHelper_LdrVkWIBUXuRRjiJcsLhszimLfCp * __this, MethodInfo * method)); @@ -43337,6 +51072,7 @@ DO_APP_FUNC(0x02130D30, bool, Player_ControllerHelper_MapHelper_RxYYgdmDBOVdubWc DO_APP_FUNC(0x02131350, void, Player_ControllerHelper_MapHelper_RxYYgdmDBOVdubWcrlVlHyZKyrQI_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (Player_ControllerHelper_MapHelper_RxYYgdmDBOVdubWcrlVlHyZKyrQI * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, ActionElementMap *, Player_ControllerHelper_MapHelper_RxYYgdmDBOVdubWcrlVlHyZKyrQI_System_Collections_Generic_IEnumerator_Rewired_ActionElementMap__get_Current, (Player_ControllerHelper_MapHelper_RxYYgdmDBOVdubWcrlVlHyZKyrQI * __this, MethodInfo * method)); DO_APP_FUNC(0x021313B0, void, Player_ControllerHelper_MapHelper_RxYYgdmDBOVdubWcrlVlHyZKyrQI_System_Collections_IEnumerator_Reset, (Player_ControllerHelper_MapHelper_RxYYgdmDBOVdubWcrlVlHyZKyrQI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA850, Player_ControllerHelper_MapHelper_RxYYgdmDBOVdubWcrlVlHyZKyrQI_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Player_ControllerHelper_MapHelper_RxYYgdmDBOVdubWcrlVlHyZKyrQI_System_Collections_IEnumerator_get_Current, (Player_ControllerHelper_MapHelper_RxYYgdmDBOVdubWcrlVlHyZKyrQI * __this, MethodInfo * method)); DO_APP_FUNC(0x02131400, IEnumerator_1_Rewired_ActionElementMap_ *, Player_ControllerHelper_MapHelper_RxYYgdmDBOVdubWcrlVlHyZKyrQI_System_Collections_Generic_IEnumerable_Rewired_ActionElementMap__GetEnumerator, (Player_ControllerHelper_MapHelper_RxYYgdmDBOVdubWcrlVlHyZKyrQI * __this, MethodInfo * method)); DO_APP_FUNC(0x02131400, IEnumerator *, Player_ControllerHelper_MapHelper_RxYYgdmDBOVdubWcrlVlHyZKyrQI_System_Collections_IEnumerable_GetEnumerator, (Player_ControllerHelper_MapHelper_RxYYgdmDBOVdubWcrlVlHyZKyrQI * __this, MethodInfo * method)); @@ -43346,6 +51082,7 @@ DO_APP_FUNC(0x02131630, bool, Player_ControllerHelper_MapHelper_STTQvrqrbzqvdiWS DO_APP_FUNC(0x02131C70, void, Player_ControllerHelper_MapHelper_STTQvrqrbzqvdiWSEITIZwbjXKTC_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (Player_ControllerHelper_MapHelper_STTQvrqrbzqvdiWSEITIZwbjXKTC * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, ActionElementMap *, Player_ControllerHelper_MapHelper_STTQvrqrbzqvdiWSEITIZwbjXKTC_System_Collections_Generic_IEnumerator_Rewired_ActionElementMap__get_Current, (Player_ControllerHelper_MapHelper_STTQvrqrbzqvdiWSEITIZwbjXKTC * __this, MethodInfo * method)); DO_APP_FUNC(0x02131CD0, void, Player_ControllerHelper_MapHelper_STTQvrqrbzqvdiWSEITIZwbjXKTC_System_Collections_IEnumerator_Reset, (Player_ControllerHelper_MapHelper_STTQvrqrbzqvdiWSEITIZwbjXKTC * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA748, Player_ControllerHelper_MapHelper_STTQvrqrbzqvdiWSEITIZwbjXKTC_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Player_ControllerHelper_MapHelper_STTQvrqrbzqvdiWSEITIZwbjXKTC_System_Collections_IEnumerator_get_Current, (Player_ControllerHelper_MapHelper_STTQvrqrbzqvdiWSEITIZwbjXKTC * __this, MethodInfo * method)); DO_APP_FUNC(0x02131D20, IEnumerator_1_Rewired_ActionElementMap_ *, Player_ControllerHelper_MapHelper_STTQvrqrbzqvdiWSEITIZwbjXKTC_System_Collections_Generic_IEnumerable_Rewired_ActionElementMap__GetEnumerator, (Player_ControllerHelper_MapHelper_STTQvrqrbzqvdiWSEITIZwbjXKTC * __this, MethodInfo * method)); DO_APP_FUNC(0x02131D20, IEnumerator *, Player_ControllerHelper_MapHelper_STTQvrqrbzqvdiWSEITIZwbjXKTC_System_Collections_IEnumerable_GetEnumerator, (Player_ControllerHelper_MapHelper_STTQvrqrbzqvdiWSEITIZwbjXKTC * __this, MethodInfo * method)); @@ -43355,6 +51092,7 @@ DO_APP_FUNC(0x02131F40, bool, Player_ControllerHelper_MapHelper_fOPdvkdPnjRpfuSe DO_APP_FUNC(0x02132460, void, Player_ControllerHelper_MapHelper_fOPdvkdPnjRpfuSeTexINndJRBbC_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (Player_ControllerHelper_MapHelper_fOPdvkdPnjRpfuSeTexINndJRBbC * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, ActionElementMap *, Player_ControllerHelper_MapHelper_fOPdvkdPnjRpfuSeTexINndJRBbC_System_Collections_Generic_IEnumerator_Rewired_ActionElementMap__get_Current, (Player_ControllerHelper_MapHelper_fOPdvkdPnjRpfuSeTexINndJRBbC * __this, MethodInfo * method)); DO_APP_FUNC(0x021324C0, void, Player_ControllerHelper_MapHelper_fOPdvkdPnjRpfuSeTexINndJRBbC_System_Collections_IEnumerator_Reset, (Player_ControllerHelper_MapHelper_fOPdvkdPnjRpfuSeTexINndJRBbC * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA720, Player_ControllerHelper_MapHelper_fOPdvkdPnjRpfuSeTexINndJRBbC_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Player_ControllerHelper_MapHelper_fOPdvkdPnjRpfuSeTexINndJRBbC_System_Collections_IEnumerator_get_Current, (Player_ControllerHelper_MapHelper_fOPdvkdPnjRpfuSeTexINndJRBbC * __this, MethodInfo * method)); DO_APP_FUNC(0x02132510, IEnumerator_1_Rewired_ActionElementMap_ *, Player_ControllerHelper_MapHelper_fOPdvkdPnjRpfuSeTexINndJRBbC_System_Collections_Generic_IEnumerable_Rewired_ActionElementMap__GetEnumerator, (Player_ControllerHelper_MapHelper_fOPdvkdPnjRpfuSeTexINndJRBbC * __this, MethodInfo * method)); DO_APP_FUNC(0x02132510, IEnumerator *, Player_ControllerHelper_MapHelper_fOPdvkdPnjRpfuSeTexINndJRBbC_System_Collections_IEnumerable_GetEnumerator, (Player_ControllerHelper_MapHelper_fOPdvkdPnjRpfuSeTexINndJRBbC * __this, MethodInfo * method)); @@ -43364,6 +51102,7 @@ DO_APP_FUNC(0x02132740, bool, Player_ControllerHelper_MapHelper_byHyVkEObkEiObLw DO_APP_FUNC(0x02132D80, void, Player_ControllerHelper_MapHelper_byHyVkEObkEiObLwLIBDpePbCCkm_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (Player_ControllerHelper_MapHelper_byHyVkEObkEiObLwLIBDpePbCCkm * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, ActionElementMap *, Player_ControllerHelper_MapHelper_byHyVkEObkEiObLwLIBDpePbCCkm_System_Collections_Generic_IEnumerator_Rewired_ActionElementMap__get_Current, (Player_ControllerHelper_MapHelper_byHyVkEObkEiObLwLIBDpePbCCkm * __this, MethodInfo * method)); DO_APP_FUNC(0x02132DE0, void, Player_ControllerHelper_MapHelper_byHyVkEObkEiObLwLIBDpePbCCkm_System_Collections_IEnumerator_Reset, (Player_ControllerHelper_MapHelper_byHyVkEObkEiObLwLIBDpePbCCkm * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA7D0, Player_ControllerHelper_MapHelper_byHyVkEObkEiObLwLIBDpePbCCkm_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Player_ControllerHelper_MapHelper_byHyVkEObkEiObLwLIBDpePbCCkm_System_Collections_IEnumerator_get_Current, (Player_ControllerHelper_MapHelper_byHyVkEObkEiObLwLIBDpePbCCkm * __this, MethodInfo * method)); DO_APP_FUNC(0x02132E30, IEnumerator_1_Rewired_ActionElementMap_ *, Player_ControllerHelper_MapHelper_byHyVkEObkEiObLwLIBDpePbCCkm_System_Collections_Generic_IEnumerable_Rewired_ActionElementMap__GetEnumerator, (Player_ControllerHelper_MapHelper_byHyVkEObkEiObLwLIBDpePbCCkm * __this, MethodInfo * method)); DO_APP_FUNC(0x02132E30, IEnumerator *, Player_ControllerHelper_MapHelper_byHyVkEObkEiObLwLIBDpePbCCkm_System_Collections_IEnumerable_GetEnumerator, (Player_ControllerHelper_MapHelper_byHyVkEObkEiObLwLIBDpePbCCkm * __this, MethodInfo * method)); @@ -43373,6 +51112,7 @@ DO_APP_FUNC(0x02133050, bool, Player_ControllerHelper_MapHelper_MDKHOqJzTxCWbeMF DO_APP_FUNC(0x02133570, void, Player_ControllerHelper_MapHelper_MDKHOqJzTxCWbeMFJAUrOimrvPKW_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (Player_ControllerHelper_MapHelper_MDKHOqJzTxCWbeMFJAUrOimrvPKW * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, ActionElementMap *, Player_ControllerHelper_MapHelper_MDKHOqJzTxCWbeMFJAUrOimrvPKW_System_Collections_Generic_IEnumerator_Rewired_ActionElementMap__get_Current, (Player_ControllerHelper_MapHelper_MDKHOqJzTxCWbeMFJAUrOimrvPKW * __this, MethodInfo * method)); DO_APP_FUNC(0x021335D0, void, Player_ControllerHelper_MapHelper_MDKHOqJzTxCWbeMFJAUrOimrvPKW_System_Collections_IEnumerator_Reset, (Player_ControllerHelper_MapHelper_MDKHOqJzTxCWbeMFJAUrOimrvPKW * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA798, Player_ControllerHelper_MapHelper_MDKHOqJzTxCWbeMFJAUrOimrvPKW_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Player_ControllerHelper_MapHelper_MDKHOqJzTxCWbeMFJAUrOimrvPKW_System_Collections_IEnumerator_get_Current, (Player_ControllerHelper_MapHelper_MDKHOqJzTxCWbeMFJAUrOimrvPKW * __this, MethodInfo * method)); DO_APP_FUNC(0x02133620, IEnumerator_1_Rewired_ActionElementMap_ *, Player_ControllerHelper_MapHelper_MDKHOqJzTxCWbeMFJAUrOimrvPKW_System_Collections_Generic_IEnumerable_Rewired_ActionElementMap__GetEnumerator, (Player_ControllerHelper_MapHelper_MDKHOqJzTxCWbeMFJAUrOimrvPKW * __this, MethodInfo * method)); DO_APP_FUNC(0x02133620, IEnumerator *, Player_ControllerHelper_MapHelper_MDKHOqJzTxCWbeMFJAUrOimrvPKW_System_Collections_IEnumerable_GetEnumerator, (Player_ControllerHelper_MapHelper_MDKHOqJzTxCWbeMFJAUrOimrvPKW * __this, MethodInfo * method)); @@ -43381,6 +51121,7 @@ DO_APP_FUNC(0x003AE050, void, Player_ControllerHelper_MapHelper_TLgfABIcYLkbYVYX DO_APP_FUNC(0x02133780, bool, Player_ControllerHelper_MapHelper_TLgfABIcYLkbYVYXMJihGNpxhImnA_MoveNext, (Player_ControllerHelper_MapHelper_TLgfABIcYLkbYVYXMJihGNpxhImnA * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, ControllerMap *, Player_ControllerHelper_MapHelper_TLgfABIcYLkbYVYXMJihGNpxhImnA_System_Collections_Generic_IEnumerator_Rewired_ControllerMap__get_Current, (Player_ControllerHelper_MapHelper_TLgfABIcYLkbYVYXMJihGNpxhImnA * __this, MethodInfo * method)); DO_APP_FUNC(0x021339C0, void, Player_ControllerHelper_MapHelper_TLgfABIcYLkbYVYXMJihGNpxhImnA_System_Collections_IEnumerator_Reset, (Player_ControllerHelper_MapHelper_TLgfABIcYLkbYVYXMJihGNpxhImnA * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA760, Player_ControllerHelper_MapHelper_TLgfABIcYLkbYVYXMJihGNpxhImnA_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Player_ControllerHelper_MapHelper_TLgfABIcYLkbYVYXMJihGNpxhImnA_System_Collections_IEnumerator_get_Current, (Player_ControllerHelper_MapHelper_TLgfABIcYLkbYVYXMJihGNpxhImnA * __this, MethodInfo * method)); DO_APP_FUNC(0x02133A10, IEnumerator_1_Rewired_ControllerMap_ *, Player_ControllerHelper_MapHelper_TLgfABIcYLkbYVYXMJihGNpxhImnA_System_Collections_Generic_IEnumerable_Rewired_ControllerMap__GetEnumerator, (Player_ControllerHelper_MapHelper_TLgfABIcYLkbYVYXMJihGNpxhImnA * __this, MethodInfo * method)); DO_APP_FUNC(0x02133A10, IEnumerator *, Player_ControllerHelper_MapHelper_TLgfABIcYLkbYVYXMJihGNpxhImnA_System_Collections_IEnumerable_GetEnumerator, (Player_ControllerHelper_MapHelper_TLgfABIcYLkbYVYXMJihGNpxhImnA * __this, MethodInfo * method)); @@ -43390,6 +51131,7 @@ DO_APP_FUNC(0x02133C30, bool, Player_ControllerHelper_MapHelper_ewozUSvwpQlNnPFq DO_APP_FUNC(0x02134330, void, Player_ControllerHelper_MapHelper_ewozUSvwpQlNnPFqzUKYoTrNGTjU_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (Player_ControllerHelper_MapHelper_ewozUSvwpQlNnPFqzUKYoTrNGTjU * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, ActionElementMap *, Player_ControllerHelper_MapHelper_ewozUSvwpQlNnPFqzUKYoTrNGTjU_System_Collections_Generic_IEnumerator_Rewired_ActionElementMap__get_Current, (Player_ControllerHelper_MapHelper_ewozUSvwpQlNnPFqzUKYoTrNGTjU * __this, MethodInfo * method)); DO_APP_FUNC(0x02134390, void, Player_ControllerHelper_MapHelper_ewozUSvwpQlNnPFqzUKYoTrNGTjU_System_Collections_IEnumerator_Reset, (Player_ControllerHelper_MapHelper_ewozUSvwpQlNnPFqzUKYoTrNGTjU * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA610, Player_ControllerHelper_MapHelper_ewozUSvwpQlNnPFqzUKYoTrNGTjU_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Player_ControllerHelper_MapHelper_ewozUSvwpQlNnPFqzUKYoTrNGTjU_System_Collections_IEnumerator_get_Current, (Player_ControllerHelper_MapHelper_ewozUSvwpQlNnPFqzUKYoTrNGTjU * __this, MethodInfo * method)); DO_APP_FUNC(0x021343E0, IEnumerator_1_Rewired_ActionElementMap_ *, Player_ControllerHelper_MapHelper_ewozUSvwpQlNnPFqzUKYoTrNGTjU_System_Collections_Generic_IEnumerable_Rewired_ActionElementMap__GetEnumerator, (Player_ControllerHelper_MapHelper_ewozUSvwpQlNnPFqzUKYoTrNGTjU * __this, MethodInfo * method)); DO_APP_FUNC(0x021343E0, IEnumerator *, Player_ControllerHelper_MapHelper_ewozUSvwpQlNnPFqzUKYoTrNGTjU_System_Collections_IEnumerable_GetEnumerator, (Player_ControllerHelper_MapHelper_ewozUSvwpQlNnPFqzUKYoTrNGTjU * __this, MethodInfo * method)); @@ -43400,6 +51142,7 @@ DO_APP_FUNC(0x02134E40, void, Player_ControllerHelper_MapHelper_JWdoihFGpqNirTml DO_APP_FUNC(0x02134EA0, void, Player_ControllerHelper_MapHelper_JWdoihFGpqNirTmlzwZSRDBpJQCE_DoQXnKzdNUehTxxsxBJvgNhCuILy, (Player_ControllerHelper_MapHelper_JWdoihFGpqNirTmlzwZSRDBpJQCE * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, ActionElementMap *, Player_ControllerHelper_MapHelper_JWdoihFGpqNirTmlzwZSRDBpJQCE_System_Collections_Generic_IEnumerator_Rewired_ActionElementMap__get_Current, (Player_ControllerHelper_MapHelper_JWdoihFGpqNirTmlzwZSRDBpJQCE * __this, MethodInfo * method)); DO_APP_FUNC(0x02134EF0, void, Player_ControllerHelper_MapHelper_JWdoihFGpqNirTmlzwZSRDBpJQCE_System_Collections_IEnumerator_Reset, (Player_ControllerHelper_MapHelper_JWdoihFGpqNirTmlzwZSRDBpJQCE * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA5D0, Player_ControllerHelper_MapHelper_JWdoihFGpqNirTmlzwZSRDBpJQCE_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Player_ControllerHelper_MapHelper_JWdoihFGpqNirTmlzwZSRDBpJQCE_System_Collections_IEnumerator_get_Current, (Player_ControllerHelper_MapHelper_JWdoihFGpqNirTmlzwZSRDBpJQCE * __this, MethodInfo * method)); DO_APP_FUNC(0x02134F40, IEnumerator_1_Rewired_ActionElementMap_ *, Player_ControllerHelper_MapHelper_JWdoihFGpqNirTmlzwZSRDBpJQCE_System_Collections_Generic_IEnumerable_Rewired_ActionElementMap__GetEnumerator, (Player_ControllerHelper_MapHelper_JWdoihFGpqNirTmlzwZSRDBpJQCE * __this, MethodInfo * method)); DO_APP_FUNC(0x02135110, IEnumerator *, Player_ControllerHelper_MapHelper_JWdoihFGpqNirTmlzwZSRDBpJQCE_System_Collections_IEnumerable_GetEnumerator, (Player_ControllerHelper_MapHelper_JWdoihFGpqNirTmlzwZSRDBpJQCE * __this, MethodInfo * method)); @@ -43408,6 +51151,7 @@ DO_APP_FUNC(0x003AE050, void, Player_ControllerHelper_MapHelper_AaOpTnuVpWiJTESu DO_APP_FUNC(0x02135120, bool, Player_ControllerHelper_MapHelper_AaOpTnuVpWiJTESuhNTYaLAUxyrc_MoveNext, (Player_ControllerHelper_MapHelper_AaOpTnuVpWiJTESuhNTYaLAUxyrc * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, ControllerMap *, Player_ControllerHelper_MapHelper_AaOpTnuVpWiJTESuhNTYaLAUxyrc_System_Collections_Generic_IEnumerator_Rewired_ControllerMap__get_Current, (Player_ControllerHelper_MapHelper_AaOpTnuVpWiJTESuhNTYaLAUxyrc * __this, MethodInfo * method)); DO_APP_FUNC(0x021354D0, void, Player_ControllerHelper_MapHelper_AaOpTnuVpWiJTESuhNTYaLAUxyrc_System_Collections_IEnumerator_Reset, (Player_ControllerHelper_MapHelper_AaOpTnuVpWiJTESuhNTYaLAUxyrc * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA6D8, Player_ControllerHelper_MapHelper_AaOpTnuVpWiJTESuhNTYaLAUxyrc_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Player_ControllerHelper_MapHelper_AaOpTnuVpWiJTESuhNTYaLAUxyrc_System_Collections_IEnumerator_get_Current, (Player_ControllerHelper_MapHelper_AaOpTnuVpWiJTESuhNTYaLAUxyrc * __this, MethodInfo * method)); DO_APP_FUNC(0x02135520, IEnumerator_1_Rewired_ControllerMap_ *, Player_ControllerHelper_MapHelper_AaOpTnuVpWiJTESuhNTYaLAUxyrc_System_Collections_Generic_IEnumerable_Rewired_ControllerMap__GetEnumerator, (Player_ControllerHelper_MapHelper_AaOpTnuVpWiJTESuhNTYaLAUxyrc * __this, MethodInfo * method)); DO_APP_FUNC(0x02135520, IEnumerator *, Player_ControllerHelper_MapHelper_AaOpTnuVpWiJTESuhNTYaLAUxyrc_System_Collections_IEnumerable_GetEnumerator, (Player_ControllerHelper_MapHelper_AaOpTnuVpWiJTESuhNTYaLAUxyrc * __this, MethodInfo * method)); @@ -43416,6 +51160,7 @@ DO_APP_FUNC(0x003AE050, void, Player_ControllerHelper_MapHelper_bPXCaDMFHHgEcBYa DO_APP_FUNC(0x02135660, bool, Player_ControllerHelper_MapHelper_bPXCaDMFHHgEcBYaounlgckfTnWFA_MoveNext, (Player_ControllerHelper_MapHelper_bPXCaDMFHHgEcBYaounlgckfTnWFA * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, ControllerMap *, Player_ControllerHelper_MapHelper_bPXCaDMFHHgEcBYaounlgckfTnWFA_System_Collections_Generic_IEnumerator_Rewired_ControllerMap__get_Current, (Player_ControllerHelper_MapHelper_bPXCaDMFHHgEcBYaounlgckfTnWFA * __this, MethodInfo * method)); DO_APP_FUNC(0x02135980, void, Player_ControllerHelper_MapHelper_bPXCaDMFHHgEcBYaounlgckfTnWFA_System_Collections_IEnumerator_Reset, (Player_ControllerHelper_MapHelper_bPXCaDMFHHgEcBYaounlgckfTnWFA * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA6A8, Player_ControllerHelper_MapHelper_bPXCaDMFHHgEcBYaounlgckfTnWFA_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Player_ControllerHelper_MapHelper_bPXCaDMFHHgEcBYaounlgckfTnWFA_System_Collections_IEnumerator_get_Current, (Player_ControllerHelper_MapHelper_bPXCaDMFHHgEcBYaounlgckfTnWFA * __this, MethodInfo * method)); DO_APP_FUNC(0x021359D0, IEnumerator_1_Rewired_ControllerMap_ *, Player_ControllerHelper_MapHelper_bPXCaDMFHHgEcBYaounlgckfTnWFA_System_Collections_Generic_IEnumerable_Rewired_ControllerMap__GetEnumerator, (Player_ControllerHelper_MapHelper_bPXCaDMFHHgEcBYaounlgckfTnWFA * __this, MethodInfo * method)); DO_APP_FUNC(0x021359D0, IEnumerator *, Player_ControllerHelper_MapHelper_bPXCaDMFHHgEcBYaounlgckfTnWFA_System_Collections_IEnumerable_GetEnumerator, (Player_ControllerHelper_MapHelper_bPXCaDMFHHgEcBYaounlgckfTnWFA * __this, MethodInfo * method)); @@ -43424,6 +51169,7 @@ DO_APP_FUNC(0x003AE050, void, Player_ControllerHelper_MapHelper_kfgovjxJuQYQHMbr DO_APP_FUNC(0x02135B10, bool, Player_ControllerHelper_MapHelper_kfgovjxJuQYQHMbrhDXrbesoODoPA_MoveNext, (Player_ControllerHelper_MapHelper_kfgovjxJuQYQHMbrhDXrbesoODoPA * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, ControllerMap *, Player_ControllerHelper_MapHelper_kfgovjxJuQYQHMbrhDXrbesoODoPA_System_Collections_Generic_IEnumerator_Rewired_ControllerMap__get_Current, (Player_ControllerHelper_MapHelper_kfgovjxJuQYQHMbrhDXrbesoODoPA * __this, MethodInfo * method)); DO_APP_FUNC(0x02135EE0, void, Player_ControllerHelper_MapHelper_kfgovjxJuQYQHMbrhDXrbesoODoPA_System_Collections_IEnumerator_Reset, (Player_ControllerHelper_MapHelper_kfgovjxJuQYQHMbrhDXrbesoODoPA * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA660, Player_ControllerHelper_MapHelper_kfgovjxJuQYQHMbrhDXrbesoODoPA_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Player_ControllerHelper_MapHelper_kfgovjxJuQYQHMbrhDXrbesoODoPA_System_Collections_IEnumerator_get_Current, (Player_ControllerHelper_MapHelper_kfgovjxJuQYQHMbrhDXrbesoODoPA * __this, MethodInfo * method)); DO_APP_FUNC(0x02135F30, IEnumerator_1_Rewired_ControllerMap_ *, Player_ControllerHelper_MapHelper_kfgovjxJuQYQHMbrhDXrbesoODoPA_System_Collections_Generic_IEnumerable_Rewired_ControllerMap__GetEnumerator, (Player_ControllerHelper_MapHelper_kfgovjxJuQYQHMbrhDXrbesoODoPA * __this, MethodInfo * method)); DO_APP_FUNC(0x02135F30, IEnumerator *, Player_ControllerHelper_MapHelper_kfgovjxJuQYQHMbrhDXrbesoODoPA_System_Collections_IEnumerable_GetEnumerator, (Player_ControllerHelper_MapHelper_kfgovjxJuQYQHMbrhDXrbesoODoPA * __this, MethodInfo * method)); @@ -43432,29 +51178,49 @@ DO_APP_FUNC(0x003AE050, void, Player_ControllerHelper_MapHelper_YfKnphbwUKBwcbgb DO_APP_FUNC(0x02136070, bool, Player_ControllerHelper_MapHelper_YfKnphbwUKBwcbgbDfyBJmPcxSjX_MoveNext, (Player_ControllerHelper_MapHelper_YfKnphbwUKBwcbgbDfyBJmPcxSjX * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, ControllerMap *, Player_ControllerHelper_MapHelper_YfKnphbwUKBwcbgbDfyBJmPcxSjX_System_Collections_Generic_IEnumerator_Rewired_ControllerMap__get_Current, (Player_ControllerHelper_MapHelper_YfKnphbwUKBwcbgbDfyBJmPcxSjX * __this, MethodInfo * method)); DO_APP_FUNC(0x021363B0, void, Player_ControllerHelper_MapHelper_YfKnphbwUKBwcbgbDfyBJmPcxSjX_System_Collections_IEnumerator_Reset, (Player_ControllerHelper_MapHelper_YfKnphbwUKBwcbgbDfyBJmPcxSjX * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA4A0, Player_ControllerHelper_MapHelper_YfKnphbwUKBwcbgbDfyBJmPcxSjX_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Player_ControllerHelper_MapHelper_YfKnphbwUKBwcbgbDfyBJmPcxSjX_System_Collections_IEnumerator_get_Current, (Player_ControllerHelper_MapHelper_YfKnphbwUKBwcbgbDfyBJmPcxSjX * __this, MethodInfo * method)); DO_APP_FUNC(0x02136400, IEnumerator_1_Rewired_ControllerMap_ *, Player_ControllerHelper_MapHelper_YfKnphbwUKBwcbgbDfyBJmPcxSjX_System_Collections_Generic_IEnumerable_Rewired_ControllerMap__GetEnumerator, (Player_ControllerHelper_MapHelper_YfKnphbwUKBwcbgbDfyBJmPcxSjX * __this, MethodInfo * method)); DO_APP_FUNC(0x02136400, IEnumerator *, Player_ControllerHelper_MapHelper_YfKnphbwUKBwcbgbDfyBJmPcxSjX_System_Collections_IEnumerable_GetEnumerator, (Player_ControllerHelper_MapHelper_YfKnphbwUKBwcbgbDfyBJmPcxSjX * __this, MethodInfo * method)); DO_APP_FUNC(0x02136550, void, Player_ControllerHelper_PollingHelper__ctor, (Player_ControllerHelper_PollingHelper * __this, Player * param_0000ad40, Player_ControllerHelper * param_0000ad41, MethodInfo * method)); DO_APP_FUNC(0x02136660, ControllerPollingInfo, Player_ControllerHelper_PollingHelper_PollControllerForFirstElement, (Player_ControllerHelper_PollingHelper * __this, ControllerType__Enum controllerType, int32_t controllerId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA480, Player_ControllerHelper_PollingHelper_PollControllerForFirstElement__MethodInfo); DO_APP_FUNC(0x02136A30, ControllerPollingInfo, Player_ControllerHelper_PollingHelper_PollControllerForFirstElementDown, (Player_ControllerHelper_PollingHelper * __this, ControllerType__Enum controllerType, int32_t controllerId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA488, Player_ControllerHelper_PollingHelper_PollControllerForFirstElementDown__MethodInfo); DO_APP_FUNC(0x02136E00, ControllerPollingInfo, Player_ControllerHelper_PollingHelper_PollControllerForFirstButton, (Player_ControllerHelper_PollingHelper * __this, ControllerType__Enum controllerType, int32_t controllerId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA478, Player_ControllerHelper_PollingHelper_PollControllerForFirstButton__MethodInfo); DO_APP_FUNC(0x021371D0, ControllerPollingInfo, Player_ControllerHelper_PollingHelper_PollControllerForFirstButtonDown, (Player_ControllerHelper_PollingHelper * __this, ControllerType__Enum controllerType, int32_t controllerId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA588, Player_ControllerHelper_PollingHelper_PollControllerForFirstButtonDown__MethodInfo); DO_APP_FUNC(0x021375A0, ControllerPollingInfo, Player_ControllerHelper_PollingHelper_PollControllerForFirstAxis, (Player_ControllerHelper_PollingHelper * __this, ControllerType__Enum controllerType, int32_t controllerId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA548, Player_ControllerHelper_PollingHelper_PollControllerForFirstAxis__MethodInfo); DO_APP_FUNC(0x02137900, IEnumerable_1_Rewired_ControllerPollingInfo_ *, Player_ControllerHelper_PollingHelper_PollControllerForAllElements, (Player_ControllerHelper_PollingHelper * __this, ControllerType__Enum controllerType, int32_t controllerId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA500, Player_ControllerHelper_PollingHelper_PollControllerForAllElements__MethodInfo); DO_APP_FUNC(0x02137BC0, IEnumerable_1_Rewired_ControllerPollingInfo_ *, Player_ControllerHelper_PollingHelper_PollControllerForAllElementsDown, (Player_ControllerHelper_PollingHelper * __this, ControllerType__Enum controllerType, int32_t controllerId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA518, Player_ControllerHelper_PollingHelper_PollControllerForAllElementsDown__MethodInfo); DO_APP_FUNC(0x02137E80, IEnumerable_1_Rewired_ControllerPollingInfo_ *, Player_ControllerHelper_PollingHelper_PollControllerForAllButtons, (Player_ControllerHelper_PollingHelper * __this, ControllerType__Enum controllerType, int32_t controllerId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA4E0, Player_ControllerHelper_PollingHelper_PollControllerForAllButtons__MethodInfo); DO_APP_FUNC(0x02138140, IEnumerable_1_Rewired_ControllerPollingInfo_ *, Player_ControllerHelper_PollingHelper_PollControllerForAllButtonsDown, (Player_ControllerHelper_PollingHelper * __this, ControllerType__Enum controllerType, int32_t controllerId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA380, Player_ControllerHelper_PollingHelper_PollControllerForAllButtonsDown__MethodInfo); DO_APP_FUNC(0x02138400, IEnumerable_1_Rewired_ControllerPollingInfo_ *, Player_ControllerHelper_PollingHelper_PollControllerForAllAxes, (Player_ControllerHelper_PollingHelper * __this, ControllerType__Enum controllerType, int32_t controllerId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA350, Player_ControllerHelper_PollingHelper_PollControllerForAllAxes__MethodInfo); DO_APP_FUNC(0x02138700, ControllerPollingInfo, Player_ControllerHelper_PollingHelper_PollAllControllersOfTypeForFirstElement, (Player_ControllerHelper_PollingHelper * __this, ControllerType__Enum controllerType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA368, Player_ControllerHelper_PollingHelper_PollAllControllersOfTypeForFirstElement__MethodInfo); DO_APP_FUNC(0x02138B50, ControllerPollingInfo, Player_ControllerHelper_PollingHelper_PollAllControllersOfTypeForFirstButton, (Player_ControllerHelper_PollingHelper * __this, ControllerType__Enum controllerType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA338, Player_ControllerHelper_PollingHelper_PollAllControllersOfTypeForFirstButton__MethodInfo); DO_APP_FUNC(0x02138FA0, ControllerPollingInfo, Player_ControllerHelper_PollingHelper_PollAllControllersOfTypeForFirstButtonDown, (Player_ControllerHelper_PollingHelper * __this, ControllerType__Enum controllerType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA2E0, Player_ControllerHelper_PollingHelper_PollAllControllersOfTypeForFirstButtonDown__MethodInfo); DO_APP_FUNC(0x021393F0, ControllerPollingInfo, Player_ControllerHelper_PollingHelper_PollAllControllersOfTypeForFirstAxis, (Player_ControllerHelper_PollingHelper * __this, ControllerType__Enum controllerType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA458, Player_ControllerHelper_PollingHelper_PollAllControllersOfTypeForFirstAxis__MethodInfo); DO_APP_FUNC(0x021397E0, IEnumerable_1_Rewired_ControllerPollingInfo_ *, Player_ControllerHelper_PollingHelper_PollAllControllersOfTypeForAllElements, (Player_ControllerHelper_PollingHelper * __this, ControllerType__Enum controllerType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA468, Player_ControllerHelper_PollingHelper_PollAllControllersOfTypeForAllElements__MethodInfo); DO_APP_FUNC(0x02139A80, IEnumerable_1_Rewired_ControllerPollingInfo_ *, Player_ControllerHelper_PollingHelper_PollAllControllersOfTypeForAllElementsDown, (Player_ControllerHelper_PollingHelper * __this, ControllerType__Enum controllerType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA440, Player_ControllerHelper_PollingHelper_PollAllControllersOfTypeForAllElementsDown__MethodInfo); DO_APP_FUNC(0x02139D20, IEnumerable_1_Rewired_ControllerPollingInfo_ *, Player_ControllerHelper_PollingHelper_PollAllControllersOfTypeForAllButtons, (Player_ControllerHelper_PollingHelper * __this, ControllerType__Enum controllerType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA3E8, Player_ControllerHelper_PollingHelper_PollAllControllersOfTypeForAllButtons__MethodInfo); DO_APP_FUNC(0x02139FC0, IEnumerable_1_Rewired_ControllerPollingInfo_ *, Player_ControllerHelper_PollingHelper_PollAllControllersOfTypeForAllButtonsDown, (Player_ControllerHelper_PollingHelper * __this, ControllerType__Enum controllerType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA3C0, Player_ControllerHelper_PollingHelper_PollAllControllersOfTypeForAllButtonsDown__MethodInfo); DO_APP_FUNC(0x0213A260, IEnumerable_1_Rewired_ControllerPollingInfo_ *, Player_ControllerHelper_PollingHelper_PollAllControllersOfTypeForAllAxes, (Player_ControllerHelper_PollingHelper * __this, ControllerType__Enum controllerType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA3D0, Player_ControllerHelper_PollingHelper_PollAllControllersOfTypeForAllAxes__MethodInfo); DO_APP_FUNC(0x0213A540, ControllerPollingInfo, Player_ControllerHelper_PollingHelper_qKPKtUufPHQRXOrtOVmJoTYSIuaF, (Player_ControllerHelper_PollingHelper * __this, int32_t param_0000ad5f, MethodInfo * method)); DO_APP_FUNC(0x0213A670, ControllerPollingInfo, Player_ControllerHelper_PollingHelper_mhvbzWsUMRvYgsnRzUmUIZwiJgDs, (Player_ControllerHelper_PollingHelper * __this, int32_t param_0000ad60, MethodInfo * method)); DO_APP_FUNC(0x0213A7A0, ControllerPollingInfo, Player_ControllerHelper_PollingHelper_CvcBKPwAxkWNYYxXkkzcXiSWeFzt, (Player_ControllerHelper_PollingHelper * __this, int32_t param_0000ad61, MethodInfo * method)); @@ -43515,6 +51281,7 @@ DO_APP_FUNC(0x0213D740, bool, Player_ControllerHelper_PollingHelper_INQmivvaPlKG DO_APP_FUNC(0x0213DC70, void, Player_ControllerHelper_PollingHelper_INQmivvaPlKGTvRJYMuQevjEPLhT_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (Player_ControllerHelper_PollingHelper_INQmivvaPlKGTvRJYMuQevjEPLhT * __this, MethodInfo * method)); DO_APP_FUNC(0x01EED6A0, ControllerPollingInfo, Player_ControllerHelper_PollingHelper_INQmivvaPlKGTvRJYMuQevjEPLhT_System_Collections_Generic_IEnumerator_Rewired_ControllerPollingInfo__get_Current, (Player_ControllerHelper_PollingHelper_INQmivvaPlKGTvRJYMuQevjEPLhT * __this, MethodInfo * method)); DO_APP_FUNC(0x0213DCD0, void, Player_ControllerHelper_PollingHelper_INQmivvaPlKGTvRJYMuQevjEPLhT_System_Collections_IEnumerator_Reset, (Player_ControllerHelper_PollingHelper_INQmivvaPlKGTvRJYMuQevjEPLhT * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9E78, Player_ControllerHelper_PollingHelper_INQmivvaPlKGTvRJYMuQevjEPLhT_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x0213DD20, Object *, Player_ControllerHelper_PollingHelper_INQmivvaPlKGTvRJYMuQevjEPLhT_System_Collections_IEnumerator_get_Current, (Player_ControllerHelper_PollingHelper_INQmivvaPlKGTvRJYMuQevjEPLhT * __this, MethodInfo * method)); DO_APP_FUNC(0x0213DD90, IEnumerator_1_Rewired_ControllerPollingInfo_ *, Player_ControllerHelper_PollingHelper_INQmivvaPlKGTvRJYMuQevjEPLhT_System_Collections_Generic_IEnumerable_Rewired_ControllerPollingInfo__GetEnumerator, (Player_ControllerHelper_PollingHelper_INQmivvaPlKGTvRJYMuQevjEPLhT * __this, MethodInfo * method)); DO_APP_FUNC(0x0213DD90, IEnumerator *, Player_ControllerHelper_PollingHelper_INQmivvaPlKGTvRJYMuQevjEPLhT_System_Collections_IEnumerable_GetEnumerator, (Player_ControllerHelper_PollingHelper_INQmivvaPlKGTvRJYMuQevjEPLhT * __this, MethodInfo * method)); @@ -43524,6 +51291,7 @@ DO_APP_FUNC(0x0213DFA0, bool, Player_ControllerHelper_PollingHelper_qUbfSuuLZFBC DO_APP_FUNC(0x0213E4E0, void, Player_ControllerHelper_PollingHelper_qUbfSuuLZFBCtLjgLmwStqGVqPlg_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (Player_ControllerHelper_PollingHelper_qUbfSuuLZFBCtLjgLmwStqGVqPlg * __this, MethodInfo * method)); DO_APP_FUNC(0x01EED6A0, ControllerPollingInfo, Player_ControllerHelper_PollingHelper_qUbfSuuLZFBCtLjgLmwStqGVqPlg_System_Collections_Generic_IEnumerator_Rewired_ControllerPollingInfo__get_Current, (Player_ControllerHelper_PollingHelper_qUbfSuuLZFBCtLjgLmwStqGVqPlg * __this, MethodInfo * method)); DO_APP_FUNC(0x0213E540, void, Player_ControllerHelper_PollingHelper_qUbfSuuLZFBCtLjgLmwStqGVqPlg_System_Collections_IEnumerator_Reset, (Player_ControllerHelper_PollingHelper_qUbfSuuLZFBCtLjgLmwStqGVqPlg * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9D80, Player_ControllerHelper_PollingHelper_qUbfSuuLZFBCtLjgLmwStqGVqPlg_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x0213E590, Object *, Player_ControllerHelper_PollingHelper_qUbfSuuLZFBCtLjgLmwStqGVqPlg_System_Collections_IEnumerator_get_Current, (Player_ControllerHelper_PollingHelper_qUbfSuuLZFBCtLjgLmwStqGVqPlg * __this, MethodInfo * method)); DO_APP_FUNC(0x0213E600, IEnumerator_1_Rewired_ControllerPollingInfo_ *, Player_ControllerHelper_PollingHelper_qUbfSuuLZFBCtLjgLmwStqGVqPlg_System_Collections_Generic_IEnumerable_Rewired_ControllerPollingInfo__GetEnumerator, (Player_ControllerHelper_PollingHelper_qUbfSuuLZFBCtLjgLmwStqGVqPlg * __this, MethodInfo * method)); DO_APP_FUNC(0x0213E600, IEnumerator *, Player_ControllerHelper_PollingHelper_qUbfSuuLZFBCtLjgLmwStqGVqPlg_System_Collections_IEnumerable_GetEnumerator, (Player_ControllerHelper_PollingHelper_qUbfSuuLZFBCtLjgLmwStqGVqPlg * __this, MethodInfo * method)); @@ -43533,6 +51301,7 @@ DO_APP_FUNC(0x0213E810, bool, Player_ControllerHelper_PollingHelper_xLTRpGDqlQiJ DO_APP_FUNC(0x0213ED50, void, Player_ControllerHelper_PollingHelper_xLTRpGDqlQiJErNXSzHggwcQBMip_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (Player_ControllerHelper_PollingHelper_xLTRpGDqlQiJErNXSzHggwcQBMip * __this, MethodInfo * method)); DO_APP_FUNC(0x01EED6A0, ControllerPollingInfo, Player_ControllerHelper_PollingHelper_xLTRpGDqlQiJErNXSzHggwcQBMip_System_Collections_Generic_IEnumerator_Rewired_ControllerPollingInfo__get_Current, (Player_ControllerHelper_PollingHelper_xLTRpGDqlQiJErNXSzHggwcQBMip * __this, MethodInfo * method)); DO_APP_FUNC(0x0213EDB0, void, Player_ControllerHelper_PollingHelper_xLTRpGDqlQiJErNXSzHggwcQBMip_System_Collections_IEnumerator_Reset, (Player_ControllerHelper_PollingHelper_xLTRpGDqlQiJErNXSzHggwcQBMip * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9D40, Player_ControllerHelper_PollingHelper_xLTRpGDqlQiJErNXSzHggwcQBMip_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x0213EE00, Object *, Player_ControllerHelper_PollingHelper_xLTRpGDqlQiJErNXSzHggwcQBMip_System_Collections_IEnumerator_get_Current, (Player_ControllerHelper_PollingHelper_xLTRpGDqlQiJErNXSzHggwcQBMip * __this, MethodInfo * method)); DO_APP_FUNC(0x0213EE70, IEnumerator_1_Rewired_ControllerPollingInfo_ *, Player_ControllerHelper_PollingHelper_xLTRpGDqlQiJErNXSzHggwcQBMip_System_Collections_Generic_IEnumerable_Rewired_ControllerPollingInfo__GetEnumerator, (Player_ControllerHelper_PollingHelper_xLTRpGDqlQiJErNXSzHggwcQBMip * __this, MethodInfo * method)); DO_APP_FUNC(0x0213EE70, IEnumerator *, Player_ControllerHelper_PollingHelper_xLTRpGDqlQiJErNXSzHggwcQBMip_System_Collections_IEnumerable_GetEnumerator, (Player_ControllerHelper_PollingHelper_xLTRpGDqlQiJErNXSzHggwcQBMip * __this, MethodInfo * method)); @@ -43542,6 +51311,7 @@ DO_APP_FUNC(0x0213F080, bool, Player_ControllerHelper_PollingHelper_GKlExeVGqFbd DO_APP_FUNC(0x0213F5C0, void, Player_ControllerHelper_PollingHelper_GKlExeVGqFbdFuoUzSzfNBSiKZrc_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (Player_ControllerHelper_PollingHelper_GKlExeVGqFbdFuoUzSzfNBSiKZrc * __this, MethodInfo * method)); DO_APP_FUNC(0x01EED6A0, ControllerPollingInfo, Player_ControllerHelper_PollingHelper_GKlExeVGqFbdFuoUzSzfNBSiKZrc_System_Collections_Generic_IEnumerator_Rewired_ControllerPollingInfo__get_Current, (Player_ControllerHelper_PollingHelper_GKlExeVGqFbdFuoUzSzfNBSiKZrc * __this, MethodInfo * method)); DO_APP_FUNC(0x0213F620, void, Player_ControllerHelper_PollingHelper_GKlExeVGqFbdFuoUzSzfNBSiKZrc_System_Collections_IEnumerator_Reset, (Player_ControllerHelper_PollingHelper_GKlExeVGqFbdFuoUzSzfNBSiKZrc * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9DE0, Player_ControllerHelper_PollingHelper_GKlExeVGqFbdFuoUzSzfNBSiKZrc_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x0213F670, Object *, Player_ControllerHelper_PollingHelper_GKlExeVGqFbdFuoUzSzfNBSiKZrc_System_Collections_IEnumerator_get_Current, (Player_ControllerHelper_PollingHelper_GKlExeVGqFbdFuoUzSzfNBSiKZrc * __this, MethodInfo * method)); DO_APP_FUNC(0x0213F6E0, IEnumerator_1_Rewired_ControllerPollingInfo_ *, Player_ControllerHelper_PollingHelper_GKlExeVGqFbdFuoUzSzfNBSiKZrc_System_Collections_Generic_IEnumerable_Rewired_ControllerPollingInfo__GetEnumerator, (Player_ControllerHelper_PollingHelper_GKlExeVGqFbdFuoUzSzfNBSiKZrc * __this, MethodInfo * method)); DO_APP_FUNC(0x0213F6E0, IEnumerator *, Player_ControllerHelper_PollingHelper_GKlExeVGqFbdFuoUzSzfNBSiKZrc_System_Collections_IEnumerable_GetEnumerator, (Player_ControllerHelper_PollingHelper_GKlExeVGqFbdFuoUzSzfNBSiKZrc * __this, MethodInfo * method)); @@ -43551,6 +51321,7 @@ DO_APP_FUNC(0x0213F8F0, bool, Player_ControllerHelper_PollingHelper_VWPptmqenXME DO_APP_FUNC(0x0213FE30, void, Player_ControllerHelper_PollingHelper_VWPptmqenXMEaOezrDiFoQciLTgL_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (Player_ControllerHelper_PollingHelper_VWPptmqenXMEaOezrDiFoQciLTgL * __this, MethodInfo * method)); DO_APP_FUNC(0x01EED6A0, ControllerPollingInfo, Player_ControllerHelper_PollingHelper_VWPptmqenXMEaOezrDiFoQciLTgL_System_Collections_Generic_IEnumerator_Rewired_ControllerPollingInfo__get_Current, (Player_ControllerHelper_PollingHelper_VWPptmqenXMEaOezrDiFoQciLTgL * __this, MethodInfo * method)); DO_APP_FUNC(0x0213FE90, void, Player_ControllerHelper_PollingHelper_VWPptmqenXMEaOezrDiFoQciLTgL_System_Collections_IEnumerator_Reset, (Player_ControllerHelper_PollingHelper_VWPptmqenXMEaOezrDiFoQciLTgL * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9DA0, Player_ControllerHelper_PollingHelper_VWPptmqenXMEaOezrDiFoQciLTgL_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x0213FEE0, Object *, Player_ControllerHelper_PollingHelper_VWPptmqenXMEaOezrDiFoQciLTgL_System_Collections_IEnumerator_get_Current, (Player_ControllerHelper_PollingHelper_VWPptmqenXMEaOezrDiFoQciLTgL * __this, MethodInfo * method)); DO_APP_FUNC(0x0213FF50, IEnumerator_1_Rewired_ControllerPollingInfo_ *, Player_ControllerHelper_PollingHelper_VWPptmqenXMEaOezrDiFoQciLTgL_System_Collections_Generic_IEnumerable_Rewired_ControllerPollingInfo__GetEnumerator, (Player_ControllerHelper_PollingHelper_VWPptmqenXMEaOezrDiFoQciLTgL * __this, MethodInfo * method)); DO_APP_FUNC(0x0213FF50, IEnumerator *, Player_ControllerHelper_PollingHelper_VWPptmqenXMEaOezrDiFoQciLTgL_System_Collections_IEnumerable_GetEnumerator, (Player_ControllerHelper_PollingHelper_VWPptmqenXMEaOezrDiFoQciLTgL * __this, MethodInfo * method)); @@ -43560,6 +51331,7 @@ DO_APP_FUNC(0x02140160, bool, Player_ControllerHelper_PollingHelper_BjdPGvYZBGRd DO_APP_FUNC(0x02140690, void, Player_ControllerHelper_PollingHelper_BjdPGvYZBGRdmIadJCUJHstNFTXK_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (Player_ControllerHelper_PollingHelper_BjdPGvYZBGRdmIadJCUJHstNFTXK * __this, MethodInfo * method)); DO_APP_FUNC(0x01EED6A0, ControllerPollingInfo, Player_ControllerHelper_PollingHelper_BjdPGvYZBGRdmIadJCUJHstNFTXK_System_Collections_Generic_IEnumerator_Rewired_ControllerPollingInfo__get_Current, (Player_ControllerHelper_PollingHelper_BjdPGvYZBGRdmIadJCUJHstNFTXK * __this, MethodInfo * method)); DO_APP_FUNC(0x021406F0, void, Player_ControllerHelper_PollingHelper_BjdPGvYZBGRdmIadJCUJHstNFTXK_System_Collections_IEnumerator_Reset, (Player_ControllerHelper_PollingHelper_BjdPGvYZBGRdmIadJCUJHstNFTXK * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9CA8, Player_ControllerHelper_PollingHelper_BjdPGvYZBGRdmIadJCUJHstNFTXK_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x02140740, Object *, Player_ControllerHelper_PollingHelper_BjdPGvYZBGRdmIadJCUJHstNFTXK_System_Collections_IEnumerator_get_Current, (Player_ControllerHelper_PollingHelper_BjdPGvYZBGRdmIadJCUJHstNFTXK * __this, MethodInfo * method)); DO_APP_FUNC(0x021407B0, IEnumerator_1_Rewired_ControllerPollingInfo_ *, Player_ControllerHelper_PollingHelper_BjdPGvYZBGRdmIadJCUJHstNFTXK_System_Collections_Generic_IEnumerable_Rewired_ControllerPollingInfo__GetEnumerator, (Player_ControllerHelper_PollingHelper_BjdPGvYZBGRdmIadJCUJHstNFTXK * __this, MethodInfo * method)); DO_APP_FUNC(0x021407B0, IEnumerator *, Player_ControllerHelper_PollingHelper_BjdPGvYZBGRdmIadJCUJHstNFTXK_System_Collections_IEnumerable_GetEnumerator, (Player_ControllerHelper_PollingHelper_BjdPGvYZBGRdmIadJCUJHstNFTXK * __this, MethodInfo * method)); @@ -43569,6 +51341,7 @@ DO_APP_FUNC(0x021409C0, bool, Player_ControllerHelper_PollingHelper_zLECFIsVgztG DO_APP_FUNC(0x02140F00, void, Player_ControllerHelper_PollingHelper_zLECFIsVgztGwYPJEylSFAYpGcIA_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (Player_ControllerHelper_PollingHelper_zLECFIsVgztGwYPJEylSFAYpGcIA * __this, MethodInfo * method)); DO_APP_FUNC(0x01EED6A0, ControllerPollingInfo, Player_ControllerHelper_PollingHelper_zLECFIsVgztGwYPJEylSFAYpGcIA_System_Collections_Generic_IEnumerator_Rewired_ControllerPollingInfo__get_Current, (Player_ControllerHelper_PollingHelper_zLECFIsVgztGwYPJEylSFAYpGcIA * __this, MethodInfo * method)); DO_APP_FUNC(0x02140F60, void, Player_ControllerHelper_PollingHelper_zLECFIsVgztGwYPJEylSFAYpGcIA_System_Collections_IEnumerator_Reset, (Player_ControllerHelper_PollingHelper_zLECFIsVgztGwYPJEylSFAYpGcIA * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9C98, Player_ControllerHelper_PollingHelper_zLECFIsVgztGwYPJEylSFAYpGcIA_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x02140FB0, Object *, Player_ControllerHelper_PollingHelper_zLECFIsVgztGwYPJEylSFAYpGcIA_System_Collections_IEnumerator_get_Current, (Player_ControllerHelper_PollingHelper_zLECFIsVgztGwYPJEylSFAYpGcIA * __this, MethodInfo * method)); DO_APP_FUNC(0x02141020, IEnumerator_1_Rewired_ControllerPollingInfo_ *, Player_ControllerHelper_PollingHelper_zLECFIsVgztGwYPJEylSFAYpGcIA_System_Collections_Generic_IEnumerable_Rewired_ControllerPollingInfo__GetEnumerator, (Player_ControllerHelper_PollingHelper_zLECFIsVgztGwYPJEylSFAYpGcIA * __this, MethodInfo * method)); DO_APP_FUNC(0x02141020, IEnumerator *, Player_ControllerHelper_PollingHelper_zLECFIsVgztGwYPJEylSFAYpGcIA_System_Collections_IEnumerable_GetEnumerator, (Player_ControllerHelper_PollingHelper_zLECFIsVgztGwYPJEylSFAYpGcIA * __this, MethodInfo * method)); @@ -43578,6 +51351,7 @@ DO_APP_FUNC(0x02141230, bool, Player_ControllerHelper_PollingHelper_APXIoTnnsixg DO_APP_FUNC(0x02141770, void, Player_ControllerHelper_PollingHelper_APXIoTnnsixgbytAwmKKRmGeJOlj_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (Player_ControllerHelper_PollingHelper_APXIoTnnsixgbytAwmKKRmGeJOlj * __this, MethodInfo * method)); DO_APP_FUNC(0x01EED6A0, ControllerPollingInfo, Player_ControllerHelper_PollingHelper_APXIoTnnsixgbytAwmKKRmGeJOlj_System_Collections_Generic_IEnumerator_Rewired_ControllerPollingInfo__get_Current, (Player_ControllerHelper_PollingHelper_APXIoTnnsixgbytAwmKKRmGeJOlj * __this, MethodInfo * method)); DO_APP_FUNC(0x021417D0, void, Player_ControllerHelper_PollingHelper_APXIoTnnsixgbytAwmKKRmGeJOlj_System_Collections_IEnumerator_Reset, (Player_ControllerHelper_PollingHelper_APXIoTnnsixgbytAwmKKRmGeJOlj * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9CF0, Player_ControllerHelper_PollingHelper_APXIoTnnsixgbytAwmKKRmGeJOlj_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x02141820, Object *, Player_ControllerHelper_PollingHelper_APXIoTnnsixgbytAwmKKRmGeJOlj_System_Collections_IEnumerator_get_Current, (Player_ControllerHelper_PollingHelper_APXIoTnnsixgbytAwmKKRmGeJOlj * __this, MethodInfo * method)); DO_APP_FUNC(0x02141890, IEnumerator_1_Rewired_ControllerPollingInfo_ *, Player_ControllerHelper_PollingHelper_APXIoTnnsixgbytAwmKKRmGeJOlj_System_Collections_Generic_IEnumerable_Rewired_ControllerPollingInfo__GetEnumerator, (Player_ControllerHelper_PollingHelper_APXIoTnnsixgbytAwmKKRmGeJOlj * __this, MethodInfo * method)); DO_APP_FUNC(0x02141890, IEnumerator *, Player_ControllerHelper_PollingHelper_APXIoTnnsixgbytAwmKKRmGeJOlj_System_Collections_IEnumerable_GetEnumerator, (Player_ControllerHelper_PollingHelper_APXIoTnnsixgbytAwmKKRmGeJOlj * __this, MethodInfo * method)); @@ -43587,6 +51361,7 @@ DO_APP_FUNC(0x02141AA0, bool, Player_ControllerHelper_PollingHelper_woYNgHVQQfIV DO_APP_FUNC(0x02141FE0, void, Player_ControllerHelper_PollingHelper_woYNgHVQQfIVnRpPWsIAcFqPZGOX_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (Player_ControllerHelper_PollingHelper_woYNgHVQQfIVnRpPWsIAcFqPZGOX * __this, MethodInfo * method)); DO_APP_FUNC(0x01EED6A0, ControllerPollingInfo, Player_ControllerHelper_PollingHelper_woYNgHVQQfIVnRpPWsIAcFqPZGOX_System_Collections_Generic_IEnumerator_Rewired_ControllerPollingInfo__get_Current, (Player_ControllerHelper_PollingHelper_woYNgHVQQfIVnRpPWsIAcFqPZGOX * __this, MethodInfo * method)); DO_APP_FUNC(0x02142040, void, Player_ControllerHelper_PollingHelper_woYNgHVQQfIVnRpPWsIAcFqPZGOX_System_Collections_IEnumerator_Reset, (Player_ControllerHelper_PollingHelper_woYNgHVQQfIVnRpPWsIAcFqPZGOX * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9C18, Player_ControllerHelper_PollingHelper_woYNgHVQQfIVnRpPWsIAcFqPZGOX_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x02142090, Object *, Player_ControllerHelper_PollingHelper_woYNgHVQQfIVnRpPWsIAcFqPZGOX_System_Collections_IEnumerator_get_Current, (Player_ControllerHelper_PollingHelper_woYNgHVQQfIVnRpPWsIAcFqPZGOX * __this, MethodInfo * method)); DO_APP_FUNC(0x02142100, IEnumerator_1_Rewired_ControllerPollingInfo_ *, Player_ControllerHelper_PollingHelper_woYNgHVQQfIVnRpPWsIAcFqPZGOX_System_Collections_Generic_IEnumerable_Rewired_ControllerPollingInfo__GetEnumerator, (Player_ControllerHelper_PollingHelper_woYNgHVQQfIVnRpPWsIAcFqPZGOX * __this, MethodInfo * method)); DO_APP_FUNC(0x02142100, IEnumerator *, Player_ControllerHelper_PollingHelper_woYNgHVQQfIVnRpPWsIAcFqPZGOX_System_Collections_IEnumerable_GetEnumerator, (Player_ControllerHelper_PollingHelper_woYNgHVQQfIVnRpPWsIAcFqPZGOX * __this, MethodInfo * method)); @@ -43596,6 +51371,7 @@ DO_APP_FUNC(0x02142310, bool, Player_ControllerHelper_PollingHelper_EfkKhfYmxCAU DO_APP_FUNC(0x02142850, void, Player_ControllerHelper_PollingHelper_EfkKhfYmxCAUeawWplqRoZrsCxQP_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (Player_ControllerHelper_PollingHelper_EfkKhfYmxCAUeawWplqRoZrsCxQP * __this, MethodInfo * method)); DO_APP_FUNC(0x01EED6A0, ControllerPollingInfo, Player_ControllerHelper_PollingHelper_EfkKhfYmxCAUeawWplqRoZrsCxQP_System_Collections_Generic_IEnumerator_Rewired_ControllerPollingInfo__get_Current, (Player_ControllerHelper_PollingHelper_EfkKhfYmxCAUeawWplqRoZrsCxQP * __this, MethodInfo * method)); DO_APP_FUNC(0x021428B0, void, Player_ControllerHelper_PollingHelper_EfkKhfYmxCAUeawWplqRoZrsCxQP_System_Collections_IEnumerator_Reset, (Player_ControllerHelper_PollingHelper_EfkKhfYmxCAUeawWplqRoZrsCxQP * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9BE0, Player_ControllerHelper_PollingHelper_EfkKhfYmxCAUeawWplqRoZrsCxQP_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x02142900, Object *, Player_ControllerHelper_PollingHelper_EfkKhfYmxCAUeawWplqRoZrsCxQP_System_Collections_IEnumerator_get_Current, (Player_ControllerHelper_PollingHelper_EfkKhfYmxCAUeawWplqRoZrsCxQP * __this, MethodInfo * method)); DO_APP_FUNC(0x02142970, IEnumerator_1_Rewired_ControllerPollingInfo_ *, Player_ControllerHelper_PollingHelper_EfkKhfYmxCAUeawWplqRoZrsCxQP_System_Collections_Generic_IEnumerable_Rewired_ControllerPollingInfo__GetEnumerator, (Player_ControllerHelper_PollingHelper_EfkKhfYmxCAUeawWplqRoZrsCxQP * __this, MethodInfo * method)); DO_APP_FUNC(0x02142970, IEnumerator *, Player_ControllerHelper_PollingHelper_EfkKhfYmxCAUeawWplqRoZrsCxQP_System_Collections_IEnumerable_GetEnumerator, (Player_ControllerHelper_PollingHelper_EfkKhfYmxCAUeawWplqRoZrsCxQP * __this, MethodInfo * method)); @@ -43605,6 +51381,7 @@ DO_APP_FUNC(0x02142B80, bool, Player_ControllerHelper_PollingHelper_xWiBalCSZevi DO_APP_FUNC(0x02142F50, void, Player_ControllerHelper_PollingHelper_xWiBalCSZeviLTEtPQvQlNsAFzQE_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (Player_ControllerHelper_PollingHelper_xWiBalCSZeviLTEtPQvQlNsAFzQE * __this, MethodInfo * method)); DO_APP_FUNC(0x01EED6A0, ControllerPollingInfo, Player_ControllerHelper_PollingHelper_xWiBalCSZeviLTEtPQvQlNsAFzQE_System_Collections_Generic_IEnumerator_Rewired_ControllerPollingInfo__get_Current, (Player_ControllerHelper_PollingHelper_xWiBalCSZeviLTEtPQvQlNsAFzQE * __this, MethodInfo * method)); DO_APP_FUNC(0x02142FB0, void, Player_ControllerHelper_PollingHelper_xWiBalCSZeviLTEtPQvQlNsAFzQE_System_Collections_IEnumerator_Reset, (Player_ControllerHelper_PollingHelper_xWiBalCSZeviLTEtPQvQlNsAFzQE * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9C70, Player_ControllerHelper_PollingHelper_xWiBalCSZeviLTEtPQvQlNsAFzQE_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x02143000, Object *, Player_ControllerHelper_PollingHelper_xWiBalCSZeviLTEtPQvQlNsAFzQE_System_Collections_IEnumerator_get_Current, (Player_ControllerHelper_PollingHelper_xWiBalCSZeviLTEtPQvQlNsAFzQE * __this, MethodInfo * method)); DO_APP_FUNC(0x02143070, IEnumerator_1_Rewired_ControllerPollingInfo_ *, Player_ControllerHelper_PollingHelper_xWiBalCSZeviLTEtPQvQlNsAFzQE_System_Collections_Generic_IEnumerable_Rewired_ControllerPollingInfo__GetEnumerator, (Player_ControllerHelper_PollingHelper_xWiBalCSZeviLTEtPQvQlNsAFzQE * __this, MethodInfo * method)); DO_APP_FUNC(0x02143070, IEnumerator *, Player_ControllerHelper_PollingHelper_xWiBalCSZeviLTEtPQvQlNsAFzQE_System_Collections_IEnumerable_GetEnumerator, (Player_ControllerHelper_PollingHelper_xWiBalCSZeviLTEtPQvQlNsAFzQE * __this, MethodInfo * method)); @@ -43614,6 +51391,7 @@ DO_APP_FUNC(0x02143280, bool, Player_ControllerHelper_PollingHelper_BqatuaFsAZhB DO_APP_FUNC(0x02143660, void, Player_ControllerHelper_PollingHelper_BqatuaFsAZhBdNCpwYJjFkqVboIn_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (Player_ControllerHelper_PollingHelper_BqatuaFsAZhBdNCpwYJjFkqVboIn * __this, MethodInfo * method)); DO_APP_FUNC(0x01EED6A0, ControllerPollingInfo, Player_ControllerHelper_PollingHelper_BqatuaFsAZhBdNCpwYJjFkqVboIn_System_Collections_Generic_IEnumerator_Rewired_ControllerPollingInfo__get_Current, (Player_ControllerHelper_PollingHelper_BqatuaFsAZhBdNCpwYJjFkqVboIn * __this, MethodInfo * method)); DO_APP_FUNC(0x021436C0, void, Player_ControllerHelper_PollingHelper_BqatuaFsAZhBdNCpwYJjFkqVboIn_System_Collections_IEnumerator_Reset, (Player_ControllerHelper_PollingHelper_BqatuaFsAZhBdNCpwYJjFkqVboIn * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9C40, Player_ControllerHelper_PollingHelper_BqatuaFsAZhBdNCpwYJjFkqVboIn_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x02143710, Object *, Player_ControllerHelper_PollingHelper_BqatuaFsAZhBdNCpwYJjFkqVboIn_System_Collections_IEnumerator_get_Current, (Player_ControllerHelper_PollingHelper_BqatuaFsAZhBdNCpwYJjFkqVboIn * __this, MethodInfo * method)); DO_APP_FUNC(0x02143780, IEnumerator_1_Rewired_ControllerPollingInfo_ *, Player_ControllerHelper_PollingHelper_BqatuaFsAZhBdNCpwYJjFkqVboIn_System_Collections_Generic_IEnumerable_Rewired_ControllerPollingInfo__GetEnumerator, (Player_ControllerHelper_PollingHelper_BqatuaFsAZhBdNCpwYJjFkqVboIn * __this, MethodInfo * method)); DO_APP_FUNC(0x02143780, IEnumerator *, Player_ControllerHelper_PollingHelper_BqatuaFsAZhBdNCpwYJjFkqVboIn_System_Collections_IEnumerable_GetEnumerator, (Player_ControllerHelper_PollingHelper_BqatuaFsAZhBdNCpwYJjFkqVboIn * __this, MethodInfo * method)); @@ -43623,6 +51401,7 @@ DO_APP_FUNC(0x02143990, bool, Player_ControllerHelper_PollingHelper_eCZYVGccUCKS DO_APP_FUNC(0x02143D70, void, Player_ControllerHelper_PollingHelper_eCZYVGccUCKSnjSCDvRLLZWUXOGJ_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (Player_ControllerHelper_PollingHelper_eCZYVGccUCKSnjSCDvRLLZWUXOGJ * __this, MethodInfo * method)); DO_APP_FUNC(0x01EED6A0, ControllerPollingInfo, Player_ControllerHelper_PollingHelper_eCZYVGccUCKSnjSCDvRLLZWUXOGJ_System_Collections_Generic_IEnumerator_Rewired_ControllerPollingInfo__get_Current, (Player_ControllerHelper_PollingHelper_eCZYVGccUCKSnjSCDvRLLZWUXOGJ * __this, MethodInfo * method)); DO_APP_FUNC(0x02143DD0, void, Player_ControllerHelper_PollingHelper_eCZYVGccUCKSnjSCDvRLLZWUXOGJ_System_Collections_IEnumerator_Reset, (Player_ControllerHelper_PollingHelper_eCZYVGccUCKSnjSCDvRLLZWUXOGJ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9B70, Player_ControllerHelper_PollingHelper_eCZYVGccUCKSnjSCDvRLLZWUXOGJ_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x02143E20, Object *, Player_ControllerHelper_PollingHelper_eCZYVGccUCKSnjSCDvRLLZWUXOGJ_System_Collections_IEnumerator_get_Current, (Player_ControllerHelper_PollingHelper_eCZYVGccUCKSnjSCDvRLLZWUXOGJ * __this, MethodInfo * method)); DO_APP_FUNC(0x02143E90, IEnumerator_1_Rewired_ControllerPollingInfo_ *, Player_ControllerHelper_PollingHelper_eCZYVGccUCKSnjSCDvRLLZWUXOGJ_System_Collections_Generic_IEnumerable_Rewired_ControllerPollingInfo__GetEnumerator, (Player_ControllerHelper_PollingHelper_eCZYVGccUCKSnjSCDvRLLZWUXOGJ * __this, MethodInfo * method)); DO_APP_FUNC(0x02143E90, IEnumerator *, Player_ControllerHelper_PollingHelper_eCZYVGccUCKSnjSCDvRLLZWUXOGJ_System_Collections_IEnumerable_GetEnumerator, (Player_ControllerHelper_PollingHelper_eCZYVGccUCKSnjSCDvRLLZWUXOGJ * __this, MethodInfo * method)); @@ -43632,6 +51411,7 @@ DO_APP_FUNC(0x021440A0, bool, Player_ControllerHelper_PollingHelper_kCSItpDUZmnK DO_APP_FUNC(0x02144480, void, Player_ControllerHelper_PollingHelper_kCSItpDUZmnKiflvheuFWslZPtweb_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (Player_ControllerHelper_PollingHelper_kCSItpDUZmnKiflvheuFWslZPtweb * __this, MethodInfo * method)); DO_APP_FUNC(0x01EED6A0, ControllerPollingInfo, Player_ControllerHelper_PollingHelper_kCSItpDUZmnKiflvheuFWslZPtweb_System_Collections_Generic_IEnumerator_Rewired_ControllerPollingInfo__get_Current, (Player_ControllerHelper_PollingHelper_kCSItpDUZmnKiflvheuFWslZPtweb * __this, MethodInfo * method)); DO_APP_FUNC(0x021444E0, void, Player_ControllerHelper_PollingHelper_kCSItpDUZmnKiflvheuFWslZPtweb_System_Collections_IEnumerator_Reset, (Player_ControllerHelper_PollingHelper_kCSItpDUZmnKiflvheuFWslZPtweb * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9B40, Player_ControllerHelper_PollingHelper_kCSItpDUZmnKiflvheuFWslZPtweb_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x02144530, Object *, Player_ControllerHelper_PollingHelper_kCSItpDUZmnKiflvheuFWslZPtweb_System_Collections_IEnumerator_get_Current, (Player_ControllerHelper_PollingHelper_kCSItpDUZmnKiflvheuFWslZPtweb * __this, MethodInfo * method)); DO_APP_FUNC(0x021445A0, IEnumerator_1_Rewired_ControllerPollingInfo_ *, Player_ControllerHelper_PollingHelper_kCSItpDUZmnKiflvheuFWslZPtweb_System_Collections_Generic_IEnumerable_Rewired_ControllerPollingInfo__GetEnumerator, (Player_ControllerHelper_PollingHelper_kCSItpDUZmnKiflvheuFWslZPtweb * __this, MethodInfo * method)); DO_APP_FUNC(0x021445A0, IEnumerator *, Player_ControllerHelper_PollingHelper_kCSItpDUZmnKiflvheuFWslZPtweb_System_Collections_IEnumerable_GetEnumerator, (Player_ControllerHelper_PollingHelper_kCSItpDUZmnKiflvheuFWslZPtweb * __this, MethodInfo * method)); @@ -43641,6 +51421,7 @@ DO_APP_FUNC(0x021447B0, bool, Player_ControllerHelper_PollingHelper_prTxwzyepLaX DO_APP_FUNC(0x02144B90, void, Player_ControllerHelper_PollingHelper_prTxwzyepLaXOopDTIHyCToWcPNj_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (Player_ControllerHelper_PollingHelper_prTxwzyepLaXOopDTIHyCToWcPNj * __this, MethodInfo * method)); DO_APP_FUNC(0x01EED6A0, ControllerPollingInfo, Player_ControllerHelper_PollingHelper_prTxwzyepLaXOopDTIHyCToWcPNj_System_Collections_Generic_IEnumerator_Rewired_ControllerPollingInfo__get_Current, (Player_ControllerHelper_PollingHelper_prTxwzyepLaXOopDTIHyCToWcPNj * __this, MethodInfo * method)); DO_APP_FUNC(0x02144BF0, void, Player_ControllerHelper_PollingHelper_prTxwzyepLaXOopDTIHyCToWcPNj_System_Collections_IEnumerator_Reset, (Player_ControllerHelper_PollingHelper_prTxwzyepLaXOopDTIHyCToWcPNj * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9BA8, Player_ControllerHelper_PollingHelper_prTxwzyepLaXOopDTIHyCToWcPNj_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x02144C40, Object *, Player_ControllerHelper_PollingHelper_prTxwzyepLaXOopDTIHyCToWcPNj_System_Collections_IEnumerator_get_Current, (Player_ControllerHelper_PollingHelper_prTxwzyepLaXOopDTIHyCToWcPNj * __this, MethodInfo * method)); DO_APP_FUNC(0x02144CB0, IEnumerator_1_Rewired_ControllerPollingInfo_ *, Player_ControllerHelper_PollingHelper_prTxwzyepLaXOopDTIHyCToWcPNj_System_Collections_Generic_IEnumerable_Rewired_ControllerPollingInfo__GetEnumerator, (Player_ControllerHelper_PollingHelper_prTxwzyepLaXOopDTIHyCToWcPNj * __this, MethodInfo * method)); DO_APP_FUNC(0x02144CB0, IEnumerator *, Player_ControllerHelper_PollingHelper_prTxwzyepLaXOopDTIHyCToWcPNj_System_Collections_IEnumerable_GetEnumerator, (Player_ControllerHelper_PollingHelper_prTxwzyepLaXOopDTIHyCToWcPNj * __this, MethodInfo * method)); @@ -43650,6 +51431,7 @@ DO_APP_FUNC(0x02144EC0, bool, Player_ControllerHelper_PollingHelper_FxodOjBpgPMa DO_APP_FUNC(0x02145290, void, Player_ControllerHelper_PollingHelper_FxodOjBpgPMaLIfmOBkwiiULrFcw_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (Player_ControllerHelper_PollingHelper_FxodOjBpgPMaLIfmOBkwiiULrFcw * __this, MethodInfo * method)); DO_APP_FUNC(0x01EED6A0, ControllerPollingInfo, Player_ControllerHelper_PollingHelper_FxodOjBpgPMaLIfmOBkwiiULrFcw_System_Collections_Generic_IEnumerator_Rewired_ControllerPollingInfo__get_Current, (Player_ControllerHelper_PollingHelper_FxodOjBpgPMaLIfmOBkwiiULrFcw * __this, MethodInfo * method)); DO_APP_FUNC(0x021452F0, void, Player_ControllerHelper_PollingHelper_FxodOjBpgPMaLIfmOBkwiiULrFcw_System_Collections_IEnumerator_Reset, (Player_ControllerHelper_PollingHelper_FxodOjBpgPMaLIfmOBkwiiULrFcw * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9B88, Player_ControllerHelper_PollingHelper_FxodOjBpgPMaLIfmOBkwiiULrFcw_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x02145340, Object *, Player_ControllerHelper_PollingHelper_FxodOjBpgPMaLIfmOBkwiiULrFcw_System_Collections_IEnumerator_get_Current, (Player_ControllerHelper_PollingHelper_FxodOjBpgPMaLIfmOBkwiiULrFcw * __this, MethodInfo * method)); DO_APP_FUNC(0x021453B0, IEnumerator_1_Rewired_ControllerPollingInfo_ *, Player_ControllerHelper_PollingHelper_FxodOjBpgPMaLIfmOBkwiiULrFcw_System_Collections_Generic_IEnumerable_Rewired_ControllerPollingInfo__GetEnumerator, (Player_ControllerHelper_PollingHelper_FxodOjBpgPMaLIfmOBkwiiULrFcw * __this, MethodInfo * method)); DO_APP_FUNC(0x021453B0, IEnumerator *, Player_ControllerHelper_PollingHelper_FxodOjBpgPMaLIfmOBkwiiULrFcw_System_Collections_IEnumerable_GetEnumerator, (Player_ControllerHelper_PollingHelper_FxodOjBpgPMaLIfmOBkwiiULrFcw * __this, MethodInfo * method)); @@ -43659,6 +51441,7 @@ DO_APP_FUNC(0x021455C0, bool, Player_ControllerHelper_PollingHelper_OTcMhvdidARZ DO_APP_FUNC(0x021459A0, void, Player_ControllerHelper_PollingHelper_OTcMhvdidARZYVLZPrRwNLTQnLtt_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (Player_ControllerHelper_PollingHelper_OTcMhvdidARZYVLZPrRwNLTQnLtt * __this, MethodInfo * method)); DO_APP_FUNC(0x01EED6A0, ControllerPollingInfo, Player_ControllerHelper_PollingHelper_OTcMhvdidARZYVLZPrRwNLTQnLtt_System_Collections_Generic_IEnumerator_Rewired_ControllerPollingInfo__get_Current, (Player_ControllerHelper_PollingHelper_OTcMhvdidARZYVLZPrRwNLTQnLtt * __this, MethodInfo * method)); DO_APP_FUNC(0x02145A00, void, Player_ControllerHelper_PollingHelper_OTcMhvdidARZYVLZPrRwNLTQnLtt_System_Collections_IEnumerator_Reset, (Player_ControllerHelper_PollingHelper_OTcMhvdidARZYVLZPrRwNLTQnLtt * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9AB8, Player_ControllerHelper_PollingHelper_OTcMhvdidARZYVLZPrRwNLTQnLtt_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x02145A50, Object *, Player_ControllerHelper_PollingHelper_OTcMhvdidARZYVLZPrRwNLTQnLtt_System_Collections_IEnumerator_get_Current, (Player_ControllerHelper_PollingHelper_OTcMhvdidARZYVLZPrRwNLTQnLtt * __this, MethodInfo * method)); DO_APP_FUNC(0x02145AC0, IEnumerator_1_Rewired_ControllerPollingInfo_ *, Player_ControllerHelper_PollingHelper_OTcMhvdidARZYVLZPrRwNLTQnLtt_System_Collections_Generic_IEnumerable_Rewired_ControllerPollingInfo__GetEnumerator, (Player_ControllerHelper_PollingHelper_OTcMhvdidARZYVLZPrRwNLTQnLtt * __this, MethodInfo * method)); DO_APP_FUNC(0x02145AC0, IEnumerator *, Player_ControllerHelper_PollingHelper_OTcMhvdidARZYVLZPrRwNLTQnLtt_System_Collections_IEnumerable_GetEnumerator, (Player_ControllerHelper_PollingHelper_OTcMhvdidARZYVLZPrRwNLTQnLtt * __this, MethodInfo * method)); @@ -43668,6 +51451,7 @@ DO_APP_FUNC(0x02145CD0, bool, Player_ControllerHelper_PollingHelper_hDbccDJaECEF DO_APP_FUNC(0x021460B0, void, Player_ControllerHelper_PollingHelper_hDbccDJaECEFNyvNHxVOxWhdjggd_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (Player_ControllerHelper_PollingHelper_hDbccDJaECEFNyvNHxVOxWhdjggd * __this, MethodInfo * method)); DO_APP_FUNC(0x01EED6A0, ControllerPollingInfo, Player_ControllerHelper_PollingHelper_hDbccDJaECEFNyvNHxVOxWhdjggd_System_Collections_Generic_IEnumerator_Rewired_ControllerPollingInfo__get_Current, (Player_ControllerHelper_PollingHelper_hDbccDJaECEFNyvNHxVOxWhdjggd * __this, MethodInfo * method)); DO_APP_FUNC(0x02146110, void, Player_ControllerHelper_PollingHelper_hDbccDJaECEFNyvNHxVOxWhdjggd_System_Collections_IEnumerator_Reset, (Player_ControllerHelper_PollingHelper_hDbccDJaECEFNyvNHxVOxWhdjggd * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9B38, Player_ControllerHelper_PollingHelper_hDbccDJaECEFNyvNHxVOxWhdjggd_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x02146160, Object *, Player_ControllerHelper_PollingHelper_hDbccDJaECEFNyvNHxVOxWhdjggd_System_Collections_IEnumerator_get_Current, (Player_ControllerHelper_PollingHelper_hDbccDJaECEFNyvNHxVOxWhdjggd * __this, MethodInfo * method)); DO_APP_FUNC(0x021461D0, IEnumerator_1_Rewired_ControllerPollingInfo_ *, Player_ControllerHelper_PollingHelper_hDbccDJaECEFNyvNHxVOxWhdjggd_System_Collections_Generic_IEnumerable_Rewired_ControllerPollingInfo__GetEnumerator, (Player_ControllerHelper_PollingHelper_hDbccDJaECEFNyvNHxVOxWhdjggd * __this, MethodInfo * method)); DO_APP_FUNC(0x021461D0, IEnumerator *, Player_ControllerHelper_PollingHelper_hDbccDJaECEFNyvNHxVOxWhdjggd_System_Collections_IEnumerable_GetEnumerator, (Player_ControllerHelper_PollingHelper_hDbccDJaECEFNyvNHxVOxWhdjggd * __this, MethodInfo * method)); @@ -43677,6 +51461,7 @@ DO_APP_FUNC(0x021463E0, bool, Player_ControllerHelper_PollingHelper_RjStaASqRmuJ DO_APP_FUNC(0x021467C0, void, Player_ControllerHelper_PollingHelper_RjStaASqRmuJLBDTRxyVWMNAJGXq_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (Player_ControllerHelper_PollingHelper_RjStaASqRmuJLBDTRxyVWMNAJGXq * __this, MethodInfo * method)); DO_APP_FUNC(0x01EED6A0, ControllerPollingInfo, Player_ControllerHelper_PollingHelper_RjStaASqRmuJLBDTRxyVWMNAJGXq_System_Collections_Generic_IEnumerator_Rewired_ControllerPollingInfo__get_Current, (Player_ControllerHelper_PollingHelper_RjStaASqRmuJLBDTRxyVWMNAJGXq * __this, MethodInfo * method)); DO_APP_FUNC(0x02146820, void, Player_ControllerHelper_PollingHelper_RjStaASqRmuJLBDTRxyVWMNAJGXq_System_Collections_IEnumerator_Reset, (Player_ControllerHelper_PollingHelper_RjStaASqRmuJLBDTRxyVWMNAJGXq * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9B30, Player_ControllerHelper_PollingHelper_RjStaASqRmuJLBDTRxyVWMNAJGXq_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x02146870, Object *, Player_ControllerHelper_PollingHelper_RjStaASqRmuJLBDTRxyVWMNAJGXq_System_Collections_IEnumerator_get_Current, (Player_ControllerHelper_PollingHelper_RjStaASqRmuJLBDTRxyVWMNAJGXq * __this, MethodInfo * method)); DO_APP_FUNC(0x021468E0, IEnumerator_1_Rewired_ControllerPollingInfo_ *, Player_ControllerHelper_PollingHelper_RjStaASqRmuJLBDTRxyVWMNAJGXq_System_Collections_Generic_IEnumerable_Rewired_ControllerPollingInfo__GetEnumerator, (Player_ControllerHelper_PollingHelper_RjStaASqRmuJLBDTRxyVWMNAJGXq * __this, MethodInfo * method)); DO_APP_FUNC(0x021468E0, IEnumerator *, Player_ControllerHelper_PollingHelper_RjStaASqRmuJLBDTRxyVWMNAJGXq_System_Collections_IEnumerable_GetEnumerator, (Player_ControllerHelper_PollingHelper_RjStaASqRmuJLBDTRxyVWMNAJGXq * __this, MethodInfo * method)); @@ -43686,18 +51471,22 @@ DO_APP_FUNC(0x02146AF0, bool, Player_ControllerHelper_PollingHelper_YfMXjXnwPwdj DO_APP_FUNC(0x02146ED0, void, Player_ControllerHelper_PollingHelper_YfMXjXnwPwdjMQjfLadPrRsFZBbT_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (Player_ControllerHelper_PollingHelper_YfMXjXnwPwdjMQjfLadPrRsFZBbT * __this, MethodInfo * method)); DO_APP_FUNC(0x01EED6A0, ControllerPollingInfo, Player_ControllerHelper_PollingHelper_YfMXjXnwPwdjMQjfLadPrRsFZBbT_System_Collections_Generic_IEnumerator_Rewired_ControllerPollingInfo__get_Current, (Player_ControllerHelper_PollingHelper_YfMXjXnwPwdjMQjfLadPrRsFZBbT * __this, MethodInfo * method)); DO_APP_FUNC(0x02146F30, void, Player_ControllerHelper_PollingHelper_YfMXjXnwPwdjMQjfLadPrRsFZBbT_System_Collections_IEnumerator_Reset, (Player_ControllerHelper_PollingHelper_YfMXjXnwPwdjMQjfLadPrRsFZBbT * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC99E0, Player_ControllerHelper_PollingHelper_YfMXjXnwPwdjMQjfLadPrRsFZBbT_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x02146F80, Object *, Player_ControllerHelper_PollingHelper_YfMXjXnwPwdjMQjfLadPrRsFZBbT_System_Collections_IEnumerator_get_Current, (Player_ControllerHelper_PollingHelper_YfMXjXnwPwdjMQjfLadPrRsFZBbT * __this, MethodInfo * method)); DO_APP_FUNC(0x02146FF0, IEnumerator_1_Rewired_ControllerPollingInfo_ *, Player_ControllerHelper_PollingHelper_YfMXjXnwPwdjMQjfLadPrRsFZBbT_System_Collections_Generic_IEnumerable_Rewired_ControllerPollingInfo__GetEnumerator, (Player_ControllerHelper_PollingHelper_YfMXjXnwPwdjMQjfLadPrRsFZBbT * __this, MethodInfo * method)); DO_APP_FUNC(0x02146FF0, IEnumerator *, Player_ControllerHelper_PollingHelper_YfMXjXnwPwdjMQjfLadPrRsFZBbT_System_Collections_IEnumerable_GetEnumerator, (Player_ControllerHelper_PollingHelper_YfMXjXnwPwdjMQjfLadPrRsFZBbT * __this, MethodInfo * method)); DO_APP_FUNC(0x02147130, void, Player_ControllerHelper_eKXGPDBQsLGpXxzGDyTxKStElrhoA__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Player_ControllerHelper_eKXGPDBQsLGpXxzGDyTxKStElrhoA__ctor, (Player_ControllerHelper_eKXGPDBQsLGpXxzGDyTxKStElrhoA * __this, MethodInfo * method)); DO_APP_FUNC(0x021471E0, void, Player_ControllerHelper_eKXGPDBQsLGpXxzGDyTxKStElrhoA_kcRHImGtkaZjhrMFDTwXypOBemFD, (Player_ControllerHelper_eKXGPDBQsLGpXxzGDyTxKStElrhoA * __this, Exception * param_0000ad87, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8F90, Player_ControllerHelper_eKXGPDBQsLGpXxzGDyTxKStElrhoA_kcRHImGtkaZjhrMFDTwXypOBemFD__MethodInfo); DO_APP_FUNC(0x02147250, void, Player_ControllerHelper_eKXGPDBQsLGpXxzGDyTxKStElrhoA_STIrJxEplGAPpEoIKsgEAGYFGsVVA, (Player_ControllerHelper_eKXGPDBQsLGpXxzGDyTxKStElrhoA * __this, Exception * param_0000ad88, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8FB0, Player_ControllerHelper_eKXGPDBQsLGpXxzGDyTxKStElrhoA_STIrJxEplGAPpEoIKsgEAGYFGsVVA__MethodInfo); DO_APP_FUNC(0x00FDB5B0, void, Player_ControllerHelper_mBCRzDtuLxVSJxUGyBXWGPwECxcd__ctor, (Player_ControllerHelper_mBCRzDtuLxVSJxUGyBXWGPwECxcd * __this, int32_t param_0000ad89, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Player_ControllerHelper_mBCRzDtuLxVSJxUGyBXWGPwECxcd_System_IDisposable_Dispose, (Player_ControllerHelper_mBCRzDtuLxVSJxUGyBXWGPwECxcd * __this, MethodInfo * method)); DO_APP_FUNC(0x021472C0, bool, Player_ControllerHelper_mBCRzDtuLxVSJxUGyBXWGPwECxcd_MoveNext, (Player_ControllerHelper_mBCRzDtuLxVSJxUGyBXWGPwECxcd * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Controller *, Player_ControllerHelper_mBCRzDtuLxVSJxUGyBXWGPwECxcd_System_Collections_Generic_IEnumerator_Rewired_Controller__get_Current, (Player_ControllerHelper_mBCRzDtuLxVSJxUGyBXWGPwECxcd * __this, MethodInfo * method)); DO_APP_FUNC(0x02147690, void, Player_ControllerHelper_mBCRzDtuLxVSJxUGyBXWGPwECxcd_System_Collections_IEnumerator_Reset, (Player_ControllerHelper_mBCRzDtuLxVSJxUGyBXWGPwECxcd * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9A88, Player_ControllerHelper_mBCRzDtuLxVSJxUGyBXWGPwECxcd_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Player_ControllerHelper_mBCRzDtuLxVSJxUGyBXWGPwECxcd_System_Collections_IEnumerator_get_Current, (Player_ControllerHelper_mBCRzDtuLxVSJxUGyBXWGPwECxcd * __this, MethodInfo * method)); DO_APP_FUNC(0x021476E0, IEnumerator_1_Rewired_Controller_ *, Player_ControllerHelper_mBCRzDtuLxVSJxUGyBXWGPwECxcd_System_Collections_Generic_IEnumerable_Rewired_Controller__GetEnumerator, (Player_ControllerHelper_mBCRzDtuLxVSJxUGyBXWGPwECxcd * __this, MethodInfo * method)); DO_APP_FUNC(0x021476E0, IEnumerator *, Player_ControllerHelper_mBCRzDtuLxVSJxUGyBXWGPwECxcd_System_Collections_IEnumerable_GetEnumerator, (Player_ControllerHelper_mBCRzDtuLxVSJxUGyBXWGPwECxcd * __this, MethodInfo * method)); @@ -43803,11 +51592,13 @@ DO_APP_FUNC(0x02150D00, void, ReInput_TmczDnhPjAndGdCYYxEsCEbmjGll, (MethodInfo DO_APP_FUNC(0x02150D90, void, ReInput_LnNflFSKyICOXEMyYfhdMNsFfuQs, (bool param_0000adbe, MethodInfo * method)); DO_APP_FUNC(0x02150EB0, void, ReInput_ThYmOkewhTQeTwaCYizPQhgYxFVS, (MethodInfo * method)); DO_APP_FUNC(0x02150F80, HardwareJoystickMap_InputManager *, ReInput_GetHardwareJoystickMap_InputManager, (BridgedControllerHWInfo * bridgedController, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9618, ReInput_GetHardwareJoystickMap_InputManager__MethodInfo); DO_APP_FUNC(0x02150FF0, HardwareJoystickMap *, ReInput_RXIUVhEawuFfvhffTdflQRHzsDFTA, (Guid param_0000adc0, MethodInfo * method)); DO_APP_FUNC(0x02151070, HardwareJoystickTemplateMap *, ReInput_FVWkfcuGLrIevBobCYlpkzhOAXuN, (Guid param_0000adc1, MethodInfo * method)); DO_APP_FUNC(0x021510F0, IHardwareControllerTemplateMap *, ReInput_qMJZGKiMEenVXdOacQcZWbAGFsne, (Guid param_0000adc2, MethodInfo * method)); DO_APP_FUNC(0x02151170, IList_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap_ *, ReInput_nZqRQgacUbFoDQnbqeUAnOQbLyBq, (Guid param_0000adc3, MethodInfo * method)); DO_APP_FUNC(0x021515D0, int32_t, ReInput_GetNewJoystickId, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9610, ReInput_GetNewJoystickId__MethodInfo); DO_APP_FUNC(0x02151640, void, ReInput_HandleCallbackException, (String * source, Exception * exception, MethodInfo * method)); DO_APP_FUNC(0x02151720, void, ReInput_HandleExternException, (String * source, Exception * exception, MethodInfo * method)); DO_APP_FUNC(0x02151790, void, ReInput_HandleExternalInterfaceException, (String * source, Exception * exception, MethodInfo * method)); @@ -43822,20 +51613,31 @@ DO_APP_FUNC(0x02152ED0, void, ReInput_qZCYhkZxCCocEFLFYzZWdKEFfPrc, (String * pa DO_APP_FUNC(0x02152F40, void, ReInput_ZPTqCMLNYQmnnZiwpwlJkMvcGayfA, (MethodInfo * method)); DO_APP_FUNC(0x02153020, void, ReInput_vClTqNIICpTrNJWASSqoamSpGPEaA, (MethodInfo * method)); DO_APP_FUNC(0x02153060, void, ReInput_CGUzDbLIwqVsMlJgWkkjUbvBBVFfA, (BridgedController * param_0000adcc, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9788, ReInput_CGUzDbLIwqVsMlJgWkkjUbvBBVFfA__MethodInfo); DO_APP_FUNC(0x021532F0, void, ReInput_tMNwYAElJaSIsLDpSyyewgOgZvIy, (ControllerDisconnectedEventArgs * param_0000adcd, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9768, ReInput_tMNwYAElJaSIsLDpSyyewgOgZvIy__MethodInfo); DO_APP_FUNC(0x02153550, void, ReInput_hgIGbwmRcBMjFmlopIOTaJPIRQSH, (ControllerStatusChangedEventArgs * param_0000adce, MethodInfo * method)); DO_APP_FUNC(0x02153600, void, ReInput_WXIpzXeUpdZClPaKXxfYrpPTiMMk, (ControllerStatusChangedEventArgs * param_0000adcf, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9798, ReInput_WXIpzXeUpdZClPaKXxfYrpPTiMMk__MethodInfo); DO_APP_FUNC(0x021536B0, void, ReInput_BBnnUqKPBgGJrUrgUcgGimAowikZ, (ControllerStatusChangedEventArgs * param_0000add0, MethodInfo * method)); DO_APP_FUNC(0x02153760, void, ReInput_nLOtwuCAYdjBDZFbvSKSJyLLwspn, (UpdateControllerInfoEventArgs * param_0000add1, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9770, ReInput_nLOtwuCAYdjBDZFbvSKSJyLLwspn__MethodInfo); DO_APP_FUNC(0x02153890, void, ReInput_PolSnbSBGmyhlhfNuaOpsWqcuIUc, (bool param_0000add2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC95D8, ReInput_PolSnbSBGmyhlhfNuaOpsWqcuIUc__MethodInfo); DO_APP_FUNC(0x02153970, void, ReInput_MlPeYiKybilnWQYocNWhTgQXGcTn, (bool param_0000add3, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC95E0, ReInput_MlPeYiKybilnWQYocNWhTgQXGcTn__MethodInfo); DO_APP_FUNC(0x02153A30, void, ReInput_AllKxXdSGCAggkMSWwEQOYdEjJED, (int32_t param_0000add4, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC95D0, ReInput_AllKxXdSGCAggkMSWwEQOYdEjJED__MethodInfo); DO_APP_FUNC(0x02153B20, void, ReInput_EoOoIGtRUSMOvgpeTDpeavpWirapA, (bool param_0000add5, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC95C8, ReInput_EoOoIGtRUSMOvgpeTDpeavpWirapA__MethodInfo); DO_APP_FUNC(0x02153BE0, void, ReInput_chLrIPaGpOjlJVSVIQnenrWAdyDaA, (bool param_0000add6, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC95B8, ReInput_chLrIPaGpOjlJVSVIQnenrWAdyDaA__MethodInfo); DO_APP_FUNC(0x02153CB0, void, ReInput_dzZHYQnumaceADWcEcaqQSVLYvVl, (MethodInfo * method)); DO_APP_FUNC(0x021540B0, void, ReInput_aLHeOsJFJkinkWHVMHjkeyzEFxHyA, (MethodInfo * method)); DO_APP_FUNC(0x021544A0, void, ReInput_KdIpxOxCkIjvelyzvbwTojNupSkU, (bool param_0000add7, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC97A0, ReInput_KdIpxOxCkIjvelyzvbwTojNupSkU__MethodInfo); DO_APP_FUNC(0x02154560, void, ReInput_qKQgXfCllXMtMFplipAlWyrNhVBWA, (Func_2_Rewired_Data_ConfigVars_Object_ * param_0000add8, UnityTools_KWAChOGmLimSYBqZwRDWzfpjEptmA param_0000add9, Action_1_Rewired_Platforms_Platform_ * param_0000adda, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC95F0, ReInput_qKQgXfCllXMtMFplipAlWyrNhVBWA__MethodInfo); DO_APP_FUNC(0x02155EC0, void, ReInput_CmmToOILiOHgIzAKKQHRaQFZJHGF, (MethodInfo * method)); DO_APP_FUNC(0x02155F70, void, ReInput_TUMkLNucNiOxMwTJNBjpKeiSaeNCA, (MethodInfo * method)); DO_APP_FUNC(0x021563B0, ReInput_ConfigHelper *, ReInput_ConfigHelper_DhClYETVBVWfODSCsukIBRGnvvuC, (MethodInfo * method)); @@ -43909,6 +51711,7 @@ DO_APP_FUNC(0x0215A7A0, void, ReInput_ConfigHelper_set_logLevel, (ReInput_Config DO_APP_FUNC(0x0215A870, ReInput_ControllerHelper *, ReInput_ControllerHelper_DhClYETVBVWfODSCsukIBRGnvvuC, (MethodInfo * method)); DO_APP_FUNC(0x0215A930, void, ReInput_ControllerHelper__ctor, (ReInput_ControllerHelper * __this, MethodInfo * method)); DO_APP_FUNC(0x0215AB60, int32_t, ReInput_ControllerHelper_GetControllerCount, (ReInput_ControllerHelper * __this, ControllerType__Enum controllerType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD5C0, ReInput_ControllerHelper_GetControllerCount__MethodInfo); DO_APP_FUNC(0x0215AC50, int32_t, ReInput_ControllerHelper_get_controllerCount, (ReInput_ControllerHelper * __this, MethodInfo * method)); DO_APP_FUNC(0x0215AD10, IList_1_Rewired_Controller_ *, ReInput_ControllerHelper_get_Controllers, (ReInput_ControllerHelper * __this, MethodInfo * method)); DO_APP_FUNC(0x0215ADC0, Controller *, ReInput_ControllerHelper_GetController, (ReInput_ControllerHelper * __this, ControllerType__Enum controllerType, int32_t controllerId, MethodInfo * method)); @@ -43984,25 +51787,40 @@ DO_APP_FUNC(0x0215F830, ControllerPollingInfo, ReInput_ControllerHelper_PollingH DO_APP_FUNC(0x0215F980, ControllerPollingInfo, ReInput_ControllerHelper_PollingHelper_PollAllControllersForFirstButtonDown, (ReInput_ControllerHelper_PollingHelper * __this, MethodInfo * method)); DO_APP_FUNC(0x0215FAD0, ControllerPollingInfo, ReInput_ControllerHelper_PollingHelper_PollAllControllersForFirstAxis, (ReInput_ControllerHelper_PollingHelper * __this, MethodInfo * method)); DO_APP_FUNC(0x0215FBE0, ControllerPollingInfo, ReInput_ControllerHelper_PollingHelper_PollAllControllersOfTypeForFirstElement, (ReInput_ControllerHelper_PollingHelper * __this, ControllerType__Enum controllerType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD568, ReInput_ControllerHelper_PollingHelper_PollAllControllersOfTypeForFirstElement__MethodInfo); DO_APP_FUNC(0x0215FD80, ControllerPollingInfo, ReInput_ControllerHelper_PollingHelper_PollAllControllersOfTypeForFirstElementDown, (ReInput_ControllerHelper_PollingHelper * __this, ControllerType__Enum controllerType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD558, ReInput_ControllerHelper_PollingHelper_PollAllControllersOfTypeForFirstElementDown__MethodInfo); DO_APP_FUNC(0x0215FF20, ControllerPollingInfo, ReInput_ControllerHelper_PollingHelper_PollAllControllersOfTypeForFirstButton, (ReInput_ControllerHelper_PollingHelper * __this, ControllerType__Enum controllerType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD560, ReInput_ControllerHelper_PollingHelper_PollAllControllersOfTypeForFirstButton__MethodInfo); DO_APP_FUNC(0x021600C0, ControllerPollingInfo, ReInput_ControllerHelper_PollingHelper_PollAllControllersOfTypeForFirstButtonDown, (ReInput_ControllerHelper_PollingHelper * __this, ControllerType__Enum controllerType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD590, ReInput_ControllerHelper_PollingHelper_PollAllControllersOfTypeForFirstButtonDown__MethodInfo); DO_APP_FUNC(0x02160260, ControllerPollingInfo, ReInput_ControllerHelper_PollingHelper_PollAllControllersOfTypeForFirstAxis, (ReInput_ControllerHelper_PollingHelper * __this, ControllerType__Enum controllerType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD588, ReInput_ControllerHelper_PollingHelper_PollAllControllersOfTypeForFirstAxis__MethodInfo); DO_APP_FUNC(0x021603C0, ControllerPollingInfo, ReInput_ControllerHelper_PollingHelper_PollControllerForFirstElement, (ReInput_ControllerHelper_PollingHelper * __this, ControllerType__Enum controllerType, int32_t controllerId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD578, ReInput_ControllerHelper_PollingHelper_PollControllerForFirstElement__MethodInfo); DO_APP_FUNC(0x02160600, ControllerPollingInfo, ReInput_ControllerHelper_PollingHelper_PollControllerForFirstElementDown, (ReInput_ControllerHelper_PollingHelper * __this, ControllerType__Enum controllerType, int32_t controllerId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD580, ReInput_ControllerHelper_PollingHelper_PollControllerForFirstElementDown__MethodInfo); DO_APP_FUNC(0x02160840, ControllerPollingInfo, ReInput_ControllerHelper_PollingHelper_PollControllerForFirstButton, (ReInput_ControllerHelper_PollingHelper * __this, ControllerType__Enum controllerType, int32_t controllerId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD570, ReInput_ControllerHelper_PollingHelper_PollControllerForFirstButton__MethodInfo); DO_APP_FUNC(0x02160A80, ControllerPollingInfo, ReInput_ControllerHelper_PollingHelper_PollControllerForFirstButtonDown, (ReInput_ControllerHelper_PollingHelper * __this, ControllerType__Enum controllerType, int32_t controllerId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD520, ReInput_ControllerHelper_PollingHelper_PollControllerForFirstButtonDown__MethodInfo); DO_APP_FUNC(0x02160CC0, ControllerPollingInfo, ReInput_ControllerHelper_PollingHelper_PollControllerForFirstAxis, (ReInput_ControllerHelper_PollingHelper * __this, ControllerType__Enum controllerType, int32_t controllerId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD510, ReInput_ControllerHelper_PollingHelper_PollControllerForFirstAxis__MethodInfo); DO_APP_FUNC(0x02160EB0, IEnumerable_1_Rewired_ControllerPollingInfo_ *, ReInput_ControllerHelper_PollingHelper_PollAllControllersForAllElements, (ReInput_ControllerHelper_PollingHelper * __this, MethodInfo * method)); DO_APP_FUNC(0x02160F70, IEnumerable_1_Rewired_ControllerPollingInfo_ *, ReInput_ControllerHelper_PollingHelper_PollAllControllersForAllElementsDown, (ReInput_ControllerHelper_PollingHelper * __this, MethodInfo * method)); DO_APP_FUNC(0x02161030, IEnumerable_1_Rewired_ControllerPollingInfo_ *, ReInput_ControllerHelper_PollingHelper_PollAllControllersForAllButtons, (ReInput_ControllerHelper_PollingHelper * __this, MethodInfo * method)); DO_APP_FUNC(0x021610F0, IEnumerable_1_Rewired_ControllerPollingInfo_ *, ReInput_ControllerHelper_PollingHelper_PollAllControllersForAllButtonsDown, (ReInput_ControllerHelper_PollingHelper * __this, MethodInfo * method)); DO_APP_FUNC(0x021611B0, IEnumerable_1_Rewired_ControllerPollingInfo_ *, ReInput_ControllerHelper_PollingHelper_PollAllControllersForAllAxes, (ReInput_ControllerHelper_PollingHelper * __this, MethodInfo * method)); DO_APP_FUNC(0x02161270, IEnumerable_1_Rewired_ControllerPollingInfo_ *, ReInput_ControllerHelper_PollingHelper_PollControllerForAllElements, (ReInput_ControllerHelper_PollingHelper * __this, ControllerType__Enum controllerType, int32_t controllerId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD540, ReInput_ControllerHelper_PollingHelper_PollControllerForAllElements__MethodInfo); DO_APP_FUNC(0x021614C0, IEnumerable_1_Rewired_ControllerPollingInfo_ *, ReInput_ControllerHelper_PollingHelper_PollControllerForAllElementsDown, (ReInput_ControllerHelper_PollingHelper * __this, ControllerType__Enum controllerType, int32_t controllerId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD538, ReInput_ControllerHelper_PollingHelper_PollControllerForAllElementsDown__MethodInfo); DO_APP_FUNC(0x02161710, IEnumerable_1_Rewired_ControllerPollingInfo_ *, ReInput_ControllerHelper_PollingHelper_PollControllerForAllButtons, (ReInput_ControllerHelper_PollingHelper * __this, ControllerType__Enum controllerType, int32_t controllerId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD528, ReInput_ControllerHelper_PollingHelper_PollControllerForAllButtons__MethodInfo); DO_APP_FUNC(0x02161960, IEnumerable_1_Rewired_ControllerPollingInfo_ *, ReInput_ControllerHelper_PollingHelper_PollControllerForAllButtonsDown, (ReInput_ControllerHelper_PollingHelper * __this, ControllerType__Enum controllerType, int32_t controllerId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD530, ReInput_ControllerHelper_PollingHelper_PollControllerForAllButtonsDown__MethodInfo); DO_APP_FUNC(0x02161BB0, IEnumerable_1_Rewired_ControllerPollingInfo_ *, ReInput_ControllerHelper_PollingHelper_PollControllerForAllAxes, (ReInput_ControllerHelper_PollingHelper * __this, ControllerType__Enum controllerType, int32_t controllerId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD4E0, ReInput_ControllerHelper_PollingHelper_PollControllerForAllAxes__MethodInfo); DO_APP_FUNC(0x02161E20, ControllerPollingInfo, ReInput_ControllerHelper_PollingHelper_mAPDbWDiewHXwgFMzMkiErEdorBlc, (ReInput_ControllerHelper_PollingHelper * __this, MethodInfo * method)); DO_APP_FUNC(0x02161F80, ControllerPollingInfo, ReInput_ControllerHelper_PollingHelper_aZLiLjPxuARnWIOaftbtZSRKZRAe, (ReInput_ControllerHelper_PollingHelper * __this, MethodInfo * method)); DO_APP_FUNC(0x021620E0, ControllerPollingInfo, ReInput_ControllerHelper_PollingHelper_OKkBfokCyxEkiqkRxlTkKwfWndUIA, (ReInput_ControllerHelper_PollingHelper * __this, MethodInfo * method)); @@ -44065,6 +51883,7 @@ DO_APP_FUNC(0x02164B00, void, ReInput_ControllerHelper_PollingHelper_HuxNRCXlyvt DO_APP_FUNC(0x02164B60, void, ReInput_ControllerHelper_PollingHelper_HuxNRCXlyvtpvRWcCPDZqgCFcPlcA_XNiNViPabVuZoRQjBwiyIHHxXcbd, (ReInput_ControllerHelper_PollingHelper_HuxNRCXlyvtpvRWcCPDZqgCFcPlcA * __this, MethodInfo * method)); DO_APP_FUNC(0x01EED6A0, ControllerPollingInfo, ReInput_ControllerHelper_PollingHelper_HuxNRCXlyvtpvRWcCPDZqgCFcPlcA_System_Collections_Generic_IEnumerator_Rewired_ControllerPollingInfo__get_Current, (ReInput_ControllerHelper_PollingHelper_HuxNRCXlyvtpvRWcCPDZqgCFcPlcA * __this, MethodInfo * method)); DO_APP_FUNC(0x02164BC0, void, ReInput_ControllerHelper_PollingHelper_HuxNRCXlyvtpvRWcCPDZqgCFcPlcA_System_Collections_IEnumerator_Reset, (ReInput_ControllerHelper_PollingHelper_HuxNRCXlyvtpvRWcCPDZqgCFcPlcA * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD4A0, ReInput_ControllerHelper_PollingHelper_HuxNRCXlyvtpvRWcCPDZqgCFcPlcA_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x02164C10, Object *, ReInput_ControllerHelper_PollingHelper_HuxNRCXlyvtpvRWcCPDZqgCFcPlcA_System_Collections_IEnumerator_get_Current, (ReInput_ControllerHelper_PollingHelper_HuxNRCXlyvtpvRWcCPDZqgCFcPlcA * __this, MethodInfo * method)); DO_APP_FUNC(0x02164C80, IEnumerator_1_Rewired_ControllerPollingInfo_ *, ReInput_ControllerHelper_PollingHelper_HuxNRCXlyvtpvRWcCPDZqgCFcPlcA_System_Collections_Generic_IEnumerable_Rewired_ControllerPollingInfo__GetEnumerator, (ReInput_ControllerHelper_PollingHelper_HuxNRCXlyvtpvRWcCPDZqgCFcPlcA * __this, MethodInfo * method)); DO_APP_FUNC(0x02164C80, IEnumerator *, ReInput_ControllerHelper_PollingHelper_HuxNRCXlyvtpvRWcCPDZqgCFcPlcA_System_Collections_IEnumerable_GetEnumerator, (ReInput_ControllerHelper_PollingHelper_HuxNRCXlyvtpvRWcCPDZqgCFcPlcA * __this, MethodInfo * method)); @@ -44077,6 +51896,7 @@ DO_APP_FUNC(0x02165BE0, void, ReInput_ControllerHelper_PollingHelper_jvMyGBelneo DO_APP_FUNC(0x02165C40, void, ReInput_ControllerHelper_PollingHelper_jvMyGBelneoIGfJBJKgSqXaWUuOV_ZWaFuDgeBVNFReoeaQIYzjYXUWzE, (ReInput_ControllerHelper_PollingHelper_jvMyGBelneoIGfJBJKgSqXaWUuOV * __this, MethodInfo * method)); DO_APP_FUNC(0x01EED6A0, ControllerPollingInfo, ReInput_ControllerHelper_PollingHelper_jvMyGBelneoIGfJBJKgSqXaWUuOV_System_Collections_Generic_IEnumerator_Rewired_ControllerPollingInfo__get_Current, (ReInput_ControllerHelper_PollingHelper_jvMyGBelneoIGfJBJKgSqXaWUuOV * __this, MethodInfo * method)); DO_APP_FUNC(0x02165CA0, void, ReInput_ControllerHelper_PollingHelper_jvMyGBelneoIGfJBJKgSqXaWUuOV_System_Collections_IEnumerator_Reset, (ReInput_ControllerHelper_PollingHelper_jvMyGBelneoIGfJBJKgSqXaWUuOV * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD490, ReInput_ControllerHelper_PollingHelper_jvMyGBelneoIGfJBJKgSqXaWUuOV_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x02165CF0, Object *, ReInput_ControllerHelper_PollingHelper_jvMyGBelneoIGfJBJKgSqXaWUuOV_System_Collections_IEnumerator_get_Current, (ReInput_ControllerHelper_PollingHelper_jvMyGBelneoIGfJBJKgSqXaWUuOV * __this, MethodInfo * method)); DO_APP_FUNC(0x02165D60, IEnumerator_1_Rewired_ControllerPollingInfo_ *, ReInput_ControllerHelper_PollingHelper_jvMyGBelneoIGfJBJKgSqXaWUuOV_System_Collections_Generic_IEnumerable_Rewired_ControllerPollingInfo__GetEnumerator, (ReInput_ControllerHelper_PollingHelper_jvMyGBelneoIGfJBJKgSqXaWUuOV * __this, MethodInfo * method)); DO_APP_FUNC(0x02165D60, IEnumerator *, ReInput_ControllerHelper_PollingHelper_jvMyGBelneoIGfJBJKgSqXaWUuOV_System_Collections_IEnumerable_GetEnumerator, (ReInput_ControllerHelper_PollingHelper_jvMyGBelneoIGfJBJKgSqXaWUuOV * __this, MethodInfo * method)); @@ -44089,6 +51909,7 @@ DO_APP_FUNC(0x02166CC0, void, ReInput_ControllerHelper_PollingHelper_ttzsoFqRNfg DO_APP_FUNC(0x02166D20, void, ReInput_ControllerHelper_PollingHelper_ttzsoFqRNfgzFarfTfPHFWbZBgLuA_ZWaFuDgeBVNFReoeaQIYzjYXUWzE, (ReInput_ControllerHelper_PollingHelper_ttzsoFqRNfgzFarfTfPHFWbZBgLuA * __this, MethodInfo * method)); DO_APP_FUNC(0x01EED6A0, ControllerPollingInfo, ReInput_ControllerHelper_PollingHelper_ttzsoFqRNfgzFarfTfPHFWbZBgLuA_System_Collections_Generic_IEnumerator_Rewired_ControllerPollingInfo__get_Current, (ReInput_ControllerHelper_PollingHelper_ttzsoFqRNfgzFarfTfPHFWbZBgLuA * __this, MethodInfo * method)); DO_APP_FUNC(0x02166D80, void, ReInput_ControllerHelper_PollingHelper_ttzsoFqRNfgzFarfTfPHFWbZBgLuA_System_Collections_IEnumerator_Reset, (ReInput_ControllerHelper_PollingHelper_ttzsoFqRNfgzFarfTfPHFWbZBgLuA * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD488, ReInput_ControllerHelper_PollingHelper_ttzsoFqRNfgzFarfTfPHFWbZBgLuA_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x02166DD0, Object *, ReInput_ControllerHelper_PollingHelper_ttzsoFqRNfgzFarfTfPHFWbZBgLuA_System_Collections_IEnumerator_get_Current, (ReInput_ControllerHelper_PollingHelper_ttzsoFqRNfgzFarfTfPHFWbZBgLuA * __this, MethodInfo * method)); DO_APP_FUNC(0x02166E40, IEnumerator_1_Rewired_ControllerPollingInfo_ *, ReInput_ControllerHelper_PollingHelper_ttzsoFqRNfgzFarfTfPHFWbZBgLuA_System_Collections_Generic_IEnumerable_Rewired_ControllerPollingInfo__GetEnumerator, (ReInput_ControllerHelper_PollingHelper_ttzsoFqRNfgzFarfTfPHFWbZBgLuA * __this, MethodInfo * method)); DO_APP_FUNC(0x02166E40, IEnumerator *, ReInput_ControllerHelper_PollingHelper_ttzsoFqRNfgzFarfTfPHFWbZBgLuA_System_Collections_IEnumerable_GetEnumerator, (ReInput_ControllerHelper_PollingHelper_ttzsoFqRNfgzFarfTfPHFWbZBgLuA * __this, MethodInfo * method)); @@ -44101,6 +51922,7 @@ DO_APP_FUNC(0x02167DA0, void, ReInput_ControllerHelper_PollingHelper_oLezWxnOiej DO_APP_FUNC(0x02167E00, void, ReInput_ControllerHelper_PollingHelper_oLezWxnOiejmOXcDIrfsCxbLUPMk_ZWaFuDgeBVNFReoeaQIYzjYXUWzE, (ReInput_ControllerHelper_PollingHelper_oLezWxnOiejmOXcDIrfsCxbLUPMk * __this, MethodInfo * method)); DO_APP_FUNC(0x01EED6A0, ControllerPollingInfo, ReInput_ControllerHelper_PollingHelper_oLezWxnOiejmOXcDIrfsCxbLUPMk_System_Collections_Generic_IEnumerator_Rewired_ControllerPollingInfo__get_Current, (ReInput_ControllerHelper_PollingHelper_oLezWxnOiejmOXcDIrfsCxbLUPMk * __this, MethodInfo * method)); DO_APP_FUNC(0x02167E60, void, ReInput_ControllerHelper_PollingHelper_oLezWxnOiejmOXcDIrfsCxbLUPMk_System_Collections_IEnumerator_Reset, (ReInput_ControllerHelper_PollingHelper_oLezWxnOiejmOXcDIrfsCxbLUPMk * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD498, ReInput_ControllerHelper_PollingHelper_oLezWxnOiejmOXcDIrfsCxbLUPMk_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x02167EB0, Object *, ReInput_ControllerHelper_PollingHelper_oLezWxnOiejmOXcDIrfsCxbLUPMk_System_Collections_IEnumerator_get_Current, (ReInput_ControllerHelper_PollingHelper_oLezWxnOiejmOXcDIrfsCxbLUPMk * __this, MethodInfo * method)); DO_APP_FUNC(0x02167F20, IEnumerator_1_Rewired_ControllerPollingInfo_ *, ReInput_ControllerHelper_PollingHelper_oLezWxnOiejmOXcDIrfsCxbLUPMk_System_Collections_Generic_IEnumerable_Rewired_ControllerPollingInfo__GetEnumerator, (ReInput_ControllerHelper_PollingHelper_oLezWxnOiejmOXcDIrfsCxbLUPMk * __this, MethodInfo * method)); DO_APP_FUNC(0x02167F20, IEnumerator *, ReInput_ControllerHelper_PollingHelper_oLezWxnOiejmOXcDIrfsCxbLUPMk_System_Collections_IEnumerable_GetEnumerator, (ReInput_ControllerHelper_PollingHelper_oLezWxnOiejmOXcDIrfsCxbLUPMk * __this, MethodInfo * method)); @@ -44113,6 +51935,7 @@ DO_APP_FUNC(0x02168E80, void, ReInput_ControllerHelper_PollingHelper_CvnMDdbKvNR DO_APP_FUNC(0x02168EE0, void, ReInput_ControllerHelper_PollingHelper_CvnMDdbKvNRTrfIrypZqlzsZJWLS_ZWaFuDgeBVNFReoeaQIYzjYXUWzE, (ReInput_ControllerHelper_PollingHelper_CvnMDdbKvNRTrfIrypZqlzsZJWLS * __this, MethodInfo * method)); DO_APP_FUNC(0x01EED6A0, ControllerPollingInfo, ReInput_ControllerHelper_PollingHelper_CvnMDdbKvNRTrfIrypZqlzsZJWLS_System_Collections_Generic_IEnumerator_Rewired_ControllerPollingInfo__get_Current, (ReInput_ControllerHelper_PollingHelper_CvnMDdbKvNRTrfIrypZqlzsZJWLS * __this, MethodInfo * method)); DO_APP_FUNC(0x02168F40, void, ReInput_ControllerHelper_PollingHelper_CvnMDdbKvNRTrfIrypZqlzsZJWLS_System_Collections_IEnumerator_Reset, (ReInput_ControllerHelper_PollingHelper_CvnMDdbKvNRTrfIrypZqlzsZJWLS * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD470, ReInput_ControllerHelper_PollingHelper_CvnMDdbKvNRTrfIrypZqlzsZJWLS_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x02168F90, Object *, ReInput_ControllerHelper_PollingHelper_CvnMDdbKvNRTrfIrypZqlzsZJWLS_System_Collections_IEnumerator_get_Current, (ReInput_ControllerHelper_PollingHelper_CvnMDdbKvNRTrfIrypZqlzsZJWLS * __this, MethodInfo * method)); DO_APP_FUNC(0x02169000, IEnumerator_1_Rewired_ControllerPollingInfo_ *, ReInput_ControllerHelper_PollingHelper_CvnMDdbKvNRTrfIrypZqlzsZJWLS_System_Collections_Generic_IEnumerable_Rewired_ControllerPollingInfo__GetEnumerator, (ReInput_ControllerHelper_PollingHelper_CvnMDdbKvNRTrfIrypZqlzsZJWLS * __this, MethodInfo * method)); DO_APP_FUNC(0x02169000, IEnumerator *, ReInput_ControllerHelper_PollingHelper_CvnMDdbKvNRTrfIrypZqlzsZJWLS_System_Collections_IEnumerable_GetEnumerator, (ReInput_ControllerHelper_PollingHelper_CvnMDdbKvNRTrfIrypZqlzsZJWLS * __this, MethodInfo * method)); @@ -44122,6 +51945,7 @@ DO_APP_FUNC(0x02169210, bool, ReInput_ControllerHelper_PollingHelper_QdyYRDHQERk DO_APP_FUNC(0x02169690, void, ReInput_ControllerHelper_PollingHelper_QdyYRDHQERkKfngnafUNyraFEpqV_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (ReInput_ControllerHelper_PollingHelper_QdyYRDHQERkKfngnafUNyraFEpqV * __this, MethodInfo * method)); DO_APP_FUNC(0x01EED6A0, ControllerPollingInfo, ReInput_ControllerHelper_PollingHelper_QdyYRDHQERkKfngnafUNyraFEpqV_System_Collections_Generic_IEnumerator_Rewired_ControllerPollingInfo__get_Current, (ReInput_ControllerHelper_PollingHelper_QdyYRDHQERkKfngnafUNyraFEpqV * __this, MethodInfo * method)); DO_APP_FUNC(0x021696F0, void, ReInput_ControllerHelper_PollingHelper_QdyYRDHQERkKfngnafUNyraFEpqV_System_Collections_IEnumerator_Reset, (ReInput_ControllerHelper_PollingHelper_QdyYRDHQERkKfngnafUNyraFEpqV * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD480, ReInput_ControllerHelper_PollingHelper_QdyYRDHQERkKfngnafUNyraFEpqV_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x02169740, Object *, ReInput_ControllerHelper_PollingHelper_QdyYRDHQERkKfngnafUNyraFEpqV_System_Collections_IEnumerator_get_Current, (ReInput_ControllerHelper_PollingHelper_QdyYRDHQERkKfngnafUNyraFEpqV * __this, MethodInfo * method)); DO_APP_FUNC(0x021697B0, IEnumerator_1_Rewired_ControllerPollingInfo_ *, ReInput_ControllerHelper_PollingHelper_QdyYRDHQERkKfngnafUNyraFEpqV_System_Collections_Generic_IEnumerable_Rewired_ControllerPollingInfo__GetEnumerator, (ReInput_ControllerHelper_PollingHelper_QdyYRDHQERkKfngnafUNyraFEpqV * __this, MethodInfo * method)); DO_APP_FUNC(0x021697B0, IEnumerator *, ReInput_ControllerHelper_PollingHelper_QdyYRDHQERkKfngnafUNyraFEpqV_System_Collections_IEnumerable_GetEnumerator, (ReInput_ControllerHelper_PollingHelper_QdyYRDHQERkKfngnafUNyraFEpqV * __this, MethodInfo * method)); @@ -44131,6 +51955,7 @@ DO_APP_FUNC(0x02169970, bool, ReInput_ControllerHelper_PollingHelper_ySnvUITNgwr DO_APP_FUNC(0x02169E00, void, ReInput_ControllerHelper_PollingHelper_ySnvUITNgwrYlEvAERasTZuxdVzT_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (ReInput_ControllerHelper_PollingHelper_ySnvUITNgwrYlEvAERasTZuxdVzT * __this, MethodInfo * method)); DO_APP_FUNC(0x01EED6A0, ControllerPollingInfo, ReInput_ControllerHelper_PollingHelper_ySnvUITNgwrYlEvAERasTZuxdVzT_System_Collections_Generic_IEnumerator_Rewired_ControllerPollingInfo__get_Current, (ReInput_ControllerHelper_PollingHelper_ySnvUITNgwrYlEvAERasTZuxdVzT * __this, MethodInfo * method)); DO_APP_FUNC(0x02169E60, void, ReInput_ControllerHelper_PollingHelper_ySnvUITNgwrYlEvAERasTZuxdVzT_System_Collections_IEnumerator_Reset, (ReInput_ControllerHelper_PollingHelper_ySnvUITNgwrYlEvAERasTZuxdVzT * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD478, ReInput_ControllerHelper_PollingHelper_ySnvUITNgwrYlEvAERasTZuxdVzT_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x02169EB0, Object *, ReInput_ControllerHelper_PollingHelper_ySnvUITNgwrYlEvAERasTZuxdVzT_System_Collections_IEnumerator_get_Current, (ReInput_ControllerHelper_PollingHelper_ySnvUITNgwrYlEvAERasTZuxdVzT * __this, MethodInfo * method)); DO_APP_FUNC(0x02169F20, IEnumerator_1_Rewired_ControllerPollingInfo_ *, ReInput_ControllerHelper_PollingHelper_ySnvUITNgwrYlEvAERasTZuxdVzT_System_Collections_Generic_IEnumerable_Rewired_ControllerPollingInfo__GetEnumerator, (ReInput_ControllerHelper_PollingHelper_ySnvUITNgwrYlEvAERasTZuxdVzT * __this, MethodInfo * method)); DO_APP_FUNC(0x02169F20, IEnumerator *, ReInput_ControllerHelper_PollingHelper_ySnvUITNgwrYlEvAERasTZuxdVzT_System_Collections_IEnumerable_GetEnumerator, (ReInput_ControllerHelper_PollingHelper_ySnvUITNgwrYlEvAERasTZuxdVzT * __this, MethodInfo * method)); @@ -44140,6 +51965,7 @@ DO_APP_FUNC(0x0216A0E0, bool, ReInput_ControllerHelper_PollingHelper_jmUsIonfCHN DO_APP_FUNC(0x0216A570, void, ReInput_ControllerHelper_PollingHelper_jmUsIonfCHNlBANFAcEihvNvkSjd_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (ReInput_ControllerHelper_PollingHelper_jmUsIonfCHNlBANFAcEihvNvkSjd * __this, MethodInfo * method)); DO_APP_FUNC(0x01EED6A0, ControllerPollingInfo, ReInput_ControllerHelper_PollingHelper_jmUsIonfCHNlBANFAcEihvNvkSjd_System_Collections_Generic_IEnumerator_Rewired_ControllerPollingInfo__get_Current, (ReInput_ControllerHelper_PollingHelper_jmUsIonfCHNlBANFAcEihvNvkSjd * __this, MethodInfo * method)); DO_APP_FUNC(0x0216A5D0, void, ReInput_ControllerHelper_PollingHelper_jmUsIonfCHNlBANFAcEihvNvkSjd_System_Collections_IEnumerator_Reset, (ReInput_ControllerHelper_PollingHelper_jmUsIonfCHNlBANFAcEihvNvkSjd * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD458, ReInput_ControllerHelper_PollingHelper_jmUsIonfCHNlBANFAcEihvNvkSjd_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x0216A620, Object *, ReInput_ControllerHelper_PollingHelper_jmUsIonfCHNlBANFAcEihvNvkSjd_System_Collections_IEnumerator_get_Current, (ReInput_ControllerHelper_PollingHelper_jmUsIonfCHNlBANFAcEihvNvkSjd * __this, MethodInfo * method)); DO_APP_FUNC(0x0216A690, IEnumerator_1_Rewired_ControllerPollingInfo_ *, ReInput_ControllerHelper_PollingHelper_jmUsIonfCHNlBANFAcEihvNvkSjd_System_Collections_Generic_IEnumerable_Rewired_ControllerPollingInfo__GetEnumerator, (ReInput_ControllerHelper_PollingHelper_jmUsIonfCHNlBANFAcEihvNvkSjd * __this, MethodInfo * method)); DO_APP_FUNC(0x0216A690, IEnumerator *, ReInput_ControllerHelper_PollingHelper_jmUsIonfCHNlBANFAcEihvNvkSjd_System_Collections_IEnumerable_GetEnumerator, (ReInput_ControllerHelper_PollingHelper_jmUsIonfCHNlBANFAcEihvNvkSjd * __this, MethodInfo * method)); @@ -44149,6 +51975,7 @@ DO_APP_FUNC(0x0216A850, bool, ReInput_ControllerHelper_PollingHelper_YVPmAXphpqC DO_APP_FUNC(0x0216ACE0, void, ReInput_ControllerHelper_PollingHelper_YVPmAXphpqCSerLRFUyqkpOKbWZO_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (ReInput_ControllerHelper_PollingHelper_YVPmAXphpqCSerLRFUyqkpOKbWZO * __this, MethodInfo * method)); DO_APP_FUNC(0x01EED6A0, ControllerPollingInfo, ReInput_ControllerHelper_PollingHelper_YVPmAXphpqCSerLRFUyqkpOKbWZO_System_Collections_Generic_IEnumerator_Rewired_ControllerPollingInfo__get_Current, (ReInput_ControllerHelper_PollingHelper_YVPmAXphpqCSerLRFUyqkpOKbWZO * __this, MethodInfo * method)); DO_APP_FUNC(0x0216AD40, void, ReInput_ControllerHelper_PollingHelper_YVPmAXphpqCSerLRFUyqkpOKbWZO_System_Collections_IEnumerator_Reset, (ReInput_ControllerHelper_PollingHelper_YVPmAXphpqCSerLRFUyqkpOKbWZO * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD468, ReInput_ControllerHelper_PollingHelper_YVPmAXphpqCSerLRFUyqkpOKbWZO_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x0216AD90, Object *, ReInput_ControllerHelper_PollingHelper_YVPmAXphpqCSerLRFUyqkpOKbWZO_System_Collections_IEnumerator_get_Current, (ReInput_ControllerHelper_PollingHelper_YVPmAXphpqCSerLRFUyqkpOKbWZO * __this, MethodInfo * method)); DO_APP_FUNC(0x0216AE00, IEnumerator_1_Rewired_ControllerPollingInfo_ *, ReInput_ControllerHelper_PollingHelper_YVPmAXphpqCSerLRFUyqkpOKbWZO_System_Collections_Generic_IEnumerable_Rewired_ControllerPollingInfo__GetEnumerator, (ReInput_ControllerHelper_PollingHelper_YVPmAXphpqCSerLRFUyqkpOKbWZO * __this, MethodInfo * method)); DO_APP_FUNC(0x0216AE00, IEnumerator *, ReInput_ControllerHelper_PollingHelper_YVPmAXphpqCSerLRFUyqkpOKbWZO_System_Collections_IEnumerable_GetEnumerator, (ReInput_ControllerHelper_PollingHelper_YVPmAXphpqCSerLRFUyqkpOKbWZO * __this, MethodInfo * method)); @@ -44158,6 +51985,7 @@ DO_APP_FUNC(0x0216AFC0, bool, ReInput_ControllerHelper_PollingHelper_ayVDrJgXggh DO_APP_FUNC(0x0216B450, void, ReInput_ControllerHelper_PollingHelper_ayVDrJgXgghmJQZGBDyhhDDezjHM_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (ReInput_ControllerHelper_PollingHelper_ayVDrJgXgghmJQZGBDyhhDDezjHM * __this, MethodInfo * method)); DO_APP_FUNC(0x01EED6A0, ControllerPollingInfo, ReInput_ControllerHelper_PollingHelper_ayVDrJgXgghmJQZGBDyhhDDezjHM_System_Collections_Generic_IEnumerator_Rewired_ControllerPollingInfo__get_Current, (ReInput_ControllerHelper_PollingHelper_ayVDrJgXgghmJQZGBDyhhDDezjHM * __this, MethodInfo * method)); DO_APP_FUNC(0x0216B4B0, void, ReInput_ControllerHelper_PollingHelper_ayVDrJgXgghmJQZGBDyhhDDezjHM_System_Collections_IEnumerator_Reset, (ReInput_ControllerHelper_PollingHelper_ayVDrJgXgghmJQZGBDyhhDDezjHM * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD460, ReInput_ControllerHelper_PollingHelper_ayVDrJgXgghmJQZGBDyhhDDezjHM_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x0216B500, Object *, ReInput_ControllerHelper_PollingHelper_ayVDrJgXgghmJQZGBDyhhDDezjHM_System_Collections_IEnumerator_get_Current, (ReInput_ControllerHelper_PollingHelper_ayVDrJgXgghmJQZGBDyhhDDezjHM * __this, MethodInfo * method)); DO_APP_FUNC(0x0216B570, IEnumerator_1_Rewired_ControllerPollingInfo_ *, ReInput_ControllerHelper_PollingHelper_ayVDrJgXgghmJQZGBDyhhDDezjHM_System_Collections_Generic_IEnumerable_Rewired_ControllerPollingInfo__GetEnumerator, (ReInput_ControllerHelper_PollingHelper_ayVDrJgXgghmJQZGBDyhhDDezjHM * __this, MethodInfo * method)); DO_APP_FUNC(0x0216B570, IEnumerator *, ReInput_ControllerHelper_PollingHelper_ayVDrJgXgghmJQZGBDyhhDDezjHM_System_Collections_IEnumerable_GetEnumerator, (ReInput_ControllerHelper_PollingHelper_ayVDrJgXgghmJQZGBDyhhDDezjHM * __this, MethodInfo * method)); @@ -44167,6 +51995,7 @@ DO_APP_FUNC(0x0216B730, bool, ReInput_ControllerHelper_PollingHelper_iGJujzMKACb DO_APP_FUNC(0x0216BBB0, void, ReInput_ControllerHelper_PollingHelper_iGJujzMKACbSgtEQtVONBTdBTeBW_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (ReInput_ControllerHelper_PollingHelper_iGJujzMKACbSgtEQtVONBTdBTeBW * __this, MethodInfo * method)); DO_APP_FUNC(0x01EED6A0, ControllerPollingInfo, ReInput_ControllerHelper_PollingHelper_iGJujzMKACbSgtEQtVONBTdBTeBW_System_Collections_Generic_IEnumerator_Rewired_ControllerPollingInfo__get_Current, (ReInput_ControllerHelper_PollingHelper_iGJujzMKACbSgtEQtVONBTdBTeBW * __this, MethodInfo * method)); DO_APP_FUNC(0x0216BC10, void, ReInput_ControllerHelper_PollingHelper_iGJujzMKACbSgtEQtVONBTdBTeBW_System_Collections_IEnumerator_Reset, (ReInput_ControllerHelper_PollingHelper_iGJujzMKACbSgtEQtVONBTdBTeBW * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD440, ReInput_ControllerHelper_PollingHelper_iGJujzMKACbSgtEQtVONBTdBTeBW_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x0216BC60, Object *, ReInput_ControllerHelper_PollingHelper_iGJujzMKACbSgtEQtVONBTdBTeBW_System_Collections_IEnumerator_get_Current, (ReInput_ControllerHelper_PollingHelper_iGJujzMKACbSgtEQtVONBTdBTeBW * __this, MethodInfo * method)); DO_APP_FUNC(0x0216BCD0, IEnumerator_1_Rewired_ControllerPollingInfo_ *, ReInput_ControllerHelper_PollingHelper_iGJujzMKACbSgtEQtVONBTdBTeBW_System_Collections_Generic_IEnumerable_Rewired_ControllerPollingInfo__GetEnumerator, (ReInput_ControllerHelper_PollingHelper_iGJujzMKACbSgtEQtVONBTdBTeBW * __this, MethodInfo * method)); DO_APP_FUNC(0x0216BCD0, IEnumerator *, ReInput_ControllerHelper_PollingHelper_iGJujzMKACbSgtEQtVONBTdBTeBW_System_Collections_IEnumerable_GetEnumerator, (ReInput_ControllerHelper_PollingHelper_iGJujzMKACbSgtEQtVONBTdBTeBW * __this, MethodInfo * method)); @@ -44176,6 +52005,7 @@ DO_APP_FUNC(0x0216BE90, bool, ReInput_ControllerHelper_PollingHelper_UJfumMeQSaH DO_APP_FUNC(0x0216C320, void, ReInput_ControllerHelper_PollingHelper_UJfumMeQSaHUoaRKrmkrmhhtJMGk_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (ReInput_ControllerHelper_PollingHelper_UJfumMeQSaHUoaRKrmkrmhhtJMGk * __this, MethodInfo * method)); DO_APP_FUNC(0x01EED6A0, ControllerPollingInfo, ReInput_ControllerHelper_PollingHelper_UJfumMeQSaHUoaRKrmkrmhhtJMGk_System_Collections_Generic_IEnumerator_Rewired_ControllerPollingInfo__get_Current, (ReInput_ControllerHelper_PollingHelper_UJfumMeQSaHUoaRKrmkrmhhtJMGk * __this, MethodInfo * method)); DO_APP_FUNC(0x0216C380, void, ReInput_ControllerHelper_PollingHelper_UJfumMeQSaHUoaRKrmkrmhhtJMGk_System_Collections_IEnumerator_Reset, (ReInput_ControllerHelper_PollingHelper_UJfumMeQSaHUoaRKrmkrmhhtJMGk * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD438, ReInput_ControllerHelper_PollingHelper_UJfumMeQSaHUoaRKrmkrmhhtJMGk_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x0216C3D0, Object *, ReInput_ControllerHelper_PollingHelper_UJfumMeQSaHUoaRKrmkrmhhtJMGk_System_Collections_IEnumerator_get_Current, (ReInput_ControllerHelper_PollingHelper_UJfumMeQSaHUoaRKrmkrmhhtJMGk * __this, MethodInfo * method)); DO_APP_FUNC(0x0216C440, IEnumerator_1_Rewired_ControllerPollingInfo_ *, ReInput_ControllerHelper_PollingHelper_UJfumMeQSaHUoaRKrmkrmhhtJMGk_System_Collections_Generic_IEnumerable_Rewired_ControllerPollingInfo__GetEnumerator, (ReInput_ControllerHelper_PollingHelper_UJfumMeQSaHUoaRKrmkrmhhtJMGk * __this, MethodInfo * method)); DO_APP_FUNC(0x0216C440, IEnumerator *, ReInput_ControllerHelper_PollingHelper_UJfumMeQSaHUoaRKrmkrmhhtJMGk_System_Collections_IEnumerable_GetEnumerator, (ReInput_ControllerHelper_PollingHelper_UJfumMeQSaHUoaRKrmkrmhhtJMGk * __this, MethodInfo * method)); @@ -44185,6 +52015,7 @@ DO_APP_FUNC(0x0216C600, bool, ReInput_ControllerHelper_PollingHelper_vXzUuoGCJcy DO_APP_FUNC(0x0216CA90, void, ReInput_ControllerHelper_PollingHelper_vXzUuoGCJcyqJzIoaBXZNPndpSBh_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (ReInput_ControllerHelper_PollingHelper_vXzUuoGCJcyqJzIoaBXZNPndpSBh * __this, MethodInfo * method)); DO_APP_FUNC(0x01EED6A0, ControllerPollingInfo, ReInput_ControllerHelper_PollingHelper_vXzUuoGCJcyqJzIoaBXZNPndpSBh_System_Collections_Generic_IEnumerator_Rewired_ControllerPollingInfo__get_Current, (ReInput_ControllerHelper_PollingHelper_vXzUuoGCJcyqJzIoaBXZNPndpSBh * __this, MethodInfo * method)); DO_APP_FUNC(0x0216CAF0, void, ReInput_ControllerHelper_PollingHelper_vXzUuoGCJcyqJzIoaBXZNPndpSBh_System_Collections_IEnumerator_Reset, (ReInput_ControllerHelper_PollingHelper_vXzUuoGCJcyqJzIoaBXZNPndpSBh * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD450, ReInput_ControllerHelper_PollingHelper_vXzUuoGCJcyqJzIoaBXZNPndpSBh_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x0216CB40, Object *, ReInput_ControllerHelper_PollingHelper_vXzUuoGCJcyqJzIoaBXZNPndpSBh_System_Collections_IEnumerator_get_Current, (ReInput_ControllerHelper_PollingHelper_vXzUuoGCJcyqJzIoaBXZNPndpSBh * __this, MethodInfo * method)); DO_APP_FUNC(0x0216CBB0, IEnumerator_1_Rewired_ControllerPollingInfo_ *, ReInput_ControllerHelper_PollingHelper_vXzUuoGCJcyqJzIoaBXZNPndpSBh_System_Collections_Generic_IEnumerable_Rewired_ControllerPollingInfo__GetEnumerator, (ReInput_ControllerHelper_PollingHelper_vXzUuoGCJcyqJzIoaBXZNPndpSBh * __this, MethodInfo * method)); DO_APP_FUNC(0x0216CBB0, IEnumerator *, ReInput_ControllerHelper_PollingHelper_vXzUuoGCJcyqJzIoaBXZNPndpSBh_System_Collections_IEnumerable_GetEnumerator, (ReInput_ControllerHelper_PollingHelper_vXzUuoGCJcyqJzIoaBXZNPndpSBh * __this, MethodInfo * method)); @@ -44194,6 +52025,7 @@ DO_APP_FUNC(0x0216CD70, bool, ReInput_ControllerHelper_PollingHelper_NBbfBNivBAL DO_APP_FUNC(0x0216D200, void, ReInput_ControllerHelper_PollingHelper_NBbfBNivBALKTzWgfhHVKtmEukzhA_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (ReInput_ControllerHelper_PollingHelper_NBbfBNivBALKTzWgfhHVKtmEukzhA * __this, MethodInfo * method)); DO_APP_FUNC(0x01EED6A0, ControllerPollingInfo, ReInput_ControllerHelper_PollingHelper_NBbfBNivBALKTzWgfhHVKtmEukzhA_System_Collections_Generic_IEnumerator_Rewired_ControllerPollingInfo__get_Current, (ReInput_ControllerHelper_PollingHelper_NBbfBNivBALKTzWgfhHVKtmEukzhA * __this, MethodInfo * method)); DO_APP_FUNC(0x0216D260, void, ReInput_ControllerHelper_PollingHelper_NBbfBNivBALKTzWgfhHVKtmEukzhA_System_Collections_IEnumerator_Reset, (ReInput_ControllerHelper_PollingHelper_NBbfBNivBALKTzWgfhHVKtmEukzhA * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD448, ReInput_ControllerHelper_PollingHelper_NBbfBNivBALKTzWgfhHVKtmEukzhA_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x0216D2B0, Object *, ReInput_ControllerHelper_PollingHelper_NBbfBNivBALKTzWgfhHVKtmEukzhA_System_Collections_IEnumerator_get_Current, (ReInput_ControllerHelper_PollingHelper_NBbfBNivBALKTzWgfhHVKtmEukzhA * __this, MethodInfo * method)); DO_APP_FUNC(0x0216D320, IEnumerator_1_Rewired_ControllerPollingInfo_ *, ReInput_ControllerHelper_PollingHelper_NBbfBNivBALKTzWgfhHVKtmEukzhA_System_Collections_Generic_IEnumerable_Rewired_ControllerPollingInfo__GetEnumerator, (ReInput_ControllerHelper_PollingHelper_NBbfBNivBALKTzWgfhHVKtmEukzhA * __this, MethodInfo * method)); DO_APP_FUNC(0x0216D320, IEnumerator *, ReInput_ControllerHelper_PollingHelper_NBbfBNivBALKTzWgfhHVKtmEukzhA_System_Collections_IEnumerable_GetEnumerator, (ReInput_ControllerHelper_PollingHelper_NBbfBNivBALKTzWgfhHVKtmEukzhA * __this, MethodInfo * method)); @@ -44203,6 +52035,7 @@ DO_APP_FUNC(0x0216D4E0, bool, ReInput_ControllerHelper_PollingHelper_JfymsNTjUoK DO_APP_FUNC(0x0216D970, void, ReInput_ControllerHelper_PollingHelper_JfymsNTjUoKwtcPYIJDibZZPDtiI_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (ReInput_ControllerHelper_PollingHelper_JfymsNTjUoKwtcPYIJDibZZPDtiI * __this, MethodInfo * method)); DO_APP_FUNC(0x01EED6A0, ControllerPollingInfo, ReInput_ControllerHelper_PollingHelper_JfymsNTjUoKwtcPYIJDibZZPDtiI_System_Collections_Generic_IEnumerator_Rewired_ControllerPollingInfo__get_Current, (ReInput_ControllerHelper_PollingHelper_JfymsNTjUoKwtcPYIJDibZZPDtiI * __this, MethodInfo * method)); DO_APP_FUNC(0x0216D9D0, void, ReInput_ControllerHelper_PollingHelper_JfymsNTjUoKwtcPYIJDibZZPDtiI_System_Collections_IEnumerator_Reset, (ReInput_ControllerHelper_PollingHelper_JfymsNTjUoKwtcPYIJDibZZPDtiI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD3F0, ReInput_ControllerHelper_PollingHelper_JfymsNTjUoKwtcPYIJDibZZPDtiI_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x0216DA20, Object *, ReInput_ControllerHelper_PollingHelper_JfymsNTjUoKwtcPYIJDibZZPDtiI_System_Collections_IEnumerator_get_Current, (ReInput_ControllerHelper_PollingHelper_JfymsNTjUoKwtcPYIJDibZZPDtiI * __this, MethodInfo * method)); DO_APP_FUNC(0x0216DA90, IEnumerator_1_Rewired_ControllerPollingInfo_ *, ReInput_ControllerHelper_PollingHelper_JfymsNTjUoKwtcPYIJDibZZPDtiI_System_Collections_Generic_IEnumerable_Rewired_ControllerPollingInfo__GetEnumerator, (ReInput_ControllerHelper_PollingHelper_JfymsNTjUoKwtcPYIJDibZZPDtiI * __this, MethodInfo * method)); DO_APP_FUNC(0x0216DA90, IEnumerator *, ReInput_ControllerHelper_PollingHelper_JfymsNTjUoKwtcPYIJDibZZPDtiI_System_Collections_IEnumerable_GetEnumerator, (ReInput_ControllerHelper_PollingHelper_JfymsNTjUoKwtcPYIJDibZZPDtiI * __this, MethodInfo * method)); @@ -44216,10 +52049,12 @@ DO_APP_FUNC(0x0216E520, bool, ReInput_ControllerHelper_ConflictCheckingHelper_Do DO_APP_FUNC(0x0216E560, bool, ReInput_ControllerHelper_ConflictCheckingHelper_DoesElementAssignmentConflict_1, (ReInput_ControllerHelper_ConflictCheckingHelper * __this, int32_t playerId, ControllerType__Enum controllerType, int32_t controllerId, ControllerMap * controllerMap, ActionElementMap * elementMap, bool skipDisabledMaps, MethodInfo * method)); DO_APP_FUNC(0x0216E5B0, bool, ReInput_ControllerHelper_ConflictCheckingHelper_DoesElementAssignmentConflict_2, (ReInput_ControllerHelper_ConflictCheckingHelper * __this, int32_t playerId, ControllerType__Enum controllerType, int32_t controllerId, ControllerMap * controllerMap, ActionElementMap * elementMap, bool skipDisabledMaps, bool forceCheckAllCategories, MethodInfo * method)); DO_APP_FUNC(0x0216E600, bool, ReInput_ControllerHelper_ConflictCheckingHelper_DoesElementAssignmentConflict_3, (ReInput_ControllerHelper_ConflictCheckingHelper * __this, int32_t playerId, ControllerType__Enum controllerType, int32_t controllerId, ControllerMap * controllerMap, ActionElementMap * elementMap, bool skipDisabledMaps, bool forceCheckAllCategories, bool includeSystemPlayer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD400, ReInput_ControllerHelper_ConflictCheckingHelper_DoesElementAssignmentConflict_3__MethodInfo); DO_APP_FUNC(0x0216EC50, bool, ReInput_ControllerHelper_ConflictCheckingHelper_DoesElementAssignmentConflict_4, (ReInput_ControllerHelper_ConflictCheckingHelper * __this, ElementAssignmentConflictCheck conflictCheck, MethodInfo * method)); DO_APP_FUNC(0x0216ECA0, bool, ReInput_ControllerHelper_ConflictCheckingHelper_DoesElementAssignmentConflict_5, (ReInput_ControllerHelper_ConflictCheckingHelper * __this, ElementAssignmentConflictCheck conflictCheck, bool skipDisabledMaps, MethodInfo * method)); DO_APP_FUNC(0x0216ECF0, bool, ReInput_ControllerHelper_ConflictCheckingHelper_DoesElementAssignmentConflict_6, (ReInput_ControllerHelper_ConflictCheckingHelper * __this, ElementAssignmentConflictCheck conflictCheck, bool skipDisabledMaps, bool forceCheckAllCategories, MethodInfo * method)); DO_APP_FUNC(0x0216ED40, bool, ReInput_ControllerHelper_ConflictCheckingHelper_DoesElementAssignmentConflict_7, (ReInput_ControllerHelper_ConflictCheckingHelper * __this, ElementAssignmentConflictCheck conflictCheck, bool skipDisabledMaps, bool forceCheckAllCategories, bool includeSystemPlayer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD3F8, ReInput_ControllerHelper_ConflictCheckingHelper_DoesElementAssignmentConflict_7__MethodInfo); DO_APP_FUNC(0x0216F4C0, bool, ReInput_ControllerHelper_ConflictCheckingHelper_KnHHDDHlGmPvNTtaPtMvZjWsvrbh, (ReInput_ControllerHelper_ConflictCheckingHelper * __this, int32_t param_0000aea5, int32_t param_0000aea6, JoystickMap * param_0000aea7, ActionElementMap * param_0000aea8, bool param_0000aea9, bool param_0000aeaa, bool param_0000aeab, MethodInfo * method)); DO_APP_FUNC(0x0216F680, bool, ReInput_ControllerHelper_ConflictCheckingHelper_KnHHDDHlGmPvNTtaPtMvZjWsvrbh_1, (ReInput_ControllerHelper_ConflictCheckingHelper * __this, ElementAssignmentConflictCheck param_0000aeac, bool param_0000aead, bool param_0000aeae, bool param_0000aeaf, MethodInfo * method)); DO_APP_FUNC(0x0216F850, bool, ReInput_ControllerHelper_ConflictCheckingHelper_nchzjNRYRNPmuJDXkGnsacgSfxvy, (ReInput_ControllerHelper_ConflictCheckingHelper * __this, int32_t param_0000aeb0, KeyboardMap * param_0000aeb1, ActionElementMap * param_0000aeb2, bool param_0000aeb3, bool param_0000aeb4, bool param_0000aeb5, MethodInfo * method)); @@ -44232,10 +52067,12 @@ DO_APP_FUNC(0x021703D0, IEnumerable_1_Rewired_ElementAssignmentConflictInfo_ *, DO_APP_FUNC(0x02170410, IEnumerable_1_Rewired_ElementAssignmentConflictInfo_ *, ReInput_ControllerHelper_ConflictCheckingHelper_ElementAssignmentConflicts_1, (ReInput_ControllerHelper_ConflictCheckingHelper * __this, int32_t playerId, ControllerType__Enum controllerType, int32_t controllerId, ControllerMap * controllerMap, ActionElementMap * elementMap, bool skipDisabledMaps, MethodInfo * method)); DO_APP_FUNC(0x02170460, IEnumerable_1_Rewired_ElementAssignmentConflictInfo_ *, ReInput_ControllerHelper_ConflictCheckingHelper_ElementAssignmentConflicts_2, (ReInput_ControllerHelper_ConflictCheckingHelper * __this, int32_t playerId, ControllerType__Enum controllerType, int32_t controllerId, ControllerMap * controllerMap, ActionElementMap * elementMap, bool skipDisabledMaps, bool forceCheckAllCategories, MethodInfo * method)); DO_APP_FUNC(0x021704B0, IEnumerable_1_Rewired_ElementAssignmentConflictInfo_ *, ReInput_ControllerHelper_ConflictCheckingHelper_ElementAssignmentConflicts_3, (ReInput_ControllerHelper_ConflictCheckingHelper * __this, int32_t playerId, ControllerType__Enum controllerType, int32_t controllerId, ControllerMap * controllerMap, ActionElementMap * elementMap, bool skipDisabledMaps, bool forceCheckAllCategories, bool includeSystemPlayer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD3B8, ReInput_ControllerHelper_ConflictCheckingHelper_ElementAssignmentConflicts_3__MethodInfo); DO_APP_FUNC(0x02170AE0, IEnumerable_1_Rewired_ElementAssignmentConflictInfo_ *, ReInput_ControllerHelper_ConflictCheckingHelper_ElementAssignmentConflicts_4, (ReInput_ControllerHelper_ConflictCheckingHelper * __this, ElementAssignmentConflictCheck conflictCheck, MethodInfo * method)); DO_APP_FUNC(0x02170B30, IEnumerable_1_Rewired_ElementAssignmentConflictInfo_ *, ReInput_ControllerHelper_ConflictCheckingHelper_ElementAssignmentConflicts_5, (ReInput_ControllerHelper_ConflictCheckingHelper * __this, ElementAssignmentConflictCheck conflictCheck, bool skipDisabledMaps, MethodInfo * method)); DO_APP_FUNC(0x02170B80, IEnumerable_1_Rewired_ElementAssignmentConflictInfo_ *, ReInput_ControllerHelper_ConflictCheckingHelper_ElementAssignmentConflicts_6, (ReInput_ControllerHelper_ConflictCheckingHelper * __this, ElementAssignmentConflictCheck conflictCheck, bool skipDisabledMaps, bool forceCheckAllCategories, MethodInfo * method)); DO_APP_FUNC(0x02170BD0, IEnumerable_1_Rewired_ElementAssignmentConflictInfo_ *, ReInput_ControllerHelper_ConflictCheckingHelper_ElementAssignmentConflicts_7, (ReInput_ControllerHelper_ConflictCheckingHelper * __this, ElementAssignmentConflictCheck conflictCheck, bool skipDisabledMaps, bool forceCheckAllCategories, bool includeSystemPlayer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD3E0, ReInput_ControllerHelper_ConflictCheckingHelper_ElementAssignmentConflicts_7__MethodInfo); DO_APP_FUNC(0x02170EA0, IEnumerable_1_Rewired_ElementAssignmentConflictInfo_ *, ReInput_ControllerHelper_ConflictCheckingHelper_FBptwiWvmMOPDpGwzvRwiwOYibST, (ReInput_ControllerHelper_ConflictCheckingHelper * __this, int32_t param_0000aef3, int32_t param_0000aef4, JoystickMap * param_0000aef5, ActionElementMap * param_0000aef6, bool param_0000aef7, bool param_0000aef8, bool param_0000aef9, MethodInfo * method)); DO_APP_FUNC(0x02171000, IEnumerable_1_Rewired_ElementAssignmentConflictInfo_ *, ReInput_ControllerHelper_ConflictCheckingHelper_FBptwiWvmMOPDpGwzvRwiwOYibST_1, (ReInput_ControllerHelper_ConflictCheckingHelper * __this, ElementAssignmentConflictCheck param_0000aefa, bool param_0000aefb, bool param_0000aefc, bool param_0000aefd, MethodInfo * method)); DO_APP_FUNC(0x021710D0, IEnumerable_1_Rewired_ElementAssignmentConflictInfo_ *, ReInput_ControllerHelper_ConflictCheckingHelper_qfWiDYhZDyaXwenxmvmmKSNQbpXN, (ReInput_ControllerHelper_ConflictCheckingHelper * __this, int32_t param_0000aefe, KeyboardMap * param_0000aeff, ActionElementMap * param_0000af00, bool param_0000af01, bool param_0000af02, bool param_0000af03, MethodInfo * method)); @@ -44248,10 +52085,12 @@ DO_APP_FUNC(0x02171720, int32_t, ReInput_ControllerHelper_ConflictCheckingHelper DO_APP_FUNC(0x02171760, int32_t, ReInput_ControllerHelper_ConflictCheckingHelper_RemoveElementAssignmentConflicts_1, (ReInput_ControllerHelper_ConflictCheckingHelper * __this, int32_t playerId, ControllerType__Enum controllerType, int32_t controllerId, ControllerMap * controllerMap, ActionElementMap * elementMap, bool skipDisabledMaps, MethodInfo * method)); DO_APP_FUNC(0x021717B0, int32_t, ReInput_ControllerHelper_ConflictCheckingHelper_RemoveElementAssignmentConflicts_2, (ReInput_ControllerHelper_ConflictCheckingHelper * __this, int32_t playerId, ControllerType__Enum controllerType, int32_t controllerId, ControllerMap * controllerMap, ActionElementMap * elementMap, bool skipDisabledMaps, bool forceCheckAllCategories, MethodInfo * method)); DO_APP_FUNC(0x02171800, int32_t, ReInput_ControllerHelper_ConflictCheckingHelper_RemoveElementAssignmentConflicts_3, (ReInput_ControllerHelper_ConflictCheckingHelper * __this, int32_t playerId, ControllerType__Enum controllerType, int32_t controllerId, ControllerMap * controllerMap, ActionElementMap * elementMap, bool skipDisabledMaps, bool forceCheckAllCategories, bool includeSystemPlayer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD388, ReInput_ControllerHelper_ConflictCheckingHelper_RemoveElementAssignmentConflicts_3__MethodInfo); DO_APP_FUNC(0x02171AB0, int32_t, ReInput_ControllerHelper_ConflictCheckingHelper_RemoveElementAssignmentConflicts_4, (ReInput_ControllerHelper_ConflictCheckingHelper * __this, ElementAssignmentConflictCheck conflictCheck, MethodInfo * method)); DO_APP_FUNC(0x02171B00, int32_t, ReInput_ControllerHelper_ConflictCheckingHelper_RemoveElementAssignmentConflicts_5, (ReInput_ControllerHelper_ConflictCheckingHelper * __this, ElementAssignmentConflictCheck conflictCheck, bool skipDisabledMaps, MethodInfo * method)); DO_APP_FUNC(0x02171B50, int32_t, ReInput_ControllerHelper_ConflictCheckingHelper_RemoveElementAssignmentConflicts_6, (ReInput_ControllerHelper_ConflictCheckingHelper * __this, ElementAssignmentConflictCheck conflictCheck, bool skipDisabledMaps, bool forceCheckAllCategories, MethodInfo * method)); DO_APP_FUNC(0x02171BA0, int32_t, ReInput_ControllerHelper_ConflictCheckingHelper_RemoveElementAssignmentConflicts_7, (ReInput_ControllerHelper_ConflictCheckingHelper * __this, ElementAssignmentConflictCheck conflictCheck, bool skipDisabledMaps, bool forceCheckAllCategories, bool includeSystemPlayer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD3B0, ReInput_ControllerHelper_ConflictCheckingHelper_RemoveElementAssignmentConflicts_7__MethodInfo); DO_APP_FUNC(0x02171DE0, int32_t, ReInput_ControllerHelper_ConflictCheckingHelper_cerefPJDvPGVnzvQLzCdeEKunSxtA, (ReInput_ControllerHelper_ConflictCheckingHelper * __this, int32_t param_0000af41, int32_t param_0000af42, JoystickMap * param_0000af43, ActionElementMap * param_0000af44, bool param_0000af45, bool param_0000af46, bool param_0000af47, MethodInfo * method)); DO_APP_FUNC(0x02172190, int32_t, ReInput_ControllerHelper_ConflictCheckingHelper_cerefPJDvPGVnzvQLzCdeEKunSxtA_1, (ReInput_ControllerHelper_ConflictCheckingHelper * __this, ElementAssignmentConflictCheck param_0000af48, bool param_0000af49, bool param_0000af4a, bool param_0000af4b, MethodInfo * method)); DO_APP_FUNC(0x02172470, int32_t, ReInput_ControllerHelper_ConflictCheckingHelper_FJcEoiKKdfbkHcEnETzlpKbpnPTMB, (ReInput_ControllerHelper_ConflictCheckingHelper * __this, int32_t param_0000af4c, KeyboardMap * param_0000af4d, ActionElementMap * param_0000af4e, bool param_0000af4f, bool param_0000af50, bool param_0000af51, MethodInfo * method)); @@ -44264,10 +52103,12 @@ DO_APP_FUNC(0x02173760, int32_t, ReInput_ControllerHelper_ConflictCheckingHelper DO_APP_FUNC(0x021737A0, int32_t, ReInput_ControllerHelper_ConflictCheckingHelper_DisableElementAssignmentConflicts_1, (ReInput_ControllerHelper_ConflictCheckingHelper * __this, int32_t playerId, ControllerType__Enum controllerType, int32_t controllerId, ControllerMap * controllerMap, ActionElementMap * elementMap, bool skipDisabledMaps, MethodInfo * method)); DO_APP_FUNC(0x021737F0, int32_t, ReInput_ControllerHelper_ConflictCheckingHelper_DisableElementAssignmentConflicts_2, (ReInput_ControllerHelper_ConflictCheckingHelper * __this, int32_t playerId, ControllerType__Enum controllerType, int32_t controllerId, ControllerMap * controllerMap, ActionElementMap * elementMap, bool skipDisabledMaps, bool forceCheckAllCategories, MethodInfo * method)); DO_APP_FUNC(0x02173840, int32_t, ReInput_ControllerHelper_ConflictCheckingHelper_DisableElementAssignmentConflicts_3, (ReInput_ControllerHelper_ConflictCheckingHelper * __this, int32_t playerId, ControllerType__Enum controllerType, int32_t controllerId, ControllerMap * controllerMap, ActionElementMap * elementMap, bool skipDisabledMaps, bool forceCheckAllCategories, bool includeSystemPlayer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD378, ReInput_ControllerHelper_ConflictCheckingHelper_DisableElementAssignmentConflicts_3__MethodInfo); DO_APP_FUNC(0x02173AF0, int32_t, ReInput_ControllerHelper_ConflictCheckingHelper_DisableElementAssignmentConflicts_4, (ReInput_ControllerHelper_ConflictCheckingHelper * __this, ElementAssignmentConflictCheck conflictCheck, MethodInfo * method)); DO_APP_FUNC(0x02173B40, int32_t, ReInput_ControllerHelper_ConflictCheckingHelper_DisableElementAssignmentConflicts_5, (ReInput_ControllerHelper_ConflictCheckingHelper * __this, ElementAssignmentConflictCheck conflictCheck, bool skipDisabledMaps, MethodInfo * method)); DO_APP_FUNC(0x02173B90, int32_t, ReInput_ControllerHelper_ConflictCheckingHelper_DisableElementAssignmentConflicts_6, (ReInput_ControllerHelper_ConflictCheckingHelper * __this, ElementAssignmentConflictCheck conflictCheck, bool skipDisabledMaps, bool forceCheckAllCategories, MethodInfo * method)); DO_APP_FUNC(0x02173BE0, int32_t, ReInput_ControllerHelper_ConflictCheckingHelper_DisableElementAssignmentConflicts_7, (ReInput_ControllerHelper_ConflictCheckingHelper * __this, ElementAssignmentConflictCheck conflictCheck, bool skipDisabledMaps, bool forceCheckAllCategories, bool includeSystemPlayer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD370, ReInput_ControllerHelper_ConflictCheckingHelper_DisableElementAssignmentConflicts_7__MethodInfo); DO_APP_FUNC(0x02173E20, int32_t, ReInput_ControllerHelper_ConflictCheckingHelper_IvszOSEBtEhZLlcirTDSjhOQobrh, (ReInput_ControllerHelper_ConflictCheckingHelper * __this, int32_t param_0000af8f, int32_t param_0000af90, JoystickMap * param_0000af91, ActionElementMap * param_0000af92, bool param_0000af93, bool param_0000af94, bool param_0000af95, MethodInfo * method)); DO_APP_FUNC(0x021741D0, int32_t, ReInput_ControllerHelper_ConflictCheckingHelper_IvszOSEBtEhZLlcirTDSjhOQobrh_1, (ReInput_ControllerHelper_ConflictCheckingHelper * __this, ElementAssignmentConflictCheck param_0000af96, bool param_0000af97, bool param_0000af98, bool param_0000af99, MethodInfo * method)); DO_APP_FUNC(0x021744B0, int32_t, ReInput_ControllerHelper_ConflictCheckingHelper_JGaLkvhwqjZsmTImDaXiiCFUUtMx, (ReInput_ControllerHelper_ConflictCheckingHelper * __this, int32_t param_0000af9a, KeyboardMap * param_0000af9b, ActionElementMap * param_0000af9c, bool param_0000af9d, bool param_0000af9e, bool param_0000af9f, MethodInfo * method)); @@ -44282,6 +52123,7 @@ DO_APP_FUNC(0x02175870, bool, ReInput_ControllerHelper_ConflictCheckingHelper_ae DO_APP_FUNC(0x02175DA0, void, ReInput_ControllerHelper_ConflictCheckingHelper_aeAaMfzYyQKCPdxXviCxgvRUEhhA_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (ReInput_ControllerHelper_ConflictCheckingHelper_aeAaMfzYyQKCPdxXviCxgvRUEhhA * __this, MethodInfo * method)); DO_APP_FUNC(0x00F95D10, ElementAssignmentConflictInfo, ReInput_ControllerHelper_ConflictCheckingHelper_aeAaMfzYyQKCPdxXviCxgvRUEhhA_System_Collections_Generic_IEnumerator_Rewired_ElementAssignmentConflictInfo__get_Current, (ReInput_ControllerHelper_ConflictCheckingHelper_aeAaMfzYyQKCPdxXviCxgvRUEhhA * __this, MethodInfo * method)); DO_APP_FUNC(0x02175E00, void, ReInput_ControllerHelper_ConflictCheckingHelper_aeAaMfzYyQKCPdxXviCxgvRUEhhA_System_Collections_IEnumerator_Reset, (ReInput_ControllerHelper_ConflictCheckingHelper_aeAaMfzYyQKCPdxXviCxgvRUEhhA * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD380, ReInput_ControllerHelper_ConflictCheckingHelper_aeAaMfzYyQKCPdxXviCxgvRUEhhA_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x02175E50, Object *, ReInput_ControllerHelper_ConflictCheckingHelper_aeAaMfzYyQKCPdxXviCxgvRUEhhA_System_Collections_IEnumerator_get_Current, (ReInput_ControllerHelper_ConflictCheckingHelper_aeAaMfzYyQKCPdxXviCxgvRUEhhA * __this, MethodInfo * method)); DO_APP_FUNC(0x02175EC0, IEnumerator_1_Rewired_ElementAssignmentConflictInfo_ *, ReInput_ControllerHelper_ConflictCheckingHelper_aeAaMfzYyQKCPdxXviCxgvRUEhhA_System_Collections_Generic_IEnumerable_Rewired_ElementAssignmentConflictInfo__GetEnumerator, (ReInput_ControllerHelper_ConflictCheckingHelper_aeAaMfzYyQKCPdxXviCxgvRUEhhA * __this, MethodInfo * method)); DO_APP_FUNC(0x02176090, IEnumerator *, ReInput_ControllerHelper_ConflictCheckingHelper_aeAaMfzYyQKCPdxXviCxgvRUEhhA_System_Collections_IEnumerable_GetEnumerator, (ReInput_ControllerHelper_ConflictCheckingHelper_aeAaMfzYyQKCPdxXviCxgvRUEhhA * __this, MethodInfo * method)); @@ -44291,6 +52133,7 @@ DO_APP_FUNC(0x02176170, bool, ReInput_ControllerHelper_ConflictCheckingHelper_JM DO_APP_FUNC(0x021766C0, void, ReInput_ControllerHelper_ConflictCheckingHelper_JMEIWGSZgBEgYGtmzUJNaLpfAXHD_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (ReInput_ControllerHelper_ConflictCheckingHelper_JMEIWGSZgBEgYGtmzUJNaLpfAXHD * __this, MethodInfo * method)); DO_APP_FUNC(0x00F95D10, ElementAssignmentConflictInfo, ReInput_ControllerHelper_ConflictCheckingHelper_JMEIWGSZgBEgYGtmzUJNaLpfAXHD_System_Collections_Generic_IEnumerator_Rewired_ElementAssignmentConflictInfo__get_Current, (ReInput_ControllerHelper_ConflictCheckingHelper_JMEIWGSZgBEgYGtmzUJNaLpfAXHD * __this, MethodInfo * method)); DO_APP_FUNC(0x02176720, void, ReInput_ControllerHelper_ConflictCheckingHelper_JMEIWGSZgBEgYGtmzUJNaLpfAXHD_System_Collections_IEnumerator_Reset, (ReInput_ControllerHelper_ConflictCheckingHelper_JMEIWGSZgBEgYGtmzUJNaLpfAXHD * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD358, ReInput_ControllerHelper_ConflictCheckingHelper_JMEIWGSZgBEgYGtmzUJNaLpfAXHD_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x02176770, Object *, ReInput_ControllerHelper_ConflictCheckingHelper_JMEIWGSZgBEgYGtmzUJNaLpfAXHD_System_Collections_IEnumerator_get_Current, (ReInput_ControllerHelper_ConflictCheckingHelper_JMEIWGSZgBEgYGtmzUJNaLpfAXHD * __this, MethodInfo * method)); DO_APP_FUNC(0x021767E0, IEnumerator_1_Rewired_ElementAssignmentConflictInfo_ *, ReInput_ControllerHelper_ConflictCheckingHelper_JMEIWGSZgBEgYGtmzUJNaLpfAXHD_System_Collections_Generic_IEnumerable_Rewired_ElementAssignmentConflictInfo__GetEnumerator, (ReInput_ControllerHelper_ConflictCheckingHelper_JMEIWGSZgBEgYGtmzUJNaLpfAXHD * __this, MethodInfo * method)); DO_APP_FUNC(0x021767E0, IEnumerator *, ReInput_ControllerHelper_ConflictCheckingHelper_JMEIWGSZgBEgYGtmzUJNaLpfAXHD_System_Collections_IEnumerable_GetEnumerator, (ReInput_ControllerHelper_ConflictCheckingHelper_JMEIWGSZgBEgYGtmzUJNaLpfAXHD * __this, MethodInfo * method)); @@ -44300,6 +52143,7 @@ DO_APP_FUNC(0x02176A10, bool, ReInput_ControllerHelper_ConflictCheckingHelper_fU DO_APP_FUNC(0x02176F40, void, ReInput_ControllerHelper_ConflictCheckingHelper_fUyujQajGsxxRfDGmNAXabWNUOiU_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (ReInput_ControllerHelper_ConflictCheckingHelper_fUyujQajGsxxRfDGmNAXabWNUOiU * __this, MethodInfo * method)); DO_APP_FUNC(0x00F95D10, ElementAssignmentConflictInfo, ReInput_ControllerHelper_ConflictCheckingHelper_fUyujQajGsxxRfDGmNAXabWNUOiU_System_Collections_Generic_IEnumerator_Rewired_ElementAssignmentConflictInfo__get_Current, (ReInput_ControllerHelper_ConflictCheckingHelper_fUyujQajGsxxRfDGmNAXabWNUOiU * __this, MethodInfo * method)); DO_APP_FUNC(0x02176FA0, void, ReInput_ControllerHelper_ConflictCheckingHelper_fUyujQajGsxxRfDGmNAXabWNUOiU_System_Collections_IEnumerator_Reset, (ReInput_ControllerHelper_ConflictCheckingHelper_fUyujQajGsxxRfDGmNAXabWNUOiU * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD350, ReInput_ControllerHelper_ConflictCheckingHelper_fUyujQajGsxxRfDGmNAXabWNUOiU_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x02176FF0, Object *, ReInput_ControllerHelper_ConflictCheckingHelper_fUyujQajGsxxRfDGmNAXabWNUOiU_System_Collections_IEnumerator_get_Current, (ReInput_ControllerHelper_ConflictCheckingHelper_fUyujQajGsxxRfDGmNAXabWNUOiU * __this, MethodInfo * method)); DO_APP_FUNC(0x02177060, IEnumerator_1_Rewired_ElementAssignmentConflictInfo_ *, ReInput_ControllerHelper_ConflictCheckingHelper_fUyujQajGsxxRfDGmNAXabWNUOiU_System_Collections_Generic_IEnumerable_Rewired_ElementAssignmentConflictInfo__GetEnumerator, (ReInput_ControllerHelper_ConflictCheckingHelper_fUyujQajGsxxRfDGmNAXabWNUOiU * __this, MethodInfo * method)); DO_APP_FUNC(0x02177230, IEnumerator *, ReInput_ControllerHelper_ConflictCheckingHelper_fUyujQajGsxxRfDGmNAXabWNUOiU_System_Collections_IEnumerable_GetEnumerator, (ReInput_ControllerHelper_ConflictCheckingHelper_fUyujQajGsxxRfDGmNAXabWNUOiU * __this, MethodInfo * method)); @@ -44309,6 +52153,7 @@ DO_APP_FUNC(0x02177310, bool, ReInput_ControllerHelper_ConflictCheckingHelper_Sn DO_APP_FUNC(0x02177860, void, ReInput_ControllerHelper_ConflictCheckingHelper_SnIaElzJSFAYrpBOZqUwkgInILcV_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (ReInput_ControllerHelper_ConflictCheckingHelper_SnIaElzJSFAYrpBOZqUwkgInILcV * __this, MethodInfo * method)); DO_APP_FUNC(0x00F95D10, ElementAssignmentConflictInfo, ReInput_ControllerHelper_ConflictCheckingHelper_SnIaElzJSFAYrpBOZqUwkgInILcV_System_Collections_Generic_IEnumerator_Rewired_ElementAssignmentConflictInfo__get_Current, (ReInput_ControllerHelper_ConflictCheckingHelper_SnIaElzJSFAYrpBOZqUwkgInILcV * __this, MethodInfo * method)); DO_APP_FUNC(0x021778C0, void, ReInput_ControllerHelper_ConflictCheckingHelper_SnIaElzJSFAYrpBOZqUwkgInILcV_System_Collections_IEnumerator_Reset, (ReInput_ControllerHelper_ConflictCheckingHelper_SnIaElzJSFAYrpBOZqUwkgInILcV * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD368, ReInput_ControllerHelper_ConflictCheckingHelper_SnIaElzJSFAYrpBOZqUwkgInILcV_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x02177910, Object *, ReInput_ControllerHelper_ConflictCheckingHelper_SnIaElzJSFAYrpBOZqUwkgInILcV_System_Collections_IEnumerator_get_Current, (ReInput_ControllerHelper_ConflictCheckingHelper_SnIaElzJSFAYrpBOZqUwkgInILcV * __this, MethodInfo * method)); DO_APP_FUNC(0x02177980, IEnumerator_1_Rewired_ElementAssignmentConflictInfo_ *, ReInput_ControllerHelper_ConflictCheckingHelper_SnIaElzJSFAYrpBOZqUwkgInILcV_System_Collections_Generic_IEnumerable_Rewired_ElementAssignmentConflictInfo__GetEnumerator, (ReInput_ControllerHelper_ConflictCheckingHelper_SnIaElzJSFAYrpBOZqUwkgInILcV * __this, MethodInfo * method)); DO_APP_FUNC(0x02177980, IEnumerator *, ReInput_ControllerHelper_ConflictCheckingHelper_SnIaElzJSFAYrpBOZqUwkgInILcV_System_Collections_IEnumerable_GetEnumerator, (ReInput_ControllerHelper_ConflictCheckingHelper_SnIaElzJSFAYrpBOZqUwkgInILcV * __this, MethodInfo * method)); @@ -44318,6 +52163,7 @@ DO_APP_FUNC(0x02177BB0, bool, ReInput_ControllerHelper_ConflictCheckingHelper_LE DO_APP_FUNC(0x021780D0, void, ReInput_ControllerHelper_ConflictCheckingHelper_LEMLPESEgHongLprOOvxLRIRcApk_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (ReInput_ControllerHelper_ConflictCheckingHelper_LEMLPESEgHongLprOOvxLRIRcApk * __this, MethodInfo * method)); DO_APP_FUNC(0x00F95D10, ElementAssignmentConflictInfo, ReInput_ControllerHelper_ConflictCheckingHelper_LEMLPESEgHongLprOOvxLRIRcApk_System_Collections_Generic_IEnumerator_Rewired_ElementAssignmentConflictInfo__get_Current, (ReInput_ControllerHelper_ConflictCheckingHelper_LEMLPESEgHongLprOOvxLRIRcApk * __this, MethodInfo * method)); DO_APP_FUNC(0x02178130, void, ReInput_ControllerHelper_ConflictCheckingHelper_LEMLPESEgHongLprOOvxLRIRcApk_System_Collections_IEnumerator_Reset, (ReInput_ControllerHelper_ConflictCheckingHelper_LEMLPESEgHongLprOOvxLRIRcApk * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD360, ReInput_ControllerHelper_ConflictCheckingHelper_LEMLPESEgHongLprOOvxLRIRcApk_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x02178180, Object *, ReInput_ControllerHelper_ConflictCheckingHelper_LEMLPESEgHongLprOOvxLRIRcApk_System_Collections_IEnumerator_get_Current, (ReInput_ControllerHelper_ConflictCheckingHelper_LEMLPESEgHongLprOOvxLRIRcApk * __this, MethodInfo * method)); DO_APP_FUNC(0x021781F0, IEnumerator_1_Rewired_ElementAssignmentConflictInfo_ *, ReInput_ControllerHelper_ConflictCheckingHelper_LEMLPESEgHongLprOOvxLRIRcApk_System_Collections_Generic_IEnumerable_Rewired_ElementAssignmentConflictInfo__GetEnumerator, (ReInput_ControllerHelper_ConflictCheckingHelper_LEMLPESEgHongLprOOvxLRIRcApk * __this, MethodInfo * method)); DO_APP_FUNC(0x021783B0, IEnumerator *, ReInput_ControllerHelper_ConflictCheckingHelper_LEMLPESEgHongLprOOvxLRIRcApk_System_Collections_IEnumerable_GetEnumerator, (ReInput_ControllerHelper_ConflictCheckingHelper_LEMLPESEgHongLprOOvxLRIRcApk * __this, MethodInfo * method)); @@ -44327,6 +52173,7 @@ DO_APP_FUNC(0x02178490, bool, ReInput_ControllerHelper_ConflictCheckingHelper_um DO_APP_FUNC(0x021789E0, void, ReInput_ControllerHelper_ConflictCheckingHelper_umpAAanNIcajMwWQKDZEhogYpHqZA_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (ReInput_ControllerHelper_ConflictCheckingHelper_umpAAanNIcajMwWQKDZEhogYpHqZA * __this, MethodInfo * method)); DO_APP_FUNC(0x00F95D10, ElementAssignmentConflictInfo, ReInput_ControllerHelper_ConflictCheckingHelper_umpAAanNIcajMwWQKDZEhogYpHqZA_System_Collections_Generic_IEnumerator_Rewired_ElementAssignmentConflictInfo__get_Current, (ReInput_ControllerHelper_ConflictCheckingHelper_umpAAanNIcajMwWQKDZEhogYpHqZA * __this, MethodInfo * method)); DO_APP_FUNC(0x02178A40, void, ReInput_ControllerHelper_ConflictCheckingHelper_umpAAanNIcajMwWQKDZEhogYpHqZA_System_Collections_IEnumerator_Reset, (ReInput_ControllerHelper_ConflictCheckingHelper_umpAAanNIcajMwWQKDZEhogYpHqZA * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD338, ReInput_ControllerHelper_ConflictCheckingHelper_umpAAanNIcajMwWQKDZEhogYpHqZA_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x02178A90, Object *, ReInput_ControllerHelper_ConflictCheckingHelper_umpAAanNIcajMwWQKDZEhogYpHqZA_System_Collections_IEnumerator_get_Current, (ReInput_ControllerHelper_ConflictCheckingHelper_umpAAanNIcajMwWQKDZEhogYpHqZA * __this, MethodInfo * method)); DO_APP_FUNC(0x02178B00, IEnumerator_1_Rewired_ElementAssignmentConflictInfo_ *, ReInput_ControllerHelper_ConflictCheckingHelper_umpAAanNIcajMwWQKDZEhogYpHqZA_System_Collections_Generic_IEnumerable_Rewired_ElementAssignmentConflictInfo__GetEnumerator, (ReInput_ControllerHelper_ConflictCheckingHelper_umpAAanNIcajMwWQKDZEhogYpHqZA * __this, MethodInfo * method)); DO_APP_FUNC(0x02178B00, IEnumerator *, ReInput_ControllerHelper_ConflictCheckingHelper_umpAAanNIcajMwWQKDZEhogYpHqZA_System_Collections_IEnumerable_GetEnumerator, (ReInput_ControllerHelper_ConflictCheckingHelper_umpAAanNIcajMwWQKDZEhogYpHqZA * __this, MethodInfo * method)); @@ -44336,6 +52183,7 @@ DO_APP_FUNC(0x02178D30, bool, ReInput_ControllerHelper_ConflictCheckingHelper_re DO_APP_FUNC(0x02179250, void, ReInput_ControllerHelper_ConflictCheckingHelper_repvtcWjTRfJUghgRIoeiCtcbjNHc_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (ReInput_ControllerHelper_ConflictCheckingHelper_repvtcWjTRfJUghgRIoeiCtcbjNHc * __this, MethodInfo * method)); DO_APP_FUNC(0x00F95D10, ElementAssignmentConflictInfo, ReInput_ControllerHelper_ConflictCheckingHelper_repvtcWjTRfJUghgRIoeiCtcbjNHc_System_Collections_Generic_IEnumerator_Rewired_ElementAssignmentConflictInfo__get_Current, (ReInput_ControllerHelper_ConflictCheckingHelper_repvtcWjTRfJUghgRIoeiCtcbjNHc * __this, MethodInfo * method)); DO_APP_FUNC(0x021792B0, void, ReInput_ControllerHelper_ConflictCheckingHelper_repvtcWjTRfJUghgRIoeiCtcbjNHc_System_Collections_IEnumerator_Reset, (ReInput_ControllerHelper_ConflictCheckingHelper_repvtcWjTRfJUghgRIoeiCtcbjNHc * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD348, ReInput_ControllerHelper_ConflictCheckingHelper_repvtcWjTRfJUghgRIoeiCtcbjNHc_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x02179300, Object *, ReInput_ControllerHelper_ConflictCheckingHelper_repvtcWjTRfJUghgRIoeiCtcbjNHc_System_Collections_IEnumerator_get_Current, (ReInput_ControllerHelper_ConflictCheckingHelper_repvtcWjTRfJUghgRIoeiCtcbjNHc * __this, MethodInfo * method)); DO_APP_FUNC(0x02179370, IEnumerator_1_Rewired_ElementAssignmentConflictInfo_ *, ReInput_ControllerHelper_ConflictCheckingHelper_repvtcWjTRfJUghgRIoeiCtcbjNHc_System_Collections_Generic_IEnumerable_Rewired_ElementAssignmentConflictInfo__GetEnumerator, (ReInput_ControllerHelper_ConflictCheckingHelper_repvtcWjTRfJUghgRIoeiCtcbjNHc * __this, MethodInfo * method)); DO_APP_FUNC(0x02179530, IEnumerator *, ReInput_ControllerHelper_ConflictCheckingHelper_repvtcWjTRfJUghgRIoeiCtcbjNHc_System_Collections_IEnumerable_GetEnumerator, (ReInput_ControllerHelper_ConflictCheckingHelper_repvtcWjTRfJUghgRIoeiCtcbjNHc * __this, MethodInfo * method)); @@ -44345,6 +52193,7 @@ DO_APP_FUNC(0x02179610, bool, ReInput_ControllerHelper_ConflictCheckingHelper_UR DO_APP_FUNC(0x02179B60, void, ReInput_ControllerHelper_ConflictCheckingHelper_URXEshkrtvDtJMtkPfPkEHaGZueZ_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (ReInput_ControllerHelper_ConflictCheckingHelper_URXEshkrtvDtJMtkPfPkEHaGZueZ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F95D10, ElementAssignmentConflictInfo, ReInput_ControllerHelper_ConflictCheckingHelper_URXEshkrtvDtJMtkPfPkEHaGZueZ_System_Collections_Generic_IEnumerator_Rewired_ElementAssignmentConflictInfo__get_Current, (ReInput_ControllerHelper_ConflictCheckingHelper_URXEshkrtvDtJMtkPfPkEHaGZueZ * __this, MethodInfo * method)); DO_APP_FUNC(0x02179BC0, void, ReInput_ControllerHelper_ConflictCheckingHelper_URXEshkrtvDtJMtkPfPkEHaGZueZ_System_Collections_IEnumerator_Reset, (ReInput_ControllerHelper_ConflictCheckingHelper_URXEshkrtvDtJMtkPfPkEHaGZueZ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD340, ReInput_ControllerHelper_ConflictCheckingHelper_URXEshkrtvDtJMtkPfPkEHaGZueZ_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x02179C10, Object *, ReInput_ControllerHelper_ConflictCheckingHelper_URXEshkrtvDtJMtkPfPkEHaGZueZ_System_Collections_IEnumerator_get_Current, (ReInput_ControllerHelper_ConflictCheckingHelper_URXEshkrtvDtJMtkPfPkEHaGZueZ * __this, MethodInfo * method)); DO_APP_FUNC(0x02179C80, IEnumerator_1_Rewired_ElementAssignmentConflictInfo_ *, ReInput_ControllerHelper_ConflictCheckingHelper_URXEshkrtvDtJMtkPfPkEHaGZueZ_System_Collections_Generic_IEnumerable_Rewired_ElementAssignmentConflictInfo__GetEnumerator, (ReInput_ControllerHelper_ConflictCheckingHelper_URXEshkrtvDtJMtkPfPkEHaGZueZ * __this, MethodInfo * method)); DO_APP_FUNC(0x02179C80, IEnumerator *, ReInput_ControllerHelper_ConflictCheckingHelper_URXEshkrtvDtJMtkPfPkEHaGZueZ_System_Collections_IEnumerable_GetEnumerator, (ReInput_ControllerHelper_ConflictCheckingHelper_URXEshkrtvDtJMtkPfPkEHaGZueZ * __this, MethodInfo * method)); @@ -44367,8 +52216,11 @@ DO_APP_FUNC(0x0217AC80, IEnumerable_1_Rewired_InputCategory_ *, ReInput_MappingH DO_APP_FUNC(0x0217ADD0, IEnumerable_1_Rewired_InputCategory_ *, ReInput_MappingHelper_UserAssignableActionCategoriesWithTag, (ReInput_MappingHelper * __this, String * tag, MethodInfo * method)); DO_APP_FUNC(0x0217AF90, bool, ReInput_MappingHelper_IsActionCategoryUserAssignable, (ReInput_MappingHelper * __this, int32_t mapCategoryId, MethodInfo * method)); DO_APP_FUNC(0x0217B080, InputLayout *, ReInput_MappingHelper_GetLayout, (ReInput_MappingHelper * __this, ControllerType__Enum controllerType, int32_t layoutId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD318, ReInput_MappingHelper_GetLayout__MethodInfo); DO_APP_FUNC(0x0217B270, InputLayout *, ReInput_MappingHelper_GetLayout_1, (ReInput_MappingHelper * __this, ControllerType__Enum controllerType, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD310, ReInput_MappingHelper_GetLayout_1__MethodInfo); DO_APP_FUNC(0x0217B460, int32_t, ReInput_MappingHelper_GetLayoutId, (ReInput_MappingHelper * __this, ControllerType__Enum controllerType, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD308, ReInput_MappingHelper_GetLayoutId__MethodInfo); DO_APP_FUNC(0x0217B650, InputLayout *, ReInput_MappingHelper_GetJoystickLayout, (ReInput_MappingHelper * __this, int32_t layoutId, MethodInfo * method)); DO_APP_FUNC(0x0217B6F0, InputLayout *, ReInput_MappingHelper_GetJoystickLayout_1, (ReInput_MappingHelper * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x0217B790, int32_t, ReInput_MappingHelper_GetJoystickLayoutId, (ReInput_MappingHelper * __this, String * name, MethodInfo * method)); @@ -44382,6 +52234,7 @@ DO_APP_FUNC(0x0217BBF0, InputLayout *, ReInput_MappingHelper_GetCustomController DO_APP_FUNC(0x0217BC90, InputLayout *, ReInput_MappingHelper_GetCustomControllerLayout_1, (ReInput_MappingHelper * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x0217BD30, int32_t, ReInput_MappingHelper_GetCustomControllerLayoutId, (ReInput_MappingHelper * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x0217BDD0, IList_1_Rewired_InputLayout_ *, ReInput_MappingHelper_MapLayouts, (ReInput_MappingHelper * __this, ControllerType__Enum controllerType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD2F0, ReInput_MappingHelper_MapLayouts__MethodInfo); DO_APP_FUNC(0x0217C100, IList_1_Rewired_InputLayout_ *, ReInput_MappingHelper_get_JoystickLayouts, (ReInput_MappingHelper * __this, MethodInfo * method)); DO_APP_FUNC(0x0217C1B0, IList_1_Rewired_InputLayout_ *, ReInput_MappingHelper_get_KeyboardLayouts, (ReInput_MappingHelper * __this, MethodInfo * method)); DO_APP_FUNC(0x0217C260, IList_1_Rewired_InputLayout_ *, ReInput_MappingHelper_get_MouseLayouts, (ReInput_MappingHelper * __this, MethodInfo * method)); @@ -44412,9 +52265,11 @@ DO_APP_FUNC(0x0217D730, InputBehavior *, ReInput_MappingHelper_YJJfZUbDrSkTkGTpJ DO_APP_FUNC(0x0217D820, ControllerMap *, ReInput_MappingHelper_GetControllerMap, (ReInput_MappingHelper * __this, int32_t id, MethodInfo * method)); DO_APP_FUNC(0x0217D950, ActionElementMap *, ReInput_MappingHelper_GetActionElementMap, (ReInput_MappingHelper * __this, int32_t id, MethodInfo * method)); DO_APP_FUNC(0x0217DCA0, ControllerMap *, ReInput_MappingHelper_GetControllerMapInstance, (ReInput_MappingHelper * __this, Controller * controller, int32_t mapCategoryId, int32_t layoutId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD2D0, ReInput_MappingHelper_GetControllerMapInstance__MethodInfo); DO_APP_FUNC(0x0217DE70, ControllerMap *, ReInput_MappingHelper_GetControllerMapInstance_1, (ReInput_MappingHelper * __this, Controller * controller, String * mapCategoryName, String * layoutName, MethodInfo * method)); DO_APP_FUNC(0x0217DF40, ControllerMap *, ReInput_MappingHelper_GetControllerMapInstance_2, (ReInput_MappingHelper * __this, ControllerIdentifier controllerIdentifier, String * mapCategoryName, String * layoutName, MethodInfo * method)); DO_APP_FUNC(0x0217E020, ControllerMap *, ReInput_MappingHelper_GetControllerMapInstance_3, (ReInput_MappingHelper * __this, ControllerIdentifier controllerIdentifier, int32_t mapCategoryId, int32_t layoutId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD2C8, ReInput_MappingHelper_GetControllerMapInstance_3__MethodInfo); DO_APP_FUNC(0x0217E220, JoystickMap *, ReInput_MappingHelper_GetJoystickMapInstance, (ReInput_MappingHelper * __this, Joystick * joystick, int32_t mapCategoryId, int32_t layoutId, MethodInfo * method)); DO_APP_FUNC(0x0217E360, JoystickMap *, ReInput_MappingHelper_GetJoystickMapInstance_1, (ReInput_MappingHelper * __this, Joystick * joystick, String * mapCategoryName, String * layoutName, MethodInfo * method)); DO_APP_FUNC(0x0217E4A0, JoystickMap *, ReInput_MappingHelper_GetJoystickMapInstance_2, (ReInput_MappingHelper * __this, Guid joystickTypeGuid, int32_t mapCategoryId, int32_t layoutId, MethodInfo * method)); @@ -44432,6 +52287,7 @@ DO_APP_FUNC(0x0217F880, CustomControllerMap *, ReInput_MappingHelper_GetCustomCo DO_APP_FUNC(0x0217F9E0, ControllerMap *, ReInput_MappingHelper_GetControllerMapInstanceSavedOrDefault, (ReInput_MappingHelper * __this, int32_t playerId, Controller * controller, int32_t mapCategoryId, int32_t layoutId, MethodInfo * method)); DO_APP_FUNC(0x0217FBF0, ControllerMap *, ReInput_MappingHelper_GetControllerMapInstanceSavedOrDefault_1, (ReInput_MappingHelper * __this, int32_t playerId, Controller * controller, String * mapCategoryName, String * layoutName, MethodInfo * method)); DO_APP_FUNC(0x0217FCC0, ControllerMap *, ReInput_MappingHelper_GetControllerMapInstanceSavedOrDefault_2, (ReInput_MappingHelper * __this, int32_t playerId, ControllerIdentifier controllerIdentifier, int32_t mapCategoryId, int32_t layoutId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD2C0, ReInput_MappingHelper_GetControllerMapInstanceSavedOrDefault_2__MethodInfo); DO_APP_FUNC(0x0217FE70, ControllerMap *, ReInput_MappingHelper_GetControllerMapInstanceSavedOrDefault_3, (ReInput_MappingHelper * __this, int32_t playerId, ControllerIdentifier controllerIdentifier, String * mapCategoryName, String * layoutName, MethodInfo * method)); DO_APP_FUNC(0x021800B0, JoystickMap *, ReInput_MappingHelper_GetJoystickMapInstanceSavedOrDefault, (ReInput_MappingHelper * __this, int32_t playerId, Joystick * joystick, int32_t mapCategoryId, int32_t layoutId, MethodInfo * method)); DO_APP_FUNC(0x02180180, JoystickMap *, ReInput_MappingHelper_GetJoystickMapInstanceSavedOrDefault_1, (ReInput_MappingHelper * __this, int32_t playerId, Joystick * joystick, String * mapCategoryName, String * layoutName, MethodInfo * method)); @@ -44514,23 +52370,39 @@ DO_APP_FUNC(0x01F06280, void, ReInput_eXmRegBcghEOBdHNIAjtlBfyfbuD_WXQFnkprAsPZw DO_APP_FUNC(0x01F06300, void, ReInput_eXmRegBcghEOBdHNIAjtlBfyfbuD_qHLAYlWWqjAdFdkeliNOLSREQCHk__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ReInput_eXmRegBcghEOBdHNIAjtlBfyfbuD_qHLAYlWWqjAdFdkeliNOLSREQCHk__ctor, (ReInput_eXmRegBcghEOBdHNIAjtlBfyfbuD_qHLAYlWWqjAdFdkeliNOLSREQCHk * __this, MethodInfo * method)); DO_APP_FUNC(0x01F063B0, bool, ReInput_eXmRegBcghEOBdHNIAjtlBfyfbuD_qHLAYlWWqjAdFdkeliNOLSREQCHk_LspcxygRxiDPYtFrBZurFRQkOUui, (ReInput_eXmRegBcghEOBdHNIAjtlBfyfbuD_qHLAYlWWqjAdFdkeliNOLSREQCHk * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF380, ReInput_eXmRegBcghEOBdHNIAjtlBfyfbuD_qHLAYlWWqjAdFdkeliNOLSREQCHk_LspcxygRxiDPYtFrBZurFRQkOUui__MethodInfo); DO_APP_FUNC(0x01F06400, bool, ReInput_eXmRegBcghEOBdHNIAjtlBfyfbuD_qHLAYlWWqjAdFdkeliNOLSREQCHk_vKKjBIgrBaAmsofJwaKTTxpiamzBA, (ReInput_eXmRegBcghEOBdHNIAjtlBfyfbuD_qHLAYlWWqjAdFdkeliNOLSREQCHk * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF320, ReInput_eXmRegBcghEOBdHNIAjtlBfyfbuD_qHLAYlWWqjAdFdkeliNOLSREQCHk_vKKjBIgrBaAmsofJwaKTTxpiamzBA__MethodInfo); DO_APP_FUNC(0x01F06450, int32_t, ReInput_eXmRegBcghEOBdHNIAjtlBfyfbuD_qHLAYlWWqjAdFdkeliNOLSREQCHk_VLvDzhFJwRTqwbVoQjRcNxoAjkOI, (ReInput_eXmRegBcghEOBdHNIAjtlBfyfbuD_qHLAYlWWqjAdFdkeliNOLSREQCHk * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF388, ReInput_eXmRegBcghEOBdHNIAjtlBfyfbuD_qHLAYlWWqjAdFdkeliNOLSREQCHk_VLvDzhFJwRTqwbVoQjRcNxoAjkOI__MethodInfo); DO_APP_FUNC(0x01F064A0, float, ReInput_eXmRegBcghEOBdHNIAjtlBfyfbuD_qHLAYlWWqjAdFdkeliNOLSREQCHk_qhZcMCdjodPkefwKhoZTUpagzPNjb, (ReInput_eXmRegBcghEOBdHNIAjtlBfyfbuD_qHLAYlWWqjAdFdkeliNOLSREQCHk * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF330, ReInput_eXmRegBcghEOBdHNIAjtlBfyfbuD_qHLAYlWWqjAdFdkeliNOLSREQCHk_qhZcMCdjodPkefwKhoZTUpagzPNjb__MethodInfo); DO_APP_FUNC(0x01F064F0, bool, ReInput_eXmRegBcghEOBdHNIAjtlBfyfbuD_qHLAYlWWqjAdFdkeliNOLSREQCHk_qwBolSarNBQWlXQSMJjklDTWbhHHA, (ReInput_eXmRegBcghEOBdHNIAjtlBfyfbuD_qHLAYlWWqjAdFdkeliNOLSREQCHk * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF338, ReInput_eXmRegBcghEOBdHNIAjtlBfyfbuD_qHLAYlWWqjAdFdkeliNOLSREQCHk_qwBolSarNBQWlXQSMJjklDTWbhHHA__MethodInfo); DO_APP_FUNC(0x01F06580, String *, ReInput_eXmRegBcghEOBdHNIAjtlBfyfbuD_qHLAYlWWqjAdFdkeliNOLSREQCHk_HjFqhOLqsPeGyOmWZxilnOCxBUZCA, (ReInput_eXmRegBcghEOBdHNIAjtlBfyfbuD_qHLAYlWWqjAdFdkeliNOLSREQCHk * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF398, ReInput_eXmRegBcghEOBdHNIAjtlBfyfbuD_qHLAYlWWqjAdFdkeliNOLSREQCHk_HjFqhOLqsPeGyOmWZxilnOCxBUZCA__MethodInfo); DO_APP_FUNC(0x01F06600, void, ReInput_AhyVIyyiNXLwDdjpPfJFTQbpnrkv__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ReInput_AhyVIyyiNXLwDdjpPfJFTQbpnrkv__ctor, (ReInput_AhyVIyyiNXLwDdjpPfJFTQbpnrkv * __this, MethodInfo * method)); DO_APP_FUNC(0x01F066B0, void, ReInput_AhyVIyyiNXLwDdjpPfJFTQbpnrkv_xknqTvbvomoXnWWtmkFLVzfpbyaJ, (ReInput_AhyVIyyiNXLwDdjpPfJFTQbpnrkv * __this, Exception * param_0000b084, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9A00, ReInput_AhyVIyyiNXLwDdjpPfJFTQbpnrkv_xknqTvbvomoXnWWtmkFLVzfpbyaJ__MethodInfo); DO_APP_FUNC(0x01F06720, void, ReInput_AhyVIyyiNXLwDdjpPfJFTQbpnrkv_hfWOQKpyfoDYaaMBQrmejQSJtyNs, (ReInput_AhyVIyyiNXLwDdjpPfJFTQbpnrkv * __this, Exception * param_0000b085, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9A30, ReInput_AhyVIyyiNXLwDdjpPfJFTQbpnrkv_hfWOQKpyfoDYaaMBQrmejQSJtyNs__MethodInfo); DO_APP_FUNC(0x01F06790, void, ReInput_AhyVIyyiNXLwDdjpPfJFTQbpnrkv_nlskfEECLOwdPWJLOaAjDoibgtVj, (ReInput_AhyVIyyiNXLwDdjpPfJFTQbpnrkv * __this, Exception * param_0000b086, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9A08, ReInput_AhyVIyyiNXLwDdjpPfJFTQbpnrkv_nlskfEECLOwdPWJLOaAjDoibgtVj__MethodInfo); DO_APP_FUNC(0x01F06800, void, ReInput_AhyVIyyiNXLwDdjpPfJFTQbpnrkv_kvWnfrnpwXcmhzDjzBMmNLBTyOlR, (ReInput_AhyVIyyiNXLwDdjpPfJFTQbpnrkv * __this, Exception * param_0000b087, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC99F0, ReInput_AhyVIyyiNXLwDdjpPfJFTQbpnrkv_kvWnfrnpwXcmhzDjzBMmNLBTyOlR__MethodInfo); DO_APP_FUNC(0x01F06870, void, ReInput_AhyVIyyiNXLwDdjpPfJFTQbpnrkv_EGEOGzTpRmdgAntaTqWACDIdFqAz, (ReInput_AhyVIyyiNXLwDdjpPfJFTQbpnrkv * __this, Exception * param_0000b088, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9A60, ReInput_AhyVIyyiNXLwDdjpPfJFTQbpnrkv_EGEOGzTpRmdgAntaTqWACDIdFqAz__MethodInfo); DO_APP_FUNC(0x01F068E0, void, ReInput_AhyVIyyiNXLwDdjpPfJFTQbpnrkv_SmebpmmxHgMRvdTVDkLhaErFgwRS, (ReInput_AhyVIyyiNXLwDdjpPfJFTQbpnrkv * __this, Exception * param_0000b089, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9A10, ReInput_AhyVIyyiNXLwDdjpPfJFTQbpnrkv_SmebpmmxHgMRvdTVDkLhaErFgwRS__MethodInfo); DO_APP_FUNC(0x01F06950, void, ReInput_AhyVIyyiNXLwDdjpPfJFTQbpnrkv_cuOLVXSVdIEgZpXJftjmatrgGVaK, (ReInput_AhyVIyyiNXLwDdjpPfJFTQbpnrkv * __this, Exception * param_0000b08a, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9A40, ReInput_AhyVIyyiNXLwDdjpPfJFTQbpnrkv_cuOLVXSVdIEgZpXJftjmatrgGVaK__MethodInfo); DO_APP_FUNC(0x01F069C0, void, ReInput_AhyVIyyiNXLwDdjpPfJFTQbpnrkv_JLwzRuOMwQLdeOnNCqpxWhvCpTzO, (ReInput_AhyVIyyiNXLwDdjpPfJFTQbpnrkv * __this, Exception * param_0000b08b, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9A20, ReInput_AhyVIyyiNXLwDdjpPfJFTQbpnrkv_JLwzRuOMwQLdeOnNCqpxWhvCpTzO__MethodInfo); DO_APP_FUNC(0x01F06A30, void, ReInput_AhyVIyyiNXLwDdjpPfJFTQbpnrkv_ibBVeCECxJKLNbdaRDgYydBsdPCIA, (ReInput_AhyVIyyiNXLwDdjpPfJFTQbpnrkv * __this, Exception * param_0000b08c, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC99F8, ReInput_AhyVIyyiNXLwDdjpPfJFTQbpnrkv_ibBVeCECxJKLNbdaRDgYydBsdPCIA__MethodInfo); DO_APP_FUNC(0x01F06AA0, bool, ReInput_AhyVIyyiNXLwDdjpPfJFTQbpnrkv_CBMEmsPFAXmdTFMNlRWkOQVTftIk, (ReInput_AhyVIyyiNXLwDdjpPfJFTQbpnrkv * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9818, ReInput_AhyVIyyiNXLwDdjpPfJFTQbpnrkv_CBMEmsPFAXmdTFMNlRWkOQVTftIk__MethodInfo); DO_APP_FUNC(0x01F06B10, void, oQuUFLJuRrUxJDynhLyEQLTqbPLb__ctor, (oQuUFLJuRrUxJDynhLyEQLTqbPLb * __this, UpdateLoopSetting__Enum param_0000b08d, MethodInfo * method)); DO_APP_FUNC(0x01F06F20, void, oQuUFLJuRrUxJDynhLyEQLTqbPLb_OFZSrciPcwVSkRHhANlFBBxUywYv, (oQuUFLJuRrUxJDynhLyEQLTqbPLb * __this, MethodInfo * method)); DO_APP_FUNC(0x01F07150, void, oQuUFLJuRrUxJDynhLyEQLTqbPLb_XUYlHArjcZHIIZmMQVtfQqgGDltj, (oQuUFLJuRrUxJDynhLyEQLTqbPLb * __this, UpdateLoopType__Enum param_0000b08e, MethodInfo * method)); @@ -44584,70 +52456,125 @@ DO_APP_FUNC(0x01F09100, bool, oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHpl DO_APP_FUNC(0x01F09140, void, oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB_hqSgnekblMvrxcIhpthtSBvwZRpfA_sjgQXMMRIHmhSmDrVpgFKxoFoOIy, (oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB_hqSgnekblMvrxcIhpthtSBvwZRpfA * __this, MethodInfo * method)); DO_APP_FUNC(0x01F09150, void, MQXuqxolDTNzmhlQygSPrfSbyMQP_lLRsGeYSJDiSeYVAJuoBQPMSMexA, (Platform__Enum param_0000b0b8, MethodInfo * method)); DO_APP_FUNC(0x01F09190, int32_t, MQXuqxolDTNzmhlQygSPrfSbyMQP_hZDLbhXwGnGtsWbdwNDrYWZlLZjj, (uint32_t param_0000b0b9, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF258, MQXuqxolDTNzmhlQygSPrfSbyMQP_hZDLbhXwGnGtsWbdwNDrYWZlLZjj__MethodInfo); DO_APP_FUNC(0x01F092F0, void, MQXuqxolDTNzmhlQygSPrfSbyMQP_rTMxuHfvQAhFXulfGiZYMVjPgdww, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF248, MQXuqxolDTNzmhlQygSPrfSbyMQP_rTMxuHfvQAhFXulfGiZYMVjPgdww__MethodInfo); DO_APP_FUNC(0x01F09450, String *, MQXuqxolDTNzmhlQygSPrfSbyMQP_watvvxWKkIEJACUGwWQnlJoyIRXab, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF238, MQXuqxolDTNzmhlQygSPrfSbyMQP_watvvxWKkIEJACUGwWQnlJoyIRXab__MethodInfo); DO_APP_FUNC(0x01F09710, int32_t, MQXuqxolDTNzmhlQygSPrfSbyMQP_PLxAGOUomygEKKeLRFBlRvobfwuZ, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF230, MQXuqxolDTNzmhlQygSPrfSbyMQP_PLxAGOUomygEKKeLRFBlRvobfwuZ__MethodInfo); DO_APP_FUNC(0x01F09870, int32_t, MQXuqxolDTNzmhlQygSPrfSbyMQP_vxcAmLqcYHVvGYpwBDZGWyxXyXAm, (void * param_0000b0ba, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF198, MQXuqxolDTNzmhlQygSPrfSbyMQP_vxcAmLqcYHVvGYpwBDZGWyxXyXAm__MethodInfo); DO_APP_FUNC(0x01F099E0, String *, MQXuqxolDTNzmhlQygSPrfSbyMQP_tbNAgobGoCebOKOAnsPmLGKigUeX, (void * param_0000b0bb, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF190, MQXuqxolDTNzmhlQygSPrfSbyMQP_tbNAgobGoCebOKOAnsPmLGKigUeX__MethodInfo); DO_APP_FUNC(0x01F09C90, Guid, MQXuqxolDTNzmhlQygSPrfSbyMQP_JTamGJxIofsIUYahrdqsvoTHqDgD, (void * param_0000b0bc, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF188, MQXuqxolDTNzmhlQygSPrfSbyMQP_JTamGJxIofsIUYahrdqsvoTHqDgD__MethodInfo); DO_APP_FUNC(0x01F09E10, Guid, MQXuqxolDTNzmhlQygSPrfSbyMQP_FGbtNSVMvwhcUOdrGDFxurGiSvtx, (int32_t param_0000b0bd, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF180, MQXuqxolDTNzmhlQygSPrfSbyMQP_FGbtNSVMvwhcUOdrGDFxurGiSvtx__MethodInfo); DO_APP_FUNC(0x01F09F90, int32_t, MQXuqxolDTNzmhlQygSPrfSbyMQP_phzsHyqunzmxeVJSOpSJtjbhvYiK, (void * param_0000b0be, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF178, MQXuqxolDTNzmhlQygSPrfSbyMQP_phzsHyqunzmxeVJSOpSJtjbhvYiK__MethodInfo); DO_APP_FUNC(0x01F0A100, int32_t, MQXuqxolDTNzmhlQygSPrfSbyMQP_TAzWeggeMEKyOxDcmCXKULHceVnt, (void * param_0000b0bf, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF1D0, MQXuqxolDTNzmhlQygSPrfSbyMQP_TAzWeggeMEKyOxDcmCXKULHceVnt__MethodInfo); DO_APP_FUNC(0x01F0A270, int32_t, MQXuqxolDTNzmhlQygSPrfSbyMQP_XotBtmCSPbxExyJXPqilfsmkFCag, (void * param_0000b0c0, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF1C8, MQXuqxolDTNzmhlQygSPrfSbyMQP_XotBtmCSPbxExyJXPqilfsmkFCag__MethodInfo); DO_APP_FUNC(0x01F0A3E0, int32_t, MQXuqxolDTNzmhlQygSPrfSbyMQP_xwUbGkDOitZXorLwndPLNqlKcGnWA, (void * param_0000b0c1, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF1C0, MQXuqxolDTNzmhlQygSPrfSbyMQP_xwUbGkDOitZXorLwndPLNqlKcGnWA__MethodInfo); DO_APP_FUNC(0x01F0A550, void *, MQXuqxolDTNzmhlQygSPrfSbyMQP_RXLthbhdAaIJcGhsiZrktKHhafvn, (int32_t param_0000b0c2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF1B8, MQXuqxolDTNzmhlQygSPrfSbyMQP_RXLthbhdAaIJcGhsiZrktKHhafvn__MethodInfo); DO_APP_FUNC(0x01F0A6B0, void, MQXuqxolDTNzmhlQygSPrfSbyMQP_AyzQtLotxzNzAaXWCMMPvlizwTwS, (void * param_0000b0c3, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF1A8, MQXuqxolDTNzmhlQygSPrfSbyMQP_AyzQtLotxzNzAaXWCMMPvlizwTwS__MethodInfo); DO_APP_FUNC(0x01F0A820, bool, MQXuqxolDTNzmhlQygSPrfSbyMQP_wRUddngkZRPNfjNofTXRbVUFSuKk, (void * param_0000b0c4, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF1A0, MQXuqxolDTNzmhlQygSPrfSbyMQP_wRUddngkZRPNfjNofTXRbVUFSuKk__MethodInfo); DO_APP_FUNC(0x01F0A990, bool, MQXuqxolDTNzmhlQygSPrfSbyMQP_sdlIVSboMVTioanxCmJFfzxmptgeb, (int32_t param_0000b0c5, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF148, MQXuqxolDTNzmhlQygSPrfSbyMQP_sdlIVSboMVTioanxCmJFfzxmptgeb__MethodInfo); DO_APP_FUNC(0x01F0AB00, void *, MQXuqxolDTNzmhlQygSPrfSbyMQP_WhxTJXoheRcnVgHKdrSpNsYxHOVlA, (int32_t param_0000b0c6, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF140, MQXuqxolDTNzmhlQygSPrfSbyMQP_WhxTJXoheRcnVgHKdrSpNsYxHOVlA__MethodInfo); DO_APP_FUNC(0x01F0AC60, void, MQXuqxolDTNzmhlQygSPrfSbyMQP_IlTeAXHsrOeZikxrUeNLgsrOiiip, (void * param_0000b0c7, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF138, MQXuqxolDTNzmhlQygSPrfSbyMQP_IlTeAXHsrOeZikxrUeNLgsrOiiip__MethodInfo); DO_APP_FUNC(0x01F0ADD0, bool, MQXuqxolDTNzmhlQygSPrfSbyMQP_CHFAFONxAuCrZaChybuQlgtEVjnx, (void * param_0000b0c8, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF130, MQXuqxolDTNzmhlQygSPrfSbyMQP_CHFAFONxAuCrZaChybuQlgtEVjnx__MethodInfo); DO_APP_FUNC(0x01F0AF40, void *, MQXuqxolDTNzmhlQygSPrfSbyMQP_UBMmilKJFGdIKgdRUraCjyuhrhENA, (void * param_0000b0c9, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF128, MQXuqxolDTNzmhlQygSPrfSbyMQP_UBMmilKJFGdIKgdRUraCjyuhrhENA__MethodInfo); DO_APP_FUNC(0x01F0B0B0, String *, MQXuqxolDTNzmhlQygSPrfSbyMQP_gTkVQgtmgNkWWCzTkKdjPRHFZpYE, (void * param_0000b0ca, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF170, MQXuqxolDTNzmhlQygSPrfSbyMQP_gTkVQgtmgNkWWCzTkKdjPRHFZpYE__MethodInfo); DO_APP_FUNC(0x01F0B360, String *, MQXuqxolDTNzmhlQygSPrfSbyMQP_GRRgUrFhCpgLdfFIGfBWTaXkYnarb, (Guid param_0000b0cb, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF168, MQXuqxolDTNzmhlQygSPrfSbyMQP_GRRgUrFhCpgLdfFIGfBWTaXkYnarb__MethodInfo); DO_APP_FUNC(0x01F0B630, String *, MQXuqxolDTNzmhlQygSPrfSbyMQP_GRRgUrFhCpgLdfFIGfBWTaXkYnarb_1, (void * param_0000b0cc, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF160, MQXuqxolDTNzmhlQygSPrfSbyMQP_GRRgUrFhCpgLdfFIGfBWTaXkYnarb_1__MethodInfo); DO_APP_FUNC(0x01F0B8E0, int32_t, MQXuqxolDTNzmhlQygSPrfSbyMQP_jTlxuZGJtWqERJbptBnEtkDHtccv, (String * param_0000b0cd, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF158, MQXuqxolDTNzmhlQygSPrfSbyMQP_jTlxuZGJtWqERJbptBnEtkDHtccv__MethodInfo); DO_APP_FUNC(0x01F0BA70, void, MQXuqxolDTNzmhlQygSPrfSbyMQP_vxQmjpVqngMQpDtGeOJxEMDxKIET, (void * param_0000b0ce, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF150, MQXuqxolDTNzmhlQygSPrfSbyMQP_vxQmjpVqngMQpDtGeOJxEMDxKIET__MethodInfo); DO_APP_FUNC(0x01F0BBE0, void, MQXuqxolDTNzmhlQygSPrfSbyMQP_BkREsgkHzcnMGzDgJseYwfsDKqtsA, (void * param_0000b0cf, int32_t param_0000b0d0, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF0F8, MQXuqxolDTNzmhlQygSPrfSbyMQP_BkREsgkHzcnMGzDgJseYwfsDKqtsA__MethodInfo); DO_APP_FUNC(0x01F0BD60, int32_t, MQXuqxolDTNzmhlQygSPrfSbyMQP_EBSKCjSaVUvIOsmEihulrgdlFvrw, (void * param_0000b0d1, void * param_0000b0d2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF0F0, MQXuqxolDTNzmhlQygSPrfSbyMQP_EBSKCjSaVUvIOsmEihulrgdlFvrw__MethodInfo); DO_APP_FUNC(0x01F0BEE0, int32_t, MQXuqxolDTNzmhlQygSPrfSbyMQP_aaZPzcHrOtQMIPcdfqkqBelmPRdr, (void * param_0000b0d3, int32_t param_0000b0d4, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF0E8, MQXuqxolDTNzmhlQygSPrfSbyMQP_aaZPzcHrOtQMIPcdfqkqBelmPRdr__MethodInfo); DO_APP_FUNC(0x01F0C060, int32_t, MQXuqxolDTNzmhlQygSPrfSbyMQP_rnbzIfejAmdamGnPaZCrWsfAPLhkA, (void * param_0000b0d5, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF0E0, MQXuqxolDTNzmhlQygSPrfSbyMQP_rnbzIfejAmdamGnPaZCrWsfAPLhkA__MethodInfo); DO_APP_FUNC(0x01F0C1D0, String *, MQXuqxolDTNzmhlQygSPrfSbyMQP_dNbknepPyAqiVsgCEHjnElBwtoEUA, (int32_t param_0000b0d6, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF0D8, MQXuqxolDTNzmhlQygSPrfSbyMQP_dNbknepPyAqiVsgCEHjnElBwtoEUA__MethodInfo); DO_APP_FUNC(0x01F0C480, int32_t, MQXuqxolDTNzmhlQygSPrfSbyMQP_KClJrIIJmXxbJDhWrtZzUvPSmHBe, (void * param_0000b0d7, void * param_0000b0d8, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF0D0, MQXuqxolDTNzmhlQygSPrfSbyMQP_KClJrIIJmXxbJDhWrtZzUvPSmHBe__MethodInfo); DO_APP_FUNC(0x01F0C600, int32_t, MQXuqxolDTNzmhlQygSPrfSbyMQP_IQYsuxYLEAIaovdrIgjQUyWPNbJH, (void * param_0000b0d9, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF120, MQXuqxolDTNzmhlQygSPrfSbyMQP_IQYsuxYLEAIaovdrIgjQUyWPNbJH__MethodInfo); DO_APP_FUNC(0x01F0C770, int32_t, MQXuqxolDTNzmhlQygSPrfSbyMQP_IzESZhtPGtbojhxwnDbjHjzVpheq, (void * param_0000b0da, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF118, MQXuqxolDTNzmhlQygSPrfSbyMQP_IzESZhtPGtbojhxwnDbjHjzVpheq__MethodInfo); DO_APP_FUNC(0x01F0C8E0, int32_t, MQXuqxolDTNzmhlQygSPrfSbyMQP_YmUkGjYITonFzVMEDxbNWWRrhQBL, (void * param_0000b0db, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF110, MQXuqxolDTNzmhlQygSPrfSbyMQP_YmUkGjYITonFzVMEDxbNWWRrhQBL__MethodInfo); DO_APP_FUNC(0x01F0CA50, void *, MQXuqxolDTNzmhlQygSPrfSbyMQP_uufVyIEOjsiSpyhyHpEfHTZWPGtF, (int32_t param_0000b0dc, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF108, MQXuqxolDTNzmhlQygSPrfSbyMQP_uufVyIEOjsiSpyhyHpEfHTZWPGtF__MethodInfo); DO_APP_FUNC(0x01F0CBB0, void *, MQXuqxolDTNzmhlQygSPrfSbyMQP_GehpvNQlpKrrUgdbpftTNXUQQsHl, (void * param_0000b0dd, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF100, MQXuqxolDTNzmhlQygSPrfSbyMQP_GehpvNQlpKrrUgdbpftTNXUQQsHl__MethodInfo); DO_APP_FUNC(0x01F0CD20, void *, MQXuqxolDTNzmhlQygSPrfSbyMQP_cbKsCcpLQMnQThNicJPGxdifZeXg, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF078, MQXuqxolDTNzmhlQygSPrfSbyMQP_cbKsCcpLQMnQThNicJPGxdifZeXg__MethodInfo); DO_APP_FUNC(0x01F0CE80, int32_t, MQXuqxolDTNzmhlQygSPrfSbyMQP_DiayvXXMQnPWCtfJypIoPSqJsnWs, (int32_t param_0000b0de, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF070, MQXuqxolDTNzmhlQygSPrfSbyMQP_DiayvXXMQnPWCtfJypIoPSqJsnWs__MethodInfo); DO_APP_FUNC(0x01F0CFE0, int32_t, MQXuqxolDTNzmhlQygSPrfSbyMQP_KlsBljXPLrALRGaRhmRVtFOrjTBw, (void * param_0000b0df, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF068, MQXuqxolDTNzmhlQygSPrfSbyMQP_KlsBljXPLrALRGaRhmRVtFOrjTBw__MethodInfo); DO_APP_FUNC(0x01F0D150, uint32_t, MQXuqxolDTNzmhlQygSPrfSbyMQP_PINdTvKlMbJgQeMctmUobruzIYQnA, (void * param_0000b0e0, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF058, MQXuqxolDTNzmhlQygSPrfSbyMQP_PINdTvKlMbJgQeMctmUobruzIYQnA__MethodInfo); DO_APP_FUNC(0x01F0D2C0, int32_t, MQXuqxolDTNzmhlQygSPrfSbyMQP_zsFpHFmVVDxbFUZOqqRulgaEltwG, (void * param_0000b0e1, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF050, MQXuqxolDTNzmhlQygSPrfSbyMQP_zsFpHFmVVDxbFUZOqqRulgaEltwG__MethodInfo); DO_APP_FUNC(0x01F0D430, int32_t, MQXuqxolDTNzmhlQygSPrfSbyMQP_sKeTkTeNxnSeqTUaQOJpOWPxtSoh, (void * param_0000b0e2, float param_0000b0e3, uint32_t param_0000b0e4, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF0C8, MQXuqxolDTNzmhlQygSPrfSbyMQP_sKeTkTeNxnSeqTUaQOJpOWPxtSoh__MethodInfo); DO_APP_FUNC(0x01F0D5B0, int32_t, MQXuqxolDTNzmhlQygSPrfSbyMQP_satfCwHdXCXiUCmqXjdEnUXkGGlh, (void * param_0000b0e5, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF0C0, MQXuqxolDTNzmhlQygSPrfSbyMQP_satfCwHdXCXiUCmqXjdEnUXkGGlh__MethodInfo); DO_APP_FUNC(0x01F0D720, int32_t, MQXuqxolDTNzmhlQygSPrfSbyMQP_HOHyyrDlTpQpfRCHlShhPzNdwCHD, (void * param_0000b0e6, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF0B0, MQXuqxolDTNzmhlQygSPrfSbyMQP_HOHyyrDlTpQpfRCHlShhPzNdwCHD__MethodInfo); DO_APP_FUNC(0x01F0D890, int32_t, MQXuqxolDTNzmhlQygSPrfSbyMQP_BdrMIeZplLkaSGeCXRlUBycIVtYD, (void * param_0000b0e7, int32_t param_0000b0e8, uint32_t param_0000b0e9, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF0A0, MQXuqxolDTNzmhlQygSPrfSbyMQP_BdrMIeZplLkaSGeCXRlUBycIVtYD__MethodInfo); DO_APP_FUNC(0x01F0DA10, int32_t, MQXuqxolDTNzmhlQygSPrfSbyMQP_vnTeRvOrEyyPPNvfXfPhlffzIPvV, (void * param_0000b0ea, int32_t param_0000b0eb, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF088, MQXuqxolDTNzmhlQygSPrfSbyMQP_vnTeRvOrEyyPPNvfXfPhlffzIPvV__MethodInfo); DO_APP_FUNC(0x01F0DB90, int32_t, MQXuqxolDTNzmhlQygSPrfSbyMQP_ugEAIXBAPRXGIRGtDFWlWTFfNIddA, (void * param_0000b0ec, int32_t param_0000b0ed, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF080, MQXuqxolDTNzmhlQygSPrfSbyMQP_ugEAIXBAPRXGIRGtDFWlWTFfNIddA__MethodInfo); DO_APP_FUNC(0x01F0DD10, int32_t, MQXuqxolDTNzmhlQygSPrfSbyMQP_DopDGGYSFpHCecotesyWhiuGEdYaA, (void * param_0000b0ee, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEEFE0, MQXuqxolDTNzmhlQygSPrfSbyMQP_DopDGGYSFpHCecotesyWhiuGEdYaA__MethodInfo); DO_APP_FUNC(0x01F0DE80, int32_t, MQXuqxolDTNzmhlQygSPrfSbyMQP_ZDucLIIKdnDjXIpOVfGnTihDIpfRA, (void * param_0000b0ef, int32_t param_0000b0f0, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEEFD8, MQXuqxolDTNzmhlQygSPrfSbyMQP_ZDucLIIKdnDjXIpOVfGnTihDIpfRA__MethodInfo); DO_APP_FUNC(0x01F0E000, int32_t, MQXuqxolDTNzmhlQygSPrfSbyMQP_vyuAPfWTMDEcEaJdTFQjsjoINZtbb, (void * param_0000b0f1, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEEFD0, MQXuqxolDTNzmhlQygSPrfSbyMQP_vyuAPfWTMDEcEaJdTFQjsjoINZtbb__MethodInfo); DO_APP_FUNC(0x01F0E170, int32_t, MQXuqxolDTNzmhlQygSPrfSbyMQP_uCfdhAGrlbigLqfXdGzLkqnRdOjw, (void * param_0000b0f2, int32_t param_0000b0f3, void * param_0000b0f4, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEEFC8, MQXuqxolDTNzmhlQygSPrfSbyMQP_uCfdhAGrlbigLqfXdGzLkqnRdOjw__MethodInfo); DO_APP_FUNC(0x01F0E2F0, int32_t, MQXuqxolDTNzmhlQygSPrfSbyMQP_toSqbrlmQsFTTGrqaJfXGwrAfUcfA, (void * param_0000b0f5, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEEFB0, MQXuqxolDTNzmhlQygSPrfSbyMQP_toSqbrlmQsFTTGrqaJfXGwrAfUcfA__MethodInfo); DO_APP_FUNC(0x01F0E460, int32_t, MQXuqxolDTNzmhlQygSPrfSbyMQP_IlXiRqJydoyKfFjZDvaXyrFJmJAD, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF048, MQXuqxolDTNzmhlQygSPrfSbyMQP_IlXiRqJydoyKfFjZDvaXyrFJmJAD__MethodInfo); DO_APP_FUNC(0x01F0E5C0, int32_t, MQXuqxolDTNzmhlQygSPrfSbyMQP_DvQQOfnZVsTgZBDHmXZIGkjpbCSV, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF030, MQXuqxolDTNzmhlQygSPrfSbyMQP_DvQQOfnZVsTgZBDHmXZIGkjpbCSV__MethodInfo); DO_APP_FUNC(0x01F0E720, int32_t, MQXuqxolDTNzmhlQygSPrfSbyMQP_TALQoLUrLQBmzJicOAIOxkfhrJLy, (void * param_0000b0f6, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF020, MQXuqxolDTNzmhlQygSPrfSbyMQP_TALQoLUrLQBmzJicOAIOxkfhrJLy__MethodInfo); DO_APP_FUNC(0x003AE050, void, MQXuqxolDTNzmhlQygSPrfSbyMQP__ctor, (MQXuqxolDTNzmhlQygSPrfSbyMQP * __this, MethodInfo * method)); -DO_APP_FUNC(0x01F0E890, void, MQXuqxolDTNzmhlQygSPrfSbyMQP_fFFwewtUqmsSEmrBgDBcpkeDeKDV_AaQaTULgbxHEPuKoffZKDAVsZQtWA, (MQXuqxolDTNzmhlQygSPrfSbyMQP_fFFwewtUqmsSEmrBgDBcpkeDeKDV__Boxed * __this, MQXuqxolDTNzmhlQygSPrfSbyMQP_SuAZSBybuevwDRWiCSYyoDntqkuf__Enum param_0000b0f7, uint32_t param_0000b0f8, void * param_0000b0f9, MethodInfo * method)); -DO_APP_FUNC(0x01F0E970, void, MQXuqxolDTNzmhlQygSPrfSbyMQP_rsjyJalPbUAnIDSqvvIVAUhdVUyv_AaQaTULgbxHEPuKoffZKDAVsZQtWA, (MQXuqxolDTNzmhlQygSPrfSbyMQP_rsjyJalPbUAnIDSqvvIVAUhdVUyv__Boxed * __this, MQXuqxolDTNzmhlQygSPrfSbyMQP_SuAZSBybuevwDRWiCSYyoDntqkuf__Enum param_0000b0fa, uint32_t param_0000b0fb, void * param_0000b0fc, MethodInfo * method)); -DO_APP_FUNC(0x01F0EA90, void, MQXuqxolDTNzmhlQygSPrfSbyMQP_ExVsjcaJQHIrRykhyLbhejFhZHjU_AaQaTULgbxHEPuKoffZKDAVsZQtWA, (MQXuqxolDTNzmhlQygSPrfSbyMQP_ExVsjcaJQHIrRykhyLbhejFhZHjU__Boxed * __this, MQXuqxolDTNzmhlQygSPrfSbyMQP_SuAZSBybuevwDRWiCSYyoDntqkuf__Enum param_0000b0fd, uint32_t param_0000b0fe, void * param_0000b0ff, MethodInfo * method)); -DO_APP_FUNC(0x01F0EB40, void, MQXuqxolDTNzmhlQygSPrfSbyMQP_BYWGMKkCZZapwUxoyDOfOnuFFjZi_AaQaTULgbxHEPuKoffZKDAVsZQtWA, (MQXuqxolDTNzmhlQygSPrfSbyMQP_BYWGMKkCZZapwUxoyDOfOnuFFjZi__Boxed * __this, MQXuqxolDTNzmhlQygSPrfSbyMQP_SuAZSBybuevwDRWiCSYyoDntqkuf__Enum param_0000b100, uint32_t param_0000b101, void * param_0000b102, MethodInfo * method)); -DO_APP_FUNC(0x01F0EBF0, void, MQXuqxolDTNzmhlQygSPrfSbyMQP_NJZeSIpLpELmQeHounjwnphENMLl_AaQaTULgbxHEPuKoffZKDAVsZQtWA, (MQXuqxolDTNzmhlQygSPrfSbyMQP_NJZeSIpLpELmQeHounjwnphENMLl__Boxed * __this, MQXuqxolDTNzmhlQygSPrfSbyMQP_SuAZSBybuevwDRWiCSYyoDntqkuf__Enum param_0000b103, uint32_t param_0000b104, void * param_0000b105, MethodInfo * method)); -DO_APP_FUNC(0x01F0ECA0, void, MQXuqxolDTNzmhlQygSPrfSbyMQP_fkaeudwEJXamemKLebDVxKyizDwh_AaQaTULgbxHEPuKoffZKDAVsZQtWA, (MQXuqxolDTNzmhlQygSPrfSbyMQP_fkaeudwEJXamemKLebDVxKyizDwh__Boxed * __this, MQXuqxolDTNzmhlQygSPrfSbyMQP_SuAZSBybuevwDRWiCSYyoDntqkuf__Enum param_0000b106, uint32_t param_0000b107, void * param_0000b108, MethodInfo * method)); -DO_APP_FUNC(0x01F0ED80, void, MQXuqxolDTNzmhlQygSPrfSbyMQP_EDRMzeVDpkxuVXCYRCZGRVVSFsNM_AaQaTULgbxHEPuKoffZKDAVsZQtWA, (MQXuqxolDTNzmhlQygSPrfSbyMQP_EDRMzeVDpkxuVXCYRCZGRVVSFsNM__Boxed * __this, MQXuqxolDTNzmhlQygSPrfSbyMQP_SuAZSBybuevwDRWiCSYyoDntqkuf__Enum param_0000b109, uint32_t param_0000b10a, void * param_0000b10b, MethodInfo * method)); -DO_APP_FUNC(0x01F0EE30, void, MQXuqxolDTNzmhlQygSPrfSbyMQP_kPDMdMsAaUIPSgXaYfVwGqOksJbJ_AaQaTULgbxHEPuKoffZKDAVsZQtWA, (MQXuqxolDTNzmhlQygSPrfSbyMQP_kPDMdMsAaUIPSgXaYfVwGqOksJbJ__Boxed * __this, MQXuqxolDTNzmhlQygSPrfSbyMQP_SuAZSBybuevwDRWiCSYyoDntqkuf__Enum param_0000b10c, uint32_t param_0000b10d, void * param_0000b10e, MethodInfo * method)); -DO_APP_FUNC(0x01F0EEE0, void, MQXuqxolDTNzmhlQygSPrfSbyMQP_qGIRxBerSmSKclHxqiWlUxiMHXIG_AaQaTULgbxHEPuKoffZKDAVsZQtWA, (MQXuqxolDTNzmhlQygSPrfSbyMQP_qGIRxBerSmSKclHxqiWlUxiMHXIG__Boxed * __this, void * param_0000b10f, MethodInfo * method)); +DO_APP_FUNC(0x01F0E890, void, MQXuqxolDTNzmhlQygSPrfSbyMQP_fFFwewtUqmsSEmrBgDBcpkeDeKDV_AaQaTULgbxHEPuKoffZKDAVsZQtWA, (MQXuqxolDTNzmhlQygSPrfSbyMQP_fFFwewtUqmsSEmrBgDBcpkeDeKDV * __this, MQXuqxolDTNzmhlQygSPrfSbyMQP_SuAZSBybuevwDRWiCSYyoDntqkuf__Enum param_0000b0f7, uint32_t param_0000b0f8, void * param_0000b0f9, MethodInfo * method)); +DO_APP_FUNC(0x01F0E970, void, MQXuqxolDTNzmhlQygSPrfSbyMQP_rsjyJalPbUAnIDSqvvIVAUhdVUyv_AaQaTULgbxHEPuKoffZKDAVsZQtWA, (MQXuqxolDTNzmhlQygSPrfSbyMQP_rsjyJalPbUAnIDSqvvIVAUhdVUyv * __this, MQXuqxolDTNzmhlQygSPrfSbyMQP_SuAZSBybuevwDRWiCSYyoDntqkuf__Enum param_0000b0fa, uint32_t param_0000b0fb, void * param_0000b0fc, MethodInfo * method)); +DO_APP_FUNC(0x01F0EA90, void, MQXuqxolDTNzmhlQygSPrfSbyMQP_ExVsjcaJQHIrRykhyLbhejFhZHjU_AaQaTULgbxHEPuKoffZKDAVsZQtWA, (MQXuqxolDTNzmhlQygSPrfSbyMQP_ExVsjcaJQHIrRykhyLbhejFhZHjU * __this, MQXuqxolDTNzmhlQygSPrfSbyMQP_SuAZSBybuevwDRWiCSYyoDntqkuf__Enum param_0000b0fd, uint32_t param_0000b0fe, void * param_0000b0ff, MethodInfo * method)); +DO_APP_FUNC(0x01F0EB40, void, MQXuqxolDTNzmhlQygSPrfSbyMQP_BYWGMKkCZZapwUxoyDOfOnuFFjZi_AaQaTULgbxHEPuKoffZKDAVsZQtWA, (MQXuqxolDTNzmhlQygSPrfSbyMQP_BYWGMKkCZZapwUxoyDOfOnuFFjZi * __this, MQXuqxolDTNzmhlQygSPrfSbyMQP_SuAZSBybuevwDRWiCSYyoDntqkuf__Enum param_0000b100, uint32_t param_0000b101, void * param_0000b102, MethodInfo * method)); +DO_APP_FUNC(0x01F0EBF0, void, MQXuqxolDTNzmhlQygSPrfSbyMQP_NJZeSIpLpELmQeHounjwnphENMLl_AaQaTULgbxHEPuKoffZKDAVsZQtWA, (MQXuqxolDTNzmhlQygSPrfSbyMQP_NJZeSIpLpELmQeHounjwnphENMLl * __this, MQXuqxolDTNzmhlQygSPrfSbyMQP_SuAZSBybuevwDRWiCSYyoDntqkuf__Enum param_0000b103, uint32_t param_0000b104, void * param_0000b105, MethodInfo * method)); +DO_APP_FUNC(0x01F0ECA0, void, MQXuqxolDTNzmhlQygSPrfSbyMQP_fkaeudwEJXamemKLebDVxKyizDwh_AaQaTULgbxHEPuKoffZKDAVsZQtWA, (MQXuqxolDTNzmhlQygSPrfSbyMQP_fkaeudwEJXamemKLebDVxKyizDwh * __this, MQXuqxolDTNzmhlQygSPrfSbyMQP_SuAZSBybuevwDRWiCSYyoDntqkuf__Enum param_0000b106, uint32_t param_0000b107, void * param_0000b108, MethodInfo * method)); +DO_APP_FUNC(0x01F0ED80, void, MQXuqxolDTNzmhlQygSPrfSbyMQP_EDRMzeVDpkxuVXCYRCZGRVVSFsNM_AaQaTULgbxHEPuKoffZKDAVsZQtWA, (MQXuqxolDTNzmhlQygSPrfSbyMQP_EDRMzeVDpkxuVXCYRCZGRVVSFsNM * __this, MQXuqxolDTNzmhlQygSPrfSbyMQP_SuAZSBybuevwDRWiCSYyoDntqkuf__Enum param_0000b109, uint32_t param_0000b10a, void * param_0000b10b, MethodInfo * method)); +DO_APP_FUNC(0x01F0EE30, void, MQXuqxolDTNzmhlQygSPrfSbyMQP_kPDMdMsAaUIPSgXaYfVwGqOksJbJ_AaQaTULgbxHEPuKoffZKDAVsZQtWA, (MQXuqxolDTNzmhlQygSPrfSbyMQP_kPDMdMsAaUIPSgXaYfVwGqOksJbJ * __this, MQXuqxolDTNzmhlQygSPrfSbyMQP_SuAZSBybuevwDRWiCSYyoDntqkuf__Enum param_0000b10c, uint32_t param_0000b10d, void * param_0000b10e, MethodInfo * method)); +DO_APP_FUNC(0x01F0EEE0, void, MQXuqxolDTNzmhlQygSPrfSbyMQP_qGIRxBerSmSKclHxqiWlUxiMHXIG_AaQaTULgbxHEPuKoffZKDAVsZQtWA, (MQXuqxolDTNzmhlQygSPrfSbyMQP_qGIRxBerSmSKclHxqiWlUxiMHXIG * __this, void * param_0000b10f, MethodInfo * method)); DO_APP_FUNC(0x01F0F110, int32_t, MQXuqxolDTNzmhlQygSPrfSbyMQP_aBiQjmfjoxDmFeEoOOvUmGCSKAjab_hZDLbhXwGnGtsWbdwNDrYWZlLZjj, (uint32_t param_0000b110, MethodInfo * method)); DO_APP_FUNC(0x01F0F180, void, MQXuqxolDTNzmhlQygSPrfSbyMQP_aBiQjmfjoxDmFeEoOOvUmGCSKAjab_rTMxuHfvQAhFXulfGiZYMVjPgdww, (MethodInfo * method)); DO_APP_FUNC(0x01F0F1F0, String *, MQXuqxolDTNzmhlQygSPrfSbyMQP_aBiQjmfjoxDmFeEoOOvUmGCSKAjab_watvvxWKkIEJACUGwWQnlJoyIRXab, (MethodInfo * method)); @@ -44841,6 +52768,7 @@ DO_APP_FUNC(0x01F165B0, bool, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_IUmitRpLKwDgQJSVuMBW DO_APP_FUNC(0x01F16720, void, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_EoEfCWcEdbObkcLaKdZxpgNBjJfDC, (OkyanDQiQpkIuPEcUGkHHQHEBNIcb * __this, List_1_OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb_ * param_0000b1ca, List_1_OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb_ * param_0000b1cb, bool param_0000b1cc, MethodInfo * method)); DO_APP_FUNC(0x01F168B0, void, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_giyBWaSvHjtkroePMmReGCHOsIZH, (OkyanDQiQpkIuPEcUGkHHQHEBNIcb * __this, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb * param_0000b1cd, bool param_0000b1ce, MethodInfo * method)); DO_APP_FUNC(0x01F169F0, void, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_KsxFhAhzpSwmwnIqIptUmyEXkKKtA, (OkyanDQiQpkIuPEcUGkHHQHEBNIcb * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEECE0, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_KsxFhAhzpSwmwnIqIptUmyEXkKKtA__MethodInfo); DO_APP_FUNC(0x003BCD50, int32_t, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb_get_rewiredId, (OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb_set_rewiredId, (OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x003BCD70, int32_t, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb_get_inputManagerId, (OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb * __this, MethodInfo * method)); @@ -44859,6 +52787,7 @@ DO_APP_FUNC(0x01F16BD0, void, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZe DO_APP_FUNC(0x01F16F20, void, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb_zyWfjMEQMKfrcFUIuJsQekkGmZXeB, (OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb * __this, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb * param_0000b1d5, MethodInfo * method)); DO_APP_FUNC(0x01F17060, void, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb_Update, (OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb * __this, MethodInfo * method)); DO_APP_FUNC(0x01F17240, void, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb_FillData, (OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb * __this, ControllerDataUpdater * dataUpdater, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEEB68, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb_FillData__MethodInfo); DO_APP_FUNC(0x01F173A0, int32_t, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb_NWhioGIQTHWIJiNJWGzSJyccbFph, (OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb * __this, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb * param_0000b1d7, MethodInfo * method)); DO_APP_FUNC(0x01F17490, BridgedControllerHWInfo *, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb_GBKpRaKkozAlrfTWcfBobtBEXJSEA, (OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb * __this, MethodInfo * method)); DO_APP_FUNC(0x01F17500, BridgedController *, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb_ToBridgedController, (OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb * __this, MethodInfo * method)); @@ -44866,7 +52795,9 @@ DO_APP_FUNC(0x01F17570, ControllerDisconnectedEventArgs *, OkyanDQiQpkIuPEcUGkHH DO_APP_FUNC(0x01F17610, void, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb_HIIydJwkxPRjeUmnKMhynZSlhZFr, (OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb * __this, MethodInfo * method)); DO_APP_FUNC(0x01F177C0, void, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb_qgkozYJKRLUdDDRvgDzLkjaguBYt, (OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb * __this, MethodInfo * method)); DO_APP_FUNC(0x01F17940, void, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb_UyEymvLrgqInqQRHGPXmMlMzmNUC, (OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb * __this, HardwareJoystickMap_Platform_SDL2_Base_Axis * param_0000b1d8, int32_t param_0000b1d9, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEEAA0, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb_UyEymvLrgqInqQRHGPXmMlMzmNUC__MethodInfo); DO_APP_FUNC(0x01F179E0, void, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb_SoVczKSJkPnRJnChvbuCOkXWOfCF, (OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb * __this, HardwareJoystickMap_Platform_SDL2_Base_Button * param_0000b1da, int32_t param_0000b1db, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEEB10, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb_SoVczKSJkPnRJnChvbuCOkXWOfCF__MethodInfo); DO_APP_FUNC(0x01F17A80, float, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb_XAXNwRQUnmcOzPeHVLVuoeCfedSaA, (OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb * __this, HardwareJoystickMap_Platform_SDL2_Base_Axis * param_0000b1dc, MethodInfo * method)); DO_APP_FUNC(0x01F17C90, bool, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb_fPEIieuOrXYRdNGxxzydLWhVnvVE, (OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb * __this, HardwareJoystickMap_Platform_SDL2_Base_Button * param_0000b1dd, MethodInfo * method)); DO_APP_FUNC(0x01F18090, bool, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb_puJqpekmNDbwQbFPMiIiHtjanAMf, (OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb * __this, int32_t param_0000b1de, int32_t param_0000b1df, HatType__Enum param_0000b1e0, MethodInfo * method)); @@ -44879,19 +52810,23 @@ DO_APP_FUNC(0x01F18A40, void, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZe DO_APP_FUNC(0x01F18CF0, void, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb_FtqXDYbQuNhOcJdgcQVLpHyYVBKI, (OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb * __this, MethodInfo * method)); DO_APP_FUNC(0x01F18D80, UnknownControllerHat__Array *, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb_SIEFbCBqMIXIjcbOHmmhzuDcHShlA, (OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb * __this, MethodInfo * method)); DO_APP_FUNC(0x01F19080, int32_t, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb_TUSeQEzQgVqxkSktgFcfCxIihmLU, (OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb * param_0000b1e6, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb * param_0000b1e7, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEEC28, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb_TUSeQEzQgVqxkSktgFcfCxIihmLU__MethodInfo); DO_APP_FUNC(0x01F190C0, int32_t, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb_XvupssOPinBZAEVXbxRJKgDjvosJA, (OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb * param_0000b1e8, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb * param_0000b1e9, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEEC10, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb_XvupssOPinBZAEVXbxRJKgDjvosJA__MethodInfo); DO_APP_FUNC(0x01F19100, void, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB__ctor, (OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB * __this, MethodInfo * method)); DO_APP_FUNC(0x01F191D0, void, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB_uHctqJCHbChBJfvVwkwSXBHumPvzA, (OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB * __this, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb * param_0000b1ea, MethodInfo * method)); DO_APP_FUNC(0x01F19540, bool, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB_VfpgCWArzMRwmtPRIAXRmxwrgJeEA, (OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB * __this, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb * param_0000b1eb, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB_YbSItpXSYWwhCwRMzXuGKbUArguQ__Enum param_0000b1ec, MethodInfo * method)); DO_APP_FUNC(0x01F19620, IEnumerable_1_OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB_UEUxULqgOKjFFoCtJehseWLRVSuFA_ *, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB_bSyulQjPHvabugQHvZTKMwbbBLnyA, (OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB * __this, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb * param_0000b1ed, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB_YbSItpXSYWwhCwRMzXuGKbUArguQ__Enum param_0000b1ee, MethodInfo * method)); DO_APP_FUNC(0x01F19750, void, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB_KlkBjwjuozSIWjtafFupuZDYyxHfA, (OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB * __this, int32_t param_0000b1ef, Guid param_0000b1f0, int32_t param_0000b1f1, MethodInfo * method)); DO_APP_FUNC(0x01F198A0, bool, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB_UEUxULqgOKjFFoCtJehseWLRVSuFA_NWhioGIQTHWIJiNJWGzSJyccbFph, (OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB_UEUxULqgOKjFFoCtJehseWLRVSuFA * __this, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb * param_0000b1f2, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB_YbSItpXSYWwhCwRMzXuGKbUArguQ__Enum param_0000b1f3, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEEA80, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB_UEUxULqgOKjFFoCtJehseWLRVSuFA_NWhioGIQTHWIJiNJWGzSJyccbFph__MethodInfo); DO_APP_FUNC(0x003AE050, void, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB_UEUxULqgOKjFFoCtJehseWLRVSuFA__ctor, (OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB_UEUxULqgOKjFFoCtJehseWLRVSuFA * __this, MethodInfo * method)); DO_APP_FUNC(0x00FDB5B0, void, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB_EHUwjAEHMNOIGdlywQSkmmcHEZbJ__ctor, (OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB_EHUwjAEHMNOIGdlywQSkmmcHEZbJ * __this, int32_t param_0000b1f4, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB_EHUwjAEHMNOIGdlywQSkmmcHEZbJ_System_IDisposable_Dispose, (OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB_EHUwjAEHMNOIGdlywQSkmmcHEZbJ * __this, MethodInfo * method)); DO_APP_FUNC(0x01F199D0, bool, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB_EHUwjAEHMNOIGdlywQSkmmcHEZbJ_MoveNext, (OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB_EHUwjAEHMNOIGdlywQSkmmcHEZbJ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB_UEUxULqgOKjFFoCtJehseWLRVSuFA *, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB_EHUwjAEHMNOIGdlywQSkmmcHEZbJ_System_Collections_Generic_IEnumerator_Rewired_InputSources_SDL2_SDL2InputManager_JoystickRecords_Record__get_Current, (OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB_EHUwjAEHMNOIGdlywQSkmmcHEZbJ * __this, MethodInfo * method)); DO_APP_FUNC(0x01F19B00, void, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB_EHUwjAEHMNOIGdlywQSkmmcHEZbJ_System_Collections_IEnumerator_Reset, (OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB_EHUwjAEHMNOIGdlywQSkmmcHEZbJ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEEA70, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB_EHUwjAEHMNOIGdlywQSkmmcHEZbJ_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB_EHUwjAEHMNOIGdlywQSkmmcHEZbJ_System_Collections_IEnumerator_get_Current, (OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB_EHUwjAEHMNOIGdlywQSkmmcHEZbJ * __this, MethodInfo * method)); DO_APP_FUNC(0x01F19B50, IEnumerator_1_OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB_UEUxULqgOKjFFoCtJehseWLRVSuFA_ *, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB_EHUwjAEHMNOIGdlywQSkmmcHEZbJ_System_Collections_Generic_IEnumerable_Rewired_InputSources_SDL2_SDL2InputManager_JoystickRecords_Record__GetEnumerator, (OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB_EHUwjAEHMNOIGdlywQSkmmcHEZbJ * __this, MethodInfo * method)); DO_APP_FUNC(0x01F19D10, IEnumerator *, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB_EHUwjAEHMNOIGdlywQSkmmcHEZbJ_System_Collections_IEnumerable_GetEnumerator, (OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB_EHUwjAEHMNOIGdlywQSkmmcHEZbJ * __this, MethodInfo * method)); @@ -44899,12 +52834,15 @@ DO_APP_FUNC(0x01F19D20, void, ImYWxcEEsVTdIQsxgjkIAhrNiNwj_FiUnObMlCbaIOUtJjeapC DO_APP_FUNC(0x01F19D70, void, ImYWxcEEsVTdIQsxgjkIAhrNiNwj_xECgqlDzYMVCZEmEKqwRxHnKFqcv, (Object * param_0000b1f6, bool param_0000b1f7, MethodInfo * method)); DO_APP_FUNC(0x003CD410, bool, SDL2InputSource_get_initialized, (SDL2InputSource * __this, MethodInfo * method)); DO_APP_FUNC(0x01F19DD0, void, SDL2InputSource__ctor, (SDL2InputSource * __this, UpdateLoopSetting__Enum param_0000b1f8, bool param_0000b1f9, bool param_0000b1fa, bool param_0000b1fb, bool param_0000b1fc, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEE9D0, SDL2InputSource__ctor__MethodInfo); DO_APP_FUNC(0x01F1A350, void, SDL2InputSource_YqHJknraBofkDrQopXWUxEXEhbBW, (SDL2InputSource * __this, Action * param_0000b1fd, MethodInfo * method)); DO_APP_FUNC(0x01F1A450, void, SDL2InputSource_YavTwafpUJoMWEKbcbuUideMTXIKA, (SDL2InputSource * __this, Action * param_0000b1fe, MethodInfo * method)); DO_APP_FUNC(0x01F1A350, void, SDL2InputSource_add_DeviceChangedEvent, (SDL2InputSource * __this, Action * value, MethodInfo * method)); DO_APP_FUNC(0x01F1A450, void, SDL2InputSource_remove_DeviceChangedEvent, (SDL2InputSource * __this, Action * value, MethodInfo * method)); DO_APP_FUNC(0x01F1A550, void, SDL2InputSource_SystemDeviceConnected, (SDL2InputSource * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEEA20, SDL2InputSource_SystemDeviceConnected__MethodInfo); DO_APP_FUNC(0x01F1A5A0, void, SDL2InputSource_SystemDeviceDisconnected, (SDL2InputSource * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEEA18, SDL2InputSource_SystemDeviceDisconnected__MethodInfo); DO_APP_FUNC(0x003AE050, void, SDL2InputSource_Update, (SDL2InputSource * __this, MethodInfo * method)); DO_APP_FUNC(0x01F1A5F0, void, SDL2InputSource_UpdateDevices, (SDL2InputSource * __this, UpdateLoopType__Enum updateLoop, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SDL2InputSource_UpdateFinished, (SDL2InputSource * __this, MethodInfo * method)); @@ -44923,17 +52861,17 @@ DO_APP_FUNC(0x01F1C450, void, SDL2InputSource_euafPzTLwwiRBTSrxLiDeHQyJxpO, (SDL DO_APP_FUNC(0x01F1C540, nPRqIoqySXhujbVkqhHKfdEBznFW *, SDL2InputSource_RxbkkRPpfLFdpgklgffzTXeVjsPsA, (SDL2InputSource * __this, int32_t param_0000b20c, MethodInfo * method)); DO_APP_FUNC(0x01F1C5C0, PLVuESYMpevStRCbBgaqaHaZvFblA *, SDL2InputSource_HdWwVqGjLzgNCkSJdMnuhmiFcHJWb, (SDL2InputSource * __this, int32_t param_0000b20d, MethodInfo * method)); DO_APP_FUNC(0x01F1C640, void, SDL2InputSource_WnPEbKJLbniIAbMxtGKJpMBiOroR, (SDL2InputSource * __this, MethodInfo * method)); -DO_APP_FUNC(0x01F1CAD0, void, SDL2InputSource_cbdbxUciRfJEobQRkNmDFsPvJjjkB, (SDL2InputSource * __this, MQXuqxolDTNzmhlQygSPrfSbyMQP_fFFwewtUqmsSEmrBgDBcpkeDeKDV param_0000b20e, double param_0000b20f, MethodInfo * method)); -DO_APP_FUNC(0x01F1CB10, void, SDL2InputSource_aMAGnybNkVPXKKxvSPhkRYCzfOCp, (SDL2InputSource * __this, MQXuqxolDTNzmhlQygSPrfSbyMQP_BYWGMKkCZZapwUxoyDOfOnuFFjZi param_0000b210, double param_0000b211, MethodInfo * method)); -DO_APP_FUNC(0x01F1CB50, void, SDL2InputSource_TlUBkvBHXXyRSGdYCUdZshPJpqcXA, (SDL2InputSource * __this, MQXuqxolDTNzmhlQygSPrfSbyMQP_ExVsjcaJQHIrRykhyLbhejFhZHjU param_0000b212, double param_0000b213, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, SDL2InputSource_HiXvYFMDrGDgALuMAhWgdosEPELg, (SDL2InputSource * __this, MQXuqxolDTNzmhlQygSPrfSbyMQP_rsjyJalPbUAnIDSqvvIVAUhdVUyv param_0000b214, double param_0000b215, MethodInfo * method)); -DO_APP_FUNC(0x01F1CB90, void, SDL2InputSource_PePRYfSZRyREJhIDGQjaTGaYgZEm, (SDL2InputSource * __this, MQXuqxolDTNzmhlQygSPrfSbyMQP_NJZeSIpLpELmQeHounjwnphENMLl param_0000b216, MethodInfo * method)); -DO_APP_FUNC(0x01F1CBE0, void, SDL2InputSource_ZbDTbZOsFCdCqaczLmPCokqRtHCP, (SDL2InputSource * __this, MQXuqxolDTNzmhlQygSPrfSbyMQP_NJZeSIpLpELmQeHounjwnphENMLl param_0000b217, MethodInfo * method)); -DO_APP_FUNC(0x01F1CD00, void, SDL2InputSource_uoiXkDBsABKLCfEtqJWWbDJHJMfv, (SDL2InputSource * __this, MQXuqxolDTNzmhlQygSPrfSbyMQP_fkaeudwEJXamemKLebDVxKyizDwh param_0000b218, double param_0000b219, MethodInfo * method)); -DO_APP_FUNC(0x01F1CD40, void, SDL2InputSource_LNXHyQYYdhkKOQPDNSLxirHhPUWw, (SDL2InputSource * __this, MQXuqxolDTNzmhlQygSPrfSbyMQP_EDRMzeVDpkxuVXCYRCZGRVVSFsNM param_0000b21a, double param_0000b21b, MethodInfo * method)); -DO_APP_FUNC(0x01F1CD80, void, SDL2InputSource_aQuEPAizPIamIpKGNEbElSWTpXdoA, (SDL2InputSource * __this, MQXuqxolDTNzmhlQygSPrfSbyMQP_kPDMdMsAaUIPSgXaYfVwGqOksJbJ param_0000b21c, MethodInfo * method)); -DO_APP_FUNC(0x01F1CDD0, void, SDL2InputSource_CxTWsPoKWweQQQdcULFvgVcZXJhi, (SDL2InputSource * __this, MQXuqxolDTNzmhlQygSPrfSbyMQP_kPDMdMsAaUIPSgXaYfVwGqOksJbJ param_0000b21d, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, SDL2InputSource_jvgedsVmXrxgrxLPxtMqmLDPjlOfA, (SDL2InputSource * __this, MQXuqxolDTNzmhlQygSPrfSbyMQP_kPDMdMsAaUIPSgXaYfVwGqOksJbJ param_0000b21e, MethodInfo * method)); +DO_APP_FUNC(0x01F1CAD0, void, SDL2InputSource_cbdbxUciRfJEobQRkNmDFsPvJjjkB, (SDL2InputSource * __this, MQXuqxolDTNzmhlQygSPrfSbyMQP_fFFwewtUqmsSEmrBgDBcpkeDeKDV * param_0000b20e, double param_0000b20f, MethodInfo * method)); +DO_APP_FUNC(0x01F1CB10, void, SDL2InputSource_aMAGnybNkVPXKKxvSPhkRYCzfOCp, (SDL2InputSource * __this, MQXuqxolDTNzmhlQygSPrfSbyMQP_BYWGMKkCZZapwUxoyDOfOnuFFjZi * param_0000b210, double param_0000b211, MethodInfo * method)); +DO_APP_FUNC(0x01F1CB50, void, SDL2InputSource_TlUBkvBHXXyRSGdYCUdZshPJpqcXA, (SDL2InputSource * __this, MQXuqxolDTNzmhlQygSPrfSbyMQP_ExVsjcaJQHIrRykhyLbhejFhZHjU * param_0000b212, double param_0000b213, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, SDL2InputSource_HiXvYFMDrGDgALuMAhWgdosEPELg, (SDL2InputSource * __this, MQXuqxolDTNzmhlQygSPrfSbyMQP_rsjyJalPbUAnIDSqvvIVAUhdVUyv * param_0000b214, double param_0000b215, MethodInfo * method)); +DO_APP_FUNC(0x01F1CB90, void, SDL2InputSource_PePRYfSZRyREJhIDGQjaTGaYgZEm, (SDL2InputSource * __this, MQXuqxolDTNzmhlQygSPrfSbyMQP_NJZeSIpLpELmQeHounjwnphENMLl * param_0000b216, MethodInfo * method)); +DO_APP_FUNC(0x01F1CBE0, void, SDL2InputSource_ZbDTbZOsFCdCqaczLmPCokqRtHCP, (SDL2InputSource * __this, MQXuqxolDTNzmhlQygSPrfSbyMQP_NJZeSIpLpELmQeHounjwnphENMLl * param_0000b217, MethodInfo * method)); +DO_APP_FUNC(0x01F1CD00, void, SDL2InputSource_uoiXkDBsABKLCfEtqJWWbDJHJMfv, (SDL2InputSource * __this, MQXuqxolDTNzmhlQygSPrfSbyMQP_fkaeudwEJXamemKLebDVxKyizDwh * param_0000b218, double param_0000b219, MethodInfo * method)); +DO_APP_FUNC(0x01F1CD40, void, SDL2InputSource_LNXHyQYYdhkKOQPDNSLxirHhPUWw, (SDL2InputSource * __this, MQXuqxolDTNzmhlQygSPrfSbyMQP_EDRMzeVDpkxuVXCYRCZGRVVSFsNM * param_0000b21a, double param_0000b21b, MethodInfo * method)); +DO_APP_FUNC(0x01F1CD80, void, SDL2InputSource_aQuEPAizPIamIpKGNEbElSWTpXdoA, (SDL2InputSource * __this, MQXuqxolDTNzmhlQygSPrfSbyMQP_kPDMdMsAaUIPSgXaYfVwGqOksJbJ * param_0000b21c, MethodInfo * method)); +DO_APP_FUNC(0x01F1CDD0, void, SDL2InputSource_CxTWsPoKWweQQQdcULFvgVcZXJhi, (SDL2InputSource * __this, MQXuqxolDTNzmhlQygSPrfSbyMQP_kPDMdMsAaUIPSgXaYfVwGqOksJbJ * param_0000b21d, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, SDL2InputSource_jvgedsVmXrxgrxLPxtMqmLDPjlOfA, (SDL2InputSource * __this, MQXuqxolDTNzmhlQygSPrfSbyMQP_kPDMdMsAaUIPSgXaYfVwGqOksJbJ * param_0000b21e, MethodInfo * method)); DO_APP_FUNC(0x01F1CEF0, void, SDL2InputSource_msLGKlCOZLgnPccplQHqHcSAaAFXB, (SDL2InputSource * __this, int32_t param_0000b21f, ouBlVRHXrStnRscoygcvLiAmkaUg__Enum param_0000b220, uint8_t param_0000b221, int16_t param_0000b222, double param_0000b223, MethodInfo * method)); DO_APP_FUNC(0x01F1CFB0, void, SDL2InputSource_fZxHKqFnXwFFfoZjApAxEIRyshoi, (SDL2InputSource * __this, int32_t param_0000b224, ouBlVRHXrStnRscoygcvLiAmkaUg__Enum param_0000b225, uint8_t param_0000b226, int16_t param_0000b227, double param_0000b228, MethodInfo * method)); DO_APP_FUNC(0x01F1D070, void, SDL2InputSource_XbVxLTIpkWNkRiQjkpqPTYCYPrBr, (SDL2InputSource * __this, MethodInfo * method)); @@ -44961,6 +52899,7 @@ DO_APP_FUNC(0x01F1D9B0, void, nPRqIoqySXhujbVkqhHKfdEBznFW__ctor, (nPRqIoqySXhuj DO_APP_FUNC(0x01F1DA00, void, nPRqIoqySXhujbVkqhHKfdEBznFW__ctor_1, (nPRqIoqySXhujbVkqhHKfdEBznFW * __this, ehWGkbOICubTwdqQCMLaOvUVfuqgb * param_0000b25e, ICcCkPZMXjVJgraTglJlgUOQjgBK * param_0000b25f, YwWTDJySAQiwOIDVAfgchzhGBXGDb__Enum param_0000b260, MethodInfo * method)); DO_APP_FUNC(0x01F1DA50, void, nPRqIoqySXhujbVkqhHKfdEBznFW__ctor_2, (nPRqIoqySXhujbVkqhHKfdEBznFW * __this, axoAbLvhMgAkdIbSyZIvgvHFbIrc * param_0000b261, ICcCkPZMXjVJgraTglJlgUOQjgBK * param_0000b262, YwWTDJySAQiwOIDVAfgchzhGBXGDb__Enum param_0000b263, int32_t param_0000b264, int32_t param_0000b265, int32_t param_0000b266, int32_t param_0000b267, MethodInfo * method)); DO_APP_FUNC(0x01F1DDE0, void, nPRqIoqySXhujbVkqhHKfdEBznFW_ZoDbkNKFlXFxAHENCTiSSpvcgFGj, (nPRqIoqySXhujbVkqhHKfdEBznFW * __this, ouBlVRHXrStnRscoygcvLiAmkaUg__Enum param_0000b268, uint8_t param_0000b269, int16_t param_0000b26a, double param_0000b26b, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEE940, nPRqIoqySXhujbVkqhHKfdEBznFW_ZoDbkNKFlXFxAHENCTiSSpvcgFGj__MethodInfo); DO_APP_FUNC(0x01F1DEE0, void, nPRqIoqySXhujbVkqhHKfdEBznFW_XUYlHArjcZHIIZmMQVtfQqgGDltj, (nPRqIoqySXhujbVkqhHKfdEBznFW * __this, UpdateLoopType__Enum param_0000b26c, MethodInfo * method)); DO_APP_FUNC(0x01F1DF40, void, nPRqIoqySXhujbVkqhHKfdEBznFW_bwfPLqhXThNvsKpBRCsweivBvAleA, (nPRqIoqySXhujbVkqhHKfdEBznFW * __this, MethodInfo * method)); DO_APP_FUNC(0x003CD440, int32_t, nPRqIoqySXhujbVkqhHKfdEBznFW_SoGfanwQXLGzStQeaItvgikGaAPIb, (nPRqIoqySXhujbVkqhHKfdEBznFW * __this, MethodInfo * method)); @@ -44982,11 +52921,13 @@ DO_APP_FUNC(0x01F1E9C0, void, nPRqIoqySXhujbVkqhHKfdEBznFW_MJReStRwfXZbRCKKgsCAP DO_APP_FUNC(0x01F1EAC0, float, nPRqIoqySXhujbVkqhHKfdEBznFW_YsARNdXTcbPPMJgRdeECdcQDeXTK, (nPRqIoqySXhujbVkqhHKfdEBznFW * __this, int32_t param_0000b273, MethodInfo * method)); DO_APP_FUNC(0x01F1EB10, int32_t, nPRqIoqySXhujbVkqhHKfdEBznFW_QyzgBYwMaXivzcVJolEMmmAnfZsqA, (nPRqIoqySXhujbVkqhHKfdEBznFW * __this, int16_t param_0000b274, MethodInfo * method)); DO_APP_FUNC(0x01F1EBA0, void, ICcCkPZMXjVJgraTglJlgUOQjgBK_hXyydGiwFFUaerECStnpfBcKDoOAA, (ICcCkPZMXjVJgraTglJlgUOQjgBK * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEE8D0, ICcCkPZMXjVJgraTglJlgUOQjgBK_hXyydGiwFFUaerECStnpfBcKDoOAA__MethodInfo); DO_APP_FUNC(0x01F1EE80, String *, ICcCkPZMXjVJgraTglJlgUOQjgBK_puyyohkruQkIUNABhtMvSnGscDCS, (ICcCkPZMXjVJgraTglJlgUOQjgBK * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ICcCkPZMXjVJgraTglJlgUOQjgBK__ctor, (ICcCkPZMXjVJgraTglJlgUOQjgBK * __this, MethodInfo * method)); DO_APP_FUNC(0x01F1F3C0, String__Array *, QFaISGkpTwCccmuOeOEOZXPNWIaD_hkOwGcojFhIfBvEpmCQbExumxkXoA, (MethodInfo * method)); DO_APP_FUNC(0x01F1F530, String__Array *, QFaISGkpTwCccmuOeOEOZXPNWIaD_VlnfLRdNWyvGsjDwncMobIXxDuvzA, (Byte__Array * param_0000b275, MethodInfo * method)); DO_APP_FUNC(0x01F1F670, String *, QFaISGkpTwCccmuOeOEOZXPNWIaD_IKPqJEBdGjXZkAAMaMHhpkAKLjhB, (Byte__Array * param_0000b276, Byte__Array * param_0000b277, Byte__Array * param_0000b278, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEE8D8, QFaISGkpTwCccmuOeOEOZXPNWIaD_IKPqJEBdGjXZkAAMaMHhpkAKLjhB__MethodInfo); DO_APP_FUNC(0x01F1FB90, Byte__Array *, QFaISGkpTwCccmuOeOEOZXPNWIaD_FUIjLAIPibFpRHemIliOKeMuezaUA, (MethodInfo * method)); DO_APP_FUNC(0x01F1FC00, Byte__Array *, QFaISGkpTwCccmuOeOEOZXPNWIaD_gIibBhkhosHQmqUSQizqLjKmEZEdA, (MethodInfo * method)); DO_APP_FUNC(0x01F1FC70, Byte__Array *, QFaISGkpTwCccmuOeOEOZXPNWIaD_JQSnCKMcqSUBltIezaExaAUAJiDWA, (MethodInfo * method)); @@ -45040,21 +52981,27 @@ DO_APP_FUNC(0x01F226F0, int32_t, CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf DO_APP_FUNC(0x01F22830, void, CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf_hugsFbKZfWraiQkiGFWQikzsmvDj, (CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf * __this, BridgedControllerHWInfo * param_0000b2ab, MethodInfo * method)); DO_APP_FUNC(0x01F22950, void, CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf_hugsFbKZfWraiQkiGFWQikzsmvDj_1, (CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf * __this, BridgedController * param_0000b2ac, MethodInfo * method)); DO_APP_FUNC(0x01F22C00, void, CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf_FillData, (CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf * __this, ControllerDataUpdater * dataUpdater, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEE7B8, CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf_FillData__MethodInfo); DO_APP_FUNC(0x01F22D40, BridgedControllerHWInfo *, CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf_GBKpRaKkozAlrfTWcfBobtBEXJSEA, (CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf * __this, MethodInfo * method)); DO_APP_FUNC(0x01F22DB0, BridgedController *, CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf_ToBridgedController, (CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf * __this, MethodInfo * method)); DO_APP_FUNC(0x01F22E20, ControllerDisconnectedEventArgs *, CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf_ToControllerDisconnectedEventArgs, (CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf * __this, MethodInfo * method)); DO_APP_FUNC(0x01F22EC0, void, CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf_HIIydJwkxPRjeUmnKMhynZSlhZFr, (CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEE7B0, CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf_HIIydJwkxPRjeUmnKMhynZSlhZFr__MethodInfo); DO_APP_FUNC(0x01F23090, void, CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf_qgkozYJKRLUdDDRvgDzLkjaguBYt, (CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEE7E8, CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf_qgkozYJKRLUdDDRvgDzLkjaguBYt__MethodInfo); DO_APP_FUNC(0x01F23220, bool, CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf_fPEIieuOrXYRdNGxxzydLWhVnvVE, (CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf * __this, HardwareJoystickMap_Platform_Custom_Button * param_0000b2ae, MethodInfo * method)); DO_APP_FUNC(0x01F232F0, bool, CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf_IsWYiKskLiCGBxoAqmaZKpCqaMghA, (CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf * __this, float param_0000b2af, float param_0000b2b0, MethodInfo * method)); DO_APP_FUNC(0x01F23320, float, CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf_XAXNwRQUnmcOzPeHVLVuoeCfedSaA, (CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf * __this, HardwareJoystickMap_Platform_Custom_Axis * param_0000b2b1, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEE7F0, CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf_XAXNwRQUnmcOzPeHVLVuoeCfedSaA__MethodInfo); DO_APP_FUNC(0x01F23400, float, CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf_XAXNwRQUnmcOzPeHVLVuoeCfedSaA_1, (CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf * __this, int32_t param_0000b2b2, MethodInfo * method)); DO_APP_FUNC(0x01F23430, bool, CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf_fPEIieuOrXYRdNGxxzydLWhVnvVE_1, (CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf * __this, int32_t param_0000b2b3, MethodInfo * method)); DO_APP_FUNC(0x01F23460, void, CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf_QiRaNfkfgHgWUjtXCaMEyCrzuWuLA, (CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf * __this, MethodInfo * method)); DO_APP_FUNC(0x01F235B0, void, CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf_eCXpDHcIiDStWqAgQeoedOPBdXBb, (CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf * __this, MethodInfo * method)); DO_APP_FUNC(0x01F23600, String *, CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf_WgGjQqIqpQMBHjXuEtRmypmSzSlH, (CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf * __this, MethodInfo * method)); DO_APP_FUNC(0x01F239C0, int32_t, CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf_jYdTCDXHeXzSAQlNQesAGmuXqlUdb, (CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf * param_0000b2b4, CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf * param_0000b2b5, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEE808, CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf_jYdTCDXHeXzSAQlNQesAGmuXqlUdb__MethodInfo); DO_APP_FUNC(0x01F23A00, int32_t, CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf_EflFtVfHZzotDslCOrgZGUrnZZym, (CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf * param_0000b2b6, CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf * param_0000b2b7, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEE800, CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf_EflFtVfHZzotDslCOrgZGUrnZZym__MethodInfo); DO_APP_FUNC(0x01F23AC0, void, CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ__ctor, (CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ * __this, MethodInfo * method)); DO_APP_FUNC(0x01F23B90, int32_t, CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ_VJsfGkCeXFnNPjNkvMaQfRowrhXo, (CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ * __this, MethodInfo * method)); DO_APP_FUNC(0x01F23BE0, void, CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ_uHctqJCHbChBJfvVwkwSXBHumPvzA, (CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ * __this, CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf * param_0000b2b8, MethodInfo * method)); @@ -45064,11 +53011,13 @@ DO_APP_FUNC(0x01F24190, int32_t, CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ DO_APP_FUNC(0x01F24240, void, CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ_KlkBjwjuozSIWjtafFupuZDYyxHfA, (CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ * __this, int32_t param_0000b2be, int32_t param_0000b2bf, MethodInfo * method)); DO_APP_FUNC(0x01F24310, void, CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ_seWhRdmkWxldKiJZidihirlhHhzS__ctor, (CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ_seWhRdmkWxldKiJZidihirlhHhzS * __this, int32_t param_0000b2c0, Nullable_1_Int64_ param_0000b2c1, String * param_0000b2c2, int32_t param_0000b2c3, int32_t param_0000b2c4, int32_t param_0000b2c5, MethodInfo * method)); DO_APP_FUNC(0x01F24390, bool, CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ_seWhRdmkWxldKiJZidihirlhHhzS_NWhioGIQTHWIJiNJWGzSJyccbFph, (CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ_seWhRdmkWxldKiJZidihirlhHhzS * __this, CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf * param_0000b2c6, CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ_ymXxwKKGFJCsuxCvpAvnbJAjhFaD__Enum param_0000b2c7, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEE798, CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ_seWhRdmkWxldKiJZidihirlhHhzS_NWhioGIQTHWIJiNJWGzSJyccbFph__MethodInfo); DO_APP_FUNC(0x00FDB5B0, void, CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ_jqZjrYrETeuBxPsOelqcapQOJEVr__ctor, (CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ_jqZjrYrETeuBxPsOelqcapQOJEVr * __this, int32_t param_0000b2c8, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ_jqZjrYrETeuBxPsOelqcapQOJEVr_System_IDisposable_Dispose, (CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ_jqZjrYrETeuBxPsOelqcapQOJEVr * __this, MethodInfo * method)); DO_APP_FUNC(0x01F24530, bool, CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ_jqZjrYrETeuBxPsOelqcapQOJEVr_MoveNext, (CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ_jqZjrYrETeuBxPsOelqcapQOJEVr * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ_seWhRdmkWxldKiJZidihirlhHhzS *, CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ_jqZjrYrETeuBxPsOelqcapQOJEVr_System_Collections_Generic_IEnumerator_Rewired_InputManagers_CustomInputManager_JoystickRecords_Record__get_Current, (CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ_jqZjrYrETeuBxPsOelqcapQOJEVr * __this, MethodInfo * method)); DO_APP_FUNC(0x01F24660, void, CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ_jqZjrYrETeuBxPsOelqcapQOJEVr_System_Collections_IEnumerator_Reset, (CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ_jqZjrYrETeuBxPsOelqcapQOJEVr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEE790, CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ_jqZjrYrETeuBxPsOelqcapQOJEVr_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ_jqZjrYrETeuBxPsOelqcapQOJEVr_System_Collections_IEnumerator_get_Current, (CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ_jqZjrYrETeuBxPsOelqcapQOJEVr * __this, MethodInfo * method)); DO_APP_FUNC(0x01F246B0, IEnumerator_1_Rewired_InputManagers_CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ_seWhRdmkWxldKiJZidihirlhHhzS_ *, CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ_jqZjrYrETeuBxPsOelqcapQOJEVr_System_Collections_Generic_IEnumerable_Rewired_InputManagers_CustomInputManager_JoystickRecords_Record__GetEnumerator, (CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ_jqZjrYrETeuBxPsOelqcapQOJEVr * __this, MethodInfo * method)); DO_APP_FUNC(0x01F24870, IEnumerator *, CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ_jqZjrYrETeuBxPsOelqcapQOJEVr_System_Collections_IEnumerable_GetEnumerator, (CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ_jqZjrYrETeuBxPsOelqcapQOJEVr * __this, MethodInfo * method)); @@ -45083,10 +53032,10 @@ DO_APP_FUNC(0x01F24D40, void, HIDButton_UpdateValue, (HIDButton * __this, Native DO_APP_FUNC(0x003BCE40, void, HidAsyncState__ctor, (HidAsyncState * __this, Object * param_0000b2dd, Object * param_0000b2de, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, Object *, HidAsyncState_get_CallerDelegate, (HidAsyncState * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, HidAsyncState_get_CallbackDelegate, (HidAsyncState * __this, MethodInfo * method)); -DO_APP_FUNC(0x01F24D80, bool, OutputReport_get_IsValid, (OutputReport__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01F24DE0, void, OutputReport__ctor, (OutputReport__Boxed * __this, void * param_0000b2df, int32_t param_0000b2e0, int32_t param_0000b2e1, MethodInfo * method)); -DO_APP_FUNC(0x01F24E00, void, OutputReport_Clear, (OutputReport__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01F24E50, String *, OutputReport_ToString, (OutputReport__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01F24D80, bool, OutputReport_get_IsValid, (OutputReport * __this, MethodInfo * method)); +DO_APP_FUNC(0x01F24DE0, void, OutputReport__ctor, (OutputReport * __this, void * param_0000b2df, int32_t param_0000b2e0, int32_t param_0000b2e1, MethodInfo * method)); +DO_APP_FUNC(0x01F24E00, void, OutputReport_Clear, (OutputReport * __this, MethodInfo * method)); +DO_APP_FUNC(0x01F24E50, String *, OutputReport_ToString, (OutputReport * __this, MethodInfo * method)); DO_APP_FUNC(0x018DDE30, void, HIDControllerElement__ctor, (HIDControllerElement * __this, uint8_t param_0000b2e2, HIDControllerElement_HIDInfo * param_0000b2e3, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HIDControllerElement_HIDInfo__ctor, (HIDControllerElement_HIDInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01F25260, void, HIDControllerElementWithDataSet__ctor, (HIDControllerElementWithDataSet * __this, HIDControllerElementWithDataSet_ASMmrihpIiTrkMOmCEZdkAAKnIBH * param_0000b2e6, uint8_t param_0000b2e7, HIDControllerElement_HIDInfo * param_0000b2e8, MethodInfo * method)); @@ -45111,6 +53060,7 @@ DO_APP_FUNC(0x01F26380, void, HIDGyroscope_oyQEIyEFFCVNxMOmToIeucmCzNzMA__ctor, DO_APP_FUNC(0x01F26440, void, HIDGyroscope_oyQEIyEFFCVNxMOmToIeucmCzNzMA_XUYlHArjcZHIIZmMQVtfQqgGDltj, (HIDGyroscope_oyQEIyEFFCVNxMOmToIeucmCzNzMA * __this, UpdateLoopType__Enum param_0000b2ff, MethodInfo * method)); DO_APP_FUNC(0x01F26570, void, HIDGyroscope_oyQEIyEFFCVNxMOmToIeucmCzNzMA_TbbSdEUXggPTLVxBypHcfOkYUtZh, (HIDGyroscope_oyQEIyEFFCVNxMOmToIeucmCzNzMA * __this, Single__Array * param_0000b300, float param_0000b301, MethodInfo * method)); DO_APP_FUNC(0x01F26680, HIDControllerElementWithDataSet_oBWNdsGlGNkIvPlfnFirbraBbQXRA *, HIDGyroscope_oyQEIyEFFCVNxMOmToIeucmCzNzMA_sXfluydwLekRlzkuflQQwcJLClzA, (HIDGyroscope_oyQEIyEFFCVNxMOmToIeucmCzNzMA * __this, UpdateLoopType__Enum param_0000b302, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEE6B0, HIDGyroscope_oyQEIyEFFCVNxMOmToIeucmCzNzMA_sXfluydwLekRlzkuflQQwcJLClzA__MethodInfo); DO_APP_FUNC(0x01F26710, void, HIDGyroscope_HthzinbRugoaagzayJvkuiHIZxnA__ctor, (HIDGyroscope_HthzinbRugoaagzayJvkuiHIZxnA * __this, UpdateLoopType__Enum param_0000b303, int32_t param_0000b304, int32_t param_0000b305, MethodInfo * method)); DO_APP_FUNC(0x01F26B20, void, HIDGyroscope_HthzinbRugoaagzayJvkuiHIZxnA_XUYlHArjcZHIIZmMQVtfQqgGDltj, (HIDGyroscope_HthzinbRugoaagzayJvkuiHIZxnA * __this, MethodInfo * method)); DO_APP_FUNC(0x01F26E40, void, HIDGyroscope_HthzinbRugoaagzayJvkuiHIZxnA_AGRdKRXinvTuatQfEayzKpsgPiPb, (HIDGyroscope_HthzinbRugoaagzayJvkuiHIZxnA * __this, Single__Array * param_0000b306, float param_0000b307, MethodInfo * method)); @@ -45118,6 +53068,7 @@ DO_APP_FUNC(0x01F27000, void, HIDGyroscope_HthzinbRugoaagzayJvkuiHIZxnA_DiSEicMG DO_APP_FUNC(0x01F271F0, void, HIDGyroscope_HthzinbRugoaagzayJvkuiHIZxnA_NBCIOHrQUqInZmBseEPcjcTXyBDy__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HIDGyroscope_HthzinbRugoaagzayJvkuiHIZxnA_NBCIOHrQUqInZmBseEPcjcTXyBDy__ctor, (HIDGyroscope_HthzinbRugoaagzayJvkuiHIZxnA_NBCIOHrQUqInZmBseEPcjcTXyBDy * __this, MethodInfo * method)); DO_APP_FUNC(0x01F272A0, HIDGyroscope_DeAenLGYTqNyWDVKOCMDwbfhHVkGA *, HIDGyroscope_HthzinbRugoaagzayJvkuiHIZxnA_NBCIOHrQUqInZmBseEPcjcTXyBDy_qDNHPPjxfLifCIhfuEMjsCVMewBK, (HIDGyroscope_HthzinbRugoaagzayJvkuiHIZxnA_NBCIOHrQUqInZmBseEPcjcTXyBDy * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEE6A0, HIDGyroscope_HthzinbRugoaagzayJvkuiHIZxnA_NBCIOHrQUqInZmBseEPcjcTXyBDy_qDNHPPjxfLifCIhfuEMjsCVMewBK__MethodInfo); DO_APP_FUNC(0x003AE050, void, HIDGyroscope_DeAenLGYTqNyWDVKOCMDwbfhHVkGA__ctor, (HIDGyroscope_DeAenLGYTqNyWDVKOCMDwbfhHVkGA * __this, MethodInfo * method)); DO_APP_FUNC(0x01F272F0, void, HIDGyroscope_DeAenLGYTqNyWDVKOCMDwbfhHVkGA__ctor_1, (HIDGyroscope_DeAenLGYTqNyWDVKOCMDwbfhHVkGA * __this, Single__Array * param_0000b308, float param_0000b309, MethodInfo * method)); DO_APP_FUNC(0x01F27300, void, HIDGyroscope_DeAenLGYTqNyWDVKOCMDwbfhHVkGA_kIkezWISFZiNZPpmTjWSviJqCHRq, (HIDGyroscope_DeAenLGYTqNyWDVKOCMDwbfhHVkGA * __this, Single__Array * param_0000b30a, float param_0000b30b, MethodInfo * method)); @@ -45129,14 +53080,19 @@ DO_APP_FUNC(0x01F274B0, void, HIDHat__ctor, (HIDHat * __this, uint8_t param_0000 DO_APP_FUNC(0x01F27550, void, HIDHat__ctor_1, (HIDHat * __this, uint8_t param_0000b312, HIDControllerElement_HIDInfo * param_0000b313, Func_2_Int32_Int32_ * param_0000b314, MethodInfo * method)); DO_APP_FUNC(0x01F27650, void, HIDHat_UpdateValue, (HIDHat * __this, NativeBuffer * inputReport, double timestamp, MethodInfo * method)); DO_APP_FUNC(0x01F27740, void, HidOutputReportHandler__ctor, (HidOutputReportHandler * __this, HidOutputReportHandler_WriteReportDelegate * param_0000b317, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2C50, HidOutputReportHandler__ctor__MethodInfo); DO_APP_FUNC(0x01F27990, void, HidOutputReportHandler_WriteReport, (HidOutputReportHandler * __this, OutputReport report, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1FE0, HidOutputReportHandler_WriteReport__MethodInfo); DO_APP_FUNC(0x01F27C40, void, HidOutputReportHandler_Clear, (HidOutputReportHandler * __this, MethodInfo * method)); DO_APP_FUNC(0x01F280D0, bool, HidOutputReportHandler_YGOPOhZraSmTKLxttlgehWSSpLyI, (HidOutputReportHandler * __this, MethodInfo * method)); DO_APP_FUNC(0x01F28110, bool, HidOutputReportHandler_GXgdSeITuubyoWngTrtPnvCajYDTA, (HidOutputReportHandler * __this, MethodInfo * method)); DO_APP_FUNC(0x01F28560, void, HidOutputReportHandler_dfLZhKeVuXAIywjJGAoRGzckSACC, (HidOutputReportHandler * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HidOutputReportHandler_RVoCyEafQpkSFxsrJbRsIputQpMUA, (HidOutputReportHandler * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2C40, HidOutputReportHandler_RVoCyEafQpkSFxsrJbRsIputQpMUA__MethodInfo); DO_APP_FUNC(0x003AE050, void, HidOutputReportHandler_XyoDYDVfVvrkZUUuCBVGJhwyphch, (HidOutputReportHandler * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2C30, HidOutputReportHandler_XyoDYDVfVvrkZUUuCBVGJhwyphch__MethodInfo); DO_APP_FUNC(0x01F28730, void, HidOutputReportHandler_KiUXWnYeAjoGhflMwEpWreoIFMQGA, (HidOutputReportHandler * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2C38, HidOutputReportHandler_KiUXWnYeAjoGhflMwEpWreoIFMQGA__MethodInfo); DO_APP_FUNC(0x01F28940, void, HidOutputReportHandler_Dispose, (HidOutputReportHandler * __this, MethodInfo * method)); DO_APP_FUNC(0x0190D730, void, HidOutputReportHandler_Finalize, (HidOutputReportHandler * __this, MethodInfo * method)); DO_APP_FUNC(0x01F289B0, void, HidOutputReportHandler_Dispose_1, (HidOutputReportHandler * __this, bool disposing, MethodInfo * method)); @@ -45146,7 +53102,7 @@ DO_APP_FUNC(0x01F28AA0, IAsyncResult *, HidOutputReportHandler_WriteReportDelega DO_APP_FUNC(0x0040D6F0, bool, HidOutputReportHandler_WriteReportDelegate_EndInvoke, (HidOutputReportHandler_WriteReportDelegate * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003BCD20, bool, HidOutputReportHandler_SvOePIKdkvhWZjsxseHBTlsDmadF_rQHOrtmCAsOoJKvDtULjJmaPHJzx, (HidOutputReportHandler_SvOePIKdkvhWZjsxseHBTlsDmadF * __this, MethodInfo * method)); DO_APP_FUNC(0x01F28B30, void, HidOutputReportHandler_SvOePIKdkvhWZjsxseHBTlsDmadF__ctor, (HidOutputReportHandler_SvOePIKdkvhWZjsxseHBTlsDmadF * __this, MethodInfo * method)); -DO_APP_FUNC(0x01F28BF0, void, HidOutputReportHandler_SvOePIKdkvhWZjsxseHBTlsDmadF_ugBwJaqEqoPooFtiHRXtkuSwbWbs, (HidOutputReportHandler_SvOePIKdkvhWZjsxseHBTlsDmadF * __this, OutputReport param_0000b321, MethodInfo * method)); +DO_APP_FUNC(0x01F28BF0, void, HidOutputReportHandler_SvOePIKdkvhWZjsxseHBTlsDmadF_ugBwJaqEqoPooFtiHRXtkuSwbWbs, (HidOutputReportHandler_SvOePIKdkvhWZjsxseHBTlsDmadF * __this, OutputReport * param_0000b321, MethodInfo * method)); DO_APP_FUNC(0x01F28D00, OutputReport, HidOutputReportHandler_SvOePIKdkvhWZjsxseHBTlsDmadF_frYhhCEqJCfWAsNGAnYJTwotdjVS, (HidOutputReportHandler_SvOePIKdkvhWZjsxseHBTlsDmadF * __this, MethodInfo * method)); DO_APP_FUNC(0x01F28D50, OutputReport, HidOutputReportHandler_SvOePIKdkvhWZjsxseHBTlsDmadF_aWMbxtUFUdDQNMFGdUUfdqDcaKIM, (HidOutputReportHandler_SvOePIKdkvhWZjsxseHBTlsDmadF * __this, MethodInfo * method)); DO_APP_FUNC(0x01F28DA0, void, HidOutputReportHandler_SvOePIKdkvhWZjsxseHBTlsDmadF_sjgQXMMRIHmhSmDrVpgFKxoFoOIy, (HidOutputReportHandler_SvOePIKdkvhWZjsxseHBTlsDmadF * __this, MethodInfo * method)); @@ -45171,8 +53127,8 @@ DO_APP_FUNC(0x003AE050, void, HIDLight__ctor, (HIDLight * __this, MethodInfo * m DO_APP_FUNC(0x01F29250, void, HIDLight__ctor_1, (HIDLight * __this, uint8_t param_0000b32b, uint8_t param_0000b32c, uint8_t param_0000b32d, MethodInfo * method)); DO_APP_FUNC(0x01F29260, bool, SpecialDevices_RequiresRelativeToAbsoluteAxisConversion, (uint16_t vendorId, uint16_t productId, String * productName, MethodInfo * method)); DO_APP_FUNC(0x01F292F0, float, SpecialDevices_GetRelativeToAbsoluteAxisEventTimeout, (uint16_t vendorId, uint16_t productId, String * productName, MethodInfo * method)); -DO_APP_FUNC(0x01F29380, bool, SpecialDevices_GetRelativeAxisRanges, (uint16_t vendorId, uint16_t productId, int32_t min, int32_t max, int32_t zero, MethodInfo * method)); -DO_APP_FUNC(0x01F29420, bool, SpecialDevices_GetRelativeAxisRanges_1, (uint16_t vendorId, uint16_t productId, String * productName, int32_t min, int32_t max, int32_t zero, MethodInfo * method)); +DO_APP_FUNC(0x01F29380, bool, SpecialDevices_GetRelativeAxisRanges, (uint16_t vendorId, uint16_t productId, int32_t * min, int32_t * max, int32_t * zero, MethodInfo * method)); +DO_APP_FUNC(0x01F29420, bool, SpecialDevices_GetRelativeAxisRanges_1, (uint16_t vendorId, uint16_t productId, String * productName, int32_t * min, int32_t * max, int32_t * zero, MethodInfo * method)); DO_APP_FUNC(0x01F29640, bool, SpecialDevices_IsSupportedSpecialDevice, (uint16_t vendorId, uint16_t productId, String * productName, MethodInfo * method)); DO_APP_FUNC(0x01F297C0, bool, SpecialDevices_UgWvZOoOXYDcvmAcOCdpvCSiDCcS, (uint16_t param_0000b342, uint16_t param_0000b343, String * param_0000b344, MethodInfo * method)); DO_APP_FUNC(0x01F29900, SpecialDevices_LmfQOMWqeEMyploFNrEhFJQZfChb *, SpecialDevices_KlgaIUtTmhZkPhbkCpopAIZOLFeP, (uint16_t param_0000b345, uint16_t param_0000b346, String * param_0000b347, MethodInfo * method)); @@ -45186,10 +53142,11 @@ DO_APP_FUNC(0x01F2A4C0, void, HIDTouchpad_UpdateValue, (HIDTouchpad * __this, Na DO_APP_FUNC(0x01F2A790, void, HIDTouchpad_ProcessQueue, (HIDTouchpad * __this, MethodInfo * method)); DO_APP_FUNC(0x01F2AB80, bool, HIDTouchpad_IsTouching, (HIDTouchpad * __this, int32_t touchId, MethodInfo * method)); DO_APP_FUNC(0x01F2ABF0, HIDTouchpad_MEbbjOIqfeMIvctgibbviaUtKhNTA *, HIDTouchpad_QzyZaNpDZGKqRBFkcEbdHnPbmJRsA, (HIDTouchpad * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2C00, HIDTouchpad_QzyZaNpDZGKqRBFkcEbdHnPbmJRsA__MethodInfo); DO_APP_FUNC(0x01F2ACE0, void, HIDTouchpad_TouchpadInfo__ctor, (HIDTouchpad_TouchpadInfo * __this, int32_t param_0000b35e, int32_t param_0000b35f, int32_t param_0000b360, int32_t param_0000b361, int32_t param_0000b362, bool param_0000b363, bool param_0000b364, MethodInfo * method)); -DO_APP_FUNC(0x01F2AD10, void, HIDTouchpad_TouchpadInfo_CalculateTouch, (HIDTouchpad_TouchpadInfo * __this, HIDTouchpad_TouchData data, MethodInfo * method)); +DO_APP_FUNC(0x01F2AD10, void, HIDTouchpad_TouchpadInfo_CalculateTouch, (HIDTouchpad_TouchpadInfo * __this, HIDTouchpad_TouchData * data, MethodInfo * method)); DO_APP_FUNC(0x01F2AE10, void, HIDTouchpad_MEbbjOIqfeMIvctgibbviaUtKhNTA__ctor, (HIDTouchpad_MEbbjOIqfeMIvctgibbviaUtKhNTA * __this, int32_t param_0000b366, MethodInfo * method)); -DO_APP_FUNC(0x01F2AEB0, void, HIDTouchpad_TouchData_Clear, (HIDTouchpad_TouchData__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01F2AEB0, void, HIDTouchpad_TouchData_Clear, (HIDTouchpad_TouchData * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, wXqziDxSDQplKHYMGHUBhtdrPExn__ctor, (wXqziDxSDQplKHYMGHUBhtdrPExn * __this, MethodInfo * method)); DO_APP_FUNC(0x01F2AED0, void, HIDVibrationMotor_add_ValueChangedEvent, (HIDVibrationMotor * __this, Action * value, MethodInfo * method)); DO_APP_FUNC(0x01F2AFC0, void, HIDVibrationMotor_remove_ValueChangedEvent, (HIDVibrationMotor * __this, Action * value, MethodInfo * method)); @@ -45236,13 +53193,14 @@ DO_APP_FUNC(0x01F2BD70, int32_t, DualSenseDriver_GetTouchCount, (DualSenseDriver DO_APP_FUNC(0x01F2BDE0, bool, DualSenseDriver_IsTouchingAtIndex, (DualSenseDriver * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01F2BE40, bool, DualSenseDriver_IsTouchingAtTouchId, (DualSenseDriver * __this, int32_t touchId, MethodInfo * method)); DO_APP_FUNC(0x01F2BE80, int32_t, DualSenseDriver_GetTouchIdAtIndex, (DualSenseDriver * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01F2BEE0, bool, DualSenseDriver_GetTouchPositionByIndex, (DualSenseDriver * __this, int32_t index, Vector2 position, MethodInfo * method)); -DO_APP_FUNC(0x01F2BF60, bool, DualSenseDriver_GetTouchPositionByTouchId, (DualSenseDriver * __this, int32_t touchId, Vector2 position, MethodInfo * method)); -DO_APP_FUNC(0x01F2C040, bool, DualSenseDriver_GetTouchPositionAbsoluteByIndex, (DualSenseDriver * __this, int32_t index, int32_t positionX, int32_t positionY, MethodInfo * method)); -DO_APP_FUNC(0x01F2C0C0, bool, DualSenseDriver_GetTouchPositionAbsoluteByTouchId, (DualSenseDriver * __this, int32_t touchId, int32_t positionX, int32_t positionY, MethodInfo * method)); +DO_APP_FUNC(0x01F2BEE0, bool, DualSenseDriver_GetTouchPositionByIndex, (DualSenseDriver * __this, int32_t index, Vector2 * position, MethodInfo * method)); +DO_APP_FUNC(0x01F2BF60, bool, DualSenseDriver_GetTouchPositionByTouchId, (DualSenseDriver * __this, int32_t touchId, Vector2 * position, MethodInfo * method)); +DO_APP_FUNC(0x01F2C040, bool, DualSenseDriver_GetTouchPositionAbsoluteByIndex, (DualSenseDriver * __this, int32_t index, int32_t * positionX, int32_t * positionY, MethodInfo * method)); +DO_APP_FUNC(0x01F2C0C0, bool, DualSenseDriver_GetTouchPositionAbsoluteByTouchId, (DualSenseDriver * __this, int32_t touchId, int32_t * positionX, int32_t * positionY, MethodInfo * method)); DO_APP_FUNC(0x01F2C1A0, void, DualSenseDriver_StopLightFlash, (DualSenseDriver * __this, MethodInfo * method)); DO_APP_FUNC(0x01F2C1C0, void, DualSenseDriver_StopVibration, (DualSenseDriver * __this, MethodInfo * method)); DO_APP_FUNC(0x01F2C250, void, DualSenseDriver__ctor, (DualSenseDriver * __this, HIDDeviceDriver_InitArgs * param_0000b386, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2B38, DualSenseDriver__ctor__MethodInfo); DO_APP_FUNC(0x01F2DCD0, void, DualSenseDriver_Update, (DualSenseDriver * __this, UpdateLoopType__Enum updateLoop, MethodInfo * method)); DO_APP_FUNC(0x01F2DEC0, bool, DualSenseDriver_ParseInputReport, (DualSenseDriver * __this, void * inputReportPtr, int32_t inputReportLength, double timestamp, MethodInfo * method)); DO_APP_FUNC(0x01F2E350, Controller_Extension *, DualSenseDriver_CreateControllerExtension, (DualSenseDriver * __this, MethodInfo * method)); @@ -45251,12 +53209,13 @@ DO_APP_FUNC(0x01F2E420, bool, DualSenseDriver_DXwCWVrliAfocSXRyMqUDjNEaZEU, (Dua DO_APP_FUNC(0x01F2E470, void, DualSenseDriver_mIaTlNMruKgPSGfuCmVPIfwyAaOkA, (DualSenseDriver * __this, MethodInfo * method)); DO_APP_FUNC(0x01F2E6A0, void, DualSenseDriver_mIaTlNMruKgPSGfuCmVPIfwyAaOkA_1, (DualSenseDriver * __this, NativeBuffer * param_0000b38d, int32_t param_0000b38e, MethodInfo * method)); DO_APP_FUNC(0x01F2E8B0, bool, DualSenseDriver_ZfAZIIXhMZdKOboQXjAjYKbKqbSn, (DualSenseDriver * __this, XYXgPXbRzdPUazjZsvaGFTtfNAAW__Enum param_0000b38f, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2A80, DualSenseDriver_ZfAZIIXhMZdKOboQXjAjYKbKqbSn__MethodInfo); DO_APP_FUNC(0x01F2EA00, void, DualSenseDriver_qgkozYJKRLUdDDRvgDzLkjaguBYt, (DualSenseDriver * __this, NativeBuffer * param_0000b390, double param_0000b391, MethodInfo * method)); DO_APP_FUNC(0x01F2ED60, void, DualSenseDriver_ArmgsfOJaNfgVyvHnMpOmpthLxzg, (DualSenseDriver * __this, HIDControllerElement__Array * param_0000b392, NativeBuffer * param_0000b393, double param_0000b394, MethodInfo * method)); DO_APP_FUNC(0x01F2EDE0, void, DualSenseDriver_uOHEtfOVdTSrLZxgjrDTDXKgmkAT, (DualSenseDriver * __this, MethodInfo * method)); DO_APP_FUNC(0x01F2EE80, void, DualSenseDriver_xNEFLscWMzSCHPgvyPbHEaQOSwrab, (DualSenseDriver * __this, NativeBuffer * param_0000b395, MethodInfo * method)); DO_APP_FUNC(0x01F2EFF0, void, DualSenseDriver_fIBKgdwQhORwYaeVHuaOzzQtsFQN, (DualSenseDriver * __this, MethodInfo * method)); -DO_APP_FUNC(0x01F2F270, bool, DualSenseDriver_ODApnPWLkzfHMgVJlgcEhwviqSlzb, (Vector3 param_0000b396, MethodInfo * method)); +DO_APP_FUNC(0x01F2F270, bool, DualSenseDriver_ODApnPWLkzfHMgVJlgcEhwviqSlzb, (Vector3 * param_0000b396, MethodInfo * method)); DO_APP_FUNC(0x01F2F2B0, void, DualSenseDriver_ullQaAfwSwgDYpGqybrNJlOtsiTQA, (DualSenseDriver * __this, Vector3 param_0000b397, Vector3 param_0000b398, MethodInfo * method)); DO_APP_FUNC(0x01F300F0, Quaternion, DualSenseDriver_ZjSDcnANRhcQurKoOlgZwzkDxYchA, (Quaternion param_0000b399, Vector3 param_0000b39a, MethodInfo * method)); DO_APP_FUNC(0x01F30240, Vector3, DualSenseDriver_jOMyyNJRMuBaiHFvARoaGYQsstoJ, (Vector3 param_0000b39b, Vector3 param_0000b39c, MethodInfo * method)); @@ -45268,25 +53227,33 @@ DO_APP_FUNC(0x01F30740, Quaternion, DualSenseDriver_wLgAAtvFspQdNeZMxRCqLAAGLQmb DO_APP_FUNC(0x01F30890, Quaternion, DualSenseDriver_tGLldonrjUOnKXBxlUNDLDZWimBL, (DualSenseDriver * __this, Vector3 param_0000b3a6, float param_0000b3a7, MethodInfo * method)); DO_APP_FUNC(0x01F30CF0, float, DualSenseDriver_DHRmhMQDczhciVtbsFzpcsKoAQNm, (DualSenseDriver * __this, Vector3 param_0000b3a8, MethodInfo * method)); DO_APP_FUNC(0x01F30D20, bool, DualSenseDriver_SuuttLiyPELdINOGtjcxxgygjNUL, (DualSenseDriver * __this, float param_0000b3a9, MethodInfo * method)); -DO_APP_FUNC(0x01F30D40, bool, DualSenseDriver_JVEjAktAwmArKjXnIElXQBDbJakjb, (DualSenseDriver * __this, Vector3 param_0000b3aa, DualSenseDriver_RcqfYUfqOIDRmHvdeWVWGXJJzVYFA__Enum param_0000b3ab, MethodInfo * method)); +DO_APP_FUNC(0x01F30D40, bool, DualSenseDriver_JVEjAktAwmArKjXnIElXQBDbJakjb, (DualSenseDriver * __this, Vector3 param_0000b3aa, DualSenseDriver_RcqfYUfqOIDRmHvdeWVWGXJJzVYFA__Enum * param_0000b3ab, MethodInfo * method)); DO_APP_FUNC(0x01F30E70, bool, DualSenseDriver_fJXPhNZiNOAETEPezplwLiNyvJmk, (DualSenseDriver * __this, Vector3 param_0000b3ac, MethodInfo * method)); DO_APP_FUNC(0x01F30F00, bool, DualSenseDriver_WrnQgGfJddXUKsgiiDyOUFtLXjeQ, (DualSenseDriver * __this, Vector3 param_0000b3ad, MethodInfo * method)); DO_APP_FUNC(0x01F30F60, Vector3, DualSenseDriver_tDSIgoUEXeMwdZIKdBanOitoHCtE, (DualSenseDriver * __this, Single__Array * param_0000b3ae, MethodInfo * method)); DO_APP_FUNC(0x01F30FE0, Vector3, DualSenseDriver_hUMoiJNgUuUQrcRwKsAmNFKuXAtt, (DualSenseDriver * __this, RingBuffer_1_Rewired_HID_HIDGyroscope_DeAenLGYTqNyWDVKOCMDwbfhHVkGA_ * param_0000b3af, MethodInfo * method)); DO_APP_FUNC(0x01F311F0, Vector3, DualSenseDriver_hUMoiJNgUuUQrcRwKsAmNFKuXAtt_1, (DualSenseDriver * __this, Vector3 param_0000b3b0, float param_0000b3b1, MethodInfo * method)); DO_APP_FUNC(0x01F31280, int32_t, DualSenseDriver_JTLgjtKHAIdtMYUEOMboNaMvEPpG, (DualSenseDriver * __this, int32_t param_0000b3b2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2B18, DualSenseDriver_JTLgjtKHAIdtMYUEOMboNaMvEPpG__MethodInfo); DO_APP_FUNC(0x01F31290, void, DualSenseDriver_NqxVoYvCyIuzuyVyYmKLcbzoIXjG, (DualSenseDriver * __this, Byte__Array * param_0000b3b3, Single__Array * param_0000b3b4, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2B00, DualSenseDriver_NqxVoYvCyIuzuyVyYmKLcbzoIXjG__MethodInfo); DO_APP_FUNC(0x01F313B0, void, DualSenseDriver_OscteRSQBkKYSwZmwKlSzpzAeNOT, (DualSenseDriver * __this, Byte__Array * param_0000b3b5, Single__Array * param_0000b3b6, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2B08, DualSenseDriver_OscteRSQBkKYSwZmwKlSzpzAeNOT__MethodInfo); DO_APP_FUNC(0x01D58270, float, DualSenseDriver_ZVrVhrUsAvPXZfyvTkElwZyCrGZG, (DualSenseDriver * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2AF8, DualSenseDriver_ZVrVhrUsAvPXZfyvTkElwZyCrGZG__MethodInfo); DO_APP_FUNC(0x01F314D0, void, DualSenseDriver_EArRvjGtdexbkgKEDYeBxckHHBCcA, (DualSenseDriver * __this, NativeBuffer * param_0000b3b7, HIDTouchpad_TouchData__Array * param_0000b3b8, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2B10, DualSenseDriver_EArRvjGtdexbkgKEDYeBxckHHBCcA__MethodInfo); DO_APP_FUNC(0x01F316D0, int32_t, DualSenseDriver_GSYGKXEJVnzcYgSecTvqWoBSzPiQ, (DualSenseDriver * __this, int32_t param_0000b3b9, bool param_0000b3ba, int32_t param_0000b3bb, MethodInfo * method)); DO_APP_FUNC(0x01F317E0, void, DualSenseDriver_XpISNZpfUlfyLCaNFdKuuzzbMoAl, (DualSenseDriver * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2AF0, DualSenseDriver_XpISNZpfUlfyLCaNFdKuuzzbMoAl__MethodInfo); DO_APP_FUNC(0x01F317F0, void, DualSenseDriver_Finalize, (DualSenseDriver * __this, MethodInfo * method)); DO_APP_FUNC(0x01F31860, void, DualSenseDriver_Dispose, (DualSenseDriver * __this, bool disposing, MethodInfo * method)); DO_APP_FUNC(0x01F31950, bool, DualSenseDriver_Matches, (int32_t vid, int32_t pid, MethodInfo * method)); DO_APP_FUNC(0x01F31970, uint32_t, DualSenseDriver_yaaHcmLmkBZYxVFIDSfOWskCAVrc, (NativeBuffer * param_0000b3bf, int32_t param_0000b3c0, MethodInfo * method)); DO_APP_FUNC(0x01F31A50, DualSenseDriver_YidamfJnKjbfbmjpATjSXQqFKjgu__Enum, DualSenseDriver_VKknBQEILnYytlhebOxhxqAZdnzU, (DualSenseOtherLightBrightness__Enum param_0000b3c1, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2A98, DualSenseDriver_VKknBQEILnYytlhebOxhxqAZdnzU__MethodInfo); DO_APP_FUNC(0x01F31AD0, DualSenseOtherLightBrightness__Enum, DualSenseDriver_ILsxcLXxWsgewkggWHDmaxjOJshr, (DualSenseDriver_YidamfJnKjbfbmjpATjSXQqFKjgu__Enum param_0000b3c2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2A90, DualSenseDriver_ILsxcLXxWsgewkggWHDmaxjOJshr__MethodInfo); DO_APP_FUNC(0x01F31B50, void, DualSenseDriver__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01F2B1D0, bool, DualShock4Driver_rqWSyVVKpoKBWEnUkTvNcHkfdetL, (DualShock4Driver * __this, MethodInfo * method)); DO_APP_FUNC(0x01F31C30, float, DualShock4Driver_get_BatteryLevel, (DualShock4Driver * __this, MethodInfo * method)); @@ -45317,13 +53284,14 @@ DO_APP_FUNC(0x01F2BD70, int32_t, DualShock4Driver_GetTouchCount, (DualShock4Driv DO_APP_FUNC(0x01F2BDE0, bool, DualShock4Driver_IsTouchingAtIndex, (DualShock4Driver * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01F2BE40, bool, DualShock4Driver_IsTouchingAtTouchId, (DualShock4Driver * __this, int32_t touchId, MethodInfo * method)); DO_APP_FUNC(0x01F2BE80, int32_t, DualShock4Driver_GetTouchIdAtIndex, (DualShock4Driver * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01F2BEE0, bool, DualShock4Driver_GetTouchPositionByIndex, (DualShock4Driver * __this, int32_t index, Vector2 position, MethodInfo * method)); -DO_APP_FUNC(0x01F2BF60, bool, DualShock4Driver_GetTouchPositionByTouchId, (DualShock4Driver * __this, int32_t touchId, Vector2 position, MethodInfo * method)); -DO_APP_FUNC(0x01F2C040, bool, DualShock4Driver_GetTouchPositionAbsoluteByIndex, (DualShock4Driver * __this, int32_t index, int32_t positionX, int32_t positionY, MethodInfo * method)); -DO_APP_FUNC(0x01F2C0C0, bool, DualShock4Driver_GetTouchPositionAbsoluteByTouchId, (DualShock4Driver * __this, int32_t touchId, int32_t positionX, int32_t positionY, MethodInfo * method)); +DO_APP_FUNC(0x01F2BEE0, bool, DualShock4Driver_GetTouchPositionByIndex, (DualShock4Driver * __this, int32_t index, Vector2 * position, MethodInfo * method)); +DO_APP_FUNC(0x01F2BF60, bool, DualShock4Driver_GetTouchPositionByTouchId, (DualShock4Driver * __this, int32_t touchId, Vector2 * position, MethodInfo * method)); +DO_APP_FUNC(0x01F2C040, bool, DualShock4Driver_GetTouchPositionAbsoluteByIndex, (DualShock4Driver * __this, int32_t index, int32_t * positionX, int32_t * positionY, MethodInfo * method)); +DO_APP_FUNC(0x01F2C0C0, bool, DualShock4Driver_GetTouchPositionAbsoluteByTouchId, (DualShock4Driver * __this, int32_t touchId, int32_t * positionX, int32_t * positionY, MethodInfo * method)); DO_APP_FUNC(0x01F31F30, void, DualShock4Driver_StopLightFlash, (DualShock4Driver * __this, MethodInfo * method)); DO_APP_FUNC(0x01F2C1C0, void, DualShock4Driver_StopVibration, (DualShock4Driver * __this, MethodInfo * method)); DO_APP_FUNC(0x01F31F50, void, DualShock4Driver__ctor, (DualShock4Driver * __this, HIDDeviceDriver_InitArgs * param_0000b3d7, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2A30, DualShock4Driver__ctor__MethodInfo); DO_APP_FUNC(0x01F33A30, void, DualShock4Driver_Update, (DualShock4Driver * __this, UpdateLoopType__Enum updateLoop, MethodInfo * method)); DO_APP_FUNC(0x01F33C20, bool, DualShock4Driver_ParseInputReport, (DualShock4Driver * __this, void * inputReportPtr, int32_t inputReportLength, double timestamp, MethodInfo * method)); DO_APP_FUNC(0x01F34030, Controller_Extension *, DualShock4Driver_CreateControllerExtension, (DualShock4Driver * __this, MethodInfo * method)); @@ -45331,12 +53299,13 @@ DO_APP_FUNC(0x01F340A0, void, DualShock4Driver_hrEVnKBMqYhjXIEKreCgBVZGIIIfb, (D DO_APP_FUNC(0x01F34100, bool, DualShock4Driver_DXwCWVrliAfocSXRyMqUDjNEaZEU, (DualShock4Driver * __this, XYXgPXbRzdPUazjZsvaGFTtfNAAW__Enum param_0000b3dd, MethodInfo * method)); DO_APP_FUNC(0x01F34150, void, DualShock4Driver_mIaTlNMruKgPSGfuCmVPIfwyAaOkA, (DualShock4Driver * __this, MethodInfo * method)); DO_APP_FUNC(0x01F34650, bool, DualShock4Driver_ZfAZIIXhMZdKOboQXjAjYKbKqbSn, (DualShock4Driver * __this, XYXgPXbRzdPUazjZsvaGFTtfNAAW__Enum param_0000b3de, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2A78, DualShock4Driver_ZfAZIIXhMZdKOboQXjAjYKbKqbSn__MethodInfo); DO_APP_FUNC(0x01F347A0, void, DualShock4Driver_qgkozYJKRLUdDDRvgDzLkjaguBYt, (DualShock4Driver * __this, NativeBuffer * param_0000b3df, double param_0000b3e0, MethodInfo * method)); DO_APP_FUNC(0x01F2ED60, void, DualShock4Driver_ArmgsfOJaNfgVyvHnMpOmpthLxzg, (DualShock4Driver * __this, HIDControllerElement__Array * param_0000b3e1, NativeBuffer * param_0000b3e2, double param_0000b3e3, MethodInfo * method)); DO_APP_FUNC(0x01F34AC0, void, DualShock4Driver_uOHEtfOVdTSrLZxgjrDTDXKgmkAT, (DualShock4Driver * __this, MethodInfo * method)); DO_APP_FUNC(0x01F34B60, void, DualShock4Driver_xNEFLscWMzSCHPgvyPbHEaQOSwrab, (DualShock4Driver * __this, NativeBuffer * param_0000b3e4, MethodInfo * method)); DO_APP_FUNC(0x01F34CD0, void, DualShock4Driver_fIBKgdwQhORwYaeVHuaOzzQtsFQN, (DualShock4Driver * __this, MethodInfo * method)); -DO_APP_FUNC(0x01F2F270, bool, DualShock4Driver_ODApnPWLkzfHMgVJlgcEhwviqSlzb, (Vector3 param_0000b3e5, MethodInfo * method)); +DO_APP_FUNC(0x01F2F270, bool, DualShock4Driver_ODApnPWLkzfHMgVJlgcEhwviqSlzb, (Vector3 * param_0000b3e5, MethodInfo * method)); DO_APP_FUNC(0x01F34EF0, void, DualShock4Driver_ullQaAfwSwgDYpGqybrNJlOtsiTQA, (DualShock4Driver * __this, Vector3 param_0000b3e6, Vector3 param_0000b3e7, MethodInfo * method)); DO_APP_FUNC(0x01F35D30, Quaternion, DualShock4Driver_ZjSDcnANRhcQurKoOlgZwzkDxYchA, (Quaternion param_0000b3e8, Vector3 param_0000b3e9, MethodInfo * method)); DO_APP_FUNC(0x01F30240, Vector3, DualShock4Driver_jOMyyNJRMuBaiHFvARoaGYQsstoJ, (Vector3 param_0000b3ea, Vector3 param_0000b3eb, MethodInfo * method)); @@ -45348,19 +53317,25 @@ DO_APP_FUNC(0x01F30740, Quaternion, DualShock4Driver_wLgAAtvFspQdNeZMxRCqLAAGLQm DO_APP_FUNC(0x01F30890, Quaternion, DualShock4Driver_tGLldonrjUOnKXBxlUNDLDZWimBL, (DualShock4Driver * __this, Vector3 param_0000b3f5, float param_0000b3f6, MethodInfo * method)); DO_APP_FUNC(0x01F30CF0, float, DualShock4Driver_DHRmhMQDczhciVtbsFzpcsKoAQNm, (DualShock4Driver * __this, Vector3 param_0000b3f7, MethodInfo * method)); DO_APP_FUNC(0x01F30D20, bool, DualShock4Driver_SuuttLiyPELdINOGtjcxxgygjNUL, (DualShock4Driver * __this, float param_0000b3f8, MethodInfo * method)); -DO_APP_FUNC(0x01F30D40, bool, DualShock4Driver_JVEjAktAwmArKjXnIElXQBDbJakjb, (DualShock4Driver * __this, Vector3 param_0000b3f9, DualShock4Driver_RIHlgxglKcAvztMHuwTgqKpCHToG__Enum param_0000b3fa, MethodInfo * method)); +DO_APP_FUNC(0x01F30D40, bool, DualShock4Driver_JVEjAktAwmArKjXnIElXQBDbJakjb, (DualShock4Driver * __this, Vector3 param_0000b3f9, DualShock4Driver_RIHlgxglKcAvztMHuwTgqKpCHToG__Enum * param_0000b3fa, MethodInfo * method)); DO_APP_FUNC(0x01F30E70, bool, DualShock4Driver_fJXPhNZiNOAETEPezplwLiNyvJmk, (DualShock4Driver * __this, Vector3 param_0000b3fb, MethodInfo * method)); DO_APP_FUNC(0x01F30F00, bool, DualShock4Driver_WrnQgGfJddXUKsgiiDyOUFtLXjeQ, (DualShock4Driver * __this, Vector3 param_0000b3fc, MethodInfo * method)); DO_APP_FUNC(0x01F30F60, Vector3, DualShock4Driver_tDSIgoUEXeMwdZIKdBanOitoHCtE, (DualShock4Driver * __this, Single__Array * param_0000b3fd, MethodInfo * method)); DO_APP_FUNC(0x01F35E60, Vector3, DualShock4Driver_hUMoiJNgUuUQrcRwKsAmNFKuXAtt, (DualShock4Driver * __this, RingBuffer_1_Rewired_HID_HIDGyroscope_DeAenLGYTqNyWDVKOCMDwbfhHVkGA_ * param_0000b3fe, MethodInfo * method)); DO_APP_FUNC(0x01F311F0, Vector3, DualShock4Driver_hUMoiJNgUuUQrcRwKsAmNFKuXAtt_1, (DualShock4Driver * __this, Vector3 param_0000b3ff, float param_0000b400, MethodInfo * method)); DO_APP_FUNC(0x01F31280, int32_t, DualShock4Driver_JTLgjtKHAIdtMYUEOMboNaMvEPpG, (DualShock4Driver * __this, int32_t param_0000b401, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2A60, DualShock4Driver_JTLgjtKHAIdtMYUEOMboNaMvEPpG__MethodInfo); DO_APP_FUNC(0x01F36070, void, DualShock4Driver_NqxVoYvCyIuzuyVyYmKLcbzoIXjG, (DualShock4Driver * __this, Byte__Array * param_0000b402, Single__Array * param_0000b403, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2A48, DualShock4Driver_NqxVoYvCyIuzuyVyYmKLcbzoIXjG__MethodInfo); DO_APP_FUNC(0x01F36190, void, DualShock4Driver_OscteRSQBkKYSwZmwKlSzpzAeNOT, (DualShock4Driver * __this, Byte__Array * param_0000b404, Single__Array * param_0000b405, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2A50, DualShock4Driver_OscteRSQBkKYSwZmwKlSzpzAeNOT__MethodInfo); DO_APP_FUNC(0x01D17080, float, DualShock4Driver_ZVrVhrUsAvPXZfyvTkElwZyCrGZG, (DualShock4Driver * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2A40, DualShock4Driver_ZVrVhrUsAvPXZfyvTkElwZyCrGZG__MethodInfo); DO_APP_FUNC(0x01F362B0, void, DualShock4Driver_EArRvjGtdexbkgKEDYeBxckHHBCcA, (DualShock4Driver * __this, NativeBuffer * param_0000b406, HIDTouchpad_TouchData__Array * param_0000b407, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2A58, DualShock4Driver_EArRvjGtdexbkgKEDYeBxckHHBCcA__MethodInfo); DO_APP_FUNC(0x01F364B0, int32_t, DualShock4Driver_GSYGKXEJVnzcYgSecTvqWoBSzPiQ, (DualShock4Driver * __this, int32_t param_0000b408, bool param_0000b409, int32_t param_0000b40a, MethodInfo * method)); DO_APP_FUNC(0x00517980, void, DualShock4Driver_XpISNZpfUlfyLCaNFdKuuzzbMoAl, (DualShock4Driver * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2A38, DualShock4Driver_XpISNZpfUlfyLCaNFdKuuzzbMoAl__MethodInfo); DO_APP_FUNC(0x01F317F0, void, DualShock4Driver_Finalize, (DualShock4Driver * __this, MethodInfo * method)); DO_APP_FUNC(0x01F365C0, void, DualShock4Driver_Dispose, (DualShock4Driver * __this, bool disposing, MethodInfo * method)); DO_APP_FUNC(0x01F366B0, bool, DualShock4Driver_Matches, (int32_t vid, int32_t pid, MethodInfo * method)); @@ -45389,12 +53364,15 @@ DO_APP_FUNC(0x01F36E80, void, RailDriverDriver_set_SpeakerEnabled, (RailDriverDr DO_APP_FUNC(0x01F36F30, void, RailDriverDriver_SetLEDDisplay, (RailDriverDriver * __this, int32_t digitIndex, uint8_t digitBitValues, MethodInfo * method)); DO_APP_FUNC(0x01F36FB0, void, RailDriverDriver_SetLEDDisplay_1, (RailDriverDriver * __this, uint8_t digit1BitValues, uint8_t digit2BitValues, uint8_t digit3BitValues, MethodInfo * method)); DO_APP_FUNC(0x01F37050, void, RailDriverDriver__ctor, (RailDriverDriver * __this, HIDDeviceDriver_InitArgs * param_0000b42f, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF29F0, RailDriverDriver__ctor__MethodInfo); DO_APP_FUNC(0x003AE050, void, RailDriverDriver_Update, (RailDriverDriver * __this, UpdateLoopType__Enum updateLoop, MethodInfo * method)); DO_APP_FUNC(0x01F37AD0, bool, RailDriverDriver_ParseInputReport, (RailDriverDriver * __this, void * inputReportPtr, int32_t inputReportLength, double timestamp, MethodInfo * method)); DO_APP_FUNC(0x01F37BF0, Controller_Extension *, RailDriverDriver_CreateControllerExtension, (RailDriverDriver * __this, MethodInfo * method)); DO_APP_FUNC(0x01F37CE0, bool, RailDriverDriver_DXwCWVrliAfocSXRyMqUDjNEaZEU, (RailDriverDriver * __this, RailDriverDriver_DvyiJhlYQlMxVHeWbUYQiyZdDxyD__Enum param_0000b434, XYXgPXbRzdPUazjZsvaGFTtfNAAW__Enum param_0000b435, MethodInfo * method)); DO_APP_FUNC(0x01F37DF0, void, RailDriverDriver_mIaTlNMruKgPSGfuCmVPIfwyAaOkA, (RailDriverDriver * __this, RailDriverDriver_DvyiJhlYQlMxVHeWbUYQiyZdDxyD__Enum param_0000b436, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2A18, RailDriverDriver_mIaTlNMruKgPSGfuCmVPIfwyAaOkA__MethodInfo); DO_APP_FUNC(0x01F37F90, bool, RailDriverDriver_ZfAZIIXhMZdKOboQXjAjYKbKqbSn, (RailDriverDriver * __this, XYXgPXbRzdPUazjZsvaGFTtfNAAW__Enum param_0000b437, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2A20, RailDriverDriver_ZfAZIIXhMZdKOboQXjAjYKbKqbSn__MethodInfo); DO_APP_FUNC(0x01F38080, void, RailDriverDriver_qgkozYJKRLUdDDRvgDzLkjaguBYt, (RailDriverDriver * __this, NativeBuffer * param_0000b438, double param_0000b439, MethodInfo * method)); DO_APP_FUNC(0x01F2ED60, void, RailDriverDriver_ArmgsfOJaNfgVyvHnMpOmpthLxzg, (RailDriverDriver * __this, HIDControllerElement__Array * param_0000b43a, NativeBuffer * param_0000b43b, double param_0000b43c, MethodInfo * method)); DO_APP_FUNC(0x01F317F0, void, RailDriverDriver_Finalize, (RailDriverDriver * __this, MethodInfo * method)); @@ -45407,19 +53385,23 @@ DO_APP_FUNC(0x01F38520, Joystick *, XboxOneGamepadExtension_fddMxPtBrNdNCGnosKzs DO_APP_FUNC(0x01F38560, int32_t, XboxOneGamepadExtension_get_xboxOneUserId, (XboxOneGamepadExtension * __this, MethodInfo * method)); DO_APP_FUNC(0x01F386D0, uint64_t, XboxOneGamepadExtension_get_xboxOneJoystickId, (XboxOneGamepadExtension * __this, MethodInfo * method)); DO_APP_FUNC(0x01F38810, void, XboxOneGamepadExtension__ctor, (XboxOneGamepadExtension * __this, bool param_0000b4cc, IXboxOneInputSource * param_0000b4cd, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF29C0, XboxOneGamepadExtension__ctor__MethodInfo); DO_APP_FUNC(0x01F38A20, void, XboxOneGamepadExtension__ctor_1, (XboxOneGamepadExtension * __this, XboxOneGamepadExtension * param_0000b4ce, MethodInfo * method)); DO_APP_FUNC(0x01F38B70, int32_t, XboxOneGamepadExtension_get_vibrationMotorCount, (XboxOneGamepadExtension * __this, MethodInfo * method)); DO_APP_FUNC(0x01F38C00, void, XboxOneGamepadExtension_SetVibration, (XboxOneGamepadExtension * __this, int32_t motorIndex, float motorLevel, MethodInfo * method)); DO_APP_FUNC(0x01F38C20, void, XboxOneGamepadExtension_SetVibration_1, (XboxOneGamepadExtension * __this, int32_t motorIndex, float motorLevel, float duration, MethodInfo * method)); DO_APP_FUNC(0x01F38C40, void, XboxOneGamepadExtension_SetVibration_2, (XboxOneGamepadExtension * __this, int32_t motorIndex, float motorLevel, bool stopOtherMotors, MethodInfo * method)); DO_APP_FUNC(0x01F38C60, void, XboxOneGamepadExtension_SetVibration_3, (XboxOneGamepadExtension * __this, int32_t motorIndex, float motorLevel, float duration, bool stopOtherMotors, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF29E8, XboxOneGamepadExtension_SetVibration_3__MethodInfo); DO_APP_FUNC(0x01F38DA0, float, XboxOneGamepadExtension_GetVibration, (XboxOneGamepadExtension * __this, int32_t motorIndex, MethodInfo * method)); DO_APP_FUNC(0x01F38EA0, float, XboxOneGamepadExtension_GetVibration_1, (XboxOneGamepadExtension * __this, XboxOneGamepadMotorType__Enum motor, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF29E0, XboxOneGamepadExtension_GetVibration_1__MethodInfo); DO_APP_FUNC(0x01F39010, void, XboxOneGamepadExtension_StopVibration, (XboxOneGamepadExtension * __this, MethodInfo * method)); DO_APP_FUNC(0x01F39100, void, XboxOneGamepadExtension_SetVibration_4, (XboxOneGamepadExtension * __this, XboxOneGamepadMotorType__Enum motor, float motorLevel, MethodInfo * method)); DO_APP_FUNC(0x01F39120, void, XboxOneGamepadExtension_SetVibration_5, (XboxOneGamepadExtension * __this, XboxOneGamepadMotorType__Enum motor, float motorLevel, float duration, MethodInfo * method)); DO_APP_FUNC(0x01F39140, void, XboxOneGamepadExtension_SetVibration_6, (XboxOneGamepadExtension * __this, XboxOneGamepadMotorType__Enum motor, float motorLevel, bool stopOtherMotors, MethodInfo * method)); DO_APP_FUNC(0x01F39160, void, XboxOneGamepadExtension_SetVibration_7, (XboxOneGamepadExtension * __this, XboxOneGamepadMotorType__Enum motor, float motorLevel, float duration, bool stopOtherMotors, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF29D8, XboxOneGamepadExtension_SetVibration_7__MethodInfo); DO_APP_FUNC(0x01F39370, void, XboxOneGamepadExtension_SetVibration_8, (XboxOneGamepadExtension * __this, float leftMotorLevel, float rightMotorLevel, MethodInfo * method)); DO_APP_FUNC(0x01F39390, void, XboxOneGamepadExtension_SetVibration_9, (XboxOneGamepadExtension * __this, float leftMotorLevel, float rightMotorLevel, bool stopOtherMotors, MethodInfo * method)); DO_APP_FUNC(0x01F39580, void, XboxOneGamepadExtension_SetVibration_10, (XboxOneGamepadExtension * __this, float leftMotorLevel, float rightMotorLevel, float leftTriggerLevel, float rightTriggerLevel, MethodInfo * method)); @@ -45429,16 +53411,18 @@ DO_APP_FUNC(0x01F39A30, void, XboxOneGamepadExtension_ydNyzOsUyivCGUkmrXgJPfOlXC DO_APP_FUNC(0x01F39B00, Controller_Extension *, XboxOneGamepadExtension_ZVfpcIxdYEVJzInzMIFrDENQKTOC, (XboxOneGamepadExtension * __this, MethodInfo * method)); DO_APP_FUNC(0x01F39930, void, XboxOneGamepadExtension_dbPFOaostUFBJKZfqByPGWcSnAyJA, (XboxOneGamepadExtension * __this, MethodInfo * method)); DO_APP_FUNC(0x01F39C80, void, XboxOneGamepadExtension_CGlacFKtMHdRpDAXaffSZxVfvGbnb, (XboxOneGamepadExtension * __this, XboxOneGamepadMotorType__Enum param_0000b4f8, float param_0000b4f9, float param_0000b4fa, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2978, XboxOneGamepadExtension_CGlacFKtMHdRpDAXaffSZxVfvGbnb__MethodInfo); DO_APP_FUNC(0x01F39D90, void, XboxOneGamepadExtension_UsGElqXjbfgGvkhsVyOgpEBmHjce, (XboxOneGamepadExtension * __this, MethodInfo * method)); DO_APP_FUNC(0x01F39ED0, void, XboxOneGamepadExtension_PZaFFUqGOEFzYOmcdYQMDePDRcqv__ctor, (XboxOneGamepadExtension_PZaFFUqGOEFzYOmcdYQMDePDRcqv * __this, bool param_0000b4fb, IXboxOneInputSource * param_0000b4fc, uYNwhzGPJhmoUjmLmGqJDXwlBFLRA param_0000b4fd, MethodInfo * method)); -DO_APP_FUNC(0x01F39F40, void, uYNwhzGPJhmoUjmLmGqJDXwlBFLRA_mNHKzNxYVhJisLciHagMKeLGdKcKA, (uYNwhzGPJhmoUjmLmGqJDXwlBFLRA__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01F39F40, void, uYNwhzGPJhmoUjmLmGqJDXwlBFLRA_mNHKzNxYVhJisLciHagMKeLGdKcKA, (uYNwhzGPJhmoUjmLmGqJDXwlBFLRA * __this, MethodInfo * method)); DO_APP_FUNC(0x00436BD0, bool, XboxOneInputSource_get_isReady, (XboxOneInputSource * __this, MethodInfo * method)); DO_APP_FUNC(0x01F39F50, void, XboxOneInputSource__ctor, (XboxOneInputSource * __this, MethodInfo * method)); DO_APP_FUNC(0x01F3A240, void, XboxOneInputSource_Update, (XboxOneInputSource * __this, MethodInfo * method)); DO_APP_FUNC(0x01F3A3D0, void, XboxOneInputSource_BnosIHYOjYtRHjIwdiheaelXKPNN, (XboxOneInputSource * __this, uint32_t param_0000b4fe, bool param_0000b4ff, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2958, XboxOneInputSource_BnosIHYOjYtRHjIwdiheaelXKPNN__MethodInfo); DO_APP_FUNC(0x01F3A540, void, XboxOneInputSource_xloQIKbjutVnzkGlvIURvDLBykkj, (XboxOneInputSource * __this, uint32_t param_0000b500, bool param_0000b501, MethodInfo * method)); DO_APP_FUNC(0x01F3A690, void, XboxOneInputSource_URNjVjKlFdenEVoVDMJTmDKeyZgb, (XboxOneInputSource * __this, MethodInfo * method)); -DO_APP_FUNC(0x01F3A890, bool, XboxOneInputSource_rRhHtPTvBjpeAUFqyZxyQiShBZUT, (XboxOneInputSource * __this, uint32_t param_0000b502, bool param_0000b503, XboxOneInputSource_BadConnectionReason__Enum param_0000b504, MethodInfo * method)); +DO_APP_FUNC(0x01F3A890, bool, XboxOneInputSource_rRhHtPTvBjpeAUFqyZxyQiShBZUT, (XboxOneInputSource * __this, uint32_t param_0000b502, bool param_0000b503, XboxOneInputSource_BadConnectionReason__Enum * param_0000b504, MethodInfo * method)); DO_APP_FUNC(0x01F3AA90, void, XboxOneInputSource_hBcRAaKcOHatYeSLZhytshAGXVrE, (XboxOneInputSource * __this, MethodInfo * method)); DO_APP_FUNC(0x01F3AAE0, int32_t, XboxOneInputSource_GetXboxOneUserIdFromUnityJoystick, (XboxOneInputSource * __this, int32_t unityJoystickId, MethodInfo * method)); DO_APP_FUNC(0x01F3AB80, void, XboxOneInputSource_PulseVibrateMotor, (XboxOneInputSource * __this, uint64_t xboxOneJoystickId, XboxOneGamepadMotorType__Enum motor, float startLevel, float endLevel, float duration, MethodInfo * method)); @@ -45446,7 +53430,7 @@ DO_APP_FUNC(0x01F3AD10, bool, XboxOneInputSource_SetXboxOneVibration, (XboxOneIn DO_APP_FUNC(0x01F3AE90, void, XboxOneInputSource_Dispose, (XboxOneInputSource * __this, MethodInfo * method)); DO_APP_FUNC(0x01F3AF50, void, XboxOneInputSource_Finalize, (XboxOneInputSource * __this, MethodInfo * method)); DO_APP_FUNC(0x01F3AFC0, void, XboxOneInputSource_Dispose_1, (XboxOneInputSource * __this, bool disposing, MethodInfo * method)); -DO_APP_FUNC(0x00977B80, void, XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__ctor, (XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__Boxed * __this, uint32_t param_0000b50e, uint32_t param_0000b50f, MethodInfo * method)); +DO_APP_FUNC(0x00977B80, void, XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__ctor, (XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK * __this, uint32_t param_0000b50e, uint32_t param_0000b50f, MethodInfo * method)); DO_APP_FUNC(0x003C91F0, uint64_t, XboxOneInputSource_EXzgdOjuTRjkiOWDcTIuyPOkzHMv_TgmPrjtEFfkudrZXkLlbIZeeUBZK, (XboxOneInputSource_EXzgdOjuTRjkiOWDcTIuyPOkzHMv * __this, MethodInfo * method)); DO_APP_FUNC(0x01F3B0B0, void, XboxOneInputSource_EXzgdOjuTRjkiOWDcTIuyPOkzHMv__ctor, (XboxOneInputSource_EXzgdOjuTRjkiOWDcTIuyPOkzHMv * __this, IXboxOneInputSource * param_0000b510, uint64_t param_0000b511, int32_t param_0000b512, bool param_0000b513, MethodInfo * method)); DO_APP_FUNC(0x01F3B370, void, XboxOneInputSource_EXzgdOjuTRjkiOWDcTIuyPOkzHMv_XUYlHArjcZHIIZmMQVtfQqgGDltj, (XboxOneInputSource_EXzgdOjuTRjkiOWDcTIuyPOkzHMv * __this, MethodInfo * method)); @@ -45507,6 +53491,7 @@ DO_APP_FUNC(0x01F3E5F0, bool, ConfigVars_DoesPlatformUseFallback, (ConfigVars * DO_APP_FUNC(0x01F3E670, bool, ConfigVars_DoesPlatformUseSDL2, (ConfigVars * __this, Platform__Enum platform, WebplayerPlatform__Enum webplayerPlatform, bool isEditor, MethodInfo * method)); DO_APP_FUNC(0x01F3E6B0, String *, ConfigVars_GetDebugConfigSettings, (ConfigVars * __this, MethodInfo * method)); DO_APP_FUNC(0x01F3EC60, String *, ConfigVars_GetPlatformVarsRelPath, (ConfigVars * __this, Platform__Enum platform, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF26B0, ConfigVars_GetPlatformVarsRelPath__MethodInfo); DO_APP_FUNC(0x01F3ED70, ConfigVars_PlatformVars *, ConfigVars_GetPlatformVars, (ConfigVars * __this, Platform__Enum platform, MethodInfo * method)); DO_APP_FUNC(0x01F3EEA0, void, ConfigVars_Editor_SetAllSerializedPlatformVar, (ConfigVars * __this, ConfigVars_AllPlatformVar__Enum var, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01F3F110, bool, ConfigVars_GetPlatformVar_disableKeyboard, (ConfigVars * __this, MethodInfo * method)); @@ -45533,114 +53518,223 @@ DO_APP_FUNC(0x01F40740, bool, ConfigVars_IsEditModeInputSupported, (ConfigVars * DO_APP_FUNC(0x01F40820, KeyedGetSetValueStore_1_System_String_ *, ConfigVars_Rewired_Data_IConfigVars_Internal_get_values, (ConfigVars * __this, MethodInfo * method)); DO_APP_FUNC(0x01F40970, Dictionary_2_System_String_System_Object_ *, ConfigVars_get_valueDelegates, (ConfigVars * __this, MethodInfo * method)); DO_APP_FUNC(0x01F435C0, ConfigVars_PlatformVars *, ConfigVars__get_platformVarsDict_b__57_0, (ConfigVars * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF27D8, ConfigVars__get_platformVarsDict_b__57_0__MethodInfo); DO_APP_FUNC(0x01F43610, ConfigVars_PlatformVars *, ConfigVars__get_platformVarsDict_b__57_1, (ConfigVars * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2888, ConfigVars__get_platformVarsDict_b__57_1__MethodInfo); DO_APP_FUNC(0x01F43660, ConfigVars_PlatformVars *, ConfigVars__get_platformVarsDict_b__57_2, (ConfigVars * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2890, ConfigVars__get_platformVarsDict_b__57_2__MethodInfo); DO_APP_FUNC(0x01F436B0, ConfigVars_PlatformVars *, ConfigVars__get_platformVarsDict_b__57_3, (ConfigVars * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2878, ConfigVars__get_platformVarsDict_b__57_3__MethodInfo); DO_APP_FUNC(0x01F43700, ConfigVars_PlatformVars *, ConfigVars__get_platformVarsDict_b__57_4, (ConfigVars * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2880, ConfigVars__get_platformVarsDict_b__57_4__MethodInfo); DO_APP_FUNC(0x01F43750, ConfigVars_PlatformVars *, ConfigVars__get_platformVarsDict_b__57_5, (ConfigVars * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2868, ConfigVars__get_platformVarsDict_b__57_5__MethodInfo); DO_APP_FUNC(0x01F437A0, ConfigVars_PlatformVars *, ConfigVars__get_platformVarsDict_b__57_6, (ConfigVars * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2870, ConfigVars__get_platformVarsDict_b__57_6__MethodInfo); DO_APP_FUNC(0x01F437F0, ConfigVars_PlatformVars *, ConfigVars__get_platformVarsDict_b__57_7, (ConfigVars * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2858, ConfigVars__get_platformVarsDict_b__57_7__MethodInfo); DO_APP_FUNC(0x01F43840, ConfigVars_PlatformVars *, ConfigVars__get_platformVarsDict_b__57_8, (ConfigVars * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2860, ConfigVars__get_platformVarsDict_b__57_8__MethodInfo); DO_APP_FUNC(0x01F43890, ConfigVars_PlatformVars *, ConfigVars__get_platformVarsDict_b__57_9, (ConfigVars * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2848, ConfigVars__get_platformVarsDict_b__57_9__MethodInfo); DO_APP_FUNC(0x01F438E0, ConfigVars_PlatformVars *, ConfigVars__get_platformVarsDict_b__57_10, (ConfigVars * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF27E0, ConfigVars__get_platformVarsDict_b__57_10__MethodInfo); DO_APP_FUNC(0x01F43930, ConfigVars_PlatformVars *, ConfigVars__get_platformVarsDict_b__57_11, (ConfigVars * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF27C8, ConfigVars__get_platformVarsDict_b__57_11__MethodInfo); DO_APP_FUNC(0x01F43980, ConfigVars_PlatformVars *, ConfigVars__get_platformVarsDict_b__57_12, (ConfigVars * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF27D0, ConfigVars__get_platformVarsDict_b__57_12__MethodInfo); DO_APP_FUNC(0x01F439D0, ConfigVars_PlatformVars *, ConfigVars__get_platformVarsDict_b__57_13, (ConfigVars * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF27B8, ConfigVars__get_platformVarsDict_b__57_13__MethodInfo); DO_APP_FUNC(0x01F43A20, ConfigVars_PlatformVars *, ConfigVars__get_platformVarsDict_b__57_14, (ConfigVars * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF27C0, ConfigVars__get_platformVarsDict_b__57_14__MethodInfo); DO_APP_FUNC(0x01F43A70, ConfigVars_PlatformVars *, ConfigVars__get_platformVarsDict_b__57_15, (ConfigVars * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2898, ConfigVars__get_platformVarsDict_b__57_15__MethodInfo); DO_APP_FUNC(0x01F43AC0, ConfigVars_PlatformVars *, ConfigVars__get_platformVarsDict_b__57_16, (ConfigVars * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF28A0, ConfigVars__get_platformVarsDict_b__57_16__MethodInfo); DO_APP_FUNC(0x01F43B10, Object *, ConfigVars__get_getSetPlatformVariableDict_b__60_0, (ConfigVars * __this, Platform__Enum p, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF27A0, ConfigVars__get_getSetPlatformVariableDict_b__60_0__MethodInfo); DO_APP_FUNC(0x01F43B80, void, ConfigVars__get_getSetPlatformVariableDict_b__60_1, (ConfigVars * __this, Platform__Enum platform, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF27A8, ConfigVars__get_getSetPlatformVariableDict_b__60_1__MethodInfo); DO_APP_FUNC(0x01F43C10, Object *, ConfigVars__get_getSetPlatformVariableDict_b__60_2, (ConfigVars * __this, Platform__Enum p, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2790, ConfigVars__get_getSetPlatformVariableDict_b__60_2__MethodInfo); DO_APP_FUNC(0x01F43C80, void, ConfigVars__get_getSetPlatformVariableDict_b__60_3, (ConfigVars * __this, Platform__Enum platform, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2798, ConfigVars__get_getSetPlatformVariableDict_b__60_3__MethodInfo); DO_APP_FUNC(0x01F43D10, Object *, ConfigVars__get_getSetPlatformVariableDict_b__60_4, (ConfigVars * __this, Platform__Enum platform, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2780, ConfigVars__get_getSetPlatformVariableDict_b__60_4__MethodInfo); DO_APP_FUNC(0x01F43D80, void, ConfigVars__get_getSetPlatformVariableDict_b__60_5, (ConfigVars * __this, Platform__Enum platform, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2788, ConfigVars__get_getSetPlatformVariableDict_b__60_5__MethodInfo); DO_APP_FUNC(0x003BCD50, UpdateLoopSetting__Enum, ConfigVars__get_valueDelegates_b__96_0, (ConfigVars * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2550, ConfigVars__get_valueDelegates_b__96_0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, ConfigVars__get_valueDelegates_b__96_1, (ConfigVars * __this, UpdateLoopSetting__Enum x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2440, ConfigVars__get_valueDelegates_b__96_1__MethodInfo); DO_APP_FUNC(0x003CD410, bool, ConfigVars__get_valueDelegates_b__96_2, (ConfigVars * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF24F8, ConfigVars__get_valueDelegates_b__96_2__MethodInfo); DO_APP_FUNC(0x019BF330, void, ConfigVars__get_valueDelegates_b__96_3, (ConfigVars * __this, bool x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2390, ConfigVars__get_valueDelegates_b__96_3__MethodInfo); DO_APP_FUNC(0x003BC2E0, WindowsStandalonePrimaryInputSource__Enum, ConfigVars__get_valueDelegates_b__96_4, (ConfigVars * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2348, ConfigVars__get_valueDelegates_b__96_4__MethodInfo); DO_APP_FUNC(0x003BCDD0, void, ConfigVars__get_valueDelegates_b__96_5, (ConfigVars * __this, WindowsStandalonePrimaryInputSource__Enum x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF23E0, ConfigVars__get_valueDelegates_b__96_5__MethodInfo); DO_APP_FUNC(0x003CD440, OSXStandalonePrimaryInputSource__Enum, ConfigVars__get_valueDelegates_b__96_6, (ConfigVars * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2270, ConfigVars__get_valueDelegates_b__96_6__MethodInfo); DO_APP_FUNC(0x006D8870, void, ConfigVars__get_valueDelegates_b__96_7, (ConfigVars * __this, OSXStandalonePrimaryInputSource__Enum x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF21E8, ConfigVars__get_valueDelegates_b__96_7__MethodInfo); DO_APP_FUNC(0x003CC980, LinuxStandalonePrimaryInputSource__Enum, ConfigVars__get_valueDelegates_b__96_8, (ConfigVars * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2300, ConfigVars__get_valueDelegates_b__96_8__MethodInfo); DO_APP_FUNC(0x003CC990, void, ConfigVars__get_valueDelegates_b__96_9, (ConfigVars * __this, LinuxStandalonePrimaryInputSource__Enum x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF22D8, ConfigVars__get_valueDelegates_b__96_9__MethodInfo); DO_APP_FUNC(0x003CD280, WindowsUWPPrimaryInputSource__Enum, ConfigVars__get_valueDelegates_b__96_10, (ConfigVars * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2490, ConfigVars__get_valueDelegates_b__96_10__MethodInfo); DO_APP_FUNC(0x006D8950, void, ConfigVars__get_valueDelegates_b__96_11, (ConfigVars * __this, WindowsUWPPrimaryInputSource__Enum x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2498, ConfigVars__get_valueDelegates_b__96_11__MethodInfo); DO_APP_FUNC(0x00421680, XboxOnePrimaryInputSource__Enum, ConfigVars__get_valueDelegates_b__96_12, (ConfigVars * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2480, ConfigVars__get_valueDelegates_b__96_12__MethodInfo); DO_APP_FUNC(0x00421690, void, ConfigVars__get_valueDelegates_b__96_13, (ConfigVars * __this, XboxOnePrimaryInputSource__Enum x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2488, ConfigVars__get_valueDelegates_b__96_13__MethodInfo); DO_APP_FUNC(0x0098C870, GameCoreXboxOnePrimaryInputSource__Enum, ConfigVars__get_valueDelegates_b__96_14, (ConfigVars * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2470, ConfigVars__get_valueDelegates_b__96_14__MethodInfo); DO_APP_FUNC(0x0098C880, void, ConfigVars__get_valueDelegates_b__96_15, (ConfigVars * __this, GameCoreXboxOnePrimaryInputSource__Enum x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2478, ConfigVars__get_valueDelegates_b__96_15__MethodInfo); DO_APP_FUNC(0x003C7300, GameCoreScarlettPrimaryInputSource__Enum, ConfigVars__get_valueDelegates_b__96_16, (ConfigVars * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2460, ConfigVars__get_valueDelegates_b__96_16__MethodInfo); DO_APP_FUNC(0x003C7310, void, ConfigVars__get_valueDelegates_b__96_17, (ConfigVars * __this, GameCoreScarlettPrimaryInputSource__Enum x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2468, ConfigVars__get_valueDelegates_b__96_17__MethodInfo); DO_APP_FUNC(0x00A2A110, PS4PrimaryInputSource__Enum, ConfigVars__get_valueDelegates_b__96_18, (ConfigVars * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2450, ConfigVars__get_valueDelegates_b__96_18__MethodInfo); DO_APP_FUNC(0x00BC6590, void, ConfigVars__get_valueDelegates_b__96_19, (ConfigVars * __this, PS4PrimaryInputSource__Enum x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2458, ConfigVars__get_valueDelegates_b__96_19__MethodInfo); DO_APP_FUNC(0x009F7E90, PS5PrimaryInputSource__Enum, ConfigVars__get_valueDelegates_b__96_20, (ConfigVars * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2448, ConfigVars__get_valueDelegates_b__96_20__MethodInfo); DO_APP_FUNC(0x01A71040, void, ConfigVars__get_valueDelegates_b__96_21, (ConfigVars * __this, PS5PrimaryInputSource__Enum x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2430, ConfigVars__get_valueDelegates_b__96_21__MethodInfo); DO_APP_FUNC(0x013103A0, WebGLPrimaryInputSource__Enum, ConfigVars__get_valueDelegates_b__96_22, (ConfigVars * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2438, ConfigVars__get_valueDelegates_b__96_22__MethodInfo); DO_APP_FUNC(0x01A246F0, void, ConfigVars__get_valueDelegates_b__96_23, (ConfigVars * __this, WebGLPrimaryInputSource__Enum x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2420, ConfigVars__get_valueDelegates_b__96_23__MethodInfo); DO_APP_FUNC(0x00439170, StadiaPrimaryInputSource__Enum, ConfigVars__get_valueDelegates_b__96_24, (ConfigVars * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2428, ConfigVars__get_valueDelegates_b__96_24__MethodInfo); DO_APP_FUNC(0x004DF210, void, ConfigVars__get_valueDelegates_b__96_25, (ConfigVars * __this, StadiaPrimaryInputSource__Enum x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2510, ConfigVars__get_valueDelegates_b__96_25__MethodInfo); DO_APP_FUNC(0x005C38C0, bool, ConfigVars__get_valueDelegates_b__96_26, (ConfigVars * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2518, ConfigVars__get_valueDelegates_b__96_26__MethodInfo); DO_APP_FUNC(0x01D0B270, void, ConfigVars__get_valueDelegates_b__96_27, (ConfigVars * __this, bool x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2500, ConfigVars__get_valueDelegates_b__96_27__MethodInfo); DO_APP_FUNC(0x01F43E10, bool, ConfigVars__get_valueDelegates_b__96_28, (ConfigVars * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2508, ConfigVars__get_valueDelegates_b__96_28__MethodInfo); DO_APP_FUNC(0x01F43E20, void, ConfigVars__get_valueDelegates_b__96_29, (ConfigVars * __this, bool x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF24F0, ConfigVars__get_valueDelegates_b__96_29__MethodInfo); DO_APP_FUNC(0x00436BD0, bool, ConfigVars__get_valueDelegates_b__96_30, (ConfigVars * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF24E0, ConfigVars__get_valueDelegates_b__96_30__MethodInfo); DO_APP_FUNC(0x00A80AB0, void, ConfigVars__get_valueDelegates_b__96_31, (ConfigVars * __this, bool x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF24E8, ConfigVars__get_valueDelegates_b__96_31__MethodInfo); DO_APP_FUNC(0x00432770, bool, ConfigVars__get_valueDelegates_b__96_32, (ConfigVars * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF24D0, ConfigVars__get_valueDelegates_b__96_32__MethodInfo); DO_APP_FUNC(0x00432780, void, ConfigVars__get_valueDelegates_b__96_33, (ConfigVars * __this, bool x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF24D8, ConfigVars__get_valueDelegates_b__96_33__MethodInfo); DO_APP_FUNC(0x005C2E80, bool, ConfigVars__get_valueDelegates_b__96_34, (ConfigVars * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF24C0, ConfigVars__get_valueDelegates_b__96_34__MethodInfo); DO_APP_FUNC(0x01F43E30, void, ConfigVars__get_valueDelegates_b__96_35, (ConfigVars * __this, bool x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF24C8, ConfigVars__get_valueDelegates_b__96_35__MethodInfo); DO_APP_FUNC(0x005C3A80, bool, ConfigVars__get_valueDelegates_b__96_36, (ConfigVars * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF24B0, ConfigVars__get_valueDelegates_b__96_36__MethodInfo); DO_APP_FUNC(0x01F43E40, void, ConfigVars__get_valueDelegates_b__96_37, (ConfigVars * __this, bool x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF24B8, ConfigVars__get_valueDelegates_b__96_37__MethodInfo); DO_APP_FUNC(0x005C3CE0, bool, ConfigVars__get_valueDelegates_b__96_38, (ConfigVars * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF24A0, ConfigVars__get_valueDelegates_b__96_38__MethodInfo); DO_APP_FUNC(0x01E94C50, void, ConfigVars__get_valueDelegates_b__96_39, (ConfigVars * __this, bool x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF24A8, ConfigVars__get_valueDelegates_b__96_39__MethodInfo); DO_APP_FUNC(0x01F43E50, bool, ConfigVars__get_valueDelegates_b__96_40, (ConfigVars * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2398, ConfigVars__get_valueDelegates_b__96_40__MethodInfo); DO_APP_FUNC(0x01F43E60, void, ConfigVars__get_valueDelegates_b__96_41, (ConfigVars * __this, bool x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2380, ConfigVars__get_valueDelegates_b__96_41__MethodInfo); DO_APP_FUNC(0x01F43E70, bool, ConfigVars__get_valueDelegates_b__96_42, (ConfigVars * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2388, ConfigVars__get_valueDelegates_b__96_42__MethodInfo); DO_APP_FUNC(0x01F43E80, void, ConfigVars__get_valueDelegates_b__96_43, (ConfigVars * __this, bool x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2370, ConfigVars__get_valueDelegates_b__96_43__MethodInfo); DO_APP_FUNC(0x00990F10, int32_t, ConfigVars__get_valueDelegates_b__96_44, (ConfigVars * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2378, ConfigVars__get_valueDelegates_b__96_44__MethodInfo); DO_APP_FUNC(0x00990F20, void, ConfigVars__get_valueDelegates_b__96_45, (ConfigVars * __this, int32_t x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2360, ConfigVars__get_valueDelegates_b__96_45__MethodInfo); DO_APP_FUNC(0x01D2EA50, bool, ConfigVars__get_valueDelegates_b__96_46, (ConfigVars * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2368, ConfigVars__get_valueDelegates_b__96_46__MethodInfo); DO_APP_FUNC(0x01F43E90, void, ConfigVars__get_valueDelegates_b__96_47, (ConfigVars * __this, bool x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2350, ConfigVars__get_valueDelegates_b__96_47__MethodInfo); DO_APP_FUNC(0x01F43EA0, bool, ConfigVars__get_valueDelegates_b__96_48, (ConfigVars * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2358, ConfigVars__get_valueDelegates_b__96_48__MethodInfo); DO_APP_FUNC(0x01F43EB0, void, ConfigVars__get_valueDelegates_b__96_49, (ConfigVars * __this, bool x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2340, ConfigVars__get_valueDelegates_b__96_49__MethodInfo); DO_APP_FUNC(0x01F2B8D0, bool, ConfigVars__get_valueDelegates_b__96_50, (ConfigVars * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2330, ConfigVars__get_valueDelegates_b__96_50__MethodInfo); DO_APP_FUNC(0x01F43EC0, void, ConfigVars__get_valueDelegates_b__96_51, (ConfigVars * __this, bool x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2338, ConfigVars__get_valueDelegates_b__96_51__MethodInfo); DO_APP_FUNC(0x01F43ED0, bool, ConfigVars__get_valueDelegates_b__96_52, (ConfigVars * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2320, ConfigVars__get_valueDelegates_b__96_52__MethodInfo); DO_APP_FUNC(0x01F43EE0, void, ConfigVars__get_valueDelegates_b__96_53, (ConfigVars * __this, bool x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2328, ConfigVars__get_valueDelegates_b__96_53__MethodInfo); DO_APP_FUNC(0x00BB6E90, DeadZone2DType__Enum, ConfigVars__get_valueDelegates_b__96_54, (ConfigVars * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2410, ConfigVars__get_valueDelegates_b__96_54__MethodInfo); DO_APP_FUNC(0x00BB6EA0, void, ConfigVars__get_valueDelegates_b__96_55, (ConfigVars * __this, DeadZone2DType__Enum x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2418, ConfigVars__get_valueDelegates_b__96_55__MethodInfo); DO_APP_FUNC(0x01D17020, AxisSensitivity2DType__Enum, ConfigVars__get_valueDelegates_b__96_56, (ConfigVars * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2400, ConfigVars__get_valueDelegates_b__96_56__MethodInfo); DO_APP_FUNC(0x01D17030, void, ConfigVars__get_valueDelegates_b__96_57, (ConfigVars * __this, AxisSensitivity2DType__Enum x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2408, ConfigVars__get_valueDelegates_b__96_57__MethodInfo); DO_APP_FUNC(0x01D1C3C0, AxisSensitivityType__Enum, ConfigVars__get_valueDelegates_b__96_58, (ConfigVars * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF23F0, ConfigVars__get_valueDelegates_b__96_58__MethodInfo); DO_APP_FUNC(0x01D1C3D0, void, ConfigVars__get_valueDelegates_b__96_59, (ConfigVars * __this, AxisSensitivityType__Enum x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF23F8, ConfigVars__get_valueDelegates_b__96_59__MethodInfo); DO_APP_FUNC(0x009482D0, bool, ConfigVars__get_valueDelegates_b__96_60, (ConfigVars * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF23E8, ConfigVars__get_valueDelegates_b__96_60__MethodInfo); DO_APP_FUNC(0x01F43EF0, void, ConfigVars__get_valueDelegates_b__96_61, (ConfigVars * __this, bool x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF23D0, ConfigVars__get_valueDelegates_b__96_61__MethodInfo); DO_APP_FUNC(0x003C4830, ThrottleCalibrationMode__Enum, ConfigVars__get_valueDelegates_b__96_62, (ConfigVars * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF23D8, ConfigVars__get_valueDelegates_b__96_62__MethodInfo); DO_APP_FUNC(0x003C4840, void, ConfigVars__get_valueDelegates_b__96_63, (ConfigVars * __this, ThrottleCalibrationMode__Enum x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF23C0, ConfigVars__get_valueDelegates_b__96_63__MethodInfo); DO_APP_FUNC(0x01F43F00, bool, ConfigVars__get_valueDelegates_b__96_64, (ConfigVars * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF23C8, ConfigVars__get_valueDelegates_b__96_64__MethodInfo); DO_APP_FUNC(0x01F43F10, void, ConfigVars__get_valueDelegates_b__96_65, (ConfigVars * __this, bool x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF23B0, ConfigVars__get_valueDelegates_b__96_65__MethodInfo); DO_APP_FUNC(0x01F43F20, bool, ConfigVars__get_valueDelegates_b__96_66, (ConfigVars * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF23B8, ConfigVars__get_valueDelegates_b__96_66__MethodInfo); DO_APP_FUNC(0x01F43F30, void, ConfigVars__get_valueDelegates_b__96_67, (ConfigVars * __this, bool x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF23A0, ConfigVars__get_valueDelegates_b__96_67__MethodInfo); DO_APP_FUNC(0x01D1C3E0, LogLevelFlags__Enum, ConfigVars__get_valueDelegates_b__96_68, (ConfigVars * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF23A8, ConfigVars__get_valueDelegates_b__96_68__MethodInfo); DO_APP_FUNC(0x01D1C3F0, void, ConfigVars__get_valueDelegates_b__96_69, (ConfigVars * __this, LogLevelFlags__Enum x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2268, ConfigVars__get_valueDelegates_b__96_69__MethodInfo); DO_APP_FUNC(0x01F3F110, bool, ConfigVars__get_valueDelegates_b__96_70, (ConfigVars * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2258, ConfigVars__get_valueDelegates_b__96_70__MethodInfo); DO_APP_FUNC(0x01F43F40, void, ConfigVars__get_valueDelegates_b__96_71, (ConfigVars * __this, bool x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2260, ConfigVars__get_valueDelegates_b__96_71__MethodInfo); DO_APP_FUNC(0x01F3F160, bool, ConfigVars__get_valueDelegates_b__96_72, (ConfigVars * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2240, ConfigVars__get_valueDelegates_b__96_72__MethodInfo); DO_APP_FUNC(0x01F43F70, void, ConfigVars__get_valueDelegates_b__96_73, (ConfigVars * __this, bool x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2250, ConfigVars__get_valueDelegates_b__96_73__MethodInfo); DO_APP_FUNC(0x01F3F1B0, bool, ConfigVars__get_valueDelegates_b__96_74, (ConfigVars * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2228, ConfigVars__get_valueDelegates_b__96_74__MethodInfo); DO_APP_FUNC(0x01F43FA0, void, ConfigVars__get_valueDelegates_b__96_75, (ConfigVars * __this, bool x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2230, ConfigVars__get_valueDelegates_b__96_75__MethodInfo); DO_APP_FUNC(0x01F43FF0, bool, ConfigVars__get_valueDelegates_b__96_76, (ConfigVars * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2208, ConfigVars__get_valueDelegates_b__96_76__MethodInfo); DO_APP_FUNC(0x01F44000, void, ConfigVars__get_valueDelegates_b__96_77, (ConfigVars * __this, bool x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2218, ConfigVars__get_valueDelegates_b__96_77__MethodInfo); DO_APP_FUNC(0x01F44010, bool, ConfigVars__get_valueDelegates_b__96_78, (ConfigVars * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF21F8, ConfigVars__get_valueDelegates_b__96_78__MethodInfo); DO_APP_FUNC(0x01F44020, void, ConfigVars__get_valueDelegates_b__96_79, (ConfigVars * __this, bool x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2200, ConfigVars__get_valueDelegates_b__96_79__MethodInfo); DO_APP_FUNC(0x01F44030, bool, ConfigVars__get_valueDelegates_b__96_80, (ConfigVars * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF21F0, ConfigVars__get_valueDelegates_b__96_80__MethodInfo); DO_APP_FUNC(0x01F44040, void, ConfigVars__get_valueDelegates_b__96_81, (ConfigVars * __this, bool x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF21D8, ConfigVars__get_valueDelegates_b__96_81__MethodInfo); DO_APP_FUNC(0x01F44050, int32_t, ConfigVars__get_valueDelegates_b__96_82, (ConfigVars * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF21E0, ConfigVars__get_valueDelegates_b__96_82__MethodInfo); DO_APP_FUNC(0x01F44060, void, ConfigVars__get_valueDelegates_b__96_83, (ConfigVars * __this, int32_t x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2310, ConfigVars__get_valueDelegates_b__96_83__MethodInfo); DO_APP_FUNC(0x01F44070, bool, ConfigVars__get_valueDelegates_b__96_84, (ConfigVars * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2318, ConfigVars__get_valueDelegates_b__96_84__MethodInfo); DO_APP_FUNC(0x01F44080, void, ConfigVars__get_valueDelegates_b__96_85, (ConfigVars * __this, bool x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF22F8, ConfigVars__get_valueDelegates_b__96_85__MethodInfo); DO_APP_FUNC(0x01F44130, void, ConfigVars_PlatformVars__ctor, (ConfigVars_PlatformVars * __this, MethodInfo * method)); DO_APP_FUNC(0x01F44140, void, ConfigVars_PlatformVars_WindowsStandalone__ctor, (ConfigVars_PlatformVars_WindowsStandalone * __this, MethodInfo * method)); DO_APP_FUNC(0x01F44130, void, ConfigVars_PlatformVars_OSXStandalone__ctor, (ConfigVars_PlatformVars_OSXStandalone * __this, MethodInfo * method)); @@ -45672,7 +53766,7 @@ DO_APP_FUNC(0x01F45AD0, IHardwareControllerMap *, ControllerDataFiles_GetHardwar DO_APP_FUNC(0x01F45C20, ControllerTemplateElementIdentifier *, ControllerDataFiles_efdnRncEwxtlqQnXWCYscpJPWsTFA, (ControllerDataFiles * __this, Guid param_0000b587, int32_t param_0000b588, MethodInfo * method)); DO_APP_FUNC(0x01F46030, HardwareJoystickMap_InputManager *, ControllerDataFiles_ATWpnGGSBQArKpGshvaHvramVmQE, (ControllerDataFiles * __this, Guid param_0000b589, InputSource__Enum param_0000b58a, MethodInfo * method)); DO_APP_FUNC(0x01F46380, HardwareJoystickMap_InputManager *, ControllerDataFiles_uATGBhRdTOTssPNOrYASABTuWmhG, (ControllerDataFiles * __this, BridgedControllerHWInfo * param_0000b58b, MethodInfo * method)); -DO_APP_FUNC(0x01F46910, HardwareJoystickMap_InputManager *, ControllerDataFiles_MoNIOYAcKRAPTkRqBRFAQJyUMpKK, (ControllerDataFiles * __this, HardwareJoystickMap * param_0000b58c, BridgedControllerHWInfo * param_0000b58d, bool param_0000b58e, InputPlatform__Enum param_0000b58f, int32_t param_0000b590, HardwareJoystickMap_Platform * param_0000b591, MethodInfo * method)); +DO_APP_FUNC(0x01F46910, HardwareJoystickMap_InputManager *, ControllerDataFiles_MoNIOYAcKRAPTkRqBRFAQJyUMpKK, (ControllerDataFiles * __this, HardwareJoystickMap * param_0000b58c, BridgedControllerHWInfo * param_0000b58d, bool param_0000b58e, InputPlatform__Enum * param_0000b58f, int32_t * param_0000b590, HardwareJoystickMap_Platform * * param_0000b591, MethodInfo * method)); DO_APP_FUNC(0x01F46B10, HardwareJoystickMap_InputManager *, ControllerDataFiles_nZhLCgnvSTTveXVfwVRpJhJNeQxEA, (ControllerDataFiles * __this, BridgedControllerHWInfo * param_0000b592, String * param_0000b593, MethodInfo * method)); DO_APP_FUNC(0x01F46DE0, HardwareJoystickMap_InputManager *, ControllerDataFiles_XtCrhGiDDEgdaXIVzmPLHHgVIyQH, (ControllerDataFiles * __this, BridgedControllerHWInfo * param_0000b594, MethodInfo * method)); DO_APP_FUNC(0x01F46E50, void, ControllerDataFiles_RWmgJnoZUyHqIzRgmgMIPAfwpItr, (ControllerDataFiles * __this, MethodInfo * method)); @@ -45705,24 +53799,32 @@ DO_APP_FUNC(0x01F486D0, bool, CustomController_Editor_ContainsElementIdentifier, DO_APP_FUNC(0x01F48790, int32_t, CustomController_Editor_IndexOfElementIdentifier, (CustomController_Editor * __this, int32_t id, MethodInfo * method)); DO_APP_FUNC(0x01F48850, ControllerElementIdentifier *, CustomController_Editor_GetElementIdentifier, (CustomController_Editor * __this, int32_t id, MethodInfo * method)); DO_APP_FUNC(0x01F488E0, ControllerElementType__Enum, CustomController_Editor_GetEffectiveElementIdentifierType, (CustomController_Editor * __this, int32_t elementIdentifierId, MethodInfo * method)); -DO_APP_FUNC(0x01F48AA0, bool, CustomController_Editor_GetEffectiveAxisRange, (CustomController_Editor * __this, int32_t elementIdentifierId, AxisRange__Enum axisRange, MethodInfo * method)); +DO_APP_FUNC(0x01F48AA0, bool, CustomController_Editor_GetEffectiveAxisRange, (CustomController_Editor * __this, int32_t elementIdentifierId, AxisRange__Enum * axisRange, MethodInfo * method)); DO_APP_FUNC(0x01F48C80, String__Array *, CustomController_Editor_GetButtonNames, (CustomController_Editor * __this, MethodInfo * method)); DO_APP_FUNC(0x01F48E40, Int32__Array *, CustomController_Editor_GetButtonElementIdentifierIds, (CustomController_Editor * __this, MethodInfo * method)); DO_APP_FUNC(0x01F48F40, String__Array *, CustomController_Editor_GetAxisNames, (CustomController_Editor * __this, MethodInfo * method)); DO_APP_FUNC(0x01F49100, Int32__Array *, CustomController_Editor_GetAxisElementIdentifierIds, (CustomController_Editor * __this, MethodInfo * method)); DO_APP_FUNC(0x01F49200, String__Array *, CustomController_Editor_GetElementNames, (CustomController_Editor * __this, ControllerElementType__Enum type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4B70, CustomController_Editor_GetElementNames__MethodInfo); DO_APP_FUNC(0x01F49270, Int32__Array *, CustomController_Editor_GetElementElementIdentifierIds, (CustomController_Editor * __this, ControllerElementType__Enum type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4B68, CustomController_Editor_GetElementElementIdentifierIds__MethodInfo); DO_APP_FUNC(0x01F494C0, void, CustomController_Editor_AddElement, (CustomController_Editor * __this, ControllerElementType__Enum type, MethodInfo * method)); DO_APP_FUNC(0x01F49660, void, CustomController_Editor_AddAxis, (CustomController_Editor * __this, MethodInfo * method)); DO_APP_FUNC(0x01F49740, void, CustomController_Editor_AddButton, (CustomController_Editor * __this, MethodInfo * method)); DO_APP_FUNC(0x01F49820, void, CustomController_Editor_InsertElement, (CustomController_Editor * __this, ControllerElementType__Enum type, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01F49A40, void, CustomController_Editor_InsertAxis, (CustomController_Editor * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4B58, CustomController_Editor_InsertAxis__MethodInfo); DO_APP_FUNC(0x01F49B60, void, CustomController_Editor_InsertButton, (CustomController_Editor * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4B08, CustomController_Editor_InsertButton__MethodInfo); DO_APP_FUNC(0x01F49C80, void, CustomController_Editor_DeleteElement, (CustomController_Editor * __this, ControllerElementType__Enum type, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4AF8, CustomController_Editor_DeleteElement__MethodInfo); DO_APP_FUNC(0x01F49D40, bool, CustomController_Editor_ReorderElement, (CustomController_Editor * __this, ControllerElementType__Enum type, int32_t index, bool offsetDown, bool offsetNow, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4AD8, CustomController_Editor_ReorderElement__MethodInfo); DO_APP_FUNC(0x01F49E70, void, CustomController_Editor_DuplicateElement, (CustomController_Editor * __this, ControllerElementType__Enum type, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4B48, CustomController_Editor_DuplicateElement__MethodInfo); DO_APP_FUNC(0x01F49F40, ControllerElementIdentifier *, CustomController_Editor_WOVADbLMrLIbYwMhYbAfApLeMydxA, (CustomController_Editor * __this, int32_t param_0000b5b5, String * param_0000b5b6, MethodInfo * method)); DO_APP_FUNC(0x01F4A1B0, CustomController_Editor_Element *, CustomController_Editor_WBuDcKPSvibiaNaiGaKbDovMOoYVA, (CustomController_Editor * __this, ControllerElementType__Enum param_0000b5b7, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4B30, CustomController_Editor_WBuDcKPSvibiaNaiGaKbDovMOoYVA__MethodInfo); DO_APP_FUNC(0x01F4A440, ControllerElementIdentifier *, CustomController_Editor_PVkjOdzJoGXrhkbcfEHmKjeXIxWX, (CustomController_Editor * __this, ControllerElementType__Enum param_0000b5b8, String * param_0000b5b9, String * param_0000b5ba, String * param_0000b5bb, MethodInfo * method)); DO_APP_FUNC(0x01F4A520, HardwareControllerMap_Game *, CustomController_Editor_CreateGameHardwareMap, (CustomController_Editor * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CustomController_Editor_Element__ctor, (CustomController_Editor_Element * __this, MethodInfo * method)); @@ -45742,6 +53844,7 @@ DO_APP_FUNC(0x003AE050, void, CustomController_Editor_YLzFOzPFWqItvxpmImsxNXjDjt DO_APP_FUNC(0x01F4B8F0, bool, CustomController_Editor_YLzFOzPFWqItvxpmImsxNXjDjtHr_MoveNext, (CustomController_Editor_YLzFOzPFWqItvxpmImsxNXjDjtHr * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, ControllerElementIdentifier *, CustomController_Editor_YLzFOzPFWqItvxpmImsxNXjDjtHr_System_Collections_Generic_IEnumerator_Rewired_ControllerElementIdentifier__get_Current, (CustomController_Editor_YLzFOzPFWqItvxpmImsxNXjDjtHr * __this, MethodInfo * method)); DO_APP_FUNC(0x01F4BA20, void, CustomController_Editor_YLzFOzPFWqItvxpmImsxNXjDjtHr_System_Collections_IEnumerator_Reset, (CustomController_Editor_YLzFOzPFWqItvxpmImsxNXjDjtHr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4AC8, CustomController_Editor_YLzFOzPFWqItvxpmImsxNXjDjtHr_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, CustomController_Editor_YLzFOzPFWqItvxpmImsxNXjDjtHr_System_Collections_IEnumerator_get_Current, (CustomController_Editor_YLzFOzPFWqItvxpmImsxNXjDjtHr * __this, MethodInfo * method)); DO_APP_FUNC(0x01F4BA70, IEnumerator_1_Rewired_ControllerElementIdentifier_ *, CustomController_Editor_YLzFOzPFWqItvxpmImsxNXjDjtHr_System_Collections_Generic_IEnumerable_Rewired_ControllerElementIdentifier__GetEnumerator, (CustomController_Editor_YLzFOzPFWqItvxpmImsxNXjDjtHr * __this, MethodInfo * method)); DO_APP_FUNC(0x01F4BA70, IEnumerator *, CustomController_Editor_YLzFOzPFWqItvxpmImsxNXjDjtHr_System_Collections_IEnumerable_GetEnumerator, (CustomController_Editor_YLzFOzPFWqItvxpmImsxNXjDjtHr * __this, MethodInfo * method)); @@ -45803,6 +53906,7 @@ DO_APP_FUNC(0x003BB3D0, List_1_Rewired_Data_Player_Editor_RuleSetMapping_ *, Pla DO_APP_FUNC(0x01F4D710, void, Player_Editor_ControllerMapLayoutManagerSettings_set_ruleSets, (Player_Editor_ControllerMapLayoutManagerSettings * __this, List_1_Rewired_Data_Player_Editor_RuleSetMapping_ * value, MethodInfo * method)); DO_APP_FUNC(0x01F4D840, void, Player_Editor_ControllerMapLayoutManagerSettings__ctor, (Player_Editor_ControllerMapLayoutManagerSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x01F4D910, void, Player_Editor_ControllerMapLayoutManagerSettings__ctor_1, (Player_Editor_ControllerMapLayoutManagerSettings * __this, Player_Editor_ControllerMapLayoutManagerSettings * param_0000b5f3, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF49D8, Player_Editor_ControllerMapLayoutManagerSettings__ctor_1__MethodInfo); DO_APP_FUNC(0x01F4DAA0, ControllerMapLayoutManager_OAjbFOivILIoOuJJWeCBbjSYTLeUA *, Player_Editor_ControllerMapLayoutManagerSettings_SYmZDCKlBNeptSgLxJUvfUiyudyX, (Player_Editor_ControllerMapLayoutManagerSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x01F4DCC0, XXNesqlLzdVyNWEawBsQGxYGjphX__Array *, Player_Editor_ControllerMapLayoutManagerSettings_PntsxHYnIyFoEghbmhVaxdeoYdCt, (Player_Editor_ControllerMapLayoutManagerSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x01F4DE20, Object *, Player_Editor_ControllerMapLayoutManagerSettings_Rewired_Utils_Interfaces_IDeepCloneable_DeepClone, (Player_Editor_ControllerMapLayoutManagerSettings * __this, MethodInfo * method)); @@ -45812,6 +53916,7 @@ DO_APP_FUNC(0x003BB3D0, List_1_Rewired_Data_Player_Editor_RuleSetMapping_ *, Pla DO_APP_FUNC(0x01F4DFE0, void, Player_Editor_ControllerMapEnablerSettings_set_ruleSets, (Player_Editor_ControllerMapEnablerSettings * __this, List_1_Rewired_Data_Player_Editor_RuleSetMapping_ * value, MethodInfo * method)); DO_APP_FUNC(0x01F4E110, void, Player_Editor_ControllerMapEnablerSettings__ctor, (Player_Editor_ControllerMapEnablerSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x01F4E1E0, void, Player_Editor_ControllerMapEnablerSettings__ctor_1, (Player_Editor_ControllerMapEnablerSettings * __this, Player_Editor_ControllerMapEnablerSettings * param_0000b5f6, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF49F0, Player_Editor_ControllerMapEnablerSettings__ctor_1__MethodInfo); DO_APP_FUNC(0x01F4E370, ControllerMapEnabler_OKJjdMVAalCqZcLQzdQgZmMptzek *, Player_Editor_ControllerMapEnablerSettings_SYmZDCKlBNeptSgLxJUvfUiyudyX, (Player_Editor_ControllerMapEnablerSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x01F4E590, XXNesqlLzdVyNWEawBsQGxYGjphX__Array *, Player_Editor_ControllerMapEnablerSettings_PntsxHYnIyFoEghbmhVaxdeoYdCt, (Player_Editor_ControllerMapEnablerSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x01F4E6F0, Object *, Player_Editor_ControllerMapEnablerSettings_Rewired_Utils_Interfaces_IDeepCloneable_DeepClone, (Player_Editor_ControllerMapEnablerSettings * __this, MethodInfo * method)); @@ -45821,6 +53926,7 @@ DO_APP_FUNC(0x003BCD20, bool, Player_Editor_RuleSetMapping_get_enabled, (Player_ DO_APP_FUNC(0x003BCD30, void, Player_Editor_RuleSetMapping_dtGluMeMLUdJazYbbryaSnpSVhKN, (Player_Editor_RuleSetMapping * __this, bool param_0000b5f8, MethodInfo * method)); DO_APP_FUNC(0x01F4E8B0, void, Player_Editor_RuleSetMapping__ctor, (Player_Editor_RuleSetMapping * __this, MethodInfo * method)); DO_APP_FUNC(0x01F4E8C0, void, Player_Editor_RuleSetMapping__ctor_1, (Player_Editor_RuleSetMapping * __this, Player_Editor_RuleSetMapping * param_0000b5f9, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4978, Player_Editor_RuleSetMapping__ctor_1__MethodInfo); DO_APP_FUNC(0x01F4E940, void, Player_Editor_RuleSetMapping__ctor_2, (Player_Editor_RuleSetMapping * __this, bool param_0000b5fa, int32_t param_0000b5fb, MethodInfo * method)); DO_APP_FUNC(0x01F4E8B0, void, Player_Editor_RuleSetMapping_Clear, (Player_Editor_RuleSetMapping * __this, MethodInfo * method)); DO_APP_FUNC(0x01F4E950, Player_Editor_RuleSetMapping *, Player_Editor_RuleSetMapping_Clone, (Player_Editor_RuleSetMapping * __this, MethodInfo * method)); @@ -45886,14 +53992,19 @@ DO_APP_FUNC(0x01F50FD0, List_1_Rewired_MouseMap_ *, UserData_GetMouseMaps_Copy, DO_APP_FUNC(0x01F51160, int32_t, UserData_get_playerCount, (UserData * __this, MethodInfo * method)); DO_APP_FUNC(0x01F511B0, void, UserData_AddPlayer, (UserData * __this, MethodInfo * method)); DO_APP_FUNC(0x01F51210, void, UserData_InsertPlayer, (UserData * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4788, UserData_InsertPlayer__MethodInfo); DO_APP_FUNC(0x01F51300, void, UserData_DeletePlayer, (UserData * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4660, UserData_DeletePlayer__MethodInfo); DO_APP_FUNC(0x01F513D0, bool, UserData_ReorderPlayer, (UserData * __this, int32_t index, bool offsetDown, bool offsetNow, MethodInfo * method)); DO_APP_FUNC(0x01F51450, void, UserData_DuplicatePlayer, (UserData * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4628, UserData_DuplicatePlayer__MethodInfo); DO_APP_FUNC(0x01F51670, String__Array *, UserData_GetPlayerNames, (UserData * __this, MethodInfo * method)); DO_APP_FUNC(0x01F51830, int32_t, UserData_GetPlayerNames_1, (UserData * __this, IList_1_System_String_ * results, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF45E8, UserData_GetPlayerNames_1__MethodInfo); DO_APP_FUNC(0x01F51A40, Int32__Array *, UserData_GetPlayerIds, (UserData * __this, MethodInfo * method)); DO_APP_FUNC(0x01F51B40, Int32__Array *, UserData_GetPlayerRuntimeIds, (UserData * __this, MethodInfo * method)); DO_APP_FUNC(0x01F51C00, int32_t, UserData_GetPlayerRuntimeIds_1, (UserData * __this, IList_1_System_Int32_ * results, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF46C0, UserData_GetPlayerRuntimeIds_1__MethodInfo); DO_APP_FUNC(0x01F51D40, String *, UserData_GetPlayerNameById, (UserData * __this, int32_t id, MethodInfo * method)); DO_APP_FUNC(0x01F51E30, Player_Editor *, UserData_GetPlayer, (UserData * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01F51ED0, int32_t, UserData_GetPlayerId, (UserData * __this, String * name, MethodInfo * method)); @@ -45909,8 +54020,10 @@ DO_APP_FUNC(0x01F52650, int32_t, UserData_DuplicateAction_FromButton, (UserData DO_APP_FUNC(0x01F52850, int32_t, UserData_yqlHWbxaspGATbznXocdbEGFIUHS, (UserData * __this, int32_t param_0000b634, InputAction * param_0000b635, MethodInfo * method)); DO_APP_FUNC(0x01F529D0, String__Array *, UserData_GetActionNames, (UserData * __this, MethodInfo * method)); DO_APP_FUNC(0x01F52B90, int32_t, UserData_GetActionNames_1, (UserData * __this, IList_1_System_String_ * results, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF45B0, UserData_GetActionNames_1__MethodInfo); DO_APP_FUNC(0x01F52DA0, Int32__Array *, UserData_GetActionIds, (UserData * __this, MethodInfo * method)); DO_APP_FUNC(0x01F52EA0, int32_t, UserData_GetActionIds_1, (UserData * __this, IList_1_System_Int32_ * results, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4588, UserData_GetActionIds_1__MethodInfo); DO_APP_FUNC(0x01F530B0, String *, UserData_GetActionNameById, (UserData * __this, int32_t id, MethodInfo * method)); DO_APP_FUNC(0x01F531A0, InputAction *, UserData_GetAction, (UserData * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01F53240, InputAction *, UserData_GetAction_1, (UserData * __this, String * name, MethodInfo * method)); @@ -45923,11 +54036,14 @@ DO_APP_FUNC(0x01F53A50, IEnumerable_1_System_String_ *, UserData_SortedActionDes DO_APP_FUNC(0x01F53B10, Int32__Array *, UserData_GetSortedActionIdsInCategory, (UserData * __this, int32_t id, MethodInfo * method)); DO_APP_FUNC(0x01F53DE0, IEnumerable_1_System_Int32_ *, UserData_SortedActionIdsInCategory, (UserData * __this, int32_t id, MethodInfo * method)); DO_APP_FUNC(0x01F53EA0, bool, UserData_ContainsAction, (UserData * __this, int32_t id, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3FD8, UserData_ContainsAction__MethodInfo); DO_APP_FUNC(0x01F53EC0, int32_t, UserData_IndexOfAction, (UserData * __this, int32_t id, MethodInfo * method)); DO_APP_FUNC(0x01F53F70, int32_t, UserData_IndexOfAction_1, (UserData * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x01F54170, void, UserData_AddActionCategory, (UserData * __this, MethodInfo * method)); DO_APP_FUNC(0x01F541F0, void, UserData_InsertActionCategory, (UserData * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF44D8, UserData_InsertActionCategory__MethodInfo); DO_APP_FUNC(0x01F54300, void, UserData_DeleteActionCategory, (UserData * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF44C0, UserData_DeleteActionCategory__MethodInfo); DO_APP_FUNC(0x01F54540, bool, UserData_ReorderActionCategory, (UserData * __this, int32_t index, bool offsetDown, bool offsetNow, MethodInfo * method)); DO_APP_FUNC(0x01F545F0, void, UserData_DuplicateActionCategory, (UserData * __this, int32_t index, bool duplicateActions, MethodInfo * method)); DO_APP_FUNC(0x01F54DF0, void, UserData_ChangeActionCategory, (UserData * __this, int32_t actionId, int32_t newCategoryId, MethodInfo * method)); @@ -45945,9 +54061,12 @@ DO_APP_FUNC(0x01F55740, int32_t, UserData_IndexOfActionCategory_1, (UserData * _ DO_APP_FUNC(0x01F55930, int32_t, UserData_GetActionCategoryCount_1, (UserData * __this, MethodInfo * method)); DO_APP_FUNC(0x01F55980, void, UserData_AddInputBehavior, (UserData * __this, MethodInfo * method)); DO_APP_FUNC(0x01F559E0, void, UserData_InsertInputBehavior, (UserData * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4458, UserData_InsertInputBehavior__MethodInfo); DO_APP_FUNC(0x01F55AD0, void, UserData_DeleteInputBehavior, (UserData * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4428, UserData_DeleteInputBehavior__MethodInfo); DO_APP_FUNC(0x01F55CC0, bool, UserData_ReorderInputBehavior, (UserData * __this, int32_t index, bool offsetDown, bool offsetNow, MethodInfo * method)); DO_APP_FUNC(0x01F55D40, void, UserData_DuplicateInputBehavior, (UserData * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF43E8, UserData_DuplicateInputBehavior__MethodInfo); DO_APP_FUNC(0x01F55F40, String__Array *, UserData_GetInputBehaviorNames, (UserData * __this, MethodInfo * method)); DO_APP_FUNC(0x01F56100, Int32__Array *, UserData_GetInputBehaviorIds, (UserData * __this, MethodInfo * method)); DO_APP_FUNC(0x01F56200, InputBehavior *, UserData_GetInputBehavior, (UserData * __this, int32_t index, MethodInfo * method)); @@ -45958,9 +54077,12 @@ DO_APP_FUNC(0x01F564B0, int32_t, UserData_IndexOfInputBehavior, (UserData * __th DO_APP_FUNC(0x01F56560, int32_t, UserData_IndexOfInputBehavior_1, (UserData * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x01F56760, void, UserData_AddMapCategory, (UserData * __this, MethodInfo * method)); DO_APP_FUNC(0x01F567C0, void, UserData_InsertMapCategory, (UserData * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4330, UserData_InsertMapCategory__MethodInfo); DO_APP_FUNC(0x01F568B0, void, UserData_DeleteMapCategory, (UserData * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4298, UserData_DeleteMapCategory__MethodInfo); DO_APP_FUNC(0x01F56F30, bool, UserData_ReorderMapCategory, (UserData * __this, int32_t index, bool offsetDown, bool offsetNow, MethodInfo * method)); DO_APP_FUNC(0x01F56FB0, void, UserData_DuplicateMapCategory, (UserData * __this, int32_t index, bool duplicateMaps, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4150, UserData_DuplicateMapCategory__MethodInfo); DO_APP_FUNC(0x01F574F0, int32_t, UserData_GetMapCategoryMapCount, (UserData * __this, int32_t id, MethodInfo * method)); DO_APP_FUNC(0x01F57700, int32_t, UserData_GetMapCategoryIndex, (UserData * __this, int32_t id, MethodInfo * method)); DO_APP_FUNC(0x01F577B0, String__Array *, UserData_GetMapCategoryNames, (UserData * __this, MethodInfo * method)); @@ -45973,12 +54095,17 @@ DO_APP_FUNC(0x01F57D20, String *, UserData_GetMapCategoryNameById, (UserData * _ DO_APP_FUNC(0x01F57E10, int32_t, UserData_IndexOfMapCategory, (UserData * __this, int32_t id, MethodInfo * method)); DO_APP_FUNC(0x01F57EC0, int32_t, UserData_IndexOfMapCategory_1, (UserData * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x01F580B0, String__Array *, UserData_GetLayoutNames, (UserData * __this, ControllerType__Enum controllerType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF41A8, UserData_GetLayoutNames__MethodInfo); DO_APP_FUNC(0x01F58150, Int32__Array *, UserData_GetLayoutIds, (UserData * __this, ControllerType__Enum controllerType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4188, UserData_GetLayoutIds__MethodInfo); DO_APP_FUNC(0x01F58590, void, UserData_AddJoystickLayout, (UserData * __this, MethodInfo * method)); DO_APP_FUNC(0x01F585F0, void, UserData_InsertJoystickLayout, (UserData * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4118, UserData_InsertJoystickLayout__MethodInfo); DO_APP_FUNC(0x01F586E0, void, UserData_DeleteJoystickLayout, (UserData * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF40F8, UserData_DeleteJoystickLayout__MethodInfo); DO_APP_FUNC(0x01F58AA0, bool, UserData_ReorderJoystickLayout, (UserData * __this, int32_t index, bool offsetDown, bool offsetNow, MethodInfo * method)); DO_APP_FUNC(0x01F58B20, void, UserData_DuplicateJoystickLayout, (UserData * __this, int32_t index, bool duplicateMaps, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4128, UserData_DuplicateJoystickLayout__MethodInfo); DO_APP_FUNC(0x01F58DF0, int32_t, UserData_GetJoystickLayoutMapCount, (UserData * __this, int32_t id, MethodInfo * method)); DO_APP_FUNC(0x01F58EC0, int32_t, UserData_GetJoystickLayoutIndex, (UserData * __this, int32_t id, MethodInfo * method)); DO_APP_FUNC(0x01F58F70, String__Array *, UserData_GetJoystickLayoutNames, (UserData * __this, MethodInfo * method)); @@ -45992,9 +54119,12 @@ DO_APP_FUNC(0x01F595C0, int32_t, UserData_IndexOfJoystickLayout_1, (UserData * _ DO_APP_FUNC(0x01F597B0, String *, UserData_GetJoystickLayoutNameById, (UserData * __this, int32_t id, MethodInfo * method)); DO_APP_FUNC(0x01F59890, void, UserData_AddKeyboardLayout, (UserData * __this, MethodInfo * method)); DO_APP_FUNC(0x01F598F0, void, UserData_InsertKeyboardLayout, (UserData * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF40C8, UserData_InsertKeyboardLayout__MethodInfo); DO_APP_FUNC(0x01F599E0, void, UserData_DeleteKeyboardLayout, (UserData * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF40E0, UserData_DeleteKeyboardLayout__MethodInfo); DO_APP_FUNC(0x01F59DA0, bool, UserData_ReorderKeyboardLayout, (UserData * __this, int32_t index, bool offsetDown, bool offsetNow, MethodInfo * method)); DO_APP_FUNC(0x01F59E20, void, UserData_DuplicateKeyboardLayout, (UserData * __this, int32_t index, bool duplicateMaps, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF40D0, UserData_DuplicateKeyboardLayout__MethodInfo); DO_APP_FUNC(0x01F5A0F0, int32_t, UserData_GetKeyboardLayoutMapCount, (UserData * __this, int32_t id, MethodInfo * method)); DO_APP_FUNC(0x01F5A1C0, int32_t, UserData_GetKeyboardLayoutIndex, (UserData * __this, int32_t id, MethodInfo * method)); DO_APP_FUNC(0x01F5A270, String__Array *, UserData_GetKeyboardLayoutNames, (UserData * __this, MethodInfo * method)); @@ -46008,9 +54138,12 @@ DO_APP_FUNC(0x01F5A8C0, int32_t, UserData_IndexOfKeyboardLayout_1, (UserData * _ DO_APP_FUNC(0x01F5AAB0, String *, UserData_GetKeyboardLayoutNameById, (UserData * __this, int32_t id, MethodInfo * method)); DO_APP_FUNC(0x01F5AB90, void, UserData_AddMouseLayout, (UserData * __this, MethodInfo * method)); DO_APP_FUNC(0x01F5ABF0, void, UserData_InsertMouseLayout, (UserData * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF40C0, UserData_InsertMouseLayout__MethodInfo); DO_APP_FUNC(0x01F5ACE0, void, UserData_DeleteMouseLayout, (UserData * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF40B8, UserData_DeleteMouseLayout__MethodInfo); DO_APP_FUNC(0x01F5B0A0, bool, UserData_ReorderMouseLayout, (UserData * __this, int32_t index, bool offsetDown, bool offsetNow, MethodInfo * method)); DO_APP_FUNC(0x01F5B120, void, UserData_DuplicateMouseLayout, (UserData * __this, int32_t index, bool duplicateMaps, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF40A8, UserData_DuplicateMouseLayout__MethodInfo); DO_APP_FUNC(0x01F5B3F0, int32_t, UserData_GetMouseLayoutMapCount, (UserData * __this, int32_t id, MethodInfo * method)); DO_APP_FUNC(0x01F5B4C0, int32_t, UserData_GetMouseLayoutIndex, (UserData * __this, int32_t id, MethodInfo * method)); DO_APP_FUNC(0x01F5B570, String__Array *, UserData_GetMouseLayoutNames, (UserData * __this, MethodInfo * method)); @@ -46024,9 +54157,12 @@ DO_APP_FUNC(0x01F5BBC0, int32_t, UserData_IndexOfMouseLayout_1, (UserData * __th DO_APP_FUNC(0x01F5BDB0, String *, UserData_GetMouseLayoutNameById, (UserData * __this, int32_t id, MethodInfo * method)); DO_APP_FUNC(0x01F5BE90, void, UserData_AddCustomControllerLayout, (UserData * __this, MethodInfo * method)); DO_APP_FUNC(0x01F5BEF0, void, UserData_InsertCustomControllerLayout, (UserData * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF40A0, UserData_InsertCustomControllerLayout__MethodInfo); DO_APP_FUNC(0x01F5BFE0, void, UserData_DeleteCustomControllerLayout, (UserData * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4098, UserData_DeleteCustomControllerLayout__MethodInfo); DO_APP_FUNC(0x01F5C3B0, bool, UserData_ReorderCustomControllerLayout, (UserData * __this, int32_t index, bool offsetDown, bool offsetNow, MethodInfo * method)); DO_APP_FUNC(0x01F5C430, void, UserData_DuplicateCustomControllerLayout, (UserData * __this, int32_t index, bool duplicateMaps, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4088, UserData_DuplicateCustomControllerLayout__MethodInfo); DO_APP_FUNC(0x01F5C700, int32_t, UserData_GetCustomControllerLayoutMapCount, (UserData * __this, int32_t id, MethodInfo * method)); DO_APP_FUNC(0x01F5C7E0, int32_t, UserData_GetCustomControllerLayoutIndex, (UserData * __this, int32_t id, MethodInfo * method)); DO_APP_FUNC(0x01F5C890, String__Array *, UserData_GetCustomControllerLayoutNames, (UserData * __this, MethodInfo * method)); @@ -46039,9 +54175,11 @@ DO_APP_FUNC(0x01F5CE30, int32_t, UserData_IndexOfCustomControllerLayout, (UserDa DO_APP_FUNC(0x01F5CEE0, int32_t, UserData_IndexOfCustomControllerLayout_1, (UserData * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x01F5D0D0, String *, UserData_GetCustomControllerLayoutNameById, (UserData * __this, int32_t id, MethodInfo * method)); DO_APP_FUNC(0x01F5D1B0, String *, UserData_GetLayoutNameById, (UserData * __this, ControllerType__Enum controllerType, int32_t id, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4080, UserData_GetLayoutNameById__MethodInfo); DO_APP_FUNC(0x01F5D500, ControllerMap *, UserData_PkftbOJlSkffXgwpIJzTAwiIbTbpA, (UserData * __this, Controller * param_0000b6b8, int32_t param_0000b6b9, int32_t param_0000b6ba, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4078, UserData_PkftbOJlSkffXgwpIJzTAwiIbTbpA__MethodInfo); DO_APP_FUNC(0x01F5D770, ControllerMap_Editor *, UserData_GetJoystickMap, (UserData * __this, int32_t categoryId, Guid hardwareGuid, int32_t layoutId, MethodInfo * method)); -DO_APP_FUNC(0x01F5D960, ControllerMap_Editor *, UserData_GetJoystickMapById, (UserData * __this, int32_t id, int32_t joystickMapIndex, MethodInfo * method)); +DO_APP_FUNC(0x01F5D960, ControllerMap_Editor *, UserData_GetJoystickMapById, (UserData * __this, int32_t id, int32_t * joystickMapIndex, MethodInfo * method)); DO_APP_FUNC(0x01F5DA40, List_1_Rewired_Data_Mapping_ControllerMap_Editor_ *, UserData_GetJoystickMaps, (UserData * __this, Guid hardwareGuid, MethodInfo * method)); DO_APP_FUNC(0x01F5DC60, int32_t, UserData_GetJoystickMapId, (UserData * __this, int32_t categoryId, Guid hardwareGuid, int32_t layoutId, MethodInfo * method)); DO_APP_FUNC(0x01F5DE50, bool, UserData_HasJoystickMap, (UserData * __this, int32_t categoryId, Guid hardwareGuid, int32_t layoutId, MethodInfo * method)); @@ -46050,6 +54188,7 @@ DO_APP_FUNC(0x01F5E1B0, bool, UserData_HasJoystickMapInCategory, (UserData * __t DO_APP_FUNC(0x01F5E360, bool, UserData_CreateJoystickMap, (UserData * __this, int32_t categoryId, Guid joystickOrTemplateGuid, int32_t layoutId, MethodInfo * method)); DO_APP_FUNC(0x01F5E550, void, UserData_DeleteJoystickMap, (UserData * __this, int32_t id, MethodInfo * method)); DO_APP_FUNC(0x01F5E630, int32_t, UserData_DuplicateJoystickMap, (UserData * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4068, UserData_DuplicateJoystickMap__MethodInfo); DO_APP_FUNC(0x01F5E780, JoystickMap *, UserData_VgUAkONkztoadjdKDzOlQArJNwIJ, (UserData * __this, HardwareControllerMapIdentifier param_0000b6cf, int32_t param_0000b6d0, int32_t param_0000b6d1, MethodInfo * method)); DO_APP_FUNC(0x01F5E7D0, JoystickMap *, UserData_ySsoJBYYTjqnoIlWwloprltixbxh, (UserData * __this, Joystick * param_0000b6d2, int32_t param_0000b6d3, int32_t param_0000b6d4, MethodInfo * method)); DO_APP_FUNC(0x01F5E840, JoystickMap *, UserData_ySsoJBYYTjqnoIlWwloprltixbxh_1, (UserData * __this, HardwareControllerMapIdentifier param_0000b6d5, int32_t param_0000b6d6, int32_t param_0000b6d7, MethodInfo * method)); @@ -46063,7 +54202,8 @@ DO_APP_FUNC(0x01F60860, bool, UserData_HasKeyboardMap, (UserData * __this, int32 DO_APP_FUNC(0x01F60A40, bool, UserData_CreateKeyboardMap, (UserData * __this, int32_t categoryId, int32_t layoutId, MethodInfo * method)); DO_APP_FUNC(0x01F60BA0, void, UserData_DeleteKeyboardMap, (UserData * __this, int32_t id, MethodInfo * method)); DO_APP_FUNC(0x01F60C80, int32_t, UserData_DuplicateKeyboardMap, (UserData * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01F60DD0, ControllerMap_Editor *, UserData_GetKeyboardMapById, (UserData * __this, int32_t id, int32_t keyboardMapIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4050, UserData_DuplicateKeyboardMap__MethodInfo); +DO_APP_FUNC(0x01F60DD0, ControllerMap_Editor *, UserData_GetKeyboardMapById, (UserData * __this, int32_t id, int32_t * keyboardMapIndex, MethodInfo * method)); DO_APP_FUNC(0x01F60EB0, KeyboardMap *, UserData_FindKeyboardMap_Game, (UserData * __this, Keyboard * keyboard, int32_t categoryId, int32_t layoutId, MethodInfo * method)); DO_APP_FUNC(0x01F60FC0, bool, UserData_HasKeyboardMapInCategory, (UserData * __this, int32_t categoryId, MethodInfo * method)); DO_APP_FUNC(0x01F61080, bool, UserData_HasKeyboardMapInLayout, (UserData * __this, int32_t categoryId, int32_t layoutId, MethodInfo * method)); @@ -46073,12 +54213,13 @@ DO_APP_FUNC(0x01F61380, bool, UserData_HasMouseMap, (UserData * __this, int32_t DO_APP_FUNC(0x01F61560, bool, UserData_CreateMouseMap, (UserData * __this, int32_t categoryId, int32_t layoutId, MethodInfo * method)); DO_APP_FUNC(0x01F616C0, void, UserData_DeleteMouseMap, (UserData * __this, int32_t id, MethodInfo * method)); DO_APP_FUNC(0x01F617A0, int32_t, UserData_DuplicateMouseMap, (UserData * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01F618F0, ControllerMap_Editor *, UserData_GetMouseMapById, (UserData * __this, int32_t id, int32_t mouseMapIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4020, UserData_DuplicateMouseMap__MethodInfo); +DO_APP_FUNC(0x01F618F0, ControllerMap_Editor *, UserData_GetMouseMapById, (UserData * __this, int32_t id, int32_t * mouseMapIndex, MethodInfo * method)); DO_APP_FUNC(0x01F619D0, MouseMap *, UserData_FindMouseMap_Game, (UserData * __this, Mouse * mouse, int32_t categoryId, int32_t layoutId, MethodInfo * method)); DO_APP_FUNC(0x01F61AE0, bool, UserData_HasMouseMapInCategory, (UserData * __this, int32_t categoryId, MethodInfo * method)); DO_APP_FUNC(0x01F61BA0, bool, UserData_HasMouseMapInLayout, (UserData * __this, int32_t categoryId, int32_t layoutId, MethodInfo * method)); DO_APP_FUNC(0x01F61C90, ControllerMap_Editor *, UserData_GetCustomControllerMap, (UserData * __this, int32_t categoryId, int32_t controllerUid, int32_t layoutId, MethodInfo * method)); -DO_APP_FUNC(0x01F61DE0, ControllerMap_Editor *, UserData_GetCustomControllerMapById, (UserData * __this, int32_t mapId, int32_t customControllerMapIndex, MethodInfo * method)); +DO_APP_FUNC(0x01F61DE0, ControllerMap_Editor *, UserData_GetCustomControllerMapById, (UserData * __this, int32_t mapId, int32_t * customControllerMapIndex, MethodInfo * method)); DO_APP_FUNC(0x01F61ED0, List_1_Rewired_Data_Mapping_ControllerMap_Editor_ *, UserData_GetCustomControllerMaps, (UserData * __this, int32_t controllerUid, MethodInfo * method)); DO_APP_FUNC(0x01F62040, int32_t, UserData_GetCustomControllerMapId, (UserData * __this, int32_t categoryId, int32_t controllerUid, int32_t layoutId, MethodInfo * method)); DO_APP_FUNC(0x01F621A0, bool, UserData_HasCustomControllerMap, (UserData * __this, int32_t mapId, int32_t categoryId, int32_t layoutId, MethodInfo * method)); @@ -46087,21 +54228,29 @@ DO_APP_FUNC(0x01F623A0, bool, UserData_HasCustomControllerMapInCategory, (UserDa DO_APP_FUNC(0x01F624A0, bool, UserData_CreateCustomControllerMap, (UserData * __this, int32_t categoryId, int32_t controllerUid, int32_t layoutId, MethodInfo * method)); DO_APP_FUNC(0x01F626A0, void, UserData_DeleteCustomControllerMap, (UserData * __this, int32_t mapId, MethodInfo * method)); DO_APP_FUNC(0x01F62780, int32_t, UserData_DuplicateCustomControllerMap, (UserData * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3FE0, UserData_DuplicateCustomControllerMap__MethodInfo); DO_APP_FUNC(0x01F628E0, CustomControllerMap *, UserData_XzwkJrcWiEKIyAZHQBJjNBOqtwZ, (UserData * __this, Guid param_0000b721, int32_t param_0000b722, int32_t param_0000b723, MethodInfo * method)); DO_APP_FUNC(0x01F62940, CustomControllerMap *, UserData_XzwkJrcWiEKIyAZHQBJjNBOqtwZ_1, (UserData * __this, int32_t param_0000b724, int32_t param_0000b725, int32_t param_0000b726, MethodInfo * method)); DO_APP_FUNC(0x01F62990, CustomControllerMap *, UserData_XzwkJrcWiEKIyAZHQBJjNBOqtwZ_2, (UserData * __this, CustomController_Editor * param_0000b727, int32_t param_0000b728, int32_t param_0000b729, MethodInfo * method)); DO_APP_FUNC(0x01F62D30, ControllerMap_Editor *, UserData_pEehgOIGfenIBPZyaMNejekeFHfHA, (UserData * __this, int32_t param_0000b72a, int32_t param_0000b72b, int32_t param_0000b72c, bool param_0000b72d, MethodInfo * method)); DO_APP_FUNC(0x01F62EB0, ControllerMap_Editor *, UserData_NTPMPAtIsVOUzXxMcqDgdphVQwas, (UserData * __this, int32_t param_0000b72e, int32_t param_0000b72f, int32_t param_0000b730, MethodInfo * method)); DO_APP_FUNC(0x01F63100, void, UserData_DeleteControllerMap, (UserData * __this, ControllerType__Enum controllerType, int32_t id, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4018, UserData_DeleteControllerMap__MethodInfo); DO_APP_FUNC(0x01F634C0, ControllerMap_Editor *, UserData_GetControllerMapByIndex, (UserData * __this, ControllerType__Enum controllerType, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01F63620, ControllerMap_Editor *, UserData_GetControllerMapById, (UserData * __this, ControllerType__Enum controllerType, int32_t id, int32_t controllerMapIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4010, UserData_GetControllerMapByIndex__MethodInfo); +DO_APP_FUNC(0x01F63620, ControllerMap_Editor *, UserData_GetControllerMapById, (UserData * __this, ControllerType__Enum controllerType, int32_t id, int32_t * controllerMapIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4000, UserData_GetControllerMapById__MethodInfo); DO_APP_FUNC(0x01F63980, int32_t, UserData_DuplicateControllerMap, (UserData * __this, ControllerType__Enum controllerType, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4008, UserData_DuplicateControllerMap__MethodInfo); DO_APP_FUNC(0x01F63A30, ControllerTemplateMap *, UserData_jQPTKsOiLPDEcHFnhNjRaKIgEPPEA, (UserData * __this, Guid param_0000b73a, int32_t param_0000b73b, int32_t param_0000b73c, MethodInfo * method)); DO_APP_FUNC(0x01F63A70, void, UserData_AddCustomController, (UserData * __this, MethodInfo * method)); DO_APP_FUNC(0x01F63B80, void, UserData_InsertCustomController, (UserData * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3FC8, UserData_InsertCustomController__MethodInfo); DO_APP_FUNC(0x01F63D20, void, UserData_DeleteCustomController, (UserData * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3FB8, UserData_DeleteCustomController__MethodInfo); DO_APP_FUNC(0x01F63F20, bool, UserData_ReorderCustomController, (UserData * __this, int32_t index, bool offsetDown, bool offsetNow, MethodInfo * method)); DO_APP_FUNC(0x01F63FA0, void, UserData_DuplicateCustomController, (UserData * __this, int32_t index, bool duplicateMaps, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3FA0, UserData_DuplicateCustomController__MethodInfo); DO_APP_FUNC(0x01F64310, int32_t, UserData_GetCustomControllerMapCount, (UserData * __this, int32_t controllerUid, MethodInfo * method)); DO_APP_FUNC(0x01F643F0, int32_t, UserData_GetCustomControllerIndex, (UserData * __this, int32_t id, MethodInfo * method)); DO_APP_FUNC(0x01F644B0, String__Array *, UserData_GetCustomControllerNames, (UserData * __this, MethodInfo * method)); @@ -46118,9 +54267,12 @@ DO_APP_FUNC(0x01F650B0, int32_t, UserData_IndexOfCustomController_2, (UserData * DO_APP_FUNC(0x01F65240, String *, UserData_GetCustomControllerNameById, (UserData * __this, int32_t id, MethodInfo * method)); DO_APP_FUNC(0x01F65330, void, UserData_AddControllerMapLayoutManagerRuleSet, (UserData * __this, MethodInfo * method)); DO_APP_FUNC(0x01F65390, void, UserData_InsertControllerMapLayoutManagerRuleSet, (UserData * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3F98, UserData_InsertControllerMapLayoutManagerRuleSet__MethodInfo); DO_APP_FUNC(0x01F65480, void, UserData_DeleteControllerMapLayoutManagerRuleSet, (UserData * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3F78, UserData_DeleteControllerMapLayoutManagerRuleSet__MethodInfo); DO_APP_FUNC(0x01F65700, bool, UserData_ReorderControllerMapLayoutManagerRuleSet, (UserData * __this, int32_t index, bool offsetDown, bool offsetNow, MethodInfo * method)); DO_APP_FUNC(0x01F65780, void, UserData_DuplicateControllerMapLayoutManagerRuleSet, (UserData * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3F68, UserData_DuplicateControllerMapLayoutManagerRuleSet__MethodInfo); DO_APP_FUNC(0x01F659B0, int32_t, UserData_GetControllerMapLayoutManagerRuleSetUsedCount, (UserData * __this, int32_t id, MethodInfo * method)); DO_APP_FUNC(0x01F65B30, int32_t, UserData_GetControllerMapLayoutManagerRuleSetIndex, (UserData * __this, int32_t id, MethodInfo * method)); DO_APP_FUNC(0x01F65BF0, String__Array *, UserData_GetControllerMapLayoutManagerRuleSetNames, (UserData * __this, MethodInfo * method)); @@ -46135,9 +54287,12 @@ DO_APP_FUNC(0x01F66480, String *, UserData_GetControllerMapLayoutManagerRuleSetN DO_APP_FUNC(0x01F66570, int32_t, UserData_GetControllerMapLayoutManagerRuleSetCount, (UserData * __this, MethodInfo * method)); DO_APP_FUNC(0x01F665C0, void, UserData_AddControllerMapEnablerRuleSet, (UserData * __this, MethodInfo * method)); DO_APP_FUNC(0x01F66620, void, UserData_InsertControllerMapEnablerRuleSet, (UserData * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3F38, UserData_InsertControllerMapEnablerRuleSet__MethodInfo); DO_APP_FUNC(0x01F66710, void, UserData_DeleteControllerMapEnablerRuleSet, (UserData * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3F18, UserData_DeleteControllerMapEnablerRuleSet__MethodInfo); DO_APP_FUNC(0x01F66990, bool, UserData_ReorderControllerMapEnablerRuleSet, (UserData * __this, int32_t index, bool offsetDown, bool offsetNow, MethodInfo * method)); DO_APP_FUNC(0x01F66A10, void, UserData_DuplicateControllerMapEnablerRuleSet, (UserData * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3F08, UserData_DuplicateControllerMapEnablerRuleSet__MethodInfo); DO_APP_FUNC(0x01F66C40, int32_t, UserData_GetControllerMapEnablerRuleSetUsedCount, (UserData * __this, int32_t id, MethodInfo * method)); DO_APP_FUNC(0x01F66DC0, int32_t, UserData_GetControllerMapEnablerRuleSetIndex, (UserData * __this, int32_t id, MethodInfo * method)); DO_APP_FUNC(0x01F66E80, String__Array *, UserData_GetControllerMapEnablerRuleSetNames, (UserData * __this, MethodInfo * method)); @@ -46186,171 +54341,291 @@ DO_APP_FUNC(0x01F69410, void, UserData_LIeljCbdoWdgBAecluMnblrpCnHu, (UserData * DO_APP_FUNC(0x01F6A410, UserData *, UserData_Merge, (UserData * orig, UserData * other, bool preserveOrigIds, MethodInfo * method)); DO_APP_FUNC(0x01F6A420, UserData *, UserData_Compact, (UserData * orig, MethodInfo * method)); DO_APP_FUNC(0x01F6A430, UserData *, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_CfpLhHEcXLKTyGKvJEzgpeSAamQf, (UserData * param_0000b77f, UserData * param_0000b780, bool param_0000b781, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6EA0, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_CfpLhHEcXLKTyGKvJEzgpeSAamQf__MethodInfo); DO_APP_FUNC(0x01F6E420, void, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_ZVXJehqMSkAUgZHPJhKYKYPlVAMA, (Object * param_0000b782, MethodInfo * method)); DO_APP_FUNC(0x01F6E4A0, int32_t, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wzRiUTIKuqxDCQYCeJSGjaGZezQK_RqlQXVCuqdhJnxcXhpOqbWpqutCF, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wzRiUTIKuqxDCQYCeJSGjaGZezQK * __this, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wzRiUTIKuqxDCQYCeJSGjaGZezQK_WRvhXuEtMWKjDEQrQRSMzfAFPLvF__Enum param_0000b791, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6E90, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wzRiUTIKuqxDCQYCeJSGjaGZezQK_RqlQXVCuqdhJnxcXhpOqbWpqutCF__MethodInfo); DO_APP_FUNC(0x01F6E520, void, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wzRiUTIKuqxDCQYCeJSGjaGZezQK_vzddzdfIMCcNmCiSRNbXbSuDKdOGB, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wzRiUTIKuqxDCQYCeJSGjaGZezQK * __this, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wzRiUTIKuqxDCQYCeJSGjaGZezQK_WRvhXuEtMWKjDEQrQRSMzfAFPLvF__Enum param_0000b792, int32_t param_0000b793, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6E80, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wzRiUTIKuqxDCQYCeJSGjaGZezQK_vzddzdfIMCcNmCiSRNbXbSuDKdOGB__MethodInfo); DO_APP_FUNC(0x01991250, void, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wzRiUTIKuqxDCQYCeJSGjaGZezQK__ctor, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wzRiUTIKuqxDCQYCeJSGjaGZezQK * __this, int32_t param_0000b794, int32_t param_0000b795, int32_t param_0000b796, MethodInfo * method)); DO_APP_FUNC(0x01F6E5A0, String *, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wzRiUTIKuqxDCQYCeJSGjaGZezQK_puyyohkruQkIUNABhtMvSnGscDCS, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wzRiUTIKuqxDCQYCeJSGjaGZezQK * __this, MethodInfo * method)); DO_APP_FUNC(0x01F6E7C0, void, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA__ctor, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA * __this, MethodInfo * method)); DO_APP_FUNC(0x01F6E870, int32_t, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_QBCtivUJhiGtFvEkwuhlzRnPJrHC, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA * __this, InputCategory * param_0000b79c, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6F88, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_QBCtivUJhiGtFvEkwuhlzRnPJrHC__MethodInfo); DO_APP_FUNC(0x00A9D490, String *, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_FMlNgvyYqxrlOmOQwCXsULAVFjzz, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA * __this, InputCategory * param_0000b79d, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6EE8, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_FMlNgvyYqxrlOmOQwCXsULAVFjzz__MethodInfo); DO_APP_FUNC(0x01F6E890, int32_t, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_aLGpdyqEpmPzVrmLvbuZFjsqFHNJA, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA * __this, InputCategory * param_0000b79e, IList_1_Rewired_InputCategory_ * param_0000b79f, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6F70, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_aLGpdyqEpmPzVrmLvbuZFjsqFHNJA__MethodInfo); DO_APP_FUNC(0x01F6EA10, int32_t, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_EfeildPsxvEALHVYqITMysgJrQrFA, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA * __this, InputBehavior * param_0000b7a0, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6F00, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_EfeildPsxvEALHVYqITMysgJrQrFA__MethodInfo); DO_APP_FUNC(0x0042DCE0, String *, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_gkQkbaxKdOSnnvxLyTjQBbnZawjQ, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA * __this, InputBehavior * param_0000b7a1, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6E60, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_gkQkbaxKdOSnnvxLyTjQBbnZawjQ__MethodInfo); DO_APP_FUNC(0x01F6EA30, int32_t, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_aGIKjSdyjEOYFdIdZRznvRsPLdLT, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA * __this, InputBehavior * param_0000b7a2, IList_1_Rewired_InputBehavior_ * param_0000b7a3, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6F68, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_aGIKjSdyjEOYFdIdZRznvRsPLdLT__MethodInfo); DO_APP_FUNC(0x01F6EA10, int32_t, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_ojKHLhicRxyFGEWgJPWHOyzDmEkD, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA * __this, InputAction * param_0000b7a4, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6E28, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_ojKHLhicRxyFGEWgJPWHOyzDmEkD__MethodInfo); DO_APP_FUNC(0x0042DCE0, String *, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_PNWwaERMsYGjzIzEZuKOazdhPtEiA, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA * __this, InputAction * param_0000b7a5, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6F98, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_PNWwaERMsYGjzIzEZuKOazdhPtEiA__MethodInfo); DO_APP_FUNC(0x01F6EBB0, int32_t, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_cBTQSuptkwPcqBrSUfdolrabCTjF, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA * __this, InputAction * param_0000b7a6, IList_1_Rewired_InputAction_ * param_0000b7a7, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6F60, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_cBTQSuptkwPcqBrSUfdolrabCTjF__MethodInfo); DO_APP_FUNC(0x01F6E870, int32_t, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_vPVRcYOUZoDBKFKoxmkweMDANZoe, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA * __this, InputMapCategory * param_0000b7a8, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6DF8, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_vPVRcYOUZoDBKFKoxmkweMDANZoe__MethodInfo); DO_APP_FUNC(0x00A9D490, String *, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_VfJEumjZACFDmnqJCmdwcCFszFqD, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA * __this, InputMapCategory * param_0000b7a9, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6F78, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_VfJEumjZACFDmnqJCmdwcCFszFqD__MethodInfo); DO_APP_FUNC(0x01F6ED30, int32_t, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_hBOpowfxqgdKlYPfilCwBnjtXTV, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA * __this, InputMapCategory * param_0000b7aa, IList_1_Rewired_InputMapCategory_ * param_0000b7ab, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6E48, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_hBOpowfxqgdKlYPfilCwBnjtXTV__MethodInfo); DO_APP_FUNC(0x01F6EEB0, int32_t, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_LVdUrboflcIPhrbmfNwkGqQbRRHG, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA * __this, InputLayout * param_0000b7ac, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6FC0, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_LVdUrboflcIPhrbmfNwkGqQbRRHG__MethodInfo); DO_APP_FUNC(0x00A9D490, String *, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_zeqJkcTGwOrOYGksznfrSlqVOfio, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA * __this, InputLayout * param_0000b7ad, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6EB8, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_zeqJkcTGwOrOYGksznfrSlqVOfio__MethodInfo); DO_APP_FUNC(0x01F6EED0, int32_t, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_BdYlutZXKKSaxijIkRTxvYAHJIBl, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA * __this, InputLayout * param_0000b7ae, IList_1_Rewired_InputLayout_ * param_0000b7af, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6F08, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_BdYlutZXKKSaxijIkRTxvYAHJIBl__MethodInfo); DO_APP_FUNC(0x01F6EEB0, int32_t, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_wdRNbMkJmCiGFMMGgUOuikcmIOnc, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA * __this, InputLayout * param_0000b7b0, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6E00, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_wdRNbMkJmCiGFMMGgUOuikcmIOnc__MethodInfo); DO_APP_FUNC(0x00A9D490, String *, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_hKnpXKsShSlexINZobtnuSiSoRPw, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA * __this, InputLayout * param_0000b7b1, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6E50, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_hKnpXKsShSlexINZobtnuSiSoRPw__MethodInfo); DO_APP_FUNC(0x01F6F050, int32_t, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_VTRvGwYrMuODlCGBAXRukTEFUocg, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA * __this, InputLayout * param_0000b7b2, IList_1_Rewired_InputLayout_ * param_0000b7b3, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6F90, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_VTRvGwYrMuODlCGBAXRukTEFUocg__MethodInfo); DO_APP_FUNC(0x01F6EEB0, int32_t, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_tsPqtmUAluUnPndGtvNCybmfAByC, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA * __this, InputLayout * param_0000b7b4, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6E08, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_tsPqtmUAluUnPndGtvNCybmfAByC__MethodInfo); DO_APP_FUNC(0x00A9D490, String *, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_XzcdFrzMhUdmJaumilVeHcBJewwT, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA * __this, InputLayout * param_0000b7b5, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6F80, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_XzcdFrzMhUdmJaumilVeHcBJewwT__MethodInfo); DO_APP_FUNC(0x01F6F1D0, int32_t, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_NZdHhswuYJnsgCRCPwyCceWFhdAA, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA * __this, InputLayout * param_0000b7b6, IList_1_Rewired_InputLayout_ * param_0000b7b7, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6FB0, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_NZdHhswuYJnsgCRCPwyCceWFhdAA__MethodInfo); DO_APP_FUNC(0x01F6EEB0, int32_t, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_GprDlzNfzUPZufIrEtewQdYIbIoC, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA * __this, InputLayout * param_0000b7b8, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6EE0, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_GprDlzNfzUPZufIrEtewQdYIbIoC__MethodInfo); DO_APP_FUNC(0x00A9D490, String *, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_rxBEISElCMhsJDtpIxNEKrVdWBNLb, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA * __this, InputLayout * param_0000b7b9, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6E18, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_rxBEISElCMhsJDtpIxNEKrVdWBNLb__MethodInfo); DO_APP_FUNC(0x01F6F350, int32_t, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_qCqnrwAEzKTSGYPmkgiNGNIdbCcDA, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA * __this, InputLayout * param_0000b7ba, IList_1_Rewired_InputLayout_ * param_0000b7bb, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6E30, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_qCqnrwAEzKTSGYPmkgiNGNIdbCcDA__MethodInfo); DO_APP_FUNC(0x01F6EEB0, int32_t, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_cKWFwcFmvSjgAssdNEzqKVLzwugI, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA * __this, CustomController_Editor * param_0000b7bc, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6F50, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_cKWFwcFmvSjgAssdNEzqKVLzwugI__MethodInfo); DO_APP_FUNC(0x00A9D490, String *, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_zJVDxwdtoyUozJXgnxctvZbLwqyG, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA * __this, CustomController_Editor * param_0000b7bd, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6DF0, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_zJVDxwdtoyUozJXgnxctvZbLwqyG__MethodInfo); DO_APP_FUNC(0x01F6F4D0, int32_t, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_GDhoXPgwBjIEmKKeAFNGsGwXtREH, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA * __this, CustomController_Editor * param_0000b7be, IList_1_Rewired_Data_CustomController_Editor_ * param_0000b7bf, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6EF0, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_GDhoXPgwBjIEmKKeAFNGsGwXtREH__MethodInfo); DO_APP_FUNC(0x01F6EA10, int32_t, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_NPyqBxjdrNPlUWkrvzuyLpKZckIj, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA * __this, ControllerMapLayoutManager_RuleSet_Editor * param_0000b7c0, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6FA8, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_NPyqBxjdrNPlUWkrvzuyLpKZckIj__MethodInfo); DO_APP_FUNC(0x0042DCE0, String *, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_BAmLSCJUVehwXXboaEKiKMLwfghw, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA * __this, ControllerMapLayoutManager_RuleSet_Editor * param_0000b7c1, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6F20, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_BAmLSCJUVehwXXboaEKiKMLwfghw__MethodInfo); DO_APP_FUNC(0x01F6F650, int32_t, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_CzEaNGSNamWWNxvcrzxdSfjISSOE, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA * __this, ControllerMapLayoutManager_RuleSet_Editor * param_0000b7c2, IList_1_Rewired_Data_ControllerMapLayoutManager_RuleSet_Editor_ * param_0000b7c3, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6EF8, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_CzEaNGSNamWWNxvcrzxdSfjISSOE__MethodInfo); DO_APP_FUNC(0x01F6EA10, int32_t, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_uSiLrObBRXdMOxBNPAzgyjSXlnIW, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA * __this, ControllerMapEnabler_RuleSet_Editor * param_0000b7c4, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6E10, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_uSiLrObBRXdMOxBNPAzgyjSXlnIW__MethodInfo); DO_APP_FUNC(0x0042DCE0, String *, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_HOTcQGmNijdttRhfuhkVFLOnLuFs, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA * __this, ControllerMapEnabler_RuleSet_Editor * param_0000b7c5, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6EC8, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_HOTcQGmNijdttRhfuhkVFLOnLuFs__MethodInfo); DO_APP_FUNC(0x01F6F7D0, int32_t, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_oiNkdWNQPxknksIKBBEtacVSqvkt, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA * __this, ControllerMapEnabler_RuleSet_Editor * param_0000b7c6, IList_1_Rewired_Data_ControllerMapEnabler_RuleSet_Editor_ * param_0000b7c7, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6E40, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_oiNkdWNQPxknksIKBBEtacVSqvkt__MethodInfo); DO_APP_FUNC(0x01F6EA10, int32_t, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_fEmFEGoGwdSNfiYCpodUsiyoAnvW, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA * __this, Player_Editor * param_0000b7c8, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6E58, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_fEmFEGoGwdSNfiYCpodUsiyoAnvW__MethodInfo); DO_APP_FUNC(0x0042DCE0, String *, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_iqotQjlfHANgAGLFFDlWjiMFlzvG, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA * __this, Player_Editor * param_0000b7c9, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6E38, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_iqotQjlfHANgAGLFFDlWjiMFlzvG__MethodInfo); DO_APP_FUNC(0x01F6F950, int32_t, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_yECDMbKgHYIkQgJLqPicueopokcgb, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA * __this, Player_Editor * param_0000b7ca, IList_1_Rewired_Data_Player_Editor_ * param_0000b7cb, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6DE8, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_yECDMbKgHYIkQgJLqPicueopokcgb__MethodInfo); DO_APP_FUNC(0x01F6FAD0, int32_t, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_qcShbuCCnDhCCPdaUMRwANKzwqCAb, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA * __this, Player_Editor_Mapping * param_0000b7cc, IList_1_Rewired_Data_Player_Editor_Mapping_ * param_0000b7cd, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6C58, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_qcShbuCCnDhCCPdaUMRwANKzwqCAb__MethodInfo); DO_APP_FUNC(0x01F6FBB0, int32_t, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_IaGaWlcsCwkzkomEFGyyOVgrjvNsA, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA * __this, Player_Editor_CreateControllerInfo * param_0000b7ce, IList_1_Rewired_Data_Player_Editor_CreateControllerInfo_ * param_0000b7cf, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6C50, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_IaGaWlcsCwkzkomEFGyyOVgrjvNsA__MethodInfo); DO_APP_FUNC(0x01F6EA10, int32_t, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_JLTPlAlKwUCBrxUevLXMnuYZCsur, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA * __this, ControllerMap_Editor * param_0000b7d0, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6ED0, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_JLTPlAlKwUCBrxUevLXMnuYZCsur__MethodInfo); DO_APP_FUNC(0x01F6FCE0, String *, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_apQWAeRpSsxQzadiPvmKZirYEteF, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA * __this, ControllerMap_Editor * param_0000b7d1, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6F58, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_apQWAeRpSsxQzadiPvmKZirYEteF__MethodInfo); DO_APP_FUNC(0x01F6FD00, int32_t, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_mObevXVfewTpOMdfoDHmhQSbMWwsA, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA * __this, ActionElementMap * param_0000b7d2, IList_1_Rewired_ActionElementMap_ * param_0000b7d3, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6B98, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_mObevXVfewTpOMdfoDHmhQSbMWwsA__MethodInfo); DO_APP_FUNC(0x01F6EA10, int32_t, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_GbAHhRjJmbpNIPJcCcnmITaaFvwRB, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA * __this, ControllerMap_Editor * param_0000b7d4, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6ED8, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_GbAHhRjJmbpNIPJcCcnmITaaFvwRB__MethodInfo); DO_APP_FUNC(0x01F6FCE0, String *, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_LLBsVmdqhYhrhDCrUdUQwyviORtb, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA * __this, ControllerMap_Editor * param_0000b7d5, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6FB8, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_LLBsVmdqhYhrhDCrUdUQwyviORtb__MethodInfo); DO_APP_FUNC(0x01F6FE50, int32_t, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_PNbpGffTDySQmYwjxSUGhfUroLAB, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA * __this, ActionElementMap * param_0000b7d6, IList_1_Rewired_ActionElementMap_ * param_0000b7d7, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6A98, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_PNbpGffTDySQmYwjxSUGhfUroLAB__MethodInfo); DO_APP_FUNC(0x01F6EA10, int32_t, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_CSTabLgwmNblcjOdqlYYVslQYMFc, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA * __this, ControllerMap_Editor * param_0000b7d8, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6F10, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_CSTabLgwmNblcjOdqlYYVslQYMFc__MethodInfo); DO_APP_FUNC(0x01F6FCE0, String *, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_AsgnLRWOlrxEOmnEMuVtyCXlJPWi, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA * __this, ControllerMap_Editor * param_0000b7d9, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6F18, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_AsgnLRWOlrxEOmnEMuVtyCXlJPWi__MethodInfo); DO_APP_FUNC(0x01F6FF60, int32_t, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_ainozYbMZlPkJumkzjpvWKqAQsLS, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA * __this, ActionElementMap * param_0000b7da, IList_1_Rewired_ActionElementMap_ * param_0000b7db, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6AF8, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_ainozYbMZlPkJumkzjpvWKqAQsLS__MethodInfo); DO_APP_FUNC(0x01F6EA10, int32_t, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_PYhlqFHfFTIWbvtFQMIvpPNwHYfcA, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA * __this, ControllerMap_Editor * param_0000b7dc, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6FA0, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_PYhlqFHfFTIWbvtFQMIvpPNwHYfcA__MethodInfo); DO_APP_FUNC(0x01F6FCE0, String *, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_cDYfeKLyXNIbKhWXCsemambYayPK, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA * __this, ControllerMap_Editor * param_0000b7dd, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6F48, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_cDYfeKLyXNIbKhWXCsemambYayPK__MethodInfo); DO_APP_FUNC(0x01F70070, int32_t, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_VpUmGWYLijbULGXvdNOFiBtznFtSA, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA * __this, ActionElementMap * param_0000b7de, IList_1_Rewired_ActionElementMap_ * param_0000b7df, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6A20, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA_VpUmGWYLijbULGXvdNOFiBtznFtSA__MethodInfo); DO_APP_FUNC(0x003AE050, void, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_UedsipTjNzWjZmAnxDFyOAhhhAmjA__ctor, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_UedsipTjNzWjZmAnxDFyOAhhhAmjA * __this, MethodInfo * method)); DO_APP_FUNC(0x01F70180, InputCategory *, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_UedsipTjNzWjZmAnxDFyOAhhhAmjA_pwENMSYfCWhXpwGwbsRTykeeFfncA, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_UedsipTjNzWjZmAnxDFyOAhhhAmjA * __this, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_InputCategory_ * param_0000b7e0, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6FC8, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_UedsipTjNzWjZmAnxDFyOAhhhAmjA_pwENMSYfCWhXpwGwbsRTykeeFfncA__MethodInfo); DO_APP_FUNC(0x01F70470, InputBehavior *, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_UedsipTjNzWjZmAnxDFyOAhhhAmjA_gjcckJPhHcjuyBeFimcCerGIOTuVb, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_UedsipTjNzWjZmAnxDFyOAhhhAmjA * __this, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_InputBehavior_ * param_0000b7e1, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6FE8, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_UedsipTjNzWjZmAnxDFyOAhhhAmjA_gjcckJPhHcjuyBeFimcCerGIOTuVb__MethodInfo); DO_APP_FUNC(0x01F70740, InputAction *, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_UedsipTjNzWjZmAnxDFyOAhhhAmjA_dvqgZIjisYwcgSQhKOWqKELZmULO, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_UedsipTjNzWjZmAnxDFyOAhhhAmjA * __this, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_InputAction_ * param_0000b7e2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7000, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_UedsipTjNzWjZmAnxDFyOAhhhAmjA_dvqgZIjisYwcgSQhKOWqKELZmULO__MethodInfo); DO_APP_FUNC(0x01F70CF0, InputLayout *, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_UedsipTjNzWjZmAnxDFyOAhhhAmjA_zMaQbijupxKRVwKhwQshIHrTowcV, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_UedsipTjNzWjZmAnxDFyOAhhhAmjA * __this, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_InputLayout_ * param_0000b7e3, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF70B8, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_UedsipTjNzWjZmAnxDFyOAhhhAmjA_zMaQbijupxKRVwKhwQshIHrTowcV__MethodInfo); DO_APP_FUNC(0x01F70EB0, InputLayout *, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_UedsipTjNzWjZmAnxDFyOAhhhAmjA_GFctBbWCDiiZbOXBDCWFAIiesMGFA, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_UedsipTjNzWjZmAnxDFyOAhhhAmjA * __this, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_InputLayout_ * param_0000b7e4, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7020, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_UedsipTjNzWjZmAnxDFyOAhhhAmjA_GFctBbWCDiiZbOXBDCWFAIiesMGFA__MethodInfo); DO_APP_FUNC(0x01F71070, InputLayout *, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_UedsipTjNzWjZmAnxDFyOAhhhAmjA_mauNOIWjbFfbvMvyfPTPvETyhxQg, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_UedsipTjNzWjZmAnxDFyOAhhhAmjA * __this, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_InputLayout_ * param_0000b7e5, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6FD8, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_UedsipTjNzWjZmAnxDFyOAhhhAmjA_mauNOIWjbFfbvMvyfPTPvETyhxQg__MethodInfo); DO_APP_FUNC(0x01F71230, InputLayout *, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_UedsipTjNzWjZmAnxDFyOAhhhAmjA_daOUjzGEhwEDNWFvRYrtrcykkPBp, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_UedsipTjNzWjZmAnxDFyOAhhhAmjA * __this, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_InputLayout_ * param_0000b7e6, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6FF8, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_UedsipTjNzWjZmAnxDFyOAhhhAmjA_daOUjzGEhwEDNWFvRYrtrcykkPBp__MethodInfo); DO_APP_FUNC(0x01F713F0, List_1_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wzRiUTIKuqxDCQYCeJSGjaGZezQK_ *, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_UedsipTjNzWjZmAnxDFyOAhhhAmjA_RvWxYuYZjTgmackjNQOVanxReAuFA, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_UedsipTjNzWjZmAnxDFyOAhhhAmjA * __this, ControllerType__Enum param_0000b7e7, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7008, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_UedsipTjNzWjZmAnxDFyOAhhhAmjA_RvWxYuYZjTgmackjNQOVanxReAuFA__MethodInfo); DO_APP_FUNC(0x01F71480, CustomController_Editor *, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_UedsipTjNzWjZmAnxDFyOAhhhAmjA_pjjfXcTXDkSAGZQIBESIFwghQRpM, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_UedsipTjNzWjZmAnxDFyOAhhhAmjA * __this, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_CustomController_Editor_ * param_0000b7e8, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6FE0, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_UedsipTjNzWjZmAnxDFyOAhhhAmjA_pjjfXcTXDkSAGZQIBESIFwghQRpM__MethodInfo); DO_APP_FUNC(0x01F717F0, ControllerMapLayoutManager_RuleSet_Editor *, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_UedsipTjNzWjZmAnxDFyOAhhhAmjA_XbRpkIZGoDbDLfqoSKGbKWlUVYJnA, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_UedsipTjNzWjZmAnxDFyOAhhhAmjA * __this, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_ControllerMapLayoutManager_RuleSet_Editor_ * param_0000b7e9, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7010, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_UedsipTjNzWjZmAnxDFyOAhhhAmjA_XbRpkIZGoDbDLfqoSKGbKWlUVYJnA__MethodInfo); DO_APP_FUNC(0x01F72260, ControllerMapEnabler_RuleSet_Editor *, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_UedsipTjNzWjZmAnxDFyOAhhhAmjA_leGpPztSCwvceJOxoipBePArbcGz, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_UedsipTjNzWjZmAnxDFyOAhhhAmjA * __this, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_ControllerMapEnabler_RuleSet_Editor_ * param_0000b7ea, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6FF0, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_UedsipTjNzWjZmAnxDFyOAhhhAmjA_leGpPztSCwvceJOxoipBePArbcGz__MethodInfo); DO_APP_FUNC(0x01F72CF0, Player_Editor *, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_UedsipTjNzWjZmAnxDFyOAhhhAmjA_BVcfhrIxffUjErZCbrpUOOmwqStd, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_UedsipTjNzWjZmAnxDFyOAhhhAmjA * __this, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Player_Editor_ * param_0000b7eb, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7018, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_UedsipTjNzWjZmAnxDFyOAhhhAmjA_BVcfhrIxffUjErZCbrpUOOmwqStd__MethodInfo); DO_APP_FUNC(0x003AE050, void, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_BMJcCOkRiBYHFEqcmQkgjDCJMsLBA__ctor, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_BMJcCOkRiBYHFEqcmQkgjDCJMsLBA * __this, MethodInfo * method)); DO_APP_FUNC(0x01F73D90, bool, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_BMJcCOkRiBYHFEqcmQkgjDCJMsLBA_gyITeXAqOLDIISmngNYtCPynmiaj, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_BMJcCOkRiBYHFEqcmQkgjDCJMsLBA * __this, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wzRiUTIKuqxDCQYCeJSGjaGZezQK * param_0000b7ec, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6D98, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_BMJcCOkRiBYHFEqcmQkgjDCJMsLBA_gyITeXAqOLDIISmngNYtCPynmiaj__MethodInfo); DO_APP_FUNC(0x01F73DE0, bool, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_BMJcCOkRiBYHFEqcmQkgjDCJMsLBA_jnrwMLmrtXBmdldpCOQTbvUzHoe, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_BMJcCOkRiBYHFEqcmQkgjDCJMsLBA * __this, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wzRiUTIKuqxDCQYCeJSGjaGZezQK * param_0000b7ed, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6D88, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_BMJcCOkRiBYHFEqcmQkgjDCJMsLBA_jnrwMLmrtXBmdldpCOQTbvUzHoe__MethodInfo); DO_APP_FUNC(0x003AE050, void, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_pSWcbShkqsnwkHpxQyVdyuylrNvN__ctor, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_pSWcbShkqsnwkHpxQyVdyuylrNvN * __this, MethodInfo * method)); DO_APP_FUNC(0x01F73E30, bool, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_pSWcbShkqsnwkHpxQyVdyuylrNvN_vZRgtDUmgzwZrYYmsXSUdryywyu, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_pSWcbShkqsnwkHpxQyVdyuylrNvN * __this, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wzRiUTIKuqxDCQYCeJSGjaGZezQK * param_0000b7ee, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6C00, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_pSWcbShkqsnwkHpxQyVdyuylrNvN_vZRgtDUmgzwZrYYmsXSUdryywyu__MethodInfo); DO_APP_FUNC(0x003AE050, void, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_yxSLEozLqmyHlUcKNtRBNZhwqcrr__ctor, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_yxSLEozLqmyHlUcKNtRBNZhwqcrr * __this, MethodInfo * method)); DO_APP_FUNC(0x01F73E30, bool, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_yxSLEozLqmyHlUcKNtRBNZhwqcrr_PoaiyHHqwlMDmckBxnDCMceNLysK, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_yxSLEozLqmyHlUcKNtRBNZhwqcrr * __this, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wzRiUTIKuqxDCQYCeJSGjaGZezQK * param_0000b7ef, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6C08, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_yxSLEozLqmyHlUcKNtRBNZhwqcrr_PoaiyHHqwlMDmckBxnDCMceNLysK__MethodInfo); DO_APP_FUNC(0x003AE050, void, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_ObbKSvqjGexdrlgJZvuAlynnTSnL__ctor, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_ObbKSvqjGexdrlgJZvuAlynnTSnL * __this, MethodInfo * method)); DO_APP_FUNC(0x01F73E80, void, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_ObbKSvqjGexdrlgJZvuAlynnTSnL_pOHCNFEYxbtFcjkCFfOORaUwpTTqA, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_ObbKSvqjGexdrlgJZvuAlynnTSnL * __this, List_1_Rewired_Data_Player_Editor_Mapping_ * param_0000b7f0, List_1_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wzRiUTIKuqxDCQYCeJSGjaGZezQK_ * param_0000b7f1, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6CA0, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_ObbKSvqjGexdrlgJZvuAlynnTSnL_pOHCNFEYxbtFcjkCFfOORaUwpTTqA__MethodInfo); DO_APP_FUNC(0x003AE050, void, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_UpQQaVIpVVENkrZPdtCeoouBNWvF__ctor, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_UpQQaVIpVVENkrZPdtCeoouBNWvF * __this, MethodInfo * method)); DO_APP_FUNC(0x01F74150, bool, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_UpQQaVIpVVENkrZPdtCeoouBNWvF_AoeXklEAjgoLDmnMZGBILhXCReHV, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_UpQQaVIpVVENkrZPdtCeoouBNWvF * __this, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wzRiUTIKuqxDCQYCeJSGjaGZezQK * param_0000b7f2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6B60, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_UpQQaVIpVVENkrZPdtCeoouBNWvF_AoeXklEAjgoLDmnMZGBILhXCReHV__MethodInfo); DO_APP_FUNC(0x01F741A0, bool, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_UpQQaVIpVVENkrZPdtCeoouBNWvF_vNuGztictUlYzDGAankmUdaxqvLmA, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_UpQQaVIpVVENkrZPdtCeoouBNWvF * __this, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wzRiUTIKuqxDCQYCeJSGjaGZezQK * param_0000b7f3, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6B58, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_UpQQaVIpVVENkrZPdtCeoouBNWvF_vNuGztictUlYzDGAankmUdaxqvLmA__MethodInfo); DO_APP_FUNC(0x003AE050, void, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_vlWAkIISWaSfeIXkDDiYzIfdCbQE__ctor, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_vlWAkIISWaSfeIXkDDiYzIfdCbQE * __this, MethodInfo * method)); DO_APP_FUNC(0x01F741F0, bool, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_vlWAkIISWaSfeIXkDDiYzIfdCbQE_QfFekplhLlSWyVgZNVWXHieCWOAi, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_vlWAkIISWaSfeIXkDDiYzIfdCbQE * __this, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wzRiUTIKuqxDCQYCeJSGjaGZezQK * param_0000b7f4, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6C40, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_vlWAkIISWaSfeIXkDDiYzIfdCbQE_QfFekplhLlSWyVgZNVWXHieCWOAi__MethodInfo); DO_APP_FUNC(0x003AE050, void, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_jnVErEhTYogJcrWvByIPrDGblPqF__ctor, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_jnVErEhTYogJcrWvByIPrDGblPqF * __this, MethodInfo * method)); DO_APP_FUNC(0x01F73E30, bool, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_jnVErEhTYogJcrWvByIPrDGblPqF_GmJUkeRLfpqAGcFWgZlZLSyGTSnP, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_jnVErEhTYogJcrWvByIPrDGblPqF * __this, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wzRiUTIKuqxDCQYCeJSGjaGZezQK * param_0000b7f5, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6C60, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_jnVErEhTYogJcrWvByIPrDGblPqF_GmJUkeRLfpqAGcFWgZlZLSyGTSnP__MethodInfo); DO_APP_FUNC(0x003AE050, void, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_VPTFfeIkWEqrVPusyjronFJlmdFJA__ctor, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_VPTFfeIkWEqrVPusyjronFJlmdFJA * __this, MethodInfo * method)); DO_APP_FUNC(0x01F73E30, bool, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_VPTFfeIkWEqrVPusyjronFJlmdFJA_cwZzXNfQHKEoWRKvkxrVYJrztUGE, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_VPTFfeIkWEqrVPusyjronFJlmdFJA * __this, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wzRiUTIKuqxDCQYCeJSGjaGZezQK * param_0000b7f6, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6C80, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_VPTFfeIkWEqrVPusyjronFJlmdFJA_cwZzXNfQHKEoWRKvkxrVYJrztUGE__MethodInfo); DO_APP_FUNC(0x003AE050, void, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_ExbyFqdDkaEpVAKTKkNMCYBAJprMB__ctor, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_ExbyFqdDkaEpVAKTKkNMCYBAJprMB * __this, MethodInfo * method)); DO_APP_FUNC(0x01F74240, int32_t, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_ExbyFqdDkaEpVAKTKkNMCYBAJprMB_LzKOAVWsATbxEFnNxPGuTDuhDDTX, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_ExbyFqdDkaEpVAKTKkNMCYBAJprMB * __this, ControllerMap_Editor * param_0000b7f7, IList_1_Rewired_Data_Mapping_ControllerMap_Editor_ * param_0000b7f8, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7210, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_ExbyFqdDkaEpVAKTKkNMCYBAJprMB_LzKOAVWsATbxEFnNxPGuTDuhDDTX__MethodInfo); DO_APP_FUNC(0x01F744D0, ControllerMap_Editor *, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_ExbyFqdDkaEpVAKTKkNMCYBAJprMB_PLUlKUIpyyaoUkhdJwDKErTslKEjb, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_ExbyFqdDkaEpVAKTKkNMCYBAJprMB * __this, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_Data_Mapping_ControllerMap_Editor_ * param_0000b7f9, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF71F8, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_ExbyFqdDkaEpVAKTKkNMCYBAJprMB_PLUlKUIpyyaoUkhdJwDKErTslKEjb__MethodInfo); DO_APP_FUNC(0x003AE050, void, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_aqdOQYLqXTwtmABocTdpjCmcRrOI__ctor, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_aqdOQYLqXTwtmABocTdpjCmcRrOI * __this, MethodInfo * method)); DO_APP_FUNC(0x01F74EF0, bool, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_aqdOQYLqXTwtmABocTdpjCmcRrOI_DWmlLSFTGlSHlbpNFWwcpeXtdgdP, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_aqdOQYLqXTwtmABocTdpjCmcRrOI * __this, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wzRiUTIKuqxDCQYCeJSGjaGZezQK * param_0000b7fa, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6B48, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_aqdOQYLqXTwtmABocTdpjCmcRrOI_DWmlLSFTGlSHlbpNFWwcpeXtdgdP__MethodInfo); DO_APP_FUNC(0x01F74F20, bool, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_aqdOQYLqXTwtmABocTdpjCmcRrOI_itYmQmbgrQRGBFDUKeknrbSYdbQw, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_aqdOQYLqXTwtmABocTdpjCmcRrOI * __this, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wzRiUTIKuqxDCQYCeJSGjaGZezQK * param_0000b7fb, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6B30, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_aqdOQYLqXTwtmABocTdpjCmcRrOI_itYmQmbgrQRGBFDUKeknrbSYdbQw__MethodInfo); DO_APP_FUNC(0x003AE050, void, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_PGnzxbeakSvzmeebwdzKOzULOptE__ctor, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_PGnzxbeakSvzmeebwdzKOzULOptE * __this, MethodInfo * method)); DO_APP_FUNC(0x01F74F50, bool, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_PGnzxbeakSvzmeebwdzKOzULOptE_yJQvSAixvSofRuDNyhefeTSaUoQe, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_PGnzxbeakSvzmeebwdzKOzULOptE * __this, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wzRiUTIKuqxDCQYCeJSGjaGZezQK * param_0000b7fc, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6BB8, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_PGnzxbeakSvzmeebwdzKOzULOptE_yJQvSAixvSofRuDNyhefeTSaUoQe__MethodInfo); DO_APP_FUNC(0x01F74FA0, bool, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_PGnzxbeakSvzmeebwdzKOzULOptE_AtmyysMMUfnUQJPIpbKgNaSgymMb, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_PGnzxbeakSvzmeebwdzKOzULOptE * __this, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wzRiUTIKuqxDCQYCeJSGjaGZezQK * param_0000b7fd, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6BC8, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_PGnzxbeakSvzmeebwdzKOzULOptE_AtmyysMMUfnUQJPIpbKgNaSgymMb__MethodInfo); DO_APP_FUNC(0x003AE050, void, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_UxEHhlJcMPZlBhjPcexThCIMYhjP__ctor, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_UxEHhlJcMPZlBhjPcexThCIMYhjP * __this, MethodInfo * method)); DO_APP_FUNC(0x01F74FF0, InputMapCategory *, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_UxEHhlJcMPZlBhjPcexThCIMYhjP_bSdzpisRjnaNeRfRQBHvdkFoIovEA, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_UxEHhlJcMPZlBhjPcexThCIMYhjP * __this, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_InputMapCategory_ * param_0000b7fe, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF70A8, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_UxEHhlJcMPZlBhjPcexThCIMYhjP_bSdzpisRjnaNeRfRQBHvdkFoIovEA__MethodInfo); DO_APP_FUNC(0x003AE050, void, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_cCyhzqjXKnIcxdPzuMGGpYfxTemL__ctor, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_cCyhzqjXKnIcxdPzuMGGpYfxTemL * __this, MethodInfo * method)); DO_APP_FUNC(0x01F74150, bool, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_cCyhzqjXKnIcxdPzuMGGpYfxTemL_GXjlcFWdqcfUYZbBxIjwavCSAmKEb, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_cCyhzqjXKnIcxdPzuMGGpYfxTemL * __this, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wzRiUTIKuqxDCQYCeJSGjaGZezQK * param_0000b7ff, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6BA8, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_cCyhzqjXKnIcxdPzuMGGpYfxTemL_GXjlcFWdqcfUYZbBxIjwavCSAmKEb__MethodInfo); DO_APP_FUNC(0x003AE050, void, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wAVFTYUmwOAlNDSKYWDZzOhTWjOx__ctor, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wAVFTYUmwOAlNDSKYWDZzOhTWjOx * __this, MethodInfo * method)); DO_APP_FUNC(0x01F752F0, int32_t, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wAVFTYUmwOAlNDSKYWDZzOhTWjOx_kBpAqBiHGyGxgzmiVNEQwdfFnnyVA, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wAVFTYUmwOAlNDSKYWDZzOhTWjOx * __this, ControllerMap_Editor * param_0000b800, IList_1_Rewired_Data_Mapping_ControllerMap_Editor_ * param_0000b801, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6EA8, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wAVFTYUmwOAlNDSKYWDZzOhTWjOx_kBpAqBiHGyGxgzmiVNEQwdfFnnyVA__MethodInfo); DO_APP_FUNC(0x01F75580, ControllerMap_Editor *, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wAVFTYUmwOAlNDSKYWDZzOhTWjOx_cQioBgUJnoiERfIayuyrapRuNzhAb, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wAVFTYUmwOAlNDSKYWDZzOhTWjOx * __this, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_Data_Mapping_ControllerMap_Editor_ * param_0000b802, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6EC0, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wAVFTYUmwOAlNDSKYWDZzOhTWjOx_cQioBgUJnoiERfIayuyrapRuNzhAb__MethodInfo); DO_APP_FUNC(0x003AE050, void, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_oIQxLVFMZlvRWigLbIrSPMTgguCq__ctor, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_oIQxLVFMZlvRWigLbIrSPMTgguCq * __this, MethodInfo * method)); DO_APP_FUNC(0x01F74EF0, bool, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_oIQxLVFMZlvRWigLbIrSPMTgguCq_KcwsEuiCYCeytKGUmCXgVYjyYJdA, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_oIQxLVFMZlvRWigLbIrSPMTgguCq * __this, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wzRiUTIKuqxDCQYCeJSGjaGZezQK * param_0000b803, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6B80, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_oIQxLVFMZlvRWigLbIrSPMTgguCq_KcwsEuiCYCeytKGUmCXgVYjyYJdA__MethodInfo); DO_APP_FUNC(0x01F74F20, bool, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_oIQxLVFMZlvRWigLbIrSPMTgguCq_crPwcMMbwBTIqpmCSyelstewHaMU, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_oIQxLVFMZlvRWigLbIrSPMTgguCq * __this, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wzRiUTIKuqxDCQYCeJSGjaGZezQK * param_0000b804, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6B70, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_oIQxLVFMZlvRWigLbIrSPMTgguCq_crPwcMMbwBTIqpmCSyelstewHaMU__MethodInfo); DO_APP_FUNC(0x003AE050, void, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_HlKCUAchWbLivpaENIbEDfIUhFXcA__ctor, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_HlKCUAchWbLivpaENIbEDfIUhFXcA * __this, MethodInfo * method)); DO_APP_FUNC(0x01F74F50, bool, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_HlKCUAchWbLivpaENIbEDfIUhFXcA_MrZZPhYrDYQqROeVJhzefsXhsvSG, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_HlKCUAchWbLivpaENIbEDfIUhFXcA * __this, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wzRiUTIKuqxDCQYCeJSGjaGZezQK * param_0000b805, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6AB0, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_HlKCUAchWbLivpaENIbEDfIUhFXcA_MrZZPhYrDYQqROeVJhzefsXhsvSG__MethodInfo); DO_APP_FUNC(0x01F74FA0, bool, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_HlKCUAchWbLivpaENIbEDfIUhFXcA_WnqGhgXZIjOqGIcVKGJkKCwNJvKn, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_HlKCUAchWbLivpaENIbEDfIUhFXcA * __this, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wzRiUTIKuqxDCQYCeJSGjaGZezQK * param_0000b806, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6AB8, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_HlKCUAchWbLivpaENIbEDfIUhFXcA_WnqGhgXZIjOqGIcVKGJkKCwNJvKn__MethodInfo); DO_APP_FUNC(0x003AE050, void, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_lsSrimcDOKtCBAAocJqyKoBLQBcy__ctor, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_lsSrimcDOKtCBAAocJqyKoBLQBcy * __this, MethodInfo * method)); DO_APP_FUNC(0x01F74150, bool, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_lsSrimcDOKtCBAAocJqyKoBLQBcy_DPRMCMaorkZnmssVVCodBfQslMwc, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_lsSrimcDOKtCBAAocJqyKoBLQBcy * __this, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wzRiUTIKuqxDCQYCeJSGjaGZezQK * param_0000b807, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6AA8, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_lsSrimcDOKtCBAAocJqyKoBLQBcy_DPRMCMaorkZnmssVVCodBfQslMwc__MethodInfo); DO_APP_FUNC(0x003AE050, void, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_DuqyadlYpwbiVBhpgmwKitKvjdZX__ctor, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_DuqyadlYpwbiVBhpgmwKitKvjdZX * __this, MethodInfo * method)); DO_APP_FUNC(0x01F75FA0, int32_t, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_DuqyadlYpwbiVBhpgmwKitKvjdZX_EBfqDCdpIHMaKtQciwHgrfYonyuo, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_DuqyadlYpwbiVBhpgmwKitKvjdZX * __this, ControllerMap_Editor * param_0000b808, IList_1_Rewired_Data_Mapping_ControllerMap_Editor_ * param_0000b809, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7218, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_DuqyadlYpwbiVBhpgmwKitKvjdZX_EBfqDCdpIHMaKtQciwHgrfYonyuo__MethodInfo); DO_APP_FUNC(0x01F76360, ControllerMap_Editor *, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_DuqyadlYpwbiVBhpgmwKitKvjdZX_cWlflqCBtKlxZKdpjADebpjjBNwyb, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_DuqyadlYpwbiVBhpgmwKitKvjdZX * __this, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_Data_Mapping_ControllerMap_Editor_ * param_0000b80a, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7220, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_DuqyadlYpwbiVBhpgmwKitKvjdZX_cWlflqCBtKlxZKdpjADebpjjBNwyb__MethodInfo); DO_APP_FUNC(0x003AE050, void, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_WHinqfMfoqqRXWhPfGaPgEENIUDn__ctor, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_WHinqfMfoqqRXWhPfGaPgEENIUDn * __this, MethodInfo * method)); DO_APP_FUNC(0x01F74EF0, bool, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_WHinqfMfoqqRXWhPfGaPgEENIUDn_bYUuNwoSHpDQhQohtZWnGeexdkLeA, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_WHinqfMfoqqRXWhPfGaPgEENIUDn * __this, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wzRiUTIKuqxDCQYCeJSGjaGZezQK * param_0000b80b, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6A88, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_WHinqfMfoqqRXWhPfGaPgEENIUDn_bYUuNwoSHpDQhQohtZWnGeexdkLeA__MethodInfo); DO_APP_FUNC(0x01F74F20, bool, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_WHinqfMfoqqRXWhPfGaPgEENIUDn_XoWsdUBkXTwZwCuHFqBuzLImUCzF, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_WHinqfMfoqqRXWhPfGaPgEENIUDn * __this, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wzRiUTIKuqxDCQYCeJSGjaGZezQK * param_0000b80c, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6A80, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_WHinqfMfoqqRXWhPfGaPgEENIUDn_XoWsdUBkXTwZwCuHFqBuzLImUCzF__MethodInfo); DO_APP_FUNC(0x003AE050, void, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_VEBtLWFEwzRODgWoOWGjIResVZdU__ctor, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_VEBtLWFEwzRODgWoOWGjIResVZdU * __this, MethodInfo * method)); DO_APP_FUNC(0x01F74F50, bool, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_VEBtLWFEwzRODgWoOWGjIResVZdU_FzLchOlbZvRDyXbjDphjWIcmdNh, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_VEBtLWFEwzRODgWoOWGjIResVZdU * __this, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wzRiUTIKuqxDCQYCeJSGjaGZezQK * param_0000b80d, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6B18, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_VEBtLWFEwzRODgWoOWGjIResVZdU_FzLchOlbZvRDyXbjDphjWIcmdNh__MethodInfo); DO_APP_FUNC(0x01F74FA0, bool, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_VEBtLWFEwzRODgWoOWGjIResVZdU_UZxjVDsvpMLAjHLFFOJJoCHRsMQu, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_VEBtLWFEwzRODgWoOWGjIResVZdU * __this, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wzRiUTIKuqxDCQYCeJSGjaGZezQK * param_0000b80e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6B00, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_VEBtLWFEwzRODgWoOWGjIResVZdU_UZxjVDsvpMLAjHLFFOJJoCHRsMQu__MethodInfo); DO_APP_FUNC(0x003AE050, void, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_KkTRxbdhjOOOkzlKWfauvXOwCccJA__ctor, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_KkTRxbdhjOOOkzlKWfauvXOwCccJA * __this, MethodInfo * method)); DO_APP_FUNC(0x01F74150, bool, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_KkTRxbdhjOOOkzlKWfauvXOwCccJA_yGIyZKsOqFbikjbWOMgykvXwjPCp, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_KkTRxbdhjOOOkzlKWfauvXOwCccJA * __this, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wzRiUTIKuqxDCQYCeJSGjaGZezQK * param_0000b80f, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6B10, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_KkTRxbdhjOOOkzlKWfauvXOwCccJA_yGIyZKsOqFbikjbWOMgykvXwjPCp__MethodInfo); DO_APP_FUNC(0x003AE050, void, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_RYULuTUtuoTZSQgvepEQpVeWgfJp__ctor, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_RYULuTUtuoTZSQgvepEQpVeWgfJp * __this, MethodInfo * method)); DO_APP_FUNC(0x01F76D10, int32_t, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_RYULuTUtuoTZSQgvepEQpVeWgfJp_PhCVfbtjEMPwSPIbJUKcOmbBEnYBA, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_RYULuTUtuoTZSQgvepEQpVeWgfJp * __this, ControllerMap_Editor * param_0000b810, IList_1_Rewired_Data_Mapping_ControllerMap_Editor_ * param_0000b811, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7190, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_RYULuTUtuoTZSQgvepEQpVeWgfJp_PhCVfbtjEMPwSPIbJUKcOmbBEnYBA__MethodInfo); DO_APP_FUNC(0x01F77050, ControllerMap_Editor *, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_RYULuTUtuoTZSQgvepEQpVeWgfJp_cLFDMeYLkyvfFvuaLdFOUMLVakRd, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_RYULuTUtuoTZSQgvepEQpVeWgfJp * __this, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_Data_Mapping_ControllerMap_Editor_ * param_0000b812, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7178, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_RYULuTUtuoTZSQgvepEQpVeWgfJp_cLFDMeYLkyvfFvuaLdFOUMLVakRd__MethodInfo); DO_APP_FUNC(0x003AE050, void, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_tUUOKBjBTBOcswxCuSclzqmleZgo__ctor, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_tUUOKBjBTBOcswxCuSclzqmleZgo * __this, MethodInfo * method)); DO_APP_FUNC(0x01F77A30, bool, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_tUUOKBjBTBOcswxCuSclzqmleZgo_KRTsWEuGyfyADSeouImlPpdmAWjN, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_tUUOKBjBTBOcswxCuSclzqmleZgo * __this, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wzRiUTIKuqxDCQYCeJSGjaGZezQK * param_0000b813, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6F28, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_tUUOKBjBTBOcswxCuSclzqmleZgo_KRTsWEuGyfyADSeouImlPpdmAWjN__MethodInfo); DO_APP_FUNC(0x003AE050, void, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uvGnTvryksPgPzOIfnLADkOyFBkJ__ctor, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uvGnTvryksPgPzOIfnLADkOyFBkJ * __this, MethodInfo * method)); DO_APP_FUNC(0x01F77A50, bool, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uvGnTvryksPgPzOIfnLADkOyFBkJ_SWLpTaUpXglJGnMRpsXBConrptaQ, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uvGnTvryksPgPzOIfnLADkOyFBkJ * __this, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wzRiUTIKuqxDCQYCeJSGjaGZezQK * param_0000b814, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6AE0, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uvGnTvryksPgPzOIfnLADkOyFBkJ_SWLpTaUpXglJGnMRpsXBConrptaQ__MethodInfo); DO_APP_FUNC(0x01F74EF0, bool, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uvGnTvryksPgPzOIfnLADkOyFBkJ_AOUdoKtrkuCpnBdScDTthItxYVFN, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uvGnTvryksPgPzOIfnLADkOyFBkJ * __this, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wzRiUTIKuqxDCQYCeJSGjaGZezQK * param_0000b815, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6AF0, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uvGnTvryksPgPzOIfnLADkOyFBkJ_AOUdoKtrkuCpnBdScDTthItxYVFN__MethodInfo); DO_APP_FUNC(0x01F74F20, bool, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uvGnTvryksPgPzOIfnLADkOyFBkJ_vUIbTVrERlqXEsPSMAxVuBEILrzw, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uvGnTvryksPgPzOIfnLADkOyFBkJ * __this, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wzRiUTIKuqxDCQYCeJSGjaGZezQK * param_0000b816, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6AD8, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uvGnTvryksPgPzOIfnLADkOyFBkJ_vUIbTVrERlqXEsPSMAxVuBEILrzw__MethodInfo); DO_APP_FUNC(0x003AE050, void, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_nBLCyQCROBBkxxTmLnqbgbVkZSpFb__ctor, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_nBLCyQCROBBkxxTmLnqbgbVkZSpFb * __this, MethodInfo * method)); DO_APP_FUNC(0x01F77A80, bool, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_nBLCyQCROBBkxxTmLnqbgbVkZSpFb_qodsdsWMGKiezgUNpMiXtvLVLUii, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_nBLCyQCROBBkxxTmLnqbgbVkZSpFb * __this, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wzRiUTIKuqxDCQYCeJSGjaGZezQK * param_0000b817, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6A28, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_nBLCyQCROBBkxxTmLnqbgbVkZSpFb_qodsdsWMGKiezgUNpMiXtvLVLUii__MethodInfo); DO_APP_FUNC(0x01F74F50, bool, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_nBLCyQCROBBkxxTmLnqbgbVkZSpFb_MlWuGmklqTyJouDQUNPWQKRzfrXkA, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_nBLCyQCROBBkxxTmLnqbgbVkZSpFb * __this, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wzRiUTIKuqxDCQYCeJSGjaGZezQK * param_0000b818, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6AC8, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_nBLCyQCROBBkxxTmLnqbgbVkZSpFb_MlWuGmklqTyJouDQUNPWQKRzfrXkA__MethodInfo); DO_APP_FUNC(0x01F74FA0, bool, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_nBLCyQCROBBkxxTmLnqbgbVkZSpFb_wOzDBEAOAMqLmRlxPNeCFQkDZTMs, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_nBLCyQCROBBkxxTmLnqbgbVkZSpFb * __this, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wzRiUTIKuqxDCQYCeJSGjaGZezQK * param_0000b819, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6A18, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_nBLCyQCROBBkxxTmLnqbgbVkZSpFb_wOzDBEAOAMqLmRlxPNeCFQkDZTMs__MethodInfo); DO_APP_FUNC(0x003AE050, void, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_AMxLLZWLKpCCqOPFVjshKVtZRSWl__ctor, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_AMxLLZWLKpCCqOPFVjshKVtZRSWl * __this, MethodInfo * method)); DO_APP_FUNC(0x01F74150, bool, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_AMxLLZWLKpCCqOPFVjshKVtZRSWl_QVYHCpcmaumOzFfmCwThWBtMYzaV, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_AMxLLZWLKpCCqOPFVjshKVtZRSWl * __this, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wzRiUTIKuqxDCQYCeJSGjaGZezQK * param_0000b81a, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6AD0, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_AMxLLZWLKpCCqOPFVjshKVtZRSWl_QVYHCpcmaumOzFfmCwThWBtMYzaV__MethodInfo); DO_APP_FUNC(0x003AE050, void, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_KqlKzbkCoFQGPEwIGkCBkVVRWGgl__ctor, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_KqlKzbkCoFQGPEwIGkCBkVVRWGgl * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_GuLBGjVjWyIdhliizgyZgNnNBHRIb__ctor, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_GuLBGjVjWyIdhliizgyZgNnNBHRIb * __this, MethodInfo * method)); DO_APP_FUNC(0x01F73E30, bool, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_GuLBGjVjWyIdhliizgyZgNnNBHRIb_uFOslJAfWHiudkwxCdLiBYfsErEt, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_GuLBGjVjWyIdhliizgyZgNnNBHRIb * __this, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wzRiUTIKuqxDCQYCeJSGjaGZezQK * param_0000b81b, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6D30, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_GuLBGjVjWyIdhliizgyZgNnNBHRIb_uFOslJAfWHiudkwxCdLiBYfsErEt__MethodInfo); DO_APP_FUNC(0x003AE050, void, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_zoQMUfKzvWjmqWQyWIWWMIIXniyb__ctor, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_zoQMUfKzvWjmqWQyWIWWMIIXniyb * __this, MethodInfo * method)); DO_APP_FUNC(0x01F73E30, bool, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_zoQMUfKzvWjmqWQyWIWWMIIXniyb_vZxsIYcFkvYrOSfxKwzDOyNsriZt, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_zoQMUfKzvWjmqWQyWIWWMIIXniyb * __this, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wzRiUTIKuqxDCQYCeJSGjaGZezQK * param_0000b81c, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6CE8, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_zoQMUfKzvWjmqWQyWIWWMIIXniyb_vZxsIYcFkvYrOSfxKwzDOyNsriZt__MethodInfo); DO_APP_FUNC(0x003AE050, void, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_BPkaMPOdSliSdiwbbiXVfAAGcTrE__ctor, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_BPkaMPOdSliSdiwbbiXVfAAGcTrE * __this, MethodInfo * method)); DO_APP_FUNC(0x01F73E30, bool, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_BPkaMPOdSliSdiwbbiXVfAAGcTrE_AqScWTBLQtNlZiKaRPgDTityOeOJA, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_BPkaMPOdSliSdiwbbiXVfAAGcTrE * __this, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wzRiUTIKuqxDCQYCeJSGjaGZezQK * param_0000b81d, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6CC0, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_BPkaMPOdSliSdiwbbiXVfAAGcTrE_AqScWTBLQtNlZiKaRPgDTityOeOJA__MethodInfo); DO_APP_FUNC(0x003AE050, void, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_bwphESxanSFuscPwjhVLBhhGqFBgb__ctor, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_bwphESxanSFuscPwjhVLBhhGqFBgb * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_XSCBNccEaOsUhjMSdONPYckXXBDo__ctor, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_XSCBNccEaOsUhjMSdONPYckXXBDo * __this, MethodInfo * method)); DO_APP_FUNC(0x01F73E30, bool, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_XSCBNccEaOsUhjMSdONPYckXXBDo_kIOPSEWBnjUvePbfgJgkIknicrbJ, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_XSCBNccEaOsUhjMSdONPYckXXBDo * __this, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wzRiUTIKuqxDCQYCeJSGjaGZezQK * param_0000b81e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6C20, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_XSCBNccEaOsUhjMSdONPYckXXBDo_kIOPSEWBnjUvePbfgJgkIknicrbJ__MethodInfo); DO_APP_FUNC(0x01F77AD0, void, UserData_TulNPSHwkMfRKJVimfNibmNtxqXP__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, UserData_TulNPSHwkMfRKJVimfNibmNtxqXP__ctor, (UserData_TulNPSHwkMfRKJVimfNibmNtxqXP * __this, MethodInfo * method)); DO_APP_FUNC(0x01F77B80, void, UserData_TulNPSHwkMfRKJVimfNibmNtxqXP_isHPUtaonfAuyaKedwdlZKexcnkU, (UserData_TulNPSHwkMfRKJVimfNibmNtxqXP * __this, List_1_Rewired_Data_Player_Editor_Mapping_ * param_0000b820, int32_t param_0000b821, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF42B0, UserData_TulNPSHwkMfRKJVimfNibmNtxqXP_isHPUtaonfAuyaKedwdlZKexcnkU__MethodInfo); DO_APP_FUNC(0x01F77C60, void, UserData_TulNPSHwkMfRKJVimfNibmNtxqXP_PhcQQvJYoDmNVvyJBNQXVAbFNums, (UserData_TulNPSHwkMfRKJVimfNibmNtxqXP * __this, List_1_Rewired_Data_Player_Editor_Mapping_ * param_0000b822, int32_t param_0000b823, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF40F0, UserData_TulNPSHwkMfRKJVimfNibmNtxqXP_PhcQQvJYoDmNVvyJBNQXVAbFNums__MethodInfo); DO_APP_FUNC(0x01F77D40, void, UserData_TulNPSHwkMfRKJVimfNibmNtxqXP_vjeebjiUHWDLARVlAUvDbsdIQEBDb, (UserData_TulNPSHwkMfRKJVimfNibmNtxqXP * __this, List_1_Rewired_Data_Player_Editor_Mapping_ * param_0000b824, int32_t param_0000b825, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF40D8, UserData_TulNPSHwkMfRKJVimfNibmNtxqXP_vjeebjiUHWDLARVlAUvDbsdIQEBDb__MethodInfo); DO_APP_FUNC(0x01F77E20, void, UserData_TulNPSHwkMfRKJVimfNibmNtxqXP_rApWXnNpfJmPRUzkzxsiuGeoIkeD, (UserData_TulNPSHwkMfRKJVimfNibmNtxqXP * __this, List_1_Rewired_Data_Player_Editor_Mapping_ * param_0000b826, int32_t param_0000b827, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF40B0, UserData_TulNPSHwkMfRKJVimfNibmNtxqXP_rApWXnNpfJmPRUzkzxsiuGeoIkeD__MethodInfo); DO_APP_FUNC(0x01F77F00, void, UserData_TulNPSHwkMfRKJVimfNibmNtxqXP_vZcSQhJnYmGNBsANNNKvQtLHUgmW, (UserData_TulNPSHwkMfRKJVimfNibmNtxqXP * __this, List_1_Rewired_Data_Player_Editor_Mapping_ * param_0000b828, int32_t param_0000b829, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4090, UserData_TulNPSHwkMfRKJVimfNibmNtxqXP_vZcSQhJnYmGNBsANNNKvQtLHUgmW__MethodInfo); DO_APP_FUNC(0x003AE050, void, UserData_QeWSaqkPdxYNriSGkOsDucTtkBcD__ctor, (UserData_QeWSaqkPdxYNriSGkOsDucTtkBcD * __this, MethodInfo * method)); DO_APP_FUNC(0x01F77FE0, int32_t, UserData_QeWSaqkPdxYNriSGkOsDucTtkBcD_LASgzMgHfqwoUVAEoxePCcswbwycA, (UserData_QeWSaqkPdxYNriSGkOsDucTtkBcD * __this, ControllerMap_Editor * param_0000b82a, ControllerMap_Editor * param_0000b82b, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3ED0, UserData_QeWSaqkPdxYNriSGkOsDucTtkBcD_LASgzMgHfqwoUVAEoxePCcswbwycA__MethodInfo); DO_APP_FUNC(0x003AE050, void, UserData_EjtgnUlQbacfkjWKTeeyjffKbPmAA__ctor, (UserData_EjtgnUlQbacfkjWKTeeyjffKbPmAA * __this, MethodInfo * method)); DO_APP_FUNC(0x01F78260, bool, UserData_EjtgnUlQbacfkjWKTeeyjffKbPmAA_lermGuQUnzJWPtOsshZLRAgKdWugA, (UserData_EjtgnUlQbacfkjWKTeeyjffKbPmAA * __this, InputLayout * param_0000b82c, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6A58, UserData_EjtgnUlQbacfkjWKTeeyjffKbPmAA_lermGuQUnzJWPtOsshZLRAgKdWugA__MethodInfo); DO_APP_FUNC(0x01F78290, bool, UserData_EjtgnUlQbacfkjWKTeeyjffKbPmAA_EAIPOieeKPvupnGElqOVZtPvRjtU, (UserData_EjtgnUlQbacfkjWKTeeyjffKbPmAA * __this, InputLayout * param_0000b82d, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6A68, UserData_EjtgnUlQbacfkjWKTeeyjffKbPmAA_EAIPOieeKPvupnGElqOVZtPvRjtU__MethodInfo); DO_APP_FUNC(0x00FDB5B0, void, UserData_DhqZgzGPWTGGwdRQFlWuzKfKqzAk__ctor, (UserData_DhqZgzGPWTGGwdRQFlWuzKfKqzAk * __this, int32_t param_0000b82e, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, UserData_DhqZgzGPWTGGwdRQFlWuzKfKqzAk_System_IDisposable_Dispose, (UserData_DhqZgzGPWTGGwdRQFlWuzKfKqzAk * __this, MethodInfo * method)); DO_APP_FUNC(0x01F782C0, bool, UserData_DhqZgzGPWTGGwdRQFlWuzKfKqzAk_MoveNext, (UserData_DhqZgzGPWTGGwdRQFlWuzKfKqzAk * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, InputCategory *, UserData_DhqZgzGPWTGGwdRQFlWuzKfKqzAk_System_Collections_Generic_IEnumerator_Rewired_InputCategory__get_Current, (UserData_DhqZgzGPWTGGwdRQFlWuzKfKqzAk * __this, MethodInfo * method)); DO_APP_FUNC(0x01F78510, void, UserData_DhqZgzGPWTGGwdRQFlWuzKfKqzAk_System_Collections_IEnumerator_Reset, (UserData_DhqZgzGPWTGGwdRQFlWuzKfKqzAk * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6A40, UserData_DhqZgzGPWTGGwdRQFlWuzKfKqzAk_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, UserData_DhqZgzGPWTGGwdRQFlWuzKfKqzAk_System_Collections_IEnumerator_get_Current, (UserData_DhqZgzGPWTGGwdRQFlWuzKfKqzAk * __this, MethodInfo * method)); DO_APP_FUNC(0x01F78560, IEnumerator_1_Rewired_InputCategory_ *, UserData_DhqZgzGPWTGGwdRQFlWuzKfKqzAk_System_Collections_Generic_IEnumerable_Rewired_InputCategory__GetEnumerator, (UserData_DhqZgzGPWTGGwdRQFlWuzKfKqzAk * __this, MethodInfo * method)); DO_APP_FUNC(0x01F78720, IEnumerator *, UserData_DhqZgzGPWTGGwdRQFlWuzKfKqzAk_System_Collections_IEnumerable_GetEnumerator, (UserData_DhqZgzGPWTGGwdRQFlWuzKfKqzAk * __this, MethodInfo * method)); @@ -46359,6 +54634,7 @@ DO_APP_FUNC(0x003AE050, void, UserData_GSAFNcaFcefHhLblWTtDIrxhfjgf_System_IDisp DO_APP_FUNC(0x01F78730, bool, UserData_GSAFNcaFcefHhLblWTtDIrxhfjgf_MoveNext, (UserData_GSAFNcaFcefHhLblWTtDIrxhfjgf * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, InputAction *, UserData_GSAFNcaFcefHhLblWTtDIrxhfjgf_System_Collections_Generic_IEnumerator_Rewired_InputAction__get_Current, (UserData_GSAFNcaFcefHhLblWTtDIrxhfjgf * __this, MethodInfo * method)); DO_APP_FUNC(0x01F78AA0, void, UserData_GSAFNcaFcefHhLblWTtDIrxhfjgf_System_Collections_IEnumerator_Reset, (UserData_GSAFNcaFcefHhLblWTtDIrxhfjgf * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6A38, UserData_GSAFNcaFcefHhLblWTtDIrxhfjgf_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, UserData_GSAFNcaFcefHhLblWTtDIrxhfjgf_System_Collections_IEnumerator_get_Current, (UserData_GSAFNcaFcefHhLblWTtDIrxhfjgf * __this, MethodInfo * method)); DO_APP_FUNC(0x01F78AF0, IEnumerator_1_Rewired_InputAction_ *, UserData_GSAFNcaFcefHhLblWTtDIrxhfjgf_System_Collections_Generic_IEnumerable_Rewired_InputAction__GetEnumerator, (UserData_GSAFNcaFcefHhLblWTtDIrxhfjgf * __this, MethodInfo * method)); DO_APP_FUNC(0x01F78CB0, IEnumerator *, UserData_GSAFNcaFcefHhLblWTtDIrxhfjgf_System_Collections_IEnumerable_GetEnumerator, (UserData_GSAFNcaFcefHhLblWTtDIrxhfjgf * __this, MethodInfo * method)); @@ -46368,6 +54644,7 @@ DO_APP_FUNC(0x01F78D90, bool, UserData_wcbBGuJTlAAGCeBLIeBzYbePCNMqA_MoveNext, ( DO_APP_FUNC(0x01F79170, void, UserData_wcbBGuJTlAAGCeBLIeBzYbePCNMqA_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (UserData_wcbBGuJTlAAGCeBLIeBzYbePCNMqA * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, InputAction *, UserData_wcbBGuJTlAAGCeBLIeBzYbePCNMqA_System_Collections_Generic_IEnumerator_Rewired_InputAction__get_Current, (UserData_wcbBGuJTlAAGCeBLIeBzYbePCNMqA * __this, MethodInfo * method)); DO_APP_FUNC(0x01F791D0, void, UserData_wcbBGuJTlAAGCeBLIeBzYbePCNMqA_System_Collections_IEnumerator_Reset, (UserData_wcbBGuJTlAAGCeBLIeBzYbePCNMqA * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF69F8, UserData_wcbBGuJTlAAGCeBLIeBzYbePCNMqA_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, UserData_wcbBGuJTlAAGCeBLIeBzYbePCNMqA_System_Collections_IEnumerator_get_Current, (UserData_wcbBGuJTlAAGCeBLIeBzYbePCNMqA * __this, MethodInfo * method)); DO_APP_FUNC(0x01F79220, IEnumerator_1_Rewired_InputAction_ *, UserData_wcbBGuJTlAAGCeBLIeBzYbePCNMqA_System_Collections_Generic_IEnumerable_Rewired_InputAction__GetEnumerator, (UserData_wcbBGuJTlAAGCeBLIeBzYbePCNMqA * __this, MethodInfo * method)); DO_APP_FUNC(0x01F79220, IEnumerator *, UserData_wcbBGuJTlAAGCeBLIeBzYbePCNMqA_System_Collections_IEnumerable_GetEnumerator, (UserData_wcbBGuJTlAAGCeBLIeBzYbePCNMqA * __this, MethodInfo * method)); @@ -46377,6 +54654,7 @@ DO_APP_FUNC(0x01F79440, bool, UserData_vCNoYyLakFDMMRvOgcYWDbpYeEmab_MoveNext, ( DO_APP_FUNC(0x01F799B0, void, UserData_vCNoYyLakFDMMRvOgcYWDbpYeEmab_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (UserData_vCNoYyLakFDMMRvOgcYWDbpYeEmab * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, InputAction *, UserData_vCNoYyLakFDMMRvOgcYWDbpYeEmab_System_Collections_Generic_IEnumerator_Rewired_InputAction__get_Current, (UserData_vCNoYyLakFDMMRvOgcYWDbpYeEmab * __this, MethodInfo * method)); DO_APP_FUNC(0x01F79A10, void, UserData_vCNoYyLakFDMMRvOgcYWDbpYeEmab_System_Collections_IEnumerator_Reset, (UserData_vCNoYyLakFDMMRvOgcYWDbpYeEmab * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF69F0, UserData_vCNoYyLakFDMMRvOgcYWDbpYeEmab_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, UserData_vCNoYyLakFDMMRvOgcYWDbpYeEmab_System_Collections_IEnumerator_get_Current, (UserData_vCNoYyLakFDMMRvOgcYWDbpYeEmab * __this, MethodInfo * method)); DO_APP_FUNC(0x01F79A60, IEnumerator_1_Rewired_InputAction_ *, UserData_vCNoYyLakFDMMRvOgcYWDbpYeEmab_System_Collections_Generic_IEnumerable_Rewired_InputAction__GetEnumerator, (UserData_vCNoYyLakFDMMRvOgcYWDbpYeEmab * __this, MethodInfo * method)); DO_APP_FUNC(0x01F79C20, IEnumerator *, UserData_vCNoYyLakFDMMRvOgcYWDbpYeEmab_System_Collections_IEnumerable_GetEnumerator, (UserData_vCNoYyLakFDMMRvOgcYWDbpYeEmab * __this, MethodInfo * method)); @@ -46385,6 +54663,7 @@ DO_APP_FUNC(0x003AE050, void, UserData_GnKAUSHFzfGdpkjvmQoGoJjkiANdA_System_IDis DO_APP_FUNC(0x01F79C30, bool, UserData_GnKAUSHFzfGdpkjvmQoGoJjkiANdA_MoveNext, (UserData_GnKAUSHFzfGdpkjvmQoGoJjkiANdA * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, InputMapCategory *, UserData_GnKAUSHFzfGdpkjvmQoGoJjkiANdA_System_Collections_Generic_IEnumerator_Rewired_InputMapCategory__get_Current, (UserData_GnKAUSHFzfGdpkjvmQoGoJjkiANdA * __this, MethodInfo * method)); DO_APP_FUNC(0x01F79E80, void, UserData_GnKAUSHFzfGdpkjvmQoGoJjkiANdA_System_Collections_IEnumerator_Reset, (UserData_GnKAUSHFzfGdpkjvmQoGoJjkiANdA * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6A08, UserData_GnKAUSHFzfGdpkjvmQoGoJjkiANdA_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, UserData_GnKAUSHFzfGdpkjvmQoGoJjkiANdA_System_Collections_IEnumerator_get_Current, (UserData_GnKAUSHFzfGdpkjvmQoGoJjkiANdA * __this, MethodInfo * method)); DO_APP_FUNC(0x01F79ED0, IEnumerator_1_Rewired_InputMapCategory_ *, UserData_GnKAUSHFzfGdpkjvmQoGoJjkiANdA_System_Collections_Generic_IEnumerable_Rewired_InputMapCategory__GetEnumerator, (UserData_GnKAUSHFzfGdpkjvmQoGoJjkiANdA * __this, MethodInfo * method)); DO_APP_FUNC(0x01F7A090, IEnumerator *, UserData_GnKAUSHFzfGdpkjvmQoGoJjkiANdA_System_Collections_IEnumerable_GetEnumerator, (UserData_GnKAUSHFzfGdpkjvmQoGoJjkiANdA * __this, MethodInfo * method)); @@ -46394,6 +54673,7 @@ DO_APP_FUNC(0x01F7A170, bool, UserData_WNUIOuWVRQtkSvfIVFPlWwnKCJqv_MoveNext, (U DO_APP_FUNC(0x01F7A3E0, void, UserData_WNUIOuWVRQtkSvfIVFPlWwnKCJqv_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (UserData_WNUIOuWVRQtkSvfIVFPlWwnKCJqv * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, String *, UserData_WNUIOuWVRQtkSvfIVFPlWwnKCJqv_System_Collections_Generic_IEnumerator_System_String__get_Current, (UserData_WNUIOuWVRQtkSvfIVFPlWwnKCJqv * __this, MethodInfo * method)); DO_APP_FUNC(0x01F7A440, void, UserData_WNUIOuWVRQtkSvfIVFPlWwnKCJqv_System_Collections_IEnumerator_Reset, (UserData_WNUIOuWVRQtkSvfIVFPlWwnKCJqv * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6A00, UserData_WNUIOuWVRQtkSvfIVFPlWwnKCJqv_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, UserData_WNUIOuWVRQtkSvfIVFPlWwnKCJqv_System_Collections_IEnumerator_get_Current, (UserData_WNUIOuWVRQtkSvfIVFPlWwnKCJqv * __this, MethodInfo * method)); DO_APP_FUNC(0x01F7A490, IEnumerator_1_System_String_ *, UserData_WNUIOuWVRQtkSvfIVFPlWwnKCJqv_System_Collections_Generic_IEnumerable_System_String__GetEnumerator, (UserData_WNUIOuWVRQtkSvfIVFPlWwnKCJqv * __this, MethodInfo * method)); DO_APP_FUNC(0x01F7A490, IEnumerator *, UserData_WNUIOuWVRQtkSvfIVFPlWwnKCJqv_System_Collections_IEnumerable_GetEnumerator, (UserData_WNUIOuWVRQtkSvfIVFPlWwnKCJqv * __this, MethodInfo * method)); @@ -46403,6 +54683,7 @@ DO_APP_FUNC(0x01F7A720, bool, UserData_RhPMmbMjehlGSZSFVZEULkBOrqLc_MoveNext, (U DO_APP_FUNC(0x01F7A960, void, UserData_RhPMmbMjehlGSZSFVZEULkBOrqLc_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (UserData_RhPMmbMjehlGSZSFVZEULkBOrqLc * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD70, int32_t, UserData_RhPMmbMjehlGSZSFVZEULkBOrqLc_System_Collections_Generic_IEnumerator_System_Int32__get_Current, (UserData_RhPMmbMjehlGSZSFVZEULkBOrqLc * __this, MethodInfo * method)); DO_APP_FUNC(0x01F7A9C0, void, UserData_RhPMmbMjehlGSZSFVZEULkBOrqLc_System_Collections_IEnumerator_Reset, (UserData_RhPMmbMjehlGSZSFVZEULkBOrqLc * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF69D8, UserData_RhPMmbMjehlGSZSFVZEULkBOrqLc_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x01F7AA10, Object *, UserData_RhPMmbMjehlGSZSFVZEULkBOrqLc_System_Collections_IEnumerator_get_Current, (UserData_RhPMmbMjehlGSZSFVZEULkBOrqLc * __this, MethodInfo * method)); DO_APP_FUNC(0x01F7AA60, IEnumerator_1_System_Int32_ *, UserData_RhPMmbMjehlGSZSFVZEULkBOrqLc_System_Collections_Generic_IEnumerable_System_Int32__GetEnumerator, (UserData_RhPMmbMjehlGSZSFVZEULkBOrqLc * __this, MethodInfo * method)); DO_APP_FUNC(0x01F7AA60, IEnumerator *, UserData_RhPMmbMjehlGSZSFVZEULkBOrqLc_System_Collections_IEnumerable_GetEnumerator, (UserData_RhPMmbMjehlGSZSFVZEULkBOrqLc * __this, MethodInfo * method)); @@ -46412,6 +54693,7 @@ DO_APP_FUNC(0x01F7AC70, bool, UserData_qQoSHmpfscRIJNaKwUnOUGXcEfjJ_MoveNext, (U DO_APP_FUNC(0x01F7AEE0, void, UserData_qQoSHmpfscRIJNaKwUnOUGXcEfjJ_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (UserData_qQoSHmpfscRIJNaKwUnOUGXcEfjJ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, String *, UserData_qQoSHmpfscRIJNaKwUnOUGXcEfjJ_System_Collections_Generic_IEnumerator_System_String__get_Current, (UserData_qQoSHmpfscRIJNaKwUnOUGXcEfjJ * __this, MethodInfo * method)); DO_APP_FUNC(0x01F7AF40, void, UserData_qQoSHmpfscRIJNaKwUnOUGXcEfjJ_System_Collections_IEnumerator_Reset, (UserData_qQoSHmpfscRIJNaKwUnOUGXcEfjJ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF69D0, UserData_qQoSHmpfscRIJNaKwUnOUGXcEfjJ_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, UserData_qQoSHmpfscRIJNaKwUnOUGXcEfjJ_System_Collections_IEnumerator_get_Current, (UserData_qQoSHmpfscRIJNaKwUnOUGXcEfjJ * __this, MethodInfo * method)); DO_APP_FUNC(0x01F7AF90, IEnumerator_1_System_String_ *, UserData_qQoSHmpfscRIJNaKwUnOUGXcEfjJ_System_Collections_Generic_IEnumerable_System_String__GetEnumerator, (UserData_qQoSHmpfscRIJNaKwUnOUGXcEfjJ * __this, MethodInfo * method)); DO_APP_FUNC(0x01F7AF90, IEnumerator *, UserData_qQoSHmpfscRIJNaKwUnOUGXcEfjJ_System_Collections_IEnumerable_GetEnumerator, (UserData_qQoSHmpfscRIJNaKwUnOUGXcEfjJ * __this, MethodInfo * method)); @@ -46420,6 +54702,7 @@ DO_APP_FUNC(0x003AE050, void, UserData_yLZJjyTSjmVKaGeoPNqVUDYXBKkFA_System_IDis DO_APP_FUNC(0x01F7B0D0, bool, UserData_yLZJjyTSjmVKaGeoPNqVUDYXBKkFA_MoveNext, (UserData_yLZJjyTSjmVKaGeoPNqVUDYXBKkFA * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, InputCategory *, UserData_yLZJjyTSjmVKaGeoPNqVUDYXBKkFA_System_Collections_Generic_IEnumerator_Rewired_InputCategory__get_Current, (UserData_yLZJjyTSjmVKaGeoPNqVUDYXBKkFA * __this, MethodInfo * method)); DO_APP_FUNC(0x01F7B340, void, UserData_yLZJjyTSjmVKaGeoPNqVUDYXBKkFA_System_Collections_IEnumerator_Reset, (UserData_yLZJjyTSjmVKaGeoPNqVUDYXBKkFA * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF69C8, UserData_yLZJjyTSjmVKaGeoPNqVUDYXBKkFA_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, UserData_yLZJjyTSjmVKaGeoPNqVUDYXBKkFA_System_Collections_IEnumerator_get_Current, (UserData_yLZJjyTSjmVKaGeoPNqVUDYXBKkFA * __this, MethodInfo * method)); DO_APP_FUNC(0x01F7B390, IEnumerator_1_Rewired_InputCategory_ *, UserData_yLZJjyTSjmVKaGeoPNqVUDYXBKkFA_System_Collections_Generic_IEnumerable_Rewired_InputCategory__GetEnumerator, (UserData_yLZJjyTSjmVKaGeoPNqVUDYXBKkFA * __this, MethodInfo * method)); DO_APP_FUNC(0x01F7B550, IEnumerator *, UserData_yLZJjyTSjmVKaGeoPNqVUDYXBKkFA_System_Collections_IEnumerable_GetEnumerator, (UserData_yLZJjyTSjmVKaGeoPNqVUDYXBKkFA * __this, MethodInfo * method)); @@ -46429,6 +54712,7 @@ DO_APP_FUNC(0x01F7B630, bool, UserData_mzAEXdiZuTEsWatBYuQVcVvSCRMbb_MoveNext, ( DO_APP_FUNC(0x01F7BA80, void, UserData_mzAEXdiZuTEsWatBYuQVcVvSCRMbb_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (UserData_mzAEXdiZuTEsWatBYuQVcVvSCRMbb * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, InputAction *, UserData_mzAEXdiZuTEsWatBYuQVcVvSCRMbb_System_Collections_Generic_IEnumerator_Rewired_InputAction__get_Current, (UserData_mzAEXdiZuTEsWatBYuQVcVvSCRMbb * __this, MethodInfo * method)); DO_APP_FUNC(0x01F7BAE0, void, UserData_mzAEXdiZuTEsWatBYuQVcVvSCRMbb_System_Collections_IEnumerator_Reset, (UserData_mzAEXdiZuTEsWatBYuQVcVvSCRMbb * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF69E8, UserData_mzAEXdiZuTEsWatBYuQVcVvSCRMbb_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, UserData_mzAEXdiZuTEsWatBYuQVcVvSCRMbb_System_Collections_IEnumerator_get_Current, (UserData_mzAEXdiZuTEsWatBYuQVcVvSCRMbb * __this, MethodInfo * method)); DO_APP_FUNC(0x01F7BB30, IEnumerator_1_Rewired_InputAction_ *, UserData_mzAEXdiZuTEsWatBYuQVcVvSCRMbb_System_Collections_Generic_IEnumerable_Rewired_InputAction__GetEnumerator, (UserData_mzAEXdiZuTEsWatBYuQVcVvSCRMbb * __this, MethodInfo * method)); DO_APP_FUNC(0x01F7BB30, IEnumerator *, UserData_mzAEXdiZuTEsWatBYuQVcVvSCRMbb_System_Collections_IEnumerable_GetEnumerator, (UserData_mzAEXdiZuTEsWatBYuQVcVvSCRMbb * __this, MethodInfo * method)); @@ -46438,6 +54722,7 @@ DO_APP_FUNC(0x01F7BD50, bool, UserData_nnzEjfPfSrJwasKSiTBVMeczbvIEA_MoveNext, ( DO_APP_FUNC(0x01F7C1A0, void, UserData_nnzEjfPfSrJwasKSiTBVMeczbvIEA_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (UserData_nnzEjfPfSrJwasKSiTBVMeczbvIEA * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, InputAction *, UserData_nnzEjfPfSrJwasKSiTBVMeczbvIEA_System_Collections_Generic_IEnumerator_Rewired_InputAction__get_Current, (UserData_nnzEjfPfSrJwasKSiTBVMeczbvIEA * __this, MethodInfo * method)); DO_APP_FUNC(0x01F7C200, void, UserData_nnzEjfPfSrJwasKSiTBVMeczbvIEA_System_Collections_IEnumerator_Reset, (UserData_nnzEjfPfSrJwasKSiTBVMeczbvIEA * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF69E0, UserData_nnzEjfPfSrJwasKSiTBVMeczbvIEA_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, UserData_nnzEjfPfSrJwasKSiTBVMeczbvIEA_System_Collections_IEnumerator_get_Current, (UserData_nnzEjfPfSrJwasKSiTBVMeczbvIEA * __this, MethodInfo * method)); DO_APP_FUNC(0x01F7C250, IEnumerator_1_Rewired_InputAction_ *, UserData_nnzEjfPfSrJwasKSiTBVMeczbvIEA_System_Collections_Generic_IEnumerable_Rewired_InputAction__GetEnumerator, (UserData_nnzEjfPfSrJwasKSiTBVMeczbvIEA * __this, MethodInfo * method)); DO_APP_FUNC(0x01F7C410, IEnumerator *, UserData_nnzEjfPfSrJwasKSiTBVMeczbvIEA_System_Collections_IEnumerable_GetEnumerator, (UserData_nnzEjfPfSrJwasKSiTBVMeczbvIEA * __this, MethodInfo * method)); @@ -46446,6 +54731,7 @@ DO_APP_FUNC(0x003AE050, void, UserData_KvnKBRzKRyLHstMgGAmdlxDIcJuF_System_IDisp DO_APP_FUNC(0x01F7C420, bool, UserData_KvnKBRzKRyLHstMgGAmdlxDIcJuF_MoveNext, (UserData_KvnKBRzKRyLHstMgGAmdlxDIcJuF * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, InputMapCategory *, UserData_KvnKBRzKRyLHstMgGAmdlxDIcJuF_System_Collections_Generic_IEnumerator_Rewired_InputMapCategory__get_Current, (UserData_KvnKBRzKRyLHstMgGAmdlxDIcJuF * __this, MethodInfo * method)); DO_APP_FUNC(0x01F7C690, void, UserData_KvnKBRzKRyLHstMgGAmdlxDIcJuF_System_Collections_IEnumerator_Reset, (UserData_KvnKBRzKRyLHstMgGAmdlxDIcJuF * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF69B0, UserData_KvnKBRzKRyLHstMgGAmdlxDIcJuF_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, UserData_KvnKBRzKRyLHstMgGAmdlxDIcJuF_System_Collections_IEnumerator_get_Current, (UserData_KvnKBRzKRyLHstMgGAmdlxDIcJuF * __this, MethodInfo * method)); DO_APP_FUNC(0x01F7C6E0, IEnumerator_1_Rewired_InputMapCategory_ *, UserData_KvnKBRzKRyLHstMgGAmdlxDIcJuF_System_Collections_Generic_IEnumerable_Rewired_InputMapCategory__GetEnumerator, (UserData_KvnKBRzKRyLHstMgGAmdlxDIcJuF * __this, MethodInfo * method)); DO_APP_FUNC(0x01F7C8A0, IEnumerator *, UserData_KvnKBRzKRyLHstMgGAmdlxDIcJuF_System_Collections_IEnumerable_GetEnumerator, (UserData_KvnKBRzKRyLHstMgGAmdlxDIcJuF * __this, MethodInfo * method)); @@ -46454,6 +54740,7 @@ DO_APP_FUNC(0x003AE050, void, UserData_SoCCXzCpcAeriAYLReqosOKNXVEN_System_IDisp DO_APP_FUNC(0x01F7C8B0, bool, UserData_SoCCXzCpcAeriAYLReqosOKNXVEN_MoveNext, (UserData_SoCCXzCpcAeriAYLReqosOKNXVEN * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, InputCategory *, UserData_SoCCXzCpcAeriAYLReqosOKNXVEN_System_Collections_Generic_IEnumerator_Rewired_InputCategory__get_Current, (UserData_SoCCXzCpcAeriAYLReqosOKNXVEN * __this, MethodInfo * method)); DO_APP_FUNC(0x01F7C9C0, void, UserData_SoCCXzCpcAeriAYLReqosOKNXVEN_System_Collections_IEnumerator_Reset, (UserData_SoCCXzCpcAeriAYLReqosOKNXVEN * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF69A8, UserData_SoCCXzCpcAeriAYLReqosOKNXVEN_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, UserData_SoCCXzCpcAeriAYLReqosOKNXVEN_System_Collections_IEnumerator_get_Current, (UserData_SoCCXzCpcAeriAYLReqosOKNXVEN * __this, MethodInfo * method)); DO_APP_FUNC(0x01F7CA10, IEnumerator_1_Rewired_InputCategory_ *, UserData_SoCCXzCpcAeriAYLReqosOKNXVEN_System_Collections_Generic_IEnumerable_Rewired_InputCategory__GetEnumerator, (UserData_SoCCXzCpcAeriAYLReqosOKNXVEN * __this, MethodInfo * method)); DO_APP_FUNC(0x01F7CA10, IEnumerator *, UserData_SoCCXzCpcAeriAYLReqosOKNXVEN_System_Collections_IEnumerable_GetEnumerator, (UserData_SoCCXzCpcAeriAYLReqosOKNXVEN * __this, MethodInfo * method)); @@ -46462,6 +54749,7 @@ DO_APP_FUNC(0x003AE050, void, UserData_NnIdEvoQOzbRMwaQKHsCurzAVpsV_System_IDisp DO_APP_FUNC(0x01F7CB50, bool, UserData_NnIdEvoQOzbRMwaQKHsCurzAVpsV_MoveNext, (UserData_NnIdEvoQOzbRMwaQKHsCurzAVpsV * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, InputAction *, UserData_NnIdEvoQOzbRMwaQKHsCurzAVpsV_System_Collections_Generic_IEnumerator_Rewired_InputAction__get_Current, (UserData_NnIdEvoQOzbRMwaQKHsCurzAVpsV * __this, MethodInfo * method)); DO_APP_FUNC(0x01F7CC80, void, UserData_NnIdEvoQOzbRMwaQKHsCurzAVpsV_System_Collections_IEnumerator_Reset, (UserData_NnIdEvoQOzbRMwaQKHsCurzAVpsV * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF69A0, UserData_NnIdEvoQOzbRMwaQKHsCurzAVpsV_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, UserData_NnIdEvoQOzbRMwaQKHsCurzAVpsV_System_Collections_IEnumerator_get_Current, (UserData_NnIdEvoQOzbRMwaQKHsCurzAVpsV * __this, MethodInfo * method)); DO_APP_FUNC(0x01F7CCD0, IEnumerator_1_Rewired_InputAction_ *, UserData_NnIdEvoQOzbRMwaQKHsCurzAVpsV_System_Collections_Generic_IEnumerable_Rewired_InputAction__GetEnumerator, (UserData_NnIdEvoQOzbRMwaQKHsCurzAVpsV * __this, MethodInfo * method)); DO_APP_FUNC(0x01F7CCD0, IEnumerator *, UserData_NnIdEvoQOzbRMwaQKHsCurzAVpsV_System_Collections_IEnumerable_GetEnumerator, (UserData_NnIdEvoQOzbRMwaQKHsCurzAVpsV * __this, MethodInfo * method)); @@ -46470,6 +54758,7 @@ DO_APP_FUNC(0x003AE050, void, UserData_gkVPgAyBJrkaebtzSGqXAPMpIrMe_System_IDisp DO_APP_FUNC(0x01F7CE10, bool, UserData_gkVPgAyBJrkaebtzSGqXAPMpIrMe_MoveNext, (UserData_gkVPgAyBJrkaebtzSGqXAPMpIrMe * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, InputMapCategory *, UserData_gkVPgAyBJrkaebtzSGqXAPMpIrMe_System_Collections_Generic_IEnumerator_Rewired_InputMapCategory__get_Current, (UserData_gkVPgAyBJrkaebtzSGqXAPMpIrMe * __this, MethodInfo * method)); DO_APP_FUNC(0x01F7CF20, void, UserData_gkVPgAyBJrkaebtzSGqXAPMpIrMe_System_Collections_IEnumerator_Reset, (UserData_gkVPgAyBJrkaebtzSGqXAPMpIrMe * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF69C0, UserData_gkVPgAyBJrkaebtzSGqXAPMpIrMe_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, UserData_gkVPgAyBJrkaebtzSGqXAPMpIrMe_System_Collections_IEnumerator_get_Current, (UserData_gkVPgAyBJrkaebtzSGqXAPMpIrMe * __this, MethodInfo * method)); DO_APP_FUNC(0x01F7CF70, IEnumerator_1_Rewired_InputMapCategory_ *, UserData_gkVPgAyBJrkaebtzSGqXAPMpIrMe_System_Collections_Generic_IEnumerable_Rewired_InputMapCategory__GetEnumerator, (UserData_gkVPgAyBJrkaebtzSGqXAPMpIrMe * __this, MethodInfo * method)); DO_APP_FUNC(0x01F7CF70, IEnumerator *, UserData_gkVPgAyBJrkaebtzSGqXAPMpIrMe_System_Collections_IEnumerable_GetEnumerator, (UserData_gkVPgAyBJrkaebtzSGqXAPMpIrMe * __this, MethodInfo * method)); @@ -46503,6 +54792,7 @@ DO_APP_FUNC(0x003BB3B0, List_1_Rewired_Data_ControllerMapEnabler_Rule_Editor_ *, DO_APP_FUNC(0x003C6500, void, ControllerMapEnabler_RuleSet_Editor_set_rules, (ControllerMapEnabler_RuleSet_Editor * __this, List_1_Rewired_Data_ControllerMapEnabler_Rule_Editor_ * value, MethodInfo * method)); DO_APP_FUNC(0x01F7D6C0, void, ControllerMapEnabler_RuleSet_Editor__ctor, (ControllerMapEnabler_RuleSet_Editor * __this, MethodInfo * method)); DO_APP_FUNC(0x01F7D790, void, ControllerMapEnabler_RuleSet_Editor__ctor_1, (ControllerMapEnabler_RuleSet_Editor * __this, ControllerMapEnabler_RuleSet_Editor * param_0000b85e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6958, ControllerMapEnabler_RuleSet_Editor__ctor_1__MethodInfo); DO_APP_FUNC(0x01F7D980, ControllerMapEnabler_RuleSet_Editor *, ControllerMapEnabler_RuleSet_Editor_Clone, (ControllerMapEnabler_RuleSet_Editor * __this, MethodInfo * method)); DO_APP_FUNC(0x01F7D9F0, ControllerMapEnabler_RuleSet *, ControllerMapEnabler_RuleSet_Editor_ToRuntime, (ControllerMapEnabler_RuleSet_Editor * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, String *, ControllerMapEnabler_Rule_Editor_get_tag, (ControllerMapEnabler_Rule_Editor * __this, MethodInfo * method)); @@ -46517,6 +54807,7 @@ DO_APP_FUNC(0x003BB330, ControllerSetSelector_Editor *, ControllerMapEnabler_Rul DO_APP_FUNC(0x00424C30, void, ControllerMapEnabler_Rule_Editor_set_controllerSetSelector, (ControllerMapEnabler_Rule_Editor * __this, ControllerSetSelector_Editor * value, MethodInfo * method)); DO_APP_FUNC(0x01F7DCD0, void, ControllerMapEnabler_Rule_Editor__ctor, (ControllerMapEnabler_Rule_Editor * __this, MethodInfo * method)); DO_APP_FUNC(0x01F7DE90, void, ControllerMapEnabler_Rule_Editor__ctor_1, (ControllerMapEnabler_Rule_Editor * __this, ControllerMapEnabler_Rule_Editor * param_0000b864, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6980, ControllerMapEnabler_Rule_Editor__ctor_1__MethodInfo); DO_APP_FUNC(0x01F7E0F0, ControllerMapEnabler_Rule *, ControllerMapEnabler_Rule_Editor_ToRuntime, (ControllerMapEnabler_Rule_Editor * __this, MethodInfo * method)); DO_APP_FUNC(0x01F7E340, Object *, ControllerMapEnabler_Rule_Editor_Rewired_Utils_Interfaces_IDeepCloneable_DeepClone, (ControllerMapEnabler_Rule_Editor * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD50, int32_t, ControllerMapLayoutManager_RuleSet_Editor_get_id, (ControllerMapLayoutManager_RuleSet_Editor * __this, MethodInfo * method)); @@ -46529,6 +54820,7 @@ DO_APP_FUNC(0x003BB3B0, List_1_Rewired_Data_ControllerMapLayoutManager_Rule_Edit DO_APP_FUNC(0x003C6500, void, ControllerMapLayoutManager_RuleSet_Editor_set_rules, (ControllerMapLayoutManager_RuleSet_Editor * __this, List_1_Rewired_Data_ControllerMapLayoutManager_Rule_Editor_ * value, MethodInfo * method)); DO_APP_FUNC(0x01F7E3B0, void, ControllerMapLayoutManager_RuleSet_Editor__ctor, (ControllerMapLayoutManager_RuleSet_Editor * __this, MethodInfo * method)); DO_APP_FUNC(0x01F7E480, void, ControllerMapLayoutManager_RuleSet_Editor__ctor_1, (ControllerMapLayoutManager_RuleSet_Editor * __this, ControllerMapLayoutManager_RuleSet_Editor * param_0000b869, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF68F8, ControllerMapLayoutManager_RuleSet_Editor__ctor_1__MethodInfo); DO_APP_FUNC(0x01F7E670, ControllerMapLayoutManager_RuleSet_Editor *, ControllerMapLayoutManager_RuleSet_Editor_Clone, (ControllerMapLayoutManager_RuleSet_Editor * __this, MethodInfo * method)); DO_APP_FUNC(0x01F7E6E0, ControllerMapLayoutManager_RuleSet *, ControllerMapLayoutManager_RuleSet_Editor_ToRuntime, (ControllerMapLayoutManager_RuleSet_Editor * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, String *, ControllerMapLayoutManager_Rule_Editor_get_tag, (ControllerMapLayoutManager_Rule_Editor * __this, MethodInfo * method)); @@ -46541,11 +54833,13 @@ DO_APP_FUNC(0x003BB3B0, ControllerSetSelector_Editor *, ControllerMapLayoutManag DO_APP_FUNC(0x003C6500, void, ControllerMapLayoutManager_Rule_Editor_set_controllerSetSelector, (ControllerMapLayoutManager_Rule_Editor * __this, ControllerSetSelector_Editor * value, MethodInfo * method)); DO_APP_FUNC(0x01F7E9C0, void, ControllerMapLayoutManager_Rule_Editor__ctor, (ControllerMapLayoutManager_Rule_Editor * __this, MethodInfo * method)); DO_APP_FUNC(0x01F7EB20, void, ControllerMapLayoutManager_Rule_Editor__ctor_1, (ControllerMapLayoutManager_Rule_Editor * __this, ControllerMapLayoutManager_Rule_Editor * param_0000b86e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6928, ControllerMapLayoutManager_Rule_Editor__ctor_1__MethodInfo); DO_APP_FUNC(0x01F7ED20, ControllerMapLayoutManager_Rule *, ControllerMapLayoutManager_Rule_Editor_ToRuntime, (ControllerMapLayoutManager_Rule_Editor * __this, MethodInfo * method)); DO_APP_FUNC(0x01F7EEF0, Object *, ControllerMapLayoutManager_Rule_Editor_Rewired_Utils_Interfaces_IDeepCloneable_DeepClone, (ControllerMapLayoutManager_Rule_Editor * __this, MethodInfo * method)); DO_APP_FUNC(0x01F7EF60, void, ControllerSetSelector_Editor__ctor, (ControllerSetSelector_Editor * __this, ControllerSetSelector_Type__Enum param_0000b86f, MethodInfo * method)); DO_APP_FUNC(0x01F7F050, void, ControllerSetSelector_Editor__ctor_1, (ControllerSetSelector_Editor * __this, MethodInfo * method)); DO_APP_FUNC(0x01F7F130, void, ControllerSetSelector_Editor__ctor_2, (ControllerSetSelector_Editor * __this, ControllerSetSelector_Editor * param_0000b870, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6910, ControllerSetSelector_Editor__ctor_2__MethodInfo); DO_APP_FUNC(0x003BCD50, ControllerSetSelector_Type__Enum, ControllerSetSelector_Editor_get_type, (ControllerSetSelector_Editor * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, ControllerSetSelector_Editor_set_type, (ControllerSetSelector_Editor * __this, ControllerSetSelector_Type__Enum value, MethodInfo * method)); DO_APP_FUNC(0x003BCD70, ControllerType__Enum, ControllerSetSelector_Editor_get_controllerType, (ControllerSetSelector_Editor * __this, MethodInfo * method)); @@ -46569,6 +54863,7 @@ DO_APP_FUNC(0x01A246F0, void, ControllerSetSelector_Editor_set_controllerId, (Co DO_APP_FUNC(0x009F7E90, int32_t, ControllerSetSelector_Editor_get_customControllerSourceId, (ControllerSetSelector_Editor * __this, MethodInfo * method)); DO_APP_FUNC(0x01A71040, void, ControllerSetSelector_Editor_set_customControllerSourceId, (ControllerSetSelector_Editor * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01F7F5A0, ControllerSetSelector *, ControllerSetSelector_Editor_kDAybQXVtjQAOBprRdCBJxPyiZdi, (ControllerSetSelector_Editor * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6890, ControllerSetSelector_Editor_kDAybQXVtjQAOBprRdCBJxPyiZdi__MethodInfo); DO_APP_FUNC(0x01F7F830, Object *, ControllerSetSelector_Editor_Rewired_Utils_Interfaces_IDeepCloneable_DeepClone, (ControllerSetSelector_Editor * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ControllerTemplateSpecialElementMapping__ctor, (ControllerTemplateSpecialElementMapping * __this, MethodInfo * method)); DO_APP_FUNC(0x01F7F8A0, void, ControllerTemplateThumbStickMapping__ctor, (ControllerTemplateThumbStickMapping * __this, MethodInfo * method)); @@ -46608,6 +54903,7 @@ DO_APP_FUNC(0x003AE050, void, ActionCategoryMap_Entry_kTJAExJEHvAFsQCigviWsADPsa DO_APP_FUNC(0x01F81110, bool, ActionCategoryMap_Entry_kTJAExJEHvAFsQCigviWsADPsahaA_MoveNext, (ActionCategoryMap_Entry_kTJAExJEHvAFsQCigviWsADPsahaA * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD70, int32_t, ActionCategoryMap_Entry_kTJAExJEHvAFsQCigviWsADPsahaA_System_Collections_Generic_IEnumerator_System_Int32__get_Current, (ActionCategoryMap_Entry_kTJAExJEHvAFsQCigviWsADPsahaA * __this, MethodInfo * method)); DO_APP_FUNC(0x01F811E0, void, ActionCategoryMap_Entry_kTJAExJEHvAFsQCigviWsADPsahaA_System_Collections_IEnumerator_Reset, (ActionCategoryMap_Entry_kTJAExJEHvAFsQCigviWsADPsahaA * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6858, ActionCategoryMap_Entry_kTJAExJEHvAFsQCigviWsADPsahaA_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x01F81230, Object *, ActionCategoryMap_Entry_kTJAExJEHvAFsQCigviWsADPsahaA_System_Collections_IEnumerator_get_Current, (ActionCategoryMap_Entry_kTJAExJEHvAFsQCigviWsADPsahaA * __this, MethodInfo * method)); DO_APP_FUNC(0x01F81280, IEnumerator_1_System_Int32_ *, ActionCategoryMap_Entry_kTJAExJEHvAFsQCigviWsADPsahaA_System_Collections_Generic_IEnumerable_System_Int32__GetEnumerator, (ActionCategoryMap_Entry_kTJAExJEHvAFsQCigviWsADPsahaA * __this, MethodInfo * method)); DO_APP_FUNC(0x01F81280, IEnumerator *, ActionCategoryMap_Entry_kTJAExJEHvAFsQCigviWsADPsahaA_System_Collections_IEnumerable_GetEnumerator, (ActionCategoryMap_Entry_kTJAExJEHvAFsQCigviWsADPsahaA * __this, MethodInfo * method)); @@ -46617,6 +54913,7 @@ DO_APP_FUNC(0x01F81490, bool, ActionCategoryMap_gZCBARdAyvwRbPAUBPMVsDzckpjEA_Mo DO_APP_FUNC(0x01F817F0, void, ActionCategoryMap_gZCBARdAyvwRbPAUBPMVsDzckpjEA_QDNfcoFoaHbIufcPJbjePGvhmFBLb, (ActionCategoryMap_gZCBARdAyvwRbPAUBPMVsDzckpjEA * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD70, int32_t, ActionCategoryMap_gZCBARdAyvwRbPAUBPMVsDzckpjEA_System_Collections_Generic_IEnumerator_System_Int32__get_Current, (ActionCategoryMap_gZCBARdAyvwRbPAUBPMVsDzckpjEA * __this, MethodInfo * method)); DO_APP_FUNC(0x01F81850, void, ActionCategoryMap_gZCBARdAyvwRbPAUBPMVsDzckpjEA_System_Collections_IEnumerator_Reset, (ActionCategoryMap_gZCBARdAyvwRbPAUBPMVsDzckpjEA * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6850, ActionCategoryMap_gZCBARdAyvwRbPAUBPMVsDzckpjEA_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x01F818A0, Object *, ActionCategoryMap_gZCBARdAyvwRbPAUBPMVsDzckpjEA_System_Collections_IEnumerator_get_Current, (ActionCategoryMap_gZCBARdAyvwRbPAUBPMVsDzckpjEA * __this, MethodInfo * method)); DO_APP_FUNC(0x01F818F0, IEnumerator_1_System_Int32_ *, ActionCategoryMap_gZCBARdAyvwRbPAUBPMVsDzckpjEA_System_Collections_Generic_IEnumerable_System_Int32__GetEnumerator, (ActionCategoryMap_gZCBARdAyvwRbPAUBPMVsDzckpjEA * __this, MethodInfo * method)); DO_APP_FUNC(0x01F818F0, IEnumerator *, ActionCategoryMap_gZCBARdAyvwRbPAUBPMVsDzckpjEA_System_Collections_IEnumerable_GetEnumerator, (ActionCategoryMap_gZCBARdAyvwRbPAUBPMVsDzckpjEA * __this, MethodInfo * method)); @@ -46630,10 +54927,12 @@ DO_APP_FUNC(0x003BA2A0, void, CustomCalculation_Accelerometer__ctor, (CustomCalc DO_APP_FUNC(0x009D2B70, TypeWrapper_DataType__Enum, CustomCalculation_CompareElementValues_whegNIduKsyrNMRJuBzxObSWTHhuA, (CustomCalculation_CompareElementValues * __this, MethodInfo * method)); DO_APP_FUNC(0x01F82190, bool, CustomCalculation_CompareElementValues_tclXZbGKyEESwFfDuILzyNKIqeHO, (CustomCalculation_CompareElementValues * __this, MethodInfo * method)); DO_APP_FUNC(0x01F82290, float, CustomCalculation_CompareElementValues_LWeOhsaRGrtGoAOpaiHwRcblevwp, (CustomCalculation_CompareElementValues * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF67F8, CustomCalculation_CompareElementValues_LWeOhsaRGrtGoAOpaiHwRcblevwp__MethodInfo); DO_APP_FUNC(0x003BA2A0, void, CustomCalculation_CompareElementValues__ctor, (CustomCalculation_CompareElementValues * __this, MethodInfo * method)); DO_APP_FUNC(0x009D2B70, TypeWrapper_DataType__Enum, CustomCalculation_FirstNonZero_whegNIduKsyrNMRJuBzxObSWTHhuA, (CustomCalculation_FirstNonZero * __this, MethodInfo * method)); DO_APP_FUNC(0x01F82600, bool, CustomCalculation_FirstNonZero_tclXZbGKyEESwFfDuILzyNKIqeHO, (CustomCalculation_FirstNonZero * __this, MethodInfo * method)); DO_APP_FUNC(0x01F82700, float, CustomCalculation_FirstNonZero_LWeOhsaRGrtGoAOpaiHwRcblevwp, (CustomCalculation_FirstNonZero * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF67F0, CustomCalculation_FirstNonZero_LWeOhsaRGrtGoAOpaiHwRcblevwp__MethodInfo); DO_APP_FUNC(0x003BA2A0, void, CustomCalculation_FirstNonZero__ctor, (CustomCalculation_FirstNonZero * __this, MethodInfo * method)); DO_APP_FUNC(0x009D2B70, TypeWrapper_DataType__Enum, CustomCalculation_LogitechGRacingWheelPedals_whegNIduKsyrNMRJuBzxObSWTHhuA, (CustomCalculation_LogitechGRacingWheelPedals * __this, MethodInfo * method)); DO_APP_FUNC(0x01F828B0, bool, CustomCalculation_LogitechGRacingWheelPedals_tclXZbGKyEESwFfDuILzyNKIqeHO, (CustomCalculation_LogitechGRacingWheelPedals * __this, MethodInfo * method)); @@ -46654,25 +54953,28 @@ DO_APP_FUNC(0x01F85830, String__Array *, HardwareJoystickMap_GetElementIdentifie DO_APP_FUNC(0x01F859B0, Int32__Array *, HardwareJoystickMap_GetElementIdentifierIds, (HardwareJoystickMap * __this, MethodInfo * method)); DO_APP_FUNC(0x01F85A70, ControllerElementIdentifier *, HardwareJoystickMap_GetElementIdentifier, (HardwareJoystickMap * __this, int32_t id, MethodInfo * method)); DO_APP_FUNC(0x01F85AE0, bool, HardwareJoystickMap_ContainsElementIdentifier, (HardwareJoystickMap * __this, int32_t id, MethodInfo * method)); -DO_APP_FUNC(0x01F85B40, int32_t, HardwareJoystickMap_GetElementIdentifierInfo, (HardwareJoystickMap * __this, ControllerElementType__Enum type, String__Array * names, Int32__Array * ids, MethodInfo * method)); -DO_APP_FUNC(0x01F85F60, int32_t, HardwareJoystickMap_GetMappableElementIdentifierInfo, (HardwareJoystickMap * __this, String__Array * names, Int32__Array * ids, MethodInfo * method)); +DO_APP_FUNC(0x01F85B40, int32_t, HardwareJoystickMap_GetElementIdentifierInfo, (HardwareJoystickMap * __this, ControllerElementType__Enum type, String__Array * * names, Int32__Array * * ids, MethodInfo * method)); +DO_APP_FUNC(0x01F85F60, int32_t, HardwareJoystickMap_GetMappableElementIdentifierInfo, (HardwareJoystickMap * __this, String__Array * * names, Int32__Array * * ids, MethodInfo * method)); DO_APP_FUNC(0x01F86380, HardwareJoystickMap *, HardwareJoystickMap_Clone, (HardwareJoystickMap * __this, MethodInfo * method)); DO_APP_FUNC(0x01F863F0, int32_t, HardwareJoystickMap_IndexOfElementIdentifier, (HardwareJoystickMap * __this, int32_t id, MethodInfo * method)); DO_APP_FUNC(0x01F86450, ControllerElementType__Enum, HardwareJoystickMap_GetEffectiveElementIdentifierType, (HardwareJoystickMap * __this, HardwareControllerMapIdentifier hardwareMapIdentifier, int32_t elementIdentifierId, bool isDefaultMap, MethodInfo * method)); -DO_APP_FUNC(0x01F864F0, bool, HardwareJoystickMap_GetEffectiveAxisRange, (HardwareJoystickMap * __this, HardwareControllerMapIdentifier hardwareMapIdentifier, int32_t elementIdentifierId, bool isDefaultMap, AxisRange__Enum axisRange, MethodInfo * method)); -DO_APP_FUNC(0x01F86590, void, HardwareJoystickMap_GetElementIdentifiersForControllerElements, (HardwareJoystickMap * __this, HardwareControllerMapIdentifier hardwareMapIdentifier, bool isDefaultMap, Int32__Array * buttons, Int32__Array * axes, MethodInfo * method)); -DO_APP_FUNC(0x01F866E0, bool, HardwareJoystickMap_Matches, (HardwareJoystickMap_Platform * platform, BridgedControllerHWInfo * bridgedControllerHWInfo, bool strictMatch, int32_t variantIndex, HardwareJoystickMap_Platform * platformMap, MethodInfo * method)); -DO_APP_FUNC(0x01F86760, bool, HardwareJoystickMap_Matches_1, (HardwareJoystickMap * __this, BridgedControllerHWInfo * bridgedControllerHWInfo, bool strictMatch, bool isDefaultMap, InputPlatform__Enum actualInputPlatform, int32_t variantIndex, HardwareJoystickMap_Platform * platformMap, MethodInfo * method)); +DO_APP_FUNC(0x01F864F0, bool, HardwareJoystickMap_GetEffectiveAxisRange, (HardwareJoystickMap * __this, HardwareControllerMapIdentifier hardwareMapIdentifier, int32_t elementIdentifierId, bool isDefaultMap, AxisRange__Enum * axisRange, MethodInfo * method)); +DO_APP_FUNC(0x01F86590, void, HardwareJoystickMap_GetElementIdentifiersForControllerElements, (HardwareJoystickMap * __this, HardwareControllerMapIdentifier hardwareMapIdentifier, bool isDefaultMap, Int32__Array * * buttons, Int32__Array * * axes, MethodInfo * method)); +DO_APP_FUNC(0x01F866E0, bool, HardwareJoystickMap_Matches, (HardwareJoystickMap_Platform * platform, BridgedControllerHWInfo * bridgedControllerHWInfo, bool strictMatch, int32_t * variantIndex, HardwareJoystickMap_Platform * * platformMap, MethodInfo * method)); +DO_APP_FUNC(0x01F86760, bool, HardwareJoystickMap_Matches_1, (HardwareJoystickMap * __this, BridgedControllerHWInfo * bridgedControllerHWInfo, bool strictMatch, bool isDefaultMap, InputPlatform__Enum * actualInputPlatform, int32_t * variantIndex, HardwareJoystickMap_Platform * * platformMap, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6718, HardwareJoystickMap_Matches_1__MethodInfo); DO_APP_FUNC(0x01F86E50, HardwareJoystickMap_InputManager *, HardwareJoystickMap_GetDefaultHardwareJoystickMap_InputManager, (HardwareJoystickMap * __this, BridgedControllerHWInfo * bridgedController, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6708, HardwareJoystickMap_GetDefaultHardwareJoystickMap_InputManager__MethodInfo); DO_APP_FUNC(0x003C7320, String__Array *, HardwareJoystickMap_GetTemplateGuidsOrig, (HardwareJoystickMap * __this, MethodInfo * method)); DO_APP_FUNC(0x01F872D0, IEnumerable_1_Rewired_Interfaces_IControllerElementIdentifierCommon_Internal_ *, HardwareJoystickMap_Rewired_Data_Mapping_IHardwareControllerMap_Internal_get_ElementIdentifiers, (HardwareJoystickMap * __this, MethodInfo * method)); DO_APP_FUNC(0x01F87390, IControllerElementIdentifierCommon_Internal *, HardwareJoystickMap_Rewired_Data_Mapping_IHardwareControllerMap_Internal_GetElementIdentifier, (HardwareJoystickMap * __this, int32_t id, MethodInfo * method)); -DO_APP_FUNC(0x01F873A0, HardwareJoystickMap_Platform_Fallback_Base *, HardwareJoystickMap_FindFallbackMatch, (HardwareJoystickMap * __this, BridgedControllerHWInfo * bridgedControllerHWInfo, bool strictMatch, bool isDefaultMap, InputPlatform__Enum actualInputPlatform, int32_t variantIndex, MethodInfo * method)); -DO_APP_FUNC(0x01F877E0, HardwareJoystickMap_Platform_Fallback_Base *, HardwareJoystickMap_FindFallbackMap, (HardwareJoystickMap * __this, InputSource__Enum inputSource, bool isDefaultMap, InputPlatform__Enum actualInputPlatform, int32_t variantIndex, MethodInfo * method)); -DO_APP_FUNC(0x01F87B50, HardwareJoystickMap_Platform_SDL2_Base *, HardwareJoystickMap_FindSDL2Match, (HardwareJoystickMap * __this, BridgedControllerHWInfo * bridgedControllerHWInfo, bool strictMatch, bool isDefaultMap, InputPlatform__Enum actualInputPlatform, int32_t variantIndex, MethodInfo * method)); -DO_APP_FUNC(0x01F87CB0, HardwareJoystickMap_Platform_SDL2_Base *, HardwareJoystickMap_FindSDL2Map, (HardwareJoystickMap * __this, InputSource__Enum inputSource, bool isDefaultMap, InputPlatform__Enum actualInputPlatform, int32_t variantIndex, MethodInfo * method)); +DO_APP_FUNC(0x01F873A0, HardwareJoystickMap_Platform_Fallback_Base *, HardwareJoystickMap_FindFallbackMatch, (HardwareJoystickMap * __this, BridgedControllerHWInfo * bridgedControllerHWInfo, bool strictMatch, bool isDefaultMap, InputPlatform__Enum * actualInputPlatform, int32_t * variantIndex, MethodInfo * method)); +DO_APP_FUNC(0x01F877E0, HardwareJoystickMap_Platform_Fallback_Base *, HardwareJoystickMap_FindFallbackMap, (HardwareJoystickMap * __this, InputSource__Enum inputSource, bool isDefaultMap, InputPlatform__Enum * actualInputPlatform, int32_t * variantIndex, MethodInfo * method)); +DO_APP_FUNC(0x01F87B50, HardwareJoystickMap_Platform_SDL2_Base *, HardwareJoystickMap_FindSDL2Match, (HardwareJoystickMap * __this, BridgedControllerHWInfo * bridgedControllerHWInfo, bool strictMatch, bool isDefaultMap, InputPlatform__Enum * actualInputPlatform, int32_t * variantIndex, MethodInfo * method)); +DO_APP_FUNC(0x01F87CB0, HardwareJoystickMap_Platform_SDL2_Base *, HardwareJoystickMap_FindSDL2Map, (HardwareJoystickMap * __this, InputSource__Enum inputSource, bool isDefaultMap, InputPlatform__Enum * actualInputPlatform, int32_t * variantIndex, MethodInfo * method)); DO_APP_FUNC(0x01F87DF0, HardwareJoystickMap_Platform *, HardwareJoystickMap_GetSpecificPlatformMap, (HardwareJoystickMap * __this, HardwareControllerMapIdentifier hardwareMapIdentifier, MethodInfo * method)); DO_APP_FUNC(0x01F87ED0, HardwareJoystickMap_Platform *, HardwareJoystickMap_GetSpecificPlatformRoot, (HardwareJoystickMap * __this, InputPlatform__Enum exactInputPlatform, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF66E0, HardwareJoystickMap_GetSpecificPlatformRoot__MethodInfo); DO_APP_FUNC(0x003CB690, String *, HardwareJoystickMap_Platform_get_controllerNameOverride, (HardwareJoystickMap_Platform * __this, MethodInfo * method)); DO_APP_FUNC(0x01F88270, bool, HardwareJoystickMap_Platform_get_isAllowed, (HardwareJoystickMap_Platform * __this, MethodInfo * method)); DO_APP_FUNC(0x01F882E0, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_ *, HardwareJoystickMap_Platform_get_Variants, (HardwareJoystickMap_Platform * __this, MethodInfo * method)); @@ -46681,7 +54983,7 @@ DO_APP_FUNC(0x01F883C0, int32_t, HardwareJoystickMap_Platform_get_variantCount, DO_APP_FUNC(0x01F88450, bool, HardwareJoystickMap_Platform_get_selfOrVariantHasData, (HardwareJoystickMap_Platform * __this, MethodInfo * method)); DO_APP_FUNC(0x01F885F0, bool, HardwareJoystickMap_Platform_get_selfOrVariantIsValid, (HardwareJoystickMap_Platform * __this, MethodInfo * method)); DO_APP_FUNC(0x01F887E0, bool, HardwareJoystickMap_Platform_get_selfOrVariantIsAllowed, (HardwareJoystickMap_Platform * __this, MethodInfo * method)); -DO_APP_FUNC(0x01F88980, HardwareJoystickMap_Platform *, HardwareJoystickMap_Platform_GetFirstValidPlatformMap, (HardwareJoystickMap_Platform * __this, int32_t variantIndex, MethodInfo * method)); +DO_APP_FUNC(0x01F88980, HardwareJoystickMap_Platform *, HardwareJoystickMap_Platform_GetFirstValidPlatformMap, (HardwareJoystickMap_Platform * __this, int32_t * variantIndex, MethodInfo * method)); DO_APP_FUNC(0x01F88AE0, int32_t, HardwareJoystickMap_Platform_IndexOfElementIdentifier, (HardwareJoystickMap_Platform * __this, ControllerElementIdentifier__Array * elementIdentifiers, int32_t id, MethodInfo * method)); DO_APP_FUNC(0x01F88B40, HardwareJoystickMap_Platform *, HardwareJoystickMap_Platform_GetPlatformMap, (HardwareJoystickMap_Platform * __this, int32_t variantIndex, MethodInfo * method)); DO_APP_FUNC(0x01F88C00, HardwareJoystickMap_InputManager *, HardwareJoystickMap_Platform_ToHardwareJoystickMap_InputManager, (HardwareJoystickMap_Platform * __this, HardwareJoystickMap * hardwareJoystickMap, InputSource__Enum inputSource, InputPlatform__Enum actualInputPlatform, int32_t variantIndex, MethodInfo * method)); @@ -46691,6 +54993,7 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_uVIHEcVmNaHXXWZWmmIRB DO_APP_FUNC(0x01F8AB60, bool, HardwareJoystickMap_Platform_uVIHEcVmNaHXXWZWmmIRBnxBdrHK_MoveNext, (HardwareJoystickMap_Platform_uVIHEcVmNaHXXWZWmmIRBnxBdrHK * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, HardwareJoystickMap_Platform *, HardwareJoystickMap_Platform_uVIHEcVmNaHXXWZWmmIRBnxBdrHK_System_Collections_Generic_IEnumerator_Rewired_Data_Mapping_HardwareJoystickMap_Platform__get_Current, (HardwareJoystickMap_Platform_uVIHEcVmNaHXXWZWmmIRBnxBdrHK * __this, MethodInfo * method)); DO_APP_FUNC(0x01F8ACC0, void, HardwareJoystickMap_Platform_uVIHEcVmNaHXXWZWmmIRBnxBdrHK_System_Collections_IEnumerator_Reset, (HardwareJoystickMap_Platform_uVIHEcVmNaHXXWZWmmIRBnxBdrHK * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9690, HardwareJoystickMap_Platform_uVIHEcVmNaHXXWZWmmIRBnxBdrHK_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, HardwareJoystickMap_Platform_uVIHEcVmNaHXXWZWmmIRBnxBdrHK_System_Collections_IEnumerator_get_Current, (HardwareJoystickMap_Platform_uVIHEcVmNaHXXWZWmmIRBnxBdrHK * __this, MethodInfo * method)); DO_APP_FUNC(0x01F8AD10, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_ *, HardwareJoystickMap_Platform_uVIHEcVmNaHXXWZWmmIRBnxBdrHK_System_Collections_Generic_IEnumerable_Rewired_Data_Mapping_HardwareJoystickMap_Platform__GetEnumerator, (HardwareJoystickMap_Platform_uVIHEcVmNaHXXWZWmmIRBnxBdrHK * __this, MethodInfo * method)); DO_APP_FUNC(0x01F8AD10, IEnumerator *, HardwareJoystickMap_Platform_uVIHEcVmNaHXXWZWmmIRBnxBdrHK_System_Collections_IEnumerable_GetEnumerator, (HardwareJoystickMap_Platform_uVIHEcVmNaHXXWZWmmIRBnxBdrHK * __this, MethodInfo * method)); @@ -46698,7 +55001,7 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Elements_Base_CopyVars, (Hardw DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Elements_Base__ctor, (HardwareJoystickMap_Elements_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x0059DF50, bool, HardwareJoystickMap_MatchingCriteria_Base_get_isAllowed, (HardwareJoystickMap_MatchingCriteria_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x01F8AE50, bool, HardwareJoystickMap_MatchingCriteria_Base_Matches, (HardwareJoystickMap_MatchingCriteria_Base * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, MethodInfo * method)); -DO_APP_FUNC(0x01F8AF90, bool, HardwareJoystickMap_MatchingCriteria_Base_ElementCountsMatch, (HardwareJoystickMap_MatchingCriteria_Base * __this, BridgedControllerHWInfo * bridgedControllerHWInfo, bool alternateMatched, MethodInfo * method)); +DO_APP_FUNC(0x01F8AF90, bool, HardwareJoystickMap_MatchingCriteria_Base_ElementCountsMatch, (HardwareJoystickMap_MatchingCriteria_Base * __this, BridgedControllerHWInfo * bridgedControllerHWInfo, bool * alternateMatched, MethodInfo * method)); DO_APP_FUNC(0x01F8B080, void, HardwareJoystickMap_MatchingCriteria_Base_CopyVars, (HardwareJoystickMap_MatchingCriteria_Base * __this, HardwareJoystickMap_MatchingCriteria_Base * destination, MethodInfo * method)); DO_APP_FUNC(0x01F8B100, bool, HardwareJoystickMap_MatchingCriteria_Base_StringMatches, (String * searchIn, String * searchFor, bool useRegex, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_MatchingCriteria_Base__ctor, (HardwareJoystickMap_MatchingCriteria_Base * __this, MethodInfo * method)); @@ -46728,7 +55031,7 @@ DO_APP_FUNC(0x0059DF50, bool, HardwareJoystickMap_Platform_RawOrDirectInput_Matc DO_APP_FUNC(0x01F8BF90, bool, HardwareJoystickMap_Platform_RawOrDirectInput_MatchingCriteria_Matches, (HardwareJoystickMap_Platform_RawOrDirectInput_MatchingCriteria * __this, BridgedControllerHWInfo * bridgedControllerHWInfo, bool strictMatch, MethodInfo * method)); DO_APP_FUNC(0x01F36850, int32_t, HardwareJoystickMap_Platform_RawOrDirectInput_MatchingCriteria_get_alternateElementCount, (HardwareJoystickMap_Platform_RawOrDirectInput_MatchingCriteria * __this, MethodInfo * method)); DO_APP_FUNC(0x01F8C190, HardwareJoystickMap_MatchingCriteria_Base_ElementCount_Base *, HardwareJoystickMap_Platform_RawOrDirectInput_MatchingCriteria_GetAlternateElementCount, (HardwareJoystickMap_Platform_RawOrDirectInput_MatchingCriteria * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01F8C1D0, bool, HardwareJoystickMap_Platform_RawOrDirectInput_MatchingCriteria_ElementCountsMatch, (HardwareJoystickMap_Platform_RawOrDirectInput_MatchingCriteria * __this, BridgedControllerHWInfo * bridgedControllerHWInfo, bool alternateMatched, MethodInfo * method)); +DO_APP_FUNC(0x01F8C1D0, bool, HardwareJoystickMap_Platform_RawOrDirectInput_MatchingCriteria_ElementCountsMatch, (HardwareJoystickMap_Platform_RawOrDirectInput_MatchingCriteria * __this, BridgedControllerHWInfo * bridgedControllerHWInfo, bool * alternateMatched, MethodInfo * method)); DO_APP_FUNC(0x01F8C250, bool, HardwareJoystickMap_Platform_RawOrDirectInput_MatchingCriteria_ProductNameMatches, (HardwareJoystickMap_Platform_RawOrDirectInput_MatchingCriteria * __this, BridgedControllerHWInfo * controller, MethodInfo * method)); DO_APP_FUNC(0x01F8C2E0, bool, HardwareJoystickMap_Platform_RawOrDirectInput_MatchingCriteria_ProductNameMatches_1, (HardwareJoystickMap_Platform_RawOrDirectInput_MatchingCriteria * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x01F8C440, Object *, HardwareJoystickMap_Platform_RawOrDirectInput_MatchingCriteria_DeepClone, (HardwareJoystickMap_Platform_RawOrDirectInput_MatchingCriteria * __this, MethodInfo * method)); @@ -46753,16 +55056,18 @@ DO_APP_FUNC(0x01F8CDD0, HardwareJoystickMap_Platform_DirectInput_Base_Button__Ar DO_APP_FUNC(0x003CB690, IList_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_ *, HardwareJoystickMap_Platform_DirectInput_Base_get_variants_base, (HardwareJoystickMap_Platform_DirectInput_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x01F8CDF0, int32_t, HardwareJoystickMap_Platform_DirectInput_Base_get_assignedButtonCount, (HardwareJoystickMap_Platform_DirectInput_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x01F8CE20, int32_t, HardwareJoystickMap_Platform_DirectInput_Base_get_assignedAxisCount, (HardwareJoystickMap_Platform_DirectInput_Base * __this, MethodInfo * method)); -DO_APP_FUNC(0x01F8CE50, bool, HardwareJoystickMap_Platform_DirectInput_Base_Matches, (HardwareJoystickMap_Platform_DirectInput_Base * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t variantIndex, HardwareJoystickMap_Platform * platformMap, MethodInfo * method)); +DO_APP_FUNC(0x01F8CE50, bool, HardwareJoystickMap_Platform_DirectInput_Base_Matches, (HardwareJoystickMap_Platform_DirectInput_Base * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t * variantIndex, HardwareJoystickMap_Platform * * platformMap, MethodInfo * method)); DO_APP_FUNC(0x01F8CF60, String__Array *, HardwareJoystickMap_Platform_DirectInput_Base_GetAxisNames, (HardwareJoystickMap_Platform_DirectInput_Base * __this, ControllerElementIdentifier__Array * identifiers, MethodInfo * method)); DO_APP_FUNC(0x01F8D170, String__Array *, HardwareJoystickMap_Platform_DirectInput_Base_GetEffectiveButtonNames, (HardwareJoystickMap_Platform_DirectInput_Base * __this, ControllerElementIdentifier__Array * identifiers, MethodInfo * method)); DO_APP_FUNC(0x01F8D360, bool, HardwareJoystickMap_Platform_DirectInput_Base_IsElementIdentifierMapped, (HardwareJoystickMap_Platform_DirectInput_Base * __this, int32_t elementIdentifierId, MethodInfo * method)); -DO_APP_FUNC(0x01F8D6B0, void, HardwareJoystickMap_Platform_DirectInput_Base_GetGameElementIdentifierIdMappings, (HardwareJoystickMap_Platform_DirectInput_Base * __this, Int32__Array * buttons, Int32__Array * axes, MethodInfo * method)); +DO_APP_FUNC(0x01F8D6B0, void, HardwareJoystickMap_Platform_DirectInput_Base_GetGameElementIdentifierIdMappings, (HardwareJoystickMap_Platform_DirectInput_Base * __this, Int32__Array * * buttons, Int32__Array * * axes, MethodInfo * method)); DO_APP_FUNC(0x01F8DC80, AxisCalibrationData__Array *, HardwareJoystickMap_Platform_DirectInput_Base_GetAxisCalibrationData, (HardwareJoystickMap_Platform_DirectInput_Base * __this, MethodInfo * method)); -DO_APP_FUNC(0x01F8E010, void, HardwareJoystickMap_Platform_DirectInput_Base_GetAxisData, (HardwareJoystickMap_Platform_DirectInput_Base * __this, AxisRange__Enum__Array * axisRanges, HardwareAxisInfo__Array * axisInfos, MethodInfo * method)); -DO_APP_FUNC(0x01F8E450, void, HardwareJoystickMap_Platform_DirectInput_Base_GetButtonData, (HardwareJoystickMap_Platform_DirectInput_Base * __this, HardwareButtonInfo__Array * buttonInfos, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9438, HardwareJoystickMap_Platform_DirectInput_Base_GetAxisCalibrationData__MethodInfo); +DO_APP_FUNC(0x01F8E010, void, HardwareJoystickMap_Platform_DirectInput_Base_GetAxisData, (HardwareJoystickMap_Platform_DirectInput_Base * __this, AxisRange__Enum__Array * * axisRanges, HardwareAxisInfo__Array * * axisInfos, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9420, HardwareJoystickMap_Platform_DirectInput_Base_GetAxisData__MethodInfo); +DO_APP_FUNC(0x01F8E450, void, HardwareJoystickMap_Platform_DirectInput_Base_GetButtonData, (HardwareJoystickMap_Platform_DirectInput_Base * __this, HardwareButtonInfo__Array * * buttonInfos, MethodInfo * method)); DO_APP_FUNC(0x01F8E6C0, ControllerElementType__Enum, HardwareJoystickMap_Platform_DirectInput_Base_GetEffectiveElementIdentifierType, (HardwareJoystickMap_Platform_DirectInput_Base * __this, ControllerElementIdentifier * elementIdentifier, MethodInfo * method)); -DO_APP_FUNC(0x01F8E6F0, bool, HardwareJoystickMap_Platform_DirectInput_Base_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_DirectInput_Base * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum axisRange, MethodInfo * method)); +DO_APP_FUNC(0x01F8E6F0, bool, HardwareJoystickMap_Platform_DirectInput_Base_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_DirectInput_Base * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum * axisRange, MethodInfo * method)); DO_APP_FUNC(0x01F8E720, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_RawOrDirectInput_Axis_Base_ *, HardwareJoystickMap_Platform_DirectInput_Base_IterateAxes, (HardwareJoystickMap_Platform_DirectInput_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x01F8E7E0, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_RawOrDirectInput_Button_Base_ *, HardwareJoystickMap_Platform_DirectInput_Base_IterateButtons, (HardwareJoystickMap_Platform_DirectInput_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, HardwareJoystickMap_Elements_Base *, HardwareJoystickMap_Platform_DirectInput_Base_get_elements_base, (HardwareJoystickMap_Platform_DirectInput_Base * __this, MethodInfo * method)); @@ -46775,7 +55080,8 @@ DO_APP_FUNC(0x01F8EA30, HardwareJoystickMap_Platform_RawOrDirectInput_Axis_Base DO_APP_FUNC(0x01F8EA70, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_RawOrDirectInput_Axis_Base_ *, HardwareJoystickMap_Platform_DirectInput_Base_Elements_get_Axes, (HardwareJoystickMap_Platform_DirectInput_Base_Elements * __this, MethodInfo * method)); DO_APP_FUNC(0x01F8EB30, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_RawOrDirectInput_Button_Base_ *, HardwareJoystickMap_Platform_DirectInput_Base_Elements_get_Buttons, (HardwareJoystickMap_Platform_DirectInput_Base_Elements * __this, MethodInfo * method)); DO_APP_FUNC(0x01F8EBF0, ControllerElementType__Enum, HardwareJoystickMap_Platform_DirectInput_Base_Elements_GetEffectiveElementIdentifierType, (HardwareJoystickMap_Platform_DirectInput_Base_Elements * __this, ControllerElementIdentifier * elementIdentifier, MethodInfo * method)); -DO_APP_FUNC(0x01F8ED20, bool, HardwareJoystickMap_Platform_DirectInput_Base_Elements_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_DirectInput_Base_Elements * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum axisRange, MethodInfo * method)); +DO_APP_FUNC(0x01F8ED20, bool, HardwareJoystickMap_Platform_DirectInput_Base_Elements_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_DirectInput_Base_Elements * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum * axisRange, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9468, HardwareJoystickMap_Platform_DirectInput_Base_Elements_GetEffectiveAxisRange__MethodInfo); DO_APP_FUNC(0x01F8EFA0, Object *, HardwareJoystickMap_Platform_DirectInput_Base_Elements_DeepClone, (HardwareJoystickMap_Platform_DirectInput_Base_Elements * __this, MethodInfo * method)); DO_APP_FUNC(0x01F8F010, void, HardwareJoystickMap_Platform_DirectInput_Base_Elements_CopyVars, (HardwareJoystickMap_Platform_DirectInput_Base_Elements * __this, HardwareJoystickMap_Elements_Base * destination, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_DirectInput_Base_Elements__ctor, (HardwareJoystickMap_Platform_DirectInput_Base_Elements * __this, MethodInfo * method)); @@ -46784,6 +55090,7 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_DirectInput_Base_Elem DO_APP_FUNC(0x01F8F170, bool, HardwareJoystickMap_Platform_DirectInput_Base_Elements_fguVjlKCDFAYwGjCNJpIDkReBVrV_MoveNext, (HardwareJoystickMap_Platform_DirectInput_Base_Elements_fguVjlKCDFAYwGjCNJpIDkReBVrV * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, HardwareJoystickMap_Platform_RawOrDirectInput_Axis_Base *, HardwareJoystickMap_Platform_DirectInput_Base_Elements_fguVjlKCDFAYwGjCNJpIDkReBVrV_System_Collections_Generic_IEnumerator_Rewired_Data_Mapping_HardwareJoystickMap_Platform_RawOrDirectInput_Axis_Base__get_Current, (HardwareJoystickMap_Platform_DirectInput_Base_Elements_fguVjlKCDFAYwGjCNJpIDkReBVrV * __this, MethodInfo * method)); DO_APP_FUNC(0x01F8F260, void, HardwareJoystickMap_Platform_DirectInput_Base_Elements_fguVjlKCDFAYwGjCNJpIDkReBVrV_System_Collections_IEnumerator_Reset, (HardwareJoystickMap_Platform_DirectInput_Base_Elements_fguVjlKCDFAYwGjCNJpIDkReBVrV * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9370, HardwareJoystickMap_Platform_DirectInput_Base_Elements_fguVjlKCDFAYwGjCNJpIDkReBVrV_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, HardwareJoystickMap_Platform_DirectInput_Base_Elements_fguVjlKCDFAYwGjCNJpIDkReBVrV_System_Collections_IEnumerator_get_Current, (HardwareJoystickMap_Platform_DirectInput_Base_Elements_fguVjlKCDFAYwGjCNJpIDkReBVrV * __this, MethodInfo * method)); DO_APP_FUNC(0x01F8F2B0, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_RawOrDirectInput_Axis_Base_ *, HardwareJoystickMap_Platform_DirectInput_Base_Elements_fguVjlKCDFAYwGjCNJpIDkReBVrV_System_Collections_Generic_IEnumerable_Rewired_Data_Mapping_HardwareJoystickMap_Platform_RawOrDirectInput_Axis_Base__GetEnumerator, (HardwareJoystickMap_Platform_DirectInput_Base_Elements_fguVjlKCDFAYwGjCNJpIDkReBVrV * __this, MethodInfo * method)); DO_APP_FUNC(0x01F8F2B0, IEnumerator *, HardwareJoystickMap_Platform_DirectInput_Base_Elements_fguVjlKCDFAYwGjCNJpIDkReBVrV_System_Collections_IEnumerable_GetEnumerator, (HardwareJoystickMap_Platform_DirectInput_Base_Elements_fguVjlKCDFAYwGjCNJpIDkReBVrV * __this, MethodInfo * method)); @@ -46792,6 +55099,7 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_DirectInput_Base_Elem DO_APP_FUNC(0x01F8F3F0, bool, HardwareJoystickMap_Platform_DirectInput_Base_Elements_mPWpHICgkfHUNcRKXgyGjcJCChSAb_MoveNext, (HardwareJoystickMap_Platform_DirectInput_Base_Elements_mPWpHICgkfHUNcRKXgyGjcJCChSAb * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, HardwareJoystickMap_Platform_RawOrDirectInput_Button_Base *, HardwareJoystickMap_Platform_DirectInput_Base_Elements_mPWpHICgkfHUNcRKXgyGjcJCChSAb_System_Collections_Generic_IEnumerator_Rewired_Data_Mapping_HardwareJoystickMap_Platform_RawOrDirectInput_Button_Base__get_Current, (HardwareJoystickMap_Platform_DirectInput_Base_Elements_mPWpHICgkfHUNcRKXgyGjcJCChSAb * __this, MethodInfo * method)); DO_APP_FUNC(0x01F8F4E0, void, HardwareJoystickMap_Platform_DirectInput_Base_Elements_mPWpHICgkfHUNcRKXgyGjcJCChSAb_System_Collections_IEnumerator_Reset, (HardwareJoystickMap_Platform_DirectInput_Base_Elements_mPWpHICgkfHUNcRKXgyGjcJCChSAb * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9340, HardwareJoystickMap_Platform_DirectInput_Base_Elements_mPWpHICgkfHUNcRKXgyGjcJCChSAb_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, HardwareJoystickMap_Platform_DirectInput_Base_Elements_mPWpHICgkfHUNcRKXgyGjcJCChSAb_System_Collections_IEnumerator_get_Current, (HardwareJoystickMap_Platform_DirectInput_Base_Elements_mPWpHICgkfHUNcRKXgyGjcJCChSAb * __this, MethodInfo * method)); DO_APP_FUNC(0x01F8F530, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_RawOrDirectInput_Button_Base_ *, HardwareJoystickMap_Platform_DirectInput_Base_Elements_mPWpHICgkfHUNcRKXgyGjcJCChSAb_System_Collections_Generic_IEnumerable_Rewired_Data_Mapping_HardwareJoystickMap_Platform_RawOrDirectInput_Button_Base__GetEnumerator, (HardwareJoystickMap_Platform_DirectInput_Base_Elements_mPWpHICgkfHUNcRKXgyGjcJCChSAb * __this, MethodInfo * method)); DO_APP_FUNC(0x01F8F530, IEnumerator *, HardwareJoystickMap_Platform_DirectInput_Base_Elements_mPWpHICgkfHUNcRKXgyGjcJCChSAb_System_Collections_IEnumerable_GetEnumerator, (HardwareJoystickMap_Platform_DirectInput_Base_Elements_mPWpHICgkfHUNcRKXgyGjcJCChSAb * __this, MethodInfo * method)); @@ -46806,6 +55114,7 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_DirectInput_Base_wDOn DO_APP_FUNC(0x01F8F770, bool, HardwareJoystickMap_Platform_DirectInput_Base_wDOniiBAtjPGjBKlQBKUAGMHpPHZA_MoveNext, (HardwareJoystickMap_Platform_DirectInput_Base_wDOniiBAtjPGjBKlQBKUAGMHpPHZA * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, HardwareJoystickMap_Platform_RawOrDirectInput_Axis_Base *, HardwareJoystickMap_Platform_DirectInput_Base_wDOniiBAtjPGjBKlQBKUAGMHpPHZA_System_Collections_Generic_IEnumerator_Rewired_Data_Mapping_HardwareJoystickMap_Platform_RawOrDirectInput_Axis_Base__get_Current, (HardwareJoystickMap_Platform_DirectInput_Base_wDOniiBAtjPGjBKlQBKUAGMHpPHZA * __this, MethodInfo * method)); DO_APP_FUNC(0x01F8F880, void, HardwareJoystickMap_Platform_DirectInput_Base_wDOniiBAtjPGjBKlQBKUAGMHpPHZA_System_Collections_IEnumerator_Reset, (HardwareJoystickMap_Platform_DirectInput_Base_wDOniiBAtjPGjBKlQBKUAGMHpPHZA * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9328, HardwareJoystickMap_Platform_DirectInput_Base_wDOniiBAtjPGjBKlQBKUAGMHpPHZA_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, HardwareJoystickMap_Platform_DirectInput_Base_wDOniiBAtjPGjBKlQBKUAGMHpPHZA_System_Collections_IEnumerator_get_Current, (HardwareJoystickMap_Platform_DirectInput_Base_wDOniiBAtjPGjBKlQBKUAGMHpPHZA * __this, MethodInfo * method)); DO_APP_FUNC(0x01F8F8D0, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_RawOrDirectInput_Axis_Base_ *, HardwareJoystickMap_Platform_DirectInput_Base_wDOniiBAtjPGjBKlQBKUAGMHpPHZA_System_Collections_Generic_IEnumerable_Rewired_Data_Mapping_HardwareJoystickMap_Platform_RawOrDirectInput_Axis_Base__GetEnumerator, (HardwareJoystickMap_Platform_DirectInput_Base_wDOniiBAtjPGjBKlQBKUAGMHpPHZA * __this, MethodInfo * method)); DO_APP_FUNC(0x01F8F8D0, IEnumerator *, HardwareJoystickMap_Platform_DirectInput_Base_wDOniiBAtjPGjBKlQBKUAGMHpPHZA_System_Collections_IEnumerable_GetEnumerator, (HardwareJoystickMap_Platform_DirectInput_Base_wDOniiBAtjPGjBKlQBKUAGMHpPHZA * __this, MethodInfo * method)); @@ -46814,11 +55123,12 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_DirectInput_Base_MpEg DO_APP_FUNC(0x01F8FA10, bool, HardwareJoystickMap_Platform_DirectInput_Base_MpEgptaFPDIarSlVfcxBBeLItFvfc_MoveNext, (HardwareJoystickMap_Platform_DirectInput_Base_MpEgptaFPDIarSlVfcxBBeLItFvfc * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, HardwareJoystickMap_Platform_RawOrDirectInput_Button_Base *, HardwareJoystickMap_Platform_DirectInput_Base_MpEgptaFPDIarSlVfcxBBeLItFvfc_System_Collections_Generic_IEnumerator_Rewired_Data_Mapping_HardwareJoystickMap_Platform_RawOrDirectInput_Button_Base__get_Current, (HardwareJoystickMap_Platform_DirectInput_Base_MpEgptaFPDIarSlVfcxBBeLItFvfc * __this, MethodInfo * method)); DO_APP_FUNC(0x01F8FB20, void, HardwareJoystickMap_Platform_DirectInput_Base_MpEgptaFPDIarSlVfcxBBeLItFvfc_System_Collections_IEnumerator_Reset, (HardwareJoystickMap_Platform_DirectInput_Base_MpEgptaFPDIarSlVfcxBBeLItFvfc * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF93D8, HardwareJoystickMap_Platform_DirectInput_Base_MpEgptaFPDIarSlVfcxBBeLItFvfc_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, HardwareJoystickMap_Platform_DirectInput_Base_MpEgptaFPDIarSlVfcxBBeLItFvfc_System_Collections_IEnumerator_get_Current, (HardwareJoystickMap_Platform_DirectInput_Base_MpEgptaFPDIarSlVfcxBBeLItFvfc * __this, MethodInfo * method)); DO_APP_FUNC(0x01F8FB70, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_RawOrDirectInput_Button_Base_ *, HardwareJoystickMap_Platform_DirectInput_Base_MpEgptaFPDIarSlVfcxBBeLItFvfc_System_Collections_Generic_IEnumerable_Rewired_Data_Mapping_HardwareJoystickMap_Platform_RawOrDirectInput_Button_Base__GetEnumerator, (HardwareJoystickMap_Platform_DirectInput_Base_MpEgptaFPDIarSlVfcxBBeLItFvfc * __this, MethodInfo * method)); DO_APP_FUNC(0x01F8FB70, IEnumerator *, HardwareJoystickMap_Platform_DirectInput_Base_MpEgptaFPDIarSlVfcxBBeLItFvfc_System_Collections_IEnumerable_GetEnumerator, (HardwareJoystickMap_Platform_DirectInput_Base_MpEgptaFPDIarSlVfcxBBeLItFvfc * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3B0, IList_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_ *, HardwareJoystickMap_Platform_DirectInput_get_variants_base, (HardwareJoystickMap_Platform_DirectInput * __this, MethodInfo * method)); -DO_APP_FUNC(0x01F8FCB0, bool, HardwareJoystickMap_Platform_DirectInput_Matches, (HardwareJoystickMap_Platform_DirectInput * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t variantIndex, HardwareJoystickMap_Platform * platformMap, MethodInfo * method)); +DO_APP_FUNC(0x01F8FCB0, bool, HardwareJoystickMap_Platform_DirectInput_Matches, (HardwareJoystickMap_Platform_DirectInput * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t * variantIndex, HardwareJoystickMap_Platform * * platformMap, MethodInfo * method)); DO_APP_FUNC(0x01F8FE60, Object *, HardwareJoystickMap_Platform_DirectInput_DeepClone, (HardwareJoystickMap_Platform_DirectInput * __this, MethodInfo * method)); DO_APP_FUNC(0x01F8FED0, void, HardwareJoystickMap_Platform_DirectInput_CopyVars, (HardwareJoystickMap_Platform_DirectInput * __this, HardwareJoystickMap_Platform * destination, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_DirectInput__ctor, (HardwareJoystickMap_Platform_DirectInput * __this, MethodInfo * method)); @@ -46828,16 +55138,18 @@ DO_APP_FUNC(0x01F8CDD0, HardwareJoystickMap_Platform_RawInput_Base_Button__Array DO_APP_FUNC(0x003CB690, IList_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_ *, HardwareJoystickMap_Platform_RawInput_Base_get_variants_base, (HardwareJoystickMap_Platform_RawInput_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x01F8CDF0, int32_t, HardwareJoystickMap_Platform_RawInput_Base_get_assignedButtonCount, (HardwareJoystickMap_Platform_RawInput_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x01F8CE20, int32_t, HardwareJoystickMap_Platform_RawInput_Base_get_assignedAxisCount, (HardwareJoystickMap_Platform_RawInput_Base * __this, MethodInfo * method)); -DO_APP_FUNC(0x01F8CE50, bool, HardwareJoystickMap_Platform_RawInput_Base_Matches, (HardwareJoystickMap_Platform_RawInput_Base * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t variantIndex, HardwareJoystickMap_Platform * platformMap, MethodInfo * method)); +DO_APP_FUNC(0x01F8CE50, bool, HardwareJoystickMap_Platform_RawInput_Base_Matches, (HardwareJoystickMap_Platform_RawInput_Base * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t * variantIndex, HardwareJoystickMap_Platform * * platformMap, MethodInfo * method)); DO_APP_FUNC(0x01F900F0, String__Array *, HardwareJoystickMap_Platform_RawInput_Base_GetAxisNames, (HardwareJoystickMap_Platform_RawInput_Base * __this, ControllerElementIdentifier__Array * identifiers, MethodInfo * method)); DO_APP_FUNC(0x01F90300, String__Array *, HardwareJoystickMap_Platform_RawInput_Base_GetEffectiveButtonNames, (HardwareJoystickMap_Platform_RawInput_Base * __this, ControllerElementIdentifier__Array * identifiers, MethodInfo * method)); DO_APP_FUNC(0x01F904F0, bool, HardwareJoystickMap_Platform_RawInput_Base_IsElementIdentifierMapped, (HardwareJoystickMap_Platform_RawInput_Base * __this, int32_t elementIdentifierId, MethodInfo * method)); -DO_APP_FUNC(0x01F90840, void, HardwareJoystickMap_Platform_RawInput_Base_GetGameElementIdentifierIdMappings, (HardwareJoystickMap_Platform_RawInput_Base * __this, Int32__Array * buttons, Int32__Array * axes, MethodInfo * method)); +DO_APP_FUNC(0x01F90840, void, HardwareJoystickMap_Platform_RawInput_Base_GetGameElementIdentifierIdMappings, (HardwareJoystickMap_Platform_RawInput_Base * __this, Int32__Array * * buttons, Int32__Array * * axes, MethodInfo * method)); DO_APP_FUNC(0x01F90E10, AxisCalibrationData__Array *, HardwareJoystickMap_Platform_RawInput_Base_GetAxisCalibrationData, (HardwareJoystickMap_Platform_RawInput_Base * __this, MethodInfo * method)); -DO_APP_FUNC(0x01F911A0, void, HardwareJoystickMap_Platform_RawInput_Base_GetAxisData, (HardwareJoystickMap_Platform_RawInput_Base * __this, AxisRange__Enum__Array * axisRanges, HardwareAxisInfo__Array * axisInfos, MethodInfo * method)); -DO_APP_FUNC(0x01F915E0, void, HardwareJoystickMap_Platform_RawInput_Base_GetButtonData, (HardwareJoystickMap_Platform_RawInput_Base * __this, HardwareButtonInfo__Array * buttonInfos, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF92A0, HardwareJoystickMap_Platform_RawInput_Base_GetAxisCalibrationData__MethodInfo); +DO_APP_FUNC(0x01F911A0, void, HardwareJoystickMap_Platform_RawInput_Base_GetAxisData, (HardwareJoystickMap_Platform_RawInput_Base * __this, AxisRange__Enum__Array * * axisRanges, HardwareAxisInfo__Array * * axisInfos, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9290, HardwareJoystickMap_Platform_RawInput_Base_GetAxisData__MethodInfo); +DO_APP_FUNC(0x01F915E0, void, HardwareJoystickMap_Platform_RawInput_Base_GetButtonData, (HardwareJoystickMap_Platform_RawInput_Base * __this, HardwareButtonInfo__Array * * buttonInfos, MethodInfo * method)); DO_APP_FUNC(0x01F8E6C0, ControllerElementType__Enum, HardwareJoystickMap_Platform_RawInput_Base_GetEffectiveElementIdentifierType, (HardwareJoystickMap_Platform_RawInput_Base * __this, ControllerElementIdentifier * elementIdentifier, MethodInfo * method)); -DO_APP_FUNC(0x01F8E6F0, bool, HardwareJoystickMap_Platform_RawInput_Base_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_RawInput_Base * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum axisRange, MethodInfo * method)); +DO_APP_FUNC(0x01F8E6F0, bool, HardwareJoystickMap_Platform_RawInput_Base_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_RawInput_Base * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum * axisRange, MethodInfo * method)); DO_APP_FUNC(0x01F91850, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_RawOrDirectInput_Axis_Base_ *, HardwareJoystickMap_Platform_RawInput_Base_IterateAxes, (HardwareJoystickMap_Platform_RawInput_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x01F91910, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_RawOrDirectInput_Button_Base_ *, HardwareJoystickMap_Platform_RawInput_Base_IterateButtons, (HardwareJoystickMap_Platform_RawInput_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, HardwareJoystickMap_Elements_Base *, HardwareJoystickMap_Platform_RawInput_Base_get_elements_base, (HardwareJoystickMap_Platform_RawInput_Base * __this, MethodInfo * method)); @@ -46850,7 +55162,8 @@ DO_APP_FUNC(0x01F8EA30, HardwareJoystickMap_Platform_RawOrDirectInput_Axis_Base DO_APP_FUNC(0x01F91B60, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_RawOrDirectInput_Axis_Base_ *, HardwareJoystickMap_Platform_RawInput_Base_Elements_get_Axes, (HardwareJoystickMap_Platform_RawInput_Base_Elements * __this, MethodInfo * method)); DO_APP_FUNC(0x01F91C20, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_RawOrDirectInput_Button_Base_ *, HardwareJoystickMap_Platform_RawInput_Base_Elements_get_Buttons, (HardwareJoystickMap_Platform_RawInput_Base_Elements * __this, MethodInfo * method)); DO_APP_FUNC(0x01F8EBF0, ControllerElementType__Enum, HardwareJoystickMap_Platform_RawInput_Base_Elements_GetEffectiveElementIdentifierType, (HardwareJoystickMap_Platform_RawInput_Base_Elements * __this, ControllerElementIdentifier * elementIdentifier, MethodInfo * method)); -DO_APP_FUNC(0x01F91CE0, bool, HardwareJoystickMap_Platform_RawInput_Base_Elements_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_RawInput_Base_Elements * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum axisRange, MethodInfo * method)); +DO_APP_FUNC(0x01F91CE0, bool, HardwareJoystickMap_Platform_RawInput_Base_Elements_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_RawInput_Base_Elements * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum * axisRange, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF92C8, HardwareJoystickMap_Platform_RawInput_Base_Elements_GetEffectiveAxisRange__MethodInfo); DO_APP_FUNC(0x01F91F70, Object *, HardwareJoystickMap_Platform_RawInput_Base_Elements_DeepClone, (HardwareJoystickMap_Platform_RawInput_Base_Elements * __this, MethodInfo * method)); DO_APP_FUNC(0x01F91FE0, void, HardwareJoystickMap_Platform_RawInput_Base_Elements_CopyVars, (HardwareJoystickMap_Platform_RawInput_Base_Elements * __this, HardwareJoystickMap_Elements_Base * destination, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_RawInput_Base_Elements__ctor, (HardwareJoystickMap_Platform_RawInput_Base_Elements * __this, MethodInfo * method)); @@ -46859,6 +55172,7 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_RawInput_Base_Element DO_APP_FUNC(0x01F8F170, bool, HardwareJoystickMap_Platform_RawInput_Base_Elements_EGlqeDUNCvcIFDcbiXpNIlynVMOx_MoveNext, (HardwareJoystickMap_Platform_RawInput_Base_Elements_EGlqeDUNCvcIFDcbiXpNIlynVMOx * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, HardwareJoystickMap_Platform_RawOrDirectInput_Axis_Base *, HardwareJoystickMap_Platform_RawInput_Base_Elements_EGlqeDUNCvcIFDcbiXpNIlynVMOx_System_Collections_Generic_IEnumerator_Rewired_Data_Mapping_HardwareJoystickMap_Platform_RawOrDirectInput_Axis_Base__get_Current, (HardwareJoystickMap_Platform_RawInput_Base_Elements_EGlqeDUNCvcIFDcbiXpNIlynVMOx * __this, MethodInfo * method)); DO_APP_FUNC(0x01F92140, void, HardwareJoystickMap_Platform_RawInput_Base_Elements_EGlqeDUNCvcIFDcbiXpNIlynVMOx_System_Collections_IEnumerator_Reset, (HardwareJoystickMap_Platform_RawInput_Base_Elements_EGlqeDUNCvcIFDcbiXpNIlynVMOx * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF91F0, HardwareJoystickMap_Platform_RawInput_Base_Elements_EGlqeDUNCvcIFDcbiXpNIlynVMOx_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, HardwareJoystickMap_Platform_RawInput_Base_Elements_EGlqeDUNCvcIFDcbiXpNIlynVMOx_System_Collections_IEnumerator_get_Current, (HardwareJoystickMap_Platform_RawInput_Base_Elements_EGlqeDUNCvcIFDcbiXpNIlynVMOx * __this, MethodInfo * method)); DO_APP_FUNC(0x01F92190, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_RawOrDirectInput_Axis_Base_ *, HardwareJoystickMap_Platform_RawInput_Base_Elements_EGlqeDUNCvcIFDcbiXpNIlynVMOx_System_Collections_Generic_IEnumerable_Rewired_Data_Mapping_HardwareJoystickMap_Platform_RawOrDirectInput_Axis_Base__GetEnumerator, (HardwareJoystickMap_Platform_RawInput_Base_Elements_EGlqeDUNCvcIFDcbiXpNIlynVMOx * __this, MethodInfo * method)); DO_APP_FUNC(0x01F92190, IEnumerator *, HardwareJoystickMap_Platform_RawInput_Base_Elements_EGlqeDUNCvcIFDcbiXpNIlynVMOx_System_Collections_IEnumerable_GetEnumerator, (HardwareJoystickMap_Platform_RawInput_Base_Elements_EGlqeDUNCvcIFDcbiXpNIlynVMOx * __this, MethodInfo * method)); @@ -46867,6 +55181,7 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_RawInput_Base_Element DO_APP_FUNC(0x01F8F3F0, bool, HardwareJoystickMap_Platform_RawInput_Base_Elements_zjPsrexbKeWDnypDahdFVlDMriZO_MoveNext, (HardwareJoystickMap_Platform_RawInput_Base_Elements_zjPsrexbKeWDnypDahdFVlDMriZO * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, HardwareJoystickMap_Platform_RawOrDirectInput_Button_Base *, HardwareJoystickMap_Platform_RawInput_Base_Elements_zjPsrexbKeWDnypDahdFVlDMriZO_System_Collections_Generic_IEnumerator_Rewired_Data_Mapping_HardwareJoystickMap_Platform_RawOrDirectInput_Button_Base__get_Current, (HardwareJoystickMap_Platform_RawInput_Base_Elements_zjPsrexbKeWDnypDahdFVlDMriZO * __this, MethodInfo * method)); DO_APP_FUNC(0x01F922D0, void, HardwareJoystickMap_Platform_RawInput_Base_Elements_zjPsrexbKeWDnypDahdFVlDMriZO_System_Collections_IEnumerator_Reset, (HardwareJoystickMap_Platform_RawInput_Base_Elements_zjPsrexbKeWDnypDahdFVlDMriZO * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF91E8, HardwareJoystickMap_Platform_RawInput_Base_Elements_zjPsrexbKeWDnypDahdFVlDMriZO_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, HardwareJoystickMap_Platform_RawInput_Base_Elements_zjPsrexbKeWDnypDahdFVlDMriZO_System_Collections_IEnumerator_get_Current, (HardwareJoystickMap_Platform_RawInput_Base_Elements_zjPsrexbKeWDnypDahdFVlDMriZO * __this, MethodInfo * method)); DO_APP_FUNC(0x01F92320, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_RawOrDirectInput_Button_Base_ *, HardwareJoystickMap_Platform_RawInput_Base_Elements_zjPsrexbKeWDnypDahdFVlDMriZO_System_Collections_Generic_IEnumerable_Rewired_Data_Mapping_HardwareJoystickMap_Platform_RawOrDirectInput_Button_Base__GetEnumerator, (HardwareJoystickMap_Platform_RawInput_Base_Elements_zjPsrexbKeWDnypDahdFVlDMriZO * __this, MethodInfo * method)); DO_APP_FUNC(0x01F92320, IEnumerator *, HardwareJoystickMap_Platform_RawInput_Base_Elements_zjPsrexbKeWDnypDahdFVlDMriZO_System_Collections_IEnumerable_GetEnumerator, (HardwareJoystickMap_Platform_RawInput_Base_Elements_zjPsrexbKeWDnypDahdFVlDMriZO * __this, MethodInfo * method)); @@ -46881,6 +55196,7 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_RawInput_Base_JtPAMlo DO_APP_FUNC(0x01F8F770, bool, HardwareJoystickMap_Platform_RawInput_Base_JtPAMlonTuwbMJWKEntQUNHRDWKs_MoveNext, (HardwareJoystickMap_Platform_RawInput_Base_JtPAMlonTuwbMJWKEntQUNHRDWKs * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, HardwareJoystickMap_Platform_RawOrDirectInput_Axis_Base *, HardwareJoystickMap_Platform_RawInput_Base_JtPAMlonTuwbMJWKEntQUNHRDWKs_System_Collections_Generic_IEnumerator_Rewired_Data_Mapping_HardwareJoystickMap_Platform_RawOrDirectInput_Axis_Base__get_Current, (HardwareJoystickMap_Platform_RawInput_Base_JtPAMlonTuwbMJWKEntQUNHRDWKs * __this, MethodInfo * method)); DO_APP_FUNC(0x01F925E0, void, HardwareJoystickMap_Platform_RawInput_Base_JtPAMlonTuwbMJWKEntQUNHRDWKs_System_Collections_IEnumerator_Reset, (HardwareJoystickMap_Platform_RawInput_Base_JtPAMlonTuwbMJWKEntQUNHRDWKs * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF91A8, HardwareJoystickMap_Platform_RawInput_Base_JtPAMlonTuwbMJWKEntQUNHRDWKs_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, HardwareJoystickMap_Platform_RawInput_Base_JtPAMlonTuwbMJWKEntQUNHRDWKs_System_Collections_IEnumerator_get_Current, (HardwareJoystickMap_Platform_RawInput_Base_JtPAMlonTuwbMJWKEntQUNHRDWKs * __this, MethodInfo * method)); DO_APP_FUNC(0x01F92630, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_RawOrDirectInput_Axis_Base_ *, HardwareJoystickMap_Platform_RawInput_Base_JtPAMlonTuwbMJWKEntQUNHRDWKs_System_Collections_Generic_IEnumerable_Rewired_Data_Mapping_HardwareJoystickMap_Platform_RawOrDirectInput_Axis_Base__GetEnumerator, (HardwareJoystickMap_Platform_RawInput_Base_JtPAMlonTuwbMJWKEntQUNHRDWKs * __this, MethodInfo * method)); DO_APP_FUNC(0x01F92630, IEnumerator *, HardwareJoystickMap_Platform_RawInput_Base_JtPAMlonTuwbMJWKEntQUNHRDWKs_System_Collections_IEnumerable_GetEnumerator, (HardwareJoystickMap_Platform_RawInput_Base_JtPAMlonTuwbMJWKEntQUNHRDWKs * __this, MethodInfo * method)); @@ -46889,11 +55205,12 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_RawInput_Base_ljdryev DO_APP_FUNC(0x01F8FA10, bool, HardwareJoystickMap_Platform_RawInput_Base_ljdryevnLqfpEquFKfZpOdAXfsqC_MoveNext, (HardwareJoystickMap_Platform_RawInput_Base_ljdryevnLqfpEquFKfZpOdAXfsqC * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, HardwareJoystickMap_Platform_RawOrDirectInput_Button_Base *, HardwareJoystickMap_Platform_RawInput_Base_ljdryevnLqfpEquFKfZpOdAXfsqC_System_Collections_Generic_IEnumerator_Rewired_Data_Mapping_HardwareJoystickMap_Platform_RawOrDirectInput_Button_Base__get_Current, (HardwareJoystickMap_Platform_RawInput_Base_ljdryevnLqfpEquFKfZpOdAXfsqC * __this, MethodInfo * method)); DO_APP_FUNC(0x01F92770, void, HardwareJoystickMap_Platform_RawInput_Base_ljdryevnLqfpEquFKfZpOdAXfsqC_System_Collections_IEnumerator_Reset, (HardwareJoystickMap_Platform_RawInput_Base_ljdryevnLqfpEquFKfZpOdAXfsqC * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9258, HardwareJoystickMap_Platform_RawInput_Base_ljdryevnLqfpEquFKfZpOdAXfsqC_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, HardwareJoystickMap_Platform_RawInput_Base_ljdryevnLqfpEquFKfZpOdAXfsqC_System_Collections_IEnumerator_get_Current, (HardwareJoystickMap_Platform_RawInput_Base_ljdryevnLqfpEquFKfZpOdAXfsqC * __this, MethodInfo * method)); DO_APP_FUNC(0x01F927C0, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_RawOrDirectInput_Button_Base_ *, HardwareJoystickMap_Platform_RawInput_Base_ljdryevnLqfpEquFKfZpOdAXfsqC_System_Collections_Generic_IEnumerable_Rewired_Data_Mapping_HardwareJoystickMap_Platform_RawOrDirectInput_Button_Base__GetEnumerator, (HardwareJoystickMap_Platform_RawInput_Base_ljdryevnLqfpEquFKfZpOdAXfsqC * __this, MethodInfo * method)); DO_APP_FUNC(0x01F927C0, IEnumerator *, HardwareJoystickMap_Platform_RawInput_Base_ljdryevnLqfpEquFKfZpOdAXfsqC_System_Collections_IEnumerable_GetEnumerator, (HardwareJoystickMap_Platform_RawInput_Base_ljdryevnLqfpEquFKfZpOdAXfsqC * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3B0, IList_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_ *, HardwareJoystickMap_Platform_RawInput_get_variants_base, (HardwareJoystickMap_Platform_RawInput * __this, MethodInfo * method)); -DO_APP_FUNC(0x01F8FCB0, bool, HardwareJoystickMap_Platform_RawInput_Matches, (HardwareJoystickMap_Platform_RawInput * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t variantIndex, HardwareJoystickMap_Platform * platformMap, MethodInfo * method)); +DO_APP_FUNC(0x01F8FCB0, bool, HardwareJoystickMap_Platform_RawInput_Matches, (HardwareJoystickMap_Platform_RawInput * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t * variantIndex, HardwareJoystickMap_Platform * * platformMap, MethodInfo * method)); DO_APP_FUNC(0x01F92900, Object *, HardwareJoystickMap_Platform_RawInput_DeepClone, (HardwareJoystickMap_Platform_RawInput * __this, MethodInfo * method)); DO_APP_FUNC(0x01F92970, void, HardwareJoystickMap_Platform_RawInput_CopyVars, (HardwareJoystickMap_Platform_RawInput * __this, HardwareJoystickMap_Platform * destination, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_RawInput__ctor, (HardwareJoystickMap_Platform_RawInput * __this, MethodInfo * method)); @@ -46907,18 +55224,20 @@ DO_APP_FUNC(0x01F8BDF0, bool, HardwareJoystickMap_Platform_XInput_Base_get_disab DO_APP_FUNC(0x01F8BE10, bool, HardwareJoystickMap_Platform_XInput_Base_get_isAllowed, (HardwareJoystickMap_Platform_XInput_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, HardwareJoystickMap_Elements_Base *, HardwareJoystickMap_Platform_XInput_Base_get_elements_base, (HardwareJoystickMap_Platform_XInput_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x003CB690, IList_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_ *, HardwareJoystickMap_Platform_XInput_Base_get_variants_base, (HardwareJoystickMap_Platform_XInput_Base * __this, MethodInfo * method)); -DO_APP_FUNC(0x01F8CE50, bool, HardwareJoystickMap_Platform_XInput_Base_Matches, (HardwareJoystickMap_Platform_XInput_Base * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t variantIndex, HardwareJoystickMap_Platform * platformMap, MethodInfo * method)); +DO_APP_FUNC(0x01F8CE50, bool, HardwareJoystickMap_Platform_XInput_Base_Matches, (HardwareJoystickMap_Platform_XInput_Base * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t * variantIndex, HardwareJoystickMap_Platform * * platformMap, MethodInfo * method)); DO_APP_FUNC(0x01F92B90, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_XInput_Base_Axis_ *, HardwareJoystickMap_Platform_XInput_Base_IterateAxes, (HardwareJoystickMap_Platform_XInput_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x01F92C50, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_XInput_Base_Button_ *, HardwareJoystickMap_Platform_XInput_Base_IterateButtons, (HardwareJoystickMap_Platform_XInput_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x01F92D10, String__Array *, HardwareJoystickMap_Platform_XInput_Base_GetAxisNames, (HardwareJoystickMap_Platform_XInput_Base * __this, ControllerElementIdentifier__Array * identifiers, MethodInfo * method)); DO_APP_FUNC(0x01F92EF0, String__Array *, HardwareJoystickMap_Platform_XInput_Base_GetEffectiveButtonNames, (HardwareJoystickMap_Platform_XInput_Base * __this, ControllerElementIdentifier__Array * identifiers, MethodInfo * method)); DO_APP_FUNC(0x01F930D0, bool, HardwareJoystickMap_Platform_XInput_Base_IsElementIdentifierMapped, (HardwareJoystickMap_Platform_XInput_Base * __this, int32_t elementIdentifierId, MethodInfo * method)); -DO_APP_FUNC(0x01F93390, void, HardwareJoystickMap_Platform_XInput_Base_GetGameElementIdentifierIdMappings, (HardwareJoystickMap_Platform_XInput_Base * __this, Int32__Array * buttons, Int32__Array * axes, MethodInfo * method)); +DO_APP_FUNC(0x01F93390, void, HardwareJoystickMap_Platform_XInput_Base_GetGameElementIdentifierIdMappings, (HardwareJoystickMap_Platform_XInput_Base * __this, Int32__Array * * buttons, Int32__Array * * axes, MethodInfo * method)); DO_APP_FUNC(0x01F938D0, AxisCalibrationData__Array *, HardwareJoystickMap_Platform_XInput_Base_GetAxisCalibrationData, (HardwareJoystickMap_Platform_XInput_Base * __this, MethodInfo * method)); -DO_APP_FUNC(0x01F93C50, void, HardwareJoystickMap_Platform_XInput_Base_GetAxisData, (HardwareJoystickMap_Platform_XInput_Base * __this, AxisRange__Enum__Array * axisRanges, HardwareAxisInfo__Array * axisInfos, MethodInfo * method)); -DO_APP_FUNC(0x01F94080, void, HardwareJoystickMap_Platform_XInput_Base_GetButtonData, (HardwareJoystickMap_Platform_XInput_Base * __this, HardwareButtonInfo__Array * buttonInfos, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF90E8, HardwareJoystickMap_Platform_XInput_Base_GetAxisCalibrationData__MethodInfo); +DO_APP_FUNC(0x01F93C50, void, HardwareJoystickMap_Platform_XInput_Base_GetAxisData, (HardwareJoystickMap_Platform_XInput_Base * __this, AxisRange__Enum__Array * * axisRanges, HardwareAxisInfo__Array * * axisInfos, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF91A0, HardwareJoystickMap_Platform_XInput_Base_GetAxisData__MethodInfo); +DO_APP_FUNC(0x01F94080, void, HardwareJoystickMap_Platform_XInput_Base_GetButtonData, (HardwareJoystickMap_Platform_XInput_Base * __this, HardwareButtonInfo__Array * * buttonInfos, MethodInfo * method)); DO_APP_FUNC(0x01F8E6C0, ControllerElementType__Enum, HardwareJoystickMap_Platform_XInput_Base_GetEffectiveElementIdentifierType, (HardwareJoystickMap_Platform_XInput_Base * __this, ControllerElementIdentifier * elementIdentifier, MethodInfo * method)); -DO_APP_FUNC(0x01F8E6F0, bool, HardwareJoystickMap_Platform_XInput_Base_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_XInput_Base * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum axisRange, MethodInfo * method)); +DO_APP_FUNC(0x01F8E6F0, bool, HardwareJoystickMap_Platform_XInput_Base_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_XInput_Base * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum * axisRange, MethodInfo * method)); DO_APP_FUNC(0x01F942F0, Object *, HardwareJoystickMap_Platform_XInput_Base_DeepClone, (HardwareJoystickMap_Platform_XInput_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x01F94360, void, HardwareJoystickMap_Platform_XInput_Base_CopyVars, (HardwareJoystickMap_Platform_XInput_Base * __this, HardwareJoystickMap_Platform * destination, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_XInput_Base__ctor, (HardwareJoystickMap_Platform_XInput_Base * __this, MethodInfo * method)); @@ -46927,7 +55246,7 @@ DO_APP_FUNC(0x0059DF50, bool, HardwareJoystickMap_Platform_XInput_Base_MatchingC DO_APP_FUNC(0x01F94530, bool, HardwareJoystickMap_Platform_XInput_Base_MatchingCriteria_Matches, (HardwareJoystickMap_Platform_XInput_Base_MatchingCriteria * __this, BridgedControllerHWInfo * bridgedControllerHWInfo, bool strictMatch, MethodInfo * method)); DO_APP_FUNC(0x003CB690, int32_t, HardwareJoystickMap_Platform_XInput_Base_MatchingCriteria_get_alternateElementCount, (HardwareJoystickMap_Platform_XInput_Base_MatchingCriteria * __this, MethodInfo * method)); DO_APP_FUNC(0x003CB690, HardwareJoystickMap_MatchingCriteria_Base_ElementCount_Base *, HardwareJoystickMap_Platform_XInput_Base_MatchingCriteria_GetAlternateElementCount, (HardwareJoystickMap_Platform_XInput_Base_MatchingCriteria * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01F94610, bool, HardwareJoystickMap_Platform_XInput_Base_MatchingCriteria_ElementCountsMatch, (HardwareJoystickMap_Platform_XInput_Base_MatchingCriteria * __this, BridgedControllerHWInfo * bridgedControllerHWInfo, bool alternateMatched, MethodInfo * method)); +DO_APP_FUNC(0x01F94610, bool, HardwareJoystickMap_Platform_XInput_Base_MatchingCriteria_ElementCountsMatch, (HardwareJoystickMap_Platform_XInput_Base_MatchingCriteria * __this, BridgedControllerHWInfo * bridgedControllerHWInfo, bool * alternateMatched, MethodInfo * method)); DO_APP_FUNC(0x01F94620, Object *, HardwareJoystickMap_Platform_XInput_Base_MatchingCriteria_DeepClone, (HardwareJoystickMap_Platform_XInput_Base_MatchingCriteria * __this, MethodInfo * method)); DO_APP_FUNC(0x01F94690, void, HardwareJoystickMap_Platform_XInput_Base_MatchingCriteria_CopyVars, (HardwareJoystickMap_Platform_XInput_Base_MatchingCriteria * __this, HardwareJoystickMap_MatchingCriteria_Base * destination, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_XInput_Base_MatchingCriteria__ctor, (HardwareJoystickMap_Platform_XInput_Base_MatchingCriteria * __this, MethodInfo * method)); @@ -46936,7 +55255,8 @@ DO_APP_FUNC(0x006BD6A0, int32_t, HardwareJoystickMap_Platform_XInput_Base_Elemen DO_APP_FUNC(0x01F94800, Object *, HardwareJoystickMap_Platform_XInput_Base_Elements_DeepClone, (HardwareJoystickMap_Platform_XInput_Base_Elements * __this, MethodInfo * method)); DO_APP_FUNC(0x01F94870, void, HardwareJoystickMap_Platform_XInput_Base_Elements_CopyVars, (HardwareJoystickMap_Platform_XInput_Base_Elements * __this, HardwareJoystickMap_Elements_Base * destination, MethodInfo * method)); DO_APP_FUNC(0x01F949D0, ControllerElementType__Enum, HardwareJoystickMap_Platform_XInput_Base_Elements_GetEffectiveElementIdentifierType, (HardwareJoystickMap_Platform_XInput_Base_Elements * __this, ControllerElementIdentifier * elementIdentifier, MethodInfo * method)); -DO_APP_FUNC(0x01F94B00, bool, HardwareJoystickMap_Platform_XInput_Base_Elements_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_XInput_Base_Elements * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum axisRange, MethodInfo * method)); +DO_APP_FUNC(0x01F94B00, bool, HardwareJoystickMap_Platform_XInput_Base_Elements_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_XInput_Base_Elements * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum * axisRange, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9048, HardwareJoystickMap_Platform_XInput_Base_Elements_GetEffectiveAxisRange__MethodInfo); DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_XInput_Base_Elements__ctor, (HardwareJoystickMap_Platform_XInput_Base_Elements * __this, MethodInfo * method)); DO_APP_FUNC(0x01F94C90, void, HardwareJoystickMap_Platform_XInput_Base_Element_CopyVars, (HardwareJoystickMap_Platform_XInput_Base_Element * __this, HardwareJoystickMap_Platform_XInput_Base_Element * destination, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_XInput_Base_Element__ctor, (HardwareJoystickMap_Platform_XInput_Base_Element * __this, MethodInfo * method)); @@ -46951,6 +55271,7 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_XInput_Base_MKRAYLUqQ DO_APP_FUNC(0x01F950F0, bool, HardwareJoystickMap_Platform_XInput_Base_MKRAYLUqQSQnjIhsPhyJShqDDfWc_MoveNext, (HardwareJoystickMap_Platform_XInput_Base_MKRAYLUqQSQnjIhsPhyJShqDDfWc * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, HardwareJoystickMap_Platform_XInput_Base_Axis *, HardwareJoystickMap_Platform_XInput_Base_MKRAYLUqQSQnjIhsPhyJShqDDfWc_System_Collections_Generic_IEnumerator_Rewired_Data_Mapping_HardwareJoystickMap_Platform_XInput_Base_Axis__get_Current, (HardwareJoystickMap_Platform_XInput_Base_MKRAYLUqQSQnjIhsPhyJShqDDfWc * __this, MethodInfo * method)); DO_APP_FUNC(0x01F95200, void, HardwareJoystickMap_Platform_XInput_Base_MKRAYLUqQSQnjIhsPhyJShqDDfWc_System_Collections_IEnumerator_Reset, (HardwareJoystickMap_Platform_XInput_Base_MKRAYLUqQSQnjIhsPhyJShqDDfWc * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF90C0, HardwareJoystickMap_Platform_XInput_Base_MKRAYLUqQSQnjIhsPhyJShqDDfWc_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, HardwareJoystickMap_Platform_XInput_Base_MKRAYLUqQSQnjIhsPhyJShqDDfWc_System_Collections_IEnumerator_get_Current, (HardwareJoystickMap_Platform_XInput_Base_MKRAYLUqQSQnjIhsPhyJShqDDfWc * __this, MethodInfo * method)); DO_APP_FUNC(0x01F95250, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_XInput_Base_Axis_ *, HardwareJoystickMap_Platform_XInput_Base_MKRAYLUqQSQnjIhsPhyJShqDDfWc_System_Collections_Generic_IEnumerable_Rewired_Data_Mapping_HardwareJoystickMap_Platform_XInput_Base_Axis__GetEnumerator, (HardwareJoystickMap_Platform_XInput_Base_MKRAYLUqQSQnjIhsPhyJShqDDfWc * __this, MethodInfo * method)); DO_APP_FUNC(0x01F95250, IEnumerator *, HardwareJoystickMap_Platform_XInput_Base_MKRAYLUqQSQnjIhsPhyJShqDDfWc_System_Collections_IEnumerable_GetEnumerator, (HardwareJoystickMap_Platform_XInput_Base_MKRAYLUqQSQnjIhsPhyJShqDDfWc * __this, MethodInfo * method)); @@ -46959,11 +55280,12 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_XInput_Base_YsIawbbIW DO_APP_FUNC(0x01F95390, bool, HardwareJoystickMap_Platform_XInput_Base_YsIawbbIWzgTLJDNekTIzmQiTnrGA_MoveNext, (HardwareJoystickMap_Platform_XInput_Base_YsIawbbIWzgTLJDNekTIzmQiTnrGA * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, HardwareJoystickMap_Platform_XInput_Base_Button *, HardwareJoystickMap_Platform_XInput_Base_YsIawbbIWzgTLJDNekTIzmQiTnrGA_System_Collections_Generic_IEnumerator_Rewired_Data_Mapping_HardwareJoystickMap_Platform_XInput_Base_Button__get_Current, (HardwareJoystickMap_Platform_XInput_Base_YsIawbbIWzgTLJDNekTIzmQiTnrGA * __this, MethodInfo * method)); DO_APP_FUNC(0x01F954A0, void, HardwareJoystickMap_Platform_XInput_Base_YsIawbbIWzgTLJDNekTIzmQiTnrGA_System_Collections_IEnumerator_Reset, (HardwareJoystickMap_Platform_XInput_Base_YsIawbbIWzgTLJDNekTIzmQiTnrGA * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF90B0, HardwareJoystickMap_Platform_XInput_Base_YsIawbbIWzgTLJDNekTIzmQiTnrGA_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, HardwareJoystickMap_Platform_XInput_Base_YsIawbbIWzgTLJDNekTIzmQiTnrGA_System_Collections_IEnumerator_get_Current, (HardwareJoystickMap_Platform_XInput_Base_YsIawbbIWzgTLJDNekTIzmQiTnrGA * __this, MethodInfo * method)); DO_APP_FUNC(0x01F954F0, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_XInput_Base_Button_ *, HardwareJoystickMap_Platform_XInput_Base_YsIawbbIWzgTLJDNekTIzmQiTnrGA_System_Collections_Generic_IEnumerable_Rewired_Data_Mapping_HardwareJoystickMap_Platform_XInput_Base_Button__GetEnumerator, (HardwareJoystickMap_Platform_XInput_Base_YsIawbbIWzgTLJDNekTIzmQiTnrGA * __this, MethodInfo * method)); DO_APP_FUNC(0x01F954F0, IEnumerator *, HardwareJoystickMap_Platform_XInput_Base_YsIawbbIWzgTLJDNekTIzmQiTnrGA_System_Collections_IEnumerable_GetEnumerator, (HardwareJoystickMap_Platform_XInput_Base_YsIawbbIWzgTLJDNekTIzmQiTnrGA * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3B0, IList_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_ *, HardwareJoystickMap_Platform_XInput_get_variants_base, (HardwareJoystickMap_Platform_XInput * __this, MethodInfo * method)); -DO_APP_FUNC(0x01F8FCB0, bool, HardwareJoystickMap_Platform_XInput_Matches, (HardwareJoystickMap_Platform_XInput * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t variantIndex, HardwareJoystickMap_Platform * platformMap, MethodInfo * method)); +DO_APP_FUNC(0x01F8FCB0, bool, HardwareJoystickMap_Platform_XInput_Matches, (HardwareJoystickMap_Platform_XInput * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t * variantIndex, HardwareJoystickMap_Platform * * platformMap, MethodInfo * method)); DO_APP_FUNC(0x01F95630, Object *, HardwareJoystickMap_Platform_XInput_DeepClone, (HardwareJoystickMap_Platform_XInput * __this, MethodInfo * method)); DO_APP_FUNC(0x01F956A0, void, HardwareJoystickMap_Platform_XInput_CopyVars, (HardwareJoystickMap_Platform_XInput * __this, HardwareJoystickMap_Platform * destination, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_XInput__ctor, (HardwareJoystickMap_Platform_XInput * __this, MethodInfo * method)); @@ -46977,18 +55299,20 @@ DO_APP_FUNC(0x01F8BDF0, bool, HardwareJoystickMap_Platform_OSX_Base_get_disabled DO_APP_FUNC(0x01F8BE10, bool, HardwareJoystickMap_Platform_OSX_Base_get_isAllowed, (HardwareJoystickMap_Platform_OSX_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, HardwareJoystickMap_Elements_Base *, HardwareJoystickMap_Platform_OSX_Base_get_elements_base, (HardwareJoystickMap_Platform_OSX_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x003CB690, IList_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_ *, HardwareJoystickMap_Platform_OSX_Base_get_variants_base, (HardwareJoystickMap_Platform_OSX_Base * __this, MethodInfo * method)); -DO_APP_FUNC(0x01F8CE50, bool, HardwareJoystickMap_Platform_OSX_Base_Matches, (HardwareJoystickMap_Platform_OSX_Base * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t variantIndex, HardwareJoystickMap_Platform * platformMap, MethodInfo * method)); +DO_APP_FUNC(0x01F8CE50, bool, HardwareJoystickMap_Platform_OSX_Base_Matches, (HardwareJoystickMap_Platform_OSX_Base * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t * variantIndex, HardwareJoystickMap_Platform * * platformMap, MethodInfo * method)); DO_APP_FUNC(0x01F95930, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_OSX_Base_Axis_ *, HardwareJoystickMap_Platform_OSX_Base_IterateAxes, (HardwareJoystickMap_Platform_OSX_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x01F959F0, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_OSX_Base_Button_ *, HardwareJoystickMap_Platform_OSX_Base_IterateButtons, (HardwareJoystickMap_Platform_OSX_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x01F95AB0, String__Array *, HardwareJoystickMap_Platform_OSX_Base_GetAxisNames, (HardwareJoystickMap_Platform_OSX_Base * __this, ControllerElementIdentifier__Array * identifiers, MethodInfo * method)); DO_APP_FUNC(0x01F95FC0, String__Array *, HardwareJoystickMap_Platform_OSX_Base_GetEffectiveButtonNames, (HardwareJoystickMap_Platform_OSX_Base * __this, ControllerElementIdentifier__Array * identifiers, MethodInfo * method)); DO_APP_FUNC(0x01F961A0, bool, HardwareJoystickMap_Platform_OSX_Base_IsElementIdentifierMapped, (HardwareJoystickMap_Platform_OSX_Base * __this, int32_t elementIdentifierId, MethodInfo * method)); -DO_APP_FUNC(0x01F96460, void, HardwareJoystickMap_Platform_OSX_Base_GetGameElementIdentifierIdMappings, (HardwareJoystickMap_Platform_OSX_Base * __this, Int32__Array * buttons, Int32__Array * axes, MethodInfo * method)); +DO_APP_FUNC(0x01F96460, void, HardwareJoystickMap_Platform_OSX_Base_GetGameElementIdentifierIdMappings, (HardwareJoystickMap_Platform_OSX_Base * __this, Int32__Array * * buttons, Int32__Array * * axes, MethodInfo * method)); DO_APP_FUNC(0x01F969A0, AxisCalibrationData__Array *, HardwareJoystickMap_Platform_OSX_Base_GetAxisCalibrationData, (HardwareJoystickMap_Platform_OSX_Base * __this, MethodInfo * method)); -DO_APP_FUNC(0x01F96D30, void, HardwareJoystickMap_Platform_OSX_Base_GetAxisData, (HardwareJoystickMap_Platform_OSX_Base * __this, AxisRange__Enum__Array * axisRanges, HardwareAxisInfo__Array * axisInfos, MethodInfo * method)); -DO_APP_FUNC(0x01F97170, void, HardwareJoystickMap_Platform_OSX_Base_GetButtonData, (HardwareJoystickMap_Platform_OSX_Base * __this, HardwareButtonInfo__Array * buttonInfos, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8FE0, HardwareJoystickMap_Platform_OSX_Base_GetAxisCalibrationData__MethodInfo); +DO_APP_FUNC(0x01F96D30, void, HardwareJoystickMap_Platform_OSX_Base_GetAxisData, (HardwareJoystickMap_Platform_OSX_Base * __this, AxisRange__Enum__Array * * axisRanges, HardwareAxisInfo__Array * * axisInfos, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8FC8, HardwareJoystickMap_Platform_OSX_Base_GetAxisData__MethodInfo); +DO_APP_FUNC(0x01F97170, void, HardwareJoystickMap_Platform_OSX_Base_GetButtonData, (HardwareJoystickMap_Platform_OSX_Base * __this, HardwareButtonInfo__Array * * buttonInfos, MethodInfo * method)); DO_APP_FUNC(0x01F8E6C0, ControllerElementType__Enum, HardwareJoystickMap_Platform_OSX_Base_GetEffectiveElementIdentifierType, (HardwareJoystickMap_Platform_OSX_Base * __this, ControllerElementIdentifier * elementIdentifier, MethodInfo * method)); -DO_APP_FUNC(0x01F8E6F0, bool, HardwareJoystickMap_Platform_OSX_Base_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_OSX_Base * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum axisRange, MethodInfo * method)); +DO_APP_FUNC(0x01F8E6F0, bool, HardwareJoystickMap_Platform_OSX_Base_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_OSX_Base * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum * axisRange, MethodInfo * method)); DO_APP_FUNC(0x01F973E0, Object *, HardwareJoystickMap_Platform_OSX_Base_DeepClone, (HardwareJoystickMap_Platform_OSX_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x01F97450, void, HardwareJoystickMap_Platform_OSX_Base_CopyVars, (HardwareJoystickMap_Platform_OSX_Base * __this, HardwareJoystickMap_Platform * destination, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_OSX_Base__ctor, (HardwareJoystickMap_Platform_OSX_Base * __this, MethodInfo * method)); @@ -46997,7 +55321,7 @@ DO_APP_FUNC(0x0059DF50, bool, HardwareJoystickMap_Platform_OSX_Base_MatchingCrit DO_APP_FUNC(0x01F97640, bool, HardwareJoystickMap_Platform_OSX_Base_MatchingCriteria_Matches, (HardwareJoystickMap_Platform_OSX_Base_MatchingCriteria * __this, BridgedControllerHWInfo * bridgedControllerHWInfo, bool strictMatch, MethodInfo * method)); DO_APP_FUNC(0x01F36850, int32_t, HardwareJoystickMap_Platform_OSX_Base_MatchingCriteria_get_alternateElementCount, (HardwareJoystickMap_Platform_OSX_Base_MatchingCriteria * __this, MethodInfo * method)); DO_APP_FUNC(0x01F8C190, HardwareJoystickMap_MatchingCriteria_Base_ElementCount_Base *, HardwareJoystickMap_Platform_OSX_Base_MatchingCriteria_GetAlternateElementCount, (HardwareJoystickMap_Platform_OSX_Base_MatchingCriteria * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01F8C1D0, bool, HardwareJoystickMap_Platform_OSX_Base_MatchingCriteria_ElementCountsMatch, (HardwareJoystickMap_Platform_OSX_Base_MatchingCriteria * __this, BridgedControllerHWInfo * bridgedControllerHWInfo, bool alternateMatched, MethodInfo * method)); +DO_APP_FUNC(0x01F8C1D0, bool, HardwareJoystickMap_Platform_OSX_Base_MatchingCriteria_ElementCountsMatch, (HardwareJoystickMap_Platform_OSX_Base_MatchingCriteria * __this, BridgedControllerHWInfo * bridgedControllerHWInfo, bool * alternateMatched, MethodInfo * method)); DO_APP_FUNC(0x01F97850, bool, HardwareJoystickMap_Platform_OSX_Base_MatchingCriteria_ProductNameMatches, (HardwareJoystickMap_Platform_OSX_Base_MatchingCriteria * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x01F97950, Object *, HardwareJoystickMap_Platform_OSX_Base_MatchingCriteria_DeepClone, (HardwareJoystickMap_Platform_OSX_Base_MatchingCriteria * __this, MethodInfo * method)); DO_APP_FUNC(0x01F979C0, void, HardwareJoystickMap_Platform_OSX_Base_MatchingCriteria_CopyVars, (HardwareJoystickMap_Platform_OSX_Base_MatchingCriteria * __this, HardwareJoystickMap_MatchingCriteria_Base * destination, MethodInfo * method)); @@ -47013,13 +55337,15 @@ DO_APP_FUNC(0x01F97E10, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_P DO_APP_FUNC(0x01F97ED0, Object *, HardwareJoystickMap_Platform_OSX_Base_Elements_DeepClone, (HardwareJoystickMap_Platform_OSX_Base_Elements * __this, MethodInfo * method)); DO_APP_FUNC(0x01F97F40, void, HardwareJoystickMap_Platform_OSX_Base_Elements_CopyVars, (HardwareJoystickMap_Platform_OSX_Base_Elements * __this, HardwareJoystickMap_Elements_Base * destination, MethodInfo * method)); DO_APP_FUNC(0x01F949D0, ControllerElementType__Enum, HardwareJoystickMap_Platform_OSX_Base_Elements_GetEffectiveElementIdentifierType, (HardwareJoystickMap_Platform_OSX_Base_Elements * __this, ControllerElementIdentifier * elementIdentifier, MethodInfo * method)); -DO_APP_FUNC(0x01F980A0, bool, HardwareJoystickMap_Platform_OSX_Base_Elements_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_OSX_Base_Elements * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum axisRange, MethodInfo * method)); +DO_APP_FUNC(0x01F980A0, bool, HardwareJoystickMap_Platform_OSX_Base_Elements_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_OSX_Base_Elements * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum * axisRange, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8F28, HardwareJoystickMap_Platform_OSX_Base_Elements_GetEffectiveAxisRange__MethodInfo); DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_OSX_Base_Elements__ctor, (HardwareJoystickMap_Platform_OSX_Base_Elements * __this, MethodInfo * method)); DO_APP_FUNC(0x00FDB5B0, void, HardwareJoystickMap_Platform_OSX_Base_Elements_QmJTvoXvzljOUpDJtuAyBWDmmbZb__ctor, (HardwareJoystickMap_Platform_OSX_Base_Elements_QmJTvoXvzljOUpDJtuAyBWDmmbZb * __this, int32_t param_0000b9a5, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_OSX_Base_Elements_QmJTvoXvzljOUpDJtuAyBWDmmbZb_System_IDisposable_Dispose, (HardwareJoystickMap_Platform_OSX_Base_Elements_QmJTvoXvzljOUpDJtuAyBWDmmbZb * __this, MethodInfo * method)); DO_APP_FUNC(0x01F98330, bool, HardwareJoystickMap_Platform_OSX_Base_Elements_QmJTvoXvzljOUpDJtuAyBWDmmbZb_MoveNext, (HardwareJoystickMap_Platform_OSX_Base_Elements_QmJTvoXvzljOUpDJtuAyBWDmmbZb * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, HardwareJoystickMap_Platform_OSX_Base_Axis *, HardwareJoystickMap_Platform_OSX_Base_Elements_QmJTvoXvzljOUpDJtuAyBWDmmbZb_System_Collections_Generic_IEnumerator_Rewired_Data_Mapping_HardwareJoystickMap_Platform_OSX_Base_Axis__get_Current, (HardwareJoystickMap_Platform_OSX_Base_Elements_QmJTvoXvzljOUpDJtuAyBWDmmbZb * __this, MethodInfo * method)); DO_APP_FUNC(0x01F984D0, void, HardwareJoystickMap_Platform_OSX_Base_Elements_QmJTvoXvzljOUpDJtuAyBWDmmbZb_System_Collections_IEnumerator_Reset, (HardwareJoystickMap_Platform_OSX_Base_Elements_QmJTvoXvzljOUpDJtuAyBWDmmbZb * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8F18, HardwareJoystickMap_Platform_OSX_Base_Elements_QmJTvoXvzljOUpDJtuAyBWDmmbZb_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, HardwareJoystickMap_Platform_OSX_Base_Elements_QmJTvoXvzljOUpDJtuAyBWDmmbZb_System_Collections_IEnumerator_get_Current, (HardwareJoystickMap_Platform_OSX_Base_Elements_QmJTvoXvzljOUpDJtuAyBWDmmbZb * __this, MethodInfo * method)); DO_APP_FUNC(0x01F98520, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_OSX_Base_Axis_ *, HardwareJoystickMap_Platform_OSX_Base_Elements_QmJTvoXvzljOUpDJtuAyBWDmmbZb_System_Collections_Generic_IEnumerable_Rewired_Data_Mapping_HardwareJoystickMap_Platform_OSX_Base_Axis__GetEnumerator, (HardwareJoystickMap_Platform_OSX_Base_Elements_QmJTvoXvzljOUpDJtuAyBWDmmbZb * __this, MethodInfo * method)); DO_APP_FUNC(0x01F98520, IEnumerator *, HardwareJoystickMap_Platform_OSX_Base_Elements_QmJTvoXvzljOUpDJtuAyBWDmmbZb_System_Collections_IEnumerable_GetEnumerator, (HardwareJoystickMap_Platform_OSX_Base_Elements_QmJTvoXvzljOUpDJtuAyBWDmmbZb * __this, MethodInfo * method)); @@ -47028,6 +55354,7 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_OSX_Base_Elements_vqT DO_APP_FUNC(0x01F98660, bool, HardwareJoystickMap_Platform_OSX_Base_Elements_vqTmCFAJVOfaroUquEkAGLWTUxzcA_MoveNext, (HardwareJoystickMap_Platform_OSX_Base_Elements_vqTmCFAJVOfaroUquEkAGLWTUxzcA * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, HardwareJoystickMap_Platform_OSX_Base_Button *, HardwareJoystickMap_Platform_OSX_Base_Elements_vqTmCFAJVOfaroUquEkAGLWTUxzcA_System_Collections_Generic_IEnumerator_Rewired_Data_Mapping_HardwareJoystickMap_Platform_OSX_Base_Button__get_Current, (HardwareJoystickMap_Platform_OSX_Base_Elements_vqTmCFAJVOfaroUquEkAGLWTUxzcA * __this, MethodInfo * method)); DO_APP_FUNC(0x01F98800, void, HardwareJoystickMap_Platform_OSX_Base_Elements_vqTmCFAJVOfaroUquEkAGLWTUxzcA_System_Collections_IEnumerator_Reset, (HardwareJoystickMap_Platform_OSX_Base_Elements_vqTmCFAJVOfaroUquEkAGLWTUxzcA * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8EC8, HardwareJoystickMap_Platform_OSX_Base_Elements_vqTmCFAJVOfaroUquEkAGLWTUxzcA_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, HardwareJoystickMap_Platform_OSX_Base_Elements_vqTmCFAJVOfaroUquEkAGLWTUxzcA_System_Collections_IEnumerator_get_Current, (HardwareJoystickMap_Platform_OSX_Base_Elements_vqTmCFAJVOfaroUquEkAGLWTUxzcA * __this, MethodInfo * method)); DO_APP_FUNC(0x01F98850, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_OSX_Base_Button_ *, HardwareJoystickMap_Platform_OSX_Base_Elements_vqTmCFAJVOfaroUquEkAGLWTUxzcA_System_Collections_Generic_IEnumerable_Rewired_Data_Mapping_HardwareJoystickMap_Platform_OSX_Base_Button__GetEnumerator, (HardwareJoystickMap_Platform_OSX_Base_Elements_vqTmCFAJVOfaroUquEkAGLWTUxzcA * __this, MethodInfo * method)); DO_APP_FUNC(0x01F98850, IEnumerator *, HardwareJoystickMap_Platform_OSX_Base_Elements_vqTmCFAJVOfaroUquEkAGLWTUxzcA_System_Collections_IEnumerable_GetEnumerator, (HardwareJoystickMap_Platform_OSX_Base_Elements_vqTmCFAJVOfaroUquEkAGLWTUxzcA * __this, MethodInfo * method)); @@ -47041,6 +55368,7 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_OSX_Base_kMXhsXgKkOhh DO_APP_FUNC(0x01F950F0, bool, HardwareJoystickMap_Platform_OSX_Base_kMXhsXgKkOhhqCqWaWaKrPOaQdJu_MoveNext, (HardwareJoystickMap_Platform_OSX_Base_kMXhsXgKkOhhqCqWaWaKrPOaQdJu * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, HardwareJoystickMap_Platform_OSX_Base_Axis *, HardwareJoystickMap_Platform_OSX_Base_kMXhsXgKkOhhqCqWaWaKrPOaQdJu_System_Collections_Generic_IEnumerator_Rewired_Data_Mapping_HardwareJoystickMap_Platform_OSX_Base_Axis__get_Current, (HardwareJoystickMap_Platform_OSX_Base_kMXhsXgKkOhhqCqWaWaKrPOaQdJu * __this, MethodInfo * method)); DO_APP_FUNC(0x01F98DF0, void, HardwareJoystickMap_Platform_OSX_Base_kMXhsXgKkOhhqCqWaWaKrPOaQdJu_System_Collections_IEnumerator_Reset, (HardwareJoystickMap_Platform_OSX_Base_kMXhsXgKkOhhqCqWaWaKrPOaQdJu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8EB0, HardwareJoystickMap_Platform_OSX_Base_kMXhsXgKkOhhqCqWaWaKrPOaQdJu_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, HardwareJoystickMap_Platform_OSX_Base_kMXhsXgKkOhhqCqWaWaKrPOaQdJu_System_Collections_IEnumerator_get_Current, (HardwareJoystickMap_Platform_OSX_Base_kMXhsXgKkOhhqCqWaWaKrPOaQdJu * __this, MethodInfo * method)); DO_APP_FUNC(0x01F98E40, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_OSX_Base_Axis_ *, HardwareJoystickMap_Platform_OSX_Base_kMXhsXgKkOhhqCqWaWaKrPOaQdJu_System_Collections_Generic_IEnumerable_Rewired_Data_Mapping_HardwareJoystickMap_Platform_OSX_Base_Axis__GetEnumerator, (HardwareJoystickMap_Platform_OSX_Base_kMXhsXgKkOhhqCqWaWaKrPOaQdJu * __this, MethodInfo * method)); DO_APP_FUNC(0x01F98E40, IEnumerator *, HardwareJoystickMap_Platform_OSX_Base_kMXhsXgKkOhhqCqWaWaKrPOaQdJu_System_Collections_IEnumerable_GetEnumerator, (HardwareJoystickMap_Platform_OSX_Base_kMXhsXgKkOhhqCqWaWaKrPOaQdJu * __this, MethodInfo * method)); @@ -47049,11 +55377,12 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_OSX_Base_RdIvogOwleQh DO_APP_FUNC(0x01F95390, bool, HardwareJoystickMap_Platform_OSX_Base_RdIvogOwleQhtTPWlLlESVIZahgR_MoveNext, (HardwareJoystickMap_Platform_OSX_Base_RdIvogOwleQhtTPWlLlESVIZahgR * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, HardwareJoystickMap_Platform_OSX_Base_Button *, HardwareJoystickMap_Platform_OSX_Base_RdIvogOwleQhtTPWlLlESVIZahgR_System_Collections_Generic_IEnumerator_Rewired_Data_Mapping_HardwareJoystickMap_Platform_OSX_Base_Button__get_Current, (HardwareJoystickMap_Platform_OSX_Base_RdIvogOwleQhtTPWlLlESVIZahgR * __this, MethodInfo * method)); DO_APP_FUNC(0x01F98F80, void, HardwareJoystickMap_Platform_OSX_Base_RdIvogOwleQhtTPWlLlESVIZahgR_System_Collections_IEnumerator_Reset, (HardwareJoystickMap_Platform_OSX_Base_RdIvogOwleQhtTPWlLlESVIZahgR * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8EA8, HardwareJoystickMap_Platform_OSX_Base_RdIvogOwleQhtTPWlLlESVIZahgR_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, HardwareJoystickMap_Platform_OSX_Base_RdIvogOwleQhtTPWlLlESVIZahgR_System_Collections_IEnumerator_get_Current, (HardwareJoystickMap_Platform_OSX_Base_RdIvogOwleQhtTPWlLlESVIZahgR * __this, MethodInfo * method)); DO_APP_FUNC(0x01F98FD0, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_OSX_Base_Button_ *, HardwareJoystickMap_Platform_OSX_Base_RdIvogOwleQhtTPWlLlESVIZahgR_System_Collections_Generic_IEnumerable_Rewired_Data_Mapping_HardwareJoystickMap_Platform_OSX_Base_Button__GetEnumerator, (HardwareJoystickMap_Platform_OSX_Base_RdIvogOwleQhtTPWlLlESVIZahgR * __this, MethodInfo * method)); DO_APP_FUNC(0x01F98FD0, IEnumerator *, HardwareJoystickMap_Platform_OSX_Base_RdIvogOwleQhtTPWlLlESVIZahgR_System_Collections_IEnumerable_GetEnumerator, (HardwareJoystickMap_Platform_OSX_Base_RdIvogOwleQhtTPWlLlESVIZahgR * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3B0, IList_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_ *, HardwareJoystickMap_Platform_OSX_get_variants_base, (HardwareJoystickMap_Platform_OSX * __this, MethodInfo * method)); -DO_APP_FUNC(0x01F8FCB0, bool, HardwareJoystickMap_Platform_OSX_Matches, (HardwareJoystickMap_Platform_OSX * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t variantIndex, HardwareJoystickMap_Platform * platformMap, MethodInfo * method)); +DO_APP_FUNC(0x01F8FCB0, bool, HardwareJoystickMap_Platform_OSX_Matches, (HardwareJoystickMap_Platform_OSX * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t * variantIndex, HardwareJoystickMap_Platform * * platformMap, MethodInfo * method)); DO_APP_FUNC(0x01F99110, Object *, HardwareJoystickMap_Platform_OSX_DeepClone, (HardwareJoystickMap_Platform_OSX * __this, MethodInfo * method)); DO_APP_FUNC(0x01F99180, void, HardwareJoystickMap_Platform_OSX_CopyVars, (HardwareJoystickMap_Platform_OSX * __this, HardwareJoystickMap_Platform * destination, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_OSX__ctor, (HardwareJoystickMap_Platform_OSX * __this, MethodInfo * method)); @@ -47064,18 +55393,20 @@ DO_APP_FUNC(0x01F8BE10, bool, HardwareJoystickMap_Platform_Linux_Base_get_isAllo DO_APP_FUNC(0x01F8CDB0, HardwareJoystickMap_Platform_Linux_Base_Axis__Array *, HardwareJoystickMap_Platform_Linux_Base_get_Axes_orig, (HardwareJoystickMap_Platform_Linux_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x01F8CDD0, HardwareJoystickMap_Platform_Linux_Base_Button__Array *, HardwareJoystickMap_Platform_Linux_Base_get_Buttons_orig, (HardwareJoystickMap_Platform_Linux_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x003CB690, IList_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_ *, HardwareJoystickMap_Platform_Linux_Base_get_variants_base, (HardwareJoystickMap_Platform_Linux_Base * __this, MethodInfo * method)); -DO_APP_FUNC(0x01F8CE50, bool, HardwareJoystickMap_Platform_Linux_Base_Matches, (HardwareJoystickMap_Platform_Linux_Base * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t variantIndex, HardwareJoystickMap_Platform * platformMap, MethodInfo * method)); +DO_APP_FUNC(0x01F8CE50, bool, HardwareJoystickMap_Platform_Linux_Base_Matches, (HardwareJoystickMap_Platform_Linux_Base * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t * variantIndex, HardwareJoystickMap_Platform * * platformMap, MethodInfo * method)); DO_APP_FUNC(0x01F8CDF0, int32_t, HardwareJoystickMap_Platform_Linux_Base_get_assignedButtonCount, (HardwareJoystickMap_Platform_Linux_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x01F8CE20, int32_t, HardwareJoystickMap_Platform_Linux_Base_get_assignedAxisCount, (HardwareJoystickMap_Platform_Linux_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x01F99410, String__Array *, HardwareJoystickMap_Platform_Linux_Base_GetAxisNames, (HardwareJoystickMap_Platform_Linux_Base * __this, ControllerElementIdentifier__Array * identifiers, MethodInfo * method)); DO_APP_FUNC(0x01F99620, String__Array *, HardwareJoystickMap_Platform_Linux_Base_GetEffectiveButtonNames, (HardwareJoystickMap_Platform_Linux_Base * __this, ControllerElementIdentifier__Array * identifiers, MethodInfo * method)); DO_APP_FUNC(0x01F99810, bool, HardwareJoystickMap_Platform_Linux_Base_IsElementIdentifierMapped, (HardwareJoystickMap_Platform_Linux_Base * __this, int32_t elementIdentifierId, MethodInfo * method)); -DO_APP_FUNC(0x01F99AD0, void, HardwareJoystickMap_Platform_Linux_Base_GetGameElementIdentifierIdMappings, (HardwareJoystickMap_Platform_Linux_Base * __this, Int32__Array * buttons, Int32__Array * axes, MethodInfo * method)); +DO_APP_FUNC(0x01F99AD0, void, HardwareJoystickMap_Platform_Linux_Base_GetGameElementIdentifierIdMappings, (HardwareJoystickMap_Platform_Linux_Base * __this, Int32__Array * * buttons, Int32__Array * * axes, MethodInfo * method)); DO_APP_FUNC(0x01F9A010, AxisCalibrationData__Array *, HardwareJoystickMap_Platform_Linux_Base_GetAxisCalibrationData, (HardwareJoystickMap_Platform_Linux_Base * __this, MethodInfo * method)); -DO_APP_FUNC(0x01F9A3A0, void, HardwareJoystickMap_Platform_Linux_Base_GetAxisData, (HardwareJoystickMap_Platform_Linux_Base * __this, AxisRange__Enum__Array * axisRanges, HardwareAxisInfo__Array * axisInfos, MethodInfo * method)); -DO_APP_FUNC(0x01F9A7E0, void, HardwareJoystickMap_Platform_Linux_Base_GetButtonData, (HardwareJoystickMap_Platform_Linux_Base * __this, HardwareButtonInfo__Array * buttonInfos, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8E80, HardwareJoystickMap_Platform_Linux_Base_GetAxisCalibrationData__MethodInfo); +DO_APP_FUNC(0x01F9A3A0, void, HardwareJoystickMap_Platform_Linux_Base_GetAxisData, (HardwareJoystickMap_Platform_Linux_Base * __this, AxisRange__Enum__Array * * axisRanges, HardwareAxisInfo__Array * * axisInfos, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8E78, HardwareJoystickMap_Platform_Linux_Base_GetAxisData__MethodInfo); +DO_APP_FUNC(0x01F9A7E0, void, HardwareJoystickMap_Platform_Linux_Base_GetButtonData, (HardwareJoystickMap_Platform_Linux_Base * __this, HardwareButtonInfo__Array * * buttonInfos, MethodInfo * method)); DO_APP_FUNC(0x01F8E6C0, ControllerElementType__Enum, HardwareJoystickMap_Platform_Linux_Base_GetEffectiveElementIdentifierType, (HardwareJoystickMap_Platform_Linux_Base * __this, ControllerElementIdentifier * elementIdentifier, MethodInfo * method)); -DO_APP_FUNC(0x01F8E6F0, bool, HardwareJoystickMap_Platform_Linux_Base_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_Linux_Base * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum axisRange, MethodInfo * method)); +DO_APP_FUNC(0x01F8E6F0, bool, HardwareJoystickMap_Platform_Linux_Base_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_Linux_Base * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum * axisRange, MethodInfo * method)); DO_APP_FUNC(0x01F9AA50, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Linux_Base_Axis_ *, HardwareJoystickMap_Platform_Linux_Base_IterateAxes, (HardwareJoystickMap_Platform_Linux_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x01F9AB10, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Linux_Base_Button_ *, HardwareJoystickMap_Platform_Linux_Base_IterateButtons, (HardwareJoystickMap_Platform_Linux_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, HardwareJoystickMap_Elements_Base *, HardwareJoystickMap_Platform_Linux_Base_get_elements_base, (HardwareJoystickMap_Platform_Linux_Base * __this, MethodInfo * method)); @@ -47087,7 +55418,7 @@ DO_APP_FUNC(0x0059DF50, bool, HardwareJoystickMap_Platform_Linux_Base_MatchingCr DO_APP_FUNC(0x01F9AD80, bool, HardwareJoystickMap_Platform_Linux_Base_MatchingCriteria_Matches, (HardwareJoystickMap_Platform_Linux_Base_MatchingCriteria * __this, BridgedControllerHWInfo * bridgedControllerHWInfo, bool strictMatch, MethodInfo * method)); DO_APP_FUNC(0x01F36850, int32_t, HardwareJoystickMap_Platform_Linux_Base_MatchingCriteria_get_alternateElementCount, (HardwareJoystickMap_Platform_Linux_Base_MatchingCriteria * __this, MethodInfo * method)); DO_APP_FUNC(0x01F8C190, HardwareJoystickMap_MatchingCriteria_Base_ElementCount_Base *, HardwareJoystickMap_Platform_Linux_Base_MatchingCriteria_GetAlternateElementCount, (HardwareJoystickMap_Platform_Linux_Base_MatchingCriteria * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01F8C1D0, bool, HardwareJoystickMap_Platform_Linux_Base_MatchingCriteria_ElementCountsMatch, (HardwareJoystickMap_Platform_Linux_Base_MatchingCriteria * __this, BridgedControllerHWInfo * bridgedControllerHWInfo, bool alternateMatched, MethodInfo * method)); +DO_APP_FUNC(0x01F8C1D0, bool, HardwareJoystickMap_Platform_Linux_Base_MatchingCriteria_ElementCountsMatch, (HardwareJoystickMap_Platform_Linux_Base_MatchingCriteria * __this, BridgedControllerHWInfo * bridgedControllerHWInfo, bool * alternateMatched, MethodInfo * method)); DO_APP_FUNC(0x01F9AF20, bool, HardwareJoystickMap_Platform_Linux_Base_MatchingCriteria_AnyNameMatches, (HardwareJoystickMap_Platform_Linux_Base_MatchingCriteria * __this, BridgedControllerHWInfo * bridgedControllerHWInfo, MethodInfo * method)); DO_APP_FUNC(0x01F9B070, bool, HardwareJoystickMap_Platform_Linux_Base_MatchingCriteria_NameMatches, (HardwareJoystickMap_Platform_Linux_Base_MatchingCriteria * __this, String * name, String__Array * names, bool useRegex, MethodInfo * method)); DO_APP_FUNC(0x01F9B120, Object *, HardwareJoystickMap_Platform_Linux_Base_MatchingCriteria_DeepClone, (HardwareJoystickMap_Platform_Linux_Base_MatchingCriteria * __this, MethodInfo * method)); @@ -47103,7 +55434,8 @@ DO_APP_FUNC(0x01F8EA30, HardwareJoystickMap_Platform_Linux_Base_Axis *, Hardware DO_APP_FUNC(0x01F9B530, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Linux_Base_Axis_ *, HardwareJoystickMap_Platform_Linux_Base_Elements_get_Axes, (HardwareJoystickMap_Platform_Linux_Base_Elements * __this, MethodInfo * method)); DO_APP_FUNC(0x01F9B5F0, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Linux_Base_Button_ *, HardwareJoystickMap_Platform_Linux_Base_Elements_get_Buttons, (HardwareJoystickMap_Platform_Linux_Base_Elements * __this, MethodInfo * method)); DO_APP_FUNC(0x01F949D0, ControllerElementType__Enum, HardwareJoystickMap_Platform_Linux_Base_Elements_GetEffectiveElementIdentifierType, (HardwareJoystickMap_Platform_Linux_Base_Elements * __this, ControllerElementIdentifier * elementIdentifier, MethodInfo * method)); -DO_APP_FUNC(0x01F9B6B0, bool, HardwareJoystickMap_Platform_Linux_Base_Elements_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_Linux_Base_Elements * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum axisRange, MethodInfo * method)); +DO_APP_FUNC(0x01F9B6B0, bool, HardwareJoystickMap_Platform_Linux_Base_Elements_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_Linux_Base_Elements * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum * axisRange, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8E38, HardwareJoystickMap_Platform_Linux_Base_Elements_GetEffectiveAxisRange__MethodInfo); DO_APP_FUNC(0x01F9B940, Object *, HardwareJoystickMap_Platform_Linux_Base_Elements_DeepClone, (HardwareJoystickMap_Platform_Linux_Base_Elements * __this, MethodInfo * method)); DO_APP_FUNC(0x01F9B9B0, void, HardwareJoystickMap_Platform_Linux_Base_Elements_CopyVars, (HardwareJoystickMap_Platform_Linux_Base_Elements * __this, HardwareJoystickMap_Elements_Base * destination, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_Linux_Base_Elements__ctor, (HardwareJoystickMap_Platform_Linux_Base_Elements * __this, MethodInfo * method)); @@ -47112,6 +55444,7 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_Linux_Base_Elements_Q DO_APP_FUNC(0x01F8F170, bool, HardwareJoystickMap_Platform_Linux_Base_Elements_QPzQsMNesAMiDeOmaElmgWtJdOET_MoveNext, (HardwareJoystickMap_Platform_Linux_Base_Elements_QPzQsMNesAMiDeOmaElmgWtJdOET * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, HardwareJoystickMap_Platform_Linux_Base_Axis *, HardwareJoystickMap_Platform_Linux_Base_Elements_QPzQsMNesAMiDeOmaElmgWtJdOET_System_Collections_Generic_IEnumerator_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Linux_Base_Axis__get_Current, (HardwareJoystickMap_Platform_Linux_Base_Elements_QPzQsMNesAMiDeOmaElmgWtJdOET * __this, MethodInfo * method)); DO_APP_FUNC(0x01F9BB10, void, HardwareJoystickMap_Platform_Linux_Base_Elements_QPzQsMNesAMiDeOmaElmgWtJdOET_System_Collections_IEnumerator_Reset, (HardwareJoystickMap_Platform_Linux_Base_Elements_QPzQsMNesAMiDeOmaElmgWtJdOET * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8E18, HardwareJoystickMap_Platform_Linux_Base_Elements_QPzQsMNesAMiDeOmaElmgWtJdOET_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, HardwareJoystickMap_Platform_Linux_Base_Elements_QPzQsMNesAMiDeOmaElmgWtJdOET_System_Collections_IEnumerator_get_Current, (HardwareJoystickMap_Platform_Linux_Base_Elements_QPzQsMNesAMiDeOmaElmgWtJdOET * __this, MethodInfo * method)); DO_APP_FUNC(0x01F9BB60, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Linux_Base_Axis_ *, HardwareJoystickMap_Platform_Linux_Base_Elements_QPzQsMNesAMiDeOmaElmgWtJdOET_System_Collections_Generic_IEnumerable_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Linux_Base_Axis__GetEnumerator, (HardwareJoystickMap_Platform_Linux_Base_Elements_QPzQsMNesAMiDeOmaElmgWtJdOET * __this, MethodInfo * method)); DO_APP_FUNC(0x01F9BB60, IEnumerator *, HardwareJoystickMap_Platform_Linux_Base_Elements_QPzQsMNesAMiDeOmaElmgWtJdOET_System_Collections_IEnumerable_GetEnumerator, (HardwareJoystickMap_Platform_Linux_Base_Elements_QPzQsMNesAMiDeOmaElmgWtJdOET * __this, MethodInfo * method)); @@ -47120,6 +55453,7 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_Linux_Base_Elements_t DO_APP_FUNC(0x01F8F3F0, bool, HardwareJoystickMap_Platform_Linux_Base_Elements_tmSwGKHqtDjuAkZwLgzKPnLEOyzG_MoveNext, (HardwareJoystickMap_Platform_Linux_Base_Elements_tmSwGKHqtDjuAkZwLgzKPnLEOyzG * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, HardwareJoystickMap_Platform_Linux_Base_Button *, HardwareJoystickMap_Platform_Linux_Base_Elements_tmSwGKHqtDjuAkZwLgzKPnLEOyzG_System_Collections_Generic_IEnumerator_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Linux_Base_Button__get_Current, (HardwareJoystickMap_Platform_Linux_Base_Elements_tmSwGKHqtDjuAkZwLgzKPnLEOyzG * __this, MethodInfo * method)); DO_APP_FUNC(0x01F9BCA0, void, HardwareJoystickMap_Platform_Linux_Base_Elements_tmSwGKHqtDjuAkZwLgzKPnLEOyzG_System_Collections_IEnumerator_Reset, (HardwareJoystickMap_Platform_Linux_Base_Elements_tmSwGKHqtDjuAkZwLgzKPnLEOyzG * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8E60, HardwareJoystickMap_Platform_Linux_Base_Elements_tmSwGKHqtDjuAkZwLgzKPnLEOyzG_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, HardwareJoystickMap_Platform_Linux_Base_Elements_tmSwGKHqtDjuAkZwLgzKPnLEOyzG_System_Collections_IEnumerator_get_Current, (HardwareJoystickMap_Platform_Linux_Base_Elements_tmSwGKHqtDjuAkZwLgzKPnLEOyzG * __this, MethodInfo * method)); DO_APP_FUNC(0x01F9BCF0, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Linux_Base_Button_ *, HardwareJoystickMap_Platform_Linux_Base_Elements_tmSwGKHqtDjuAkZwLgzKPnLEOyzG_System_Collections_Generic_IEnumerable_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Linux_Base_Button__GetEnumerator, (HardwareJoystickMap_Platform_Linux_Base_Elements_tmSwGKHqtDjuAkZwLgzKPnLEOyzG * __this, MethodInfo * method)); DO_APP_FUNC(0x01F9BCF0, IEnumerator *, HardwareJoystickMap_Platform_Linux_Base_Elements_tmSwGKHqtDjuAkZwLgzKPnLEOyzG_System_Collections_IEnumerable_GetEnumerator, (HardwareJoystickMap_Platform_Linux_Base_Elements_tmSwGKHqtDjuAkZwLgzKPnLEOyzG * __this, MethodInfo * method)); @@ -47136,6 +55470,7 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_Linux_Base_khfHnKCwYy DO_APP_FUNC(0x01F8F770, bool, HardwareJoystickMap_Platform_Linux_Base_khfHnKCwYyVcdpdwemknvrzQLTMi_MoveNext, (HardwareJoystickMap_Platform_Linux_Base_khfHnKCwYyVcdpdwemknvrzQLTMi * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, HardwareJoystickMap_Platform_Linux_Base_Axis *, HardwareJoystickMap_Platform_Linux_Base_khfHnKCwYyVcdpdwemknvrzQLTMi_System_Collections_Generic_IEnumerator_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Linux_Base_Axis__get_Current, (HardwareJoystickMap_Platform_Linux_Base_khfHnKCwYyVcdpdwemknvrzQLTMi * __this, MethodInfo * method)); DO_APP_FUNC(0x01F9C350, void, HardwareJoystickMap_Platform_Linux_Base_khfHnKCwYyVcdpdwemknvrzQLTMi_System_Collections_IEnumerator_Reset, (HardwareJoystickMap_Platform_Linux_Base_khfHnKCwYyVcdpdwemknvrzQLTMi * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8E48, HardwareJoystickMap_Platform_Linux_Base_khfHnKCwYyVcdpdwemknvrzQLTMi_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, HardwareJoystickMap_Platform_Linux_Base_khfHnKCwYyVcdpdwemknvrzQLTMi_System_Collections_IEnumerator_get_Current, (HardwareJoystickMap_Platform_Linux_Base_khfHnKCwYyVcdpdwemknvrzQLTMi * __this, MethodInfo * method)); DO_APP_FUNC(0x01F9C3A0, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Linux_Base_Axis_ *, HardwareJoystickMap_Platform_Linux_Base_khfHnKCwYyVcdpdwemknvrzQLTMi_System_Collections_Generic_IEnumerable_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Linux_Base_Axis__GetEnumerator, (HardwareJoystickMap_Platform_Linux_Base_khfHnKCwYyVcdpdwemknvrzQLTMi * __this, MethodInfo * method)); DO_APP_FUNC(0x01F9C3A0, IEnumerator *, HardwareJoystickMap_Platform_Linux_Base_khfHnKCwYyVcdpdwemknvrzQLTMi_System_Collections_IEnumerable_GetEnumerator, (HardwareJoystickMap_Platform_Linux_Base_khfHnKCwYyVcdpdwemknvrzQLTMi * __this, MethodInfo * method)); @@ -47144,11 +55479,12 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_Linux_Base_YDdeXPBDcO DO_APP_FUNC(0x01F8FA10, bool, HardwareJoystickMap_Platform_Linux_Base_YDdeXPBDcOoxfriAWwDJfQeMiZCL_MoveNext, (HardwareJoystickMap_Platform_Linux_Base_YDdeXPBDcOoxfriAWwDJfQeMiZCL * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, HardwareJoystickMap_Platform_Linux_Base_Button *, HardwareJoystickMap_Platform_Linux_Base_YDdeXPBDcOoxfriAWwDJfQeMiZCL_System_Collections_Generic_IEnumerator_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Linux_Base_Button__get_Current, (HardwareJoystickMap_Platform_Linux_Base_YDdeXPBDcOoxfriAWwDJfQeMiZCL * __this, MethodInfo * method)); DO_APP_FUNC(0x01F9C4E0, void, HardwareJoystickMap_Platform_Linux_Base_YDdeXPBDcOoxfriAWwDJfQeMiZCL_System_Collections_IEnumerator_Reset, (HardwareJoystickMap_Platform_Linux_Base_YDdeXPBDcOoxfriAWwDJfQeMiZCL * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8DD8, HardwareJoystickMap_Platform_Linux_Base_YDdeXPBDcOoxfriAWwDJfQeMiZCL_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, HardwareJoystickMap_Platform_Linux_Base_YDdeXPBDcOoxfriAWwDJfQeMiZCL_System_Collections_IEnumerator_get_Current, (HardwareJoystickMap_Platform_Linux_Base_YDdeXPBDcOoxfriAWwDJfQeMiZCL * __this, MethodInfo * method)); DO_APP_FUNC(0x01F9C530, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Linux_Base_Button_ *, HardwareJoystickMap_Platform_Linux_Base_YDdeXPBDcOoxfriAWwDJfQeMiZCL_System_Collections_Generic_IEnumerable_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Linux_Base_Button__GetEnumerator, (HardwareJoystickMap_Platform_Linux_Base_YDdeXPBDcOoxfriAWwDJfQeMiZCL * __this, MethodInfo * method)); DO_APP_FUNC(0x01F9C530, IEnumerator *, HardwareJoystickMap_Platform_Linux_Base_YDdeXPBDcOoxfriAWwDJfQeMiZCL_System_Collections_IEnumerable_GetEnumerator, (HardwareJoystickMap_Platform_Linux_Base_YDdeXPBDcOoxfriAWwDJfQeMiZCL * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3B0, IList_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_ *, HardwareJoystickMap_Platform_Linux_get_variants_base, (HardwareJoystickMap_Platform_Linux * __this, MethodInfo * method)); -DO_APP_FUNC(0x01F8FCB0, bool, HardwareJoystickMap_Platform_Linux_Matches, (HardwareJoystickMap_Platform_Linux * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t variantIndex, HardwareJoystickMap_Platform * platformMap, MethodInfo * method)); +DO_APP_FUNC(0x01F8FCB0, bool, HardwareJoystickMap_Platform_Linux_Matches, (HardwareJoystickMap_Platform_Linux * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t * variantIndex, HardwareJoystickMap_Platform * * platformMap, MethodInfo * method)); DO_APP_FUNC(0x01F9C670, Object *, HardwareJoystickMap_Platform_Linux_DeepClone, (HardwareJoystickMap_Platform_Linux * __this, MethodInfo * method)); DO_APP_FUNC(0x01F9C6E0, void, HardwareJoystickMap_Platform_Linux_CopyVars, (HardwareJoystickMap_Platform_Linux * __this, HardwareJoystickMap_Platform * destination, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_Linux__ctor, (HardwareJoystickMap_Platform_Linux * __this, MethodInfo * method)); @@ -47159,18 +55495,20 @@ DO_APP_FUNC(0x01F8BE10, bool, HardwareJoystickMap_Platform_WindowsUWP_Base_get_i DO_APP_FUNC(0x01F8CDB0, HardwareJoystickMap_Platform_WindowsUWP_Base_Axis__Array *, HardwareJoystickMap_Platform_WindowsUWP_Base_get_Axes_orig, (HardwareJoystickMap_Platform_WindowsUWP_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x01F8CDD0, HardwareJoystickMap_Platform_WindowsUWP_Base_Button__Array *, HardwareJoystickMap_Platform_WindowsUWP_Base_get_Buttons_orig, (HardwareJoystickMap_Platform_WindowsUWP_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x003CB690, IList_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_ *, HardwareJoystickMap_Platform_WindowsUWP_Base_get_variants_base, (HardwareJoystickMap_Platform_WindowsUWP_Base * __this, MethodInfo * method)); -DO_APP_FUNC(0x01F8CE50, bool, HardwareJoystickMap_Platform_WindowsUWP_Base_Matches, (HardwareJoystickMap_Platform_WindowsUWP_Base * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t variantIndex, HardwareJoystickMap_Platform * platformMap, MethodInfo * method)); +DO_APP_FUNC(0x01F8CE50, bool, HardwareJoystickMap_Platform_WindowsUWP_Base_Matches, (HardwareJoystickMap_Platform_WindowsUWP_Base * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t * variantIndex, HardwareJoystickMap_Platform * * platformMap, MethodInfo * method)); DO_APP_FUNC(0x01F8CDF0, int32_t, HardwareJoystickMap_Platform_WindowsUWP_Base_get_assignedButtonCount, (HardwareJoystickMap_Platform_WindowsUWP_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x01F8CE20, int32_t, HardwareJoystickMap_Platform_WindowsUWP_Base_get_assignedAxisCount, (HardwareJoystickMap_Platform_WindowsUWP_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x01F9C8F0, String__Array *, HardwareJoystickMap_Platform_WindowsUWP_Base_GetAxisNames, (HardwareJoystickMap_Platform_WindowsUWP_Base * __this, ControllerElementIdentifier__Array * identifiers, MethodInfo * method)); DO_APP_FUNC(0x01F9CB00, String__Array *, HardwareJoystickMap_Platform_WindowsUWP_Base_GetEffectiveButtonNames, (HardwareJoystickMap_Platform_WindowsUWP_Base * __this, ControllerElementIdentifier__Array * identifiers, MethodInfo * method)); DO_APP_FUNC(0x01F9CCF0, bool, HardwareJoystickMap_Platform_WindowsUWP_Base_IsElementIdentifierMapped, (HardwareJoystickMap_Platform_WindowsUWP_Base * __this, int32_t elementIdentifierId, MethodInfo * method)); -DO_APP_FUNC(0x01F9CFB0, void, HardwareJoystickMap_Platform_WindowsUWP_Base_GetGameElementIdentifierIdMappings, (HardwareJoystickMap_Platform_WindowsUWP_Base * __this, Int32__Array * buttons, Int32__Array * axes, MethodInfo * method)); +DO_APP_FUNC(0x01F9CFB0, void, HardwareJoystickMap_Platform_WindowsUWP_Base_GetGameElementIdentifierIdMappings, (HardwareJoystickMap_Platform_WindowsUWP_Base * __this, Int32__Array * * buttons, Int32__Array * * axes, MethodInfo * method)); DO_APP_FUNC(0x01F9D4F0, AxisCalibrationData__Array *, HardwareJoystickMap_Platform_WindowsUWP_Base_GetAxisCalibrationData, (HardwareJoystickMap_Platform_WindowsUWP_Base * __this, MethodInfo * method)); -DO_APP_FUNC(0x01F9D880, void, HardwareJoystickMap_Platform_WindowsUWP_Base_GetAxisData, (HardwareJoystickMap_Platform_WindowsUWP_Base * __this, AxisRange__Enum__Array * axisRanges, HardwareAxisInfo__Array * axisInfos, MethodInfo * method)); -DO_APP_FUNC(0x01F9DCC0, void, HardwareJoystickMap_Platform_WindowsUWP_Base_GetButtonData, (HardwareJoystickMap_Platform_WindowsUWP_Base * __this, HardwareButtonInfo__Array * buttonInfos, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8DE8, HardwareJoystickMap_Platform_WindowsUWP_Base_GetAxisCalibrationData__MethodInfo); +DO_APP_FUNC(0x01F9D880, void, HardwareJoystickMap_Platform_WindowsUWP_Base_GetAxisData, (HardwareJoystickMap_Platform_WindowsUWP_Base * __this, AxisRange__Enum__Array * * axisRanges, HardwareAxisInfo__Array * * axisInfos, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8DE0, HardwareJoystickMap_Platform_WindowsUWP_Base_GetAxisData__MethodInfo); +DO_APP_FUNC(0x01F9DCC0, void, HardwareJoystickMap_Platform_WindowsUWP_Base_GetButtonData, (HardwareJoystickMap_Platform_WindowsUWP_Base * __this, HardwareButtonInfo__Array * * buttonInfos, MethodInfo * method)); DO_APP_FUNC(0x01F8E6C0, ControllerElementType__Enum, HardwareJoystickMap_Platform_WindowsUWP_Base_GetEffectiveElementIdentifierType, (HardwareJoystickMap_Platform_WindowsUWP_Base * __this, ControllerElementIdentifier * elementIdentifier, MethodInfo * method)); -DO_APP_FUNC(0x01F8E6F0, bool, HardwareJoystickMap_Platform_WindowsUWP_Base_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_WindowsUWP_Base * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum axisRange, MethodInfo * method)); +DO_APP_FUNC(0x01F8E6F0, bool, HardwareJoystickMap_Platform_WindowsUWP_Base_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_WindowsUWP_Base * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum * axisRange, MethodInfo * method)); DO_APP_FUNC(0x01F9DF30, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_WindowsUWP_Base_Axis_ *, HardwareJoystickMap_Platform_WindowsUWP_Base_IterateAxes, (HardwareJoystickMap_Platform_WindowsUWP_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x01F9DFF0, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_WindowsUWP_Base_Button_ *, HardwareJoystickMap_Platform_WindowsUWP_Base_IterateButtons, (HardwareJoystickMap_Platform_WindowsUWP_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, HardwareJoystickMap_Elements_Base *, HardwareJoystickMap_Platform_WindowsUWP_Base_get_elements_base, (HardwareJoystickMap_Platform_WindowsUWP_Base * __this, MethodInfo * method)); @@ -47182,7 +55520,7 @@ DO_APP_FUNC(0x0059DF50, bool, HardwareJoystickMap_Platform_WindowsUWP_Base_Match DO_APP_FUNC(0x01F9E260, bool, HardwareJoystickMap_Platform_WindowsUWP_Base_MatchingCriteria_Matches, (HardwareJoystickMap_Platform_WindowsUWP_Base_MatchingCriteria * __this, BridgedControllerHWInfo * bridgedControllerHWInfo, bool strictMatch, MethodInfo * method)); DO_APP_FUNC(0x01F36850, int32_t, HardwareJoystickMap_Platform_WindowsUWP_Base_MatchingCriteria_get_alternateElementCount, (HardwareJoystickMap_Platform_WindowsUWP_Base_MatchingCriteria * __this, MethodInfo * method)); DO_APP_FUNC(0x01F8C190, HardwareJoystickMap_MatchingCriteria_Base_ElementCount_Base *, HardwareJoystickMap_Platform_WindowsUWP_Base_MatchingCriteria_GetAlternateElementCount, (HardwareJoystickMap_Platform_WindowsUWP_Base_MatchingCriteria * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01F8C1D0, bool, HardwareJoystickMap_Platform_WindowsUWP_Base_MatchingCriteria_ElementCountsMatch, (HardwareJoystickMap_Platform_WindowsUWP_Base_MatchingCriteria * __this, BridgedControllerHWInfo * bridgedControllerHWInfo, bool alternateMatched, MethodInfo * method)); +DO_APP_FUNC(0x01F8C1D0, bool, HardwareJoystickMap_Platform_WindowsUWP_Base_MatchingCriteria_ElementCountsMatch, (HardwareJoystickMap_Platform_WindowsUWP_Base_MatchingCriteria * __this, BridgedControllerHWInfo * bridgedControllerHWInfo, bool * alternateMatched, MethodInfo * method)); DO_APP_FUNC(0x01F9E400, bool, HardwareJoystickMap_Platform_WindowsUWP_Base_MatchingCriteria_AnyNameMatches, (HardwareJoystickMap_Platform_WindowsUWP_Base_MatchingCriteria * __this, BridgedControllerHWInfo * bridgedControllerHWInfo, MethodInfo * method)); DO_APP_FUNC(0x01F9B070, bool, HardwareJoystickMap_Platform_WindowsUWP_Base_MatchingCriteria_NameMatches, (HardwareJoystickMap_Platform_WindowsUWP_Base_MatchingCriteria * __this, String * name, String__Array * names, bool useRegex, MethodInfo * method)); DO_APP_FUNC(0x01F9E4C0, Object *, HardwareJoystickMap_Platform_WindowsUWP_Base_MatchingCriteria_DeepClone, (HardwareJoystickMap_Platform_WindowsUWP_Base_MatchingCriteria * __this, MethodInfo * method)); @@ -47198,7 +55536,8 @@ DO_APP_FUNC(0x01F8EA30, HardwareJoystickMap_Platform_WindowsUWP_Base_Axis *, Har DO_APP_FUNC(0x01F9E860, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_WindowsUWP_Base_Axis_ *, HardwareJoystickMap_Platform_WindowsUWP_Base_Elements_get_Axes, (HardwareJoystickMap_Platform_WindowsUWP_Base_Elements * __this, MethodInfo * method)); DO_APP_FUNC(0x01F9E920, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_WindowsUWP_Base_Button_ *, HardwareJoystickMap_Platform_WindowsUWP_Base_Elements_get_Buttons, (HardwareJoystickMap_Platform_WindowsUWP_Base_Elements * __this, MethodInfo * method)); DO_APP_FUNC(0x01F949D0, ControllerElementType__Enum, HardwareJoystickMap_Platform_WindowsUWP_Base_Elements_GetEffectiveElementIdentifierType, (HardwareJoystickMap_Platform_WindowsUWP_Base_Elements * __this, ControllerElementIdentifier * elementIdentifier, MethodInfo * method)); -DO_APP_FUNC(0x01F9E9E0, bool, HardwareJoystickMap_Platform_WindowsUWP_Base_Elements_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_WindowsUWP_Base_Elements * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum axisRange, MethodInfo * method)); +DO_APP_FUNC(0x01F9E9E0, bool, HardwareJoystickMap_Platform_WindowsUWP_Base_Elements_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_WindowsUWP_Base_Elements * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum * axisRange, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8DA8, HardwareJoystickMap_Platform_WindowsUWP_Base_Elements_GetEffectiveAxisRange__MethodInfo); DO_APP_FUNC(0x01F9EC70, Object *, HardwareJoystickMap_Platform_WindowsUWP_Base_Elements_DeepClone, (HardwareJoystickMap_Platform_WindowsUWP_Base_Elements * __this, MethodInfo * method)); DO_APP_FUNC(0x01F9ECE0, void, HardwareJoystickMap_Platform_WindowsUWP_Base_Elements_CopyVars, (HardwareJoystickMap_Platform_WindowsUWP_Base_Elements * __this, HardwareJoystickMap_Elements_Base * destination, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_WindowsUWP_Base_Elements__ctor, (HardwareJoystickMap_Platform_WindowsUWP_Base_Elements * __this, MethodInfo * method)); @@ -47207,6 +55546,7 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_WindowsUWP_Base_Eleme DO_APP_FUNC(0x01F8F170, bool, HardwareJoystickMap_Platform_WindowsUWP_Base_Elements_BvUdoRLeZgNcToOZgDdYCCskDqNoA_MoveNext, (HardwareJoystickMap_Platform_WindowsUWP_Base_Elements_BvUdoRLeZgNcToOZgDdYCCskDqNoA * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, HardwareJoystickMap_Platform_WindowsUWP_Base_Axis *, HardwareJoystickMap_Platform_WindowsUWP_Base_Elements_BvUdoRLeZgNcToOZgDdYCCskDqNoA_System_Collections_Generic_IEnumerator_Rewired_Data_Mapping_HardwareJoystickMap_Platform_WindowsUWP_Base_Axis__get_Current, (HardwareJoystickMap_Platform_WindowsUWP_Base_Elements_BvUdoRLeZgNcToOZgDdYCCskDqNoA * __this, MethodInfo * method)); DO_APP_FUNC(0x01F9EE40, void, HardwareJoystickMap_Platform_WindowsUWP_Base_Elements_BvUdoRLeZgNcToOZgDdYCCskDqNoA_System_Collections_IEnumerator_Reset, (HardwareJoystickMap_Platform_WindowsUWP_Base_Elements_BvUdoRLeZgNcToOZgDdYCCskDqNoA * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8D60, HardwareJoystickMap_Platform_WindowsUWP_Base_Elements_BvUdoRLeZgNcToOZgDdYCCskDqNoA_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, HardwareJoystickMap_Platform_WindowsUWP_Base_Elements_BvUdoRLeZgNcToOZgDdYCCskDqNoA_System_Collections_IEnumerator_get_Current, (HardwareJoystickMap_Platform_WindowsUWP_Base_Elements_BvUdoRLeZgNcToOZgDdYCCskDqNoA * __this, MethodInfo * method)); DO_APP_FUNC(0x01F9EE90, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_WindowsUWP_Base_Axis_ *, HardwareJoystickMap_Platform_WindowsUWP_Base_Elements_BvUdoRLeZgNcToOZgDdYCCskDqNoA_System_Collections_Generic_IEnumerable_Rewired_Data_Mapping_HardwareJoystickMap_Platform_WindowsUWP_Base_Axis__GetEnumerator, (HardwareJoystickMap_Platform_WindowsUWP_Base_Elements_BvUdoRLeZgNcToOZgDdYCCskDqNoA * __this, MethodInfo * method)); DO_APP_FUNC(0x01F9EE90, IEnumerator *, HardwareJoystickMap_Platform_WindowsUWP_Base_Elements_BvUdoRLeZgNcToOZgDdYCCskDqNoA_System_Collections_IEnumerable_GetEnumerator, (HardwareJoystickMap_Platform_WindowsUWP_Base_Elements_BvUdoRLeZgNcToOZgDdYCCskDqNoA * __this, MethodInfo * method)); @@ -47215,6 +55555,7 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_WindowsUWP_Base_Eleme DO_APP_FUNC(0x01F8F3F0, bool, HardwareJoystickMap_Platform_WindowsUWP_Base_Elements_gUTZGOrRMIhLzFJAgZtWxWLQQMvd_MoveNext, (HardwareJoystickMap_Platform_WindowsUWP_Base_Elements_gUTZGOrRMIhLzFJAgZtWxWLQQMvd * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, HardwareJoystickMap_Platform_WindowsUWP_Base_Button *, HardwareJoystickMap_Platform_WindowsUWP_Base_Elements_gUTZGOrRMIhLzFJAgZtWxWLQQMvd_System_Collections_Generic_IEnumerator_Rewired_Data_Mapping_HardwareJoystickMap_Platform_WindowsUWP_Base_Button__get_Current, (HardwareJoystickMap_Platform_WindowsUWP_Base_Elements_gUTZGOrRMIhLzFJAgZtWxWLQQMvd * __this, MethodInfo * method)); DO_APP_FUNC(0x01F9EFD0, void, HardwareJoystickMap_Platform_WindowsUWP_Base_Elements_gUTZGOrRMIhLzFJAgZtWxWLQQMvd_System_Collections_IEnumerator_Reset, (HardwareJoystickMap_Platform_WindowsUWP_Base_Elements_gUTZGOrRMIhLzFJAgZtWxWLQQMvd * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8D58, HardwareJoystickMap_Platform_WindowsUWP_Base_Elements_gUTZGOrRMIhLzFJAgZtWxWLQQMvd_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, HardwareJoystickMap_Platform_WindowsUWP_Base_Elements_gUTZGOrRMIhLzFJAgZtWxWLQQMvd_System_Collections_IEnumerator_get_Current, (HardwareJoystickMap_Platform_WindowsUWP_Base_Elements_gUTZGOrRMIhLzFJAgZtWxWLQQMvd * __this, MethodInfo * method)); DO_APP_FUNC(0x01F9F020, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_WindowsUWP_Base_Button_ *, HardwareJoystickMap_Platform_WindowsUWP_Base_Elements_gUTZGOrRMIhLzFJAgZtWxWLQQMvd_System_Collections_Generic_IEnumerable_Rewired_Data_Mapping_HardwareJoystickMap_Platform_WindowsUWP_Base_Button__GetEnumerator, (HardwareJoystickMap_Platform_WindowsUWP_Base_Elements_gUTZGOrRMIhLzFJAgZtWxWLQQMvd * __this, MethodInfo * method)); DO_APP_FUNC(0x01F9F020, IEnumerator *, HardwareJoystickMap_Platform_WindowsUWP_Base_Elements_gUTZGOrRMIhLzFJAgZtWxWLQQMvd_System_Collections_IEnumerable_GetEnumerator, (HardwareJoystickMap_Platform_WindowsUWP_Base_Elements_gUTZGOrRMIhLzFJAgZtWxWLQQMvd * __this, MethodInfo * method)); @@ -47231,6 +55572,7 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_WindowsUWP_Base_Phnva DO_APP_FUNC(0x01F8F770, bool, HardwareJoystickMap_Platform_WindowsUWP_Base_PhnvaavLATIhobjvDAvMDQNABUMnB_MoveNext, (HardwareJoystickMap_Platform_WindowsUWP_Base_PhnvaavLATIhobjvDAvMDQNABUMnB * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, HardwareJoystickMap_Platform_WindowsUWP_Base_Axis *, HardwareJoystickMap_Platform_WindowsUWP_Base_PhnvaavLATIhobjvDAvMDQNABUMnB_System_Collections_Generic_IEnumerator_Rewired_Data_Mapping_HardwareJoystickMap_Platform_WindowsUWP_Base_Axis__get_Current, (HardwareJoystickMap_Platform_WindowsUWP_Base_PhnvaavLATIhobjvDAvMDQNABUMnB * __this, MethodInfo * method)); DO_APP_FUNC(0x01F9F680, void, HardwareJoystickMap_Platform_WindowsUWP_Base_PhnvaavLATIhobjvDAvMDQNABUMnB_System_Collections_IEnumerator_Reset, (HardwareJoystickMap_Platform_WindowsUWP_Base_PhnvaavLATIhobjvDAvMDQNABUMnB * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4570, HardwareJoystickMap_Platform_WindowsUWP_Base_PhnvaavLATIhobjvDAvMDQNABUMnB_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, HardwareJoystickMap_Platform_WindowsUWP_Base_PhnvaavLATIhobjvDAvMDQNABUMnB_System_Collections_IEnumerator_get_Current, (HardwareJoystickMap_Platform_WindowsUWP_Base_PhnvaavLATIhobjvDAvMDQNABUMnB * __this, MethodInfo * method)); DO_APP_FUNC(0x01F9F6D0, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_WindowsUWP_Base_Axis_ *, HardwareJoystickMap_Platform_WindowsUWP_Base_PhnvaavLATIhobjvDAvMDQNABUMnB_System_Collections_Generic_IEnumerable_Rewired_Data_Mapping_HardwareJoystickMap_Platform_WindowsUWP_Base_Axis__GetEnumerator, (HardwareJoystickMap_Platform_WindowsUWP_Base_PhnvaavLATIhobjvDAvMDQNABUMnB * __this, MethodInfo * method)); DO_APP_FUNC(0x01F9F6D0, IEnumerator *, HardwareJoystickMap_Platform_WindowsUWP_Base_PhnvaavLATIhobjvDAvMDQNABUMnB_System_Collections_IEnumerable_GetEnumerator, (HardwareJoystickMap_Platform_WindowsUWP_Base_PhnvaavLATIhobjvDAvMDQNABUMnB * __this, MethodInfo * method)); @@ -47239,11 +55581,12 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_WindowsUWP_Base_ltEXV DO_APP_FUNC(0x01F8FA10, bool, HardwareJoystickMap_Platform_WindowsUWP_Base_ltEXVqdxfqIGpEGjrikHPlAerIMH_MoveNext, (HardwareJoystickMap_Platform_WindowsUWP_Base_ltEXVqdxfqIGpEGjrikHPlAerIMH * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, HardwareJoystickMap_Platform_WindowsUWP_Base_Button *, HardwareJoystickMap_Platform_WindowsUWP_Base_ltEXVqdxfqIGpEGjrikHPlAerIMH_System_Collections_Generic_IEnumerator_Rewired_Data_Mapping_HardwareJoystickMap_Platform_WindowsUWP_Base_Button__get_Current, (HardwareJoystickMap_Platform_WindowsUWP_Base_ltEXVqdxfqIGpEGjrikHPlAerIMH * __this, MethodInfo * method)); DO_APP_FUNC(0x01F9F810, void, HardwareJoystickMap_Platform_WindowsUWP_Base_ltEXVqdxfqIGpEGjrikHPlAerIMH_System_Collections_IEnumerator_Reset, (HardwareJoystickMap_Platform_WindowsUWP_Base_ltEXVqdxfqIGpEGjrikHPlAerIMH * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4568, HardwareJoystickMap_Platform_WindowsUWP_Base_ltEXVqdxfqIGpEGjrikHPlAerIMH_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, HardwareJoystickMap_Platform_WindowsUWP_Base_ltEXVqdxfqIGpEGjrikHPlAerIMH_System_Collections_IEnumerator_get_Current, (HardwareJoystickMap_Platform_WindowsUWP_Base_ltEXVqdxfqIGpEGjrikHPlAerIMH * __this, MethodInfo * method)); DO_APP_FUNC(0x01F9F860, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_WindowsUWP_Base_Button_ *, HardwareJoystickMap_Platform_WindowsUWP_Base_ltEXVqdxfqIGpEGjrikHPlAerIMH_System_Collections_Generic_IEnumerable_Rewired_Data_Mapping_HardwareJoystickMap_Platform_WindowsUWP_Base_Button__GetEnumerator, (HardwareJoystickMap_Platform_WindowsUWP_Base_ltEXVqdxfqIGpEGjrikHPlAerIMH * __this, MethodInfo * method)); DO_APP_FUNC(0x01F9F860, IEnumerator *, HardwareJoystickMap_Platform_WindowsUWP_Base_ltEXVqdxfqIGpEGjrikHPlAerIMH_System_Collections_IEnumerable_GetEnumerator, (HardwareJoystickMap_Platform_WindowsUWP_Base_ltEXVqdxfqIGpEGjrikHPlAerIMH * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3B0, IList_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_ *, HardwareJoystickMap_Platform_WindowsUWP_get_variants_base, (HardwareJoystickMap_Platform_WindowsUWP * __this, MethodInfo * method)); -DO_APP_FUNC(0x01F8FCB0, bool, HardwareJoystickMap_Platform_WindowsUWP_Matches, (HardwareJoystickMap_Platform_WindowsUWP * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t variantIndex, HardwareJoystickMap_Platform * platformMap, MethodInfo * method)); +DO_APP_FUNC(0x01F8FCB0, bool, HardwareJoystickMap_Platform_WindowsUWP_Matches, (HardwareJoystickMap_Platform_WindowsUWP * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t * variantIndex, HardwareJoystickMap_Platform * * platformMap, MethodInfo * method)); DO_APP_FUNC(0x01F9F9A0, Object *, HardwareJoystickMap_Platform_WindowsUWP_DeepClone, (HardwareJoystickMap_Platform_WindowsUWP * __this, MethodInfo * method)); DO_APP_FUNC(0x01F9FA10, void, HardwareJoystickMap_Platform_WindowsUWP_CopyVars, (HardwareJoystickMap_Platform_WindowsUWP * __this, HardwareJoystickMap_Platform * destination, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_WindowsUWP__ctor, (HardwareJoystickMap_Platform_WindowsUWP * __this, MethodInfo * method)); @@ -47257,18 +55600,20 @@ DO_APP_FUNC(0x01F8BDF0, bool, HardwareJoystickMap_Platform_Fallback_Base_get_dis DO_APP_FUNC(0x01F8BE10, bool, HardwareJoystickMap_Platform_Fallback_Base_get_isAllowed, (HardwareJoystickMap_Platform_Fallback_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, HardwareJoystickMap_Elements_Base *, HardwareJoystickMap_Platform_Fallback_Base_get_elements_base, (HardwareJoystickMap_Platform_Fallback_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x003CB690, IList_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_ *, HardwareJoystickMap_Platform_Fallback_Base_get_variants_base, (HardwareJoystickMap_Platform_Fallback_Base * __this, MethodInfo * method)); -DO_APP_FUNC(0x01F8CE50, bool, HardwareJoystickMap_Platform_Fallback_Base_Matches, (HardwareJoystickMap_Platform_Fallback_Base * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t variantIndex, HardwareJoystickMap_Platform * platformMap, MethodInfo * method)); +DO_APP_FUNC(0x01F8CE50, bool, HardwareJoystickMap_Platform_Fallback_Base_Matches, (HardwareJoystickMap_Platform_Fallback_Base * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t * variantIndex, HardwareJoystickMap_Platform * * platformMap, MethodInfo * method)); DO_APP_FUNC(0x01F9FC90, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Fallback_Base_Axis_ *, HardwareJoystickMap_Platform_Fallback_Base_IterateAxes, (HardwareJoystickMap_Platform_Fallback_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x01F9FD50, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Fallback_Base_Button_ *, HardwareJoystickMap_Platform_Fallback_Base_IterateButtons, (HardwareJoystickMap_Platform_Fallback_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x01F9FE10, String__Array *, HardwareJoystickMap_Platform_Fallback_Base_GetAxisNames, (HardwareJoystickMap_Platform_Fallback_Base * __this, ControllerElementIdentifier__Array * identifiers, MethodInfo * method)); DO_APP_FUNC(0x01FA0010, String__Array *, HardwareJoystickMap_Platform_Fallback_Base_GetEffectiveButtonNames, (HardwareJoystickMap_Platform_Fallback_Base * __this, ControllerElementIdentifier__Array * identifiers, MethodInfo * method)); DO_APP_FUNC(0x01FA01F0, bool, HardwareJoystickMap_Platform_Fallback_Base_IsElementIdentifierMapped, (HardwareJoystickMap_Platform_Fallback_Base * __this, int32_t elementIdentifierId, MethodInfo * method)); -DO_APP_FUNC(0x01FA04B0, void, HardwareJoystickMap_Platform_Fallback_Base_GetGameElementIdentifierIdMappings, (HardwareJoystickMap_Platform_Fallback_Base * __this, Int32__Array * buttons, Int32__Array * axes, MethodInfo * method)); +DO_APP_FUNC(0x01FA04B0, void, HardwareJoystickMap_Platform_Fallback_Base_GetGameElementIdentifierIdMappings, (HardwareJoystickMap_Platform_Fallback_Base * __this, Int32__Array * * buttons, Int32__Array * * axes, MethodInfo * method)); DO_APP_FUNC(0x01FA09F0, AxisCalibrationData__Array *, HardwareJoystickMap_Platform_Fallback_Base_GetAxisCalibrationData, (HardwareJoystickMap_Platform_Fallback_Base * __this, MethodInfo * method)); -DO_APP_FUNC(0x01FA0D80, void, HardwareJoystickMap_Platform_Fallback_Base_GetAxisData, (HardwareJoystickMap_Platform_Fallback_Base * __this, AxisRange__Enum__Array * axisRanges, HardwareAxisInfo__Array * axisInfos, MethodInfo * method)); -DO_APP_FUNC(0x01FA11C0, void, HardwareJoystickMap_Platform_Fallback_Base_GetButtonData, (HardwareJoystickMap_Platform_Fallback_Base * __this, HardwareButtonInfo__Array * buttonInfos, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4550, HardwareJoystickMap_Platform_Fallback_Base_GetAxisCalibrationData__MethodInfo); +DO_APP_FUNC(0x01FA0D80, void, HardwareJoystickMap_Platform_Fallback_Base_GetAxisData, (HardwareJoystickMap_Platform_Fallback_Base * __this, AxisRange__Enum__Array * * axisRanges, HardwareAxisInfo__Array * * axisInfos, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4558, HardwareJoystickMap_Platform_Fallback_Base_GetAxisData__MethodInfo); +DO_APP_FUNC(0x01FA11C0, void, HardwareJoystickMap_Platform_Fallback_Base_GetButtonData, (HardwareJoystickMap_Platform_Fallback_Base * __this, HardwareButtonInfo__Array * * buttonInfos, MethodInfo * method)); DO_APP_FUNC(0x01F8E6C0, ControllerElementType__Enum, HardwareJoystickMap_Platform_Fallback_Base_GetEffectiveElementIdentifierType, (HardwareJoystickMap_Platform_Fallback_Base * __this, ControllerElementIdentifier * elementIdentifier, MethodInfo * method)); -DO_APP_FUNC(0x01F8E6F0, bool, HardwareJoystickMap_Platform_Fallback_Base_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_Fallback_Base * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum axisRange, MethodInfo * method)); +DO_APP_FUNC(0x01F8E6F0, bool, HardwareJoystickMap_Platform_Fallback_Base_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_Fallback_Base * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum * axisRange, MethodInfo * method)); DO_APP_FUNC(0x01FA1430, Object *, HardwareJoystickMap_Platform_Fallback_Base_DeepClone, (HardwareJoystickMap_Platform_Fallback_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x01FA14A0, void, HardwareJoystickMap_Platform_Fallback_Base_CopyVars, (HardwareJoystickMap_Platform_Fallback_Base * __this, HardwareJoystickMap_Platform * destination, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_Fallback_Base__ctor, (HardwareJoystickMap_Platform_Fallback_Base * __this, MethodInfo * method)); @@ -47277,14 +55622,15 @@ DO_APP_FUNC(0x01FA1670, bool, HardwareJoystickMap_Platform_Fallback_Base_Matchin DO_APP_FUNC(0x01FA1720, bool, HardwareJoystickMap_Platform_Fallback_Base_MatchingCriteria_Matches, (HardwareJoystickMap_Platform_Fallback_Base_MatchingCriteria * __this, BridgedControllerHWInfo * bridgedControllerHWInfo, bool strictMatch, MethodInfo * method)); DO_APP_FUNC(0x003CB690, int32_t, HardwareJoystickMap_Platform_Fallback_Base_MatchingCriteria_get_alternateElementCount, (HardwareJoystickMap_Platform_Fallback_Base_MatchingCriteria * __this, MethodInfo * method)); DO_APP_FUNC(0x003CB690, HardwareJoystickMap_MatchingCriteria_Base_ElementCount_Base *, HardwareJoystickMap_Platform_Fallback_Base_MatchingCriteria_GetAlternateElementCount, (HardwareJoystickMap_Platform_Fallback_Base_MatchingCriteria * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01F94610, bool, HardwareJoystickMap_Platform_Fallback_Base_MatchingCriteria_ElementCountsMatch, (HardwareJoystickMap_Platform_Fallback_Base_MatchingCriteria * __this, BridgedControllerHWInfo * bridgedControllerHWInfo, bool alternateMatched, MethodInfo * method)); +DO_APP_FUNC(0x01F94610, bool, HardwareJoystickMap_Platform_Fallback_Base_MatchingCriteria_ElementCountsMatch, (HardwareJoystickMap_Platform_Fallback_Base_MatchingCriteria * __this, BridgedControllerHWInfo * bridgedControllerHWInfo, bool * alternateMatched, MethodInfo * method)); DO_APP_FUNC(0x01FA18A0, Object *, HardwareJoystickMap_Platform_Fallback_Base_MatchingCriteria_DeepClone, (HardwareJoystickMap_Platform_Fallback_Base_MatchingCriteria * __this, MethodInfo * method)); DO_APP_FUNC(0x01FA1910, void, HardwareJoystickMap_Platform_Fallback_Base_MatchingCriteria_CopyVars, (HardwareJoystickMap_Platform_Fallback_Base_MatchingCriteria * __this, HardwareJoystickMap_MatchingCriteria_Base * destination, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_Fallback_Base_MatchingCriteria__ctor, (HardwareJoystickMap_Platform_Fallback_Base_MatchingCriteria * __this, MethodInfo * method)); DO_APP_FUNC(0x006BD920, int32_t, HardwareJoystickMap_Platform_Fallback_Base_Elements_get_buttonCount, (HardwareJoystickMap_Platform_Fallback_Base_Elements * __this, MethodInfo * method)); DO_APP_FUNC(0x006BD6A0, int32_t, HardwareJoystickMap_Platform_Fallback_Base_Elements_get_axisCount, (HardwareJoystickMap_Platform_Fallback_Base_Elements * __this, MethodInfo * method)); DO_APP_FUNC(0x01F949D0, ControllerElementType__Enum, HardwareJoystickMap_Platform_Fallback_Base_Elements_GetEffectiveElementIdentifierType, (HardwareJoystickMap_Platform_Fallback_Base_Elements * __this, ControllerElementIdentifier * elementIdentifier, MethodInfo * method)); -DO_APP_FUNC(0x01FA1C10, bool, HardwareJoystickMap_Platform_Fallback_Base_Elements_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_Fallback_Base_Elements * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum axisRange, MethodInfo * method)); +DO_APP_FUNC(0x01FA1C10, bool, HardwareJoystickMap_Platform_Fallback_Base_Elements_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_Fallback_Base_Elements * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum * axisRange, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB44C0, HardwareJoystickMap_Platform_Fallback_Base_Elements_GetEffectiveAxisRange__MethodInfo); DO_APP_FUNC(0x01FA1DA0, Object *, HardwareJoystickMap_Platform_Fallback_Base_Elements_DeepClone, (HardwareJoystickMap_Platform_Fallback_Base_Elements * __this, MethodInfo * method)); DO_APP_FUNC(0x01FA1E10, void, HardwareJoystickMap_Platform_Fallback_Base_Elements_CopyVars, (HardwareJoystickMap_Platform_Fallback_Base_Elements * __this, HardwareJoystickMap_Elements_Base * destination, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_Fallback_Base_Elements__ctor, (HardwareJoystickMap_Platform_Fallback_Base_Elements * __this, MethodInfo * method)); @@ -47303,6 +55649,7 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_Fallback_Base_UyTOHSk DO_APP_FUNC(0x01F950F0, bool, HardwareJoystickMap_Platform_Fallback_Base_UyTOHSkZjmeqFScCZhtCNDkIxcBh_MoveNext, (HardwareJoystickMap_Platform_Fallback_Base_UyTOHSkZjmeqFScCZhtCNDkIxcBh * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, HardwareJoystickMap_Platform_Fallback_Base_Axis *, HardwareJoystickMap_Platform_Fallback_Base_UyTOHSkZjmeqFScCZhtCNDkIxcBh_System_Collections_Generic_IEnumerator_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Fallback_Base_Axis__get_Current, (HardwareJoystickMap_Platform_Fallback_Base_UyTOHSkZjmeqFScCZhtCNDkIxcBh * __this, MethodInfo * method)); DO_APP_FUNC(0x01FA2640, void, HardwareJoystickMap_Platform_Fallback_Base_UyTOHSkZjmeqFScCZhtCNDkIxcBh_System_Collections_IEnumerator_Reset, (HardwareJoystickMap_Platform_Fallback_Base_UyTOHSkZjmeqFScCZhtCNDkIxcBh * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4488, HardwareJoystickMap_Platform_Fallback_Base_UyTOHSkZjmeqFScCZhtCNDkIxcBh_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, HardwareJoystickMap_Platform_Fallback_Base_UyTOHSkZjmeqFScCZhtCNDkIxcBh_System_Collections_IEnumerator_get_Current, (HardwareJoystickMap_Platform_Fallback_Base_UyTOHSkZjmeqFScCZhtCNDkIxcBh * __this, MethodInfo * method)); DO_APP_FUNC(0x01FA2690, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Fallback_Base_Axis_ *, HardwareJoystickMap_Platform_Fallback_Base_UyTOHSkZjmeqFScCZhtCNDkIxcBh_System_Collections_Generic_IEnumerable_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Fallback_Base_Axis__GetEnumerator, (HardwareJoystickMap_Platform_Fallback_Base_UyTOHSkZjmeqFScCZhtCNDkIxcBh * __this, MethodInfo * method)); DO_APP_FUNC(0x01FA2690, IEnumerator *, HardwareJoystickMap_Platform_Fallback_Base_UyTOHSkZjmeqFScCZhtCNDkIxcBh_System_Collections_IEnumerable_GetEnumerator, (HardwareJoystickMap_Platform_Fallback_Base_UyTOHSkZjmeqFScCZhtCNDkIxcBh * __this, MethodInfo * method)); @@ -47311,11 +55658,12 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_Fallback_Base_DLSCrIj DO_APP_FUNC(0x01F95390, bool, HardwareJoystickMap_Platform_Fallback_Base_DLSCrIjrPFdXZalyfgVlPCeBIuiu_MoveNext, (HardwareJoystickMap_Platform_Fallback_Base_DLSCrIjrPFdXZalyfgVlPCeBIuiu * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, HardwareJoystickMap_Platform_Fallback_Base_Button *, HardwareJoystickMap_Platform_Fallback_Base_DLSCrIjrPFdXZalyfgVlPCeBIuiu_System_Collections_Generic_IEnumerator_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Fallback_Base_Button__get_Current, (HardwareJoystickMap_Platform_Fallback_Base_DLSCrIjrPFdXZalyfgVlPCeBIuiu * __this, MethodInfo * method)); DO_APP_FUNC(0x01FA27D0, void, HardwareJoystickMap_Platform_Fallback_Base_DLSCrIjrPFdXZalyfgVlPCeBIuiu_System_Collections_IEnumerator_Reset, (HardwareJoystickMap_Platform_Fallback_Base_DLSCrIjrPFdXZalyfgVlPCeBIuiu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4478, HardwareJoystickMap_Platform_Fallback_Base_DLSCrIjrPFdXZalyfgVlPCeBIuiu_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, HardwareJoystickMap_Platform_Fallback_Base_DLSCrIjrPFdXZalyfgVlPCeBIuiu_System_Collections_IEnumerator_get_Current, (HardwareJoystickMap_Platform_Fallback_Base_DLSCrIjrPFdXZalyfgVlPCeBIuiu * __this, MethodInfo * method)); DO_APP_FUNC(0x01FA2820, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Fallback_Base_Button_ *, HardwareJoystickMap_Platform_Fallback_Base_DLSCrIjrPFdXZalyfgVlPCeBIuiu_System_Collections_Generic_IEnumerable_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Fallback_Base_Button__GetEnumerator, (HardwareJoystickMap_Platform_Fallback_Base_DLSCrIjrPFdXZalyfgVlPCeBIuiu * __this, MethodInfo * method)); DO_APP_FUNC(0x01FA2820, IEnumerator *, HardwareJoystickMap_Platform_Fallback_Base_DLSCrIjrPFdXZalyfgVlPCeBIuiu_System_Collections_IEnumerable_GetEnumerator, (HardwareJoystickMap_Platform_Fallback_Base_DLSCrIjrPFdXZalyfgVlPCeBIuiu * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3B0, IList_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_ *, HardwareJoystickMap_Platform_Fallback_get_variants_base, (HardwareJoystickMap_Platform_Fallback * __this, MethodInfo * method)); -DO_APP_FUNC(0x01F8FCB0, bool, HardwareJoystickMap_Platform_Fallback_Matches, (HardwareJoystickMap_Platform_Fallback * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t variantIndex, HardwareJoystickMap_Platform * platformMap, MethodInfo * method)); +DO_APP_FUNC(0x01F8FCB0, bool, HardwareJoystickMap_Platform_Fallback_Matches, (HardwareJoystickMap_Platform_Fallback * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t * variantIndex, HardwareJoystickMap_Platform * * platformMap, MethodInfo * method)); DO_APP_FUNC(0x01FA2960, Object *, HardwareJoystickMap_Platform_Fallback_DeepClone, (HardwareJoystickMap_Platform_Fallback * __this, MethodInfo * method)); DO_APP_FUNC(0x01FA29D0, void, HardwareJoystickMap_Platform_Fallback_CopyVars, (HardwareJoystickMap_Platform_Fallback * __this, HardwareJoystickMap_Platform * destination, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_Fallback__ctor, (HardwareJoystickMap_Platform_Fallback * __this, MethodInfo * method)); @@ -47326,7 +55674,7 @@ DO_APP_FUNC(0x0059DF50, bool, HardwareJoystickMap_Platform_Custom_MatchingCriter DO_APP_FUNC(0x01FA2C80, bool, HardwareJoystickMap_Platform_Custom_MatchingCriteria_Matches, (HardwareJoystickMap_Platform_Custom_MatchingCriteria * __this, BridgedControllerHWInfo * bridgedControllerHWInfo, bool strictMatch, MethodInfo * method)); DO_APP_FUNC(0x003CB690, int32_t, HardwareJoystickMap_Platform_Custom_MatchingCriteria_get_alternateElementCount, (HardwareJoystickMap_Platform_Custom_MatchingCriteria * __this, MethodInfo * method)); DO_APP_FUNC(0x003CB690, HardwareJoystickMap_MatchingCriteria_Base_ElementCount_Base *, HardwareJoystickMap_Platform_Custom_MatchingCriteria_GetAlternateElementCount, (HardwareJoystickMap_Platform_Custom_MatchingCriteria * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01F94610, bool, HardwareJoystickMap_Platform_Custom_MatchingCriteria_ElementCountsMatch, (HardwareJoystickMap_Platform_Custom_MatchingCriteria * __this, BridgedControllerHWInfo * bridgedControllerHWInfo, bool alternateMatched, MethodInfo * method)); +DO_APP_FUNC(0x01F94610, bool, HardwareJoystickMap_Platform_Custom_MatchingCriteria_ElementCountsMatch, (HardwareJoystickMap_Platform_Custom_MatchingCriteria * __this, BridgedControllerHWInfo * bridgedControllerHWInfo, bool * alternateMatched, MethodInfo * method)); DO_APP_FUNC(0x01FA2D00, void, HardwareJoystickMap_Platform_Custom_MatchingCriteria_CopyVars, (HardwareJoystickMap_Platform_Custom_MatchingCriteria * __this, HardwareJoystickMap_MatchingCriteria_Base * destination, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_Custom_MatchingCriteria__ctor, (HardwareJoystickMap_Platform_Custom_MatchingCriteria * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_Custom_Elements__ctor, (HardwareJoystickMap_Platform_Custom_Elements * __this, MethodInfo * method)); @@ -47350,18 +55698,20 @@ DO_APP_FUNC(0x01F8BDF0, bool, HardwareJoystickMap_Platform_XboxOne_Base_get_disa DO_APP_FUNC(0x01F8BE10, bool, HardwareJoystickMap_Platform_XboxOne_Base_get_isAllowed, (HardwareJoystickMap_Platform_XboxOne_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, HardwareJoystickMap_Elements_Base *, HardwareJoystickMap_Platform_XboxOne_Base_get_elements_base, (HardwareJoystickMap_Platform_XboxOne_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x003CB690, IList_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_ *, HardwareJoystickMap_Platform_XboxOne_Base_get_variants_base, (HardwareJoystickMap_Platform_XboxOne_Base * __this, MethodInfo * method)); -DO_APP_FUNC(0x01F8CE50, bool, HardwareJoystickMap_Platform_XboxOne_Base_Matches, (HardwareJoystickMap_Platform_XboxOne_Base * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t variantIndex, HardwareJoystickMap_Platform * platformMap, MethodInfo * method)); +DO_APP_FUNC(0x01F8CE50, bool, HardwareJoystickMap_Platform_XboxOne_Base_Matches, (HardwareJoystickMap_Platform_XboxOne_Base * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t * variantIndex, HardwareJoystickMap_Platform * * platformMap, MethodInfo * method)); DO_APP_FUNC(0x01FA3730, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Axis_ *, HardwareJoystickMap_Platform_XboxOne_Base_IterateAxes, (HardwareJoystickMap_Platform_XboxOne_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x01FA37F0, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Button_ *, HardwareJoystickMap_Platform_XboxOne_Base_IterateButtons, (HardwareJoystickMap_Platform_XboxOne_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x01FA38B0, String__Array *, HardwareJoystickMap_Platform_XboxOne_Base_GetAxisNames, (HardwareJoystickMap_Platform_XboxOne_Base * __this, ControllerElementIdentifier__Array * identifiers, MethodInfo * method)); DO_APP_FUNC(0x01FA3AB0, String__Array *, HardwareJoystickMap_Platform_XboxOne_Base_GetEffectiveButtonNames, (HardwareJoystickMap_Platform_XboxOne_Base * __this, ControllerElementIdentifier__Array * identifiers, MethodInfo * method)); DO_APP_FUNC(0x01FA3C90, bool, HardwareJoystickMap_Platform_XboxOne_Base_IsElementIdentifierMapped, (HardwareJoystickMap_Platform_XboxOne_Base * __this, int32_t elementIdentifierId, MethodInfo * method)); -DO_APP_FUNC(0x01FA3FE0, void, HardwareJoystickMap_Platform_XboxOne_Base_GetGameElementIdentifierIdMappings, (HardwareJoystickMap_Platform_XboxOne_Base * __this, Int32__Array * buttons, Int32__Array * axes, MethodInfo * method)); +DO_APP_FUNC(0x01FA3FE0, void, HardwareJoystickMap_Platform_XboxOne_Base_GetGameElementIdentifierIdMappings, (HardwareJoystickMap_Platform_XboxOne_Base * __this, Int32__Array * * buttons, Int32__Array * * axes, MethodInfo * method)); DO_APP_FUNC(0x01FA45B0, AxisCalibrationData__Array *, HardwareJoystickMap_Platform_XboxOne_Base_GetAxisCalibrationData, (HardwareJoystickMap_Platform_XboxOne_Base * __this, MethodInfo * method)); -DO_APP_FUNC(0x01FA4930, void, HardwareJoystickMap_Platform_XboxOne_Base_GetAxisData, (HardwareJoystickMap_Platform_XboxOne_Base * __this, AxisRange__Enum__Array * axisRanges, HardwareAxisInfo__Array * axisInfos, MethodInfo * method)); -DO_APP_FUNC(0x01FA4D60, void, HardwareJoystickMap_Platform_XboxOne_Base_GetButtonData, (HardwareJoystickMap_Platform_XboxOne_Base * __this, HardwareButtonInfo__Array * buttonInfos, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4400, HardwareJoystickMap_Platform_XboxOne_Base_GetAxisCalibrationData__MethodInfo); +DO_APP_FUNC(0x01FA4930, void, HardwareJoystickMap_Platform_XboxOne_Base_GetAxisData, (HardwareJoystickMap_Platform_XboxOne_Base * __this, AxisRange__Enum__Array * * axisRanges, HardwareAxisInfo__Array * * axisInfos, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB43E8, HardwareJoystickMap_Platform_XboxOne_Base_GetAxisData__MethodInfo); +DO_APP_FUNC(0x01FA4D60, void, HardwareJoystickMap_Platform_XboxOne_Base_GetButtonData, (HardwareJoystickMap_Platform_XboxOne_Base * __this, HardwareButtonInfo__Array * * buttonInfos, MethodInfo * method)); DO_APP_FUNC(0x01F8E6C0, ControllerElementType__Enum, HardwareJoystickMap_Platform_XboxOne_Base_GetEffectiveElementIdentifierType, (HardwareJoystickMap_Platform_XboxOne_Base * __this, ControllerElementIdentifier * elementIdentifier, MethodInfo * method)); -DO_APP_FUNC(0x01F8E6F0, bool, HardwareJoystickMap_Platform_XboxOne_Base_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_XboxOne_Base * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum axisRange, MethodInfo * method)); +DO_APP_FUNC(0x01F8E6F0, bool, HardwareJoystickMap_Platform_XboxOne_Base_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_XboxOne_Base * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum * axisRange, MethodInfo * method)); DO_APP_FUNC(0x01FA4FD0, Object *, HardwareJoystickMap_Platform_XboxOne_Base_DeepClone, (HardwareJoystickMap_Platform_XboxOne_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x01FA5040, void, HardwareJoystickMap_Platform_XboxOne_Base_CopyVars, (HardwareJoystickMap_Platform_XboxOne_Base * __this, HardwareJoystickMap_Platform * destination, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_XboxOne_Base__ctor, (HardwareJoystickMap_Platform_XboxOne_Base * __this, MethodInfo * method)); @@ -47374,7 +55724,8 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_XboxOne_Base_Matching DO_APP_FUNC(0x006BD920, int32_t, HardwareJoystickMap_Platform_XboxOne_Base_Elements_get_buttonCount, (HardwareJoystickMap_Platform_XboxOne_Base_Elements * __this, MethodInfo * method)); DO_APP_FUNC(0x006BD6A0, int32_t, HardwareJoystickMap_Platform_XboxOne_Base_Elements_get_axisCount, (HardwareJoystickMap_Platform_XboxOne_Base_Elements * __this, MethodInfo * method)); DO_APP_FUNC(0x01F949D0, ControllerElementType__Enum, HardwareJoystickMap_Platform_XboxOne_Base_Elements_GetEffectiveElementIdentifierType, (HardwareJoystickMap_Platform_XboxOne_Base_Elements * __this, ControllerElementIdentifier * elementIdentifier, MethodInfo * method)); -DO_APP_FUNC(0x01FA5510, bool, HardwareJoystickMap_Platform_XboxOne_Base_Elements_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_XboxOne_Base_Elements * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum axisRange, MethodInfo * method)); +DO_APP_FUNC(0x01FA5510, bool, HardwareJoystickMap_Platform_XboxOne_Base_Elements_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_XboxOne_Base_Elements * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum * axisRange, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFBBA0, HardwareJoystickMap_Platform_XboxOne_Base_Elements_GetEffectiveAxisRange__MethodInfo); DO_APP_FUNC(0x01FA56A0, Object *, HardwareJoystickMap_Platform_XboxOne_Base_Elements_DeepClone, (HardwareJoystickMap_Platform_XboxOne_Base_Elements * __this, MethodInfo * method)); DO_APP_FUNC(0x01FA5710, void, HardwareJoystickMap_Platform_XboxOne_Base_Elements_CopyVars, (HardwareJoystickMap_Platform_XboxOne_Base_Elements * __this, HardwareJoystickMap_Elements_Base * destination, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_XboxOne_Base_Elements__ctor, (HardwareJoystickMap_Platform_XboxOne_Base_Elements * __this, MethodInfo * method)); @@ -47389,6 +55740,7 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_XboxOne_Base_NFQkPtfX DO_APP_FUNC(0x01F950F0, bool, HardwareJoystickMap_Platform_XboxOne_Base_NFQkPtfXqdhdFLpMBlkRQWGtvRQR_MoveNext, (HardwareJoystickMap_Platform_XboxOne_Base_NFQkPtfXqdhdFLpMBlkRQWGtvRQR * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, HardwareJoystickMap_Platform_Custom_Axis *, HardwareJoystickMap_Platform_XboxOne_Base_NFQkPtfXqdhdFLpMBlkRQWGtvRQR_System_Collections_Generic_IEnumerator_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Axis__get_Current, (HardwareJoystickMap_Platform_XboxOne_Base_NFQkPtfXqdhdFLpMBlkRQWGtvRQR * __this, MethodInfo * method)); DO_APP_FUNC(0x01FA59F0, void, HardwareJoystickMap_Platform_XboxOne_Base_NFQkPtfXqdhdFLpMBlkRQWGtvRQR_System_Collections_IEnumerator_Reset, (HardwareJoystickMap_Platform_XboxOne_Base_NFQkPtfXqdhdFLpMBlkRQWGtvRQR * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFBBE8, HardwareJoystickMap_Platform_XboxOne_Base_NFQkPtfXqdhdFLpMBlkRQWGtvRQR_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, HardwareJoystickMap_Platform_XboxOne_Base_NFQkPtfXqdhdFLpMBlkRQWGtvRQR_System_Collections_IEnumerator_get_Current, (HardwareJoystickMap_Platform_XboxOne_Base_NFQkPtfXqdhdFLpMBlkRQWGtvRQR * __this, MethodInfo * method)); DO_APP_FUNC(0x01FA5A40, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Axis_ *, HardwareJoystickMap_Platform_XboxOne_Base_NFQkPtfXqdhdFLpMBlkRQWGtvRQR_System_Collections_Generic_IEnumerable_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Axis__GetEnumerator, (HardwareJoystickMap_Platform_XboxOne_Base_NFQkPtfXqdhdFLpMBlkRQWGtvRQR * __this, MethodInfo * method)); DO_APP_FUNC(0x01FA5A40, IEnumerator *, HardwareJoystickMap_Platform_XboxOne_Base_NFQkPtfXqdhdFLpMBlkRQWGtvRQR_System_Collections_IEnumerable_GetEnumerator, (HardwareJoystickMap_Platform_XboxOne_Base_NFQkPtfXqdhdFLpMBlkRQWGtvRQR * __this, MethodInfo * method)); @@ -47397,11 +55749,12 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_XboxOne_Base_KwWXDxYG DO_APP_FUNC(0x01F95390, bool, HardwareJoystickMap_Platform_XboxOne_Base_KwWXDxYGBOIeZiLtjfDlSBydHoASA_MoveNext, (HardwareJoystickMap_Platform_XboxOne_Base_KwWXDxYGBOIeZiLtjfDlSBydHoASA * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, HardwareJoystickMap_Platform_Custom_Button *, HardwareJoystickMap_Platform_XboxOne_Base_KwWXDxYGBOIeZiLtjfDlSBydHoASA_System_Collections_Generic_IEnumerator_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Button__get_Current, (HardwareJoystickMap_Platform_XboxOne_Base_KwWXDxYGBOIeZiLtjfDlSBydHoASA * __this, MethodInfo * method)); DO_APP_FUNC(0x01FA5B80, void, HardwareJoystickMap_Platform_XboxOne_Base_KwWXDxYGBOIeZiLtjfDlSBydHoASA_System_Collections_IEnumerator_Reset, (HardwareJoystickMap_Platform_XboxOne_Base_KwWXDxYGBOIeZiLtjfDlSBydHoASA * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFBB58, HardwareJoystickMap_Platform_XboxOne_Base_KwWXDxYGBOIeZiLtjfDlSBydHoASA_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, HardwareJoystickMap_Platform_XboxOne_Base_KwWXDxYGBOIeZiLtjfDlSBydHoASA_System_Collections_IEnumerator_get_Current, (HardwareJoystickMap_Platform_XboxOne_Base_KwWXDxYGBOIeZiLtjfDlSBydHoASA * __this, MethodInfo * method)); DO_APP_FUNC(0x01FA5BD0, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Button_ *, HardwareJoystickMap_Platform_XboxOne_Base_KwWXDxYGBOIeZiLtjfDlSBydHoASA_System_Collections_Generic_IEnumerable_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Button__GetEnumerator, (HardwareJoystickMap_Platform_XboxOne_Base_KwWXDxYGBOIeZiLtjfDlSBydHoASA * __this, MethodInfo * method)); DO_APP_FUNC(0x01FA5BD0, IEnumerator *, HardwareJoystickMap_Platform_XboxOne_Base_KwWXDxYGBOIeZiLtjfDlSBydHoASA_System_Collections_IEnumerable_GetEnumerator, (HardwareJoystickMap_Platform_XboxOne_Base_KwWXDxYGBOIeZiLtjfDlSBydHoASA * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7320, IList_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_ *, HardwareJoystickMap_Platform_XboxOne_get_variants_base, (HardwareJoystickMap_Platform_XboxOne * __this, MethodInfo * method)); -DO_APP_FUNC(0x01FA5D10, bool, HardwareJoystickMap_Platform_XboxOne_Matches, (HardwareJoystickMap_Platform_XboxOne * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t variantIndex, HardwareJoystickMap_Platform * platformMap, MethodInfo * method)); +DO_APP_FUNC(0x01FA5D10, bool, HardwareJoystickMap_Platform_XboxOne_Matches, (HardwareJoystickMap_Platform_XboxOne * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t * variantIndex, HardwareJoystickMap_Platform * * platformMap, MethodInfo * method)); DO_APP_FUNC(0x01FA5EC0, Object *, HardwareJoystickMap_Platform_XboxOne_DeepClone, (HardwareJoystickMap_Platform_XboxOne * __this, MethodInfo * method)); DO_APP_FUNC(0x01FA5F30, void, HardwareJoystickMap_Platform_XboxOne_CopyVars, (HardwareJoystickMap_Platform_XboxOne * __this, HardwareJoystickMap_Platform * destination, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_XboxOne__ctor, (HardwareJoystickMap_Platform_XboxOne * __this, MethodInfo * method)); @@ -47417,18 +55770,20 @@ DO_APP_FUNC(0x01F8BDF0, bool, HardwareJoystickMap_Platform_PS4_Base_get_disabled DO_APP_FUNC(0x01F8BE10, bool, HardwareJoystickMap_Platform_PS4_Base_get_isAllowed, (HardwareJoystickMap_Platform_PS4_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, HardwareJoystickMap_Elements_Base *, HardwareJoystickMap_Platform_PS4_Base_get_elements_base, (HardwareJoystickMap_Platform_PS4_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x003CB690, IList_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_ *, HardwareJoystickMap_Platform_PS4_Base_get_variants_base, (HardwareJoystickMap_Platform_PS4_Base * __this, MethodInfo * method)); -DO_APP_FUNC(0x01F8CE50, bool, HardwareJoystickMap_Platform_PS4_Base_Matches, (HardwareJoystickMap_Platform_PS4_Base * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t variantIndex, HardwareJoystickMap_Platform * platformMap, MethodInfo * method)); +DO_APP_FUNC(0x01F8CE50, bool, HardwareJoystickMap_Platform_PS4_Base_Matches, (HardwareJoystickMap_Platform_PS4_Base * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t * variantIndex, HardwareJoystickMap_Platform * * platformMap, MethodInfo * method)); DO_APP_FUNC(0x01FA6560, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Axis_ *, HardwareJoystickMap_Platform_PS4_Base_IterateAxes, (HardwareJoystickMap_Platform_PS4_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x01FA6620, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Button_ *, HardwareJoystickMap_Platform_PS4_Base_IterateButtons, (HardwareJoystickMap_Platform_PS4_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x01FA66E0, String__Array *, HardwareJoystickMap_Platform_PS4_Base_GetAxisNames, (HardwareJoystickMap_Platform_PS4_Base * __this, ControllerElementIdentifier__Array * identifiers, MethodInfo * method)); DO_APP_FUNC(0x01FA68E0, String__Array *, HardwareJoystickMap_Platform_PS4_Base_GetEffectiveButtonNames, (HardwareJoystickMap_Platform_PS4_Base * __this, ControllerElementIdentifier__Array * identifiers, MethodInfo * method)); DO_APP_FUNC(0x01FA6AC0, bool, HardwareJoystickMap_Platform_PS4_Base_IsElementIdentifierMapped, (HardwareJoystickMap_Platform_PS4_Base * __this, int32_t elementIdentifierId, MethodInfo * method)); -DO_APP_FUNC(0x01FA6E10, void, HardwareJoystickMap_Platform_PS4_Base_GetGameElementIdentifierIdMappings, (HardwareJoystickMap_Platform_PS4_Base * __this, Int32__Array * buttons, Int32__Array * axes, MethodInfo * method)); +DO_APP_FUNC(0x01FA6E10, void, HardwareJoystickMap_Platform_PS4_Base_GetGameElementIdentifierIdMappings, (HardwareJoystickMap_Platform_PS4_Base * __this, Int32__Array * * buttons, Int32__Array * * axes, MethodInfo * method)); DO_APP_FUNC(0x01FA73E0, AxisCalibrationData__Array *, HardwareJoystickMap_Platform_PS4_Base_GetAxisCalibrationData, (HardwareJoystickMap_Platform_PS4_Base * __this, MethodInfo * method)); -DO_APP_FUNC(0x01FA7760, void, HardwareJoystickMap_Platform_PS4_Base_GetAxisData, (HardwareJoystickMap_Platform_PS4_Base * __this, AxisRange__Enum__Array * axisRanges, HardwareAxisInfo__Array * axisInfos, MethodInfo * method)); -DO_APP_FUNC(0x01FA7B90, void, HardwareJoystickMap_Platform_PS4_Base_GetButtonData, (HardwareJoystickMap_Platform_PS4_Base * __this, HardwareButtonInfo__Array * buttonInfos, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFBAC0, HardwareJoystickMap_Platform_PS4_Base_GetAxisCalibrationData__MethodInfo); +DO_APP_FUNC(0x01FA7760, void, HardwareJoystickMap_Platform_PS4_Base_GetAxisData, (HardwareJoystickMap_Platform_PS4_Base * __this, AxisRange__Enum__Array * * axisRanges, HardwareAxisInfo__Array * * axisInfos, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFBAB8, HardwareJoystickMap_Platform_PS4_Base_GetAxisData__MethodInfo); +DO_APP_FUNC(0x01FA7B90, void, HardwareJoystickMap_Platform_PS4_Base_GetButtonData, (HardwareJoystickMap_Platform_PS4_Base * __this, HardwareButtonInfo__Array * * buttonInfos, MethodInfo * method)); DO_APP_FUNC(0x01F8E6C0, ControllerElementType__Enum, HardwareJoystickMap_Platform_PS4_Base_GetEffectiveElementIdentifierType, (HardwareJoystickMap_Platform_PS4_Base * __this, ControllerElementIdentifier * elementIdentifier, MethodInfo * method)); -DO_APP_FUNC(0x01F8E6F0, bool, HardwareJoystickMap_Platform_PS4_Base_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_PS4_Base * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum axisRange, MethodInfo * method)); +DO_APP_FUNC(0x01F8E6F0, bool, HardwareJoystickMap_Platform_PS4_Base_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_PS4_Base * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum * axisRange, MethodInfo * method)); DO_APP_FUNC(0x01FA7E00, Object *, HardwareJoystickMap_Platform_PS4_Base_DeepClone, (HardwareJoystickMap_Platform_PS4_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x01FA7E70, void, HardwareJoystickMap_Platform_PS4_Base_CopyVars, (HardwareJoystickMap_Platform_PS4_Base * __this, HardwareJoystickMap_Platform * destination, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_PS4_Base__ctor, (HardwareJoystickMap_Platform_PS4_Base * __this, MethodInfo * method)); @@ -47441,7 +55796,8 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_PS4_Base_MatchingCrit DO_APP_FUNC(0x006BD920, int32_t, HardwareJoystickMap_Platform_PS4_Base_Elements_get_buttonCount, (HardwareJoystickMap_Platform_PS4_Base_Elements * __this, MethodInfo * method)); DO_APP_FUNC(0x006BD6A0, int32_t, HardwareJoystickMap_Platform_PS4_Base_Elements_get_axisCount, (HardwareJoystickMap_Platform_PS4_Base_Elements * __this, MethodInfo * method)); DO_APP_FUNC(0x01F949D0, ControllerElementType__Enum, HardwareJoystickMap_Platform_PS4_Base_Elements_GetEffectiveElementIdentifierType, (HardwareJoystickMap_Platform_PS4_Base_Elements * __this, ControllerElementIdentifier * elementIdentifier, MethodInfo * method)); -DO_APP_FUNC(0x01FA8310, bool, HardwareJoystickMap_Platform_PS4_Base_Elements_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_PS4_Base_Elements * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum axisRange, MethodInfo * method)); +DO_APP_FUNC(0x01FA8310, bool, HardwareJoystickMap_Platform_PS4_Base_Elements_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_PS4_Base_Elements * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum * axisRange, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFBB08, HardwareJoystickMap_Platform_PS4_Base_Elements_GetEffectiveAxisRange__MethodInfo); DO_APP_FUNC(0x01FA84A0, Object *, HardwareJoystickMap_Platform_PS4_Base_Elements_DeepClone, (HardwareJoystickMap_Platform_PS4_Base_Elements * __this, MethodInfo * method)); DO_APP_FUNC(0x01FA8510, void, HardwareJoystickMap_Platform_PS4_Base_Elements_CopyVars, (HardwareJoystickMap_Platform_PS4_Base_Elements * __this, HardwareJoystickMap_Elements_Base * destination, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_PS4_Base_Elements__ctor, (HardwareJoystickMap_Platform_PS4_Base_Elements * __this, MethodInfo * method)); @@ -47456,6 +55812,7 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_PS4_Base_jeEjXYfQCSPU DO_APP_FUNC(0x01F950F0, bool, HardwareJoystickMap_Platform_PS4_Base_jeEjXYfQCSPUIraieEqTdhJZxifxA_MoveNext, (HardwareJoystickMap_Platform_PS4_Base_jeEjXYfQCSPUIraieEqTdhJZxifxA * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, HardwareJoystickMap_Platform_Custom_Axis *, HardwareJoystickMap_Platform_PS4_Base_jeEjXYfQCSPUIraieEqTdhJZxifxA_System_Collections_Generic_IEnumerator_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Axis__get_Current, (HardwareJoystickMap_Platform_PS4_Base_jeEjXYfQCSPUIraieEqTdhJZxifxA * __this, MethodInfo * method)); DO_APP_FUNC(0x01FA87F0, void, HardwareJoystickMap_Platform_PS4_Base_jeEjXYfQCSPUIraieEqTdhJZxifxA_System_Collections_IEnumerator_Reset, (HardwareJoystickMap_Platform_PS4_Base_jeEjXYfQCSPUIraieEqTdhJZxifxA * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFBA28, HardwareJoystickMap_Platform_PS4_Base_jeEjXYfQCSPUIraieEqTdhJZxifxA_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, HardwareJoystickMap_Platform_PS4_Base_jeEjXYfQCSPUIraieEqTdhJZxifxA_System_Collections_IEnumerator_get_Current, (HardwareJoystickMap_Platform_PS4_Base_jeEjXYfQCSPUIraieEqTdhJZxifxA * __this, MethodInfo * method)); DO_APP_FUNC(0x01FA8840, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Axis_ *, HardwareJoystickMap_Platform_PS4_Base_jeEjXYfQCSPUIraieEqTdhJZxifxA_System_Collections_Generic_IEnumerable_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Axis__GetEnumerator, (HardwareJoystickMap_Platform_PS4_Base_jeEjXYfQCSPUIraieEqTdhJZxifxA * __this, MethodInfo * method)); DO_APP_FUNC(0x01FA8840, IEnumerator *, HardwareJoystickMap_Platform_PS4_Base_jeEjXYfQCSPUIraieEqTdhJZxifxA_System_Collections_IEnumerable_GetEnumerator, (HardwareJoystickMap_Platform_PS4_Base_jeEjXYfQCSPUIraieEqTdhJZxifxA * __this, MethodInfo * method)); @@ -47464,11 +55821,12 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_PS4_Base_uHIGtSQjUBsU DO_APP_FUNC(0x01F95390, bool, HardwareJoystickMap_Platform_PS4_Base_uHIGtSQjUBsUxbAfXnVCaFyjtUTC_MoveNext, (HardwareJoystickMap_Platform_PS4_Base_uHIGtSQjUBsUxbAfXnVCaFyjtUTC * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, HardwareJoystickMap_Platform_Custom_Button *, HardwareJoystickMap_Platform_PS4_Base_uHIGtSQjUBsUxbAfXnVCaFyjtUTC_System_Collections_Generic_IEnumerator_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Button__get_Current, (HardwareJoystickMap_Platform_PS4_Base_uHIGtSQjUBsUxbAfXnVCaFyjtUTC * __this, MethodInfo * method)); DO_APP_FUNC(0x01FA8980, void, HardwareJoystickMap_Platform_PS4_Base_uHIGtSQjUBsUxbAfXnVCaFyjtUTC_System_Collections_IEnumerator_Reset, (HardwareJoystickMap_Platform_PS4_Base_uHIGtSQjUBsUxbAfXnVCaFyjtUTC * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFBA20, HardwareJoystickMap_Platform_PS4_Base_uHIGtSQjUBsUxbAfXnVCaFyjtUTC_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, HardwareJoystickMap_Platform_PS4_Base_uHIGtSQjUBsUxbAfXnVCaFyjtUTC_System_Collections_IEnumerator_get_Current, (HardwareJoystickMap_Platform_PS4_Base_uHIGtSQjUBsUxbAfXnVCaFyjtUTC * __this, MethodInfo * method)); DO_APP_FUNC(0x01FA89D0, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Button_ *, HardwareJoystickMap_Platform_PS4_Base_uHIGtSQjUBsUxbAfXnVCaFyjtUTC_System_Collections_Generic_IEnumerable_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Button__GetEnumerator, (HardwareJoystickMap_Platform_PS4_Base_uHIGtSQjUBsUxbAfXnVCaFyjtUTC * __this, MethodInfo * method)); DO_APP_FUNC(0x01FA89D0, IEnumerator *, HardwareJoystickMap_Platform_PS4_Base_uHIGtSQjUBsUxbAfXnVCaFyjtUTC_System_Collections_IEnumerable_GetEnumerator, (HardwareJoystickMap_Platform_PS4_Base_uHIGtSQjUBsUxbAfXnVCaFyjtUTC * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7320, IList_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_ *, HardwareJoystickMap_Platform_PS4_get_variants_base, (HardwareJoystickMap_Platform_PS4 * __this, MethodInfo * method)); -DO_APP_FUNC(0x01FA5D10, bool, HardwareJoystickMap_Platform_PS4_Matches, (HardwareJoystickMap_Platform_PS4 * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t variantIndex, HardwareJoystickMap_Platform * platformMap, MethodInfo * method)); +DO_APP_FUNC(0x01FA5D10, bool, HardwareJoystickMap_Platform_PS4_Matches, (HardwareJoystickMap_Platform_PS4 * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t * variantIndex, HardwareJoystickMap_Platform * * platformMap, MethodInfo * method)); DO_APP_FUNC(0x01FA8B10, Object *, HardwareJoystickMap_Platform_PS4_DeepClone, (HardwareJoystickMap_Platform_PS4 * __this, MethodInfo * method)); DO_APP_FUNC(0x01FA8B80, void, HardwareJoystickMap_Platform_PS4_CopyVars, (HardwareJoystickMap_Platform_PS4 * __this, HardwareJoystickMap_Platform * destination, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_PS4__ctor, (HardwareJoystickMap_Platform_PS4 * __this, MethodInfo * method)); @@ -47484,18 +55842,20 @@ DO_APP_FUNC(0x01F8BDF0, bool, HardwareJoystickMap_Platform_NintendoSwitch_Base_g DO_APP_FUNC(0x01F8BE10, bool, HardwareJoystickMap_Platform_NintendoSwitch_Base_get_isAllowed, (HardwareJoystickMap_Platform_NintendoSwitch_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, HardwareJoystickMap_Elements_Base *, HardwareJoystickMap_Platform_NintendoSwitch_Base_get_elements_base, (HardwareJoystickMap_Platform_NintendoSwitch_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x003CB690, IList_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_ *, HardwareJoystickMap_Platform_NintendoSwitch_Base_get_variants_base, (HardwareJoystickMap_Platform_NintendoSwitch_Base * __this, MethodInfo * method)); -DO_APP_FUNC(0x01F8CE50, bool, HardwareJoystickMap_Platform_NintendoSwitch_Base_Matches, (HardwareJoystickMap_Platform_NintendoSwitch_Base * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t variantIndex, HardwareJoystickMap_Platform * platformMap, MethodInfo * method)); +DO_APP_FUNC(0x01F8CE50, bool, HardwareJoystickMap_Platform_NintendoSwitch_Base_Matches, (HardwareJoystickMap_Platform_NintendoSwitch_Base * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t * variantIndex, HardwareJoystickMap_Platform * * platformMap, MethodInfo * method)); DO_APP_FUNC(0x01FA91B0, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Axis_ *, HardwareJoystickMap_Platform_NintendoSwitch_Base_IterateAxes, (HardwareJoystickMap_Platform_NintendoSwitch_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x01FA9270, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Button_ *, HardwareJoystickMap_Platform_NintendoSwitch_Base_IterateButtons, (HardwareJoystickMap_Platform_NintendoSwitch_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x01FA9330, String__Array *, HardwareJoystickMap_Platform_NintendoSwitch_Base_GetAxisNames, (HardwareJoystickMap_Platform_NintendoSwitch_Base * __this, ControllerElementIdentifier__Array * identifiers, MethodInfo * method)); DO_APP_FUNC(0x01FA9530, String__Array *, HardwareJoystickMap_Platform_NintendoSwitch_Base_GetEffectiveButtonNames, (HardwareJoystickMap_Platform_NintendoSwitch_Base * __this, ControllerElementIdentifier__Array * identifiers, MethodInfo * method)); DO_APP_FUNC(0x01FA9710, bool, HardwareJoystickMap_Platform_NintendoSwitch_Base_IsElementIdentifierMapped, (HardwareJoystickMap_Platform_NintendoSwitch_Base * __this, int32_t elementIdentifierId, MethodInfo * method)); -DO_APP_FUNC(0x01FA9A60, void, HardwareJoystickMap_Platform_NintendoSwitch_Base_GetGameElementIdentifierIdMappings, (HardwareJoystickMap_Platform_NintendoSwitch_Base * __this, Int32__Array * buttons, Int32__Array * axes, MethodInfo * method)); +DO_APP_FUNC(0x01FA9A60, void, HardwareJoystickMap_Platform_NintendoSwitch_Base_GetGameElementIdentifierIdMappings, (HardwareJoystickMap_Platform_NintendoSwitch_Base * __this, Int32__Array * * buttons, Int32__Array * * axes, MethodInfo * method)); DO_APP_FUNC(0x01FAA030, AxisCalibrationData__Array *, HardwareJoystickMap_Platform_NintendoSwitch_Base_GetAxisCalibrationData, (HardwareJoystickMap_Platform_NintendoSwitch_Base * __this, MethodInfo * method)); -DO_APP_FUNC(0x01FAA3B0, void, HardwareJoystickMap_Platform_NintendoSwitch_Base_GetAxisData, (HardwareJoystickMap_Platform_NintendoSwitch_Base * __this, AxisRange__Enum__Array * axisRanges, HardwareAxisInfo__Array * axisInfos, MethodInfo * method)); -DO_APP_FUNC(0x01FAA7E0, void, HardwareJoystickMap_Platform_NintendoSwitch_Base_GetButtonData, (HardwareJoystickMap_Platform_NintendoSwitch_Base * __this, HardwareButtonInfo__Array * buttonInfos, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB950, HardwareJoystickMap_Platform_NintendoSwitch_Base_GetAxisCalibrationData__MethodInfo); +DO_APP_FUNC(0x01FAA3B0, void, HardwareJoystickMap_Platform_NintendoSwitch_Base_GetAxisData, (HardwareJoystickMap_Platform_NintendoSwitch_Base * __this, AxisRange__Enum__Array * * axisRanges, HardwareAxisInfo__Array * * axisInfos, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB948, HardwareJoystickMap_Platform_NintendoSwitch_Base_GetAxisData__MethodInfo); +DO_APP_FUNC(0x01FAA7E0, void, HardwareJoystickMap_Platform_NintendoSwitch_Base_GetButtonData, (HardwareJoystickMap_Platform_NintendoSwitch_Base * __this, HardwareButtonInfo__Array * * buttonInfos, MethodInfo * method)); DO_APP_FUNC(0x01F8E6C0, ControllerElementType__Enum, HardwareJoystickMap_Platform_NintendoSwitch_Base_GetEffectiveElementIdentifierType, (HardwareJoystickMap_Platform_NintendoSwitch_Base * __this, ControllerElementIdentifier * elementIdentifier, MethodInfo * method)); -DO_APP_FUNC(0x01F8E6F0, bool, HardwareJoystickMap_Platform_NintendoSwitch_Base_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_NintendoSwitch_Base * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum axisRange, MethodInfo * method)); +DO_APP_FUNC(0x01F8E6F0, bool, HardwareJoystickMap_Platform_NintendoSwitch_Base_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_NintendoSwitch_Base * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum * axisRange, MethodInfo * method)); DO_APP_FUNC(0x01FAAA50, Object *, HardwareJoystickMap_Platform_NintendoSwitch_Base_DeepClone, (HardwareJoystickMap_Platform_NintendoSwitch_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x01FAAAC0, void, HardwareJoystickMap_Platform_NintendoSwitch_Base_CopyVars, (HardwareJoystickMap_Platform_NintendoSwitch_Base * __this, HardwareJoystickMap_Platform * destination, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_NintendoSwitch_Base__ctor, (HardwareJoystickMap_Platform_NintendoSwitch_Base * __this, MethodInfo * method)); @@ -47508,7 +55868,8 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_NintendoSwitch_Base_M DO_APP_FUNC(0x006BD920, int32_t, HardwareJoystickMap_Platform_NintendoSwitch_Base_Elements_get_buttonCount, (HardwareJoystickMap_Platform_NintendoSwitch_Base_Elements * __this, MethodInfo * method)); DO_APP_FUNC(0x006BD6A0, int32_t, HardwareJoystickMap_Platform_NintendoSwitch_Base_Elements_get_axisCount, (HardwareJoystickMap_Platform_NintendoSwitch_Base_Elements * __this, MethodInfo * method)); DO_APP_FUNC(0x01F949D0, ControllerElementType__Enum, HardwareJoystickMap_Platform_NintendoSwitch_Base_Elements_GetEffectiveElementIdentifierType, (HardwareJoystickMap_Platform_NintendoSwitch_Base_Elements * __this, ControllerElementIdentifier * elementIdentifier, MethodInfo * method)); -DO_APP_FUNC(0x01FAAF60, bool, HardwareJoystickMap_Platform_NintendoSwitch_Base_Elements_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_NintendoSwitch_Base_Elements * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum axisRange, MethodInfo * method)); +DO_APP_FUNC(0x01FAAF60, bool, HardwareJoystickMap_Platform_NintendoSwitch_Base_Elements_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_NintendoSwitch_Base_Elements * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum * axisRange, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB9B0, HardwareJoystickMap_Platform_NintendoSwitch_Base_Elements_GetEffectiveAxisRange__MethodInfo); DO_APP_FUNC(0x01FAB0F0, Object *, HardwareJoystickMap_Platform_NintendoSwitch_Base_Elements_DeepClone, (HardwareJoystickMap_Platform_NintendoSwitch_Base_Elements * __this, MethodInfo * method)); DO_APP_FUNC(0x01FAB160, void, HardwareJoystickMap_Platform_NintendoSwitch_Base_Elements_CopyVars, (HardwareJoystickMap_Platform_NintendoSwitch_Base_Elements * __this, HardwareJoystickMap_Elements_Base * destination, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_NintendoSwitch_Base_Elements__ctor, (HardwareJoystickMap_Platform_NintendoSwitch_Base_Elements * __this, MethodInfo * method)); @@ -47523,6 +55884,7 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_NintendoSwitch_Base_Q DO_APP_FUNC(0x01F950F0, bool, HardwareJoystickMap_Platform_NintendoSwitch_Base_QFAplrhqttNBrHdYDNQWIXcCJwmv_MoveNext, (HardwareJoystickMap_Platform_NintendoSwitch_Base_QFAplrhqttNBrHdYDNQWIXcCJwmv * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, HardwareJoystickMap_Platform_Custom_Axis *, HardwareJoystickMap_Platform_NintendoSwitch_Base_QFAplrhqttNBrHdYDNQWIXcCJwmv_System_Collections_Generic_IEnumerator_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Axis__get_Current, (HardwareJoystickMap_Platform_NintendoSwitch_Base_QFAplrhqttNBrHdYDNQWIXcCJwmv * __this, MethodInfo * method)); DO_APP_FUNC(0x01FAB440, void, HardwareJoystickMap_Platform_NintendoSwitch_Base_QFAplrhqttNBrHdYDNQWIXcCJwmv_System_Collections_IEnumerator_Reset, (HardwareJoystickMap_Platform_NintendoSwitch_Base_QFAplrhqttNBrHdYDNQWIXcCJwmv * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB8E8, HardwareJoystickMap_Platform_NintendoSwitch_Base_QFAplrhqttNBrHdYDNQWIXcCJwmv_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, HardwareJoystickMap_Platform_NintendoSwitch_Base_QFAplrhqttNBrHdYDNQWIXcCJwmv_System_Collections_IEnumerator_get_Current, (HardwareJoystickMap_Platform_NintendoSwitch_Base_QFAplrhqttNBrHdYDNQWIXcCJwmv * __this, MethodInfo * method)); DO_APP_FUNC(0x01FAB490, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Axis_ *, HardwareJoystickMap_Platform_NintendoSwitch_Base_QFAplrhqttNBrHdYDNQWIXcCJwmv_System_Collections_Generic_IEnumerable_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Axis__GetEnumerator, (HardwareJoystickMap_Platform_NintendoSwitch_Base_QFAplrhqttNBrHdYDNQWIXcCJwmv * __this, MethodInfo * method)); DO_APP_FUNC(0x01FAB490, IEnumerator *, HardwareJoystickMap_Platform_NintendoSwitch_Base_QFAplrhqttNBrHdYDNQWIXcCJwmv_System_Collections_IEnumerable_GetEnumerator, (HardwareJoystickMap_Platform_NintendoSwitch_Base_QFAplrhqttNBrHdYDNQWIXcCJwmv * __this, MethodInfo * method)); @@ -47531,11 +55893,12 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_NintendoSwitch_Base_K DO_APP_FUNC(0x01F95390, bool, HardwareJoystickMap_Platform_NintendoSwitch_Base_KEhiMaJTCODDLpRDjfINavRnzmhr_MoveNext, (HardwareJoystickMap_Platform_NintendoSwitch_Base_KEhiMaJTCODDLpRDjfINavRnzmhr * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, HardwareJoystickMap_Platform_Custom_Button *, HardwareJoystickMap_Platform_NintendoSwitch_Base_KEhiMaJTCODDLpRDjfINavRnzmhr_System_Collections_Generic_IEnumerator_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Button__get_Current, (HardwareJoystickMap_Platform_NintendoSwitch_Base_KEhiMaJTCODDLpRDjfINavRnzmhr * __this, MethodInfo * method)); DO_APP_FUNC(0x01FAB5D0, void, HardwareJoystickMap_Platform_NintendoSwitch_Base_KEhiMaJTCODDLpRDjfINavRnzmhr_System_Collections_IEnumerator_Reset, (HardwareJoystickMap_Platform_NintendoSwitch_Base_KEhiMaJTCODDLpRDjfINavRnzmhr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB8C8, HardwareJoystickMap_Platform_NintendoSwitch_Base_KEhiMaJTCODDLpRDjfINavRnzmhr_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, HardwareJoystickMap_Platform_NintendoSwitch_Base_KEhiMaJTCODDLpRDjfINavRnzmhr_System_Collections_IEnumerator_get_Current, (HardwareJoystickMap_Platform_NintendoSwitch_Base_KEhiMaJTCODDLpRDjfINavRnzmhr * __this, MethodInfo * method)); DO_APP_FUNC(0x01FAB620, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Button_ *, HardwareJoystickMap_Platform_NintendoSwitch_Base_KEhiMaJTCODDLpRDjfINavRnzmhr_System_Collections_Generic_IEnumerable_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Button__GetEnumerator, (HardwareJoystickMap_Platform_NintendoSwitch_Base_KEhiMaJTCODDLpRDjfINavRnzmhr * __this, MethodInfo * method)); DO_APP_FUNC(0x01FAB620, IEnumerator *, HardwareJoystickMap_Platform_NintendoSwitch_Base_KEhiMaJTCODDLpRDjfINavRnzmhr_System_Collections_IEnumerable_GetEnumerator, (HardwareJoystickMap_Platform_NintendoSwitch_Base_KEhiMaJTCODDLpRDjfINavRnzmhr * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7320, IList_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_ *, HardwareJoystickMap_Platform_NintendoSwitch_get_variants_base, (HardwareJoystickMap_Platform_NintendoSwitch * __this, MethodInfo * method)); -DO_APP_FUNC(0x01FA5D10, bool, HardwareJoystickMap_Platform_NintendoSwitch_Matches, (HardwareJoystickMap_Platform_NintendoSwitch * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t variantIndex, HardwareJoystickMap_Platform * platformMap, MethodInfo * method)); +DO_APP_FUNC(0x01FA5D10, bool, HardwareJoystickMap_Platform_NintendoSwitch_Matches, (HardwareJoystickMap_Platform_NintendoSwitch * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t * variantIndex, HardwareJoystickMap_Platform * * platformMap, MethodInfo * method)); DO_APP_FUNC(0x01FAB760, Object *, HardwareJoystickMap_Platform_NintendoSwitch_DeepClone, (HardwareJoystickMap_Platform_NintendoSwitch * __this, MethodInfo * method)); DO_APP_FUNC(0x01FAB7D0, void, HardwareJoystickMap_Platform_NintendoSwitch_CopyVars, (HardwareJoystickMap_Platform_NintendoSwitch * __this, HardwareJoystickMap_Platform * destination, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_NintendoSwitch__ctor, (HardwareJoystickMap_Platform_NintendoSwitch * __this, MethodInfo * method)); @@ -47552,18 +55915,20 @@ DO_APP_FUNC(0x01F8BDF0, bool, HardwareJoystickMap_Platform_Stadia_Base_get_disab DO_APP_FUNC(0x01F8BE10, bool, HardwareJoystickMap_Platform_Stadia_Base_get_isAllowed, (HardwareJoystickMap_Platform_Stadia_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, HardwareJoystickMap_Elements_Base *, HardwareJoystickMap_Platform_Stadia_Base_get_elements_base, (HardwareJoystickMap_Platform_Stadia_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x003CB690, IList_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_ *, HardwareJoystickMap_Platform_Stadia_Base_get_variants_base, (HardwareJoystickMap_Platform_Stadia_Base * __this, MethodInfo * method)); -DO_APP_FUNC(0x01F8CE50, bool, HardwareJoystickMap_Platform_Stadia_Base_Matches, (HardwareJoystickMap_Platform_Stadia_Base * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t variantIndex, HardwareJoystickMap_Platform * platformMap, MethodInfo * method)); +DO_APP_FUNC(0x01F8CE50, bool, HardwareJoystickMap_Platform_Stadia_Base_Matches, (HardwareJoystickMap_Platform_Stadia_Base * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t * variantIndex, HardwareJoystickMap_Platform * * platformMap, MethodInfo * method)); DO_APP_FUNC(0x01FABE10, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Axis_ *, HardwareJoystickMap_Platform_Stadia_Base_IterateAxes, (HardwareJoystickMap_Platform_Stadia_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x01FABED0, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Button_ *, HardwareJoystickMap_Platform_Stadia_Base_IterateButtons, (HardwareJoystickMap_Platform_Stadia_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x01FABF90, String__Array *, HardwareJoystickMap_Platform_Stadia_Base_GetAxisNames, (HardwareJoystickMap_Platform_Stadia_Base * __this, ControllerElementIdentifier__Array * identifiers, MethodInfo * method)); DO_APP_FUNC(0x01FAC190, String__Array *, HardwareJoystickMap_Platform_Stadia_Base_GetEffectiveButtonNames, (HardwareJoystickMap_Platform_Stadia_Base * __this, ControllerElementIdentifier__Array * identifiers, MethodInfo * method)); DO_APP_FUNC(0x01FAC370, bool, HardwareJoystickMap_Platform_Stadia_Base_IsElementIdentifierMapped, (HardwareJoystickMap_Platform_Stadia_Base * __this, int32_t elementIdentifierId, MethodInfo * method)); -DO_APP_FUNC(0x01FAC6C0, void, HardwareJoystickMap_Platform_Stadia_Base_GetGameElementIdentifierIdMappings, (HardwareJoystickMap_Platform_Stadia_Base * __this, Int32__Array * buttons, Int32__Array * axes, MethodInfo * method)); +DO_APP_FUNC(0x01FAC6C0, void, HardwareJoystickMap_Platform_Stadia_Base_GetGameElementIdentifierIdMappings, (HardwareJoystickMap_Platform_Stadia_Base * __this, Int32__Array * * buttons, Int32__Array * * axes, MethodInfo * method)); DO_APP_FUNC(0x01FACC90, AxisCalibrationData__Array *, HardwareJoystickMap_Platform_Stadia_Base_GetAxisCalibrationData, (HardwareJoystickMap_Platform_Stadia_Base * __this, MethodInfo * method)); -DO_APP_FUNC(0x01FAD010, void, HardwareJoystickMap_Platform_Stadia_Base_GetAxisData, (HardwareJoystickMap_Platform_Stadia_Base * __this, AxisRange__Enum__Array * axisRanges, HardwareAxisInfo__Array * axisInfos, MethodInfo * method)); -DO_APP_FUNC(0x01FAD440, void, HardwareJoystickMap_Platform_Stadia_Base_GetButtonData, (HardwareJoystickMap_Platform_Stadia_Base * __this, HardwareButtonInfo__Array * buttonInfos, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB820, HardwareJoystickMap_Platform_Stadia_Base_GetAxisCalibrationData__MethodInfo); +DO_APP_FUNC(0x01FAD010, void, HardwareJoystickMap_Platform_Stadia_Base_GetAxisData, (HardwareJoystickMap_Platform_Stadia_Base * __this, AxisRange__Enum__Array * * axisRanges, HardwareAxisInfo__Array * * axisInfos, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB818, HardwareJoystickMap_Platform_Stadia_Base_GetAxisData__MethodInfo); +DO_APP_FUNC(0x01FAD440, void, HardwareJoystickMap_Platform_Stadia_Base_GetButtonData, (HardwareJoystickMap_Platform_Stadia_Base * __this, HardwareButtonInfo__Array * * buttonInfos, MethodInfo * method)); DO_APP_FUNC(0x01F8E6C0, ControllerElementType__Enum, HardwareJoystickMap_Platform_Stadia_Base_GetEffectiveElementIdentifierType, (HardwareJoystickMap_Platform_Stadia_Base * __this, ControllerElementIdentifier * elementIdentifier, MethodInfo * method)); -DO_APP_FUNC(0x01F8E6F0, bool, HardwareJoystickMap_Platform_Stadia_Base_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_Stadia_Base * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum axisRange, MethodInfo * method)); +DO_APP_FUNC(0x01F8E6F0, bool, HardwareJoystickMap_Platform_Stadia_Base_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_Stadia_Base * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum * axisRange, MethodInfo * method)); DO_APP_FUNC(0x01FAD6B0, Object *, HardwareJoystickMap_Platform_Stadia_Base_DeepClone, (HardwareJoystickMap_Platform_Stadia_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x01FAD720, void, HardwareJoystickMap_Platform_Stadia_Base_CopyVars, (HardwareJoystickMap_Platform_Stadia_Base * __this, HardwareJoystickMap_Platform * destination, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_Stadia_Base__ctor, (HardwareJoystickMap_Platform_Stadia_Base * __this, MethodInfo * method)); @@ -47576,7 +55941,8 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_Stadia_Base_MatchingC DO_APP_FUNC(0x006BD920, int32_t, HardwareJoystickMap_Platform_Stadia_Base_Elements_get_buttonCount, (HardwareJoystickMap_Platform_Stadia_Base_Elements * __this, MethodInfo * method)); DO_APP_FUNC(0x006BD6A0, int32_t, HardwareJoystickMap_Platform_Stadia_Base_Elements_get_axisCount, (HardwareJoystickMap_Platform_Stadia_Base_Elements * __this, MethodInfo * method)); DO_APP_FUNC(0x01F949D0, ControllerElementType__Enum, HardwareJoystickMap_Platform_Stadia_Base_Elements_GetEffectiveElementIdentifierType, (HardwareJoystickMap_Platform_Stadia_Base_Elements * __this, ControllerElementIdentifier * elementIdentifier, MethodInfo * method)); -DO_APP_FUNC(0x01FADC10, bool, HardwareJoystickMap_Platform_Stadia_Base_Elements_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_Stadia_Base_Elements * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum axisRange, MethodInfo * method)); +DO_APP_FUNC(0x01FADC10, bool, HardwareJoystickMap_Platform_Stadia_Base_Elements_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_Stadia_Base_Elements * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum * axisRange, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB848, HardwareJoystickMap_Platform_Stadia_Base_Elements_GetEffectiveAxisRange__MethodInfo); DO_APP_FUNC(0x01FADDA0, Object *, HardwareJoystickMap_Platform_Stadia_Base_Elements_DeepClone, (HardwareJoystickMap_Platform_Stadia_Base_Elements * __this, MethodInfo * method)); DO_APP_FUNC(0x01FADE10, void, HardwareJoystickMap_Platform_Stadia_Base_Elements_CopyVars, (HardwareJoystickMap_Platform_Stadia_Base_Elements * __this, HardwareJoystickMap_Elements_Base * destination, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_Stadia_Base_Elements__ctor, (HardwareJoystickMap_Platform_Stadia_Base_Elements * __this, MethodInfo * method)); @@ -47591,6 +55957,7 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_Stadia_Base_pXdKqPgns DO_APP_FUNC(0x01F950F0, bool, HardwareJoystickMap_Platform_Stadia_Base_pXdKqPgnsrrGeZFkYDNTDnFNSPXU_MoveNext, (HardwareJoystickMap_Platform_Stadia_Base_pXdKqPgnsrrGeZFkYDNTDnFNSPXU * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, HardwareJoystickMap_Platform_Custom_Axis *, HardwareJoystickMap_Platform_Stadia_Base_pXdKqPgnsrrGeZFkYDNTDnFNSPXU_System_Collections_Generic_IEnumerator_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Axis__get_Current, (HardwareJoystickMap_Platform_Stadia_Base_pXdKqPgnsrrGeZFkYDNTDnFNSPXU * __this, MethodInfo * method)); DO_APP_FUNC(0x01FAE0F0, void, HardwareJoystickMap_Platform_Stadia_Base_pXdKqPgnsrrGeZFkYDNTDnFNSPXU_System_Collections_IEnumerator_Reset, (HardwareJoystickMap_Platform_Stadia_Base_pXdKqPgnsrrGeZFkYDNTDnFNSPXU * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB790, HardwareJoystickMap_Platform_Stadia_Base_pXdKqPgnsrrGeZFkYDNTDnFNSPXU_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, HardwareJoystickMap_Platform_Stadia_Base_pXdKqPgnsrrGeZFkYDNTDnFNSPXU_System_Collections_IEnumerator_get_Current, (HardwareJoystickMap_Platform_Stadia_Base_pXdKqPgnsrrGeZFkYDNTDnFNSPXU * __this, MethodInfo * method)); DO_APP_FUNC(0x01FAE140, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Axis_ *, HardwareJoystickMap_Platform_Stadia_Base_pXdKqPgnsrrGeZFkYDNTDnFNSPXU_System_Collections_Generic_IEnumerable_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Axis__GetEnumerator, (HardwareJoystickMap_Platform_Stadia_Base_pXdKqPgnsrrGeZFkYDNTDnFNSPXU * __this, MethodInfo * method)); DO_APP_FUNC(0x01FAE140, IEnumerator *, HardwareJoystickMap_Platform_Stadia_Base_pXdKqPgnsrrGeZFkYDNTDnFNSPXU_System_Collections_IEnumerable_GetEnumerator, (HardwareJoystickMap_Platform_Stadia_Base_pXdKqPgnsrrGeZFkYDNTDnFNSPXU * __this, MethodInfo * method)); @@ -47599,11 +55966,12 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_Stadia_Base_FETTsmmiu DO_APP_FUNC(0x01F95390, bool, HardwareJoystickMap_Platform_Stadia_Base_FETTsmmiuAhhHcrFawXPRzjUJgyeA_MoveNext, (HardwareJoystickMap_Platform_Stadia_Base_FETTsmmiuAhhHcrFawXPRzjUJgyeA * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, HardwareJoystickMap_Platform_Custom_Button *, HardwareJoystickMap_Platform_Stadia_Base_FETTsmmiuAhhHcrFawXPRzjUJgyeA_System_Collections_Generic_IEnumerator_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Button__get_Current, (HardwareJoystickMap_Platform_Stadia_Base_FETTsmmiuAhhHcrFawXPRzjUJgyeA * __this, MethodInfo * method)); DO_APP_FUNC(0x01FAE280, void, HardwareJoystickMap_Platform_Stadia_Base_FETTsmmiuAhhHcrFawXPRzjUJgyeA_System_Collections_IEnumerator_Reset, (HardwareJoystickMap_Platform_Stadia_Base_FETTsmmiuAhhHcrFawXPRzjUJgyeA * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB7F8, HardwareJoystickMap_Platform_Stadia_Base_FETTsmmiuAhhHcrFawXPRzjUJgyeA_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, HardwareJoystickMap_Platform_Stadia_Base_FETTsmmiuAhhHcrFawXPRzjUJgyeA_System_Collections_IEnumerator_get_Current, (HardwareJoystickMap_Platform_Stadia_Base_FETTsmmiuAhhHcrFawXPRzjUJgyeA * __this, MethodInfo * method)); DO_APP_FUNC(0x01FAE2D0, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Button_ *, HardwareJoystickMap_Platform_Stadia_Base_FETTsmmiuAhhHcrFawXPRzjUJgyeA_System_Collections_Generic_IEnumerable_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Button__GetEnumerator, (HardwareJoystickMap_Platform_Stadia_Base_FETTsmmiuAhhHcrFawXPRzjUJgyeA * __this, MethodInfo * method)); DO_APP_FUNC(0x01FAE2D0, IEnumerator *, HardwareJoystickMap_Platform_Stadia_Base_FETTsmmiuAhhHcrFawXPRzjUJgyeA_System_Collections_IEnumerable_GetEnumerator, (HardwareJoystickMap_Platform_Stadia_Base_FETTsmmiuAhhHcrFawXPRzjUJgyeA * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7390, IList_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_ *, HardwareJoystickMap_Platform_Stadia_get_variants_base, (HardwareJoystickMap_Platform_Stadia * __this, MethodInfo * method)); -DO_APP_FUNC(0x01FAE410, bool, HardwareJoystickMap_Platform_Stadia_Matches, (HardwareJoystickMap_Platform_Stadia * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t variantIndex, HardwareJoystickMap_Platform * platformMap, MethodInfo * method)); +DO_APP_FUNC(0x01FAE410, bool, HardwareJoystickMap_Platform_Stadia_Matches, (HardwareJoystickMap_Platform_Stadia * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t * variantIndex, HardwareJoystickMap_Platform * * platformMap, MethodInfo * method)); DO_APP_FUNC(0x01FAE5C0, Object *, HardwareJoystickMap_Platform_Stadia_DeepClone, (HardwareJoystickMap_Platform_Stadia * __this, MethodInfo * method)); DO_APP_FUNC(0x01FAE630, void, HardwareJoystickMap_Platform_Stadia_CopyVars, (HardwareJoystickMap_Platform_Stadia * __this, HardwareJoystickMap_Platform * destination, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_Stadia__ctor, (HardwareJoystickMap_Platform_Stadia * __this, MethodInfo * method)); @@ -47620,24 +55988,26 @@ DO_APP_FUNC(0x01F8BDF0, bool, HardwareJoystickMap_Platform_GameCore_Base_get_dis DO_APP_FUNC(0x01F8BE10, bool, HardwareJoystickMap_Platform_GameCore_Base_get_isAllowed, (HardwareJoystickMap_Platform_GameCore_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, HardwareJoystickMap_Elements_Base *, HardwareJoystickMap_Platform_GameCore_Base_get_elements_base, (HardwareJoystickMap_Platform_GameCore_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x003CB690, IList_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_ *, HardwareJoystickMap_Platform_GameCore_Base_get_variants_base, (HardwareJoystickMap_Platform_GameCore_Base * __this, MethodInfo * method)); -DO_APP_FUNC(0x01F8CE50, bool, HardwareJoystickMap_Platform_GameCore_Base_Matches, (HardwareJoystickMap_Platform_GameCore_Base * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t variantIndex, HardwareJoystickMap_Platform * platformMap, MethodInfo * method)); +DO_APP_FUNC(0x01F8CE50, bool, HardwareJoystickMap_Platform_GameCore_Base_Matches, (HardwareJoystickMap_Platform_GameCore_Base * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t * variantIndex, HardwareJoystickMap_Platform * * platformMap, MethodInfo * method)); DO_APP_FUNC(0x01FAEAE0, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Axis_ *, HardwareJoystickMap_Platform_GameCore_Base_IterateAxes, (HardwareJoystickMap_Platform_GameCore_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x01FAEBA0, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Button_ *, HardwareJoystickMap_Platform_GameCore_Base_IterateButtons, (HardwareJoystickMap_Platform_GameCore_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x01FAEC60, String__Array *, HardwareJoystickMap_Platform_GameCore_Base_GetAxisNames, (HardwareJoystickMap_Platform_GameCore_Base * __this, ControllerElementIdentifier__Array * identifiers, MethodInfo * method)); DO_APP_FUNC(0x01FAEE60, String__Array *, HardwareJoystickMap_Platform_GameCore_Base_GetEffectiveButtonNames, (HardwareJoystickMap_Platform_GameCore_Base * __this, ControllerElementIdentifier__Array * identifiers, MethodInfo * method)); DO_APP_FUNC(0x01FAF040, bool, HardwareJoystickMap_Platform_GameCore_Base_IsElementIdentifierMapped, (HardwareJoystickMap_Platform_GameCore_Base * __this, int32_t elementIdentifierId, MethodInfo * method)); -DO_APP_FUNC(0x01FAF390, void, HardwareJoystickMap_Platform_GameCore_Base_GetGameElementIdentifierIdMappings, (HardwareJoystickMap_Platform_GameCore_Base * __this, Int32__Array * buttons, Int32__Array * axes, MethodInfo * method)); +DO_APP_FUNC(0x01FAF390, void, HardwareJoystickMap_Platform_GameCore_Base_GetGameElementIdentifierIdMappings, (HardwareJoystickMap_Platform_GameCore_Base * __this, Int32__Array * * buttons, Int32__Array * * axes, MethodInfo * method)); DO_APP_FUNC(0x01FAF960, AxisCalibrationData__Array *, HardwareJoystickMap_Platform_GameCore_Base_GetAxisCalibrationData, (HardwareJoystickMap_Platform_GameCore_Base * __this, MethodInfo * method)); -DO_APP_FUNC(0x01FAFCF0, void, HardwareJoystickMap_Platform_GameCore_Base_GetAxisData, (HardwareJoystickMap_Platform_GameCore_Base * __this, AxisRange__Enum__Array * axisRanges, HardwareAxisInfo__Array * axisInfos, MethodInfo * method)); -DO_APP_FUNC(0x01FB0130, void, HardwareJoystickMap_Platform_GameCore_Base_GetButtonData, (HardwareJoystickMap_Platform_GameCore_Base * __this, HardwareButtonInfo__Array * buttonInfos, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB730, HardwareJoystickMap_Platform_GameCore_Base_GetAxisCalibrationData__MethodInfo); +DO_APP_FUNC(0x01FAFCF0, void, HardwareJoystickMap_Platform_GameCore_Base_GetAxisData, (HardwareJoystickMap_Platform_GameCore_Base * __this, AxisRange__Enum__Array * * axisRanges, HardwareAxisInfo__Array * * axisInfos, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB780, HardwareJoystickMap_Platform_GameCore_Base_GetAxisData__MethodInfo); +DO_APP_FUNC(0x01FB0130, void, HardwareJoystickMap_Platform_GameCore_Base_GetButtonData, (HardwareJoystickMap_Platform_GameCore_Base * __this, HardwareButtonInfo__Array * * buttonInfos, MethodInfo * method)); DO_APP_FUNC(0x01F8E6C0, ControllerElementType__Enum, HardwareJoystickMap_Platform_GameCore_Base_GetEffectiveElementIdentifierType, (HardwareJoystickMap_Platform_GameCore_Base * __this, ControllerElementIdentifier * elementIdentifier, MethodInfo * method)); -DO_APP_FUNC(0x01F8E6F0, bool, HardwareJoystickMap_Platform_GameCore_Base_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_GameCore_Base * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum axisRange, MethodInfo * method)); +DO_APP_FUNC(0x01F8E6F0, bool, HardwareJoystickMap_Platform_GameCore_Base_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_GameCore_Base * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum * axisRange, MethodInfo * method)); DO_APP_FUNC(0x01FB03A0, Object *, HardwareJoystickMap_Platform_GameCore_Base_DeepClone, (HardwareJoystickMap_Platform_GameCore_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x01FB0410, void, HardwareJoystickMap_Platform_GameCore_Base_CopyVars, (HardwareJoystickMap_Platform_GameCore_Base * __this, HardwareJoystickMap_Platform * destination, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_GameCore_Base__ctor, (HardwareJoystickMap_Platform_GameCore_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x01FB0600, bool, HardwareJoystickMap_Platform_GameCore_Base_MatchingCriteria_get_hasData, (HardwareJoystickMap_Platform_GameCore_Base_MatchingCriteria * __this, MethodInfo * method)); DO_APP_FUNC(0x0059DF50, bool, HardwareJoystickMap_Platform_GameCore_Base_MatchingCriteria_get_isAllowed, (HardwareJoystickMap_Platform_GameCore_Base_MatchingCriteria * __this, MethodInfo * method)); -DO_APP_FUNC(0x01FB0640, bool, HardwareJoystickMap_Platform_GameCore_Base_MatchingCriteria_ElementCountsMatch, (HardwareJoystickMap_Platform_GameCore_Base_MatchingCriteria * __this, BridgedControllerHWInfo * bridgedControllerHWInfo, bool alternateMatched, MethodInfo * method)); +DO_APP_FUNC(0x01FB0640, bool, HardwareJoystickMap_Platform_GameCore_Base_MatchingCriteria_ElementCountsMatch, (HardwareJoystickMap_Platform_GameCore_Base_MatchingCriteria * __this, BridgedControllerHWInfo * bridgedControllerHWInfo, bool * alternateMatched, MethodInfo * method)); DO_APP_FUNC(0x01FB06A0, bool, HardwareJoystickMap_Platform_GameCore_Base_MatchingCriteria_Matches, (HardwareJoystickMap_Platform_GameCore_Base_MatchingCriteria * __this, BridgedControllerHWInfo * bridgedControllerHWInfo, bool strictMatch, MethodInfo * method)); DO_APP_FUNC(0x01FB09B0, Object *, HardwareJoystickMap_Platform_GameCore_Base_MatchingCriteria_DeepClone, (HardwareJoystickMap_Platform_GameCore_Base_MatchingCriteria * __this, MethodInfo * method)); DO_APP_FUNC(0x01FB0A20, void, HardwareJoystickMap_Platform_GameCore_Base_MatchingCriteria_CopyVars, (HardwareJoystickMap_Platform_GameCore_Base_MatchingCriteria * __this, HardwareJoystickMap_MatchingCriteria_Base * destination, MethodInfo * method)); @@ -47647,7 +56017,8 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_GameCore_Base_Matchin DO_APP_FUNC(0x006BD920, int32_t, HardwareJoystickMap_Platform_GameCore_Base_Elements_get_buttonCount, (HardwareJoystickMap_Platform_GameCore_Base_Elements * __this, MethodInfo * method)); DO_APP_FUNC(0x006BD6A0, int32_t, HardwareJoystickMap_Platform_GameCore_Base_Elements_get_axisCount, (HardwareJoystickMap_Platform_GameCore_Base_Elements * __this, MethodInfo * method)); DO_APP_FUNC(0x01F949D0, ControllerElementType__Enum, HardwareJoystickMap_Platform_GameCore_Base_Elements_GetEffectiveElementIdentifierType, (HardwareJoystickMap_Platform_GameCore_Base_Elements * __this, ControllerElementIdentifier * elementIdentifier, MethodInfo * method)); -DO_APP_FUNC(0x01FB0CA0, bool, HardwareJoystickMap_Platform_GameCore_Base_Elements_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_GameCore_Base_Elements * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum axisRange, MethodInfo * method)); +DO_APP_FUNC(0x01FB0CA0, bool, HardwareJoystickMap_Platform_GameCore_Base_Elements_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_GameCore_Base_Elements * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum * axisRange, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB6F0, HardwareJoystickMap_Platform_GameCore_Base_Elements_GetEffectiveAxisRange__MethodInfo); DO_APP_FUNC(0x01FB0F30, Object *, HardwareJoystickMap_Platform_GameCore_Base_Elements_DeepClone, (HardwareJoystickMap_Platform_GameCore_Base_Elements * __this, MethodInfo * method)); DO_APP_FUNC(0x01FB0FA0, void, HardwareJoystickMap_Platform_GameCore_Base_Elements_CopyVars, (HardwareJoystickMap_Platform_GameCore_Base_Elements * __this, HardwareJoystickMap_Elements_Base * destination, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_GameCore_Base_Elements__ctor, (HardwareJoystickMap_Platform_GameCore_Base_Elements * __this, MethodInfo * method)); @@ -47662,6 +56033,7 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_GameCore_Base_kTTnZpL DO_APP_FUNC(0x01F950F0, bool, HardwareJoystickMap_Platform_GameCore_Base_kTTnZpLQIcEwmXBmZbwfsYmGoGug_MoveNext, (HardwareJoystickMap_Platform_GameCore_Base_kTTnZpLQIcEwmXBmZbwfsYmGoGug * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, HardwareJoystickMap_Platform_Custom_Axis *, HardwareJoystickMap_Platform_GameCore_Base_kTTnZpLQIcEwmXBmZbwfsYmGoGug_System_Collections_Generic_IEnumerator_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Axis__get_Current, (HardwareJoystickMap_Platform_GameCore_Base_kTTnZpLQIcEwmXBmZbwfsYmGoGug * __this, MethodInfo * method)); DO_APP_FUNC(0x01FB12E0, void, HardwareJoystickMap_Platform_GameCore_Base_kTTnZpLQIcEwmXBmZbwfsYmGoGug_System_Collections_IEnumerator_Reset, (HardwareJoystickMap_Platform_GameCore_Base_kTTnZpLQIcEwmXBmZbwfsYmGoGug * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB720, HardwareJoystickMap_Platform_GameCore_Base_kTTnZpLQIcEwmXBmZbwfsYmGoGug_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, HardwareJoystickMap_Platform_GameCore_Base_kTTnZpLQIcEwmXBmZbwfsYmGoGug_System_Collections_IEnumerator_get_Current, (HardwareJoystickMap_Platform_GameCore_Base_kTTnZpLQIcEwmXBmZbwfsYmGoGug * __this, MethodInfo * method)); DO_APP_FUNC(0x01FB1330, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Axis_ *, HardwareJoystickMap_Platform_GameCore_Base_kTTnZpLQIcEwmXBmZbwfsYmGoGug_System_Collections_Generic_IEnumerable_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Axis__GetEnumerator, (HardwareJoystickMap_Platform_GameCore_Base_kTTnZpLQIcEwmXBmZbwfsYmGoGug * __this, MethodInfo * method)); DO_APP_FUNC(0x01FB1330, IEnumerator *, HardwareJoystickMap_Platform_GameCore_Base_kTTnZpLQIcEwmXBmZbwfsYmGoGug_System_Collections_IEnumerable_GetEnumerator, (HardwareJoystickMap_Platform_GameCore_Base_kTTnZpLQIcEwmXBmZbwfsYmGoGug * __this, MethodInfo * method)); @@ -47670,11 +56042,12 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_GameCore_Base_YbxrfFP DO_APP_FUNC(0x01F95390, bool, HardwareJoystickMap_Platform_GameCore_Base_YbxrfFPVTQEbjiErazbeMUIXHAbj_MoveNext, (HardwareJoystickMap_Platform_GameCore_Base_YbxrfFPVTQEbjiErazbeMUIXHAbj * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, HardwareJoystickMap_Platform_Custom_Button *, HardwareJoystickMap_Platform_GameCore_Base_YbxrfFPVTQEbjiErazbeMUIXHAbj_System_Collections_Generic_IEnumerator_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Button__get_Current, (HardwareJoystickMap_Platform_GameCore_Base_YbxrfFPVTQEbjiErazbeMUIXHAbj * __this, MethodInfo * method)); DO_APP_FUNC(0x01FB1470, void, HardwareJoystickMap_Platform_GameCore_Base_YbxrfFPVTQEbjiErazbeMUIXHAbj_System_Collections_IEnumerator_Reset, (HardwareJoystickMap_Platform_GameCore_Base_YbxrfFPVTQEbjiErazbeMUIXHAbj * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB718, HardwareJoystickMap_Platform_GameCore_Base_YbxrfFPVTQEbjiErazbeMUIXHAbj_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, HardwareJoystickMap_Platform_GameCore_Base_YbxrfFPVTQEbjiErazbeMUIXHAbj_System_Collections_IEnumerator_get_Current, (HardwareJoystickMap_Platform_GameCore_Base_YbxrfFPVTQEbjiErazbeMUIXHAbj * __this, MethodInfo * method)); DO_APP_FUNC(0x01FB14C0, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Button_ *, HardwareJoystickMap_Platform_GameCore_Base_YbxrfFPVTQEbjiErazbeMUIXHAbj_System_Collections_Generic_IEnumerable_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Button__GetEnumerator, (HardwareJoystickMap_Platform_GameCore_Base_YbxrfFPVTQEbjiErazbeMUIXHAbj * __this, MethodInfo * method)); DO_APP_FUNC(0x01FB14C0, IEnumerator *, HardwareJoystickMap_Platform_GameCore_Base_YbxrfFPVTQEbjiErazbeMUIXHAbj_System_Collections_IEnumerable_GetEnumerator, (HardwareJoystickMap_Platform_GameCore_Base_YbxrfFPVTQEbjiErazbeMUIXHAbj * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7390, IList_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_ *, HardwareJoystickMap_Platform_GameCore_get_variants_base, (HardwareJoystickMap_Platform_GameCore * __this, MethodInfo * method)); -DO_APP_FUNC(0x01FAE410, bool, HardwareJoystickMap_Platform_GameCore_Matches, (HardwareJoystickMap_Platform_GameCore * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t variantIndex, HardwareJoystickMap_Platform * platformMap, MethodInfo * method)); +DO_APP_FUNC(0x01FAE410, bool, HardwareJoystickMap_Platform_GameCore_Matches, (HardwareJoystickMap_Platform_GameCore * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t * variantIndex, HardwareJoystickMap_Platform * * platformMap, MethodInfo * method)); DO_APP_FUNC(0x01FB1600, Object *, HardwareJoystickMap_Platform_GameCore_DeepClone, (HardwareJoystickMap_Platform_GameCore * __this, MethodInfo * method)); DO_APP_FUNC(0x01FB1670, void, HardwareJoystickMap_Platform_GameCore_CopyVars, (HardwareJoystickMap_Platform_GameCore * __this, HardwareJoystickMap_Platform * destination, MethodInfo * method)); DO_APP_FUNC(0x01FB1780, HardwareJoystickMap_Platform_GameCore *, HardwareJoystickMap_Platform_GameCore_CreateDefaultMap, (BridgedControllerHWInfo * bridgedController, MethodInfo * method)); @@ -47692,18 +56065,20 @@ DO_APP_FUNC(0x01F8BDF0, bool, HardwareJoystickMap_Platform_PS5_Base_get_disabled DO_APP_FUNC(0x01F8BE10, bool, HardwareJoystickMap_Platform_PS5_Base_get_isAllowed, (HardwareJoystickMap_Platform_PS5_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, HardwareJoystickMap_Elements_Base *, HardwareJoystickMap_Platform_PS5_Base_get_elements_base, (HardwareJoystickMap_Platform_PS5_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x003CB690, IList_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_ *, HardwareJoystickMap_Platform_PS5_Base_get_variants_base, (HardwareJoystickMap_Platform_PS5_Base * __this, MethodInfo * method)); -DO_APP_FUNC(0x01F8CE50, bool, HardwareJoystickMap_Platform_PS5_Base_Matches, (HardwareJoystickMap_Platform_PS5_Base * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t variantIndex, HardwareJoystickMap_Platform * platformMap, MethodInfo * method)); +DO_APP_FUNC(0x01F8CE50, bool, HardwareJoystickMap_Platform_PS5_Base_Matches, (HardwareJoystickMap_Platform_PS5_Base * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t * variantIndex, HardwareJoystickMap_Platform * * platformMap, MethodInfo * method)); DO_APP_FUNC(0x01FB2350, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Axis_ *, HardwareJoystickMap_Platform_PS5_Base_IterateAxes, (HardwareJoystickMap_Platform_PS5_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x01FB2410, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Button_ *, HardwareJoystickMap_Platform_PS5_Base_IterateButtons, (HardwareJoystickMap_Platform_PS5_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x01FB24D0, String__Array *, HardwareJoystickMap_Platform_PS5_Base_GetAxisNames, (HardwareJoystickMap_Platform_PS5_Base * __this, ControllerElementIdentifier__Array * identifiers, MethodInfo * method)); DO_APP_FUNC(0x01FB26D0, String__Array *, HardwareJoystickMap_Platform_PS5_Base_GetEffectiveButtonNames, (HardwareJoystickMap_Platform_PS5_Base * __this, ControllerElementIdentifier__Array * identifiers, MethodInfo * method)); DO_APP_FUNC(0x01FB28B0, bool, HardwareJoystickMap_Platform_PS5_Base_IsElementIdentifierMapped, (HardwareJoystickMap_Platform_PS5_Base * __this, int32_t elementIdentifierId, MethodInfo * method)); -DO_APP_FUNC(0x01FB2C00, void, HardwareJoystickMap_Platform_PS5_Base_GetGameElementIdentifierIdMappings, (HardwareJoystickMap_Platform_PS5_Base * __this, Int32__Array * buttons, Int32__Array * axes, MethodInfo * method)); +DO_APP_FUNC(0x01FB2C00, void, HardwareJoystickMap_Platform_PS5_Base_GetGameElementIdentifierIdMappings, (HardwareJoystickMap_Platform_PS5_Base * __this, Int32__Array * * buttons, Int32__Array * * axes, MethodInfo * method)); DO_APP_FUNC(0x01FB31D0, AxisCalibrationData__Array *, HardwareJoystickMap_Platform_PS5_Base_GetAxisCalibrationData, (HardwareJoystickMap_Platform_PS5_Base * __this, MethodInfo * method)); -DO_APP_FUNC(0x01FB3550, void, HardwareJoystickMap_Platform_PS5_Base_GetAxisData, (HardwareJoystickMap_Platform_PS5_Base * __this, AxisRange__Enum__Array * axisRanges, HardwareAxisInfo__Array * axisInfos, MethodInfo * method)); -DO_APP_FUNC(0x01FB3980, void, HardwareJoystickMap_Platform_PS5_Base_GetButtonData, (HardwareJoystickMap_Platform_PS5_Base * __this, HardwareButtonInfo__Array * buttonInfos, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB6A0, HardwareJoystickMap_Platform_PS5_Base_GetAxisCalibrationData__MethodInfo); +DO_APP_FUNC(0x01FB3550, void, HardwareJoystickMap_Platform_PS5_Base_GetAxisData, (HardwareJoystickMap_Platform_PS5_Base * __this, AxisRange__Enum__Array * * axisRanges, HardwareAxisInfo__Array * * axisInfos, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB680, HardwareJoystickMap_Platform_PS5_Base_GetAxisData__MethodInfo); +DO_APP_FUNC(0x01FB3980, void, HardwareJoystickMap_Platform_PS5_Base_GetButtonData, (HardwareJoystickMap_Platform_PS5_Base * __this, HardwareButtonInfo__Array * * buttonInfos, MethodInfo * method)); DO_APP_FUNC(0x01F8E6C0, ControllerElementType__Enum, HardwareJoystickMap_Platform_PS5_Base_GetEffectiveElementIdentifierType, (HardwareJoystickMap_Platform_PS5_Base * __this, ControllerElementIdentifier * elementIdentifier, MethodInfo * method)); -DO_APP_FUNC(0x01F8E6F0, bool, HardwareJoystickMap_Platform_PS5_Base_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_PS5_Base * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum axisRange, MethodInfo * method)); +DO_APP_FUNC(0x01F8E6F0, bool, HardwareJoystickMap_Platform_PS5_Base_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_PS5_Base * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum * axisRange, MethodInfo * method)); DO_APP_FUNC(0x01FB3BF0, Object *, HardwareJoystickMap_Platform_PS5_Base_DeepClone, (HardwareJoystickMap_Platform_PS5_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x01FB3C60, void, HardwareJoystickMap_Platform_PS5_Base_CopyVars, (HardwareJoystickMap_Platform_PS5_Base * __this, HardwareJoystickMap_Platform * destination, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_PS5_Base__ctor, (HardwareJoystickMap_Platform_PS5_Base * __this, MethodInfo * method)); @@ -47716,7 +56091,8 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_PS5_Base_MatchingCrit DO_APP_FUNC(0x006BD920, int32_t, HardwareJoystickMap_Platform_PS5_Base_Elements_get_buttonCount, (HardwareJoystickMap_Platform_PS5_Base_Elements * __this, MethodInfo * method)); DO_APP_FUNC(0x006BD6A0, int32_t, HardwareJoystickMap_Platform_PS5_Base_Elements_get_axisCount, (HardwareJoystickMap_Platform_PS5_Base_Elements * __this, MethodInfo * method)); DO_APP_FUNC(0x01F949D0, ControllerElementType__Enum, HardwareJoystickMap_Platform_PS5_Base_Elements_GetEffectiveElementIdentifierType, (HardwareJoystickMap_Platform_PS5_Base_Elements * __this, ControllerElementIdentifier * elementIdentifier, MethodInfo * method)); -DO_APP_FUNC(0x01FB4150, bool, HardwareJoystickMap_Platform_PS5_Base_Elements_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_PS5_Base_Elements * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum axisRange, MethodInfo * method)); +DO_APP_FUNC(0x01FB4150, bool, HardwareJoystickMap_Platform_PS5_Base_Elements_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_PS5_Base_Elements * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum * axisRange, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB5E0, HardwareJoystickMap_Platform_PS5_Base_Elements_GetEffectiveAxisRange__MethodInfo); DO_APP_FUNC(0x01FB42E0, Object *, HardwareJoystickMap_Platform_PS5_Base_Elements_DeepClone, (HardwareJoystickMap_Platform_PS5_Base_Elements * __this, MethodInfo * method)); DO_APP_FUNC(0x01FB4350, void, HardwareJoystickMap_Platform_PS5_Base_Elements_CopyVars, (HardwareJoystickMap_Platform_PS5_Base_Elements * __this, HardwareJoystickMap_Elements_Base * destination, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_PS5_Base_Elements__ctor, (HardwareJoystickMap_Platform_PS5_Base_Elements * __this, MethodInfo * method)); @@ -47731,6 +56107,7 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_PS5_Base_FHHrqIAKgUsE DO_APP_FUNC(0x01F950F0, bool, HardwareJoystickMap_Platform_PS5_Base_FHHrqIAKgUsEfDFzGhNiMnLlguXK_MoveNext, (HardwareJoystickMap_Platform_PS5_Base_FHHrqIAKgUsEfDFzGhNiMnLlguXK * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, HardwareJoystickMap_Platform_Custom_Axis *, HardwareJoystickMap_Platform_PS5_Base_FHHrqIAKgUsEfDFzGhNiMnLlguXK_System_Collections_Generic_IEnumerator_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Axis__get_Current, (HardwareJoystickMap_Platform_PS5_Base_FHHrqIAKgUsEfDFzGhNiMnLlguXK * __this, MethodInfo * method)); DO_APP_FUNC(0x01FB4630, void, HardwareJoystickMap_Platform_PS5_Base_FHHrqIAKgUsEfDFzGhNiMnLlguXK_System_Collections_IEnumerator_Reset, (HardwareJoystickMap_Platform_PS5_Base_FHHrqIAKgUsEfDFzGhNiMnLlguXK * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB610, HardwareJoystickMap_Platform_PS5_Base_FHHrqIAKgUsEfDFzGhNiMnLlguXK_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, HardwareJoystickMap_Platform_PS5_Base_FHHrqIAKgUsEfDFzGhNiMnLlguXK_System_Collections_IEnumerator_get_Current, (HardwareJoystickMap_Platform_PS5_Base_FHHrqIAKgUsEfDFzGhNiMnLlguXK * __this, MethodInfo * method)); DO_APP_FUNC(0x01FB4680, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Axis_ *, HardwareJoystickMap_Platform_PS5_Base_FHHrqIAKgUsEfDFzGhNiMnLlguXK_System_Collections_Generic_IEnumerable_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Axis__GetEnumerator, (HardwareJoystickMap_Platform_PS5_Base_FHHrqIAKgUsEfDFzGhNiMnLlguXK * __this, MethodInfo * method)); DO_APP_FUNC(0x01FB4680, IEnumerator *, HardwareJoystickMap_Platform_PS5_Base_FHHrqIAKgUsEfDFzGhNiMnLlguXK_System_Collections_IEnumerable_GetEnumerator, (HardwareJoystickMap_Platform_PS5_Base_FHHrqIAKgUsEfDFzGhNiMnLlguXK * __this, MethodInfo * method)); @@ -47739,11 +56116,12 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_PS5_Base_KDissBBuZLjU DO_APP_FUNC(0x01F95390, bool, HardwareJoystickMap_Platform_PS5_Base_KDissBBuZLjUWHPDRAoldGOkNlTT_MoveNext, (HardwareJoystickMap_Platform_PS5_Base_KDissBBuZLjUWHPDRAoldGOkNlTT * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, HardwareJoystickMap_Platform_Custom_Button *, HardwareJoystickMap_Platform_PS5_Base_KDissBBuZLjUWHPDRAoldGOkNlTT_System_Collections_Generic_IEnumerator_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Button__get_Current, (HardwareJoystickMap_Platform_PS5_Base_KDissBBuZLjUWHPDRAoldGOkNlTT * __this, MethodInfo * method)); DO_APP_FUNC(0x01FB47C0, void, HardwareJoystickMap_Platform_PS5_Base_KDissBBuZLjUWHPDRAoldGOkNlTT_System_Collections_IEnumerator_Reset, (HardwareJoystickMap_Platform_PS5_Base_KDissBBuZLjUWHPDRAoldGOkNlTT * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB5A8, HardwareJoystickMap_Platform_PS5_Base_KDissBBuZLjUWHPDRAoldGOkNlTT_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, HardwareJoystickMap_Platform_PS5_Base_KDissBBuZLjUWHPDRAoldGOkNlTT_System_Collections_IEnumerator_get_Current, (HardwareJoystickMap_Platform_PS5_Base_KDissBBuZLjUWHPDRAoldGOkNlTT * __this, MethodInfo * method)); DO_APP_FUNC(0x01FB4810, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Button_ *, HardwareJoystickMap_Platform_PS5_Base_KDissBBuZLjUWHPDRAoldGOkNlTT_System_Collections_Generic_IEnumerable_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Button__GetEnumerator, (HardwareJoystickMap_Platform_PS5_Base_KDissBBuZLjUWHPDRAoldGOkNlTT * __this, MethodInfo * method)); DO_APP_FUNC(0x01FB4810, IEnumerator *, HardwareJoystickMap_Platform_PS5_Base_KDissBBuZLjUWHPDRAoldGOkNlTT_System_Collections_IEnumerable_GetEnumerator, (HardwareJoystickMap_Platform_PS5_Base_KDissBBuZLjUWHPDRAoldGOkNlTT * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7390, IList_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_ *, HardwareJoystickMap_Platform_PS5_get_variants_base, (HardwareJoystickMap_Platform_PS5 * __this, MethodInfo * method)); -DO_APP_FUNC(0x01FAE410, bool, HardwareJoystickMap_Platform_PS5_Matches, (HardwareJoystickMap_Platform_PS5 * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t variantIndex, HardwareJoystickMap_Platform * platformMap, MethodInfo * method)); +DO_APP_FUNC(0x01FAE410, bool, HardwareJoystickMap_Platform_PS5_Matches, (HardwareJoystickMap_Platform_PS5 * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t * variantIndex, HardwareJoystickMap_Platform * * platformMap, MethodInfo * method)); DO_APP_FUNC(0x01FB4950, Object *, HardwareJoystickMap_Platform_PS5_DeepClone, (HardwareJoystickMap_Platform_PS5 * __this, MethodInfo * method)); DO_APP_FUNC(0x01FB49C0, void, HardwareJoystickMap_Platform_PS5_CopyVars, (HardwareJoystickMap_Platform_PS5 * __this, HardwareJoystickMap_Platform * destination, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_PS5__ctor, (HardwareJoystickMap_Platform_PS5 * __this, MethodInfo * method)); @@ -47759,25 +56137,27 @@ DO_APP_FUNC(0x01F8BDF0, bool, HardwareJoystickMap_Platform_InternalDriver_Base_g DO_APP_FUNC(0x01F8BE10, bool, HardwareJoystickMap_Platform_InternalDriver_Base_get_isAllowed, (HardwareJoystickMap_Platform_InternalDriver_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, HardwareJoystickMap_Elements_Base *, HardwareJoystickMap_Platform_InternalDriver_Base_get_elements_base, (HardwareJoystickMap_Platform_InternalDriver_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x003CB690, IList_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_ *, HardwareJoystickMap_Platform_InternalDriver_Base_get_variants_base, (HardwareJoystickMap_Platform_InternalDriver_Base * __this, MethodInfo * method)); -DO_APP_FUNC(0x01F8CE50, bool, HardwareJoystickMap_Platform_InternalDriver_Base_Matches, (HardwareJoystickMap_Platform_InternalDriver_Base * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t variantIndex, HardwareJoystickMap_Platform * platformMap, MethodInfo * method)); +DO_APP_FUNC(0x01F8CE50, bool, HardwareJoystickMap_Platform_InternalDriver_Base_Matches, (HardwareJoystickMap_Platform_InternalDriver_Base * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t * variantIndex, HardwareJoystickMap_Platform * * platformMap, MethodInfo * method)); DO_APP_FUNC(0x01FB4E80, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Axis_ *, HardwareJoystickMap_Platform_InternalDriver_Base_IterateAxes, (HardwareJoystickMap_Platform_InternalDriver_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x01FB4F40, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Button_ *, HardwareJoystickMap_Platform_InternalDriver_Base_IterateButtons, (HardwareJoystickMap_Platform_InternalDriver_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x01FB5000, String__Array *, HardwareJoystickMap_Platform_InternalDriver_Base_GetAxisNames, (HardwareJoystickMap_Platform_InternalDriver_Base * __this, ControllerElementIdentifier__Array * identifiers, MethodInfo * method)); DO_APP_FUNC(0x01FB5200, String__Array *, HardwareJoystickMap_Platform_InternalDriver_Base_GetEffectiveButtonNames, (HardwareJoystickMap_Platform_InternalDriver_Base * __this, ControllerElementIdentifier__Array * identifiers, MethodInfo * method)); DO_APP_FUNC(0x01FB53E0, bool, HardwareJoystickMap_Platform_InternalDriver_Base_IsElementIdentifierMapped, (HardwareJoystickMap_Platform_InternalDriver_Base * __this, int32_t elementIdentifierId, MethodInfo * method)); -DO_APP_FUNC(0x01FB5730, void, HardwareJoystickMap_Platform_InternalDriver_Base_GetGameElementIdentifierIdMappings, (HardwareJoystickMap_Platform_InternalDriver_Base * __this, Int32__Array * buttons, Int32__Array * axes, MethodInfo * method)); +DO_APP_FUNC(0x01FB5730, void, HardwareJoystickMap_Platform_InternalDriver_Base_GetGameElementIdentifierIdMappings, (HardwareJoystickMap_Platform_InternalDriver_Base * __this, Int32__Array * * buttons, Int32__Array * * axes, MethodInfo * method)); DO_APP_FUNC(0x01FB5D00, AxisCalibrationData__Array *, HardwareJoystickMap_Platform_InternalDriver_Base_GetAxisCalibrationData, (HardwareJoystickMap_Platform_InternalDriver_Base * __this, MethodInfo * method)); -DO_APP_FUNC(0x01FB6090, void, HardwareJoystickMap_Platform_InternalDriver_Base_GetAxisData, (HardwareJoystickMap_Platform_InternalDriver_Base * __this, AxisRange__Enum__Array * axisRanges, HardwareAxisInfo__Array * axisInfos, MethodInfo * method)); -DO_APP_FUNC(0x01FB64D0, void, HardwareJoystickMap_Platform_InternalDriver_Base_GetButtonData, (HardwareJoystickMap_Platform_InternalDriver_Base * __this, HardwareButtonInfo__Array * buttonInfos, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB4E0, HardwareJoystickMap_Platform_InternalDriver_Base_GetAxisCalibrationData__MethodInfo); +DO_APP_FUNC(0x01FB6090, void, HardwareJoystickMap_Platform_InternalDriver_Base_GetAxisData, (HardwareJoystickMap_Platform_InternalDriver_Base * __this, AxisRange__Enum__Array * * axisRanges, HardwareAxisInfo__Array * * axisInfos, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB4D0, HardwareJoystickMap_Platform_InternalDriver_Base_GetAxisData__MethodInfo); +DO_APP_FUNC(0x01FB64D0, void, HardwareJoystickMap_Platform_InternalDriver_Base_GetButtonData, (HardwareJoystickMap_Platform_InternalDriver_Base * __this, HardwareButtonInfo__Array * * buttonInfos, MethodInfo * method)); DO_APP_FUNC(0x01F8E6C0, ControllerElementType__Enum, HardwareJoystickMap_Platform_InternalDriver_Base_GetEffectiveElementIdentifierType, (HardwareJoystickMap_Platform_InternalDriver_Base * __this, ControllerElementIdentifier * elementIdentifier, MethodInfo * method)); -DO_APP_FUNC(0x01F8E6F0, bool, HardwareJoystickMap_Platform_InternalDriver_Base_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_InternalDriver_Base * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum axisRange, MethodInfo * method)); +DO_APP_FUNC(0x01F8E6F0, bool, HardwareJoystickMap_Platform_InternalDriver_Base_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_InternalDriver_Base * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum * axisRange, MethodInfo * method)); DO_APP_FUNC(0x01FB6740, Object *, HardwareJoystickMap_Platform_InternalDriver_Base_DeepClone, (HardwareJoystickMap_Platform_InternalDriver_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x01FB67B0, void, HardwareJoystickMap_Platform_InternalDriver_Base_CopyVars, (HardwareJoystickMap_Platform_InternalDriver_Base * __this, HardwareJoystickMap_Platform * destination, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_InternalDriver_Base__ctor, (HardwareJoystickMap_Platform_InternalDriver_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x01FB6950, bool, HardwareJoystickMap_Platform_InternalDriver_Base_MatchingCriteria_get_hasData, (HardwareJoystickMap_Platform_InternalDriver_Base_MatchingCriteria * __this, MethodInfo * method)); DO_APP_FUNC(0x0059DF50, bool, HardwareJoystickMap_Platform_InternalDriver_Base_MatchingCriteria_get_isAllowed, (HardwareJoystickMap_Platform_InternalDriver_Base_MatchingCriteria * __this, MethodInfo * method)); DO_APP_FUNC(0x01FB6990, bool, HardwareJoystickMap_Platform_InternalDriver_Base_MatchingCriteria_Matches, (HardwareJoystickMap_Platform_InternalDriver_Base_MatchingCriteria * __this, BridgedControllerHWInfo * bridgedControllerHWInfo, bool strictMatch, MethodInfo * method)); -DO_APP_FUNC(0x01FB6C10, bool, HardwareJoystickMap_Platform_InternalDriver_Base_MatchingCriteria_ElementCountsMatch, (HardwareJoystickMap_Platform_InternalDriver_Base_MatchingCriteria * __this, BridgedControllerHWInfo * bridgedControllerHWInfo, bool alternateMatched, MethodInfo * method)); +DO_APP_FUNC(0x01FB6C10, bool, HardwareJoystickMap_Platform_InternalDriver_Base_MatchingCriteria_ElementCountsMatch, (HardwareJoystickMap_Platform_InternalDriver_Base_MatchingCriteria * __this, BridgedControllerHWInfo * bridgedControllerHWInfo, bool * alternateMatched, MethodInfo * method)); DO_APP_FUNC(0x01FB6C90, Object *, HardwareJoystickMap_Platform_InternalDriver_Base_MatchingCriteria_DeepClone, (HardwareJoystickMap_Platform_InternalDriver_Base_MatchingCriteria * __this, MethodInfo * method)); DO_APP_FUNC(0x01FB6D00, void, HardwareJoystickMap_Platform_InternalDriver_Base_MatchingCriteria_CopyVars, (HardwareJoystickMap_Platform_InternalDriver_Base_MatchingCriteria * __this, HardwareJoystickMap_MatchingCriteria_Base * destination, MethodInfo * method)); DO_APP_FUNC(0x01FB0C00, bool, HardwareJoystickMap_Platform_InternalDriver_Base_MatchingCriteria_ProductNameMatches, (HardwareJoystickMap_Platform_InternalDriver_Base_MatchingCriteria * __this, String * name, MethodInfo * method)); @@ -47785,7 +56165,8 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_InternalDriver_Base_M DO_APP_FUNC(0x006BD920, int32_t, HardwareJoystickMap_Platform_InternalDriver_Base_Elements_get_buttonCount, (HardwareJoystickMap_Platform_InternalDriver_Base_Elements * __this, MethodInfo * method)); DO_APP_FUNC(0x006BD6A0, int32_t, HardwareJoystickMap_Platform_InternalDriver_Base_Elements_get_axisCount, (HardwareJoystickMap_Platform_InternalDriver_Base_Elements * __this, MethodInfo * method)); DO_APP_FUNC(0x01F949D0, ControllerElementType__Enum, HardwareJoystickMap_Platform_InternalDriver_Base_Elements_GetEffectiveElementIdentifierType, (HardwareJoystickMap_Platform_InternalDriver_Base_Elements * __this, ControllerElementIdentifier * elementIdentifier, MethodInfo * method)); -DO_APP_FUNC(0x01FB6E70, bool, HardwareJoystickMap_Platform_InternalDriver_Base_Elements_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_InternalDriver_Base_Elements * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum axisRange, MethodInfo * method)); +DO_APP_FUNC(0x01FB6E70, bool, HardwareJoystickMap_Platform_InternalDriver_Base_Elements_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_InternalDriver_Base_Elements * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum * axisRange, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB550, HardwareJoystickMap_Platform_InternalDriver_Base_Elements_GetEffectiveAxisRange__MethodInfo); DO_APP_FUNC(0x01FB7100, Object *, HardwareJoystickMap_Platform_InternalDriver_Base_Elements_DeepClone, (HardwareJoystickMap_Platform_InternalDriver_Base_Elements * __this, MethodInfo * method)); DO_APP_FUNC(0x01FB7170, void, HardwareJoystickMap_Platform_InternalDriver_Base_Elements_CopyVars, (HardwareJoystickMap_Platform_InternalDriver_Base_Elements * __this, HardwareJoystickMap_Elements_Base * destination, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_InternalDriver_Base_Elements__ctor, (HardwareJoystickMap_Platform_InternalDriver_Base_Elements * __this, MethodInfo * method)); @@ -47800,6 +56181,7 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_InternalDriver_Base_i DO_APP_FUNC(0x01F950F0, bool, HardwareJoystickMap_Platform_InternalDriver_Base_iDXWdSyxxJpPIztytPycjELpapbw_MoveNext, (HardwareJoystickMap_Platform_InternalDriver_Base_iDXWdSyxxJpPIztytPycjELpapbw * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, HardwareJoystickMap_Platform_Custom_Axis *, HardwareJoystickMap_Platform_InternalDriver_Base_iDXWdSyxxJpPIztytPycjELpapbw_System_Collections_Generic_IEnumerator_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Axis__get_Current, (HardwareJoystickMap_Platform_InternalDriver_Base_iDXWdSyxxJpPIztytPycjELpapbw * __this, MethodInfo * method)); DO_APP_FUNC(0x01FB74B0, void, HardwareJoystickMap_Platform_InternalDriver_Base_iDXWdSyxxJpPIztytPycjELpapbw_System_Collections_IEnumerator_Reset, (HardwareJoystickMap_Platform_InternalDriver_Base_iDXWdSyxxJpPIztytPycjELpapbw * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB440, HardwareJoystickMap_Platform_InternalDriver_Base_iDXWdSyxxJpPIztytPycjELpapbw_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, HardwareJoystickMap_Platform_InternalDriver_Base_iDXWdSyxxJpPIztytPycjELpapbw_System_Collections_IEnumerator_get_Current, (HardwareJoystickMap_Platform_InternalDriver_Base_iDXWdSyxxJpPIztytPycjELpapbw * __this, MethodInfo * method)); DO_APP_FUNC(0x01FB7500, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Axis_ *, HardwareJoystickMap_Platform_InternalDriver_Base_iDXWdSyxxJpPIztytPycjELpapbw_System_Collections_Generic_IEnumerable_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Axis__GetEnumerator, (HardwareJoystickMap_Platform_InternalDriver_Base_iDXWdSyxxJpPIztytPycjELpapbw * __this, MethodInfo * method)); DO_APP_FUNC(0x01FB7500, IEnumerator *, HardwareJoystickMap_Platform_InternalDriver_Base_iDXWdSyxxJpPIztytPycjELpapbw_System_Collections_IEnumerable_GetEnumerator, (HardwareJoystickMap_Platform_InternalDriver_Base_iDXWdSyxxJpPIztytPycjELpapbw * __this, MethodInfo * method)); @@ -47808,11 +56190,12 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_InternalDriver_Base_L DO_APP_FUNC(0x01F95390, bool, HardwareJoystickMap_Platform_InternalDriver_Base_LevCKdetPHDFMXTowUZFKZXHbQgA_MoveNext, (HardwareJoystickMap_Platform_InternalDriver_Base_LevCKdetPHDFMXTowUZFKZXHbQgA * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, HardwareJoystickMap_Platform_Custom_Button *, HardwareJoystickMap_Platform_InternalDriver_Base_LevCKdetPHDFMXTowUZFKZXHbQgA_System_Collections_Generic_IEnumerator_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Button__get_Current, (HardwareJoystickMap_Platform_InternalDriver_Base_LevCKdetPHDFMXTowUZFKZXHbQgA * __this, MethodInfo * method)); DO_APP_FUNC(0x01FB7640, void, HardwareJoystickMap_Platform_InternalDriver_Base_LevCKdetPHDFMXTowUZFKZXHbQgA_System_Collections_IEnumerator_Reset, (HardwareJoystickMap_Platform_InternalDriver_Base_LevCKdetPHDFMXTowUZFKZXHbQgA * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB430, HardwareJoystickMap_Platform_InternalDriver_Base_LevCKdetPHDFMXTowUZFKZXHbQgA_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, HardwareJoystickMap_Platform_InternalDriver_Base_LevCKdetPHDFMXTowUZFKZXHbQgA_System_Collections_IEnumerator_get_Current, (HardwareJoystickMap_Platform_InternalDriver_Base_LevCKdetPHDFMXTowUZFKZXHbQgA * __this, MethodInfo * method)); DO_APP_FUNC(0x01FB7690, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Button_ *, HardwareJoystickMap_Platform_InternalDriver_Base_LevCKdetPHDFMXTowUZFKZXHbQgA_System_Collections_Generic_IEnumerable_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Button__GetEnumerator, (HardwareJoystickMap_Platform_InternalDriver_Base_LevCKdetPHDFMXTowUZFKZXHbQgA * __this, MethodInfo * method)); DO_APP_FUNC(0x01FB7690, IEnumerator *, HardwareJoystickMap_Platform_InternalDriver_Base_LevCKdetPHDFMXTowUZFKZXHbQgA_System_Collections_IEnumerable_GetEnumerator, (HardwareJoystickMap_Platform_InternalDriver_Base_LevCKdetPHDFMXTowUZFKZXHbQgA * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7320, IList_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_ *, HardwareJoystickMap_Platform_InternalDriver_get_variants_base, (HardwareJoystickMap_Platform_InternalDriver * __this, MethodInfo * method)); -DO_APP_FUNC(0x01FA5D10, bool, HardwareJoystickMap_Platform_InternalDriver_Matches, (HardwareJoystickMap_Platform_InternalDriver * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t variantIndex, HardwareJoystickMap_Platform * platformMap, MethodInfo * method)); +DO_APP_FUNC(0x01FA5D10, bool, HardwareJoystickMap_Platform_InternalDriver_Matches, (HardwareJoystickMap_Platform_InternalDriver * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t * variantIndex, HardwareJoystickMap_Platform * * platformMap, MethodInfo * method)); DO_APP_FUNC(0x01FB7830, Object *, HardwareJoystickMap_Platform_InternalDriver_DeepClone, (HardwareJoystickMap_Platform_InternalDriver * __this, MethodInfo * method)); DO_APP_FUNC(0x01FB78A0, void, HardwareJoystickMap_Platform_InternalDriver_CopyVars, (HardwareJoystickMap_Platform_InternalDriver * __this, HardwareJoystickMap_Platform * destination, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_InternalDriver__ctor, (HardwareJoystickMap_Platform_InternalDriver * __this, MethodInfo * method)); @@ -47823,18 +56206,20 @@ DO_APP_FUNC(0x01F8BE10, bool, HardwareJoystickMap_Platform_SDL2_Base_get_isAllow DO_APP_FUNC(0x01F8CDB0, HardwareJoystickMap_Platform_SDL2_Base_Axis__Array *, HardwareJoystickMap_Platform_SDL2_Base_get_Axes_orig, (HardwareJoystickMap_Platform_SDL2_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x01F8CDD0, HardwareJoystickMap_Platform_SDL2_Base_Button__Array *, HardwareJoystickMap_Platform_SDL2_Base_get_Buttons_orig, (HardwareJoystickMap_Platform_SDL2_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x003CB690, IList_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_ *, HardwareJoystickMap_Platform_SDL2_Base_get_variants_base, (HardwareJoystickMap_Platform_SDL2_Base * __this, MethodInfo * method)); -DO_APP_FUNC(0x01F8CE50, bool, HardwareJoystickMap_Platform_SDL2_Base_Matches, (HardwareJoystickMap_Platform_SDL2_Base * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t variantIndex, HardwareJoystickMap_Platform * platformMap, MethodInfo * method)); +DO_APP_FUNC(0x01F8CE50, bool, HardwareJoystickMap_Platform_SDL2_Base_Matches, (HardwareJoystickMap_Platform_SDL2_Base * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t * variantIndex, HardwareJoystickMap_Platform * * platformMap, MethodInfo * method)); DO_APP_FUNC(0x01F8CDF0, int32_t, HardwareJoystickMap_Platform_SDL2_Base_get_assignedButtonCount, (HardwareJoystickMap_Platform_SDL2_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x01F8CE20, int32_t, HardwareJoystickMap_Platform_SDL2_Base_get_assignedAxisCount, (HardwareJoystickMap_Platform_SDL2_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x01FB7B40, String__Array *, HardwareJoystickMap_Platform_SDL2_Base_GetAxisNames, (HardwareJoystickMap_Platform_SDL2_Base * __this, ControllerElementIdentifier__Array * identifiers, MethodInfo * method)); DO_APP_FUNC(0x01FB7D50, String__Array *, HardwareJoystickMap_Platform_SDL2_Base_GetEffectiveButtonNames, (HardwareJoystickMap_Platform_SDL2_Base * __this, ControllerElementIdentifier__Array * identifiers, MethodInfo * method)); DO_APP_FUNC(0x01FB7F40, bool, HardwareJoystickMap_Platform_SDL2_Base_IsElementIdentifierMapped, (HardwareJoystickMap_Platform_SDL2_Base * __this, int32_t elementIdentifierId, MethodInfo * method)); -DO_APP_FUNC(0x01FB8200, void, HardwareJoystickMap_Platform_SDL2_Base_GetGameElementIdentifierIdMappings, (HardwareJoystickMap_Platform_SDL2_Base * __this, Int32__Array * buttons, Int32__Array * axes, MethodInfo * method)); +DO_APP_FUNC(0x01FB8200, void, HardwareJoystickMap_Platform_SDL2_Base_GetGameElementIdentifierIdMappings, (HardwareJoystickMap_Platform_SDL2_Base * __this, Int32__Array * * buttons, Int32__Array * * axes, MethodInfo * method)); DO_APP_FUNC(0x01FB8740, AxisCalibrationData__Array *, HardwareJoystickMap_Platform_SDL2_Base_GetAxisCalibrationData, (HardwareJoystickMap_Platform_SDL2_Base * __this, MethodInfo * method)); -DO_APP_FUNC(0x01FB8AD0, void, HardwareJoystickMap_Platform_SDL2_Base_GetAxisData, (HardwareJoystickMap_Platform_SDL2_Base * __this, AxisRange__Enum__Array * axisRanges, HardwareAxisInfo__Array * axisInfos, MethodInfo * method)); -DO_APP_FUNC(0x01FB8F10, void, HardwareJoystickMap_Platform_SDL2_Base_GetButtonData, (HardwareJoystickMap_Platform_SDL2_Base * __this, HardwareButtonInfo__Array * buttonInfos, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6450, HardwareJoystickMap_Platform_SDL2_Base_GetAxisCalibrationData__MethodInfo); +DO_APP_FUNC(0x01FB8AD0, void, HardwareJoystickMap_Platform_SDL2_Base_GetAxisData, (HardwareJoystickMap_Platform_SDL2_Base * __this, AxisRange__Enum__Array * * axisRanges, HardwareAxisInfo__Array * * axisInfos, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6458, HardwareJoystickMap_Platform_SDL2_Base_GetAxisData__MethodInfo); +DO_APP_FUNC(0x01FB8F10, void, HardwareJoystickMap_Platform_SDL2_Base_GetButtonData, (HardwareJoystickMap_Platform_SDL2_Base * __this, HardwareButtonInfo__Array * * buttonInfos, MethodInfo * method)); DO_APP_FUNC(0x01F8E6C0, ControllerElementType__Enum, HardwareJoystickMap_Platform_SDL2_Base_GetEffectiveElementIdentifierType, (HardwareJoystickMap_Platform_SDL2_Base * __this, ControllerElementIdentifier * elementIdentifier, MethodInfo * method)); -DO_APP_FUNC(0x01F8E6F0, bool, HardwareJoystickMap_Platform_SDL2_Base_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_SDL2_Base * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum axisRange, MethodInfo * method)); +DO_APP_FUNC(0x01F8E6F0, bool, HardwareJoystickMap_Platform_SDL2_Base_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_SDL2_Base * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum * axisRange, MethodInfo * method)); DO_APP_FUNC(0x01FB9180, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_SDL2_Base_Axis_ *, HardwareJoystickMap_Platform_SDL2_Base_IterateAxes, (HardwareJoystickMap_Platform_SDL2_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x01FB9240, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_SDL2_Base_Button_ *, HardwareJoystickMap_Platform_SDL2_Base_IterateButtons, (HardwareJoystickMap_Platform_SDL2_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, HardwareJoystickMap_Elements_Base *, HardwareJoystickMap_Platform_SDL2_Base_get_elements_base, (HardwareJoystickMap_Platform_SDL2_Base * __this, MethodInfo * method)); @@ -47846,7 +56231,7 @@ DO_APP_FUNC(0x0059DF50, bool, HardwareJoystickMap_Platform_SDL2_Base_MatchingCri DO_APP_FUNC(0x01FB94B0, bool, HardwareJoystickMap_Platform_SDL2_Base_MatchingCriteria_Matches, (HardwareJoystickMap_Platform_SDL2_Base_MatchingCriteria * __this, BridgedControllerHWInfo * bridgedControllerHWInfo, bool strictMatch, MethodInfo * method)); DO_APP_FUNC(0x003CB690, int32_t, HardwareJoystickMap_Platform_SDL2_Base_MatchingCriteria_get_alternateElementCount, (HardwareJoystickMap_Platform_SDL2_Base_MatchingCriteria * __this, MethodInfo * method)); DO_APP_FUNC(0x003CB690, HardwareJoystickMap_MatchingCriteria_Base_ElementCount_Base *, HardwareJoystickMap_Platform_SDL2_Base_MatchingCriteria_GetAlternateElementCount, (HardwareJoystickMap_Platform_SDL2_Base_MatchingCriteria * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01F8C1D0, bool, HardwareJoystickMap_Platform_SDL2_Base_MatchingCriteria_ElementCountsMatch, (HardwareJoystickMap_Platform_SDL2_Base_MatchingCriteria * __this, BridgedControllerHWInfo * bridgedControllerHWInfo, bool alternateMatched, MethodInfo * method)); +DO_APP_FUNC(0x01F8C1D0, bool, HardwareJoystickMap_Platform_SDL2_Base_MatchingCriteria_ElementCountsMatch, (HardwareJoystickMap_Platform_SDL2_Base_MatchingCriteria * __this, BridgedControllerHWInfo * bridgedControllerHWInfo, bool * alternateMatched, MethodInfo * method)); DO_APP_FUNC(0x01FB9650, bool, HardwareJoystickMap_Platform_SDL2_Base_MatchingCriteria_AnyNameMatches, (HardwareJoystickMap_Platform_SDL2_Base_MatchingCriteria * __this, BridgedControllerHWInfo * bridgedControllerHWInfo, MethodInfo * method)); DO_APP_FUNC(0x01F9B070, bool, HardwareJoystickMap_Platform_SDL2_Base_MatchingCriteria_NameMatches, (HardwareJoystickMap_Platform_SDL2_Base_MatchingCriteria * __this, String * name, String__Array * names, bool useRegex, MethodInfo * method)); DO_APP_FUNC(0x01FB97A0, Object *, HardwareJoystickMap_Platform_SDL2_Base_MatchingCriteria_DeepClone, (HardwareJoystickMap_Platform_SDL2_Base_MatchingCriteria * __this, MethodInfo * method)); @@ -47862,7 +56247,8 @@ DO_APP_FUNC(0x01F8EA30, HardwareJoystickMap_Platform_SDL2_Base_Axis *, HardwareJ DO_APP_FUNC(0x01FB9BB0, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_SDL2_Base_Axis_ *, HardwareJoystickMap_Platform_SDL2_Base_Elements_get_Axes, (HardwareJoystickMap_Platform_SDL2_Base_Elements * __this, MethodInfo * method)); DO_APP_FUNC(0x01FB9C70, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_SDL2_Base_Button_ *, HardwareJoystickMap_Platform_SDL2_Base_Elements_get_Buttons, (HardwareJoystickMap_Platform_SDL2_Base_Elements * __this, MethodInfo * method)); DO_APP_FUNC(0x01F949D0, ControllerElementType__Enum, HardwareJoystickMap_Platform_SDL2_Base_Elements_GetEffectiveElementIdentifierType, (HardwareJoystickMap_Platform_SDL2_Base_Elements * __this, ControllerElementIdentifier * elementIdentifier, MethodInfo * method)); -DO_APP_FUNC(0x01FB9D30, bool, HardwareJoystickMap_Platform_SDL2_Base_Elements_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_SDL2_Base_Elements * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum axisRange, MethodInfo * method)); +DO_APP_FUNC(0x01FB9D30, bool, HardwareJoystickMap_Platform_SDL2_Base_Elements_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_SDL2_Base_Elements * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum * axisRange, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6410, HardwareJoystickMap_Platform_SDL2_Base_Elements_GetEffectiveAxisRange__MethodInfo); DO_APP_FUNC(0x01FB9FC0, Object *, HardwareJoystickMap_Platform_SDL2_Base_Elements_DeepClone, (HardwareJoystickMap_Platform_SDL2_Base_Elements * __this, MethodInfo * method)); DO_APP_FUNC(0x01FBA030, void, HardwareJoystickMap_Platform_SDL2_Base_Elements_CopyVars, (HardwareJoystickMap_Platform_SDL2_Base_Elements * __this, HardwareJoystickMap_Elements_Base * destination, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_SDL2_Base_Elements__ctor, (HardwareJoystickMap_Platform_SDL2_Base_Elements * __this, MethodInfo * method)); @@ -47871,6 +56257,7 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_SDL2_Base_Elements_Na DO_APP_FUNC(0x01F8F170, bool, HardwareJoystickMap_Platform_SDL2_Base_Elements_NamSMfsFeZtHLdGsRbwZcWvOZrOX_MoveNext, (HardwareJoystickMap_Platform_SDL2_Base_Elements_NamSMfsFeZtHLdGsRbwZcWvOZrOX * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, HardwareJoystickMap_Platform_SDL2_Base_Axis *, HardwareJoystickMap_Platform_SDL2_Base_Elements_NamSMfsFeZtHLdGsRbwZcWvOZrOX_System_Collections_Generic_IEnumerator_Rewired_Data_Mapping_HardwareJoystickMap_Platform_SDL2_Base_Axis__get_Current, (HardwareJoystickMap_Platform_SDL2_Base_Elements_NamSMfsFeZtHLdGsRbwZcWvOZrOX * __this, MethodInfo * method)); DO_APP_FUNC(0x01FBA190, void, HardwareJoystickMap_Platform_SDL2_Base_Elements_NamSMfsFeZtHLdGsRbwZcWvOZrOX_System_Collections_IEnumerator_Reset, (HardwareJoystickMap_Platform_SDL2_Base_Elements_NamSMfsFeZtHLdGsRbwZcWvOZrOX * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB63F8, HardwareJoystickMap_Platform_SDL2_Base_Elements_NamSMfsFeZtHLdGsRbwZcWvOZrOX_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, HardwareJoystickMap_Platform_SDL2_Base_Elements_NamSMfsFeZtHLdGsRbwZcWvOZrOX_System_Collections_IEnumerator_get_Current, (HardwareJoystickMap_Platform_SDL2_Base_Elements_NamSMfsFeZtHLdGsRbwZcWvOZrOX * __this, MethodInfo * method)); DO_APP_FUNC(0x01FBA1E0, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_SDL2_Base_Axis_ *, HardwareJoystickMap_Platform_SDL2_Base_Elements_NamSMfsFeZtHLdGsRbwZcWvOZrOX_System_Collections_Generic_IEnumerable_Rewired_Data_Mapping_HardwareJoystickMap_Platform_SDL2_Base_Axis__GetEnumerator, (HardwareJoystickMap_Platform_SDL2_Base_Elements_NamSMfsFeZtHLdGsRbwZcWvOZrOX * __this, MethodInfo * method)); DO_APP_FUNC(0x01FBA1E0, IEnumerator *, HardwareJoystickMap_Platform_SDL2_Base_Elements_NamSMfsFeZtHLdGsRbwZcWvOZrOX_System_Collections_IEnumerable_GetEnumerator, (HardwareJoystickMap_Platform_SDL2_Base_Elements_NamSMfsFeZtHLdGsRbwZcWvOZrOX * __this, MethodInfo * method)); @@ -47879,6 +56266,7 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_SDL2_Base_Elements_VO DO_APP_FUNC(0x01F8F3F0, bool, HardwareJoystickMap_Platform_SDL2_Base_Elements_VOuYYNRCjagBBSMnvmAvtqbTfAHaA_MoveNext, (HardwareJoystickMap_Platform_SDL2_Base_Elements_VOuYYNRCjagBBSMnvmAvtqbTfAHaA * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, HardwareJoystickMap_Platform_SDL2_Base_Button *, HardwareJoystickMap_Platform_SDL2_Base_Elements_VOuYYNRCjagBBSMnvmAvtqbTfAHaA_System_Collections_Generic_IEnumerator_Rewired_Data_Mapping_HardwareJoystickMap_Platform_SDL2_Base_Button__get_Current, (HardwareJoystickMap_Platform_SDL2_Base_Elements_VOuYYNRCjagBBSMnvmAvtqbTfAHaA * __this, MethodInfo * method)); DO_APP_FUNC(0x01FBA320, void, HardwareJoystickMap_Platform_SDL2_Base_Elements_VOuYYNRCjagBBSMnvmAvtqbTfAHaA_System_Collections_IEnumerator_Reset, (HardwareJoystickMap_Platform_SDL2_Base_Elements_VOuYYNRCjagBBSMnvmAvtqbTfAHaA * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB63E8, HardwareJoystickMap_Platform_SDL2_Base_Elements_VOuYYNRCjagBBSMnvmAvtqbTfAHaA_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, HardwareJoystickMap_Platform_SDL2_Base_Elements_VOuYYNRCjagBBSMnvmAvtqbTfAHaA_System_Collections_IEnumerator_get_Current, (HardwareJoystickMap_Platform_SDL2_Base_Elements_VOuYYNRCjagBBSMnvmAvtqbTfAHaA * __this, MethodInfo * method)); DO_APP_FUNC(0x01FBA370, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_SDL2_Base_Button_ *, HardwareJoystickMap_Platform_SDL2_Base_Elements_VOuYYNRCjagBBSMnvmAvtqbTfAHaA_System_Collections_Generic_IEnumerable_Rewired_Data_Mapping_HardwareJoystickMap_Platform_SDL2_Base_Button__GetEnumerator, (HardwareJoystickMap_Platform_SDL2_Base_Elements_VOuYYNRCjagBBSMnvmAvtqbTfAHaA * __this, MethodInfo * method)); DO_APP_FUNC(0x01FBA370, IEnumerator *, HardwareJoystickMap_Platform_SDL2_Base_Elements_VOuYYNRCjagBBSMnvmAvtqbTfAHaA_System_Collections_IEnumerable_GetEnumerator, (HardwareJoystickMap_Platform_SDL2_Base_Elements_VOuYYNRCjagBBSMnvmAvtqbTfAHaA * __this, MethodInfo * method)); @@ -47895,6 +56283,7 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_SDL2_Base_POwngWQOkCi DO_APP_FUNC(0x01F8F770, bool, HardwareJoystickMap_Platform_SDL2_Base_POwngWQOkCijJLROtYhvLEtZAvUI_MoveNext, (HardwareJoystickMap_Platform_SDL2_Base_POwngWQOkCijJLROtYhvLEtZAvUI * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, HardwareJoystickMap_Platform_SDL2_Base_Axis *, HardwareJoystickMap_Platform_SDL2_Base_POwngWQOkCijJLROtYhvLEtZAvUI_System_Collections_Generic_IEnumerator_Rewired_Data_Mapping_HardwareJoystickMap_Platform_SDL2_Base_Axis__get_Current, (HardwareJoystickMap_Platform_SDL2_Base_POwngWQOkCijJLROtYhvLEtZAvUI * __this, MethodInfo * method)); DO_APP_FUNC(0x01FBA9D0, void, HardwareJoystickMap_Platform_SDL2_Base_POwngWQOkCijJLROtYhvLEtZAvUI_System_Collections_IEnumerator_Reset, (HardwareJoystickMap_Platform_SDL2_Base_POwngWQOkCijJLROtYhvLEtZAvUI * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6430, HardwareJoystickMap_Platform_SDL2_Base_POwngWQOkCijJLROtYhvLEtZAvUI_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, HardwareJoystickMap_Platform_SDL2_Base_POwngWQOkCijJLROtYhvLEtZAvUI_System_Collections_IEnumerator_get_Current, (HardwareJoystickMap_Platform_SDL2_Base_POwngWQOkCijJLROtYhvLEtZAvUI * __this, MethodInfo * method)); DO_APP_FUNC(0x01FBAA20, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_SDL2_Base_Axis_ *, HardwareJoystickMap_Platform_SDL2_Base_POwngWQOkCijJLROtYhvLEtZAvUI_System_Collections_Generic_IEnumerable_Rewired_Data_Mapping_HardwareJoystickMap_Platform_SDL2_Base_Axis__GetEnumerator, (HardwareJoystickMap_Platform_SDL2_Base_POwngWQOkCijJLROtYhvLEtZAvUI * __this, MethodInfo * method)); DO_APP_FUNC(0x01FBAA20, IEnumerator *, HardwareJoystickMap_Platform_SDL2_Base_POwngWQOkCijJLROtYhvLEtZAvUI_System_Collections_IEnumerable_GetEnumerator, (HardwareJoystickMap_Platform_SDL2_Base_POwngWQOkCijJLROtYhvLEtZAvUI * __this, MethodInfo * method)); @@ -47903,11 +56292,12 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_SDL2_Base_JAFKRCpJkrA DO_APP_FUNC(0x01F8FA10, bool, HardwareJoystickMap_Platform_SDL2_Base_JAFKRCpJkrAjwQgPgscaFFBGoBAM_MoveNext, (HardwareJoystickMap_Platform_SDL2_Base_JAFKRCpJkrAjwQgPgscaFFBGoBAM * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, HardwareJoystickMap_Platform_SDL2_Base_Button *, HardwareJoystickMap_Platform_SDL2_Base_JAFKRCpJkrAjwQgPgscaFFBGoBAM_System_Collections_Generic_IEnumerator_Rewired_Data_Mapping_HardwareJoystickMap_Platform_SDL2_Base_Button__get_Current, (HardwareJoystickMap_Platform_SDL2_Base_JAFKRCpJkrAjwQgPgscaFFBGoBAM * __this, MethodInfo * method)); DO_APP_FUNC(0x01FBAB60, void, HardwareJoystickMap_Platform_SDL2_Base_JAFKRCpJkrAjwQgPgscaFFBGoBAM_System_Collections_IEnumerator_Reset, (HardwareJoystickMap_Platform_SDL2_Base_JAFKRCpJkrAjwQgPgscaFFBGoBAM * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6420, HardwareJoystickMap_Platform_SDL2_Base_JAFKRCpJkrAjwQgPgscaFFBGoBAM_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, HardwareJoystickMap_Platform_SDL2_Base_JAFKRCpJkrAjwQgPgscaFFBGoBAM_System_Collections_IEnumerator_get_Current, (HardwareJoystickMap_Platform_SDL2_Base_JAFKRCpJkrAjwQgPgscaFFBGoBAM * __this, MethodInfo * method)); DO_APP_FUNC(0x01FBABB0, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_SDL2_Base_Button_ *, HardwareJoystickMap_Platform_SDL2_Base_JAFKRCpJkrAjwQgPgscaFFBGoBAM_System_Collections_Generic_IEnumerable_Rewired_Data_Mapping_HardwareJoystickMap_Platform_SDL2_Base_Button__GetEnumerator, (HardwareJoystickMap_Platform_SDL2_Base_JAFKRCpJkrAjwQgPgscaFFBGoBAM * __this, MethodInfo * method)); DO_APP_FUNC(0x01FBABB0, IEnumerator *, HardwareJoystickMap_Platform_SDL2_Base_JAFKRCpJkrAjwQgPgscaFFBGoBAM_System_Collections_IEnumerable_GetEnumerator, (HardwareJoystickMap_Platform_SDL2_Base_JAFKRCpJkrAjwQgPgscaFFBGoBAM * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3B0, IList_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_ *, HardwareJoystickMap_Platform_SDL2_get_variants_base, (HardwareJoystickMap_Platform_SDL2 * __this, MethodInfo * method)); -DO_APP_FUNC(0x01F8FCB0, bool, HardwareJoystickMap_Platform_SDL2_Matches, (HardwareJoystickMap_Platform_SDL2 * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t variantIndex, HardwareJoystickMap_Platform * platformMap, MethodInfo * method)); +DO_APP_FUNC(0x01F8FCB0, bool, HardwareJoystickMap_Platform_SDL2_Matches, (HardwareJoystickMap_Platform_SDL2 * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t * variantIndex, HardwareJoystickMap_Platform * * platformMap, MethodInfo * method)); DO_APP_FUNC(0x01FBACF0, Object *, HardwareJoystickMap_Platform_SDL2_DeepClone, (HardwareJoystickMap_Platform_SDL2 * __this, MethodInfo * method)); DO_APP_FUNC(0x01FBAD60, void, HardwareJoystickMap_Platform_SDL2_CopyVars, (HardwareJoystickMap_Platform_SDL2 * __this, HardwareJoystickMap_Platform * destination, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_SDL2__ctor, (HardwareJoystickMap_Platform_SDL2 * __this, MethodInfo * method)); @@ -47919,16 +56309,16 @@ DO_APP_FUNC(0x01F8BDF0, bool, HardwareJoystickMap_Platform_Steam_Base_get_disabl DO_APP_FUNC(0x01F8BE10, bool, HardwareJoystickMap_Platform_Steam_Base_get_isAllowed, (HardwareJoystickMap_Platform_Steam_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, HardwareJoystickMap_Elements_Base *, HardwareJoystickMap_Platform_Steam_Base_get_elements_base, (HardwareJoystickMap_Platform_Steam_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x003CB690, IList_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_ *, HardwareJoystickMap_Platform_Steam_Base_get_variants_base, (HardwareJoystickMap_Platform_Steam_Base * __this, MethodInfo * method)); -DO_APP_FUNC(0x01F8CE50, bool, HardwareJoystickMap_Platform_Steam_Base_Matches, (HardwareJoystickMap_Platform_Steam_Base * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t variantIndex, HardwareJoystickMap_Platform * platformMap, MethodInfo * method)); +DO_APP_FUNC(0x01F8CE50, bool, HardwareJoystickMap_Platform_Steam_Base_Matches, (HardwareJoystickMap_Platform_Steam_Base * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t * variantIndex, HardwareJoystickMap_Platform * * platformMap, MethodInfo * method)); DO_APP_FUNC(0x01FBAF70, String__Array *, HardwareJoystickMap_Platform_Steam_Base_GetAxisNames, (HardwareJoystickMap_Platform_Steam_Base * __this, ControllerElementIdentifier__Array * identifiers, MethodInfo * method)); DO_APP_FUNC(0x01FBAFB0, String__Array *, HardwareJoystickMap_Platform_Steam_Base_GetEffectiveButtonNames, (HardwareJoystickMap_Platform_Steam_Base * __this, ControllerElementIdentifier__Array * identifiers, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, HardwareJoystickMap_Platform_Steam_Base_IsElementIdentifierMapped, (HardwareJoystickMap_Platform_Steam_Base * __this, int32_t elementIdentifierId, MethodInfo * method)); -DO_APP_FUNC(0x01FBAFF0, void, HardwareJoystickMap_Platform_Steam_Base_GetGameElementIdentifierIdMappings, (HardwareJoystickMap_Platform_Steam_Base * __this, Int32__Array * buttons, Int32__Array * axes, MethodInfo * method)); +DO_APP_FUNC(0x01FBAFF0, void, HardwareJoystickMap_Platform_Steam_Base_GetGameElementIdentifierIdMappings, (HardwareJoystickMap_Platform_Steam_Base * __this, Int32__Array * * buttons, Int32__Array * * axes, MethodInfo * method)); DO_APP_FUNC(0x01FBB0F0, AxisCalibrationData__Array *, HardwareJoystickMap_Platform_Steam_Base_GetAxisCalibrationData, (HardwareJoystickMap_Platform_Steam_Base * __this, MethodInfo * method)); -DO_APP_FUNC(0x01FBB130, void, HardwareJoystickMap_Platform_Steam_Base_GetAxisData, (HardwareJoystickMap_Platform_Steam_Base * __this, AxisRange__Enum__Array * axisRanges, HardwareAxisInfo__Array * axisInfos, MethodInfo * method)); -DO_APP_FUNC(0x01FBB240, void, HardwareJoystickMap_Platform_Steam_Base_GetButtonData, (HardwareJoystickMap_Platform_Steam_Base * __this, HardwareButtonInfo__Array * buttonInfos, MethodInfo * method)); +DO_APP_FUNC(0x01FBB130, void, HardwareJoystickMap_Platform_Steam_Base_GetAxisData, (HardwareJoystickMap_Platform_Steam_Base * __this, AxisRange__Enum__Array * * axisRanges, HardwareAxisInfo__Array * * axisInfos, MethodInfo * method)); +DO_APP_FUNC(0x01FBB240, void, HardwareJoystickMap_Platform_Steam_Base_GetButtonData, (HardwareJoystickMap_Platform_Steam_Base * __this, HardwareButtonInfo__Array * * buttonInfos, MethodInfo * method)); DO_APP_FUNC(0x01F8E6C0, ControllerElementType__Enum, HardwareJoystickMap_Platform_Steam_Base_GetEffectiveElementIdentifierType, (HardwareJoystickMap_Platform_Steam_Base * __this, ControllerElementIdentifier * elementIdentifier, MethodInfo * method)); -DO_APP_FUNC(0x01F8E6F0, bool, HardwareJoystickMap_Platform_Steam_Base_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_Steam_Base * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum axisRange, MethodInfo * method)); +DO_APP_FUNC(0x01F8E6F0, bool, HardwareJoystickMap_Platform_Steam_Base_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_Steam_Base * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum * axisRange, MethodInfo * method)); DO_APP_FUNC(0x01FBB2D0, Object *, HardwareJoystickMap_Platform_Steam_Base_DeepClone, (HardwareJoystickMap_Platform_Steam_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x01FBB340, void, HardwareJoystickMap_Platform_Steam_Base_CopyVars, (HardwareJoystickMap_Platform_Steam_Base * __this, HardwareJoystickMap_Platform * destination, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_Steam_Base__ctor, (HardwareJoystickMap_Platform_Steam_Base * __this, MethodInfo * method)); @@ -47937,7 +56327,7 @@ DO_APP_FUNC(0x0059DF50, bool, HardwareJoystickMap_Platform_Steam_Base_MatchingCr DO_APP_FUNC(0x01FA2C80, bool, HardwareJoystickMap_Platform_Steam_Base_MatchingCriteria_Matches, (HardwareJoystickMap_Platform_Steam_Base_MatchingCriteria * __this, BridgedControllerHWInfo * bridgedControllerHWInfo, bool strictMatch, MethodInfo * method)); DO_APP_FUNC(0x003CB690, int32_t, HardwareJoystickMap_Platform_Steam_Base_MatchingCriteria_get_alternateElementCount, (HardwareJoystickMap_Platform_Steam_Base_MatchingCriteria * __this, MethodInfo * method)); DO_APP_FUNC(0x003CB690, HardwareJoystickMap_MatchingCriteria_Base_ElementCount_Base *, HardwareJoystickMap_Platform_Steam_Base_MatchingCriteria_GetAlternateElementCount, (HardwareJoystickMap_Platform_Steam_Base_MatchingCriteria * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01F94610, bool, HardwareJoystickMap_Platform_Steam_Base_MatchingCriteria_ElementCountsMatch, (HardwareJoystickMap_Platform_Steam_Base_MatchingCriteria * __this, BridgedControllerHWInfo * bridgedControllerHWInfo, bool alternateMatched, MethodInfo * method)); +DO_APP_FUNC(0x01F94610, bool, HardwareJoystickMap_Platform_Steam_Base_MatchingCriteria_ElementCountsMatch, (HardwareJoystickMap_Platform_Steam_Base_MatchingCriteria * __this, BridgedControllerHWInfo * bridgedControllerHWInfo, bool * alternateMatched, MethodInfo * method)); DO_APP_FUNC(0x01FBB4E0, Object *, HardwareJoystickMap_Platform_Steam_Base_MatchingCriteria_DeepClone, (HardwareJoystickMap_Platform_Steam_Base_MatchingCriteria * __this, MethodInfo * method)); DO_APP_FUNC(0x01FBB550, void, HardwareJoystickMap_Platform_Steam_Base_MatchingCriteria_CopyVars, (HardwareJoystickMap_Platform_Steam_Base_MatchingCriteria * __this, HardwareJoystickMap_MatchingCriteria_Base * destination, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_Steam_Base_MatchingCriteria__ctor, (HardwareJoystickMap_Platform_Steam_Base_MatchingCriteria * __this, MethodInfo * method)); @@ -47946,10 +56336,10 @@ DO_APP_FUNC(0x003CB690, int32_t, HardwareJoystickMap_Platform_Steam_Base_Element DO_APP_FUNC(0x01FBB610, Object *, HardwareJoystickMap_Platform_Steam_Base_Elements_DeepClone, (HardwareJoystickMap_Platform_Steam_Base_Elements * __this, MethodInfo * method)); DO_APP_FUNC(0x01FBB680, void, HardwareJoystickMap_Platform_Steam_Base_Elements_CopyVars, (HardwareJoystickMap_Platform_Steam_Base_Elements * __this, HardwareJoystickMap_Elements_Base * destination, MethodInfo * method)); DO_APP_FUNC(0x0068B9A0, ControllerElementType__Enum, HardwareJoystickMap_Platform_Steam_Base_Elements_GetEffectiveElementIdentifierType, (HardwareJoystickMap_Platform_Steam_Base_Elements * __this, ControllerElementIdentifier * elementIdentifier, MethodInfo * method)); -DO_APP_FUNC(0x01FBB6B0, bool, HardwareJoystickMap_Platform_Steam_Base_Elements_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_Steam_Base_Elements * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum axisRange, MethodInfo * method)); +DO_APP_FUNC(0x01FBB6B0, bool, HardwareJoystickMap_Platform_Steam_Base_Elements_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_Steam_Base_Elements * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum * axisRange, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_Steam_Base_Elements__ctor, (HardwareJoystickMap_Platform_Steam_Base_Elements * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3B0, IList_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_ *, HardwareJoystickMap_Platform_Steam_get_variants_base, (HardwareJoystickMap_Platform_Steam * __this, MethodInfo * method)); -DO_APP_FUNC(0x01F8FCB0, bool, HardwareJoystickMap_Platform_Steam_Matches, (HardwareJoystickMap_Platform_Steam * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t variantIndex, HardwareJoystickMap_Platform * platformMap, MethodInfo * method)); +DO_APP_FUNC(0x01F8FCB0, bool, HardwareJoystickMap_Platform_Steam_Matches, (HardwareJoystickMap_Platform_Steam * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t * variantIndex, HardwareJoystickMap_Platform * * platformMap, MethodInfo * method)); DO_APP_FUNC(0x01FBB6C0, Object *, HardwareJoystickMap_Platform_Steam_DeepClone, (HardwareJoystickMap_Platform_Steam * __this, MethodInfo * method)); DO_APP_FUNC(0x01FBB730, void, HardwareJoystickMap_Platform_Steam_CopyVars, (HardwareJoystickMap_Platform_Steam * __this, HardwareJoystickMap_Platform * destination, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_Steam__ctor, (HardwareJoystickMap_Platform_Steam * __this, MethodInfo * method)); @@ -47965,18 +56355,20 @@ DO_APP_FUNC(0x01F8BDF0, bool, HardwareJoystickMap_Platform_WebGL_Base_get_disabl DO_APP_FUNC(0x01F8BE10, bool, HardwareJoystickMap_Platform_WebGL_Base_get_isAllowed, (HardwareJoystickMap_Platform_WebGL_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, HardwareJoystickMap_Elements_Base *, HardwareJoystickMap_Platform_WebGL_Base_get_elements_base, (HardwareJoystickMap_Platform_WebGL_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x003CB690, IList_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_ *, HardwareJoystickMap_Platform_WebGL_Base_get_variants_base, (HardwareJoystickMap_Platform_WebGL_Base * __this, MethodInfo * method)); -DO_APP_FUNC(0x01F8CE50, bool, HardwareJoystickMap_Platform_WebGL_Base_Matches, (HardwareJoystickMap_Platform_WebGL_Base * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t variantIndex, HardwareJoystickMap_Platform * platformMap, MethodInfo * method)); +DO_APP_FUNC(0x01F8CE50, bool, HardwareJoystickMap_Platform_WebGL_Base_Matches, (HardwareJoystickMap_Platform_WebGL_Base * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t * variantIndex, HardwareJoystickMap_Platform * * platformMap, MethodInfo * method)); DO_APP_FUNC(0x01FBBD70, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Axis_ *, HardwareJoystickMap_Platform_WebGL_Base_IterateAxes, (HardwareJoystickMap_Platform_WebGL_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x01FBBE30, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Button_ *, HardwareJoystickMap_Platform_WebGL_Base_IterateButtons, (HardwareJoystickMap_Platform_WebGL_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x01FBBEF0, String__Array *, HardwareJoystickMap_Platform_WebGL_Base_GetAxisNames, (HardwareJoystickMap_Platform_WebGL_Base * __this, ControllerElementIdentifier__Array * identifiers, MethodInfo * method)); DO_APP_FUNC(0x01FBC0F0, String__Array *, HardwareJoystickMap_Platform_WebGL_Base_GetEffectiveButtonNames, (HardwareJoystickMap_Platform_WebGL_Base * __this, ControllerElementIdentifier__Array * identifiers, MethodInfo * method)); DO_APP_FUNC(0x01FBC2D0, bool, HardwareJoystickMap_Platform_WebGL_Base_IsElementIdentifierMapped, (HardwareJoystickMap_Platform_WebGL_Base * __this, int32_t elementIdentifierId, MethodInfo * method)); -DO_APP_FUNC(0x01FBC620, void, HardwareJoystickMap_Platform_WebGL_Base_GetGameElementIdentifierIdMappings, (HardwareJoystickMap_Platform_WebGL_Base * __this, Int32__Array * buttons, Int32__Array * axes, MethodInfo * method)); +DO_APP_FUNC(0x01FBC620, void, HardwareJoystickMap_Platform_WebGL_Base_GetGameElementIdentifierIdMappings, (HardwareJoystickMap_Platform_WebGL_Base * __this, Int32__Array * * buttons, Int32__Array * * axes, MethodInfo * method)); DO_APP_FUNC(0x01FBCBF0, AxisCalibrationData__Array *, HardwareJoystickMap_Platform_WebGL_Base_GetAxisCalibrationData, (HardwareJoystickMap_Platform_WebGL_Base * __this, MethodInfo * method)); -DO_APP_FUNC(0x01FBCF70, void, HardwareJoystickMap_Platform_WebGL_Base_GetAxisData, (HardwareJoystickMap_Platform_WebGL_Base * __this, AxisRange__Enum__Array * axisRanges, HardwareAxisInfo__Array * axisInfos, MethodInfo * method)); -DO_APP_FUNC(0x01FBD3A0, void, HardwareJoystickMap_Platform_WebGL_Base_GetButtonData, (HardwareJoystickMap_Platform_WebGL_Base * __this, HardwareButtonInfo__Array * buttonInfos, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB63A0, HardwareJoystickMap_Platform_WebGL_Base_GetAxisCalibrationData__MethodInfo); +DO_APP_FUNC(0x01FBCF70, void, HardwareJoystickMap_Platform_WebGL_Base_GetAxisData, (HardwareJoystickMap_Platform_WebGL_Base * __this, AxisRange__Enum__Array * * axisRanges, HardwareAxisInfo__Array * * axisInfos, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6350, HardwareJoystickMap_Platform_WebGL_Base_GetAxisData__MethodInfo); +DO_APP_FUNC(0x01FBD3A0, void, HardwareJoystickMap_Platform_WebGL_Base_GetButtonData, (HardwareJoystickMap_Platform_WebGL_Base * __this, HardwareButtonInfo__Array * * buttonInfos, MethodInfo * method)); DO_APP_FUNC(0x01F8E6C0, ControllerElementType__Enum, HardwareJoystickMap_Platform_WebGL_Base_GetEffectiveElementIdentifierType, (HardwareJoystickMap_Platform_WebGL_Base * __this, ControllerElementIdentifier * elementIdentifier, MethodInfo * method)); -DO_APP_FUNC(0x01F8E6F0, bool, HardwareJoystickMap_Platform_WebGL_Base_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_WebGL_Base * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum axisRange, MethodInfo * method)); +DO_APP_FUNC(0x01F8E6F0, bool, HardwareJoystickMap_Platform_WebGL_Base_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_WebGL_Base * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum * axisRange, MethodInfo * method)); DO_APP_FUNC(0x01FBD610, Object *, HardwareJoystickMap_Platform_WebGL_Base_DeepClone, (HardwareJoystickMap_Platform_WebGL_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x01FBD680, void, HardwareJoystickMap_Platform_WebGL_Base_CopyVars, (HardwareJoystickMap_Platform_WebGL_Base * __this, HardwareJoystickMap_Platform * destination, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_WebGL_Base__ctor, (HardwareJoystickMap_Platform_WebGL_Base * __this, MethodInfo * method)); @@ -47993,7 +56385,8 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_WebGL_Base_MatchingCr DO_APP_FUNC(0x006BD920, int32_t, HardwareJoystickMap_Platform_WebGL_Base_Elements_get_buttonCount, (HardwareJoystickMap_Platform_WebGL_Base_Elements * __this, MethodInfo * method)); DO_APP_FUNC(0x006BD6A0, int32_t, HardwareJoystickMap_Platform_WebGL_Base_Elements_get_axisCount, (HardwareJoystickMap_Platform_WebGL_Base_Elements * __this, MethodInfo * method)); DO_APP_FUNC(0x01F949D0, ControllerElementType__Enum, HardwareJoystickMap_Platform_WebGL_Base_Elements_GetEffectiveElementIdentifierType, (HardwareJoystickMap_Platform_WebGL_Base_Elements * __this, ControllerElementIdentifier * elementIdentifier, MethodInfo * method)); -DO_APP_FUNC(0x01FBEDE0, bool, HardwareJoystickMap_Platform_WebGL_Base_Elements_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_WebGL_Base_Elements * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum axisRange, MethodInfo * method)); +DO_APP_FUNC(0x01FBEDE0, bool, HardwareJoystickMap_Platform_WebGL_Base_Elements_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_WebGL_Base_Elements * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum * axisRange, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6358, HardwareJoystickMap_Platform_WebGL_Base_Elements_GetEffectiveAxisRange__MethodInfo); DO_APP_FUNC(0x01FBEF70, Object *, HardwareJoystickMap_Platform_WebGL_Base_Elements_DeepClone, (HardwareJoystickMap_Platform_WebGL_Base_Elements * __this, MethodInfo * method)); DO_APP_FUNC(0x01FBEFE0, void, HardwareJoystickMap_Platform_WebGL_Base_Elements_CopyVars, (HardwareJoystickMap_Platform_WebGL_Base_Elements * __this, HardwareJoystickMap_Elements_Base * destination, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_WebGL_Base_Elements__ctor, (HardwareJoystickMap_Platform_WebGL_Base_Elements * __this, MethodInfo * method)); @@ -48008,6 +56401,7 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_WebGL_Base_fTuRDZpuiP DO_APP_FUNC(0x01F950F0, bool, HardwareJoystickMap_Platform_WebGL_Base_fTuRDZpuiPIyhvZVRbrpztqEVtwn_MoveNext, (HardwareJoystickMap_Platform_WebGL_Base_fTuRDZpuiPIyhvZVRbrpztqEVtwn * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, HardwareJoystickMap_Platform_Custom_Axis *, HardwareJoystickMap_Platform_WebGL_Base_fTuRDZpuiPIyhvZVRbrpztqEVtwn_System_Collections_Generic_IEnumerator_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Axis__get_Current, (HardwareJoystickMap_Platform_WebGL_Base_fTuRDZpuiPIyhvZVRbrpztqEVtwn * __this, MethodInfo * method)); DO_APP_FUNC(0x01FBF2C0, void, HardwareJoystickMap_Platform_WebGL_Base_fTuRDZpuiPIyhvZVRbrpztqEVtwn_System_Collections_IEnumerator_Reset, (HardwareJoystickMap_Platform_WebGL_Base_fTuRDZpuiPIyhvZVRbrpztqEVtwn * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6300, HardwareJoystickMap_Platform_WebGL_Base_fTuRDZpuiPIyhvZVRbrpztqEVtwn_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, HardwareJoystickMap_Platform_WebGL_Base_fTuRDZpuiPIyhvZVRbrpztqEVtwn_System_Collections_IEnumerator_get_Current, (HardwareJoystickMap_Platform_WebGL_Base_fTuRDZpuiPIyhvZVRbrpztqEVtwn * __this, MethodInfo * method)); DO_APP_FUNC(0x01FBF310, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Axis_ *, HardwareJoystickMap_Platform_WebGL_Base_fTuRDZpuiPIyhvZVRbrpztqEVtwn_System_Collections_Generic_IEnumerable_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Axis__GetEnumerator, (HardwareJoystickMap_Platform_WebGL_Base_fTuRDZpuiPIyhvZVRbrpztqEVtwn * __this, MethodInfo * method)); DO_APP_FUNC(0x01FBF310, IEnumerator *, HardwareJoystickMap_Platform_WebGL_Base_fTuRDZpuiPIyhvZVRbrpztqEVtwn_System_Collections_IEnumerable_GetEnumerator, (HardwareJoystickMap_Platform_WebGL_Base_fTuRDZpuiPIyhvZVRbrpztqEVtwn * __this, MethodInfo * method)); @@ -48016,11 +56410,12 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_WebGL_Base_cTrToEfGfd DO_APP_FUNC(0x01F95390, bool, HardwareJoystickMap_Platform_WebGL_Base_cTrToEfGfdWILiRiuezqTpXBowRm_MoveNext, (HardwareJoystickMap_Platform_WebGL_Base_cTrToEfGfdWILiRiuezqTpXBowRm * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, HardwareJoystickMap_Platform_Custom_Button *, HardwareJoystickMap_Platform_WebGL_Base_cTrToEfGfdWILiRiuezqTpXBowRm_System_Collections_Generic_IEnumerator_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Button__get_Current, (HardwareJoystickMap_Platform_WebGL_Base_cTrToEfGfdWILiRiuezqTpXBowRm * __this, MethodInfo * method)); DO_APP_FUNC(0x01FBF450, void, HardwareJoystickMap_Platform_WebGL_Base_cTrToEfGfdWILiRiuezqTpXBowRm_System_Collections_IEnumerator_Reset, (HardwareJoystickMap_Platform_WebGL_Base_cTrToEfGfdWILiRiuezqTpXBowRm * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6330, HardwareJoystickMap_Platform_WebGL_Base_cTrToEfGfdWILiRiuezqTpXBowRm_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, HardwareJoystickMap_Platform_WebGL_Base_cTrToEfGfdWILiRiuezqTpXBowRm_System_Collections_IEnumerator_get_Current, (HardwareJoystickMap_Platform_WebGL_Base_cTrToEfGfdWILiRiuezqTpXBowRm * __this, MethodInfo * method)); DO_APP_FUNC(0x01FBF4A0, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Button_ *, HardwareJoystickMap_Platform_WebGL_Base_cTrToEfGfdWILiRiuezqTpXBowRm_System_Collections_Generic_IEnumerable_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Button__GetEnumerator, (HardwareJoystickMap_Platform_WebGL_Base_cTrToEfGfdWILiRiuezqTpXBowRm * __this, MethodInfo * method)); DO_APP_FUNC(0x01FBF4A0, IEnumerator *, HardwareJoystickMap_Platform_WebGL_Base_cTrToEfGfdWILiRiuezqTpXBowRm_System_Collections_IEnumerable_GetEnumerator, (HardwareJoystickMap_Platform_WebGL_Base_cTrToEfGfdWILiRiuezqTpXBowRm * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7320, IList_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_ *, HardwareJoystickMap_Platform_WebGL_get_variants_base, (HardwareJoystickMap_Platform_WebGL * __this, MethodInfo * method)); -DO_APP_FUNC(0x01FA5D10, bool, HardwareJoystickMap_Platform_WebGL_Matches, (HardwareJoystickMap_Platform_WebGL * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t variantIndex, HardwareJoystickMap_Platform * platformMap, MethodInfo * method)); +DO_APP_FUNC(0x01FA5D10, bool, HardwareJoystickMap_Platform_WebGL_Matches, (HardwareJoystickMap_Platform_WebGL * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t * variantIndex, HardwareJoystickMap_Platform * * platformMap, MethodInfo * method)); DO_APP_FUNC(0x01FBF5E0, Object *, HardwareJoystickMap_Platform_WebGL_DeepClone, (HardwareJoystickMap_Platform_WebGL * __this, MethodInfo * method)); DO_APP_FUNC(0x01FBF650, void, HardwareJoystickMap_Platform_WebGL_CopyVars, (HardwareJoystickMap_Platform_WebGL * __this, HardwareJoystickMap_Platform * destination, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_WebGL__ctor, (HardwareJoystickMap_Platform_WebGL * __this, MethodInfo * method)); @@ -48039,18 +56434,20 @@ DO_APP_FUNC(0x01F8BDF0, bool, HardwareJoystickMap_Platform_AppleGCController_Bas DO_APP_FUNC(0x01F8BE10, bool, HardwareJoystickMap_Platform_AppleGCController_Base_get_isAllowed, (HardwareJoystickMap_Platform_AppleGCController_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, HardwareJoystickMap_Elements_Base *, HardwareJoystickMap_Platform_AppleGCController_Base_get_elements_base, (HardwareJoystickMap_Platform_AppleGCController_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x003CB690, IList_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_ *, HardwareJoystickMap_Platform_AppleGCController_Base_get_variants_base, (HardwareJoystickMap_Platform_AppleGCController_Base * __this, MethodInfo * method)); -DO_APP_FUNC(0x01F8CE50, bool, HardwareJoystickMap_Platform_AppleGCController_Base_Matches, (HardwareJoystickMap_Platform_AppleGCController_Base * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t variantIndex, HardwareJoystickMap_Platform * platformMap, MethodInfo * method)); +DO_APP_FUNC(0x01F8CE50, bool, HardwareJoystickMap_Platform_AppleGCController_Base_Matches, (HardwareJoystickMap_Platform_AppleGCController_Base * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t * variantIndex, HardwareJoystickMap_Platform * * platformMap, MethodInfo * method)); DO_APP_FUNC(0x01FBFE80, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Axis_ *, HardwareJoystickMap_Platform_AppleGCController_Base_IterateAxes, (HardwareJoystickMap_Platform_AppleGCController_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x01FBFF40, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Button_ *, HardwareJoystickMap_Platform_AppleGCController_Base_IterateButtons, (HardwareJoystickMap_Platform_AppleGCController_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x01FC0000, String__Array *, HardwareJoystickMap_Platform_AppleGCController_Base_GetAxisNames, (HardwareJoystickMap_Platform_AppleGCController_Base * __this, ControllerElementIdentifier__Array * identifiers, MethodInfo * method)); DO_APP_FUNC(0x01FC0200, String__Array *, HardwareJoystickMap_Platform_AppleGCController_Base_GetEffectiveButtonNames, (HardwareJoystickMap_Platform_AppleGCController_Base * __this, ControllerElementIdentifier__Array * identifiers, MethodInfo * method)); DO_APP_FUNC(0x01FC03E0, bool, HardwareJoystickMap_Platform_AppleGCController_Base_IsElementIdentifierMapped, (HardwareJoystickMap_Platform_AppleGCController_Base * __this, int32_t elementIdentifierId, MethodInfo * method)); -DO_APP_FUNC(0x01FC0730, void, HardwareJoystickMap_Platform_AppleGCController_Base_GetGameElementIdentifierIdMappings, (HardwareJoystickMap_Platform_AppleGCController_Base * __this, Int32__Array * buttons, Int32__Array * axes, MethodInfo * method)); +DO_APP_FUNC(0x01FC0730, void, HardwareJoystickMap_Platform_AppleGCController_Base_GetGameElementIdentifierIdMappings, (HardwareJoystickMap_Platform_AppleGCController_Base * __this, Int32__Array * * buttons, Int32__Array * * axes, MethodInfo * method)); DO_APP_FUNC(0x01FC0D00, AxisCalibrationData__Array *, HardwareJoystickMap_Platform_AppleGCController_Base_GetAxisCalibrationData, (HardwareJoystickMap_Platform_AppleGCController_Base * __this, MethodInfo * method)); -DO_APP_FUNC(0x01FC1080, void, HardwareJoystickMap_Platform_AppleGCController_Base_GetAxisData, (HardwareJoystickMap_Platform_AppleGCController_Base * __this, AxisRange__Enum__Array * axisRanges, HardwareAxisInfo__Array * axisInfos, MethodInfo * method)); -DO_APP_FUNC(0x01FC14B0, void, HardwareJoystickMap_Platform_AppleGCController_Base_GetButtonData, (HardwareJoystickMap_Platform_AppleGCController_Base * __this, HardwareButtonInfo__Array * buttonInfos, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB62F8, HardwareJoystickMap_Platform_AppleGCController_Base_GetAxisCalibrationData__MethodInfo); +DO_APP_FUNC(0x01FC1080, void, HardwareJoystickMap_Platform_AppleGCController_Base_GetAxisData, (HardwareJoystickMap_Platform_AppleGCController_Base * __this, AxisRange__Enum__Array * * axisRanges, HardwareAxisInfo__Array * * axisInfos, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB62F0, HardwareJoystickMap_Platform_AppleGCController_Base_GetAxisData__MethodInfo); +DO_APP_FUNC(0x01FC14B0, void, HardwareJoystickMap_Platform_AppleGCController_Base_GetButtonData, (HardwareJoystickMap_Platform_AppleGCController_Base * __this, HardwareButtonInfo__Array * * buttonInfos, MethodInfo * method)); DO_APP_FUNC(0x01F8E6C0, ControllerElementType__Enum, HardwareJoystickMap_Platform_AppleGCController_Base_GetEffectiveElementIdentifierType, (HardwareJoystickMap_Platform_AppleGCController_Base * __this, ControllerElementIdentifier * elementIdentifier, MethodInfo * method)); -DO_APP_FUNC(0x01F8E6F0, bool, HardwareJoystickMap_Platform_AppleGCController_Base_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_AppleGCController_Base * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum axisRange, MethodInfo * method)); +DO_APP_FUNC(0x01F8E6F0, bool, HardwareJoystickMap_Platform_AppleGCController_Base_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_AppleGCController_Base * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum * axisRange, MethodInfo * method)); DO_APP_FUNC(0x01FC1720, Object *, HardwareJoystickMap_Platform_AppleGCController_Base_DeepClone, (HardwareJoystickMap_Platform_AppleGCController_Base * __this, MethodInfo * method)); DO_APP_FUNC(0x01FC1790, void, HardwareJoystickMap_Platform_AppleGCController_Base_CopyVars, (HardwareJoystickMap_Platform_AppleGCController_Base * __this, HardwareJoystickMap_Platform * destination, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_AppleGCController_Base__ctor, (HardwareJoystickMap_Platform_AppleGCController_Base * __this, MethodInfo * method)); @@ -48066,7 +56463,8 @@ DO_APP_FUNC(0x006BD920, int32_t, HardwareJoystickMap_Platform_AppleGCController_ DO_APP_FUNC(0x006BD6A0, int32_t, HardwareJoystickMap_Platform_AppleGCController_Base_Elements_get_axisCount, (HardwareJoystickMap_Platform_AppleGCController_Base_Elements * __this, MethodInfo * method)); DO_APP_FUNC(0x01F36830, int32_t, HardwareJoystickMap_Platform_AppleGCController_Base_Elements_get_compoundElementCount, (HardwareJoystickMap_Platform_AppleGCController_Base_Elements * __this, MethodInfo * method)); DO_APP_FUNC(0x01F949D0, ControllerElementType__Enum, HardwareJoystickMap_Platform_AppleGCController_Base_Elements_GetEffectiveElementIdentifierType, (HardwareJoystickMap_Platform_AppleGCController_Base_Elements * __this, ControllerElementIdentifier * elementIdentifier, MethodInfo * method)); -DO_APP_FUNC(0x01FC1DD0, bool, HardwareJoystickMap_Platform_AppleGCController_Base_Elements_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_AppleGCController_Base_Elements * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum axisRange, MethodInfo * method)); +DO_APP_FUNC(0x01FC1DD0, bool, HardwareJoystickMap_Platform_AppleGCController_Base_Elements_GetEffectiveAxisRange, (HardwareJoystickMap_Platform_AppleGCController_Base_Elements * __this, ControllerElementIdentifier * elementIdentifier, AxisRange__Enum * axisRange, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6280, HardwareJoystickMap_Platform_AppleGCController_Base_Elements_GetEffectiveAxisRange__MethodInfo); DO_APP_FUNC(0x01FC1F60, Object *, HardwareJoystickMap_Platform_AppleGCController_Base_Elements_DeepClone, (HardwareJoystickMap_Platform_AppleGCController_Base_Elements * __this, MethodInfo * method)); DO_APP_FUNC(0x01FC1FD0, void, HardwareJoystickMap_Platform_AppleGCController_Base_Elements_CopyVars, (HardwareJoystickMap_Platform_AppleGCController_Base_Elements * __this, HardwareJoystickMap_Elements_Base * destination, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_AppleGCController_Base_Elements__ctor, (HardwareJoystickMap_Platform_AppleGCController_Base_Elements * __this, MethodInfo * method)); @@ -48084,6 +56482,7 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_AppleGCController_Bas DO_APP_FUNC(0x01F950F0, bool, HardwareJoystickMap_Platform_AppleGCController_Base_owLghjoTKECRFeKSCdKesAfgEtkM_MoveNext, (HardwareJoystickMap_Platform_AppleGCController_Base_owLghjoTKECRFeKSCdKesAfgEtkM * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, HardwareJoystickMap_Platform_Custom_Axis *, HardwareJoystickMap_Platform_AppleGCController_Base_owLghjoTKECRFeKSCdKesAfgEtkM_System_Collections_Generic_IEnumerator_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Axis__get_Current, (HardwareJoystickMap_Platform_AppleGCController_Base_owLghjoTKECRFeKSCdKesAfgEtkM * __this, MethodInfo * method)); DO_APP_FUNC(0x01FC23F0, void, HardwareJoystickMap_Platform_AppleGCController_Base_owLghjoTKECRFeKSCdKesAfgEtkM_System_Collections_IEnumerator_Reset, (HardwareJoystickMap_Platform_AppleGCController_Base_owLghjoTKECRFeKSCdKesAfgEtkM * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB62A0, HardwareJoystickMap_Platform_AppleGCController_Base_owLghjoTKECRFeKSCdKesAfgEtkM_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, HardwareJoystickMap_Platform_AppleGCController_Base_owLghjoTKECRFeKSCdKesAfgEtkM_System_Collections_IEnumerator_get_Current, (HardwareJoystickMap_Platform_AppleGCController_Base_owLghjoTKECRFeKSCdKesAfgEtkM * __this, MethodInfo * method)); DO_APP_FUNC(0x01FC2440, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Axis_ *, HardwareJoystickMap_Platform_AppleGCController_Base_owLghjoTKECRFeKSCdKesAfgEtkM_System_Collections_Generic_IEnumerable_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Axis__GetEnumerator, (HardwareJoystickMap_Platform_AppleGCController_Base_owLghjoTKECRFeKSCdKesAfgEtkM * __this, MethodInfo * method)); DO_APP_FUNC(0x01FC2440, IEnumerator *, HardwareJoystickMap_Platform_AppleGCController_Base_owLghjoTKECRFeKSCdKesAfgEtkM_System_Collections_IEnumerable_GetEnumerator, (HardwareJoystickMap_Platform_AppleGCController_Base_owLghjoTKECRFeKSCdKesAfgEtkM * __this, MethodInfo * method)); @@ -48092,11 +56491,12 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_Platform_AppleGCController_Bas DO_APP_FUNC(0x01F95390, bool, HardwareJoystickMap_Platform_AppleGCController_Base_BkljFakBpDfpqKAryGFkiZOXsnjxA_MoveNext, (HardwareJoystickMap_Platform_AppleGCController_Base_BkljFakBpDfpqKAryGFkiZOXsnjxA * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, HardwareJoystickMap_Platform_Custom_Button *, HardwareJoystickMap_Platform_AppleGCController_Base_BkljFakBpDfpqKAryGFkiZOXsnjxA_System_Collections_Generic_IEnumerator_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Button__get_Current, (HardwareJoystickMap_Platform_AppleGCController_Base_BkljFakBpDfpqKAryGFkiZOXsnjxA * __this, MethodInfo * method)); DO_APP_FUNC(0x01FC2580, void, HardwareJoystickMap_Platform_AppleGCController_Base_BkljFakBpDfpqKAryGFkiZOXsnjxA_System_Collections_IEnumerator_Reset, (HardwareJoystickMap_Platform_AppleGCController_Base_BkljFakBpDfpqKAryGFkiZOXsnjxA * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB62A8, HardwareJoystickMap_Platform_AppleGCController_Base_BkljFakBpDfpqKAryGFkiZOXsnjxA_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, HardwareJoystickMap_Platform_AppleGCController_Base_BkljFakBpDfpqKAryGFkiZOXsnjxA_System_Collections_IEnumerator_get_Current, (HardwareJoystickMap_Platform_AppleGCController_Base_BkljFakBpDfpqKAryGFkiZOXsnjxA * __this, MethodInfo * method)); DO_APP_FUNC(0x01FC25D0, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Button_ *, HardwareJoystickMap_Platform_AppleGCController_Base_BkljFakBpDfpqKAryGFkiZOXsnjxA_System_Collections_Generic_IEnumerable_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Button__GetEnumerator, (HardwareJoystickMap_Platform_AppleGCController_Base_BkljFakBpDfpqKAryGFkiZOXsnjxA * __this, MethodInfo * method)); DO_APP_FUNC(0x01FC25D0, IEnumerator *, HardwareJoystickMap_Platform_AppleGCController_Base_BkljFakBpDfpqKAryGFkiZOXsnjxA_System_Collections_IEnumerable_GetEnumerator, (HardwareJoystickMap_Platform_AppleGCController_Base_BkljFakBpDfpqKAryGFkiZOXsnjxA * __this, MethodInfo * method)); DO_APP_FUNC(0x003CD530, IList_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_ *, HardwareJoystickMap_Platform_AppleGCController_get_variants_base, (HardwareJoystickMap_Platform_AppleGCController * __this, MethodInfo * method)); -DO_APP_FUNC(0x01FC2710, bool, HardwareJoystickMap_Platform_AppleGCController_Matches, (HardwareJoystickMap_Platform_AppleGCController * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t variantIndex, HardwareJoystickMap_Platform * platformMap, MethodInfo * method)); +DO_APP_FUNC(0x01FC2710, bool, HardwareJoystickMap_Platform_AppleGCController_Matches, (HardwareJoystickMap_Platform_AppleGCController * __this, BridgedControllerHWInfo * BridgedControllerHWInfo, bool strictMatch, int32_t * variantIndex, HardwareJoystickMap_Platform * * platformMap, MethodInfo * method)); DO_APP_FUNC(0x01FC28C0, Object *, HardwareJoystickMap_Platform_AppleGCController_DeepClone, (HardwareJoystickMap_Platform_AppleGCController * __this, MethodInfo * method)); DO_APP_FUNC(0x01FC2930, void, HardwareJoystickMap_Platform_AppleGCController_CopyVars, (HardwareJoystickMap_Platform_AppleGCController * __this, HardwareJoystickMap_Platform * destination, MethodInfo * method)); DO_APP_FUNC(0x01FC2A40, HardwareJoystickMap_Platform_AppleGCController *, HardwareJoystickMap_Platform_AppleGCController_CreateDefaultMap, (BridgedControllerHWInfo * bridgedController, MethodInfo * method)); @@ -48106,6 +56506,7 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_lsaaRXzSdSjXGsNWSviySLmrxkfj_S DO_APP_FUNC(0x01FC3130, bool, HardwareJoystickMap_lsaaRXzSdSjXGsNWSviySLmrxkfj_MoveNext, (HardwareJoystickMap_lsaaRXzSdSjXGsNWSviySLmrxkfj * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, IControllerElementIdentifierCommon_Internal *, HardwareJoystickMap_lsaaRXzSdSjXGsNWSviySLmrxkfj_System_Collections_Generic_IEnumerator_Rewired_Interfaces_IControllerElementIdentifierCommon_Internal__get_Current, (HardwareJoystickMap_lsaaRXzSdSjXGsNWSviySLmrxkfj * __this, MethodInfo * method)); DO_APP_FUNC(0x01FC3220, void, HardwareJoystickMap_lsaaRXzSdSjXGsNWSviySLmrxkfj_System_Collections_IEnumerator_Reset, (HardwareJoystickMap_lsaaRXzSdSjXGsNWSviySLmrxkfj * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6220, HardwareJoystickMap_lsaaRXzSdSjXGsNWSviySLmrxkfj_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, HardwareJoystickMap_lsaaRXzSdSjXGsNWSviySLmrxkfj_System_Collections_IEnumerator_get_Current, (HardwareJoystickMap_lsaaRXzSdSjXGsNWSviySLmrxkfj * __this, MethodInfo * method)); DO_APP_FUNC(0x01FC3270, IEnumerator_1_Rewired_Interfaces_IControllerElementIdentifierCommon_Internal_ *, HardwareJoystickMap_lsaaRXzSdSjXGsNWSviySLmrxkfj_System_Collections_Generic_IEnumerable_Rewired_Interfaces_IControllerElementIdentifierCommon_Internal__GetEnumerator, (HardwareJoystickMap_lsaaRXzSdSjXGsNWSviySLmrxkfj * __this, MethodInfo * method)); DO_APP_FUNC(0x01FC3270, IEnumerator *, HardwareJoystickMap_lsaaRXzSdSjXGsNWSviySLmrxkfj_System_Collections_IEnumerable_GetEnumerator, (HardwareJoystickMap_lsaaRXzSdSjXGsNWSviySLmrxkfj * __this, MethodInfo * method)); @@ -48114,6 +56515,7 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_lrUGiixxJxgEsqTWkCueMATRSirt_S DO_APP_FUNC(0x01FC3130, bool, HardwareJoystickMap_lrUGiixxJxgEsqTWkCueMATRSirt_MoveNext, (HardwareJoystickMap_lrUGiixxJxgEsqTWkCueMATRSirt * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, ControllerElementIdentifier *, HardwareJoystickMap_lrUGiixxJxgEsqTWkCueMATRSirt_System_Collections_Generic_IEnumerator_Rewired_ControllerElementIdentifier__get_Current, (HardwareJoystickMap_lrUGiixxJxgEsqTWkCueMATRSirt * __this, MethodInfo * method)); DO_APP_FUNC(0x01FC33B0, void, HardwareJoystickMap_lrUGiixxJxgEsqTWkCueMATRSirt_System_Collections_IEnumerator_Reset, (HardwareJoystickMap_lrUGiixxJxgEsqTWkCueMATRSirt * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6228, HardwareJoystickMap_lrUGiixxJxgEsqTWkCueMATRSirt_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, HardwareJoystickMap_lrUGiixxJxgEsqTWkCueMATRSirt_System_Collections_IEnumerator_get_Current, (HardwareJoystickMap_lrUGiixxJxgEsqTWkCueMATRSirt * __this, MethodInfo * method)); DO_APP_FUNC(0x01FC3400, IEnumerator_1_Rewired_ControllerElementIdentifier_ *, HardwareJoystickMap_lrUGiixxJxgEsqTWkCueMATRSirt_System_Collections_Generic_IEnumerable_Rewired_ControllerElementIdentifier__GetEnumerator, (HardwareJoystickMap_lrUGiixxJxgEsqTWkCueMATRSirt * __this, MethodInfo * method)); DO_APP_FUNC(0x01FC3400, IEnumerator *, HardwareJoystickMap_lrUGiixxJxgEsqTWkCueMATRSirt_System_Collections_IEnumerable_GetEnumerator, (HardwareJoystickMap_lrUGiixxJxgEsqTWkCueMATRSirt * __this, MethodInfo * method)); @@ -48122,6 +56524,7 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_AKUBqZfKWqilagnkBmUMbUlRrxonB_ DO_APP_FUNC(0x01FC3540, bool, HardwareJoystickMap_AKUBqZfKWqilagnkBmUMbUlRrxonB_MoveNext, (HardwareJoystickMap_AKUBqZfKWqilagnkBmUMbUlRrxonB * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD70, JoystickType__Enum, HardwareJoystickMap_AKUBqZfKWqilagnkBmUMbUlRrxonB_System_Collections_Generic_IEnumerator_Rewired_JoystickType__get_Current, (HardwareJoystickMap_AKUBqZfKWqilagnkBmUMbUlRrxonB * __this, MethodInfo * method)); DO_APP_FUNC(0x01FC35D0, void, HardwareJoystickMap_AKUBqZfKWqilagnkBmUMbUlRrxonB_System_Collections_IEnumerator_Reset, (HardwareJoystickMap_AKUBqZfKWqilagnkBmUMbUlRrxonB * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6218, HardwareJoystickMap_AKUBqZfKWqilagnkBmUMbUlRrxonB_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x01FC3620, Object *, HardwareJoystickMap_AKUBqZfKWqilagnkBmUMbUlRrxonB_System_Collections_IEnumerator_get_Current, (HardwareJoystickMap_AKUBqZfKWqilagnkBmUMbUlRrxonB * __this, MethodInfo * method)); DO_APP_FUNC(0x01FC3670, IEnumerator_1_Rewired_JoystickType_ *, HardwareJoystickMap_AKUBqZfKWqilagnkBmUMbUlRrxonB_System_Collections_Generic_IEnumerable_Rewired_JoystickType__GetEnumerator, (HardwareJoystickMap_AKUBqZfKWqilagnkBmUMbUlRrxonB * __this, MethodInfo * method)); DO_APP_FUNC(0x01FC3670, IEnumerator *, HardwareJoystickMap_AKUBqZfKWqilagnkBmUMbUlRrxonB_System_Collections_IEnumerable_GetEnumerator, (HardwareJoystickMap_AKUBqZfKWqilagnkBmUMbUlRrxonB * __this, MethodInfo * method)); @@ -48130,6 +56533,7 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickMap_izmwytdAUQSgIhGFWHhqldpKsAHJ_S DO_APP_FUNC(0x01FC3830, bool, HardwareJoystickMap_izmwytdAUQSgIhGFWHhqldpKsAHJ_MoveNext, (HardwareJoystickMap_izmwytdAUQSgIhGFWHhqldpKsAHJ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F963E0, Guid, HardwareJoystickMap_izmwytdAUQSgIhGFWHhqldpKsAHJ_System_Collections_Generic_IEnumerator_System_Guid__get_Current, (HardwareJoystickMap_izmwytdAUQSgIhGFWHhqldpKsAHJ * __this, MethodInfo * method)); DO_APP_FUNC(0x01FC3920, void, HardwareJoystickMap_izmwytdAUQSgIhGFWHhqldpKsAHJ_System_Collections_IEnumerator_Reset, (HardwareJoystickMap_izmwytdAUQSgIhGFWHhqldpKsAHJ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6258, HardwareJoystickMap_izmwytdAUQSgIhGFWHhqldpKsAHJ_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x01FC3970, Object *, HardwareJoystickMap_izmwytdAUQSgIhGFWHhqldpKsAHJ_System_Collections_IEnumerator_get_Current, (HardwareJoystickMap_izmwytdAUQSgIhGFWHhqldpKsAHJ * __this, MethodInfo * method)); DO_APP_FUNC(0x01FC39C0, IEnumerator_1_System_Guid_ *, HardwareJoystickMap_izmwytdAUQSgIhGFWHhqldpKsAHJ_System_Collections_Generic_IEnumerable_System_Guid__GetEnumerator, (HardwareJoystickMap_izmwytdAUQSgIhGFWHhqldpKsAHJ * __this, MethodInfo * method)); DO_APP_FUNC(0x01FC39C0, IEnumerator *, HardwareJoystickMap_izmwytdAUQSgIhGFWHhqldpKsAHJ_System_Collections_IEnumerable_GetEnumerator, (HardwareJoystickMap_izmwytdAUQSgIhGFWHhqldpKsAHJ * __this, MethodInfo * method)); @@ -48143,14 +56547,15 @@ DO_APP_FUNC(0x01FC3CA0, bool, HardwareJoystickTemplateMap_ContainsElementIdentif DO_APP_FUNC(0x01FC3D00, String__Array *, HardwareJoystickTemplateMap_GetElementIdentifierNames, (HardwareJoystickTemplateMap * __this, MethodInfo * method)); DO_APP_FUNC(0x01FC3E80, Int32__Array *, HardwareJoystickTemplateMap_GetElementIdentifierIds, (HardwareJoystickTemplateMap * __this, MethodInfo * method)); DO_APP_FUNC(0x01FC3F40, String__Array *, HardwareJoystickTemplateMap_GetElementIdentifierScriptingNames, (HardwareJoystickTemplateMap * __this, bool useAlternate, MethodInfo * method)); -DO_APP_FUNC(0x01FC4090, int32_t, HardwareJoystickTemplateMap_GetMappableElementIdentifierInfo, (HardwareJoystickTemplateMap * __this, String__Array * names, Int32__Array * ids, MethodInfo * method)); -DO_APP_FUNC(0x01FC4500, int32_t, HardwareJoystickTemplateMap_GetNonMappableElementIdentifierInfo, (HardwareJoystickTemplateMap * __this, String__Array * names, Int32__Array * ids, MethodInfo * method)); +DO_APP_FUNC(0x01FC4090, int32_t, HardwareJoystickTemplateMap_GetMappableElementIdentifierInfo, (HardwareJoystickTemplateMap * __this, String__Array * * names, Int32__Array * * ids, MethodInfo * method)); +DO_APP_FUNC(0x01FC4500, int32_t, HardwareJoystickTemplateMap_GetNonMappableElementIdentifierInfo, (HardwareJoystickTemplateMap * __this, String__Array * * names, Int32__Array * * ids, MethodInfo * method)); DO_APP_FUNC(0x01FC4970, String__Array *, HardwareJoystickTemplateMap_GetJoystickNames, (HardwareJoystickTemplateMap * __this, MethodInfo * method)); DO_APP_FUNC(0x01FC4B30, Int32__Array *, HardwareJoystickTemplateMap_GetJoystickIds, (HardwareJoystickTemplateMap * __this, MethodInfo * method)); DO_APP_FUNC(0x01FC4C30, Guid, HardwareJoystickTemplateMap_GetJoystickGuid, (HardwareJoystickTemplateMap * __this, int32_t joystickId, MethodInfo * method)); DO_APP_FUNC(0x01FC4D70, int32_t, HardwareJoystickTemplateMap_GetJoystickId, (HardwareJoystickTemplateMap * __this, Guid guid, MethodInfo * method)); DO_APP_FUNC(0x01FC4F10, String *, HardwareJoystickTemplateMap_GetJoystickFileGuidString, (HardwareJoystickTemplateMap * __this, int32_t joystickId, MethodInfo * method)); -DO_APP_FUNC(0x01FC5000, bool, HardwareJoystickTemplateMap_rNOBTeSDXORptwRcORjRxXGsfiKh, (HardwareJoystickTemplateMap * __this, ControllerMap_Editor * param_0000bbc1, HardwareJoystickMap * param_0000bbc2, Guid param_0000bbc3, String * param_0000bbc4, MethodInfo * method)); +DO_APP_FUNC(0x01FC5000, bool, HardwareJoystickTemplateMap_rNOBTeSDXORptwRcORjRxXGsfiKh, (HardwareJoystickTemplateMap * __this, ControllerMap_Editor * param_0000bbc1, HardwareJoystickMap * param_0000bbc2, Guid param_0000bbc3, String * * param_0000bbc4, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6148, HardwareJoystickTemplateMap_rNOBTeSDXORptwRcORjRxXGsfiKh__MethodInfo); DO_APP_FUNC(0x01FC5A70, ControllerTemplateElementIdentifier *, HardwareJoystickTemplateMap_rKyPExDJwgeynhcbmwiCrjPfFUFQA, (HardwareJoystickTemplateMap * __this, Guid param_0000bbc5, int32_t param_0000bbc6, MethodInfo * method)); DO_APP_FUNC(0x003CD530, HardwareJoystickTemplateMap_SpecialElementEntry__Array *, HardwareJoystickTemplateMap_GetSpecialElementsOrig, (HardwareJoystickTemplateMap * __this, MethodInfo * method)); DO_APP_FUNC(0x01FC5D50, HardwareJoystickTemplateMap_Entry *, HardwareJoystickTemplateMap_zMZhQpvljSyeqhEYHwethRDmnvCu, (HardwareJoystickTemplateMap * __this, Guid param_0000bbc7, MethodInfo * method)); @@ -48179,6 +56584,7 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickTemplateMap_aQrzPsXwfOyYFkNADnHUKi DO_APP_FUNC(0x01FC6B70, bool, HardwareJoystickTemplateMap_aQrzPsXwfOyYFkNADnHUKiyPGcrh_MoveNext, (HardwareJoystickTemplateMap_aQrzPsXwfOyYFkNADnHUKiyPGcrh * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, IControllerElementIdentifierCommon_Internal *, HardwareJoystickTemplateMap_aQrzPsXwfOyYFkNADnHUKiyPGcrh_System_Collections_Generic_IEnumerator_Rewired_Interfaces_IControllerElementIdentifierCommon_Internal__get_Current, (HardwareJoystickTemplateMap_aQrzPsXwfOyYFkNADnHUKiyPGcrh * __this, MethodInfo * method)); DO_APP_FUNC(0x01FC6C60, void, HardwareJoystickTemplateMap_aQrzPsXwfOyYFkNADnHUKiyPGcrh_System_Collections_IEnumerator_Reset, (HardwareJoystickTemplateMap_aQrzPsXwfOyYFkNADnHUKiyPGcrh * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6130, HardwareJoystickTemplateMap_aQrzPsXwfOyYFkNADnHUKiyPGcrh_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, HardwareJoystickTemplateMap_aQrzPsXwfOyYFkNADnHUKiyPGcrh_System_Collections_IEnumerator_get_Current, (HardwareJoystickTemplateMap_aQrzPsXwfOyYFkNADnHUKiyPGcrh * __this, MethodInfo * method)); DO_APP_FUNC(0x01FC6CB0, IEnumerator_1_Rewired_Interfaces_IControllerElementIdentifierCommon_Internal_ *, HardwareJoystickTemplateMap_aQrzPsXwfOyYFkNADnHUKiyPGcrh_System_Collections_Generic_IEnumerable_Rewired_Interfaces_IControllerElementIdentifierCommon_Internal__GetEnumerator, (HardwareJoystickTemplateMap_aQrzPsXwfOyYFkNADnHUKiyPGcrh * __this, MethodInfo * method)); DO_APP_FUNC(0x01FC6CB0, IEnumerator *, HardwareJoystickTemplateMap_aQrzPsXwfOyYFkNADnHUKiyPGcrh_System_Collections_IEnumerable_GetEnumerator, (HardwareJoystickTemplateMap_aQrzPsXwfOyYFkNADnHUKiyPGcrh * __this, MethodInfo * method)); @@ -48187,6 +56593,7 @@ DO_APP_FUNC(0x003AE050, void, HardwareJoystickTemplateMap_pLWCyDzzPnueFHkratRzKF DO_APP_FUNC(0x01FC6B70, bool, HardwareJoystickTemplateMap_pLWCyDzzPnueFHkratRzKFRISzcu_MoveNext, (HardwareJoystickTemplateMap_pLWCyDzzPnueFHkratRzKFRISzcu * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, ControllerTemplateElementIdentifier *, HardwareJoystickTemplateMap_pLWCyDzzPnueFHkratRzKFRISzcu_System_Collections_Generic_IEnumerator_Rewired_ControllerTemplateElementIdentifier__get_Current, (HardwareJoystickTemplateMap_pLWCyDzzPnueFHkratRzKFRISzcu * __this, MethodInfo * method)); DO_APP_FUNC(0x01FC6DF0, void, HardwareJoystickTemplateMap_pLWCyDzzPnueFHkratRzKFRISzcu_System_Collections_IEnumerator_Reset, (HardwareJoystickTemplateMap_pLWCyDzzPnueFHkratRzKFRISzcu * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6128, HardwareJoystickTemplateMap_pLWCyDzzPnueFHkratRzKFRISzcu_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, HardwareJoystickTemplateMap_pLWCyDzzPnueFHkratRzKFRISzcu_System_Collections_IEnumerator_get_Current, (HardwareJoystickTemplateMap_pLWCyDzzPnueFHkratRzKFRISzcu * __this, MethodInfo * method)); DO_APP_FUNC(0x01FC6E40, IEnumerator_1_Rewired_ControllerTemplateElementIdentifier_ *, HardwareJoystickTemplateMap_pLWCyDzzPnueFHkratRzKFRISzcu_System_Collections_Generic_IEnumerable_Rewired_ControllerTemplateElementIdentifier__GetEnumerator, (HardwareJoystickTemplateMap_pLWCyDzzPnueFHkratRzKFRISzcu * __this, MethodInfo * method)); DO_APP_FUNC(0x01FC6E40, IEnumerator *, HardwareJoystickTemplateMap_pLWCyDzzPnueFHkratRzKFRISzcu_System_Collections_IEnumerable_GetEnumerator, (HardwareJoystickTemplateMap_pLWCyDzzPnueFHkratRzKFRISzcu * __this, MethodInfo * method)); @@ -48237,20 +56644,27 @@ DO_APP_FUNC(0x01FC7DC0, MouseMap *, ControllerMap_Editor_AUkpETDUROaNRXrbBrbbKTQ DO_APP_FUNC(0x01FC7E90, CustomControllerMap *, ControllerMap_Editor_yHrWvKqjyAQRUuvIIrYRPiHBuRlT, (ControllerMap_Editor * __this, Func_2_Int32_Boolean_ * param_0000bc04, CustomController_Editor * param_0000bc05, MethodInfo * method)); DO_APP_FUNC(0x01FC7F40, ControllerTemplateMap *, ControllerMap_Editor_TQSDRZnEEyjxLCMBjyboNRWAeBlA, (ControllerMap_Editor * __this, MethodInfo * method)); DO_APP_FUNC(0x01FC81E0, void, ControllerMap_Editor_YgGqcbfedlUcDIkItYsQFbTZZjcw, (ControllerMap_Editor * __this, Func_2_Int32_Boolean_ * param_0000bc06, ControllerMap * param_0000bc07, HardwareControllerMapIdentifier param_0000bc08, HardwareJoystickMap * param_0000bc09, bool param_0000bc0a, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6108, ControllerMap_Editor_YgGqcbfedlUcDIkItYsQFbTZZjcw__MethodInfo); DO_APP_FUNC(0x01FC8740, void, ControllerMap_Editor_DWprjEWDtDJHObCyoiJGDrHlPWNq, (ControllerMap_Editor * __this, Func_2_Int32_Boolean_ * param_0000bc0b, InputSource__Enum param_0000bc0c, CustomControllerMap * param_0000bc0d, CustomController_Editor * param_0000bc0e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB60B0, ControllerMap_Editor_DWprjEWDtDJHObCyoiJGDrHlPWNq__MethodInfo); DO_APP_FUNC(0x01FC8AD0, void, ControllerMap_Editor_CreateElementsFromHardwareMap, (ControllerMap_Editor * __this, IHardwareControllerMap * hardwareJoystickMap, MethodInfo * method)); DO_APP_FUNC(0x01FC8FE0, void, ControllerMap_Editor_CreateElementsFromHardwareMap_1, (ControllerMap_Editor * __this, CustomController_Editor * customController, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB60E8, ControllerMap_Editor_CreateElementsFromHardwareMap_1__MethodInfo); DO_APP_FUNC(0x01FC9550, void, ControllerMap_Editor_AddActionElementMap, (ControllerMap_Editor * __this, MethodInfo * method)); DO_APP_FUNC(0x01FC95F0, void, ControllerMap_Editor_InsertActionElementMap, (ControllerMap_Editor * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB60D8, ControllerMap_Editor_InsertActionElementMap__MethodInfo); DO_APP_FUNC(0x01FC96E0, void, ControllerMap_Editor_DeleteActionElementMap, (ControllerMap_Editor * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB60C8, ControllerMap_Editor_DeleteActionElementMap__MethodInfo); DO_APP_FUNC(0x01FC97B0, bool, ControllerMap_Editor_ReorderActionElementMap, (ControllerMap_Editor * __this, int32_t index, bool offsetDown, bool offsetNow, MethodInfo * method)); DO_APP_FUNC(0x01FC9830, void, ControllerMap_Editor_DuplicateActionElementMap, (ControllerMap_Editor * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6078, ControllerMap_Editor_DuplicateActionElementMap__MethodInfo); DO_APP_FUNC(0x01FC99D0, ActionElementMap *, ControllerMap_Editor_rWdoYDnpcHARnGkazaMVTEDDopRp, (ControllerMap_Editor * __this, MethodInfo * method)); DO_APP_FUNC(0x00FDB5B0, void, ControllerMap_Editor_OxkBXeDsJQTQfEDarNsWfyHvyzUx__ctor, (ControllerMap_Editor_OxkBXeDsJQTQfEDarNsWfyHvyzUx * __this, int32_t param_0000bc17, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ControllerMap_Editor_OxkBXeDsJQTQfEDarNsWfyHvyzUx_System_IDisposable_Dispose, (ControllerMap_Editor_OxkBXeDsJQTQfEDarNsWfyHvyzUx * __this, MethodInfo * method)); DO_APP_FUNC(0x01FC9A30, bool, ControllerMap_Editor_OxkBXeDsJQTQfEDarNsWfyHvyzUx_MoveNext, (ControllerMap_Editor_OxkBXeDsJQTQfEDarNsWfyHvyzUx * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, ActionElementMap *, ControllerMap_Editor_OxkBXeDsJQTQfEDarNsWfyHvyzUx_System_Collections_Generic_IEnumerator_Rewired_ActionElementMap__get_Current, (ControllerMap_Editor_OxkBXeDsJQTQfEDarNsWfyHvyzUx * __this, MethodInfo * method)); DO_APP_FUNC(0x01FC9B60, void, ControllerMap_Editor_OxkBXeDsJQTQfEDarNsWfyHvyzUx_System_Collections_IEnumerator_Reset, (ControllerMap_Editor_OxkBXeDsJQTQfEDarNsWfyHvyzUx * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6070, ControllerMap_Editor_OxkBXeDsJQTQfEDarNsWfyHvyzUx_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, ControllerMap_Editor_OxkBXeDsJQTQfEDarNsWfyHvyzUx_System_Collections_IEnumerator_get_Current, (ControllerMap_Editor_OxkBXeDsJQTQfEDarNsWfyHvyzUx * __this, MethodInfo * method)); DO_APP_FUNC(0x01FC9BB0, IEnumerator_1_Rewired_ActionElementMap_ *, ControllerMap_Editor_OxkBXeDsJQTQfEDarNsWfyHvyzUx_System_Collections_Generic_IEnumerable_Rewired_ActionElementMap__GetEnumerator, (ControllerMap_Editor_OxkBXeDsJQTQfEDarNsWfyHvyzUx * __this, MethodInfo * method)); DO_APP_FUNC(0x01FC9BB0, IEnumerator *, ControllerMap_Editor_OxkBXeDsJQTQfEDarNsWfyHvyzUx_System_Collections_IEnumerable_GetEnumerator, (ControllerMap_Editor_OxkBXeDsJQTQfEDarNsWfyHvyzUx * __this, MethodInfo * method)); @@ -48262,13 +56676,16 @@ DO_APP_FUNC(0x01FCA1D0, void, DualSenseExtension_SetVibration, (DualSenseExtensi DO_APP_FUNC(0x01FCA1F0, void, DualSenseExtension_SetVibration_1, (DualSenseExtension * __this, int32_t motorIndex, float motorLevel, float duration, MethodInfo * method)); DO_APP_FUNC(0x01FCA210, void, DualSenseExtension_SetVibration_2, (DualSenseExtension * __this, int32_t motorIndex, float motorLevel, bool stopOtherMotors, MethodInfo * method)); DO_APP_FUNC(0x01FCA230, void, DualSenseExtension_SetVibration_3, (DualSenseExtension * __this, int32_t motorIndex, float motorLevel, float duration, bool stopOtherMotors, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6090, DualSenseExtension_SetVibration_3__MethodInfo); DO_APP_FUNC(0x01FCA390, float, DualSenseExtension_GetVibration, (DualSenseExtension * __this, int32_t motorIndex, MethodInfo * method)); DO_APP_FUNC(0x01FCA4D0, void, DualSenseExtension_StopVibration, (DualSenseExtension * __this, MethodInfo * method)); DO_APP_FUNC(0x01FCA620, float, DualSenseExtension_GetVibration_1, (DualSenseExtension * __this, DualShock4MotorType__Enum motor, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6080, DualSenseExtension_GetVibration_1__MethodInfo); DO_APP_FUNC(0x01FCA7A0, void, DualSenseExtension_SetVibration_4, (DualSenseExtension * __this, DualShock4MotorType__Enum motor, float motorLevel, MethodInfo * method)); DO_APP_FUNC(0x01FCA7C0, void, DualSenseExtension_SetVibration_5, (DualSenseExtension * __this, DualShock4MotorType__Enum motor, float motorLevel, float duration, MethodInfo * method)); DO_APP_FUNC(0x01FCA7E0, void, DualSenseExtension_SetVibration_6, (DualSenseExtension * __this, DualShock4MotorType__Enum motor, float motorLevel, bool stopOtherMotors, MethodInfo * method)); DO_APP_FUNC(0x01FCA800, void, DualSenseExtension_SetVibration_7, (DualSenseExtension * __this, DualShock4MotorType__Enum motor, float motorLevel, float duration, bool stopOtherMotors, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6058, DualSenseExtension_SetVibration_7__MethodInfo); DO_APP_FUNC(0x01FCAA60, void, DualSenseExtension_SetVibration_8, (DualSenseExtension * __this, float leftMotorLevel, float rightMotorLevel, MethodInfo * method)); DO_APP_FUNC(0x01FCAA80, void, DualSenseExtension_SetVibration_9, (DualSenseExtension * __this, float leftMotorLevel, float rightMotorLevel, float leftMotorDuration, float rightMotorDuration, MethodInfo * method)); DO_APP_FUNC(0x01FCACB0, float, DualSenseExtension_get_lightColorRed, (DualSenseExtension * __this, MethodInfo * method)); @@ -48298,10 +56715,10 @@ DO_APP_FUNC(0x01FCC620, void, DualSenseExtension_ResetOrientation, (DualSenseExt DO_APP_FUNC(0x01FCC6F0, int32_t, DualSenseExtension_get_maxTouches, (DualSenseExtension * __this, MethodInfo * method)); DO_APP_FUNC(0x01FCC7C0, int32_t, DualSenseExtension_get_touchCount, (DualSenseExtension * __this, MethodInfo * method)); DO_APP_FUNC(0x01FCC880, int32_t, DualSenseExtension_GetTouchId, (DualSenseExtension * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01FCC9A0, bool, DualSenseExtension_GetTouchPosition, (DualSenseExtension * __this, int32_t index, Vector2 position, MethodInfo * method)); -DO_APP_FUNC(0x01FCCB30, bool, DualSenseExtension_GetTouchPositionByTouchId, (DualSenseExtension * __this, int32_t touchId, Vector2 position, MethodInfo * method)); -DO_APP_FUNC(0x01FCCCC0, bool, DualSenseExtension_GetTouchPositionAbsolute, (DualSenseExtension * __this, int32_t index, Vector2 position, MethodInfo * method)); -DO_APP_FUNC(0x01FCCEF0, bool, DualSenseExtension_GetTouchPositionAbsoluteByTouchId, (DualSenseExtension * __this, int32_t touchId, Vector2 position, MethodInfo * method)); +DO_APP_FUNC(0x01FCC9A0, bool, DualSenseExtension_GetTouchPosition, (DualSenseExtension * __this, int32_t index, Vector2 * position, MethodInfo * method)); +DO_APP_FUNC(0x01FCCB30, bool, DualSenseExtension_GetTouchPositionByTouchId, (DualSenseExtension * __this, int32_t touchId, Vector2 * position, MethodInfo * method)); +DO_APP_FUNC(0x01FCCCC0, bool, DualSenseExtension_GetTouchPositionAbsolute, (DualSenseExtension * __this, int32_t index, Vector2 * position, MethodInfo * method)); +DO_APP_FUNC(0x01FCCEF0, bool, DualSenseExtension_GetTouchPositionAbsoluteByTouchId, (DualSenseExtension * __this, int32_t touchId, Vector2 * position, MethodInfo * method)); DO_APP_FUNC(0x01FCD120, bool, DualSenseExtension_IsTouching, (DualSenseExtension * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01FCD240, bool, DualSenseExtension_IsTouchingByTouchId, (DualSenseExtension * __this, int32_t touchId, MethodInfo * method)); DO_APP_FUNC(0x01FCD360, float, DualSenseExtension_get_batteryLevel, (DualSenseExtension * __this, MethodInfo * method)); @@ -48313,6 +56730,7 @@ DO_APP_FUNC(0x01FCD920, void, DualSenseExtension_ydNyzOsUyivCGUkmrXgJPfOlXCff, ( DO_APP_FUNC(0x01FCDA10, Controller_Extension *, DualSenseExtension_ZVfpcIxdYEVJzInzMIFrDENQKTOC, (DualSenseExtension * __this, MethodInfo * method)); DO_APP_FUNC(0x01FCDA80, void, DualSenseExtension_dbPFOaostUFBJKZfqByPGWcSnAyJA, (DualSenseExtension * __this, MethodInfo * method)); DO_APP_FUNC(0x01FCDBA0, void, DualSenseExtension_CGlacFKtMHdRpDAXaffSZxVfvGbnb, (DualSenseExtension * __this, DualShock4MotorType__Enum param_0000bc55, float param_0000bc56, float param_0000bc57, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6038, DualSenseExtension_CGlacFKtMHdRpDAXaffSZxVfvGbnb__MethodInfo); DO_APP_FUNC(0x01FCDC90, void, DualSenseExtension_BRjdhpjVCerjOrTvXMOvpWCjujhMA__ctor, (DualSenseExtension_BRjdhpjVCerjOrTvXMOvpWCjujhMA * __this, IDriver_DualSense * param_0000bc58, bool param_0000bc59, int32_t param_0000bc5a, MethodInfo * method)); DO_APP_FUNC(0x01FCDD00, Joystick *, DualShock4Extension_fddMxPtBrNdNCGnosKzsDEMUyZxz, (DualShock4Extension * __this, MethodInfo * method)); DO_APP_FUNC(0x01FCDD40, void, DualShock4Extension__ctor, (DualShock4Extension * __this, IDriver_DualShock4 * param_0000bc70, MethodInfo * method)); @@ -48322,13 +56740,16 @@ DO_APP_FUNC(0x01FCE1E0, void, DualShock4Extension_SetVibration, (DualShock4Exten DO_APP_FUNC(0x01FCE200, void, DualShock4Extension_SetVibration_1, (DualShock4Extension * __this, int32_t motorIndex, float motorLevel, float duration, MethodInfo * method)); DO_APP_FUNC(0x01FCE220, void, DualShock4Extension_SetVibration_2, (DualShock4Extension * __this, int32_t motorIndex, float motorLevel, bool stopOtherMotors, MethodInfo * method)); DO_APP_FUNC(0x01FCE240, void, DualShock4Extension_SetVibration_3, (DualShock4Extension * __this, int32_t motorIndex, float motorLevel, float duration, bool stopOtherMotors, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6048, DualShock4Extension_SetVibration_3__MethodInfo); DO_APP_FUNC(0x01FCE3A0, float, DualShock4Extension_GetVibration, (DualShock4Extension * __this, int32_t motorIndex, MethodInfo * method)); DO_APP_FUNC(0x01FCE4E0, void, DualShock4Extension_StopVibration, (DualShock4Extension * __this, MethodInfo * method)); DO_APP_FUNC(0x01FCE630, float, DualShock4Extension_GetVibration_1, (DualShock4Extension * __this, DualShock4MotorType__Enum motor, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6030, DualShock4Extension_GetVibration_1__MethodInfo); DO_APP_FUNC(0x01FCE7B0, void, DualShock4Extension_SetVibration_4, (DualShock4Extension * __this, DualShock4MotorType__Enum motor, float motorLevel, MethodInfo * method)); DO_APP_FUNC(0x01FCE7D0, void, DualShock4Extension_SetVibration_5, (DualShock4Extension * __this, DualShock4MotorType__Enum motor, float motorLevel, float duration, MethodInfo * method)); DO_APP_FUNC(0x01FCE7F0, void, DualShock4Extension_SetVibration_6, (DualShock4Extension * __this, DualShock4MotorType__Enum motor, float motorLevel, bool stopOtherMotors, MethodInfo * method)); DO_APP_FUNC(0x01FCE810, void, DualShock4Extension_SetVibration_7, (DualShock4Extension * __this, DualShock4MotorType__Enum motor, float motorLevel, float duration, bool stopOtherMotors, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6028, DualShock4Extension_SetVibration_7__MethodInfo); DO_APP_FUNC(0x01FCEA70, void, DualShock4Extension_SetVibration_8, (DualShock4Extension * __this, float leftMotorLevel, float rightMotorLevel, MethodInfo * method)); DO_APP_FUNC(0x01FCEA90, void, DualShock4Extension_SetVibration_9, (DualShock4Extension * __this, float leftMotorLevel, float rightMotorLevel, float leftMotorDuration, float rightMotorDuration, MethodInfo * method)); DO_APP_FUNC(0x01FCECC0, float, DualShock4Extension_get_lightColorRed, (DualShock4Extension * __this, MethodInfo * method)); @@ -48354,10 +56775,10 @@ DO_APP_FUNC(0x01FD02D0, void, DualShock4Extension_ResetOrientation, (DualShock4E DO_APP_FUNC(0x01FD03A0, int32_t, DualShock4Extension_get_maxTouches, (DualShock4Extension * __this, MethodInfo * method)); DO_APP_FUNC(0x01FD0470, int32_t, DualShock4Extension_get_touchCount, (DualShock4Extension * __this, MethodInfo * method)); DO_APP_FUNC(0x01FD0530, int32_t, DualShock4Extension_GetTouchId, (DualShock4Extension * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01FD0650, bool, DualShock4Extension_GetTouchPosition, (DualShock4Extension * __this, int32_t index, Vector2 position, MethodInfo * method)); -DO_APP_FUNC(0x01FD07E0, bool, DualShock4Extension_GetTouchPositionByTouchId, (DualShock4Extension * __this, int32_t touchId, Vector2 position, MethodInfo * method)); -DO_APP_FUNC(0x01FD0970, bool, DualShock4Extension_GetTouchPositionAbsolute, (DualShock4Extension * __this, int32_t index, Vector2 position, MethodInfo * method)); -DO_APP_FUNC(0x01FD0BA0, bool, DualShock4Extension_GetTouchPositionAbsoluteByTouchId, (DualShock4Extension * __this, int32_t touchId, Vector2 position, MethodInfo * method)); +DO_APP_FUNC(0x01FD0650, bool, DualShock4Extension_GetTouchPosition, (DualShock4Extension * __this, int32_t index, Vector2 * position, MethodInfo * method)); +DO_APP_FUNC(0x01FD07E0, bool, DualShock4Extension_GetTouchPositionByTouchId, (DualShock4Extension * __this, int32_t touchId, Vector2 * position, MethodInfo * method)); +DO_APP_FUNC(0x01FD0970, bool, DualShock4Extension_GetTouchPositionAbsolute, (DualShock4Extension * __this, int32_t index, Vector2 * position, MethodInfo * method)); +DO_APP_FUNC(0x01FD0BA0, bool, DualShock4Extension_GetTouchPositionAbsoluteByTouchId, (DualShock4Extension * __this, int32_t touchId, Vector2 * position, MethodInfo * method)); DO_APP_FUNC(0x01FD0DD0, bool, DualShock4Extension_IsTouching, (DualShock4Extension * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01FD0EF0, bool, DualShock4Extension_IsTouchingByTouchId, (DualShock4Extension * __this, int32_t touchId, MethodInfo * method)); DO_APP_FUNC(0x01FD1010, float, DualShock4Extension_get_batteryLevel, (DualShock4Extension * __this, MethodInfo * method)); @@ -48368,6 +56789,7 @@ DO_APP_FUNC(0x01FD1500, void, DualShock4Extension_ydNyzOsUyivCGUkmrXgJPfOlXCff, DO_APP_FUNC(0x01FD15F0, Controller_Extension *, DualShock4Extension_ZVfpcIxdYEVJzInzMIFrDENQKTOC, (DualShock4Extension * __this, MethodInfo * method)); DO_APP_FUNC(0x01FD1660, void, DualShock4Extension_dbPFOaostUFBJKZfqByPGWcSnAyJA, (DualShock4Extension * __this, MethodInfo * method)); DO_APP_FUNC(0x01FD1780, void, DualShock4Extension_CGlacFKtMHdRpDAXaffSZxVfvGbnb, (DualShock4Extension * __this, DualShock4MotorType__Enum param_0000bcac, float param_0000bcad, float param_0000bcae, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5EB8, DualShock4Extension_CGlacFKtMHdRpDAXaffSZxVfvGbnb__MethodInfo); DO_APP_FUNC(0x01FCDC90, void, DualShock4Extension_FgDrcAndNxyvefubozrJiNFsjXQg__ctor, (DualShock4Extension_FgDrcAndNxyvefubozrJiNFsjXQg * __this, IDriver_DualShock4 * param_0000bcaf, bool param_0000bcb0, int32_t param_0000bcb1, MethodInfo * method)); DO_APP_FUNC(0x01FD1870, Joystick *, RailDriverExtension_fddMxPtBrNdNCGnosKzsDEMUyZxz, (RailDriverExtension * __this, MethodInfo * method)); DO_APP_FUNC(0x01FD18B0, void, RailDriverExtension__ctor, (RailDriverExtension * __this, IDriver_RailDriver * param_0000bcb2, MethodInfo * method)); @@ -48442,8 +56864,11 @@ DO_APP_FUNC(0x003C7320, Object *, PlayerController_1_GetCreateSourceArgs, (Playe DO_APP_FUNC(0x01FD5060, PlayerController *, PlayerController_1_CreateSource, (PlayerController_1 * __this, Object * args, MethodInfo * method)); DO_APP_FUNC(0x01FD5480, List_1_Rewired_Components_PlayerController_ElementInfo_ *, PlayerController_1_lStCduTbxxctDMIoyRyEUyEACtiI, (PlayerController_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x01FD5DF0, void, PlayerController_1_xYsnruModktOccesCbwgbuGIPnePA, (PlayerController_1 * __this, int32_t param_0000bcea, bool param_0000bceb, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8010, PlayerController_1_xYsnruModktOccesCbwgbuGIPnePA__MethodInfo); DO_APP_FUNC(0x01FD5F00, void, PlayerController_1_WFAiROsqULgsiDCBEOIDSgGVpWADb, (PlayerController_1 * __this, int32_t param_0000bcec, float param_0000bced, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7FE8, PlayerController_1_WFAiROsqULgsiDCBEOIDSgGVpWADb__MethodInfo); DO_APP_FUNC(0x01FD6010, void, PlayerController_1_fvSQSdSYZfepLpqvMddrCsmTJrHl, (PlayerController_1 * __this, bool param_0000bcee, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8020, PlayerController_1_fvSQSdSYZfepLpqvMddrCsmTJrHl__MethodInfo); DO_APP_FUNC(0x01FD60D0, void, PlayerController_1_XtsFKFFEeyKUmsradHIOWNtGlyPKA, (PlayerController_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x01FD6180, void, PlayerController_1__ctor, (PlayerController_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x00A92B10, bool, PlayerController_1_Rewired_IPlayerController_get_enabled, (PlayerController_1 * __this, MethodInfo * method)); @@ -48476,6 +56901,7 @@ DO_APP_FUNC(0x006B5780, void, PlayerController_ElementInfo_set_enabled, (PlayerC DO_APP_FUNC(0x003BB3E0, PlayerController_ElementWithSourceInfo__Array *, PlayerController_ElementInfo_get_elements, (PlayerController_ElementInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCDE0, void, PlayerController_ElementInfo_set_elements, (PlayerController_ElementInfo * __this, PlayerController_ElementWithSourceInfo__Array * value, MethodInfo * method)); DO_APP_FUNC(0x01FD67D0, PlayerController_Element_Definition *, PlayerController_ElementInfo_ToDefinition, (PlayerController_ElementInfo * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7C70, PlayerController_ElementInfo_ToDefinition__MethodInfo); DO_APP_FUNC(0x01FD6F70, void, PlayerController_ElementInfo__ctor, (PlayerController_ElementInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01FD7000, PlayerMouse_1 *, PlayerMouse_sQARNbuHNGgIeGFLlNtQDsIENlgXA, (PlayerMouse * __this, MethodInfo * method)); DO_APP_FUNC(0x01FD7060, bool, PlayerMouse_get_defaultToCenter, (PlayerMouse * __this, MethodInfo * method)); @@ -48510,6 +56936,7 @@ DO_APP_FUNC(0x01FD9530, void, PlayerMouse_Subscribe, (PlayerMouse * __this, Meth DO_APP_FUNC(0x01FD9670, void, PlayerMouse_Unsubscribe, (PlayerMouse * __this, MethodInfo * method)); DO_APP_FUNC(0x01FD97B0, List_1_Rewired_Components_PlayerController_ElementInfo_ *, PlayerMouse_lStCduTbxxctDMIoyRyEUyEACtiI, (PlayerMouse * __this, MethodInfo * method)); DO_APP_FUNC(0x01FDA280, void, PlayerMouse_qyMMmFNcftbByafAoHJoMymZgSsqA, (PlayerMouse * __this, Vector2 param_0000bd05, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB79A8, PlayerMouse_qyMMmFNcftbByafAoHJoMymZgSsqA__MethodInfo); DO_APP_FUNC(0x01FDA380, bool, PlayerMouse_Rewired_UI_IMouseInputSource_get_enabled, (PlayerMouse * __this, MethodInfo * method)); DO_APP_FUNC(0x01FDA440, bool, PlayerMouse_Rewired_UI_IMouseInputSource_GetButtonDown, (PlayerMouse * __this, int32_t button, MethodInfo * method)); DO_APP_FUNC(0x01FDA510, bool, PlayerMouse_Rewired_UI_IMouseInputSource_GetButtonUp, (PlayerMouse * __this, int32_t button, MethodInfo * method)); @@ -48549,6 +56976,7 @@ DO_APP_FUNC(0x003BB3D0, IComponentController *, ComponentControl_IPFJpJMLwxUWaid DO_APP_FUNC(0x01FDB0F0, IEnumerator *, ComponentControl_BFEFVdxvekTnyrTmPTnGBDaYbezd, (ComponentControl * __this, MethodInfo * method)); DO_APP_FUNC(0x01FDB190, void, ComponentControl_YGOPOhZraSmTKLxttlgehWSSpLyI, (ComponentControl * __this, MethodInfo * method)); DO_APP_FUNC(0x01FDB1F0, bool, ComponentControl_XUhyZyCjiJwHBvbITzYSERlsrdhE, (ComponentControl * __this, bool param_0000bd0a, bool param_0000bd0b, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB78F0, ComponentControl_XUhyZyCjiJwHBvbITzYSERlsrdhE__MethodInfo); DO_APP_FUNC(0x01FDB3E0, void, ComponentControl_OQKGYjLUWARTaYBcaxBgXuzHpZyr, (ComponentControl * __this, MethodInfo * method)); DO_APP_FUNC(0x01FDB3F0, void, ComponentControl_QQEFUogcJIzNAOjIDQtcIxyuQPnMA, (ComponentControl * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, ComponentControl_desDGhBBuHwkXsDZmTHhcFOREOsoA__ctor, (ComponentControl_desDGhBBuHwkXsDZmTHhcFOREOsoA * __this, int32_t param_0000bd0c, MethodInfo * method)); @@ -48556,6 +56984,7 @@ DO_APP_FUNC(0x003AE050, void, ComponentControl_desDGhBBuHwkXsDZmTHhcFOREOsoA_Sys DO_APP_FUNC(0x01FDB470, bool, ComponentControl_desDGhBBuHwkXsDZmTHhcFOREOsoA_MoveNext, (ComponentControl_desDGhBBuHwkXsDZmTHhcFOREOsoA * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, ComponentControl_desDGhBBuHwkXsDZmTHhcFOREOsoA_System_Collections_Generic_IEnumerator_System_Object__get_Current, (ComponentControl_desDGhBBuHwkXsDZmTHhcFOREOsoA * __this, MethodInfo * method)); DO_APP_FUNC(0x01FDB570, void, ComponentControl_desDGhBBuHwkXsDZmTHhcFOREOsoA_System_Collections_IEnumerator_Reset, (ComponentControl_desDGhBBuHwkXsDZmTHhcFOREOsoA * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7900, ComponentControl_desDGhBBuHwkXsDZmTHhcFOREOsoA_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, ComponentControl_desDGhBBuHwkXsDZmTHhcFOREOsoA_System_Collections_IEnumerator_get_Current, (ComponentControl_desDGhBBuHwkXsDZmTHhcFOREOsoA * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCC40, bool, ComponentController_CpkCDShvGTOWggDBKRwqHTfATFvtB, (ComponentController * __this, MethodInfo * method)); DO_APP_FUNC(0x01FDB5C0, void, ComponentController__ctor, (ComponentController * __this, MethodInfo * method)); @@ -48579,6 +57008,7 @@ DO_APP_FUNC(0x003AE050, void, ComponentController_fjQlPGdYSEtBzRcckqNYdqzZwEPT_S DO_APP_FUNC(0x01FDBCB0, bool, ComponentController_fjQlPGdYSEtBzRcckqNYdqzZwEPT_MoveNext, (ComponentController_fjQlPGdYSEtBzRcckqNYdqzZwEPT * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, ComponentController_fjQlPGdYSEtBzRcckqNYdqzZwEPT_System_Collections_Generic_IEnumerator_System_Object__get_Current, (ComponentController_fjQlPGdYSEtBzRcckqNYdqzZwEPT * __this, MethodInfo * method)); DO_APP_FUNC(0x01FDBD80, void, ComponentController_fjQlPGdYSEtBzRcckqNYdqzZwEPT_System_Collections_IEnumerator_Reset, (ComponentController_fjQlPGdYSEtBzRcckqNYdqzZwEPT * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB77D0, ComponentController_fjQlPGdYSEtBzRcckqNYdqzZwEPT_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, ComponentController_fjQlPGdYSEtBzRcckqNYdqzZwEPT_System_Collections_IEnumerator_get_Current, (ComponentController_fjQlPGdYSEtBzRcckqNYdqzZwEPT * __this, MethodInfo * method)); DO_APP_FUNC(0x01FDBDD0, void, CustomController_1_add_InputSourceUpdateEvent, (CustomController_1 * __this, Action * value, MethodInfo * method)); DO_APP_FUNC(0x01FDBEC0, void, CustomController_1_remove_InputSourceUpdateEvent, (CustomController_1 * __this, Action * value, MethodInfo * method)); @@ -48603,7 +57033,9 @@ DO_APP_FUNC(0x01FDCE50, void, CustomController_1_SetButtonValue, (CustomControll DO_APP_FUNC(0x01FDD080, void, CustomController_1_ClearElementValue, (CustomController_1 * __this, CustomControllerElementTargetSet * targetSet, MethodInfo * method)); DO_APP_FUNC(0x01FDD110, void, CustomController_1_ClearElementValue_1, (CustomController_1 * __this, CustomControllerElementTarget * target, MethodInfo * method)); DO_APP_FUNC(0x01FDD130, void, CustomController_1_ClearElementValue_2, (CustomController_1 * __this, CustomControllerElementSelector * element, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7790, CustomController_1_ClearElementValue_2__MethodInfo); DO_APP_FUNC(0x01FDD310, int32_t, CustomController_1_ElementExists_Editor, (CustomController_1 * __this, CustomControllerElementSelector * element, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7768, CustomController_1_ElementExists_Editor__MethodInfo); DO_APP_FUNC(0x01FDD650, bool, CustomController_1_ElementExists, (CustomController_1 * __this, CustomControllerElementSelector * element, MethodInfo * method)); DO_APP_FUNC(0x01FDD6A0, bool, CustomController_1_ValidateElements, (CustomController_1 * __this, CustomControllerElementTargetSet * targetSet, MethodInfo * method)); DO_APP_FUNC(0x01FDD760, bool, CustomController_1_ValidateElement, (CustomController_1 * __this, CustomControllerElementTarget * target, MethodInfo * method)); @@ -48611,10 +57043,12 @@ DO_APP_FUNC(0x01FDD780, bool, CustomController_1_ValidateElement_1, (CustomContr DO_APP_FUNC(0x01FDDB10, void, CustomController_1_nPoczuNddBNeGhTiwbxroKfVDJgW, (CustomController_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x01FDDB60, bool, CustomController_1_UOLbXYCfxJwJZMFDzXIDUkmEGyKX, (CustomController_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x01FDDC30, void, CustomController_1_EAUNCDNJHMJSrwnKQadlCaawcXKXA, (CustomController_1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB76A0, CustomController_1_EAUNCDNJHMJSrwnKQadlCaawcXKXA__MethodInfo); DO_APP_FUNC(0x01FDDE10, CustomController *, CustomController_1_apSKxRgnzdICbPHFTYyXcaXvdFYA, (CustomController_1 * __this, bool param_0000bd20, MethodInfo * method)); DO_APP_FUNC(0x01FDE0E0, void, CustomController_1_LKQEbskuMoagrNYQDxuZippaFqxj, (CustomController_1 * __this, CustomController * param_0000bd21, MethodInfo * method)); DO_APP_FUNC(0x01FDE220, void, CustomController_1_YkZFqKQRcHghMNiHRQncIzENnMDJ, (CustomController_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x01FDE400, void, CustomController_1_UoSNtJPQQkacdEYxHoLNMoqCCOFs, (CustomController_1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7748, CustomController_1_UoSNtJPQQkacdEYxHoLNMoqCCOFs__MethodInfo); DO_APP_FUNC(0x003BCD20, bool, CustomController_CreateCustomControllerSettings_get_createCustomController, (CustomController_CreateCustomControllerSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x01FDE430, void, CustomController_CreateCustomControllerSettings_set_createCustomController, (CustomController_CreateCustomControllerSettings * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x003BCD70, int32_t, CustomController_CreateCustomControllerSettings_get_customControllerSourceId, (CustomController_CreateCustomControllerSettings * __this, MethodInfo * method)); @@ -48624,11 +57058,11 @@ DO_APP_FUNC(0x003BCDD0, void, CustomController_CreateCustomControllerSettings_se DO_APP_FUNC(0x006B5770, bool, CustomController_CreateCustomControllerSettings_get_destroyCustomController, (CustomController_CreateCustomControllerSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x006B5780, void, CustomController_CreateCustomControllerSettings_set_destroyCustomController, (CustomController_CreateCustomControllerSettings * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x01FDE440, void, CustomController_CreateCustomControllerSettings__ctor, (CustomController_CreateCustomControllerSettings * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BAE2D0, void, CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__ctor, (CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__Boxed * __this, CustomControllerElementSelector_ElementType__Enum param_0000bd26, int32_t param_0000bd27, float param_0000bd28, MethodInfo * method)); -DO_APP_FUNC(0x01FDE450, void, CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__ctor_1, (CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__Boxed * __this, CustomControllerElementSelector_ElementType__Enum param_0000bd29, int32_t param_0000bd2a, bool param_0000bd2b, MethodInfo * method)); -DO_APP_FUNC(0x01FDE480, bool, CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_wbEnlygVmgnNWSFVqzAInqgYWwb, (CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__Boxed * __this, CustomControllerElementSelector_ElementType__Enum param_0000bd2c, int32_t param_0000bd2d, MethodInfo * method)); -DO_APP_FUNC(0x01FDE490, void, CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_CfpLhHEcXLKTyGKvJEzgpeSAamQf, (CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__Boxed * __this, float param_0000bd2e, MethodInfo * method)); -DO_APP_FUNC(0x01FDE4D0, void, CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_CfpLhHEcXLKTyGKvJEzgpeSAamQf_1, (CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__Boxed * __this, bool param_0000bd2f, MethodInfo * method)); +DO_APP_FUNC(0x00BAE2D0, void, CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__ctor, (CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB * __this, CustomControllerElementSelector_ElementType__Enum param_0000bd26, int32_t param_0000bd27, float param_0000bd28, MethodInfo * method)); +DO_APP_FUNC(0x01FDE450, void, CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__ctor_1, (CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB * __this, CustomControllerElementSelector_ElementType__Enum param_0000bd29, int32_t param_0000bd2a, bool param_0000bd2b, MethodInfo * method)); +DO_APP_FUNC(0x01FDE480, bool, CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_wbEnlygVmgnNWSFVqzAInqgYWwb, (CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB * __this, CustomControllerElementSelector_ElementType__Enum param_0000bd2c, int32_t param_0000bd2d, MethodInfo * method)); +DO_APP_FUNC(0x01FDE490, void, CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_CfpLhHEcXLKTyGKvJEzgpeSAamQf, (CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB * __this, float param_0000bd2e, MethodInfo * method)); +DO_APP_FUNC(0x01FDE4D0, void, CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_CfpLhHEcXLKTyGKvJEzgpeSAamQf_1, (CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB * __this, bool param_0000bd2f, MethodInfo * method)); DO_APP_FUNC(0x01FDE4E0, CustomController_1 *, CustomControllerControl_mcytUqwiapNAMyWUVslGiKUORlT, (CustomControllerControl * __this, MethodInfo * method)); DO_APP_FUNC(0x01FDABA0, void, CustomControllerControl__ctor, (CustomControllerControl * __this, MethodInfo * method)); DO_APP_FUNC(0x01FDE570, bool, CustomControllerControl_FrkVnWDoJGgRBgYAwvfzCClaKideA, (CustomControllerControl * __this, MethodInfo * method)); @@ -48639,8 +57073,11 @@ DO_APP_FUNC(0x01FDEAD0, Type *, CustomControllerControl_GetRequiredControllerTyp DO_APP_FUNC(0x01FDEB40, void, CustomControllerControl_gixGuIgXiSNaplsOuZjKdURqmRdMA, (CustomControllerControl * __this, CustomControllerElementTargetSet * param_0000bd30, float param_0000bd31, float param_0000bd32, MethodInfo * method)); DO_APP_FUNC(0x01FDEC70, void, CustomControllerControl_gixGuIgXiSNaplsOuZjKdURqmRdMA_1, (CustomControllerControl * __this, CustomControllerElementTargetSet * param_0000bd33, bool param_0000bd34, MethodInfo * method)); DO_APP_FUNC(0x01FDED80, void, CustomControllerControl_gixGuIgXiSNaplsOuZjKdURqmRdMA_2, (CustomControllerControl * __this, CustomControllerElementTarget * param_0000bd35, float param_0000bd36, float param_0000bd37, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB75B0, CustomControllerControl_gixGuIgXiSNaplsOuZjKdURqmRdMA_2__MethodInfo); DO_APP_FUNC(0x01FDEF00, void, CustomControllerControl_gixGuIgXiSNaplsOuZjKdURqmRdMA_3, (CustomControllerControl * __this, CustomControllerElementTarget * param_0000bd38, bool param_0000bd39, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB75C0, CustomControllerControl_gixGuIgXiSNaplsOuZjKdURqmRdMA_3__MethodInfo); DO_APP_FUNC(0x01FDF010, void, CustomControllerControl_UoSNtJPQQkacdEYxHoLNMoqCCOFs, (CustomControllerControl * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB76E0, CustomControllerControl_UoSNtJPQQkacdEYxHoLNMoqCCOFs__MethodInfo); DO_APP_FUNC(0x00421680, TiltControl_TiltDirection__Enum, TiltControl_get_axesToUse, (TiltControl * __this, MethodInfo * method)); DO_APP_FUNC(0x01FDF090, void, TiltControl_set_axesToUse, (TiltControl * __this, TiltControl_TiltDirection__Enum value, MethodInfo * method)); DO_APP_FUNC(0x003BB330, CustomControllerElementTargetSetForFloat *, TiltControl_get_horizontalTiltCustomControllerElement, (TiltControl * __this, MethodInfo * method)); @@ -48760,7 +57197,9 @@ DO_APP_FUNC(0x01FE3DA0, void, TouchButton_JCUNjQJCccvhaBXZPjDULQboMINo, (TouchBu DO_APP_FUNC(0x01FE4560, IEnumerator *, TouchButton_RSXiXJaRgNFeqPynlcuGjNybgsWK, (TouchButton * __this, Vector2 param_0000bd6b, PositionType__Enum param_0000bd6c, float param_0000bd6d, TouchButton_kIKQVcRqialXKADlcioxUFLesvBs__Enum param_0000bd6e, MethodInfo * method)); DO_APP_FUNC(0x01FE4650, void, TouchButton_tKISLnvXbLIFiGaneTNBffnIxnLt, (TouchButton * __this, TouchButton_kIKQVcRqialXKADlcioxUFLesvBs__Enum param_0000bd6f, Vector2 param_0000bd70, PositionType__Enum param_0000bd71, MethodInfo * method)); DO_APP_FUNC(0x01FE47C0, void, TouchButton_vZwcmPxpMgFozCgUFnXGicUOUBjhA, (TouchButton * __this, TouchButton_kIKQVcRqialXKADlcioxUFLesvBs__Enum param_0000bd72, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7538, TouchButton_vZwcmPxpMgFozCgUFnXGicUOUBjhA__MethodInfo); DO_APP_FUNC(0x01FE4990, void, TouchButton_opRnKnHwopwAVnWoHfIjQhdhOSsS, (TouchButton * __this, TouchButton_kIKQVcRqialXKADlcioxUFLesvBs__Enum param_0000bd73, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7540, TouchButton_opRnKnHwopwAVnWoHfIjQhdhOSsS__MethodInfo); DO_APP_FUNC(0x01FE4B70, void, TouchButton_wCIfESUNZcwoTUlLQysFLlZSaeifA, (TouchButton * __this, int32_t param_0000bd74, MethodInfo * method)); DO_APP_FUNC(0x01FE4C30, void, TouchButton_LJumOqAZUhLtiXnGhUsFythDZDYF, (TouchButton * __this, MethodInfo * method)); DO_APP_FUNC(0x01FE4CC0, void, TouchButton_FQpJtUcjnQRqiINXeBmmkjwsEUmPA, (TouchButton * __this, MethodInfo * method)); @@ -48771,9 +57210,11 @@ DO_APP_FUNC(0x01FE5080, PointerEventData *, TouchButton_OiJQXmCWwgfialjxRYEjrOra DO_APP_FUNC(0x01FE5690, PointerEventData *, TouchButton_JCDaiDnrHFVuFvhMEnLZvAkFKQnj, (TouchButton * __this, int32_t param_0000bd78, MethodInfo * method)); DO_APP_FUNC(0x01FE57F0, void, TouchButton_fXjhbVsnVfQVYbostVLwgrhNQMGj, (TouchButton * __this, PointerEventData * param_0000bd79, MethodInfo * method)); DO_APP_FUNC(0x01FE5990, PointerEventData *, TouchButton_lNsvKLlGIzhZXEiIITXbPMcTNqeoA, (TouchButton * __this, int32_t param_0000bd7a, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7488, TouchButton_lNsvKLlGIzhZXEiIITXbPMcTNqeoA__MethodInfo); DO_APP_FUNC(0x01FE5C60, void, TouchButton_OTVNKAxHjnRKPFmHifdIhnOKdbjlA, (TouchButton * __this, PointerEventData * param_0000bd7b, TouchButton_sbCabkQRztNVQPabdTdWYLupBNBf__Enum param_0000bd7c, MethodInfo * method)); DO_APP_FUNC(0x01FE5D60, void, TouchButton_fiJCOOEgExiMouVYKeojxlliJWWNA, (TouchButton * __this, PointerEventData * param_0000bd7d, TouchButton_sbCabkQRztNVQPabdTdWYLupBNBf__Enum param_0000bd7e, MethodInfo * method)); DO_APP_FUNC(0x01FE5E40, void, TouchButton_tQmflXIDOosPGnFhgKTfRvZuApBm, (TouchButton * __this, PointerEventData * param_0000bd7f, TouchButton_sbCabkQRztNVQPabdTdWYLupBNBf__Enum param_0000bd80, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7480, TouchButton_tQmflXIDOosPGnFhgKTfRvZuApBm__MethodInfo); DO_APP_FUNC(0x01FE6140, void, TouchButton_NQxouavlsKqkLZGuEXIRrIlYwnsA, (TouchButton * __this, PointerEventData * param_0000bd81, TouchButton_sbCabkQRztNVQPabdTdWYLupBNBf__Enum param_0000bd82, MethodInfo * method)); DO_APP_FUNC(0x01FE6250, void, TouchButton_jZfiuoeXkWcWXOYdDvvrKicNPBFo, (TouchButton * __this, int32_t param_0000bd83, Vector2 param_0000bd84, TouchButton_sbCabkQRztNVQPabdTdWYLupBNBf__Enum param_0000bd85, MethodInfo * method)); DO_APP_FUNC(0x01FE63E0, void, TouchButton_yrEHnEaFNGPbTdriTppZJfTlalOFA, (TouchButton * __this, MethodInfo * method)); @@ -48782,13 +57223,21 @@ DO_APP_FUNC(0x01FE6660, void, TouchButton_OnPointerUp, (TouchButton * __this, Po DO_APP_FUNC(0x01FE67F0, void, TouchButton_OnPointerEnter, (TouchButton * __this, PointerEventData * eventData, MethodInfo * method)); DO_APP_FUNC(0x01FE6980, void, TouchButton_OnPointerExit, (TouchButton * __this, PointerEventData * eventData, MethodInfo * method)); DO_APP_FUNC(0x01FE6B10, void, TouchButton_LkubzBbVjHGoeHQSjEfiLDtgIzFNE, (TouchButton * __this, PointerEventData * param_0000bd8a, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7518, TouchButton_LkubzBbVjHGoeHQSjEfiLDtgIzFNE__MethodInfo); DO_APP_FUNC(0x01FE6BD0, void, TouchButton_mTaFgGIhgQcSvbUjWKOcQulfeEJt, (TouchButton * __this, PointerEventData * param_0000bd8b, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB74B0, TouchButton_mTaFgGIhgQcSvbUjWKOcQulfeEJt__MethodInfo); DO_APP_FUNC(0x01FE6C90, void, TouchButton_oAsWxeDPnikGPHdsWJRZvrWFTeff, (TouchButton * __this, PointerEventData * param_0000bd8c, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB74C8, TouchButton_oAsWxeDPnikGPHdsWJRZvrWFTeff__MethodInfo); DO_APP_FUNC(0x01FE6D40, void, TouchButton_bbhCuPhKxptFYIHHBNRCtBzQnVHiA, (TouchButton * __this, PointerEventData * param_0000bd8d, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB74B8, TouchButton_bbhCuPhKxptFYIHHBNRCtBzQnVHiA__MethodInfo); DO_APP_FUNC(0x01FE6E00, void, TouchButton_WFAiROsqULgsiDCBEOIDSgGVpWADb, (TouchButton * __this, float param_0000bd8e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB74F0, TouchButton_WFAiROsqULgsiDCBEOIDSgGVpWADb__MethodInfo); DO_APP_FUNC(0x01FE6E80, void, TouchButton_EVuXFQyXeEmPguHzZFwiEBWrTnrd, (TouchButton * __this, bool param_0000bd8f, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7510, TouchButton_EVuXFQyXeEmPguHzZFwiEBWrTnrd__MethodInfo); DO_APP_FUNC(0x01FE6F00, void, TouchButton_LmIKAysnzzOGQXrhZHgALBTpcStt, (TouchButton * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7508, TouchButton_LmIKAysnzzOGQXrhZHgALBTpcStt__MethodInfo); DO_APP_FUNC(0x01FE6F40, void, TouchButton_aPvAwHaIzANeRYvLNqGkylRSEzXAb, (TouchButton * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB74E8, TouchButton_aPvAwHaIzANeRYvLNqGkylRSEzXAb__MethodInfo); DO_APP_FUNC(0x01FE6F80, void, TouchButton_AxisValueChangedEventHandler__ctor, (TouchButton_AxisValueChangedEventHandler * __this, MethodInfo * method)); DO_APP_FUNC(0x01FE6FC0, void, TouchButton_ButtonValueChangedEventHandler__ctor, (TouchButton_ButtonValueChangedEventHandler * __this, MethodInfo * method)); DO_APP_FUNC(0x0042ECC0, void, TouchButton_ButtonDownEventHandler__ctor, (TouchButton_ButtonDownEventHandler * __this, MethodInfo * method)); @@ -48798,6 +57247,7 @@ DO_APP_FUNC(0x003AE050, void, TouchButton_abYFvsEkLzfKvjfzJzikAMuFNidgc_System_I DO_APP_FUNC(0x01FE7000, bool, TouchButton_abYFvsEkLzfKvjfzJzikAMuFNidgc_MoveNext, (TouchButton_abYFvsEkLzfKvjfzJzikAMuFNidgc * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, TouchButton_abYFvsEkLzfKvjfzJzikAMuFNidgc_System_Collections_Generic_IEnumerator_System_Object__get_Current, (TouchButton_abYFvsEkLzfKvjfzJzikAMuFNidgc * __this, MethodInfo * method)); DO_APP_FUNC(0x01FE72F0, void, TouchButton_abYFvsEkLzfKvjfzJzikAMuFNidgc_System_Collections_IEnumerator_Reset, (TouchButton_abYFvsEkLzfKvjfzJzikAMuFNidgc * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7468, TouchButton_abYFvsEkLzfKvjfzJzikAMuFNidgc_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, TouchButton_abYFvsEkLzfKvjfzJzikAMuFNidgc_System_Collections_IEnumerator_get_Current, (TouchButton_abYFvsEkLzfKvjfzJzikAMuFNidgc * __this, MethodInfo * method)); DO_APP_FUNC(0x01FE7340, TouchController *, TouchControl_QrRAzBDZLdZuaUwnhRLJMMusmjqFb, (TouchControl * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3B0, Canvas *, TouchControl_MFuQefUsWDctJOpXERqsCWnsvVBu, (TouchControl * __this, MethodInfo * method)); @@ -48914,12 +57364,13 @@ DO_APP_FUNC(0x01FECB70, int32_t, TouchInteractable_gSuJlcHnkRLVLAxIgqYntivmldzX, DO_APP_FUNC(0x01FECCB0, bool, TouchInteractable_chMVrHoDMJGfZjZfljhRgcXXneILA, (TouchInteractable_MouseButtonFlags__Enum param_0000bdd0, int32_t param_0000bdd1, MethodInfo * method)); DO_APP_FUNC(0x01FECE00, bool, TouchInteractable_KaHODPxdtNeCwSncyeLdPZWAgRBt, (TouchInteractable_MouseButtonFlags__Enum param_0000bdd2, int32_t param_0000bdd3, MethodInfo * method)); DO_APP_FUNC(0x01FECE30, int32_t, TouchInteractable_vlgzYMcUBKEfCdpHXwcFWPhNTJAK, (int32_t param_0000bdd4, MethodInfo * method)); -DO_APP_FUNC(0x01FECEC0, bool, TouchInteractable_fNqzazXinpUhtKPbbcgSRLRjOCMQ, (TouchInteractable_MouseButtonFlags__Enum param_0000bdd5, int32_t param_0000bdd6, MethodInfo * method)); +DO_APP_FUNC(0x01FECEC0, bool, TouchInteractable_fNqzazXinpUhtKPbbcgSRLRjOCMQ, (TouchInteractable_MouseButtonFlags__Enum param_0000bdd5, int32_t * param_0000bdd6, MethodInfo * method)); DO_APP_FUNC(0x01FECF30, bool, TouchInteractable_chMVrHoDMJGfZjZfljhRgcXXneILA_1, (int32_t param_0000bdd7, TouchInteractable_MouseButtonFlags__Enum param_0000bdd8, EventTriggerType__Enum param_0000bdd9, MethodInfo * method)); DO_APP_FUNC(0x01FED100, bool, TouchInteractable_nGehpNmapMHqfyDAQhhxUlkFtomI, (TouchInteractable_MouseButtonFlags__Enum param_0000bdda, MethodInfo * method)); DO_APP_FUNC(0x01FED180, BKsJJnAdrRntLMuBtHLhFtlqOUnH_EventFunction_2_Rewired_ComponentControls_TouchInteractable_IInteractionStateTransitionHandler_Rewired_ComponentControls_TouchInteractable_InteractionStateTransitionArgs_ *, TouchInteractable_lERpyoUiMCryncBKiXgcdMzqurUt, (MethodInfo * method)); DO_APP_FUNC(0x01FED3D0, void, TouchInteractable__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01FED490, void, TouchInteractable_JnAXhByrDejnRIvjfgNXGlfhptBfc, (TouchInteractable * __this, bool param_0000bddb, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7388, TouchInteractable_JnAXhByrDejnRIvjfgNXGlfhptBfc__MethodInfo); DO_APP_FUNC(0x01FED4A0, void, TouchInteractable_InteractionStateTransitionEventHandler__ctor, (TouchInteractable_InteractionStateTransitionEventHandler * __this, MethodInfo * method)); DO_APP_FUNC(0x01FED530, void, TouchInteractable_VisibilityChangedEventHandler__ctor, (TouchInteractable_VisibilityChangedEventHandler * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, TouchInteractable *, TouchInteractable_InteractionStateTransitionArgs_get_sender, (TouchInteractable_InteractionStateTransitionArgs * __this, MethodInfo * method)); @@ -48930,6 +57381,7 @@ DO_APP_FUNC(0x01FED570, void, TouchInteractable_InteractionStateTransitionArgs_k DO_APP_FUNC(0x01FED5E0, void, TouchInteractable_KoeBubFjLenFWOGjupOOLMRwEyjk__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TouchInteractable_KoeBubFjLenFWOGjupOOLMRwEyjk__ctor, (TouchInteractable_KoeBubFjLenFWOGjupOOLMRwEyjk * __this, MethodInfo * method)); DO_APP_FUNC(0x01FED690, void, TouchInteractable_KoeBubFjLenFWOGjupOOLMRwEyjk_SUikyIgnRMbrCwzvfRXPrLnMwBCb, (TouchInteractable_KoeBubFjLenFWOGjupOOLMRwEyjk * __this, TouchInteractable_IInteractionStateTransitionHandler * param_0000bde0, TouchInteractable_InteractionStateTransitionArgs * param_0000bde1, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7348, TouchInteractable_KoeBubFjLenFWOGjupOOLMRwEyjk_SUikyIgnRMbrCwzvfRXPrLnMwBCb__MethodInfo); DO_APP_FUNC(0x00634A10, CustomControllerElementTargetSetForFloat *, TouchJoystick_get_horizontalAxisCustomControllerElement, (TouchJoystick * __this, MethodInfo * method)); DO_APP_FUNC(0x00587090, CustomControllerElementTargetSetForFloat *, TouchJoystick_get_verticalAxisCustomControllerElement, (TouchJoystick * __this, MethodInfo * method)); DO_APP_FUNC(0x005A04D0, CustomControllerElementTargetSetForBoolean *, TouchJoystick_get_tapCustomControllerElement, (TouchJoystick * __this, MethodInfo * method)); @@ -49041,12 +57493,14 @@ DO_APP_FUNC(0x01FF2000, void, TouchJoystick_JCUNjQJCccvhaBXZPjDULQboMINo, (Touch DO_APP_FUNC(0x01FF27C0, IEnumerator *, TouchJoystick_RSXiXJaRgNFeqPynlcuGjNybgsWK, (TouchJoystick * __this, Vector2 param_0000be15, PositionType__Enum param_0000be16, float param_0000be17, TouchJoystick_fYOgiAGPXEYioQpyMdUaGALkIoCKA__Enum param_0000be18, MethodInfo * method)); DO_APP_FUNC(0x01FF28B0, void, TouchJoystick_tKISLnvXbLIFiGaneTNBffnIxnLt, (TouchJoystick * __this, TouchJoystick_fYOgiAGPXEYioQpyMdUaGALkIoCKA__Enum param_0000be19, Vector2 param_0000be1a, PositionType__Enum param_0000be1b, MethodInfo * method)); DO_APP_FUNC(0x01FF2A20, void, TouchJoystick_vZwcmPxpMgFozCgUFnXGicUOUBjhA, (TouchJoystick * __this, TouchJoystick_fYOgiAGPXEYioQpyMdUaGALkIoCKA__Enum param_0000be1c, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7360, TouchJoystick_vZwcmPxpMgFozCgUFnXGicUOUBjhA__MethodInfo); DO_APP_FUNC(0x01FF2BF0, void, TouchJoystick_opRnKnHwopwAVnWoHfIjQhdhOSsS, (TouchJoystick * __this, TouchJoystick_fYOgiAGPXEYioQpyMdUaGALkIoCKA__Enum param_0000be1d, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7358, TouchJoystick_opRnKnHwopwAVnWoHfIjQhdhOSsS__MethodInfo); DO_APP_FUNC(0x01FF2DD0, void, TouchJoystick_LJumOqAZUhLtiXnGhUsFythDZDYF, (TouchJoystick * __this, MethodInfo * method)); DO_APP_FUNC(0x01FF2E60, void, TouchJoystick_wCIfESUNZcwoTUlLQysFLlZSaeifA, (TouchJoystick * __this, int32_t param_0000be1e, Vector2 param_0000be1f, PositionType__Enum param_0000be20, MethodInfo * method)); DO_APP_FUNC(0x01FF2FA0, void, TouchJoystick_FQpJtUcjnQRqiINXeBmmkjwsEUmPA, (TouchJoystick * __this, MethodInfo * method)); DO_APP_FUNC(0x01FF33F0, void, TouchJoystick_CsCgFroCZEkwvYDeTjBaBPWnJDIdA, (TouchJoystick * __this, MethodInfo * method)); -DO_APP_FUNC(0x01FF3520, void, TouchJoystick_uolPRwAXbFrlRbuEnljJTphJhKmb, (TouchJoystick * __this, Vector2 param_0000be21, MethodInfo * method)); +DO_APP_FUNC(0x01FF3520, void, TouchJoystick_uolPRwAXbFrlRbuEnljJTphJhKmb, (TouchJoystick * __this, Vector2 * param_0000be21, MethodInfo * method)); DO_APP_FUNC(0x01FF35C0, bool, TouchJoystick_ztJTBPiVCepvHGxiSjuqljodFEzM, (TouchJoystick * __this, MethodInfo * method)); DO_APP_FUNC(0x01FF36F0, void, TouchJoystick_TWQVAKzrAxsJORydHKkRAmMGeQEx, (TouchJoystick * __this, MethodInfo * method)); DO_APP_FUNC(0x01FF3710, bool, TouchJoystick_yJDkGmqDGgQMWZBPHoCADHclpmri, (TouchJoystick * __this, int32_t param_0000be22, MethodInfo * method)); @@ -49055,15 +57509,19 @@ DO_APP_FUNC(0x01FF3DC0, PointerEventData *, TouchJoystick_FhpeiLqREthPRTGgvkYUEf DO_APP_FUNC(0x01FF3F70, PointerEventData *, TouchJoystick_JCDaiDnrHFVuFvhMEnLZvAkFKQnj, (TouchJoystick * __this, int32_t param_0000be27, MethodInfo * method)); DO_APP_FUNC(0x01FF40D0, void, TouchJoystick_fXjhbVsnVfQVYbostVLwgrhNQMGj, (TouchJoystick * __this, PointerEventData * param_0000be28, MethodInfo * method)); DO_APP_FUNC(0x01FF4140, void, TouchJoystick_axRMnbkazgjkQLCjFbVqqVnPbQC, (TouchJoystick * __this, PointerEventData * param_0000be29, TouchJoystick_eeVAFWSAseCXcaRIjHWwGPdAyvBB__Enum param_0000be2a, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7278, TouchJoystick_axRMnbkazgjkQLCjFbVqqVnPbQC__MethodInfo); DO_APP_FUNC(0x01FF42A0, PointerEventData *, TouchJoystick_lNsvKLlGIzhZXEiIITXbPMcTNqeoA, (TouchJoystick * __this, int32_t param_0000be2b, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7270, TouchJoystick_lNsvKLlGIzhZXEiIITXbPMcTNqeoA__MethodInfo); DO_APP_FUNC(0x01FF4570, void, TouchJoystick_kQHfZASRTZaeRkVLqPuMtBflmIkhb, (TouchJoystick * __this, MethodInfo * method)); DO_APP_FUNC(0x01FF4690, void, TouchJoystick_yBxBGoXCHzdxwIGZYVJFaiMKevHJ, (TouchJoystick * __this, TouchJoystick_AxisDirection__Enum param_0000be2c, MethodInfo * method)); DO_APP_FUNC(0x01FF4930, void, TouchJoystick_OTVNKAxHjnRKPFmHifdIhnOKdbjlA, (TouchJoystick * __this, PointerEventData * param_0000be2d, TouchJoystick_eeVAFWSAseCXcaRIjHWwGPdAyvBB__Enum param_0000be2e, MethodInfo * method)); DO_APP_FUNC(0x01FF4A30, void, TouchJoystick_fiJCOOEgExiMouVYKeojxlliJWWNA, (TouchJoystick * __this, PointerEventData * param_0000be2f, TouchJoystick_eeVAFWSAseCXcaRIjHWwGPdAyvBB__Enum param_0000be30, MethodInfo * method)); DO_APP_FUNC(0x01FF4B10, void, TouchJoystick_tQmflXIDOosPGnFhgKTfRvZuApBm, (TouchJoystick * __this, PointerEventData * param_0000be31, TouchJoystick_eeVAFWSAseCXcaRIjHWwGPdAyvBB__Enum param_0000be32, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7268, TouchJoystick_tQmflXIDOosPGnFhgKTfRvZuApBm__MethodInfo); DO_APP_FUNC(0x01FF4E20, void, TouchJoystick_NQxouavlsKqkLZGuEXIRrIlYwnsA, (TouchJoystick * __this, PointerEventData * param_0000be33, TouchJoystick_eeVAFWSAseCXcaRIjHWwGPdAyvBB__Enum param_0000be34, MethodInfo * method)); DO_APP_FUNC(0x01FF4F30, void, TouchJoystick_UoAUtotVsKUPFesTwYxIPeNVmFCA, (TouchJoystick * __this, PointerEventData * param_0000be35, TouchJoystick_eeVAFWSAseCXcaRIjHWwGPdAyvBB__Enum param_0000be36, MethodInfo * method)); DO_APP_FUNC(0x01FF4FD0, void, TouchJoystick_zPHHJCSnmrtYeYdHfMLtvWDBAlhF, (TouchJoystick * __this, PointerEventData * param_0000be37, TouchJoystick_eeVAFWSAseCXcaRIjHWwGPdAyvBB__Enum param_0000be38, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7260, TouchJoystick_zPHHJCSnmrtYeYdHfMLtvWDBAlhF__MethodInfo); DO_APP_FUNC(0x01FF55F0, void, TouchJoystick_dBHFkYOTQpBIAJWkNvVIwRcxwqJj, (TouchJoystick * __this, PointerEventData * param_0000be39, TouchJoystick_eeVAFWSAseCXcaRIjHWwGPdAyvBB__Enum param_0000be3a, MethodInfo * method)); DO_APP_FUNC(0x01FF5690, void, TouchJoystick_jZfiuoeXkWcWXOYdDvvrKicNPBFo, (TouchJoystick * __this, int32_t param_0000be3b, Vector2 param_0000be3c, TouchJoystick_eeVAFWSAseCXcaRIjHWwGPdAyvBB__Enum param_0000be3d, MethodInfo * method)); DO_APP_FUNC(0x01FF5B20, void, TouchJoystick_yrEHnEaFNGPbTdriTppZJfTlalOFA, (TouchJoystick * __this, MethodInfo * method)); @@ -49075,13 +57533,21 @@ DO_APP_FUNC(0x01FF63C0, void, TouchJoystick_qhonccRBpuOAMNdshIeSePlEMqKD, (Touch DO_APP_FUNC(0x01FF65B0, void, TouchJoystick_bFXaduURAfHnCJGmugGzYvuhnzWi, (TouchJoystick * __this, PointerEventData * param_0000be43, MethodInfo * method)); DO_APP_FUNC(0x01FF6740, void, TouchJoystick_btvWWpxgciTPORTdvOPyBUIFeqnr, (TouchJoystick * __this, PointerEventData * param_0000be44, MethodInfo * method)); DO_APP_FUNC(0x01FF6930, void, TouchJoystick_LkubzBbVjHGoeHQSjEfiLDtgIzFNE, (TouchJoystick * __this, PointerEventData * param_0000be45, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB72D0, TouchJoystick_LkubzBbVjHGoeHQSjEfiLDtgIzFNE__MethodInfo); DO_APP_FUNC(0x01FF69F0, void, TouchJoystick_mTaFgGIhgQcSvbUjWKOcQulfeEJt, (TouchJoystick * __this, PointerEventData * param_0000be46, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB72B8, TouchJoystick_mTaFgGIhgQcSvbUjWKOcQulfeEJt__MethodInfo); DO_APP_FUNC(0x01FF6AB0, void, TouchJoystick_oAsWxeDPnikGPHdsWJRZvrWFTeff, (TouchJoystick * __this, PointerEventData * param_0000be47, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB72C8, TouchJoystick_oAsWxeDPnikGPHdsWJRZvrWFTeff__MethodInfo); DO_APP_FUNC(0x01FF6B60, void, TouchJoystick_bbhCuPhKxptFYIHHBNRCtBzQnVHiA, (TouchJoystick * __this, PointerEventData * param_0000be48, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB72E0, TouchJoystick_bbhCuPhKxptFYIHHBNRCtBzQnVHiA__MethodInfo); DO_APP_FUNC(0x01FF6C20, void, TouchJoystick_mClMPErokVYYIpuKSICQdJOQaAIdA, (TouchJoystick * __this, PointerEventData * param_0000be49, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB72C0, TouchJoystick_mClMPErokVYYIpuKSICQdJOQaAIdA__MethodInfo); DO_APP_FUNC(0x01FF6D40, void, TouchJoystick_CNVUXfloQFrsaqmkosqIPUyKdTpc, (TouchJoystick * __this, PointerEventData * param_0000be4a, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB72D8, TouchJoystick_CNVUXfloQFrsaqmkosqIPUyKdTpc__MethodInfo); DO_APP_FUNC(0x01FF6E00, void, TouchJoystick_PyTakAERYHHUkXtlecxsWOenpnoQ, (TouchJoystick * __this, PointerEventData * param_0000be4b, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB72E8, TouchJoystick_PyTakAERYHHUkXtlecxsWOenpnoQ__MethodInfo); DO_APP_FUNC(0x01FF6F20, void, TouchJoystick_WFAiROsqULgsiDCBEOIDSgGVpWADb, (TouchJoystick * __this, Vector2 param_0000be4c, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7320, TouchJoystick_WFAiROsqULgsiDCBEOIDSgGVpWADb__MethodInfo); DO_APP_FUNC(0x01FF7620, BKsJJnAdrRntLMuBtHLhFtlqOUnH_EventFunction_2_Rewired_ComponentControls_TouchJoystick_IValueChangedHandler_UnityEngine_Vector2_ *, TouchJoystick_FepaHEJgzLMnNaaAmxkoSFNWTDEd, (MethodInfo * method)); DO_APP_FUNC(0x01FF7820, BKsJJnAdrRntLMuBtHLhFtlqOUnH_EventFunction_2_Rewired_ComponentControls_TouchJoystick_IStickPositionChangedHandler_UnityEngine_Vector2_ *, TouchJoystick_wdwvnwlaANXAJTjSedwjmkecjIzU, (MethodInfo * method)); DO_APP_FUNC(0x01FF7A30, void, TouchJoystick_ValueChangedEventHandler__ctor, (TouchJoystick_ValueChangedEventHandler * __this, MethodInfo * method)); @@ -49092,12 +57558,15 @@ DO_APP_FUNC(0x0042ECC0, void, TouchJoystick_TouchEndedEventHandler__ctor, (Touch DO_APP_FUNC(0x01FF7AB0, void, TouchJoystick_LuDCVlFbsGoXSwtLpZgQhCwRLyOOA__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TouchJoystick_LuDCVlFbsGoXSwtLpZgQhCwRLyOOA__ctor, (TouchJoystick_LuDCVlFbsGoXSwtLpZgQhCwRLyOOA * __this, MethodInfo * method)); DO_APP_FUNC(0x01FF7B60, void, TouchJoystick_LuDCVlFbsGoXSwtLpZgQhCwRLyOOA_WZglSbFblnhnTNvQtBxXEXZjWMuoA, (TouchJoystick_LuDCVlFbsGoXSwtLpZgQhCwRLyOOA * __this, TouchJoystick_IValueChangedHandler * param_0000be4f, Vector2 param_0000be50, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7248, TouchJoystick_LuDCVlFbsGoXSwtLpZgQhCwRLyOOA_WZglSbFblnhnTNvQtBxXEXZjWMuoA__MethodInfo); DO_APP_FUNC(0x01FF7BC0, void, TouchJoystick_LuDCVlFbsGoXSwtLpZgQhCwRLyOOA_twbcwRBXziRMPxQqFChyenAhzrbgA, (TouchJoystick_LuDCVlFbsGoXSwtLpZgQhCwRLyOOA * __this, TouchJoystick_IStickPositionChangedHandler * param_0000be51, Vector2 param_0000be52, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7238, TouchJoystick_LuDCVlFbsGoXSwtLpZgQhCwRLyOOA_twbcwRBXziRMPxQqFChyenAhzrbgA__MethodInfo); DO_APP_FUNC(0x003BCD60, void, TouchJoystick_nRtKRFCJzLicaOaQLEgGAHTRJIqvA__ctor, (TouchJoystick_nRtKRFCJzLicaOaQLEgGAHTRJIqvA * __this, int32_t param_0000be53, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TouchJoystick_nRtKRFCJzLicaOaQLEgGAHTRJIqvA_System_IDisposable_Dispose, (TouchJoystick_nRtKRFCJzLicaOaQLEgGAHTRJIqvA * __this, MethodInfo * method)); DO_APP_FUNC(0x01FF7C20, bool, TouchJoystick_nRtKRFCJzLicaOaQLEgGAHTRJIqvA_MoveNext, (TouchJoystick_nRtKRFCJzLicaOaQLEgGAHTRJIqvA * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, TouchJoystick_nRtKRFCJzLicaOaQLEgGAHTRJIqvA_System_Collections_Generic_IEnumerator_System_Object__get_Current, (TouchJoystick_nRtKRFCJzLicaOaQLEgGAHTRJIqvA * __this, MethodInfo * method)); DO_APP_FUNC(0x01FF7F10, void, TouchJoystick_nRtKRFCJzLicaOaQLEgGAHTRJIqvA_System_Collections_IEnumerator_Reset, (TouchJoystick_nRtKRFCJzLicaOaQLEgGAHTRJIqvA * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA678, TouchJoystick_nRtKRFCJzLicaOaQLEgGAHTRJIqvA_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, TouchJoystick_nRtKRFCJzLicaOaQLEgGAHTRJIqvA_System_Collections_IEnumerator_get_Current, (TouchJoystick_nRtKRFCJzLicaOaQLEgGAHTRJIqvA * __this, MethodInfo * method)); DO_APP_FUNC(0x01FF7F60, void, TouchPad_add_ValueChangedEvent, (TouchPad * __this, UnityAction_1_UnityEngine_Vector2_ * value, MethodInfo * method)); DO_APP_FUNC(0x01FF7FC0, void, TouchPad_remove_ValueChangedEvent, (TouchPad * __this, UnityAction_1_UnityEngine_Vector2_ * value, MethodInfo * method)); @@ -49166,10 +57635,11 @@ DO_APP_FUNC(0x01FF9C20, void, TouchPad_FQpJtUcjnQRqiINXeBmmkjwsEUmPA, (TouchPad DO_APP_FUNC(0x01FF9DF0, void, TouchPad_KuEdRUFGIMFmdOAKghbYrunWAyAi, (TouchPad * __this, MethodInfo * method)); DO_APP_FUNC(0x01FFA500, void, TouchPad_LYGelzpbTVvjWPoKOCOCNdTxVbeD, (TouchPad * __this, MethodInfo * method)); DO_APP_FUNC(0x01FFA640, void, TouchPad_CsCgFroCZEkwvYDeTjBaBPWnJDIdA, (TouchPad * __this, MethodInfo * method)); -DO_APP_FUNC(0x01FFA830, void, TouchPad_uolPRwAXbFrlRbuEnljJTphJhKmb, (TouchPad * __this, Vector2 param_0000be6c, MethodInfo * method)); -DO_APP_FUNC(0x01FFA8D0, void, TouchPad_ZilldvVVwigUANJentLHZMkKdaRy, (TouchPad * __this, Vector2 param_0000be6d, MethodInfo * method)); +DO_APP_FUNC(0x01FFA830, void, TouchPad_uolPRwAXbFrlRbuEnljJTphJhKmb, (TouchPad * __this, Vector2 * param_0000be6c, MethodInfo * method)); +DO_APP_FUNC(0x01FFA8D0, void, TouchPad_ZilldvVVwigUANJentLHZMkKdaRy, (TouchPad * __this, Vector2 * param_0000be6d, MethodInfo * method)); DO_APP_FUNC(0x01FFA9B0, void, TouchPad_EokhMLYMETfHuBAQrEZEvbTgynvAA, (TouchPad * __this, MethodInfo * method)); DO_APP_FUNC(0x01FFAB00, Vector2, TouchPad_WHIgVYnCDLjuEFVdOxMKqWHBSXWFA, (TouchPad * __this, Vector2 param_0000be6e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA5C8, TouchPad_WHIgVYnCDLjuEFVdOxMKqWHBSXWFA__MethodInfo); DO_APP_FUNC(0x01FFAC40, void, TouchPad_kgtdTKIfoRDmYEhBGDatyYmfRWFXb, (TouchPad * __this, bool param_0000be6f, MethodInfo * method)); DO_APP_FUNC(0x01FFAC90, void, TouchPad_OTVNKAxHjnRKPFmHifdIhnOKdbjlA, (TouchPad * __this, PointerEventData * param_0000be70, MethodInfo * method)); DO_APP_FUNC(0x01FFAE30, void, TouchPad_fiJCOOEgExiMouVYKeojxlliJWWNA, (TouchPad * __this, PointerEventData * param_0000be71, MethodInfo * method)); @@ -49188,7 +57658,9 @@ DO_APP_FUNC(0x01FFC0D0, PointerEventData *, TouchPad_FhpeiLqREthPRTGgvkYUEferdhE DO_APP_FUNC(0x01FFC280, PointerEventData *, TouchPad_JCDaiDnrHFVuFvhMEnLZvAkFKQnj, (TouchPad * __this, int32_t param_0000be7f, MethodInfo * method)); DO_APP_FUNC(0x01FFC3E0, void, TouchPad_fXjhbVsnVfQVYbostVLwgrhNQMGj, (TouchPad * __this, PointerEventData * param_0000be80, MethodInfo * method)); DO_APP_FUNC(0x01FFC580, PointerEventData *, TouchPad_lNsvKLlGIzhZXEiIITXbPMcTNqeoA, (TouchPad * __this, int32_t param_0000be81, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA540, TouchPad_lNsvKLlGIzhZXEiIITXbPMcTNqeoA__MethodInfo); DO_APP_FUNC(0x01FFC850, void, TouchPad_yiJyuDElAFOIrssaGqaEzDRoNSSI__ctor, (TouchPad_yiJyuDElAFOIrssaGqaEzDRoNSSI * __this, int32_t param_0000be82, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA510, TouchPad_yiJyuDElAFOIrssaGqaEzDRoNSSI__ctor__MethodInfo); DO_APP_FUNC(0x01FFC9E0, void, TouchPad_yiJyuDElAFOIrssaGqaEzDRoNSSI_ZoDbkNKFlXFxAHENCTiSSpvcgFGj, (TouchPad_yiJyuDElAFOIrssaGqaEzDRoNSSI * __this, float param_0000be83, float param_0000be84, MethodInfo * method)); DO_APP_FUNC(0x01FFCAD0, Vector2, TouchPad_yiJyuDElAFOIrssaGqaEzDRoNSSI_TEoufXGDMWUEXEQXcidMxrbYHAls, (TouchPad_yiJyuDElAFOIrssaGqaEzDRoNSSI * __this, MethodInfo * method)); DO_APP_FUNC(0x01FFCBE0, void, TouchPad_yiJyuDElAFOIrssaGqaEzDRoNSSI_LpBoCPCTBSvqzLdVHjgVlaymaFSJA, (TouchPad_yiJyuDElAFOIrssaGqaEzDRoNSSI * __this, MethodInfo * method)); @@ -49248,6 +57720,7 @@ DO_APP_FUNC(0x00421700, bool, RotateAroundAxis_get_reverse, (RotateAroundAxis * DO_APP_FUNC(0x00421710, void, RotateAroundAxis_set_reverse, (RotateAroundAxis * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x01FFE3C0, void, RotateAroundAxis_Update, (RotateAroundAxis * __this, MethodInfo * method)); DO_APP_FUNC(0x01FFE590, Vector3, RotateAroundAxis_kIlAHOciYuyzrFdwEmjGshsjCbbc, (RotateAroundAxis_RotationAxis__Enum param_0000bea7, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA450, RotateAroundAxis_kIlAHOciYuyzrFdwEmjGshsjCbbc__MethodInfo); DO_APP_FUNC(0x003BCDD0, void, RotateAroundAxis_SetSpeed, (RotateAroundAxis * __this, RotateAroundAxis_Speed__Enum speed, MethodInfo * method)); DO_APP_FUNC(0x01FFE630, void, RotateAroundAxis_SetSpeed_1, (RotateAroundAxis * __this, int32_t speed, MethodInfo * method)); DO_APP_FUNC(0x01FFE7C0, void, RotateAroundAxis__ctor, (RotateAroundAxis * __this, MethodInfo * method)); @@ -49310,7 +57783,7 @@ DO_APP_FUNC(0x02000590, Image *, TouchJoystickAngleIndicator_RkFqJnsVxioTJAfMtwF DO_APP_FUNC(0x02000630, Sprite *, TouchJoystickAngleIndicator_LkbNbPPnoBBwGiVJSMykJmskSTiRA, (TouchJoystickAngleIndicator * __this, MethodInfo * method)); DO_APP_FUNC(0x02000860, RectTransform *, TouchJoystickAngleIndicator_wWoCFcsHaZfFjkXjUcARqnmXznXNA, (TouchJoystickAngleIndicator * __this, MethodInfo * method)); DO_APP_FUNC(0x02000900, void, TouchJoystickAngleIndicator__ctor, (TouchJoystickAngleIndicator * __this, MethodInfo * method)); -DO_APP_FUNC(0x02000980, bool, TouchJoystickAngleIndicator_SUiDlvCzyVDoLKSpRUgoPZICOqxY, (TouchJoystickAngleIndicator * __this, Vector2 param_0000bec6, MethodInfo * method)); +DO_APP_FUNC(0x02000980, bool, TouchJoystickAngleIndicator_SUiDlvCzyVDoLKSpRUgoPZICOqxY, (TouchJoystickAngleIndicator * __this, Vector2 * param_0000bec6, MethodInfo * method)); DO_APP_FUNC(0x02000C10, void, TouchJoystickAngleIndicator_Awake, (TouchJoystickAngleIndicator * __this, MethodInfo * method)); DO_APP_FUNC(0x02000C80, void, TouchJoystickAngleIndicator_OnEnable, (TouchJoystickAngleIndicator * __this, MethodInfo * method)); DO_APP_FUNC(0x02000D00, void, TouchJoystickAngleIndicator_OnDisable, (TouchJoystickAngleIndicator * __this, MethodInfo * method)); @@ -49365,6 +57838,7 @@ DO_APP_FUNC(0x003AE050, void, CustomControllerElementTargetSet__ctor, (CustomCon DO_APP_FUNC(0x003BB3C0, CustomControllerElementTarget *, CustomControllerElementTargetSetForBoolean_get_target, (CustomControllerElementTargetSetForBoolean * __this, MethodInfo * method)); DO_APP_FUNC(0x007205E0, int32_t, CustomControllerElementTargetSetForBoolean_get_targetCount, (CustomControllerElementTargetSetForBoolean * __this, MethodInfo * method)); DO_APP_FUNC(0x02002970, CustomControllerElementTarget *, CustomControllerElementTargetSetForBoolean_get_Item, (CustomControllerElementTargetSetForBoolean * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA208, CustomControllerElementTargetSetForBoolean_get_Item__MethodInfo); DO_APP_FUNC(0x020029D0, void, CustomControllerElementTargetSetForBoolean__ctor, (CustomControllerElementTargetSetForBoolean * __this, MethodInfo * method)); DO_APP_FUNC(0x02002AE0, void, CustomControllerElementTargetSetForBoolean__ctor_1, (CustomControllerElementTargetSetForBoolean * __this, CustomControllerElementTarget * param_0000bedc, MethodInfo * method)); DO_APP_FUNC(0x02002C60, void, CustomControllerElementTargetSetForBoolean_ClearElementCaches, (CustomControllerElementTargetSetForBoolean * __this, MethodInfo * method)); @@ -49375,6 +57849,7 @@ DO_APP_FUNC(0x003BB3E0, CustomControllerElementTarget *, CustomControllerElement DO_APP_FUNC(0x003BB3B0, CustomControllerElementTarget *, CustomControllerElementTargetSetForFloat_get_negativeTarget, (CustomControllerElementTargetSetForFloat * __this, MethodInfo * method)); DO_APP_FUNC(0x02002C80, int32_t, CustomControllerElementTargetSetForFloat_get_targetCount, (CustomControllerElementTargetSetForFloat * __this, MethodInfo * method)); DO_APP_FUNC(0x02002C90, CustomControllerElementTarget *, CustomControllerElementTargetSetForFloat_get_Item, (CustomControllerElementTargetSetForFloat * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA2B0, CustomControllerElementTargetSetForFloat_get_Item__MethodInfo); DO_APP_FUNC(0x02002D50, void, CustomControllerElementTargetSetForFloat__ctor, (CustomControllerElementTargetSetForFloat * __this, MethodInfo * method)); DO_APP_FUNC(0x02002FF0, void, CustomControllerElementTargetSetForFloat__ctor_1, (CustomControllerElementTargetSetForFloat * __this, CustomControllerElementTarget * param_0000bedf, MethodInfo * method)); DO_APP_FUNC(0x020032F0, void, CustomControllerElementTargetSetForFloat__ctor_2, (CustomControllerElementTargetSetForFloat * __this, CustomControllerElementTarget * param_0000bee0, CustomControllerElementTarget * param_0000bee1, MethodInfo * method)); @@ -49390,9 +57865,13 @@ DO_APP_FUNC(0x02003760, void, CustomControllerElementSelector_set_elementIndex, DO_APP_FUNC(0x003CD280, int32_t, CustomControllerElementSelector_get_elementId, (CustomControllerElementSelector * __this, MethodInfo * method)); DO_APP_FUNC(0x02003780, void, CustomControllerElementSelector_set_elementId, (CustomControllerElementSelector * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x020037A0, bool, CustomControllerElementSelector_get_isAssigned, (CustomControllerElementSelector * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA290, CustomControllerElementSelector_get_isAssigned__MethodInfo); DO_APP_FUNC(0x02003840, int32_t, CustomControllerElementSelector_GetElementIndex, (CustomControllerElementSelector * __this, CustomController * customController, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA298, CustomControllerElementSelector_GetElementIndex__MethodInfo); DO_APP_FUNC(0x02003B90, String *, CustomControllerElementSelector_GetSelectorFormattedString, (CustomControllerElementSelector * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA140, CustomControllerElementSelector_GetSelectorFormattedString__MethodInfo); DO_APP_FUNC(0x02003C90, IList_1_Rewired_ControllerElementIdentifier_ *, CustomControllerElementSelector_UDvbkNpBCwxqrgGLKBEkpMPRgehdA, (CustomControllerElementSelector * __this, CustomController * param_0000bee8, CustomControllerElementSelector_ElementType__Enum param_0000bee9, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA158, CustomControllerElementSelector_UDvbkNpBCwxqrgGLKBEkpMPRgehdA__MethodInfo); DO_APP_FUNC(0x02003D20, void, CustomControllerElementSelector_ClearCache, (CustomControllerElementSelector * __this, MethodInfo * method)); DO_APP_FUNC(0x02003D30, void, CustomControllerElementSelector__ctor, (CustomControllerElementSelector * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD20, bool, CustomControllerSelector_get_findUsingSourceId, (CustomControllerSelector * __this, MethodInfo * method)); @@ -49546,14 +58025,16 @@ DO_APP_FUNC(0x02008CF0, void, StandaloneAxis2D_Unsubscribe, (StandaloneAxis2D * DO_APP_FUNC(0x02008E70, Vector2, StandaloneAxis2D_GetCalibratedValue, (StandaloneAxis2D * __this, StandaloneAxis * xAxis, StandaloneAxis * yAxis, MethodInfo * method)); DO_APP_FUNC(0x02008F20, Vector2, StandaloneAxis2D_GetCalibratedValuePrev, (StandaloneAxis2D * __this, StandaloneAxis * xAxis, StandaloneAxis * yAxis, MethodInfo * method)); DO_APP_FUNC(0x02008FD0, void, StandaloneAxis2D_OnAxisValueChanged, (StandaloneAxis2D * __this, float value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9E50, StandaloneAxis2D_OnAxisValueChanged__MethodInfo); DO_APP_FUNC(0x02009020, void, StandaloneAxis2D_OnAxisRawValueChanged, (StandaloneAxis2D * __this, float value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9E58, StandaloneAxis2D_OnAxisRawValueChanged__MethodInfo); DO_APP_FUNC(0x02009070, StandaloneAxis2D *, StandaloneAxis2D_CreateRelative, (MethodInfo * method)); DO_APP_FUNC(0x01112FD0, void, StandaloneAxis2D_ValueChangedEventHandler__ctor, (StandaloneAxis2D_ValueChangedEventHandler * __this, Object * param_0000bf4c, void * param_0000bf4d, MethodInfo * method)); DO_APP_FUNC(0x003EE650, void, StandaloneAxis2D_ValueChangedEventHandler_Invoke, (StandaloneAxis2D_ValueChangedEventHandler * __this, Vector2 value, MethodInfo * method)); DO_APP_FUNC(0x02009120, IAsyncResult *, StandaloneAxis2D_ValueChangedEventHandler_BeginInvoke, (StandaloneAxis2D_ValueChangedEventHandler * __this, Vector2 value, AsyncCallback * callback, Object * object, MethodInfo * method)); DO_APP_FUNC(0x003BA270, void, StandaloneAxis2D_ValueChangedEventHandler_EndInvoke, (StandaloneAxis2D_ValueChangedEventHandler * __this, IAsyncResult * result, MethodInfo * method)); -DO_APP_FUNC(0x020091A0, void, UIAnchor__ctor, (UIAnchor__Boxed * __this, float param_0000bf53, float param_0000bf54, float param_0000bf55, float param_0000bf56, MethodInfo * method)); -DO_APP_FUNC(0x020091E0, void, UIAnchor__ctor_1, (UIAnchor__Boxed * __this, Vector2 param_0000bf57, Vector2 param_0000bf58, MethodInfo * method)); +DO_APP_FUNC(0x020091A0, void, UIAnchor__ctor, (UIAnchor * __this, float param_0000bf53, float param_0000bf54, float param_0000bf55, float param_0000bf56, MethodInfo * method)); +DO_APP_FUNC(0x020091E0, void, UIAnchor__ctor_1, (UIAnchor * __this, Vector2 param_0000bf57, Vector2 param_0000bf58, MethodInfo * method)); DO_APP_FUNC(0x02009270, UIAnchor, UIAnchor_get_TopLeft, (MethodInfo * method)); DO_APP_FUNC(0x02009290, UIAnchor, UIAnchor_get_TopCenter, (MethodInfo * method)); DO_APP_FUNC(0x020092B0, UIAnchor, UIAnchor_get_TopRight, (MethodInfo * method)); @@ -49570,7 +58051,7 @@ DO_APP_FUNC(0x020093E0, UIAnchor, UIAnchor_get_LeftVStretch, (MethodInfo * metho DO_APP_FUNC(0x02009400, UIAnchor, UIAnchor_get_CenterVStretch, (MethodInfo * method)); DO_APP_FUNC(0x02009420, UIAnchor, UIAnchor_get_RightVStretch, (MethodInfo * method)); DO_APP_FUNC(0x02009440, UIAnchor, UIAnchor_get_Stretch, (MethodInfo * method)); -DO_APP_FUNC(0x02009460, void, UIPivot__ctor, (UIPivot__Boxed * __this, float param_0000bf59, float param_0000bf5a, MethodInfo * method)); +DO_APP_FUNC(0x02009460, void, UIPivot__ctor, (UIPivot * __this, float param_0000bf59, float param_0000bf5a, MethodInfo * method)); DO_APP_FUNC(0x02009480, Vector2, UIPivot_op_Implicit, (UIPivot x, MethodInfo * method)); DO_APP_FUNC(0x020094A0, UIPivot, UIPivot_op_Implicit_1, (Vector2 x, MethodInfo * method)); DO_APP_FUNC(0x020094C0, UIPivot, UIPivot_get_TopLeft, (MethodInfo * method)); @@ -49586,6 +58067,7 @@ DO_APP_FUNC(0x020095E0, BKsJJnAdrRntLMuBtHLhFtlqOUnH_EventFunction_2_Rewired_UI_ DO_APP_FUNC(0x020097E0, void, zDZgydkVTSdUNcyzGBFFOHxZsClo_TYlHmkDTznGBMhXHDVLwimyXARDj__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, zDZgydkVTSdUNcyzGBFFOHxZsClo_TYlHmkDTznGBMhXHDVLwimyXARDj__ctor, (zDZgydkVTSdUNcyzGBFFOHxZsClo_TYlHmkDTznGBMhXHDVLwimyXARDj * __this, MethodInfo * method)); DO_APP_FUNC(0x02009890, void, zDZgydkVTSdUNcyzGBFFOHxZsClo_TYlHmkDTznGBMhXHDVLwimyXARDj_vEtpQEjIAxTegDfyzgxUlYcnHEh, (zDZgydkVTSdUNcyzGBFFOHxZsClo_TYlHmkDTznGBMhXHDVLwimyXARDj * __this, IVisibilityChangedHandler * param_0000bf7a, bool param_0000bf7b, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9F00, zDZgydkVTSdUNcyzGBFFOHxZsClo_TYlHmkDTznGBMhXHDVLwimyXARDj_vEtpQEjIAxTegDfyzgxUlYcnHEh__MethodInfo); DO_APP_FUNC(0x020098F0, bool, ExtensionMethods_IsNullOrDestroyed, (Object * object, MethodInfo * method)); DO_APP_FUNC(0x02009A70, Action_1_Exception_ *, SafeDelegate_get_S_ExceptionHandler, (MethodInfo * method)); DO_APP_FUNC(0x02009AB0, void, SafeDelegate_set_S_ExceptionHandler, (Action_1_Exception_ * value, MethodInfo * method)); @@ -49597,6 +58079,7 @@ DO_APP_FUNC(0x02009CE0, void, SafeAction_Invoke, (SafeAction * __this, MethodInf DO_APP_FUNC(0x02009E90, Object *, SafeAction_Clone, (SafeAction * __this, MethodInfo * method)); DO_APP_FUNC(0x02009F20, Action_2_Object_Action_ *, SafeAction_bDVflFQsgOWBIdMdGmAMbRhZrESH, (MethodInfo * method)); DO_APP_FUNC(0x0200A020, void, SafeAction_kfojglLKXLBbytPmRSGPXnWCBiWH, (Object * param_0000bf93, Action * param_0000bf94, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9DC8, SafeAction_kfojglLKXLBbytPmRSGPXnWCBiWH__MethodInfo); DO_APP_FUNC(0x0200A040, SafeAction *, SafeAction_op_Addition, (SafeAction * eventList, Action * listener, MethodInfo * method)); DO_APP_FUNC(0x0200A100, SafeAction *, SafeAction_op_Subtraction, (SafeAction * eventList, Action * listener, MethodInfo * method)); DO_APP_FUNC(0x0200A170, Action *, SafeAction_op_Implicit, (SafeAction * obj, MethodInfo * method)); @@ -49605,9 +58088,11 @@ DO_APP_FUNC(0x0200A280, void, SystemInfo__cctor, (MethodInfo * method)); DO_APP_FUNC(0x0200A2C0, ADictionary_2_System_Type_System_Collections_Generic_List_1_ *, TempListPool_OtvZiZpEVhJmijfLUBywXlYDqdKj, (MethodInfo * method)); DO_APP_FUNC(0x0200A3F0, void, TempListPool_Clear, (MethodInfo * method)); DO_APP_FUNC(0x0200A520, void, TempListPool_Clear_1, (Type * listType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9D08, TempListPool_Clear_1__MethodInfo); DO_APP_FUNC(0x0200A710, ADictionary_2_System_Type_System_Collections_Generic_List_1__1 *, TempListPool_PjDAHtdxqqebxCpLhOqfFcxXTcRR_ZafsdaUmbBHeolRJuAqIczfeOjVz, (MethodInfo * method)); DO_APP_FUNC(0x0200A840, void, TempListPool_PjDAHtdxqqebxCpLhOqfFcxXTcRR_sjgQXMMRIHmhSmDrVpgFKxoFoOIy, (MethodInfo * method)); DO_APP_FUNC(0x0200A8E0, void, TempListPool_PjDAHtdxqqebxCpLhOqfFcxXTcRR_sjgQXMMRIHmhSmDrVpgFKxoFoOIy_1, (Type * param_0000bfd4, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9CD0, TempListPool_PjDAHtdxqqebxCpLhOqfFcxXTcRR_sjgQXMMRIHmhSmDrVpgFKxoFoOIy_1__MethodInfo); DO_APP_FUNC(0x0200AA10, Int32__Array *, ArrayTools_ConvertToIntArray, (Array * array, MethodInfo * method)); DO_APP_FUNC(0x0200AD10, void, ArrayTools_ShallowCopy, (Int32__Array * sourceArray, Int32__Array * targetArray, MethodInfo * method)); DO_APP_FUNC(0x0200ADF0, void, ArrayTools_ShallowCopy_1, (Single__Array * sourceArray, Single__Array * targetArray, MethodInfo * method)); @@ -49633,19 +58118,24 @@ DO_APP_FUNC(0x0200BD90, int32_t, ArrayTools_IndexOf_7, (String__Array * array, S DO_APP_FUNC(0x0200BE30, int32_t, ArrayTools_IndexOf_8, (String__Array * array, String * value, StringComparison__Enum stringComparison, MethodInfo * method)); DO_APP_FUNC(0x0200BEB0, bool, ArrayTools_IsEqual, (Byte__Array * a1, Byte__Array * a2, MethodInfo * method)); DO_APP_FUNC(0x0200BF20, bool, ArrayTools_Contains, (String__Array * array, String * item, bool ignoreCase, MethodInfo * method)); -DO_APP_FUNC(0x0200C0A0, int32_t, ArrayTools_AddIfUnique, (String__Array * array, String * item, bool ignoreCase, MethodInfo * method)); -DO_APP_FUNC(0x0200C3D0, void, ArrayTools_RemoveDuplicates, (String__Array * array, bool ignoreCase, MethodInfo * method)); -DO_APP_FUNC(0x0200C800, bool, ArrayTools_Remove, (String__Array * array, String * item, bool ignoreCase, MethodInfo * method)); +DO_APP_FUNC(0x0200C0A0, int32_t, ArrayTools_AddIfUnique, (String__Array * * array, String * item, bool ignoreCase, MethodInfo * method)); +DO_APP_FUNC(0x0200C3D0, void, ArrayTools_RemoveDuplicates, (String__Array * * array, bool ignoreCase, MethodInfo * method)); +DO_APP_FUNC(0x0200C800, bool, ArrayTools_Remove, (String__Array * * array, String * item, bool ignoreCase, MethodInfo * method)); DO_APP_FUNC(0x0200CA50, String__Array *, ArrayTools_ToLowerStripSpaces, (String__Array * array, MethodInfo * method)); DO_APP_FUNC(0x0200CB90, int32_t, ArrayTools_ToBitmask, (Boolean__Array * array, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9C10, ArrayTools_ToBitmask__MethodInfo); DO_APP_FUNC(0x0200CD60, void, BitTools_GetBytes, (int16_t value, Byte__Array * buffer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9B30, BitTools_GetBytes__MethodInfo); DO_APP_FUNC(0x0200CE40, void, BitTools_GetBytes_1, (int32_t value, Byte__Array * buffer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9B40, BitTools_GetBytes_1__MethodInfo); DO_APP_FUNC(0x0200CF40, void, BitTools_GetBytes_2, (int64_t value, Byte__Array * buffer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9B18, BitTools_GetBytes_2__MethodInfo); DO_APP_FUNC(0x0200D0A0, Byte__Array *, BitTools_ffjEIgdQekSpIaAAoWQzrrPAQsJV, (MethodInfo * method)); DO_APP_FUNC(0x0200D170, float, BitTools_IntToFloat, (void * pointer, int32_t offset, MethodInfo * method)); -DO_APP_FUNC(0x0200D480, bool, CollectionTools_GetDictionaryValueSafe, (Dictionary_2_System_String_System_Object_ * dictionary, String * key, Type * type, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x0200D570, bool, CollectionTools_GetDictionaryValueSafe_float, (Dictionary_2_System_String_System_Object_ * dictionary, String * key, float value, MethodInfo * method)); -DO_APP_FUNC(0x0200D6F0, bool, CollectionTools_GetDictionaryValueSafe_int, (Dictionary_2_System_String_System_Object_ * dictionary, String * key, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9AD8, BitTools_IntToFloat__MethodInfo); +DO_APP_FUNC(0x0200D480, bool, CollectionTools_GetDictionaryValueSafe, (Dictionary_2_System_String_System_Object_ * dictionary, String * key, Type * type, Object * * value, MethodInfo * method)); +DO_APP_FUNC(0x0200D570, bool, CollectionTools_GetDictionaryValueSafe_float, (Dictionary_2_System_String_System_Object_ * dictionary, String * key, float * value, MethodInfo * method)); +DO_APP_FUNC(0x0200D6F0, bool, CollectionTools_GetDictionaryValueSafe_int, (Dictionary_2_System_String_System_Object_ * dictionary, String * key, int32_t * value, MethodInfo * method)); DO_APP_FUNC(0x0200D870, void, CollectionTools_AddValueSafe, (Dictionary_2_System_String_System_Object_ * data, String * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x0200D990, Int32__Array *, EnumTools_GetIntValues, (Type * enumType, MethodInfo * method)); DO_APP_FUNC(0x0200DA80, bool, EnumTools_IsEnum, (Type * type, MethodInfo * method)); @@ -49658,23 +58148,33 @@ DO_APP_FUNC(0x0200E380, float, InputTools_GetCalibratedAxisValueClamped, (float DO_APP_FUNC(0x0200E560, float, InputTools_GetCalibratedAxisValue, (float value, float deadZone, bool invert, bool applySensitivity, AxisSensitivityType__Enum sensitivityType, float sensitivity, AnimationCurve * sensitivityCurve, MethodInfo * method)); DO_APP_FUNC(0x0200E650, Vector2, InputTools_ApplyRadialDeadZone, (float xValue, float yValue, float deadzone, MethodInfo * method)); DO_APP_FUNC(0x0200E7D0, float, InputTools_ApplySensitivity, (float value, AxisSensitivityType__Enum sensitivityType, float sensitivity, AnimationCurve * sensitivityCurve, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9A28, InputTools_ApplySensitivity__MethodInfo); DO_APP_FUNC(0x0200EA00, bool, InputTools_IKSNnhBLzKJvnYZbktBwEYVnsjdG, (AnimationCurve * param_0000c0b7, MethodInfo * method)); -DO_APP_FUNC(0x0200EB00, void, InputTools_ApplyRadialSensitivity, (Vector2 value, AxisSensitivityType__Enum sensitivityType, float sensitivity, AnimationCurve * sensitivityCurve, MethodInfo * method)); +DO_APP_FUNC(0x0200EB00, void, InputTools_ApplyRadialSensitivity, (Vector2 * value, AxisSensitivityType__Enum sensitivityType, float sensitivity, AnimationCurve * sensitivityCurve, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9A20, InputTools_ApplyRadialSensitivity__MethodInfo); DO_APP_FUNC(0x0200EC50, String *, InputTools_FormatHardwareIdentifierString, (String * str, MethodInfo * method)); DO_APP_FUNC(0x0200ED00, AxisRange__Enum, InputTools_InvertAxisRange, (AxisRange__Enum axisRange, MethodInfo * method)); -DO_APP_FUNC(0x0200ED80, void, InputTools_CompareLastActiveController, (Controller * controller, Controller * lastController, double lastTime, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9A00, InputTools_InvertAxisRange__MethodInfo); +DO_APP_FUNC(0x0200ED80, void, InputTools_CompareLastActiveController, (Controller * controller, Controller * * lastController, double * lastTime, MethodInfo * method)); DO_APP_FUNC(0x0200EE30, bool, InputTools_IsMappableControllerElementType, (Object * type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB99E8, InputTools_IsMappableControllerElementType__MethodInfo); DO_APP_FUNC(0x0200EFF0, bool, InputTools_IsMappableType, (ControllerElementType__Enum type, MethodInfo * method)); DO_APP_FUNC(0x0200F000, bool, InputTools_IsMappableType_1, (ControllerTemplateElementType__Enum type, MethodInfo * method)); -DO_APP_FUNC(0x0200F010, bool, InputTools_HandleForced4WayHatsOnUnknownControllers, (int32_t direction, HatType__Enum hatType, MethodInfo * method)); +DO_APP_FUNC(0x0200F010, bool, InputTools_HandleForced4WayHatsOnUnknownControllers, (int32_t direction, HatType__Enum * hatType, MethodInfo * method)); DO_APP_FUNC(0x0200F0A0, float, InputTools_AxisToDigitalValue, (float value, MethodInfo * method)); DO_APP_FUNC(0x0200F100, float, InputTools_AxisToDigitalValue_1, (float value, float threshold, MethodInfo * method)); DO_APP_FUNC(0x0200F150, int8_t, MathTools_Abs, (int8_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB99C8, MathTools_Abs__MethodInfo); DO_APP_FUNC(0x0200F1D0, int16_t, MathTools_Abs_1, (int16_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9AB0, MathTools_Abs_1__MethodInfo); DO_APP_FUNC(0x0200F250, int32_t, MathTools_Abs_2, (int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9AC8, MathTools_Abs_2__MethodInfo); DO_APP_FUNC(0x0200F2D0, int64_t, MathTools_Abs_3, (int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9A88, MathTools_Abs_3__MethodInfo); DO_APP_FUNC(0x0200F350, float, MathTools_Abs_4, (float value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9A98, MathTools_Abs_4__MethodInfo); DO_APP_FUNC(0x0200F3D0, double, MathTools_Abs_5, (double value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9A78, MathTools_Abs_5__MethodInfo); DO_APP_FUNC(0x0200F450, bool, MathTools_Approximately, (float a, float b, MethodInfo * method)); DO_APP_FUNC(0x0200F4B0, bool, MathTools_ApproximatelyZero, (float a, MethodInfo * method)); DO_APP_FUNC(0x0200F4F0, bool, MathTools_IsZero, (float value, MethodInfo * method)); @@ -49689,8 +58189,8 @@ DO_APP_FUNC(0x0200F660, bool, MathTools_IsNearZero, (float value, MethodInfo * m DO_APP_FUNC(0x0200F690, bool, MathTools_IsNearZero_1, (float value, float threshold, MethodInfo * method)); DO_APP_FUNC(0x0200F6C0, bool, MathTools_IsNearOrWholeNumber, (float value, MethodInfo * method)); DO_APP_FUNC(0x0200F740, bool, MathTools_IsNearOrWholeNumber_1, (float value, float threshold, MethodInfo * method)); -DO_APP_FUNC(0x0200F7E0, bool, MathTools_IsNearOrWholeNumber_2, (float value, int32_t number, MethodInfo * method)); -DO_APP_FUNC(0x0200F8B0, bool, MathTools_IsNearOrWholeNumber_3, (float value, int32_t number, float threshold, MethodInfo * method)); +DO_APP_FUNC(0x0200F7E0, bool, MathTools_IsNearOrWholeNumber_2, (float value, int32_t * number, MethodInfo * method)); +DO_APP_FUNC(0x0200F8B0, bool, MathTools_IsNearOrWholeNumber_3, (float value, int32_t * number, float threshold, MethodInfo * method)); DO_APP_FUNC(0x0200F990, float, MathTools_RoundOffIfNearWholeNumber, (float value, MethodInfo * method)); DO_APP_FUNC(0x0200FA80, float, MathTools_RoundOffIfNearWholeNumber_1, (float value, float threshold, MethodInfo * method)); DO_APP_FUNC(0x0200FB80, bool, MathTools_IsEven, (int32_t value, MethodInfo * method)); @@ -49812,11 +58312,11 @@ DO_APP_FUNC(0x02011290, float, MathTools_Multiply, (Vector2 a, Vector2 b, Method DO_APP_FUNC(0x020112C0, bool, MathTools_RectContains, (Rect rect, Vector2 pos, float rotation, MethodInfo * method)); DO_APP_FUNC(0x020114C0, Vector2, MathTools_RotateWorldPoint, (Vector2 point, Vector2 center, float angle, MethodInfo * method)); DO_APP_FUNC(0x020115F0, Vector2, MathTools_RotateLocalPoint, (Vector2 point, float angle, MethodInfo * method)); -DO_APP_FUNC(0x020116F0, bool, MathTools_LineIntersectsRect, (Vector2 point1, Vector2 point2, Rect rect, float sqrMagnitude, MethodInfo * method)); -DO_APP_FUNC(0x02011B10, bool, MathTools_LineSegementsIntersect, (Vector2 line1p1, Vector2 line1p2, Vector2 line2p1, Vector2 line2p2, Vector2 intersection, bool collinearIntersects, MethodInfo * method)); -DO_APP_FUNC(0x02011DC0, bool, MathTools_jbTfymnLfYHecMuaOincFHhuioZJ, (Vector2 param_0000c206, Vector2 param_0000c207, Vector2 param_0000c208, Vector2 param_0000c209, Vector2 param_0000c20a, MethodInfo * method)); +DO_APP_FUNC(0x020116F0, bool, MathTools_LineIntersectsRect, (Vector2 point1, Vector2 point2, Rect rect, float * sqrMagnitude, MethodInfo * method)); +DO_APP_FUNC(0x02011B10, bool, MathTools_LineSegementsIntersect, (Vector2 line1p1, Vector2 line1p2, Vector2 line2p1, Vector2 line2p2, Vector2 * intersection, bool collinearIntersects, MethodInfo * method)); +DO_APP_FUNC(0x02011DC0, bool, MathTools_jbTfymnLfYHecMuaOincFHhuioZJ, (Vector2 param_0000c206, Vector2 param_0000c207, Vector2 param_0000c208, Vector2 param_0000c209, Vector2 * param_0000c20a, MethodInfo * method)); DO_APP_FUNC(0x02011F00, bool, MathTools_RectContains_1, (Rect container, Rect child, MethodInfo * method)); -DO_APP_FUNC(0x02011F50, bool, MathTools_GetOffsetToContainRect, (Rect container, Rect child, Vector2 offset, MethodInfo * method)); +DO_APP_FUNC(0x02011F50, bool, MathTools_GetOffsetToContainRect, (Rect container, Rect child, Vector2 * offset, MethodInfo * method)); DO_APP_FUNC(0x02012020, Matrix4x4, MathTools_TransformTo, (Transform * from, Transform * to, MethodInfo * method)); DO_APP_FUNC(0x020121B0, Rect, MathTools_TransformRect, (Rect fromRect, Transform * from, Transform * to, MethodInfo * method)); DO_APP_FUNC(0x020125C0, Vector2, MathTools_SnapVectorToNearestAngle, (Vector2 vector, float angle, MethodInfo * method)); @@ -49839,19 +58339,26 @@ DO_APP_FUNC(0x02013880, bool, MiscTools_IsTickNewerOrEqualTo_1, (int32_t tick1, DO_APP_FUNC(0x02013930, int64_t, MiscTools_TickDifference, (uint32_t tick1, uint32_t tick2, MethodInfo * method)); DO_APP_FUNC(0x02013A40, int32_t, MiscTools_TickDifference_1, (int32_t tick1, int32_t tick2, MethodInfo * method)); DO_APP_FUNC(0x02013B50, int64_t, MiscTools_ToLongUnchecked, (Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBBB38, MiscTools_ToLongUnchecked__MethodInfo); DO_APP_FUNC(0x02013F90, bool, MiscTools_IsValidGuid, (String * guid, MethodInfo * method)); DO_APP_FUNC(0x020140B0, void, MiscTools__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02014160, void *, NativeTools_OffsetIntPtr, (void * intPtr, int32_t offset, MethodInfo * method)); DO_APP_FUNC(0x020141F0, bool, NativeTools_CopyMemory, (void * source, void * destination, int32_t sourceStartIndex, int32_t destinationStartIndex, int32_t bytesToCopy, bool throwOnError, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBBBD8, NativeTools_CopyMemory__MethodInfo); DO_APP_FUNC(0x02014750, bool, NativeTools_CopyMemory_1, (Byte__Array * source, void * destination, int32_t sourceStartIndex, int32_t destinationStartIndex, int32_t bytesToCopy, bool throwOnError, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBBBD0, NativeTools_CopyMemory_1__MethodInfo); DO_APP_FUNC(0x02014A10, bool, NativeTools_CopyMemory_2, (void * source, Byte__Array * destination, int32_t sourceStartIndex, int32_t destinationStartIndex, int32_t bytesToCopy, bool throwOnError, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBBBA8, NativeTools_CopyMemory_2__MethodInfo); DO_APP_FUNC(0x02014CD0, bool, NativeTools_FillMemory, (void * buffer, int32_t length, uint8_t value, bool throwOnError, MethodInfo * method)); DO_APP_FUNC(0x02014D00, bool, NativeTools_FillMemory_1, (void * buffer, int32_t startIndex, int32_t length, uint8_t value, bool throwOnError, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBBB80, NativeTools_FillMemory_1__MethodInfo); DO_APP_FUNC(0x02015840, bool, NativeTools_FillMemory_2, (Byte__Array * buffer, int32_t length, uint8_t value, bool throwOnError, MethodInfo * method)); DO_APP_FUNC(0x02015870, bool, NativeTools_FillMemory_3, (Byte__Array * buffer, int32_t startIndex, int32_t length, uint8_t value, bool throwOnError, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB9F8, NativeTools_FillMemory_3__MethodInfo); DO_APP_FUNC(0x02015B20, void, NativeTools_ZeroFillMemory, (void * buffer, int32_t length, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBBA08, NativeTools_ZeroFillMemory__MethodInfo); DO_APP_FUNC(0x02015E00, String *, NativeTools_DumpToString, (void * buffer, int32_t length, String * stringFormat, MethodInfo * method)); -DO_APP_FUNC(0x02016020, void, NativeTools_FreeHGlobalSafe, (void * pointer, MethodInfo * method)); +DO_APP_FUNC(0x02016020, void, NativeTools_FreeHGlobalSafe, (void * * pointer, MethodInfo * method)); DO_APP_FUNC(0x020160D0, bool, ReflectionTools_IsValueType, (Type * type, MethodInfo * method)); DO_APP_FUNC(0x0200DA80, bool, ReflectionTools_IsEnum, (Type * type, MethodInfo * method)); DO_APP_FUNC(0x02016100, Type *, ReflectionTools_GetUnderlyingEnumType, (Type * enumType, MethodInfo * method)); @@ -49873,12 +58380,15 @@ DO_APP_FUNC(0x020166C0, Type *, ReflectionTools_GetTypeInUnityEditorAssembly, (S DO_APP_FUNC(0x020166D0, Type *, ReflectionTools_GetTypeInUnityBuildAssembly, (String * classPath, bool ignoreCase, MethodInfo * method)); DO_APP_FUNC(0x020166E0, Type *, ReflectionTools_TeZwwdscQxIjaoJIcipgeqEIqnSGA, (String * param_0000c287, bool param_0000c288, bool param_0000c289, MethodInfo * method)); DO_APP_FUNC(0x020167A0, Type *, ReflectionTools_GetTypeInAssembly, (String * classPath, String * assemblyName, bool ignoreCase, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB990, ReflectionTools_GetTypeInAssembly__MethodInfo); DO_APP_FUNC(0x019BC1D0, MethodInfo_1 *, ReflectionTools_GetMethodInfo, (Delegate * delegate, MethodInfo * method)); DO_APP_FUNC(0x02016890, void, SerializationTools_WriteXmlElement, (XmlWriter * writer, String * name, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBBAD8, SerializationTools_WriteXmlElement__MethodInfo); DO_APP_FUNC(0x02016A50, void, SerializationTools_VpFbUBuTUtXLnGzZOVaHgzhOqGdi, (XmlWriter * param_0000c2a2, Object * param_0000c2a3, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB8E0, SerializationTools_VpFbUBuTUtXLnGzZOVaHgzhOqGdi__MethodInfo); DO_APP_FUNC(0x02018440, String *, SerializationTools_ReadXmlElement, (XmlReader * reader, String * name, MethodInfo * method)); -DO_APP_FUNC(0x02018510, bool, SerializationTools_TryReadXmlElement, (XmlReader * reader, String * name, String * outValue, MethodInfo * method)); -DO_APP_FUNC(0x020186A0, bool, SerializationTools_TryReadXmlStartElement, (XmlReader * reader, String * name, bool isEmpty, MethodInfo * method)); +DO_APP_FUNC(0x02018510, bool, SerializationTools_TryReadXmlElement, (XmlReader * reader, String * name, String * * outValue, MethodInfo * method)); +DO_APP_FUNC(0x020186A0, bool, SerializationTools_TryReadXmlStartElement, (XmlReader * reader, String * name, bool * isEmpty, MethodInfo * method)); DO_APP_FUNC(0x02018720, bool, SerializationTools_TryReadXmlEndElement, (XmlReader * reader, MethodInfo * method)); DO_APP_FUNC(0x02018750, String *, SerializationTools_CleanInvalidXmlChars, (String * text, MethodInfo * method)); DO_APP_FUNC(0x02018830, String *, StringTools_ToString, (Int32__Array * inArray, MethodInfo * method)); @@ -49914,7 +58424,8 @@ DO_APP_FUNC(0x0201A880, String *, StringTools_TimeToString_1, (float seconds, Me DO_APP_FUNC(0x0201AC10, void, StringTools__cctor, (MethodInfo * method)); DO_APP_FUNC(0x0201ADA0, String *, StringTools_CleanUpFileName, (String * name, MethodInfo * method)); DO_APP_FUNC(0x0201AEB0, String *, StringTools_StripTrailingNumbers, (String * name, MethodInfo * method)); -DO_APP_FUNC(0x0201AF10, String *, StringTools_StripTrailingNumbers_1, (String * name, int32_t number, MethodInfo * method)); +DO_APP_FUNC(0x0201AF10, String *, StringTools_StripTrailingNumbers_1, (String * name, int32_t * number, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB7F8, StringTools_StripTrailingNumbers_1__MethodInfo); DO_APP_FUNC(0x0201B0B0, String *, StringTools_VerifyName, (String * name, int32_t indexInNameList, String__Array * names, bool cleanUpIllegalFileChars, MethodInfo * method)); DO_APP_FUNC(0x0201B140, String *, StringTools_VerifyName_1, (String * name, int32_t indexInNameList, String__Array * names, bool cleanUpIllegalFileChars, bool allowBlank, MethodInfo * method)); DO_APP_FUNC(0x0201B430, String *, StringTools_IterateName, (String * name, int32_t indexInNameList, String__Array * names, MethodInfo * method)); @@ -49975,7 +58486,7 @@ DO_APP_FUNC(0x0201E960, bool, UnityTools_BlDBjkfpRrPGhkgPEEVcbFaSKRMJ, (MethodIn DO_APP_FUNC(0x0201ECF0, void, UnityTools_LIeljCbdoWdgBAecluMnblrpCnHu, (UnityTools_KWAChOGmLimSYBqZwRDWzfpjEptmA param_0000c30c, MethodInfo * method)); DO_APP_FUNC(0x003CB690, WebplayerPlatform__Enum, UnityTools_DetermineWebplayerPlatformType, (Platform__Enum platform, EditorPlatform__Enum editorPlatform, MethodInfo * method)); DO_APP_FUNC(0x0201F000, bool, UnityTools_IsUnityVersionInRange, (String * minVersionStr, String * maxVersionStr, MethodInfo * method)); -DO_APP_FUNC(0x0201F4A0, bool, UnityTools_DIfqLBDrdRsRWrDMsgeayCnUTXFA, (String * param_0000c311, int32_t param_0000c312, MethodInfo * method)); +DO_APP_FUNC(0x0201F4A0, bool, UnityTools_DIfqLBDrdRsRWrDMsgeayCnUTXFA, (String * param_0000c311, int32_t * param_0000c312, MethodInfo * method)); DO_APP_FUNC(0x0201F5B0, void, UnityTools_uMbumxDBrndlmvQqLmxpHqusGebe, (MethodInfo * method)); DO_APP_FUNC(0x0201F700, UnityTools_UnityVersion__Enum, UnityTools_CiYLBtgohHiPTmJAWfOWLRSgGwQg, (String * param_0000c313, MethodInfo * method)); DO_APP_FUNC(0x020203E0, UnityTools_UnityVersion__Enum, UnityTools_LqJrefbcGdQzNyQWcQRzaMRPKsAN, (int32_t param_0000c314, MethodInfo * method)); @@ -50007,26 +58518,47 @@ DO_APP_FUNC(0x02023710, List_1_UnityEngine_Component_ *, UnityTools_GetComponent DO_APP_FUNC(0x02023900, List_1_UnityEngine_Component_ *, UnityTools_GetComponents_4, (Component * component, Type * type, bool includeInactive, MethodInfo * method)); DO_APP_FUNC(0x02023AF0, List_1_UnityEngine_Component_ *, UnityTools_GetComponents_5, (GameObject * gameObject, Type * type, bool includeInactive, MethodInfo * method)); DO_APP_FUNC(0x02023D10, List_1_UnityEngine_Component_ *, UnityTools_GetComponentsInChildren, (Transform * transform, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB6E8, UnityTools_GetComponentsInChildren__MethodInfo); DO_APP_FUNC(0x02023FB0, List_1_UnityEngine_Component_ *, UnityTools_GetComponentsInChildren_1, (Component * component, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB6F0, UnityTools_GetComponentsInChildren_1__MethodInfo); DO_APP_FUNC(0x02024170, List_1_UnityEngine_Component_ *, UnityTools_GetComponentsInChildren_2, (GameObject * gameObject, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB6A8, UnityTools_GetComponentsInChildren_2__MethodInfo); DO_APP_FUNC(0x02024330, List_1_UnityEngine_Component_ *, UnityTools_GetComponentsInParents, (Transform * transform, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB6A0, UnityTools_GetComponentsInParents__MethodInfo); DO_APP_FUNC(0x02024620, List_1_UnityEngine_Component_ *, UnityTools_GetComponentsInParents_1, (Component * component, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB690, UnityTools_GetComponentsInParents_1__MethodInfo); DO_APP_FUNC(0x020247E0, List_1_UnityEngine_Component_ *, UnityTools_GetComponentsInParents_2, (GameObject * gameObject, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB698, UnityTools_GetComponentsInParents_2__MethodInfo); DO_APP_FUNC(0x020249A0, int32_t, UnityTools_GetComponents_6, (Transform * transform, List_1_UnityEngine_Component_ * results, bool append, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB688, UnityTools_GetComponents_6__MethodInfo); DO_APP_FUNC(0x02024B80, int32_t, UnityTools_GetComponents_7, (Component * component, List_1_UnityEngine_Component_ * results, bool append, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB6D8, UnityTools_GetComponents_7__MethodInfo); DO_APP_FUNC(0x02024D60, int32_t, UnityTools_GetComponents_8, (GameObject * gameObject, List_1_UnityEngine_Component_ * results, bool append, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB6C8, UnityTools_GetComponents_8__MethodInfo); DO_APP_FUNC(0x020251E0, int32_t, UnityTools_GetComponents_9, (Transform * transform, Type * type, List_1_UnityEngine_Component_ * results, bool append, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB6B8, UnityTools_GetComponents_9__MethodInfo); DO_APP_FUNC(0x020253E0, int32_t, UnityTools_GetComponents_10, (Component * component, Type * type, List_1_UnityEngine_Component_ * results, bool append, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB6C0, UnityTools_GetComponents_10__MethodInfo); DO_APP_FUNC(0x020255E0, int32_t, UnityTools_GetComponents_11, (GameObject * gameObject, Type * type, List_1_UnityEngine_Component_ * results, bool append, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB6B0, UnityTools_GetComponents_11__MethodInfo); DO_APP_FUNC(0x02025AB0, int32_t, UnityTools_GetComponentsInSelfAndChildren, (Transform * transform, List_1_UnityEngine_Component_ * results, bool append, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB660, UnityTools_GetComponentsInSelfAndChildren__MethodInfo); DO_APP_FUNC(0x02026020, int32_t, UnityTools_GetComponentsInSelfAndChildren_1, (Component * component, List_1_UnityEngine_Component_ * results, bool append, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB658, UnityTools_GetComponentsInSelfAndChildren_1__MethodInfo); DO_APP_FUNC(0x02026200, int32_t, UnityTools_GetComponentsInSelfAndChildren_2, (GameObject * gameObject, List_1_UnityEngine_Component_ * results, bool append, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB648, UnityTools_GetComponentsInSelfAndChildren_2__MethodInfo); DO_APP_FUNC(0x020263E0, int32_t, UnityTools_GetComponentsInChildren_3, (Transform * transform, List_1_UnityEngine_Component_ * results, bool append, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB650, UnityTools_GetComponentsInChildren_3__MethodInfo); DO_APP_FUNC(0x020266D0, int32_t, UnityTools_GetComponentsInChildren_4, (Component * component, List_1_UnityEngine_Component_ * results, bool append, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB640, UnityTools_GetComponentsInChildren_4__MethodInfo); DO_APP_FUNC(0x020268B0, int32_t, UnityTools_GetComponentsInChildren_5, (GameObject * gameObject, List_1_UnityEngine_Component_ * results, bool append, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB680, UnityTools_GetComponentsInChildren_5__MethodInfo); DO_APP_FUNC(0x02026A90, int32_t, UnityTools_GetComponentsInParents_3, (Transform * transform, List_1_UnityEngine_Component_ * results, bool append, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB670, UnityTools_GetComponentsInParents_3__MethodInfo); DO_APP_FUNC(0x02026C70, int32_t, UnityTools_GetComponentsInParents_4, (Component * component, List_1_UnityEngine_Component_ * results, bool append, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB678, UnityTools_GetComponentsInParents_4__MethodInfo); DO_APP_FUNC(0x02026E50, int32_t, UnityTools_GetComponentsInParents_5, (GameObject * gameObject, List_1_UnityEngine_Component_ * results, bool append, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB668, UnityTools_GetComponentsInParents_5__MethodInfo); DO_APP_FUNC(0x02027240, bool, UnityTools_IsEnabled, (Component * component, MethodInfo * method)); DO_APP_FUNC(0x020274A0, bool, UnityTools_IsActiveAndEnabled, (Component * component, MethodInfo * method)); DO_APP_FUNC(0x020277A0, Object_1 *, UnityTools_Instantiate, (Object_1 * original, Transform * parent, bool instantiateInWorldSpace, MethodInfo * method)); @@ -50050,10 +58582,11 @@ DO_APP_FUNC(0x0202A260, bool, UnityTools_IsNullOrDestroyed, (Object * object, Me DO_APP_FUNC(0x0202A400, ButtonStateFlags__Enum, UnityTools_hvNfzOWOJwCJgiOjkZpjgdGQhlDN, (KeyCode__Enum param_0000c44c, MethodInfo * method)); DO_APP_FUNC(0x0202A510, ButtonStateFlags__Enum, UnityTools_mqqZdClMIxtIoXjjFJzbegObqNYJ, (String * param_0000c44d, MethodInfo * method)); DO_APP_FUNC(0x0202A620, void, UnityTools__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x0202A660, void, UnityTools_KWAChOGmLimSYBqZwRDWzfpjEptmA__ctor, (UnityTools_KWAChOGmLimSYBqZwRDWzfpjEptmA__Boxed * __this, Platform__Enum param_0000c44e, Platform__Enum param_0000c44f, EditorPlatform__Enum param_0000c450, bool param_0000c451, WebplayerPlatform__Enum param_0000c452, ScriptingBackend__Enum param_0000c453, ScriptingAPILevel__Enum param_0000c454, IExternalTools * param_0000c455, MethodInfo * method)); +DO_APP_FUNC(0x0202A660, void, UnityTools_KWAChOGmLimSYBqZwRDWzfpjEptmA__ctor, (UnityTools_KWAChOGmLimSYBqZwRDWzfpjEptmA * __this, Platform__Enum param_0000c44e, Platform__Enum param_0000c44f, EditorPlatform__Enum param_0000c450, bool param_0000c451, WebplayerPlatform__Enum param_0000c452, ScriptingBackend__Enum param_0000c453, ScriptingAPILevel__Enum param_0000c454, IExternalTools * param_0000c455, MethodInfo * method)); DO_APP_FUNC(0x0202A6E0, void, UnityTools_UnityVersionClass__ctor, (UnityTools_UnityVersionClass * __this, String * param_0000c456, MethodInfo * method)); DO_APP_FUNC(0x0202AA80, String *, UnityTools_UnityVersionClass_ToString, (UnityTools_UnityVersionClass * __this, MethodInfo * method)); DO_APP_FUNC(0x0202AFA0, String *, UnityTools_UnityVersionClass_iKGmdQTiqORUBqNZQNCPmXDVmUYG, (UnityTools_UnityVersionClass * __this, UnityTools_UnityVersionClass_glaDNmAmAoVpJEKrdTjTLKRZNScgA__Enum param_0000c457, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB620, UnityTools_UnityVersionClass_iKGmdQTiqORUBqNZQNCPmXDVmUYG__MethodInfo); DO_APP_FUNC(0x0202B070, bool, UnityTools_UnityVersionClass_Equals, (UnityTools_UnityVersionClass * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x019819D0, int32_t, UnityTools_UnityVersionClass_GetHashCode, (UnityTools_UnityVersionClass * __this, MethodInfo * method)); DO_APP_FUNC(0x0202B1E0, bool, UnityTools_UnityVersionClass_op_LessThan, (UnityTools_UnityVersionClass * a, UnityTools_UnityVersionClass * b, MethodInfo * method)); @@ -50065,36 +58598,38 @@ DO_APP_FUNC(0x0202B560, bool, UnityTools_UnityVersionClass_op_Inequality, (Unity DO_APP_FUNC(0x0202B610, int32_t, UnityTools_UnityVersionClass_Comparison, (UnityTools_UnityVersionClass * a, UnityTools_UnityVersionClass * b, MethodInfo * method)); DO_APP_FUNC(0x0202B6D0, bool, UnityTools_UnityVersionClass_IsValidVersionString, (String * versionString, MethodInfo * method)); DO_APP_FUNC(0x0202B8D0, int32_t, UnityTools_UnityVersionClass_RLhogcPWbmatCIChbrIiPmpLmPzD, (UnityTools_UnityVersionClass_glaDNmAmAoVpJEKrdTjTLKRZNScgA__Enum param_0000c468, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB608, UnityTools_UnityVersionClass_RLhogcPWbmatCIChbrIiPmpLmPzD__MethodInfo); DO_APP_FUNC(0x0202B950, bool, VMLJRlNegYHbCiCRxBNeWlBQKGKz_CwfsiIOGSFUegSdUcQsbCQhfhCXIA, (int32_t param_0000c4a5, MethodInfo * method)); DO_APP_FUNC(0x0202BA00, int32_t, VMLJRlNegYHbCiCRxBNeWlBQKGKz_cfyObUSxQZaYHmANrLsNJQroKmsh, (int32_t param_0000c4a6, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB508, VMLJRlNegYHbCiCRxBNeWlBQKGKz_cfyObUSxQZaYHmANrLsNJQroKmsh__MethodInfo); DO_APP_FUNC(0x0202BC30, int32_t, VMLJRlNegYHbCiCRxBNeWlBQKGKz_gPbeATnjmfFQPgGZLVXVRHrChdjTA, (MethodInfo * method)); DO_APP_FUNC(0x0202BCA0, int32_t, VMLJRlNegYHbCiCRxBNeWlBQKGKz_WDTCIRJEdLCNcrHGjljxPRLlUZUl, (int32_t param_0000c4a7, MethodInfo * method)); DO_APP_FUNC(0x0202BD20, void, VMLJRlNegYHbCiCRxBNeWlBQKGKz__cctor, (MethodInfo * method)); DO_APP_FUNC(0x0202BE00, bool, PlatformTools_IsSysVersionInRange, (String * min, String * max, MethodInfo * method)); DO_APP_FUNC(0x0202BFB0, Object *, Factory_CreateInstance, (Type * type, Object__Array * args, MethodInfo * method)); DO_APP_FUNC(0x0202C110, lYCsvqTFjFVfIgNtCCiGGqNkZigi, lYCsvqTFjFVfIgNtCCiGGqNkZigi_RjWIqygyejeVNIzJBKgBZhRbvFof, (MethodInfo * method)); -DO_APP_FUNC(0x003CAFE0, void, lYCsvqTFjFVfIgNtCCiGGqNkZigi__ctor, (lYCsvqTFjFVfIgNtCCiGGqNkZigi__Boxed * __this, float param_0000c4ac, float param_0000c4ad, float param_0000c4ae, float param_0000c4af, MethodInfo * method)); +DO_APP_FUNC(0x003CAFE0, void, lYCsvqTFjFVfIgNtCCiGGqNkZigi__ctor, (lYCsvqTFjFVfIgNtCCiGGqNkZigi * __this, float param_0000c4ac, float param_0000c4ad, float param_0000c4ae, float param_0000c4af, MethodInfo * method)); DO_APP_FUNC(0x0202C130, lYCsvqTFjFVfIgNtCCiGGqNkZigi, lYCsvqTFjFVfIgNtCCiGGqNkZigi_egsgTyhwVqGJYkCBfFJmWlIUfHaV, (float param_0000c4b0, float param_0000c4b1, float param_0000c4b2, float param_0000c4b3, MethodInfo * method)); -DO_APP_FUNC(0x003CAFE0, void, lYCsvqTFjFVfIgNtCCiGGqNkZigi_kIkezWISFZiNZPpmTjWSviJqCHRq, (lYCsvqTFjFVfIgNtCCiGGqNkZigi__Boxed * __this, float param_0000c4b4, float param_0000c4b5, float param_0000c4b6, float param_0000c4b7, MethodInfo * method)); +DO_APP_FUNC(0x003CAFE0, void, lYCsvqTFjFVfIgNtCCiGGqNkZigi_kIkezWISFZiNZPpmTjWSviJqCHRq, (lYCsvqTFjFVfIgNtCCiGGqNkZigi * __this, float param_0000c4b4, float param_0000c4b5, float param_0000c4b6, float param_0000c4b7, MethodInfo * method)); DO_APP_FUNC(0x0202C1F0, lYCsvqTFjFVfIgNtCCiGGqNkZigi, lYCsvqTFjFVfIgNtCCiGGqNkZigi_RLbXDBkJTKpnazTzcDHBogGtUkSn, (lYCsvqTFjFVfIgNtCCiGGqNkZigi param_0000c4b8, lYCsvqTFjFVfIgNtCCiGGqNkZigi param_0000c4b9, MethodInfo * method)); -DO_APP_FUNC(0x0202C2E0, void, lYCsvqTFjFVfIgNtCCiGGqNkZigi_ZhtLPfUBfJDwjhDClhGaYdHWKIHzA, (lYCsvqTFjFVfIgNtCCiGGqNkZigi__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0202C390, lYCsvqTFjFVfIgNtCCiGGqNkZigi, lYCsvqTFjFVfIgNtCCiGGqNkZigi_tFPimVdsqNmZtGMkltBUEvYktLWyA, (lYCsvqTFjFVfIgNtCCiGGqNkZigi__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0202C3C0, void, lYCsvqTFjFVfIgNtCCiGGqNkZigi_bKrLcqUdqRviWoExkNBicNJhfzVj, (lYCsvqTFjFVfIgNtCCiGGqNkZigi__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0202C3F0, lYCsvqTFjFVfIgNtCCiGGqNkZigi, lYCsvqTFjFVfIgNtCCiGGqNkZigi_CwbdYxjKpMeNxPnvkMubthoudblt, (lYCsvqTFjFVfIgNtCCiGGqNkZigi__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0202C2E0, void, lYCsvqTFjFVfIgNtCCiGGqNkZigi_ZhtLPfUBfJDwjhDClhGaYdHWKIHzA, (lYCsvqTFjFVfIgNtCCiGGqNkZigi * __this, MethodInfo * method)); +DO_APP_FUNC(0x0202C390, lYCsvqTFjFVfIgNtCCiGGqNkZigi, lYCsvqTFjFVfIgNtCCiGGqNkZigi_tFPimVdsqNmZtGMkltBUEvYktLWyA, (lYCsvqTFjFVfIgNtCCiGGqNkZigi * __this, MethodInfo * method)); +DO_APP_FUNC(0x0202C3C0, void, lYCsvqTFjFVfIgNtCCiGGqNkZigi_bKrLcqUdqRviWoExkNBicNJhfzVj, (lYCsvqTFjFVfIgNtCCiGGqNkZigi * __this, MethodInfo * method)); +DO_APP_FUNC(0x0202C3F0, lYCsvqTFjFVfIgNtCCiGGqNkZigi, lYCsvqTFjFVfIgNtCCiGGqNkZigi_CwbdYxjKpMeNxPnvkMubthoudblt, (lYCsvqTFjFVfIgNtCCiGGqNkZigi * __this, MethodInfo * method)); DO_APP_FUNC(0x00976FA0, QeeoSydAJKtvhuMHtIdMCGTRHBDhA, QeeoSydAJKtvhuMHtIdMCGTRHBDhA_FWRdbdpAtNRvRJwCiyBKDfmDiJMv, (MethodInfo * method)); -DO_APP_FUNC(0x003CAFD0, void, QeeoSydAJKtvhuMHtIdMCGTRHBDhA__ctor, (QeeoSydAJKtvhuMHtIdMCGTRHBDhA__Boxed * __this, float param_0000c4ba, float param_0000c4bb, float param_0000c4bc, MethodInfo * method)); -DO_APP_FUNC(0x003CAFD0, void, QeeoSydAJKtvhuMHtIdMCGTRHBDhA_kIkezWISFZiNZPpmTjWSviJqCHRq, (QeeoSydAJKtvhuMHtIdMCGTRHBDhA__Boxed * __this, float param_0000c4bd, float param_0000c4be, float param_0000c4bf, MethodInfo * method)); -DO_APP_FUNC(0x0202C430, float, QeeoSydAJKtvhuMHtIdMCGTRHBDhA_RZoEDRCjcpWFATClgnAAfctKLZbIB, (QeeoSydAJKtvhuMHtIdMCGTRHBDhA__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0202C460, void, QeeoSydAJKtvhuMHtIdMCGTRHBDhA_ZhtLPfUBfJDwjhDClhGaYdHWKIHzA, (QeeoSydAJKtvhuMHtIdMCGTRHBDhA__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0202C4D0, QeeoSydAJKtvhuMHtIdMCGTRHBDhA, QeeoSydAJKtvhuMHtIdMCGTRHBDhA_tFPimVdsqNmZtGMkltBUEvYktLWyA, (QeeoSydAJKtvhuMHtIdMCGTRHBDhA__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x003CAFD0, void, QeeoSydAJKtvhuMHtIdMCGTRHBDhA__ctor, (QeeoSydAJKtvhuMHtIdMCGTRHBDhA * __this, float param_0000c4ba, float param_0000c4bb, float param_0000c4bc, MethodInfo * method)); +DO_APP_FUNC(0x003CAFD0, void, QeeoSydAJKtvhuMHtIdMCGTRHBDhA_kIkezWISFZiNZPpmTjWSviJqCHRq, (QeeoSydAJKtvhuMHtIdMCGTRHBDhA * __this, float param_0000c4bd, float param_0000c4be, float param_0000c4bf, MethodInfo * method)); +DO_APP_FUNC(0x0202C430, float, QeeoSydAJKtvhuMHtIdMCGTRHBDhA_RZoEDRCjcpWFATClgnAAfctKLZbIB, (QeeoSydAJKtvhuMHtIdMCGTRHBDhA * __this, MethodInfo * method)); +DO_APP_FUNC(0x0202C460, void, QeeoSydAJKtvhuMHtIdMCGTRHBDhA_ZhtLPfUBfJDwjhDClhGaYdHWKIHzA, (QeeoSydAJKtvhuMHtIdMCGTRHBDhA * __this, MethodInfo * method)); +DO_APP_FUNC(0x0202C4D0, QeeoSydAJKtvhuMHtIdMCGTRHBDhA, QeeoSydAJKtvhuMHtIdMCGTRHBDhA_tFPimVdsqNmZtGMkltBUEvYktLWyA, (QeeoSydAJKtvhuMHtIdMCGTRHBDhA * __this, MethodInfo * method)); DO_APP_FUNC(0x0202C500, QeeoSydAJKtvhuMHtIdMCGTRHBDhA, QeeoSydAJKtvhuMHtIdMCGTRHBDhA_zHzihznKALrJIhmbTaTwCHebbeFx, (QeeoSydAJKtvhuMHtIdMCGTRHBDhA param_0000c4c0, QeeoSydAJKtvhuMHtIdMCGTRHBDhA param_0000c4c1, MethodInfo * method)); DO_APP_FUNC(0x0202C540, QeeoSydAJKtvhuMHtIdMCGTRHBDhA, QeeoSydAJKtvhuMHtIdMCGTRHBDhA_SPftZOuPaGmOzfnUFSSbvtdblJdg, (QeeoSydAJKtvhuMHtIdMCGTRHBDhA param_0000c4c2, QeeoSydAJKtvhuMHtIdMCGTRHBDhA param_0000c4c3, MethodInfo * method)); DO_APP_FUNC(0x0202C580, QeeoSydAJKtvhuMHtIdMCGTRHBDhA, QeeoSydAJKtvhuMHtIdMCGTRHBDhA_RLbXDBkJTKpnazTzcDHBogGtUkSn, (QeeoSydAJKtvhuMHtIdMCGTRHBDhA param_0000c4c4, float param_0000c4c5, MethodInfo * method)); DO_APP_FUNC(0x0202C5B0, QeeoSydAJKtvhuMHtIdMCGTRHBDhA, QeeoSydAJKtvhuMHtIdMCGTRHBDhA_NiEYcSAZcIbkeQImpRgGQSrHSROR, (QeeoSydAJKtvhuMHtIdMCGTRHBDhA param_0000c4c6, float param_0000c4c7, MethodInfo * method)); DO_APP_FUNC(0x0202C5E0, QeeoSydAJKtvhuMHtIdMCGTRHBDhA, QeeoSydAJKtvhuMHtIdMCGTRHBDhA_RLbXDBkJTKpnazTzcDHBogGtUkSn_1, (QeeoSydAJKtvhuMHtIdMCGTRHBDhA param_0000c4c8, lYCsvqTFjFVfIgNtCCiGGqNkZigi param_0000c4c9, MethodInfo * method)); DO_APP_FUNC(0x0202C7D0, QeeoSydAJKtvhuMHtIdMCGTRHBDhA, QeeoSydAJKtvhuMHtIdMCGTRHBDhA_vVGqLbtcBFNgTMpIbRmmwSpMbFKu, (QeeoSydAJKtvhuMHtIdMCGTRHBDhA param_0000c4ca, MethodInfo * method)); -DO_APP_FUNC(0x0202C810, float, QeeoSydAJKtvhuMHtIdMCGTRHBDhA_NDafttckDIzBSguFtQiILQykbHhm, (QeeoSydAJKtvhuMHtIdMCGTRHBDhA__Boxed * __this, QeeoSydAJKtvhuMHtIdMCGTRHBDhA param_0000c4cb, MethodInfo * method)); -DO_APP_FUNC(0x0202C840, QeeoSydAJKtvhuMHtIdMCGTRHBDhA, QeeoSydAJKtvhuMHtIdMCGTRHBDhA_yTiFExJcdGseCXeyeYJAeOUpveph, (QeeoSydAJKtvhuMHtIdMCGTRHBDhA__Boxed * __this, QeeoSydAJKtvhuMHtIdMCGTRHBDhA param_0000c4cc, MethodInfo * method)); +DO_APP_FUNC(0x0202C810, float, QeeoSydAJKtvhuMHtIdMCGTRHBDhA_NDafttckDIzBSguFtQiILQykbHhm, (QeeoSydAJKtvhuMHtIdMCGTRHBDhA * __this, QeeoSydAJKtvhuMHtIdMCGTRHBDhA param_0000c4cb, MethodInfo * method)); +DO_APP_FUNC(0x0202C840, QeeoSydAJKtvhuMHtIdMCGTRHBDhA, QeeoSydAJKtvhuMHtIdMCGTRHBDhA_yTiFExJcdGseCXeyeYJAeOUpveph, (QeeoSydAJKtvhuMHtIdMCGTRHBDhA * __this, QeeoSydAJKtvhuMHtIdMCGTRHBDhA param_0000c4cc, MethodInfo * method)); DO_APP_FUNC(0x0202C8A0, void, RUoxfUsVQBUZAcCaSatDwXuLMxtb__ctor, (RUoxfUsVQBUZAcCaSatDwXuLMxtb * __this, MethodInfo * method)); DO_APP_FUNC(0x0202C950, void, RUoxfUsVQBUZAcCaSatDwXuLMxtb_DiSEicMGRLeyYCcOOCJVXiKUImDxA, (RUoxfUsVQBUZAcCaSatDwXuLMxtb * __this, MethodInfo * method)); DO_APP_FUNC(0x0202C970, void, RUoxfUsVQBUZAcCaSatDwXuLMxtb_XUYlHArjcZHIIZmMQVtfQqgGDltj, (RUoxfUsVQBUZAcCaSatDwXuLMxtb * __this, float param_0000c4cd, float param_0000c4ce, float param_0000c4cf, float param_0000c4d0, float param_0000c4d1, float param_0000c4d2, float param_0000c4d3, float param_0000c4d4, MethodInfo * method)); @@ -50102,8 +58637,8 @@ DO_APP_FUNC(0x003AE050, void, SerializeAttribute__ctor, (SerializeAttribute * __ DO_APP_FUNC(0x003AE050, void, DoNotSerializeAttribute__ctor, (DoNotSerializeAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x0202D390, Object *, JsonParser_FromJson, (Type * type, String * json, MethodInfo * method)); DO_APP_FUNC(0x0202D400, Object *, JsonParser_FromJson_1, (Type * type, String * json, Type * preferredAnonymousObjectType, MethodInfo * method)); -DO_APP_FUNC(0x0202D5F0, Object *, JsonParser_fYQwrxSUTjNVNNWHknPmGPxcGtAi, (Type * param_0000c4e3, String * param_0000c4e4, Type * param_0000c4e5, bool param_0000c4e6, MethodInfo * method)); -DO_APP_FUNC(0x0202EB50, Object *, JsonParser_kgxPUfkmVmrecqMSZYeoIemjjOXl, (String * param_0000c4e7, Type * param_0000c4e8, bool param_0000c4e9, MethodInfo * method)); +DO_APP_FUNC(0x0202D5F0, Object *, JsonParser_fYQwrxSUTjNVNNWHknPmGPxcGtAi, (Type * param_0000c4e3, String * param_0000c4e4, Type * param_0000c4e5, bool * param_0000c4e6, MethodInfo * method)); +DO_APP_FUNC(0x0202EB50, Object *, JsonParser_kgxPUfkmVmrecqMSZYeoIemjjOXl, (String * param_0000c4e7, Type * param_0000c4e8, bool * param_0000c4e9, MethodInfo * method)); DO_APP_FUNC(0x0202F9A0, Object *, JsonParser_fWjgDIIPVHrDpqMLtDiYOIqHnGyh, (Type * param_0000c4ea, String * param_0000c4eb, Type * param_0000c4ec, MethodInfo * method)); DO_APP_FUNC(0x02030470, int32_t, JsonParser_TlPwQsXFLJHyZNFsbBCAaMPivKnLA, (bool param_0000c4ed, int32_t param_0000c4ee, String * param_0000c4ef, MethodInfo * method)); DO_APP_FUNC(0x020306D0, List_1_System_String_ *, JsonParser_unJKSYSdSWSsMZdAJinBgLyYMPcJ, (String * param_0000c4f0, MethodInfo * method)); @@ -50111,12 +58646,17 @@ DO_APP_FUNC(0x02030B00, void, JsonParser__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02030E40, void, JsonParser_asoaGjfgLgOvekMIUjTqwSYAcxOd__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, JsonParser_asoaGjfgLgOvekMIUjTqwSYAcxOd__ctor, (JsonParser_asoaGjfgLgOvekMIUjTqwSYAcxOd * __this, MethodInfo * method)); DO_APP_FUNC(0x02030EF0, bool, JsonParser_asoaGjfgLgOvekMIUjTqwSYAcxOd_KuCgRdrGoKZAgjDfiKkAqdCtxdhm, (JsonParser_asoaGjfgLgOvekMIUjTqwSYAcxOd * __this, FieldInfo_1 * param_0000c4f1, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB4A8, JsonParser_asoaGjfgLgOvekMIUjTqwSYAcxOd_KuCgRdrGoKZAgjDfiKkAqdCtxdhm__MethodInfo); DO_APP_FUNC(0x020310D0, String *, JsonParser_asoaGjfgLgOvekMIUjTqwSYAcxOd_mfFWSpSVJIFSdIihhxLgaIPaeUnm, (JsonParser_asoaGjfgLgOvekMIUjTqwSYAcxOd * __this, FieldInfo_1 * param_0000c4f2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB4C0, JsonParser_asoaGjfgLgOvekMIUjTqwSYAcxOd_mfFWSpSVJIFSdIihhxLgaIPaeUnm__MethodInfo); DO_APP_FUNC(0x02031260, bool, JsonParser_asoaGjfgLgOvekMIUjTqwSYAcxOd_JVnClzlekFDyDvPgRtgNmgTpuYdk, (JsonParser_asoaGjfgLgOvekMIUjTqwSYAcxOd * __this, PropertyInfo_1 * param_0000c4f3, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB3B0, JsonParser_asoaGjfgLgOvekMIUjTqwSYAcxOd_JVnClzlekFDyDvPgRtgNmgTpuYdk__MethodInfo); DO_APP_FUNC(0x02031390, String *, JsonParser_asoaGjfgLgOvekMIUjTqwSYAcxOd_kLdtntNdHRlHIQdpnjXfoAODNAgx, (JsonParser_asoaGjfgLgOvekMIUjTqwSYAcxOd * __this, PropertyInfo_1 * param_0000c4f4, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB4A0, JsonParser_asoaGjfgLgOvekMIUjTqwSYAcxOd_kLdtntNdHRlHIQdpnjXfoAODNAgx__MethodInfo); DO_APP_FUNC(0x02031520, Action_2_System_Text_StringBuilder_Object_ *, JsonWriter_KSXVIiBamWOZJbDCuPcaAvhTxMme, (MethodInfo * method)); DO_APP_FUNC(0x02031620, String *, JsonWriter_ToJson, (Object * item, MethodInfo * method)); DO_APP_FUNC(0x020316B0, void, JsonWriter_eHNQwPLyrcBIYepCgdzyArbshIyaA, (StringBuilder * param_0000c4f6, Object * param_0000c4f7, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB338, JsonWriter_eHNQwPLyrcBIYepCgdzyArbshIyaA__MethodInfo); DO_APP_FUNC(0x00A89090, bool, CodeHelper_Equals, (CodeHelper * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x019819D0, int32_t, CodeHelper_GetHashCode, (CodeHelper * __this, MethodInfo * method)); DO_APP_FUNC(0x01A6F6D0, String *, CodeHelper_ToString, (CodeHelper * __this, MethodInfo * method)); @@ -50125,6 +58665,7 @@ DO_APP_FUNC(0x02032EB0, int32_t, SerializedMethod_get_DataCount, (SerializedMeth DO_APP_FUNC(0x01723480, TypeWrapper, SerializedMethod_get_Result, (SerializedMethod * __this, MethodInfo * method)); DO_APP_FUNC(0x00436BD0, bool, SerializedMethod_get_ResultIsValid, (SerializedMethod * __this, MethodInfo * method)); DO_APP_FUNC(0x02032F00, TypeWrapper, SerializedMethod_GetData, (SerializedMethod * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB358, SerializedMethod_GetData__MethodInfo); DO_APP_FUNC(0x02033010, void, SerializedMethod_AddData, (SerializedMethod * __this, uint8_t item, MethodInfo * method)); DO_APP_FUNC(0x020330B0, void, SerializedMethod_AddData_1, (SerializedMethod * __this, int8_t item, MethodInfo * method)); DO_APP_FUNC(0x02033150, void, SerializedMethod_AddData_2, (SerializedMethod * __this, uint16_t item, MethodInfo * method)); @@ -50181,8 +58722,8 @@ DO_APP_FUNC(0x02034470, bool, FrameTimer_XUYlHArjcZHIIZmMQVtfQqgGDltj, (FrameTim DO_APP_FUNC(0x020344D0, void, FrameTimer_sjgQXMMRIHmhSmDrVpgFKxoFoOIy, (FrameTimer * __this, MethodInfo * method)); DO_APP_FUNC(0x02033FC0, void, FrameTimer_ZySoHyOUHZCFXeUPuLeOLNzGVKQq, (FrameTimer * __this, double param_0000c516, MethodInfo * method)); DO_APP_FUNC(0x020344E0, FrameTimer *, FrameTimer_ZVfpcIxdYEVJzInzMIFrDENQKTOC, (FrameTimer * __this, MethodInfo * method)); -DO_APP_FUNC(0x02034560, void, Locker__ctor, (Locker__Boxed * __this, Object * param_0000c517, MethodInfo * method)); -DO_APP_FUNC(0x020345D0, void, Locker_Dispose, (Locker__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02034560, void, Locker__ctor, (Locker * __this, Object * param_0000c517, MethodInfo * method)); +DO_APP_FUNC(0x020345D0, void, Locker_Dispose, (Locker * __this, MethodInfo * method)); DO_APP_FUNC(0x02034640, ThreadHelper_1 *, ThreadHelper_1_Create, (bool fixedTimeStep, int32_t fixedTimeStepFPS, bool useHighPrecisionTimer, int32_t timeoutMS, MethodInfo * method)); DO_APP_FUNC(0x020346E0, ThreadHelper_1 *, ThreadHelper_1_CreateFixedTimeStep, (int32_t timeStepFPS, int32_t timeoutMS, MethodInfo * method)); DO_APP_FUNC(0x020346F0, ThreadHelper_1 *, ThreadHelper_1_CreateFixedTimeStep_1, (int32_t timeStepFPS, bool useHighPrecisionTimer, int32_t timeoutMS, MethodInfo * method)); @@ -50216,6 +58757,7 @@ DO_APP_FUNC(0x02035720, bool, ThreadHelper_1_InvokeActionSync, (ThreadHelper_1 * DO_APP_FUNC(0x02035760, void, ThreadHelper_1_WaitForActionQueueToFinish, (ThreadHelper_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02035970, void, ThreadHelper_1_ResetTimeout, (ThreadHelper_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x020359C0, void, ThreadHelper_1_hBNWzEAqQiHyQJALPYobAYTznxTC, (ThreadHelper_1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB170, ThreadHelper_1_hBNWzEAqQiHyQJALPYobAYTznxTC__MethodInfo); DO_APP_FUNC(0x020360E0, void, ThreadHelper_1_NUIWlXxjUpKJRiHfSFlqHbBOinaL, (ThreadHelper_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02036330, void, ThreadHelper_1_uhcYolErzxqXlUKwiiCTtgnPtSJr, (ThreadHelper_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02036420, void, ThreadHelper_1_zWXKbnJHDvYFGwbyckUDHqcQUNGg, (ThreadHelper_1 * __this, MethodInfo * method)); @@ -50230,9 +58772,12 @@ DO_APP_FUNC(0x02055C30, int32_t, ThreadedRingReportBuffer_get_EntriesInBuffer, ( DO_APP_FUNC(0x003C7420, Byte__Array *, ThreadedRingReportBuffer_get_ReadBuffer, (ThreadedRingReportBuffer * __this, MethodInfo * method)); DO_APP_FUNC(0x00A9C5C0, int32_t, ThreadedRingReportBuffer_get_LastNumBytesRead, (ThreadedRingReportBuffer * __this, MethodInfo * method)); DO_APP_FUNC(0x02055C50, void, ThreadedRingReportBuffer__ctor, (ThreadedRingReportBuffer * __this, int32_t param_0000c540, int32_t param_0000c541, int32_t param_0000c542, int32_t param_0000c543, bool param_0000c544, Action_1_Byte_ * param_0000c545, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0778, ThreadedRingReportBuffer__ctor__MethodInfo); DO_APP_FUNC(0x02055F20, int32_t, ThreadedRingReportBuffer_Read, (ThreadedRingReportBuffer * __this, MethodInfo * method)); DO_APP_FUNC(0x02056020, int32_t, ThreadedRingReportBuffer_Read_1, (ThreadedRingReportBuffer * __this, Byte__Array * buffer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC07C0, ThreadedRingReportBuffer_Read_1__MethodInfo); DO_APP_FUNC(0x02056190, int32_t, ThreadedRingReportBuffer_Read_2, (ThreadedRingReportBuffer * __this, void * buffer, int32_t bufferLength, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC07C8, ThreadedRingReportBuffer_Read_2__MethodInfo); DO_APP_FUNC(0x020563A0, int32_t, ThreadedRingReportBuffer_StartRead, (ThreadedRingReportBuffer * __this, MethodInfo * method)); DO_APP_FUNC(0x020563D0, void, ThreadedRingReportBuffer_StartThread, (ThreadedRingReportBuffer * __this, MethodInfo * method)); DO_APP_FUNC(0x02056410, void, ThreadedRingReportBuffer_StopThread, (ThreadedRingReportBuffer * __this, MethodInfo * method)); @@ -50240,6 +58785,7 @@ DO_APP_FUNC(0x02056470, bool, ThreadedRingReportBuffer_YGOPOhZraSmTKLxttlgehWSSp DO_APP_FUNC(0x020564B0, bool, ThreadedRingReportBuffer_GXgdSeITuubyoWngTrtPnvCajYDTA, (ThreadedRingReportBuffer * __this, MethodInfo * method)); DO_APP_FUNC(0x020566B0, void, ThreadedRingReportBuffer_JbIfolJevpInrJEGcebLkCazIerx, (ThreadedRingReportBuffer * __this, MethodInfo * method)); DO_APP_FUNC(0x02056880, void, ThreadedRingReportBuffer_KiUXWnYeAjoGhflMwEpWreoIFMQGA, (ThreadedRingReportBuffer * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC07B8, ThreadedRingReportBuffer_KiUXWnYeAjoGhflMwEpWreoIFMQGA__MethodInfo); DO_APP_FUNC(0x020569B0, void, ThreadedRingReportBuffer_Dispose, (ThreadedRingReportBuffer * __this, MethodInfo * method)); DO_APP_FUNC(0x02056A20, void, ThreadedRingReportBuffer_Finalize, (ThreadedRingReportBuffer * __this, MethodInfo * method)); DO_APP_FUNC(0x02056A50, void, ThreadedRingReportBuffer_Dispose_1, (ThreadedRingReportBuffer * __this, bool disposing, MethodInfo * method)); @@ -50249,12 +58795,17 @@ DO_APP_FUNC(0x02056AA0, int32_t, DualRingReportBuffer_get_EntriesInBuffer, (Dual DO_APP_FUNC(0x003C7320, Byte__Array *, DualRingReportBuffer_get_ReadBuffer, (DualRingReportBuffer * __this, MethodInfo * method)); DO_APP_FUNC(0x00439170, int32_t, DualRingReportBuffer_get_LastNumBytesRead, (DualRingReportBuffer * __this, MethodInfo * method)); DO_APP_FUNC(0x02056AC0, void, DualRingReportBuffer__ctor, (DualRingReportBuffer * __this, int32_t param_0000c54a, int32_t param_0000c54b, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC07A0, DualRingReportBuffer__ctor__MethodInfo); DO_APP_FUNC(0x02056DB0, int32_t, DualRingReportBuffer_StartRead, (DualRingReportBuffer * __this, MethodInfo * method)); DO_APP_FUNC(0x02056DE0, int32_t, DualRingReportBuffer_Read, (DualRingReportBuffer * __this, MethodInfo * method)); DO_APP_FUNC(0x02056EE0, int32_t, DualRingReportBuffer_Read_1, (DualRingReportBuffer * __this, Byte__Array * buffer, int32_t numBytesToRead, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0740, DualRingReportBuffer_Read_1__MethodInfo); DO_APP_FUNC(0x020570C0, int32_t, DualRingReportBuffer_Read_2, (DualRingReportBuffer * __this, void * buffer, int32_t bufferLength, int32_t numBytesToRead, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0730, DualRingReportBuffer_Read_2__MethodInfo); DO_APP_FUNC(0x02057320, int32_t, DualRingReportBuffer_Write, (DualRingReportBuffer * __this, Byte__Array * buffer, int32_t numBytesToWrite, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0728, DualRingReportBuffer_Write__MethodInfo); DO_APP_FUNC(0x02057510, int32_t, DualRingReportBuffer_Write_1, (DualRingReportBuffer * __this, void * buffer, int32_t bufferLength, int32_t numBytesToWrite, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0720, DualRingReportBuffer_Write_1__MethodInfo); DO_APP_FUNC(0x02057830, void, DualRingReportBuffer_Clear, (DualRingReportBuffer * __this, MethodInfo * method)); DO_APP_FUNC(0x020579F0, void, DualRingReportBuffer_JbIfolJevpInrJEGcebLkCazIerx, (DualRingReportBuffer * __this, MethodInfo * method)); DO_APP_FUNC(0x02057BC0, void, DualRingReportBuffer_Dispose, (DualRingReportBuffer * __this, MethodInfo * method)); @@ -50262,6 +58813,7 @@ DO_APP_FUNC(0x02057C20, void, DualRingReportBuffer_Finalize, (DualRingReportBuff DO_APP_FUNC(0x02057C50, void, DualRingReportBuffer_Dispose_1, (DualRingReportBuffer * __this, bool disposing, MethodInfo * method)); DO_APP_FUNC(0x02057C60, ObjectInstanceTracker *, ObjectInstanceTracker_get_Default, (MethodInfo * method)); DO_APP_FUNC(0x02057E60, uint32_t, ObjectInstanceTracker_Register, (ObjectInstanceTracker * __this, Object * instance, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0760, ObjectInstanceTracker_Register__MethodInfo); DO_APP_FUNC(0x02057F50, void, ObjectInstanceTracker_Unregister, (ObjectInstanceTracker * __this, uint32_t instanceId, MethodInfo * method)); DO_APP_FUNC(0x02058060, void, ObjectInstanceTracker_Dispose, (ObjectInstanceTracker * __this, MethodInfo * method)); DO_APP_FUNC(0x020580C0, void, ObjectInstanceTracker_IEkPCabxTSDlHrotLqbcXFSgZNMJ, (ObjectInstanceTracker * __this, bool param_0000c55b, MethodInfo * method)); @@ -50276,6 +58828,7 @@ DO_APP_FUNC(0x02058B80, void, DualThreadLowLevelInputEventQueue_Clear, (DualThre DO_APP_FUNC(0x02058CA0, bool, DualThreadLowLevelInputEventQueue_ProcessNewEvents, (DualThreadLowLevelInputEventQueue * __this, MethodInfo * method)); DO_APP_FUNC(0x02058EB0, void, DualThreadLowLevelInputEventQueue_StopProcessingEvents, (DualThreadLowLevelInputEventQueue * __this, MethodInfo * method)); DO_APP_FUNC(0x02058EC0, void, DualThreadLowLevelInputEventQueue_ImportAll, (DualThreadLowLevelInputEventQueue * __this, DualThreadLowLevelInputEventQueue * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC06F0, DualThreadLowLevelInputEventQueue_ImportAll__MethodInfo); DO_APP_FUNC(0x020591F0, void, DualThreadLowLevelInputEventQueue_Dispose, (DualThreadLowLevelInputEventQueue * __this, MethodInfo * method)); DO_APP_FUNC(0x02059250, void, DualThreadLowLevelInputEventQueue_Finalize, (DualThreadLowLevelInputEventQueue * __this, MethodInfo * method)); DO_APP_FUNC(0x020592A0, void, DualThreadLowLevelInputEventQueue_Dispose_1, (DualThreadLowLevelInputEventQueue * __this, bool disposing, MethodInfo * method)); @@ -50288,10 +58841,12 @@ DO_APP_FUNC(0x020594B0, LowLevelInputEvent, LowLevelInputEventQueue_get_Item, (L DO_APP_FUNC(0x02059520, void, LowLevelInputEventQueue__ctor, (LowLevelInputEventQueue * __this, int32_t param_0000c56a, int32_t param_0000c56b, int32_t param_0000c56c, int32_t param_0000c56d, MethodInfo * method)); DO_APP_FUNC(0x020596A0, LowLevelInputEvent, LowLevelInputEventQueue_CreateEvent, (LowLevelInputEventQueue * __this, MethodInfo * method)); DO_APP_FUNC(0x020597C0, int32_t, LowLevelInputEventQueue_FindNextIndex, (LowLevelInputEventQueue * __this, uint32_t id, MethodInfo * method)); -DO_APP_FUNC(0x02059A60, bool, LowLevelInputEventQueue_TryGetNext, (LowLevelInputEventQueue * __this, int32_t index, LowLevelInputEvent event, MethodInfo * method)); +DO_APP_FUNC(0x02059A60, bool, LowLevelInputEventQueue_TryGetNext, (LowLevelInputEventQueue * __this, int32_t index, LowLevelInputEvent * event, MethodInfo * method)); DO_APP_FUNC(0x02059BD0, void, LowLevelInputEventQueue_Clear, (LowLevelInputEventQueue * __this, MethodInfo * method)); DO_APP_FUNC(0x02059C00, void, LowLevelInputEventQueue_CopyAllFrom, (LowLevelInputEventQueue * __this, LowLevelInputEventQueue * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0710, LowLevelInputEventQueue_CopyAllFrom__MethodInfo); DO_APP_FUNC(0x02059CA0, void, LowLevelInputEventQueue_CopyNewEventsFrom, (LowLevelInputEventQueue * __this, LowLevelInputEventQueue * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0708, LowLevelInputEventQueue_CopyNewEventsFrom__MethodInfo); DO_APP_FUNC(0x02059FB0, void, LowLevelInputEventQueue_Dispose, (LowLevelInputEventQueue * __this, MethodInfo * method)); DO_APP_FUNC(0x0205A090, void, LowLevelInputEventQueue_Finalize, (LowLevelInputEventQueue * __this, MethodInfo * method)); DO_APP_FUNC(0x0205A0C0, void, LowLevelInputEventQueue_Dispose_1, (LowLevelInputEventQueue * __this, bool disposing, MethodInfo * method)); @@ -50313,8 +58868,10 @@ DO_APP_FUNC(0x0205A720, int64_t, Stopwatch_1_get_elapsedTicksRaw, (Stopwatch_1 * DO_APP_FUNC(0x0205A740, bool, Stopwatch_1_get_isRunning, (Stopwatch_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x0205A760, void, Stopwatch_1__ctor, (Stopwatch_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x0205A7F0, void, Stopwatch_1_Stop, (Stopwatch_1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC06B0, Stopwatch_1_Stop__MethodInfo); DO_APP_FUNC(0x0205A8C0, void, Stopwatch_1_Start, (Stopwatch_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x0205A980, void, Stopwatch_1_Reset, (Stopwatch_1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC06E0, Stopwatch_1_Reset__MethodInfo); DO_APP_FUNC(0x0205AA50, UnityStopwatch *, UnityStopwatch_get_Global, (MethodInfo * method)); DO_APP_FUNC(0x0205AB20, int64_t, UnityStopwatch_get_frequency, (MethodInfo * method)); DO_APP_FUNC(0x0205AB30, UnityStopwatch *, UnityStopwatch_StartNew, (MethodInfo * method)); @@ -50334,11 +58891,14 @@ DO_APP_FUNC(0x0205AD40, void, UnityStopwatch__ctor, (UnityStopwatch * __this, Me DO_APP_FUNC(0x0205AD50, void, UnityStopwatch__ctor_1, (UnityStopwatch * __this, bool param_0000c58b, MethodInfo * method)); DO_APP_FUNC(0x0205AE20, void, UnityStopwatch_Finalize, (UnityStopwatch * __this, MethodInfo * method)); DO_APP_FUNC(0x0205AE60, void, UnityStopwatch_Stop, (UnityStopwatch * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC06C8, UnityStopwatch_Stop__MethodInfo); DO_APP_FUNC(0x0205AF00, void, UnityStopwatch_Start, (UnityStopwatch * __this, MethodInfo * method)); DO_APP_FUNC(0x0205AF30, void, UnityStopwatch_Reset, (UnityStopwatch * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC06D8, UnityStopwatch_Reset__MethodInfo); DO_APP_FUNC(0x0205AFD0, void, UnityStopwatch_nomQrjxIwBTmsnXJRktxPjEIwlfB, (UnityStopwatch * __this, MethodInfo * method)); DO_APP_FUNC(0x0205B1C0, void, UnityStopwatch_lpNBykdbkInlJwdXCKieAOUjdhtf, (UnityStopwatch * __this, MethodInfo * method)); DO_APP_FUNC(0x0205B3A0, void, UnityStopwatch_bvuJmnqUwayyDafnxDLSclDQIjuB, (UnityStopwatch * __this, UpdateLoopType__Enum param_0000c58c, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC06C0, UnityStopwatch_bvuJmnqUwayyDafnxDLSclDQIjuB__MethodInfo); DO_APP_FUNC(0x003BCC40, bool, UnityStopwatch_PYePjHpKfNYrvlzkbfDzgKoCtUGl_pjjxXkilrHIvuRNJqIvEMedKjXrHA, (UnityStopwatch_PYePjHpKfNYrvlzkbfDzgKoCtUGl * __this, MethodInfo * method)); DO_APP_FUNC(0x0205B410, double, UnityStopwatch_PYePjHpKfNYrvlzkbfDzgKoCtUGl_VkUxODygBVumwDQKLoNhBdoGJkWX, (UnityStopwatch_PYePjHpKfNYrvlzkbfDzgKoCtUGl * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, UnityStopwatch_PYePjHpKfNYrvlzkbfDzgKoCtUGl__ctor, (UnityStopwatch_PYePjHpKfNYrvlzkbfDzgKoCtUGl * __this, MethodInfo * method)); @@ -50352,6 +58912,7 @@ DO_APP_FUNC(0x0205B560, void, SerializedObject__ctor_1, (SerializedObject * __th DO_APP_FUNC(0x0205B640, void, SerializedObject__ctor_2, (SerializedObject * __this, Type * param_0000c701, SerializedObject_ObjectType__Enum param_0000c702, MethodInfo * method)); DO_APP_FUNC(0x0205B660, void, SerializedObject__ctor_3, (SerializedObject * __this, Type * param_0000c703, SerializedObject_ObjectType__Enum param_0000c704, int32_t param_0000c705, MethodInfo * method)); DO_APP_FUNC(0x0205B7B0, void, SerializedObject__ctor_4, (SerializedObject * __this, Type * param_0000c706, IDictionary_2_System_String_System_Object_ * param_0000c707, SerializedObject_ObjectType__Enum param_0000c708, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0630, SerializedObject__ctor_4__MethodInfo); DO_APP_FUNC(0x0205BAF0, bool, SerializedObject_RqCIKYAouEaWvsxztVplPQfJBYFH, (SerializedObject * __this, MethodInfo * method)); DO_APP_FUNC(0x00421680, SerializedObject_ObjectType__Enum, SerializedObject_get_objectType, (SerializedObject * __this, MethodInfo * method)); DO_APP_FUNC(0x0205BB00, void, SerializedObject_set_objectType, (SerializedObject * __this, SerializedObject_ObjectType__Enum value, MethodInfo * method)); @@ -50361,50 +58922,58 @@ DO_APP_FUNC(0x003AE960, void, SerializedObject_set_xmlInfo, (SerializedObject * DO_APP_FUNC(0x0205BBF0, int32_t, SerializedObject_get_count, (SerializedObject * __this, MethodInfo * method)); DO_APP_FUNC(0x0205BC40, SerializedObject_Field, SerializedObject_get_Item, (SerializedObject * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x0205BD20, void, SerializedObject_Add, (SerializedObject * __this, Type * type, String * fieldName, Object * value, SerializedObject_FieldOptions__Enum options, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0690, SerializedObject_Add__MethodInfo); DO_APP_FUNC(0x0205C140, void, SerializedObject_Add_1, (SerializedObject * __this, String * fieldName, Object * value, MethodInfo * method)); DO_APP_FUNC(0x0205C1B0, bool, SerializedObject_Remove, (SerializedObject * __this, String * fieldName, MethodInfo * method)); DO_APP_FUNC(0x0205C230, bool, SerializedObject_Contains, (SerializedObject * __this, String * fieldName, MethodInfo * method)); DO_APP_FUNC(0x0205C2D0, Type *, SerializedObject_GetDataType, (SerializedObject * __this, String * fieldName, MethodInfo * method)); -DO_APP_FUNC(0x0205C360, bool, SerializedObject_TryGetOriginalValue, (SerializedObject * __this, String * fieldName, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0205C360, bool, SerializedObject_TryGetOriginalValue, (SerializedObject * __this, String * fieldName, Object * * value, MethodInfo * method)); DO_APP_FUNC(0x0205C4B0, SerializedObject_Field, SerializedObject_GetEntry, (SerializedObject * __this, String * fieldName, MethodInfo * method)); DO_APP_FUNC(0x0205C590, Object *, SerializedObject_GetOriginalValue, (SerializedObject * __this, String * fieldName, MethodInfo * method)); DO_APP_FUNC(0x0205C600, Object *, SerializedObject_GetOriginalValue_1, (SerializedObject * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x0205C670, String *, SerializedObject_ToXmlString, (SerializedObject * __this, bool writeDocumentTag, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0620, SerializedObject_ToXmlString__MethodInfo); DO_APP_FUNC(0x0205C960, String *, SerializedObject_ToJsonString, (SerializedObject * __this, MethodInfo * method)); DO_APP_FUNC(0x0205C970, String *, SerializedObject_ToString, (SerializedObject * __this, MethodInfo * method)); DO_APP_FUNC(0x0205CEB0, void, SerializedObject_MbBlrrpetcAyKlDurufLYLPPdlKi, (SerializedObject * __this, XmlWriter * param_0000c728, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0580, SerializedObject_MbBlrrpetcAyKlDurufLYLPPdlKi__MethodInfo); DO_APP_FUNC(0x0205CFB0, void, SerializedObject_ambaxzRaNrUXkwJfcJriResZDnUJ, (SerializedObject * __this, XmlWriter * param_0000c729, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0568, SerializedObject_ambaxzRaNrUXkwJfcJriResZDnUJ__MethodInfo); DO_APP_FUNC(0x0041AEF0, bool, SerializedObject_DaEfheCxOiViyvWeBgcbkRGdzDenA, (SerializedObject * __this, MethodInfo * method)); DO_APP_FUNC(0x0205D4C0, void, SerializedObject_YDqJDleRiNvaGCFcvcohbgTukZFXA, (SerializedObject * __this, XmlWriter * param_0000c72a, MethodInfo * method)); DO_APP_FUNC(0x0205D4D0, void, SerializedObject_SPscjAhukVDSLtEsVfyFGWcjWRGx, (SerializedObject * __this, StringBuilder * param_0000c72b, Action_2_System_Text_StringBuilder_Object_ * param_0000c72c, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0560, SerializedObject_SPscjAhukVDSLtEsVfyFGWcjWRGx__MethodInfo); DO_APP_FUNC(0x0205D890, void, SerializedObject_Rewired_Utils_Interfaces_IAddValue_System_Object__Add, (SerializedObject * __this, Object * param_0000c72d, MethodInfo * method)); DO_APP_FUNC(0x0205C140, void, SerializedObject_Rewired_Utils_Interfaces_IAddKeyValue_System_String_System_Object__Add, (SerializedObject * __this, String * param_0000c72e, Object * param_0000c72f, MethodInfo * method)); DO_APP_FUNC(0x0205D8F0, IEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_Field_ *, SerializedObject_System_Collections_Generic_IEnumerable_Rewired_Utils_Classes_Data_SerializedObject_Field__GetEnumerator, (SerializedObject * __this, MethodInfo * method)); DO_APP_FUNC(0x0205D980, IEnumerator *, SerializedObject_System_Collections_IEnumerable_GetEnumerator, (SerializedObject * __this, MethodInfo * method)); -DO_APP_FUNC(0x0205DA10, bool, SerializedObject_lbHphJnfMMARIhdTOlsYlhPqzNJm, (Type * param_0000c734, Object * param_0000c735, Object * param_0000c736, NumberStyles__Enum param_0000c737, CultureInfo * param_0000c738, MethodInfo * method)); -DO_APP_FUNC(0x02063420, bool, SerializedObject_GAdDoSxktMbPMmjkLpsXaHmXeiDR, (Type * param_0000c739, SerializedObject * param_0000c73a, Object * param_0000c73b, NumberStyles__Enum param_0000c73c, CultureInfo * param_0000c73d, MethodInfo * method)); +DO_APP_FUNC(0x0205DA10, bool, SerializedObject_lbHphJnfMMARIhdTOlsYlhPqzNJm, (Type * param_0000c734, Object * param_0000c735, Object * * param_0000c736, NumberStyles__Enum param_0000c737, CultureInfo * param_0000c738, MethodInfo * method)); +DO_APP_FUNC(0x02063420, bool, SerializedObject_GAdDoSxktMbPMmjkLpsXaHmXeiDR, (Type * param_0000c739, SerializedObject * param_0000c73a, Object * * param_0000c73b, NumberStyles__Enum param_0000c73c, CultureInfo * param_0000c73d, MethodInfo * method)); DO_APP_FUNC(0x02063FD0, SerializedObject *, SerializedObject_FromJson, (Type * type, String * jsonString, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC04F8, SerializedObject_FromJson__MethodInfo); DO_APP_FUNC(0x020641C0, SerializedObject *, SerializedObject_FromXml, (Type * type, String * xmlString, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC04C0, SerializedObject_FromXml__MethodInfo); DO_APP_FUNC(0x020644E0, void, SerializedObject__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x0115B870, void, SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__ctor, (SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__Boxed * __this, Type * param_0000c742, Object * param_0000c743, SerializedObject_FieldOptions__Enum param_0000c744, MethodInfo * method)); -DO_APP_FUNC(0x020646C0, String *, SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_puyyohkruQkIUNABhtMvSnGscDCS, (SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02064860, void, SerializedObject_Field__ctor, (SerializedObject_Field__Boxed * __this, String * param_0000c745, Object * param_0000c746, Type * param_0000c747, SerializedObject_FieldOptions__Enum param_0000c748, MethodInfo * method)); -DO_APP_FUNC(0x02064970, String *, SerializedObject_Field_ToString, (SerializedObject_Field__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0115B870, void, SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__ctor, (SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo * __this, Type * param_0000c742, Object * param_0000c743, SerializedObject_FieldOptions__Enum param_0000c744, MethodInfo * method)); +DO_APP_FUNC(0x020646C0, String *, SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_puyyohkruQkIUNABhtMvSnGscDCS, (SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo * __this, MethodInfo * method)); +DO_APP_FUNC(0x02064860, void, SerializedObject_Field__ctor, (SerializedObject_Field * __this, String * param_0000c745, Object * param_0000c746, Type * param_0000c747, SerializedObject_FieldOptions__Enum param_0000c748, MethodInfo * method)); +DO_APP_FUNC(0x02064970, String *, SerializedObject_Field_ToString, (SerializedObject_Field * __this, MethodInfo * method)); DO_APP_FUNC(0x02064B30, List_1_Rewired_Utils_Classes_Data_SerializedObject_XmlInfo_cSbMSwulYDylVSNioizqhnQVHFieA_ *, SerializedObject_XmlInfo_get_attributes, (SerializedObject_XmlInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SerializedObject_XmlInfo__ctor, (SerializedObject_XmlInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x02064C00, String *, SerializedObject_XmlInfo_ToString, (SerializedObject_XmlInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SerializedObject_XmlInfo_cSbMSwulYDylVSNioizqhnQVHFieA__ctor, (SerializedObject_XmlInfo_cSbMSwulYDylVSNioizqhnQVHFieA * __this, MethodInfo * method)); DO_APP_FUNC(0x02064D10, String *, SerializedObject_XmlInfo_XQIDxGyjfiRrluyCoqxsImPAbnPd_puyyohkruQkIUNABhtMvSnGscDCS, (SerializedObject_XmlInfo_XQIDxGyjfiRrluyCoqxsImPAbnPd * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SerializedObject_XmlInfo_XQIDxGyjfiRrluyCoqxsImPAbnPd__ctor, (SerializedObject_XmlInfo_XQIDxGyjfiRrluyCoqxsImPAbnPd * __this, MethodInfo * method)); -DO_APP_FUNC(0x02064E20, void, SerializedObject_Enumerator__ctor, (SerializedObject_Enumerator__Boxed * __this, Object * param_0000c749, MethodInfo * method)); -DO_APP_FUNC(0x02064FB0, bool, SerializedObject_Enumerator_MoveNext, (SerializedObject_Enumerator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171C0A0, SerializedObject_Field, SerializedObject_Enumerator_get_Current, (SerializedObject_Enumerator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, SerializedObject_Enumerator_Dispose, (SerializedObject_Enumerator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x020651C0, Object *, SerializedObject_Enumerator_System_Collections_IEnumerator_get_Current, (SerializedObject_Enumerator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02065220, void, SerializedObject_Enumerator_System_Collections_IEnumerator_Reset, (SerializedObject_Enumerator__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02064E20, void, SerializedObject_Enumerator__ctor, (SerializedObject_Enumerator * __this, Object * param_0000c749, MethodInfo * method)); +DO_APP_FUNC(0x02064FB0, bool, SerializedObject_Enumerator_MoveNext, (SerializedObject_Enumerator * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171C0A0, SerializedObject_Field, SerializedObject_Enumerator_get_Current, (SerializedObject_Enumerator * __this, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, SerializedObject_Enumerator_Dispose, (SerializedObject_Enumerator * __this, MethodInfo * method)); +DO_APP_FUNC(0x020651C0, Object *, SerializedObject_Enumerator_System_Collections_IEnumerator_get_Current, (SerializedObject_Enumerator * __this, MethodInfo * method)); +DO_APP_FUNC(0x02065220, void, SerializedObject_Enumerator_System_Collections_IEnumerator_Reset, (SerializedObject_Enumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, SerializedObject_HgMZjbfCwvsfHSWFxndJjdoFInHZ_kRxMFLDibTKOsYJdDBbSabXKgmsVA *, SerializedObject_HgMZjbfCwvsfHSWFxndJjdoFInHZ_IuchLRwkJxWPyFLWtnqGAIdkilnB, (SerializedObject_HgMZjbfCwvsfHSWFxndJjdoFInHZ * __this, MethodInfo * method)); DO_APP_FUNC(0x00A1E220, bool, SerializedObject_HgMZjbfCwvsfHSWFxndJjdoFInHZ_CTSNVtOErUgHLezDeQIcEzENJipJ, (SerializedObject_HgMZjbfCwvsfHSWFxndJjdoFInHZ * __this, MethodInfo * method)); DO_APP_FUNC(0x020652C0, void, SerializedObject_HgMZjbfCwvsfHSWFxndJjdoFInHZ__ctor, (SerializedObject_HgMZjbfCwvsfHSWFxndJjdoFInHZ * __this, String * param_0000c74a, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0498, SerializedObject_HgMZjbfCwvsfHSWFxndJjdoFInHZ__ctor__MethodInfo); DO_APP_FUNC(0x020655C0, void, SerializedObject_HgMZjbfCwvsfHSWFxndJjdoFInHZ_IKgwYnHeTrSyasUmjGnakGBdgkqL, (SerializedObject_HgMZjbfCwvsfHSWFxndJjdoFInHZ * __this, XmlReader * param_0000c74b, MethodInfo * method)); DO_APP_FUNC(0x020658C0, String *, SerializedObject_HgMZjbfCwvsfHSWFxndJjdoFInHZ_puyyohkruQkIUNABhtMvSnGscDCS, (SerializedObject_HgMZjbfCwvsfHSWFxndJjdoFInHZ * __this, MethodInfo * method)); DO_APP_FUNC(0x02065970, int32_t, SerializedObject_HgMZjbfCwvsfHSWFxndJjdoFInHZ_kRxMFLDibTKOsYJdDBbSabXKgmsVA_bxNWycyNhXGdPXtxAYgOXbMUEdwI, (SerializedObject_HgMZjbfCwvsfHSWFxndJjdoFInHZ_kRxMFLDibTKOsYJdDBbSabXKgmsVA * __this, MethodInfo * method)); @@ -50420,64 +58989,99 @@ DO_APP_FUNC(0x020663D0, String *, SerializedObject_HgMZjbfCwvsfHSWFxndJjdoFInHZ_ DO_APP_FUNC(0x02067470, void, SerializedObject_FXWfHyBeilpxeTScRmJiuaACmYxNA__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SerializedObject_FXWfHyBeilpxeTScRmJiuaACmYxNA__ctor, (SerializedObject_FXWfHyBeilpxeTScRmJiuaACmYxNA * __this, MethodInfo * method)); DO_APP_FUNC(0x02067520, bool, SerializedObject_FXWfHyBeilpxeTScRmJiuaACmYxNA_wHchENTxHYEyxnpkSjpNekrPZrlS, (SerializedObject_FXWfHyBeilpxeTScRmJiuaACmYxNA * __this, FieldInfo_1 * param_0000c755, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0598, SerializedObject_FXWfHyBeilpxeTScRmJiuaACmYxNA_wHchENTxHYEyxnpkSjpNekrPZrlS__MethodInfo); DO_APP_FUNC(0x02067700, String *, SerializedObject_FXWfHyBeilpxeTScRmJiuaACmYxNA_yxpmZNXdmRQyCsUOHEbqzFEpDISZ, (SerializedObject_FXWfHyBeilpxeTScRmJiuaACmYxNA * __this, FieldInfo_1 * param_0000c756, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0508, SerializedObject_FXWfHyBeilpxeTScRmJiuaACmYxNA_yxpmZNXdmRQyCsUOHEbqzFEpDISZ__MethodInfo); DO_APP_FUNC(0x02067890, bool, SerializedObject_FXWfHyBeilpxeTScRmJiuaACmYxNA_DOxWiSZfSTHethLAmDBVgvUlsKkhA, (SerializedObject_FXWfHyBeilpxeTScRmJiuaACmYxNA * __this, PropertyInfo_1 * param_0000c757, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0590, SerializedObject_FXWfHyBeilpxeTScRmJiuaACmYxNA_DOxWiSZfSTHethLAmDBVgvUlsKkhA__MethodInfo); DO_APP_FUNC(0x020679C0, String *, SerializedObject_FXWfHyBeilpxeTScRmJiuaACmYxNA_UmjgoxsstVUsabdnnFUFAYpqmPQP, (SerializedObject_FXWfHyBeilpxeTScRmJiuaACmYxNA * __this, PropertyInfo_1 * param_0000c758, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0588, SerializedObject_FXWfHyBeilpxeTScRmJiuaACmYxNA_UmjgoxsstVUsabdnnFUFAYpqmPQP__MethodInfo); DO_APP_FUNC(0x003BB3C0, void *, NativeBuffer_get_Pointer, (NativeBuffer * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, NativeBuffer_get_Length, (NativeBuffer * __this, MethodInfo * method)); DO_APP_FUNC(0x02067B50, uint8_t, NativeBuffer_get_Item, (NativeBuffer * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC03A8, NativeBuffer_get_Item__MethodInfo); DO_APP_FUNC(0x02067C00, void, NativeBuffer_set_Item, (NativeBuffer * __this, int32_t index, uint8_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0398, NativeBuffer_set_Item__MethodInfo); DO_APP_FUNC(0x02067CC0, void, NativeBuffer__ctor, (NativeBuffer * __this, int32_t param_0000c75c, MethodInfo * method)); DO_APP_FUNC(0x02067CD0, void *, NativeBuffer_GetPointer, (NativeBuffer * __this, int32_t offset, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC03A0, NativeBuffer_GetPointer__MethodInfo); DO_APP_FUNC(0x02067DB0, String *, NativeBuffer_DumpToHexString, (NativeBuffer * __this, MethodInfo * method)); DO_APP_FUNC(0x02068020, bool, NativeBuffer_ReadBit, (NativeBuffer * __this, int32_t byteIndex, uint8_t bit, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC03D0, NativeBuffer_ReadBit__MethodInfo); DO_APP_FUNC(0x02068150, uint8_t, NativeBuffer_ReadByte, (NativeBuffer * __this, int32_t startIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC03B8, NativeBuffer_ReadByte__MethodInfo); DO_APP_FUNC(0x02068210, int16_t, NativeBuffer_ReadShort, (NativeBuffer * __this, int32_t startIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC03C0, NativeBuffer_ReadShort__MethodInfo); DO_APP_FUNC(0x02068300, uint16_t, NativeBuffer_ReadUShort, (NativeBuffer * __this, int32_t startIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC03B0, NativeBuffer_ReadUShort__MethodInfo); DO_APP_FUNC(0x020683F0, int32_t, NativeBuffer_ReadInt, (NativeBuffer * __this, int32_t startIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0320, NativeBuffer_ReadInt__MethodInfo); DO_APP_FUNC(0x020684E0, uint32_t, NativeBuffer_ReadUInt, (NativeBuffer * __this, int32_t startIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0310, NativeBuffer_ReadUInt__MethodInfo); DO_APP_FUNC(0x020685D0, int64_t, NativeBuffer_ReadLong, (NativeBuffer * __this, int32_t startIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0318, NativeBuffer_ReadLong__MethodInfo); DO_APP_FUNC(0x020686C0, uint64_t, NativeBuffer_ReadULong, (NativeBuffer * __this, int32_t startIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0308, NativeBuffer_ReadULong__MethodInfo); DO_APP_FUNC(0x020687B0, float, NativeBuffer_ReadFloat, (NativeBuffer * __this, int32_t startIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0300, NativeBuffer_ReadFloat__MethodInfo); DO_APP_FUNC(0x020688B0, double, NativeBuffer_ReadDouble, (NativeBuffer * __this, int32_t startIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0380, NativeBuffer_ReadDouble__MethodInfo); DO_APP_FUNC(0x020689B0, void, NativeBuffer_Read, (NativeBuffer * __this, Byte__Array * buffer, int32_t numBytesToRead, int32_t readStartIndex, int32_t writeStartIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0378, NativeBuffer_Read__MethodInfo); DO_APP_FUNC(0x02068DD0, void, NativeBuffer_Read_1, (NativeBuffer * __this, void * buffer, int32_t bufferLength, int32_t numBytesToRead, int32_t readStartIndex, int32_t writeStartIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0330, NativeBuffer_Read_1__MethodInfo); DO_APP_FUNC(0x02069250, int32_t, NativeBuffer_TryReadBytes, (NativeBuffer * __this, Byte__Array * buffer, int32_t numBytesToRead, int32_t readStartIndex, int32_t writeStartIndex, MethodInfo * method)); DO_APP_FUNC(0x020692F0, int32_t, NativeBuffer_TryReadBytes_1, (NativeBuffer * __this, void * buffer, int32_t bufferLength, int32_t numBytesToRead, int32_t readStartIndex, int32_t writeStartIndex, MethodInfo * method)); DO_APP_FUNC(0x020693E0, void, NativeBuffer_WriteBit, (NativeBuffer * __this, int32_t byteIndex, uint8_t bit, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC02C0, NativeBuffer_WriteBit__MethodInfo); DO_APP_FUNC(0x02069550, void, NativeBuffer_Write, (NativeBuffer * __this, uint8_t byte, int32_t startIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC02C8, NativeBuffer_Write__MethodInfo); DO_APP_FUNC(0x02069610, void, NativeBuffer_Write_1, (NativeBuffer * __this, int16_t bytes, int32_t startIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC02B8, NativeBuffer_Write_1__MethodInfo); DO_APP_FUNC(0x02069710, void, NativeBuffer_Write_2, (NativeBuffer * __this, uint16_t bytes, int32_t startIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC02B0, NativeBuffer_Write_2__MethodInfo); DO_APP_FUNC(0x02069810, void, NativeBuffer_Write_3, (NativeBuffer * __this, int32_t bytes, int32_t startIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC02F0, NativeBuffer_Write_3__MethodInfo); DO_APP_FUNC(0x02069910, void, NativeBuffer_Write_4, (NativeBuffer * __this, uint32_t bytes, int32_t startIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC02F8, NativeBuffer_Write_4__MethodInfo); DO_APP_FUNC(0x02069A10, void, NativeBuffer_Write_5, (NativeBuffer * __this, int64_t bytes, int32_t startIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC02E8, NativeBuffer_Write_5__MethodInfo); DO_APP_FUNC(0x02069B10, void, NativeBuffer_Write_6, (NativeBuffer * __this, uint64_t bytes, int32_t startIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC02E0, NativeBuffer_Write_6__MethodInfo); DO_APP_FUNC(0x02069C10, void, NativeBuffer_Write_7, (NativeBuffer * __this, float bytes, int32_t startIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC02D0, NativeBuffer_Write_7__MethodInfo); DO_APP_FUNC(0x02069D10, void, NativeBuffer_Write_8, (NativeBuffer * __this, double bytes, int32_t startIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC02D8, NativeBuffer_Write_8__MethodInfo); DO_APP_FUNC(0x02069E10, void, NativeBuffer_Write_9, (NativeBuffer * __this, Byte__Array * bytes, int32_t numBytesToWrite, int32_t writeStartIndex, int32_t readStartIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0278, NativeBuffer_Write_9__MethodInfo); DO_APP_FUNC(0x0206A230, void, NativeBuffer_Write_10, (NativeBuffer * __this, void * bytes, int32_t bufferLength, int32_t numBytesToWrite, int32_t writeStartIndex, int32_t readStartIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0248, NativeBuffer_Write_10__MethodInfo); DO_APP_FUNC(0x0206A6B0, int32_t, NativeBuffer_TryWriteBytes, (NativeBuffer * __this, Byte__Array * bytes, int32_t numBytesToWrite, int32_t writeStartIndex, int32_t readStartIndex, MethodInfo * method)); DO_APP_FUNC(0x0206A750, int32_t, NativeBuffer_TryWriteBytes_1, (NativeBuffer * __this, void * bytes, int32_t bufferLength, int32_t numBytesToWrite, int32_t writeStartIndex, int32_t readStartIndex, MethodInfo * method)); DO_APP_FUNC(0x0206A840, int32_t, NativeBuffer_TryFill, (NativeBuffer * __this, uint8_t value, int32_t numBytesToWrite, int32_t writeStartIndex, MethodInfo * method)); DO_APP_FUNC(0x0206A8A0, bool, NativeBuffer_Resize, (NativeBuffer * __this, int32_t size, bool preserveData, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0240, NativeBuffer_Resize__MethodInfo); DO_APP_FUNC(0x0206AAD0, void, NativeBuffer_Clear, (NativeBuffer * __this, MethodInfo * method)); DO_APP_FUNC(0x0206AAF0, void, NativeBuffer_Release, (NativeBuffer * __this, MethodInfo * method)); DO_APP_FUNC(0x0206AB90, void, NativeBuffer_CopyFrom, (NativeBuffer * __this, NativeBuffer * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC02A0, NativeBuffer_CopyFrom__MethodInfo); DO_APP_FUNC(0x0206AC70, String *, NativeBuffer_ToString, (NativeBuffer * __this, MethodInfo * method)); DO_APP_FUNC(0x0206AE80, void, NativeBuffer_Dispose, (NativeBuffer * __this, MethodInfo * method)); DO_APP_FUNC(0x0190D730, void, NativeBuffer_Finalize, (NativeBuffer * __this, MethodInfo * method)); DO_APP_FUNC(0x0206AEF0, void, NativeBuffer_Dispose_1, (NativeBuffer * __this, bool disposing, MethodInfo * method)); DO_APP_FUNC(0x0206AF10, void *, NativeBuffer_op_Implicit, (NativeBuffer * buffer, MethodInfo * method)); DO_APP_FUNC(0x0206AF60, bool, NativeBuffer_Copy, (NativeBuffer * source, NativeBuffer * destination, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0290, NativeBuffer_Copy__MethodInfo); DO_APP_FUNC(0x003BC2E0, int32_t, NativeRingBuffer_get_Capacity, (NativeRingBuffer * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7300, int32_t, NativeRingBuffer_get_BytesInBuffer, (NativeRingBuffer * __this, MethodInfo * method)); DO_APP_FUNC(0x005C47D0, bool, NativeRingBuffer_get_BufferOverrun, (NativeRingBuffer * __this, MethodInfo * method)); DO_APP_FUNC(0x00421680, int32_t, NativeRingBuffer_get_ReadPosition, (NativeRingBuffer * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, int64_t, NativeRingBuffer_get_WritePosition, (NativeRingBuffer * __this, MethodInfo * method)); DO_APP_FUNC(0x0206B090, void, NativeRingBuffer__ctor, (NativeRingBuffer * __this, int32_t param_0000c7ac, MethodInfo * method)); -DO_APP_FUNC(0x0206B1B0, void *, NativeRingBuffer_Allocate, (NativeRingBuffer * __this, int32_t bufferLength, bool zeroFill, uint32_t passId, MethodInfo * method)); -DO_APP_FUNC(0x0206B2B0, int32_t, NativeRingBuffer_Write, (NativeRingBuffer * __this, void * buffer, int32_t bufferLength, int32_t numBytesToWrite, int32_t startOffset, uint32_t passId, MethodInfo * method)); -DO_APP_FUNC(0x0206B3D0, int32_t, NativeRingBuffer_Write_1, (NativeRingBuffer * __this, Byte__Array * buffer, int32_t numBytesToWrite, int32_t startOffset, uint32_t passId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0218, NativeRingBuffer__ctor__MethodInfo); +DO_APP_FUNC(0x0206B1B0, void *, NativeRingBuffer_Allocate, (NativeRingBuffer * __this, int32_t bufferLength, bool zeroFill, uint32_t * passId, MethodInfo * method)); +DO_APP_FUNC(0x0206B2B0, int32_t, NativeRingBuffer_Write, (NativeRingBuffer * __this, void * buffer, int32_t bufferLength, int32_t numBytesToWrite, int32_t * startOffset, uint32_t * passId, MethodInfo * method)); +DO_APP_FUNC(0x0206B3D0, int32_t, NativeRingBuffer_Write_1, (NativeRingBuffer * __this, Byte__Array * buffer, int32_t numBytesToWrite, int32_t * startOffset, uint32_t * passId, MethodInfo * method)); DO_APP_FUNC(0x0206B540, int32_t, NativeRingBuffer_Write_2, (NativeRingBuffer * __this, void * buffer, int32_t bufferLength, int32_t numBytesToWrite, MethodInfo * method)); DO_APP_FUNC(0x0206B660, int32_t, NativeRingBuffer_Write_3, (NativeRingBuffer * __this, Byte__Array * buffer, int32_t numBytesToWrite, MethodInfo * method)); DO_APP_FUNC(0x0206B690, int32_t, NativeRingBuffer_Read, (NativeRingBuffer * __this, void * buffer, int32_t bufferLength, int32_t numBytesToRead, MethodInfo * method)); @@ -50488,6 +59092,7 @@ DO_APP_FUNC(0x0206BB90, void *, NativeRingBuffer_GetPointerFromReadPosition, (Na DO_APP_FUNC(0x0206BC20, int32_t, NativeRingBuffer_GetOffsetFromReadPosition, (NativeRingBuffer * __this, int32_t offset, MethodInfo * method)); DO_APP_FUNC(0x0206BC50, bool, NativeRingBuffer_IsValid, (NativeRingBuffer * __this, int32_t startIndex, uint32_t passId, MethodInfo * method)); DO_APP_FUNC(0x0206BC80, void, NativeRingBuffer_CopyFrom, (NativeRingBuffer * __this, NativeRingBuffer * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0210, NativeRingBuffer_CopyFrom__MethodInfo); DO_APP_FUNC(0x0206BE60, void, NativeRingBuffer_Reset, (NativeRingBuffer * __this, MethodInfo * method)); DO_APP_FUNC(0x0206BE80, void, NativeRingBuffer_SGrfGgGTKaaeFaNOeKhZOZrRCBtzB, (NativeRingBuffer * __this, int32_t param_0000c7cf, MethodInfo * method)); DO_APP_FUNC(0x0206BF30, void, NativeRingBuffer_kOdJJJavLAqjqGtaWGvYQWfPVcqB, (NativeRingBuffer * __this, int32_t param_0000c7d0, MethodInfo * method)); @@ -50497,40 +59102,54 @@ DO_APP_FUNC(0x0206C010, void, NativeRingBuffer_Finalize, (NativeRingBuffer * __t DO_APP_FUNC(0x0206C040, void, NativeRingBuffer_Dispose_1, (NativeRingBuffer * __this, bool disposing, MethodInfo * method)); DO_APP_FUNC(0x003BCD70, uint32_t, NativeMemoryBlock_get_size, (NativeMemoryBlock * __this, MethodInfo * method)); DO_APP_FUNC(0x0206C070, void, NativeMemoryBlock__ctor, (NativeMemoryBlock * __this, uint32_t param_0000c7d2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0230, NativeMemoryBlock__ctor__MethodInfo); DO_APP_FUNC(0x0206C200, void *, NativeMemoryBlock_Allocate, (NativeMemoryBlock * __this, uint32_t bytes, void * ptrToData, MethodInfo * method)); DO_APP_FUNC(0x0206C2E0, void *, NativeMemoryBlock_Allocate_1, (NativeMemoryBlock * __this, uint32_t bytes, MethodInfo * method)); DO_APP_FUNC(0x0206C3F0, void, NativeMemoryBlock_Dispose, (NativeMemoryBlock * __this, MethodInfo * method)); DO_APP_FUNC(0x0190D730, void, NativeMemoryBlock_Finalize, (NativeMemoryBlock * __this, MethodInfo * method)); DO_APP_FUNC(0x0206C460, void, NativeMemoryBlock_Dispose_1, (NativeMemoryBlock * __this, bool disposing, MethodInfo * method)); -DO_APP_FUNC(0x0206C510, void, TypeWrapper__ctor, (TypeWrapper__Boxed * __this, TypeWrapper_DataType__Enum param_0000c7d7, MethodInfo * method)); -DO_APP_FUNC(0x0206C5E0, void, TypeWrapper__ctor_1, (TypeWrapper__Boxed * __this, uint8_t param_0000c7d8, MethodInfo * method)); -DO_APP_FUNC(0x0206C6B0, void, TypeWrapper__ctor_2, (TypeWrapper__Boxed * __this, int8_t param_0000c7d9, MethodInfo * method)); -DO_APP_FUNC(0x0206C780, void, TypeWrapper__ctor_3, (TypeWrapper__Boxed * __this, uint16_t param_0000c7da, MethodInfo * method)); -DO_APP_FUNC(0x0206C850, void, TypeWrapper__ctor_4, (TypeWrapper__Boxed * __this, int16_t param_0000c7db, MethodInfo * method)); -DO_APP_FUNC(0x0206C920, void, TypeWrapper__ctor_5, (TypeWrapper__Boxed * __this, uint16_t param_0000c7dc, MethodInfo * method)); -DO_APP_FUNC(0x0206C9F0, void, TypeWrapper__ctor_6, (TypeWrapper__Boxed * __this, int32_t param_0000c7dd, MethodInfo * method)); -DO_APP_FUNC(0x0206CAC0, void, TypeWrapper__ctor_7, (TypeWrapper__Boxed * __this, uint32_t param_0000c7de, MethodInfo * method)); -DO_APP_FUNC(0x0206CB90, void, TypeWrapper__ctor_8, (TypeWrapper__Boxed * __this, int64_t param_0000c7df, MethodInfo * method)); -DO_APP_FUNC(0x0206CC60, void, TypeWrapper__ctor_9, (TypeWrapper__Boxed * __this, uint64_t param_0000c7e0, MethodInfo * method)); -DO_APP_FUNC(0x0206CD30, void, TypeWrapper__ctor_10, (TypeWrapper__Boxed * __this, float param_0000c7e1, MethodInfo * method)); -DO_APP_FUNC(0x0206CE00, void, TypeWrapper__ctor_11, (TypeWrapper__Boxed * __this, double param_0000c7e2, MethodInfo * method)); -DO_APP_FUNC(0x0206CED0, void, TypeWrapper__ctor_12, (TypeWrapper__Boxed * __this, bool param_0000c7e3, MethodInfo * method)); -DO_APP_FUNC(0x0206CFA0, void, TypeWrapper__ctor_13, (TypeWrapper__Boxed * __this, String * param_0000c7e4, MethodInfo * method)); -DO_APP_FUNC(0x0206D0C0, void, TypeWrapper__ctor_14, (TypeWrapper__Boxed * __this, Object * param_0000c7e5, MethodInfo * method)); -DO_APP_FUNC(0x0206D1E0, void, TypeWrapper_Clear, (TypeWrapper__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0206C510, void, TypeWrapper__ctor, (TypeWrapper * __this, TypeWrapper_DataType__Enum param_0000c7d7, MethodInfo * method)); +DO_APP_FUNC(0x0206C5E0, void, TypeWrapper__ctor_1, (TypeWrapper * __this, uint8_t param_0000c7d8, MethodInfo * method)); +DO_APP_FUNC(0x0206C6B0, void, TypeWrapper__ctor_2, (TypeWrapper * __this, int8_t param_0000c7d9, MethodInfo * method)); +DO_APP_FUNC(0x0206C780, void, TypeWrapper__ctor_3, (TypeWrapper * __this, uint16_t param_0000c7da, MethodInfo * method)); +DO_APP_FUNC(0x0206C850, void, TypeWrapper__ctor_4, (TypeWrapper * __this, int16_t param_0000c7db, MethodInfo * method)); +DO_APP_FUNC(0x0206C920, void, TypeWrapper__ctor_5, (TypeWrapper * __this, uint16_t param_0000c7dc, MethodInfo * method)); +DO_APP_FUNC(0x0206C9F0, void, TypeWrapper__ctor_6, (TypeWrapper * __this, int32_t param_0000c7dd, MethodInfo * method)); +DO_APP_FUNC(0x0206CAC0, void, TypeWrapper__ctor_7, (TypeWrapper * __this, uint32_t param_0000c7de, MethodInfo * method)); +DO_APP_FUNC(0x0206CB90, void, TypeWrapper__ctor_8, (TypeWrapper * __this, int64_t param_0000c7df, MethodInfo * method)); +DO_APP_FUNC(0x0206CC60, void, TypeWrapper__ctor_9, (TypeWrapper * __this, uint64_t param_0000c7e0, MethodInfo * method)); +DO_APP_FUNC(0x0206CD30, void, TypeWrapper__ctor_10, (TypeWrapper * __this, float param_0000c7e1, MethodInfo * method)); +DO_APP_FUNC(0x0206CE00, void, TypeWrapper__ctor_11, (TypeWrapper * __this, double param_0000c7e2, MethodInfo * method)); +DO_APP_FUNC(0x0206CED0, void, TypeWrapper__ctor_12, (TypeWrapper * __this, bool param_0000c7e3, MethodInfo * method)); +DO_APP_FUNC(0x0206CFA0, void, TypeWrapper__ctor_13, (TypeWrapper * __this, String * param_0000c7e4, MethodInfo * method)); +DO_APP_FUNC(0x0206D0C0, void, TypeWrapper__ctor_14, (TypeWrapper * __this, Object * param_0000c7e5, MethodInfo * method)); +DO_APP_FUNC(0x0206D1E0, void, TypeWrapper_Clear, (TypeWrapper * __this, MethodInfo * method)); DO_APP_FUNC(0x0206D2B0, uint8_t, TypeWrapper_op_Implicit, (TypeWrapper obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC01F8, TypeWrapper_op_Implicit__MethodInfo); DO_APP_FUNC(0x0206D320, int8_t, TypeWrapper_op_Implicit_1, (TypeWrapper obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC01E0, TypeWrapper_op_Implicit_1__MethodInfo); DO_APP_FUNC(0x0206D390, uint16_t, TypeWrapper_op_Implicit_2, (TypeWrapper obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC01D8, TypeWrapper_op_Implicit_2__MethodInfo); DO_APP_FUNC(0x0206D400, int16_t, TypeWrapper_op_Implicit_3, (TypeWrapper obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC01F0, TypeWrapper_op_Implicit_3__MethodInfo); DO_APP_FUNC(0x0206D470, int32_t, TypeWrapper_op_Implicit_4, (TypeWrapper obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC01E8, TypeWrapper_op_Implicit_4__MethodInfo); DO_APP_FUNC(0x0206D4E0, int64_t, TypeWrapper_op_Implicit_5, (TypeWrapper obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC01C0, TypeWrapper_op_Implicit_5__MethodInfo); DO_APP_FUNC(0x0206D550, uint16_t, TypeWrapper_op_Implicit_6, (TypeWrapper obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC01B8, TypeWrapper_op_Implicit_6__MethodInfo); DO_APP_FUNC(0x0206D5C0, uint32_t, TypeWrapper_op_Implicit_7, (TypeWrapper obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC01D0, TypeWrapper_op_Implicit_7__MethodInfo); DO_APP_FUNC(0x0206D630, uint64_t, TypeWrapper_op_Implicit_8, (TypeWrapper obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC01C8, TypeWrapper_op_Implicit_8__MethodInfo); DO_APP_FUNC(0x0206D6A0, float, TypeWrapper_op_Implicit_9, (TypeWrapper obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC01A0, TypeWrapper_op_Implicit_9__MethodInfo); DO_APP_FUNC(0x0206D700, double, TypeWrapper_op_Implicit_10, (TypeWrapper obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0198, TypeWrapper_op_Implicit_10__MethodInfo); DO_APP_FUNC(0x0206D760, bool, TypeWrapper_op_Implicit_11, (TypeWrapper obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC01B0, TypeWrapper_op_Implicit_11__MethodInfo); DO_APP_FUNC(0x0206D7D0, String *, TypeWrapper_op_Implicit_12, (TypeWrapper obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC01A8, TypeWrapper_op_Implicit_12__MethodInfo); DO_APP_FUNC(0x0206D830, TypeWrapper, TypeWrapper_op_Implicit_13, (uint8_t obj, MethodInfo * method)); DO_APP_FUNC(0x0206D860, TypeWrapper, TypeWrapper_op_Implicit_14, (int8_t obj, MethodInfo * method)); DO_APP_FUNC(0x0206D890, TypeWrapper, TypeWrapper_op_Implicit_15, (uint16_t obj, MethodInfo * method)); @@ -50633,21 +59252,21 @@ DO_APP_FUNC(0x0206F840, uint64_t, SerializableULong_get_value, (SerializableULon DO_APP_FUNC(0x0206F850, void, SerializableULong_set_value, (SerializableULong * __this, uint64_t value, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SerializableULong__ctor, (SerializableULong * __this, MethodInfo * method)); DO_APP_FUNC(0x0206F860, void, SerializableULong__ctor_1, (SerializableULong * __this, SerializableULong * param_0000c87e, MethodInfo * method)); -DO_APP_FUNC(0x0206F880, void, SerializableULong_uOuFsKKzdEnsGqSZeNkGFclGZzfMB, (SerializableULong * __this, uint64_t param_0000c87f, int32_t param_0000c880, int32_t param_0000c881, MethodInfo * method)); +DO_APP_FUNC(0x0206F880, void, SerializableULong_uOuFsKKzdEnsGqSZeNkGFclGZzfMB, (SerializableULong * __this, uint64_t param_0000c87f, int32_t * param_0000c880, int32_t * param_0000c881, MethodInfo * method)); DO_APP_FUNC(0x0206F890, uint64_t, SerializableULong_VRNYMhFXYNfWZvhgbQmtiIuzMiU, (SerializableULong * __this, int32_t param_0000c882, int32_t param_0000c883, MethodInfo * method)); DO_APP_FUNC(0x0206F8A0, SerializableULong *, SerializableULong_Clone, (SerializableULong * __this, MethodInfo * method)); -DO_APP_FUNC(0x0206F900, void, hSbwNTNMXINZArnhChTjKcrEfQRS__ctor, (hSbwNTNMXINZArnhChTjKcrEfQRS__Boxed * __this, uint8_t param_0000c884, MethodInfo * method)); -DO_APP_FUNC(0x0206F900, void, hSbwNTNMXINZArnhChTjKcrEfQRS__ctor_1, (hSbwNTNMXINZArnhChTjKcrEfQRS__Boxed * __this, int8_t param_0000c885, MethodInfo * method)); -DO_APP_FUNC(0x0206F910, void, hSbwNTNMXINZArnhChTjKcrEfQRS__ctor_2, (hSbwNTNMXINZArnhChTjKcrEfQRS__Boxed * __this, uint16_t param_0000c886, MethodInfo * method)); -DO_APP_FUNC(0x0206F910, void, hSbwNTNMXINZArnhChTjKcrEfQRS__ctor_3, (hSbwNTNMXINZArnhChTjKcrEfQRS__Boxed * __this, int16_t param_0000c887, MethodInfo * method)); -DO_APP_FUNC(0x0206F910, void, hSbwNTNMXINZArnhChTjKcrEfQRS__ctor_4, (hSbwNTNMXINZArnhChTjKcrEfQRS__Boxed * __this, uint16_t param_0000c888, MethodInfo * method)); -DO_APP_FUNC(0x0206F920, void, hSbwNTNMXINZArnhChTjKcrEfQRS__ctor_5, (hSbwNTNMXINZArnhChTjKcrEfQRS__Boxed * __this, int32_t param_0000c889, MethodInfo * method)); -DO_APP_FUNC(0x0206F920, void, hSbwNTNMXINZArnhChTjKcrEfQRS__ctor_6, (hSbwNTNMXINZArnhChTjKcrEfQRS__Boxed * __this, uint32_t param_0000c88a, MethodInfo * method)); -DO_APP_FUNC(0x00A9A2A0, void, hSbwNTNMXINZArnhChTjKcrEfQRS__ctor_7, (hSbwNTNMXINZArnhChTjKcrEfQRS__Boxed * __this, int64_t param_0000c88b, MethodInfo * method)); -DO_APP_FUNC(0x00A9A2A0, void, hSbwNTNMXINZArnhChTjKcrEfQRS__ctor_8, (hSbwNTNMXINZArnhChTjKcrEfQRS__Boxed * __this, uint64_t param_0000c88c, MethodInfo * method)); -DO_APP_FUNC(0x0206F930, void, hSbwNTNMXINZArnhChTjKcrEfQRS__ctor_9, (hSbwNTNMXINZArnhChTjKcrEfQRS__Boxed * __this, float param_0000c88d, MethodInfo * method)); -DO_APP_FUNC(0x0206F940, void, hSbwNTNMXINZArnhChTjKcrEfQRS__ctor_10, (hSbwNTNMXINZArnhChTjKcrEfQRS__Boxed * __this, double param_0000c88e, MethodInfo * method)); -DO_APP_FUNC(0x0206F900, void, hSbwNTNMXINZArnhChTjKcrEfQRS__ctor_11, (hSbwNTNMXINZArnhChTjKcrEfQRS__Boxed * __this, bool param_0000c88f, MethodInfo * method)); +DO_APP_FUNC(0x0206F900, void, hSbwNTNMXINZArnhChTjKcrEfQRS__ctor, (hSbwNTNMXINZArnhChTjKcrEfQRS * __this, uint8_t param_0000c884, MethodInfo * method)); +DO_APP_FUNC(0x0206F900, void, hSbwNTNMXINZArnhChTjKcrEfQRS__ctor_1, (hSbwNTNMXINZArnhChTjKcrEfQRS * __this, int8_t param_0000c885, MethodInfo * method)); +DO_APP_FUNC(0x0206F910, void, hSbwNTNMXINZArnhChTjKcrEfQRS__ctor_2, (hSbwNTNMXINZArnhChTjKcrEfQRS * __this, uint16_t param_0000c886, MethodInfo * method)); +DO_APP_FUNC(0x0206F910, void, hSbwNTNMXINZArnhChTjKcrEfQRS__ctor_3, (hSbwNTNMXINZArnhChTjKcrEfQRS * __this, int16_t param_0000c887, MethodInfo * method)); +DO_APP_FUNC(0x0206F910, void, hSbwNTNMXINZArnhChTjKcrEfQRS__ctor_4, (hSbwNTNMXINZArnhChTjKcrEfQRS * __this, uint16_t param_0000c888, MethodInfo * method)); +DO_APP_FUNC(0x0206F920, void, hSbwNTNMXINZArnhChTjKcrEfQRS__ctor_5, (hSbwNTNMXINZArnhChTjKcrEfQRS * __this, int32_t param_0000c889, MethodInfo * method)); +DO_APP_FUNC(0x0206F920, void, hSbwNTNMXINZArnhChTjKcrEfQRS__ctor_6, (hSbwNTNMXINZArnhChTjKcrEfQRS * __this, uint32_t param_0000c88a, MethodInfo * method)); +DO_APP_FUNC(0x00A9A2A0, void, hSbwNTNMXINZArnhChTjKcrEfQRS__ctor_7, (hSbwNTNMXINZArnhChTjKcrEfQRS * __this, int64_t param_0000c88b, MethodInfo * method)); +DO_APP_FUNC(0x00A9A2A0, void, hSbwNTNMXINZArnhChTjKcrEfQRS__ctor_8, (hSbwNTNMXINZArnhChTjKcrEfQRS * __this, uint64_t param_0000c88c, MethodInfo * method)); +DO_APP_FUNC(0x0206F930, void, hSbwNTNMXINZArnhChTjKcrEfQRS__ctor_9, (hSbwNTNMXINZArnhChTjKcrEfQRS * __this, float param_0000c88d, MethodInfo * method)); +DO_APP_FUNC(0x0206F940, void, hSbwNTNMXINZArnhChTjKcrEfQRS__ctor_10, (hSbwNTNMXINZArnhChTjKcrEfQRS * __this, double param_0000c88e, MethodInfo * method)); +DO_APP_FUNC(0x0206F900, void, hSbwNTNMXINZArnhChTjKcrEfQRS__ctor_11, (hSbwNTNMXINZArnhChTjKcrEfQRS * __this, bool param_0000c88f, MethodInfo * method)); DO_APP_FUNC(0x00C3C210, uint8_t, hSbwNTNMXINZArnhChTjKcrEfQRS_MTAZOborZiidxfcamkRsTuMeEDrw, (hSbwNTNMXINZArnhChTjKcrEfQRS param_0000c890, MethodInfo * method)); DO_APP_FUNC(0x00C3C210, int8_t, hSbwNTNMXINZArnhChTjKcrEfQRS_MTAZOborZiidxfcamkRsTuMeEDrw_1, (hSbwNTNMXINZArnhChTjKcrEfQRS param_0000c891, MethodInfo * method)); DO_APP_FUNC(0x01AA9AD0, uint16_t, hSbwNTNMXINZArnhChTjKcrEfQRS_MTAZOborZiidxfcamkRsTuMeEDrw_2, (hSbwNTNMXINZArnhChTjKcrEfQRS param_0000c892, MethodInfo * method)); @@ -50668,15 +59287,15 @@ DO_APP_FUNC(0x00A1B820, hSbwNTNMXINZArnhChTjKcrEfQRS, hSbwNTNMXINZArnhChTjKcrEfQ DO_APP_FUNC(0x0206F9D0, hSbwNTNMXINZArnhChTjKcrEfQRS, hSbwNTNMXINZArnhChTjKcrEfQRS_MTAZOborZiidxfcamkRsTuMeEDrw_17, (float param_0000c8a1, MethodInfo * method)); DO_APP_FUNC(0x0206F9F0, hSbwNTNMXINZArnhChTjKcrEfQRS, hSbwNTNMXINZArnhChTjKcrEfQRS_MTAZOborZiidxfcamkRsTuMeEDrw_18, (double param_0000c8a2, MethodInfo * method)); DO_APP_FUNC(0x0206F970, hSbwNTNMXINZArnhChTjKcrEfQRS, hSbwNTNMXINZArnhChTjKcrEfQRS_MTAZOborZiidxfcamkRsTuMeEDrw_19, (bool param_0000c8a3, MethodInfo * method)); -DO_APP_FUNC(0x0206FA00, void, MsYMviDNoAqXHSeUpBDFjZLkjlOOA__ctor, (MsYMviDNoAqXHSeUpBDFjZLkjlOOA__Boxed * __this, uint8_t param_0000c8a4, MethodInfo * method)); -DO_APP_FUNC(0x0206FA00, void, MsYMviDNoAqXHSeUpBDFjZLkjlOOA__ctor_1, (MsYMviDNoAqXHSeUpBDFjZLkjlOOA__Boxed * __this, int8_t param_0000c8a5, MethodInfo * method)); -DO_APP_FUNC(0x0206FA10, void, MsYMviDNoAqXHSeUpBDFjZLkjlOOA__ctor_2, (MsYMviDNoAqXHSeUpBDFjZLkjlOOA__Boxed * __this, uint16_t param_0000c8a6, MethodInfo * method)); -DO_APP_FUNC(0x0206FA10, void, MsYMviDNoAqXHSeUpBDFjZLkjlOOA__ctor_3, (MsYMviDNoAqXHSeUpBDFjZLkjlOOA__Boxed * __this, int16_t param_0000c8a7, MethodInfo * method)); -DO_APP_FUNC(0x0206FA10, void, MsYMviDNoAqXHSeUpBDFjZLkjlOOA__ctor_4, (MsYMviDNoAqXHSeUpBDFjZLkjlOOA__Boxed * __this, uint16_t param_0000c8a8, MethodInfo * method)); -DO_APP_FUNC(0x00959BA0, void, MsYMviDNoAqXHSeUpBDFjZLkjlOOA__ctor_5, (MsYMviDNoAqXHSeUpBDFjZLkjlOOA__Boxed * __this, int32_t param_0000c8a9, MethodInfo * method)); -DO_APP_FUNC(0x00959BA0, void, MsYMviDNoAqXHSeUpBDFjZLkjlOOA__ctor_6, (MsYMviDNoAqXHSeUpBDFjZLkjlOOA__Boxed * __this, uint32_t param_0000c8aa, MethodInfo * method)); -DO_APP_FUNC(0x00C42840, void, MsYMviDNoAqXHSeUpBDFjZLkjlOOA__ctor_7, (MsYMviDNoAqXHSeUpBDFjZLkjlOOA__Boxed * __this, float param_0000c8ab, MethodInfo * method)); -DO_APP_FUNC(0x0206FA00, void, MsYMviDNoAqXHSeUpBDFjZLkjlOOA__ctor_8, (MsYMviDNoAqXHSeUpBDFjZLkjlOOA__Boxed * __this, bool param_0000c8ac, MethodInfo * method)); +DO_APP_FUNC(0x0206FA00, void, MsYMviDNoAqXHSeUpBDFjZLkjlOOA__ctor, (MsYMviDNoAqXHSeUpBDFjZLkjlOOA * __this, uint8_t param_0000c8a4, MethodInfo * method)); +DO_APP_FUNC(0x0206FA00, void, MsYMviDNoAqXHSeUpBDFjZLkjlOOA__ctor_1, (MsYMviDNoAqXHSeUpBDFjZLkjlOOA * __this, int8_t param_0000c8a5, MethodInfo * method)); +DO_APP_FUNC(0x0206FA10, void, MsYMviDNoAqXHSeUpBDFjZLkjlOOA__ctor_2, (MsYMviDNoAqXHSeUpBDFjZLkjlOOA * __this, uint16_t param_0000c8a6, MethodInfo * method)); +DO_APP_FUNC(0x0206FA10, void, MsYMviDNoAqXHSeUpBDFjZLkjlOOA__ctor_3, (MsYMviDNoAqXHSeUpBDFjZLkjlOOA * __this, int16_t param_0000c8a7, MethodInfo * method)); +DO_APP_FUNC(0x0206FA10, void, MsYMviDNoAqXHSeUpBDFjZLkjlOOA__ctor_4, (MsYMviDNoAqXHSeUpBDFjZLkjlOOA * __this, uint16_t param_0000c8a8, MethodInfo * method)); +DO_APP_FUNC(0x00959BA0, void, MsYMviDNoAqXHSeUpBDFjZLkjlOOA__ctor_5, (MsYMviDNoAqXHSeUpBDFjZLkjlOOA * __this, int32_t param_0000c8a9, MethodInfo * method)); +DO_APP_FUNC(0x00959BA0, void, MsYMviDNoAqXHSeUpBDFjZLkjlOOA__ctor_6, (MsYMviDNoAqXHSeUpBDFjZLkjlOOA * __this, uint32_t param_0000c8aa, MethodInfo * method)); +DO_APP_FUNC(0x00C42840, void, MsYMviDNoAqXHSeUpBDFjZLkjlOOA__ctor_7, (MsYMviDNoAqXHSeUpBDFjZLkjlOOA * __this, float param_0000c8ab, MethodInfo * method)); +DO_APP_FUNC(0x0206FA00, void, MsYMviDNoAqXHSeUpBDFjZLkjlOOA__ctor_8, (MsYMviDNoAqXHSeUpBDFjZLkjlOOA * __this, bool param_0000c8ac, MethodInfo * method)); DO_APP_FUNC(0x00C3C210, uint8_t, MsYMviDNoAqXHSeUpBDFjZLkjlOOA_MTAZOborZiidxfcamkRsTuMeEDrw, (MsYMviDNoAqXHSeUpBDFjZLkjlOOA param_0000c8ad, MethodInfo * method)); DO_APP_FUNC(0x00C3C210, int8_t, MsYMviDNoAqXHSeUpBDFjZLkjlOOA_MTAZOborZiidxfcamkRsTuMeEDrw_1, (MsYMviDNoAqXHSeUpBDFjZLkjlOOA param_0000c8ae, MethodInfo * method)); DO_APP_FUNC(0x01AA9AD0, uint16_t, MsYMviDNoAqXHSeUpBDFjZLkjlOOA_MTAZOborZiidxfcamkRsTuMeEDrw_2, (MsYMviDNoAqXHSeUpBDFjZLkjlOOA param_0000c8af, MethodInfo * method)); @@ -50691,31 +59310,36 @@ DO_APP_FUNC(0x00959BB0, MsYMviDNoAqXHSeUpBDFjZLkjlOOA, MsYMviDNoAqXHSeUpBDFjZLkj DO_APP_FUNC(0x00959BB0, MsYMviDNoAqXHSeUpBDFjZLkjlOOA, MsYMviDNoAqXHSeUpBDFjZLkjlOOA_MTAZOborZiidxfcamkRsTuMeEDrw_11, (uint32_t param_0000c8b8, MethodInfo * method)); DO_APP_FUNC(0x0206FA70, MsYMviDNoAqXHSeUpBDFjZLkjlOOA, MsYMviDNoAqXHSeUpBDFjZLkjlOOA_MTAZOborZiidxfcamkRsTuMeEDrw_12, (float param_0000c8b9, MethodInfo * method)); DO_APP_FUNC(0x0206FA30, MsYMviDNoAqXHSeUpBDFjZLkjlOOA, MsYMviDNoAqXHSeUpBDFjZLkjlOOA_MTAZOborZiidxfcamkRsTuMeEDrw_13, (bool param_0000c8ba, MethodInfo * method)); -DO_APP_FUNC(0x00959BA0, void, sHDwBRMooebxoGSNvHjjoyZmsXnf__ctor, (sHDwBRMooebxoGSNvHjjoyZmsXnf__Boxed * __this, int32_t param_0000c8bb, MethodInfo * method)); -DO_APP_FUNC(0x00C42840, void, sHDwBRMooebxoGSNvHjjoyZmsXnf__ctor_1, (sHDwBRMooebxoGSNvHjjoyZmsXnf__Boxed * __this, float param_0000c8bc, MethodInfo * method)); +DO_APP_FUNC(0x00959BA0, void, sHDwBRMooebxoGSNvHjjoyZmsXnf__ctor, (sHDwBRMooebxoGSNvHjjoyZmsXnf * __this, int32_t param_0000c8bb, MethodInfo * method)); +DO_APP_FUNC(0x00C42840, void, sHDwBRMooebxoGSNvHjjoyZmsXnf__ctor_1, (sHDwBRMooebxoGSNvHjjoyZmsXnf * __this, float param_0000c8bc, MethodInfo * method)); DO_APP_FUNC(0x00959BB0, int32_t, sHDwBRMooebxoGSNvHjjoyZmsXnf_MTAZOborZiidxfcamkRsTuMeEDrw, (sHDwBRMooebxoGSNvHjjoyZmsXnf param_0000c8bd, MethodInfo * method)); DO_APP_FUNC(0x0206FA20, float, sHDwBRMooebxoGSNvHjjoyZmsXnf_MTAZOborZiidxfcamkRsTuMeEDrw_1, (sHDwBRMooebxoGSNvHjjoyZmsXnf param_0000c8be, MethodInfo * method)); DO_APP_FUNC(0x00959BB0, sHDwBRMooebxoGSNvHjjoyZmsXnf, sHDwBRMooebxoGSNvHjjoyZmsXnf_MTAZOborZiidxfcamkRsTuMeEDrw_2, (int32_t param_0000c8bf, MethodInfo * method)); DO_APP_FUNC(0x0206FA70, sHDwBRMooebxoGSNvHjjoyZmsXnf, sHDwBRMooebxoGSNvHjjoyZmsXnf_MTAZOborZiidxfcamkRsTuMeEDrw_3, (float param_0000c8c0, MethodInfo * method)); -DO_APP_FUNC(0x0206FA80, void, dpNDXgBlEjauEbziedBzBFEZItWPB__ctor, (dpNDXgBlEjauEbziedBzBFEZItWPB__Boxed * __this, int64_t param_0000c8c1, MethodInfo * method)); -DO_APP_FUNC(0x0206F940, void, dpNDXgBlEjauEbziedBzBFEZItWPB__ctor_1, (dpNDXgBlEjauEbziedBzBFEZItWPB__Boxed * __this, double param_0000c8c2, MethodInfo * method)); +DO_APP_FUNC(0x0206FA80, void, dpNDXgBlEjauEbziedBzBFEZItWPB__ctor, (dpNDXgBlEjauEbziedBzBFEZItWPB * __this, int64_t param_0000c8c1, MethodInfo * method)); +DO_APP_FUNC(0x0206F940, void, dpNDXgBlEjauEbziedBzBFEZItWPB__ctor_1, (dpNDXgBlEjauEbziedBzBFEZItWPB * __this, double param_0000c8c2, MethodInfo * method)); DO_APP_FUNC(0x00A1B820, int64_t, dpNDXgBlEjauEbziedBzBFEZItWPB_MTAZOborZiidxfcamkRsTuMeEDrw, (dpNDXgBlEjauEbziedBzBFEZItWPB param_0000c8c3, MethodInfo * method)); DO_APP_FUNC(0x0206F960, double, dpNDXgBlEjauEbziedBzBFEZItWPB_MTAZOborZiidxfcamkRsTuMeEDrw_1, (dpNDXgBlEjauEbziedBzBFEZItWPB param_0000c8c4, MethodInfo * method)); DO_APP_FUNC(0x0206FA90, dpNDXgBlEjauEbziedBzBFEZItWPB, dpNDXgBlEjauEbziedBzBFEZItWPB_MTAZOborZiidxfcamkRsTuMeEDrw_2, (int64_t param_0000c8c5, MethodInfo * method)); DO_APP_FUNC(0x0206F9F0, dpNDXgBlEjauEbziedBzBFEZItWPB, dpNDXgBlEjauEbziedBzBFEZItWPB_MTAZOborZiidxfcamkRsTuMeEDrw_3, (double param_0000c8c6, MethodInfo * method)); -DO_APP_FUNC(0x0206FAB0, float, Float2x_get_Item, (Float2x__Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x0206FB30, void, Float2x_set_Item, (Float2x__Boxed * __this, int32_t index, float value, MethodInfo * method)); -DO_APP_FUNC(0x003CAF50, void, Float2x__ctor, (Float2x__Boxed * __this, float param_0000c8ca, float param_0000c8cb, MethodInfo * method)); -DO_APP_FUNC(0x0206FBB0, Float2x, Float2x_Clone, (Float2x__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0206FAB0, float, Float2x_get_Item, (Float2x * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2190, Float2x_get_Item__MethodInfo); +DO_APP_FUNC(0x0206FB30, void, Float2x_set_Item, (Float2x * __this, int32_t index, float value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2188, Float2x_set_Item__MethodInfo); +DO_APP_FUNC(0x003CAF50, void, Float2x__ctor, (Float2x * __this, float param_0000c8ca, float param_0000c8cb, MethodInfo * method)); +DO_APP_FUNC(0x0206FBB0, Float2x, Float2x_Clone, (Float2x * __this, MethodInfo * method)); DO_APP_FUNC(0x02009480, Float2x, Float2x_Clone_1, (Float2x obj, MethodInfo * method)); DO_APP_FUNC(0x0206FBD0, Float2x, Float2x_get_Zero, (MethodInfo * method)); -DO_APP_FUNC(0x0206FBE0, bool, Float2x_Equals, (Float2x__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0206FC80, int32_t, Float2x_GetHashCode, (Float2x__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0206FCC0, bool, Float2x_Equals_1, (Float2x__Boxed * __this, Float2x other, MethodInfo * method)); -DO_APP_FUNC(0x0206FCF0, String *, Float2x_ToString, (Float2x__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0206FBE0, bool, Float2x_Equals, (Float2x * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x0206FC80, int32_t, Float2x_GetHashCode, (Float2x * __this, MethodInfo * method)); +DO_APP_FUNC(0x0206FCC0, bool, Float2x_Equals_1, (Float2x * __this, Float2x other, MethodInfo * method)); +DO_APP_FUNC(0x0206FCF0, String *, Float2x_ToString, (Float2x * __this, MethodInfo * method)); DO_APP_FUNC(0x0206FD60, Float2x, Float2x_Add, (Float2x value1, Float2x value2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2178, Float2x_Add__MethodInfo); DO_APP_FUNC(0x0206FDA0, Float2x, Float2x_Subtract, (Float2x value1, Float2x value2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2170, Float2x_Subtract__MethodInfo); DO_APP_FUNC(0x0206FDE0, Float2x, Float2x_Multiply, (Float2x value1, Float2x value2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC21C0, Float2x_Multiply__MethodInfo); DO_APP_FUNC(0x0206FE20, Float2x, Float2x_Divide, (Float2x value1, Float2x value2, MethodInfo * method)); DO_APP_FUNC(0x0206FE60, Func_3_Rewired_Utils_Classes_Data_Float2x_Rewired_Utils_Classes_Data_Float2x_Rewired_Utils_Classes_Data_Float2x_ *, Float2x_GetAdditionDelegate, (MethodInfo * method)); DO_APP_FUNC(0x0206FF80, Func_3_Rewired_Utils_Classes_Data_Float2x_Rewired_Utils_Classes_Data_Float2x_Rewired_Utils_Classes_Data_Float2x_ *, Float2x_GetSubtractionDelegate, (MethodInfo * method)); @@ -50731,19 +59355,24 @@ DO_APP_FUNC(0x020702E0, Float2x, Float2x_op_Addition_1, (Float2x value1, float v DO_APP_FUNC(0x02070310, Float2x, Float2x_op_Subtraction_1, (Float2x value1, float value2, MethodInfo * method)); DO_APP_FUNC(0x02070340, Float2x, Float2x_op_Multiply_1, (Float2x value1, float value2, MethodInfo * method)); DO_APP_FUNC(0x02070370, Float2x, Float2x_op_Division_1, (Float2x value1, float value2, MethodInfo * method)); -DO_APP_FUNC(0x020703A0, float, Float3x_get_Item, (Float3x__Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x02070430, void, Float3x_set_Item, (Float3x__Boxed * __this, int32_t index, float value, MethodInfo * method)); -DO_APP_FUNC(0x003CAFD0, void, Float3x__ctor, (Float3x__Boxed * __this, float param_0000c8ec, float param_0000c8ed, float param_0000c8ee, MethodInfo * method)); -DO_APP_FUNC(0x020704C0, Float3x, Float3x_Clone, (Float3x__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x020703A0, float, Float3x_get_Item, (Float3x * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC21B0, Float3x_get_Item__MethodInfo); +DO_APP_FUNC(0x02070430, void, Float3x_set_Item, (Float3x * __this, int32_t index, float value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC21B8, Float3x_set_Item__MethodInfo); +DO_APP_FUNC(0x003CAFD0, void, Float3x__ctor, (Float3x * __this, float param_0000c8ec, float param_0000c8ed, float param_0000c8ee, MethodInfo * method)); +DO_APP_FUNC(0x020704C0, Float3x, Float3x_Clone, (Float3x * __this, MethodInfo * method)); DO_APP_FUNC(0x020704E0, Float3x, Float3x_Clone_1, (Float3x obj, MethodInfo * method)); DO_APP_FUNC(0x00976FA0, Float3x, Float3x_get_Zero, (MethodInfo * method)); -DO_APP_FUNC(0x02070500, bool, Float3x_Equals, (Float3x__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x020705B0, int32_t, Float3x_GetHashCode, (Float3x__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02070610, bool, Float3x_Equals_1, (Float3x__Boxed * __this, Float3x other, MethodInfo * method)); -DO_APP_FUNC(0x02070640, String *, Float3x_ToString, (Float3x__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02070500, bool, Float3x_Equals, (Float3x * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x020705B0, int32_t, Float3x_GetHashCode, (Float3x * __this, MethodInfo * method)); +DO_APP_FUNC(0x02070610, bool, Float3x_Equals_1, (Float3x * __this, Float3x other, MethodInfo * method)); +DO_APP_FUNC(0x02070640, String *, Float3x_ToString, (Float3x * __this, MethodInfo * method)); DO_APP_FUNC(0x02070830, Float3x, Float3x_Add, (Float3x value1, Float3x value2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC21A0, Float3x_Add__MethodInfo); DO_APP_FUNC(0x02070880, Float3x, Float3x_Subtract, (Float3x value1, Float3x value2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2138, Float3x_Subtract__MethodInfo); DO_APP_FUNC(0x020708D0, Float3x, Float3x_Multiply, (Float3x value1, Float3x value2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2130, Float3x_Multiply__MethodInfo); DO_APP_FUNC(0x02070920, Float3x, Float3x_Divide, (Float3x value1, Float3x value2, MethodInfo * method)); DO_APP_FUNC(0x02070970, Func_3_Rewired_Utils_Classes_Data_Float3x_Rewired_Utils_Classes_Data_Float3x_Rewired_Utils_Classes_Data_Float3x_ *, Float3x_GetAdditionDelegate, (MethodInfo * method)); DO_APP_FUNC(0x02070A90, Func_3_Rewired_Utils_Classes_Data_Float3x_Rewired_Utils_Classes_Data_Float3x_Rewired_Utils_Classes_Data_Float3x_ *, Float3x_GetSubtractionDelegate, (MethodInfo * method)); @@ -50759,19 +59388,24 @@ DO_APP_FUNC(0x02070E70, Float3x, Float3x_op_Addition_1, (Float3x value1, float v DO_APP_FUNC(0x02070EA0, Float3x, Float3x_op_Subtraction_1, (Float3x value1, float value2, MethodInfo * method)); DO_APP_FUNC(0x0202C580, Float3x, Float3x_op_Multiply_1, (Float3x value1, float value2, MethodInfo * method)); DO_APP_FUNC(0x0202C5B0, Float3x, Float3x_op_Division_1, (Float3x value1, float value2, MethodInfo * method)); -DO_APP_FUNC(0x02070ED0, float, Float4x_get_Item, (Float4x__Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x02070F70, void, Float4x_set_Item, (Float4x__Boxed * __this, int32_t index, float value, MethodInfo * method)); -DO_APP_FUNC(0x003CAFE0, void, Float4x__ctor, (Float4x__Boxed * __this, float param_0000c90f, float param_0000c910, float param_0000c911, float param_0000c912, MethodInfo * method)); -DO_APP_FUNC(0x00B901D0, Float4x, Float4x_Clone, (Float4x__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02070ED0, float, Float4x_get_Item, (Float4x * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2128, Float4x_get_Item__MethodInfo); +DO_APP_FUNC(0x02070F70, void, Float4x_set_Item, (Float4x * __this, int32_t index, float value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2120, Float4x_set_Item__MethodInfo); +DO_APP_FUNC(0x003CAFE0, void, Float4x__ctor, (Float4x * __this, float param_0000c90f, float param_0000c910, float param_0000c911, float param_0000c912, MethodInfo * method)); +DO_APP_FUNC(0x00B901D0, Float4x, Float4x_Clone, (Float4x * __this, MethodInfo * method)); DO_APP_FUNC(0x02071010, Float4x, Float4x_Clone_1, (Float4x obj, MethodInfo * method)); DO_APP_FUNC(0x00A9AD90, Float4x, Float4x_get_Zero, (MethodInfo * method)); -DO_APP_FUNC(0x02071030, bool, Float4x_Equals, (Float4x__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x020710E0, int32_t, Float4x_GetHashCode, (Float4x__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02071150, bool, Float4x_Equals_1, (Float4x__Boxed * __this, Float4x other, MethodInfo * method)); -DO_APP_FUNC(0x02071190, String *, Float4x_ToString, (Float4x__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02071030, bool, Float4x_Equals, (Float4x * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x020710E0, int32_t, Float4x_GetHashCode, (Float4x * __this, MethodInfo * method)); +DO_APP_FUNC(0x02071150, bool, Float4x_Equals_1, (Float4x * __this, Float4x other, MethodInfo * method)); +DO_APP_FUNC(0x02071190, String *, Float4x_ToString, (Float4x * __this, MethodInfo * method)); DO_APP_FUNC(0x02071410, Float4x, Float4x_Add, (Float4x value1, Float4x value2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2158, Float4x_Add__MethodInfo); DO_APP_FUNC(0x02071480, Float4x, Float4x_Subtract, (Float4x value1, Float4x value2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2150, Float4x_Subtract__MethodInfo); DO_APP_FUNC(0x020714F0, Float4x, Float4x_Multiply, (Float4x value1, Float4x value2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2148, Float4x_Multiply__MethodInfo); DO_APP_FUNC(0x02071560, Float4x, Float4x_Divide, (Float4x value1, Float4x value2, MethodInfo * method)); DO_APP_FUNC(0x020715D0, Func_3_Rewired_Utils_Classes_Data_Float4x_Rewired_Utils_Classes_Data_Float4x_Rewired_Utils_Classes_Data_Float4x_ *, Float4x_GetAdditionDelegate, (MethodInfo * method)); DO_APP_FUNC(0x020716F0, Func_3_Rewired_Utils_Classes_Data_Float4x_Rewired_Utils_Classes_Data_Float4x_Rewired_Utils_Classes_Data_Float4x_ *, Float4x_GetSubtractionDelegate, (MethodInfo * method)); @@ -50787,13 +59421,13 @@ DO_APP_FUNC(0x02071B90, Float4x, Float4x_op_Addition_1, (Float4x value1, float v DO_APP_FUNC(0x02071BB0, Float4x, Float4x_op_Subtraction_1, (Float4x value1, float value2, MethodInfo * method)); DO_APP_FUNC(0x02071BD0, Float4x, Float4x_op_Multiply_1, (Float4x value1, float value2, MethodInfo * method)); DO_APP_FUNC(0x02071BF0, Float4x, Float4x_op_Division_1, (Float4x value1, float value2, MethodInfo * method)); -DO_APP_FUNC(0x003CAFE0, void, ScreenRect__ctor, (ScreenRect__Boxed * __this, float param_0000c930, float param_0000c931, float param_0000c932, float param_0000c933, MethodInfo * method)); -DO_APP_FUNC(0x02071C10, float, ScreenRect_get_xMax, (ScreenRect__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02071C20, void, ScreenRect_set_xMax, (ScreenRect__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02071C30, float, ScreenRect_get_yMax, (ScreenRect__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02071C40, void, ScreenRect_set_yMax, (ScreenRect__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02071C50, Vector2, ScreenRect_get_center, (ScreenRect__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02071C80, String *, ScreenRect_ToString, (ScreenRect__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x003CAFE0, void, ScreenRect__ctor, (ScreenRect * __this, float param_0000c930, float param_0000c931, float param_0000c932, float param_0000c933, MethodInfo * method)); +DO_APP_FUNC(0x02071C10, float, ScreenRect_get_xMax, (ScreenRect * __this, MethodInfo * method)); +DO_APP_FUNC(0x02071C20, void, ScreenRect_set_xMax, (ScreenRect * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02071C30, float, ScreenRect_get_yMax, (ScreenRect * __this, MethodInfo * method)); +DO_APP_FUNC(0x02071C40, void, ScreenRect_set_yMax, (ScreenRect * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02071C50, Vector2, ScreenRect_get_center, (ScreenRect * __this, MethodInfo * method)); +DO_APP_FUNC(0x02071C80, String *, ScreenRect_ToString, (ScreenRect * __this, MethodInfo * method)); DO_APP_FUNC(0x02071ED0, Rect, ScreenRect_op_Implicit, (ScreenRect o, MethodInfo * method)); DO_APP_FUNC(0x02071F00, ScreenRect, ScreenRect_op_Implicit_1, (Rect o, MethodInfo * method)); DO_APP_FUNC(0x02071F30, bool, OXcOHDpoGGXVUtAOolfnMbASfEDk_CTSNVtOErUgHLezDeQIcEzENJipJ, (OXcOHDpoGGXVUtAOolfnMbASfEDk * __this, MethodInfo * method)); @@ -50811,9 +59445,12 @@ DO_APP_FUNC(0x02072B30, Rect, MEIcAwwiwfxCakEEEUBTQSedPtTj_qagdjZIqzVpObKYvzICcF DO_APP_FUNC(0x02072E50, Vector2, MEIcAwwiwfxCakEEEUBTQSedPtTj_XjdaCUNFTorpVlFkooiTNUYIOxGG, (Canvas * param_0000c970, RectTransform * param_0000c971, Vector2 param_0000c972, MethodInfo * method)); DO_APP_FUNC(0x02072EA0, Vector2, MEIcAwwiwfxCakEEEUBTQSedPtTj_xwgYfqPiMjzJtEgEAWbZIUJJDyTh, (Canvas * param_0000c973, RectTransform * param_0000c974, Vector2 param_0000c975, MethodInfo * method)); DO_APP_FUNC(0x02073090, Vector2, MEIcAwwiwfxCakEEEUBTQSedPtTj_tpTRUNDsaBCykFpEdbpsIfdzIXWE, (RectTransform * param_0000c976, Vector3 param_0000c977, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC20F8, MEIcAwwiwfxCakEEEUBTQSedPtTj_tpTRUNDsaBCykFpEdbpsIfdzIXWE__MethodInfo); DO_APP_FUNC(0x020732A0, Vector2, MEIcAwwiwfxCakEEEUBTQSedPtTj_OWMDlRzjAwtqboUUFOJpZWvBYAc, (Rect param_0000c978, Vector2 param_0000c979, MethodInfo * method)); DO_APP_FUNC(0x020732D0, Vector3, MEIcAwwiwfxCakEEEUBTQSedPtTj_CAADDLjzXCWvNHvQgaHRmCKPDgkAA, (Transform * param_0000c97a, PositionType__Enum param_0000c97b, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC20E8, MEIcAwwiwfxCakEEEUBTQSedPtTj_CAADDLjzXCWvNHvQgaHRmCKPDgkAA__MethodInfo); DO_APP_FUNC(0x020734E0, void, MEIcAwwiwfxCakEEEUBTQSedPtTj_RUzAbUaNDzpWmkCOwIQxktbbtIDtA, (Transform * param_0000c97c, Vector3 param_0000c97d, PositionType__Enum param_0000c97e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC20F0, MEIcAwwiwfxCakEEEUBTQSedPtTj_RUzAbUaNDzpWmkCOwIQxktbbtIDtA__MethodInfo); DO_APP_FUNC(0x003BCBE0, void, BitmaskAttribute__ctor, (BitmaskAttribute * __this, Type * param_0000c9b6, MethodInfo * method)); DO_APP_FUNC(0x020736E0, void, BitmaskToggleAttribute__ctor, (BitmaskToggleAttribute * __this, Type * param_0000c9b7, MethodInfo * method)); DO_APP_FUNC(0x003BC3C0, float, FieldRangeAttribute_get_minFloat, (FieldRangeAttribute * __this, MethodInfo * method)); @@ -50890,8 +59527,10 @@ DO_APP_FUNC(0x020884C0, void, DebugInformation_ISUYuYsjJYHFziEhEbUyviTWasidb_lhW DO_APP_FUNC(0x02088510, void, DebugInformation_aydvhcciCTimIvmZBgdBvkxppqpr__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, DebugInformation_aydvhcciCTimIvmZBgdBvkxppqpr__ctor, (DebugInformation_aydvhcciCTimIvmZBgdBvkxppqpr * __this, MethodInfo * method)); DO_APP_FUNC(0x020885C0, int32_t, DebugInformation_aydvhcciCTimIvmZBgdBvkxppqpr_NtmgZYGpzdJNIzphzwiRlcgwkqXdA, (DebugInformation_aydvhcciCTimIvmZBgdBvkxppqpr * __this, InputAction * param_0000ca43, InputAction * param_0000ca44, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC1D50, DebugInformation_aydvhcciCTimIvmZBgdBvkxppqpr_NtmgZYGpzdJNIzphzwiRlcgwkqXdA__MethodInfo); DO_APP_FUNC(0x003AE050, void, DebugInformation_EHkXTvvEARMDArDMvUfiiuUBVejl__ctor, (DebugInformation_EHkXTvvEARMDArDMvUfiiuUBVejl * __this, MethodInfo * method)); DO_APP_FUNC(0x020885F0, bool, DebugInformation_EHkXTvvEARMDArDMvUfiiuUBVejl_NjPknwttbMQekDbLnMMaViwUSTTH, (DebugInformation_EHkXTvvEARMDArDMvUfiiuUBVejl * __this, InputAction * param_0000ca45, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC1EF8, DebugInformation_EHkXTvvEARMDArDMvUfiiuUBVejl_NjPknwttbMQekDbLnMMaViwUSTTH__MethodInfo); DO_APP_FUNC(0x02088620, void, DirectInputJoystickElementIdentifier_Awake, (DirectInputJoystickElementIdentifier * __this, MethodInfo * method)); DO_APP_FUNC(0x02088AC0, void, DirectInputJoystickElementIdentifier_Start, (DirectInputJoystickElementIdentifier * __this, MethodInfo * method)); DO_APP_FUNC(0x02088B20, void, DirectInputJoystickElementIdentifier_Update, (DirectInputJoystickElementIdentifier * __this, MethodInfo * method)); @@ -51215,8 +59854,11 @@ DO_APP_FUNC(0x018BC880, void, WMRSpatialController_set_pointerRotation, (WMRSpat DO_APP_FUNC(0x029168E0, void, WMRSpatialController_FinishSetup, (WMRSpatialController * __this, MethodInfo * method)); DO_APP_FUNC(0x018BD410, void, WMRSpatialController__ctor, (WMRSpatialController * __this, MethodInfo * method)); DO_APP_FUNC(0x02917210, Type *, InputInteraction_GetValueType, (Type * interactionType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC15E8, InputInteraction_GetValueType__MethodInfo); DO_APP_FUNC(0x02917300, String *, InputInteraction_GetDisplayName, (String * interaction, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC15B8, InputInteraction_GetDisplayName__MethodInfo); DO_APP_FUNC(0x02917400, String *, InputInteraction_GetDisplayName_1, (Type * interactionType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC15C8, InputInteraction_GetDisplayName_1__MethodInfo); DO_APP_FUNC(0x003BB3C0, String *, InputAction_1_get_name, (InputAction_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, InputActionType__Enum_1, InputAction_1_get_type, (InputAction_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x029175B0, Guid, InputAction_1_get_id, (InputAction_1 * __this, MethodInfo * method)); @@ -51269,27 +59911,29 @@ DO_APP_FUNC(0x02919AF0, void, InputAction_1_RequestInitialStateCheckOnEnabledAct DO_APP_FUNC(0x02919BC0, bool, InputAction_1_ActiveControlIsValid, (InputAction_1 * __this, InputControl * control, MethodInfo * method)); DO_APP_FUNC(0x02919CD0, Nullable_1_UnityEngine_InputSystem_InputBinding_, InputAction_1_FindEffectiveBindingMask, (InputAction_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02919E00, int32_t, InputAction_1_BindingIndexOnActionToBindingIndexOnMap, (InputAction_1 * __this, int32_t indexOfBindingOnAction, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC1490, InputAction_1_BindingIndexOnActionToBindingIndexOnMap__MethodInfo); DO_APP_FUNC(0x02919FC0, int32_t, InputAction_1_BindingIndexOnMapToBindingIndexOnAction, (InputAction_1 * __this, int32_t indexOfBindingOnMap, MethodInfo * method)); -DO_APP_FUNC(0x00471920, int32_t, InputAction_CallbackContext_get_actionIndex, (InputAction_CallbackContext__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0291A160, int32_t, InputAction_CallbackContext_get_bindingIndex, (InputAction_CallbackContext__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0291A190, int32_t, InputAction_CallbackContext_get_controlIndex, (InputAction_CallbackContext__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0291A1D0, int32_t, InputAction_CallbackContext_get_interactionIndex, (InputAction_CallbackContext__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0291A210, InputActionPhase__Enum, InputAction_CallbackContext_get_phase, (InputAction_CallbackContext__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0291A230, bool, InputAction_CallbackContext_get_started, (InputAction_CallbackContext__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0291A260, bool, InputAction_CallbackContext_get_performed, (InputAction_CallbackContext__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0291A290, bool, InputAction_CallbackContext_get_canceled, (InputAction_CallbackContext__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0291A2C0, InputAction_1 *, InputAction_CallbackContext_get_action, (InputAction_CallbackContext__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0291A2F0, InputControl *, InputAction_CallbackContext_get_control, (InputAction_CallbackContext__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0291A360, IInputInteraction *, InputAction_CallbackContext_get_interaction, (InputAction_CallbackContext__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0291A3C0, double, InputAction_CallbackContext_get_time, (InputAction_CallbackContext__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0291A3F0, double, InputAction_CallbackContext_get_startTime, (InputAction_CallbackContext__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0291A420, double, InputAction_CallbackContext_get_duration, (InputAction_CallbackContext__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0291A470, Type *, InputAction_CallbackContext_get_valueType, (InputAction_CallbackContext__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0291A560, int32_t, InputAction_CallbackContext_get_valueSizeInBytes, (InputAction_CallbackContext__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0291A650, void, InputAction_CallbackContext_ReadValue, (InputAction_CallbackContext__Boxed * __this, Void * buffer, int32_t bufferSize, MethodInfo * method)); -DO_APP_FUNC(0x0291A850, bool, InputAction_CallbackContext_ReadValueAsButton, (InputAction_CallbackContext__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0291AA70, Object *, InputAction_CallbackContext_ReadValueAsObject, (InputAction_CallbackContext__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0291AB10, String *, InputAction_CallbackContext_ToString, (InputAction_CallbackContext__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471920, int32_t, InputAction_CallbackContext_get_actionIndex, (InputAction_CallbackContext * __this, MethodInfo * method)); +DO_APP_FUNC(0x0291A160, int32_t, InputAction_CallbackContext_get_bindingIndex, (InputAction_CallbackContext * __this, MethodInfo * method)); +DO_APP_FUNC(0x0291A190, int32_t, InputAction_CallbackContext_get_controlIndex, (InputAction_CallbackContext * __this, MethodInfo * method)); +DO_APP_FUNC(0x0291A1D0, int32_t, InputAction_CallbackContext_get_interactionIndex, (InputAction_CallbackContext * __this, MethodInfo * method)); +DO_APP_FUNC(0x0291A210, InputActionPhase__Enum, InputAction_CallbackContext_get_phase, (InputAction_CallbackContext * __this, MethodInfo * method)); +DO_APP_FUNC(0x0291A230, bool, InputAction_CallbackContext_get_started, (InputAction_CallbackContext * __this, MethodInfo * method)); +DO_APP_FUNC(0x0291A260, bool, InputAction_CallbackContext_get_performed, (InputAction_CallbackContext * __this, MethodInfo * method)); +DO_APP_FUNC(0x0291A290, bool, InputAction_CallbackContext_get_canceled, (InputAction_CallbackContext * __this, MethodInfo * method)); +DO_APP_FUNC(0x0291A2C0, InputAction_1 *, InputAction_CallbackContext_get_action, (InputAction_CallbackContext * __this, MethodInfo * method)); +DO_APP_FUNC(0x0291A2F0, InputControl *, InputAction_CallbackContext_get_control, (InputAction_CallbackContext * __this, MethodInfo * method)); +DO_APP_FUNC(0x0291A360, IInputInteraction *, InputAction_CallbackContext_get_interaction, (InputAction_CallbackContext * __this, MethodInfo * method)); +DO_APP_FUNC(0x0291A3C0, double, InputAction_CallbackContext_get_time, (InputAction_CallbackContext * __this, MethodInfo * method)); +DO_APP_FUNC(0x0291A3F0, double, InputAction_CallbackContext_get_startTime, (InputAction_CallbackContext * __this, MethodInfo * method)); +DO_APP_FUNC(0x0291A420, double, InputAction_CallbackContext_get_duration, (InputAction_CallbackContext * __this, MethodInfo * method)); +DO_APP_FUNC(0x0291A470, Type *, InputAction_CallbackContext_get_valueType, (InputAction_CallbackContext * __this, MethodInfo * method)); +DO_APP_FUNC(0x0291A560, int32_t, InputAction_CallbackContext_get_valueSizeInBytes, (InputAction_CallbackContext * __this, MethodInfo * method)); +DO_APP_FUNC(0x0291A650, void, InputAction_CallbackContext_ReadValue, (InputAction_CallbackContext * __this, Void * buffer, int32_t bufferSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC14A0, InputAction_CallbackContext_ReadValue__MethodInfo); +DO_APP_FUNC(0x0291A850, bool, InputAction_CallbackContext_ReadValueAsButton, (InputAction_CallbackContext * __this, MethodInfo * method)); +DO_APP_FUNC(0x0291AA70, Object *, InputAction_CallbackContext_ReadValueAsObject, (InputAction_CallbackContext * __this, MethodInfo * method)); +DO_APP_FUNC(0x0291AB10, String *, InputAction_CallbackContext_ToString, (InputAction_CallbackContext * __this, MethodInfo * method)); DO_APP_FUNC(0x0291AED0, bool, InputActionAsset_get_enabled, (InputActionAsset * __this, MethodInfo * method)); DO_APP_FUNC(0x0291B0A0, ReadOnlyArray_1_UnityEngine_InputSystem_InputActionMap_, InputActionAsset_get_actionMaps, (InputActionAsset * __this, MethodInfo * method)); DO_APP_FUNC(0x0291B160, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_, InputActionAsset_get_controlSchemes, (InputActionAsset * __this, MethodInfo * method)); @@ -51299,17 +59943,25 @@ DO_APP_FUNC(0x0291B2E0, void, InputActionAsset_set_bindingMask, (InputActionAsse DO_APP_FUNC(0x0291B500, Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1_, InputActionAsset_get_devices, (InputActionAsset * __this, MethodInfo * method)); DO_APP_FUNC(0x0291B540, void, InputActionAsset_set_devices, (InputActionAsset * __this, Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1_ value, MethodInfo * method)); DO_APP_FUNC(0x0291B5C0, InputAction_1 *, InputActionAsset_get_Item, (InputActionAsset * __this, String * actionNameOrId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC14C0, InputActionAsset_get_Item__MethodInfo); DO_APP_FUNC(0x0291B650, String *, InputActionAsset_ToJson, (InputActionAsset * __this, MethodInfo * method)); DO_APP_FUNC(0x0291B950, void, InputActionAsset_LoadFromJson, (InputActionAsset * __this, String * json, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC13F0, InputActionAsset_LoadFromJson__MethodInfo); DO_APP_FUNC(0x0291BAD0, InputActionAsset *, InputActionAsset_FromJson, (String * json, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC1408, InputActionAsset_FromJson__MethodInfo); DO_APP_FUNC(0x0291BCF0, InputAction_1 *, InputActionAsset_FindAction, (InputActionAsset * __this, String * actionNameOrId, bool throwIfNotFound, MethodInfo * method)); -DO_APP_FUNC(0x0291C250, int32_t, InputActionAsset_FindBinding, (InputActionAsset * __this, InputBinding mask, InputAction_1 * action, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC1410, InputActionAsset_FindAction__MethodInfo); +DO_APP_FUNC(0x0291C250, int32_t, InputActionAsset_FindBinding, (InputActionAsset * __this, InputBinding mask, InputAction_1 * * action, MethodInfo * method)); DO_APP_FUNC(0x0291C3B0, InputActionMap *, InputActionAsset_FindActionMap, (InputActionAsset * __this, String * nameOrId, bool throwIfNotFound, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC1448, InputActionAsset_FindActionMap__MethodInfo); DO_APP_FUNC(0x0291C6E0, InputActionMap *, InputActionAsset_FindActionMap_1, (InputActionAsset * __this, Guid id, MethodInfo * method)); DO_APP_FUNC(0x0291C7F0, InputAction_1 *, InputActionAsset_FindAction_1, (InputActionAsset * __this, Guid guid, MethodInfo * method)); DO_APP_FUNC(0x0291C970, int32_t, InputActionAsset_FindControlSchemeIndex, (InputActionAsset * __this, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC1450, InputActionAsset_FindControlSchemeIndex__MethodInfo); DO_APP_FUNC(0x0291CB20, Nullable_1_UnityEngine_InputSystem_InputControlScheme_, InputActionAsset_FindControlScheme, (InputActionAsset * __this, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC1458, InputActionAsset_FindControlScheme__MethodInfo); DO_APP_FUNC(0x0291CCB0, bool, InputActionAsset_IsUsableWithDevice, (InputActionAsset * __this, InputDevice * device, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC13C8, InputActionAsset_IsUsableWithDevice__MethodInfo); DO_APP_FUNC(0x0291CE20, void, InputActionAsset_Enable, (InputActionAsset * __this, MethodInfo * method)); DO_APP_FUNC(0x0291D040, void, InputActionAsset_Disable, (InputActionAsset * __this, MethodInfo * method)); DO_APP_FUNC(0x0291D220, bool, InputActionAsset_Contains, (InputActionAsset * __this, InputAction_1 * action, MethodInfo * method)); @@ -51322,12 +59974,13 @@ DO_APP_FUNC(0x0291D5F0, void, InputActionAsset_ReResolveIfNecessary, (InputActio DO_APP_FUNC(0x0291D630, void, InputActionAsset_ResolveBindingsIfNecessary, (InputActionAsset * __this, MethodInfo * method)); DO_APP_FUNC(0x0291D6D0, void, InputActionAsset_OnDestroy, (InputActionAsset * __this, MethodInfo * method)); DO_APP_FUNC(0x003BA2A0, void, InputActionAsset__ctor, (InputActionAsset * __this, MethodInfo * method)); -DO_APP_FUNC(0x0291D750, void, InputActionAsset_ReadFileJson_ToAsset, (InputActionAsset_ReadFileJson__Boxed * __this, InputActionAsset * asset, MethodInfo * method)); +DO_APP_FUNC(0x0291D750, void, InputActionAsset_ReadFileJson_ToAsset, (InputActionAsset_ReadFileJson * __this, InputActionAsset * asset, MethodInfo * method)); DO_APP_FUNC(0x0291DA60, void, InputActionAsset_get_bindings_d_8__ctor, (InputActionAsset_get_bindings_d_8 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InputActionAsset_get_bindings_d_8_System_IDisposable_Dispose, (InputActionAsset_get_bindings_d_8 * __this, MethodInfo * method)); DO_APP_FUNC(0x0291DA80, bool, InputActionAsset_get_bindings_d_8_MoveNext, (InputActionAsset_get_bindings_d_8 * __this, MethodInfo * method)); DO_APP_FUNC(0x0291DCE0, InputBinding, InputActionAsset_get_bindings_d_8_System_Collections_Generic_IEnumerator_UnityEngine_InputSystem_InputBinding__get_Current, (InputActionAsset_get_bindings_d_8 * __this, MethodInfo * method)); DO_APP_FUNC(0x0291DD20, void, InputActionAsset_get_bindings_d_8_System_Collections_IEnumerator_Reset, (InputActionAsset_get_bindings_d_8 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC1398, InputActionAsset_get_bindings_d_8_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x0291DD70, Object *, InputActionAsset_get_bindings_d_8_System_Collections_IEnumerator_get_Current, (InputActionAsset_get_bindings_d_8 * __this, MethodInfo * method)); DO_APP_FUNC(0x0291DDF0, IEnumerator_1_UnityEngine_InputSystem_InputBinding_ *, InputActionAsset_get_bindings_d_8_System_Collections_Generic_IEnumerable_UnityEngine_InputSystem_InputBinding__GetEnumerator, (InputActionAsset_get_bindings_d_8 * __this, MethodInfo * method)); DO_APP_FUNC(0x0291DDF0, IEnumerator *, InputActionAsset_get_bindings_d_8_System_Collections_IEnumerable_GetEnumerator, (InputActionAsset_get_bindings_d_8 * __this, MethodInfo * method)); @@ -51336,6 +59989,7 @@ DO_APP_FUNC(0x003AE050, void, InputActionAsset_GetEnumerator_d_31_System_IDispos DO_APP_FUNC(0x0291DEE0, bool, InputActionAsset_GetEnumerator_d_31_MoveNext, (InputActionAsset_GetEnumerator_d_31 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, InputAction_1 *, InputActionAsset_GetEnumerator_d_31_System_Collections_Generic_IEnumerator_UnityEngine_InputSystem_InputAction__get_Current, (InputActionAsset_GetEnumerator_d_31 * __this, MethodInfo * method)); DO_APP_FUNC(0x0291E080, void, InputActionAsset_GetEnumerator_d_31_System_Collections_IEnumerator_Reset, (InputActionAsset_GetEnumerator_d_31 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC1388, InputActionAsset_GetEnumerator_d_31_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, InputActionAsset_GetEnumerator_d_31_System_Collections_IEnumerator_get_Current, (InputActionAsset_GetEnumerator_d_31 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, String *, InputActionMap_get_name, (InputActionMap * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, InputActionAsset *, InputActionMap_get_asset, (InputActionMap * __this, MethodInfo * method)); @@ -51351,6 +60005,7 @@ DO_APP_FUNC(0x0291E590, void, InputActionMap_set_bindingMask, (InputActionMap * DO_APP_FUNC(0x0291E7A0, Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1_, InputActionMap_get_devices, (InputActionMap * __this, MethodInfo * method)); DO_APP_FUNC(0x0291E860, void, InputActionMap_set_devices, (InputActionMap * __this, Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1_ value, MethodInfo * method)); DO_APP_FUNC(0x0291E8B0, InputAction_1 *, InputActionMap_get_Item, (InputActionMap * __this, String * actionNameOrId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC13A8, InputActionMap_get_Item__MethodInfo); DO_APP_FUNC(0x0291E9D0, void, InputActionMap_add_actionTriggered, (InputActionMap * __this, Action_1_UnityEngine_InputSystem_InputAction_CallbackContext_ * value, MethodInfo * method)); DO_APP_FUNC(0x0291EA30, void, InputActionMap_remove_actionTriggered, (InputActionMap * __this, Action_1_UnityEngine_InputSystem_InputAction_CallbackContext_ * value, MethodInfo * method)); DO_APP_FUNC(0x0291EA90, void, InputActionMap__ctor, (InputActionMap * __this, MethodInfo * method)); @@ -51361,8 +60016,10 @@ DO_APP_FUNC(0x0291EF90, void, InputActionMap_SetUpActionLookupTable, (InputActio DO_APP_FUNC(0x0291F190, void, InputActionMap_ClearActionLookupTable, (InputActionMap * __this, MethodInfo * method)); DO_APP_FUNC(0x0291F1E0, int32_t, InputActionMap_FindActionIndex_1, (InputActionMap * __this, Guid id, MethodInfo * method)); DO_APP_FUNC(0x0291F2F0, InputAction_1 *, InputActionMap_FindAction, (InputActionMap * __this, String * actionNameOrId, bool throwIfNotFound, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC1338, InputActionMap_FindAction__MethodInfo); DO_APP_FUNC(0x0291F430, InputAction_1 *, InputActionMap_FindAction_1, (InputActionMap * __this, Guid id, MethodInfo * method)); DO_APP_FUNC(0x0291F550, bool, InputActionMap_IsUsableWithDevice, (InputActionMap * __this, InputDevice * device, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC1340, InputActionMap_IsUsableWithDevice__MethodInfo); DO_APP_FUNC(0x0291F660, void, InputActionMap_Enable, (InputActionMap * __this, MethodInfo * method)); DO_APP_FUNC(0x0291F6D0, void, InputActionMap_Disable, (InputActionMap * __this, MethodInfo * method)); DO_APP_FUNC(0x0291F700, InputActionMap *, InputActionMap_Clone, (InputActionMap * __this, MethodInfo * method)); @@ -51383,6 +60040,7 @@ DO_APP_FUNC(0x029200B0, ReadOnlyArray_1_UnityEngine_InputSystem_InputBinding_, I DO_APP_FUNC(0x02920190, ReadOnlyArray_1_UnityEngine_InputSystem_InputControl_, InputActionMap_GetControlsForSingleAction, (InputActionMap * __this, InputAction_1 * action, MethodInfo * method)); DO_APP_FUNC(0x02920270, void, InputActionMap_SetUpPerActionControlAndBindingArrays, (InputActionMap * __this, MethodInfo * method)); DO_APP_FUNC(0x02920FF0, void, InputActionMap_OnWantToChangeSetup, (InputActionMap * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC12E8, InputActionMap_OnWantToChangeSetup__MethodInfo); DO_APP_FUNC(0x029213B0, void, InputActionMap_OnSetupChanged, (InputActionMap * __this, MethodInfo * method)); DO_APP_FUNC(0x02921820, void, InputActionMap_OnBindingModified, (InputActionMap * __this, MethodInfo * method)); DO_APP_FUNC(0x02921850, void, InputActionMap_ClearCachedActionData, (InputActionMap * __this, bool onlyControls, MethodInfo * method)); @@ -51390,87 +60048,125 @@ DO_APP_FUNC(0x02921970, void, InputActionMap_GenerateId, (InputActionMap * __thi DO_APP_FUNC(0x02921A50, bool, InputActionMap_LazyResolveBindings, (InputActionMap * __this, bool fullResolve, MethodInfo * method)); DO_APP_FUNC(0x02921B50, bool, InputActionMap_ResolveBindingsIfNecessary, (InputActionMap * __this, MethodInfo * method)); DO_APP_FUNC(0x02921B90, void, InputActionMap_ResolveBindings, (InputActionMap * __this, MethodInfo * method)); -DO_APP_FUNC(0x02922D30, int32_t, InputActionMap_FindBinding, (InputActionMap * __this, InputBinding mask, InputAction_1 * action, MethodInfo * method)); +DO_APP_FUNC(0x02922D30, int32_t, InputActionMap_FindBinding, (InputActionMap * __this, InputBinding mask, InputAction_1 * * action, MethodInfo * method)); DO_APP_FUNC(0x029230E0, int32_t, InputActionMap_FindBindingRelativeToMap, (InputActionMap * __this, InputBinding mask, MethodInfo * method)); DO_APP_FUNC(0x02923190, InputActionMap__Array *, InputActionMap_FromJson, (String * json, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC1288, InputActionMap_FromJson__MethodInfo); DO_APP_FUNC(0x029232F0, String *, InputActionMap_ToJson, (IEnumerable_1_UnityEngine_InputSystem_InputActionMap_ * maps, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC1298, InputActionMap_ToJson__MethodInfo); DO_APP_FUNC(0x029233B0, String *, InputActionMap_ToJson_1, (InputActionMap * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InputActionMap_OnBeforeSerialize, (InputActionMap * __this, MethodInfo * method)); DO_APP_FUNC(0x02923530, void, InputActionMap_OnAfterDeserialize, (InputActionMap * __this, MethodInfo * method)); -DO_APP_FUNC(0x029236B0, int32_t, InputActionMap_DeviceArray_IndexOf, (InputActionMap_DeviceArray__Boxed * __this, InputDevice * device, MethodInfo * method)); -DO_APP_FUNC(0x02923720, bool, InputActionMap_DeviceArray_Remove, (InputActionMap_DeviceArray__Boxed * __this, InputDevice * device, MethodInfo * method)); -DO_APP_FUNC(0x02923810, Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1_, InputActionMap_DeviceArray_Get, (InputActionMap_DeviceArray__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02923980, bool, InputActionMap_DeviceArray_Set, (InputActionMap_DeviceArray__Boxed * __this, Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1_ devices, MethodInfo * method)); +DO_APP_FUNC(0x029236B0, int32_t, InputActionMap_DeviceArray_IndexOf, (InputActionMap_DeviceArray * __this, InputDevice * device, MethodInfo * method)); +DO_APP_FUNC(0x02923720, bool, InputActionMap_DeviceArray_Remove, (InputActionMap_DeviceArray * __this, InputDevice * device, MethodInfo * method)); +DO_APP_FUNC(0x02923810, Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1_, InputActionMap_DeviceArray_Get, (InputActionMap_DeviceArray * __this, MethodInfo * method)); +DO_APP_FUNC(0x02923980, bool, InputActionMap_DeviceArray_Set, (InputActionMap_DeviceArray * __this, Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1_ devices, MethodInfo * method)); DO_APP_FUNC(0x02923C00, InputActionMap_BindingOverrideJson, InputActionMap_BindingOverrideJson_FromBinding, (InputBinding binding, String * actionName, MethodInfo * method)); DO_APP_FUNC(0x02923E80, InputActionMap_BindingOverrideJson, InputActionMap_BindingOverrideJson_FromBinding_1, (InputBinding binding, MethodInfo * method)); DO_APP_FUNC(0x02923F00, InputBinding, InputActionMap_BindingOverrideJson_ToBinding, (InputActionMap_BindingOverrideJson bindingOverride, MethodInfo * method)); -DO_APP_FUNC(0x029241A0, InputBinding, InputActionMap_BindingJson_ToBinding, (InputActionMap_BindingJson__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x029244A0, InputActionMap_BindingJson, InputActionMap_BindingJson_FromBinding, (InputBinding binding, MethodInfo * method)); -DO_APP_FUNC(0x02924750, InputAction_1 *, InputActionMap_ReadActionJson_ToAction, (InputActionMap_ReadActionJson__Boxed * __this, String * actionName, MethodInfo * method)); +DO_APP_FUNC(0x029241A0, InputBinding, InputActionMap_BindingJson_ToBinding, (InputActionMap_BindingJson * __this, MethodInfo * method)); +DO_APP_FUNC(0x029244A0, InputActionMap_BindingJson, InputActionMap_BindingJson_FromBinding, (InputBinding * binding, MethodInfo * method)); +DO_APP_FUNC(0x02924750, InputAction_1 *, InputActionMap_ReadActionJson_ToAction, (InputActionMap_ReadActionJson * __this, String * actionName, MethodInfo * method)); DO_APP_FUNC(0x02924B80, InputActionMap_WriteActionJson, InputActionMap_WriteActionJson_FromAction, (InputAction_1 * action, MethodInfo * method)); DO_APP_FUNC(0x02924E30, InputActionMap_WriteMapJson, InputActionMap_WriteMapJson_FromMap, (InputActionMap * map, MethodInfo * method)); DO_APP_FUNC(0x029253B0, InputActionMap_WriteFileJson, InputActionMap_WriteFileJson_FromMap, (InputActionMap * map, MethodInfo * method)); DO_APP_FUNC(0x029254F0, InputActionMap_WriteFileJson, InputActionMap_WriteFileJson_FromMaps, (IEnumerable_1_UnityEngine_InputSystem_InputActionMap_ * maps, MethodInfo * method)); -DO_APP_FUNC(0x02925860, InputActionMap__Array *, InputActionMap_ReadFileJson_ToMaps, (InputActionMap_ReadFileJson__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02925860, InputActionMap__Array *, InputActionMap_ReadFileJson_ToMaps, (InputActionMap_ReadFileJson * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC1110, InputActionMap_ReadFileJson_ToMaps__MethodInfo); DO_APP_FUNC(0x02926990, Nullable_1_UnityEngine_InputSystem_Utilities_PrimitiveValue_, InputActionRebindingExtensions_GetParameterValue, (InputAction_1 * action, String * name, InputBinding bindingMask, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC1128, InputActionRebindingExtensions_GetParameterValue__MethodInfo); DO_APP_FUNC(0x02926B80, Nullable_1_UnityEngine_InputSystem_Utilities_PrimitiveValue_, InputActionRebindingExtensions_GetParameterValue_1, (InputAction_1 * action, InputActionRebindingExtensions_ParameterOverride parameterOverride, MethodInfo * method)); DO_APP_FUNC(0x02927020, Nullable_1_UnityEngine_InputSystem_Utilities_PrimitiveValue_, InputActionRebindingExtensions_GetParameterValue_2, (InputAction_1 * action, String * name, int32_t bindingIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC11A8, InputActionRebindingExtensions_GetParameterValue_2__MethodInfo); DO_APP_FUNC(0x02927470, void, InputActionRebindingExtensions_ApplyParameterOverride, (InputActionMap * actionMap, String * name, PrimitiveValue value, InputBinding bindingMask, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC11B0, InputActionRebindingExtensions_ApplyParameterOverride__MethodInfo); DO_APP_FUNC(0x029276B0, void, InputActionRebindingExtensions_ApplyParameterOverride_1, (InputActionAsset * asset, String * name, PrimitiveValue value, InputBinding bindingMask, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC1178, InputActionRebindingExtensions_ApplyParameterOverride_1__MethodInfo); DO_APP_FUNC(0x02927A30, void, InputActionRebindingExtensions_ApplyParameterOverride_2, (InputAction_1 * action, String * name, PrimitiveValue value, InputBinding bindingMask, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC1188, InputActionRebindingExtensions_ApplyParameterOverride_2__MethodInfo); DO_APP_FUNC(0x02927CA0, void, InputActionRebindingExtensions_ApplyParameterOverride_3, (InputAction_1 * action, String * name, PrimitiveValue value, int32_t bindingIndex, MethodInfo * method)); -DO_APP_FUNC(0x029281A0, void, InputActionRebindingExtensions_ApplyParameterOverride_4, (InputActionState * state, int32_t mapIndex, InputActionRebindingExtensions_ParameterOverride__Array * parameterOverrides, int32_t parameterOverridesCount, InputActionRebindingExtensions_ParameterOverride parameterOverride, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC1190, InputActionRebindingExtensions_ApplyParameterOverride_3__MethodInfo); +DO_APP_FUNC(0x029281A0, void, InputActionRebindingExtensions_ApplyParameterOverride_4, (InputActionState * state, int32_t mapIndex, InputActionRebindingExtensions_ParameterOverride__Array * * parameterOverrides, int32_t * parameterOverridesCount, InputActionRebindingExtensions_ParameterOverride parameterOverride, MethodInfo * method)); DO_APP_FUNC(0x02928CE0, int32_t, InputActionRebindingExtensions_GetBindingIndex, (InputAction_1 * action, InputBinding bindingMask, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC10C0, InputActionRebindingExtensions_GetBindingIndex__MethodInfo); DO_APP_FUNC(0x02928F30, int32_t, InputActionRebindingExtensions_GetBindingIndex_1, (InputActionMap * actionMap, InputBinding bindingMask, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC10F0, InputActionRebindingExtensions_GetBindingIndex_1__MethodInfo); DO_APP_FUNC(0x02929180, int32_t, InputActionRebindingExtensions_GetBindingIndex_2, (InputAction_1 * action, String * group, String * path, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC10E8, InputActionRebindingExtensions_GetBindingIndex_2__MethodInfo); DO_APP_FUNC(0x029292B0, Nullable_1_UnityEngine_InputSystem_InputBinding_, InputActionRebindingExtensions_GetBindingForControl, (InputAction_1 * action, InputControl * control, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC10F8, InputActionRebindingExtensions_GetBindingForControl__MethodInfo); DO_APP_FUNC(0x02929500, int32_t, InputActionRebindingExtensions_GetBindingIndexForControl, (InputAction_1 * action, InputControl * control, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC1100, InputActionRebindingExtensions_GetBindingIndexForControl__MethodInfo); DO_APP_FUNC(0x02929700, String *, InputActionRebindingExtensions_GetBindingDisplayString, (InputAction_1 * action, InputBinding_DisplayStringOptions__Enum options, String * group, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC10E0, InputActionRebindingExtensions_GetBindingDisplayString__MethodInfo); DO_APP_FUNC(0x02929A00, String *, InputActionRebindingExtensions_GetBindingDisplayString_1, (InputAction_1 * action, InputBinding bindingMask, InputBinding_DisplayStringOptions__Enum options, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC1028, InputActionRebindingExtensions_GetBindingDisplayString_1__MethodInfo); DO_APP_FUNC(0x02929DB0, String *, InputActionRebindingExtensions_GetBindingDisplayString_2, (InputAction_1 * action, int32_t bindingIndex, InputBinding_DisplayStringOptions__Enum options, MethodInfo * method)); -DO_APP_FUNC(0x02929E40, String *, InputActionRebindingExtensions_GetBindingDisplayString_3, (InputAction_1 * action, int32_t bindingIndex, String * deviceLayoutName, String * controlPath, InputBinding_DisplayStringOptions__Enum options, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC1038, InputActionRebindingExtensions_GetBindingDisplayString_2__MethodInfo); +DO_APP_FUNC(0x02929E40, String *, InputActionRebindingExtensions_GetBindingDisplayString_3, (InputAction_1 * action, int32_t bindingIndex, String * * deviceLayoutName, String * * controlPath, InputBinding_DisplayStringOptions__Enum options, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC1020, InputActionRebindingExtensions_GetBindingDisplayString_3__MethodInfo); DO_APP_FUNC(0x0292A8F0, void, InputActionRebindingExtensions_ApplyBindingOverride, (InputAction_1 * action, String * newPath, String * group, String * path, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC1090, InputActionRebindingExtensions_ApplyBindingOverride__MethodInfo); DO_APP_FUNC(0x0292AAD0, void, InputActionRebindingExtensions_ApplyBindingOverride_1, (InputAction_1 * action, InputBinding bindingOverride, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC1088, InputActionRebindingExtensions_ApplyBindingOverride_1__MethodInfo); DO_APP_FUNC(0x0292AD80, void, InputActionRebindingExtensions_ApplyBindingOverride_2, (InputAction_1 * action, int32_t bindingIndex, InputBinding bindingOverride, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC10A0, InputActionRebindingExtensions_ApplyBindingOverride_2__MethodInfo); DO_APP_FUNC(0x0292AED0, void, InputActionRebindingExtensions_ApplyBindingOverride_3, (InputAction_1 * action, int32_t bindingIndex, String * path, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC10B0, InputActionRebindingExtensions_ApplyBindingOverride_3__MethodInfo); DO_APP_FUNC(0x0292B060, int32_t, InputActionRebindingExtensions_ApplyBindingOverride_4, (InputActionMap * actionMap, InputBinding bindingOverride, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC10A8, InputActionRebindingExtensions_ApplyBindingOverride_4__MethodInfo); DO_APP_FUNC(0x0292B1E0, void, InputActionRebindingExtensions_ApplyBindingOverride_5, (InputActionMap * actionMap, int32_t bindingIndex, InputBinding bindingOverride, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC1060, InputActionRebindingExtensions_ApplyBindingOverride_5__MethodInfo); DO_APP_FUNC(0x0292B3F0, void, InputActionRebindingExtensions_RemoveBindingOverride, (InputAction_1 * action, int32_t bindingIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC1070, InputActionRebindingExtensions_RemoveBindingOverride__MethodInfo); DO_APP_FUNC(0x0292B4B0, void, InputActionRebindingExtensions_RemoveBindingOverride_1, (InputAction_1 * action, InputBinding bindingMask, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC1068, InputActionRebindingExtensions_RemoveBindingOverride_1__MethodInfo); DO_APP_FUNC(0x0292B670, void, InputActionRebindingExtensions_RemoveBindingOverride_2, (InputActionMap * actionMap, InputBinding bindingMask, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC1078, InputActionRebindingExtensions_RemoveBindingOverride_2__MethodInfo); DO_APP_FUNC(0x0292B830, void, InputActionRebindingExtensions_RemoveAllBindingOverrides, (IInputActionCollection2 * actions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0FA8, InputActionRebindingExtensions_RemoveAllBindingOverrides__MethodInfo); DO_APP_FUNC(0x0292BB20, void, InputActionRebindingExtensions_RemoveAllBindingOverrides_1, (InputAction_1 * action, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0FB0, InputActionRebindingExtensions_RemoveAllBindingOverrides_1__MethodInfo); DO_APP_FUNC(0x0292BD50, void, InputActionRebindingExtensions_ApplyBindingOverrides, (InputActionMap * actionMap, IEnumerable_1_UnityEngine_InputSystem_InputBinding_ * overrides, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0F78, InputActionRebindingExtensions_ApplyBindingOverrides__MethodInfo); DO_APP_FUNC(0x0292C020, void, InputActionRebindingExtensions_RemoveBindingOverrides, (InputActionMap * actionMap, IEnumerable_1_UnityEngine_InputSystem_InputBinding_ * overrides, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0F90, InputActionRebindingExtensions_RemoveBindingOverrides__MethodInfo); DO_APP_FUNC(0x0292C460, int32_t, InputActionRebindingExtensions_ApplyBindingOverridesOnMatchingControls, (InputAction_1 * action, InputControl * control, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0FF0, InputActionRebindingExtensions_ApplyBindingOverridesOnMatchingControls__MethodInfo); DO_APP_FUNC(0x0292C7C0, int32_t, InputActionRebindingExtensions_ApplyBindingOverridesOnMatchingControls_1, (InputActionMap * actionMap, InputControl * control, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0FF8, InputActionRebindingExtensions_ApplyBindingOverridesOnMatchingControls_1__MethodInfo); DO_APP_FUNC(0x0292C930, String *, InputActionRebindingExtensions_SaveBindingOverridesAsJson, (IInputActionCollection2 * actions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0FD0, InputActionRebindingExtensions_SaveBindingOverridesAsJson__MethodInfo); DO_APP_FUNC(0x0292CD10, String *, InputActionRebindingExtensions_SaveBindingOverridesAsJson_1, (InputAction_1 * action, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0EF0, InputActionRebindingExtensions_SaveBindingOverridesAsJson_1__MethodInfo); DO_APP_FUNC(0x0292D1C0, void, InputActionRebindingExtensions_AddBindingOverrideJsonTo, (IInputActionCollection2 * actions, InputBinding binding, List_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * list, InputAction_1 * action, MethodInfo * method)); DO_APP_FUNC(0x0292D480, void, InputActionRebindingExtensions_LoadBindingOverridesFromJson, (IInputActionCollection2 * actions, String * json, bool removeExisting, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0E98, InputActionRebindingExtensions_LoadBindingOverridesFromJson__MethodInfo); DO_APP_FUNC(0x0292D5B0, void, InputActionRebindingExtensions_LoadBindingOverridesFromJson_1, (InputAction_1 * action, String * json, bool removeExisting, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0EA8, InputActionRebindingExtensions_LoadBindingOverridesFromJson_1__MethodInfo); DO_APP_FUNC(0x0292D6F0, void, InputActionRebindingExtensions_LoadBindingOverridesFromJsonInternal, (IInputActionCollection2 * actions, String * json, MethodInfo * method)); DO_APP_FUNC(0x0292DE20, InputActionRebindingExtensions_RebindingOperation *, InputActionRebindingExtensions_PerformInteractiveRebinding, (InputAction_1 * action, int32_t bindingIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0F28, InputActionRebindingExtensions_PerformInteractiveRebinding__MethodInfo); DO_APP_FUNC(0x0292E430, InputActionRebindingExtensions_DeferBindingResolutionWrapper *, InputActionRebindingExtensions_DeferBindingResolution, (MethodInfo * method)); -DO_APP_FUNC(0x0292E560, void, InputActionRebindingExtensions_ParameterEnumerable__ctor, (InputActionRebindingExtensions_ParameterEnumerable__Boxed * __this, InputActionState * state, InputActionRebindingExtensions_ParameterOverride parameter, int32_t mapIndex, MethodInfo * method)); -DO_APP_FUNC(0x0292E670, InputActionRebindingExtensions_ParameterEnumerator, InputActionRebindingExtensions_ParameterEnumerable_GetEnumerator, (InputActionRebindingExtensions_ParameterEnumerable__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0292E7A0, IEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_Parameter_ *, InputActionRebindingExtensions_ParameterEnumerable_System_Collections_Generic_IEnumerable_UnityEngine_InputSystem_InputActionRebindingExtensions_Parameter__GetEnumerator, (InputActionRebindingExtensions_ParameterEnumerable__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0292E870, IEnumerator *, InputActionRebindingExtensions_ParameterEnumerable_System_Collections_IEnumerable_GetEnumerator, (InputActionRebindingExtensions_ParameterEnumerable__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0292E940, void, InputActionRebindingExtensions_ParameterEnumerator__ctor, (InputActionRebindingExtensions_ParameterEnumerator__Boxed * __this, InputActionState * state, InputActionRebindingExtensions_ParameterOverride parameter, int32_t mapIndex, MethodInfo * method)); -DO_APP_FUNC(0x0292ED30, bool, InputActionRebindingExtensions_ParameterEnumerator_MoveToNextBinding, (InputActionRebindingExtensions_ParameterEnumerator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0292EF50, bool, InputActionRebindingExtensions_ParameterEnumerator_MoveToNextInteraction, (InputActionRebindingExtensions_ParameterEnumerator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0292EFC0, bool, InputActionRebindingExtensions_ParameterEnumerator_MoveToNextProcessor, (InputActionRebindingExtensions_ParameterEnumerator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0292F030, bool, InputActionRebindingExtensions_ParameterEnumerator_FindParameter, (InputActionRebindingExtensions_ParameterEnumerator__Boxed * __this, Object * instance, MethodInfo * method)); -DO_APP_FUNC(0x0292F1E0, bool, InputActionRebindingExtensions_ParameterEnumerator_MoveNext, (InputActionRebindingExtensions_ParameterEnumerator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0292F360, void, InputActionRebindingExtensions_ParameterEnumerator_Reset, (InputActionRebindingExtensions_ParameterEnumerator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0292F4D0, InputActionRebindingExtensions_Parameter, InputActionRebindingExtensions_ParameterEnumerator_get_Current, (InputActionRebindingExtensions_ParameterEnumerator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0292F5B0, Object *, InputActionRebindingExtensions_ParameterEnumerator_System_Collections_IEnumerator_get_Current, (InputActionRebindingExtensions_ParameterEnumerator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, InputActionRebindingExtensions_ParameterEnumerator_Dispose, (InputActionRebindingExtensions_ParameterEnumerator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0292F620, Type *, InputActionRebindingExtensions_ParameterOverride_get_objectType, (InputActionRebindingExtensions_ParameterOverride__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0292F6D0, void, InputActionRebindingExtensions_ParameterOverride__ctor, (InputActionRebindingExtensions_ParameterOverride__Boxed * __this, String * parameterName, InputBinding bindingMask, PrimitiveValue value, MethodInfo * method)); -DO_APP_FUNC(0x0292F960, void, InputActionRebindingExtensions_ParameterOverride__ctor_1, (InputActionRebindingExtensions_ParameterOverride__Boxed * __this, String * objectRegistrationName, String * parameterName, InputBinding bindingMask, PrimitiveValue value, MethodInfo * method)); -DO_APP_FUNC(0x0292FAB0, Nullable_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride_, InputActionRebindingExtensions_ParameterOverride_Find, (InputActionMap * actionMap, InputBinding binding, String * parameterName, String * objectRegistrationName, MethodInfo * method)); -DO_APP_FUNC(0x0292FE20, Nullable_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride_, InputActionRebindingExtensions_ParameterOverride_Find_1, (InputActionRebindingExtensions_ParameterOverride__Array * overrides, int32_t overrideCount, InputBinding binding, String * parameterName, String * objectRegistrationName, MethodInfo * method)); +DO_APP_FUNC(0x0292E560, void, InputActionRebindingExtensions_ParameterEnumerable__ctor, (InputActionRebindingExtensions_ParameterEnumerable * __this, InputActionState * state, InputActionRebindingExtensions_ParameterOverride parameter, int32_t mapIndex, MethodInfo * method)); +DO_APP_FUNC(0x0292E670, InputActionRebindingExtensions_ParameterEnumerator, InputActionRebindingExtensions_ParameterEnumerable_GetEnumerator, (InputActionRebindingExtensions_ParameterEnumerable * __this, MethodInfo * method)); +DO_APP_FUNC(0x0292E7A0, IEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_Parameter_ *, InputActionRebindingExtensions_ParameterEnumerable_System_Collections_Generic_IEnumerable_UnityEngine_InputSystem_InputActionRebindingExtensions_Parameter__GetEnumerator, (InputActionRebindingExtensions_ParameterEnumerable * __this, MethodInfo * method)); +DO_APP_FUNC(0x0292E870, IEnumerator *, InputActionRebindingExtensions_ParameterEnumerable_System_Collections_IEnumerable_GetEnumerator, (InputActionRebindingExtensions_ParameterEnumerable * __this, MethodInfo * method)); +DO_APP_FUNC(0x0292E940, void, InputActionRebindingExtensions_ParameterEnumerator__ctor, (InputActionRebindingExtensions_ParameterEnumerator * __this, InputActionState * state, InputActionRebindingExtensions_ParameterOverride parameter, int32_t mapIndex, MethodInfo * method)); +DO_APP_FUNC(0x0292ED30, bool, InputActionRebindingExtensions_ParameterEnumerator_MoveToNextBinding, (InputActionRebindingExtensions_ParameterEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC(0x0292EF50, bool, InputActionRebindingExtensions_ParameterEnumerator_MoveToNextInteraction, (InputActionRebindingExtensions_ParameterEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC(0x0292EFC0, bool, InputActionRebindingExtensions_ParameterEnumerator_MoveToNextProcessor, (InputActionRebindingExtensions_ParameterEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC(0x0292F030, bool, InputActionRebindingExtensions_ParameterEnumerator_FindParameter, (InputActionRebindingExtensions_ParameterEnumerator * __this, Object * instance, MethodInfo * method)); +DO_APP_FUNC(0x0292F1E0, bool, InputActionRebindingExtensions_ParameterEnumerator_MoveNext, (InputActionRebindingExtensions_ParameterEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC(0x0292F360, void, InputActionRebindingExtensions_ParameterEnumerator_Reset, (InputActionRebindingExtensions_ParameterEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC(0x0292F4D0, InputActionRebindingExtensions_Parameter, InputActionRebindingExtensions_ParameterEnumerator_get_Current, (InputActionRebindingExtensions_ParameterEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC(0x0292F5B0, Object *, InputActionRebindingExtensions_ParameterEnumerator_System_Collections_IEnumerator_get_Current, (InputActionRebindingExtensions_ParameterEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, InputActionRebindingExtensions_ParameterEnumerator_Dispose, (InputActionRebindingExtensions_ParameterEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC(0x0292F620, Type *, InputActionRebindingExtensions_ParameterOverride_get_objectType, (InputActionRebindingExtensions_ParameterOverride * __this, MethodInfo * method)); +DO_APP_FUNC(0x0292F6D0, void, InputActionRebindingExtensions_ParameterOverride__ctor, (InputActionRebindingExtensions_ParameterOverride * __this, String * parameterName, InputBinding bindingMask, PrimitiveValue value, MethodInfo * method)); +DO_APP_FUNC(0x0292F960, void, InputActionRebindingExtensions_ParameterOverride__ctor_1, (InputActionRebindingExtensions_ParameterOverride * __this, String * objectRegistrationName, String * parameterName, InputBinding bindingMask, PrimitiveValue value, MethodInfo * method)); +DO_APP_FUNC(0x0292FAB0, Nullable_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride_, InputActionRebindingExtensions_ParameterOverride_Find, (InputActionMap * actionMap, InputBinding * binding, String * parameterName, String * objectRegistrationName, MethodInfo * method)); +DO_APP_FUNC(0x0292FE20, Nullable_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride_, InputActionRebindingExtensions_ParameterOverride_Find_1, (InputActionRebindingExtensions_ParameterOverride__Array * overrides, int32_t overrideCount, InputBinding * binding, String * parameterName, String * objectRegistrationName, MethodInfo * method)); DO_APP_FUNC(0x02930360, Nullable_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride_, InputActionRebindingExtensions_ParameterOverride_PickMoreSpecificOne, (Nullable_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride_ first, Nullable_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride_ second, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, InputAction_1 *, InputActionRebindingExtensions_RebindingOperation_get_action, (InputActionRebindingExtensions_RebindingOperation * __this, MethodInfo * method)); DO_APP_FUNC(0x02930560, Nullable_1_UnityEngine_InputSystem_InputBinding_, InputActionRebindingExtensions_RebindingOperation_get_bindingMask, (InputActionRebindingExtensions_RebindingOperation * __this, MethodInfo * method)); @@ -51485,20 +60181,27 @@ DO_APP_FUNC(0x029307E0, double, InputActionRebindingExtensions_RebindingOperatio DO_APP_FUNC(0x01D17080, float, InputActionRebindingExtensions_RebindingOperation_get_timeout, (InputActionRebindingExtensions_RebindingOperation * __this, MethodInfo * method)); DO_APP_FUNC(0x029307F0, String *, InputActionRebindingExtensions_RebindingOperation_get_expectedControlType, (InputActionRebindingExtensions_RebindingOperation * __this, MethodInfo * method)); DO_APP_FUNC(0x02930850, InputActionRebindingExtensions_RebindingOperation *, InputActionRebindingExtensions_RebindingOperation_WithAction, (InputActionRebindingExtensions_RebindingOperation * __this, InputAction_1 * action, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0D88, InputActionRebindingExtensions_RebindingOperation_WithAction__MethodInfo); DO_APP_FUNC(0x02930A60, InputActionRebindingExtensions_RebindingOperation *, InputActionRebindingExtensions_RebindingOperation_WithMatchingEventsBeingSuppressed, (InputActionRebindingExtensions_RebindingOperation * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x02930AB0, InputActionRebindingExtensions_RebindingOperation *, InputActionRebindingExtensions_RebindingOperation_WithCancelingThrough, (InputActionRebindingExtensions_RebindingOperation * __this, String * binding, MethodInfo * method)); DO_APP_FUNC(0x02930B30, InputActionRebindingExtensions_RebindingOperation *, InputActionRebindingExtensions_RebindingOperation_WithCancelingThrough_1, (InputActionRebindingExtensions_RebindingOperation * __this, InputControl * control, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0DD8, InputActionRebindingExtensions_RebindingOperation_WithCancelingThrough_1__MethodInfo); DO_APP_FUNC(0x02930BC0, InputActionRebindingExtensions_RebindingOperation *, InputActionRebindingExtensions_RebindingOperation_WithExpectedControlType, (InputActionRebindingExtensions_RebindingOperation * __this, String * layoutName, MethodInfo * method)); DO_APP_FUNC(0x02930C50, InputActionRebindingExtensions_RebindingOperation *, InputActionRebindingExtensions_RebindingOperation_WithExpectedControlType_1, (InputActionRebindingExtensions_RebindingOperation * __this, Type * type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0E08, InputActionRebindingExtensions_RebindingOperation_WithExpectedControlType_1__MethodInfo); DO_APP_FUNC(0x02930E10, InputActionRebindingExtensions_RebindingOperation *, InputActionRebindingExtensions_RebindingOperation_WithTargetBinding, (InputActionRebindingExtensions_RebindingOperation * __this, int32_t bindingIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0DC8, InputActionRebindingExtensions_RebindingOperation_WithTargetBinding__MethodInfo); DO_APP_FUNC(0x029319B0, InputActionRebindingExtensions_RebindingOperation *, InputActionRebindingExtensions_RebindingOperation_WithBindingMask, (InputActionRebindingExtensions_RebindingOperation * __this, Nullable_1_UnityEngine_InputSystem_InputBinding_ bindingMask, MethodInfo * method)); DO_APP_FUNC(0x02931A40, InputActionRebindingExtensions_RebindingOperation *, InputActionRebindingExtensions_RebindingOperation_WithBindingGroup, (InputActionRebindingExtensions_RebindingOperation * __this, String * group, MethodInfo * method)); DO_APP_FUNC(0x02931C20, InputActionRebindingExtensions_RebindingOperation *, InputActionRebindingExtensions_RebindingOperation_WithoutGeneralizingPathOfSelectedControl, (InputActionRebindingExtensions_RebindingOperation * __this, MethodInfo * method)); DO_APP_FUNC(0x02931C30, InputActionRebindingExtensions_RebindingOperation *, InputActionRebindingExtensions_RebindingOperation_WithRebindAddingNewBinding, (InputActionRebindingExtensions_RebindingOperation * __this, String * group, MethodInfo * method)); DO_APP_FUNC(0x02931CA0, InputActionRebindingExtensions_RebindingOperation *, InputActionRebindingExtensions_RebindingOperation_WithMagnitudeHavingToBeGreaterThan, (InputActionRebindingExtensions_RebindingOperation * __this, float magnitude, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0D20, InputActionRebindingExtensions_RebindingOperation_WithMagnitudeHavingToBeGreaterThan__MethodInfo); DO_APP_FUNC(0x02931D80, InputActionRebindingExtensions_RebindingOperation *, InputActionRebindingExtensions_RebindingOperation_WithoutIgnoringNoisyControls, (InputActionRebindingExtensions_RebindingOperation * __this, MethodInfo * method)); DO_APP_FUNC(0x02931DA0, InputActionRebindingExtensions_RebindingOperation *, InputActionRebindingExtensions_RebindingOperation_WithControlsHavingToMatchPath, (InputActionRebindingExtensions_RebindingOperation * __this, String * path, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0D30, InputActionRebindingExtensions_RebindingOperation_WithControlsHavingToMatchPath__MethodInfo); DO_APP_FUNC(0x02931F80, InputActionRebindingExtensions_RebindingOperation *, InputActionRebindingExtensions_RebindingOperation_WithControlsExcluding, (InputActionRebindingExtensions_RebindingOperation * __this, String * path, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0D60, InputActionRebindingExtensions_RebindingOperation_WithControlsExcluding__MethodInfo); DO_APP_FUNC(0x02932160, InputActionRebindingExtensions_RebindingOperation *, InputActionRebindingExtensions_RebindingOperation_WithTimeout, (InputActionRebindingExtensions_RebindingOperation * __this, float timeInSeconds, MethodInfo * method)); DO_APP_FUNC(0x02932170, InputActionRebindingExtensions_RebindingOperation *, InputActionRebindingExtensions_RebindingOperation_OnComplete, (InputActionRebindingExtensions_RebindingOperation * __this, Action_1_UnityEngine_InputSystem_InputActionRebindingExtensions_RebindingOperation_ * callback, MethodInfo * method)); DO_APP_FUNC(0x029321D0, InputActionRebindingExtensions_RebindingOperation *, InputActionRebindingExtensions_RebindingOperation_OnCancel, (InputActionRebindingExtensions_RebindingOperation * __this, Action_1_UnityEngine_InputSystem_InputActionRebindingExtensions_RebindingOperation_ * callback, MethodInfo * method)); @@ -51508,52 +60211,64 @@ DO_APP_FUNC(0x029322F0, InputActionRebindingExtensions_RebindingOperation *, Inp DO_APP_FUNC(0x02932350, InputActionRebindingExtensions_RebindingOperation *, InputActionRebindingExtensions_RebindingOperation_OnApplyBinding, (InputActionRebindingExtensions_RebindingOperation * __this, Action_2_UnityEngine_InputSystem_InputActionRebindingExtensions_RebindingOperation_String_ * callback, MethodInfo * method)); DO_APP_FUNC(0x029323B0, InputActionRebindingExtensions_RebindingOperation *, InputActionRebindingExtensions_RebindingOperation_OnMatchWaitForAnother, (InputActionRebindingExtensions_RebindingOperation * __this, float seconds, MethodInfo * method)); DO_APP_FUNC(0x029323C0, InputActionRebindingExtensions_RebindingOperation *, InputActionRebindingExtensions_RebindingOperation_Start, (InputActionRebindingExtensions_RebindingOperation * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0D78, InputActionRebindingExtensions_RebindingOperation_Start__MethodInfo); DO_APP_FUNC(0x029327B0, void, InputActionRebindingExtensions_RebindingOperation_Cancel, (InputActionRebindingExtensions_RebindingOperation * __this, MethodInfo * method)); DO_APP_FUNC(0x02932800, void, InputActionRebindingExtensions_RebindingOperation_Complete, (InputActionRebindingExtensions_RebindingOperation * __this, MethodInfo * method)); DO_APP_FUNC(0x02932820, void, InputActionRebindingExtensions_RebindingOperation_AddCandidate, (InputActionRebindingExtensions_RebindingOperation * __this, InputControl * control, float score, float magnitude, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0D50, InputActionRebindingExtensions_RebindingOperation_AddCandidate__MethodInfo); DO_APP_FUNC(0x029329B0, void, InputActionRebindingExtensions_RebindingOperation_RemoveCandidate, (InputActionRebindingExtensions_RebindingOperation * __this, InputControl * control, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0CE0, InputActionRebindingExtensions_RebindingOperation_RemoveCandidate__MethodInfo); DO_APP_FUNC(0x02932B10, void, InputActionRebindingExtensions_RebindingOperation_Dispose, (InputActionRebindingExtensions_RebindingOperation * __this, MethodInfo * method)); DO_APP_FUNC(0x02932BF0, void, InputActionRebindingExtensions_RebindingOperation_Finalize, (InputActionRebindingExtensions_RebindingOperation * __this, MethodInfo * method)); DO_APP_FUNC(0x02932D00, InputActionRebindingExtensions_RebindingOperation *, InputActionRebindingExtensions_RebindingOperation_Reset, (InputActionRebindingExtensions_RebindingOperation * __this, MethodInfo * method)); DO_APP_FUNC(0x02932F50, void, InputActionRebindingExtensions_RebindingOperation_HookOnEvent, (InputActionRebindingExtensions_RebindingOperation * __this, MethodInfo * method)); DO_APP_FUNC(0x02933070, void, InputActionRebindingExtensions_RebindingOperation_UnhookOnEvent, (InputActionRebindingExtensions_RebindingOperation * __this, MethodInfo * method)); DO_APP_FUNC(0x029330E0, void, InputActionRebindingExtensions_RebindingOperation_OnEvent, (InputActionRebindingExtensions_RebindingOperation * __this, InputEventPtr eventPtr, InputDevice * device, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0CD0, InputActionRebindingExtensions_RebindingOperation_OnEvent__MethodInfo); DO_APP_FUNC(0x02933AB0, void, InputActionRebindingExtensions_RebindingOperation_SortCandidatesByScore, (InputActionRebindingExtensions_RebindingOperation * __this, MethodInfo * method)); DO_APP_FUNC(0x02933C40, bool, InputActionRebindingExtensions_RebindingOperation_HavePathMatch, (InputControl * control, String__Array * paths, int32_t pathCount, MethodInfo * method)); DO_APP_FUNC(0x02933CC0, void, InputActionRebindingExtensions_RebindingOperation_HookOnAfterUpdate, (InputActionRebindingExtensions_RebindingOperation * __this, MethodInfo * method)); DO_APP_FUNC(0x02933DE0, void, InputActionRebindingExtensions_RebindingOperation_UnhookOnAfterUpdate, (InputActionRebindingExtensions_RebindingOperation * __this, MethodInfo * method)); DO_APP_FUNC(0x02933E50, void, InputActionRebindingExtensions_RebindingOperation_OnAfterUpdate, (InputActionRebindingExtensions_RebindingOperation * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0C90, InputActionRebindingExtensions_RebindingOperation_OnAfterUpdate__MethodInfo); DO_APP_FUNC(0x02933F90, void, InputActionRebindingExtensions_RebindingOperation_OnComplete_1, (InputActionRebindingExtensions_RebindingOperation * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0CC0, InputActionRebindingExtensions_RebindingOperation_OnComplete_1__MethodInfo); DO_APP_FUNC(0x02934570, void, InputActionRebindingExtensions_RebindingOperation_OnCancel_1, (InputActionRebindingExtensions_RebindingOperation * __this, MethodInfo * method)); DO_APP_FUNC(0x029345B0, void, InputActionRebindingExtensions_RebindingOperation_ResetAfterMatchCompleted, (InputActionRebindingExtensions_RebindingOperation * __this, MethodInfo * method)); DO_APP_FUNC(0x029346B0, void, InputActionRebindingExtensions_RebindingOperation_ThrowIfRebindInProgress, (InputActionRebindingExtensions_RebindingOperation * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0CB0, InputActionRebindingExtensions_RebindingOperation_ThrowIfRebindInProgress__MethodInfo); DO_APP_FUNC(0x02934720, String *, InputActionRebindingExtensions_RebindingOperation_GeneratePathForControl, (InputActionRebindingExtensions_RebindingOperation * __this, InputControl * control, MethodInfo * method)); DO_APP_FUNC(0x029348E0, void, InputActionRebindingExtensions_RebindingOperation__ctor, (InputActionRebindingExtensions_RebindingOperation * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InputActionRebindingExtensions_RebindingOperation_c_DisplayClass32_0__ctor, (InputActionRebindingExtensions_RebindingOperation_c_DisplayClass32_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x029349D0, bool, InputActionRebindingExtensions_RebindingOperation_c_DisplayClass32_0__WithTargetBinding_b__0, (InputActionRebindingExtensions_RebindingOperation_c_DisplayClass32_0 * __this, InputControlScheme x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0DB8, InputActionRebindingExtensions_RebindingOperation_c_DisplayClass32_0__WithTargetBinding_b__0__MethodInfo); DO_APP_FUNC(0x02934AB0, void, InputActionRebindingExtensions_DeferBindingResolutionWrapper_Acquire, (InputActionRebindingExtensions_DeferBindingResolutionWrapper * __this, MethodInfo * method)); DO_APP_FUNC(0x02934AF0, void, InputActionRebindingExtensions_DeferBindingResolutionWrapper_Dispose, (InputActionRebindingExtensions_DeferBindingResolutionWrapper * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InputActionRebindingExtensions_DeferBindingResolutionWrapper__ctor, (InputActionRebindingExtensions_DeferBindingResolutionWrapper * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InputActionRebindingExtensions_c_DisplayClass25_0__ctor, (InputActionRebindingExtensions_c_DisplayClass25_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x02934B60, String *, InputActionRebindingExtensions_c_DisplayClass25_0__GetBindingDisplayString_b__0, (InputActionRebindingExtensions_c_DisplayClass25_0 * __this, String * fragment, MethodInfo * method)); -DO_APP_FUNC(0x02934E70, InputAction_1 *, InputActionProperty_get_action, (InputActionProperty__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02934FB0, InputActionReference *, InputActionProperty_get_reference, (InputActionProperty__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, InputAction_1 *, InputActionProperty_get_serializedAction, (InputActionProperty__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, InputActionReference *, InputActionProperty_get_serializedReference, (InputActionProperty__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02934FC0, void, InputActionProperty__ctor, (InputActionProperty__Boxed * __this, InputAction_1 * action, MethodInfo * method)); -DO_APP_FUNC(0x02935070, void, InputActionProperty__ctor_1, (InputActionProperty__Boxed * __this, InputActionReference * reference, MethodInfo * method)); -DO_APP_FUNC(0x02935130, bool, InputActionProperty_Equals, (InputActionProperty__Boxed * __this, InputActionProperty other, MethodInfo * method)); -DO_APP_FUNC(0x029352F0, bool, InputActionProperty_Equals_1, (InputActionProperty__Boxed * __this, InputAction_1 * other, MethodInfo * method)); -DO_APP_FUNC(0x02935310, bool, InputActionProperty_Equals_2, (InputActionProperty__Boxed * __this, InputActionReference * other, MethodInfo * method)); -DO_APP_FUNC(0x029354B0, bool, InputActionProperty_Equals_3, (InputActionProperty__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02935590, int32_t, InputActionProperty_GetHashCode, (InputActionProperty__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC1050, InputActionRebindingExtensions_c_DisplayClass25_0__GetBindingDisplayString_b__0__MethodInfo); +DO_APP_FUNC(0x02934E70, InputAction_1 *, InputActionProperty_get_action, (InputActionProperty * __this, MethodInfo * method)); +DO_APP_FUNC(0x02934FB0, InputActionReference *, InputActionProperty_get_reference, (InputActionProperty * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, InputAction_1 *, InputActionProperty_get_serializedAction, (InputActionProperty * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, InputActionReference *, InputActionProperty_get_serializedReference, (InputActionProperty * __this, MethodInfo * method)); +DO_APP_FUNC(0x02934FC0, void, InputActionProperty__ctor, (InputActionProperty * __this, InputAction_1 * action, MethodInfo * method)); +DO_APP_FUNC(0x02935070, void, InputActionProperty__ctor_1, (InputActionProperty * __this, InputActionReference * reference, MethodInfo * method)); +DO_APP_FUNC(0x02935130, bool, InputActionProperty_Equals, (InputActionProperty * __this, InputActionProperty other, MethodInfo * method)); +DO_APP_FUNC(0x029352F0, bool, InputActionProperty_Equals_1, (InputActionProperty * __this, InputAction_1 * other, MethodInfo * method)); +DO_APP_FUNC(0x02935310, bool, InputActionProperty_Equals_2, (InputActionProperty * __this, InputActionReference * other, MethodInfo * method)); +DO_APP_FUNC(0x029354B0, bool, InputActionProperty_Equals_3, (InputActionProperty * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02935590, int32_t, InputActionProperty_GetHashCode, (InputActionProperty * __this, MethodInfo * method)); DO_APP_FUNC(0x029356E0, bool, InputActionProperty_op_Equality, (InputActionProperty left, InputActionProperty right, MethodInfo * method)); DO_APP_FUNC(0x02935710, bool, InputActionProperty_op_Inequality, (InputActionProperty left, InputActionProperty right, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, InputActionAsset *, InputActionReference_get_asset, (InputActionReference * __this, MethodInfo * method)); DO_APP_FUNC(0x02935740, InputAction_1 *, InputActionReference_get_action, (InputActionReference * __this, MethodInfo * method)); DO_APP_FUNC(0x02935A60, void, InputActionReference_Set, (InputActionReference * __this, InputAction_1 * action, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2C20, InputActionReference_Set__MethodInfo); DO_APP_FUNC(0x02935CE0, void, InputActionReference_Set_1, (InputActionReference * __this, InputActionAsset * asset, String * mapName, String * actionName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2C38, InputActionReference_Set_1__MethodInfo); DO_APP_FUNC(0x02936090, void, InputActionReference_SetInternal, (InputActionReference * __this, InputActionAsset * asset, InputAction_1 * action, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2C00, InputActionReference_SetInternal__MethodInfo); DO_APP_FUNC(0x02936490, String *, InputActionReference_ToString, (InputActionReference * __this, MethodInfo * method)); DO_APP_FUNC(0x02936800, String *, InputActionReference_GetDisplayName, (InputAction_1 * action, MethodInfo * method)); DO_APP_FUNC(0x02936880, String *, InputActionReference_ToDisplayName, (InputActionReference * __this, MethodInfo * method)); @@ -51562,79 +60277,122 @@ DO_APP_FUNC(0x02936940, InputActionReference *, InputActionReference_Create, (In DO_APP_FUNC(0x029369C0, InputAction_1 *, InputActionReference_ToInputAction, (InputActionReference * __this, MethodInfo * method)); DO_APP_FUNC(0x003BA2A0, void, InputActionReference__ctor, (InputActionReference * __this, MethodInfo * method)); DO_APP_FUNC(0x029369D0, InputActionMap *, InputActionSetupExtensions_AddActionMap, (InputActionAsset * asset, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2C70, InputActionSetupExtensions_AddActionMap__MethodInfo); DO_APP_FUNC(0x02936C80, void, InputActionSetupExtensions_AddActionMap_1, (InputActionAsset * asset, InputActionMap * map, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2B28, InputActionSetupExtensions_AddActionMap_1__MethodInfo); DO_APP_FUNC(0x029370E0, void, InputActionSetupExtensions_RemoveActionMap, (InputActionAsset * asset, InputActionMap * map, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2B48, InputActionSetupExtensions_RemoveActionMap__MethodInfo); DO_APP_FUNC(0x029373C0, void, InputActionSetupExtensions_RemoveActionMap_1, (InputActionAsset * asset, String * nameOrId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2AF8, InputActionSetupExtensions_RemoveActionMap_1__MethodInfo); DO_APP_FUNC(0x02937590, InputAction_1 *, InputActionSetupExtensions_AddAction, (InputActionMap * map, String * name, InputActionType__Enum_1 type, String * binding, String * interactions, String * processors, String * groups, String * expectedControlLayout, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2B00, InputActionSetupExtensions_AddAction__MethodInfo); DO_APP_FUNC(0x02937A70, void, InputActionSetupExtensions_RemoveAction, (InputAction_1 * action, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2B68, InputActionSetupExtensions_RemoveAction__MethodInfo); DO_APP_FUNC(0x02938330, void, InputActionSetupExtensions_RemoveAction_1, (InputActionAsset * asset, String * nameOrId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2B88, InputActionSetupExtensions_RemoveAction_1__MethodInfo); DO_APP_FUNC(0x02938500, InputActionSetupExtensions_BindingSyntax, InputActionSetupExtensions_AddBinding, (InputAction_1 * action, String * path, String * interactions, String * processors, String * groups, MethodInfo * method)); DO_APP_FUNC(0x02938840, InputActionSetupExtensions_BindingSyntax, InputActionSetupExtensions_AddBinding_1, (InputAction_1 * action, InputControl * control, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2A58, InputActionSetupExtensions_AddBinding_1__MethodInfo); DO_APP_FUNC(0x02938900, InputActionSetupExtensions_BindingSyntax, InputActionSetupExtensions_AddBinding_2, (InputAction_1 * action, InputBinding binding, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2A48, InputActionSetupExtensions_AddBinding_2__MethodInfo); DO_APP_FUNC(0x02938A70, InputActionSetupExtensions_BindingSyntax, InputActionSetupExtensions_AddBinding_3, (InputActionMap * actionMap, String * path, String * interactions, String * groups, String * action, String * processors, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2A70, InputActionSetupExtensions_AddBinding_3__MethodInfo); DO_APP_FUNC(0x02938E30, InputActionSetupExtensions_BindingSyntax, InputActionSetupExtensions_AddBinding_4, (InputActionMap * actionMap, String * path, InputAction_1 * action, String * interactions, String * groups, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2A80, InputActionSetupExtensions_AddBinding_4__MethodInfo); DO_APP_FUNC(0x02939180, InputActionSetupExtensions_BindingSyntax, InputActionSetupExtensions_AddBinding_5, (InputActionMap * actionMap, String * path, Guid action, String * interactions, String * groups, MethodInfo * method)); DO_APP_FUNC(0x029392D0, InputActionSetupExtensions_BindingSyntax, InputActionSetupExtensions_AddBinding_6, (InputActionMap * actionMap, InputBinding binding, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2A88, InputActionSetupExtensions_AddBinding_6__MethodInfo); DO_APP_FUNC(0x02939430, InputActionSetupExtensions_CompositeSyntax, InputActionSetupExtensions_AddCompositeBinding, (InputAction_1 * action, String * composite, String * interactions, String * processors, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2A00, InputActionSetupExtensions_AddCompositeBinding__MethodInfo); DO_APP_FUNC(0x029397D0, int32_t, InputActionSetupExtensions_AddBindingInternal, (InputActionMap * map, InputBinding binding, int32_t bindingIndex, MethodInfo * method)); DO_APP_FUNC(0x02939BB0, InputActionSetupExtensions_BindingSyntax, InputActionSetupExtensions_ChangeBinding, (InputAction_1 * action, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2AB8, InputActionSetupExtensions_ChangeBinding__MethodInfo); DO_APP_FUNC(0x02939C80, InputActionSetupExtensions_BindingSyntax, InputActionSetupExtensions_ChangeBinding_1, (InputAction_1 * action, String * name, MethodInfo * method)); DO_APP_FUNC(0x02939D80, InputActionSetupExtensions_BindingSyntax, InputActionSetupExtensions_ChangeBinding_2, (InputActionMap * actionMap, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2AC0, InputActionSetupExtensions_ChangeBinding_2__MethodInfo); DO_APP_FUNC(0x02939EC0, InputActionSetupExtensions_BindingSyntax, InputActionSetupExtensions_ChangeBindingWithId, (InputAction_1 * action, String * id, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2AD8, InputActionSetupExtensions_ChangeBindingWithId__MethodInfo); DO_APP_FUNC(0x0293A030, InputActionSetupExtensions_BindingSyntax, InputActionSetupExtensions_ChangeBindingWithId_1, (InputAction_1 * action, Guid id, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2AC8, InputActionSetupExtensions_ChangeBindingWithId_1__MethodInfo); DO_APP_FUNC(0x0293A1D0, InputActionSetupExtensions_BindingSyntax, InputActionSetupExtensions_ChangeBindingWithGroup, (InputAction_1 * action, String * group, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2AF0, InputActionSetupExtensions_ChangeBindingWithGroup__MethodInfo); DO_APP_FUNC(0x0293A340, InputActionSetupExtensions_BindingSyntax, InputActionSetupExtensions_ChangeBindingWithPath, (InputAction_1 * action, String * path, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2AE8, InputActionSetupExtensions_ChangeBindingWithPath__MethodInfo); DO_APP_FUNC(0x0293A4B0, InputActionSetupExtensions_BindingSyntax, InputActionSetupExtensions_ChangeBinding_3, (InputAction_1 * action, InputBinding match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2A98, InputActionSetupExtensions_ChangeBinding_3__MethodInfo); DO_APP_FUNC(0x0293A830, InputActionSetupExtensions_BindingSyntax, InputActionSetupExtensions_ChangeCompositeBinding, (InputAction_1 * action, String * compositeName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2AA0, InputActionSetupExtensions_ChangeCompositeBinding__MethodInfo); DO_APP_FUNC(0x0293AC60, void, InputActionSetupExtensions_Rename, (InputAction_1 * action, String * newName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2AB0, InputActionSetupExtensions_Rename__MethodInfo); DO_APP_FUNC(0x0293B0C0, void, InputActionSetupExtensions_AddControlScheme, (InputActionAsset * asset, InputControlScheme controlScheme, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2968, InputActionSetupExtensions_AddControlScheme__MethodInfo); DO_APP_FUNC(0x0293B4B0, InputActionSetupExtensions_ControlSchemeSyntax, InputActionSetupExtensions_AddControlScheme_1, (InputActionAsset * asset, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2920, InputActionSetupExtensions_AddControlScheme_1__MethodInfo); DO_APP_FUNC(0x0293B730, void, InputActionSetupExtensions_RemoveControlScheme, (InputActionAsset * asset, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC29C8, InputActionSetupExtensions_RemoveControlScheme__MethodInfo); DO_APP_FUNC(0x0293B9E0, InputControlScheme, InputActionSetupExtensions_WithBindingGroup, (InputControlScheme scheme, String * bindingGroup, MethodInfo * method)); DO_APP_FUNC(0x0293BB60, InputControlScheme, InputActionSetupExtensions_WithDevice, (InputControlScheme scheme, String * controlPath, bool required, MethodInfo * method)); DO_APP_FUNC(0x0293BD90, InputControlScheme, InputActionSetupExtensions_WithRequiredDevice, (InputControlScheme scheme, String * controlPath, MethodInfo * method)); DO_APP_FUNC(0x0293BEF0, InputControlScheme, InputActionSetupExtensions_WithOptionalDevice, (InputControlScheme scheme, String * controlPath, MethodInfo * method)); DO_APP_FUNC(0x0293C050, InputControlScheme, InputActionSetupExtensions_OrWithRequiredDevice, (InputControlScheme scheme, String * controlPath, MethodInfo * method)); DO_APP_FUNC(0x0293C1B0, InputControlScheme, InputActionSetupExtensions_OrWithOptionalDevice, (InputControlScheme scheme, String * controlPath, MethodInfo * method)); -DO_APP_FUNC(0x0293C310, bool, InputActionSetupExtensions_BindingSyntax_get_valid, (InputActionSetupExtensions_BindingSyntax__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0293C380, int32_t, InputActionSetupExtensions_BindingSyntax_get_bindingIndex, (InputActionSetupExtensions_BindingSyntax__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0293C400, InputBinding, InputActionSetupExtensions_BindingSyntax_get_binding, (InputActionSetupExtensions_BindingSyntax__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0293C500, void, InputActionSetupExtensions_BindingSyntax__ctor, (InputActionSetupExtensions_BindingSyntax__Boxed * __this, InputActionMap * map, int32_t bindingIndexInMap, InputAction_1 * action, MethodInfo * method)); -DO_APP_FUNC(0x0293C5C0, InputActionSetupExtensions_BindingSyntax, InputActionSetupExtensions_BindingSyntax_WithName, (InputActionSetupExtensions_BindingSyntax__Boxed * __this, String * name, MethodInfo * method)); -DO_APP_FUNC(0x0293C730, InputActionSetupExtensions_BindingSyntax, InputActionSetupExtensions_BindingSyntax_WithPath, (InputActionSetupExtensions_BindingSyntax__Boxed * __this, String * path, MethodInfo * method)); -DO_APP_FUNC(0x0293C8B0, InputActionSetupExtensions_BindingSyntax, InputActionSetupExtensions_BindingSyntax_WithGroup, (InputActionSetupExtensions_BindingSyntax__Boxed * __this, String * group, MethodInfo * method)); -DO_APP_FUNC(0x0293CAD0, InputActionSetupExtensions_BindingSyntax, InputActionSetupExtensions_BindingSyntax_WithGroups, (InputActionSetupExtensions_BindingSyntax__Boxed * __this, String * groups, MethodInfo * method)); -DO_APP_FUNC(0x0293CDC0, InputActionSetupExtensions_BindingSyntax, InputActionSetupExtensions_BindingSyntax_WithInteraction, (InputActionSetupExtensions_BindingSyntax__Boxed * __this, String * interaction, MethodInfo * method)); -DO_APP_FUNC(0x0293CFE0, InputActionSetupExtensions_BindingSyntax, InputActionSetupExtensions_BindingSyntax_WithInteractions, (InputActionSetupExtensions_BindingSyntax__Boxed * __this, String * interactions, MethodInfo * method)); -DO_APP_FUNC(0x0293D2D0, InputActionSetupExtensions_BindingSyntax, InputActionSetupExtensions_BindingSyntax_WithProcessor, (InputActionSetupExtensions_BindingSyntax__Boxed * __this, String * processor, MethodInfo * method)); -DO_APP_FUNC(0x0293D4F0, InputActionSetupExtensions_BindingSyntax, InputActionSetupExtensions_BindingSyntax_WithProcessors, (InputActionSetupExtensions_BindingSyntax__Boxed * __this, String * processors, MethodInfo * method)); -DO_APP_FUNC(0x0293D7E0, InputActionSetupExtensions_BindingSyntax, InputActionSetupExtensions_BindingSyntax_Triggering, (InputActionSetupExtensions_BindingSyntax__Boxed * __this, InputAction_1 * action, MethodInfo * method)); -DO_APP_FUNC(0x0293DA00, InputActionSetupExtensions_BindingSyntax, InputActionSetupExtensions_BindingSyntax_To, (InputActionSetupExtensions_BindingSyntax__Boxed * __this, InputBinding binding, MethodInfo * method)); -DO_APP_FUNC(0x0293DBB0, InputActionSetupExtensions_BindingSyntax, InputActionSetupExtensions_BindingSyntax_NextBinding, (InputActionSetupExtensions_BindingSyntax__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0293DBF0, InputActionSetupExtensions_BindingSyntax, InputActionSetupExtensions_BindingSyntax_PreviousBinding, (InputActionSetupExtensions_BindingSyntax__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0293DC30, InputActionSetupExtensions_BindingSyntax, InputActionSetupExtensions_BindingSyntax_NextPartBinding, (InputActionSetupExtensions_BindingSyntax__Boxed * __this, String * partName, MethodInfo * method)); -DO_APP_FUNC(0x0293DCD0, InputActionSetupExtensions_BindingSyntax, InputActionSetupExtensions_BindingSyntax_PreviousPartBinding, (InputActionSetupExtensions_BindingSyntax__Boxed * __this, String * partName, MethodInfo * method)); -DO_APP_FUNC(0x0293DD70, InputActionSetupExtensions_BindingSyntax, InputActionSetupExtensions_BindingSyntax_NextCompositeBinding, (InputActionSetupExtensions_BindingSyntax__Boxed * __this, String * compositeName, MethodInfo * method)); -DO_APP_FUNC(0x0293DDB0, InputActionSetupExtensions_BindingSyntax, InputActionSetupExtensions_BindingSyntax_PreviousCompositeBinding, (InputActionSetupExtensions_BindingSyntax__Boxed * __this, String * compositeName, MethodInfo * method)); -DO_APP_FUNC(0x0293DDF0, InputActionSetupExtensions_BindingSyntax, InputActionSetupExtensions_BindingSyntax_Iterate, (InputActionSetupExtensions_BindingSyntax__Boxed * __this, bool next, MethodInfo * method)); -DO_APP_FUNC(0x0293DEF0, InputActionSetupExtensions_BindingSyntax, InputActionSetupExtensions_BindingSyntax_IterateCompositeBinding, (InputActionSetupExtensions_BindingSyntax__Boxed * __this, bool next, String * compositeName, MethodInfo * method)); -DO_APP_FUNC(0x0293E2D0, InputActionSetupExtensions_BindingSyntax, InputActionSetupExtensions_BindingSyntax_IteratePartBinding, (InputActionSetupExtensions_BindingSyntax__Boxed * __this, bool next, String * partName, MethodInfo * method)); -DO_APP_FUNC(0x0293E610, void, InputActionSetupExtensions_BindingSyntax_Erase, (InputActionSetupExtensions_BindingSyntax__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0293EA00, InputActionSetupExtensions_BindingSyntax, InputActionSetupExtensions_BindingSyntax_InsertPartBinding, (InputActionSetupExtensions_BindingSyntax__Boxed * __this, String * partName, String * path, MethodInfo * method)); -DO_APP_FUNC(0x0293ED20, int32_t, InputActionSetupExtensions_CompositeSyntax_get_bindingIndex, (InputActionSetupExtensions_CompositeSyntax__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0293ED50, void, InputActionSetupExtensions_CompositeSyntax__ctor, (InputActionSetupExtensions_CompositeSyntax__Boxed * __this, InputActionMap * map, InputAction_1 * action, int32_t compositeIndex, MethodInfo * method)); -DO_APP_FUNC(0x0293EE20, InputActionSetupExtensions_CompositeSyntax, InputActionSetupExtensions_CompositeSyntax_With, (InputActionSetupExtensions_CompositeSyntax__Boxed * __this, String * name, String * binding, String * groups, String * processors, MethodInfo * method)); -DO_APP_FUNC(0x0293F050, void, InputActionSetupExtensions_ControlSchemeSyntax__ctor, (InputActionSetupExtensions_ControlSchemeSyntax__Boxed * __this, InputActionAsset * asset, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x0293F0C0, void, InputActionSetupExtensions_ControlSchemeSyntax__ctor_1, (InputActionSetupExtensions_ControlSchemeSyntax__Boxed * __this, InputControlScheme controlScheme, MethodInfo * method)); -DO_APP_FUNC(0x0293F190, InputActionSetupExtensions_ControlSchemeSyntax, InputActionSetupExtensions_ControlSchemeSyntax_WithBindingGroup, (InputActionSetupExtensions_ControlSchemeSyntax__Boxed * __this, String * bindingGroup, MethodInfo * method)); -DO_APP_FUNC(0x0293F3C0, InputActionSetupExtensions_ControlSchemeSyntax, InputActionSetupExtensions_ControlSchemeSyntax_WithRequiredDevice, (InputActionSetupExtensions_ControlSchemeSyntax__Boxed * __this, String * controlPath, MethodInfo * method)); -DO_APP_FUNC(0x0293F410, InputActionSetupExtensions_ControlSchemeSyntax, InputActionSetupExtensions_ControlSchemeSyntax_WithOptionalDevice, (InputActionSetupExtensions_ControlSchemeSyntax__Boxed * __this, String * controlPath, MethodInfo * method)); -DO_APP_FUNC(0x0293F460, InputActionSetupExtensions_ControlSchemeSyntax, InputActionSetupExtensions_ControlSchemeSyntax_OrWithRequiredDevice, (InputActionSetupExtensions_ControlSchemeSyntax__Boxed * __this, String * controlPath, MethodInfo * method)); -DO_APP_FUNC(0x0293F4B0, InputActionSetupExtensions_ControlSchemeSyntax, InputActionSetupExtensions_ControlSchemeSyntax_OrWithOptionalDevice, (InputActionSetupExtensions_ControlSchemeSyntax__Boxed * __this, String * controlPath, MethodInfo * method)); -DO_APP_FUNC(0x0293F500, InputControlScheme, InputActionSetupExtensions_ControlSchemeSyntax_Done, (InputActionSetupExtensions_ControlSchemeSyntax__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0293F660, void, InputActionSetupExtensions_ControlSchemeSyntax_AddDeviceEntry, (InputActionSetupExtensions_ControlSchemeSyntax__Boxed * __this, String * controlPath, InputControlScheme_DeviceRequirement_Flags__Enum flags, MethodInfo * method)); +DO_APP_FUNC(0x0293C310, bool, InputActionSetupExtensions_BindingSyntax_get_valid, (InputActionSetupExtensions_BindingSyntax * __this, MethodInfo * method)); +DO_APP_FUNC(0x0293C380, int32_t, InputActionSetupExtensions_BindingSyntax_get_bindingIndex, (InputActionSetupExtensions_BindingSyntax * __this, MethodInfo * method)); +DO_APP_FUNC(0x0293C400, InputBinding, InputActionSetupExtensions_BindingSyntax_get_binding, (InputActionSetupExtensions_BindingSyntax * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC29E0, InputActionSetupExtensions_BindingSyntax_get_binding__MethodInfo); +DO_APP_FUNC(0x0293C500, void, InputActionSetupExtensions_BindingSyntax__ctor, (InputActionSetupExtensions_BindingSyntax * __this, InputActionMap * map, int32_t bindingIndexInMap, InputAction_1 * action, MethodInfo * method)); +DO_APP_FUNC(0x0293C5C0, InputActionSetupExtensions_BindingSyntax, InputActionSetupExtensions_BindingSyntax_WithName, (InputActionSetupExtensions_BindingSyntax * __this, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2980, InputActionSetupExtensions_BindingSyntax_WithName__MethodInfo); +DO_APP_FUNC(0x0293C730, InputActionSetupExtensions_BindingSyntax, InputActionSetupExtensions_BindingSyntax_WithPath, (InputActionSetupExtensions_BindingSyntax * __this, String * path, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2978, InputActionSetupExtensions_BindingSyntax_WithPath__MethodInfo); +DO_APP_FUNC(0x0293C8B0, InputActionSetupExtensions_BindingSyntax, InputActionSetupExtensions_BindingSyntax_WithGroup, (InputActionSetupExtensions_BindingSyntax * __this, String * group, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2998, InputActionSetupExtensions_BindingSyntax_WithGroup__MethodInfo); +DO_APP_FUNC(0x0293CAD0, InputActionSetupExtensions_BindingSyntax, InputActionSetupExtensions_BindingSyntax_WithGroups, (InputActionSetupExtensions_BindingSyntax * __this, String * groups, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC29B0, InputActionSetupExtensions_BindingSyntax_WithGroups__MethodInfo); +DO_APP_FUNC(0x0293CDC0, InputActionSetupExtensions_BindingSyntax, InputActionSetupExtensions_BindingSyntax_WithInteraction, (InputActionSetupExtensions_BindingSyntax * __this, String * interaction, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2848, InputActionSetupExtensions_BindingSyntax_WithInteraction__MethodInfo); +DO_APP_FUNC(0x0293CFE0, InputActionSetupExtensions_BindingSyntax, InputActionSetupExtensions_BindingSyntax_WithInteractions, (InputActionSetupExtensions_BindingSyntax * __this, String * interactions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2860, InputActionSetupExtensions_BindingSyntax_WithInteractions__MethodInfo); +DO_APP_FUNC(0x0293D2D0, InputActionSetupExtensions_BindingSyntax, InputActionSetupExtensions_BindingSyntax_WithProcessor, (InputActionSetupExtensions_BindingSyntax * __this, String * processor, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2878, InputActionSetupExtensions_BindingSyntax_WithProcessor__MethodInfo); +DO_APP_FUNC(0x0293D4F0, InputActionSetupExtensions_BindingSyntax, InputActionSetupExtensions_BindingSyntax_WithProcessors, (InputActionSetupExtensions_BindingSyntax * __this, String * processors, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2808, InputActionSetupExtensions_BindingSyntax_WithProcessors__MethodInfo); +DO_APP_FUNC(0x0293D7E0, InputActionSetupExtensions_BindingSyntax, InputActionSetupExtensions_BindingSyntax_Triggering, (InputActionSetupExtensions_BindingSyntax * __this, InputAction_1 * action, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2820, InputActionSetupExtensions_BindingSyntax_Triggering__MethodInfo); +DO_APP_FUNC(0x0293DA00, InputActionSetupExtensions_BindingSyntax, InputActionSetupExtensions_BindingSyntax_To, (InputActionSetupExtensions_BindingSyntax * __this, InputBinding binding, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2830, InputActionSetupExtensions_BindingSyntax_To__MethodInfo); +DO_APP_FUNC(0x0293DBB0, InputActionSetupExtensions_BindingSyntax, InputActionSetupExtensions_BindingSyntax_NextBinding, (InputActionSetupExtensions_BindingSyntax * __this, MethodInfo * method)); +DO_APP_FUNC(0x0293DBF0, InputActionSetupExtensions_BindingSyntax, InputActionSetupExtensions_BindingSyntax_PreviousBinding, (InputActionSetupExtensions_BindingSyntax * __this, MethodInfo * method)); +DO_APP_FUNC(0x0293DC30, InputActionSetupExtensions_BindingSyntax, InputActionSetupExtensions_BindingSyntax_NextPartBinding, (InputActionSetupExtensions_BindingSyntax * __this, String * partName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC28C0, InputActionSetupExtensions_BindingSyntax_NextPartBinding__MethodInfo); +DO_APP_FUNC(0x0293DCD0, InputActionSetupExtensions_BindingSyntax, InputActionSetupExtensions_BindingSyntax_PreviousPartBinding, (InputActionSetupExtensions_BindingSyntax * __this, String * partName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC28B8, InputActionSetupExtensions_BindingSyntax_PreviousPartBinding__MethodInfo); +DO_APP_FUNC(0x0293DD70, InputActionSetupExtensions_BindingSyntax, InputActionSetupExtensions_BindingSyntax_NextCompositeBinding, (InputActionSetupExtensions_BindingSyntax * __this, String * compositeName, MethodInfo * method)); +DO_APP_FUNC(0x0293DDB0, InputActionSetupExtensions_BindingSyntax, InputActionSetupExtensions_BindingSyntax_PreviousCompositeBinding, (InputActionSetupExtensions_BindingSyntax * __this, String * compositeName, MethodInfo * method)); +DO_APP_FUNC(0x0293DDF0, InputActionSetupExtensions_BindingSyntax, InputActionSetupExtensions_BindingSyntax_Iterate, (InputActionSetupExtensions_BindingSyntax * __this, bool next, MethodInfo * method)); +DO_APP_FUNC(0x0293DEF0, InputActionSetupExtensions_BindingSyntax, InputActionSetupExtensions_BindingSyntax_IterateCompositeBinding, (InputActionSetupExtensions_BindingSyntax * __this, bool next, String * compositeName, MethodInfo * method)); +DO_APP_FUNC(0x0293E2D0, InputActionSetupExtensions_BindingSyntax, InputActionSetupExtensions_BindingSyntax_IteratePartBinding, (InputActionSetupExtensions_BindingSyntax * __this, bool next, String * partName, MethodInfo * method)); +DO_APP_FUNC(0x0293E610, void, InputActionSetupExtensions_BindingSyntax_Erase, (InputActionSetupExtensions_BindingSyntax * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC28E8, InputActionSetupExtensions_BindingSyntax_Erase__MethodInfo); +DO_APP_FUNC(0x0293EA00, InputActionSetupExtensions_BindingSyntax, InputActionSetupExtensions_BindingSyntax_InsertPartBinding, (InputActionSetupExtensions_BindingSyntax * __this, String * partName, String * path, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC28E0, InputActionSetupExtensions_BindingSyntax_InsertPartBinding__MethodInfo); +DO_APP_FUNC(0x0293ED20, int32_t, InputActionSetupExtensions_CompositeSyntax_get_bindingIndex, (InputActionSetupExtensions_CompositeSyntax * __this, MethodInfo * method)); +DO_APP_FUNC(0x0293ED50, void, InputActionSetupExtensions_CompositeSyntax__ctor, (InputActionSetupExtensions_CompositeSyntax * __this, InputActionMap * map, InputAction_1 * action, int32_t compositeIndex, MethodInfo * method)); +DO_APP_FUNC(0x0293EE20, InputActionSetupExtensions_CompositeSyntax, InputActionSetupExtensions_CompositeSyntax_With, (InputActionSetupExtensions_CompositeSyntax * __this, String * name, String * binding, String * groups, String * processors, MethodInfo * method)); +DO_APP_FUNC(0x0293F050, void, InputActionSetupExtensions_ControlSchemeSyntax__ctor, (InputActionSetupExtensions_ControlSchemeSyntax * __this, InputActionAsset * asset, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x0293F0C0, void, InputActionSetupExtensions_ControlSchemeSyntax__ctor_1, (InputActionSetupExtensions_ControlSchemeSyntax * __this, InputControlScheme controlScheme, MethodInfo * method)); +DO_APP_FUNC(0x0293F190, InputActionSetupExtensions_ControlSchemeSyntax, InputActionSetupExtensions_ControlSchemeSyntax_WithBindingGroup, (InputActionSetupExtensions_ControlSchemeSyntax * __this, String * bindingGroup, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC28A8, InputActionSetupExtensions_ControlSchemeSyntax_WithBindingGroup__MethodInfo); +DO_APP_FUNC(0x0293F3C0, InputActionSetupExtensions_ControlSchemeSyntax, InputActionSetupExtensions_ControlSchemeSyntax_WithRequiredDevice, (InputActionSetupExtensions_ControlSchemeSyntax * __this, String * controlPath, MethodInfo * method)); +DO_APP_FUNC(0x0293F410, InputActionSetupExtensions_ControlSchemeSyntax, InputActionSetupExtensions_ControlSchemeSyntax_WithOptionalDevice, (InputActionSetupExtensions_ControlSchemeSyntax * __this, String * controlPath, MethodInfo * method)); +DO_APP_FUNC(0x0293F460, InputActionSetupExtensions_ControlSchemeSyntax, InputActionSetupExtensions_ControlSchemeSyntax_OrWithRequiredDevice, (InputActionSetupExtensions_ControlSchemeSyntax * __this, String * controlPath, MethodInfo * method)); +DO_APP_FUNC(0x0293F4B0, InputActionSetupExtensions_ControlSchemeSyntax, InputActionSetupExtensions_ControlSchemeSyntax_OrWithOptionalDevice, (InputActionSetupExtensions_ControlSchemeSyntax * __this, String * controlPath, MethodInfo * method)); +DO_APP_FUNC(0x0293F500, InputControlScheme, InputActionSetupExtensions_ControlSchemeSyntax_Done, (InputActionSetupExtensions_ControlSchemeSyntax * __this, MethodInfo * method)); +DO_APP_FUNC(0x0293F660, void, InputActionSetupExtensions_ControlSchemeSyntax_AddDeviceEntry, (InputActionSetupExtensions_ControlSchemeSyntax * __this, String * controlPath, InputControlScheme_DeviceRequirement_Flags__Enum flags, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2750, InputActionSetupExtensions_ControlSchemeSyntax_AddDeviceEntry__MethodInfo); DO_APP_FUNC(0x003AE050, void, InputActionSetupExtensions_c_DisplayClass5_0__ctor, (InputActionSetupExtensions_c_DisplayClass5_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0293FAB0, bool, InputActionSetupExtensions_c_DisplayClass5_0__RemoveAction_b__0, (InputActionSetupExtensions_c_DisplayClass5_0 * __this, InputBinding b, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2B50, InputActionSetupExtensions_c_DisplayClass5_0__RemoveAction_b__0__MethodInfo); DO_APP_FUNC(0x00A9C5C0, int32_t, InputActionState_get_totalCompositeCount, (InputActionState * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7400, int32_t, InputActionState_get_totalMapCount, (InputActionState * __this, MethodInfo * method)); DO_APP_FUNC(0x00A113B0, int32_t, InputActionState_get_totalActionCount, (InputActionState * __this, MethodInfo * method)); @@ -51662,7 +60420,7 @@ DO_APP_FUNC(0x02940690, bool, InputActionState_IsUsingDevice, (InputActionState DO_APP_FUNC(0x02940820, bool, InputActionState_CanUseDevice, (InputActionState * __this, InputDevice * device, MethodInfo * method)); DO_APP_FUNC(0x02940B00, bool, InputActionState_HasEnabledActions, (InputActionState * __this, MethodInfo * method)); DO_APP_FUNC(0x02940B60, void, InputActionState_FinishBindingCompositeSetups, (InputActionState * __this, MethodInfo * method)); -DO_APP_FUNC(0x02940C90, void, InputActionState_PrepareForBindingReResolution, (InputActionState * __this, bool needFullResolve, InputControlList_1_InputControl_ activeControls, bool hasEnabledActions, MethodInfo * method)); +DO_APP_FUNC(0x02940C90, void, InputActionState_PrepareForBindingReResolution, (InputActionState * __this, bool needFullResolve, InputControlList_1_InputControl_ * activeControls, bool * hasEnabledActions, MethodInfo * method)); DO_APP_FUNC(0x029411C0, void, InputActionState_FinishBindingResolution, (InputActionState * __this, bool hasEnabledActions, InputActionState_UnmanagedMemory oldMemory, InputControlList_1_InputControl_ activeControls, bool isFullResolve, MethodInfo * method)); DO_APP_FUNC(0x029413C0, void, InputActionState_RestoreActionStatesAfterReResolvingBindings, (InputActionState * __this, InputActionState_UnmanagedMemory oldState, InputControlList_1_InputControl_ activeControls, bool isFullResolve, MethodInfo * method)); DO_APP_FUNC(0x02941BA0, bool, InputActionState_IsActiveControl, (InputActionState * __this, int32_t bindingIndex, int32_t controlIndex, MethodInfo * method)); @@ -51670,7 +60428,7 @@ DO_APP_FUNC(0x02941C60, int32_t, InputActionState_FindControlIndexOnBinding, (In DO_APP_FUNC(0x02941CD0, void, InputActionState_ResetActionStatesDrivenBy, (InputActionState * __this, InputDevice * device, MethodInfo * method)); DO_APP_FUNC(0x02941E40, bool, InputActionState_IsActionBoundToControlFromDevice, (InputActionState * __this, InputDevice * device, int32_t actionIndex, MethodInfo * method)); DO_APP_FUNC(0x02941F50, void, InputActionState_ResetActionState, (InputActionState * __this, int32_t actionIndex, InputActionPhase__Enum toPhase, bool hardReset, MethodInfo * method)); -DO_APP_FUNC(0x029421A0, InputActionState_TriggerState, InputActionState_FetchActionState, (InputActionState * __this, InputAction_1 * action, MethodInfo * method)); +DO_APP_FUNC(0x029421A0, InputActionState_TriggerState *, InputActionState_FetchActionState, (InputActionState * __this, InputAction_1 * action, MethodInfo * method)); DO_APP_FUNC(0x029421D0, InputActionState_ActionMapIndices, InputActionState_FetchMapIndices, (InputActionState * __this, InputActionMap * map, MethodInfo * method)); DO_APP_FUNC(0x02942220, void, InputActionState_EnableAllActions, (InputActionState * __this, InputActionMap * map, MethodInfo * method)); DO_APP_FUNC(0x02942470, void, InputActionState_EnableControls, (InputActionState * __this, InputActionMap * map, MethodInfo * method)); @@ -51689,41 +60447,42 @@ DO_APP_FUNC(0x029431E0, void, InputActionState_SetControlEnabled, (InputActionSt DO_APP_FUNC(0x02943220, void, InputActionState_HookOnBeforeUpdate, (InputActionState * __this, MethodInfo * method)); DO_APP_FUNC(0x029433B0, void, InputActionState_UnhookOnBeforeUpdate, (InputActionState * __this, MethodInfo * method)); DO_APP_FUNC(0x02943480, void, InputActionState_OnBeforeInitialUpdate, (InputActionState * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC26A0, InputActionState_OnBeforeInitialUpdate__MethodInfo); DO_APP_FUNC(0x02943840, void, InputActionState_UnityEngine_InputSystem_LowLevel_IInputStateChangeMonitor_NotifyControlStateChanged, (InputActionState * __this, InputControl * control, double time, InputEventPtr eventPtr, int64_t mapControlAndBindingIndex, MethodInfo * method)); DO_APP_FUNC(0x02943890, void, InputActionState_UnityEngine_InputSystem_LowLevel_IInputStateChangeMonitor_NotifyTimerExpired, (InputActionState * __this, InputControl * control, double time, int64_t mapControlAndBindingIndex, int32_t interactionIndex, MethodInfo * method)); DO_APP_FUNC(0x029438E0, int64_t, InputActionState_ToCombinedMapAndControlAndBindingIndex, (InputActionState * __this, int32_t mapIndex, int32_t controlIndex, int32_t bindingIndex, MethodInfo * method)); -DO_APP_FUNC(0x02943920, void, InputActionState_SplitUpMapAndControlAndBindingIndex, (InputActionState * __this, int64_t mapControlAndBindingIndex, int32_t mapIndex, int32_t controlIndex, int32_t bindingIndex, MethodInfo * method)); +DO_APP_FUNC(0x02943920, void, InputActionState_SplitUpMapAndControlAndBindingIndex, (InputActionState * __this, int64_t mapControlAndBindingIndex, int32_t * mapIndex, int32_t * controlIndex, int32_t * bindingIndex, MethodInfo * method)); DO_APP_FUNC(0x02943950, int32_t, InputActionState_GetComplexityFromMonitorIndex, (int64_t mapControlAndBindingIndex, MethodInfo * method)); DO_APP_FUNC(0x02943960, void, InputActionState_ProcessControlStateChange, (InputActionState * __this, int32_t mapIndex, int32_t controlIndex, int32_t bindingIndex, double time, InputEventPtr eventPtr, MethodInfo * method)); -DO_APP_FUNC(0x029440A0, void, InputActionState_ProcessButtonState, (InputActionState * __this, InputActionState_TriggerState trigger, int32_t actionIndex, InputActionState_BindingState * bindingStatePtr, MethodInfo * method)); +DO_APP_FUNC(0x029440A0, void, InputActionState_ProcessButtonState, (InputActionState * __this, InputActionState_TriggerState * trigger, int32_t actionIndex, InputActionState_BindingState * bindingStatePtr, MethodInfo * method)); DO_APP_FUNC(0x029442B0, bool, InputActionState_ShouldIgnoreInputOnCompositeBinding, (InputActionState_BindingState * binding, InputEvent * eventPtr, MethodInfo * method)); -DO_APP_FUNC(0x029442D0, bool, InputActionState_IsConflictingInput, (InputActionState * __this, InputActionState_TriggerState trigger, int32_t actionIndex, MethodInfo * method)); -DO_APP_FUNC(0x02944870, uint16_t, InputActionState_GetActionBindingStartIndexAndCount, (InputActionState * __this, int32_t actionIndex, uint16_t bindingCount, MethodInfo * method)); -DO_APP_FUNC(0x029448A0, void, InputActionState_ProcessDefaultInteraction, (InputActionState * __this, InputActionState_TriggerState trigger, int32_t actionIndex, MethodInfo * method)); -DO_APP_FUNC(0x02944BF0, void, InputActionState_ProcessInteractions, (InputActionState * __this, InputActionState_TriggerState trigger, int32_t interactionStartIndex, int32_t interactionCount, MethodInfo * method)); +DO_APP_FUNC(0x029442D0, bool, InputActionState_IsConflictingInput, (InputActionState * __this, InputActionState_TriggerState * trigger, int32_t actionIndex, MethodInfo * method)); +DO_APP_FUNC(0x02944870, uint16_t, InputActionState_GetActionBindingStartIndexAndCount, (InputActionState * __this, int32_t actionIndex, uint16_t * bindingCount, MethodInfo * method)); +DO_APP_FUNC(0x029448A0, void, InputActionState_ProcessDefaultInteraction, (InputActionState * __this, InputActionState_TriggerState * trigger, int32_t actionIndex, MethodInfo * method)); +DO_APP_FUNC(0x02944BF0, void, InputActionState_ProcessInteractions, (InputActionState * __this, InputActionState_TriggerState * trigger, int32_t interactionStartIndex, int32_t interactionCount, MethodInfo * method)); DO_APP_FUNC(0x02944E90, void, InputActionState_ProcessTimeout, (InputActionState * __this, double time, int32_t mapIndex, int32_t controlIndex, int32_t bindingIndex, int32_t interactionIndex, MethodInfo * method)); -DO_APP_FUNC(0x02945240, void, InputActionState_SetTotalTimeoutCompletionTime, (InputActionState * __this, float seconds, InputActionState_TriggerState trigger, MethodInfo * method)); -DO_APP_FUNC(0x02945280, void, InputActionState_StartTimeout, (InputActionState * __this, float seconds, InputActionState_TriggerState trigger, MethodInfo * method)); +DO_APP_FUNC(0x02945240, void, InputActionState_SetTotalTimeoutCompletionTime, (InputActionState * __this, float seconds, InputActionState_TriggerState * trigger, MethodInfo * method)); +DO_APP_FUNC(0x02945280, void, InputActionState_StartTimeout, (InputActionState * __this, float seconds, InputActionState_TriggerState * trigger, MethodInfo * method)); DO_APP_FUNC(0x02945430, void, InputActionState_StopTimeout, (InputActionState * __this, int32_t interactionIndex, MethodInfo * method)); -DO_APP_FUNC(0x02945510, void, InputActionState_ChangePhaseOfInteraction, (InputActionState * __this, InputActionPhase__Enum newPhase, InputActionState_TriggerState trigger, InputActionPhase__Enum phaseAfterPerformed, bool processNextInteractionOnCancel, MethodInfo * method)); -DO_APP_FUNC(0x02945A40, bool, InputActionState_ChangePhaseOfAction, (InputActionState * __this, InputActionPhase__Enum newPhase, InputActionState_TriggerState trigger, InputActionPhase__Enum phaseAfterPerformedOrCanceled, MethodInfo * method)); -DO_APP_FUNC(0x02945C80, void, InputActionState_ChangePhaseOfActionInternal, (InputActionState * __this, int32_t actionIndex, InputActionState_TriggerState * actionState, InputActionPhase__Enum newPhase, InputActionState_TriggerState trigger, MethodInfo * method)); -DO_APP_FUNC(0x02945F40, void, InputActionState_CallActionListeners, (InputActionState * __this, int32_t actionIndex, InputActionMap * actionMap, InputActionPhase__Enum phase, CallbackArray_1_System_Action_1__1 listeners, String * callbackName, MethodInfo * method)); -DO_APP_FUNC(0x02946210, Object *, InputActionState_GetActionOrNoneString, (InputActionState * __this, InputActionState_TriggerState trigger, MethodInfo * method)); +DO_APP_FUNC(0x02945510, void, InputActionState_ChangePhaseOfInteraction, (InputActionState * __this, InputActionPhase__Enum newPhase, InputActionState_TriggerState * trigger, InputActionPhase__Enum phaseAfterPerformed, bool processNextInteractionOnCancel, MethodInfo * method)); +DO_APP_FUNC(0x02945A40, bool, InputActionState_ChangePhaseOfAction, (InputActionState * __this, InputActionPhase__Enum newPhase, InputActionState_TriggerState * trigger, InputActionPhase__Enum phaseAfterPerformedOrCanceled, MethodInfo * method)); +DO_APP_FUNC(0x02945C80, void, InputActionState_ChangePhaseOfActionInternal, (InputActionState * __this, int32_t actionIndex, InputActionState_TriggerState * actionState, InputActionPhase__Enum newPhase, InputActionState_TriggerState * trigger, MethodInfo * method)); +DO_APP_FUNC(0x02945F40, void, InputActionState_CallActionListeners, (InputActionState * __this, int32_t actionIndex, InputActionMap * actionMap, InputActionPhase__Enum phase, CallbackArray_1_System_Action_1__1 * listeners, String * callbackName, MethodInfo * method)); +DO_APP_FUNC(0x02946210, Object *, InputActionState_GetActionOrNoneString, (InputActionState * __this, InputActionState_TriggerState * trigger, MethodInfo * method)); DO_APP_FUNC(0x02946270, InputAction_1 *, InputActionState_GetActionOrNull, (InputActionState * __this, int32_t bindingIndex, MethodInfo * method)); -DO_APP_FUNC(0x02946310, InputAction_1 *, InputActionState_GetActionOrNull_1, (InputActionState * __this, InputActionState_TriggerState trigger, MethodInfo * method)); -DO_APP_FUNC(0x029463B0, InputControl *, InputActionState_GetControl, (InputActionState * __this, InputActionState_TriggerState trigger, MethodInfo * method)); -DO_APP_FUNC(0x02946400, IInputInteraction *, InputActionState_GetInteractionOrNull, (InputActionState * __this, InputActionState_TriggerState trigger, MethodInfo * method)); +DO_APP_FUNC(0x02946310, InputAction_1 *, InputActionState_GetActionOrNull_1, (InputActionState * __this, InputActionState_TriggerState * trigger, MethodInfo * method)); +DO_APP_FUNC(0x029463B0, InputControl *, InputActionState_GetControl, (InputActionState * __this, InputActionState_TriggerState * trigger, MethodInfo * method)); +DO_APP_FUNC(0x02946400, IInputInteraction *, InputActionState_GetInteractionOrNull, (InputActionState * __this, InputActionState_TriggerState * trigger, MethodInfo * method)); DO_APP_FUNC(0x02946440, int32_t, InputActionState_GetBindingIndexInMap, (InputActionState * __this, int32_t bindingIndex, MethodInfo * method)); DO_APP_FUNC(0x02946490, int32_t, InputActionState_GetBindingIndexInState, (InputActionState * __this, int32_t mapIndex, int32_t bindingIndexInMap, MethodInfo * method)); -DO_APP_FUNC(0x029464D0, InputActionState_BindingState, InputActionState_GetBindingState, (InputActionState * __this, int32_t bindingIndex, MethodInfo * method)); -DO_APP_FUNC(0x029464E0, InputBinding, InputActionState_GetBinding, (InputActionState * __this, int32_t bindingIndex, MethodInfo * method)); +DO_APP_FUNC(0x029464D0, InputActionState_BindingState *, InputActionState_GetBindingState, (InputActionState * __this, int32_t bindingIndex, MethodInfo * method)); +DO_APP_FUNC(0x029464E0, InputBinding *, InputActionState_GetBinding, (InputActionState * __this, int32_t bindingIndex, MethodInfo * method)); DO_APP_FUNC(0x02946560, InputActionMap *, InputActionState_GetActionMap, (InputActionState * __this, int32_t bindingIndex, MethodInfo * method)); DO_APP_FUNC(0x029465A0, void, InputActionState_ResetInteractionStateAndCancelIfNecessary, (InputActionState * __this, int32_t mapIndex, int32_t bindingIndex, int32_t interactionIndex, MethodInfo * method)); DO_APP_FUNC(0x02946680, void, InputActionState_ResetInteractionState, (InputActionState * __this, int32_t interactionIndex, MethodInfo * method)); DO_APP_FUNC(0x02946750, int32_t, InputActionState_GetValueSizeInBytes, (InputActionState * __this, int32_t bindingIndex, int32_t controlIndex, MethodInfo * method)); DO_APP_FUNC(0x02946810, Type *, InputActionState_GetValueType, (InputActionState * __this, int32_t bindingIndex, int32_t controlIndex, MethodInfo * method)); -DO_APP_FUNC(0x029468D0, bool, InputActionState_IsActuated, (InputActionState_TriggerState trigger, float threshold, MethodInfo * method)); +DO_APP_FUNC(0x029468D0, bool, InputActionState_IsActuated, (InputActionState_TriggerState * trigger, float threshold, MethodInfo * method)); DO_APP_FUNC(0x02946930, void, InputActionState_ReadValue, (InputActionState * __this, int32_t bindingIndex, int32_t controlIndex, Void * buffer, int32_t bufferSize, bool ignoreComposites, MethodInfo * method)); DO_APP_FUNC(0x02946C80, float, InputActionState_EvaluateCompositePartMagnitude, (InputActionState * __this, int32_t bindingIndex, int32_t partNumber, MethodInfo * method)); DO_APP_FUNC(0x02946D70, double, InputActionState_GetCompositePartPressTime, (InputActionState * __this, int32_t bindingIndex, int32_t partNumber, MethodInfo * method)); @@ -51744,317 +60503,364 @@ DO_APP_FUNC(0x02948CC0, void, InputActionState_DeferredResolutionOfBindings, (Me DO_APP_FUNC(0x02948FE0, void, InputActionState_DisableAllActions_1, (MethodInfo * method)); DO_APP_FUNC(0x02949180, void, InputActionState_DestroyAllActionMapStates, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InputActionState__ctor, (InputActionState * __this, MethodInfo * method)); -DO_APP_FUNC(0x029494A0, int32_t, InputActionState_InteractionState_get_triggerControlIndex, (InputActionState_InteractionState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x029494C0, void, InputActionState_InteractionState_set_triggerControlIndex, (InputActionState_InteractionState__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x02949540, double, InputActionState_InteractionState_get_startTime, (InputActionState_InteractionState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02949550, void, InputActionState_InteractionState_set_startTime, (InputActionState_InteractionState__Boxed * __this, double value, MethodInfo * method)); -DO_APP_FUNC(0x00C107C0, double, InputActionState_InteractionState_get_performedTime, (InputActionState_InteractionState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02949560, void, InputActionState_InteractionState_set_performedTime, (InputActionState_InteractionState__Boxed * __this, double value, MethodInfo * method)); -DO_APP_FUNC(0x00C107B0, double, InputActionState_InteractionState_get_timerStartTime, (InputActionState_InteractionState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02949570, void, InputActionState_InteractionState_set_timerStartTime, (InputActionState_InteractionState__Boxed * __this, double value, MethodInfo * method)); -DO_APP_FUNC(0x00C4B940, float, InputActionState_InteractionState_get_timerDuration, (InputActionState_InteractionState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C7A0F0, void, InputActionState_InteractionState_set_timerDuration, (InputActionState_InteractionState__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x003CC930, float, InputActionState_InteractionState_get_totalTimeoutCompletionDone, (InputActionState_InteractionState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003CC940, void, InputActionState_InteractionState_set_totalTimeoutCompletionDone, (InputActionState_InteractionState__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x003CC900, float, InputActionState_InteractionState_get_totalTimeoutCompletionTimeRemaining, (InputActionState_InteractionState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003CC910, void, InputActionState_InteractionState_set_totalTimeoutCompletionTimeRemaining, (InputActionState_InteractionState__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x003BB3B0, int64_t, InputActionState_InteractionState_get_timerMonitorIndex, (InputActionState_InteractionState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0290ED10, void, InputActionState_InteractionState_set_timerMonitorIndex, (InputActionState_InteractionState__Boxed * __this, int64_t value, MethodInfo * method)); -DO_APP_FUNC(0x02949580, bool, InputActionState_InteractionState_get_isTimerRunning, (InputActionState_InteractionState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02949590, void, InputActionState_InteractionState_set_isTimerRunning, (InputActionState_InteractionState__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x01C045C0, InputActionPhase__Enum, InputActionState_InteractionState_get_phase, (InputActionState_InteractionState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x029495C0, void, InputActionState_InteractionState_set_phase, (InputActionState_InteractionState__Boxed * __this, InputActionPhase__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x021F3A90, int32_t, InputActionState_BindingState_get_controlStartIndex, (InputActionState_BindingState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x029495D0, void, InputActionState_BindingState_set_controlStartIndex, (InputActionState_BindingState__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, int32_t, InputActionState_BindingState_get_controlCount, (InputActionState_BindingState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02949670, void, InputActionState_BindingState_set_controlCount, (InputActionState_BindingState__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x02949710, int32_t, InputActionState_BindingState_get_interactionStartIndex, (InputActionState_BindingState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02949730, void, InputActionState_BindingState_set_interactionStartIndex, (InputActionState_BindingState__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x01819930, int32_t, InputActionState_BindingState_get_interactionCount, (InputActionState_BindingState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x029497E0, void, InputActionState_BindingState_set_interactionCount, (InputActionState_BindingState__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x02949880, int32_t, InputActionState_BindingState_get_processorStartIndex, (InputActionState_BindingState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x029498A0, void, InputActionState_BindingState_set_processorStartIndex, (InputActionState_BindingState__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x01C045C0, int32_t, InputActionState_BindingState_get_processorCount, (InputActionState_BindingState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02949950, void, InputActionState_BindingState_set_processorCount, (InputActionState_BindingState__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x029499F0, int32_t, InputActionState_BindingState_get_actionIndex, (InputActionState_BindingState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02949A10, void, InputActionState_BindingState_set_actionIndex, (InputActionState_BindingState__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x02949AC0, int32_t, InputActionState_BindingState_get_mapIndex, (InputActionState_BindingState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02949AD0, void, InputActionState_BindingState_set_mapIndex, (InputActionState_BindingState__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x02949B70, int32_t, InputActionState_BindingState_get_compositeOrCompositeBindingIndex, (InputActionState_BindingState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02949B90, void, InputActionState_BindingState_set_compositeOrCompositeBindingIndex, (InputActionState_BindingState__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x003BC2E0, int32_t, InputActionState_BindingState_get_triggerEventIdForComposite, (InputActionState_BindingState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCDD0, void, InputActionState_BindingState_set_triggerEventIdForComposite, (InputActionState_BindingState__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00C107B0, double, InputActionState_BindingState_get_pressTime, (InputActionState_BindingState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02949570, void, InputActionState_BindingState_set_pressTime, (InputActionState_BindingState__Boxed * __this, double value, MethodInfo * method)); -DO_APP_FUNC(0x0171B580, InputActionState_BindingState_Flags__Enum, InputActionState_BindingState_get_flags, (InputActionState_BindingState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02949C40, void, InputActionState_BindingState_set_flags, (InputActionState_BindingState__Boxed * __this, InputActionState_BindingState_Flags__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x02649CE0, bool, InputActionState_BindingState_get_chainsWithNext, (InputActionState_BindingState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02949C50, void, InputActionState_BindingState_set_chainsWithNext, (InputActionState_BindingState__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02949C80, bool, InputActionState_BindingState_get_isEndOfChain, (InputActionState_BindingState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02949C90, void, InputActionState_BindingState_set_isEndOfChain, (InputActionState_BindingState__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02949CC0, bool, InputActionState_BindingState_get_isPartOfChain, (InputActionState_BindingState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02949CE0, bool, InputActionState_BindingState_get_isComposite, (InputActionState_BindingState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02949CF0, void, InputActionState_BindingState_set_isComposite, (InputActionState_BindingState__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02949D20, bool, InputActionState_BindingState_get_isPartOfComposite, (InputActionState_BindingState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02949D30, void, InputActionState_BindingState_set_isPartOfComposite, (InputActionState_BindingState__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02949D60, bool, InputActionState_BindingState_get_initialStateCheckPending, (InputActionState_BindingState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02949D70, void, InputActionState_BindingState_set_initialStateCheckPending, (InputActionState_BindingState__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02949DA0, bool, InputActionState_BindingState_get_wantsInitialStateCheck, (InputActionState_BindingState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02949DB0, void, InputActionState_BindingState_set_wantsInitialStateCheck, (InputActionState_BindingState__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02949DE0, int32_t, InputActionState_BindingState_get_partIndex, (InputActionState_BindingState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02949DF0, void, InputActionState_BindingState_set_partIndex, (InputActionState_BindingState__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, InputActionPhase__Enum, InputActionState_TriggerState_get_phase, (InputActionState_TriggerState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C3C200, void, InputActionState_TriggerState_set_phase, (InputActionState_TriggerState__Boxed * __this, InputActionPhase__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x02949E00, bool, InputActionState_TriggerState_get_isDisabled, (InputActionState_TriggerState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02949E10, bool, InputActionState_TriggerState_get_isWaiting, (InputActionState_TriggerState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02949E20, bool, InputActionState_TriggerState_get_isStarted, (InputActionState_TriggerState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02949E30, bool, InputActionState_TriggerState_get_isPerformed, (InputActionState_TriggerState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02949E40, bool, InputActionState_TriggerState_get_isCanceled, (InputActionState_TriggerState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02949540, double, InputActionState_TriggerState_get_time, (InputActionState_TriggerState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02949550, void, InputActionState_TriggerState_set_time, (InputActionState_TriggerState__Boxed * __this, double value, MethodInfo * method)); -DO_APP_FUNC(0x00C107B0, double, InputActionState_TriggerState_get_startTime, (InputActionState_TriggerState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02949570, void, InputActionState_TriggerState_set_startTime, (InputActionState_TriggerState__Boxed * __this, double value, MethodInfo * method)); -DO_APP_FUNC(0x003CCB80, float, InputActionState_TriggerState_get_magnitude, (InputActionState_TriggerState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02949E50, void, InputActionState_TriggerState_set_magnitude, (InputActionState_TriggerState__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02949E60, bool, InputActionState_TriggerState_get_haveMagnitude, (InputActionState_TriggerState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C045C0, int32_t, InputActionState_TriggerState_get_mapIndex, (InputActionState_TriggerState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02949E70, void, InputActionState_TriggerState_set_mapIndex, (InputActionState_TriggerState__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x02949EE0, int32_t, InputActionState_TriggerState_get_controlIndex, (InputActionState_TriggerState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02949F00, void, InputActionState_TriggerState_set_controlIndex, (InputActionState_TriggerState__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00C15BF0, int32_t, InputActionState_TriggerState_get_bindingIndex, (InputActionState_TriggerState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02949F80, void, InputActionState_TriggerState_set_bindingIndex, (InputActionState_TriggerState__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x02949FF0, int32_t, InputActionState_TriggerState_get_interactionIndex, (InputActionState_TriggerState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0294A010, void, InputActionState_TriggerState_set_interactionIndex, (InputActionState_TriggerState__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x003CC980, uint32_t, InputActionState_TriggerState_get_lastPerformedInUpdate, (InputActionState_TriggerState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003CC990, void, InputActionState_TriggerState_set_lastPerformedInUpdate, (InputActionState_TriggerState__Boxed * __this, uint32_t value, MethodInfo * method)); -DO_APP_FUNC(0x003CD280, uint32_t, InputActionState_TriggerState_get_lastCanceledInUpdate, (InputActionState_TriggerState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x006D8950, void, InputActionState_TriggerState_set_lastCanceledInUpdate, (InputActionState_TriggerState__Boxed * __this, uint32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00421680, uint32_t, InputActionState_TriggerState_get_pressedInUpdate, (InputActionState_TriggerState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00421690, void, InputActionState_TriggerState_set_pressedInUpdate, (InputActionState_TriggerState__Boxed * __this, uint32_t value, MethodInfo * method)); -DO_APP_FUNC(0x0098C870, uint32_t, InputActionState_TriggerState_get_releasedInUpdate, (InputActionState_TriggerState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0098C880, void, InputActionState_TriggerState_set_releasedInUpdate, (InputActionState_TriggerState__Boxed * __this, uint32_t value, MethodInfo * method)); -DO_APP_FUNC(0x0294A090, bool, InputActionState_TriggerState_get_isPassThrough, (InputActionState_TriggerState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0294A0A0, void, InputActionState_TriggerState_set_isPassThrough, (InputActionState_TriggerState__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x0294A0D0, bool, InputActionState_TriggerState_get_isButton, (InputActionState_TriggerState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0294A0E0, void, InputActionState_TriggerState_set_isButton, (InputActionState_TriggerState__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x0294A110, bool, InputActionState_TriggerState_get_isPressed, (InputActionState_TriggerState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0294A120, void, InputActionState_TriggerState_set_isPressed, (InputActionState_TriggerState__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x0294A150, bool, InputActionState_TriggerState_get_mayNeedConflictResolution, (InputActionState_TriggerState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0294A160, void, InputActionState_TriggerState_set_mayNeedConflictResolution, (InputActionState_TriggerState__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x0294A190, bool, InputActionState_TriggerState_get_hasMultipleConcurrentActuations, (InputActionState_TriggerState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0294A1A0, void, InputActionState_TriggerState_set_hasMultipleConcurrentActuations, (InputActionState_TriggerState__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x0294A1D0, bool, InputActionState_TriggerState_get_inProcessing, (InputActionState_TriggerState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0294A1E0, void, InputActionState_TriggerState_set_inProcessing, (InputActionState_TriggerState__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x01819930, InputActionState_TriggerState_Flags__Enum, InputActionState_TriggerState_get_flags, (InputActionState_TriggerState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC7BF0, void, InputActionState_TriggerState_set_flags, (InputActionState_TriggerState__Boxed * __this, InputActionState_TriggerState_Flags__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x01809EF0, bool, InputActionState_UnmanagedMemory_get_isAllocated, (InputActionState_UnmanagedMemory__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0294A210, int32_t, InputActionState_UnmanagedMemory_get_sizeInBytes, (InputActionState_UnmanagedMemory__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0294A250, void, InputActionState_UnmanagedMemory_Allocate, (InputActionState_UnmanagedMemory__Boxed * __this, int32_t mapCount, int32_t actionCount, int32_t bindingCount, int32_t controlCount, int32_t interactionCount, int32_t compositeCount, MethodInfo * method)); -DO_APP_FUNC(0x0294A440, void, InputActionState_UnmanagedMemory_Dispose, (InputActionState_UnmanagedMemory__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0294A4F0, void, InputActionState_UnmanagedMemory_CopyDataFrom, (InputActionState_UnmanagedMemory__Boxed * __this, InputActionState_UnmanagedMemory memory, MethodInfo * method)); -DO_APP_FUNC(0x0294A640, InputActionState_UnmanagedMemory, InputActionState_UnmanagedMemory_Clone, (InputActionState_UnmanagedMemory__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x029494A0, int32_t, InputActionState_InteractionState_get_triggerControlIndex, (InputActionState_InteractionState * __this, MethodInfo * method)); +DO_APP_FUNC(0x029494C0, void, InputActionState_InteractionState_set_triggerControlIndex, (InputActionState_InteractionState * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2408, InputActionState_InteractionState_set_triggerControlIndex__MethodInfo); +DO_APP_FUNC(0x02949540, double, InputActionState_InteractionState_get_startTime, (InputActionState_InteractionState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02949550, void, InputActionState_InteractionState_set_startTime, (InputActionState_InteractionState * __this, double value, MethodInfo * method)); +DO_APP_FUNC(0x00C107C0, double, InputActionState_InteractionState_get_performedTime, (InputActionState_InteractionState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02949560, void, InputActionState_InteractionState_set_performedTime, (InputActionState_InteractionState * __this, double value, MethodInfo * method)); +DO_APP_FUNC(0x00C107B0, double, InputActionState_InteractionState_get_timerStartTime, (InputActionState_InteractionState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02949570, void, InputActionState_InteractionState_set_timerStartTime, (InputActionState_InteractionState * __this, double value, MethodInfo * method)); +DO_APP_FUNC(0x00C4B940, float, InputActionState_InteractionState_get_timerDuration, (InputActionState_InteractionState * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C7A0F0, void, InputActionState_InteractionState_set_timerDuration, (InputActionState_InteractionState * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x003CC930, float, InputActionState_InteractionState_get_totalTimeoutCompletionDone, (InputActionState_InteractionState * __this, MethodInfo * method)); +DO_APP_FUNC(0x003CC940, void, InputActionState_InteractionState_set_totalTimeoutCompletionDone, (InputActionState_InteractionState * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x003CC900, float, InputActionState_InteractionState_get_totalTimeoutCompletionTimeRemaining, (InputActionState_InteractionState * __this, MethodInfo * method)); +DO_APP_FUNC(0x003CC910, void, InputActionState_InteractionState_set_totalTimeoutCompletionTimeRemaining, (InputActionState_InteractionState * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x003BB3B0, int64_t, InputActionState_InteractionState_get_timerMonitorIndex, (InputActionState_InteractionState * __this, MethodInfo * method)); +DO_APP_FUNC(0x0290ED10, void, InputActionState_InteractionState_set_timerMonitorIndex, (InputActionState_InteractionState * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC(0x02949580, bool, InputActionState_InteractionState_get_isTimerRunning, (InputActionState_InteractionState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02949590, void, InputActionState_InteractionState_set_isTimerRunning, (InputActionState_InteractionState * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x01C045C0, InputActionPhase__Enum, InputActionState_InteractionState_get_phase, (InputActionState_InteractionState * __this, MethodInfo * method)); +DO_APP_FUNC(0x029495C0, void, InputActionState_InteractionState_set_phase, (InputActionState_InteractionState * __this, InputActionPhase__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x021F3A90, int32_t, InputActionState_BindingState_get_controlStartIndex, (InputActionState_BindingState * __this, MethodInfo * method)); +DO_APP_FUNC(0x029495D0, void, InputActionState_BindingState_set_controlStartIndex, (InputActionState_BindingState * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2418, InputActionState_BindingState_set_controlStartIndex__MethodInfo); +DO_APP_FUNC(0x00C173D0, int32_t, InputActionState_BindingState_get_controlCount, (InputActionState_BindingState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02949670, void, InputActionState_BindingState_set_controlCount, (InputActionState_BindingState * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2428, InputActionState_BindingState_set_controlCount__MethodInfo); +DO_APP_FUNC(0x02949710, int32_t, InputActionState_BindingState_get_interactionStartIndex, (InputActionState_BindingState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02949730, void, InputActionState_BindingState_set_interactionStartIndex, (InputActionState_BindingState * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2438, InputActionState_BindingState_set_interactionStartIndex__MethodInfo); +DO_APP_FUNC(0x01819930, int32_t, InputActionState_BindingState_get_interactionCount, (InputActionState_BindingState * __this, MethodInfo * method)); +DO_APP_FUNC(0x029497E0, void, InputActionState_BindingState_set_interactionCount, (InputActionState_BindingState * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC24B0, InputActionState_BindingState_set_interactionCount__MethodInfo); +DO_APP_FUNC(0x02949880, int32_t, InputActionState_BindingState_get_processorStartIndex, (InputActionState_BindingState * __this, MethodInfo * method)); +DO_APP_FUNC(0x029498A0, void, InputActionState_BindingState_set_processorStartIndex, (InputActionState_BindingState * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC24D0, InputActionState_BindingState_set_processorStartIndex__MethodInfo); +DO_APP_FUNC(0x01C045C0, int32_t, InputActionState_BindingState_get_processorCount, (InputActionState_BindingState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02949950, void, InputActionState_BindingState_set_processorCount, (InputActionState_BindingState * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC24F0, InputActionState_BindingState_set_processorCount__MethodInfo); +DO_APP_FUNC(0x029499F0, int32_t, InputActionState_BindingState_get_actionIndex, (InputActionState_BindingState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02949A10, void, InputActionState_BindingState_set_actionIndex, (InputActionState_BindingState * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2500, InputActionState_BindingState_set_actionIndex__MethodInfo); +DO_APP_FUNC(0x02949AC0, int32_t, InputActionState_BindingState_get_mapIndex, (InputActionState_BindingState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02949AD0, void, InputActionState_BindingState_set_mapIndex, (InputActionState_BindingState * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2468, InputActionState_BindingState_set_mapIndex__MethodInfo); +DO_APP_FUNC(0x02949B70, int32_t, InputActionState_BindingState_get_compositeOrCompositeBindingIndex, (InputActionState_BindingState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02949B90, void, InputActionState_BindingState_set_compositeOrCompositeBindingIndex, (InputActionState_BindingState * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2488, InputActionState_BindingState_set_compositeOrCompositeBindingIndex__MethodInfo); +DO_APP_FUNC(0x003BC2E0, int32_t, InputActionState_BindingState_get_triggerEventIdForComposite, (InputActionState_BindingState * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCDD0, void, InputActionState_BindingState_set_triggerEventIdForComposite, (InputActionState_BindingState * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x00C107B0, double, InputActionState_BindingState_get_pressTime, (InputActionState_BindingState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02949570, void, InputActionState_BindingState_set_pressTime, (InputActionState_BindingState * __this, double value, MethodInfo * method)); +DO_APP_FUNC(0x0171B580, InputActionState_BindingState_Flags__Enum, InputActionState_BindingState_get_flags, (InputActionState_BindingState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02949C40, void, InputActionState_BindingState_set_flags, (InputActionState_BindingState * __this, InputActionState_BindingState_Flags__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x02649CE0, bool, InputActionState_BindingState_get_chainsWithNext, (InputActionState_BindingState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02949C50, void, InputActionState_BindingState_set_chainsWithNext, (InputActionState_BindingState * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02949C80, bool, InputActionState_BindingState_get_isEndOfChain, (InputActionState_BindingState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02949C90, void, InputActionState_BindingState_set_isEndOfChain, (InputActionState_BindingState * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02949CC0, bool, InputActionState_BindingState_get_isPartOfChain, (InputActionState_BindingState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02949CE0, bool, InputActionState_BindingState_get_isComposite, (InputActionState_BindingState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02949CF0, void, InputActionState_BindingState_set_isComposite, (InputActionState_BindingState * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02949D20, bool, InputActionState_BindingState_get_isPartOfComposite, (InputActionState_BindingState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02949D30, void, InputActionState_BindingState_set_isPartOfComposite, (InputActionState_BindingState * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02949D60, bool, InputActionState_BindingState_get_initialStateCheckPending, (InputActionState_BindingState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02949D70, void, InputActionState_BindingState_set_initialStateCheckPending, (InputActionState_BindingState * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02949DA0, bool, InputActionState_BindingState_get_wantsInitialStateCheck, (InputActionState_BindingState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02949DB0, void, InputActionState_BindingState_set_wantsInitialStateCheck, (InputActionState_BindingState * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02949DE0, int32_t, InputActionState_BindingState_get_partIndex, (InputActionState_BindingState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02949DF0, void, InputActionState_BindingState_set_partIndex, (InputActionState_BindingState * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2498, InputActionState_BindingState_set_partIndex__MethodInfo); +DO_APP_FUNC(0x00C173D0, InputActionPhase__Enum, InputActionState_TriggerState_get_phase, (InputActionState_TriggerState * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C3C200, void, InputActionState_TriggerState_set_phase, (InputActionState_TriggerState * __this, InputActionPhase__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x02949E00, bool, InputActionState_TriggerState_get_isDisabled, (InputActionState_TriggerState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02949E10, bool, InputActionState_TriggerState_get_isWaiting, (InputActionState_TriggerState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02949E20, bool, InputActionState_TriggerState_get_isStarted, (InputActionState_TriggerState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02949E30, bool, InputActionState_TriggerState_get_isPerformed, (InputActionState_TriggerState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02949E40, bool, InputActionState_TriggerState_get_isCanceled, (InputActionState_TriggerState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02949540, double, InputActionState_TriggerState_get_time, (InputActionState_TriggerState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02949550, void, InputActionState_TriggerState_set_time, (InputActionState_TriggerState * __this, double value, MethodInfo * method)); +DO_APP_FUNC(0x00C107B0, double, InputActionState_TriggerState_get_startTime, (InputActionState_TriggerState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02949570, void, InputActionState_TriggerState_set_startTime, (InputActionState_TriggerState * __this, double value, MethodInfo * method)); +DO_APP_FUNC(0x003CCB80, float, InputActionState_TriggerState_get_magnitude, (InputActionState_TriggerState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02949E50, void, InputActionState_TriggerState_set_magnitude, (InputActionState_TriggerState * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02949E60, bool, InputActionState_TriggerState_get_haveMagnitude, (InputActionState_TriggerState * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C045C0, int32_t, InputActionState_TriggerState_get_mapIndex, (InputActionState_TriggerState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02949E70, void, InputActionState_TriggerState_set_mapIndex, (InputActionState_TriggerState * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2370, InputActionState_TriggerState_set_mapIndex__MethodInfo); +DO_APP_FUNC(0x02949EE0, int32_t, InputActionState_TriggerState_get_controlIndex, (InputActionState_TriggerState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02949F00, void, InputActionState_TriggerState_set_controlIndex, (InputActionState_TriggerState * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2368, InputActionState_TriggerState_set_controlIndex__MethodInfo); +DO_APP_FUNC(0x00C15BF0, int32_t, InputActionState_TriggerState_get_bindingIndex, (InputActionState_TriggerState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02949F80, void, InputActionState_TriggerState_set_bindingIndex, (InputActionState_TriggerState * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2378, InputActionState_TriggerState_set_bindingIndex__MethodInfo); +DO_APP_FUNC(0x02949FF0, int32_t, InputActionState_TriggerState_get_interactionIndex, (InputActionState_TriggerState * __this, MethodInfo * method)); +DO_APP_FUNC(0x0294A010, void, InputActionState_TriggerState_set_interactionIndex, (InputActionState_TriggerState * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2390, InputActionState_TriggerState_set_interactionIndex__MethodInfo); +DO_APP_FUNC(0x003CC980, uint32_t, InputActionState_TriggerState_get_lastPerformedInUpdate, (InputActionState_TriggerState * __this, MethodInfo * method)); +DO_APP_FUNC(0x003CC990, void, InputActionState_TriggerState_set_lastPerformedInUpdate, (InputActionState_TriggerState * __this, uint32_t value, MethodInfo * method)); +DO_APP_FUNC(0x003CD280, uint32_t, InputActionState_TriggerState_get_lastCanceledInUpdate, (InputActionState_TriggerState * __this, MethodInfo * method)); +DO_APP_FUNC(0x006D8950, void, InputActionState_TriggerState_set_lastCanceledInUpdate, (InputActionState_TriggerState * __this, uint32_t value, MethodInfo * method)); +DO_APP_FUNC(0x00421680, uint32_t, InputActionState_TriggerState_get_pressedInUpdate, (InputActionState_TriggerState * __this, MethodInfo * method)); +DO_APP_FUNC(0x00421690, void, InputActionState_TriggerState_set_pressedInUpdate, (InputActionState_TriggerState * __this, uint32_t value, MethodInfo * method)); +DO_APP_FUNC(0x0098C870, uint32_t, InputActionState_TriggerState_get_releasedInUpdate, (InputActionState_TriggerState * __this, MethodInfo * method)); +DO_APP_FUNC(0x0098C880, void, InputActionState_TriggerState_set_releasedInUpdate, (InputActionState_TriggerState * __this, uint32_t value, MethodInfo * method)); +DO_APP_FUNC(0x0294A090, bool, InputActionState_TriggerState_get_isPassThrough, (InputActionState_TriggerState * __this, MethodInfo * method)); +DO_APP_FUNC(0x0294A0A0, void, InputActionState_TriggerState_set_isPassThrough, (InputActionState_TriggerState * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x0294A0D0, bool, InputActionState_TriggerState_get_isButton, (InputActionState_TriggerState * __this, MethodInfo * method)); +DO_APP_FUNC(0x0294A0E0, void, InputActionState_TriggerState_set_isButton, (InputActionState_TriggerState * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x0294A110, bool, InputActionState_TriggerState_get_isPressed, (InputActionState_TriggerState * __this, MethodInfo * method)); +DO_APP_FUNC(0x0294A120, void, InputActionState_TriggerState_set_isPressed, (InputActionState_TriggerState * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x0294A150, bool, InputActionState_TriggerState_get_mayNeedConflictResolution, (InputActionState_TriggerState * __this, MethodInfo * method)); +DO_APP_FUNC(0x0294A160, void, InputActionState_TriggerState_set_mayNeedConflictResolution, (InputActionState_TriggerState * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x0294A190, bool, InputActionState_TriggerState_get_hasMultipleConcurrentActuations, (InputActionState_TriggerState * __this, MethodInfo * method)); +DO_APP_FUNC(0x0294A1A0, void, InputActionState_TriggerState_set_hasMultipleConcurrentActuations, (InputActionState_TriggerState * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x0294A1D0, bool, InputActionState_TriggerState_get_inProcessing, (InputActionState_TriggerState * __this, MethodInfo * method)); +DO_APP_FUNC(0x0294A1E0, void, InputActionState_TriggerState_set_inProcessing, (InputActionState_TriggerState * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x01819930, InputActionState_TriggerState_Flags__Enum, InputActionState_TriggerState_get_flags, (InputActionState_TriggerState * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC7BF0, void, InputActionState_TriggerState_set_flags, (InputActionState_TriggerState * __this, InputActionState_TriggerState_Flags__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x01809EF0, bool, InputActionState_UnmanagedMemory_get_isAllocated, (InputActionState_UnmanagedMemory * __this, MethodInfo * method)); +DO_APP_FUNC(0x0294A210, int32_t, InputActionState_UnmanagedMemory_get_sizeInBytes, (InputActionState_UnmanagedMemory * __this, MethodInfo * method)); +DO_APP_FUNC(0x0294A250, void, InputActionState_UnmanagedMemory_Allocate, (InputActionState_UnmanagedMemory * __this, int32_t mapCount, int32_t actionCount, int32_t bindingCount, int32_t controlCount, int32_t interactionCount, int32_t compositeCount, MethodInfo * method)); +DO_APP_FUNC(0x0294A440, void, InputActionState_UnmanagedMemory_Dispose, (InputActionState_UnmanagedMemory * __this, MethodInfo * method)); +DO_APP_FUNC(0x0294A4F0, void, InputActionState_UnmanagedMemory_CopyDataFrom, (InputActionState_UnmanagedMemory * __this, InputActionState_UnmanagedMemory memory, MethodInfo * method)); +DO_APP_FUNC(0x0294A640, InputActionState_UnmanagedMemory, InputActionState_UnmanagedMemory_Clone, (InputActionState_UnmanagedMemory * __this, MethodInfo * method)); DO_APP_FUNC(0x0294A790, void, InputActionState_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InputActionState_c__ctor, (InputActionState_c * __this, MethodInfo * method)); -DO_APP_FUNC(0x0294A840, void, InputActionState_c__SaveAndResetState_b__135_0, (InputActionState_c * __this, InputActionState_GlobalState state, MethodInfo * method)); +DO_APP_FUNC(0x0294A840, void, InputActionState_c__SaveAndResetState_b__135_0, (InputActionState_c * __this, InputActionState_GlobalState * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2520, InputActionState_c__SaveAndResetState_b__135_0__MethodInfo); DO_APP_FUNC(0x0294A9D0, void, InputActionState_c__SaveAndResetState_b__135_1, (InputActionState_c * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, String *, InputBinding_get_name, (InputBinding__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, InputBinding_set_name, (InputBinding__Boxed * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x0294A9E0, Guid, InputBinding_get_id, (InputBinding__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0294AAE0, void, InputBinding_set_id, (InputBinding__Boxed * __this, Guid value, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, String *, InputBinding_get_path, (InputBinding__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCBE0, void, InputBinding_set_path, (InputBinding__Boxed * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x003C7390, String *, InputBinding_get_overridePath, (InputBinding__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003C73A0, void, InputBinding_set_overridePath, (InputBinding__Boxed * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x003BB3D0, String *, InputBinding_get_interactions, (InputBinding__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003AE960, void, InputBinding_set_interactions, (InputBinding__Boxed * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x003CD530, String *, InputBinding_get_overrideInteractions, (InputBinding__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00421740, void, InputBinding_set_overrideInteractions, (InputBinding__Boxed * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x003BB3E0, String *, InputBinding_get_processors, (InputBinding__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCDE0, void, InputBinding_set_processors, (InputBinding__Boxed * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x003C7420, String *, InputBinding_get_overrideProcessors, (InputBinding__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003C7430, void, InputBinding_set_overrideProcessors, (InputBinding__Boxed * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x003BB3B0, String *, InputBinding_get_groups, (InputBinding__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003C6500, void, InputBinding_set_groups, (InputBinding__Boxed * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x003BB330, String *, InputBinding_get_action, (InputBinding__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00424C30, void, InputBinding_set_action, (InputBinding__Boxed * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x0294AB80, bool, InputBinding_get_isComposite, (InputBinding__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0294AB90, void, InputBinding_set_isComposite, (InputBinding__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x0294ABB0, bool, InputBinding_get_isPartOfComposite, (InputBinding__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0294ABC0, void, InputBinding_set_isPartOfComposite, (InputBinding__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x0294ABE0, bool, InputBinding_get_hasOverrides, (InputBinding__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0294AC00, void, InputBinding__ctor, (InputBinding__Boxed * __this, String * path, String * action, String * groups, String * processors, String * interactions, String * name, MethodInfo * method)); -DO_APP_FUNC(0x0294AF30, String *, InputBinding_GetNameOfComposite, (InputBinding__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0294AFE0, void, InputBinding_GenerateId, (InputBinding__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0294B0C0, void, InputBinding_RemoveOverrides, (InputBinding__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2518, InputActionState_c__SaveAndResetState_b__135_1__MethodInfo); +DO_APP_FUNC(0x00471910, String *, InputBinding_get_name, (InputBinding * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, InputBinding_set_name, (InputBinding * __this, String * value, MethodInfo * method)); +DO_APP_FUNC(0x0294A9E0, Guid, InputBinding_get_id, (InputBinding * __this, MethodInfo * method)); +DO_APP_FUNC(0x0294AAE0, void, InputBinding_set_id, (InputBinding * __this, Guid value, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, String *, InputBinding_get_path, (InputBinding * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCBE0, void, InputBinding_set_path, (InputBinding * __this, String * value, MethodInfo * method)); +DO_APP_FUNC(0x003C7390, String *, InputBinding_get_overridePath, (InputBinding * __this, MethodInfo * method)); +DO_APP_FUNC(0x003C73A0, void, InputBinding_set_overridePath, (InputBinding * __this, String * value, MethodInfo * method)); +DO_APP_FUNC(0x003BB3D0, String *, InputBinding_get_interactions, (InputBinding * __this, MethodInfo * method)); +DO_APP_FUNC(0x003AE960, void, InputBinding_set_interactions, (InputBinding * __this, String * value, MethodInfo * method)); +DO_APP_FUNC(0x003CD530, String *, InputBinding_get_overrideInteractions, (InputBinding * __this, MethodInfo * method)); +DO_APP_FUNC(0x00421740, void, InputBinding_set_overrideInteractions, (InputBinding * __this, String * value, MethodInfo * method)); +DO_APP_FUNC(0x003BB3E0, String *, InputBinding_get_processors, (InputBinding * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCDE0, void, InputBinding_set_processors, (InputBinding * __this, String * value, MethodInfo * method)); +DO_APP_FUNC(0x003C7420, String *, InputBinding_get_overrideProcessors, (InputBinding * __this, MethodInfo * method)); +DO_APP_FUNC(0x003C7430, void, InputBinding_set_overrideProcessors, (InputBinding * __this, String * value, MethodInfo * method)); +DO_APP_FUNC(0x003BB3B0, String *, InputBinding_get_groups, (InputBinding * __this, MethodInfo * method)); +DO_APP_FUNC(0x003C6500, void, InputBinding_set_groups, (InputBinding * __this, String * value, MethodInfo * method)); +DO_APP_FUNC(0x003BB330, String *, InputBinding_get_action, (InputBinding * __this, MethodInfo * method)); +DO_APP_FUNC(0x00424C30, void, InputBinding_set_action, (InputBinding * __this, String * value, MethodInfo * method)); +DO_APP_FUNC(0x0294AB80, bool, InputBinding_get_isComposite, (InputBinding * __this, MethodInfo * method)); +DO_APP_FUNC(0x0294AB90, void, InputBinding_set_isComposite, (InputBinding * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x0294ABB0, bool, InputBinding_get_isPartOfComposite, (InputBinding * __this, MethodInfo * method)); +DO_APP_FUNC(0x0294ABC0, void, InputBinding_set_isPartOfComposite, (InputBinding * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x0294ABE0, bool, InputBinding_get_hasOverrides, (InputBinding * __this, MethodInfo * method)); +DO_APP_FUNC(0x0294AC00, void, InputBinding__ctor, (InputBinding * __this, String * path, String * action, String * groups, String * processors, String * interactions, String * name, MethodInfo * method)); +DO_APP_FUNC(0x0294AF30, String *, InputBinding_GetNameOfComposite, (InputBinding * __this, MethodInfo * method)); +DO_APP_FUNC(0x0294AFE0, void, InputBinding_GenerateId, (InputBinding * __this, MethodInfo * method)); +DO_APP_FUNC(0x0294B0C0, void, InputBinding_RemoveOverrides, (InputBinding * __this, MethodInfo * method)); DO_APP_FUNC(0x0294B1C0, InputBinding, InputBinding_MaskByGroup, (String * group, MethodInfo * method)); DO_APP_FUNC(0x0294B240, InputBinding, InputBinding_MaskByGroups, (String__Array * groups, MethodInfo * method)); -DO_APP_FUNC(0x0294B470, String *, InputBinding_get_effectivePath, (InputBinding__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0294B480, String *, InputBinding_get_effectiveInteractions, (InputBinding__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0294B490, String *, InputBinding_get_effectiveProcessors, (InputBinding__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0294B4A0, bool, InputBinding_get_isEmpty, (InputBinding__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0294B4E0, bool, InputBinding_Equals, (InputBinding__Boxed * __this, InputBinding other, MethodInfo * method)); -DO_APP_FUNC(0x0294B8D0, bool, InputBinding_Equals_1, (InputBinding__Boxed * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x0294B470, String *, InputBinding_get_effectivePath, (InputBinding * __this, MethodInfo * method)); +DO_APP_FUNC(0x0294B480, String *, InputBinding_get_effectiveInteractions, (InputBinding * __this, MethodInfo * method)); +DO_APP_FUNC(0x0294B490, String *, InputBinding_get_effectiveProcessors, (InputBinding * __this, MethodInfo * method)); +DO_APP_FUNC(0x0294B4A0, bool, InputBinding_get_isEmpty, (InputBinding * __this, MethodInfo * method)); +DO_APP_FUNC(0x0294B4E0, bool, InputBinding_Equals, (InputBinding * __this, InputBinding other, MethodInfo * method)); +DO_APP_FUNC(0x0294B8D0, bool, InputBinding_Equals_1, (InputBinding * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x0294B9A0, bool, InputBinding_op_Equality, (InputBinding left, InputBinding right, MethodInfo * method)); DO_APP_FUNC(0x0294B9F0, bool, InputBinding_op_Inequality, (InputBinding left, InputBinding right, MethodInfo * method)); -DO_APP_FUNC(0x0294BA80, int32_t, InputBinding_GetHashCode, (InputBinding__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0294BBB0, String *, InputBinding_ToString, (InputBinding__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0294BD80, String *, InputBinding_ToDisplayString, (InputBinding__Boxed * __this, InputBinding_DisplayStringOptions__Enum options, InputControl * control, MethodInfo * method)); -DO_APP_FUNC(0x0294BDC0, String *, InputBinding_ToDisplayString_1, (InputBinding__Boxed * __this, String * deviceLayoutName, String * controlPath, InputBinding_DisplayStringOptions__Enum options, InputControl * control, MethodInfo * method)); -DO_APP_FUNC(0x0294C2C0, bool, InputBinding_TriggersAction, (InputBinding__Boxed * __this, InputAction_1 * action, MethodInfo * method)); -DO_APP_FUNC(0x0294C3E0, bool, InputBinding_Matches, (InputBinding__Boxed * __this, InputBinding binding, MethodInfo * method)); -DO_APP_FUNC(0x0294C400, bool, InputBinding_Matches_1, (InputBinding__Boxed * __this, InputBinding binding, InputBinding_MatchOptions__Enum options, MethodInfo * method)); +DO_APP_FUNC(0x0294BA80, int32_t, InputBinding_GetHashCode, (InputBinding * __this, MethodInfo * method)); +DO_APP_FUNC(0x0294BBB0, String *, InputBinding_ToString, (InputBinding * __this, MethodInfo * method)); +DO_APP_FUNC(0x0294BD80, String *, InputBinding_ToDisplayString, (InputBinding * __this, InputBinding_DisplayStringOptions__Enum options, InputControl * control, MethodInfo * method)); +DO_APP_FUNC(0x0294BDC0, String *, InputBinding_ToDisplayString_1, (InputBinding * __this, String * * deviceLayoutName, String * * controlPath, InputBinding_DisplayStringOptions__Enum options, InputControl * control, MethodInfo * method)); +DO_APP_FUNC(0x0294C2C0, bool, InputBinding_TriggersAction, (InputBinding * __this, InputAction_1 * action, MethodInfo * method)); +DO_APP_FUNC(0x0294C3E0, bool, InputBinding_Matches, (InputBinding * __this, InputBinding binding, MethodInfo * method)); +DO_APP_FUNC(0x0294C400, bool, InputBinding_Matches_1, (InputBinding * __this, InputBinding * binding, InputBinding_MatchOptions__Enum options, MethodInfo * method)); DO_APP_FUNC(0x0294C590, void, InputBinding_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InputBinding_c__ctor, (InputBinding_c * __this, MethodInfo * method)); DO_APP_FUNC(0x0042DD00, bool, InputBinding_c__MaskByGroups_b__45_0, (InputBinding_c * __this, String * x, MethodInfo * method)); -DO_APP_FUNC(0x01DB9D40, float, InputBindingComposite_EvaluateMagnitude, (InputBindingComposite * __this, InputBindingCompositeContext context, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, InputBindingComposite_FinishSetup, (InputBindingComposite * __this, InputBindingCompositeContext context, MethodInfo * method)); -DO_APP_FUNC(0x01C90F20, void, InputBindingComposite_CallFinishSetup, (InputBindingComposite * __this, InputBindingCompositeContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2360, InputBinding_c__MaskByGroups_b__45_0__MethodInfo); +DO_APP_FUNC(0x01DB9D40, float, InputBindingComposite_EvaluateMagnitude, (InputBindingComposite * __this, InputBindingCompositeContext * context, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, InputBindingComposite_FinishSetup, (InputBindingComposite * __this, InputBindingCompositeContext * context, MethodInfo * method)); +DO_APP_FUNC(0x01C90F20, void, InputBindingComposite_CallFinishSetup, (InputBindingComposite * __this, InputBindingCompositeContext * context, MethodInfo * method)); DO_APP_FUNC(0x0294C640, Type *, InputBindingComposite_GetValueType, (String * composite, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC23C0, InputBindingComposite_GetValueType__MethodInfo); DO_APP_FUNC(0x0294C780, String *, InputBindingComposite_GetExpectedControlLayoutName, (String * composite, String * part, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC22D8, InputBindingComposite_GetExpectedControlLayoutName__MethodInfo); DO_APP_FUNC(0x0294C930, IEnumerable_1_System_String_ *, InputBindingComposite_GetPartNames, (String * composite, MethodInfo * method)); DO_APP_FUNC(0x0294C9F0, String *, InputBindingComposite_GetDisplayFormatString, (String * composite, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2298, InputBindingComposite_GetDisplayFormatString__MethodInfo); DO_APP_FUNC(0x003AE050, void, InputBindingComposite__ctor, (InputBindingComposite * __this, MethodInfo * method)); DO_APP_FUNC(0x0095DC40, void, InputBindingComposite_GetPartNames_d_12__ctor, (InputBindingComposite_GetPartNames_d_12 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InputBindingComposite_GetPartNames_d_12_System_IDisposable_Dispose, (InputBindingComposite_GetPartNames_d_12 * __this, MethodInfo * method)); DO_APP_FUNC(0x0294CB00, bool, InputBindingComposite_GetPartNames_d_12_MoveNext, (InputBindingComposite_GetPartNames_d_12 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC22C8, InputBindingComposite_GetPartNames_d_12_MoveNext__MethodInfo); DO_APP_FUNC(0x003BB3D0, String *, InputBindingComposite_GetPartNames_d_12_System_Collections_Generic_IEnumerator_System_String__get_Current, (InputBindingComposite_GetPartNames_d_12 * __this, MethodInfo * method)); DO_APP_FUNC(0x0294CD30, void, InputBindingComposite_GetPartNames_d_12_System_Collections_IEnumerator_Reset, (InputBindingComposite_GetPartNames_d_12 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC22B8, InputBindingComposite_GetPartNames_d_12_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, InputBindingComposite_GetPartNames_d_12_System_Collections_IEnumerator_get_Current, (InputBindingComposite_GetPartNames_d_12 * __this, MethodInfo * method)); DO_APP_FUNC(0x0294CD80, IEnumerator_1_System_String_ *, InputBindingComposite_GetPartNames_d_12_System_Collections_Generic_IEnumerable_System_String__GetEnumerator, (InputBindingComposite_GetPartNames_d_12 * __this, MethodInfo * method)); DO_APP_FUNC(0x0294CD80, IEnumerator *, InputBindingComposite_GetPartNames_d_12_System_Collections_IEnumerable_GetEnumerator, (InputBindingComposite_GetPartNames_d_12 * __this, MethodInfo * method)); -DO_APP_FUNC(0x0294CE70, IEnumerable_1_UnityEngine_InputSystem_InputBindingCompositeContext_PartBinding_ *, InputBindingCompositeContext_get_controls, (InputBindingCompositeContext__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0294CF30, float, InputBindingCompositeContext_EvaluateMagnitude, (InputBindingCompositeContext__Boxed * __this, int32_t partNumber, MethodInfo * method)); -DO_APP_FUNC(0x0294D030, bool, InputBindingCompositeContext_ReadValueAsButton, (InputBindingCompositeContext__Boxed * __this, int32_t partNumber, MethodInfo * method)); -DO_APP_FUNC(0x0294D0D0, void, InputBindingCompositeContext_ReadValue, (InputBindingCompositeContext__Boxed * __this, int32_t partNumber, Void * buffer, int32_t bufferSize, MethodInfo * method)); -DO_APP_FUNC(0x0294D220, Object *, InputBindingCompositeContext_ReadValueAsObject, (InputBindingCompositeContext__Boxed * __this, int32_t partNumber, MethodInfo * method)); -DO_APP_FUNC(0x0294D360, double, InputBindingCompositeContext_GetPressTime, (InputBindingCompositeContext__Boxed * __this, int32_t partNumber, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, InputBindingCompositeContext_PartBinding_get_part, (InputBindingCompositeContext_PartBinding__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00959BA0, void, InputBindingCompositeContext_PartBinding_set_part, (InputBindingCompositeContext_PartBinding__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, InputControl *, InputBindingCompositeContext_PartBinding_get_control, (InputBindingCompositeContext_PartBinding__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x005F25C0, void, InputBindingCompositeContext_PartBinding_set_control, (InputBindingCompositeContext_PartBinding__Boxed * __this, InputControl * value, MethodInfo * method)); +DO_APP_FUNC(0x0294CE70, IEnumerable_1_UnityEngine_InputSystem_InputBindingCompositeContext_PartBinding_ *, InputBindingCompositeContext_get_controls, (InputBindingCompositeContext * __this, MethodInfo * method)); +DO_APP_FUNC(0x0294CF30, float, InputBindingCompositeContext_EvaluateMagnitude, (InputBindingCompositeContext * __this, int32_t partNumber, MethodInfo * method)); +DO_APP_FUNC(0x0294D030, bool, InputBindingCompositeContext_ReadValueAsButton, (InputBindingCompositeContext * __this, int32_t partNumber, MethodInfo * method)); +DO_APP_FUNC(0x0294D0D0, void, InputBindingCompositeContext_ReadValue, (InputBindingCompositeContext * __this, int32_t partNumber, Void * buffer, int32_t bufferSize, MethodInfo * method)); +DO_APP_FUNC(0x0294D220, Object *, InputBindingCompositeContext_ReadValueAsObject, (InputBindingCompositeContext * __this, int32_t partNumber, MethodInfo * method)); +DO_APP_FUNC(0x0294D360, double, InputBindingCompositeContext_GetPressTime, (InputBindingCompositeContext * __this, int32_t partNumber, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, InputBindingCompositeContext_PartBinding_get_part, (InputBindingCompositeContext_PartBinding * __this, MethodInfo * method)); +DO_APP_FUNC(0x00959BA0, void, InputBindingCompositeContext_PartBinding_set_part, (InputBindingCompositeContext_PartBinding * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, InputControl *, InputBindingCompositeContext_PartBinding_get_control, (InputBindingCompositeContext_PartBinding * __this, MethodInfo * method)); +DO_APP_FUNC(0x005F25C0, void, InputBindingCompositeContext_PartBinding_set_control, (InputBindingCompositeContext_PartBinding * __this, InputControl * value, MethodInfo * method)); DO_APP_FUNC(0x0093D960, void, InputBindingCompositeContext_get_controls_d_2__ctor, (InputBindingCompositeContext_get_controls_d_2 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InputBindingCompositeContext_get_controls_d_2_System_IDisposable_Dispose, (InputBindingCompositeContext_get_controls_d_2 * __this, MethodInfo * method)); DO_APP_FUNC(0x029733A0, bool, InputBindingCompositeContext_get_controls_d_2_MoveNext, (InputBindingCompositeContext_get_controls_d_2 * __this, MethodInfo * method)); DO_APP_FUNC(0x0093E890, InputBindingCompositeContext_PartBinding, InputBindingCompositeContext_get_controls_d_2_System_Collections_Generic_IEnumerator_UnityEngine_InputSystem_InputBindingCompositeContext_PartBinding__get_Current, (InputBindingCompositeContext_get_controls_d_2 * __this, MethodInfo * method)); DO_APP_FUNC(0x02973520, void, InputBindingCompositeContext_get_controls_d_2_System_Collections_IEnumerator_Reset, (InputBindingCompositeContext_get_controls_d_2 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8058, InputBindingCompositeContext_get_controls_d_2_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x02973570, Object *, InputBindingCompositeContext_get_controls_d_2_System_Collections_IEnumerator_get_Current, (InputBindingCompositeContext_get_controls_d_2 * __this, MethodInfo * method)); DO_APP_FUNC(0x029735C0, IEnumerator_1_UnityEngine_InputSystem_InputBindingCompositeContext_PartBinding_ *, InputBindingCompositeContext_get_controls_d_2_System_Collections_Generic_IEnumerable_UnityEngine_InputSystem_InputBindingCompositeContext_PartBinding__GetEnumerator, (InputBindingCompositeContext_get_controls_d_2 * __this, MethodInfo * method)); DO_APP_FUNC(0x029735C0, IEnumerator *, InputBindingCompositeContext_get_controls_d_2_System_Collections_IEnumerable_GetEnumerator, (InputBindingCompositeContext_get_controls_d_2 * __this, MethodInfo * method)); -DO_APP_FUNC(0x00421680, int32_t, InputBindingResolver_get_totalMapCount, (InputBindingResolver__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0098C870, int32_t, InputBindingResolver_get_totalActionCount, (InputBindingResolver__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2A110, int32_t, InputBindingResolver_get_totalBindingCount, (InputBindingResolver__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x009F7E90, int32_t, InputBindingResolver_get_totalControlCount, (InputBindingResolver__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x029736B0, void, InputBindingResolver_Dispose, (InputBindingResolver__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x029736C0, void, InputBindingResolver_StartWithPreviousResolve, (InputBindingResolver__Boxed * __this, InputActionState * state, bool isFullResolve, MethodInfo * method)); -DO_APP_FUNC(0x02973AF0, void, InputBindingResolver_AddActionMap, (InputBindingResolver__Boxed * __this, InputActionMap * actionMap, MethodInfo * method)); -DO_APP_FUNC(0x029756C0, InputBindingComposite *, InputBindingResolver_InstantiateBindingComposite, (InputBinding binding, InputActionMap * actionMap, MethodInfo * method)); -DO_APP_FUNC(0x02975AC0, void, InputBindingResolver_ApplyParameters, (ReadOnlyArray_1_NamedValue_ parameters, Object * instance, InputActionMap * actionMap, InputBinding binding, String * objectRegistrationName, String * namesAndParameters, MethodInfo * method)); -DO_APP_FUNC(0x029761F0, int32_t, InputBindingResolver_AssignCompositePartIndex, (Object * composite, String * name, int32_t currentCompositePartCount, MethodInfo * method)); -DO_APP_FUNC(0x00471910, String *, InputControlScheme_get_name, (InputControlScheme__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, String *, InputControlScheme_get_bindingGroup, (InputControlScheme__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x005F25C0, void, InputControlScheme_set_bindingGroup, (InputControlScheme__Boxed * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x02976480, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement_, InputControlScheme_get_deviceRequirements, (InputControlScheme__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02976540, void, InputControlScheme__ctor, (InputControlScheme__Boxed * __this, String * name, IEnumerable_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement_ * devices, String * bindingGroup, MethodInfo * method)); -DO_APP_FUNC(0x02976740, void, InputControlScheme_SetNameAndBindingGroup, (InputControlScheme__Boxed * __this, String * name, String * bindingGroup, MethodInfo * method)); -DO_APP_FUNC(0x02976910, bool, InputControlScheme_SupportsDevice, (InputControlScheme__Boxed * __this, InputDevice * device, MethodInfo * method)); -DO_APP_FUNC(0x02976A80, bool, InputControlScheme_Equals, (InputControlScheme__Boxed * __this, InputControlScheme other, MethodInfo * method)); -DO_APP_FUNC(0x02976E60, bool, InputControlScheme_Equals_1, (InputControlScheme__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02976F00, int32_t, InputControlScheme_GetHashCode, (InputControlScheme__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02976FB0, String *, InputControlScheme_ToString, (InputControlScheme__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00421680, int32_t, InputBindingResolver_get_totalMapCount, (InputBindingResolver * __this, MethodInfo * method)); +DO_APP_FUNC(0x0098C870, int32_t, InputBindingResolver_get_totalActionCount, (InputBindingResolver * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2A110, int32_t, InputBindingResolver_get_totalBindingCount, (InputBindingResolver * __this, MethodInfo * method)); +DO_APP_FUNC(0x009F7E90, int32_t, InputBindingResolver_get_totalControlCount, (InputBindingResolver * __this, MethodInfo * method)); +DO_APP_FUNC(0x029736B0, void, InputBindingResolver_Dispose, (InputBindingResolver * __this, MethodInfo * method)); +DO_APP_FUNC(0x029736C0, void, InputBindingResolver_StartWithPreviousResolve, (InputBindingResolver * __this, InputActionState * state, bool isFullResolve, MethodInfo * method)); +DO_APP_FUNC(0x02973AF0, void, InputBindingResolver_AddActionMap, (InputBindingResolver * __this, InputActionMap * actionMap, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8030, InputBindingResolver_AddActionMap__MethodInfo); +DO_APP_FUNC(0x029756C0, InputBindingComposite *, InputBindingResolver_InstantiateBindingComposite, (InputBinding * binding, InputActionMap * actionMap, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8048, InputBindingResolver_InstantiateBindingComposite__MethodInfo); +DO_APP_FUNC(0x02975AC0, void, InputBindingResolver_ApplyParameters, (ReadOnlyArray_1_NamedValue_ parameters, Object * instance, InputActionMap * actionMap, InputBinding * binding, String * objectRegistrationName, String * namesAndParameters, MethodInfo * method)); +DO_APP_FUNC(0x029761F0, int32_t, InputBindingResolver_AssignCompositePartIndex, (Object * composite, String * name, int32_t * currentCompositePartCount, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7F80, InputBindingResolver_AssignCompositePartIndex__MethodInfo); +DO_APP_FUNC(0x00471910, String *, InputControlScheme_get_name, (InputControlScheme * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, String *, InputControlScheme_get_bindingGroup, (InputControlScheme * __this, MethodInfo * method)); +DO_APP_FUNC(0x005F25C0, void, InputControlScheme_set_bindingGroup, (InputControlScheme * __this, String * value, MethodInfo * method)); +DO_APP_FUNC(0x02976480, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement_, InputControlScheme_get_deviceRequirements, (InputControlScheme * __this, MethodInfo * method)); +DO_APP_FUNC(0x02976540, void, InputControlScheme__ctor, (InputControlScheme * __this, String * name, IEnumerable_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement_ * devices, String * bindingGroup, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7F90, InputControlScheme__ctor__MethodInfo); +DO_APP_FUNC(0x02976740, void, InputControlScheme_SetNameAndBindingGroup, (InputControlScheme * __this, String * name, String * bindingGroup, MethodInfo * method)); +DO_APP_FUNC(0x02976910, bool, InputControlScheme_SupportsDevice, (InputControlScheme * __this, InputDevice * device, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7F98, InputControlScheme_SupportsDevice__MethodInfo); +DO_APP_FUNC(0x02976A80, bool, InputControlScheme_Equals, (InputControlScheme * __this, InputControlScheme other, MethodInfo * method)); +DO_APP_FUNC(0x02976E60, bool, InputControlScheme_Equals_1, (InputControlScheme * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02976F00, int32_t, InputControlScheme_GetHashCode, (InputControlScheme * __this, MethodInfo * method)); +DO_APP_FUNC(0x02976FB0, String *, InputControlScheme_ToString, (InputControlScheme * __this, MethodInfo * method)); DO_APP_FUNC(0x029771B0, bool, InputControlScheme_op_Equality, (InputControlScheme left, InputControlScheme right, MethodInfo * method)); DO_APP_FUNC(0x029771E0, bool, InputControlScheme_op_Inequality, (InputControlScheme left, InputControlScheme right, MethodInfo * method)); -DO_APP_FUNC(0x00C4B940, float, InputControlScheme_MatchResult_get_score, (InputControlScheme_MatchResult__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02977210, bool, InputControlScheme_MatchResult_get_isSuccessfulMatch, (InputControlScheme_MatchResult__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02977220, bool, InputControlScheme_MatchResult_get_hasMissingRequiredDevices, (InputControlScheme_MatchResult__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02977230, bool, InputControlScheme_MatchResult_get_hasMissingOptionalDevices, (InputControlScheme_MatchResult__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02977240, InputControlList_1_InputDevice_, InputControlScheme_MatchResult_get_devices, (InputControlScheme_MatchResult__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x029773A0, InputControlScheme_MatchResult_Match, InputControlScheme_MatchResult_get_Item, (InputControlScheme_MatchResult__Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x02977460, IEnumerator_1_UnityEngine_InputSystem_InputControlScheme_MatchResult_Match_ *, InputControlScheme_MatchResult_GetEnumerator, (InputControlScheme_MatchResult__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02977550, IEnumerator *, InputControlScheme_MatchResult_System_Collections_IEnumerable_GetEnumerator, (InputControlScheme_MatchResult__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02977560, void, InputControlScheme_MatchResult_Dispose, (InputControlScheme_MatchResult__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x029775F0, InputControl *, InputControlScheme_MatchResult_Match_get_control, (InputControlScheme_MatchResult_Match__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02977640, InputDevice *, InputControlScheme_MatchResult_Match_get_device, (InputControlScheme_MatchResult_Match__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, InputControlScheme_MatchResult_Match_get_requirementIndex, (InputControlScheme_MatchResult_Match__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x029776A0, InputControlScheme_DeviceRequirement, InputControlScheme_MatchResult_Match_get_requirement, (InputControlScheme_MatchResult_Match__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x029776E0, bool, InputControlScheme_MatchResult_Match_get_isOptional, (InputControlScheme_MatchResult_Match__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02977720, bool, InputControlScheme_MatchResult_Enumerator_MoveNext, (InputControlScheme_MatchResult_Enumerator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02977740, void, InputControlScheme_MatchResult_Enumerator_Reset, (InputControlScheme_MatchResult_Enumerator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02977750, InputControlScheme_MatchResult_Match, InputControlScheme_MatchResult_Enumerator_get_Current, (InputControlScheme_MatchResult_Enumerator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02977810, Object *, InputControlScheme_MatchResult_Enumerator_System_Collections_IEnumerator_get_Current, (InputControlScheme_MatchResult_Enumerator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, InputControlScheme_MatchResult_Enumerator_Dispose, (InputControlScheme_MatchResult_Enumerator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, String *, InputControlScheme_DeviceRequirement_get_controlPath, (InputControlScheme_DeviceRequirement__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, InputControlScheme_DeviceRequirement_set_controlPath, (InputControlScheme_DeviceRequirement__Boxed * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x02674940, bool, InputControlScheme_DeviceRequirement_get_isOptional, (InputControlScheme_DeviceRequirement__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02674950, void, InputControlScheme_DeviceRequirement_set_isOptional, (InputControlScheme_DeviceRequirement__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02977890, bool, InputControlScheme_DeviceRequirement_get_isAND, (InputControlScheme_DeviceRequirement__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x029778A0, void, InputControlScheme_DeviceRequirement_set_isAND, (InputControlScheme_DeviceRequirement__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02674970, bool, InputControlScheme_DeviceRequirement_get_isOR, (InputControlScheme_DeviceRequirement__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02674980, void, InputControlScheme_DeviceRequirement_set_isOR, (InputControlScheme_DeviceRequirement__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x029778C0, String *, InputControlScheme_DeviceRequirement_ToString, (InputControlScheme_DeviceRequirement__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x029779A0, bool, InputControlScheme_DeviceRequirement_Equals, (InputControlScheme_DeviceRequirement__Boxed * __this, InputControlScheme_DeviceRequirement other, MethodInfo * method)); -DO_APP_FUNC(0x02977A50, bool, InputControlScheme_DeviceRequirement_Equals_1, (InputControlScheme_DeviceRequirement__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02977AF0, int32_t, InputControlScheme_DeviceRequirement_GetHashCode, (InputControlScheme_DeviceRequirement__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C4B940, float, InputControlScheme_MatchResult_get_score, (InputControlScheme_MatchResult * __this, MethodInfo * method)); +DO_APP_FUNC(0x02977210, bool, InputControlScheme_MatchResult_get_isSuccessfulMatch, (InputControlScheme_MatchResult * __this, MethodInfo * method)); +DO_APP_FUNC(0x02977220, bool, InputControlScheme_MatchResult_get_hasMissingRequiredDevices, (InputControlScheme_MatchResult * __this, MethodInfo * method)); +DO_APP_FUNC(0x02977230, bool, InputControlScheme_MatchResult_get_hasMissingOptionalDevices, (InputControlScheme_MatchResult * __this, MethodInfo * method)); +DO_APP_FUNC(0x02977240, InputControlList_1_InputDevice_, InputControlScheme_MatchResult_get_devices, (InputControlScheme_MatchResult * __this, MethodInfo * method)); +DO_APP_FUNC(0x029773A0, InputControlScheme_MatchResult_Match, InputControlScheme_MatchResult_get_Item, (InputControlScheme_MatchResult * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7F20, InputControlScheme_MatchResult_get_Item__MethodInfo); +DO_APP_FUNC(0x02977460, IEnumerator_1_UnityEngine_InputSystem_InputControlScheme_MatchResult_Match_ *, InputControlScheme_MatchResult_GetEnumerator, (InputControlScheme_MatchResult * __this, MethodInfo * method)); +DO_APP_FUNC(0x02977550, IEnumerator *, InputControlScheme_MatchResult_System_Collections_IEnumerable_GetEnumerator, (InputControlScheme_MatchResult * __this, MethodInfo * method)); +DO_APP_FUNC(0x02977560, void, InputControlScheme_MatchResult_Dispose, (InputControlScheme_MatchResult * __this, MethodInfo * method)); +DO_APP_FUNC(0x029775F0, InputControl *, InputControlScheme_MatchResult_Match_get_control, (InputControlScheme_MatchResult_Match * __this, MethodInfo * method)); +DO_APP_FUNC(0x02977640, InputDevice *, InputControlScheme_MatchResult_Match_get_device, (InputControlScheme_MatchResult_Match * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, InputControlScheme_MatchResult_Match_get_requirementIndex, (InputControlScheme_MatchResult_Match * __this, MethodInfo * method)); +DO_APP_FUNC(0x029776A0, InputControlScheme_DeviceRequirement, InputControlScheme_MatchResult_Match_get_requirement, (InputControlScheme_MatchResult_Match * __this, MethodInfo * method)); +DO_APP_FUNC(0x029776E0, bool, InputControlScheme_MatchResult_Match_get_isOptional, (InputControlScheme_MatchResult_Match * __this, MethodInfo * method)); +DO_APP_FUNC(0x02977720, bool, InputControlScheme_MatchResult_Enumerator_MoveNext, (InputControlScheme_MatchResult_Enumerator * __this, MethodInfo * method)); +DO_APP_FUNC(0x02977740, void, InputControlScheme_MatchResult_Enumerator_Reset, (InputControlScheme_MatchResult_Enumerator * __this, MethodInfo * method)); +DO_APP_FUNC(0x02977750, InputControlScheme_MatchResult_Match, InputControlScheme_MatchResult_Enumerator_get_Current, (InputControlScheme_MatchResult_Enumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7F48, InputControlScheme_MatchResult_Enumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x02977810, Object *, InputControlScheme_MatchResult_Enumerator_System_Collections_IEnumerator_get_Current, (InputControlScheme_MatchResult_Enumerator * __this, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, InputControlScheme_MatchResult_Enumerator_Dispose, (InputControlScheme_MatchResult_Enumerator * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, String *, InputControlScheme_DeviceRequirement_get_controlPath, (InputControlScheme_DeviceRequirement * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, InputControlScheme_DeviceRequirement_set_controlPath, (InputControlScheme_DeviceRequirement * __this, String * value, MethodInfo * method)); +DO_APP_FUNC(0x02674940, bool, InputControlScheme_DeviceRequirement_get_isOptional, (InputControlScheme_DeviceRequirement * __this, MethodInfo * method)); +DO_APP_FUNC(0x02674950, void, InputControlScheme_DeviceRequirement_set_isOptional, (InputControlScheme_DeviceRequirement * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02977890, bool, InputControlScheme_DeviceRequirement_get_isAND, (InputControlScheme_DeviceRequirement * __this, MethodInfo * method)); +DO_APP_FUNC(0x029778A0, void, InputControlScheme_DeviceRequirement_set_isAND, (InputControlScheme_DeviceRequirement * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02674970, bool, InputControlScheme_DeviceRequirement_get_isOR, (InputControlScheme_DeviceRequirement * __this, MethodInfo * method)); +DO_APP_FUNC(0x02674980, void, InputControlScheme_DeviceRequirement_set_isOR, (InputControlScheme_DeviceRequirement * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x029778C0, String *, InputControlScheme_DeviceRequirement_ToString, (InputControlScheme_DeviceRequirement * __this, MethodInfo * method)); +DO_APP_FUNC(0x029779A0, bool, InputControlScheme_DeviceRequirement_Equals, (InputControlScheme_DeviceRequirement * __this, InputControlScheme_DeviceRequirement other, MethodInfo * method)); +DO_APP_FUNC(0x02977A50, bool, InputControlScheme_DeviceRequirement_Equals_1, (InputControlScheme_DeviceRequirement * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02977AF0, int32_t, InputControlScheme_DeviceRequirement_GetHashCode, (InputControlScheme_DeviceRequirement * __this, MethodInfo * method)); DO_APP_FUNC(0x02977BC0, bool, InputControlScheme_DeviceRequirement_op_Equality, (InputControlScheme_DeviceRequirement left, InputControlScheme_DeviceRequirement right, MethodInfo * method)); DO_APP_FUNC(0x02977BE0, bool, InputControlScheme_DeviceRequirement_op_Inequality, (InputControlScheme_DeviceRequirement left, InputControlScheme_DeviceRequirement right, MethodInfo * method)); -DO_APP_FUNC(0x02977C00, InputControlScheme, InputControlScheme_SchemeJson_ToScheme, (InputControlScheme_SchemeJson__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02977C00, InputControlScheme, InputControlScheme_SchemeJson_ToScheme, (InputControlScheme_SchemeJson * __this, MethodInfo * method)); DO_APP_FUNC(0x02977F00, InputControlScheme_SchemeJson, InputControlScheme_SchemeJson_ToJson, (InputControlScheme scheme, MethodInfo * method)); DO_APP_FUNC(0x02978210, InputControlScheme_SchemeJson__Array *, InputControlScheme_SchemeJson_ToJson_1, (InputControlScheme__Array * schemes, MethodInfo * method)); DO_APP_FUNC(0x02978380, InputControlScheme__Array *, InputControlScheme_SchemeJson_ToSchemes, (InputControlScheme_SchemeJson__Array * schemes, MethodInfo * method)); -DO_APP_FUNC(0x029784E0, InputControlScheme_DeviceRequirement, InputControlScheme_SchemeJson_DeviceJson_ToDeviceEntry, (InputControlScheme_SchemeJson_DeviceJson__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x029784E0, InputControlScheme_DeviceRequirement, InputControlScheme_SchemeJson_DeviceJson_ToDeviceEntry, (InputControlScheme_SchemeJson_DeviceJson * __this, MethodInfo * method)); DO_APP_FUNC(0x02978570, InputControlScheme_SchemeJson_DeviceJson, InputControlScheme_SchemeJson_DeviceJson_From, (InputControlScheme_DeviceRequirement requirement, MethodInfo * method)); -DO_APP_FUNC(0x029785F0, InputAction_1 *, InputInteractionContext_get_action, (InputInteractionContext__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02978620, InputControl *, InputInteractionContext_get_control, (InputInteractionContext__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD20, InputActionPhase__Enum, InputInteractionContext_get_phase, (InputInteractionContext__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C107C0, double, InputInteractionContext_get_time, (InputInteractionContext__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01201930, double, InputInteractionContext_get_startTime, (InputInteractionContext__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02674970, bool, InputInteractionContext_get_timerHasExpired, (InputInteractionContext__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02674980, void, InputInteractionContext_set_timerHasExpired, (InputInteractionContext__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02978670, bool, InputInteractionContext_get_isWaiting, (InputInteractionContext__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02978680, bool, InputInteractionContext_get_isStarted, (InputInteractionContext__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003CD2B0, float, InputInteractionContext_ComputeMagnitude, (InputInteractionContext__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02978690, bool, InputInteractionContext_ControlIsActuated, (InputInteractionContext__Boxed * __this, float threshold, MethodInfo * method)); -DO_APP_FUNC(0x029786F0, void, InputInteractionContext_Started, (InputInteractionContext__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02978740, void, InputInteractionContext_Performed, (InputInteractionContext__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02978790, void, InputInteractionContext_PerformedAndStayStarted, (InputInteractionContext__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x029787E0, void, InputInteractionContext_PerformedAndStayPerformed, (InputInteractionContext__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02978830, void, InputInteractionContext_Canceled, (InputInteractionContext__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02978870, void, InputInteractionContext_Waiting, (InputInteractionContext__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x029788B0, void, InputInteractionContext_SetTimeout, (InputInteractionContext__Boxed * __this, float seconds, MethodInfo * method)); -DO_APP_FUNC(0x029788E0, void, InputInteractionContext_SetTotalTimeoutCompletionTime, (InputInteractionContext__Boxed * __this, float seconds, MethodInfo * method)); -DO_APP_FUNC(0x00A7FC90, int32_t, InputInteractionContext_get_mapIndex, (InputInteractionContext__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x029789B0, int32_t, InputInteractionContext_get_controlIndex, (InputInteractionContext__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x021EBD50, int32_t, InputInteractionContext_get_bindingIndex, (InputInteractionContext__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x029789D0, int32_t, InputInteractionContext_get_interactionIndex, (InputInteractionContext__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x029785F0, InputAction_1 *, InputInteractionContext_get_action, (InputInteractionContext * __this, MethodInfo * method)); +DO_APP_FUNC(0x02978620, InputControl *, InputInteractionContext_get_control, (InputInteractionContext * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD20, InputActionPhase__Enum, InputInteractionContext_get_phase, (InputInteractionContext * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C107C0, double, InputInteractionContext_get_time, (InputInteractionContext * __this, MethodInfo * method)); +DO_APP_FUNC(0x01201930, double, InputInteractionContext_get_startTime, (InputInteractionContext * __this, MethodInfo * method)); +DO_APP_FUNC(0x02674970, bool, InputInteractionContext_get_timerHasExpired, (InputInteractionContext * __this, MethodInfo * method)); +DO_APP_FUNC(0x02674980, void, InputInteractionContext_set_timerHasExpired, (InputInteractionContext * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02978670, bool, InputInteractionContext_get_isWaiting, (InputInteractionContext * __this, MethodInfo * method)); +DO_APP_FUNC(0x02978680, bool, InputInteractionContext_get_isStarted, (InputInteractionContext * __this, MethodInfo * method)); +DO_APP_FUNC(0x003CD2B0, float, InputInteractionContext_ComputeMagnitude, (InputInteractionContext * __this, MethodInfo * method)); +DO_APP_FUNC(0x02978690, bool, InputInteractionContext_ControlIsActuated, (InputInteractionContext * __this, float threshold, MethodInfo * method)); +DO_APP_FUNC(0x029786F0, void, InputInteractionContext_Started, (InputInteractionContext * __this, MethodInfo * method)); +DO_APP_FUNC(0x02978740, void, InputInteractionContext_Performed, (InputInteractionContext * __this, MethodInfo * method)); +DO_APP_FUNC(0x02978790, void, InputInteractionContext_PerformedAndStayStarted, (InputInteractionContext * __this, MethodInfo * method)); +DO_APP_FUNC(0x029787E0, void, InputInteractionContext_PerformedAndStayPerformed, (InputInteractionContext * __this, MethodInfo * method)); +DO_APP_FUNC(0x02978830, void, InputInteractionContext_Canceled, (InputInteractionContext * __this, MethodInfo * method)); +DO_APP_FUNC(0x02978870, void, InputInteractionContext_Waiting, (InputInteractionContext * __this, MethodInfo * method)); +DO_APP_FUNC(0x029788B0, void, InputInteractionContext_SetTimeout, (InputInteractionContext * __this, float seconds, MethodInfo * method)); +DO_APP_FUNC(0x029788E0, void, InputInteractionContext_SetTotalTimeoutCompletionTime, (InputInteractionContext * __this, float seconds, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7ED8, InputInteractionContext_SetTotalTimeoutCompletionTime__MethodInfo); +DO_APP_FUNC(0x00A7FC90, int32_t, InputInteractionContext_get_mapIndex, (InputInteractionContext * __this, MethodInfo * method)); +DO_APP_FUNC(0x029789B0, int32_t, InputInteractionContext_get_controlIndex, (InputInteractionContext * __this, MethodInfo * method)); +DO_APP_FUNC(0x021EBD50, int32_t, InputInteractionContext_get_bindingIndex, (InputInteractionContext * __this, MethodInfo * method)); +DO_APP_FUNC(0x029789D0, int32_t, InputInteractionContext_get_interactionIndex, (InputInteractionContext * __this, MethodInfo * method)); DO_APP_FUNC(0x029789F0, void, InputSystem_add_onLayoutChange, (Action_2_String_UnityEngine_InputSystem_InputControlLayoutChange_ * value, MethodInfo * method)); DO_APP_FUNC(0x02978BF0, void, InputSystem_remove_onLayoutChange, (Action_2_String_UnityEngine_InputSystem_InputControlLayoutChange_ * value, MethodInfo * method)); DO_APP_FUNC(0x02978DF0, void, InputSystem_RegisterLayout, (Type * type, String * name, Nullable_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher_ matches, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7F00, InputSystem_RegisterLayout__MethodInfo); DO_APP_FUNC(0x02978FA0, void, InputSystem_RegisterLayout_1, (String * json, String * name, Nullable_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher_ matches, MethodInfo * method)); DO_APP_FUNC(0x029790B0, void, InputSystem_RegisterLayoutOverride, (String * json, String * name, MethodInfo * method)); DO_APP_FUNC(0x02979140, void, InputSystem_RegisterLayoutMatcher, (String * layoutName, InputDeviceMatcher matcher, MethodInfo * method)); DO_APP_FUNC(0x029791C0, void, InputSystem_RegisterLayoutBuilder, (Func_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ * buildMethod, String * name, String * baseLayout, Nullable_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher_ matches, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7E98, InputSystem_RegisterLayoutBuilder__MethodInfo); DO_APP_FUNC(0x029793A0, void, InputSystem_RemoveLayout, (String * name, MethodInfo * method)); DO_APP_FUNC(0x02979410, String *, InputSystem_TryFindMatchingLayout, (InputDeviceDescription deviceDescription, MethodInfo * method)); DO_APP_FUNC(0x029794E0, IEnumerable_1_System_String_ *, InputSystem_ListLayouts, (MethodInfo * method)); DO_APP_FUNC(0x02979550, IEnumerable_1_System_String_ *, InputSystem_ListLayoutsBasedOn, (String * baseLayout, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7EC0, InputSystem_ListLayoutsBasedOn__MethodInfo); DO_APP_FUNC(0x02979620, InputControlLayout *, InputSystem_LoadLayout, (String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7EA8, InputSystem_LoadLayout__MethodInfo); DO_APP_FUNC(0x02979730, String *, InputSystem_GetNameOfBaseLayout, (String * layoutName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7EB0, InputSystem_GetNameOfBaseLayout__MethodInfo); DO_APP_FUNC(0x02979940, bool, InputSystem_IsFirstLayoutBasedOnSecond, (String * firstLayoutName, String * secondLayoutName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7E58, InputSystem_IsFirstLayoutBasedOnSecond__MethodInfo); DO_APP_FUNC(0x02979AE0, void, InputSystem_RegisterProcessor, (Type * type, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7E48, InputSystem_RegisterProcessor__MethodInfo); DO_APP_FUNC(0x02979FC0, Type *, InputSystem_TryGetProcessor, (String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7E90, InputSystem_TryGetProcessor__MethodInfo); DO_APP_FUNC(0x0297A0A0, IEnumerable_1_System_String_ *, InputSystem_ListProcessors, (MethodInfo * method)); DO_APP_FUNC(0x0297A120, ReadOnlyArray_1_UnityEngine_InputSystem_InputDevice_, InputSystem_get_devices, (MethodInfo * method)); DO_APP_FUNC(0x0297A1A0, ReadOnlyArray_1_UnityEngine_InputSystem_InputDevice_, InputSystem_get_disconnectedDevices, (MethodInfo * method)); DO_APP_FUNC(0x0297A280, void, InputSystem_add_onDeviceChange, (Action_2_UnityEngine_InputSystem_InputDevice_UnityEngine_InputSystem_InputDeviceChange_ * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7E88, InputSystem_add_onDeviceChange__MethodInfo); DO_APP_FUNC(0x0297A4D0, void, InputSystem_remove_onDeviceChange, (Action_2_UnityEngine_InputSystem_InputDevice_UnityEngine_InputSystem_InputDeviceChange_ * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7DE8, InputSystem_remove_onDeviceChange__MethodInfo); DO_APP_FUNC(0x0297A720, void, InputSystem_add_onDeviceCommand, (InputDeviceCommandDelegate * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7DF0, InputSystem_add_onDeviceCommand__MethodInfo); DO_APP_FUNC(0x0297A970, void, InputSystem_remove_onDeviceCommand, (InputDeviceCommandDelegate * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7DE0, InputSystem_remove_onDeviceCommand__MethodInfo); DO_APP_FUNC(0x0297ABC0, void, InputSystem_add_onFindLayoutForDevice, (InputDeviceFindControlLayoutDelegate * value, MethodInfo * method)); DO_APP_FUNC(0x0297ADC0, void, InputSystem_remove_onFindLayoutForDevice, (InputDeviceFindControlLayoutDelegate * value, MethodInfo * method)); DO_APP_FUNC(0x0297AFC0, float, InputSystem_get_pollingFrequency, (MethodInfo * method)); DO_APP_FUNC(0x0297B030, void, InputSystem_set_pollingFrequency, (float value, MethodInfo * method)); DO_APP_FUNC(0x0297B160, InputDevice *, InputSystem_AddDevice, (String * layout, String * name, String * variants, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7DF8, InputSystem_AddDevice__MethodInfo); DO_APP_FUNC(0x0297B290, InputDevice *, InputSystem_AddDevice_1, (InputDeviceDescription description, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7E00, InputSystem_AddDevice_1__MethodInfo); DO_APP_FUNC(0x0297B3D0, void, InputSystem_AddDevice_2, (InputDevice * device, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7DB8, InputSystem_AddDevice_2__MethodInfo); DO_APP_FUNC(0x0297B4A0, void, InputSystem_RemoveDevice, (InputDevice * device, MethodInfo * method)); DO_APP_FUNC(0x0297B520, void, InputSystem_FlushDisconnectedDevices, (MethodInfo * method)); DO_APP_FUNC(0x0297B5D0, InputDevice *, InputSystem_GetDevice, (String * nameOrLayout, MethodInfo * method)); @@ -52065,8 +60871,10 @@ DO_APP_FUNC(0x0297BAC0, int32_t, InputSystem_GetUnsupportedDevices_1, (List_1_Un DO_APP_FUNC(0x0297BCF0, void, InputSystem_EnableDevice, (InputDevice * device, MethodInfo * method)); DO_APP_FUNC(0x0297BD70, void, InputSystem_DisableDevice, (InputDevice * device, bool keepSendingEvents, MethodInfo * method)); DO_APP_FUNC(0x0297BE00, bool, InputSystem_TrySyncDevice, (InputDevice * device, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7DC0, InputSystem_TrySyncDevice__MethodInfo); DO_APP_FUNC(0x0297BEE0, void, InputSystem_ResetDevice, (InputDevice * device, bool alsoResetDontResetControls, MethodInfo * method)); DO_APP_FUNC(0x0297BF70, bool, InputSystem_TryResetDevice, (InputDevice * device, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7D98, InputSystem_TryResetDevice__MethodInfo); DO_APP_FUNC(0x0297BFE0, void, InputSystem_PauseHaptics, (MethodInfo * method)); DO_APP_FUNC(0x0297C130, void, InputSystem_ResumeHaptics, (MethodInfo * method)); DO_APP_FUNC(0x0297C280, void, InputSystem_ResetHaptics, (MethodInfo * method)); @@ -52077,34 +60885,47 @@ DO_APP_FUNC(0x0297C5F0, void, InputSystem_AddDeviceUsage_1, (InputDevice * devic DO_APP_FUNC(0x0297C680, void, InputSystem_RemoveDeviceUsage, (InputDevice * device, String * usage, MethodInfo * method)); DO_APP_FUNC(0x0297C730, void, InputSystem_RemoveDeviceUsage_1, (InputDevice * device, InternedString usage, MethodInfo * method)); DO_APP_FUNC(0x0297C7C0, InputControl *, InputSystem_FindControl, (String * path, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7DA8, InputSystem_FindControl__MethodInfo); DO_APP_FUNC(0x0297CA00, InputControlList_1_InputControl_, InputSystem_FindControls, (String * path, MethodInfo * method)); DO_APP_FUNC(0x0297CAE0, bool, InputSystem_get_isProcessingEvents, (MethodInfo * method)); DO_APP_FUNC(0x0041AF00, InputEventListener, InputSystem_get_onEvent, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InputSystem_set_onEvent, (InputEventListener value, MethodInfo * method)); DO_APP_FUNC(0x0297CB50, IObservable_1_UnityEngine_InputSystem_InputControl_ *, InputSystem_get_onAnyButtonPress, (MethodInfo * method)); DO_APP_FUNC(0x0297D080, void, InputSystem_QueueEvent, (InputEventPtr eventPtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7D40, InputSystem_QueueEvent__MethodInfo); DO_APP_FUNC(0x0297D160, void, InputSystem_QueueConfigChangeEvent, (InputDevice * device, double time, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7D90, InputSystem_QueueConfigChangeEvent__MethodInfo); DO_APP_FUNC(0x0297D3B0, void, InputSystem_QueueTextEvent, (InputDevice * device, uint16_t character, double time, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7D78, InputSystem_QueueTextEvent__MethodInfo); DO_APP_FUNC(0x0297D630, void, InputSystem_Update, (MethodInfo * method)); DO_APP_FUNC(0x0297D710, void, InputSystem_Update_1, (InputUpdateType__Enum updateType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7D00, InputSystem_Update_1__MethodInfo); DO_APP_FUNC(0x0297D8C0, void, InputSystem_add_onBeforeUpdate, (Action * value, MethodInfo * method)); DO_APP_FUNC(0x0297DAC0, void, InputSystem_remove_onBeforeUpdate, (Action * value, MethodInfo * method)); DO_APP_FUNC(0x0297DCC0, void, InputSystem_add_onAfterUpdate, (Action * value, MethodInfo * method)); DO_APP_FUNC(0x0297DEC0, void, InputSystem_remove_onAfterUpdate, (Action * value, MethodInfo * method)); DO_APP_FUNC(0x0297E0C0, InputSettings *, InputSystem_get_settings, (MethodInfo * method)); DO_APP_FUNC(0x0297E130, void, InputSystem_set_settings, (InputSettings * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7D18, InputSystem_set_settings__MethodInfo); DO_APP_FUNC(0x0297E3E0, void, InputSystem_add_onSettingsChange, (Action * value, MethodInfo * method)); DO_APP_FUNC(0x0297E490, void, InputSystem_remove_onSettingsChange, (Action * value, MethodInfo * method)); DO_APP_FUNC(0x0297E540, void, InputSystem_add_onActionChange, (Action_2_Object_UnityEngine_InputSystem_InputActionChange_ * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7D08, InputSystem_add_onActionChange__MethodInfo); DO_APP_FUNC(0x0297E600, void, InputSystem_remove_onActionChange, (Action_2_Object_UnityEngine_InputSystem_InputActionChange_ * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7CB8, InputSystem_remove_onActionChange__MethodInfo); DO_APP_FUNC(0x0297E6C0, void, InputSystem_RegisterInteraction, (Type * type, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7CC8, InputSystem_RegisterInteraction__MethodInfo); DO_APP_FUNC(0x0297E850, Type *, InputSystem_TryGetInteraction, (String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7CA0, InputSystem_TryGetInteraction__MethodInfo); DO_APP_FUNC(0x0297E930, IEnumerable_1_System_String_ *, InputSystem_ListInteractions, (MethodInfo * method)); DO_APP_FUNC(0x0297E9B0, void, InputSystem_RegisterBindingComposite, (Type * type, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7CA8, InputSystem_RegisterBindingComposite__MethodInfo); DO_APP_FUNC(0x0297EB40, Type *, InputSystem_TryGetBindingComposite, (String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7CD8, InputSystem_TryGetBindingComposite__MethodInfo); DO_APP_FUNC(0x02948FE0, void, InputSystem_DisableAllEnabledActions, (MethodInfo * method)); DO_APP_FUNC(0x0297EC20, List_1_UnityEngine_InputSystem_InputAction_ *, InputSystem_ListEnabledActions, (MethodInfo * method)); DO_APP_FUNC(0x0297ECC0, int32_t, InputSystem_ListEnabledActions_1, (List_1_UnityEngine_InputSystem_InputAction_ * actions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7CE0, InputSystem_ListEnabledActions_1__MethodInfo); DO_APP_FUNC(0x0297ED30, InputRemoting *, InputSystem_get_remoting, (MethodInfo * method)); DO_APP_FUNC(0x0297ED90, Version *, InputSystem_get_version, (MethodInfo * method)); DO_APP_FUNC(0x0297EEE0, bool, InputSystem_get_runInBackground, (MethodInfo * method)); @@ -52119,7 +60940,9 @@ DO_APP_FUNC(0x0297F560, void, InputSystem_PerformDefaultPluginInitialization, (M DO_APP_FUNC(0x0297F760, void, InputSystem_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InputSystem_c__ctor, (InputSystem_c * __this, MethodInfo * method)); DO_APP_FUNC(0x0297F810, InputControl *, InputSystem_c__get_onAnyButtonPress_b__79_0, (InputSystem_c * __this, InputEventPtr e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7D20, InputSystem_c__get_onAnyButtonPress_b__79_0__MethodInfo); DO_APP_FUNC(0x0297F830, bool, InputSystem_c__get_onAnyButtonPress_b__79_1, (InputSystem_c * __this, InputControl * c, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7D38, InputSystem_c__get_onAnyButtonPress_b__79_1__MethodInfo); DO_APP_FUNC(0x0297F840, void, CommonUsages__cctor, (MethodInfo * method)); DO_APP_FUNC(0x029809E0, String *, InputControl_get_name, (InputControl * __this, MethodInfo * method)); DO_APP_FUNC(0x02980A40, String *, InputControl_get_displayName, (InputControl * __this, MethodInfo * method)); @@ -52140,15 +60963,20 @@ DO_APP_FUNC(0x02980FE0, void, InputControl_set_noisy, (InputControl * __this, bo DO_APP_FUNC(0x029810E0, bool, InputControl_get_synthetic, (InputControl * __this, MethodInfo * method)); DO_APP_FUNC(0x029810F0, void, InputControl_set_synthetic, (InputControl * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x02981110, InputControl *, InputControl_get_Item, (InputControl * __this, String * path, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7B30, InputControl_get_Item__MethodInfo); DO_APP_FUNC(0x029811A0, float, InputControl_get_magnitude, (InputControl * __this, MethodInfo * method)); DO_APP_FUNC(0x02981220, String *, InputControl_ToString, (InputControl * __this, MethodInfo * method)); DO_APP_FUNC(0x029812D0, String *, InputControl_DebuggerDisplay, (InputControl * __this, MethodInfo * method)); DO_APP_FUNC(0x029811A0, float, InputControl_EvaluateMagnitude, (InputControl * __this, MethodInfo * method)); DO_APP_FUNC(0x01DB9D40, float, InputControl_EvaluateMagnitude_1, (InputControl * __this, Void * statePtr, MethodInfo * method)); DO_APP_FUNC(0x02981490, void, InputControl_WriteValueFromBufferIntoState, (InputControl * __this, Void * bufferPtr, int32_t bufferSize, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7AB8, InputControl_WriteValueFromBufferIntoState__MethodInfo); DO_APP_FUNC(0x02981500, void, InputControl_WriteValueFromObjectIntoState, (InputControl * __this, Object * value, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7AA8, InputControl_WriteValueFromObjectIntoState__MethodInfo); DO_APP_FUNC(0x02981570, InputControl *, InputControl_TryGetChildControl, (InputControl * __this, String * path, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7AD8, InputControl_TryGetChildControl__MethodInfo); DO_APP_FUNC(0x029815F0, InputControl *, InputControl_GetChildControl, (InputControl * __this, String * path, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7AC8, InputControl_GetChildControl__MethodInfo); DO_APP_FUNC(0x0166A510, void, InputControl__ctor, (InputControl * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InputControl_FinishSetup, (InputControl * __this, MethodInfo * method)); DO_APP_FUNC(0x02981720, void, InputControl_RefreshConfigurationIfNeeded, (InputControl * __this, MethodInfo * method)); @@ -52179,146 +61007,185 @@ DO_APP_FUNC(0x02982300, void, InputControl_CallFinishSetupRecursive, (InputContr DO_APP_FUNC(0x029823E0, String *, InputControl_MakeChildPath, (InputControl * __this, String * path, MethodInfo * method)); DO_APP_FUNC(0x02982490, void, InputControl_BakeOffsetIntoStateBlockRecursive, (InputControl * __this, uint32_t offset, MethodInfo * method)); DO_APP_FUNC(0x02982580, int32_t, InputControl_GetDeviceIndex, (InputControl * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7930, InputControl_GetDeviceIndex__MethodInfo); DO_APP_FUNC(0x02982750, bool, InputControl_IsValueConsideredPressed, (InputControl * __this, float value, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InputControl_AddProcessor, (InputControl * __this, Object * first, MethodInfo * method)); DO_APP_FUNC(0x02982800, void, InputControl_MarkAsStale, (InputControl * __this, MethodInfo * method)); DO_APP_FUNC(0x02982810, void, InputControl_MarkAsStaleRecursively, (InputControl * __this, MethodInfo * method)); DO_APP_FUNC(0x029829F0, bool, InputControlExtensions_IsPressed, (InputControl * control, float buttonPressPoint, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7750, InputControlExtensions_IsPressed__MethodInfo); DO_APP_FUNC(0x02982B40, bool, InputControlExtensions_IsActuated, (InputControl * control, float threshold, MethodInfo * method)); DO_APP_FUNC(0x02982BE0, Object *, InputControlExtensions_ReadValueAsObject, (InputControl * control, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7778, InputControlExtensions_ReadValueAsObject__MethodInfo); DO_APP_FUNC(0x02982CB0, void, InputControlExtensions_ReadValueIntoBuffer, (InputControl * control, Void * buffer, int32_t bufferSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7768, InputControlExtensions_ReadValueIntoBuffer__MethodInfo); DO_APP_FUNC(0x02982E00, Object *, InputControlExtensions_ReadDefaultValueAsObject, (InputControl * control, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC76C8, InputControlExtensions_ReadDefaultValueAsObject__MethodInfo); DO_APP_FUNC(0x02982EB0, Object *, InputControlExtensions_ReadValueFromEventAsObject, (InputControl * control, InputEventPtr inputEvent, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC76B8, InputControlExtensions_ReadValueFromEventAsObject__MethodInfo); DO_APP_FUNC(0x02982FF0, void, InputControlExtensions_WriteValueFromObjectIntoEvent, (InputControl * control, InputEventPtr eventPtr, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC76E8, InputControlExtensions_WriteValueFromObjectIntoEvent__MethodInfo); DO_APP_FUNC(0x029830F0, void, InputControlExtensions_WriteValueIntoState, (InputControl * control, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC76D8, InputControlExtensions_WriteValueIntoState__MethodInfo); DO_APP_FUNC(0x02983350, void, InputControlExtensions_CopyState, (InputDevice * device, Void * buffer, int32_t bufferSizeInBytes, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7718, InputControlExtensions_CopyState__MethodInfo); DO_APP_FUNC(0x02983560, bool, InputControlExtensions_CheckStateIsAtDefault, (InputControl * control, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC77E8, InputControlExtensions_CheckStateIsAtDefault__MethodInfo); DO_APP_FUNC(0x029836C0, bool, InputControlExtensions_CheckStateIsAtDefault_1, (InputControl * control, Void * statePtr, Void * maskPtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7818, InputControlExtensions_CheckStateIsAtDefault_1__MethodInfo); DO_APP_FUNC(0x029837F0, bool, InputControlExtensions_CheckStateIsAtDefaultIgnoringNoise, (InputControl * control, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7808, InputControlExtensions_CheckStateIsAtDefaultIgnoringNoise__MethodInfo); DO_APP_FUNC(0x02983990, bool, InputControlExtensions_CheckStateIsAtDefaultIgnoringNoise_1, (InputControl * control, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7848, InputControlExtensions_CheckStateIsAtDefaultIgnoringNoise_1__MethodInfo); DO_APP_FUNC(0x02983AF0, bool, InputControlExtensions_CompareStateIgnoringNoise, (InputControl * control, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7838, InputControlExtensions_CompareStateIgnoringNoise__MethodInfo); DO_APP_FUNC(0x02983C60, bool, InputControlExtensions_CompareState, (InputControl * control, Void * firstStatePtr, Void * secondStatePtr, Void * maskPtr, MethodInfo * method)); DO_APP_FUNC(0x02983E10, bool, InputControlExtensions_CompareState_1, (InputControl * control, Void * statePtr, Void * maskPtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC77A8, InputControlExtensions_CompareState_1__MethodInfo); DO_APP_FUNC(0x02983F60, bool, InputControlExtensions_HasValueChangeInState, (InputControl * control, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7798, InputControlExtensions_HasValueChangeInState__MethodInfo); DO_APP_FUNC(0x029840A0, bool, InputControlExtensions_HasValueChangeInEvent, (InputControl * control, InputEventPtr eventPtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC77C8, InputControlExtensions_HasValueChangeInEvent__MethodInfo); DO_APP_FUNC(0x029841B0, Void *, InputControlExtensions_GetStatePtrFromStateEvent, (InputControl * control, InputEventPtr eventPtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC77B8, InputControlExtensions_GetStatePtrFromStateEvent__MethodInfo); DO_APP_FUNC(0x02984280, Void *, InputControlExtensions_GetStatePtrFromStateEventUnchecked, (InputControl * control, InputEventPtr eventPtr, FourCC eventType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC75F0, InputControlExtensions_GetStatePtrFromStateEventUnchecked__MethodInfo); DO_APP_FUNC(0x02984570, bool, InputControlExtensions_ResetToDefaultStateInEvent, (InputControl * control, InputEventPtr eventPtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC75A0, InputControlExtensions_ResetToDefaultStateInEvent__MethodInfo); DO_APP_FUNC(0x02984820, void, InputControlExtensions_AccumulateValueInEvent, (InputControl_1_System_Single_ * control, Void * currentStatePtr, InputEventPtr newState, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC75D0, InputControlExtensions_AccumulateValueInEvent__MethodInfo); DO_APP_FUNC(0x029849F0, void, InputControlExtensions_AccumulateValueInEvent_1, (InputControl_1_UnityEngine_Vector2_ * control, Void * currentStatePtr, InputEventPtr newState, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7670, InputControlExtensions_AccumulateValueInEvent_1__MethodInfo); DO_APP_FUNC(0x02984BF0, String *, InputControlExtensions_BuildPath, (InputControl * control, String * deviceLayout, StringBuilder * builder, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC76A8, InputControlExtensions_BuildPath__MethodInfo); DO_APP_FUNC(0x029852B0, InputControlExtensions_InputEventControlCollection, InputControlExtensions_EnumerateControls, (InputEventPtr eventPtr, InputControlExtensions_Enumerate__Enum flags, InputDevice * device, float magnitudeThreshold, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7610, InputControlExtensions_EnumerateControls__MethodInfo); DO_APP_FUNC(0x02985550, InputControlExtensions_InputEventControlCollection, InputControlExtensions_EnumerateChangedControls, (InputEventPtr eventPtr, InputDevice * device, float magnitudeThreshold, MethodInfo * method)); DO_APP_FUNC(0x029855A0, bool, InputControlExtensions_HasButtonPress, (InputEventPtr eventPtr, float magnitude, bool buttonControlsOnly, MethodInfo * method)); DO_APP_FUNC(0x029855C0, InputControl *, InputControlExtensions_GetFirstButtonPressOrNull, (InputEventPtr eventPtr, float magnitude, bool buttonControlsOnly, MethodInfo * method)); DO_APP_FUNC(0x02985800, IEnumerable_1_UnityEngine_InputSystem_InputControl_ *, InputControlExtensions_GetAllButtonPresses, (InputEventPtr eventPtr, float magnitude, bool buttonControlsOnly, MethodInfo * method)); DO_APP_FUNC(0x02985890, InputControlExtensions_ControlBuilder, InputControlExtensions_Setup, (InputControl * control, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7538, InputControlExtensions_Setup__MethodInfo); DO_APP_FUNC(0x029859D0, InputControlExtensions_DeviceBuilder, InputControlExtensions_Setup_1, (InputDevice * device, int32_t controlCount, int32_t usageCount, int32_t aliasCount, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, InputEventPtr, InputControlExtensions_InputEventControlCollection_get_eventPtr, (InputControlExtensions_InputEventControlCollection__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02985D10, InputControlExtensions_InputEventControlEnumerator, InputControlExtensions_InputEventControlCollection_GetEnumerator, (InputControlExtensions_InputEventControlCollection__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02985D70, IEnumerator_1_UnityEngine_InputSystem_InputControl_ *, InputControlExtensions_InputEventControlCollection_System_Collections_Generic_IEnumerable_UnityEngine_InputSystem_InputControl__GetEnumerator, (InputControlExtensions_InputEventControlCollection__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02985E70, IEnumerator *, InputControlExtensions_InputEventControlCollection_System_Collections_IEnumerable_GetEnumerator, (InputControlExtensions_InputEventControlCollection__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02985F70, void, InputControlExtensions_InputEventControlEnumerator__ctor, (InputControlExtensions_InputEventControlEnumerator__Boxed * __this, InputEventPtr eventPtr, InputDevice * device, InputControlExtensions_Enumerate__Enum flags, float magnitudeThreshold, MethodInfo * method)); -DO_APP_FUNC(0x029862B0, bool, InputControlExtensions_InputEventControlEnumerator_CheckDefault, (InputControlExtensions_InputEventControlEnumerator__Boxed * __this, uint32_t numBits, MethodInfo * method)); -DO_APP_FUNC(0x029862E0, bool, InputControlExtensions_InputEventControlEnumerator_CheckCurrent, (InputControlExtensions_InputEventControlEnumerator__Boxed * __this, uint32_t numBits, MethodInfo * method)); -DO_APP_FUNC(0x02986310, bool, InputControlExtensions_InputEventControlEnumerator_MoveNext, (InputControlExtensions_InputEventControlEnumerator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x029867C0, void, InputControlExtensions_InputEventControlEnumerator_Reset, (InputControlExtensions_InputEventControlEnumerator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02986C40, void, InputControlExtensions_InputEventControlEnumerator_Dispose, (InputControlExtensions_InputEventControlEnumerator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003CD530, InputControl *, InputControlExtensions_InputEventControlEnumerator_get_Current, (InputControlExtensions_InputEventControlEnumerator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003CD530, Object *, InputControlExtensions_InputEventControlEnumerator_System_Collections_IEnumerator_get_Current, (InputControlExtensions_InputEventControlEnumerator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, InputControl *, InputControlExtensions_ControlBuilder_get_control, (InputControlExtensions_ControlBuilder__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, InputControlExtensions_ControlBuilder_set_control, (InputControlExtensions_ControlBuilder__Boxed * __this, InputControl * value, MethodInfo * method)); -DO_APP_FUNC(0x02986C50, InputControlExtensions_ControlBuilder, InputControlExtensions_ControlBuilder_At, (InputControlExtensions_ControlBuilder__Boxed * __this, InputDevice * device, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x02986D50, InputControlExtensions_ControlBuilder, InputControlExtensions_ControlBuilder_WithParent, (InputControlExtensions_ControlBuilder__Boxed * __this, InputControl * parent, MethodInfo * method)); -DO_APP_FUNC(0x02986DC0, InputControlExtensions_ControlBuilder, InputControlExtensions_ControlBuilder_WithName, (InputControlExtensions_ControlBuilder__Boxed * __this, String * name, MethodInfo * method)); -DO_APP_FUNC(0x02986E60, InputControlExtensions_ControlBuilder, InputControlExtensions_ControlBuilder_WithDisplayName, (InputControlExtensions_ControlBuilder__Boxed * __this, String * displayName, MethodInfo * method)); -DO_APP_FUNC(0x02986F40, InputControlExtensions_ControlBuilder, InputControlExtensions_ControlBuilder_WithShortDisplayName, (InputControlExtensions_ControlBuilder__Boxed * __this, String * shortDisplayName, MethodInfo * method)); -DO_APP_FUNC(0x02987020, InputControlExtensions_ControlBuilder, InputControlExtensions_ControlBuilder_WithLayout, (InputControlExtensions_ControlBuilder__Boxed * __this, InternedString layout, MethodInfo * method)); -DO_APP_FUNC(0x02987090, InputControlExtensions_ControlBuilder, InputControlExtensions_ControlBuilder_WithUsages, (InputControlExtensions_ControlBuilder__Boxed * __this, int32_t startIndex, int32_t count, MethodInfo * method)); -DO_APP_FUNC(0x029870C0, InputControlExtensions_ControlBuilder, InputControlExtensions_ControlBuilder_WithAliases, (InputControlExtensions_ControlBuilder__Boxed * __this, int32_t startIndex, int32_t count, MethodInfo * method)); -DO_APP_FUNC(0x029870F0, InputControlExtensions_ControlBuilder, InputControlExtensions_ControlBuilder_WithChildren, (InputControlExtensions_ControlBuilder__Boxed * __this, int32_t startIndex, int32_t count, MethodInfo * method)); -DO_APP_FUNC(0x02987120, InputControlExtensions_ControlBuilder, InputControlExtensions_ControlBuilder_WithStateBlock, (InputControlExtensions_ControlBuilder__Boxed * __this, InputStateBlock stateBlock, MethodInfo * method)); -DO_APP_FUNC(0x02987150, InputControlExtensions_ControlBuilder, InputControlExtensions_ControlBuilder_WithDefaultState, (InputControlExtensions_ControlBuilder__Boxed * __this, PrimitiveValue value, MethodInfo * method)); -DO_APP_FUNC(0x02987190, InputControlExtensions_ControlBuilder, InputControlExtensions_ControlBuilder_WithMinAndMax, (InputControlExtensions_ControlBuilder__Boxed * __this, PrimitiveValue min, PrimitiveValue max, MethodInfo * method)); -DO_APP_FUNC(0x029871D0, InputControlExtensions_ControlBuilder, InputControlExtensions_ControlBuilder_IsNoisy, (InputControlExtensions_ControlBuilder__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02987200, InputControlExtensions_ControlBuilder, InputControlExtensions_ControlBuilder_IsSynthetic, (InputControlExtensions_ControlBuilder__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02987240, InputControlExtensions_ControlBuilder, InputControlExtensions_ControlBuilder_DontReset, (InputControlExtensions_ControlBuilder__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x029872A0, InputControlExtensions_ControlBuilder, InputControlExtensions_ControlBuilder_IsButton, (InputControlExtensions_ControlBuilder__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x029872E0, void, InputControlExtensions_ControlBuilder_Finish, (InputControlExtensions_ControlBuilder__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, InputDevice *, InputControlExtensions_DeviceBuilder_get_device, (InputControlExtensions_DeviceBuilder__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, InputControlExtensions_DeviceBuilder_set_device, (InputControlExtensions_DeviceBuilder__Boxed * __this, InputDevice * value, MethodInfo * method)); -DO_APP_FUNC(0x02986DC0, InputControlExtensions_DeviceBuilder, InputControlExtensions_DeviceBuilder_WithName, (InputControlExtensions_DeviceBuilder__Boxed * __this, String * name, MethodInfo * method)); -DO_APP_FUNC(0x02986E60, InputControlExtensions_DeviceBuilder, InputControlExtensions_DeviceBuilder_WithDisplayName, (InputControlExtensions_DeviceBuilder__Boxed * __this, String * displayName, MethodInfo * method)); -DO_APP_FUNC(0x02986F40, InputControlExtensions_DeviceBuilder, InputControlExtensions_DeviceBuilder_WithShortDisplayName, (InputControlExtensions_DeviceBuilder__Boxed * __this, String * shortDisplayName, MethodInfo * method)); -DO_APP_FUNC(0x02987020, InputControlExtensions_DeviceBuilder, InputControlExtensions_DeviceBuilder_WithLayout, (InputControlExtensions_DeviceBuilder__Boxed * __this, InternedString layout, MethodInfo * method)); -DO_APP_FUNC(0x029870F0, InputControlExtensions_DeviceBuilder, InputControlExtensions_DeviceBuilder_WithChildren, (InputControlExtensions_DeviceBuilder__Boxed * __this, int32_t startIndex, int32_t count, MethodInfo * method)); -DO_APP_FUNC(0x02987120, InputControlExtensions_DeviceBuilder, InputControlExtensions_DeviceBuilder_WithStateBlock, (InputControlExtensions_DeviceBuilder__Boxed * __this, InputStateBlock stateBlock, MethodInfo * method)); -DO_APP_FUNC(0x029871D0, InputControlExtensions_DeviceBuilder, InputControlExtensions_DeviceBuilder_IsNoisy, (InputControlExtensions_DeviceBuilder__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02987300, InputControlExtensions_DeviceBuilder, InputControlExtensions_DeviceBuilder_WithControlUsage, (InputControlExtensions_DeviceBuilder__Boxed * __this, int32_t controlIndex, InternedString usage, InputControl * control, MethodInfo * method)); -DO_APP_FUNC(0x02987430, InputControlExtensions_DeviceBuilder, InputControlExtensions_DeviceBuilder_WithControlAlias, (InputControlExtensions_DeviceBuilder__Boxed * __this, int32_t controlIndex, InternedString alias, MethodInfo * method)); -DO_APP_FUNC(0x029874D0, InputControlExtensions_DeviceBuilder, InputControlExtensions_DeviceBuilder_WithStateOffsetToControlIndexMap, (InputControlExtensions_DeviceBuilder__Boxed * __this, UInt32__Array * map, MethodInfo * method)); -DO_APP_FUNC(0x02987540, InputControlExtensions_DeviceBuilder, InputControlExtensions_DeviceBuilder_WithControlTree, (InputControlExtensions_DeviceBuilder__Boxed * __this, Byte__Array * controlTreeNodes, UInt16__Array * controlTreeIndicies, MethodInfo * method)); -DO_APP_FUNC(0x029872E0, void, InputControlExtensions_DeviceBuilder_Finish, (InputControlExtensions_DeviceBuilder__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7540, InputControlExtensions_Setup_1__MethodInfo); +DO_APP_FUNC(0x00594C90, InputEventPtr, InputControlExtensions_InputEventControlCollection_get_eventPtr, (InputControlExtensions_InputEventControlCollection * __this, MethodInfo * method)); +DO_APP_FUNC(0x02985D10, InputControlExtensions_InputEventControlEnumerator, InputControlExtensions_InputEventControlCollection_GetEnumerator, (InputControlExtensions_InputEventControlCollection * __this, MethodInfo * method)); +DO_APP_FUNC(0x02985D70, IEnumerator_1_UnityEngine_InputSystem_InputControl_ *, InputControlExtensions_InputEventControlCollection_System_Collections_Generic_IEnumerable_UnityEngine_InputSystem_InputControl__GetEnumerator, (InputControlExtensions_InputEventControlCollection * __this, MethodInfo * method)); +DO_APP_FUNC(0x02985E70, IEnumerator *, InputControlExtensions_InputEventControlCollection_System_Collections_IEnumerable_GetEnumerator, (InputControlExtensions_InputEventControlCollection * __this, MethodInfo * method)); +DO_APP_FUNC(0x02985F70, void, InputControlExtensions_InputEventControlEnumerator__ctor, (InputControlExtensions_InputEventControlEnumerator * __this, InputEventPtr eventPtr, InputDevice * device, InputControlExtensions_Enumerate__Enum flags, float magnitudeThreshold, MethodInfo * method)); +DO_APP_FUNC(0x029862B0, bool, InputControlExtensions_InputEventControlEnumerator_CheckDefault, (InputControlExtensions_InputEventControlEnumerator * __this, uint32_t numBits, MethodInfo * method)); +DO_APP_FUNC(0x029862E0, bool, InputControlExtensions_InputEventControlEnumerator_CheckCurrent, (InputControlExtensions_InputEventControlEnumerator * __this, uint32_t numBits, MethodInfo * method)); +DO_APP_FUNC(0x02986310, bool, InputControlExtensions_InputEventControlEnumerator_MoveNext, (InputControlExtensions_InputEventControlEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7588, InputControlExtensions_InputEventControlEnumerator_MoveNext__MethodInfo); +DO_APP_FUNC(0x029867C0, void, InputControlExtensions_InputEventControlEnumerator_Reset, (InputControlExtensions_InputEventControlEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7558, InputControlExtensions_InputEventControlEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x02986C40, void, InputControlExtensions_InputEventControlEnumerator_Dispose, (InputControlExtensions_InputEventControlEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC(0x003CD530, InputControl *, InputControlExtensions_InputEventControlEnumerator_get_Current, (InputControlExtensions_InputEventControlEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC(0x003CD530, Object *, InputControlExtensions_InputEventControlEnumerator_System_Collections_IEnumerator_get_Current, (InputControlExtensions_InputEventControlEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, InputControl *, InputControlExtensions_ControlBuilder_get_control, (InputControlExtensions_ControlBuilder * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, InputControlExtensions_ControlBuilder_set_control, (InputControlExtensions_ControlBuilder * __this, InputControl * value, MethodInfo * method)); +DO_APP_FUNC(0x02986C50, InputControlExtensions_ControlBuilder, InputControlExtensions_ControlBuilder_At, (InputControlExtensions_ControlBuilder * __this, InputDevice * device, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x02986D50, InputControlExtensions_ControlBuilder, InputControlExtensions_ControlBuilder_WithParent, (InputControlExtensions_ControlBuilder * __this, InputControl * parent, MethodInfo * method)); +DO_APP_FUNC(0x02986DC0, InputControlExtensions_ControlBuilder, InputControlExtensions_ControlBuilder_WithName, (InputControlExtensions_ControlBuilder * __this, String * name, MethodInfo * method)); +DO_APP_FUNC(0x02986E60, InputControlExtensions_ControlBuilder, InputControlExtensions_ControlBuilder_WithDisplayName, (InputControlExtensions_ControlBuilder * __this, String * displayName, MethodInfo * method)); +DO_APP_FUNC(0x02986F40, InputControlExtensions_ControlBuilder, InputControlExtensions_ControlBuilder_WithShortDisplayName, (InputControlExtensions_ControlBuilder * __this, String * shortDisplayName, MethodInfo * method)); +DO_APP_FUNC(0x02987020, InputControlExtensions_ControlBuilder, InputControlExtensions_ControlBuilder_WithLayout, (InputControlExtensions_ControlBuilder * __this, InternedString layout, MethodInfo * method)); +DO_APP_FUNC(0x02987090, InputControlExtensions_ControlBuilder, InputControlExtensions_ControlBuilder_WithUsages, (InputControlExtensions_ControlBuilder * __this, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC(0x029870C0, InputControlExtensions_ControlBuilder, InputControlExtensions_ControlBuilder_WithAliases, (InputControlExtensions_ControlBuilder * __this, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC(0x029870F0, InputControlExtensions_ControlBuilder, InputControlExtensions_ControlBuilder_WithChildren, (InputControlExtensions_ControlBuilder * __this, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC(0x02987120, InputControlExtensions_ControlBuilder, InputControlExtensions_ControlBuilder_WithStateBlock, (InputControlExtensions_ControlBuilder * __this, InputStateBlock stateBlock, MethodInfo * method)); +DO_APP_FUNC(0x02987150, InputControlExtensions_ControlBuilder, InputControlExtensions_ControlBuilder_WithDefaultState, (InputControlExtensions_ControlBuilder * __this, PrimitiveValue value, MethodInfo * method)); +DO_APP_FUNC(0x02987190, InputControlExtensions_ControlBuilder, InputControlExtensions_ControlBuilder_WithMinAndMax, (InputControlExtensions_ControlBuilder * __this, PrimitiveValue min, PrimitiveValue max, MethodInfo * method)); +DO_APP_FUNC(0x029871D0, InputControlExtensions_ControlBuilder, InputControlExtensions_ControlBuilder_IsNoisy, (InputControlExtensions_ControlBuilder * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02987200, InputControlExtensions_ControlBuilder, InputControlExtensions_ControlBuilder_IsSynthetic, (InputControlExtensions_ControlBuilder * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02987240, InputControlExtensions_ControlBuilder, InputControlExtensions_ControlBuilder_DontReset, (InputControlExtensions_ControlBuilder * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x029872A0, InputControlExtensions_ControlBuilder, InputControlExtensions_ControlBuilder_IsButton, (InputControlExtensions_ControlBuilder * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x029872E0, void, InputControlExtensions_ControlBuilder_Finish, (InputControlExtensions_ControlBuilder * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, InputDevice *, InputControlExtensions_DeviceBuilder_get_device, (InputControlExtensions_DeviceBuilder * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, InputControlExtensions_DeviceBuilder_set_device, (InputControlExtensions_DeviceBuilder * __this, InputDevice * value, MethodInfo * method)); +DO_APP_FUNC(0x02986DC0, InputControlExtensions_DeviceBuilder, InputControlExtensions_DeviceBuilder_WithName, (InputControlExtensions_DeviceBuilder * __this, String * name, MethodInfo * method)); +DO_APP_FUNC(0x02986E60, InputControlExtensions_DeviceBuilder, InputControlExtensions_DeviceBuilder_WithDisplayName, (InputControlExtensions_DeviceBuilder * __this, String * displayName, MethodInfo * method)); +DO_APP_FUNC(0x02986F40, InputControlExtensions_DeviceBuilder, InputControlExtensions_DeviceBuilder_WithShortDisplayName, (InputControlExtensions_DeviceBuilder * __this, String * shortDisplayName, MethodInfo * method)); +DO_APP_FUNC(0x02987020, InputControlExtensions_DeviceBuilder, InputControlExtensions_DeviceBuilder_WithLayout, (InputControlExtensions_DeviceBuilder * __this, InternedString layout, MethodInfo * method)); +DO_APP_FUNC(0x029870F0, InputControlExtensions_DeviceBuilder, InputControlExtensions_DeviceBuilder_WithChildren, (InputControlExtensions_DeviceBuilder * __this, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC(0x02987120, InputControlExtensions_DeviceBuilder, InputControlExtensions_DeviceBuilder_WithStateBlock, (InputControlExtensions_DeviceBuilder * __this, InputStateBlock stateBlock, MethodInfo * method)); +DO_APP_FUNC(0x029871D0, InputControlExtensions_DeviceBuilder, InputControlExtensions_DeviceBuilder_IsNoisy, (InputControlExtensions_DeviceBuilder * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02987300, InputControlExtensions_DeviceBuilder, InputControlExtensions_DeviceBuilder_WithControlUsage, (InputControlExtensions_DeviceBuilder * __this, int32_t controlIndex, InternedString usage, InputControl * control, MethodInfo * method)); +DO_APP_FUNC(0x02987430, InputControlExtensions_DeviceBuilder, InputControlExtensions_DeviceBuilder_WithControlAlias, (InputControlExtensions_DeviceBuilder * __this, int32_t controlIndex, InternedString alias, MethodInfo * method)); +DO_APP_FUNC(0x029874D0, InputControlExtensions_DeviceBuilder, InputControlExtensions_DeviceBuilder_WithStateOffsetToControlIndexMap, (InputControlExtensions_DeviceBuilder * __this, UInt32__Array * map, MethodInfo * method)); +DO_APP_FUNC(0x02987540, InputControlExtensions_DeviceBuilder, InputControlExtensions_DeviceBuilder_WithControlTree, (InputControlExtensions_DeviceBuilder * __this, Byte__Array * controlTreeNodes, UInt16__Array * controlTreeIndicies, MethodInfo * method)); +DO_APP_FUNC(0x029872E0, void, InputControlExtensions_DeviceBuilder_Finish, (InputControlExtensions_DeviceBuilder * __this, MethodInfo * method)); DO_APP_FUNC(0x0095DC40, void, InputControlExtensions_GetAllButtonPresses_d_43__ctor, (InputControlExtensions_GetAllButtonPresses_d_43 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x02987730, void, InputControlExtensions_GetAllButtonPresses_d_43_System_IDisposable_Dispose, (InputControlExtensions_GetAllButtonPresses_d_43 * __this, MethodInfo * method)); DO_APP_FUNC(0x02987790, bool, InputControlExtensions_GetAllButtonPresses_d_43_MoveNext, (InputControlExtensions_GetAllButtonPresses_d_43 * __this, MethodInfo * method)); DO_APP_FUNC(0x02987B00, void, InputControlExtensions_GetAllButtonPresses_d_43___m__Finally1, (InputControlExtensions_GetAllButtonPresses_d_43 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, InputControl *, InputControlExtensions_GetAllButtonPresses_d_43_System_Collections_Generic_IEnumerator_UnityEngine_InputSystem_InputControl__get_Current, (InputControlExtensions_GetAllButtonPresses_d_43 * __this, MethodInfo * method)); DO_APP_FUNC(0x02987B20, void, InputControlExtensions_GetAllButtonPresses_d_43_System_Collections_IEnumerator_Reset, (InputControlExtensions_GetAllButtonPresses_d_43 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC74C8, InputControlExtensions_GetAllButtonPresses_d_43_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, InputControlExtensions_GetAllButtonPresses_d_43_System_Collections_IEnumerator_get_Current, (InputControlExtensions_GetAllButtonPresses_d_43 * __this, MethodInfo * method)); DO_APP_FUNC(0x02987B70, IEnumerator_1_UnityEngine_InputSystem_InputControl_ *, InputControlExtensions_GetAllButtonPresses_d_43_System_Collections_Generic_IEnumerable_UnityEngine_InputSystem_InputControl__GetEnumerator, (InputControlExtensions_GetAllButtonPresses_d_43 * __this, MethodInfo * method)); DO_APP_FUNC(0x02987B70, IEnumerator *, InputControlExtensions_GetAllButtonPresses_d_43_System_Collections_IEnumerable_GetEnumerator, (InputControlExtensions_GetAllButtonPresses_d_43 * __this, MethodInfo * method)); DO_APP_FUNC(0x02987C20, String *, InputControlPath_CleanSlashes, (String * pathComponent, MethodInfo * method)); DO_APP_FUNC(0x02987C50, String *, InputControlPath_Combine, (InputControl * parent, String * path, MethodInfo * method)); DO_APP_FUNC(0x02987D50, String *, InputControlPath_ToHumanReadableString, (String * path, InputControlPath_HumanReadableStringOptions__Enum options, InputControl * control, MethodInfo * method)); -DO_APP_FUNC(0x02987D90, String *, InputControlPath_ToHumanReadableString_1, (String * path, String * deviceLayoutName, String * controlPath, InputControlPath_HumanReadableStringOptions__Enum options, InputControl * control, MethodInfo * method)); +DO_APP_FUNC(0x02987D90, String *, InputControlPath_ToHumanReadableString_1, (String * path, String * * deviceLayoutName, String * * controlPath, InputControlPath_HumanReadableStringOptions__Enum options, InputControl * control, MethodInfo * method)); DO_APP_FUNC(0x029883C0, String__Array *, InputControlPath_TryGetDeviceUsages, (String * path, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC74E0, InputControlPath_TryGetDeviceUsages__MethodInfo); DO_APP_FUNC(0x02988610, String *, InputControlPath_TryGetDeviceLayout, (String * path, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7500, InputControlPath_TryGetDeviceLayout__MethodInfo); DO_APP_FUNC(0x029887C0, String *, InputControlPath_TryGetControlLayout, (String * path, MethodInfo * method)); -DO_APP_FUNC(0x02988AA0, String *, InputControlPath_FindControlLayoutRecursive, (InputControlPath_PathParser parser, String * layoutName, MethodInfo * method)); -DO_APP_FUNC(0x02988CC0, String *, InputControlPath_FindControlLayoutRecursive_1, (InputControlPath_PathParser parser, InputControlLayout * layout, MethodInfo * method)); -DO_APP_FUNC(0x02989120, bool, InputControlPath_ControlLayoutMatchesPathComponent, (InputControlLayout_ControlItem controlItem, InputControlPath_PathParser parser, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC74D0, InputControlPath_TryGetControlLayout__MethodInfo); +DO_APP_FUNC(0x02988AA0, String *, InputControlPath_FindControlLayoutRecursive, (InputControlPath_PathParser * parser, String * layoutName, MethodInfo * method)); +DO_APP_FUNC(0x02988CC0, String *, InputControlPath_FindControlLayoutRecursive_1, (InputControlPath_PathParser * parser, InputControlLayout * layout, MethodInfo * method)); +DO_APP_FUNC(0x02989120, bool, InputControlPath_ControlLayoutMatchesPathComponent, (InputControlLayout_ControlItem * controlItem, InputControlPath_PathParser * parser, MethodInfo * method)); DO_APP_FUNC(0x029892D0, bool, InputControlPath_StringMatches, (Substring str, InternedString matchTo, MethodInfo * method)); DO_APP_FUNC(0x02989610, InputControl *, InputControlPath_TryFindControl, (InputControl * control, String * path, int32_t indexInPath, MethodInfo * method)); DO_APP_FUNC(0x02989730, InputControl__Array *, InputControlPath_TryFindControls, (InputControl * control, String * path, int32_t indexInPath, MethodInfo * method)); -DO_APP_FUNC(0x02989950, int32_t, InputControlPath_TryFindControls_1, (InputControl * control, String * path, InputControlList_1_InputControl_ matches, int32_t indexInPath, MethodInfo * method)); +DO_APP_FUNC(0x02989950, int32_t, InputControlPath_TryFindControls_1, (InputControl * control, String * path, InputControlList_1_InputControl_ * matches, int32_t indexInPath, MethodInfo * method)); DO_APP_FUNC(0x02989AC0, InputControl *, InputControlPath_TryFindChild, (InputControl * control, String * path, int32_t indexInPath, MethodInfo * method)); DO_APP_FUNC(0x02989C80, bool, InputControlPath_Matches, (String * expected, InputControl * control, MethodInfo * method)); -DO_APP_FUNC(0x02989E40, bool, InputControlPath_MatchControlComponent, (InputControlPath_ParsedPathComponent expectedControlComponent, InputControlLayout_ControlItem controlItem, bool matchAlias, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7488, InputControlPath_Matches__MethodInfo); +DO_APP_FUNC(0x02989E40, bool, InputControlPath_MatchControlComponent, (InputControlPath_ParsedPathComponent * expectedControlComponent, InputControlLayout_ControlItem * controlItem, bool matchAlias, MethodInfo * method)); DO_APP_FUNC(0x0298A280, bool, InputControlPath_MatchesPrefix, (String * expected, InputControl * control, MethodInfo * method)); -DO_APP_FUNC(0x0298A450, bool, InputControlPath_MatchesRecursive, (InputControlPath_PathParser parser, InputControl * currentControl, bool prefixOnly, MethodInfo * method)); -DO_APP_FUNC(0x0298A4E0, bool, InputControlPath_MatchPathComponent, (String * component, String * path, int32_t indexInPath, InputControlPath_PathComponentType__Enum componentType, int32_t startIndexInComponent, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7498, InputControlPath_MatchesPrefix__MethodInfo); +DO_APP_FUNC(0x0298A450, bool, InputControlPath_MatchesRecursive, (InputControlPath_PathParser * parser, InputControl * currentControl, bool prefixOnly, MethodInfo * method)); +DO_APP_FUNC(0x0298A4E0, bool, InputControlPath_MatchPathComponent, (String * component, String * path, int32_t * indexInPath, InputControlPath_PathComponentType__Enum componentType, int32_t startIndexInComponent, MethodInfo * method)); DO_APP_FUNC(0x0298A8B0, bool, InputControlPath_PathComponentCanYieldMultipleMatches, (String * path, int32_t indexInPath, MethodInfo * method)); DO_APP_FUNC(0x0298A970, IEnumerable_1_UnityEngine_InputSystem_InputControlPath_ParsedPathComponent_ *, InputControlPath_Parse, (String * path, MethodInfo * method)); -DO_APP_FUNC(0x0298AA30, String *, InputControlPath_ParsedPathComponent_get_layout, (InputControlPath_ParsedPathComponent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0298AA90, IEnumerable_1_System_String_ *, InputControlPath_ParsedPathComponent_get_usages, (InputControlPath_ParsedPathComponent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0298AC40, String *, InputControlPath_ParsedPathComponent_get_name, (InputControlPath_ParsedPathComponent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0298ACA0, String *, InputControlPath_ParsedPathComponent_get_displayName, (InputControlPath_ParsedPathComponent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0298AD00, bool, InputControlPath_ParsedPathComponent_get_isWildcard, (InputControlPath_ParsedPathComponent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0298AE30, bool, InputControlPath_ParsedPathComponent_get_isDoubleWildcard, (InputControlPath_ParsedPathComponent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0298AF60, String *, InputControlPath_ParsedPathComponent_ToHumanReadableString, (InputControlPath_ParsedPathComponent__Boxed * __this, String * parentLayoutName, String * parentControlPath, String * referencedLayoutName, String * controlPath, InputControlPath_HumanReadableStringOptions__Enum options, MethodInfo * method)); +DO_APP_FUNC(0x0298AA30, String *, InputControlPath_ParsedPathComponent_get_layout, (InputControlPath_ParsedPathComponent * __this, MethodInfo * method)); +DO_APP_FUNC(0x0298AA90, IEnumerable_1_System_String_ *, InputControlPath_ParsedPathComponent_get_usages, (InputControlPath_ParsedPathComponent * __this, MethodInfo * method)); +DO_APP_FUNC(0x0298AC40, String *, InputControlPath_ParsedPathComponent_get_name, (InputControlPath_ParsedPathComponent * __this, MethodInfo * method)); +DO_APP_FUNC(0x0298ACA0, String *, InputControlPath_ParsedPathComponent_get_displayName, (InputControlPath_ParsedPathComponent * __this, MethodInfo * method)); +DO_APP_FUNC(0x0298AD00, bool, InputControlPath_ParsedPathComponent_get_isWildcard, (InputControlPath_ParsedPathComponent * __this, MethodInfo * method)); +DO_APP_FUNC(0x0298AE30, bool, InputControlPath_ParsedPathComponent_get_isDoubleWildcard, (InputControlPath_ParsedPathComponent * __this, MethodInfo * method)); +DO_APP_FUNC(0x0298AF60, String *, InputControlPath_ParsedPathComponent_ToHumanReadableString, (InputControlPath_ParsedPathComponent * __this, String * parentLayoutName, String * parentControlPath, String * * referencedLayoutName, String * * controlPath, InputControlPath_HumanReadableStringOptions__Enum options, MethodInfo * method)); DO_APP_FUNC(0x0298BEA0, String *, InputControlPath_ParsedPathComponent_ToHumanReadableString_1, (Substring substring, MethodInfo * method)); -DO_APP_FUNC(0x0298BF30, bool, InputControlPath_ParsedPathComponent_Matches, (InputControlPath_ParsedPathComponent__Boxed * __this, InputControl * control, MethodInfo * method)); +DO_APP_FUNC(0x0298BF30, bool, InputControlPath_ParsedPathComponent_Matches, (InputControlPath_ParsedPathComponent * __this, InputControl * control, MethodInfo * method)); DO_APP_FUNC(0x0298C440, bool, InputControlPath_ParsedPathComponent_ComparePathElementToString, (Substring pathElement, String * element, MethodInfo * method)); DO_APP_FUNC(0x0298C610, void, InputControlPath_ParsedPathComponent_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InputControlPath_ParsedPathComponent_c__ctor, (InputControlPath_ParsedPathComponent_c * __this, MethodInfo * method)); DO_APP_FUNC(0x0298C6C0, String *, InputControlPath_ParsedPathComponent_c__get_usages_b__7_0, (InputControlPath_ParsedPathComponent_c * __this, Substring x, MethodInfo * method)); -DO_APP_FUNC(0x0298C720, bool, InputControlPath_PathParser_get_isAtEnd, (InputControlPath_PathParser__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0298C730, void, InputControlPath_PathParser__ctor, (InputControlPath_PathParser__Boxed * __this, String * path, MethodInfo * method)); -DO_APP_FUNC(0x0298C7C0, bool, InputControlPath_PathParser_MoveToNextComponent, (InputControlPath_PathParser__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0298CFA0, Substring, InputControlPath_PathParser_ParseComponentPart, (InputControlPath_PathParser__Boxed * __this, uint16_t terminator, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7478, InputControlPath_ParsedPathComponent_c__get_usages_b__7_0__MethodInfo); +DO_APP_FUNC(0x0298C720, bool, InputControlPath_PathParser_get_isAtEnd, (InputControlPath_PathParser * __this, MethodInfo * method)); +DO_APP_FUNC(0x0298C730, void, InputControlPath_PathParser__ctor, (InputControlPath_PathParser * __this, String * path, MethodInfo * method)); +DO_APP_FUNC(0x0298C7C0, bool, InputControlPath_PathParser_MoveToNextComponent, (InputControlPath_PathParser * __this, MethodInfo * method)); +DO_APP_FUNC(0x0298CFA0, Substring, InputControlPath_PathParser_ParseComponentPart, (InputControlPath_PathParser * __this, uint16_t terminator, MethodInfo * method)); DO_APP_FUNC(0x0298D0C0, void, InputControlPath_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InputControlPath_c__ctor, (InputControlPath_c * __this, MethodInfo * method)); DO_APP_FUNC(0x0298C6C0, String *, InputControlPath_c__TryGetDeviceUsages_b__9_0, (InputControlPath_c * __this, Substring x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC74B0, InputControlPath_c__TryGetDeviceUsages_b__9_0__MethodInfo); DO_APP_FUNC(0x0298D170, void, InputControlPath_Parse_d_34__ctor, (InputControlPath_Parse_d_34 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InputControlPath_Parse_d_34_System_IDisposable_Dispose, (InputControlPath_Parse_d_34 * __this, MethodInfo * method)); DO_APP_FUNC(0x0298D190, bool, InputControlPath_Parse_d_34_MoveNext, (InputControlPath_Parse_d_34 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7430, InputControlPath_Parse_d_34_MoveNext__MethodInfo); DO_APP_FUNC(0x016F9790, InputControlPath_ParsedPathComponent, InputControlPath_Parse_d_34_System_Collections_Generic_IEnumerator_UnityEngine_InputSystem_InputControlPath_ParsedPathComponent__get_Current, (InputControlPath_Parse_d_34 * __this, MethodInfo * method)); DO_APP_FUNC(0x0298D460, void, InputControlPath_Parse_d_34_System_Collections_IEnumerator_Reset, (InputControlPath_Parse_d_34 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7438, InputControlPath_Parse_d_34_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x0298D4B0, Object *, InputControlPath_Parse_d_34_System_Collections_IEnumerator_get_Current, (InputControlPath_Parse_d_34 * __this, MethodInfo * method)); DO_APP_FUNC(0x0298D520, IEnumerator_1_UnityEngine_InputSystem_InputControlPath_ParsedPathComponent_ *, InputControlPath_Parse_d_34_System_Collections_Generic_IEnumerable_UnityEngine_InputSystem_InputControlPath_ParsedPathComponent__GetEnumerator, (InputControlPath_Parse_d_34 * __this, MethodInfo * method)); DO_APP_FUNC(0x0298D520, IEnumerator *, InputControlPath_Parse_d_34_System_Collections_IEnumerable_GetEnumerator, (InputControlPath_Parse_d_34 * __this, MethodInfo * method)); DO_APP_FUNC(0x0298D610, Type *, InputProcessor_GetValueTypeFromType, (Type * processorType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7358, InputProcessor_GetValueTypeFromType__MethodInfo); DO_APP_FUNC(0x003CB690, InputProcessor_CachingPolicy__Enum, InputProcessor_get_cachingPolicy, (InputProcessor * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InputProcessor__ctor, (InputProcessor * __this, MethodInfo * method)); DO_APP_FUNC(0x01CEBEC0, ButtonControl *, Gamepad_get_buttonWest, (Gamepad * __this, MethodInfo * method)); @@ -52360,6 +61227,7 @@ DO_APP_FUNC(0x01CEBEC0, ButtonControl *, Gamepad_get_squareButton, (Gamepad * __ DO_APP_FUNC(0x00990340, ButtonControl *, Gamepad_get_circleButton, (Gamepad * __this, MethodInfo * method)); DO_APP_FUNC(0x006BEAD0, ButtonControl *, Gamepad_get_crossButton, (Gamepad * __this, MethodInfo * method)); DO_APP_FUNC(0x0298D700, ButtonControl *, Gamepad_get_Item, (Gamepad * __this, GamepadButton__Enum button, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7360, Gamepad_get_Item__MethodInfo); DO_APP_FUNC(0x0298D920, Gamepad *, Gamepad_get_current, (MethodInfo * method)); DO_APP_FUNC(0x0298D960, void, Gamepad_set_current, (Gamepad * value, MethodInfo * method)); DO_APP_FUNC(0x0298DA00, ReadOnlyArray_1_UnityEngine_InputSystem_Gamepad_, Gamepad_get_all, (MethodInfo * method)); @@ -52388,9 +61256,12 @@ DO_APP_FUNC(0x0298E9C0, int32_t, InputDevice_get_valueSizeInBytes, (InputDevice DO_APP_FUNC(0x0298EA50, ReadOnlyArray_1_UnityEngine_InputSystem_InputDevice_, InputDevice_get_all, (MethodInfo * method)); DO_APP_FUNC(0x0298EB00, void, InputDevice__ctor, (InputDevice * __this, MethodInfo * method)); DO_APP_FUNC(0x0298EB70, Object *, InputDevice_ReadValueFromBufferAsObject, (InputDevice * __this, Void * buffer, int32_t bufferSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC72C0, InputDevice_ReadValueFromBufferAsObject__MethodInfo); DO_APP_FUNC(0x0298EBC0, Object *, InputDevice_ReadValueFromStateAsObject, (InputDevice * __this, Void * statePtr, MethodInfo * method)); DO_APP_FUNC(0x0298ED00, void, InputDevice_ReadValueFromStateIntoBuffer, (InputDevice * __this, Void * statePtr, Void * bufferPtr, int32_t bufferSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC72D0, InputDevice_ReadValueFromStateIntoBuffer__MethodInfo); DO_APP_FUNC(0x0298EF10, bool, InputDevice_CompareValue, (InputDevice * __this, Void * firstStatePtr, Void * secondStatePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC72A8, InputDevice_CompareValue__MethodInfo); DO_APP_FUNC(0x0298F090, void, InputDevice_NotifyConfigurationChanged, (InputDevice * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InputDevice_MakeCurrent, (InputDevice * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InputDevice_OnAdded, (InputDevice * __this, MethodInfo * method)); @@ -52405,7 +61276,7 @@ DO_APP_FUNC(0x0298F2A0, void, InputDevice_set_disabledInRuntime, (InputDevice * DO_APP_FUNC(0x0298F2D0, bool, InputDevice_get_disabledWhileInBackground, (InputDevice * __this, MethodInfo * method)); DO_APP_FUNC(0x0298F2E0, void, InputDevice_set_disabledWhileInBackground, (InputDevice * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x0298F310, uint32_t, InputDevice_EncodeStateOffsetToControlMapEntry, (uint32_t controlIndex, uint32_t stateOffsetInBits, uint32_t stateSizeInBits, MethodInfo * method)); -DO_APP_FUNC(0x0298F320, void, InputDevice_DecodeStateOffsetToControlMapEntry, (uint32_t entry, uint32_t controlIndex, uint32_t stateOffset, uint32_t stateSize, MethodInfo * method)); +DO_APP_FUNC(0x0298F320, void, InputDevice_DecodeStateOffsetToControlMapEntry, (uint32_t entry, uint32_t * controlIndex, uint32_t * stateOffset, uint32_t * stateSize, MethodInfo * method)); DO_APP_FUNC(0x0298F340, bool, InputDevice_get_hasControlsWithDefaultState, (InputDevice * __this, MethodInfo * method)); DO_APP_FUNC(0x0298F350, void, InputDevice_set_hasControlsWithDefaultState, (InputDevice * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x0298F370, bool, InputDevice_get_hasDontResetControls, (InputDevice * __this, MethodInfo * method)); @@ -52432,7 +61303,7 @@ DO_APP_FUNC(0x029902D0, void, InputDevice_DumpControlTree, (InputDevice * __this DO_APP_FUNC(0x02990480, String *, InputDevice_DumpControlTree_1, (InputDevice * __this, MethodInfo * method)); DO_APP_FUNC(0x02990570, void, InputDevice_WriteChangedControlStatesInternal, (InputDevice * __this, Void * statePtr, uint32_t stateSizeInBits, uint8_t * deviceStatePtr, InputDevice_ControlBitRangeNode parentNode, uint32_t startOffset, MethodInfo * method)); DO_APP_FUNC(0x029909B0, bool, InputDevice_HasDataChangedInRange, (uint8_t * deviceStatePtr, Void * statePtr, uint32_t startOffset, uint32_t sizeInBits, MethodInfo * method)); -DO_APP_FUNC(0x02990A20, void, InputDevice_ControlBitRangeNode__ctor, (InputDevice_ControlBitRangeNode__Boxed * __this, uint16_t endOffset, MethodInfo * method)); +DO_APP_FUNC(0x02990A20, void, InputDevice_ControlBitRangeNode__ctor, (InputDevice_ControlBitRangeNode * __this, uint16_t endOffset, MethodInfo * method)); DO_APP_FUNC(0x01CEBEC0, ButtonControl *, Joystick_1_get_trigger, (Joystick_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x01CEBED0, void, Joystick_1_set_trigger, (Joystick_1 * __this, ButtonControl * value, MethodInfo * method)); DO_APP_FUNC(0x006BEA60, StickControl *, Joystick_1_get_stick, (Joystick_1 * __this, MethodInfo * method)); @@ -52450,8 +61321,10 @@ DO_APP_FUNC(0x02990E60, void, Joystick_1_OnAdded, (Joystick_1 * __this, MethodIn DO_APP_FUNC(0x02990EE0, void, Joystick_1_OnRemoved, (Joystick_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x018BD410, void, Joystick_1__ctor, (Joystick_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x029916E0, void, Keyboard_1_add_onTextInput, (Keyboard_1 * __this, Action_1_Char_ * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8B60, Keyboard_1_add_onTextInput__MethodInfo); DO_APP_FUNC(0x02991840, void, Keyboard_1_remove_onTextInput, (Keyboard_1 * __this, Action_1_Char_ * value, MethodInfo * method)); DO_APP_FUNC(0x029918A0, void, Keyboard_1_add_onIMECompositionChange, (Keyboard_1 * __this, Action_1_UnityEngine_InputSystem_LowLevel_IMECompositionString_ * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8B08, Keyboard_1_add_onIMECompositionChange__MethodInfo); DO_APP_FUNC(0x02991A00, void, Keyboard_1_remove_onIMECompositionChange, (Keyboard_1 * __this, Action_1_UnityEngine_InputSystem_LowLevel_IMECompositionString_ * value, MethodInfo * method)); DO_APP_FUNC(0x02991A60, void, Keyboard_1_SetIMEEnabled, (Keyboard_1 * __this, bool enabled, MethodInfo * method)); DO_APP_FUNC(0x02991AF0, void, Keyboard_1_SetIMECursorPosition, (Keyboard_1 * __this, Vector2 position, MethodInfo * method)); @@ -52584,6 +61457,7 @@ DO_APP_FUNC(0x00990350, void, Keyboard_1_set_altKey, (Keyboard_1 * __this, Butto DO_APP_FUNC(0x018BC330, ButtonControl *, Keyboard_1_get_imeSelected, (Keyboard_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x018BC340, void, Keyboard_1_set_imeSelected, (Keyboard_1 * __this, ButtonControl * value, MethodInfo * method)); DO_APP_FUNC(0x029922A0, KeyControl *, Keyboard_1_get_Item, (Keyboard_1 * __this, Key__Enum key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8B40, Keyboard_1_get_Item__MethodInfo); DO_APP_FUNC(0x02992340, ReadOnlyArray_1_UnityEngine_InputSystem_Controls_KeyControl_, Keyboard_1_get_allKeys, (Keyboard_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02992410, Keyboard_1 *, Keyboard_1_get_current, (MethodInfo * method)); DO_APP_FUNC(0x02992450, void, Keyboard_1_set_current, (Keyboard_1 * value, MethodInfo * method)); @@ -52644,6 +61518,7 @@ DO_APP_FUNC(0x018BC5E0, void, Pen_set_twist, (Pen * __this, AxisControl * value, DO_APP_FUNC(0x02995E60, Pen *, Pen_get_current, (MethodInfo * method)); DO_APP_FUNC(0x02995EA0, void, Pen_set_current, (Pen * value, MethodInfo * method)); DO_APP_FUNC(0x02995F40, ButtonControl *, Pen_get_Item, (Pen * __this, PenButton__Enum button, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC87E8, Pen_get_Item__MethodInfo); DO_APP_FUNC(0x02996080, void, Pen_MakeCurrent, (Pen * __this, MethodInfo * method)); DO_APP_FUNC(0x029960A0, void, Pen_OnRemoved, (Pen * __this, MethodInfo * method)); DO_APP_FUNC(0x02996130, void, Pen_FinishSetup, (Pen * __this, MethodInfo * method)); @@ -52669,7 +61544,7 @@ DO_APP_FUNC(0x02996AF0, void, Pointer_2_OnNextUpdate, (Pointer_2 * __this, Metho DO_APP_FUNC(0x02996B90, void, Pointer_2_OnStateEvent, (Pointer_2 * __this, InputEventPtr eventPtr, MethodInfo * method)); DO_APP_FUNC(0x02996C30, void, Pointer_2_UnityEngine_InputSystem_LowLevel_IInputStateCallbackReceiver_OnNextUpdate, (Pointer_2 * __this, MethodInfo * method)); DO_APP_FUNC(0x02996C40, void, Pointer_2_UnityEngine_InputSystem_LowLevel_IInputStateCallbackReceiver_OnStateEvent, (Pointer_2 * __this, InputEventPtr eventPtr, MethodInfo * method)); -DO_APP_FUNC(0x0041AF00, bool, Pointer_2_UnityEngine_InputSystem_LowLevel_IInputStateCallbackReceiver_GetStateOffsetForEvent, (Pointer_2 * __this, InputControl * control, InputEventPtr eventPtr, uint32_t offset, MethodInfo * method)); +DO_APP_FUNC(0x0041AF00, bool, Pointer_2_UnityEngine_InputSystem_LowLevel_IInputStateCallbackReceiver_GetStateOffsetForEvent, (Pointer_2 * __this, InputControl * control, InputEventPtr eventPtr, uint32_t * offset, MethodInfo * method)); DO_APP_FUNC(0x018BD410, void, Pointer_2__ctor, (Pointer_2 * __this, MethodInfo * method)); DO_APP_FUNC(0x02996C50, void, FastKeyboard__ctor, (FastKeyboard * __this, MethodInfo * method)); DO_APP_FUNC(0x0299B7B0, AnyKeyControl *, FastKeyboard_Initialize_ctrlKeyboardanyKey, (FastKeyboard * __this, InternedString kAnyKeyLayout, InputControl * parent, MethodInfo * method)); @@ -53130,20 +62005,25 @@ DO_APP_FUNC(0x029E61A0, AxisControl *, FastTouchscreen_Initialize_ctrlTouchscree DO_APP_FUNC(0x01C1B670, bool, InputRemoting_get_sending, (InputRemoting * __this, MethodInfo * method)); DO_APP_FUNC(0x029ED500, void, InputRemoting_set_sending, (InputRemoting * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x029ED520, void, InputRemoting__ctor, (InputRemoting * __this, InputManager_1 * manager, bool startSendingOnConnect, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB358, InputRemoting__ctor__MethodInfo); DO_APP_FUNC(0x029ED5E0, void, InputRemoting_StartSending, (InputRemoting * __this, MethodInfo * method)); DO_APP_FUNC(0x029ED7F0, void, InputRemoting_StopSending, (InputRemoting * __this, MethodInfo * method)); DO_APP_FUNC(0x029ED9F0, void, InputRemoting_System_IObserver_UnityEngine_InputSystem_InputRemoting_Message__OnNext, (InputRemoting * __this, InputRemoting_Message msg, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InputRemoting_System_IObserver_UnityEngine_InputSystem_InputRemoting_Message__OnError, (InputRemoting * __this, Exception * error, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InputRemoting_System_IObserver_UnityEngine_InputSystem_InputRemoting_Message__OnCompleted, (InputRemoting * __this, MethodInfo * method)); DO_APP_FUNC(0x029EDDD0, IDisposable *, InputRemoting_Subscribe, (InputRemoting * __this, IObserver_1_UnityEngine_InputSystem_InputRemoting_Message_ * observer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB200, InputRemoting_Subscribe__MethodInfo); DO_APP_FUNC(0x029EDF60, void, InputRemoting_SendInitialMessages, (InputRemoting * __this, MethodInfo * method)); DO_APP_FUNC(0x029EDF80, void, InputRemoting_SendAllGeneratedLayouts, (InputRemoting * __this, MethodInfo * method)); DO_APP_FUNC(0x029EE210, void, InputRemoting_SendLayout, (InputRemoting * __this, String * layoutName, MethodInfo * method)); DO_APP_FUNC(0x029EE2B0, void, InputRemoting_SendAllDevices, (InputRemoting * __this, MethodInfo * method)); DO_APP_FUNC(0x029EE500, void, InputRemoting_SendDevice, (InputRemoting * __this, InputDevice * device, MethodInfo * method)); DO_APP_FUNC(0x029EE590, void, InputRemoting_SendEvent, (InputRemoting * __this, InputEventPtr eventPtr, InputDevice * device, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB318, InputRemoting_SendEvent__MethodInfo); DO_APP_FUNC(0x029EE5F0, void, InputRemoting_SendDeviceChange, (InputRemoting * __this, InputDevice * device, InputDeviceChange__Enum change, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB378, InputRemoting_SendDeviceChange__MethodInfo); DO_APP_FUNC(0x029EE7B0, void, InputRemoting_SendLayoutChange, (InputRemoting * __this, String * layout, InputControlLayoutChange__Enum change, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB310, InputRemoting_SendLayoutChange__MethodInfo); DO_APP_FUNC(0x029EE930, void, InputRemoting_Send, (InputRemoting * __this, InputRemoting_Message msg, MethodInfo * method)); DO_APP_FUNC(0x029EEA70, int32_t, InputRemoting_FindOrCreateSenderRecord, (InputRemoting * __this, int32_t senderId, MethodInfo * method)); DO_APP_FUNC(0x029EEB30, InternedString, InputRemoting_BuildLayoutNamespace, (int32_t senderId, MethodInfo * method)); @@ -53164,6 +62044,7 @@ DO_APP_FUNC(0x029EFC00, void, InputRemoting_NewDeviceMsg_Process, (InputRemoting DO_APP_FUNC(0x029F0420, void, InputRemoting_NewDeviceMsg_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InputRemoting_NewDeviceMsg_c__ctor, (InputRemoting_NewDeviceMsg_c * __this, MethodInfo * method)); DO_APP_FUNC(0x02971BD0, String *, InputRemoting_NewDeviceMsg_c__Create_b__1_0, (InputRemoting_NewDeviceMsg_c * __this, InternedString x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB158, InputRemoting_NewDeviceMsg_c__Create_b__1_0__MethodInfo); DO_APP_FUNC(0x029F04D0, InputRemoting_Message, InputRemoting_NewEventsMsg_CreateResetEvent, (InputDevice * device, bool isHardReset, MethodInfo * method)); DO_APP_FUNC(0x029F05D0, InputRemoting_Message, InputRemoting_NewEventsMsg_CreateStateEvent, (InputDevice * device, MethodInfo * method)); DO_APP_FUNC(0x029F06D0, InputRemoting_Message, InputRemoting_NewEventsMsg_Create, (InputEvent * events, int32_t eventCount, MethodInfo * method)); @@ -53173,19 +62054,31 @@ DO_APP_FUNC(0x029F0DF0, void, InputRemoting_ChangeUsageMsg_Process, (InputRemoti DO_APP_FUNC(0x029F13D0, void, InputRemoting_ChangeUsageMsg_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InputRemoting_ChangeUsageMsg_c__ctor, (InputRemoting_ChangeUsageMsg_c * __this, MethodInfo * method)); DO_APP_FUNC(0x02971BD0, String *, InputRemoting_ChangeUsageMsg_c__Create_b__1_0, (InputRemoting_ChangeUsageMsg_c * __this, InternedString x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB0C0, InputRemoting_ChangeUsageMsg_c__Create_b__1_0__MethodInfo); DO_APP_FUNC(0x029F1480, InputRemoting_Message, InputRemoting_RemoveDeviceMsg_Create, (InputDevice * device, MethodInfo * method)); DO_APP_FUNC(0x029F1590, void, InputRemoting_RemoveDeviceMsg_Process, (InputRemoting * receiver, InputRemoting_Message msg, MethodInfo * method)); DO_APP_FUNC(0x029F1690, void, RemoteInputPlayerConnection_Bind, (RemoteInputPlayerConnection * __this, IEditorPlayerConnection * connection, bool isConnected, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCAF88, RemoteInputPlayerConnection_Bind__MethodInfo); DO_APP_FUNC(0x029F1F00, IDisposable *, RemoteInputPlayerConnection_Subscribe, (RemoteInputPlayerConnection * __this, IObserver_1_UnityEngine_InputSystem_InputRemoting_Message_ * observer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB020, RemoteInputPlayerConnection_Subscribe__MethodInfo); DO_APP_FUNC(0x029F21A0, void, RemoteInputPlayerConnection_OnConnected, (RemoteInputPlayerConnection * __this, int32_t id, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCAFB0, RemoteInputPlayerConnection_OnConnected__MethodInfo); DO_APP_FUNC(0x029F2250, void, RemoteInputPlayerConnection_OnDisconnected, (RemoteInputPlayerConnection * __this, int32_t id, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCAFA8, RemoteInputPlayerConnection_OnDisconnected__MethodInfo); DO_APP_FUNC(0x029F2350, void, RemoteInputPlayerConnection_OnNewDevice, (RemoteInputPlayerConnection * __this, MessageEventArgs * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCAFC0, RemoteInputPlayerConnection_OnNewDevice__MethodInfo); DO_APP_FUNC(0x029F2360, void, RemoteInputPlayerConnection_OnNewLayout, (RemoteInputPlayerConnection * __this, MessageEventArgs * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCAF50, RemoteInputPlayerConnection_OnNewLayout__MethodInfo); DO_APP_FUNC(0x029F2370, void, RemoteInputPlayerConnection_OnNewEvents, (RemoteInputPlayerConnection * __this, MessageEventArgs * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCAFB8, RemoteInputPlayerConnection_OnNewEvents__MethodInfo); DO_APP_FUNC(0x029F2380, void, RemoteInputPlayerConnection_OnRemoveDevice, (RemoteInputPlayerConnection * __this, MessageEventArgs * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCAF40, RemoteInputPlayerConnection_OnRemoveDevice__MethodInfo); DO_APP_FUNC(0x029F2390, void, RemoteInputPlayerConnection_OnChangeUsages, (RemoteInputPlayerConnection * __this, MessageEventArgs * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCAF98, RemoteInputPlayerConnection_OnChangeUsages__MethodInfo); DO_APP_FUNC(0x029F23A0, void, RemoteInputPlayerConnection_OnStartSending, (RemoteInputPlayerConnection * __this, MessageEventArgs * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCAF68, RemoteInputPlayerConnection_OnStartSending__MethodInfo); DO_APP_FUNC(0x029F23B0, void, RemoteInputPlayerConnection_OnStopSending, (RemoteInputPlayerConnection * __this, MessageEventArgs * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCAF58, RemoteInputPlayerConnection_OnStopSending__MethodInfo); DO_APP_FUNC(0x029F23C0, void, RemoteInputPlayerConnection_SendToSubscribers, (RemoteInputPlayerConnection * __this, InputRemoting_MessageType__Enum type, MessageEventArgs * args, MethodInfo * method)); DO_APP_FUNC(0x029F25C0, void, RemoteInputPlayerConnection_System_IObserver_UnityEngine_InputSystem_InputRemoting_Message__OnNext, (RemoteInputPlayerConnection * __this, InputRemoting_Message msg, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, RemoteInputPlayerConnection_System_IObserver_UnityEngine_InputSystem_InputRemoting_Message__OnError, (RemoteInputPlayerConnection * __this, Exception * error, MethodInfo * method)); @@ -53195,6 +62088,7 @@ DO_APP_FUNC(0x029F2780, void, RemoteInputPlayerConnection__cctor, (MethodInfo * DO_APP_FUNC(0x029F3030, void, RemoteInputPlayerConnection_Subscriber_Dispose, (RemoteInputPlayerConnection_Subscriber * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, RemoteInputPlayerConnection_Subscriber__ctor, (RemoteInputPlayerConnection_Subscriber * __this, MethodInfo * method)); DO_APP_FUNC(0x029F3090, float, Sensor_get_samplingFrequency, (Sensor * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCAF18, Sensor_get_samplingFrequency__MethodInfo); DO_APP_FUNC(0x029F3180, void, Sensor_set_samplingFrequency, (Sensor * __this, float value, MethodInfo * method)); DO_APP_FUNC(0x018BD410, void, Sensor__ctor, (Sensor * __this, MethodInfo * method)); DO_APP_FUNC(0x01CEBEC0, Vector3Control *, Accelerometer_get_acceleration, (Accelerometer * __this, MethodInfo * method)); @@ -53308,11 +62202,11 @@ DO_APP_FUNC(0x029F5370, void, Touchscreen_OnNextUpdate, (Touchscreen * __this, M DO_APP_FUNC(0x029F57F0, void, Touchscreen_OnStateEvent, (Touchscreen * __this, InputEventPtr eventPtr, MethodInfo * method)); DO_APP_FUNC(0x029F6000, void, Touchscreen_UnityEngine_InputSystem_LowLevel_IInputStateCallbackReceiver_OnNextUpdate, (Touchscreen * __this, MethodInfo * method)); DO_APP_FUNC(0x029F6010, void, Touchscreen_UnityEngine_InputSystem_LowLevel_IInputStateCallbackReceiver_OnStateEvent, (Touchscreen * __this, InputEventPtr eventPtr, MethodInfo * method)); -DO_APP_FUNC(0x029F6020, bool, Touchscreen_UnityEngine_InputSystem_LowLevel_IInputStateCallbackReceiver_GetStateOffsetForEvent, (Touchscreen * __this, InputControl * control, InputEventPtr eventPtr, uint32_t offset, MethodInfo * method)); +DO_APP_FUNC(0x029F6020, bool, Touchscreen_UnityEngine_InputSystem_LowLevel_IInputStateCallbackReceiver_GetStateOffsetForEvent, (Touchscreen * __this, InputControl * control, InputEventPtr eventPtr, uint32_t * offset, MethodInfo * method)); DO_APP_FUNC(0x029F63C0, void, Touchscreen_UnityEngine_InputSystem_LowLevel_ICustomDeviceReset_Reset, (Touchscreen * __this, MethodInfo * method)); DO_APP_FUNC(0x029F68A0, bool, Touchscreen_MergeForward, (InputEventPtr currentEventPtr, InputEventPtr nextEventPtr, MethodInfo * method)); DO_APP_FUNC(0x029F6930, bool, Touchscreen_UnityEngine_InputSystem_LowLevel_IEventMerger_MergeForward, (Touchscreen * __this, InputEventPtr currentEventPtr, InputEventPtr nextEventPtr, MethodInfo * method)); -DO_APP_FUNC(0x029F69D0, void, Touchscreen_TriggerTap, (TouchControl_1 * control, TouchState state, InputEventPtr eventPtr, MethodInfo * method)); +DO_APP_FUNC(0x029F69D0, void, Touchscreen_TriggerTap, (TouchControl_1 * control, TouchState * state, InputEventPtr eventPtr, MethodInfo * method)); DO_APP_FUNC(0x018BD410, void, Touchscreen__ctor, (Touchscreen * __this, MethodInfo * method)); DO_APP_FUNC(0x01CEBEC0, IntegerControl *, TrackedDevice_get_trackingState, (TrackedDevice * __this, MethodInfo * method)); DO_APP_FUNC(0x01CEBED0, void, TrackedDevice_set_trackingState, (TrackedDevice * __this, IntegerControl * value, MethodInfo * method)); @@ -53336,11 +62230,13 @@ DO_APP_FUNC(0x003C91C0, TypeTable, InputManager_1_get_composites, (InputManager_ DO_APP_FUNC(0x029F6E10, InputMetrics, InputManager_1_get_metrics, (InputManager_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x01DAABF0, InputSettings *, InputManager_1_get_settings, (InputManager_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x029F7050, void, InputManager_1_set_settings, (InputManager_1 * __this, InputSettings * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCAAD8, InputManager_1_set_settings__MethodInfo); DO_APP_FUNC(0x006C49D0, InputUpdateType__Enum, InputManager_1_get_updateMask, (InputManager_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x029F72E0, void, InputManager_1_set_updateMask, (InputManager_1 * __this, InputUpdateType__Enum value, MethodInfo * method)); DO_APP_FUNC(0x029F7300, InputUpdateType__Enum, InputManager_1_get_defaultUpdateType, (InputManager_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC310, float, InputManager_1_get_pollingFrequency, (InputManager_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x029F7340, void, InputManager_1_set_pollingFrequency, (InputManager_1 * __this, float value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCAAE0, InputManager_1_set_pollingFrequency__MethodInfo); DO_APP_FUNC(0x029F7420, void, InputManager_1_add_onDeviceChange, (InputManager_1 * __this, Action_2_UnityEngine_InputSystem_InputDevice_UnityEngine_InputSystem_InputDeviceChange_ * value, MethodInfo * method)); DO_APP_FUNC(0x029F7480, void, InputManager_1_remove_onDeviceChange, (InputManager_1 * __this, Action_2_UnityEngine_InputSystem_InputDevice_UnityEngine_InputSystem_InputDeviceChange_ * value, MethodInfo * method)); DO_APP_FUNC(0x029F74E0, void, InputManager_1_add_onDeviceStateChange, (InputManager_1 * __this, Action_2_UnityEngine_InputSystem_InputDevice_UnityEngine_InputSystem_LowLevel_InputEventPtr_ * value, MethodInfo * method)); @@ -53364,44 +62260,65 @@ DO_APP_FUNC(0x0041AEF0, bool, InputManager_1_get_gameIsPlaying, (InputManager_1 DO_APP_FUNC(0x029F7AF0, bool, InputManager_1_get_gameHasFocus, (InputManager_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x029F7B30, bool, InputManager_1_get_gameShouldGetInputRegardlessOfFocus, (InputManager_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x029F7B60, void, InputManager_1_RegisterControlLayout, (InputManager_1 * __this, String * name, Type * type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA988, InputManager_1_RegisterControlLayout__MethodInfo); DO_APP_FUNC(0x029F8410, void, InputManager_1_RegisterControlLayout_1, (InputManager_1 * __this, String * json, String * name, bool isOverride, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA9C8, InputManager_1_RegisterControlLayout_1__MethodInfo); DO_APP_FUNC(0x029F8C90, void, InputManager_1_RegisterControlLayoutBuilder, (InputManager_1 * __this, Func_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ * method_1, String * name, String * baseLayout, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA9A0, InputManager_1_RegisterControlLayoutBuilder__MethodInfo); DO_APP_FUNC(0x029F8F60, void, InputManager_1_PerformLayoutPostRegistration, (InputManager_1 * __this, InternedString layoutName, InlinedArray_1_InternedString_ baseLayouts, bool isReplacement, bool isKnownToBeDeviceLayout, bool isOverride, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA8D0, InputManager_1_PerformLayoutPostRegistration__MethodInfo); DO_APP_FUNC(0x029F9750, void, InputManager_1_RecreateDevicesUsingLayout, (InputManager_1 * __this, InternedString layout, bool isKnownToBeDeviceLayout, MethodInfo * method)); DO_APP_FUNC(0x029F99A0, bool, InputManager_1_IsControlOrChildUsingLayoutRecursive, (InputManager_1 * __this, InputControl * control, InternedString layout, MethodInfo * method)); DO_APP_FUNC(0x029F9AA0, bool, InputManager_1_IsControlUsingLayout, (InputManager_1 * __this, InputControl * control, InternedString layout, MethodInfo * method)); DO_APP_FUNC(0x029F9C70, void, InputManager_1_RegisterControlLayoutMatcher, (InputManager_1 * __this, String * layoutName, InputDeviceMatcher matcher, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA910, InputManager_1_RegisterControlLayoutMatcher__MethodInfo); DO_APP_FUNC(0x029F9E10, void, InputManager_1_RegisterControlLayoutMatcher_1, (InputManager_1 * __this, Type * type, InputDeviceMatcher matcher, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA928, InputManager_1_RegisterControlLayoutMatcher_1__MethodInfo); DO_APP_FUNC(0x029FA070, void, InputManager_1_RecreateDevicesUsingLayoutWithInferiorMatch, (InputManager_1 * __this, InputDeviceMatcher deviceMatcher, MethodInfo * method)); DO_APP_FUNC(0x029FA3B0, void, InputManager_1_RecreateDevice, (InputManager_1 * __this, InputDevice * oldDevice, InternedString newLayout, MethodInfo * method)); DO_APP_FUNC(0x029FA600, void, InputManager_1_AddAvailableDevicesMatchingDescription, (InputManager_1 * __this, InputDeviceMatcher matcher, InternedString layout, MethodInfo * method)); DO_APP_FUNC(0x029FAAD0, void, InputManager_1_RemoveControlLayout, (InputManager_1 * __this, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA838, InputManager_1_RemoveControlLayout__MethodInfo); DO_APP_FUNC(0x029FAE30, InputControlLayout *, InputManager_1_TryLoadControlLayout, (InputManager_1 * __this, Type * type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA7D8, InputManager_1_TryLoadControlLayout__MethodInfo); DO_APP_FUNC(0x029FB0C0, InputControlLayout *, InputManager_1_TryLoadControlLayout_1, (InputManager_1 * __this, InternedString name, MethodInfo * method)); -DO_APP_FUNC(0x029FB0F0, InternedString, InputManager_1_TryFindMatchingControlLayout, (InputManager_1 * __this, InputDeviceDescription deviceDescription, int32_t deviceId, MethodInfo * method)); +DO_APP_FUNC(0x029FB0F0, InternedString, InputManager_1_TryFindMatchingControlLayout, (InputManager_1 * __this, InputDeviceDescription * deviceDescription, int32_t deviceId, MethodInfo * method)); DO_APP_FUNC(0x029FB660, InternedString, InputManager_1_FindOrRegisterDeviceLayoutForType, (InputManager_1 * __this, Type * type, MethodInfo * method)); DO_APP_FUNC(0x029FB710, bool, InputManager_1_IsDeviceLayoutMarkedAsSupportedInSettings, (InputManager_1 * __this, InternedString layoutName, MethodInfo * method)); DO_APP_FUNC(0x029FB850, IEnumerable_1_System_String_ *, InputManager_1_ListControlLayouts, (InputManager_1 * __this, String * basedOn, MethodInfo * method)); DO_APP_FUNC(0x029FB980, void, InputManager_1_SetDeviceUsage, (InputManager_1 * __this, InputDevice * device, InternedString usage, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA730, InputManager_1_SetDeviceUsage__MethodInfo); DO_APP_FUNC(0x029FBCA0, void, InputManager_1_AddDeviceUsage, (InputManager_1 * __this, InputDevice * device, InternedString usage, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA740, InputManager_1_AddDeviceUsage__MethodInfo); DO_APP_FUNC(0x029FBE10, void, InputManager_1_RemoveDeviceUsage, (InputManager_1 * __this, InputDevice * device, InternedString usage, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA6E0, InputManager_1_RemoveDeviceUsage__MethodInfo); DO_APP_FUNC(0x029FBF80, void, InputManager_1_NotifyUsageChanged, (InputManager_1 * __this, InputDevice * device, MethodInfo * method)); DO_APP_FUNC(0x029FC030, InputDevice *, InputManager_1_AddDevice, (InputManager_1 * __this, Type * type, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA7C0, InputManager_1_AddDevice__MethodInfo); DO_APP_FUNC(0x029FC1D0, InputDevice *, InputManager_1_AddDevice_1, (InputManager_1 * __this, String * layout, String * name, InternedString variants, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA7C8, InputManager_1_AddDevice_1__MethodInfo); DO_APP_FUNC(0x029FC3E0, InputDevice *, InputManager_1_AddDevice_2, (InputManager_1 * __this, InternedString layout, int32_t deviceId, String * deviceName, InputDeviceDescription deviceDescription, InputDevice_DeviceFlags__Enum deviceFlags, InternedString variants, MethodInfo * method)); DO_APP_FUNC(0x029FC730, void, InputManager_1_AddDevice_3, (InputManager_1 * __this, InputDevice * device, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA7B0, InputManager_1_AddDevice_3__MethodInfo); DO_APP_FUNC(0x029FCF40, InputDevice *, InputManager_1_AddDevice_4, (InputManager_1 * __this, InputDeviceDescription description, MethodInfo * method)); DO_APP_FUNC(0x029FCFA0, InputDevice *, InputManager_1_AddDevice_5, (InputManager_1 * __this, InputDeviceDescription description, bool throwIfNoLayoutFound, String * deviceName, int32_t deviceId, InputDevice_DeviceFlags__Enum deviceFlags, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA620, InputManager_1_AddDevice_5__MethodInfo); DO_APP_FUNC(0x029FD2E0, InputDevice *, InputManager_1_AddDevice_6, (InputManager_1 * __this, InputDeviceDescription description, InternedString layout, String * deviceName, int32_t deviceId, InputDevice_DeviceFlags__Enum deviceFlags, MethodInfo * method)); DO_APP_FUNC(0x029FD430, void, InputManager_1_RemoveDevice, (InputManager_1 * __this, InputDevice * device, bool keepOnListOfAvailableDevices, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA5E8, InputManager_1_RemoveDevice__MethodInfo); DO_APP_FUNC(0x029FDA70, void, InputManager_1_FlushDisconnectedDevices, (InputManager_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x029FDAD0, void, InputManager_1_ResetDevice, (InputManager_1 * __this, InputDevice * device, bool alsoResetDontResetControls, Nullable_1_Boolean_ issueResetCommand, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA6A0, InputManager_1_ResetDevice__MethodInfo); DO_APP_FUNC(0x029FE130, InputDevice *, InputManager_1_TryGetDevice, (InputManager_1 * __this, String * nameOrLayout, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA670, InputManager_1_TryGetDevice__MethodInfo); DO_APP_FUNC(0x029FE2C0, InputDevice *, InputManager_1_GetDevice, (InputManager_1 * __this, String * nameOrLayout, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA678, InputManager_1_GetDevice__MethodInfo); DO_APP_FUNC(0x029FE370, InputDevice *, InputManager_1_TryGetDevice_1, (InputManager_1 * __this, Type * layoutType, MethodInfo * method)); DO_APP_FUNC(0x029FE400, InputDevice *, InputManager_1_TryGetDeviceById, (InputManager_1 * __this, int32_t id, MethodInfo * method)); DO_APP_FUNC(0x029FE480, int32_t, InputManager_1_GetUnsupportedDevices, (InputManager_1 * __this, List_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription_ * descriptions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA4A8, InputManager_1_GetUnsupportedDevices__MethodInfo); DO_APP_FUNC(0x029FE670, void, InputManager_1_EnableOrDisableDevice, (InputManager_1 * __this, InputDevice * device, bool enable, InputManager_DeviceDisableScope__Enum scope, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA4B0, InputManager_1_EnableOrDisableDevice__MethodInfo); DO_APP_FUNC(0x029FE9D0, void, InputManager_1_QueueEvent, (InputManager_1 * __this, InputEvent * eventPtr, MethodInfo * method)); DO_APP_FUNC(0x00E3EFE0, void, InputManager_1_QueueEvent_1, (InputManager_1 * __this, InputEventPtr ptr, MethodInfo * method)); DO_APP_FUNC(0x029FEAC0, void, InputManager_1_Update, (InputManager_1 * __this, MethodInfo * method)); @@ -53415,26 +62332,33 @@ DO_APP_FUNC(0x02A00CF0, void, InputManager_1_UninstallGlobals, (InputManager_1 * DO_APP_FUNC(0x02A00F80, void, InputManager_1_MakeDeviceNameUnique, (InputManager_1 * __this, InputDevice * device, MethodInfo * method)); DO_APP_FUNC(0x02A01280, void, InputManager_1_ResetControlPathsRecursive, (InputControl * control, MethodInfo * method)); DO_APP_FUNC(0x02A01380, void, InputManager_1_AssignUniqueDeviceId, (InputManager_1 * __this, InputDevice * device, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9E10, InputManager_1_AssignUniqueDeviceId__MethodInfo); DO_APP_FUNC(0x02A01500, void, InputManager_1_ReallocateStateBuffers, (InputManager_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02A01740, void, InputManager_1_InitializeDefaultState, (InputManager_1 * __this, InputDevice * device, MethodInfo * method)); DO_APP_FUNC(0x02A01910, void, InputManager_1_InitializeDeviceState, (InputManager_1 * __this, InputDevice * device, MethodInfo * method)); DO_APP_FUNC(0x02A01C40, void, InputManager_1_OnNativeDeviceDiscovered, (InputManager_1 * __this, int32_t deviceId, String * deviceDescriptor, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9F00, InputManager_1_OnNativeDeviceDiscovered__MethodInfo); DO_APP_FUNC(0x02A021A0, InputDevice *, InputManager_1_TryMatchDisconnectedDevice, (InputManager_1 * __this, String * deviceDescriptor, MethodInfo * method)); DO_APP_FUNC(0x02A02420, void, InputManager_1_InstallBeforeUpdateHookIfNecessary, (InputManager_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InputManager_1_RestoreDevicesAfterDomainReloadIfNecessary, (InputManager_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InputManager_1_WarnAboutDevicesFailingToRecreateAfterDomainReload, (InputManager_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02A024F0, void, InputManager_1_OnBeforeUpdate, (InputManager_1 * __this, InputUpdateType__Enum updateType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9EF0, InputManager_1_OnBeforeUpdate__MethodInfo); DO_APP_FUNC(0x02A02700, void, InputManager_1_ApplySettings, (InputManager_1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9D90, InputManager_1_ApplySettings__MethodInfo); DO_APP_FUNC(0x02A03080, void, InputManager_1_AddAvailableDevicesThatAreNowRecognized, (InputManager_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02A033A0, bool, InputManager_1_ShouldRunDeviceInBackground, (InputManager_1 * __this, InputDevice * device, MethodInfo * method)); DO_APP_FUNC(0x02A033E0, void, InputManager_1_OnFocusChanged, (InputManager_1 * __this, bool focus, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9EE0, InputManager_1_OnFocusChanged__MethodInfo); DO_APP_FUNC(0x02A03640, bool, InputManager_1_ShouldRunUpdate, (InputManager_1 * __this, InputUpdateType__Enum updateType, MethodInfo * method)); -DO_APP_FUNC(0x02A03660, void, InputManager_1_OnUpdate, (InputManager_1 * __this, InputUpdateType__Enum updateType, InputEventBuffer eventBuffer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9F20, InputManager_1_ShouldRunUpdate__MethodInfo); +DO_APP_FUNC(0x02A03660, void, InputManager_1_OnUpdate, (InputManager_1 * __this, InputUpdateType__Enum updateType, InputEventBuffer * eventBuffer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9EF8, InputManager_1_OnUpdate__MethodInfo); DO_APP_FUNC(0x02A04840, void, InputManager_1_InvokeAfterUpdateCallback, (InputManager_1 * __this, InputUpdateType__Enum updateType, MethodInfo * method)); DO_APP_FUNC(0x02A048A0, void, InputManager_1_DontMakeCurrentlyUpdatingDeviceCurrent, (InputManager_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02A048B0, bool, InputManager_1_UpdateState, (InputManager_1 * __this, InputDevice * device, InputEvent * eventPtr, InputUpdateType__Enum updateType, MethodInfo * method)); DO_APP_FUNC(0x02A049C0, bool, InputManager_1_UpdateState_1, (InputManager_1 * __this, InputDevice * device, InputUpdateType__Enum updateType, Void * statePtr, uint32_t stateOffsetInDevice, uint32_t stateSize, double internalTime, InputEventPtr eventPtr, MethodInfo * method)); -DO_APP_FUNC(0x02A04CF0, void, InputManager_1_WriteStateChange, (InputManager_1 * __this, InputStateBuffers_DoubleBuffers buffers, int32_t deviceIndex, InputStateBlock deviceStateBlock, uint32_t stateOffsetInDevice, Void * statePtr, uint32_t stateSizeInBytes, bool flippedBuffers, MethodInfo * method)); +DO_APP_FUNC(0x02A04CF0, void, InputManager_1_WriteStateChange, (InputManager_1 * __this, InputStateBuffers_DoubleBuffers buffers, int32_t deviceIndex, InputStateBlock * deviceStateBlock, uint32_t stateOffsetInDevice, Void * statePtr, uint32_t stateSizeInBytes, bool flippedBuffers, MethodInfo * method)); DO_APP_FUNC(0x02A05000, bool, InputManager_1_FlipBuffersForDeviceIfNecessary, (InputManager_1 * __this, InputDevice * device, InputUpdateType__Enum updateType, MethodInfo * method)); DO_APP_FUNC(0x02A05100, void, InputManager_1_AddStateChangeMonitor, (InputManager_1 * __this, InputControl * control, IInputStateChangeMonitor * monitor, int64_t monitorIndex, uint32_t groupIndex, MethodInfo * method)); DO_APP_FUNC(0x02A052A0, void, InputManager_1_RemoveStateChangeMonitors, (InputManager_1 * __this, InputDevice * device, MethodInfo * method)); @@ -53448,14 +62372,15 @@ DO_APP_FUNC(0x02A05C20, bool, InputManager_1_ProcessStateChangeMonitors, (InputM DO_APP_FUNC(0x02A06040, void, InputManager_1_FireStateChangeNotifications_1, (InputManager_1 * __this, int32_t deviceIndex, double internalTime, InputEvent * eventPtr, MethodInfo * method)); DO_APP_FUNC(0x02A06430, void, InputManager_1_ProcessStateChangeMonitorTimeouts, (InputManager_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InputManager_1__ctor, (InputManager_1 * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A06750, int64_t, InputManager_1__TryFindMatchingControlLayout_b__72_0, (InputManager_1 * __this, InputDeviceCommand commandRef, MethodInfo * method)); -DO_APP_FUNC(0x00421680, int32_t, InputManager_StateChangeMonitorsForDevice_get_count, (InputManager_StateChangeMonitorsForDevice__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A07070, void, InputManager_StateChangeMonitorsForDevice_Add, (InputManager_StateChangeMonitorsForDevice__Boxed * __this, InputControl * control, IInputStateChangeMonitor * monitor, int64_t monitorIndex, uint32_t groupIndex, MethodInfo * method)); -DO_APP_FUNC(0x02A073A0, void, InputManager_StateChangeMonitorsForDevice_Remove, (InputManager_StateChangeMonitorsForDevice__Boxed * __this, IInputStateChangeMonitor * monitor, int64_t monitorIndex, bool deferRemoval, MethodInfo * method)); -DO_APP_FUNC(0x02A07470, void, InputManager_StateChangeMonitorsForDevice_Clear, (InputManager_StateChangeMonitorsForDevice__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A07510, void, InputManager_StateChangeMonitorsForDevice_CompactArrays, (InputManager_StateChangeMonitorsForDevice__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A07570, void, InputManager_StateChangeMonitorsForDevice_RemoveAt, (InputManager_StateChangeMonitorsForDevice__Boxed * __this, int32_t i, MethodInfo * method)); -DO_APP_FUNC(0x02A07690, void, InputManager_StateChangeMonitorsForDevice_SortMonitorsByIndex, (InputManager_StateChangeMonitorsForDevice__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A06750, int64_t, InputManager_1__TryFindMatchingControlLayout_b__72_0, (InputManager_1 * __this, InputDeviceCommand * commandRef, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA860, InputManager_1__TryFindMatchingControlLayout_b__72_0__MethodInfo); +DO_APP_FUNC(0x00421680, int32_t, InputManager_StateChangeMonitorsForDevice_get_count, (InputManager_StateChangeMonitorsForDevice * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A07070, void, InputManager_StateChangeMonitorsForDevice_Add, (InputManager_StateChangeMonitorsForDevice * __this, InputControl * control, IInputStateChangeMonitor * monitor, int64_t monitorIndex, uint32_t groupIndex, MethodInfo * method)); +DO_APP_FUNC(0x02A073A0, void, InputManager_StateChangeMonitorsForDevice_Remove, (InputManager_StateChangeMonitorsForDevice * __this, IInputStateChangeMonitor * monitor, int64_t monitorIndex, bool deferRemoval, MethodInfo * method)); +DO_APP_FUNC(0x02A07470, void, InputManager_StateChangeMonitorsForDevice_Clear, (InputManager_StateChangeMonitorsForDevice * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A07510, void, InputManager_StateChangeMonitorsForDevice_CompactArrays, (InputManager_StateChangeMonitorsForDevice * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A07570, void, InputManager_StateChangeMonitorsForDevice_RemoveAt, (InputManager_StateChangeMonitorsForDevice * __this, int32_t i, MethodInfo * method)); +DO_APP_FUNC(0x02A07690, void, InputManager_StateChangeMonitorsForDevice_SortMonitorsByIndex, (InputManager_StateChangeMonitorsForDevice * __this, MethodInfo * method)); DO_APP_FUNC(0x0095DC40, void, InputManager_ListControlLayouts_d_75__ctor, (InputManager_ListControlLayouts_d_75 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x02A077F0, void, InputManager_ListControlLayouts_d_75_System_IDisposable_Dispose, (InputManager_ListControlLayouts_d_75 * __this, MethodInfo * method)); DO_APP_FUNC(0x02A07C50, bool, InputManager_ListControlLayouts_d_75_MoveNext, (InputManager_ListControlLayouts_d_75 * __this, MethodInfo * method)); @@ -53467,12 +62392,14 @@ DO_APP_FUNC(0x02A08C90, void, InputManager_ListControlLayouts_d_75___m__Finally5 DO_APP_FUNC(0x02A08CE0, void, InputManager_ListControlLayouts_d_75___m__Finally6, (InputManager_ListControlLayouts_d_75 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, String *, InputManager_ListControlLayouts_d_75_System_Collections_Generic_IEnumerator_System_String__get_Current, (InputManager_ListControlLayouts_d_75 * __this, MethodInfo * method)); DO_APP_FUNC(0x02A08D30, void, InputManager_ListControlLayouts_d_75_System_Collections_IEnumerator_Reset, (InputManager_ListControlLayouts_d_75 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCDFA8, InputManager_ListControlLayouts_d_75_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, InputManager_ListControlLayouts_d_75_System_Collections_IEnumerator_get_Current, (InputManager_ListControlLayouts_d_75 * __this, MethodInfo * method)); DO_APP_FUNC(0x02A08D80, IEnumerator_1_System_String_ *, InputManager_ListControlLayouts_d_75_System_Collections_Generic_IEnumerable_System_String__GetEnumerator, (InputManager_ListControlLayouts_d_75 * __this, MethodInfo * method)); DO_APP_FUNC(0x02A08D80, IEnumerator *, InputManager_ListControlLayouts_d_75_System_Collections_IEnumerable_GetEnumerator, (InputManager_ListControlLayouts_d_75 * __this, MethodInfo * method)); DO_APP_FUNC(0x02A08ED0, void, InputManager_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InputManager_c__ctor, (InputManager_c * __this, MethodInfo * method)); DO_APP_FUNC(0x02A08F80, String *, InputManager_c__MakeDeviceNameUnique_b__144_0, (InputManager_c * __this, InputDevice * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9FA0, InputManager_c__MakeDeviceNameUnique_b__144_0__MethodInfo); DO_APP_FUNC(0x003CC980, InputSettings_UpdateMode__Enum, InputSettings_get_updateMode, (InputSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x02A09020, void, InputSettings_set_updateMode, (InputSettings * __this, InputSettings_UpdateMode__Enum value, MethodInfo * method)); DO_APP_FUNC(0x00421700, bool, InputSettings_get_compensateForScreenOrientation, (InputSettings * __this, MethodInfo * method)); @@ -53512,6 +62439,7 @@ DO_APP_FUNC(0x02A09440, void, InputSettings_set_disableRedundantEventsMerging, ( DO_APP_FUNC(0x026D9150, bool, InputSettings_get_shortcutKeysConsumeInput, (InputSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x02A09450, void, InputSettings_set_shortcutKeysConsumeInput, (InputSettings * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x02A09460, void, InputSettings_SetInternalFeatureFlag, (InputSettings * __this, String * featureName, bool enabled, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCDFE8, InputSettings_SetInternalFeatureFlag__MethodInfo); DO_APP_FUNC(0x02A09730, bool, InputSettings_IsFeatureEnabled, (InputSettings * __this, String * featureName, MethodInfo * method)); DO_APP_FUNC(0x02A097B0, void, InputSettings_OnChange, (InputSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x02A09990, void, InputSettings__ctor, (InputSettings * __this, MethodInfo * method)); @@ -53530,7 +62458,7 @@ DO_APP_FUNC(0x02A0A680, void, DefaultInputActions_Enable, (DefaultInputActions * DO_APP_FUNC(0x02A0A6A0, void, DefaultInputActions_Disable, (DefaultInputActions * __this, MethodInfo * method)); DO_APP_FUNC(0x02A0A6C0, IEnumerable_1_UnityEngine_InputSystem_InputBinding_ *, DefaultInputActions_get_bindings, (DefaultInputActions * __this, MethodInfo * method)); DO_APP_FUNC(0x02A0A790, InputAction_1 *, DefaultInputActions_FindAction, (DefaultInputActions * __this, String * actionNameOrId, bool throwIfNotFound, MethodInfo * method)); -DO_APP_FUNC(0x02A0A7B0, int32_t, DefaultInputActions_FindBinding, (DefaultInputActions * __this, InputBinding bindingMask, InputAction_1 * action, MethodInfo * method)); +DO_APP_FUNC(0x02A0A7B0, int32_t, DefaultInputActions_FindBinding, (DefaultInputActions * __this, InputBinding bindingMask, InputAction_1 * * action, MethodInfo * method)); DO_APP_FUNC(0x003BB3F0, DefaultInputActions_PlayerActions, DefaultInputActions_get_Player, (DefaultInputActions * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3F0, DefaultInputActions_UIActions, DefaultInputActions_get_UI, (DefaultInputActions * __this, MethodInfo * method)); DO_APP_FUNC(0x02A0A910, InputControlScheme, DefaultInputActions_get_KeyboardMouseScheme, (DefaultInputActions * __this, MethodInfo * method)); @@ -53538,33 +62466,33 @@ DO_APP_FUNC(0x02A0A9E0, InputControlScheme, DefaultInputActions_get_GamepadSchem DO_APP_FUNC(0x02A0AAB0, InputControlScheme, DefaultInputActions_get_TouchScheme, (DefaultInputActions * __this, MethodInfo * method)); DO_APP_FUNC(0x02A0AB80, InputControlScheme, DefaultInputActions_get_JoystickScheme, (DefaultInputActions * __this, MethodInfo * method)); DO_APP_FUNC(0x02A0AC50, InputControlScheme, DefaultInputActions_get_XRScheme, (DefaultInputActions * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, DefaultInputActions_PlayerActions__ctor, (DefaultInputActions_PlayerActions__Boxed * __this, DefaultInputActions * wrapper, MethodInfo * method)); -DO_APP_FUNC(0x02A0AD20, InputAction_1 *, DefaultInputActions_PlayerActions_get_Move, (DefaultInputActions_PlayerActions__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A0AD40, InputAction_1 *, DefaultInputActions_PlayerActions_get_Look, (DefaultInputActions_PlayerActions__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x024478D0, InputAction_1 *, DefaultInputActions_PlayerActions_get_Fire, (DefaultInputActions_PlayerActions__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x024478B0, InputActionMap *, DefaultInputActions_PlayerActions_Get, (DefaultInputActions_PlayerActions__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A0AD60, void, DefaultInputActions_PlayerActions_Enable, (DefaultInputActions_PlayerActions__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A0ADE0, void, DefaultInputActions_PlayerActions_Disable, (DefaultInputActions_PlayerActions__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A0AE20, bool, DefaultInputActions_PlayerActions_get_enabled, (DefaultInputActions_PlayerActions__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, DefaultInputActions_PlayerActions__ctor, (DefaultInputActions_PlayerActions * __this, DefaultInputActions * wrapper, MethodInfo * method)); +DO_APP_FUNC(0x02A0AD20, InputAction_1 *, DefaultInputActions_PlayerActions_get_Move, (DefaultInputActions_PlayerActions * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A0AD40, InputAction_1 *, DefaultInputActions_PlayerActions_get_Look, (DefaultInputActions_PlayerActions * __this, MethodInfo * method)); +DO_APP_FUNC(0x024478D0, InputAction_1 *, DefaultInputActions_PlayerActions_get_Fire, (DefaultInputActions_PlayerActions * __this, MethodInfo * method)); +DO_APP_FUNC(0x024478B0, InputActionMap *, DefaultInputActions_PlayerActions_Get, (DefaultInputActions_PlayerActions * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A0AD60, void, DefaultInputActions_PlayerActions_Enable, (DefaultInputActions_PlayerActions * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A0ADE0, void, DefaultInputActions_PlayerActions_Disable, (DefaultInputActions_PlayerActions * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A0AE20, bool, DefaultInputActions_PlayerActions_get_enabled, (DefaultInputActions_PlayerActions * __this, MethodInfo * method)); DO_APP_FUNC(0x011C4410, InputActionMap *, DefaultInputActions_PlayerActions_op_Implicit, (DefaultInputActions_PlayerActions set, MethodInfo * method)); -DO_APP_FUNC(0x02A0AE50, void, DefaultInputActions_PlayerActions_SetCallbacks, (DefaultInputActions_PlayerActions__Boxed * __this, DefaultInputActions_IPlayerActions * instance, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, DefaultInputActions_UIActions__ctor, (DefaultInputActions_UIActions__Boxed * __this, DefaultInputActions * wrapper, MethodInfo * method)); -DO_APP_FUNC(0x02A0BF90, InputAction_1 *, DefaultInputActions_UIActions_get_Navigate, (DefaultInputActions_UIActions__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A0BFB0, InputAction_1 *, DefaultInputActions_UIActions_get_Submit, (DefaultInputActions_UIActions__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A0BFD0, InputAction_1 *, DefaultInputActions_UIActions_get_Cancel, (DefaultInputActions_UIActions__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A0BFF0, InputAction_1 *, DefaultInputActions_UIActions_get_Point, (DefaultInputActions_UIActions__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A0C010, InputAction_1 *, DefaultInputActions_UIActions_get_Click, (DefaultInputActions_UIActions__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A0C030, InputAction_1 *, DefaultInputActions_UIActions_get_ScrollWheel, (DefaultInputActions_UIActions__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A0C050, InputAction_1 *, DefaultInputActions_UIActions_get_MiddleClick, (DefaultInputActions_UIActions__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A0C070, InputAction_1 *, DefaultInputActions_UIActions_get_RightClick, (DefaultInputActions_UIActions__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A0C090, InputAction_1 *, DefaultInputActions_UIActions_get_TrackedDevicePosition, (DefaultInputActions_UIActions__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A0C0B0, InputAction_1 *, DefaultInputActions_UIActions_get_TrackedDeviceOrientation, (DefaultInputActions_UIActions__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A0C0D0, InputActionMap *, DefaultInputActions_UIActions_Get, (DefaultInputActions_UIActions__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A0C0F0, void, DefaultInputActions_UIActions_Enable, (DefaultInputActions_UIActions__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A0C170, void, DefaultInputActions_UIActions_Disable, (DefaultInputActions_UIActions__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A0C1B0, bool, DefaultInputActions_UIActions_get_enabled, (DefaultInputActions_UIActions__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A0AE50, void, DefaultInputActions_PlayerActions_SetCallbacks, (DefaultInputActions_PlayerActions * __this, DefaultInputActions_IPlayerActions * instance, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, DefaultInputActions_UIActions__ctor, (DefaultInputActions_UIActions * __this, DefaultInputActions * wrapper, MethodInfo * method)); +DO_APP_FUNC(0x02A0BF90, InputAction_1 *, DefaultInputActions_UIActions_get_Navigate, (DefaultInputActions_UIActions * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A0BFB0, InputAction_1 *, DefaultInputActions_UIActions_get_Submit, (DefaultInputActions_UIActions * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A0BFD0, InputAction_1 *, DefaultInputActions_UIActions_get_Cancel, (DefaultInputActions_UIActions * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A0BFF0, InputAction_1 *, DefaultInputActions_UIActions_get_Point, (DefaultInputActions_UIActions * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A0C010, InputAction_1 *, DefaultInputActions_UIActions_get_Click, (DefaultInputActions_UIActions * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A0C030, InputAction_1 *, DefaultInputActions_UIActions_get_ScrollWheel, (DefaultInputActions_UIActions * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A0C050, InputAction_1 *, DefaultInputActions_UIActions_get_MiddleClick, (DefaultInputActions_UIActions * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A0C070, InputAction_1 *, DefaultInputActions_UIActions_get_RightClick, (DefaultInputActions_UIActions * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A0C090, InputAction_1 *, DefaultInputActions_UIActions_get_TrackedDevicePosition, (DefaultInputActions_UIActions * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A0C0B0, InputAction_1 *, DefaultInputActions_UIActions_get_TrackedDeviceOrientation, (DefaultInputActions_UIActions * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A0C0D0, InputActionMap *, DefaultInputActions_UIActions_Get, (DefaultInputActions_UIActions * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A0C0F0, void, DefaultInputActions_UIActions_Enable, (DefaultInputActions_UIActions * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A0C170, void, DefaultInputActions_UIActions_Disable, (DefaultInputActions_UIActions * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A0C1B0, bool, DefaultInputActions_UIActions_get_enabled, (DefaultInputActions_UIActions * __this, MethodInfo * method)); DO_APP_FUNC(0x02A0C1E0, InputActionMap *, DefaultInputActions_UIActions_op_Implicit, (DefaultInputActions_UIActions set, MethodInfo * method)); -DO_APP_FUNC(0x02A0C200, void, DefaultInputActions_UIActions_SetCallbacks, (DefaultInputActions_UIActions__Boxed * __this, DefaultInputActions_IUIActions * instance, MethodInfo * method)); +DO_APP_FUNC(0x02A0C200, void, DefaultInputActions_UIActions_SetCallbacks, (DefaultInputActions_UIActions * __this, DefaultInputActions_IUIActions * instance, MethodInfo * method)); DO_APP_FUNC(0x02A0F040, Object *, InputValue_Get, (InputValue * __this, MethodInfo * method)); DO_APP_FUNC(0x02A0F0F0, bool, InputValue_get_isPressed, (InputValue * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InputValue__ctor, (InputValue * __this, MethodInfo * method)); @@ -53591,13 +62519,21 @@ DO_APP_FUNC(0x02A0FC40, PlayerInput_DeviceLostEvent *, PlayerInput_1_get_deviceL DO_APP_FUNC(0x02A0FD20, PlayerInput_DeviceRegainedEvent *, PlayerInput_1_get_deviceRegainedEvent, (PlayerInput_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02A0FE00, PlayerInput_ControlsChangedEvent *, PlayerInput_1_get_controlsChangedEvent, (PlayerInput_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02A0FEE0, void, PlayerInput_1_add_onActionTriggered, (PlayerInput_1 * __this, Action_1_UnityEngine_InputSystem_InputAction_CallbackContext_ * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCDF38, PlayerInput_1_add_onActionTriggered__MethodInfo); DO_APP_FUNC(0x02A0FF90, void, PlayerInput_1_remove_onActionTriggered, (PlayerInput_1 * __this, Action_1_UnityEngine_InputSystem_InputAction_CallbackContext_ * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCDF40, PlayerInput_1_remove_onActionTriggered__MethodInfo); DO_APP_FUNC(0x02A10040, void, PlayerInput_1_add_onDeviceLost, (PlayerInput_1 * __this, Action_1_UnityEngine_InputSystem_PlayerInput_ * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCDF18, PlayerInput_1_add_onDeviceLost__MethodInfo); DO_APP_FUNC(0x02A100F0, void, PlayerInput_1_remove_onDeviceLost, (PlayerInput_1 * __this, Action_1_UnityEngine_InputSystem_PlayerInput_ * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCDF28, PlayerInput_1_remove_onDeviceLost__MethodInfo); DO_APP_FUNC(0x02A101A0, void, PlayerInput_1_add_onDeviceRegained, (PlayerInput_1 * __this, Action_1_UnityEngine_InputSystem_PlayerInput_ * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCDE98, PlayerInput_1_add_onDeviceRegained__MethodInfo); DO_APP_FUNC(0x02A10250, void, PlayerInput_1_remove_onDeviceRegained, (PlayerInput_1 * __this, Action_1_UnityEngine_InputSystem_PlayerInput_ * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCDEA0, PlayerInput_1_remove_onDeviceRegained__MethodInfo); DO_APP_FUNC(0x02A10300, void, PlayerInput_1_add_onControlsChanged, (PlayerInput_1 * __this, Action_1_UnityEngine_InputSystem_PlayerInput_ * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCDEA8, PlayerInput_1_add_onControlsChanged__MethodInfo); DO_APP_FUNC(0x02A103B0, void, PlayerInput_1_remove_onControlsChanged, (PlayerInput_1 * __this, Action_1_UnityEngine_InputSystem_PlayerInput_ * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCDE90, PlayerInput_1_remove_onControlsChanged__MethodInfo); DO_APP_FUNC(0x003C91D0, Camera *, PlayerInput_1_get_camera, (PlayerInput_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x00A030D0, void, PlayerInput_1_set_camera, (PlayerInput_1 * __this, Camera * value, MethodInfo * method)); DO_APP_FUNC(0x003BB3B0, InputSystemUIInputModule *, PlayerInput_1_get_uiInputModule, (PlayerInput_1 * __this, MethodInfo * method)); @@ -53611,18 +62547,24 @@ DO_APP_FUNC(0x02A10E30, void, PlayerInput_1_ActivateInput, (PlayerInput_1 * __th DO_APP_FUNC(0x02A10F80, void, PlayerInput_1_DeactivateInput, (PlayerInput_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02A10F80, void, PlayerInput_1_PassivateInput, (PlayerInput_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02A10FC0, bool, PlayerInput_1_SwitchCurrentControlScheme, (PlayerInput_1 * __this, InputDevice__Array * devices, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCDEC8, PlayerInput_1_SwitchCurrentControlScheme__MethodInfo); DO_APP_FUNC(0x02A11260, void, PlayerInput_1_SwitchCurrentControlScheme_1, (PlayerInput_1 * __this, String * controlScheme, InputDevice__Array * devices, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCDED0, PlayerInput_1_SwitchCurrentControlScheme_1__MethodInfo); DO_APP_FUNC(0x02A11430, void, PlayerInput_1_SwitchCurrentActionMap, (PlayerInput_1 * __this, String * mapNameOrId, MethodInfo * method)); DO_APP_FUNC(0x02A11640, PlayerInput_1 *, PlayerInput_1_GetPlayerByIndex, (int32_t playerIndex, MethodInfo * method)); DO_APP_FUNC(0x02A11740, PlayerInput_1 *, PlayerInput_1_FindFirstPairedToDevice, (InputDevice * device, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCDE50, PlayerInput_1_FindFirstPairedToDevice__MethodInfo); DO_APP_FUNC(0x02A11930, PlayerInput_1 *, PlayerInput_1_Instantiate, (GameObject * prefab, int32_t playerIndex, String * controlScheme, int32_t splitScreenIndex, InputDevice * pairWithDevice, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCDE20, PlayerInput_1_Instantiate__MethodInfo); DO_APP_FUNC(0x02A11BE0, PlayerInput_1 *, PlayerInput_1_Instantiate_1, (GameObject * prefab, int32_t playerIndex, String * controlScheme, int32_t splitScreenIndex, InputDevice__Array * pairWithDevices, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCDE30, PlayerInput_1_Instantiate_1__MethodInfo); DO_APP_FUNC(0x02A11EB0, PlayerInput_1 *, PlayerInput_1_DoInstantiate, (GameObject * prefab, MethodInfo * method)); DO_APP_FUNC(0x02A12460, void, PlayerInput_1_InitializeActions, (PlayerInput_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02A12D50, void, PlayerInput_1_UninitializeActions, (PlayerInput_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02A13050, void, PlayerInput_1_InstallOnActionTriggeredHook, (PlayerInput_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02A13340, void, PlayerInput_1_UninstallOnActionTriggeredHook, (PlayerInput_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02A13570, void, PlayerInput_1_OnActionTriggered, (PlayerInput_1 * __this, InputAction_CallbackContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCDE60, PlayerInput_1_OnActionTriggered__MethodInfo); DO_APP_FUNC(0x02A13870, void, PlayerInput_1_CacheMessageNames, (PlayerInput_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, PlayerInput_1_ClearCaches, (PlayerInput_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02A13E20, void, PlayerInput_1_AssignUserAndDevices, (PlayerInput_1 * __this, MethodInfo * method)); @@ -53641,16 +62583,21 @@ DO_APP_FUNC(0x02A169F0, void, PlayerInput_1_HandleDeviceLost, (PlayerInput_1 * _ DO_APP_FUNC(0x02A16B10, void, PlayerInput_1_HandleDeviceRegained, (PlayerInput_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02A16C30, void, PlayerInput_1_HandleControlsChanged, (PlayerInput_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02A16D50, void, PlayerInput_1_OnUserChange, (InputUser user, InputUserChange__Enum change, InputDevice * device, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCDE18, PlayerInput_1_OnUserChange__MethodInfo); DO_APP_FUNC(0x02A16EF0, bool, PlayerInput_1_OnPreFilterUnpairedDeviceUsed, (InputDevice * device, InputEventPtr eventPtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCDD60, PlayerInput_1_OnPreFilterUnpairedDeviceUsed__MethodInfo); DO_APP_FUNC(0x02A17270, void, PlayerInput_1_OnUnpairedDeviceUsed, (PlayerInput_1 * __this, InputControl * control, InputEventPtr eventPtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCDD70, PlayerInput_1_OnUnpairedDeviceUsed__MethodInfo); DO_APP_FUNC(0x02A17B50, void, PlayerInput_1_OnDeviceChange, (PlayerInput_1 * __this, InputDevice * device, InputDeviceChange__Enum change, MethodInfo * method)); -DO_APP_FUNC(0x02A17D10, void, PlayerInput_1_SwitchControlSchemeInternal, (PlayerInput_1 * __this, InputControlScheme controlScheme, InputDevice__Array * devices, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCDD78, PlayerInput_1_OnDeviceChange__MethodInfo); +DO_APP_FUNC(0x02A17D10, void, PlayerInput_1_SwitchControlSchemeInternal, (PlayerInput_1 * __this, InputControlScheme * controlScheme, InputDevice__Array * devices, MethodInfo * method)); DO_APP_FUNC(0x02A184B0, void, PlayerInput_1__ctor, (PlayerInput_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02A18510, void, PlayerInput_1__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003BB330, String *, PlayerInput_ActionEvent_get_actionId, (PlayerInput_ActionEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7320, String *, PlayerInput_ActionEvent_get_actionName, (PlayerInput_ActionEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x02A18570, void, PlayerInput_ActionEvent__ctor, (PlayerInput_ActionEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x02A185B0, void, PlayerInput_ActionEvent__ctor_1, (PlayerInput_ActionEvent * __this, InputAction_1 * action, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCDD38, PlayerInput_ActionEvent__ctor_1__MethodInfo); DO_APP_FUNC(0x02A18A00, void, PlayerInput_ActionEvent__ctor_2, (PlayerInput_ActionEvent * __this, Guid actionGUID, String * name, MethodInfo * method)); DO_APP_FUNC(0x02A18B30, void, PlayerInput_DeviceLostEvent__ctor, (PlayerInput_DeviceLostEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x02A18B70, void, PlayerInput_DeviceRegainedEvent__ctor, (PlayerInput_DeviceRegainedEvent * __this, MethodInfo * method)); @@ -53672,9 +62619,13 @@ DO_APP_FUNC(0x003BCDD0, void, PlayerInputManager_set_notificationBehavior, (Play DO_APP_FUNC(0x02A19100, PlayerInputManager_PlayerJoinedEvent *, PlayerInputManager_get_playerJoinedEvent, (PlayerInputManager * __this, MethodInfo * method)); DO_APP_FUNC(0x02A191E0, PlayerInputManager_PlayerLeftEvent *, PlayerInputManager_get_playerLeftEvent, (PlayerInputManager * __this, MethodInfo * method)); DO_APP_FUNC(0x02A192C0, void, PlayerInputManager_add_onPlayerJoined, (PlayerInputManager * __this, Action_1_UnityEngine_InputSystem_PlayerInput_ * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCDCE0, PlayerInputManager_add_onPlayerJoined__MethodInfo); DO_APP_FUNC(0x02A19370, void, PlayerInputManager_remove_onPlayerJoined, (PlayerInputManager * __this, Action_1_UnityEngine_InputSystem_PlayerInput_ * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCDCE8, PlayerInputManager_remove_onPlayerJoined__MethodInfo); DO_APP_FUNC(0x02A19420, void, PlayerInputManager_add_onPlayerLeft, (PlayerInputManager * __this, Action_1_UnityEngine_InputSystem_PlayerInput_ * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCDCF0, PlayerInputManager_add_onPlayerLeft__MethodInfo); DO_APP_FUNC(0x02A194D0, void, PlayerInputManager_remove_onPlayerLeft, (PlayerInputManager * __this, Action_1_UnityEngine_InputSystem_PlayerInput_ * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCDCD0, PlayerInputManager_remove_onPlayerLeft__MethodInfo); DO_APP_FUNC(0x003C7420, GameObject *, PlayerInputManager_get_playerPrefab, (PlayerInputManager * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7430, void, PlayerInputManager_set_playerPrefab, (PlayerInputManager * __this, GameObject * value, MethodInfo * method)); DO_APP_FUNC(0x02A19580, PlayerInputManager *, PlayerInputManager_get_instance, (MethodInfo * method)); @@ -53682,13 +62633,16 @@ DO_APP_FUNC(0x02A195C0, void, PlayerInputManager_set_instance, (PlayerInputManag DO_APP_FUNC(0x02A19660, void, PlayerInputManager_EnableJoining, (PlayerInputManager * __this, MethodInfo * method)); DO_APP_FUNC(0x02A19950, void, PlayerInputManager_DisableJoining, (PlayerInputManager * __this, MethodInfo * method)); DO_APP_FUNC(0x02A19A30, void, PlayerInputManager_JoinPlayerFromUI, (PlayerInputManager * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCDC60, PlayerInputManager_JoinPlayerFromUI__MethodInfo); DO_APP_FUNC(0x02A19AA0, void, PlayerInputManager_JoinPlayerFromAction, (PlayerInputManager * __this, InputAction_CallbackContext context, MethodInfo * method)); DO_APP_FUNC(0x02A19B10, void, PlayerInputManager_JoinPlayerFromActionIfNotAlreadyJoined, (PlayerInputManager * __this, InputAction_CallbackContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCDC48, PlayerInputManager_JoinPlayerFromActionIfNotAlreadyJoined__MethodInfo); DO_APP_FUNC(0x02A19CA0, PlayerInput_1 *, PlayerInputManager_JoinPlayer, (PlayerInputManager * __this, int32_t playerIndex, int32_t splitScreenIndex, String * controlScheme, InputDevice * pairWithDevice, MethodInfo * method)); DO_APP_FUNC(0x02A19D60, PlayerInput_1 *, PlayerInputManager_JoinPlayer_1, (PlayerInputManager * __this, int32_t playerIndex, int32_t splitScreenIndex, String * controlScheme, InputDevice__Array * pairWithDevices, MethodInfo * method)); DO_APP_FUNC(0x02A19E20, String__Array *, PlayerInputManager_get_messages, (MethodInfo * method)); DO_APP_FUNC(0x02A19F20, bool, PlayerInputManager_CheckIfPlayerCanJoin, (PlayerInputManager * __this, int32_t playerIndex, MethodInfo * method)); DO_APP_FUNC(0x02A1A2C0, void, PlayerInputManager_OnUnpairedDeviceUsed, (PlayerInputManager * __this, InputControl * control, InputEventPtr eventPtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCDC58, PlayerInputManager_OnUnpairedDeviceUsed__MethodInfo); DO_APP_FUNC(0x02A1A370, void, PlayerInputManager_OnEnable, (PlayerInputManager * __this, MethodInfo * method)); DO_APP_FUNC(0x02A1A9C0, void, PlayerInputManager_OnDisable, (PlayerInputManager * __this, MethodInfo * method)); DO_APP_FUNC(0x02A1AB80, void, PlayerInputManager_UpdateSplitScreen, (PlayerInputManager * __this, MethodInfo * method)); @@ -53699,13 +62653,13 @@ DO_APP_FUNC(0x02A1BAB0, void, PlayerInputManager_NotifyPlayerLeft, (PlayerInputM DO_APP_FUNC(0x02A1BBF0, void, PlayerInputManager__ctor, (PlayerInputManager * __this, MethodInfo * method)); DO_APP_FUNC(0x02A1BC60, void, PlayerInputManager_PlayerJoinedEvent__ctor, (PlayerInputManager_PlayerJoinedEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x02A1BCA0, void, PlayerInputManager_PlayerLeftEvent__ctor, (PlayerInputManager_PlayerLeftEvent * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A1BCE0, void, DynamicBitfield_SetLength, (DynamicBitfield__Boxed * __this, int32_t newLength, MethodInfo * method)); -DO_APP_FUNC(0x02A1BD40, void, DynamicBitfield_SetBit, (DynamicBitfield__Boxed * __this, int32_t bitIndex, MethodInfo * method)); -DO_APP_FUNC(0x02A1BDD0, bool, DynamicBitfield_TestBit, (DynamicBitfield__Boxed * __this, int32_t bitIndex, MethodInfo * method)); -DO_APP_FUNC(0x02A1BE40, void, DynamicBitfield_ClearBit, (DynamicBitfield__Boxed * __this, int32_t bitIndex, MethodInfo * method)); +DO_APP_FUNC(0x02A1BCE0, void, DynamicBitfield_SetLength, (DynamicBitfield * __this, int32_t newLength, MethodInfo * method)); +DO_APP_FUNC(0x02A1BD40, void, DynamicBitfield_SetBit, (DynamicBitfield * __this, int32_t bitIndex, MethodInfo * method)); +DO_APP_FUNC(0x02A1BDD0, bool, DynamicBitfield_TestBit, (DynamicBitfield * __this, int32_t bitIndex, MethodInfo * method)); +DO_APP_FUNC(0x02A1BE40, void, DynamicBitfield_ClearBit, (DynamicBitfield * __this, int32_t bitIndex, MethodInfo * method)); DO_APP_FUNC(0x02A1BED0, int32_t, DynamicBitfield_BitCountToULongCount, (int32_t bitCount, MethodInfo * method)); -DO_APP_FUNC(0x02A1BEE0, FourCC, PoseState_get_format, (PoseState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A1BF40, void, PoseState__ctor, (PoseState__Boxed * __this, bool isTracked, InputTrackingState__Enum trackingState, Vector3 position, Quaternion rotation, Vector3 velocity, Vector3 angularVelocity, MethodInfo * method)); +DO_APP_FUNC(0x02A1BEE0, FourCC, PoseState_get_format, (PoseState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A1BF40, void, PoseState__ctor, (PoseState * __this, bool isTracked, InputTrackingState__Enum trackingState, Vector3 position, Quaternion rotation, Vector3 velocity, Vector3 angularVelocity, MethodInfo * method)); DO_APP_FUNC(0x02A1BF90, void, PoseState__cctor, (MethodInfo * method)); DO_APP_FUNC(0x006BEA60, ButtonControl *, PoseControl_get_isTracked, (PoseControl * __this, MethodInfo * method)); DO_APP_FUNC(0x006BEA70, void, PoseControl_set_isTracked, (PoseControl * __this, ButtonControl * value, MethodInfo * method)); @@ -53765,23 +62719,30 @@ DO_APP_FUNC(0x02A1DF00, void, TrackedPoseDriver_UnbindPosition, (TrackedPoseDriv DO_APP_FUNC(0x02A1E140, void, TrackedPoseDriver_UnbindRotation, (TrackedPoseDriver * __this, MethodInfo * method)); DO_APP_FUNC(0x02A1E380, void, TrackedPoseDriver_UnbindTrackingState, (TrackedPoseDriver * __this, MethodInfo * method)); DO_APP_FUNC(0x02A1E5C0, void, TrackedPoseDriver_OnPositionPerformed, (TrackedPoseDriver * __this, InputAction_CallbackContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCDBE0, TrackedPoseDriver_OnPositionPerformed__MethodInfo); DO_APP_FUNC(0x02A1E620, void, TrackedPoseDriver_OnPositionCanceled, (TrackedPoseDriver * __this, InputAction_CallbackContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCDBE8, TrackedPoseDriver_OnPositionCanceled__MethodInfo); DO_APP_FUNC(0x02A1E670, void, TrackedPoseDriver_OnRotationPerformed, (TrackedPoseDriver * __this, InputAction_CallbackContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCDB78, TrackedPoseDriver_OnRotationPerformed__MethodInfo); DO_APP_FUNC(0x02A1E6D0, void, TrackedPoseDriver_OnRotationCanceled, (TrackedPoseDriver * __this, InputAction_CallbackContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCDB68, TrackedPoseDriver_OnRotationCanceled__MethodInfo); DO_APP_FUNC(0x02A1E720, void, TrackedPoseDriver_OnTrackingStatePerformed, (TrackedPoseDriver * __this, InputAction_CallbackContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCDB48, TrackedPoseDriver_OnTrackingStatePerformed__MethodInfo); DO_APP_FUNC(0x02A1E780, void, TrackedPoseDriver_OnTrackingStateCanceled, (TrackedPoseDriver * __this, InputAction_CallbackContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCDB50, TrackedPoseDriver_OnTrackingStateCanceled__MethodInfo); DO_APP_FUNC(0x02A1E790, void, TrackedPoseDriver_Reset, (TrackedPoseDriver * __this, MethodInfo * method)); DO_APP_FUNC(0x02A1EAD0, void, TrackedPoseDriver_Awake, (TrackedPoseDriver * __this, MethodInfo * method)); DO_APP_FUNC(0x02A1EBC0, void, TrackedPoseDriver_OnEnable, (TrackedPoseDriver * __this, MethodInfo * method)); DO_APP_FUNC(0x02A1EC90, void, TrackedPoseDriver_OnDisable, (TrackedPoseDriver * __this, MethodInfo * method)); DO_APP_FUNC(0x02A1ED60, void, TrackedPoseDriver_OnDestroy, (TrackedPoseDriver * __this, MethodInfo * method)); DO_APP_FUNC(0x02A1EE50, void, TrackedPoseDriver_UpdateCallback, (TrackedPoseDriver * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCDB88, TrackedPoseDriver_UpdateCallback__MethodInfo); DO_APP_FUNC(0x02A1F1A0, void, TrackedPoseDriver_ReadTrackingState, (TrackedPoseDriver * __this, MethodInfo * method)); DO_APP_FUNC(0x02A1F400, void, TrackedPoseDriver_OnUpdate, (TrackedPoseDriver * __this, MethodInfo * method)); DO_APP_FUNC(0x02A1F420, void, TrackedPoseDriver_OnBeforeRender, (TrackedPoseDriver * __this, MethodInfo * method)); DO_APP_FUNC(0x02A1F440, void, TrackedPoseDriver_PerformUpdate, (TrackedPoseDriver * __this, MethodInfo * method)); DO_APP_FUNC(0x02A1F480, void, TrackedPoseDriver_SetLocalTransform, (TrackedPoseDriver * __this, Vector3 newPosition, Quaternion newRotation, MethodInfo * method)); -DO_APP_FUNC(0x02A1F6C0, bool, TrackedPoseDriver_HasStereoCamera, (TrackedPoseDriver * __this, Camera * cameraComponent, MethodInfo * method)); +DO_APP_FUNC(0x02A1F6C0, bool, TrackedPoseDriver_HasStereoCamera, (TrackedPoseDriver * __this, Camera * * cameraComponent, MethodInfo * method)); DO_APP_FUNC(0x02A1F770, InputAction_1 *, TrackedPoseDriver_get_positionAction, (TrackedPoseDriver * __this, MethodInfo * method)); DO_APP_FUNC(0x02A1F780, void, TrackedPoseDriver_set_positionAction, (TrackedPoseDriver * __this, InputAction_1 * value, MethodInfo * method)); DO_APP_FUNC(0x02A1F900, InputAction_1 *, TrackedPoseDriver_get_rotationAction, (TrackedPoseDriver * __this, MethodInfo * method)); @@ -53791,7 +62752,8 @@ DO_APP_FUNC(0x02A1FA90, void, TrackedPoseDriver_UnityEngine_ISerializationCallba DO_APP_FUNC(0x02A1FB50, void, TrackedPoseDriver__ctor, (TrackedPoseDriver * __this, MethodInfo * method)); DO_APP_FUNC(0x02A1FC20, uint32_t, XRLayoutBuilder_GetSizeOfFeature, (XRFeatureDescriptor featureDescriptor, MethodInfo * method)); DO_APP_FUNC(0x02A1FCE0, String *, XRLayoutBuilder_SanitizeString, (String * original, bool allowPaths, MethodInfo * method)); -DO_APP_FUNC(0x02A1FE90, String *, XRLayoutBuilder_OnFindLayoutForDevice, (InputDeviceDescription description, String * matchedLayout, InputDeviceExecuteCommandDelegate * executeCommandDelegate, MethodInfo * method)); +DO_APP_FUNC(0x02A1FE90, String *, XRLayoutBuilder_OnFindLayoutForDevice, (InputDeviceDescription * description, String * matchedLayout, InputDeviceExecuteCommandDelegate * executeCommandDelegate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD8C8, XRLayoutBuilder_OnFindLayoutForDevice__MethodInfo); DO_APP_FUNC(0x02A204C0, String *, XRLayoutBuilder_ConvertPotentialAliasToName, (InputControlLayout * layout, String * nameOrAlias, MethodInfo * method)); DO_APP_FUNC(0x02A20760, bool, XRLayoutBuilder_IsSubControl, (XRLayoutBuilder * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x02A207A0, String *, XRLayoutBuilder_GetParentControlName, (XRLayoutBuilder * __this, String * name, MethodInfo * method)); @@ -53801,29 +62763,30 @@ DO_APP_FUNC(0x003AE050, void, XRLayoutBuilder__ctor, (XRLayoutBuilder * __this, DO_APP_FUNC(0x02A21AA0, void, XRLayoutBuilder__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, XRLayoutBuilder_c_DisplayClass5_0__ctor, (XRLayoutBuilder_c_DisplayClass5_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x02A21E50, InputControlLayout *, XRLayoutBuilder_c_DisplayClass5_0__OnFindLayoutForDevice_b__0, (XRLayoutBuilder_c_DisplayClass5_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCDB18, XRLayoutBuilder_c_DisplayClass5_0__OnFindLayoutForDevice_b__0__MethodInfo); DO_APP_FUNC(0x02A21E70, String *, XRDeviceDescriptor_ToJson, (XRDeviceDescriptor * __this, MethodInfo * method)); DO_APP_FUNC(0x02A21E80, XRDeviceDescriptor *, XRDeviceDescriptor_FromJson, (String * json, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, XRDeviceDescriptor__ctor, (XRDeviceDescriptor * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, uint32_t, Bone_get_parentBoneIndex, (Bone__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00959BA0, void, Bone_set_parentBoneIndex, (Bone__Boxed * __this, uint32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00C16680, Vector3, Bone_get_position, (Bone__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A21EC0, void, Bone_set_position, (Bone__Boxed * __this, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, Quaternion, Bone_get_rotation, (Bone__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018C7DB0, void, Bone_set_rotation, (Bone__Boxed * __this, Quaternion value, MethodInfo * method)); -DO_APP_FUNC(0x0171B0F0, Vector3, Eyes_get_leftEyePosition, (Eyes__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C7A120, void, Eyes_set_leftEyePosition, (Eyes__Boxed * __this, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x01C9A640, Quaternion, Eyes_get_leftEyeRotation, (Eyes__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A21ED0, void, Eyes_set_leftEyeRotation, (Eyes__Boxed * __this, Quaternion value, MethodInfo * method)); -DO_APP_FUNC(0x02283FD0, Vector3, Eyes_get_rightEyePosition, (Eyes__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A21EE0, void, Eyes_set_rightEyePosition, (Eyes__Boxed * __this, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x010F8990, Quaternion, Eyes_get_rightEyeRotation, (Eyes__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B621F0, void, Eyes_set_rightEyeRotation, (Eyes__Boxed * __this, Quaternion value, MethodInfo * method)); -DO_APP_FUNC(0x009E1B90, Vector3, Eyes_get_fixationPoint, (Eyes__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C56BE0, void, Eyes_set_fixationPoint, (Eyes__Boxed * __this, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x01C56BF0, float, Eyes_get_leftEyeOpenAmount, (Eyes__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C56C00, void, Eyes_set_leftEyeOpenAmount, (Eyes__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x01C96CB0, float, Eyes_get_rightEyeOpenAmount, (Eyes__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C96CC0, void, Eyes_set_rightEyeOpenAmount, (Eyes__Boxed * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, uint32_t, Bone_get_parentBoneIndex, (Bone * __this, MethodInfo * method)); +DO_APP_FUNC(0x00959BA0, void, Bone_set_parentBoneIndex, (Bone * __this, uint32_t value, MethodInfo * method)); +DO_APP_FUNC(0x00C16680, Vector3, Bone_get_position, (Bone * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A21EC0, void, Bone_set_position, (Bone * __this, Vector3 value, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, Quaternion, Bone_get_rotation, (Bone * __this, MethodInfo * method)); +DO_APP_FUNC(0x018C7DB0, void, Bone_set_rotation, (Bone * __this, Quaternion value, MethodInfo * method)); +DO_APP_FUNC(0x0171B0F0, Vector3, Eyes_get_leftEyePosition, (Eyes * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C7A120, void, Eyes_set_leftEyePosition, (Eyes * __this, Vector3 value, MethodInfo * method)); +DO_APP_FUNC(0x01C9A640, Quaternion, Eyes_get_leftEyeRotation, (Eyes * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A21ED0, void, Eyes_set_leftEyeRotation, (Eyes * __this, Quaternion value, MethodInfo * method)); +DO_APP_FUNC(0x02283FD0, Vector3, Eyes_get_rightEyePosition, (Eyes * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A21EE0, void, Eyes_set_rightEyePosition, (Eyes * __this, Vector3 value, MethodInfo * method)); +DO_APP_FUNC(0x010F8990, Quaternion, Eyes_get_rightEyeRotation, (Eyes * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B621F0, void, Eyes_set_rightEyeRotation, (Eyes * __this, Quaternion value, MethodInfo * method)); +DO_APP_FUNC(0x009E1B90, Vector3, Eyes_get_fixationPoint, (Eyes * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C56BE0, void, Eyes_set_fixationPoint, (Eyes * __this, Vector3 value, MethodInfo * method)); +DO_APP_FUNC(0x01C56BF0, float, Eyes_get_leftEyeOpenAmount, (Eyes * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C56C00, void, Eyes_set_leftEyeOpenAmount, (Eyes * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x01C96CB0, float, Eyes_get_rightEyeOpenAmount, (Eyes * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C96CC0, void, Eyes_set_rightEyeOpenAmount, (Eyes * __this, float value, MethodInfo * method)); DO_APP_FUNC(0x0059DF80, IntegerControl *, BoneControl_get_parentBoneIndex, (BoneControl * __this, MethodInfo * method)); DO_APP_FUNC(0x0059DF90, void, BoneControl_set_parentBoneIndex, (BoneControl * __this, IntegerControl * value, MethodInfo * method)); DO_APP_FUNC(0x0063B820, Vector3Control *, BoneControl_get_position, (BoneControl * __this, MethodInfo * method)); @@ -53853,37 +62816,39 @@ DO_APP_FUNC(0x02A22730, Eyes, EyesControl_ReadUnprocessedValueFromState, (EyesCo DO_APP_FUNC(0x02A228C0, void, EyesControl_WriteValueIntoState, (EyesControl * __this, Eyes value, Void * statePtr, MethodInfo * method)); DO_APP_FUNC(0x02A22A50, void, EyesControl__ctor, (EyesControl * __this, MethodInfo * method)); DO_APP_FUNC(0x02A22AD0, void, XRSupport_Initialize, (MethodInfo * method)); -DO_APP_FUNC(0x0171B0F0, HapticCapabilities, BufferedRumble_get_capabilities, (BufferedRumble__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C7A120, void, BufferedRumble_set_capabilities, (BufferedRumble__Boxed * __this, HapticCapabilities value, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, InputDevice *, BufferedRumble_get_device, (BufferedRumble__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCBE0, void, BufferedRumble_set_device, (BufferedRumble__Boxed * __this, InputDevice * value, MethodInfo * method)); -DO_APP_FUNC(0x02A24560, void, BufferedRumble__ctor, (BufferedRumble__Boxed * __this, InputDevice * device, MethodInfo * method)); -DO_APP_FUNC(0x02A246B0, void, BufferedRumble_EnqueueRumble, (BufferedRumble__Boxed * __this, Byte__Array * samples, MethodInfo * method)); -DO_APP_FUNC(0x00977B80, void, HapticState__ctor, (HapticState__Boxed * __this, uint32_t samplesQueued, uint32_t samplesAvailable, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, uint32_t, HapticState_get_samplesQueued, (HapticState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00959BA0, void, HapticState_set_samplesQueued, (HapticState__Boxed * __this, uint32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00C173E0, uint32_t, HapticState_get_samplesAvailable, (HapticState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018C6CA0, void, HapticState_set_samplesAvailable, (HapticState__Boxed * __this, uint32_t value, MethodInfo * method)); +DO_APP_FUNC(0x0171B0F0, HapticCapabilities, BufferedRumble_get_capabilities, (BufferedRumble * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C7A120, void, BufferedRumble_set_capabilities, (BufferedRumble * __this, HapticCapabilities value, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, InputDevice *, BufferedRumble_get_device, (BufferedRumble * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCBE0, void, BufferedRumble_set_device, (BufferedRumble * __this, InputDevice * value, MethodInfo * method)); +DO_APP_FUNC(0x02A24560, void, BufferedRumble__ctor, (BufferedRumble * __this, InputDevice * device, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD870, BufferedRumble__ctor__MethodInfo); +DO_APP_FUNC(0x02A246B0, void, BufferedRumble_EnqueueRumble, (BufferedRumble * __this, Byte__Array * samples, MethodInfo * method)); +DO_APP_FUNC(0x00977B80, void, HapticState__ctor, (HapticState * __this, uint32_t samplesQueued, uint32_t samplesAvailable, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, uint32_t, HapticState_get_samplesQueued, (HapticState * __this, MethodInfo * method)); +DO_APP_FUNC(0x00959BA0, void, HapticState_set_samplesQueued, (HapticState * __this, uint32_t value, MethodInfo * method)); +DO_APP_FUNC(0x00C173E0, uint32_t, HapticState_get_samplesAvailable, (HapticState * __this, MethodInfo * method)); +DO_APP_FUNC(0x018C6CA0, void, HapticState_set_samplesAvailable, (HapticState * __this, uint32_t value, MethodInfo * method)); DO_APP_FUNC(0x02A248F0, FourCC, GetCurrentHapticStateCommand_get_Type, (MethodInfo * method)); -DO_APP_FUNC(0x02A248F0, FourCC, GetCurrentHapticStateCommand_get_typeStatic, (GetCurrentHapticStateCommand__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A24900, HapticState, GetCurrentHapticStateCommand_get_currentState, (GetCurrentHapticStateCommand__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A248F0, FourCC, GetCurrentHapticStateCommand_get_typeStatic, (GetCurrentHapticStateCommand * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A24900, HapticState, GetCurrentHapticStateCommand_get_currentState, (GetCurrentHapticStateCommand * __this, MethodInfo * method)); DO_APP_FUNC(0x02A24920, GetCurrentHapticStateCommand, GetCurrentHapticStateCommand_Create, (MethodInfo * method)); -DO_APP_FUNC(0x00977060, void, HapticCapabilities__ctor, (HapticCapabilities__Boxed * __this, uint32_t numChannels, uint32_t frequencyHz, uint32_t maxBufferSize, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, uint32_t, HapticCapabilities_get_numChannels, (HapticCapabilities__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00959BA0, void, HapticCapabilities_set_numChannels, (HapticCapabilities__Boxed * __this, uint32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00C173E0, uint32_t, HapticCapabilities_get_frequencyHz, (HapticCapabilities__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018C6CA0, void, HapticCapabilities_set_frequencyHz, (HapticCapabilities__Boxed * __this, uint32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00471920, uint32_t, HapticCapabilities_get_maxBufferSize, (HapticCapabilities__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018C6CC0, void, HapticCapabilities_set_maxBufferSize, (HapticCapabilities__Boxed * __this, uint32_t value, MethodInfo * method)); +DO_APP_FUNC(0x00977060, void, HapticCapabilities__ctor, (HapticCapabilities * __this, uint32_t numChannels, uint32_t frequencyHz, uint32_t maxBufferSize, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, uint32_t, HapticCapabilities_get_numChannels, (HapticCapabilities * __this, MethodInfo * method)); +DO_APP_FUNC(0x00959BA0, void, HapticCapabilities_set_numChannels, (HapticCapabilities * __this, uint32_t value, MethodInfo * method)); +DO_APP_FUNC(0x00C173E0, uint32_t, HapticCapabilities_get_frequencyHz, (HapticCapabilities * __this, MethodInfo * method)); +DO_APP_FUNC(0x018C6CA0, void, HapticCapabilities_set_frequencyHz, (HapticCapabilities * __this, uint32_t value, MethodInfo * method)); +DO_APP_FUNC(0x00471920, uint32_t, HapticCapabilities_get_maxBufferSize, (HapticCapabilities * __this, MethodInfo * method)); +DO_APP_FUNC(0x018C6CC0, void, HapticCapabilities_set_maxBufferSize, (HapticCapabilities * __this, uint32_t value, MethodInfo * method)); DO_APP_FUNC(0x02A24950, FourCC, GetHapticCapabilitiesCommand_get_Type, (MethodInfo * method)); -DO_APP_FUNC(0x02A24950, FourCC, GetHapticCapabilitiesCommand_get_typeStatic, (GetHapticCapabilitiesCommand__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A24960, HapticCapabilities, GetHapticCapabilitiesCommand_get_capabilities, (GetHapticCapabilitiesCommand__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A24950, FourCC, GetHapticCapabilitiesCommand_get_typeStatic, (GetHapticCapabilitiesCommand * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A24960, HapticCapabilities, GetHapticCapabilitiesCommand_get_capabilities, (GetHapticCapabilitiesCommand * __this, MethodInfo * method)); DO_APP_FUNC(0x02A24980, GetHapticCapabilitiesCommand, GetHapticCapabilitiesCommand_Create, (MethodInfo * method)); DO_APP_FUNC(0x02A249B0, FourCC, SendBufferedHapticCommand_get_Type, (MethodInfo * method)); -DO_APP_FUNC(0x02A249B0, FourCC, SendBufferedHapticCommand_get_typeStatic, (SendBufferedHapticCommand__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A249B0, FourCC, SendBufferedHapticCommand_get_typeStatic, (SendBufferedHapticCommand * __this, MethodInfo * method)); DO_APP_FUNC(0x02A249C0, SendBufferedHapticCommand, SendBufferedHapticCommand_Create, (Byte__Array * rumbleBuffer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD850, SendBufferedHapticCommand_Create__MethodInfo); DO_APP_FUNC(0x02A24B60, FourCC, SendHapticImpulseCommand_get_Type, (MethodInfo * method)); -DO_APP_FUNC(0x02A24B60, FourCC, SendHapticImpulseCommand_get_typeStatic, (SendHapticImpulseCommand__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A24B60, FourCC, SendHapticImpulseCommand_get_typeStatic, (SendHapticImpulseCommand * __this, MethodInfo * method)); DO_APP_FUNC(0x02A24B70, SendHapticImpulseCommand, SendHapticImpulseCommand_Create, (int32_t motorChannel, float motorAmplitude, float motorDuration, MethodInfo * method)); DO_APP_FUNC(0x018BC6B0, ButtonControl *, XInputController_get_menu, (XInputController * __this, MethodInfo * method)); DO_APP_FUNC(0x018BC6C0, void, XInputController_set_menu, (XInputController * __this, ButtonControl * value, MethodInfo * method)); @@ -53896,50 +62861,64 @@ DO_APP_FUNC(0x02A24D00, void, XInputController_ParseCapabilities, (XInputControl DO_APP_FUNC(0x018BD410, void, XInputController__ctor, (XInputController * __this, MethodInfo * method)); DO_APP_FUNC(0x018BD410, void, XInputControllerWindows__ctor, (XInputControllerWindows * __this, MethodInfo * method)); DO_APP_FUNC(0x02A24EA0, void, XInputSupport_Initialize, (MethodInfo * method)); -DO_APP_FUNC(0x02A25010, FourCC, XInputControllerWindowsState_get_format, (XInputControllerWindowsState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A25020, XInputControllerWindowsState, XInputControllerWindowsState_WithButton, (XInputControllerWindowsState__Boxed * __this, XInputControllerWindowsState_Button__Enum button, MethodInfo * method)); -DO_APP_FUNC(0x02A25050, bool, InputUser_get_valid, (InputUser__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A250E0, int32_t, InputUser_get_index, (InputUser__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, uint32_t, InputUser_get_id, (InputUser__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A25250, Nullable_1_UnityEngine_InputSystem_Users_InputUserAccountHandle_, InputUser_get_platformUserAccountHandle, (InputUser__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A252F0, String *, InputUser_get_platformUserAccountName, (InputUser__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A25370, String *, InputUser_get_platformUserAccountId, (InputUser__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A253F0, ReadOnlyArray_1_UnityEngine_InputSystem_InputDevice_, InputUser_get_pairedDevices, (InputUser__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A25500, ReadOnlyArray_1_UnityEngine_InputSystem_InputDevice_, InputUser_get_lostDevices, (InputUser__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A25620, IInputActionCollection *, InputUser_get_actions, (InputUser__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A256A0, Nullable_1_UnityEngine_InputSystem_InputControlScheme_, InputUser_get_controlScheme, (InputUser__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A25740, InputControlScheme_MatchResult, InputUser_get_controlSchemeMatch, (InputUser__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A25800, bool, InputUser_get_hasMissingRequiredDevices, (InputUser__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A25010, FourCC, XInputControllerWindowsState_get_format, (XInputControllerWindowsState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A25020, XInputControllerWindowsState, XInputControllerWindowsState_WithButton, (XInputControllerWindowsState * __this, XInputControllerWindowsState_Button__Enum button, MethodInfo * method)); +DO_APP_FUNC(0x02A25050, bool, InputUser_get_valid, (InputUser * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A250E0, int32_t, InputUser_get_index, (InputUser * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD8B0, InputUser_get_index__MethodInfo); +DO_APP_FUNC(0x00A9EFB0, uint32_t, InputUser_get_id, (InputUser * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A25250, Nullable_1_UnityEngine_InputSystem_Users_InputUserAccountHandle_, InputUser_get_platformUserAccountHandle, (InputUser * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A252F0, String *, InputUser_get_platformUserAccountName, (InputUser * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A25370, String *, InputUser_get_platformUserAccountId, (InputUser * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A253F0, ReadOnlyArray_1_UnityEngine_InputSystem_InputDevice_, InputUser_get_pairedDevices, (InputUser * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A25500, ReadOnlyArray_1_UnityEngine_InputSystem_InputDevice_, InputUser_get_lostDevices, (InputUser * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A25620, IInputActionCollection *, InputUser_get_actions, (InputUser * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A256A0, Nullable_1_UnityEngine_InputSystem_InputControlScheme_, InputUser_get_controlScheme, (InputUser * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A25740, InputControlScheme_MatchResult, InputUser_get_controlSchemeMatch, (InputUser * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A25800, bool, InputUser_get_hasMissingRequiredDevices, (InputUser * __this, MethodInfo * method)); DO_APP_FUNC(0x02A25880, ReadOnlyArray_1_UnityEngine_InputSystem_Users_InputUser_, InputUser_get_all, (MethodInfo * method)); DO_APP_FUNC(0x02A25940, void, InputUser_add_onChange, (Action_3_UnityEngine_InputSystem_Users_InputUser_UnityEngine_InputSystem_Users_InputUserChange_UnityEngine_InputSystem_InputDevice_ * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD830, InputUser_add_onChange__MethodInfo); DO_APP_FUNC(0x02A25A00, void, InputUser_remove_onChange, (Action_3_UnityEngine_InputSystem_Users_InputUser_UnityEngine_InputSystem_Users_InputUserChange_UnityEngine_InputSystem_InputDevice_ * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD840, InputUser_remove_onChange__MethodInfo); DO_APP_FUNC(0x02A25AC0, void, InputUser_add_onUnpairedDeviceUsed, (Action_2_UnityEngine_InputSystem_InputControl_UnityEngine_InputSystem_LowLevel_InputEventPtr_ * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD810, InputUser_add_onUnpairedDeviceUsed__MethodInfo); DO_APP_FUNC(0x02A25BA0, void, InputUser_remove_onUnpairedDeviceUsed, (Action_2_UnityEngine_InputSystem_InputControl_UnityEngine_InputSystem_LowLevel_InputEventPtr_ * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD820, InputUser_remove_onUnpairedDeviceUsed__MethodInfo); DO_APP_FUNC(0x02A25C90, void, InputUser_add_onPrefilterUnpairedDeviceActivity, (Func_3_UnityEngine_InputSystem_InputDevice_UnityEngine_InputSystem_LowLevel_InputEventPtr_Boolean_ * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD7B0, InputUser_add_onPrefilterUnpairedDeviceActivity__MethodInfo); DO_APP_FUNC(0x02A25D50, void, InputUser_remove_onPrefilterUnpairedDeviceActivity, (Func_3_UnityEngine_InputSystem_InputDevice_UnityEngine_InputSystem_LowLevel_InputEventPtr_Boolean_ * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD7C0, InputUser_remove_onPrefilterUnpairedDeviceActivity__MethodInfo); DO_APP_FUNC(0x02A25E10, int32_t, InputUser_get_listenForUnpairedDeviceActivity, (MethodInfo * method)); DO_APP_FUNC(0x02A25E50, void, InputUser_set_listenForUnpairedDeviceActivity, (int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x02A25F50, String *, InputUser_ToString, (InputUser__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A262E0, void, InputUser_AssociateActionsWithUser, (InputUser__Boxed * __this, IInputActionCollection * actions, MethodInfo * method)); -DO_APP_FUNC(0x02A267E0, InputUser_ControlSchemeChangeSyntax, InputUser_ActivateControlScheme, (InputUser__Boxed * __this, String * schemeName, MethodInfo * method)); -DO_APP_FUNC(0x02A26860, bool, InputUser_TryFindControlScheme, (InputUser__Boxed * __this, String * schemeName, InputControlScheme scheme, MethodInfo * method)); -DO_APP_FUNC(0x02A26BF0, void, InputUser_FindControlScheme, (InputUser__Boxed * __this, String * schemeName, InputControlScheme scheme, MethodInfo * method)); -DO_APP_FUNC(0x02A26CD0, InputUser_ControlSchemeChangeSyntax, InputUser_ActivateControlScheme_1, (InputUser__Boxed * __this, InputControlScheme scheme, MethodInfo * method)); -DO_APP_FUNC(0x02A26E90, void, InputUser_ActivateControlSchemeInternal, (InputUser__Boxed * __this, int32_t userIndex, InputControlScheme scheme, MethodInfo * method)); -DO_APP_FUNC(0x02A273C0, void, InputUser_UnpairDevice, (InputUser__Boxed * __this, InputDevice * device, MethodInfo * method)); -DO_APP_FUNC(0x02A274C0, void, InputUser_UnpairDevices, (InputUser__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD790, InputUser_set_listenForUnpairedDeviceActivity__MethodInfo); +DO_APP_FUNC(0x02A25F50, String *, InputUser_ToString, (InputUser * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A262E0, void, InputUser_AssociateActionsWithUser, (InputUser * __this, IInputActionCollection * actions, MethodInfo * method)); +DO_APP_FUNC(0x02A267E0, InputUser_ControlSchemeChangeSyntax, InputUser_ActivateControlScheme, (InputUser * __this, String * schemeName, MethodInfo * method)); +DO_APP_FUNC(0x02A26860, bool, InputUser_TryFindControlScheme, (InputUser * __this, String * schemeName, InputControlScheme * scheme, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD7F0, InputUser_TryFindControlScheme__MethodInfo); +DO_APP_FUNC(0x02A26BF0, void, InputUser_FindControlScheme, (InputUser * __this, String * schemeName, InputControlScheme * scheme, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD7D0, InputUser_FindControlScheme__MethodInfo); +DO_APP_FUNC(0x02A26CD0, InputUser_ControlSchemeChangeSyntax, InputUser_ActivateControlScheme_1, (InputUser * __this, InputControlScheme scheme, MethodInfo * method)); +DO_APP_FUNC(0x02A26E90, void, InputUser_ActivateControlSchemeInternal, (InputUser * __this, int32_t userIndex, InputControlScheme scheme, MethodInfo * method)); +DO_APP_FUNC(0x02A273C0, void, InputUser_UnpairDevice, (InputUser * __this, InputDevice * device, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD750, InputUser_UnpairDevice__MethodInfo); +DO_APP_FUNC(0x02A274C0, void, InputUser_UnpairDevices, (InputUser * __this, MethodInfo * method)); DO_APP_FUNC(0x02A277E0, void, InputUser_RemoveLostDevicesForUser, (int32_t userIndex, MethodInfo * method)); -DO_APP_FUNC(0x02A27990, void, InputUser_UnpairDevicesAndRemoveUser, (InputUser__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A27990, void, InputUser_UnpairDevicesAndRemoveUser, (InputUser * __this, MethodInfo * method)); DO_APP_FUNC(0x02A279C0, InputControlList_1_InputDevice_, InputUser_GetUnpairedInputDevices, (MethodInfo * method)); -DO_APP_FUNC(0x02A27A20, int32_t, InputUser_GetUnpairedInputDevices_1, (InputControlList_1_InputDevice_ list, MethodInfo * method)); +DO_APP_FUNC(0x02A27A20, int32_t, InputUser_GetUnpairedInputDevices_1, (InputControlList_1_InputDevice_ * list, MethodInfo * method)); DO_APP_FUNC(0x02A27D20, Nullable_1_UnityEngine_InputSystem_Users_InputUser_, InputUser_FindUserPairedToDevice, (InputDevice * device, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD740, InputUser_FindUserPairedToDevice__MethodInfo); DO_APP_FUNC(0x02A27F00, Nullable_1_UnityEngine_InputSystem_Users_InputUser_, InputUser_FindUserByAccount, (InputUserAccountHandle platformUserAccountHandle, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD780, InputUser_FindUserByAccount__MethodInfo); DO_APP_FUNC(0x02A28140, InputUser, InputUser_CreateUserWithoutPairedDevices, (MethodInfo * method)); DO_APP_FUNC(0x02A281A0, InputUser, InputUser_PerformPairingWithDevice, (InputDevice * device, InputUser user, InputUserPairingOptions__Enum options, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD768, InputUser_PerformPairingWithDevice__MethodInfo); DO_APP_FUNC(0x02A283D0, bool, InputUser_InitiateUserAccountSelection, (int32_t userIndex, InputDevice * device, InputUserPairingOptions__Enum options, MethodInfo * method)); -DO_APP_FUNC(0x00C0F590, bool, InputUser_Equals, (InputUser__Boxed * __this, InputUser other, MethodInfo * method)); -DO_APP_FUNC(0x02A28630, bool, InputUser_Equals_1, (InputUser__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, InputUser_GetHashCode, (InputUser__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C0F590, bool, InputUser_Equals, (InputUser * __this, InputUser other, MethodInfo * method)); +DO_APP_FUNC(0x02A28630, bool, InputUser_Equals_1, (InputUser * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, InputUser_GetHashCode, (InputUser * __this, MethodInfo * method)); DO_APP_FUNC(0x00AFE200, bool, InputUser_op_Equality, (InputUser left, InputUser right, MethodInfo * method)); DO_APP_FUNC(0x00AEE320, bool, InputUser_op_Inequality, (InputUser left, InputUser right, MethodInfo * method)); DO_APP_FUNC(0x02A286C0, int32_t, InputUser_AddUser, (MethodInfo * method)); @@ -53952,12 +62931,16 @@ DO_APP_FUNC(0x02A293E0, void, InputUser_AddDeviceToUser, (int32_t userIndex, Inp DO_APP_FUNC(0x02A29920, void, InputUser_RemoveDeviceFromUser, (int32_t userIndex, InputDevice * device, bool asLostDevice, MethodInfo * method)); DO_APP_FUNC(0x02A2A000, void, InputUser_UpdateControlSchemeMatch, (int32_t userIndex, bool autoPairMissing, MethodInfo * method)); DO_APP_FUNC(0x02A2A960, int64_t, InputUser_UpdatePlatformUserAccount, (int32_t userIndex, InputDevice * device, MethodInfo * method)); -DO_APP_FUNC(0x02A2B070, int64_t, InputUser_QueryPairedPlatformUserAccount, (InputDevice * device, Nullable_1_UnityEngine_InputSystem_Users_InputUserAccountHandle_ platformAccountHandle, String * platformAccountName, String * platformAccountId, MethodInfo * method)); +DO_APP_FUNC(0x02A2B070, int64_t, InputUser_QueryPairedPlatformUserAccount, (InputDevice * device, Nullable_1_UnityEngine_InputSystem_Users_InputUserAccountHandle_ * platformAccountHandle, String * * platformAccountName, String * * platformAccountId, MethodInfo * method)); DO_APP_FUNC(0x02A2B610, bool, InputUser_InitiateUserAccountSelectionAtPlatformLevel, (InputDevice * device, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD698, InputUser_InitiateUserAccountSelectionAtPlatformLevel__MethodInfo); DO_APP_FUNC(0x02A2B6E0, void, InputUser_OnActionChange, (Object * obj, InputActionChange__Enum change, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD638, InputUser_OnActionChange__MethodInfo); DO_APP_FUNC(0x02A2B810, void, InputUser_OnDeviceChange, (InputDevice * device, InputDeviceChange__Enum change, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD640, InputUser_OnDeviceChange__MethodInfo); DO_APP_FUNC(0x02A2BEA0, int32_t, InputUser_FindLostDevice, (InputDevice * device, int32_t startIndex, MethodInfo * method)); DO_APP_FUNC(0x02A2BF50, void, InputUser_OnEvent, (InputEventPtr eventPtr, InputDevice * device, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD630, InputUser_OnEvent__MethodInfo); DO_APP_FUNC(0x02A2C460, ISavedState *, InputUser_SaveAndResetState, (MethodInfo * method)); DO_APP_FUNC(0x02A2CAA0, void, InputUser_HookIntoActionChange, (MethodInfo * method)); DO_APP_FUNC(0x02A2CC80, void, InputUser_UnhookFromActionChange, (MethodInfo * method)); @@ -53967,22 +62950,25 @@ DO_APP_FUNC(0x02A2CFE0, void, InputUser_HookIntoEvents, (MethodInfo * method)); DO_APP_FUNC(0x02A2D160, void, InputUser_UnhookFromDeviceStateChange, (MethodInfo * method)); DO_APP_FUNC(0x02A2D200, void, InputUser_DisposeAndResetGlobalState, (MethodInfo * method)); DO_APP_FUNC(0x02A2D360, void, InputUser_ResetGlobals, (MethodInfo * method)); -DO_APP_FUNC(0x02A2D430, InputUser_ControlSchemeChangeSyntax, InputUser_ControlSchemeChangeSyntax_AndPairRemainingDevices, (InputUser_ControlSchemeChangeSyntax__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A2D450, int32_t, InputUser_CompareDevicesByUserAccount_Compare, (InputUser_CompareDevicesByUserAccount__Boxed * __this, InputDevice * x, InputDevice * y, MethodInfo * method)); +DO_APP_FUNC(0x02A2D430, InputUser_ControlSchemeChangeSyntax, InputUser_ControlSchemeChangeSyntax_AndPairRemainingDevices, (InputUser_ControlSchemeChangeSyntax * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A2D450, int32_t, InputUser_CompareDevicesByUserAccount_Compare, (InputUser_CompareDevicesByUserAccount * __this, InputDevice * x, InputDevice * y, MethodInfo * method)); DO_APP_FUNC(0x0121A100, Nullable_1_UnityEngine_InputSystem_Users_InputUserAccountHandle_, InputUser_CompareDevicesByUserAccount_GetUserAccountHandleForDevice, (InputDevice * device, MethodInfo * method)); DO_APP_FUNC(0x02A2D5C0, void, InputUser_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InputUser_c__ctor, (InputUser_c * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A2D670, void, InputUser_c__SaveAndResetState_b__86_0, (InputUser_c * __this, InputUser_GlobalState state, MethodInfo * method)); +DO_APP_FUNC(0x02A2D670, void, InputUser_c__SaveAndResetState_b__86_0, (InputUser_c * __this, InputUser_GlobalState * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD5D8, InputUser_c__SaveAndResetState_b__86_0__MethodInfo); DO_APP_FUNC(0x02A2D840, void, InputUser_c__SaveAndResetState_b__86_1, (InputUser_c * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, String *, InputUserAccountHandle_get_apiName, (InputUserAccountHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, uint64_t, InputUserAccountHandle_get_handle, (InputUserAccountHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A2D850, void, InputUserAccountHandle__ctor, (InputUserAccountHandle__Boxed * __this, String * apiName, uint64_t handle, MethodInfo * method)); -DO_APP_FUNC(0x02A2D920, String *, InputUserAccountHandle_ToString, (InputUserAccountHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A2DA40, bool, InputUserAccountHandle_Equals, (InputUserAccountHandle__Boxed * __this, InputUserAccountHandle other, MethodInfo * method)); -DO_APP_FUNC(0x02A2DB40, bool, InputUserAccountHandle_Equals_1, (InputUserAccountHandle__Boxed * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD5F0, InputUser_c__SaveAndResetState_b__86_1__MethodInfo); +DO_APP_FUNC(0x00471910, String *, InputUserAccountHandle_get_apiName, (InputUserAccountHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, uint64_t, InputUserAccountHandle_get_handle, (InputUserAccountHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A2D850, void, InputUserAccountHandle__ctor, (InputUserAccountHandle * __this, String * apiName, uint64_t handle, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF668, InputUserAccountHandle__ctor__MethodInfo); +DO_APP_FUNC(0x02A2D920, String *, InputUserAccountHandle_ToString, (InputUserAccountHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A2DA40, bool, InputUserAccountHandle_Equals, (InputUserAccountHandle * __this, InputUserAccountHandle other, MethodInfo * method)); +DO_APP_FUNC(0x02A2DB40, bool, InputUserAccountHandle_Equals_1, (InputUserAccountHandle * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x02A2DBE0, bool, InputUserAccountHandle_op_Equality, (InputUserAccountHandle left, InputUserAccountHandle right, MethodInfo * method)); DO_APP_FUNC(0x02A2DC00, bool, InputUserAccountHandle_op_Inequality, (InputUserAccountHandle left, InputUserAccountHandle right, MethodInfo * method)); -DO_APP_FUNC(0x02A2DC20, int32_t, InputUserAccountHandle_GetHashCode, (InputUserAccountHandle__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A2DC20, int32_t, InputUserAccountHandle_GetHashCode, (InputUserAccountHandle * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, String *, InputUserSettings_get_customBindings, (InputUserSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, InputUserSettings_set_customBindings, (InputUserSettings * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x003BCC40, bool, InputUserSettings_get_invertMouseX, (InputUserSettings * __this, MethodInfo * method)); @@ -54046,14 +63032,15 @@ DO_APP_FUNC(0x02A2EF80, void, InputSystemUIInputModule_ActivateModule, (InputSys DO_APP_FUNC(0x02A2F0E0, bool, InputSystemUIInputModule_IsPointerOverGameObject, (InputSystemUIInputModule * __this, int32_t pointerOrTouchId, MethodInfo * method)); DO_APP_FUNC(0x02A2F3B0, RaycastResult, InputSystemUIInputModule_GetLastRaycastResult, (InputSystemUIInputModule * __this, int32_t pointerOrTouchId, MethodInfo * method)); DO_APP_FUNC(0x02A2F500, RaycastResult, InputSystemUIInputModule_PerformRaycast, (InputSystemUIInputModule * __this, ExtendedPointerEventData * eventData, MethodInfo * method)); -DO_APP_FUNC(0x02A2F890, void, InputSystemUIInputModule_ProcessPointer, (InputSystemUIInputModule * __this, PointerModel state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF648, InputSystemUIInputModule_PerformRaycast__MethodInfo); +DO_APP_FUNC(0x02A2F890, void, InputSystemUIInputModule_ProcessPointer, (InputSystemUIInputModule * __this, PointerModel * state, MethodInfo * method)); DO_APP_FUNC(0x02A2FF20, bool, InputSystemUIInputModule_PointerShouldIgnoreTransform, (InputSystemUIInputModule * __this, Transform * t, MethodInfo * method)); -DO_APP_FUNC(0x02A30100, void, InputSystemUIInputModule_ProcessPointerMovement, (InputSystemUIInputModule * __this, PointerModel pointer, ExtendedPointerEventData * eventData, MethodInfo * method)); +DO_APP_FUNC(0x02A30100, void, InputSystemUIInputModule_ProcessPointerMovement, (InputSystemUIInputModule * __this, PointerModel * pointer, ExtendedPointerEventData * eventData, MethodInfo * method)); DO_APP_FUNC(0x02A30160, void, InputSystemUIInputModule_ProcessPointerMovement_1, (InputSystemUIInputModule * __this, ExtendedPointerEventData * eventData, GameObject * currentPointerTarget, MethodInfo * method)); -DO_APP_FUNC(0x02A310E0, void, InputSystemUIInputModule_ProcessPointerButton, (InputSystemUIInputModule * __this, PointerModel_ButtonState button, PointerEventData * eventData, MethodInfo * method)); -DO_APP_FUNC(0x02A32050, void, InputSystemUIInputModule_ProcessPointerButtonDrag, (InputSystemUIInputModule * __this, PointerModel_ButtonState button, ExtendedPointerEventData * eventData, MethodInfo * method)); -DO_APP_FUNC(0x02A324F0, void, InputSystemUIInputModule_ProcessPointerScroll, (PointerModel pointer, PointerEventData * eventData, MethodInfo * method)); -DO_APP_FUNC(0x02A325F0, void, InputSystemUIInputModule_ProcessNavigation, (InputSystemUIInputModule * __this, NavigationModel navigationState, MethodInfo * method)); +DO_APP_FUNC(0x02A310E0, void, InputSystemUIInputModule_ProcessPointerButton, (InputSystemUIInputModule * __this, PointerModel_ButtonState * button, PointerEventData * eventData, MethodInfo * method)); +DO_APP_FUNC(0x02A32050, void, InputSystemUIInputModule_ProcessPointerButtonDrag, (InputSystemUIInputModule * __this, PointerModel_ButtonState * button, ExtendedPointerEventData * eventData, MethodInfo * method)); +DO_APP_FUNC(0x02A324F0, void, InputSystemUIInputModule_ProcessPointerScroll, (PointerModel * pointer, PointerEventData * eventData, MethodInfo * method)); +DO_APP_FUNC(0x02A325F0, void, InputSystemUIInputModule_ProcessNavigation, (InputSystemUIInputModule * __this, NavigationModel * navigationState, MethodInfo * method)); DO_APP_FUNC(0x02A32CB0, bool, InputSystemUIInputModule_IsMoveAllowed, (InputSystemUIInputModule * __this, AxisEventData * eventData, MethodInfo * method)); DO_APP_FUNC(0x00C50D10, float, InputSystemUIInputModule_get_moveRepeatDelay, (InputSystemUIInputModule * __this, MethodInfo * method)); DO_APP_FUNC(0x01D31F90, void, InputSystemUIInputModule_set_moveRepeatDelay, (InputSystemUIInputModule * __this, float value, MethodInfo * method)); @@ -54069,7 +63056,7 @@ DO_APP_FUNC(0x003C91B0, Transform *, InputSystemUIInputModule_get_xrTrackingOrig DO_APP_FUNC(0x0042F6D0, void, InputSystemUIInputModule_set_xrTrackingOrigin, (InputSystemUIInputModule * __this, Transform * value, MethodInfo * method)); DO_APP_FUNC(0x00A79C40, float, InputSystemUIInputModule_get_trackedDeviceDragThresholdMultiplier, (InputSystemUIInputModule * __this, MethodInfo * method)); DO_APP_FUNC(0x00A79C50, void, InputSystemUIInputModule_set_trackedDeviceDragThresholdMultiplier, (InputSystemUIInputModule * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02A33240, void, InputSystemUIInputModule_SwapAction, (InputSystemUIInputModule * __this, InputActionReference * property, InputActionReference * newValue, bool actionsHooked, Action_1_UnityEngine_InputSystem_InputAction_CallbackContext_ * actionCallback, MethodInfo * method)); +DO_APP_FUNC(0x02A33240, void, InputSystemUIInputModule_SwapAction, (InputSystemUIInputModule * __this, InputActionReference * * property, InputActionReference * newValue, bool actionsHooked, Action_1_UnityEngine_InputSystem_InputAction_CallbackContext_ * actionCallback, MethodInfo * method)); DO_APP_FUNC(0x003C91D0, InputActionReference *, InputSystemUIInputModule_get_point, (InputSystemUIInputModule * __this, MethodInfo * method)); DO_APP_FUNC(0x02A33870, void, InputSystemUIInputModule_set_point, (InputSystemUIInputModule * __this, InputActionReference * value, MethodInfo * method)); DO_APP_FUNC(0x003C1700, InputActionReference *, InputSystemUIInputModule_get_scrollWheel, (InputSystemUIInputModule * __this, MethodInfo * method)); @@ -54093,7 +63080,9 @@ DO_APP_FUNC(0x02A33A90, void, InputSystemUIInputModule_set_trackedDevicePosition DO_APP_FUNC(0x02A33AD0, void, InputSystemUIInputModule_AssignDefaultActions, (InputSystemUIInputModule * __this, MethodInfo * method)); DO_APP_FUNC(0x02A34440, void, InputSystemUIInputModule_UnassignActions, (InputSystemUIInputModule * __this, MethodInfo * method)); DO_APP_FUNC(0x02A34600, InputActionReference *, InputSystemUIInputModule_get_trackedDeviceSelect, (InputSystemUIInputModule * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF5D0, InputSystemUIInputModule_get_trackedDeviceSelect__MethodInfo); DO_APP_FUNC(0x02A34650, void, InputSystemUIInputModule_set_trackedDeviceSelect, (InputSystemUIInputModule * __this, InputActionReference * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF5E0, InputSystemUIInputModule_set_trackedDeviceSelect__MethodInfo); DO_APP_FUNC(0x02A346A0, void, InputSystemUIInputModule_Awake, (InputSystemUIInputModule * __this, MethodInfo * method)); DO_APP_FUNC(0x02A34700, void, InputSystemUIInputModule_OnDestroy, (InputSystemUIInputModule * __this, MethodInfo * method)); DO_APP_FUNC(0x02A34720, void, InputSystemUIInputModule_OnEnable, (InputSystemUIInputModule * __this, MethodInfo * method)); @@ -54105,9 +63094,9 @@ DO_APP_FUNC(0x02A35070, void, InputSystemUIInputModule_DisableAllActions, (Input DO_APP_FUNC(0x02A35150, void, InputSystemUIInputModule_EnableInputAction, (InputSystemUIInputModule * __this, InputActionReference * inputActionReference, MethodInfo * method)); DO_APP_FUNC(0x02A35340, void, InputSystemUIInputModule_TryDisableInputAction, (InputSystemUIInputModule * __this, InputActionReference * inputActionReference, bool isComponentDisabling, MethodInfo * method)); DO_APP_FUNC(0x02A355A0, int32_t, InputSystemUIInputModule_GetPointerStateIndexFor, (InputSystemUIInputModule * __this, int32_t pointerOrTouchId, MethodInfo * method)); -DO_APP_FUNC(0x02A35770, PointerModel, InputSystemUIInputModule_GetPointerStateForIndex, (InputSystemUIInputModule * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x02A35770, PointerModel *, InputSystemUIInputModule_GetPointerStateForIndex, (InputSystemUIInputModule * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x02A357C0, int32_t, InputSystemUIInputModule_GetDisplayIndexFor, (InputSystemUIInputModule * __this, InputControl * control, MethodInfo * method)); -DO_APP_FUNC(0x02A35890, int32_t, InputSystemUIInputModule_GetPointerStateIndexFor_1, (InputSystemUIInputModule * __this, InputAction_CallbackContext context, MethodInfo * method)); +DO_APP_FUNC(0x02A35890, int32_t, InputSystemUIInputModule_GetPointerStateIndexFor_1, (InputSystemUIInputModule * __this, InputAction_CallbackContext * context, MethodInfo * method)); DO_APP_FUNC(0x02A35910, int32_t, InputSystemUIInputModule_GetPointerStateIndexFor_2, (InputSystemUIInputModule * __this, InputControl * control, bool createIfNotExists, MethodInfo * method)); DO_APP_FUNC(0x02A36520, int32_t, InputSystemUIInputModule_AllocatePointer, (InputSystemUIInputModule * __this, int32_t pointerId, int32_t displayIndex, int32_t touchId, UIPointerType__Enum pointerType, InputControl * control, InputDevice * device, InputControl * touchControl, MethodInfo * method)); DO_APP_FUNC(0x02A36860, void, InputSystemUIInputModule_SendPointerExitEventsAndRemovePointer, (InputSystemUIInputModule * __this, int32_t index, MethodInfo * method)); @@ -54115,16 +63104,25 @@ DO_APP_FUNC(0x02A36A50, void, InputSystemUIInputModule_RemovePointerAtIndex, (In DO_APP_FUNC(0x02A36FF0, void, InputSystemUIInputModule_PurgeStalePointers, (InputSystemUIInputModule * __this, MethodInfo * method)); DO_APP_FUNC(0x02A37170, bool, InputSystemUIInputModule_HaveControlForDevice, (InputDevice * device, InputActionReference * actionReference, MethodInfo * method)); DO_APP_FUNC(0x02A37250, void, InputSystemUIInputModule_OnPointCallback, (InputSystemUIInputModule * __this, InputAction_CallbackContext context, MethodInfo * method)); -DO_APP_FUNC(0x02A37310, bool, InputSystemUIInputModule_IgnoreNextClick, (InputSystemUIInputModule * __this, InputAction_CallbackContext context, bool wasPressed, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF4C8, InputSystemUIInputModule_OnPointCallback__MethodInfo); +DO_APP_FUNC(0x02A37310, bool, InputSystemUIInputModule_IgnoreNextClick, (InputSystemUIInputModule * __this, InputAction_CallbackContext * context, bool wasPressed, MethodInfo * method)); DO_APP_FUNC(0x02A37450, void, InputSystemUIInputModule_OnLeftClickCallback, (InputSystemUIInputModule * __this, InputAction_CallbackContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF4C0, InputSystemUIInputModule_OnLeftClickCallback__MethodInfo); DO_APP_FUNC(0x02A37550, void, InputSystemUIInputModule_OnRightClickCallback, (InputSystemUIInputModule * __this, InputAction_CallbackContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF4E0, InputSystemUIInputModule_OnRightClickCallback__MethodInfo); DO_APP_FUNC(0x02A37670, void, InputSystemUIInputModule_OnMiddleClickCallback, (InputSystemUIInputModule * __this, InputAction_CallbackContext context, MethodInfo * method)); -DO_APP_FUNC(0x02A37790, bool, InputSystemUIInputModule_CheckForRemovedDevice, (InputSystemUIInputModule * __this, InputAction_CallbackContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF4B8, InputSystemUIInputModule_OnMiddleClickCallback__MethodInfo); +DO_APP_FUNC(0x02A37790, bool, InputSystemUIInputModule_CheckForRemovedDevice, (InputSystemUIInputModule * __this, InputAction_CallbackContext * context, MethodInfo * method)); DO_APP_FUNC(0x02A37800, void, InputSystemUIInputModule_OnScrollCallback, (InputSystemUIInputModule * __this, InputAction_CallbackContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF4D8, InputSystemUIInputModule_OnScrollCallback__MethodInfo); DO_APP_FUNC(0x02A37910, void, InputSystemUIInputModule_OnMoveCallback, (InputSystemUIInputModule * __this, InputAction_CallbackContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF4D0, InputSystemUIInputModule_OnMoveCallback__MethodInfo); DO_APP_FUNC(0x02A37980, void, InputSystemUIInputModule_OnTrackedDeviceOrientationCallback, (InputSystemUIInputModule * __this, InputAction_CallbackContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF4F0, InputSystemUIInputModule_OnTrackedDeviceOrientationCallback__MethodInfo); DO_APP_FUNC(0x02A37A90, void, InputSystemUIInputModule_OnTrackedDevicePositionCallback, (InputSystemUIInputModule * __this, InputAction_CallbackContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF4E8, InputSystemUIInputModule_OnTrackedDevicePositionCallback__MethodInfo); DO_APP_FUNC(0x02A37BB0, void, InputSystemUIInputModule_OnControlsChanged, (InputSystemUIInputModule * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF5F0, InputSystemUIInputModule_OnControlsChanged__MethodInfo); DO_APP_FUNC(0x02A37BC0, void, InputSystemUIInputModule_FilterPointerStatesByType, (InputSystemUIInputModule * __this, MethodInfo * method)); DO_APP_FUNC(0x02A37F80, void, InputSystemUIInputModule_Process, (InputSystemUIInputModule * __this, MethodInfo * method)); DO_APP_FUNC(0x02A38370, int32_t, InputSystemUIInputModule_ConvertUIToolkitPointerId, (InputSystemUIInputModule * __this, PointerEventData * sourcePointerData, MethodInfo * method)); @@ -54144,42 +63142,42 @@ DO_APP_FUNC(0x02A39580, void, MultiplayerEventSystem_OnDisable, (MultiplayerEven DO_APP_FUNC(0x02A39590, void, MultiplayerEventSystem_InitializePlayerRoot, (MultiplayerEventSystem * __this, MethodInfo * method)); DO_APP_FUNC(0x02A397D0, void, MultiplayerEventSystem_Update, (MultiplayerEventSystem * __this, MethodInfo * method)); DO_APP_FUNC(0x02A398B0, void, MultiplayerEventSystem__ctor, (MultiplayerEventSystem * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A39900, void, NavigationModel_Reset, (NavigationModel__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A39950, UIPointerType__Enum, PointerModel_get_pointerType, (PointerModel__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A39980, Vector2, PointerModel_get_screenPosition, (PointerModel__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A399A0, void, PointerModel_set_screenPosition, (PointerModel__Boxed * __this, Vector2 value, MethodInfo * method)); -DO_APP_FUNC(0x02A399F0, Vector3, PointerModel_get_worldPosition, (PointerModel__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A39A10, void, PointerModel_set_worldPosition, (PointerModel__Boxed * __this, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x02A39A90, Quaternion, PointerModel_get_worldOrientation, (PointerModel__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A39AA0, void, PointerModel_set_worldOrientation, (PointerModel__Boxed * __this, Quaternion value, MethodInfo * method)); -DO_APP_FUNC(0x02A39B10, Vector2, PointerModel_get_scrollDelta, (PointerModel__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A39B30, void, PointerModel_set_scrollDelta, (PointerModel__Boxed * __this, Vector2 value, MethodInfo * method)); -DO_APP_FUNC(0x02A39B80, float, PointerModel_get_pressure, (PointerModel__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A39B90, void, PointerModel_set_pressure, (PointerModel__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02A39BB0, float, PointerModel_get_azimuthAngle, (PointerModel__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A39BC0, void, PointerModel_set_azimuthAngle, (PointerModel__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02A39BE0, float, PointerModel_get_altitudeAngle, (PointerModel__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A39BF0, void, PointerModel_set_altitudeAngle, (PointerModel__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02A39C10, float, PointerModel_get_twist, (PointerModel__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A39C20, void, PointerModel_set_twist, (PointerModel__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02A39C40, Vector2, PointerModel_get_radius, (PointerModel__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A39C60, void, PointerModel_set_radius, (PointerModel__Boxed * __this, Vector2 value, MethodInfo * method)); -DO_APP_FUNC(0x02A39CB0, void, PointerModel__ctor, (PointerModel__Boxed * __this, ExtendedPointerEventData * eventData, MethodInfo * method)); -DO_APP_FUNC(0x02A39E40, void, PointerModel_OnFrameFinished, (PointerModel__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A39EC0, void, PointerModel_CopyTouchOrPenStateFrom, (PointerModel__Boxed * __this, PointerEventData * eventData, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, PointerModel_ButtonState_get_isPressed, (PointerModel_ButtonState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A39FC0, void, PointerModel_ButtonState_set_isPressed, (PointerModel_ButtonState__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x00BE21F0, bool, PointerModel_ButtonState_get_ignoreNextClick, (PointerModel_ButtonState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BE2200, void, PointerModel_ButtonState_set_ignoreNextClick, (PointerModel_ButtonState__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x00C43A70, float, PointerModel_ButtonState_get_pressTime, (PointerModel_ButtonState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C43A80, void, PointerModel_ButtonState_set_pressTime, (PointerModel_ButtonState__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x00BE21D0, bool, PointerModel_ButtonState_get_clickedOnSameGameObject, (PointerModel_ButtonState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BE21E0, void, PointerModel_ButtonState_set_clickedOnSameGameObject, (PointerModel_ButtonState__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02A3A010, bool, PointerModel_ButtonState_get_wasPressedThisFrame, (PointerModel_ButtonState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A3A030, bool, PointerModel_ButtonState_get_wasReleasedThisFrame, (PointerModel_ButtonState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A3A050, void, PointerModel_ButtonState_CopyPressStateTo, (PointerModel_ButtonState__Boxed * __this, PointerEventData * eventData, MethodInfo * method)); -DO_APP_FUNC(0x02A3A230, void, PointerModel_ButtonState_CopyPressStateFrom, (PointerModel_ButtonState__Boxed * __this, PointerEventData * eventData, MethodInfo * method)); -DO_APP_FUNC(0x02A3A470, void, PointerModel_ButtonState_OnEndFrame, (PointerModel_ButtonState__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A39900, void, NavigationModel_Reset, (NavigationModel * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A39950, UIPointerType__Enum, PointerModel_get_pointerType, (PointerModel * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A39980, Vector2, PointerModel_get_screenPosition, (PointerModel * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A399A0, void, PointerModel_set_screenPosition, (PointerModel * __this, Vector2 value, MethodInfo * method)); +DO_APP_FUNC(0x02A399F0, Vector3, PointerModel_get_worldPosition, (PointerModel * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A39A10, void, PointerModel_set_worldPosition, (PointerModel * __this, Vector3 value, MethodInfo * method)); +DO_APP_FUNC(0x02A39A90, Quaternion, PointerModel_get_worldOrientation, (PointerModel * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A39AA0, void, PointerModel_set_worldOrientation, (PointerModel * __this, Quaternion value, MethodInfo * method)); +DO_APP_FUNC(0x02A39B10, Vector2, PointerModel_get_scrollDelta, (PointerModel * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A39B30, void, PointerModel_set_scrollDelta, (PointerModel * __this, Vector2 value, MethodInfo * method)); +DO_APP_FUNC(0x02A39B80, float, PointerModel_get_pressure, (PointerModel * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A39B90, void, PointerModel_set_pressure, (PointerModel * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02A39BB0, float, PointerModel_get_azimuthAngle, (PointerModel * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A39BC0, void, PointerModel_set_azimuthAngle, (PointerModel * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02A39BE0, float, PointerModel_get_altitudeAngle, (PointerModel * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A39BF0, void, PointerModel_set_altitudeAngle, (PointerModel * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02A39C10, float, PointerModel_get_twist, (PointerModel * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A39C20, void, PointerModel_set_twist, (PointerModel * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02A39C40, Vector2, PointerModel_get_radius, (PointerModel * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A39C60, void, PointerModel_set_radius, (PointerModel * __this, Vector2 value, MethodInfo * method)); +DO_APP_FUNC(0x02A39CB0, void, PointerModel__ctor, (PointerModel * __this, ExtendedPointerEventData * eventData, MethodInfo * method)); +DO_APP_FUNC(0x02A39E40, void, PointerModel_OnFrameFinished, (PointerModel * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A39EC0, void, PointerModel_CopyTouchOrPenStateFrom, (PointerModel * __this, PointerEventData * eventData, MethodInfo * method)); +DO_APP_FUNC(0x00C173D0, bool, PointerModel_ButtonState_get_isPressed, (PointerModel_ButtonState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A39FC0, void, PointerModel_ButtonState_set_isPressed, (PointerModel_ButtonState * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x00BE21F0, bool, PointerModel_ButtonState_get_ignoreNextClick, (PointerModel_ButtonState * __this, MethodInfo * method)); +DO_APP_FUNC(0x00BE2200, void, PointerModel_ButtonState_set_ignoreNextClick, (PointerModel_ButtonState * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x00C43A70, float, PointerModel_ButtonState_get_pressTime, (PointerModel_ButtonState * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C43A80, void, PointerModel_ButtonState_set_pressTime, (PointerModel_ButtonState * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x00BE21D0, bool, PointerModel_ButtonState_get_clickedOnSameGameObject, (PointerModel_ButtonState * __this, MethodInfo * method)); +DO_APP_FUNC(0x00BE21E0, void, PointerModel_ButtonState_set_clickedOnSameGameObject, (PointerModel_ButtonState * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02A3A010, bool, PointerModel_ButtonState_get_wasPressedThisFrame, (PointerModel_ButtonState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A3A030, bool, PointerModel_ButtonState_get_wasReleasedThisFrame, (PointerModel_ButtonState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A3A050, void, PointerModel_ButtonState_CopyPressStateTo, (PointerModel_ButtonState * __this, PointerEventData * eventData, MethodInfo * method)); +DO_APP_FUNC(0x02A3A230, void, PointerModel_ButtonState_CopyPressStateFrom, (PointerModel_ButtonState * __this, PointerEventData * eventData, MethodInfo * method)); +DO_APP_FUNC(0x02A3A470, void, PointerModel_ButtonState_OnEndFrame, (PointerModel_ButtonState * __this, MethodInfo * method)); DO_APP_FUNC(0x02A3A480, Camera *, TrackedDeviceRaycaster_get_eventCamera, (TrackedDeviceRaycaster * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7300, LayerMask, TrackedDeviceRaycaster_get_blockingMask, (TrackedDeviceRaycaster * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7310, void, TrackedDeviceRaycaster_set_blockingMask, (TrackedDeviceRaycaster * __this, LayerMask value, MethodInfo * method)); @@ -54202,18 +63200,19 @@ DO_APP_FUNC(0x02A3A820, void, TrackedDeviceRaycaster_OnDisable, (TrackedDeviceRa DO_APP_FUNC(0x02A3AA70, void, TrackedDeviceRaycaster_Raycast, (TrackedDeviceRaycaster * __this, PointerEventData * eventData, List_1_UnityEngine_EventSystems_RaycastResult_ * resultAppendList, MethodInfo * method)); DO_APP_FUNC(0x02A3AB10, void, TrackedDeviceRaycaster_PerformRaycast, (TrackedDeviceRaycaster * __this, ExtendedPointerEventData * eventData, List_1_UnityEngine_EventSystems_RaycastResult_ * resultAppendList, MethodInfo * method)); DO_APP_FUNC(0x02A3BD00, void, TrackedDeviceRaycaster_SortedRaycastGraphics, (TrackedDeviceRaycaster * __this, Canvas * canvas, Ray ray, List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * results, MethodInfo * method)); -DO_APP_FUNC(0x02A3C660, bool, TrackedDeviceRaycaster_RayIntersectsRectTransform, (RectTransform * transform, Ray ray, Vector3 worldPosition, float distance, MethodInfo * method)); +DO_APP_FUNC(0x02A3C660, bool, TrackedDeviceRaycaster_RayIntersectsRectTransform, (RectTransform * transform, Ray ray, Vector3 * worldPosition, float * distance, MethodInfo * method)); DO_APP_FUNC(0x02A3CBF0, Canvas *, TrackedDeviceRaycaster_get_canvas, (TrackedDeviceRaycaster * __this, MethodInfo * method)); DO_APP_FUNC(0x02A3CD60, void, TrackedDeviceRaycaster__ctor, (TrackedDeviceRaycaster * __this, MethodInfo * method)); DO_APP_FUNC(0x02A3CE60, void, TrackedDeviceRaycaster__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02A3CF40, void, TrackedDeviceRaycaster_RaycastHitData__ctor, (TrackedDeviceRaycaster_RaycastHitData__Boxed * __this, Graphic * graphic, Vector3 worldHitPosition, Vector2 screenPosition, float distance, MethodInfo * method)); -DO_APP_FUNC(0x00471910, Graphic *, TrackedDeviceRaycaster_RaycastHitData_get_graphic, (TrackedDeviceRaycaster_RaycastHitData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00958320, Vector3, TrackedDeviceRaycaster_RaycastHitData_get_worldHitPosition, (TrackedDeviceRaycaster_RaycastHitData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00F9BE30, Vector2, TrackedDeviceRaycaster_RaycastHitData_get_screenPosition, (TrackedDeviceRaycaster_RaycastHitData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003CCB80, float, TrackedDeviceRaycaster_RaycastHitData_get_distance, (TrackedDeviceRaycaster_RaycastHitData__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A3CF40, void, TrackedDeviceRaycaster_RaycastHitData__ctor, (TrackedDeviceRaycaster_RaycastHitData * __this, Graphic * graphic, Vector3 worldHitPosition, Vector2 screenPosition, float distance, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Graphic *, TrackedDeviceRaycaster_RaycastHitData_get_graphic, (TrackedDeviceRaycaster_RaycastHitData * __this, MethodInfo * method)); +DO_APP_FUNC(0x00958320, Vector3, TrackedDeviceRaycaster_RaycastHitData_get_worldHitPosition, (TrackedDeviceRaycaster_RaycastHitData * __this, MethodInfo * method)); +DO_APP_FUNC(0x00F9BE30, Vector2, TrackedDeviceRaycaster_RaycastHitData_get_screenPosition, (TrackedDeviceRaycaster_RaycastHitData * __this, MethodInfo * method)); +DO_APP_FUNC(0x003CCB80, float, TrackedDeviceRaycaster_RaycastHitData_get_distance, (TrackedDeviceRaycaster_RaycastHitData * __this, MethodInfo * method)); DO_APP_FUNC(0x02A3CFC0, void, TrackedDeviceRaycaster_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TrackedDeviceRaycaster_c__ctor, (TrackedDeviceRaycaster_c * __this, MethodInfo * method)); DO_APP_FUNC(0x02A3D070, int32_t, TrackedDeviceRaycaster_c__SortedRaycastGraphics_b__35_0, (TrackedDeviceRaycaster_c * __this, TrackedDeviceRaycaster_RaycastHitData g1, TrackedDeviceRaycaster_RaycastHitData g2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF488, TrackedDeviceRaycaster_c__SortedRaycastGraphics_b__35_0__MethodInfo); DO_APP_FUNC(0x003BB3B0, RectTransform *, VirtualMouseInput_get_cursorTransform, (VirtualMouseInput * __this, MethodInfo * method)); DO_APP_FUNC(0x003C6500, void, VirtualMouseInput_set_cursorTransform, (VirtualMouseInput * __this, RectTransform * value, MethodInfo * method)); DO_APP_FUNC(0x0070B9F0, float, VirtualMouseInput_get_cursorSpeed, (VirtualMouseInput * __this, MethodInfo * method)); @@ -54245,9 +63244,11 @@ DO_APP_FUNC(0x02A3ECB0, void, VirtualMouseInput_TryFindCanvas, (VirtualMouseInpu DO_APP_FUNC(0x02A3ED50, void, VirtualMouseInput_TryEnableHardwareCursor, (VirtualMouseInput * __this, MethodInfo * method)); DO_APP_FUNC(0x02A3F140, void, VirtualMouseInput_UpdateMotion, (VirtualMouseInput * __this, MethodInfo * method)); DO_APP_FUNC(0x02A3F700, void, VirtualMouseInput_OnButtonActionTriggered, (VirtualMouseInput * __this, InputAction_CallbackContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF420, VirtualMouseInput_OnButtonActionTriggered__MethodInfo); DO_APP_FUNC(0x02A3FA50, void, VirtualMouseInput_SetActionCallback, (InputActionProperty field, Action_1_UnityEngine_InputSystem_InputAction_CallbackContext_ * callback, bool install, MethodInfo * method)); -DO_APP_FUNC(0x02A3FB80, void, VirtualMouseInput_SetAction, (InputActionProperty field, InputActionProperty value, MethodInfo * method)); +DO_APP_FUNC(0x02A3FB80, void, VirtualMouseInput_SetAction, (InputActionProperty * field, InputActionProperty value, MethodInfo * method)); DO_APP_FUNC(0x02A3FE10, void, VirtualMouseInput_OnAfterInputUpdate, (VirtualMouseInput * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF428, VirtualMouseInput_OnAfterInputUpdate__MethodInfo); DO_APP_FUNC(0x02A3FE20, void, VirtualMouseInput__ctor, (VirtualMouseInput * __this, MethodInfo * method)); DO_APP_FUNC(0x018BC6B0, ButtonControl *, SwitchProControllerHID_get_captureButton, (SwitchProControllerHID * __this, MethodInfo * method)); DO_APP_FUNC(0x018BC6C0, void, SwitchProControllerHID_set_captureButton, (SwitchProControllerHID * __this, ButtonControl * value, MethodInfo * method)); @@ -54258,26 +63259,26 @@ DO_APP_FUNC(0x02A400A0, void, SwitchProControllerHID_HandshakeRestart, (SwitchPr DO_APP_FUNC(0x02A40120, void, SwitchProControllerHID_HandshakeTick, (SwitchProControllerHID * __this, MethodInfo * method)); DO_APP_FUNC(0x02A40430, void, SwitchProControllerHID_OnNextUpdate, (SwitchProControllerHID * __this, MethodInfo * method)); DO_APP_FUNC(0x02A40440, void, SwitchProControllerHID_OnStateEvent, (SwitchProControllerHID * __this, InputEventPtr eventPtr, MethodInfo * method)); -DO_APP_FUNC(0x0041AF00, bool, SwitchProControllerHID_GetStateOffsetForEvent, (SwitchProControllerHID * __this, InputControl * control, InputEventPtr eventPtr, uint32_t offset, MethodInfo * method)); +DO_APP_FUNC(0x0041AF00, bool, SwitchProControllerHID_GetStateOffsetForEvent, (SwitchProControllerHID * __this, InputControl * control, InputEventPtr eventPtr, uint32_t * offset, MethodInfo * method)); DO_APP_FUNC(0x02A40610, bool, SwitchProControllerHID_PreProcessEvent, (SwitchProControllerHID * __this, InputEventPtr eventPtr, MethodInfo * method)); DO_APP_FUNC(0x018BD410, void, SwitchProControllerHID__ctor, (SwitchProControllerHID * __this, MethodInfo * method)); DO_APP_FUNC(0x02A407A0, void, SwitchProControllerHID__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02A40880, SwitchProControllerHIDInputState, SwitchProControllerHID_SwitchInputOnlyReport_ToHIDInputReport, (SwitchProControllerHID_SwitchInputOnlyReport__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A40CD0, SwitchProControllerHIDInputState, SwitchProControllerHID_SwitchSimpleInputReport_ToHIDInputReport, (SwitchProControllerHID_SwitchSimpleInputReport__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A41150, SwitchProControllerHIDInputState, SwitchProControllerHID_SwitchFullInputReport_ToHIDInputReport, (SwitchProControllerHID_SwitchFullInputReport__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A40880, SwitchProControllerHIDInputState, SwitchProControllerHID_SwitchInputOnlyReport_ToHIDInputReport, (SwitchProControllerHID_SwitchInputOnlyReport * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A40CD0, SwitchProControllerHIDInputState, SwitchProControllerHID_SwitchSimpleInputReport_ToHIDInputReport, (SwitchProControllerHID_SwitchSimpleInputReport * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A41150, SwitchProControllerHIDInputState, SwitchProControllerHID_SwitchFullInputReport_ToHIDInputReport, (SwitchProControllerHID_SwitchFullInputReport * __this, MethodInfo * method)); DO_APP_FUNC(0x02A41570, FourCC, SwitchProControllerHID_SwitchHIDGenericInputReport_get_Format, (MethodInfo * method)); DO_APP_FUNC(0x02A41580, FourCC, SwitchProControllerHID_SwitchMagicOutputHIDBluetooth_get_Type, (MethodInfo * method)); -DO_APP_FUNC(0x02A41580, FourCC, SwitchProControllerHID_SwitchMagicOutputHIDBluetooth_get_typeStatic, (SwitchProControllerHID_SwitchMagicOutputHIDBluetooth__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A41580, FourCC, SwitchProControllerHID_SwitchMagicOutputHIDBluetooth_get_typeStatic, (SwitchProControllerHID_SwitchMagicOutputHIDBluetooth * __this, MethodInfo * method)); DO_APP_FUNC(0x02A41590, SwitchProControllerHID_SwitchMagicOutputHIDBluetooth, SwitchProControllerHID_SwitchMagicOutputHIDBluetooth_Create, (SwitchProControllerHID_SwitchMagicOutputReport_CommandIdType__Enum type, MethodInfo * method)); DO_APP_FUNC(0x02A41580, FourCC, SwitchProControllerHID_SwitchMagicOutputHIDUSB_get_Type, (MethodInfo * method)); -DO_APP_FUNC(0x02A41580, FourCC, SwitchProControllerHID_SwitchMagicOutputHIDUSB_get_typeStatic, (SwitchProControllerHID_SwitchMagicOutputHIDUSB__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A41580, FourCC, SwitchProControllerHID_SwitchMagicOutputHIDUSB_get_typeStatic, (SwitchProControllerHID_SwitchMagicOutputHIDUSB * __this, MethodInfo * method)); DO_APP_FUNC(0x02A415F0, SwitchProControllerHID_SwitchMagicOutputHIDUSB, SwitchProControllerHID_SwitchMagicOutputHIDUSB_Create, (SwitchProControllerHID_SwitchMagicOutputReport_CommandIdType__Enum type, MethodInfo * method)); DO_APP_FUNC(0x02A41650, void, SwitchSupportHID_Initialize, (MethodInfo * method)); -DO_APP_FUNC(0x02A41ED0, FourCC, SwitchProControllerHIDInputState_get_format, (SwitchProControllerHIDInputState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A41F30, SwitchProControllerHIDInputState, SwitchProControllerHIDInputState_WithButton, (SwitchProControllerHIDInputState__Boxed * __this, SwitchProControllerHIDInputState_Button__Enum button, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02A42030, void, SwitchProControllerHIDInputState_Set, (SwitchProControllerHIDInputState__Boxed * __this, SwitchProControllerHIDInputState_Button__Enum button, bool state, MethodInfo * method)); -DO_APP_FUNC(0x02A420A0, void, SwitchProControllerHIDInputState_Press, (SwitchProControllerHIDInputState__Boxed * __this, SwitchProControllerHIDInputState_Button__Enum button, MethodInfo * method)); -DO_APP_FUNC(0x02A42130, void, SwitchProControllerHIDInputState_Release, (SwitchProControllerHIDInputState__Boxed * __this, SwitchProControllerHIDInputState_Button__Enum button, MethodInfo * method)); +DO_APP_FUNC(0x02A41ED0, FourCC, SwitchProControllerHIDInputState_get_format, (SwitchProControllerHIDInputState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A41F30, SwitchProControllerHIDInputState, SwitchProControllerHIDInputState_WithButton, (SwitchProControllerHIDInputState * __this, SwitchProControllerHIDInputState_Button__Enum button, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02A42030, void, SwitchProControllerHIDInputState_Set, (SwitchProControllerHIDInputState * __this, SwitchProControllerHIDInputState_Button__Enum button, bool state, MethodInfo * method)); +DO_APP_FUNC(0x02A420A0, void, SwitchProControllerHIDInputState_Press, (SwitchProControllerHIDInputState * __this, SwitchProControllerHIDInputState_Button__Enum button, MethodInfo * method)); +DO_APP_FUNC(0x02A42130, void, SwitchProControllerHIDInputState_Release, (SwitchProControllerHIDInputState * __this, SwitchProControllerHIDInputState_Button__Enum button, MethodInfo * method)); DO_APP_FUNC(0x02A421C0, void, SwitchProControllerHIDInputState__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02A42200, void, OnScreenButton_OnPointerUp, (OnScreenButton * __this, PointerEventData * eventData, MethodInfo * method)); DO_APP_FUNC(0x02A42250, void, OnScreenButton_OnPointerDown, (OnScreenButton * __this, PointerEventData * eventData, MethodInfo * method)); @@ -54292,19 +63293,24 @@ DO_APP_FUNC(0x02A430C0, void, OnScreenControl_SentDefaultValueToControl, (OnScre DO_APP_FUNC(0x02A43190, void, OnScreenControl_OnEnable, (OnScreenControl * __this, MethodInfo * method)); DO_APP_FUNC(0x02A431A0, void, OnScreenControl_OnDisable, (OnScreenControl * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, OnScreenControl__ctor, (OnScreenControl * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A434D0, OnScreenControl_OnScreenDeviceInfo, OnScreenControl_OnScreenDeviceInfo_AddControl, (OnScreenControl_OnScreenDeviceInfo__Boxed * __this, OnScreenControl * control, MethodInfo * method)); -DO_APP_FUNC(0x02A435D0, OnScreenControl_OnScreenDeviceInfo, OnScreenControl_OnScreenDeviceInfo_RemoveControl, (OnScreenControl_OnScreenDeviceInfo__Boxed * __this, OnScreenControl * control, MethodInfo * method)); -DO_APP_FUNC(0x02A43A20, void, OnScreenControl_OnScreenDeviceInfo_Destroy, (OnScreenControl_OnScreenDeviceInfo__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A434D0, OnScreenControl_OnScreenDeviceInfo, OnScreenControl_OnScreenDeviceInfo_AddControl, (OnScreenControl_OnScreenDeviceInfo * __this, OnScreenControl * control, MethodInfo * method)); +DO_APP_FUNC(0x02A435D0, OnScreenControl_OnScreenDeviceInfo, OnScreenControl_OnScreenDeviceInfo_RemoveControl, (OnScreenControl_OnScreenDeviceInfo * __this, OnScreenControl * control, MethodInfo * method)); +DO_APP_FUNC(0x02A43A20, void, OnScreenControl_OnScreenDeviceInfo_Destroy, (OnScreenControl_OnScreenDeviceInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x02A43B10, void, OnScreenStick_OnPointerDown, (OnScreenStick * __this, PointerEventData * eventData, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF2A8, OnScreenStick_OnPointerDown__MethodInfo); DO_APP_FUNC(0x02A43BD0, void, OnScreenStick_OnDrag, (OnScreenStick * __this, PointerEventData * eventData, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF2B8, OnScreenStick_OnDrag__MethodInfo); DO_APP_FUNC(0x02A43C90, void, OnScreenStick_OnPointerUp, (OnScreenStick * __this, PointerEventData * eventData, MethodInfo * method)); DO_APP_FUNC(0x02A43CA0, void, OnScreenStick_Start, (OnScreenStick * __this, MethodInfo * method)); DO_APP_FUNC(0x02A44780, void, OnScreenStick_BeginInteraction, (OnScreenStick * __this, Vector2 pointerPosition, Camera * uiCamera, MethodInfo * method)); DO_APP_FUNC(0x02A44B10, void, OnScreenStick_MoveStick, (OnScreenStick * __this, Vector2 pointerPosition, Camera * uiCamera, MethodInfo * method)); DO_APP_FUNC(0x02A44FA0, void, OnScreenStick_EndInteraction, (OnScreenStick * __this, MethodInfo * method)); DO_APP_FUNC(0x02A45130, void, OnScreenStick_OnPointerDown_1, (OnScreenStick * __this, InputAction_CallbackContext ctx, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF308, OnScreenStick_OnPointerDown_1__MethodInfo); DO_APP_FUNC(0x02A45730, void, OnScreenStick_OnPointerMove, (OnScreenStick * __this, InputAction_CallbackContext ctx, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF268, OnScreenStick_OnPointerMove__MethodInfo); DO_APP_FUNC(0x02A458B0, void, OnScreenStick_OnPointerUp_1, (OnScreenStick * __this, InputAction_CallbackContext ctx, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF320, OnScreenStick_OnPointerUp_1__MethodInfo); DO_APP_FUNC(0x02A45980, Camera *, OnScreenStick_GetCameraFromCanvas, (OnScreenStick * __this, MethodInfo * method)); DO_APP_FUNC(0x02A45BA0, void, OnScreenStick_OnDrawGizmosSelected, (OnScreenStick * __this, MethodInfo * method)); DO_APP_FUNC(0x02A46110, void, OnScreenStick_DrawGizmoCircle, (OnScreenStick * __this, Vector2 center, float radius, MethodInfo * method)); @@ -54324,8 +63330,10 @@ DO_APP_FUNC(0x02A46580, FourCC, HID_get_QueryHIDReportDescriptorDeviceCommandTyp DO_APP_FUNC(0x02A46590, FourCC, HID_get_QueryHIDReportDescriptorSizeDeviceCommandType, (MethodInfo * method)); DO_APP_FUNC(0x02A465A0, FourCC, HID_get_QueryHIDParsedReportDescriptorDeviceCommandType, (MethodInfo * method)); DO_APP_FUNC(0x02A465B0, HID_HIDDeviceDescriptor, HID_get_hidDescriptor, (HID * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A46740, String *, HID_OnFindLayoutForDevice, (InputDeviceDescription description, String * matchedLayout, InputDeviceExecuteCommandDelegate * executeDeviceCommand, MethodInfo * method)); -DO_APP_FUNC(0x02A473E0, HID_HIDDeviceDescriptor, HID_ReadHIDDeviceDescriptor, (InputDeviceDescription deviceDescription, InputDeviceExecuteCommandDelegate * executeCommandDelegate, MethodInfo * method)); +DO_APP_FUNC(0x02A46740, String *, HID_OnFindLayoutForDevice, (InputDeviceDescription * description, String * matchedLayout, InputDeviceExecuteCommandDelegate * executeDeviceCommand, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1660, HID_OnFindLayoutForDevice__MethodInfo); +DO_APP_FUNC(0x02A473E0, HID_HIDDeviceDescriptor, HID_ReadHIDDeviceDescriptor, (InputDeviceDescription * deviceDescription, InputDeviceExecuteCommandDelegate * executeCommandDelegate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF230, HID_ReadHIDDeviceDescriptor__MethodInfo); DO_APP_FUNC(0x02A47B80, String *, HID_UsagePageToString, (HID_UsagePage__Enum usagePage, MethodInfo * method)); DO_APP_FUNC(0x02A47C00, String *, HID_UsageToString, (HID_UsagePage__Enum usagePage, int32_t usage, MethodInfo * method)); DO_APP_FUNC(0x018BD410, void, HID__ctor, (HID * __this, MethodInfo * method)); @@ -54334,57 +63342,66 @@ DO_APP_FUNC(0x003AE050, void, HID_HIDLayoutBuilder__ctor, (HID_HIDLayoutBuilder DO_APP_FUNC(0x02A491E0, void, HID_HIDLayoutBuilder_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HID_HIDLayoutBuilder_c__ctor, (HID_HIDLayoutBuilder_c * __this, MethodInfo * method)); DO_APP_FUNC(0x02A49290, bool, HID_HIDLayoutBuilder_c__Build_b__4_0, (HID_HIDLayoutBuilder_c * __this, HID_HIDElementDescriptor element, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF188, HID_HIDLayoutBuilder_c__Build_b__4_0__MethodInfo); DO_APP_FUNC(0x02A492B0, bool, HID_HIDLayoutBuilder_c__Build_b__4_1, (HID_HIDLayoutBuilder_c * __this, HID_HIDElementDescriptor element, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF180, HID_HIDLayoutBuilder_c__Build_b__4_1__MethodInfo); DO_APP_FUNC(0x02A492D0, String *, HID_HIDLayoutBuilder_c__Build_b__4_2, (HID_HIDLayoutBuilder_c * __this, InputControlLayout_ControlItem x, MethodInfo * method)); -DO_APP_FUNC(0x02A49330, bool, HID_HIDElementDescriptor_get_hasNullState, (HID_HIDElementDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A49340, bool, HID_HIDElementDescriptor_get_hasPreferredState, (HID_HIDElementDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A49350, bool, HID_HIDElementDescriptor_get_isArray, (HID_HIDElementDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A49360, bool, HID_HIDElementDescriptor_get_isNonLinear, (HID_HIDElementDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A49370, bool, HID_HIDElementDescriptor_get_isRelative, (HID_HIDElementDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A49380, bool, HID_HIDElementDescriptor_get_isConstant, (HID_HIDElementDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A49390, bool, HID_HIDElementDescriptor_get_isWrapping, (HID_HIDElementDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A493A0, bool, HID_HIDElementDescriptor_get_isSigned, (HID_HIDElementDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A493B0, float, HID_HIDElementDescriptor_get_minFloatValue, (HID_HIDElementDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A49490, float, HID_HIDElementDescriptor_get_maxFloatValue, (HID_HIDElementDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A49570, bool, HID_HIDElementDescriptor_Is, (HID_HIDElementDescriptor__Boxed * __this, HID_UsagePage__Enum usagePage, int32_t usage, MethodInfo * method)); -DO_APP_FUNC(0x02A49580, String *, HID_HIDElementDescriptor_DetermineName, (HID_HIDElementDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A49860, String *, HID_HIDElementDescriptor_DetermineDisplayName, (HID_HIDElementDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A49940, bool, HID_HIDElementDescriptor_IsUsableElement, (HID_HIDElementDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A49970, String *, HID_HIDElementDescriptor_DetermineLayout, (HID_HIDElementDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A49A70, FourCC, HID_HIDElementDescriptor_DetermineFormat, (HID_HIDElementDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A49BF0, InternedString__Array *, HID_HIDElementDescriptor_DetermineUsages, (HID_HIDElementDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A49F70, String *, HID_HIDElementDescriptor_DetermineParameters, (HID_HIDElementDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A4A120, String *, HID_HIDElementDescriptor_DetermineAxisNormalizationParameters, (HID_HIDElementDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A4A2D0, String *, HID_HIDElementDescriptor_DetermineProcessors, (HID_HIDElementDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A4A330, PrimitiveValue, HID_HIDElementDescriptor_DetermineDefaultState, (HID_HIDElementDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A4A470, void, HID_HIDElementDescriptor_AddChildControls, (HID_HIDElementDescriptor__Boxed * __this, HID_HIDElementDescriptor element, String * controlName, InputControlLayout_Builder * builder, MethodInfo * method)); -DO_APP_FUNC(0x02A4BC20, String *, HID_HIDDeviceDescriptor_ToJson, (HID_HIDDeviceDescriptor__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF198, HID_HIDLayoutBuilder_c__Build_b__4_2__MethodInfo); +DO_APP_FUNC(0x02A49330, bool, HID_HIDElementDescriptor_get_hasNullState, (HID_HIDElementDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A49340, bool, HID_HIDElementDescriptor_get_hasPreferredState, (HID_HIDElementDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A49350, bool, HID_HIDElementDescriptor_get_isArray, (HID_HIDElementDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A49360, bool, HID_HIDElementDescriptor_get_isNonLinear, (HID_HIDElementDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A49370, bool, HID_HIDElementDescriptor_get_isRelative, (HID_HIDElementDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A49380, bool, HID_HIDElementDescriptor_get_isConstant, (HID_HIDElementDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A49390, bool, HID_HIDElementDescriptor_get_isWrapping, (HID_HIDElementDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A493A0, bool, HID_HIDElementDescriptor_get_isSigned, (HID_HIDElementDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A493B0, float, HID_HIDElementDescriptor_get_minFloatValue, (HID_HIDElementDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A49490, float, HID_HIDElementDescriptor_get_maxFloatValue, (HID_HIDElementDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A49570, bool, HID_HIDElementDescriptor_Is, (HID_HIDElementDescriptor * __this, HID_UsagePage__Enum usagePage, int32_t usage, MethodInfo * method)); +DO_APP_FUNC(0x02A49580, String *, HID_HIDElementDescriptor_DetermineName, (HID_HIDElementDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A49860, String *, HID_HIDElementDescriptor_DetermineDisplayName, (HID_HIDElementDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A49940, bool, HID_HIDElementDescriptor_IsUsableElement, (HID_HIDElementDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A49970, String *, HID_HIDElementDescriptor_DetermineLayout, (HID_HIDElementDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A49A70, FourCC, HID_HIDElementDescriptor_DetermineFormat, (HID_HIDElementDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A49BF0, InternedString__Array *, HID_HIDElementDescriptor_DetermineUsages, (HID_HIDElementDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A49F70, String *, HID_HIDElementDescriptor_DetermineParameters, (HID_HIDElementDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A4A120, String *, HID_HIDElementDescriptor_DetermineAxisNormalizationParameters, (HID_HIDElementDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A4A2D0, String *, HID_HIDElementDescriptor_DetermineProcessors, (HID_HIDElementDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A4A330, PrimitiveValue, HID_HIDElementDescriptor_DetermineDefaultState, (HID_HIDElementDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A4A470, void, HID_HIDElementDescriptor_AddChildControls, (HID_HIDElementDescriptor * __this, HID_HIDElementDescriptor * element, String * controlName, InputControlLayout_Builder * * builder, MethodInfo * method)); +DO_APP_FUNC(0x02A4BC20, String *, HID_HIDDeviceDescriptor_ToJson, (HID_HIDDeviceDescriptor * __this, MethodInfo * method)); DO_APP_FUNC(0x02A4BC90, HID_HIDDeviceDescriptor, HID_HIDDeviceDescriptor_FromJson, (String * json, MethodInfo * method)); -DO_APP_FUNC(0x02A4E420, void, HID_HIDDeviceDescriptorBuilder__ctor, (HID_HIDDeviceDescriptorBuilder__Boxed * __this, HID_UsagePage__Enum usagePage, int32_t usage, MethodInfo * method)); -DO_APP_FUNC(0x02A4E450, void, HID_HIDDeviceDescriptorBuilder__ctor_1, (HID_HIDDeviceDescriptorBuilder__Boxed * __this, HID_GenericDesktop__Enum usage, MethodInfo * method)); -DO_APP_FUNC(0x02A4E480, HID_HIDDeviceDescriptorBuilder, HID_HIDDeviceDescriptorBuilder_StartReport, (HID_HIDDeviceDescriptorBuilder__Boxed * __this, HID_HIDReportType__Enum reportType, int32_t reportId, MethodInfo * method)); -DO_APP_FUNC(0x02A4E4C0, HID_HIDDeviceDescriptorBuilder, HID_HIDDeviceDescriptorBuilder_AddElement, (HID_HIDDeviceDescriptorBuilder__Boxed * __this, HID_UsagePage__Enum usagePage, int32_t usage, int32_t sizeInBits, MethodInfo * method)); -DO_APP_FUNC(0x02A4E940, HID_HIDDeviceDescriptorBuilder, HID_HIDDeviceDescriptorBuilder_AddElement_1, (HID_HIDDeviceDescriptorBuilder__Boxed * __this, HID_GenericDesktop__Enum usage, int32_t sizeInBits, MethodInfo * method)); -DO_APP_FUNC(0x02A4E9A0, HID_HIDDeviceDescriptorBuilder, HID_HIDDeviceDescriptorBuilder_WithPhysicalMinMax, (HID_HIDDeviceDescriptorBuilder__Boxed * __this, int32_t min, int32_t max, MethodInfo * method)); -DO_APP_FUNC(0x02A4EB60, HID_HIDDeviceDescriptorBuilder, HID_HIDDeviceDescriptorBuilder_WithLogicalMinMax, (HID_HIDDeviceDescriptorBuilder__Boxed * __this, int32_t min, int32_t max, MethodInfo * method)); -DO_APP_FUNC(0x02A4ED20, HID_HIDDeviceDescriptor, HID_HIDDeviceDescriptorBuilder_Finish, (HID_HIDDeviceDescriptorBuilder__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A4E420, void, HID_HIDDeviceDescriptorBuilder__ctor, (HID_HIDDeviceDescriptorBuilder * __this, HID_UsagePage__Enum usagePage, int32_t usage, MethodInfo * method)); +DO_APP_FUNC(0x02A4E450, void, HID_HIDDeviceDescriptorBuilder__ctor_1, (HID_HIDDeviceDescriptorBuilder * __this, HID_GenericDesktop__Enum usage, MethodInfo * method)); +DO_APP_FUNC(0x02A4E480, HID_HIDDeviceDescriptorBuilder, HID_HIDDeviceDescriptorBuilder_StartReport, (HID_HIDDeviceDescriptorBuilder * __this, HID_HIDReportType__Enum reportType, int32_t reportId, MethodInfo * method)); +DO_APP_FUNC(0x02A4E4C0, HID_HIDDeviceDescriptorBuilder, HID_HIDDeviceDescriptorBuilder_AddElement, (HID_HIDDeviceDescriptorBuilder * __this, HID_UsagePage__Enum usagePage, int32_t usage, int32_t sizeInBits, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1750, HID_HIDDeviceDescriptorBuilder_AddElement__MethodInfo); +DO_APP_FUNC(0x02A4E940, HID_HIDDeviceDescriptorBuilder, HID_HIDDeviceDescriptorBuilder_AddElement_1, (HID_HIDDeviceDescriptorBuilder * __this, HID_GenericDesktop__Enum usage, int32_t sizeInBits, MethodInfo * method)); +DO_APP_FUNC(0x02A4E9A0, HID_HIDDeviceDescriptorBuilder, HID_HIDDeviceDescriptorBuilder_WithPhysicalMinMax, (HID_HIDDeviceDescriptorBuilder * __this, int32_t min, int32_t max, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1828, HID_HIDDeviceDescriptorBuilder_WithPhysicalMinMax__MethodInfo); +DO_APP_FUNC(0x02A4EB60, HID_HIDDeviceDescriptorBuilder, HID_HIDDeviceDescriptorBuilder_WithLogicalMinMax, (HID_HIDDeviceDescriptorBuilder * __this, int32_t min, int32_t max, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1838, HID_HIDDeviceDescriptorBuilder_WithLogicalMinMax__MethodInfo); +DO_APP_FUNC(0x02A4ED20, HID_HIDDeviceDescriptor, HID_HIDDeviceDescriptorBuilder_Finish, (HID_HIDDeviceDescriptorBuilder * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HID_c_DisplayClass12_0__ctor, (HID_c_DisplayClass12_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x02A4EE90, InputControlLayout *, HID_c_DisplayClass12_0__OnFindLayoutForDevice_b__0, (HID_c_DisplayClass12_0 * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A4EEB0, bool, HIDParser_ParseReportDescriptor, (Byte__Array * buffer, HID_HIDDeviceDescriptor deviceDescriptor, MethodInfo * method)); -DO_APP_FUNC(0x02A4EF40, bool, HIDParser_ParseReportDescriptor_1, (uint8_t * bufferPtr, int32_t bufferLength, HID_HIDDeviceDescriptor deviceDescriptor, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF200, HID_c_DisplayClass12_0__OnFindLayoutForDevice_b__0__MethodInfo); +DO_APP_FUNC(0x02A4EEB0, bool, HIDParser_ParseReportDescriptor, (Byte__Array * buffer, HID_HIDDeviceDescriptor * deviceDescriptor, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD17C8, HIDParser_ParseReportDescriptor__MethodInfo); +DO_APP_FUNC(0x02A4EF40, bool, HIDParser_ParseReportDescriptor_1, (uint8_t * bufferPtr, int32_t bufferLength, HID_HIDDeviceDescriptor * deviceDescriptor, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD16D8, HIDParser_ParseReportDescriptor_1__MethodInfo); DO_APP_FUNC(0x02A4FF00, int32_t, HIDParser_ReadData, (int32_t itemSize, uint8_t * currentPtr, uint8_t * endPtr, MethodInfo * method)); DO_APP_FUNC(0x02A4FF60, int32_t, HIDParser_HIDReportData_FindOrAddReport, (Nullable_1_Int32_ reportId, HID_HIDReportType__Enum reportType, List_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_ * reports, MethodInfo * method)); -DO_APP_FUNC(0x02A50180, void, HIDParser_HIDItemStateLocal_Reset, (HIDParser_HIDItemStateLocal state, MethodInfo * method)); -DO_APP_FUNC(0x02A50230, void, HIDParser_HIDItemStateLocal_SetUsage, (HIDParser_HIDItemStateLocal__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x02A50390, int32_t, HIDParser_HIDItemStateLocal_GetUsage, (HIDParser_HIDItemStateLocal__Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x02A50490, HID_UsagePage__Enum, HIDParser_HIDItemStateGlobal_GetUsagePage, (HIDParser_HIDItemStateGlobal__Boxed * __this, int32_t index, HIDParser_HIDItemStateLocal localItemState, MethodInfo * method)); -DO_APP_FUNC(0x02A50520, int32_t, HIDParser_HIDItemStateGlobal_GetPhysicalMin, (HIDParser_HIDItemStateGlobal__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A505B0, int32_t, HIDParser_HIDItemStateGlobal_GetPhysicalMax, (HIDParser_HIDItemStateGlobal__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A50180, void, HIDParser_HIDItemStateLocal_Reset, (HIDParser_HIDItemStateLocal * state, MethodInfo * method)); +DO_APP_FUNC(0x02A50230, void, HIDParser_HIDItemStateLocal_SetUsage, (HIDParser_HIDItemStateLocal * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x02A50390, int32_t, HIDParser_HIDItemStateLocal_GetUsage, (HIDParser_HIDItemStateLocal * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x02A50490, HID_UsagePage__Enum, HIDParser_HIDItemStateGlobal_GetUsagePage, (HIDParser_HIDItemStateGlobal * __this, int32_t index, HIDParser_HIDItemStateLocal * localItemState, MethodInfo * method)); +DO_APP_FUNC(0x02A50520, int32_t, HIDParser_HIDItemStateGlobal_GetPhysicalMin, (HIDParser_HIDItemStateGlobal * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A505B0, int32_t, HIDParser_HIDItemStateGlobal_GetPhysicalMax, (HIDParser_HIDItemStateGlobal * __this, MethodInfo * method)); DO_APP_FUNC(0x02A50640, ReadOnlyArray_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage_, HIDSupport_get_supportedHIDUsages, (MethodInfo * method)); DO_APP_FUNC(0x02A50730, void, HIDSupport_set_supportedHIDUsages, (ReadOnlyArray_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage_ value, MethodInfo * method)); DO_APP_FUNC(0x02A50AB0, void, HIDSupport_Initialize, (MethodInfo * method)); -DO_APP_FUNC(0x00977B80, void, HIDSupport_HIDPageUsage__ctor, (HIDSupport_HIDPageUsage__Boxed * __this, HID_UsagePage__Enum page, int32_t usage, MethodInfo * method)); -DO_APP_FUNC(0x02A50CA0, void, HIDSupport_HIDPageUsage__ctor_1, (HIDSupport_HIDPageUsage__Boxed * __this, HID_GenericDesktop__Enum usage, MethodInfo * method)); +DO_APP_FUNC(0x00977B80, void, HIDSupport_HIDPageUsage__ctor, (HIDSupport_HIDPageUsage * __this, HID_UsagePage__Enum page, int32_t usage, MethodInfo * method)); +DO_APP_FUNC(0x02A50CA0, void, HIDSupport_HIDPageUsage__ctor_1, (HIDSupport_HIDPageUsage * __this, HID_GenericDesktop__Enum usage, MethodInfo * method)); DO_APP_FUNC(0x02A50CB0, bool, EnhancedTouchSupport_get_enabled, (MethodInfo * method)); DO_APP_FUNC(0x02A50CF0, void, EnhancedTouchSupport_Enable, (MethodInfo * method)); DO_APP_FUNC(0x02A50F00, void, EnhancedTouchSupport_Disable, (MethodInfo * method)); @@ -54392,8 +63409,11 @@ DO_APP_FUNC(0x02A51140, void, EnhancedTouchSupport_Reset, (MethodInfo * method)) DO_APP_FUNC(0x02A51210, void, EnhancedTouchSupport_SetUpState, (MethodInfo * method)); DO_APP_FUNC(0x02A514D0, void, EnhancedTouchSupport_TearDownState, (MethodInfo * method)); DO_APP_FUNC(0x02A51790, void, EnhancedTouchSupport_OnDeviceChange, (InputDevice * device, InputDeviceChange__Enum change, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1670, EnhancedTouchSupport_OnDeviceChange__MethodInfo); DO_APP_FUNC(0x02A51D30, void, EnhancedTouchSupport_OnSettingsChange, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD16B0, EnhancedTouchSupport_OnSettingsChange__MethodInfo); DO_APP_FUNC(0x02A51DC0, void, EnhancedTouchSupport_CheckEnabled, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1698, EnhancedTouchSupport_CheckEnabled__MethodInfo); DO_APP_FUNC(0x003BB3C0, Touchscreen *, Finger_get_screen, (Finger * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, Finger_get_index, (Finger * __this, MethodInfo * method)); DO_APP_FUNC(0x02A51E60, bool, Finger_get_isActive, (Finger * __this, MethodInfo * method)); @@ -54403,70 +63423,84 @@ DO_APP_FUNC(0x02A521B0, Touch_1, Finger_get_currentTouch, (Finger * __this, Meth DO_APP_FUNC(0x02A52410, TouchHistory, Finger_get_touchHistory, (Finger * __this, MethodInfo * method)); DO_APP_FUNC(0x02A52510, void, Finger__ctor, (Finger * __this, Touchscreen * screen, int32_t index, InputUpdateType__Enum updateMask, MethodInfo * method)); DO_APP_FUNC(0x02A52F30, bool, Finger_ShouldRecordTouch, (InputControl * control, double time, InputEventPtr eventPtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1608, Finger_ShouldRecordTouch__MethodInfo); DO_APP_FUNC(0x02A53030, void, Finger_OnTouchRecorded, (Finger * __this, InputStateHistory_Record record, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD15F0, Finger_OnTouchRecorded__MethodInfo); DO_APP_FUNC(0x02A53350, Touch_1, Finger_FindTouch, (Finger * __this, uint32_t uniqueId, MethodInfo * method)); DO_APP_FUNC(0x02A53690, TouchHistory, Finger_GetTouchHistory, (Finger * __this, Touch_1 touch, MethodInfo * method)); -DO_APP_FUNC(0x02A53AC0, bool, Touch_1_get_valid, (Touch_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, Finger *, Touch_1_get_finger, (Touch_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A53B00, TouchPhase__Enum_1, Touch_1_get_phase, (Touch_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A53B80, bool, Touch_1_get_began, (Touch_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A53BE0, bool, Touch_1_get_inProgress, (Touch_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A53C90, bool, Touch_1_get_ended, (Touch_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A53D20, int32_t, Touch_1_get_touchId, (Touch_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A53DA0, float, Touch_1_get_pressure, (Touch_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A53E20, Vector2, Touch_1_get_radius, (Touch_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A53EB0, double, Touch_1_get_startTime, (Touch_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A53F30, double, Touch_1_get_time, (Touch_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A53F70, Touchscreen *, Touch_1_get_screen, (Touch_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A53FD0, Vector2, Touch_1_get_screenPosition, (Touch_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A54060, Vector2, Touch_1_get_startScreenPosition, (Touch_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A540F0, Vector2, Touch_1_get_delta, (Touch_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A54180, int32_t, Touch_1_get_tapCount, (Touch_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A54200, bool, Touch_1_get_isTap, (Touch_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A54280, int32_t, Touch_1_get_displayIndex, (Touch_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A54300, bool, Touch_1_get_isInProgress, (Touch_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A54370, uint32_t, Touch_1_get_updateStepCount, (Touch_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A543F0, uint32_t, Touch_1_get_uniqueId, (Touch_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A54470, TouchState, Touch_1_get_state, (Touch_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A544B0, Touch_ExtraDataPerTouchState, Touch_1_get_extraData, (Touch_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A544F0, TouchHistory, Touch_1_get_history, (Touch_1__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A53AC0, bool, Touch_1_get_valid, (Touch_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Finger *, Touch_1_get_finger, (Touch_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A53B00, TouchPhase__Enum_1, Touch_1_get_phase, (Touch_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A53B80, bool, Touch_1_get_began, (Touch_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A53BE0, bool, Touch_1_get_inProgress, (Touch_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A53C90, bool, Touch_1_get_ended, (Touch_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A53D20, int32_t, Touch_1_get_touchId, (Touch_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A53DA0, float, Touch_1_get_pressure, (Touch_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A53E20, Vector2, Touch_1_get_radius, (Touch_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A53EB0, double, Touch_1_get_startTime, (Touch_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A53F30, double, Touch_1_get_time, (Touch_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A53F70, Touchscreen *, Touch_1_get_screen, (Touch_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A53FD0, Vector2, Touch_1_get_screenPosition, (Touch_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A54060, Vector2, Touch_1_get_startScreenPosition, (Touch_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A540F0, Vector2, Touch_1_get_delta, (Touch_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A54180, int32_t, Touch_1_get_tapCount, (Touch_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A54200, bool, Touch_1_get_isTap, (Touch_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A54280, int32_t, Touch_1_get_displayIndex, (Touch_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A54300, bool, Touch_1_get_isInProgress, (Touch_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A54370, uint32_t, Touch_1_get_updateStepCount, (Touch_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A543F0, uint32_t, Touch_1_get_uniqueId, (Touch_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A54470, TouchState *, Touch_1_get_state, (Touch_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A544B0, Touch_ExtraDataPerTouchState *, Touch_1_get_extraData, (Touch_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A544F0, TouchHistory, Touch_1_get_history, (Touch_1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD15A0, Touch_1_get_history__MethodInfo); DO_APP_FUNC(0x02A54630, ReadOnlyArray_1_UnityEngine_InputSystem_EnhancedTouch_Touch_, Touch_1_get_activeTouches, (MethodInfo * method)); DO_APP_FUNC(0x02A54730, ReadOnlyArray_1_UnityEngine_InputSystem_EnhancedTouch_Finger_, Touch_1_get_fingers, (MethodInfo * method)); DO_APP_FUNC(0x02A547C0, ReadOnlyArray_1_UnityEngine_InputSystem_EnhancedTouch_Finger_, Touch_1_get_activeFingers, (MethodInfo * method)); DO_APP_FUNC(0x02A54860, IEnumerable_1_UnityEngine_InputSystem_Touchscreen_ *, Touch_1_get_screens, (MethodInfo * method)); DO_APP_FUNC(0x02A548F0, void, Touch_1_add_onFingerDown, (Action_1_UnityEngine_InputSystem_EnhancedTouch_Finger_ * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1540, Touch_1_add_onFingerDown__MethodInfo); DO_APP_FUNC(0x02A549C0, void, Touch_1_remove_onFingerDown, (Action_1_UnityEngine_InputSystem_EnhancedTouch_Finger_ * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1550, Touch_1_remove_onFingerDown__MethodInfo); DO_APP_FUNC(0x02A54A90, void, Touch_1_add_onFingerUp, (Action_1_UnityEngine_InputSystem_EnhancedTouch_Finger_ * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1580, Touch_1_add_onFingerUp__MethodInfo); DO_APP_FUNC(0x02A54B60, void, Touch_1_remove_onFingerUp, (Action_1_UnityEngine_InputSystem_EnhancedTouch_Finger_ * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1588, Touch_1_remove_onFingerUp__MethodInfo); DO_APP_FUNC(0x02A54C30, void, Touch_1_add_onFingerMove, (Action_1_UnityEngine_InputSystem_EnhancedTouch_Finger_ * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1570, Touch_1_add_onFingerMove__MethodInfo); DO_APP_FUNC(0x02A54D00, void, Touch_1_remove_onFingerMove, (Action_1_UnityEngine_InputSystem_EnhancedTouch_Finger_ * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1578, Touch_1_remove_onFingerMove__MethodInfo); DO_APP_FUNC(0x02A54DD0, int32_t, Touch_1_get_maxHistoryLengthPerFinger, (MethodInfo * method)); -DO_APP_FUNC(0x01150250, void, Touch_1__ctor, (Touch_1__Boxed * __this, Finger * finger, InputStateHistory_1_TValue_Record_TouchState_ touchRecord, MethodInfo * method)); -DO_APP_FUNC(0x02A54E30, String *, Touch_1_ToString, (Touch_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A55260, bool, Touch_1_Equals, (Touch_1__Boxed * __this, Touch_1 other, MethodInfo * method)); -DO_APP_FUNC(0x02A55310, bool, Touch_1_Equals_1, (Touch_1__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02A553E0, int32_t, Touch_1_GetHashCode, (Touch_1__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01150250, void, Touch_1__ctor, (Touch_1 * __this, Finger * finger, InputStateHistory_1_TValue_Record_TouchState_ touchRecord, MethodInfo * method)); +DO_APP_FUNC(0x02A54E30, String *, Touch_1_ToString, (Touch_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A55260, bool, Touch_1_Equals, (Touch_1 * __this, Touch_1 other, MethodInfo * method)); +DO_APP_FUNC(0x02A55310, bool, Touch_1_Equals_1, (Touch_1 * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02A553E0, int32_t, Touch_1_GetHashCode, (Touch_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02A55480, void, Touch_1_AddTouchscreen, (Touchscreen * screen, MethodInfo * method)); DO_APP_FUNC(0x02A55520, void, Touch_1_RemoveTouchscreen, (Touchscreen * screen, MethodInfo * method)); DO_APP_FUNC(0x02A55650, void, Touch_1_BeginUpdate, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD16A8, Touch_1_BeginUpdate__MethodInfo); DO_APP_FUNC(0x02A556D0, Touch_GlobalState, Touch_1_CreateGlobalState, (MethodInfo * method)); DO_APP_FUNC(0x02A55700, ISavedState *, Touch_1_SaveAndResetState, (MethodInfo * method)); DO_APP_FUNC(0x02A55E50, void, Touch_1__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02A55F90, void, Touch_FingerAndTouchState_AddFingers, (Touch_FingerAndTouchState__Boxed * __this, Touchscreen * screen, MethodInfo * method)); -DO_APP_FUNC(0x02A561D0, void, Touch_FingerAndTouchState_RemoveFingers, (Touch_FingerAndTouchState__Boxed * __this, Touchscreen * screen, MethodInfo * method)); -DO_APP_FUNC(0x02A56300, void, Touch_FingerAndTouchState_Destroy, (Touch_FingerAndTouchState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A563D0, void, Touch_FingerAndTouchState_UpdateActiveFingers, (Touch_FingerAndTouchState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A56520, void, Touch_FingerAndTouchState_UpdateActiveTouches, (Touch_FingerAndTouchState__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A55F90, void, Touch_FingerAndTouchState_AddFingers, (Touch_FingerAndTouchState * __this, Touchscreen * screen, MethodInfo * method)); +DO_APP_FUNC(0x02A561D0, void, Touch_FingerAndTouchState_RemoveFingers, (Touch_FingerAndTouchState * __this, Touchscreen * screen, MethodInfo * method)); +DO_APP_FUNC(0x02A56300, void, Touch_FingerAndTouchState_Destroy, (Touch_FingerAndTouchState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A563D0, void, Touch_FingerAndTouchState_UpdateActiveFingers, (Touch_FingerAndTouchState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A56520, void, Touch_FingerAndTouchState_UpdateActiveTouches, (Touch_FingerAndTouchState * __this, MethodInfo * method)); DO_APP_FUNC(0x02A56C50, void, Touch_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Touch_c__ctor, (Touch_c * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A56D00, void, Touch_c__SaveAndResetState_b__80_0, (Touch_c * __this, Touch_GlobalState state, MethodInfo * method)); +DO_APP_FUNC(0x02A56D00, void, Touch_c__SaveAndResetState_b__80_0, (Touch_c * __this, Touch_GlobalState * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1500, Touch_c__SaveAndResetState_b__80_0__MethodInfo); DO_APP_FUNC(0x003AE050, void, Touch_c__SaveAndResetState_b__80_1, (Touch_c * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A56EE0, void, TouchHistory__ctor, (TouchHistory__Boxed * __this, Finger * finger, InputStateHistory_1_TouchState_ * history, int32_t startIndex, int32_t count, MethodInfo * method)); -DO_APP_FUNC(0x02A56FF0, IEnumerator_1_UnityEngine_InputSystem_EnhancedTouch_Touch_ *, TouchHistory_GetEnumerator, (TouchHistory__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A570C0, IEnumerator *, TouchHistory_System_Collections_IEnumerable_GetEnumerator, (TouchHistory__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, int32_t, TouchHistory_get_Count, (TouchHistory__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A570D0, Touch_1, TouchHistory_get_Item, (TouchHistory__Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x02A57250, void, TouchHistory_CheckValid, (TouchHistory__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1518, Touch_c__SaveAndResetState_b__80_1__MethodInfo); +DO_APP_FUNC(0x02A56EE0, void, TouchHistory__ctor, (TouchHistory * __this, Finger * finger, InputStateHistory_1_TouchState_ * history, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC(0x02A56FF0, IEnumerator_1_UnityEngine_InputSystem_EnhancedTouch_Touch_ *, TouchHistory_GetEnumerator, (TouchHistory * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A570C0, IEnumerator *, TouchHistory_System_Collections_IEnumerable_GetEnumerator, (TouchHistory * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, int32_t, TouchHistory_get_Count, (TouchHistory * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A570D0, Touch_1, TouchHistory_get_Item, (TouchHistory * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD14A8, TouchHistory_get_Item__MethodInfo); +DO_APP_FUNC(0x02A57250, void, TouchHistory_CheckValid, (TouchHistory * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD14B0, TouchHistory_CheckValid__MethodInfo); DO_APP_FUNC(0x02A57320, void, TouchHistory_Enumerator__ctor, (TouchHistory_Enumerator * __this, TouchHistory owner, MethodInfo * method)); DO_APP_FUNC(0x02A573A0, bool, TouchHistory_Enumerator_MoveNext, (TouchHistory_Enumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x01D15370, void, TouchHistory_Enumerator_Reset, (TouchHistory_Enumerator * __this, MethodInfo * method)); @@ -54480,9 +63514,13 @@ DO_APP_FUNC(0x02A574D0, void, TouchSimulation_Enable, (MethodInfo * method)); DO_APP_FUNC(0x02A578A0, void, TouchSimulation_Disable, (MethodInfo * method)); DO_APP_FUNC(0x02A57A50, void, TouchSimulation_Destroy, (MethodInfo * method)); DO_APP_FUNC(0x02A57C60, void, TouchSimulation_AddPointer, (TouchSimulation * __this, Pointer_2 * pointer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1408, TouchSimulation_AddPointer__MethodInfo); DO_APP_FUNC(0x02A57ED0, void, TouchSimulation_RemovePointer, (TouchSimulation * __this, Pointer_2 * pointer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1458, TouchSimulation_RemovePointer__MethodInfo); DO_APP_FUNC(0x02A58610, void, TouchSimulation_OnEvent, (TouchSimulation * __this, InputEventPtr eventPtr, InputDevice * device, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD13B8, TouchSimulation_OnEvent__MethodInfo); DO_APP_FUNC(0x02A58D70, void, TouchSimulation_OnDeviceChange, (TouchSimulation * __this, InputDevice * device, InputDeviceChange__Enum change, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD13A0, TouchSimulation_OnDeviceChange__MethodInfo); DO_APP_FUNC(0x02A58EC0, void, TouchSimulation_OnEnable, (TouchSimulation * __this, MethodInfo * method)); DO_APP_FUNC(0x02A59630, void, TouchSimulation_OnDisable, (TouchSimulation * __this, MethodInfo * method)); DO_APP_FUNC(0x02A59800, void, TouchSimulation_UpdateTouch, (TouchSimulation * __this, int32_t touchIndex, int32_t pointerIndex, TouchPhase__Enum_1 phase, InputEventPtr eventPtr, MethodInfo * method)); @@ -54537,12 +63575,12 @@ DO_APP_FUNC(0x02A5AD30, bool, DualSenseGamepadHID_UnityEngine_InputSystem_LowLev DO_APP_FUNC(0x02A5AEE0, bool, DualSenseGamepadHID_UnityEngine_InputSystem_LowLevel_IEventPreProcessor_PreProcessEvent, (DualSenseGamepadHID * __this, InputEventPtr eventPtr, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, DualSenseGamepadHID_OnNextUpdate, (DualSenseGamepadHID * __this, MethodInfo * method)); DO_APP_FUNC(0x02A5B190, void, DualSenseGamepadHID_OnStateEvent, (DualSenseGamepadHID * __this, InputEventPtr eventPtr, MethodInfo * method)); -DO_APP_FUNC(0x0041AF00, bool, DualSenseGamepadHID_GetStateOffsetForEvent, (DualSenseGamepadHID * __this, InputControl * control, InputEventPtr eventPtr, uint32_t offset, MethodInfo * method)); +DO_APP_FUNC(0x0041AF00, bool, DualSenseGamepadHID_GetStateOffsetForEvent, (DualSenseGamepadHID * __this, InputControl * control, InputEventPtr eventPtr, uint32_t * offset, MethodInfo * method)); DO_APP_FUNC(0x018BD410, void, DualSenseGamepadHID__ctor, (DualSenseGamepadHID * __this, MethodInfo * method)); DO_APP_FUNC(0x02A41570, FourCC, DualSenseGamepadHID_DualSenseHIDGenericInputReport_get_Format, (MethodInfo * method)); -DO_APP_FUNC(0x02A5B390, DualSenseHIDInputReport, DualSenseGamepadHID_DualSenseHIDUSBInputReport_ToHIDInputReport, (DualSenseGamepadHID_DualSenseHIDUSBInputReport__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A5B3E0, DualSenseHIDInputReport, DualSenseGamepadHID_DualSenseHIDBluetoothInputReport_ToHIDInputReport, (DualSenseGamepadHID_DualSenseHIDBluetoothInputReport__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A5B430, DualSenseHIDInputReport, DualSenseGamepadHID_DualSenseHIDMinimalInputReport_ToHIDInputReport, (DualSenseGamepadHID_DualSenseHIDMinimalInputReport__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5B390, DualSenseHIDInputReport, DualSenseGamepadHID_DualSenseHIDUSBInputReport_ToHIDInputReport, (DualSenseGamepadHID_DualSenseHIDUSBInputReport * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5B3E0, DualSenseHIDInputReport, DualSenseGamepadHID_DualSenseHIDBluetoothInputReport_ToHIDInputReport, (DualSenseGamepadHID_DualSenseHIDBluetoothInputReport * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5B430, DualSenseHIDInputReport, DualSenseGamepadHID_DualSenseHIDMinimalInputReport_ToHIDInputReport, (DualSenseGamepadHID_DualSenseHIDMinimalInputReport * __this, MethodInfo * method)); DO_APP_FUNC(0x02A5B480, void, DualSenseGamepadHID_DualSenseHIDMinimalInputReport__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02A5A330, ButtonControl *, DualShock4GamepadHID_get_leftTriggerButton, (DualShock4GamepadHID * __this, MethodInfo * method)); DO_APP_FUNC(0x02A5A340, void, DualShock4GamepadHID_set_leftTriggerButton, (DualShock4GamepadHID * __this, ButtonControl * value, MethodInfo * method)); @@ -54560,10 +63598,10 @@ DO_APP_FUNC(0x02A5BE90, bool, DualShock4GamepadHID_SetMotorSpeedsAndLightBarColo DO_APP_FUNC(0x02A5C0E0, bool, DualShock4GamepadHID_UnityEngine_InputSystem_LowLevel_IEventPreProcessor_PreProcessEvent, (DualShock4GamepadHID * __this, InputEventPtr eventPtr, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, DualShock4GamepadHID_OnNextUpdate, (DualShock4GamepadHID * __this, MethodInfo * method)); DO_APP_FUNC(0x02A5C2A0, void, DualShock4GamepadHID_OnStateEvent, (DualShock4GamepadHID * __this, InputEventPtr eventPtr, MethodInfo * method)); -DO_APP_FUNC(0x0041AF00, bool, DualShock4GamepadHID_GetStateOffsetForEvent, (DualShock4GamepadHID * __this, InputControl * control, InputEventPtr eventPtr, uint32_t offset, MethodInfo * method)); +DO_APP_FUNC(0x0041AF00, bool, DualShock4GamepadHID_GetStateOffsetForEvent, (DualShock4GamepadHID * __this, InputControl * control, InputEventPtr eventPtr, uint32_t * offset, MethodInfo * method)); DO_APP_FUNC(0x018BD410, void, DualShock4GamepadHID__ctor, (DualShock4GamepadHID * __this, MethodInfo * method)); DO_APP_FUNC(0x02A41570, FourCC, DualShock4GamepadHID_DualShock4HIDGenericInputReport_get_Format, (MethodInfo * method)); -DO_APP_FUNC(0x02A5C4A0, DualShock4HIDInputReport, DualShock4GamepadHID_DualShock4HIDGenericInputReport_ToHIDInputReport, (DualShock4GamepadHID_DualShock4HIDGenericInputReport__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5C4A0, DualShock4HIDInputReport, DualShock4GamepadHID_DualShock4HIDGenericInputReport_ToHIDInputReport, (DualShock4GamepadHID_DualShock4HIDGenericInputReport * __this, MethodInfo * method)); DO_APP_FUNC(0x02A5A330, ButtonControl *, DualShock3GamepadHID_get_leftTriggerButton, (DualShock3GamepadHID * __this, MethodInfo * method)); DO_APP_FUNC(0x02A5A340, void, DualShock3GamepadHID_set_leftTriggerButton, (DualShock3GamepadHID * __this, ButtonControl * value, MethodInfo * method)); DO_APP_FUNC(0x02A5A3A0, ButtonControl *, DualShock3GamepadHID_get_rightTriggerButton, (DualShock3GamepadHID * __this, MethodInfo * method)); @@ -54573,304 +63611,337 @@ DO_APP_FUNC(0x02A5A420, void, DualShock3GamepadHID_set_playStationButton, (DualS DO_APP_FUNC(0x02A5C4F0, void, DualShock3GamepadHID_FinishSetup, (DualShock3GamepadHID * __this, MethodInfo * method)); DO_APP_FUNC(0x018BD410, void, DualShock3GamepadHID__ctor, (DualShock3GamepadHID * __this, MethodInfo * method)); DO_APP_FUNC(0x02A5C6C0, void, DualShockSupport_Initialize, (MethodInfo * method)); -DO_APP_FUNC(0x02A5CD80, FourCC, DualSenseHIDInputReport_get_format, (DualSenseHIDInputReport__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5CD80, FourCC, DualSenseHIDInputReport_get_format, (DualSenseHIDInputReport * __this, MethodInfo * method)); DO_APP_FUNC(0x02A5CDE0, void, DualSenseHIDInputReport__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02A41580, FourCC, DualSenseHIDUSBOutputReport_get_Type, (MethodInfo * method)); -DO_APP_FUNC(0x02A41580, FourCC, DualSenseHIDUSBOutputReport_get_typeStatic, (DualSenseHIDUSBOutputReport__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A41580, FourCC, DualSenseHIDUSBOutputReport_get_typeStatic, (DualSenseHIDUSBOutputReport * __this, MethodInfo * method)); DO_APP_FUNC(0x02A5CE20, DualSenseHIDUSBOutputReport, DualSenseHIDUSBOutputReport_Create, (DualSenseHIDOutputReportPayload payload, MethodInfo * method)); DO_APP_FUNC(0x02A41580, FourCC, DualSenseHIDBluetoothOutputReport_get_Type, (MethodInfo * method)); -DO_APP_FUNC(0x02A41580, FourCC, DualSenseHIDBluetoothOutputReport_get_typeStatic, (DualSenseHIDBluetoothOutputReport__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A41580, FourCC, DualSenseHIDBluetoothOutputReport_get_typeStatic, (DualSenseHIDBluetoothOutputReport * __this, MethodInfo * method)); DO_APP_FUNC(0x02A5CE70, DualSenseHIDBluetoothOutputReport, DualSenseHIDBluetoothOutputReport_Create, (DualSenseHIDOutputReportPayload payload, uint8_t outputSequenceId, MethodInfo * method)); -DO_APP_FUNC(0x02A5CEE0, FourCC, DualShock4HIDInputReport_get_format, (DualShock4HIDInputReport__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5CEE0, FourCC, DualShock4HIDInputReport_get_format, (DualShock4HIDInputReport * __this, MethodInfo * method)); DO_APP_FUNC(0x02A5CF40, void, DualShock4HIDInputReport__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02A41570, FourCC, DualShock3HIDInputReport_get_format, (DualShock3HIDInputReport__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A41570, FourCC, DualShock3HIDInputReport_get_format, (DualShock3HIDInputReport * __this, MethodInfo * method)); DO_APP_FUNC(0x02A41580, FourCC, DualShockHIDOutputReport_get_Type, (MethodInfo * method)); -DO_APP_FUNC(0x02A41580, FourCC, DualShockHIDOutputReport_get_typeStatic, (DualShockHIDOutputReport__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A5CF80, void, DualShockHIDOutputReport_SetMotorSpeeds, (DualShockHIDOutputReport__Boxed * __this, float lowFreq, float highFreq, MethodInfo * method)); -DO_APP_FUNC(0x02A5CFD0, void, DualShockHIDOutputReport_SetColor, (DualShockHIDOutputReport__Boxed * __this, Color color, MethodInfo * method)); +DO_APP_FUNC(0x02A41580, FourCC, DualShockHIDOutputReport_get_typeStatic, (DualShockHIDOutputReport * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5CF80, void, DualShockHIDOutputReport_SetMotorSpeeds, (DualShockHIDOutputReport * __this, float lowFreq, float highFreq, MethodInfo * method)); +DO_APP_FUNC(0x02A5CFD0, void, DualShockHIDOutputReport_SetColor, (DualShockHIDOutputReport * __this, Color color, MethodInfo * method)); DO_APP_FUNC(0x02A5D050, DualShockHIDOutputReport, DualShockHIDOutputReport_Create, (MethodInfo * method)); -DO_APP_FUNC(0x00BCBB00, float, DualMotorRumble_get_lowFrequencyMotorSpeed, (DualMotorRumble__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C42840, void, DualMotorRumble_set_lowFrequencyMotorSpeed, (DualMotorRumble__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x00C4B940, float, DualMotorRumble_get_highFrequencyMotorSpeed, (DualMotorRumble__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C7A0F0, void, DualMotorRumble_set_highFrequencyMotorSpeed, (DualMotorRumble__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02A5D080, bool, DualMotorRumble_get_isRumbling, (DualMotorRumble__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A5D0C0, void, DualMotorRumble_PauseHaptics, (DualMotorRumble__Boxed * __this, InputDevice * device, MethodInfo * method)); -DO_APP_FUNC(0x02A5D1D0, void, DualMotorRumble_ResumeHaptics, (DualMotorRumble__Boxed * __this, InputDevice * device, MethodInfo * method)); -DO_APP_FUNC(0x02A5D280, void, DualMotorRumble_ResetHaptics, (DualMotorRumble__Boxed * __this, InputDevice * device, MethodInfo * method)); -DO_APP_FUNC(0x02A5D330, void, DualMotorRumble_SetMotorSpeeds, (DualMotorRumble__Boxed * __this, InputDevice * device, float lowFrequency, float highFrequency, MethodInfo * method)); +DO_APP_FUNC(0x00BCBB00, float, DualMotorRumble_get_lowFrequencyMotorSpeed, (DualMotorRumble * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C42840, void, DualMotorRumble_set_lowFrequencyMotorSpeed, (DualMotorRumble * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x00C4B940, float, DualMotorRumble_get_highFrequencyMotorSpeed, (DualMotorRumble * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C7A0F0, void, DualMotorRumble_set_highFrequencyMotorSpeed, (DualMotorRumble * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02A5D080, bool, DualMotorRumble_get_isRumbling, (DualMotorRumble * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5D0C0, void, DualMotorRumble_PauseHaptics, (DualMotorRumble * __this, InputDevice * device, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1328, DualMotorRumble_PauseHaptics__MethodInfo); +DO_APP_FUNC(0x02A5D1D0, void, DualMotorRumble_ResumeHaptics, (DualMotorRumble * __this, InputDevice * device, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1340, DualMotorRumble_ResumeHaptics__MethodInfo); +DO_APP_FUNC(0x02A5D280, void, DualMotorRumble_ResetHaptics, (DualMotorRumble * __this, InputDevice * device, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1338, DualMotorRumble_ResetHaptics__MethodInfo); +DO_APP_FUNC(0x02A5D330, void, DualMotorRumble_SetMotorSpeeds, (DualMotorRumble * __this, InputDevice * device, float lowFrequency, float highFrequency, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1280, DualMotorRumble_SetMotorSpeeds__MethodInfo); DO_APP_FUNC(0x02A5D470, FourCC, DisableDeviceCommand_get_Type, (MethodInfo * method)); -DO_APP_FUNC(0x02A5D470, FourCC, DisableDeviceCommand_get_typeStatic, (DisableDeviceCommand__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5D470, FourCC, DisableDeviceCommand_get_typeStatic, (DisableDeviceCommand * __this, MethodInfo * method)); DO_APP_FUNC(0x02A5D480, DisableDeviceCommand, DisableDeviceCommand_Create, (MethodInfo * method)); DO_APP_FUNC(0x02A5D4A0, FourCC, EnableDeviceCommand_get_Type, (MethodInfo * method)); -DO_APP_FUNC(0x02A5D4A0, FourCC, EnableDeviceCommand_get_typeStatic, (EnableDeviceCommand__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5D4A0, FourCC, EnableDeviceCommand_get_typeStatic, (EnableDeviceCommand * __this, MethodInfo * method)); DO_APP_FUNC(0x02A5D4B0, EnableDeviceCommand, EnableDeviceCommand_Create, (MethodInfo * method)); DO_APP_FUNC(0x02A5D4D0, FourCC, EnableIMECompositionCommand_get_Type, (MethodInfo * method)); -DO_APP_FUNC(0x02A5D4E0, bool, EnableIMECompositionCommand_get_imeEnabled, (EnableIMECompositionCommand__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A5D4D0, FourCC, EnableIMECompositionCommand_get_typeStatic, (EnableIMECompositionCommand__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5D4E0, bool, EnableIMECompositionCommand_get_imeEnabled, (EnableIMECompositionCommand * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5D4D0, FourCC, EnableIMECompositionCommand_get_typeStatic, (EnableIMECompositionCommand * __this, MethodInfo * method)); DO_APP_FUNC(0x02A5D4F0, EnableIMECompositionCommand, EnableIMECompositionCommand_Create, (bool enabled, MethodInfo * method)); DO_APP_FUNC(0x02A5D520, FourCC, InitiateUserAccountPairingCommand_get_Type, (MethodInfo * method)); -DO_APP_FUNC(0x02A5D520, FourCC, InitiateUserAccountPairingCommand_get_typeStatic, (InitiateUserAccountPairingCommand__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5D520, FourCC, InitiateUserAccountPairingCommand_get_typeStatic, (InitiateUserAccountPairingCommand * __this, MethodInfo * method)); DO_APP_FUNC(0x02A5D530, InitiateUserAccountPairingCommand, InitiateUserAccountPairingCommand_Create, (MethodInfo * method)); DO_APP_FUNC(0x02A5D550, void, InputDeviceCommandDelegate__ctor, (InputDeviceCommandDelegate * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x015BC880, Nullable_1_Int64_, InputDeviceCommandDelegate_Invoke, (InputDeviceCommandDelegate * __this, InputDevice * device, InputDeviceCommand * command, MethodInfo * method)); DO_APP_FUNC(0x0042F0F0, IAsyncResult *, InputDeviceCommandDelegate_BeginInvoke, (InputDeviceCommandDelegate * __this, InputDevice * device, InputDeviceCommand * command, AsyncCallback * callback, Object * object, MethodInfo * method)); DO_APP_FUNC(0x00BC3650, Nullable_1_Int64_, InputDeviceCommandDelegate_EndInvoke, (InputDeviceCommandDelegate * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x015AD040, void, InputDeviceExecuteCommandDelegate__ctor, (InputDeviceExecuteCommandDelegate * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003F42D0, int64_t, InputDeviceExecuteCommandDelegate_Invoke, (InputDeviceExecuteCommandDelegate * __this, InputDeviceCommand command, MethodInfo * method)); -DO_APP_FUNC(0x02A5D710, IAsyncResult *, InputDeviceExecuteCommandDelegate_BeginInvoke, (InputDeviceExecuteCommandDelegate * __this, InputDeviceCommand command, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x02A5D7A0, int64_t, InputDeviceExecuteCommandDelegate_EndInvoke, (InputDeviceExecuteCommandDelegate * __this, InputDeviceCommand command, IAsyncResult * result, MethodInfo * method)); -DO_APP_FUNC(0x02A5D7D0, int32_t, InputDeviceCommand_get_payloadSizeInBytes, (InputDeviceCommand__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A5D7E0, Void *, InputDeviceCommand_get_payloadPtr, (InputDeviceCommand__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00977B80, void, InputDeviceCommand__ctor, (InputDeviceCommand__Boxed * __this, FourCC type, int32_t sizeInBytes, MethodInfo * method)); +DO_APP_FUNC(0x003F42D0, int64_t, InputDeviceExecuteCommandDelegate_Invoke, (InputDeviceExecuteCommandDelegate * __this, InputDeviceCommand * command, MethodInfo * method)); +DO_APP_FUNC(0x02A5D710, IAsyncResult *, InputDeviceExecuteCommandDelegate_BeginInvoke, (InputDeviceExecuteCommandDelegate * __this, InputDeviceCommand * command, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x02A5D7A0, int64_t, InputDeviceExecuteCommandDelegate_EndInvoke, (InputDeviceExecuteCommandDelegate * __this, InputDeviceCommand * command, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x02A5D7D0, int32_t, InputDeviceCommand_get_payloadSizeInBytes, (InputDeviceCommand * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5D7E0, Void *, InputDeviceCommand_get_payloadPtr, (InputDeviceCommand * __this, MethodInfo * method)); +DO_APP_FUNC(0x00977B80, void, InputDeviceCommand__ctor, (InputDeviceCommand * __this, FourCC type, int32_t sizeInBytes, MethodInfo * method)); DO_APP_FUNC(0x02A5D7F0, NativeArray_1_System_Byte_, InputDeviceCommand_AllocateNative, (FourCC type, int32_t payloadSize, MethodInfo * method)); -DO_APP_FUNC(0x003CB690, FourCC, InputDeviceCommand_get_typeStatic, (InputDeviceCommand__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x003CB690, FourCC, InputDeviceCommand_get_typeStatic, (InputDeviceCommand * __this, MethodInfo * method)); DO_APP_FUNC(0x02A5D8A0, FourCC, QueryCanRunInBackground_get_Type, (MethodInfo * method)); -DO_APP_FUNC(0x02A5D8A0, FourCC, QueryCanRunInBackground_get_typeStatic, (QueryCanRunInBackground__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5D8A0, FourCC, QueryCanRunInBackground_get_typeStatic, (QueryCanRunInBackground * __this, MethodInfo * method)); DO_APP_FUNC(0x02A5D8B0, QueryCanRunInBackground, QueryCanRunInBackground_Create, (MethodInfo * method)); DO_APP_FUNC(0x02A5D8E0, FourCC, QueryDimensionsCommand_get_Type, (MethodInfo * method)); -DO_APP_FUNC(0x02A5D8E0, FourCC, QueryDimensionsCommand_get_typeStatic, (QueryDimensionsCommand__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5D8E0, FourCC, QueryDimensionsCommand_get_typeStatic, (QueryDimensionsCommand * __this, MethodInfo * method)); DO_APP_FUNC(0x02A5D8F0, QueryDimensionsCommand, QueryDimensionsCommand_Create, (MethodInfo * method)); DO_APP_FUNC(0x02A5D920, FourCC, QueryEnabledStateCommand_get_Type, (MethodInfo * method)); -DO_APP_FUNC(0x02A5D920, FourCC, QueryEnabledStateCommand_get_typeStatic, (QueryEnabledStateCommand__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5D920, FourCC, QueryEnabledStateCommand_get_typeStatic, (QueryEnabledStateCommand * __this, MethodInfo * method)); DO_APP_FUNC(0x02A5D930, QueryEnabledStateCommand, QueryEnabledStateCommand_Create, (MethodInfo * method)); DO_APP_FUNC(0x02A5D960, FourCC, QueryKeyboardLayoutCommand_get_Type, (MethodInfo * method)); -DO_APP_FUNC(0x02A5D970, String *, QueryKeyboardLayoutCommand_ReadLayoutName, (QueryKeyboardLayoutCommand__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A5D990, void, QueryKeyboardLayoutCommand_WriteLayoutName, (QueryKeyboardLayoutCommand__Boxed * __this, String * name, MethodInfo * method)); -DO_APP_FUNC(0x02A5D960, FourCC, QueryKeyboardLayoutCommand_get_typeStatic, (QueryKeyboardLayoutCommand__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5D970, String *, QueryKeyboardLayoutCommand_ReadLayoutName, (QueryKeyboardLayoutCommand * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5D990, void, QueryKeyboardLayoutCommand_WriteLayoutName, (QueryKeyboardLayoutCommand * __this, String * name, MethodInfo * method)); +DO_APP_FUNC(0x02A5D960, FourCC, QueryKeyboardLayoutCommand_get_typeStatic, (QueryKeyboardLayoutCommand * __this, MethodInfo * method)); DO_APP_FUNC(0x02A5D9D0, QueryKeyboardLayoutCommand, QueryKeyboardLayoutCommand_Create, (MethodInfo * method)); DO_APP_FUNC(0x02A5DA10, FourCC, QueryKeyNameCommand_get_Type, (MethodInfo * method)); -DO_APP_FUNC(0x02A5DA20, String *, QueryKeyNameCommand_ReadKeyName, (QueryKeyNameCommand__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A5DA10, FourCC, QueryKeyNameCommand_get_typeStatic, (QueryKeyNameCommand__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5DA20, String *, QueryKeyNameCommand_ReadKeyName, (QueryKeyNameCommand * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5DA10, FourCC, QueryKeyNameCommand_get_typeStatic, (QueryKeyNameCommand * __this, MethodInfo * method)); DO_APP_FUNC(0x02A5DA40, QueryKeyNameCommand, QueryKeyNameCommand_Create, (Key__Enum key, MethodInfo * method)); DO_APP_FUNC(0x02A5DA90, FourCC, QueryPairedUserAccountCommand_get_Type, (MethodInfo * method)); -DO_APP_FUNC(0x02A5DAA0, String *, QueryPairedUserAccountCommand_get_id, (QueryPairedUserAccountCommand__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A5DAC0, void, QueryPairedUserAccountCommand_set_id, (QueryPairedUserAccountCommand__Boxed * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x02A5DC00, String *, QueryPairedUserAccountCommand_get_name, (QueryPairedUserAccountCommand__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A5DC20, void, QueryPairedUserAccountCommand_set_name, (QueryPairedUserAccountCommand__Boxed * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x02A5DA90, FourCC, QueryPairedUserAccountCommand_get_typeStatic, (QueryPairedUserAccountCommand__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5DAA0, String *, QueryPairedUserAccountCommand_get_id, (QueryPairedUserAccountCommand * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5DAC0, void, QueryPairedUserAccountCommand_set_id, (QueryPairedUserAccountCommand * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1248, QueryPairedUserAccountCommand_set_id__MethodInfo); +DO_APP_FUNC(0x02A5DC00, String *, QueryPairedUserAccountCommand_get_name, (QueryPairedUserAccountCommand * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5DC20, void, QueryPairedUserAccountCommand_set_name, (QueryPairedUserAccountCommand * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1258, QueryPairedUserAccountCommand_set_name__MethodInfo); +DO_APP_FUNC(0x02A5DA90, FourCC, QueryPairedUserAccountCommand_get_typeStatic, (QueryPairedUserAccountCommand * __this, MethodInfo * method)); DO_APP_FUNC(0x02A5DD60, QueryPairedUserAccountCommand, QueryPairedUserAccountCommand_Create, (MethodInfo * method)); DO_APP_FUNC(0x02A5DDA0, FourCC, QuerySamplingFrequencyCommand_get_Type, (MethodInfo * method)); -DO_APP_FUNC(0x02A5DDA0, FourCC, QuerySamplingFrequencyCommand_get_typeStatic, (QuerySamplingFrequencyCommand__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5DDA0, FourCC, QuerySamplingFrequencyCommand_get_typeStatic, (QuerySamplingFrequencyCommand * __this, MethodInfo * method)); DO_APP_FUNC(0x02A5DDB0, QuerySamplingFrequencyCommand, QuerySamplingFrequencyCommand_Create, (MethodInfo * method)); DO_APP_FUNC(0x02A5DDE0, FourCC, QueryUserIdCommand_get_Type, (MethodInfo * method)); -DO_APP_FUNC(0x02A5D970, String *, QueryUserIdCommand_ReadId, (QueryUserIdCommand__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A5DDE0, FourCC, QueryUserIdCommand_get_typeStatic, (QueryUserIdCommand__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5D970, String *, QueryUserIdCommand_ReadId, (QueryUserIdCommand * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5DDE0, FourCC, QueryUserIdCommand_get_typeStatic, (QueryUserIdCommand * __this, MethodInfo * method)); DO_APP_FUNC(0x02A5DDF0, QueryUserIdCommand, QueryUserIdCommand_Create, (MethodInfo * method)); DO_APP_FUNC(0x02A5DE30, FourCC, RequestResetCommand_get_Type, (MethodInfo * method)); -DO_APP_FUNC(0x02A5DE30, FourCC, RequestResetCommand_get_typeStatic, (RequestResetCommand__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5DE30, FourCC, RequestResetCommand_get_typeStatic, (RequestResetCommand * __this, MethodInfo * method)); DO_APP_FUNC(0x02A5DE40, RequestResetCommand, RequestResetCommand_Create, (MethodInfo * method)); DO_APP_FUNC(0x02A5DE60, FourCC, RequestSyncCommand_get_Type, (MethodInfo * method)); -DO_APP_FUNC(0x02A5DE60, FourCC, RequestSyncCommand_get_typeStatic, (RequestSyncCommand__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5DE60, FourCC, RequestSyncCommand_get_typeStatic, (RequestSyncCommand * __this, MethodInfo * method)); DO_APP_FUNC(0x02A5DE70, RequestSyncCommand, RequestSyncCommand_Create, (MethodInfo * method)); DO_APP_FUNC(0x02A5DE90, FourCC, SetIMECursorPositionCommand_get_Type, (MethodInfo * method)); -DO_APP_FUNC(0x0171D170, Vector2, SetIMECursorPositionCommand_get_position, (SetIMECursorPositionCommand__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A5DE90, FourCC, SetIMECursorPositionCommand_get_typeStatic, (SetIMECursorPositionCommand__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171D170, Vector2, SetIMECursorPositionCommand_get_position, (SetIMECursorPositionCommand * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5DE90, FourCC, SetIMECursorPositionCommand_get_typeStatic, (SetIMECursorPositionCommand * __this, MethodInfo * method)); DO_APP_FUNC(0x02A5DEA0, SetIMECursorPositionCommand, SetIMECursorPositionCommand_Create, (Vector2 cursorPosition, MethodInfo * method)); DO_APP_FUNC(0x02A5DEC0, FourCC, SetSamplingFrequencyCommand_get_Type, (MethodInfo * method)); -DO_APP_FUNC(0x02A5DEC0, FourCC, SetSamplingFrequencyCommand_get_typeStatic, (SetSamplingFrequencyCommand__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5DEC0, FourCC, SetSamplingFrequencyCommand_get_typeStatic, (SetSamplingFrequencyCommand * __this, MethodInfo * method)); DO_APP_FUNC(0x02A5DED0, SetSamplingFrequencyCommand, SetSamplingFrequencyCommand_Create, (float frequency, MethodInfo * method)); DO_APP_FUNC(0x02A5DF00, FourCC, UseWindowsGamingInputCommand_get_Type, (MethodInfo * method)); -DO_APP_FUNC(0x02A5DF00, FourCC, UseWindowsGamingInputCommand_get_typeStatic, (UseWindowsGamingInputCommand__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5DF00, FourCC, UseWindowsGamingInputCommand_get_typeStatic, (UseWindowsGamingInputCommand * __this, MethodInfo * method)); DO_APP_FUNC(0x02A5DF10, UseWindowsGamingInputCommand, UseWindowsGamingInputCommand_Create, (bool enable, MethodInfo * method)); DO_APP_FUNC(0x02A5DF40, FourCC, WarpMousePositionCommand_get_Type, (MethodInfo * method)); -DO_APP_FUNC(0x02A5DF40, FourCC, WarpMousePositionCommand_get_typeStatic, (WarpMousePositionCommand__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5DF40, FourCC, WarpMousePositionCommand_get_typeStatic, (WarpMousePositionCommand * __this, MethodInfo * method)); DO_APP_FUNC(0x02A5DF50, WarpMousePositionCommand, WarpMousePositionCommand_Create, (Vector2 position, MethodInfo * method)); DO_APP_FUNC(0x02A5DF70, FourCC, GamepadState_get_Format, (MethodInfo * method)); -DO_APP_FUNC(0x02A5DF70, FourCC, GamepadState_get_format, (GamepadState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A5DF80, void, GamepadState__ctor, (GamepadState__Boxed * __this, GamepadButton__Enum__Array * buttons, MethodInfo * method)); -DO_APP_FUNC(0x02A5E030, GamepadState, GamepadState_WithButton, (GamepadState__Boxed * __this, GamepadButton__Enum button, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02A5DF70, FourCC, GamepadState_get_format, (GamepadState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5DF80, void, GamepadState__ctor, (GamepadState * __this, GamepadButton__Enum__Array * buttons, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1260, GamepadState__ctor__MethodInfo); +DO_APP_FUNC(0x02A5E030, GamepadState, GamepadState_WithButton, (GamepadState * __this, GamepadButton__Enum button, bool value, MethodInfo * method)); DO_APP_FUNC(0x02A5E080, FourCC, DualMotorRumbleCommand_get_Type, (MethodInfo * method)); -DO_APP_FUNC(0x02A5E080, FourCC, DualMotorRumbleCommand_get_typeStatic, (DualMotorRumbleCommand__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5E080, FourCC, DualMotorRumbleCommand_get_typeStatic, (DualMotorRumbleCommand * __this, MethodInfo * method)); DO_APP_FUNC(0x02A5E090, DualMotorRumbleCommand, DualMotorRumbleCommand_Create, (float lowFrequency, float highFrequency, MethodInfo * method)); DO_APP_FUNC(0x02A5E0C0, FourCC, JoystickState_get_kFormat, (MethodInfo * method)); -DO_APP_FUNC(0x02A5E0C0, FourCC, JoystickState_get_format, (JoystickState__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5E0C0, FourCC, JoystickState_get_format, (JoystickState * __this, MethodInfo * method)); DO_APP_FUNC(0x02A5E0D0, FourCC, KeyboardState_get_Format, (MethodInfo * method)); -DO_APP_FUNC(0x02A5E0E0, void, KeyboardState__ctor, (KeyboardState__Boxed * __this, Key__Enum__Array * pressedKeys, MethodInfo * method)); -DO_APP_FUNC(0x029672A0, void, KeyboardState_Set, (KeyboardState__Boxed * __this, Key__Enum key, bool state, MethodInfo * method)); -DO_APP_FUNC(0x02A5E1E0, void, KeyboardState_Press, (KeyboardState__Boxed * __this, Key__Enum key, MethodInfo * method)); -DO_APP_FUNC(0x02A5E200, void, KeyboardState_Release, (KeyboardState__Boxed * __this, Key__Enum key, MethodInfo * method)); -DO_APP_FUNC(0x02A5E0D0, FourCC, KeyboardState_get_format, (KeyboardState__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5E0E0, void, KeyboardState__ctor, (KeyboardState * __this, Key__Enum__Array * pressedKeys, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1270, KeyboardState__ctor__MethodInfo); +DO_APP_FUNC(0x029672A0, void, KeyboardState_Set, (KeyboardState * __this, Key__Enum key, bool state, MethodInfo * method)); +DO_APP_FUNC(0x02A5E1E0, void, KeyboardState_Press, (KeyboardState * __this, Key__Enum key, MethodInfo * method)); +DO_APP_FUNC(0x02A5E200, void, KeyboardState_Release, (KeyboardState * __this, Key__Enum key, MethodInfo * method)); +DO_APP_FUNC(0x02A5E0D0, FourCC, KeyboardState_get_format, (KeyboardState * __this, MethodInfo * method)); DO_APP_FUNC(0x02A5E220, FourCC, MouseState_get_Format, (MethodInfo * method)); -DO_APP_FUNC(0x02A5E230, MouseState, MouseState_WithButton, (MouseState__Boxed * __this, MouseButton__Enum button, bool state, MethodInfo * method)); -DO_APP_FUNC(0x02A5E220, FourCC, MouseState_get_format, (MouseState__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5E230, MouseState, MouseState_WithButton, (MouseState * __this, MouseButton__Enum button, bool state, MethodInfo * method)); +DO_APP_FUNC(0x02A5E220, FourCC, MouseState_get_format, (MouseState * __this, MethodInfo * method)); DO_APP_FUNC(0x02A5E280, FourCC, PenState_get_Format, (MethodInfo * method)); -DO_APP_FUNC(0x02A5E290, PenState, PenState_WithButton, (PenState__Boxed * __this, PenButton__Enum button, bool state, MethodInfo * method)); -DO_APP_FUNC(0x02A5E280, FourCC, PenState_get_format, (PenState__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5E290, PenState, PenState_WithButton, (PenState * __this, PenButton__Enum button, bool state, MethodInfo * method)); +DO_APP_FUNC(0x02A5E280, FourCC, PenState_get_format, (PenState * __this, MethodInfo * method)); DO_APP_FUNC(0x02A5E2E0, FourCC, PointerState_get_kFormat, (MethodInfo * method)); -DO_APP_FUNC(0x02A5E2E0, FourCC, PointerState_get_format, (PointerState__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5E2E0, FourCC, PointerState_get_format, (PointerState * __this, MethodInfo * method)); DO_APP_FUNC(0x02A5E2F0, FourCC, AccelerometerState_get_kFormat, (MethodInfo * method)); -DO_APP_FUNC(0x02A5E2F0, FourCC, AccelerometerState_get_format, (AccelerometerState__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5E2F0, FourCC, AccelerometerState_get_format, (AccelerometerState * __this, MethodInfo * method)); DO_APP_FUNC(0x02A5E300, FourCC, GyroscopeState_get_kFormat, (MethodInfo * method)); -DO_APP_FUNC(0x02A5E300, FourCC, GyroscopeState_get_format, (GyroscopeState__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5E300, FourCC, GyroscopeState_get_format, (GyroscopeState * __this, MethodInfo * method)); DO_APP_FUNC(0x02A5E310, FourCC, GravityState_get_kFormat, (MethodInfo * method)); -DO_APP_FUNC(0x02A5E310, FourCC, GravityState_get_format, (GravityState__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5E310, FourCC, GravityState_get_format, (GravityState * __this, MethodInfo * method)); DO_APP_FUNC(0x02A5E320, FourCC, AttitudeState_get_kFormat, (MethodInfo * method)); -DO_APP_FUNC(0x02A5E320, FourCC, AttitudeState_get_format, (AttitudeState__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5E320, FourCC, AttitudeState_get_format, (AttitudeState * __this, MethodInfo * method)); DO_APP_FUNC(0x02A5E330, FourCC, LinearAccelerationState_get_kFormat, (MethodInfo * method)); -DO_APP_FUNC(0x02A5E330, FourCC, LinearAccelerationState_get_format, (LinearAccelerationState__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5E330, FourCC, LinearAccelerationState_get_format, (LinearAccelerationState * __this, MethodInfo * method)); DO_APP_FUNC(0x02A5E340, FourCC, TouchState_get_Format, (MethodInfo * method)); -DO_APP_FUNC(0x005F7520, TouchPhase__Enum_1, TouchState_get_phase, (TouchState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00715340, void, TouchState_set_phase, (TouchState__Boxed * __this, TouchPhase__Enum_1 value, MethodInfo * method)); -DO_APP_FUNC(0x02A5E350, bool, TouchState_get_isNoneEndedOrCanceled, (TouchState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A5E370, bool, TouchState_get_isInProgress, (TouchState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A5E390, bool, TouchState_get_isPrimaryTouch, (TouchState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A5E3A0, void, TouchState_set_isPrimaryTouch, (TouchState__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02A5E3D0, bool, TouchState_get_isOrphanedPrimaryTouch, (TouchState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A5E3E0, void, TouchState_set_isOrphanedPrimaryTouch, (TouchState__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02A5E410, bool, TouchState_get_isIndirectTouch, (TouchState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A5E420, void, TouchState_set_isIndirectTouch, (TouchState__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02A5E450, bool, TouchState_get_isTap, (TouchState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A5E460, void, TouchState_set_isTap, (TouchState__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02A5E450, bool, TouchState_get_isTapPress, (TouchState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A5E460, void, TouchState_set_isTapPress, (TouchState__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02A5E490, bool, TouchState_get_isTapRelease, (TouchState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A5E4A0, void, TouchState_set_isTapRelease, (TouchState__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02A5E4D0, bool, TouchState_get_beganInSameFrame, (TouchState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A5E4E0, void, TouchState_set_beganInSameFrame, (TouchState__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02A5E340, FourCC, TouchState_get_format, (TouchState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A5E510, String *, TouchState_ToString, (TouchState__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x005F7520, TouchPhase__Enum_1, TouchState_get_phase, (TouchState * __this, MethodInfo * method)); +DO_APP_FUNC(0x00715340, void, TouchState_set_phase, (TouchState * __this, TouchPhase__Enum_1 value, MethodInfo * method)); +DO_APP_FUNC(0x02A5E350, bool, TouchState_get_isNoneEndedOrCanceled, (TouchState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5E370, bool, TouchState_get_isInProgress, (TouchState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5E390, bool, TouchState_get_isPrimaryTouch, (TouchState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5E3A0, void, TouchState_set_isPrimaryTouch, (TouchState * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02A5E3D0, bool, TouchState_get_isOrphanedPrimaryTouch, (TouchState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5E3E0, void, TouchState_set_isOrphanedPrimaryTouch, (TouchState * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02A5E410, bool, TouchState_get_isIndirectTouch, (TouchState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5E420, void, TouchState_set_isIndirectTouch, (TouchState * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02A5E450, bool, TouchState_get_isTap, (TouchState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5E460, void, TouchState_set_isTap, (TouchState * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02A5E450, bool, TouchState_get_isTapPress, (TouchState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5E460, void, TouchState_set_isTapPress, (TouchState * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02A5E490, bool, TouchState_get_isTapRelease, (TouchState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5E4A0, void, TouchState_set_isTapRelease, (TouchState * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02A5E4D0, bool, TouchState_get_beganInSameFrame, (TouchState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5E4E0, void, TouchState_set_beganInSameFrame, (TouchState * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02A5E340, FourCC, TouchState_get_format, (TouchState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5E510, String *, TouchState_ToString, (TouchState * __this, MethodInfo * method)); DO_APP_FUNC(0x02A5E8A0, FourCC, TouchscreenState_get_Format, (MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, TouchState *, TouchscreenState_get_primaryTouch, (TouchscreenState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A5E8B0, TouchState *, TouchscreenState_get_touches, (TouchscreenState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A5E8A0, FourCC, TouchscreenState_get_format, (TouchscreenState__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, TouchState *, TouchscreenState_get_primaryTouch, (TouchscreenState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5E8B0, TouchState *, TouchscreenState_get_touches, (TouchscreenState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5E8A0, FourCC, TouchscreenState_get_format, (TouchscreenState * __this, MethodInfo * method)); DO_APP_FUNC(0x02A5E8C0, FourCC, ActionEvent_get_Type, (MethodInfo * method)); -DO_APP_FUNC(0x02A5E8D0, double, ActionEvent_get_startTime, (ActionEvent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A5E8E0, void, ActionEvent_set_startTime, (ActionEvent__Boxed * __this, double value, MethodInfo * method)); -DO_APP_FUNC(0x006B5750, InputActionPhase__Enum, ActionEvent_get_phase, (ActionEvent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x006B5760, void, ActionEvent_set_phase, (ActionEvent__Boxed * __this, InputActionPhase__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x02A5E8F0, uint8_t *, ActionEvent_get_valueData, (ActionEvent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A5E900, int32_t, ActionEvent_get_valueSizeInBytes, (ActionEvent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x006B5730, int32_t, ActionEvent_get_stateIndex, (ActionEvent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A5E910, void, ActionEvent_set_stateIndex, (ActionEvent__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00C25060, int32_t, ActionEvent_get_controlIndex, (ActionEvent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A5E980, void, ActionEvent_set_controlIndex, (ActionEvent__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x021E76A0, int32_t, ActionEvent_get_bindingIndex, (ActionEvent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A5E9F0, void, ActionEvent_set_bindingIndex, (ActionEvent__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x02A5EA60, int32_t, ActionEvent_get_interactionIndex, (ActionEvent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A5EA80, void, ActionEvent_set_interactionIndex, (ActionEvent__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, InputEventPtr, ActionEvent_ToEventPtr, (ActionEvent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A5E8C0, FourCC, ActionEvent_get_typeStatic, (ActionEvent__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5E8D0, double, ActionEvent_get_startTime, (ActionEvent * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5E8E0, void, ActionEvent_set_startTime, (ActionEvent * __this, double value, MethodInfo * method)); +DO_APP_FUNC(0x006B5750, InputActionPhase__Enum, ActionEvent_get_phase, (ActionEvent * __this, MethodInfo * method)); +DO_APP_FUNC(0x006B5760, void, ActionEvent_set_phase, (ActionEvent * __this, InputActionPhase__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x02A5E8F0, uint8_t *, ActionEvent_get_valueData, (ActionEvent * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5E900, int32_t, ActionEvent_get_valueSizeInBytes, (ActionEvent * __this, MethodInfo * method)); +DO_APP_FUNC(0x006B5730, int32_t, ActionEvent_get_stateIndex, (ActionEvent * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5E910, void, ActionEvent_set_stateIndex, (ActionEvent * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD12D8, ActionEvent_set_stateIndex__MethodInfo); +DO_APP_FUNC(0x00C25060, int32_t, ActionEvent_get_controlIndex, (ActionEvent * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5E980, void, ActionEvent_set_controlIndex, (ActionEvent * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD12E8, ActionEvent_set_controlIndex__MethodInfo); +DO_APP_FUNC(0x021E76A0, int32_t, ActionEvent_get_bindingIndex, (ActionEvent * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5E9F0, void, ActionEvent_set_bindingIndex, (ActionEvent * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1298, ActionEvent_set_bindingIndex__MethodInfo); +DO_APP_FUNC(0x02A5EA60, int32_t, ActionEvent_get_interactionIndex, (ActionEvent * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5EA80, void, ActionEvent_set_interactionIndex, (ActionEvent * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD12A0, ActionEvent_set_interactionIndex__MethodInfo); +DO_APP_FUNC(0x00A1B820, InputEventPtr, ActionEvent_ToEventPtr, (ActionEvent * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5E8C0, FourCC, ActionEvent_get_typeStatic, (ActionEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x02A5EB00, int32_t, ActionEvent_GetEventSizeWithValueSize, (int32_t valueSizeInBytes, MethodInfo * method)); DO_APP_FUNC(0x02A5EB10, ActionEvent *, ActionEvent_From, (InputEventPtr ptr, MethodInfo * method)); -DO_APP_FUNC(0x02A5EC50, uint32_t, DeltaStateEvent_get_deltaStateSizeInBytes, (DeltaStateEvent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A5EC60, Void *, DeltaStateEvent_get_deltaState, (DeltaStateEvent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A5EC70, FourCC, DeltaStateEvent_get_typeStatic, (DeltaStateEvent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, InputEventPtr, DeltaStateEvent_ToEventPtr, (DeltaStateEvent__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD12B8, ActionEvent_From__MethodInfo); +DO_APP_FUNC(0x02A5EC50, uint32_t, DeltaStateEvent_get_deltaStateSizeInBytes, (DeltaStateEvent * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5EC60, Void *, DeltaStateEvent_get_deltaState, (DeltaStateEvent * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5EC70, FourCC, DeltaStateEvent_get_typeStatic, (DeltaStateEvent * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, InputEventPtr, DeltaStateEvent_ToEventPtr, (DeltaStateEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x02A5EC80, DeltaStateEvent *, DeltaStateEvent_From, (InputEventPtr ptr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD11F8, DeltaStateEvent_From__MethodInfo); DO_APP_FUNC(0x00A1B820, DeltaStateEvent *, DeltaStateEvent_FromUnchecked, (InputEventPtr ptr, MethodInfo * method)); -DO_APP_FUNC(0x02A5EDC0, NativeArray_1_System_Byte_, DeltaStateEvent_From_1, (InputControl * control, InputEventPtr eventPtr, Allocator__Enum allocator, MethodInfo * method)); -DO_APP_FUNC(0x02A5F150, FourCC, DeviceConfigurationEvent_get_typeStatic, (DeviceConfigurationEvent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, InputEventPtr, DeviceConfigurationEvent_ToEventPtr, (DeviceConfigurationEvent__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5EDC0, NativeArray_1_System_Byte_, DeltaStateEvent_From_1, (InputControl * control, InputEventPtr * eventPtr, Allocator__Enum allocator, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1210, DeltaStateEvent_From_1__MethodInfo); +DO_APP_FUNC(0x02A5F150, FourCC, DeviceConfigurationEvent_get_typeStatic, (DeviceConfigurationEvent * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, InputEventPtr, DeviceConfigurationEvent_ToEventPtr, (DeviceConfigurationEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x02A5F160, DeviceConfigurationEvent, DeviceConfigurationEvent_Create, (int32_t deviceId, double time, MethodInfo * method)); -DO_APP_FUNC(0x02A5F230, FourCC, DeviceRemoveEvent_get_typeStatic, (DeviceRemoveEvent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, InputEventPtr, DeviceRemoveEvent_ToEventPtr, (DeviceRemoveEvent__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5F230, FourCC, DeviceRemoveEvent_get_typeStatic, (DeviceRemoveEvent * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, InputEventPtr, DeviceRemoveEvent_ToEventPtr, (DeviceRemoveEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x02A5F240, DeviceRemoveEvent, DeviceRemoveEvent_Create, (int32_t deviceId, double time, MethodInfo * method)); -DO_APP_FUNC(0x02A5F310, FourCC, DeviceResetEvent_get_typeStatic, (DeviceResetEvent__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5F310, FourCC, DeviceResetEvent_get_typeStatic, (DeviceResetEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x02A5F320, DeviceResetEvent, DeviceResetEvent_Create, (int32_t deviceId, bool hardReset, double time, MethodInfo * method)); -DO_APP_FUNC(0x02A5F400, FourCC, IMECompositionEvent_get_typeStatic, (IMECompositionEvent__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5F400, FourCC, IMECompositionEvent_get_typeStatic, (IMECompositionEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x02A5F410, IMECompositionEvent, IMECompositionEvent_Create, (int32_t deviceId, String * compositionString, double time, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, IMECompositionString_get_Count, (IMECompositionString__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A5F610, uint16_t, IMECompositionString_get_Item, (IMECompositionString__Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x02A5F690, void, IMECompositionString__ctor, (IMECompositionString__Boxed * __this, String * characters, MethodInfo * method)); -DO_APP_FUNC(0x02A5F700, String *, IMECompositionString_ToString, (IMECompositionString__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A5F720, IEnumerator_1_System_Char_ *, IMECompositionString_GetEnumerator, (IMECompositionString__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A5F7F0, IEnumerator *, IMECompositionString_System_Collections_IEnumerable_GetEnumerator, (IMECompositionString__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A5F800, void, IMECompositionString_Enumerator__ctor, (IMECompositionString_Enumerator__Boxed * __this, IMECompositionString compositionString, MethodInfo * method)); -DO_APP_FUNC(0x02A5F860, bool, IMECompositionString_Enumerator_MoveNext, (IMECompositionString_Enumerator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A5F890, void, IMECompositionString_Enumerator_Reset, (IMECompositionString_Enumerator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, IMECompositionString_Enumerator_Dispose, (IMECompositionString_Enumerator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171F050, uint16_t, IMECompositionString_Enumerator_get_Current, (IMECompositionString_Enumerator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A5F8A0, Object *, IMECompositionString_Enumerator_System_Collections_IEnumerator_get_Current, (IMECompositionString_Enumerator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, FourCC, InputEvent_get_type, (InputEvent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00959BA0, void, InputEvent_set_type, (InputEvent__Boxed * __this, FourCC value, MethodInfo * method)); -DO_APP_FUNC(0x0171B690, uint32_t, InputEvent_get_sizeInBytes, (InputEvent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A5F8F0, void, InputEvent_set_sizeInBytes, (InputEvent__Boxed * __this, uint32_t value, MethodInfo * method)); -DO_APP_FUNC(0x02A5F9A0, int32_t, InputEvent_get_eventId, (InputEvent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A5F9B0, void, InputEvent_set_eventId, (InputEvent__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x02A5F9C0, int32_t, InputEvent_get_deviceId, (InputEvent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x021E7700, void, InputEvent_set_deviceId, (InputEvent__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x02A5F9D0, double, InputEvent_get_time, (InputEvent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A5FA20, void, InputEvent_set_time, (InputEvent__Boxed * __this, double value, MethodInfo * method)); -DO_APP_FUNC(0x02949540, double, InputEvent_get_internalTime, (InputEvent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02949550, void, InputEvent_set_internalTime, (InputEvent__Boxed * __this, double value, MethodInfo * method)); -DO_APP_FUNC(0x02A5FA80, void, InputEvent__ctor, (InputEvent__Boxed * __this, FourCC type, int32_t sizeInBytes, int32_t deviceId, double time, MethodInfo * method)); -DO_APP_FUNC(0x02A5FB40, bool, InputEvent_get_handled, (InputEvent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A5FB50, void, InputEvent_set_handled, (InputEvent__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02A5FB70, String *, InputEvent_ToString, (InputEvent__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, IMECompositionString_get_Count, (IMECompositionString * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5F610, uint16_t, IMECompositionString_get_Item, (IMECompositionString * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD11D8, IMECompositionString_get_Item__MethodInfo); +DO_APP_FUNC(0x02A5F690, void, IMECompositionString__ctor, (IMECompositionString * __this, String * characters, MethodInfo * method)); +DO_APP_FUNC(0x02A5F700, String *, IMECompositionString_ToString, (IMECompositionString * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5F720, IEnumerator_1_System_Char_ *, IMECompositionString_GetEnumerator, (IMECompositionString * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5F7F0, IEnumerator *, IMECompositionString_System_Collections_IEnumerable_GetEnumerator, (IMECompositionString * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5F800, void, IMECompositionString_Enumerator__ctor, (IMECompositionString_Enumerator * __this, IMECompositionString compositionString, MethodInfo * method)); +DO_APP_FUNC(0x02A5F860, bool, IMECompositionString_Enumerator_MoveNext, (IMECompositionString_Enumerator * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5F890, void, IMECompositionString_Enumerator_Reset, (IMECompositionString_Enumerator * __this, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, IMECompositionString_Enumerator_Dispose, (IMECompositionString_Enumerator * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171F050, uint16_t, IMECompositionString_Enumerator_get_Current, (IMECompositionString_Enumerator * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5F8A0, Object *, IMECompositionString_Enumerator_System_Collections_IEnumerator_get_Current, (IMECompositionString_Enumerator * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, FourCC, InputEvent_get_type, (InputEvent * __this, MethodInfo * method)); +DO_APP_FUNC(0x00959BA0, void, InputEvent_set_type, (InputEvent * __this, FourCC value, MethodInfo * method)); +DO_APP_FUNC(0x0171B690, uint32_t, InputEvent_get_sizeInBytes, (InputEvent * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5F8F0, void, InputEvent_set_sizeInBytes, (InputEvent * __this, uint32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1238, InputEvent_set_sizeInBytes__MethodInfo); +DO_APP_FUNC(0x02A5F9A0, int32_t, InputEvent_get_eventId, (InputEvent * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5F9B0, void, InputEvent_set_eventId, (InputEvent * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x02A5F9C0, int32_t, InputEvent_get_deviceId, (InputEvent * __this, MethodInfo * method)); +DO_APP_FUNC(0x021E7700, void, InputEvent_set_deviceId, (InputEvent * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x02A5F9D0, double, InputEvent_get_time, (InputEvent * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5FA20, void, InputEvent_set_time, (InputEvent * __this, double value, MethodInfo * method)); +DO_APP_FUNC(0x02949540, double, InputEvent_get_internalTime, (InputEvent * __this, MethodInfo * method)); +DO_APP_FUNC(0x02949550, void, InputEvent_set_internalTime, (InputEvent * __this, double value, MethodInfo * method)); +DO_APP_FUNC(0x02A5FA80, void, InputEvent__ctor, (InputEvent * __this, FourCC type, int32_t sizeInBytes, int32_t deviceId, double time, MethodInfo * method)); +DO_APP_FUNC(0x02A5FB40, bool, InputEvent_get_handled, (InputEvent * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A5FB50, void, InputEvent_set_handled, (InputEvent * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02A5FB70, String *, InputEvent_ToString, (InputEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x02A5FE70, InputEvent *, InputEvent_GetNextInMemory, (InputEvent * currentPtr, MethodInfo * method)); -DO_APP_FUNC(0x02A5FE90, InputEvent *, InputEvent_GetNextInMemoryChecked, (InputEvent * currentPtr, InputEventBuffer buffer, MethodInfo * method)); +DO_APP_FUNC(0x02A5FE90, InputEvent *, InputEvent_GetNextInMemoryChecked, (InputEvent * currentPtr, InputEventBuffer * buffer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1230, InputEvent_GetNextInMemoryChecked__MethodInfo); DO_APP_FUNC(0x02A5FFE0, bool, InputEvent_Equals, (InputEvent * first, InputEvent * second, MethodInfo * method)); -DO_APP_FUNC(0x003BC2E0, int32_t, InputEventBuffer_get_eventCount, (InputEventBuffer__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, int64_t, InputEventBuffer_get_sizeInBytes, (InputEventBuffer__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A60030, int64_t, InputEventBuffer_get_capacityInBytes, (InputEventBuffer__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C2FFD0, NativeArray_1_System_Byte_, InputEventBuffer_get_data, (InputEventBuffer__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A60080, InputEventPtr, InputEventBuffer_get_bufferPtr, (InputEventBuffer__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A600C0, void, InputEventBuffer__ctor, (InputEventBuffer__Boxed * __this, InputEvent * eventPtr, int32_t eventCount, int32_t sizeInBytes, int32_t capacityInBytes, MethodInfo * method)); -DO_APP_FUNC(0x02A60290, void, InputEventBuffer__ctor_1, (InputEventBuffer__Boxed * __this, NativeArray_1_System_Byte_ buffer, int32_t eventCount, int32_t sizeInBytes, bool transferNativeArrayOwnership, MethodInfo * method)); -DO_APP_FUNC(0x02A603D0, void, InputEventBuffer_AppendEvent, (InputEventBuffer__Boxed * __this, InputEvent * eventPtr, int32_t capacityIncrementInBytes, Allocator__Enum allocator, MethodInfo * method)); -DO_APP_FUNC(0x02A60470, InputEvent *, InputEventBuffer_AllocateEvent, (InputEventBuffer__Boxed * __this, int32_t sizeInBytes, int32_t capacityIncrementInBytes, Allocator__Enum allocator, MethodInfo * method)); -DO_APP_FUNC(0x02A60720, bool, InputEventBuffer_Contains, (InputEventBuffer__Boxed * __this, InputEvent * eventPtr, MethodInfo * method)); -DO_APP_FUNC(0x02A60790, void, InputEventBuffer_Reset, (InputEventBuffer__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A607B0, void, InputEventBuffer_AdvanceToNextEvent, (InputEventBuffer__Boxed * __this, InputEvent * currentReadPos, InputEvent * currentWritePos, int32_t numEventsRetainedInBuffer, int32_t numRemainingEvents, bool leaveEventInBuffer, MethodInfo * method)); -DO_APP_FUNC(0x02A608A0, IEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventPtr_ *, InputEventBuffer_GetEnumerator, (InputEventBuffer__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A60970, IEnumerator *, InputEventBuffer_System_Collections_IEnumerable_GetEnumerator, (InputEventBuffer__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A60980, void, InputEventBuffer_Dispose, (InputEventBuffer__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A609D0, InputEventBuffer, InputEventBuffer_Clone, (InputEventBuffer__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A60B30, Object *, InputEventBuffer_System_ICloneable_Clone, (InputEventBuffer__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A60BA0, void, InputEventBuffer_Enumerator__ctor, (InputEventBuffer_Enumerator__Boxed * __this, InputEventBuffer buffer, MethodInfo * method)); -DO_APP_FUNC(0x02A60C00, bool, InputEventBuffer_Enumerator_MoveNext, (InputEventBuffer_Enumerator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0125F5B0, void, InputEventBuffer_Enumerator_Reset, (InputEventBuffer_Enumerator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, InputEventBuffer_Enumerator_Dispose, (InputEventBuffer_Enumerator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, InputEventPtr, InputEventBuffer_Enumerator_get_Current, (InputEventBuffer_Enumerator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A60C50, Object *, InputEventBuffer_Enumerator_System_Collections_IEnumerator_get_Current, (InputEventBuffer_Enumerator__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC2E0, int32_t, InputEventBuffer_get_eventCount, (InputEventBuffer * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, int64_t, InputEventBuffer_get_sizeInBytes, (InputEventBuffer * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A60030, int64_t, InputEventBuffer_get_capacityInBytes, (InputEventBuffer * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C2FFD0, NativeArray_1_System_Byte_, InputEventBuffer_get_data, (InputEventBuffer * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A60080, InputEventPtr, InputEventBuffer_get_bufferPtr, (InputEventBuffer * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A600C0, void, InputEventBuffer__ctor, (InputEventBuffer * __this, InputEvent * eventPtr, int32_t eventCount, int32_t sizeInBytes, int32_t capacityInBytes, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1198, InputEventBuffer__ctor__MethodInfo); +DO_APP_FUNC(0x02A60290, void, InputEventBuffer__ctor_1, (InputEventBuffer * __this, NativeArray_1_System_Byte_ buffer, int32_t eventCount, int32_t sizeInBytes, bool transferNativeArrayOwnership, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1158, InputEventBuffer__ctor_1__MethodInfo); +DO_APP_FUNC(0x02A603D0, void, InputEventBuffer_AppendEvent, (InputEventBuffer * __this, InputEvent * eventPtr, int32_t capacityIncrementInBytes, Allocator__Enum allocator, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1178, InputEventBuffer_AppendEvent__MethodInfo); +DO_APP_FUNC(0x02A60470, InputEvent *, InputEventBuffer_AllocateEvent, (InputEventBuffer * __this, int32_t sizeInBytes, int32_t capacityIncrementInBytes, Allocator__Enum allocator, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD11D0, InputEventBuffer_AllocateEvent__MethodInfo); +DO_APP_FUNC(0x02A60720, bool, InputEventBuffer_Contains, (InputEventBuffer * __this, InputEvent * eventPtr, MethodInfo * method)); +DO_APP_FUNC(0x02A60790, void, InputEventBuffer_Reset, (InputEventBuffer * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A607B0, void, InputEventBuffer_AdvanceToNextEvent, (InputEventBuffer * __this, InputEvent * * currentReadPos, InputEvent * * currentWritePos, int32_t * numEventsRetainedInBuffer, int32_t * numRemainingEvents, bool leaveEventInBuffer, MethodInfo * method)); +DO_APP_FUNC(0x02A608A0, IEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventPtr_ *, InputEventBuffer_GetEnumerator, (InputEventBuffer * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A60970, IEnumerator *, InputEventBuffer_System_Collections_IEnumerable_GetEnumerator, (InputEventBuffer * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A60980, void, InputEventBuffer_Dispose, (InputEventBuffer * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A609D0, InputEventBuffer, InputEventBuffer_Clone, (InputEventBuffer * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A60B30, Object *, InputEventBuffer_System_ICloneable_Clone, (InputEventBuffer * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A60BA0, void, InputEventBuffer_Enumerator__ctor, (InputEventBuffer_Enumerator * __this, InputEventBuffer buffer, MethodInfo * method)); +DO_APP_FUNC(0x02A60C00, bool, InputEventBuffer_Enumerator_MoveNext, (InputEventBuffer_Enumerator * __this, MethodInfo * method)); +DO_APP_FUNC(0x0125F5B0, void, InputEventBuffer_Enumerator_Reset, (InputEventBuffer_Enumerator * __this, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, InputEventBuffer_Enumerator_Dispose, (InputEventBuffer_Enumerator * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, InputEventPtr, InputEventBuffer_Enumerator_get_Current, (InputEventBuffer_Enumerator * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A60C50, Object *, InputEventBuffer_Enumerator_System_Collections_IEnumerator_get_Current, (InputEventBuffer_Enumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x02A60CA0, InputEventListener, InputEventListener_op_Addition, (InputEventListener _, Action_2_UnityEngine_InputSystem_LowLevel_InputEventPtr_UnityEngine_InputSystem_InputDevice_ * callback, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD10B8, InputEventListener_op_Addition__MethodInfo); DO_APP_FUNC(0x02A60F00, InputEventListener, InputEventListener_op_Subtraction, (InputEventListener _, Action_2_UnityEngine_InputSystem_LowLevel_InputEventPtr_UnityEngine_InputSystem_InputDevice_ * callback, MethodInfo * method)); -DO_APP_FUNC(0x02A61160, IDisposable *, InputEventListener_Subscribe, (InputEventListener__Boxed * __this, IObserver_1_UnityEngine_InputSystem_LowLevel_InputEventPtr_ * observer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1068, InputEventListener_op_Subtraction__MethodInfo); +DO_APP_FUNC(0x02A61160, IDisposable *, InputEventListener_Subscribe, (InputEventListener * __this, IObserver_1_UnityEngine_InputSystem_LowLevel_InputEventPtr_ * observer, MethodInfo * method)); DO_APP_FUNC(0x02A614B0, void, InputEventListener_ObserverState__ctor, (InputEventListener_ObserverState * __this, MethodInfo * method)); DO_APP_FUNC(0x02A61580, void, InputEventListener_ObserverState___ctor_b__2_0, (InputEventListener_ObserverState * __this, InputEventPtr eventPtr, InputDevice * device, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1118, InputEventListener_ObserverState___ctor_b__2_0__MethodInfo); DO_APP_FUNC(0x02A616A0, void, InputEventListener_DisposableObserver_Dispose, (InputEventListener_DisposableObserver * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InputEventListener_DisposableObserver__ctor, (InputEventListener_DisposableObserver * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9A2A0, void, InputEventPtr__ctor, (InputEventPtr__Boxed * __this, InputEvent * eventPtr, MethodInfo * method)); -DO_APP_FUNC(0x01809EF0, bool, InputEventPtr_get_valid, (InputEventPtr__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A61870, bool, InputEventPtr_get_handled, (InputEventPtr__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A61890, void, InputEventPtr_set_handled, (InputEventPtr__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02A61920, int32_t, InputEventPtr_get_id, (InputEventPtr__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A61940, void, InputEventPtr_set_id, (InputEventPtr__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x02A619C0, FourCC, InputEventPtr_get_type, (InputEventPtr__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A619D0, uint32_t, InputEventPtr_get_sizeInBytes, (InputEventPtr__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A619F0, int32_t, InputEventPtr_get_deviceId, (InputEventPtr__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A61A10, void, InputEventPtr_set_deviceId, (InputEventPtr__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x02A61A80, double, InputEventPtr_get_time, (InputEventPtr__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A61AE0, void, InputEventPtr_set_time, (InputEventPtr__Boxed * __this, double value, MethodInfo * method)); -DO_APP_FUNC(0x02A61B90, double, InputEventPtr_get_internalTime, (InputEventPtr__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A61BB0, void, InputEventPtr_set_internalTime, (InputEventPtr__Boxed * __this, double value, MethodInfo * method)); -DO_APP_FUNC(0x00471910, InputEvent *, InputEventPtr_get_data, (InputEventPtr__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A61C30, FourCC, InputEventPtr_get_stateFormat, (InputEventPtr__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A61CE0, uint32_t, InputEventPtr_get_stateSizeInBytes, (InputEventPtr__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A61DE0, uint32_t, InputEventPtr_get_stateOffset, (InputEventPtr__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A61EC0, InputEventPtr, InputEventPtr_Next, (InputEventPtr__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A61EE0, String *, InputEventPtr_ToString, (InputEventPtr__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, InputEvent *, InputEventPtr_ToPointer, (InputEventPtr__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A61F50, bool, InputEventPtr_Equals, (InputEventPtr__Boxed * __this, InputEventPtr other, MethodInfo * method)); -DO_APP_FUNC(0x02A61FA0, bool, InputEventPtr_Equals_1, (InputEventPtr__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, InputEventPtr_GetHashCode, (InputEventPtr__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9A2A0, void, InputEventPtr__ctor, (InputEventPtr * __this, InputEvent * eventPtr, MethodInfo * method)); +DO_APP_FUNC(0x01809EF0, bool, InputEventPtr_get_valid, (InputEventPtr * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A61870, bool, InputEventPtr_get_handled, (InputEventPtr * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A61890, void, InputEventPtr_set_handled, (InputEventPtr * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD10E8, InputEventPtr_set_handled__MethodInfo); +DO_APP_FUNC(0x02A61920, int32_t, InputEventPtr_get_id, (InputEventPtr * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A61940, void, InputEventPtr_set_id, (InputEventPtr * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD10D8, InputEventPtr_set_id__MethodInfo); +DO_APP_FUNC(0x02A619C0, FourCC, InputEventPtr_get_type, (InputEventPtr * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A619D0, uint32_t, InputEventPtr_get_sizeInBytes, (InputEventPtr * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A619F0, int32_t, InputEventPtr_get_deviceId, (InputEventPtr * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A61A10, void, InputEventPtr_set_deviceId, (InputEventPtr * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD10F8, InputEventPtr_set_deviceId__MethodInfo); +DO_APP_FUNC(0x02A61A80, double, InputEventPtr_get_time, (InputEventPtr * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A61AE0, void, InputEventPtr_set_time, (InputEventPtr * __this, double value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD10F0, InputEventPtr_set_time__MethodInfo); +DO_APP_FUNC(0x02A61B90, double, InputEventPtr_get_internalTime, (InputEventPtr * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A61BB0, void, InputEventPtr_set_internalTime, (InputEventPtr * __this, double value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1108, InputEventPtr_set_internalTime__MethodInfo); +DO_APP_FUNC(0x00471910, InputEvent *, InputEventPtr_get_data, (InputEventPtr * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A61C30, FourCC, InputEventPtr_get_stateFormat, (InputEventPtr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0FE8, InputEventPtr_get_stateFormat__MethodInfo); +DO_APP_FUNC(0x02A61CE0, uint32_t, InputEventPtr_get_stateSizeInBytes, (InputEventPtr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0FF0, InputEventPtr_get_stateSizeInBytes__MethodInfo); +DO_APP_FUNC(0x02A61DE0, uint32_t, InputEventPtr_get_stateOffset, (InputEventPtr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1008, InputEventPtr_get_stateOffset__MethodInfo); +DO_APP_FUNC(0x02A61EC0, InputEventPtr, InputEventPtr_Next, (InputEventPtr * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A61EE0, String *, InputEventPtr_ToString, (InputEventPtr * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, InputEvent *, InputEventPtr_ToPointer, (InputEventPtr * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A61F50, bool, InputEventPtr_Equals, (InputEventPtr * __this, InputEventPtr other, MethodInfo * method)); +DO_APP_FUNC(0x02A61FA0, bool, InputEventPtr_Equals_1, (InputEventPtr * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, InputEventPtr_GetHashCode, (InputEventPtr * __this, MethodInfo * method)); DO_APP_FUNC(0x00A89090, bool, InputEventPtr_op_Equality, (InputEventPtr left, InputEventPtr right, MethodInfo * method)); DO_APP_FUNC(0x00A92050, bool, InputEventPtr_op_Inequality, (InputEventPtr left, InputEventPtr right, MethodInfo * method)); DO_APP_FUNC(0x00A1B820, InputEventPtr, InputEventPtr_op_Implicit, (InputEvent * eventPtr, MethodInfo * method)); DO_APP_FUNC(0x00A1B820, InputEventPtr, InputEventPtr_From, (InputEvent * eventPtr, MethodInfo * method)); DO_APP_FUNC(0x00A1B820, InputEvent *, InputEventPtr_op_Implicit_1, (InputEventPtr eventPtr, MethodInfo * method)); DO_APP_FUNC(0x00A1B820, InputEvent *, InputEventPtr_FromInputEventPtr, (InputEventPtr eventPtr, MethodInfo * method)); -DO_APP_FUNC(0x0051C120, bool, InputEventStream_get_isOpen, (InputEventStream__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A62060, int32_t, InputEventStream_get_remainingEventCount, (InputEventStream__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x015A50D0, int32_t, InputEventStream_get_numEventsRetainedInBuffer, (InputEventStream__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A62070, InputEvent *, InputEventStream_get_currentEventPtr, (InputEventStream__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A62090, uint32_t, InputEventStream_get_numBytesRetainedInBuffer, (InputEventStream__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A620D0, void, InputEventStream__ctor, (InputEventStream__Boxed * __this, InputEventBuffer eventBuffer, int32_t maxAppendedEvents, MethodInfo * method)); -DO_APP_FUNC(0x02A62160, void, InputEventStream_Close, (InputEventStream__Boxed * __this, InputEventBuffer eventBuffer, MethodInfo * method)); -DO_APP_FUNC(0x02A622E0, void, InputEventStream_CleanUpAfterException, (InputEventStream__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A62390, void, InputEventStream_Write, (InputEventStream__Boxed * __this, InputEvent * eventPtr, MethodInfo * method)); -DO_APP_FUNC(0x02A62630, InputEvent *, InputEventStream_Advance, (InputEventStream__Boxed * __this, bool leaveEventInBuffer, MethodInfo * method)); -DO_APP_FUNC(0x02A626D0, InputEvent *, InputEventStream_Peek, (InputEventStream__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0051C120, bool, InputEventStream_get_isOpen, (InputEventStream * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A62060, int32_t, InputEventStream_get_remainingEventCount, (InputEventStream * __this, MethodInfo * method)); +DO_APP_FUNC(0x015A50D0, int32_t, InputEventStream_get_numEventsRetainedInBuffer, (InputEventStream * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A62070, InputEvent *, InputEventStream_get_currentEventPtr, (InputEventStream * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A62090, uint32_t, InputEventStream_get_numBytesRetainedInBuffer, (InputEventStream * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A620D0, void, InputEventStream__ctor, (InputEventStream * __this, InputEventBuffer * eventBuffer, int32_t maxAppendedEvents, MethodInfo * method)); +DO_APP_FUNC(0x02A62160, void, InputEventStream_Close, (InputEventStream * __this, InputEventBuffer * eventBuffer, MethodInfo * method)); +DO_APP_FUNC(0x02A622E0, void, InputEventStream_CleanUpAfterException, (InputEventStream * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A62390, void, InputEventStream_Write, (InputEventStream * __this, InputEvent * eventPtr, MethodInfo * method)); +DO_APP_FUNC(0x02A62630, InputEvent *, InputEventStream_Advance, (InputEventStream * __this, bool leaveEventInBuffer, MethodInfo * method)); +DO_APP_FUNC(0x02A626D0, InputEvent *, InputEventStream_Peek, (InputEventStream * __this, MethodInfo * method)); DO_APP_FUNC(0x02A62710, FourCC, InputEventTrace_get_FrameMarkerEvent, (MethodInfo * method)); DO_APP_FUNC(0x003CC980, int32_t, InputEventTrace_get_deviceId, (InputEventTrace * __this, MethodInfo * method)); DO_APP_FUNC(0x003CC990, void, InputEventTrace_set_deviceId, (InputEventTrace * __this, int32_t value, MethodInfo * method)); @@ -54887,19 +63958,27 @@ DO_APP_FUNC(0x003AE960, void, InputEventTrace_set_onFilterEvent, (InputEventTrac DO_APP_FUNC(0x02A62930, void, InputEventTrace_add_onEvent, (InputEventTrace * __this, Action_1_UnityEngine_InputSystem_LowLevel_InputEventPtr_ * value, MethodInfo * method)); DO_APP_FUNC(0x02A62980, void, InputEventTrace_remove_onEvent, (InputEventTrace * __this, Action_1_UnityEngine_InputSystem_LowLevel_InputEventPtr_ * value, MethodInfo * method)); DO_APP_FUNC(0x02A629D0, void, InputEventTrace__ctor, (InputEventTrace * __this, InputDevice * device, int64_t bufferSizeInBytes, bool growBuffer, int64_t maxBufferSizeInBytes, int64_t growIncrementSizeInBytes, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0F50, InputEventTrace__ctor__MethodInfo); DO_APP_FUNC(0x02A62A90, void, InputEventTrace__ctor_1, (InputEventTrace * __this, int64_t bufferSizeInBytes, bool growBuffer, int64_t maxBufferSizeInBytes, int64_t growIncrementSizeInBytes, MethodInfo * method)); DO_APP_FUNC(0x02A62AE0, void, InputEventTrace_WriteTo, (InputEventTrace * __this, String * filePath, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0EF0, InputEventTrace_WriteTo__MethodInfo); DO_APP_FUNC(0x02A62C80, void, InputEventTrace_WriteTo_1, (InputEventTrace * __this, Stream * stream, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0F28, InputEventTrace_WriteTo_1__MethodInfo); DO_APP_FUNC(0x02A63330, void, InputEventTrace_ReadFrom, (InputEventTrace * __this, String * filePath, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0FA0, InputEventTrace_ReadFrom__MethodInfo); DO_APP_FUNC(0x02A63450, void, InputEventTrace_ReadFrom_1, (InputEventTrace * __this, Stream * stream, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0FC8, InputEventTrace_ReadFrom_1__MethodInfo); DO_APP_FUNC(0x02A63CE0, InputEventTrace *, InputEventTrace_LoadFrom, (String * filePath, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0F70, InputEventTrace_LoadFrom__MethodInfo); DO_APP_FUNC(0x02A63F60, InputEventTrace *, InputEventTrace_LoadFrom_1, (Stream * stream, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0F90, InputEventTrace_LoadFrom_1__MethodInfo); DO_APP_FUNC(0x02A640C0, InputEventTrace_ReplayController *, InputEventTrace_Replay, (InputEventTrace * __this, MethodInfo * method)); DO_APP_FUNC(0x02A641D0, bool, InputEventTrace_Resize, (InputEventTrace * __this, int64_t newBufferSize, int64_t newMaxBufferSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0E90, InputEventTrace_Resize__MethodInfo); DO_APP_FUNC(0x02A64490, void, InputEventTrace_Clear, (InputEventTrace * __this, MethodInfo * method)); DO_APP_FUNC(0x02A64510, void, InputEventTrace_Enable, (InputEventTrace * __this, MethodInfo * method)); DO_APP_FUNC(0x02A646A0, void, InputEventTrace_Disable, (InputEventTrace * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A647B0, bool, InputEventTrace_GetNextEvent, (InputEventTrace * __this, InputEventPtr current, MethodInfo * method)); +DO_APP_FUNC(0x02A647B0, bool, InputEventTrace_GetNextEvent, (InputEventTrace * __this, InputEventPtr * current, MethodInfo * method)); DO_APP_FUNC(0x02A64830, IEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventPtr_ *, InputEventTrace_GetEnumerator, (InputEventTrace * __this, MethodInfo * method)); DO_APP_FUNC(0x02A648E0, IEnumerator *, InputEventTrace_System_Collections_IEnumerable_GetEnumerator, (InputEventTrace * __this, MethodInfo * method)); DO_APP_FUNC(0x02A648F0, void, InputEventTrace_Dispose, (InputEventTrace * __this, MethodInfo * method)); @@ -54912,7 +63991,9 @@ DO_APP_FUNC(0x02A64A10, void, InputEventTrace_set_m_EventBufferTail, (InputEvent DO_APP_FUNC(0x02A64A20, void, InputEventTrace_Allocate, (InputEventTrace * __this, MethodInfo * method)); DO_APP_FUNC(0x02A64A90, void, InputEventTrace_Release, (InputEventTrace * __this, MethodInfo * method)); DO_APP_FUNC(0x02A64B90, void, InputEventTrace_OnBeforeUpdate, (InputEventTrace * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1020, InputEventTrace_OnBeforeUpdate__MethodInfo); DO_APP_FUNC(0x02A64C90, void, InputEventTrace_OnInputEvent, (InputEventTrace * __this, InputEventPtr inputEvent, InputDevice * device, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0E40, InputEventTrace_OnInputEvent__MethodInfo); DO_APP_FUNC(0x02A652A0, FourCC, InputEventTrace_get_kFileFormat, (MethodInfo * method)); DO_APP_FUNC(0x02A652B0, void, InputEventTrace__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02A65390, void, InputEventTrace_Enumerator__ctor, (InputEventTrace_Enumerator * __this, InputEventTrace * trace, MethodInfo * method)); @@ -54949,7 +64030,7 @@ DO_APP_FUNC(0x02A66560, void, InputEventTrace_ReplayController_OnBeginFrame, (In DO_APP_FUNC_METHODINFO(0x03C8C4A0, InputEventTrace_ReplayController_OnBeginFrame__MethodInfo); DO_APP_FUNC(0x02A66790, void, InputEventTrace_ReplayController_Finished, (InputEventTrace_ReplayController * __this, MethodInfo * method)); DO_APP_FUNC(0x02A66860, void, InputEventTrace_ReplayController_QueueEvent, (InputEventTrace_ReplayController * __this, InputEventPtr eventPtr, MethodInfo * method)); -DO_APP_FUNC(0x02A66BE0, bool, InputEventTrace_ReplayController_MoveNext, (InputEventTrace_ReplayController * __this, bool skipFrameEvents, InputEventPtr eventPtr, MethodInfo * method)); +DO_APP_FUNC(0x02A66BE0, bool, InputEventTrace_ReplayController_MoveNext, (InputEventTrace_ReplayController * __this, bool skipFrameEvents, InputEventPtr * eventPtr, MethodInfo * method)); DO_APP_FUNC(0x02A67060, int32_t, InputEventTrace_ReplayController_ApplyDeviceMapping, (InputEventTrace_ReplayController * __this, int32_t originalDeviceId, MethodInfo * method)); DO_APP_FUNC(0x02A674D0, void, InputEventTrace_ReplayController_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InputEventTrace_ReplayController_c__ctor, (InputEventTrace_ReplayController_c * __this, MethodInfo * method)); @@ -54958,69 +64039,69 @@ DO_APP_FUNC_METHODINFO(0x03C8C4B0, InputEventTrace_ReplayController_c__PlayAllEv DO_APP_FUNC(0x003AE050, void, InputEventTrace_ReplayController_c_DisplayClass43_0__ctor, (InputEventTrace_ReplayController_c_DisplayClass43_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x02A67680, bool, InputEventTrace_ReplayController_c_DisplayClass43_0__ApplyDeviceMapping_b__0, (InputEventTrace_ReplayController_c_DisplayClass43_0 * __this, InputEventTrace_DeviceInfo x, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8C3F8, InputEventTrace_ReplayController_c_DisplayClass43_0__ApplyDeviceMapping_b__0__MethodInfo); -DO_APP_FUNC(0x00A9EFB0, int32_t, InputEventTrace_DeviceInfo_get_deviceId, (InputEventTrace_DeviceInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00959BA0, void, InputEventTrace_DeviceInfo_set_deviceId, (InputEventTrace_DeviceInfo__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, String *, InputEventTrace_DeviceInfo_get_layout, (InputEventTrace_DeviceInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x005F25C0, void, InputEventTrace_DeviceInfo_set_layout, (InputEventTrace_DeviceInfo__Boxed * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, FourCC, InputEventTrace_DeviceInfo_get_stateFormat, (InputEventTrace_DeviceInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD60, void, InputEventTrace_DeviceInfo_set_stateFormat, (InputEventTrace_DeviceInfo__Boxed * __this, FourCC value, MethodInfo * method)); -DO_APP_FUNC(0x003BCD70, int32_t, InputEventTrace_DeviceInfo_get_stateSizeInBytes, (InputEventTrace_DeviceInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD80, void, InputEventTrace_DeviceInfo_set_stateSizeInBytes, (InputEventTrace_DeviceInfo__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x02A67690, uint32_t, StateEvent_get_stateSizeInBytes, (StateEvent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A676A0, Void *, StateEvent_get_state, (StateEvent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, InputEventPtr, StateEvent_ToEventPtr, (StateEvent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A676B0, FourCC, StateEvent_get_typeStatic, (StateEvent__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, InputEventTrace_DeviceInfo_get_deviceId, (InputEventTrace_DeviceInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x00959BA0, void, InputEventTrace_DeviceInfo_set_deviceId, (InputEventTrace_DeviceInfo * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, String *, InputEventTrace_DeviceInfo_get_layout, (InputEventTrace_DeviceInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x005F25C0, void, InputEventTrace_DeviceInfo_set_layout, (InputEventTrace_DeviceInfo * __this, String * value, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, FourCC, InputEventTrace_DeviceInfo_get_stateFormat, (InputEventTrace_DeviceInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD60, void, InputEventTrace_DeviceInfo_set_stateFormat, (InputEventTrace_DeviceInfo * __this, FourCC value, MethodInfo * method)); +DO_APP_FUNC(0x003BCD70, int32_t, InputEventTrace_DeviceInfo_get_stateSizeInBytes, (InputEventTrace_DeviceInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD80, void, InputEventTrace_DeviceInfo_set_stateSizeInBytes, (InputEventTrace_DeviceInfo * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x02A67690, uint32_t, StateEvent_get_stateSizeInBytes, (StateEvent * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A676A0, Void *, StateEvent_get_state, (StateEvent * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, InputEventPtr, StateEvent_ToEventPtr, (StateEvent * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A676B0, FourCC, StateEvent_get_typeStatic, (StateEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x02A676C0, StateEvent *, StateEvent_From, (InputEventPtr ptr, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8C408, StateEvent_From__MethodInfo); DO_APP_FUNC(0x00A1B820, StateEvent *, StateEvent_FromUnchecked, (InputEventPtr ptr, MethodInfo * method)); -DO_APP_FUNC(0x02A67800, NativeArray_1_System_Byte_, StateEvent_From_1, (InputDevice * device, InputEventPtr eventPtr, Allocator__Enum allocator, MethodInfo * method)); -DO_APP_FUNC(0x02A67830, NativeArray_1_System_Byte_, StateEvent_FromDefaultStateFor, (InputDevice * device, InputEventPtr eventPtr, Allocator__Enum allocator, MethodInfo * method)); -DO_APP_FUNC(0x02A67860, NativeArray_1_System_Byte_, StateEvent_From_2, (InputDevice * device, InputEventPtr eventPtr, Allocator__Enum allocator, bool useDefaultState, MethodInfo * method)); +DO_APP_FUNC(0x02A67800, NativeArray_1_System_Byte_, StateEvent_From_1, (InputDevice * device, InputEventPtr * eventPtr, Allocator__Enum allocator, MethodInfo * method)); +DO_APP_FUNC(0x02A67830, NativeArray_1_System_Byte_, StateEvent_FromDefaultStateFor, (InputDevice * device, InputEventPtr * eventPtr, Allocator__Enum allocator, MethodInfo * method)); +DO_APP_FUNC(0x02A67860, NativeArray_1_System_Byte_, StateEvent_From_2, (InputDevice * device, InputEventPtr * eventPtr, Allocator__Enum allocator, bool useDefaultState, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8C438, StateEvent_From_2__MethodInfo); -DO_APP_FUNC(0x02A67B70, FourCC, TextEvent_get_typeStatic, (TextEvent__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A67B70, FourCC, TextEvent_get_typeStatic, (TextEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x02A67B80, TextEvent *, TextEvent_From, (InputEventPtr eventPtr, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8C450, TextEvent_From__MethodInfo); DO_APP_FUNC(0x02A67CC0, TextEvent, TextEvent_Create, (int32_t deviceId, uint16_t character, double time, MethodInfo * method)); DO_APP_FUNC(0x02A67DA0, TextEvent, TextEvent_Create_1, (int32_t deviceId, int32_t character, double time, MethodInfo * method)); DO_APP_FUNC(0x003F4EB0, void, InputUpdateDelegate__ctor, (InputUpdateDelegate * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EC2D0, void, InputUpdateDelegate_Invoke, (InputUpdateDelegate * __this, InputUpdateType__Enum updateType, InputEventBuffer eventBuffer, MethodInfo * method)); -DO_APP_FUNC(0x02A67E80, IAsyncResult *, InputUpdateDelegate_BeginInvoke, (InputUpdateDelegate * __this, InputUpdateType__Enum updateType, InputEventBuffer eventBuffer, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003EC4B0, void, InputUpdateDelegate_EndInvoke, (InputUpdateDelegate * __this, InputEventBuffer eventBuffer, IAsyncResult * result, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, InputMetrics_get_maxNumDevices, (InputMetrics__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00959BA0, void, InputMetrics_set_maxNumDevices, (InputMetrics__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00C173E0, int32_t, InputMetrics_get_currentNumDevices, (InputMetrics__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018C6CA0, void, InputMetrics_set_currentNumDevices, (InputMetrics__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00471920, int32_t, InputMetrics_get_maxStateSizeInBytes, (InputMetrics__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018C6CC0, void, InputMetrics_set_maxStateSizeInBytes, (InputMetrics__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00E57F20, int32_t, InputMetrics_get_currentStateSizeInBytes, (InputMetrics__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B16CA0, void, InputMetrics_set_currentStateSizeInBytes, (InputMetrics__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, int32_t, InputMetrics_get_currentControlCount, (InputMetrics__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD60, void, InputMetrics_set_currentControlCount, (InputMetrics__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x003BCD70, int32_t, InputMetrics_get_currentLayoutCount, (InputMetrics__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD80, void, InputMetrics_set_currentLayoutCount, (InputMetrics__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x003BC2E0, int32_t, InputMetrics_get_totalEventBytes, (InputMetrics__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCDD0, void, InputMetrics_set_totalEventBytes, (InputMetrics__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x003CD440, int32_t, InputMetrics_get_totalEventCount, (InputMetrics__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x006D8870, void, InputMetrics_set_totalEventCount, (InputMetrics__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x003CC980, int32_t, InputMetrics_get_totalUpdateCount, (InputMetrics__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003CC990, void, InputMetrics_set_totalUpdateCount, (InputMetrics__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x01F04880, double, InputMetrics_get_totalEventProcessingTime, (InputMetrics__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A67F30, void, InputMetrics_set_totalEventProcessingTime, (InputMetrics__Boxed * __this, double value, MethodInfo * method)); -DO_APP_FUNC(0x02A67F40, double, InputMetrics_get_totalEventLagTime, (InputMetrics__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A67F50, void, InputMetrics_set_totalEventLagTime, (InputMetrics__Boxed * __this, double value, MethodInfo * method)); -DO_APP_FUNC(0x02A67F60, float, InputMetrics_get_averageEventBytesPerFrame, (InputMetrics__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A67F80, double, InputMetrics_get_averageProcessingTimePerEvent, (InputMetrics__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A67FA0, double, InputMetrics_get_averageLagTimePerEvent, (InputMetrics__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x003EC2D0, void, InputUpdateDelegate_Invoke, (InputUpdateDelegate * __this, InputUpdateType__Enum updateType, InputEventBuffer * eventBuffer, MethodInfo * method)); +DO_APP_FUNC(0x02A67E80, IAsyncResult *, InputUpdateDelegate_BeginInvoke, (InputUpdateDelegate * __this, InputUpdateType__Enum updateType, InputEventBuffer * eventBuffer, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003EC4B0, void, InputUpdateDelegate_EndInvoke, (InputUpdateDelegate * __this, InputEventBuffer * eventBuffer, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, InputMetrics_get_maxNumDevices, (InputMetrics * __this, MethodInfo * method)); +DO_APP_FUNC(0x00959BA0, void, InputMetrics_set_maxNumDevices, (InputMetrics * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x00C173E0, int32_t, InputMetrics_get_currentNumDevices, (InputMetrics * __this, MethodInfo * method)); +DO_APP_FUNC(0x018C6CA0, void, InputMetrics_set_currentNumDevices, (InputMetrics * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x00471920, int32_t, InputMetrics_get_maxStateSizeInBytes, (InputMetrics * __this, MethodInfo * method)); +DO_APP_FUNC(0x018C6CC0, void, InputMetrics_set_maxStateSizeInBytes, (InputMetrics * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x00E57F20, int32_t, InputMetrics_get_currentStateSizeInBytes, (InputMetrics * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B16CA0, void, InputMetrics_set_currentStateSizeInBytes, (InputMetrics * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, int32_t, InputMetrics_get_currentControlCount, (InputMetrics * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD60, void, InputMetrics_set_currentControlCount, (InputMetrics * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x003BCD70, int32_t, InputMetrics_get_currentLayoutCount, (InputMetrics * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD80, void, InputMetrics_set_currentLayoutCount, (InputMetrics * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x003BC2E0, int32_t, InputMetrics_get_totalEventBytes, (InputMetrics * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCDD0, void, InputMetrics_set_totalEventBytes, (InputMetrics * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x003CD440, int32_t, InputMetrics_get_totalEventCount, (InputMetrics * __this, MethodInfo * method)); +DO_APP_FUNC(0x006D8870, void, InputMetrics_set_totalEventCount, (InputMetrics * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x003CC980, int32_t, InputMetrics_get_totalUpdateCount, (InputMetrics * __this, MethodInfo * method)); +DO_APP_FUNC(0x003CC990, void, InputMetrics_set_totalUpdateCount, (InputMetrics * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x01F04880, double, InputMetrics_get_totalEventProcessingTime, (InputMetrics * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A67F30, void, InputMetrics_set_totalEventProcessingTime, (InputMetrics * __this, double value, MethodInfo * method)); +DO_APP_FUNC(0x02A67F40, double, InputMetrics_get_totalEventLagTime, (InputMetrics * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A67F50, void, InputMetrics_set_totalEventLagTime, (InputMetrics * __this, double value, MethodInfo * method)); +DO_APP_FUNC(0x02A67F60, float, InputMetrics_get_averageEventBytesPerFrame, (InputMetrics * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A67F80, double, InputMetrics_get_averageProcessingTimePerEvent, (InputMetrics * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A67FA0, double, InputMetrics_get_averageLagTimePerEvent, (InputMetrics * __this, MethodInfo * method)); DO_APP_FUNC(0x02A67FC0, void, InputUpdate_OnBeforeUpdate, (InputUpdateType__Enum type, MethodInfo * method)); DO_APP_FUNC(0x02A68040, void, InputUpdate_OnUpdate, (InputUpdateType__Enum type, MethodInfo * method)); DO_APP_FUNC(0x02A680C0, InputUpdate_SerializedState, InputUpdate_Save, (MethodInfo * method)); DO_APP_FUNC(0x02A68110, void, InputUpdate_Restore, (InputUpdate_SerializedState state, MethodInfo * method)); DO_APP_FUNC(0x02A681B0, InputUpdateType__Enum, InputUpdate_GetUpdateTypeForPlayer, (InputUpdateType__Enum mask, MethodInfo * method)); DO_APP_FUNC(0x02A681D0, bool, InputUpdate_IsPlayerUpdate, (InputUpdateType__Enum updateType, MethodInfo * method)); -DO_APP_FUNC(0x00C173E0, uint32_t, InputUpdate_UpdateStepCount_get_value, (InputUpdate_UpdateStepCount__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018C6CA0, void, InputUpdate_UpdateStepCount_set_value, (InputUpdate_UpdateStepCount__Boxed * __this, uint32_t value, MethodInfo * method)); -DO_APP_FUNC(0x02A681E0, void, InputUpdate_UpdateStepCount_OnBeforeUpdate, (InputUpdate_UpdateStepCount__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A681F0, void, InputUpdate_UpdateStepCount_OnUpdate, (InputUpdate_UpdateStepCount__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C173E0, uint32_t, InputUpdate_UpdateStepCount_get_value, (InputUpdate_UpdateStepCount * __this, MethodInfo * method)); +DO_APP_FUNC(0x018C6CA0, void, InputUpdate_UpdateStepCount_set_value, (InputUpdate_UpdateStepCount * __this, uint32_t value, MethodInfo * method)); +DO_APP_FUNC(0x02A681E0, void, InputUpdate_UpdateStepCount_OnBeforeUpdate, (InputUpdate_UpdateStepCount * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A681F0, void, InputUpdate_UpdateStepCount_OnUpdate, (InputUpdate_UpdateStepCount * __this, MethodInfo * method)); DO_APP_FUNC(0x02A68200, int32_t, NativeInputRuntime_AllocateDeviceId, (NativeInputRuntime * __this, MethodInfo * method)); DO_APP_FUNC(0x02A68280, void, NativeInputRuntime_Update, (NativeInputRuntime * __this, InputUpdateType__Enum updateType, MethodInfo * method)); DO_APP_FUNC(0x02A68310, void, NativeInputRuntime_QueueEvent, (NativeInputRuntime * __this, InputEvent * ptr, MethodInfo * method)); @@ -55091,56 +64172,56 @@ DO_APP_FUNC(0x02A6ABA0, void, InputState_StateChangeMonitorDelegate_NotifyTimerE DO_APP_FUNC(0x003AE050, void, InputState_StateChangeMonitorDelegate__ctor, (InputState_StateChangeMonitorDelegate * __this, MethodInfo * method)); DO_APP_FUNC(0x02A6ABC0, int32_t, InputStateBlock_GetSizeOfPrimitiveFormatInBits, (FourCC type, MethodInfo * method)); DO_APP_FUNC(0x02A6AF10, FourCC, InputStateBlock_GetPrimitiveFormatFromType, (Type * type, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, FourCC, InputStateBlock_get_format, (InputStateBlock__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00959BA0, void, InputStateBlock_set_format, (InputStateBlock__Boxed * __this, FourCC value, MethodInfo * method)); -DO_APP_FUNC(0x00C173E0, uint32_t, InputStateBlock_get_byteOffset, (InputStateBlock__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018C6CA0, void, InputStateBlock_set_byteOffset, (InputStateBlock__Boxed * __this, uint32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00471920, uint32_t, InputStateBlock_get_bitOffset, (InputStateBlock__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018C6CC0, void, InputStateBlock_set_bitOffset, (InputStateBlock__Boxed * __this, uint32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00E57F20, uint32_t, InputStateBlock_get_sizeInBits, (InputStateBlock__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B16CA0, void, InputStateBlock_set_sizeInBits, (InputStateBlock__Boxed * __this, uint32_t value, MethodInfo * method)); -DO_APP_FUNC(0x02A6B540, uint32_t, InputStateBlock_get_alignedSizeInBytes, (InputStateBlock__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A6B590, uint32_t, InputStateBlock_get_effectiveByteOffset, (InputStateBlock__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A6B5E0, uint32_t, InputStateBlock_get_effectiveBitOffset, (InputStateBlock__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A6B630, int32_t, InputStateBlock_ReadInt, (InputStateBlock__Boxed * __this, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, FourCC, InputStateBlock_get_format, (InputStateBlock * __this, MethodInfo * method)); +DO_APP_FUNC(0x00959BA0, void, InputStateBlock_set_format, (InputStateBlock * __this, FourCC value, MethodInfo * method)); +DO_APP_FUNC(0x00C173E0, uint32_t, InputStateBlock_get_byteOffset, (InputStateBlock * __this, MethodInfo * method)); +DO_APP_FUNC(0x018C6CA0, void, InputStateBlock_set_byteOffset, (InputStateBlock * __this, uint32_t value, MethodInfo * method)); +DO_APP_FUNC(0x00471920, uint32_t, InputStateBlock_get_bitOffset, (InputStateBlock * __this, MethodInfo * method)); +DO_APP_FUNC(0x018C6CC0, void, InputStateBlock_set_bitOffset, (InputStateBlock * __this, uint32_t value, MethodInfo * method)); +DO_APP_FUNC(0x00E57F20, uint32_t, InputStateBlock_get_sizeInBits, (InputStateBlock * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B16CA0, void, InputStateBlock_set_sizeInBits, (InputStateBlock * __this, uint32_t value, MethodInfo * method)); +DO_APP_FUNC(0x02A6B540, uint32_t, InputStateBlock_get_alignedSizeInBytes, (InputStateBlock * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A6B590, uint32_t, InputStateBlock_get_effectiveByteOffset, (InputStateBlock * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A6B5E0, uint32_t, InputStateBlock_get_effectiveBitOffset, (InputStateBlock * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A6B630, int32_t, InputStateBlock_ReadInt, (InputStateBlock * __this, Void * statePtr, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8C320, InputStateBlock_ReadInt__MethodInfo); -DO_APP_FUNC(0x02A6B920, void, InputStateBlock_WriteInt, (InputStateBlock__Boxed * __this, Void * statePtr, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x02A6B920, void, InputStateBlock_WriteInt, (InputStateBlock * __this, Void * statePtr, int32_t value, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8C328, InputStateBlock_WriteInt__MethodInfo); -DO_APP_FUNC(0x02A6BBA0, float, InputStateBlock_ReadFloat, (InputStateBlock__Boxed * __this, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC(0x02A6BBA0, float, InputStateBlock_ReadFloat, (InputStateBlock * __this, Void * statePtr, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8C300, InputStateBlock_ReadFloat__MethodInfo); -DO_APP_FUNC(0x02A6BF90, void, InputStateBlock_WriteFloat, (InputStateBlock__Boxed * __this, Void * statePtr, float value, MethodInfo * method)); +DO_APP_FUNC(0x02A6BF90, void, InputStateBlock_WriteFloat, (InputStateBlock * __this, Void * statePtr, float value, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8C308, InputStateBlock_WriteFloat__MethodInfo); -DO_APP_FUNC(0x02A6C310, PrimitiveValue, InputStateBlock_FloatToPrimitiveValue, (InputStateBlock__Boxed * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02A6C310, PrimitiveValue, InputStateBlock_FloatToPrimitiveValue, (InputStateBlock * __this, float value, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8C310, InputStateBlock_FloatToPrimitiveValue__MethodInfo); -DO_APP_FUNC(0x02A6C6E0, double, InputStateBlock_ReadDouble, (InputStateBlock__Boxed * __this, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC(0x02A6C6E0, double, InputStateBlock_ReadDouble, (InputStateBlock * __this, Void * statePtr, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8C2C8, InputStateBlock_ReadDouble__MethodInfo); -DO_APP_FUNC(0x02A6CAE0, void, InputStateBlock_WriteDouble, (InputStateBlock__Boxed * __this, Void * statePtr, double value, MethodInfo * method)); +DO_APP_FUNC(0x02A6CAE0, void, InputStateBlock_WriteDouble, (InputStateBlock * __this, Void * statePtr, double value, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8C2D0, InputStateBlock_WriteDouble__MethodInfo); -DO_APP_FUNC(0x02A6CE80, void, InputStateBlock_Write, (InputStateBlock__Boxed * __this, Void * statePtr, PrimitiveValue value, MethodInfo * method)); +DO_APP_FUNC(0x02A6CE80, void, InputStateBlock_Write, (InputStateBlock * __this, Void * statePtr, PrimitiveValue value, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8C2A8, InputStateBlock_Write__MethodInfo); -DO_APP_FUNC(0x02A6D1A0, void, InputStateBlock_CopyToFrom, (InputStateBlock__Boxed * __this, Void * toStatePtr, Void * fromStatePtr, MethodInfo * method)); +DO_APP_FUNC(0x02A6D1A0, void, InputStateBlock_CopyToFrom, (InputStateBlock * __this, Void * toStatePtr, Void * fromStatePtr, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8C2B8, InputStateBlock_CopyToFrom__MethodInfo); DO_APP_FUNC(0x02A6D300, void, InputStateBlock__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02A6D4F0, InputStateBuffers_DoubleBuffers, InputStateBuffers_GetDoubleBuffersFor, (InputStateBuffers__Boxed * __this, InputUpdateType__Enum updateType, MethodInfo * method)); +DO_APP_FUNC(0x02A6D4F0, InputStateBuffers_DoubleBuffers, InputStateBuffers_GetDoubleBuffersFor, (InputStateBuffers * __this, InputUpdateType__Enum updateType, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8C2E8, InputStateBuffers_GetDoubleBuffersFor__MethodInfo); DO_APP_FUNC(0x02A6D5D0, Void *, InputStateBuffers_GetFrontBufferForDevice, (int32_t deviceIndex, MethodInfo * method)); DO_APP_FUNC(0x02A6D620, Void *, InputStateBuffers_GetBackBufferForDevice, (int32_t deviceIndex, MethodInfo * method)); DO_APP_FUNC(0x02A6D670, void, InputStateBuffers_SwitchTo, (InputStateBuffers buffers, InputUpdateType__Enum update, MethodInfo * method)); -DO_APP_FUNC(0x02A6D6D0, void, InputStateBuffers_AllocateAll, (InputStateBuffers__Boxed * __this, InputDevice__Array * devices, int32_t deviceCount, MethodInfo * method)); -DO_APP_FUNC(0x02A6D840, InputStateBuffers_DoubleBuffers, InputStateBuffers_SetUpDeviceToBufferMappings, (int32_t deviceCount, uint8_t * bufferPtr, uint32_t sizePerBuffer, uint32_t mappingTableSizePerBuffer, MethodInfo * method)); -DO_APP_FUNC(0x02A6D8A0, void, InputStateBuffers_FreeAll, (InputStateBuffers__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A6D9C0, void, InputStateBuffers_MigrateAll, (InputStateBuffers__Boxed * __this, InputDevice__Array * devices, int32_t deviceCount, InputStateBuffers oldBuffers, MethodInfo * method)); +DO_APP_FUNC(0x02A6D6D0, void, InputStateBuffers_AllocateAll, (InputStateBuffers * __this, InputDevice__Array * devices, int32_t deviceCount, MethodInfo * method)); +DO_APP_FUNC(0x02A6D840, InputStateBuffers_DoubleBuffers, InputStateBuffers_SetUpDeviceToBufferMappings, (int32_t deviceCount, uint8_t * * bufferPtr, uint32_t sizePerBuffer, uint32_t mappingTableSizePerBuffer, MethodInfo * method)); +DO_APP_FUNC(0x02A6D8A0, void, InputStateBuffers_FreeAll, (InputStateBuffers * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A6D9C0, void, InputStateBuffers_MigrateAll, (InputStateBuffers * __this, InputDevice__Array * devices, int32_t deviceCount, InputStateBuffers oldBuffers, MethodInfo * method)); DO_APP_FUNC(0x02A6DCF0, void, InputStateBuffers_MigrateDoubleBuffer, (InputStateBuffers_DoubleBuffers newBuffer, InputDevice__Array * devices, int32_t deviceCount, InputStateBuffers_DoubleBuffers oldBuffer, MethodInfo * method)); DO_APP_FUNC(0x02A6DEA0, void, InputStateBuffers_MigrateSingleBuffer, (Void * newBuffer, InputDevice__Array * devices, int32_t deviceCount, Void * oldBuffer, MethodInfo * method)); DO_APP_FUNC(0x02A6DFD0, uint32_t, InputStateBuffers_ComputeSizeOfSingleStateBuffer, (InputDevice__Array * devices, int32_t deviceCount, MethodInfo * method)); DO_APP_FUNC(0x02A6E160, uint32_t, InputStateBuffers_NextDeviceOffset, (uint32_t currentOffset, InputDevice * device, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8C250, InputStateBuffers_NextDeviceOffset__MethodInfo); -DO_APP_FUNC(0x01809EF0, bool, InputStateBuffers_DoubleBuffers_get_valid, (InputStateBuffers_DoubleBuffers__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A6E280, void, InputStateBuffers_DoubleBuffers_SetFrontBuffer, (InputStateBuffers_DoubleBuffers__Boxed * __this, int32_t deviceIndex, Void * ptr, MethodInfo * method)); -DO_APP_FUNC(0x02A6E290, void, InputStateBuffers_DoubleBuffers_SetBackBuffer, (InputStateBuffers_DoubleBuffers__Boxed * __this, int32_t deviceIndex, Void * ptr, MethodInfo * method)); -DO_APP_FUNC(0x02A6E2A0, Void *, InputStateBuffers_DoubleBuffers_GetFrontBuffer, (InputStateBuffers_DoubleBuffers__Boxed * __this, int32_t deviceIndex, MethodInfo * method)); -DO_APP_FUNC(0x02A6E2B0, Void *, InputStateBuffers_DoubleBuffers_GetBackBuffer, (InputStateBuffers_DoubleBuffers__Boxed * __this, int32_t deviceIndex, MethodInfo * method)); -DO_APP_FUNC(0x02A6E2C0, void, InputStateBuffers_DoubleBuffers_SwapBuffers, (InputStateBuffers_DoubleBuffers__Boxed * __this, int32_t deviceIndex, MethodInfo * method)); +DO_APP_FUNC(0x01809EF0, bool, InputStateBuffers_DoubleBuffers_get_valid, (InputStateBuffers_DoubleBuffers * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A6E280, void, InputStateBuffers_DoubleBuffers_SetFrontBuffer, (InputStateBuffers_DoubleBuffers * __this, int32_t deviceIndex, Void * ptr, MethodInfo * method)); +DO_APP_FUNC(0x02A6E290, void, InputStateBuffers_DoubleBuffers_SetBackBuffer, (InputStateBuffers_DoubleBuffers * __this, int32_t deviceIndex, Void * ptr, MethodInfo * method)); +DO_APP_FUNC(0x02A6E2A0, Void *, InputStateBuffers_DoubleBuffers_GetFrontBuffer, (InputStateBuffers_DoubleBuffers * __this, int32_t deviceIndex, MethodInfo * method)); +DO_APP_FUNC(0x02A6E2B0, Void *, InputStateBuffers_DoubleBuffers_GetBackBuffer, (InputStateBuffers_DoubleBuffers * __this, int32_t deviceIndex, MethodInfo * method)); +DO_APP_FUNC(0x02A6E2C0, void, InputStateBuffers_DoubleBuffers_SwapBuffers, (InputStateBuffers_DoubleBuffers * __this, int32_t deviceIndex, MethodInfo * method)); DO_APP_FUNC(0x00A47640, int32_t, InputStateHistory_get_Count, (InputStateHistory * __this, MethodInfo * method)); DO_APP_FUNC(0x01D31FA0, uint32_t, InputStateHistory_get_version, (InputStateHistory * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7400, int32_t, InputStateHistory_get_historyDepth, (InputStateHistory * __this, MethodInfo * method)); @@ -55186,44 +64267,44 @@ DO_APP_FUNC(0x02A6FF00, int32_t, InputStateHistory_UserIndexToRecordIndex, (Inpu DO_APP_FUNC(0x02A6FF10, InputStateHistory_RecordHeader *, InputStateHistory_GetRecord, (InputStateHistory * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8C1E8, InputStateHistory_GetRecord__MethodInfo); DO_APP_FUNC(0x02A70010, InputStateHistory_RecordHeader *, InputStateHistory_GetRecordUnchecked, (InputStateHistory * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x02A700A0, InputStateHistory_RecordHeader *, InputStateHistory_AllocateRecord, (InputStateHistory * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x02A700A0, InputStateHistory_RecordHeader *, InputStateHistory_AllocateRecord, (InputStateHistory * __this, int32_t * index, MethodInfo * method)); DO_APP_FUNC(0x02A70180, Object *, InputStateHistory_ReadValueAsObject, (InputStateHistory * __this, InputStateHistory_RecordHeader * data, MethodInfo * method)); DO_APP_FUNC(0x02A70370, void, InputStateHistory_UnityEngine_InputSystem_LowLevel_IInputStateChangeMonitor_NotifyControlStateChanged, (InputStateHistory * __this, InputControl * control, double time, InputEventPtr eventPtr, int64_t monitorIndex, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InputStateHistory_UnityEngine_InputSystem_LowLevel_IInputStateChangeMonitor_NotifyTimerExpired, (InputStateHistory * __this, InputControl * control, double time, int64_t monitorIndex, int32_t timerIndex, MethodInfo * method)); DO_APP_FUNC(0x02A70520, int32_t, InputStateHistory_get_bytesPerRecord, (InputStateHistory * __this, MethodInfo * method)); -DO_APP_FUNC(0x01444D30, void, InputStateHistory_Enumerator__ctor, (InputStateHistory_Enumerator__Boxed * __this, InputStateHistory * history, MethodInfo * method)); -DO_APP_FUNC(0x01444DA0, bool, InputStateHistory_Enumerator_MoveNext, (InputStateHistory_Enumerator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014430F0, void, InputStateHistory_Enumerator_Reset, (InputStateHistory_Enumerator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A70570, InputStateHistory_Record, InputStateHistory_Enumerator_get_Current, (InputStateHistory_Enumerator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A70710, Object *, InputStateHistory_Enumerator_System_Collections_IEnumerator_get_Current, (InputStateHistory_Enumerator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, InputStateHistory_Enumerator_Dispose, (InputStateHistory_Enumerator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A70770, uint8_t *, InputStateHistory_RecordHeader_get_statePtrWithControlIndex, (InputStateHistory_RecordHeader__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B9DB20, uint8_t *, InputStateHistory_RecordHeader_get_statePtrWithoutControlIndex, (InputStateHistory_RecordHeader__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A70780, InputStateHistory_RecordHeader *, InputStateHistory_Record_get_header, (InputStateHistory_Record__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0103C930, int32_t, InputStateHistory_Record_get_recordIndex, (InputStateHistory_Record__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E57F20, uint32_t, InputStateHistory_Record_get_version, (InputStateHistory_Record__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A707B0, bool, InputStateHistory_Record_get_valid, (InputStateHistory_Record__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, InputStateHistory *, InputStateHistory_Record_get_owner, (InputStateHistory_Record__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A70800, int32_t, InputStateHistory_Record_get_index, (InputStateHistory_Record__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A70840, double, InputStateHistory_Record_get_time, (InputStateHistory_Record__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A70880, InputControl *, InputStateHistory_Record_get_control, (InputStateHistory_Record__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A70A20, InputStateHistory_Record, InputStateHistory_Record_get_next, (InputStateHistory_Record__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A70B40, InputStateHistory_Record, InputStateHistory_Record_get_previous, (InputStateHistory_Record__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0103D100, void, InputStateHistory_Record__ctor, (InputStateHistory_Record__Boxed * __this, InputStateHistory * owner, int32_t index, InputStateHistory_RecordHeader * header, MethodInfo * method)); -DO_APP_FUNC(0x02A70C60, Object *, InputStateHistory_Record_ReadValueAsObject, (InputStateHistory_Record__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A70CB0, Void *, InputStateHistory_Record_GetUnsafeMemoryPtr, (InputStateHistory_Record__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A70CD0, Void *, InputStateHistory_Record_GetUnsafeMemoryPtrUnchecked, (InputStateHistory_Record__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A70D70, Void *, InputStateHistory_Record_GetUnsafeExtraMemoryPtr, (InputStateHistory_Record__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A70D90, Void *, InputStateHistory_Record_GetUnsafeExtraMemoryPtrUnchecked, (InputStateHistory_Record__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01444D30, void, InputStateHistory_Enumerator__ctor, (InputStateHistory_Enumerator * __this, InputStateHistory * history, MethodInfo * method)); +DO_APP_FUNC(0x01444DA0, bool, InputStateHistory_Enumerator_MoveNext, (InputStateHistory_Enumerator * __this, MethodInfo * method)); +DO_APP_FUNC(0x014430F0, void, InputStateHistory_Enumerator_Reset, (InputStateHistory_Enumerator * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A70570, InputStateHistory_Record, InputStateHistory_Enumerator_get_Current, (InputStateHistory_Enumerator * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A70710, Object *, InputStateHistory_Enumerator_System_Collections_IEnumerator_get_Current, (InputStateHistory_Enumerator * __this, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, InputStateHistory_Enumerator_Dispose, (InputStateHistory_Enumerator * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A70770, uint8_t *, InputStateHistory_RecordHeader_get_statePtrWithControlIndex, (InputStateHistory_RecordHeader * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B9DB20, uint8_t *, InputStateHistory_RecordHeader_get_statePtrWithoutControlIndex, (InputStateHistory_RecordHeader * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A70780, InputStateHistory_RecordHeader *, InputStateHistory_Record_get_header, (InputStateHistory_Record * __this, MethodInfo * method)); +DO_APP_FUNC(0x0103C930, int32_t, InputStateHistory_Record_get_recordIndex, (InputStateHistory_Record * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E57F20, uint32_t, InputStateHistory_Record_get_version, (InputStateHistory_Record * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A707B0, bool, InputStateHistory_Record_get_valid, (InputStateHistory_Record * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, InputStateHistory *, InputStateHistory_Record_get_owner, (InputStateHistory_Record * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A70800, int32_t, InputStateHistory_Record_get_index, (InputStateHistory_Record * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A70840, double, InputStateHistory_Record_get_time, (InputStateHistory_Record * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A70880, InputControl *, InputStateHistory_Record_get_control, (InputStateHistory_Record * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A70A20, InputStateHistory_Record, InputStateHistory_Record_get_next, (InputStateHistory_Record * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A70B40, InputStateHistory_Record, InputStateHistory_Record_get_previous, (InputStateHistory_Record * __this, MethodInfo * method)); +DO_APP_FUNC(0x0103D100, void, InputStateHistory_Record__ctor, (InputStateHistory_Record * __this, InputStateHistory * owner, int32_t index, InputStateHistory_RecordHeader * header, MethodInfo * method)); +DO_APP_FUNC(0x02A70C60, Object *, InputStateHistory_Record_ReadValueAsObject, (InputStateHistory_Record * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A70CB0, Void *, InputStateHistory_Record_GetUnsafeMemoryPtr, (InputStateHistory_Record * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A70CD0, Void *, InputStateHistory_Record_GetUnsafeMemoryPtrUnchecked, (InputStateHistory_Record * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A70D70, Void *, InputStateHistory_Record_GetUnsafeExtraMemoryPtr, (InputStateHistory_Record * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A70D90, Void *, InputStateHistory_Record_GetUnsafeExtraMemoryPtrUnchecked, (InputStateHistory_Record * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8C030, InputStateHistory_Record_GetUnsafeExtraMemoryPtrUnchecked__MethodInfo); -DO_APP_FUNC(0x02A70E80, void, InputStateHistory_Record_CopyFrom, (InputStateHistory_Record__Boxed * __this, InputStateHistory_Record record, MethodInfo * method)); +DO_APP_FUNC(0x02A70E80, void, InputStateHistory_Record_CopyFrom, (InputStateHistory_Record * __this, InputStateHistory_Record record, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8C050, InputStateHistory_Record_CopyFrom__MethodInfo); -DO_APP_FUNC(0x02A71370, void, InputStateHistory_Record_CheckValid, (InputStateHistory_Record__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A71370, void, InputStateHistory_Record_CheckValid, (InputStateHistory_Record * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8C108, InputStateHistory_Record_CheckValid__MethodInfo); -DO_APP_FUNC(0x01039A60, bool, InputStateHistory_Record_Equals, (InputStateHistory_Record__Boxed * __this, InputStateHistory_Record other, MethodInfo * method)); -DO_APP_FUNC(0x02A71460, bool, InputStateHistory_Record_Equals_1, (InputStateHistory_Record__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0103DBB0, int32_t, InputStateHistory_Record_GetHashCode, (InputStateHistory_Record__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A71500, String *, InputStateHistory_Record_ToString, (InputStateHistory_Record__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01039A60, bool, InputStateHistory_Record_Equals, (InputStateHistory_Record * __this, InputStateHistory_Record other, MethodInfo * method)); +DO_APP_FUNC(0x02A71460, bool, InputStateHistory_Record_Equals_1, (InputStateHistory_Record * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x0103DBB0, int32_t, InputStateHistory_Record_GetHashCode, (InputStateHistory_Record * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A71500, String *, InputStateHistory_Record_ToString, (InputStateHistory_Record * __this, MethodInfo * method)); DO_APP_FUNC(0x02A716B0, float, AxisDeadzoneProcessor_get_minOrDefault, (AxisDeadzoneProcessor * __this, MethodInfo * method)); DO_APP_FUNC(0x02A71730, float, AxisDeadzoneProcessor_get_maxOrDefault, (AxisDeadzoneProcessor * __this, MethodInfo * method)); DO_APP_FUNC(0x02A717B0, float, AxisDeadzoneProcessor_Process, (AxisDeadzoneProcessor * __this, float value, InputControl * control, MethodInfo * method)); @@ -55323,9 +64404,9 @@ DO_APP_FUNC(0x005B9620, Object *, InputControlAttribute_get_maxValue, (InputCont DO_APP_FUNC(0x00474710, void, InputControlAttribute_set_maxValue, (InputControlAttribute * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x02A730A0, void, InputControlAttribute__ctor, (InputControlAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x02A730B0, void, InputDeviceFindControlLayoutDelegate__ctor, (InputDeviceFindControlLayoutDelegate * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EF9C0, String *, InputDeviceFindControlLayoutDelegate_Invoke, (InputDeviceFindControlLayoutDelegate * __this, InputDeviceDescription description, String * matchedLayout, InputDeviceExecuteCommandDelegate * executeDeviceCommand, MethodInfo * method)); -DO_APP_FUNC(0x02A731F0, IAsyncResult *, InputDeviceFindControlLayoutDelegate_BeginInvoke, (InputDeviceFindControlLayoutDelegate * __this, InputDeviceDescription description, String * matchedLayout, InputDeviceExecuteCommandDelegate * executeDeviceCommand, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003EC4B0, String *, InputDeviceFindControlLayoutDelegate_EndInvoke, (InputDeviceFindControlLayoutDelegate * __this, InputDeviceDescription description, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EF9C0, String *, InputDeviceFindControlLayoutDelegate_Invoke, (InputDeviceFindControlLayoutDelegate * __this, InputDeviceDescription * description, String * matchedLayout, InputDeviceExecuteCommandDelegate * executeDeviceCommand, MethodInfo * method)); +DO_APP_FUNC(0x02A731F0, IAsyncResult *, InputDeviceFindControlLayoutDelegate_BeginInvoke, (InputDeviceFindControlLayoutDelegate * __this, InputDeviceDescription * description, String * matchedLayout, InputDeviceExecuteCommandDelegate * executeDeviceCommand, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003EC4B0, String *, InputDeviceFindControlLayoutDelegate_EndInvoke, (InputDeviceFindControlLayoutDelegate * __this, InputDeviceDescription * description, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x02A73290, InternedString, InputControlLayout_get_DefaultVariant, (MethodInfo * method)); DO_APP_FUNC(0x00E382E0, InternedString, InputControlLayout_get_name, (InputControlLayout * __this, MethodInfo * method)); DO_APP_FUNC(0x02A732F0, String *, InputControlLayout_get_displayName, (InputControlLayout * __this, MethodInfo * method)); @@ -55354,7 +64435,7 @@ DO_APP_FUNC(0x02A738F0, InputControlLayout_ControlItem, InputControlLayout_get_I DO_APP_FUNC_METHODINFO(0x03C8BDC8, InputControlLayout_get_Item__MethodInfo); DO_APP_FUNC(0x02A73AC0, Nullable_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_, InputControlLayout_FindControl, (InputControlLayout * __this, InternedString path, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8BDA0, InputControlLayout_FindControl__MethodInfo); -DO_APP_FUNC(0x02A73E10, Nullable_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_, InputControlLayout_FindControlIncludingArrayElements, (InputControlLayout * __this, String * path, int32_t arrayIndex, MethodInfo * method)); +DO_APP_FUNC(0x02A73E10, Nullable_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_, InputControlLayout_FindControlIncludingArrayElements, (InputControlLayout * __this, String * path, int32_t * arrayIndex, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8BDB0, InputControlLayout_FindControlIncludingArrayElements__MethodInfo); DO_APP_FUNC(0x02A744B0, Type *, InputControlLayout_GetValueType, (InputControlLayout * __this, MethodInfo * method)); DO_APP_FUNC(0x02A74540, InputControlLayout *, InputControlLayout_FromType, (String * name, Type * type, MethodInfo * method)); @@ -55373,62 +64454,62 @@ DO_APP_FUNC_METHODINFO(0x03C8BCB0, InputControlLayout_MergeLayout__MethodInfo); DO_APP_FUNC(0x02A78A70, Dictionary_2_System_String_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ *, InputControlLayout_CreateLookupTableForControls, (InputControlLayout_ControlItem__Array * controlItems, List_1_System_String_ * variants, MethodInfo * method)); DO_APP_FUNC(0x02A78F70, bool, InputControlLayout_VariantsMatch, (InternedString expected, InternedString actual, MethodInfo * method)); DO_APP_FUNC(0x02A78FD0, bool, InputControlLayout_VariantsMatch_1, (String * expected, String * actual, MethodInfo * method)); -DO_APP_FUNC(0x02A79140, void, InputControlLayout_ParseHeaderFieldsFromJson, (String * json, InternedString name, InlinedArray_1_InternedString_ baseLayouts, InputDeviceMatcher deviceMatcher, MethodInfo * method)); -DO_APP_FUNC(0x02A79420, InputControlLayout_Cache, InputControlLayout_get_cache, (MethodInfo * method)); +DO_APP_FUNC(0x02A79140, void, InputControlLayout_ParseHeaderFieldsFromJson, (String * json, InternedString * name, InlinedArray_1_InternedString_ * baseLayouts, InputDeviceMatcher * deviceMatcher, MethodInfo * method)); +DO_APP_FUNC(0x02A79420, InputControlLayout_Cache *, InputControlLayout_get_cache, (MethodInfo * method)); DO_APP_FUNC(0x02A79480, InputControlLayout_CacheRefInstance, InputControlLayout_CacheRef, (MethodInfo * method)); DO_APP_FUNC(0x02A794E0, void, InputControlLayout__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02A795B0, bool, InputControlLayout__MergeLayout_b__77_0, (InputControlLayout * __this, InputControlLayout_ControlItem x, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8BCE0, InputControlLayout__MergeLayout_b__77_0__MethodInfo); -DO_APP_FUNC(0x00C2FFD0, InternedString, InputControlLayout_ControlItem_get_name, (InputControlLayout_ControlItem__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01143B90, void, InputControlLayout_ControlItem_set_name, (InputControlLayout_ControlItem__Boxed * __this, InternedString value, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, InternedString, InputControlLayout_ControlItem_get_layout, (InputControlLayout_ControlItem__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018128B0, void, InputControlLayout_ControlItem_set_layout, (InputControlLayout_ControlItem__Boxed * __this, InternedString value, MethodInfo * method)); -DO_APP_FUNC(0x01042010, InternedString, InputControlLayout_ControlItem_get_variants, (InputControlLayout_ControlItem__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A79670, void, InputControlLayout_ControlItem_set_variants, (InputControlLayout_ControlItem__Boxed * __this, InternedString value, MethodInfo * method)); -DO_APP_FUNC(0x003BB330, String *, InputControlLayout_ControlItem_get_useStateFrom, (InputControlLayout_ControlItem__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00424C30, void, InputControlLayout_ControlItem_set_useStateFrom, (InputControlLayout_ControlItem__Boxed * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x003C7320, String *, InputControlLayout_ControlItem_get_displayName, (InputControlLayout_ControlItem__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003C7330, void, InputControlLayout_ControlItem_set_displayName, (InputControlLayout_ControlItem__Boxed * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x003C7390, String *, InputControlLayout_ControlItem_get_shortDisplayName, (InputControlLayout_ControlItem__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003C73A0, void, InputControlLayout_ControlItem_set_shortDisplayName, (InputControlLayout_ControlItem__Boxed * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x02004310, ReadOnlyArray_1_InternedString_, InputControlLayout_ControlItem_get_usages, (InputControlLayout_ControlItem__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A796D0, void, InputControlLayout_ControlItem_set_usages, (InputControlLayout_ControlItem__Boxed * __this, ReadOnlyArray_1_InternedString_ value, MethodInfo * method)); -DO_APP_FUNC(0x00B97480, ReadOnlyArray_1_InternedString_, InputControlLayout_ControlItem_get_aliases, (InputControlLayout_ControlItem__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A79730, void, InputControlLayout_ControlItem_set_aliases, (InputControlLayout_ControlItem__Boxed * __this, ReadOnlyArray_1_InternedString_ value, MethodInfo * method)); -DO_APP_FUNC(0x02A79790, ReadOnlyArray_1_NamedValue_, InputControlLayout_ControlItem_get_parameters, (InputControlLayout_ControlItem__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A797A0, void, InputControlLayout_ControlItem_set_parameters, (InputControlLayout_ControlItem__Boxed * __this, ReadOnlyArray_1_NamedValue_ value, MethodInfo * method)); -DO_APP_FUNC(0x028E10E0, ReadOnlyArray_1_NameAndParameters_, InputControlLayout_ControlItem_get_processors, (InputControlLayout_ControlItem__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A79800, void, InputControlLayout_ControlItem_set_processors, (InputControlLayout_ControlItem__Boxed * __this, ReadOnlyArray_1_NameAndParameters_ value, MethodInfo * method)); -DO_APP_FUNC(0x00C2C4C0, uint32_t, InputControlLayout_ControlItem_get_offset, (InputControlLayout_ControlItem__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C2C4D0, void, InputControlLayout_ControlItem_set_offset, (InputControlLayout_ControlItem__Boxed * __this, uint32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00975C70, uint32_t, InputControlLayout_ControlItem_get_bit, (InputControlLayout_ControlItem__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00975C80, void, InputControlLayout_ControlItem_set_bit, (InputControlLayout_ControlItem__Boxed * __this, uint32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00C2C5E0, uint32_t, InputControlLayout_ControlItem_get_sizeInBits, (InputControlLayout_ControlItem__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01DB9910, void, InputControlLayout_ControlItem_set_sizeInBits, (InputControlLayout_ControlItem__Boxed * __this, uint32_t value, MethodInfo * method)); -DO_APP_FUNC(0x01860170, FourCC, InputControlLayout_ControlItem_get_format, (InputControlLayout_ControlItem__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01860180, void, InputControlLayout_ControlItem_set_format, (InputControlLayout_ControlItem__Boxed * __this, FourCC value, MethodInfo * method)); -DO_APP_FUNC(0x01860190, InputControlLayout_ControlItem_Flags__Enum, InputControlLayout_ControlItem_get_flags, (InputControlLayout_ControlItem__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018601A0, void, InputControlLayout_ControlItem_set_flags, (InputControlLayout_ControlItem__Boxed * __this, InputControlLayout_ControlItem_Flags__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x01806100, int32_t, InputControlLayout_ControlItem_get_arraySize, (InputControlLayout_ControlItem__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01806110, void, InputControlLayout_ControlItem_set_arraySize, (InputControlLayout_ControlItem__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x02A79860, PrimitiveValue, InputControlLayout_ControlItem_get_defaultState, (InputControlLayout_ControlItem__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A79870, void, InputControlLayout_ControlItem_set_defaultState, (InputControlLayout_ControlItem__Boxed * __this, PrimitiveValue value, MethodInfo * method)); -DO_APP_FUNC(0x02A79880, PrimitiveValue, InputControlLayout_ControlItem_get_minValue, (InputControlLayout_ControlItem__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A79890, void, InputControlLayout_ControlItem_set_minValue, (InputControlLayout_ControlItem__Boxed * __this, PrimitiveValue value, MethodInfo * method)); -DO_APP_FUNC(0x02A798A0, PrimitiveValue, InputControlLayout_ControlItem_get_maxValue, (InputControlLayout_ControlItem__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A798B0, void, InputControlLayout_ControlItem_set_maxValue, (InputControlLayout_ControlItem__Boxed * __this, PrimitiveValue value, MethodInfo * method)); -DO_APP_FUNC(0x02A798C0, bool, InputControlLayout_ControlItem_get_isModifyingExistingControl, (InputControlLayout_ControlItem__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A798D0, void, InputControlLayout_ControlItem_set_isModifyingExistingControl, (InputControlLayout_ControlItem__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02A798F0, bool, InputControlLayout_ControlItem_get_isNoisy, (InputControlLayout_ControlItem__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A79900, void, InputControlLayout_ControlItem_set_isNoisy, (InputControlLayout_ControlItem__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02A79920, bool, InputControlLayout_ControlItem_get_isSynthetic, (InputControlLayout_ControlItem__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A79930, void, InputControlLayout_ControlItem_set_isSynthetic, (InputControlLayout_ControlItem__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02A79950, bool, InputControlLayout_ControlItem_get_dontReset, (InputControlLayout_ControlItem__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A79960, void, InputControlLayout_ControlItem_set_dontReset, (InputControlLayout_ControlItem__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02A79980, bool, InputControlLayout_ControlItem_get_isFirstDefinedInThisLayout, (InputControlLayout_ControlItem__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A79990, void, InputControlLayout_ControlItem_set_isFirstDefinedInThisLayout, (InputControlLayout_ControlItem__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02A799B0, bool, InputControlLayout_ControlItem_get_isArray, (InputControlLayout_ControlItem__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A799C0, InputControlLayout_ControlItem, InputControlLayout_ControlItem_Merge, (InputControlLayout_ControlItem__Boxed * __this, InputControlLayout_ControlItem other, MethodInfo * method)); +DO_APP_FUNC(0x00C2FFD0, InternedString, InputControlLayout_ControlItem_get_name, (InputControlLayout_ControlItem * __this, MethodInfo * method)); +DO_APP_FUNC(0x01143B90, void, InputControlLayout_ControlItem_set_name, (InputControlLayout_ControlItem * __this, InternedString value, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, InternedString, InputControlLayout_ControlItem_get_layout, (InputControlLayout_ControlItem * __this, MethodInfo * method)); +DO_APP_FUNC(0x018128B0, void, InputControlLayout_ControlItem_set_layout, (InputControlLayout_ControlItem * __this, InternedString value, MethodInfo * method)); +DO_APP_FUNC(0x01042010, InternedString, InputControlLayout_ControlItem_get_variants, (InputControlLayout_ControlItem * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A79670, void, InputControlLayout_ControlItem_set_variants, (InputControlLayout_ControlItem * __this, InternedString value, MethodInfo * method)); +DO_APP_FUNC(0x003BB330, String *, InputControlLayout_ControlItem_get_useStateFrom, (InputControlLayout_ControlItem * __this, MethodInfo * method)); +DO_APP_FUNC(0x00424C30, void, InputControlLayout_ControlItem_set_useStateFrom, (InputControlLayout_ControlItem * __this, String * value, MethodInfo * method)); +DO_APP_FUNC(0x003C7320, String *, InputControlLayout_ControlItem_get_displayName, (InputControlLayout_ControlItem * __this, MethodInfo * method)); +DO_APP_FUNC(0x003C7330, void, InputControlLayout_ControlItem_set_displayName, (InputControlLayout_ControlItem * __this, String * value, MethodInfo * method)); +DO_APP_FUNC(0x003C7390, String *, InputControlLayout_ControlItem_get_shortDisplayName, (InputControlLayout_ControlItem * __this, MethodInfo * method)); +DO_APP_FUNC(0x003C73A0, void, InputControlLayout_ControlItem_set_shortDisplayName, (InputControlLayout_ControlItem * __this, String * value, MethodInfo * method)); +DO_APP_FUNC(0x02004310, ReadOnlyArray_1_InternedString_, InputControlLayout_ControlItem_get_usages, (InputControlLayout_ControlItem * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A796D0, void, InputControlLayout_ControlItem_set_usages, (InputControlLayout_ControlItem * __this, ReadOnlyArray_1_InternedString_ value, MethodInfo * method)); +DO_APP_FUNC(0x00B97480, ReadOnlyArray_1_InternedString_, InputControlLayout_ControlItem_get_aliases, (InputControlLayout_ControlItem * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A79730, void, InputControlLayout_ControlItem_set_aliases, (InputControlLayout_ControlItem * __this, ReadOnlyArray_1_InternedString_ value, MethodInfo * method)); +DO_APP_FUNC(0x02A79790, ReadOnlyArray_1_NamedValue_, InputControlLayout_ControlItem_get_parameters, (InputControlLayout_ControlItem * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A797A0, void, InputControlLayout_ControlItem_set_parameters, (InputControlLayout_ControlItem * __this, ReadOnlyArray_1_NamedValue_ value, MethodInfo * method)); +DO_APP_FUNC(0x028E10E0, ReadOnlyArray_1_NameAndParameters_, InputControlLayout_ControlItem_get_processors, (InputControlLayout_ControlItem * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A79800, void, InputControlLayout_ControlItem_set_processors, (InputControlLayout_ControlItem * __this, ReadOnlyArray_1_NameAndParameters_ value, MethodInfo * method)); +DO_APP_FUNC(0x00C2C4C0, uint32_t, InputControlLayout_ControlItem_get_offset, (InputControlLayout_ControlItem * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C2C4D0, void, InputControlLayout_ControlItem_set_offset, (InputControlLayout_ControlItem * __this, uint32_t value, MethodInfo * method)); +DO_APP_FUNC(0x00975C70, uint32_t, InputControlLayout_ControlItem_get_bit, (InputControlLayout_ControlItem * __this, MethodInfo * method)); +DO_APP_FUNC(0x00975C80, void, InputControlLayout_ControlItem_set_bit, (InputControlLayout_ControlItem * __this, uint32_t value, MethodInfo * method)); +DO_APP_FUNC(0x00C2C5E0, uint32_t, InputControlLayout_ControlItem_get_sizeInBits, (InputControlLayout_ControlItem * __this, MethodInfo * method)); +DO_APP_FUNC(0x01DB9910, void, InputControlLayout_ControlItem_set_sizeInBits, (InputControlLayout_ControlItem * __this, uint32_t value, MethodInfo * method)); +DO_APP_FUNC(0x01860170, FourCC, InputControlLayout_ControlItem_get_format, (InputControlLayout_ControlItem * __this, MethodInfo * method)); +DO_APP_FUNC(0x01860180, void, InputControlLayout_ControlItem_set_format, (InputControlLayout_ControlItem * __this, FourCC value, MethodInfo * method)); +DO_APP_FUNC(0x01860190, InputControlLayout_ControlItem_Flags__Enum, InputControlLayout_ControlItem_get_flags, (InputControlLayout_ControlItem * __this, MethodInfo * method)); +DO_APP_FUNC(0x018601A0, void, InputControlLayout_ControlItem_set_flags, (InputControlLayout_ControlItem * __this, InputControlLayout_ControlItem_Flags__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x01806100, int32_t, InputControlLayout_ControlItem_get_arraySize, (InputControlLayout_ControlItem * __this, MethodInfo * method)); +DO_APP_FUNC(0x01806110, void, InputControlLayout_ControlItem_set_arraySize, (InputControlLayout_ControlItem * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x02A79860, PrimitiveValue, InputControlLayout_ControlItem_get_defaultState, (InputControlLayout_ControlItem * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A79870, void, InputControlLayout_ControlItem_set_defaultState, (InputControlLayout_ControlItem * __this, PrimitiveValue value, MethodInfo * method)); +DO_APP_FUNC(0x02A79880, PrimitiveValue, InputControlLayout_ControlItem_get_minValue, (InputControlLayout_ControlItem * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A79890, void, InputControlLayout_ControlItem_set_minValue, (InputControlLayout_ControlItem * __this, PrimitiveValue value, MethodInfo * method)); +DO_APP_FUNC(0x02A798A0, PrimitiveValue, InputControlLayout_ControlItem_get_maxValue, (InputControlLayout_ControlItem * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A798B0, void, InputControlLayout_ControlItem_set_maxValue, (InputControlLayout_ControlItem * __this, PrimitiveValue value, MethodInfo * method)); +DO_APP_FUNC(0x02A798C0, bool, InputControlLayout_ControlItem_get_isModifyingExistingControl, (InputControlLayout_ControlItem * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A798D0, void, InputControlLayout_ControlItem_set_isModifyingExistingControl, (InputControlLayout_ControlItem * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02A798F0, bool, InputControlLayout_ControlItem_get_isNoisy, (InputControlLayout_ControlItem * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A79900, void, InputControlLayout_ControlItem_set_isNoisy, (InputControlLayout_ControlItem * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02A79920, bool, InputControlLayout_ControlItem_get_isSynthetic, (InputControlLayout_ControlItem * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A79930, void, InputControlLayout_ControlItem_set_isSynthetic, (InputControlLayout_ControlItem * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02A79950, bool, InputControlLayout_ControlItem_get_dontReset, (InputControlLayout_ControlItem * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A79960, void, InputControlLayout_ControlItem_set_dontReset, (InputControlLayout_ControlItem * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02A79980, bool, InputControlLayout_ControlItem_get_isFirstDefinedInThisLayout, (InputControlLayout_ControlItem * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A79990, void, InputControlLayout_ControlItem_set_isFirstDefinedInThisLayout, (InputControlLayout_ControlItem * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02A799B0, bool, InputControlLayout_ControlItem_get_isArray, (InputControlLayout_ControlItem * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A799C0, InputControlLayout_ControlItem, InputControlLayout_ControlItem_Merge, (InputControlLayout_ControlItem * __this, InputControlLayout_ControlItem other, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, String *, InputControlLayout_Builder_get_name, (InputControlLayout_Builder * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, InputControlLayout_Builder_set_name, (InputControlLayout_Builder * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, String *, InputControlLayout_Builder_get_displayName, (InputControlLayout_Builder * __this, MethodInfo * method)); @@ -55454,32 +64535,32 @@ DO_APP_FUNC(0x02A7A910, InputControlLayout_Builder *, InputControlLayout_Builder DO_APP_FUNC(0x02A7A920, InputControlLayout_Builder *, InputControlLayout_Builder_Extend, (InputControlLayout_Builder * __this, String * baseLayoutName, MethodInfo * method)); DO_APP_FUNC(0x02A7A940, InputControlLayout *, InputControlLayout_Builder_Build, (InputControlLayout_Builder * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InputControlLayout_Builder__ctor, (InputControlLayout_Builder * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A7AEA0, InputControlLayout_Builder_ControlBuilder, InputControlLayout_Builder_ControlBuilder_WithDisplayName, (InputControlLayout_Builder_ControlBuilder__Boxed * __this, String * displayName, MethodInfo * method)); -DO_APP_FUNC(0x02A7AF40, InputControlLayout_Builder_ControlBuilder, InputControlLayout_Builder_ControlBuilder_WithLayout, (InputControlLayout_Builder_ControlBuilder__Boxed * __this, String * layout, MethodInfo * method)); +DO_APP_FUNC(0x02A7AEA0, InputControlLayout_Builder_ControlBuilder, InputControlLayout_Builder_ControlBuilder_WithDisplayName, (InputControlLayout_Builder_ControlBuilder * __this, String * displayName, MethodInfo * method)); +DO_APP_FUNC(0x02A7AF40, InputControlLayout_Builder_ControlBuilder, InputControlLayout_Builder_ControlBuilder_WithLayout, (InputControlLayout_Builder_ControlBuilder * __this, String * layout, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8BC30, InputControlLayout_Builder_ControlBuilder_WithLayout__MethodInfo); -DO_APP_FUNC(0x02A7B0A0, InputControlLayout_Builder_ControlBuilder, InputControlLayout_Builder_ControlBuilder_WithFormat, (InputControlLayout_Builder_ControlBuilder__Boxed * __this, FourCC format, MethodInfo * method)); -DO_APP_FUNC(0x02A7B0F0, InputControlLayout_Builder_ControlBuilder, InputControlLayout_Builder_ControlBuilder_WithFormat_1, (InputControlLayout_Builder_ControlBuilder__Boxed * __this, String * format, MethodInfo * method)); -DO_APP_FUNC(0x02A7B170, InputControlLayout_Builder_ControlBuilder, InputControlLayout_Builder_ControlBuilder_WithByteOffset, (InputControlLayout_Builder_ControlBuilder__Boxed * __this, uint32_t offset, MethodInfo * method)); -DO_APP_FUNC(0x02A7B1C0, InputControlLayout_Builder_ControlBuilder, InputControlLayout_Builder_ControlBuilder_WithBitOffset, (InputControlLayout_Builder_ControlBuilder__Boxed * __this, uint32_t bit, MethodInfo * method)); -DO_APP_FUNC(0x02A7B210, InputControlLayout_Builder_ControlBuilder, InputControlLayout_Builder_ControlBuilder_IsSynthetic, (InputControlLayout_Builder_ControlBuilder__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02A7B280, InputControlLayout_Builder_ControlBuilder, InputControlLayout_Builder_ControlBuilder_IsNoisy, (InputControlLayout_Builder_ControlBuilder__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02A7B2F0, InputControlLayout_Builder_ControlBuilder, InputControlLayout_Builder_ControlBuilder_DontReset, (InputControlLayout_Builder_ControlBuilder__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02A7B360, InputControlLayout_Builder_ControlBuilder, InputControlLayout_Builder_ControlBuilder_WithSizeInBits, (InputControlLayout_Builder_ControlBuilder__Boxed * __this, uint32_t sizeInBits, MethodInfo * method)); -DO_APP_FUNC(0x02A7B3B0, InputControlLayout_Builder_ControlBuilder, InputControlLayout_Builder_ControlBuilder_WithRange, (InputControlLayout_Builder_ControlBuilder__Boxed * __this, float minValue, float maxValue, MethodInfo * method)); -DO_APP_FUNC(0x02A7B4A0, InputControlLayout_Builder_ControlBuilder, InputControlLayout_Builder_ControlBuilder_WithUsages, (InputControlLayout_Builder_ControlBuilder__Boxed * __this, InternedString__Array * usages, MethodInfo * method)); +DO_APP_FUNC(0x02A7B0A0, InputControlLayout_Builder_ControlBuilder, InputControlLayout_Builder_ControlBuilder_WithFormat, (InputControlLayout_Builder_ControlBuilder * __this, FourCC format, MethodInfo * method)); +DO_APP_FUNC(0x02A7B0F0, InputControlLayout_Builder_ControlBuilder, InputControlLayout_Builder_ControlBuilder_WithFormat_1, (InputControlLayout_Builder_ControlBuilder * __this, String * format, MethodInfo * method)); +DO_APP_FUNC(0x02A7B170, InputControlLayout_Builder_ControlBuilder, InputControlLayout_Builder_ControlBuilder_WithByteOffset, (InputControlLayout_Builder_ControlBuilder * __this, uint32_t offset, MethodInfo * method)); +DO_APP_FUNC(0x02A7B1C0, InputControlLayout_Builder_ControlBuilder, InputControlLayout_Builder_ControlBuilder_WithBitOffset, (InputControlLayout_Builder_ControlBuilder * __this, uint32_t bit, MethodInfo * method)); +DO_APP_FUNC(0x02A7B210, InputControlLayout_Builder_ControlBuilder, InputControlLayout_Builder_ControlBuilder_IsSynthetic, (InputControlLayout_Builder_ControlBuilder * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02A7B280, InputControlLayout_Builder_ControlBuilder, InputControlLayout_Builder_ControlBuilder_IsNoisy, (InputControlLayout_Builder_ControlBuilder * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02A7B2F0, InputControlLayout_Builder_ControlBuilder, InputControlLayout_Builder_ControlBuilder_DontReset, (InputControlLayout_Builder_ControlBuilder * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02A7B360, InputControlLayout_Builder_ControlBuilder, InputControlLayout_Builder_ControlBuilder_WithSizeInBits, (InputControlLayout_Builder_ControlBuilder * __this, uint32_t sizeInBits, MethodInfo * method)); +DO_APP_FUNC(0x02A7B3B0, InputControlLayout_Builder_ControlBuilder, InputControlLayout_Builder_ControlBuilder_WithRange, (InputControlLayout_Builder_ControlBuilder * __this, float minValue, float maxValue, MethodInfo * method)); +DO_APP_FUNC(0x02A7B4A0, InputControlLayout_Builder_ControlBuilder, InputControlLayout_Builder_ControlBuilder_WithUsages, (InputControlLayout_Builder_ControlBuilder * __this, InternedString__Array * usages, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8BC48, InputControlLayout_Builder_ControlBuilder_WithUsages__MethodInfo); -DO_APP_FUNC(0x02A7B760, InputControlLayout_Builder_ControlBuilder, InputControlLayout_Builder_ControlBuilder_WithUsages_1, (InputControlLayout_Builder_ControlBuilder__Boxed * __this, IEnumerable_1_System_String_ * usages, MethodInfo * method)); -DO_APP_FUNC(0x02A7B9A0, InputControlLayout_Builder_ControlBuilder, InputControlLayout_Builder_ControlBuilder_WithUsages_2, (InputControlLayout_Builder_ControlBuilder__Boxed * __this, String__Array * usages, MethodInfo * method)); -DO_APP_FUNC(0x02A7B9D0, InputControlLayout_Builder_ControlBuilder, InputControlLayout_Builder_ControlBuilder_WithParameters, (InputControlLayout_Builder_ControlBuilder__Boxed * __this, String * parameters, MethodInfo * method)); -DO_APP_FUNC(0x02A7BB80, InputControlLayout_Builder_ControlBuilder, InputControlLayout_Builder_ControlBuilder_WithProcessors, (InputControlLayout_Builder_ControlBuilder__Boxed * __this, String * processors, MethodInfo * method)); -DO_APP_FUNC(0x02A7BDB0, InputControlLayout_Builder_ControlBuilder, InputControlLayout_Builder_ControlBuilder_WithDefaultState, (InputControlLayout_Builder_ControlBuilder__Boxed * __this, PrimitiveValue value, MethodInfo * method)); -DO_APP_FUNC(0x02A7BE10, InputControlLayout_Builder_ControlBuilder, InputControlLayout_Builder_ControlBuilder_UsingStateFrom, (InputControlLayout_Builder_ControlBuilder__Boxed * __this, String * path, MethodInfo * method)); -DO_APP_FUNC(0x02A7BEC0, InputControlLayout_Builder_ControlBuilder, InputControlLayout_Builder_ControlBuilder_AsArrayOfControlsWithSize, (InputControlLayout_Builder_ControlBuilder__Boxed * __this, int32_t arraySize, MethodInfo * method)); +DO_APP_FUNC(0x02A7B760, InputControlLayout_Builder_ControlBuilder, InputControlLayout_Builder_ControlBuilder_WithUsages_1, (InputControlLayout_Builder_ControlBuilder * __this, IEnumerable_1_System_String_ * usages, MethodInfo * method)); +DO_APP_FUNC(0x02A7B9A0, InputControlLayout_Builder_ControlBuilder, InputControlLayout_Builder_ControlBuilder_WithUsages_2, (InputControlLayout_Builder_ControlBuilder * __this, String__Array * usages, MethodInfo * method)); +DO_APP_FUNC(0x02A7B9D0, InputControlLayout_Builder_ControlBuilder, InputControlLayout_Builder_ControlBuilder_WithParameters, (InputControlLayout_Builder_ControlBuilder * __this, String * parameters, MethodInfo * method)); +DO_APP_FUNC(0x02A7BB80, InputControlLayout_Builder_ControlBuilder, InputControlLayout_Builder_ControlBuilder_WithProcessors, (InputControlLayout_Builder_ControlBuilder * __this, String * processors, MethodInfo * method)); +DO_APP_FUNC(0x02A7BDB0, InputControlLayout_Builder_ControlBuilder, InputControlLayout_Builder_ControlBuilder_WithDefaultState, (InputControlLayout_Builder_ControlBuilder * __this, PrimitiveValue value, MethodInfo * method)); +DO_APP_FUNC(0x02A7BE10, InputControlLayout_Builder_ControlBuilder, InputControlLayout_Builder_ControlBuilder_UsingStateFrom, (InputControlLayout_Builder_ControlBuilder * __this, String * path, MethodInfo * method)); +DO_APP_FUNC(0x02A7BEC0, InputControlLayout_Builder_ControlBuilder, InputControlLayout_Builder_ControlBuilder_AsArrayOfControlsWithSize, (InputControlLayout_Builder_ControlBuilder * __this, int32_t arraySize, MethodInfo * method)); DO_APP_FUNC(0x02A7BF10, void, InputControlLayout_Builder_ControlBuilder_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InputControlLayout_Builder_ControlBuilder_c__ctor, (InputControlLayout_Builder_ControlBuilder_c * __this, MethodInfo * method)); DO_APP_FUNC(0x0294DDF0, InternedString, InputControlLayout_Builder_ControlBuilder_c__WithUsages_b__14_0, (InputControlLayout_Builder_ControlBuilder_c * __this, String * x, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8BC98, InputControlLayout_Builder_ControlBuilder_c__WithUsages_b__14_0__MethodInfo); -DO_APP_FUNC(0x02A7BFC0, InputControlLayout *, InputControlLayout_LayoutJson_ToLayout, (InputControlLayout_LayoutJson__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A7BFC0, InputControlLayout *, InputControlLayout_LayoutJson_ToLayout, (InputControlLayout_LayoutJson * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8BC70, InputControlLayout_LayoutJson_ToLayout__MethodInfo); DO_APP_FUNC(0x02A7CDF0, InputControlLayout_LayoutJson, InputControlLayout_LayoutJson_FromLayout, (InputControlLayout * layout, MethodInfo * method)); DO_APP_FUNC(0x02A7D7B0, void, InputControlLayout_LayoutJson_c__cctor, (MethodInfo * method)); @@ -55507,29 +64588,30 @@ DO_APP_FUNC(0x02971BD0, String *, InputControlLayout_ControlItemJson_c__FromCont DO_APP_FUNC_METHODINFO(0x03C8BB00, InputControlLayout_ControlItemJson_c__FromControlItems_b__25_2__MethodInfo); DO_APP_FUNC(0x02971BD0, String *, InputControlLayout_ControlItemJson_c__FromControlItems_b__25_3, (InputControlLayout_ControlItemJson_c * __this, InternedString x, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8BB08, InputControlLayout_ControlItemJson_c__FromControlItems_b__25_3__MethodInfo); -DO_APP_FUNC(0x02A7F4D0, void, InputControlLayout_Collection_Allocate, (InputControlLayout_Collection__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A7FB80, InternedString, InputControlLayout_Collection_TryFindLayoutForType, (InputControlLayout_Collection__Boxed * __this, Type * layoutType, MethodInfo * method)); -DO_APP_FUNC(0x02A7FD80, InternedString, InputControlLayout_Collection_TryFindMatchingLayout, (InputControlLayout_Collection__Boxed * __this, InputDeviceDescription deviceDescription, MethodInfo * method)); -DO_APP_FUNC(0x02A80040, bool, InputControlLayout_Collection_HasLayout, (InputControlLayout_Collection__Boxed * __this, InternedString name, MethodInfo * method)); -DO_APP_FUNC(0x02A80190, InputControlLayout *, InputControlLayout_Collection_TryLoadLayoutInternal, (InputControlLayout_Collection__Boxed * __this, InternedString name, MethodInfo * method)); +DO_APP_FUNC(0x02A7F4D0, void, InputControlLayout_Collection_Allocate, (InputControlLayout_Collection * __this, MethodInfo * method)); +DO_APP_FUNC(0x02A7FB80, InternedString, InputControlLayout_Collection_TryFindLayoutForType, (InputControlLayout_Collection * __this, Type * layoutType, MethodInfo * method)); +DO_APP_FUNC(0x02A7FD80, InternedString, InputControlLayout_Collection_TryFindMatchingLayout, (InputControlLayout_Collection * __this, InputDeviceDescription deviceDescription, MethodInfo * method)); +DO_APP_FUNC(0x02A80040, bool, InputControlLayout_Collection_HasLayout, (InputControlLayout_Collection * __this, InternedString name, MethodInfo * method)); +DO_APP_FUNC(0x02A80190, InputControlLayout *, InputControlLayout_Collection_TryLoadLayoutInternal, (InputControlLayout_Collection * __this, InternedString name, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8BAA8, InputControlLayout_Collection_TryLoadLayoutInternal__MethodInfo); -DO_APP_FUNC(0x02A80860, InputControlLayout *, InputControlLayout_Collection_TryLoadLayout, (InputControlLayout_Collection__Boxed * __this, InternedString name, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_ * table, MethodInfo * method)); +DO_APP_FUNC(0x02A80860, InputControlLayout *, InputControlLayout_Collection_TryLoadLayout, (InputControlLayout_Collection * __this, InternedString name, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_ * table, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8BA88, InputControlLayout_Collection_TryLoadLayout__MethodInfo); -DO_APP_FUNC(0x02A80F50, InternedString, InputControlLayout_Collection_GetBaseLayoutName, (InputControlLayout_Collection__Boxed * __this, InternedString layoutName, MethodInfo * method)); -DO_APP_FUNC(0x02A81070, InternedString, InputControlLayout_Collection_GetRootLayoutName, (InputControlLayout_Collection__Boxed * __this, InternedString layoutName, MethodInfo * method)); -DO_APP_FUNC(0x02A811B0, bool, InputControlLayout_Collection_ComputeDistanceInInheritanceHierarchy, (InputControlLayout_Collection__Boxed * __this, InternedString firstLayout, InternedString secondLayout, int32_t distance, MethodInfo * method)); -DO_APP_FUNC(0x02A812C0, InternedString, InputControlLayout_Collection_FindLayoutThatIntroducesControl, (InputControlLayout_Collection__Boxed * __this, InputControl * control, InputControlLayout_Cache cache, MethodInfo * method)); -DO_APP_FUNC(0x02A81580, Type *, InputControlLayout_Collection_GetControlTypeForLayout, (InputControlLayout_Collection__Boxed * __this, InternedString layoutName, MethodInfo * method)); -DO_APP_FUNC(0x02A81860, bool, InputControlLayout_Collection_ValueTypeIsAssignableFrom, (InputControlLayout_Collection__Boxed * __this, InternedString layoutName, Type * valueType, MethodInfo * method)); -DO_APP_FUNC(0x02A81970, bool, InputControlLayout_Collection_IsGeneratedLayout, (InputControlLayout_Collection__Boxed * __this, InternedString layout, MethodInfo * method)); -DO_APP_FUNC(0x02A819F0, IEnumerable_1_UnityEngine_InputSystem_Utilities_InternedString_ *, InputControlLayout_Collection_GetBaseLayouts, (InputControlLayout_Collection__Boxed * __this, InternedString layout, bool includeSelf, MethodInfo * method)); -DO_APP_FUNC(0x02A81B50, bool, InputControlLayout_Collection_IsBasedOn, (InputControlLayout_Collection__Boxed * __this, InternedString parentLayout, InternedString childLayout, MethodInfo * method)); -DO_APP_FUNC(0x02A81CA0, void, InputControlLayout_Collection_AddMatcher, (InputControlLayout_Collection__Boxed * __this, InternedString layout, InputDeviceMatcher matcher, MethodInfo * method)); +DO_APP_FUNC(0x02A80F50, InternedString, InputControlLayout_Collection_GetBaseLayoutName, (InputControlLayout_Collection * __this, InternedString layoutName, MethodInfo * method)); +DO_APP_FUNC(0x02A81070, InternedString, InputControlLayout_Collection_GetRootLayoutName, (InputControlLayout_Collection * __this, InternedString layoutName, MethodInfo * method)); +DO_APP_FUNC(0x02A811B0, bool, InputControlLayout_Collection_ComputeDistanceInInheritanceHierarchy, (InputControlLayout_Collection * __this, InternedString firstLayout, InternedString secondLayout, int32_t * distance, MethodInfo * method)); +DO_APP_FUNC(0x02A812C0, InternedString, InputControlLayout_Collection_FindLayoutThatIntroducesControl, (InputControlLayout_Collection * __this, InputControl * control, InputControlLayout_Cache cache, MethodInfo * method)); +DO_APP_FUNC(0x02A81580, Type *, InputControlLayout_Collection_GetControlTypeForLayout, (InputControlLayout_Collection * __this, InternedString layoutName, MethodInfo * method)); +DO_APP_FUNC(0x02A81860, bool, InputControlLayout_Collection_ValueTypeIsAssignableFrom, (InputControlLayout_Collection * __this, InternedString layoutName, Type * valueType, MethodInfo * method)); +DO_APP_FUNC(0x02A81970, bool, InputControlLayout_Collection_IsGeneratedLayout, (InputControlLayout_Collection * __this, InternedString layout, MethodInfo * method)); +DO_APP_FUNC(0x02A819F0, IEnumerable_1_UnityEngine_InputSystem_Utilities_InternedString_ *, InputControlLayout_Collection_GetBaseLayouts, (InputControlLayout_Collection * __this, InternedString layout, bool includeSelf, MethodInfo * method)); +DO_APP_FUNC(0x02A81B50, bool, InputControlLayout_Collection_IsBasedOn, (InputControlLayout_Collection * __this, InternedString parentLayout, InternedString childLayout, MethodInfo * method)); +DO_APP_FUNC(0x02A81CA0, void, InputControlLayout_Collection_AddMatcher, (InputControlLayout_Collection * __this, InternedString layout, InputDeviceMatcher matcher, MethodInfo * method)); DO_APP_FUNC(0x0093D960, void, InputControlLayout_Collection_GetBaseLayouts_d_24__ctor, (InputControlLayout_Collection_GetBaseLayouts_d_24 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InputControlLayout_Collection_GetBaseLayouts_d_24_System_IDisposable_Dispose, (InputControlLayout_Collection_GetBaseLayouts_d_24 * __this, MethodInfo * method)); DO_APP_FUNC(0x0294D400, bool, InputControlLayout_Collection_GetBaseLayouts_d_24_MoveNext, (InputControlLayout_Collection_GetBaseLayouts_d_24 * __this, MethodInfo * method)); DO_APP_FUNC(0x0093E890, InternedString, InputControlLayout_Collection_GetBaseLayouts_d_24_System_Collections_Generic_IEnumerator_UnityEngine_InputSystem_Utilities_InternedString__get_Current, (InputControlLayout_Collection_GetBaseLayouts_d_24 * __this, MethodInfo * method)); DO_APP_FUNC(0x0294D510, void, InputControlLayout_Collection_GetBaseLayouts_d_24_System_Collections_IEnumerator_Reset, (InputControlLayout_Collection_GetBaseLayouts_d_24 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC55F0, InputControlLayout_Collection_GetBaseLayouts_d_24_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x0294D560, Object *, InputControlLayout_Collection_GetBaseLayouts_d_24_System_Collections_IEnumerator_get_Current, (InputControlLayout_Collection_GetBaseLayouts_d_24 * __this, MethodInfo * method)); DO_APP_FUNC(0x0294D5B0, IEnumerator_1_UnityEngine_InputSystem_Utilities_InternedString_ *, InputControlLayout_Collection_GetBaseLayouts_d_24_System_Collections_Generic_IEnumerable_UnityEngine_InputSystem_Utilities_InternedString__GetEnumerator, (InputControlLayout_Collection_GetBaseLayouts_d_24 * __this, MethodInfo * method)); DO_APP_FUNC(0x0294D5B0, IEnumerator *, InputControlLayout_Collection_GetBaseLayouts_d_24_System_Collections_IEnumerable_GetEnumerator, (InputControlLayout_Collection_GetBaseLayouts_d_24 * __this, MethodInfo * method)); @@ -55539,9 +64621,10 @@ DO_APP_FUNC(0x0294D790, void, InputControlLayout_LayoutNotFoundException__ctor_1 DO_APP_FUNC(0x0294D860, void, InputControlLayout_LayoutNotFoundException__ctor_2, (InputControlLayout_LayoutNotFoundException * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x0294D970, void, InputControlLayout_LayoutNotFoundException__ctor_3, (InputControlLayout_LayoutNotFoundException * __this, String * message, Exception * innerException, MethodInfo * method)); DO_APP_FUNC(0x0294D9E0, void, InputControlLayout_LayoutNotFoundException__ctor_4, (InputControlLayout_LayoutNotFoundException * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); -DO_APP_FUNC(0x0294DA60, void, InputControlLayout_Cache_Clear, (InputControlLayout_Cache__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0294DAC0, InputControlLayout *, InputControlLayout_Cache_FindOrLoadLayout, (InputControlLayout_Cache__Boxed * __this, String * name, bool throwIfNotFound, MethodInfo * method)); -DO_APP_FUNC(0x0294DC80, void, InputControlLayout_CacheRefInstance_Dispose, (InputControlLayout_CacheRefInstance__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0294DA60, void, InputControlLayout_Cache_Clear, (InputControlLayout_Cache * __this, MethodInfo * method)); +DO_APP_FUNC(0x0294DAC0, InputControlLayout *, InputControlLayout_Cache_FindOrLoadLayout, (InputControlLayout_Cache * __this, String * name, bool throwIfNotFound, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC55C0, InputControlLayout_Cache_FindOrLoadLayout__MethodInfo); +DO_APP_FUNC(0x0294DC80, void, InputControlLayout_CacheRefInstance_Dispose, (InputControlLayout_CacheRefInstance * __this, MethodInfo * method)); DO_APP_FUNC(0x0294DD40, void, InputControlLayout_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InputControlLayout_c__ctor, (InputControlLayout_c * __this, MethodInfo * method)); DO_APP_FUNC(0x0294DDF0, InternedString, InputControlLayout_c__FromType_b__52_0, (InputControlLayout_c * __this, String * x, MethodInfo * method)); @@ -55573,92 +64656,105 @@ DO_APP_FUNC(0x003C73A0, void, InputControlLayoutAttribute_set_description, (Inpu DO_APP_FUNC(0x00436BD0, bool, InputControlLayoutAttribute_get_hideInUI, (InputControlLayoutAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x00A80AB0, void, InputControlLayoutAttribute_set_hideInUI, (InputControlLayoutAttribute * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InputControlLayoutAttribute__ctor, (InputControlLayoutAttribute * __this, MethodInfo * method)); -DO_APP_FUNC(0x0294DF60, void, InputDeviceBuilder_Setup, (InputDeviceBuilder__Boxed * __this, InternedString layout, InternedString variants, InputDeviceDescription deviceDescription, MethodInfo * method)); -DO_APP_FUNC(0x0294E220, InputDevice *, InputDeviceBuilder_Finish, (InputDeviceBuilder__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0294E240, void, InputDeviceBuilder_Dispose, (InputDeviceBuilder__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0294E250, void, InputDeviceBuilder_Reset, (InputDeviceBuilder__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0294E360, InputControl *, InputDeviceBuilder_InstantiateLayout, (InputDeviceBuilder__Boxed * __this, InternedString layout, InternedString variants, InternedString name, InputControl * parent, MethodInfo * method)); -DO_APP_FUNC(0x0294E4B0, InputControl *, InputDeviceBuilder_InstantiateLayout_1, (InputDeviceBuilder__Boxed * __this, InputControlLayout * layout, InternedString variants, InternedString name, InputControl * parent, MethodInfo * method)); -DO_APP_FUNC(0x0294EE20, void, InputDeviceBuilder_AddChildControls, (InputDeviceBuilder__Boxed * __this, InputControlLayout * layout, InternedString variants, InputControl * parent, bool haveChildrenUsingStateFromOtherControls, MethodInfo * method)); -DO_APP_FUNC(0x0294F7F0, InputControl *, InputDeviceBuilder_AddChildControl, (InputDeviceBuilder__Boxed * __this, InputControlLayout * layout, InternedString variants, InputControl * parent, bool haveChildrenUsingStateFromOtherControls, InputControlLayout_ControlItem controlItem, int32_t childIndex, String * nameOverride, MethodInfo * method)); -DO_APP_FUNC(0x029503A0, void, InputDeviceBuilder_InsertChildControlOverride, (InputDeviceBuilder__Boxed * __this, InputControl * parent, InputControlLayout_ControlItem controlItem, MethodInfo * method)); -DO_APP_FUNC(0x02950810, String *, InputDeviceBuilder_ChildControlOverridePath, (InputDeviceBuilder__Boxed * __this, InputControl * parent, InternedString controlName, MethodInfo * method)); -DO_APP_FUNC(0x029509F0, void, InputDeviceBuilder_AddChildControlIfMissing, (InputDeviceBuilder__Boxed * __this, InputControlLayout * layout, InternedString variants, InputControl * parent, bool haveChildrenUsingStateFromOtherControls, InputControlLayout_ControlItem controlItem, MethodInfo * method)); -DO_APP_FUNC(0x02950AF0, InputControl *, InputDeviceBuilder_InsertChildControl, (InputDeviceBuilder__Boxed * __this, InputControlLayout * layout, InternedString variant, InputControl * parent, bool haveChildrenUsingStateFromOtherControls, InputControlLayout_ControlItem controlItem, MethodInfo * method)); -DO_APP_FUNC(0x02951130, void, InputDeviceBuilder_ApplyUseStateFrom, (InputControl * parent, InputControlLayout_ControlItem controlItem, InputControlLayout * layout, MethodInfo * method)); +DO_APP_FUNC(0x0294DF60, void, InputDeviceBuilder_Setup, (InputDeviceBuilder * __this, InternedString layout, InternedString variants, InputDeviceDescription deviceDescription, MethodInfo * method)); +DO_APP_FUNC(0x0294E220, InputDevice *, InputDeviceBuilder_Finish, (InputDeviceBuilder * __this, MethodInfo * method)); +DO_APP_FUNC(0x0294E240, void, InputDeviceBuilder_Dispose, (InputDeviceBuilder * __this, MethodInfo * method)); +DO_APP_FUNC(0x0294E250, void, InputDeviceBuilder_Reset, (InputDeviceBuilder * __this, MethodInfo * method)); +DO_APP_FUNC(0x0294E360, InputControl *, InputDeviceBuilder_InstantiateLayout, (InputDeviceBuilder * __this, InternedString layout, InternedString variants, InternedString name, InputControl * parent, MethodInfo * method)); +DO_APP_FUNC(0x0294E4B0, InputControl *, InputDeviceBuilder_InstantiateLayout_1, (InputDeviceBuilder * __this, InputControlLayout * layout, InternedString variants, InternedString name, InputControl * parent, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5518, InputDeviceBuilder_InstantiateLayout_1__MethodInfo); +DO_APP_FUNC(0x0294EE20, void, InputDeviceBuilder_AddChildControls, (InputDeviceBuilder * __this, InputControlLayout * layout, InternedString variants, InputControl * parent, bool * haveChildrenUsingStateFromOtherControls, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC55A0, InputDeviceBuilder_AddChildControls__MethodInfo); +DO_APP_FUNC(0x0294F7F0, InputControl *, InputDeviceBuilder_AddChildControl, (InputDeviceBuilder * __this, InputControlLayout * layout, InternedString variants, InputControl * parent, bool * haveChildrenUsingStateFromOtherControls, InputControlLayout_ControlItem controlItem, int32_t childIndex, String * nameOverride, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5580, InputDeviceBuilder_AddChildControl__MethodInfo); +DO_APP_FUNC(0x029503A0, void, InputDeviceBuilder_InsertChildControlOverride, (InputDeviceBuilder * __this, InputControl * parent, InputControlLayout_ControlItem * controlItem, MethodInfo * method)); +DO_APP_FUNC(0x02950810, String *, InputDeviceBuilder_ChildControlOverridePath, (InputDeviceBuilder * __this, InputControl * parent, InternedString controlName, MethodInfo * method)); +DO_APP_FUNC(0x029509F0, void, InputDeviceBuilder_AddChildControlIfMissing, (InputDeviceBuilder * __this, InputControlLayout * layout, InternedString variants, InputControl * parent, bool * haveChildrenUsingStateFromOtherControls, InputControlLayout_ControlItem * controlItem, MethodInfo * method)); +DO_APP_FUNC(0x02950AF0, InputControl *, InputDeviceBuilder_InsertChildControl, (InputDeviceBuilder * __this, InputControlLayout * layout, InternedString variant, InputControl * parent, bool * haveChildrenUsingStateFromOtherControls, InputControlLayout_ControlItem * controlItem, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC54E0, InputDeviceBuilder_InsertChildControl__MethodInfo); +DO_APP_FUNC(0x02951130, void, InputDeviceBuilder_ApplyUseStateFrom, (InputControl * parent, InputControlLayout_ControlItem * controlItem, InputControlLayout * layout, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5468, InputDeviceBuilder_ApplyUseStateFrom__MethodInfo); DO_APP_FUNC(0x02951390, void, InputDeviceBuilder_ShiftChildIndicesInHierarchyOneUp, (InputDevice * device, int32_t startIndex, InputControl * exceptControl, MethodInfo * method)); -DO_APP_FUNC(0x02951400, void, InputDeviceBuilder_SetDisplayName, (InputDeviceBuilder__Boxed * __this, InputControl * control, String * longDisplayNameFromLayout, String * shortDisplayNameFromLayout, bool shortName, MethodInfo * method)); +DO_APP_FUNC(0x02951400, void, InputDeviceBuilder_SetDisplayName, (InputDeviceBuilder * __this, InputControl * control, String * longDisplayNameFromLayout, String * shortDisplayNameFromLayout, bool shortName, MethodInfo * method)); DO_APP_FUNC(0x02951790, void, InputDeviceBuilder_AddParentDisplayNameRecursive, (InputControl * control, StringBuilder * stringBuilder, bool shortName, MethodInfo * method)); -DO_APP_FUNC(0x029518B0, void, InputDeviceBuilder_AddProcessors, (InputControl * control, InputControlLayout_ControlItem controlItem, String * layoutName, MethodInfo * method)); +DO_APP_FUNC(0x029518B0, void, InputDeviceBuilder_AddProcessors, (InputControl * control, InputControlLayout_ControlItem * controlItem, String * layoutName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5460, InputDeviceBuilder_AddProcessors__MethodInfo); DO_APP_FUNC(0x02951B40, void, InputDeviceBuilder_SetFormat, (InputControl * control, InputControlLayout_ControlItem controlItem, MethodInfo * method)); DO_APP_FUNC(0x02951C00, InputControlLayout *, InputDeviceBuilder_FindOrLoadLayout, (String * name, MethodInfo * method)); DO_APP_FUNC(0x02951CA0, void, InputDeviceBuilder_ComputeStateLayout, (InputControl * control, MethodInfo * method)); -DO_APP_FUNC(0x02952780, void, InputDeviceBuilder_FinalizeControlHierarchy, (InputDeviceBuilder__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02952B00, void, InputDeviceBuilder_FinalizeControlHierarchyRecursive, (InputDeviceBuilder__Boxed * __this, InputControl * control, int32_t controlIndex, InputControl__Array * allControls, bool noisy, bool dontReset, int32_t controlIndiciesNextFreeIndex, MethodInfo * method)); -DO_APP_FUNC(0x02953060, void, InputDeviceBuilder_InsertControlBitRangeNode, (InputDeviceBuilder__Boxed * __this, InputDevice_ControlBitRangeNode parent, InputControl * control, int32_t controlIndiciesNextFreeIndex, uint16_t startOffset, MethodInfo * method)); -DO_APP_FUNC(0x02953570, uint16_t, InputDeviceBuilder_GetBestMidPoint, (InputDeviceBuilder__Boxed * __this, InputDevice_ControlBitRangeNode parent, uint16_t startOffset, MethodInfo * method)); -DO_APP_FUNC(0x02953D10, void, InputDeviceBuilder_AddControlToNode, (InputDeviceBuilder__Boxed * __this, InputControl * control, int32_t controlIndiciesNextFreeIndex, int32_t nodeIndex, MethodInfo * method)); -DO_APP_FUNC(0x02953FF0, void, InputDeviceBuilder_AddChildren, (InputDeviceBuilder__Boxed * __this, InputDevice_ControlBitRangeNode parent, InputDevice_ControlBitRangeNode left, InputDevice_ControlBitRangeNode right, MethodInfo * method)); -DO_APP_FUNC(0x02954130, uint16_t, InputDeviceBuilder_GetControlIndex, (InputDeviceBuilder__Boxed * __this, InputControl * control, MethodInfo * method)); -DO_APP_FUNC(0x02954200, InputDeviceBuilder, InputDeviceBuilder_get_instance, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC54B8, InputDeviceBuilder_ComputeStateLayout__MethodInfo); +DO_APP_FUNC(0x02952780, void, InputDeviceBuilder_FinalizeControlHierarchy, (InputDeviceBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5488, InputDeviceBuilder_FinalizeControlHierarchy__MethodInfo); +DO_APP_FUNC(0x02952B00, void, InputDeviceBuilder_FinalizeControlHierarchyRecursive, (InputDeviceBuilder * __this, InputControl * control, int32_t controlIndex, InputControl__Array * allControls, bool noisy, bool dontReset, int32_t * controlIndiciesNextFreeIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5428, InputDeviceBuilder_FinalizeControlHierarchyRecursive__MethodInfo); +DO_APP_FUNC(0x02953060, void, InputDeviceBuilder_InsertControlBitRangeNode, (InputDeviceBuilder * __this, InputDevice_ControlBitRangeNode * parent, InputControl * control, int32_t * controlIndiciesNextFreeIndex, uint16_t startOffset, MethodInfo * method)); +DO_APP_FUNC(0x02953570, uint16_t, InputDeviceBuilder_GetBestMidPoint, (InputDeviceBuilder * __this, InputDevice_ControlBitRangeNode parent, uint16_t startOffset, MethodInfo * method)); +DO_APP_FUNC(0x02953D10, void, InputDeviceBuilder_AddControlToNode, (InputDeviceBuilder * __this, InputControl * control, int32_t * controlIndiciesNextFreeIndex, int32_t nodeIndex, MethodInfo * method)); +DO_APP_FUNC(0x02953FF0, void, InputDeviceBuilder_AddChildren, (InputDeviceBuilder * __this, InputDevice_ControlBitRangeNode * parent, InputDevice_ControlBitRangeNode left, InputDevice_ControlBitRangeNode right, MethodInfo * method)); +DO_APP_FUNC(0x02954130, uint16_t, InputDeviceBuilder_GetControlIndex, (InputDeviceBuilder * __this, InputControl * control, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5450, InputDeviceBuilder_GetControlIndex__MethodInfo); +DO_APP_FUNC(0x02954200, InputDeviceBuilder *, InputDeviceBuilder_get_instance, (MethodInfo * method)); DO_APP_FUNC(0x02954240, InputDeviceBuilder_RefInstance, InputDeviceBuilder_Ref, (MethodInfo * method)); -DO_APP_FUNC(0x02954290, void, InputDeviceBuilder_RefInstance_Dispose, (InputDeviceBuilder_RefInstance__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, String *, InputDeviceDescription_get_interfaceName, (InputDeviceDescription__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, InputDeviceDescription_set_interfaceName, (InputDeviceDescription__Boxed * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, String *, InputDeviceDescription_get_deviceClass, (InputDeviceDescription__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x005F25C0, void, InputDeviceDescription_set_deviceClass, (InputDeviceDescription__Boxed * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, String *, InputDeviceDescription_get_manufacturer, (InputDeviceDescription__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCBE0, void, InputDeviceDescription_set_manufacturer, (InputDeviceDescription__Boxed * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x003BB3D0, String *, InputDeviceDescription_get_product, (InputDeviceDescription__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003AE960, void, InputDeviceDescription_set_product, (InputDeviceDescription__Boxed * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x003BB3E0, String *, InputDeviceDescription_get_serial, (InputDeviceDescription__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCDE0, void, InputDeviceDescription_set_serial, (InputDeviceDescription__Boxed * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x003BB3B0, String *, InputDeviceDescription_get_version, (InputDeviceDescription__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003C6500, void, InputDeviceDescription_set_version, (InputDeviceDescription__Boxed * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x003BB330, String *, InputDeviceDescription_get_capabilities, (InputDeviceDescription__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00424C30, void, InputDeviceDescription_set_capabilities, (InputDeviceDescription__Boxed * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x02954330, bool, InputDeviceDescription_get_empty, (InputDeviceDescription__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x029543A0, String *, InputDeviceDescription_ToString, (InputDeviceDescription__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02954730, bool, InputDeviceDescription_Equals, (InputDeviceDescription__Boxed * __this, InputDeviceDescription other, MethodInfo * method)); -DO_APP_FUNC(0x029549D0, bool, InputDeviceDescription_Equals_1, (InputDeviceDescription__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02954A80, int32_t, InputDeviceDescription_GetHashCode, (InputDeviceDescription__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02954290, void, InputDeviceBuilder_RefInstance_Dispose, (InputDeviceBuilder_RefInstance * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, String *, InputDeviceDescription_get_interfaceName, (InputDeviceDescription * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, InputDeviceDescription_set_interfaceName, (InputDeviceDescription * __this, String * value, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, String *, InputDeviceDescription_get_deviceClass, (InputDeviceDescription * __this, MethodInfo * method)); +DO_APP_FUNC(0x005F25C0, void, InputDeviceDescription_set_deviceClass, (InputDeviceDescription * __this, String * value, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, String *, InputDeviceDescription_get_manufacturer, (InputDeviceDescription * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCBE0, void, InputDeviceDescription_set_manufacturer, (InputDeviceDescription * __this, String * value, MethodInfo * method)); +DO_APP_FUNC(0x003BB3D0, String *, InputDeviceDescription_get_product, (InputDeviceDescription * __this, MethodInfo * method)); +DO_APP_FUNC(0x003AE960, void, InputDeviceDescription_set_product, (InputDeviceDescription * __this, String * value, MethodInfo * method)); +DO_APP_FUNC(0x003BB3E0, String *, InputDeviceDescription_get_serial, (InputDeviceDescription * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCDE0, void, InputDeviceDescription_set_serial, (InputDeviceDescription * __this, String * value, MethodInfo * method)); +DO_APP_FUNC(0x003BB3B0, String *, InputDeviceDescription_get_version, (InputDeviceDescription * __this, MethodInfo * method)); +DO_APP_FUNC(0x003C6500, void, InputDeviceDescription_set_version, (InputDeviceDescription * __this, String * value, MethodInfo * method)); +DO_APP_FUNC(0x003BB330, String *, InputDeviceDescription_get_capabilities, (InputDeviceDescription * __this, MethodInfo * method)); +DO_APP_FUNC(0x00424C30, void, InputDeviceDescription_set_capabilities, (InputDeviceDescription * __this, String * value, MethodInfo * method)); +DO_APP_FUNC(0x02954330, bool, InputDeviceDescription_get_empty, (InputDeviceDescription * __this, MethodInfo * method)); +DO_APP_FUNC(0x029543A0, String *, InputDeviceDescription_ToString, (InputDeviceDescription * __this, MethodInfo * method)); +DO_APP_FUNC(0x02954730, bool, InputDeviceDescription_Equals, (InputDeviceDescription * __this, InputDeviceDescription other, MethodInfo * method)); +DO_APP_FUNC(0x029549D0, bool, InputDeviceDescription_Equals_1, (InputDeviceDescription * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02954A80, int32_t, InputDeviceDescription_GetHashCode, (InputDeviceDescription * __this, MethodInfo * method)); DO_APP_FUNC(0x02954BE0, bool, InputDeviceDescription_op_Equality, (InputDeviceDescription left, InputDeviceDescription right, MethodInfo * method)); DO_APP_FUNC(0x02954C20, bool, InputDeviceDescription_op_Inequality, (InputDeviceDescription left, InputDeviceDescription right, MethodInfo * method)); -DO_APP_FUNC(0x02954C60, String *, InputDeviceDescription_ToJson, (InputDeviceDescription__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02954C60, String *, InputDeviceDescription_ToJson, (InputDeviceDescription * __this, MethodInfo * method)); DO_APP_FUNC(0x02954F40, InputDeviceDescription, InputDeviceDescription_FromJson, (String * json, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC53E0, InputDeviceDescription_FromJson__MethodInfo); DO_APP_FUNC(0x02955350, bool, InputDeviceDescription_ComparePropertyToDeviceDescriptor, (String * propertyName, String * propertyValue, String * deviceDescriptor, MethodInfo * method)); -DO_APP_FUNC(0x00A9A290, bool, InputDeviceMatcher_get_empty, (InputDeviceMatcher__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02955600, IEnumerable_1_KeyValuePair_2_System_String_System_Object_ *, InputDeviceMatcher_get_patterns, (InputDeviceMatcher__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x029556C0, InputDeviceMatcher, InputDeviceMatcher_WithInterface, (InputDeviceMatcher__Boxed * __this, String * pattern, bool supportRegex, MethodInfo * method)); -DO_APP_FUNC(0x02955760, InputDeviceMatcher, InputDeviceMatcher_WithDeviceClass, (InputDeviceMatcher__Boxed * __this, String * pattern, bool supportRegex, MethodInfo * method)); -DO_APP_FUNC(0x02955800, InputDeviceMatcher, InputDeviceMatcher_WithManufacturer, (InputDeviceMatcher__Boxed * __this, String * pattern, bool supportRegex, MethodInfo * method)); -DO_APP_FUNC(0x029558A0, InputDeviceMatcher, InputDeviceMatcher_WithProduct, (InputDeviceMatcher__Boxed * __this, String * pattern, bool supportRegex, MethodInfo * method)); -DO_APP_FUNC(0x02955940, InputDeviceMatcher, InputDeviceMatcher_WithVersion, (InputDeviceMatcher__Boxed * __this, String * pattern, bool supportRegex, MethodInfo * method)); -DO_APP_FUNC(0x029559E0, InputDeviceMatcher, InputDeviceMatcher_With, (InputDeviceMatcher__Boxed * __this, InternedString key, Object * value, bool supportRegex, MethodInfo * method)); -DO_APP_FUNC(0x02955D50, float, InputDeviceMatcher_MatchPercentage, (InputDeviceMatcher__Boxed * __this, InputDeviceDescription deviceDescription, MethodInfo * method)); +DO_APP_FUNC(0x00A9A290, bool, InputDeviceMatcher_get_empty, (InputDeviceMatcher * __this, MethodInfo * method)); +DO_APP_FUNC(0x02955600, IEnumerable_1_KeyValuePair_2_System_String_System_Object_ *, InputDeviceMatcher_get_patterns, (InputDeviceMatcher * __this, MethodInfo * method)); +DO_APP_FUNC(0x029556C0, InputDeviceMatcher, InputDeviceMatcher_WithInterface, (InputDeviceMatcher * __this, String * pattern, bool supportRegex, MethodInfo * method)); +DO_APP_FUNC(0x02955760, InputDeviceMatcher, InputDeviceMatcher_WithDeviceClass, (InputDeviceMatcher * __this, String * pattern, bool supportRegex, MethodInfo * method)); +DO_APP_FUNC(0x02955800, InputDeviceMatcher, InputDeviceMatcher_WithManufacturer, (InputDeviceMatcher * __this, String * pattern, bool supportRegex, MethodInfo * method)); +DO_APP_FUNC(0x029558A0, InputDeviceMatcher, InputDeviceMatcher_WithProduct, (InputDeviceMatcher * __this, String * pattern, bool supportRegex, MethodInfo * method)); +DO_APP_FUNC(0x02955940, InputDeviceMatcher, InputDeviceMatcher_WithVersion, (InputDeviceMatcher * __this, String * pattern, bool supportRegex, MethodInfo * method)); +DO_APP_FUNC(0x029559E0, InputDeviceMatcher, InputDeviceMatcher_With, (InputDeviceMatcher * __this, InternedString key, Object * value, bool supportRegex, MethodInfo * method)); +DO_APP_FUNC(0x02955D50, float, InputDeviceMatcher_MatchPercentage, (InputDeviceMatcher * __this, InputDeviceDescription deviceDescription, MethodInfo * method)); DO_APP_FUNC(0x029562D0, bool, InputDeviceMatcher_MatchSingleProperty, (Object * pattern, String * value, MethodInfo * method)); DO_APP_FUNC(0x029564C0, int32_t, InputDeviceMatcher_GetNumPropertiesIn, (InputDeviceDescription description, MethodInfo * method)); DO_APP_FUNC(0x02956530, InputDeviceMatcher, InputDeviceMatcher_FromDeviceDescription, (InputDeviceDescription deviceDescription, MethodInfo * method)); -DO_APP_FUNC(0x02956880, String *, InputDeviceMatcher_ToString, (InputDeviceMatcher__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02956A30, bool, InputDeviceMatcher_Equals, (InputDeviceMatcher__Boxed * __this, InputDeviceMatcher other, MethodInfo * method)); -DO_APP_FUNC(0x02956BA0, bool, InputDeviceMatcher_Equals_1, (InputDeviceMatcher__Boxed * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02956880, String *, InputDeviceMatcher_ToString, (InputDeviceMatcher * __this, MethodInfo * method)); +DO_APP_FUNC(0x02956A30, bool, InputDeviceMatcher_Equals, (InputDeviceMatcher * __this, InputDeviceMatcher other, MethodInfo * method)); +DO_APP_FUNC(0x02956BA0, bool, InputDeviceMatcher_Equals_1, (InputDeviceMatcher * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x02956C40, bool, InputDeviceMatcher_op_Equality, (InputDeviceMatcher left, InputDeviceMatcher right, MethodInfo * method)); DO_APP_FUNC(0x02956CA0, bool, InputDeviceMatcher_op_Inequality, (InputDeviceMatcher left, InputDeviceMatcher right, MethodInfo * method)); -DO_APP_FUNC(0x02956D40, int32_t, InputDeviceMatcher_GetHashCode, (InputDeviceMatcher__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02956D40, int32_t, InputDeviceMatcher_GetHashCode, (InputDeviceMatcher * __this, MethodInfo * method)); DO_APP_FUNC(0x02956D60, void, InputDeviceMatcher__cctor, (MethodInfo * method)); DO_APP_FUNC(0x029570B0, InputDeviceMatcher_MatcherJson, InputDeviceMatcher_MatcherJson_FromMatcher, (InputDeviceMatcher matcher, MethodInfo * method)); -DO_APP_FUNC(0x02957750, InputDeviceMatcher, InputDeviceMatcher_MatcherJson_ToMatcher, (InputDeviceMatcher_MatcherJson__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02957750, InputDeviceMatcher, InputDeviceMatcher_MatcherJson_ToMatcher, (InputDeviceMatcher_MatcherJson * __this, MethodInfo * method)); DO_APP_FUNC(0x0093D960, void, InputDeviceMatcher_get_patterns_d_4__ctor, (InputDeviceMatcher_get_patterns_d_4 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InputDeviceMatcher_get_patterns_d_4_System_IDisposable_Dispose, (InputDeviceMatcher_get_patterns_d_4 * __this, MethodInfo * method)); DO_APP_FUNC(0x02957F40, bool, InputDeviceMatcher_get_patterns_d_4_MoveNext, (InputDeviceMatcher_get_patterns_d_4 * __this, MethodInfo * method)); DO_APP_FUNC(0x0093E890, KeyValuePair_2_System_String_System_Object_, InputDeviceMatcher_get_patterns_d_4_System_Collections_Generic_IEnumerator_System_Collections_Generic_KeyValuePair_System_String_System_Object___get_Current, (InputDeviceMatcher_get_patterns_d_4 * __this, MethodInfo * method)); DO_APP_FUNC(0x02958100, void, InputDeviceMatcher_get_patterns_d_4_System_Collections_IEnumerator_Reset, (InputDeviceMatcher_get_patterns_d_4 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5398, InputDeviceMatcher_get_patterns_d_4_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x02958150, Object *, InputDeviceMatcher_get_patterns_d_4_System_Collections_IEnumerator_get_Current, (InputDeviceMatcher_get_patterns_d_4 * __this, MethodInfo * method)); DO_APP_FUNC(0x029581A0, IEnumerator_1_KeyValuePair_2_System_String_System_Object_ *, InputDeviceMatcher_get_patterns_d_4_System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_System_String_System_Object___GetEnumerator, (InputDeviceMatcher_get_patterns_d_4 * __this, MethodInfo * method)); DO_APP_FUNC(0x029581A0, IEnumerator *, InputDeviceMatcher_get_patterns_d_4_System_Collections_IEnumerable_GetEnumerator, (InputDeviceMatcher_get_patterns_d_4 * __this, MethodInfo * method)); DO_APP_FUNC(0x02958290, void, InputDeviceMatcher_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InputDeviceMatcher_c__ctor, (InputDeviceMatcher_c * __this, MethodInfo * method)); DO_APP_FUNC(0x02958340, bool, InputDeviceMatcher_c__With_b__11_0, (InputDeviceMatcher_c * __this, uint16_t ch, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5408, InputDeviceMatcher_c__With_b__11_0__MethodInfo); DO_APP_FUNC(0x029583C0, void, AnyKeyControl__ctor, (AnyKeyControl * __this, MethodInfo * method)); DO_APP_FUNC(0x02958430, float, AnyKeyControl_ReadUnprocessedValueFromState, (AnyKeyControl * __this, Void * statePtr, MethodInfo * method)); DO_APP_FUNC(0x02958560, float, AxisControl_Preprocess, (AxisControl * __this, float value, MethodInfo * method)); @@ -55688,8 +64784,10 @@ DO_APP_FUNC(0x005A04E0, void, DeltaControl_set_right, (DeltaControl * __this, Ax DO_APP_FUNC(0x02959440, void, DeltaControl_FinishSetup, (DeltaControl * __this, MethodInfo * method)); DO_APP_FUNC(0x02959690, void, DeltaControl__ctor, (DeltaControl * __this, MethodInfo * method)); DO_APP_FUNC(0x029596A0, void, DiscreteButtonControl_FinishSetup, (DiscreteButtonControl * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5348, DiscreteButtonControl_FinishSetup__MethodInfo); DO_APP_FUNC(0x029597D0, float, DiscreteButtonControl_ReadUnprocessedValueFromState, (DiscreteButtonControl * __this, Void * statePtr, MethodInfo * method)); DO_APP_FUNC(0x029598B0, void, DiscreteButtonControl_WriteValueIntoState, (DiscreteButtonControl * __this, float value, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5338, DiscreteButtonControl_WriteValueIntoState__MethodInfo); DO_APP_FUNC(0x02959A10, void, DiscreteButtonControl__ctor, (DiscreteButtonControl * __this, MethodInfo * method)); DO_APP_FUNC(0x02959A20, void, DoubleControl__ctor, (DoubleControl * __this, MethodInfo * method)); DO_APP_FUNC(0x02959AE0, double, DoubleControl_ReadUnprocessedValueFromState, (DoubleControl * __this, Void * statePtr, MethodInfo * method)); @@ -55780,8 +64878,10 @@ DO_APP_FUNC(0x0295C0B0, void, TouchPhaseControl__ctor, (TouchPhaseControl * __th DO_APP_FUNC(0x0295C170, TouchPhase__Enum_1, TouchPhaseControl_ReadUnprocessedValueFromState, (TouchPhaseControl * __this, Void * statePtr, MethodInfo * method)); DO_APP_FUNC(0x0295C1E0, void, TouchPhaseControl_WriteValueIntoState, (TouchPhaseControl * __this, TouchPhase__Enum_1 value, Void * statePtr, MethodInfo * method)); DO_APP_FUNC(0x0295C250, void, TouchPressControl_FinishSetup, (TouchPressControl * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC52A8, TouchPressControl_FinishSetup__MethodInfo); DO_APP_FUNC(0x0295C380, float, TouchPressControl_ReadUnprocessedValueFromState, (TouchPressControl * __this, Void * statePtr, MethodInfo * method)); DO_APP_FUNC(0x0295C410, void, TouchPressControl_WriteValueIntoState, (TouchPressControl * __this, float value, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC52B0, TouchPressControl_WriteValueIntoState__MethodInfo); DO_APP_FUNC(0x02959A10, void, TouchPressControl__ctor, (TouchPressControl * __this, MethodInfo * method)); DO_APP_FUNC(0x0087FE50, AxisControl *, Vector2Control_get_x, (Vector2Control * __this, MethodInfo * method)); DO_APP_FUNC(0x0087FE60, void, Vector2Control_set_x, (Vector2Control * __this, AxisControl * value, MethodInfo * method)); @@ -55807,44 +64907,51 @@ DO_APP_FUNC(0x0295CFC0, float, Vector3Control_EvaluateMagnitude, (Vector3Control DO_APP_FUNC(0x0295D0E0, FourCC, Vector3Control_CalculateOptimizedControlDataType, (Vector3Control * __this, MethodInfo * method)); DO_APP_FUNC(0x0295D2E0, float, HoldInteraction_get_durationOrDefault, (HoldInteraction * __this, MethodInfo * method)); DO_APP_FUNC(0x0295D360, float, HoldInteraction_get_pressPointOrDefault, (HoldInteraction * __this, MethodInfo * method)); -DO_APP_FUNC(0x0295D3C0, void, HoldInteraction_Process, (HoldInteraction * __this, InputInteractionContext context, MethodInfo * method)); +DO_APP_FUNC(0x0295D3C0, void, HoldInteraction_Process, (HoldInteraction * __this, InputInteractionContext * context, MethodInfo * method)); DO_APP_FUNC(0x0295D540, void, HoldInteraction_Reset, (HoldInteraction * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HoldInteraction__ctor, (HoldInteraction * __this, MethodInfo * method)); DO_APP_FUNC(0x0295D550, float, MultiTapInteraction_get_tapTimeOrDefault, (MultiTapInteraction * __this, MethodInfo * method)); DO_APP_FUNC(0x0295D5D0, float, MultiTapInteraction_get_tapDelayOrDefault, (MultiTapInteraction * __this, MethodInfo * method)); DO_APP_FUNC(0x0295D650, float, MultiTapInteraction_get_pressPointOrDefault, (MultiTapInteraction * __this, MethodInfo * method)); DO_APP_FUNC(0x0295D6B0, float, MultiTapInteraction_get_releasePointOrDefault, (MultiTapInteraction * __this, MethodInfo * method)); -DO_APP_FUNC(0x0295D730, void, MultiTapInteraction_Process, (MultiTapInteraction * __this, InputInteractionContext context, MethodInfo * method)); +DO_APP_FUNC(0x0295D730, void, MultiTapInteraction_Process, (MultiTapInteraction * __this, InputInteractionContext * context, MethodInfo * method)); DO_APP_FUNC(0x0295D9E0, void, MultiTapInteraction_Reset, (MultiTapInteraction * __this, MethodInfo * method)); DO_APP_FUNC(0x006D8940, void, MultiTapInteraction__ctor, (MultiTapInteraction * __this, MethodInfo * method)); DO_APP_FUNC(0x0295D9F0, float, PressInteraction_get_pressPointOrDefault, (PressInteraction * __this, MethodInfo * method)); DO_APP_FUNC(0x0295DA50, float, PressInteraction_get_releasePointOrDefault, (PressInteraction * __this, MethodInfo * method)); -DO_APP_FUNC(0x0295DAD0, void, PressInteraction_Process, (PressInteraction * __this, InputInteractionContext context, MethodInfo * method)); +DO_APP_FUNC(0x0295DAD0, void, PressInteraction_Process, (PressInteraction * __this, InputInteractionContext * context, MethodInfo * method)); DO_APP_FUNC(0x008F9CF0, void, PressInteraction_Reset, (PressInteraction * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, PressInteraction__ctor, (PressInteraction * __this, MethodInfo * method)); DO_APP_FUNC(0x0295DD10, float, SlowTapInteraction_get_durationOrDefault, (SlowTapInteraction * __this, MethodInfo * method)); DO_APP_FUNC(0x0295DD90, float, SlowTapInteraction_get_pressPointOrDefault, (SlowTapInteraction * __this, MethodInfo * method)); -DO_APP_FUNC(0x0295DDF0, void, SlowTapInteraction_Process, (SlowTapInteraction * __this, InputInteractionContext context, MethodInfo * method)); +DO_APP_FUNC(0x0295DDF0, void, SlowTapInteraction_Process, (SlowTapInteraction * __this, InputInteractionContext * context, MethodInfo * method)); DO_APP_FUNC(0x0295D540, void, SlowTapInteraction_Reset, (SlowTapInteraction * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SlowTapInteraction__ctor, (SlowTapInteraction * __this, MethodInfo * method)); DO_APP_FUNC(0x0295DFD0, float, TapInteraction_get_durationOrDefault, (TapInteraction * __this, MethodInfo * method)); DO_APP_FUNC(0x0295E050, float, TapInteraction_get_pressPointOrDefault, (TapInteraction * __this, MethodInfo * method)); DO_APP_FUNC(0x0295E0B0, float, TapInteraction_get_releasePointOrDefault, (TapInteraction * __this, MethodInfo * method)); -DO_APP_FUNC(0x0295E130, void, TapInteraction_Process, (TapInteraction * __this, InputInteractionContext context, MethodInfo * method)); +DO_APP_FUNC(0x0295E130, void, TapInteraction_Process, (TapInteraction * __this, InputInteractionContext * context, MethodInfo * method)); DO_APP_FUNC(0x0295D540, void, TapInteraction_Reset, (TapInteraction * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TapInteraction__ctor, (TapInteraction * __this, MethodInfo * method)); DO_APP_FUNC(0x0295E300, InputEventBuffer, InputActionTrace_get_buffer, (InputActionTrace * __this, MethodInfo * method)); DO_APP_FUNC(0x0071AD80, int32_t, InputActionTrace_get_count, (InputActionTrace * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InputActionTrace__ctor, (InputActionTrace * __this, MethodInfo * method)); DO_APP_FUNC(0x0295E320, void, InputActionTrace__ctor_1, (InputActionTrace * __this, InputAction_1 * action, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC51C0, InputActionTrace__ctor_1__MethodInfo); DO_APP_FUNC(0x0295E390, void, InputActionTrace__ctor_2, (InputActionTrace * __this, InputActionMap * actionMap, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC51B8, InputActionTrace__ctor_2__MethodInfo); DO_APP_FUNC(0x0295E530, void, InputActionTrace_SubscribeToAll, (InputActionTrace * __this, MethodInfo * method)); DO_APP_FUNC(0x0295E600, void, InputActionTrace_UnsubscribeFromAll, (InputActionTrace * __this, MethodInfo * method)); DO_APP_FUNC(0x0295E7C0, void, InputActionTrace_SubscribeTo, (InputActionTrace * __this, InputAction_1 * action, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC51F0, InputActionTrace_SubscribeTo__MethodInfo); DO_APP_FUNC(0x0295E9E0, void, InputActionTrace_SubscribeTo_1, (InputActionTrace * __this, InputActionMap * actionMap, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5200, InputActionTrace_SubscribeTo_1__MethodInfo); DO_APP_FUNC(0x0295EB80, void, InputActionTrace_UnsubscribeFrom, (InputActionTrace * __this, InputAction_1 * action, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC51C8, InputActionTrace_UnsubscribeFrom__MethodInfo); DO_APP_FUNC(0x0295ED80, void, InputActionTrace_UnsubscribeFrom_1, (InputActionTrace * __this, InputActionMap * actionMap, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC51E8, InputActionTrace_UnsubscribeFrom_1__MethodInfo); DO_APP_FUNC(0x0295EF00, void, InputActionTrace_RecordAction, (InputActionTrace * __this, InputAction_CallbackContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC51A8, InputActionTrace_RecordAction__MethodInfo); DO_APP_FUNC(0x0295F110, void, InputActionTrace_Clear, (InputActionTrace * __this, MethodInfo * method)); DO_APP_FUNC(0x0295F160, void, InputActionTrace_Finalize, (InputActionTrace * __this, MethodInfo * method)); DO_APP_FUNC(0x0295F1A0, String *, InputActionTrace_ToString, (InputActionTrace * __this, MethodInfo * method)); @@ -55855,58 +64962,64 @@ DO_APP_FUNC(0x0295F890, IEnumerator *, InputActionTrace_System_Collections_IEnum DO_APP_FUNC(0x0295F8A0, void, InputActionTrace_HookOnActionChange, (InputActionTrace * __this, MethodInfo * method)); DO_APP_FUNC(0x0295FA60, void, InputActionTrace_UnhookOnActionChange, (InputActionTrace * __this, MethodInfo * method)); DO_APP_FUNC(0x0295FB70, void, InputActionTrace_OnActionChange, (InputActionTrace * __this, Object * actionOrMapOrAsset, InputActionChange__Enum change, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5120, InputActionTrace_OnActionChange__MethodInfo); DO_APP_FUNC(0x0295FF00, void, InputActionTrace_CloneActionStateBeforeBindingsChange, (InputActionTrace * __this, InputActionMap * actionMap, MethodInfo * method)); -DO_APP_FUNC(0x02960030, InputAction_1 *, InputActionTrace_ActionEventPtr_get_action, (InputActionTrace_ActionEventPtr__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02960060, InputActionPhase__Enum, InputActionTrace_ActionEventPtr_get_phase, (InputActionTrace_ActionEventPtr__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02960070, InputControl *, InputActionTrace_ActionEventPtr_get_control, (InputActionTrace_ActionEventPtr__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x029600B0, IInputInteraction *, InputActionTrace_ActionEventPtr_get_interaction, (InputActionTrace_ActionEventPtr__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02960100, double, InputActionTrace_ActionEventPtr_get_time, (InputActionTrace_ActionEventPtr__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02960160, double, InputActionTrace_ActionEventPtr_get_startTime, (InputActionTrace_ActionEventPtr__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02960170, double, InputActionTrace_ActionEventPtr_get_duration, (InputActionTrace_ActionEventPtr__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x029601E0, int32_t, InputActionTrace_ActionEventPtr_get_valueSizeInBytes, (InputActionTrace_ActionEventPtr__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x029601F0, Object *, InputActionTrace_ActionEventPtr_ReadValueAsObject, (InputActionTrace_ActionEventPtr__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02960460, void, InputActionTrace_ActionEventPtr_ReadValue, (InputActionTrace_ActionEventPtr__Boxed * __this, Void * buffer, int32_t bufferSize, MethodInfo * method)); -DO_APP_FUNC(0x02960560, String *, InputActionTrace_ActionEventPtr_ToString, (InputActionTrace_ActionEventPtr__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02960A60, void, InputActionTrace_Enumerator__ctor, (InputActionTrace_Enumerator__Boxed * __this, InputActionTrace * trace, MethodInfo * method)); -DO_APP_FUNC(0x02960B20, bool, InputActionTrace_Enumerator_MoveNext, (InputActionTrace_Enumerator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02960B70, void, InputActionTrace_Enumerator_Reset, (InputActionTrace_Enumerator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, InputActionTrace_Enumerator_Dispose, (InputActionTrace_Enumerator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02960B80, InputActionTrace_ActionEventPtr, InputActionTrace_Enumerator_get_Current, (InputActionTrace_Enumerator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02960C50, Object *, InputActionTrace_Enumerator_System_Collections_IEnumerator_get_Current, (InputActionTrace_Enumerator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02960CB0, int32_t, Vector2MagnitudeComparer_Compare, (Vector2MagnitudeComparer__Boxed * __this, Vector2 x, Vector2 y, MethodInfo * method)); -DO_APP_FUNC(0x02960D10, int32_t, Vector3MagnitudeComparer_Compare, (Vector3MagnitudeComparer__Boxed * __this, Vector3 x, Vector3 y, MethodInfo * method)); +DO_APP_FUNC(0x02960030, InputAction_1 *, InputActionTrace_ActionEventPtr_get_action, (InputActionTrace_ActionEventPtr * __this, MethodInfo * method)); +DO_APP_FUNC(0x02960060, InputActionPhase__Enum, InputActionTrace_ActionEventPtr_get_phase, (InputActionTrace_ActionEventPtr * __this, MethodInfo * method)); +DO_APP_FUNC(0x02960070, InputControl *, InputActionTrace_ActionEventPtr_get_control, (InputActionTrace_ActionEventPtr * __this, MethodInfo * method)); +DO_APP_FUNC(0x029600B0, IInputInteraction *, InputActionTrace_ActionEventPtr_get_interaction, (InputActionTrace_ActionEventPtr * __this, MethodInfo * method)); +DO_APP_FUNC(0x02960100, double, InputActionTrace_ActionEventPtr_get_time, (InputActionTrace_ActionEventPtr * __this, MethodInfo * method)); +DO_APP_FUNC(0x02960160, double, InputActionTrace_ActionEventPtr_get_startTime, (InputActionTrace_ActionEventPtr * __this, MethodInfo * method)); +DO_APP_FUNC(0x02960170, double, InputActionTrace_ActionEventPtr_get_duration, (InputActionTrace_ActionEventPtr * __this, MethodInfo * method)); +DO_APP_FUNC(0x029601E0, int32_t, InputActionTrace_ActionEventPtr_get_valueSizeInBytes, (InputActionTrace_ActionEventPtr * __this, MethodInfo * method)); +DO_APP_FUNC(0x029601F0, Object *, InputActionTrace_ActionEventPtr_ReadValueAsObject, (InputActionTrace_ActionEventPtr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5130, InputActionTrace_ActionEventPtr_ReadValueAsObject__MethodInfo); +DO_APP_FUNC(0x02960460, void, InputActionTrace_ActionEventPtr_ReadValue, (InputActionTrace_ActionEventPtr * __this, Void * buffer, int32_t bufferSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5150, InputActionTrace_ActionEventPtr_ReadValue__MethodInfo); +DO_APP_FUNC(0x02960560, String *, InputActionTrace_ActionEventPtr_ToString, (InputActionTrace_ActionEventPtr * __this, MethodInfo * method)); +DO_APP_FUNC(0x02960A60, void, InputActionTrace_Enumerator__ctor, (InputActionTrace_Enumerator * __this, InputActionTrace * trace, MethodInfo * method)); +DO_APP_FUNC(0x02960B20, bool, InputActionTrace_Enumerator_MoveNext, (InputActionTrace_Enumerator * __this, MethodInfo * method)); +DO_APP_FUNC(0x02960B70, void, InputActionTrace_Enumerator_Reset, (InputActionTrace_Enumerator * __this, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, InputActionTrace_Enumerator_Dispose, (InputActionTrace_Enumerator * __this, MethodInfo * method)); +DO_APP_FUNC(0x02960B80, InputActionTrace_ActionEventPtr, InputActionTrace_Enumerator_get_Current, (InputActionTrace_Enumerator * __this, MethodInfo * method)); +DO_APP_FUNC(0x02960C50, Object *, InputActionTrace_Enumerator_System_Collections_IEnumerator_get_Current, (InputActionTrace_Enumerator * __this, MethodInfo * method)); +DO_APP_FUNC(0x02960CB0, int32_t, Vector2MagnitudeComparer_Compare, (Vector2MagnitudeComparer * __this, Vector2 x, Vector2 y, MethodInfo * method)); +DO_APP_FUNC(0x02960D10, int32_t, Vector3MagnitudeComparer_Compare, (Vector3MagnitudeComparer * __this, Vector3 x, Vector3 y, MethodInfo * method)); DO_APP_FUNC(0x02960D70, bool, CSharpCodeHelpers_IsProperIdentifier, (String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC50E0, CSharpCodeHelpers_IsProperIdentifier__MethodInfo); DO_APP_FUNC(0x02960E60, bool, CSharpCodeHelpers_IsEmptyOrProperIdentifier, (String * name, MethodInfo * method)); DO_APP_FUNC(0x02960F60, bool, CSharpCodeHelpers_IsEmptyOrProperNamespaceName, (String * name, MethodInfo * method)); DO_APP_FUNC(0x02961030, String *, CSharpCodeHelpers_MakeIdentifier, (String * name, String * suffix, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC50B8, CSharpCodeHelpers_MakeIdentifier__MethodInfo); DO_APP_FUNC(0x02961280, String *, CSharpCodeHelpers_MakeTypeName, (String * name, String * suffix, MethodInfo * method)); -DO_APP_FUNC(0x029613D0, void, DelegateHelpers_InvokeCallbacksSafe, (CallbackArray_1_System_Action_ callbacks, String * callbackName, Object * context, MethodInfo * method)); +DO_APP_FUNC(0x029613D0, void, DelegateHelpers_InvokeCallbacksSafe, (CallbackArray_1_System_Action_ * callbacks, String * callbackName, Object * context, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, String *, DisplayStringFormatAttribute_get_formatString, (DisplayStringFormatAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, DisplayStringFormatAttribute_set_formatString, (DisplayStringFormatAttribute * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, DisplayStringFormatAttribute__ctor, (DisplayStringFormatAttribute * __this, String * formatString, MethodInfo * method)); DO_APP_FUNC(0x02961610, bool, ExceptionHelpers_IsExceptionIndicatingBugInCode, (Exception * exception, MethodInfo * method)); -DO_APP_FUNC(0x00959BA0, void, FourCC__ctor, (FourCC__Boxed * __this, int32_t code, MethodInfo * method)); -DO_APP_FUNC(0x02961710, void, FourCC__ctor_1, (FourCC__Boxed * __this, uint16_t a, uint16_t b, uint16_t c, uint16_t d, MethodInfo * method)); -DO_APP_FUNC(0x02961740, void, FourCC__ctor_2, (FourCC__Boxed * __this, String * str, MethodInfo * method)); +DO_APP_FUNC(0x00959BA0, void, FourCC__ctor, (FourCC * __this, int32_t code, MethodInfo * method)); +DO_APP_FUNC(0x02961710, void, FourCC__ctor_1, (FourCC * __this, uint16_t a, uint16_t b, uint16_t c, uint16_t d, MethodInfo * method)); +DO_APP_FUNC(0x02961740, void, FourCC__ctor_2, (FourCC * __this, String * str, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC50F0, FourCC__ctor_2__MethodInfo); DO_APP_FUNC(0x00959BB0, int32_t, FourCC_op_Implicit, (FourCC fourCC, MethodInfo * method)); DO_APP_FUNC(0x00959BB0, FourCC, FourCC_op_Implicit_1, (int32_t i, MethodInfo * method)); -DO_APP_FUNC(0x02961890, String *, FourCC_ToString, (FourCC__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C0F590, bool, FourCC_Equals, (FourCC__Boxed * __this, FourCC other, MethodInfo * method)); -DO_APP_FUNC(0x02961AF0, bool, FourCC_Equals_1, (FourCC__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, FourCC_GetHashCode, (FourCC__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02961890, String *, FourCC_ToString, (FourCC * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C0F590, bool, FourCC_Equals, (FourCC * __this, FourCC other, MethodInfo * method)); +DO_APP_FUNC(0x02961AF0, bool, FourCC_Equals_1, (FourCC * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, FourCC_GetHashCode, (FourCC * __this, MethodInfo * method)); DO_APP_FUNC(0x00AFE200, bool, FourCC_op_Equality, (FourCC left, FourCC right, MethodInfo * method)); DO_APP_FUNC(0x00AEE320, bool, FourCC_op_Inequality, (FourCC left, FourCC right, MethodInfo * method)); DO_APP_FUNC(0x00959BB0, FourCC, FourCC_FromInt32, (int32_t i, MethodInfo * method)); DO_APP_FUNC(0x00959BB0, int32_t, FourCC_ToInt32, (FourCC fourCC, MethodInfo * method)); -DO_APP_FUNC(0x02961B80, int32_t, InternedString_get_length, (InternedString__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02961B90, void, InternedString__ctor, (InternedString__Boxed * __this, String * text, MethodInfo * method)); -DO_APP_FUNC(0x02961E80, bool, InternedString_IsEmpty, (InternedString__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, String *, InternedString_ToLower, (InternedString__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02961E90, bool, InternedString_Equals, (InternedString__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x029620A0, bool, InternedString_Equals_1, (InternedString__Boxed * __this, InternedString other, MethodInfo * method)); -DO_APP_FUNC(0x029620B0, int32_t, InternedString_CompareTo, (InternedString__Boxed * __this, InternedString other, MethodInfo * method)); -DO_APP_FUNC(0x029621A0, int32_t, InternedString_GetHashCode, (InternedString__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x029621D0, String *, InternedString_ToString, (InternedString__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02961B80, int32_t, InternedString_get_length, (InternedString * __this, MethodInfo * method)); +DO_APP_FUNC(0x02961B90, void, InternedString__ctor, (InternedString * __this, String * text, MethodInfo * method)); +DO_APP_FUNC(0x02961E80, bool, InternedString_IsEmpty, (InternedString * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, String *, InternedString_ToLower, (InternedString * __this, MethodInfo * method)); +DO_APP_FUNC(0x02961E90, bool, InternedString_Equals, (InternedString * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x029620A0, bool, InternedString_Equals_1, (InternedString * __this, InternedString other, MethodInfo * method)); +DO_APP_FUNC(0x029620B0, int32_t, InternedString_CompareTo, (InternedString * __this, InternedString other, MethodInfo * method)); +DO_APP_FUNC(0x029621A0, int32_t, InternedString_GetHashCode, (InternedString * __this, MethodInfo * method)); +DO_APP_FUNC(0x029621D0, String *, InternedString_ToString, (InternedString * __this, MethodInfo * method)); DO_APP_FUNC(0x029620A0, bool, InternedString_op_Equality, (InternedString a, InternedString b, MethodInfo * method)); DO_APP_FUNC(0x02962220, bool, InternedString_op_Inequality, (InternedString a, InternedString b, MethodInfo * method)); DO_APP_FUNC(0x02962230, bool, InternedString_op_Equality_1, (InternedString a, String * b, MethodInfo * method)); @@ -55916,35 +65029,38 @@ DO_APP_FUNC(0x02962890, bool, InternedString_op_Inequality_2, (String * a, Inter DO_APP_FUNC(0x02962AB0, bool, InternedString_op_LessThan, (InternedString left, InternedString right, MethodInfo * method)); DO_APP_FUNC(0x02962BA0, bool, InternedString_op_GreaterThan, (InternedString left, InternedString right, MethodInfo * method)); DO_APP_FUNC(0x029621D0, String *, InternedString_op_Implicit, (InternedString str, MethodInfo * method)); -DO_APP_FUNC(0x02962CA0, void, JsonParser_1__ctor, (JsonParser_1__Boxed * __this, String * json, MethodInfo * method)); -DO_APP_FUNC(0x02962D70, void, JsonParser_1_Reset, (JsonParser_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02962D80, String *, JsonParser_1_ToString, (JsonParser_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02962ED0, bool, JsonParser_1_NavigateToProperty, (JsonParser_1__Boxed * __this, String * path, MethodInfo * method)); -DO_APP_FUNC(0x029633F0, bool, JsonParser_1_CurrentPropertyHasValueEqualTo, (JsonParser_1__Boxed * __this, JsonParser_JsonValue expectedValue, MethodInfo * method)); -DO_APP_FUNC(0x02963600, bool, JsonParser_1_ParseToken, (JsonParser_1__Boxed * __this, uint16_t token, MethodInfo * method)); -DO_APP_FUNC(0x02963680, bool, JsonParser_1_ParseValue, (JsonParser_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x029636C0, bool, JsonParser_1_ParseValue_1, (JsonParser_1__Boxed * __this, JsonParser_JsonValue result, MethodInfo * method)); -DO_APP_FUNC(0x029637E0, bool, JsonParser_1_ParseStringValue, (JsonParser_1__Boxed * __this, JsonParser_JsonValue result, MethodInfo * method)); -DO_APP_FUNC(0x02963A00, bool, JsonParser_1_ParseArrayValue, (JsonParser_1__Boxed * __this, JsonParser_JsonValue result, MethodInfo * method)); -DO_APP_FUNC(0x02963DB0, bool, JsonParser_1_ParseObjectValue, (JsonParser_1__Boxed * __this, JsonParser_JsonValue result, MethodInfo * method)); -DO_APP_FUNC(0x02964050, bool, JsonParser_1_ParseNumber, (JsonParser_1__Boxed * __this, JsonParser_JsonValue result, MethodInfo * method)); -DO_APP_FUNC(0x02964600, bool, JsonParser_1_ParseBooleanValue, (JsonParser_1__Boxed * __this, JsonParser_JsonValue result, MethodInfo * method)); -DO_APP_FUNC(0x02964820, bool, JsonParser_1_ParseNullValue, (JsonParser_1__Boxed * __this, JsonParser_JsonValue result, MethodInfo * method)); -DO_APP_FUNC(0x02964890, bool, JsonParser_1_SkipToValue, (JsonParser_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02964900, bool, JsonParser_1_SkipString, (JsonParser_1__Boxed * __this, String * text, MethodInfo * method)); -DO_APP_FUNC(0x029649D0, void, JsonParser_1_SkipWhitespace, (JsonParser_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02964A70, bool, JsonParser_1_get_isAtEnd, (JsonParser_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02964A80, String *, JsonParser_JsonString_ToString, (JsonParser_JsonString__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02964BB0, bool, JsonParser_JsonString_Equals, (JsonParser_JsonString__Boxed * __this, JsonParser_JsonString other, MethodInfo * method)); -DO_APP_FUNC(0x02964DB0, bool, JsonParser_JsonString_Equals_1, (JsonParser_JsonString__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02964E50, int32_t, JsonParser_JsonString_GetHashCode, (JsonParser_JsonString__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02962CA0, void, JsonParser_1__ctor, (JsonParser_1 * __this, String * json, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5080, JsonParser_1__ctor__MethodInfo); +DO_APP_FUNC(0x02962D70, void, JsonParser_1_Reset, (JsonParser_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02962D80, String *, JsonParser_1_ToString, (JsonParser_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02962ED0, bool, JsonParser_1_NavigateToProperty, (JsonParser_1 * __this, String * path, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5060, JsonParser_1_NavigateToProperty__MethodInfo); +DO_APP_FUNC(0x029633F0, bool, JsonParser_1_CurrentPropertyHasValueEqualTo, (JsonParser_1 * __this, JsonParser_JsonValue expectedValue, MethodInfo * method)); +DO_APP_FUNC(0x02963600, bool, JsonParser_1_ParseToken, (JsonParser_1 * __this, uint16_t token, MethodInfo * method)); +DO_APP_FUNC(0x02963680, bool, JsonParser_1_ParseValue, (JsonParser_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x029636C0, bool, JsonParser_1_ParseValue_1, (JsonParser_1 * __this, JsonParser_JsonValue * result, MethodInfo * method)); +DO_APP_FUNC(0x029637E0, bool, JsonParser_1_ParseStringValue, (JsonParser_1 * __this, JsonParser_JsonValue * result, MethodInfo * method)); +DO_APP_FUNC(0x02963A00, bool, JsonParser_1_ParseArrayValue, (JsonParser_1 * __this, JsonParser_JsonValue * result, MethodInfo * method)); +DO_APP_FUNC(0x02963DB0, bool, JsonParser_1_ParseObjectValue, (JsonParser_1 * __this, JsonParser_JsonValue * result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC50A8, JsonParser_1_ParseObjectValue__MethodInfo); +DO_APP_FUNC(0x02964050, bool, JsonParser_1_ParseNumber, (JsonParser_1 * __this, JsonParser_JsonValue * result, MethodInfo * method)); +DO_APP_FUNC(0x02964600, bool, JsonParser_1_ParseBooleanValue, (JsonParser_1 * __this, JsonParser_JsonValue * result, MethodInfo * method)); +DO_APP_FUNC(0x02964820, bool, JsonParser_1_ParseNullValue, (JsonParser_1 * __this, JsonParser_JsonValue * result, MethodInfo * method)); +DO_APP_FUNC(0x02964890, bool, JsonParser_1_SkipToValue, (JsonParser_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02964900, bool, JsonParser_1_SkipString, (JsonParser_1 * __this, String * text, MethodInfo * method)); +DO_APP_FUNC(0x029649D0, void, JsonParser_1_SkipWhitespace, (JsonParser_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02964A70, bool, JsonParser_1_get_isAtEnd, (JsonParser_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02964A80, String *, JsonParser_JsonString_ToString, (JsonParser_JsonString * __this, MethodInfo * method)); +DO_APP_FUNC(0x02964BB0, bool, JsonParser_JsonString_Equals, (JsonParser_JsonString * __this, JsonParser_JsonString other, MethodInfo * method)); +DO_APP_FUNC(0x02964DB0, bool, JsonParser_JsonString_Equals_1, (JsonParser_JsonString * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02964E50, int32_t, JsonParser_JsonString_GetHashCode, (JsonParser_JsonString * __this, MethodInfo * method)); DO_APP_FUNC(0x02964EC0, bool, JsonParser_JsonString_op_Equality, (JsonParser_JsonString left, JsonParser_JsonString right, MethodInfo * method)); DO_APP_FUNC(0x02964EF0, bool, JsonParser_JsonString_op_Inequality, (JsonParser_JsonString left, JsonParser_JsonString right, MethodInfo * method)); DO_APP_FUNC(0x02964F20, JsonParser_JsonString, JsonParser_JsonString_op_Implicit, (String * str, MethodInfo * method)); -DO_APP_FUNC(0x02965020, bool, JsonParser_JsonValue_ToBoolean, (JsonParser_JsonValue__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02965110, int64_t, JsonParser_JsonValue_ToInteger, (JsonParser_JsonValue__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x029651B0, double, JsonParser_JsonValue_ToDouble, (JsonParser_JsonValue__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02965260, String *, JsonParser_JsonValue_ToString, (JsonParser_JsonValue__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02965020, bool, JsonParser_JsonValue_ToBoolean, (JsonParser_JsonValue * __this, MethodInfo * method)); +DO_APP_FUNC(0x02965110, int64_t, JsonParser_JsonValue_ToInteger, (JsonParser_JsonValue * __this, MethodInfo * method)); +DO_APP_FUNC(0x029651B0, double, JsonParser_JsonValue_ToDouble, (JsonParser_JsonValue * __this, MethodInfo * method)); +DO_APP_FUNC(0x02965260, String *, JsonParser_JsonValue_ToString, (JsonParser_JsonValue * __this, MethodInfo * method)); DO_APP_FUNC(0x02965970, JsonParser_JsonValue, JsonParser_JsonValue_op_Implicit, (bool val, MethodInfo * method)); DO_APP_FUNC(0x029659A0, JsonParser_JsonValue, JsonParser_JsonValue_op_Implicit_1, (int64_t val, MethodInfo * method)); DO_APP_FUNC(0x029659D0, JsonParser_JsonValue, JsonParser_JsonValue_op_Implicit_2, (double val, MethodInfo * method)); @@ -55953,16 +65069,19 @@ DO_APP_FUNC(0x02965B70, JsonParser_JsonValue, JsonParser_JsonValue_op_Implicit_4 DO_APP_FUNC(0x02965C00, JsonParser_JsonValue, JsonParser_JsonValue_op_Implicit_5, (List_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * array, MethodInfo * method)); DO_APP_FUNC(0x02965C80, JsonParser_JsonValue, JsonParser_JsonValue_op_Implicit_6, (Dictionary_2_System_String_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * obj, MethodInfo * method)); DO_APP_FUNC(0x02965D00, JsonParser_JsonValue, JsonParser_JsonValue_op_Implicit_7, (Enum val, MethodInfo * method)); -DO_APP_FUNC(0x02965D80, bool, JsonParser_JsonValue_Equals, (JsonParser_JsonValue__Boxed * __this, JsonParser_JsonValue other, MethodInfo * method)); +DO_APP_FUNC(0x02965D80, bool, JsonParser_JsonValue_Equals, (JsonParser_JsonValue * __this, JsonParser_JsonValue other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5040, JsonParser_JsonValue_Equals__MethodInfo); DO_APP_FUNC(0x02966070, bool, JsonParser_JsonValue_Equals_1, (Object * obj, JsonParser_JsonValue value, MethodInfo * method)); -DO_APP_FUNC(0x02966C20, bool, JsonParser_JsonValue_Equals_2, (JsonParser_JsonValue__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02966CE0, int32_t, JsonParser_JsonValue_GetHashCode, (JsonParser_JsonValue__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02966C20, bool, JsonParser_JsonValue_Equals_2, (JsonParser_JsonValue * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02966CE0, int32_t, JsonParser_JsonValue_GetHashCode, (JsonParser_JsonValue * __this, MethodInfo * method)); DO_APP_FUNC(0x02966E30, bool, JsonParser_JsonValue_op_Equality, (JsonParser_JsonValue left, JsonParser_JsonValue right, MethodInfo * method)); DO_APP_FUNC(0x02966E80, bool, JsonParser_JsonValue_op_Inequality, (JsonParser_JsonValue left, JsonParser_JsonValue right, MethodInfo * method)); DO_APP_FUNC(0x02967020, void, JsonParser_JsonValue_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, JsonParser_JsonValue_c__ctor, (JsonParser_JsonValue_c * __this, MethodInfo * method)); DO_APP_FUNC(0x029670D0, String *, JsonParser_JsonValue_c__ToString_b__11_0, (JsonParser_JsonValue_c * __this, JsonParser_JsonValue x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5020, JsonParser_JsonValue_c__ToString_b__11_0__MethodInfo); DO_APP_FUNC(0x029670F0, String *, JsonParser_JsonValue_c__ToString_b__11_1, (JsonParser_JsonValue_c * __this, KeyValuePair_2_System_String_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ pair, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5038, JsonParser_JsonValue_c__ToString_b__11_1__MethodInfo); DO_APP_FUNC(0x02967200, bool, MemoryHelpers_Compare, (Void * ptr1, Void * ptr2, MemoryHelpers_BitRegion region, MethodInfo * method)); DO_APP_FUNC(0x02967280, uint32_t, MemoryHelpers_ComputeFollowingByteOffset, (uint32_t byteOffset, uint32_t sizeInBits, MethodInfo * method)); DO_APP_FUNC(0x029672A0, void, MemoryHelpers_WriteSingleBit, (Void * ptr, uint32_t bitOffset, bool value, MethodInfo * method)); @@ -55972,7 +65091,9 @@ DO_APP_FUNC(0x02967410, bool, MemoryHelpers_MemCmpBitRegion, (Void * ptr1, Void DO_APP_FUNC(0x02967590, void, MemoryHelpers_MemSet, (Void * destination, int32_t numBytes, uint8_t value, MethodInfo * method)); DO_APP_FUNC(0x02967660, void, MemoryHelpers_MemCpyMasked, (Void * destination, Void * source, int32_t numBytes, Void * mask, MethodInfo * method)); DO_APP_FUNC(0x02967770, uint32_t, MemoryHelpers_ReadMultipleBitsAsUInt, (Void * ptr, uint32_t bitOffset, uint32_t bitCount, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5B30, MemoryHelpers_ReadMultipleBitsAsUInt__MethodInfo); DO_APP_FUNC(0x02967970, void, MemoryHelpers_WriteUIntAsMultipleBits, (Void * ptr, uint32_t bitOffset, uint32_t bitCount, uint32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5B50, MemoryHelpers_WriteUIntAsMultipleBits__MethodInfo); DO_APP_FUNC(0x02967B90, int32_t, MemoryHelpers_ReadTwosComplementMultipleBitsAsInt, (Void * ptr, uint32_t bitOffset, uint32_t bitCount, MethodInfo * method)); DO_APP_FUNC(0x02967BA0, void, MemoryHelpers_WriteIntAsTwosComplementMultipleBits, (Void * ptr, uint32_t bitOffset, uint32_t bitCount, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x02967BB0, int32_t, MemoryHelpers_ReadExcessKMultipleBitsAsInt, (Void * ptr, uint32_t bitOffset, uint32_t bitCount, MethodInfo * method)); @@ -55980,40 +65101,47 @@ DO_APP_FUNC(0x02967BE0, void, MemoryHelpers_WriteIntAsExcessKMultipleBits, (Void DO_APP_FUNC(0x02967C10, float, MemoryHelpers_ReadMultipleBitsAsNormalizedUInt, (Void * ptr, uint32_t bitOffset, uint32_t bitCount, MethodInfo * method)); DO_APP_FUNC(0x02967C80, void, MemoryHelpers_WriteNormalizedUIntAsMultipleBits, (Void * ptr, uint32_t bitOffset, uint32_t bitCount, float value, MethodInfo * method)); DO_APP_FUNC(0x02967CF0, void, MemoryHelpers_SetBitsInBuffer, (Void * buffer, int32_t byteOffset, int32_t bitOffset, int32_t sizeInBits, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5BA8, MemoryHelpers_SetBitsInBuffer__MethodInfo); DO_APP_FUNC(0x02967FA0, uint32_t, MemoryHelpers_AlignNatural, (uint32_t offset, uint32_t sizeInBytes, MethodInfo * method)); -DO_APP_FUNC(0x02968020, bool, MemoryHelpers_BitRegion_get_isEmpty, (MemoryHelpers_BitRegion__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00977B80, void, MemoryHelpers_BitRegion__ctor, (MemoryHelpers_BitRegion__Boxed * __this, uint32_t bitOffset, uint32_t sizeInBits, MethodInfo * method)); -DO_APP_FUNC(0x02968030, void, MemoryHelpers_BitRegion__ctor_1, (MemoryHelpers_BitRegion__Boxed * __this, uint32_t byteOffset, uint32_t bitOffset, uint32_t sizeInBits, MethodInfo * method)); -DO_APP_FUNC(0x02968040, MemoryHelpers_BitRegion, MemoryHelpers_BitRegion_Overlap, (MemoryHelpers_BitRegion__Boxed * __this, MemoryHelpers_BitRegion other, MethodInfo * method)); -DO_APP_FUNC(0x00471910, String *, NameAndParameters_get_name, (NameAndParameters__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, NameAndParameters_set_name, (NameAndParameters__Boxed * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x00C16880, ReadOnlyArray_1_NamedValue_, NameAndParameters_get_parameters, (NameAndParameters__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x029680E0, void, NameAndParameters_set_parameters, (NameAndParameters__Boxed * __this, ReadOnlyArray_1_NamedValue_ value, MethodInfo * method)); -DO_APP_FUNC(0x02968140, String *, NameAndParameters_ToString, (NameAndParameters__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02968020, bool, MemoryHelpers_BitRegion_get_isEmpty, (MemoryHelpers_BitRegion * __this, MethodInfo * method)); +DO_APP_FUNC(0x00977B80, void, MemoryHelpers_BitRegion__ctor, (MemoryHelpers_BitRegion * __this, uint32_t bitOffset, uint32_t sizeInBits, MethodInfo * method)); +DO_APP_FUNC(0x02968030, void, MemoryHelpers_BitRegion__ctor_1, (MemoryHelpers_BitRegion * __this, uint32_t byteOffset, uint32_t bitOffset, uint32_t sizeInBits, MethodInfo * method)); +DO_APP_FUNC(0x02968040, MemoryHelpers_BitRegion, MemoryHelpers_BitRegion_Overlap, (MemoryHelpers_BitRegion * __this, MemoryHelpers_BitRegion other, MethodInfo * method)); +DO_APP_FUNC(0x00471910, String *, NameAndParameters_get_name, (NameAndParameters * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, NameAndParameters_set_name, (NameAndParameters * __this, String * value, MethodInfo * method)); +DO_APP_FUNC(0x00C16880, ReadOnlyArray_1_NamedValue_, NameAndParameters_get_parameters, (NameAndParameters * __this, MethodInfo * method)); +DO_APP_FUNC(0x029680E0, void, NameAndParameters_set_parameters, (NameAndParameters * __this, ReadOnlyArray_1_NamedValue_ value, MethodInfo * method)); +DO_APP_FUNC(0x02968140, String *, NameAndParameters_ToString, (NameAndParameters * __this, MethodInfo * method)); DO_APP_FUNC(0x029684E0, IEnumerable_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ *, NameAndParameters_ParseMultiple, (String * text, MethodInfo * method)); -DO_APP_FUNC(0x02968590, bool, NameAndParameters_ParseMultiple_1, (String * text, List_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ * list, MethodInfo * method)); +DO_APP_FUNC(0x02968590, bool, NameAndParameters_ParseMultiple_1, (String * text, List_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ * * list, MethodInfo * method)); DO_APP_FUNC(0x029688D0, String *, NameAndParameters_ParseName, (String * text, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5A98, NameAndParameters_ParseName__MethodInfo); DO_APP_FUNC(0x02968960, NameAndParameters, NameAndParameters_Parse, (String * text, MethodInfo * method)); -DO_APP_FUNC(0x02968A00, NameAndParameters, NameAndParameters_ParseNameAndParameters, (String * text, int32_t index, bool nameOnly, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5AA8, NameAndParameters_Parse__MethodInfo); +DO_APP_FUNC(0x02968A00, NameAndParameters, NameAndParameters_ParseNameAndParameters, (String * text, int32_t * index, bool nameOnly, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5B00, NameAndParameters_ParseNameAndParameters__MethodInfo); DO_APP_FUNC(0x02968F60, void, NameAndParameters_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NameAndParameters_c__ctor, (NameAndParameters_c * __this, MethodInfo * method)); DO_APP_FUNC(0x02969010, String *, NameAndParameters_c__ToString_b__8_0, (NameAndParameters_c * __this, NamedValue x, MethodInfo * method)); -DO_APP_FUNC(0x00471910, String *, NamedValue_get_name, (NamedValue__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, NamedValue_set_name, (NamedValue__Boxed * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x00C16880, PrimitiveValue, NamedValue_get_value, (NamedValue__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B621E0, void, NamedValue_set_value, (NamedValue__Boxed * __this, PrimitiveValue value, MethodInfo * method)); -DO_APP_FUNC(0x00471920, TypeCode__Enum, NamedValue_get_type, (NamedValue__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02969030, NamedValue, NamedValue_ConvertTo, (NamedValue__Boxed * __this, TypeCode__Enum type, MethodInfo * method)); -DO_APP_FUNC(0x029690C0, String *, NamedValue_ToString, (NamedValue__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02969180, bool, NamedValue_Equals, (NamedValue__Boxed * __this, NamedValue other, MethodInfo * method)); -DO_APP_FUNC(0x029692D0, bool, NamedValue_Equals_1, (NamedValue__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02969370, int32_t, NamedValue_GetHashCode, (NamedValue__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5AC8, NameAndParameters_c__ToString_b__8_0__MethodInfo); +DO_APP_FUNC(0x00471910, String *, NamedValue_get_name, (NamedValue * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, NamedValue_set_name, (NamedValue * __this, String * value, MethodInfo * method)); +DO_APP_FUNC(0x00C16880, PrimitiveValue, NamedValue_get_value, (NamedValue * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B621E0, void, NamedValue_set_value, (NamedValue * __this, PrimitiveValue value, MethodInfo * method)); +DO_APP_FUNC(0x00471920, TypeCode__Enum, NamedValue_get_type, (NamedValue * __this, MethodInfo * method)); +DO_APP_FUNC(0x02969030, NamedValue, NamedValue_ConvertTo, (NamedValue * __this, TypeCode__Enum type, MethodInfo * method)); +DO_APP_FUNC(0x029690C0, String *, NamedValue_ToString, (NamedValue * __this, MethodInfo * method)); +DO_APP_FUNC(0x02969180, bool, NamedValue_Equals, (NamedValue * __this, NamedValue other, MethodInfo * method)); +DO_APP_FUNC(0x029692D0, bool, NamedValue_Equals_1, (NamedValue * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02969370, int32_t, NamedValue_GetHashCode, (NamedValue * __this, MethodInfo * method)); DO_APP_FUNC(0x029693E0, bool, NamedValue_op_Equality, (NamedValue left, NamedValue right, MethodInfo * method)); DO_APP_FUNC(0x02969410, bool, NamedValue_op_Inequality, (NamedValue left, NamedValue right, MethodInfo * method)); DO_APP_FUNC(0x02969440, NamedValue__Array *, NamedValue_ParseMultiple, (String * parameterString, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5AF0, NamedValue_ParseMultiple__MethodInfo); DO_APP_FUNC(0x02969670, NamedValue, NamedValue_Parse, (String * str, MethodInfo * method)); -DO_APP_FUNC(0x029696B0, NamedValue, NamedValue_ParseParameter, (String * parameterString, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x02969A10, void, NamedValue_ApplyToObject, (NamedValue__Boxed * __this, Object * instance, MethodInfo * method)); +DO_APP_FUNC(0x029696B0, NamedValue, NamedValue_ParseParameter, (String * parameterString, int32_t * index, MethodInfo * method)); +DO_APP_FUNC(0x02969A10, void, NamedValue_ApplyToObject, (NamedValue * __this, Object * instance, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5A10, NamedValue_ApplyToObject__MethodInfo); DO_APP_FUNC(0x02969D70, int32_t, NumberHelpers_AlignToMultipleOf, (int32_t number, int32_t alignment, MethodInfo * method)); DO_APP_FUNC(0x02969D90, int64_t, NumberHelpers_AlignToMultipleOf_1, (int64_t number, int64_t alignment, MethodInfo * method)); DO_APP_FUNC(0x02969DB0, uint32_t, NumberHelpers_AlignToMultipleOf_2, (uint32_t number, uint32_t alignment, MethodInfo * method)); @@ -56030,54 +65158,63 @@ DO_APP_FUNC(0x003AE050, void, ForDeviceEventObservable_ForDevice_OnCompleted, (F DO_APP_FUNC(0x0296A450, void, ForDeviceEventObservable_ForDevice_OnError, (ForDeviceEventObservable_ForDevice * __this, Exception * error, MethodInfo * method)); DO_APP_FUNC(0x0296A4A0, void, ForDeviceEventObservable_ForDevice_OnNext, (ForDeviceEventObservable_ForDevice * __this, InputEventPtr value, MethodInfo * method)); DO_APP_FUNC(0x0296A5C0, IObservable_1_UnityEngine_InputSystem_LowLevel_InputEventPtr_ *, Observable_ForDevice, (IObservable_1_UnityEngine_InputSystem_LowLevel_InputEventPtr_ * source, InputDevice * device, MethodInfo * method)); -DO_APP_FUNC(0x0296A6A0, void, PredictiveParser_ExpectSingleChar, (PredictiveParser__Boxed * __this, ReadOnlySpan_1_Char_ str, uint16_t c, MethodInfo * method)); -DO_APP_FUNC(0x0296A7C0, int32_t, PredictiveParser_ExpectInt, (PredictiveParser__Boxed * __this, ReadOnlySpan_1_Char_ str, MethodInfo * method)); -DO_APP_FUNC(0x0296A920, ReadOnlySpan_1_Char_, PredictiveParser_ExpectString, (PredictiveParser__Boxed * __this, ReadOnlySpan_1_Char_ str, MethodInfo * method)); -DO_APP_FUNC(0x0296ABC0, bool, PredictiveParser_AcceptSingleChar, (PredictiveParser__Boxed * __this, ReadOnlySpan_1_Char_ str, uint16_t c, MethodInfo * method)); -DO_APP_FUNC(0x0296AC00, bool, PredictiveParser_AcceptString, (PredictiveParser__Boxed * __this, ReadOnlySpan_1_Char_ input, ReadOnlySpan_1_Char_ output, MethodInfo * method)); -DO_APP_FUNC(0x0296AD60, void, PredictiveParser_AcceptInt, (PredictiveParser__Boxed * __this, ReadOnlySpan_1_Char_ str, MethodInfo * method)); -DO_APP_FUNC(0x0296ADC0, uint8_t *, PrimitiveValue_get_valuePtr, (PrimitiveValue__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, TypeCode__Enum, PrimitiveValue_get_type, (PrimitiveValue__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00AFDFA0, bool, PrimitiveValue_get_isEmpty, (PrimitiveValue__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0296ADD0, void, PrimitiveValue__ctor, (PrimitiveValue__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x0296ADE0, void, PrimitiveValue__ctor_1, (PrimitiveValue__Boxed * __this, uint16_t value, MethodInfo * method)); -DO_APP_FUNC(0x0296AE00, void, PrimitiveValue__ctor_2, (PrimitiveValue__Boxed * __this, uint8_t value, MethodInfo * method)); -DO_APP_FUNC(0x0296AE10, void, PrimitiveValue__ctor_3, (PrimitiveValue__Boxed * __this, int8_t value, MethodInfo * method)); -DO_APP_FUNC(0x0296AE20, void, PrimitiveValue__ctor_4, (PrimitiveValue__Boxed * __this, int16_t value, MethodInfo * method)); -DO_APP_FUNC(0x0296AE40, void, PrimitiveValue__ctor_5, (PrimitiveValue__Boxed * __this, uint16_t value, MethodInfo * method)); -DO_APP_FUNC(0x0296AE60, void, PrimitiveValue__ctor_6, (PrimitiveValue__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x0296AE80, void, PrimitiveValue__ctor_7, (PrimitiveValue__Boxed * __this, uint32_t value, MethodInfo * method)); -DO_APP_FUNC(0x0296AEA0, void, PrimitiveValue__ctor_8, (PrimitiveValue__Boxed * __this, int64_t value, MethodInfo * method)); -DO_APP_FUNC(0x0296AEC0, void, PrimitiveValue__ctor_9, (PrimitiveValue__Boxed * __this, uint64_t value, MethodInfo * method)); -DO_APP_FUNC(0x0296AEE0, void, PrimitiveValue__ctor_10, (PrimitiveValue__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x0296AF00, void, PrimitiveValue__ctor_11, (PrimitiveValue__Boxed * __this, double value, MethodInfo * method)); -DO_APP_FUNC(0x0296AF20, PrimitiveValue, PrimitiveValue_ConvertTo, (PrimitiveValue__Boxed * __this, TypeCode__Enum type, MethodInfo * method)); -DO_APP_FUNC(0x0296B260, bool, PrimitiveValue_Equals, (PrimitiveValue__Boxed * __this, PrimitiveValue other, MethodInfo * method)); -DO_APP_FUNC(0x0296B2E0, bool, PrimitiveValue_Equals_1, (PrimitiveValue__Boxed * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5A80, Observable_ForDevice__MethodInfo); +DO_APP_FUNC(0x0296A6A0, void, PredictiveParser_ExpectSingleChar, (PredictiveParser * __this, ReadOnlySpan_1_Char_ str, uint16_t c, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5A40, PredictiveParser_ExpectSingleChar__MethodInfo); +DO_APP_FUNC(0x0296A7C0, int32_t, PredictiveParser_ExpectInt, (PredictiveParser * __this, ReadOnlySpan_1_Char_ str, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5A48, PredictiveParser_ExpectInt__MethodInfo); +DO_APP_FUNC(0x0296A920, ReadOnlySpan_1_Char_, PredictiveParser_ExpectString, (PredictiveParser * __this, ReadOnlySpan_1_Char_ str, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5A60, PredictiveParser_ExpectString__MethodInfo); +DO_APP_FUNC(0x0296ABC0, bool, PredictiveParser_AcceptSingleChar, (PredictiveParser * __this, ReadOnlySpan_1_Char_ str, uint16_t c, MethodInfo * method)); +DO_APP_FUNC(0x0296AC00, bool, PredictiveParser_AcceptString, (PredictiveParser * __this, ReadOnlySpan_1_Char_ input, ReadOnlySpan_1_Char_ * output, MethodInfo * method)); +DO_APP_FUNC(0x0296AD60, void, PredictiveParser_AcceptInt, (PredictiveParser * __this, ReadOnlySpan_1_Char_ str, MethodInfo * method)); +DO_APP_FUNC(0x0296ADC0, uint8_t *, PrimitiveValue_get_valuePtr, (PrimitiveValue * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, TypeCode__Enum, PrimitiveValue_get_type, (PrimitiveValue * __this, MethodInfo * method)); +DO_APP_FUNC(0x00AFDFA0, bool, PrimitiveValue_get_isEmpty, (PrimitiveValue * __this, MethodInfo * method)); +DO_APP_FUNC(0x0296ADD0, void, PrimitiveValue__ctor, (PrimitiveValue * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x0296ADE0, void, PrimitiveValue__ctor_1, (PrimitiveValue * __this, uint16_t value, MethodInfo * method)); +DO_APP_FUNC(0x0296AE00, void, PrimitiveValue__ctor_2, (PrimitiveValue * __this, uint8_t value, MethodInfo * method)); +DO_APP_FUNC(0x0296AE10, void, PrimitiveValue__ctor_3, (PrimitiveValue * __this, int8_t value, MethodInfo * method)); +DO_APP_FUNC(0x0296AE20, void, PrimitiveValue__ctor_4, (PrimitiveValue * __this, int16_t value, MethodInfo * method)); +DO_APP_FUNC(0x0296AE40, void, PrimitiveValue__ctor_5, (PrimitiveValue * __this, uint16_t value, MethodInfo * method)); +DO_APP_FUNC(0x0296AE60, void, PrimitiveValue__ctor_6, (PrimitiveValue * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x0296AE80, void, PrimitiveValue__ctor_7, (PrimitiveValue * __this, uint32_t value, MethodInfo * method)); +DO_APP_FUNC(0x0296AEA0, void, PrimitiveValue__ctor_8, (PrimitiveValue * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC(0x0296AEC0, void, PrimitiveValue__ctor_9, (PrimitiveValue * __this, uint64_t value, MethodInfo * method)); +DO_APP_FUNC(0x0296AEE0, void, PrimitiveValue__ctor_10, (PrimitiveValue * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x0296AF00, void, PrimitiveValue__ctor_11, (PrimitiveValue * __this, double value, MethodInfo * method)); +DO_APP_FUNC(0x0296AF20, PrimitiveValue, PrimitiveValue_ConvertTo, (PrimitiveValue * __this, TypeCode__Enum type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5988, PrimitiveValue_ConvertTo__MethodInfo); +DO_APP_FUNC(0x0296B260, bool, PrimitiveValue_Equals, (PrimitiveValue * __this, PrimitiveValue other, MethodInfo * method)); +DO_APP_FUNC(0x0296B2E0, bool, PrimitiveValue_Equals_1, (PrimitiveValue * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x0296B610, bool, PrimitiveValue_op_Equality, (PrimitiveValue left, PrimitiveValue right, MethodInfo * method)); DO_APP_FUNC(0x0296B690, bool, PrimitiveValue_op_Inequality, (PrimitiveValue left, PrimitiveValue right, MethodInfo * method)); -DO_APP_FUNC(0x0296B710, int32_t, PrimitiveValue_GetHashCode, (PrimitiveValue__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0296B730, String *, PrimitiveValue_ToString, (PrimitiveValue__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0296B710, int32_t, PrimitiveValue_GetHashCode, (PrimitiveValue * __this, MethodInfo * method)); +DO_APP_FUNC(0x0296B730, String *, PrimitiveValue_ToString, (PrimitiveValue * __this, MethodInfo * method)); DO_APP_FUNC(0x0296BB90, PrimitiveValue, PrimitiveValue_FromString, (String * value, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, TypeCode__Enum, PrimitiveValue_GetTypeCode, (PrimitiveValue__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0296C3E0, bool, PrimitiveValue_ToBoolean, (PrimitiveValue__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x0296C4A0, uint8_t, PrimitiveValue_ToByte, (PrimitiveValue__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x0296C4B0, uint16_t, PrimitiveValue_ToChar, (PrimitiveValue__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x0296C4D0, DateTime, PrimitiveValue_ToDateTime, (PrimitiveValue__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x0296C530, Decimal, PrimitiveValue_ToDecimal, (PrimitiveValue__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x0296C570, double, PrimitiveValue_ToDouble, (PrimitiveValue__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x0296C4A0, int16_t, PrimitiveValue_ToInt16, (PrimitiveValue__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x0296C4A0, int32_t, PrimitiveValue_ToInt32, (PrimitiveValue__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x0296C670, int64_t, PrimitiveValue_ToInt64, (PrimitiveValue__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x0296C4A0, int8_t, PrimitiveValue_ToSByte, (PrimitiveValue__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x0296C700, float, PrimitiveValue_ToSingle, (PrimitiveValue__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x0296C720, String *, PrimitiveValue_ToString_1, (PrimitiveValue__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x0296C730, Object *, PrimitiveValue_ToType, (PrimitiveValue__Boxed * __this, Type * conversionType, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x0296C780, uint16_t, PrimitiveValue_ToUInt16, (PrimitiveValue__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x0296C780, uint32_t, PrimitiveValue_ToUInt32, (PrimitiveValue__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x0296C790, uint64_t, PrimitiveValue_ToUInt64, (PrimitiveValue__Boxed * __this, IFormatProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x0296C8A0, Object *, PrimitiveValue_ToObject, (PrimitiveValue__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5960, PrimitiveValue_FromString__MethodInfo); +DO_APP_FUNC(0x00A9EFB0, TypeCode__Enum, PrimitiveValue_GetTypeCode, (PrimitiveValue * __this, MethodInfo * method)); +DO_APP_FUNC(0x0296C3E0, bool, PrimitiveValue_ToBoolean, (PrimitiveValue * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x0296C4A0, uint8_t, PrimitiveValue_ToByte, (PrimitiveValue * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x0296C4B0, uint16_t, PrimitiveValue_ToChar, (PrimitiveValue * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x0296C4D0, DateTime, PrimitiveValue_ToDateTime, (PrimitiveValue * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5970, PrimitiveValue_ToDateTime__MethodInfo); +DO_APP_FUNC(0x0296C530, Decimal, PrimitiveValue_ToDecimal, (PrimitiveValue * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x0296C570, double, PrimitiveValue_ToDouble, (PrimitiveValue * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x0296C4A0, int16_t, PrimitiveValue_ToInt16, (PrimitiveValue * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x0296C4A0, int32_t, PrimitiveValue_ToInt32, (PrimitiveValue * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x0296C670, int64_t, PrimitiveValue_ToInt64, (PrimitiveValue * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x0296C4A0, int8_t, PrimitiveValue_ToSByte, (PrimitiveValue * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x0296C700, float, PrimitiveValue_ToSingle, (PrimitiveValue * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x0296C720, String *, PrimitiveValue_ToString_1, (PrimitiveValue * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x0296C730, Object *, PrimitiveValue_ToType, (PrimitiveValue * __this, Type * conversionType, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5980, PrimitiveValue_ToType__MethodInfo); +DO_APP_FUNC(0x0296C780, uint16_t, PrimitiveValue_ToUInt16, (PrimitiveValue * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x0296C780, uint32_t, PrimitiveValue_ToUInt32, (PrimitiveValue * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x0296C790, uint64_t, PrimitiveValue_ToUInt64, (PrimitiveValue * __this, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x0296C8A0, Object *, PrimitiveValue_ToObject, (PrimitiveValue * __this, MethodInfo * method)); DO_APP_FUNC(0x0296CBA0, PrimitiveValue, PrimitiveValue_FromObject, (Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC59C8, PrimitiveValue_FromObject__MethodInfo); DO_APP_FUNC(0x0296D480, PrimitiveValue, PrimitiveValue_op_Implicit, (bool value, MethodInfo * method)); DO_APP_FUNC(0x0296D4A0, PrimitiveValue, PrimitiveValue_op_Implicit_1, (uint16_t value, MethodInfo * method)); DO_APP_FUNC(0x0296D4C0, PrimitiveValue, PrimitiveValue_op_Implicit_2, (uint8_t value, MethodInfo * method)); @@ -56108,26 +65245,32 @@ DO_APP_FUNC(0x0296DBE0, String *, StringHelpers_Unescape, (String * str, String DO_APP_FUNC(0x0296DD80, bool, StringHelpers_Contains, (String * str, uint16_t ch, MethodInfo * method)); DO_APP_FUNC(0x0296DDB0, bool, StringHelpers_Contains_1, (String * str, String * text, StringComparison__Enum comparison, MethodInfo * method)); DO_APP_FUNC(0x0296DDF0, String *, StringHelpers_GetPlural, (String * str, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC58E8, StringHelpers_GetPlural__MethodInfo); DO_APP_FUNC(0x0296E030, String *, StringHelpers_NicifyMemorySize, (int64_t numBytes, MethodInfo * method)); -DO_APP_FUNC(0x0296E220, bool, StringHelpers_FromNicifiedMemorySize, (String * text, int64_t result, int64_t defaultMultiplier, MethodInfo * method)); +DO_APP_FUNC(0x0296E220, bool, StringHelpers_FromNicifiedMemorySize, (String * text, int64_t * result, int64_t defaultMultiplier, MethodInfo * method)); DO_APP_FUNC(0x0296E7B0, int32_t, StringHelpers_CountOccurrences, (String * str, uint16_t ch, MethodInfo * method)); DO_APP_FUNC(0x0296E840, IEnumerable_1_UnityEngine_InputSystem_Utilities_Substring_ *, StringHelpers_Tokenize, (String * str, MethodInfo * method)); DO_APP_FUNC(0x0296E900, IEnumerable_1_System_String_ *, StringHelpers_Split, (String * str, Func_2_Char_Boolean_ * predicate, MethodInfo * method)); DO_APP_FUNC(0x0296EA30, bool, StringHelpers_CharacterSeparatedListsHaveAtLeastOneCommonElement, (String * firstList, String * secondList, uint16_t separator, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5948, StringHelpers_CharacterSeparatedListsHaveAtLeastOneCommonElement__MethodInfo); DO_APP_FUNC(0x0296EE00, int32_t, StringHelpers_ParseInt, (String * str, int32_t pos, MethodInfo * method)); DO_APP_FUNC(0x0296EE90, bool, StringHelpers_WriteStringToBuffer, (String * text, void * buffer, int32_t bufferSizeInCharacters, MethodInfo * method)); -DO_APP_FUNC(0x0296EEB0, bool, StringHelpers_WriteStringToBuffer_1, (String * text, void * buffer, int32_t bufferSizeInCharacters, uint32_t offset, MethodInfo * method)); +DO_APP_FUNC(0x0296EEB0, bool, StringHelpers_WriteStringToBuffer_1, (String * text, void * buffer, int32_t bufferSizeInCharacters, uint32_t * offset, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5908, StringHelpers_WriteStringToBuffer_1__MethodInfo); DO_APP_FUNC(0x0296F0B0, String *, StringHelpers_ReadStringFromBuffer, (void * buffer, int32_t bufferSize, MethodInfo * method)); -DO_APP_FUNC(0x0296F1C0, String *, StringHelpers_ReadStringFromBuffer_1, (void * buffer, int32_t bufferSize, uint32_t offset, MethodInfo * method)); +DO_APP_FUNC(0x0296F1C0, String *, StringHelpers_ReadStringFromBuffer_1, (void * buffer, int32_t bufferSize, uint32_t * offset, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5918, StringHelpers_ReadStringFromBuffer_1__MethodInfo); DO_APP_FUNC(0x0296F2E0, bool, StringHelpers_IsPrintable, (uint16_t ch, MethodInfo * method)); DO_APP_FUNC(0x0296F360, String *, StringHelpers_WithAllWhitespaceStripped, (String * str, MethodInfo * method)); DO_APP_FUNC(0x0296F470, bool, StringHelpers_InvariantEqualsIgnoreCase, (String * left, String * right, MethodInfo * method)); DO_APP_FUNC(0x0296F570, String *, StringHelpers_ExpandTemplateString, (String * template_1, Func_2_String_String_ * mapFunc, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5840, StringHelpers_ExpandTemplateString__MethodInfo); DO_APP_FUNC(0x0093D960, void, StringHelpers_Tokenize_d_8__ctor, (StringHelpers_Tokenize_d_8 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, StringHelpers_Tokenize_d_8_System_IDisposable_Dispose, (StringHelpers_Tokenize_d_8 * __this, MethodInfo * method)); DO_APP_FUNC(0x0296F790, bool, StringHelpers_Tokenize_d_8_MoveNext, (StringHelpers_Tokenize_d_8 * __this, MethodInfo * method)); DO_APP_FUNC(0x0093E890, Substring, StringHelpers_Tokenize_d_8_System_Collections_Generic_IEnumerator_UnityEngine_InputSystem_Utilities_Substring__get_Current, (StringHelpers_Tokenize_d_8 * __this, MethodInfo * method)); DO_APP_FUNC(0x0296FA30, void, StringHelpers_Tokenize_d_8_System_Collections_IEnumerator_Reset, (StringHelpers_Tokenize_d_8 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5810, StringHelpers_Tokenize_d_8_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x0296FA80, Object *, StringHelpers_Tokenize_d_8_System_Collections_IEnumerator_get_Current, (StringHelpers_Tokenize_d_8 * __this, MethodInfo * method)); DO_APP_FUNC(0x0296FAD0, IEnumerator_1_UnityEngine_InputSystem_Utilities_Substring_ *, StringHelpers_Tokenize_d_8_System_Collections_Generic_IEnumerable_UnityEngine_InputSystem_Utilities_Substring__GetEnumerator, (StringHelpers_Tokenize_d_8 * __this, MethodInfo * method)); DO_APP_FUNC(0x0296FAD0, IEnumerator *, StringHelpers_Tokenize_d_8_System_Collections_IEnumerable_GetEnumerator, (StringHelpers_Tokenize_d_8 * __this, MethodInfo * method)); @@ -56136,23 +65279,24 @@ DO_APP_FUNC(0x003AE050, void, StringHelpers_Split_d_9_System_IDisposable_Dispose DO_APP_FUNC(0x0296FBC0, bool, StringHelpers_Split_d_9_MoveNext, (StringHelpers_Split_d_9 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, String *, StringHelpers_Split_d_9_System_Collections_Generic_IEnumerator_System_String__get_Current, (StringHelpers_Split_d_9 * __this, MethodInfo * method)); DO_APP_FUNC(0x0296FD10, void, StringHelpers_Split_d_9_System_Collections_IEnumerator_Reset, (StringHelpers_Split_d_9 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5878, StringHelpers_Split_d_9_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, StringHelpers_Split_d_9_System_Collections_IEnumerator_get_Current, (StringHelpers_Split_d_9 * __this, MethodInfo * method)); DO_APP_FUNC(0x0296FD60, IEnumerator_1_System_String_ *, StringHelpers_Split_d_9_System_Collections_Generic_IEnumerable_System_String__GetEnumerator, (StringHelpers_Split_d_9 * __this, MethodInfo * method)); DO_APP_FUNC(0x0296FD60, IEnumerator *, StringHelpers_Split_d_9_System_Collections_IEnumerable_GetEnumerator, (StringHelpers_Split_d_9 * __this, MethodInfo * method)); -DO_APP_FUNC(0x0296FEA0, bool, Substring_get_isEmpty, (Substring__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0296FEB0, void, Substring__ctor, (Substring__Boxed * __this, String * str, MethodInfo * method)); -DO_APP_FUNC(0x00FDBDC0, void, Substring__ctor_1, (Substring__Boxed * __this, String * str, int32_t index, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x0296FF20, void, Substring__ctor_2, (Substring__Boxed * __this, String * str, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x0296FF90, bool, Substring_Equals, (Substring__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02970160, bool, Substring_Equals_1, (Substring__Boxed * __this, String * other, MethodInfo * method)); -DO_APP_FUNC(0x02970220, bool, Substring_Equals_2, (Substring__Boxed * __this, Substring other, MethodInfo * method)); -DO_APP_FUNC(0x029702B0, bool, Substring_Equals_3, (Substring__Boxed * __this, InternedString other, MethodInfo * method)); -DO_APP_FUNC(0x02970370, int32_t, Substring_CompareTo, (Substring__Boxed * __this, Substring other, MethodInfo * method)); +DO_APP_FUNC(0x0296FEA0, bool, Substring_get_isEmpty, (Substring * __this, MethodInfo * method)); +DO_APP_FUNC(0x0296FEB0, void, Substring__ctor, (Substring * __this, String * str, MethodInfo * method)); +DO_APP_FUNC(0x00FDBDC0, void, Substring__ctor_1, (Substring * __this, String * str, int32_t index, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x0296FF20, void, Substring__ctor_2, (Substring * __this, String * str, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x0296FF90, bool, Substring_Equals, (Substring * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02970160, bool, Substring_Equals_1, (Substring * __this, String * other, MethodInfo * method)); +DO_APP_FUNC(0x02970220, bool, Substring_Equals_2, (Substring * __this, Substring other, MethodInfo * method)); +DO_APP_FUNC(0x029702B0, bool, Substring_Equals_3, (Substring * __this, InternedString other, MethodInfo * method)); +DO_APP_FUNC(0x02970370, int32_t, Substring_CompareTo, (Substring * __this, Substring other, MethodInfo * method)); DO_APP_FUNC(0x029703F0, int32_t, Substring_Compare, (Substring left, Substring right, StringComparison__Enum comparison, MethodInfo * method)); -DO_APP_FUNC(0x02970440, bool, Substring_StartsWith, (Substring__Boxed * __this, String * str, MethodInfo * method)); -DO_APP_FUNC(0x029704E0, String *, Substring_Substr, (Substring__Boxed * __this, int32_t index, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x02970520, String *, Substring_ToString, (Substring__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02970580, int32_t, Substring_GetHashCode, (Substring__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02970440, bool, Substring_StartsWith, (Substring * __this, String * str, MethodInfo * method)); +DO_APP_FUNC(0x029704E0, String *, Substring_Substr, (Substring * __this, int32_t index, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x02970520, String *, Substring_ToString, (Substring * __this, MethodInfo * method)); +DO_APP_FUNC(0x02970580, int32_t, Substring_GetHashCode, (Substring * __this, MethodInfo * method)); DO_APP_FUNC(0x02970220, bool, Substring_op_Equality, (Substring a, Substring b, MethodInfo * method)); DO_APP_FUNC(0x029705F0, bool, Substring_op_Inequality, (Substring a, Substring b, MethodInfo * method)); DO_APP_FUNC(0x02970680, bool, Substring_op_Equality_1, (Substring a, InternedString b, MethodInfo * method)); @@ -56160,57 +65304,63 @@ DO_APP_FUNC(0x029706A0, bool, Substring_op_Inequality_1, (Substring a, InternedS DO_APP_FUNC(0x029706C0, bool, Substring_op_Equality_2, (InternedString a, Substring b, MethodInfo * method)); DO_APP_FUNC(0x029706F0, bool, Substring_op_Inequality_2, (InternedString a, Substring b, MethodInfo * method)); DO_APP_FUNC(0x02970720, Substring, Substring_op_Implicit, (String * s, MethodInfo * method)); -DO_APP_FUNC(0x00E57F20, int32_t, Substring_get_length, (Substring__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471920, int32_t, Substring_get_index, (Substring__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02970790, uint16_t, Substring_get_Item, (Substring__Boxed * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00E57F20, int32_t, Substring_get_length, (Substring * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471920, int32_t, Substring_get_index, (Substring * __this, MethodInfo * method)); +DO_APP_FUNC(0x02970790, uint16_t, Substring_get_Item, (Substring * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5850, Substring_get_Item__MethodInfo); DO_APP_FUNC(0x02970830, bool, TypeHelpers_IsInt, (TypeCode__Enum type, MethodInfo * method)); DO_APP_FUNC(0x02970880, Type *, TypeHelpers_GetValueType, (MemberInfo_1 * member, MethodInfo * method)); DO_APP_FUNC(0x029709F0, String *, TypeHelpers_GetNiceTypeName, (Type * type, MethodInfo * method)); DO_APP_FUNC(0x02970EB0, Type *, TypeHelpers_GetGenericTypeArgumentFromHierarchy, (Type * type, Type * genericTypeDefinition, int32_t argumentIndex, MethodInfo * method)); -DO_APP_FUNC(0x029712A0, IEnumerable_1_System_String_ *, TypeTable_get_names, (TypeTable__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02971440, IEnumerable_1_UnityEngine_InputSystem_Utilities_InternedString_ *, TypeTable_get_internedNames, (TypeTable__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02971490, void, TypeTable_Initialize, (TypeTable__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02971570, InternedString, TypeTable_FindNameForType, (TypeTable__Boxed * __this, Type * type, MethodInfo * method)); -DO_APP_FUNC(0x029717E0, void, TypeTable_AddTypeRegistration, (TypeTable__Boxed * __this, String * name, Type * type, MethodInfo * method)); -DO_APP_FUNC(0x02971990, Type *, TypeTable_LookupTypeRegistration, (TypeTable__Boxed * __this, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5868, TypeHelpers_GetGenericTypeArgumentFromHierarchy__MethodInfo); +DO_APP_FUNC(0x029712A0, IEnumerable_1_System_String_ *, TypeTable_get_names, (TypeTable * __this, MethodInfo * method)); +DO_APP_FUNC(0x02971440, IEnumerable_1_UnityEngine_InputSystem_Utilities_InternedString_ *, TypeTable_get_internedNames, (TypeTable * __this, MethodInfo * method)); +DO_APP_FUNC(0x02971490, void, TypeTable_Initialize, (TypeTable * __this, MethodInfo * method)); +DO_APP_FUNC(0x02971570, InternedString, TypeTable_FindNameForType, (TypeTable * __this, Type * type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5800, TypeTable_FindNameForType__MethodInfo); +DO_APP_FUNC(0x029717E0, void, TypeTable_AddTypeRegistration, (TypeTable * __this, String * name, Type * type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC57A0, TypeTable_AddTypeRegistration__MethodInfo); +DO_APP_FUNC(0x02971990, Type *, TypeTable_LookupTypeRegistration, (TypeTable * __this, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC56D8, TypeTable_LookupTypeRegistration__MethodInfo); DO_APP_FUNC(0x02971B20, void, TypeTable_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TypeTable_c__ctor, (TypeTable_c * __this, MethodInfo * method)); DO_APP_FUNC(0x02971BD0, String *, TypeTable_c__get_names_b__2_0, (TypeTable_c * __this, InternedString x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5790, TypeTable_c__get_names_b__2_0__MethodInfo); DO_APP_FUNC(0x02971C20, float, AxisComposite_get_midPoint, (AxisComposite * __this, MethodInfo * method)); -DO_APP_FUNC(0x02971C40, float, AxisComposite_ReadValue, (AxisComposite * __this, InputBindingCompositeContext context, MethodInfo * method)); -DO_APP_FUNC(0x02971E00, float, AxisComposite_EvaluateMagnitude, (AxisComposite * __this, InputBindingCompositeContext context, MethodInfo * method)); +DO_APP_FUNC(0x02971C40, float, AxisComposite_ReadValue, (AxisComposite * __this, InputBindingCompositeContext * context, MethodInfo * method)); +DO_APP_FUNC(0x02971E00, float, AxisComposite_EvaluateMagnitude, (AxisComposite * __this, InputBindingCompositeContext * context, MethodInfo * method)); DO_APP_FUNC(0x02971E80, void, AxisComposite__ctor, (AxisComposite * __this, MethodInfo * method)); -DO_APP_FUNC(0x02971EE0, float, ButtonWithOneModifier_ReadValue, (ButtonWithOneModifier * __this, InputBindingCompositeContext context, MethodInfo * method)); -DO_APP_FUNC(0x02971FC0, bool, ButtonWithOneModifier_ModifierIsPressed, (ButtonWithOneModifier * __this, InputBindingCompositeContext context, MethodInfo * method)); -DO_APP_FUNC(0x01D3E190, float, ButtonWithOneModifier_EvaluateMagnitude, (ButtonWithOneModifier * __this, InputBindingCompositeContext context, MethodInfo * method)); -DO_APP_FUNC(0x02972030, void, ButtonWithOneModifier_FinishSetup, (ButtonWithOneModifier * __this, InputBindingCompositeContext context, MethodInfo * method)); +DO_APP_FUNC(0x02971EE0, float, ButtonWithOneModifier_ReadValue, (ButtonWithOneModifier * __this, InputBindingCompositeContext * context, MethodInfo * method)); +DO_APP_FUNC(0x02971FC0, bool, ButtonWithOneModifier_ModifierIsPressed, (ButtonWithOneModifier * __this, InputBindingCompositeContext * context, MethodInfo * method)); +DO_APP_FUNC(0x01D3E190, float, ButtonWithOneModifier_EvaluateMagnitude, (ButtonWithOneModifier * __this, InputBindingCompositeContext * context, MethodInfo * method)); +DO_APP_FUNC(0x02972030, void, ButtonWithOneModifier_FinishSetup, (ButtonWithOneModifier * __this, InputBindingCompositeContext * context, MethodInfo * method)); DO_APP_FUNC(0x029720A0, void, ButtonWithOneModifier__ctor, (ButtonWithOneModifier * __this, MethodInfo * method)); -DO_APP_FUNC(0x029720D0, float, ButtonWithTwoModifiers_ReadValue, (ButtonWithTwoModifiers * __this, InputBindingCompositeContext context, MethodInfo * method)); -DO_APP_FUNC(0x029721F0, bool, ButtonWithTwoModifiers_ModifiersArePressed, (ButtonWithTwoModifiers * __this, InputBindingCompositeContext context, MethodInfo * method)); -DO_APP_FUNC(0x01D3E190, float, ButtonWithTwoModifiers_EvaluateMagnitude, (ButtonWithTwoModifiers * __this, InputBindingCompositeContext context, MethodInfo * method)); -DO_APP_FUNC(0x029722B0, void, ButtonWithTwoModifiers_FinishSetup, (ButtonWithTwoModifiers * __this, InputBindingCompositeContext context, MethodInfo * method)); +DO_APP_FUNC(0x029720D0, float, ButtonWithTwoModifiers_ReadValue, (ButtonWithTwoModifiers * __this, InputBindingCompositeContext * context, MethodInfo * method)); +DO_APP_FUNC(0x029721F0, bool, ButtonWithTwoModifiers_ModifiersArePressed, (ButtonWithTwoModifiers * __this, InputBindingCompositeContext * context, MethodInfo * method)); +DO_APP_FUNC(0x01D3E190, float, ButtonWithTwoModifiers_EvaluateMagnitude, (ButtonWithTwoModifiers * __this, InputBindingCompositeContext * context, MethodInfo * method)); +DO_APP_FUNC(0x029722B0, void, ButtonWithTwoModifiers_FinishSetup, (ButtonWithTwoModifiers * __this, InputBindingCompositeContext * context, MethodInfo * method)); DO_APP_FUNC(0x02972320, void, ButtonWithTwoModifiers__ctor, (ButtonWithTwoModifiers * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, Type *, OneModifierComposite_get_valueType, (OneModifierComposite * __this, MethodInfo * method)); DO_APP_FUNC(0x003CD440, int32_t, OneModifierComposite_get_valueSizeInBytes, (OneModifierComposite * __this, MethodInfo * method)); -DO_APP_FUNC(0x02972350, float, OneModifierComposite_EvaluateMagnitude, (OneModifierComposite * __this, InputBindingCompositeContext context, MethodInfo * method)); -DO_APP_FUNC(0x029723A0, void, OneModifierComposite_ReadValue, (OneModifierComposite * __this, InputBindingCompositeContext context, Void * buffer, int32_t bufferSize, MethodInfo * method)); -DO_APP_FUNC(0x02972410, bool, OneModifierComposite_ModifierIsPressed, (OneModifierComposite * __this, InputBindingCompositeContext context, MethodInfo * method)); -DO_APP_FUNC(0x02972480, void, OneModifierComposite_FinishSetup, (OneModifierComposite * __this, InputBindingCompositeContext context, MethodInfo * method)); -DO_APP_FUNC(0x02972520, Object *, OneModifierComposite_ReadValueAsObject, (OneModifierComposite * __this, InputBindingCompositeContext context, MethodInfo * method)); -DO_APP_FUNC(0x02972570, void, OneModifierComposite_DetermineValueTypeAndSize, (InputBindingCompositeContext context, int32_t part, Type * valueType, int32_t valueSizeInBytes, bool isButton, MethodInfo * method)); +DO_APP_FUNC(0x02972350, float, OneModifierComposite_EvaluateMagnitude, (OneModifierComposite * __this, InputBindingCompositeContext * context, MethodInfo * method)); +DO_APP_FUNC(0x029723A0, void, OneModifierComposite_ReadValue, (OneModifierComposite * __this, InputBindingCompositeContext * context, Void * buffer, int32_t bufferSize, MethodInfo * method)); +DO_APP_FUNC(0x02972410, bool, OneModifierComposite_ModifierIsPressed, (OneModifierComposite * __this, InputBindingCompositeContext * context, MethodInfo * method)); +DO_APP_FUNC(0x02972480, void, OneModifierComposite_FinishSetup, (OneModifierComposite * __this, InputBindingCompositeContext * context, MethodInfo * method)); +DO_APP_FUNC(0x02972520, Object *, OneModifierComposite_ReadValueAsObject, (OneModifierComposite * __this, InputBindingCompositeContext * context, MethodInfo * method)); +DO_APP_FUNC(0x02972570, void, OneModifierComposite_DetermineValueTypeAndSize, (InputBindingCompositeContext * context, int32_t part, Type * * valueType, int32_t * valueSizeInBytes, bool * isButton, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, OneModifierComposite__ctor, (OneModifierComposite * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3B0, Type *, TwoModifiersComposite_get_valueType, (TwoModifiersComposite * __this, MethodInfo * method)); DO_APP_FUNC(0x003CC980, int32_t, TwoModifiersComposite_get_valueSizeInBytes, (TwoModifiersComposite * __this, MethodInfo * method)); -DO_APP_FUNC(0x02972940, float, TwoModifiersComposite_EvaluateMagnitude, (TwoModifiersComposite * __this, InputBindingCompositeContext context, MethodInfo * method)); -DO_APP_FUNC(0x02972990, void, TwoModifiersComposite_ReadValue, (TwoModifiersComposite * __this, InputBindingCompositeContext context, Void * buffer, int32_t bufferSize, MethodInfo * method)); -DO_APP_FUNC(0x02972A00, bool, TwoModifiersComposite_ModifiersArePressed, (TwoModifiersComposite * __this, InputBindingCompositeContext context, MethodInfo * method)); -DO_APP_FUNC(0x02972AC0, void, TwoModifiersComposite_FinishSetup, (TwoModifiersComposite * __this, InputBindingCompositeContext context, MethodInfo * method)); -DO_APP_FUNC(0x02972B60, Object *, TwoModifiersComposite_ReadValueAsObject, (TwoModifiersComposite * __this, InputBindingCompositeContext context, MethodInfo * method)); +DO_APP_FUNC(0x02972940, float, TwoModifiersComposite_EvaluateMagnitude, (TwoModifiersComposite * __this, InputBindingCompositeContext * context, MethodInfo * method)); +DO_APP_FUNC(0x02972990, void, TwoModifiersComposite_ReadValue, (TwoModifiersComposite * __this, InputBindingCompositeContext * context, Void * buffer, int32_t bufferSize, MethodInfo * method)); +DO_APP_FUNC(0x02972A00, bool, TwoModifiersComposite_ModifiersArePressed, (TwoModifiersComposite * __this, InputBindingCompositeContext * context, MethodInfo * method)); +DO_APP_FUNC(0x02972AC0, void, TwoModifiersComposite_FinishSetup, (TwoModifiersComposite * __this, InputBindingCompositeContext * context, MethodInfo * method)); +DO_APP_FUNC(0x02972B60, Object *, TwoModifiersComposite_ReadValueAsObject, (TwoModifiersComposite * __this, InputBindingCompositeContext * context, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TwoModifiersComposite__ctor, (TwoModifiersComposite * __this, MethodInfo * method)); -DO_APP_FUNC(0x02972BC0, Vector2, Vector2Composite_ReadValue, (Vector2Composite * __this, InputBindingCompositeContext context, MethodInfo * method)); -DO_APP_FUNC(0x02972E50, float, Vector2Composite_EvaluateMagnitude, (Vector2Composite * __this, InputBindingCompositeContext context, MethodInfo * method)); +DO_APP_FUNC(0x02972BC0, Vector2, Vector2Composite_ReadValue, (Vector2Composite * __this, InputBindingCompositeContext * context, MethodInfo * method)); +DO_APP_FUNC(0x02972E50, float, Vector2Composite_EvaluateMagnitude, (Vector2Composite * __this, InputBindingCompositeContext * context, MethodInfo * method)); DO_APP_FUNC(0x02972E80, void, Vector2Composite__ctor, (Vector2Composite * __this, MethodInfo * method)); -DO_APP_FUNC(0x02972EC0, Vector3, Vector3Composite_ReadValue, (Vector3Composite * __this, InputBindingCompositeContext context, MethodInfo * method)); +DO_APP_FUNC(0x02972EC0, Vector3, Vector3Composite_ReadValue, (Vector3Composite * __this, InputBindingCompositeContext * context, MethodInfo * method)); DO_APP_FUNC(0x029732E0, void, Vector3Composite__ctor, (Vector3Composite * __this, MethodInfo * method)); DO_APP_FUNC(0x0235EC70, String *, SR_1_GetString, (String * name, Object__Array * args, MethodInfo * method)); DO_APP_FUNC(0x0191DE30, String *, SR_1_GetString_1, (CultureInfo * culture, String * name, Object__Array * args, MethodInfo * method)); @@ -56231,7 +65381,7 @@ DO_APP_FUNC(0x0235F690, int32_t, BinHexDecoder_Decode, (BinHexDecoder * __this, DO_APP_FUNC_METHODINFO(0x03CA5110, BinHexDecoder_Decode__MethodInfo); DO_APP_FUNC(0x0235F8D0, Byte__Array *, BinHexDecoder_Decode_1, (Char__Array * chars, bool allowOddChars, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA5168, BinHexDecoder_Decode_1__MethodInfo); -DO_APP_FUNC(0x0235FB00, void, BinHexDecoder_Decode_2, (uint16_t * pChars, uint16_t * pCharsEndPos, uint8_t * pBytes, uint8_t * pBytesEndPos, bool hasHalfByteCached, uint8_t cachedHalfByte, int32_t charsDecoded, int32_t bytesDecoded, MethodInfo * method)); +DO_APP_FUNC(0x0235FB00, void, BinHexDecoder_Decode_2, (uint16_t * pChars, uint16_t * pCharsEndPos, uint8_t * pBytes, uint8_t * pBytesEndPos, bool * hasHalfByteCached, uint8_t * cachedHalfByte, int32_t * charsDecoded, int32_t * bytesDecoded, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA5148, BinHexDecoder_Decode_2__MethodInfo); DO_APP_FUNC(0x0235FC90, void, BinHexEncoder_Encode, (Byte__Array * buffer, int32_t index, int32_t count, XmlWriter * writer, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA5130, BinHexEncoder_Encode__MethodInfo); @@ -56659,7 +65809,7 @@ DO_APP_FUNC(0x0236FC70, uint16_t *, XmlEncodedRawTextWriter_EncodeSurrogate, (ui DO_APP_FUNC_METHODINFO(0x03CA4E68, XmlEncodedRawTextWriter_EncodeSurrogate__MethodInfo); DO_APP_FUNC(0x0236FDF0, uint16_t *, XmlEncodedRawTextWriter_InvalidXmlChar, (XmlEncodedRawTextWriter * __this, int32_t ch, uint16_t * pDst, bool entitize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA4E58, XmlEncodedRawTextWriter_InvalidXmlChar__MethodInfo); -DO_APP_FUNC(0x0236FFA0, void, XmlEncodedRawTextWriter_EncodeChar, (XmlEncodedRawTextWriter * __this, uint16_t * pSrc, uint16_t * pSrcEnd, uint16_t * pDst, MethodInfo * method)); +DO_APP_FUNC(0x0236FFA0, void, XmlEncodedRawTextWriter_EncodeChar, (XmlEncodedRawTextWriter * __this, uint16_t * * pSrc, uint16_t * pSrcEnd, uint16_t * * pDst, MethodInfo * method)); DO_APP_FUNC(0x02370080, void, XmlEncodedRawTextWriter_ChangeTextContentMark, (XmlEncodedRawTextWriter * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x02370100, void, XmlEncodedRawTextWriter_GrowTextContentMarks, (XmlEncodedRawTextWriter * __this, MethodInfo * method)); DO_APP_FUNC(0x023702B0, uint16_t *, XmlEncodedRawTextWriter_WriteNewLine, (XmlEncodedRawTextWriter * __this, uint16_t * pDst, MethodInfo * method)); @@ -56738,19 +65888,20 @@ DO_APP_FUNC(0x02372B60, void, XmlEventCache_AddEvent_4, (XmlEventCache * __this, DO_APP_FUNC(0x02372BE0, void, XmlEventCache_AddEvent_5, (XmlEventCache * __this, XmlEventCache_XmlEventType__Enum eventType, Object * o, MethodInfo * method)); DO_APP_FUNC(0x02372C90, int32_t, XmlEventCache_NewEvent, (XmlEventCache * __this, MethodInfo * method)); DO_APP_FUNC(0x02372F60, Byte__Array *, XmlEventCache_ToBytes, (Byte__Array * buffer, int32_t index, int32_t count, MethodInfo * method)); -DO_APP_FUNC(0x00959BA0, void, XmlEventCache_XmlEvent_InitEvent, (XmlEventCache_XmlEvent__Boxed * __this, XmlEventCache_XmlEventType__Enum eventType, MethodInfo * method)); -DO_APP_FUNC(0x0114D850, void, XmlEventCache_XmlEvent_InitEvent_1, (XmlEventCache_XmlEvent__Boxed * __this, XmlEventCache_XmlEventType__Enum eventType, String * s1, MethodInfo * method)); -DO_APP_FUNC(0x024483A0, void, XmlEventCache_XmlEvent_InitEvent_2, (XmlEventCache_XmlEvent__Boxed * __this, XmlEventCache_XmlEventType__Enum eventType, String * s1, String * s2, MethodInfo * method)); -DO_APP_FUNC(0x02448450, void, XmlEventCache_XmlEvent_InitEvent_3, (XmlEventCache_XmlEvent__Boxed * __this, XmlEventCache_XmlEventType__Enum eventType, String * s1, String * s2, String * s3, MethodInfo * method)); -DO_APP_FUNC(0x02448550, void, XmlEventCache_XmlEvent_InitEvent_4, (XmlEventCache_XmlEvent__Boxed * __this, XmlEventCache_XmlEventType__Enum eventType, String * s1, String * s2, String * s3, Object * o, MethodInfo * method)); -DO_APP_FUNC(0x024486A0, void, XmlEventCache_XmlEvent_InitEvent_5, (XmlEventCache_XmlEvent__Boxed * __this, XmlEventCache_XmlEventType__Enum eventType, Object * o, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, XmlEventCache_XmlEventType__Enum, XmlEventCache_XmlEvent_get_EventType, (XmlEventCache_XmlEvent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, String *, XmlEventCache_XmlEvent_get_String1, (XmlEventCache_XmlEvent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, String *, XmlEventCache_XmlEvent_get_String2, (XmlEventCache_XmlEvent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3D0, String *, XmlEventCache_XmlEvent_get_String3, (XmlEventCache_XmlEvent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3E0, Object *, XmlEventCache_XmlEvent_get_Object, (XmlEventCache_XmlEvent__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00959BA0, void, XmlEventCache_XmlEvent_InitEvent, (XmlEventCache_XmlEvent * __this, XmlEventCache_XmlEventType__Enum eventType, MethodInfo * method)); +DO_APP_FUNC(0x0114D850, void, XmlEventCache_XmlEvent_InitEvent_1, (XmlEventCache_XmlEvent * __this, XmlEventCache_XmlEventType__Enum eventType, String * s1, MethodInfo * method)); +DO_APP_FUNC(0x024483A0, void, XmlEventCache_XmlEvent_InitEvent_2, (XmlEventCache_XmlEvent * __this, XmlEventCache_XmlEventType__Enum eventType, String * s1, String * s2, MethodInfo * method)); +DO_APP_FUNC(0x02448450, void, XmlEventCache_XmlEvent_InitEvent_3, (XmlEventCache_XmlEvent * __this, XmlEventCache_XmlEventType__Enum eventType, String * s1, String * s2, String * s3, MethodInfo * method)); +DO_APP_FUNC(0x02448550, void, XmlEventCache_XmlEvent_InitEvent_4, (XmlEventCache_XmlEvent * __this, XmlEventCache_XmlEventType__Enum eventType, String * s1, String * s2, String * s3, Object * o, MethodInfo * method)); +DO_APP_FUNC(0x024486A0, void, XmlEventCache_XmlEvent_InitEvent_5, (XmlEventCache_XmlEvent * __this, XmlEventCache_XmlEventType__Enum eventType, Object * o, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, XmlEventCache_XmlEventType__Enum, XmlEventCache_XmlEvent_get_EventType, (XmlEventCache_XmlEvent * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, String *, XmlEventCache_XmlEvent_get_String1, (XmlEventCache_XmlEvent * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, String *, XmlEventCache_XmlEvent_get_String2, (XmlEventCache_XmlEvent * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3D0, String *, XmlEventCache_XmlEvent_get_String3, (XmlEventCache_XmlEvent * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3E0, Object *, XmlEventCache_XmlEvent_get_Object, (XmlEventCache_XmlEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x02448700, void, XmlParserContext__ctor, (XmlParserContext * __this, XmlNameTable * nt, XmlNamespaceManager * nsMgr, String * docTypeName, String * pubId, String * sysId, String * internalSubset, String * baseURI, String * xmlLang, XmlSpace__Enum xmlSpace, MethodInfo * method)); DO_APP_FUNC(0x02448770, void, XmlParserContext__ctor_1, (XmlParserContext * __this, XmlNameTable * nt, XmlNamespaceManager * nsMgr, String * docTypeName, String * pubId, String * sysId, String * internalSubset, String * baseURI, String * xmlLang, XmlSpace__Enum xmlSpace, Encoding * enc, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2560, XmlParserContext__ctor_1__MethodInfo); DO_APP_FUNC(0x003BB3C0, XmlNameTable *, XmlParserContext_get_NameTable, (XmlParserContext * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, XmlNamespaceManager *, XmlParserContext_get_NamespaceManager, (XmlParserContext * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, String *, XmlParserContext_get_DocTypeName, (XmlParserContext * __this, MethodInfo * method)); @@ -56763,14 +65914,21 @@ DO_APP_FUNC(0x003C7400, XmlSpace__Enum, XmlParserContext_get_XmlSpace, (XmlParse DO_APP_FUNC(0x003C7490, Encoding *, XmlParserContext_get_Encoding, (XmlParserContext * __this, MethodInfo * method)); DO_APP_FUNC(0x02448EA0, bool, XmlParserContext_get_HasDtdInfo, (XmlParserContext * __this, MethodInfo * method)); DO_APP_FUNC(0x02448FE0, void, XmlRawWriter_WriteStartDocument, (XmlRawWriter * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2528, XmlRawWriter_WriteStartDocument__MethodInfo); DO_APP_FUNC(0x02449050, void, XmlRawWriter_WriteStartDocument_1, (XmlRawWriter * __this, bool standalone, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2530, XmlRawWriter_WriteStartDocument_1__MethodInfo); DO_APP_FUNC(0x024490C0, void, XmlRawWriter_WriteEndDocument, (XmlRawWriter * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2538, XmlRawWriter_WriteEndDocument__MethodInfo); DO_APP_FUNC(0x003AE050, void, XmlRawWriter_WriteDocType, (XmlRawWriter * __this, String * name, String * pubid, String * sysid, String * subset, MethodInfo * method)); DO_APP_FUNC(0x02449130, void, XmlRawWriter_WriteEndElement, (XmlRawWriter * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2548, XmlRawWriter_WriteEndElement__MethodInfo); DO_APP_FUNC(0x024491A0, void, XmlRawWriter_WriteFullEndElement, (XmlRawWriter * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2508, XmlRawWriter_WriteFullEndElement__MethodInfo); DO_APP_FUNC(0x02449210, void, XmlRawWriter_WriteBase64, (XmlRawWriter * __this, Byte__Array * buffer, int32_t index, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x02449370, String *, XmlRawWriter_LookupPrefix, (XmlRawWriter * __this, String * ns, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2440, XmlRawWriter_LookupPrefix__MethodInfo); DO_APP_FUNC(0x024493E0, WriteState__Enum, XmlRawWriter_get_WriteState, (XmlRawWriter * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2448, XmlRawWriter_get_WriteState__MethodInfo); DO_APP_FUNC(0x023725E0, void, XmlRawWriter_WriteCData, (XmlRawWriter * __this, String * text, MethodInfo * method)); DO_APP_FUNC(0x02449450, void, XmlRawWriter_WriteCharEntity, (XmlRawWriter * __this, uint16_t ch, MethodInfo * method)); DO_APP_FUNC(0x024494E0, void, XmlRawWriter_WriteSurrogateCharEntity, (XmlRawWriter * __this, uint16_t lowChar, uint16_t highChar, MethodInfo * method)); @@ -56779,6 +65937,7 @@ DO_APP_FUNC(0x0236B0B0, void, XmlRawWriter_WriteChars, (XmlRawWriter * __this, C DO_APP_FUNC(0x0236B0B0, void, XmlRawWriter_WriteRaw, (XmlRawWriter * __this, Char__Array * buffer, int32_t index, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x023725E0, void, XmlRawWriter_WriteRaw_1, (XmlRawWriter * __this, String * data, MethodInfo * method)); DO_APP_FUNC(0x02449590, void, XmlRawWriter_WriteValue, (XmlRawWriter * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2420, XmlRawWriter_WriteValue__MethodInfo); DO_APP_FUNC(0x023725E0, void, XmlRawWriter_WriteValue_1, (XmlRawWriter * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x003AE960, void, XmlRawWriter_set_NamespaceResolver, (XmlRawWriter * __this, IXmlNamespaceResolver * value, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, XmlRawWriter_WriteXmlDeclaration, (XmlRawWriter * __this, XmlStandalone__Enum standalone, MethodInfo * method)); @@ -56787,7 +65946,9 @@ DO_APP_FUNC(0x003AE050, void, XmlRawWriter_OnRootElement, (XmlRawWriter * __this DO_APP_FUNC(0x02449690, void, XmlRawWriter_WriteFullEndElement_1, (XmlRawWriter * __this, String * prefix, String * localName, String * ns, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, XmlRawWriter_get_SupportsNamespaceDeclarationInChunks, (XmlRawWriter * __this, MethodInfo * method)); DO_APP_FUNC(0x024496B0, void, XmlRawWriter_WriteStartNamespaceDeclaration, (XmlRawWriter * __this, String * prefix, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2428, XmlRawWriter_WriteStartNamespaceDeclaration__MethodInfo); DO_APP_FUNC(0x02449700, void, XmlRawWriter_WriteEndNamespaceDeclaration, (XmlRawWriter * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2430, XmlRawWriter_WriteEndNamespaceDeclaration__MethodInfo); DO_APP_FUNC(0x02449750, void, XmlRawWriter_WriteEndBase64, (XmlRawWriter * __this, MethodInfo * method)); DO_APP_FUNC(0x02449770, void, XmlRawWriter_Close, (XmlRawWriter * __this, WriteState__Enum currentState, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, XmlRawWriter__ctor, (XmlRawWriter * __this, MethodInfo * method)); @@ -56797,16 +65958,23 @@ DO_APP_FUNC(0x024498A0, bool, XmlReader_get_HasValue, (XmlReader * __this, Metho DO_APP_FUNC(0x0041AF00, bool, XmlReader_get_IsDefault, (XmlReader * __this, MethodInfo * method)); DO_APP_FUNC(0x02449910, IXmlSchemaInfo *, XmlReader_get_SchemaInfo, (XmlReader * __this, MethodInfo * method)); DO_APP_FUNC(0x02449950, String *, XmlReader_ReadContentAsString, (XmlReader * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB24C8, XmlReader_ReadContentAsString__MethodInfo); DO_APP_FUNC(0x02449A10, void, XmlReader_MoveToAttribute, (XmlReader * __this, int32_t i, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB24D8, XmlReader_MoveToAttribute__MethodInfo); DO_APP_FUNC(0x003AE050, void, XmlReader_Close, (XmlReader * __this, MethodInfo * method)); DO_APP_FUNC(0x02449AF0, void, XmlReader_Skip, (XmlReader * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, XmlReader_get_CanResolveEntity, (XmlReader * __this, MethodInfo * method)); DO_APP_FUNC(0x02449C00, String *, XmlReader_ReadString, (XmlReader * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2498, XmlReader_ReadString__MethodInfo); DO_APP_FUNC(0x02449E60, XmlNodeType__Enum, XmlReader_MoveToContent, (XmlReader * __this, MethodInfo * method)); DO_APP_FUNC(0x02449F00, void, XmlReader_ReadStartElement, (XmlReader * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB24A8, XmlReader_ReadStartElement__MethodInfo); DO_APP_FUNC(0x0244A010, void, XmlReader_ReadStartElement_1, (XmlReader * __this, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2478, XmlReader_ReadStartElement_1__MethodInfo); DO_APP_FUNC(0x0244A1F0, String *, XmlReader_ReadElementString, (XmlReader * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2450, XmlReader_ReadElementString__MethodInfo); DO_APP_FUNC(0x0244A4D0, void, XmlReader_ReadEndElement, (XmlReader * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2408, XmlReader_ReadEndElement__MethodInfo); DO_APP_FUNC(0x0244A5E0, bool, XmlReader_IsStartElement, (XmlReader * __this, MethodInfo * method)); DO_APP_FUNC(0x0244A610, bool, XmlReader_IsStartElement_1, (XmlReader * __this, String * localname, String * ns, MethodInfo * method)); DO_APP_FUNC(0x0244A710, void, XmlReader_Dispose, (XmlReader * __this, MethodInfo * method)); @@ -56827,6 +65995,7 @@ DO_APP_FUNC(0x0244B260, XmlReader *, XmlReader_Create_1, (TextReader * input, Me DO_APP_FUNC(0x0244B2E0, XmlReader *, XmlReader_Create_2, (TextReader * input, XmlReaderSettings * settings, MethodInfo * method)); DO_APP_FUNC(0x0244B4C0, XmlReader *, XmlReader_Create_3, (TextReader * input, XmlReaderSettings * settings, String * baseUri, MethodInfo * method)); DO_APP_FUNC(0x0244B650, int32_t, XmlReader_CalcBufferSize, (Stream * input, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2410, XmlReader_CalcBufferSize__MethodInfo); DO_APP_FUNC(0x003AE050, void, XmlReader__ctor, (XmlReader * __this, MethodInfo * method)); DO_APP_FUNC(0x0244B6F0, void, XmlReader__cctor, (MethodInfo * method)); DO_APP_FUNC(0x0244B760, void, XmlReaderSettings__ctor, (XmlReaderSettings * __this, MethodInfo * method)); @@ -56845,12 +66014,15 @@ DO_APP_FUNC(0x0098C870, int32_t, XmlReaderSettings_get_LinePositionOffset, (XmlR DO_APP_FUNC(0x0244BB00, void, XmlReaderSettings_set_LinePositionOffset, (XmlReaderSettings * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x003C7300, ConformanceLevel__Enum, XmlReaderSettings_get_ConformanceLevel, (XmlReaderSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x0244BB50, void, XmlReaderSettings_set_ConformanceLevel, (XmlReaderSettings * __this, ConformanceLevel__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB23F8, XmlReaderSettings_set_ConformanceLevel__MethodInfo); DO_APP_FUNC(0x005C47D0, bool, XmlReaderSettings_get_CheckCharacters, (XmlReaderSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x0244BC00, void, XmlReaderSettings_set_CheckCharacters, (XmlReaderSettings * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x003C7320, int64_t, XmlReaderSettings_get_MaxCharactersInDocument, (XmlReaderSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x0244BC60, void, XmlReaderSettings_set_MaxCharactersInDocument, (XmlReaderSettings * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB23D8, XmlReaderSettings_set_MaxCharactersInDocument__MethodInfo); DO_APP_FUNC(0x003C7390, int64_t, XmlReaderSettings_get_MaxCharactersFromEntities, (XmlReaderSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x0244BD10, void, XmlReaderSettings_set_MaxCharactersFromEntities, (XmlReaderSettings * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB23E0, XmlReaderSettings_set_MaxCharactersFromEntities__MethodInfo); DO_APP_FUNC(0x00436BD0, bool, XmlReaderSettings_get_IgnoreWhitespace, (XmlReaderSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x0244BDC0, void, XmlReaderSettings_set_IgnoreWhitespace, (XmlReaderSettings * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x00432770, bool, XmlReaderSettings_get_IgnoreProcessingInstructions, (XmlReaderSettings * __this, MethodInfo * method)); @@ -56859,20 +66031,26 @@ DO_APP_FUNC(0x005C2E80, bool, XmlReaderSettings_get_IgnoreComments, (XmlReaderSe DO_APP_FUNC(0x0244BE80, void, XmlReaderSettings_set_IgnoreComments, (XmlReaderSettings * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x00A113B0, DtdProcessing__Enum, XmlReaderSettings_get_DtdProcessing, (XmlReaderSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x0244BEE0, void, XmlReaderSettings_set_DtdProcessing, (XmlReaderSettings * __this, DtdProcessing__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB22E8, XmlReaderSettings_set_DtdProcessing__MethodInfo); DO_APP_FUNC(0x00C3A440, bool, XmlReaderSettings_get_CloseInput, (XmlReaderSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x0244BF90, void, XmlReaderSettings_set_CloseInput, (XmlReaderSettings * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x010C8F60, ValidationType__Enum, XmlReaderSettings_get_ValidationType, (XmlReaderSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x0244BFF0, void, XmlReaderSettings_set_ValidationType, (XmlReaderSettings * __this, ValidationType__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB22E0, XmlReaderSettings_set_ValidationType__MethodInfo); DO_APP_FUNC(0x01D31FA0, XmlSchemaValidationFlags__Enum, XmlReaderSettings_get_ValidationFlags, (XmlReaderSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x0244C0A0, void, XmlReaderSettings_set_ValidationFlags, (XmlReaderSettings * __this, XmlSchemaValidationFlags__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB23A0, XmlReaderSettings_set_ValidationFlags__MethodInfo); DO_APP_FUNC(0x0244C150, XmlSchemaSet *, XmlReaderSettings_get_Schemas, (XmlReaderSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x0244C210, void, XmlReaderSettings_set_Schemas, (XmlReaderSettings * __this, XmlSchemaSet * value, MethodInfo * method)); DO_APP_FUNC(0x0244C2B0, XmlReaderSettings *, XmlReaderSettings_Clone, (XmlReaderSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x003C91B0, ValidationEventHandler *, XmlReaderSettings_GetEventHandler, (XmlReaderSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x0244C310, XmlReader *, XmlReaderSettings_CreateReader, (XmlReaderSettings * __this, Stream * input, Uri * baseUri, String * baseUriString, XmlParserContext * inputContext, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2340, XmlReaderSettings_CreateReader__MethodInfo); DO_APP_FUNC(0x0244C4C0, XmlReader *, XmlReaderSettings_CreateReader_1, (XmlReaderSettings * __this, TextReader * input, String * baseUriString, XmlParserContext * inputContext, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2260, XmlReaderSettings_CreateReader_1__MethodInfo); DO_APP_FUNC(0x01C6C900, void, XmlReaderSettings_set_ReadOnly, (XmlReaderSettings * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x0244C610, void, XmlReaderSettings_CheckReadOnly, (XmlReaderSettings * __this, String * propertyName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2278, XmlReaderSettings_CheckReadOnly__MethodInfo); DO_APP_FUNC(0x0244B760, void, XmlReaderSettings_Initialize, (XmlReaderSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x0244C6D0, void, XmlReaderSettings_Initialize_1, (XmlReaderSettings * __this, XmlResolver * resolver, MethodInfo * method)); DO_APP_FUNC(0x0244C870, XmlResolver *, XmlReaderSettings_CreateDefaultResolver, (MethodInfo * method)); @@ -56885,12 +66063,19 @@ DO_APP_FUNC(0x0244CC30, void, XmlTextEncoder_StartAttribute, (XmlTextEncoder * _ DO_APP_FUNC(0x0244CD10, void, XmlTextEncoder_EndAttribute, (XmlTextEncoder * __this, MethodInfo * method)); DO_APP_FUNC(0x0244CD50, String *, XmlTextEncoder_get_AttributeValue, (XmlTextEncoder * __this, MethodInfo * method)); DO_APP_FUNC(0x0244CDC0, void, XmlTextEncoder_WriteSurrogateChar, (XmlTextEncoder * __this, uint16_t lowChar, uint16_t highChar, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB22B8, XmlTextEncoder_WriteSurrogateChar__MethodInfo); DO_APP_FUNC(0x0244CE80, void, XmlTextEncoder_Write, (XmlTextEncoder * __this, Char__Array * array, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB22C0, XmlTextEncoder_Write__MethodInfo); DO_APP_FUNC(0x0244D3F0, void, XmlTextEncoder_WriteSurrogateCharEntity, (XmlTextEncoder * __this, uint16_t lowChar, uint16_t highChar, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2280, XmlTextEncoder_WriteSurrogateCharEntity__MethodInfo); DO_APP_FUNC(0x0244D630, void, XmlTextEncoder_Write_1, (XmlTextEncoder * __this, String * text, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2290, XmlTextEncoder_Write_1__MethodInfo); DO_APP_FUNC(0x0244DB90, void, XmlTextEncoder_WriteRawWithSurrogateChecking, (XmlTextEncoder * __this, String * text, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB21B0, XmlTextEncoder_WriteRawWithSurrogateChecking__MethodInfo); DO_APP_FUNC(0x0244DDE0, void, XmlTextEncoder_WriteRaw, (XmlTextEncoder * __this, Char__Array * array, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB21B8, XmlTextEncoder_WriteRaw__MethodInfo); DO_APP_FUNC(0x0244DFC0, void, XmlTextEncoder_WriteCharEntity, (XmlTextEncoder * __this, uint16_t ch, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB21A8, XmlTextEncoder_WriteCharEntity__MethodInfo); DO_APP_FUNC(0x0244E1B0, void, XmlTextEncoder_WriteEntityRef, (XmlTextEncoder * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x0244E2B0, void, XmlTextEncoder_WriteStringFragment, (XmlTextEncoder * __this, String * str, int32_t offset, int32_t count, Char__Array * helperBuffer, MethodInfo * method)); DO_APP_FUNC(0x0244E360, void, XmlTextEncoder_WriteCharEntityImpl, (XmlTextEncoder * __this, uint16_t ch, MethodInfo * method)); @@ -57036,8 +66221,8 @@ DO_APP_FUNC(0x023848B0, void, XmlTextReaderImpl_DtdParserProxy_ParsePI, (XmlText DO_APP_FUNC(0x02384900, void, XmlTextReaderImpl_DtdParserProxy_ParseComment, (XmlTextReaderImpl * __this, StringBuilder * sb, MethodInfo * method)); DO_APP_FUNC(0x02385140, bool, XmlTextReaderImpl_get_IsResolverNull, (XmlTextReaderImpl * __this, MethodInfo * method)); DO_APP_FUNC(0x02385150, XmlResolver *, XmlTextReaderImpl_GetTempResolver, (XmlTextReaderImpl * __this, MethodInfo * method)); -DO_APP_FUNC(0x023851B0, bool, XmlTextReaderImpl_DtdParserProxy_PushEntity, (XmlTextReaderImpl * __this, IDtdEntityInfo * entity, int32_t entityId, MethodInfo * method)); -DO_APP_FUNC(0x02385270, bool, XmlTextReaderImpl_DtdParserProxy_PopEntity, (XmlTextReaderImpl * __this, IDtdEntityInfo * oldEntity, int32_t newEntityId, MethodInfo * method)); +DO_APP_FUNC(0x023851B0, bool, XmlTextReaderImpl_DtdParserProxy_PushEntity, (XmlTextReaderImpl * __this, IDtdEntityInfo * entity, int32_t * entityId, MethodInfo * method)); +DO_APP_FUNC(0x02385270, bool, XmlTextReaderImpl_DtdParserProxy_PopEntity, (XmlTextReaderImpl * __this, IDtdEntityInfo * * oldEntity, int32_t * newEntityId, MethodInfo * method)); DO_APP_FUNC(0x02385360, bool, XmlTextReaderImpl_DtdParserProxy_PushExternalSubset, (XmlTextReaderImpl * __this, String * systemId, String * publicId, MethodInfo * method)); DO_APP_FUNC(0x02385500, void, XmlTextReaderImpl_DtdParserProxy_PushInternalDtd, (XmlTextReaderImpl * __this, String * baseUri, String * internalDtd, MethodInfo * method)); DO_APP_FUNC(0x023855E0, void, XmlTextReaderImpl_DtdParserProxy_Throw, (XmlTextReaderImpl * __this, Exception * e, MethodInfo * method)); @@ -57086,7 +66271,7 @@ DO_APP_FUNC(0x02388900, void, XmlTextReaderImpl_UnDecodeChars, (XmlTextReaderImp DO_APP_FUNC(0x023889B0, void, XmlTextReaderImpl_SwitchEncodingToUTF8, (XmlTextReaderImpl * __this, MethodInfo * method)); DO_APP_FUNC(0x02388A50, int32_t, XmlTextReaderImpl_ReadData, (XmlTextReaderImpl * __this, MethodInfo * method)); DO_APP_FUNC(0x02388FF0, int32_t, XmlTextReaderImpl_GetChars, (XmlTextReaderImpl * __this, int32_t maxCharsCount, MethodInfo * method)); -DO_APP_FUNC(0x023890D0, void, XmlTextReaderImpl_InvalidCharRecovery, (XmlTextReaderImpl * __this, int32_t bytesCount, int32_t charsCount, MethodInfo * method)); +DO_APP_FUNC(0x023890D0, void, XmlTextReaderImpl_InvalidCharRecovery, (XmlTextReaderImpl * __this, int32_t * bytesCount, int32_t * charsCount, MethodInfo * method)); DO_APP_FUNC(0x02389220, void, XmlTextReaderImpl_Close_1, (XmlTextReaderImpl * __this, bool closeInput, MethodInfo * method)); DO_APP_FUNC(0x02389580, void, XmlTextReaderImpl_ShiftBuffer, (XmlTextReaderImpl * __this, int32_t sourcePos, int32_t destPos, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x023895B0, bool, XmlTextReaderImpl_ParseXmlDeclaration, (XmlTextReaderImpl * __this, bool isTextDecl, MethodInfo * method)); @@ -57105,9 +66290,9 @@ DO_APP_FUNC(0x0238D5C0, void, XmlTextReaderImpl_OnDefaultNamespaceDecl, (XmlText DO_APP_FUNC(0x0238D7B0, void, XmlTextReaderImpl_OnNamespaceDecl, (XmlTextReaderImpl * __this, XmlTextReaderImpl_NodeData * attr, MethodInfo * method)); DO_APP_FUNC(0x0238D8A0, void, XmlTextReaderImpl_OnXmlReservedAttribute, (XmlTextReaderImpl * __this, XmlTextReaderImpl_NodeData * attr, MethodInfo * method)); DO_APP_FUNC(0x0238DBC0, void, XmlTextReaderImpl_ParseAttributeValueSlow, (XmlTextReaderImpl * __this, int32_t curPos, uint16_t quoteChar, XmlTextReaderImpl_NodeData * attr, MethodInfo * method)); -DO_APP_FUNC(0x0238EF10, void, XmlTextReaderImpl_AddAttributeChunkToList, (XmlTextReaderImpl * __this, XmlTextReaderImpl_NodeData * attr, XmlTextReaderImpl_NodeData * chunk, XmlTextReaderImpl_NodeData * lastChunk, MethodInfo * method)); +DO_APP_FUNC(0x0238EF10, void, XmlTextReaderImpl_AddAttributeChunkToList, (XmlTextReaderImpl * __this, XmlTextReaderImpl_NodeData * attr, XmlTextReaderImpl_NodeData * chunk, XmlTextReaderImpl_NodeData * * lastChunk, MethodInfo * method)); DO_APP_FUNC(0x0238F080, bool, XmlTextReaderImpl_ParseText, (XmlTextReaderImpl * __this, MethodInfo * method)); -DO_APP_FUNC(0x0238F4F0, bool, XmlTextReaderImpl_ParseText_1, (XmlTextReaderImpl * __this, int32_t startPos, int32_t endPos, int32_t outOrChars, MethodInfo * method)); +DO_APP_FUNC(0x0238F4F0, bool, XmlTextReaderImpl_ParseText_1, (XmlTextReaderImpl * __this, int32_t * startPos, int32_t * endPos, int32_t * outOrChars, MethodInfo * method)); DO_APP_FUNC(0x0238FBE0, void, XmlTextReaderImpl_FinishPartialValue, (XmlTextReaderImpl * __this, MethodInfo * method)); DO_APP_FUNC(0x02390170, void, XmlTextReaderImpl_FinishOtherValueIterator, (XmlTextReaderImpl * __this, MethodInfo * method)); DO_APP_FUNC(0x023902C0, void, XmlTextReaderImpl_SkipPartialTextValue, (XmlTextReaderImpl * __this, MethodInfo * method)); @@ -57116,7 +66301,7 @@ DO_APP_FUNC(0x02390360, void, XmlTextReaderImpl_FinishReadContentAsBinary, (XmlT DO_APP_FUNC(0x023904B0, void, XmlTextReaderImpl_FinishReadElementContentAsBinary, (XmlTextReaderImpl * __this, MethodInfo * method)); DO_APP_FUNC(0x02390580, bool, XmlTextReaderImpl_ParseRootLevelWhitespace, (XmlTextReaderImpl * __this, MethodInfo * method)); DO_APP_FUNC(0x023907B0, void, XmlTextReaderImpl_ParseEntityReference, (XmlTextReaderImpl * __this, MethodInfo * method)); -DO_APP_FUNC(0x02390860, XmlTextReaderImpl_EntityType__Enum, XmlTextReaderImpl_HandleEntityReference, (XmlTextReaderImpl * __this, bool isInAttributeValue, XmlTextReaderImpl_EntityExpandType__Enum expandType, int32_t charRefEndPos, MethodInfo * method)); +DO_APP_FUNC(0x02390860, XmlTextReaderImpl_EntityType__Enum, XmlTextReaderImpl_HandleEntityReference, (XmlTextReaderImpl * __this, bool isInAttributeValue, XmlTextReaderImpl_EntityExpandType__Enum expandType, int32_t * charRefEndPos, MethodInfo * method)); DO_APP_FUNC(0x02390AF0, XmlTextReaderImpl_EntityType__Enum, XmlTextReaderImpl_HandleGeneralEntityReference, (XmlTextReaderImpl * __this, String * name, bool isInAttributeValue, bool pushFakeEntityIfNullResolver, int32_t entityStartLinePos, MethodInfo * method)); DO_APP_FUNC(0x02390F50, bool, XmlTextReaderImpl_get_InEntity, (XmlTextReaderImpl * __this, MethodInfo * method)); DO_APP_FUNC(0x02390F60, bool, XmlTextReaderImpl_HandleEntityEnd, (XmlTextReaderImpl * __this, bool checkEntityNesting, MethodInfo * method)); @@ -57124,27 +66309,27 @@ DO_APP_FUNC(0x023911F0, void, XmlTextReaderImpl_SetupEndEntityNodeInContent, (Xm DO_APP_FUNC(0x02391440, void, XmlTextReaderImpl_SetupEndEntityNodeInAttribute, (XmlTextReaderImpl * __this, MethodInfo * method)); DO_APP_FUNC(0x02391510, bool, XmlTextReaderImpl_ParsePI, (XmlTextReaderImpl * __this, MethodInfo * method)); DO_APP_FUNC(0x02391520, bool, XmlTextReaderImpl_ParsePI_1, (XmlTextReaderImpl * __this, StringBuilder * piInDtdStringBuilder, MethodInfo * method)); -DO_APP_FUNC(0x02391D80, bool, XmlTextReaderImpl_ParsePIValue, (XmlTextReaderImpl * __this, int32_t outStartPos, int32_t outEndPos, MethodInfo * method)); +DO_APP_FUNC(0x02391D80, bool, XmlTextReaderImpl_ParsePIValue, (XmlTextReaderImpl * __this, int32_t * outStartPos, int32_t * outEndPos, MethodInfo * method)); DO_APP_FUNC(0x02392100, bool, XmlTextReaderImpl_ParseComment, (XmlTextReaderImpl * __this, MethodInfo * method)); DO_APP_FUNC(0x023926E0, void, XmlTextReaderImpl_ParseCData, (XmlTextReaderImpl * __this, MethodInfo * method)); DO_APP_FUNC(0x023926F0, void, XmlTextReaderImpl_ParseCDataOrComment, (XmlTextReaderImpl * __this, XmlNodeType__Enum type, MethodInfo * method)); -DO_APP_FUNC(0x02392C50, bool, XmlTextReaderImpl_ParseCDataOrComment_1, (XmlTextReaderImpl * __this, XmlNodeType__Enum type, int32_t outStartPos, int32_t outEndPos, MethodInfo * method)); +DO_APP_FUNC(0x02392C50, bool, XmlTextReaderImpl_ParseCDataOrComment_1, (XmlTextReaderImpl * __this, XmlNodeType__Enum type, int32_t * outStartPos, int32_t * outEndPos, MethodInfo * method)); DO_APP_FUNC(0x02393070, bool, XmlTextReaderImpl_ParseDoctypeDecl, (XmlTextReaderImpl * __this, MethodInfo * method)); DO_APP_FUNC(0x023933C0, void, XmlTextReaderImpl_ParseDtd, (XmlTextReaderImpl * __this, MethodInfo * method)); DO_APP_FUNC(0x02393750, void, XmlTextReaderImpl_SkipDtd, (XmlTextReaderImpl * __this, MethodInfo * method)); DO_APP_FUNC(0x02394150, void, XmlTextReaderImpl_SkipPublicOrSystemIdLiteral, (XmlTextReaderImpl * __this, MethodInfo * method)); DO_APP_FUNC(0x023941F0, void, XmlTextReaderImpl_SkipUntil, (XmlTextReaderImpl * __this, uint16_t stopChar, bool recognizeLiterals, MethodInfo * method)); DO_APP_FUNC(0x02394690, int32_t, XmlTextReaderImpl_EatWhitespaces, (XmlTextReaderImpl * __this, StringBuilder * sb, MethodInfo * method)); -DO_APP_FUNC(0x023948D0, int32_t, XmlTextReaderImpl_ParseCharRefInline, (XmlTextReaderImpl * __this, int32_t startPos, int32_t charCount, XmlTextReaderImpl_EntityType__Enum entityType, MethodInfo * method)); -DO_APP_FUNC(0x02394950, int32_t, XmlTextReaderImpl_ParseNumericCharRef, (XmlTextReaderImpl * __this, bool expand, StringBuilder * internalSubsetBuilder, XmlTextReaderImpl_EntityType__Enum entityType, MethodInfo * method)); -DO_APP_FUNC(0x02394A20, int32_t, XmlTextReaderImpl_ParseNumericCharRefInline, (XmlTextReaderImpl * __this, int32_t startPos, bool expand, StringBuilder * internalSubsetBuilder, int32_t charCount, XmlTextReaderImpl_EntityType__Enum entityType, MethodInfo * method)); +DO_APP_FUNC(0x023948D0, int32_t, XmlTextReaderImpl_ParseCharRefInline, (XmlTextReaderImpl * __this, int32_t startPos, int32_t * charCount, XmlTextReaderImpl_EntityType__Enum * entityType, MethodInfo * method)); +DO_APP_FUNC(0x02394950, int32_t, XmlTextReaderImpl_ParseNumericCharRef, (XmlTextReaderImpl * __this, bool expand, StringBuilder * internalSubsetBuilder, XmlTextReaderImpl_EntityType__Enum * entityType, MethodInfo * method)); +DO_APP_FUNC(0x02394A20, int32_t, XmlTextReaderImpl_ParseNumericCharRefInline, (XmlTextReaderImpl * __this, int32_t startPos, bool expand, StringBuilder * internalSubsetBuilder, int32_t * charCount, XmlTextReaderImpl_EntityType__Enum * entityType, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7128, XmlTextReaderImpl_ParseNumericCharRefInline__MethodInfo); DO_APP_FUNC(0x02395210, int32_t, XmlTextReaderImpl_ParseNamedCharRef, (XmlTextReaderImpl * __this, bool expand, StringBuilder * internalSubsetBuilder, MethodInfo * method)); DO_APP_FUNC(0x02395550, int32_t, XmlTextReaderImpl_ParseNamedCharRefInline, (XmlTextReaderImpl * __this, int32_t startPos, bool expand, StringBuilder * internalSubsetBuilder, MethodInfo * method)); DO_APP_FUNC(0x02395860, int32_t, XmlTextReaderImpl_ParseName, (XmlTextReaderImpl * __this, MethodInfo * method)); -DO_APP_FUNC(0x02395890, int32_t, XmlTextReaderImpl_ParseQName, (XmlTextReaderImpl * __this, int32_t colonPos, MethodInfo * method)); -DO_APP_FUNC(0x023958B0, int32_t, XmlTextReaderImpl_ParseQName_1, (XmlTextReaderImpl * __this, bool isQName, int32_t startOffset, int32_t colonPos, MethodInfo * method)); -DO_APP_FUNC(0x02395B60, bool, XmlTextReaderImpl_ReadDataInName, (XmlTextReaderImpl * __this, int32_t pos, MethodInfo * method)); +DO_APP_FUNC(0x02395890, int32_t, XmlTextReaderImpl_ParseQName, (XmlTextReaderImpl * __this, int32_t * colonPos, MethodInfo * method)); +DO_APP_FUNC(0x023958B0, int32_t, XmlTextReaderImpl_ParseQName_1, (XmlTextReaderImpl * __this, bool isQName, int32_t startOffset, int32_t * colonPos, MethodInfo * method)); +DO_APP_FUNC(0x02395B60, bool, XmlTextReaderImpl_ReadDataInName, (XmlTextReaderImpl * __this, int32_t * pos, MethodInfo * method)); DO_APP_FUNC(0x02395BB0, String *, XmlTextReaderImpl_ParseEntityName, (XmlTextReaderImpl * __this, MethodInfo * method)); DO_APP_FUNC(0x02395CB0, XmlTextReaderImpl_NodeData *, XmlTextReaderImpl_AddNode, (XmlTextReaderImpl * __this, int32_t nodeIndex, int32_t nodeDepth, MethodInfo * method)); DO_APP_FUNC(0x02395D00, XmlTextReaderImpl_NodeData *, XmlTextReaderImpl_AllocNode, (XmlTextReaderImpl * __this, int32_t nodeIndex, int32_t nodeDepth, MethodInfo * method)); @@ -57211,14 +66396,14 @@ DO_APP_FUNC(0x0239B2B0, void, XmlTextReaderImpl_set_DisableUndeclaredEntityCheck DO_APP_FUNC(0x0239B2C0, bool, XmlTextReaderImpl_UriEqual, (XmlTextReaderImpl * __this, Uri * uri1, String * uri1Str, String * uri2Str, XmlResolver * resolver, MethodInfo * method)); DO_APP_FUNC(0x0239B3D0, void, XmlTextReaderImpl_RegisterConsumedCharacters, (XmlTextReaderImpl * __this, int64_t characters, bool inEntityReference, MethodInfo * method)); DO_APP_FUNC(0x0239B510, String *, XmlTextReaderImpl_StripSpaces, (String * value, MethodInfo * method)); -DO_APP_FUNC(0x0239B760, void, XmlTextReaderImpl_StripSpaces_1, (Char__Array * value, int32_t index, int32_t len, MethodInfo * method)); +DO_APP_FUNC(0x0239B760, void, XmlTextReaderImpl_StripSpaces_1, (Char__Array * value, int32_t index, int32_t * len, MethodInfo * method)); DO_APP_FUNC(0x0239B880, void, XmlTextReaderImpl_BlockCopyChars, (Char__Array * src, int32_t srcOffset, Char__Array * dst, int32_t dstOffset, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x0239B8A0, void, XmlTextReaderImpl_BlockCopy, (Byte__Array * src, int32_t srcOffset, Byte__Array * dst, int32_t dstOffset, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x01C57410, void, XmlTextReaderImpl_LaterInitParam__ctor, (XmlTextReaderImpl_LaterInitParam * __this, MethodInfo * method)); -DO_APP_FUNC(0x0244F200, void, XmlTextReaderImpl_ParsingState_Clear, (XmlTextReaderImpl_ParsingState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0244F4F0, void, XmlTextReaderImpl_ParsingState_Close, (XmlTextReaderImpl_ParsingState__Boxed * __this, bool closeInput, MethodInfo * method)); -DO_APP_FUNC(0x003C7400, int32_t, XmlTextReaderImpl_ParsingState_get_LineNo, (XmlTextReaderImpl_ParsingState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0244F550, int32_t, XmlTextReaderImpl_ParsingState_get_LinePos, (XmlTextReaderImpl_ParsingState__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0244F200, void, XmlTextReaderImpl_ParsingState_Clear, (XmlTextReaderImpl_ParsingState * __this, MethodInfo * method)); +DO_APP_FUNC(0x0244F4F0, void, XmlTextReaderImpl_ParsingState_Close, (XmlTextReaderImpl_ParsingState * __this, bool closeInput, MethodInfo * method)); +DO_APP_FUNC(0x003C7400, int32_t, XmlTextReaderImpl_ParsingState_get_LineNo, (XmlTextReaderImpl_ParsingState * __this, MethodInfo * method)); +DO_APP_FUNC(0x0244F550, int32_t, XmlTextReaderImpl_ParsingState_get_LinePos, (XmlTextReaderImpl_ParsingState * __this, MethodInfo * method)); DO_APP_FUNC(0x0244F560, void, XmlTextReaderImpl_XmlContext__ctor, (XmlTextReaderImpl_XmlContext * __this, MethodInfo * method)); DO_APP_FUNC(0x0244F6B0, void, XmlTextReaderImpl_XmlContext__ctor_1, (XmlTextReaderImpl_XmlContext * __this, XmlTextReaderImpl_XmlContext * previousContext, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, XmlTextReaderImpl_NoNamespaceManager__ctor, (XmlTextReaderImpl_NoNamespaceManager * __this, MethodInfo * method)); @@ -57249,8 +66434,8 @@ DO_APP_FUNC(0x0244FA70, int32_t, XmlTextReaderImpl_DtdParserProxy_System_Xml_IDt DO_APP_FUNC(0x0244FB40, int32_t, XmlTextReaderImpl_DtdParserProxy_System_Xml_IDtdParserAdapter_ParseNamedCharRef, (XmlTextReaderImpl_DtdParserProxy * __this, bool expand, StringBuilder * internalSubsetBuilder, MethodInfo * method)); DO_APP_FUNC(0x0244FB60, void, XmlTextReaderImpl_DtdParserProxy_System_Xml_IDtdParserAdapter_ParsePI, (XmlTextReaderImpl_DtdParserProxy * __this, StringBuilder * sb, MethodInfo * method)); DO_APP_FUNC(0x0244FBC0, void, XmlTextReaderImpl_DtdParserProxy_System_Xml_IDtdParserAdapter_ParseComment, (XmlTextReaderImpl_DtdParserProxy * __this, StringBuilder * sb, MethodInfo * method)); -DO_APP_FUNC(0x0244FBE0, bool, XmlTextReaderImpl_DtdParserProxy_System_Xml_IDtdParserAdapter_PushEntity, (XmlTextReaderImpl_DtdParserProxy * __this, IDtdEntityInfo * entity, int32_t entityId, MethodInfo * method)); -DO_APP_FUNC(0x0244FCC0, bool, XmlTextReaderImpl_DtdParserProxy_System_Xml_IDtdParserAdapter_PopEntity, (XmlTextReaderImpl_DtdParserProxy * __this, IDtdEntityInfo * oldEntity, int32_t newEntityId, MethodInfo * method)); +DO_APP_FUNC(0x0244FBE0, bool, XmlTextReaderImpl_DtdParserProxy_System_Xml_IDtdParserAdapter_PushEntity, (XmlTextReaderImpl_DtdParserProxy * __this, IDtdEntityInfo * entity, int32_t * entityId, MethodInfo * method)); +DO_APP_FUNC(0x0244FCC0, bool, XmlTextReaderImpl_DtdParserProxy_System_Xml_IDtdParserAdapter_PopEntity, (XmlTextReaderImpl_DtdParserProxy * __this, IDtdEntityInfo * * oldEntity, int32_t * newEntityId, MethodInfo * method)); DO_APP_FUNC(0x0244FDD0, bool, XmlTextReaderImpl_DtdParserProxy_System_Xml_IDtdParserAdapter_PushExternalSubset, (XmlTextReaderImpl_DtdParserProxy * __this, String * systemId, String * publicId, MethodInfo * method)); DO_APP_FUNC(0x0244FF60, void, XmlTextReaderImpl_DtdParserProxy_System_Xml_IDtdParserAdapter_PushInternalDtd, (XmlTextReaderImpl_DtdParserProxy * __this, String * baseUri, String * internalDtd, MethodInfo * method)); DO_APP_FUNC(0x02450050, void, XmlTextReaderImpl_DtdParserProxy_System_Xml_IDtdParserAdapter_Throw, (XmlTextReaderImpl_DtdParserProxy * __this, Exception * e, MethodInfo * method)); @@ -57289,6 +66474,7 @@ DO_APP_FUNC(0x02451210, String *, XmlTextReaderImpl_NodeData_CreateNameWPrefix, DO_APP_FUNC(0x02451360, int32_t, XmlTextReaderImpl_NodeData_System_IComparable_CompareTo, (XmlTextReaderImpl_NodeData * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x02451470, IComparer_1_System_Object_ *, XmlTextReaderImpl_DtdDefaultAttributeInfoToNodeDataComparer_get_Instance, (MethodInfo * method)); DO_APP_FUNC(0x024514D0, int32_t, XmlTextReaderImpl_DtdDefaultAttributeInfoToNodeDataComparer_Compare, (XmlTextReaderImpl_DtdDefaultAttributeInfoToNodeDataComparer * __this, Object * x, Object * y, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB20C8, XmlTextReaderImpl_DtdDefaultAttributeInfoToNodeDataComparer_Compare__MethodInfo); DO_APP_FUNC(0x003AE050, void, XmlTextReaderImpl_DtdDefaultAttributeInfoToNodeDataComparer__ctor, (XmlTextReaderImpl_DtdDefaultAttributeInfoToNodeDataComparer * __this, MethodInfo * method)); DO_APP_FUNC(0x02451850, void, XmlTextReaderImpl_DtdDefaultAttributeInfoToNodeDataComparer__cctor, (MethodInfo * method)); DO_APP_FUNC(0x0103E630, void, XmlTextReaderImpl_OnDefaultAttributeUseDelegate__ctor, (XmlTextReaderImpl_OnDefaultAttributeUseDelegate * __this, Object * object, void * method_1, MethodInfo * method)); @@ -57301,18 +66487,25 @@ DO_APP_FUNC(0x02452040, void, XmlTextWriter_set_Formatting, (XmlTextWriter * __t DO_APP_FUNC(0x02452050, void, XmlTextWriter_WriteStartDocument, (XmlTextWriter * __this, MethodInfo * method)); DO_APP_FUNC(0x02452060, void, XmlTextWriter_WriteStartDocument_1, (XmlTextWriter * __this, bool standalone, MethodInfo * method)); DO_APP_FUNC(0x02452080, void, XmlTextWriter_WriteEndDocument, (XmlTextWriter * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2138, XmlTextWriter_WriteEndDocument__MethodInfo); DO_APP_FUNC(0x02452270, void, XmlTextWriter_WriteDocType, (XmlTextWriter * __this, String * name, String * pubid, String * sysid, String * subset, MethodInfo * method)); DO_APP_FUNC(0x02452680, void, XmlTextWriter_WriteStartElement, (XmlTextWriter * __this, String * prefix, String * localName, String * ns, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2060, XmlTextWriter_WriteStartElement__MethodInfo); DO_APP_FUNC(0x02452C40, void, XmlTextWriter_WriteEndElement, (XmlTextWriter * __this, MethodInfo * method)); DO_APP_FUNC(0x02452C50, void, XmlTextWriter_WriteFullEndElement, (XmlTextWriter * __this, MethodInfo * method)); DO_APP_FUNC(0x02452C60, void, XmlTextWriter_WriteStartAttribute, (XmlTextWriter * __this, String * prefix, String * localName, String * ns, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2050, XmlTextWriter_WriteStartAttribute__MethodInfo); DO_APP_FUNC(0x02453480, void, XmlTextWriter_WriteEndAttribute, (XmlTextWriter * __this, MethodInfo * method)); DO_APP_FUNC(0x024534D0, void, XmlTextWriter_WriteCData, (XmlTextWriter * __this, String * text, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2028, XmlTextWriter_WriteCData__MethodInfo); DO_APP_FUNC(0x02453830, void, XmlTextWriter_WriteComment, (XmlTextWriter * __this, String * text, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB20A8, XmlTextWriter_WriteComment__MethodInfo); DO_APP_FUNC(0x02453BC0, void, XmlTextWriter_WriteProcessingInstruction, (XmlTextWriter * __this, String * name, String * text, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2090, XmlTextWriter_WriteProcessingInstruction__MethodInfo); DO_APP_FUNC(0x02453FE0, void, XmlTextWriter_WriteEntityRef, (XmlTextWriter * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x02454160, void, XmlTextWriter_WriteCharEntity, (XmlTextWriter * __this, uint16_t ch, MethodInfo * method)); DO_APP_FUNC(0x024541D0, void, XmlTextWriter_WriteWhitespace, (XmlTextWriter * __this, String * ws, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2080, XmlTextWriter_WriteWhitespace__MethodInfo); DO_APP_FUNC(0x02454340, void, XmlTextWriter_WriteString, (XmlTextWriter * __this, String * text, MethodInfo * method)); DO_APP_FUNC(0x024543C0, void, XmlTextWriter_WriteSurrogateCharEntity, (XmlTextWriter * __this, uint16_t lowChar, uint16_t highChar, MethodInfo * method)); DO_APP_FUNC(0x02454440, void, XmlTextWriter_WriteChars, (XmlTextWriter * __this, Char__Array * buffer, int32_t index, int32_t count, MethodInfo * method)); @@ -57324,14 +66517,19 @@ DO_APP_FUNC(0x02454830, WriteState__Enum, XmlTextWriter_get_WriteState, (XmlText DO_APP_FUNC(0x024548A0, void, XmlTextWriter_Close, (XmlTextWriter * __this, MethodInfo * method)); DO_APP_FUNC(0x024549C0, void, XmlTextWriter_Flush, (XmlTextWriter * __this, MethodInfo * method)); DO_APP_FUNC(0x024549F0, String *, XmlTextWriter_LookupPrefix, (XmlTextWriter * __this, String * ns, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1FE8, XmlTextWriter_LookupPrefix__MethodInfo); DO_APP_FUNC(0x02454B30, void, XmlTextWriter_StartDocument, (XmlTextWriter * __this, int32_t standalone, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1FB0, XmlTextWriter_StartDocument__MethodInfo); DO_APP_FUNC(0x02454EF0, void, XmlTextWriter_AutoComplete, (XmlTextWriter * __this, XmlTextWriter_Token__Enum token, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1F90, XmlTextWriter_AutoComplete__MethodInfo); DO_APP_FUNC(0x02455510, void, XmlTextWriter_AutoCompleteAll, (XmlTextWriter * __this, MethodInfo * method)); DO_APP_FUNC(0x02455560, void, XmlTextWriter_InternalWriteEndElement, (XmlTextWriter * __this, bool longFormat, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1FA8, XmlTextWriter_InternalWriteEndElement__MethodInfo); DO_APP_FUNC(0x024559A0, void, XmlTextWriter_WriteEndStartTag, (XmlTextWriter * __this, bool empty, MethodInfo * method)); DO_APP_FUNC(0x02455DD0, void, XmlTextWriter_WriteEndAttributeQuote, (XmlTextWriter * __this, MethodInfo * method)); DO_APP_FUNC(0x02455E50, void, XmlTextWriter_Indent, (XmlTextWriter * __this, bool beforeEndElement, MethodInfo * method)); DO_APP_FUNC(0x02455F30, void, XmlTextWriter_PushNamespace, (XmlTextWriter * __this, String * prefix, String * ns, bool declared, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2008, XmlTextWriter_PushNamespace__MethodInfo); DO_APP_FUNC(0x02456260, void, XmlTextWriter_AddNamespace, (XmlTextWriter * __this, String * prefix, String * ns, bool declared, MethodInfo * method)); DO_APP_FUNC(0x02456640, void, XmlTextWriter_AddToNamespaceHashtable, (XmlTextWriter * __this, int32_t namespaceIndex, MethodInfo * method)); DO_APP_FUNC(0x02456780, void, XmlTextWriter_PopNamespaces, (XmlTextWriter * __this, int32_t indexFrom, int32_t indexTo, MethodInfo * method)); @@ -57341,13 +66539,16 @@ DO_APP_FUNC(0x02456C10, int32_t, XmlTextWriter_LookupNamespace, (XmlTextWriter * DO_APP_FUNC(0x02456D80, int32_t, XmlTextWriter_LookupNamespaceInCurrentScope, (XmlTextWriter * __this, String * prefix, MethodInfo * method)); DO_APP_FUNC(0x02456F30, String *, XmlTextWriter_FindPrefix, (XmlTextWriter * __this, String * ns, MethodInfo * method)); DO_APP_FUNC(0x02457040, void, XmlTextWriter_ValidateName, (XmlTextWriter * __this, String * name, bool isNCName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1F40, XmlTextWriter_ValidateName__MethodInfo); DO_APP_FUNC(0x024572D0, void, XmlTextWriter_HandleSpecialAttribute, (XmlTextWriter * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1F88, XmlTextWriter_HandleSpecialAttribute__MethodInfo); DO_APP_FUNC(0x02457600, void, XmlTextWriter_VerifyPrefixXml, (XmlTextWriter * __this, String * prefix, String * ns, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1F80, XmlTextWriter_VerifyPrefixXml__MethodInfo); DO_APP_FUNC(0x02457710, void, XmlTextWriter_PushStack, (XmlTextWriter * __this, MethodInfo * method)); DO_APP_FUNC(0x02457950, void, XmlTextWriter_FlushEncoders, (XmlTextWriter * __this, MethodInfo * method)); DO_APP_FUNC(0x02457980, void, XmlTextWriter__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02458480, void, XmlTextWriter_TagInfo_Init, (XmlTextWriter_TagInfo__Boxed * __this, int32_t nsTop, MethodInfo * method)); -DO_APP_FUNC(0x024585D0, void, XmlTextWriter_Namespace_Set, (XmlTextWriter_Namespace__Boxed * __this, String * prefix, String * ns, bool declared, MethodInfo * method)); +DO_APP_FUNC(0x02458480, void, XmlTextWriter_TagInfo_Init, (XmlTextWriter_TagInfo * __this, int32_t nsTop, MethodInfo * method)); +DO_APP_FUNC(0x024585D0, void, XmlTextWriter_Namespace_Set, (XmlTextWriter_Namespace * __this, String * prefix, String * ns, bool declared, MethodInfo * method)); DO_APP_FUNC(0x02458690, void, XmlUtf8RawTextWriter__ctor, (XmlUtf8RawTextWriter * __this, XmlWriterSettings * settings, MethodInfo * method)); DO_APP_FUNC(0x02458810, void, XmlUtf8RawTextWriter__ctor_1, (XmlUtf8RawTextWriter * __this, Stream * stream, XmlWriterSettings * settings, MethodInfo * method)); DO_APP_FUNC(0x02458BD0, void, XmlUtf8RawTextWriter_WriteXmlDeclaration, (XmlUtf8RawTextWriter * __this, XmlStandalone__Enum standalone, MethodInfo * method)); @@ -57368,6 +66569,7 @@ DO_APP_FUNC(0x024598A0, void, XmlUtf8RawTextWriter_WriteComment, (XmlUtf8RawText DO_APP_FUNC(0x024599C0, void, XmlUtf8RawTextWriter_WriteProcessingInstruction, (XmlUtf8RawTextWriter * __this, String * name, String * text, MethodInfo * method)); DO_APP_FUNC(0x02459AD0, void, XmlUtf8RawTextWriter_WriteEntityRef, (XmlUtf8RawTextWriter * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x02459B70, void, XmlUtf8RawTextWriter_WriteCharEntity, (XmlUtf8RawTextWriter * __this, uint16_t ch, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1F30, XmlUtf8RawTextWriter_WriteCharEntity__MethodInfo); DO_APP_FUNC(0x02459DC0, void, XmlUtf8RawTextWriter_WriteWhitespace, (XmlUtf8RawTextWriter * __this, String * ws, MethodInfo * method)); DO_APP_FUNC(0x02459DC0, void, XmlUtf8RawTextWriter_WriteString, (XmlUtf8RawTextWriter * __this, String * text, MethodInfo * method)); DO_APP_FUNC(0x02459E00, void, XmlUtf8RawTextWriter_WriteSurrogateCharEntity, (XmlUtf8RawTextWriter * __this, uint16_t lowChar, uint16_t highChar, MethodInfo * method)); @@ -57387,10 +66589,12 @@ DO_APP_FUNC(0x0245AF80, void, XmlUtf8RawTextWriter_WriteCommentOrPi, (XmlUtf8Raw DO_APP_FUNC(0x0245B360, void, XmlUtf8RawTextWriter_WriteCDataSection, (XmlUtf8RawTextWriter * __this, String * text, MethodInfo * method)); DO_APP_FUNC(0x0245B700, bool, XmlUtf8RawTextWriter_IsSurrogateByte, (uint8_t b, MethodInfo * method)); DO_APP_FUNC(0x0245B710, uint8_t *, XmlUtf8RawTextWriter_EncodeSurrogate, (uint16_t * pSrc, uint16_t * pSrcEnd, uint8_t * pDst, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1E88, XmlUtf8RawTextWriter_EncodeSurrogate__MethodInfo); DO_APP_FUNC(0x0245B8C0, uint8_t *, XmlUtf8RawTextWriter_InvalidXmlChar, (XmlUtf8RawTextWriter * __this, int32_t ch, uint8_t * pDst, bool entitize, MethodInfo * method)); -DO_APP_FUNC(0x0245BAD0, void, XmlUtf8RawTextWriter_EncodeChar, (XmlUtf8RawTextWriter * __this, uint16_t * pSrc, uint16_t * pSrcEnd, uint8_t * pDst, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1E90, XmlUtf8RawTextWriter_InvalidXmlChar__MethodInfo); +DO_APP_FUNC(0x0245BAD0, void, XmlUtf8RawTextWriter_EncodeChar, (XmlUtf8RawTextWriter * __this, uint16_t * * pSrc, uint16_t * pSrcEnd, uint8_t * * pDst, MethodInfo * method)); DO_APP_FUNC(0x0245BBA0, uint8_t *, XmlUtf8RawTextWriter_EncodeMultibyteUTF8, (int32_t ch, uint8_t * pDst, MethodInfo * method)); -DO_APP_FUNC(0x0245BBF0, void, XmlUtf8RawTextWriter_CharToUTF8, (uint16_t * pSrc, uint16_t * pSrcEnd, uint8_t * pDst, MethodInfo * method)); +DO_APP_FUNC(0x0245BBF0, void, XmlUtf8RawTextWriter_CharToUTF8, (uint16_t * * pSrc, uint16_t * pSrcEnd, uint8_t * * pDst, MethodInfo * method)); DO_APP_FUNC(0x0245BCB0, uint8_t *, XmlUtf8RawTextWriter_WriteNewLine, (XmlUtf8RawTextWriter * __this, uint8_t * pDst, MethodInfo * method)); DO_APP_FUNC(0x0245BD20, uint8_t *, XmlUtf8RawTextWriter_LtEntity, (uint8_t * pDst, MethodInfo * method)); DO_APP_FUNC(0x0245BD30, uint8_t *, XmlUtf8RawTextWriter_GtEntity, (uint8_t * pDst, MethodInfo * method)); @@ -57403,6 +66607,7 @@ DO_APP_FUNC(0x0245BDA0, uint8_t *, XmlUtf8RawTextWriter_CharEntity, (uint8_t * p DO_APP_FUNC(0x0245BEF0, uint8_t *, XmlUtf8RawTextWriter_RawStartCData, (uint8_t * pDst, MethodInfo * method)); DO_APP_FUNC(0x0245BF10, uint8_t *, XmlUtf8RawTextWriter_RawEndCData, (uint8_t * pDst, MethodInfo * method)); DO_APP_FUNC(0x0245BF20, void, XmlUtf8RawTextWriter_ValidateContentChars, (XmlUtf8RawTextWriter * __this, String * chars, String * propertyName, bool allowOnlyWhitespace, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1E80, XmlUtf8RawTextWriter_ValidateContentChars__MethodInfo); DO_APP_FUNC(0x0245C340, void, XmlUtf8RawTextWriterIndent__ctor, (XmlUtf8RawTextWriterIndent * __this, Stream * stream, XmlWriterSettings * settings, MethodInfo * method)); DO_APP_FUNC(0x0245C370, void, XmlUtf8RawTextWriterIndent_WriteDocType, (XmlUtf8RawTextWriterIndent * __this, String * name, String * pubid, String * sysid, String * subset, MethodInfo * method)); DO_APP_FUNC(0x0245C3E0, void, XmlUtf8RawTextWriterIndent_WriteStartElement, (XmlUtf8RawTextWriterIndent * __this, String * prefix, String * localName, String * ns, MethodInfo * method)); @@ -57426,6 +66631,7 @@ DO_APP_FUNC(0x0245CC70, void, XmlUtf8RawTextWriterIndent_WriteBase64, (XmlUtf8Ra DO_APP_FUNC(0x0245CC90, void, XmlUtf8RawTextWriterIndent_Init, (XmlUtf8RawTextWriterIndent * __this, XmlWriterSettings * settings, MethodInfo * method)); DO_APP_FUNC(0x0245CE60, void, XmlUtf8RawTextWriterIndent_WriteIndent, (XmlUtf8RawTextWriterIndent * __this, MethodInfo * method)); DO_APP_FUNC(0x0245CEE0, void, XmlValidatingReaderImpl__ctor, (XmlValidatingReaderImpl * __this, XmlReader * reader, ValidationEventHandler * settingsEventHandler, bool processIdentityConstraints, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1EB0, XmlValidatingReaderImpl__ctor__MethodInfo); DO_APP_FUNC(0x0245D6B0, XmlReaderSettings *, XmlValidatingReaderImpl_get_Settings, (XmlValidatingReaderImpl * __this, MethodInfo * method)); DO_APP_FUNC(0x0244EA90, XmlNodeType__Enum, XmlValidatingReaderImpl_get_NodeType, (XmlValidatingReaderImpl * __this, MethodInfo * method)); DO_APP_FUNC(0x0244EAC0, String *, XmlValidatingReaderImpl_get_Name, (XmlValidatingReaderImpl * __this, MethodInfo * method)); @@ -57456,6 +66662,7 @@ DO_APP_FUNC(0x0245DCA0, bool, XmlValidatingReaderImpl_ReadAttributeValue, (XmlVa DO_APP_FUNC(0x0041AEF0, bool, XmlValidatingReaderImpl_get_CanResolveEntity, (XmlValidatingReaderImpl * __this, MethodInfo * method)); DO_APP_FUNC(0x0245DD10, void, XmlValidatingReaderImpl_ResolveEntity, (XmlValidatingReaderImpl * __this, MethodInfo * method)); DO_APP_FUNC(0x0245DD50, void, XmlValidatingReaderImpl_MoveOffEntityReference, (XmlValidatingReaderImpl * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1E98, XmlValidatingReaderImpl_MoveOffEntityReference__MethodInfo); DO_APP_FUNC(0x0245DE20, String *, XmlValidatingReaderImpl_ReadString, (XmlValidatingReaderImpl * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, XmlValidatingReaderImpl_HasLineInfo, (XmlValidatingReaderImpl * __this, MethodInfo * method)); DO_APP_FUNC(0x0245DEF0, int32_t, XmlValidatingReaderImpl_get_LineNumber, (XmlValidatingReaderImpl * __this, MethodInfo * method)); @@ -57483,36 +66690,54 @@ DO_APP_FUNC(0x0245E9F0, void, XmlValidatingReaderImpl_set_TypedValueObject, (Xml DO_APP_FUNC(0x0245EA10, bool, XmlValidatingReaderImpl_AddDefaultAttribute, (XmlValidatingReaderImpl * __this, SchemaAttDef * attdef, MethodInfo * method)); DO_APP_FUNC(0x0245EA30, IDtdInfo *, XmlValidatingReaderImpl_get_DtdInfo, (XmlValidatingReaderImpl * __this, MethodInfo * method)); DO_APP_FUNC(0x0245EA60, void, XmlValidatingReaderImpl_ValidateDefaultAttributeOnUse, (XmlValidatingReaderImpl * __this, IDtdDefaultAttributeInfo * defaultAttribute, XmlTextReaderImpl * coreReader, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1EA0, XmlValidatingReaderImpl_ValidateDefaultAttributeOnUse__MethodInfo); DO_APP_FUNC(0x003BCBE0, void, XmlValidatingReaderImpl_ValidationEventHandling__ctor, (XmlValidatingReaderImpl_ValidationEventHandling * __this, XmlValidatingReaderImpl * reader, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, XmlValidatingReaderImpl_ValidationEventHandling_System_Xml_IValidationEventHandling_get_EventHandler, (XmlValidatingReaderImpl_ValidationEventHandling * __this, MethodInfo * method)); DO_APP_FUNC(0x0245EBB0, void, XmlValidatingReaderImpl_ValidationEventHandling_System_Xml_IValidationEventHandling_SendEvent, (XmlValidatingReaderImpl_ValidationEventHandling * __this, Exception * exception, XmlSeverityType__Enum severity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1E20, XmlValidatingReaderImpl_ValidationEventHandling_System_Xml_IValidationEventHandling_SendEvent__MethodInfo); DO_APP_FUNC(0x0245ECE0, void, XmlValidatingReaderImpl_ValidationEventHandling_AddHandler, (XmlValidatingReaderImpl_ValidationEventHandling * __this, ValidationEventHandler * handler, MethodInfo * method)); DO_APP_FUNC(0x0245EDD0, void, XmlWellFormedWriter__ctor, (XmlWellFormedWriter * __this, XmlWriter * writer, XmlWriterSettings * settings, MethodInfo * method)); DO_APP_FUNC(0x0245F5D0, WriteState__Enum, XmlWellFormedWriter_get_WriteState, (XmlWellFormedWriter * __this, MethodInfo * method)); DO_APP_FUNC(0x0245F660, void, XmlWellFormedWriter_WriteStartDocument, (XmlWellFormedWriter * __this, MethodInfo * method)); DO_APP_FUNC(0x0245F670, void, XmlWellFormedWriter_WriteStartDocument_1, (XmlWellFormedWriter * __this, bool standalone, MethodInfo * method)); DO_APP_FUNC(0x0245F6A0, void, XmlWellFormedWriter_WriteEndDocument, (XmlWellFormedWriter * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1E40, XmlWellFormedWriter_WriteEndDocument__MethodInfo); DO_APP_FUNC(0x0245F7B0, void, XmlWellFormedWriter_WriteDocType, (XmlWellFormedWriter * __this, String * name, String * pubid, String * sysid, String * subset, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1E30, XmlWellFormedWriter_WriteDocType__MethodInfo); DO_APP_FUNC(0x0245FD60, void, XmlWellFormedWriter_WriteStartElement, (XmlWellFormedWriter * __this, String * prefix, String * localName, String * ns, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1DD0, XmlWellFormedWriter_WriteStartElement__MethodInfo); DO_APP_FUNC(0x024600F0, void, XmlWellFormedWriter_WriteEndElement, (XmlWellFormedWriter * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1DD8, XmlWellFormedWriter_WriteEndElement__MethodInfo); DO_APP_FUNC(0x024602C0, void, XmlWellFormedWriter_WriteFullEndElement, (XmlWellFormedWriter * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1DC0, XmlWellFormedWriter_WriteFullEndElement__MethodInfo); DO_APP_FUNC(0x02460490, void, XmlWellFormedWriter_WriteStartAttribute, (XmlWellFormedWriter * __this, String * prefix, String * localName, String * namespaceName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1E10, XmlWellFormedWriter_WriteStartAttribute__MethodInfo); DO_APP_FUNC(0x02460DA0, void, XmlWellFormedWriter_WriteEndAttribute, (XmlWellFormedWriter * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1E08, XmlWellFormedWriter_WriteEndAttribute__MethodInfo); DO_APP_FUNC(0x02462100, void, XmlWellFormedWriter_WriteCData, (XmlWellFormedWriter * __this, String * text, MethodInfo * method)); DO_APP_FUNC(0x024621C0, void, XmlWellFormedWriter_WriteComment, (XmlWellFormedWriter * __this, String * text, MethodInfo * method)); DO_APP_FUNC(0x02462280, void, XmlWellFormedWriter_WriteProcessingInstruction, (XmlWellFormedWriter * __this, String * name, String * text, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1E00, XmlWellFormedWriter_WriteProcessingInstruction__MethodInfo); DO_APP_FUNC(0x02462580, void, XmlWellFormedWriter_WriteEntityRef, (XmlWellFormedWriter * __this, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1D90, XmlWellFormedWriter_WriteEntityRef__MethodInfo); DO_APP_FUNC(0x024626A0, void, XmlWellFormedWriter_WriteCharEntity, (XmlWellFormedWriter * __this, uint16_t ch, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1D80, XmlWellFormedWriter_WriteCharEntity__MethodInfo); DO_APP_FUNC(0x02462870, void, XmlWellFormedWriter_WriteSurrogateCharEntity, (XmlWellFormedWriter * __this, uint16_t lowChar, uint16_t highChar, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1D78, XmlWellFormedWriter_WriteSurrogateCharEntity__MethodInfo); DO_APP_FUNC(0x02462A80, void, XmlWellFormedWriter_WriteWhitespace, (XmlWellFormedWriter * __this, String * ws, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1D70, XmlWellFormedWriter_WriteWhitespace__MethodInfo); DO_APP_FUNC(0x02462C60, void, XmlWellFormedWriter_WriteString, (XmlWellFormedWriter * __this, String * text, MethodInfo * method)); DO_APP_FUNC(0x02462DA0, void, XmlWellFormedWriter_WriteChars, (XmlWellFormedWriter * __this, Char__Array * buffer, int32_t index, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1DB0, XmlWellFormedWriter_WriteChars__MethodInfo); DO_APP_FUNC(0x024630A0, void, XmlWellFormedWriter_WriteRaw, (XmlWellFormedWriter * __this, Char__Array * buffer, int32_t index, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1DB8, XmlWellFormedWriter_WriteRaw__MethodInfo); DO_APP_FUNC(0x024633A0, void, XmlWellFormedWriter_WriteRaw_1, (XmlWellFormedWriter * __this, String * data, MethodInfo * method)); DO_APP_FUNC(0x02463480, void, XmlWellFormedWriter_WriteBase64, (XmlWellFormedWriter * __this, Byte__Array * buffer, int32_t index, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1DA8, XmlWellFormedWriter_WriteBase64__MethodInfo); DO_APP_FUNC(0x02463680, void, XmlWellFormedWriter_Close, (XmlWellFormedWriter * __this, MethodInfo * method)); DO_APP_FUNC(0x02463CE0, void, XmlWellFormedWriter_Flush, (XmlWellFormedWriter * __this, MethodInfo * method)); DO_APP_FUNC(0x02463D40, String *, XmlWellFormedWriter_LookupPrefix, (XmlWellFormedWriter * __this, String * ns, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1DA0, XmlWellFormedWriter_LookupPrefix__MethodInfo); DO_APP_FUNC(0x02463F50, void, XmlWellFormedWriter_WriteValue, (XmlWellFormedWriter * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x02463FD0, void, XmlWellFormedWriter_WriteValue_1, (XmlWellFormedWriter * __this, DateTime value, MethodInfo * method)); DO_APP_FUNC(0x02464050, void, XmlWellFormedWriter_WriteValue_2, (XmlWellFormedWriter * __this, double value, MethodInfo * method)); @@ -57523,43 +66748,52 @@ DO_APP_FUNC(0x02464260, void, XmlWellFormedWriter_WriteValue_6, (XmlWellFormedWr DO_APP_FUNC(0x024642E0, void, XmlWellFormedWriter_WriteValue_7, (XmlWellFormedWriter * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x02464390, void, XmlWellFormedWriter_WriteValue_8, (XmlWellFormedWriter * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x024644A0, void, XmlWellFormedWriter_WriteBinHex, (XmlWellFormedWriter * __this, Byte__Array * buffer, int32_t index, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1D98, XmlWellFormedWriter_WriteBinHex__MethodInfo); DO_APP_FUNC(0x003BB3D0, XmlRawWriter *, XmlWellFormedWriter_get_RawWriter, (XmlWellFormedWriter * __this, MethodInfo * method)); DO_APP_FUNC(0x024645A0, bool, XmlWellFormedWriter_get_SaveAttrValue, (XmlWellFormedWriter * __this, MethodInfo * method)); DO_APP_FUNC(0x024645B0, bool, XmlWellFormedWriter_get_InBase64, (XmlWellFormedWriter * __this, MethodInfo * method)); DO_APP_FUNC(0x024645D0, void, XmlWellFormedWriter_SetSpecialAttribute, (XmlWellFormedWriter * __this, XmlWellFormedWriter_SpecialAttribute__Enum special, MethodInfo * method)); DO_APP_FUNC(0x02464750, void, XmlWellFormedWriter_WriteStartDocumentImpl, (XmlWellFormedWriter * __this, XmlStandalone__Enum standalone, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1D58, XmlWellFormedWriter_WriteStartDocumentImpl__MethodInfo); DO_APP_FUNC(0x02464930, void, XmlWellFormedWriter_StartFragment, (XmlWellFormedWriter * __this, MethodInfo * method)); DO_APP_FUNC(0x02464940, void, XmlWellFormedWriter_PushNamespaceImplicit, (XmlWellFormedWriter * __this, String * prefix, String * ns, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1D48, XmlWellFormedWriter_PushNamespaceImplicit__MethodInfo); DO_APP_FUNC(0x02464FA0, bool, XmlWellFormedWriter_PushNamespaceExplicit, (XmlWellFormedWriter * __this, String * prefix, String * ns, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1D38, XmlWellFormedWriter_PushNamespaceExplicit__MethodInfo); DO_APP_FUNC(0x02465700, void, XmlWellFormedWriter_AddNamespace, (XmlWellFormedWriter * __this, String * prefix, String * ns, XmlWellFormedWriter_NamespaceKind__Enum kind, MethodInfo * method)); DO_APP_FUNC(0x02465A70, void, XmlWellFormedWriter_AddToNamespaceHashtable, (XmlWellFormedWriter * __this, int32_t namespaceIndex, MethodInfo * method)); DO_APP_FUNC(0x02465BA0, int32_t, XmlWellFormedWriter_LookupNamespaceIndex, (XmlWellFormedWriter * __this, String * prefix, MethodInfo * method)); DO_APP_FUNC(0x02465CF0, void, XmlWellFormedWriter_PopNamespaces, (XmlWellFormedWriter * __this, int32_t indexFrom, int32_t indexTo, MethodInfo * method)); DO_APP_FUNC(0x02465E20, XmlException *, XmlWellFormedWriter_DupAttrException, (String * prefix, String * localName, MethodInfo * method)); DO_APP_FUNC(0x02465F70, void, XmlWellFormedWriter_AdvanceState, (XmlWellFormedWriter * __this, XmlWellFormedWriter_Token__Enum token, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1D68, XmlWellFormedWriter_AdvanceState__MethodInfo); DO_APP_FUNC(0x02466380, void, XmlWellFormedWriter_StartElementContent, (XmlWellFormedWriter * __this, MethodInfo * method)); DO_APP_FUNC(0x02466440, String *, XmlWellFormedWriter_GetStateName, (XmlWellFormedWriter_State__Enum state, MethodInfo * method)); DO_APP_FUNC(0x024664E0, String *, XmlWellFormedWriter_LookupNamespace, (XmlWellFormedWriter * __this, String * prefix, MethodInfo * method)); DO_APP_FUNC(0x024665F0, String *, XmlWellFormedWriter_LookupLocalNamespace, (XmlWellFormedWriter * __this, String * prefix, MethodInfo * method)); DO_APP_FUNC(0x024666F0, String *, XmlWellFormedWriter_GeneratePrefix, (XmlWellFormedWriter * __this, MethodInfo * method)); DO_APP_FUNC(0x024669D0, void, XmlWellFormedWriter_CheckNCName, (XmlWellFormedWriter * __this, String * ncname, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1CA0, XmlWellFormedWriter_CheckNCName__MethodInfo); DO_APP_FUNC(0x02466B00, Exception *, XmlWellFormedWriter_InvalidCharsException, (String * name, int32_t badCharIndex, MethodInfo * method)); DO_APP_FUNC(0x02466D00, void, XmlWellFormedWriter_ThrowInvalidStateTransition, (XmlWellFormedWriter * __this, XmlWellFormedWriter_Token__Enum token, XmlWellFormedWriter_State__Enum currentState, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1C90, XmlWellFormedWriter_ThrowInvalidStateTransition__MethodInfo); DO_APP_FUNC(0x02466F10, bool, XmlWellFormedWriter_get_IsClosedOrErrorState, (XmlWellFormedWriter * __this, MethodInfo * method)); DO_APP_FUNC(0x02466F20, void, XmlWellFormedWriter_AddAttribute, (XmlWellFormedWriter * __this, String * prefix, String * localName, String * namespaceName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1C80, XmlWellFormedWriter_AddAttribute__MethodInfo); DO_APP_FUNC(0x024674E0, void, XmlWellFormedWriter_AddToAttrHashTable, (XmlWellFormedWriter * __this, int32_t attributeIndex, MethodInfo * method)); DO_APP_FUNC(0x02467650, void, XmlWellFormedWriter__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, XmlWellFormedWriter_NamespaceResolverProxy__ctor, (XmlWellFormedWriter_NamespaceResolverProxy * __this, XmlWellFormedWriter * wfWriter, MethodInfo * method)); DO_APP_FUNC(0x024684C0, IDictionary_2_System_String_System_String_ *, XmlWellFormedWriter_NamespaceResolverProxy_System_Xml_IXmlNamespaceResolver_GetNamespacesInScope, (XmlWellFormedWriter_NamespaceResolverProxy * __this, XmlNamespaceScope__Enum scope, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFBE30, XmlWellFormedWriter_NamespaceResolverProxy_System_Xml_IXmlNamespaceResolver_GetNamespacesInScope__MethodInfo); DO_APP_FUNC(0x02468510, String *, XmlWellFormedWriter_NamespaceResolverProxy_System_Xml_IXmlNamespaceResolver_LookupNamespace, (XmlWellFormedWriter_NamespaceResolverProxy * __this, String * prefix, MethodInfo * method)); DO_APP_FUNC(0x02468530, String *, XmlWellFormedWriter_NamespaceResolverProxy_System_Xml_IXmlNamespaceResolver_LookupPrefix, (XmlWellFormedWriter_NamespaceResolverProxy * __this, String * namespaceName, MethodInfo * method)); -DO_APP_FUNC(0x02468560, void, XmlWellFormedWriter_ElementScope_Set, (XmlWellFormedWriter_ElementScope__Boxed * __this, String * prefix, String * localName, String * namespaceUri, int32_t prevNSTop, MethodInfo * method)); -DO_APP_FUNC(0x024686E0, void, XmlWellFormedWriter_ElementScope_WriteEndElement, (XmlWellFormedWriter_ElementScope__Boxed * __this, XmlRawWriter * rawWriter, MethodInfo * method)); -DO_APP_FUNC(0x02468720, void, XmlWellFormedWriter_ElementScope_WriteFullEndElement, (XmlWellFormedWriter_ElementScope__Boxed * __this, XmlRawWriter * rawWriter, MethodInfo * method)); -DO_APP_FUNC(0x02468760, void, XmlWellFormedWriter_Namespace_Set, (XmlWellFormedWriter_Namespace__Boxed * __this, String * prefix, String * namespaceUri, XmlWellFormedWriter_NamespaceKind__Enum kind, MethodInfo * method)); -DO_APP_FUNC(0x02468820, void, XmlWellFormedWriter_Namespace_WriteDecl, (XmlWellFormedWriter_Namespace__Boxed * __this, XmlWriter * writer, XmlRawWriter * rawWriter, MethodInfo * method)); -DO_APP_FUNC(0x02468950, void, XmlWellFormedWriter_AttrName_Set, (XmlWellFormedWriter_AttrName__Boxed * __this, String * prefix, String * localName, String * namespaceUri, MethodInfo * method)); -DO_APP_FUNC(0x02468A70, bool, XmlWellFormedWriter_AttrName_IsDuplicate, (XmlWellFormedWriter_AttrName__Boxed * __this, String * prefix, String * localName, String * namespaceUri, MethodInfo * method)); +DO_APP_FUNC(0x02468560, void, XmlWellFormedWriter_ElementScope_Set, (XmlWellFormedWriter_ElementScope * __this, String * prefix, String * localName, String * namespaceUri, int32_t prevNSTop, MethodInfo * method)); +DO_APP_FUNC(0x024686E0, void, XmlWellFormedWriter_ElementScope_WriteEndElement, (XmlWellFormedWriter_ElementScope * __this, XmlRawWriter * rawWriter, MethodInfo * method)); +DO_APP_FUNC(0x02468720, void, XmlWellFormedWriter_ElementScope_WriteFullEndElement, (XmlWellFormedWriter_ElementScope * __this, XmlRawWriter * rawWriter, MethodInfo * method)); +DO_APP_FUNC(0x02468760, void, XmlWellFormedWriter_Namespace_Set, (XmlWellFormedWriter_Namespace * __this, String * prefix, String * namespaceUri, XmlWellFormedWriter_NamespaceKind__Enum kind, MethodInfo * method)); +DO_APP_FUNC(0x02468820, void, XmlWellFormedWriter_Namespace_WriteDecl, (XmlWellFormedWriter_Namespace * __this, XmlWriter * writer, XmlRawWriter * rawWriter, MethodInfo * method)); +DO_APP_FUNC(0x02468950, void, XmlWellFormedWriter_AttrName_Set, (XmlWellFormedWriter_AttrName * __this, String * prefix, String * localName, String * namespaceUri, MethodInfo * method)); +DO_APP_FUNC(0x02468A70, bool, XmlWellFormedWriter_AttrName_IsDuplicate, (XmlWellFormedWriter_AttrName * __this, String * prefix, String * localName, String * namespaceUri, MethodInfo * method)); DO_APP_FUNC(0x02468B60, String *, XmlWellFormedWriter_AttributeValueCache_get_StringValue, (XmlWellFormedWriter_AttributeValueCache * __this, MethodInfo * method)); DO_APP_FUNC(0x02468BA0, void, XmlWellFormedWriter_AttributeValueCache_WriteEntityRef, (XmlWellFormedWriter_AttributeValueCache * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x02468EA0, void, XmlWellFormedWriter_AttributeValueCache_WriteCharEntity, (XmlWellFormedWriter_AttributeValueCache * __this, uint16_t ch, MethodInfo * method)); @@ -57587,6 +66821,7 @@ DO_APP_FUNC(0x0246A520, void, XmlWriter_WriteAttributeString_2, (XmlWriter * __t DO_APP_FUNC(0x0246A570, void, XmlWriter_WriteBinHex, (XmlWriter * __this, Byte__Array * buffer, int32_t index, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, XmlWriter_Close, (XmlWriter * __this, MethodInfo * method)); DO_APP_FUNC(0x0246A5A0, void, XmlWriter_WriteValue, (XmlWriter * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFBDB0, XmlWriter_WriteValue__MethodInfo); DO_APP_FUNC(0x0246A6A0, void, XmlWriter_WriteValue_1, (XmlWriter * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x0246A6C0, void, XmlWriter_WriteValue_2, (XmlWriter * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x0246A770, void, XmlWriter_WriteValue_3, (XmlWriter * __this, DateTime value, MethodInfo * method)); @@ -57616,9 +66851,11 @@ DO_APP_FUNC(0x00897450, bool, XmlWriterSettings_get_NewLineOnAttributes, (XmlWri DO_APP_FUNC(0x005C36F0, bool, XmlWriterSettings_get_CloseOutput, (XmlWriterSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7400, ConformanceLevel__Enum, XmlWriterSettings_get_ConformanceLevel, (XmlWriterSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x0246AF80, void, XmlWriterSettings_set_ConformanceLevel, (XmlWriterSettings * __this, ConformanceLevel__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFBD38, XmlWriterSettings_set_ConformanceLevel__MethodInfo); DO_APP_FUNC(0x005C3CE0, bool, XmlWriterSettings_get_CheckCharacters, (XmlWriterSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x00A47640, NamespaceHandling__Enum, XmlWriterSettings_get_NamespaceHandling, (XmlWriterSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x0246B030, void, XmlWriterSettings_set_NamespaceHandling, (XmlWriterSettings * __this, NamespaceHandling__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFBD40, XmlWriterSettings_set_NamespaceHandling__MethodInfo); DO_APP_FUNC(0x01F43E50, bool, XmlWriterSettings_get_WriteEndDocumentOnClose, (XmlWriterSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x010C8F60, XmlOutputMethod__Enum, XmlWriterSettings_get_OutputMethod, (XmlWriterSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x019D2A60, void, XmlWriterSettings_set_OutputMethod, (XmlWriterSettings * __this, XmlOutputMethod__Enum value, MethodInfo * method)); @@ -57634,9 +66871,12 @@ DO_APP_FUNC(0x005D9140, bool, XmlWriterSettings_get_AutoXmlDeclaration, (XmlWrit DO_APP_FUNC(0x003C7300, TriState__Enum_1, XmlWriterSettings_get_IndentInternal, (XmlWriterSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x0246B200, bool, XmlWriterSettings_get_IsQuerySpecific, (XmlWriterSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x0246B270, XmlWriter *, XmlWriterSettings_CreateWriter, (XmlWriterSettings * __this, Stream * output, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFBD58, XmlWriterSettings_CreateWriter__MethodInfo); DO_APP_FUNC(0x0246B8F0, XmlWriter *, XmlWriterSettings_CreateWriter_1, (XmlWriterSettings * __this, TextWriter * output, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFBD50, XmlWriterSettings_CreateWriter_1__MethodInfo); DO_APP_FUNC(0x005D9170, void, XmlWriterSettings_set_ReadOnly, (XmlWriterSettings * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x0246BD50, void, XmlWriterSettings_CheckReadOnly, (XmlWriterSettings * __this, String * propertyName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFBD68, XmlWriterSettings_CheckReadOnly__MethodInfo); DO_APP_FUNC(0x0246BE10, void, XmlWriterSettings_Initialize, (XmlWriterSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x0246C0E0, void, XsdCachingReader__ctor, (XsdCachingReader * __this, XmlReader * reader, IXmlLineInfo * lineInfo, CachingEventHandler * handlerMethod, MethodInfo * method)); DO_APP_FUNC(0x0246C320, void, XsdCachingReader_Init, (XsdCachingReader * __this, MethodInfo * method)); @@ -57658,6 +66898,7 @@ DO_APP_FUNC(0x0246C760, String *, XsdCachingReader_GetAttribute, (XsdCachingRead DO_APP_FUNC(0x0246C870, String *, XsdCachingReader_GetAttribute_1, (XsdCachingReader * __this, String * name, String * namespaceURI, MethodInfo * method)); DO_APP_FUNC(0x0246C980, bool, XsdCachingReader_MoveToAttribute, (XsdCachingReader * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x0246CAE0, void, XsdCachingReader_MoveToAttribute_1, (XsdCachingReader * __this, int32_t i, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFBCF0, XsdCachingReader_MoveToAttribute_1__MethodInfo); DO_APP_FUNC(0x0246CBD0, bool, XsdCachingReader_MoveToFirstAttribute, (XsdCachingReader * __this, MethodInfo * method)); DO_APP_FUNC(0x0246CC60, bool, XsdCachingReader_MoveToNextAttribute, (XsdCachingReader * __this, MethodInfo * method)); DO_APP_FUNC(0x0246CD00, bool, XsdCachingReader_MoveToElement, (XsdCachingReader * __this, MethodInfo * method)); @@ -57673,6 +66914,7 @@ DO_APP_FUNC(0x0246D530, void, XsdCachingReader_Skip, (XsdCachingReader * __this, DO_APP_FUNC(0x003BB3D0, XmlNameTable *, XsdCachingReader_get_NameTable, (XsdCachingReader * __this, MethodInfo * method)); DO_APP_FUNC(0x01B21190, String *, XsdCachingReader_LookupNamespace, (XsdCachingReader * __this, String * prefix, MethodInfo * method)); DO_APP_FUNC(0x0246D670, void, XsdCachingReader_ResolveEntity, (XsdCachingReader * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFBCE0, XsdCachingReader_ResolveEntity__MethodInfo); DO_APP_FUNC(0x0246D6C0, bool, XsdCachingReader_ReadAttributeValue, (XsdCachingReader * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, XsdCachingReader_System_Xml_IXmlLineInfo_HasLineInfo, (XsdCachingReader * __this, MethodInfo * method)); DO_APP_FUNC(0x0246D890, int32_t, XsdCachingReader_System_Xml_IXmlLineInfo_get_LineNumber, (XsdCachingReader * __this, MethodInfo * method)); @@ -57709,11 +66951,13 @@ DO_APP_FUNC(0x01A1DFA0, bool, XsdValidatingReader_get_IsEmptyElement, (XsdValida DO_APP_FUNC(0x0246FCF0, bool, XsdValidatingReader_get_IsDefault, (XsdValidatingReader * __this, MethodInfo * method)); DO_APP_FUNC(0x00A1B820, IXmlSchemaInfo *, XsdValidatingReader_get_SchemaInfo, (XsdValidatingReader * __this, MethodInfo * method)); DO_APP_FUNC(0x0246FD30, String *, XsdValidatingReader_ReadContentAsString, (XsdValidatingReader * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFBCC8, XsdValidatingReader_ReadContentAsString__MethodInfo); DO_APP_FUNC(0x01AFABA0, int32_t, XsdValidatingReader_get_AttributeCount, (XsdValidatingReader * __this, MethodInfo * method)); DO_APP_FUNC(0x02470050, String *, XsdValidatingReader_GetAttribute, (XsdValidatingReader * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x024700D0, String *, XsdValidatingReader_GetAttribute_1, (XsdValidatingReader * __this, String * name, String * namespaceURI, MethodInfo * method)); DO_APP_FUNC(0x02470200, bool, XsdValidatingReader_MoveToAttribute, (XsdValidatingReader * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x02470320, void, XsdValidatingReader_MoveToAttribute_1, (XsdValidatingReader * __this, int32_t i, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFBCB8, XsdValidatingReader_MoveToAttribute_1__MethodInfo); DO_APP_FUNC(0x02470550, bool, XsdValidatingReader_MoveToFirstAttribute, (XsdValidatingReader * __this, MethodInfo * method)); DO_APP_FUNC(0x02470870, bool, XsdValidatingReader_MoveToNextAttribute, (XsdValidatingReader * __this, MethodInfo * method)); DO_APP_FUNC(0x02470B80, bool, XsdValidatingReader_MoveToElement, (XsdValidatingReader * __this, MethodInfo * method)); @@ -57725,6 +66969,7 @@ DO_APP_FUNC(0x02470F40, void, XsdValidatingReader_Skip, (XsdValidatingReader * _ DO_APP_FUNC(0x00AED210, XmlNameTable *, XsdValidatingReader_get_NameTable, (XsdValidatingReader * __this, MethodInfo * method)); DO_APP_FUNC(0x024710E0, String *, XsdValidatingReader_LookupNamespace, (XsdValidatingReader * __this, String * prefix, MethodInfo * method)); DO_APP_FUNC(0x02471140, void, XsdValidatingReader_ResolveEntity, (XsdValidatingReader * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFBCD8, XsdValidatingReader_ResolveEntity__MethodInfo); DO_APP_FUNC(0x02471190, bool, XsdValidatingReader_ReadAttributeValue, (XsdValidatingReader * __this, MethodInfo * method)); DO_APP_FUNC(0x024713E0, bool, XsdValidatingReader_System_Xml_Schema_IXmlSchemaInfo_get_IsDefault, (XsdValidatingReader * __this, MethodInfo * method)); DO_APP_FUNC(0x02471470, bool, XsdValidatingReader_System_Xml_Schema_IXmlSchemaInfo_get_IsNil, (XsdValidatingReader * __this, MethodInfo * method)); @@ -57740,10 +66985,12 @@ DO_APP_FUNC(0x02471930, IDictionary_2_System_String_System_String_ *, XsdValidat DO_APP_FUNC(0x024719C0, String *, XsdValidatingReader_System_Xml_IXmlNamespaceResolver_LookupNamespace, (XsdValidatingReader * __this, String * prefix, MethodInfo * method)); DO_APP_FUNC(0x02471A50, String *, XsdValidatingReader_System_Xml_IXmlNamespaceResolver_LookupPrefix, (XsdValidatingReader * __this, String * namespaceName, MethodInfo * method)); DO_APP_FUNC(0x0244EB20, Object *, XsdValidatingReader_GetStringValue, (XsdValidatingReader * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFBD08, XsdValidatingReader_GetStringValue__MethodInfo); DO_APP_FUNC(0x02471AE0, XmlSchemaType *, XsdValidatingReader_get_ElementXmlType, (XsdValidatingReader * __this, MethodInfo * method)); DO_APP_FUNC(0x02471B10, XmlSchemaType *, XsdValidatingReader_get_AttributeXmlType, (XsdValidatingReader * __this, MethodInfo * method)); DO_APP_FUNC(0x02471B50, XmlSchemaInfo *, XsdValidatingReader_get_AttributeSchemaInfo, (XsdValidatingReader * __this, MethodInfo * method)); DO_APP_FUNC(0x02471B70, void, XsdValidatingReader_ProcessReaderEvent, (XsdValidatingReader * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFBCA8, XsdValidatingReader_ProcessReaderEvent__MethodInfo); DO_APP_FUNC(0x02471DB0, void, XsdValidatingReader_ProcessElementEvent, (XsdValidatingReader * __this, MethodInfo * method)); DO_APP_FUNC(0x024724F0, void, XsdValidatingReader_ProcessEndElementEvent, (XsdValidatingReader * __this, MethodInfo * method)); DO_APP_FUNC(0x024727B0, void, XsdValidatingReader_ValidateAttributes, (XsdValidatingReader * __this, MethodInfo * method)); @@ -57757,7 +67004,7 @@ DO_APP_FUNC(0x024732D0, bool, XsdValidatingReader_IsXSDRoot, (XsdValidatingReade DO_APP_FUNC(0x024732F0, void, XsdValidatingReader_ProcessInlineSchema, (XsdValidatingReader * __this, MethodInfo * method)); DO_APP_FUNC(0x02473430, Object *, XsdValidatingReader_InternalReadContentAsObject, (XsdValidatingReader * __this, MethodInfo * method)); DO_APP_FUNC(0x02473460, Object *, XsdValidatingReader_InternalReadContentAsObject_1, (XsdValidatingReader * __this, bool unwrapTypedValue, MethodInfo * method)); -DO_APP_FUNC(0x02473480, Object *, XsdValidatingReader_InternalReadContentAsObject_2, (XsdValidatingReader * __this, bool unwrapTypedValue, String * originalStringValue, MethodInfo * method)); +DO_APP_FUNC(0x02473480, Object *, XsdValidatingReader_InternalReadContentAsObject_2, (XsdValidatingReader * __this, bool unwrapTypedValue, String * * originalStringValue, MethodInfo * method)); DO_APP_FUNC(0x024737D0, Object *, XsdValidatingReader_ReadTillEndElement, (XsdValidatingReader * __this, MethodInfo * method)); DO_APP_FUNC(0x02473B40, void, XsdValidatingReader_SwitchReader, (XsdValidatingReader * __this, MethodInfo * method)); DO_APP_FUNC(0x02473C00, void, XsdValidatingReader_ReadAheadForMemberType, (XsdValidatingReader * __this, MethodInfo * method)); @@ -57767,12 +67014,14 @@ DO_APP_FUNC(0x024743C0, Object *, XsdValidatingReader_ReturnBoxedValue, (XsdVali DO_APP_FUNC(0x02474560, XsdCachingReader *, XsdValidatingReader_GetCachingReader, (XsdValidatingReader * __this, MethodInfo * method)); DO_APP_FUNC(0x02474790, ValidatingReaderNodeData *, XsdValidatingReader_CreateDummyTextNode, (XsdValidatingReader * __this, String * attributeValue, int32_t depth, MethodInfo * method)); DO_APP_FUNC(0x02474910, void, XsdValidatingReader_CachingCallBack, (XsdValidatingReader * __this, XsdCachingReader * cachingReader, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFBC58, XsdValidatingReader_CachingCallBack__MethodInfo); DO_APP_FUNC(0x024749F0, String *, XsdValidatingReader_GetOriginalAtomicValueStringOfElement, (XsdValidatingReader * __this, MethodInfo * method)); DO_APP_FUNC(0x02474AB0, void, DomNameTable__ctor, (DomNameTable * __this, XmlDocument * document, MethodInfo * method)); DO_APP_FUNC(0x02474C30, XmlName *, DomNameTable_GetName, (DomNameTable * __this, String * prefix, String * localName, String * ns, IXmlSchemaInfo * schemaInfo, MethodInfo * method)); DO_APP_FUNC(0x02474E50, XmlName *, DomNameTable_AddName, (DomNameTable * __this, String * prefix, String * localName, String * ns, IXmlSchemaInfo * schemaInfo, MethodInfo * method)); DO_APP_FUNC(0x024753D0, void, DomNameTable_Grow, (DomNameTable * __this, MethodInfo * method)); DO_APP_FUNC(0x02475560, void, XmlAttribute__ctor, (XmlAttribute * __this, XmlName * name, XmlDocument * doc, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFBC98, XmlAttribute__ctor__MethodInfo); DO_APP_FUNC(0x024757F0, void, XmlAttribute__ctor_1, (XmlAttribute * __this, String * prefix, String * localName, String * namespaceURI, XmlDocument * doc, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, XmlName *, XmlAttribute_get_XmlName, (XmlAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE960, void, XmlAttribute_set_XmlName, (XmlAttribute * __this, XmlName * value, MethodInfo * method)); @@ -57805,8 +67054,11 @@ DO_APP_FUNC(0x02476490, String *, XmlAttribute_get_BaseURI, (XmlAttribute * __th DO_APP_FUNC(0x003BCBE0, void, XmlAttribute_SetParent, (XmlAttribute * __this, XmlNode * node, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, XmlAttributeCollection__ctor, (XmlAttributeCollection * __this, XmlNode * parent, MethodInfo * method)); DO_APP_FUNC(0x02476530, XmlAttribute *, XmlAttributeCollection_get_ItemOf, (XmlAttributeCollection * __this, int32_t i, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4370, XmlAttributeCollection_get_ItemOf__MethodInfo); DO_APP_FUNC(0x02476630, XmlNode *, XmlAttributeCollection_SetNamedItem, (XmlAttributeCollection * __this, XmlNode * node, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB43A0, XmlAttributeCollection_SetNamedItem__MethodInfo); DO_APP_FUNC(0x024767E0, XmlAttribute *, XmlAttributeCollection_Append, (XmlAttributeCollection * __this, XmlAttribute * node, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4398, XmlAttributeCollection_Append__MethodInfo); DO_APP_FUNC(0x02476A30, XmlAttribute *, XmlAttributeCollection_Remove, (XmlAttributeCollection * __this, XmlAttribute * node, MethodInfo * method)); DO_APP_FUNC(0x02476AC0, XmlAttribute *, XmlAttributeCollection_RemoveAt, (XmlAttributeCollection * __this, int32_t i, MethodInfo * method)); DO_APP_FUNC(0x02476B80, void, XmlAttributeCollection_RemoveAll, (XmlAttributeCollection * __this, MethodInfo * method)); @@ -57847,6 +67099,7 @@ DO_APP_FUNC(0x02478030, bool, XmlChildEnumerator_MoveNext, (XmlChildEnumerator * DO_APP_FUNC(0x02478160, void, XmlChildEnumerator_System_Collections_IEnumerator_Reset, (XmlChildEnumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x024781E0, Object *, XmlChildEnumerator_System_Collections_IEnumerator_get_Current, (XmlChildEnumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x024781E0, XmlNode *, XmlChildEnumerator_get_Current, (XmlChildEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4368, XmlChildEnumerator_get_Current__MethodInfo); DO_APP_FUNC(0x003BCBE0, void, XmlChildNodes__ctor, (XmlChildNodes * __this, XmlNode * container, MethodInfo * method)); DO_APP_FUNC(0x02478270, XmlNode *, XmlChildNodes_Item, (XmlChildNodes * __this, int32_t i, MethodInfo * method)); DO_APP_FUNC(0x024782E0, int32_t, XmlChildNodes_get_Count, (XmlChildNodes * __this, MethodInfo * method)); @@ -57859,16 +67112,19 @@ DO_APP_FUNC(0x02478450, XmlNode *, XmlComment_CloneNode, (XmlComment * __this, b DO_APP_FUNC(0x024784C0, void, XmlComment_WriteTo, (XmlComment * __this, XmlWriter * w, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, XmlComment_WriteContentTo, (XmlComment * __this, XmlWriter * w, MethodInfo * method)); DO_APP_FUNC(0x02478510, void, XmlDeclaration__ctor, (XmlDeclaration * __this, String * version, String * encoding, String * standalone, XmlDocument * doc, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4348, XmlDeclaration__ctor__MethodInfo); DO_APP_FUNC(0x003BB3E0, String *, XmlDeclaration_get_Version, (XmlDeclaration * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCDE0, void, XmlDeclaration_set_Version, (XmlDeclaration * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x003BB3B0, String *, XmlDeclaration_get_Encoding, (XmlDeclaration * __this, MethodInfo * method)); DO_APP_FUNC(0x02478880, void, XmlDeclaration_set_Encoding, (XmlDeclaration * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x003BB330, String *, XmlDeclaration_get_Standalone, (XmlDeclaration * __this, MethodInfo * method)); DO_APP_FUNC(0x02478930, void, XmlDeclaration_set_Standalone, (XmlDeclaration * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4340, XmlDeclaration_set_Standalone__MethodInfo); DO_APP_FUNC(0x02475990, String *, XmlDeclaration_get_Value, (XmlDeclaration * __this, MethodInfo * method)); DO_APP_FUNC(0x024759B0, void, XmlDeclaration_set_Value, (XmlDeclaration * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x02478B90, String *, XmlDeclaration_get_InnerText, (XmlDeclaration * __this, MethodInfo * method)); DO_APP_FUNC(0x02478D20, void, XmlDeclaration_set_InnerText, (XmlDeclaration * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB42F0, XmlDeclaration_set_InnerText__MethodInfo); DO_APP_FUNC(0x02478FB0, String *, XmlDeclaration_get_Name, (XmlDeclaration * __this, MethodInfo * method)); DO_APP_FUNC(0x02478FF0, String *, XmlDeclaration_get_LocalName, (XmlDeclaration * __this, MethodInfo * method)); DO_APP_FUNC(0x022CB8D0, XmlNodeType__Enum, XmlDeclaration_get_NodeType, (XmlDeclaration * __this, MethodInfo * method)); @@ -57882,9 +67138,11 @@ DO_APP_FUNC(0x02479310, void, XmlDocument__ctor_2, (XmlDocument * __this, XmlImp DO_APP_FUNC(0x003CD530, SchemaInfo *, XmlDocument_get_DtdSchemaInfo, (XmlDocument * __this, MethodInfo * method)); DO_APP_FUNC(0x00421740, void, XmlDocument_set_DtdSchemaInfo, (XmlDocument * __this, SchemaInfo * value, MethodInfo * method)); DO_APP_FUNC(0x02479EB0, void, XmlDocument_CheckName, (String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB42F8, XmlDocument_CheckName__MethodInfo); DO_APP_FUNC(0x02479F80, XmlName *, XmlDocument_AddXmlName, (XmlDocument * __this, String * prefix, String * localName, String * namespaceURI, IXmlSchemaInfo * schemaInfo, MethodInfo * method)); DO_APP_FUNC(0x02479FB0, XmlName *, XmlDocument_GetXmlName, (XmlDocument * __this, String * prefix, String * localName, String * namespaceURI, IXmlSchemaInfo * schemaInfo, MethodInfo * method)); DO_APP_FUNC(0x02479FE0, XmlName *, XmlDocument_AddAttrXmlName, (XmlDocument * __this, String * prefix, String * localName, String * namespaceURI, IXmlSchemaInfo * schemaInfo, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4308, XmlDocument_AddAttrXmlName__MethodInfo); DO_APP_FUNC(0x0247A120, bool, XmlDocument_AddIdInfo, (XmlDocument * __this, XmlName * eleName, XmlName * attrName, MethodInfo * method)); DO_APP_FUNC(0x0247A250, XmlName *, XmlDocument_GetIDInfoByElement_, (XmlDocument * __this, XmlName * eleName, MethodInfo * method)); DO_APP_FUNC(0x0247A370, XmlName *, XmlDocument_GetIDInfoByElement, (XmlDocument * __this, XmlName * eleName, MethodInfo * method)); @@ -57909,10 +67167,11 @@ DO_APP_FUNC(0x004EC420, bool, XmlDocument_get_CanReportValidity, (XmlDocument * DO_APP_FUNC(0x01D69E50, bool, XmlDocument_get_HasSetResolver, (XmlDocument * __this, MethodInfo * method)); DO_APP_FUNC(0x0053E000, XmlResolver *, XmlDocument_GetResolver, (XmlDocument * __this, MethodInfo * method)); DO_APP_FUNC(0x0247B020, bool, XmlDocument_IsValidChildType, (XmlDocument * __this, XmlNodeType__Enum type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB42B0, XmlDocument_IsValidChildType__MethodInfo); DO_APP_FUNC(0x0247B200, bool, XmlDocument_HasNodeTypeInPrevSiblings, (XmlDocument * __this, XmlNodeType__Enum nt, XmlNode * refNode, MethodInfo * method)); DO_APP_FUNC(0x0247B2F0, bool, XmlDocument_HasNodeTypeInNextSiblings, (XmlDocument * __this, XmlNodeType__Enum nt, XmlNode * refNode, MethodInfo * method)); DO_APP_FUNC(0x0247B370, bool, XmlDocument_CanInsertAfter, (XmlDocument * __this, XmlNode * newChild, XmlNode * refChild, MethodInfo * method)); -DO_APP_FUNC(0x0247B540, void, XmlDocument_SetDefaultNamespace, (XmlDocument * __this, String * prefix, String * localName, String * namespaceURI, MethodInfo * method)); +DO_APP_FUNC(0x0247B540, void, XmlDocument_SetDefaultNamespace, (XmlDocument * __this, String * prefix, String * localName, String * * namespaceURI, MethodInfo * method)); DO_APP_FUNC(0x0247B710, XmlCDataSection *, XmlDocument_CreateCDataSection, (XmlDocument * __this, String * data, MethodInfo * method)); DO_APP_FUNC(0x0247B790, XmlComment *, XmlDocument_CreateComment, (XmlDocument * __this, String * data, MethodInfo * method)); DO_APP_FUNC(0x0247B810, XmlDocumentType *, XmlDocument_CreateDocumentType, (XmlDocument * __this, String * name, String * publicId, String * systemId, String * internalSubset, MethodInfo * method)); @@ -57927,6 +67186,7 @@ DO_APP_FUNC(0x0247C190, XmlText *, XmlDocument_CreateTextNode, (XmlDocument * __ DO_APP_FUNC(0x0247C210, XmlSignificantWhitespace *, XmlDocument_CreateSignificantWhitespace, (XmlDocument * __this, String * text, MethodInfo * method)); DO_APP_FUNC(0x0247C290, XmlWhitespace *, XmlDocument_CreateWhitespace, (XmlDocument * __this, String * text, MethodInfo * method)); DO_APP_FUNC(0x0247C310, XmlNode *, XmlDocument_ImportNodeInternal, (XmlDocument * __this, XmlNode * node, bool deep, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4258, XmlDocument_ImportNodeInternal__MethodInfo); DO_APP_FUNC(0x0247CA60, void, XmlDocument_ImportAttributes, (XmlDocument * __this, XmlNode * fromElem, XmlNode * toElem, MethodInfo * method)); DO_APP_FUNC(0x0247CBD0, void, XmlDocument_ImportChildren, (XmlDocument * __this, XmlNode * fromNode, XmlNode * toNode, bool deep, MethodInfo * method)); DO_APP_FUNC(0x02475970, XmlNameTable *, XmlDocument_get_NameTable, (XmlDocument * __this, MethodInfo * method)); @@ -57944,6 +67204,7 @@ DO_APP_FUNC(0x0247D0D0, XmlTextReader *, XmlDocument_SetupReader, (XmlDocument * DO_APP_FUNC(0x0247D140, void, XmlDocument_Load, (XmlDocument * __this, XmlReader * reader, MethodInfo * method)); DO_APP_FUNC(0x0247D260, void, XmlDocument_LoadXml, (XmlDocument * __this, String * xml, MethodInfo * method)); DO_APP_FUNC(0x0247D550, void, XmlDocument_set_InnerText, (XmlDocument * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4220, XmlDocument_set_InnerText__MethodInfo); DO_APP_FUNC(0x0247D5C0, void, XmlDocument_set_InnerXml, (XmlDocument * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x01FEC700, void, XmlDocument_WriteTo, (XmlDocument * __this, XmlWriter * w, MethodInfo * method)); DO_APP_FUNC(0x0247D5E0, void, XmlDocument_WriteContentTo, (XmlDocument * __this, XmlWriter * xw, MethodInfo * method)); @@ -57956,8 +67217,10 @@ DO_APP_FUNC(0x0247DE60, XmlEntity *, XmlDocument_GetEntityNode, (XmlDocument * _ DO_APP_FUNC(0x0087FEC0, String *, XmlDocument_get_BaseURI, (XmlDocument * __this, MethodInfo * method)); DO_APP_FUNC(0x0087FED0, void, XmlDocument_SetBaseURI, (XmlDocument * __this, String * inBaseURI, MethodInfo * method)); DO_APP_FUNC(0x0247DF50, XmlNode *, XmlDocument_AppendChildForLoad, (XmlDocument * __this, XmlNode * newChild, XmlDocument * doc, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB41D0, XmlDocument_AppendChildForLoad__MethodInfo); DO_APP_FUNC(0x0247E260, void, XmlDocument__cctor, (MethodInfo * method)); DO_APP_FUNC(0x0247E500, void, XmlDocumentFragment__ctor, (XmlDocumentFragment * __this, XmlDocument * ownerDocument, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB41B0, XmlDocumentFragment__ctor__MethodInfo); DO_APP_FUNC(0x0247E5D0, String *, XmlDocumentFragment_get_Name, (XmlDocumentFragment * __this, MethodInfo * method)); DO_APP_FUNC(0x0247E5D0, String *, XmlDocumentFragment_get_LocalName, (XmlDocumentFragment * __this, MethodInfo * method)); DO_APP_FUNC(0x01B8B750, XmlNodeType__Enum, XmlDocumentFragment_get_NodeType, (XmlDocumentFragment * __this, MethodInfo * method)); @@ -57989,6 +67252,7 @@ DO_APP_FUNC(0x003AE050, void, XmlDocumentType_WriteContentTo, (XmlDocumentType * DO_APP_FUNC(0x003C7490, SchemaInfo *, XmlDocumentType_get_DtdSchemaInfo, (XmlDocumentType * __this, MethodInfo * method)); DO_APP_FUNC(0x003C74A0, void, XmlDocumentType_set_DtdSchemaInfo, (XmlDocumentType * __this, SchemaInfo * value, MethodInfo * method)); DO_APP_FUNC(0x0247F090, void, XmlElement__ctor, (XmlElement * __this, XmlName * name, bool empty, XmlDocument * doc, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB41E8, XmlElement__ctor__MethodInfo); DO_APP_FUNC(0x0247F2D0, void, XmlElement__ctor_1, (XmlElement * __this, String * prefix, String * localName, String * namespaceURI, XmlDocument * doc, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, XmlName *, XmlElement_get_XmlName, (XmlElement * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCDE0, void, XmlElement_set_XmlName, (XmlElement * __this, XmlName * value, MethodInfo * method)); @@ -58010,6 +67274,7 @@ DO_APP_FUNC(0x0247FD20, bool, XmlElement_IsValidChildType, (XmlElement * __this, DO_APP_FUNC(0x0247FD80, XmlAttributeCollection *, XmlElement_get_Attributes, (XmlElement * __this, MethodInfo * method)); DO_APP_FUNC(0x0247FFF0, bool, XmlElement_get_HasAttributes, (XmlElement * __this, MethodInfo * method)); DO_APP_FUNC(0x02480030, XmlAttribute *, XmlElement_SetAttributeNode, (XmlElement * __this, XmlAttribute * newAttr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4150, XmlElement_SetAttributeNode__MethodInfo); DO_APP_FUNC(0x02480170, void, XmlElement_WriteTo, (XmlElement * __this, XmlWriter * w, MethodInfo * method)); DO_APP_FUNC(0x02480280, void, XmlElement_WriteElementTo, (XmlWriter * writer, XmlElement * e, MethodInfo * method)); DO_APP_FUNC(0x02480510, void, XmlElement_WriteStartElement, (XmlElement * __this, XmlWriter * w, MethodInfo * method)); @@ -58024,11 +67289,13 @@ DO_APP_FUNC(0x02480910, XmlNode *, XmlElement_get_NextSibling, (XmlElement * __t DO_APP_FUNC(0x003BCBE0, void, XmlElement_SetParent, (XmlElement * __this, XmlNode * node, MethodInfo * method)); DO_APP_FUNC(0x02480950, void, XmlEntity__ctor, (XmlEntity * __this, String * name, String * strdata, String * publicId, String * systemId, String * notationName, XmlDocument * doc, MethodInfo * method)); DO_APP_FUNC(0x02480C70, XmlNode *, XmlEntity_CloneNode, (XmlEntity * __this, bool deep, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4198, XmlEntity_CloneNode__MethodInfo); DO_APP_FUNC(0x0041AEF0, bool, XmlEntity_get_IsReadOnly, (XmlEntity * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB330, String *, XmlEntity_get_Name, (XmlEntity * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB330, String *, XmlEntity_get_LocalName, (XmlEntity * __this, MethodInfo * method)); DO_APP_FUNC(0x02480810, String *, XmlEntity_get_InnerText, (XmlEntity * __this, MethodInfo * method)); DO_APP_FUNC(0x02480CE0, void, XmlEntity_set_InnerText, (XmlEntity * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB41A8, XmlEntity_set_InnerText__MethodInfo); DO_APP_FUNC(0x0041AEF0, bool, XmlEntity_get_IsContainer, (XmlEntity * __this, MethodInfo * method)); DO_APP_FUNC(0x02480D50, XmlLinkedNode *, XmlEntity_get_LastNode, (XmlEntity * __this, MethodInfo * method)); DO_APP_FUNC(0x00421740, void, XmlEntity_set_LastNode, (XmlEntity * __this, XmlLinkedNode * value, MethodInfo * method)); @@ -58036,15 +67303,18 @@ DO_APP_FUNC(0x02480E60, bool, XmlEntity_IsValidChildType, (XmlEntity * __this, X DO_APP_FUNC(0x01AA4150, XmlNodeType__Enum, XmlEntity_get_NodeType, (XmlEntity * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, String *, XmlEntity_get_SystemId, (XmlEntity * __this, MethodInfo * method)); DO_APP_FUNC(0x02480E80, void, XmlEntity_set_InnerXml, (XmlEntity * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4188, XmlEntity_set_InnerXml__MethodInfo); DO_APP_FUNC(0x003AE050, void, XmlEntity_WriteTo, (XmlEntity * __this, XmlWriter * w, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, XmlEntity_WriteContentTo, (XmlEntity * __this, XmlWriter * w, MethodInfo * method)); DO_APP_FUNC(0x003C7390, String *, XmlEntity_get_BaseURI, (XmlEntity * __this, MethodInfo * method)); DO_APP_FUNC(0x003C73A0, void, XmlEntity_SetBaseURI, (XmlEntity * __this, String * inBaseURI, MethodInfo * method)); DO_APP_FUNC(0x02480EF0, void, XmlEntityReference__ctor, (XmlEntityReference * __this, String * name, XmlDocument * doc, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4168, XmlEntityReference__ctor__MethodInfo); DO_APP_FUNC(0x003BB3E0, String *, XmlEntityReference_get_Name, (XmlEntityReference * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, String *, XmlEntityReference_get_LocalName, (XmlEntityReference * __this, MethodInfo * method)); DO_APP_FUNC(0x003CB690, String *, XmlEntityReference_get_Value, (XmlEntityReference * __this, MethodInfo * method)); DO_APP_FUNC(0x02481030, void, XmlEntityReference_set_Value, (XmlEntityReference * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4178, XmlEntityReference_set_Value__MethodInfo); DO_APP_FUNC(0x01164370, XmlNodeType__Enum, XmlEntityReference_get_NodeType, (XmlEntityReference * __this, MethodInfo * method)); DO_APP_FUNC(0x024810A0, XmlNode *, XmlEntityReference_CloneNode, (XmlEntityReference * __this, bool deep, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, XmlEntityReference_get_IsReadOnly, (XmlEntityReference * __this, MethodInfo * method)); @@ -58068,20 +67338,27 @@ DO_APP_FUNC(0x02481AD0, XmlNode *, XmlLinkedNode_get_PreviousSibling, (XmlLinked DO_APP_FUNC(0x02481B60, XmlNode *, XmlLinkedNode_get_NextSibling, (XmlLinkedNode * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, XmlLoader__ctor, (XmlLoader * __this, MethodInfo * method)); DO_APP_FUNC(0x02481BC0, void, XmlLoader_Load, (XmlLoader * __this, XmlDocument * doc, XmlReader * reader, bool preserveWhitespace, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4108, XmlLoader_Load__MethodInfo); DO_APP_FUNC(0x02481FC0, void, XmlLoader_LoadDocSequence, (XmlLoader * __this, XmlDocument * parentDoc, MethodInfo * method)); DO_APP_FUNC(0x02482040, XmlNode *, XmlLoader_ReadCurrentNode, (XmlLoader * __this, XmlDocument * doc, XmlReader * reader, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4118, XmlLoader_ReadCurrentNode__MethodInfo); DO_APP_FUNC(0x02482280, XmlNode *, XmlLoader_LoadNode, (XmlLoader * __this, bool skipOverWhitespace, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4138, XmlLoader_LoadNode__MethodInfo); DO_APP_FUNC(0x02482A30, XmlAttribute *, XmlLoader_LoadAttributeNode, (XmlLoader * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4130, XmlLoader_LoadAttributeNode__MethodInfo); DO_APP_FUNC(0x02482DE0, XmlAttribute *, XmlLoader_LoadDefaultAttribute, (XmlLoader * __this, MethodInfo * method)); DO_APP_FUNC(0x02483010, void, XmlLoader_LoadAttributeValue, (XmlLoader * __this, XmlNode * parent, bool direct, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4128, XmlLoader_LoadAttributeValue__MethodInfo); DO_APP_FUNC(0x02483370, XmlEntityReference *, XmlLoader_LoadEntityReferenceNode, (XmlLoader * __this, bool direct, MethodInfo * method)); DO_APP_FUNC(0x024835E0, XmlDeclaration *, XmlLoader_LoadDeclarationNode, (XmlLoader * __this, MethodInfo * method)); DO_APP_FUNC(0x02483860, XmlDocumentType *, XmlLoader_LoadDocumentTypeNode, (XmlLoader * __this, MethodInfo * method)); DO_APP_FUNC(0x02483B00, XmlNode *, XmlLoader_LoadNodeDirect, (XmlLoader * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB40C8, XmlLoader_LoadNodeDirect__MethodInfo); DO_APP_FUNC(0x02484140, XmlAttribute *, XmlLoader_LoadAttributeNodeDirect, (XmlLoader * __this, MethodInfo * method)); DO_APP_FUNC(0x02484340, void, XmlLoader_ParseDocumentType, (XmlLoader * __this, XmlDocumentType * dtNode, MethodInfo * method)); DO_APP_FUNC(0x024843C0, void, XmlLoader_ParseDocumentType_1, (XmlLoader * __this, XmlDocumentType * dtNode, bool bUseResolver, XmlResolver * resolver, MethodInfo * method)); DO_APP_FUNC(0x02484780, void, XmlLoader_LoadDocumentType, (XmlLoader * __this, IDtdInfo * dtdInfo, XmlDocumentType * dtNode, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB40F8, XmlLoader_LoadDocumentType__MethodInfo); DO_APP_FUNC(0x02485970, XmlParserContext *, XmlLoader_GetContext, (XmlLoader * __this, XmlNode * node, MethodInfo * method)); DO_APP_FUNC(0x02486420, XmlNamespaceManager *, XmlLoader_ParsePartialContent, (XmlLoader * __this, XmlNode * parentNode, String * innerxmltext, XmlNodeType__Enum nt, MethodInfo * method)); DO_APP_FUNC(0x02486720, void, XmlLoader_LoadInnerXmlElement, (XmlLoader * __this, XmlElement * node, String * innerxmltext, MethodInfo * method)); @@ -58090,8 +67367,9 @@ DO_APP_FUNC(0x024868E0, void, XmlLoader_RemoveDuplicateNamespace, (XmlLoader * _ DO_APP_FUNC(0x02486CA0, String *, XmlLoader_EntitizeName, (XmlLoader * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x02486D00, void, XmlLoader_ExpandEntity, (XmlLoader * __this, XmlEntity * ent, MethodInfo * method)); DO_APP_FUNC(0x02486DC0, void, XmlLoader_ExpandEntityReference, (XmlLoader * __this, XmlEntityReference * eref, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB40D8, XmlLoader_ExpandEntityReference__MethodInfo); DO_APP_FUNC(0x02487530, XmlReader *, XmlLoader_CreateInnerXmlReader, (XmlLoader * __this, String * xmlFragment, XmlNodeType__Enum nt, XmlParserContext * context, XmlDocument * doc, MethodInfo * method)); -DO_APP_FUNC(0x024877A0, void, XmlLoader_ParseXmlDeclarationValue, (String * strValue, String * version, String * encoding, String * standalone, MethodInfo * method)); +DO_APP_FUNC(0x024877A0, void, XmlLoader_ParseXmlDeclarationValue, (String * strValue, String * * version, String * * encoding, String * * standalone, MethodInfo * method)); DO_APP_FUNC(0x02487CE0, Exception *, XmlLoader_UnexpectedNodeType, (XmlNodeType__Enum nodetype, MethodInfo * method)); DO_APP_FUNC(0x02487E70, XmlName *, XmlName_Create, (String * prefix, String * localName, String * ns, int32_t hashCode, XmlDocument * ownerDoc, XmlName * next, IXmlSchemaInfo * schemaInfo, MethodInfo * method)); DO_APP_FUNC(0x02487FA0, void, XmlName__ctor, (XmlName * __this, String * prefix, String * localName, String * ns, int32_t hashCode, XmlDocument * ownerDoc, XmlName * next, MethodInfo * method)); @@ -58134,20 +67412,26 @@ DO_APP_FUNC(0x02489210, XmlNode *, XmlNamedNodeMap_AddNodeForLoad, (XmlNamedNode DO_APP_FUNC(0x024892D0, XmlNode *, XmlNamedNodeMap_RemoveNodeAt, (XmlNamedNodeMap * __this, int32_t i, MethodInfo * method)); DO_APP_FUNC(0x02489440, XmlNode *, XmlNamedNodeMap_ReplaceNodeAt, (XmlNamedNodeMap * __this, int32_t i, XmlNode * node, MethodInfo * method)); DO_APP_FUNC(0x024894B0, XmlNode *, XmlNamedNodeMap_InsertNodeAt, (XmlNamedNodeMap * __this, int32_t i, XmlNode * node, MethodInfo * method)); -DO_APP_FUNC(0x02489660, int32_t, XmlNamedNodeMap_SmallXmlNodeList_get_Count, (XmlNamedNodeMap_SmallXmlNodeList__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x024896F0, Object *, XmlNamedNodeMap_SmallXmlNodeList_get_Item, (XmlNamedNodeMap_SmallXmlNodeList__Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x02489830, void, XmlNamedNodeMap_SmallXmlNodeList_Add, (XmlNamedNodeMap_SmallXmlNodeList__Boxed * __this, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x02489A80, void, XmlNamedNodeMap_SmallXmlNodeList_RemoveAt, (XmlNamedNodeMap_SmallXmlNodeList__Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x02489BC0, void, XmlNamedNodeMap_SmallXmlNodeList_Insert, (XmlNamedNodeMap_SmallXmlNodeList__Boxed * __this, int32_t index, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x02489DE0, IEnumerator *, XmlNamedNodeMap_SmallXmlNodeList_GetEnumerator, (XmlNamedNodeMap_SmallXmlNodeList__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02489660, int32_t, XmlNamedNodeMap_SmallXmlNodeList_get_Count, (XmlNamedNodeMap_SmallXmlNodeList * __this, MethodInfo * method)); +DO_APP_FUNC(0x024896F0, Object *, XmlNamedNodeMap_SmallXmlNodeList_get_Item, (XmlNamedNodeMap_SmallXmlNodeList * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC818, XmlNamedNodeMap_SmallXmlNodeList_get_Item__MethodInfo); +DO_APP_FUNC(0x02489830, void, XmlNamedNodeMap_SmallXmlNodeList_Add, (XmlNamedNodeMap_SmallXmlNodeList * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x02489A80, void, XmlNamedNodeMap_SmallXmlNodeList_RemoveAt, (XmlNamedNodeMap_SmallXmlNodeList * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC828, XmlNamedNodeMap_SmallXmlNodeList_RemoveAt__MethodInfo); +DO_APP_FUNC(0x02489BC0, void, XmlNamedNodeMap_SmallXmlNodeList_Insert, (XmlNamedNodeMap_SmallXmlNodeList * __this, int32_t index, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC7E8, XmlNamedNodeMap_SmallXmlNodeList_Insert__MethodInfo); +DO_APP_FUNC(0x02489DE0, IEnumerator *, XmlNamedNodeMap_SmallXmlNodeList_GetEnumerator, (XmlNamedNodeMap_SmallXmlNodeList * __this, MethodInfo * method)); DO_APP_FUNC(0x019CA400, void, XmlNamedNodeMap_SmallXmlNodeList_SingleObjectEnumerator__ctor, (XmlNamedNodeMap_SmallXmlNodeList_SingleObjectEnumerator * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x02489F30, Object *, XmlNamedNodeMap_SmallXmlNodeList_SingleObjectEnumerator_get_Current, (XmlNamedNodeMap_SmallXmlNodeList_SingleObjectEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC808, XmlNamedNodeMap_SmallXmlNodeList_SingleObjectEnumerator_get_Current__MethodInfo); DO_APP_FUNC(0x02489F90, bool, XmlNamedNodeMap_SmallXmlNodeList_SingleObjectEnumerator_MoveNext, (XmlNamedNodeMap_SmallXmlNodeList_SingleObjectEnumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x006DDC60, void, XmlNamedNodeMap_SmallXmlNodeList_SingleObjectEnumerator_Reset, (XmlNamedNodeMap_SmallXmlNodeList_SingleObjectEnumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, XmlNode__ctor, (XmlNode * __this, MethodInfo * method)); DO_APP_FUNC(0x02489FB0, void, XmlNode__ctor_1, (XmlNode * __this, XmlDocument * doc, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC800, XmlNode__ctor_1__MethodInfo); DO_APP_FUNC(0x003CB690, String *, XmlNode_get_Value, (XmlNode * __this, MethodInfo * method)); DO_APP_FUNC(0x0248A080, void, XmlNode_set_Value, (XmlNode * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC7F0, XmlNode_set_Value__MethodInfo); DO_APP_FUNC(0x0248A160, XmlNode *, XmlNode_get_ParentNode, (XmlNode * __this, MethodInfo * method)); DO_APP_FUNC(0x0248A240, XmlNodeList *, XmlNode_get_ChildNodes, (XmlNode * __this, MethodInfo * method)); DO_APP_FUNC(0x003CB690, XmlNode *, XmlNode_get_PreviousSibling, (XmlNode * __this, MethodInfo * method)); @@ -58161,7 +67445,9 @@ DO_APP_FUNC(0x003CB690, XmlLinkedNode *, XmlNode_get_LastNode, (XmlNode * __this DO_APP_FUNC(0x003AE050, void, XmlNode_set_LastNode, (XmlNode * __this, XmlLinkedNode * value, MethodInfo * method)); DO_APP_FUNC(0x0248A400, bool, XmlNode_AncestorNode, (XmlNode * __this, XmlNode * node, MethodInfo * method)); DO_APP_FUNC(0x0248A480, XmlNode *, XmlNode_RemoveChild, (XmlNode * __this, XmlNode * oldChild, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC6E8, XmlNode_RemoveChild__MethodInfo); DO_APP_FUNC(0x0248AA50, XmlNode *, XmlNode_AppendChild, (XmlNode * __this, XmlNode * newChild, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC708, XmlNode_AppendChild__MethodInfo); DO_APP_FUNC(0x0248B140, XmlNode *, XmlNode_AppendChildForLoad, (XmlNode * __this, XmlNode * newChild, XmlDocument * doc, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, XmlNode_IsValidChildType, (XmlNode * __this, XmlNodeType__Enum type, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, XmlNode_CanInsertAfter, (XmlNode * __this, XmlNode * newChild, XmlNode * refChild, MethodInfo * method)); @@ -58178,12 +67464,14 @@ DO_APP_FUNC(0x0248B8B0, void, XmlNode_AppendChildText, (XmlNode * __this, String DO_APP_FUNC(0x0248B9E0, String *, XmlNode_get_InnerText, (XmlNode * __this, MethodInfo * method)); DO_APP_FUNC(0x0248BB20, void, XmlNode_set_InnerText, (XmlNode * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x0248BC30, void, XmlNode_set_InnerXml, (XmlNode * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC638, XmlNode_set_InnerXml__MethodInfo); DO_APP_FUNC(0x0248BCA0, String *, XmlNode_get_BaseURI, (XmlNode * __this, MethodInfo * method)); DO_APP_FUNC(0x0248BDD0, void, XmlNode_RemoveAll, (XmlNode * __this, MethodInfo * method)); DO_APP_FUNC(0x0248BE50, void, XmlNode_SetParent, (XmlNode * __this, XmlNode * node, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, XmlNode_SetParentForLoad, (XmlNode * __this, XmlNode * node, MethodInfo * method)); DO_APP_FUNC(0x0248BF30, XmlNode *, XmlNode_FindChild, (XmlNode * __this, XmlNodeType__Enum type, MethodInfo * method)); DO_APP_FUNC(0x0248BFC0, XmlNodeChangedEventArgs *, XmlNode_GetEventArgs, (XmlNode * __this, XmlNode * node, XmlNode * oldParent, XmlNode * newParent, String * oldValue, String * newValue, XmlNodeChangedAction__Enum action, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC660, XmlNode_GetEventArgs__MethodInfo); DO_APP_FUNC(0x0248C100, void, XmlNode_BeforeEvent, (XmlNode * __this, XmlNodeChangedEventArgs * args, MethodInfo * method)); DO_APP_FUNC(0x0248C150, void, XmlNode_AfterEvent, (XmlNode * __this, XmlNodeChangedEventArgs * args, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, XmlNode_get_IsText, (XmlNode * __this, MethodInfo * method)); @@ -58202,8 +67490,10 @@ DO_APP_FUNC(0x003BB3B0, String *, XmlNotation_get_Name, (XmlNotation * __this, M DO_APP_FUNC(0x003BB3B0, String *, XmlNotation_get_LocalName, (XmlNotation * __this, MethodInfo * method)); DO_APP_FUNC(0x00EAA7B0, XmlNodeType__Enum, XmlNotation_get_NodeType, (XmlNotation * __this, MethodInfo * method)); DO_APP_FUNC(0x0248C6F0, XmlNode *, XmlNotation_CloneNode, (XmlNotation * __this, bool deep, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC640, XmlNotation_CloneNode__MethodInfo); DO_APP_FUNC(0x0041AEF0, bool, XmlNotation_get_IsReadOnly, (XmlNotation * __this, MethodInfo * method)); DO_APP_FUNC(0x0248C760, void, XmlNotation_set_InnerXml, (XmlNotation * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC608, XmlNotation_set_InnerXml__MethodInfo); DO_APP_FUNC(0x003AE050, void, XmlNotation_WriteTo, (XmlNotation * __this, XmlWriter * w, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, XmlNotation_WriteContentTo, (XmlNotation * __this, XmlWriter * w, MethodInfo * method)); DO_APP_FUNC(0x0248C7D0, void, XmlProcessingInstruction__ctor, (XmlProcessingInstruction * __this, String * target, String * data, XmlDocument * doc, MethodInfo * method)); @@ -58219,6 +67509,7 @@ DO_APP_FUNC(0x0248CA20, XmlNode *, XmlProcessingInstruction_CloneNode, (XmlProce DO_APP_FUNC(0x0248CA70, void, XmlProcessingInstruction_WriteTo, (XmlProcessingInstruction * __this, XmlWriter * w, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, XmlProcessingInstruction_WriteContentTo, (XmlProcessingInstruction * __this, XmlWriter * w, MethodInfo * method)); DO_APP_FUNC(0x0248CAB0, void, XmlSignificantWhitespace__ctor, (XmlSignificantWhitespace * __this, String * strData, XmlDocument * doc, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC620, XmlSignificantWhitespace__ctor__MethodInfo); DO_APP_FUNC(0x0248CBB0, String *, XmlSignificantWhitespace_get_Name, (XmlSignificantWhitespace * __this, MethodInfo * method)); DO_APP_FUNC(0x0248CBB0, String *, XmlSignificantWhitespace_get_LocalName, (XmlSignificantWhitespace * __this, MethodInfo * method)); DO_APP_FUNC(0x01AE9AB0, XmlNodeType__Enum, XmlSignificantWhitespace_get_NodeType, (XmlSignificantWhitespace * __this, MethodInfo * method)); @@ -58226,6 +67517,7 @@ DO_APP_FUNC(0x0248CBE0, XmlNode *, XmlSignificantWhitespace_get_ParentNode, (Xml DO_APP_FUNC(0x0248CC90, XmlNode *, XmlSignificantWhitespace_CloneNode, (XmlSignificantWhitespace * __this, bool deep, MethodInfo * method)); DO_APP_FUNC(0x02477D40, String *, XmlSignificantWhitespace_get_Value, (XmlSignificantWhitespace * __this, MethodInfo * method)); DO_APP_FUNC(0x0248CD00, void, XmlSignificantWhitespace_set_Value, (XmlSignificantWhitespace * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC618, XmlSignificantWhitespace_set_Value__MethodInfo); DO_APP_FUNC(0x0248CE10, void, XmlSignificantWhitespace_WriteTo, (XmlSignificantWhitespace * __this, XmlWriter * w, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, XmlSignificantWhitespace_WriteContentTo, (XmlSignificantWhitespace * __this, XmlWriter * w, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, XmlSignificantWhitespace_get_IsText, (XmlSignificantWhitespace * __this, MethodInfo * method)); @@ -58250,12 +67542,14 @@ DO_APP_FUNC(0x0248D230, XmlNode *, XmlUnspecifiedAttribute_AppendChild, (XmlUnsp DO_APP_FUNC(0x0248D2C0, void, XmlUnspecifiedAttribute_WriteTo, (XmlUnspecifiedAttribute * __this, XmlWriter * w, MethodInfo * method)); DO_APP_FUNC(0x00424C20, void, XmlUnspecifiedAttribute_SetSpecified, (XmlUnspecifiedAttribute * __this, bool f, MethodInfo * method)); DO_APP_FUNC(0x0248D3A0, void, XmlWhitespace__ctor, (XmlWhitespace * __this, String * strData, XmlDocument * doc, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC6B0, XmlWhitespace__ctor__MethodInfo); DO_APP_FUNC(0x0248D4A0, String *, XmlWhitespace_get_Name, (XmlWhitespace * __this, MethodInfo * method)); DO_APP_FUNC(0x0248D4A0, String *, XmlWhitespace_get_LocalName, (XmlWhitespace * __this, MethodInfo * method)); DO_APP_FUNC(0x01AE9E40, XmlNodeType__Enum, XmlWhitespace_get_NodeType, (XmlWhitespace * __this, MethodInfo * method)); DO_APP_FUNC(0x0248CBE0, XmlNode *, XmlWhitespace_get_ParentNode, (XmlWhitespace * __this, MethodInfo * method)); DO_APP_FUNC(0x02477D40, String *, XmlWhitespace_get_Value, (XmlWhitespace * __this, MethodInfo * method)); DO_APP_FUNC(0x0248D4D0, void, XmlWhitespace_set_Value, (XmlWhitespace * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC6A8, XmlWhitespace_set_Value__MethodInfo); DO_APP_FUNC(0x0248D5E0, XmlNode *, XmlWhitespace_CloneNode, (XmlWhitespace * __this, bool deep, MethodInfo * method)); DO_APP_FUNC(0x0248D650, void, XmlWhitespace_WriteTo, (XmlWhitespace * __this, XmlWriter * w, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, XmlWhitespace_WriteContentTo, (XmlWhitespace * __this, XmlWriter * w, MethodInfo * method)); @@ -58263,15 +67557,19 @@ DO_APP_FUNC(0x0041AEF0, bool, XmlWhitespace_get_IsText, (XmlWhitespace * __this, DO_APP_FUNC(0x0041AF00, bool, EmptyEnumerator_System_Collections_IEnumerator_MoveNext, (EmptyEnumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, EmptyEnumerator_System_Collections_IEnumerator_Reset, (EmptyEnumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x0248D6A0, Object *, EmptyEnumerator_System_Collections_IEnumerator_get_Current, (EmptyEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC6D0, EmptyEnumerator_System_Collections_IEnumerator_get_Current__MethodInfo); DO_APP_FUNC(0x003AE050, void, EmptyEnumerator__ctor, (EmptyEnumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x0248D710, void, HWStack__ctor, (HWStack * __this, int32_t GrowthRate, MethodInfo * method)); DO_APP_FUNC(0x0248D7C0, void, HWStack__ctor_1, (HWStack * __this, int32_t GrowthRate, int32_t limit, MethodInfo * method)); DO_APP_FUNC(0x0248D880, Object *, HWStack_Push, (HWStack * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC678, HWStack_Push__MethodInfo); DO_APP_FUNC(0x0248DA00, Object *, HWStack_Pop, (HWStack * __this, MethodInfo * method)); DO_APP_FUNC(0x0248DA40, Object *, HWStack_Peek, (HWStack * __this, MethodInfo * method)); DO_APP_FUNC(0x0248DA80, void, HWStack_AddToTop, (HWStack * __this, Object * o, MethodInfo * method)); DO_APP_FUNC(0x0248DB00, Object *, HWStack_get_Item, (HWStack * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC668, HWStack_get_Item__MethodInfo); DO_APP_FUNC(0x0248DB80, void, HWStack_set_Item, (HWStack * __this, int32_t index, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC698, HWStack_set_Item__MethodInfo); DO_APP_FUNC(0x003CD440, int32_t, HWStack_get_Length, (HWStack * __this, MethodInfo * method)); DO_APP_FUNC(0x0248DC40, void, HWStack__ctor_2, (HWStack * __this, Object__Array * stack, int32_t growthRate, int32_t used, int32_t size, MethodInfo * method)); DO_APP_FUNC(0x0248DCB0, Object *, HWStack_Clone, (HWStack * __this, MethodInfo * method)); @@ -58284,12 +67582,14 @@ DO_APP_FUNC(0x003BCBE0, void, ReaderPositionInfo__ctor, (ReaderPositionInfo * __ DO_APP_FUNC(0x0248DEE0, bool, ReaderPositionInfo_HasLineInfo, (ReaderPositionInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x0248DF30, int32_t, ReaderPositionInfo_get_LineNumber, (ReaderPositionInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x0248DF80, int32_t, ReaderPositionInfo_get_LinePosition, (ReaderPositionInfo * __this, MethodInfo * method)); -DO_APP_FUNC(0x00977B80, void, LineInfo__ctor, (LineInfo__Boxed * __this, int32_t lineNo, int32_t linePos, MethodInfo * method)); -DO_APP_FUNC(0x00977B80, void, LineInfo_Set, (LineInfo__Boxed * __this, int32_t lineNo, int32_t linePos, MethodInfo * method)); +DO_APP_FUNC(0x00977B80, void, LineInfo__ctor, (LineInfo * __this, int32_t lineNo, int32_t linePos, MethodInfo * method)); +DO_APP_FUNC(0x00977B80, void, LineInfo_Set, (LineInfo * __this, int32_t lineNo, int32_t linePos, MethodInfo * method)); DO_APP_FUNC(0x0248DFD0, void, NameTable__ctor, (NameTable * __this, MethodInfo * method)); DO_APP_FUNC(0x0248E0A0, String *, NameTable_Add, (NameTable * __this, String * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC5B8, NameTable_Add__MethodInfo); DO_APP_FUNC(0x0248E270, String *, NameTable_Add_1, (NameTable * __this, Char__Array * key, int32_t start, int32_t len, MethodInfo * method)); DO_APP_FUNC(0x0248E440, String *, NameTable_Get, (NameTable * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC5E0, NameTable_Get__MethodInfo); DO_APP_FUNC(0x0248E600, String *, NameTable_AddEntry, (NameTable * __this, String * str, int32_t hashCode, MethodInfo * method)); DO_APP_FUNC(0x0248E930, void, NameTable_Grow, (NameTable * __this, MethodInfo * method)); DO_APP_FUNC(0x0248EAC0, bool, NameTable_TextEquals, (String * str1, Char__Array * str2, int32_t str2Start, int32_t str2Length, MethodInfo * method)); @@ -58299,6 +67599,7 @@ DO_APP_FUNC(0x0248EB50, void, DtdParser__ctor, (DtdParser * __this, MethodInfo * DO_APP_FUNC(0x0248ED90, IDtdParser *, DtdParser_Create, (MethodInfo * method)); DO_APP_FUNC(0x0248EDF0, void, DtdParser_Initialize, (DtdParser * __this, IDtdParserAdapter * readerAdapter, MethodInfo * method)); DO_APP_FUNC(0x0248F210, void, DtdParser_InitializeFreeFloatingDtd, (DtdParser * __this, String * baseUri, String * docTypeName, String * publicId, String * systemId, String * internalSubset, IDtdParserAdapter * adapter, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC560, DtdParser_InitializeFreeFloatingDtd__MethodInfo); DO_APP_FUNC(0x0248F590, IDtdInfo *, DtdParser_System_Xml_IDtdParser_ParseInternalDtd, (DtdParser * __this, IDtdParserAdapter * adapter, bool saveInternalSubset, MethodInfo * method)); DO_APP_FUNC(0x0248F5D0, IDtdInfo *, DtdParser_System_Xml_IDtdParser_ParseFreeFloatingDtd, (DtdParser * __this, String * baseUri, String * docTypeName, String * publicId, String * systemId, String * internalSubset, IDtdParserAdapter * adapter, MethodInfo * method)); DO_APP_FUNC(0x0248F620, bool, DtdParser_get_ParsingInternalSubset, (DtdParser * __this, MethodInfo * method)); @@ -58326,7 +67627,7 @@ DO_APP_FUNC(0x02493020, void, DtdParser_AddUndeclaredNotation, (DtdParser * __th DO_APP_FUNC(0x02493420, void, DtdParser_ParseComment, (DtdParser * __this, MethodInfo * method)); DO_APP_FUNC(0x024935F0, void, DtdParser_ParsePI, (DtdParser * __this, MethodInfo * method)); DO_APP_FUNC(0x024936F0, void, DtdParser_ParseCondSection, (DtdParser * __this, MethodInfo * method)); -DO_APP_FUNC(0x024939A0, void, DtdParser_ParseExternalId, (DtdParser * __this, DtdParser_Token__Enum idTokenType, DtdParser_Token__Enum declType, String * publicId, String * systemId, MethodInfo * method)); +DO_APP_FUNC(0x024939A0, void, DtdParser_ParseExternalId, (DtdParser * __this, DtdParser_Token__Enum idTokenType, DtdParser_Token__Enum declType, String * * publicId, String * * systemId, MethodInfo * method)); DO_APP_FUNC(0x02494220, DtdParser_Token__Enum, DtdParser_GetToken, (DtdParser * __this, bool needWhiteSpace, MethodInfo * method)); DO_APP_FUNC(0x024954A0, DtdParser_Token__Enum, DtdParser_ScanSubsetContent, (DtdParser * __this, MethodInfo * method)); DO_APP_FUNC(0x02495CC0, DtdParser_Token__Enum, DtdParser_ScanNameExpected, (DtdParser * __this, MethodInfo * method)); @@ -58407,39 +67708,41 @@ DO_APP_FUNC(0x0249BF80, int32_t, ValidateNames_ParseNameNoNamespaces, (String * DO_APP_FUNC(0x0249C0D0, bool, ValidateNames_IsNameNoNamespaces, (String * s, MethodInfo * method)); DO_APP_FUNC(0x0249C140, int32_t, ValidateNames_ParseNCName, (String * s, int32_t offset, MethodInfo * method)); DO_APP_FUNC(0x0249C280, int32_t, ValidateNames_ParseNCName_1, (String * s, MethodInfo * method)); -DO_APP_FUNC(0x0249C2E0, int32_t, ValidateNames_ParseQName, (String * s, int32_t offset, int32_t colonOffset, MethodInfo * method)); -DO_APP_FUNC(0x0249C3D0, void, ValidateNames_ParseQNameThrow, (String * s, String * prefix, String * localName, MethodInfo * method)); +DO_APP_FUNC(0x0249C2E0, int32_t, ValidateNames_ParseQName, (String * s, int32_t offset, int32_t * colonOffset, MethodInfo * method)); +DO_APP_FUNC(0x0249C3D0, void, ValidateNames_ParseQNameThrow, (String * s, String * * prefix, String * * localName, MethodInfo * method)); DO_APP_FUNC(0x0249C590, void, ValidateNames_ThrowInvalidName, (String * s, int32_t offsetStartChar, int32_t offsetBadChar, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC400, ValidateNames_ThrowInvalidName__MethodInfo); DO_APP_FUNC(0x0249C7A0, Exception *, ValidateNames_GetInvalidNameException, (String * s, int32_t offsetStartChar, int32_t offsetBadChar, MethodInfo * method)); -DO_APP_FUNC(0x0249CA70, void, ValidateNames_SplitQName, (String * name, String * prefix, String * lname, MethodInfo * method)); +DO_APP_FUNC(0x0249CA70, void, ValidateNames_SplitQName, (String * name, String * * prefix, String * * lname, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC3F8, ValidateNames_SplitQName__MethodInfo); DO_APP_FUNC(0x0249CC80, void, ValidateNames__cctor, (MethodInfo * method)); DO_APP_FUNC(0x0249CD20, Object *, XmlCharType_get_StaticLock, (MethodInfo * method)); DO_APP_FUNC(0x0249CDF0, void, XmlCharType_InitInstance, (MethodInfo * method)); DO_APP_FUNC(0x0249D680, void, XmlCharType_SetProperties, (Byte__Array * chProps, String * ranges, uint8_t value, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, XmlCharType__ctor, (XmlCharType__Boxed * __this, Byte__Array * charProperties, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, XmlCharType__ctor, (XmlCharType * __this, Byte__Array * charProperties, MethodInfo * method)); DO_APP_FUNC(0x0249D710, XmlCharType, XmlCharType_get_Instance, (MethodInfo * method)); -DO_APP_FUNC(0x0249D7D0, bool, XmlCharType_IsWhiteSpace, (XmlCharType__Boxed * __this, uint16_t ch, MethodInfo * method)); -DO_APP_FUNC(0x0249D800, bool, XmlCharType_IsNCNameSingleChar, (XmlCharType__Boxed * __this, uint16_t ch, MethodInfo * method)); -DO_APP_FUNC(0x0249D830, bool, XmlCharType_IsStartNCNameSingleChar, (XmlCharType__Boxed * __this, uint16_t ch, MethodInfo * method)); -DO_APP_FUNC(0x0249D860, bool, XmlCharType_IsNameSingleChar, (XmlCharType__Boxed * __this, uint16_t ch, MethodInfo * method)); -DO_APP_FUNC(0x0249D8A0, bool, XmlCharType_IsCharData, (XmlCharType__Boxed * __this, uint16_t ch, MethodInfo * method)); -DO_APP_FUNC(0x0249D8D0, bool, XmlCharType_IsPubidChar, (XmlCharType__Boxed * __this, uint16_t ch, MethodInfo * method)); -DO_APP_FUNC(0x0249D960, bool, XmlCharType_IsTextChar, (XmlCharType__Boxed * __this, uint16_t ch, MethodInfo * method)); -DO_APP_FUNC(0x0249D990, bool, XmlCharType_IsLetter, (XmlCharType__Boxed * __this, uint16_t ch, MethodInfo * method)); -DO_APP_FUNC(0x0249D9C0, bool, XmlCharType_IsNCNameCharXml4e, (XmlCharType__Boxed * __this, uint16_t ch, MethodInfo * method)); -DO_APP_FUNC(0x0249D9F0, bool, XmlCharType_IsStartNCNameCharXml4e, (XmlCharType__Boxed * __this, uint16_t ch, MethodInfo * method)); -DO_APP_FUNC(0x0249DA30, bool, XmlCharType_IsNameCharXml4e, (XmlCharType__Boxed * __this, uint16_t ch, MethodInfo * method)); +DO_APP_FUNC(0x0249D7D0, bool, XmlCharType_IsWhiteSpace, (XmlCharType * __this, uint16_t ch, MethodInfo * method)); +DO_APP_FUNC(0x0249D800, bool, XmlCharType_IsNCNameSingleChar, (XmlCharType * __this, uint16_t ch, MethodInfo * method)); +DO_APP_FUNC(0x0249D830, bool, XmlCharType_IsStartNCNameSingleChar, (XmlCharType * __this, uint16_t ch, MethodInfo * method)); +DO_APP_FUNC(0x0249D860, bool, XmlCharType_IsNameSingleChar, (XmlCharType * __this, uint16_t ch, MethodInfo * method)); +DO_APP_FUNC(0x0249D8A0, bool, XmlCharType_IsCharData, (XmlCharType * __this, uint16_t ch, MethodInfo * method)); +DO_APP_FUNC(0x0249D8D0, bool, XmlCharType_IsPubidChar, (XmlCharType * __this, uint16_t ch, MethodInfo * method)); +DO_APP_FUNC(0x0249D960, bool, XmlCharType_IsTextChar, (XmlCharType * __this, uint16_t ch, MethodInfo * method)); +DO_APP_FUNC(0x0249D990, bool, XmlCharType_IsLetter, (XmlCharType * __this, uint16_t ch, MethodInfo * method)); +DO_APP_FUNC(0x0249D9C0, bool, XmlCharType_IsNCNameCharXml4e, (XmlCharType * __this, uint16_t ch, MethodInfo * method)); +DO_APP_FUNC(0x0249D9F0, bool, XmlCharType_IsStartNCNameCharXml4e, (XmlCharType * __this, uint16_t ch, MethodInfo * method)); +DO_APP_FUNC(0x0249DA30, bool, XmlCharType_IsNameCharXml4e, (XmlCharType * __this, uint16_t ch, MethodInfo * method)); DO_APP_FUNC(0x01B75F70, bool, XmlCharType_IsDigit, (uint16_t ch, MethodInfo * method)); DO_APP_FUNC(0x0249DA70, bool, XmlCharType_IsHighSurrogate, (int32_t ch, MethodInfo * method)); DO_APP_FUNC(0x0249DA80, bool, XmlCharType_IsLowSurrogate, (int32_t ch, MethodInfo * method)); DO_APP_FUNC(0x0249DA90, bool, XmlCharType_IsSurrogate, (int32_t ch, MethodInfo * method)); DO_APP_FUNC(0x0249DAA0, int32_t, XmlCharType_CombineSurrogateChar, (int32_t lowChar, int32_t highChar, MethodInfo * method)); -DO_APP_FUNC(0x0249DAC0, void, XmlCharType_SplitSurrogateChar, (int32_t combinedChar, uint16_t lowChar, uint16_t highChar, MethodInfo * method)); -DO_APP_FUNC(0x0249DB00, bool, XmlCharType_IsOnlyWhitespace, (XmlCharType__Boxed * __this, String * str, MethodInfo * method)); -DO_APP_FUNC(0x0249DB80, int32_t, XmlCharType_IsOnlyWhitespaceWithPos, (XmlCharType__Boxed * __this, String * str, MethodInfo * method)); -DO_APP_FUNC(0x0249DC00, int32_t, XmlCharType_IsOnlyCharData, (XmlCharType__Boxed * __this, String * str, MethodInfo * method)); +DO_APP_FUNC(0x0249DAC0, void, XmlCharType_SplitSurrogateChar, (int32_t combinedChar, uint16_t * lowChar, uint16_t * highChar, MethodInfo * method)); +DO_APP_FUNC(0x0249DB00, bool, XmlCharType_IsOnlyWhitespace, (XmlCharType * __this, String * str, MethodInfo * method)); +DO_APP_FUNC(0x0249DB80, int32_t, XmlCharType_IsOnlyWhitespaceWithPos, (XmlCharType * __this, String * str, MethodInfo * method)); +DO_APP_FUNC(0x0249DC00, int32_t, XmlCharType_IsOnlyCharData, (XmlCharType * __this, String * str, MethodInfo * method)); DO_APP_FUNC(0x0249DCF0, bool, XmlCharType_IsOnlyDigits, (String * str, int32_t startPos, int32_t len, MethodInfo * method)); -DO_APP_FUNC(0x0249DD60, int32_t, XmlCharType_IsPublicId, (XmlCharType__Boxed * __this, String * str, MethodInfo * method)); +DO_APP_FUNC(0x0249DD60, int32_t, XmlCharType_IsPublicId, (XmlCharType * __this, String * str, MethodInfo * method)); DO_APP_FUNC(0x0196F7C0, bool, XmlCharType_InRange, (int32_t value, int32_t start, int32_t end, MethodInfo * method)); DO_APP_FUNC(0x0249DDE0, String *, XmlComplianceUtil_NonCDataNormalize, (String * value, MethodInfo * method)); DO_APP_FUNC(0x0249E0A0, String *, XmlComplianceUtil_CDataNormalize, (String * value, MethodInfo * method)); @@ -58450,14 +67753,20 @@ DO_APP_FUNC(0x0249EC30, String *, XmlConvert_EncodeName_1, (String * name, bool DO_APP_FUNC(0x0249F7D0, int32_t, XmlConvert_FromHex, (uint16_t digit, MethodInfo * method)); DO_APP_FUNC(0x0249F800, Byte__Array *, XmlConvert_FromBinHexString, (String * s, MethodInfo * method)); DO_APP_FUNC(0x0249F8C0, Byte__Array *, XmlConvert_FromBinHexString_1, (String * s, bool allowOddCount, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE488, XmlConvert_FromBinHexString_1__MethodInfo); DO_APP_FUNC(0x0249F940, String *, XmlConvert_ToBinHexString, (Byte__Array * inArray, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE480, XmlConvert_ToBinHexString__MethodInfo); DO_APP_FUNC(0x0249FAD0, String *, XmlConvert_VerifyName, (String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE4C0, XmlConvert_VerifyName__MethodInfo); DO_APP_FUNC(0x0249FC50, Exception *, XmlConvert_TryVerifyName, (String * name, MethodInfo * method)); DO_APP_FUNC(0x0249FE20, String *, XmlConvert_VerifyQName, (String * name, ExceptionType__Enum exceptionType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE4C8, XmlConvert_VerifyQName__MethodInfo); DO_APP_FUNC(0x0249FF80, String *, XmlConvert_VerifyNCName, (String * name, MethodInfo * method)); DO_APP_FUNC(0x024A0130, String *, XmlConvert_VerifyNCName_1, (String * name, ExceptionType__Enum exceptionType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE4B8, XmlConvert_VerifyNCName_1__MethodInfo); DO_APP_FUNC(0x024A02B0, Exception *, XmlConvert_TryVerifyNCName, (String * name, MethodInfo * method)); DO_APP_FUNC(0x024A0390, String *, XmlConvert_VerifyTOKEN, (String * token, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE418, XmlConvert_VerifyTOKEN__MethodInfo); DO_APP_FUNC(0x024A06B0, Exception *, XmlConvert_TryVerifyTOKEN, (String * token, MethodInfo * method)); DO_APP_FUNC(0x024A09E0, Exception *, XmlConvert_TryVerifyNMTOKEN, (String * name, MethodInfo * method)); DO_APP_FUNC(0x024A0C30, Exception *, XmlConvert_TryVerifyNormalizedString, (String * str, MethodInfo * method)); @@ -58475,49 +67784,54 @@ DO_APP_FUNC(0x024A12F0, String *, XmlConvert_ToString_10, (float value, MethodIn DO_APP_FUNC(0x024A1410, String *, XmlConvert_ToString_11, (double value, MethodInfo * method)); DO_APP_FUNC(0x023FEFE0, String *, XmlConvert_ToString_12, (TimeSpan value, MethodInfo * method)); DO_APP_FUNC(0x024A1530, String *, XmlConvert_ToString_13, (DateTime value, XmlDateTimeSerializationMode__Enum dateTimeOption, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE428, XmlConvert_ToString_13__MethodInfo); DO_APP_FUNC(0x024A17C0, String *, XmlConvert_ToString_14, (DateTimeOffset value, MethodInfo * method)); DO_APP_FUNC(0x024A1870, String *, XmlConvert_ToString_15, (Guid value, MethodInfo * method)); DO_APP_FUNC(0x024A18C0, bool, XmlConvert_ToBoolean, (String * s, MethodInfo * method)); -DO_APP_FUNC(0x024A1B40, Exception *, XmlConvert_TryToBoolean, (String * s, bool result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE440, XmlConvert_ToBoolean__MethodInfo); +DO_APP_FUNC(0x024A1B40, Exception *, XmlConvert_TryToBoolean, (String * s, bool * result, MethodInfo * method)); DO_APP_FUNC(0x024A1E40, uint16_t, XmlConvert_ToChar, (String * s, MethodInfo * method)); -DO_APP_FUNC(0x024A1F20, Exception *, XmlConvert_TryToChar, (String * s, uint16_t result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE400, XmlConvert_ToChar__MethodInfo); +DO_APP_FUNC(0x024A1F20, Exception *, XmlConvert_TryToChar, (String * s, uint16_t * result, MethodInfo * method)); DO_APP_FUNC(0x024A20C0, Decimal, XmlConvert_ToDecimal, (String * s, MethodInfo * method)); -DO_APP_FUNC(0x024A2150, Exception *, XmlConvert_TryToDecimal, (String * s, Decimal result, MethodInfo * method)); +DO_APP_FUNC(0x024A2150, Exception *, XmlConvert_TryToDecimal, (String * s, Decimal * result, MethodInfo * method)); DO_APP_FUNC(0x024A2310, Decimal, XmlConvert_ToInteger, (String * s, MethodInfo * method)); -DO_APP_FUNC(0x024A23A0, Exception *, XmlConvert_TryToInteger, (String * s, Decimal result, MethodInfo * method)); +DO_APP_FUNC(0x024A23A0, Exception *, XmlConvert_TryToInteger, (String * s, Decimal * result, MethodInfo * method)); DO_APP_FUNC(0x024A2560, int8_t, XmlConvert_ToSByte, (String * s, MethodInfo * method)); -DO_APP_FUNC(0x024A2600, Exception *, XmlConvert_TryToSByte, (String * s, int8_t result, MethodInfo * method)); +DO_APP_FUNC(0x024A2600, Exception *, XmlConvert_TryToSByte, (String * s, int8_t * result, MethodInfo * method)); DO_APP_FUNC(0x024A2860, int16_t, XmlConvert_ToInt16, (String * s, MethodInfo * method)); -DO_APP_FUNC(0x024A2900, Exception *, XmlConvert_TryToInt16, (String * s, int16_t result, MethodInfo * method)); +DO_APP_FUNC(0x024A2900, Exception *, XmlConvert_TryToInt16, (String * s, int16_t * result, MethodInfo * method)); DO_APP_FUNC(0x024A2B50, int32_t, XmlConvert_ToInt32, (String * s, MethodInfo * method)); -DO_APP_FUNC(0x024A2B80, Exception *, XmlConvert_TryToInt32, (String * s, int32_t result, MethodInfo * method)); +DO_APP_FUNC(0x024A2B80, Exception *, XmlConvert_TryToInt32, (String * s, int32_t * result, MethodInfo * method)); DO_APP_FUNC(0x024A2D10, int64_t, XmlConvert_ToInt64, (String * s, MethodInfo * method)); -DO_APP_FUNC(0x024A2D40, Exception *, XmlConvert_TryToInt64, (String * s, int64_t result, MethodInfo * method)); +DO_APP_FUNC(0x024A2D40, Exception *, XmlConvert_TryToInt64, (String * s, int64_t * result, MethodInfo * method)); DO_APP_FUNC(0x024A2ED0, uint8_t, XmlConvert_ToByte, (String * s, MethodInfo * method)); -DO_APP_FUNC(0x024A2F70, Exception *, XmlConvert_TryToByte, (String * s, uint8_t result, MethodInfo * method)); +DO_APP_FUNC(0x024A2F70, Exception *, XmlConvert_TryToByte, (String * s, uint8_t * result, MethodInfo * method)); DO_APP_FUNC(0x024A3170, uint16_t, XmlConvert_ToUInt16, (String * s, MethodInfo * method)); -DO_APP_FUNC(0x024A3210, Exception *, XmlConvert_TryToUInt16, (String * s, uint16_t result, MethodInfo * method)); +DO_APP_FUNC(0x024A3210, Exception *, XmlConvert_TryToUInt16, (String * s, uint16_t * result, MethodInfo * method)); DO_APP_FUNC(0x024A3400, uint32_t, XmlConvert_ToUInt32, (String * s, MethodInfo * method)); -DO_APP_FUNC(0x024A3430, Exception *, XmlConvert_TryToUInt32, (String * s, uint32_t result, MethodInfo * method)); +DO_APP_FUNC(0x024A3430, Exception *, XmlConvert_TryToUInt32, (String * s, uint32_t * result, MethodInfo * method)); DO_APP_FUNC(0x024A35C0, uint64_t, XmlConvert_ToUInt64, (String * s, MethodInfo * method)); -DO_APP_FUNC(0x024A35F0, Exception *, XmlConvert_TryToUInt64, (String * s, uint64_t result, MethodInfo * method)); +DO_APP_FUNC(0x024A35F0, Exception *, XmlConvert_TryToUInt64, (String * s, uint64_t * result, MethodInfo * method)); DO_APP_FUNC(0x024A3780, float, XmlConvert_ToSingle, (String * s, MethodInfo * method)); -DO_APP_FUNC(0x024A38E0, Exception *, XmlConvert_TryToSingle, (String * s, float result, MethodInfo * method)); +DO_APP_FUNC(0x024A38E0, Exception *, XmlConvert_TryToSingle, (String * s, float * result, MethodInfo * method)); DO_APP_FUNC(0x024A3BB0, double, XmlConvert_ToDouble, (String * s, MethodInfo * method)); -DO_APP_FUNC(0x024A3D10, Exception *, XmlConvert_TryToDouble, (String * s, double result, MethodInfo * method)); +DO_APP_FUNC(0x024A3D10, Exception *, XmlConvert_TryToDouble, (String * s, double * result, MethodInfo * method)); DO_APP_FUNC(0x024A3FF0, double, XmlConvert_ToXPathDouble, (Object * o, MethodInfo * method)); -DO_APP_FUNC(0x024A4260, Exception *, XmlConvert_TryToTimeSpan, (String * s, TimeSpan result, MethodInfo * method)); +DO_APP_FUNC(0x024A4260, Exception *, XmlConvert_TryToTimeSpan, (String * s, TimeSpan * result, MethodInfo * method)); DO_APP_FUNC(0x024A4320, String__Array *, XmlConvert_get_AllDateTimeFormats, (MethodInfo * method)); DO_APP_FUNC(0x024A43D0, void, XmlConvert_CreateAllDateTimeFormats, (MethodInfo * method)); DO_APP_FUNC(0x024A4D60, DateTime, XmlConvert_ToDateTime, (String * s, MethodInfo * method)); DO_APP_FUNC(0x024A4EE0, DateTime, XmlConvert_ToDateTime_1, (String * s, String__Array * formats, MethodInfo * method)); DO_APP_FUNC(0x024A4F90, DateTime, XmlConvert_ToDateTime_2, (String * s, XmlDateTimeSerializationMode__Enum dateTimeOption, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE350, XmlConvert_ToDateTime_2__MethodInfo); DO_APP_FUNC(0x024A5240, Guid, XmlConvert_ToGuid, (String * s, MethodInfo * method)); -DO_APP_FUNC(0x024A5260, Exception *, XmlConvert_TryToGuid, (String * s, Guid result, MethodInfo * method)); +DO_APP_FUNC(0x024A5260, Exception *, XmlConvert_TryToGuid, (String * s, Guid * result, MethodInfo * method)); DO_APP_FUNC(0x024A5590, DateTime, XmlConvert_SwitchToLocalTime, (DateTime value, MethodInfo * method)); DO_APP_FUNC(0x024A5720, DateTime, XmlConvert_SwitchToUtcTime, (DateTime value, MethodInfo * method)); DO_APP_FUNC(0x024A5880, Uri *, XmlConvert_ToUri, (String * s, MethodInfo * method)); -DO_APP_FUNC(0x024A5D00, Exception *, XmlConvert_TryToUri, (String * s, Uri * result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE358, XmlConvert_ToUri__MethodInfo); +DO_APP_FUNC(0x024A5D00, Exception *, XmlConvert_TryToUri, (String * s, Uri * * result, MethodInfo * method)); DO_APP_FUNC(0x024A61C0, bool, XmlConvert_StrEqual, (Char__Array * chars, int32_t strPos1, int32_t strLen1, String * str2, MethodInfo * method)); DO_APP_FUNC(0x024A6260, String *, XmlConvert_TrimString, (String * value, MethodInfo * method)); DO_APP_FUNC(0x024A6320, String *, XmlConvert_TrimStringStart, (String * value, MethodInfo * method)); @@ -58547,8 +67861,9 @@ DO_APP_FUNC(0x024A83E0, Task_1_System_IO_Stream_ *, XmlDownloadManager_GetNonFil DO_APP_FUNC(0x003AE050, void, XmlDownloadManager__ctor, (XmlDownloadManager * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, XmlDownloadManager_c_DisplayClass4_0__ctor, (XmlDownloadManager_c_DisplayClass4_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x024A86F0, Stream *, XmlDownloadManager_c_DisplayClass4_0__GetStreamAsync_b__0, (XmlDownloadManager_c_DisplayClass4_0 * __this, MethodInfo * method)); -DO_APP_FUNC(0x024A87A0, void, XmlDownloadManager_GetNonFileStreamAsync_d_5_MoveNext, (XmlDownloadManager_GetNonFileStreamAsync_d_5__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x024A9300, void, XmlDownloadManager_GetNonFileStreamAsync_d_5_SetStateMachine, (XmlDownloadManager_GetNonFileStreamAsync_d_5__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE250, XmlDownloadManager_c_DisplayClass4_0__GetStreamAsync_b__0__MethodInfo); +DO_APP_FUNC(0x024A87A0, void, XmlDownloadManager_GetNonFileStreamAsync_d_5_MoveNext, (XmlDownloadManager_GetNonFileStreamAsync_d_5 * __this, MethodInfo * method)); +DO_APP_FUNC(0x024A9300, void, XmlDownloadManager_GetNonFileStreamAsync_d_5_SetStateMachine, (XmlDownloadManager_GetNonFileStreamAsync_d_5 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, OpenedHost__ctor, (OpenedHost * __this, MethodInfo * method)); DO_APP_FUNC(0x024A9370, void, XmlRegisteredNonCachedStream__ctor, (XmlRegisteredNonCachedStream * __this, Stream * stream, XmlDownloadManager * downloadManager, String * host, MethodInfo * method)); DO_APP_FUNC(0x024A94D0, void, XmlRegisteredNonCachedStream_Finalize, (XmlRegisteredNonCachedStream * __this, MethodInfo * method)); @@ -58574,15 +67889,17 @@ DO_APP_FUNC(0x024A9890, void, XmlCachedStream__ctor, (XmlCachedStream * __this, DO_APP_FUNC(0x024A9A50, void, UTF16Decoder__ctor, (UTF16Decoder * __this, bool bigEndian, MethodInfo * method)); DO_APP_FUNC(0x0197C690, int32_t, UTF16Decoder_GetCharCount, (UTF16Decoder * __this, Byte__Array * bytes, int32_t index, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x024A9A60, int32_t, UTF16Decoder_GetCharCount_1, (UTF16Decoder * __this, Byte__Array * bytes, int32_t index, int32_t count, bool flush, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE1D0, UTF16Decoder_GetCharCount_1__MethodInfo); DO_APP_FUNC(0x024A9B60, int32_t, UTF16Decoder_GetChars, (UTF16Decoder * __this, Byte__Array * bytes, int32_t byteIndex, int32_t byteCount, Char__Array * chars, int32_t charIndex, MethodInfo * method)); -DO_APP_FUNC(0x024A9DD0, void, UTF16Decoder_Convert, (UTF16Decoder * __this, Byte__Array * bytes, int32_t byteIndex, int32_t byteCount, Char__Array * chars, int32_t charIndex, int32_t charCount, bool flush, int32_t bytesUsed, int32_t charsUsed, bool completed, MethodInfo * method)); +DO_APP_FUNC(0x024A9DD0, void, UTF16Decoder_Convert, (UTF16Decoder * __this, Byte__Array * bytes, int32_t byteIndex, int32_t byteCount, Char__Array * chars, int32_t charIndex, int32_t charCount, bool flush, int32_t * bytesUsed, int32_t * charsUsed, bool * completed, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SafeAsciiDecoder__ctor, (SafeAsciiDecoder * __this, MethodInfo * method)); DO_APP_FUNC(0x0098A1F0, int32_t, SafeAsciiDecoder_GetCharCount, (SafeAsciiDecoder * __this, Byte__Array * bytes, int32_t index, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x024AA0A0, int32_t, SafeAsciiDecoder_GetChars, (SafeAsciiDecoder * __this, Byte__Array * bytes, int32_t byteIndex, int32_t byteCount, Char__Array * chars, int32_t charIndex, MethodInfo * method)); -DO_APP_FUNC(0x024AA130, void, SafeAsciiDecoder_Convert, (SafeAsciiDecoder * __this, Byte__Array * bytes, int32_t byteIndex, int32_t byteCount, Char__Array * chars, int32_t charIndex, int32_t charCount, bool flush, int32_t bytesUsed, int32_t charsUsed, bool completed, MethodInfo * method)); +DO_APP_FUNC(0x024AA130, void, SafeAsciiDecoder_Convert, (SafeAsciiDecoder * __this, Byte__Array * bytes, int32_t byteIndex, int32_t byteCount, Char__Array * chars, int32_t charIndex, int32_t charCount, bool flush, int32_t * bytesUsed, int32_t * charsUsed, bool * completed, MethodInfo * method)); DO_APP_FUNC(0x01BDC630, String *, Ucs4Encoding_get_WebName, (Ucs4Encoding * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7320, Decoder *, Ucs4Encoding_GetDecoder, (Ucs4Encoding * __this, MethodInfo * method)); DO_APP_FUNC(0x024AA1E0, int32_t, Ucs4Encoding_GetByteCount, (Ucs4Encoding * __this, Char__Array * chars, int32_t index, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE228, Ucs4Encoding_GetByteCount__MethodInfo); DO_APP_FUNC(0x003CB690, Byte__Array *, Ucs4Encoding_GetBytes, (Ucs4Encoding * __this, String * s, MethodInfo * method)); DO_APP_FUNC(0x003CB690, int32_t, Ucs4Encoding_GetBytes_1, (Ucs4Encoding * __this, Char__Array * chars, int32_t charIndex, int32_t charCount, Byte__Array * bytes, int32_t byteIndex, MethodInfo * method)); DO_APP_FUNC(0x003CB690, int32_t, Ucs4Encoding_GetMaxByteCount, (Ucs4Encoding * __this, int32_t charCount, MethodInfo * method)); @@ -58610,16 +67927,20 @@ DO_APP_FUNC(0x024AAC30, String *, Ucs4Encoding3412_get_EncodingName, (Ucs4Encodi DO_APP_FUNC(0x024AAC70, Byte__Array *, Ucs4Encoding3412_GetPreamble, (Ucs4Encoding3412 * __this, MethodInfo * method)); DO_APP_FUNC(0x024AACD0, int32_t, Ucs4Decoder_GetCharCount, (Ucs4Decoder * __this, Byte__Array * bytes, int32_t index, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x024AACE0, int32_t, Ucs4Decoder_GetChars, (Ucs4Decoder * __this, Byte__Array * bytes, int32_t byteIndex, int32_t byteCount, Char__Array * chars, int32_t charIndex, MethodInfo * method)); -DO_APP_FUNC(0x024AAE80, void, Ucs4Decoder_Convert, (Ucs4Decoder * __this, Byte__Array * bytes, int32_t byteIndex, int32_t byteCount, Char__Array * chars, int32_t charIndex, int32_t charCount, bool flush, int32_t bytesUsed, int32_t charsUsed, bool completed, MethodInfo * method)); +DO_APP_FUNC(0x024AAE80, void, Ucs4Decoder_Convert, (Ucs4Decoder * __this, Byte__Array * bytes, int32_t byteIndex, int32_t byteCount, Char__Array * chars, int32_t charIndex, int32_t charCount, bool flush, int32_t * bytesUsed, int32_t * charsUsed, bool * completed, MethodInfo * method)); DO_APP_FUNC(0x024AB0A0, void, Ucs4Decoder_Ucs4ToUTF16, (Ucs4Decoder * __this, uint32_t code, Char__Array * chars, int32_t charIndex, MethodInfo * method)); DO_APP_FUNC(0x024AB110, void, Ucs4Decoder__ctor, (Ucs4Decoder * __this, MethodInfo * method)); DO_APP_FUNC(0x024AB1A0, int32_t, Ucs4Decoder4321_GetFullChars, (Ucs4Decoder4321 * __this, Byte__Array * bytes, int32_t byteIndex, int32_t byteCount, Char__Array * chars, int32_t charIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE190, Ucs4Decoder4321_GetFullChars__MethodInfo); DO_APP_FUNC(0x024AB460, void, Ucs4Decoder4321__ctor, (Ucs4Decoder4321 * __this, MethodInfo * method)); DO_APP_FUNC(0x024AB470, int32_t, Ucs4Decoder1234_GetFullChars, (Ucs4Decoder1234 * __this, Byte__Array * bytes, int32_t byteIndex, int32_t byteCount, Char__Array * chars, int32_t charIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE0E0, Ucs4Decoder1234_GetFullChars__MethodInfo); DO_APP_FUNC(0x024AB460, void, Ucs4Decoder1234__ctor, (Ucs4Decoder1234 * __this, MethodInfo * method)); DO_APP_FUNC(0x024AB730, int32_t, Ucs4Decoder2143_GetFullChars, (Ucs4Decoder2143 * __this, Byte__Array * bytes, int32_t byteIndex, int32_t byteCount, Char__Array * chars, int32_t charIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE0D8, Ucs4Decoder2143_GetFullChars__MethodInfo); DO_APP_FUNC(0x024AB460, void, Ucs4Decoder2143__ctor, (Ucs4Decoder2143 * __this, MethodInfo * method)); DO_APP_FUNC(0x024AB9F0, int32_t, Ucs4Decoder3412_GetFullChars, (Ucs4Decoder3412 * __this, Byte__Array * bytes, int32_t byteIndex, int32_t byteCount, Char__Array * chars, int32_t charIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE0D0, Ucs4Decoder3412_GetFullChars__MethodInfo); DO_APP_FUNC(0x024AB460, void, Ucs4Decoder3412__ctor, (Ucs4Decoder3412 * __this, MethodInfo * method)); DO_APP_FUNC(0x024ABCB0, void, XmlException__ctor, (XmlException * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x024AC3A0, void, XmlException_GetObjectData, (XmlException * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); @@ -58657,12 +67978,13 @@ DO_APP_FUNC(0x024ADDC0, String *, XmlNamespaceManager_get_DefaultNamespace, (Xml DO_APP_FUNC(0x010FC420, void, XmlNamespaceManager_PushScope, (XmlNamespaceManager * __this, MethodInfo * method)); DO_APP_FUNC(0x024ADE30, bool, XmlNamespaceManager_PopScope, (XmlNamespaceManager * __this, MethodInfo * method)); DO_APP_FUNC(0x024ADF50, void, XmlNamespaceManager_AddNamespace, (XmlNamespaceManager * __this, String * prefix, String * uri, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE0B8, XmlNamespaceManager_AddNamespace__MethodInfo); DO_APP_FUNC(0x024AE460, IEnumerator *, XmlNamespaceManager_GetEnumerator, (XmlNamespaceManager * __this, MethodInfo * method)); DO_APP_FUNC(0x024AE660, IDictionary_2_System_String_System_String_ *, XmlNamespaceManager_GetNamespacesInScope, (XmlNamespaceManager * __this, XmlNamespaceScope__Enum scope, MethodInfo * method)); DO_APP_FUNC(0x024AE820, String *, XmlNamespaceManager_LookupNamespace, (XmlNamespaceManager * __this, String * prefix, MethodInfo * method)); DO_APP_FUNC(0x024AE870, int32_t, XmlNamespaceManager_LookupNamespaceDecl, (XmlNamespaceManager * __this, String * prefix, MethodInfo * method)); DO_APP_FUNC(0x024AEA90, String *, XmlNamespaceManager_LookupPrefix, (XmlNamespaceManager * __this, String * uri, MethodInfo * method)); -DO_APP_FUNC(0x024AEBC0, void, XmlNamespaceManager_NamespaceDeclaration_Set, (XmlNamespaceManager_NamespaceDeclaration__Boxed * __this, String * prefix, String * uri, int32_t scopeId, int32_t previousNsIndex, MethodInfo * method)); +DO_APP_FUNC(0x024AEBC0, void, XmlNamespaceManager_NamespaceDeclaration_Set, (XmlNamespaceManager_NamespaceDeclaration * __this, String * prefix, String * uri, int32_t scopeId, int32_t previousNsIndex, MethodInfo * method)); DO_APP_FUNC(0x024AEC80, void, XmlQualifiedName__ctor, (XmlQualifiedName * __this, MethodInfo * method)); DO_APP_FUNC(0x024AEDE0, void, XmlQualifiedName__ctor_1, (XmlQualifiedName * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x024AEF40, void, XmlQualifiedName__ctor_2, (XmlQualifiedName * __this, String * name, String * ns, MethodInfo * method)); @@ -58678,33 +68000,40 @@ DO_APP_FUNC(0x024AF5B0, String *, XmlQualifiedName_ToString_1, (String * name, S DO_APP_FUNC(0x024AF620, XmlQualifiedName_HashCodeOfStringDelegate *, XmlQualifiedName_GetHashCodeDelegate, (MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, XmlQualifiedName_IsRandomizedHashingDisabled, (MethodInfo * method)); DO_APP_FUNC(0x010F4FA0, int32_t, XmlQualifiedName_GetHashCodeOfString, (String * s, int32_t length, int64_t additionalEntropy, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE068, XmlQualifiedName_GetHashCodeOfString__MethodInfo); DO_APP_FUNC(0x024AF960, void, XmlQualifiedName_Init, (XmlQualifiedName * __this, String * name, String * ns, MethodInfo * method)); DO_APP_FUNC(0x003AE960, void, XmlQualifiedName_SetNamespace, (XmlQualifiedName * __this, String * ns, MethodInfo * method)); DO_APP_FUNC(0x024AFA20, void, XmlQualifiedName_Verify, (XmlQualifiedName * __this, MethodInfo * method)); DO_APP_FUNC(0x024AFAC0, void, XmlQualifiedName_Atomize, (XmlQualifiedName * __this, XmlNameTable * nameTable, MethodInfo * method)); -DO_APP_FUNC(0x024AFBD0, XmlQualifiedName *, XmlQualifiedName_Parse, (String * s, IXmlNamespaceResolver * nsmgr, String * prefix, MethodInfo * method)); +DO_APP_FUNC(0x024AFBD0, XmlQualifiedName *, XmlQualifiedName_Parse, (String * s, IXmlNamespaceResolver * nsmgr, String * * prefix, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE058, XmlQualifiedName_Parse__MethodInfo); DO_APP_FUNC(0x024AFD50, XmlQualifiedName *, XmlQualifiedName_Clone, (XmlQualifiedName * __this, MethodInfo * method)); DO_APP_FUNC(0x024AFDD0, void, XmlQualifiedName__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02367650, void, XmlQualifiedName_HashCodeOfStringDelegate__ctor, (XmlQualifiedName_HashCodeOfStringDelegate * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EF9C0, int32_t, XmlQualifiedName_HashCodeOfStringDelegate_Invoke, (XmlQualifiedName_HashCodeOfStringDelegate * __this, String * s, int32_t sLen, int64_t additionalEntropy, MethodInfo * method)); DO_APP_FUNC(0x024AFF40, Uri *, XmlResolver_ResolveUri, (XmlResolver * __this, Uri * baseUri, String * relativeUri, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE098, XmlResolver_ResolveUri__MethodInfo); DO_APP_FUNC(0x024B01E0, bool, XmlResolver_SupportsType, (XmlResolver * __this, Uri * absoluteUri, Type * type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE080, XmlResolver_SupportsType__MethodInfo); DO_APP_FUNC(0x024B0300, Task_1_System_Object_ *, XmlResolver_GetEntityAsync, (XmlResolver * __this, Uri * absoluteUri, String * role, Type * ofObjectToReturn, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE078, XmlResolver_GetEntityAsync__MethodInfo); DO_APP_FUNC(0x003AE050, void, XmlResolver__ctor, (XmlResolver * __this, MethodInfo * method)); DO_APP_FUNC(0x024B0350, XmlDownloadManager *, XmlUrlResolver_get_DownloadManager, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, XmlUrlResolver__ctor, (XmlUrlResolver * __this, MethodInfo * method)); DO_APP_FUNC(0x024B0470, Object *, XmlUrlResolver_GetEntity, (XmlUrlResolver * __this, Uri * absoluteUri, String * role, Type * ofObjectToReturn, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE020, XmlUrlResolver_GetEntity__MethodInfo); DO_APP_FUNC(0x024B06F0, Uri *, XmlUrlResolver_ResolveUri, (XmlUrlResolver * __this, Uri * baseUri, String * relativeUri, MethodInfo * method)); DO_APP_FUNC(0x024B0700, Task_1_System_Object_ *, XmlUrlResolver_GetEntityAsync, (XmlUrlResolver * __this, Uri * absoluteUri, String * role, Type * ofObjectToReturn, MethodInfo * method)); -DO_APP_FUNC(0x024B0960, void, XmlUrlResolver_GetEntityAsync_d_15_MoveNext, (XmlUrlResolver_GetEntityAsync_d_15__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x024B0D70, void, XmlUrlResolver_GetEntityAsync_d_15_SetStateMachine, (XmlUrlResolver_GetEntityAsync_d_15__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x024B0960, void, XmlUrlResolver_GetEntityAsync_d_15_MoveNext, (XmlUrlResolver_GetEntityAsync_d_15 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE008, XmlUrlResolver_GetEntityAsync_d_15_MoveNext__MethodInfo); +DO_APP_FUNC(0x024B0D70, void, XmlUrlResolver_GetEntityAsync_d_15_SetStateMachine, (XmlUrlResolver_GetEntityAsync_d_15 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, BinaryCompatibility_1_get_TargetsAtLeast_Desktop_V4_5_2, (MethodInfo * method)); DO_APP_FUNC(0x00A1B820, String *, Res_GetString, (String * name, MethodInfo * method)); DO_APP_FUNC(0x024B0DE0, String *, Res_GetString_1, (String * name, Object__Array * args, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, XmlNameTable *, XPathDocument_get_NameTable, (XPathDocument * __this, MethodInfo * method)); DO_APP_FUNC(0x00424C10, bool, XPathDocument_get_HasLineInfo, (XPathDocument * __this, MethodInfo * method)); -DO_APP_FUNC(0x024B0EF0, int32_t, XPathDocument_GetXmlNamespaceNode, (XPathDocument * __this, XPathNode__Array * pageXmlNmsp, MethodInfo * method)); -DO_APP_FUNC(0x024B0F50, int32_t, XPathDocument_LookupNamespaces, (XPathDocument * __this, XPathNode__Array * pageElem, int32_t idxElem, XPathNode__Array * pageNmsp, MethodInfo * method)); +DO_APP_FUNC(0x024B0EF0, int32_t, XPathDocument_GetXmlNamespaceNode, (XPathDocument * __this, XPathNode__Array * * pageXmlNmsp, MethodInfo * method)); +DO_APP_FUNC(0x024B0F50, int32_t, XPathDocument_LookupNamespaces, (XPathDocument * __this, XPathNode__Array * pageElem, int32_t idxElem, XPathNode__Array * * pageNmsp, MethodInfo * method)); DO_APP_FUNC(0x024B1220, void, XPathException__ctor, (XPathException * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x024B16D0, void, XPathException_GetObjectData, (XPathException * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x024B17C0, void, XPathException__ctor_1, (XPathException * __this, MethodInfo * method)); @@ -58740,6 +68069,7 @@ DO_APP_FUNC(0x003AE050, void, XPathNavigator__ctor, (XPathNavigator * __this, Me DO_APP_FUNC(0x024B3560, void, XPathNavigator__cctor, (MethodInfo * method)); DO_APP_FUNC(0x024B3840, bool, XPathNavigatorKeyComparer_System_Collections_IEqualityComparer_Equals, (XPathNavigatorKeyComparer * __this, Object * obj1, Object * obj2, MethodInfo * method)); DO_APP_FUNC(0x024B3930, int32_t, XPathNavigatorKeyComparer_System_Collections_IEqualityComparer_GetHashCode, (XPathNavigatorKeyComparer * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFDFA8, XPathNavigatorKeyComparer_System_Collections_IEqualityComparer_GetHashCode__MethodInfo); DO_APP_FUNC(0x003AE050, void, XPathNavigatorKeyComparer__ctor, (XPathNavigatorKeyComparer * __this, MethodInfo * method)); DO_APP_FUNC(0x024B3B80, String *, CodeIdentifier_MakePascal, (String * identifier, MethodInfo * method)); DO_APP_FUNC(0x024B3E70, String *, CodeIdentifier_MakeValid, (String * identifier, MethodInfo * method)); @@ -58771,6 +68101,7 @@ DO_APP_FUNC(0x024B4EF0, XmlTypeMapping *, ReflectionHelper_GetRegisteredSchemaTy DO_APP_FUNC(0x024B4FF0, void, ReflectionHelper_RegisterClrType, (ReflectionHelper * __this, XmlTypeMapping * map, Type * type, String * ns, MethodInfo * method)); DO_APP_FUNC(0x024B5140, XmlTypeMapping *, ReflectionHelper_GetRegisteredClrType, (ReflectionHelper * __this, Type * type, String * ns, MethodInfo * method)); DO_APP_FUNC(0x024B52B0, void, ReflectionHelper_CheckSerializableType, (Type * type, bool allowPrivateConstructors, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFDF90, ReflectionHelper_CheckSerializableType__MethodInfo); DO_APP_FUNC(0x024B5680, void, ReflectionHelper__ctor, (ReflectionHelper * __this, MethodInfo * method)); DO_APP_FUNC(0x024B57E0, void, ReflectionHelper__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, String *, XmlTypeConvertorAttribute_get_Method, (XmlTypeConvertorAttribute * __this, MethodInfo * method)); @@ -58778,8 +68109,9 @@ DO_APP_FUNC(0x003BCBE0, void, XmlTypeConvertorAttribute_set_Method, (XmlTypeConv DO_APP_FUNC(0x003BCBE0, void, XmlTypeConvertorAttribute__ctor, (XmlTypeConvertorAttribute * __this, String * method_1, MethodInfo * method)); DO_APP_FUNC(0x024B5890, void, TypeData__ctor, (TypeData * __this, Type * type, String * elementName, bool isPrimitive, MethodInfo * method)); DO_APP_FUNC(0x024B58B0, void, TypeData__ctor_1, (TypeData * __this, Type * type, String * elementName, bool isPrimitive, TypeData * mappedType, XmlSchemaPatternFacet * facet, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFDEE0, TypeData__ctor_1__MethodInfo); DO_APP_FUNC(0x024B60B0, void, TypeData_LookupTypeConvertor, (TypeData * __this, MethodInfo * method)); -DO_APP_FUNC(0x024B6240, void, TypeData_ConvertForAssignment, (TypeData * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x024B6240, void, TypeData_ConvertForAssignment, (TypeData * __this, Object * * value, MethodInfo * method)); DO_APP_FUNC(0x003BB330, String *, TypeData_get_TypeName, (TypeData * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, String *, TypeData_get_XmlType, (TypeData * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, Type *, TypeData_get_Type, (TypeData * __this, MethodInfo * method)); @@ -58792,6 +68124,7 @@ DO_APP_FUNC(0x024B6460, bool, TypeData_get_IsNullable, (TypeData * __this, Metho DO_APP_FUNC(0x00C44200, void, TypeData_set_IsNullable, (TypeData * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x024B6570, TypeData *, TypeData_get_ListItemTypeData, (TypeData * __this, MethodInfo * method)); DO_APP_FUNC(0x024B6670, Type *, TypeData_get_ListItemType, (TypeData * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFDF50, TypeData_get_ListItemType__MethodInfo); DO_APP_FUNC(0x024B6F50, bool, TypeData_get_IsXsdType, (TypeData * __this, MethodInfo * method)); DO_APP_FUNC(0x00682400, bool, TypeData_get_HasPublicConstructor, (TypeData * __this, MethodInfo * method)); DO_APP_FUNC(0x024B6F60, PropertyInfo_1 *, TypeData_GetIndexerProperty, (Type * collectionType, MethodInfo * method)); @@ -58806,11 +68139,14 @@ DO_APP_FUNC(0x024B9330, String *, TypeMember_ToString, (TypeMember * __this, Met DO_APP_FUNC(0x024B93A0, void, TypeTranslator__cctor, (MethodInfo * method)); DO_APP_FUNC(0x024BC950, TypeData *, TypeTranslator_GetTypeData, (Type * type, MethodInfo * method)); DO_APP_FUNC(0x024BC9B0, TypeData *, TypeTranslator_GetTypeData_1, (Type * runtimeType, String * xmlDataType, bool underlyingEnumType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFDBD8, TypeTranslator_GetTypeData_1__MethodInfo); DO_APP_FUNC(0x024BD5D0, TypeData *, TypeTranslator_GetPrimitiveTypeData, (String * typeName, MethodInfo * method)); DO_APP_FUNC(0x024BD630, TypeData *, TypeTranslator_GetPrimitiveTypeData_1, (String * typeName, bool nullable, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFDC28, TypeTranslator_GetPrimitiveTypeData_1__MethodInfo); DO_APP_FUNC(0x024BD890, TypeData *, TypeTranslator_FindPrimitiveTypeData, (String * typeName, MethodInfo * method)); DO_APP_FUNC(0x024BD960, String *, TypeTranslator_GetArrayName, (String * elemName, MethodInfo * method)); -DO_APP_FUNC(0x024BDB70, void, TypeTranslator_ParseArrayType, (String * arrayType, String * type, String * ns, String * dimensions, MethodInfo * method)); +DO_APP_FUNC(0x024BDB70, void, TypeTranslator_ParseArrayType, (String * arrayType, String * * type, String * * ns, String * * dimensions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFDC18, TypeTranslator_ParseArrayType__MethodInfo); DO_APP_FUNC(0x003AE050, void, XmlAnyAttributeAttribute__ctor, (XmlAnyAttributeAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x006C4180, void, XmlAnyElementAttribute__ctor, (XmlAnyElementAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x024BDE40, String *, XmlAnyElementAttribute_get_Name, (XmlAnyElementAttribute * __this, MethodInfo * method)); @@ -58863,6 +68199,7 @@ DO_APP_FUNC(0x024BFA30, Nullable_1_Int32_, XmlAttributes_get_Order, (XmlAttribut DO_APP_FUNC(0x024BFB40, int32_t, XmlAttributes_get_SortableOrder, (XmlAttributes * __this, MethodInfo * method)); DO_APP_FUNC(0x024BFBC0, String *, XmlChoiceIdentifierAttribute_get_MemberName, (XmlChoiceIdentifierAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x024BFC20, String *, XmlCustomFormatter_FromEnum, (int64_t value, String__Array * values, Int64__Array * ids, String * typeName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFDBA0, XmlCustomFormatter_FromEnum__MethodInfo); DO_APP_FUNC(0x024BFEE0, String *, XmlCustomFormatter_FromXmlName, (String * name, MethodInfo * method)); DO_APP_FUNC(0x024BFF70, String *, XmlCustomFormatter_FromXmlNCName, (String * ncName, MethodInfo * method)); DO_APP_FUNC(0x024C0000, String *, XmlCustomFormatter_ToXmlString, (TypeData * type, Object * value, MethodInfo * method)); @@ -58903,14 +68240,19 @@ DO_APP_FUNC(0x024C32D0, void, XmlReflectionImporter__ctor, (XmlReflectionImporte DO_APP_FUNC(0x024C3790, XmlTypeMapping *, XmlReflectionImporter_ImportTypeMapping, (XmlReflectionImporter * __this, Type * type, MethodInfo * method)); DO_APP_FUNC(0x024C37B0, XmlTypeMapping *, XmlReflectionImporter_ImportTypeMapping_1, (XmlReflectionImporter * __this, Type * type, String * defaultNamespace, MethodInfo * method)); DO_APP_FUNC(0x024C37D0, XmlTypeMapping *, XmlReflectionImporter_ImportTypeMapping_2, (XmlReflectionImporter * __this, Type * type, XmlRootAttribute * root, String * defaultNamespace, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00120, XmlReflectionImporter_ImportTypeMapping_2__MethodInfo); DO_APP_FUNC(0x024C39C0, XmlTypeMapping *, XmlReflectionImporter_ImportTypeMapping_3, (XmlReflectionImporter * __this, TypeData * typeData, XmlRootAttribute * root, String * defaultNamespace, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00140, XmlReflectionImporter_ImportTypeMapping_3__MethodInfo); DO_APP_FUNC(0x024C3ED0, XmlTypeMapping *, XmlReflectionImporter_CreateTypeMapping, (XmlReflectionImporter * __this, TypeData * typeData, XmlRootAttribute * root, String * defaultXmlType, String * defaultNamespace, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D001D0, XmlReflectionImporter_CreateTypeMapping__MethodInfo); DO_APP_FUNC(0x024C4470, XmlTypeMapping *, XmlReflectionImporter_ImportClassMapping, (XmlReflectionImporter * __this, Type * type, XmlRootAttribute * root, String * defaultNamespace, bool isBaseType, MethodInfo * method)); DO_APP_FUNC(0x024C4550, XmlTypeMapping *, XmlReflectionImporter_ImportClassMapping_1, (XmlReflectionImporter * __this, TypeData * typeData, XmlRootAttribute * root, String * defaultNamespace, bool isBaseType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFFF88, XmlReflectionImporter_ImportClassMapping_1__MethodInfo); DO_APP_FUNC(0x024C5950, void, XmlReflectionImporter_RegisterDerivedMap, (XmlReflectionImporter * __this, XmlTypeMapping * map, XmlTypeMapping * derivedMap, MethodInfo * method)); DO_APP_FUNC(0x024C5A90, String *, XmlReflectionImporter_GetTypeNamespace, (XmlReflectionImporter * __this, TypeData * typeData, XmlRootAttribute * root, String * defaultNamespace, MethodInfo * method)); DO_APP_FUNC(0x024C5BC0, XmlTypeMapping *, XmlReflectionImporter_ImportListMapping, (XmlReflectionImporter * __this, Type * type, XmlRootAttribute * root, String * defaultNamespace, XmlAttributes * atts, int32_t nestingLevel, MethodInfo * method)); DO_APP_FUNC(0x024C5C90, XmlTypeMapping *, XmlReflectionImporter_ImportListMapping_1, (XmlReflectionImporter * __this, TypeData * typeData, XmlRootAttribute * root, String * defaultNamespace, XmlAttributes * atts, int32_t nestingLevel, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFFFF8, XmlReflectionImporter_ImportListMapping_1__MethodInfo); DO_APP_FUNC(0x024C6BB0, XmlTypeMapping *, XmlReflectionImporter_ImportXmlNodeMapping, (XmlReflectionImporter * __this, TypeData * typeData, XmlRootAttribute * root, String * defaultNamespace, MethodInfo * method)); DO_APP_FUNC(0x024C6EC0, XmlTypeMapping *, XmlReflectionImporter_ImportPrimitiveMapping, (XmlReflectionImporter * __this, TypeData * typeData, XmlRootAttribute * root, String * defaultNamespace, MethodInfo * method)); DO_APP_FUNC(0x024C70C0, XmlTypeMapping *, XmlReflectionImporter_ImportEnumMapping, (XmlReflectionImporter * __this, TypeData * typeData, XmlRootAttribute * root, String * defaultNamespace, MethodInfo * method)); @@ -58918,16 +68260,23 @@ DO_APP_FUNC(0x024C7990, XmlTypeMapping *, XmlReflectionImporter_ImportXmlSeriali DO_APP_FUNC(0x024C7BE0, void, XmlReflectionImporter_ImportIncludedTypes, (XmlReflectionImporter * __this, Type * type, String * defaultNamespace, MethodInfo * method)); DO_APP_FUNC(0x024C7D30, List_1_System_Xml_Serialization_XmlReflectionMember_ *, XmlReflectionImporter_GetReflectionMembers, (XmlReflectionImporter * __this, Type * type, MethodInfo * method)); DO_APP_FUNC(0x024C8A30, XmlTypeMapMember *, XmlReflectionImporter_CreateMapMember, (XmlReflectionImporter * __this, Type * declaringType, XmlReflectionMember * rmember, String * defaultNamespace, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFFC68, XmlReflectionImporter_CreateMapMember__MethodInfo); DO_APP_FUNC(0x024C99E0, XmlTypeMapElementInfoList *, XmlReflectionImporter_ImportElementInfo, (XmlReflectionImporter * __this, Type * cls, String * defaultName, String * defaultNamespace, Type * defaultType, XmlTypeMapMemberElement * member, XmlAttributes * atts, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFFD28, XmlReflectionImporter_ImportElementInfo__MethodInfo); DO_APP_FUNC(0x024CAB50, XmlTypeMapElementInfoList *, XmlReflectionImporter_ImportAnyElementInfo, (XmlReflectionImporter * __this, String * defaultNamespace, XmlReflectionMember * rmember, XmlTypeMapMemberElement * member, XmlAttributes * atts, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFFB48, XmlReflectionImporter_ImportAnyElementInfo__MethodInfo); DO_APP_FUNC(0x024CB160, void, XmlReflectionImporter_ImportTextElementInfo, (XmlReflectionImporter * __this, XmlTypeMapElementInfoList * list, Type * defaultType, XmlTypeMapMemberElement * member, XmlAttributes * atts, String * defaultNamespace, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFFAD8, XmlReflectionImporter_ImportTextElementInfo__MethodInfo); DO_APP_FUNC(0x024CB610, bool, XmlReflectionImporter_CanBeNull, (XmlReflectionImporter * __this, TypeData * type, MethodInfo * method)); DO_APP_FUNC(0x024CB660, void, XmlReflectionImporter_IncludeType, (XmlReflectionImporter * __this, Type * type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFFBD0, XmlReflectionImporter_IncludeType__MethodInfo); DO_APP_FUNC(0x024CBB20, Object *, XmlReflectionImporter_GetDefaultValue, (XmlReflectionImporter * __this, TypeData * typeData, Object * defaultValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFFBF8, XmlReflectionImporter_GetDefaultValue__MethodInfo); DO_APP_FUNC(0x024CBD30, void, XmlReflectionImporter__cctor, (MethodInfo * method)); DO_APP_FUNC(0x024CBE60, void, XmlReflectionImporter_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, XmlReflectionImporter_c__ctor, (XmlReflectionImporter_c * __this, MethodInfo * method)); DO_APP_FUNC(0x024CBF10, int32_t, XmlReflectionImporter_c__ImportClassMapping_b__28_0, (XmlReflectionImporter_c * __this, XmlReflectionMember * m1, XmlReflectionMember * m2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00188, XmlReflectionImporter_c__ImportClassMapping_b__28_0__MethodInfo); DO_APP_FUNC(0x024CBF80, void, XmlReflectionMember__ctor, (XmlReflectionMember * __this, String * name, Type * type, XmlAttributes * attributes, MethodInfo * method)); DO_APP_FUNC(0x003BCD20, bool, XmlReflectionMember_get_IsReturnValue, (XmlReflectionMember * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, String *, XmlReflectionMember_get_MemberName, (XmlReflectionMember * __this, MethodInfo * method)); @@ -58982,11 +68331,12 @@ DO_APP_FUNC(0x024CEE80, String *, XmlSerializationReader_ReadNullableString, (Xm DO_APP_FUNC(0x024CEED0, Object *, XmlSerializationReader_ReadReferencedElement, (XmlSerializationReader * __this, MethodInfo * method)); DO_APP_FUNC(0x024CEF40, XmlSerializationReader_WriteCallbackInfo *, XmlSerializationReader_GetCallbackInfo, (XmlSerializationReader * __this, XmlQualifiedName * qname, MethodInfo * method)); DO_APP_FUNC(0x024CF090, Object *, XmlSerializationReader_ReadReferencedElement_1, (XmlSerializationReader * __this, String * name, String * ns, MethodInfo * method)); -DO_APP_FUNC(0x024CF430, bool, XmlSerializationReader_ReadList, (XmlSerializationReader * __this, Object * resultList, MethodInfo * method)); +DO_APP_FUNC(0x024CF430, bool, XmlSerializationReader_ReadList, (XmlSerializationReader * __this, Object * * resultList, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF990, XmlSerializationReader_ReadList__MethodInfo); DO_APP_FUNC(0x024CFAB0, void, XmlSerializationReader_ReadReferencedElements, (XmlSerializationReader * __this, MethodInfo * method)); -DO_APP_FUNC(0x024D08C0, Object *, XmlSerializationReader_ReadReferencingElement, (XmlSerializationReader * __this, String * fixupReference, MethodInfo * method)); -DO_APP_FUNC(0x024D0950, Object *, XmlSerializationReader_ReadReferencingElement_1, (XmlSerializationReader * __this, String * name, String * ns, String * fixupReference, MethodInfo * method)); -DO_APP_FUNC(0x024D0970, Object *, XmlSerializationReader_ReadReferencingElement_2, (XmlSerializationReader * __this, String * name, String * ns, bool elementCanBeType, String * fixupReference, MethodInfo * method)); +DO_APP_FUNC(0x024D08C0, Object *, XmlSerializationReader_ReadReferencingElement, (XmlSerializationReader * __this, String * * fixupReference, MethodInfo * method)); +DO_APP_FUNC(0x024D0950, Object *, XmlSerializationReader_ReadReferencingElement_1, (XmlSerializationReader * __this, String * name, String * ns, String * * fixupReference, MethodInfo * method)); +DO_APP_FUNC(0x024D0970, Object *, XmlSerializationReader_ReadReferencingElement_2, (XmlSerializationReader * __this, String * name, String * ns, bool elementCanBeType, String * * fixupReference, MethodInfo * method)); DO_APP_FUNC(0x024D0E70, IXmlSerializable *, XmlSerializationReader_ReadSerializable, (XmlSerializationReader * __this, IXmlSerializable * serializable, MethodInfo * method)); DO_APP_FUNC(0x024D1060, Object *, XmlSerializationReader_ReadTypedPrimitive, (XmlSerializationReader * __this, XmlQualifiedName * type, MethodInfo * method)); DO_APP_FUNC(0x024D1070, Object *, XmlSerializationReader_ReadTypedPrimitive_1, (XmlSerializationReader * __this, XmlQualifiedName * qname, bool reportUnknown, MethodInfo * method)); @@ -58994,11 +68344,13 @@ DO_APP_FUNC(0x024D1AD0, XmlNode *, XmlSerializationReader_ReadXmlNode, (XmlSeria DO_APP_FUNC(0x024D1B40, XmlDocument *, XmlSerializationReader_ReadXmlDocument, (XmlSerializationReader * __this, bool wrapped, MethodInfo * method)); DO_APP_FUNC(0x024D1C70, Array *, XmlSerializationReader_ShrinkArray, (XmlSerializationReader * __this, Array * a, int32_t length, Type * elementType, bool isNullable, MethodInfo * method)); DO_APP_FUNC(0x024D1E00, XmlQualifiedName *, XmlSerializationReader_ToXmlQualifiedName, (XmlSerializationReader * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF748, XmlSerializationReader_ToXmlQualifiedName__MethodInfo); DO_APP_FUNC(0x024D2090, void, XmlSerializationReader_UnknownAttribute, (XmlSerializationReader * __this, Object * o, XmlAttribute * attr, String * qnames, MethodInfo * method)); DO_APP_FUNC(0x024D2320, void, XmlSerializationReader_UnknownElement, (XmlSerializationReader * __this, Object * o, XmlElement * elem, String * qnames, MethodInfo * method)); DO_APP_FUNC(0x024D25B0, void, XmlSerializationReader_UnknownNode, (XmlSerializationReader * __this, Object * o, MethodInfo * method)); DO_APP_FUNC(0x024D2620, void, XmlSerializationReader_UnknownNode_1, (XmlSerializationReader * __this, Object * o, String * qnames, MethodInfo * method)); DO_APP_FUNC(0x024D26A0, void, XmlSerializationReader_OnUnknownNode, (XmlSerializationReader * __this, XmlNode * node, Object * o, String * qnames, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF7C8, XmlSerializationReader_OnUnknownNode__MethodInfo); DO_APP_FUNC(0x024D2A70, void, XmlSerializationReader_UnreferencedObject, (XmlSerializationReader * __this, String * id, Object * o, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, XmlSerializationReader_WriteCallbackInfo__ctor, (XmlSerializationReader_WriteCallbackInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x024D2BF0, void, XmlSerializationReader_CollectionFixup__ctor, (XmlSerializationReader_CollectionFixup * __this, Object * collection, XmlSerializationCollectionFixupCallback * callback, String * id, MethodInfo * method)); @@ -59020,13 +68372,18 @@ DO_APP_FUNC(0x024D2EE0, void, XmlSerializationReaderInterpreter_InitCallbacks, ( DO_APP_FUNC(0x003AE050, void, XmlSerializationReaderInterpreter_InitIDs, (XmlSerializationReaderInterpreter * __this, MethodInfo * method)); DO_APP_FUNC(0x024D3230, Object *, XmlSerializationReaderInterpreter_ReadRoot, (XmlSerializationReaderInterpreter * __this, MethodInfo * method)); DO_APP_FUNC(0x024D33F0, Object *, XmlSerializationReaderInterpreter_ReadEncodedObject, (XmlSerializationReaderInterpreter * __this, XmlTypeMapping * typeMap, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF5B8, XmlSerializationReaderInterpreter_ReadEncodedObject__MethodInfo); DO_APP_FUNC(0x024D35B0, Object *, XmlSerializationReaderInterpreter_ReadMessage, (XmlSerializationReaderInterpreter * __this, XmlMembersMapping * typeMap, MethodInfo * method)); DO_APP_FUNC(0x024D3B80, Object *, XmlSerializationReaderInterpreter_ReadRoot_1, (XmlSerializationReaderInterpreter * __this, XmlTypeMapping * rootMap, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF5E8, XmlSerializationReaderInterpreter_ReadRoot_1__MethodInfo); DO_APP_FUNC(0x024D3CF0, Object *, XmlSerializationReaderInterpreter_ReadObject, (XmlSerializationReaderInterpreter * __this, XmlTypeMapping * typeMap, bool isNullable, bool checkType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF5C8, XmlSerializationReaderInterpreter_ReadObject__MethodInfo); DO_APP_FUNC(0x024D3F20, Object *, XmlSerializationReaderInterpreter_ReadClassInstance, (XmlSerializationReaderInterpreter * __this, XmlTypeMapping * typeMap, bool isNullable, bool checkType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF588, XmlSerializationReaderInterpreter_ReadClassInstance__MethodInfo); DO_APP_FUNC(0x024D4240, void, XmlSerializationReaderInterpreter_ReadClassInstanceMembers, (XmlSerializationReaderInterpreter * __this, XmlTypeMapping * typeMap, Object * ob, MethodInfo * method)); DO_APP_FUNC(0x024D42F0, void, XmlSerializationReaderInterpreter_ReadAttributeMembers, (XmlSerializationReaderInterpreter * __this, ClassMap * map, Object * ob, bool isValueList, MethodInfo * method)); DO_APP_FUNC(0x024D48E0, void, XmlSerializationReaderInterpreter_ReadMembers, (XmlSerializationReaderInterpreter * __this, ClassMap * map, Object * ob, bool isValueList, bool readBySoapOrder, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF518, XmlSerializationReaderInterpreter_ReadMembers__MethodInfo); DO_APP_FUNC(0x024D6CF0, void, XmlSerializationReaderInterpreter_SetListMembersDefaults, (XmlSerializationReaderInterpreter * __this, ClassMap * map, Object * ob, bool isValueList, MethodInfo * method)); DO_APP_FUNC(0x024D6FD0, void, XmlSerializationReaderInterpreter_FixupMembers, (XmlSerializationReaderInterpreter * __this, ClassMap * map, Object * obfixup, bool isValueList, MethodInfo * method)); DO_APP_FUNC(0x024D25B0, void, XmlSerializationReaderInterpreter_ProcessUnknownAttribute, (XmlSerializationReaderInterpreter * __this, Object * target, MethodInfo * method)); @@ -59036,28 +68393,37 @@ DO_APP_FUNC(0x024D74D0, void, XmlSerializationReaderInterpreter_SetMemberValue, DO_APP_FUNC(0x024D7680, void, XmlSerializationReaderInterpreter_SetMemberValueFromAttr, (XmlSerializationReaderInterpreter * __this, XmlTypeMapMember * member, Object * ob, Object * value, bool isValueList, MethodInfo * method)); DO_APP_FUNC(0x024D7780, Object *, XmlSerializationReaderInterpreter_GetMemberValue, (XmlSerializationReaderInterpreter * __this, XmlTypeMapMember * member, Object * ob, bool isValueList, MethodInfo * method)); DO_APP_FUNC(0x024D7860, Object *, XmlSerializationReaderInterpreter_ReadObjectElement, (XmlSerializationReaderInterpreter * __this, XmlTypeMapElementInfo * elem, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF530, XmlSerializationReaderInterpreter_ReadObjectElement__MethodInfo); DO_APP_FUNC(0x024D7A60, Object *, XmlSerializationReaderInterpreter_ReadPrimitiveValue, (XmlSerializationReaderInterpreter * __this, XmlTypeMapElementInfo * elem, MethodInfo * method)); DO_APP_FUNC(0x024D7BE0, Object *, XmlSerializationReaderInterpreter_GetValueFromXmlString, (XmlSerializationReaderInterpreter * __this, String * value, TypeData * typeData, XmlTypeMapping * typeMap, MethodInfo * method)); DO_APP_FUNC(0x024D7D10, Object *, XmlSerializationReaderInterpreter_ReadListElement, (XmlSerializationReaderInterpreter * __this, XmlTypeMapping * typeMap, bool isNullable, Object * list, bool canCreateInstance, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF490, XmlSerializationReaderInterpreter_ReadListElement__MethodInfo); DO_APP_FUNC(0x024D81D0, Object *, XmlSerializationReaderInterpreter_ReadListString, (XmlSerializationReaderInterpreter * __this, XmlTypeMapping * typeMap, String * values, MethodInfo * method)); -DO_APP_FUNC(0x024D8490, void, XmlSerializationReaderInterpreter_AddListValue, (XmlSerializationReaderInterpreter * __this, TypeData * listType, Object * list, int32_t index, Object * value, bool canCreateInstance, MethodInfo * method)); +DO_APP_FUNC(0x024D8490, void, XmlSerializationReaderInterpreter_AddListValue, (XmlSerializationReaderInterpreter * __this, TypeData * listType, Object * * list, int32_t index, Object * value, bool canCreateInstance, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF4A8, XmlSerializationReaderInterpreter_AddListValue__MethodInfo); DO_APP_FUNC(0x01BBFE50, Object *, XmlSerializationReaderInterpreter_CreateInstance, (Type * type, bool nonPublic, MethodInfo * method)); DO_APP_FUNC(0x024D8850, Object *, XmlSerializationReaderInterpreter_CreateInstance_1, (XmlSerializationReaderInterpreter * __this, Type * type, MethodInfo * method)); DO_APP_FUNC(0x024D88D0, Object *, XmlSerializationReaderInterpreter_CreateList, (XmlSerializationReaderInterpreter * __this, Type * listType, MethodInfo * method)); DO_APP_FUNC(0x024D8980, Object *, XmlSerializationReaderInterpreter_InitializeList, (XmlSerializationReaderInterpreter * __this, TypeData * listType, MethodInfo * method)); DO_APP_FUNC(0x024D8A10, void, XmlSerializationReaderInterpreter_FillList, (XmlSerializationReaderInterpreter * __this, Object * list, Object * items, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF628, XmlSerializationReaderInterpreter_FillList__MethodInfo); DO_APP_FUNC(0x024D8A30, void, XmlSerializationReaderInterpreter_CopyEnumerableList, (XmlSerializationReaderInterpreter * __this, Object * source, Object * dest, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF4F8, XmlSerializationReaderInterpreter_CopyEnumerableList__MethodInfo); DO_APP_FUNC(0x024D8E90, Object *, XmlSerializationReaderInterpreter_ReadXmlNodeElement, (XmlSerializationReaderInterpreter * __this, XmlTypeMapping * typeMap, bool isNullable, MethodInfo * method)); DO_APP_FUNC(0x024D8EC0, Object *, XmlSerializationReaderInterpreter_ReadXmlNode, (XmlSerializationReaderInterpreter * __this, TypeData * type, bool wrapped, MethodInfo * method)); DO_APP_FUNC(0x024D9080, Object *, XmlSerializationReaderInterpreter_ReadPrimitiveElement, (XmlSerializationReaderInterpreter * __this, XmlTypeMapping * typeMap, bool isNullable, MethodInfo * method)); DO_APP_FUNC(0x024D9140, Object *, XmlSerializationReaderInterpreter_ReadEnumElement, (XmlSerializationReaderInterpreter * __this, XmlTypeMapping * typeMap, bool isNullable, MethodInfo * method)); DO_APP_FUNC(0x024D91C0, Object *, XmlSerializationReaderInterpreter_GetEnumValue, (XmlSerializationReaderInterpreter * __this, XmlTypeMapping * typeMap, String * val, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF4D8, XmlSerializationReaderInterpreter_GetEnumValue__MethodInfo); DO_APP_FUNC(0x024D9350, Object *, XmlSerializationReaderInterpreter_ReadXmlSerializableElement, (XmlSerializationReaderInterpreter * __this, XmlTypeMapping * typeMap, bool isNullable, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF4C8, XmlSerializationReaderInterpreter_ReadXmlSerializableElement__MethodInfo); DO_APP_FUNC(0x024D95C0, void, XmlSerializationReaderInterpreter__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01A34100, void, XmlSerializationReaderInterpreter_FixupCallbackInfo__ctor, (XmlSerializationReaderInterpreter_FixupCallbackInfo * __this, XmlSerializationReaderInterpreter * sri, ClassMap * map, bool isValueList, MethodInfo * method)); DO_APP_FUNC(0x024D9760, void, XmlSerializationReaderInterpreter_FixupCallbackInfo_FixupMembers, (XmlSerializationReaderInterpreter_FixupCallbackInfo * __this, Object * fixup, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF6B8, XmlSerializationReaderInterpreter_FixupCallbackInfo_FixupMembers__MethodInfo); DO_APP_FUNC(0x003BCE40, void, XmlSerializationReaderInterpreter_ReaderCallbackInfo__ctor, (XmlSerializationReaderInterpreter_ReaderCallbackInfo * __this, XmlSerializationReaderInterpreter * sri, XmlTypeMapping * typeMap, MethodInfo * method)); DO_APP_FUNC(0x024D97A0, Object *, XmlSerializationReaderInterpreter_ReaderCallbackInfo_ReadObject, (XmlSerializationReaderInterpreter_ReaderCallbackInfo * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF788, XmlSerializationReaderInterpreter_ReaderCallbackInfo_ReadObject__MethodInfo); DO_APP_FUNC(0x0084C240, void, XmlSerializationWriteCallback__ctor, (XmlSerializationWriteCallback * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EE650, void, XmlSerializationWriteCallback_Invoke, (XmlSerializationWriteCallback * __this, Object * o, MethodInfo * method)); DO_APP_FUNC(0x024D97E0, void, XmlSerializationWriter__ctor, (XmlSerializationWriter * __this, MethodInfo * method)); @@ -59092,6 +68458,7 @@ DO_APP_FUNC(0x024DB700, void, XmlSerializationWriter_WriteNullableStringLiteral, DO_APP_FUNC(0x024DB730, void, XmlSerializationWriter_WriteNullTagEncoded, (XmlSerializationWriter * __this, String * name, String * ns, MethodInfo * method)); DO_APP_FUNC(0x024DB850, void, XmlSerializationWriter_WriteNullTagLiteral, (XmlSerializationWriter * __this, String * name, String * ns, MethodInfo * method)); DO_APP_FUNC(0x024DB970, void, XmlSerializationWriter_WritePotentiallyReferencingElement, (XmlSerializationWriter * __this, String * n, String * ns, Object * o, Type * ambientType, bool suppressReference, bool isNullable, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF348, XmlSerializationWriter_WritePotentiallyReferencingElement__MethodInfo); DO_APP_FUNC(0x024DBE30, void, XmlSerializationWriter_WriteReferencedElements, (XmlSerializationWriter * __this, MethodInfo * method)); DO_APP_FUNC(0x024DC0F0, bool, XmlSerializationWriter_IsPrimitiveArray, (XmlSerializationWriter * __this, TypeData * td, MethodInfo * method)); DO_APP_FUNC(0x024DC1F0, void, XmlSerializationWriter_WriteArray, (XmlSerializationWriter * __this, Object * o, TypeData * td, MethodInfo * method)); @@ -59105,14 +68472,18 @@ DO_APP_FUNC(0x024DCB30, void, XmlSerializationWriter_WriteStartElement_1, (XmlSe DO_APP_FUNC(0x024DCB60, void, XmlSerializationWriter_WriteStartElement_2, (XmlSerializationWriter * __this, String * name, String * ns, Object * o, MethodInfo * method)); DO_APP_FUNC(0x024DCB90, void, XmlSerializationWriter_WriteStartElement_3, (XmlSerializationWriter * __this, String * name, String * ns, Object * o, bool writePrefixed, MethodInfo * method)); DO_APP_FUNC(0x024DCBC0, void, XmlSerializationWriter_WriteStartElement_4, (XmlSerializationWriter * __this, String * name, String * ns, Object * o, bool writePrefixed, ICollection * namespaces, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF360, XmlSerializationWriter_WriteStartElement_4__MethodInfo); DO_APP_FUNC(0x024DD2B0, void, XmlSerializationWriter_WriteTypedPrimitive, (XmlSerializationWriter * __this, String * name, String * ns, Object * o, bool xsiType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF2D8, XmlSerializationWriter_WriteTypedPrimitive__MethodInfo); DO_APP_FUNC(0x024DD620, void, XmlSerializationWriter_WriteValue, (XmlSerializationWriter * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x024DD660, void, XmlSerializationWriter_WriteXmlAttribute, (XmlSerializationWriter * __this, XmlNode * node, Object * container, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF2E8, XmlSerializationWriter_WriteXmlAttribute__MethodInfo); DO_APP_FUNC(0x024DDBB0, void, XmlSerializationWriter_WriteXsiType, (XmlSerializationWriter * __this, String * name, String * ns, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, XmlSerializationWriter_WriteCallbackInfo__ctor, (XmlSerializationWriter_WriteCallbackInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x024DDD10, void, XmlSerializationWriterInterpreter__ctor, (XmlSerializationWriterInterpreter * __this, XmlMapping * typeMap, MethodInfo * method)); DO_APP_FUNC(0x024DDE50, void, XmlSerializationWriterInterpreter_InitCallbacks, (XmlSerializationWriterInterpreter * __this, MethodInfo * method)); DO_APP_FUNC(0x024DE240, void, XmlSerializationWriterInterpreter_WriteRoot, (XmlSerializationWriterInterpreter * __this, Object * ob, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF318, XmlSerializationWriterInterpreter_WriteRoot__MethodInfo); DO_APP_FUNC(0x024DE510, void, XmlSerializationWriterInterpreter_WriteObject, (XmlSerializationWriterInterpreter * __this, XmlTypeMapping * typeMap, Object * ob, String * element, String * namesp, bool isNullable, bool needType, bool writeWrappingElem, MethodInfo * method)); DO_APP_FUNC(0x024DED50, void, XmlSerializationWriterInterpreter_WriteMessage, (XmlSerializationWriterInterpreter * __this, XmlMembersMapping * membersMap, Object__Array * parameters, MethodInfo * method)); DO_APP_FUNC(0x024DF020, void, XmlSerializationWriterInterpreter_WriteObjectElement, (XmlSerializationWriterInterpreter * __this, XmlTypeMapping * typeMap, Object * ob, String * element, String * namesp, MethodInfo * method)); @@ -59121,43 +68492,56 @@ DO_APP_FUNC(0x024DF220, void, XmlSerializationWriterInterpreter_WriteObjectEleme DO_APP_FUNC(0x024DF2D0, void, XmlSerializationWriterInterpreter_WriteMembers, (XmlSerializationWriterInterpreter * __this, ClassMap * map, Object * ob, bool isValueList, MethodInfo * method)); DO_APP_FUNC(0x024DF330, void, XmlSerializationWriterInterpreter_WriteAttributeMembers, (XmlSerializationWriterInterpreter * __this, ClassMap * map, Object * ob, bool isValueList, MethodInfo * method)); DO_APP_FUNC(0x024DF8A0, void, XmlSerializationWriterInterpreter_WriteElementMembers, (XmlSerializationWriterInterpreter * __this, ClassMap * map, Object * ob, bool isValueList, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF200, XmlSerializationWriterInterpreter_WriteElementMembers__MethodInfo); DO_APP_FUNC(0x024DFE50, Object *, XmlSerializationWriterInterpreter_GetMemberValue, (XmlSerializationWriterInterpreter * __this, XmlTypeMapMember * member, Object * ob, bool isValueList, MethodInfo * method)); DO_APP_FUNC(0x024DFF30, bool, XmlSerializationWriterInterpreter_MemberHasValue, (XmlSerializationWriterInterpreter * __this, XmlTypeMapMember * member, Object * ob, bool isValueList, MethodInfo * method)); DO_APP_FUNC(0x024E0240, void, XmlSerializationWriterInterpreter_WriteMemberElement, (XmlSerializationWriterInterpreter * __this, XmlTypeMapElementInfo * elem, Object * memberValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF250, XmlSerializationWriterInterpreter_WriteMemberElement__MethodInfo); DO_APP_FUNC(0x024E08E0, Object *, XmlSerializationWriterInterpreter_ImplicitConvert, (Object * obj, Type * type, MethodInfo * method)); DO_APP_FUNC(0x024E0C50, void, XmlSerializationWriterInterpreter_WritePrimitiveValueLiteral, (XmlSerializationWriterInterpreter * __this, Object * memberValue, String * name, String * ns, XmlTypeMapping * mappedType, TypeData * typeData, bool wrapped, bool isNullable, MethodInfo * method)); DO_APP_FUNC(0x024E0F50, void, XmlSerializationWriterInterpreter_WritePrimitiveValueEncoded, (XmlSerializationWriterInterpreter * __this, Object * memberValue, String * name, String * ns, XmlQualifiedName * xsiType, XmlTypeMapping * mappedType, TypeData * typeData, bool wrapped, bool isNullable, MethodInfo * method)); DO_APP_FUNC(0x024E1270, void, XmlSerializationWriterInterpreter_WriteListElement, (XmlSerializationWriterInterpreter * __this, XmlTypeMapping * typeMap, Object * ob, String * element, String * namesp, MethodInfo * method)); DO_APP_FUNC(0x024E1520, void, XmlSerializationWriterInterpreter_WriteListContent, (XmlSerializationWriterInterpreter * __this, Object * container, TypeData * listType, ListMap * map, Object * ob, StringBuilder * targetString, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF230, XmlSerializationWriterInterpreter_WriteListContent__MethodInfo); DO_APP_FUNC(0x024E1CD0, int32_t, XmlSerializationWriterInterpreter_GetListCount, (XmlSerializationWriterInterpreter * __this, TypeData * listType, Object * ob, MethodInfo * method)); DO_APP_FUNC(0x024E1EB0, void, XmlSerializationWriterInterpreter_WriteAnyElementContent, (XmlSerializationWriterInterpreter * __this, XmlTypeMapMemberAnyElement * member, Object * memberValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF1A8, XmlSerializationWriterInterpreter_WriteAnyElementContent__MethodInfo); DO_APP_FUNC(0x024E24A0, void, XmlSerializationWriterInterpreter_WritePrimitiveElement, (XmlSerializationWriterInterpreter * __this, XmlTypeMapping * typeMap, Object * ob, String * element, String * namesp, MethodInfo * method)); DO_APP_FUNC(0x024E24F0, void, XmlSerializationWriterInterpreter_WriteEnumElement, (XmlSerializationWriterInterpreter * __this, XmlTypeMapping * typeMap, Object * ob, String * element, String * namesp, MethodInfo * method)); DO_APP_FUNC(0x024E25C0, String *, XmlSerializationWriterInterpreter_GetStringValue, (XmlSerializationWriterInterpreter * __this, XmlTypeMapping * typeMap, TypeData * type, Object * value, MethodInfo * method)); DO_APP_FUNC(0x024E28D0, String *, XmlSerializationWriterInterpreter_GetEnumXmlValue, (XmlSerializationWriterInterpreter * __this, XmlTypeMapping * typeMap, Object * ob, MethodInfo * method)); DO_APP_FUNC(0x003BCE40, void, XmlSerializationWriterInterpreter_CallbackInfo__ctor, (XmlSerializationWriterInterpreter_CallbackInfo * __this, XmlSerializationWriterInterpreter * swi, XmlTypeMapping * typeMap, MethodInfo * method)); DO_APP_FUNC(0x024E2980, void, XmlSerializationWriterInterpreter_CallbackInfo_WriteObject, (XmlSerializationWriterInterpreter_CallbackInfo * __this, Object * ob, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF2B8, XmlSerializationWriterInterpreter_CallbackInfo_WriteObject__MethodInfo); DO_APP_FUNC(0x024E29E0, void, XmlSerializationWriterInterpreter_CallbackInfo_WriteEnum, (XmlSerializationWriterInterpreter_CallbackInfo * __this, Object * ob, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF280, XmlSerializationWriterInterpreter_CallbackInfo_WriteEnum__MethodInfo); DO_APP_FUNC(0x024E2A40, void, XmlSerializer__cctor, (MethodInfo * method)); DO_APP_FUNC(0x024E2BA0, void, XmlSerializer__ctor, (XmlSerializer * __this, Type * type, MethodInfo * method)); DO_APP_FUNC(0x024E2D00, void, XmlSerializer__ctor_1, (XmlSerializer * __this, Type * type, XmlAttributeOverrides * overrides, Type__Array * extraTypes, XmlRootAttribute * root, String * defaultNamespace, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D027A8, XmlSerializer__ctor_1__MethodInfo); DO_APP_FUNC(0x02281B90, void, XmlSerializer_OnUnknownAttribute, (XmlSerializer * __this, XmlAttributeEventArgs * e, MethodInfo * method)); DO_APP_FUNC(0x024E2EC0, void, XmlSerializer_OnUnknownElement, (XmlSerializer * __this, XmlElementEventArgs * e, MethodInfo * method)); DO_APP_FUNC(0x024E2EE0, void, XmlSerializer_OnUnknownNode, (XmlSerializer * __this, XmlNodeEventArgs * e, MethodInfo * method)); DO_APP_FUNC(0x0103AA40, void, XmlSerializer_OnUnreferencedObject, (XmlSerializer * __this, UnreferencedObjectEventArgs * e, MethodInfo * method)); DO_APP_FUNC(0x024E2F00, XmlSerializationReader *, XmlSerializer_CreateReader, (XmlSerializer * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D027A0, XmlSerializer_CreateReader__MethodInfo); DO_APP_FUNC(0x024E2F50, XmlSerializationWriter *, XmlSerializer_CreateWriter, (XmlSerializer * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02798, XmlSerializer_CreateWriter__MethodInfo); DO_APP_FUNC(0x024E2FA0, Object *, XmlSerializer_Deserialize, (XmlSerializer * __this, TextReader * textReader, MethodInfo * method)); DO_APP_FUNC(0x024E33F0, Object *, XmlSerializer_Deserialize_1, (XmlSerializer * __this, XmlReader * xmlReader, MethodInfo * method)); DO_APP_FUNC(0x024E3520, Object *, XmlSerializer_Deserialize_2, (XmlSerializer * __this, XmlSerializationReader * reader, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02770, XmlSerializer_Deserialize_2__MethodInfo); DO_APP_FUNC(0x024E37D0, void, XmlSerializer_Serialize, (XmlSerializer * __this, Object * o, XmlSerializationWriter * writer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02758, XmlSerializer_Serialize__MethodInfo); DO_APP_FUNC(0x024E3A00, void, XmlSerializer_Serialize_1, (XmlSerializer * __this, TextWriter * textWriter, Object * o, MethodInfo * method)); DO_APP_FUNC(0x024E3C10, void, XmlSerializer_Serialize_2, (XmlSerializer * __this, XmlWriter * xmlWriter, Object * o, MethodInfo * method)); DO_APP_FUNC(0x024E3C30, void, XmlSerializer_Serialize_3, (XmlSerializer * __this, XmlWriter * xmlWriter, Object * o, XmlSerializerNamespaces * namespaces, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02760, XmlSerializer_Serialize_3__MethodInfo); DO_APP_FUNC(0x024E4060, XmlSerializationWriter *, XmlSerializer_CreateWriter_1, (XmlSerializer * __this, XmlMapping * typeMapping, MethodInfo * method)); DO_APP_FUNC(0x024E45A0, XmlSerializationReader *, XmlSerializer_CreateReader_1, (XmlSerializer * __this, XmlMapping * typeMapping, MethodInfo * method)); DO_APP_FUNC(0x024E4650, XmlSerializationWriter *, XmlSerializer_SerializerData_CreateWriter, (XmlSerializer_SerializerData * __this, MethodInfo * method)); DO_APP_FUNC(0x024E4730, XmlSerializationWriter *, XmlSerializerImplementation_get_Writer, (XmlSerializerImplementation * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02788, XmlSerializerImplementation_get_Writer__MethodInfo); DO_APP_FUNC(0x003AE050, void, XmlTextAttribute__ctor, (XmlTextAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x024E4780, String *, XmlTextAttribute_get_DataType, (XmlTextAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Type *, XmlTextAttribute_get_Type, (XmlTextAttribute * __this, MethodInfo * method)); @@ -59187,8 +68571,10 @@ DO_APP_FUNC(0x004217A0, bool, XmlTypeMapElementInfo_get_WrappedElement, (XmlType DO_APP_FUNC(0x004217B0, void, XmlTypeMapElementInfo_set_WrappedElement, (XmlTypeMapElementInfo * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x024E4AB0, bool, XmlTypeMapElementInfo_get_IsTextElement, (XmlTypeMapElementInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x024E4B30, void, XmlTypeMapElementInfo_set_IsTextElement, (XmlTypeMapElementInfo * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02738, XmlTypeMapElementInfo_set_IsTextElement__MethodInfo); DO_APP_FUNC(0x024E4CA0, bool, XmlTypeMapElementInfo_get_IsUnnamedAnyElement, (XmlTypeMapElementInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x024E4D30, void, XmlTypeMapElementInfo_set_IsUnnamedAnyElement, (XmlTypeMapElementInfo * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02728, XmlTypeMapElementInfo_set_IsUnnamedAnyElement__MethodInfo); DO_APP_FUNC(0x01D31FA0, int32_t, XmlTypeMapElementInfo_get_ExplicitOrder, (XmlTypeMapElementInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x00AF5920, void, XmlTypeMapElementInfo_set_ExplicitOrder, (XmlTypeMapElementInfo * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x024E4EA0, bool, XmlTypeMapElementInfo_Equals, (XmlTypeMapElementInfo * __this, Object * other, MethodInfo * method)); @@ -59270,7 +68656,9 @@ DO_APP_FUNC(0x024E7460, XmlTypeMapping *, XmlTypeMapping_GetRealTypeMap, (XmlTyp DO_APP_FUNC(0x024E75F0, XmlTypeMapping *, XmlTypeMapping_GetRealElementMap, (XmlTypeMapping * __this, String * name, String * ens, MethodInfo * method)); DO_APP_FUNC(0x024E7930, void, XmlTypeMapping_UpdateRoot, (XmlTypeMapping * __this, XmlQualifiedName * qname, MethodInfo * method)); DO_APP_FUNC(0x024E7A80, void, XmlSerializableMapping__ctor, (XmlSerializableMapping * __this, XmlRootAttribute * root, String * elementName, String * ns, TypeData * typeData, String * xmlType, String * xmlTypeNamespace, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02718, XmlSerializableMapping__ctor__MethodInfo); DO_APP_FUNC(0x024E8880, void, ClassMap_AddMember, (ClassMap * __this, XmlTypeMapMember * member, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D026B8, ClassMap_AddMember__MethodInfo); DO_APP_FUNC(0x024E96D0, void, ClassMap_RegisterFlatList, (ClassMap * __this, XmlTypeMapMemberExpandable * member, MethodInfo * method)); DO_APP_FUNC(0x024E97E0, XmlTypeMapMemberAttribute *, ClassMap_GetAttribute, (ClassMap * __this, String * name, String * ns, MethodInfo * method)); DO_APP_FUNC(0x024E98E0, XmlTypeMapElementInfo *, ClassMap_GetElement, (ClassMap * __this, String * name, String * ns, int32_t minimalOrder, MethodInfo * method)); @@ -59295,9 +68683,10 @@ DO_APP_FUNC(0x003AE960, void, ListMap_set_ChoiceMember, (ListMap * __this, Strin DO_APP_FUNC(0x003BB3C0, XmlTypeMapElementInfoList *, ListMap_get_ItemInfo, (ListMap * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, ListMap_set_ItemInfo, (ListMap * __this, XmlTypeMapElementInfoList * value, MethodInfo * method)); DO_APP_FUNC(0x024EAAC0, XmlTypeMapElementInfo *, ListMap_FindElement, (ListMap * __this, Object * ob, int32_t index, Object * memberValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02668, ListMap_FindElement__MethodInfo); DO_APP_FUNC(0x024EB160, XmlTypeMapElementInfo *, ListMap_FindElement_1, (ListMap * __this, String * elementName, String * ns, MethodInfo * method)); DO_APP_FUNC(0x024EB3E0, XmlTypeMapElementInfo *, ListMap_FindTextElement, (ListMap * __this, MethodInfo * method)); -DO_APP_FUNC(0x024EB5C0, void, ListMap_GetArrayType, (ListMap * __this, int32_t itemCount, String * localName, String * ns, MethodInfo * method)); +DO_APP_FUNC(0x024EB5C0, void, ListMap_GetArrayType, (ListMap * __this, int32_t itemCount, String * * localName, String * * ns, MethodInfo * method)); DO_APP_FUNC(0x024EBAA0, bool, ListMap_Equals, (ListMap * __this, Object * other, MethodInfo * method)); DO_APP_FUNC(0x019819D0, int32_t, ListMap_GetHashCode, (ListMap * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ListMap__ctor, (ListMap * __this, MethodInfo * method)); @@ -59307,7 +68696,9 @@ DO_APP_FUNC(0x003BB3E0, String__Array *, EnumMap_get_EnumNames, (EnumMap * __thi DO_APP_FUNC(0x003BB3B0, String__Array *, EnumMap_get_XmlNames, (EnumMap * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB330, Int64__Array *, EnumMap_get_Values, (EnumMap * __this, MethodInfo * method)); DO_APP_FUNC(0x024EC000, String *, EnumMap_GetXmlName, (EnumMap * __this, String * typeName, Object * enumValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02688, EnumMap_GetXmlName__MethodInfo); DO_APP_FUNC(0x024EC3A0, String *, EnumMap_GetEnumName, (EnumMap * __this, String * typeName, String * xmlName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02680, EnumMap_GetEnumName__MethodInfo); DO_APP_FUNC(0x024EC760, void, EnumMap_EnumMapMember__ctor, (EnumMap_EnumMapMember * __this, String * xmlName, String * enumName, int64_t value, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, String *, EnumMap_EnumMapMember_get_XmlName, (EnumMap_EnumMapMember * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, String *, EnumMap_EnumMapMember_get_EnumName, (EnumMap_EnumMapMember * __this, MethodInfo * method)); @@ -59315,10 +68706,10 @@ DO_APP_FUNC(0x003BB3E0, int64_t, EnumMap_EnumMapMember_get_Value, (EnumMap_EnumM DO_APP_FUNC(0x0041AF00, bool, XmlReaderSection_get_ProhibitDefaultUrlResolver, (MethodInfo * method)); DO_APP_FUNC(0x024EC820, XmlResolver *, XmlReaderSection_CreateDefaultResolver, (MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, XmlReaderSection_get_CollapseWhiteSpaceIntoEmptyString, (MethodInfo * method)); -DO_APP_FUNC(0x024EC870, void, StringConcat_Clear, (StringConcat__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003C7300, int32_t, StringConcat_get_Count, (StringConcat__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x024EC8D0, String *, StringConcat_GetResult, (StringConcat__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x024EC9D0, void, StringConcat_ConcatNoDelimiter, (StringConcat__Boxed * __this, String * s, MethodInfo * method)); +DO_APP_FUNC(0x024EC870, void, StringConcat_Clear, (StringConcat * __this, MethodInfo * method)); +DO_APP_FUNC(0x003C7300, int32_t, StringConcat_get_Count, (StringConcat * __this, MethodInfo * method)); +DO_APP_FUNC(0x024EC8D0, String *, StringConcat_GetResult, (StringConcat * __this, MethodInfo * method)); +DO_APP_FUNC(0x024EC9D0, void, StringConcat_ConcatNoDelimiter, (StringConcat * __this, String * s, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, DoubleLinkAxis *, AxisElement_get_CurNode, (AxisElement * __this, MethodInfo * method)); DO_APP_FUNC(0x024ECB70, void, AxisElement__ctor, (AxisElement * __this, DoubleLinkAxis * node, int32_t depth, MethodInfo * method)); DO_APP_FUNC(0x024ECBD0, void, AxisElement_SetDepth, (AxisElement * __this, int32_t depth, MethodInfo * method)); @@ -59356,7 +68747,9 @@ DO_APP_FUNC(0x024EE990, bool, Asttree_IsAttribute, (Axis * ast, MethodInfo * met DO_APP_FUNC(0x024EE9C0, bool, Asttree_IsDescendantOrSelf, (Axis * ast, MethodInfo * method)); DO_APP_FUNC(0x024EE9F0, bool, Asttree_IsSelf, (Axis * ast, MethodInfo * method)); DO_APP_FUNC(0x024EEA20, void, Asttree_CompileXPath, (Asttree * __this, String * xPath, bool isField, XmlNamespaceManager * nsmgr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02648, Asttree_CompileXPath__MethodInfo); DO_APP_FUNC(0x024EF420, void, Asttree_SetURN, (Asttree * __this, Axis * axis, XmlNamespaceManager * nsmgr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02600, Asttree_SetURN__MethodInfo); DO_APP_FUNC(0x024EF590, void, AutoValidator__ctor, (AutoValidator * __this, XmlValidatingReaderImpl * reader, XmlSchemaCollection * schemaCollection, IValidationEventHandling * eventHandling, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, AutoValidator_get_PreserveWhitespace, (AutoValidator * __this, MethodInfo * method)); DO_APP_FUNC(0x024EF670, void, AutoValidator_Validate, (AutoValidator * __this, MethodInfo * method)); @@ -59383,6 +68776,7 @@ DO_APP_FUNC(0x024F1260, void, BaseProcessor_SendValidationEvent_5, (BaseProcesso DO_APP_FUNC(0x024F1330, void, BaseProcessor_SendValidationEvent_6, (BaseProcessor * __this, XmlSchemaException * e, MethodInfo * method)); DO_APP_FUNC(0x024F13E0, void, BaseProcessor_SendValidationEvent_7, (BaseProcessor * __this, String * code, String * msg, XmlSchemaObject * source, XmlSeverityType__Enum severity, MethodInfo * method)); DO_APP_FUNC(0x024F1490, void, BaseProcessor_SendValidationEvent_8, (BaseProcessor * __this, XmlSchemaException * e, XmlSeverityType__Enum severity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D025F0, BaseProcessor_SendValidationEvent_8__MethodInfo); DO_APP_FUNC(0x024F1560, void, BaseProcessor_SendValidationEventNoThrow, (BaseProcessor * __this, XmlSchemaException * e, XmlSeverityType__Enum severity, MethodInfo * method)); DO_APP_FUNC(0x024F1600, void, BaseValidator__ctor, (BaseValidator * __this, BaseValidator * other, MethodInfo * method)); DO_APP_FUNC(0x024F1950, void, BaseValidator__ctor_1, (BaseValidator * __this, XmlValidatingReaderImpl * reader, XmlSchemaCollection * schemaCollection, IValidationEventHandling * eventHandling, MethodInfo * method)); @@ -59398,6 +68792,7 @@ DO_APP_FUNC(0x003C73A0, void, BaseValidator_set_BaseUri, (BaseValidator * __this DO_APP_FUNC(0x024F1E50, ValidationEventHandler *, BaseValidator_get_EventHandler, (BaseValidator * __this, MethodInfo * method)); DO_APP_FUNC(0x003CD530, SchemaInfo *, BaseValidator_get_SchemaInfo, (BaseValidator * __this, MethodInfo * method)); DO_APP_FUNC(0x024F1EE0, void, BaseValidator_set_DtdInfo, (BaseValidator * __this, IDtdInfo * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D025F8, BaseValidator_set_DtdInfo__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, BaseValidator_get_PreserveWhitespace, (BaseValidator * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BaseValidator_Validate, (BaseValidator * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BaseValidator_CompleteValidation, (BaseValidator * __this, MethodInfo * method)); @@ -59412,8 +68807,11 @@ DO_APP_FUNC(0x024F2870, void, BaseValidator_SendValidationEvent_3, (BaseValidato DO_APP_FUNC(0x024F2900, void, BaseValidator_SendValidationEvent_4, (BaseValidator * __this, String * code, String * msg, XmlSeverityType__Enum severity, MethodInfo * method)); DO_APP_FUNC(0x024F2A30, void, BaseValidator_SendValidationEvent_5, (BaseValidator * __this, String * code, String__Array * args, XmlSeverityType__Enum severity, MethodInfo * method)); DO_APP_FUNC(0x024F2B70, void, BaseValidator_SendValidationEvent_6, (BaseValidator * __this, XmlSchemaException * e, XmlSeverityType__Enum severity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D025E0, BaseValidator_SendValidationEvent_6__MethodInfo); DO_APP_FUNC(0x024F2C00, void, BaseValidator_ProcessEntity, (SchemaInfo * sinfo, String * name, Object * sender, ValidationEventHandler * eventhandler, String * baseUri, int32_t lineNumber, int32_t linePosition, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D025C8, BaseValidator_ProcessEntity__MethodInfo); DO_APP_FUNC(0x024F2E30, void, BaseValidator_ProcessEntity_1, (SchemaInfo * sinfo, String * name, IValidationEventHandling * eventHandling, String * baseUriStr, int32_t lineNumber, int32_t linePosition, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D025D8, BaseValidator_ProcessEntity_1__MethodInfo); DO_APP_FUNC(0x024F3020, BaseValidator *, BaseValidator_CreateInstance, (ValidationType__Enum valType, XmlValidatingReaderImpl * reader, XmlSchemaCollection * schemaCollection, IValidationEventHandling * eventHandling, bool processIdentityConstraints, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BitSet_1__ctor, (BitSet_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x024F3420, void, BitSet_1__ctor_1, (BitSet_1 * __this, int32_t count, MethodInfo * method)); @@ -59440,6 +68838,7 @@ DO_APP_FUNC(0x003BB3E0, Asttree *, CompiledIdentityConstraint_get_Selector, (Com DO_APP_FUNC(0x003BB3B0, Asttree__Array *, CompiledIdentityConstraint_get_Fields, (CompiledIdentityConstraint * __this, MethodInfo * method)); DO_APP_FUNC(0x024F4130, void, CompiledIdentityConstraint__ctor, (CompiledIdentityConstraint * __this, MethodInfo * method)); DO_APP_FUNC(0x024F4240, void, CompiledIdentityConstraint__ctor_1, (CompiledIdentityConstraint * __this, XmlSchemaIdentityConstraint * constraint, XmlNamespaceManager * nsmgr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D025A0, CompiledIdentityConstraint__ctor_1__MethodInfo); DO_APP_FUNC(0x024F4870, void, CompiledIdentityConstraint__cctor, (MethodInfo * method)); DO_APP_FUNC(0x009F7E90, int32_t, ConstraintStruct_get_TableDim, (ConstraintStruct * __this, MethodInfo * method)); DO_APP_FUNC(0x024F4A30, void, ConstraintStruct__ctor, (ConstraintStruct * __this, CompiledIdentityConstraint * constraint, MethodInfo * method)); @@ -59492,7 +68891,7 @@ DO_APP_FUNC(0x024F7FB0, int32_t, SymbolsDictionary_get_Item, (SymbolsDictionary DO_APP_FUNC(0x024F80B0, bool, SymbolsDictionary_Exists, (SymbolsDictionary * __this, XmlQualifiedName * name, MethodInfo * method)); DO_APP_FUNC(0x024F80F0, Object *, SymbolsDictionary_GetParticle, (SymbolsDictionary * __this, int32_t symbol, MethodInfo * method)); DO_APP_FUNC(0x024F8130, String *, SymbolsDictionary_NameOf, (SymbolsDictionary * __this, int32_t symbol, MethodInfo * method)); -DO_APP_FUNC(0x0114D850, void, Position__ctor, (Position__Boxed * __this, int32_t symbol, Object * particle, MethodInfo * method)); +DO_APP_FUNC(0x0114D850, void, Position__ctor, (Position * __this, int32_t symbol, Object * particle, MethodInfo * method)); DO_APP_FUNC(0x024F85F0, int32_t, Positions_Add, (Positions * __this, int32_t symbol, Object * particle, MethodInfo * method)); DO_APP_FUNC(0x024F86E0, Position, Positions_get_Item, (Positions * __this, int32_t pos, MethodInfo * method)); DO_APP_FUNC(0x01B1A1A0, int32_t, Positions_get_Count, (Positions * __this, MethodInfo * method)); @@ -59509,7 +68908,9 @@ DO_APP_FUNC(0x003BCE40, void, NamespaceListNode__ctor, (NamespaceListNode * __th DO_APP_FUNC(0x024F8900, ICollection *, NamespaceListNode_GetResolvedSymbols, (NamespaceListNode * __this, SymbolsDictionary * symbols, MethodInfo * method)); DO_APP_FUNC(0x024F8930, void, NamespaceListNode_ExpandTree, (NamespaceListNode * __this, InteriorNode * parent, SymbolsDictionary * symbols, Positions * positions, MethodInfo * method)); DO_APP_FUNC(0x024F8D70, void, NamespaceListNode_ConstructPos, (NamespaceListNode * __this, BitSet_1 * firstpos, BitSet_1 * lastpos, BitSet_1__Array * followpos, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02548, NamespaceListNode_ConstructPos__MethodInfo); DO_APP_FUNC(0x024F8DC0, bool, NamespaceListNode_get_IsNullable, (NamespaceListNode * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02540, NamespaceListNode_get_IsNullable__MethodInfo); DO_APP_FUNC(0x003BB3C0, SyntaxTreeNode *, InteriorNode_get_LeftChild, (InteriorNode * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, InteriorNode_set_LeftChild, (InteriorNode * __this, SyntaxTreeNode * value, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, SyntaxTreeNode *, InteriorNode_get_RightChild, (InteriorNode * __this, MethodInfo * method)); @@ -59521,7 +68922,7 @@ DO_APP_FUNC(0x024F90D0, void, SequenceNode_ConstructPos, (SequenceNode * __this, DO_APP_FUNC(0x024F9B10, bool, SequenceNode_get_IsNullable, (SequenceNode * __this, MethodInfo * method)); DO_APP_FUNC(0x024F9D00, void, SequenceNode_ExpandTree, (SequenceNode * __this, InteriorNode * parent, SymbolsDictionary * symbols, Positions * positions, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SequenceNode__ctor, (SequenceNode * __this, MethodInfo * method)); -DO_APP_FUNC(0x024F9D10, void, SequenceNode_SequenceConstructPosContext__ctor, (SequenceNode_SequenceConstructPosContext__Boxed * __this, SequenceNode * node, BitSet_1 * firstpos, BitSet_1 * lastpos, MethodInfo * method)); +DO_APP_FUNC(0x024F9D10, void, SequenceNode_SequenceConstructPosContext__ctor, (SequenceNode_SequenceConstructPosContext * __this, SequenceNode * node, BitSet_1 * firstpos, BitSet_1 * lastpos, MethodInfo * method)); DO_APP_FUNC(0x024F9EB0, void, ChoiceNode_ConstructChildPos, (SyntaxTreeNode * child, BitSet_1 * firstpos, BitSet_1 * lastpos, BitSet_1__Array * followpos, MethodInfo * method)); DO_APP_FUNC(0x024F9FC0, void, ChoiceNode_ConstructPos, (ChoiceNode * __this, BitSet_1 * firstpos, BitSet_1 * lastpos, BitSet_1__Array * followpos, MethodInfo * method)); DO_APP_FUNC(0x024FA1F0, bool, ChoiceNode_get_IsNullable, (ChoiceNode * __this, MethodInfo * method)); @@ -59552,7 +68953,7 @@ DO_APP_FUNC(0x01AA0780, bool, ContentValidator_get_IsEmptiable, (ContentValidato DO_APP_FUNC(0x024FA520, bool, ContentValidator_get_IsOpen, (ContentValidator * __this, MethodInfo * method)); DO_APP_FUNC(0x019BF330, void, ContentValidator_set_IsOpen, (ContentValidator * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ContentValidator_InitValidation, (ContentValidator * __this, ValidationState * context, MethodInfo * method)); -DO_APP_FUNC(0x024FA540, Object *, ContentValidator_ValidateElement, (ContentValidator * __this, XmlQualifiedName * name, ValidationState * context, int32_t errorCode, MethodInfo * method)); +DO_APP_FUNC(0x024FA540, Object *, ContentValidator_ValidateElement, (ContentValidator * __this, XmlQualifiedName * name, ValidationState * context, int32_t * errorCode, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, ContentValidator_CompleteValidation, (ContentValidator * __this, ValidationState * context, MethodInfo * method)); DO_APP_FUNC(0x003CB690, ArrayList *, ContentValidator_ExpectedElements, (ContentValidator * __this, ValidationState * context, bool isRequiredOnly, MethodInfo * method)); DO_APP_FUNC(0x003CB690, ArrayList *, ContentValidator_ExpectedParticles, (ContentValidator * __this, ValidationState * context, bool isRequiredOnly, XmlSchemaSet * schemaSet, MethodInfo * method)); @@ -59562,8 +68963,11 @@ DO_APP_FUNC(0x024FA8A0, void, ContentValidator__cctor, (MethodInfo * method)); DO_APP_FUNC(0x024FAB20, void, ParticleContentValidator__ctor, (ParticleContentValidator * __this, XmlSchemaContentType__Enum contentType, MethodInfo * method)); DO_APP_FUNC(0x024FAB80, void, ParticleContentValidator__ctor_1, (ParticleContentValidator * __this, XmlSchemaContentType__Enum contentType, bool enableUpaCheck, MethodInfo * method)); DO_APP_FUNC(0x024FABF0, void, ParticleContentValidator_InitValidation, (ParticleContentValidator * __this, ValidationState * context, MethodInfo * method)); -DO_APP_FUNC(0x024FAC40, Object *, ParticleContentValidator_ValidateElement, (ParticleContentValidator * __this, XmlQualifiedName * name, ValidationState * context, int32_t errorCode, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02500, ParticleContentValidator_InitValidation__MethodInfo); +DO_APP_FUNC(0x024FAC40, Object *, ParticleContentValidator_ValidateElement, (ParticleContentValidator * __this, XmlQualifiedName * name, ValidationState * context, int32_t * errorCode, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D024F8, ParticleContentValidator_ValidateElement__MethodInfo); DO_APP_FUNC(0x024FAC90, bool, ParticleContentValidator_CompleteValidation, (ParticleContentValidator * __this, ValidationState * context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D024F0, ParticleContentValidator_CompleteValidation__MethodInfo); DO_APP_FUNC(0x024FACE0, void, ParticleContentValidator_Start, (ParticleContentValidator * __this, MethodInfo * method)); DO_APP_FUNC(0x024FB060, void, ParticleContentValidator_OpenGroup, (ParticleContentValidator * __this, MethodInfo * method)); DO_APP_FUNC(0x024FB090, void, ParticleContentValidator_CloseGroup, (ParticleContentValidator * __this, MethodInfo * method)); @@ -59579,27 +68983,29 @@ DO_APP_FUNC(0x024FB8D0, void, ParticleContentValidator_AddQMark, (ParticleConten DO_APP_FUNC(0x024FB930, void, ParticleContentValidator_AddLeafRange, (ParticleContentValidator * __this, Decimal min, Decimal max, MethodInfo * method)); DO_APP_FUNC(0x024FBA60, void, ParticleContentValidator_Closure, (ParticleContentValidator * __this, InteriorNode * node, MethodInfo * method)); DO_APP_FUNC(0x024FBC50, ContentValidator *, ParticleContentValidator_Finish, (ParticleContentValidator * __this, bool useDFA, MethodInfo * method)); -DO_APP_FUNC(0x024FC6E0, BitSet_1__Array *, ParticleContentValidator_CalculateTotalFollowposForRangeNodes, (ParticleContentValidator * __this, BitSet_1 * firstpos, BitSet_1__Array * followpos, BitSet_1 * posWithRangeTerminals, MethodInfo * method)); +DO_APP_FUNC(0x024FC6E0, BitSet_1__Array *, ParticleContentValidator_CalculateTotalFollowposForRangeNodes, (ParticleContentValidator * __this, BitSet_1 * firstpos, BitSet_1__Array * followpos, BitSet_1 * * posWithRangeTerminals, MethodInfo * method)); DO_APP_FUNC(0x024FCB60, void, ParticleContentValidator_CheckCMUPAWithLeafRangeNodes, (ParticleContentValidator * __this, BitSet_1 * curpos, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02448, ParticleContentValidator_CheckCMUPAWithLeafRangeNodes__MethodInfo); DO_APP_FUNC(0x024FCD90, BitSet_1 *, ParticleContentValidator_GetApplicableMinMaxFollowPos, (ParticleContentValidator * __this, BitSet_1 * curpos, BitSet_1 * posWithRangeTerminals, BitSet_1__Array * minmaxFollowPos, MethodInfo * method)); DO_APP_FUNC(0x024FD080, void, ParticleContentValidator_CheckUniqueParticleAttribution, (ParticleContentValidator * __this, BitSet_1 * firstpos, BitSet_1__Array * followpos, MethodInfo * method)); DO_APP_FUNC(0x024FD120, void, ParticleContentValidator_CheckUniqueParticleAttribution_1, (ParticleContentValidator * __this, BitSet_1 * curpos, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02450, ParticleContentValidator_CheckUniqueParticleAttribution_1__MethodInfo); DO_APP_FUNC(0x024FD3C0, Int32__Array__Array *, ParticleContentValidator_BuildTransitionTable, (ParticleContentValidator * __this, BitSet_1 * firstpos, BitSet_1__Array * followpos, int32_t endMarkerPos, MethodInfo * method)); DO_APP_FUNC(0x024FDA10, void, DfaContentValidator__ctor, (DfaContentValidator * __this, Int32__Array__Array * transitionTable, SymbolsDictionary * symbols, XmlSchemaContentType__Enum contentType, bool isOpen, bool isEmptiable, MethodInfo * method)); DO_APP_FUNC(0x024FDB40, void, DfaContentValidator_InitValidation, (DfaContentValidator * __this, ValidationState * context, MethodInfo * method)); -DO_APP_FUNC(0x024FDBA0, Object *, DfaContentValidator_ValidateElement, (DfaContentValidator * __this, XmlQualifiedName * name, ValidationState * context, int32_t errorCode, MethodInfo * method)); +DO_APP_FUNC(0x024FDBA0, Object *, DfaContentValidator_ValidateElement, (DfaContentValidator * __this, XmlQualifiedName * name, ValidationState * context, int32_t * errorCode, MethodInfo * method)); DO_APP_FUNC(0x024FDCF0, bool, DfaContentValidator_CompleteValidation, (DfaContentValidator * __this, ValidationState * context, MethodInfo * method)); DO_APP_FUNC(0x024FDD10, ArrayList *, DfaContentValidator_ExpectedElements, (DfaContentValidator * __this, ValidationState * context, bool isRequiredOnly, MethodInfo * method)); DO_APP_FUNC(0x024FDF00, ArrayList *, DfaContentValidator_ExpectedParticles, (DfaContentValidator * __this, ValidationState * context, bool isRequiredOnly, XmlSchemaSet * schemaSet, MethodInfo * method)); DO_APP_FUNC(0x024FE090, void, NfaContentValidator__ctor, (NfaContentValidator * __this, BitSet_1 * firstpos, BitSet_1__Array * followpos, SymbolsDictionary * symbols, Positions * positions, int32_t endMarkerPos, XmlSchemaContentType__Enum contentType, bool isOpen, bool isEmptiable, MethodInfo * method)); DO_APP_FUNC(0x024FE270, void, NfaContentValidator_InitValidation, (NfaContentValidator * __this, ValidationState * context, MethodInfo * method)); -DO_APP_FUNC(0x024FE3A0, Object *, NfaContentValidator_ValidateElement, (NfaContentValidator * __this, XmlQualifiedName * name, ValidationState * context, int32_t errorCode, MethodInfo * method)); +DO_APP_FUNC(0x024FE3A0, Object *, NfaContentValidator_ValidateElement, (NfaContentValidator * __this, XmlQualifiedName * name, ValidationState * context, int32_t * errorCode, MethodInfo * method)); DO_APP_FUNC(0x024FE660, bool, NfaContentValidator_CompleteValidation, (NfaContentValidator * __this, ValidationState * context, MethodInfo * method)); DO_APP_FUNC(0x024FE6E0, ArrayList *, NfaContentValidator_ExpectedElements, (NfaContentValidator * __this, ValidationState * context, bool isRequiredOnly, MethodInfo * method)); DO_APP_FUNC(0x024FE8F0, ArrayList *, NfaContentValidator_ExpectedParticles, (NfaContentValidator * __this, ValidationState * context, bool isRequiredOnly, XmlSchemaSet * schemaSet, MethodInfo * method)); DO_APP_FUNC(0x024FEB10, void, RangeContentValidator__ctor, (RangeContentValidator * __this, BitSet_1 * firstpos, BitSet_1__Array * followpos, SymbolsDictionary * symbols, Positions * positions, int32_t endMarkerPos, XmlSchemaContentType__Enum contentType, bool isEmptiable, BitSet_1 * positionsWithRangeTerminals, int32_t minmaxNodesCount, MethodInfo * method)); DO_APP_FUNC(0x024FED40, void, RangeContentValidator_InitValidation, (RangeContentValidator * __this, ValidationState * context, MethodInfo * method)); -DO_APP_FUNC(0x024FF0B0, Object *, RangeContentValidator_ValidateElement, (RangeContentValidator * __this, XmlQualifiedName * name, ValidationState * context, int32_t errorCode, MethodInfo * method)); +DO_APP_FUNC(0x024FF0B0, Object *, RangeContentValidator_ValidateElement, (RangeContentValidator * __this, XmlQualifiedName * name, ValidationState * context, int32_t * errorCode, MethodInfo * method)); DO_APP_FUNC(0x024FFE90, bool, RangeContentValidator_CompleteValidation, (RangeContentValidator * __this, ValidationState * context, MethodInfo * method)); DO_APP_FUNC(0x024FFEB0, ArrayList *, RangeContentValidator_ExpectedElements, (RangeContentValidator * __this, ValidationState * context, bool isRequiredOnly, MethodInfo * method)); DO_APP_FUNC(0x02500250, ArrayList *, RangeContentValidator_ExpectedParticles, (RangeContentValidator * __this, ValidationState * context, bool isRequiredOnly, XmlSchemaSet * schemaSet, MethodInfo * method)); @@ -59607,7 +69013,7 @@ DO_APP_FUNC(0x02500610, void, AllElementsContentValidator__ctor, (AllElementsCon DO_APP_FUNC(0x02500820, bool, AllElementsContentValidator_AddElement, (AllElementsContentValidator * __this, XmlQualifiedName * name, Object * particle, bool isEmptiable, MethodInfo * method)); DO_APP_FUNC(0x02500970, bool, AllElementsContentValidator_get_IsEmptiable, (AllElementsContentValidator * __this, MethodInfo * method)); DO_APP_FUNC(0x02500990, void, AllElementsContentValidator_InitValidation, (AllElementsContentValidator * __this, ValidationState * context, MethodInfo * method)); -DO_APP_FUNC(0x02500A80, Object *, AllElementsContentValidator_ValidateElement, (AllElementsContentValidator * __this, XmlQualifiedName * name, ValidationState * context, int32_t errorCode, MethodInfo * method)); +DO_APP_FUNC(0x02500A80, Object *, AllElementsContentValidator_ValidateElement, (AllElementsContentValidator * __this, XmlQualifiedName * name, ValidationState * context, int32_t * errorCode, MethodInfo * method)); DO_APP_FUNC(0x02500C30, bool, AllElementsContentValidator_CompleteValidation, (AllElementsContentValidator * __this, ValidationState * context, MethodInfo * method)); DO_APP_FUNC(0x02500C80, ArrayList *, AllElementsContentValidator_ExpectedElements, (AllElementsContentValidator * __this, ValidationState * context, bool isRequiredOnly, MethodInfo * method)); DO_APP_FUNC(0x02501040, ArrayList *, AllElementsContentValidator_ExpectedParticles, (AllElementsContentValidator * __this, ValidationState * context, bool isRequiredOnly, XmlSchemaSet * schemaSet, MethodInfo * method)); @@ -59634,6 +69040,7 @@ DO_APP_FUNC(0x02509DD0, XmlTypeCode__Enum, DatatypeImplementation_GetPrimitiveTy DO_APP_FUNC(0x02509F40, XmlSchemaDatatype *, DatatypeImplementation_DeriveByRestriction, (DatatypeImplementation * __this, XmlSchemaObjectCollection * facets, XmlNameTable * nameTable, XmlSchemaType * schemaType, MethodInfo * method)); DO_APP_FUNC(0x0250A190, XmlSchemaDatatype *, DatatypeImplementation_DeriveByList, (DatatypeImplementation * __this, XmlSchemaType * schemaType, MethodInfo * method)); DO_APP_FUNC(0x0250A1A0, XmlSchemaDatatype *, DatatypeImplementation_DeriveByList_1, (DatatypeImplementation * __this, int32_t minSize, XmlSchemaType * schemaType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02158, DatatypeImplementation_DeriveByList_1__MethodInfo); DO_APP_FUNC(0x0250A5D0, DatatypeImplementation *, DatatypeImplementation_DeriveByUnion, (XmlSchemaSimpleType__Array * types, XmlSchemaType * schemaType, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, DatatypeImplementation_VerifySchemaValid, (DatatypeImplementation * __this, XmlSchemaObjectTable * notations, XmlSchemaObject * caller, MethodInfo * method)); DO_APP_FUNC(0x0250A7F0, bool, DatatypeImplementation_IsDerivedFrom, (DatatypeImplementation * __this, XmlSchemaDatatype * datatype, MethodInfo * method)); @@ -59652,8 +69059,10 @@ DO_APP_FUNC(0x0250AD90, bool, DatatypeImplementation_get_HasValueFacets, (Dataty DO_APP_FUNC(0x003BB3E0, DatatypeImplementation *, DatatypeImplementation_get_Base, (DatatypeImplementation * __this, MethodInfo * method)); DO_APP_FUNC(0x003CB690, XmlSchemaWhiteSpace__Enum, DatatypeImplementation_get_BuiltInWhitespaceFacet, (DatatypeImplementation * __this, MethodInfo * method)); DO_APP_FUNC(0x0250ADB0, Object *, DatatypeImplementation_ParseValue, (DatatypeImplementation * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02128, DatatypeImplementation_ParseValue__MethodInfo); DO_APP_FUNC(0x0250AFF0, Object *, DatatypeImplementation_ParseValue_1, (DatatypeImplementation * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, bool createAtomicValue, MethodInfo * method)); -DO_APP_FUNC(0x0250B1B0, Exception *, DatatypeImplementation_TryParseValue, (DatatypeImplementation * __this, Object * value, XmlNameTable * nameTable, IXmlNamespaceResolver * namespaceResolver, Object * typedValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02120, DatatypeImplementation_ParseValue_1__MethodInfo); +DO_APP_FUNC(0x0250B1B0, Exception *, DatatypeImplementation_TryParseValue, (DatatypeImplementation * __this, Object * value, XmlNameTable * nameTable, IXmlNamespaceResolver * namespaceResolver, Object * * typedValue, MethodInfo * method)); DO_APP_FUNC(0x0250B590, String *, DatatypeImplementation_GetTypeName, (DatatypeImplementation * __this, MethodInfo * method)); DO_APP_FUNC(0x0250B610, int32_t, DatatypeImplementation_Compare, (DatatypeImplementation * __this, Byte__Array * value1, Byte__Array * value2, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, DatatypeImplementation__ctor, (DatatypeImplementation * __this, MethodInfo * method)); @@ -59673,8 +69082,9 @@ DO_APP_FUNC(0x0250C1D0, FacetsChecker *, Datatype_List_get_FacetsChecker, (Datat DO_APP_FUNC(0x0250C230, XmlTypeCode__Enum, Datatype_List_get_TypeCode, (Datatype_List * __this, MethodInfo * method)); DO_APP_FUNC(0x0250C260, RestrictionFlags__Enum, Datatype_List_get_ValidRestrictionFlags, (Datatype_List * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7320, DatatypeImplementation *, Datatype_List_get_ItemType, (Datatype_List * __this, MethodInfo * method)); -DO_APP_FUNC(0x0250C270, Exception *, Datatype_List_TryParseValue, (Datatype_List * __this, Object * value, XmlNameTable * nameTable, IXmlNamespaceResolver * namespaceResolver, Object * typedValue, MethodInfo * method)); -DO_APP_FUNC(0x0250C890, Exception *, Datatype_List_TryParseValue_1, (Datatype_List * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * typedValue, MethodInfo * method)); +DO_APP_FUNC(0x0250C270, Exception *, Datatype_List_TryParseValue, (Datatype_List * __this, Object * value, XmlNameTable * nameTable, IXmlNamespaceResolver * namespaceResolver, Object * * typedValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03CC8, Datatype_List_TryParseValue__MethodInfo); +DO_APP_FUNC(0x0250C890, Exception *, Datatype_List_TryParseValue_1, (Datatype_List * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * * typedValue, MethodInfo * method)); DO_APP_FUNC(0x0250CDF0, XmlValueConverter *, Datatype_union_CreateValueConverter, (Datatype_union * __this, XmlSchemaType * schemaType, MethodInfo * method)); DO_APP_FUNC(0x0250CE60, void, Datatype_union__ctor, (Datatype_union * __this, XmlSchemaSimpleType__Array * types, MethodInfo * method)); DO_APP_FUNC(0x0250CF30, int32_t, Datatype_union_Compare, (Datatype_union * __this, Object * value1, Object * value2, MethodInfo * method)); @@ -59686,8 +69096,9 @@ DO_APP_FUNC(0x00EAA7E0, RestrictionFlags__Enum, Datatype_union_get_ValidRestrict DO_APP_FUNC(0x003C7320, XmlSchemaSimpleType__Array *, Datatype_union_get_BaseMemberTypes, (Datatype_union * __this, MethodInfo * method)); DO_APP_FUNC(0x0250D160, bool, Datatype_union_HasAtomicMembers, (Datatype_union * __this, MethodInfo * method)); DO_APP_FUNC(0x0250D200, bool, Datatype_union_IsUnionBaseOf, (Datatype_union * __this, DatatypeImplementation * derivedType, MethodInfo * method)); -DO_APP_FUNC(0x0250D2B0, Exception *, Datatype_union_TryParseValue, (Datatype_union * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * typedValue, MethodInfo * method)); -DO_APP_FUNC(0x0250D570, Exception *, Datatype_union_TryParseValue_1, (Datatype_union * __this, Object * value, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * typedValue, MethodInfo * method)); +DO_APP_FUNC(0x0250D2B0, Exception *, Datatype_union_TryParseValue, (Datatype_union * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * * typedValue, MethodInfo * method)); +DO_APP_FUNC(0x0250D570, Exception *, Datatype_union_TryParseValue_1, (Datatype_union * __this, Object * value, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * * typedValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03CD0, Datatype_union_TryParseValue_1__MethodInfo); DO_APP_FUNC(0x0250DA50, void, Datatype_union__cctor, (MethodInfo * method)); DO_APP_FUNC(0x0250DBC0, XmlValueConverter *, Datatype_anySimpleType_CreateValueConverter, (Datatype_anySimpleType * __this, XmlSchemaType * schemaType, MethodInfo * method)); DO_APP_FUNC(0x0250DC20, FacetsChecker *, Datatype_anySimpleType_get_FacetsChecker, (Datatype_anySimpleType * __this, MethodInfo * method)); @@ -59698,7 +69109,7 @@ DO_APP_FUNC(0x00EAA7B0, XmlTokenizedType__Enum, Datatype_anySimpleType_get_Token DO_APP_FUNC(0x003CB690, RestrictionFlags__Enum, Datatype_anySimpleType_get_ValidRestrictionFlags, (Datatype_anySimpleType * __this, MethodInfo * method)); DO_APP_FUNC(0x0072BFF0, XmlSchemaWhiteSpace__Enum, Datatype_anySimpleType_get_BuiltInWhitespaceFacet, (Datatype_anySimpleType * __this, MethodInfo * method)); DO_APP_FUNC(0x0250DD40, int32_t, Datatype_anySimpleType_Compare, (Datatype_anySimpleType * __this, Object * value1, Object * value2, MethodInfo * method)); -DO_APP_FUNC(0x0250DE50, Exception *, Datatype_anySimpleType_TryParseValue, (Datatype_anySimpleType * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * typedValue, MethodInfo * method)); +DO_APP_FUNC(0x0250DE50, Exception *, Datatype_anySimpleType_TryParseValue, (Datatype_anySimpleType * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * * typedValue, MethodInfo * method)); DO_APP_FUNC(0x0250DEC0, void, Datatype_anySimpleType__ctor, (Datatype_anySimpleType * __this, MethodInfo * method)); DO_APP_FUNC(0x0250DF10, void, Datatype_anySimpleType__cctor, (MethodInfo * method)); DO_APP_FUNC(0x0250E080, XmlValueConverter *, Datatype_anyAtomicType_CreateValueConverter, (Datatype_anyAtomicType * __this, XmlSchemaType * schemaType, MethodInfo * method)); @@ -59715,7 +69126,7 @@ DO_APP_FUNC(0x0250E270, FacetsChecker *, Datatype_string_get_FacetsChecker, (Dat DO_APP_FUNC(0x00EAA7B0, XmlTypeCode__Enum, Datatype_string_get_TypeCode, (Datatype_string * __this, MethodInfo * method)); DO_APP_FUNC(0x003CB690, XmlTokenizedType__Enum, Datatype_string_get_TokenizedType, (Datatype_string * __this, MethodInfo * method)); DO_APP_FUNC(0x0250C260, RestrictionFlags__Enum, Datatype_string_get_ValidRestrictionFlags, (Datatype_string * __this, MethodInfo * method)); -DO_APP_FUNC(0x0250E2D0, Exception *, Datatype_string_TryParseValue, (Datatype_string * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * typedValue, MethodInfo * method)); +DO_APP_FUNC(0x0250E2D0, Exception *, Datatype_string_TryParseValue, (Datatype_string * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * * typedValue, MethodInfo * method)); DO_APP_FUNC(0x0250E480, void, Datatype_string__ctor, (Datatype_string * __this, MethodInfo * method)); DO_APP_FUNC(0x0250E500, XmlValueConverter *, Datatype_boolean_CreateValueConverter, (Datatype_boolean * __this, XmlSchemaType * schemaType, MethodInfo * method)); DO_APP_FUNC(0x0250E5A0, FacetsChecker *, Datatype_boolean_get_FacetsChecker, (Datatype_boolean * __this, MethodInfo * method)); @@ -59725,7 +69136,7 @@ DO_APP_FUNC(0x0250E660, Type *, Datatype_boolean_get_ListValueType, (Datatype_bo DO_APP_FUNC(0x0072BFF0, XmlSchemaWhiteSpace__Enum, Datatype_boolean_get_BuiltInWhitespaceFacet, (Datatype_boolean * __this, MethodInfo * method)); DO_APP_FUNC(0x009CDA10, RestrictionFlags__Enum, Datatype_boolean_get_ValidRestrictionFlags, (Datatype_boolean * __this, MethodInfo * method)); DO_APP_FUNC(0x0250E6C0, int32_t, Datatype_boolean_Compare, (Datatype_boolean * __this, Object * value1, Object * value2, MethodInfo * method)); -DO_APP_FUNC(0x0250E750, Exception *, Datatype_boolean_TryParseValue, (Datatype_boolean * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * typedValue, MethodInfo * method)); +DO_APP_FUNC(0x0250E750, Exception *, Datatype_boolean_TryParseValue, (Datatype_boolean * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * * typedValue, MethodInfo * method)); DO_APP_FUNC(0x0250E910, void, Datatype_boolean__ctor, (Datatype_boolean * __this, MethodInfo * method)); DO_APP_FUNC(0x0250E990, void, Datatype_boolean__cctor, (MethodInfo * method)); DO_APP_FUNC(0x0250EB00, XmlValueConverter *, Datatype_float_CreateValueConverter, (Datatype_float * __this, XmlSchemaType * schemaType, MethodInfo * method)); @@ -59736,7 +69147,7 @@ DO_APP_FUNC(0x0250EBD0, Type *, Datatype_float_get_ListValueType, (Datatype_floa DO_APP_FUNC(0x0072BFF0, XmlSchemaWhiteSpace__Enum, Datatype_float_get_BuiltInWhitespaceFacet, (Datatype_float * __this, MethodInfo * method)); DO_APP_FUNC(0x0250EC30, RestrictionFlags__Enum, Datatype_float_get_ValidRestrictionFlags, (Datatype_float * __this, MethodInfo * method)); DO_APP_FUNC(0x0250EC40, int32_t, Datatype_float_Compare, (Datatype_float * __this, Object * value1, Object * value2, MethodInfo * method)); -DO_APP_FUNC(0x0250ECC0, Exception *, Datatype_float_TryParseValue, (Datatype_float * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * typedValue, MethodInfo * method)); +DO_APP_FUNC(0x0250ECC0, Exception *, Datatype_float_TryParseValue, (Datatype_float * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * * typedValue, MethodInfo * method)); DO_APP_FUNC(0x0250EEA0, void, Datatype_float__ctor, (Datatype_float * __this, MethodInfo * method)); DO_APP_FUNC(0x0250EF20, void, Datatype_float__cctor, (MethodInfo * method)); DO_APP_FUNC(0x0250EB00, XmlValueConverter *, Datatype_double_CreateValueConverter, (Datatype_double * __this, XmlSchemaType * schemaType, MethodInfo * method)); @@ -59747,7 +69158,7 @@ DO_APP_FUNC(0x0250F150, Type *, Datatype_double_get_ListValueType, (Datatype_dou DO_APP_FUNC(0x0072BFF0, XmlSchemaWhiteSpace__Enum, Datatype_double_get_BuiltInWhitespaceFacet, (Datatype_double * __this, MethodInfo * method)); DO_APP_FUNC(0x0250EC30, RestrictionFlags__Enum, Datatype_double_get_ValidRestrictionFlags, (Datatype_double * __this, MethodInfo * method)); DO_APP_FUNC(0x0250F1B0, int32_t, Datatype_double_Compare, (Datatype_double * __this, Object * value1, Object * value2, MethodInfo * method)); -DO_APP_FUNC(0x0250F230, Exception *, Datatype_double_TryParseValue, (Datatype_double * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * typedValue, MethodInfo * method)); +DO_APP_FUNC(0x0250F230, Exception *, Datatype_double_TryParseValue, (Datatype_double * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * * typedValue, MethodInfo * method)); DO_APP_FUNC(0x0250F410, void, Datatype_double__ctor, (Datatype_double * __this, MethodInfo * method)); DO_APP_FUNC(0x0250F490, void, Datatype_double__cctor, (MethodInfo * method)); DO_APP_FUNC(0x0250F600, XmlValueConverter *, Datatype_decimal_CreateValueConverter, (Datatype_decimal * __this, XmlSchemaType * schemaType, MethodInfo * method)); @@ -59758,7 +69169,7 @@ DO_APP_FUNC(0x0250F760, Type *, Datatype_decimal_get_ListValueType, (Datatype_de DO_APP_FUNC(0x0072BFF0, XmlSchemaWhiteSpace__Enum, Datatype_decimal_get_BuiltInWhitespaceFacet, (Datatype_decimal * __this, MethodInfo * method)); DO_APP_FUNC(0x0250F7C0, RestrictionFlags__Enum, Datatype_decimal_get_ValidRestrictionFlags, (Datatype_decimal * __this, MethodInfo * method)); DO_APP_FUNC(0x0250F7D0, int32_t, Datatype_decimal_Compare, (Datatype_decimal * __this, Object * value1, Object * value2, MethodInfo * method)); -DO_APP_FUNC(0x0250F860, Exception *, Datatype_decimal_TryParseValue, (Datatype_decimal * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * typedValue, MethodInfo * method)); +DO_APP_FUNC(0x0250F860, Exception *, Datatype_decimal_TryParseValue, (Datatype_decimal * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * * typedValue, MethodInfo * method)); DO_APP_FUNC(0x0250FA40, void, Datatype_decimal__ctor, (Datatype_decimal * __this, MethodInfo * method)); DO_APP_FUNC(0x0250FAC0, void, Datatype_decimal__cctor, (MethodInfo * method)); DO_APP_FUNC(0x0250FD00, XmlValueConverter *, Datatype_duration_CreateValueConverter, (Datatype_duration * __this, XmlSchemaType * schemaType, MethodInfo * method)); @@ -59769,13 +69180,13 @@ DO_APP_FUNC(0x0250FDD0, Type *, Datatype_duration_get_ListValueType, (Datatype_d DO_APP_FUNC(0x0072BFF0, XmlSchemaWhiteSpace__Enum, Datatype_duration_get_BuiltInWhitespaceFacet, (Datatype_duration * __this, MethodInfo * method)); DO_APP_FUNC(0x0250EC30, RestrictionFlags__Enum, Datatype_duration_get_ValidRestrictionFlags, (Datatype_duration * __this, MethodInfo * method)); DO_APP_FUNC(0x0250FE30, int32_t, Datatype_duration_Compare, (Datatype_duration * __this, Object * value1, Object * value2, MethodInfo * method)); -DO_APP_FUNC(0x0250FEC0, Exception *, Datatype_duration_TryParseValue, (Datatype_duration * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * typedValue, MethodInfo * method)); +DO_APP_FUNC(0x0250FEC0, Exception *, Datatype_duration_TryParseValue, (Datatype_duration * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * * typedValue, MethodInfo * method)); DO_APP_FUNC(0x025101C0, void, Datatype_duration__ctor, (Datatype_duration * __this, MethodInfo * method)); DO_APP_FUNC(0x02510240, void, Datatype_duration__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x025103B0, Exception *, Datatype_yearMonthDuration_TryParseValue, (Datatype_yearMonthDuration * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * typedValue, MethodInfo * method)); +DO_APP_FUNC(0x025103B0, Exception *, Datatype_yearMonthDuration_TryParseValue, (Datatype_yearMonthDuration * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * * typedValue, MethodInfo * method)); DO_APP_FUNC(0x022CB370, XmlTypeCode__Enum, Datatype_yearMonthDuration_get_TypeCode, (Datatype_yearMonthDuration * __this, MethodInfo * method)); DO_APP_FUNC(0x02510620, void, Datatype_yearMonthDuration__ctor, (Datatype_yearMonthDuration * __this, MethodInfo * method)); -DO_APP_FUNC(0x02510670, Exception *, Datatype_dayTimeDuration_TryParseValue, (Datatype_dayTimeDuration * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * typedValue, MethodInfo * method)); +DO_APP_FUNC(0x02510670, Exception *, Datatype_dayTimeDuration_TryParseValue, (Datatype_dayTimeDuration * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * * typedValue, MethodInfo * method)); DO_APP_FUNC(0x025108E0, XmlTypeCode__Enum, Datatype_dayTimeDuration_get_TypeCode, (Datatype_dayTimeDuration * __this, MethodInfo * method)); DO_APP_FUNC(0x025108F0, void, Datatype_dayTimeDuration__ctor, (Datatype_dayTimeDuration * __this, MethodInfo * method)); DO_APP_FUNC(0x02510940, XmlValueConverter *, Datatype_dateTimeBase_CreateValueConverter, (Datatype_dateTimeBase * __this, XmlSchemaType * schemaType, MethodInfo * method)); @@ -59787,7 +69198,7 @@ DO_APP_FUNC(0x02510B30, Type *, Datatype_dateTimeBase_get_ListValueType, (Dataty DO_APP_FUNC(0x0072BFF0, XmlSchemaWhiteSpace__Enum, Datatype_dateTimeBase_get_BuiltInWhitespaceFacet, (Datatype_dateTimeBase * __this, MethodInfo * method)); DO_APP_FUNC(0x0250EC30, RestrictionFlags__Enum, Datatype_dateTimeBase_get_ValidRestrictionFlags, (Datatype_dateTimeBase * __this, MethodInfo * method)); DO_APP_FUNC(0x02510B90, int32_t, Datatype_dateTimeBase_Compare, (Datatype_dateTimeBase * __this, Object * value1, Object * value2, MethodInfo * method)); -DO_APP_FUNC(0x02510DF0, Exception *, Datatype_dateTimeBase_TryParseValue, (Datatype_dateTimeBase * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * typedValue, MethodInfo * method)); +DO_APP_FUNC(0x02510DF0, Exception *, Datatype_dateTimeBase_TryParseValue, (Datatype_dateTimeBase * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * * typedValue, MethodInfo * method)); DO_APP_FUNC(0x02511290, void, Datatype_dateTimeBase__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02511400, void, Datatype_dateTimeNoTimeZone__ctor, (Datatype_dateTimeNoTimeZone * __this, MethodInfo * method)); DO_APP_FUNC(0x02511460, void, Datatype_dateTimeTimeZone__ctor, (Datatype_dateTimeTimeZone * __this, MethodInfo * method)); @@ -59816,7 +69227,7 @@ DO_APP_FUNC(0x02511950, Type *, Datatype_hexBinary_get_ListValueType, (Datatype_ DO_APP_FUNC(0x0072BFF0, XmlSchemaWhiteSpace__Enum, Datatype_hexBinary_get_BuiltInWhitespaceFacet, (Datatype_hexBinary * __this, MethodInfo * method)); DO_APP_FUNC(0x0250C260, RestrictionFlags__Enum, Datatype_hexBinary_get_ValidRestrictionFlags, (Datatype_hexBinary * __this, MethodInfo * method)); DO_APP_FUNC(0x025119B0, int32_t, Datatype_hexBinary_Compare, (Datatype_hexBinary * __this, Object * value1, Object * value2, MethodInfo * method)); -DO_APP_FUNC(0x02511AD0, Exception *, Datatype_hexBinary_TryParseValue, (Datatype_hexBinary * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * typedValue, MethodInfo * method)); +DO_APP_FUNC(0x02511AD0, Exception *, Datatype_hexBinary_TryParseValue, (Datatype_hexBinary * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * * typedValue, MethodInfo * method)); DO_APP_FUNC(0x02511D20, void, Datatype_hexBinary__ctor, (Datatype_hexBinary * __this, MethodInfo * method)); DO_APP_FUNC(0x02511DA0, void, Datatype_hexBinary__cctor, (MethodInfo * method)); DO_APP_FUNC(0x0250FD00, XmlValueConverter *, Datatype_base64Binary_CreateValueConverter, (Datatype_base64Binary * __this, XmlSchemaType * schemaType, MethodInfo * method)); @@ -59827,7 +69238,7 @@ DO_APP_FUNC(0x02511FD0, Type *, Datatype_base64Binary_get_ListValueType, (Dataty DO_APP_FUNC(0x0072BFF0, XmlSchemaWhiteSpace__Enum, Datatype_base64Binary_get_BuiltInWhitespaceFacet, (Datatype_base64Binary * __this, MethodInfo * method)); DO_APP_FUNC(0x0250C260, RestrictionFlags__Enum, Datatype_base64Binary_get_ValidRestrictionFlags, (Datatype_base64Binary * __this, MethodInfo * method)); DO_APP_FUNC(0x02512030, int32_t, Datatype_base64Binary_Compare, (Datatype_base64Binary * __this, Object * value1, Object * value2, MethodInfo * method)); -DO_APP_FUNC(0x02512150, Exception *, Datatype_base64Binary_TryParseValue, (Datatype_base64Binary * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * typedValue, MethodInfo * method)); +DO_APP_FUNC(0x02512150, Exception *, Datatype_base64Binary_TryParseValue, (Datatype_base64Binary * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * * typedValue, MethodInfo * method)); DO_APP_FUNC(0x025123D0, void, Datatype_base64Binary__ctor, (Datatype_base64Binary * __this, MethodInfo * method)); DO_APP_FUNC(0x02512450, void, Datatype_base64Binary__cctor, (MethodInfo * method)); DO_APP_FUNC(0x0250FD00, XmlValueConverter *, Datatype_anyURI_CreateValueConverter, (Datatype_anyURI * __this, XmlSchemaType * schemaType, MethodInfo * method)); @@ -59839,7 +69250,7 @@ DO_APP_FUNC(0x02512680, Type *, Datatype_anyURI_get_ListValueType, (Datatype_any DO_APP_FUNC(0x0072BFF0, XmlSchemaWhiteSpace__Enum, Datatype_anyURI_get_BuiltInWhitespaceFacet, (Datatype_anyURI * __this, MethodInfo * method)); DO_APP_FUNC(0x0250C260, RestrictionFlags__Enum, Datatype_anyURI_get_ValidRestrictionFlags, (Datatype_anyURI * __this, MethodInfo * method)); DO_APP_FUNC(0x025126E0, int32_t, Datatype_anyURI_Compare, (Datatype_anyURI * __this, Object * value1, Object * value2, MethodInfo * method)); -DO_APP_FUNC(0x025127B0, Exception *, Datatype_anyURI_TryParseValue, (Datatype_anyURI * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * typedValue, MethodInfo * method)); +DO_APP_FUNC(0x025127B0, Exception *, Datatype_anyURI_TryParseValue, (Datatype_anyURI * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * * typedValue, MethodInfo * method)); DO_APP_FUNC(0x025129B0, void, Datatype_anyURI__ctor, (Datatype_anyURI * __this, MethodInfo * method)); DO_APP_FUNC(0x02512A30, void, Datatype_anyURI__cctor, (MethodInfo * method)); DO_APP_FUNC(0x0250FD00, XmlValueConverter *, Datatype_QName_CreateValueConverter, (Datatype_QName * __this, XmlSchemaType * schemaType, MethodInfo * method)); @@ -59850,7 +69261,7 @@ DO_APP_FUNC(0x0250C260, RestrictionFlags__Enum, Datatype_QName_get_ValidRestrict DO_APP_FUNC(0x02512C00, Type *, Datatype_QName_get_ValueType, (Datatype_QName * __this, MethodInfo * method)); DO_APP_FUNC(0x02512C60, Type *, Datatype_QName_get_ListValueType, (Datatype_QName * __this, MethodInfo * method)); DO_APP_FUNC(0x0072BFF0, XmlSchemaWhiteSpace__Enum, Datatype_QName_get_BuiltInWhitespaceFacet, (Datatype_QName * __this, MethodInfo * method)); -DO_APP_FUNC(0x02512CC0, Exception *, Datatype_QName_TryParseValue, (Datatype_QName * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * typedValue, MethodInfo * method)); +DO_APP_FUNC(0x02512CC0, Exception *, Datatype_QName_TryParseValue, (Datatype_QName * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * * typedValue, MethodInfo * method)); DO_APP_FUNC(0x02512F10, void, Datatype_QName__ctor, (Datatype_QName * __this, MethodInfo * method)); DO_APP_FUNC(0x02512F90, void, Datatype_QName__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01D54760, XmlTypeCode__Enum, Datatype_normalizedString_get_TypeCode, (Datatype_normalizedString * __this, MethodInfo * method)); @@ -59873,7 +69284,7 @@ DO_APP_FUNC(0x02513100, void, Datatype_NMTOKEN__ctor, (Datatype_NMTOKEN * __this DO_APP_FUNC(0x02513110, XmlTypeCode__Enum, Datatype_Name_get_TypeCode, (Datatype_Name * __this, MethodInfo * method)); DO_APP_FUNC(0x02513100, void, Datatype_Name__ctor, (Datatype_Name * __this, MethodInfo * method)); DO_APP_FUNC(0x01FB4AD0, XmlTypeCode__Enum, Datatype_NCName_get_TypeCode, (Datatype_NCName * __this, MethodInfo * method)); -DO_APP_FUNC(0x02513120, Exception *, Datatype_NCName_TryParseValue, (Datatype_NCName * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * typedValue, MethodInfo * method)); +DO_APP_FUNC(0x02513120, Exception *, Datatype_NCName_TryParseValue, (Datatype_NCName * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * * typedValue, MethodInfo * method)); DO_APP_FUNC(0x02513100, void, Datatype_NCName__ctor, (Datatype_NCName * __this, MethodInfo * method)); DO_APP_FUNC(0x01FB7B30, XmlTypeCode__Enum, Datatype_ID_get_TypeCode, (Datatype_ID * __this, MethodInfo * method)); DO_APP_FUNC(0x007205E0, XmlTokenizedType__Enum, Datatype_ID_get_TokenizedType, (Datatype_ID * __this, MethodInfo * method)); @@ -59892,12 +69303,13 @@ DO_APP_FUNC(0x0250C260, RestrictionFlags__Enum, Datatype_NOTATION_get_ValidRestr DO_APP_FUNC(0x02513380, Type *, Datatype_NOTATION_get_ValueType, (Datatype_NOTATION * __this, MethodInfo * method)); DO_APP_FUNC(0x025133E0, Type *, Datatype_NOTATION_get_ListValueType, (Datatype_NOTATION * __this, MethodInfo * method)); DO_APP_FUNC(0x0072BFF0, XmlSchemaWhiteSpace__Enum, Datatype_NOTATION_get_BuiltInWhitespaceFacet, (Datatype_NOTATION * __this, MethodInfo * method)); -DO_APP_FUNC(0x02513440, Exception *, Datatype_NOTATION_TryParseValue, (Datatype_NOTATION * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * typedValue, MethodInfo * method)); +DO_APP_FUNC(0x02513440, Exception *, Datatype_NOTATION_TryParseValue, (Datatype_NOTATION * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * * typedValue, MethodInfo * method)); DO_APP_FUNC(0x02513690, void, Datatype_NOTATION_VerifySchemaValid, (Datatype_NOTATION * __this, XmlSchemaObjectTable * notations, XmlSchemaObject * caller, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03B88, Datatype_NOTATION_VerifySchemaValid__MethodInfo); DO_APP_FUNC(0x02513950, void, Datatype_NOTATION__ctor, (Datatype_NOTATION * __this, MethodInfo * method)); DO_APP_FUNC(0x025139D0, void, Datatype_NOTATION__cctor, (MethodInfo * method)); DO_APP_FUNC(0x009CDA10, XmlTypeCode__Enum, Datatype_integer_get_TypeCode, (Datatype_integer * __this, MethodInfo * method)); -DO_APP_FUNC(0x02513B40, Exception *, Datatype_integer_TryParseValue, (Datatype_integer * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * typedValue, MethodInfo * method)); +DO_APP_FUNC(0x02513B40, Exception *, Datatype_integer_TryParseValue, (Datatype_integer * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * * typedValue, MethodInfo * method)); DO_APP_FUNC(0x02513CF0, void, Datatype_integer__ctor, (Datatype_integer * __this, MethodInfo * method)); DO_APP_FUNC(0x02513D40, FacetsChecker *, Datatype_nonPositiveInteger_get_FacetsChecker, (Datatype_nonPositiveInteger * __this, MethodInfo * method)); DO_APP_FUNC(0x009D3CD0, XmlTypeCode__Enum, Datatype_nonPositiveInteger_get_TypeCode, (Datatype_nonPositiveInteger * __this, MethodInfo * method)); @@ -59914,7 +69326,7 @@ DO_APP_FUNC(0x01FBF8E0, XmlTypeCode__Enum, Datatype_long_get_TypeCode, (Datatype DO_APP_FUNC(0x02514130, int32_t, Datatype_long_Compare, (Datatype_long * __this, Object * value1, Object * value2, MethodInfo * method)); DO_APP_FUNC(0x025141B0, Type *, Datatype_long_get_ValueType, (Datatype_long * __this, MethodInfo * method)); DO_APP_FUNC(0x02514210, Type *, Datatype_long_get_ListValueType, (Datatype_long * __this, MethodInfo * method)); -DO_APP_FUNC(0x02514270, Exception *, Datatype_long_TryParseValue, (Datatype_long * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * typedValue, MethodInfo * method)); +DO_APP_FUNC(0x02514270, Exception *, Datatype_long_TryParseValue, (Datatype_long * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * * typedValue, MethodInfo * method)); DO_APP_FUNC(0x02513CF0, void, Datatype_long__ctor, (Datatype_long * __this, MethodInfo * method)); DO_APP_FUNC(0x025145A0, void, Datatype_long__cctor, (MethodInfo * method)); DO_APP_FUNC(0x025147E0, FacetsChecker *, Datatype_int_get_FacetsChecker, (Datatype_int * __this, MethodInfo * method)); @@ -59922,7 +69334,7 @@ DO_APP_FUNC(0x02514840, XmlTypeCode__Enum, Datatype_int_get_TypeCode, (Datatype_ DO_APP_FUNC(0x02514850, int32_t, Datatype_int_Compare, (Datatype_int * __this, Object * value1, Object * value2, MethodInfo * method)); DO_APP_FUNC(0x025148D0, Type *, Datatype_int_get_ValueType, (Datatype_int * __this, MethodInfo * method)); DO_APP_FUNC(0x02514930, Type *, Datatype_int_get_ListValueType, (Datatype_int * __this, MethodInfo * method)); -DO_APP_FUNC(0x02514990, Exception *, Datatype_int_TryParseValue, (Datatype_int * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * typedValue, MethodInfo * method)); +DO_APP_FUNC(0x02514990, Exception *, Datatype_int_TryParseValue, (Datatype_int * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * * typedValue, MethodInfo * method)); DO_APP_FUNC(0x02514CC0, void, Datatype_int__ctor, (Datatype_int * __this, MethodInfo * method)); DO_APP_FUNC(0x02514D50, void, Datatype_int__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02514F90, FacetsChecker *, Datatype_short_get_FacetsChecker, (Datatype_short * __this, MethodInfo * method)); @@ -59930,7 +69342,7 @@ DO_APP_FUNC(0x02514FF0, XmlTypeCode__Enum, Datatype_short_get_TypeCode, (Datatyp DO_APP_FUNC(0x02515000, int32_t, Datatype_short_Compare, (Datatype_short * __this, Object * value1, Object * value2, MethodInfo * method)); DO_APP_FUNC(0x02515140, Type *, Datatype_short_get_ValueType, (Datatype_short * __this, MethodInfo * method)); DO_APP_FUNC(0x025151A0, Type *, Datatype_short_get_ListValueType, (Datatype_short * __this, MethodInfo * method)); -DO_APP_FUNC(0x02515200, Exception *, Datatype_short_TryParseValue, (Datatype_short * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * typedValue, MethodInfo * method)); +DO_APP_FUNC(0x02515200, Exception *, Datatype_short_TryParseValue, (Datatype_short * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * * typedValue, MethodInfo * method)); DO_APP_FUNC(0x025153D0, void, Datatype_short__ctor, (Datatype_short * __this, MethodInfo * method)); DO_APP_FUNC(0x02515420, void, Datatype_short__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02515660, FacetsChecker *, Datatype_byte_get_FacetsChecker, (Datatype_byte * __this, MethodInfo * method)); @@ -59938,7 +69350,7 @@ DO_APP_FUNC(0x022A3040, XmlTypeCode__Enum, Datatype_byte_get_TypeCode, (Datatype DO_APP_FUNC(0x025156C0, int32_t, Datatype_byte_Compare, (Datatype_byte * __this, Object * value1, Object * value2, MethodInfo * method)); DO_APP_FUNC(0x02515800, Type *, Datatype_byte_get_ValueType, (Datatype_byte * __this, MethodInfo * method)); DO_APP_FUNC(0x02515860, Type *, Datatype_byte_get_ListValueType, (Datatype_byte * __this, MethodInfo * method)); -DO_APP_FUNC(0x025158C0, Exception *, Datatype_byte_TryParseValue, (Datatype_byte * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * typedValue, MethodInfo * method)); +DO_APP_FUNC(0x025158C0, Exception *, Datatype_byte_TryParseValue, (Datatype_byte * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * * typedValue, MethodInfo * method)); DO_APP_FUNC(0x02515A90, void, Datatype_byte__ctor, (Datatype_byte * __this, MethodInfo * method)); DO_APP_FUNC(0x02515B20, void, Datatype_byte__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02515D60, FacetsChecker *, Datatype_nonNegativeInteger_get_FacetsChecker, (Datatype_nonNegativeInteger * __this, MethodInfo * method)); @@ -59951,7 +69363,7 @@ DO_APP_FUNC(0x00EAA8A0, XmlTypeCode__Enum, Datatype_unsignedLong_get_TypeCode, ( DO_APP_FUNC(0x02515F40, int32_t, Datatype_unsignedLong_Compare, (Datatype_unsignedLong * __this, Object * value1, Object * value2, MethodInfo * method)); DO_APP_FUNC(0x02515FC0, Type *, Datatype_unsignedLong_get_ValueType, (Datatype_unsignedLong * __this, MethodInfo * method)); DO_APP_FUNC(0x02516020, Type *, Datatype_unsignedLong_get_ListValueType, (Datatype_unsignedLong * __this, MethodInfo * method)); -DO_APP_FUNC(0x02516080, Exception *, Datatype_unsignedLong_TryParseValue, (Datatype_unsignedLong * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * typedValue, MethodInfo * method)); +DO_APP_FUNC(0x02516080, Exception *, Datatype_unsignedLong_TryParseValue, (Datatype_unsignedLong * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * * typedValue, MethodInfo * method)); DO_APP_FUNC(0x02516410, void, Datatype_unsignedLong__ctor, (Datatype_unsignedLong * __this, MethodInfo * method)); DO_APP_FUNC(0x025164A0, void, Datatype_unsignedLong__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02516710, FacetsChecker *, Datatype_unsignedInt_get_FacetsChecker, (Datatype_unsignedInt * __this, MethodInfo * method)); @@ -59959,7 +69371,7 @@ DO_APP_FUNC(0x021B5880, XmlTypeCode__Enum, Datatype_unsignedInt_get_TypeCode, (D DO_APP_FUNC(0x02516770, int32_t, Datatype_unsignedInt_Compare, (Datatype_unsignedInt * __this, Object * value1, Object * value2, MethodInfo * method)); DO_APP_FUNC(0x025167F0, Type *, Datatype_unsignedInt_get_ValueType, (Datatype_unsignedInt * __this, MethodInfo * method)); DO_APP_FUNC(0x02516850, Type *, Datatype_unsignedInt_get_ListValueType, (Datatype_unsignedInt * __this, MethodInfo * method)); -DO_APP_FUNC(0x025168B0, Exception *, Datatype_unsignedInt_TryParseValue, (Datatype_unsignedInt * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * typedValue, MethodInfo * method)); +DO_APP_FUNC(0x025168B0, Exception *, Datatype_unsignedInt_TryParseValue, (Datatype_unsignedInt * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * * typedValue, MethodInfo * method)); DO_APP_FUNC(0x02516BE0, void, Datatype_unsignedInt__ctor, (Datatype_unsignedInt * __this, MethodInfo * method)); DO_APP_FUNC(0x02516C30, void, Datatype_unsignedInt__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02516EA0, FacetsChecker *, Datatype_unsignedShort_get_FacetsChecker, (Datatype_unsignedShort * __this, MethodInfo * method)); @@ -59967,7 +69379,7 @@ DO_APP_FUNC(0x009D7980, XmlTypeCode__Enum, Datatype_unsignedShort_get_TypeCode, DO_APP_FUNC(0x02516F00, int32_t, Datatype_unsignedShort_Compare, (Datatype_unsignedShort * __this, Object * value1, Object * value2, MethodInfo * method)); DO_APP_FUNC(0x02517040, Type *, Datatype_unsignedShort_get_ValueType, (Datatype_unsignedShort * __this, MethodInfo * method)); DO_APP_FUNC(0x025170A0, Type *, Datatype_unsignedShort_get_ListValueType, (Datatype_unsignedShort * __this, MethodInfo * method)); -DO_APP_FUNC(0x02517100, Exception *, Datatype_unsignedShort_TryParseValue, (Datatype_unsignedShort * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * typedValue, MethodInfo * method)); +DO_APP_FUNC(0x02517100, Exception *, Datatype_unsignedShort_TryParseValue, (Datatype_unsignedShort * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * * typedValue, MethodInfo * method)); DO_APP_FUNC(0x025172D0, void, Datatype_unsignedShort__ctor, (Datatype_unsignedShort * __this, MethodInfo * method)); DO_APP_FUNC(0x02517360, void, Datatype_unsignedShort__cctor, (MethodInfo * method)); DO_APP_FUNC(0x025175D0, FacetsChecker *, Datatype_unsignedByte_get_FacetsChecker, (Datatype_unsignedByte * __this, MethodInfo * method)); @@ -59975,7 +69387,7 @@ DO_APP_FUNC(0x022C1CB0, XmlTypeCode__Enum, Datatype_unsignedByte_get_TypeCode, ( DO_APP_FUNC(0x02517630, int32_t, Datatype_unsignedByte_Compare, (Datatype_unsignedByte * __this, Object * value1, Object * value2, MethodInfo * method)); DO_APP_FUNC(0x02517770, Type *, Datatype_unsignedByte_get_ValueType, (Datatype_unsignedByte * __this, MethodInfo * method)); DO_APP_FUNC(0x025177D0, Type *, Datatype_unsignedByte_get_ListValueType, (Datatype_unsignedByte * __this, MethodInfo * method)); -DO_APP_FUNC(0x02517830, Exception *, Datatype_unsignedByte_TryParseValue, (Datatype_unsignedByte * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * typedValue, MethodInfo * method)); +DO_APP_FUNC(0x02517830, Exception *, Datatype_unsignedByte_TryParseValue, (Datatype_unsignedByte * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * * typedValue, MethodInfo * method)); DO_APP_FUNC(0x02517A00, void, Datatype_unsignedByte__ctor, (Datatype_unsignedByte * __this, MethodInfo * method)); DO_APP_FUNC(0x02517A50, void, Datatype_unsignedByte__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02517CC0, FacetsChecker *, Datatype_positiveInteger_get_FacetsChecker, (Datatype_positiveInteger * __this, MethodInfo * method)); @@ -59983,11 +69395,14 @@ DO_APP_FUNC(0x00EAA810, XmlTypeCode__Enum, Datatype_positiveInteger_get_TypeCode DO_APP_FUNC(0x02517D20, void, Datatype_positiveInteger__ctor, (Datatype_positiveInteger * __this, MethodInfo * method)); DO_APP_FUNC(0x02517DB0, void, Datatype_positiveInteger__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02517ED0, Object *, Datatype_doubleXdr_ParseValue, (Datatype_doubleXdr * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D039B8, Datatype_doubleXdr_ParseValue__MethodInfo); DO_APP_FUNC(0x025180A0, void, Datatype_doubleXdr__ctor, (Datatype_doubleXdr * __this, MethodInfo * method)); DO_APP_FUNC(0x025180F0, Object *, Datatype_floatXdr_ParseValue, (Datatype_floatXdr * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03908, Datatype_floatXdr_ParseValue__MethodInfo); DO_APP_FUNC(0x025182C0, void, Datatype_floatXdr__ctor, (Datatype_floatXdr * __this, MethodInfo * method)); DO_APP_FUNC(0x009D2B70, XmlTokenizedType__Enum, Datatype_QNameXdr_get_TokenizedType, (Datatype_QNameXdr * __this, MethodInfo * method)); DO_APP_FUNC(0x02518310, Object *, Datatype_QNameXdr_ParseValue, (Datatype_QNameXdr * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D038C0, Datatype_QNameXdr_ParseValue__MethodInfo); DO_APP_FUNC(0x02518550, Type *, Datatype_QNameXdr_get_ValueType, (Datatype_QNameXdr * __this, MethodInfo * method)); DO_APP_FUNC(0x025185B0, Type *, Datatype_QNameXdr_get_ListValueType, (Datatype_QNameXdr * __this, MethodInfo * method)); DO_APP_FUNC(0x02518610, void, Datatype_QNameXdr__ctor, (Datatype_QNameXdr * __this, MethodInfo * method)); @@ -59999,18 +69414,21 @@ DO_APP_FUNC(0x02518860, Type *, Datatype_char_get_ListValueType, (Datatype_char DO_APP_FUNC(0x003CB690, RestrictionFlags__Enum, Datatype_char_get_ValidRestrictionFlags, (Datatype_char * __this, MethodInfo * method)); DO_APP_FUNC(0x025188C0, int32_t, Datatype_char_Compare, (Datatype_char * __this, Object * value1, Object * value2, MethodInfo * method)); DO_APP_FUNC(0x02518A10, Object *, Datatype_char_ParseValue, (Datatype_char * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, MethodInfo * method)); -DO_APP_FUNC(0x02518C40, Exception *, Datatype_char_TryParseValue, (Datatype_char * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * typedValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03910, Datatype_char_ParseValue__MethodInfo); +DO_APP_FUNC(0x02518C40, Exception *, Datatype_char_TryParseValue, (Datatype_char * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * * typedValue, MethodInfo * method)); DO_APP_FUNC(0x02518EF0, void, Datatype_char__ctor, (Datatype_char * __this, MethodInfo * method)); DO_APP_FUNC(0x02518F70, void, Datatype_char__cctor, (MethodInfo * method)); DO_APP_FUNC(0x025190E0, Object *, Datatype_fixed_ParseValue, (Datatype_fixed * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, MethodInfo * method)); -DO_APP_FUNC(0x025193B0, Exception *, Datatype_fixed_TryParseValue, (Datatype_fixed * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * typedValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03888, Datatype_fixed_ParseValue__MethodInfo); +DO_APP_FUNC(0x025193B0, Exception *, Datatype_fixed_TryParseValue, (Datatype_fixed * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * * typedValue, MethodInfo * method)); DO_APP_FUNC(0x02519600, void, Datatype_fixed__ctor, (Datatype_fixed * __this, MethodInfo * method)); DO_APP_FUNC(0x02519650, Type *, Datatype_uuid_get_ValueType, (Datatype_uuid * __this, MethodInfo * method)); DO_APP_FUNC(0x025196B0, Type *, Datatype_uuid_get_ListValueType, (Datatype_uuid * __this, MethodInfo * method)); DO_APP_FUNC(0x003CB690, RestrictionFlags__Enum, Datatype_uuid_get_ValidRestrictionFlags, (Datatype_uuid * __this, MethodInfo * method)); DO_APP_FUNC(0x02519710, int32_t, Datatype_uuid_Compare, (Datatype_uuid * __this, Object * value1, Object * value2, MethodInfo * method)); DO_APP_FUNC(0x02519820, Object *, Datatype_uuid_ParseValue, (Datatype_uuid * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, MethodInfo * method)); -DO_APP_FUNC(0x02519AA0, Exception *, Datatype_uuid_TryParseValue, (Datatype_uuid * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * typedValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D038A8, Datatype_uuid_ParseValue__MethodInfo); +DO_APP_FUNC(0x02519AA0, Exception *, Datatype_uuid_TryParseValue, (Datatype_uuid * __this, String * s, XmlNameTable * nameTable, IXmlNamespaceResolver * nsmgr, Object * * typedValue, MethodInfo * method)); DO_APP_FUNC(0x02519BF0, void, Datatype_uuid__ctor, (Datatype_uuid * __this, MethodInfo * method)); DO_APP_FUNC(0x02519C70, void, Datatype_uuid__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02519DE0, void, DtdValidator__ctor, (DtdValidator * __this, XmlValidatingReaderImpl * reader, IValidationEventHandling * eventHandling, bool processIdentityConstraints, MethodInfo * method)); @@ -60031,6 +69449,7 @@ DO_APP_FUNC(0x0251BE10, void, DtdValidator_CheckValue, (DtdValidator * __this, S DO_APP_FUNC(0x0251C470, void, DtdValidator_AddID, (DtdValidator * __this, String * name, Object * node, MethodInfo * method)); DO_APP_FUNC(0x0251C570, Object *, DtdValidator_FindId, (DtdValidator * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x0251C5A0, bool, DtdValidator_GenEntity, (DtdValidator * __this, XmlQualifiedName * qname, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03858, DtdValidator_GenEntity__MethodInfo); DO_APP_FUNC(0x0251C7C0, SchemaEntity *, DtdValidator_GetEntity, (DtdValidator * __this, XmlQualifiedName * qname, bool fParameterEntity, MethodInfo * method)); DO_APP_FUNC(0x0251C880, void, DtdValidator_CheckForwardRefs, (DtdValidator * __this, MethodInfo * method)); DO_APP_FUNC(0x0251CA20, void, DtdValidator_Push, (DtdValidator * __this, XmlQualifiedName * elementName, MethodInfo * method)); @@ -60040,7 +69459,7 @@ DO_APP_FUNC(0x0251D130, void, DtdValidator_CheckDefaultValue, (SchemaAttDef * at DO_APP_FUNC(0x0251D490, void, DtdValidator__cctor, (MethodInfo * method)); DO_APP_FUNC(0x00420A60, String *, DtdValidator_NamespaceManager_LookupNamespace, (DtdValidator_NamespaceManager * __this, String * prefix, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, DtdValidator_NamespaceManager__ctor, (DtdValidator_NamespaceManager * __this, MethodInfo * method)); -DO_APP_FUNC(0x0251D550, Exception *, FacetsChecker_CheckLexicalFacets, (FacetsChecker * __this, String * parseString, XmlSchemaDatatype * datatype, MethodInfo * method)); +DO_APP_FUNC(0x0251D550, Exception *, FacetsChecker_CheckLexicalFacets, (FacetsChecker * __this, String * * parseString, XmlSchemaDatatype * datatype, MethodInfo * method)); DO_APP_FUNC(0x003CB690, Exception *, FacetsChecker_CheckValueFacets, (FacetsChecker * __this, Object * value, XmlSchemaDatatype * datatype, MethodInfo * method)); DO_APP_FUNC(0x003CB690, Exception *, FacetsChecker_CheckValueFacets_1, (FacetsChecker * __this, Decimal value, XmlSchemaDatatype * datatype, MethodInfo * method)); DO_APP_FUNC(0x003CB690, Exception *, FacetsChecker_CheckValueFacets_2, (FacetsChecker * __this, int64_t value, XmlSchemaDatatype * datatype, MethodInfo * method)); @@ -60053,37 +69472,54 @@ DO_APP_FUNC(0x003CB690, Exception *, FacetsChecker_CheckValueFacets_8, (FacetsCh DO_APP_FUNC(0x003CB690, Exception *, FacetsChecker_CheckValueFacets_9, (FacetsChecker * __this, Byte__Array * value, XmlSchemaDatatype * datatype, MethodInfo * method)); DO_APP_FUNC(0x003CB690, Exception *, FacetsChecker_CheckValueFacets_10, (FacetsChecker * __this, TimeSpan value, XmlSchemaDatatype * datatype, MethodInfo * method)); DO_APP_FUNC(0x003CB690, Exception *, FacetsChecker_CheckValueFacets_11, (FacetsChecker * __this, XmlQualifiedName * value, XmlSchemaDatatype * datatype, MethodInfo * method)); -DO_APP_FUNC(0x0251D5C0, void, FacetsChecker_CheckWhitespaceFacets, (FacetsChecker * __this, String * s, XmlSchemaDatatype * datatype, MethodInfo * method)); +DO_APP_FUNC(0x0251D5C0, void, FacetsChecker_CheckWhitespaceFacets, (FacetsChecker * __this, String * * s, XmlSchemaDatatype * datatype, MethodInfo * method)); DO_APP_FUNC(0x0251D780, Exception *, FacetsChecker_CheckPatternFacets, (FacetsChecker * __this, RestrictionFacets * restriction, String * value, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, FacetsChecker_MatchEnumeration, (FacetsChecker * __this, Object * value, ArrayList * enumeration, XmlSchemaDatatype * datatype, MethodInfo * method)); DO_APP_FUNC(0x0251D9B0, RestrictionFacets *, FacetsChecker_ConstructRestriction, (FacetsChecker * __this, DatatypeImplementation * datatype, XmlSchemaObjectCollection * facets, XmlNameTable * nameTable, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03820, FacetsChecker_ConstructRestriction__MethodInfo); DO_APP_FUNC(0x0251DF40, Decimal, FacetsChecker_Power, (int32_t x, int32_t y, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, FacetsChecker__ctor, (FacetsChecker * __this, MethodInfo * method)); -DO_APP_FUNC(0x0251E0F0, void, FacetsChecker_FacetsCompiler__ctor, (FacetsChecker_FacetsCompiler__Boxed * __this, DatatypeImplementation * baseDatatype, RestrictionFacets * restriction, MethodInfo * method)); -DO_APP_FUNC(0x0251E520, void, FacetsChecker_FacetsCompiler_CompileLengthFacet, (FacetsChecker_FacetsCompiler__Boxed * __this, XmlSchemaFacet * facet, MethodInfo * method)); -DO_APP_FUNC(0x0251E9C0, void, FacetsChecker_FacetsCompiler_CompileMinLengthFacet, (FacetsChecker_FacetsCompiler__Boxed * __this, XmlSchemaFacet * facet, MethodInfo * method)); -DO_APP_FUNC(0x0251EDD0, void, FacetsChecker_FacetsCompiler_CompileMaxLengthFacet, (FacetsChecker_FacetsCompiler__Boxed * __this, XmlSchemaFacet * facet, MethodInfo * method)); -DO_APP_FUNC(0x0251F1E0, void, FacetsChecker_FacetsCompiler_CompilePatternFacet, (FacetsChecker_FacetsCompiler__Boxed * __this, XmlSchemaPatternFacet * facet, MethodInfo * method)); -DO_APP_FUNC(0x0251F450, void, FacetsChecker_FacetsCompiler_CompileEnumerationFacet, (FacetsChecker_FacetsCompiler__Boxed * __this, XmlSchemaFacet * facet, IXmlNamespaceResolver * nsmgr, XmlNameTable * nameTable, MethodInfo * method)); -DO_APP_FUNC(0x0251F650, void, FacetsChecker_FacetsCompiler_CompileWhitespaceFacet, (FacetsChecker_FacetsCompiler__Boxed * __this, XmlSchemaFacet * facet, MethodInfo * method)); -DO_APP_FUNC(0x0251FB50, void, FacetsChecker_FacetsCompiler_CompileMaxInclusiveFacet, (FacetsChecker_FacetsCompiler__Boxed * __this, XmlSchemaFacet * facet, MethodInfo * method)); -DO_APP_FUNC(0x0251FDD0, void, FacetsChecker_FacetsCompiler_CompileMaxExclusiveFacet, (FacetsChecker_FacetsCompiler__Boxed * __this, XmlSchemaFacet * facet, MethodInfo * method)); -DO_APP_FUNC(0x02520060, void, FacetsChecker_FacetsCompiler_CompileMinInclusiveFacet, (FacetsChecker_FacetsCompiler__Boxed * __this, XmlSchemaFacet * facet, MethodInfo * method)); -DO_APP_FUNC(0x025202F0, void, FacetsChecker_FacetsCompiler_CompileMinExclusiveFacet, (FacetsChecker_FacetsCompiler__Boxed * __this, XmlSchemaFacet * facet, MethodInfo * method)); -DO_APP_FUNC(0x02520580, void, FacetsChecker_FacetsCompiler_CompileTotalDigitsFacet, (FacetsChecker_FacetsCompiler__Boxed * __this, XmlSchemaFacet * facet, MethodInfo * method)); -DO_APP_FUNC(0x02520950, void, FacetsChecker_FacetsCompiler_CompileFractionDigitsFacet, (FacetsChecker_FacetsCompiler__Boxed * __this, XmlSchemaFacet * facet, MethodInfo * method)); -DO_APP_FUNC(0x02520CA0, void, FacetsChecker_FacetsCompiler_FinishFacetCompile, (FacetsChecker_FacetsCompiler__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02521070, void, FacetsChecker_FacetsCompiler_CheckValue, (FacetsChecker_FacetsCompiler__Boxed * __this, Object * value, XmlSchemaFacet * facet, MethodInfo * method)); -DO_APP_FUNC(0x025217C0, void, FacetsChecker_FacetsCompiler_CompileFacetCombinations, (FacetsChecker_FacetsCompiler__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02521DC0, void, FacetsChecker_FacetsCompiler_CopyFacetsFromBaseType, (FacetsChecker_FacetsCompiler__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02522580, Object *, FacetsChecker_FacetsCompiler_ParseFacetValue, (FacetsChecker_FacetsCompiler__Boxed * __this, XmlSchemaDatatype * datatype, XmlSchemaFacet * facet, String * code, IXmlNamespaceResolver * nsmgr, XmlNameTable * nameTable, MethodInfo * method)); +DO_APP_FUNC(0x0251E0F0, void, FacetsChecker_FacetsCompiler__ctor, (FacetsChecker_FacetsCompiler * __this, DatatypeImplementation * baseDatatype, RestrictionFacets * restriction, MethodInfo * method)); +DO_APP_FUNC(0x0251E520, void, FacetsChecker_FacetsCompiler_CompileLengthFacet, (FacetsChecker_FacetsCompiler * __this, XmlSchemaFacet * facet, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03800, FacetsChecker_FacetsCompiler_CompileLengthFacet__MethodInfo); +DO_APP_FUNC(0x0251E9C0, void, FacetsChecker_FacetsCompiler_CompileMinLengthFacet, (FacetsChecker_FacetsCompiler * __this, XmlSchemaFacet * facet, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03718, FacetsChecker_FacetsCompiler_CompileMinLengthFacet__MethodInfo); +DO_APP_FUNC(0x0251EDD0, void, FacetsChecker_FacetsCompiler_CompileMaxLengthFacet, (FacetsChecker_FacetsCompiler * __this, XmlSchemaFacet * facet, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D036F0, FacetsChecker_FacetsCompiler_CompileMaxLengthFacet__MethodInfo); +DO_APP_FUNC(0x0251F1E0, void, FacetsChecker_FacetsCompiler_CompilePatternFacet, (FacetsChecker_FacetsCompiler * __this, XmlSchemaPatternFacet * facet, MethodInfo * method)); +DO_APP_FUNC(0x0251F450, void, FacetsChecker_FacetsCompiler_CompileEnumerationFacet, (FacetsChecker_FacetsCompiler * __this, XmlSchemaFacet * facet, IXmlNamespaceResolver * nsmgr, XmlNameTable * nameTable, MethodInfo * method)); +DO_APP_FUNC(0x0251F650, void, FacetsChecker_FacetsCompiler_CompileWhitespaceFacet, (FacetsChecker_FacetsCompiler * __this, XmlSchemaFacet * facet, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03618, FacetsChecker_FacetsCompiler_CompileWhitespaceFacet__MethodInfo); +DO_APP_FUNC(0x0251FB50, void, FacetsChecker_FacetsCompiler_CompileMaxInclusiveFacet, (FacetsChecker_FacetsCompiler * __this, XmlSchemaFacet * facet, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D035E0, FacetsChecker_FacetsCompiler_CompileMaxInclusiveFacet__MethodInfo); +DO_APP_FUNC(0x0251FDD0, void, FacetsChecker_FacetsCompiler_CompileMaxExclusiveFacet, (FacetsChecker_FacetsCompiler * __this, XmlSchemaFacet * facet, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D035E8, FacetsChecker_FacetsCompiler_CompileMaxExclusiveFacet__MethodInfo); +DO_APP_FUNC(0x02520060, void, FacetsChecker_FacetsCompiler_CompileMinInclusiveFacet, (FacetsChecker_FacetsCompiler * __this, XmlSchemaFacet * facet, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D036C8, FacetsChecker_FacetsCompiler_CompileMinInclusiveFacet__MethodInfo); +DO_APP_FUNC(0x025202F0, void, FacetsChecker_FacetsCompiler_CompileMinExclusiveFacet, (FacetsChecker_FacetsCompiler * __this, XmlSchemaFacet * facet, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03640, FacetsChecker_FacetsCompiler_CompileMinExclusiveFacet__MethodInfo); +DO_APP_FUNC(0x02520580, void, FacetsChecker_FacetsCompiler_CompileTotalDigitsFacet, (FacetsChecker_FacetsCompiler * __this, XmlSchemaFacet * facet, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03540, FacetsChecker_FacetsCompiler_CompileTotalDigitsFacet__MethodInfo); +DO_APP_FUNC(0x02520950, void, FacetsChecker_FacetsCompiler_CompileFractionDigitsFacet, (FacetsChecker_FacetsCompiler * __this, XmlSchemaFacet * facet, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03510, FacetsChecker_FacetsCompiler_CompileFractionDigitsFacet__MethodInfo); +DO_APP_FUNC(0x02520CA0, void, FacetsChecker_FacetsCompiler_FinishFacetCompile, (FacetsChecker_FacetsCompiler * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03530, FacetsChecker_FacetsCompiler_FinishFacetCompile__MethodInfo); +DO_APP_FUNC(0x02521070, void, FacetsChecker_FacetsCompiler_CheckValue, (FacetsChecker_FacetsCompiler * __this, Object * value, XmlSchemaFacet * facet, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03520, FacetsChecker_FacetsCompiler_CheckValue__MethodInfo); +DO_APP_FUNC(0x025217C0, void, FacetsChecker_FacetsCompiler_CompileFacetCombinations, (FacetsChecker_FacetsCompiler * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03568, FacetsChecker_FacetsCompiler_CompileFacetCombinations__MethodInfo); +DO_APP_FUNC(0x02521DC0, void, FacetsChecker_FacetsCompiler_CopyFacetsFromBaseType, (FacetsChecker_FacetsCompiler * __this, MethodInfo * method)); +DO_APP_FUNC(0x02522580, Object *, FacetsChecker_FacetsCompiler_ParseFacetValue, (FacetsChecker_FacetsCompiler * __this, XmlSchemaDatatype * datatype, XmlSchemaFacet * facet, String * code, IXmlNamespaceResolver * nsmgr, XmlNameTable * nameTable, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03490, FacetsChecker_FacetsCompiler_ParseFacetValue__MethodInfo); DO_APP_FUNC(0x02522740, String *, FacetsChecker_FacetsCompiler_Preprocess, (String * pattern, MethodInfo * method)); -DO_APP_FUNC(0x02522A00, void, FacetsChecker_FacetsCompiler_CheckProhibitedFlag, (FacetsChecker_FacetsCompiler__Boxed * __this, XmlSchemaFacet * facet, RestrictionFlags__Enum flag, String * errorCode, MethodInfo * method)); -DO_APP_FUNC(0x02522AA0, void, FacetsChecker_FacetsCompiler_CheckDupFlag, (FacetsChecker_FacetsCompiler__Boxed * __this, XmlSchemaFacet * facet, RestrictionFlags__Enum flag, String * errorCode, MethodInfo * method)); -DO_APP_FUNC(0x02522B30, void, FacetsChecker_FacetsCompiler_SetFlag, (FacetsChecker_FacetsCompiler__Boxed * __this, XmlSchemaFacet * facet, RestrictionFlags__Enum flag, MethodInfo * method)); -DO_APP_FUNC(0x02522B90, void, FacetsChecker_FacetsCompiler_SetFlag_1, (FacetsChecker_FacetsCompiler__Boxed * __this, RestrictionFlags__Enum flag, MethodInfo * method)); +DO_APP_FUNC(0x02522A00, void, FacetsChecker_FacetsCompiler_CheckProhibitedFlag, (FacetsChecker_FacetsCompiler * __this, XmlSchemaFacet * facet, RestrictionFlags__Enum flag, String * errorCode, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03438, FacetsChecker_FacetsCompiler_CheckProhibitedFlag__MethodInfo); +DO_APP_FUNC(0x02522AA0, void, FacetsChecker_FacetsCompiler_CheckDupFlag, (FacetsChecker_FacetsCompiler * __this, XmlSchemaFacet * facet, RestrictionFlags__Enum flag, String * errorCode, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03430, FacetsChecker_FacetsCompiler_CheckDupFlag__MethodInfo); +DO_APP_FUNC(0x02522B30, void, FacetsChecker_FacetsCompiler_SetFlag, (FacetsChecker_FacetsCompiler * __this, XmlSchemaFacet * facet, RestrictionFlags__Enum flag, MethodInfo * method)); +DO_APP_FUNC(0x02522B90, void, FacetsChecker_FacetsCompiler_SetFlag_1, (FacetsChecker_FacetsCompiler * __this, RestrictionFlags__Enum flag, MethodInfo * method)); DO_APP_FUNC(0x02522BC0, void, FacetsChecker_FacetsCompiler__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x0171DBE0, void, FacetsChecker_FacetsCompiler_Map__ctor, (FacetsChecker_FacetsCompiler_Map__Boxed * __this, uint16_t m, String * r, MethodInfo * method)); +DO_APP_FUNC(0x0171DBE0, void, FacetsChecker_FacetsCompiler_Map__ctor, (FacetsChecker_FacetsCompiler_Map * __this, uint16_t m, String * r, MethodInfo * method)); DO_APP_FUNC(0x025233B0, void, Numeric10FacetsChecker__ctor, (Numeric10FacetsChecker * __this, Decimal minVal, Decimal maxVal, MethodInfo * method)); DO_APP_FUNC(0x025233C0, Exception *, Numeric10FacetsChecker_CheckValueFacets, (Numeric10FacetsChecker * __this, Object * value, XmlSchemaDatatype * datatype, MethodInfo * method)); DO_APP_FUNC(0x02523460, Exception *, Numeric10FacetsChecker_CheckValueFacets_1, (Numeric10FacetsChecker * __this, Decimal value, XmlSchemaDatatype * datatype, MethodInfo * method)); @@ -60141,6 +69577,7 @@ DO_APP_FUNC(0x02527AB0, NamespaceList *, NamespaceList_Clone, (NamespaceList * _ DO_APP_FUNC(0x003BCD50, NamespaceList_ListType__Enum, NamespaceList_get_Type, (NamespaceList * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, String *, NamespaceList_get_Excluded, (NamespaceList * __this, MethodInfo * method)); DO_APP_FUNC(0x02527C50, ICollection *, NamespaceList_get_Enumerate, (NamespaceList * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03390, NamespaceList_get_Enumerate__MethodInfo); DO_APP_FUNC(0x02527CD0, bool, NamespaceList_Allows, (NamespaceList * __this, String * ns, MethodInfo * method)); DO_APP_FUNC(0x02527D80, bool, NamespaceList_Allows_1, (NamespaceList * __this, XmlQualifiedName * qname, MethodInfo * method)); DO_APP_FUNC(0x02527DB0, String *, NamespaceList_ToString, (NamespaceList * __this, MethodInfo * method)); @@ -60154,7 +69591,8 @@ DO_APP_FUNC(0x025290B0, bool, NamespaceListV1Compat_Allows, (NamespaceListV1Comp DO_APP_FUNC(0x025291C0, void, Parser_1__ctor, (Parser_1 * __this, SchemaType__Enum schemaType, XmlNameTable * nameTable, SchemaNames * schemaNames, ValidationEventHandler * eventHandler, MethodInfo * method)); DO_APP_FUNC(0x02529470, SchemaType__Enum, Parser_1_Parse, (Parser_1 * __this, XmlReader * reader, String * targetNamespace, MethodInfo * method)); DO_APP_FUNC(0x025294E0, void, Parser_1_StartParsing, (Parser_1 * __this, XmlReader * reader, String * targetNamespace, MethodInfo * method)); -DO_APP_FUNC(0x02529CA0, bool, Parser_1_CheckSchemaRoot, (Parser_1 * __this, SchemaType__Enum rootType, String * code, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D032F8, Parser_1_StartParsing__MethodInfo); +DO_APP_FUNC(0x02529CA0, bool, Parser_1_CheckSchemaRoot, (Parser_1 * __this, SchemaType__Enum rootType, String * * code, MethodInfo * method)); DO_APP_FUNC(0x003BCD50, SchemaType__Enum, Parser_1_FinishParsing, (Parser_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x003C91B0, XmlSchema *, Parser_1_get_XmlSchema, (Parser_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x00A030D0, void, Parser_1_set_XmlResolver, (Parser_1 * __this, XmlResolver * value, MethodInfo * method)); @@ -60164,7 +69602,9 @@ DO_APP_FUNC(0x0252A790, void, Parser_1_ProcessAppInfoDocMarkup, (Parser_1 * __th DO_APP_FUNC(0x0252AAC0, XmlElement *, Parser_1_LoadElementNode, (Parser_1 * __this, bool root, MethodInfo * method)); DO_APP_FUNC(0x0252B060, XmlAttribute *, Parser_1_CreateXmlNsAttribute, (Parser_1 * __this, String * prefix, String * value, MethodInfo * method)); DO_APP_FUNC(0x0252B1A0, XmlAttribute *, Parser_1_LoadAttributeNode, (Parser_1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03300, Parser_1_LoadAttributeNode__MethodInfo); DO_APP_FUNC(0x0252B360, XmlEntityReference *, Parser_1_LoadEntityReferenceInAttribute, (Parser_1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03310, Parser_1_LoadEntityReferenceInAttribute__MethodInfo); DO_APP_FUNC(0x003BCE40, void, RedefineEntry__ctor, (RedefineEntry * __this, XmlSchemaRedefine * external, XmlSchema * schema, MethodInfo * method)); DO_APP_FUNC(0x0252B5F0, void, Preprocessor__ctor, (Preprocessor * __this, XmlNameTable * nameTable, SchemaNames * schemaNames, ValidationEventHandler * eventHandler, XmlSchemaCompilationSettings * compilationSettings, MethodInfo * method)); DO_APP_FUNC(0x0252B800, bool, Preprocessor_Execute, (Preprocessor * __this, XmlSchema * schema, String * targetNamespace, bool loadExternals, MethodInfo * method)); @@ -60268,7 +69708,9 @@ DO_APP_FUNC(0x0253E120, void, SchemaCollectionCompiler_CompileSubstitutionGroup, DO_APP_FUNC(0x0253E840, void, SchemaCollectionCompiler_CheckSubstitutionGroup, (SchemaCollectionCompiler * __this, XmlSchemaSubstitutionGroup * substitutionGroup, MethodInfo * method)); DO_APP_FUNC(0x0253EA90, void, SchemaCollectionCompiler_CompileGroup, (SchemaCollectionCompiler * __this, XmlSchemaGroup * group, MethodInfo * method)); DO_APP_FUNC(0x0253EBD0, void, SchemaCollectionCompiler_CompileSimpleType, (SchemaCollectionCompiler * __this, XmlSchemaSimpleType * simpleType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D042F0, SchemaCollectionCompiler_CompileSimpleType__MethodInfo); DO_APP_FUNC(0x0253F610, XmlSchemaSimpleType__Array *, SchemaCollectionCompiler_CompileBaseMemberTypes, (SchemaCollectionCompiler * __this, XmlSchemaSimpleType * simpleType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04300, SchemaCollectionCompiler_CompileBaseMemberTypes__MethodInfo); DO_APP_FUNC(0x0253FAD0, void, SchemaCollectionCompiler_CheckUnionType, (SchemaCollectionCompiler * __this, XmlSchemaSimpleType * unionMember, ArrayList * memberTypeDefinitions, XmlSchemaSimpleType * parentType, MethodInfo * method)); DO_APP_FUNC(0x0253FC20, void, SchemaCollectionCompiler_CompileComplexType, (SchemaCollectionCompiler * __this, XmlSchemaComplexType * complexType, MethodInfo * method)); DO_APP_FUNC(0x02540A80, void, SchemaCollectionCompiler_CompileSimpleContentExtension, (SchemaCollectionCompiler * __this, XmlSchemaComplexType * complexType, XmlSchemaSimpleContentExtension * simpleExtension, MethodInfo * method)); @@ -60292,12 +69734,12 @@ DO_APP_FUNC(0x02545860, bool, SchemaCollectionCompiler_IsElementFromGroupBase, ( DO_APP_FUNC(0x02545CF0, bool, SchemaCollectionCompiler_IsGroupBaseFromGroupBase, (SchemaCollectionCompiler * __this, XmlSchemaGroupBase * derivedGroupBase, XmlSchemaGroupBase * baseGroupBase, bool skipEmptableOnly, MethodInfo * method)); DO_APP_FUNC(0x02546030, bool, SchemaCollectionCompiler_IsSequenceFromAll, (SchemaCollectionCompiler * __this, XmlSchemaSequence * derivedSequence, XmlSchemaAll * baseAll, MethodInfo * method)); DO_APP_FUNC(0x02546410, bool, SchemaCollectionCompiler_IsSequenceFromChoice, (SchemaCollectionCompiler * __this, XmlSchemaSequence * derivedSequence, XmlSchemaChoice * baseChoice, MethodInfo * method)); -DO_APP_FUNC(0x02546790, void, SchemaCollectionCompiler_CalculateSequenceRange, (SchemaCollectionCompiler * __this, XmlSchemaSequence * sequence, Decimal minOccurs, Decimal maxOccurs, MethodInfo * method)); +DO_APP_FUNC(0x02546790, void, SchemaCollectionCompiler_CalculateSequenceRange, (SchemaCollectionCompiler * __this, XmlSchemaSequence * sequence, Decimal * minOccurs, Decimal * maxOccurs, MethodInfo * method)); DO_APP_FUNC(0x02546DE0, bool, SchemaCollectionCompiler_IsValidOccurrenceRangeRestriction, (SchemaCollectionCompiler * __this, XmlSchemaParticle * derivedParticle, XmlSchemaParticle * baseParticle, MethodInfo * method)); DO_APP_FUNC(0x02546F60, bool, SchemaCollectionCompiler_IsValidOccurrenceRangeRestriction_1, (SchemaCollectionCompiler * __this, Decimal minOccurs, Decimal maxOccurs, Decimal baseMinOccurs, Decimal baseMaxOccurs, MethodInfo * method)); DO_APP_FUNC(0x025470B0, int32_t, SchemaCollectionCompiler_GetMappingParticle, (SchemaCollectionCompiler * __this, XmlSchemaParticle * particle, XmlSchemaObjectCollection * collection, MethodInfo * method)); DO_APP_FUNC(0x025471D0, bool, SchemaCollectionCompiler_IsParticleEmptiable, (SchemaCollectionCompiler * __this, XmlSchemaParticle * particle, MethodInfo * method)); -DO_APP_FUNC(0x025472E0, void, SchemaCollectionCompiler_CalculateEffectiveTotalRange, (SchemaCollectionCompiler * __this, XmlSchemaParticle * particle, Decimal minOccurs, Decimal maxOccurs, MethodInfo * method)); +DO_APP_FUNC(0x025472E0, void, SchemaCollectionCompiler_CalculateEffectiveTotalRange, (SchemaCollectionCompiler * __this, XmlSchemaParticle * particle, Decimal * minOccurs, Decimal * maxOccurs, MethodInfo * method)); DO_APP_FUNC(0x02548070, void, SchemaCollectionCompiler_PushComplexType, (SchemaCollectionCompiler * __this, XmlSchemaComplexType * complexType, MethodInfo * method)); DO_APP_FUNC(0x023B8720, XmlSchemaContentType__Enum, SchemaCollectionCompiler_GetSchemaContentType, (SchemaCollectionCompiler * __this, XmlSchemaComplexType * complexType, XmlSchemaComplexContent * complexContent, XmlSchemaParticle * particle, MethodInfo * method)); DO_APP_FUNC(0x025480A0, void, SchemaCollectionCompiler_CompileAttributeGroup, (SchemaCollectionCompiler * __this, XmlSchemaAttributeGroup * attributeGroup, MethodInfo * method)); @@ -60305,8 +69747,11 @@ DO_APP_FUNC(0x02548810, void, SchemaCollectionCompiler_CompileLocalAttributes, ( DO_APP_FUNC(0x025499E0, XmlSchemaAnyAttribute *, SchemaCollectionCompiler_CompileAnyAttributeUnion, (SchemaCollectionCompiler * __this, XmlSchemaAnyAttribute * a, XmlSchemaAnyAttribute * b, MethodInfo * method)); DO_APP_FUNC(0x02549A90, XmlSchemaAnyAttribute *, SchemaCollectionCompiler_CompileAnyAttributeIntersection, (SchemaCollectionCompiler * __this, XmlSchemaAnyAttribute * a, XmlSchemaAnyAttribute * b, MethodInfo * method)); DO_APP_FUNC(0x02549B40, void, SchemaCollectionCompiler_CompileAttribute, (SchemaCollectionCompiler * __this, XmlSchemaAttribute * xa, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D042D8, SchemaCollectionCompiler_CompileAttribute__MethodInfo); DO_APP_FUNC(0x0254A6F0, void, SchemaCollectionCompiler_CompileIdentityConstraint, (SchemaCollectionCompiler * __this, XmlSchemaIdentityConstraint * xi, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D042E0, SchemaCollectionCompiler_CompileIdentityConstraint__MethodInfo); DO_APP_FUNC(0x0254AE50, void, SchemaCollectionCompiler_CompileElement, (SchemaCollectionCompiler * __this, XmlSchemaElement * xe, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D042C8, SchemaCollectionCompiler_CompileElement__MethodInfo); DO_APP_FUNC(0x0254BDC0, ContentValidator *, SchemaCollectionCompiler_CompileComplexContent, (SchemaCollectionCompiler * __this, XmlSchemaComplexType * complexType, MethodInfo * method)); DO_APP_FUNC(0x0254CBC0, void, SchemaCollectionCompiler_BuildParticleContentModel, (SchemaCollectionCompiler * __this, ParticleContentValidator * contentValidator, XmlSchemaParticle * particle, MethodInfo * method)); DO_APP_FUNC(0x0254D4A0, void, SchemaCollectionCompiler_CompileParticleElements, (SchemaCollectionCompiler * __this, XmlSchemaComplexType * complexType, XmlSchemaParticle * particle, MethodInfo * method)); @@ -60473,8 +69918,8 @@ DO_APP_FUNC(0x0239DC20, bool, SchemaInfo_HasSchema, (SchemaInfo * __this, String DO_APP_FUNC(0x0239DCA0, bool, SchemaInfo_Contains, (SchemaInfo * __this, String * ns, MethodInfo * method)); DO_APP_FUNC(0x0239DD20, SchemaAttDef *, SchemaInfo_GetAttributeXdr, (SchemaInfo * __this, SchemaElementDecl * ed, XmlQualifiedName * qname, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA9550, SchemaInfo_GetAttributeXdr__MethodInfo); -DO_APP_FUNC(0x0239DF10, SchemaAttDef *, SchemaInfo_GetAttributeXsd, (SchemaInfo * __this, SchemaElementDecl * ed, XmlQualifiedName * qname, XmlSchemaObject * partialValidationType, AttributeMatchState__Enum attributeMatchState, MethodInfo * method)); -DO_APP_FUNC(0x0239E1A0, SchemaAttDef *, SchemaInfo_GetAttributeXsd_1, (SchemaInfo * __this, SchemaElementDecl * ed, XmlQualifiedName * qname, bool skip, MethodInfo * method)); +DO_APP_FUNC(0x0239DF10, SchemaAttDef *, SchemaInfo_GetAttributeXsd, (SchemaInfo * __this, SchemaElementDecl * ed, XmlQualifiedName * qname, XmlSchemaObject * partialValidationType, AttributeMatchState__Enum * attributeMatchState, MethodInfo * method)); +DO_APP_FUNC(0x0239E1A0, SchemaAttDef *, SchemaInfo_GetAttributeXsd_1, (SchemaInfo * __this, SchemaElementDecl * ed, XmlQualifiedName * qname, bool * skip, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA9598, SchemaInfo_GetAttributeXsd_1__MethodInfo); DO_APP_FUNC(0x0239E300, void, SchemaInfo_Add, (SchemaInfo * __this, SchemaInfo * sinfo, ValidationEventHandler * eventhandler, MethodInfo * method)); DO_APP_FUNC(0x0239F230, void, SchemaInfo_Finish, (SchemaInfo * __this, MethodInfo * method)); @@ -60552,7 +69997,7 @@ DO_APP_FUNC(0x023B74F0, bool, Compiler_IsValidOccurrenceRangeRestriction, (Compi DO_APP_FUNC(0x023B7670, bool, Compiler_IsValidOccurrenceRangeRestriction_1, (Compiler * __this, Decimal minOccurs, Decimal maxOccurs, Decimal baseMinOccurs, Decimal baseMaxOccurs, MethodInfo * method)); DO_APP_FUNC(0x023B77C0, int32_t, Compiler_GetMappingParticle, (Compiler * __this, XmlSchemaParticle * particle, XmlSchemaObjectCollection * collection, MethodInfo * method)); DO_APP_FUNC(0x023B78E0, bool, Compiler_IsParticleEmptiable, (Compiler * __this, XmlSchemaParticle * particle, MethodInfo * method)); -DO_APP_FUNC(0x023B79F0, void, Compiler_CalculateEffectiveTotalRange, (Compiler * __this, XmlSchemaParticle * particle, Decimal minOccurs, Decimal maxOccurs, MethodInfo * method)); +DO_APP_FUNC(0x023B79F0, void, Compiler_CalculateEffectiveTotalRange, (Compiler * __this, XmlSchemaParticle * particle, Decimal * minOccurs, Decimal * maxOccurs, MethodInfo * method)); DO_APP_FUNC(0x023B86F0, void, Compiler_PushComplexType, (Compiler * __this, XmlSchemaComplexType * complexType, MethodInfo * method)); DO_APP_FUNC(0x023B8720, XmlSchemaContentType__Enum, Compiler_GetSchemaContentType, (Compiler * __this, XmlSchemaComplexType * complexType, XmlSchemaComplexContent * complexContent, XmlSchemaParticle * particle, MethodInfo * method)); DO_APP_FUNC(0x023B87A0, void, Compiler_CompileAttributeGroup, (Compiler * __this, XmlSchemaAttributeGroup * attributeGroup, MethodInfo * method)); @@ -60588,11 +70033,13 @@ DO_APP_FUNC(0x023BF650, void, ValidationState__ctor, (ValidationState * __this, DO_APP_FUNC(0x023BF6E0, void, XdrBuilder__ctor, (XdrBuilder * __this, XmlReader * reader, XmlNamespaceManager * curmgr, SchemaInfo * sinfo, String * targetNamspace, XmlNameTable * nameTable, SchemaNames * schemaNames, ValidationEventHandler * eventhandler, MethodInfo * method)); DO_APP_FUNC(0x023BFE30, bool, XdrBuilder_ProcessElement, (XdrBuilder * __this, String * prefix, String * name, String * ns, MethodInfo * method)); DO_APP_FUNC(0x023C0100, void, XdrBuilder_ProcessAttribute, (XdrBuilder * __this, String * prefix, String * name, String * ns, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC360, XdrBuilder_ProcessAttribute__MethodInfo); DO_APP_FUNC(0x00B06290, void, XdrBuilder_set_XmlResolver, (XdrBuilder * __this, XmlResolver * value, MethodInfo * method)); DO_APP_FUNC(0x023C06B0, bool, XdrBuilder_LoadSchema, (XdrBuilder * __this, String * uri, MethodInfo * method)); DO_APP_FUNC(0x023C0C80, bool, XdrBuilder_IsXdrSchema, (String * uri, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, XdrBuilder_IsContentParsed, (XdrBuilder * __this, MethodInfo * method)); DO_APP_FUNC(0x023C0FC0, void, XdrBuilder_ProcessMarkup, (XdrBuilder * __this, XmlNode__Array * markup, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC298, XdrBuilder_ProcessMarkup__MethodInfo); DO_APP_FUNC(0x023C1030, void, XdrBuilder_ProcessCData, (XdrBuilder * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x023C1100, void, XdrBuilder_StartChildren, (XdrBuilder * __this, MethodInfo * method)); DO_APP_FUNC(0x023C1140, void, XdrBuilder_EndChildren, (XdrBuilder * __this, MethodInfo * method)); @@ -60601,64 +70048,111 @@ DO_APP_FUNC(0x023C1310, void, XdrBuilder_Pop, (XdrBuilder * __this, MethodInfo * DO_APP_FUNC(0x023C1430, void, XdrBuilder_PushGroupInfo, (XdrBuilder * __this, MethodInfo * method)); DO_APP_FUNC(0x023C14E0, void, XdrBuilder_PopGroupInfo, (XdrBuilder * __this, MethodInfo * method)); DO_APP_FUNC(0x023C1600, void, XdrBuilder_XDR_InitRoot, (XdrBuilder * builder, Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABE58, XdrBuilder_XDR_InitRoot__MethodInfo); DO_APP_FUNC(0x023C1760, void, XdrBuilder_XDR_BuildRoot_Name, (XdrBuilder * builder, Object * obj, String * prefix, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABE00, XdrBuilder_XDR_BuildRoot_Name__MethodInfo); DO_APP_FUNC(0x003AE050, void, XdrBuilder_XDR_BuildRoot_ID, (XdrBuilder * builder, Object * obj, String * prefix, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABE48, XdrBuilder_XDR_BuildRoot_ID__MethodInfo); DO_APP_FUNC(0x023C18C0, void, XdrBuilder_XDR_BeginRoot, (XdrBuilder * builder, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABEE8, XdrBuilder_XDR_BeginRoot__MethodInfo); DO_APP_FUNC(0x023C1A90, void, XdrBuilder_XDR_EndRoot, (XdrBuilder * builder, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABDB0, XdrBuilder_XDR_EndRoot__MethodInfo); DO_APP_FUNC(0x023C1FC0, void, XdrBuilder_XDR_InitElementType, (XdrBuilder * builder, Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABE88, XdrBuilder_XDR_InitElementType__MethodInfo); DO_APP_FUNC(0x023C22B0, void, XdrBuilder_XDR_BuildElementType_Name, (XdrBuilder * builder, Object * obj, String * prefix, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABF98, XdrBuilder_XDR_BuildElementType_Name__MethodInfo); DO_APP_FUNC(0x023C25E0, void, XdrBuilder_XDR_BuildElementType_Content, (XdrBuilder * builder, Object * obj, String * prefix, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABFB8, XdrBuilder_XDR_BuildElementType_Content__MethodInfo); DO_APP_FUNC(0x023C2690, void, XdrBuilder_XDR_BuildElementType_Model, (XdrBuilder * builder, Object * obj, String * prefix, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABF88, XdrBuilder_XDR_BuildElementType_Model__MethodInfo); DO_APP_FUNC(0x023C2820, void, XdrBuilder_XDR_BuildElementType_Order, (XdrBuilder * builder, Object * obj, String * prefix, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABF58, XdrBuilder_XDR_BuildElementType_Order__MethodInfo); DO_APP_FUNC(0x023C28E0, void, XdrBuilder_XDR_BuildElementType_DtType, (XdrBuilder * builder, Object * obj, String * prefix, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABF78, XdrBuilder_XDR_BuildElementType_DtType__MethodInfo); DO_APP_FUNC(0x023C2AB0, void, XdrBuilder_XDR_BuildElementType_DtValues, (XdrBuilder * builder, Object * obj, String * prefix, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABF80, XdrBuilder_XDR_BuildElementType_DtValues__MethodInfo); DO_APP_FUNC(0x023C2C10, void, XdrBuilder_XDR_BuildElementType_DtMaxLength, (XdrBuilder * builder, Object * obj, String * prefix, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABFC8, XdrBuilder_XDR_BuildElementType_DtMaxLength__MethodInfo); DO_APP_FUNC(0x023C2CA0, void, XdrBuilder_XDR_BuildElementType_DtMinLength, (XdrBuilder * builder, Object * obj, String * prefix, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABFD8, XdrBuilder_XDR_BuildElementType_DtMinLength__MethodInfo); DO_APP_FUNC(0x023C2D30, void, XdrBuilder_XDR_BeginElementType, (XdrBuilder * builder, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABEE0, XdrBuilder_XDR_BeginElementType__MethodInfo); DO_APP_FUNC(0x023C30D0, void, XdrBuilder_XDR_EndElementType, (XdrBuilder * builder, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABDD8, XdrBuilder_XDR_EndElementType__MethodInfo); DO_APP_FUNC(0x023C3810, void, XdrBuilder_XDR_InitAttributeType, (XdrBuilder * builder, Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABDC0, XdrBuilder_XDR_InitAttributeType__MethodInfo); DO_APP_FUNC(0x023C3A10, void, XdrBuilder_XDR_BuildAttributeType_Name, (XdrBuilder * builder, Object * obj, String * prefix, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABFE8, XdrBuilder_XDR_BuildAttributeType_Name__MethodInfo); DO_APP_FUNC(0x023C3E80, void, XdrBuilder_XDR_BuildAttributeType_Required, (XdrBuilder * builder, Object * obj, String * prefix, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABFF0, XdrBuilder_XDR_BuildAttributeType_Required__MethodInfo); DO_APP_FUNC(0x023C3F00, void, XdrBuilder_XDR_BuildAttributeType_Default, (XdrBuilder * builder, Object * obj, String * prefix, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABEF0, XdrBuilder_XDR_BuildAttributeType_Default__MethodInfo); DO_APP_FUNC(0x023C3F70, void, XdrBuilder_XDR_BuildAttributeType_DtType, (XdrBuilder * builder, Object * obj, String * prefix, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABEB8, XdrBuilder_XDR_BuildAttributeType_DtType__MethodInfo); DO_APP_FUNC(0x023C41E0, void, XdrBuilder_XDR_BuildAttributeType_DtValues, (XdrBuilder * builder, Object * obj, String * prefix, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABEC8, XdrBuilder_XDR_BuildAttributeType_DtValues__MethodInfo); DO_APP_FUNC(0x023C4340, void, XdrBuilder_XDR_BuildAttributeType_DtMaxLength, (XdrBuilder * builder, Object * obj, String * prefix, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABEA8, XdrBuilder_XDR_BuildAttributeType_DtMaxLength__MethodInfo); DO_APP_FUNC(0x023C43D0, void, XdrBuilder_XDR_BuildAttributeType_DtMinLength, (XdrBuilder * builder, Object * obj, String * prefix, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABEB0, XdrBuilder_XDR_BuildAttributeType_DtMinLength__MethodInfo); DO_APP_FUNC(0x023C4460, void, XdrBuilder_XDR_BeginAttributeType, (XdrBuilder * builder, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABF28, XdrBuilder_XDR_BeginAttributeType__MethodInfo); DO_APP_FUNC(0x023C4520, void, XdrBuilder_XDR_EndAttributeType, (XdrBuilder * builder, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABE10, XdrBuilder_XDR_EndAttributeType__MethodInfo); DO_APP_FUNC(0x023C4960, void, XdrBuilder_XDR_InitElement, (XdrBuilder * builder, Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABE90, XdrBuilder_XDR_InitElement__MethodInfo); DO_APP_FUNC(0x023C4A50, void, XdrBuilder_XDR_BuildElement_Type, (XdrBuilder * builder, Object * obj, String * prefix, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABF70, XdrBuilder_XDR_BuildElement_Type__MethodInfo); DO_APP_FUNC(0x023C4C50, void, XdrBuilder_XDR_BuildElement_MinOccurs, (XdrBuilder * builder, Object * obj, String * prefix, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABF68, XdrBuilder_XDR_BuildElement_MinOccurs__MethodInfo); DO_APP_FUNC(0x023C4CD0, void, XdrBuilder_XDR_BuildElement_MaxOccurs, (XdrBuilder * builder, Object * obj, String * prefix, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABF60, XdrBuilder_XDR_BuildElement_MaxOccurs__MethodInfo); DO_APP_FUNC(0x023C4D50, void, XdrBuilder_XDR_EndElement, (XdrBuilder * builder, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABDE0, XdrBuilder_XDR_EndElement__MethodInfo); DO_APP_FUNC(0x023C4E90, void, XdrBuilder_XDR_InitAttribute, (XdrBuilder * builder, Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABDC8, XdrBuilder_XDR_InitAttribute__MethodInfo); DO_APP_FUNC(0x023C4F70, void, XdrBuilder_XDR_BuildAttribute_Type, (XdrBuilder * builder, Object * obj, String * prefix, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABFA8, XdrBuilder_XDR_BuildAttribute_Type__MethodInfo); DO_APP_FUNC(0x023C5120, void, XdrBuilder_XDR_BuildAttribute_Required, (XdrBuilder * builder, Object * obj, String * prefix, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC000, XdrBuilder_XDR_BuildAttribute_Required__MethodInfo); DO_APP_FUNC(0x023C51B0, void, XdrBuilder_XDR_BuildAttribute_Default, (XdrBuilder * builder, Object * obj, String * prefix, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABFF8, XdrBuilder_XDR_BuildAttribute_Default__MethodInfo); DO_APP_FUNC(0x023C5220, void, XdrBuilder_XDR_BeginAttribute, (XdrBuilder * builder, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABED8, XdrBuilder_XDR_BeginAttribute__MethodInfo); DO_APP_FUNC(0x023C58D0, void, XdrBuilder_XDR_EndAttribute, (XdrBuilder * builder, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABE20, XdrBuilder_XDR_EndAttribute__MethodInfo); DO_APP_FUNC(0x023C5900, void, XdrBuilder_XDR_InitGroup, (XdrBuilder * builder, Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABE98, XdrBuilder_XDR_InitGroup__MethodInfo); DO_APP_FUNC(0x023C5AE0, void, XdrBuilder_XDR_BuildGroup_Order, (XdrBuilder * builder, Object * obj, String * prefix, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABE40, XdrBuilder_XDR_BuildGroup_Order__MethodInfo); DO_APP_FUNC(0x023C5BD0, void, XdrBuilder_XDR_BuildGroup_MinOccurs, (XdrBuilder * builder, Object * obj, String * prefix, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABE38, XdrBuilder_XDR_BuildGroup_MinOccurs__MethodInfo); DO_APP_FUNC(0x023C5C60, void, XdrBuilder_XDR_BuildGroup_MaxOccurs, (XdrBuilder * builder, Object * obj, String * prefix, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABE30, XdrBuilder_XDR_BuildGroup_MaxOccurs__MethodInfo); DO_APP_FUNC(0x023C5CF0, void, XdrBuilder_XDR_EndGroup, (XdrBuilder * builder, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABDF0, XdrBuilder_XDR_EndGroup__MethodInfo); DO_APP_FUNC(0x023C5FD0, void, XdrBuilder_XDR_InitElementDtType, (XdrBuilder * builder, Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABE78, XdrBuilder_XDR_InitElementDtType__MethodInfo); DO_APP_FUNC(0x023C60E0, void, XdrBuilder_XDR_EndElementDtType, (XdrBuilder * builder, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABDD0, XdrBuilder_XDR_EndElementDtType__MethodInfo); DO_APP_FUNC(0x023C62B0, void, XdrBuilder_XDR_InitAttributeDtType, (XdrBuilder * builder, Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABDB8, XdrBuilder_XDR_InitAttributeDtType__MethodInfo); DO_APP_FUNC(0x023C6350, void, XdrBuilder_XDR_EndAttributeDtType, (XdrBuilder * builder, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABE08, XdrBuilder_XDR_EndAttributeDtType__MethodInfo); DO_APP_FUNC(0x023C6480, bool, XdrBuilder_GetNextState, (XdrBuilder * __this, XmlQualifiedName * qname, MethodInfo * method)); DO_APP_FUNC(0x023C6670, bool, XdrBuilder_IsSkipableElement, (XdrBuilder * __this, XmlQualifiedName * qname, MethodInfo * method)); DO_APP_FUNC(0x023C6770, bool, XdrBuilder_IsSkipableAttribute, (XdrBuilder * __this, XmlQualifiedName * qname, MethodInfo * method)); DO_APP_FUNC(0x023C68E0, int32_t, XdrBuilder_GetOrder, (XdrBuilder * __this, XmlQualifiedName * qname, MethodInfo * method)); DO_APP_FUNC(0x023C6AA0, void, XdrBuilder_AddOrder, (XdrBuilder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC128, XdrBuilder_AddOrder__MethodInfo); DO_APP_FUNC(0x023C6B70, bool, XdrBuilder_IsYes, (Object * obj, XdrBuilder * builder, MethodInfo * method)); DO_APP_FUNC(0x023C6CF0, uint32_t, XdrBuilder_ParseMinOccurs, (Object * obj, XdrBuilder * builder, MethodInfo * method)); DO_APP_FUNC(0x023C6E30, uint32_t, XdrBuilder_ParseMaxOccurs, (Object * obj, XdrBuilder * builder, MethodInfo * method)); DO_APP_FUNC(0x023C7010, void, XdrBuilder_HandleMinMax, (ParticleContentValidator * pContent, uint32_t cMin, uint32_t cMax, MethodInfo * method)); -DO_APP_FUNC(0x023C7040, void, XdrBuilder_ParseDtMaxLength, (uint32_t cVal, Object * obj, XdrBuilder * builder, MethodInfo * method)); -DO_APP_FUNC(0x023C71C0, void, XdrBuilder_ParseDtMinLength, (uint32_t cVal, Object * obj, XdrBuilder * builder, MethodInfo * method)); +DO_APP_FUNC(0x023C7040, void, XdrBuilder_ParseDtMaxLength, (uint32_t * cVal, Object * obj, XdrBuilder * builder, MethodInfo * method)); +DO_APP_FUNC(0x023C71C0, void, XdrBuilder_ParseDtMinLength, (uint32_t * cVal, Object * obj, XdrBuilder * builder, MethodInfo * method)); DO_APP_FUNC(0x023C7340, void, XdrBuilder_CompareMinMaxLength, (uint32_t cMin, uint32_t cMax, XdrBuilder * builder, MethodInfo * method)); -DO_APP_FUNC(0x023C73C0, bool, XdrBuilder_ParseInteger, (String * str, uint32_t n, MethodInfo * method)); +DO_APP_FUNC(0x023C73C0, bool, XdrBuilder_ParseInteger, (String * str, uint32_t * n, MethodInfo * method)); DO_APP_FUNC(0x023C7400, void, XdrBuilder_XDR_CheckAttributeDefault, (XdrBuilder * __this, XdrBuilder_DeclBaseInfo * decl, SchemaAttDef * pAttdef, MethodInfo * method)); DO_APP_FUNC(0x023C7510, void, XdrBuilder_SetAttributePresence, (XdrBuilder * __this, SchemaAttDef * pAttdef, bool fRequired, MethodInfo * method)); DO_APP_FUNC(0x023C7560, int32_t, XdrBuilder_GetContent, (XdrBuilder * __this, XmlQualifiedName * qname, MethodInfo * method)); @@ -60670,6 +70164,7 @@ DO_APP_FUNC(0x023C7BA0, void, XdrBuilder_SendValidationEvent, (XdrBuilder * __th DO_APP_FUNC(0x023C7CE0, void, XdrBuilder_SendValidationEvent_1, (XdrBuilder * __this, String * code, MethodInfo * method)); DO_APP_FUNC(0x023C7D40, void, XdrBuilder_SendValidationEvent_2, (XdrBuilder * __this, String * code, String * msg, MethodInfo * method)); DO_APP_FUNC(0x023C7E60, void, XdrBuilder_SendValidationEvent_3, (XdrBuilder * __this, XmlSchemaException * e, XmlSeverityType__Enum severity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC058, XdrBuilder_SendValidationEvent_3__MethodInfo); DO_APP_FUNC(0x023C7F40, void, XdrBuilder__cctor, (MethodInfo * method)); DO_APP_FUNC(0x023CA830, void, XdrBuilder_DeclBaseInfo__ctor, (XdrBuilder_DeclBaseInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x023CA840, void, XdrBuilder_DeclBaseInfo_Reset, (XdrBuilder_DeclBaseInfo * __this, MethodInfo * method)); @@ -60704,12 +70199,14 @@ DO_APP_FUNC(0x023CCBB0, void, XdrValidator_ValidateStartElement, (XdrValidator * DO_APP_FUNC(0x023CD0E0, void, XdrValidator_ValidateEndStartElement, (XdrValidator * __this, MethodInfo * method)); DO_APP_FUNC(0x023CD4A0, void, XdrValidator_LoadSchemaFromLocation, (XdrValidator * __this, String * uri, MethodInfo * method)); DO_APP_FUNC(0x023CDBA0, void, XdrValidator_LoadSchema, (XdrValidator * __this, String * uri, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABB98, XdrValidator_LoadSchema__MethodInfo); DO_APP_FUNC(0x023CDD70, bool, XdrValidator_get_HasSchema, (XdrValidator * __this, MethodInfo * method)); DO_APP_FUNC(0x023CDD90, bool, XdrValidator_get_PreserveWhitespace, (XdrValidator * __this, MethodInfo * method)); DO_APP_FUNC(0x023CDDE0, void, XdrValidator_ProcessTokenizedType, (XdrValidator * __this, XmlTokenizedType__Enum ttype, String * name, MethodInfo * method)); DO_APP_FUNC(0x023CE0F0, void, XdrValidator_CompleteValidation, (XdrValidator * __this, MethodInfo * method)); DO_APP_FUNC(0x023CE380, void, XdrValidator_CheckValue, (XdrValidator * __this, String * value, SchemaAttDef * attdef, MethodInfo * method)); DO_APP_FUNC(0x023CEA50, void, XdrValidator_CheckDefaultValue, (String * value, SchemaAttDef * attdef, SchemaInfo * sinfo, XmlNamespaceManager * nsManager, XmlNameTable * NameTable, Object * sender, ValidationEventHandler * eventhandler, String * baseUri, int32_t lineNo, int32_t linePos, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABA60, XdrValidator_CheckDefaultValue__MethodInfo); DO_APP_FUNC(0x023CEF50, void, XdrValidator_AddID, (XdrValidator * __this, String * name, Object * node, MethodInfo * method)); DO_APP_FUNC(0x023CF050, Object *, XdrValidator_FindId, (XdrValidator * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x023CF080, void, XdrValidator_Push, (XdrValidator * __this, XmlQualifiedName * elementName, MethodInfo * method)); @@ -60717,14 +70214,23 @@ DO_APP_FUNC(0x023CF380, void, XdrValidator_Pop, (XdrValidator * __this, MethodIn DO_APP_FUNC(0x023CF4D0, void, XdrValidator_CheckForwardRefs, (XdrValidator * __this, MethodInfo * method)); DO_APP_FUNC(0x023CF670, XmlQualifiedName *, XdrValidator_QualifiedName, (XdrValidator * __this, String * name, String * ns, MethodInfo * method)); DO_APP_FUNC(0x023CF720, void, XmlAtomicValue__ctor, (XmlAtomicValue * __this, XmlSchemaType * xmlType, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABAE8, XmlAtomicValue__ctor__MethodInfo); DO_APP_FUNC(0x023CF7E0, void, XmlAtomicValue__ctor_1, (XmlAtomicValue * __this, XmlSchemaType * xmlType, DateTime value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABAF8, XmlAtomicValue__ctor_1__MethodInfo); DO_APP_FUNC(0x023CF8A0, void, XmlAtomicValue__ctor_2, (XmlAtomicValue * __this, XmlSchemaType * xmlType, double value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABB08, XmlAtomicValue__ctor_2__MethodInfo); DO_APP_FUNC(0x023CF960, void, XmlAtomicValue__ctor_3, (XmlAtomicValue * __this, XmlSchemaType * xmlType, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABB18, XmlAtomicValue__ctor_3__MethodInfo); DO_APP_FUNC(0x023CFA20, void, XmlAtomicValue__ctor_4, (XmlAtomicValue * __this, XmlSchemaType * xmlType, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABAB8, XmlAtomicValue__ctor_4__MethodInfo); DO_APP_FUNC(0x023CFAE0, void, XmlAtomicValue__ctor_5, (XmlAtomicValue * __this, XmlSchemaType * xmlType, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABAC8, XmlAtomicValue__ctor_5__MethodInfo); DO_APP_FUNC(0x023CFC60, void, XmlAtomicValue__ctor_6, (XmlAtomicValue * __this, XmlSchemaType * xmlType, String * value, IXmlNamespaceResolver * nsResolver, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABA90, XmlAtomicValue__ctor_6__MethodInfo); DO_APP_FUNC(0x023CFFE0, void, XmlAtomicValue__ctor_7, (XmlAtomicValue * __this, XmlSchemaType * xmlType, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CABAA0, XmlAtomicValue__ctor_7__MethodInfo); DO_APP_FUNC(0x023D0160, void, XmlAtomicValue__ctor_8, (XmlAtomicValue * __this, XmlSchemaType * xmlType, Object * value, IXmlNamespaceResolver * nsResolver, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB920, XmlAtomicValue__ctor_8__MethodInfo); DO_APP_FUNC(0x00A1B820, Object *, XmlAtomicValue_System_ICloneable_Clone, (XmlAtomicValue * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, XmlSchemaType *, XmlAtomicValue_get_XmlType, (XmlAtomicValue * __this, MethodInfo * method)); DO_APP_FUNC(0x023D0420, Type *, XmlAtomicValue_get_ValueType, (XmlAtomicValue * __this, MethodInfo * method)); @@ -60894,6 +70400,7 @@ DO_APP_FUNC(0x023D4890, bool, XmlSchemaChoice_get_IsEmpty, (XmlSchemaChoice * __ DO_APP_FUNC(0x006C4310, void, XmlSchemaChoice_SetItems, (XmlSchemaChoice * __this, XmlSchemaObjectCollection * newItems, MethodInfo * method)); DO_APP_FUNC(0x023D48A0, void, XmlSchemaChoice__ctor, (XmlSchemaChoice * __this, MethodInfo * method)); DO_APP_FUNC(0x023D49A0, void, XmlSchemaCollection__ctor, (XmlSchemaCollection * __this, XmlNameTable * nametable, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB6E0, XmlSchemaCollection__ctor__MethodInfo); DO_APP_FUNC(0x023D4C40, int32_t, XmlSchemaCollection_get_Count, (XmlSchemaCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, XmlNameTable *, XmlSchemaCollection_get_NameTable, (XmlSchemaCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x003C73A0, void, XmlSchemaCollection_set_XmlResolver, (XmlSchemaCollection * __this, XmlResolver * value, MethodInfo * method)); @@ -60901,6 +70408,7 @@ DO_APP_FUNC(0x023D4C70, XmlSchema *, XmlSchemaCollection_get_Item, (XmlSchemaCol DO_APP_FUNC(0x023D4D30, IEnumerator *, XmlSchemaCollection_System_Collections_IEnumerable_GetEnumerator, (XmlSchemaCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x023D4E00, XmlSchemaCollectionEnumerator *, XmlSchemaCollection_GetEnumerator, (XmlSchemaCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x023D4ED0, void, XmlSchemaCollection_System_Collections_ICollection_CopyTo, (XmlSchemaCollection * __this, Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB6B0, XmlSchemaCollection_System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0041AEF0, bool, XmlSchemaCollection_System_Collections_ICollection_get_IsSynchronized, (XmlSchemaCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x00A1B820, Object *, XmlSchemaCollection_System_Collections_ICollection_get_SyncRoot, (XmlSchemaCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x023D4C40, int32_t, XmlSchemaCollection_System_Collections_ICollection_get_Count, (XmlSchemaCollection * __this, MethodInfo * method)); @@ -61242,29 +70750,38 @@ DO_APP_FUNC(0x023DDF70, bool, XmlSchemaObjectTable_Contains, (XmlSchemaObjectTab DO_APP_FUNC(0x023DDFF0, XmlSchemaObject *, XmlSchemaObjectTable_get_Item, (XmlSchemaObjectTable * __this, XmlQualifiedName * name, MethodInfo * method)); DO_APP_FUNC(0x023DE070, ICollection *, XmlSchemaObjectTable_get_Values, (XmlSchemaObjectTable * __this, MethodInfo * method)); DO_APP_FUNC(0x023DE140, IDictionaryEnumerator *, XmlSchemaObjectTable_GetEnumerator, (XmlSchemaObjectTable * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A76400, void, XmlSchemaObjectTable_XmlSchemaObjectEntry__ctor, (XmlSchemaObjectTable_XmlSchemaObjectEntry__Boxed * __this, XmlQualifiedName * name, XmlSchemaObject * value, MethodInfo * method)); +DO_APP_FUNC(0x00A76400, void, XmlSchemaObjectTable_XmlSchemaObjectEntry__ctor, (XmlSchemaObjectTable_XmlSchemaObjectEntry * __this, XmlQualifiedName * name, XmlSchemaObject * value, MethodInfo * method)); DO_APP_FUNC(0x00A5E870, void, XmlSchemaObjectTable_ValuesCollection__ctor, (XmlSchemaObjectTable_ValuesCollection * __this, List_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry_ * entries, int32_t size, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, XmlSchemaObjectTable_ValuesCollection_get_Count, (XmlSchemaObjectTable_ValuesCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x023DE230, Object *, XmlSchemaObjectTable_ValuesCollection_get_SyncRoot, (XmlSchemaObjectTable_ValuesCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x023DE280, bool, XmlSchemaObjectTable_ValuesCollection_get_IsSynchronized, (XmlSchemaObjectTable_ValuesCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x023DE2D0, void, XmlSchemaObjectTable_ValuesCollection_CopyTo, (XmlSchemaObjectTable_ValuesCollection * __this, Array * array, int32_t arrayIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADCC0, XmlSchemaObjectTable_ValuesCollection_CopyTo__MethodInfo); DO_APP_FUNC(0x023DE440, IEnumerator *, XmlSchemaObjectTable_ValuesCollection_GetEnumerator, (XmlSchemaObjectTable_ValuesCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x023DE500, void, XmlSchemaObjectTable_XSOEnumerator__ctor, (XmlSchemaObjectTable_XSOEnumerator * __this, List_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry_ * entries, int32_t size, XmlSchemaObjectTable_EnumeratorType__Enum enumType, MethodInfo * method)); DO_APP_FUNC(0x023DE570, Object *, XmlSchemaObjectTable_XSOEnumerator_get_Current, (XmlSchemaObjectTable_XSOEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADCA8, XmlSchemaObjectTable_XSOEnumerator_get_Current__MethodInfo); DO_APP_FUNC(0x023DE7A0, bool, XmlSchemaObjectTable_XSOEnumerator_MoveNext, (XmlSchemaObjectTable_XSOEnumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x023DE9F0, void, XmlSchemaObjectTable_XSOEnumerator_Reset, (XmlSchemaObjectTable_XSOEnumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x023DE500, void, XmlSchemaObjectTable_XSODictionaryEnumerator__ctor, (XmlSchemaObjectTable_XSODictionaryEnumerator * __this, List_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry_ * entries, int32_t size, XmlSchemaObjectTable_EnumeratorType__Enum enumType, MethodInfo * method)); DO_APP_FUNC(0x023DEAB0, DictionaryEntry, XmlSchemaObjectTable_XSODictionaryEnumerator_get_Entry, (XmlSchemaObjectTable_XSODictionaryEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADC78, XmlSchemaObjectTable_XSODictionaryEnumerator_get_Entry__MethodInfo); DO_APP_FUNC(0x023DEC60, Object *, XmlSchemaObjectTable_XSODictionaryEnumerator_get_Key, (XmlSchemaObjectTable_XSODictionaryEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADB88, XmlSchemaObjectTable_XSODictionaryEnumerator_get_Key__MethodInfo); DO_APP_FUNC(0x023DEE00, Object *, XmlSchemaObjectTable_XSODictionaryEnumerator_get_Value, (XmlSchemaObjectTable_XSODictionaryEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADB90, XmlSchemaObjectTable_XSODictionaryEnumerator_get_Value__MethodInfo); DO_APP_FUNC(0x023DEFA0, String *, XmlSchemaParticle_get_MinOccursString, (XmlSchemaParticle * __this, MethodInfo * method)); DO_APP_FUNC(0x023DF0E0, void, XmlSchemaParticle_set_MinOccursString, (XmlSchemaParticle * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADB70, XmlSchemaParticle_set_MinOccursString__MethodInfo); DO_APP_FUNC(0x023DF300, String *, XmlSchemaParticle_get_MaxOccursString, (XmlSchemaParticle * __this, MethodInfo * method)); DO_APP_FUNC(0x023DF510, void, XmlSchemaParticle_set_MaxOccursString, (XmlSchemaParticle * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADB68, XmlSchemaParticle_set_MaxOccursString__MethodInfo); DO_APP_FUNC(0x010DA0F0, Decimal, XmlSchemaParticle_get_MinOccurs, (XmlSchemaParticle * __this, MethodInfo * method)); DO_APP_FUNC(0x023DF850, void, XmlSchemaParticle_set_MinOccurs, (XmlSchemaParticle * __this, Decimal value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADBD0, XmlSchemaParticle_set_MinOccurs__MethodInfo); DO_APP_FUNC(0x00AED450, Decimal, XmlSchemaParticle_get_MaxOccurs, (XmlSchemaParticle * __this, MethodInfo * method)); DO_APP_FUNC(0x023DFAD0, void, XmlSchemaParticle_set_MaxOccurs, (XmlSchemaParticle * __this, Decimal value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADBA0, XmlSchemaParticle_set_MaxOccurs__MethodInfo); DO_APP_FUNC(0x023DFDF0, bool, XmlSchemaParticle_get_IsEmpty, (XmlSchemaParticle * __this, MethodInfo * method)); DO_APP_FUNC(0x023DFEB0, String *, XmlSchemaParticle_get_NameString, (XmlSchemaParticle * __this, MethodInfo * method)); DO_APP_FUNC(0x023DFEF0, XmlQualifiedName *, XmlSchemaParticle_GetQualifiedName, (XmlSchemaParticle * __this, MethodInfo * method)); @@ -61285,6 +70802,7 @@ DO_APP_FUNC(0x023E0500, void, XmlSchemaSequence__ctor, (XmlSchemaSequence * __th DO_APP_FUNC(0x023E0600, Object *, XmlSchemaSet_get_InternalSyncObject, (XmlSchemaSet * __this, MethodInfo * method)); DO_APP_FUNC(0x023E06B0, void, XmlSchemaSet__ctor, (XmlSchemaSet * __this, MethodInfo * method)); DO_APP_FUNC(0x023E0720, void, XmlSchemaSet__ctor_1, (XmlSchemaSet * __this, XmlNameTable * nameTable, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADB58, XmlSchemaSet__ctor_1__MethodInfo); DO_APP_FUNC(0x023E0D60, void, XmlSchemaSet_add_ValidationEventHandler, (XmlSchemaSet * __this, ValidationEventHandler * value, MethodInfo * method)); DO_APP_FUNC(0x023E0F80, void, XmlSchemaSet_remove_ValidationEventHandler, (XmlSchemaSet * __this, ValidationEventHandler * value, MethodInfo * method)); DO_APP_FUNC(0x00424C90, bool, XmlSchemaSet_get_IsCompiled, (XmlSchemaSet * __this, MethodInfo * method)); @@ -61299,20 +70817,26 @@ DO_APP_FUNC(0x023E13A0, XmlSchemaObjectTable *, XmlSchemaSet_get_SubstitutionGro DO_APP_FUNC(0x003C7390, Hashtable *, XmlSchemaSet_get_SchemaLocations, (XmlSchemaSet * __this, MethodInfo * method)); DO_APP_FUNC(0x023E1470, XmlSchemaObjectTable *, XmlSchemaSet_get_TypeExtensions, (XmlSchemaSet * __this, MethodInfo * method)); DO_APP_FUNC(0x023E1540, void, XmlSchemaSet_Add, (XmlSchemaSet * __this, XmlSchemaSet * schemas, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADB08, XmlSchemaSet_Add__MethodInfo); DO_APP_FUNC(0x023E1E70, XmlSchema *, XmlSchemaSet_Add_1, (XmlSchemaSet * __this, XmlSchema * schema, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADAF8, XmlSchemaSet_Add_1__MethodInfo); DO_APP_FUNC(0x023E2140, bool, XmlSchemaSet_RemoveRecursive, (XmlSchemaSet * __this, XmlSchema * schemaToRemove, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADAF0, XmlSchemaSet_RemoveRecursive__MethodInfo); DO_APP_FUNC(0x023E2B20, void, XmlSchemaSet_Compile, (XmlSchemaSet * __this, MethodInfo * method)); DO_APP_FUNC(0x023E3750, void, XmlSchemaSet_CopyTo, (XmlSchemaSet * __this, XmlSchema__Array * schemas, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADB28, XmlSchemaSet_CopyTo__MethodInfo); DO_APP_FUNC(0x023E3890, ICollection *, XmlSchemaSet_Schemas, (XmlSchemaSet * __this, String * targetNamespace, MethodInfo * method)); DO_APP_FUNC(0x023E3A90, XmlSchema *, XmlSchemaSet_Add_2, (XmlSchemaSet * __this, String * targetNamespace, XmlSchema * schema, MethodInfo * method)); DO_APP_FUNC(0x023E3AF0, void, XmlSchemaSet_Add_3, (XmlSchemaSet * __this, String * targetNamespace, XmlReader * reader, Hashtable * validatedNamespaces, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADB20, XmlSchemaSet_Add_3__MethodInfo); DO_APP_FUNC(0x023E4090, XmlSchema *, XmlSchemaSet_FindSchemaByNSAndUrl, (XmlSchemaSet * __this, Uri * schemaUri, String * ns, DictionaryEntry__Array * locationsTable, MethodInfo * method)); DO_APP_FUNC(0x023E4410, void, XmlSchemaSet_AddSchemaToSet, (XmlSchemaSet * __this, XmlSchema * schema, MethodInfo * method)); DO_APP_FUNC(0x023E48F0, void, XmlSchemaSet_ProcessNewSubstitutionGroups, (XmlSchemaSet * __this, XmlSchemaObjectTable * substitutionGroupsTable, bool resolve, MethodInfo * method)); DO_APP_FUNC(0x023E4C80, void, XmlSchemaSet_ResolveSubstitutionGroup, (XmlSchemaSet * __this, XmlSchemaSubstitutionGroup * substitutionGroup, XmlSchemaObjectTable * substTable, MethodInfo * method)); DO_APP_FUNC(0x023E50B0, XmlSchema *, XmlSchemaSet_Remove, (XmlSchemaSet * __this, XmlSchema * schema, bool forceCompile, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADAA8, XmlSchemaSet_Remove__MethodInfo); DO_APP_FUNC(0x023E54B0, void, XmlSchemaSet_ClearTables, (XmlSchemaSet * __this, MethodInfo * method)); -DO_APP_FUNC(0x023E5600, bool, XmlSchemaSet_PreprocessSchema, (XmlSchemaSet * __this, XmlSchema * schema, String * targetNamespace, MethodInfo * method)); +DO_APP_FUNC(0x023E5600, bool, XmlSchemaSet_PreprocessSchema, (XmlSchemaSet * __this, XmlSchema * * schema, String * targetNamespace, MethodInfo * method)); DO_APP_FUNC(0x023E58C0, XmlSchema *, XmlSchemaSet_ParseSchema, (XmlSchemaSet * __this, String * targetNamespace, XmlReader * reader, MethodInfo * method)); DO_APP_FUNC(0x023E5A70, void, XmlSchemaSet_CopyFromCompiledSet, (XmlSchemaSet * __this, XmlSchemaSet * otherSet, MethodInfo * method)); DO_APP_FUNC(0x003C91B0, SchemaInfo *, XmlSchemaSet_get_CompiledInfo, (XmlSchemaSet * __this, MethodInfo * method)); @@ -61320,8 +70844,8 @@ DO_APP_FUNC(0x003C91C0, XmlReaderSettings *, XmlSchemaSet_get_ReaderSettings, (X DO_APP_FUNC(0x023E6F30, XmlResolver *, XmlSchemaSet_GetResolver, (XmlSchemaSet * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB330, ValidationEventHandler *, XmlSchemaSet_GetEventHandler, (XmlSchemaSet * __this, MethodInfo * method)); DO_APP_FUNC(0x023E6F50, SchemaNames *, XmlSchemaSet_GetSchemaNames, (XmlSchemaSet * __this, XmlNameTable * nt, MethodInfo * method)); -DO_APP_FUNC(0x023E7060, bool, XmlSchemaSet_IsSchemaLoaded, (XmlSchemaSet * __this, Uri * schemaUri, String * targetNamespace, XmlSchema * schema, MethodInfo * method)); -DO_APP_FUNC(0x023E7DB0, bool, XmlSchemaSet_GetSchemaByUri, (XmlSchemaSet * __this, Uri * schemaUri, XmlSchema * schema, MethodInfo * method)); +DO_APP_FUNC(0x023E7060, bool, XmlSchemaSet_IsSchemaLoaded, (XmlSchemaSet * __this, Uri * schemaUri, String * targetNamespace, XmlSchema * * schema, MethodInfo * method)); +DO_APP_FUNC(0x023E7DB0, bool, XmlSchemaSet_GetSchemaByUri, (XmlSchemaSet * __this, Uri * schemaUri, XmlSchema * * schema, MethodInfo * method)); DO_APP_FUNC(0x023E8000, String *, XmlSchemaSet_GetTargetNamespace, (XmlSchemaSet * __this, XmlSchema * schema, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, SortedList *, XmlSchemaSet_get_SortedSchemas, (XmlSchemaSet * __this, MethodInfo * method)); DO_APP_FUNC(0x023E8060, void, XmlSchemaSet_RemoveSchemaFromCaches, (XmlSchemaSet * __this, XmlSchema * schema, MethodInfo * method)); @@ -61329,7 +70853,9 @@ DO_APP_FUNC(0x023E8530, void, XmlSchemaSet_RemoveSchemaFromGlobalTables, (XmlSch DO_APP_FUNC(0x023E8F30, bool, XmlSchemaSet_AddToTable, (XmlSchemaSet * __this, XmlSchemaObjectTable * table, XmlQualifiedName * qname, XmlSchemaObject * item, MethodInfo * method)); DO_APP_FUNC(0x023E92B0, void, XmlSchemaSet_VerifyTables, (XmlSchemaSet * __this, MethodInfo * method)); DO_APP_FUNC(0x023E9500, void, XmlSchemaSet_InternalValidationCallback, (XmlSchemaSet * __this, Object * sender, ValidationEventArgs * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADB40, XmlSchemaSet_InternalValidationCallback__MethodInfo); DO_APP_FUNC(0x023E9550, void, XmlSchemaSet_SendValidationEvent, (XmlSchemaSet * __this, XmlSchemaException * e, XmlSeverityType__Enum severity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADA90, XmlSchemaSet_SendValidationEvent__MethodInfo); DO_APP_FUNC(0x003C7420, XmlSchemaContent *, XmlSchemaSimpleContent_get_Content, (XmlSchemaSimpleContent * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7430, void, XmlSchemaSimpleContent_set_Content, (XmlSchemaSimpleContent * __this, XmlSchemaContent * value, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, XmlSchemaSimpleContent__ctor, (XmlSchemaSimpleContent * __this, MethodInfo * method)); @@ -61385,6 +70911,7 @@ DO_APP_FUNC(0x003CD530, XmlSchemaChoice *, XmlSchemaSubstitutionGroupV1Compat_ge DO_APP_FUNC(0x023EA7D0, void, XmlSchemaSubstitutionGroupV1Compat__ctor, (XmlSchemaSubstitutionGroupV1Compat * __this, MethodInfo * method)); DO_APP_FUNC(0x023EA880, XmlSchemaSimpleType *, XmlSchemaType_GetBuiltInSimpleType, (XmlTypeCode__Enum typeCode, MethodInfo * method)); DO_APP_FUNC(0x023EA8D0, XmlSchemaComplexType *, XmlSchemaType_GetBuiltInComplexType, (XmlQualifiedName * qualifiedName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADA40, XmlSchemaType_GetBuiltInComplexType__MethodInfo); DO_APP_FUNC(0x003C7420, String *, XmlSchemaType_get_Name, (XmlSchemaType * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7430, void, XmlSchemaType_set_Name, (XmlSchemaType * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x007209F0, XmlSchemaDerivationMethod__Enum, XmlSchemaType_get_Final, (XmlSchemaType * __this, MethodInfo * method)); @@ -61424,6 +70951,7 @@ DO_APP_FUNC(0x00B6BD90, void, XmlValueGetter__ctor, (XmlValueGetter * __this, Ob DO_APP_FUNC(0x00B6BEC0, Object *, XmlValueGetter_Invoke, (XmlValueGetter * __this, MethodInfo * method)); DO_APP_FUNC(0x023EB110, void, IdRefNode__ctor, (IdRefNode * __this, IdRefNode * next, String * id, int32_t lineNo, int32_t linePos, MethodInfo * method)); DO_APP_FUNC(0x023EB1E0, void, XmlSchemaValidator__ctor, (XmlSchemaValidator * __this, XmlNameTable * nameTable, XmlSchemaSet * schemas, IXmlNamespaceResolver * namespaceResolver, XmlSchemaValidationFlags__Enum validationFlags, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD9E8, XmlSchemaValidator__ctor__MethodInfo); DO_APP_FUNC(0x023EB560, void, XmlSchemaValidator_Init, (XmlSchemaValidator * __this, MethodInfo * method)); DO_APP_FUNC(0x023EBEB0, void, XmlSchemaValidator_Reset, (XmlSchemaValidator * __this, MethodInfo * method)); DO_APP_FUNC(0x006068F0, void, XmlSchemaValidator_set_XmlResolver, (XmlSchemaValidator * __this, XmlResolver * value, MethodInfo * method)); @@ -61433,19 +70961,29 @@ DO_APP_FUNC(0x00A3BD50, void, XmlSchemaValidator_set_ValidationEventSender, (Xml DO_APP_FUNC(0x023EC190, void, XmlSchemaValidator_add_ValidationEventHandler, (XmlSchemaValidator * __this, ValidationEventHandler * value, MethodInfo * method)); DO_APP_FUNC(0x023EC290, void, XmlSchemaValidator_remove_ValidationEventHandler, (XmlSchemaValidator * __this, ValidationEventHandler * value, MethodInfo * method)); DO_APP_FUNC(0x023EC390, void, XmlSchemaValidator_AddSchema, (XmlSchemaValidator * __this, XmlSchema * schema, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADA30, XmlSchemaValidator_AddSchema__MethodInfo); DO_APP_FUNC(0x023EC830, void, XmlSchemaValidator_Initialize, (XmlSchemaValidator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADA28, XmlSchemaValidator_Initialize__MethodInfo); DO_APP_FUNC(0x023EC9B0, void, XmlSchemaValidator_Initialize_1, (XmlSchemaValidator * __this, XmlSchemaObject * partialValidationType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADA08, XmlSchemaValidator_Initialize_1__MethodInfo); DO_APP_FUNC(0x023ECD00, void, XmlSchemaValidator_ValidateElement, (XmlSchemaValidator * __this, String * localName, String * namespaceUri, XmlSchemaInfo * schemaInfo, String * xsiType, String * xsiNil, String * xsiSchemaLocation, String * xsiNoNamespaceSchemaLocation, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD9F0, XmlSchemaValidator_ValidateElement__MethodInfo); DO_APP_FUNC(0x023ED2D0, Object *, XmlSchemaValidator_ValidateAttribute, (XmlSchemaValidator * __this, String * localName, String * namespaceUri, XmlValueGetter * attributeValue, XmlSchemaInfo * schemaInfo, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD978, XmlSchemaValidator_ValidateAttribute__MethodInfo); DO_APP_FUNC(0x023ED360, Object *, XmlSchemaValidator_ValidateAttribute_1, (XmlSchemaValidator * __this, String * lName, String * ns, XmlValueGetter * attributeValueGetter, String * attributeStringValue, XmlSchemaInfo * schemaInfo, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD950, XmlSchemaValidator_ValidateAttribute_1__MethodInfo); DO_APP_FUNC(0x023EDE20, void, XmlSchemaValidator_ValidateEndOfAttributes, (XmlSchemaValidator * __this, XmlSchemaInfo * schemaInfo, MethodInfo * method)); DO_APP_FUNC(0x023EDEF0, void, XmlSchemaValidator_ValidateText, (XmlSchemaValidator * __this, XmlValueGetter * elementValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD938, XmlSchemaValidator_ValidateText__MethodInfo); DO_APP_FUNC(0x023EDF70, void, XmlSchemaValidator_ValidateText_1, (XmlSchemaValidator * __this, String * elementStringValue, XmlValueGetter * elementValueGetter, MethodInfo * method)); DO_APP_FUNC(0x023EE440, void, XmlSchemaValidator_ValidateWhitespace, (XmlSchemaValidator * __this, XmlValueGetter * elementValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD9B0, XmlSchemaValidator_ValidateWhitespace__MethodInfo); DO_APP_FUNC(0x023EE4C0, void, XmlSchemaValidator_ValidateWhitespace_1, (XmlSchemaValidator * __this, String * elementStringValue, XmlValueGetter * elementValueGetter, MethodInfo * method)); DO_APP_FUNC(0x023EE750, Object *, XmlSchemaValidator_ValidateEndElement, (XmlSchemaValidator * __this, XmlSchemaInfo * schemaInfo, MethodInfo * method)); DO_APP_FUNC(0x023EE760, void, XmlSchemaValidator_SkipToEndElement, (XmlSchemaValidator * __this, XmlSchemaInfo * schemaInfo, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD988, XmlSchemaValidator_SkipToEndElement__MethodInfo); DO_APP_FUNC(0x023EE9F0, void, XmlSchemaValidator_EndValidation, (XmlSchemaValidator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD8E8, XmlSchemaValidator_EndValidation__MethodInfo); DO_APP_FUNC(0x023EEC80, void, XmlSchemaValidator_GetUnspecifiedDefaultAttributes, (XmlSchemaValidator * __this, ArrayList * defaultAttributes, bool createNodeData, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, XmlSchemaSet *, XmlSchemaValidator_get_SchemaSet, (XmlSchemaValidator * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, XmlSchemaValidationFlags__Enum, XmlSchemaValidator_get_ValidationFlags, (XmlSchemaValidator * __this, MethodInfo * method)); @@ -61455,17 +70993,18 @@ DO_APP_FUNC(0x023EF4B0, bool, XmlSchemaValidator_get_StrictlyAssessed, (XmlSchem DO_APP_FUNC(0x023EF4F0, bool, XmlSchemaValidator_get_HasSchema, (XmlSchemaValidator * __this, MethodInfo * method)); DO_APP_FUNC(0x023EF540, String *, XmlSchemaValidator_GetConcatenatedValue, (XmlSchemaValidator * __this, MethodInfo * method)); DO_APP_FUNC(0x023EF570, Object *, XmlSchemaValidator_InternalValidateEndElement, (XmlSchemaValidator * __this, XmlSchemaInfo * schemaInfo, Object * typedValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD8C8, XmlSchemaValidator_InternalValidateEndElement__MethodInfo); DO_APP_FUNC(0x023EFC20, void, XmlSchemaValidator_ProcessSchemaLocations, (XmlSchemaValidator * __this, String * xsiSchemaLocation, String * xsiNoNamespaceSchemaLocation, MethodInfo * method)); -DO_APP_FUNC(0x023F0020, Object *, XmlSchemaValidator_ValidateElementContext, (XmlSchemaValidator * __this, XmlQualifiedName * elementName, bool invalidElementInContext, MethodInfo * method)); +DO_APP_FUNC(0x023F0020, Object *, XmlSchemaValidator_ValidateElementContext, (XmlSchemaValidator * __this, XmlQualifiedName * elementName, bool * invalidElementInContext, MethodInfo * method)); DO_APP_FUNC(0x023F0600, XmlSchemaElement *, XmlSchemaValidator_GetSubstitutionGroupHead, (XmlSchemaValidator * __this, XmlQualifiedName * member, MethodInfo * method)); -DO_APP_FUNC(0x023F0920, Object *, XmlSchemaValidator_ValidateAtomicValue, (XmlSchemaValidator * __this, String * stringValue, XmlSchemaSimpleType * memberType, MethodInfo * method)); -DO_APP_FUNC(0x023F0D30, Object *, XmlSchemaValidator_ValidateAtomicValue_1, (XmlSchemaValidator * __this, Object * parsedValue, XmlSchemaSimpleType * memberType, MethodInfo * method)); +DO_APP_FUNC(0x023F0920, Object *, XmlSchemaValidator_ValidateAtomicValue, (XmlSchemaValidator * __this, String * stringValue, XmlSchemaSimpleType * * memberType, MethodInfo * method)); +DO_APP_FUNC(0x023F0D30, Object *, XmlSchemaValidator_ValidateAtomicValue_1, (XmlSchemaValidator * __this, Object * parsedValue, XmlSchemaSimpleType * * memberType, MethodInfo * method)); DO_APP_FUNC(0x023F1280, String *, XmlSchemaValidator_GetTypeName, (XmlSchemaValidator * __this, SchemaDeclBase * decl, MethodInfo * method)); DO_APP_FUNC(0x023F12F0, void, XmlSchemaValidator_SaveTextValue, (XmlSchemaValidator * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x023F1340, void, XmlSchemaValidator_Push, (XmlSchemaValidator * __this, XmlQualifiedName * elementName, MethodInfo * method)); DO_APP_FUNC(0x023F1760, void, XmlSchemaValidator_Pop, (XmlSchemaValidator * __this, MethodInfo * method)); DO_APP_FUNC(0x023F1960, SchemaElementDecl *, XmlSchemaValidator_FastGetElementDecl, (XmlSchemaValidator * __this, XmlQualifiedName * elementName, Object * particle, MethodInfo * method)); -DO_APP_FUNC(0x023F1CC0, SchemaElementDecl *, XmlSchemaValidator_CheckXsiTypeAndNil, (XmlSchemaValidator * __this, SchemaElementDecl * elementDecl, String * xsiType, String * xsiNil, bool declFound, MethodInfo * method)); +DO_APP_FUNC(0x023F1CC0, SchemaElementDecl *, XmlSchemaValidator_CheckXsiTypeAndNil, (XmlSchemaValidator * __this, SchemaElementDecl * elementDecl, String * xsiType, String * xsiNil, bool * declFound, MethodInfo * method)); DO_APP_FUNC(0x023F2670, void, XmlSchemaValidator_ThrowDeclNotFoundWarningOrError, (XmlSchemaValidator * __this, bool declFound, MethodInfo * method)); DO_APP_FUNC(0x023F28D0, void, XmlSchemaValidator_CheckElementProperties, (XmlSchemaValidator * __this, MethodInfo * method)); DO_APP_FUNC(0x023F29D0, void, XmlSchemaValidator_ValidateStartElementIdentityConstraints, (XmlSchemaValidator * __this, MethodInfo * method)); @@ -61485,6 +71024,7 @@ DO_APP_FUNC(0x023F4100, bool, XmlSchemaValidator_get_ProcessIdentityConstraints, DO_APP_FUNC(0x023F4110, bool, XmlSchemaValidator_get_ReportValidationWarnings, (XmlSchemaValidator * __this, MethodInfo * method)); DO_APP_FUNC(0x023F4120, bool, XmlSchemaValidator_get_ProcessSchemaHints, (XmlSchemaValidator * __this, MethodInfo * method)); DO_APP_FUNC(0x023F4140, void, XmlSchemaValidator_CheckStateTransition, (XmlSchemaValidator * __this, ValidatorState__Enum toState, String * methodName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD820, XmlSchemaValidator_CheckStateTransition__MethodInfo); DO_APP_FUNC(0x023F4410, void, XmlSchemaValidator_ClearPSVI, (XmlSchemaValidator * __this, MethodInfo * method)); DO_APP_FUNC(0x023F44B0, void, XmlSchemaValidator_CheckRequiredAttributes, (XmlSchemaValidator * __this, SchemaElementDecl * currentElementDecl, MethodInfo * method)); DO_APP_FUNC(0x023F4780, XmlSchemaElement *, XmlSchemaValidator_GetSchemaElement, (XmlSchemaValidator * __this, MethodInfo * method)); @@ -61513,7 +71053,9 @@ DO_APP_FUNC(0x023F9270, void, XmlSchemaValidator_SendValidationEvent_6, (XmlSche DO_APP_FUNC(0x023F9280, void, XmlSchemaValidator_SendValidationEvent_7, (XmlSchemaValidator * __this, XmlSchemaException * e, MethodInfo * method)); DO_APP_FUNC(0x023F9380, void, XmlSchemaValidator_SendValidationEvent_8, (XmlSchemaValidator * __this, String * code, String * msg, XmlSeverityType__Enum severity, MethodInfo * method)); DO_APP_FUNC(0x023F94B0, void, XmlSchemaValidator_SendValidationEvent_9, (XmlSchemaValidator * __this, XmlSchemaValidationException * e, XmlSeverityType__Enum severity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD5E0, XmlSchemaValidator_SendValidationEvent_9__MethodInfo); DO_APP_FUNC(0x023F9600, void, XmlSchemaValidator_SendValidationEvent_10, (ValidationEventHandler * eventHandler, Object * sender, XmlSchemaValidationException * e, XmlSeverityType__Enum severity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD5C0, XmlSchemaValidator_SendValidationEvent_10__MethodInfo); DO_APP_FUNC(0x023F96D0, void, XmlSchemaValidator__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, XmlValueConverter__ctor, (XmlValueConverter * __this, MethodInfo * method)); DO_APP_FUNC(0x023F9F50, void, XmlBaseConverter__ctor, (XmlBaseConverter * __this, XmlSchemaType * schemaType, MethodInfo * method)); @@ -61585,6 +71127,7 @@ DO_APP_FUNC(0x023FD5E0, bool, XmlBaseConverter_IsDerivedFrom, (Type * derivedTyp DO_APP_FUNC(0x023FD690, Exception *, XmlBaseConverter_CreateInvalidClrMappingException, (XmlBaseConverter * __this, Type * sourceType, Type * destinationType, MethodInfo * method)); DO_APP_FUNC(0x023FD980, String *, XmlBaseConverter_QNameToString, (XmlQualifiedName * name, MethodInfo * method)); DO_APP_FUNC(0x023FDB10, Object *, XmlBaseConverter_ChangeListType, (XmlBaseConverter * __this, Object * value, Type * destinationType, IXmlNamespaceResolver * nsResolver, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD590, XmlBaseConverter_ChangeListType__MethodInfo); DO_APP_FUNC(0x023FDB70, Byte__Array *, XmlBaseConverter_StringToBase64Binary, (String * value, MethodInfo * method)); DO_APP_FUNC(0x023FDCA0, DateTime, XmlBaseConverter_StringToDate, (String * value, MethodInfo * method)); DO_APP_FUNC(0x023FDD20, DateTime, XmlBaseConverter_StringToDateTime, (String * value, MethodInfo * method)); @@ -61603,7 +71146,9 @@ DO_APP_FUNC(0x023FE4A0, DateTimeOffset, XmlBaseConverter_StringToGMonthDayOffset DO_APP_FUNC(0x023FE540, DateTimeOffset, XmlBaseConverter_StringToGYearOffset, (String * value, MethodInfo * method)); DO_APP_FUNC(0x023FE5E0, DateTimeOffset, XmlBaseConverter_StringToGYearMonthOffset, (String * value, MethodInfo * method)); DO_APP_FUNC(0x023FE680, Byte__Array *, XmlBaseConverter_StringToHexBinary, (String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD578, XmlBaseConverter_StringToHexBinary__MethodInfo); DO_APP_FUNC(0x023FE7C0, XmlQualifiedName *, XmlBaseConverter_StringToQName, (String * value, IXmlNamespaceResolver * nsResolver, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD568, XmlBaseConverter_StringToQName__MethodInfo); DO_APP_FUNC(0x023FEAD0, DateTime, XmlBaseConverter_StringToTime, (String * value, MethodInfo * method)); DO_APP_FUNC(0x023FEB50, DateTimeOffset, XmlBaseConverter_StringToTimeOffset, (String * value, MethodInfo * method)); DO_APP_FUNC(0x023FEBF0, TimeSpan, XmlBaseConverter_StringToYearMonthDuration, (String * value, MethodInfo * method)); @@ -61626,109 +71171,175 @@ DO_APP_FUNC(0x023FF500, String *, XmlBaseConverter_GMonthDayOffsetToString, (Dat DO_APP_FUNC(0x023FF590, String *, XmlBaseConverter_GYearOffsetToString, (DateTimeOffset value, MethodInfo * method)); DO_APP_FUNC(0x023FF620, String *, XmlBaseConverter_GYearMonthOffsetToString, (DateTimeOffset value, MethodInfo * method)); DO_APP_FUNC(0x023FF6B0, String *, XmlBaseConverter_QNameToString_1, (XmlQualifiedName * qname, IXmlNamespaceResolver * nsResolver, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD560, XmlBaseConverter_QNameToString_1__MethodInfo); DO_APP_FUNC(0x023FF8A0, String *, XmlBaseConverter_TimeToString, (DateTime value, MethodInfo * method)); DO_APP_FUNC(0x023FF920, String *, XmlBaseConverter_TimeOffsetToString, (DateTimeOffset value, MethodInfo * method)); DO_APP_FUNC(0x023FF9B0, String *, XmlBaseConverter_YearMonthDurationToString, (TimeSpan value, MethodInfo * method)); DO_APP_FUNC(0x023FFA10, DateTime, XmlBaseConverter_DateTimeOffsetToDateTime, (DateTimeOffset value, MethodInfo * method)); DO_APP_FUNC(0x023FFA60, int32_t, XmlBaseConverter_DecimalToInt32, (Decimal value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD550, XmlBaseConverter_DecimalToInt32__MethodInfo); DO_APP_FUNC(0x023FFD20, int64_t, XmlBaseConverter_DecimalToInt64, (Decimal value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD518, XmlBaseConverter_DecimalToInt64__MethodInfo); DO_APP_FUNC(0x023FFFF0, uint64_t, XmlBaseConverter_DecimalToUInt64, (Decimal value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD510, XmlBaseConverter_DecimalToUInt64__MethodInfo); DO_APP_FUNC(0x024002B0, uint8_t, XmlBaseConverter_Int32ToByte, (int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD4F0, XmlBaseConverter_Int32ToByte__MethodInfo); DO_APP_FUNC(0x024003D0, int16_t, XmlBaseConverter_Int32ToInt16, (int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD4F8, XmlBaseConverter_Int32ToInt16__MethodInfo); DO_APP_FUNC(0x024004F0, int8_t, XmlBaseConverter_Int32ToSByte, (int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD500, XmlBaseConverter_Int32ToSByte__MethodInfo); DO_APP_FUNC(0x02400610, uint16_t, XmlBaseConverter_Int32ToUInt16, (int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD508, XmlBaseConverter_Int32ToUInt16__MethodInfo); DO_APP_FUNC(0x02400730, int32_t, XmlBaseConverter_Int64ToInt32, (int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD4E0, XmlBaseConverter_Int64ToInt32__MethodInfo); DO_APP_FUNC(0x02400860, uint32_t, XmlBaseConverter_Int64ToUInt32, (int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD4E8, XmlBaseConverter_Int64ToUInt32__MethodInfo); DO_APP_FUNC(0x02400980, DateTime, XmlBaseConverter_UntypedAtomicToDateTime, (String * value, MethodInfo * method)); DO_APP_FUNC(0x02400A00, DateTimeOffset, XmlBaseConverter_UntypedAtomicToDateTimeOffset, (String * value, MethodInfo * method)); DO_APP_FUNC(0x02400AA0, void, XmlBaseConverter__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02401BC0, void, XmlNumeric10Converter__ctor, (XmlNumeric10Converter * __this, XmlSchemaType * schemaType, MethodInfo * method)); DO_APP_FUNC(0x02401C20, XmlValueConverter *, XmlNumeric10Converter_Create, (XmlSchemaType * schemaType, MethodInfo * method)); DO_APP_FUNC(0x02401CC0, Decimal, XmlNumeric10Converter_ToDecimal, (XmlNumeric10Converter * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF5A8, XmlNumeric10Converter_ToDecimal__MethodInfo); DO_APP_FUNC(0x02401E40, Decimal, XmlNumeric10Converter_ToDecimal_1, (XmlNumeric10Converter * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF5A0, XmlNumeric10Converter_ToDecimal_1__MethodInfo); DO_APP_FUNC(0x02402340, int32_t, XmlNumeric10Converter_ToInt32, (XmlNumeric10Converter * __this, int64_t value, MethodInfo * method)); DO_APP_FUNC(0x02402390, int32_t, XmlNumeric10Converter_ToInt32_1, (XmlNumeric10Converter * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF570, XmlNumeric10Converter_ToInt32_1__MethodInfo); DO_APP_FUNC(0x02402520, int32_t, XmlNumeric10Converter_ToInt32_2, (XmlNumeric10Converter * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF568, XmlNumeric10Converter_ToInt32_2__MethodInfo); DO_APP_FUNC(0x02402960, int64_t, XmlNumeric10Converter_ToInt64, (XmlNumeric10Converter * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x02402970, int64_t, XmlNumeric10Converter_ToInt64_1, (XmlNumeric10Converter * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF560, XmlNumeric10Converter_ToInt64_1__MethodInfo); DO_APP_FUNC(0x02402B00, int64_t, XmlNumeric10Converter_ToInt64_2, (XmlNumeric10Converter * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF558, XmlNumeric10Converter_ToInt64_2__MethodInfo); DO_APP_FUNC(0x02402F20, String *, XmlNumeric10Converter_ToString, (XmlNumeric10Converter * __this, Decimal value, MethodInfo * method)); DO_APP_FUNC(0x02403230, String *, XmlNumeric10Converter_ToString_1, (XmlNumeric10Converter * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x02403280, String *, XmlNumeric10Converter_ToString_2, (XmlNumeric10Converter * __this, int64_t value, MethodInfo * method)); DO_APP_FUNC(0x024032D0, String *, XmlNumeric10Converter_ToString_3, (XmlNumeric10Converter * __this, Object * value, IXmlNamespaceResolver * nsResolver, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF590, XmlNumeric10Converter_ToString_3__MethodInfo); DO_APP_FUNC(0x02403720, Object *, XmlNumeric10Converter_ChangeType, (XmlNumeric10Converter * __this, Decimal value, Type * destinationType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF588, XmlNumeric10Converter_ChangeType__MethodInfo); DO_APP_FUNC(0x02403BA0, Object *, XmlNumeric10Converter_ChangeType_1, (XmlNumeric10Converter * __this, int32_t value, Type * destinationType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF578, XmlNumeric10Converter_ChangeType_1__MethodInfo); DO_APP_FUNC(0x02404160, Object *, XmlNumeric10Converter_ChangeType_2, (XmlNumeric10Converter * __this, int64_t value, Type * destinationType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF528, XmlNumeric10Converter_ChangeType_2__MethodInfo); DO_APP_FUNC(0x02404740, Object *, XmlNumeric10Converter_ChangeType_3, (XmlNumeric10Converter * __this, String * value, Type * destinationType, IXmlNamespaceResolver * nsResolver, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF530, XmlNumeric10Converter_ChangeType_3__MethodInfo); DO_APP_FUNC(0x02404B90, Object *, XmlNumeric10Converter_ChangeType_4, (XmlNumeric10Converter * __this, Object * value, Type * destinationType, IXmlNamespaceResolver * nsResolver, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF520, XmlNumeric10Converter_ChangeType_4__MethodInfo); DO_APP_FUNC(0x02405FA0, Object *, XmlNumeric10Converter_ChangeTypeWildcardDestination, (XmlNumeric10Converter * __this, Object * value, Type * destinationType, IXmlNamespaceResolver * nsResolver, MethodInfo * method)); DO_APP_FUNC(0x024063F0, Object *, XmlNumeric10Converter_ChangeTypeWildcardSource, (XmlNumeric10Converter * __this, Object * value, Type * destinationType, IXmlNamespaceResolver * nsResolver, MethodInfo * method)); DO_APP_FUNC(0x02406890, void, XmlNumeric2Converter__ctor, (XmlNumeric2Converter * __this, XmlSchemaType * schemaType, MethodInfo * method)); DO_APP_FUNC(0x024068F0, XmlValueConverter *, XmlNumeric2Converter_Create, (XmlSchemaType * schemaType, MethodInfo * method)); DO_APP_FUNC(0x02406990, double, XmlNumeric2Converter_ToDouble, (XmlNumeric2Converter * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF550, XmlNumeric2Converter_ToDouble__MethodInfo); DO_APP_FUNC(0x02406A70, double, XmlNumeric2Converter_ToDouble_1, (XmlNumeric2Converter * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF548, XmlNumeric2Converter_ToDouble_1__MethodInfo); DO_APP_FUNC(0x02406E00, float, XmlNumeric2Converter_ToSingle, (XmlNumeric2Converter * __this, double value, MethodInfo * method)); DO_APP_FUNC(0x02406E10, float, XmlNumeric2Converter_ToSingle_1, (XmlNumeric2Converter * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF540, XmlNumeric2Converter_ToSingle_1__MethodInfo); DO_APP_FUNC(0x02406EF0, float, XmlNumeric2Converter_ToSingle_2, (XmlNumeric2Converter * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF538, XmlNumeric2Converter_ToSingle_2__MethodInfo); DO_APP_FUNC(0x024072D0, String *, XmlNumeric2Converter_ToString, (XmlNumeric2Converter * __this, double value, MethodInfo * method)); DO_APP_FUNC(0x02407380, String *, XmlNumeric2Converter_ToString_1, (XmlNumeric2Converter * __this, float value, MethodInfo * method)); DO_APP_FUNC(0x02407410, String *, XmlNumeric2Converter_ToString_2, (XmlNumeric2Converter * __this, Object * value, IXmlNamespaceResolver * nsResolver, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF4E8, XmlNumeric2Converter_ToString_2__MethodInfo); DO_APP_FUNC(0x024077A0, Object *, XmlNumeric2Converter_ChangeType, (XmlNumeric2Converter * __this, double value, Type * destinationType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF4F0, XmlNumeric2Converter_ChangeType__MethodInfo); DO_APP_FUNC(0x02407B10, Object *, XmlNumeric2Converter_ChangeType_1, (XmlNumeric2Converter * __this, String * value, Type * destinationType, IXmlNamespaceResolver * nsResolver, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF4E0, XmlNumeric2Converter_ChangeType_1__MethodInfo); DO_APP_FUNC(0x02407EE0, Object *, XmlNumeric2Converter_ChangeType_2, (XmlNumeric2Converter * __this, Object * value, Type * destinationType, IXmlNamespaceResolver * nsResolver, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF4D8, XmlNumeric2Converter_ChangeType_2__MethodInfo); DO_APP_FUNC(0x024086C0, void, XmlDateTimeConverter__ctor, (XmlDateTimeConverter * __this, XmlSchemaType * schemaType, MethodInfo * method)); DO_APP_FUNC(0x02408720, XmlValueConverter *, XmlDateTimeConverter_Create, (XmlSchemaType * schemaType, MethodInfo * method)); DO_APP_FUNC(0x024087C0, DateTime, XmlDateTimeConverter_ToDateTime, (XmlDateTimeConverter * __this, DateTimeOffset value, MethodInfo * method)); DO_APP_FUNC(0x02408850, DateTime, XmlDateTimeConverter_ToDateTime_1, (XmlDateTimeConverter * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF508, XmlDateTimeConverter_ToDateTime_1__MethodInfo); DO_APP_FUNC(0x02408B80, DateTime, XmlDateTimeConverter_ToDateTime_2, (XmlDateTimeConverter * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF500, XmlDateTimeConverter_ToDateTime_2__MethodInfo); DO_APP_FUNC(0x02408F20, DateTimeOffset, XmlDateTimeConverter_ToDateTimeOffset, (XmlDateTimeConverter * __this, DateTime value, MethodInfo * method)); DO_APP_FUNC(0x02408F50, DateTimeOffset, XmlDateTimeConverter_ToDateTimeOffset_1, (XmlDateTimeConverter * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF4F8, XmlDateTimeConverter_ToDateTimeOffset_1__MethodInfo); DO_APP_FUNC(0x02409290, DateTimeOffset, XmlDateTimeConverter_ToDateTimeOffset_2, (XmlDateTimeConverter * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF4B0, XmlDateTimeConverter_ToDateTimeOffset_2__MethodInfo); DO_APP_FUNC(0x02409690, String *, XmlDateTimeConverter_ToString, (XmlDateTimeConverter * __this, DateTime value, MethodInfo * method)); DO_APP_FUNC(0x02409950, String *, XmlDateTimeConverter_ToString_1, (XmlDateTimeConverter * __this, DateTimeOffset value, MethodInfo * method)); DO_APP_FUNC(0x02409C20, String *, XmlDateTimeConverter_ToString_2, (XmlDateTimeConverter * __this, Object * value, IXmlNamespaceResolver * nsResolver, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF4A8, XmlDateTimeConverter_ToString_2__MethodInfo); DO_APP_FUNC(0x02409FB0, Object *, XmlDateTimeConverter_ChangeType, (XmlDateTimeConverter * __this, DateTime value, Type * destinationType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF4A0, XmlDateTimeConverter_ChangeType__MethodInfo); DO_APP_FUNC(0x0240A4D0, Object *, XmlDateTimeConverter_ChangeType_1, (XmlDateTimeConverter * __this, String * value, Type * destinationType, IXmlNamespaceResolver * nsResolver, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF498, XmlDateTimeConverter_ChangeType_1__MethodInfo); DO_APP_FUNC(0x0240A8A0, Object *, XmlDateTimeConverter_ChangeType_2, (XmlDateTimeConverter * __this, Object * value, Type * destinationType, IXmlNamespaceResolver * nsResolver, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF4D0, XmlDateTimeConverter_ChangeType_2__MethodInfo); DO_APP_FUNC(0x0240B260, void, XmlBooleanConverter__ctor, (XmlBooleanConverter * __this, XmlSchemaType * schemaType, MethodInfo * method)); DO_APP_FUNC(0x0240B2C0, XmlValueConverter *, XmlBooleanConverter_Create, (XmlSchemaType * schemaType, MethodInfo * method)); DO_APP_FUNC(0x0240B360, bool, XmlBooleanConverter_ToBoolean, (XmlBooleanConverter * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF4B8, XmlBooleanConverter_ToBoolean__MethodInfo); DO_APP_FUNC(0x0240B410, bool, XmlBooleanConverter_ToBoolean_1, (XmlBooleanConverter * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF4C0, XmlBooleanConverter_ToBoolean_1__MethodInfo); DO_APP_FUNC(0x0240B730, String *, XmlBooleanConverter_ToString, (XmlBooleanConverter * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x0240B7C0, String *, XmlBooleanConverter_ToString_1, (XmlBooleanConverter * __this, Object * value, IXmlNamespaceResolver * nsResolver, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF468, XmlBooleanConverter_ToString_1__MethodInfo); DO_APP_FUNC(0x0240BB10, Object *, XmlBooleanConverter_ChangeType, (XmlBooleanConverter * __this, bool value, Type * destinationType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF470, XmlBooleanConverter_ChangeType__MethodInfo); DO_APP_FUNC(0x0240BFB0, Object *, XmlBooleanConverter_ChangeType_1, (XmlBooleanConverter * __this, String * value, Type * destinationType, IXmlNamespaceResolver * nsResolver, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF460, XmlBooleanConverter_ChangeType_1__MethodInfo); DO_APP_FUNC(0x0240C300, Object *, XmlBooleanConverter_ChangeType_2, (XmlBooleanConverter * __this, Object * value, Type * destinationType, IXmlNamespaceResolver * nsResolver, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF458, XmlBooleanConverter_ChangeType_2__MethodInfo); DO_APP_FUNC(0x0240CB10, void, XmlMiscConverter__ctor, (XmlMiscConverter * __this, XmlSchemaType * schemaType, MethodInfo * method)); DO_APP_FUNC(0x0240CB70, XmlValueConverter *, XmlMiscConverter_Create, (XmlSchemaType * schemaType, MethodInfo * method)); DO_APP_FUNC(0x0240CC10, String *, XmlMiscConverter_ToString, (XmlMiscConverter * __this, Object * value, IXmlNamespaceResolver * nsResolver, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF490, XmlMiscConverter_ToString__MethodInfo); DO_APP_FUNC(0x0240D4B0, Object *, XmlMiscConverter_ChangeType, (XmlMiscConverter * __this, String * value, Type * destinationType, IXmlNamespaceResolver * nsResolver, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF488, XmlMiscConverter_ChangeType__MethodInfo); DO_APP_FUNC(0x0240DAC0, Object *, XmlMiscConverter_ChangeType_1, (XmlMiscConverter * __this, Object * value, Type * destinationType, IXmlNamespaceResolver * nsResolver, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF480, XmlMiscConverter_ChangeType_1__MethodInfo); DO_APP_FUNC(0x0240EC00, Object *, XmlMiscConverter_ChangeTypeWildcardDestination, (XmlMiscConverter * __this, Object * value, Type * destinationType, IXmlNamespaceResolver * nsResolver, MethodInfo * method)); DO_APP_FUNC(0x0240ED60, Object *, XmlMiscConverter_ChangeTypeWildcardSource, (XmlMiscConverter * __this, Object * value, Type * destinationType, IXmlNamespaceResolver * nsResolver, MethodInfo * method)); DO_APP_FUNC(0x0240EEE0, void, XmlStringConverter__ctor, (XmlStringConverter * __this, XmlSchemaType * schemaType, MethodInfo * method)); DO_APP_FUNC(0x0240EF40, XmlValueConverter *, XmlStringConverter_Create, (XmlSchemaType * schemaType, MethodInfo * method)); DO_APP_FUNC(0x0240EFE0, String *, XmlStringConverter_ToString, (XmlStringConverter * __this, Object * value, IXmlNamespaceResolver * nsResolver, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF418, XmlStringConverter_ToString__MethodInfo); DO_APP_FUNC(0x0240F230, Object *, XmlStringConverter_ChangeType, (XmlStringConverter * __this, String * value, Type * destinationType, IXmlNamespaceResolver * nsResolver, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF410, XmlStringConverter_ChangeType__MethodInfo); DO_APP_FUNC(0x0240F4F0, Object *, XmlStringConverter_ChangeType_1, (XmlStringConverter * __this, Object * value, Type * destinationType, IXmlNamespaceResolver * nsResolver, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF408, XmlStringConverter_ChangeType_1__MethodInfo); DO_APP_FUNC(0x0240F9B0, void, XmlUntypedConverter__ctor, (XmlUntypedConverter * __this, MethodInfo * method)); DO_APP_FUNC(0x0240FA90, void, XmlUntypedConverter__ctor_1, (XmlUntypedConverter * __this, XmlUntypedConverter * atomicConverter, bool allowListToList, MethodInfo * method)); DO_APP_FUNC(0x0240FC80, bool, XmlUntypedConverter_ToBoolean, (XmlUntypedConverter * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF448, XmlUntypedConverter_ToBoolean__MethodInfo); DO_APP_FUNC(0x0240FD30, bool, XmlUntypedConverter_ToBoolean_1, (XmlUntypedConverter * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF440, XmlUntypedConverter_ToBoolean_1__MethodInfo); DO_APP_FUNC(0x0240FF30, DateTime, XmlUntypedConverter_ToDateTime, (XmlUntypedConverter * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF438, XmlUntypedConverter_ToDateTime__MethodInfo); DO_APP_FUNC(0x0240FFE0, DateTime, XmlUntypedConverter_ToDateTime_1, (XmlUntypedConverter * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF428, XmlUntypedConverter_ToDateTime_1__MethodInfo); DO_APP_FUNC(0x024101D0, DateTimeOffset, XmlUntypedConverter_ToDateTimeOffset, (XmlUntypedConverter * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF430, XmlUntypedConverter_ToDateTimeOffset__MethodInfo); DO_APP_FUNC(0x02410300, DateTimeOffset, XmlUntypedConverter_ToDateTimeOffset_1, (XmlUntypedConverter * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF3D8, XmlUntypedConverter_ToDateTimeOffset_1__MethodInfo); DO_APP_FUNC(0x02410510, Decimal, XmlUntypedConverter_ToDecimal, (XmlUntypedConverter * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF3D0, XmlUntypedConverter_ToDecimal__MethodInfo); DO_APP_FUNC(0x02410630, Decimal, XmlUntypedConverter_ToDecimal_1, (XmlUntypedConverter * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF3C0, XmlUntypedConverter_ToDecimal_1__MethodInfo); DO_APP_FUNC(0x024108A0, double, XmlUntypedConverter_ToDouble, (XmlUntypedConverter * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF3C8, XmlUntypedConverter_ToDouble__MethodInfo); DO_APP_FUNC(0x02410950, double, XmlUntypedConverter_ToDouble_1, (XmlUntypedConverter * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF3B8, XmlUntypedConverter_ToDouble_1__MethodInfo); DO_APP_FUNC(0x02410B50, int32_t, XmlUntypedConverter_ToInt32, (XmlUntypedConverter * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF400, XmlUntypedConverter_ToInt32__MethodInfo); DO_APP_FUNC(0x02410C10, int32_t, XmlUntypedConverter_ToInt32_1, (XmlUntypedConverter * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF3F0, XmlUntypedConverter_ToInt32_1__MethodInfo); DO_APP_FUNC(0x02410E30, int64_t, XmlUntypedConverter_ToInt64, (XmlUntypedConverter * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF3F8, XmlUntypedConverter_ToInt64__MethodInfo); DO_APP_FUNC(0x02410EF0, int64_t, XmlUntypedConverter_ToInt64_1, (XmlUntypedConverter * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF3E8, XmlUntypedConverter_ToInt64_1__MethodInfo); DO_APP_FUNC(0x02411110, float, XmlUntypedConverter_ToSingle, (XmlUntypedConverter * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF3E0, XmlUntypedConverter_ToSingle__MethodInfo); DO_APP_FUNC(0x024111C0, float, XmlUntypedConverter_ToSingle_1, (XmlUntypedConverter * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF398, XmlUntypedConverter_ToSingle_1__MethodInfo); DO_APP_FUNC(0x024113C0, String *, XmlUntypedConverter_ToString, (XmlUntypedConverter * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x02411450, String *, XmlUntypedConverter_ToString_1, (XmlUntypedConverter * __this, DateTime value, MethodInfo * method)); DO_APP_FUNC(0x024114A0, String *, XmlUntypedConverter_ToString_2, (XmlUntypedConverter * __this, DateTimeOffset value, MethodInfo * method)); @@ -61738,49 +71349,79 @@ DO_APP_FUNC(0x024116F0, String *, XmlUntypedConverter_ToString_5, (XmlUntypedCon DO_APP_FUNC(0x02411740, String *, XmlUntypedConverter_ToString_6, (XmlUntypedConverter * __this, int64_t value, MethodInfo * method)); DO_APP_FUNC(0x02411790, String *, XmlUntypedConverter_ToString_7, (XmlUntypedConverter * __this, float value, MethodInfo * method)); DO_APP_FUNC(0x024117F0, String *, XmlUntypedConverter_ToString_8, (XmlUntypedConverter * __this, Object * value, IXmlNamespaceResolver * nsResolver, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF3B0, XmlUntypedConverter_ToString_8__MethodInfo); DO_APP_FUNC(0x02412850, Object *, XmlUntypedConverter_ChangeType, (XmlUntypedConverter * __this, bool value, Type * destinationType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF3A0, XmlUntypedConverter_ChangeType__MethodInfo); DO_APP_FUNC(0x02412A70, Object *, XmlUntypedConverter_ChangeType_1, (XmlUntypedConverter * __this, DateTime value, Type * destinationType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF3A8, XmlUntypedConverter_ChangeType_1__MethodInfo); DO_APP_FUNC(0x02412C40, Object *, XmlUntypedConverter_ChangeType_2, (XmlUntypedConverter * __this, Decimal value, Type * destinationType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF370, XmlUntypedConverter_ChangeType_2__MethodInfo); DO_APP_FUNC(0x02412F00, Object *, XmlUntypedConverter_ChangeType_3, (XmlUntypedConverter * __this, double value, Type * destinationType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF368, XmlUntypedConverter_ChangeType_3__MethodInfo); DO_APP_FUNC(0x024130E0, Object *, XmlUntypedConverter_ChangeType_4, (XmlUntypedConverter * __this, int32_t value, Type * destinationType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF358, XmlUntypedConverter_ChangeType_4__MethodInfo); DO_APP_FUNC(0x024132C0, Object *, XmlUntypedConverter_ChangeType_5, (XmlUntypedConverter * __this, int64_t value, Type * destinationType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF360, XmlUntypedConverter_ChangeType_5__MethodInfo); DO_APP_FUNC(0x024134A0, Object *, XmlUntypedConverter_ChangeType_6, (XmlUntypedConverter * __this, String * value, Type * destinationType, IXmlNamespaceResolver * nsResolver, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF350, XmlUntypedConverter_ChangeType_6__MethodInfo); DO_APP_FUNC(0x02414250, Object *, XmlUntypedConverter_ChangeType_7, (XmlUntypedConverter * __this, Object * value, Type * destinationType, IXmlNamespaceResolver * nsResolver, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF390, XmlUntypedConverter_ChangeType_7__MethodInfo); DO_APP_FUNC(0x02415B00, Object *, XmlUntypedConverter_ChangeTypeWildcardDestination, (XmlUntypedConverter * __this, Object * value, Type * destinationType, IXmlNamespaceResolver * nsResolver, MethodInfo * method)); DO_APP_FUNC(0x02415C60, Object *, XmlUntypedConverter_ChangeTypeWildcardSource, (XmlUntypedConverter * __this, Object * value, Type * destinationType, IXmlNamespaceResolver * nsResolver, MethodInfo * method)); DO_APP_FUNC(0x02415E10, Object *, XmlUntypedConverter_ChangeListType, (XmlUntypedConverter * __this, Object * value, Type * destinationType, IXmlNamespaceResolver * nsResolver, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF380, XmlUntypedConverter_ChangeListType__MethodInfo); DO_APP_FUNC(0x02416170, bool, XmlUntypedConverter_SupportsType, (XmlUntypedConverter * __this, Type * clrType, MethodInfo * method)); DO_APP_FUNC(0x024166F0, void, XmlUntypedConverter__cctor, (MethodInfo * method)); DO_APP_FUNC(0x024168B0, void, XmlAnyConverter__ctor, (XmlAnyConverter * __this, XmlTypeCode__Enum typeCode, MethodInfo * method)); DO_APP_FUNC(0x02416AB0, bool, XmlAnyConverter_ToBoolean, (XmlAnyConverter * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF320, XmlAnyConverter_ToBoolean__MethodInfo); DO_APP_FUNC(0x02416CB0, DateTime, XmlAnyConverter_ToDateTime, (XmlAnyConverter * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF318, XmlAnyConverter_ToDateTime__MethodInfo); DO_APP_FUNC(0x02416EB0, DateTimeOffset, XmlAnyConverter_ToDateTimeOffset, (XmlAnyConverter * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF310, XmlAnyConverter_ToDateTimeOffset__MethodInfo); DO_APP_FUNC(0x02417100, Decimal, XmlAnyConverter_ToDecimal, (XmlAnyConverter * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF300, XmlAnyConverter_ToDecimal__MethodInfo); DO_APP_FUNC(0x02417350, double, XmlAnyConverter_ToDouble, (XmlAnyConverter * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF308, XmlAnyConverter_ToDouble__MethodInfo); DO_APP_FUNC(0x02417550, int32_t, XmlAnyConverter_ToInt32, (XmlAnyConverter * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF348, XmlAnyConverter_ToInt32__MethodInfo); DO_APP_FUNC(0x02417740, int64_t, XmlAnyConverter_ToInt64, (XmlAnyConverter * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF340, XmlAnyConverter_ToInt64__MethodInfo); DO_APP_FUNC(0x02417930, float, XmlAnyConverter_ToSingle, (XmlAnyConverter * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF330, XmlAnyConverter_ToSingle__MethodInfo); DO_APP_FUNC(0x02417B70, Object *, XmlAnyConverter_ChangeType, (XmlAnyConverter * __this, bool value, Type * destinationType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF338, XmlAnyConverter_ChangeType__MethodInfo); DO_APP_FUNC(0x02417E50, Object *, XmlAnyConverter_ChangeType_1, (XmlAnyConverter * __this, DateTime value, Type * destinationType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF328, XmlAnyConverter_ChangeType_1__MethodInfo); DO_APP_FUNC(0x02418130, Object *, XmlAnyConverter_ChangeType_2, (XmlAnyConverter * __this, Decimal value, Type * destinationType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF2C8, XmlAnyConverter_ChangeType_2__MethodInfo); DO_APP_FUNC(0x02418380, Object *, XmlAnyConverter_ChangeType_3, (XmlAnyConverter * __this, double value, Type * destinationType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF2B8, XmlAnyConverter_ChangeType_3__MethodInfo); DO_APP_FUNC(0x02418660, Object *, XmlAnyConverter_ChangeType_4, (XmlAnyConverter * __this, int32_t value, Type * destinationType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF2C0, XmlAnyConverter_ChangeType_4__MethodInfo); DO_APP_FUNC(0x02418940, Object *, XmlAnyConverter_ChangeType_5, (XmlAnyConverter * __this, int64_t value, Type * destinationType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF2B0, XmlAnyConverter_ChangeType_5__MethodInfo); DO_APP_FUNC(0x02418C20, Object *, XmlAnyConverter_ChangeType_6, (XmlAnyConverter * __this, String * value, Type * destinationType, IXmlNamespaceResolver * nsResolver, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF2A8, XmlAnyConverter_ChangeType_6__MethodInfo); DO_APP_FUNC(0x02418E50, Object *, XmlAnyConverter_ChangeType_7, (XmlAnyConverter * __this, Object * value, Type * destinationType, IXmlNamespaceResolver * nsResolver, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF2F8, XmlAnyConverter_ChangeType_7__MethodInfo); DO_APP_FUNC(0x0241AD10, Object *, XmlAnyConverter_ChangeTypeWildcardDestination, (XmlAnyConverter * __this, Object * value, Type * destinationType, IXmlNamespaceResolver * nsResolver, MethodInfo * method)); DO_APP_FUNC(0x0241AE70, Object *, XmlAnyConverter_ChangeTypeWildcardSource, (XmlAnyConverter * __this, Object * value, Type * destinationType, IXmlNamespaceResolver * nsResolver, MethodInfo * method)); DO_APP_FUNC(0x0241AFF0, XPathNavigator *, XmlAnyConverter_ToNavigator, (XmlAnyConverter * __this, XPathNavigator * nav, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF2E8, XmlAnyConverter_ToNavigator__MethodInfo); DO_APP_FUNC(0x0241B090, void, XmlAnyConverter__cctor, (MethodInfo * method)); DO_APP_FUNC(0x0241B280, void, XmlAnyListConverter__ctor, (XmlAnyListConverter * __this, XmlBaseConverter * atomicConverter, MethodInfo * method)); DO_APP_FUNC(0x0241B290, Object *, XmlAnyListConverter_ChangeType, (XmlAnyListConverter * __this, Object * value, Type * destinationType, IXmlNamespaceResolver * nsResolver, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF2D0, XmlAnyListConverter_ChangeType__MethodInfo); DO_APP_FUNC(0x0241B530, void, XmlAnyListConverter__cctor, (MethodInfo * method)); DO_APP_FUNC(0x0241B7A0, void, XmlListConverter__ctor, (XmlListConverter * __this, XmlBaseConverter * atomicConverter, MethodInfo * method)); DO_APP_FUNC(0x0241B930, void, XmlListConverter__ctor_1, (XmlListConverter * __this, XmlBaseConverter * atomicConverter, Type * clrTypeDefault, MethodInfo * method)); DO_APP_FUNC(0x0241BAA0, void, XmlListConverter__ctor_2, (XmlListConverter * __this, XmlSchemaType * schemaType, MethodInfo * method)); DO_APP_FUNC(0x0241BB00, XmlValueConverter *, XmlListConverter_Create, (XmlValueConverter * atomicConverter, MethodInfo * method)); DO_APP_FUNC(0x0241BCF0, Object *, XmlListConverter_ChangeType, (XmlListConverter * __this, Object * value, Type * destinationType, IXmlNamespaceResolver * nsResolver, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF220, XmlListConverter_ChangeType__MethodInfo); DO_APP_FUNC(0x0241BE30, Object *, XmlListConverter_ChangeListType, (XmlListConverter * __this, Object * value, Type * destinationType, IXmlNamespaceResolver * nsResolver, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF1A8, XmlListConverter_ChangeListType__MethodInfo); DO_APP_FUNC(0x0241CD70, bool, XmlListConverter_IsListType, (XmlListConverter * __this, Type * type, MethodInfo * method)); DO_APP_FUNC(0x0241CF00, IList *, XmlListConverter_ToList, (XmlListConverter * __this, Object * list, IXmlNamespaceResolver * nsResolver, MethodInfo * method)); DO_APP_FUNC(0x0241D480, List_1_System_String_ *, XmlListConverter_StringAsList, (XmlListConverter * __this, String * value, MethodInfo * method)); @@ -61789,6 +71430,7 @@ DO_APP_FUNC(0x0241D7E0, Exception *, XmlListConverter_CreateInvalidClrMappingExc DO_APP_FUNC(0x0241DAD0, void, XmlUnionConverter__ctor, (XmlUnionConverter * __this, XmlSchemaType * schemaType, MethodInfo * method)); DO_APP_FUNC(0x0241DE70, XmlValueConverter *, XmlUnionConverter_Create, (XmlSchemaType * schemaType, MethodInfo * method)); DO_APP_FUNC(0x0241DEE0, Object *, XmlUnionConverter_ChangeType, (XmlUnionConverter * __this, Object * value, Type * destinationType, IXmlNamespaceResolver * nsResolver, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF1E0, XmlUnionConverter_ChangeType__MethodInfo); DO_APP_FUNC(0x0241E390, void, XsdBuilder__ctor, (XsdBuilder * __this, XmlReader * reader, XmlNamespaceManager * curmgr, XmlSchema * schema, XmlNameTable * nameTable, SchemaNames * schemaNames, ValidationEventHandler * eventhandler, MethodInfo * method)); DO_APP_FUNC(0x0241EA20, bool, XsdBuilder_ProcessElement, (XsdBuilder * __this, String * prefix, String * name, String * ns, MethodInfo * method)); DO_APP_FUNC(0x0241ED00, void, XsdBuilder_ProcessAttribute, (XsdBuilder * __this, String * prefix, String * name, String * ns, String * value, MethodInfo * method)); @@ -61805,110 +71447,215 @@ DO_APP_FUNC(0x0241FB90, XmlSchemaObject *, XsdBuilder_get_ParentContainer, (XsdB DO_APP_FUNC(0x0241FC30, XmlSchemaObject *, XsdBuilder_GetContainer, (XsdBuilder * __this, XsdBuilder_State__Enum state, MethodInfo * method)); DO_APP_FUNC(0x0241FE80, void, XsdBuilder_SetContainer, (XsdBuilder * __this, XsdBuilder_State__Enum state, Object * container, MethodInfo * method)); DO_APP_FUNC(0x02421600, void, XsdBuilder_BuildAnnotated_Id, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEE30, XsdBuilder_BuildAnnotated_Id__MethodInfo); DO_APP_FUNC(0x02421630, void, XsdBuilder_BuildSchema_AttributeFormDefault, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEAC8, XsdBuilder_BuildSchema_AttributeFormDefault__MethodInfo); DO_APP_FUNC(0x024216F0, void, XsdBuilder_BuildSchema_ElementFormDefault, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEAE8, XsdBuilder_BuildSchema_ElementFormDefault__MethodInfo); DO_APP_FUNC(0x024217B0, void, XsdBuilder_BuildSchema_TargetNamespace, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEC00, XsdBuilder_BuildSchema_TargetNamespace__MethodInfo); DO_APP_FUNC(0x02421820, void, XsdBuilder_BuildSchema_Version, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEC10, XsdBuilder_BuildSchema_Version__MethodInfo); DO_APP_FUNC(0x02421890, void, XsdBuilder_BuildSchema_FinalDefault, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEBF0, XsdBuilder_BuildSchema_FinalDefault__MethodInfo); DO_APP_FUNC(0x02421910, void, XsdBuilder_BuildSchema_BlockDefault, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEAD8, XsdBuilder_BuildSchema_BlockDefault__MethodInfo); DO_APP_FUNC(0x02421990, void, XsdBuilder_InitSchema, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEA90, XsdBuilder_InitSchema__MethodInfo); DO_APP_FUNC(0x02421A00, void, XsdBuilder_InitInclude, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEAB8, XsdBuilder_InitInclude__MethodInfo); DO_APP_FUNC(0x02421BA0, void, XsdBuilder_BuildInclude_SchemaLocation, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEB28, XsdBuilder_BuildInclude_SchemaLocation__MethodInfo); DO_APP_FUNC(0x02421C10, void, XsdBuilder_InitImport, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEAB0, XsdBuilder_InitImport__MethodInfo); DO_APP_FUNC(0x02421DB0, void, XsdBuilder_BuildImport_Namespace, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEB18, XsdBuilder_BuildImport_Namespace__MethodInfo); DO_APP_FUNC(0x02421E20, void, XsdBuilder_BuildImport_SchemaLocation, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEB20, XsdBuilder_BuildImport_SchemaLocation__MethodInfo); DO_APP_FUNC(0x02421E90, void, XsdBuilder_InitRedefine, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEA88, XsdBuilder_InitRedefine__MethodInfo); DO_APP_FUNC(0x02422030, void, XsdBuilder_BuildRedefine_SchemaLocation, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEAC0, XsdBuilder_BuildRedefine_SchemaLocation__MethodInfo); DO_APP_FUNC(0x024220A0, void, XsdBuilder_EndRedefine, (XsdBuilder * builder, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEB80, XsdBuilder_EndRedefine__MethodInfo); DO_APP_FUNC(0x024220C0, void, XsdBuilder_InitAttribute, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE9E0, XsdBuilder_InitAttribute__MethodInfo); DO_APP_FUNC(0x02422260, void, XsdBuilder_BuildAttribute_Default, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEDD0, XsdBuilder_BuildAttribute_Default__MethodInfo); DO_APP_FUNC(0x024222D0, void, XsdBuilder_BuildAttribute_Fixed, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEC90, XsdBuilder_BuildAttribute_Fixed__MethodInfo); DO_APP_FUNC(0x02422340, void, XsdBuilder_BuildAttribute_Form, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEC98, XsdBuilder_BuildAttribute_Form__MethodInfo); DO_APP_FUNC(0x02422400, void, XsdBuilder_BuildAttribute_Use, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEC78, XsdBuilder_BuildAttribute_Use__MethodInfo); DO_APP_FUNC(0x024224C0, void, XsdBuilder_BuildAttribute_Ref, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAECA8, XsdBuilder_BuildAttribute_Ref__MethodInfo); DO_APP_FUNC(0x02422600, void, XsdBuilder_BuildAttribute_Name, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAECA0, XsdBuilder_BuildAttribute_Name__MethodInfo); DO_APP_FUNC(0x02422670, void, XsdBuilder_BuildAttribute_Type, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEC70, XsdBuilder_BuildAttribute_Type__MethodInfo); DO_APP_FUNC(0x024227B0, void, XsdBuilder_InitElement, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE990, XsdBuilder_InitElement__MethodInfo); DO_APP_FUNC(0x024229C0, void, XsdBuilder_BuildElement_Abstract, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAED10, XsdBuilder_BuildElement_Abstract__MethodInfo); DO_APP_FUNC(0x02422A40, void, XsdBuilder_BuildElement_Block, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAED18, XsdBuilder_BuildElement_Block__MethodInfo); DO_APP_FUNC(0x02422AC0, void, XsdBuilder_BuildElement_Default, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAED20, XsdBuilder_BuildElement_Default__MethodInfo); DO_APP_FUNC(0x02422B30, void, XsdBuilder_BuildElement_Form, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAECF8, XsdBuilder_BuildElement_Form__MethodInfo); DO_APP_FUNC(0x02422BF0, void, XsdBuilder_BuildElement_SubstitutionGroup, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAECE8, XsdBuilder_BuildElement_SubstitutionGroup__MethodInfo); DO_APP_FUNC(0x02422D30, void, XsdBuilder_BuildElement_Final, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAED28, XsdBuilder_BuildElement_Final__MethodInfo); DO_APP_FUNC(0x02422DB0, void, XsdBuilder_BuildElement_Fixed, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAECF0, XsdBuilder_BuildElement_Fixed__MethodInfo); DO_APP_FUNC(0x02422E20, void, XsdBuilder_BuildElement_MaxOccurs, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAED00, XsdBuilder_BuildElement_MaxOccurs__MethodInfo); DO_APP_FUNC(0x02422E50, void, XsdBuilder_BuildElement_MinOccurs, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAED08, XsdBuilder_BuildElement_MinOccurs__MethodInfo); DO_APP_FUNC(0x02422E80, void, XsdBuilder_BuildElement_Name, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAECD0, XsdBuilder_BuildElement_Name__MethodInfo); DO_APP_FUNC(0x02422EF0, void, XsdBuilder_BuildElement_Nillable, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAECD8, XsdBuilder_BuildElement_Nillable__MethodInfo); DO_APP_FUNC(0x02422F70, void, XsdBuilder_BuildElement_Ref, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAECE0, XsdBuilder_BuildElement_Ref__MethodInfo); DO_APP_FUNC(0x024230B0, void, XsdBuilder_BuildElement_Type, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAECB0, XsdBuilder_BuildElement_Type__MethodInfo); DO_APP_FUNC(0x024231F0, void, XsdBuilder_InitSimpleType, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEA50, XsdBuilder_InitSimpleType__MethodInfo); DO_APP_FUNC(0x02423790, void, XsdBuilder_BuildSimpleType_Name, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEBB0, XsdBuilder_BuildSimpleType_Name__MethodInfo); DO_APP_FUNC(0x02423800, void, XsdBuilder_BuildSimpleType_Final, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEBA0, XsdBuilder_BuildSimpleType_Final__MethodInfo); DO_APP_FUNC(0x02423880, void, XsdBuilder_InitSimpleTypeUnion, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEA40, XsdBuilder_InitSimpleTypeUnion__MethodInfo); DO_APP_FUNC(0x02423AE0, void, XsdBuilder_BuildSimpleTypeUnion_MemberTypes, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEB98, XsdBuilder_BuildSimpleTypeUnion_MemberTypes__MethodInfo); DO_APP_FUNC(0x02423CE0, void, XsdBuilder_InitSimpleTypeList, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEA30, XsdBuilder_InitSimpleTypeList__MethodInfo); DO_APP_FUNC(0x02423EB0, void, XsdBuilder_BuildSimpleTypeList_ItemType, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEBD8, XsdBuilder_BuildSimpleTypeList_ItemType__MethodInfo); DO_APP_FUNC(0x02423FF0, void, XsdBuilder_InitSimpleTypeRestriction, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEA38, XsdBuilder_InitSimpleTypeRestriction__MethodInfo); DO_APP_FUNC(0x024241C0, void, XsdBuilder_BuildSimpleTypeRestriction_Base, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEBE0, XsdBuilder_BuildSimpleTypeRestriction_Base__MethodInfo); DO_APP_FUNC(0x02424300, void, XsdBuilder_InitComplexType, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE9C0, XsdBuilder_InitComplexType__MethodInfo); DO_APP_FUNC(0x02424590, void, XsdBuilder_BuildComplexType_Abstract, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEC58, XsdBuilder_BuildComplexType_Abstract__MethodInfo); DO_APP_FUNC(0x02424620, void, XsdBuilder_BuildComplexType_Block, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEC60, XsdBuilder_BuildComplexType_Block__MethodInfo); DO_APP_FUNC(0x024246A0, void, XsdBuilder_BuildComplexType_Final, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEC68, XsdBuilder_BuildComplexType_Final__MethodInfo); DO_APP_FUNC(0x02424720, void, XsdBuilder_BuildComplexType_Mixed, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEC30, XsdBuilder_BuildComplexType_Mixed__MethodInfo); DO_APP_FUNC(0x024247B0, void, XsdBuilder_BuildComplexType_Name, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEC38, XsdBuilder_BuildComplexType_Name__MethodInfo); DO_APP_FUNC(0x02424820, void, XsdBuilder_InitComplexContent, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE9B8, XsdBuilder_InitComplexContent__MethodInfo); DO_APP_FUNC(0x02424A50, void, XsdBuilder_BuildComplexContent_Mixed, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEC50, XsdBuilder_BuildComplexContent_Mixed__MethodInfo); DO_APP_FUNC(0x02424AD0, void, XsdBuilder_InitComplexContentExtension, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE9F0, XsdBuilder_InitComplexContentExtension__MethodInfo); DO_APP_FUNC(0x02424DA0, void, XsdBuilder_BuildComplexContentExtension_Base, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEC80, XsdBuilder_BuildComplexContentExtension_Base__MethodInfo); DO_APP_FUNC(0x02424EE0, void, XsdBuilder_InitComplexContentRestriction, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE9B0, XsdBuilder_InitComplexContentRestriction__MethodInfo); DO_APP_FUNC(0x02425150, void, XsdBuilder_BuildComplexContentRestriction_Base, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEC88, XsdBuilder_BuildComplexContentRestriction_Base__MethodInfo); DO_APP_FUNC(0x02425290, void, XsdBuilder_InitSimpleContent, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEA70, XsdBuilder_InitSimpleContent__MethodInfo); DO_APP_FUNC(0x024254C0, void, XsdBuilder_InitSimpleContentExtension, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEA60, XsdBuilder_InitSimpleContentExtension__MethodInfo); DO_APP_FUNC(0x02425790, void, XsdBuilder_BuildSimpleContentExtension_Base, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEBC0, XsdBuilder_BuildSimpleContentExtension_Base__MethodInfo); DO_APP_FUNC(0x024258D0, void, XsdBuilder_InitSimpleContentRestriction, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEA68, XsdBuilder_InitSimpleContentRestriction__MethodInfo); DO_APP_FUNC(0x02425A70, void, XsdBuilder_BuildSimpleContentRestriction_Base, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEBD0, XsdBuilder_BuildSimpleContentRestriction_Base__MethodInfo); DO_APP_FUNC(0x02425BB0, void, XsdBuilder_InitAttributeGroup, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE9D8, XsdBuilder_InitAttributeGroup__MethodInfo); DO_APP_FUNC(0x02425D50, void, XsdBuilder_BuildAttributeGroup_Name, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEDC8, XsdBuilder_BuildAttributeGroup_Name__MethodInfo); DO_APP_FUNC(0x02425DC0, void, XsdBuilder_InitAttributeGroupRef, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEA20, XsdBuilder_InitAttributeGroupRef__MethodInfo); DO_APP_FUNC(0x02425F80, void, XsdBuilder_BuildAttributeGroupRef_Ref, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEDC0, XsdBuilder_BuildAttributeGroupRef_Ref__MethodInfo); DO_APP_FUNC(0x024260C0, void, XsdBuilder_InitAnyAttribute, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE9F8, XsdBuilder_InitAnyAttribute__MethodInfo); DO_APP_FUNC(0x02426660, void, XsdBuilder_BuildAnyAttribute_Namespace, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEDD8, XsdBuilder_BuildAnyAttribute_Namespace__MethodInfo); DO_APP_FUNC(0x024266D0, void, XsdBuilder_BuildAnyAttribute_ProcessContents, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEDE0, XsdBuilder_BuildAnyAttribute_ProcessContents__MethodInfo); DO_APP_FUNC(0x02426790, void, XsdBuilder_InitGroup, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEAA0, XsdBuilder_InitGroup__MethodInfo); DO_APP_FUNC(0x024269C0, void, XsdBuilder_BuildGroup_Name, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEB48, XsdBuilder_BuildGroup_Name__MethodInfo); DO_APP_FUNC(0x02426A30, void, XsdBuilder_InitGroupRef, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE9A8, XsdBuilder_InitGroupRef__MethodInfo); DO_APP_FUNC(0x02426C70, void, XsdBuilder_BuildParticle_MaxOccurs, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEB08, XsdBuilder_BuildParticle_MaxOccurs__MethodInfo); DO_APP_FUNC(0x02426CA0, void, XsdBuilder_BuildParticle_MinOccurs, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEB10, XsdBuilder_BuildParticle_MinOccurs__MethodInfo); DO_APP_FUNC(0x02426CD0, void, XsdBuilder_BuildGroupRef_Ref, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEB38, XsdBuilder_BuildGroupRef_Ref__MethodInfo); DO_APP_FUNC(0x02426E10, void, XsdBuilder_InitAll, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEB88, XsdBuilder_InitAll__MethodInfo); DO_APP_FUNC(0x02426F90, void, XsdBuilder_InitChoice, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE9E8, XsdBuilder_InitChoice__MethodInfo); DO_APP_FUNC(0x02427110, void, XsdBuilder_InitSequence, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEA58, XsdBuilder_InitSequence__MethodInfo); DO_APP_FUNC(0x02427290, void, XsdBuilder_InitAny, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEA00, XsdBuilder_InitAny__MethodInfo); DO_APP_FUNC(0x02427440, void, XsdBuilder_BuildAny_Namespace, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEDF0, XsdBuilder_BuildAny_Namespace__MethodInfo); DO_APP_FUNC(0x024274B0, void, XsdBuilder_BuildAny_ProcessContents, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEE00, XsdBuilder_BuildAny_ProcessContents__MethodInfo); DO_APP_FUNC(0x02427570, void, XsdBuilder_InitNotation, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEA80, XsdBuilder_InitNotation__MethodInfo); DO_APP_FUNC(0x02427770, void, XsdBuilder_BuildNotation_Name, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEB30, XsdBuilder_BuildNotation_Name__MethodInfo); DO_APP_FUNC(0x024277E0, void, XsdBuilder_BuildNotation_Public, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEAF8, XsdBuilder_BuildNotation_Public__MethodInfo); DO_APP_FUNC(0x02427850, void, XsdBuilder_BuildNotation_System, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEB00, XsdBuilder_BuildNotation_System__MethodInfo); DO_APP_FUNC(0x024278C0, void, XsdBuilder_InitFacet, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE998, XsdBuilder_InitFacet__MethodInfo); DO_APP_FUNC(0x02427D30, void, XsdBuilder_BuildFacet_Fixed, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAECB8, XsdBuilder_BuildFacet_Fixed__MethodInfo); DO_APP_FUNC(0x02427DC0, void, XsdBuilder_BuildFacet_Value, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAECC0, XsdBuilder_BuildFacet_Value__MethodInfo); DO_APP_FUNC(0x02427E30, void, XsdBuilder_InitIdentityConstraint, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEAA8, XsdBuilder_InitIdentityConstraint__MethodInfo); DO_APP_FUNC(0x024282A0, void, XsdBuilder_BuildIdentityConstraint_Name, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEB58, XsdBuilder_BuildIdentityConstraint_Name__MethodInfo); DO_APP_FUNC(0x02428310, void, XsdBuilder_BuildIdentityConstraint_Refer, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEB68, XsdBuilder_BuildIdentityConstraint_Refer__MethodInfo); DO_APP_FUNC(0x02428510, void, XsdBuilder_InitSelector, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEA98, XsdBuilder_InitSelector__MethodInfo); DO_APP_FUNC(0x024286D0, void, XsdBuilder_BuildSelector_XPath, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEC20, XsdBuilder_BuildSelector_XPath__MethodInfo); DO_APP_FUNC(0x02428740, void, XsdBuilder_InitField, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE9A0, XsdBuilder_InitField__MethodInfo); DO_APP_FUNC(0x024286D0, void, XsdBuilder_BuildField_XPath, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAECC8, XsdBuilder_BuildField_XPath__MethodInfo); DO_APP_FUNC(0x024288E0, void, XsdBuilder_InitAnnotation, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEB90, XsdBuilder_InitAnnotation__MethodInfo); DO_APP_FUNC(0x02428B00, void, XsdBuilder_InitAppinfo, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEA10, XsdBuilder_InitAppinfo__MethodInfo); DO_APP_FUNC(0x02428D10, void, XsdBuilder_BuildAppinfo_Source, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEDB8, XsdBuilder_BuildAppinfo_Source__MethodInfo); DO_APP_FUNC(0x02428DD0, void, XsdBuilder_EndAppinfo, (XsdBuilder * builder, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEBB8, XsdBuilder_EndAppinfo__MethodInfo); DO_APP_FUNC(0x02428E40, void, XsdBuilder_InitDocumentation, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE9D0, XsdBuilder_InitDocumentation__MethodInfo); DO_APP_FUNC(0x02429050, void, XsdBuilder_BuildDocumentation_Source, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEC40, XsdBuilder_BuildDocumentation_Source__MethodInfo); DO_APP_FUNC(0x02429110, void, XsdBuilder_BuildDocumentation_XmlLang, (XsdBuilder * builder, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEC48, XsdBuilder_BuildDocumentation_XmlLang__MethodInfo); DO_APP_FUNC(0x02429350, void, XsdBuilder_EndDocumentation, (XsdBuilder * builder, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEB78, XsdBuilder_EndDocumentation__MethodInfo); DO_APP_FUNC(0x024293C0, void, XsdBuilder_AddAttribute, (XsdBuilder * __this, XmlSchemaObject * value, MethodInfo * method)); DO_APP_FUNC(0x02429660, void, XsdBuilder_AddParticle, (XsdBuilder * __this, XmlSchemaParticle * particle, MethodInfo * method)); DO_APP_FUNC(0x02429AB0, bool, XsdBuilder_GetNextState, (XsdBuilder * __this, XmlQualifiedName * qname, MethodInfo * method)); @@ -61924,6 +71671,7 @@ DO_APP_FUNC(0x0242A440, void, XsdBuilder_SendValidationEvent, (XsdBuilder * __th DO_APP_FUNC(0x0242A660, void, XsdBuilder_SendValidationEvent_1, (XsdBuilder * __this, String * code, String * msg, MethodInfo * method)); DO_APP_FUNC(0x0242A780, void, XsdBuilder_SendValidationEvent_2, (XsdBuilder * __this, String * code, String__Array * args, XmlSeverityType__Enum severity, MethodInfo * method)); DO_APP_FUNC(0x0242A8C0, void, XsdBuilder_SendValidationEvent_3, (XsdBuilder * __this, XmlSchemaException * e, XmlSeverityType__Enum severity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEDB0, XsdBuilder_SendValidationEvent_3__MethodInfo); DO_APP_FUNC(0x0242AA00, void, XsdBuilder_SendValidationEvent_4, (XsdBuilder * __this, XmlSchemaException * e, MethodInfo * method)); DO_APP_FUNC(0x0242AA10, void, XsdBuilder_RecordPosition, (XsdBuilder * __this, MethodInfo * method)); DO_APP_FUNC(0x0242AB90, void, XsdBuilder__cctor, (MethodInfo * method)); @@ -61937,64 +71685,69 @@ DO_APP_FUNC(0x006F0970, void, XsdBuilder_XsdAttributeEntry__ctor, (XsdBuilder_Xs DO_APP_FUNC(0x02431A00, void, XsdBuilder_XsdEntry__ctor, (XsdBuilder_XsdEntry * __this, SchemaNames_Token__Enum n, XsdBuilder_State__Enum state, XsdBuilder_State__Enum__Array * nextStates, XsdBuilder_XsdAttributeEntry__Array * attributes, XsdBuilder_XsdInitFunction * init, XsdBuilder_XsdEndChildFunction * end, bool parseContent, MethodInfo * method)); DO_APP_FUNC(0x02431B80, void, XsdBuilder_BuilderNamespaceManager__ctor, (XsdBuilder_BuilderNamespaceManager * __this, XmlNamespaceManager * nsMgr, XmlReader * reader, MethodInfo * method)); DO_APP_FUNC(0x02431C30, String *, XsdBuilder_BuilderNamespaceManager_LookupNamespace, (XsdBuilder_BuilderNamespaceManager * __this, String * prefix, MethodInfo * method)); -DO_APP_FUNC(0x02431CA0, void, XsdDateTime__ctor, (XsdDateTime__Boxed * __this, String * text, XsdDateTimeFlags__Enum kinds, MethodInfo * method)); -DO_APP_FUNC(0x02431EE0, void, XsdDateTime__ctor_1, (XsdDateTime__Boxed * __this, XsdDateTime_Parser parser, MethodInfo * method)); -DO_APP_FUNC(0x02431F70, void, XsdDateTime_InitiateXsdDateTime, (XsdDateTime__Boxed * __this, XsdDateTime_Parser parser, MethodInfo * method)); -DO_APP_FUNC(0x024320B0, bool, XsdDateTime_TryParse, (String * text, XsdDateTimeFlags__Enum kinds, XsdDateTime result, MethodInfo * method)); -DO_APP_FUNC(0x02432220, void, XsdDateTime__ctor_2, (XsdDateTime__Boxed * __this, DateTime dateTime, XsdDateTimeFlags__Enum kinds, MethodInfo * method)); -DO_APP_FUNC(0x02432500, void, XsdDateTime__ctor_3, (XsdDateTime__Boxed * __this, DateTimeOffset dateTimeOffset, MethodInfo * method)); -DO_APP_FUNC(0x02432570, void, XsdDateTime__ctor_4, (XsdDateTime__Boxed * __this, DateTimeOffset dateTimeOffset, XsdDateTimeFlags__Enum kinds, MethodInfo * method)); -DO_APP_FUNC(0x02432800, XsdDateTime_DateTimeTypeCode__Enum, XsdDateTime_get_InternalTypeCode, (XsdDateTime__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01A9CD60, XsdDateTime_XsdDateTimeKind__Enum, XsdDateTime_get_InternalKind, (XsdDateTime__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02432810, int32_t, XsdDateTime_get_Year, (XsdDateTime__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x024328A0, int32_t, XsdDateTime_get_Month, (XsdDateTime__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02432930, int32_t, XsdDateTime_get_Day, (XsdDateTime__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x024329C0, int32_t, XsdDateTime_get_Hour, (XsdDateTime__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02432A10, int32_t, XsdDateTime_get_Minute, (XsdDateTime__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02432A60, int32_t, XsdDateTime_get_Second, (XsdDateTime__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02432AB0, int32_t, XsdDateTime_get_Fraction, (XsdDateTime__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01A9CD50, int32_t, XsdDateTime_get_ZoneHour, (XsdDateTime__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C23340, int32_t, XsdDateTime_get_ZoneMinute, (XsdDateTime__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02431CA0, void, XsdDateTime__ctor, (XsdDateTime * __this, String * text, XsdDateTimeFlags__Enum kinds, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0600, XsdDateTime__ctor__MethodInfo); +DO_APP_FUNC(0x02431EE0, void, XsdDateTime__ctor_1, (XsdDateTime * __this, XsdDateTime_Parser parser, MethodInfo * method)); +DO_APP_FUNC(0x02431F70, void, XsdDateTime_InitiateXsdDateTime, (XsdDateTime * __this, XsdDateTime_Parser parser, MethodInfo * method)); +DO_APP_FUNC(0x024320B0, bool, XsdDateTime_TryParse, (String * text, XsdDateTimeFlags__Enum kinds, XsdDateTime * result, MethodInfo * method)); +DO_APP_FUNC(0x02432220, void, XsdDateTime__ctor_2, (XsdDateTime * __this, DateTime dateTime, XsdDateTimeFlags__Enum kinds, MethodInfo * method)); +DO_APP_FUNC(0x02432500, void, XsdDateTime__ctor_3, (XsdDateTime * __this, DateTimeOffset dateTimeOffset, MethodInfo * method)); +DO_APP_FUNC(0x02432570, void, XsdDateTime__ctor_4, (XsdDateTime * __this, DateTimeOffset dateTimeOffset, XsdDateTimeFlags__Enum kinds, MethodInfo * method)); +DO_APP_FUNC(0x02432800, XsdDateTime_DateTimeTypeCode__Enum, XsdDateTime_get_InternalTypeCode, (XsdDateTime * __this, MethodInfo * method)); +DO_APP_FUNC(0x01A9CD60, XsdDateTime_XsdDateTimeKind__Enum, XsdDateTime_get_InternalKind, (XsdDateTime * __this, MethodInfo * method)); +DO_APP_FUNC(0x02432810, int32_t, XsdDateTime_get_Year, (XsdDateTime * __this, MethodInfo * method)); +DO_APP_FUNC(0x024328A0, int32_t, XsdDateTime_get_Month, (XsdDateTime * __this, MethodInfo * method)); +DO_APP_FUNC(0x02432930, int32_t, XsdDateTime_get_Day, (XsdDateTime * __this, MethodInfo * method)); +DO_APP_FUNC(0x024329C0, int32_t, XsdDateTime_get_Hour, (XsdDateTime * __this, MethodInfo * method)); +DO_APP_FUNC(0x02432A10, int32_t, XsdDateTime_get_Minute, (XsdDateTime * __this, MethodInfo * method)); +DO_APP_FUNC(0x02432A60, int32_t, XsdDateTime_get_Second, (XsdDateTime * __this, MethodInfo * method)); +DO_APP_FUNC(0x02432AB0, int32_t, XsdDateTime_get_Fraction, (XsdDateTime * __this, MethodInfo * method)); +DO_APP_FUNC(0x01A9CD50, int32_t, XsdDateTime_get_ZoneHour, (XsdDateTime * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C23340, int32_t, XsdDateTime_get_ZoneMinute, (XsdDateTime * __this, MethodInfo * method)); DO_APP_FUNC(0x02432CF0, DateTime, XsdDateTime_op_Implicit, (XsdDateTime xdt, MethodInfo * method)); DO_APP_FUNC(0x024335C0, DateTimeOffset, XsdDateTime_op_Implicit_1, (XsdDateTime xdt, MethodInfo * method)); -DO_APP_FUNC(0x02433B10, String *, XsdDateTime_ToString, (XsdDateTime__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02434110, void, XsdDateTime_PrintDate, (XsdDateTime__Boxed * __this, StringBuilder * sb, MethodInfo * method)); -DO_APP_FUNC(0x024343B0, void, XsdDateTime_PrintTime, (XsdDateTime__Boxed * __this, StringBuilder * sb, MethodInfo * method)); -DO_APP_FUNC(0x02434810, void, XsdDateTime_PrintZone, (XsdDateTime__Boxed * __this, StringBuilder * sb, MethodInfo * method)); -DO_APP_FUNC(0x02434B70, void, XsdDateTime_IntToCharArray, (XsdDateTime__Boxed * __this, Char__Array * text, int32_t start, int32_t value, int32_t digits, MethodInfo * method)); -DO_APP_FUNC(0x02434C10, void, XsdDateTime_ShortToCharArray, (XsdDateTime__Boxed * __this, Char__Array * text, int32_t start, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x02433B10, String *, XsdDateTime_ToString, (XsdDateTime * __this, MethodInfo * method)); +DO_APP_FUNC(0x02434110, void, XsdDateTime_PrintDate, (XsdDateTime * __this, StringBuilder * sb, MethodInfo * method)); +DO_APP_FUNC(0x024343B0, void, XsdDateTime_PrintTime, (XsdDateTime * __this, StringBuilder * sb, MethodInfo * method)); +DO_APP_FUNC(0x02434810, void, XsdDateTime_PrintZone, (XsdDateTime * __this, StringBuilder * sb, MethodInfo * method)); +DO_APP_FUNC(0x02434B70, void, XsdDateTime_IntToCharArray, (XsdDateTime * __this, Char__Array * text, int32_t start, int32_t value, int32_t digits, MethodInfo * method)); +DO_APP_FUNC(0x02434C10, void, XsdDateTime_ShortToCharArray, (XsdDateTime * __this, Char__Array * text, int32_t start, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x02434C90, void, XsdDateTime__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02435210, bool, XsdDateTime_Parser_Parse, (XsdDateTime_Parser__Boxed * __this, String * text, XsdDateTimeFlags__Enum kinds, MethodInfo * method)); -DO_APP_FUNC(0x02436340, bool, XsdDateTime_Parser_ParseDate, (XsdDateTime_Parser__Boxed * __this, int32_t start, MethodInfo * method)); -DO_APP_FUNC(0x02436650, bool, XsdDateTime_Parser_ParseTimeAndZoneAndWhitespace, (XsdDateTime_Parser__Boxed * __this, int32_t start, MethodInfo * method)); -DO_APP_FUNC(0x024366E0, bool, XsdDateTime_Parser_ParseTimeAndWhitespace, (XsdDateTime_Parser__Boxed * __this, int32_t start, MethodInfo * method)); -DO_APP_FUNC(0x02436760, bool, XsdDateTime_Parser_ParseTime, (XsdDateTime_Parser__Boxed * __this, int32_t start, MethodInfo * method)); -DO_APP_FUNC(0x02436BA0, bool, XsdDateTime_Parser_ParseZoneAndWhitespace, (XsdDateTime_Parser__Boxed * __this, int32_t start, MethodInfo * method)); -DO_APP_FUNC(0x02436E90, bool, XsdDateTime_Parser_Parse4Dig, (XsdDateTime_Parser__Boxed * __this, int32_t start, int32_t num, MethodInfo * method)); -DO_APP_FUNC(0x02436F80, bool, XsdDateTime_Parser_Parse2Dig, (XsdDateTime_Parser__Boxed * __this, int32_t start, int32_t num, MethodInfo * method)); -DO_APP_FUNC(0x02437000, bool, XsdDateTime_Parser_ParseChar, (XsdDateTime_Parser__Boxed * __this, int32_t start, uint16_t ch, MethodInfo * method)); +DO_APP_FUNC(0x02435210, bool, XsdDateTime_Parser_Parse, (XsdDateTime_Parser * __this, String * text, XsdDateTimeFlags__Enum kinds, MethodInfo * method)); +DO_APP_FUNC(0x02436340, bool, XsdDateTime_Parser_ParseDate, (XsdDateTime_Parser * __this, int32_t start, MethodInfo * method)); +DO_APP_FUNC(0x02436650, bool, XsdDateTime_Parser_ParseTimeAndZoneAndWhitespace, (XsdDateTime_Parser * __this, int32_t start, MethodInfo * method)); +DO_APP_FUNC(0x024366E0, bool, XsdDateTime_Parser_ParseTimeAndWhitespace, (XsdDateTime_Parser * __this, int32_t start, MethodInfo * method)); +DO_APP_FUNC(0x02436760, bool, XsdDateTime_Parser_ParseTime, (XsdDateTime_Parser * __this, int32_t * start, MethodInfo * method)); +DO_APP_FUNC(0x02436BA0, bool, XsdDateTime_Parser_ParseZoneAndWhitespace, (XsdDateTime_Parser * __this, int32_t start, MethodInfo * method)); +DO_APP_FUNC(0x02436E90, bool, XsdDateTime_Parser_Parse4Dig, (XsdDateTime_Parser * __this, int32_t start, int32_t * num, MethodInfo * method)); +DO_APP_FUNC(0x02436F80, bool, XsdDateTime_Parser_Parse2Dig, (XsdDateTime_Parser * __this, int32_t start, int32_t * num, MethodInfo * method)); +DO_APP_FUNC(0x02437000, bool, XsdDateTime_Parser_ParseChar, (XsdDateTime_Parser * __this, int32_t start, uint16_t ch, MethodInfo * method)); DO_APP_FUNC(0x02437050, bool, XsdDateTime_Parser_Test, (XsdDateTimeFlags__Enum left, XsdDateTimeFlags__Enum right, MethodInfo * method)); DO_APP_FUNC(0x02437060, void, XsdDateTime_Parser__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02437140, void, XsdDuration__ctor, (XsdDuration__Boxed * __this, bool isNegative, int32_t years, int32_t months, int32_t days, int32_t hours, int32_t minutes, int32_t seconds, int32_t nanoseconds, MethodInfo * method)); -DO_APP_FUNC(0x02437410, void, XsdDuration__ctor_1, (XsdDuration__Boxed * __this, TimeSpan timeSpan, MethodInfo * method)); -DO_APP_FUNC(0x02437420, void, XsdDuration__ctor_2, (XsdDuration__Boxed * __this, TimeSpan timeSpan, XsdDuration_DurationType__Enum durationType, MethodInfo * method)); -DO_APP_FUNC(0x024376A0, void, XsdDuration__ctor_3, (XsdDuration__Boxed * __this, String * s, XsdDuration_DurationType__Enum durationType, MethodInfo * method)); -DO_APP_FUNC(0x02437750, bool, XsdDuration_get_IsNegative, (XsdDuration__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, XsdDuration_get_Years, (XsdDuration__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C173E0, int32_t, XsdDuration_get_Months, (XsdDuration__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471920, int32_t, XsdDuration_get_Days, (XsdDuration__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E57F20, int32_t, XsdDuration_get_Hours, (XsdDuration__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, int32_t, XsdDuration_get_Minutes, (XsdDuration__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD70, int32_t, XsdDuration_get_Seconds, (XsdDuration__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02437760, int32_t, XsdDuration_get_Nanoseconds, (XsdDuration__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02437770, TimeSpan, XsdDuration_ToTimeSpan, (XsdDuration__Boxed * __this, XsdDuration_DurationType__Enum durationType, MethodInfo * method)); -DO_APP_FUNC(0x024377C0, Exception *, XsdDuration_TryToTimeSpan, (XsdDuration__Boxed * __this, TimeSpan result, MethodInfo * method)); -DO_APP_FUNC(0x024377D0, Exception *, XsdDuration_TryToTimeSpan_1, (XsdDuration__Boxed * __this, XsdDuration_DurationType__Enum durationType, TimeSpan result, MethodInfo * method)); -DO_APP_FUNC(0x02437DF0, String *, XsdDuration_ToString, (XsdDuration__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02437E00, String *, XsdDuration_ToString_1, (XsdDuration__Boxed * __this, XsdDuration_DurationType__Enum durationType, MethodInfo * method)); -DO_APP_FUNC(0x024382F0, Exception *, XsdDuration_TryParse, (String * s, XsdDuration result, MethodInfo * method)); -DO_APP_FUNC(0x02438300, Exception *, XsdDuration_TryParse_1, (String * s, XsdDuration_DurationType__Enum durationType, XsdDuration result, MethodInfo * method)); -DO_APP_FUNC(0x02438EE0, String *, XsdDuration_TryParseDigits, (String * s, int32_t offset, bool eatDigits, int32_t result, int32_t numDigits, MethodInfo * method)); +DO_APP_FUNC(0x02437140, void, XsdDuration__ctor, (XsdDuration * __this, bool isNegative, int32_t years, int32_t months, int32_t days, int32_t hours, int32_t minutes, int32_t seconds, int32_t nanoseconds, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB04F0, XsdDuration__ctor__MethodInfo); +DO_APP_FUNC(0x02437410, void, XsdDuration__ctor_1, (XsdDuration * __this, TimeSpan timeSpan, MethodInfo * method)); +DO_APP_FUNC(0x02437420, void, XsdDuration__ctor_2, (XsdDuration * __this, TimeSpan timeSpan, XsdDuration_DurationType__Enum durationType, MethodInfo * method)); +DO_APP_FUNC(0x024376A0, void, XsdDuration__ctor_3, (XsdDuration * __this, String * s, XsdDuration_DurationType__Enum durationType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB03A8, XsdDuration__ctor_3__MethodInfo); +DO_APP_FUNC(0x02437750, bool, XsdDuration_get_IsNegative, (XsdDuration * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, XsdDuration_get_Years, (XsdDuration * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C173E0, int32_t, XsdDuration_get_Months, (XsdDuration * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471920, int32_t, XsdDuration_get_Days, (XsdDuration * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E57F20, int32_t, XsdDuration_get_Hours, (XsdDuration * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, int32_t, XsdDuration_get_Minutes, (XsdDuration * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD70, int32_t, XsdDuration_get_Seconds, (XsdDuration * __this, MethodInfo * method)); +DO_APP_FUNC(0x02437760, int32_t, XsdDuration_get_Nanoseconds, (XsdDuration * __this, MethodInfo * method)); +DO_APP_FUNC(0x02437770, TimeSpan, XsdDuration_ToTimeSpan, (XsdDuration * __this, XsdDuration_DurationType__Enum durationType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0350, XsdDuration_ToTimeSpan__MethodInfo); +DO_APP_FUNC(0x024377C0, Exception *, XsdDuration_TryToTimeSpan, (XsdDuration * __this, TimeSpan * result, MethodInfo * method)); +DO_APP_FUNC(0x024377D0, Exception *, XsdDuration_TryToTimeSpan_1, (XsdDuration * __this, XsdDuration_DurationType__Enum durationType, TimeSpan * result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0368, XsdDuration_TryToTimeSpan_1__MethodInfo); +DO_APP_FUNC(0x02437DF0, String *, XsdDuration_ToString, (XsdDuration * __this, MethodInfo * method)); +DO_APP_FUNC(0x02437E00, String *, XsdDuration_ToString_1, (XsdDuration * __this, XsdDuration_DurationType__Enum durationType, MethodInfo * method)); +DO_APP_FUNC(0x024382F0, Exception *, XsdDuration_TryParse, (String * s, XsdDuration * result, MethodInfo * method)); +DO_APP_FUNC(0x02438300, Exception *, XsdDuration_TryParse_1, (String * s, XsdDuration_DurationType__Enum durationType, XsdDuration * result, MethodInfo * method)); +DO_APP_FUNC(0x02438EE0, String *, XsdDuration_TryParseDigits, (String * s, int32_t * offset, bool eatDigits, int32_t * result, int32_t * numDigits, MethodInfo * method)); DO_APP_FUNC(0x02439030, void, XsdValidator__ctor, (XsdValidator * __this, BaseValidator * validator, MethodInfo * method)); DO_APP_FUNC(0x02439060, void, XsdValidator__ctor_1, (XsdValidator * __this, XmlValidatingReaderImpl * reader, XmlSchemaCollection * schemaCollection, IValidationEventHandling * eventHandling, MethodInfo * method)); DO_APP_FUNC(0x02439090, void, XsdValidator_Init, (XsdValidator * __this, MethodInfo * method)); @@ -62005,7 +71758,7 @@ DO_APP_FUNC(0x02439B70, void, XsdValidator_ProcessInlineSchema, (XsdValidator * DO_APP_FUNC(0x02439E70, void, XsdValidator_ValidateElement, (XsdValidator * __this, MethodInfo * method)); DO_APP_FUNC(0x0243A080, Object *, XsdValidator_ValidateChildElement, (XsdValidator * __this, MethodInfo * method)); DO_APP_FUNC(0x0243A300, void, XsdValidator_ProcessElement, (XsdValidator * __this, Object * particle, MethodInfo * method)); -DO_APP_FUNC(0x0243A750, void, XsdValidator_ProcessXsiAttributes, (XsdValidator * __this, XmlQualifiedName * xsiType, String * xsiNil, MethodInfo * method)); +DO_APP_FUNC(0x0243A750, void, XsdValidator_ProcessXsiAttributes, (XsdValidator * __this, XmlQualifiedName * * xsiType, String * * xsiNil, MethodInfo * method)); DO_APP_FUNC(0x0243B060, void, XsdValidator_ValidateEndElement, (XsdValidator * __this, MethodInfo * method)); DO_APP_FUNC(0x0243B2C0, SchemaElementDecl *, XsdValidator_FastGetElementDecl, (XsdValidator * __this, Object * particle, MethodInfo * method)); DO_APP_FUNC(0x0243B3B0, SchemaElementDecl *, XsdValidator_ThoroughGetElementDecl, (XsdValidator * __this, SchemaElementDecl * elementDecl, XmlQualifiedName * xsiType, String * xsiNil, MethodInfo * method)); @@ -62013,6 +71766,7 @@ DO_APP_FUNC(0x0243B950, void, XsdValidator_ValidateStartElement, (XsdValidator * DO_APP_FUNC(0x0243C2E0, void, XsdValidator_ValidateEndStartElement, (XsdValidator * __this, MethodInfo * method)); DO_APP_FUNC(0x0243C740, void, XsdValidator_LoadSchemaFromLocation, (XsdValidator * __this, String * uri, String * url, MethodInfo * method)); DO_APP_FUNC(0x0243CE10, void, XsdValidator_LoadSchema, (XsdValidator * __this, String * uri, String * url, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB02D8, XsdValidator_LoadSchema__MethodInfo); DO_APP_FUNC(0x023CDD70, bool, XsdValidator_get_HasSchema, (XsdValidator * __this, MethodInfo * method)); DO_APP_FUNC(0x023CDD90, bool, XsdValidator_get_PreserveWhitespace, (XsdValidator * __this, MethodInfo * method)); DO_APP_FUNC(0x0243D010, void, XsdValidator_ProcessTokenizedType, (XsdValidator * __this, XmlTokenizedType__Enum ttype, String * name, MethodInfo * method)); @@ -62073,7 +71827,9 @@ DO_APP_FUNC(0x00EAA8F0, AstNode_AstType__Enum, Variable_get_Type, (Variable * __ DO_APP_FUNC(0x01164370, XPathResultType__Enum, Variable_get_ReturnType, (Variable * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, XPathParser__ctor, (XPathParser * __this, XPathScanner * scanner, MethodInfo * method)); DO_APP_FUNC(0x024408B0, AstNode *, XPathParser_ParseXPathExpression, (String * xpathExpression, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0088, XPathParser_ParseXPathExpression__MethodInfo); DO_APP_FUNC(0x02440B20, AstNode *, XPathParser_ParseExpression, (XPathParser * __this, AstNode * qyInput, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB00A8, XPathParser_ParseExpression__MethodInfo); DO_APP_FUNC(0x02440CF0, AstNode *, XPathParser_ParseOrExpr, (XPathParser * __this, AstNode * qyInput, MethodInfo * method)); DO_APP_FUNC(0x02440E70, AstNode *, XPathParser_ParseAndExpr, (XPathParser * __this, AstNode * qyInput, MethodInfo * method)); DO_APP_FUNC(0x02440FF0, AstNode *, XPathParser_ParseEqualityExpr, (XPathParser * __this, AstNode * qyInput, MethodInfo * method)); @@ -62091,17 +71847,22 @@ DO_APP_FUNC(0x024420D0, AstNode *, XPathParser_ParseRelativeLocationPath, (XPath DO_APP_FUNC(0x02442220, bool, XPathParser_IsStep, (XPathScanner_LexKind__Enum lexKind, MethodInfo * method)); DO_APP_FUNC(0x02442250, AstNode *, XPathParser_ParseStep, (XPathParser * __this, AstNode * qyInput, MethodInfo * method)); DO_APP_FUNC(0x02442580, AstNode *, XPathParser_ParseNodeTest, (XPathParser * __this, AstNode * qyInput, Axis_AxisType__Enum axisType, XPathNodeType__Enum nodeType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0050, XPathParser_ParseNodeTest__MethodInfo); DO_APP_FUNC(0x024429E0, bool, XPathParser_IsPrimaryExpr, (XPathScanner * scanner, MethodInfo * method)); DO_APP_FUNC(0x02442A70, AstNode *, XPathParser_ParsePrimaryExpr, (XPathParser * __this, AstNode * qyInput, MethodInfo * method)); DO_APP_FUNC(0x02442E40, AstNode *, XPathParser_ParseMethod, (XPathParser * __this, AstNode * qyInput, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAFE70, XPathParser_ParseMethod__MethodInfo); DO_APP_FUNC(0x02443750, void, XPathParser_CheckToken, (XPathParser * __this, XPathScanner_LexKind__Enum t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAFE38, XPathParser_CheckToken__MethodInfo); DO_APP_FUNC(0x024437D0, void, XPathParser_PassToken, (XPathParser * __this, XPathScanner_LexKind__Enum t, MethodInfo * method)); DO_APP_FUNC(0x02443800, void, XPathParser_NextLex, (XPathParser * __this, MethodInfo * method)); DO_APP_FUNC(0x02443820, bool, XPathParser_TestOp, (XPathParser * __this, String * op, MethodInfo * method)); DO_APP_FUNC(0x02443890, void, XPathParser_CheckNodeSet, (XPathParser * __this, XPathResultType__Enum t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAFE48, XPathParser_CheckNodeSet__MethodInfo); DO_APP_FUNC(0x02443900, Dictionary_2_System_String_MS_Internal_Xml_XPath_XPathParser_ParamInfo_ *, XPathParser_CreateFunctionTable, (MethodInfo * method)); DO_APP_FUNC(0x02444FD0, Dictionary_2_System_String_MS_Internal_Xml_XPath_Axis_AxisType_ *, XPathParser_CreateAxesTable, (MethodInfo * method)); DO_APP_FUNC(0x02445400, Axis_AxisType__Enum, XPathParser_GetAxis, (XPathParser * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAFDD8, XPathParser_GetAxis__MethodInfo); DO_APP_FUNC(0x02445520, void, XPathParser__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003BCD50, Function_FunctionType__Enum, XPathParser_ParamInfo_get_FType, (XPathParser_ParamInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD70, int32_t, XPathParser_ParamInfo_get_Minargs, (XPathParser_ParamInfo * __this, MethodInfo * method)); @@ -62109,6 +71870,7 @@ DO_APP_FUNC(0x003BC2E0, int32_t, XPathParser_ParamInfo_get_Maxargs, (XPathParser DO_APP_FUNC(0x003BB3E0, XPathResultType__Enum__Array *, XPathParser_ParamInfo_get_ArgTypes, (XPathParser_ParamInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x003BE640, void, XPathParser_ParamInfo__ctor, (XPathParser_ParamInfo * __this, Function_FunctionType__Enum ftype, int32_t minargs, int32_t maxargs, XPathResultType__Enum__Array * argTypes, MethodInfo * method)); DO_APP_FUNC(0x02445BB0, void, XPathScanner__ctor, (XPathScanner * __this, String * xpathExpr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAFD98, XPathScanner__ctor__MethodInfo); DO_APP_FUNC(0x003BB3C0, String *, XPathScanner_get_SourceText, (XPathScanner * __this, MethodInfo * method)); DO_APP_FUNC(0x0127BA30, uint16_t, XPathScanner_get_CurrentChar, (XPathScanner * __this, MethodInfo * method)); DO_APP_FUNC(0x02445CF0, bool, XPathScanner_NextChar, (XPathScanner * __this, MethodInfo * method)); @@ -62120,9 +71882,11 @@ DO_APP_FUNC(0x02445D60, double, XPathScanner_get_NumberValue, (XPathScanner * __ DO_APP_FUNC(0x00436BD0, bool, XPathScanner_get_CanBeFunction, (XPathScanner * __this, MethodInfo * method)); DO_APP_FUNC(0x02445D70, void, XPathScanner_SkipSpace, (XPathScanner * __this, MethodInfo * method)); DO_APP_FUNC(0x02445DF0, bool, XPathScanner_NextLex, (XPathScanner * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAFC60, XPathScanner_NextLex__MethodInfo); DO_APP_FUNC(0x02446430, double, XPathScanner_ScanNumber, (XPathScanner * __this, MethodInfo * method)); DO_APP_FUNC(0x024465D0, double, XPathScanner_ScanFraction, (XPathScanner * __this, MethodInfo * method)); DO_APP_FUNC(0x024466B0, String *, XPathScanner_ScanString, (XPathScanner * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAFC38, XPathScanner_ScanString__MethodInfo); DO_APP_FUNC(0x02446800, String *, XPathScanner_ScanName, (XPathScanner * __this, MethodInfo * method)); DO_APP_FUNC(0x024468B0, void, XPathDocumentNavigator__ctor, (XPathDocumentNavigator * __this, XPathNode__Array * pageCurrent, int32_t idxCurrent, XPathNode__Array * pageParent, int32_t idxParent, MethodInfo * method)); DO_APP_FUNC(0x024469D0, String *, XPathDocumentNavigator_get_Value, (XPathDocumentNavigator * __this, MethodInfo * method)); @@ -62141,33 +71905,33 @@ DO_APP_FUNC(0x02447700, bool, XPathDocumentNavigator_HasLineInfo, (XPathDocument DO_APP_FUNC(0x02447750, int32_t, XPathDocumentNavigator_get_LineNumber, (XPathDocumentNavigator * __this, MethodInfo * method)); DO_APP_FUNC(0x024477D0, int32_t, XPathDocumentNavigator_get_LinePosition, (XPathDocumentNavigator * __this, MethodInfo * method)); DO_APP_FUNC(0x02447870, int32_t, XPathDocumentNavigator_GetPositionHashCode, (XPathDocumentNavigator * __this, MethodInfo * method)); -DO_APP_FUNC(0x02447880, XPathNodeType__Enum, XPathNode_get_NodeType, (XPathNode__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02447890, String *, XPathNode_get_Prefix, (XPathNode__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01923D50, String *, XPathNode_get_LocalName, (XPathNode__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x024478B0, String *, XPathNode_get_NamespaceUri, (XPathNode__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x024478D0, XPathDocument *, XPathNode_get_Document, (XPathNode__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x024478F0, int32_t, XPathNode_get_LineNumber, (XPathNode__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02447920, int32_t, XPathNode_get_LinePosition, (XPathNode__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02447940, int32_t, XPathNode_get_CollapsedLinePosition, (XPathNode__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02447970, XPathNodePageInfo *, XPathNode_get_PageInfo, (XPathNode__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02447990, int32_t, XPathNode_GetParent, (XPathNode__Boxed * __this, XPathNode__Array * pageNode, MethodInfo * method)); -DO_APP_FUNC(0x02447A10, int32_t, XPathNode_GetSibling, (XPathNode__Boxed * __this, XPathNode__Array * pageNode, MethodInfo * method)); -DO_APP_FUNC(0x02447A90, bool, XPathNode_get_IsXmlNamespaceNode, (XPathNode__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02447B30, bool, XPathNode_get_HasSibling, (XPathNode__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02447B40, bool, XPathNode_get_HasCollapsedText, (XPathNode__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02447B50, bool, XPathNode_get_IsText, (XPathNode__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02447BB0, bool, XPathNode_get_HasNamespaceDecls, (XPathNode__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3D0, String *, XPathNode_get_Value, (XPathNode__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x004CB450, void, XPathNodeRef__ctor, (XPathNodeRef__Boxed * __this, XPathNode__Array * page, int32_t idx, MethodInfo * method)); -DO_APP_FUNC(0x00471910, XPathNode__Array *, XPathNodeRef_get_Page, (XPathNodeRef__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471920, int32_t, XPathNodeRef_get_Index, (XPathNodeRef__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02447BC0, int32_t, XPathNodeRef_GetHashCode, (XPathNodeRef__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02447C00, int32_t, XPathNodeHelper_GetLocalNamespaces, (XPathNode__Array * pageElem, int32_t idxElem, XPathNode__Array * pageNmsp, MethodInfo * method)); -DO_APP_FUNC(0x02447CD0, int32_t, XPathNodeHelper_GetInScopeNamespaces, (XPathNode__Array * pageElem, int32_t idxElem, XPathNode__Array * pageNmsp, MethodInfo * method)); -DO_APP_FUNC(0x02447E90, bool, XPathNodeHelper_GetParent, (XPathNode__Array * pageNode, int32_t idxNode, MethodInfo * method)); +DO_APP_FUNC(0x02447880, XPathNodeType__Enum, XPathNode_get_NodeType, (XPathNode * __this, MethodInfo * method)); +DO_APP_FUNC(0x02447890, String *, XPathNode_get_Prefix, (XPathNode * __this, MethodInfo * method)); +DO_APP_FUNC(0x01923D50, String *, XPathNode_get_LocalName, (XPathNode * __this, MethodInfo * method)); +DO_APP_FUNC(0x024478B0, String *, XPathNode_get_NamespaceUri, (XPathNode * __this, MethodInfo * method)); +DO_APP_FUNC(0x024478D0, XPathDocument *, XPathNode_get_Document, (XPathNode * __this, MethodInfo * method)); +DO_APP_FUNC(0x024478F0, int32_t, XPathNode_get_LineNumber, (XPathNode * __this, MethodInfo * method)); +DO_APP_FUNC(0x02447920, int32_t, XPathNode_get_LinePosition, (XPathNode * __this, MethodInfo * method)); +DO_APP_FUNC(0x02447940, int32_t, XPathNode_get_CollapsedLinePosition, (XPathNode * __this, MethodInfo * method)); +DO_APP_FUNC(0x02447970, XPathNodePageInfo *, XPathNode_get_PageInfo, (XPathNode * __this, MethodInfo * method)); +DO_APP_FUNC(0x02447990, int32_t, XPathNode_GetParent, (XPathNode * __this, XPathNode__Array * * pageNode, MethodInfo * method)); +DO_APP_FUNC(0x02447A10, int32_t, XPathNode_GetSibling, (XPathNode * __this, XPathNode__Array * * pageNode, MethodInfo * method)); +DO_APP_FUNC(0x02447A90, bool, XPathNode_get_IsXmlNamespaceNode, (XPathNode * __this, MethodInfo * method)); +DO_APP_FUNC(0x02447B30, bool, XPathNode_get_HasSibling, (XPathNode * __this, MethodInfo * method)); +DO_APP_FUNC(0x02447B40, bool, XPathNode_get_HasCollapsedText, (XPathNode * __this, MethodInfo * method)); +DO_APP_FUNC(0x02447B50, bool, XPathNode_get_IsText, (XPathNode * __this, MethodInfo * method)); +DO_APP_FUNC(0x02447BB0, bool, XPathNode_get_HasNamespaceDecls, (XPathNode * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3D0, String *, XPathNode_get_Value, (XPathNode * __this, MethodInfo * method)); +DO_APP_FUNC(0x004CB450, void, XPathNodeRef__ctor, (XPathNodeRef * __this, XPathNode__Array * page, int32_t idx, MethodInfo * method)); +DO_APP_FUNC(0x00471910, XPathNode__Array *, XPathNodeRef_get_Page, (XPathNodeRef * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471920, int32_t, XPathNodeRef_get_Index, (XPathNodeRef * __this, MethodInfo * method)); +DO_APP_FUNC(0x02447BC0, int32_t, XPathNodeRef_GetHashCode, (XPathNodeRef * __this, MethodInfo * method)); +DO_APP_FUNC(0x02447C00, int32_t, XPathNodeHelper_GetLocalNamespaces, (XPathNode__Array * pageElem, int32_t idxElem, XPathNode__Array * * pageNmsp, MethodInfo * method)); +DO_APP_FUNC(0x02447CD0, int32_t, XPathNodeHelper_GetInScopeNamespaces, (XPathNode__Array * pageElem, int32_t idxElem, XPathNode__Array * * pageNmsp, MethodInfo * method)); +DO_APP_FUNC(0x02447E90, bool, XPathNodeHelper_GetParent, (XPathNode__Array * * pageNode, int32_t * idxNode, MethodInfo * method)); DO_APP_FUNC(0x02447FC0, int32_t, XPathNodeHelper_GetLocation, (XPathNode__Array * pageNode, int32_t idxNode, MethodInfo * method)); -DO_APP_FUNC(0x02448000, bool, XPathNodeHelper_GetTextFollowing, (XPathNode__Array * pageCurrent, int32_t idxCurrent, XPathNode__Array * pageEnd, int32_t idxEnd, MethodInfo * method)); -DO_APP_FUNC(0x02448210, bool, XPathNodeHelper_GetNonDescendant, (XPathNode__Array * pageNode, int32_t idxNode, MethodInfo * method)); +DO_APP_FUNC(0x02448000, bool, XPathNodeHelper_GetTextFollowing, (XPathNode__Array * * pageCurrent, int32_t * idxCurrent, XPathNode__Array * pageEnd, int32_t idxEnd, MethodInfo * method)); +DO_APP_FUNC(0x02448210, bool, XPathNodeHelper_GetNonDescendant, (XPathNode__Array * * pageNode, int32_t * idxNode, MethodInfo * method)); DO_APP_FUNC(0x003BCD50, int32_t, XPathNodePageInfo_get_PageNumber, (XPathNodePageInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD70, int32_t, XPathNodePageInfo_get_NodeCount, (XPathNodePageInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, XPathNode__Array *, XPathNodePageInfo_get_NextPage, (XPathNodePageInfo * __this, MethodInfo * method)); @@ -62185,7 +71949,7 @@ DO_APP_FUNC(0x003AE050, void, EmbeddedAttribute__ctor, (EmbeddedAttribute * __th DO_APP_FUNC(0x003AE050, void, IsReadOnlyAttribute_1__ctor, (IsReadOnlyAttribute_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02E3F2F0, float, AlignmentUtils_RoundToPixelGrid, (float v, float pixelsPerPoint, float offset, MethodInfo * method)); DO_APP_FUNC(0x02E3F320, float, AlignmentUtils_CeilToPixelGrid, (float v, float pixelsPerPoint, float offset, MethodInfo * method)); -DO_APP_FUNC(0x02E3F350, bool, AtlasBase_TryGetAtlas, (AtlasBase * __this, VisualElement * ctx, Texture2D * src, TextureId atlas, RectInt atlasRect, MethodInfo * method)); +DO_APP_FUNC(0x02E3F350, bool, AtlasBase_TryGetAtlas, (AtlasBase * __this, VisualElement * ctx, Texture2D * src, TextureId * atlas, RectInt * atlasRect, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AtlasBase_ReturnAtlas, (AtlasBase * __this, VisualElement * ctx, Texture2D * src, TextureId atlas, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AtlasBase_Reset, (AtlasBase * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AtlasBase_OnAssignedToPanel, (AtlasBase * __this, IPanel * panel, MethodInfo * method)); @@ -62198,14 +71962,14 @@ DO_APP_FUNC(0x02E3F3E0, void, AtlasBase_RepaintTexturedElements, (IPanel * panel DO_APP_FUNC(0x02E3F610, void, AtlasBase_SetDynamicTexture, (AtlasBase * __this, TextureId id, Texture * texture, MethodInfo * method)); DO_APP_FUNC(0x02E3F630, void, AtlasBase__ctor, (AtlasBase * __this, MethodInfo * method)); DO_APP_FUNC(0x02E3F710, void, DynamicAtlasCustomFilter__ctor, (DynamicAtlasCustomFilter * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003ED330, bool, DynamicAtlasCustomFilter_Invoke, (DynamicAtlasCustomFilter * __this, Texture2D * texture, DynamicAtlasFilters__Enum filtersToApply, MethodInfo * method)); +DO_APP_FUNC(0x003ED330, bool, DynamicAtlasCustomFilter_Invoke, (DynamicAtlasCustomFilter * __this, Texture2D * texture, DynamicAtlasFilters__Enum * filtersToApply, MethodInfo * method)); DO_APP_FUNC(0x02E3F850, bool, DynamicAtlas_get_isInitialized, (DynamicAtlas * __this, MethodInfo * method)); DO_APP_FUNC(0x02E3F870, void, DynamicAtlas_OnAssignedToPanel, (DynamicAtlas * __this, IPanel * panel, MethodInfo * method)); DO_APP_FUNC(0x02E3F970, void, DynamicAtlas_OnRemovedFromPanel, (DynamicAtlas * __this, IPanel * panel, MethodInfo * method)); DO_APP_FUNC(0x02E3FA10, void, DynamicAtlas_Reset, (DynamicAtlas * __this, MethodInfo * method)); DO_APP_FUNC(0x02E3FAE0, void, DynamicAtlas_InitPages, (DynamicAtlas * __this, MethodInfo * method)); DO_APP_FUNC(0x02E3FDB0, void, DynamicAtlas_DestroyPages, (DynamicAtlas * __this, MethodInfo * method)); -DO_APP_FUNC(0x02E3FFA0, bool, DynamicAtlas_TryGetAtlas, (DynamicAtlas * __this, VisualElement * ve, Texture2D * src, TextureId atlas, RectInt atlasRect, MethodInfo * method)); +DO_APP_FUNC(0x02E3FFA0, bool, DynamicAtlas_TryGetAtlas, (DynamicAtlas * __this, VisualElement * ve, Texture2D * src, TextureId * atlas, RectInt * atlasRect, MethodInfo * method)); DO_APP_FUNC(0x02E404F0, void, DynamicAtlas_ReturnAtlas, (DynamicAtlas * __this, VisualElement * ve, Texture2D * src, TextureId atlas, MethodInfo * method)); DO_APP_FUNC(0x02E40880, void, DynamicAtlas_OnUpdateDynamicTextures, (DynamicAtlas * __this, IPanel * panel, MethodInfo * method)); DO_APP_FUNC(0x02E40900, bool, DynamicAtlas_IsTextureFormatSupported, (TextureFormat__Enum format, MethodInfo * method)); @@ -62219,7 +71983,9 @@ DO_APP_FUNC(0x02E40BD0, void, DynamicAtlas_set_maxSubTextureSize, (DynamicAtlas DO_APP_FUNC(0x02E40BF0, void, DynamicAtlas_set_customFilter, (DynamicAtlas * __this, DynamicAtlasCustomFilter * value, MethodInfo * method)); DO_APP_FUNC(0x02E40C90, void, DynamicAtlas__ctor, (DynamicAtlas * __this, MethodInfo * method)); DO_APP_FUNC(0x02E40F80, DynamicAtlas_TextureInfo *, DynamicAtlas_TextureInfo_Create, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3D80, DynamicAtlas_TextureInfo_Create__MethodInfo); DO_APP_FUNC(0x02E40FF0, void, DynamicAtlas_TextureInfo_Reset, (DynamicAtlas_TextureInfo * info, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3D58, DynamicAtlas_TextureInfo_Reset__MethodInfo); DO_APP_FUNC(0x02E41080, void, DynamicAtlas_TextureInfo__ctor, (DynamicAtlas_TextureInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x02E410B0, void, DynamicAtlas_TextureInfo__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01DAA0C0, IBinding *, BindableElement_get_binding, (BindableElement * __this, MethodInfo * method)); @@ -62240,18 +72006,28 @@ DO_APP_FUNC(0x02E41770, void, Clickable__ctor, (Clickable * __this, Action * han DO_APP_FUNC(0x02E417B0, void, Clickable__ctor_1, (Clickable * __this, Action_1_UnityEngine_UIElements_EventBase_ * handler, MethodInfo * method)); DO_APP_FUNC(0x02E41910, void, Clickable__ctor_2, (Clickable * __this, Action * handler, MethodInfo * method)); DO_APP_FUNC(0x02E41A80, void, Clickable_OnTimer, (Clickable * __this, TimerState timerState, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD38F0, Clickable_OnTimer__MethodInfo); DO_APP_FUNC(0x02E41B40, bool, Clickable_IsRepeatable, (Clickable * __this, MethodInfo * method)); DO_APP_FUNC(0x02E41B60, void, Clickable_RegisterCallbacksOnTarget, (Clickable * __this, MethodInfo * method)); DO_APP_FUNC(0x02E420A0, void, Clickable_UnregisterCallbacksFromTarget, (Clickable * __this, MethodInfo * method)); DO_APP_FUNC(0x02E42600, void, Clickable_OnMouseDown, (Clickable * __this, MouseDownEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3CA0, Clickable_OnMouseDown__MethodInfo); DO_APP_FUNC(0x02E426F0, void, Clickable_OnMouseMove, (Clickable * __this, MouseMoveEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3C70, Clickable_OnMouseMove__MethodInfo); DO_APP_FUNC(0x02E42770, void, Clickable_OnMouseUp, (Clickable * __this, MouseUpEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3C80, Clickable_OnMouseUp__MethodInfo); DO_APP_FUNC(0x02E428A0, void, Clickable_OnMouseCaptureOut, (Clickable * __this, MouseCaptureOutEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3C90, Clickable_OnMouseCaptureOut__MethodInfo); DO_APP_FUNC(0x02E42930, void, Clickable_OnPointerDown, (Clickable * __this, PointerDownEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3998, Clickable_OnPointerDown__MethodInfo); DO_APP_FUNC(0x02E42AB0, void, Clickable_OnPointerMove, (Clickable * __this, PointerMoveEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD39A8, Clickable_OnPointerMove__MethodInfo); DO_APP_FUNC(0x02E42C10, void, Clickable_OnPointerUp, (Clickable * __this, PointerUpEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3978, Clickable_OnPointerUp__MethodInfo); DO_APP_FUNC(0x02E42DD0, void, Clickable_OnPointerCancel, (Clickable * __this, PointerCancelEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3C40, Clickable_OnPointerCancel__MethodInfo); DO_APP_FUNC(0x02E42EF0, void, Clickable_OnPointerCaptureOut, (Clickable * __this, PointerCaptureOutEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3C58, Clickable_OnPointerCaptureOut__MethodInfo); DO_APP_FUNC(0x02E42FC0, bool, Clickable_ContainsPointer, (Clickable * __this, int32_t pointerId, MethodInfo * method)); DO_APP_FUNC(0x02E43050, bool, Clickable_IsNotMouseEvent, (int32_t pointerId, MethodInfo * method)); DO_APP_FUNC(0x02E430B0, void, Clickable_Invoke, (Clickable * __this, EventBase * evt, MethodInfo * method)); @@ -62261,6 +72037,7 @@ DO_APP_FUNC(0x02E43640, void, Clickable_ProcessMoveEvent, (Clickable * __this, E DO_APP_FUNC(0x02E436B0, void, Clickable_ProcessUpEvent, (Clickable * __this, EventBase * evt, Vector2 localPosition, int32_t pointerId, MethodInfo * method)); DO_APP_FUNC(0x02E43850, void, Clickable_ProcessCancelEvent, (Clickable * __this, EventBase * evt, int32_t pointerId, MethodInfo * method)); DO_APP_FUNC(0x02E43990, void, Clickable__SimulateSingleClick_b__43_0, (Clickable * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3848, Clickable__SimulateSingleClick_b__43_0__MethodInfo); DO_APP_FUNC(0x02E439C0, int32_t, ClickDetector_get_s_DoubleClickTime, (MethodInfo * method)); DO_APP_FUNC(0x02E43A20, void, ClickDetector_set_s_DoubleClickTime, (int32_t value, MethodInfo * method)); DO_APP_FUNC(0x02E43A80, void, ClickDetector__ctor, (ClickDetector * __this, MethodInfo * method)); @@ -62273,17 +72050,17 @@ DO_APP_FUNC(0x02E44C20, void, ClickDetector_Cleanup, (ClickDetector * __this, Li DO_APP_FUNC(0x02E44DD0, void, ClickDetector__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02E44E10, void, ClickDetector_ButtonClickStatus_Reset, (ClickDetector_ButtonClickStatus * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ClickDetector_ButtonClickStatus__ctor, (ClickDetector_ButtonClickStatus * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, Texture2D *, Cursor_get_texture, (Cursor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, Cursor_set_texture, (Cursor__Boxed * __this, Texture2D * value, MethodInfo * method)); -DO_APP_FUNC(0x0171D170, Vector2, Cursor_get_hotspot, (Cursor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01ED3330, void, Cursor_set_hotspot, (Cursor__Boxed * __this, Vector2 value, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, int32_t, Cursor_get_defaultCursorId, (Cursor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD60, void, Cursor_set_defaultCursorId, (Cursor__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x02E44EB0, bool, Cursor_Equals, (Cursor__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02E44F50, bool, Cursor_Equals_1, (Cursor__Boxed * __this, Cursor other, MethodInfo * method)); -DO_APP_FUNC(0x02E45000, int32_t, Cursor_GetHashCode, (Cursor__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Texture2D *, Cursor_get_texture, (Cursor * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, Cursor_set_texture, (Cursor * __this, Texture2D * value, MethodInfo * method)); +DO_APP_FUNC(0x0171D170, Vector2, Cursor_get_hotspot, (Cursor * __this, MethodInfo * method)); +DO_APP_FUNC(0x01ED3330, void, Cursor_set_hotspot, (Cursor * __this, Vector2 value, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, int32_t, Cursor_get_defaultCursorId, (Cursor * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD60, void, Cursor_set_defaultCursorId, (Cursor * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x02E44EB0, bool, Cursor_Equals, (Cursor * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02E44F50, bool, Cursor_Equals_1, (Cursor * __this, Cursor other, MethodInfo * method)); +DO_APP_FUNC(0x02E45000, int32_t, Cursor_GetHashCode, (Cursor * __this, MethodInfo * method)); DO_APP_FUNC(0x02E450D0, bool, Cursor_op_Equality, (Cursor style1, Cursor style2, MethodInfo * method)); -DO_APP_FUNC(0x02E45100, String *, Cursor_ToString, (Cursor__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02E45100, String *, Cursor_ToString, (Cursor * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD20, bool, CursorManager_get_isCursorOverriden, (CursorManager * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD30, void, CursorManager_set_isCursorOverriden, (CursorManager * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x02E451C0, void, CursorManager_SetCursor, (CursorManager * __this, Cursor cursor, MethodInfo * method)); @@ -62303,7 +72080,7 @@ DO_APP_FUNC(0x02E46370, EventBase *, DefaultEventSystem_MakeTouchEvent, (Touch t DO_APP_FUNC(0x02E46490, bool, DefaultEventSystem_ProcessTouchEvents, (DefaultEventSystem * __this, MethodInfo * method)); DO_APP_FUNC(0x02E46AC0, Vector2, DefaultEventSystem_GetRawMoveVector, (DefaultEventSystem * __this, MethodInfo * method)); DO_APP_FUNC(0x02E46C20, bool, DefaultEventSystem_ShouldSendMoveFromInput, (DefaultEventSystem * __this, MethodInfo * method)); -DO_APP_FUNC(0x02E46E40, Vector2, DefaultEventSystem_GetLocalScreenPosition, (Event_1 * evt, Nullable_1_Int32_ targetDisplay, MethodInfo * method)); +DO_APP_FUNC(0x02E46E40, Vector2, DefaultEventSystem_GetLocalScreenPosition, (Event_1 * evt, Nullable_1_Int32_ * targetDisplay, MethodInfo * method)); DO_APP_FUNC(0x02E46EB0, void, DefaultEventSystem__ctor, (DefaultEventSystem * __this, MethodInfo * method)); DO_APP_FUNC(0x02E47180, void, DefaultEventSystem__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02E472B0, bool, DefaultEventSystem_Input_GetButtonDown, (DefaultEventSystem_Input * __this, String * button, MethodInfo * method)); @@ -62321,13 +72098,21 @@ DO_APP_FUNC(0x003AE050, void, DefaultEventSystem_NoInput__ctor, (DefaultEventSys DO_APP_FUNC(0x02E47320, void, DefaultEventSystem_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, DefaultEventSystem_c__ctor, (DefaultEventSystem_c * __this, MethodInfo * method)); DO_APP_FUNC(0x02E473D0, EventBase *, DefaultEventSystem_c__SendIMGUIEvents_b__23_0, (DefaultEventSystem_c * __this, DefaultEventSystem * self, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3558, DefaultEventSystem_c__SendIMGUIEvents_b__23_0__MethodInfo); DO_APP_FUNC(0x02E47430, EventBase *, DefaultEventSystem_c__SendIMGUIEvents_b__23_1, (DefaultEventSystem_c * __this, Vector3 panelPosition, Vector3 panelDelta, DefaultEventSystem * self, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3520, DefaultEventSystem_c__SendIMGUIEvents_b__23_1__MethodInfo); DO_APP_FUNC(0x02E47510, EventBase *, DefaultEventSystem_c__SendIMGUIEvents_b__23_2, (DefaultEventSystem_c * __this, Vector3 panelPosition, Vector3 panelDelta, DefaultEventSystem * self, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3530, DefaultEventSystem_c__SendIMGUIEvents_b__23_2__MethodInfo); DO_APP_FUNC(0x02E47680, EventBase *, DefaultEventSystem_c__SendInputEvents_b__24_0, (DefaultEventSystem_c * __this, DefaultEventSystem * self, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD32E8, DefaultEventSystem_c__SendInputEvents_b__24_0__MethodInfo); DO_APP_FUNC(0x02E476B0, EventBase *, DefaultEventSystem_c__SendInputEvents_b__24_1, (DefaultEventSystem_c * __this, DefaultEventSystem * self, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD32C0, DefaultEventSystem_c__SendInputEvents_b__24_1__MethodInfo); DO_APP_FUNC(0x02E47710, EventBase *, DefaultEventSystem_c__SendInputEvents_b__24_2, (DefaultEventSystem_c * __this, DefaultEventSystem * self, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD32D0, DefaultEventSystem_c__SendInputEvents_b__24_2__MethodInfo); DO_APP_FUNC(0x02E47770, EventBase *, DefaultEventSystem_c__ProcessTouchEvents_b__30_0, (DefaultEventSystem_c * __this, Vector3 panelPosition, Vector3 panelDelta, Touch _touch, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD33F8, DefaultEventSystem_c__ProcessTouchEvents_b__30_0__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, DefaultEventSystem_c___cctor_b__41_0, (DefaultEventSystem_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3418, DefaultEventSystem_c___cctor_b__41_0__MethodInfo); DO_APP_FUNC(0x02E47900, void, DisposeHelper_NotifyDisposedUsed, (IDisposable * disposable, MethodInfo * method)); DO_APP_FUNC(0x02E479C0, void, DropdownMenuEventInfo__ctor, (DropdownMenuEventInfo * __this, EventBase * e, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, DropdownMenuItem__ctor, (DropdownMenuItem * __this, MethodInfo * method)); @@ -62342,11 +72127,12 @@ DO_APP_FUNC(0x02E47D40, void, DropdownMenu_AppendAction, (DropdownMenu * __this, DO_APP_FUNC(0x02E47F70, void, DropdownMenu_InsertSeparator, (DropdownMenu * __this, String * subMenuPath, int32_t atIndex, MethodInfo * method)); DO_APP_FUNC(0x02E48130, void, DropdownMenu_PrepareForDisplay, (DropdownMenu * __this, EventBase * e, MethodInfo * method)); DO_APP_FUNC(0x02E48600, IGenericMenu *, DropdownUtility_CreateDropdown, (MethodInfo * method)); -DO_APP_FUNC(0x02E486A0, void, EventDispatcherGate__ctor, (EventDispatcherGate__Boxed * __this, EventDispatcher_1 * d, MethodInfo * method)); -DO_APP_FUNC(0x02E48770, void, EventDispatcherGate_Dispose, (EventDispatcherGate__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02E48800, bool, EventDispatcherGate_Equals, (EventDispatcherGate__Boxed * __this, EventDispatcherGate other, MethodInfo * method)); -DO_APP_FUNC(0x02E48840, bool, EventDispatcherGate_Equals_1, (EventDispatcherGate__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02E48920, int32_t, EventDispatcherGate_GetHashCode, (EventDispatcherGate__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02E486A0, void, EventDispatcherGate__ctor, (EventDispatcherGate * __this, EventDispatcher_1 * d, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3048, EventDispatcherGate__ctor__MethodInfo); +DO_APP_FUNC(0x02E48770, void, EventDispatcherGate_Dispose, (EventDispatcherGate * __this, MethodInfo * method)); +DO_APP_FUNC(0x02E48800, bool, EventDispatcherGate_Equals, (EventDispatcherGate * __this, EventDispatcherGate other, MethodInfo * method)); +DO_APP_FUNC(0x02E48840, bool, EventDispatcherGate_Equals_1, (EventDispatcherGate * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02E48920, int32_t, EventDispatcherGate_GetHashCode, (EventDispatcherGate * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3B0, PointerDispatchState *, EventDispatcher_1_get_pointerState, (EventDispatcher_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02E48950, EventDispatcher_1 *, EventDispatcher_1_CreateForRuntime, (IList_1_UnityEngine_UIElements_IEventDispatchingStrategy_ * strategies, MethodInfo * method)); DO_APP_FUNC(0x02E489C0, void, EventDispatcher_1__ctor, (EventDispatcher_1 * __this, IList_1_UnityEngine_UIElements_IEventDispatchingStrategy_ * strategies, MethodInfo * method)); @@ -62356,6 +72142,7 @@ DO_APP_FUNC(0x02E48E10, void, EventDispatcher_1_Dispatch, (EventDispatcher_1 * _ DO_APP_FUNC(0x02E491C0, void, EventDispatcher_1_CloseGate, (EventDispatcher_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02E491D0, void, EventDispatcher_1_OpenGate, (EventDispatcher_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02E49250, void, EventDispatcher_1_ProcessEventQueue, (EventDispatcher_1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2F08, EventDispatcher_1_ProcessEventQueue__MethodInfo); DO_APP_FUNC(0x02E496C0, void, EventDispatcher_1_ProcessEvent, (EventDispatcher_1 * __this, EventBase * evt, IPanel * panel, MethodInfo * method)); DO_APP_FUNC(0x02E49BB0, void, EventDispatcher_1_ApplyDispatchingStrategies, (EventDispatcher_1 * __this, EventBase * evt, IPanel * panel, bool imguiEventIsInitiallyUsed, MethodInfo * method)); DO_APP_FUNC(0x02E49E90, void, EventDispatcher_1__cctor, (MethodInfo * method)); @@ -62366,8 +72153,10 @@ DO_APP_FUNC(0x003CD440, int32_t, Focusable_get_tabIndex, (Focusable * __this, Me DO_APP_FUNC(0x006D8870, void, Focusable_set_tabIndex, (Focusable * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x02E4A340, bool, Focusable_get_delegatesFocus, (Focusable * __this, MethodInfo * method)); DO_APP_FUNC(0x02E4A350, void, Focusable_set_delegatesFocus, (Focusable * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2E90, Focusable_set_delegatesFocus__MethodInfo); DO_APP_FUNC(0x02E4A430, bool, Focusable_get_excludeFromFocusRing, (Focusable * __this, MethodInfo * method)); DO_APP_FUNC(0x02E4A440, void, Focusable_set_excludeFromFocusRing, (Focusable * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2E60, Focusable_set_excludeFromFocusRing__MethodInfo); DO_APP_FUNC(0x003BCC40, bool, Focusable_get_canGrabFocus, (Focusable * __this, MethodInfo * method)); DO_APP_FUNC(0x02E4A520, void, Focusable_Focus, (Focusable * __this, MethodInfo * method)); DO_APP_FUNC(0x02E4A650, void, Focusable_Blur, (Focusable * __this, MethodInfo * method)); @@ -62407,15 +72196,19 @@ DO_APP_FUNC(0x02E4C0B0, void, FocusController_SwitchFocus, (FocusController * __ DO_APP_FUNC(0x02E4C180, void, FocusController_SwitchFocus_1, (FocusController * __this, Focusable * newFocusedElement, FocusChangeDirection * direction, bool bIsFocusDelegated, DispatchMode__Enum dispatchMode, MethodInfo * method)); DO_APP_FUNC(0x02E4C480, Focusable *, FocusController_SwitchFocusOnEvent, (FocusController * __this, EventBase * e, MethodInfo * method)); DO_APP_FUNC(0x02E4C760, void, FocusController_ReevaluateFocus, (FocusController * __this, MethodInfo * method)); -DO_APP_FUNC(0x02E4C860, bool, FocusController_GetFocusableParentForPointerEvent, (FocusController * __this, Focusable * target, Focusable * effectiveTarget, MethodInfo * method)); +DO_APP_FUNC(0x02E4C860, bool, FocusController_GetFocusableParentForPointerEvent, (FocusController * __this, Focusable * target, Focusable * * effectiveTarget, MethodInfo * method)); DO_APP_FUNC(0x00A2A110, int32_t, FocusController_get_imguiKeyboardControl, (FocusController * __this, MethodInfo * method)); DO_APP_FUNC(0x00BC6590, void, FocusController_set_imguiKeyboardControl, (FocusController * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x02E4CA60, void, FocusController_SyncIMGUIFocus, (FocusController * __this, int32_t imguiKeyboardControlID, Focusable * imguiContainerHavingKeyboardControl, bool forceSwitch, MethodInfo * method)); DO_APP_FUNC(0x02E4CB20, void, GroupBoxUtility_OnOptionAttachToPanel, (AttachToPanelEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2800, GroupBoxUtility_OnOptionAttachToPanel__MethodInfo); DO_APP_FUNC(0x02E4CD90, void, GroupBoxUtility_OnOptionDetachFromPanel, (DetachFromPanelEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2808, GroupBoxUtility_OnOptionDetachFromPanel__MethodInfo); DO_APP_FUNC(0x02E4CF40, IGroupManager *, GroupBoxUtility_FindOrCreateGroupManager, (IGroupBox * groupBox, MethodInfo * method)); DO_APP_FUNC(0x02E4D590, void, GroupBoxUtility_OnGroupBoxDetachedFromPanel, (DetachFromPanelEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2C00, GroupBoxUtility_OnGroupBoxDetachedFromPanel__MethodInfo); DO_APP_FUNC(0x02E4D660, void, GroupBoxUtility_OnPanelDestroyed, (BaseVisualElementPanel * panel, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2C10, GroupBoxUtility_OnPanelDestroyed__MethodInfo); DO_APP_FUNC(0x02E4D850, void, GroupBoxUtility__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02E4DAE0, void, DefaultGroupManager_OnOptionSelectionChanged, (DefaultGroupManager * __this, IGroupBoxOption * selectedOption, MethodInfo * method)); DO_APP_FUNC(0x02E4DD60, void, DefaultGroupManager_RegisterOption, (DefaultGroupManager * __this, IGroupBoxOption * option, MethodInfo * method)); @@ -62438,12 +72231,14 @@ DO_APP_FUNC(0x02E4E390, void, IMGUIContainer__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02E4EC60, void, IMGUIContainer__ctor, (IMGUIContainer * __this, MethodInfo * method)); DO_APP_FUNC(0x02E4EC70, void, IMGUIContainer__ctor_1, (IMGUIContainer * __this, Action * onGUIHandler, MethodInfo * method)); DO_APP_FUNC(0x02E4F0F0, void, IMGUIContainer_OnGenerateVisualContent, (IMGUIContainer * __this, MeshGenerationContext * mgc, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2B08, IMGUIContainer_OnGenerateVisualContent__MethodInfo); DO_APP_FUNC(0x02E4F260, void, IMGUIContainer_SaveGlobals, (IMGUIContainer * __this, MethodInfo * method)); DO_APP_FUNC(0x02E4F650, void, IMGUIContainer_RestoreGlobals, (IMGUIContainer * __this, MethodInfo * method)); DO_APP_FUNC(0x02E4FA50, void, IMGUIContainer_DoOnGUI, (IMGUIContainer * __this, Event_1 * evt, Matrix4x4 parentTransform, Rect clippingRect, bool isComputingLayout, Rect layoutSize, Action * onGUIHandler, bool canAffectFocus, MethodInfo * method)); DO_APP_FUNC(0x02E513E0, void, IMGUIContainer_MarkDirtyLayout, (IMGUIContainer * __this, MethodInfo * method)); DO_APP_FUNC(0x02E51420, void, IMGUIContainer_HandleEvent, (IMGUIContainer * __this, EventBase * evt, MethodInfo * method)); DO_APP_FUNC(0x02E514B0, void, IMGUIContainer_DoIMGUIRepaint, (IMGUIContainer * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD29B8, IMGUIContainer_DoIMGUIRepaint__MethodInfo); DO_APP_FUNC(0x02E51850, bool, IMGUIContainer_SendEventToIMGUI, (IMGUIContainer * __this, EventBase * evt, bool canAffectFocus, bool verifyBounds, MethodInfo * method)); DO_APP_FUNC(0x02E51B80, bool, IMGUIContainer_SendEventToIMGUIRaw, (IMGUIContainer * __this, EventBase * evt, bool canAffectFocus, bool verifyBounds, MethodInfo * method)); DO_APP_FUNC(0x02E51C40, bool, IMGUIContainer_VerifyBounds, (IMGUIContainer * __this, EventBase * evt, MethodInfo * method)); @@ -62458,10 +72253,11 @@ DO_APP_FUNC(0x02E52E60, void, IMGUIContainer_ExecuteDefaultAction, (IMGUIContain DO_APP_FUNC(0x02E531C0, void, IMGUIContainer_SetFoldoutDepthClass, (IMGUIContainer * __this, MethodInfo * method)); DO_APP_FUNC(0x02E53380, Vector2, IMGUIContainer_DoMeasure, (IMGUIContainer * __this, float desiredWidth, VisualElement_MeasureMode__Enum widthMode, float desiredHeight, VisualElement_MeasureMode__Enum heightMode, MethodInfo * method)); DO_APP_FUNC(0x02E53820, Rect, IMGUIContainer_GetCurrentClipRect, (IMGUIContainer * __this, MethodInfo * method)); -DO_APP_FUNC(0x02E538A0, void, IMGUIContainer_GetCurrentTransformAndClip, (IMGUIContainer * container, Event_1 * evt, Matrix4x4 transform, Rect clipRect, MethodInfo * method)); +DO_APP_FUNC(0x02E538A0, void, IMGUIContainer_GetCurrentTransformAndClip, (IMGUIContainer * container, Event_1 * evt, Matrix4x4 * transform, Rect * clipRect, MethodInfo * method)); DO_APP_FUNC(0x02E53B20, void, IMGUIContainer_Dispose, (IMGUIContainer * __this, MethodInfo * method)); DO_APP_FUNC(0x02E53B90, void, IMGUIContainer_Dispose_1, (IMGUIContainer * __this, bool disposeManaged, MethodInfo * method)); DO_APP_FUNC(0x02E53C10, void, IMGUIContainer__DoOnGUI_b__57_0, (IMGUIContainer * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2A00, IMGUIContainer__DoOnGUI_b__57_0__MethodInfo); DO_APP_FUNC(0x02E53C40, void, IMGUIContainer_UxmlFactory__ctor, (IMGUIContainer_UxmlFactory * __this, MethodInfo * method)); DO_APP_FUNC(0x02E53C80, void, IMGUIContainer_UxmlTraits__ctor, (IMGUIContainer_UxmlTraits * __this, MethodInfo * method)); DO_APP_FUNC(0x02E53CF0, void, ImmediateModeException__ctor, (ImmediateModeException * __this, Exception * inner, MethodInfo * method)); @@ -62469,26 +72265,30 @@ DO_APP_FUNC(0x003AE960, void, KeyboardNavigationManipulator__ctor, (KeyboardNavi DO_APP_FUNC(0x02E53D70, void, KeyboardNavigationManipulator_RegisterCallbacksOnTarget, (KeyboardNavigationManipulator * __this, MethodInfo * method)); DO_APP_FUNC(0x02E53FB0, void, KeyboardNavigationManipulator_UnregisterCallbacksFromTarget, (KeyboardNavigationManipulator * __this, MethodInfo * method)); DO_APP_FUNC(0x02E54230, void, KeyboardNavigationManipulator_OnKeyDown, (KeyboardNavigationManipulator * __this, KeyDownEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2830, KeyboardNavigationManipulator_OnKeyDown__MethodInfo); DO_APP_FUNC(0x02E54510, void, KeyboardNavigationManipulator_OnRuntimeKeyDown, (KeyboardNavigationManipulator * __this, KeyDownEvent * evt, MethodInfo * method)); DO_APP_FUNC(0x02E54620, void, KeyboardNavigationManipulator_OnEditorKeyDown, (KeyboardNavigationManipulator * __this, KeyDownEvent * evt, MethodInfo * method)); DO_APP_FUNC(0x02E547A0, void, KeyboardNavigationManipulator_OnNavigationCancel, (KeyboardNavigationManipulator * __this, NavigationCancelEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2840, KeyboardNavigationManipulator_OnNavigationCancel__MethodInfo); DO_APP_FUNC(0x02E547C0, void, KeyboardNavigationManipulator_OnNavigationSubmit, (KeyboardNavigationManipulator * __this, NavigationSubmitEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2828, KeyboardNavigationManipulator_OnNavigationSubmit__MethodInfo); DO_APP_FUNC(0x02E547E0, void, KeyboardNavigationManipulator_OnNavigationMove, (KeyboardNavigationManipulator * __this, NavigationMoveEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2820, KeyboardNavigationManipulator_OnNavigationMove__MethodInfo); DO_APP_FUNC(0x02E54850, void, KeyboardNavigationManipulator_Invoke, (KeyboardNavigationManipulator * __this, KeyboardNavigationOperation__Enum operation, EventBase * evt, MethodInfo * method)); -DO_APP_FUNC(0x02E54870, KeyboardNavigationOperation__Enum, KeyboardNavigationManipulator__OnRuntimeKeyDown_g__GetOperation_5_0, (KeyboardNavigationManipulator_c_DisplayClass5_0 param_0000f918, MethodInfo * method)); -DO_APP_FUNC(0x02E54930, KeyboardNavigationOperation__Enum, KeyboardNavigationManipulator__OnEditorKeyDown_g__GetOperation_6_0, (KeyboardNavigationManipulator_c_DisplayClass6_0 param_0000f919, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, MouseButton__Enum_1, ManipulatorActivationFilter_get_button, (ManipulatorActivationFilter__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00959BA0, void, ManipulatorActivationFilter_set_button, (ManipulatorActivationFilter__Boxed * __this, MouseButton__Enum_1 value, MethodInfo * method)); -DO_APP_FUNC(0x00C173E0, EventModifiers__Enum, ManipulatorActivationFilter_get_modifiers, (ManipulatorActivationFilter__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471920, int32_t, ManipulatorActivationFilter_get_clickCount, (ManipulatorActivationFilter__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02E54A70, bool, ManipulatorActivationFilter_Equals, (ManipulatorActivationFilter__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02E54B10, bool, ManipulatorActivationFilter_Equals_1, (ManipulatorActivationFilter__Boxed * __this, ManipulatorActivationFilter other, MethodInfo * method)); -DO_APP_FUNC(0x02E54B30, int32_t, ManipulatorActivationFilter_GetHashCode, (ManipulatorActivationFilter__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02E54B50, bool, ManipulatorActivationFilter_Matches, (ManipulatorActivationFilter__Boxed * __this, IMouseEvent * e, MethodInfo * method)); -DO_APP_FUNC(0x02E54C20, bool, ManipulatorActivationFilter_HasModifiers, (ManipulatorActivationFilter__Boxed * __this, IMouseEvent * e, MethodInfo * method)); -DO_APP_FUNC(0x02E54D10, bool, ManipulatorActivationFilter_Matches_1, (ManipulatorActivationFilter__Boxed * __this, IPointerEvent * e, MethodInfo * method)); -DO_APP_FUNC(0x02E54DE0, bool, ManipulatorActivationFilter_HasModifiers_1, (ManipulatorActivationFilter__Boxed * __this, IPointerEvent * e, MethodInfo * method)); -DO_APP_FUNC(0x02E54ED0, bool, ManipulatorActivationFilter_MatchModifiers, (ManipulatorActivationFilter__Boxed * __this, bool alt, bool ctrl, bool shift, bool command, MethodInfo * method)); +DO_APP_FUNC(0x02E54870, KeyboardNavigationOperation__Enum, KeyboardNavigationManipulator__OnRuntimeKeyDown_g__GetOperation_5_0, (KeyboardNavigationManipulator_c_DisplayClass5_0 * param_0000f918, MethodInfo * method)); +DO_APP_FUNC(0x02E54930, KeyboardNavigationOperation__Enum, KeyboardNavigationManipulator__OnEditorKeyDown_g__GetOperation_6_0, (KeyboardNavigationManipulator_c_DisplayClass6_0 * param_0000f919, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, MouseButton__Enum_1, ManipulatorActivationFilter_get_button, (ManipulatorActivationFilter * __this, MethodInfo * method)); +DO_APP_FUNC(0x00959BA0, void, ManipulatorActivationFilter_set_button, (ManipulatorActivationFilter * __this, MouseButton__Enum_1 value, MethodInfo * method)); +DO_APP_FUNC(0x00C173E0, EventModifiers__Enum, ManipulatorActivationFilter_get_modifiers, (ManipulatorActivationFilter * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471920, int32_t, ManipulatorActivationFilter_get_clickCount, (ManipulatorActivationFilter * __this, MethodInfo * method)); +DO_APP_FUNC(0x02E54A70, bool, ManipulatorActivationFilter_Equals, (ManipulatorActivationFilter * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02E54B10, bool, ManipulatorActivationFilter_Equals_1, (ManipulatorActivationFilter * __this, ManipulatorActivationFilter other, MethodInfo * method)); +DO_APP_FUNC(0x02E54B30, int32_t, ManipulatorActivationFilter_GetHashCode, (ManipulatorActivationFilter * __this, MethodInfo * method)); +DO_APP_FUNC(0x02E54B50, bool, ManipulatorActivationFilter_Matches, (ManipulatorActivationFilter * __this, IMouseEvent * e, MethodInfo * method)); +DO_APP_FUNC(0x02E54C20, bool, ManipulatorActivationFilter_HasModifiers, (ManipulatorActivationFilter * __this, IMouseEvent * e, MethodInfo * method)); +DO_APP_FUNC(0x02E54D10, bool, ManipulatorActivationFilter_Matches_1, (ManipulatorActivationFilter * __this, IPointerEvent * e, MethodInfo * method)); +DO_APP_FUNC(0x02E54DE0, bool, ManipulatorActivationFilter_HasModifiers_1, (ManipulatorActivationFilter * __this, IPointerEvent * e, MethodInfo * method)); +DO_APP_FUNC(0x02E54ED0, bool, ManipulatorActivationFilter_MatchModifiers, (ManipulatorActivationFilter * __this, bool alt, bool ctrl, bool shift, bool command, MethodInfo * method)); DO_APP_FUNC(0x015C0B20, VisualElement *, Manipulator_get_target, (Manipulator * __this, MethodInfo * method)); DO_APP_FUNC(0x02E54F60, void, Manipulator_set_target, (Manipulator * __this, VisualElement * value, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Manipulator__ctor, (Manipulator * __this, MethodInfo * method)); @@ -62626,7 +72426,7 @@ DO_APP_FUNC(0x02E5A560, void, BaseRuntimePanel_Repaint, (BaseRuntimePanel * __th DO_APP_FUNC(0x018BC4F0, Func_2_UnityEngine_Vector2_UnityEngine_Vector2_ *, BaseRuntimePanel_get_screenToPanelSpace, (BaseRuntimePanel * __this, MethodInfo * method)); DO_APP_FUNC(0x02E5AD70, void, BaseRuntimePanel_set_screenToPanelSpace, (BaseRuntimePanel * __this, Func_2_UnityEngine_Vector2_UnityEngine_Vector2_ * value, MethodInfo * method)); DO_APP_FUNC(0x02E5AE40, Vector2, BaseRuntimePanel_ScreenToPanel, (BaseRuntimePanel * __this, Vector2 screen, MethodInfo * method)); -DO_APP_FUNC(0x02E5AE90, bool, BaseRuntimePanel_ScreenToPanel_1, (BaseRuntimePanel * __this, Vector2 screenPosition, Vector2 screenDelta, Vector2 panelPosition, Vector2 panelDelta, bool allowOutside, MethodInfo * method)); +DO_APP_FUNC(0x02E5AE90, bool, BaseRuntimePanel_ScreenToPanel_1, (BaseRuntimePanel * __this, Vector2 screenPosition, Vector2 screenDelta, Vector2 * panelPosition, Vector2 * panelDelta, bool allowOutside, MethodInfo * method)); DO_APP_FUNC(0x02E5B130, void, BaseRuntimePanel_AssignPanelToComponents, (BaseRuntimePanel * __this, BaseRuntimePanel * panel, MethodInfo * method)); DO_APP_FUNC(0x02E5B560, void, BaseRuntimePanel_PointerLeavesPanel, (BaseRuntimePanel * __this, int32_t pointerId, Vector2 position, MethodInfo * method)); DO_APP_FUNC(0x02E5B630, void, BaseRuntimePanel_PointerEntersPanel, (BaseRuntimePanel * __this, int32_t pointerId, Vector2 position, MethodInfo * method)); @@ -62634,6 +72434,7 @@ DO_APP_FUNC(0x02E5B6D0, void, BaseRuntimePanel__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02E5B820, void, BaseRuntimePanel_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BaseRuntimePanel_c__ctor, (BaseRuntimePanel_c * __this, MethodInfo * method)); DO_APP_FUNC(0x00420A60, Vector2, BaseRuntimePanel_c___cctor_b__44_0, (BaseRuntimePanel_c * __this, Vector2 p, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD26C8, BaseRuntimePanel_c___cctor_b__44_0__MethodInfo); DO_APP_FUNC(0x02E5B8D0, PointerDispatchState *, PointerCaptureHelper_GetStateFor, (IEventHandler * handler, MethodInfo * method)); DO_APP_FUNC(0x02E5B970, bool, PointerCaptureHelper_HasPointerCapture, (IEventHandler * handler, int32_t pointerId, MethodInfo * method)); DO_APP_FUNC(0x02E5BA50, void, PointerCaptureHelper_CapturePointer, (IEventHandler * handler, int32_t pointerId, MethodInfo * method)); @@ -62659,14 +72460,14 @@ DO_APP_FUNC(0x02E5CE50, bool, PointerManipulator_CanStartManipulation, (PointerM DO_APP_FUNC(0x02E5D080, bool, PointerManipulator_CanStopManipulation, (PointerManipulator * __this, IPointerEvent * e, MethodInfo * method)); DO_APP_FUNC(0x02E556E0, void, PointerManipulator__ctor, (PointerManipulator * __this, MethodInfo * method)); DO_APP_FUNC(0x02E5D0F0, Matrix4x4, ProjectionUtils_Ortho, (float left, float right, float bottom, float top, float near_1, float far_1, MethodInfo * method)); -DO_APP_FUNC(0x00471910, int64_t, TimerState_get_start, (TimerState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9A2A0, void, TimerState_set_start, (TimerState__Boxed * __this, int64_t value, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, int64_t, TimerState_get_now, (TimerState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01ED3330, void, TimerState_set_now, (TimerState__Boxed * __this, int64_t value, MethodInfo * method)); -DO_APP_FUNC(0x02E5D250, int64_t, TimerState_get_deltaTime, (TimerState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02E5D260, bool, TimerState_Equals, (TimerState__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02E5D300, bool, TimerState_Equals_1, (TimerState__Boxed * __this, TimerState other, MethodInfo * method)); -DO_APP_FUNC(0x02E5D330, int32_t, TimerState_GetHashCode, (TimerState__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, int64_t, TimerState_get_start, (TimerState * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9A2A0, void, TimerState_set_start, (TimerState * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, int64_t, TimerState_get_now, (TimerState * __this, MethodInfo * method)); +DO_APP_FUNC(0x01ED3330, void, TimerState_set_now, (TimerState * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC(0x02E5D250, int64_t, TimerState_get_deltaTime, (TimerState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02E5D260, bool, TimerState_Equals, (TimerState * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02E5D300, bool, TimerState_Equals_1, (TimerState * __this, TimerState other, MethodInfo * method)); +DO_APP_FUNC(0x02E5D330, int32_t, TimerState_GetHashCode, (TimerState * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, int64_t, ScheduledItem_get_startMs, (ScheduledItem * __this, MethodInfo * method)); DO_APP_FUNC(0x00A79C30, void, ScheduledItem_set_startMs, (ScheduledItem * __this, int64_t value, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, int64_t, ScheduledItem_get_delayMs, (ScheduledItem * __this, MethodInfo * method)); @@ -62682,19 +72483,23 @@ DO_APP_FUNC(0x02E5D4E0, void, ScheduledItem__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02E5D920, void, ScheduledItem_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ScheduledItem_c__ctor, (ScheduledItem_c * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, ScheduledItem_c___cctor_b__25_0, (ScheduledItem_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2638, ScheduledItem_c___cctor_b__25_0__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, ScheduledItem_c___cctor_b__25_1, (ScheduledItem_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2628, ScheduledItem_c___cctor_b__25_1__MethodInfo); DO_APP_FUNC(0x02E5D9D0, void, TimerEventScheduler_Schedule, (TimerEventScheduler * __this, ScheduledItem * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6FC0, TimerEventScheduler_Schedule__MethodInfo); DO_APP_FUNC(0x02E5DBB0, bool, TimerEventScheduler_RemovedScheduledItemAt, (TimerEventScheduler * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x02E5DC30, void, TimerEventScheduler_Unschedule, (TimerEventScheduler * __this, ScheduledItem * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6F10, TimerEventScheduler_Unschedule__MethodInfo); DO_APP_FUNC(0x02E5DF00, bool, TimerEventScheduler_PrivateUnSchedule, (TimerEventScheduler * __this, ScheduledItem * sItem, MethodInfo * method)); DO_APP_FUNC(0x02E5E030, void, TimerEventScheduler_UpdateScheduledEvents, (TimerEventScheduler * __this, MethodInfo * method)); DO_APP_FUNC(0x02E5E990, void, TimerEventScheduler__ctor, (TimerEventScheduler * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CED740, float, Spacing_get_horizontal, (Spacing__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CED750, float, Spacing_get_vertical, (Spacing__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003CAFE0, void, Spacing__ctor, (Spacing__Boxed * __this, float left, float top, float right, float bottom, MethodInfo * method)); +DO_APP_FUNC(0x02CED740, float, Spacing_get_horizontal, (Spacing * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CED750, float, Spacing_get_vertical, (Spacing * __this, MethodInfo * method)); +DO_APP_FUNC(0x003CAFE0, void, Spacing__ctor, (Spacing * __this, float left, float top, float right, float bottom, MethodInfo * method)); DO_APP_FUNC(0x02E5EBD0, Rect, Spacing_op_Subtraction, (Rect r, Spacing a, MethodInfo * method)); DO_APP_FUNC(0x02E5EC40, CursorPositionStylePainterParameters, CursorPositionStylePainterParameters_GetDefault, (VisualElement * ve, String * text, MethodInfo * method)); -DO_APP_FUNC(0x02E5EEF0, TextNativeSettings, CursorPositionStylePainterParameters_GetTextNativeSettings, (CursorPositionStylePainterParameters__Boxed * __this, float scaling, MethodInfo * method)); +DO_APP_FUNC(0x02E5EEF0, TextNativeSettings, CursorPositionStylePainterParameters_GetTextNativeSettings, (CursorPositionStylePainterParameters * __this, float scaling, MethodInfo * method)); DO_APP_FUNC(0x02E5F080, bool, VisualElement_get_hasRunningAnimations, (VisualElement * __this, MethodInfo * method)); DO_APP_FUNC(0x02E5F0E0, bool, VisualElement_get_hasCompletedAnimations, (VisualElement * __this, MethodInfo * method)); DO_APP_FUNC(0x00421680, int32_t, VisualElement_UnityEngine_UIElements_IStylePropertyAnimations_get_runningAnimationCount, (VisualElement * __this, MethodInfo * method)); @@ -62720,9 +72525,9 @@ DO_APP_FUNC(0x02E60300, void, VisualElement_UnityEngine_UIElements_IStylePropert DO_APP_FUNC(0x02E60380, void, VisualElement_UnityEngine_UIElements_IStylePropertyAnimations_CancelAllAnimations, (VisualElement * __this, MethodInfo * method)); DO_APP_FUNC(0x02E60480, void, VisualElement_UnityEngine_UIElements_IStylePropertyAnimations_UpdateAnimation, (VisualElement * __this, StylePropertyId__Enum id, MethodInfo * method)); DO_APP_FUNC(0x02E60500, void, VisualElement_UnityEngine_UIElements_IStylePropertyAnimations_GetAllAnimations, (VisualElement * __this, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outPropertyIds, MethodInfo * method)); -DO_APP_FUNC(0x02E60670, bool, VisualElement_TryConvertLengthUnits, (VisualElement * __this, StylePropertyId__Enum id, Length from, Length to, int32_t subPropertyIndex, MethodInfo * method)); -DO_APP_FUNC(0x02E60900, bool, VisualElement_TryConvertTransformOriginUnits, (VisualElement * __this, TransformOrigin from, TransformOrigin to, MethodInfo * method)); -DO_APP_FUNC(0x02E609B0, bool, VisualElement_TryConvertTranslateUnits, (VisualElement * __this, Translate_1 from, Translate_1 to, MethodInfo * method)); +DO_APP_FUNC(0x02E60670, bool, VisualElement_TryConvertLengthUnits, (VisualElement * __this, StylePropertyId__Enum id, Length * from, Length * to, int32_t subPropertyIndex, MethodInfo * method)); +DO_APP_FUNC(0x02E60900, bool, VisualElement_TryConvertTransformOriginUnits, (VisualElement * __this, TransformOrigin * from, TransformOrigin * to, MethodInfo * method)); +DO_APP_FUNC(0x02E609B0, bool, VisualElement_TryConvertTranslateUnits, (VisualElement * __this, Translate_1 * from, Translate_1 * to, MethodInfo * method)); DO_APP_FUNC(0x02E60A60, Nullable_1_Single_, VisualElement_GetParentSizeForLengthConversion, (VisualElement * __this, StylePropertyId__Enum id, int32_t subPropertyIndex, MethodInfo * method)); DO_APP_FUNC(0x02E60CA0, bool, VisualElement_get_isCompositeRoot, (VisualElement * __this, MethodInfo * method)); DO_APP_FUNC(0x02E60CB0, void, VisualElement_set_isCompositeRoot, (VisualElement * __this, bool value, MethodInfo * method)); @@ -62770,8 +72575,8 @@ DO_APP_FUNC(0x02E62F40, void, VisualElement_set_isWorldTransformDirty, (VisualEl DO_APP_FUNC(0x02E62F70, bool, VisualElement_get_isWorldTransformInverseDirty, (VisualElement * __this, MethodInfo * method)); DO_APP_FUNC(0x02E62F80, void, VisualElement_set_isWorldTransformInverseDirty, (VisualElement * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x02E62FB0, Matrix4x4, VisualElement_get_worldTransform, (VisualElement * __this, MethodInfo * method)); -DO_APP_FUNC(0x02E63020, Matrix4x4, VisualElement_get_worldTransformRef, (VisualElement * __this, MethodInfo * method)); -DO_APP_FUNC(0x02E63050, Matrix4x4, VisualElement_get_worldTransformInverse, (VisualElement * __this, MethodInfo * method)); +DO_APP_FUNC(0x02E63020, Matrix4x4 *, VisualElement_get_worldTransformRef, (VisualElement * __this, MethodInfo * method)); +DO_APP_FUNC(0x02E63050, Matrix4x4 *, VisualElement_get_worldTransformInverse, (VisualElement * __this, MethodInfo * method)); DO_APP_FUNC(0x02E63110, void, VisualElement_UpdateWorldTransform, (VisualElement * __this, MethodInfo * method)); DO_APP_FUNC(0x02E63420, void, VisualElement_UpdateWorldTransformInverse, (VisualElement * __this, MethodInfo * method)); DO_APP_FUNC(0x02E634D0, bool, VisualElement_get_isWorldClipDirty, (VisualElement * __this, MethodInfo * method)); @@ -62798,7 +72603,7 @@ DO_APP_FUNC(0x02E64410, String *, VisualElement_get_fullTypeName, (VisualElement DO_APP_FUNC(0x02E644C0, String *, VisualElement_get_typeName, (VisualElement * __this, MethodInfo * method)); DO_APP_FUNC(0x02E644F0, YogaNode *, VisualElement_get_yogaNode, (VisualElement * __this, MethodInfo * method)); DO_APP_FUNC(0x02E64500, void, VisualElement_set_yogaNode, (VisualElement * __this, YogaNode * value, MethodInfo * method)); -DO_APP_FUNC(0x02E64560, ComputedStyle, VisualElement_get_computedStyle, (VisualElement * __this, MethodInfo * method)); +DO_APP_FUNC(0x02E64560, ComputedStyle *, VisualElement_get_computedStyle, (VisualElement * __this, MethodInfo * method)); DO_APP_FUNC(0x02E64570, bool, VisualElement_get_hasInlineStyle, (VisualElement * __this, MethodInfo * method)); DO_APP_FUNC(0x02E64580, bool, VisualElement_get_styleInitialized, (VisualElement * __this, MethodInfo * method)); DO_APP_FUNC(0x02E64590, void, VisualElement_set_styleInitialized, (VisualElement * __this, bool value, MethodInfo * method)); @@ -62807,6 +72612,7 @@ DO_APP_FUNC(0x02E64600, void, VisualElement__ctor, (VisualElement * __this, Meth DO_APP_FUNC(0x02E64CC0, void, VisualElement_ExecuteDefaultAction, (VisualElement * __this, EventBase * evt, MethodInfo * method)); DO_APP_FUNC(0x02E65470, Rect, VisualElement_GetTooltipRect, (VisualElement * __this, MethodInfo * method)); DO_APP_FUNC(0x02E654A0, void, VisualElement_SetTooltip, (VisualElement * __this, TooltipEvent * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6A90, VisualElement_SetTooltip__MethodInfo); DO_APP_FUNC(0x02E655F0, void, VisualElement_Focus, (VisualElement * __this, MethodInfo * method)); DO_APP_FUNC(0x02E65790, void, VisualElement_SetPanel, (VisualElement * __this, BaseVisualElementPanel * p, MethodInfo * method)); DO_APP_FUNC(0x02E66310, void, VisualElement_WillChangePanel, (VisualElement * __this, BaseVisualElementPanel * destinationPanel, MethodInfo * method)); @@ -62831,6 +72637,7 @@ DO_APP_FUNC(0x02E66F20, void, VisualElement_InvokeGenerateVisualContent, (Visual DO_APP_FUNC(0x02E66FF0, void, VisualElement_GetFullHierarchicalViewDataKey, (VisualElement * __this, StringBuilder * key, MethodInfo * method)); DO_APP_FUNC(0x02E67090, String *, VisualElement_GetFullHierarchicalViewDataKey_1, (VisualElement * __this, MethodInfo * method)); DO_APP_FUNC(0x02E67180, void, VisualElement_OverwriteFromViewData, (VisualElement * __this, Object * obj, String * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6C28, VisualElement_OverwriteFromViewData__MethodInfo); DO_APP_FUNC(0x02E674C0, void, VisualElement_SaveViewData, (VisualElement * __this, MethodInfo * method)); DO_APP_FUNC(0x02E67550, bool, VisualElement_IsViewDataPersitenceSupportedOnChildren, (VisualElement * __this, bool existingState, MethodInfo * method)); DO_APP_FUNC(0x02E67600, void, VisualElement_OnViewDataReady, (VisualElement * __this, bool enablePersistence, MethodInfo * method)); @@ -62844,7 +72651,7 @@ DO_APP_FUNC(0x02E677F0, Vector2, VisualElement_DoMeasure, (VisualElement * __thi DO_APP_FUNC(0x02E67810, YogaSize, VisualElement_Measure, (VisualElement * __this, YogaNode * node, float width, YogaMeasureMode__Enum widthMode, float height, YogaMeasureMode__Enum heightMode, MethodInfo * method)); DO_APP_FUNC(0x02E679D0, void, VisualElement_FinalizeLayout, (VisualElement * __this, MethodInfo * method)); DO_APP_FUNC(0x02E67AB0, void, VisualElement_SetInlineRule, (VisualElement * __this, StyleSheet * sheet, StyleRule * rule, MethodInfo * method)); -DO_APP_FUNC(0x02E67BB0, void, VisualElement_SetComputedStyle, (VisualElement * __this, ComputedStyle newStyle, MethodInfo * method)); +DO_APP_FUNC(0x02E67BB0, void, VisualElement_SetComputedStyle, (VisualElement * __this, ComputedStyle * newStyle, MethodInfo * method)); DO_APP_FUNC(0x02E67E30, String *, VisualElement_ToString, (VisualElement * __this, MethodInfo * method)); DO_APP_FUNC(0x01813EA0, List_1_System_String_ *, VisualElement_GetClassesForIteration, (VisualElement * __this, MethodInfo * method)); DO_APP_FUNC(0x02E68120, void, VisualElement_AddToClassList, (VisualElement * __this, String * className, MethodInfo * method)); @@ -62854,8 +72661,9 @@ DO_APP_FUNC(0x02E68520, bool, VisualElement_ClassListContains, (VisualElement * DO_APP_FUNC(0x02E68630, Object *, VisualElement_GetProperty, (VisualElement * __this, PropertyName key, MethodInfo * method)); DO_APP_FUNC(0x02E686B0, void, VisualElement_SetProperty, (VisualElement * __this, PropertyName key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x02E68730, bool, VisualElement_HasProperty, (VisualElement * __this, PropertyName key, MethodInfo * method)); -DO_APP_FUNC(0x02E687B0, bool, VisualElement_TryGetPropertyInternal, (VisualElement * __this, PropertyName key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x02E687B0, bool, VisualElement_TryGetPropertyInternal, (VisualElement * __this, PropertyName key, Object * * value, MethodInfo * method)); DO_APP_FUNC(0x02E68920, void, VisualElement_CheckUserKeyArgument, (PropertyName key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6BD8, VisualElement_CheckUserKeyArgument__MethodInfo); DO_APP_FUNC(0x02E68A90, void, VisualElement_SetPropertyInternal, (VisualElement * __this, PropertyName key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x02E68EB0, void, VisualElement_UpdateCursorStyle, (VisualElement * __this, int64_t eventType, MethodInfo * method)); DO_APP_FUNC(0x02E690F0, VisualElement_RenderTargetMode__Enum, VisualElement_get_subRenderTargetMode, (VisualElement * __this, MethodInfo * method)); @@ -62866,6 +72674,7 @@ DO_APP_FUNC(0x02E69380, void, VisualElement_UnregisterAnimation, (VisualElement DO_APP_FUNC(0x02E69440, void, VisualElement_UnregisterRunningAnimations, (VisualElement * __this, MethodInfo * method)); DO_APP_FUNC(0x02E694D0, void, VisualElement_RegisterRunningAnimations, (VisualElement * __this, MethodInfo * method)); DO_APP_FUNC(0x02E69540, void, VisualElement_AssignStyleValues, (VisualElement * ve, StyleValues src, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6AD8, VisualElement_AssignStyleValues__MethodInfo); DO_APP_FUNC(0x02E6A140, StyleValues, VisualElement_ReadCurrentValues, (VisualElement * __this, VisualElement * ve, StyleValues targetValuesToRead, MethodInfo * method)); DO_APP_FUNC(0x02E6B150, ValueAnimation_1_StyleValues_ *, VisualElement_UnityEngine_UIElements_Experimental_ITransitionAnimations_Start, (VisualElement * __this, StyleValues to, int32_t durationMs, MethodInfo * method)); DO_APP_FUNC(0x02E6B2D0, ValueAnimation_1_StyleValues_ *, VisualElement_Start, (VisualElement * __this, Func_2_UnityEngine_UIElements_VisualElement_UnityEngine_UIElements_Experimental_StyleValues_ * fromValueGetter, StyleValues to, int32_t durationMs, MethodInfo * method)); @@ -62885,6 +72694,7 @@ DO_APP_FUNC(0x02E6B760, IPanel *, VisualElement_get_panel, (VisualElement * __th DO_APP_FUNC(0x01BF07D0, VisualElement *, VisualElement_get_contentContainer, (VisualElement * __this, MethodInfo * method)); DO_APP_FUNC(0x02E6B770, void, VisualElement_set_visualTreeAssetSource, (VisualElement * __this, VisualTreeAsset * value, MethodInfo * method)); DO_APP_FUNC(0x02E6B7D0, void, VisualElement_Add, (VisualElement * __this, VisualElement * child, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6B18, VisualElement_Add__MethodInfo); DO_APP_FUNC(0x02E6B940, void, VisualElement_Insert, (VisualElement * __this, int32_t index, VisualElement * element, MethodInfo * method)); DO_APP_FUNC(0x02E6BA30, void, VisualElement_Clear, (VisualElement * __this, MethodInfo * method)); DO_APP_FUNC(0x02E6BAB0, VisualElement *, VisualElement_ElementAt, (VisualElement * __this, int32_t index, MethodInfo * method)); @@ -62896,29 +72706,31 @@ DO_APP_FUNC(0x02E6BFF0, bool, VisualElement_FindElementInTree, (VisualElement * DO_APP_FUNC(0x02E6C170, void, VisualElement_BringToFront, (VisualElement * __this, MethodInfo * method)); DO_APP_FUNC(0x02E6C1C0, void, VisualElement_SendToBack, (VisualElement * __this, MethodInfo * method)); DO_APP_FUNC(0x02E6C210, void, VisualElement_PlaceBehind, (VisualElement * __this, VisualElement * sibling, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6B00, VisualElement_PlaceBehind__MethodInfo); DO_APP_FUNC(0x02E6C340, void, VisualElement_RemoveFromHierarchy, (VisualElement * __this, MethodInfo * method)); DO_APP_FUNC(0x02E6C440, bool, VisualElement_Contains, (VisualElement * __this, VisualElement * child, MethodInfo * method)); DO_APP_FUNC(0x02E6C490, void, VisualElement_GatherAllChildren, (VisualElement * __this, List_1_UnityEngine_UIElements_VisualElement_ * elements, MethodInfo * method)); DO_APP_FUNC(0x02E6C5B0, VisualElement *, VisualElement_FindCommonAncestor, (VisualElement * __this, VisualElement * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6B28, VisualElement_FindCommonAncestor__MethodInfo); DO_APP_FUNC(0x02E6C750, VisualElement *, VisualElement_GetRoot, (VisualElement * __this, MethodInfo * method)); DO_APP_FUNC(0x02E6C7E0, VisualElement *, VisualElement_GetRootVisualContainer, (VisualElement * __this, MethodInfo * method)); DO_APP_FUNC(0x02E6C820, VisualElement *, VisualElement_GetNextElementDepthFirst, (VisualElement * __this, MethodInfo * method)); DO_APP_FUNC(0x02E6C960, VisualElement *, VisualElement_GetPreviousElementDepthFirst, (VisualElement * __this, MethodInfo * method)); DO_APP_FUNC(0x02E6CAB0, VisualElement *, VisualElement_RetargetElement, (VisualElement * __this, VisualElement * retargetAgainst, MethodInfo * method)); DO_APP_FUNC(0x02E6CB60, Vector3, VisualElement_get_positionWithLayout, (VisualElement * __this, MethodInfo * method)); -DO_APP_FUNC(0x02E6CC00, void, VisualElement_GetPivotedMatrixWithLayout, (VisualElement * __this, Matrix4x4 result, MethodInfo * method)); +DO_APP_FUNC(0x02E6CC00, void, VisualElement_GetPivotedMatrixWithLayout, (VisualElement * __this, Matrix4x4 * result, MethodInfo * method)); DO_APP_FUNC(0x02E6D0C0, bool, VisualElement_get_hasDefaultRotationAndScale, (VisualElement * __this, MethodInfo * method)); DO_APP_FUNC(0x02E6D200, float, VisualElement_Min, (float a, float b, float c, float d, MethodInfo * method)); DO_APP_FUNC(0x02E6D210, float, VisualElement_Max, (float a, float b, float c, float d, MethodInfo * method)); -DO_APP_FUNC(0x02E6D220, void, VisualElement_TransformAlignedRectToParentSpace, (VisualElement * __this, Rect rect, MethodInfo * method)); -DO_APP_FUNC(0x02E6D370, Rect, VisualElement_CalculateConservativeRect, (Matrix4x4 matrix, Rect rect, MethodInfo * method)); -DO_APP_FUNC(0x02E6D770, void, VisualElement_TransformAlignedRect, (Matrix4x4 matrix, Rect rect, MethodInfo * method)); -DO_APP_FUNC(0x02E6D7F0, void, VisualElement_OrderMinMaxRect, (Rect rect, MethodInfo * method)); -DO_APP_FUNC(0x02E6D840, Vector2, VisualElement_MultiplyMatrix44Point2, (Matrix4x4 lhs, Vector2 point, MethodInfo * method)); -DO_APP_FUNC(0x02E6D890, Vector2, VisualElement_MultiplyVector2, (Matrix4x4 lhs, Vector2 vector, MethodInfo * method)); -DO_APP_FUNC(0x02E6D8D0, void, VisualElement_MultiplyMatrix34, (Matrix4x4 lhs, Matrix4x4 rhs, Matrix4x4 res, MethodInfo * method)); -DO_APP_FUNC(0x02E6DB00, void, VisualElement_TranslateMatrix34, (Matrix4x4 lhs, Vector3 rhs, Matrix4x4 res, MethodInfo * method)); -DO_APP_FUNC(0x02B3D730, void, VisualElement_TranslateMatrix34InPlace, (Matrix4x4 lhs, Vector3 rhs, MethodInfo * method)); +DO_APP_FUNC(0x02E6D220, void, VisualElement_TransformAlignedRectToParentSpace, (VisualElement * __this, Rect * rect, MethodInfo * method)); +DO_APP_FUNC(0x02E6D370, Rect, VisualElement_CalculateConservativeRect, (Matrix4x4 * matrix, Rect rect, MethodInfo * method)); +DO_APP_FUNC(0x02E6D770, void, VisualElement_TransformAlignedRect, (Matrix4x4 * matrix, Rect * rect, MethodInfo * method)); +DO_APP_FUNC(0x02E6D7F0, void, VisualElement_OrderMinMaxRect, (Rect * rect, MethodInfo * method)); +DO_APP_FUNC(0x02E6D840, Vector2, VisualElement_MultiplyMatrix44Point2, (Matrix4x4 * lhs, Vector2 point, MethodInfo * method)); +DO_APP_FUNC(0x02E6D890, Vector2, VisualElement_MultiplyVector2, (Matrix4x4 * lhs, Vector2 vector, MethodInfo * method)); +DO_APP_FUNC(0x02E6D8D0, void, VisualElement_MultiplyMatrix34, (Matrix4x4 * lhs, Matrix4x4 * rhs, Matrix4x4 * res, MethodInfo * method)); +DO_APP_FUNC(0x02E6DB00, void, VisualElement_TranslateMatrix34, (Matrix4x4 * lhs, Vector3 rhs, Matrix4x4 * res, MethodInfo * method)); +DO_APP_FUNC(0x02B3D730, void, VisualElement_TranslateMatrix34InPlace, (Matrix4x4 * lhs, Vector3 rhs, MethodInfo * method)); DO_APP_FUNC(0x01BF07D0, IVisualElementScheduler *, VisualElement_get_schedule, (VisualElement * __this, MethodInfo * method)); DO_APP_FUNC(0x02E6DC10, IVisualElementScheduledItem *, VisualElement_UnityEngine_UIElements_IVisualElementScheduler_Execute, (VisualElement * __this, Action_1_UnityEngine_UIElements_TimerState_ * timerUpdateEvent, MethodInfo * method)); DO_APP_FUNC(0x02E6DD50, IVisualElementScheduledItem *, VisualElement_UnityEngine_UIElements_IVisualElementScheduler_Execute_1, (VisualElement * __this, Action * updateEvent, MethodInfo * method)); @@ -62982,33 +72794,41 @@ DO_APP_FUNC(0x02E701D0, WhiteSpace__Enum, VisualElement_UnityEngine_UIElements_I DO_APP_FUNC(0x02E70220, float, VisualElement_UnityEngine_UIElements_IResolvedStyle_get_width, (VisualElement * __this, MethodInfo * method)); DO_APP_FUNC(0x02E70290, void, VisualElement__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02E70810, YogaSize, VisualElement__AssignMeasureFunction_b__254_0, (VisualElement * __this, YogaNode * node, float f, YogaMeasureMode__Enum mode, float f1, YogaMeasureMode__Enum heightMode, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6C10, VisualElement__AssignMeasureFunction_b__254_0__MethodInfo); DO_APP_FUNC(0x02E709D0, void, VisualElement_UxmlFactory__ctor, (VisualElement_UxmlFactory * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7390, UxmlIntAttributeDescription *, VisualElement_UxmlTraits_get_focusIndex, (VisualElement_UxmlTraits * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7420, UxmlBoolAttributeDescription *, VisualElement_UxmlTraits_get_focusable, (VisualElement_UxmlTraits * __this, MethodInfo * method)); DO_APP_FUNC(0x02E70A10, void, VisualElement_UxmlTraits_Init, (VisualElement_UxmlTraits * __this, VisualElement * ve, IUxmlAttributes * bag, CreationContext cc, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6960, VisualElement_UxmlTraits_Init__MethodInfo); DO_APP_FUNC(0x02E70D00, void, VisualElement_UxmlTraits__ctor, (VisualElement_UxmlTraits * __this, MethodInfo * method)); -DO_APP_FUNC(0x02E71A00, VisualElement *, VisualElement_Hierarchy_get_parent, (VisualElement_Hierarchy__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, VisualElement_Hierarchy__ctor, (VisualElement_Hierarchy__Boxed * __this, VisualElement * element, MethodInfo * method)); -DO_APP_FUNC(0x02E71A20, void, VisualElement_Hierarchy_Add, (VisualElement_Hierarchy__Boxed * __this, VisualElement * child, MethodInfo * method)); -DO_APP_FUNC(0x02E71AE0, void, VisualElement_Hierarchy_Insert, (VisualElement_Hierarchy__Boxed * __this, int32_t index, VisualElement * child, MethodInfo * method)); -DO_APP_FUNC(0x02E71EF0, void, VisualElement_Hierarchy_Remove, (VisualElement_Hierarchy__Boxed * __this, VisualElement * child, MethodInfo * method)); -DO_APP_FUNC(0x02E72030, void, VisualElement_Hierarchy_RemoveAt, (VisualElement_Hierarchy__Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x02E72380, void, VisualElement_Hierarchy_Clear, (VisualElement_Hierarchy__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02E728E0, void, VisualElement_Hierarchy_BringToFront, (VisualElement_Hierarchy__Boxed * __this, VisualElement * child, MethodInfo * method)); -DO_APP_FUNC(0x02E72A50, void, VisualElement_Hierarchy_SendToBack, (VisualElement_Hierarchy__Boxed * __this, VisualElement * child, MethodInfo * method)); -DO_APP_FUNC(0x02E72B40, void, VisualElement_Hierarchy_PlaceBehind, (VisualElement_Hierarchy__Boxed * __this, VisualElement * child, VisualElement * over, MethodInfo * method)); -DO_APP_FUNC(0x02E72C80, void, VisualElement_Hierarchy_MoveChildElement, (VisualElement_Hierarchy__Boxed * __this, VisualElement * child, int32_t currentIndex, int32_t nextIndex, MethodInfo * method)); -DO_APP_FUNC(0x02E72DF0, int32_t, VisualElement_Hierarchy_get_childCount, (VisualElement_Hierarchy__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02E72E40, VisualElement *, VisualElement_Hierarchy_get_Item, (VisualElement_Hierarchy__Boxed * __this, int32_t key, MethodInfo * method)); -DO_APP_FUNC(0x02E72EC0, int32_t, VisualElement_Hierarchy_IndexOf, (VisualElement_Hierarchy__Boxed * __this, VisualElement * element, MethodInfo * method)); -DO_APP_FUNC(0x02E72F60, VisualElement *, VisualElement_Hierarchy_ElementAt, (VisualElement_Hierarchy__Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x02E72F70, void, VisualElement_Hierarchy_SetParent, (VisualElement_Hierarchy__Boxed * __this, VisualElement * value, MethodInfo * method)); -DO_APP_FUNC(0x02E730A0, void, VisualElement_Hierarchy_PutChildAtIndex, (VisualElement_Hierarchy__Boxed * __this, VisualElement * child, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x02E73200, void, VisualElement_Hierarchy_RemoveChildAtIndex, (VisualElement_Hierarchy__Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x02E73280, void, VisualElement_Hierarchy_ReleaseChildList, (VisualElement_Hierarchy__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02E733C0, bool, VisualElement_Hierarchy_Equals, (VisualElement_Hierarchy__Boxed * __this, VisualElement_Hierarchy other, MethodInfo * method)); -DO_APP_FUNC(0x02E733D0, bool, VisualElement_Hierarchy_Equals_1, (VisualElement_Hierarchy__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02E48920, int32_t, VisualElement_Hierarchy_GetHashCode, (VisualElement_Hierarchy__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02E71A00, VisualElement *, VisualElement_Hierarchy_get_parent, (VisualElement_Hierarchy * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, VisualElement_Hierarchy__ctor, (VisualElement_Hierarchy * __this, VisualElement * element, MethodInfo * method)); +DO_APP_FUNC(0x02E71A20, void, VisualElement_Hierarchy_Add, (VisualElement_Hierarchy * __this, VisualElement * child, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6A10, VisualElement_Hierarchy_Add__MethodInfo); +DO_APP_FUNC(0x02E71AE0, void, VisualElement_Hierarchy_Insert, (VisualElement_Hierarchy * __this, int32_t index, VisualElement * child, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD69F8, VisualElement_Hierarchy_Insert__MethodInfo); +DO_APP_FUNC(0x02E71EF0, void, VisualElement_Hierarchy_Remove, (VisualElement_Hierarchy * __this, VisualElement * child, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6918, VisualElement_Hierarchy_Remove__MethodInfo); +DO_APP_FUNC(0x02E72030, void, VisualElement_Hierarchy_RemoveAt, (VisualElement_Hierarchy * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6940, VisualElement_Hierarchy_RemoveAt__MethodInfo); +DO_APP_FUNC(0x02E72380, void, VisualElement_Hierarchy_Clear, (VisualElement_Hierarchy * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6938, VisualElement_Hierarchy_Clear__MethodInfo); +DO_APP_FUNC(0x02E728E0, void, VisualElement_Hierarchy_BringToFront, (VisualElement_Hierarchy * __this, VisualElement * child, MethodInfo * method)); +DO_APP_FUNC(0x02E72A50, void, VisualElement_Hierarchy_SendToBack, (VisualElement_Hierarchy * __this, VisualElement * child, MethodInfo * method)); +DO_APP_FUNC(0x02E72B40, void, VisualElement_Hierarchy_PlaceBehind, (VisualElement_Hierarchy * __this, VisualElement * child, VisualElement * over, MethodInfo * method)); +DO_APP_FUNC(0x02E72C80, void, VisualElement_Hierarchy_MoveChildElement, (VisualElement_Hierarchy * __this, VisualElement * child, int32_t currentIndex, int32_t nextIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6948, VisualElement_Hierarchy_MoveChildElement__MethodInfo); +DO_APP_FUNC(0x02E72DF0, int32_t, VisualElement_Hierarchy_get_childCount, (VisualElement_Hierarchy * __this, MethodInfo * method)); +DO_APP_FUNC(0x02E72E40, VisualElement *, VisualElement_Hierarchy_get_Item, (VisualElement_Hierarchy * __this, int32_t key, MethodInfo * method)); +DO_APP_FUNC(0x02E72EC0, int32_t, VisualElement_Hierarchy_IndexOf, (VisualElement_Hierarchy * __this, VisualElement * element, MethodInfo * method)); +DO_APP_FUNC(0x02E72F60, VisualElement *, VisualElement_Hierarchy_ElementAt, (VisualElement_Hierarchy * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x02E72F70, void, VisualElement_Hierarchy_SetParent, (VisualElement_Hierarchy * __this, VisualElement * value, MethodInfo * method)); +DO_APP_FUNC(0x02E730A0, void, VisualElement_Hierarchy_PutChildAtIndex, (VisualElement_Hierarchy * __this, VisualElement * child, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x02E73200, void, VisualElement_Hierarchy_RemoveChildAtIndex, (VisualElement_Hierarchy * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x02E73280, void, VisualElement_Hierarchy_ReleaseChildList, (VisualElement_Hierarchy * __this, MethodInfo * method)); +DO_APP_FUNC(0x02E733C0, bool, VisualElement_Hierarchy_Equals, (VisualElement_Hierarchy * __this, VisualElement_Hierarchy other, MethodInfo * method)); +DO_APP_FUNC(0x02E733D0, bool, VisualElement_Hierarchy_Equals_1, (VisualElement_Hierarchy * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02E48920, int32_t, VisualElement_Hierarchy_GetHashCode, (VisualElement_Hierarchy * __this, MethodInfo * method)); DO_APP_FUNC(0x02D66940, bool, VisualElement_Hierarchy_op_Equality, (VisualElement_Hierarchy x, VisualElement_Hierarchy y, MethodInfo * method)); DO_APP_FUNC(0x003C7320, VisualElement *, VisualElement_BaseVisualElementScheduledItem_get_element, (VisualElement_BaseVisualElementScheduledItem * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7330, void, VisualElement_BaseVisualElementScheduledItem_set_element, (VisualElement_BaseVisualElementScheduledItem * __this, VisualElement * value, MethodInfo * method)); @@ -63027,14 +72847,14 @@ DO_APP_FUNC(0x02E73B10, void, VisualElement_TimerStateScheduledItem_PerformTimer DO_APP_FUNC(0x02E73B50, void, VisualElement_SimpleScheduledItem__ctor, (VisualElement_SimpleScheduledItem * __this, VisualElement * handler, Action * updateEvent, MethodInfo * method)); DO_APP_FUNC(0x02E73BB0, void, VisualElement_SimpleScheduledItem_PerformTimerUpdate, (VisualElement_SimpleScheduledItem * __this, TimerState state, MethodInfo * method)); DO_APP_FUNC(0x02E73BE0, void, VisualElement_CustomStyleAccess_SetContext, (VisualElement_CustomStyleAccess * __this, Dictionary_2_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * customProperties, float dpiScaling, MethodInfo * method)); -DO_APP_FUNC(0x02E73C40, bool, VisualElement_CustomStyleAccess_TryGetValue, (VisualElement_CustomStyleAccess * __this, CustomStyleProperty_1_System_Single_ property, float value, MethodInfo * method)); -DO_APP_FUNC(0x02E73D30, bool, VisualElement_CustomStyleAccess_TryGetValue_1, (VisualElement_CustomStyleAccess * __this, CustomStyleProperty_1_System_Int32_ property, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x02E73E30, bool, VisualElement_CustomStyleAccess_TryGetValue_2, (VisualElement_CustomStyleAccess * __this, CustomStyleProperty_1_UnityEngine_Color_ property, Color value, MethodInfo * method)); -DO_APP_FUNC(0x02E73FF0, bool, VisualElement_CustomStyleAccess_TryGetValue_3, (VisualElement_CustomStyleAccess * __this, CustomStyleProperty_1_UnityEngine_Texture2D_ property, Texture2D * value, MethodInfo * method)); -DO_APP_FUNC(0x02E74250, bool, VisualElement_CustomStyleAccess_TryGetValue_4, (VisualElement_CustomStyleAccess * __this, CustomStyleProperty_1_UnityEngine_Sprite_ property, Sprite * value, MethodInfo * method)); -DO_APP_FUNC(0x02E744B0, bool, VisualElement_CustomStyleAccess_TryGetValue_5, (VisualElement_CustomStyleAccess * __this, CustomStyleProperty_1_VectorImage_ property, VectorImage * value, MethodInfo * method)); -DO_APP_FUNC(0x02E74710, bool, VisualElement_CustomStyleAccess_TryGetValue_6, (VisualElement_CustomStyleAccess * __this, CustomStyleProperty_1_System_String_ property, String * value, MethodInfo * method)); -DO_APP_FUNC(0x02E74880, bool, VisualElement_CustomStyleAccess_TryGetValue_7, (VisualElement_CustomStyleAccess * __this, String * propertyName, StyleValueType__Enum valueType, StylePropertyValue customProp, MethodInfo * method)); +DO_APP_FUNC(0x02E73C40, bool, VisualElement_CustomStyleAccess_TryGetValue, (VisualElement_CustomStyleAccess * __this, CustomStyleProperty_1_System_Single_ property, float * value, MethodInfo * method)); +DO_APP_FUNC(0x02E73D30, bool, VisualElement_CustomStyleAccess_TryGetValue_1, (VisualElement_CustomStyleAccess * __this, CustomStyleProperty_1_System_Int32_ property, int32_t * value, MethodInfo * method)); +DO_APP_FUNC(0x02E73E30, bool, VisualElement_CustomStyleAccess_TryGetValue_2, (VisualElement_CustomStyleAccess * __this, CustomStyleProperty_1_UnityEngine_Color_ property, Color * value, MethodInfo * method)); +DO_APP_FUNC(0x02E73FF0, bool, VisualElement_CustomStyleAccess_TryGetValue_3, (VisualElement_CustomStyleAccess * __this, CustomStyleProperty_1_UnityEngine_Texture2D_ property, Texture2D * * value, MethodInfo * method)); +DO_APP_FUNC(0x02E74250, bool, VisualElement_CustomStyleAccess_TryGetValue_4, (VisualElement_CustomStyleAccess * __this, CustomStyleProperty_1_UnityEngine_Sprite_ property, Sprite * * value, MethodInfo * method)); +DO_APP_FUNC(0x02E744B0, bool, VisualElement_CustomStyleAccess_TryGetValue_5, (VisualElement_CustomStyleAccess * __this, CustomStyleProperty_1_VectorImage_ property, VectorImage * * value, MethodInfo * method)); +DO_APP_FUNC(0x02E74710, bool, VisualElement_CustomStyleAccess_TryGetValue_6, (VisualElement_CustomStyleAccess * __this, CustomStyleProperty_1_System_String_ property, String * * value, MethodInfo * method)); +DO_APP_FUNC(0x02E74880, bool, VisualElement_CustomStyleAccess_TryGetValue_7, (VisualElement_CustomStyleAccess * __this, String * propertyName, StyleValueType__Enum valueType, StylePropertyValue * customProp, MethodInfo * method)); DO_APP_FUNC(0x02E74920, void, VisualElement_CustomStyleAccess_LogCustomPropertyWarning, (String * propertyName, StyleValueType__Enum valueType, StylePropertyValue customProp, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, VisualElement_CustomStyleAccess__ctor, (VisualElement_CustomStyleAccess * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, Type *, VisualElement_TypeData_get_type, (VisualElement_TypeData * __this, MethodInfo * method)); @@ -63043,6 +72863,7 @@ DO_APP_FUNC(0x02E74BA0, String *, VisualElement_TypeData_get_fullTypeName, (Visu DO_APP_FUNC(0x02E74C40, String *, VisualElement_TypeData_get_typeName, (VisualElement_TypeData * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, VisualElement_c_DisplayClass314_0__ctor, (VisualElement_c_DisplayClass314_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x02E74DC0, StyleValues, VisualElement_c_DisplayClass314_0__UnityEngine_UIElements_Experimental_ITransitionAnimations_Start_b__0, (VisualElement_c_DisplayClass314_0 * __this, VisualElement * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6B30, VisualElement_c_DisplayClass314_0__UnityEngine_UIElements_Experimental_ITransitionAnimations_Start_b__0__MethodInfo); DO_APP_FUNC(0x02E74DF0, void, StylePropertyAnimationSystem__ctor, (StylePropertyAnimationSystem * __this, MethodInfo * method)); DO_APP_FUNC(0x02E74FB0, bool, StylePropertyAnimationSystem_StartTransition, (StylePropertyAnimationSystem * __this, VisualElement * owner, StylePropertyId__Enum prop, float startValue, float endValue, int32_t durationMs, int32_t delayMs, Func_2_Single_Single_ * easingCurve, MethodInfo * method)); DO_APP_FUNC(0x02E75130, bool, StylePropertyAnimationSystem_StartTransition_1, (StylePropertyAnimationSystem * __this, VisualElement * owner, StylePropertyId__Enum prop, int32_t startValue, int32_t endValue, int32_t durationMs, int32_t delayMs, Func_2_Single_Single_ * easingCurve, MethodInfo * method)); @@ -63063,7 +72884,7 @@ DO_APP_FUNC(0x02E76690, void, StylePropertyAnimationSystem_UpdateAnimation, (Sty DO_APP_FUNC(0x02E76730, void, StylePropertyAnimationSystem_GetAllAnimations, (StylePropertyAnimationSystem * __this, VisualElement * owner, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * propertyIds, MethodInfo * method)); DO_APP_FUNC(0x015C0B20, int64_t, StylePropertyAnimationSystem_CurrentTimeMs, (StylePropertyAnimationSystem * __this, MethodInfo * method)); DO_APP_FUNC(0x02E768B0, void, StylePropertyAnimationSystem_Update, (StylePropertyAnimationSystem * __this, MethodInfo * method)); -DO_APP_FUNC(0x004CB450, void, StylePropertyAnimationSystem_ElementPropertyPair__ctor, (StylePropertyAnimationSystem_ElementPropertyPair__Boxed * __this, VisualElement * element, StylePropertyId__Enum property, MethodInfo * method)); +DO_APP_FUNC(0x004CB450, void, StylePropertyAnimationSystem_ElementPropertyPair__ctor, (StylePropertyAnimationSystem_ElementPropertyPair * __this, VisualElement * element, StylePropertyId__Enum property, MethodInfo * method)); DO_APP_FUNC(0x02E769B0, void, StylePropertyAnimationSystem_ElementPropertyPair__cctor, (MethodInfo * method)); DO_APP_FUNC(0x015E3990, bool, StylePropertyAnimationSystem_ElementPropertyPair_EqualityComparer_Equals, (StylePropertyAnimationSystem_ElementPropertyPair_EqualityComparer * __this, StylePropertyAnimationSystem_ElementPropertyPair x, StylePropertyAnimationSystem_ElementPropertyPair y, MethodInfo * method)); DO_APP_FUNC(0x02E76A70, int32_t, StylePropertyAnimationSystem_ElementPropertyPair_EqualityComparer_GetHashCode, (StylePropertyAnimationSystem_ElementPropertyPair_EqualityComparer * __this, StylePropertyAnimationSystem_ElementPropertyPair obj, MethodInfo * method)); @@ -63071,6 +72892,7 @@ DO_APP_FUNC(0x003AE050, void, StylePropertyAnimationSystem_ElementPropertyPair_E DO_APP_FUNC(0x003AE050, void, StylePropertyAnimationSystem_Values__ctor, (StylePropertyAnimationSystem_Values * __this, MethodInfo * method)); DO_APP_FUNC(0x003C9200, Func_3_Single_Single_Boolean_ *, StylePropertyAnimationSystem_ValuesFloat_get_SameFunc, (StylePropertyAnimationSystem_ValuesFloat * __this, MethodInfo * method)); DO_APP_FUNC(0x02E76AB0, bool, StylePropertyAnimationSystem_ValuesFloat_IsSame, (float a, float b, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6788, StylePropertyAnimationSystem_ValuesFloat_IsSame__MethodInfo); DO_APP_FUNC(0x02D2E180, float, StylePropertyAnimationSystem_ValuesFloat_Lerp, (float a, float b, float t, MethodInfo * method)); DO_APP_FUNC(0x02E76AC0, void, StylePropertyAnimationSystem_ValuesFloat_UpdateValues, (StylePropertyAnimationSystem_ValuesFloat * __this, MethodInfo * method)); DO_APP_FUNC(0x02E76B40, void, StylePropertyAnimationSystem_ValuesFloat_UpdateComputedStyle, (StylePropertyAnimationSystem_ValuesFloat * __this, MethodInfo * method)); @@ -63078,6 +72900,7 @@ DO_APP_FUNC(0x02E76C00, void, StylePropertyAnimationSystem_ValuesFloat_UpdateCom DO_APP_FUNC(0x02E76C80, void, StylePropertyAnimationSystem_ValuesFloat__ctor, (StylePropertyAnimationSystem_ValuesFloat * __this, MethodInfo * method)); DO_APP_FUNC(0x003C9200, Func_3_Int32_Int32_Boolean_ *, StylePropertyAnimationSystem_ValuesInt_get_SameFunc, (StylePropertyAnimationSystem_ValuesInt * __this, MethodInfo * method)); DO_APP_FUNC(0x00AFE200, bool, StylePropertyAnimationSystem_ValuesInt_IsSame, (int32_t a, int32_t b, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDEC38, StylePropertyAnimationSystem_ValuesInt_IsSame__MethodInfo); DO_APP_FUNC(0x02EC1A40, int32_t, StylePropertyAnimationSystem_ValuesInt_Lerp, (int32_t a, int32_t b, float t, MethodInfo * method)); DO_APP_FUNC(0x02EC1A60, void, StylePropertyAnimationSystem_ValuesInt_UpdateValues, (StylePropertyAnimationSystem_ValuesInt * __this, MethodInfo * method)); DO_APP_FUNC(0x02EC1B00, void, StylePropertyAnimationSystem_ValuesInt_UpdateComputedStyle, (StylePropertyAnimationSystem_ValuesInt * __this, MethodInfo * method)); @@ -63085,7 +72908,8 @@ DO_APP_FUNC(0x02EC1BB0, void, StylePropertyAnimationSystem_ValuesInt_UpdateCompu DO_APP_FUNC(0x02EC1C30, void, StylePropertyAnimationSystem_ValuesInt__ctor, (StylePropertyAnimationSystem_ValuesInt * __this, MethodInfo * method)); DO_APP_FUNC(0x003C9200, Func_3_UnityEngine_UIElements_Length_UnityEngine_UIElements_Length_Boolean_ *, StylePropertyAnimationSystem_ValuesLength_get_SameFunc, (StylePropertyAnimationSystem_ValuesLength * __this, MethodInfo * method)); DO_APP_FUNC(0x02EC1E10, bool, StylePropertyAnimationSystem_ValuesLength_IsSame, (Length a, Length b, MethodInfo * method)); -DO_APP_FUNC(0x02EC1E50, bool, StylePropertyAnimationSystem_ValuesLength_ConvertUnits, (StylePropertyAnimationSystem_ValuesLength * __this, VisualElement * owner, StylePropertyId__Enum prop, Length a, Length b, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDEC58, StylePropertyAnimationSystem_ValuesLength_IsSame__MethodInfo); +DO_APP_FUNC(0x02EC1E50, bool, StylePropertyAnimationSystem_ValuesLength_ConvertUnits, (StylePropertyAnimationSystem_ValuesLength * __this, VisualElement * owner, StylePropertyId__Enum prop, Length * a, Length * b, MethodInfo * method)); DO_APP_FUNC(0x02EC1E90, Length, StylePropertyAnimationSystem_ValuesLength_Lerp, (Length a, Length b, float t, MethodInfo * method)); DO_APP_FUNC(0x02EC1F00, void, StylePropertyAnimationSystem_ValuesLength_UpdateValues, (StylePropertyAnimationSystem_ValuesLength * __this, MethodInfo * method)); DO_APP_FUNC(0x02EC1FE0, void, StylePropertyAnimationSystem_ValuesLength_UpdateComputedStyle, (StylePropertyAnimationSystem_ValuesLength * __this, MethodInfo * method)); @@ -63093,6 +72917,7 @@ DO_APP_FUNC(0x02EC20A0, void, StylePropertyAnimationSystem_ValuesLength_UpdateCo DO_APP_FUNC(0x02EC2120, void, StylePropertyAnimationSystem_ValuesLength__ctor, (StylePropertyAnimationSystem_ValuesLength * __this, MethodInfo * method)); DO_APP_FUNC(0x003C9200, Func_3_UnityEngine_Color_UnityEngine_Color_Boolean_ *, StylePropertyAnimationSystem_ValuesColor_get_SameFunc, (StylePropertyAnimationSystem_ValuesColor * __this, MethodInfo * method)); DO_APP_FUNC(0x02EC2300, bool, StylePropertyAnimationSystem_ValuesColor_IsSame, (Color c, Color d, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDEC78, StylePropertyAnimationSystem_ValuesColor_IsSame__MethodInfo); DO_APP_FUNC(0x02EC2370, Color, StylePropertyAnimationSystem_ValuesColor_Lerp, (Color a, Color b, float t, MethodInfo * method)); DO_APP_FUNC(0x02EC2410, void, StylePropertyAnimationSystem_ValuesColor_UpdateValues, (StylePropertyAnimationSystem_ValuesColor * __this, MethodInfo * method)); DO_APP_FUNC(0x02EC2520, void, StylePropertyAnimationSystem_ValuesColor_UpdateComputedStyle, (StylePropertyAnimationSystem_ValuesColor * __this, MethodInfo * method)); @@ -63109,6 +72934,7 @@ DO_APP_FUNC(0x02EC2E50, void, StylePropertyAnimationSystem_ValuesFont_UpdateComp DO_APP_FUNC(0x02EC2ED0, void, StylePropertyAnimationSystem_ValuesFont__ctor, (StylePropertyAnimationSystem_ValuesFont * __this, MethodInfo * method)); DO_APP_FUNC(0x003C9200, Func_3_UnityEngine_UIElements_TextShadow_UnityEngine_UIElements_TextShadow_Boolean_ *, StylePropertyAnimationSystem_ValuesTextShadow_get_SameFunc, (StylePropertyAnimationSystem_ValuesTextShadow * __this, MethodInfo * method)); DO_APP_FUNC(0x02EC2FE0, bool, StylePropertyAnimationSystem_ValuesTextShadow_IsSame, (TextShadow a, TextShadow b, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDEBD8, StylePropertyAnimationSystem_ValuesTextShadow_IsSame__MethodInfo); DO_APP_FUNC(0x02EC30B0, TextShadow, StylePropertyAnimationSystem_ValuesTextShadow_Lerp, (TextShadow a, TextShadow b, float t, MethodInfo * method)); DO_APP_FUNC(0x02EC31F0, void, StylePropertyAnimationSystem_ValuesTextShadow_UpdateValues, (StylePropertyAnimationSystem_ValuesTextShadow * __this, MethodInfo * method)); DO_APP_FUNC(0x02EC33A0, void, StylePropertyAnimationSystem_ValuesTextShadow_UpdateComputedStyle, (StylePropertyAnimationSystem_ValuesTextShadow * __this, MethodInfo * method)); @@ -63116,6 +72942,7 @@ DO_APP_FUNC(0x02EC34A0, void, StylePropertyAnimationSystem_ValuesTextShadow_Upda DO_APP_FUNC(0x02EC3550, void, StylePropertyAnimationSystem_ValuesTextShadow__ctor, (StylePropertyAnimationSystem_ValuesTextShadow * __this, MethodInfo * method)); DO_APP_FUNC(0x003C9200, Func_3_UnityEngine_UIElements_Scale_UnityEngine_UIElements_Scale_Boolean_ *, StylePropertyAnimationSystem_ValuesScale_get_SameFunc, (StylePropertyAnimationSystem_ValuesScale * __this, MethodInfo * method)); DO_APP_FUNC(0x02EC3730, bool, StylePropertyAnimationSystem_ValuesScale_IsSame, (Scale a, Scale b, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDEC00, StylePropertyAnimationSystem_ValuesScale_IsSame__MethodInfo); DO_APP_FUNC(0x02EC3780, void, StylePropertyAnimationSystem_ValuesScale_UpdateComputedStyle, (StylePropertyAnimationSystem_ValuesScale * __this, MethodInfo * method)); DO_APP_FUNC(0x02EC3860, void, StylePropertyAnimationSystem_ValuesScale_UpdateComputedStyle_1, (StylePropertyAnimationSystem_ValuesScale * __this, int32_t i, MethodInfo * method)); DO_APP_FUNC(0x02EC38F0, Scale, StylePropertyAnimationSystem_ValuesScale_Lerp, (Scale a, Scale b, float t, MethodInfo * method)); @@ -63123,6 +72950,7 @@ DO_APP_FUNC(0x02EC3950, void, StylePropertyAnimationSystem_ValuesScale_UpdateVal DO_APP_FUNC(0x02EC3A40, void, StylePropertyAnimationSystem_ValuesScale__ctor, (StylePropertyAnimationSystem_ValuesScale * __this, MethodInfo * method)); DO_APP_FUNC(0x003C9200, Func_3_UnityEngine_UIElements_Rotate_UnityEngine_UIElements_Rotate_Boolean_ *, StylePropertyAnimationSystem_ValuesRotate_get_SameFunc, (StylePropertyAnimationSystem_ValuesRotate * __this, MethodInfo * method)); DO_APP_FUNC(0x02EC3C20, bool, StylePropertyAnimationSystem_ValuesRotate_IsSame, (Rotate_1 a, Rotate_1 b, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDEC18, StylePropertyAnimationSystem_ValuesRotate_IsSame__MethodInfo); DO_APP_FUNC(0x02EC3C70, void, StylePropertyAnimationSystem_ValuesRotate_UpdateComputedStyle, (StylePropertyAnimationSystem_ValuesRotate * __this, MethodInfo * method)); DO_APP_FUNC(0x02EC3D60, void, StylePropertyAnimationSystem_ValuesRotate_UpdateComputedStyle_1, (StylePropertyAnimationSystem_ValuesRotate * __this, int32_t i, MethodInfo * method)); DO_APP_FUNC(0x02EC3E00, Rotate_1, StylePropertyAnimationSystem_ValuesRotate_Lerp, (Rotate_1 a, Rotate_1 b, float t, MethodInfo * method)); @@ -63130,7 +72958,8 @@ DO_APP_FUNC(0x02EC3F60, void, StylePropertyAnimationSystem_ValuesRotate_UpdateVa DO_APP_FUNC(0x02EC41F0, void, StylePropertyAnimationSystem_ValuesRotate__ctor, (StylePropertyAnimationSystem_ValuesRotate * __this, MethodInfo * method)); DO_APP_FUNC(0x003C9200, Func_3_UnityEngine_UIElements_Translate_UnityEngine_UIElements_Translate_Boolean_ *, StylePropertyAnimationSystem_ValuesTranslate_get_SameFunc, (StylePropertyAnimationSystem_ValuesTranslate * __this, MethodInfo * method)); DO_APP_FUNC(0x02EC43D0, bool, StylePropertyAnimationSystem_ValuesTranslate_IsSame, (Translate_1 a, Translate_1 b, MethodInfo * method)); -DO_APP_FUNC(0x02EC4420, bool, StylePropertyAnimationSystem_ValuesTranslate_ConvertUnits, (StylePropertyAnimationSystem_ValuesTranslate * __this, VisualElement * owner, StylePropertyId__Enum prop, Translate_1 a, Translate_1 b, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDEC20, StylePropertyAnimationSystem_ValuesTranslate_IsSame__MethodInfo); +DO_APP_FUNC(0x02EC4420, bool, StylePropertyAnimationSystem_ValuesTranslate_ConvertUnits, (StylePropertyAnimationSystem_ValuesTranslate * __this, VisualElement * owner, StylePropertyId__Enum prop, Translate_1 * a, Translate_1 * b, MethodInfo * method)); DO_APP_FUNC(0x02EC44F0, void, StylePropertyAnimationSystem_ValuesTranslate_UpdateComputedStyle, (StylePropertyAnimationSystem_ValuesTranslate * __this, MethodInfo * method)); DO_APP_FUNC(0x02EC45E0, void, StylePropertyAnimationSystem_ValuesTranslate_UpdateComputedStyle_1, (StylePropertyAnimationSystem_ValuesTranslate * __this, int32_t i, MethodInfo * method)); DO_APP_FUNC(0x02EC4680, Translate_1, StylePropertyAnimationSystem_ValuesTranslate_Lerp, (Translate_1 a, Translate_1 b, float t, MethodInfo * method)); @@ -63138,24 +72967,25 @@ DO_APP_FUNC(0x02EC4780, void, StylePropertyAnimationSystem_ValuesTranslate_Updat DO_APP_FUNC(0x02EC49E0, void, StylePropertyAnimationSystem_ValuesTranslate__ctor, (StylePropertyAnimationSystem_ValuesTranslate * __this, MethodInfo * method)); DO_APP_FUNC(0x003C9200, Func_3_UnityEngine_UIElements_TransformOrigin_UnityEngine_UIElements_TransformOrigin_Boolean_ *, StylePropertyAnimationSystem_ValuesTransformOrigin_get_SameFunc, (StylePropertyAnimationSystem_ValuesTransformOrigin * __this, MethodInfo * method)); DO_APP_FUNC(0x02EC4BC0, bool, StylePropertyAnimationSystem_ValuesTransformOrigin_IsSame, (TransformOrigin a, TransformOrigin b, MethodInfo * method)); -DO_APP_FUNC(0x02EC4C60, bool, StylePropertyAnimationSystem_ValuesTransformOrigin_ConvertUnits, (StylePropertyAnimationSystem_ValuesTransformOrigin * __this, VisualElement * owner, StylePropertyId__Enum prop, TransformOrigin a, TransformOrigin b, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDEB80, StylePropertyAnimationSystem_ValuesTransformOrigin_IsSame__MethodInfo); +DO_APP_FUNC(0x02EC4C60, bool, StylePropertyAnimationSystem_ValuesTransformOrigin_ConvertUnits, (StylePropertyAnimationSystem_ValuesTransformOrigin * __this, VisualElement * owner, StylePropertyId__Enum prop, TransformOrigin * a, TransformOrigin * b, MethodInfo * method)); DO_APP_FUNC(0x02EC4D30, void, StylePropertyAnimationSystem_ValuesTransformOrigin_UpdateComputedStyle, (StylePropertyAnimationSystem_ValuesTransformOrigin * __this, MethodInfo * method)); DO_APP_FUNC(0x02EC4E20, void, StylePropertyAnimationSystem_ValuesTransformOrigin_UpdateComputedStyle_1, (StylePropertyAnimationSystem_ValuesTransformOrigin * __this, int32_t i, MethodInfo * method)); DO_APP_FUNC(0x02EC4EB0, TransformOrigin, StylePropertyAnimationSystem_ValuesTransformOrigin_Lerp, (TransformOrigin a, TransformOrigin b, float t, MethodInfo * method)); DO_APP_FUNC(0x02EC4FA0, void, StylePropertyAnimationSystem_ValuesTransformOrigin_UpdateValues, (StylePropertyAnimationSystem_ValuesTransformOrigin * __this, MethodInfo * method)); DO_APP_FUNC(0x02EC51C0, void, StylePropertyAnimationSystem_ValuesTransformOrigin__ctor, (StylePropertyAnimationSystem_ValuesTransformOrigin * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, StylePropertyId__Enum, StylePropertyName_get_id, (StylePropertyName__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, String *, StylePropertyName_get_name, (StylePropertyName__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, StylePropertyId__Enum, StylePropertyName_get_id, (StylePropertyName * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, String *, StylePropertyName_get_name, (StylePropertyName * __this, MethodInfo * method)); DO_APP_FUNC(0x02EC53A0, StylePropertyId__Enum, StylePropertyName_StylePropertyIdFromString, (String * name, MethodInfo * method)); -DO_APP_FUNC(0x02EC5480, void, StylePropertyName__ctor, (StylePropertyName__Boxed * __this, StylePropertyId__Enum stylePropertyId, MethodInfo * method)); -DO_APP_FUNC(0x02EC55E0, void, StylePropertyName__ctor_1, (StylePropertyName__Boxed * __this, String * name, MethodInfo * method)); +DO_APP_FUNC(0x02EC5480, void, StylePropertyName__ctor, (StylePropertyName * __this, StylePropertyId__Enum stylePropertyId, MethodInfo * method)); +DO_APP_FUNC(0x02EC55E0, void, StylePropertyName__ctor_1, (StylePropertyName * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x02EC5780, bool, StylePropertyName_op_Equality, (StylePropertyName lhs, StylePropertyName rhs, MethodInfo * method)); DO_APP_FUNC(0x02EC5790, bool, StylePropertyName_op_Inequality, (StylePropertyName lhs, StylePropertyName rhs, MethodInfo * method)); DO_APP_FUNC(0x02EC57A0, StylePropertyName, StylePropertyName_op_Implicit, (String * name, MethodInfo * method)); -DO_APP_FUNC(0x02B78450, int32_t, StylePropertyName_GetHashCode, (StylePropertyName__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02EC57E0, bool, StylePropertyName_Equals, (StylePropertyName__Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x02EC5780, bool, StylePropertyName_Equals_1, (StylePropertyName__Boxed * __this, StylePropertyName other, MethodInfo * method)); -DO_APP_FUNC(0x02D66790, String *, StylePropertyName_ToString, (StylePropertyName__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B78450, int32_t, StylePropertyName_GetHashCode, (StylePropertyName * __this, MethodInfo * method)); +DO_APP_FUNC(0x02EC57E0, bool, StylePropertyName_Equals, (StylePropertyName * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x02EC5780, bool, StylePropertyName_Equals_1, (StylePropertyName * __this, StylePropertyName other, MethodInfo * method)); +DO_APP_FUNC(0x02D66790, String *, StylePropertyName_ToString, (StylePropertyName * __this, MethodInfo * method)); DO_APP_FUNC(0x01DAA150, String *, TemplateContainer_get_templateId, (TemplateContainer * __this, MethodInfo * method)); DO_APP_FUNC(0x02EC5860, void, TemplateContainer_set_templateId, (TemplateContainer * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x02EC58C0, void, TemplateContainer_set_templateSource, (TemplateContainer * __this, VisualTreeAsset * value, MethodInfo * method)); @@ -63173,6 +73003,7 @@ DO_APP_FUNC(0x02EC66D0, ITextHandle *, TextElement_1_get_textHandle, (TextElemen DO_APP_FUNC(0x02EC5860, void, TextElement_1_set_textHandle, (TextElement_1 * __this, ITextHandle * value, MethodInfo * method)); DO_APP_FUNC(0x02EC66E0, void, TextElement_1_HandleEvent, (TextElement_1 * __this, EventBase * evt, MethodInfo * method)); DO_APP_FUNC(0x02EC68E0, void, TextElement_1_OnGeometryChanged, (TextElement_1 * __this, GeometryChangedEvent * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDEB30, TextElement_1_OnGeometryChanged__MethodInfo); DO_APP_FUNC(0x02EC68F0, String *, TextElement_1_get_text, (TextElement_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02EC6930, void, TextElement_1_set_text, (TextElement_1 * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x02EC6990, bool, TextElement_1_get_enableRichText, (TextElement_1 * __this, MethodInfo * method)); @@ -63182,6 +73013,7 @@ DO_APP_FUNC(0x02EC69F0, void, TextElement_1_set_displayTooltipWhenElided, (TextE DO_APP_FUNC(0x02EC6A40, bool, TextElement_1_get_isElided, (TextElement_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02EC6A50, void, TextElement_1_set_isElided, (TextElement_1 * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x02EC6A60, void, TextElement_1_OnGenerateVisualContent, (TextElement_1 * __this, MeshGenerationContext * mgc, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDEB40, TextElement_1_OnGenerateVisualContent__MethodInfo); DO_APP_FUNC(0x02EC6CF0, String *, TextElement_1_ElideText, (TextElement_1 * __this, String * drawText, String * ellipsisText, float width, TextOverflowPosition__Enum textOverflowPosition, MethodInfo * method)); DO_APP_FUNC(0x02EC71D0, void, TextElement_1_UpdateTooltip, (TextElement_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02EC7240, void, TextElement_1_UpdateVisibleText, (TextElement_1 * __this, MethodInfo * method)); @@ -63196,12 +73028,12 @@ DO_APP_FUNC(0x02EC7A10, void, TextElement_1__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02EC7B90, void, TextElement_UxmlFactory__ctor, (TextElement_UxmlFactory * __this, MethodInfo * method)); DO_APP_FUNC(0x02EC7BD0, void, TextElement_UxmlTraits_Init, (TextElement_UxmlTraits * __this, VisualElement * ve, IUxmlAttributes * bag, CreationContext cc, MethodInfo * method)); DO_APP_FUNC(0x02EC7DF0, void, TextElement_UxmlTraits__ctor, (TextElement_UxmlTraits * __this, MethodInfo * method)); -DO_APP_FUNC(0x02EC8120, bool, TextShadow_Equals, (TextShadow__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02EC81D0, bool, TextShadow_Equals_1, (TextShadow__Boxed * __this, TextShadow other, MethodInfo * method)); -DO_APP_FUNC(0x02EC82A0, int32_t, TextShadow_GetHashCode, (TextShadow__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02EC8120, bool, TextShadow_Equals, (TextShadow * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02EC81D0, bool, TextShadow_Equals_1, (TextShadow * __this, TextShadow other, MethodInfo * method)); +DO_APP_FUNC(0x02EC82A0, int32_t, TextShadow_GetHashCode, (TextShadow * __this, MethodInfo * method)); DO_APP_FUNC(0x02EC8310, bool, TextShadow_op_Equality, (TextShadow style1, TextShadow style2, MethodInfo * method)); DO_APP_FUNC(0x02EC8340, bool, TextShadow_op_Inequality, (TextShadow style1, TextShadow style2, MethodInfo * method)); -DO_APP_FUNC(0x02EC8410, String *, TextShadow_ToString, (TextShadow__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02EC8410, String *, TextShadow_ToString, (TextShadow * __this, MethodInfo * method)); DO_APP_FUNC(0x02EC8550, TextShadow, TextShadow_LerpUnclamped, (TextShadow a, TextShadow b, float t, MethodInfo * method)); DO_APP_FUNC(0x02EC8690, void, UIElementsPackageUtility__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02EC8750, void, UIElementsRuntimeUtility_add_onCreatePanel, (Action_1_UnityEngine_UIElements_BaseRuntimePanel_ * value, MethodInfo * method)); @@ -63213,10 +73045,13 @@ DO_APP_FUNC(0x02EC9410, void, UIElementsRuntimeUtility_DisposeRuntimePanel, (Scr DO_APP_FUNC(0x02EC9710, void, UIElementsRuntimeUtility_RegisterCachedPanelInternal, (int32_t instanceID, IPanel * panel, MethodInfo * method)); DO_APP_FUNC(0x02EC9A20, void, UIElementsRuntimeUtility_RemoveCachedPanelInternal, (int32_t instanceID, MethodInfo * method)); DO_APP_FUNC(0x02EC9C80, void, UIElementsRuntimeUtility_RepaintOffscreenPanels, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDEA68, UIElementsRuntimeUtility_RepaintOffscreenPanels__MethodInfo); DO_APP_FUNC(0x02EC9F60, void, UIElementsRuntimeUtility_RepaintOverlayPanel, (BaseRuntimePanel * panel, MethodInfo * method)); DO_APP_FUNC(0x02ECA290, void, UIElementsRuntimeUtility_BeginRenderOverlays, (int32_t displayIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDEA78, UIElementsRuntimeUtility_BeginRenderOverlays__MethodInfo); DO_APP_FUNC(0x02ECA2F0, void, UIElementsRuntimeUtility_RenderOverlaysBeforePriority, (int32_t displayIndex, float maxPriority, MethodInfo * method)); DO_APP_FUNC(0x02ECA4F0, void, UIElementsRuntimeUtility_EndRenderOverlays, (int32_t displayIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDEA80, UIElementsRuntimeUtility_EndRenderOverlays__MethodInfo); DO_APP_FUNC(0x02ECA560, Object_1 *, UIElementsRuntimeUtility_get_activeEventSystem, (MethodInfo * method)); DO_APP_FUNC(0x02ECA5C0, void, UIElementsRuntimeUtility_set_activeEventSystem, (Object_1 * value, MethodInfo * method)); DO_APP_FUNC(0x02ECA680, bool, UIElementsRuntimeUtility_get_useDefaultEventSystem, (MethodInfo * method)); @@ -63224,6 +73059,7 @@ DO_APP_FUNC(0x02ECA7F0, void, UIElementsRuntimeUtility_RegisterEventSystem, (Obj DO_APP_FUNC(0x02ECABB0, void, UIElementsRuntimeUtility_UnregisterEventSystem, (Object_1 * eventSystem, MethodInfo * method)); DO_APP_FUNC(0x02ECADB0, DefaultEventSystem *, UIElementsRuntimeUtility_get_defaultEventSystem, (MethodInfo * method)); DO_APP_FUNC(0x02ECAED0, void, UIElementsRuntimeUtility_UpdateRuntimePanels, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE990, UIElementsRuntimeUtility_UpdateRuntimePanels__MethodInfo); DO_APP_FUNC(0x02ECB470, void, UIElementsRuntimeUtility_MarkPotentiallyEmpty, (PanelSettings * settings, MethodInfo * method)); DO_APP_FUNC(0x02ECB5C0, void, UIElementsRuntimeUtility_RemoveUnusedPanels, (MethodInfo * method)); DO_APP_FUNC(0x02ECB7F0, void, UIElementsRuntimeUtility_RegisterPlayerloopCallback, (MethodInfo * method)); @@ -63231,8 +73067,8 @@ DO_APP_FUNC(0x02ECB930, void, UIElementsRuntimeUtility_UnregisterPlayerloopCallb DO_APP_FUNC(0x02ECBA00, void, UIElementsRuntimeUtility_SetPanelOrderingDirty, (MethodInfo * method)); DO_APP_FUNC(0x02ECBA60, List_1_UnityEngine_UIElements_Panel_ *, UIElementsRuntimeUtility_GetSortedPlayerPanels, (MethodInfo * method)); DO_APP_FUNC(0x02ECBB00, void, UIElementsRuntimeUtility_SortPanels, (MethodInfo * method)); -DO_APP_FUNC(0x02ECBD70, Vector2, UIElementsRuntimeUtility_MultiDisplayBottomLeftToPanelPosition, (Vector2 position, Nullable_1_Int32_ targetDisplay, MethodInfo * method)); -DO_APP_FUNC(0x02ECC070, Vector2, UIElementsRuntimeUtility_MultiDisplayToLocalScreenPosition, (Vector2 position, Nullable_1_Int32_ targetDisplay, MethodInfo * method)); +DO_APP_FUNC(0x02ECBD70, Vector2, UIElementsRuntimeUtility_MultiDisplayBottomLeftToPanelPosition, (Vector2 position, Nullable_1_Int32_ * targetDisplay, MethodInfo * method)); +DO_APP_FUNC(0x02ECC070, Vector2, UIElementsRuntimeUtility_MultiDisplayToLocalScreenPosition, (Vector2 position, Nullable_1_Int32_ * targetDisplay, MethodInfo * method)); DO_APP_FUNC(0x02ECC230, Vector2, UIElementsRuntimeUtility_ScreenBottomLeftToPanelPosition, (Vector2 position, int32_t targetDisplay, MethodInfo * method)); DO_APP_FUNC(0x02ECC350, Vector2, UIElementsRuntimeUtility_ScreenBottomLeftToPanelDelta, (Vector2 delta, MethodInfo * method)); DO_APP_FUNC(0x015B8200, void, UIElementsRuntimeUtility_CreateRuntimePanelDelegate__ctor, (UIElementsRuntimeUtility_CreateRuntimePanelDelegate * __this, Object * object, void * method_1, MethodInfo * method)); @@ -63240,8 +73076,11 @@ DO_APP_FUNC(0x003F42D0, BaseRuntimePanel *, UIElementsRuntimeUtility_CreateRunti DO_APP_FUNC(0x02ECC370, void, UIElementsRuntimeUtility_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, UIElementsRuntimeUtility_c__ctor, (UIElementsRuntimeUtility_c * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, UIElementsRuntimeUtility_c___cctor_b__9_0, (UIElementsRuntimeUtility_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDEB00, UIElementsRuntimeUtility_c___cctor_b__9_0__MethodInfo); DO_APP_FUNC(0x02ECC420, void, UIElementsRuntimeUtility_c___cctor_b__9_1, (UIElementsRuntimeUtility_c * __this, int32_t displayIndex, int32_t sortOrder, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDEB08, UIElementsRuntimeUtility_c___cctor_b__9_1__MethodInfo); DO_APP_FUNC(0x02ECC480, int32_t, UIElementsRuntimeUtility_c__SortPanels_b__47_0, (UIElementsRuntimeUtility_c * __this, Panel * a, Panel * b, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE9A0, UIElementsRuntimeUtility_c__SortPanels_b__47_0__MethodInfo); DO_APP_FUNC(0x02ECC630, void, UIEventRegistration__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02ECD050, void, UIEventRegistration_RegisterUIElementSystem, (IUIElementsUtility * utility, MethodInfo * method)); DO_APP_FUNC(0x02ECD0E0, void, UIEventRegistration_TakeCapture, (MethodInfo * method)); @@ -63253,21 +73092,27 @@ DO_APP_FUNC(0x02ECDA70, void, UIEventRegistration_MakeCurrentIMGUIContainerDirty DO_APP_FUNC(0x02ECDC10, void, UIEventRegistration_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, UIEventRegistration_c__ctor, (UIEventRegistration_c * __this, MethodInfo * method)); DO_APP_FUNC(0x02ECDCC0, void, UIEventRegistration_c___cctor_b__1_0, (UIEventRegistration_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE8C8, UIEventRegistration_c___cctor_b__1_0__MethodInfo); DO_APP_FUNC(0x02ECDD10, void, UIEventRegistration_c___cctor_b__1_1, (UIEventRegistration_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE8D0, UIEventRegistration_c___cctor_b__1_1__MethodInfo); DO_APP_FUNC(0x02ECDD60, bool, UIEventRegistration_c___cctor_b__1_2, (UIEventRegistration_c * __this, int32_t i, void * ptr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE8A8, UIEventRegistration_c___cctor_b__1_2__MethodInfo); DO_APP_FUNC(0x02ECDDC0, void, UIEventRegistration_c___cctor_b__1_3, (UIEventRegistration_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE8B8, UIEventRegistration_c___cctor_b__1_3__MethodInfo); DO_APP_FUNC(0x02ECDE10, bool, UIEventRegistration_c___cctor_b__1_4, (UIEventRegistration_c * __this, Exception * exception, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE888, UIEventRegistration_c___cctor_b__1_4__MethodInfo); DO_APP_FUNC(0x02ECDE60, void, UIEventRegistration_c___cctor_b__1_5, (UIEventRegistration_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE898, UIEventRegistration_c___cctor_b__1_5__MethodInfo); DO_APP_FUNC(0x02ECDEB0, void, UIElementsUtility__ctor, (UIElementsUtility * __this, MethodInfo * method)); DO_APP_FUNC(0x02ECDF70, bool, UIElementsUtility_UnityEngine_UIElements_IUIElementsUtility_MakeCurrentIMGUIContainerDirty, (UIElementsUtility * __this, MethodInfo * method)); DO_APP_FUNC(0x02ECE060, bool, UIElementsUtility_UnityEngine_UIElements_IUIElementsUtility_TakeCapture, (UIElementsUtility * __this, MethodInfo * method)); DO_APP_FUNC(0x01BD8C20, bool, UIElementsUtility_UnityEngine_UIElements_IUIElementsUtility_ReleaseCapture, (UIElementsUtility * __this, MethodInfo * method)); -DO_APP_FUNC(0x02ECE250, bool, UIElementsUtility_UnityEngine_UIElements_IUIElementsUtility_ProcessEvent, (UIElementsUtility * __this, int32_t instanceID, void * nativeEventPtr, bool eventHandled, MethodInfo * method)); +DO_APP_FUNC(0x02ECE250, bool, UIElementsUtility_UnityEngine_UIElements_IUIElementsUtility_ProcessEvent, (UIElementsUtility * __this, int32_t instanceID, void * nativeEventPtr, bool * eventHandled, MethodInfo * method)); DO_APP_FUNC(0x02ECE3B0, bool, UIElementsUtility_UnityEngine_UIElements_IUIElementsUtility_CleanupRoots, (UIElementsUtility * __this, MethodInfo * method)); DO_APP_FUNC(0x02ECE550, bool, UIElementsUtility_UnityEngine_UIElements_IUIElementsUtility_EndContainerGUIFromException, (UIElementsUtility * __this, Exception * exception, MethodInfo * method)); DO_APP_FUNC(0x02ECE620, void, UIElementsUtility_RegisterCachedPanel, (int32_t instanceID, Panel * panel, MethodInfo * method)); DO_APP_FUNC(0x02ECE6D0, void, UIElementsUtility_RemoveCachedPanel, (int32_t instanceID, MethodInfo * method)); -DO_APP_FUNC(0x02ECE760, bool, UIElementsUtility_TryGetPanel, (int32_t instanceID, Panel * panel, MethodInfo * method)); +DO_APP_FUNC(0x02ECE760, bool, UIElementsUtility_TryGetPanel, (int32_t instanceID, Panel * * panel, MethodInfo * method)); DO_APP_FUNC(0x02ECE800, void, UIElementsUtility_BeginContainerGUI, (GUILayoutUtility_LayoutCache * cache, Event_1 * evt, IMGUIContainer * container, MethodInfo * method)); DO_APP_FUNC(0x02ECEDA0, void, UIElementsUtility_EndContainerGUI, (Event_1 * evt, Rect layoutSize, MethodInfo * method)); DO_APP_FUNC(0x02ECF0B0, EventBase *, UIElementsUtility_CreateEvent, (Event_1 * systemEvent, MethodInfo * method)); @@ -63277,7 +73122,7 @@ DO_APP_FUNC(0x02ECFF90, void, UIElementsUtility_GetAllPanels, (List_1_UnityEngin DO_APP_FUNC(0x02ED00E0, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_Panel_, UIElementsUtility_GetPanelsIterator, (MethodInfo * method)); DO_APP_FUNC(0x02ED0210, float, UIElementsUtility_PixelsPerUnitScaleForElement, (VisualElement * ve, Sprite * sprite, MethodInfo * method)); DO_APP_FUNC(0x02ED03A0, void, UIElementsUtility__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02ED0B00, String *, RuleMatcher_ToString, (RuleMatcher__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02ED0B00, String *, RuleMatcher_ToString, (RuleMatcher * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, UQuery_UQueryMatcher__ctor, (UQuery_UQueryMatcher * __this, MethodInfo * method)); DO_APP_FUNC(0x02EA3080, void, UQuery_UQueryMatcher_Traverse, (UQuery_UQueryMatcher * __this, VisualElement * element, MethodInfo * method)); DO_APP_FUNC(0x01BD8C20, bool, UQuery_UQueryMatcher_OnRuleMatchedElement, (UQuery_UQueryMatcher * __this, RuleMatcher matcher, VisualElement * element, MethodInfo * method)); @@ -63287,6 +73132,7 @@ DO_APP_FUNC(0x02ED0DD0, void, UQuery_UQueryMatcher_Run, (UQuery_UQueryMatcher * DO_APP_FUNC(0x02ED0E40, void, UQuery_UQueryMatcher_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, UQuery_UQueryMatcher_c__ctor, (UQuery_UQueryMatcher_c * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, UQuery_UQueryMatcher_c__TraverseRecursive_b__5_0, (UQuery_UQueryMatcher_c * __this, VisualElement * e, MatchResultInfo i, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE690, UQuery_UQueryMatcher_c__TraverseRecursive_b__5_0__MethodInfo); DO_APP_FUNC(0x003BB3D0, VisualElement *, UQuery_SingleQueryMatcher_get_match, (UQuery_SingleQueryMatcher * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE960, void, UQuery_SingleQueryMatcher_set_match, (UQuery_SingleQueryMatcher * __this, VisualElement * value, MethodInfo * method)); DO_APP_FUNC(0x02ED0EF0, void, UQuery_SingleQueryMatcher_Run, (UQuery_SingleQueryMatcher * __this, VisualElement * root, List_1_UnityEngine_UIElements_RuleMatcher_ * matchers, MethodInfo * method)); @@ -63297,6 +73143,7 @@ DO_APP_FUNC(0x02ED10A0, UQuery_SingleQueryMatcher *, UQuery_FirstQueryMatcher_Cr DO_APP_FUNC(0x003AE050, void, UQuery_FirstQueryMatcher__ctor, (UQuery_FirstQueryMatcher * __this, MethodInfo * method)); DO_APP_FUNC(0x02ED10F0, void, UQuery_FirstQueryMatcher__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02ED11A0, VisualElement *, UQueryExtensions_Q, (VisualElement * e, String * name, String * className, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE6D0, UQueryExtensions_Q__MethodInfo); DO_APP_FUNC(0x02ED18A0, void, UQueryExtensions__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02ED2B70, void, VectorImage__ctor, (VectorImage * __this, MethodInfo * method)); DO_APP_FUNC(0x02ED2D20, List_1_UnityEngine_UIElements_VisualElement_ *, VisualElementListPool_Copy, (List_1_UnityEngine_UIElements_VisualElement_ * elements, MethodInfo * method)); @@ -63306,8 +73153,11 @@ DO_APP_FUNC(0x02ED2F90, void, VisualElementListPool__cctor, (MethodInfo * method DO_APP_FUNC(0x02ED3070, void, VisualElementExtensions_AddManipulator, (VisualElement * ele, IManipulator * manipulator, MethodInfo * method)); DO_APP_FUNC(0x02ED30D0, void, VisualElementExtensions_RemoveManipulator, (VisualElement * ele, IManipulator * manipulator, MethodInfo * method)); DO_APP_FUNC(0x02ED3120, Vector2, VisualElementExtensions_WorldToLocal, (VisualElement * ele, Vector2 p, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE5A0, VisualElementExtensions_WorldToLocal__MethodInfo); DO_APP_FUNC(0x02ED3210, Vector2, VisualElementExtensions_LocalToWorld, (VisualElement * ele, Vector2 p, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE590, VisualElementExtensions_LocalToWorld__MethodInfo); DO_APP_FUNC(0x02ED3320, Rect, VisualElementExtensions_WorldToLocal_1, (VisualElement * ele, Rect r, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE470, VisualElementExtensions_WorldToLocal_1__MethodInfo); DO_APP_FUNC(0x02ED3410, FocusChangeDirection *, VisualElementFocusChangeDirection_get_left, (MethodInfo * method)); DO_APP_FUNC(0x02ED3470, FocusChangeDirection *, VisualElementFocusChangeDirection_get_right, (MethodInfo * method)); DO_APP_FUNC(0x02ED34D0, void, VisualElementFocusChangeDirection__ctor, (VisualElementFocusChangeDirection * __this, int32_t value, MethodInfo * method)); @@ -63325,11 +73175,13 @@ DO_APP_FUNC(0x003BC2E0, VisualElementFocusRing_DefaultFocusOrder__Enum, VisualEl DO_APP_FUNC(0x003BCDD0, void, VisualElementFocusRing_set_defaultFocusOrder, (VisualElementFocusRing * __this, VisualElementFocusRing_DefaultFocusOrder__Enum value, MethodInfo * method)); DO_APP_FUNC(0x02ED3C70, int32_t, VisualElementFocusRing_FocusRingAutoIndexSort, (VisualElementFocusRing * __this, VisualElementFocusRing_FocusRingRecord * a, VisualElementFocusRing_FocusRingRecord * b, MethodInfo * method)); DO_APP_FUNC(0x02ED4060, int32_t, VisualElementFocusRing_FocusRingSort, (VisualElementFocusRing * __this, VisualElementFocusRing_FocusRingRecord * a, VisualElementFocusRing_FocusRingRecord * b, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE408, VisualElementFocusRing_FocusRingSort__MethodInfo); DO_APP_FUNC(0x02ED4190, void, VisualElementFocusRing_DoUpdate, (VisualElementFocusRing * __this, MethodInfo * method)); -DO_APP_FUNC(0x02ED4280, void, VisualElementFocusRing_BuildRingForScopeRecursive, (VisualElementFocusRing * __this, VisualElement * ve, int32_t scopeIndex, List_1_UnityEngine_UIElements_VisualElementFocusRing_FocusRingRecord_ * scopeList, MethodInfo * method)); +DO_APP_FUNC(0x02ED4280, void, VisualElementFocusRing_BuildRingForScopeRecursive, (VisualElementFocusRing * __this, VisualElement * ve, int32_t * scopeIndex, List_1_UnityEngine_UIElements_VisualElementFocusRing_FocusRingRecord_ * scopeList, MethodInfo * method)); DO_APP_FUNC(0x02ED4590, void, VisualElementFocusRing_SortAndFlattenScopeLists, (VisualElementFocusRing * __this, List_1_UnityEngine_UIElements_VisualElementFocusRing_FocusRingRecord_ * rootScopeList, MethodInfo * method)); DO_APP_FUNC(0x02ED4860, int32_t, VisualElementFocusRing_GetFocusableInternalIndex, (VisualElementFocusRing * __this, Focusable * f, MethodInfo * method)); DO_APP_FUNC(0x02ED4920, FocusChangeDirection *, VisualElementFocusRing_GetFocusChangeDirection, (VisualElementFocusRing * __this, Focusable * currentFocusable, EventBase * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE438, VisualElementFocusRing_GetFocusChangeDirection__MethodInfo); DO_APP_FUNC(0x02ED4D70, FocusChangeDirection *, VisualElementFocusRing_GetKeyDownFocusChangeDirection, (EventBase * e, MethodInfo * method)); DO_APP_FUNC(0x02ED4F60, Focusable *, VisualElementFocusRing_GetNextFocusable, (VisualElementFocusRing * __this, Focusable * currentFocusable, FocusChangeDirection * direction, MethodInfo * method)); DO_APP_FUNC(0x02ED5610, Focusable *, VisualElementFocusRing_GetNextFocusableInTree, (VisualElement * currentFocusable, MethodInfo * method)); @@ -63344,13 +73196,17 @@ DO_APP_FUNC(0x02ED57A0, void, VisualElementPanelActivator_SetActive, (VisualElem DO_APP_FUNC(0x02ED5A60, void, VisualElementPanelActivator_SendActivation, (VisualElementPanelActivator * __this, MethodInfo * method)); DO_APP_FUNC(0x02ED5AE0, void, VisualElementPanelActivator_SendDeactivation, (VisualElementPanelActivator * __this, MethodInfo * method)); DO_APP_FUNC(0x02ED5B60, void, VisualElementPanelActivator_OnEnter, (VisualElementPanelActivator * __this, AttachToPanelEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE378, VisualElementPanelActivator_OnEnter__MethodInfo); DO_APP_FUNC(0x02ED5B70, void, VisualElementPanelActivator_OnLeave, (VisualElementPanelActivator * __this, DetachFromPanelEvent * evt, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, VisualElementStyleSheetSet__ctor, (VisualElementStyleSheetSet__Boxed * __this, VisualElement * element, MethodInfo * method)); -DO_APP_FUNC(0x02ED5BD0, void, VisualElementStyleSheetSet_Add, (VisualElementStyleSheetSet__Boxed * __this, StyleSheet * styleSheet, MethodInfo * method)); -DO_APP_FUNC(0x02ED5EC0, bool, VisualElementStyleSheetSet_Remove, (VisualElementStyleSheetSet__Boxed * __this, StyleSheet * styleSheet, MethodInfo * method)); -DO_APP_FUNC(0x02E48800, bool, VisualElementStyleSheetSet_Equals, (VisualElementStyleSheetSet__Boxed * __this, VisualElementStyleSheetSet other, MethodInfo * method)); -DO_APP_FUNC(0x02ED60F0, bool, VisualElementStyleSheetSet_Equals_1, (VisualElementStyleSheetSet__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02E48920, int32_t, VisualElementStyleSheetSet_GetHashCode, (VisualElementStyleSheetSet__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE380, VisualElementPanelActivator_OnLeave__MethodInfo); +DO_APP_FUNC(0x003BC280, void, VisualElementStyleSheetSet__ctor, (VisualElementStyleSheetSet * __this, VisualElement * element, MethodInfo * method)); +DO_APP_FUNC(0x02ED5BD0, void, VisualElementStyleSheetSet_Add, (VisualElementStyleSheetSet * __this, StyleSheet * styleSheet, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE390, VisualElementStyleSheetSet_Add__MethodInfo); +DO_APP_FUNC(0x02ED5EC0, bool, VisualElementStyleSheetSet_Remove, (VisualElementStyleSheetSet * __this, StyleSheet * styleSheet, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE3C8, VisualElementStyleSheetSet_Remove__MethodInfo); +DO_APP_FUNC(0x02E48800, bool, VisualElementStyleSheetSet_Equals, (VisualElementStyleSheetSet * __this, VisualElementStyleSheetSet other, MethodInfo * method)); +DO_APP_FUNC(0x02ED60F0, bool, VisualElementStyleSheetSet_Equals_1, (VisualElementStyleSheetSet * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02E48920, int32_t, VisualElementStyleSheetSet_GetHashCode, (VisualElementStyleSheetSet * __this, MethodInfo * method)); DO_APP_FUNC(0x02ED61D0, String *, VisualElementUtils_GetUniqueName, (String * nameBase, MethodInfo * method)); DO_APP_FUNC(0x02ED6390, int32_t, VisualElementUtils_GetFoldoutDepth, (VisualElement * element, MethodInfo * method)); DO_APP_FUNC(0x02ED6470, int32_t, VisualElementUtils_GetListAndFoldoutDepth, (VisualElement * element, MethodInfo * method)); @@ -63371,11 +73227,11 @@ DO_APP_FUNC(0x02ED7890, void, BaseVisualTreeHierarchyTrackerUpdater_ProcessNewCh DO_APP_FUNC(0x02ED79B0, void, BaseVisualTreeHierarchyTrackerUpdater_ProcessAddOrMove, (BaseVisualTreeHierarchyTrackerUpdater * __this, VisualElement * ve, MethodInfo * method)); DO_APP_FUNC(0x02ED7A70, void, BaseVisualTreeHierarchyTrackerUpdater_ProcessRemove, (BaseVisualTreeHierarchyTrackerUpdater * __this, VisualElement * ve, MethodInfo * method)); DO_APP_FUNC(0x005CFCC0, void, BaseVisualTreeHierarchyTrackerUpdater__ctor, (BaseVisualTreeHierarchyTrackerUpdater * __this, MethodInfo * method)); -DO_APP_FUNC(0x02ED7BD0, bool, StyleCache_TryGetValue, (int64_t hash, ComputedStyle data, MethodInfo * method)); -DO_APP_FUNC(0x02ED7D50, void, StyleCache_SetValue, (int64_t hash, ComputedStyle data, MethodInfo * method)); -DO_APP_FUNC(0x02ED7E50, bool, StyleCache_TryGetValue_1, (int32_t hash, StyleVariableContext * data, MethodInfo * method)); +DO_APP_FUNC(0x02ED7BD0, bool, StyleCache_TryGetValue, (int64_t hash, ComputedStyle * data, MethodInfo * method)); +DO_APP_FUNC(0x02ED7D50, void, StyleCache_SetValue, (int64_t hash, ComputedStyle * data, MethodInfo * method)); +DO_APP_FUNC(0x02ED7E50, bool, StyleCache_TryGetValue_1, (int32_t hash, StyleVariableContext * * data, MethodInfo * method)); DO_APP_FUNC(0x02ED7EF0, void, StyleCache_SetValue_1, (int32_t hash, StyleVariableContext * data, MethodInfo * method)); -DO_APP_FUNC(0x02ED7FA0, bool, StyleCache_TryGetValue_2, (int32_t hash, ComputedTransitionProperty__Array * data, MethodInfo * method)); +DO_APP_FUNC(0x02ED7FA0, bool, StyleCache_TryGetValue_2, (int32_t hash, ComputedTransitionProperty__Array * * data, MethodInfo * method)); DO_APP_FUNC(0x02ED8040, void, StyleCache_SetValue_2, (int32_t hash, ComputedTransitionProperty__Array * data, MethodInfo * method)); DO_APP_FUNC(0x02ED80F0, void, StyleCache__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02ED83A0, ProfilerMarker, VisualTreeStyleUpdater_get_profilerMarker, (VisualTreeStyleUpdater * __this, MethodInfo * method)); @@ -63397,10 +73253,11 @@ DO_APP_FUNC(0x02ED93E0, void, VisualTreeStyleUpdaterTraversal_Clear, (VisualTree DO_APP_FUNC(0x02ED9480, void, VisualTreeStyleUpdaterTraversal_PropagateToChildren, (VisualTreeStyleUpdaterTraversal * __this, VisualElement * ve, MethodInfo * method)); DO_APP_FUNC(0x02ED9610, void, VisualTreeStyleUpdaterTraversal_PropagateToParents, (VisualTreeStyleUpdaterTraversal * __this, VisualElement * ve, MethodInfo * method)); DO_APP_FUNC(0x02ED96D0, void, VisualTreeStyleUpdaterTraversal_OnProcessMatchResult, (VisualElement * current, MatchResultInfo info, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE130, VisualTreeStyleUpdaterTraversal_OnProcessMatchResult__MethodInfo); DO_APP_FUNC(0x02ED9710, void, VisualTreeStyleUpdaterTraversal_TraverseRecursive, (VisualTreeStyleUpdaterTraversal * __this, VisualElement * element, int32_t depth, MethodInfo * method)); -DO_APP_FUNC(0x02EDA0C0, void, VisualTreeStyleUpdaterTraversal_ProcessTransitions, (VisualTreeStyleUpdaterTraversal * __this, VisualElement * element, ComputedStyle oldStyle, ComputedStyle newStyle, MethodInfo * method)); +DO_APP_FUNC(0x02EDA0C0, void, VisualTreeStyleUpdaterTraversal_ProcessTransitions, (VisualTreeStyleUpdaterTraversal * __this, VisualElement * element, ComputedStyle * oldStyle, ComputedStyle * newStyle, MethodInfo * method)); DO_APP_FUNC(0x02EDA1E0, void, VisualTreeStyleUpdaterTraversal_ForceUpdateTransitions, (VisualTreeStyleUpdaterTraversal * __this, VisualElement * element, MethodInfo * method)); -DO_APP_FUNC(0x02EDA4D0, void, VisualTreeStyleUpdaterTraversal_CancelAnimationsWithNoTransitionProperty, (VisualTreeStyleUpdaterTraversal * __this, VisualElement * element, ComputedStyle newStyle, MethodInfo * method)); +DO_APP_FUNC(0x02EDA4D0, void, VisualTreeStyleUpdaterTraversal_CancelAnimationsWithNoTransitionProperty, (VisualTreeStyleUpdaterTraversal * __this, VisualElement * element, ComputedStyle * newStyle, MethodInfo * method)); DO_APP_FUNC(0x02EDA810, bool, VisualTreeStyleUpdaterTraversal_ShouldSkipElement, (VisualTreeStyleUpdaterTraversal * __this, VisualElement * element, MethodInfo * method)); DO_APP_FUNC(0x02EDA8A0, ComputedStyle, VisualTreeStyleUpdaterTraversal_ProcessMatchedRules, (VisualTreeStyleUpdaterTraversal * __this, VisualElement * element, List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * matchingSelectors, MethodInfo * method)); DO_APP_FUNC(0x02EDBE80, void, VisualTreeStyleUpdaterTraversal_ProcessMatchedVariables, (VisualTreeStyleUpdaterTraversal * __this, StyleSheet * sheet, StyleRule * rule, MethodInfo * method)); @@ -63408,6 +73265,7 @@ DO_APP_FUNC(0x02EDBF60, void, VisualTreeStyleUpdaterTraversal__ctor, (VisualTree DO_APP_FUNC(0x02EDC470, void, VisualTreeStyleUpdaterTraversal_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, VisualTreeStyleUpdaterTraversal_c__ctor, (VisualTreeStyleUpdaterTraversal_c * __this, MethodInfo * method)); DO_APP_FUNC(0x02EDC520, int32_t, VisualTreeStyleUpdaterTraversal_c__ProcessMatchedRules_b__24_0, (VisualTreeStyleUpdaterTraversal_c * __this, SelectorMatchRecord a, SelectorMatchRecord b, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE198, VisualTreeStyleUpdaterTraversal_c__ProcessMatchedRules_b__24_0__MethodInfo); DO_APP_FUNC(0x02EDC630, ProfilerMarker, VisualTreeTransformClipUpdater_get_profilerMarker, (VisualTreeTransformClipUpdater * __this, MethodInfo * method)); DO_APP_FUNC(0x02EDC690, void, VisualTreeTransformClipUpdater_OnVersionChanged, (VisualTreeTransformClipUpdater * __this, VisualElement * ve, VersionChangeType__Enum versionChangeType, MethodInfo * method)); DO_APP_FUNC(0x02EDC7E0, void, VisualTreeTransformClipUpdater_DirtyHierarchy, (VisualElement * ve, bool mustDirtyWorldTransform, bool mustDirtyWorldClip, MethodInfo * method)); @@ -63474,7 +73332,9 @@ DO_APP_FUNC(0x02EE0730, void, CollectionViewController_InvokeBindItem, (Collecti DO_APP_FUNC(0x02EE0800, void, CollectionViewController_InvokeUnbindItem, (CollectionViewController * __this, ReusableCollectionItem * reusableItem, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x02EE0830, void, CollectionViewController_InvokeDestroyItem, (CollectionViewController * __this, ReusableCollectionItem * reusableItem, MethodInfo * method)); DO_APP_FUNC(0x02EE0860, VisualElement *, CollectionViewController_MakeItem, (CollectionViewController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDFF0, CollectionViewController_MakeItem__MethodInfo); DO_APP_FUNC(0x02EE0980, void, CollectionViewController_BindItem, (CollectionViewController * __this, VisualElement * element, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE000, CollectionViewController_BindItem__MethodInfo); DO_APP_FUNC(0x02EE0B30, void, CollectionViewController_UnbindItem, (CollectionViewController * __this, VisualElement * element, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x02EE0B70, void, CollectionViewController_DestroyItem, (CollectionViewController * __this, VisualElement * element, MethodInfo * method)); DO_APP_FUNC(0x02EE0BB0, void, CollectionViewController_RaiseItemsSourceChanged, (CollectionViewController * __this, MethodInfo * method)); @@ -63499,9 +73359,12 @@ DO_APP_FUNC(0x02EE27C0, void, ListViewController_RaiseOnSizeChanged, (ListViewCo DO_APP_FUNC(0x02EE27E0, void, ListViewController_RaiseItemsAdded, (ListViewController * __this, IEnumerable_1_System_Int32_ * indices, MethodInfo * method)); DO_APP_FUNC(0x02EE2800, void, ListViewController_RaiseItemsRemoved, (ListViewController * __this, IEnumerable_1_System_Int32_ * indices, MethodInfo * method)); DO_APP_FUNC(0x02EE2820, Array *, ListViewController_AddToArray, (Array * source, int32_t itemCount, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDFC0, ListViewController_AddToArray__MethodInfo); DO_APP_FUNC(0x02EE29E0, Array *, ListViewController_RemoveFromArray, (Array * source, List_1_System_Int32_ * indicesToRemove, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDFD0, ListViewController_RemoveFromArray__MethodInfo); DO_APP_FUNC(0x02EE2B90, void, ListViewController_Swap, (ListViewController * __this, int32_t lhs, int32_t rhs, MethodInfo * method)); DO_APP_FUNC(0x02EE2C70, void, ListViewController_EnsureItemSourceCanBeResized, (ListViewController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDFE0, ListViewController_EnsureItemSourceCanBeResized__MethodInfo); DO_APP_FUNC(0x003AE050, void, ListViewController__ctor, (ListViewController * __this, MethodInfo * method)); DO_APP_FUNC(0x02EE2D60, bool, ListViewController__AddItems_g__IsGenericList_14_0, (Type * t, MethodInfo * method)); DO_APP_FUNC(0x02EE2E30, TreeView *, TreeViewController_get_treeView, (TreeViewController * __this, MethodInfo * method)); @@ -63517,7 +73380,7 @@ DO_APP_FUNC(0x02EE3880, bool, TreeViewController_IsExpandedByIndex, (TreeViewCon DO_APP_FUNC(0x02EE3940, void, TreeViewController_ExpandItemByIndex, (TreeViewController * __this, int32_t index, bool expandAllChildren, bool refresh, MethodInfo * method)); DO_APP_FUNC(0x02EE4420, void, TreeViewController_ExpandItem, (TreeViewController * __this, int32_t id, bool expandAllChildren, bool refresh, MethodInfo * method)); DO_APP_FUNC(0x02EE45E0, void, TreeViewController_RegenerateWrappers, (TreeViewController * __this, MethodInfo * method)); -DO_APP_FUNC(0x02EE46D0, void, TreeViewController_CreateWrappers, (TreeViewController * __this, IEnumerable_1_System_Int32_ * treeViewItemIds, int32_t depth, List_1_UnityEngine_UIElements_TreeViewItemWrapper_ * wrappers, MethodInfo * method)); +DO_APP_FUNC(0x02EE46D0, void, TreeViewController_CreateWrappers, (TreeViewController * __this, IEnumerable_1_System_Int32_ * treeViewItemIds, int32_t depth, List_1_UnityEngine_UIElements_TreeViewItemWrapper_ * * wrappers, MethodInfo * method)); DO_APP_FUNC(0x02EE4C60, bool, TreeViewController_IsIndexValid, (TreeViewController * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x02EE0BD0, void, TreeViewController_RaiseItemParentChanged, (TreeViewController * __this, int32_t id, int32_t newParentId, MethodInfo * method)); DO_APP_FUNC(0x02EE4CD0, void, TreeViewController__cctor, (MethodInfo * method)); @@ -63542,6 +73405,7 @@ DO_APP_FUNC(0x02EE52B0, void, ReusableCollectionItem_DetachElement, (ReusableCol DO_APP_FUNC(0x02EE5400, void, ReusableCollectionItem_SetSelected, (ReusableCollectionItem * __this, bool selected, MethodInfo * method)); DO_APP_FUNC(0x02EE5530, void, ReusableCollectionItem_SetDragGhost, (ReusableCollectionItem * __this, bool dragGhost, MethodInfo * method)); DO_APP_FUNC(0x00C27420, void, ReusableCollectionItem_OnGeometryChanged, (ReusableCollectionItem * __this, GeometryChangedEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE07B0, ReusableCollectionItem_OnGeometryChanged__MethodInfo); DO_APP_FUNC(0x0294B470, VisualElement *, ReusableListViewItem_get_rootElement, (ReusableListViewItem * __this, MethodInfo * method)); DO_APP_FUNC(0x02EE5630, void, ReusableListViewItem_Init, (ReusableListViewItem * __this, VisualElement * item, bool usesAnimatedDragger, MethodInfo * method)); DO_APP_FUNC(0x02EE5690, void, ReusableListViewItem_UpdateHierarchy, (ReusableListViewItem * __this, bool usesAnimatedDragger, MethodInfo * method)); @@ -63552,12 +73416,15 @@ DO_APP_FUNC(0x02EE5F40, void, ReusableListViewItem_SetDragGhost, (ReusableListVi DO_APP_FUNC(0x02EE50F0, void, ReusableListViewItem__ctor, (ReusableListViewItem * __this, MethodInfo * method)); DO_APP_FUNC(0x02EE60B0, void, BaseBoolField__ctor, (BaseBoolField * __this, String * label, MethodInfo * method)); DO_APP_FUNC(0x02EE6660, void, BaseBoolField_OnNavigationSubmit, (BaseBoolField * __this, NavigationSubmitEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0788, BaseBoolField_OnNavigationSubmit__MethodInfo); DO_APP_FUNC(0x02EE6690, void, BaseBoolField_OnKeyDown, (BaseBoolField * __this, KeyDownEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE07A0, BaseBoolField_OnKeyDown__MethodInfo); DO_APP_FUNC(0x02EE6740, String *, BaseBoolField_get_text, (BaseBoolField * __this, MethodInfo * method)); DO_APP_FUNC(0x02EE6770, void, BaseBoolField_set_text, (BaseBoolField * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x02EE6860, void, BaseBoolField_InitLabel, (BaseBoolField * __this, MethodInfo * method)); DO_APP_FUNC(0x02EE69B0, void, BaseBoolField_SetValueWithoutNotify, (BaseBoolField * __this, bool newValue, MethodInfo * method)); DO_APP_FUNC(0x02EE6B00, void, BaseBoolField_OnClickEvent, (BaseBoolField * __this, EventBase * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0798, BaseBoolField_OnClickEvent__MethodInfo); DO_APP_FUNC(0x02EE6D10, void, BaseBoolField_ToggleValue, (BaseBoolField * __this, MethodInfo * method)); DO_APP_FUNC(0x02EE6D50, void, BaseBoolField_UpdateMixedValueContent, (BaseBoolField * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SerializedVirtualizationData__ctor, (SerializedVirtualizationData * __this, MethodInfo * method)); @@ -63599,6 +73466,7 @@ DO_APP_FUNC(0x00DD5C20, CollectionVirtualizationMethod__Enum, BaseVerticalCollec DO_APP_FUNC(0x02EE7B20, void, BaseVerticalCollectionView_set_virtualizationMethod, (BaseVerticalCollectionView * __this, CollectionVirtualizationMethod__Enum value, MethodInfo * method)); DO_APP_FUNC(0x02EE7B60, float, BaseVerticalCollectionView_get_fixedItemHeight, (BaseVerticalCollectionView * __this, MethodInfo * method)); DO_APP_FUNC(0x02EE7B70, void, BaseVerticalCollectionView_set_fixedItemHeight, (BaseVerticalCollectionView * __this, float value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE06B8, BaseVerticalCollectionView_set_fixedItemHeight__MethodInfo); DO_APP_FUNC(0x02EE7C80, float, BaseVerticalCollectionView_get_lastHeight, (BaseVerticalCollectionView * __this, MethodInfo * method)); DO_APP_FUNC(0x02EE7C90, void, BaseVerticalCollectionView_CreateVirtualizationController, (BaseVerticalCollectionView * __this, MethodInfo * method)); DO_APP_FUNC(0x02EE77E0, CollectionVirtualizationController *, BaseVerticalCollectionView_GetOrCreateVirtualizationController, (BaseVerticalCollectionView * __this, MethodInfo * method)); @@ -63611,7 +73479,9 @@ DO_APP_FUNC(0x02EE8560, void, BaseVerticalCollectionView__ctor, (BaseVerticalCol DO_APP_FUNC(0x02EE9170, VisualElement *, BaseVerticalCollectionView_GetRootElementForId, (BaseVerticalCollectionView * __this, int32_t id, MethodInfo * method)); DO_APP_FUNC(0x02EE9280, bool, BaseVerticalCollectionView_HasValidDataAndBindings, (BaseVerticalCollectionView * __this, MethodInfo * method)); DO_APP_FUNC(0x02EE92C0, void, BaseVerticalCollectionView_OnItemIndexChanged, (BaseVerticalCollectionView * __this, int32_t srcIndex, int32_t dstIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE06F8, BaseVerticalCollectionView_OnItemIndexChanged__MethodInfo); DO_APP_FUNC(0x02EE92F0, void, BaseVerticalCollectionView_OnItemsSourceChanged, (BaseVerticalCollectionView * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE06E0, BaseVerticalCollectionView_OnItemsSourceChanged__MethodInfo); DO_APP_FUNC(0x02EE9310, void, BaseVerticalCollectionView_RefreshItems, (BaseVerticalCollectionView * __this, MethodInfo * method)); DO_APP_FUNC(0x02EE9390, void, BaseVerticalCollectionView_Rebuild, (BaseVerticalCollectionView * __this, MethodInfo * method)); DO_APP_FUNC(0x02EE9410, void, BaseVerticalCollectionView_RefreshSelection, (BaseVerticalCollectionView * __this, MethodInfo * method)); @@ -63620,13 +73490,20 @@ DO_APP_FUNC(0x02EE9740, void, BaseVerticalCollectionView_ScrollToItem, (BaseVert DO_APP_FUNC(0x02EE97D0, void, BaseVerticalCollectionView_OnScroll, (BaseVerticalCollectionView * __this, Vector2 offset, MethodInfo * method)); DO_APP_FUNC(0x02EE9870, void, BaseVerticalCollectionView_Resize, (BaseVerticalCollectionView * __this, Vector2 size, MethodInfo * method)); DO_APP_FUNC(0x02EE9920, void, BaseVerticalCollectionView_OnAttachToPanel, (BaseVerticalCollectionView * __this, AttachToPanelEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0700, BaseVerticalCollectionView_OnAttachToPanel__MethodInfo); DO_APP_FUNC(0x02EE9DA0, void, BaseVerticalCollectionView_OnDetachFromPanel, (BaseVerticalCollectionView * __this, DetachFromPanelEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE06F0, BaseVerticalCollectionView_OnDetachFromPanel__MethodInfo); DO_APP_FUNC(0x02EEA130, bool, BaseVerticalCollectionView_Apply, (BaseVerticalCollectionView * __this, KeyboardNavigationOperation__Enum op, bool shiftKey, MethodInfo * method)); DO_APP_FUNC(0x02EEA5D0, void, BaseVerticalCollectionView_Apply_1, (BaseVerticalCollectionView * __this, KeyboardNavigationOperation__Enum op, EventBase * sourceEvent, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0678, BaseVerticalCollectionView_Apply_1__MethodInfo); DO_APP_FUNC(0x02EEA6D0, void, BaseVerticalCollectionView_OnPointerMove, (BaseVerticalCollectionView * __this, PointerMoveEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0650, BaseVerticalCollectionView_OnPointerMove__MethodInfo); DO_APP_FUNC(0x02EEA760, void, BaseVerticalCollectionView_OnPointerDown, (BaseVerticalCollectionView * __this, PointerDownEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0668, BaseVerticalCollectionView_OnPointerDown__MethodInfo); DO_APP_FUNC(0x02EEA8D0, void, BaseVerticalCollectionView_OnPointerCancel, (BaseVerticalCollectionView * __this, PointerCancelEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0660, BaseVerticalCollectionView_OnPointerCancel__MethodInfo); DO_APP_FUNC(0x02EEA960, void, BaseVerticalCollectionView_OnPointerUp, (BaseVerticalCollectionView * __this, PointerUpEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0658, BaseVerticalCollectionView_OnPointerUp__MethodInfo); DO_APP_FUNC(0x02EEAAD0, void, BaseVerticalCollectionView_ProcessPointerDown, (BaseVerticalCollectionView * __this, IPointerEvent * evt, MethodInfo * method)); DO_APP_FUNC(0x02EEAD10, void, BaseVerticalCollectionView_ProcessPointerUp, (BaseVerticalCollectionView * __this, IPointerEvent * evt, MethodInfo * method)); DO_APP_FUNC(0x02EEB090, void, BaseVerticalCollectionView_DoSelect, (BaseVerticalCollectionView * __this, Vector2 localPosition, int32_t clickCount, bool actionKey, bool shiftKey, MethodInfo * method)); @@ -63648,14 +73525,18 @@ DO_APP_FUNC(0x02EEC850, void, BaseVerticalCollectionView_ClearSelectionWithoutVa DO_APP_FUNC(0x02EECAB0, void, BaseVerticalCollectionView_OnViewDataReady, (BaseVerticalCollectionView * __this, MethodInfo * method)); DO_APP_FUNC(0x02EECAE0, void, BaseVerticalCollectionView_ExecuteDefaultAction, (BaseVerticalCollectionView * __this, EventBase * evt, MethodInfo * method)); DO_APP_FUNC(0x02EECED0, void, BaseVerticalCollectionView_OnSizeChanged, (BaseVerticalCollectionView * __this, GeometryChangedEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE06E8, BaseVerticalCollectionView_OnSizeChanged__MethodInfo); DO_APP_FUNC(0x02EECF90, void, BaseVerticalCollectionView_OnCustomStyleResolved, (BaseVerticalCollectionView * __this, CustomStyleResolvedEvent * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0708, BaseVerticalCollectionView_OnCustomStyleResolved__MethodInfo); DO_APP_FUNC(0x003AE050, void, BaseVerticalCollectionView_UnityEngine_ISerializationCallbackReceiver_OnBeforeSerialize, (BaseVerticalCollectionView * __this, MethodInfo * method)); DO_APP_FUNC(0x02EED150, void, BaseVerticalCollectionView_UnityEngine_ISerializationCallbackReceiver_OnAfterDeserialize, (BaseVerticalCollectionView * __this, MethodInfo * method)); DO_APP_FUNC(0x02EED160, void, BaseVerticalCollectionView__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02EED940, void, BaseVerticalCollectionView___ctor_b__144_0, (BaseVerticalCollectionView * __this, float v, MethodInfo * method)); -DO_APP_FUNC(0x02EED9E0, void, BaseVerticalCollectionView__Apply_g__HandleSelectionAndScroll_165_0, (BaseVerticalCollectionView * __this, int32_t index, BaseVerticalCollectionView_c_DisplayClass165_0 param_0000ff2d, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0720, BaseVerticalCollectionView___ctor_b__144_0__MethodInfo); +DO_APP_FUNC(0x02EED9E0, void, BaseVerticalCollectionView__Apply_g__HandleSelectionAndScroll_165_0, (BaseVerticalCollectionView * __this, int32_t index, BaseVerticalCollectionView_c_DisplayClass165_0 * param_0000ff2d, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BaseVerticalCollectionView_c_DisplayClass146_0__ctor, (BaseVerticalCollectionView_c_DisplayClass146_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x02EEDAC0, bool, BaseVerticalCollectionView_c_DisplayClass146_0__GetRootElementForId_b__0, (BaseVerticalCollectionView_c_DisplayClass146_0 * __this, ReusableCollectionItem * t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0620, BaseVerticalCollectionView_c_DisplayClass146_0__GetRootElementForId_b__0__MethodInfo); DO_APP_FUNC(0x02EEDAE0, void, Box__ctor, (Box * __this, MethodInfo * method)); DO_APP_FUNC(0x02EEDB80, void, Box__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02EEDC30, void, Box_UxmlFactory__ctor, (Box_UxmlFactory * __this, MethodInfo * method)); @@ -63664,7 +73545,9 @@ DO_APP_FUNC(0x02EEDC90, void, Button_1_set_clickable, (Button_1 * __this, Clicka DO_APP_FUNC(0x02EEDDB0, void, Button_1__ctor, (Button_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02EEDDC0, void, Button_1__ctor_1, (Button_1 * __this, Action * clickEvent, MethodInfo * method)); DO_APP_FUNC(0x02EEE080, void, Button_1_OnNavigationSubmit, (Button_1 * __this, NavigationSubmitEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0510, Button_1_OnNavigationSubmit__MethodInfo); DO_APP_FUNC(0x02EEE0C0, void, Button_1_OnKeyDown, (Button_1 * __this, KeyDownEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0520, Button_1_OnKeyDown__MethodInfo); DO_APP_FUNC(0x02EEE180, Vector2, Button_1_DoMeasure, (Button_1 * __this, float desiredWidth, VisualElement_MeasureMode__Enum widthMode, float desiredHeight, VisualElement_MeasureMode__Enum heightMode, MethodInfo * method)); DO_APP_FUNC(0x02EEE260, void, Button_1__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02EEE390, void, Button_UxmlFactory__ctor, (Button_UxmlFactory * __this, MethodInfo * method)); @@ -63682,6 +73565,7 @@ DO_APP_FUNC(0x02EEEC30, void, DropdownField_set_index, (DropdownField * __this, DO_APP_FUNC(0x02EEECE0, void, DropdownField__ctor, (DropdownField * __this, MethodInfo * method)); DO_APP_FUNC(0x02EEECF0, void, DropdownField__ctor_1, (DropdownField * __this, String * label, MethodInfo * method)); DO_APP_FUNC(0x02EEF210, void, DropdownField_AddMenuItems, (DropdownField * __this, IGenericMenu * menu, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE04E8, DropdownField_AddMenuItems__MethodInfo); DO_APP_FUNC(0x02EEF6C0, void, DropdownField_ChangeValueFromMenu, (DropdownField * __this, String * menuItem, MethodInfo * method)); DO_APP_FUNC(0x02EEF6E0, void, DropdownField_set_choices, (DropdownField * __this, List_1_System_String_ * value, MethodInfo * method)); DO_APP_FUNC(0x02EEF790, String *, DropdownField_get_value, (DropdownField * __this, MethodInfo * method)); @@ -63698,6 +73582,7 @@ DO_APP_FUNC(0x02EF0B40, Vector2, DropdownField_PopupTextElement_DoMeasure, (Drop DO_APP_FUNC(0x02EF0C00, void, DropdownField_PopupTextElement__ctor, (DropdownField_PopupTextElement * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, DropdownField_c_DisplayClass38_0__ctor, (DropdownField_c_DisplayClass38_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x02EF0C50, void, DropdownField_c_DisplayClass38_0__AddMenuItems_b__0, (DropdownField_c_DisplayClass38_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE04F8, DropdownField_c_DisplayClass38_0__AddMenuItems_b__0__MethodInfo); DO_APP_FUNC(0x01D1CDA0, VisualElement *, Foldout_get_contentContainer, (Foldout * __this, MethodInfo * method)); DO_APP_FUNC(0x02EF0C80, void, Foldout_set_text, (Foldout * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x02EF0DC0, bool, Foldout_get_value, (Foldout * __this, MethodInfo * method)); @@ -63706,23 +73591,33 @@ DO_APP_FUNC(0x02EF0EF0, void, Foldout_SetValueWithoutNotify, (Foldout * __this, DO_APP_FUNC(0x02EF0FB0, void, Foldout_OnViewDataReady, (Foldout * __this, MethodInfo * method)); DO_APP_FUNC(0x02EF0FF0, void, Foldout__ctor, (Foldout * __this, MethodInfo * method)); DO_APP_FUNC(0x02EF15C0, void, Foldout_OnAttachToPanel, (Foldout * __this, AttachToPanelEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE03F8, Foldout_OnAttachToPanel__MethodInfo); DO_APP_FUNC(0x02EF18A0, void, Foldout__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02EF1D40, void, Foldout___ctor_b__25_0, (Foldout * __this, ChangeEvent_1_System_Boolean_ * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0400, Foldout___ctor_b__25_0__MethodInfo); DO_APP_FUNC(0x02EF1DA0, void, Foldout_UxmlFactory__ctor, (Foldout_UxmlFactory * __this, MethodInfo * method)); DO_APP_FUNC(0x02EF1DE0, void, Foldout_UxmlTraits_Init, (Foldout_UxmlTraits * __this, VisualElement * ve, IUxmlAttributes * bag, CreationContext cc, MethodInfo * method)); DO_APP_FUNC(0x02EF1F40, void, Foldout_UxmlTraits__ctor, (Foldout_UxmlTraits * __this, MethodInfo * method)); DO_APP_FUNC(0x02EF2190, VisualElement *, GenericDropdownMenu_get_contentContainer, (GenericDropdownMenu * __this, MethodInfo * method)); DO_APP_FUNC(0x02EF21C0, void, GenericDropdownMenu__ctor, (GenericDropdownMenu * __this, MethodInfo * method)); DO_APP_FUNC(0x02EF2780, void, GenericDropdownMenu_OnAttachToPanel, (GenericDropdownMenu * __this, AttachToPanelEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0380, GenericDropdownMenu_OnAttachToPanel__MethodInfo); DO_APP_FUNC(0x02EF2C80, void, GenericDropdownMenu_OnDetachFromPanel, (GenericDropdownMenu * __this, DetachFromPanelEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0388, GenericDropdownMenu_OnDetachFromPanel__MethodInfo); DO_APP_FUNC(0x02EF30C0, void, GenericDropdownMenu_Hide, (GenericDropdownMenu * __this, MethodInfo * method)); DO_APP_FUNC(0x02EF3210, void, GenericDropdownMenu_Apply, (GenericDropdownMenu * __this, KeyboardNavigationOperation__Enum op, EventBase * sourceEvent, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE03B0, GenericDropdownMenu_Apply__MethodInfo); DO_APP_FUNC(0x02EF3250, bool, GenericDropdownMenu_Apply_1, (GenericDropdownMenu * __this, KeyboardNavigationOperation__Enum op, MethodInfo * method)); DO_APP_FUNC(0x02EF3580, void, GenericDropdownMenu_OnPointerDown, (GenericDropdownMenu * __this, PointerDownEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0398, GenericDropdownMenu_OnPointerDown__MethodInfo); DO_APP_FUNC(0x02EF3740, void, GenericDropdownMenu_OnPointerMove, (GenericDropdownMenu * __this, PointerMoveEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE03C0, GenericDropdownMenu_OnPointerMove__MethodInfo); DO_APP_FUNC(0x02EF3900, void, GenericDropdownMenu_OnPointerUp, (GenericDropdownMenu * __this, PointerUpEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE03C8, GenericDropdownMenu_OnPointerUp__MethodInfo); DO_APP_FUNC(0x02EF3AD0, void, GenericDropdownMenu_OnFocusOut, (GenericDropdownMenu * __this, FocusOutEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE03A8, GenericDropdownMenu_OnFocusOut__MethodInfo); DO_APP_FUNC(0x02EF3BF0, void, GenericDropdownMenu_OnParentResized, (GenericDropdownMenu * __this, GeometryChangedEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0390, GenericDropdownMenu_OnParentResized__MethodInfo); DO_APP_FUNC(0x02EF3C00, void, GenericDropdownMenu_UpdateSelection, (GenericDropdownMenu * __this, VisualElement * target, MethodInfo * method)); DO_APP_FUNC(0x02EF3D50, void, GenericDropdownMenu_ChangeSelectedIndex, (GenericDropdownMenu * __this, int32_t newIndex, int32_t previousIndex, MethodInfo * method)); DO_APP_FUNC(0x02EF3EB0, int32_t, GenericDropdownMenu_GetSelectedIndex, (GenericDropdownMenu * __this, MethodInfo * method)); @@ -63731,11 +73626,13 @@ DO_APP_FUNC(0x02EF3FE0, void, GenericDropdownMenu_AddSeparator, (GenericDropdown DO_APP_FUNC(0x02EF40E0, GenericDropdownMenu_MenuItem *, GenericDropdownMenu_AddItem_1, (GenericDropdownMenu * __this, String * itemName, bool isChecked, bool isEnabled, Object * data, MethodInfo * method)); DO_APP_FUNC(0x02EF46A0, void, GenericDropdownMenu_DropDown, (GenericDropdownMenu * __this, Rect position, VisualElement * targetElement, bool anchored, MethodInfo * method)); DO_APP_FUNC(0x02EF3BF0, void, GenericDropdownMenu_OnTargetElementDetachFromPanel, (GenericDropdownMenu * __this, DetachFromPanelEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE03B8, GenericDropdownMenu_OnTargetElementDetachFromPanel__MethodInfo); DO_APP_FUNC(0x02EF5070, void, GenericDropdownMenu_OnContainerGeometryChanged, (GenericDropdownMenu * __this, GeometryChangedEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE03A0, GenericDropdownMenu_OnContainerGeometryChanged__MethodInfo); DO_APP_FUNC(0x02EF5080, void, GenericDropdownMenu_EnsureVisibilityInParent, (GenericDropdownMenu * __this, MethodInfo * method)); DO_APP_FUNC(0x02EF5750, void, GenericDropdownMenu__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02EF5BD0, void, GenericDropdownMenu__Apply_g__UpdateSelectionDown_27_0, (GenericDropdownMenu * __this, int32_t newIndex, GenericDropdownMenu_c_DisplayClass27_0 param_0000ff72, MethodInfo * method)); -DO_APP_FUNC(0x02EF5CA0, void, GenericDropdownMenu__Apply_g__UpdateSelectionUp_27_1, (GenericDropdownMenu * __this, int32_t newIndex, GenericDropdownMenu_c_DisplayClass27_0 param_0000ff74, MethodInfo * method)); +DO_APP_FUNC(0x02EF5BD0, void, GenericDropdownMenu__Apply_g__UpdateSelectionDown_27_0, (GenericDropdownMenu * __this, int32_t newIndex, GenericDropdownMenu_c_DisplayClass27_0 * param_0000ff72, MethodInfo * method)); +DO_APP_FUNC(0x02EF5CA0, void, GenericDropdownMenu__Apply_g__UpdateSelectionUp_27_1, (GenericDropdownMenu * __this, int32_t newIndex, GenericDropdownMenu_c_DisplayClass27_0 * param_0000ff74, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GenericDropdownMenu_MenuItem__ctor, (GenericDropdownMenu_MenuItem * __this, MethodInfo * method)); DO_APP_FUNC(0x02EF5D60, void, GroupBox_set_text, (GroupBox * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x02EF5F60, void, GroupBox__ctor, (GroupBox * __this, MethodInfo * method)); @@ -63766,7 +73663,9 @@ DO_APP_FUNC(0x02EF75B0, Vector2, Image_1_GetTextureDisplaySize, (Image_1 * __thi DO_APP_FUNC(0x02EF7740, Vector2, Image_1_GetTextureDisplaySize_1, (Image_1 * __this, Sprite * sprite, MethodInfo * method)); DO_APP_FUNC(0x02EF7950, Vector2, Image_1_DoMeasure, (Image_1 * __this, float desiredWidth, VisualElement_MeasureMode__Enum widthMode, float desiredHeight, VisualElement_MeasureMode__Enum heightMode, MethodInfo * method)); DO_APP_FUNC(0x02EF7F00, void, Image_1_OnGenerateVisualContent, (Image_1 * __this, MeshGenerationContext * mgc, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE02B8, Image_1_OnGenerateVisualContent__MethodInfo); DO_APP_FUNC(0x02EF8770, void, Image_1_OnCustomStyleResolved, (Image_1 * __this, CustomStyleResolvedEvent * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE02B0, Image_1_OnCustomStyleResolved__MethodInfo); DO_APP_FUNC(0x02EF8FC0, void, Image_1_SetScaleMode, (Image_1 * __this, ScaleMode__Enum mode, MethodInfo * method)); DO_APP_FUNC(0x02EF9000, Rect, Image_1_GetSourceRect, (Image_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02EF9310, void, Image_1__cctor, (MethodInfo * method)); @@ -63804,17 +73703,23 @@ DO_APP_FUNC(0x02EFCB40, void, ListView_set_showAddRemoveFooter, (ListView * __th DO_APP_FUNC(0x02EFCB50, void, ListView_EnableFooter, (ListView * __this, bool enabled, MethodInfo * method)); DO_APP_FUNC(0x02EFD250, void, ListView_AddItems, (ListView * __this, int32_t itemCount, MethodInfo * method)); DO_APP_FUNC(0x02EFD280, void, ListView_OnArraySizeFieldChanged, (ListView * __this, ChangeEvent_1_System_String_ * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0150, ListView_OnArraySizeFieldChanged__MethodInfo); DO_APP_FUNC(0x02EFD450, void, ListView_UpdateArraySizeField, (ListView * __this, MethodInfo * method)); DO_APP_FUNC(0x02EFD500, void, ListView_UpdateEmpty, (ListView * __this, MethodInfo * method)); DO_APP_FUNC(0x02EFD6F0, void, ListView_OnAddClicked, (ListView * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0168, ListView_OnAddClicked__MethodInfo); DO_APP_FUNC(0x02EFD850, void, ListView_OnRemoveClicked, (ListView * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0170, ListView_OnRemoveClicked__MethodInfo); DO_APP_FUNC(0x02EFDA30, ListViewController *, ListView_get_viewController, (ListView * __this, MethodInfo * method)); DO_APP_FUNC(0x02EFDA40, void, ListView_CreateVirtualizationController, (ListView * __this, MethodInfo * method)); DO_APP_FUNC(0x02EFDA80, void, ListView_CreateViewController, (ListView * __this, MethodInfo * method)); DO_APP_FUNC(0x02EFDAE0, void, ListView_SetViewController, (ListView * __this, ListViewController * controller, MethodInfo * method)); DO_APP_FUNC(0x02EFE330, void, ListView_OnItemAdded, (ListView * __this, IEnumerable_1_System_Int32_ * indices, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE00A8, ListView_OnItemAdded__MethodInfo); DO_APP_FUNC(0x02EFE350, void, ListView_OnItemsRemoved, (ListView * __this, IEnumerable_1_System_Int32_ * indices, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0098, ListView_OnItemsRemoved__MethodInfo); DO_APP_FUNC(0x02EED150, void, ListView_OnItemsSourceSizeChanged, (ListView * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE00A0, ListView_OnItemsSourceSizeChanged__MethodInfo); DO_APP_FUNC(0x02EFE370, ListViewReorderMode__Enum, ListView_get_reorderMode, (ListView * __this, MethodInfo * method)); DO_APP_FUNC(0x02EFE380, void, ListView_set_reorderMode, (ListView * __this, ListViewReorderMode__Enum value, MethodInfo * method)); DO_APP_FUNC(0x02EFE3D0, ListViewDragger *, ListView_CreateDragger, (ListView * __this, MethodInfo * method)); @@ -63823,6 +73728,7 @@ DO_APP_FUNC(0x02EFE520, void, ListView__ctor, (ListView * __this, MethodInfo * m DO_APP_FUNC(0x02EFE5C0, void, ListView_PostRefresh, (ListView * __this, MethodInfo * method)); DO_APP_FUNC(0x02EFE6C0, void, ListView__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02EFF290, void, ListView__OnAddClicked_b__34_0, (ListView * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0180, ListView__OnAddClicked_b__34_0__MethodInfo); DO_APP_FUNC(0x02EFF310, void, ListView_UxmlFactory__ctor, (ListView_UxmlFactory * __this, MethodInfo * method)); DO_APP_FUNC(0x02EFF350, void, ListView_UxmlTraits_Init, (ListView_UxmlTraits * __this, VisualElement * ve, IUxmlAttributes * bag, CreationContext cc, MethodInfo * method)); DO_APP_FUNC(0x02EFF900, void, ListView_UxmlTraits__ctor, (ListView_UxmlTraits * __this, MethodInfo * method)); @@ -63843,19 +73749,24 @@ DO_APP_FUNC(0x02F008D0, void, MinMaxSlider_set_value, (MinMaxSlider * __this, Ve DO_APP_FUNC(0x02F00930, void, MinMaxSlider_SetValueWithoutNotify, (MinMaxSlider * __this, Vector2 newValue, MethodInfo * method)); DO_APP_FUNC(0x02F00A50, float, MinMaxSlider_get_lowLimit, (MinMaxSlider * __this, MethodInfo * method)); DO_APP_FUNC(0x02F00A60, void, MinMaxSlider_set_lowLimit, (MinMaxSlider * __this, float value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFF50, MinMaxSlider_set_lowLimit__MethodInfo); DO_APP_FUNC(0x02F00B70, float, MinMaxSlider_get_highLimit, (MinMaxSlider * __this, MethodInfo * method)); DO_APP_FUNC(0x02F00B80, void, MinMaxSlider_set_highLimit, (MinMaxSlider * __this, float value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFF98, MinMaxSlider_set_highLimit__MethodInfo); DO_APP_FUNC(0x02F00C90, void, MinMaxSlider__ctor, (MinMaxSlider * __this, MethodInfo * method)); DO_APP_FUNC(0x02F00CD0, void, MinMaxSlider__ctor_1, (MinMaxSlider * __this, String * label, float minValue, float maxValue, float minLimit, float maxLimit, MethodInfo * method)); DO_APP_FUNC(0x02F01570, Vector2, MinMaxSlider_ClampValues, (MinMaxSlider * __this, Vector2 valueToClamp, MethodInfo * method)); DO_APP_FUNC(0x02F01600, void, MinMaxSlider_UpdateDragElementPosition, (MinMaxSlider * __this, GeometryChangedEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFE40, MinMaxSlider_UpdateDragElementPosition__MethodInfo); DO_APP_FUNC(0x02F01670, void, MinMaxSlider_UpdateDragElementPosition_1, (MinMaxSlider * __this, MethodInfo * method)); DO_APP_FUNC(0x02F02490, float, MinMaxSlider_SliderLerpUnclamped, (MinMaxSlider * __this, float a, float b, float interpolant, MethodInfo * method)); DO_APP_FUNC(0x02F024B0, float, MinMaxSlider_SliderNormalizeValue, (MinMaxSlider * __this, float currentValue, float lowerValue, float higherValue, MethodInfo * method)); DO_APP_FUNC(0x02F024D0, float, MinMaxSlider_ComputeValueFromPosition, (MinMaxSlider * __this, float positionToConvert, MethodInfo * method)); DO_APP_FUNC(0x02F025F0, void, MinMaxSlider_ExecuteDefaultAction, (MinMaxSlider * __this, EventBase * evt, MethodInfo * method)); DO_APP_FUNC(0x02F02740, void, MinMaxSlider_SetSliderValueFromDrag, (MinMaxSlider * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFE38, MinMaxSlider_SetSliderValueFromDrag__MethodInfo); DO_APP_FUNC(0x02F02800, void, MinMaxSlider_SetSliderValueFromClick, (MinMaxSlider * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFE60, MinMaxSlider_SetSliderValueFromClick__MethodInfo); DO_APP_FUNC(0x02F02C70, void, MinMaxSlider_ComputeValueDragStateNoThumb, (MinMaxSlider * __this, float lowLimitPosition, float highLimitPosition, float dragElementPos, MethodInfo * method)); DO_APP_FUNC(0x02F02D30, void, MinMaxSlider_ComputeValueFromDraggingThumb, (MinMaxSlider * __this, float dragElementStartPos, float dragElementEndPos, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, MinMaxSlider_UpdateMixedValueContent, (MinMaxSlider * __this, MethodInfo * method)); @@ -63875,6 +73786,7 @@ DO_APP_FUNC(0x02F040D0, float, AbstractProgressBar_get_highValue, (AbstractProgr DO_APP_FUNC(0x02F040E0, void, AbstractProgressBar_set_highValue, (AbstractProgressBar * __this, float value, MethodInfo * method)); DO_APP_FUNC(0x02F04100, void, AbstractProgressBar__ctor, (AbstractProgressBar * __this, MethodInfo * method)); DO_APP_FUNC(0x02F045E0, void, AbstractProgressBar_OnGeometryChanged, (AbstractProgressBar * __this, GeometryChangedEvent * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE23D8, AbstractProgressBar_OnGeometryChanged__MethodInfo); DO_APP_FUNC(0x02F04610, float, AbstractProgressBar_get_value, (AbstractProgressBar * __this, MethodInfo * method)); DO_APP_FUNC(0x02F04620, void, AbstractProgressBar_set_value, (AbstractProgressBar * __this, float value, MethodInfo * method)); DO_APP_FUNC(0x02F047E0, void, AbstractProgressBar_SetValueWithoutNotify, (AbstractProgressBar * __this, float newValue, MethodInfo * method)); @@ -63903,6 +73815,7 @@ DO_APP_FUNC(0x02F06600, void, RadioButtonGroup_set_choices, (RadioButtonGroup * DO_APP_FUNC(0x02F06C80, void, RadioButtonGroup__ctor, (RadioButtonGroup * __this, MethodInfo * method)); DO_APP_FUNC(0x02F06C90, void, RadioButtonGroup__ctor_1, (RadioButtonGroup * __this, String * label, List_1_System_String_ * radioButtonChoices, MethodInfo * method)); DO_APP_FUNC(0x02F06F50, void, RadioButtonGroup_RadioButtonValueChangedCallback, (RadioButtonGroup * __this, ChangeEvent_1_System_Boolean_ * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2128, RadioButtonGroup_RadioButtonValueChangedCallback__MethodInfo); DO_APP_FUNC(0x02F07090, void, RadioButtonGroup_SetValueWithoutNotify, (RadioButtonGroup * __this, int32_t newValue, MethodInfo * method)); DO_APP_FUNC(0x02F070E0, void, RadioButtonGroup_UpdateRadioButtons, (RadioButtonGroup * __this, MethodInfo * method)); DO_APP_FUNC(0x02F07320, void, RadioButtonGroup__cctor, (MethodInfo * method)); @@ -63936,8 +73849,11 @@ DO_APP_FUNC(0x02F084C0, void, Scroller__ctor, (Scroller * __this, MethodInfo * m DO_APP_FUNC(0x02F084F0, void, Scroller__ctor_1, (Scroller * __this, float lowValue, float highValue, Action_1_Single_ * valueChanged, SliderDirection__Enum direction, MethodInfo * method)); DO_APP_FUNC(0x02F08B40, void, Scroller_Adjust, (Scroller * __this, float factor, MethodInfo * method)); DO_APP_FUNC(0x02F08BD0, void, Scroller_OnSliderValueChange, (Scroller * __this, ChangeEvent_1_System_Single_ * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2010, Scroller_OnSliderValueChange__MethodInfo); DO_APP_FUNC(0x02F08CB0, void, Scroller_ScrollPageUp, (Scroller * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1FF8, Scroller_ScrollPageUp__MethodInfo); DO_APP_FUNC(0x02F08D90, void, Scroller_ScrollPageDown, (Scroller * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2020, Scroller_ScrollPageDown__MethodInfo); DO_APP_FUNC(0x02F08E70, void, Scroller_ScrollPageUp_1, (Scroller * __this, float factor, MethodInfo * method)); DO_APP_FUNC(0x02F08F70, void, Scroller_ScrollPageDown_1, (Scroller * __this, float factor, MethodInfo * method)); DO_APP_FUNC(0x02F09070, void, Scroller__cctor, (MethodInfo * method)); @@ -63973,11 +73889,14 @@ DO_APP_FUNC(0x02F0A390, ScrollView_NestedInteractionKind__Enum, ScrollView_get_n DO_APP_FUNC(0x02F0A3A0, void, ScrollView_set_nestedInteractionKind, (ScrollView * __this, ScrollView_NestedInteractionKind__Enum value, MethodInfo * method)); DO_APP_FUNC(0x02F0A3B0, void, ScrollView_set_elasticAnimationIntervalMs, (ScrollView * __this, int64_t value, MethodInfo * method)); DO_APP_FUNC(0x02F0A4F0, void, ScrollView_OnHorizontalScrollDragElementChanged, (ScrollView * __this, GeometryChangedEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1DD0, ScrollView_OnHorizontalScrollDragElementChanged__MethodInfo); DO_APP_FUNC(0x02F0A560, void, ScrollView_OnVerticalScrollDragElementChanged, (ScrollView * __this, GeometryChangedEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1E78, ScrollView_OnVerticalScrollDragElementChanged__MethodInfo); DO_APP_FUNC(0x02F0A5D0, void, ScrollView_UpdateHorizontalSliderPageSize, (ScrollView * __this, MethodInfo * method)); DO_APP_FUNC(0x02F0A6E0, void, ScrollView_UpdateVerticalSliderPageSize, (ScrollView * __this, MethodInfo * method)); DO_APP_FUNC(0x02F0A7F0, void, ScrollView_UpdateContentViewTransform, (ScrollView * __this, MethodInfo * method)); DO_APP_FUNC(0x02F0AA60, void, ScrollView_ScrollTo, (ScrollView * __this, VisualElement * child, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1F70, ScrollView_ScrollTo__MethodInfo); DO_APP_FUNC(0x02F0ACC0, float, ScrollView_GetXDeltaOffset, (ScrollView * __this, VisualElement * child, MethodInfo * method)); DO_APP_FUNC(0x02F0AF20, float, ScrollView_GetYDeltaOffset, (ScrollView * __this, VisualElement * child, MethodInfo * method)); DO_APP_FUNC(0x02F0B180, float, ScrollView_GetDeltaDistance, (ScrollView * __this, float viewMin, float viewMax, float childBoundaryMin, float childBoundaryMax, MethodInfo * method)); @@ -63994,21 +73913,32 @@ DO_APP_FUNC(0x02F0C460, ScrollViewMode__Enum, ScrollView_get_mode, (ScrollView * DO_APP_FUNC(0x02F0C470, void, ScrollView_set_mode, (ScrollView * __this, ScrollViewMode__Enum value, MethodInfo * method)); DO_APP_FUNC(0x02F0C490, void, ScrollView_SetScrollViewMode, (ScrollView * __this, ScrollViewMode__Enum mode, MethodInfo * method)); DO_APP_FUNC(0x02F0C640, void, ScrollView_OnAttachToPanel, (ScrollView * __this, AttachToPanelEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1E00, ScrollView_OnAttachToPanel__MethodInfo); DO_APP_FUNC(0x02F0CB90, void, ScrollView_OnDetachFromPanel, (ScrollView * __this, DetachFromPanelEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1DE0, ScrollView_OnDetachFromPanel__MethodInfo); DO_APP_FUNC(0x02F0D100, void, ScrollView_OnPointerCapture, (ScrollView * __this, PointerCaptureEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1C98, ScrollView_OnPointerCapture__MethodInfo); DO_APP_FUNC(0x02F0D270, void, ScrollView_OnPointerCaptureOut, (ScrollView * __this, PointerCaptureOutEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1CB8, ScrollView_OnPointerCaptureOut__MethodInfo); DO_APP_FUNC(0x02F0D3D0, void, ScrollView_OnGeometryChanged, (ScrollView * __this, GeometryChangedEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1DE8, ScrollView_OnGeometryChanged__MethodInfo); DO_APP_FUNC(0x02F0D6D0, void, ScrollView_ScheduleResetLayoutPass, (ScrollView * __this, MethodInfo * method)); DO_APP_FUNC(0x02F0D820, void, ScrollView_ResetLayoutPass, (ScrollView * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1D20, ScrollView_ResetLayoutPass__MethodInfo); DO_APP_FUNC(0x02F0D830, float, ScrollView_ComputeElasticOffset, (float deltaPointer, float initialScrollOffset, float lowLimit, float hardLowLimit, float highLimit, float hardHighLimit, MethodInfo * method)); DO_APP_FUNC(0x02F0D9A0, void, ScrollView_ComputeInitialSpringBackVelocity, (ScrollView * __this, MethodInfo * method)); DO_APP_FUNC(0x02F0DB00, void, ScrollView_SpringBack, (ScrollView * __this, MethodInfo * method)); DO_APP_FUNC(0x02F0DE40, void, ScrollView_ApplyScrollInertia, (ScrollView * __this, MethodInfo * method)); DO_APP_FUNC(0x02F0E140, void, ScrollView_PostPointerUpAnimation, (ScrollView * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1F48, ScrollView_PostPointerUpAnimation__MethodInfo); DO_APP_FUNC(0x02F0E290, void, ScrollView_OnPointerDown, (ScrollView * __this, PointerDownEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1CA0, ScrollView_OnPointerDown__MethodInfo); DO_APP_FUNC(0x02F0E560, void, ScrollView_OnPointerMove, (ScrollView * __this, PointerMoveEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1DD8, ScrollView_OnPointerMove__MethodInfo); DO_APP_FUNC(0x02F0E820, void, ScrollView_OnPointerCancel, (ScrollView * __this, PointerCancelEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1CA8, ScrollView_OnPointerCancel__MethodInfo); DO_APP_FUNC(0x02F0E880, void, ScrollView_OnPointerUp, (ScrollView * __this, PointerUpEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1E80, ScrollView_OnPointerUp__MethodInfo); DO_APP_FUNC(0x02F0E970, void, ScrollView_InitTouchScrolling, (ScrollView * __this, Vector2 position, MethodInfo * method)); DO_APP_FUNC(0x02F0ECE0, ScrollView_TouchScrollingResult__Enum, ScrollView_ComputeTouchScrolling, (ScrollView * __this, Vector2 position, MethodInfo * method)); DO_APP_FUNC(0x02F0F080, bool, ScrollView_ApplyTouchScrolling, (ScrollView * __this, Vector2 newScrollOffset, MethodInfo * method)); @@ -64017,13 +73947,19 @@ DO_APP_FUNC(0x02F0F540, void, ScrollView_ExecuteElasticSpringAnimation, (ScrollV DO_APP_FUNC(0x02F0F7C0, void, ScrollView_AdjustScrollers, (ScrollView * __this, MethodInfo * method)); DO_APP_FUNC(0x02F0F990, void, ScrollView_UpdateScrollers, (ScrollView * __this, bool displayHorizontal, bool displayVertical, MethodInfo * method)); DO_APP_FUNC(0x02F0FE30, void, ScrollView_OnScrollersGeometryChanged, (ScrollView * __this, GeometryChangedEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1E68, ScrollView_OnScrollersGeometryChanged__MethodInfo); DO_APP_FUNC(0x02F10000, void, ScrollView_OnScrollWheel, (ScrollView * __this, WheelEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1E90, ScrollView_OnScrollWheel__MethodInfo); DO_APP_FUNC(0x02F10510, void, ScrollView_OnRootCustomStyleResolved, (ScrollView * __this, CustomStyleResolvedEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1C78, ScrollView_OnRootCustomStyleResolved__MethodInfo); DO_APP_FUNC(0x02F10520, void, ScrollView_ReadSingleLineHeight, (ScrollView * __this, MethodInfo * method)); DO_APP_FUNC(0x02F10720, void, ScrollView_UpdateElasticBehaviour, (ScrollView * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1E38, ScrollView_UpdateElasticBehaviour__MethodInfo); DO_APP_FUNC(0x02F109E0, void, ScrollView__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02F11090, void, ScrollView___ctor_b__117_0, (ScrollView * __this, float value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1E50, ScrollView___ctor_b__117_0__MethodInfo); DO_APP_FUNC(0x02F110E0, void, ScrollView___ctor_b__117_1, (ScrollView * __this, float value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1E60, ScrollView___ctor_b__117_1__MethodInfo); DO_APP_FUNC(0x02F11130, void, ScrollView_UxmlFactory__ctor, (ScrollView_UxmlFactory * __this, MethodInfo * method)); DO_APP_FUNC(0x02F11170, void, ScrollView_UxmlTraits_Init, (ScrollView_UxmlTraits * __this, VisualElement * ve, IUxmlAttributes * bag, CreationContext cc, MethodInfo * method)); DO_APP_FUNC(0x02F118A0, void, ScrollView_UxmlTraits__ctor, (ScrollView_UxmlTraits * __this, MethodInfo * method)); @@ -64101,6 +74037,7 @@ DO_APP_FUNC(0x02F179B0, void, Toggle_UxmlTraits__ctor, (Toggle_UxmlTraits * __th DO_APP_FUNC(0x02F17B00, void, TouchScreenTextEditorEventHandler__ctor, (TouchScreenTextEditorEventHandler * __this, TextEditorEngine * editorEngine, ITextInputField * textInputField, MethodInfo * method)); DO_APP_FUNC(0x02F17B60, void, TouchScreenTextEditorEventHandler_PollTouchScreenKeyboard, (TouchScreenTextEditorEventHandler * __this, MethodInfo * method)); DO_APP_FUNC(0x02F17D20, void, TouchScreenTextEditorEventHandler_DoPollTouchScreenKeyboard, (TouchScreenTextEditorEventHandler * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1638, TouchScreenTextEditorEventHandler_DoPollTouchScreenKeyboard__MethodInfo); DO_APP_FUNC(0x02F180A0, void, TouchScreenTextEditorEventHandler_ExecuteDefaultActionAtTarget, (TouchScreenTextEditorEventHandler * __this, EventBase * evt, MethodInfo * method)); DO_APP_FUNC(0x01DAA750, Action_2_UnityEngine_UIElements_VisualElement_UnityEngine_UIElements_ITreeViewItem_ *, TreeView_1_get_unbindItem, (TreeView_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02F18570, void, TreeView_1_set_itemHeight, (TreeView_1 * __this, int32_t value, MethodInfo * method)); @@ -64113,44 +74050,56 @@ DO_APP_FUNC(0x02F18FF0, void, TreeView_1_Rebuild, (TreeView_1 * __this, MethodIn DO_APP_FUNC(0x02F19020, void, TreeView_1_OnViewDataReady, (TreeView_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02F19070, IEnumerable_1_UnityEngine_UIElements_ITreeViewItem_ *, TreeView_1_GetAllItems, (IEnumerable_1_UnityEngine_UIElements_ITreeViewItem_ * rootItems, MethodInfo * method)); DO_APP_FUNC(0x02F19130, void, TreeView_1_OnKeyDown, (TreeView_1 * __this, KeyDownEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE16C8, TreeView_1_OnKeyDown__MethodInfo); DO_APP_FUNC(0x02F191F0, void, TreeView_1_ListViewRefresh, (TreeView_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02F19220, void, TreeView_1_OnItemsChosen, (TreeView_1 * __this, IEnumerable_1_System_Object_ * chosenItems, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE16B8, TreeView_1_OnItemsChosen__MethodInfo); DO_APP_FUNC(0x02F19540, void, TreeView_1_OnSelectionChange, (TreeView_1 * __this, IEnumerable_1_System_Object_ * selectedListItems, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1510, TreeView_1_OnSelectionChange__MethodInfo); DO_APP_FUNC(0x02F198E0, void, TreeView_1_OnTreeViewMouseUp, (TreeView_1 * __this, MouseUpEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1520, TreeView_1_OnTreeViewMouseUp__MethodInfo); DO_APP_FUNC(0x02F19930, void, TreeView_1_OnItemMouseUp, (TreeView_1 * __this, MouseUpEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE15D0, TreeView_1_OnItemMouseUp__MethodInfo); DO_APP_FUNC(0x02F1A0D0, VisualElement *, TreeView_1_MakeTreeItem, (TreeView_1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE16D8, TreeView_1_MakeTreeItem__MethodInfo); DO_APP_FUNC(0x02F1A5F0, void, TreeView_1_UnbindTreeItem, (TreeView_1 * __this, VisualElement * element, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE14F8, TreeView_1_UnbindTreeItem__MethodInfo); DO_APP_FUNC(0x02F1A750, void, TreeView_1_BindTreeItem, (TreeView_1 * __this, VisualElement * element, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE16F8, TreeView_1_BindTreeItem__MethodInfo); DO_APP_FUNC(0x02F1AC00, int32_t, TreeView_1_GetItemId, (TreeView_1 * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1700, TreeView_1_GetItemId__MethodInfo); DO_APP_FUNC(0x02F1ACC0, bool, TreeView_1_IsExpandedByIndex, (TreeView_1 * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x02F1AE10, void, TreeView_1_CollapseItemByIndex, (TreeView_1 * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x02F1B160, void, TreeView_1_ExpandItemByIndex, (TreeView_1 * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x02F1B3E0, void, TreeView_1_ToggleExpandedState, (TreeView_1 * __this, ChangeEvent_1_System_Boolean_ * evt, MethodInfo * method)); -DO_APP_FUNC(0x02F1B5A0, void, TreeView_1_CreateWrappers, (TreeView_1 * __this, IEnumerable_1_UnityEngine_UIElements_ITreeViewItem_ * treeViewItems, int32_t depth, List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * wrappers, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE15C0, TreeView_1_ToggleExpandedState__MethodInfo); +DO_APP_FUNC(0x02F1B5A0, void, TreeView_1_CreateWrappers, (TreeView_1 * __this, IEnumerable_1_UnityEngine_UIElements_ITreeViewItem_ * treeViewItems, int32_t depth, List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * * wrappers, MethodInfo * method)); DO_APP_FUNC(0x02F1BA90, void, TreeView_1_RegenerateWrappers, (TreeView_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02F1BB20, void, TreeView_1_OnCustomStyleResolved, (TreeView_1 * __this, CustomStyleResolvedEvent * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE16E8, TreeView_1_OnCustomStyleResolved__MethodInfo); DO_APP_FUNC(0x02F1BCE0, void, TreeView_1__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02F1C010, void, TreeView_UxmlFactory__ctor, (TreeView_UxmlFactory * __this, MethodInfo * method)); DO_APP_FUNC(0x02F1C050, void, TreeView_UxmlTraits_Init, (TreeView_UxmlTraits * __this, VisualElement * ve, IUxmlAttributes * bag, CreationContext cc, MethodInfo * method)); DO_APP_FUNC(0x02F1C360, void, TreeView_UxmlTraits__ctor, (TreeView_UxmlTraits * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F1C840, int32_t, TreeView_TreeViewItemWrapper_get_id, (TreeView_TreeViewItemWrapper__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F1C840, int32_t, TreeView_TreeViewItemWrapper_get_id, (TreeView_TreeViewItemWrapper * __this, MethodInfo * method)); DO_APP_FUNC(0x00FDB5B0, void, TreeView_GetAllItems_d_64__ctor, (TreeView_GetAllItems_d_64 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TreeView_GetAllItems_d_64_System_IDisposable_Dispose, (TreeView_GetAllItems_d_64 * __this, MethodInfo * method)); DO_APP_FUNC(0x02F1C890, bool, TreeView_GetAllItems_d_64_MoveNext, (TreeView_GetAllItems_d_64 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, ITreeViewItem *, TreeView_GetAllItems_d_64_System_Collections_Generic_IEnumerator_UnityEngine_UIElements_ITreeViewItem__get_Current, (TreeView_GetAllItems_d_64 * __this, MethodInfo * method)); DO_APP_FUNC(0x02F1CC50, void, TreeView_GetAllItems_d_64_System_Collections_IEnumerator_Reset, (TreeView_GetAllItems_d_64 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE13B8, TreeView_GetAllItems_d_64_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, TreeView_GetAllItems_d_64_System_Collections_IEnumerator_get_Current, (TreeView_GetAllItems_d_64 * __this, MethodInfo * method)); DO_APP_FUNC(0x02F1CCA0, IEnumerator_1_UnityEngine_UIElements_ITreeViewItem_ *, TreeView_GetAllItems_d_64_System_Collections_Generic_IEnumerable_UnityEngine_UIElements_ITreeViewItem__GetEnumerator, (TreeView_GetAllItems_d_64 * __this, MethodInfo * method)); DO_APP_FUNC(0x02F1CCA0, IEnumerator *, TreeView_GetAllItems_d_64_System_Collections_IEnumerable_GetEnumerator, (TreeView_GetAllItems_d_64 * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, TreeItem_get_id, (TreeItem__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C173E0, int32_t, TreeItem_get_parentId, (TreeItem__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, IEnumerable_1_System_Int32_ *, TreeItem_get_childrenIds, (TreeItem__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F1CDE0, bool, TreeItem_get_hasChildren, (TreeItem__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x021F3230, void, TreeItem__ctor, (TreeItem__Boxed * __this, int32_t id, int32_t parentId, IEnumerable_1_System_Int32_ * childrenIds, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, TreeViewItemWrapper_get_id, (TreeViewItemWrapper__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, IEnumerable_1_System_Int32_ *, TreeViewItemWrapper_get_childrenIds, (TreeViewItemWrapper__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F1CDE0, bool, TreeViewItemWrapper_get_hasChildren, (TreeViewItemWrapper__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F1CE30, void, TreeViewItemWrapper__ctor, (TreeViewItemWrapper__Boxed * __this, TreeItem item, int32_t depth, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, TreeItem_get_id, (TreeItem * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C173E0, int32_t, TreeItem_get_parentId, (TreeItem * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, IEnumerable_1_System_Int32_ *, TreeItem_get_childrenIds, (TreeItem * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F1CDE0, bool, TreeItem_get_hasChildren, (TreeItem * __this, MethodInfo * method)); +DO_APP_FUNC(0x021F3230, void, TreeItem__ctor, (TreeItem * __this, int32_t id, int32_t parentId, IEnumerable_1_System_Int32_ * childrenIds, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, TreeViewItemWrapper_get_id, (TreeViewItemWrapper * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, IEnumerable_1_System_Int32_ *, TreeViewItemWrapper_get_childrenIds, (TreeViewItemWrapper * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F1CDE0, bool, TreeViewItemWrapper_get_hasChildren, (TreeViewItemWrapper * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F1CE30, void, TreeViewItemWrapper__ctor, (TreeViewItemWrapper * __this, TreeItem item, int32_t depth, MethodInfo * method)); DO_APP_FUNC(0x01DAA150, VisualElement *, TwoPaneSplitView_get_fixedPane, (TwoPaneSplitView * __this, MethodInfo * method)); DO_APP_FUNC(0x01D1CDA0, VisualElement *, TwoPaneSplitView_get_flexedPane, (TwoPaneSplitView * __this, MethodInfo * method)); DO_APP_FUNC(0x02F1CE90, int32_t, TwoPaneSplitView_get_fixedPaneIndex, (TwoPaneSplitView * __this, MethodInfo * method)); @@ -64159,8 +74108,10 @@ DO_APP_FUNC(0x02F1CED0, void, TwoPaneSplitView_set_fixedPaneDimension, (TwoPaneS DO_APP_FUNC(0x02F1CEF0, void, TwoPaneSplitView__ctor, (TwoPaneSplitView * __this, MethodInfo * method)); DO_APP_FUNC(0x02F1D3C0, void, TwoPaneSplitView_Init, (TwoPaneSplitView * __this, int32_t fixedPaneIndex, float fixedPaneInitialDimension, TwoPaneSplitViewOrientation__Enum orientation, MethodInfo * method)); DO_APP_FUNC(0x02F1D820, void, TwoPaneSplitView_OnPostDisplaySetup, (TwoPaneSplitView * __this, GeometryChangedEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE13D0, TwoPaneSplitView_OnPostDisplaySetup__MethodInfo); DO_APP_FUNC(0x02F1D950, void, TwoPaneSplitView_PostDisplaySetup, (TwoPaneSplitView * __this, MethodInfo * method)); DO_APP_FUNC(0x02F1E710, void, TwoPaneSplitView_OnSizeChange, (TwoPaneSplitView * __this, GeometryChangedEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE12C0, TwoPaneSplitView_OnSizeChange__MethodInfo); DO_APP_FUNC(0x02F1E720, void, TwoPaneSplitView_OnSizeChange_1, (TwoPaneSplitView * __this, MethodInfo * method)); DO_APP_FUNC(0x02F1E9A0, VisualElement *, TwoPaneSplitView_get_contentContainer, (TwoPaneSplitView * __this, MethodInfo * method)); DO_APP_FUNC(0x02F1E9B0, void, TwoPaneSplitView_OnViewDataReady, (TwoPaneSplitView * __this, MethodInfo * method)); @@ -64179,8 +74130,11 @@ DO_APP_FUNC(0x02F1FB80, void, TwoPaneSplitViewResizer_RegisterCallbacksOnTarget, DO_APP_FUNC(0x02F1FD40, void, TwoPaneSplitViewResizer_UnregisterCallbacksFromTarget, (TwoPaneSplitViewResizer * __this, MethodInfo * method)); DO_APP_FUNC(0x02F1FF30, void, TwoPaneSplitViewResizer_ApplyDelta, (TwoPaneSplitViewResizer * __this, float delta, MethodInfo * method)); DO_APP_FUNC(0x02F205F0, void, TwoPaneSplitViewResizer_OnPointerDown, (TwoPaneSplitViewResizer * __this, PointerDownEvent * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1260, TwoPaneSplitViewResizer_OnPointerDown__MethodInfo); DO_APP_FUNC(0x02F206B0, void, TwoPaneSplitViewResizer_OnPointerMove, (TwoPaneSplitViewResizer * __this, PointerMoveEvent * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1250, TwoPaneSplitViewResizer_OnPointerMove__MethodInfo); DO_APP_FUNC(0x02F20770, void, TwoPaneSplitViewResizer_OnPointerUp, (TwoPaneSplitViewResizer * __this, PointerUpEvent * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1258, TwoPaneSplitViewResizer_OnPointerUp__MethodInfo); DO_APP_FUNC(0x01DAA750, Action_2_UnityEngine_UIElements_VisualElement_UnityEngine_UIElements_ITreeViewItem_ *, InternalTreeView_get_unbindItem, (InternalTreeView * __this, MethodInfo * method)); DO_APP_FUNC(0x02F18570, void, InternalTreeView_set_itemHeight, (InternalTreeView * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x02F185A0, void, InternalTreeView_set_showBorder, (InternalTreeView * __this, bool value, MethodInfo * method)); @@ -64192,32 +74146,44 @@ DO_APP_FUNC(0x02F211E0, void, InternalTreeView_Rebuild, (InternalTreeView * __th DO_APP_FUNC(0x02F21210, void, InternalTreeView_OnViewDataReady, (InternalTreeView * __this, MethodInfo * method)); DO_APP_FUNC(0x02F21260, IEnumerable_1_UnityEngine_UIElements_ITreeViewItem_ *, InternalTreeView_GetAllItems, (IEnumerable_1_UnityEngine_UIElements_ITreeViewItem_ * rootItems, MethodInfo * method)); DO_APP_FUNC(0x02F21320, void, InternalTreeView_OnKeyDown, (InternalTreeView * __this, KeyDownEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE46C0, InternalTreeView_OnKeyDown__MethodInfo); DO_APP_FUNC(0x02F191F0, void, InternalTreeView_ListViewRefresh, (InternalTreeView * __this, MethodInfo * method)); DO_APP_FUNC(0x02F213E0, void, InternalTreeView_OnItemsChosen, (InternalTreeView * __this, IEnumerable_1_System_Object_ * chosenItems, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE46B8, InternalTreeView_OnItemsChosen__MethodInfo); DO_APP_FUNC(0x02F21700, void, InternalTreeView_OnSelectionChange, (InternalTreeView * __this, IEnumerable_1_System_Object_ * selectedListItems, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE46A8, InternalTreeView_OnSelectionChange__MethodInfo); DO_APP_FUNC(0x02F198E0, void, InternalTreeView_OnTreeViewMouseUp, (InternalTreeView * __this, MouseUpEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE46B0, InternalTreeView_OnTreeViewMouseUp__MethodInfo); DO_APP_FUNC(0x02F21AA0, void, InternalTreeView_OnItemMouseUp, (InternalTreeView * __this, MouseUpEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4668, InternalTreeView_OnItemMouseUp__MethodInfo); DO_APP_FUNC(0x02F22240, VisualElement *, InternalTreeView_MakeTreeItem, (InternalTreeView * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE46C8, InternalTreeView_MakeTreeItem__MethodInfo); DO_APP_FUNC(0x02F22760, void, InternalTreeView_UnbindTreeItem, (InternalTreeView * __this, VisualElement * element, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4698, InternalTreeView_UnbindTreeItem__MethodInfo); DO_APP_FUNC(0x02F228D0, void, InternalTreeView_BindTreeItem, (InternalTreeView * __this, VisualElement * element, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4688, InternalTreeView_BindTreeItem__MethodInfo); DO_APP_FUNC(0x02F22D80, int32_t, InternalTreeView_GetItemId, (InternalTreeView * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4690, InternalTreeView_GetItemId__MethodInfo); DO_APP_FUNC(0x02F22E40, bool, InternalTreeView_IsExpandedByIndex, (InternalTreeView * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x02F22F90, void, InternalTreeView_CollapseItemByIndex, (InternalTreeView * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x02F232E0, void, InternalTreeView_ExpandItemByIndex, (InternalTreeView * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x02F23560, void, InternalTreeView_ToggleExpandedState, (InternalTreeView * __this, ChangeEvent_1_System_Boolean_ * evt, MethodInfo * method)); -DO_APP_FUNC(0x02F23720, void, InternalTreeView_CreateWrappers, (InternalTreeView * __this, IEnumerable_1_UnityEngine_UIElements_ITreeViewItem_ * treeViewItems, int32_t depth, List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * wrappers, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4660, InternalTreeView_ToggleExpandedState__MethodInfo); +DO_APP_FUNC(0x02F23720, void, InternalTreeView_CreateWrappers, (InternalTreeView * __this, IEnumerable_1_UnityEngine_UIElements_ITreeViewItem_ * treeViewItems, int32_t depth, List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * * wrappers, MethodInfo * method)); DO_APP_FUNC(0x02F23C10, void, InternalTreeView_RegenerateWrappers, (InternalTreeView * __this, MethodInfo * method)); DO_APP_FUNC(0x02F23CA0, void, InternalTreeView_OnCustomStyleResolved, (InternalTreeView * __this, CustomStyleResolvedEvent * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE46D0, InternalTreeView_OnCustomStyleResolved__MethodInfo); DO_APP_FUNC(0x02F23E60, void, InternalTreeView__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02F24190, void, InternalTreeView_UxmlFactory__ctor, (InternalTreeView_UxmlFactory * __this, MethodInfo * method)); DO_APP_FUNC(0x02F241D0, void, InternalTreeView_UxmlTraits_Init, (InternalTreeView_UxmlTraits * __this, VisualElement * ve, IUxmlAttributes * bag, CreationContext cc, MethodInfo * method)); DO_APP_FUNC(0x02F244E0, void, InternalTreeView_UxmlTraits__ctor, (InternalTreeView_UxmlTraits * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F249C0, int32_t, InternalTreeView_TreeViewItemWrapper_get_id, (InternalTreeView_TreeViewItemWrapper__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F249C0, int32_t, InternalTreeView_TreeViewItemWrapper_get_id, (InternalTreeView_TreeViewItemWrapper * __this, MethodInfo * method)); DO_APP_FUNC(0x00FDB5B0, void, InternalTreeView_GetAllItems_d_64__ctor, (InternalTreeView_GetAllItems_d_64 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InternalTreeView_GetAllItems_d_64_System_IDisposable_Dispose, (InternalTreeView_GetAllItems_d_64 * __this, MethodInfo * method)); DO_APP_FUNC(0x02F24A10, bool, InternalTreeView_GetAllItems_d_64_MoveNext, (InternalTreeView_GetAllItems_d_64 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, ITreeViewItem *, InternalTreeView_GetAllItems_d_64_System_Collections_Generic_IEnumerator_UnityEngine_UIElements_ITreeViewItem__get_Current, (InternalTreeView_GetAllItems_d_64 * __this, MethodInfo * method)); DO_APP_FUNC(0x02F24DD0, void, InternalTreeView_GetAllItems_d_64_System_Collections_IEnumerator_Reset, (InternalTreeView_GetAllItems_d_64 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4618, InternalTreeView_GetAllItems_d_64_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, InternalTreeView_GetAllItems_d_64_System_Collections_IEnumerator_get_Current, (InternalTreeView_GetAllItems_d_64 * __this, MethodInfo * method)); DO_APP_FUNC(0x02F24E20, IEnumerator_1_UnityEngine_UIElements_ITreeViewItem_ *, InternalTreeView_GetAllItems_d_64_System_Collections_Generic_IEnumerable_UnityEngine_UIElements_ITreeViewItem__GetEnumerator, (InternalTreeView_GetAllItems_d_64 * __this, MethodInfo * method)); DO_APP_FUNC(0x02F24E20, IEnumerator *, InternalTreeView_GetAllItems_d_64_System_Collections_IEnumerable_GetEnumerator, (InternalTreeView_GetAllItems_d_64 * __this, MethodInfo * method)); @@ -64245,37 +74211,45 @@ DO_APP_FUNC(0x02F263B0, IDragAndDrop *, DragEventsProcessor_get_dragAndDrop, (Dr DO_APP_FUNC(0x02F263E0, bool, DragEventsProcessor_get_isEditorContext, (DragEventsProcessor * __this, MethodInfo * method)); DO_APP_FUNC(0x02F264C0, void, DragEventsProcessor__ctor, (DragEventsProcessor * __this, VisualElement * target, MethodInfo * method)); DO_APP_FUNC(0x02F26650, void, DragEventsProcessor_RegisterCallbacksFromTarget, (DragEventsProcessor * __this, AttachToPanelEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE45A0, DragEventsProcessor_RegisterCallbacksFromTarget__MethodInfo); DO_APP_FUNC(0x02F26660, void, DragEventsProcessor_RegisterCallbacksFromTarget_1, (DragEventsProcessor * __this, MethodInfo * method)); DO_APP_FUNC(0x02F269C0, void, DragEventsProcessor_UnregisterCallbacksFromTarget, (DragEventsProcessor * __this, DetachFromPanelEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE45A8, DragEventsProcessor_UnregisterCallbacksFromTarget__MethodInfo); DO_APP_FUNC(0x02F269D0, void, DragEventsProcessor_UnregisterCallbacksFromTarget_1, (DragEventsProcessor * __this, bool unregisterPanelEvents, MethodInfo * method)); DO_APP_FUNC(0x02F26EC0, void, DragEventsProcessor_OnPointerDownEvent, (DragEventsProcessor * __this, PointerDownEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE45D0, DragEventsProcessor_OnPointerDownEvent__MethodInfo); DO_APP_FUNC(0x02F26FF0, void, DragEventsProcessor_OnPointerUpEvent, (DragEventsProcessor * __this, PointerUpEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE45F8, DragEventsProcessor_OnPointerUpEvent__MethodInfo); DO_APP_FUNC(0x02F271D0, void, DragEventsProcessor_OnPointerLeaveEvent, (DragEventsProcessor * __this, PointerLeaveEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE45B8, DragEventsProcessor_OnPointerLeaveEvent__MethodInfo); DO_APP_FUNC(0x02F271F0, void, DragEventsProcessor_OnPointerCancelEvent, (DragEventsProcessor * __this, PointerCancelEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE45E0, DragEventsProcessor_OnPointerCancelEvent__MethodInfo); DO_APP_FUNC(0x02F27300, void, DragEventsProcessor_OnPointerCapturedOut, (DragEventsProcessor * __this, PointerCaptureOutEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE45C8, DragEventsProcessor_OnPointerCapturedOut__MethodInfo); DO_APP_FUNC(0x02F273D0, void, DragEventsProcessor_OnPointerMoveEvent, (DragEventsProcessor * __this, PointerMoveEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE45C0, DragEventsProcessor_OnPointerMoveEvent__MethodInfo); DO_APP_FUNC(0x02F277C0, DragEventsProcessor *, DragEventsProcessor_GetDropTarget, (DragEventsProcessor * __this, Vector2 position, MethodInfo * method)); DO_APP_FUNC(0x02F27990, Object *, DragAndDropData_UnityEngine_UIElements_IDragAndDropData_get_userData, (DragAndDropData * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, DragAndDropData__ctor, (DragAndDropData * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F279E0, void, StartDragArgs__ctor, (StartDragArgs__Boxed * __this, String * title, DragVisualMode__Enum visualMode, MethodInfo * method)); -DO_APP_FUNC(0x00471910, String *, StartDragArgs_get_title, (StartDragArgs__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471920, DragVisualMode__Enum, StartDragArgs_get_visualMode, (StartDragArgs__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Hashtable *, StartDragArgs_get_genericData, (StartDragArgs__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCBE0, void, StartDragArgs_set_genericData, (StartDragArgs__Boxed * __this, Hashtable * value, MethodInfo * method)); -DO_APP_FUNC(0x003BB3D0, IEnumerable_1_UnityEngine_Object_ *, StartDragArgs_get_unityObjectReferences, (StartDragArgs__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003AE960, void, StartDragArgs_set_unityObjectReferences, (StartDragArgs__Boxed * __this, IEnumerable_1_UnityEngine_Object_ * value, MethodInfo * method)); -DO_APP_FUNC(0x02F27AF0, void, StartDragArgs_SetGenericData, (StartDragArgs__Boxed * __this, String * key, Object * data, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, DragAndDropArgs_set_target, (DragAndDropArgs__Boxed * __this, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x00471920, int32_t, DragAndDropArgs_get_insertAtIndex, (DragAndDropArgs__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018C6CC0, void, DragAndDropArgs_set_insertAtIndex, (DragAndDropArgs__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00E57F20, int32_t, DragAndDropArgs_get_parentId, (DragAndDropArgs__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B16CA0, void, DragAndDropArgs_set_parentId, (DragAndDropArgs__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, int32_t, DragAndDropArgs_get_childIndex, (DragAndDropArgs__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD60, void, DragAndDropArgs_set_childIndex, (DragAndDropArgs__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x003BCD70, DragAndDropPosition__Enum, DragAndDropArgs_get_dragAndDropPosition, (DragAndDropArgs__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD80, void, DragAndDropArgs_set_dragAndDropPosition, (DragAndDropArgs__Boxed * __this, DragAndDropPosition__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x003BB3D0, IDragAndDropData *, DragAndDropArgs_get_dragAndDropData, (DragAndDropArgs__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003AE960, void, DragAndDropArgs_set_dragAndDropData, (DragAndDropArgs__Boxed * __this, IDragAndDropData * value, MethodInfo * method)); +DO_APP_FUNC(0x02F279E0, void, StartDragArgs__ctor, (StartDragArgs * __this, String * title, DragVisualMode__Enum visualMode, MethodInfo * method)); +DO_APP_FUNC(0x00471910, String *, StartDragArgs_get_title, (StartDragArgs * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471920, DragVisualMode__Enum, StartDragArgs_get_visualMode, (StartDragArgs * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Hashtable *, StartDragArgs_get_genericData, (StartDragArgs * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCBE0, void, StartDragArgs_set_genericData, (StartDragArgs * __this, Hashtable * value, MethodInfo * method)); +DO_APP_FUNC(0x003BB3D0, IEnumerable_1_UnityEngine_Object_ *, StartDragArgs_get_unityObjectReferences, (StartDragArgs * __this, MethodInfo * method)); +DO_APP_FUNC(0x003AE960, void, StartDragArgs_set_unityObjectReferences, (StartDragArgs * __this, IEnumerable_1_UnityEngine_Object_ * value, MethodInfo * method)); +DO_APP_FUNC(0x02F27AF0, void, StartDragArgs_SetGenericData, (StartDragArgs * __this, String * key, Object * data, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, DragAndDropArgs_set_target, (DragAndDropArgs * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x00471920, int32_t, DragAndDropArgs_get_insertAtIndex, (DragAndDropArgs * __this, MethodInfo * method)); +DO_APP_FUNC(0x018C6CC0, void, DragAndDropArgs_set_insertAtIndex, (DragAndDropArgs * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x00E57F20, int32_t, DragAndDropArgs_get_parentId, (DragAndDropArgs * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B16CA0, void, DragAndDropArgs_set_parentId, (DragAndDropArgs * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, int32_t, DragAndDropArgs_get_childIndex, (DragAndDropArgs * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD60, void, DragAndDropArgs_set_childIndex, (DragAndDropArgs * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x003BCD70, DragAndDropPosition__Enum, DragAndDropArgs_get_dragAndDropPosition, (DragAndDropArgs * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD80, void, DragAndDropArgs_set_dragAndDropPosition, (DragAndDropArgs * __this, DragAndDropPosition__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x003BB3D0, IDragAndDropData *, DragAndDropArgs_get_dragAndDropData, (DragAndDropArgs * __this, MethodInfo * method)); +DO_APP_FUNC(0x003AE960, void, DragAndDropArgs_set_dragAndDropData, (DragAndDropArgs * __this, IDragAndDropData * value, MethodInfo * method)); DO_APP_FUNC(0x02F27BF0, BaseVerticalCollectionView *, ListViewDragger_get_targetView, (ListViewDragger * __this, MethodInfo * method)); DO_APP_FUNC(0x02F27C80, ScrollView *, ListViewDragger_get_targetScrollView, (ListViewDragger * __this, MethodInfo * method)); DO_APP_FUNC(0x003C91D0, ICollectionDragAndDropController *, ListViewDragger_get_dragAndDropController, (ListViewDragger * __this, MethodInfo * method)); @@ -64284,14 +74258,15 @@ DO_APP_FUNC(0x02F27CB0, void, ListViewDragger__ctor, (ListViewDragger * __this, DO_APP_FUNC(0x02F27E50, bool, ListViewDragger_CanStartDrag, (ListViewDragger * __this, Vector3 pointerPosition, MethodInfo * method)); DO_APP_FUNC(0x02F28050, StartDragArgs, ListViewDragger_StartDrag, (ListViewDragger * __this, Vector3 pointerPosition, MethodInfo * method)); DO_APP_FUNC(0x02F28290, void, ListViewDragger_UpdateDrag, (ListViewDragger * __this, Vector3 pointerPosition, MethodInfo * method)); -DO_APP_FUNC(0x02F28530, DragVisualMode__Enum, ListViewDragger_GetVisualMode, (ListViewDragger * __this, Vector3 pointerPosition, ListViewDragger_DragPosition dragPosition, MethodInfo * method)); +DO_APP_FUNC(0x02F28530, DragVisualMode__Enum, ListViewDragger_GetVisualMode, (ListViewDragger * __this, Vector3 pointerPosition, ListViewDragger_DragPosition * dragPosition, MethodInfo * method)); DO_APP_FUNC(0x02F28650, void, ListViewDragger_OnDrop, (ListViewDragger * __this, Vector3 pointerPosition, MethodInfo * method)); DO_APP_FUNC(0x02F28830, void, ListViewDragger_HandleDragAndScroll, (ListViewDragger * __this, Vector2 pointerPosition, MethodInfo * method)); DO_APP_FUNC(0x02F28AD0, void, ListViewDragger_ApplyDragAndDropUI, (ListViewDragger * __this, ListViewDragger_DragPosition dragPosition, MethodInfo * method)); -DO_APP_FUNC(0x02F29480, bool, ListViewDragger_TryGetDragPosition, (ListViewDragger * __this, Vector2 pointerPosition, ListViewDragger_DragPosition dragPosition, MethodInfo * method)); -DO_APP_FUNC(0x02F29850, void, ListViewDragger_HandleTreePosition, (ListViewDragger * __this, Vector2 pointerPosition, ListViewDragger_DragPosition dragPosition, MethodInfo * method)); -DO_APP_FUNC(0x02F29970, void, ListViewDragger_HandleSiblingInsertionAtAvailableDepthsAndChangeTargetIfNeeded, (ListViewDragger * __this, ListViewDragger_DragPosition dragPosition, Vector2 pointerPosition, MethodInfo * method)); -DO_APP_FUNC(0x02F2A100, void, ListViewDragger_GetPreviousAndNextItemsIgnoringDraggedItems, (ListViewDragger * __this, int32_t insertAtIndex, int32_t previousItemId, int32_t nextItemId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE44E8, ListViewDragger_ApplyDragAndDropUI__MethodInfo); +DO_APP_FUNC(0x02F29480, bool, ListViewDragger_TryGetDragPosition, (ListViewDragger * __this, Vector2 pointerPosition, ListViewDragger_DragPosition * dragPosition, MethodInfo * method)); +DO_APP_FUNC(0x02F29850, void, ListViewDragger_HandleTreePosition, (ListViewDragger * __this, Vector2 pointerPosition, ListViewDragger_DragPosition * dragPosition, MethodInfo * method)); +DO_APP_FUNC(0x02F29970, void, ListViewDragger_HandleSiblingInsertionAtAvailableDepthsAndChangeTargetIfNeeded, (ListViewDragger * __this, ListViewDragger_DragPosition * dragPosition, Vector2 pointerPosition, MethodInfo * method)); +DO_APP_FUNC(0x02F2A100, void, ListViewDragger_GetPreviousAndNextItemsIgnoringDraggedItems, (ListViewDragger * __this, int32_t insertAtIndex, int32_t * previousItemId, int32_t * nextItemId, MethodInfo * method)); DO_APP_FUNC(0x02F2A2E0, DragAndDropArgs, ListViewDragger_MakeDragAndDropArgs, (ListViewDragger * __this, ListViewDragger_DragPosition dragPosition, MethodInfo * method)); DO_APP_FUNC(0x02F2A540, float, ListViewDragger_GetHoverBarTopPosition, (ListViewDragger * __this, ReusableCollectionItem * item, MethodInfo * method)); DO_APP_FUNC(0x02F2A710, void, ListViewDragger_PlaceHoverBarAtElement, (ListViewDragger * __this, ReusableCollectionItem * item, MethodInfo * method)); @@ -64299,9 +74274,10 @@ DO_APP_FUNC(0x02F2A910, void, ListViewDragger_PlaceHoverBarAt, (ListViewDragger DO_APP_FUNC(0x02F2B060, void, ListViewDragger_ClearDragAndDropUI, (ListViewDragger * __this, bool dragCancelled, MethodInfo * method)); DO_APP_FUNC(0x02F2B4E0, ReusableCollectionItem *, ListViewDragger_GetRecycledItem, (ListViewDragger * __this, Vector3 pointerPosition, MethodInfo * method)); DO_APP_FUNC(0x02F2B700, void, ListViewDragger__ApplyDragAndDropUI_g__GeometryChangedCallback_26_0, (ListViewDragger * __this, GeometryChangedEvent * e, MethodInfo * method)); -DO_APP_FUNC(0x02F2B870, bool, ListViewDragger_DragPosition_Equals, (ListViewDragger_DragPosition__Boxed * __this, ListViewDragger_DragPosition other, MethodInfo * method)); -DO_APP_FUNC(0x02F2B8F0, bool, ListViewDragger_DragPosition_Equals_1, (ListViewDragger_DragPosition__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02F2B9F0, int32_t, ListViewDragger_DragPosition_GetHashCode, (ListViewDragger_DragPosition__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4500, ListViewDragger__ApplyDragAndDropUI_g__GeometryChangedCallback_26_0__MethodInfo); +DO_APP_FUNC(0x02F2B870, bool, ListViewDragger_DragPosition_Equals, (ListViewDragger_DragPosition * __this, ListViewDragger_DragPosition other, MethodInfo * method)); +DO_APP_FUNC(0x02F2B8F0, bool, ListViewDragger_DragPosition_Equals_1, (ListViewDragger_DragPosition * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02F2B9F0, int32_t, ListViewDragger_DragPosition_GetHashCode, (ListViewDragger_DragPosition * __this, MethodInfo * method)); DO_APP_FUNC(0x02F2BA70, ReusableCollectionItem *, ListViewDraggerExtension_GetRecycledItemFromId, (BaseVerticalCollectionView * listView, int32_t id, MethodInfo * method)); DO_APP_FUNC(0x02F2BBF0, ReusableCollectionItem *, ListViewDraggerExtension_GetRecycledItemFromIndex, (BaseVerticalCollectionView * listView, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x005B8C30, bool, ListViewDraggerAnimated_get_isDragging, (ListViewDraggerAnimated * __this, MethodInfo * method)); @@ -64314,18 +74290,19 @@ DO_APP_FUNC(0x02F2C710, void, ListViewDraggerAnimated_UpdateDrag, (ListViewDragg DO_APP_FUNC(0x02F2CE90, void, ListViewDraggerAnimated_Animate, (ListViewDraggerAnimated * __this, ReusableCollectionItem * element, float paddingTop, MethodInfo * method)); DO_APP_FUNC(0x02F2D2B0, void, ListViewDraggerAnimated_OnDrop, (ListViewDraggerAnimated * __this, Vector3 pointerPosition, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ListViewDraggerAnimated_ClearDragAndDropUI, (ListViewDraggerAnimated * __this, bool dragCancelled, MethodInfo * method)); -DO_APP_FUNC(0x02F2D850, bool, ListViewDraggerAnimated_TryGetDragPosition, (ListViewDraggerAnimated * __this, Vector2 pointerPosition, ListViewDragger_DragPosition dragPosition, MethodInfo * method)); +DO_APP_FUNC(0x02F2D850, bool, ListViewDraggerAnimated_TryGetDragPosition, (ListViewDraggerAnimated * __this, Vector2 pointerPosition, ListViewDragger_DragPosition * dragPosition, MethodInfo * method)); DO_APP_FUNC(0x02F2D8C0, void, ListViewReorderableDragAndDropController__ctor, (ListViewReorderableDragAndDropController * __this, ListView * view, MethodInfo * method)); DO_APP_FUNC(0x02F2D930, DragVisualMode__Enum, ListViewReorderableDragAndDropController_HandleDragAndDrop, (ListViewReorderableDragAndDropController * __this, IListDragAndDropArgs * args, MethodInfo * method)); DO_APP_FUNC(0x02F2DA10, void, ListViewReorderableDragAndDropController_OnDrop, (ListViewReorderableDragAndDropController * __this, IListDragAndDropArgs * args, MethodInfo * method)); DO_APP_FUNC(0x02F2DCB0, void, TreeViewReorderableDragAndDropController__ctor, (TreeViewReorderableDragAndDropController * __this, TreeView * view, MethodInfo * method)); DO_APP_FUNC(0x02F2DDF0, int32_t, TreeViewReorderableDragAndDropController_CompareId, (TreeViewReorderableDragAndDropController * __this, int32_t id1, int32_t id2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4488, TreeViewReorderableDragAndDropController_CompareId__MethodInfo); DO_APP_FUNC(0x02F2E500, StartDragArgs, TreeViewReorderableDragAndDropController_SetupDragAndDrop, (TreeViewReorderableDragAndDropController * __this, IEnumerable_1_System_Int32_ * itemIds, bool skipText, MethodInfo * method)); DO_APP_FUNC(0x02F2E6A0, DragVisualMode__Enum, TreeViewReorderableDragAndDropController_HandleDragAndDrop, (TreeViewReorderableDragAndDropController * __this, IListDragAndDropArgs * args, MethodInfo * method)); DO_APP_FUNC(0x02F2E760, void, TreeViewReorderableDragAndDropController_OnDrop, (TreeViewReorderableDragAndDropController * __this, IListDragAndDropArgs * args, MethodInfo * method)); DO_APP_FUNC(0x02F2EF90, void, TreeViewReorderableDragAndDropController_DragCleanup, (TreeViewReorderableDragAndDropController * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TreeViewReorderableDragAndDropController_DropData__ctor, (TreeViewReorderableDragAndDropController_DropData * __this, MethodInfo * method)); -DO_APP_FUNC(0x00977B80, void, TreeViewReorderableDragAndDropController_TreeItemState__ctor, (TreeViewReorderableDragAndDropController_TreeItemState__Boxed * __this, int32_t parentId, int32_t childIndex, MethodInfo * method)); +DO_APP_FUNC(0x00977B80, void, TreeViewReorderableDragAndDropController_TreeItemState__ctor, (TreeViewReorderableDragAndDropController_TreeItemState * __this, int32_t parentId, int32_t childIndex, MethodInfo * method)); DO_APP_FUNC(0x02F2F030, void, PointerCaptureOutEvent__ctor, (PointerCaptureOutEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x02F2F070, void, PointerCaptureEvent__ctor, (PointerCaptureEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x02F2F0B0, void, MouseCaptureOutEvent__ctor, (MouseCaptureOutEvent * __this, MethodInfo * method)); @@ -64338,7 +74315,7 @@ DO_APP_FUNC(0x02F2F3C0, void, ExecuteCommandEvent__ctor, (ExecuteCommandEvent * DO_APP_FUNC(0x02F2F400, bool, DefaultDispatchingStrategy_CanDispatchEvent, (DefaultDispatchingStrategy * __this, EventBase * evt, MethodInfo * method)); DO_APP_FUNC(0x02F2F490, void, DefaultDispatchingStrategy_DispatchEvent, (DefaultDispatchingStrategy * __this, EventBase * evt, IPanel * panel, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, DefaultDispatchingStrategy__ctor, (DefaultDispatchingStrategy * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F2F680, VisualElement *, ElementUnderPointer_GetTopElementUnderPointer, (ElementUnderPointer * __this, int32_t pointerId, Vector2 pickPosition, bool isTemporary, MethodInfo * method)); +DO_APP_FUNC(0x02F2F680, VisualElement *, ElementUnderPointer_GetTopElementUnderPointer, (ElementUnderPointer * __this, int32_t pointerId, Vector2 * pickPosition, bool * isTemporary, MethodInfo * method)); DO_APP_FUNC(0x015C1390, VisualElement *, ElementUnderPointer_GetTopElementUnderPointer_1, (ElementUnderPointer * __this, int32_t pointerId, MethodInfo * method)); DO_APP_FUNC(0x02F2F6F0, void, ElementUnderPointer_SetElementUnderPointer, (ElementUnderPointer * __this, VisualElement * newElementUnderPointer, int32_t pointerId, Vector2 pointerPos, MethodInfo * method)); DO_APP_FUNC(0x02F2F850, Vector2, ElementUnderPointer_GetEventPointerPosition, (ElementUnderPointer * __this, EventBase * triggerEvent, MethodInfo * method)); @@ -64501,7 +74478,7 @@ DO_APP_FUNC(0x02F35E40, bool, MouseEventDispatchingStrategy_SendEventToTarget, ( DO_APP_FUNC(0x02F35F00, bool, MouseEventDispatchingStrategy_SendEventToRegularTarget, (EventBase * evt, BaseVisualElementPanel * panel, MethodInfo * method)); DO_APP_FUNC(0x02F35FA0, bool, MouseEventDispatchingStrategy_SendEventToIMGUIContainer, (EventBase * evt, BaseVisualElementPanel * panel, MethodInfo * method)); DO_APP_FUNC(0x02F361B0, void, MouseEventDispatchingStrategy_SetBestTargetForEvent, (EventBase * evt, BaseVisualElementPanel * panel, MethodInfo * method)); -DO_APP_FUNC(0x02F36260, void, MouseEventDispatchingStrategy_UpdateElementUnderMouse, (EventBase * evt, BaseVisualElementPanel * panel, VisualElement * elementUnderMouse, MethodInfo * method)); +DO_APP_FUNC(0x02F36260, void, MouseEventDispatchingStrategy_UpdateElementUnderMouse, (EventBase * evt, BaseVisualElementPanel * panel, VisualElement * * elementUnderMouse, MethodInfo * method)); DO_APP_FUNC(0x02F365B0, bool, MouseEventDispatchingStrategy_IsDone, (EventBase * evt, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, MouseEventDispatchingStrategy__ctor, (MouseEventDispatchingStrategy * __this, MethodInfo * method)); DO_APP_FUNC(0x02F36640, void, MouseDownEvent_Init, (MouseDownEvent * __this, MethodInfo * method)); @@ -64592,18 +74569,18 @@ DO_APP_FUNC(0x02F39A00, bool, PointerDeviceState_HasAdditionalPressedButtons, (i DO_APP_FUNC(0x02F39A90, void, PointerDeviceState_SetPlayerPanelWithSoftPointerCapture, (int32_t pointerId, IPanel * panel, MethodInfo * method)); DO_APP_FUNC(0x02F39B50, IPanel *, PointerDeviceState_GetPlayerPanelWithSoftPointerCapture, (int32_t pointerId, MethodInfo * method)); DO_APP_FUNC(0x02F39BD0, void, PointerDeviceState__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x00471910, Vector2, PointerDeviceState_PointerLocation_get_Position, (PointerDeviceState_PointerLocation__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9A2A0, void, PointerDeviceState_PointerLocation_set_Position, (PointerDeviceState_PointerLocation__Boxed * __this, Vector2 value, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, IPanel *, PointerDeviceState_PointerLocation_get_Panel, (PointerDeviceState_PointerLocation__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x005F25C0, void, PointerDeviceState_PointerLocation_set_Panel, (PointerDeviceState_PointerLocation__Boxed * __this, IPanel * value, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, PointerDeviceState_LocationFlag__Enum, PointerDeviceState_PointerLocation_get_Flags, (PointerDeviceState_PointerLocation__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD60, void, PointerDeviceState_PointerLocation_set_Flags, (PointerDeviceState_PointerLocation__Boxed * __this, PointerDeviceState_LocationFlag__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x02F39E00, void, PointerDeviceState_PointerLocation_SetLocation, (PointerDeviceState_PointerLocation__Boxed * __this, Vector2 position, IPanel * panel, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Vector2, PointerDeviceState_PointerLocation_get_Position, (PointerDeviceState_PointerLocation * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9A2A0, void, PointerDeviceState_PointerLocation_set_Position, (PointerDeviceState_PointerLocation * __this, Vector2 value, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, IPanel *, PointerDeviceState_PointerLocation_get_Panel, (PointerDeviceState_PointerLocation * __this, MethodInfo * method)); +DO_APP_FUNC(0x005F25C0, void, PointerDeviceState_PointerLocation_set_Panel, (PointerDeviceState_PointerLocation * __this, IPanel * value, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, PointerDeviceState_LocationFlag__Enum, PointerDeviceState_PointerLocation_get_Flags, (PointerDeviceState_PointerLocation * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD60, void, PointerDeviceState_PointerLocation_set_Flags, (PointerDeviceState_PointerLocation * __this, PointerDeviceState_LocationFlag__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x02F39E00, void, PointerDeviceState_PointerLocation_SetLocation, (PointerDeviceState_PointerLocation * __this, Vector2 position, IPanel * panel, MethodInfo * method)); DO_APP_FUNC(0x02F39F30, bool, PointerEventDispatchingStrategy_CanDispatchEvent, (PointerEventDispatchingStrategy * __this, EventBase * evt, MethodInfo * method)); DO_APP_FUNC(0x02F39F80, void, PointerEventDispatchingStrategy_DispatchEvent, (PointerEventDispatchingStrategy * __this, EventBase * evt, IPanel * panel, MethodInfo * method)); DO_APP_FUNC(0x02F39FC0, void, PointerEventDispatchingStrategy_SendEventToTarget, (EventBase * evt, MethodInfo * method)); DO_APP_FUNC(0x02F39FF0, void, PointerEventDispatchingStrategy_SetBestTargetForEvent, (EventBase * evt, IPanel * panel, MethodInfo * method)); -DO_APP_FUNC(0x02F3A1C0, void, PointerEventDispatchingStrategy_UpdateElementUnderPointer, (EventBase * evt, IPanel * panel, VisualElement * elementUnderPointer, MethodInfo * method)); +DO_APP_FUNC(0x02F3A1C0, void, PointerEventDispatchingStrategy_UpdateElementUnderPointer, (EventBase * evt, IPanel * panel, VisualElement * * elementUnderPointer, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, PointerEventDispatchingStrategy__ctor, (PointerEventDispatchingStrategy * __this, MethodInfo * method)); DO_APP_FUNC(0x02F3A3D0, String *, PointerType_GetPointerType, (int32_t pointerId, MethodInfo * method)); DO_APP_FUNC(0x02F3A490, bool, PointerType_IsDirectManipulationDevice, (String * pointerType, MethodInfo * method)); @@ -64654,16 +74631,16 @@ DO_APP_FUNC(0x02F502A0, void, TooltipEvent_set_rect, (TooltipEvent * __this, Rec DO_APP_FUNC(0x02F502B0, void, TooltipEvent_Init, (TooltipEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x02F50360, void, TooltipEvent_LocalInit, (TooltipEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x02F50410, void, TooltipEvent__ctor, (TooltipEvent * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, StylePropertyNameCollection__ctor, (StylePropertyNameCollection__Boxed * __this, List_1_UnityEngine_UIElements_StylePropertyName_ * list, MethodInfo * method)); -DO_APP_FUNC(0x02F50480, StylePropertyNameCollection_Enumerator, StylePropertyNameCollection_GetEnumerator, (StylePropertyNameCollection__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F505C0, IEnumerator_1_UnityEngine_UIElements_StylePropertyName_ *, StylePropertyNameCollection_System_Collections_Generic_IEnumerable_UnityEngine_UIElements_StylePropertyName__GetEnumerator, (StylePropertyNameCollection__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F50630, IEnumerator *, StylePropertyNameCollection_System_Collections_IEnumerable_GetEnumerator, (StylePropertyNameCollection__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F506A0, void, StylePropertyNameCollection_Enumerator__ctor, (StylePropertyNameCollection_Enumerator__Boxed * __this, List_1_T_Enumerator_UnityEngine_UIElements_StylePropertyName_ enumerator, MethodInfo * method)); -DO_APP_FUNC(0x02F50700, bool, StylePropertyNameCollection_Enumerator_MoveNext, (StylePropertyNameCollection_Enumerator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F50740, StylePropertyName, StylePropertyNameCollection_Enumerator_get_Current, (StylePropertyNameCollection_Enumerator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F50790, Object *, StylePropertyNameCollection_Enumerator_System_Collections_IEnumerator_get_Current, (StylePropertyNameCollection_Enumerator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, StylePropertyNameCollection_Enumerator_Reset, (StylePropertyNameCollection_Enumerator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F50800, void, StylePropertyNameCollection_Enumerator_Dispose, (StylePropertyNameCollection_Enumerator__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, StylePropertyNameCollection__ctor, (StylePropertyNameCollection * __this, List_1_UnityEngine_UIElements_StylePropertyName_ * list, MethodInfo * method)); +DO_APP_FUNC(0x02F50480, StylePropertyNameCollection_Enumerator, StylePropertyNameCollection_GetEnumerator, (StylePropertyNameCollection * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F505C0, IEnumerator_1_UnityEngine_UIElements_StylePropertyName_ *, StylePropertyNameCollection_System_Collections_Generic_IEnumerable_UnityEngine_UIElements_StylePropertyName__GetEnumerator, (StylePropertyNameCollection * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F50630, IEnumerator *, StylePropertyNameCollection_System_Collections_IEnumerable_GetEnumerator, (StylePropertyNameCollection * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F506A0, void, StylePropertyNameCollection_Enumerator__ctor, (StylePropertyNameCollection_Enumerator * __this, List_1_T_Enumerator_UnityEngine_UIElements_StylePropertyName_ enumerator, MethodInfo * method)); +DO_APP_FUNC(0x02F50700, bool, StylePropertyNameCollection_Enumerator_MoveNext, (StylePropertyNameCollection_Enumerator * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F50740, StylePropertyName, StylePropertyNameCollection_Enumerator_get_Current, (StylePropertyNameCollection_Enumerator * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F50790, Object *, StylePropertyNameCollection_Enumerator_System_Collections_IEnumerator_get_Current, (StylePropertyNameCollection_Enumerator * __this, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, StylePropertyNameCollection_Enumerator_Reset, (StylePropertyNameCollection_Enumerator * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F50800, void, StylePropertyNameCollection_Enumerator_Dispose, (StylePropertyNameCollection_Enumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x02F50830, void, TransitionRunEvent__ctor, (TransitionRunEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x02F50870, void, TransitionStartEvent__ctor, (TransitionStartEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x02F508B0, void, TransitionEndEvent__ctor, (TransitionEndEvent * __this, MethodInfo * method)); @@ -64672,12 +74649,12 @@ DO_APP_FUNC(0x02F50930, IMGUIEvent *, IMGUIEvent_GetPooled, (Event_1 * systemEve DO_APP_FUNC(0x02F509C0, void, IMGUIEvent_Init, (IMGUIEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x02F36B00, void, IMGUIEvent_LocalInit, (IMGUIEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x02F50A70, void, IMGUIEvent__ctor, (IMGUIEvent * __this, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, EventDebuggerLogCall__ctor, (EventDebuggerLogCall__Boxed * __this, Delegate * callback, EventBase * evt, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, EventDebuggerLogCall_Dispose, (EventDebuggerLogCall__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, EventDebuggerLogIMGUICall__ctor, (EventDebuggerLogIMGUICall__Boxed * __this, EventBase * evt, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, EventDebuggerLogIMGUICall_Dispose, (EventDebuggerLogIMGUICall__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, EventDebuggerLogExecuteDefaultAction__ctor, (EventDebuggerLogExecuteDefaultAction__Boxed * __this, EventBase * evt, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, EventDebuggerLogExecuteDefaultAction_Dispose, (EventDebuggerLogExecuteDefaultAction__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, EventDebuggerLogCall__ctor, (EventDebuggerLogCall * __this, Delegate * callback, EventBase * evt, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, EventDebuggerLogCall_Dispose, (EventDebuggerLogCall * __this, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, EventDebuggerLogIMGUICall__ctor, (EventDebuggerLogIMGUICall * __this, EventBase * evt, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, EventDebuggerLogIMGUICall_Dispose, (EventDebuggerLogIMGUICall * __this, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, EventDebuggerLogExecuteDefaultAction__ctor, (EventDebuggerLogExecuteDefaultAction * __this, EventBase * evt, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, EventDebuggerLogExecuteDefaultAction_Dispose, (EventDebuggerLogExecuteDefaultAction * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, EventDebugger_LogPropagationPaths, (EventBase * evt, PropagationPaths * paths, MethodInfo * method)); DO_APP_FUNC(0x003BCD50, int32_t, DynamicAtlasSettings_get_minAtlasSize, (DynamicAtlasSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, DynamicAtlasSettings_set_minAtlasSize, (DynamicAtlasSettings * __this, int32_t value, MethodInfo * method)); @@ -64701,13 +74678,13 @@ DO_APP_FUNC(0x02F51CF0, bool, NavigateFocusRing_IsActive, (VisualElement * v, Me DO_APP_FUNC(0x02F51D60, bool, NavigateFocusRing_IsNavigable, (Focusable * focusable, MethodInfo * method)); DO_APP_FUNC(0x02F51DB0, void, NavigateFocusRing__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02F52280, void, NavigateFocusRing_ChangeDirection__ctor, (NavigateFocusRing_ChangeDirection * __this, int32_t i, MethodInfo * method)); -DO_APP_FUNC(0x02F522E0, bool, NavigateFocusRing_FocusableHierarchyTraversal_ValidateHierarchyTraversal, (NavigateFocusRing_FocusableHierarchyTraversal__Boxed * __this, VisualElement * v, MethodInfo * method)); -DO_APP_FUNC(0x02F52400, bool, NavigateFocusRing_FocusableHierarchyTraversal_ValidateElement, (NavigateFocusRing_FocusableHierarchyTraversal__Boxed * __this, VisualElement * v, MethodInfo * method)); -DO_APP_FUNC(0x02F52510, int32_t, NavigateFocusRing_FocusableHierarchyTraversal_Order, (NavigateFocusRing_FocusableHierarchyTraversal__Boxed * __this, VisualElement * a, VisualElement * b, MethodInfo * method)); -DO_APP_FUNC(0x02F525C0, int32_t, NavigateFocusRing_FocusableHierarchyTraversal_StrictOrder, (NavigateFocusRing_FocusableHierarchyTraversal__Boxed * __this, VisualElement * a, VisualElement * b, MethodInfo * method)); -DO_APP_FUNC(0x02F52640, int32_t, NavigateFocusRing_FocusableHierarchyTraversal_StrictOrder_1, (NavigateFocusRing_FocusableHierarchyTraversal__Boxed * __this, Rect ra, Rect rb, MethodInfo * method)); -DO_APP_FUNC(0x02F52820, int32_t, NavigateFocusRing_FocusableHierarchyTraversal_TieBreaker, (NavigateFocusRing_FocusableHierarchyTraversal__Boxed * __this, Rect ra, Rect rb, MethodInfo * method)); -DO_APP_FUNC(0x02F52950, VisualElement *, NavigateFocusRing_FocusableHierarchyTraversal_GetBestOverall, (NavigateFocusRing_FocusableHierarchyTraversal__Boxed * __this, VisualElement * candidate, VisualElement * bestSoFar, MethodInfo * method)); +DO_APP_FUNC(0x02F522E0, bool, NavigateFocusRing_FocusableHierarchyTraversal_ValidateHierarchyTraversal, (NavigateFocusRing_FocusableHierarchyTraversal * __this, VisualElement * v, MethodInfo * method)); +DO_APP_FUNC(0x02F52400, bool, NavigateFocusRing_FocusableHierarchyTraversal_ValidateElement, (NavigateFocusRing_FocusableHierarchyTraversal * __this, VisualElement * v, MethodInfo * method)); +DO_APP_FUNC(0x02F52510, int32_t, NavigateFocusRing_FocusableHierarchyTraversal_Order, (NavigateFocusRing_FocusableHierarchyTraversal * __this, VisualElement * a, VisualElement * b, MethodInfo * method)); +DO_APP_FUNC(0x02F525C0, int32_t, NavigateFocusRing_FocusableHierarchyTraversal_StrictOrder, (NavigateFocusRing_FocusableHierarchyTraversal * __this, VisualElement * a, VisualElement * b, MethodInfo * method)); +DO_APP_FUNC(0x02F52640, int32_t, NavigateFocusRing_FocusableHierarchyTraversal_StrictOrder_1, (NavigateFocusRing_FocusableHierarchyTraversal * __this, Rect ra, Rect rb, MethodInfo * method)); +DO_APP_FUNC(0x02F52820, int32_t, NavigateFocusRing_FocusableHierarchyTraversal_TieBreaker, (NavigateFocusRing_FocusableHierarchyTraversal * __this, Rect ra, Rect rb, MethodInfo * method)); +DO_APP_FUNC(0x02F52950, VisualElement *, NavigateFocusRing_FocusableHierarchyTraversal_GetBestOverall, (NavigateFocusRing_FocusableHierarchyTraversal * __this, VisualElement * candidate, VisualElement * bestSoFar, MethodInfo * method)); DO_APP_FUNC(0x014462E0, ThemeStyleSheet *, PanelSettings_get_themeStyleSheet, (PanelSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x02F52AB0, void, PanelSettings_set_themeStyleSheet, (PanelSettings * __this, ThemeStyleSheet * value, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, RenderTexture *, PanelSettings_get_targetTexture, (PanelSettings * __this, MethodInfo * method)); @@ -64771,6 +74748,7 @@ DO_APP_FUNC(0x02F556F0, void, PanelSettings_RuntimePanelAccess_MarkPotentiallyEm DO_APP_FUNC(0x02F55880, EventDispatcher_1 *, RuntimeEventDispatcher_Create, (MethodInfo * method)); DO_APP_FUNC(0x018BC560, PanelSettings *, RuntimePanel_get_panelSettings, (RuntimePanel * __this, MethodInfo * method)); DO_APP_FUNC(0x02F55AD0, RuntimePanel *, RuntimePanel_Create, (ScriptableObject * ownerObject, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE64C8, RuntimePanel_Create__MethodInfo); DO_APP_FUNC(0x02F55B40, void, RuntimePanel__ctor, (RuntimePanel * __this, ScriptableObject * ownerObject, MethodInfo * method)); DO_APP_FUNC(0x02F56150, void, RuntimePanel_Update, (RuntimePanel * __this, MethodInfo * method)); DO_APP_FUNC(0x02F56300, void, RuntimePanel__cctor, (MethodInfo * method)); @@ -64821,7 +74799,7 @@ DO_APP_FUNC(0x02F59130, void, UIRAtlasAllocator_Dispose, (UIRAtlasAllocator * __ DO_APP_FUNC(0x02F591A0, void, UIRAtlasAllocator_Dispose_1, (UIRAtlasAllocator * __this, bool disposing, MethodInfo * method)); DO_APP_FUNC(0x02F59380, int32_t, UIRAtlasAllocator_GetLog2OfNextPower, (int32_t n, MethodInfo * method)); DO_APP_FUNC(0x02F593F0, void, UIRAtlasAllocator__ctor, (UIRAtlasAllocator * __this, int32_t initialAtlasSize, int32_t maxAtlasSize, int32_t sidePadding, MethodInfo * method)); -DO_APP_FUNC(0x02F597B0, bool, UIRAtlasAllocator_TryAllocate, (UIRAtlasAllocator * __this, int32_t width, int32_t height, RectInt location, MethodInfo * method)); +DO_APP_FUNC(0x02F597B0, bool, UIRAtlasAllocator_TryAllocate, (UIRAtlasAllocator * __this, int32_t width, int32_t height, RectInt * location, MethodInfo * method)); DO_APP_FUNC(0x02F59AD0, bool, UIRAtlasAllocator_TryPartitionArea, (UIRAtlasAllocator * __this, UIRAtlasAllocator_AreaNode * areaNode, int32_t rowIndex, int32_t rowHeight, int32_t minWidth, MethodInfo * method)); DO_APP_FUNC(0x02F59EA0, void, UIRAtlasAllocator_BuildAreas, (UIRAtlasAllocator * __this, MethodInfo * method)); DO_APP_FUNC(0x02F59F80, void, UIRAtlasAllocator__cctor, (MethodInfo * method)); @@ -64853,7 +74831,7 @@ DO_APP_FUNC(0x004EC420, bool, DynamicAtlasPage_get_disposed, (DynamicAtlasPage * DO_APP_FUNC(0x004EC430, void, DynamicAtlasPage_set_disposed, (DynamicAtlasPage * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x02F5AAA0, void, DynamicAtlasPage_Dispose, (DynamicAtlasPage * __this, MethodInfo * method)); DO_APP_FUNC(0x02F5AB10, void, DynamicAtlasPage_Dispose_1, (DynamicAtlasPage * __this, bool disposing, MethodInfo * method)); -DO_APP_FUNC(0x02F5ADB0, bool, DynamicAtlasPage_TryAdd, (DynamicAtlasPage * __this, Texture2D * image, Allocator2D_Alloc2D alloc, RectInt rect, MethodInfo * method)); +DO_APP_FUNC(0x02F5ADB0, bool, DynamicAtlasPage_TryAdd, (DynamicAtlasPage * __this, Texture2D * image, Allocator2D_Alloc2D * alloc, RectInt * rect, MethodInfo * method)); DO_APP_FUNC(0x02F5AFB0, void, DynamicAtlasPage_Update, (DynamicAtlasPage * __this, Texture2D * image, RectInt rect, MethodInfo * method)); DO_APP_FUNC(0x02F5B1E0, void, DynamicAtlasPage_Remove, (DynamicAtlasPage * __this, Allocator2D_Alloc2D alloc, MethodInfo * method)); DO_APP_FUNC(0x02F5B2B0, void, DynamicAtlasPage_Commit, (DynamicAtlasPage * __this, MethodInfo * method)); @@ -64872,26 +74850,30 @@ DO_APP_FUNC(0x02D67A10, Rect, MeshWriteData_get_uvRegion, (MeshWriteData * __thi DO_APP_FUNC(0x02F5CF70, void, MeshWriteData_SetNextVertex, (MeshWriteData * __this, Vertex vertex, MethodInfo * method)); DO_APP_FUNC(0x02F5D000, void, MeshWriteData_SetNextIndex, (MeshWriteData * __this, uint16_t index, MethodInfo * method)); DO_APP_FUNC(0x02F5D060, void, MeshWriteData_SetAllVertices, (MeshWriteData * __this, Vertex__Array * vertices, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6300, MeshWriteData_SetAllVertices__MethodInfo); DO_APP_FUNC(0x02F5D120, void, MeshWriteData_SetAllIndices, (MeshWriteData * __this, UInt16__Array * indices, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE62E8, MeshWriteData_SetAllIndices__MethodInfo); DO_APP_FUNC(0x02F5D1E0, void, MeshWriteData_Reset, (MeshWriteData * __this, NativeSlice_1_UnityEngine_UIElements_Vertex_ vertices, NativeSlice_1_System_UInt16_ indices, MethodInfo * method)); DO_APP_FUNC(0x02F5D210, void, MeshWriteData_Reset_1, (MeshWriteData * __this, NativeSlice_1_UnityEngine_UIElements_Vertex_ vertices, NativeSlice_1_System_UInt16_ indices, Rect uvRegion, MethodInfo * method)); DO_APP_FUNC(0x02F5D230, ColorPage, ColorPage_Init, (RenderChain * renderChain, BMPAlloc alloc, MethodInfo * method)); DO_APP_FUNC(0x02F5D2E0, void, MeshGenerationContextUtils_Rectangle, (MeshGenerationContext * mgc, MeshGenerationContextUtils_RectangleParams rectParams, MethodInfo * method)); DO_APP_FUNC(0x02F5D450, void, MeshGenerationContextUtils_Text, (MeshGenerationContext * mgc, MeshGenerationContextUtils_TextParams textParams, ITextHandle * handle, float pixelsPerPoint, MethodInfo * method)); DO_APP_FUNC(0x02F5D660, Vector2, MeshGenerationContextUtils_ConvertBorderRadiusPercentToPoints, (Vector2 borderRectSize, Length length, MethodInfo * method)); -DO_APP_FUNC(0x02F5D6C0, void, MeshGenerationContextUtils_GetVisualElementRadii, (VisualElement * ve, Vector2 topLeft, Vector2 bottomLeft, Vector2 topRight, Vector2 bottomRight, MethodInfo * method)); -DO_APP_FUNC(0x02F5D9B0, void, MeshGenerationContextUtils_AdjustBackgroundSizeForBorders, (VisualElement * visualElement, MeshGenerationContextUtils_RectangleParams rectParams, MethodInfo * method)); -DO_APP_FUNC(0x02F5DBC0, void, MeshGenerationContextUtils_RectangleParams_AdjustUVsForScaleMode, (Rect rect, Rect uv, Texture * texture, ScaleMode__Enum scaleMode, Rect rectOut, Rect uvOut, MethodInfo * method)); -DO_APP_FUNC(0x02F5DDE0, void, MeshGenerationContextUtils_RectangleParams_AdjustSpriteUVsForScaleMode, (Rect containerRect, Rect srcRect, Rect spriteGeomRect, Sprite * sprite, ScaleMode__Enum scaleMode, Rect rectOut, Rect uvOut, MethodInfo * method)); +DO_APP_FUNC(0x02F5D6C0, void, MeshGenerationContextUtils_GetVisualElementRadii, (VisualElement * ve, Vector2 * topLeft, Vector2 * bottomLeft, Vector2 * topRight, Vector2 * bottomRight, MethodInfo * method)); +DO_APP_FUNC(0x02F5D9B0, void, MeshGenerationContextUtils_AdjustBackgroundSizeForBorders, (VisualElement * visualElement, MeshGenerationContextUtils_RectangleParams * rectParams, MethodInfo * method)); +DO_APP_FUNC(0x02F5DBC0, void, MeshGenerationContextUtils_RectangleParams_AdjustUVsForScaleMode, (Rect rect, Rect uv, Texture * texture, ScaleMode__Enum scaleMode, Rect * rectOut, Rect * uvOut, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6330, MeshGenerationContextUtils_RectangleParams_AdjustUVsForScaleMode__MethodInfo); +DO_APP_FUNC(0x02F5DDE0, void, MeshGenerationContextUtils_RectangleParams_AdjustSpriteUVsForScaleMode, (Rect containerRect, Rect srcRect, Rect spriteGeomRect, Sprite * sprite, ScaleMode__Enum scaleMode, Rect * rectOut, Rect * uvOut, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6338, MeshGenerationContextUtils_RectangleParams_AdjustSpriteUVsForScaleMode__MethodInfo); DO_APP_FUNC(0x02F5E460, Rect, MeshGenerationContextUtils_RectangleParams_RectIntersection, (Rect a, Rect b, MethodInfo * method)); DO_APP_FUNC(0x02F5E540, Rect, MeshGenerationContextUtils_RectangleParams_ComputeGeomRect, (Sprite * sprite, MethodInfo * method)); DO_APP_FUNC(0x02F5E690, Rect, MeshGenerationContextUtils_RectangleParams_ComputeUVRect, (Sprite * sprite, MethodInfo * method)); DO_APP_FUNC(0x02F5E7E0, Rect, MeshGenerationContextUtils_RectangleParams_ApplyPackingRotation, (Rect uv, SpritePackingRotation__Enum rotation, MethodInfo * method)); DO_APP_FUNC(0x02F5E8B0, MeshGenerationContextUtils_RectangleParams, MeshGenerationContextUtils_RectangleParams_MakeTextured, (Rect rect, Rect uv, Texture * texture, ScaleMode__Enum scaleMode, ContextType__Enum panelContext, MethodInfo * method)); -DO_APP_FUNC(0x02F5EAD0, MeshGenerationContextUtils_RectangleParams, MeshGenerationContextUtils_RectangleParams_MakeSprite, (Rect containerRect, Rect subRect, Sprite * sprite, ScaleMode__Enum scaleMode, ContextType__Enum panelContext, bool hasRadius, Vector4 slices, MethodInfo * method)); +DO_APP_FUNC(0x02F5EAD0, MeshGenerationContextUtils_RectangleParams, MeshGenerationContextUtils_RectangleParams_MakeSprite, (Rect containerRect, Rect subRect, Sprite * sprite, ScaleMode__Enum scaleMode, ContextType__Enum panelContext, bool hasRadius, Vector4 * slices, MethodInfo * method)); DO_APP_FUNC(0x02F5F9C0, MeshGenerationContextUtils_RectangleParams, MeshGenerationContextUtils_RectangleParams_MakeVectorTextured, (Rect rect, Rect uv, VectorImage * vectorImage, ScaleMode__Enum scaleMode, ContextType__Enum panelContext, MethodInfo * method)); -DO_APP_FUNC(0x02F5FB90, bool, MeshGenerationContextUtils_RectangleParams_HasRadius, (MeshGenerationContextUtils_RectangleParams__Boxed * __this, float epsilon, MethodInfo * method)); -DO_APP_FUNC(0x02F5FBF0, int32_t, MeshGenerationContextUtils_TextParams_GetHashCode, (MeshGenerationContextUtils_TextParams__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F5FB90, bool, MeshGenerationContextUtils_RectangleParams_HasRadius, (MeshGenerationContextUtils_RectangleParams * __this, float epsilon, MethodInfo * method)); +DO_APP_FUNC(0x02F5FBF0, int32_t, MeshGenerationContextUtils_TextParams_GetHashCode, (MeshGenerationContextUtils_TextParams * __this, MethodInfo * method)); DO_APP_FUNC(0x02F5FEB0, MeshGenerationContextUtils_TextParams, MeshGenerationContextUtils_TextParams_MakeStyleBased, (VisualElement * ve, String * text, MethodInfo * method)); DO_APP_FUNC(0x02F60540, TextNativeSettings, MeshGenerationContextUtils_TextParams_GetTextNativeSettings, (MeshGenerationContextUtils_TextParams textParams, float scaling, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, MeshGenerationContext__ctor, (MeshGenerationContext * __this, IStylePainter * painter, MethodInfo * method)); @@ -64904,24 +74886,30 @@ DO_APP_FUNC(0x02F60BC0, void, UIRRepaintUpdater_Update, (UIRRepaintUpdater * __t DO_APP_FUNC(0x02F60E50, RenderChain *, UIRRepaintUpdater_CreateRenderChain, (UIRRepaintUpdater * __this, MethodInfo * method)); DO_APP_FUNC(0x02F60EC0, void, UIRRepaintUpdater__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02F611C0, void, UIRRepaintUpdater_OnGraphicsResourcesRecreate, (bool recreate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE62C0, UIRRepaintUpdater_OnGraphicsResourcesRecreate__MethodInfo); DO_APP_FUNC(0x02F614C0, void, UIRRepaintUpdater_OnPanelChanged, (UIRRepaintUpdater * __this, BaseVisualElementPanel * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6280, UIRRepaintUpdater_OnPanelChanged__MethodInfo); DO_APP_FUNC(0x02F614E0, void, UIRRepaintUpdater_AttachToPanel, (UIRRepaintUpdater * __this, MethodInfo * method)); DO_APP_FUNC(0x02F61A60, void, UIRRepaintUpdater_DetachFromPanel, (UIRRepaintUpdater * __this, MethodInfo * method)); DO_APP_FUNC(0x02F61FC0, void, UIRRepaintUpdater_InitRenderChain, (UIRRepaintUpdater * __this, MethodInfo * method)); DO_APP_FUNC(0x02F620D0, void, UIRRepaintUpdater_DestroyRenderChain, (UIRRepaintUpdater * __this, MethodInfo * method)); DO_APP_FUNC(0x02F621E0, void, UIRRepaintUpdater_OnPanelAtlasChanged, (UIRRepaintUpdater * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE61C8, UIRRepaintUpdater_OnPanelAtlasChanged__MethodInfo); DO_APP_FUNC(0x02F621F0, void, UIRRepaintUpdater_OnPanelHierarchyChanged, (UIRRepaintUpdater * __this, VisualElement * ve, HierarchyChangeType__Enum changeType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE61D0, UIRRepaintUpdater_OnPanelHierarchyChanged__MethodInfo); DO_APP_FUNC(0x02F62260, void, UIRRepaintUpdater_OnPanelStandardShaderChanged, (UIRRepaintUpdater * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE61A8, UIRRepaintUpdater_OnPanelStandardShaderChanged__MethodInfo); DO_APP_FUNC(0x02F625C0, void, UIRRepaintUpdater_OnPanelStandardWorldSpaceShaderChanged, (UIRRepaintUpdater * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE61B8, UIRRepaintUpdater_OnPanelStandardWorldSpaceShaderChanged__MethodInfo); DO_APP_FUNC(0x02F62920, void, UIRRepaintUpdater_ResetAllElementsDataRecursive, (UIRRepaintUpdater * __this, VisualElement * ve, MethodInfo * method)); DO_APP_FUNC(0x004C9320, bool, UIRRepaintUpdater_get_disposed, (UIRRepaintUpdater * __this, MethodInfo * method)); DO_APP_FUNC(0x005FAB60, void, UIRRepaintUpdater_set_disposed, (UIRRepaintUpdater * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x02F62A50, void, UIRRepaintUpdater_Dispose, (UIRRepaintUpdater * __this, bool disposing, MethodInfo * method)); -DO_APP_FUNC(0x02F62A80, void, TextureId__ctor, (TextureId__Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x02F62A90, int32_t, TextureId_get_index, (TextureId__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F62AA0, float, TextureId_ConvertToGpu, (TextureId__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F62AF0, bool, TextureId_Equals, (TextureId__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02B78450, int32_t, TextureId_GetHashCode, (TextureId__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F62A80, void, TextureId__ctor, (TextureId * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x02F62A90, int32_t, TextureId_get_index, (TextureId * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F62AA0, float, TextureId_ConvertToGpu, (TextureId * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F62AF0, bool, TextureId_Equals, (TextureId * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02B78450, int32_t, TextureId_GetHashCode, (TextureId * __this, MethodInfo * method)); DO_APP_FUNC(0x02D31C70, bool, TextureId_op_Equality, (TextureId left, TextureId right, MethodInfo * method)); DO_APP_FUNC(0x02F62B90, bool, TextureId_op_Inequality, (TextureId left, TextureId right, MethodInfo * method)); DO_APP_FUNC(0x02F62BF0, void, TextureId__cctor, (MethodInfo * method)); @@ -64944,24 +74932,24 @@ DO_APP_FUNC(0x02F64520, int32_t, UIRUtility_GetNextPow2, (int32_t n, MethodInfo DO_APP_FUNC(0x02F64540, int32_t, UIRUtility_GetNextPow2Exp, (int32_t n, MethodInfo * method)); DO_APP_FUNC(0x02F64560, void, UIRUtility__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02F646B0, Angle_2, Angle_2_None, (MethodInfo * method)); -DO_APP_FUNC(0x00BCBB00, float, Angle_2_get_value, (Angle_2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01314630, void, Angle_2__ctor, (Angle_2__Boxed * __this, float value, AngleUnit__Enum unit, MethodInfo * method)); -DO_APP_FUNC(0x01314630, void, Angle_2__ctor_1, (Angle_2__Boxed * __this, float value, Angle_Unit__Enum unit, MethodInfo * method)); -DO_APP_FUNC(0x02F646D0, float, Angle_2_ToDegrees, (Angle_2__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00BCBB00, float, Angle_2_get_value, (Angle_2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01314630, void, Angle_2__ctor, (Angle_2 * __this, float value, AngleUnit__Enum unit, MethodInfo * method)); +DO_APP_FUNC(0x01314630, void, Angle_2__ctor_1, (Angle_2 * __this, float value, Angle_Unit__Enum unit, MethodInfo * method)); +DO_APP_FUNC(0x02F646D0, float, Angle_2_ToDegrees, (Angle_2 * __this, MethodInfo * method)); DO_APP_FUNC(0x02F64730, Angle_2, Angle_2_op_Implicit, (float value, MethodInfo * method)); DO_APP_FUNC(0x02F64750, bool, Angle_2_op_Equality, (Angle_2 lhs, Angle_2 rhs, MethodInfo * method)); -DO_APP_FUNC(0x02F64780, bool, Angle_2_Equals, (Angle_2__Boxed * __this, Angle_2 other, MethodInfo * method)); -DO_APP_FUNC(0x02F647B0, bool, Angle_2_Equals_1, (Angle_2__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02F64860, int32_t, Angle_2_GetHashCode, (Angle_2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F64880, String *, Angle_2_ToString, (Angle_2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E5B640, Texture2D *, Background_get_texture, (Background__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F64A90, void, Background_set_texture, (Background__Boxed * __this, Texture2D * value, MethodInfo * method)); -DO_APP_FUNC(0x02D66790, Sprite *, Background_get_sprite, (Background__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F64D60, void, Background_set_sprite, (Background__Boxed * __this, Sprite * value, MethodInfo * method)); -DO_APP_FUNC(0x015C0B20, RenderTexture *, Background_get_renderTexture, (Background__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F65040, void, Background_set_renderTexture, (Background__Boxed * __this, RenderTexture * value, MethodInfo * method)); -DO_APP_FUNC(0x014462E0, VectorImage *, Background_get_vectorImage, (Background__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F65320, void, Background_set_vectorImage, (Background__Boxed * __this, VectorImage * value, MethodInfo * method)); +DO_APP_FUNC(0x02F64780, bool, Angle_2_Equals, (Angle_2 * __this, Angle_2 other, MethodInfo * method)); +DO_APP_FUNC(0x02F647B0, bool, Angle_2_Equals_1, (Angle_2 * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02F64860, int32_t, Angle_2_GetHashCode, (Angle_2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F64880, String *, Angle_2_ToString, (Angle_2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E5B640, Texture2D *, Background_get_texture, (Background * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F64A90, void, Background_set_texture, (Background * __this, Texture2D * value, MethodInfo * method)); +DO_APP_FUNC(0x02D66790, Sprite *, Background_get_sprite, (Background * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F64D60, void, Background_set_sprite, (Background * __this, Sprite * value, MethodInfo * method)); +DO_APP_FUNC(0x015C0B20, RenderTexture *, Background_get_renderTexture, (Background * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F65040, void, Background_set_renderTexture, (Background * __this, RenderTexture * value, MethodInfo * method)); +DO_APP_FUNC(0x014462E0, VectorImage *, Background_get_vectorImage, (Background * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F65320, void, Background_set_vectorImage, (Background * __this, VectorImage * value, MethodInfo * method)); DO_APP_FUNC(0x02F65600, Background, Background_FromTexture2D, (Texture2D * t, MethodInfo * method)); DO_APP_FUNC(0x02F65650, Background, Background_FromRenderTexture, (RenderTexture * rt, MethodInfo * method)); DO_APP_FUNC(0x02F656A0, Background, Background_FromSprite, (Sprite * s, MethodInfo * method)); @@ -64969,194 +74957,229 @@ DO_APP_FUNC(0x02F656F0, Background, Background_FromVectorImage, (VectorImage * v DO_APP_FUNC(0x02F65740, Background, Background_FromObject, (Object * obj, MethodInfo * method)); DO_APP_FUNC(0x02F65C30, bool, Background_op_Equality, (Background lhs, Background rhs, MethodInfo * method)); DO_APP_FUNC(0x02F661B0, bool, Background_op_Inequality, (Background lhs, Background rhs, MethodInfo * method)); -DO_APP_FUNC(0x02F661F0, bool, Background_Equals, (Background__Boxed * __this, Background other, MethodInfo * method)); -DO_APP_FUNC(0x02F66230, bool, Background_Equals_1, (Background__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02F662E0, int32_t, Background_GetHashCode, (Background__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F663B0, String *, Background_ToString, (Background__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3B880, int32_t, ComputedStyle_get_customPropertiesCount, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3B8D0, bool, ComputedStyle_get_hasTransition, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3B8F0, void, ComputedStyle_FinalizeApply, (ComputedStyle__Boxed * __this, ComputedStyle parentStyle, MethodInfo * method)); -DO_APP_FUNC(0x02F3BAE0, void, ComputedStyle_SyncWithLayout, (ComputedStyle__Boxed * __this, YogaNode * targetNode, MethodInfo * method)); -DO_APP_FUNC(0x02F3C870, bool, ComputedStyle_ApplyGlobalKeyword, (ComputedStyle__Boxed * __this, StylePropertyReader * reader, ComputedStyle parentStyle, MethodInfo * method)); -DO_APP_FUNC(0x02F3C9C0, bool, ComputedStyle_ApplyGlobalKeyword_1, (ComputedStyle__Boxed * __this, StylePropertyId__Enum id, StyleKeyword__Enum keyword, ComputedStyle parentStyle, MethodInfo * method)); -DO_APP_FUNC(0x02F3C9E0, void, ComputedStyle_RemoveCustomStyleProperty, (ComputedStyle__Boxed * __this, StylePropertyReader * reader, MethodInfo * method)); -DO_APP_FUNC(0x02F3CAB0, void, ComputedStyle_ApplyCustomStyleProperty, (ComputedStyle__Boxed * __this, StylePropertyReader * reader, MethodInfo * method)); -DO_APP_FUNC(0x02F3CC60, void, ComputedStyle_ApplyAllPropertyInitial, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00727B40, void, ComputedStyle_ResetComputedTransitions, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3CD00, VersionChangeType__Enum, ComputedStyle_CompareChanges, (ComputedStyle x, ComputedStyle y, MethodInfo * method)); -DO_APP_FUNC(0x02F3D4E0, bool, ComputedStyle_StartAnimationInlineTranslate, (VisualElement * element, ComputedStyle computedStyle, StyleTranslate translate, int32_t durationMs, int32_t delayMs, Func_2_Single_Single_ * easingCurve, MethodInfo * method)); -DO_APP_FUNC(0x02F3D680, Align__Enum, ComputedStyle_get_alignContent, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3D6D0, Align__Enum, ComputedStyle_get_alignItems, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3D720, Align__Enum, ComputedStyle_get_alignSelf, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3D770, Color, ComputedStyle_get_backgroundColor, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3D7D0, Background, ComputedStyle_get_backgroundImage, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3D830, Color, ComputedStyle_get_borderBottomColor, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3D890, Length, ComputedStyle_get_borderBottomLeftRadius, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3D8E0, Length, ComputedStyle_get_borderBottomRightRadius, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3D930, float, ComputedStyle_get_borderBottomWidth, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3D980, Color, ComputedStyle_get_borderLeftColor, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3D9E0, float, ComputedStyle_get_borderLeftWidth, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3DA30, Color, ComputedStyle_get_borderRightColor, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3DA90, float, ComputedStyle_get_borderRightWidth, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3DAE0, Color, ComputedStyle_get_borderTopColor, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3DB40, Length, ComputedStyle_get_borderTopLeftRadius, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3DB90, Length, ComputedStyle_get_borderTopRightRadius, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3DBE0, float, ComputedStyle_get_borderTopWidth, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3DC30, Length, ComputedStyle_get_bottom, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3DC80, Color, ComputedStyle_get_color, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3DCE0, Cursor, ComputedStyle_get_cursor, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3DD40, DisplayStyle__Enum, ComputedStyle_get_display, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3DD90, Length, ComputedStyle_get_flexBasis, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3DDE0, FlexDirection__Enum, ComputedStyle_get_flexDirection, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3DE30, float, ComputedStyle_get_flexGrow, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3DE80, float, ComputedStyle_get_flexShrink, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3DED0, Wrap__Enum, ComputedStyle_get_flexWrap, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3DF20, Length, ComputedStyle_get_fontSize, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3DF70, Length, ComputedStyle_get_height, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3DFC0, Justify__Enum, ComputedStyle_get_justifyContent, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3E010, Length, ComputedStyle_get_left, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3E060, Length, ComputedStyle_get_letterSpacing, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3E0B0, Length, ComputedStyle_get_marginBottom, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3E100, Length, ComputedStyle_get_marginLeft, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3E150, Length, ComputedStyle_get_marginRight, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3E1A0, Length, ComputedStyle_get_marginTop, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3E1F0, Length, ComputedStyle_get_maxHeight, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3E240, Length, ComputedStyle_get_maxWidth, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3E290, Length, ComputedStyle_get_minHeight, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3E2E0, Length, ComputedStyle_get_minWidth, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3E330, float, ComputedStyle_get_opacity, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3E380, OverflowInternal__Enum, ComputedStyle_get_overflow, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3E3D0, Length, ComputedStyle_get_paddingBottom, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3E420, Length, ComputedStyle_get_paddingLeft, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3E470, Length, ComputedStyle_get_paddingRight, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3E4C0, Length, ComputedStyle_get_paddingTop, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3E510, Position__Enum, ComputedStyle_get_position, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3E560, Length, ComputedStyle_get_right, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3E5B0, Rotate_1, ComputedStyle_get_rotate, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3E610, Scale, ComputedStyle_get_scale, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3E670, TextOverflow__Enum, ComputedStyle_get_textOverflow, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3E6C0, TextShadow, ComputedStyle_get_textShadow, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3E730, Length, ComputedStyle_get_top, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3E780, TransformOrigin, ComputedStyle_get_transformOrigin, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3E7E0, List_1_UnityEngine_UIElements_TimeValue_ *, ComputedStyle_get_transitionDelay, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3E830, List_1_UnityEngine_UIElements_TimeValue_ *, ComputedStyle_get_transitionDuration, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3E880, List_1_UnityEngine_UIElements_StylePropertyName_ *, ComputedStyle_get_transitionProperty, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3E8D0, List_1_UnityEngine_UIElements_EasingFunction_ *, ComputedStyle_get_transitionTimingFunction, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3E920, Translate_1, ComputedStyle_get_translate, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3E980, Color, ComputedStyle_get_unityBackgroundImageTintColor, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3E9E0, ScaleMode__Enum, ComputedStyle_get_unityBackgroundScaleMode, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3EA30, Font *, ComputedStyle_get_unityFont, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3EA80, FontDefinition, ComputedStyle_get_unityFontDefinition, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3EAE0, FontStyle__Enum, ComputedStyle_get_unityFontStyleAndWeight, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3EB30, OverflowClipBox__Enum, ComputedStyle_get_unityOverflowClipBox, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3EB80, Length, ComputedStyle_get_unityParagraphSpacing, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3EBD0, int32_t, ComputedStyle_get_unitySliceBottom, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3EC20, int32_t, ComputedStyle_get_unitySliceLeft, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3EC70, int32_t, ComputedStyle_get_unitySliceRight, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3ECC0, int32_t, ComputedStyle_get_unitySliceTop, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3ED10, TextAnchor__Enum, ComputedStyle_get_unityTextAlign, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3ED60, Color, ComputedStyle_get_unityTextOutlineColor, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3EDC0, float, ComputedStyle_get_unityTextOutlineWidth, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3EE10, TextOverflowPosition__Enum, ComputedStyle_get_unityTextOverflowPosition, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3EE60, Visibility__Enum, ComputedStyle_get_visibility, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3EEB0, WhiteSpace__Enum, ComputedStyle_get_whiteSpace, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3EF00, Length, ComputedStyle_get_width, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3EF50, Length, ComputedStyle_get_wordSpacing, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3EFA0, ComputedStyle, ComputedStyle_Create, (ComputedStyle parentStyle, MethodInfo * method)); +DO_APP_FUNC(0x02F661F0, bool, Background_Equals, (Background * __this, Background other, MethodInfo * method)); +DO_APP_FUNC(0x02F66230, bool, Background_Equals_1, (Background * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02F662E0, int32_t, Background_GetHashCode, (Background * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F663B0, String *, Background_ToString, (Background * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3B880, int32_t, ComputedStyle_get_customPropertiesCount, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3B8D0, bool, ComputedStyle_get_hasTransition, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3B8F0, void, ComputedStyle_FinalizeApply, (ComputedStyle * __this, ComputedStyle * parentStyle, MethodInfo * method)); +DO_APP_FUNC(0x02F3BAE0, void, ComputedStyle_SyncWithLayout, (ComputedStyle * __this, YogaNode * targetNode, MethodInfo * method)); +DO_APP_FUNC(0x02F3C870, bool, ComputedStyle_ApplyGlobalKeyword, (ComputedStyle * __this, StylePropertyReader * reader, ComputedStyle * parentStyle, MethodInfo * method)); +DO_APP_FUNC(0x02F3C9C0, bool, ComputedStyle_ApplyGlobalKeyword_1, (ComputedStyle * __this, StylePropertyId__Enum id, StyleKeyword__Enum keyword, ComputedStyle * parentStyle, MethodInfo * method)); +DO_APP_FUNC(0x02F3C9E0, void, ComputedStyle_RemoveCustomStyleProperty, (ComputedStyle * __this, StylePropertyReader * reader, MethodInfo * method)); +DO_APP_FUNC(0x02F3CAB0, void, ComputedStyle_ApplyCustomStyleProperty, (ComputedStyle * __this, StylePropertyReader * reader, MethodInfo * method)); +DO_APP_FUNC(0x02F3CC60, void, ComputedStyle_ApplyAllPropertyInitial, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x00727B40, void, ComputedStyle_ResetComputedTransitions, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3CD00, VersionChangeType__Enum, ComputedStyle_CompareChanges, (ComputedStyle * x, ComputedStyle * y, MethodInfo * method)); +DO_APP_FUNC(0x02F3D4E0, bool, ComputedStyle_StartAnimationInlineTranslate, (VisualElement * element, ComputedStyle * computedStyle, StyleTranslate translate, int32_t durationMs, int32_t delayMs, Func_2_Single_Single_ * easingCurve, MethodInfo * method)); +DO_APP_FUNC(0x02F3D680, Align__Enum, ComputedStyle_get_alignContent, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3D6D0, Align__Enum, ComputedStyle_get_alignItems, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3D720, Align__Enum, ComputedStyle_get_alignSelf, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3D770, Color, ComputedStyle_get_backgroundColor, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3D7D0, Background, ComputedStyle_get_backgroundImage, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3D830, Color, ComputedStyle_get_borderBottomColor, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3D890, Length, ComputedStyle_get_borderBottomLeftRadius, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3D8E0, Length, ComputedStyle_get_borderBottomRightRadius, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3D930, float, ComputedStyle_get_borderBottomWidth, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3D980, Color, ComputedStyle_get_borderLeftColor, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3D9E0, float, ComputedStyle_get_borderLeftWidth, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3DA30, Color, ComputedStyle_get_borderRightColor, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3DA90, float, ComputedStyle_get_borderRightWidth, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3DAE0, Color, ComputedStyle_get_borderTopColor, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3DB40, Length, ComputedStyle_get_borderTopLeftRadius, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3DB90, Length, ComputedStyle_get_borderTopRightRadius, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3DBE0, float, ComputedStyle_get_borderTopWidth, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3DC30, Length, ComputedStyle_get_bottom, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3DC80, Color, ComputedStyle_get_color, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3DCE0, Cursor, ComputedStyle_get_cursor, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3DD40, DisplayStyle__Enum, ComputedStyle_get_display, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3DD90, Length, ComputedStyle_get_flexBasis, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3DDE0, FlexDirection__Enum, ComputedStyle_get_flexDirection, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3DE30, float, ComputedStyle_get_flexGrow, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3DE80, float, ComputedStyle_get_flexShrink, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3DED0, Wrap__Enum, ComputedStyle_get_flexWrap, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3DF20, Length, ComputedStyle_get_fontSize, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3DF70, Length, ComputedStyle_get_height, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3DFC0, Justify__Enum, ComputedStyle_get_justifyContent, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3E010, Length, ComputedStyle_get_left, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3E060, Length, ComputedStyle_get_letterSpacing, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3E0B0, Length, ComputedStyle_get_marginBottom, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3E100, Length, ComputedStyle_get_marginLeft, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3E150, Length, ComputedStyle_get_marginRight, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3E1A0, Length, ComputedStyle_get_marginTop, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3E1F0, Length, ComputedStyle_get_maxHeight, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3E240, Length, ComputedStyle_get_maxWidth, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3E290, Length, ComputedStyle_get_minHeight, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3E2E0, Length, ComputedStyle_get_minWidth, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3E330, float, ComputedStyle_get_opacity, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3E380, OverflowInternal__Enum, ComputedStyle_get_overflow, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3E3D0, Length, ComputedStyle_get_paddingBottom, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3E420, Length, ComputedStyle_get_paddingLeft, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3E470, Length, ComputedStyle_get_paddingRight, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3E4C0, Length, ComputedStyle_get_paddingTop, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3E510, Position__Enum, ComputedStyle_get_position, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3E560, Length, ComputedStyle_get_right, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3E5B0, Rotate_1, ComputedStyle_get_rotate, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3E610, Scale, ComputedStyle_get_scale, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3E670, TextOverflow__Enum, ComputedStyle_get_textOverflow, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3E6C0, TextShadow, ComputedStyle_get_textShadow, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3E730, Length, ComputedStyle_get_top, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3E780, TransformOrigin, ComputedStyle_get_transformOrigin, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3E7E0, List_1_UnityEngine_UIElements_TimeValue_ *, ComputedStyle_get_transitionDelay, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3E830, List_1_UnityEngine_UIElements_TimeValue_ *, ComputedStyle_get_transitionDuration, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3E880, List_1_UnityEngine_UIElements_StylePropertyName_ *, ComputedStyle_get_transitionProperty, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3E8D0, List_1_UnityEngine_UIElements_EasingFunction_ *, ComputedStyle_get_transitionTimingFunction, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3E920, Translate_1, ComputedStyle_get_translate, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3E980, Color, ComputedStyle_get_unityBackgroundImageTintColor, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3E9E0, ScaleMode__Enum, ComputedStyle_get_unityBackgroundScaleMode, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3EA30, Font *, ComputedStyle_get_unityFont, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3EA80, FontDefinition, ComputedStyle_get_unityFontDefinition, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3EAE0, FontStyle__Enum, ComputedStyle_get_unityFontStyleAndWeight, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3EB30, OverflowClipBox__Enum, ComputedStyle_get_unityOverflowClipBox, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3EB80, Length, ComputedStyle_get_unityParagraphSpacing, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3EBD0, int32_t, ComputedStyle_get_unitySliceBottom, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3EC20, int32_t, ComputedStyle_get_unitySliceLeft, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3EC70, int32_t, ComputedStyle_get_unitySliceRight, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3ECC0, int32_t, ComputedStyle_get_unitySliceTop, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3ED10, TextAnchor__Enum, ComputedStyle_get_unityTextAlign, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3ED60, Color, ComputedStyle_get_unityTextOutlineColor, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3EDC0, float, ComputedStyle_get_unityTextOutlineWidth, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3EE10, TextOverflowPosition__Enum, ComputedStyle_get_unityTextOverflowPosition, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3EE60, Visibility__Enum, ComputedStyle_get_visibility, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3EEB0, WhiteSpace__Enum, ComputedStyle_get_whiteSpace, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3EF00, Length, ComputedStyle_get_width, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3EF50, Length, ComputedStyle_get_wordSpacing, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3EFA0, ComputedStyle, ComputedStyle_Create, (ComputedStyle * parentStyle, MethodInfo * method)); DO_APP_FUNC(0x02F3F3A0, ComputedStyle, ComputedStyle_CreateInitial, (MethodInfo * method)); -DO_APP_FUNC(0x02F3FCE0, ComputedStyle, ComputedStyle_Acquire, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3FE20, void, ComputedStyle_Release, (ComputedStyle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F3FF10, void, ComputedStyle_CopyFrom, (ComputedStyle__Boxed * __this, ComputedStyle other, MethodInfo * method)); -DO_APP_FUNC(0x02F40130, void, ComputedStyle_ApplyProperties, (ComputedStyle__Boxed * __this, StylePropertyReader * reader, ComputedStyle parentStyle, MethodInfo * method)); -DO_APP_FUNC(0x02F41410, void, ComputedStyle_ApplyStyleValue, (ComputedStyle__Boxed * __this, StyleValue sv, ComputedStyle parentStyle, MethodInfo * method)); -DO_APP_FUNC(0x02F421A0, void, ComputedStyle_ApplyStyleValueManaged, (ComputedStyle__Boxed * __this, StyleValueManaged sv, ComputedStyle parentStyle, MethodInfo * method)); -DO_APP_FUNC(0x02F42670, void, ComputedStyle_ApplyStyleCursor, (ComputedStyle__Boxed * __this, Cursor cursor, MethodInfo * method)); -DO_APP_FUNC(0x02F42710, void, ComputedStyle_ApplyStyleTextShadow, (ComputedStyle__Boxed * __this, TextShadow st, MethodInfo * method)); -DO_APP_FUNC(0x02F42780, void, ComputedStyle_ApplyFromComputedStyle, (ComputedStyle__Boxed * __this, StylePropertyId__Enum id, ComputedStyle other, MethodInfo * method)); -DO_APP_FUNC(0x02F43910, void, ComputedStyle_ApplyPropertyAnimation, (ComputedStyle__Boxed * __this, VisualElement * ve, StylePropertyId__Enum id, Length newValue, MethodInfo * method)); -DO_APP_FUNC(0x02F44220, void, ComputedStyle_ApplyPropertyAnimation_1, (ComputedStyle__Boxed * __this, VisualElement * ve, StylePropertyId__Enum id, float newValue, MethodInfo * method)); -DO_APP_FUNC(0x02F445C0, void, ComputedStyle_ApplyPropertyAnimation_2, (ComputedStyle__Boxed * __this, VisualElement * ve, StylePropertyId__Enum id, int32_t newValue, MethodInfo * method)); -DO_APP_FUNC(0x02F44C10, void, ComputedStyle_ApplyPropertyAnimation_3, (ComputedStyle__Boxed * __this, VisualElement * ve, StylePropertyId__Enum id, Color newValue, MethodInfo * method)); -DO_APP_FUNC(0x02F44ED0, void, ComputedStyle_ApplyPropertyAnimation_4, (ComputedStyle__Boxed * __this, VisualElement * ve, StylePropertyId__Enum id, Background newValue, MethodInfo * method)); -DO_APP_FUNC(0x02F45080, void, ComputedStyle_ApplyPropertyAnimation_5, (ComputedStyle__Boxed * __this, VisualElement * ve, StylePropertyId__Enum id, Font * newValue, MethodInfo * method)); -DO_APP_FUNC(0x02F45220, void, ComputedStyle_ApplyPropertyAnimation_6, (ComputedStyle__Boxed * __this, VisualElement * ve, StylePropertyId__Enum id, FontDefinition newValue, MethodInfo * method)); -DO_APP_FUNC(0x02F453C0, void, ComputedStyle_ApplyPropertyAnimation_7, (ComputedStyle__Boxed * __this, VisualElement * ve, StylePropertyId__Enum id, TextShadow newValue, MethodInfo * method)); -DO_APP_FUNC(0x02F45530, void, ComputedStyle_ApplyPropertyAnimation_8, (ComputedStyle__Boxed * __this, VisualElement * ve, StylePropertyId__Enum id, Translate_1 newValue, MethodInfo * method)); -DO_APP_FUNC(0x02F456A0, void, ComputedStyle_ApplyPropertyAnimation_9, (ComputedStyle__Boxed * __this, VisualElement * ve, StylePropertyId__Enum id, TransformOrigin newValue, MethodInfo * method)); -DO_APP_FUNC(0x02F45800, void, ComputedStyle_ApplyPropertyAnimation_10, (ComputedStyle__Boxed * __this, VisualElement * ve, StylePropertyId__Enum id, Rotate_1 newValue, MethodInfo * method)); -DO_APP_FUNC(0x02F45960, void, ComputedStyle_ApplyPropertyAnimation_11, (ComputedStyle__Boxed * __this, VisualElement * ve, StylePropertyId__Enum id, Scale newValue, MethodInfo * method)); -DO_APP_FUNC(0x02F45AC0, bool, ComputedStyle_StartAnimation, (VisualElement * element, StylePropertyId__Enum id, ComputedStyle oldStyle, ComputedStyle newStyle, int32_t durationMs, int32_t delayMs, Func_2_Single_Single_ * easingCurve, MethodInfo * method)); -DO_APP_FUNC(0x02F48370, bool, ComputedStyle_StartAnimationAllProperty, (VisualElement * element, ComputedStyle oldStyle, ComputedStyle newStyle, int32_t durationMs, int32_t delayMs, Func_2_Single_Single_ * easingCurve, MethodInfo * method)); -DO_APP_FUNC(0x02F4A530, bool, ComputedStyle_StartAnimationInline, (VisualElement * element, StylePropertyId__Enum id, ComputedStyle computedStyle, StyleValue sv, int32_t durationMs, int32_t delayMs, Func_2_Single_Single_ * easingCurve, MethodInfo * method)); -DO_APP_FUNC(0x02F4CD20, void, ComputedStyle_ApplyStyleTransformOrigin, (ComputedStyle__Boxed * __this, TransformOrigin st, MethodInfo * method)); -DO_APP_FUNC(0x02F4CD80, void, ComputedStyle_ApplyStyleTranslate, (ComputedStyle__Boxed * __this, Translate_1 translateValue, MethodInfo * method)); -DO_APP_FUNC(0x02F4CDE0, void, ComputedStyle_ApplyStyleRotate, (ComputedStyle__Boxed * __this, Rotate_1 rotateValue, MethodInfo * method)); -DO_APP_FUNC(0x02F4CE40, void, ComputedStyle_ApplyStyleScale, (ComputedStyle__Boxed * __this, Scale scaleValue, MethodInfo * method)); -DO_APP_FUNC(0x02F4CEA0, void, ComputedStyle_ApplyInitialValue, (ComputedStyle__Boxed * __this, StylePropertyReader * reader, MethodInfo * method)); -DO_APP_FUNC(0x02F4CEF0, void, ComputedStyle_ApplyInitialValue_1, (ComputedStyle__Boxed * __this, StylePropertyId__Enum id, MethodInfo * method)); -DO_APP_FUNC(0x02F4EBD0, void, ComputedStyle_ApplyUnsetValue, (ComputedStyle__Boxed * __this, StylePropertyReader * reader, ComputedStyle parentStyle, MethodInfo * method)); -DO_APP_FUNC(0x02F4EC10, void, ComputedStyle_ApplyUnsetValue_1, (ComputedStyle__Boxed * __this, StylePropertyId__Enum id, ComputedStyle parentStyle, MethodInfo * method)); -DO_APP_FUNC(0x02F66760, void, ComputedTransitionUtils_UpdateComputedTransitions, (ComputedStyle computedStyle, MethodInfo * method)); -DO_APP_FUNC(0x02F66810, bool, ComputedTransitionUtils_HasTransitionProperty, (ComputedStyle computedStyle, StylePropertyId__Enum id, MethodInfo * method)); -DO_APP_FUNC(0x02F668E0, bool, ComputedTransitionUtils_GetTransitionProperty, (ComputedStyle computedStyle, StylePropertyId__Enum id, ComputedTransitionProperty result, MethodInfo * method)); -DO_APP_FUNC(0x02F669F0, ComputedTransitionProperty__Array *, ComputedTransitionUtils_GetOrComputeTransitionPropertyData, (ComputedStyle computedStyle, MethodInfo * method)); -DO_APP_FUNC(0x02F66CD0, int32_t, ComputedTransitionUtils_GetTransitionHashCode, (ComputedStyle cs, MethodInfo * method)); -DO_APP_FUNC(0x02F67650, bool, ComputedTransitionUtils_SameTransitionProperty, (ComputedStyle x, ComputedStyle y, MethodInfo * method)); +DO_APP_FUNC(0x02F3FCE0, ComputedStyle, ComputedStyle_Acquire, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3FE20, void, ComputedStyle_Release, (ComputedStyle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F3FF10, void, ComputedStyle_CopyFrom, (ComputedStyle * __this, ComputedStyle * other, MethodInfo * method)); +DO_APP_FUNC(0x02F40130, void, ComputedStyle_ApplyProperties, (ComputedStyle * __this, StylePropertyReader * reader, ComputedStyle * parentStyle, MethodInfo * method)); +DO_APP_FUNC(0x02F41410, void, ComputedStyle_ApplyStyleValue, (ComputedStyle * __this, StyleValue sv, ComputedStyle * parentStyle, MethodInfo * method)); +DO_APP_FUNC(0x02F421A0, void, ComputedStyle_ApplyStyleValueManaged, (ComputedStyle * __this, StyleValueManaged sv, ComputedStyle * parentStyle, MethodInfo * method)); +DO_APP_FUNC(0x02F42670, void, ComputedStyle_ApplyStyleCursor, (ComputedStyle * __this, Cursor cursor, MethodInfo * method)); +DO_APP_FUNC(0x02F42710, void, ComputedStyle_ApplyStyleTextShadow, (ComputedStyle * __this, TextShadow st, MethodInfo * method)); +DO_APP_FUNC(0x02F42780, void, ComputedStyle_ApplyFromComputedStyle, (ComputedStyle * __this, StylePropertyId__Enum id, ComputedStyle * other, MethodInfo * method)); +DO_APP_FUNC(0x02F43910, void, ComputedStyle_ApplyPropertyAnimation, (ComputedStyle * __this, VisualElement * ve, StylePropertyId__Enum id, Length newValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE47B8, ComputedStyle_ApplyPropertyAnimation__MethodInfo); +DO_APP_FUNC(0x02F44220, void, ComputedStyle_ApplyPropertyAnimation_1, (ComputedStyle * __this, VisualElement * ve, StylePropertyId__Enum id, float newValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE47A8, ComputedStyle_ApplyPropertyAnimation_1__MethodInfo); +DO_APP_FUNC(0x02F445C0, void, ComputedStyle_ApplyPropertyAnimation_2, (ComputedStyle * __this, VisualElement * ve, StylePropertyId__Enum id, int32_t newValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE47E0, ComputedStyle_ApplyPropertyAnimation_2__MethodInfo); +DO_APP_FUNC(0x02F44C10, void, ComputedStyle_ApplyPropertyAnimation_3, (ComputedStyle * __this, VisualElement * ve, StylePropertyId__Enum id, Color newValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE47D0, ComputedStyle_ApplyPropertyAnimation_3__MethodInfo); +DO_APP_FUNC(0x02F44ED0, void, ComputedStyle_ApplyPropertyAnimation_4, (ComputedStyle * __this, VisualElement * ve, StylePropertyId__Enum id, Background newValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4728, ComputedStyle_ApplyPropertyAnimation_4__MethodInfo); +DO_APP_FUNC(0x02F45080, void, ComputedStyle_ApplyPropertyAnimation_5, (ComputedStyle * __this, VisualElement * ve, StylePropertyId__Enum id, Font * newValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4718, ComputedStyle_ApplyPropertyAnimation_5__MethodInfo); +DO_APP_FUNC(0x02F45220, void, ComputedStyle_ApplyPropertyAnimation_6, (ComputedStyle * __this, VisualElement * ve, StylePropertyId__Enum id, FontDefinition newValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4748, ComputedStyle_ApplyPropertyAnimation_6__MethodInfo); +DO_APP_FUNC(0x02F453C0, void, ComputedStyle_ApplyPropertyAnimation_7, (ComputedStyle * __this, VisualElement * ve, StylePropertyId__Enum id, TextShadow newValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4738, ComputedStyle_ApplyPropertyAnimation_7__MethodInfo); +DO_APP_FUNC(0x02F45530, void, ComputedStyle_ApplyPropertyAnimation_8, (ComputedStyle * __this, VisualElement * ve, StylePropertyId__Enum id, Translate_1 newValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4768, ComputedStyle_ApplyPropertyAnimation_8__MethodInfo); +DO_APP_FUNC(0x02F456A0, void, ComputedStyle_ApplyPropertyAnimation_9, (ComputedStyle * __this, VisualElement * ve, StylePropertyId__Enum id, TransformOrigin newValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4758, ComputedStyle_ApplyPropertyAnimation_9__MethodInfo); +DO_APP_FUNC(0x02F45800, void, ComputedStyle_ApplyPropertyAnimation_10, (ComputedStyle * __this, VisualElement * ve, StylePropertyId__Enum id, Rotate_1 newValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4788, ComputedStyle_ApplyPropertyAnimation_10__MethodInfo); +DO_APP_FUNC(0x02F45960, void, ComputedStyle_ApplyPropertyAnimation_11, (ComputedStyle * __this, VisualElement * ve, StylePropertyId__Enum id, Scale newValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4778, ComputedStyle_ApplyPropertyAnimation_11__MethodInfo); +DO_APP_FUNC(0x02F45AC0, bool, ComputedStyle_StartAnimation, (VisualElement * element, StylePropertyId__Enum id, ComputedStyle * oldStyle, ComputedStyle * newStyle, int32_t durationMs, int32_t delayMs, Func_2_Single_Single_ * easingCurve, MethodInfo * method)); +DO_APP_FUNC(0x02F48370, bool, ComputedStyle_StartAnimationAllProperty, (VisualElement * element, ComputedStyle * oldStyle, ComputedStyle * newStyle, int32_t durationMs, int32_t delayMs, Func_2_Single_Single_ * easingCurve, MethodInfo * method)); +DO_APP_FUNC(0x02F4A530, bool, ComputedStyle_StartAnimationInline, (VisualElement * element, StylePropertyId__Enum id, ComputedStyle * computedStyle, StyleValue sv, int32_t durationMs, int32_t delayMs, Func_2_Single_Single_ * easingCurve, MethodInfo * method)); +DO_APP_FUNC(0x02F4CD20, void, ComputedStyle_ApplyStyleTransformOrigin, (ComputedStyle * __this, TransformOrigin st, MethodInfo * method)); +DO_APP_FUNC(0x02F4CD80, void, ComputedStyle_ApplyStyleTranslate, (ComputedStyle * __this, Translate_1 translateValue, MethodInfo * method)); +DO_APP_FUNC(0x02F4CDE0, void, ComputedStyle_ApplyStyleRotate, (ComputedStyle * __this, Rotate_1 rotateValue, MethodInfo * method)); +DO_APP_FUNC(0x02F4CE40, void, ComputedStyle_ApplyStyleScale, (ComputedStyle * __this, Scale scaleValue, MethodInfo * method)); +DO_APP_FUNC(0x02F4CEA0, void, ComputedStyle_ApplyInitialValue, (ComputedStyle * __this, StylePropertyReader * reader, MethodInfo * method)); +DO_APP_FUNC(0x02F4CEF0, void, ComputedStyle_ApplyInitialValue_1, (ComputedStyle * __this, StylePropertyId__Enum id, MethodInfo * method)); +DO_APP_FUNC(0x02F4EBD0, void, ComputedStyle_ApplyUnsetValue, (ComputedStyle * __this, StylePropertyReader * reader, ComputedStyle * parentStyle, MethodInfo * method)); +DO_APP_FUNC(0x02F4EC10, void, ComputedStyle_ApplyUnsetValue_1, (ComputedStyle * __this, StylePropertyId__Enum id, ComputedStyle * parentStyle, MethodInfo * method)); +DO_APP_FUNC(0x02F66760, void, ComputedTransitionUtils_UpdateComputedTransitions, (ComputedStyle * computedStyle, MethodInfo * method)); +DO_APP_FUNC(0x02F66810, bool, ComputedTransitionUtils_HasTransitionProperty, (ComputedStyle * computedStyle, StylePropertyId__Enum id, MethodInfo * method)); +DO_APP_FUNC(0x02F668E0, bool, ComputedTransitionUtils_GetTransitionProperty, (ComputedStyle * computedStyle, StylePropertyId__Enum id, ComputedTransitionProperty * result, MethodInfo * method)); +DO_APP_FUNC(0x02F669F0, ComputedTransitionProperty__Array *, ComputedTransitionUtils_GetOrComputeTransitionPropertyData, (ComputedStyle * computedStyle, MethodInfo * method)); +DO_APP_FUNC(0x02F66CD0, int32_t, ComputedTransitionUtils_GetTransitionHashCode, (ComputedStyle * cs, MethodInfo * method)); +DO_APP_FUNC(0x02F67650, bool, ComputedTransitionUtils_SameTransitionProperty, (ComputedStyle * x, ComputedStyle * y, MethodInfo * method)); DO_APP_FUNC(0x02F678F0, bool, ComputedTransitionUtils_SameTransitionProperty_1, (List_1_UnityEngine_UIElements_StylePropertyName_ * a, List_1_UnityEngine_UIElements_StylePropertyName_ * b, MethodInfo * method)); DO_APP_FUNC(0x02F679E0, bool, ComputedTransitionUtils_SameTransitionProperty_2, (List_1_UnityEngine_UIElements_TimeValue_ * a, List_1_UnityEngine_UIElements_TimeValue_ * b, MethodInfo * method)); -DO_APP_FUNC(0x02F67AF0, void, ComputedTransitionUtils_ComputeTransitionPropertyData, (ComputedStyle computedStyle, List_1_UnityEngine_UIElements_ComputedTransitionProperty_ * outData, MethodInfo * method)); +DO_APP_FUNC(0x02F67AF0, void, ComputedTransitionUtils_ComputeTransitionPropertyData, (ComputedStyle * computedStyle, List_1_UnityEngine_UIElements_ComputedTransitionProperty_ * outData, MethodInfo * method)); DO_APP_FUNC(0x02F67F30, int32_t, ComputedTransitionUtils_ConvertTransitionTime, (TimeValue time, MethodInfo * method)); DO_APP_FUNC(0x02F67F60, Func_2_Single_Single_ *, ComputedTransitionUtils_ConvertTransitionFunction, (EasingMode__Enum mode, MethodInfo * method)); DO_APP_FUNC(0x02F692F0, void, ComputedTransitionUtils__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02F69490, void, ComputedTransitionUtils_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ComputedTransitionUtils_c__ctor, (ComputedTransitionUtils_c * __this, MethodInfo * method)); DO_APP_FUNC(0x02F69540, float, ComputedTransitionUtils_c__ConvertTransitionFunction_b__12_0, (ComputedTransitionUtils_c * __this, float t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5F50, ComputedTransitionUtils_c__ConvertTransitionFunction_b__12_0__MethodInfo); DO_APP_FUNC(0x02F69570, float, ComputedTransitionUtils_c__ConvertTransitionFunction_b__12_1, (ComputedTransitionUtils_c * __this, float t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5F70, ComputedTransitionUtils_c__ConvertTransitionFunction_b__12_1__MethodInfo); DO_APP_FUNC(0x02F69580, float, ComputedTransitionUtils_c__ConvertTransitionFunction_b__12_2, (ComputedTransitionUtils_c * __this, float t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5EB0, ComputedTransitionUtils_c__ConvertTransitionFunction_b__12_2__MethodInfo); DO_APP_FUNC(0x02F695A0, float, ComputedTransitionUtils_c__ConvertTransitionFunction_b__12_3, (ComputedTransitionUtils_c * __this, float t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5E98, ComputedTransitionUtils_c__ConvertTransitionFunction_b__12_3__MethodInfo); DO_APP_FUNC(0x02F695F0, float, ComputedTransitionUtils_c__ConvertTransitionFunction_b__12_4, (ComputedTransitionUtils_c * __this, float t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5EA0, ComputedTransitionUtils_c__ConvertTransitionFunction_b__12_4__MethodInfo); DO_APP_FUNC(0x02F69600, float, ComputedTransitionUtils_c__ConvertTransitionFunction_b__12_5, (ComputedTransitionUtils_c * __this, float t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5E88, ComputedTransitionUtils_c__ConvertTransitionFunction_b__12_5__MethodInfo); DO_APP_FUNC(0x02F69630, float, ComputedTransitionUtils_c__ConvertTransitionFunction_b__12_6, (ComputedTransitionUtils_c * __this, float t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5E90, ComputedTransitionUtils_c__ConvertTransitionFunction_b__12_6__MethodInfo); DO_APP_FUNC(0x02F69650, float, ComputedTransitionUtils_c__ConvertTransitionFunction_b__12_7, (ComputedTransitionUtils_c * __this, float t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5EE8, ComputedTransitionUtils_c__ConvertTransitionFunction_b__12_7__MethodInfo); DO_APP_FUNC(0x02F69690, float, ComputedTransitionUtils_c__ConvertTransitionFunction_b__12_8, (ComputedTransitionUtils_c * __this, float t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5EF0, ComputedTransitionUtils_c__ConvertTransitionFunction_b__12_8__MethodInfo); DO_APP_FUNC(0x02F696A0, float, ComputedTransitionUtils_c__ConvertTransitionFunction_b__12_9, (ComputedTransitionUtils_c * __this, float t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5ED8, ComputedTransitionUtils_c__ConvertTransitionFunction_b__12_9__MethodInfo); DO_APP_FUNC(0x02F696D0, float, ComputedTransitionUtils_c__ConvertTransitionFunction_b__12_10, (ComputedTransitionUtils_c * __this, float t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5F58, ComputedTransitionUtils_c__ConvertTransitionFunction_b__12_10__MethodInfo); DO_APP_FUNC(0x02F69730, float, ComputedTransitionUtils_c__ConvertTransitionFunction_b__12_11, (ComputedTransitionUtils_c * __this, float t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5F40, ComputedTransitionUtils_c__ConvertTransitionFunction_b__12_11__MethodInfo); DO_APP_FUNC(0x02F69790, float, ComputedTransitionUtils_c__ConvertTransitionFunction_b__12_12, (ComputedTransitionUtils_c * __this, float t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5F48, ComputedTransitionUtils_c__ConvertTransitionFunction_b__12_12__MethodInfo); DO_APP_FUNC(0x02F697C0, float, ComputedTransitionUtils_c__ConvertTransitionFunction_b__12_13, (ComputedTransitionUtils_c * __this, float t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5F98, ComputedTransitionUtils_c__ConvertTransitionFunction_b__12_13__MethodInfo); DO_APP_FUNC(0x02F69870, float, ComputedTransitionUtils_c__ConvertTransitionFunction_b__12_14, (ComputedTransitionUtils_c * __this, float t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5FA0, ComputedTransitionUtils_c__ConvertTransitionFunction_b__12_14__MethodInfo); DO_APP_FUNC(0x02F69880, float, ComputedTransitionUtils_c__ConvertTransitionFunction_b__12_15, (ComputedTransitionUtils_c * __this, float t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5F88, ComputedTransitionUtils_c__ConvertTransitionFunction_b__12_15__MethodInfo); DO_APP_FUNC(0x02F69890, float, ComputedTransitionUtils_c__ConvertTransitionFunction_b__12_16, (ComputedTransitionUtils_c * __this, float t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5F90, ComputedTransitionUtils_c__ConvertTransitionFunction_b__12_16__MethodInfo); DO_APP_FUNC(0x02F699D0, float, ComputedTransitionUtils_c__ConvertTransitionFunction_b__12_17, (ComputedTransitionUtils_c * __this, float t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5F78, ComputedTransitionUtils_c__ConvertTransitionFunction_b__12_17__MethodInfo); DO_APP_FUNC(0x02F699F0, float, ComputedTransitionUtils_c__ConvertTransitionFunction_b__12_18, (ComputedTransitionUtils_c * __this, float t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5F80, ComputedTransitionUtils_c__ConvertTransitionFunction_b__12_18__MethodInfo); DO_APP_FUNC(0x02F69A20, float, ComputedTransitionUtils_c__ConvertTransitionFunction_b__12_19, (ComputedTransitionUtils_c * __this, float t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5F68, ComputedTransitionUtils_c__ConvertTransitionFunction_b__12_19__MethodInfo); DO_APP_FUNC(0x02F69A90, float, ComputedTransitionUtils_c__ConvertTransitionFunction_b__12_20, (ComputedTransitionUtils_c * __this, float t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5EB8, ComputedTransitionUtils_c__ConvertTransitionFunction_b__12_20__MethodInfo); DO_APP_FUNC(0x02F69AA0, float, ComputedTransitionUtils_c__ConvertTransitionFunction_b__12_21, (ComputedTransitionUtils_c * __this, float t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5EC0, ComputedTransitionUtils_c__ConvertTransitionFunction_b__12_21__MethodInfo); DO_APP_FUNC(0x02F69AB0, float, ComputedTransitionUtils_c__ConvertTransitionFunction_b__12_22, (ComputedTransitionUtils_c * __this, float t, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, EasingMode__Enum, EasingFunction_get_mode, (EasingFunction__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00959BA0, void, EasingFunction__ctor, (EasingFunction__Boxed * __this, EasingMode__Enum mode, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5EA8, ComputedTransitionUtils_c__ConvertTransitionFunction_b__12_22__MethodInfo); +DO_APP_FUNC(0x00A9EFB0, EasingMode__Enum, EasingFunction_get_mode, (EasingFunction * __this, MethodInfo * method)); +DO_APP_FUNC(0x00959BA0, void, EasingFunction__ctor, (EasingFunction * __this, EasingMode__Enum mode, MethodInfo * method)); DO_APP_FUNC(0x02D36410, EasingFunction, EasingFunction_op_Implicit, (EasingMode__Enum easingMode, MethodInfo * method)); DO_APP_FUNC(0x02D31C70, bool, EasingFunction_op_Equality, (EasingFunction lhs, EasingFunction rhs, MethodInfo * method)); -DO_APP_FUNC(0x02F69BD0, bool, EasingFunction_Equals, (EasingFunction__Boxed * __this, EasingFunction other, MethodInfo * method)); -DO_APP_FUNC(0x02F69BE0, bool, EasingFunction_Equals_1, (EasingFunction__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02F69C60, String *, EasingFunction_ToString, (EasingFunction__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B78450, int32_t, EasingFunction_GetHashCode, (EasingFunction__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E5B640, Font *, FontDefinition_get_font, (FontDefinition__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D66790, FontAsset *, FontDefinition_get_fontAsset, (FontDefinition__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F69BD0, bool, EasingFunction_Equals, (EasingFunction * __this, EasingFunction other, MethodInfo * method)); +DO_APP_FUNC(0x02F69BE0, bool, EasingFunction_Equals_1, (EasingFunction * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02F69C60, String *, EasingFunction_ToString, (EasingFunction * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B78450, int32_t, EasingFunction_GetHashCode, (EasingFunction * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E5B640, Font *, FontDefinition_get_font, (FontDefinition * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D66790, FontAsset *, FontDefinition_get_fontAsset, (FontDefinition * __this, MethodInfo * method)); DO_APP_FUNC(0x02F69CC0, FontDefinition, FontDefinition_FromFont, (Font * f, MethodInfo * method)); DO_APP_FUNC(0x02F69D40, FontDefinition, FontDefinition_FromSDFFont, (FontAsset * f, MethodInfo * method)); DO_APP_FUNC(0x02F69DC0, FontDefinition, FontDefinition_FromObject, (Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02F6A0F0, bool, FontDefinition_IsEmpty, (FontDefinition__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F6A2E0, String *, FontDefinition_ToString, (FontDefinition__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F6A440, bool, FontDefinition_Equals, (FontDefinition__Boxed * __this, FontDefinition other, MethodInfo * method)); -DO_APP_FUNC(0x02F6A500, bool, FontDefinition_Equals_1, (FontDefinition__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02F6A5A0, int32_t, FontDefinition_GetHashCode, (FontDefinition__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F6A0F0, bool, FontDefinition_IsEmpty, (FontDefinition * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F6A2E0, String *, FontDefinition_ToString, (FontDefinition * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F6A440, bool, FontDefinition_Equals, (FontDefinition * __this, FontDefinition other, MethodInfo * method)); +DO_APP_FUNC(0x02F6A500, bool, FontDefinition_Equals_1, (FontDefinition * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02F6A5A0, int32_t, FontDefinition_GetHashCode, (FontDefinition * __this, MethodInfo * method)); DO_APP_FUNC(0x02F6A7C0, bool, FontDefinition_op_Equality, (FontDefinition left, FontDefinition right, MethodInfo * method)); DO_APP_FUNC(0x02F6A7E0, bool, FontDefinition_op_Inequality, (FontDefinition left, FontDefinition right, MethodInfo * method)); DO_APP_FUNC(0x02F6A800, StyleLength, StyleValueCollection_GetStyleLength, (StyleValueCollection * __this, StylePropertyId__Enum id, MethodInfo * method)); DO_APP_FUNC(0x02F6A8B0, StyleFloat, StyleValueCollection_GetStyleFloat, (StyleValueCollection * __this, StylePropertyId__Enum id, MethodInfo * method)); DO_APP_FUNC(0x02F6A920, StyleInt, StyleValueCollection_GetStyleInt, (StyleValueCollection * __this, StylePropertyId__Enum id, MethodInfo * method)); -DO_APP_FUNC(0x02F6A980, bool, StyleValueCollection_TryGetStyleValue, (StyleValueCollection * __this, StylePropertyId__Enum id, StyleValue value, MethodInfo * method)); +DO_APP_FUNC(0x02F6A980, bool, StyleValueCollection_TryGetStyleValue, (StyleValueCollection * __this, StylePropertyId__Enum id, StyleValue * value, MethodInfo * method)); DO_APP_FUNC(0x02F6AB20, void, StyleValueCollection_SetStyleValue, (StyleValueCollection * __this, StyleValue value, MethodInfo * method)); DO_APP_FUNC(0x02F6AD30, void, StyleValueCollection__ctor, (StyleValueCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, VisualElement *, InlineStyleAccess_get_ve, (InlineStyleAccess * __this, MethodInfo * method)); @@ -65165,7 +75188,7 @@ DO_APP_FUNC(0x02F6AEB0, void, InlineStyleAccess__ctor, (InlineStyleAccess * __th DO_APP_FUNC(0x02F6AF20, void, InlineStyleAccess_Finalize, (InlineStyleAccess * __this, MethodInfo * method)); DO_APP_FUNC(0x02F6B020, void, InlineStyleAccess_SetInlineRule, (InlineStyleAccess * __this, StyleSheet * sheet, StyleRule * rule, MethodInfo * method)); DO_APP_FUNC(0x02F6B270, bool, InlineStyleAccess_IsValueSet, (InlineStyleAccess * __this, StylePropertyId__Enum id, MethodInfo * method)); -DO_APP_FUNC(0x02F6B620, void, InlineStyleAccess_ApplyInlineStyles, (InlineStyleAccess * __this, ComputedStyle computedStyle, MethodInfo * method)); +DO_APP_FUNC(0x02F6B620, void, InlineStyleAccess_ApplyInlineStyles, (InlineStyleAccess * __this, ComputedStyle * computedStyle, MethodInfo * method)); DO_APP_FUNC(0x02F6C590, StyleCursor, InlineStyleAccess_UnityEngine_UIElements_IStyle_get_cursor, (InlineStyleAccess * __this, MethodInfo * method)); DO_APP_FUNC(0x02F6C6D0, StyleTextShadow, InlineStyleAccess_UnityEngine_UIElements_IStyle_get_textShadow, (InlineStyleAccess * __this, MethodInfo * method)); DO_APP_FUNC(0x02F6C740, StyleTransformOrigin, InlineStyleAccess_UnityEngine_UIElements_IStyle_get_transformOrigin, (InlineStyleAccess * __this, MethodInfo * method)); @@ -65180,13 +75203,13 @@ DO_APP_FUNC(0x02F6CE10, bool, InlineStyleAccess_SetInlineTranslate, (InlineStyle DO_APP_FUNC(0x02F6CF50, void, InlineStyleAccess_ApplyStyleTranslate, (InlineStyleAccess * __this, StyleTranslate translate, MethodInfo * method)); DO_APP_FUNC(0x02F6D320, void, InlineStyleAccess_ApplyStyleValue, (InlineStyleAccess * __this, StyleValue value, MethodInfo * method)); DO_APP_FUNC(0x02F6D600, bool, InlineStyleAccess_RemoveInlineStyle, (InlineStyleAccess * __this, StylePropertyId__Enum id, MethodInfo * method)); -DO_APP_FUNC(0x02F6D750, void, InlineStyleAccess_ApplyFromComputedStyle, (InlineStyleAccess * __this, StylePropertyId__Enum id, ComputedStyle newStyle, MethodInfo * method)); -DO_APP_FUNC(0x02F6D940, bool, InlineStyleAccess_TryGetInlineCursor, (InlineStyleAccess * __this, StyleCursor value, MethodInfo * method)); -DO_APP_FUNC(0x02F6D9B0, bool, InlineStyleAccess_TryGetInlineTextShadow, (InlineStyleAccess * __this, StyleTextShadow value, MethodInfo * method)); -DO_APP_FUNC(0x02F6D9D0, bool, InlineStyleAccess_TryGetInlineTransformOrigin, (InlineStyleAccess * __this, StyleTransformOrigin value, MethodInfo * method)); -DO_APP_FUNC(0x02F6D9F0, bool, InlineStyleAccess_TryGetInlineTranslate, (InlineStyleAccess * __this, StyleTranslate value, MethodInfo * method)); -DO_APP_FUNC(0x02F6DA20, bool, InlineStyleAccess_TryGetInlineRotate, (InlineStyleAccess * __this, StyleRotate value, MethodInfo * method)); -DO_APP_FUNC(0x02F6DA50, bool, InlineStyleAccess_TryGetInlineScale, (InlineStyleAccess * __this, StyleScale value, MethodInfo * method)); +DO_APP_FUNC(0x02F6D750, void, InlineStyleAccess_ApplyFromComputedStyle, (InlineStyleAccess * __this, StylePropertyId__Enum id, ComputedStyle * newStyle, MethodInfo * method)); +DO_APP_FUNC(0x02F6D940, bool, InlineStyleAccess_TryGetInlineCursor, (InlineStyleAccess * __this, StyleCursor * value, MethodInfo * method)); +DO_APP_FUNC(0x02F6D9B0, bool, InlineStyleAccess_TryGetInlineTextShadow, (InlineStyleAccess * __this, StyleTextShadow * value, MethodInfo * method)); +DO_APP_FUNC(0x02F6D9D0, bool, InlineStyleAccess_TryGetInlineTransformOrigin, (InlineStyleAccess * __this, StyleTransformOrigin * value, MethodInfo * method)); +DO_APP_FUNC(0x02F6D9F0, bool, InlineStyleAccess_TryGetInlineTranslate, (InlineStyleAccess * __this, StyleTranslate * value, MethodInfo * method)); +DO_APP_FUNC(0x02F6DA20, bool, InlineStyleAccess_TryGetInlineRotate, (InlineStyleAccess * __this, StyleRotate * value, MethodInfo * method)); +DO_APP_FUNC(0x02F6DA50, bool, InlineStyleAccess_TryGetInlineScale, (InlineStyleAccess * __this, StyleScale * value, MethodInfo * method)); DO_APP_FUNC(0x02F6DA80, void, InlineStyleAccess_UnityEngine_UIElements_IStyle_set_backgroundColor, (InlineStyleAccess * __this, StyleColor value, MethodInfo * method)); DO_APP_FUNC(0x02F6DAF0, void, InlineStyleAccess_UnityEngine_UIElements_IStyle_set_borderBottomColor, (InlineStyleAccess * __this, StyleColor value, MethodInfo * method)); DO_APP_FUNC(0x02F6DB60, void, InlineStyleAccess_UnityEngine_UIElements_IStyle_set_borderBottomLeftRadius, (InlineStyleAccess * __this, StyleLength value, MethodInfo * method)); @@ -65234,229 +75257,229 @@ DO_APP_FUNC(0x02F6F940, void, InlineStyleAccess__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02F6FA10, Length, Length_Percent, (float value, MethodInfo * method)); DO_APP_FUNC(0x02F6FA50, Length, Length_Auto, (MethodInfo * method)); DO_APP_FUNC(0x02F6FA70, Length, Length_None, (MethodInfo * method)); -DO_APP_FUNC(0x00BCBB00, float, Length_get_value, (Length__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F6FA90, void, Length_set_value, (Length__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x00C173E0, LengthUnit__Enum, Length_get_unit, (Length__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F6FAC0, bool, Length_IsAuto, (Length__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F6FAD0, bool, Length_IsNone, (Length__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F6FAE0, void, Length__ctor, (Length__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02F6FB10, void, Length__ctor_1, (Length__Boxed * __this, float value, LengthUnit__Enum unit, MethodInfo * method)); -DO_APP_FUNC(0x02F6FB10, void, Length__ctor_2, (Length__Boxed * __this, float value, Length_Unit__Enum unit, MethodInfo * method)); +DO_APP_FUNC(0x00BCBB00, float, Length_get_value, (Length * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F6FA90, void, Length_set_value, (Length * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x00C173E0, LengthUnit__Enum, Length_get_unit, (Length * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F6FAC0, bool, Length_IsAuto, (Length * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F6FAD0, bool, Length_IsNone, (Length * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F6FAE0, void, Length__ctor, (Length * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02F6FB10, void, Length__ctor_1, (Length * __this, float value, LengthUnit__Enum unit, MethodInfo * method)); +DO_APP_FUNC(0x02F6FB10, void, Length__ctor_2, (Length * __this, float value, Length_Unit__Enum unit, MethodInfo * method)); DO_APP_FUNC(0x02F6FB40, Length, Length_op_Implicit, (float value, MethodInfo * method)); DO_APP_FUNC(0x02F64750, bool, Length_op_Equality, (Length lhs, Length rhs, MethodInfo * method)); DO_APP_FUNC(0x02F6FB80, bool, Length_op_Inequality, (Length lhs, Length rhs, MethodInfo * method)); -DO_APP_FUNC(0x02F64780, bool, Length_Equals, (Length__Boxed * __this, Length other, MethodInfo * method)); -DO_APP_FUNC(0x02F6FBB0, bool, Length_Equals_1, (Length__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02F64860, int32_t, Length_GetHashCode, (Length__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F6FC60, String *, Length_ToString, (Length__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F6FE50, void, Rotate_1__ctor, (Rotate_1__Boxed * __this, Angle_2 angle, MethodInfo * method)); +DO_APP_FUNC(0x02F64780, bool, Length_Equals, (Length * __this, Length other, MethodInfo * method)); +DO_APP_FUNC(0x02F6FBB0, bool, Length_Equals_1, (Length * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02F64860, int32_t, Length_GetHashCode, (Length * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F6FC60, String *, Length_ToString, (Length * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F6FE50, void, Rotate_1__ctor, (Rotate_1 * __this, Angle_2 angle, MethodInfo * method)); DO_APP_FUNC(0x02F6FEB0, Rotate_1, Rotate_1_Initial, (MethodInfo * method)); DO_APP_FUNC(0x02F6FF40, Rotate_1, Rotate_1_None, (MethodInfo * method)); -DO_APP_FUNC(0x00471910, Angle_2, Rotate_1_get_angle, (Rotate_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9A2A0, void, Rotate_1_set_angle, (Rotate_1__Boxed * __this, Angle_2 value, MethodInfo * method)); -DO_APP_FUNC(0x00958320, Vector3, Rotate_1_get_axis, (Rotate_1__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Angle_2, Rotate_1_get_angle, (Rotate_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9A2A0, void, Rotate_1_set_angle, (Rotate_1 * __this, Angle_2 value, MethodInfo * method)); +DO_APP_FUNC(0x00958320, Vector3, Rotate_1_get_axis, (Rotate_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02F6FFE0, bool, Rotate_1_op_Equality, (Rotate_1 lhs, Rotate_1 rhs, MethodInfo * method)); DO_APP_FUNC(0x02F700E0, bool, Rotate_1_op_Inequality, (Rotate_1 lhs, Rotate_1 rhs, MethodInfo * method)); -DO_APP_FUNC(0x02F70130, bool, Rotate_1_Equals, (Rotate_1__Boxed * __this, Rotate_1 other, MethodInfo * method)); -DO_APP_FUNC(0x02F70180, bool, Rotate_1_Equals_1, (Rotate_1__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02F70240, int32_t, Rotate_1_GetHashCode, (Rotate_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F70320, String *, Rotate_1_ToString, (Rotate_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F70390, Quaternion, Rotate_1_ToQuaternion, (Rotate_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F70480, void, Scale__ctor, (Scale__Boxed * __this, Vector3 scale, MethodInfo * method)); +DO_APP_FUNC(0x02F70130, bool, Rotate_1_Equals, (Rotate_1 * __this, Rotate_1 other, MethodInfo * method)); +DO_APP_FUNC(0x02F70180, bool, Rotate_1_Equals_1, (Rotate_1 * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02F70240, int32_t, Rotate_1_GetHashCode, (Rotate_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F70320, String *, Rotate_1_ToString, (Rotate_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F70390, Quaternion, Rotate_1_ToQuaternion, (Rotate_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F70480, void, Scale__ctor, (Scale * __this, Vector3 scale, MethodInfo * method)); DO_APP_FUNC(0x02F704B0, Scale, Scale_Initial, (MethodInfo * method)); DO_APP_FUNC(0x02F70530, Scale, Scale_None, (MethodInfo * method)); -DO_APP_FUNC(0x0171B0F0, Vector3, Scale_get_value, (Scale__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171B0F0, Vector3, Scale_get_value, (Scale * __this, MethodInfo * method)); DO_APP_FUNC(0x02F705D0, bool, Scale_op_Equality, (Scale lhs, Scale rhs, MethodInfo * method)); DO_APP_FUNC(0x02F70630, bool, Scale_op_Inequality, (Scale lhs, Scale rhs, MethodInfo * method)); -DO_APP_FUNC(0x02F70680, bool, Scale_Equals, (Scale__Boxed * __this, Scale other, MethodInfo * method)); -DO_APP_FUNC(0x02F706D0, bool, Scale_Equals_1, (Scale__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02F707A0, int32_t, Scale_GetHashCode, (Scale__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D2BC10, String *, Scale_ToString, (Scale__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F70800, Color, StyleColor_get_value, (StyleColor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01E8EBD0, StyleKeyword__Enum, StyleColor_get_keyword, (StyleColor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01AC8430, void, StyleColor__ctor, (StyleColor__Boxed * __this, Color v, MethodInfo * method)); -DO_APP_FUNC(0x0171AFD0, void, StyleColor__ctor_1, (StyleColor__Boxed * __this, Color v, StyleKeyword__Enum keyword, MethodInfo * method)); +DO_APP_FUNC(0x02F70680, bool, Scale_Equals, (Scale * __this, Scale other, MethodInfo * method)); +DO_APP_FUNC(0x02F706D0, bool, Scale_Equals_1, (Scale * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02F707A0, int32_t, Scale_GetHashCode, (Scale * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D2BC10, String *, Scale_ToString, (Scale * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F70800, Color, StyleColor_get_value, (StyleColor * __this, MethodInfo * method)); +DO_APP_FUNC(0x01E8EBD0, StyleKeyword__Enum, StyleColor_get_keyword, (StyleColor * __this, MethodInfo * method)); +DO_APP_FUNC(0x01AC8430, void, StyleColor__ctor, (StyleColor * __this, Color v, MethodInfo * method)); +DO_APP_FUNC(0x0171AFD0, void, StyleColor__ctor_1, (StyleColor * __this, Color v, StyleKeyword__Enum keyword, MethodInfo * method)); DO_APP_FUNC(0x02F70820, bool, StyleColor_op_Equality, (StyleColor lhs, StyleColor rhs, MethodInfo * method)); DO_APP_FUNC(0x02F708A0, StyleColor, StyleColor_op_Implicit, (Color v, MethodInfo * method)); -DO_APP_FUNC(0x02F708C0, bool, StyleColor_Equals, (StyleColor__Boxed * __this, StyleColor other, MethodInfo * method)); -DO_APP_FUNC(0x02F70940, bool, StyleColor_Equals_1, (StyleColor__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02F70A30, int32_t, StyleColor_GetHashCode, (StyleColor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F70A50, String *, StyleColor_ToString, (StyleColor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F70AC0, Cursor, StyleCursor_get_value, (StyleCursor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x011227E0, StyleKeyword__Enum, StyleCursor_get_keyword, (StyleCursor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F70B10, void, StyleCursor__ctor, (StyleCursor__Boxed * __this, StyleKeyword__Enum keyword, MethodInfo * method)); -DO_APP_FUNC(0x02F70B90, void, StyleCursor__ctor_1, (StyleCursor__Boxed * __this, Cursor v, StyleKeyword__Enum keyword, MethodInfo * method)); +DO_APP_FUNC(0x02F708C0, bool, StyleColor_Equals, (StyleColor * __this, StyleColor other, MethodInfo * method)); +DO_APP_FUNC(0x02F70940, bool, StyleColor_Equals_1, (StyleColor * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02F70A30, int32_t, StyleColor_GetHashCode, (StyleColor * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F70A50, String *, StyleColor_ToString, (StyleColor * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F70AC0, Cursor, StyleCursor_get_value, (StyleCursor * __this, MethodInfo * method)); +DO_APP_FUNC(0x011227E0, StyleKeyword__Enum, StyleCursor_get_keyword, (StyleCursor * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F70B10, void, StyleCursor__ctor, (StyleCursor * __this, StyleKeyword__Enum keyword, MethodInfo * method)); +DO_APP_FUNC(0x02F70B90, void, StyleCursor__ctor_1, (StyleCursor * __this, Cursor v, StyleKeyword__Enum keyword, MethodInfo * method)); DO_APP_FUNC(0x02F70C00, bool, StyleCursor_op_Equality, (StyleCursor lhs, StyleCursor rhs, MethodInfo * method)); DO_APP_FUNC(0x02F70D00, StyleCursor, StyleCursor_op_Implicit, (StyleKeyword__Enum keyword, MethodInfo * method)); -DO_APP_FUNC(0x02F70DA0, bool, StyleCursor_Equals, (StyleCursor__Boxed * __this, StyleCursor other, MethodInfo * method)); -DO_APP_FUNC(0x02F70EA0, bool, StyleCursor_Equals_1, (StyleCursor__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02F70F40, int32_t, StyleCursor_GetHashCode, (StyleCursor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F70F60, String *, StyleCursor_ToString, (StyleCursor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F70FE0, float, StyleFloat_get_value, (StyleFloat__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C4B40, StyleKeyword__Enum, StyleFloat_get_keyword, (StyleFloat__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F70FF0, void, StyleFloat__ctor, (StyleFloat__Boxed * __this, float v, MethodInfo * method)); -DO_APP_FUNC(0x02F71000, void, StyleFloat__ctor_1, (StyleFloat__Boxed * __this, StyleKeyword__Enum keyword, MethodInfo * method)); -DO_APP_FUNC(0x01314630, void, StyleFloat__ctor_2, (StyleFloat__Boxed * __this, float v, StyleKeyword__Enum keyword, MethodInfo * method)); +DO_APP_FUNC(0x02F70DA0, bool, StyleCursor_Equals, (StyleCursor * __this, StyleCursor other, MethodInfo * method)); +DO_APP_FUNC(0x02F70EA0, bool, StyleCursor_Equals_1, (StyleCursor * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02F70F40, int32_t, StyleCursor_GetHashCode, (StyleCursor * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F70F60, String *, StyleCursor_ToString, (StyleCursor * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F70FE0, float, StyleFloat_get_value, (StyleFloat * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C4B40, StyleKeyword__Enum, StyleFloat_get_keyword, (StyleFloat * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F70FF0, void, StyleFloat__ctor, (StyleFloat * __this, float v, MethodInfo * method)); +DO_APP_FUNC(0x02F71000, void, StyleFloat__ctor_1, (StyleFloat * __this, StyleKeyword__Enum keyword, MethodInfo * method)); +DO_APP_FUNC(0x01314630, void, StyleFloat__ctor_2, (StyleFloat * __this, float v, StyleKeyword__Enum keyword, MethodInfo * method)); DO_APP_FUNC(0x02F71010, bool, StyleFloat_op_Equality, (StyleFloat lhs, StyleFloat rhs, MethodInfo * method)); DO_APP_FUNC(0x02F71040, StyleFloat, StyleFloat_op_Implicit, (StyleKeyword__Enum keyword, MethodInfo * method)); DO_APP_FUNC(0x02F64730, StyleFloat, StyleFloat_op_Implicit_1, (float v, MethodInfo * method)); -DO_APP_FUNC(0x02F71060, bool, StyleFloat_Equals, (StyleFloat__Boxed * __this, StyleFloat other, MethodInfo * method)); -DO_APP_FUNC(0x02F71090, bool, StyleFloat_Equals_1, (StyleFloat__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02F64860, int32_t, StyleFloat_GetHashCode, (StyleFloat__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F71140, String *, StyleFloat_ToString, (StyleFloat__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C4B30, int32_t, StyleInt_get_value, (StyleInt__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C4B40, StyleKeyword__Enum, StyleInt_get_keyword, (StyleInt__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F71000, void, StyleInt__ctor, (StyleInt__Boxed * __this, StyleKeyword__Enum keyword, MethodInfo * method)); -DO_APP_FUNC(0x00A9A2B0, void, StyleInt__ctor_1, (StyleInt__Boxed * __this, int32_t v, StyleKeyword__Enum keyword, MethodInfo * method)); +DO_APP_FUNC(0x02F71060, bool, StyleFloat_Equals, (StyleFloat * __this, StyleFloat other, MethodInfo * method)); +DO_APP_FUNC(0x02F71090, bool, StyleFloat_Equals_1, (StyleFloat * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02F64860, int32_t, StyleFloat_GetHashCode, (StyleFloat * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F71140, String *, StyleFloat_ToString, (StyleFloat * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C4B30, int32_t, StyleInt_get_value, (StyleInt * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C4B40, StyleKeyword__Enum, StyleInt_get_keyword, (StyleInt * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F71000, void, StyleInt__ctor, (StyleInt * __this, StyleKeyword__Enum keyword, MethodInfo * method)); +DO_APP_FUNC(0x00A9A2B0, void, StyleInt__ctor_1, (StyleInt * __this, int32_t v, StyleKeyword__Enum keyword, MethodInfo * method)); DO_APP_FUNC(0x02F711B0, bool, StyleInt_op_Equality, (StyleInt lhs, StyleInt rhs, MethodInfo * method)); DO_APP_FUNC(0x02F71040, StyleInt, StyleInt_op_Implicit, (StyleKeyword__Enum keyword, MethodInfo * method)); -DO_APP_FUNC(0x02F711D0, bool, StyleInt_Equals, (StyleInt__Boxed * __this, StyleInt other, MethodInfo * method)); -DO_APP_FUNC(0x02F71200, bool, StyleInt_Equals_1, (StyleInt__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02D62AA0, int32_t, StyleInt_GetHashCode, (StyleInt__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F712A0, String *, StyleInt_ToString, (StyleInt__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F71310, Length, StyleLength_get_value, (StyleLength__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01809D80, StyleKeyword__Enum, StyleLength_get_keyword, (StyleLength__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F71320, void, StyleLength__ctor, (StyleLength__Boxed * __this, float v, MethodInfo * method)); -DO_APP_FUNC(0x02F71380, void, StyleLength__ctor_1, (StyleLength__Boxed * __this, StyleKeyword__Enum keyword, MethodInfo * method)); -DO_APP_FUNC(0x02F71390, void, StyleLength__ctor_2, (StyleLength__Boxed * __this, Length v, StyleKeyword__Enum keyword, MethodInfo * method)); +DO_APP_FUNC(0x02F711D0, bool, StyleInt_Equals, (StyleInt * __this, StyleInt other, MethodInfo * method)); +DO_APP_FUNC(0x02F71200, bool, StyleInt_Equals_1, (StyleInt * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02D62AA0, int32_t, StyleInt_GetHashCode, (StyleInt * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F712A0, String *, StyleInt_ToString, (StyleInt * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F71310, Length, StyleLength_get_value, (StyleLength * __this, MethodInfo * method)); +DO_APP_FUNC(0x01809D80, StyleKeyword__Enum, StyleLength_get_keyword, (StyleLength * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F71320, void, StyleLength__ctor, (StyleLength * __this, float v, MethodInfo * method)); +DO_APP_FUNC(0x02F71380, void, StyleLength__ctor_1, (StyleLength * __this, StyleKeyword__Enum keyword, MethodInfo * method)); +DO_APP_FUNC(0x02F71390, void, StyleLength__ctor_2, (StyleLength * __this, Length v, StyleKeyword__Enum keyword, MethodInfo * method)); DO_APP_FUNC(0x02F713C0, bool, StyleLength_op_Equality, (StyleLength lhs, StyleLength rhs, MethodInfo * method)); DO_APP_FUNC(0x02F71400, StyleLength, StyleLength_op_Implicit, (StyleKeyword__Enum keyword, MethodInfo * method)); DO_APP_FUNC(0x02F71420, StyleLength, StyleLength_op_Implicit_1, (float v, MethodInfo * method)); -DO_APP_FUNC(0x02F714B0, bool, StyleLength_Equals, (StyleLength__Boxed * __this, StyleLength other, MethodInfo * method)); -DO_APP_FUNC(0x02F71520, bool, StyleLength_Equals_1, (StyleLength__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02F71600, int32_t, StyleLength_GetHashCode, (StyleLength__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F71630, String *, StyleLength_ToString, (StyleLength__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F70AC0, Rotate_1, StyleRotate_get_value, (StyleRotate__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x011227E0, StyleKeyword__Enum, StyleRotate_get_keyword, (StyleRotate__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F716B0, void, StyleRotate__ctor, (StyleRotate__Boxed * __this, StyleKeyword__Enum keyword, MethodInfo * method)); -DO_APP_FUNC(0x02F716E0, void, StyleRotate__ctor_1, (StyleRotate__Boxed * __this, Rotate_1 v, StyleKeyword__Enum keyword, MethodInfo * method)); +DO_APP_FUNC(0x02F714B0, bool, StyleLength_Equals, (StyleLength * __this, StyleLength other, MethodInfo * method)); +DO_APP_FUNC(0x02F71520, bool, StyleLength_Equals_1, (StyleLength * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02F71600, int32_t, StyleLength_GetHashCode, (StyleLength * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F71630, String *, StyleLength_ToString, (StyleLength * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F70AC0, Rotate_1, StyleRotate_get_value, (StyleRotate * __this, MethodInfo * method)); +DO_APP_FUNC(0x011227E0, StyleKeyword__Enum, StyleRotate_get_keyword, (StyleRotate * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F716B0, void, StyleRotate__ctor, (StyleRotate * __this, StyleKeyword__Enum keyword, MethodInfo * method)); +DO_APP_FUNC(0x02F716E0, void, StyleRotate__ctor_1, (StyleRotate * __this, Rotate_1 v, StyleKeyword__Enum keyword, MethodInfo * method)); DO_APP_FUNC(0x02F71700, bool, StyleRotate_op_Equality, (StyleRotate lhs, StyleRotate rhs, MethodInfo * method)); DO_APP_FUNC(0x02F71780, StyleRotate, StyleRotate_op_Implicit, (StyleKeyword__Enum keyword, MethodInfo * method)); -DO_APP_FUNC(0x02F717B0, bool, StyleRotate_Equals, (StyleRotate__Boxed * __this, StyleRotate other, MethodInfo * method)); -DO_APP_FUNC(0x02F71830, bool, StyleRotate_Equals_1, (StyleRotate__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02F71930, int32_t, StyleRotate_GetHashCode, (StyleRotate__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F71950, String *, StyleRotate_ToString, (StyleRotate__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F70800, Scale, StyleScale_get_value, (StyleScale__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01E8EBD0, StyleKeyword__Enum, StyleScale_get_keyword, (StyleScale__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F719D0, void, StyleScale__ctor, (StyleScale__Boxed * __this, StyleKeyword__Enum keyword, MethodInfo * method)); -DO_APP_FUNC(0x0171AFD0, void, StyleScale__ctor_1, (StyleScale__Boxed * __this, Scale v, StyleKeyword__Enum keyword, MethodInfo * method)); +DO_APP_FUNC(0x02F717B0, bool, StyleRotate_Equals, (StyleRotate * __this, StyleRotate other, MethodInfo * method)); +DO_APP_FUNC(0x02F71830, bool, StyleRotate_Equals_1, (StyleRotate * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02F71930, int32_t, StyleRotate_GetHashCode, (StyleRotate * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F71950, String *, StyleRotate_ToString, (StyleRotate * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F70800, Scale, StyleScale_get_value, (StyleScale * __this, MethodInfo * method)); +DO_APP_FUNC(0x01E8EBD0, StyleKeyword__Enum, StyleScale_get_keyword, (StyleScale * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F719D0, void, StyleScale__ctor, (StyleScale * __this, StyleKeyword__Enum keyword, MethodInfo * method)); +DO_APP_FUNC(0x0171AFD0, void, StyleScale__ctor_1, (StyleScale * __this, Scale v, StyleKeyword__Enum keyword, MethodInfo * method)); DO_APP_FUNC(0x02F719E0, bool, StyleScale_op_Equality, (StyleScale lhs, StyleScale rhs, MethodInfo * method)); DO_APP_FUNC(0x02F71A50, StyleScale, StyleScale_op_Implicit, (StyleKeyword__Enum keyword, MethodInfo * method)); -DO_APP_FUNC(0x02F71A60, bool, StyleScale_Equals, (StyleScale__Boxed * __this, StyleScale other, MethodInfo * method)); -DO_APP_FUNC(0x02F71AD0, bool, StyleScale_Equals_1, (StyleScale__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02F71BA0, int32_t, StyleScale_GetHashCode, (StyleScale__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F71C00, String *, StyleScale_ToString, (StyleScale__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F70AC0, Translate_1, StyleTranslate_get_value, (StyleTranslate__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x011227E0, StyleKeyword__Enum, StyleTranslate_get_keyword, (StyleTranslate__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F71C70, void, StyleTranslate__ctor, (StyleTranslate__Boxed * __this, Translate_1 v, MethodInfo * method)); -DO_APP_FUNC(0x02F716B0, void, StyleTranslate__ctor_1, (StyleTranslate__Boxed * __this, StyleKeyword__Enum keyword, MethodInfo * method)); -DO_APP_FUNC(0x02F716E0, void, StyleTranslate__ctor_2, (StyleTranslate__Boxed * __this, Translate_1 v, StyleKeyword__Enum keyword, MethodInfo * method)); +DO_APP_FUNC(0x02F71A60, bool, StyleScale_Equals, (StyleScale * __this, StyleScale other, MethodInfo * method)); +DO_APP_FUNC(0x02F71AD0, bool, StyleScale_Equals_1, (StyleScale * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02F71BA0, int32_t, StyleScale_GetHashCode, (StyleScale * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F71C00, String *, StyleScale_ToString, (StyleScale * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F70AC0, Translate_1, StyleTranslate_get_value, (StyleTranslate * __this, MethodInfo * method)); +DO_APP_FUNC(0x011227E0, StyleKeyword__Enum, StyleTranslate_get_keyword, (StyleTranslate * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F71C70, void, StyleTranslate__ctor, (StyleTranslate * __this, Translate_1 v, MethodInfo * method)); +DO_APP_FUNC(0x02F716B0, void, StyleTranslate__ctor_1, (StyleTranslate * __this, StyleKeyword__Enum keyword, MethodInfo * method)); +DO_APP_FUNC(0x02F716E0, void, StyleTranslate__ctor_2, (StyleTranslate * __this, Translate_1 v, StyleKeyword__Enum keyword, MethodInfo * method)); DO_APP_FUNC(0x02F71C90, bool, StyleTranslate_op_Equality, (StyleTranslate lhs, StyleTranslate rhs, MethodInfo * method)); DO_APP_FUNC(0x02F71780, StyleTranslate, StyleTranslate_op_Implicit, (StyleKeyword__Enum keyword, MethodInfo * method)); DO_APP_FUNC(0x02F71D10, StyleTranslate, StyleTranslate_op_Implicit_1, (Translate_1 v, MethodInfo * method)); -DO_APP_FUNC(0x02F71D40, bool, StyleTranslate_Equals, (StyleTranslate__Boxed * __this, StyleTranslate other, MethodInfo * method)); -DO_APP_FUNC(0x02F71DC0, bool, StyleTranslate_Equals_1, (StyleTranslate__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02F71EC0, int32_t, StyleTranslate_GetHashCode, (StyleTranslate__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F71EE0, String *, StyleTranslate_ToString, (StyleTranslate__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F71F60, TextShadow, StyleTextShadow_get_value, (StyleTextShadow__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B78450, StyleKeyword__Enum, StyleTextShadow_get_keyword, (StyleTextShadow__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F71FB0, void, StyleTextShadow__ctor, (StyleTextShadow__Boxed * __this, StyleKeyword__Enum keyword, MethodInfo * method)); -DO_APP_FUNC(0x02F71FE0, void, StyleTextShadow__ctor_1, (StyleTextShadow__Boxed * __this, TextShadow v, StyleKeyword__Enum keyword, MethodInfo * method)); +DO_APP_FUNC(0x02F71D40, bool, StyleTranslate_Equals, (StyleTranslate * __this, StyleTranslate other, MethodInfo * method)); +DO_APP_FUNC(0x02F71DC0, bool, StyleTranslate_Equals_1, (StyleTranslate * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02F71EC0, int32_t, StyleTranslate_GetHashCode, (StyleTranslate * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F71EE0, String *, StyleTranslate_ToString, (StyleTranslate * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F71F60, TextShadow, StyleTextShadow_get_value, (StyleTextShadow * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B78450, StyleKeyword__Enum, StyleTextShadow_get_keyword, (StyleTextShadow * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F71FB0, void, StyleTextShadow__ctor, (StyleTextShadow * __this, StyleKeyword__Enum keyword, MethodInfo * method)); +DO_APP_FUNC(0x02F71FE0, void, StyleTextShadow__ctor_1, (StyleTextShadow * __this, TextShadow v, StyleKeyword__Enum keyword, MethodInfo * method)); DO_APP_FUNC(0x02F72000, bool, StyleTextShadow_op_Equality, (StyleTextShadow lhs, StyleTextShadow rhs, MethodInfo * method)); DO_APP_FUNC(0x02F72100, StyleTextShadow, StyleTextShadow_op_Implicit, (StyleKeyword__Enum keyword, MethodInfo * method)); -DO_APP_FUNC(0x02F72140, bool, StyleTextShadow_Equals, (StyleTextShadow__Boxed * __this, StyleTextShadow other, MethodInfo * method)); -DO_APP_FUNC(0x02F72180, bool, StyleTextShadow_Equals_1, (StyleTextShadow__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02F72230, int32_t, StyleTextShadow_GetHashCode, (StyleTextShadow__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F722C0, String *, StyleTextShadow_ToString, (StyleTextShadow__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F72340, TransformOrigin, StyleTransformOrigin_get_value, (StyleTransformOrigin__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B290, StyleKeyword__Enum, StyleTransformOrigin_get_keyword, (StyleTransformOrigin__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F72370, void, StyleTransformOrigin__ctor, (StyleTransformOrigin__Boxed * __this, StyleKeyword__Enum keyword, MethodInfo * method)); -DO_APP_FUNC(0x02F72380, void, StyleTransformOrigin__ctor_1, (StyleTransformOrigin__Boxed * __this, TransformOrigin v, StyleKeyword__Enum keyword, MethodInfo * method)); +DO_APP_FUNC(0x02F72140, bool, StyleTextShadow_Equals, (StyleTextShadow * __this, StyleTextShadow other, MethodInfo * method)); +DO_APP_FUNC(0x02F72180, bool, StyleTextShadow_Equals_1, (StyleTextShadow * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02F72230, int32_t, StyleTextShadow_GetHashCode, (StyleTextShadow * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F722C0, String *, StyleTextShadow_ToString, (StyleTextShadow * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F72340, TransformOrigin, StyleTransformOrigin_get_value, (StyleTransformOrigin * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143B290, StyleKeyword__Enum, StyleTransformOrigin_get_keyword, (StyleTransformOrigin * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F72370, void, StyleTransformOrigin__ctor, (StyleTransformOrigin * __this, StyleKeyword__Enum keyword, MethodInfo * method)); +DO_APP_FUNC(0x02F72380, void, StyleTransformOrigin__ctor_1, (StyleTransformOrigin * __this, TransformOrigin v, StyleKeyword__Enum keyword, MethodInfo * method)); DO_APP_FUNC(0x02F723A0, bool, StyleTransformOrigin_op_Equality, (StyleTransformOrigin lhs, StyleTransformOrigin rhs, MethodInfo * method)); DO_APP_FUNC(0x02F72490, StyleTransformOrigin, StyleTransformOrigin_op_Implicit, (StyleKeyword__Enum keyword, MethodInfo * method)); -DO_APP_FUNC(0x02F724C0, bool, StyleTransformOrigin_Equals, (StyleTransformOrigin__Boxed * __this, StyleTransformOrigin other, MethodInfo * method)); -DO_APP_FUNC(0x02F725B0, bool, StyleTransformOrigin_Equals_1, (StyleTransformOrigin__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02F72650, int32_t, StyleTransformOrigin_GetHashCode, (StyleTransformOrigin__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F72670, String *, StyleTransformOrigin_ToString, (StyleTransformOrigin__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F724C0, bool, StyleTransformOrigin_Equals, (StyleTransformOrigin * __this, StyleTransformOrigin other, MethodInfo * method)); +DO_APP_FUNC(0x02F725B0, bool, StyleTransformOrigin_Equals_1, (StyleTransformOrigin * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02F72650, int32_t, StyleTransformOrigin_GetHashCode, (StyleTransformOrigin * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F72670, String *, StyleTransformOrigin_ToString, (StyleTransformOrigin * __this, MethodInfo * method)); DO_APP_FUNC(0x02F726F0, YogaValue, StyleValueExtensions_ToYogaValue, (Length length, MethodInfo * method)); DO_APP_FUNC(0x02F72870, Length, StyleValueExtensions_ToLength, (StyleKeyword__Enum keyword, MethodInfo * method)); DO_APP_FUNC(0x02F72970, Rotate_1, StyleValueExtensions_ToRotate, (StyleKeyword__Enum keyword, MethodInfo * method)); DO_APP_FUNC(0x02F72AF0, Scale, StyleValueExtensions_ToScale, (StyleKeyword__Enum keyword, MethodInfo * method)); DO_APP_FUNC(0x02F72C70, Translate_1, StyleValueExtensions_ToTranslate, (StyleKeyword__Enum keyword, MethodInfo * method)); DO_APP_FUNC(0x02F72D90, Length, StyleValueExtensions_ToLength_1, (StyleLength styleLength, MethodInfo * method)); -DO_APP_FUNC(0x00BCBB00, float, TimeValue_get_value, (TimeValue__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C173E0, TimeUnit__Enum, TimeValue_get_unit, (TimeValue__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F70FF0, void, TimeValue__ctor, (TimeValue__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x01314630, void, TimeValue__ctor_1, (TimeValue__Boxed * __this, float value, TimeUnit__Enum unit, MethodInfo * method)); +DO_APP_FUNC(0x00BCBB00, float, TimeValue_get_value, (TimeValue * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C173E0, TimeUnit__Enum, TimeValue_get_unit, (TimeValue * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F70FF0, void, TimeValue__ctor, (TimeValue * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x01314630, void, TimeValue__ctor_1, (TimeValue * __this, float value, TimeUnit__Enum unit, MethodInfo * method)); DO_APP_FUNC(0x02F64730, TimeValue, TimeValue_op_Implicit, (float value, MethodInfo * method)); DO_APP_FUNC(0x02F64750, bool, TimeValue_op_Equality, (TimeValue lhs, TimeValue rhs, MethodInfo * method)); DO_APP_FUNC(0x02F6FB80, bool, TimeValue_op_Inequality, (TimeValue lhs, TimeValue rhs, MethodInfo * method)); -DO_APP_FUNC(0x02F64780, bool, TimeValue_Equals, (TimeValue__Boxed * __this, TimeValue other, MethodInfo * method)); -DO_APP_FUNC(0x02F72DD0, bool, TimeValue_Equals_1, (TimeValue__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02F64860, int32_t, TimeValue_GetHashCode, (TimeValue__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F72E80, String *, TimeValue_ToString, (TimeValue__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F73010, void, TransformOrigin__ctor, (TransformOrigin__Boxed * __this, Length x, Length y, float z, MethodInfo * method)); +DO_APP_FUNC(0x02F64780, bool, TimeValue_Equals, (TimeValue * __this, TimeValue other, MethodInfo * method)); +DO_APP_FUNC(0x02F72DD0, bool, TimeValue_Equals_1, (TimeValue * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02F64860, int32_t, TimeValue_GetHashCode, (TimeValue * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F72E80, String *, TimeValue_ToString, (TimeValue * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F73010, void, TransformOrigin__ctor, (TransformOrigin * __this, Length x, Length y, float z, MethodInfo * method)); DO_APP_FUNC(0x02F73020, TransformOrigin, TransformOrigin_Initial, (MethodInfo * method)); -DO_APP_FUNC(0x00471910, Length, TransformOrigin_get_x, (TransformOrigin__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9A2A0, void, TransformOrigin_set_x, (TransformOrigin__Boxed * __this, Length value, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, Length, TransformOrigin_get_y, (TransformOrigin__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01ED3330, void, TransformOrigin_set_y, (TransformOrigin__Boxed * __this, Length value, MethodInfo * method)); -DO_APP_FUNC(0x003BC3C0, float, TransformOrigin_get_z, (TransformOrigin__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Length, TransformOrigin_get_x, (TransformOrigin * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9A2A0, void, TransformOrigin_set_x, (TransformOrigin * __this, Length value, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, Length, TransformOrigin_get_y, (TransformOrigin * __this, MethodInfo * method)); +DO_APP_FUNC(0x01ED3330, void, TransformOrigin_set_y, (TransformOrigin * __this, Length value, MethodInfo * method)); +DO_APP_FUNC(0x003BC3C0, float, TransformOrigin_get_z, (TransformOrigin * __this, MethodInfo * method)); DO_APP_FUNC(0x02EC4BC0, bool, TransformOrigin_op_Equality, (TransformOrigin lhs, TransformOrigin rhs, MethodInfo * method)); DO_APP_FUNC(0x02F73090, bool, TransformOrigin_op_Inequality, (TransformOrigin lhs, TransformOrigin rhs, MethodInfo * method)); -DO_APP_FUNC(0x02F73140, bool, TransformOrigin_Equals, (TransformOrigin__Boxed * __this, TransformOrigin other, MethodInfo * method)); -DO_APP_FUNC(0x02F731E0, bool, TransformOrigin_Equals_1, (TransformOrigin__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02F73280, int32_t, TransformOrigin_GetHashCode, (TransformOrigin__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F73300, String *, TransformOrigin_ToString, (TransformOrigin__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F73590, void, Translate_1__ctor, (Translate_1__Boxed * __this, Length x, Length y, float z, MethodInfo * method)); +DO_APP_FUNC(0x02F73140, bool, TransformOrigin_Equals, (TransformOrigin * __this, TransformOrigin other, MethodInfo * method)); +DO_APP_FUNC(0x02F731E0, bool, TransformOrigin_Equals_1, (TransformOrigin * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02F73280, int32_t, TransformOrigin_GetHashCode, (TransformOrigin * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F73300, String *, TransformOrigin_ToString, (TransformOrigin * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F73590, void, Translate_1__ctor, (Translate_1 * __this, Length x, Length y, float z, MethodInfo * method)); DO_APP_FUNC(0x02F735B0, Translate_1, Translate_1_None, (MethodInfo * method)); -DO_APP_FUNC(0x00471910, Length, Translate_1_get_x, (Translate_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9A2A0, void, Translate_1_set_x, (Translate_1__Boxed * __this, Length value, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, Length, Translate_1_get_y, (Translate_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01ED3330, void, Translate_1_set_y, (Translate_1__Boxed * __this, Length value, MethodInfo * method)); -DO_APP_FUNC(0x003BC3C0, float, Translate_1_get_z, (Translate_1__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Length, Translate_1_get_x, (Translate_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9A2A0, void, Translate_1_set_x, (Translate_1 * __this, Length value, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, Length, Translate_1_get_y, (Translate_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01ED3330, void, Translate_1_set_y, (Translate_1 * __this, Length value, MethodInfo * method)); +DO_APP_FUNC(0x003BC3C0, float, Translate_1_get_z, (Translate_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02F735E0, bool, Translate_1_op_Equality, (Translate_1 lhs, Translate_1 rhs, MethodInfo * method)); DO_APP_FUNC(0x02F736F0, bool, Translate_1_op_Inequality, (Translate_1 lhs, Translate_1 rhs, MethodInfo * method)); -DO_APP_FUNC(0x02F73740, bool, Translate_1_Equals, (Translate_1__Boxed * __this, Translate_1 other, MethodInfo * method)); -DO_APP_FUNC(0x02F73790, bool, Translate_1_Equals_1, (Translate_1__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02F73280, int32_t, Translate_1_GetHashCode, (Translate_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F73850, String *, Translate_1_ToString, (Translate_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F73AE0, InheritedData, InheritedData_Copy, (InheritedData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F73B30, void, InheritedData_CopyFrom, (InheritedData__Boxed * __this, InheritedData other, MethodInfo * method)); +DO_APP_FUNC(0x02F73740, bool, Translate_1_Equals, (Translate_1 * __this, Translate_1 other, MethodInfo * method)); +DO_APP_FUNC(0x02F73790, bool, Translate_1_Equals_1, (Translate_1 * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02F73280, int32_t, Translate_1_GetHashCode, (Translate_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F73850, String *, Translate_1_ToString, (Translate_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F73AE0, InheritedData, InheritedData_Copy, (InheritedData * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F73B30, void, InheritedData_CopyFrom, (InheritedData * __this, InheritedData * other, MethodInfo * method)); DO_APP_FUNC(0x02F73BF0, bool, InheritedData_op_Equality, (InheritedData lhs, InheritedData rhs, MethodInfo * method)); -DO_APP_FUNC(0x02F74350, bool, InheritedData_Equals, (InheritedData__Boxed * __this, InheritedData other, MethodInfo * method)); -DO_APP_FUNC(0x02F74420, bool, InheritedData_Equals_1, (InheritedData__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02F74530, int32_t, InheritedData_GetHashCode, (InheritedData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F747D0, LayoutData, LayoutData_Copy, (LayoutData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F74850, void, LayoutData_CopyFrom, (LayoutData__Boxed * __this, LayoutData other, MethodInfo * method)); +DO_APP_FUNC(0x02F74350, bool, InheritedData_Equals, (InheritedData * __this, InheritedData other, MethodInfo * method)); +DO_APP_FUNC(0x02F74420, bool, InheritedData_Equals_1, (InheritedData * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02F74530, int32_t, InheritedData_GetHashCode, (InheritedData * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F747D0, LayoutData, LayoutData_Copy, (LayoutData * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F74850, void, LayoutData_CopyFrom, (LayoutData * __this, LayoutData * other, MethodInfo * method)); DO_APP_FUNC(0x02F74960, bool, LayoutData_op_Equality, (LayoutData lhs, LayoutData rhs, MethodInfo * method)); -DO_APP_FUNC(0x02F77350, bool, LayoutData_Equals, (LayoutData__Boxed * __this, LayoutData other, MethodInfo * method)); -DO_APP_FUNC(0x02F77480, bool, LayoutData_Equals_1, (LayoutData__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02F775B0, int32_t, LayoutData_GetHashCode, (LayoutData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F77940, RareData, RareData_Copy, (RareData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F77970, void, RareData_CopyFrom, (RareData__Boxed * __this, RareData other, MethodInfo * method)); +DO_APP_FUNC(0x02F77350, bool, LayoutData_Equals, (LayoutData * __this, LayoutData other, MethodInfo * method)); +DO_APP_FUNC(0x02F77480, bool, LayoutData_Equals_1, (LayoutData * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02F775B0, int32_t, LayoutData_GetHashCode, (LayoutData * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F77940, RareData, RareData_Copy, (RareData * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F77970, void, RareData_CopyFrom, (RareData * __this, RareData * other, MethodInfo * method)); DO_APP_FUNC(0x02F779F0, bool, RareData_op_Equality, (RareData lhs, RareData rhs, MethodInfo * method)); -DO_APP_FUNC(0x02F77CA0, bool, RareData_Equals, (RareData__Boxed * __this, RareData other, MethodInfo * method)); -DO_APP_FUNC(0x02F77D20, bool, RareData_Equals_1, (RareData__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02F77E30, int32_t, RareData_GetHashCode, (RareData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F77EB0, TransformData, TransformData_Copy, (TransformData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F77EE0, void, TransformData_CopyFrom, (TransformData__Boxed * __this, TransformData other, MethodInfo * method)); +DO_APP_FUNC(0x02F77CA0, bool, RareData_Equals, (RareData * __this, RareData other, MethodInfo * method)); +DO_APP_FUNC(0x02F77D20, bool, RareData_Equals_1, (RareData * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02F77E30, int32_t, RareData_GetHashCode, (RareData * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F77EB0, TransformData, TransformData_Copy, (TransformData * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F77EE0, void, TransformData_CopyFrom, (TransformData * __this, TransformData * other, MethodInfo * method)); DO_APP_FUNC(0x02F77F10, bool, TransformData_op_Equality, (TransformData lhs, TransformData rhs, MethodInfo * method)); -DO_APP_FUNC(0x02F78170, bool, TransformData_Equals, (TransformData__Boxed * __this, TransformData other, MethodInfo * method)); -DO_APP_FUNC(0x02F783D0, bool, TransformData_Equals_1, (TransformData__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02F784A0, int32_t, TransformData_GetHashCode, (TransformData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F785E0, TransitionData, TransitionData_Copy, (TransitionData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F788E0, void, TransitionData_CopyFrom, (TransitionData__Boxed * __this, TransitionData other, MethodInfo * method)); +DO_APP_FUNC(0x02F78170, bool, TransformData_Equals, (TransformData * __this, TransformData other, MethodInfo * method)); +DO_APP_FUNC(0x02F783D0, bool, TransformData_Equals_1, (TransformData * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02F784A0, int32_t, TransformData_GetHashCode, (TransformData * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F785E0, TransitionData, TransitionData_Copy, (TransitionData * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F788E0, void, TransitionData_CopyFrom, (TransitionData * __this, TransitionData * other, MethodInfo * method)); DO_APP_FUNC(0x02F78AD0, bool, TransitionData_op_Equality, (TransitionData lhs, TransitionData rhs, MethodInfo * method)); -DO_APP_FUNC(0x02F78B20, bool, TransitionData_Equals, (TransitionData__Boxed * __this, TransitionData other, MethodInfo * method)); -DO_APP_FUNC(0x02F78B60, bool, TransitionData_Equals_1, (TransitionData__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02F78C10, int32_t, TransitionData_GetHashCode, (TransitionData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F78CD0, VisualData, VisualData_Copy, (VisualData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F78D30, void, VisualData_CopyFrom, (VisualData__Boxed * __this, VisualData other, MethodInfo * method)); +DO_APP_FUNC(0x02F78B20, bool, TransitionData_Equals, (TransitionData * __this, TransitionData other, MethodInfo * method)); +DO_APP_FUNC(0x02F78B60, bool, TransitionData_Equals_1, (TransitionData * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02F78C10, int32_t, TransitionData_GetHashCode, (TransitionData * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F78CD0, VisualData, VisualData_Copy, (VisualData * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F78D30, void, VisualData_CopyFrom, (VisualData * __this, VisualData * other, MethodInfo * method)); DO_APP_FUNC(0x02F78E10, bool, VisualData_op_Equality, (VisualData lhs, VisualData rhs, MethodInfo * method)); -DO_APP_FUNC(0x02F79330, bool, VisualData_Equals, (VisualData__Boxed * __this, VisualData other, MethodInfo * method)); -DO_APP_FUNC(0x02F79420, bool, VisualData_Equals_1, (VisualData__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02F79540, int32_t, VisualData_GetHashCode, (VisualData__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F79330, bool, VisualData_Equals, (VisualData * __this, VisualData other, MethodInfo * method)); +DO_APP_FUNC(0x02F79420, bool, VisualData_Equals_1, (VisualData * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02F79540, int32_t, VisualData_GetHashCode, (VisualData * __this, MethodInfo * method)); DO_APP_FUNC(0x01E8EBD0, int32_t, StyleComplexSelector_get_specificity, (StyleComplexSelector * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, StyleRule *, StyleComplexSelector_get_rule, (StyleComplexSelector * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE960, void, StyleComplexSelector_set_rule, (StyleComplexSelector * __this, StyleRule * value, MethodInfo * method)); @@ -65465,10 +75488,11 @@ DO_APP_FUNC(0x003BCDE0, void, StyleComplexSelector_set_selectors, (StyleComplexS DO_APP_FUNC(0x02F79690, void, StyleComplexSelector_CachePseudoStateMasks, (StyleComplexSelector * __this, MethodInfo * method)); DO_APP_FUNC(0x02F79E90, String *, StyleComplexSelector_ToString, (StyleComplexSelector * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, StyleComplexSelector__ctor, (StyleComplexSelector * __this, MethodInfo * method)); -DO_APP_FUNC(0x0114A760, void, StyleComplexSelector_PseudoStateData__ctor, (StyleComplexSelector_PseudoStateData__Boxed * __this, PseudoStates__Enum state, bool negate, MethodInfo * method)); +DO_APP_FUNC(0x0114A760, void, StyleComplexSelector_PseudoStateData__ctor, (StyleComplexSelector_PseudoStateData * __this, PseudoStates__Enum state, bool negate, MethodInfo * method)); DO_APP_FUNC(0x02F7A1F0, void, StyleComplexSelector_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, StyleComplexSelector_c__ctor, (StyleComplexSelector_c * __this, MethodInfo * method)); DO_APP_FUNC(0x00A9D460, String *, StyleComplexSelector_c__ToString_b__20_0, (StyleComplexSelector_c * __this, StyleSelector * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEAD58, StyleComplexSelector_c__ToString_b__20_0__MethodInfo); DO_APP_FUNC(0x015C0B20, String *, StyleProperty_get_name, (StyleProperty * __this, MethodInfo * method)); DO_APP_FUNC(0x0244BAA0, StyleValueHandle__Array *, StyleProperty_get_values, (StyleProperty * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, StyleProperty__ctor, (StyleProperty * __this, MethodInfo * method)); @@ -65483,10 +75507,11 @@ DO_APP_FUNC(0x02F7A680, void, StyleSelector__ctor, (StyleSelector * __this, Meth DO_APP_FUNC(0x02F7A690, void, StyleSelector_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, StyleSelector_c__ctor, (StyleSelector_c * __this, MethodInfo * method)); DO_APP_FUNC(0x02F7A740, String *, StyleSelector_c__ToString_b__10_0, (StyleSelector_c * __this, StyleSelectorPart p, MethodInfo * method)); -DO_APP_FUNC(0x00E5B640, String *, StyleSelectorPart_get_value, (StyleSelectorPart__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01809D80, StyleSelectorType__Enum, StyleSelectorPart_get_type, (StyleSelectorPart__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018C6CC0, void, StyleSelectorPart_set_type, (StyleSelectorPart__Boxed * __this, StyleSelectorType__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x02F7A760, String *, StyleSelectorPart_ToString, (StyleSelectorPart__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEADC8, StyleSelector_c__ToString_b__10_0__MethodInfo); +DO_APP_FUNC(0x00E5B640, String *, StyleSelectorPart_get_value, (StyleSelectorPart * __this, MethodInfo * method)); +DO_APP_FUNC(0x01809D80, StyleSelectorType__Enum, StyleSelectorPart_get_type, (StyleSelectorPart * __this, MethodInfo * method)); +DO_APP_FUNC(0x018C6CC0, void, StyleSelectorPart_set_type, (StyleSelectorPart * __this, StyleSelectorType__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x02F7A760, String *, StyleSelectorPart_ToString, (StyleSelectorPart * __this, MethodInfo * method)); DO_APP_FUNC(0x02F7A890, StyleSelectorPart, StyleSelectorPart_CreateClass, (String * className, MethodInfo * method)); DO_APP_FUNC(0x02F7A920, StyleSelectorPart, StyleSelectorPart_CreateId, (String * Id, MethodInfo * method)); DO_APP_FUNC(0x02F7A9B0, StyleSelectorPart, StyleSelectorPart_CreatePredicate, (Object * predicate, MethodInfo * method)); @@ -65509,22 +75534,22 @@ DO_APP_FUNC(0x02F7AD90, void, StyleSheet_FlattenImportedStyleSheetsRecursive_1, DO_APP_FUNC(0x02F7AF50, void, StyleSheet_SetupReferences, (StyleSheet * __this, MethodInfo * method)); DO_APP_FUNC(0x02F7B6A0, StyleValueKeyword__Enum, StyleSheet_ReadKeyword, (StyleSheet * __this, StyleValueHandle handle, MethodInfo * method)); DO_APP_FUNC(0x02F7B6B0, float, StyleSheet_ReadFloat, (StyleSheet * __this, StyleValueHandle handle, MethodInfo * method)); -DO_APP_FUNC(0x02F7B790, bool, StyleSheet_TryReadFloat, (StyleSheet * __this, StyleValueHandle handle, float value, MethodInfo * method)); +DO_APP_FUNC(0x02F7B790, bool, StyleSheet_TryReadFloat, (StyleSheet * __this, StyleValueHandle handle, float * value, MethodInfo * method)); DO_APP_FUNC(0x02F7B8A0, Dimension, StyleSheet_ReadDimension, (StyleSheet * __this, StyleValueHandle handle, MethodInfo * method)); -DO_APP_FUNC(0x02F7B980, bool, StyleSheet_TryReadDimension, (StyleSheet * __this, StyleValueHandle handle, Dimension value, MethodInfo * method)); +DO_APP_FUNC(0x02F7B980, bool, StyleSheet_TryReadDimension, (StyleSheet * __this, StyleValueHandle handle, Dimension * value, MethodInfo * method)); DO_APP_FUNC(0x02F7BAA0, Color, StyleSheet_ReadColor, (StyleSheet * __this, StyleValueHandle handle, MethodInfo * method)); -DO_APP_FUNC(0x02F7BB50, bool, StyleSheet_TryReadColor, (StyleSheet * __this, StyleValueHandle handle, Color value, MethodInfo * method)); +DO_APP_FUNC(0x02F7BB50, bool, StyleSheet_TryReadColor, (StyleSheet * __this, StyleValueHandle handle, Color * value, MethodInfo * method)); DO_APP_FUNC(0x02F7BBF0, String *, StyleSheet_ReadString, (StyleSheet * __this, StyleValueHandle handle, MethodInfo * method)); -DO_APP_FUNC(0x02F7BC70, bool, StyleSheet_TryReadString, (StyleSheet * __this, StyleValueHandle handle, String * value, MethodInfo * method)); +DO_APP_FUNC(0x02F7BC70, bool, StyleSheet_TryReadString, (StyleSheet * __this, StyleValueHandle handle, String * * value, MethodInfo * method)); DO_APP_FUNC(0x02F7BD10, String *, StyleSheet_ReadEnum, (StyleSheet * __this, StyleValueHandle handle, MethodInfo * method)); -DO_APP_FUNC(0x02F7BD90, bool, StyleSheet_TryReadEnum, (StyleSheet * __this, StyleValueHandle handle, String * value, MethodInfo * method)); +DO_APP_FUNC(0x02F7BD90, bool, StyleSheet_TryReadEnum, (StyleSheet * __this, StyleValueHandle handle, String * * value, MethodInfo * method)); DO_APP_FUNC(0x02F7BE30, String *, StyleSheet_ReadVariable, (StyleSheet * __this, StyleValueHandle handle, MethodInfo * method)); -DO_APP_FUNC(0x02F7BEB0, bool, StyleSheet_TryReadVariable, (StyleSheet * __this, StyleValueHandle handle, String * value, MethodInfo * method)); +DO_APP_FUNC(0x02F7BEB0, bool, StyleSheet_TryReadVariable, (StyleSheet * __this, StyleValueHandle handle, String * * value, MethodInfo * method)); DO_APP_FUNC(0x02F7BF50, String *, StyleSheet_ReadResourcePath, (StyleSheet * __this, StyleValueHandle handle, MethodInfo * method)); -DO_APP_FUNC(0x02F7BFD0, bool, StyleSheet_TryReadResourcePath, (StyleSheet * __this, StyleValueHandle handle, String * value, MethodInfo * method)); +DO_APP_FUNC(0x02F7BFD0, bool, StyleSheet_TryReadResourcePath, (StyleSheet * __this, StyleValueHandle handle, String * * value, MethodInfo * method)); DO_APP_FUNC(0x02F7C070, Object_1 *, StyleSheet_ReadAssetReference, (StyleSheet * __this, StyleValueHandle handle, MethodInfo * method)); DO_APP_FUNC(0x02F7C0F0, String *, StyleSheet_ReadMissingAssetReferenceUrl, (StyleSheet * __this, StyleValueHandle handle, MethodInfo * method)); -DO_APP_FUNC(0x02F7C170, bool, StyleSheet_TryReadAssetReference, (StyleSheet * __this, StyleValueHandle handle, Object_1 * value, MethodInfo * method)); +DO_APP_FUNC(0x02F7C170, bool, StyleSheet_TryReadAssetReference, (StyleSheet * __this, StyleValueHandle handle, Object_1 * * value, MethodInfo * method)); DO_APP_FUNC(0x02F7B6A0, StyleValueFunction__Enum, StyleSheet_ReadFunction, (StyleSheet * __this, StyleValueHandle handle, MethodInfo * method)); DO_APP_FUNC(0x02F7C210, String *, StyleSheet_ReadFunctionName, (StyleSheet * __this, StyleValueHandle handle, MethodInfo * method)); DO_APP_FUNC(0x02F7C4C0, ScalableImage, StyleSheet_ReadScalableImage, (StyleSheet * __this, StyleValueHandle handle, MethodInfo * method)); @@ -65532,17 +75557,19 @@ DO_APP_FUNC(0x02F7C570, bool, StyleSheet_CustomStartsWith, (String * originalStr DO_APP_FUNC(0x003BA2A0, void, StyleSheet__ctor, (StyleSheet * __this, MethodInfo * method)); DO_APP_FUNC(0x02F7C650, void, StyleSheet__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02F7C700, String *, StyleValueFunctionExtension_ToUssString, (StyleValueFunction__Enum svf, MethodInfo * method)); -DO_APP_FUNC(0x02B78450, StyleValueType__Enum, StyleValueHandle_get_valueType, (StyleValueHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00959BA0, void, StyleValueHandle_set_valueType, (StyleValueHandle__Boxed * __this, StyleValueType__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA9E8, StyleValueFunctionExtension_ToUssString__MethodInfo); +DO_APP_FUNC(0x02B78450, StyleValueType__Enum, StyleValueHandle_get_valueType, (StyleValueHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x00959BA0, void, StyleValueHandle_set_valueType, (StyleValueHandle * __this, StyleValueType__Enum value, MethodInfo * method)); DO_APP_FUNC(0x02F7C830, String *, StyleValueKeywordExtension_ToUssString, (StyleValueKeyword__Enum svk, MethodInfo * method)); -DO_APP_FUNC(0x0096DD20, void, StyleVariable__ctor, (StyleVariable__Boxed * __this, String * name, StyleSheet * sheet, StyleValueHandle__Array * handles, MethodInfo * method)); -DO_APP_FUNC(0x02F7C9F0, int32_t, StyleVariable_GetHashCode, (StyleVariable__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA9B0, StyleValueKeywordExtension_ToUssString__MethodInfo); +DO_APP_FUNC(0x0096DD20, void, StyleVariable__ctor, (StyleVariable * __this, String * name, StyleSheet * sheet, StyleValueHandle__Array * handles, MethodInfo * method)); +DO_APP_FUNC(0x02F7C9F0, int32_t, StyleVariable_GetHashCode, (StyleVariable * __this, MethodInfo * method)); DO_APP_FUNC(0x02F7CA90, void, StyleVariableContext_Add, (StyleVariableContext * __this, StyleVariable sv, MethodInfo * method)); DO_APP_FUNC(0x02F7CCE0, void, StyleVariableContext_AddInitialRange, (StyleVariableContext * __this, StyleVariableContext * other, MethodInfo * method)); DO_APP_FUNC(0x02F7CE10, void, StyleVariableContext_Clear, (StyleVariableContext * __this, MethodInfo * method)); DO_APP_FUNC(0x02F7CEC0, void, StyleVariableContext__ctor, (StyleVariableContext * __this, MethodInfo * method)); DO_APP_FUNC(0x02F7D0D0, void, StyleVariableContext__ctor_1, (StyleVariableContext * __this, StyleVariableContext * other, MethodInfo * method)); -DO_APP_FUNC(0x02F7D280, bool, StyleVariableContext_TryFindVariable, (StyleVariableContext * __this, String * name, StyleVariable v, MethodInfo * method)); +DO_APP_FUNC(0x02F7D280, bool, StyleVariableContext_TryFindVariable, (StyleVariableContext * __this, String * name, StyleVariable * v, MethodInfo * method)); DO_APP_FUNC(0x01E8EBD0, int32_t, StyleVariableContext_GetVariableHash, (StyleVariableContext * __this, MethodInfo * method)); DO_APP_FUNC(0x02F7D3E0, void, StyleVariableContext__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003C7320, StyleSheet *, StyleVariableResolver_get_currentSheet, (StyleVariableResolver * __this, MethodInfo * method)); @@ -65554,12 +75581,12 @@ DO_APP_FUNC(0x02F7D490, void, StyleVariableResolver_Init, (StyleVariableResolver DO_APP_FUNC(0x02F7D5D0, void, StyleVariableResolver_PushContext, (StyleVariableResolver * __this, StyleSheet * sheet, StyleValueHandle__Array * handles, MethodInfo * method)); DO_APP_FUNC(0x02F7D810, void, StyleVariableResolver_PopContext, (StyleVariableResolver * __this, MethodInfo * method)); DO_APP_FUNC(0x02F7DA00, void, StyleVariableResolver_AddValue, (StyleVariableResolver * __this, StyleValueHandle handle, MethodInfo * method)); -DO_APP_FUNC(0x02F7DAD0, bool, StyleVariableResolver_ResolveVarFunction, (StyleVariableResolver * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x02F7DC50, StyleVariableResolver_Result__Enum, StyleVariableResolver_ResolveVarFunction_1, (StyleVariableResolver * __this, int32_t index, int32_t argc, String * varName, MethodInfo * method)); +DO_APP_FUNC(0x02F7DAD0, bool, StyleVariableResolver_ResolveVarFunction, (StyleVariableResolver * __this, int32_t * index, MethodInfo * method)); +DO_APP_FUNC(0x02F7DC50, StyleVariableResolver_Result__Enum, StyleVariableResolver_ResolveVarFunction_1, (StyleVariableResolver * __this, int32_t * index, int32_t argc, String * varName, MethodInfo * method)); DO_APP_FUNC(0x02F7DDE0, bool, StyleVariableResolver_ValidateResolvedValues, (StyleVariableResolver * __this, MethodInfo * method)); DO_APP_FUNC(0x02F7DFD0, StyleVariableResolver_Result__Enum, StyleVariableResolver_ResolveVariable, (StyleVariableResolver * __this, String * variableName, MethodInfo * method)); -DO_APP_FUNC(0x02F7E400, StyleVariableResolver_Result__Enum, StyleVariableResolver_ResolveFallback, (StyleVariableResolver * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x02F7E730, void, StyleVariableResolver_ParseVarFunction, (StyleSheet * sheet, StyleValueHandle__Array * handles, int32_t index, int32_t argCount, String * variableName, MethodInfo * method)); +DO_APP_FUNC(0x02F7E400, StyleVariableResolver_Result__Enum, StyleVariableResolver_ResolveFallback, (StyleVariableResolver * __this, int32_t * index, MethodInfo * method)); +DO_APP_FUNC(0x02F7E730, void, StyleVariableResolver_ParseVarFunction, (StyleSheet * sheet, StyleValueHandle__Array * handles, int32_t * index, int32_t * argCount, String * * variableName, MethodInfo * method)); DO_APP_FUNC(0x02F7E820, void, StyleVariableResolver__ctor, (StyleVariableResolver * __this, MethodInfo * method)); DO_APP_FUNC(0x02F7ECB0, void, StyleVariableResolver__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02F7ED80, void, ThemeStyleSheet_OnEnable, (ThemeStyleSheet * __this, MethodInfo * method)); @@ -65569,38 +75596,38 @@ DO_APP_FUNC(0x02F7F0D0, void, PanelTextSettings_UpdateLocalizationFontAsset, (Me DO_APP_FUNC(0x02F7F6B0, FontAsset *, PanelTextSettings_GetCachedFontAsset, (PanelTextSettings * __this, Font * font, MethodInfo * method)); DO_APP_FUNC(0x02F7F6C0, void, PanelTextSettings__ctor, (PanelTextSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x02F7F6D0, void, PanelTextSettings__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x00471910, Vector2, TextCoreHandle_get_MeasuredSizes, (TextCoreHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9A2A0, void, TextCoreHandle_set_MeasuredSizes, (TextCoreHandle__Boxed * __this, Vector2 value, MethodInfo * method)); -DO_APP_FUNC(0x0171D170, Vector2, TextCoreHandle_get_RoundedSizes, (TextCoreHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01ED3330, void, TextCoreHandle_set_RoundedSizes, (TextCoreHandle__Boxed * __this, Vector2 value, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Vector2, TextCoreHandle_get_MeasuredSizes, (TextCoreHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9A2A0, void, TextCoreHandle_set_MeasuredSizes, (TextCoreHandle * __this, Vector2 value, MethodInfo * method)); +DO_APP_FUNC(0x0171D170, Vector2, TextCoreHandle_get_RoundedSizes, (TextCoreHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x01ED3330, void, TextCoreHandle_set_RoundedSizes, (TextCoreHandle * __this, Vector2 value, MethodInfo * method)); DO_APP_FUNC(0x02F7F780, ITextHandle *, TextCoreHandle_New, (MethodInfo * method)); -DO_APP_FUNC(0x02F7F910, TextInfo_1 *, TextCoreHandle_get_textInfoMesh, (TextCoreHandle__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F7F910, TextInfo_1 *, TextCoreHandle_get_textInfoMesh, (TextCoreHandle * __this, MethodInfo * method)); DO_APP_FUNC(0x02F7F9D0, TextInfo_1 *, TextCoreHandle_get_textInfoLayout, (MethodInfo * method)); -DO_APP_FUNC(0x01BD8C20, bool, TextCoreHandle_IsLegacy, (TextCoreHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F7FB20, bool, TextCoreHandle_IsDirty, (TextCoreHandle__Boxed * __this, MeshGenerationContextUtils_TextParams parms, MethodInfo * method)); -DO_APP_FUNC(0x02F7FB60, Vector2, TextCoreHandle_GetCursorPosition, (TextCoreHandle__Boxed * __this, CursorPositionStylePainterParameters parms, float scaling, MethodInfo * method)); -DO_APP_FUNC(0x02F7FC00, float, TextCoreHandle_ComputeTextWidth, (TextCoreHandle__Boxed * __this, MeshGenerationContextUtils_TextParams parms, float scaling, MethodInfo * method)); -DO_APP_FUNC(0x02F7FCE0, float, TextCoreHandle_ComputeTextHeight, (TextCoreHandle__Boxed * __this, MeshGenerationContextUtils_TextParams parms, float scaling, MethodInfo * method)); -DO_APP_FUNC(0x02F7FDC0, float, TextCoreHandle_GetLineHeight, (TextCoreHandle__Boxed * __this, int32_t characterIndex, MeshGenerationContextUtils_TextParams textParams, float textScaling, float pixelPerPoint, MethodInfo * method)); -DO_APP_FUNC(0x02F7FEE0, TextInfo_1 *, TextCoreHandle_Update, (TextCoreHandle__Boxed * __this, MeshGenerationContextUtils_TextParams parms, float pixelsPerPoint, MethodInfo * method)); -DO_APP_FUNC(0x02F80240, void, TextCoreHandle_UpdatePreferredValues, (TextCoreHandle__Boxed * __this, MeshGenerationContextUtils_TextParams parms, MethodInfo * method)); +DO_APP_FUNC(0x01BD8C20, bool, TextCoreHandle_IsLegacy, (TextCoreHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F7FB20, bool, TextCoreHandle_IsDirty, (TextCoreHandle * __this, MeshGenerationContextUtils_TextParams parms, MethodInfo * method)); +DO_APP_FUNC(0x02F7FB60, Vector2, TextCoreHandle_GetCursorPosition, (TextCoreHandle * __this, CursorPositionStylePainterParameters parms, float scaling, MethodInfo * method)); +DO_APP_FUNC(0x02F7FC00, float, TextCoreHandle_ComputeTextWidth, (TextCoreHandle * __this, MeshGenerationContextUtils_TextParams parms, float scaling, MethodInfo * method)); +DO_APP_FUNC(0x02F7FCE0, float, TextCoreHandle_ComputeTextHeight, (TextCoreHandle * __this, MeshGenerationContextUtils_TextParams parms, float scaling, MethodInfo * method)); +DO_APP_FUNC(0x02F7FDC0, float, TextCoreHandle_GetLineHeight, (TextCoreHandle * __this, int32_t characterIndex, MeshGenerationContextUtils_TextParams textParams, float textScaling, float pixelPerPoint, MethodInfo * method)); +DO_APP_FUNC(0x02F7FEE0, TextInfo_1 *, TextCoreHandle_Update, (TextCoreHandle * __this, MeshGenerationContextUtils_TextParams parms, float pixelsPerPoint, MethodInfo * method)); +DO_APP_FUNC(0x02F80240, void, TextCoreHandle_UpdatePreferredValues, (TextCoreHandle * __this, MeshGenerationContextUtils_TextParams parms, MethodInfo * method)); DO_APP_FUNC(0x02F80520, TextOverflowMode__Enum, TextCoreHandle_GetTextOverflowMode, (MeshGenerationContextUtils_TextParams textParams, MethodInfo * method)); DO_APP_FUNC(0x02F805A0, void, TextCoreHandle_UpdateGenerationSettingsCommon, (MeshGenerationContextUtils_TextParams painterParams, TextGenerationSettings_1 * settings, MethodInfo * method)); -DO_APP_FUNC(0x02F80BF0, bool, TextCoreHandle_IsElided, (TextCoreHandle__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F80BF0, bool, TextCoreHandle_IsElided, (TextCoreHandle * __this, MethodInfo * method)); DO_APP_FUNC(0x02F80C50, void, TextCoreHandle__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x00471910, Vector2, TextNativeHandle_get_MeasuredSizes, (TextNativeHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9A2A0, void, TextNativeHandle_set_MeasuredSizes, (TextNativeHandle__Boxed * __this, Vector2 value, MethodInfo * method)); -DO_APP_FUNC(0x0171D170, Vector2, TextNativeHandle_get_RoundedSizes, (TextNativeHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01ED3330, void, TextNativeHandle_set_RoundedSizes, (TextNativeHandle__Boxed * __this, Vector2 value, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Vector2, TextNativeHandle_get_MeasuredSizes, (TextNativeHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9A2A0, void, TextNativeHandle_set_MeasuredSizes, (TextNativeHandle * __this, Vector2 value, MethodInfo * method)); +DO_APP_FUNC(0x0171D170, Vector2, TextNativeHandle_get_RoundedSizes, (TextNativeHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x01ED3330, void, TextNativeHandle_set_RoundedSizes, (TextNativeHandle * __this, Vector2 value, MethodInfo * method)); DO_APP_FUNC(0x02F80D90, ITextHandle *, TextNativeHandle_New, (MethodInfo * method)); -DO_APP_FUNC(0x01120490, bool, TextNativeHandle_IsLegacy, (TextNativeHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02F80DF0, float, TextNativeHandle_GetLineHeight, (TextNativeHandle__Boxed * __this, int32_t characterIndex, MeshGenerationContextUtils_TextParams textParams, float textScaling, float pixelPerPoint, MethodInfo * method)); -DO_APP_FUNC(0x02F80E90, TextInfo_1 *, TextNativeHandle_Update, (TextNativeHandle__Boxed * __this, MeshGenerationContextUtils_TextParams parms, float pixelsPerPoint, MethodInfo * method)); -DO_APP_FUNC(0x02F80EF0, NativeArray_1_UnityEngine_UIElements_TextVertex_, TextNativeHandle_GetVertices, (TextNativeHandle__Boxed * __this, MeshGenerationContextUtils_TextParams parms, float scaling, MethodInfo * method)); -DO_APP_FUNC(0x02F81190, Vector2, TextNativeHandle_GetCursorPosition, (TextNativeHandle__Boxed * __this, CursorPositionStylePainterParameters parms, float scaling, MethodInfo * method)); -DO_APP_FUNC(0x02F81220, float, TextNativeHandle_ComputeTextWidth, (TextNativeHandle__Boxed * __this, MeshGenerationContextUtils_TextParams parms, float scaling, MethodInfo * method)); -DO_APP_FUNC(0x02F814E0, float, TextNativeHandle_ComputeTextHeight, (TextNativeHandle__Boxed * __this, MeshGenerationContextUtils_TextParams parms, float scaling, MethodInfo * method)); -DO_APP_FUNC(0x01BD8C20, bool, TextNativeHandle_IsElided, (TextNativeHandle__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01120490, bool, TextNativeHandle_IsLegacy, (TextNativeHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02F80DF0, float, TextNativeHandle_GetLineHeight, (TextNativeHandle * __this, int32_t characterIndex, MeshGenerationContextUtils_TextParams textParams, float textScaling, float pixelPerPoint, MethodInfo * method)); +DO_APP_FUNC(0x02F80E90, TextInfo_1 *, TextNativeHandle_Update, (TextNativeHandle * __this, MeshGenerationContextUtils_TextParams parms, float pixelsPerPoint, MethodInfo * method)); +DO_APP_FUNC(0x02F80EF0, NativeArray_1_UnityEngine_UIElements_TextVertex_, TextNativeHandle_GetVertices, (TextNativeHandle * __this, MeshGenerationContextUtils_TextParams parms, float scaling, MethodInfo * method)); +DO_APP_FUNC(0x02F81190, Vector2, TextNativeHandle_GetCursorPosition, (TextNativeHandle * __this, CursorPositionStylePainterParameters parms, float scaling, MethodInfo * method)); +DO_APP_FUNC(0x02F81220, float, TextNativeHandle_ComputeTextWidth, (TextNativeHandle * __this, MeshGenerationContextUtils_TextParams parms, float scaling, MethodInfo * method)); +DO_APP_FUNC(0x02F814E0, float, TextNativeHandle_ComputeTextHeight, (TextNativeHandle * __this, MeshGenerationContextUtils_TextParams parms, float scaling, MethodInfo * method)); +DO_APP_FUNC(0x01BD8C20, bool, TextNativeHandle_IsElided, (TextNativeHandle * __this, MethodInfo * method)); DO_APP_FUNC(0x02F81760, float, TextUtilities_ComputeTextScaling, (Matrix4x4 worldMatrix, float pixelsPerPoint, MethodInfo * method)); DO_APP_FUNC(0x02F81800, Vector2, TextUtilities_MeasureVisualElementTextSize, (VisualElement * ve, String * textToMeasure, float width, VisualElement_MeasureMode__Enum widthMode, float height, VisualElement_MeasureMode__Enum heightMode, ITextHandle * textHandle, MethodInfo * method)); DO_APP_FUNC(0x02F81B80, FontAsset *, TextUtilities_GetFontAsset, (MeshGenerationContextUtils_TextParams textParam, MethodInfo * method)); @@ -65642,40 +75669,47 @@ DO_APP_FUNC(0x003BCDE0, void, UxmlAttributeDescription_set_type, (UxmlAttributeD DO_APP_FUNC(0x003C6500, void, UxmlAttributeDescription_set_typeNamespace, (UxmlAttributeDescription * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x003C7310, void, UxmlAttributeDescription_set_use, (UxmlAttributeDescription * __this, UxmlAttributeDescription_Use__Enum value, MethodInfo * method)); DO_APP_FUNC(0x003C7330, void, UxmlAttributeDescription_set_restriction, (UxmlAttributeDescription * __this, UxmlTypeRestriction * value, MethodInfo * method)); -DO_APP_FUNC(0x02F83F50, bool, UxmlAttributeDescription_TryGetValueFromBagAsString, (UxmlAttributeDescription * __this, IUxmlAttributes * bag, CreationContext cc, String * value, MethodInfo * method)); +DO_APP_FUNC(0x02F83F50, bool, UxmlAttributeDescription_TryGetValueFromBagAsString, (UxmlAttributeDescription * __this, IUxmlAttributes * bag, CreationContext cc, String * * value, MethodInfo * method)); DO_APP_FUNC(0x02F84620, void, UxmlStringAttributeDescription__ctor, (UxmlStringAttributeDescription * __this, MethodInfo * method)); DO_APP_FUNC(0x02F84810, String *, UxmlStringAttributeDescription_GetValueFromBag, (UxmlStringAttributeDescription * __this, IUxmlAttributes * bag, CreationContext cc, MethodInfo * method)); DO_APP_FUNC(0x02F84A20, void, UxmlStringAttributeDescription_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, UxmlStringAttributeDescription_c__ctor, (UxmlStringAttributeDescription_c * __this, MethodInfo * method)); DO_APP_FUNC(0x00420A60, String *, UxmlStringAttributeDescription_c__GetValueFromBag_b__3_0, (UxmlStringAttributeDescription_c * __this, String * s, String * t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA220, UxmlStringAttributeDescription_c__GetValueFromBag_b__3_0__MethodInfo); DO_APP_FUNC(0x02F84AD0, void, UxmlFloatAttributeDescription__ctor, (UxmlFloatAttributeDescription * __this, MethodInfo * method)); DO_APP_FUNC(0x02F84C60, float, UxmlFloatAttributeDescription_GetValueFromBag, (UxmlFloatAttributeDescription * __this, IUxmlAttributes * bag, CreationContext cc, MethodInfo * method)); DO_APP_FUNC(0x02F84E60, float, UxmlFloatAttributeDescription_ConvertValueToFloat, (String * v, float defaultValue, MethodInfo * method)); DO_APP_FUNC(0x02F84F60, void, UxmlFloatAttributeDescription_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, UxmlFloatAttributeDescription_c__ctor, (UxmlFloatAttributeDescription_c * __this, MethodInfo * method)); DO_APP_FUNC(0x02F85010, float, UxmlFloatAttributeDescription_c__GetValueFromBag_b__3_0, (UxmlFloatAttributeDescription_c * __this, String * s, float f, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA330, UxmlFloatAttributeDescription_c__GetValueFromBag_b__3_0__MethodInfo); DO_APP_FUNC(0x02F85110, void, UxmlIntAttributeDescription__ctor, (UxmlIntAttributeDescription * __this, MethodInfo * method)); DO_APP_FUNC(0x02F852A0, int32_t, UxmlIntAttributeDescription_GetValueFromBag, (UxmlIntAttributeDescription * __this, IUxmlAttributes * bag, CreationContext cc, MethodInfo * method)); -DO_APP_FUNC(0x02F854A0, bool, UxmlIntAttributeDescription_TryGetValueFromBag, (UxmlIntAttributeDescription * __this, IUxmlAttributes * bag, CreationContext cc, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x02F854A0, bool, UxmlIntAttributeDescription_TryGetValueFromBag, (UxmlIntAttributeDescription * __this, IUxmlAttributes * bag, CreationContext cc, int32_t * value, MethodInfo * method)); DO_APP_FUNC(0x02F856C0, int32_t, UxmlIntAttributeDescription_ConvertValueToInt, (String * v, int32_t defaultValue, MethodInfo * method)); DO_APP_FUNC(0x02F857A0, void, UxmlIntAttributeDescription_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, UxmlIntAttributeDescription_c__ctor, (UxmlIntAttributeDescription_c * __this, MethodInfo * method)); DO_APP_FUNC(0x02F85850, int32_t, UxmlIntAttributeDescription_c__GetValueFromBag_b__3_0, (UxmlIntAttributeDescription_c * __this, String * s, int32_t i, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9F20, UxmlIntAttributeDescription_c__GetValueFromBag_b__3_0__MethodInfo); DO_APP_FUNC(0x02F85850, int32_t, UxmlIntAttributeDescription_c__TryGetValueFromBag_b__4_0, (UxmlIntAttributeDescription_c * __this, String * s, int32_t i, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9FF0, UxmlIntAttributeDescription_c__TryGetValueFromBag_b__4_0__MethodInfo); DO_APP_FUNC(0x02F85860, void, UxmlLongAttributeDescription__ctor, (UxmlLongAttributeDescription * __this, MethodInfo * method)); DO_APP_FUNC(0x02F859F0, int64_t, UxmlLongAttributeDescription_GetValueFromBag, (UxmlLongAttributeDescription * __this, IUxmlAttributes * bag, CreationContext cc, MethodInfo * method)); DO_APP_FUNC(0x02F85C00, int64_t, UxmlLongAttributeDescription_ConvertValueToLong, (String * v, int64_t defaultValue, MethodInfo * method)); DO_APP_FUNC(0x02F85CE0, void, UxmlLongAttributeDescription_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, UxmlLongAttributeDescription_c__ctor, (UxmlLongAttributeDescription_c * __this, MethodInfo * method)); DO_APP_FUNC(0x02F85D90, int64_t, UxmlLongAttributeDescription_c__GetValueFromBag_b__3_0, (UxmlLongAttributeDescription_c * __this, String * s, int64_t l, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA090, UxmlLongAttributeDescription_c__GetValueFromBag_b__3_0__MethodInfo); DO_APP_FUNC(0x02F85E70, void, UxmlBoolAttributeDescription__ctor, (UxmlBoolAttributeDescription * __this, MethodInfo * method)); DO_APP_FUNC(0x02F86000, bool, UxmlBoolAttributeDescription_GetValueFromBag, (UxmlBoolAttributeDescription * __this, IUxmlAttributes * bag, CreationContext cc, MethodInfo * method)); -DO_APP_FUNC(0x02F86210, bool, UxmlBoolAttributeDescription_TryGetValueFromBag, (UxmlBoolAttributeDescription * __this, IUxmlAttributes * bag, CreationContext cc, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02F86210, bool, UxmlBoolAttributeDescription_TryGetValueFromBag, (UxmlBoolAttributeDescription * __this, IUxmlAttributes * bag, CreationContext cc, bool * value, MethodInfo * method)); DO_APP_FUNC(0x02F86430, bool, UxmlBoolAttributeDescription_ConvertValueToBool, (String * v, bool defaultValue, MethodInfo * method)); DO_APP_FUNC(0x02F86530, void, UxmlBoolAttributeDescription_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, UxmlBoolAttributeDescription_c__ctor, (UxmlBoolAttributeDescription_c * __this, MethodInfo * method)); DO_APP_FUNC(0x02F865E0, bool, UxmlBoolAttributeDescription_c__GetValueFromBag_b__3_0, (UxmlBoolAttributeDescription_c * __this, String * s, bool b, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA0D8, UxmlBoolAttributeDescription_c__GetValueFromBag_b__3_0__MethodInfo); DO_APP_FUNC(0x02F865E0, bool, UxmlBoolAttributeDescription_c__TryGetValueFromBag_b__4_0, (UxmlBoolAttributeDescription_c * __this, String * s, bool b, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9D90, UxmlBoolAttributeDescription_c__TryGetValueFromBag_b__4_0__MethodInfo); DO_APP_FUNC(0x003BCD40, void, UxmlTraits__ctor, (UxmlTraits * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD30, void, UxmlTraits_set_canHaveAnyAttribute, (UxmlTraits * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, UxmlTraits_Init, (UxmlTraits * __this, VisualElement * ve, IUxmlAttributes * bag, CreationContext cc, MethodInfo * method)); @@ -65700,10 +75734,11 @@ DO_APP_FUNC(0x003AE050, void, VisualElementAsset_OnBeforeSerialize, (VisualEleme DO_APP_FUNC(0x02F86B00, void, VisualElementAsset_OnAfterDeserialize, (VisualElementAsset * __this, MethodInfo * method)); DO_APP_FUNC(0x02F86D30, void, VisualElementAsset_AddProperty, (VisualElementAsset * __this, String * propertyName, String * propertyValue, MethodInfo * method)); DO_APP_FUNC(0x02F86D40, void, VisualElementAsset_SetOrAddProperty, (VisualElementAsset * __this, String * propertyName, String * propertyValue, MethodInfo * method)); -DO_APP_FUNC(0x02F86F60, bool, VisualElementAsset_TryGetAttributeValue, (VisualElementAsset * __this, String * propertyName, String * value, MethodInfo * method)); +DO_APP_FUNC(0x02F86F60, bool, VisualElementAsset_TryGetAttributeValue, (VisualElementAsset * __this, String * propertyName, String * * value, MethodInfo * method)); DO_APP_FUNC(0x02F87150, Dictionary_2_System_String_List_1_UnityEngine_UIElements_IUxmlFactory_ *, VisualElementFactoryRegistry_get_factories, (MethodInfo * method)); DO_APP_FUNC(0x02F87280, void, VisualElementFactoryRegistry_RegisterFactory, (IUxmlFactory * factory, MethodInfo * method)); -DO_APP_FUNC(0x02F87630, bool, VisualElementFactoryRegistry_TryGetValue, (String * fullTypeName, List_1_UnityEngine_UIElements_IUxmlFactory_ * factoryList, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9B88, VisualElementFactoryRegistry_RegisterFactory__MethodInfo); +DO_APP_FUNC(0x02F87630, bool, VisualElementFactoryRegistry_TryGetValue, (String * fullTypeName, List_1_UnityEngine_UIElements_IUxmlFactory_ * * factoryList, MethodInfo * method)); DO_APP_FUNC(0x02F876F0, void, VisualElementFactoryRegistry_RegisterEngineFactories, (MethodInfo * method)); DO_APP_FUNC(0x02F88AD0, void, VisualElementFactoryRegistry_RegisterUserFactories, (MethodInfo * method)); DO_APP_FUNC(0x02F7AA40, bool, VisualTreeAsset_get_importedWithErrors, (VisualTreeAsset * __this, MethodInfo * method)); @@ -65726,11 +75761,14 @@ DO_APP_FUNC(0x02F89230, TemplateContainer *, VisualTreeAsset_Instantiate_1, (Vis DO_APP_FUNC(0x02F892B0, TemplateContainer *, VisualTreeAsset_CloneTree, (VisualTreeAsset * __this, MethodInfo * method)); DO_APP_FUNC(0x02F89230, TemplateContainer *, VisualTreeAsset_CloneTree_1, (VisualTreeAsset * __this, String * bindingPath, MethodInfo * method)); DO_APP_FUNC(0x02F892C0, void, VisualTreeAsset_CloneTree_2, (VisualTreeAsset * __this, VisualElement * target, MethodInfo * method)); -DO_APP_FUNC(0x02F892F0, void, VisualTreeAsset_CloneTree_3, (VisualTreeAsset * __this, VisualElement * target, int32_t firstElementIndex, int32_t elementAddedCount, MethodInfo * method)); +DO_APP_FUNC(0x02F892F0, void, VisualTreeAsset_CloneTree_3, (VisualTreeAsset * __this, VisualElement * target, int32_t * firstElementIndex, int32_t * elementAddedCount, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9840, VisualTreeAsset_CloneTree_3__MethodInfo); DO_APP_FUNC(0x02F89510, void, VisualTreeAsset_CloneTree_4, (VisualTreeAsset * __this, VisualElement * target, Dictionary_2_System_String_UnityEngine_UIElements_VisualElement_ * slotInsertionPoints, List_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ * attributeOverrides, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE96B8, VisualTreeAsset_CloneTree_4__MethodInfo); DO_APP_FUNC(0x02F89E50, VisualElement *, VisualTreeAsset_CloneSetupRecursively, (VisualTreeAsset * __this, VisualElementAsset * root, Dictionary_2_System_Int32_List_1_UnityEngine_UIElements_VisualElementAsset_ * idToChildren, CreationContext context, MethodInfo * method)); DO_APP_FUNC(0x02F8AE10, int32_t, VisualTreeAsset_CompareForOrder, (VisualElementAsset * a, VisualElementAsset * b, MethodInfo * method)); -DO_APP_FUNC(0x02F8AE50, bool, VisualTreeAsset_TryGetSlotInsertionPoint, (VisualTreeAsset * __this, int32_t insertionPointId, String * slotName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9918, VisualTreeAsset_CompareForOrder__MethodInfo); +DO_APP_FUNC(0x02F8AE50, bool, VisualTreeAsset_TryGetSlotInsertionPoint, (VisualTreeAsset * __this, int32_t insertionPointId, String * * slotName, MethodInfo * method)); DO_APP_FUNC(0x02F8AFF0, VisualTreeAsset *, VisualTreeAsset_ResolveTemplate, (VisualTreeAsset * __this, String * templateName, MethodInfo * method)); DO_APP_FUNC(0x02F8B3A0, VisualElement *, VisualTreeAsset_Create, (VisualElementAsset * asset, CreationContext ctx, MethodInfo * method)); DO_APP_FUNC(0x02F8BC70, void, VisualTreeAsset_AssignClassListFromAssetToElement, (VisualElementAsset * asset, VisualElement * element, MethodInfo * method)); @@ -65739,8 +75777,8 @@ DO_APP_FUNC(0x02F8BF90, int32_t, VisualTreeAsset_get_contentHash, (VisualTreeAss DO_APP_FUNC(0x010C9010, void, VisualTreeAsset_set_contentHash, (VisualTreeAsset * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x003BA2A0, void, VisualTreeAsset__ctor, (VisualTreeAsset * __this, MethodInfo * method)); DO_APP_FUNC(0x02F8BFA0, void, VisualTreeAsset__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02F8C140, VisualElement *, VisualTreeAsset__Create_g__CreateError_49_0, (VisualTreeAsset_c_DisplayClass49_0 param_000106f8, MethodInfo * method)); -DO_APP_FUNC(0x02F8C2E0, void, VisualTreeAsset_UsingEntry__ctor, (VisualTreeAsset_UsingEntry__Boxed * __this, String * alias, String * path, MethodInfo * method)); +DO_APP_FUNC(0x02F8C140, VisualElement *, VisualTreeAsset__Create_g__CreateError_49_0, (VisualTreeAsset_c_DisplayClass49_0 * param_000106f8, MethodInfo * method)); +DO_APP_FUNC(0x02F8C2E0, void, VisualTreeAsset_UsingEntry__ctor, (VisualTreeAsset_UsingEntry * __this, String * alias, String * path, MethodInfo * method)); DO_APP_FUNC(0x02F8C3E0, void, VisualTreeAsset_UsingEntry__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02F8C4A0, int32_t, VisualTreeAsset_UsingEntryComparer_Compare, (VisualTreeAsset_UsingEntryComparer * __this, VisualTreeAsset_UsingEntry x, VisualTreeAsset_UsingEntry y, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, VisualTreeAsset_UsingEntryComparer__ctor, (VisualTreeAsset_UsingEntryComparer * __this, MethodInfo * method)); @@ -65750,6 +75788,7 @@ DO_APP_FUNC(0x02F8C5D0, bool, VisualTreeAsset_get_templateDependencies_d_17_Move DO_APP_FUNC(0x02F8CF20, void, VisualTreeAsset_get_templateDependencies_d_17___m__Finally1, (VisualTreeAsset_get_templateDependencies_d_17 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, VisualTreeAsset *, VisualTreeAsset_get_templateDependencies_d_17_System_Collections_Generic_IEnumerator_UnityEngine_UIElements_VisualTreeAsset__get_Current, (VisualTreeAsset_get_templateDependencies_d_17 * __this, MethodInfo * method)); DO_APP_FUNC(0x02F8CF70, void, VisualTreeAsset_get_templateDependencies_d_17_System_Collections_IEnumerator_Reset, (VisualTreeAsset_get_templateDependencies_d_17 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9628, VisualTreeAsset_get_templateDependencies_d_17_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, VisualTreeAsset_get_templateDependencies_d_17_System_Collections_IEnumerator_get_Current, (VisualTreeAsset_get_templateDependencies_d_17 * __this, MethodInfo * method)); DO_APP_FUNC(0x02F8CFC0, IEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_ *, VisualTreeAsset_get_templateDependencies_d_17_System_Collections_Generic_IEnumerable_UnityEngine_UIElements_VisualTreeAsset__GetEnumerator, (VisualTreeAsset_get_templateDependencies_d_17 * __this, MethodInfo * method)); DO_APP_FUNC(0x02F8CFC0, IEnumerator *, VisualTreeAsset_get_templateDependencies_d_17_System_Collections_IEnumerable_GetEnumerator, (VisualTreeAsset_get_templateDependencies_d_17 * __this, MethodInfo * method)); @@ -65761,36 +75800,40 @@ DO_APP_FUNC(0x02F8E1A0, void, VisualTreeAsset_get_stylesheets_d_21___m__Finally2 DO_APP_FUNC(0x02F8E1F0, void, VisualTreeAsset_get_stylesheets_d_21___m__Finally3, (VisualTreeAsset_get_stylesheets_d_21 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, StyleSheet *, VisualTreeAsset_get_stylesheets_d_21_System_Collections_Generic_IEnumerator_UnityEngine_UIElements_StyleSheet__get_Current, (VisualTreeAsset_get_stylesheets_d_21 * __this, MethodInfo * method)); DO_APP_FUNC(0x02F8E240, void, VisualTreeAsset_get_stylesheets_d_21_System_Collections_IEnumerator_Reset, (VisualTreeAsset_get_stylesheets_d_21 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9500, VisualTreeAsset_get_stylesheets_d_21_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, VisualTreeAsset_get_stylesheets_d_21_System_Collections_IEnumerator_get_Current, (VisualTreeAsset_get_stylesheets_d_21 * __this, MethodInfo * method)); DO_APP_FUNC(0x02F8E290, IEnumerator_1_UnityEngine_UIElements_StyleSheet_ *, VisualTreeAsset_get_stylesheets_d_21_System_Collections_Generic_IEnumerable_UnityEngine_UIElements_StyleSheet__GetEnumerator, (VisualTreeAsset_get_stylesheets_d_21 * __this, MethodInfo * method)); DO_APP_FUNC(0x02F8E290, IEnumerator *, VisualTreeAsset_get_stylesheets_d_21_System_Collections_IEnumerable_GetEnumerator, (VisualTreeAsset_get_stylesheets_d_21 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, VisualTreeAsset_c_DisplayClass45_0__ctor, (VisualTreeAsset_c_DisplayClass45_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x02F8E3D0, bool, VisualTreeAsset_c_DisplayClass45_0__CloneSetupRecursively_b__0, (VisualTreeAsset_c_DisplayClass45_0 * __this, VisualTreeAsset_SlotUsageEntry u, MethodInfo * method)); -DO_APP_FUNC(0x00471910, VisualElement *, CreationContext_get_target, (CreationContext__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, CreationContext_set_target, (CreationContext__Boxed * __this, VisualElement * value, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, VisualTreeAsset *, CreationContext_get_visualTreeAsset, (CreationContext__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x005F25C0, void, CreationContext_set_visualTreeAsset, (CreationContext__Boxed * __this, VisualTreeAsset * value, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Dictionary_2_System_String_UnityEngine_UIElements_VisualElement_ *, CreationContext_get_slotInsertionPoints, (CreationContext__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCBE0, void, CreationContext_set_slotInsertionPoints, (CreationContext__Boxed * __this, Dictionary_2_System_String_UnityEngine_UIElements_VisualElement_ * value, MethodInfo * method)); -DO_APP_FUNC(0x003BB3D0, List_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ *, CreationContext_get_attributeOverrides, (CreationContext__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003AE960, void, CreationContext_set_attributeOverrides, (CreationContext__Boxed * __this, List_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ * value, MethodInfo * method)); -DO_APP_FUNC(0x02F8E400, void, CreationContext__ctor, (CreationContext__Boxed * __this, Dictionary_2_System_String_UnityEngine_UIElements_VisualElement_ * slotInsertionPoints, List_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ * attributeOverrides, VisualTreeAsset * vta, VisualElement * target, MethodInfo * method)); -DO_APP_FUNC(0x02F8E5C0, bool, CreationContext_Equals, (CreationContext__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02F8E680, bool, CreationContext_Equals_1, (CreationContext__Boxed * __this, CreationContext other, MethodInfo * method)); -DO_APP_FUNC(0x02F8E800, int32_t, CreationContext_GetHashCode, (CreationContext__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9738, VisualTreeAsset_c_DisplayClass45_0__CloneSetupRecursively_b__0__MethodInfo); +DO_APP_FUNC(0x00471910, VisualElement *, CreationContext_get_target, (CreationContext * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, CreationContext_set_target, (CreationContext * __this, VisualElement * value, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, VisualTreeAsset *, CreationContext_get_visualTreeAsset, (CreationContext * __this, MethodInfo * method)); +DO_APP_FUNC(0x005F25C0, void, CreationContext_set_visualTreeAsset, (CreationContext * __this, VisualTreeAsset * value, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Dictionary_2_System_String_UnityEngine_UIElements_VisualElement_ *, CreationContext_get_slotInsertionPoints, (CreationContext * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCBE0, void, CreationContext_set_slotInsertionPoints, (CreationContext * __this, Dictionary_2_System_String_UnityEngine_UIElements_VisualElement_ * value, MethodInfo * method)); +DO_APP_FUNC(0x003BB3D0, List_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ *, CreationContext_get_attributeOverrides, (CreationContext * __this, MethodInfo * method)); +DO_APP_FUNC(0x003AE960, void, CreationContext_set_attributeOverrides, (CreationContext * __this, List_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ * value, MethodInfo * method)); +DO_APP_FUNC(0x02F8E400, void, CreationContext__ctor, (CreationContext * __this, Dictionary_2_System_String_UnityEngine_UIElements_VisualElement_ * slotInsertionPoints, List_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ * attributeOverrides, VisualTreeAsset * vta, VisualElement * target, MethodInfo * method)); +DO_APP_FUNC(0x02F8E5C0, bool, CreationContext_Equals, (CreationContext * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02F8E680, bool, CreationContext_Equals_1, (CreationContext * __this, CreationContext other, MethodInfo * method)); +DO_APP_FUNC(0x02F8E800, int32_t, CreationContext_GetHashCode, (CreationContext * __this, MethodInfo * method)); DO_APP_FUNC(0x02F8E940, void, CreationContext__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02F8E990, void, Allocator2D__ctor, (Allocator2D * __this, Vector2Int minSize, Vector2Int maxSize, int32_t rowHeightBias, MethodInfo * method)); -DO_APP_FUNC(0x02F8EF50, bool, Allocator2D_TryAllocate, (Allocator2D * __this, int32_t width, int32_t height, Allocator2D_Alloc2D alloc2D, MethodInfo * method)); +DO_APP_FUNC(0x02F8EF50, bool, Allocator2D_TryAllocate, (Allocator2D * __this, int32_t width, int32_t height, Allocator2D_Alloc2D * alloc2D, MethodInfo * method)); DO_APP_FUNC(0x02F8F4E0, void, Allocator2D_Free, (Allocator2D * __this, Allocator2D_Alloc2D alloc2D, MethodInfo * method)); DO_APP_FUNC(0x02F8F7B0, void, Allocator2D_BuildAreas, (List_1_UnityEngine_UIElements_UIR_Allocator2D_Area_ * areas, Vector2Int minSize, Vector2Int maxSize, MethodInfo * method)); DO_APP_FUNC(0x02F8F970, Vector2Int, Allocator2D_ComputeMaxAllocSize, (List_1_UnityEngine_UIElements_UIR_Allocator2D_Area_ * areas, int32_t rowHeightBias, MethodInfo * method)); DO_APP_FUNC(0x02F8FAA0, Allocator2D_Row__Array *, Allocator2D_BuildRowArray, (int32_t maxRowHeight, int32_t rowHeightBias, MethodInfo * method)); DO_APP_FUNC(0x02F8FB30, void, Allocator2D_Area__ctor, (Allocator2D_Area * __this, RectInt rect, MethodInfo * method)); DO_APP_FUNC(0x02F8FC00, Allocator2D_Row *, Allocator2D_Row_Create, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB7A0, Allocator2D_Row_Create__MethodInfo); DO_APP_FUNC(0x02F8FC70, void, Allocator2D_Row_Reset, (Allocator2D_Row * row, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB790, Allocator2D_Row_Reset__MethodInfo); DO_APP_FUNC(0x02F8FDB0, void, Allocator2D_Row__ctor, (Allocator2D_Row * __this, MethodInfo * method)); DO_APP_FUNC(0x02F8FDE0, void, Allocator2D_Row__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02F8FF90, void, Allocator2D_Alloc2D__ctor, (Allocator2D_Alloc2D__Boxed * __this, Allocator2D_Row * row, Alloc alloc, int32_t width, int32_t height, MethodInfo * method)); +DO_APP_FUNC(0x02F8FF90, void, Allocator2D_Alloc2D__ctor, (Allocator2D_Alloc2D * __this, Allocator2D_Row * row, Alloc alloc, int32_t width, int32_t height, MethodInfo * method)); DO_APP_FUNC(0x01E8EBD0, int32_t, GradientSettingsAtlas_get_length, (GradientSettingsAtlas * __this, MethodInfo * method)); DO_APP_FUNC(0x00424C90, bool, GradientSettingsAtlas_get_disposed, (GradientSettingsAtlas * __this, MethodInfo * method)); DO_APP_FUNC(0x00424CA0, void, GradientSettingsAtlas_set_disposed, (GradientSettingsAtlas * __this, bool value, MethodInfo * method)); @@ -65806,8 +75849,8 @@ DO_APP_FUNC(0x00424CC0, void, GradientSettingsAtlas_set_MustCommit, (GradientSet DO_APP_FUNC(0x02F90A20, void, GradientSettingsAtlas_Commit, (GradientSettingsAtlas * __this, MethodInfo * method)); DO_APP_FUNC(0x02F90A90, void, GradientSettingsAtlas_PrepareAtlas, (GradientSettingsAtlas * __this, MethodInfo * method)); DO_APP_FUNC(0x02F90E20, void, GradientSettingsAtlas__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02F90F40, void, GradientSettingsAtlas_RawTexture_WriteRawInt2Packed, (GradientSettingsAtlas_RawTexture__Boxed * __this, int32_t v0, int32_t v1, int32_t destX, int32_t destY, MethodInfo * method)); -DO_APP_FUNC(0x02F90FE0, void, GradientSettingsAtlas_RawTexture_WriteRawFloat4Packed, (GradientSettingsAtlas_RawTexture__Boxed * __this, float f0, float f1, float f2, float f3, int32_t destX, int32_t destY, MethodInfo * method)); +DO_APP_FUNC(0x02F90F40, void, GradientSettingsAtlas_RawTexture_WriteRawInt2Packed, (GradientSettingsAtlas_RawTexture * __this, int32_t v0, int32_t v1, int32_t destX, int32_t destY, MethodInfo * method)); +DO_APP_FUNC(0x02F90FE0, void, GradientSettingsAtlas_RawTexture_WriteRawFloat4Packed, (GradientSettingsAtlas_RawTexture * __this, float f0, float f1, float f2, float f3, int32_t destX, int32_t destY, MethodInfo * method)); DO_APP_FUNC(0x02F91090, void, MeshBuilder_MakeBorder, (MeshGenerationContextUtils_BorderParams borderParams, float posZ, MeshBuilder_AllocMeshData meshAlloc, MethodInfo * method)); DO_APP_FUNC(0x02F911B0, void, MeshBuilder_MakeSolidRect, (MeshGenerationContextUtils_RectangleParams rectParams, float posZ, MeshBuilder_AllocMeshData meshAlloc, MethodInfo * method)); DO_APP_FUNC(0x02F91420, void, MeshBuilder_MakeTexturedRect, (MeshGenerationContextUtils_RectangleParams rectParams, float posZ, MeshBuilder_AllocMeshData meshAlloc, ColorPage colorPage, MethodInfo * method)); @@ -65818,23 +75861,28 @@ DO_APP_FUNC(0x02F92250, void, MeshBuilder_MakeText, (MeshInfo meshInfo, Vector2 DO_APP_FUNC(0x02F928B0, void, MeshBuilder_MakeText_1, (NativeArray_1_UnityEngine_UIElements_TextVertex_ uiVertices, Vector2 offset, MeshBuilder_AllocMeshData meshAlloc, MethodInfo * method)); DO_APP_FUNC(0x02F92F80, void, MeshBuilder_UpdateText, (NativeArray_1_UnityEngine_UIElements_TextVertex_ uiVertices, Vector2 offset, Matrix4x4 transform, Color32 xformClipPages, Color32 ids, Color32 flags, Color32 opacityPageSettingIndex, NativeSlice_1_UnityEngine_UIElements_Vertex_ vertices, MethodInfo * method)); DO_APP_FUNC(0x02F93340, void, MeshBuilder_MakeQuad, (Rect rcPosition, Rect rcTexCoord, Color color, float posZ, MeshBuilder_AllocMeshData meshAlloc, ColorPage colorPage, MethodInfo * method)); -DO_APP_FUNC(0x02F939D0, void, MeshBuilder_MakeSlicedQuad, (MeshGenerationContextUtils_RectangleParams rectParams, float posZ, MeshBuilder_AllocMeshData meshAlloc, MethodInfo * method)); -DO_APP_FUNC(0x02F943D0, void, MeshBuilder_MakeVectorGraphics, (MeshGenerationContextUtils_RectangleParams rectParams, int32_t settingIndexOffset, MeshBuilder_AllocMeshData meshAlloc, int32_t finalVertexCount, int32_t finalIndexCount, MethodInfo * method)); -DO_APP_FUNC(0x02F95040, void, MeshBuilder_MakeVectorGraphicsStretchBackground, (Vertex__Array * svgVertices, UInt16__Array * svgIndices, float svgWidth, float svgHeight, Rect targetRect, Rect sourceUV, ScaleMode__Enum scaleMode, Color tint, int32_t settingIndexOffset, MeshBuilder_AllocMeshData meshAlloc, int32_t finalVertexCount, int32_t finalIndexCount, MethodInfo * method)); -DO_APP_FUNC(0x02F95CB0, void, MeshBuilder_SplitTriangle, (Vertex * vertices, uint16_t * indices, int32_t vertexCount, int32_t indexToProcess, int32_t indexCount, float svgWidth, float svgHeight, Vector4 sliceLTRB, int32_t sliceIndex, MethodInfo * method)); +DO_APP_FUNC(0x02F939D0, void, MeshBuilder_MakeSlicedQuad, (MeshGenerationContextUtils_RectangleParams * rectParams, float posZ, MeshBuilder_AllocMeshData meshAlloc, MethodInfo * method)); +DO_APP_FUNC(0x02F943D0, void, MeshBuilder_MakeVectorGraphics, (MeshGenerationContextUtils_RectangleParams rectParams, int32_t settingIndexOffset, MeshBuilder_AllocMeshData meshAlloc, int32_t * finalVertexCount, int32_t * finalIndexCount, MethodInfo * method)); +DO_APP_FUNC(0x02F95040, void, MeshBuilder_MakeVectorGraphicsStretchBackground, (Vertex__Array * svgVertices, UInt16__Array * svgIndices, float svgWidth, float svgHeight, Rect targetRect, Rect sourceUV, ScaleMode__Enum scaleMode, Color tint, int32_t settingIndexOffset, MeshBuilder_AllocMeshData meshAlloc, int32_t * finalVertexCount, int32_t * finalIndexCount, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB6E0, MeshBuilder_MakeVectorGraphicsStretchBackground__MethodInfo); +DO_APP_FUNC(0x02F95CB0, void, MeshBuilder_SplitTriangle, (Vertex * vertices, uint16_t * indices, int32_t * vertexCount, int32_t indexToProcess, int32_t * indexCount, float svgWidth, float svgHeight, Vector4 sliceLTRB, int32_t sliceIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB6D8, MeshBuilder_SplitTriangle__MethodInfo); DO_APP_FUNC(0x02F964B0, void, MeshBuilder_ScaleSplittedTriangles, (Vertex * vertices, int32_t vertexCount, float svgWidth, float svgHeight, Rect targetRect, Vector4 sliceLTRB, MethodInfo * method)); DO_APP_FUNC(0x02F96750, void, MeshBuilder_MakeVectorGraphics9SliceBackground, (Vertex__Array * svgVertices, UInt16__Array * svgIndices, float svgWidth, float svgHeight, Rect targetRect, Vector4 sliceLTRB, bool stretch, Color tint, int32_t settingIndexOffset, MeshBuilder_AllocMeshData meshAlloc, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB6D0, MeshBuilder_MakeVectorGraphics9SliceBackground__MethodInfo); DO_APP_FUNC(0x02F97350, MeshBuilder_ClipCounts, MeshBuilder_UpperBoundApproximateRectClippingResults, (Vertex__Array * vertices, UInt16__Array * indices, Vector4 clipRectMinMax, MethodInfo * method)); -DO_APP_FUNC(0x02F975C0, void, MeshBuilder_RectClip, (Vertex__Array * vertices, UInt16__Array * indices, Vector4 clipRectMinMax, MeshWriteData * mwd, MeshBuilder_ClipCounts cc, int32_t newVertexCount, MethodInfo * method)); -DO_APP_FUNC(0x02F97B20, void, MeshBuilder_RectClipTriangle, (Vertex * vt, uint16_t * it, Vector4 clipRectMinMax, MeshWriteData * mwd, uint16_t nextNewVertex, MethodInfo * method)); +DO_APP_FUNC(0x02F975C0, void, MeshBuilder_RectClip, (Vertex__Array * vertices, UInt16__Array * indices, Vector4 clipRectMinMax, MeshWriteData * mwd, MeshBuilder_ClipCounts cc, int32_t * newVertexCount, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB6F0, MeshBuilder_RectClip__MethodInfo); +DO_APP_FUNC(0x02F97B20, void, MeshBuilder_RectClipTriangle, (Vertex * vt, uint16_t * it, Vector4 clipRectMinMax, MeshWriteData * mwd, uint16_t * nextNewVertex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB6E8, MeshBuilder_RectClipTriangle__MethodInfo); DO_APP_FUNC(0x02F98AD0, Vector3, MeshBuilder_GetVertexBaryCentricCoordinates, (Vertex * vt, float x, float y, MethodInfo * method)); DO_APP_FUNC(0x02F98C40, Vertex, MeshBuilder_InterpolateVertexInTriangle, (Vertex * vt, float x, float y, Vector3 uvw, MethodInfo * method)); DO_APP_FUNC(0x02F98F20, Vertex, MeshBuilder_InterpolateVertexInTriangleEdge, (Vertex * vt, int32_t e0, int32_t e1, float t, MethodInfo * method)); DO_APP_FUNC(0x02F99210, float, MeshBuilder_IntersectSegments, (float ax, float ay, float bx, float by, float cx, float cy, float dx, float dy, MethodInfo * method)); DO_APP_FUNC(0x02F99350, void, MeshBuilder__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02F99930, MeshWriteData *, MeshBuilder_AllocMeshData_Allocate, (MeshBuilder_AllocMeshData__Boxed * __this, uint32_t vertexCount, uint32_t indexCount, MethodInfo * method)); +DO_APP_FUNC(0x02F99930, MeshWriteData *, MeshBuilder_AllocMeshData_Allocate, (MeshBuilder_AllocMeshData * __this, uint32_t vertexCount, uint32_t indexCount, MethodInfo * method)); DO_APP_FUNC(0x02F99960, void, MeshBuilder_AllocMeshData_Allocator__ctor, (MeshBuilder_AllocMeshData_Allocator * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EF9C0, MeshWriteData *, MeshBuilder_AllocMeshData_Allocator_Invoke, (MeshBuilder_AllocMeshData_Allocator * __this, uint32_t vertexCount, uint32_t indexCount, MeshBuilder_AllocMeshData allocatorData, MethodInfo * method)); +DO_APP_FUNC(0x003EF9C0, MeshWriteData *, MeshBuilder_AllocMeshData_Allocator_Invoke, (MeshBuilder_AllocMeshData_Allocator * __this, uint32_t vertexCount, uint32_t indexCount, MeshBuilder_AllocMeshData * allocatorData, MethodInfo * method)); DO_APP_FUNC(0x02F99A90, void, RenderChain__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02F9A1F0, void, RenderChain__ctor, (RenderChain * __this, BaseVisualElementPanel * panel, MethodInfo * method)); DO_APP_FUNC(0x02F9AA70, void, RenderChain_Constructor, (RenderChain * __this, BaseVisualElementPanel * panelObj, UIRenderDevice * deviceObj, AtlasBase * atlas, VectorImageManager * vectorImageMan, MethodInfo * method)); @@ -65845,17 +75893,27 @@ DO_APP_FUNC(0x02F9B940, void, RenderChain_Dispose, (RenderChain * __this, Method DO_APP_FUNC(0x02F9B9B0, void, RenderChain_Dispose_1, (RenderChain * __this, bool disposing, MethodInfo * method)); DO_APP_FUNC(0x02F9B9E0, void, RenderChain_ProcessChanges, (RenderChain * __this, MethodInfo * method)); DO_APP_FUNC(0x02F9C290, void, RenderChain_Render, (RenderChain * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB5A0, RenderChain_Render__MethodInfo); DO_APP_FUNC(0x02F9C820, void, RenderChain_ProcessTextRegen, (RenderChain * __this, bool timeSliced, MethodInfo * method)); DO_APP_FUNC(0x02F9CCA0, void, RenderChain_UIEOnChildAdded, (RenderChain * __this, VisualElement * ve, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB5B0, RenderChain_UIEOnChildAdded__MethodInfo); DO_APP_FUNC(0x02F9CEE0, void, RenderChain_UIEOnChildrenReordered, (RenderChain * __this, VisualElement * ve, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB5D8, RenderChain_UIEOnChildrenReordered__MethodInfo); DO_APP_FUNC(0x02F9D2E0, void, RenderChain_UIEOnChildRemoving, (RenderChain * __this, VisualElement * ve, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB5C8, RenderChain_UIEOnChildRemoving__MethodInfo); DO_APP_FUNC(0x02F9D400, void, RenderChain_StopTrackingGroupTransformElement, (RenderChain * __this, VisualElement * ve, MethodInfo * method)); DO_APP_FUNC(0x02F9D460, void, RenderChain_UIEOnRenderHintsChanged, (RenderChain * __this, VisualElement * ve, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB600, RenderChain_UIEOnRenderHintsChanged__MethodInfo); DO_APP_FUNC(0x02F9D530, void, RenderChain_UIEOnClippingChanged, (RenderChain * __this, VisualElement * ve, bool hierarchical, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB5F0, RenderChain_UIEOnClippingChanged__MethodInfo); DO_APP_FUNC(0x02F9D5D0, void, RenderChain_UIEOnOpacityChanged, (RenderChain * __this, VisualElement * ve, bool hierarchical, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB5E0, RenderChain_UIEOnOpacityChanged__MethodInfo); DO_APP_FUNC(0x02F9D680, void, RenderChain_UIEOnColorChanged, (RenderChain * __this, VisualElement * ve, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB560, RenderChain_UIEOnColorChanged__MethodInfo); DO_APP_FUNC(0x02F9D720, void, RenderChain_UIEOnTransformOrSizeChanged, (RenderChain * __this, VisualElement * ve, bool transformChanged, bool clipRectSizeChanged, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB550, RenderChain_UIEOnTransformOrSizeChanged__MethodInfo); DO_APP_FUNC(0x02F9D7D0, void, RenderChain_UIEOnVisualsChanged, (RenderChain * __this, VisualElement * ve, bool hierarchical, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB548, RenderChain_UIEOnVisualsChanged__MethodInfo); DO_APP_FUNC(0x00634A10, BaseVisualElementPanel *, RenderChain_get_panel, (RenderChain * __this, MethodInfo * method)); DO_APP_FUNC(0x029593E0, void, RenderChain_set_panel, (RenderChain * __this, BaseVisualElementPanel * value, MethodInfo * method)); DO_APP_FUNC(0x00587090, UIRenderDevice *, RenderChain_get_device, (RenderChain * __this, MethodInfo * method)); @@ -65885,18 +75943,21 @@ DO_APP_FUNC(0x02F9E940, void, RenderChain_RemoveTextElement, (RenderChain * __th DO_APP_FUNC(0x02F9EB70, void, RenderChain_OnGroupTransformElementChangedTransform, (RenderChain * __this, VisualElement * ve, MethodInfo * method)); DO_APP_FUNC(0x02F9ED60, RenderChain_RenderNodeData, RenderChain_AccessRenderNodeData, (void * obj, MethodInfo * method)); DO_APP_FUNC(0x02F9EEF0, void, RenderChain_OnRenderNodeExecute, (void * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB758, RenderChain_OnRenderNodeExecute__MethodInfo); DO_APP_FUNC(0x02F9F130, void, RenderChain_OnRegisterIntermediateRenderers, (Camera * camera, MethodInfo * method)); -DO_APP_FUNC(0x02F9FBB0, void, RenderChain_OnRegisterIntermediateRendererMat, (BaseRuntimePanel * rtp, RenderChain * renderChain, RenderChain_RenderNodeData rnd, Camera * camera, int32_t sameDistanceSortPriority, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB750, RenderChain_OnRegisterIntermediateRenderers__MethodInfo); +DO_APP_FUNC(0x02F9FBB0, void, RenderChain_OnRegisterIntermediateRendererMat, (BaseRuntimePanel * rtp, RenderChain * renderChain, RenderChain_RenderNodeData * rnd, Camera * camera, int32_t sameDistanceSortPriority, MethodInfo * method)); DO_APP_FUNC(0x02FA0130, void, RenderChain_RepaintTexturedElements, (RenderChain * __this, MethodInfo * method)); DO_APP_FUNC(0x02FA0280, void, RenderChain_OnFontReset, (RenderChain * __this, Font * font, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB6C8, RenderChain_OnFontReset__MethodInfo); DO_APP_FUNC(0x02FA0290, void, RenderChain_AppendTexture, (RenderChain * __this, VisualElement * ve, Texture * src, TextureId id, bool isAtlas, MethodInfo * method)); DO_APP_FUNC(0x02FA0460, void, RenderChain_ResetTextures, (RenderChain * __this, VisualElement * ve, MethodInfo * method)); DO_APP_FUNC(0x02FA05E0, void, RenderChain_DrawStats, (RenderChain * __this, MethodInfo * method)); DO_APP_FUNC(0x02FA1070, VisualElement *, RenderChain_GetFirstElementInPanel, (VisualElement * ve, MethodInfo * method)); -DO_APP_FUNC(0x02FA10A0, void, RenderChain_DepthOrderedDirtyTracking_EnsureFits, (RenderChain_DepthOrderedDirtyTracking__Boxed * __this, int32_t maxDepth, MethodInfo * method)); -DO_APP_FUNC(0x02FA11D0, void, RenderChain_DepthOrderedDirtyTracking_RegisterDirty, (RenderChain_DepthOrderedDirtyTracking__Boxed * __this, VisualElement * ve, RenderDataDirtyTypes__Enum dirtyTypes, RenderDataDirtyTypeClasses__Enum dirtyTypeClass, MethodInfo * method)); -DO_APP_FUNC(0x02FA14E0, void, RenderChain_DepthOrderedDirtyTracking_ClearDirty, (RenderChain_DepthOrderedDirtyTracking__Boxed * __this, VisualElement * ve, RenderDataDirtyTypes__Enum dirtyTypesInverse, MethodInfo * method)); -DO_APP_FUNC(0x02FA1880, void, RenderChain_DepthOrderedDirtyTracking_Reset, (RenderChain_DepthOrderedDirtyTracking__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02FA10A0, void, RenderChain_DepthOrderedDirtyTracking_EnsureFits, (RenderChain_DepthOrderedDirtyTracking * __this, int32_t maxDepth, MethodInfo * method)); +DO_APP_FUNC(0x02FA11D0, void, RenderChain_DepthOrderedDirtyTracking_RegisterDirty, (RenderChain_DepthOrderedDirtyTracking * __this, VisualElement * ve, RenderDataDirtyTypes__Enum dirtyTypes, RenderDataDirtyTypeClasses__Enum dirtyTypeClass, MethodInfo * method)); +DO_APP_FUNC(0x02FA14E0, void, RenderChain_DepthOrderedDirtyTracking_ClearDirty, (RenderChain_DepthOrderedDirtyTracking * __this, VisualElement * ve, RenderDataDirtyTypes__Enum dirtyTypesInverse, MethodInfo * method)); +DO_APP_FUNC(0x02FA1880, void, RenderChain_DepthOrderedDirtyTracking_Reset, (RenderChain_DepthOrderedDirtyTracking * __this, MethodInfo * method)); DO_APP_FUNC(0x02FA18F0, int32_t, RenderChain_RenderChainStaticIndexAllocator_AllocateIndex, (RenderChain * renderChain, MethodInfo * method)); DO_APP_FUNC(0x02FA1B00, void, RenderChain_RenderChainStaticIndexAllocator_FreeIndex, (int32_t index, MethodInfo * method)); DO_APP_FUNC(0x02FA1BB0, RenderChain *, RenderChain_RenderChainStaticIndexAllocator_AccessIndex, (int32_t index, MethodInfo * method)); @@ -65904,8 +75965,10 @@ DO_APP_FUNC(0x02FA1C50, void, RenderChain_RenderChainStaticIndexAllocator__cctor DO_APP_FUNC(0x02FA1DB0, void, RenderChain_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, RenderChain_c__ctor, (RenderChain_c * __this, MethodInfo * method)); DO_APP_FUNC(0x02FA1E60, RenderChainCommand *, RenderChain_c___ctor_b__37_0, (RenderChain_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB6A8, RenderChain_c___ctor_b__37_0__MethodInfo); DO_APP_FUNC(0x003AE050, void, RenderChain_c___ctor_b__37_1, (RenderChain_c * __this, RenderChainCommand * cmd, MethodInfo * method)); -DO_APP_FUNC(0x02FA1ED0, RenderChainCommand *, RenderChainVEData_get_lastClosingOrLastCommand, (RenderChainVEData__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB690, RenderChain_c___ctor_b__37_1__MethodInfo); +DO_APP_FUNC(0x02FA1ED0, RenderChainCommand *, RenderChainVEData_get_lastClosingOrLastCommand, (RenderChainVEData * __this, MethodInfo * method)); DO_APP_FUNC(0x02FA1EE0, bool, RenderChainVEData_AllocatesID, (BMPAlloc alloc, MethodInfo * method)); DO_APP_FUNC(0x02FA1F40, bool, RenderChainVEData_InheritsID, (BMPAlloc alloc, MethodInfo * method)); DO_APP_FUNC(0x003BCD20, bool, BaseShaderInfoStorage_get_disposed, (BaseShaderInfoStorage * __this, MethodInfo * method)); @@ -65919,41 +75982,45 @@ DO_APP_FUNC(0x02FA2260, void, ShaderInfoStorageRGBA32__cctor, (MethodInfo * meth DO_APP_FUNC(0x02FA2490, void, ShaderInfoStorageRGBA32_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ShaderInfoStorageRGBA32_c__ctor, (ShaderInfoStorageRGBA32_c * __this, MethodInfo * method)); DO_APP_FUNC(0x02FA2540, Color32, ShaderInfoStorageRGBA32_c___cctor_b__2_0, (ShaderInfoStorageRGBA32_c * __this, Color c, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB400, ShaderInfoStorageRGBA32_c___cctor_b__2_0__MethodInfo); DO_APP_FUNC(0x02FA2560, void, ShaderInfoStorageRGBAFloat__ctor, (ShaderInfoStorageRGBAFloat * __this, int32_t initialSize, int32_t maxSize, MethodInfo * method)); DO_APP_FUNC(0x02FA2610, void, ShaderInfoStorageRGBAFloat__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02FA2840, void, ShaderInfoStorageRGBAFloat_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ShaderInfoStorageRGBAFloat_c__ctor, (ShaderInfoStorageRGBAFloat_c * __this, MethodInfo * method)); DO_APP_FUNC(0x00F83EB0, Color, ShaderInfoStorageRGBAFloat_c___cctor_b__2_0, (ShaderInfoStorageRGBAFloat_c * __this, Color c, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB360, ShaderInfoStorageRGBAFloat_c___cctor_b__2_0__MethodInfo); DO_APP_FUNC(0x02FA28F0, void, Shaders__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02FA2E60, void, Tessellation_TessellateRect, (MeshGenerationContextUtils_RectangleParams rectParams, float posZ, MeshBuilder_AllocMeshData meshAlloc, bool computeUVs, MethodInfo * method)); DO_APP_FUNC(0x02FA35C0, void, Tessellation_TessellateQuad, (MeshGenerationContextUtils_RectangleParams rectParams, float posZ, MeshBuilder_AllocMeshData meshAlloc, MethodInfo * method)); DO_APP_FUNC(0x02FA3BE0, void, Tessellation_TessellateBorder, (MeshGenerationContextUtils_BorderParams borderParams, float posZ, MeshBuilder_AllocMeshData meshAlloc, MethodInfo * method)); -DO_APP_FUNC(0x02FA42A0, void, Tessellation_TessellateRoundedCorners, (MeshGenerationContextUtils_RectangleParams rectParams, float posZ, MeshWriteData * mesh, ColorPage colorPage, uint16_t vertexCount, uint16_t indexCount, bool countOnly, MethodInfo * method)); -DO_APP_FUNC(0x02FA47F0, void, Tessellation_TessellateRoundedBorders, (MeshGenerationContextUtils_BorderParams border, float posZ, MeshWriteData * mesh, uint16_t vertexCount, uint16_t indexCount, bool countOnly, MethodInfo * method)); -DO_APP_FUNC(0x02FA4EA0, void, Tessellation_TessellateRoundedCorner, (Rect rect, Color32 color, float posZ, Vector2 radius, MeshWriteData * mesh, ColorPage colorPage, uint16_t vertexCount, uint16_t indexCount, bool countOnly, MethodInfo * method)); -DO_APP_FUNC(0x02FA52F0, void, Tessellation_TessellateRoundedBorder, (Rect rect, Color32 leftColor, Color32 topColor, float posZ, Vector2 radius, float leftWidth, float topWidth, MeshWriteData * mesh, ColorPage leftColorPage, ColorPage topColorPage, uint16_t vertexCount, uint16_t indexCount, bool countOnly, MethodInfo * method)); +DO_APP_FUNC(0x02FA42A0, void, Tessellation_TessellateRoundedCorners, (MeshGenerationContextUtils_RectangleParams * rectParams, float posZ, MeshWriteData * mesh, ColorPage colorPage, uint16_t * vertexCount, uint16_t * indexCount, bool countOnly, MethodInfo * method)); +DO_APP_FUNC(0x02FA47F0, void, Tessellation_TessellateRoundedBorders, (MeshGenerationContextUtils_BorderParams * border, float posZ, MeshWriteData * mesh, uint16_t * vertexCount, uint16_t * indexCount, bool countOnly, MethodInfo * method)); +DO_APP_FUNC(0x02FA4EA0, void, Tessellation_TessellateRoundedCorner, (Rect rect, Color32 color, float posZ, Vector2 radius, MeshWriteData * mesh, ColorPage colorPage, uint16_t * vertexCount, uint16_t * indexCount, bool countOnly, MethodInfo * method)); +DO_APP_FUNC(0x02FA52F0, void, Tessellation_TessellateRoundedBorder, (Rect rect, Color32 leftColor, Color32 topColor, float posZ, Vector2 radius, float leftWidth, float topWidth, MeshWriteData * mesh, ColorPage leftColorPage, ColorPage topColorPage, uint16_t * vertexCount, uint16_t * indexCount, bool countOnly, MethodInfo * method)); DO_APP_FUNC(0x02FA5C40, Vector2, Tessellation_IntersectLines, (Vector2 p0, Vector2 p1, Vector2 p2, Vector2 p3, MethodInfo * method)); DO_APP_FUNC(0x02FA5DE0, int32_t, Tessellation_LooseCompare, (float a, float b, MethodInfo * method)); -DO_APP_FUNC(0x02FA5E90, void, Tessellation_TessellateComplexBorderCorner, (Rect rect, Vector2 radius, float leftWidth, float topWidth, Color32 leftColor, Color32 topColor, float posZ, MeshWriteData * mesh, ColorPage leftColorPage, ColorPage topColorPage, uint16_t vertexCount, uint16_t indexCount, bool countOnly, MethodInfo * method)); -DO_APP_FUNC(0x02FA6680, void, Tessellation_TessellateQuad_1, (Rect rect, Color32 color, float posZ, MeshWriteData * mesh, ColorPage colorPage, uint16_t vertexCount, uint16_t indexCount, bool countOnly, MethodInfo * method)); -DO_APP_FUNC(0x02FA6C70, void, Tessellation_TessellateQuad_2, (Rect rect, Tessellation_Edges__Enum smoothedEdges, Color32 color, float posZ, MeshWriteData * mesh, ColorPage colorPage, uint16_t vertexCount, uint16_t indexCount, bool countOnly, MethodInfo * method)); +DO_APP_FUNC(0x02FA5E90, void, Tessellation_TessellateComplexBorderCorner, (Rect rect, Vector2 radius, float leftWidth, float topWidth, Color32 leftColor, Color32 topColor, float posZ, MeshWriteData * mesh, ColorPage leftColorPage, ColorPage topColorPage, uint16_t * vertexCount, uint16_t * indexCount, bool countOnly, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB340, Tessellation_TessellateComplexBorderCorner__MethodInfo); +DO_APP_FUNC(0x02FA6680, void, Tessellation_TessellateQuad_1, (Rect rect, Color32 color, float posZ, MeshWriteData * mesh, ColorPage colorPage, uint16_t * vertexCount, uint16_t * indexCount, bool countOnly, MethodInfo * method)); +DO_APP_FUNC(0x02FA6C70, void, Tessellation_TessellateQuad_2, (Rect rect, Tessellation_Edges__Enum smoothedEdges, Color32 color, float posZ, MeshWriteData * mesh, ColorPage colorPage, uint16_t * vertexCount, uint16_t * indexCount, bool countOnly, MethodInfo * method)); DO_APP_FUNC(0x02FA6D50, int32_t, Tessellation_EdgesCount, (Tessellation_Edges__Enum edges, MethodInfo * method)); -DO_APP_FUNC(0x02FA6D90, void, Tessellation_TessellateQuad_3, (Rect rect, Tessellation_Edges__Enum smoothedEdges, Vector2 * offsets, Color32 color, float posZ, MeshWriteData * mesh, ColorPage colorPage, uint16_t vertexCount, uint16_t indexCount, bool countOnly, MethodInfo * method)); -DO_APP_FUNC(0x02FA78D0, void, Tessellation_EncodeStraightArc, (Vertex v0, Vertex v1, Vertex center, float radius, MethodInfo * method)); -DO_APP_FUNC(0x02FA7AC0, void, Tessellation_ExpandTriangle, (Vector3 v0, Vector3 v1, Vector3 center, float factor, MethodInfo * method)); -DO_APP_FUNC(0x02FA7D40, void, Tessellation_TessellateQuadSingleEdge, (Rect rect, Tessellation_Edges__Enum smoothedEdge, Color32 color, float posZ, MeshWriteData * mesh, ColorPage colorPage, uint16_t vertexCount, uint16_t indexCount, bool countOnly, MethodInfo * method)); -DO_APP_FUNC(0x02FA8700, void, Tessellation_TessellateStraightBorder, (Rect rect, Tessellation_Edges__Enum smoothedEdge, float miterOffset, Color color, float posZ, MeshWriteData * mesh, ColorPage colorPage, uint16_t vertexCount, uint16_t indexCount, bool countOnly, MethodInfo * method)); -DO_APP_FUNC(0x02FA97B0, Vector4, Tessellation_GetInterpolatedCircle, (Vector2 p, Vertex v0, Vertex v1, Vertex v2, MethodInfo * method)); -DO_APP_FUNC(0x02FA9A60, void, Tessellation_ComputeBarycentricCoordinates, (Vector2 p, Vector2 a, Vector2 b, Vector2 c, float u, float v, float w, MethodInfo * method)); -DO_APP_FUNC(0x02FA9BF0, void, Tessellation_TessellateFilledFan, (Vector2 center, Vector2 radius, Vector2 miterOffset, float leftWidth, float topWidth, Color32 leftColor, Color32 topColor, float posZ, MeshWriteData * mesh, ColorPage leftColorPage, ColorPage topColorPage, uint16_t vertexCount, uint16_t indexCount, bool countOnly, MethodInfo * method)); -DO_APP_FUNC(0x02FAA7B0, void, Tessellation_TessellateBorderedFan, (Vector2 center, Vector2 outerRadius, float leftWidth, float topWidth, Color32 leftColor, Color32 topColor, float posZ, MeshWriteData * mesh, ColorPage leftColorPage, ColorPage topColorPage, uint16_t vertexCount, uint16_t indexCount, bool countOnly, MethodInfo * method)); +DO_APP_FUNC(0x02FA6D90, void, Tessellation_TessellateQuad_3, (Rect rect, Tessellation_Edges__Enum smoothedEdges, Vector2 * offsets, Color32 color, float posZ, MeshWriteData * mesh, ColorPage colorPage, uint16_t * vertexCount, uint16_t * indexCount, bool countOnly, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB348, Tessellation_TessellateQuad_3__MethodInfo); +DO_APP_FUNC(0x02FA78D0, void, Tessellation_EncodeStraightArc, (Vertex * v0, Vertex * v1, Vertex * center, float radius, MethodInfo * method)); +DO_APP_FUNC(0x02FA7AC0, void, Tessellation_ExpandTriangle, (Vector3 * v0, Vector3 * v1, Vector3 center, float factor, MethodInfo * method)); +DO_APP_FUNC(0x02FA7D40, void, Tessellation_TessellateQuadSingleEdge, (Rect rect, Tessellation_Edges__Enum smoothedEdge, Color32 color, float posZ, MeshWriteData * mesh, ColorPage colorPage, uint16_t * vertexCount, uint16_t * indexCount, bool countOnly, MethodInfo * method)); +DO_APP_FUNC(0x02FA8700, void, Tessellation_TessellateStraightBorder, (Rect rect, Tessellation_Edges__Enum smoothedEdge, float miterOffset, Color color, float posZ, MeshWriteData * mesh, ColorPage colorPage, uint16_t * vertexCount, uint16_t * indexCount, bool countOnly, MethodInfo * method)); +DO_APP_FUNC(0x02FA97B0, Vector4, Tessellation_GetInterpolatedCircle, (Vector2 p, Vertex * v0, Vertex * v1, Vertex * v2, MethodInfo * method)); +DO_APP_FUNC(0x02FA9A60, void, Tessellation_ComputeBarycentricCoordinates, (Vector2 p, Vector2 a, Vector2 b, Vector2 c, float * u, float * v, float * w, MethodInfo * method)); +DO_APP_FUNC(0x02FA9BF0, void, Tessellation_TessellateFilledFan, (Vector2 center, Vector2 radius, Vector2 miterOffset, float leftWidth, float topWidth, Color32 leftColor, Color32 topColor, float posZ, MeshWriteData * mesh, ColorPage leftColorPage, ColorPage topColorPage, uint16_t * vertexCount, uint16_t * indexCount, bool countOnly, MethodInfo * method)); +DO_APP_FUNC(0x02FAA7B0, void, Tessellation_TessellateBorderedFan, (Vector2 center, Vector2 outerRadius, float leftWidth, float topWidth, Color32 leftColor, Color32 topColor, float posZ, MeshWriteData * mesh, ColorPage leftColorPage, ColorPage topColorPage, uint16_t * vertexCount, uint16_t * indexCount, bool countOnly, MethodInfo * method)); DO_APP_FUNC(0x02FAAFC0, void, Tessellation_MirrorVertices, (Rect rect, NativeSlice_1_UnityEngine_UIElements_Vertex_ vertices, int32_t vertexStart, int32_t vertexCount, bool flipHorizontal, MethodInfo * method)); DO_APP_FUNC(0x02FAB370, void, Tessellation_FlipWinding, (NativeSlice_1_System_UInt16_ indices, int32_t indexStart, int32_t indexCount, MethodInfo * method)); DO_APP_FUNC(0x02FAB5B0, void, Tessellation_ComputeUVs, (Rect tessellatedRect, Rect textureRect, Rect uvRegion, NativeSlice_1_UnityEngine_UIElements_Vertex_ vertices, MethodInfo * method)); DO_APP_FUNC(0x02FAB8C0, void, Tessellation__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02E77170, bool, TextCoreSettings_Equals, (TextCoreSettings__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02E77220, bool, TextCoreSettings_Equals_1, (TextCoreSettings__Boxed * __this, TextCoreSettings other, MethodInfo * method)); -DO_APP_FUNC(0x02E773C0, int32_t, TextCoreSettings_GetHashCode, (TextCoreSettings__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02E77170, bool, TextCoreSettings_Equals, (TextCoreSettings * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02E77220, bool, TextCoreSettings_Equals_1, (TextCoreSettings * __this, TextCoreSettings other, MethodInfo * method)); +DO_APP_FUNC(0x02E773C0, int32_t, TextCoreSettings_GetHashCode, (TextCoreSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x00436BD0, bool, TextureBlitter_get_disposed, (TextureBlitter * __this, MethodInfo * method)); DO_APP_FUNC(0x00A80AB0, void, TextureBlitter_set_disposed, (TextureBlitter * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x02E77470, void, TextureBlitter_Dispose, (TextureBlitter * __this, MethodInfo * method)); @@ -65980,14 +76047,18 @@ DO_APP_FUNC(0x02E79E60, void, VectorImageRenderInfoPool__ctor, (VectorImageRende DO_APP_FUNC(0x02E7A120, void, VectorImageRenderInfoPool_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, VectorImageRenderInfoPool_c__ctor, (VectorImageRenderInfoPool_c * __this, MethodInfo * method)); DO_APP_FUNC(0x02E7A1D0, VectorImageRenderInfo *, VectorImageRenderInfoPool_c___ctor_b__0_0, (VectorImageRenderInfoPool_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD84A0, VectorImageRenderInfoPool_c___ctor_b__0_0__MethodInfo); DO_APP_FUNC(0x02E7A240, void, VectorImageRenderInfoPool_c___ctor_b__0_1, (VectorImageRenderInfoPool_c * __this, VectorImageRenderInfo * vectorImageInfo, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD8470, VectorImageRenderInfoPool_c___ctor_b__0_1__MethodInfo); DO_APP_FUNC(0x02E7A2C0, void, VectorImageRenderInfo_Reset, (VectorImageRenderInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x02E7A320, void, VectorImageRenderInfo__ctor, (VectorImageRenderInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x02E7A350, void, GradientRemapPool__ctor, (GradientRemapPool * __this, MethodInfo * method)); DO_APP_FUNC(0x02E7A610, void, GradientRemapPool_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GradientRemapPool_c__ctor, (GradientRemapPool_c * __this, MethodInfo * method)); DO_APP_FUNC(0x02E7A6C0, GradientRemap *, GradientRemapPool_c___ctor_b__0_0, (GradientRemapPool_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD8298, GradientRemapPool_c___ctor_b__0_0__MethodInfo); DO_APP_FUNC(0x02E7A730, void, GradientRemapPool_c___ctor_b__0_1, (GradientRemapPool_c * __this, GradientRemap * gradientRemap, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD8268, GradientRemapPool_c___ctor_b__0_1__MethodInfo); DO_APP_FUNC(0x02E7A7B0, void, GradientRemap_Reset, (GradientRemap * __this, MethodInfo * method)); DO_APP_FUNC(0x02E7A820, void, GradientRemap__ctor, (GradientRemap * __this, MethodInfo * method)); DO_APP_FUNC(0x02E7A850, Texture2D *, VectorImageManager_get_atlas, (VectorImageManager * __this, MethodInfo * method)); @@ -66000,50 +76071,51 @@ DO_APP_FUNC(0x02E7AF20, void, VectorImageManager_Commit, (VectorImageManager * _ DO_APP_FUNC(0x02E7AFB0, GradientRemap *, VectorImageManager_AddUser, (VectorImageManager * __this, VectorImage * vi, VisualElement * context, MethodInfo * method)); DO_APP_FUNC(0x02E7B150, VectorImageRenderInfo *, VectorImageManager_Register, (VectorImageManager * __this, VectorImage * vi, VisualElement * context, MethodInfo * method)); DO_APP_FUNC(0x02E7B630, void, VectorImageManager__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02E7B880, bool, BMPAlloc_Equals, (BMPAlloc__Boxed * __this, BMPAlloc other, MethodInfo * method)); -DO_APP_FUNC(0x02E7B8A0, bool, BMPAlloc_IsValid, (BMPAlloc__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02E7B8B0, String *, BMPAlloc_ToString, (BMPAlloc__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02E7B880, bool, BMPAlloc_Equals, (BMPAlloc * __this, BMPAlloc other, MethodInfo * method)); +DO_APP_FUNC(0x02E7B8A0, bool, BMPAlloc_IsValid, (BMPAlloc * __this, MethodInfo * method)); +DO_APP_FUNC(0x02E7B8B0, String *, BMPAlloc_ToString, (BMPAlloc * __this, MethodInfo * method)); DO_APP_FUNC(0x02E7B9E0, void, BMPAlloc__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02E7BA40, void, BitmapAllocator32_Construct, (BitmapAllocator32__Boxed * __this, int32_t pageHeight, int32_t entryWidth, int32_t entryHeight, MethodInfo * method)); -DO_APP_FUNC(0x02E7BDF0, void, BitmapAllocator32_ForceFirstAlloc, (BitmapAllocator32__Boxed * __this, uint16_t firstPageX, uint16_t firstPageY, MethodInfo * method)); -DO_APP_FUNC(0x02E7BF60, BMPAlloc, BitmapAllocator32_Allocate, (BitmapAllocator32__Boxed * __this, BaseShaderInfoStorage * storage, MethodInfo * method)); -DO_APP_FUNC(0x02E7C490, void, BitmapAllocator32_Free, (BitmapAllocator32__Boxed * __this, BMPAlloc alloc, MethodInfo * method)); -DO_APP_FUNC(0x011227E0, int32_t, BitmapAllocator32_get_entryWidth, (BitmapAllocator32__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x015C0B10, int32_t, BitmapAllocator32_get_entryHeight, (BitmapAllocator32__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02E7C610, void, BitmapAllocator32_GetAllocPageAtlasLocation, (BitmapAllocator32__Boxed * __this, int32_t page, uint16_t x, uint16_t y, MethodInfo * method)); +DO_APP_FUNC(0x02E7BA40, void, BitmapAllocator32_Construct, (BitmapAllocator32 * __this, int32_t pageHeight, int32_t entryWidth, int32_t entryHeight, MethodInfo * method)); +DO_APP_FUNC(0x02E7BDF0, void, BitmapAllocator32_ForceFirstAlloc, (BitmapAllocator32 * __this, uint16_t firstPageX, uint16_t firstPageY, MethodInfo * method)); +DO_APP_FUNC(0x02E7BF60, BMPAlloc, BitmapAllocator32_Allocate, (BitmapAllocator32 * __this, BaseShaderInfoStorage * storage, MethodInfo * method)); +DO_APP_FUNC(0x02E7C490, void, BitmapAllocator32_Free, (BitmapAllocator32 * __this, BMPAlloc alloc, MethodInfo * method)); +DO_APP_FUNC(0x011227E0, int32_t, BitmapAllocator32_get_entryWidth, (BitmapAllocator32 * __this, MethodInfo * method)); +DO_APP_FUNC(0x015C0B10, int32_t, BitmapAllocator32_get_entryHeight, (BitmapAllocator32 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02E7C610, void, BitmapAllocator32_GetAllocPageAtlasLocation, (BitmapAllocator32 * __this, int32_t page, uint16_t * x, uint16_t * y, MethodInfo * method)); DO_APP_FUNC(0x02E7C6B0, uint8_t, BitmapAllocator32_CountTrailingZeroes, (uint32_t val, MethodInfo * method)); DO_APP_FUNC(0x02E7C740, int32_t, UIRVEShaderInfoAllocator_get_pageWidth, (MethodInfo * method)); DO_APP_FUNC(0x02E7C750, int32_t, UIRVEShaderInfoAllocator_get_pageHeight, (MethodInfo * method)); -DO_APP_FUNC(0x02E7C760, Vector2Int, UIRVEShaderInfoAllocator_AllocToTexelCoord, (BitmapAllocator32 allocator, BMPAlloc alloc, MethodInfo * method)); +DO_APP_FUNC(0x02E7C760, Vector2Int, UIRVEShaderInfoAllocator_AllocToTexelCoord, (BitmapAllocator32 * allocator, BMPAlloc alloc, MethodInfo * method)); DO_APP_FUNC(0x02E7C810, int32_t, UIRVEShaderInfoAllocator_AllocToConstantBufferIndex, (BMPAlloc alloc, MethodInfo * method)); -DO_APP_FUNC(0x02E7C870, bool, UIRVEShaderInfoAllocator_AtlasRectMatchesPage, (BitmapAllocator32 allocator, BMPAlloc defAlloc, RectInt atlasRect, MethodInfo * method)); -DO_APP_FUNC(0x02E7C9B0, NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4_, UIRVEShaderInfoAllocator_get_transformConstants, (UIRVEShaderInfoAllocator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02E7CAD0, NativeSlice_1_UnityEngine_Vector4_, UIRVEShaderInfoAllocator_get_clipRectConstants, (UIRVEShaderInfoAllocator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02E7CBF0, Texture *, UIRVEShaderInfoAllocator_get_atlas, (UIRVEShaderInfoAllocator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02E7CC90, void, UIRVEShaderInfoAllocator_Construct, (UIRVEShaderInfoAllocator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02E7D110, void, UIRVEShaderInfoAllocator_ReallyCreateStorage, (UIRVEShaderInfoAllocator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02E7D970, void, UIRVEShaderInfoAllocator_Dispose, (UIRVEShaderInfoAllocator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02E7DAC0, void, UIRVEShaderInfoAllocator_IssuePendingStorageChanges, (UIRVEShaderInfoAllocator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02E7DAE0, BMPAlloc, UIRVEShaderInfoAllocator_AllocTransform, (UIRVEShaderInfoAllocator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02E7DC30, BMPAlloc, UIRVEShaderInfoAllocator_AllocClipRect, (UIRVEShaderInfoAllocator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02E7DD80, BMPAlloc, UIRVEShaderInfoAllocator_AllocOpacity, (UIRVEShaderInfoAllocator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02E7DDF0, BMPAlloc, UIRVEShaderInfoAllocator_AllocColor, (UIRVEShaderInfoAllocator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02E7DE60, BMPAlloc, UIRVEShaderInfoAllocator_AllocTextCoreSettings, (UIRVEShaderInfoAllocator__Boxed * __this, TextCoreSettings settings, MethodInfo * method)); -DO_APP_FUNC(0x02E7DED0, void, UIRVEShaderInfoAllocator_SetTransformValue, (UIRVEShaderInfoAllocator__Boxed * __this, BMPAlloc alloc, Matrix4x4 xform, MethodInfo * method)); -DO_APP_FUNC(0x02E7E210, void, UIRVEShaderInfoAllocator_SetClipRectValue, (UIRVEShaderInfoAllocator__Boxed * __this, BMPAlloc alloc, Vector4 clipRect, MethodInfo * method)); -DO_APP_FUNC(0x02E7E3D0, void, UIRVEShaderInfoAllocator_SetOpacityValue, (UIRVEShaderInfoAllocator__Boxed * __this, BMPAlloc alloc, float opacity, MethodInfo * method)); -DO_APP_FUNC(0x02E7E510, void, UIRVEShaderInfoAllocator_SetColorValue, (UIRVEShaderInfoAllocator__Boxed * __this, BMPAlloc alloc, Color color, bool isEditorContext, MethodInfo * method)); -DO_APP_FUNC(0x02E7E690, void, UIRVEShaderInfoAllocator_SetTextCoreSettingValue, (UIRVEShaderInfoAllocator__Boxed * __this, BMPAlloc alloc, TextCoreSettings settings, bool isEditorContext, MethodInfo * method)); -DO_APP_FUNC(0x02E7EA00, void, UIRVEShaderInfoAllocator_FreeTransform, (UIRVEShaderInfoAllocator__Boxed * __this, BMPAlloc alloc, MethodInfo * method)); -DO_APP_FUNC(0x02E7EAA0, void, UIRVEShaderInfoAllocator_FreeClipRect, (UIRVEShaderInfoAllocator__Boxed * __this, BMPAlloc alloc, MethodInfo * method)); -DO_APP_FUNC(0x02E7EB40, void, UIRVEShaderInfoAllocator_FreeOpacity, (UIRVEShaderInfoAllocator__Boxed * __this, BMPAlloc alloc, MethodInfo * method)); -DO_APP_FUNC(0x02E7EBE0, void, UIRVEShaderInfoAllocator_FreeColor, (UIRVEShaderInfoAllocator__Boxed * __this, BMPAlloc alloc, MethodInfo * method)); -DO_APP_FUNC(0x02E7EC80, void, UIRVEShaderInfoAllocator_FreeTextCoreSettings, (UIRVEShaderInfoAllocator__Boxed * __this, BMPAlloc alloc, MethodInfo * method)); -DO_APP_FUNC(0x02E7ED30, Color32, UIRVEShaderInfoAllocator_TransformAllocToVertexData, (UIRVEShaderInfoAllocator__Boxed * __this, BMPAlloc alloc, MethodInfo * method)); -DO_APP_FUNC(0x02E7EE80, Color32, UIRVEShaderInfoAllocator_ClipRectAllocToVertexData, (UIRVEShaderInfoAllocator__Boxed * __this, BMPAlloc alloc, MethodInfo * method)); -DO_APP_FUNC(0x02E7EFD0, Color32, UIRVEShaderInfoAllocator_OpacityAllocToVertexData, (UIRVEShaderInfoAllocator__Boxed * __this, BMPAlloc alloc, MethodInfo * method)); -DO_APP_FUNC(0x02E7F110, Color32, UIRVEShaderInfoAllocator_ColorAllocToVertexData, (UIRVEShaderInfoAllocator__Boxed * __this, BMPAlloc alloc, MethodInfo * method)); -DO_APP_FUNC(0x02E7F250, Color32, UIRVEShaderInfoAllocator_TextCoreSettingsToVertexData, (UIRVEShaderInfoAllocator__Boxed * __this, BMPAlloc alloc, MethodInfo * method)); +DO_APP_FUNC(0x02E7C870, bool, UIRVEShaderInfoAllocator_AtlasRectMatchesPage, (BitmapAllocator32 * allocator, BMPAlloc defAlloc, RectInt atlasRect, MethodInfo * method)); +DO_APP_FUNC(0x02E7C9B0, NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4_, UIRVEShaderInfoAllocator_get_transformConstants, (UIRVEShaderInfoAllocator * __this, MethodInfo * method)); +DO_APP_FUNC(0x02E7CAD0, NativeSlice_1_UnityEngine_Vector4_, UIRVEShaderInfoAllocator_get_clipRectConstants, (UIRVEShaderInfoAllocator * __this, MethodInfo * method)); +DO_APP_FUNC(0x02E7CBF0, Texture *, UIRVEShaderInfoAllocator_get_atlas, (UIRVEShaderInfoAllocator * __this, MethodInfo * method)); +DO_APP_FUNC(0x02E7CC90, void, UIRVEShaderInfoAllocator_Construct, (UIRVEShaderInfoAllocator * __this, MethodInfo * method)); +DO_APP_FUNC(0x02E7D110, void, UIRVEShaderInfoAllocator_ReallyCreateStorage, (UIRVEShaderInfoAllocator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7EB0, UIRVEShaderInfoAllocator_ReallyCreateStorage__MethodInfo); +DO_APP_FUNC(0x02E7D970, void, UIRVEShaderInfoAllocator_Dispose, (UIRVEShaderInfoAllocator * __this, MethodInfo * method)); +DO_APP_FUNC(0x02E7DAC0, void, UIRVEShaderInfoAllocator_IssuePendingStorageChanges, (UIRVEShaderInfoAllocator * __this, MethodInfo * method)); +DO_APP_FUNC(0x02E7DAE0, BMPAlloc, UIRVEShaderInfoAllocator_AllocTransform, (UIRVEShaderInfoAllocator * __this, MethodInfo * method)); +DO_APP_FUNC(0x02E7DC30, BMPAlloc, UIRVEShaderInfoAllocator_AllocClipRect, (UIRVEShaderInfoAllocator * __this, MethodInfo * method)); +DO_APP_FUNC(0x02E7DD80, BMPAlloc, UIRVEShaderInfoAllocator_AllocOpacity, (UIRVEShaderInfoAllocator * __this, MethodInfo * method)); +DO_APP_FUNC(0x02E7DDF0, BMPAlloc, UIRVEShaderInfoAllocator_AllocColor, (UIRVEShaderInfoAllocator * __this, MethodInfo * method)); +DO_APP_FUNC(0x02E7DE60, BMPAlloc, UIRVEShaderInfoAllocator_AllocTextCoreSettings, (UIRVEShaderInfoAllocator * __this, TextCoreSettings settings, MethodInfo * method)); +DO_APP_FUNC(0x02E7DED0, void, UIRVEShaderInfoAllocator_SetTransformValue, (UIRVEShaderInfoAllocator * __this, BMPAlloc alloc, Matrix4x4 xform, MethodInfo * method)); +DO_APP_FUNC(0x02E7E210, void, UIRVEShaderInfoAllocator_SetClipRectValue, (UIRVEShaderInfoAllocator * __this, BMPAlloc alloc, Vector4 clipRect, MethodInfo * method)); +DO_APP_FUNC(0x02E7E3D0, void, UIRVEShaderInfoAllocator_SetOpacityValue, (UIRVEShaderInfoAllocator * __this, BMPAlloc alloc, float opacity, MethodInfo * method)); +DO_APP_FUNC(0x02E7E510, void, UIRVEShaderInfoAllocator_SetColorValue, (UIRVEShaderInfoAllocator * __this, BMPAlloc alloc, Color color, bool isEditorContext, MethodInfo * method)); +DO_APP_FUNC(0x02E7E690, void, UIRVEShaderInfoAllocator_SetTextCoreSettingValue, (UIRVEShaderInfoAllocator * __this, BMPAlloc alloc, TextCoreSettings settings, bool isEditorContext, MethodInfo * method)); +DO_APP_FUNC(0x02E7EA00, void, UIRVEShaderInfoAllocator_FreeTransform, (UIRVEShaderInfoAllocator * __this, BMPAlloc alloc, MethodInfo * method)); +DO_APP_FUNC(0x02E7EAA0, void, UIRVEShaderInfoAllocator_FreeClipRect, (UIRVEShaderInfoAllocator * __this, BMPAlloc alloc, MethodInfo * method)); +DO_APP_FUNC(0x02E7EB40, void, UIRVEShaderInfoAllocator_FreeOpacity, (UIRVEShaderInfoAllocator * __this, BMPAlloc alloc, MethodInfo * method)); +DO_APP_FUNC(0x02E7EBE0, void, UIRVEShaderInfoAllocator_FreeColor, (UIRVEShaderInfoAllocator * __this, BMPAlloc alloc, MethodInfo * method)); +DO_APP_FUNC(0x02E7EC80, void, UIRVEShaderInfoAllocator_FreeTextCoreSettings, (UIRVEShaderInfoAllocator * __this, BMPAlloc alloc, MethodInfo * method)); +DO_APP_FUNC(0x02E7ED30, Color32, UIRVEShaderInfoAllocator_TransformAllocToVertexData, (UIRVEShaderInfoAllocator * __this, BMPAlloc alloc, MethodInfo * method)); +DO_APP_FUNC(0x02E7EE80, Color32, UIRVEShaderInfoAllocator_ClipRectAllocToVertexData, (UIRVEShaderInfoAllocator * __this, BMPAlloc alloc, MethodInfo * method)); +DO_APP_FUNC(0x02E7EFD0, Color32, UIRVEShaderInfoAllocator_OpacityAllocToVertexData, (UIRVEShaderInfoAllocator * __this, BMPAlloc alloc, MethodInfo * method)); +DO_APP_FUNC(0x02E7F110, Color32, UIRVEShaderInfoAllocator_ColorAllocToVertexData, (UIRVEShaderInfoAllocator * __this, BMPAlloc alloc, MethodInfo * method)); +DO_APP_FUNC(0x02E7F250, Color32, UIRVEShaderInfoAllocator_TextCoreSettingsToVertexData, (UIRVEShaderInfoAllocator * __this, BMPAlloc alloc, MethodInfo * method)); DO_APP_FUNC(0x02E7F390, void, UIRVEShaderInfoAllocator__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02E7F6A0, void, MeshHandle__ctor, (MeshHandle * __this, MethodInfo * method)); DO_APP_FUNC(0x006C49D0, uint32_t, UIRenderDevice_get_maxVerticesPerPage, (UIRenderDevice * __this, MethodInfo * method)); @@ -66063,22 +76135,23 @@ DO_APP_FUNC(0x02E82200, bool, UIRenderDevice_get_disposed, (UIRenderDevice * __t DO_APP_FUNC(0x02E82210, void, UIRenderDevice_set_disposed, (UIRenderDevice * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x02E82220, void, UIRenderDevice_Dispose, (UIRenderDevice * __this, MethodInfo * method)); DO_APP_FUNC(0x02E82290, void, UIRenderDevice_Dispose_1, (UIRenderDevice * __this, bool disposing, MethodInfo * method)); -DO_APP_FUNC(0x02E82530, MeshHandle *, UIRenderDevice_Allocate, (UIRenderDevice * __this, uint32_t vertexCount, uint32_t indexCount, NativeSlice_1_UnityEngine_UIElements_Vertex_ vertexData, NativeSlice_1_System_UInt16_ indexData, uint16_t indexOffset, MethodInfo * method)); -DO_APP_FUNC(0x02E82610, void, UIRenderDevice_Update, (UIRenderDevice * __this, MeshHandle * mesh, uint32_t vertexCount, NativeSlice_1_UnityEngine_UIElements_Vertex_ vertexData, MethodInfo * method)); -DO_APP_FUNC(0x02E829C0, void, UIRenderDevice_Update_1, (UIRenderDevice * __this, MeshHandle * mesh, uint32_t vertexCount, uint32_t indexCount, NativeSlice_1_UnityEngine_UIElements_Vertex_ vertexData, NativeSlice_1_System_UInt16_ indexData, uint16_t indexOffset, MethodInfo * method)); +DO_APP_FUNC(0x02E82530, MeshHandle *, UIRenderDevice_Allocate, (UIRenderDevice * __this, uint32_t vertexCount, uint32_t indexCount, NativeSlice_1_UnityEngine_UIElements_Vertex_ * vertexData, NativeSlice_1_System_UInt16_ * indexData, uint16_t * indexOffset, MethodInfo * method)); +DO_APP_FUNC(0x02E82610, void, UIRenderDevice_Update, (UIRenderDevice * __this, MeshHandle * mesh, uint32_t vertexCount, NativeSlice_1_UnityEngine_UIElements_Vertex_ * vertexData, MethodInfo * method)); +DO_APP_FUNC(0x02E829C0, void, UIRenderDevice_Update_1, (UIRenderDevice * __this, MeshHandle * mesh, uint32_t vertexCount, uint32_t indexCount, NativeSlice_1_UnityEngine_UIElements_Vertex_ * vertexData, NativeSlice_1_System_UInt16_ * indexData, uint16_t * indexOffset, MethodInfo * method)); DO_APP_FUNC(0x02E82DA0, void, UIRenderDevice_UpdateCopyBackIndices, (UIRenderDevice * __this, MeshHandle * mesh, bool copyBackIndices, MethodInfo * method)); DO_APP_FUNC(0x02E82F50, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ *, UIRenderDevice_ActiveUpdatesForMeshHandle, (UIRenderDevice * __this, MeshHandle * mesh, MethodInfo * method)); -DO_APP_FUNC(0x02E82FF0, bool, UIRenderDevice_TryAllocFromPage, (UIRenderDevice * __this, Page * page, uint32_t vertexCount, uint32_t indexCount, Alloc va, Alloc ia, bool shortLived, MethodInfo * method)); -DO_APP_FUNC(0x02E83240, void, UIRenderDevice_Allocate_1, (UIRenderDevice * __this, MeshHandle * meshHandle, uint32_t vertexCount, uint32_t indexCount, NativeSlice_1_UnityEngine_UIElements_Vertex_ vertexData, NativeSlice_1_System_UInt16_ indexData, bool shortLived, MethodInfo * method)); -DO_APP_FUNC(0x02E83D50, void, UIRenderDevice_UpdateAfterGPUUsedData, (UIRenderDevice * __this, MeshHandle * mesh, uint32_t vertexCount, uint32_t indexCount, NativeSlice_1_UnityEngine_UIElements_Vertex_ vertexData, NativeSlice_1_System_UInt16_ indexData, uint16_t indexOffset, UIRenderDevice_AllocToUpdate allocToUpdate, bool copyBackIndices, MethodInfo * method)); +DO_APP_FUNC(0x02E82FF0, bool, UIRenderDevice_TryAllocFromPage, (UIRenderDevice * __this, Page * page, uint32_t vertexCount, uint32_t indexCount, Alloc * va, Alloc * ia, bool shortLived, MethodInfo * method)); +DO_APP_FUNC(0x02E83240, void, UIRenderDevice_Allocate_1, (UIRenderDevice * __this, MeshHandle * meshHandle, uint32_t vertexCount, uint32_t indexCount, NativeSlice_1_UnityEngine_UIElements_Vertex_ * vertexData, NativeSlice_1_System_UInt16_ * indexData, bool shortLived, MethodInfo * method)); +DO_APP_FUNC(0x02E83D50, void, UIRenderDevice_UpdateAfterGPUUsedData, (UIRenderDevice * __this, MeshHandle * mesh, uint32_t vertexCount, uint32_t indexCount, NativeSlice_1_UnityEngine_UIElements_Vertex_ * vertexData, NativeSlice_1_System_UInt16_ * indexData, uint16_t * indexOffset, UIRenderDevice_AllocToUpdate * allocToUpdate, bool copyBackIndices, MethodInfo * method)); DO_APP_FUNC(0x02E84900, void, UIRenderDevice_Free, (UIRenderDevice * __this, MeshHandle * mesh, MethodInfo * method)); DO_APP_FUNC(0x02E854C0, Vector4, UIRenderDevice_GetClipSpaceParams, (MethodInfo * method)); DO_APP_FUNC(0x02E85600, void, UIRenderDevice_OnFrameRenderingBegin, (UIRenderDevice * __this, MethodInfo * method)); -DO_APP_FUNC(0x02E85770, void, UIRenderDevice_ApplyDrawCommandState, (UIRenderDevice * __this, RenderChainCommand * cmd, int32_t textureSlot, Material * newMat, bool newMatDiffers, bool newFontDiffers, UIRenderDevice_EvaluationState st, MethodInfo * method)); -DO_APP_FUNC(0x02E85A60, void, UIRenderDevice_ApplyBatchState, (UIRenderDevice * __this, UIRenderDevice_EvaluationState st, bool allowMaterialChange, MethodInfo * method)); -DO_APP_FUNC(0x02E85C80, void, UIRenderDevice_EvaluateChain, (UIRenderDevice * __this, RenderChainCommand * head, Material * initialMat, Material * defaultMat, Texture * gradientSettings, Texture * shaderInfo, float pixelsPerPoint, NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4_ transforms, NativeSlice_1_UnityEngine_Vector4_ clipRects, MaterialPropertyBlock * stateMatProps, bool allowMaterialChange, Exception * immediateException, MethodInfo * method)); +DO_APP_FUNC(0x02E85770, void, UIRenderDevice_ApplyDrawCommandState, (UIRenderDevice * __this, RenderChainCommand * cmd, int32_t textureSlot, Material * newMat, bool newMatDiffers, bool newFontDiffers, UIRenderDevice_EvaluationState * st, MethodInfo * method)); +DO_APP_FUNC(0x02E85A60, void, UIRenderDevice_ApplyBatchState, (UIRenderDevice * __this, UIRenderDevice_EvaluationState * st, bool allowMaterialChange, MethodInfo * method)); +DO_APP_FUNC(0x02E85C80, void, UIRenderDevice_EvaluateChain, (UIRenderDevice * __this, RenderChainCommand * head, Material * initialMat, Material * defaultMat, Texture * gradientSettings, Texture * shaderInfo, float pixelsPerPoint, NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4_ transforms, NativeSlice_1_UnityEngine_Vector4_ clipRects, MaterialPropertyBlock * stateMatProps, bool allowMaterialChange, Exception * * immediateException, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7B90, UIRenderDevice_EvaluateChain__MethodInfo); DO_APP_FUNC(0x02E87180, void, UIRenderDevice_UpdateFenceValue, (UIRenderDevice * __this, MethodInfo * method)); -DO_APP_FUNC(0x02E87270, void, UIRenderDevice_KickRanges, (UIRenderDevice * __this, DrawBufferRange * ranges, int32_t rangesReady, int32_t rangesStart, int32_t rangesCount, Page * curPage, MethodInfo * method)); +DO_APP_FUNC(0x02E87270, void, UIRenderDevice_KickRanges, (UIRenderDevice * __this, DrawBufferRange * ranges, int32_t * rangesReady, int32_t * rangesStart, int32_t rangesCount, Page * curPage, MethodInfo * method)); DO_APP_FUNC(0x02E875C0, void, UIRenderDevice_WaitOnCpuFence, (UIRenderDevice * __this, uint32_t fence, MethodInfo * method)); DO_APP_FUNC(0x02E876B0, void, UIRenderDevice_AdvanceFrame, (UIRenderDevice * __this, MethodInfo * method)); DO_APP_FUNC(0x02E88840, void, UIRenderDevice_PruneUnusedPages, (UIRenderDevice * __this, MethodInfo * method)); @@ -66088,12 +76161,16 @@ DO_APP_FUNC(0x02E88EF0, void, UIRenderDevice_FlushAllPendingDeviceDisposes, (Met DO_APP_FUNC(0x02E88FA0, UIRenderDevice_DrawStatistics, UIRenderDevice_GatherDrawStatistics, (UIRenderDevice * __this, MethodInfo * method)); DO_APP_FUNC(0x02E88FC0, void, UIRenderDevice_ProcessDeviceFreeQueue, (MethodInfo * method)); DO_APP_FUNC(0x02E89630, void, UIRenderDevice_OnEngineUpdateGlobal, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7D30, UIRenderDevice_OnEngineUpdateGlobal__MethodInfo); DO_APP_FUNC(0x02E89680, void, UIRenderDevice_OnFlushPendingResources, (MethodInfo * method)); -DO_APP_FUNC(0x02E896E0, void, UIRenderDevice_DeviceToFree_Dispose, (UIRenderDevice_DeviceToFree__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7D10, UIRenderDevice_OnFlushPendingResources__MethodInfo); +DO_APP_FUNC(0x02E896E0, void, UIRenderDevice_DeviceToFree_Dispose, (UIRenderDevice_DeviceToFree * __this, MethodInfo * method)); DO_APP_FUNC(0x02E897E0, void, UIRenderDevice_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, UIRenderDevice_c__ctor, (UIRenderDevice_c * __this, MethodInfo * method)); DO_APP_FUNC(0x02E89890, MeshHandle *, UIRenderDevice_c___ctor_b__53_0, (UIRenderDevice_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7C80, UIRenderDevice_c___ctor_b__53_0__MethodInfo); DO_APP_FUNC(0x003AE050, void, UIRenderDevice_c___ctor_b__53_1, (UIRenderDevice_c * __this, MeshHandle * mh, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7C90, UIRenderDevice_c___ctor_b__53_1__MethodInfo); DO_APP_FUNC(0x02E89900, void, BestFitAllocator__ctor, (BestFitAllocator * __this, uint32_t size, MethodInfo * method)); DO_APP_FUNC(0x003BCD50, uint32_t, BestFitAllocator_get_totalSize, (BestFitAllocator * __this, MethodInfo * method)); DO_APP_FUNC(0x02E89B90, uint32_t, BestFitAllocator_get_highWatermark, (BestFitAllocator * __this, MethodInfo * method)); @@ -66103,7 +76180,9 @@ DO_APP_FUNC(0x02E8A3D0, BestFitAllocator_Block *, BestFitAllocator_CoalesceBlock DO_APP_FUNC(0x02E8A630, BestFitAllocator_Block *, BestFitAllocator_BestFitFindAvailableBlock, (BestFitAllocator * __this, uint32_t size, MethodInfo * method)); DO_APP_FUNC(0x02E8A670, void, BestFitAllocator_SplitBlock, (BestFitAllocator * __this, BestFitAllocator_Block * block, uint32_t size, MethodInfo * method)); DO_APP_FUNC(0x02E8AA00, BestFitAllocator_Block *, BestFitAllocator_BlockPool_CreateBlock, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD78E8, BestFitAllocator_BlockPool_CreateBlock__MethodInfo); DO_APP_FUNC(0x003AE050, void, BestFitAllocator_BlockPool_ResetBlock, (BestFitAllocator_Block * block, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD78F0, BestFitAllocator_BlockPool_ResetBlock__MethodInfo); DO_APP_FUNC(0x02E8AA70, void, BestFitAllocator_BlockPool__ctor, (BestFitAllocator_BlockPool * __this, MethodInfo * method)); DO_APP_FUNC(0x02E8AB70, uint32_t, BestFitAllocator_Block_get_size, (BestFitAllocator_Block * __this, MethodInfo * method)); DO_APP_FUNC(0x02E8AB80, void, BestFitAllocator_Block__ctor, (BestFitAllocator_Block * __this, MethodInfo * method)); @@ -66122,49 +76201,49 @@ DO_APP_FUNC(0x02E8B3F0, void, DrawParams_Reset, (DrawParams * __this, MethodInfo DO_APP_FUNC(0x02E8B620, void, DrawParams__ctor, (DrawParams * __this, MethodInfo * method)); DO_APP_FUNC(0x02E8BAB0, void, DrawParams__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02E8BB10, void, RenderChainCommand_Reset, (RenderChainCommand * __this, MethodInfo * method)); -DO_APP_FUNC(0x02E8BCC0, void, RenderChainCommand_ExecuteNonDrawMesh, (RenderChainCommand * __this, DrawParams * drawParams, float pixelsPerPoint, Exception * immediateException, MethodInfo * method)); +DO_APP_FUNC(0x02E8BCC0, void, RenderChainCommand_ExecuteNonDrawMesh, (RenderChainCommand * __this, DrawParams * drawParams, float pixelsPerPoint, Exception * * immediateException, MethodInfo * method)); DO_APP_FUNC(0x02E8D150, void, RenderChainCommand_Blit, (RenderChainCommand * __this, Texture * source, RenderTexture * destination, float depth, MethodInfo * method)); DO_APP_FUNC(0x02E8D5A0, Rect, RenderChainCommand_CombineScissorRects, (Rect r0, Rect r1, MethodInfo * method)); DO_APP_FUNC(0x02E8D730, RectInt, RenderChainCommand_RectPointsToPixelsAndFlipYAxis, (Rect rect, float pixelsPerPoint, MethodInfo * method)); DO_APP_FUNC(0x02E8D880, void, RenderChainCommand__ctor, (RenderChainCommand * __this, MethodInfo * method)); DO_APP_FUNC(0x02E8D8B0, void, RenderChainCommand__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02E8D9C0, void, CommandGenerator_GetVerticesTransformInfo, (VisualElement * ve, Matrix4x4 transform, MethodInfo * method)); -DO_APP_FUNC(0x02E8DBC0, void, CommandGenerator_ComputeTransformMatrix, (VisualElement * ve, VisualElement * ancestor, Matrix4x4 result, MethodInfo * method)); +DO_APP_FUNC(0x02E8D9C0, void, CommandGenerator_GetVerticesTransformInfo, (VisualElement * ve, Matrix4x4 * transform, MethodInfo * method)); +DO_APP_FUNC(0x02E8DBC0, void, CommandGenerator_ComputeTransformMatrix, (VisualElement * ve, VisualElement * ancestor, Matrix4x4 * result, MethodInfo * method)); DO_APP_FUNC(0x02E8DD30, bool, CommandGenerator_IsParentOrAncestorOf, (VisualElement * ve, VisualElement * child, MethodInfo * method)); -DO_APP_FUNC(0x02E8DD80, UIRStylePainter_ClosingInfo, CommandGenerator_PaintElement, (RenderChain * renderChain, VisualElement * ve, ChainBuilderStats stats, MethodInfo * method)); +DO_APP_FUNC(0x02E8DD80, UIRStylePainter_ClosingInfo, CommandGenerator_PaintElement, (RenderChain * renderChain, VisualElement * ve, ChainBuilderStats * stats, MethodInfo * method)); DO_APP_FUNC(0x02E8FB90, Material *, CommandGenerator_CreateBlitShader, (float colorConversion, MethodInfo * method)); DO_APP_FUNC(0x02E8FFA0, Material *, CommandGenerator_GetBlitMaterial, (VisualElement_RenderTargetMode__Enum mode, MethodInfo * method)); -DO_APP_FUNC(0x02E904D0, void, CommandGenerator_ClosePaintElement, (VisualElement * ve, UIRStylePainter_ClosingInfo closingInfo, RenderChain * renderChain, ChainBuilderStats stats, MethodInfo * method)); -DO_APP_FUNC(0x02E906D0, void, CommandGenerator_UpdateOrAllocate, (MeshHandle * data, int32_t vertexCount, int32_t indexCount, UIRenderDevice * device, NativeSlice_1_UnityEngine_UIElements_Vertex_ verts, NativeSlice_1_System_UInt16_ indices, uint16_t indexOffset, ChainBuilderStats stats, MethodInfo * method)); +DO_APP_FUNC(0x02E904D0, void, CommandGenerator_ClosePaintElement, (VisualElement * ve, UIRStylePainter_ClosingInfo closingInfo, RenderChain * renderChain, ChainBuilderStats * stats, MethodInfo * method)); +DO_APP_FUNC(0x02E906D0, void, CommandGenerator_UpdateOrAllocate, (MeshHandle * * data, int32_t vertexCount, int32_t indexCount, UIRenderDevice * device, NativeSlice_1_UnityEngine_UIElements_Vertex_ * verts, NativeSlice_1_System_UInt16_ * indices, uint16_t * indexOffset, ChainBuilderStats * stats, MethodInfo * method)); DO_APP_FUNC(0x02E908D0, void, CommandGenerator_CopyTransformVertsPos, (NativeSlice_1_UnityEngine_UIElements_Vertex_ source, NativeSlice_1_UnityEngine_UIElements_Vertex_ target, Matrix4x4 mat, Color32 xformClipPages, Color32 ids, Color32 addFlags, Color32 opacityPage, Color32 textCoreSettingsPage, bool isText, float textureId, MethodInfo * method)); DO_APP_FUNC(0x02E90C90, void, CommandGenerator_CopyTransformVertsPosAndVec, (NativeSlice_1_UnityEngine_UIElements_Vertex_ source, NativeSlice_1_UnityEngine_UIElements_Vertex_ target, Matrix4x4 mat, Color32 xformClipPages, Color32 ids, Color32 addFlags, Color32 opacityPage, Color32 textCoreSettingsPage, bool isText, float textureId, MethodInfo * method)); DO_APP_FUNC(0x02E91090, void, CommandGenerator_CopyTriangleIndicesFlipWindingOrder, (NativeSlice_1_System_UInt16_ source, NativeSlice_1_System_UInt16_ target, int32_t indexOffset, MethodInfo * method)); DO_APP_FUNC(0x02E91480, void, CommandGenerator_CopyTriangleIndices, (NativeSlice_1_System_UInt16_ source, NativeSlice_1_System_UInt16_ target, int32_t indexOffset, MethodInfo * method)); DO_APP_FUNC(0x02E91600, bool, CommandGenerator_NudgeVerticesToNewSpace, (VisualElement * ve, UIRenderDevice * device, MethodInfo * method)); -DO_APP_FUNC(0x02E91A30, void, CommandGenerator_DoNudgeVertices, (VisualElement * ve, UIRenderDevice * device, MeshHandle * mesh, Matrix4x4 nudgeTransform, MethodInfo * method)); -DO_APP_FUNC(0x02E921A0, RenderChainCommand *, CommandGenerator_InjectMeshDrawCommand, (RenderChain * renderChain, VisualElement * ve, RenderChainCommand * cmdPrev, RenderChainCommand * cmdNext, MeshHandle * mesh, int32_t indexCount, int32_t indexOffset, Material * material, TextureId texture, Texture * font, int32_t stencilRef, MethodInfo * method)); -DO_APP_FUNC(0x02E924A0, RenderChainCommand *, CommandGenerator_InjectClosingMeshDrawCommand, (RenderChain * renderChain, VisualElement * ve, RenderChainCommand * cmdPrev, RenderChainCommand * cmdNext, MeshHandle * mesh, int32_t indexCount, int32_t indexOffset, Material * material, TextureId texture, Texture * font, int32_t stencilRef, MethodInfo * method)); -DO_APP_FUNC(0x02E927A0, void, CommandGenerator_FindCommandInsertionPoint, (VisualElement * ve, RenderChainCommand * prev, RenderChainCommand * next, MethodInfo * method)); -DO_APP_FUNC(0x02E92C30, void, CommandGenerator_FindClosingCommandInsertionPoint, (VisualElement * ve, RenderChainCommand * prev, RenderChainCommand * next, MethodInfo * method)); -DO_APP_FUNC(0x02E930F0, void, CommandGenerator_InjectCommandInBetween, (RenderChain * renderChain, RenderChainCommand * cmd, RenderChainCommand * prev, RenderChainCommand * next, MethodInfo * method)); -DO_APP_FUNC(0x02E93470, void, CommandGenerator_InjectClosingCommandInBetween, (RenderChain * renderChain, RenderChainCommand * cmd, RenderChainCommand * prev, RenderChainCommand * next, MethodInfo * method)); +DO_APP_FUNC(0x02E91A30, void, CommandGenerator_DoNudgeVertices, (VisualElement * ve, UIRenderDevice * device, MeshHandle * mesh, Matrix4x4 * nudgeTransform, MethodInfo * method)); +DO_APP_FUNC(0x02E921A0, RenderChainCommand *, CommandGenerator_InjectMeshDrawCommand, (RenderChain * renderChain, VisualElement * ve, RenderChainCommand * * cmdPrev, RenderChainCommand * * cmdNext, MeshHandle * mesh, int32_t indexCount, int32_t indexOffset, Material * material, TextureId texture, Texture * font, int32_t stencilRef, MethodInfo * method)); +DO_APP_FUNC(0x02E924A0, RenderChainCommand *, CommandGenerator_InjectClosingMeshDrawCommand, (RenderChain * renderChain, VisualElement * ve, RenderChainCommand * * cmdPrev, RenderChainCommand * * cmdNext, MeshHandle * mesh, int32_t indexCount, int32_t indexOffset, Material * material, TextureId texture, Texture * font, int32_t stencilRef, MethodInfo * method)); +DO_APP_FUNC(0x02E927A0, void, CommandGenerator_FindCommandInsertionPoint, (VisualElement * ve, RenderChainCommand * * prev, RenderChainCommand * * next, MethodInfo * method)); +DO_APP_FUNC(0x02E92C30, void, CommandGenerator_FindClosingCommandInsertionPoint, (VisualElement * ve, RenderChainCommand * * prev, RenderChainCommand * * next, MethodInfo * method)); +DO_APP_FUNC(0x02E930F0, void, CommandGenerator_InjectCommandInBetween, (RenderChain * renderChain, RenderChainCommand * cmd, RenderChainCommand * * prev, RenderChainCommand * * next, MethodInfo * method)); +DO_APP_FUNC(0x02E93470, void, CommandGenerator_InjectClosingCommandInBetween, (RenderChain * renderChain, RenderChainCommand * cmd, RenderChainCommand * * prev, RenderChainCommand * * next, MethodInfo * method)); DO_APP_FUNC(0x02E93820, void, CommandGenerator_ResetCommands, (RenderChain * renderChain, VisualElement * ve, MethodInfo * method)); DO_APP_FUNC(0x02E93F20, void, CommandGenerator__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02E94480, void, RenderEvents_ProcessOnClippingChanged, (RenderChain * renderChain, VisualElement * ve, uint32_t dirtyID, ChainBuilderStats stats, MethodInfo * method)); -DO_APP_FUNC(0x02E945A0, void, RenderEvents_ProcessOnOpacityChanged, (RenderChain * renderChain, VisualElement * ve, uint32_t dirtyID, ChainBuilderStats stats, MethodInfo * method)); -DO_APP_FUNC(0x02E946A0, void, RenderEvents_ProcessOnColorChanged, (RenderChain * renderChain, VisualElement * ve, uint32_t dirtyID, ChainBuilderStats stats, MethodInfo * method)); -DO_APP_FUNC(0x02E94850, void, RenderEvents_ProcessOnTransformOrSizeChanged, (RenderChain * renderChain, VisualElement * ve, uint32_t dirtyID, ChainBuilderStats stats, MethodInfo * method)); -DO_APP_FUNC(0x02E94930, void, RenderEvents_ProcessOnVisualsChanged, (RenderChain * renderChain, VisualElement * ve, uint32_t dirtyID, ChainBuilderStats stats, MethodInfo * method)); -DO_APP_FUNC(0x02E94A80, void, RenderEvents_ProcessRegenText, (RenderChain * renderChain, VisualElement * ve, UIRTextUpdatePainter * painter, UIRenderDevice * device, ChainBuilderStats stats, MethodInfo * method)); +DO_APP_FUNC(0x02E94480, void, RenderEvents_ProcessOnClippingChanged, (RenderChain * renderChain, VisualElement * ve, uint32_t dirtyID, ChainBuilderStats * stats, MethodInfo * method)); +DO_APP_FUNC(0x02E945A0, void, RenderEvents_ProcessOnOpacityChanged, (RenderChain * renderChain, VisualElement * ve, uint32_t dirtyID, ChainBuilderStats * stats, MethodInfo * method)); +DO_APP_FUNC(0x02E946A0, void, RenderEvents_ProcessOnColorChanged, (RenderChain * renderChain, VisualElement * ve, uint32_t dirtyID, ChainBuilderStats * stats, MethodInfo * method)); +DO_APP_FUNC(0x02E94850, void, RenderEvents_ProcessOnTransformOrSizeChanged, (RenderChain * renderChain, VisualElement * ve, uint32_t dirtyID, ChainBuilderStats * stats, MethodInfo * method)); +DO_APP_FUNC(0x02E94930, void, RenderEvents_ProcessOnVisualsChanged, (RenderChain * renderChain, VisualElement * ve, uint32_t dirtyID, ChainBuilderStats * stats, MethodInfo * method)); +DO_APP_FUNC(0x02E94A80, void, RenderEvents_ProcessRegenText, (RenderChain * renderChain, VisualElement * ve, UIRTextUpdatePainter * painter, UIRenderDevice * device, ChainBuilderStats * stats, MethodInfo * method)); DO_APP_FUNC(0x02E94BB0, Matrix4x4, RenderEvents_GetTransformIDTransformInfo, (VisualElement * ve, MethodInfo * method)); DO_APP_FUNC(0x02E94D90, Vector4, RenderEvents_GetClipRectIDClipInfo, (VisualElement * ve, MethodInfo * method)); DO_APP_FUNC(0x02E95040, uint32_t, RenderEvents_DepthFirstOnChildAdded, (RenderChain * renderChain, VisualElement * parent, VisualElement * ve, int32_t index, bool resetState, MethodInfo * method)); DO_APP_FUNC(0x02E95C10, uint32_t, RenderEvents_DepthFirstOnChildRemoving, (RenderChain * renderChain, VisualElement * ve, MethodInfo * method)); -DO_APP_FUNC(0x02E96860, void, RenderEvents_DepthFirstOnClippingChanged, (RenderChain * renderChain, VisualElement * parent, VisualElement * ve, uint32_t dirtyID, bool hierarchical, bool isRootOfChange, bool isPendingHierarchicalRepaint, bool inheritedClipRectIDChanged, bool inheritedMaskingChanged, UIRenderDevice * device, ChainBuilderStats stats, MethodInfo * method)); -DO_APP_FUNC(0x02E96EE0, void, RenderEvents_DepthFirstOnOpacityChanged, (RenderChain * renderChain, float parentCompositeOpacity, VisualElement * ve, uint32_t dirtyID, bool hierarchical, ChainBuilderStats stats, bool isDoingFullVertexRegeneration, MethodInfo * method)); -DO_APP_FUNC(0x02E97370, void, RenderEvents_OnColorChanged, (RenderChain * renderChain, VisualElement * ve, uint32_t dirtyID, ChainBuilderStats stats, MethodInfo * method)); -DO_APP_FUNC(0x02E974E0, void, RenderEvents_DepthFirstOnTransformOrSizeChanged, (RenderChain * renderChain, VisualElement * parent, VisualElement * ve, uint32_t dirtyID, UIRenderDevice * device, bool isAncestorOfChangeSkinned, bool transformChanged, ChainBuilderStats stats, MethodInfo * method)); -DO_APP_FUNC(0x02E97B90, void, RenderEvents_DepthFirstOnVisualsChanged, (RenderChain * renderChain, VisualElement * ve, uint32_t dirtyID, bool parentHierarchyHidden, bool hierarchical, ChainBuilderStats stats, MethodInfo * method)); +DO_APP_FUNC(0x02E96860, void, RenderEvents_DepthFirstOnClippingChanged, (RenderChain * renderChain, VisualElement * parent, VisualElement * ve, uint32_t dirtyID, bool hierarchical, bool isRootOfChange, bool isPendingHierarchicalRepaint, bool inheritedClipRectIDChanged, bool inheritedMaskingChanged, UIRenderDevice * device, ChainBuilderStats * stats, MethodInfo * method)); +DO_APP_FUNC(0x02E96EE0, void, RenderEvents_DepthFirstOnOpacityChanged, (RenderChain * renderChain, float parentCompositeOpacity, VisualElement * ve, uint32_t dirtyID, bool hierarchical, ChainBuilderStats * stats, bool isDoingFullVertexRegeneration, MethodInfo * method)); +DO_APP_FUNC(0x02E97370, void, RenderEvents_OnColorChanged, (RenderChain * renderChain, VisualElement * ve, uint32_t dirtyID, ChainBuilderStats * stats, MethodInfo * method)); +DO_APP_FUNC(0x02E974E0, void, RenderEvents_DepthFirstOnTransformOrSizeChanged, (RenderChain * renderChain, VisualElement * parent, VisualElement * ve, uint32_t dirtyID, UIRenderDevice * device, bool isAncestorOfChangeSkinned, bool transformChanged, ChainBuilderStats * stats, MethodInfo * method)); +DO_APP_FUNC(0x02E97B90, void, RenderEvents_DepthFirstOnVisualsChanged, (RenderChain * renderChain, VisualElement * ve, uint32_t dirtyID, bool parentHierarchyHidden, bool hierarchical, ChainBuilderStats * stats, MethodInfo * method)); DO_APP_FUNC(0x02E98080, bool, RenderEvents_UpdateTextCoreSettings, (RenderChain * renderChain, VisualElement * ve, MethodInfo * method)); DO_APP_FUNC(0x02E985C0, bool, RenderEvents_IsElementHierarchyHidden, (VisualElement * ve, MethodInfo * method)); DO_APP_FUNC(0x02E98620, VisualElement *, RenderEvents_GetLastDeepestChild, (VisualElement * ve, MethodInfo * method)); @@ -66178,9 +76257,12 @@ DO_APP_FUNC(0x02E98BA0, bool, RenderEvents_InitColorIDs, (RenderChain * renderCh DO_APP_FUNC(0x02E98F90, void, RenderEvents_SetColorValues, (RenderChain * renderChain, VisualElement * ve, MethodInfo * method)); DO_APP_FUNC(0x02E993A0, void, RenderEvents__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02E993E0, MeshWriteData *, UIRStylePainter_GetPooledMeshWriteData, (UIRStylePainter * __this, MethodInfo * method)); -DO_APP_FUNC(0x02E994D0, MeshWriteData *, UIRStylePainter_AllocRawVertsIndices, (UIRStylePainter * __this, uint32_t vertexCount, uint32_t indexCount, MeshBuilder_AllocMeshData allocatorData, MethodInfo * method)); -DO_APP_FUNC(0x02E995B0, MeshWriteData *, UIRStylePainter_AllocThroughDrawMesh, (UIRStylePainter * __this, uint32_t vertexCount, uint32_t indexCount, MeshBuilder_AllocMeshData allocatorData, MethodInfo * method)); -DO_APP_FUNC(0x02E995E0, MeshWriteData *, UIRStylePainter_AllocThroughDrawGradients, (UIRStylePainter * __this, uint32_t vertexCount, uint32_t indexCount, MeshBuilder_AllocMeshData allocatorData, MethodInfo * method)); +DO_APP_FUNC(0x02E994D0, MeshWriteData *, UIRStylePainter_AllocRawVertsIndices, (UIRStylePainter * __this, uint32_t vertexCount, uint32_t indexCount, MeshBuilder_AllocMeshData * allocatorData, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA010, UIRStylePainter_AllocRawVertsIndices__MethodInfo); +DO_APP_FUNC(0x02E995B0, MeshWriteData *, UIRStylePainter_AllocThroughDrawMesh, (UIRStylePainter * __this, uint32_t vertexCount, uint32_t indexCount, MeshBuilder_AllocMeshData * allocatorData, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA000, UIRStylePainter_AllocThroughDrawMesh__MethodInfo); +DO_APP_FUNC(0x02E995E0, MeshWriteData *, UIRStylePainter_AllocThroughDrawGradients, (UIRStylePainter * __this, uint32_t vertexCount, uint32_t indexCount, MeshBuilder_AllocMeshData * allocatorData, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9FF8, UIRStylePainter_AllocThroughDrawGradients__MethodInfo); DO_APP_FUNC(0x02E99610, void, UIRStylePainter__ctor, (UIRStylePainter * __this, RenderChain * renderChain, MethodInfo * method)); DO_APP_FUNC(0x00A8DE00, MeshGenerationContext *, UIRStylePainter_get_meshGenerationContext, (UIRStylePainter * __this, MethodInfo * method)); DO_APP_FUNC(0x01C666C0, VisualElement *, UIRStylePainter_get_currentElement, (UIRStylePainter * __this, MethodInfo * method)); @@ -66212,7 +76294,7 @@ DO_APP_FUNC(0x02E9E810, void, UIRStylePainter_DrawVisualElementBorder, (UIRStyle DO_APP_FUNC(0x02E9EED0, void, UIRStylePainter_ApplyVisualElementClipping, (UIRStylePainter * __this, MethodInfo * method)); DO_APP_FUNC(0x02E9F1A0, UInt16__Array *, UIRStylePainter_AdjustSpriteWinding, (UIRStylePainter * __this, Vector2__Array * vertices, UInt16__Array * indices, MethodInfo * method)); DO_APP_FUNC(0x02E9F5A0, void, UIRStylePainter_DrawSprite, (UIRStylePainter * __this, MeshGenerationContextUtils_RectangleParams rectParams, MethodInfo * method)); -DO_APP_FUNC(0x02EA0020, void, UIRStylePainter_ApplyInset, (UIRStylePainter * __this, MeshGenerationContextUtils_RectangleParams rectParams, Texture * tex, MethodInfo * method)); +DO_APP_FUNC(0x02EA0020, void, UIRStylePainter_ApplyInset, (UIRStylePainter * __this, MeshGenerationContextUtils_RectangleParams * rectParams, Texture * tex, MethodInfo * method)); DO_APP_FUNC(0x02EA03C0, void, UIRStylePainter_DrawVectorImage, (UIRStylePainter * __this, MeshGenerationContextUtils_RectangleParams rectParams, MethodInfo * method)); DO_APP_FUNC(0x02EA0CE0, void, UIRStylePainter_Reset, (UIRStylePainter * __this, MethodInfo * method)); DO_APP_FUNC(0x02EA0E40, void, UIRStylePainter_ValidateMeshWriteData, (UIRStylePainter * __this, MethodInfo * method)); @@ -66231,9 +76313,9 @@ DO_APP_FUNC(0x02EA30A0, void, HierarchyTraversal_Recurse, (HierarchyTraversal * DO_APP_FUNC(0x003AE050, void, HierarchyTraversal__ctor, (HierarchyTraversal * __this, MethodInfo * method)); DO_APP_FUNC(0x02EA31F0, void, StylePropertyUtil__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02EA6420, bool, StylePropertyUtil_IsAnimatable, (StylePropertyId__Enum id, MethodInfo * method)); -DO_APP_FUNC(0x02EA64B0, bool, StylePropertyUtil_TryGetEnumIntValue, (StyleEnumType__Enum enumType, String * value, int32_t intValue, MethodInfo * method)); +DO_APP_FUNC(0x02EA64B0, bool, StylePropertyUtil_TryGetEnumIntValue, (StyleEnumType__Enum enumType, String * value, int32_t * intValue, MethodInfo * method)); DO_APP_FUNC(0x02EA76B0, bool, StylePropertyUtil_IsMatchingShorthand, (StylePropertyId__Enum shorthand, StylePropertyId__Enum id, MethodInfo * method)); -DO_APP_FUNC(0x02EA77E0, ComputedStyle, InitialStyle_Get, (MethodInfo * method)); +DO_APP_FUNC(0x02EA77E0, ComputedStyle *, InitialStyle_Get, (MethodInfo * method)); DO_APP_FUNC(0x02EA7830, ComputedStyle, InitialStyle_Acquire, (MethodInfo * method)); DO_APP_FUNC(0x02EA78F0, void, InitialStyle__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02EA8B50, Align__Enum, InitialStyle_get_alignContent, (MethodInfo * method)); @@ -66313,36 +76395,36 @@ DO_APP_FUNC(0x02EAB050, Visibility__Enum, InitialStyle_get_visibility, (MethodIn DO_APP_FUNC(0x02EAB0D0, WhiteSpace__Enum, InitialStyle_get_whiteSpace, (MethodInfo * method)); DO_APP_FUNC(0x02EAB150, Length, InitialStyle_get_width, (MethodInfo * method)); DO_APP_FUNC(0x02EAB1D0, Length, InitialStyle_get_wordSpacing, (MethodInfo * method)); -DO_APP_FUNC(0x02EAB250, void, ShorthandApplicator_ApplyBorderColor, (StylePropertyReader * reader, ComputedStyle computedStyle, MethodInfo * method)); -DO_APP_FUNC(0x02EAB470, void, ShorthandApplicator_ApplyBorderRadius, (StylePropertyReader * reader, ComputedStyle computedStyle, MethodInfo * method)); -DO_APP_FUNC(0x02EAB650, void, ShorthandApplicator_ApplyBorderWidth, (StylePropertyReader * reader, ComputedStyle computedStyle, MethodInfo * method)); -DO_APP_FUNC(0x02EAB8A0, void, ShorthandApplicator_ApplyFlex, (StylePropertyReader * reader, ComputedStyle computedStyle, MethodInfo * method)); -DO_APP_FUNC(0x02EAB990, void, ShorthandApplicator_ApplyMargin, (StylePropertyReader * reader, ComputedStyle computedStyle, MethodInfo * method)); -DO_APP_FUNC(0x02EABB80, void, ShorthandApplicator_ApplyPadding, (StylePropertyReader * reader, ComputedStyle computedStyle, MethodInfo * method)); -DO_APP_FUNC(0x02EABD80, void, ShorthandApplicator_ApplyTransition, (StylePropertyReader * reader, ComputedStyle computedStyle, MethodInfo * method)); -DO_APP_FUNC(0x02EABFA0, void, ShorthandApplicator_ApplyUnityTextOutline, (StylePropertyReader * reader, ComputedStyle computedStyle, MethodInfo * method)); -DO_APP_FUNC(0x02EAC140, bool, ShorthandApplicator_CompileFlexShorthand, (StylePropertyReader * reader, float grow, float shrink, Length basis, MethodInfo * method)); -DO_APP_FUNC(0x02EAC3A0, void, ShorthandApplicator_CompileBorderRadius, (StylePropertyReader * reader, Length top, Length right, Length bottom, Length left, MethodInfo * method)); -DO_APP_FUNC(0x02EAC4A0, void, ShorthandApplicator_CompileBoxArea, (StylePropertyReader * reader, Length top, Length right, Length bottom, Length left, MethodInfo * method)); -DO_APP_FUNC(0x02EAC610, void, ShorthandApplicator_CompileBoxArea_1, (StylePropertyReader * reader, float top, float right, float bottom, float left, MethodInfo * method)); -DO_APP_FUNC(0x02EAC800, void, ShorthandApplicator_CompileBoxArea_2, (StylePropertyReader * reader, Color top, Color right, Color bottom, Color left, MethodInfo * method)); -DO_APP_FUNC(0x02EAC9A0, void, ShorthandApplicator_CompileTextOutline, (StylePropertyReader * reader, Color outlineColor, float outlineWidth, MethodInfo * method)); -DO_APP_FUNC(0x02EACAE0, void, ShorthandApplicator_CompileTransition, (StylePropertyReader * reader, List_1_UnityEngine_UIElements_TimeValue_ * outDelay, List_1_UnityEngine_UIElements_TimeValue_ * outDuration, List_1_UnityEngine_UIElements_StylePropertyName_ * outProperty, List_1_UnityEngine_UIElements_EasingFunction_ * outTimingFunction, MethodInfo * method)); +DO_APP_FUNC(0x02EAB250, void, ShorthandApplicator_ApplyBorderColor, (StylePropertyReader * reader, ComputedStyle * computedStyle, MethodInfo * method)); +DO_APP_FUNC(0x02EAB470, void, ShorthandApplicator_ApplyBorderRadius, (StylePropertyReader * reader, ComputedStyle * computedStyle, MethodInfo * method)); +DO_APP_FUNC(0x02EAB650, void, ShorthandApplicator_ApplyBorderWidth, (StylePropertyReader * reader, ComputedStyle * computedStyle, MethodInfo * method)); +DO_APP_FUNC(0x02EAB8A0, void, ShorthandApplicator_ApplyFlex, (StylePropertyReader * reader, ComputedStyle * computedStyle, MethodInfo * method)); +DO_APP_FUNC(0x02EAB990, void, ShorthandApplicator_ApplyMargin, (StylePropertyReader * reader, ComputedStyle * computedStyle, MethodInfo * method)); +DO_APP_FUNC(0x02EABB80, void, ShorthandApplicator_ApplyPadding, (StylePropertyReader * reader, ComputedStyle * computedStyle, MethodInfo * method)); +DO_APP_FUNC(0x02EABD80, void, ShorthandApplicator_ApplyTransition, (StylePropertyReader * reader, ComputedStyle * computedStyle, MethodInfo * method)); +DO_APP_FUNC(0x02EABFA0, void, ShorthandApplicator_ApplyUnityTextOutline, (StylePropertyReader * reader, ComputedStyle * computedStyle, MethodInfo * method)); +DO_APP_FUNC(0x02EAC140, bool, ShorthandApplicator_CompileFlexShorthand, (StylePropertyReader * reader, float * grow, float * shrink, Length * basis, MethodInfo * method)); +DO_APP_FUNC(0x02EAC3A0, void, ShorthandApplicator_CompileBorderRadius, (StylePropertyReader * reader, Length * top, Length * right, Length * bottom, Length * left, MethodInfo * method)); +DO_APP_FUNC(0x02EAC4A0, void, ShorthandApplicator_CompileBoxArea, (StylePropertyReader * reader, Length * top, Length * right, Length * bottom, Length * left, MethodInfo * method)); +DO_APP_FUNC(0x02EAC610, void, ShorthandApplicator_CompileBoxArea_1, (StylePropertyReader * reader, float * top, float * right, float * bottom, float * left, MethodInfo * method)); +DO_APP_FUNC(0x02EAC800, void, ShorthandApplicator_CompileBoxArea_2, (StylePropertyReader * reader, Color * top, Color * right, Color * bottom, Color * left, MethodInfo * method)); +DO_APP_FUNC(0x02EAC9A0, void, ShorthandApplicator_CompileTextOutline, (StylePropertyReader * reader, Color * outlineColor, float * outlineWidth, MethodInfo * method)); +DO_APP_FUNC(0x02EACAE0, void, ShorthandApplicator_CompileTransition, (StylePropertyReader * reader, List_1_UnityEngine_UIElements_TimeValue_ * * outDelay, List_1_UnityEngine_UIElements_TimeValue_ * * outDuration, List_1_UnityEngine_UIElements_StylePropertyName_ * * outProperty, List_1_UnityEngine_UIElements_EasingFunction_ * * outTimingFunction, MethodInfo * method)); DO_APP_FUNC(0x02EAD8F0, void, ShorthandApplicator__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02EADBD0, bool, StylePropertyCache_TryGetSyntax, (String * name, String * syntax, MethodInfo * method)); -DO_APP_FUNC(0x02EADC70, bool, StylePropertyCache_TryGetNonTerminalValue, (String * name, String * syntax, MethodInfo * method)); +DO_APP_FUNC(0x02EADBD0, bool, StylePropertyCache_TryGetSyntax, (String * name, String * * syntax, MethodInfo * method)); +DO_APP_FUNC(0x02EADC70, bool, StylePropertyCache_TryGetNonTerminalValue, (String * name, String * * syntax, MethodInfo * method)); DO_APP_FUNC(0x02EADD10, void, StylePropertyCache__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02EAFB40, void, Dimension__ctor, (Dimension__Boxed * __this, float value, Dimension_Unit__Enum unit, MethodInfo * method)); -DO_APP_FUNC(0x02EAFB50, Length, Dimension_ToLength, (Dimension__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02EAFB90, TimeValue, Dimension_ToTime, (Dimension__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02EAFBB0, Angle_2, Dimension_ToAngle, (Dimension__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02EAFB40, void, Dimension__ctor, (Dimension * __this, float value, Dimension_Unit__Enum unit, MethodInfo * method)); +DO_APP_FUNC(0x02EAFB50, Length, Dimension_ToLength, (Dimension * __this, MethodInfo * method)); +DO_APP_FUNC(0x02EAFB90, TimeValue, Dimension_ToTime, (Dimension * __this, MethodInfo * method)); +DO_APP_FUNC(0x02EAFBB0, Angle_2, Dimension_ToAngle, (Dimension * __this, MethodInfo * method)); DO_APP_FUNC(0x02EAFC10, bool, Dimension_op_Equality, (Dimension lhs, Dimension rhs, MethodInfo * method)); -DO_APP_FUNC(0x02EAFC40, bool, Dimension_Equals, (Dimension__Boxed * __this, Dimension other, MethodInfo * method)); -DO_APP_FUNC(0x02EAFC70, bool, Dimension_Equals_1, (Dimension__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02EAFD20, int32_t, Dimension_GetHashCode, (Dimension__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02EAFD50, String *, Dimension_ToString, (Dimension__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02EAFF70, String *, ScalableImage_ToString, (ScalableImage__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02EB0170, bool, ImageSource_IsNull, (ImageSource__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02EAFC40, bool, Dimension_Equals, (Dimension * __this, Dimension other, MethodInfo * method)); +DO_APP_FUNC(0x02EAFC70, bool, Dimension_Equals_1, (Dimension * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02EAFD20, int32_t, Dimension_GetHashCode, (Dimension * __this, MethodInfo * method)); +DO_APP_FUNC(0x02EAFD50, String *, Dimension_ToString, (Dimension * __this, MethodInfo * method)); +DO_APP_FUNC(0x02EAFF70, String *, ScalableImage_ToString, (ScalableImage * __this, MethodInfo * method)); +DO_APP_FUNC(0x02EB0170, bool, ImageSource_IsNull, (ImageSource * __this, MethodInfo * method)); DO_APP_FUNC(0x003CD530, StyleProperty *, StylePropertyReader_get_property, (StylePropertyReader * __this, MethodInfo * method)); DO_APP_FUNC(0x00421740, void, StylePropertyReader_set_property, (StylePropertyReader * __this, StyleProperty * value, MethodInfo * method)); DO_APP_FUNC(0x010C8F60, StylePropertyId__Enum, StylePropertyReader_get_propertyId, (StylePropertyReader * __this, MethodInfo * method)); @@ -66380,37 +76462,37 @@ DO_APP_FUNC(0x02EB3AB0, void, StylePropertyReader_ReadListStylePropertyName, (St DO_APP_FUNC(0x02EB3D00, void, StylePropertyReader_LoadProperties, (StylePropertyReader * __this, MethodInfo * method)); DO_APP_FUNC(0x02EB4180, void, StylePropertyReader_SetCurrentProperty, (StylePropertyReader * __this, MethodInfo * method)); DO_APP_FUNC(0x02EB4300, TransformOrigin, StylePropertyReader_ReadTransformOrigin_1, (int32_t valCount, StylePropertyValue val1, StylePropertyValue val2, StylePropertyValue zVvalue, MethodInfo * method)); -DO_APP_FUNC(0x02EB4480, Length, StylePropertyReader_ReadTransformOriginEnum, (StylePropertyValue value, bool isVertical, bool isHorizontal, MethodInfo * method)); +DO_APP_FUNC(0x02EB4480, Length, StylePropertyReader_ReadTransformOriginEnum, (StylePropertyValue value, bool * isVertical, bool * isHorizontal, MethodInfo * method)); DO_APP_FUNC(0x02EB4640, Translate_1, StylePropertyReader_ReadTranslate_1, (int32_t valCount, StylePropertyValue val1, StylePropertyValue val2, StylePropertyValue val3, MethodInfo * method)); DO_APP_FUNC(0x02EB4940, Scale, StylePropertyReader_ReadScale_1, (int32_t valCount, StylePropertyValue val1, StylePropertyValue val2, StylePropertyValue val3, MethodInfo * method)); DO_APP_FUNC(0x02EB4B60, Rotate_1, StylePropertyReader_ReadRotate_1, (int32_t valCount, StylePropertyValue val1, StylePropertyValue val2, StylePropertyValue val3, StylePropertyValue val4, MethodInfo * method)); DO_APP_FUNC(0x02EB4D30, int32_t, StylePropertyReader_ReadEnum_1, (StyleEnumType__Enum enumType, StylePropertyValue value, MethodInfo * method)); DO_APP_FUNC(0x02EB4DE0, Angle_2, StylePropertyReader_ReadAngle, (StylePropertyValue value, MethodInfo * method)); -DO_APP_FUNC(0x02EB4EB0, bool, StylePropertyReader_TryGetImageSourceFromValue, (StylePropertyValue propertyValue, float dpiScaling, ImageSource source, MethodInfo * method)); +DO_APP_FUNC(0x02EB4EB0, bool, StylePropertyReader_TryGetImageSourceFromValue, (StylePropertyValue propertyValue, float dpiScaling, ImageSource * source, MethodInfo * method)); DO_APP_FUNC(0x02EB5700, void, StylePropertyReader__ctor, (StylePropertyReader * __this, MethodInfo * method)); DO_APP_FUNC(0x02EB58E0, void, StylePropertyReader_GetCursorIdFunction__ctor, (StylePropertyReader_GetCursorIdFunction * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003ED330, int32_t, StylePropertyReader_GetCursorIdFunction_Invoke, (StylePropertyReader_GetCursorIdFunction * __this, StyleSheet * sheet, StyleValueHandle handle, MethodInfo * method)); -DO_APP_FUNC(0x00C173F0, void, MatchResultInfo__ctor, (MatchResultInfo__Boxed * __this, bool success, PseudoStates__Enum triggerPseudoMask, PseudoStates__Enum dependencyPseudoMask, MethodInfo * method)); -DO_APP_FUNC(0x02EB5AA0, void, SelectorMatchRecord__ctor, (SelectorMatchRecord__Boxed * __this, StyleSheet * sheet, int32_t styleSheetIndexInStack, MethodInfo * method)); +DO_APP_FUNC(0x00C173F0, void, MatchResultInfo__ctor, (MatchResultInfo * __this, bool success, PseudoStates__Enum triggerPseudoMask, PseudoStates__Enum dependencyPseudoMask, MethodInfo * method)); +DO_APP_FUNC(0x02EB5AA0, void, SelectorMatchRecord__ctor, (SelectorMatchRecord * __this, StyleSheet * sheet, int32_t styleSheetIndexInStack, MethodInfo * method)); DO_APP_FUNC(0x02EB5B00, int32_t, SelectorMatchRecord_Compare, (SelectorMatchRecord a, SelectorMatchRecord b, MethodInfo * method)); DO_APP_FUNC(0x02EB5C10, MatchResultInfo, StyleSelectorHelper_MatchesSelector, (VisualElement * element, StyleSelector * selector, MethodInfo * method)); DO_APP_FUNC(0x02EB5ED0, bool, StyleSelectorHelper_MatchRightToLeft, (VisualElement * element, StyleComplexSelector * complexSelector, Action_2_UnityEngine_UIElements_VisualElement_UnityEngine_UIElements_StyleSheets_MatchResultInfo_ * processResult, MethodInfo * method)); -DO_APP_FUNC(0x02EB6070, void, StyleSelectorHelper_FastLookup, (IDictionary_2_System_String_UnityEngine_UIElements_StyleComplexSelector_ * table, List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * matchedSelectors, StyleMatchingContext * context, String * input, SelectorMatchRecord record, MethodInfo * method)); +DO_APP_FUNC(0x02EB6070, void, StyleSelectorHelper_FastLookup, (IDictionary_2_System_String_UnityEngine_UIElements_StyleComplexSelector_ * table, List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * matchedSelectors, StyleMatchingContext * context, String * input, SelectorMatchRecord * record, MethodInfo * method)); DO_APP_FUNC(0x02EB63B0, void, StyleSelectorHelper_FindMatches, (StyleMatchingContext * context, List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * matchedSelectors, int32_t parentSheetIndex, MethodInfo * method)); DO_APP_FUNC(0x02EB6780, StylePropertyId__Enum__Array *, StyleSheetCache_GetPropertyIds, (StyleSheet * sheet, int32_t ruleIndex, MethodInfo * method)); DO_APP_FUNC(0x02EB6A10, StylePropertyId__Enum__Array *, StyleSheetCache_GetPropertyIds_1, (StyleRule * rule, MethodInfo * method)); DO_APP_FUNC(0x02EB6AE0, StylePropertyId__Enum, StyleSheetCache_GetPropertyId, (StyleRule * rule, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x02EB6C00, void, StyleSheetCache__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02EB6DD0, void, StyleSheetCache_SheetHandleKey__ctor, (StyleSheetCache_SheetHandleKey__Boxed * __this, StyleSheet * sheet, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x02EB6DD0, void, StyleSheetCache_SheetHandleKey__ctor, (StyleSheetCache_SheetHandleKey * __this, StyleSheet * sheet, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x02EB6E10, bool, StyleSheetCache_SheetHandleKeyComparer_Equals, (StyleSheetCache_SheetHandleKeyComparer * __this, StyleSheetCache_SheetHandleKey x, StyleSheetCache_SheetHandleKey y, MethodInfo * method)); DO_APP_FUNC(0x015E94F0, int32_t, StyleSheetCache_SheetHandleKeyComparer_GetHashCode, (StyleSheetCache_SheetHandleKeyComparer * __this, StyleSheetCache_SheetHandleKey key, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, StyleSheetCache_SheetHandleKeyComparer__ctor, (StyleSheetCache_SheetHandleKeyComparer * __this, MethodInfo * method)); -DO_APP_FUNC(0x02EB6E30, bool, StyleSheetColor_TryGetColor, (String * name, Color color, MethodInfo * method)); +DO_APP_FUNC(0x02EB6E30, bool, StyleSheetColor_TryGetColor, (String * name, Color * color, MethodInfo * method)); DO_APP_FUNC(0x02EB6F90, Color32, StyleSheetColor_HexToColor32, (uint32_t color, MethodInfo * method)); DO_APP_FUNC(0x02EB6FB0, void, StyleSheetColor__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02EB97F0, String *, StyleSheetExtensions_ReadAsString, (StyleSheet * sheet, StyleValueHandle handle, MethodInfo * method)); DO_APP_FUNC(0x02EB9BE0, bool, StyleSheetExtensions_IsVarFunction, (StyleValueHandle handle, MethodInfo * method)); -DO_APP_FUNC(0x02EB9C00, bool, MatchResult_get_success, (MatchResult__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02EB9C00, bool, MatchResult_get_success, (MatchResult * __this, MethodInfo * method)); DO_APP_FUNC(0x02EB9C10, bool, BaseStyleMatcher_get_hasCurrent, (BaseStyleMatcher * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, BaseStyleMatcher_get_currentIndex, (BaseStyleMatcher * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCDD0, void, BaseStyleMatcher_set_currentIndex, (BaseStyleMatcher * __this, int32_t value, MethodInfo * method)); @@ -66430,7 +76512,9 @@ DO_APP_FUNC(0x02EBA4F0, bool, BaseStyleMatcher_MatchOr, (BaseStyleMatcher * __th DO_APP_FUNC(0x02EBA660, bool, BaseStyleMatcher_MatchOrOr, (BaseStyleMatcher * __this, Expression * exp, MethodInfo * method)); DO_APP_FUNC(0x02EBA680, bool, BaseStyleMatcher_MatchAndAnd, (BaseStyleMatcher * __this, Expression * exp, MethodInfo * method)); DO_APP_FUNC(0x02EBA6C0, int32_t, BaseStyleMatcher_MatchMany, (BaseStyleMatcher * __this, Expression * exp, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB7E8, BaseStyleMatcher_MatchMany__MethodInfo); DO_APP_FUNC(0x02EBA8C0, int32_t, BaseStyleMatcher_MatchManyByOrder, (BaseStyleMatcher * __this, Expression * exp, int32_t * matchOrder, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB7D8, BaseStyleMatcher_MatchManyByOrder__MethodInfo); DO_APP_FUNC(0x02EBAA30, bool, BaseStyleMatcher_MatchJuxtaposition, (BaseStyleMatcher * __this, Expression * exp, MethodInfo * method)); DO_APP_FUNC(0x02EBAAB0, bool, BaseStyleMatcher_MatchDataType, (BaseStyleMatcher * __this, Expression * exp, MethodInfo * method)); DO_APP_FUNC(0x02EBAC30, void, BaseStyleMatcher__ctor, (BaseStyleMatcher * __this, MethodInfo * method)); @@ -66453,29 +76537,37 @@ DO_APP_FUNC(0x02EBB6C0, bool, StylePropertyValueMatcher_MatchCustomIdent, (Style DO_APP_FUNC(0x02EBB810, bool, StylePropertyValueMatcher_MatchAngle, (StylePropertyValueMatcher * __this, MethodInfo * method)); DO_APP_FUNC(0x02EBB890, void, StylePropertyValueMatcher__ctor, (StylePropertyValueMatcher * __this, MethodInfo * method)); DO_APP_FUNC(0x02EBBA00, void, Expression__ctor, (Expression * __this, ExpressionType__Enum type, MethodInfo * method)); -DO_APP_FUNC(0x02B78450, ExpressionMultiplierType__Enum, ExpressionMultiplier_get_type, (ExpressionMultiplier__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02EBBAE0, void, ExpressionMultiplier_set_type, (ExpressionMultiplier__Boxed * __this, ExpressionMultiplierType__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x02EBBAF0, void, ExpressionMultiplier__ctor, (ExpressionMultiplier__Boxed * __this, ExpressionMultiplierType__Enum type, MethodInfo * method)); -DO_APP_FUNC(0x02EBBB10, void, ExpressionMultiplier_SetType, (ExpressionMultiplier__Boxed * __this, ExpressionMultiplierType__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x02B78450, ExpressionMultiplierType__Enum, ExpressionMultiplier_get_type, (ExpressionMultiplier * __this, MethodInfo * method)); +DO_APP_FUNC(0x02EBBAE0, void, ExpressionMultiplier_set_type, (ExpressionMultiplier * __this, ExpressionMultiplierType__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x02EBBAF0, void, ExpressionMultiplier__ctor, (ExpressionMultiplier * __this, ExpressionMultiplierType__Enum type, MethodInfo * method)); +DO_APP_FUNC(0x02EBBB10, void, ExpressionMultiplier_SetType, (ExpressionMultiplier * __this, ExpressionMultiplierType__Enum value, MethodInfo * method)); DO_APP_FUNC(0x02EBBB90, Expression *, StyleSyntaxParser_Parse, (StyleSyntaxParser * __this, String * syntax, MethodInfo * method)); DO_APP_FUNC(0x02EBBE80, Expression *, StyleSyntaxParser_ParseExpression, (StyleSyntaxParser * __this, StyleSyntaxTokenizer * tokenizer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB760, StyleSyntaxParser_ParseExpression__MethodInfo); DO_APP_FUNC(0x02EBC130, void, StyleSyntaxParser_ProcessCombinatorStack, (StyleSyntaxParser * __this, MethodInfo * method)); DO_APP_FUNC(0x02EBC490, Expression *, StyleSyntaxParser_ParseTerm, (StyleSyntaxParser * __this, StyleSyntaxTokenizer * tokenizer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB630, StyleSyntaxParser_ParseTerm__MethodInfo); DO_APP_FUNC(0x02EBC690, ExpressionCombinator__Enum, StyleSyntaxParser_ParseCombinatorType, (StyleSyntaxParser * __this, StyleSyntaxTokenizer * tokenizer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB628, StyleSyntaxParser_ParseCombinatorType__MethodInfo); DO_APP_FUNC(0x02EBC980, Expression *, StyleSyntaxParser_ParseGroup, (StyleSyntaxParser * __this, StyleSyntaxTokenizer * tokenizer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB600, StyleSyntaxParser_ParseGroup__MethodInfo); DO_APP_FUNC(0x02EBCD30, Expression *, StyleSyntaxParser_ParseDataType, (StyleSyntaxParser * __this, StyleSyntaxTokenizer * tokenizer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB648, StyleSyntaxParser_ParseDataType__MethodInfo); DO_APP_FUNC(0x02EBD280, Expression *, StyleSyntaxParser_ParseNonTerminalValue, (StyleSyntaxParser * __this, String * syntax, MethodInfo * method)); DO_APP_FUNC(0x02EBD4E0, Expression *, StyleSyntaxParser_ParseProperty, (StyleSyntaxParser * __this, StyleSyntaxTokenizer * tokenizer, MethodInfo * method)); -DO_APP_FUNC(0x02EBDA00, void, StyleSyntaxParser_ParseMultiplier, (StyleSyntaxParser * __this, StyleSyntaxTokenizer * tokenizer, ExpressionMultiplier multiplier, MethodInfo * method)); -DO_APP_FUNC(0x02EBDCD0, void, StyleSyntaxParser_ParseRanges, (StyleSyntaxParser * __this, StyleSyntaxTokenizer * tokenizer, int32_t min, int32_t max, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB688, StyleSyntaxParser_ParseProperty__MethodInfo); +DO_APP_FUNC(0x02EBDA00, void, StyleSyntaxParser_ParseMultiplier, (StyleSyntaxParser * __this, StyleSyntaxTokenizer * tokenizer, ExpressionMultiplier * multiplier, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB480, StyleSyntaxParser_ParseMultiplier__MethodInfo); +DO_APP_FUNC(0x02EBDCD0, void, StyleSyntaxParser_ParseRanges, (StyleSyntaxParser * __this, StyleSyntaxTokenizer * tokenizer, int32_t * min, int32_t * max, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB468, StyleSyntaxParser_ParseRanges__MethodInfo); DO_APP_FUNC(0x02EBDE30, void, StyleSyntaxParser_EatSpace, (StyleSyntaxTokenizer * tokenizer, MethodInfo * method)); DO_APP_FUNC(0x02EBDE90, bool, StyleSyntaxParser_IsExpressionEnd, (StyleSyntaxToken token, MethodInfo * method)); DO_APP_FUNC(0x02EBDEB0, bool, StyleSyntaxParser_IsCombinator, (StyleSyntaxToken token, MethodInfo * method)); DO_APP_FUNC(0x02EBDED0, bool, StyleSyntaxParser_IsMultiplier, (StyleSyntaxToken token, MethodInfo * method)); DO_APP_FUNC(0x02EBDF00, void, StyleSyntaxParser__ctor, (StyleSyntaxParser * __this, MethodInfo * method)); -DO_APP_FUNC(0x02EBE220, void, StyleSyntaxToken__ctor, (StyleSyntaxToken__Boxed * __this, StyleSyntaxTokenType__Enum t, MethodInfo * method)); -DO_APP_FUNC(0x02EBE280, void, StyleSyntaxToken__ctor_1, (StyleSyntaxToken__Boxed * __this, StyleSyntaxTokenType__Enum type, String * text, MethodInfo * method)); -DO_APP_FUNC(0x02EBE2F0, void, StyleSyntaxToken__ctor_2, (StyleSyntaxToken__Boxed * __this, StyleSyntaxTokenType__Enum type, int32_t number, MethodInfo * method)); +DO_APP_FUNC(0x02EBE220, void, StyleSyntaxToken__ctor, (StyleSyntaxToken * __this, StyleSyntaxTokenType__Enum t, MethodInfo * method)); +DO_APP_FUNC(0x02EBE280, void, StyleSyntaxToken__ctor_1, (StyleSyntaxToken * __this, StyleSyntaxTokenType__Enum type, String * text, MethodInfo * method)); +DO_APP_FUNC(0x02EBE2F0, void, StyleSyntaxToken__ctor_2, (StyleSyntaxToken * __this, StyleSyntaxTokenType__Enum type, int32_t number, MethodInfo * method)); DO_APP_FUNC(0x02EBE350, StyleSyntaxToken, StyleSyntaxTokenizer_get_current, (StyleSyntaxTokenizer * __this, MethodInfo * method)); DO_APP_FUNC(0x02EBE490, StyleSyntaxToken, StyleSyntaxTokenizer_MoveNext, (StyleSyntaxTokenizer * __this, MethodInfo * method)); DO_APP_FUNC(0x02EBE550, StyleSyntaxToken, StyleSyntaxTokenizer_PeekNext, (StyleSyntaxTokenizer * __this, MethodInfo * method)); @@ -66491,6 +76583,7 @@ DO_APP_FUNC(0x02EBF980, float, Easing_OutSine, (float t, MethodInfo * method)); DO_APP_FUNC(0x02EBF990, float, Easing_InOutSine, (float t, MethodInfo * method)); DO_APP_FUNC(0x02EBF9C0, float, Easing_InQuad, (float t, MethodInfo * method)); DO_APP_FUNC(0x008B29F0, float, Easing_OutQuad, (float t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8FC8, Easing_OutQuad__MethodInfo); DO_APP_FUNC(0x02EBF9D0, float, Easing_InOutQuad, (float t, MethodInfo * method)); DO_APP_FUNC(0x02EBFA20, float, Easing_InCubic, (float t, MethodInfo * method)); DO_APP_FUNC(0x02EBFA30, float, Easing_OutCubic, (float t, MethodInfo * method)); @@ -66510,42 +76603,43 @@ DO_APP_FUNC(0x02EBFF90, float, Easing_InOutBack, (float t, MethodInfo * method)) DO_APP_FUNC(0x02EC0010, float, Easing_InCirc, (float t, MethodInfo * method)); DO_APP_FUNC(0x02EC0070, float, Easing_OutCirc, (float t, MethodInfo * method)); DO_APP_FUNC(0x02EC00A0, float, Easing_InOutCirc, (float t, MethodInfo * method)); -DO_APP_FUNC(0x02EC0150, void, StyleValues_set_top, (StyleValues__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02EC01B0, void, StyleValues_set_left, (StyleValues__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02EC0210, void, StyleValues_set_width, (StyleValues__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02EC0270, void, StyleValues_set_height, (StyleValues__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02EC02D0, void, StyleValues_set_right, (StyleValues__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02EC0330, void, StyleValues_set_bottom, (StyleValues__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02EC0390, void, StyleValues_set_color, (StyleValues__Boxed * __this, Color value, MethodInfo * method)); -DO_APP_FUNC(0x02EC03F0, void, StyleValues_set_backgroundColor, (StyleValues__Boxed * __this, Color value, MethodInfo * method)); -DO_APP_FUNC(0x02EC0450, void, StyleValues_set_unityBackgroundImageTintColor, (StyleValues__Boxed * __this, Color value, MethodInfo * method)); -DO_APP_FUNC(0x02EC04B0, void, StyleValues_set_borderColor, (StyleValues__Boxed * __this, Color value, MethodInfo * method)); -DO_APP_FUNC(0x02EC0510, void, StyleValues_set_marginLeft, (StyleValues__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02EC0570, void, StyleValues_set_marginTop, (StyleValues__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02EC05D0, void, StyleValues_set_marginRight, (StyleValues__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02EC0630, void, StyleValues_set_marginBottom, (StyleValues__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02EC0690, void, StyleValues_set_paddingLeft, (StyleValues__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02EC06F0, float, StyleValues_get_paddingTop, (StyleValues__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02EC0780, void, StyleValues_set_paddingTop, (StyleValues__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02EC07E0, void, StyleValues_set_paddingRight, (StyleValues__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02EC0840, void, StyleValues_set_paddingBottom, (StyleValues__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02EC08A0, void, StyleValues_set_borderLeftWidth, (StyleValues__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02EC0900, void, StyleValues_set_borderRightWidth, (StyleValues__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02EC0960, void, StyleValues_set_borderTopWidth, (StyleValues__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02EC09C0, void, StyleValues_set_borderBottomWidth, (StyleValues__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02EC0A20, void, StyleValues_set_borderTopLeftRadius, (StyleValues__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02EC0A80, void, StyleValues_set_borderTopRightRadius, (StyleValues__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02EC0AE0, void, StyleValues_set_borderBottomLeftRadius, (StyleValues__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02EC0B40, void, StyleValues_set_borderBottomRightRadius, (StyleValues__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02EC0BA0, void, StyleValues_set_opacity, (StyleValues__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02EC0C00, void, StyleValues_set_flexGrow, (StyleValues__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02EC0C00, void, StyleValues_set_flexShrink, (StyleValues__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02EC0C60, void, StyleValues_SetValue, (StyleValues__Boxed * __this, StylePropertyId__Enum id, float value, MethodInfo * method)); -DO_APP_FUNC(0x02EC0CC0, void, StyleValues_SetValue_1, (StyleValues__Boxed * __this, StylePropertyId__Enum id, Color value, MethodInfo * method)); -DO_APP_FUNC(0x02EC0D20, StyleValueCollection *, StyleValues_Values, (StyleValues__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02EC0150, void, StyleValues_set_top, (StyleValues * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02EC01B0, void, StyleValues_set_left, (StyleValues * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02EC0210, void, StyleValues_set_width, (StyleValues * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02EC0270, void, StyleValues_set_height, (StyleValues * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02EC02D0, void, StyleValues_set_right, (StyleValues * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02EC0330, void, StyleValues_set_bottom, (StyleValues * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02EC0390, void, StyleValues_set_color, (StyleValues * __this, Color value, MethodInfo * method)); +DO_APP_FUNC(0x02EC03F0, void, StyleValues_set_backgroundColor, (StyleValues * __this, Color value, MethodInfo * method)); +DO_APP_FUNC(0x02EC0450, void, StyleValues_set_unityBackgroundImageTintColor, (StyleValues * __this, Color value, MethodInfo * method)); +DO_APP_FUNC(0x02EC04B0, void, StyleValues_set_borderColor, (StyleValues * __this, Color value, MethodInfo * method)); +DO_APP_FUNC(0x02EC0510, void, StyleValues_set_marginLeft, (StyleValues * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02EC0570, void, StyleValues_set_marginTop, (StyleValues * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02EC05D0, void, StyleValues_set_marginRight, (StyleValues * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02EC0630, void, StyleValues_set_marginBottom, (StyleValues * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02EC0690, void, StyleValues_set_paddingLeft, (StyleValues * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02EC06F0, float, StyleValues_get_paddingTop, (StyleValues * __this, MethodInfo * method)); +DO_APP_FUNC(0x02EC0780, void, StyleValues_set_paddingTop, (StyleValues * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02EC07E0, void, StyleValues_set_paddingRight, (StyleValues * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02EC0840, void, StyleValues_set_paddingBottom, (StyleValues * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02EC08A0, void, StyleValues_set_borderLeftWidth, (StyleValues * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02EC0900, void, StyleValues_set_borderRightWidth, (StyleValues * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02EC0960, void, StyleValues_set_borderTopWidth, (StyleValues * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02EC09C0, void, StyleValues_set_borderBottomWidth, (StyleValues * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02EC0A20, void, StyleValues_set_borderTopLeftRadius, (StyleValues * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02EC0A80, void, StyleValues_set_borderTopRightRadius, (StyleValues * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02EC0AE0, void, StyleValues_set_borderBottomLeftRadius, (StyleValues * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02EC0B40, void, StyleValues_set_borderBottomRightRadius, (StyleValues * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02EC0BA0, void, StyleValues_set_opacity, (StyleValues * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02EC0C00, void, StyleValues_set_flexGrow, (StyleValues * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02EC0C00, void, StyleValues_set_flexShrink, (StyleValues * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02EC0C60, void, StyleValues_SetValue, (StyleValues * __this, StylePropertyId__Enum id, float value, MethodInfo * method)); +DO_APP_FUNC(0x02EC0CC0, void, StyleValues_SetValue_1, (StyleValues * __this, StylePropertyId__Enum id, Color value, MethodInfo * method)); +DO_APP_FUNC(0x02EC0D20, StyleValueCollection *, StyleValues_Values, (StyleValues * __this, MethodInfo * method)); DO_APP_FUNC(0x02D2E180, float, Lerp_4_Interpolate, (float start, float end, float ratio, MethodInfo * method)); DO_APP_FUNC(0x02EC0DE0, Color, Lerp_4_Interpolate_1, (Color start, Color end, float ratio, MethodInfo * method)); DO_APP_FUNC(0x02EC0E80, StyleValues, Lerp_4_Interpolate_2, (StyleValues start, StyleValues end, float ratio, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6AE0, Lerp_4_Interpolate_2__MethodInfo); DO_APP_FUNC(0x02EC1430, TreeViewController *, TreeView_get_viewController, (TreeView * __this, MethodInfo * method)); DO_APP_FUNC(0x02EC14C0, ICollectionDragAndDropController *, TreeView_CreateDragAndDropController, (TreeView * __this, MethodInfo * method)); DO_APP_FUNC(0x01DAACA0, List_1_System_Int32_ *, TreeView_get_expandedItemIds, (TreeView * __this, MethodInfo * method)); @@ -66557,6 +76651,7 @@ DO_APP_FUNC(0x01C714B0, void, VRHand_OnTriggerEnter, (VRHand * __this, Collider DO_APP_FUNC(0x01C719A0, void, VRHand_OnTriggerExit, (VRHand * __this, Collider * other, MethodInfo * method)); DO_APP_FUNC(0x01C71B00, void, VRHand_OnDisable, (VRHand * __this, MethodInfo * method)); DO_APP_FUNC(0x01C71B70, void, VRHand_OnEntityDetached, (VRHand * __this, BoltEntity * entity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17C60, VRHand_OnEntityDetached__MethodInfo); DO_APP_FUNC(0x01C71CE0, void, VRHand_OnDestroy, (VRHand * __this, MethodInfo * method)); DO_APP_FUNC(0x01C71DC0, void, VRHand__ctor, (VRHand * __this, MethodInfo * method)); DO_APP_FUNC(0x01C71EC0, String *, AssetInfo_get_Version, (MethodInfo * method)); @@ -66570,8 +76665,8 @@ DO_APP_FUNC(0x01C72A50, Vector3, MathUtility_TransformDirection, (Vector3 direct DO_APP_FUNC(0x01C72C10, Vector3, MathUtility_InverseTransformDirection, (Vector3 direction, Quaternion rotation, MethodInfo * method)); DO_APP_FUNC(0x01C72E70, Quaternion, MathUtility_TransformQuaternion, (Quaternion worldRotation, Quaternion rotation, MethodInfo * method)); DO_APP_FUNC(0x01C72FE0, Quaternion, MathUtility_InverseTransformQuaternion, (Quaternion worldRotation, Quaternion rotation, MethodInfo * method)); -DO_APP_FUNC(0x01C731D0, void, MathUtility_CapsuleColliderEndCaps, (CapsuleCollider * capsuleCollider, Vector3 position, Quaternion rotation, Vector3 firstEndCap, Vector3 secondEndCap, MethodInfo * method)); -DO_APP_FUNC(0x01C737D0, void, MathUtility_CapsuleColliderEndCaps_1, (float height, float radius, Vector3 center, Vector3 direction, Vector3 position, Quaternion rotation, Vector3 firstEndCap, Vector3 secondEndCap, MethodInfo * method)); +DO_APP_FUNC(0x01C731D0, void, MathUtility_CapsuleColliderEndCaps, (CapsuleCollider * capsuleCollider, Vector3 position, Quaternion rotation, Vector3 * firstEndCap, Vector3 * secondEndCap, MethodInfo * method)); +DO_APP_FUNC(0x01C737D0, void, MathUtility_CapsuleColliderEndCaps_1, (float height, float radius, Vector3 center, Vector3 direction, Vector3 position, Quaternion rotation, Vector3 * firstEndCap, Vector3 * secondEndCap, MethodInfo * method)); DO_APP_FUNC(0x01C73B20, Vector3, MathUtility_CapsuleColliderDirection, (CapsuleCollider * capsuleCollider, MethodInfo * method)); DO_APP_FUNC(0x01C73CA0, float, MathUtility_ClampInnerAngle, (float angle, MethodInfo * method)); DO_APP_FUNC(0x01C73CD0, float, MathUtility_ClampAngle, (float angle, MethodInfo * method)); @@ -66602,6 +76697,7 @@ DO_APP_FUNC(0x003AE050, void, TimeUtility__ctor, (TimeUtility * __this, MethodIn DO_APP_FUNC(0x01C76DE0, void, TransformExtensions_SetParentOrigin, (Transform * transform, Transform * parent, MethodInfo * method)); DO_APP_FUNC(0x01C76FA0, void, TransformExtensions_SetLayerRecursively, (Transform * transform, int32_t layer, MethodInfo * method)); DO_APP_FUNC(0x01C77120, Type *, UnityEngineUtility_GetType, (String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17A80, UnityEngineUtility_GetType__MethodInfo); DO_APP_FUNC(0x01C77770, String *, UnityEngineUtility_GetFriendlyName, (Type * type, MethodInfo * method)); DO_APP_FUNC(0x01C778B0, String *, UnityEngineUtility_GetFriendlyName_1, (String * fullName, String * name, MethodInfo * method)); DO_APP_FUNC(0x01C77990, bool, UnityEngineUtility_HasAttribute, (FieldInfo_1 * field, Type * attribute, MethodInfo * method)); @@ -66613,55 +76709,56 @@ DO_APP_FUNC(0x01C79080, void, UnityEngineUtility_AddUpdatedObject, (Object * obj DO_APP_FUNC(0x01C790E0, void, UnityEngineUtility_AddUpdatedObject_1, (Object * obj, bool autoClear, MethodInfo * method)); DO_APP_FUNC(0x01C792B0, void, UnityEngineUtility_ClearUpdatedObjects, (MethodInfo * method)); DO_APP_FUNC(0x01C79330, void, UnityEngineUtility_ClearUpdatedObjectsEvent, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17938, UnityEngineUtility_ClearUpdatedObjectsEvent__MethodInfo); DO_APP_FUNC(0x01C793F0, void, UnityEngineUtility_SizeSprite, (Sprite * sprite, RectTransform * spriteRectTransform, MethodInfo * method)); DO_APP_FUNC(0x01C79590, void, UnityEngineUtility_ClearCache, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, UnityEngineUtility__ctor, (UnityEngineUtility * __this, MethodInfo * method)); DO_APP_FUNC(0x01C79870, void, UnityEngineUtility__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01C79B70, int32_t, UnityEngineUtility_RaycastHitComparer_Compare, (UnityEngineUtility_RaycastHitComparer * __this, RaycastHit x, RaycastHit y, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, UnityEngineUtility_RaycastHitComparer__ctor, (UnityEngineUtility_RaycastHitComparer * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C79E10, bool, UnityEngineUtility_RaycastHitEqualityComparer_Equals, (UnityEngineUtility_RaycastHitEqualityComparer__Boxed * __this, RaycastHit x, RaycastHit y, MethodInfo * method)); -DO_APP_FUNC(0x01C7A060, int32_t, UnityEngineUtility_RaycastHitEqualityComparer_GetHashCode, (UnityEngineUtility_RaycastHitEqualityComparer__Boxed * __this, RaycastHit hit, MethodInfo * method)); -DO_APP_FUNC(0x00BCBB00, float, MinMaxFloat_get_MinValue, (MinMaxFloat__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C42840, void, MinMaxFloat_set_MinValue, (MinMaxFloat__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x00C4B940, float, MinMaxFloat_get_MaxValue, (MinMaxFloat__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C7A0F0, void, MinMaxFloat_set_MaxValue, (MinMaxFloat__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x01C7A100, float, MinMaxFloat_get_RandomValue, (MinMaxFloat__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003CAF50, void, MinMaxFloat__ctor, (MinMaxFloat__Boxed * __this, float minValue, float maxValue, MethodInfo * method)); -DO_APP_FUNC(0x0171B0F0, Vector3, MinMaxVector3_get_MinValue, (MinMaxVector3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C7A120, void, MinMaxVector3_set_MinValue, (MinMaxVector3__Boxed * __this, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x00C2F830, Vector3, MinMaxVector3_get_MaxValue, (MinMaxVector3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C7A130, void, MinMaxVector3_set_MaxValue, (MinMaxVector3__Boxed * __this, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x00606200, Vector3, MinMaxVector3_get_MinMagnitude, (MinMaxVector3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00606220, void, MinMaxVector3_set_MinMagnitude, (MinMaxVector3__Boxed * __this, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x01C7A140, Vector3, MinMaxVector3_get_RandomValue, (MinMaxVector3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C7A210, void, MinMaxVector3__ctor, (MinMaxVector3__Boxed * __this, Vector3 minValue, Vector3 maxValue, MethodInfo * method)); -DO_APP_FUNC(0x01C7A280, void, MinMaxVector3__ctor_1, (MinMaxVector3__Boxed * __this, Vector3 minValue, Vector3 maxValue, Vector3 minMagnitude, MethodInfo * method)); -DO_APP_FUNC(0x01C7A2C0, float, MinMaxVector3_GetRandomFloat, (MinMaxVector3__Boxed * __this, float minValue, float maxValue, float minMagnitude, MethodInfo * method)); +DO_APP_FUNC(0x01C79E10, bool, UnityEngineUtility_RaycastHitEqualityComparer_Equals, (UnityEngineUtility_RaycastHitEqualityComparer * __this, RaycastHit x, RaycastHit y, MethodInfo * method)); +DO_APP_FUNC(0x01C7A060, int32_t, UnityEngineUtility_RaycastHitEqualityComparer_GetHashCode, (UnityEngineUtility_RaycastHitEqualityComparer * __this, RaycastHit hit, MethodInfo * method)); +DO_APP_FUNC(0x00BCBB00, float, MinMaxFloat_get_MinValue, (MinMaxFloat * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C42840, void, MinMaxFloat_set_MinValue, (MinMaxFloat * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x00C4B940, float, MinMaxFloat_get_MaxValue, (MinMaxFloat * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C7A0F0, void, MinMaxFloat_set_MaxValue, (MinMaxFloat * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x01C7A100, float, MinMaxFloat_get_RandomValue, (MinMaxFloat * __this, MethodInfo * method)); +DO_APP_FUNC(0x003CAF50, void, MinMaxFloat__ctor, (MinMaxFloat * __this, float minValue, float maxValue, MethodInfo * method)); +DO_APP_FUNC(0x0171B0F0, Vector3, MinMaxVector3_get_MinValue, (MinMaxVector3 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C7A120, void, MinMaxVector3_set_MinValue, (MinMaxVector3 * __this, Vector3 value, MethodInfo * method)); +DO_APP_FUNC(0x00C2F830, Vector3, MinMaxVector3_get_MaxValue, (MinMaxVector3 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C7A130, void, MinMaxVector3_set_MaxValue, (MinMaxVector3 * __this, Vector3 value, MethodInfo * method)); +DO_APP_FUNC(0x00606200, Vector3, MinMaxVector3_get_MinMagnitude, (MinMaxVector3 * __this, MethodInfo * method)); +DO_APP_FUNC(0x00606220, void, MinMaxVector3_set_MinMagnitude, (MinMaxVector3 * __this, Vector3 value, MethodInfo * method)); +DO_APP_FUNC(0x01C7A140, Vector3, MinMaxVector3_get_RandomValue, (MinMaxVector3 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C7A210, void, MinMaxVector3__ctor, (MinMaxVector3 * __this, Vector3 minValue, Vector3 maxValue, MethodInfo * method)); +DO_APP_FUNC(0x01C7A280, void, MinMaxVector3__ctor_1, (MinMaxVector3 * __this, Vector3 minValue, Vector3 maxValue, Vector3 minMagnitude, MethodInfo * method)); +DO_APP_FUNC(0x01C7A2C0, float, MinMaxVector3_GetRandomFloat, (MinMaxVector3 * __this, float minValue, float maxValue, float minMagnitude, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, GameObject *, ObjectSpawnInfo_get_Object, (ObjectSpawnInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x003CB2A0, float, ObjectSpawnInfo_get_Probability, (ObjectSpawnInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x006B5770, bool, ObjectSpawnInfo_get_RandomSpin, (ObjectSpawnInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x01C7A390, GameObject *, ObjectSpawnInfo_Instantiate, (ObjectSpawnInfo * __this, Vector3 position, Vector3 normal, Vector3 gravityDirection, MethodInfo * method)); DO_APP_FUNC(0x01C7AA00, void, ObjectSpawnInfo__ctor, (ObjectSpawnInfo * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C2FFD0, Color, OriginalMaterialValue_get_Color, (OriginalMaterialValue__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0119B5D0, void, OriginalMaterialValue_set_Color, (OriginalMaterialValue__Boxed * __this, Color value, MethodInfo * method)); -DO_APP_FUNC(0x003BCD20, bool, OriginalMaterialValue_get_ContainsMode, (OriginalMaterialValue__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD30, void, OriginalMaterialValue_set_ContainsMode, (OriginalMaterialValue__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x003BC310, float, OriginalMaterialValue_get_Mode, (OriginalMaterialValue__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C67CD0, void, OriginalMaterialValue_set_Mode, (OriginalMaterialValue__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x003BC2E0, int32_t, OriginalMaterialValue_get_SrcBlend, (OriginalMaterialValue__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCDD0, void, OriginalMaterialValue_set_SrcBlend, (OriginalMaterialValue__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x003CD440, int32_t, OriginalMaterialValue_get_DstBlend, (OriginalMaterialValue__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x006D8870, void, OriginalMaterialValue_set_DstBlend, (OriginalMaterialValue__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x005F7520, bool, OriginalMaterialValue_get_AlphaBlend, (OriginalMaterialValue__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00715340, void, OriginalMaterialValue_set_AlphaBlend, (OriginalMaterialValue__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x003CD280, int32_t, OriginalMaterialValue_get_RenderQueue, (OriginalMaterialValue__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x006D8950, void, OriginalMaterialValue_set_RenderQueue, (OriginalMaterialValue__Boxed * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x00C2FFD0, Color, OriginalMaterialValue_get_Color, (OriginalMaterialValue * __this, MethodInfo * method)); +DO_APP_FUNC(0x0119B5D0, void, OriginalMaterialValue_set_Color, (OriginalMaterialValue * __this, Color value, MethodInfo * method)); +DO_APP_FUNC(0x003BCD20, bool, OriginalMaterialValue_get_ContainsMode, (OriginalMaterialValue * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD30, void, OriginalMaterialValue_set_ContainsMode, (OriginalMaterialValue * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x003BC310, float, OriginalMaterialValue_get_Mode, (OriginalMaterialValue * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C67CD0, void, OriginalMaterialValue_set_Mode, (OriginalMaterialValue * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x003BC2E0, int32_t, OriginalMaterialValue_get_SrcBlend, (OriginalMaterialValue * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCDD0, void, OriginalMaterialValue_set_SrcBlend, (OriginalMaterialValue * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x003CD440, int32_t, OriginalMaterialValue_get_DstBlend, (OriginalMaterialValue * __this, MethodInfo * method)); +DO_APP_FUNC(0x006D8870, void, OriginalMaterialValue_set_DstBlend, (OriginalMaterialValue * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x005F7520, bool, OriginalMaterialValue_get_AlphaBlend, (OriginalMaterialValue * __this, MethodInfo * method)); +DO_APP_FUNC(0x00715340, void, OriginalMaterialValue_set_AlphaBlend, (OriginalMaterialValue * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x003CD280, int32_t, OriginalMaterialValue_get_RenderQueue, (OriginalMaterialValue * __this, MethodInfo * method)); +DO_APP_FUNC(0x006D8950, void, OriginalMaterialValue_set_RenderQueue, (OriginalMaterialValue * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01C7AA10, int32_t, OriginalMaterialValue_get_ModeID, (MethodInfo * method)); DO_APP_FUNC(0x01C7AA70, int32_t, OriginalMaterialValue_get_SrcBlendID, (MethodInfo * method)); DO_APP_FUNC(0x01C7AAD0, int32_t, OriginalMaterialValue_get_DstBlendID, (MethodInfo * method)); DO_APP_FUNC(0x01C7AB30, String *, OriginalMaterialValue_get_AlphaBlendString, (MethodInfo * method)); DO_APP_FUNC(0x01C7AB90, void, OriginalMaterialValue_Initialize, (MethodInfo * method)); -DO_APP_FUNC(0x01C7AD20, void, OriginalMaterialValue_Initialize_1, (OriginalMaterialValue__Boxed * __this, Material * material, int32_t colorID, bool containsMode, MethodInfo * method)); +DO_APP_FUNC(0x01C7AD20, void, OriginalMaterialValue_Initialize_1, (OriginalMaterialValue * __this, Material * material, int32_t colorID, bool containsMode, MethodInfo * method)); DO_APP_FUNC(0x01C7AF60, void, OriginalMaterialValue__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003BCD20, bool, AnimationEventTrigger_get_WaitForAnimationEvent, (AnimationEventTrigger * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD30, void, AnimationEventTrigger_set_WaitForAnimationEvent, (AnimationEventTrigger * __this, bool value, MethodInfo * method)); @@ -66710,6 +76807,7 @@ DO_APP_FUNC(0x01C821F0, void, CharacterBuilder_RemoveAnimator, (GameObject * cha DO_APP_FUNC(0x01C824C0, void, CharacterBuilder_SetRecursiveLayer, (GameObject * gameObject, int32_t layer, int32_t characterLayer, MethodInfo * method)); DO_APP_FUNC(0x01C829B0, void, CharacterBuilder_RemoveEssentials, (GameObject * character, MethodInfo * method)); DO_APP_FUNC(0x01C83180, void, CharacterBuilder_AddMovementType, (GameObject * character, String * movementType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16DB8, CharacterBuilder_AddMovementType__MethodInfo); DO_APP_FUNC(0x01C83630, void, CharacterBuilder_BuildCharacterComponents, (GameObject * character, bool aiAgent, bool addItems, ItemCollection * itemCollection, bool firstPersonItems, bool addHealth, bool addUnityIK, bool addFootEffects, bool addStandardAbilities, bool addNavMeshAgent, MethodInfo * method)); DO_APP_FUNC(0x01C84580, void, CharacterBuilder_AddAIAgent, (GameObject * character, MethodInfo * method)); DO_APP_FUNC(0x01C84AB0, void, CharacterBuilder_RemoveAIAgent, (GameObject * character, MethodInfo * method)); @@ -66725,10 +76823,10 @@ DO_APP_FUNC(0x01C874F0, void, CharacterBuilder_AddFootEffects, (GameObject * cha DO_APP_FUNC(0x01C87650, void, CharacterBuilder_RemoveFootEffects, (GameObject * character, MethodInfo * method)); DO_APP_FUNC(0x01C877E0, GameObject *, ItemBuilder_BuildItem, (String * name, ItemDefinitionBase * itemDefinition, int32_t animatorItemID, GameObject * character, int32_t slotID, bool addToDefaultLoadout, bool addFirstPersonPerspective, GameObject * firstPersonObject, RuntimeAnimatorController * firstPersonObjectAnimatorController, GameObject * firstPersonVisibleItem, ItemSlot * firstPersonItemSlot, RuntimeAnimatorController * firstPersonVisibleItemAnimatorController, bool addThirdPersonPerspective, GameObject * thirdPersonObject, ItemSlot * thirdPersonItemSlot, RuntimeAnimatorController * thirdPersonObjectAnimatorController, Material * invisibleShadowCasterMaterial, ItemBuilder_ActionType__Enum actionType, ItemDefinitionBase * actionItemDefinition, MethodInfo * method)); DO_APP_FUNC(0x01C88850, Transform *, ItemBuilder_CreateGameObject, (String * name, Transform * parent, MethodInfo * method)); -DO_APP_FUNC(0x01C88950, void, ItemBuilder_AddFirstPersonObject, (GameObject * character, String * name, GameObject * itemGameObject, GameObject * firstPersonObject, RuntimeAnimatorController * firstPersonObjectAnimatorController, GameObject * firstPersonVisibleItem, ItemSlot * firstPersonItemSlot, RuntimeAnimatorController * firstPersonVisibleItemAnimatorController, MethodInfo * method)); +DO_APP_FUNC(0x01C88950, void, ItemBuilder_AddFirstPersonObject, (GameObject * character, String * name, GameObject * itemGameObject, GameObject * * firstPersonObject, RuntimeAnimatorController * firstPersonObjectAnimatorController, GameObject * * firstPersonVisibleItem, ItemSlot * firstPersonItemSlot, RuntimeAnimatorController * firstPersonVisibleItemAnimatorController, MethodInfo * method)); DO_APP_FUNC(0x01C89DE0, void, ItemBuilder_AddFirstPersonArms, (GameObject * character, GameObject * firstPersonObject, RuntimeAnimatorController * firstPersonObjectAnimatorController, MethodInfo * method)); DO_APP_FUNC(0x01C8A4B0, void, ItemBuilder_RemoveFirstPersonObject, (FirstPersonPerspectiveItem * firstPersonPerspectiveItem, MethodInfo * method)); -DO_APP_FUNC(0x01C8A740, void, ItemBuilder_AddThirdPersonObject, (GameObject * character, String * name, GameObject * itemGameObject, GameObject * thirdPersonObject, ItemSlot * thirdPersonItemSlot, RuntimeAnimatorController * thirdPersonObjectAnimatorController, Material * invisibleShadowCasterMaterial, bool defaultAddThirdPersonObject, MethodInfo * method)); +DO_APP_FUNC(0x01C8A740, void, ItemBuilder_AddThirdPersonObject, (GameObject * character, String * name, GameObject * itemGameObject, GameObject * * thirdPersonObject, ItemSlot * thirdPersonItemSlot, RuntimeAnimatorController * thirdPersonObjectAnimatorController, Material * invisibleShadowCasterMaterial, bool defaultAddThirdPersonObject, MethodInfo * method)); DO_APP_FUNC(0x01C8B230, void, ItemBuilder_AddPropertiesToActions, (GameObject * itemGameObject, GameObject * firstPersonObject, GameObject * firstPersonVisibleItem, GameObject * thirdPersonObject, MethodInfo * method)); DO_APP_FUNC(0x01C8B4F0, void, ItemBuilder_RemoveThirdPersonObject, (ThirdPersonPerspectiveItem * thirdPersonVisibleItem, MethodInfo * method)); DO_APP_FUNC(0x01C8B6B0, void, ItemBuilder_AddAction, (GameObject * itemGameObject, GameObject * firstPersonObject, GameObject * firstPersonVisibleItem, GameObject * thirdPersonObject, ItemBuilder_ActionType__Enum actionType, ItemDefinitionBase * actionItemDefinition, MethodInfo * method)); @@ -66738,7 +76836,7 @@ DO_APP_FUNC(0x01C8CBC0, void, ItemBuilder_AddThrowableItemProperties, (GameObjec DO_APP_FUNC(0x01C8D1D0, void, ItemBuilder_AddGrenadeItemProperties, (GameObject * itemGameObject, int32_t actionID, GameObject * firstPersonObject, GameObject * firstPersonVisibleItem, GameObject * thirdPersonObject, MethodInfo * method)); DO_APP_FUNC(0x01C8DCE0, void, ItemBuilder_AddFlashlightProperties, (GameObject * itemGameObject, int32_t actionID, GameObject * firstPersonObject, GameObject * firstPersonVisibleItem, GameObject * thirdPersonObject, MethodInfo * method)); DO_APP_FUNC(0x01C8E490, void, ItemBuilder_AddAction_1, (GameObject * itemGameObject, ItemBuilder_ActionType__Enum actionType, ItemDefinitionBase * actionItemDefinition, MethodInfo * method)); -DO_APP_FUNC(0x01C8E500, void, ItemBuilder_PopulatePerspectiveObjects, (GameObject * itemGameObject, GameObject * firstPersonObject, GameObject * firstPersonVisibleItemGameObject, GameObject * thirdPersonObject, MethodInfo * method)); +DO_APP_FUNC(0x01C8E500, void, ItemBuilder_PopulatePerspectiveObjects, (GameObject * itemGameObject, GameObject * * firstPersonObject, GameObject * * firstPersonVisibleItemGameObject, GameObject * * thirdPersonObject, MethodInfo * method)); DO_APP_FUNC(0x01C8E830, void, ItemBuilder_RemoveAction, (ItemAction * itemAction, MethodInfo * method)); DO_APP_FUNC(0x01C8E910, void, ItemBuilder_RemovePerspectiveProperties, (GameObject * itemGameObject, int32_t actionID, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ItemBuilder__ctor, (ItemBuilder * __this, MethodInfo * method)); @@ -66750,6 +76848,7 @@ DO_APP_FUNC(0x01C8FB80, void, ViewTypeBuilder__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01C8FC70, void, AttributeMonitor_Awake, (AttributeMonitor * __this, MethodInfo * method)); DO_APP_FUNC(0x01C900E0, void, AttributeMonitor_OnAttachCharacter, (AttributeMonitor * __this, GameObject * character, MethodInfo * method)); DO_APP_FUNC(0x01C90A40, void, AttributeMonitor_OnUpdateValue, (AttributeMonitor * __this, Attribute_1 * attribute, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D168D0, AttributeMonitor_OnUpdateValue__MethodInfo); DO_APP_FUNC(0x01C90AA0, void, AttributeMonitor_OnDestroy, (AttributeMonitor * __this, MethodInfo * method)); DO_APP_FUNC(0x01C90E60, bool, AttributeMonitor_CanShowUI, (AttributeMonitor * __this, MethodInfo * method)); DO_APP_FUNC(0x01C90E80, void, AttributeMonitor__ctor, (AttributeMonitor * __this, MethodInfo * method)); @@ -66761,6 +76860,7 @@ DO_APP_FUNC(0x01C91010, void, CharacterMonitor_Awake, (CharacterMonitor * __this DO_APP_FUNC(0x01C915B0, void, CharacterMonitor_OnAttachCharacter, (CharacterMonitor * __this, GameObject * character, MethodInfo * method)); DO_APP_FUNC(0x01C91C30, void, CharacterMonitor_Start, (CharacterMonitor * __this, MethodInfo * method)); DO_APP_FUNC(0x01C91CF0, void, CharacterMonitor_ShowUI, (CharacterMonitor * __this, bool show, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16790, CharacterMonitor_ShowUI__MethodInfo); DO_APP_FUNC(0x01C91DC0, bool, CharacterMonitor_CanShowUI, (CharacterMonitor * __this, MethodInfo * method)); DO_APP_FUNC(0x01C91DD0, void, CharacterMonitor_OnDestroy, (CharacterMonitor * __this, MethodInfo * method)); DO_APP_FUNC(0x01C91FA0, void, CharacterMonitor__ctor, (CharacterMonitor * __this, MethodInfo * method)); @@ -66778,15 +76878,22 @@ DO_APP_FUNC(0x01C91FD0, void, CrosshairsMonitor_Awake, (CrosshairsMonitor * __th DO_APP_FUNC(0x01C929B0, void, CrosshairsMonitor_OnAttachCharacter, (CrosshairsMonitor * __this, GameObject * character, MethodInfo * method)); DO_APP_FUNC(0x01C93880, void, CrosshairsMonitor_Update, (CrosshairsMonitor * __this, MethodInfo * method)); DO_APP_FUNC(0x01C946C0, void, CrosshairsMonitor_OnEquipItem, (CrosshairsMonitor * __this, Item * item, int32_t slotID, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16738, CrosshairsMonitor_OnEquipItem__MethodInfo); DO_APP_FUNC(0x01C954B0, void, CrosshairsMonitor_OnUpdateDominantItem, (CrosshairsMonitor * __this, Item * item, bool dominantItem, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16828, CrosshairsMonitor_OnUpdateDominantItem__MethodInfo); DO_APP_FUNC(0x01C95650, void, CrosshairsMonitor_OnUnequipItem, (CrosshairsMonitor * __this, Item * item, int32_t slotID, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16830, CrosshairsMonitor_OnUnequipItem__MethodInfo); DO_APP_FUNC(0x01C957F0, void, CrosshairsMonitor_ResetMonitor, (CrosshairsMonitor * __this, MethodInfo * method)); DO_APP_FUNC(0x01C95E90, void, CrosshairsMonitor_PositionSprite, (CrosshairsMonitor * __this, RectTransform * spriteRectTransform, float xPosition, float yPosition, MethodInfo * method)); DO_APP_FUNC(0x01C95F80, void, CrosshairsMonitor_OnAddCrosshairsSpread, (CrosshairsMonitor * __this, bool start, bool fromRecoil, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16750, CrosshairsMonitor_OnAddCrosshairsSpread__MethodInfo); DO_APP_FUNC(0x01C96110, void, CrosshairsMonitor_OnAim, (CrosshairsMonitor * __this, bool aim, bool inputStart, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16748, CrosshairsMonitor_OnAim__MethodInfo); DO_APP_FUNC(0x01C96120, void, CrosshairsMonitor_EnableCrosshairsImage, (CrosshairsMonitor * __this, bool enable, MethodInfo * method)); DO_APP_FUNC(0x01C96AB0, void, CrosshairsMonitor_OnDeath, (CrosshairsMonitor * __this, Vector3 position, Vector3 force, GameObject * attacker, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16740, CrosshairsMonitor_OnDeath__MethodInfo); DO_APP_FUNC(0x01C96B30, void, CrosshairsMonitor_OnRespawn, (CrosshairsMonitor * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16838, CrosshairsMonitor_OnRespawn__MethodInfo); DO_APP_FUNC(0x01C96B80, bool, CrosshairsMonitor_CanShowUI, (CrosshairsMonitor * __this, MethodInfo * method)); DO_APP_FUNC(0x01C96BD0, void, CrosshairsMonitor__ctor, (CrosshairsMonitor * __this, MethodInfo * method)); DO_APP_FUNC(0x00424C90, bool, DamageIndicatorMonitor_get_AlwaysShowIndicator, (DamageIndicatorMonitor * __this, MethodInfo * method)); @@ -66804,25 +76911,28 @@ DO_APP_FUNC(0x01C96CC0, void, DamageIndicatorMonitor_set_IndicatorFadeTime, (Dam DO_APP_FUNC(0x01C96CD0, void, DamageIndicatorMonitor_Awake, (DamageIndicatorMonitor * __this, MethodInfo * method)); DO_APP_FUNC(0x01C97100, void, DamageIndicatorMonitor_OnAttachCharacter, (DamageIndicatorMonitor * __this, GameObject * character, MethodInfo * method)); DO_APP_FUNC(0x01C97920, void, DamageIndicatorMonitor_OnDamage, (DamageIndicatorMonitor * __this, float amount, Vector3 position, Vector3 force, GameObject * attacker, Collider * hitCollider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D166F0, DamageIndicatorMonitor_OnDamage__MethodInfo); DO_APP_FUNC(0x01C97FF0, void, DamageIndicatorMonitor_Update, (DamageIndicatorMonitor * __this, MethodInfo * method)); DO_APP_FUNC(0x01C98BB0, void, DamageIndicatorMonitor_OnRespawn, (DamageIndicatorMonitor * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D166E8, DamageIndicatorMonitor_OnRespawn__MethodInfo); DO_APP_FUNC(0x01C98DB0, bool, DamageIndicatorMonitor_CanShowUI, (DamageIndicatorMonitor * __this, MethodInfo * method)); DO_APP_FUNC(0x01C98DD0, void, DamageIndicatorMonitor__ctor, (DamageIndicatorMonitor * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, Transform *, DamageIndicatorMonitor_DamageIndicator_get_Attacker, (DamageIndicatorMonitor_DamageIndicator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00958320, Vector3, DamageIndicatorMonitor_DamageIndicator_get_Position, (DamageIndicatorMonitor_DamageIndicator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC310, float, DamageIndicatorMonitor_DamageIndicator_get_Angle, (DamageIndicatorMonitor_DamageIndicator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C67CD0, void, DamageIndicatorMonitor_DamageIndicator_set_Angle, (DamageIndicatorMonitor_DamageIndicator__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x003CB2A0, float, DamageIndicatorMonitor_DamageIndicator_get_DisplayTime, (DamageIndicatorMonitor_DamageIndicator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003CB2B0, void, DamageIndicatorMonitor_DamageIndicator_set_DisplayTime, (DamageIndicatorMonitor_DamageIndicator__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x003BB3E0, GameObject *, DamageIndicatorMonitor_DamageIndicator_get_GameObject, (DamageIndicatorMonitor_DamageIndicator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3B0, RectTransform *, DamageIndicatorMonitor_DamageIndicator_get_RectTransform, (DamageIndicatorMonitor_DamageIndicator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB330, Image *, DamageIndicatorMonitor_DamageIndicator_get_Image, (DamageIndicatorMonitor_DamageIndicator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C98E00, void, DamageIndicatorMonitor_DamageIndicator_Initialize, (DamageIndicatorMonitor_DamageIndicator__Boxed * __this, Transform * attacker, Vector3 position, float angle, GameObject * gameObject, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Transform *, DamageIndicatorMonitor_DamageIndicator_get_Attacker, (DamageIndicatorMonitor_DamageIndicator * __this, MethodInfo * method)); +DO_APP_FUNC(0x00958320, Vector3, DamageIndicatorMonitor_DamageIndicator_get_Position, (DamageIndicatorMonitor_DamageIndicator * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC310, float, DamageIndicatorMonitor_DamageIndicator_get_Angle, (DamageIndicatorMonitor_DamageIndicator * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C67CD0, void, DamageIndicatorMonitor_DamageIndicator_set_Angle, (DamageIndicatorMonitor_DamageIndicator * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x003CB2A0, float, DamageIndicatorMonitor_DamageIndicator_get_DisplayTime, (DamageIndicatorMonitor_DamageIndicator * __this, MethodInfo * method)); +DO_APP_FUNC(0x003CB2B0, void, DamageIndicatorMonitor_DamageIndicator_set_DisplayTime, (DamageIndicatorMonitor_DamageIndicator * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x003BB3E0, GameObject *, DamageIndicatorMonitor_DamageIndicator_get_GameObject, (DamageIndicatorMonitor_DamageIndicator * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3B0, RectTransform *, DamageIndicatorMonitor_DamageIndicator_get_RectTransform, (DamageIndicatorMonitor_DamageIndicator * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB330, Image *, DamageIndicatorMonitor_DamageIndicator_get_Image, (DamageIndicatorMonitor_DamageIndicator * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C98E00, void, DamageIndicatorMonitor_DamageIndicator_Initialize, (DamageIndicatorMonitor_DamageIndicator * __this, Transform * attacker, Vector3 position, float angle, GameObject * gameObject, MethodInfo * method)); DO_APP_FUNC(0x009F7E90, int32_t, FullScreenItemUIMonitor_get_ID, (FullScreenItemUIMonitor * __this, MethodInfo * method)); DO_APP_FUNC(0x01A71040, void, FullScreenItemUIMonitor_set_ID, (FullScreenItemUIMonitor * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01C99090, void, FullScreenItemUIMonitor_Awake, (FullScreenItemUIMonitor * __this, MethodInfo * method)); DO_APP_FUNC(0x01C99190, void, FullScreenItemUIMonitor_OnAttachCharacter, (FullScreenItemUIMonitor * __this, GameObject * character, MethodInfo * method)); DO_APP_FUNC(0x01C995D0, void, FullScreenItemUIMonitor_OnShowItemUI, (FullScreenItemUIMonitor * __this, int32_t id, bool show, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D165C0, FullScreenItemUIMonitor_OnShowItemUI__MethodInfo); DO_APP_FUNC(0x01C99650, bool, FullScreenItemUIMonitor_CanShowUI, (FullScreenItemUIMonitor * __this, MethodInfo * method)); DO_APP_FUNC(0x01C91FA0, void, FullScreenItemUIMonitor__ctor, (FullScreenItemUIMonitor * __this, MethodInfo * method)); DO_APP_FUNC(0x01C99670, HealthFlashMonitor_Flash, HealthFlashMonitor_get_DamageFlash, (HealthFlashMonitor * __this, MethodInfo * method)); @@ -66832,16 +76942,18 @@ DO_APP_FUNC(0x01C99720, void, HealthFlashMonitor_set_HealFlash, (HealthFlashMoni DO_APP_FUNC(0x01C99790, void, HealthFlashMonitor_Awake, (HealthFlashMonitor * __this, MethodInfo * method)); DO_APP_FUNC(0x01C99AA0, void, HealthFlashMonitor_OnAttachCharacter, (HealthFlashMonitor * __this, GameObject * character, MethodInfo * method)); DO_APP_FUNC(0x01C99F70, void, HealthFlashMonitor_OnDamage, (HealthFlashMonitor * __this, float amount, Vector3 position, Vector3 force, GameObject * attacker, Collider * hitCollider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16678, HealthFlashMonitor_OnDamage__MethodInfo); DO_APP_FUNC(0x01C9A0E0, void, HealthFlashMonitor_OnHeal, (HealthFlashMonitor * __this, float amount, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16670, HealthFlashMonitor_OnHeal__MethodInfo); DO_APP_FUNC(0x01C9A260, void, HealthFlashMonitor_Update, (HealthFlashMonitor * __this, MethodInfo * method)); DO_APP_FUNC(0x01C9A3E0, bool, HealthFlashMonitor_CanShowUI, (HealthFlashMonitor * __this, MethodInfo * method)); DO_APP_FUNC(0x01C9A430, void, HealthFlashMonitor__ctor, (HealthFlashMonitor * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, HealthFlashMonitor_Flash_get_CanActivate, (HealthFlashMonitor_Flash__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C4B940, float, HealthFlashMonitor_Flash_get_VisiblityDuration, (HealthFlashMonitor_Flash__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C43A70, float, HealthFlashMonitor_Flash_get_FadeDuration, (HealthFlashMonitor_Flash__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C9A640, Color, HealthFlashMonitor_Flash_get_Color, (HealthFlashMonitor_Flash__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3E0, Sprite *, HealthFlashMonitor_Flash_get_Sprite, (HealthFlashMonitor_Flash__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C9A650, void, HealthFlashMonitor_Flash__ctor, (HealthFlashMonitor_Flash__Boxed * __this, bool canActivate, Color color, float visibilityDuration, float fadeDuration, MethodInfo * method)); +DO_APP_FUNC(0x00C173D0, bool, HealthFlashMonitor_Flash_get_CanActivate, (HealthFlashMonitor_Flash * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C4B940, float, HealthFlashMonitor_Flash_get_VisiblityDuration, (HealthFlashMonitor_Flash * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C43A70, float, HealthFlashMonitor_Flash_get_FadeDuration, (HealthFlashMonitor_Flash * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C9A640, Color, HealthFlashMonitor_Flash_get_Color, (HealthFlashMonitor_Flash * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3E0, Sprite *, HealthFlashMonitor_Flash_get_Sprite, (HealthFlashMonitor_Flash * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C9A650, void, HealthFlashMonitor_Flash__ctor, (HealthFlashMonitor_Flash * __this, bool canActivate, Color color, float visibilityDuration, float fadeDuration, MethodInfo * method)); DO_APP_FUNC(0x01C9A6C0, void, ItemMonitor_OnAttachCharacter, (ItemMonitor * __this, GameObject * character, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ItemMonitor_OnPickupItemIdentifier, (ItemMonitor * __this, IItemIdentifier * itemIdentifier, int32_t amount, bool immediatePickup, bool forceEquip, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ItemMonitor_OnUpdateDominantItem, (ItemMonitor * __this, Item * item, bool dominantItem, MethodInfo * method)); @@ -66851,9 +76963,13 @@ DO_APP_FUNC(0x01C91FA0, void, ItemMonitor__ctor, (ItemMonitor * __this, MethodIn DO_APP_FUNC(0x01C9AE60, void, MessageMonitor_Awake, (MessageMonitor * __this, MethodInfo * method)); DO_APP_FUNC(0x01C9AF60, void, MessageMonitor_OnAttachCharacter, (MessageMonitor * __this, GameObject * character, MethodInfo * method)); DO_APP_FUNC(0x01C9B370, void, MessageMonitor_OnAbilityCanStart, (MessageMonitor * __this, Ability * ability, bool canStart, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16528, MessageMonitor_OnAbilityCanStart__MethodInfo); DO_APP_FUNC(0x01C9B8B0, void, MessageMonitor_OnObjectPickedUp, (MessageMonitor * __this, ObjectPickup * objectPickup, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16518, MessageMonitor_OnObjectPickedUp__MethodInfo); DO_APP_FUNC(0x01C9BC50, void, MessageMonitor_UpdateMessage, (MessageMonitor * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16510, MessageMonitor_UpdateMessage__MethodInfo); DO_APP_FUNC(0x01C9C690, void, MessageMonitor_FadeMessage, (MessageMonitor * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D164F0, MessageMonitor_FadeMessage__MethodInfo); DO_APP_FUNC(0x01C9CAC0, bool, MessageMonitor_CanShowUI, (MessageMonitor * __this, MethodInfo * method)); DO_APP_FUNC(0x01C9CC00, void, MessageMonitor__ctor, (MessageMonitor * __this, MethodInfo * method)); DO_APP_FUNC(0x003CD530, ItemDefinitionBase *, PersistentItemMonitor_get_ItemDefinition, (PersistentItemMonitor * __this, MethodInfo * method)); @@ -66867,13 +76983,16 @@ DO_APP_FUNC(0x01C9CDE0, void, PersistentItemMonitor_OnAttachCharacter, (Persiste DO_APP_FUNC(0x01C9D360, void, PersistentItemMonitor_OnPickupItemIdentifier, (PersistentItemMonitor * __this, IItemIdentifier * itemIdentifier, int32_t amount, bool immediatePickup, bool forceEquip, MethodInfo * method)); DO_APP_FUNC(0x01C9D670, bool, PersistentItemMonitor_ShowCount, (PersistentItemMonitor * __this, MethodInfo * method)); DO_APP_FUNC(0x01C9D830, void, PersistentItemMonitor_OnEquipItem, (PersistentItemMonitor * __this, Item * item, int32_t slotID, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16568, PersistentItemMonitor_OnEquipItem__MethodInfo); DO_APP_FUNC(0x01C9D870, void, PersistentItemMonitor_OnUpdateDominantItem, (PersistentItemMonitor * __this, Item * item, bool dominantItem, MethodInfo * method)); DO_APP_FUNC(0x01C9D8F0, void, PersistentItemMonitor_UpdateActiveState, (PersistentItemMonitor * __this, bool forceActive, MethodInfo * method)); DO_APP_FUNC(0x01C9DA80, bool, PersistentItemMonitor_ItemIdentifierMatch, (PersistentItemMonitor * __this, Item * item, MethodInfo * method)); DO_APP_FUNC(0x01C9DE30, void, PersistentItemMonitor_OnUseConsumableItemIdentifier, (PersistentItemMonitor * __this, Item * item, IItemIdentifier * itemIdentifier, int32_t amount, MethodInfo * method)); DO_APP_FUNC(0x01C9E010, void, PersistentItemMonitor_OnAdjustItemIdentifierAmount, (PersistentItemMonitor * __this, IItemIdentifier * itemIdentifier, int32_t amount, MethodInfo * method)); DO_APP_FUNC(0x01C9E1F0, void, PersistentItemMonitor_OnDeath, (PersistentItemMonitor * __this, Vector3 position, Vector3 force, GameObject * attacker, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16578, PersistentItemMonitor_OnDeath__MethodInfo); DO_APP_FUNC(0x01C9E200, void, PersistentItemMonitor_OnRespawn, (PersistentItemMonitor * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16558, PersistentItemMonitor_OnRespawn__MethodInfo); DO_APP_FUNC(0x01C9E210, bool, PersistentItemMonitor_CanShowUI, (PersistentItemMonitor * __this, MethodInfo * method)); DO_APP_FUNC(0x01C9E240, void, PersistentItemMonitor__ctor, (PersistentItemMonitor * __this, MethodInfo * method)); DO_APP_FUNC(0x003C91C0, Image *, SlotItemMonitor_get_ItemIcon, (SlotItemMonitor * __this, MethodInfo * method)); @@ -66881,11 +77000,13 @@ DO_APP_FUNC(0x01C9E260, void, SlotItemMonitor_Awake, (SlotItemMonitor * __this, DO_APP_FUNC(0x01C9E560, void, SlotItemMonitor_OnAttachCharacter, (SlotItemMonitor * __this, GameObject * character, MethodInfo * method)); DO_APP_FUNC(0x01C9EBD0, void, SlotItemMonitor_OnPickupItemIdentifier, (SlotItemMonitor * __this, IItemIdentifier * itemIdentifier, int32_t amount, bool immediatePickup, bool forceEquip, MethodInfo * method)); DO_APP_FUNC(0x01C9ED30, void, SlotItemMonitor_OnEquipItem, (SlotItemMonitor * __this, Item * item, int32_t slotID, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16490, SlotItemMonitor_OnEquipItem__MethodInfo); DO_APP_FUNC(0x01C9F2C0, void, SlotItemMonitor_DisableCountText, (SlotItemMonitor * __this, MethodInfo * method)); DO_APP_FUNC(0x01C9F760, void, SlotItemMonitor_OnUpdateDominantItem, (SlotItemMonitor * __this, Item * item, bool dominantItem, MethodInfo * method)); DO_APP_FUNC(0x01C9FB20, void, SlotItemMonitor_OnUseConsumableItemIdentifier, (SlotItemMonitor * __this, Item * item, IItemIdentifier * itemIdentifier, int32_t amount, MethodInfo * method)); DO_APP_FUNC(0x01C9FB80, void, SlotItemMonitor_OnAdjustItemIdentifierAmount, (SlotItemMonitor * __this, IItemIdentifier * itemIdentifier, int32_t amount, MethodInfo * method)); DO_APP_FUNC(0x01C9FC30, void, SlotItemMonitor_OnUnequipItem, (SlotItemMonitor * __this, Item * item, int32_t slotID, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16488, SlotItemMonitor_OnUnequipItem__MethodInfo); DO_APP_FUNC(0x01C9FE10, bool, SlotItemMonitor_CanShowUI, (SlotItemMonitor * __this, MethodInfo * method)); DO_APP_FUNC(0x01CA0020, void, SlotItemMonitor_ResetMonitor, (SlotItemMonitor * __this, MethodInfo * method)); DO_APP_FUNC(0x01C91FA0, void, SlotItemMonitor__ctor, (SlotItemMonitor * __this, MethodInfo * method)); @@ -66918,6 +77039,7 @@ DO_APP_FUNC(0x01CBE4D0, void, Attribute_1__ctor_1, (Attribute_1 * __this, String DO_APP_FUNC(0x01CBE580, void, Attribute_1_Initialize, (Attribute_1 * __this, GameObject * gameObject, MethodInfo * method)); DO_APP_FUNC(0x01CBE610, void, Attribute_1_ScheduleAutoUpdate, (Attribute_1 * __this, float delay, MethodInfo * method)); DO_APP_FUNC(0x01CBE750, void, Attribute_1_UpdateValue, (Attribute_1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D2B8, Attribute_1_UpdateValue__MethodInfo); DO_APP_FUNC(0x01CBE9E0, bool, Attribute_1_IsValid, (Attribute_1 * __this, float valueChange, MethodInfo * method)); DO_APP_FUNC(0x01CBE9F0, void, Attribute_1_CancelAutoUpdate, (Attribute_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x01CBEA00, void, Attribute_1_ResetValue, (Attribute_1 * __this, MethodInfo * method)); @@ -66947,6 +77069,7 @@ DO_APP_FUNC(0x01CBEBA0, bool, AttributeModifier_Initialize, (AttributeModifier * DO_APP_FUNC(0x01CBED80, bool, AttributeModifier_Initialize_1, (AttributeModifier * __this, AttributeModifier * other, AttributeManager * attributeManager, MethodInfo * method)); DO_APP_FUNC(0x01CBEFC0, bool, AttributeModifier_IsValid, (AttributeModifier * __this, MethodInfo * method)); DO_APP_FUNC(0x01CBEFE0, void, AttributeModifier_EnableModifier, (AttributeModifier * __this, bool enable, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D270, AttributeModifier_EnableModifier__MethodInfo); DO_APP_FUNC(0x003BB3D0, Attribute_1__Array *, AttributeManager_get_Attributes, (AttributeManager * __this, MethodInfo * method)); DO_APP_FUNC(0x01CBF280, void, AttributeManager_set_Attributes, (AttributeManager * __this, Attribute_1__Array * value, MethodInfo * method)); DO_APP_FUNC(0x01CBF340, void, AttributeManager_Awake, (AttributeManager * __this, MethodInfo * method)); @@ -66975,12 +77098,14 @@ DO_APP_FUNC(0x01CBFF40, void, CharacterHealth_OnDamage, (CharacterHealth * __thi DO_APP_FUNC(0x01CC0010, void, CharacterHealth_Die, (CharacterHealth * __this, Vector3 position, Vector3 force, GameObject * attacker, MethodInfo * method)); DO_APP_FUNC(0x01CC01C0, void, CharacterHealth_OnRespawn, (CharacterHealth * __this, MethodInfo * method)); DO_APP_FUNC(0x01CC03A0, void, CharacterHealth_OnCharacterLand, (CharacterHealth * __this, float fallHeight, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D280, CharacterHealth_OnCharacterLand__MethodInfo); DO_APP_FUNC(0x01CC0560, void, CharacterHealth_OnDestroy, (CharacterHealth * __this, MethodInfo * method)); DO_APP_FUNC(0x01CC0650, void, CharacterHealth__ctor, (CharacterHealth * __this, MethodInfo * method)); DO_APP_FUNC(0x01CC0710, void, CharacterRespawner_Awake, (CharacterRespawner * __this, MethodInfo * method)); DO_APP_FUNC(0x01CC0800, void, CharacterRespawner_Respawn, (CharacterRespawner * __this, Vector3 position, Quaternion rotation, bool transformChange, MethodInfo * method)); DO_APP_FUNC(0x01CC08F0, void, CharacterRespawner_OnDisable, (CharacterRespawner * __this, MethodInfo * method)); DO_APP_FUNC(0x00481C50, void, CharacterRespawner_OnActivate, (CharacterRespawner * __this, bool activate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D1F0, CharacterRespawner_OnActivate__MethodInfo); DO_APP_FUNC(0x01CC0A10, void, CharacterRespawner_OnDestroy, (CharacterRespawner * __this, MethodInfo * method)); DO_APP_FUNC(0x01CC0C30, void, CharacterRespawner__ctor, (CharacterRespawner * __this, MethodInfo * method)); DO_APP_FUNC(0x00606200, Vector3, DirectionalConstantForce_get_Direction, (DirectionalConstantForce * __this, MethodInfo * method)); @@ -67043,6 +77168,7 @@ DO_APP_FUNC(0x01CC3820, void, Health_ImmediateDeath, (Health * __this, MethodInf DO_APP_FUNC(0x01CC3990, void, Health_ImmediateDeath_1, (Health * __this, Vector3 position, Vector3 direction, float forceMagnitude, MethodInfo * method)); DO_APP_FUNC(0x01CC3A50, bool, Health_Heal, (Health * __this, float amount, MethodInfo * method)); DO_APP_FUNC(0x01CC3C10, void, Health_Deactivate, (Health * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D1F8, Health_Deactivate__MethodInfo); DO_APP_FUNC(0x01CC3C70, void, Health_OnRespawn, (Health * __this, MethodInfo * method)); DO_APP_FUNC(0x01CC3D70, void, Health_OnDestroy, (Health * __this, MethodInfo * method)); DO_APP_FUNC(0x01CC3E40, void, Health__ctor, (Health * __this, MethodInfo * method)); @@ -67064,12 +77190,14 @@ DO_APP_FUNC(0x01CC47E0, void, ParticlePooler_Awake, (ParticlePooler * __this, Me DO_APP_FUNC(0x01CC4920, void, ParticlePooler_OnEnable, (ParticlePooler * __this, MethodInfo * method)); DO_APP_FUNC(0x01CC4AC0, void, ParticlePooler_OnDisable, (ParticlePooler * __this, MethodInfo * method)); DO_APP_FUNC(0x01CC4AD0, void, ParticlePooler_PoolGameObject, (ParticlePooler * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D1B8, ParticlePooler_PoolGameObject__MethodInfo); DO_APP_FUNC(0x003AE000, void, ParticlePooler__ctor, (ParticlePooler * __this, MethodInfo * method)); DO_APP_FUNC(0x01CC4CE0, void, Remover_Awake, (Remover * __this, MethodInfo * method)); DO_APP_FUNC(0x01CC4D80, void, Remover_OnEnable, (Remover * __this, MethodInfo * method)); DO_APP_FUNC(0x01CC4E60, void, Remover_CancelRemoveEvent, (Remover * __this, MethodInfo * method)); DO_APP_FUNC(0x01CC4EE0, void, Remover_OnDisable, (Remover * __this, MethodInfo * method)); DO_APP_FUNC(0x01CC4EF0, void, Remover_Remove, (Remover * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D158, Remover_Remove__MethodInfo); DO_APP_FUNC(0x01CC4F60, void, Remover__ctor, (Remover * __this, MethodInfo * method)); DO_APP_FUNC(0x003CC980, Respawner_SpawnPositioningMode__Enum, Respawner_get_PositioningMode, (Respawner * __this, MethodInfo * method)); DO_APP_FUNC(0x003CC990, void, Respawner_set_PositioningMode, (Respawner * __this, Respawner_SpawnPositioningMode__Enum value, MethodInfo * method)); @@ -67089,8 +77217,10 @@ DO_APP_FUNC(0x003C7390, UnityEvent *, Respawner_get_OnRespawnEvent, (Respawner * DO_APP_FUNC(0x003C73A0, void, Respawner_set_OnRespawnEvent, (Respawner * __this, UnityEvent * value, MethodInfo * method)); DO_APP_FUNC(0x01CC4FC0, void, Respawner_Awake, (Respawner * __this, MethodInfo * method)); DO_APP_FUNC(0x01CC5350, void, Respawner_OnDeath, (Respawner * __this, Vector3 position, Vector3 force, GameObject * attacker, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D150, Respawner_OnDeath__MethodInfo); DO_APP_FUNC(0x01CC54E0, void, Respawner_OnDisable, (Respawner * __this, MethodInfo * method)); DO_APP_FUNC(0x01CC5600, void, Respawner_Respawn, (Respawner * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D148, Respawner_Respawn__MethodInfo); DO_APP_FUNC(0x01CC59B0, void, Respawner_Respawn_1, (Respawner * __this, Vector3 position, Quaternion rotation, bool transformChange, MethodInfo * method)); DO_APP_FUNC(0x01CC5D20, void, Respawner_OnDestroy, (Respawner * __this, MethodInfo * method)); DO_APP_FUNC(0x01CC0C30, void, Respawner__ctor, (Respawner * __this, MethodInfo * method)); @@ -67128,7 +77258,9 @@ DO_APP_FUNC(0x01CC7920, void, ThirdPersonPerspectiveItem_SetActive, (ThirdPerson DO_APP_FUNC(0x01CC7E80, void, ThirdPersonPerspectiveItem_Pickup, (ThirdPersonPerspectiveItem * __this, MethodInfo * method)); DO_APP_FUNC(0x01CC8080, void, ThirdPersonPerspectiveItem_Remove, (ThirdPersonPerspectiveItem * __this, MethodInfo * method)); DO_APP_FUNC(0x01CC8230, void, ThirdPersonPerspectiveItem_OnDeath, (ThirdPersonPerspectiveItem * __this, Vector3 position, Vector3 force, GameObject * attacker, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D138, ThirdPersonPerspectiveItem_OnDeath__MethodInfo); DO_APP_FUNC(0x01CC83A0, void, ThirdPersonPerspectiveItem_OnRespawn, (ThirdPersonPerspectiveItem * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D130, ThirdPersonPerspectiveItem_OnRespawn__MethodInfo); DO_APP_FUNC(0x01CC8510, void, ThirdPersonPerspectiveItem_OnDestroy, (ThirdPersonPerspectiveItem * __this, MethodInfo * method)); DO_APP_FUNC(0x01CC8750, void, ThirdPersonPerspectiveItem__ctor, (ThirdPersonPerspectiveItem * __this, MethodInfo * method)); DO_APP_FUNC(0x01C96CB0, float, ThirdPersonShootableWeaponProperties_get_LookSensitivity, (ThirdPersonShootableWeaponProperties * __this, MethodInfo * method)); @@ -67157,6 +77289,7 @@ DO_APP_FUNC(0x00AED210, GameObject *, ThirdPersonShootableWeaponProperties_get_S DO_APP_FUNC(0x00AED220, void, ThirdPersonShootableWeaponProperties_set_ScopeCamera, (ThirdPersonShootableWeaponProperties * __this, GameObject * value, MethodInfo * method)); DO_APP_FUNC(0x01CC8770, void, ThirdPersonShootableWeaponProperties_Awake, (ThirdPersonShootableWeaponProperties * __this, MethodInfo * method)); DO_APP_FUNC(0x00A3BD50, void, ThirdPersonShootableWeaponProperties_OnAttachLookSource, (ThirdPersonShootableWeaponProperties * __this, ILookSource * lookSource, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D0E8, ThirdPersonShootableWeaponProperties_OnAttachLookSource__MethodInfo); DO_APP_FUNC(0x01CC9920, bool, ThirdPersonShootableWeaponProperties_CanFire, (ThirdPersonShootableWeaponProperties * __this, bool abilityActive, bool fireInLookSourceDirection, MethodInfo * method)); DO_APP_FUNC(0x01CC9B20, void, ThirdPersonShootableWeaponProperties_OnDestroy, (ThirdPersonShootableWeaponProperties * __this, MethodInfo * method)); DO_APP_FUNC(0x01CC9C10, void, ThirdPersonShootableWeaponProperties__ctor, (ThirdPersonShootableWeaponProperties * __this, MethodInfo * method)); @@ -67185,6 +77318,7 @@ DO_APP_FUNC(0x01CCB8F0, void, DecalManager_Add, (DecalManager * __this, GameObje DO_APP_FUNC(0x01CCBA20, void, DecalManager_WeatherDecals, (DecalManager * __this, MethodInfo * method)); DO_APP_FUNC(0x01CCBE00, void, DecalManager_Update, (DecalManager * __this, MethodInfo * method)); DO_APP_FUNC(0x01CCC1B0, void, DecalManager_SceneUnloaded, (DecalManager * __this, Scene scene, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D118, DecalManager_SceneUnloaded__MethodInfo); DO_APP_FUNC(0x01CCC2F0, void, DecalManager_OnDisable, (DecalManager * __this, MethodInfo * method)); DO_APP_FUNC(0x01CCC3A0, void, DecalManager_DomainReset, (MethodInfo * method)); DO_APP_FUNC(0x01CCC450, void, DecalManager__ctor, (DecalManager * __this, MethodInfo * method)); @@ -67246,7 +77380,7 @@ DO_APP_FUNC(0x01CCEA60, bool, SurfaceManager_SpawnEffectInternal, (SurfaceManage DO_APP_FUNC(0x01CCEC80, bool, SurfaceManager_SpawnEffect_2, (RaycastHit hit, SurfaceImpact * surfaceImpact, Vector3 gravityDirection, float timeScale, GameObject * originator, Vector3 footprintDirection, bool flipFootprint, MethodInfo * method)); DO_APP_FUNC(0x01CCED90, bool, SurfaceManager_SpawnEffect_3, (RaycastHit hit, Collider * collider, SurfaceImpact * surfaceImpact, Vector3 gravityDirection, float timeScale, GameObject * originator, Vector3 footprintDirection, bool flipFootprint, MethodInfo * method)); DO_APP_FUNC(0x01CCEEA0, bool, SurfaceManager_SpawnEffectInternal_1, (SurfaceManager * __this, RaycastHit hit, Collider * collider, SurfaceImpact * surfaceImpact, Vector3 gravityDirection, float timeScale, GameObject * originator, Vector3 footprintDirection, bool flipFootprint, MethodInfo * method)); -DO_APP_FUNC(0x01CCF2D0, SurfaceEffect *, SurfaceManager_GetSurfaceEffect, (SurfaceManager * __this, RaycastHit hit, Collider * collider, SurfaceImpact * surfaceImpact, SurfaceType * surfaceType, bool spawnDecals, MethodInfo * method)); +DO_APP_FUNC(0x01CCF2D0, SurfaceEffect *, SurfaceManager_GetSurfaceEffect, (SurfaceManager * __this, RaycastHit hit, Collider * collider, SurfaceImpact * surfaceImpact, SurfaceType * * surfaceType, bool * spawnDecals, MethodInfo * method)); DO_APP_FUNC(0x01CCF520, SurfaceType *, SurfaceManager_GetSurfaceType, (SurfaceManager * __this, RaycastHit hit, Collider * collider, MethodInfo * method)); DO_APP_FUNC(0x01CCFB40, SurfaceIdentifier *, SurfaceManager_GetSurfaceIdentifier, (SurfaceManager * __this, Collider * collider, MethodInfo * method)); DO_APP_FUNC(0x01CD0070, SurfaceType *, SurfaceManager_GetSimpleSurfaceType, (SurfaceManager * __this, Collider * collider, MethodInfo * method)); @@ -67264,23 +77398,24 @@ DO_APP_FUNC(0x01CD3520, SurfaceType *, SurfaceManager_GetTerrainSurfaceType, (Su DO_APP_FUNC(0x01CD3A00, Texture *, SurfaceManager_GetTreeTexture, (SurfaceManager * __this, RaycastHit hit, Terrain * terrain, MethodInfo * method)); DO_APP_FUNC(0x01CD4290, Texture *, SurfaceManager_GetTerrainTexture, (SurfaceManager * __this, Vector3 worldPosition, Terrain * terrain, MethodInfo * method)); DO_APP_FUNC(0x01CD4540, int32_t, SurfaceManager_GetDominantTerrainTexture, (SurfaceManager * __this, Vector3 worldPosition, Terrain * terrain, MethodInfo * method)); -DO_APP_FUNC(0x01CD4A90, SurfaceEffect *, SurfaceManager_GetSurfaceEffect_1, (SurfaceManager * __this, SurfaceImpact * surfaceImpact, SurfaceType * surfaceType, bool spawnDecals, MethodInfo * method)); +DO_APP_FUNC(0x01CD4A90, SurfaceEffect *, SurfaceManager_GetSurfaceEffect_1, (SurfaceManager * __this, SurfaceImpact * surfaceImpact, SurfaceType * * surfaceType, bool * spawnDecals, MethodInfo * method)); DO_APP_FUNC(0x01CD52A0, SurfaceEffect *, SurfaceManager_GetPrimarySurfaceEffect, (SurfaceManager * __this, SurfaceImpact * surfaceImpact, SurfaceType * surfaceType, MethodInfo * method)); DO_APP_FUNC(0x01CD5420, Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceEffect_ *, SurfaceManager_GetSurfaceImpactMap, (SurfaceManager * __this, SurfaceType * surfaceType, MethodInfo * method)); DO_APP_FUNC(0x01CD5A70, void, SurfaceManager_SceneUnloaded, (SurfaceManager * __this, Scene scene, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D090, SurfaceManager_SceneUnloaded__MethodInfo); DO_APP_FUNC(0x01CD5BB0, void, SurfaceManager_OnDisable, (SurfaceManager * __this, MethodInfo * method)); DO_APP_FUNC(0x01CD5C60, void, SurfaceManager_DomainReset, (MethodInfo * method)); DO_APP_FUNC(0x01CD5D10, void, SurfaceManager__ctor, (SurfaceManager * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, SurfaceImpact *, ImpactEffect_get_SurfaceImpact, (ImpactEffect__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, SurfaceEffect *, ImpactEffect_get_SurfaceEffect, (ImpactEffect__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, Texture *, UVTexture_get_Texture, (UVTexture__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, UVTexture_set_Texture, (UVTexture__Boxed * __this, Texture * value, MethodInfo * method)); -DO_APP_FUNC(0x00C16880, Rect, UVTexture_get_UV, (UVTexture__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B621E0, void, UVTexture_set_UV, (UVTexture__Boxed * __this, Rect value, MethodInfo * method)); -DO_APP_FUNC(0x00471910, SurfaceType *, ObjectSurface_get_SurfaceType, (ObjectSurface__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, ObjectSurface_set_SurfaceType, (ObjectSurface__Boxed * __this, SurfaceType * value, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, UVTexture__Array *, ObjectSurface_get_UVTextures, (ObjectSurface__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x005F25C0, void, ObjectSurface_set_UVTextures, (ObjectSurface__Boxed * __this, UVTexture__Array * value, MethodInfo * method)); +DO_APP_FUNC(0x00471910, SurfaceImpact *, ImpactEffect_get_SurfaceImpact, (ImpactEffect * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, SurfaceEffect *, ImpactEffect_get_SurfaceEffect, (ImpactEffect * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Texture *, UVTexture_get_Texture, (UVTexture * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, UVTexture_set_Texture, (UVTexture * __this, Texture * value, MethodInfo * method)); +DO_APP_FUNC(0x00C16880, Rect, UVTexture_get_UV, (UVTexture * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B621E0, void, UVTexture_set_UV, (UVTexture * __this, Rect value, MethodInfo * method)); +DO_APP_FUNC(0x00471910, SurfaceType *, ObjectSurface_get_SurfaceType, (ObjectSurface * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, ObjectSurface_set_SurfaceType, (ObjectSurface * __this, SurfaceType * value, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, UVTexture__Array *, ObjectSurface_get_UVTextures, (ObjectSurface * __this, MethodInfo * method)); +DO_APP_FUNC(0x005F25C0, void, ObjectSurface_set_UVTextures, (ObjectSurface * __this, UVTexture__Array * value, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, ImpactEffect__Array *, SurfaceType_get_ImpactEffects, (SurfaceType * __this, MethodInfo * method)); DO_APP_FUNC(0x005F7520, bool, SurfaceType_get_AllowFootprints, (SurfaceType * __this, MethodInfo * method)); DO_APP_FUNC(0x01CD6700, void, SurfaceType__ctor, (SurfaceType * __this, MethodInfo * method)); @@ -67289,125 +77424,245 @@ DO_APP_FUNC(0x003AE000, void, AOTLinker_1__ctor, (AOTLinker_1 * __this, MethodIn DO_APP_FUNC(0x01CDC9E0, void, AOTLinker_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__ctor, (AOTLinker_c * __this, MethodInfo * method)); DO_APP_FUNC(0x003CB690, int32_t, AOTLinker_c__Linker_b__0_0, (AOTLinker_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C768, AOTLinker_c__Linker_b__0_0__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__Linker_b__0_1, (AOTLinker_c * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C670, AOTLinker_c__Linker_b__0_1__MethodInfo); DO_APP_FUNC(0x00945260, float, AOTLinker_c__Linker_b__0_2, (AOTLinker_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C518, AOTLinker_c__Linker_b__0_2__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__Linker_b__0_3, (AOTLinker_c * __this, float value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C4B8, AOTLinker_c__Linker_b__0_3__MethodInfo); DO_APP_FUNC(0x003CB690, uint32_t, AOTLinker_c__Linker_b__0_4, (AOTLinker_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C568, AOTLinker_c__Linker_b__0_4__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__Linker_b__0_5, (AOTLinker_c * __this, uint32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C3C0, AOTLinker_c__Linker_b__0_5__MethodInfo); DO_APP_FUNC(0x00945260, double, AOTLinker_c__Linker_b__0_6, (AOTLinker_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C338, AOTLinker_c__Linker_b__0_6__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__Linker_b__0_7, (AOTLinker_c * __this, double value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C430, AOTLinker_c__Linker_b__0_7__MethodInfo); DO_APP_FUNC(0x003CB690, int64_t, AOTLinker_c__Linker_b__0_8, (AOTLinker_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C298, AOTLinker_c__Linker_b__0_8__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__Linker_b__0_9, (AOTLinker_c * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C230, AOTLinker_c__Linker_b__0_9__MethodInfo); DO_APP_FUNC(0x0041AEF0, bool, AOTLinker_c__Linker_b__0_10, (AOTLinker_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C610, AOTLinker_c__Linker_b__0_10__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__Linker_b__0_11, (AOTLinker_c * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C5B8, AOTLinker_c__Linker_b__0_11__MethodInfo); DO_APP_FUNC(0x01CDCA90, String *, AOTLinker_c__Linker_b__0_12, (AOTLinker_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C5B0, AOTLinker_c__Linker_b__0_12__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__Linker_b__0_13, (AOTLinker_c * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C5A8, AOTLinker_c__Linker_b__0_13__MethodInfo); DO_APP_FUNC(0x0041AF00, uint8_t, AOTLinker_c__Linker_b__0_14, (AOTLinker_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C5A0, AOTLinker_c__Linker_b__0_14__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__Linker_b__0_15, (AOTLinker_c * __this, uint8_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C698, AOTLinker_c__Linker_b__0_15__MethodInfo); DO_APP_FUNC(0x003CB110, Vector2, AOTLinker_c__Linker_b__0_16, (AOTLinker_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C690, AOTLinker_c__Linker_b__0_16__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__Linker_b__0_17, (AOTLinker_c * __this, Vector2 value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C688, AOTLinker_c__Linker_b__0_17__MethodInfo); DO_APP_FUNC(0x003CB160, Vector3, AOTLinker_c__Linker_b__0_18, (AOTLinker_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C680, AOTLinker_c__Linker_b__0_18__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__Linker_b__0_19, (AOTLinker_c * __this, Vector3 value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C678, AOTLinker_c__Linker_b__0_19__MethodInfo); DO_APP_FUNC(0x01CDCAD0, Vector4, AOTLinker_c__Linker_b__0_20, (AOTLinker_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C668, AOTLinker_c__Linker_b__0_20__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__Linker_b__0_21, (AOTLinker_c * __this, Vector4 value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C660, AOTLinker_c__Linker_b__0_21__MethodInfo); DO_APP_FUNC(0x01CDCB20, Quaternion, AOTLinker_c__Linker_b__0_22, (AOTLinker_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C658, AOTLinker_c__Linker_b__0_22__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__Linker_b__0_23, (AOTLinker_c * __this, Quaternion value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C650, AOTLinker_c__Linker_b__0_23__MethodInfo); DO_APP_FUNC(0x003CB050, Color, AOTLinker_c__Linker_b__0_24, (AOTLinker_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C648, AOTLinker_c__Linker_b__0_24__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__Linker_b__0_25, (AOTLinker_c * __this, Color value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C640, AOTLinker_c__Linker_b__0_25__MethodInfo); DO_APP_FUNC(0x00A9AD90, Rect, AOTLinker_c__Linker_b__0_26, (AOTLinker_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C638, AOTLinker_c__Linker_b__0_26__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__Linker_b__0_27, (AOTLinker_c * __this, Rect value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C630, AOTLinker_c__Linker_b__0_27__MethodInfo); DO_APP_FUNC(0x01CDCB70, Matrix4x4, AOTLinker_c__Linker_b__0_28, (AOTLinker_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C628, AOTLinker_c__Linker_b__0_28__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__Linker_b__0_29, (AOTLinker_c * __this, Matrix4x4 value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C620, AOTLinker_c__Linker_b__0_29__MethodInfo); DO_APP_FUNC(0x01CDCBD0, AnimationCurve *, AOTLinker_c__Linker_b__0_30, (AOTLinker_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C510, AOTLinker_c__Linker_b__0_30__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__Linker_b__0_31, (AOTLinker_c * __this, AnimationCurve * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C508, AOTLinker_c__Linker_b__0_31__MethodInfo); DO_APP_FUNC(0x003CB690, LayerMask, AOTLinker_c__Linker_b__0_32, (AOTLinker_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C500, AOTLinker_c__Linker_b__0_32__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__Linker_b__0_33, (AOTLinker_c * __this, LayerMask value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C4F8, AOTLinker_c__Linker_b__0_33__MethodInfo); DO_APP_FUNC(0x003CB690, HumanBodyBones__Enum, AOTLinker_c__Linker_b__0_34, (AOTLinker_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C4F0, AOTLinker_c__Linker_b__0_34__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__Linker_b__0_35, (AOTLinker_c * __this, HumanBodyBones__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C4E8, AOTLinker_c__Linker_b__0_35__MethodInfo); DO_APP_FUNC(0x003CB690, QueryTriggerInteraction__Enum, AOTLinker_c__Linker_b__0_36, (AOTLinker_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C4E0, AOTLinker_c__Linker_b__0_36__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__Linker_b__0_37, (AOTLinker_c * __this, QueryTriggerInteraction__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C4D8, AOTLinker_c__Linker_b__0_37__MethodInfo); DO_APP_FUNC(0x003CB690, ForceMode__Enum, AOTLinker_c__Linker_b__0_38, (AOTLinker_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C4C8, AOTLinker_c__Linker_b__0_38__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__Linker_b__0_39, (AOTLinker_c * __this, ForceMode__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C4C0, AOTLinker_c__Linker_b__0_39__MethodInfo); DO_APP_FUNC(0x01CDCC60, Object_1 *, AOTLinker_c__Linker_b__0_40, (AOTLinker_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C4A8, AOTLinker_c__Linker_b__0_40__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__Linker_b__0_41, (AOTLinker_c * __this, Object_1 * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C4A0, AOTLinker_c__Linker_b__0_41__MethodInfo); DO_APP_FUNC(0x003CB690, GameObject *, AOTLinker_c__Linker_b__0_42, (AOTLinker_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C498, AOTLinker_c__Linker_b__0_42__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__Linker_b__0_43, (AOTLinker_c * __this, GameObject * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C490, AOTLinker_c__Linker_b__0_43__MethodInfo); DO_APP_FUNC(0x003CB690, Transform *, AOTLinker_c__Linker_b__0_44, (AOTLinker_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C598, AOTLinker_c__Linker_b__0_44__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__Linker_b__0_45, (AOTLinker_c * __this, Transform * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C590, AOTLinker_c__Linker_b__0_45__MethodInfo); DO_APP_FUNC(0x01CDCCB0, MinMaxFloat, AOTLinker_c__Linker_b__0_46, (AOTLinker_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C588, AOTLinker_c__Linker_b__0_46__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__Linker_b__0_47, (AOTLinker_c * __this, MinMaxFloat value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C580, AOTLinker_c__Linker_b__0_47__MethodInfo); DO_APP_FUNC(0x01CDCCC0, MinMaxVector3, AOTLinker_c__Linker_b__0_48, (AOTLinker_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C578, AOTLinker_c__Linker_b__0_48__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__Linker_b__0_49, (AOTLinker_c * __this, MinMaxVector3 value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C570, AOTLinker_c__Linker_b__0_49__MethodInfo); DO_APP_FUNC(0x003CB690, PlayerInput_LookVectorMode__Enum, AOTLinker_c__Linker_b__0_50, (AOTLinker_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C560, AOTLinker_c__Linker_b__0_50__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__Linker_b__0_51, (AOTLinker_c * __this, PlayerInput_LookVectorMode__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C558, AOTLinker_c__Linker_b__0_51__MethodInfo); DO_APP_FUNC(0x00A9AD90, ObjectPoolBase_PreloadedPrefab, AOTLinker_c__Linker_b__0_52, (AOTLinker_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C550, AOTLinker_c__Linker_b__0_52__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__Linker_b__0_53, (AOTLinker_c * __this, ObjectPoolBase_PreloadedPrefab value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C548, AOTLinker_c__Linker_b__0_53__MethodInfo); DO_APP_FUNC(0x003CB690, Ability_AbilityStartType__Enum, AOTLinker_c__Linker_b__0_54, (AOTLinker_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C540, AOTLinker_c__Linker_b__0_54__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__Linker_b__0_55, (AOTLinker_c * __this, Ability_AbilityStartType__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C538, AOTLinker_c__Linker_b__0_55__MethodInfo); DO_APP_FUNC(0x003CB690, Ability_AbilityStopType__Enum, AOTLinker_c__Linker_b__0_56, (AOTLinker_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C530, AOTLinker_c__Linker_b__0_56__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__Linker_b__0_57, (AOTLinker_c * __this, Ability_AbilityStopType__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C528, AOTLinker_c__Linker_b__0_57__MethodInfo); DO_APP_FUNC(0x003CB690, Ability_AbilityBoolOverride__Enum, AOTLinker_c__Linker_b__0_58, (AOTLinker_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C520, AOTLinker_c__Linker_b__0_58__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__Linker_b__0_59, (AOTLinker_c * __this, Ability_AbilityBoolOverride__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C3C8, AOTLinker_c__Linker_b__0_59__MethodInfo); DO_APP_FUNC(0x00A9AD90, ComboTimeout_ComboInputElement, AOTLinker_c__Linker_b__0_60, (AOTLinker_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C3B8, AOTLinker_c__Linker_b__0_60__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__Linker_b__0_61, (AOTLinker_c * __this, ComboTimeout_ComboInputElement value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C3A8, AOTLinker_c__Linker_b__0_61__MethodInfo); DO_APP_FUNC(0x003CB690, RestrictPosition_RestrictionType__Enum, AOTLinker_c__Linker_b__0_62, (AOTLinker_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C398, AOTLinker_c__Linker_b__0_62__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__Linker_b__0_63, (AOTLinker_c * __this, RestrictPosition_RestrictionType__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C388, AOTLinker_c__Linker_b__0_63__MethodInfo); DO_APP_FUNC(0x003CB690, DetectObjectAbilityBase_ObjectDetectionMode__Enum, AOTLinker_c__Linker_b__0_64, (AOTLinker_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C378, AOTLinker_c__Linker_b__0_64__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__Linker_b__0_65, (AOTLinker_c * __this, DetectObjectAbilityBase_ObjectDetectionMode__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C370, AOTLinker_c__Linker_b__0_65__MethodInfo); DO_APP_FUNC(0x003CB690, EquipUnequip_AutoEquipType__Enum, AOTLinker_c__Linker_b__0_66, (AOTLinker_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C368, AOTLinker_c__Linker_b__0_66__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__Linker_b__0_67, (AOTLinker_c * __this, EquipUnequip_AutoEquipType__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C358, AOTLinker_c__Linker_b__0_67__MethodInfo); DO_APP_FUNC(0x003CB690, Shake_ShakeTarget__Enum, AOTLinker_c__Linker_b__0_68, (AOTLinker_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C350, AOTLinker_c__Linker_b__0_68__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__Linker_b__0_69, (AOTLinker_c * __this, Shake_ShakeTarget__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C348, AOTLinker_c__Linker_b__0_69__MethodInfo); DO_APP_FUNC(0x003CB690, Attribute_AutoUpdateValue__Enum, AOTLinker_c__Linker_b__0_70, (AOTLinker_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C328, AOTLinker_c__Linker_b__0_70__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__Linker_b__0_71, (AOTLinker_c * __this, Attribute_AutoUpdateValue__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C320, AOTLinker_c__Linker_b__0_71__MethodInfo); DO_APP_FUNC(0x003CB690, SurfaceImpact *, AOTLinker_c__Linker_b__0_72, (AOTLinker_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C318, AOTLinker_c__Linker_b__0_72__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__Linker_b__0_73, (AOTLinker_c * __this, SurfaceImpact * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C488, AOTLinker_c__Linker_b__0_73__MethodInfo); DO_APP_FUNC(0x0121A100, UVTexture, AOTLinker_c__Linker_b__0_74, (AOTLinker_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C478, AOTLinker_c__Linker_b__0_74__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__Linker_b__0_75, (AOTLinker_c * __this, UVTexture value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C468, AOTLinker_c__Linker_b__0_75__MethodInfo); DO_APP_FUNC(0x00A9AD90, ObjectSurface, AOTLinker_c__Linker_b__0_76, (AOTLinker_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C458, AOTLinker_c__Linker_b__0_76__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__Linker_b__0_77, (AOTLinker_c * __this, ObjectSurface value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C450, AOTLinker_c__Linker_b__0_77__MethodInfo); DO_APP_FUNC(0x003CB690, ObjectSpawnInfo *, AOTLinker_c__Linker_b__0_78, (AOTLinker_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C440, AOTLinker_c__Linker_b__0_78__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__Linker_b__0_79, (AOTLinker_c * __this, ObjectSpawnInfo * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C438, AOTLinker_c__Linker_b__0_79__MethodInfo); DO_APP_FUNC(0x003CB690, AnimationEventTrigger *, AOTLinker_c__Linker_b__0_80, (AOTLinker_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C420, AOTLinker_c__Linker_b__0_80__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__Linker_b__0_81, (AOTLinker_c * __this, AnimationEventTrigger * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C418, AOTLinker_c__Linker_b__0_81__MethodInfo); DO_APP_FUNC(0x00A9AD90, CharacterFootEffects_Foot, AOTLinker_c__Linker_b__0_82, (AOTLinker_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C410, AOTLinker_c__Linker_b__0_82__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__Linker_b__0_83, (AOTLinker_c * __this, CharacterFootEffects_Foot value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C400, AOTLinker_c__Linker_b__0_83__MethodInfo); DO_APP_FUNC(0x003CB690, CharacterFootEffects_FootstepPlacementMode__Enum, AOTLinker_c__Linker_b__0_84, (AOTLinker_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C3F0, AOTLinker_c__Linker_b__0_84__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__Linker_b__0_85, (AOTLinker_c * __this, CharacterFootEffects_FootstepPlacementMode__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C3E8, AOTLinker_c__Linker_b__0_85__MethodInfo); DO_APP_FUNC(0x003CB690, SpawnPoint_SpawnShape__Enum, AOTLinker_c__Linker_b__0_86, (AOTLinker_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C3E0, AOTLinker_c__Linker_b__0_86__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__Linker_b__0_87, (AOTLinker_c * __this, SpawnPoint_SpawnShape__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C3D8, AOTLinker_c__Linker_b__0_87__MethodInfo); DO_APP_FUNC(0x003CB690, Respawner_SpawnPositioningMode__Enum, AOTLinker_c__Linker_b__0_88, (AOTLinker_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C2B8, AOTLinker_c__Linker_b__0_88__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__Linker_b__0_89, (AOTLinker_c * __this, Respawner_SpawnPositioningMode__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C2A8, AOTLinker_c__Linker_b__0_89__MethodInfo); DO_APP_FUNC(0x01225CB0, MovingPlatform_Waypoint, AOTLinker_c__Linker_b__0_90, (AOTLinker_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C288, AOTLinker_c__Linker_b__0_90__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__Linker_b__0_91, (AOTLinker_c * __this, MovingPlatform_Waypoint value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C280, AOTLinker_c__Linker_b__0_91__MethodInfo); DO_APP_FUNC(0x003CB690, MovingPlatform_PathMovementType__Enum, AOTLinker_c__Linker_b__0_92, (AOTLinker_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C278, AOTLinker_c__Linker_b__0_92__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__Linker_b__0_93, (AOTLinker_c * __this, MovingPlatform_PathMovementType__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C270, AOTLinker_c__Linker_b__0_93__MethodInfo); DO_APP_FUNC(0x003CB690, MovingPlatform_PathDirection__Enum, AOTLinker_c__Linker_b__0_94, (AOTLinker_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C268, AOTLinker_c__Linker_b__0_94__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__Linker_b__0_95, (AOTLinker_c * __this, MovingPlatform_PathDirection__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C260, AOTLinker_c__Linker_b__0_95__MethodInfo); DO_APP_FUNC(0x003CB690, MovingPlatform_MovementInterpolationMode__Enum, AOTLinker_c__Linker_b__0_96, (AOTLinker_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C258, AOTLinker_c__Linker_b__0_96__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__Linker_b__0_97, (AOTLinker_c * __this, MovingPlatform_MovementInterpolationMode__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C250, AOTLinker_c__Linker_b__0_97__MethodInfo); DO_APP_FUNC(0x003CB690, MovingPlatform_RotateInterpolationMode__Enum, AOTLinker_c__Linker_b__0_98, (AOTLinker_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C240, AOTLinker_c__Linker_b__0_98__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__Linker_b__0_99, (AOTLinker_c * __this, MovingPlatform_RotateInterpolationMode__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C238, AOTLinker_c__Linker_b__0_99__MethodInfo); DO_APP_FUNC(0x003CB690, AudioClipSet *, AOTLinker_c__Linker_b__0_100, (AOTLinker_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C760, AOTLinker_c__Linker_b__0_100__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__Linker_b__0_101, (AOTLinker_c * __this, AudioClipSet * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C758, AOTLinker_c__Linker_b__0_101__MethodInfo); DO_APP_FUNC(0x003CB690, Reload_AutoReloadType__Enum, AOTLinker_c__Linker_b__0_102, (AOTLinker_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C750, AOTLinker_c__Linker_b__0_102__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__Linker_b__0_103, (AOTLinker_c * __this, Reload_AutoReloadType__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C748, AOTLinker_c__Linker_b__0_103__MethodInfo); DO_APP_FUNC(0x003CB690, ShootableWeapon_FireMode__Enum, AOTLinker_c__Linker_b__0_104, (AOTLinker_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C740, AOTLinker_c__Linker_b__0_104__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__Linker_b__0_105, (AOTLinker_c * __this, ShootableWeapon_FireMode__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C738, AOTLinker_c__Linker_b__0_105__MethodInfo); DO_APP_FUNC(0x003CB690, ShootableWeapon_FireType__Enum, AOTLinker_c__Linker_b__0_106, (AOTLinker_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C730, AOTLinker_c__Linker_b__0_106__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__Linker_b__0_107, (AOTLinker_c * __this, ShootableWeapon_FireType__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C728, AOTLinker_c__Linker_b__0_107__MethodInfo); DO_APP_FUNC(0x003CB690, ShootableWeapon_ProjectileVisiblityType__Enum, AOTLinker_c__Linker_b__0_108, (AOTLinker_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C720, AOTLinker_c__Linker_b__0_108__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__Linker_b__0_109, (AOTLinker_c * __this, ShootableWeapon_ProjectileVisiblityType__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C618, AOTLinker_c__Linker_b__0_109__MethodInfo); DO_APP_FUNC(0x003CB690, ShootableWeapon_ReloadClipType__Enum, AOTLinker_c__Linker_b__0_110, (AOTLinker_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C608, AOTLinker_c__Linker_b__0_110__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__Linker_b__0_111, (AOTLinker_c * __this, ShootableWeapon_ReloadClipType__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C600, AOTLinker_c__Linker_b__0_111__MethodInfo); DO_APP_FUNC(0x003CB690, MagicItem_CastDirection__Enum, AOTLinker_c__Linker_b__0_112, (AOTLinker_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C5F8, AOTLinker_c__Linker_b__0_112__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__Linker_b__0_113, (AOTLinker_c * __this, MagicItem_CastDirection__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C5F0, AOTLinker_c__Linker_b__0_113__MethodInfo); DO_APP_FUNC(0x003CB690, MagicItem_CastUseType__Enum, AOTLinker_c__Linker_b__0_114, (AOTLinker_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C5E8, AOTLinker_c__Linker_b__0_114__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__Linker_b__0_115, (AOTLinker_c * __this, MagicItem_CastUseType__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C5E0, AOTLinker_c__Linker_b__0_115__MethodInfo); DO_APP_FUNC(0x003CB690, MagicItem_CastInterruptSource__Enum, AOTLinker_c__Linker_b__0_116, (AOTLinker_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C5D8, AOTLinker_c__Linker_b__0_116__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__Linker_b__0_117, (AOTLinker_c * __this, MagicItem_CastInterruptSource__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C5D0, AOTLinker_c__Linker_b__0_117__MethodInfo); DO_APP_FUNC(0x01226010, HealthFlashMonitor_Flash, AOTLinker_c__Linker_b__0_118, (AOTLinker_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C5C8, AOTLinker_c__Linker_b__0_118__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c__Linker_b__0_119, (AOTLinker_c * __this, HealthFlashMonitor_Flash value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C5C0, AOTLinker_c__Linker_b__0_119__MethodInfo); DO_APP_FUNC(0x01CDCCE0, DefaultPreset *, DefaultPreset_CreateDefaultPreset, (MethodInfo * method)); DO_APP_FUNC(0x01CDCD70, void, DefaultPreset_Initialize, (DefaultPreset * __this, Object * obj, MemberVisibility__Enum visibility, MethodInfo * method)); DO_APP_FUNC(0x01CDCF10, void, DefaultPreset_ApplyValues, (DefaultPreset * __this, Preset_BaseDelegate__Array * delegates, MethodInfo * method)); @@ -67495,7 +77750,9 @@ DO_APP_FUNC(0x01CE2B80, void, StateManager_CombineStates, (StateManager * __this DO_APP_FUNC(0x01CE2CF0, void, StateManager_DeactivateStateTimer, (GameObject * gameObject, String * stateName, float time, MethodInfo * method)); DO_APP_FUNC(0x01CE2D50, void, StateManager_DeactivateStateTimerInternal, (StateManager * __this, GameObject * gameObject, String * stateName, float time, MethodInfo * method)); DO_APP_FUNC(0x01CE3110, void, StateManager_DeactivateState, (StateManager * __this, GameObject * gameObject, String * stateName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1BCE0, StateManager_DeactivateState__MethodInfo); DO_APP_FUNC(0x01CE31E0, void, StateManager_SceneUnloaded, (StateManager * __this, Scene scene, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1BF40, StateManager_SceneUnloaded__MethodInfo); DO_APP_FUNC(0x01CE3320, void, StateManager_OnDisable, (StateManager * __this, MethodInfo * method)); DO_APP_FUNC(0x01CE33D0, void, StateManager_DomainReset, (MethodInfo * method)); DO_APP_FUNC(0x01CE3480, void, StateManager__ctor, (StateManager * __this, MethodInfo * method)); @@ -67514,8 +77771,10 @@ DO_APP_FUNC(0x00424C30, void, StateTrigger_set_ActivateAudioClipSet, (StateTrigg DO_APP_FUNC(0x01CEA330, void, StateTrigger_Awake, (StateTrigger * __this, MethodInfo * method)); DO_APP_FUNC(0x01CEA470, void, StateTrigger_OnTriggerEnter, (StateTrigger * __this, Collider * other, MethodInfo * method)); DO_APP_FUNC(0x01CEAC50, void, StateTrigger_ChangeState, (StateTrigger * __this, GameObject * gameObject, bool activate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EC70, StateTrigger_ChangeState__MethodInfo); DO_APP_FUNC(0x01CEAF30, void, StateTrigger_OnTriggerExit, (StateTrigger * __this, Collider * other, MethodInfo * method)); DO_APP_FUNC(0x01CEB9B0, void, StateTrigger_OnRespawn, (StateTrigger * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EC68, StateTrigger_OnRespawn__MethodInfo); DO_APP_FUNC(0x01CEBBD0, void, StateTrigger__ctor, (StateTrigger * __this, MethodInfo * method)); DO_APP_FUNC(0x005F7520, bool, ObjectActivator_get_Active, (ObjectActivator * __this, MethodInfo * method)); DO_APP_FUNC(0x00715340, void, ObjectActivator_set_Active, (ObjectActivator * __this, bool value, MethodInfo * method)); @@ -67543,8 +77802,10 @@ DO_APP_FUNC(0x01CEC460, void, Destructible_Initialize, (Destructible * __this, V DO_APP_FUNC(0x01CEC540, void, Destructible_InitializeDestructibleProperties, (Destructible * __this, float damageAmount, float impactForce, int32_t impactForceFrames, LayerMask impactLayers, String * impactStateName, float impactStateDisableTimer, SurfaceImpact * surfaceImpact, MethodInfo * method)); DO_APP_FUNC(0x01CECC90, void, Destructible_OnCollision, (Destructible * __this, Nullable_1_UnityEngine_RaycastHit_ hit, MethodInfo * method)); DO_APP_FUNC(0x01CEDFF0, void, Destructible_Destruct, (Destructible * __this, Nullable_1_UnityEngine_RaycastHit_ hit, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EAC0, Destructible_Destruct__MethodInfo); DO_APP_FUNC(0x01CEE180, void, Destructible_Destruct_1, (Destructible * __this, Vector3 hitPosition, Vector3 hitNormal, MethodInfo * method)); DO_APP_FUNC(0x01CEE5E0, void, Destructible_StopParticleSystem, (Destructible * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EAB8, Destructible_StopParticleSystem__MethodInfo); DO_APP_FUNC(0x01CEE650, void, Destructible_OnDisable, (Destructible * __this, MethodInfo * method)); DO_APP_FUNC(0x01CEE830, void, Destructible__ctor, (Destructible * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCC40, bool, Explosion_get_ExplodeOnEnable, (Explosion * __this, MethodInfo * method)); @@ -67573,6 +77834,7 @@ DO_APP_FUNC(0x01CEEAB0, void, Explosion_Explode, (Explosion * __this, MethodInfo DO_APP_FUNC(0x01CEEAE0, void, Explosion_Explode_1, (Explosion * __this, GameObject * originator, MethodInfo * method)); DO_APP_FUNC(0x01CEEB10, void, Explosion_Explode_2, (Explosion * __this, float damageAmount, float impactForce, int32_t impactForceFrames, GameObject * originator, MethodInfo * method)); DO_APP_FUNC(0x01CF0350, void, Explosion_Destroy, (Explosion * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EB70, Explosion_Destroy__MethodInfo); DO_APP_FUNC(0x01CF03B0, void, Explosion__ctor, (Explosion * __this, MethodInfo * method)); DO_APP_FUNC(0x01CF0570, float, Grenade_get_Lifespan, (Grenade * __this, MethodInfo * method)); DO_APP_FUNC(0x01CF0580, void, Grenade_set_Lifespan, (Grenade * __this, float value, MethodInfo * method)); @@ -67584,6 +77846,7 @@ DO_APP_FUNC(0x01CF0860, void, Grenade_Initialize, (Grenade * __this, Vector3 vel DO_APP_FUNC(0x01CF0990, void, Grenade_StartCooking, (Grenade * __this, GameObject * originator, MethodInfo * method)); DO_APP_FUNC(0x01CF0AD0, void, Grenade_DetachAttachPin, (Grenade * __this, Transform * attachTransform, MethodInfo * method)); DO_APP_FUNC(0x01CF0EA0, void, Grenade_Deactivate, (Grenade * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E9B8, Grenade_Deactivate__MethodInfo); DO_APP_FUNC(0x01CF1150, void, Grenade__ctor, (Grenade * __this, MethodInfo * method)); DO_APP_FUNC(0x003CC980, KinematicObjectManager_UpdateLocation__Enum, MovingPlatform_get_UpdateLocation, (MovingPlatform * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3B0, MovingPlatform_Waypoint__Array *, MovingPlatform_get_Waypoints, (MovingPlatform * __this, MethodInfo * method)); @@ -67618,6 +77881,7 @@ DO_APP_FUNC(0x01CF1940, void, MovingPlatform_OnEnable, (MovingPlatform * __this, DO_APP_FUNC(0x01CF1980, void, MovingPlatform_Move, (MovingPlatform * __this, MethodInfo * method)); DO_APP_FUNC(0x01CF1C70, void, MovingPlatform_UpdatePath, (MovingPlatform * __this, MethodInfo * method)); DO_APP_FUNC(0x01CF1DC0, void, MovingPlatform_UpdateWaypoint, (MovingPlatform * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EA38, MovingPlatform_UpdateWaypoint__MethodInfo); DO_APP_FUNC(0x01CF1EB0, void, MovingPlatform_UpdateState, (MovingPlatform * __this, MethodInfo * method)); DO_APP_FUNC(0x01CF1FD0, float, MovingPlatform_GetRemainingDistance, (MovingPlatform * __this, MethodInfo * method)); DO_APP_FUNC(0x01CF21D0, void, MovingPlatform_GoToNextWaypoint, (MovingPlatform * __this, MethodInfo * method)); @@ -67633,23 +77897,25 @@ DO_APP_FUNC(0x01CF33B0, void, MovingPlatform_OnTriggerExit, (MovingPlatform * __ DO_APP_FUNC(0x01CF3670, void, MovingPlatform_OnDisable, (MovingPlatform * __this, MethodInfo * method)); DO_APP_FUNC(0x01CF36A0, void, MovingPlatform__ctor, (MovingPlatform * __this, MethodInfo * method)); DO_APP_FUNC(0x00978060, Transform *, MovingPlatform_Opsive_UltimateCharacterController_Game_IKinematicObject_get_transform, (MovingPlatform * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, Transform *, MovingPlatform_Waypoint_get_Transform, (MovingPlatform_Waypoint__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, MovingPlatform_Waypoint_set_Transform, (MovingPlatform_Waypoint__Boxed * __this, Transform * value, MethodInfo * method)); -DO_APP_FUNC(0x00C43A70, float, MovingPlatform_Waypoint_get_Delay, (MovingPlatform_Waypoint__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C43A80, void, MovingPlatform_Waypoint_set_Delay, (MovingPlatform_Waypoint__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, String *, MovingPlatform_Waypoint_get_State, (MovingPlatform_Waypoint__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCBE0, void, MovingPlatform_Waypoint_set_State, (MovingPlatform_Waypoint__Boxed * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x003BC2E0, int32_t, MovingPlatform_Waypoint_get_StateHash, (MovingPlatform_Waypoint__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01CF37F0, void, MovingPlatform_Waypoint_Initialize, (MovingPlatform_Waypoint__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Transform *, MovingPlatform_Waypoint_get_Transform, (MovingPlatform_Waypoint * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, MovingPlatform_Waypoint_set_Transform, (MovingPlatform_Waypoint * __this, Transform * value, MethodInfo * method)); +DO_APP_FUNC(0x00C43A70, float, MovingPlatform_Waypoint_get_Delay, (MovingPlatform_Waypoint * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C43A80, void, MovingPlatform_Waypoint_set_Delay, (MovingPlatform_Waypoint * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, String *, MovingPlatform_Waypoint_get_State, (MovingPlatform_Waypoint * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCBE0, void, MovingPlatform_Waypoint_set_State, (MovingPlatform_Waypoint * __this, String * value, MethodInfo * method)); +DO_APP_FUNC(0x003BC2E0, int32_t, MovingPlatform_Waypoint_get_StateHash, (MovingPlatform_Waypoint * __this, MethodInfo * method)); +DO_APP_FUNC(0x01CF37F0, void, MovingPlatform_Waypoint_Initialize, (MovingPlatform_Waypoint * __this, MethodInfo * method)); DO_APP_FUNC(0x01CF3810, void, MuzzleFlash_Awake, (MuzzleFlash * __this, MethodInfo * method)); DO_APP_FUNC(0x01CF3D10, void, MuzzleFlash_OnEnable, (MuzzleFlash * __this, MethodInfo * method)); DO_APP_FUNC(0x01CF3FA0, void, MuzzleFlash_Show, (MuzzleFlash * __this, Item * item, int32_t itemActionID, bool pooled, UltimateCharacterLocomotion * characterLocomotion, MethodInfo * method)); DO_APP_FUNC(0x01CF4870, void, MuzzleFlash_Update, (MuzzleFlash * __this, MethodInfo * method)); DO_APP_FUNC(0x01C6C940, void, MuzzleFlash_OnChangeTimeScale, (MuzzleFlash * __this, float timeScale, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E9F8, MuzzleFlash_OnChangeTimeScale__MethodInfo); DO_APP_FUNC(0x01CF4B90, void, MuzzleFlash_OnDisable, (MuzzleFlash * __this, MethodInfo * method)); DO_APP_FUNC(0x01CF4DC0, void, MuzzleFlash__ctor, (MuzzleFlash * __this, MethodInfo * method)); DO_APP_FUNC(0x01CF4EA0, void, Projectile_Initialize, (Projectile * __this, Vector3 velocity, Vector3 torque, float damageAmount, float impactForce, int32_t impactForceFrames, LayerMask impactLayers, String * impactStateName, float impactStateDisableTimer, SurfaceImpact * surfaceImpact, GameObject * originator, MethodInfo * method)); DO_APP_FUNC(0x01CF5070, void, Projectile_Deactivate, (Projectile * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E928, Projectile_Deactivate__MethodInfo); DO_APP_FUNC(0x01CF50A0, void, Projectile_OnCollision, (Projectile * __this, Nullable_1_UnityEngine_RaycastHit_ hit, MethodInfo * method)); DO_APP_FUNC(0x01CF5160, void, Projectile_OnDisable, (Projectile * __this, MethodInfo * method)); DO_APP_FUNC(0x01CF53C0, void, Projectile__ctor, (Projectile * __this, MethodInfo * method)); @@ -67707,15 +77973,16 @@ DO_APP_FUNC(0x01CF7990, void, TrajectoryObject_SetOriginator, (TrajectoryObject DO_APP_FUNC(0x01CF8000, bool, TrajectoryObject_OverlapCast, (TrajectoryObject * __this, Vector3 position, Quaternion rotation, MethodInfo * method)); DO_APP_FUNC(0x01CF9170, void, TrajectoryObject_InitializeComponentReferences, (TrajectoryObject * __this, MethodInfo * method)); DO_APP_FUNC(0x01CF9680, void, TrajectoryObject_FixedUpdate, (TrajectoryObject * __this, MethodInfo * method)); -DO_APP_FUNC(0x01CFA110, bool, TrajectoryObject_Move, (TrajectoryObject * __this, Vector3 position, Quaternion rotation, MethodInfo * method)); +DO_APP_FUNC(0x01CFA110, bool, TrajectoryObject_Move, (TrajectoryObject * __this, Vector3 * position, Quaternion rotation, MethodInfo * method)); DO_APP_FUNC(0x01CFAD40, void, TrajectoryObject_OnCollision, (TrajectoryObject * __this, Nullable_1_UnityEngine_RaycastHit_ hit, MethodInfo * method)); DO_APP_FUNC(0x01CFB120, bool, TrajectoryObject_SingleCast, (TrajectoryObject * __this, Vector3 position, Quaternion rotation, Vector3 direction, MethodInfo * method)); -DO_APP_FUNC(0x01CFBC90, void, TrajectoryObject_Rotate, (TrajectoryObject * __this, Vector3 position, Quaternion rotation, MethodInfo * method)); +DO_APP_FUNC(0x01CFBC90, void, TrajectoryObject_Rotate, (TrajectoryObject * __this, Vector3 position, Quaternion * rotation, MethodInfo * method)); DO_APP_FUNC(0x01CFCD20, void, TrajectoryObject_Stop, (TrajectoryObject * __this, MethodInfo * method)); DO_APP_FUNC(0x01CFCD90, void, TrajectoryObject_AddTorque, (TrajectoryObject * __this, Vector3 torque, MethodInfo * method)); DO_APP_FUNC(0x01CFCDE0, void, TrajectoryObject_AddForce, (TrajectoryObject * __this, Vector3 force, int32_t frames, MethodInfo * method)); DO_APP_FUNC(0x01CFCDE0, void, TrajectoryObject_AddForce_1, (TrajectoryObject * __this, Vector3 force, MethodInfo * method)); DO_APP_FUNC(0x01CFCE70, void, TrajectoryObject_OnChangeTimeScale, (TrajectoryObject * __this, float timeScale, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E970, TrajectoryObject_OnChangeTimeScale__MethodInfo); DO_APP_FUNC(0x01CFCE80, void, TrajectoryObject_OnDisable, (TrajectoryObject * __this, MethodInfo * method)); DO_APP_FUNC(0x01CFD0B0, void, TrajectoryObject__ctor, (TrajectoryObject * __this, MethodInfo * method)); DO_APP_FUNC(0x01CFD200, void, MagicParticle_Awake, (MagicParticle * __this, MethodInfo * method)); @@ -67730,6 +77997,7 @@ DO_APP_FUNC(0x01CFE370, void, MagicProjectile_set_WaitForParticleStop, (MagicPro DO_APP_FUNC(0x01CFE380, void, MagicProjectile_Initialize, (MagicProjectile * __this, Vector3 velocity, Vector3 torque, GameObject * originator, MagicItem * magicItem, uint32_t castID, MethodInfo * method)); DO_APP_FUNC(0x01CFE5B0, void, MagicProjectile_OnCollision, (MagicProjectile * __this, Nullable_1_UnityEngine_RaycastHit_ hit, MethodInfo * method)); DO_APP_FUNC(0x01CFEA10, void, MagicProjectile_ReturnToObjectPool, (MagicProjectile * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E748, MagicProjectile_ReturnToObjectPool__MethodInfo); DO_APP_FUNC(0x01CFEA20, void, MagicProjectile__ctor, (MagicProjectile * __this, MethodInfo * method)); DO_APP_FUNC(0x00606200, Vector3, PivotOffset_get_Offset, (PivotOffset * __this, MethodInfo * method)); DO_APP_FUNC(0x00606220, void, PivotOffset_set_Offset, (PivotOffset * __this, Vector3 value, MethodInfo * method)); @@ -67742,12 +78010,15 @@ DO_APP_FUNC(0x01CFF380, void, Shell__ctor, (Shell * __this, MethodInfo * method) DO_APP_FUNC(0x01CFF3A0, void, Smoke_Awake, (Smoke * __this, MethodInfo * method)); DO_APP_FUNC(0x01CFF660, void, Smoke_Show, (Smoke * __this, Item * item, int32_t itemActionID, UltimateCharacterLocomotion * characterLocomotion, MethodInfo * method)); DO_APP_FUNC(0x01CFFB20, void, Smoke_DestroySelf, (Smoke * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E7A8, Smoke_DestroySelf__MethodInfo); DO_APP_FUNC(0x01CFFB30, void, Smoke_OnChangePerspectives, (Smoke * __this, bool firstPersonPerspective, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E798, Smoke_OnChangePerspectives__MethodInfo); DO_APP_FUNC(0x01D00120, void, Smoke_OnDisable, (Smoke * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, Smoke__ctor, (Smoke * __this, MethodInfo * method)); DO_APP_FUNC(0x01D00340, void, Tracer_Awake, (Tracer * __this, MethodInfo * method)); DO_APP_FUNC(0x01D00480, void, Tracer_Initialize, (Tracer * __this, Vector3 hitPoint, MethodInfo * method)); DO_APP_FUNC(0x01CF0350, void, Tracer_DestroyObject, (Tracer * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E708, Tracer_DestroyObject__MethodInfo); DO_APP_FUNC(0x01D00680, void, Tracer__ctor, (Tracer * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, CharacterIKBase_IKGoal__Enum, AbilityIKTarget_get_Goal, (AbilityIKTarget * __this, MethodInfo * method)); DO_APP_FUNC(0x003CCB80, float, AbilityIKTarget_get_Delay, (AbilityIKTarget * __this, MethodInfo * method)); @@ -67819,6 +78090,7 @@ DO_APP_FUNC(0x01D03FF0, void, ItemPickupBase_TryItemPickup, (ItemPickupBase * __ DO_APP_FUNC(0x01D04390, void, ItemPickupBase_DoItemPickup, (ItemPickupBase * __this, GameObject * character, InventoryBase * inventory, int32_t slotID, bool immediatePickup, bool pickupItemIdentifier, MethodInfo * method)); DO_APP_FUNC(0x01D05110, bool, ItemPickupBase_DoItemIdentifierPickup, (ItemPickupBase * __this, GameObject * character, InventoryBase * inventory, int32_t slotID, bool immediatePickup, bool forceEquip, MethodInfo * method)); DO_APP_FUNC(0x01D05200, void, ItemPickupBase_OnWillEquipItem, (ItemPickupBase * __this, Item * item, int32_t slotID, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E6C8, ItemPickupBase_OnWillEquipItem__MethodInfo); DO_APP_FUNC(0x01D03910, void, ItemPickupBase__ctor, (ItemPickupBase * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, GameObject *, ItemPickupBase_PickupSet_get_Item, (ItemPickupBase_PickupSet * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, ItemPickupBase_PickupSet_set_Item, (ItemPickupBase_PickupSet * __this, GameObject * value, MethodInfo * method)); @@ -67871,7 +78143,9 @@ DO_APP_FUNC(0x01D05730, void, ObjectPickup_Awake, (ObjectPickup * __this, Method DO_APP_FUNC(0x01D05B80, void, ObjectPickup_OnEnable, (ObjectPickup * __this, MethodInfo * method)); DO_APP_FUNC(0x01D05B90, void, ObjectPickup_Initialize, (ObjectPickup * __this, bool forceInitialization, MethodInfo * method)); DO_APP_FUNC(0x01D05F30, void, ObjectPickup_CheckVelocity, (ObjectPickup * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E5C8, ObjectPickup_CheckVelocity__MethodInfo); DO_APP_FUNC(0x01D06100, void, ObjectPickup_EnableTrigger, (ObjectPickup * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E5C0, ObjectPickup_EnableTrigger__MethodInfo); DO_APP_FUNC(0x01D06220, void, ObjectPickup_Update, (ObjectPickup * __this, MethodInfo * method)); DO_APP_FUNC(0x01D06500, void, ObjectPickup_OnTriggerEnter, (ObjectPickup * __this, Collider * other, MethodInfo * method)); DO_APP_FUNC(0x01D06590, void, ObjectPickup_ObjectPickedUp, (ObjectPickup * __this, GameObject * pickedUpBy, MethodInfo * method)); @@ -67886,6 +78160,7 @@ DO_APP_FUNC(0x01D071C0, void, NetworkObjectPool_NetworkSpawn, (GameObject * orig DO_APP_FUNC(0x01D07380, void, NetworkObjectPool_Destroy, (GameObject * obj, MethodInfo * method)); DO_APP_FUNC(0x01D07520, bool, NetworkObjectPool_SpawnedWithPool, (GameObject * obj, MethodInfo * method)); DO_APP_FUNC(0x01D07680, void, NetworkObjectPool_SceneUnloaded, (NetworkObjectPool * __this, Scene scene, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E5E8, NetworkObjectPool_SceneUnloaded__MethodInfo); DO_APP_FUNC(0x01D077A0, void, NetworkObjectPool_OnDisable, (NetworkObjectPool * __this, MethodInfo * method)); DO_APP_FUNC(0x01D07850, void, NetworkObjectPool_DomainReset, (MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, NetworkObjectPool__ctor, (NetworkObjectPool * __this, MethodInfo * method)); @@ -67901,8 +78176,8 @@ DO_APP_FUNC(0x003C7320, AnimationCurve *, AnimatorMotion_get_YRotation, (Animato DO_APP_FUNC(0x003C7330, void, AnimatorMotion_set_YRotation, (AnimatorMotion * __this, AnimationCurve * value, MethodInfo * method)); DO_APP_FUNC(0x003C7390, AnimationCurve *, AnimatorMotion_get_ZRotation, (AnimatorMotion * __this, MethodInfo * method)); DO_APP_FUNC(0x003C73A0, void, AnimatorMotion_set_ZRotation, (AnimatorMotion * __this, AnimationCurve * value, MethodInfo * method)); -DO_APP_FUNC(0x01D078F0, void, AnimatorMotion_EvaluatePosition, (AnimatorMotion * __this, float time, Vector3 position, MethodInfo * method)); -DO_APP_FUNC(0x01D07A50, void, AnimatorMotion_EvaluateRotation, (AnimatorMotion * __this, float time, Quaternion rotation, MethodInfo * method)); +DO_APP_FUNC(0x01D078F0, void, AnimatorMotion_EvaluatePosition, (AnimatorMotion * __this, float time, Vector3 * position, MethodInfo * method)); +DO_APP_FUNC(0x01D07A50, void, AnimatorMotion_EvaluateRotation, (AnimatorMotion * __this, float time, Quaternion * rotation, MethodInfo * method)); DO_APP_FUNC(0x01D07C30, void, AnimatorMotion__ctor, (AnimatorMotion * __this, MethodInfo * method)); DO_APP_FUNC(0x01D07EC0, SmoothRandom_FractalNoise *, SmoothRandom_get_Noise, (MethodInfo * method)); DO_APP_FUNC(0x01D07FE0, Vector3, SmoothRandom_GetVector3, (float speed, MethodInfo * method)); @@ -67911,14 +78186,14 @@ DO_APP_FUNC(0x003AE050, void, SmoothRandom__ctor, (SmoothRandom * __this, Method DO_APP_FUNC(0x01D08470, void, SmoothRandom_Perlin__ctor, (SmoothRandom_Perlin * __this, MethodInfo * method)); DO_APP_FUNC(0x01D08B30, float, SmoothRandom_Perlin_SCurve, (SmoothRandom_Perlin * __this, float t, MethodInfo * method)); DO_APP_FUNC(0x01D08B50, float, SmoothRandom_Perlin_Lerp, (SmoothRandom_Perlin * __this, float t, float a, float b, MethodInfo * method)); -DO_APP_FUNC(0x01D08B60, void, SmoothRandom_Perlin_Setup, (SmoothRandom_Perlin * __this, float value, int32_t b0, int32_t b1, float r0, float r1, MethodInfo * method)); +DO_APP_FUNC(0x01D08B60, void, SmoothRandom_Perlin_Setup, (SmoothRandom_Perlin * __this, float value, int32_t * b0, int32_t * b1, float * r0, float * r1, MethodInfo * method)); DO_APP_FUNC(0x01D08BA0, float, SmoothRandom_Perlin_At2, (SmoothRandom_Perlin * __this, float rx, float ry, float x, float y, MethodInfo * method)); DO_APP_FUNC(0x01D08BC0, float, SmoothRandom_Perlin_At3, (SmoothRandom_Perlin * __this, float rx, float ry, float rz, float x, float y, float z, MethodInfo * method)); DO_APP_FUNC(0x01D08BE0, float, SmoothRandom_Perlin_Noise, (SmoothRandom_Perlin * __this, float arg, MethodInfo * method)); DO_APP_FUNC(0x01D08CA0, float, SmoothRandom_Perlin_Noise_1, (SmoothRandom_Perlin * __this, float x, float y, MethodInfo * method)); DO_APP_FUNC(0x01D08F70, float, SmoothRandom_Perlin_Noise_2, (SmoothRandom_Perlin * __this, float x, float y, float z, MethodInfo * method)); -DO_APP_FUNC(0x01D09600, void, SmoothRandom_Perlin_Normalize2, (SmoothRandom_Perlin * __this, float x, float y, MethodInfo * method)); -DO_APP_FUNC(0x01D096E0, void, SmoothRandom_Perlin_Normalize3, (SmoothRandom_Perlin * __this, float x, float y, float z, MethodInfo * method)); +DO_APP_FUNC(0x01D09600, void, SmoothRandom_Perlin_Normalize2, (SmoothRandom_Perlin * __this, float * x, float * y, MethodInfo * method)); +DO_APP_FUNC(0x01D096E0, void, SmoothRandom_Perlin_Normalize3, (SmoothRandom_Perlin * __this, float * x, float * y, float * z, MethodInfo * method)); DO_APP_FUNC(0x01D09800, void, SmoothRandom_FractalNoise__ctor, (SmoothRandom_FractalNoise * __this, float inH, float inLacunarity, float inOctaves, MethodInfo * method)); DO_APP_FUNC(0x01D09820, void, SmoothRandom_FractalNoise__ctor_1, (SmoothRandom_FractalNoise * __this, float inH, float inLacunarity, float inOctaves, SmoothRandom_Perlin * noise, MethodInfo * method)); DO_APP_FUNC(0x01D09A80, float, SmoothRandom_FractalNoise_HybridMultifractal, (SmoothRandom_FractalNoise * __this, float x, float y, float offset, MethodInfo * method)); @@ -67949,6 +78224,7 @@ DO_APP_FUNC(0x01D09D90, void, Spring__ctor, (Spring * __this, MethodInfo * metho DO_APP_FUNC(0x01D09E00, void, Spring__ctor_1, (Spring * __this, float stiffness, float damping, MethodInfo * method)); DO_APP_FUNC(0x01D09E70, void, Spring_Initialize, (Spring * __this, bool rotationalSpring, bool fixedUpdate, MethodInfo * method)); DO_APP_FUNC(0x01D0A190, void, Spring_Tick, (Spring * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E570, Spring_Tick__MethodInfo); DO_APP_FUNC(0x01D0A510, void, Spring_Calculate, (Spring * __this, MethodInfo * method)); DO_APP_FUNC(0x01D0A790, void, Spring_Move, (Spring * __this, MethodInfo * method)); DO_APP_FUNC(0x01D0A8E0, void, Spring_AddForce, (Spring * __this, Vector3 force, MethodInfo * method)); @@ -68147,6 +78423,7 @@ DO_APP_FUNC(0x01D159E0, bool, Flashlight_CanUseItem, (Flashlight * __this, ItemA DO_APP_FUNC(0x01D15A40, void, Flashlight_StartItemUse, (Flashlight * __this, ItemAbility * itemAbility, MethodInfo * method)); DO_APP_FUNC(0x01D15B10, void, Flashlight_ToggleFlashlight, (Flashlight * __this, bool active, MethodInfo * method)); DO_APP_FUNC(0x01D15BE0, void, Flashlight_OnBatteryEmpty, (Flashlight * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21670, Flashlight_OnBatteryEmpty__MethodInfo); DO_APP_FUNC(0x01D15BE0, void, Flashlight_StartUnequip, (Flashlight * __this, MethodInfo * method)); DO_APP_FUNC(0x01D15BF0, void, Flashlight_OnChangePerspectives, (Flashlight * __this, bool firstPersonPerspective, MethodInfo * method)); DO_APP_FUNC(0x01D15E80, void, Flashlight_OnDestroy, (Flashlight * __this, MethodInfo * method)); @@ -68157,6 +78434,7 @@ DO_APP_FUNC(0x018BC870, AnimationEventTrigger *, GrenadeItem_get_RemovePinEvent, DO_APP_FUNC(0x018BC880, void, GrenadeItem_set_RemovePinEvent, (GrenadeItem * __this, AnimationEventTrigger * value, MethodInfo * method)); DO_APP_FUNC(0x01D160F0, void, GrenadeItem_StartItemUse, (GrenadeItem * __this, ItemAbility * itemAbility, MethodInfo * method)); DO_APP_FUNC(0x01D16550, void, GrenadeItem_RemovePin, (GrenadeItem * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21620, GrenadeItem_RemovePin__MethodInfo); DO_APP_FUNC(0x01D16680, void, GrenadeItem__ctor, (GrenadeItem * __this, MethodInfo * method)); DO_APP_FUNC(0x003CC980, int32_t, ItemAction_get_ID, (ItemAction * __this, MethodInfo * method)); DO_APP_FUNC(0x003CC990, void, ItemAction_set_ID, (ItemAction * __this, int32_t value, MethodInfo * method)); @@ -68240,7 +78518,7 @@ DO_APP_FUNC(0x01D18F30, void, MagicItem_StartItemUse, (MagicItem * __this, ItemA DO_APP_FUNC(0x01D19080, void, MagicItem_StartStopBeginEndActions, (MagicItem * __this, bool beginActions, bool start, bool networkEvent, MethodInfo * method)); DO_APP_FUNC(0x01D19180, void, MagicItem_UseItem, (MagicItem * __this, MethodInfo * method)); DO_APP_FUNC(0x01D19630, void, MagicItem_DetermineTargetColliders, (MagicItem * __this, MethodInfo * method)); -DO_APP_FUNC(0x01D19E80, bool, MagicItem_DetermineCastValues, (MagicItem * __this, int32_t index, Vector3 direction, Vector3 position, Vector3 normal, MethodInfo * method)); +DO_APP_FUNC(0x01D19E80, bool, MagicItem_DetermineCastValues, (MagicItem * __this, int32_t index, Vector3 * direction, Vector3 * position, Vector3 * normal, MethodInfo * method)); DO_APP_FUNC(0x01D1A7C0, void, MagicItem_UseItemUpdate, (MagicItem * __this, MethodInfo * method)); DO_APP_FUNC(0x01D1A840, bool, MagicItem_IsItemUsePending, (MagicItem * __this, MethodInfo * method)); DO_APP_FUNC(0x01D1A870, int32_t, MagicItem_GetItemSubstateIndex, (MagicItem * __this, MethodInfo * method)); @@ -68255,8 +78533,11 @@ DO_APP_FUNC(0x01D1B4D0, void, MagicItem_StopItemUse, (MagicItem * __this, Method DO_APP_FUNC(0x01D1B580, void, MagicItem_StartUnequip, (MagicItem * __this, MethodInfo * method)); DO_APP_FUNC(0x01D1B790, void, MagicItem_Unequip, (MagicItem * __this, MethodInfo * method)); DO_APP_FUNC(0x01D1B9A0, void, MagicItem_OnMoving, (MagicItem * __this, bool moving, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D215C8, MagicItem_OnMoving__MethodInfo); DO_APP_FUNC(0x01D1BA10, void, MagicItem_OnAbilityActive, (MagicItem * __this, Ability * ability, bool active, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D215D8, MagicItem_OnAbilityActive__MethodInfo); DO_APP_FUNC(0x01D1BB30, void, MagicItem_OnDamage, (MagicItem * __this, float amount, Vector3 position, Vector3 force, GameObject * attacker, Collider * hitCollider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D215D0, MagicItem_OnDamage__MethodInfo); DO_APP_FUNC(0x01D1BBA0, void, MagicItem_OnChangePerspectives, (MagicItem * __this, bool firstPersonPerspective, MethodInfo * method)); DO_APP_FUNC(0x01D1C150, void, MagicItem_OnDestroy, (MagicItem * __this, MethodInfo * method)); DO_APP_FUNC(0x01D1C320, void, MagicItem__ctor, (MagicItem * __this, MethodInfo * method)); @@ -68416,20 +78697,28 @@ DO_APP_FUNC(0x01D1E4E0, void, ShootableWeapon_UseItemUpdate, (ShootableWeapon * DO_APP_FUNC(0x01D1E5C0, void, ShootableWeapon_UseItem, (ShootableWeapon * __this, MethodInfo * method)); DO_APP_FUNC(0x01D1E860, bool, ShootableWeapon_IsItemUsePending, (ShootableWeapon * __this, MethodInfo * method)); DO_APP_FUNC(0x01D1E880, void, ShootableWeapon_OnCharged, (ShootableWeapon * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21488, ShootableWeapon_OnCharged__MethodInfo); DO_APP_FUNC(0x01D1E980, void, ShootableWeapon_Fire, (ShootableWeapon * __this, float strength, MethodInfo * method)); DO_APP_FUNC(0x01D1ECA0, void, ShootableWeapon_ProjectileFire, (ShootableWeapon * __this, float strength, MethodInfo * method)); DO_APP_FUNC(0x01D1FBC0, void, ShootableWeapon_ChangeFiredLayer, (ShootableWeapon * __this, GameObject * projectileObject, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21438, ShootableWeapon_ChangeFiredLayer__MethodInfo); DO_APP_FUNC(0x01D1FC40, void, ShootableWeapon_DetermineVisibleProjectile, (ShootableWeapon * __this, bool forceDisable, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D212B8, ShootableWeapon_DetermineVisibleProjectile__MethodInfo); DO_APP_FUNC(0x01D20220, void, ShootableWeapon_DetermineVisibleScopeCamera, (ShootableWeapon * __this, MethodInfo * method)); DO_APP_FUNC(0x01D203B0, void, ShootableWeapon_OnAim, (ShootableWeapon * __this, bool aim, bool inputStart, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21578, ShootableWeapon_OnAim__MethodInfo); DO_APP_FUNC(0x01D203E0, void, ShootableWeapon_HitscanFire, (ShootableWeapon * __this, float strength, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21458, ShootableWeapon_HitscanFire__MethodInfo); DO_APP_FUNC(0x01D214C0, void, ShootableWeapon_AddHitscanTracer, (ShootableWeapon * __this, Vector3 position, MethodInfo * method)); DO_APP_FUNC(0x01D21790, Vector3, ShootableWeapon_FireDirection, (ShootableWeapon * __this, Vector3 firePoint, MethodInfo * method)); DO_APP_FUNC(0x01D21A90, void, ShootableWeapon_ApplyFireEffects, (ShootableWeapon * __this, MethodInfo * method)); DO_APP_FUNC(0x01D22030, void, ShootableWeapon_SpawnMuzzleFlash, (ShootableWeapon * __this, MethodInfo * method)); DO_APP_FUNC(0x01D22A60, void, ShootableWeapon_EjectShell, (ShootableWeapon * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21498, ShootableWeapon_EjectShell__MethodInfo); DO_APP_FUNC(0x01D22E70, void, ShootableWeapon_SpawnSmoke, (ShootableWeapon * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21490, ShootableWeapon_SpawnSmoke__MethodInfo); DO_APP_FUNC(0x01D23130, void, ShootableWeapon_BurstReset, (ShootableWeapon * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21460, ShootableWeapon_BurstReset__MethodInfo); DO_APP_FUNC(0x01D231A0, void, ShootableWeapon_ItemUseComplete, (ShootableWeapon * __this, MethodInfo * method)); DO_APP_FUNC(0x01D23280, void, ShootableWeapon_TryStopItemUse, (ShootableWeapon * __this, MethodInfo * method)); DO_APP_FUNC(0x01D23450, bool, ShootableWeapon_CanStopItemUse, (ShootableWeapon * __this, MethodInfo * method)); @@ -68439,23 +78728,33 @@ DO_APP_FUNC(0x01D23550, bool, ShootableWeapon_CanReloadItem, (ShootableWeapon * DO_APP_FUNC(0x01D237C0, void, ShootableWeapon_StartItemReload, (ShootableWeapon * __this, MethodInfo * method)); DO_APP_FUNC(0x01D23CF0, void, ShootableWeapon_DetermineTotalReloadAmount, (ShootableWeapon * __this, MethodInfo * method)); DO_APP_FUNC(0x01D24090, void, ShootableWeapon_DetachClip, (ShootableWeapon * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21558, ShootableWeapon_DetachClip__MethodInfo); DO_APP_FUNC(0x01D243E0, void, ShootableWeapon_DetachAttachClip, (ShootableWeapon * __this, bool detach, IShootableWeaponPerspectiveProperties * shootableWeaponPerspectiveProperties, bool firstPerson, MethodInfo * method)); DO_APP_FUNC(0x01D24C20, void, ShootableWeapon_DropClip, (ShootableWeapon * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21550, ShootableWeapon_DropClip__MethodInfo); DO_APP_FUNC(0x01D253A0, void, ShootableWeapon_UpdateDropClipLayer, (ShootableWeapon * __this, GameObject * dropClip, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D213D0, ShootableWeapon_UpdateDropClipLayer__MethodInfo); DO_APP_FUNC(0x01D25420, void, ShootableWeapon_AttachClip, (ShootableWeapon * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21568, ShootableWeapon_AttachClip__MethodInfo); DO_APP_FUNC(0x01D25560, void, ShootableWeapon_ShowReloadProjectile, (ShootableWeapon * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21540, ShootableWeapon_ShowReloadProjectile__MethodInfo); DO_APP_FUNC(0x01D25680, void, ShootableWeapon_AttachReloadProjectile, (ShootableWeapon * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21560, ShootableWeapon_AttachReloadProjectile__MethodInfo); DO_APP_FUNC(0x01D256A0, void, ShootableWeapon_ReloadItem, (ShootableWeapon * __this, bool fullClip, MethodInfo * method)); DO_APP_FUNC(0x01D25A70, void, ShootableWeapon_AddRemoveReloadableClip, (ShootableWeapon * __this, bool add, IShootableWeaponPerspectiveProperties * shootableWeaponPerspectiveProperties, bool firstPerson, MethodInfo * method)); DO_APP_FUNC(0x01D26160, void, ShootableWeapon_ItemReloadComplete, (ShootableWeapon * __this, bool success, bool immediateReload, MethodInfo * method)); DO_APP_FUNC(0x01D26450, void, ShootableWeapon_ItemStartUse, (ShootableWeapon * __this, IUsableItem * usableItem, bool start, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21548, ShootableWeapon_ItemStartUse__MethodInfo); DO_APP_FUNC(0x01D266D0, void, ShootableWeapon_OnChangePerspectives, (ShootableWeapon * __this, bool firstPersonPerspective, MethodInfo * method)); DO_APP_FUNC(0x01D27260, void, ShootableWeapon_StartUnequip, (ShootableWeapon * __this, MethodInfo * method)); DO_APP_FUNC(0x01D27280, void, ShootableWeapon_Unequip, (ShootableWeapon * __this, MethodInfo * method)); DO_APP_FUNC(0x01D27590, void, ShootableWeapon_OnAddItem, (ShootableWeapon * __this, Item * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21580, ShootableWeapon_OnAddItem__MethodInfo); DO_APP_FUNC(0x01D27600, void, ShootableWeapon_CheckForSharedConsumableItemIdentifiers, (ShootableWeapon * __this, ShootableWeapon__Array * shootableWeapons, MethodInfo * method)); DO_APP_FUNC(0x01D27930, void, ShootableWeapon_OnEquipItem, (ShootableWeapon * __this, Item * item, int32_t slotID, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21508, ShootableWeapon_OnEquipItem__MethodInfo); DO_APP_FUNC(0x01D279F0, void, ShootableWeapon_OnUnequipItem, (ShootableWeapon * __this, Item * item, int32_t slotID, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21500, ShootableWeapon_OnUnequipItem__MethodInfo); DO_APP_FUNC(0x01D27AB0, void, ShootableWeapon_Remove, (ShootableWeapon * __this, MethodInfo * method)); DO_APP_FUNC(0x01D27AC0, void, ShootableWeapon_StateChange, (ShootableWeapon * __this, MethodInfo * method)); DO_APP_FUNC(0x01D27BD0, void, ShootableWeapon_OnDestroy, (ShootableWeapon * __this, MethodInfo * method)); @@ -68508,18 +78807,22 @@ DO_APP_FUNC(0x01D2A320, bool, ThrowableItem_CanActivateVisibleObject, (Throwable DO_APP_FUNC(0x01D2A340, int32_t, ThrowableItem_GetItemSubstateIndex, (ThrowableItem * __this, MethodInfo * method)); DO_APP_FUNC(0x01D2A3A0, void, ThrowableItem_LateUpdate, (ThrowableItem * __this, MethodInfo * method)); DO_APP_FUNC(0x01D2AB90, void, ThrowableItem_OnAim, (ThrowableItem * __this, bool aim, bool inputStart, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21288, ThrowableItem_OnAim__MethodInfo); DO_APP_FUNC(0x01D2ACE0, bool, ThrowableItem_CanUseItem, (ThrowableItem * __this, ItemAbility * itemAbility, UsableItem_UseAbilityState__Enum abilityState, MethodInfo * method)); DO_APP_FUNC(0x01D2AEB0, void, ThrowableItem_StartItemUse, (ThrowableItem * __this, ItemAbility * itemAbility, MethodInfo * method)); DO_APP_FUNC(0x01D2B740, void, ThrowableItem_ActivateThrowableObject, (ThrowableItem * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21148, ThrowableItem_ActivateThrowableObject__MethodInfo); DO_APP_FUNC(0x01D2B8C0, void, ThrowableItem_StartThrow, (ThrowableItem * __this, MethodInfo * method)); DO_APP_FUNC(0x01D2BA20, void, ThrowableItem_UseItem, (ThrowableItem * __this, MethodInfo * method)); DO_APP_FUNC(0x01D2BB70, void, ThrowableItem_ThrowItem, (ThrowableItem * __this, MethodInfo * method)); DO_APP_FUNC(0x01D2C780, void, ThrowableItem_ChangeThrownLayer, (ThrowableItem * __this, GameObject * thrownObject, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D211A0, ThrowableItem_ChangeThrownLayer__MethodInfo); DO_APP_FUNC(0x01D2C800, void, ThrowableItem_ItemUseComplete, (ThrowableItem * __this, MethodInfo * method)); DO_APP_FUNC(0x01D2C930, void, ThrowableItem_TryStopItemUse, (ThrowableItem * __this, MethodInfo * method)); DO_APP_FUNC(0x01D2C960, bool, ThrowableItem_CanStopItemUse, (ThrowableItem * __this, MethodInfo * method)); DO_APP_FUNC(0x01D2C980, void, ThrowableItem_StopItemUse, (ThrowableItem * __this, MethodInfo * method)); DO_APP_FUNC(0x01D2CC00, void, ThrowableItem_ReequipThrowableItem, (ThrowableItem * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21280, ThrowableItem_ReequipThrowableItem__MethodInfo); DO_APP_FUNC(0x01D2CE20, void, ThrowableItem_Unequip, (ThrowableItem * __this, MethodInfo * method)); DO_APP_FUNC(0x01D2CF80, void, ThrowableItem_OnChangePerspectives, (ThrowableItem * __this, bool firstPersonPerspective, MethodInfo * method)); DO_APP_FUNC(0x01D2D650, void, ThrowableItem_OnDestroy, (ThrowableItem * __this, MethodInfo * method)); @@ -68556,6 +78859,7 @@ DO_APP_FUNC(0x003C1700, AnimatorAudioStateSet *, UsableItem_get_UseAnimatorAudio DO_APP_FUNC(0x003C1710, void, UsableItem_set_UseAnimatorAudioStateSet, (UsableItem * __this, AnimatorAudioStateSet * value, MethodInfo * method)); DO_APP_FUNC(0x01D2DE70, void, UsableItem_Awake, (UsableItem * __this, MethodInfo * method)); DO_APP_FUNC(0x00AED220, void, UsableItem_OnAttachLookSource, (UsableItem * __this, ILookSource * lookSource, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24240, UsableItem_OnAttachLookSource__MethodInfo); DO_APP_FUNC(0x003CB690, IItemIdentifier *, UsableItem_GetConsumableItemIdentifier, (UsableItem * __this, MethodInfo * method)); DO_APP_FUNC(0x003CB690, int32_t, UsableItem_GetConsumableItemIdentifierAmount, (UsableItem * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, UsableItem_SetConsumableItemIdentifierAmount, (UsableItem * __this, int32_t amount, MethodInfo * method)); @@ -68573,6 +78877,7 @@ DO_APP_FUNC(0x003AE050, void, UsableItem_TryStopItemUse, (UsableItem * __this, M DO_APP_FUNC(0x0041AEF0, bool, UsableItem_CanStopItemUse, (UsableItem * __this, MethodInfo * method)); DO_APP_FUNC(0x01D2EA90, void, UsableItem_StopItemUse, (UsableItem * __this, MethodInfo * method)); DO_APP_FUNC(0x01D2EAD0, void, UsableItem_UseDepleted, (UsableItem * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24238, UsableItem_UseDepleted__MethodInfo); DO_APP_FUNC(0x01D2EB50, void, UsableItem_OnDestroy, (UsableItem * __this, MethodInfo * method)); DO_APP_FUNC(0x01D2EDC0, void, UsableItem__ctor, (UsableItem * __this, MethodInfo * method)); DO_APP_FUNC(0x009E1B90, Vector3, AddForce_2_get_Amount, (AddForce_2 * __this, MethodInfo * method)); @@ -68615,6 +78920,7 @@ DO_APP_FUNC(0x003C7320, AttributeModifier *, ModifyAttribute_get_AttributeModifi DO_APP_FUNC(0x003C7330, void, ModifyAttribute_set_AttributeModifier, (ModifyAttribute * __this, AttributeModifier * value, MethodInfo * method)); DO_APP_FUNC(0x01D30000, void, ModifyAttribute_ImpactInternal, (ModifyAttribute * __this, uint32_t castID, GameObject * source, GameObject * target, RaycastHit hit, MethodInfo * method)); DO_APP_FUNC(0x01D302E0, void, ModifyAttribute_ModifierAutoUpdateEnabled, (ModifyAttribute * __this, AttributeModifier * attributeModifier, bool enable, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D241C0, ModifyAttribute_ModifierAutoUpdateEnabled__MethodInfo); DO_APP_FUNC(0x01D30420, void, ModifyAttribute__ctor, (ModifyAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7320, AudioClip__Array *, PlayAudioClip_get_AudioClips, (PlayAudioClip * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7330, void, PlayAudioClip_set_AudioClips, (PlayAudioClip * __this, AudioClip__Array * value, MethodInfo * method)); @@ -68686,6 +78992,7 @@ DO_APP_FUNC(0x01C96CC0, void, PlayAudioClip_1_set_FadeStep, (PlayAudioClip_1 * _ DO_APP_FUNC(0x01D32EB0, void, PlayAudioClip_1_Cast, (PlayAudioClip_1 * __this, Transform * origin, Vector3 direction, Vector3 targetPosition, MethodInfo * method)); DO_APP_FUNC(0x01D333E0, void, PlayAudioClip_1_Stop, (PlayAudioClip_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x01D335D0, void, PlayAudioClip_1_FadeAudio, (PlayAudioClip_1 * __this, float interval, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24148, PlayAudioClip_1_FadeAudio__MethodInfo); DO_APP_FUNC(0x01D338F0, void, PlayAudioClip_1__ctor, (PlayAudioClip_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7320, GameObject *, SpawnObject_get_Object, (SpawnObject * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7330, void, SpawnObject_set_Object, (SpawnObject * __this, GameObject * value, MethodInfo * method)); @@ -68732,6 +79039,7 @@ DO_APP_FUNC(0x01D361E0, void, SpawnParticle_1_SetRendererLength, (SpawnParticle_ DO_APP_FUNC(0x01D36440, void, SpawnParticle_1_StartMaterialFade, (SpawnParticle_1 * __this, GameObject * particle, MethodInfo * method)); DO_APP_FUNC(0x01D36620, void, SpawnParticle_1_SetRendererAlpha, (SpawnParticle_1 * __this, float alpha, MethodInfo * method)); DO_APP_FUNC(0x01D36880, void, SpawnParticle_1_FadeMaterials, (SpawnParticle_1 * __this, float interval, float targetAlpha, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24100, SpawnParticle_1_FadeMaterials__MethodInfo); DO_APP_FUNC(0x01D36C20, void, SpawnParticle_1_WillStop, (SpawnParticle_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x01D36CB0, void, SpawnParticle_1_Stop, (SpawnParticle_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x01D36F80, void, SpawnParticle_1_OnChangePerspectives, (SpawnParticle_1 * __this, Transform * origin, MethodInfo * method)); @@ -68791,6 +79099,7 @@ DO_APP_FUNC(0x01D39570, void, FadeMaterials_EnableRendererFade, (FadeMaterials * DO_APP_FUNC(0x01D39B80, void, FadeMaterials_Update, (FadeMaterials * __this, MethodInfo * method)); DO_APP_FUNC(0x01D39E60, void, FadeMaterials_Stop, (FadeMaterials * __this, MethodInfo * method)); DO_APP_FUNC(0x01D3A270, void, FadeMaterials_OnChangePerspectives, (FadeMaterials * __this, bool firstPersonPerspective, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24118, FadeMaterials_OnChangePerspectives__MethodInfo); DO_APP_FUNC(0x01D3A290, void, FadeMaterials_OnDestroy, (FadeMaterials * __this, MethodInfo * method)); DO_APP_FUNC(0x01D3A380, void, FadeMaterials__ctor, (FadeMaterials * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3B0, AudioClip__Array *, PlayAudioClip_2_get_AudioClips, (PlayAudioClip_2 * __this, MethodInfo * method)); @@ -68879,8 +79188,10 @@ DO_APP_FUNC(0x01D3EA50, void, InventoryBase_AdjustItemIdentifierAmount, (Invento DO_APP_FUNC(0x01D3EB80, void, InventoryBase_RemoveItem, (InventoryBase * __this, IItemIdentifier * itemIdentifier, int32_t slotID, int32_t amount, bool drop, MethodInfo * method)); DO_APP_FUNC(0x01D3F050, void, InventoryBase_SendItemIdentifierAdjustmentEvents, (InventoryBase * __this, IItemIdentifier * itemIdentifier, MethodInfo * method)); DO_APP_FUNC(0x01D3F190, void, InventoryBase_OnDeath, (InventoryBase * __this, Vector3 position, Vector3 force, GameObject * attacker, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23FE8, InventoryBase_OnDeath__MethodInfo); DO_APP_FUNC(0x01D3F310, void, InventoryBase_RemoveAllItems, (InventoryBase * __this, MethodInfo * method)); DO_APP_FUNC(0x01D3F430, void, InventoryBase_OnRespawn, (InventoryBase * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23FE0, InventoryBase_OnRespawn__MethodInfo); DO_APP_FUNC(0x01D3F500, void, InventoryBase_OnDestroy, (InventoryBase * __this, MethodInfo * method)); DO_APP_FUNC(0x01D3F670, void, InventoryBase__ctor, (InventoryBase * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Category__Array *, ItemCollection_get_Categories, (ItemCollection * __this, MethodInfo * method)); @@ -68889,8 +79200,8 @@ DO_APP_FUNC(0x003BB3E0, ItemType__Array *, ItemCollection_get_ItemTypes, (ItemCo DO_APP_FUNC(0x003BCDE0, void, ItemCollection_set_ItemTypes, (ItemCollection * __this, ItemType__Array * value, MethodInfo * method)); DO_APP_FUNC(0x01D3F890, Category *, ItemCollection_GetCategory, (ItemCollection * __this, uint32_t id, MethodInfo * method)); DO_APP_FUNC(0x003BA2A0, void, ItemCollection__ctor, (ItemCollection * __this, MethodInfo * method)); -DO_APP_FUNC(0x01D3FAE0, IItemIdentifier *, ItemDefinitionAmount_get_ItemIdentifier, (ItemDefinitionAmount__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01D3FBB0, void, ItemDefinitionAmount__ctor, (ItemDefinitionAmount__Boxed * __this, ItemDefinitionBase * itemDefinition, int32_t amount, MethodInfo * method)); +DO_APP_FUNC(0x01D3FAE0, IItemIdentifier *, ItemDefinitionAmount_get_ItemIdentifier, (ItemDefinitionAmount * __this, MethodInfo * method)); +DO_APP_FUNC(0x01D3FBB0, void, ItemDefinitionAmount__ctor, (ItemDefinitionAmount * __this, ItemDefinitionBase * itemDefinition, int32_t amount, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, ItemDefinitionBase__Array *, ItemSet_get_Slots, (ItemSet * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE960, void, ItemSet_set_Slots, (ItemSet * __this, ItemDefinitionBase__Array * value, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, String *, ItemSet_get_State, (ItemSet * __this, MethodInfo * method)); @@ -68911,6 +79222,7 @@ DO_APP_FUNC(0x01D401D0, void, ItemSet__ctor_2, (ItemSet * __this, int32_t slotCo DO_APP_FUNC(0x01D40410, void, ItemSet_Initialize, (ItemSet * __this, GameObject * gameObject, ItemSetManagerBase * itemSetManager, uint32_t categoryID, int32_t categoryIndex, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01D408F0, void, ItemSet_StateChange, (ItemSet * __this, MethodInfo * method)); DO_APP_FUNC(0x01D40C90, void, ItemSet_OnUpdateItemSet, (ItemSet * __this, int32_t categoryIndex, int32_t itemSetIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23F10, ItemSet_OnUpdateItemSet__MethodInfo); DO_APP_FUNC(0x01D40D10, void, ItemSet_OnDestroy, (ItemSet * __this, MethodInfo * method)); DO_APP_FUNC(0x01D40F20, uint32_t, CategoryItemSet_get_CategoryID, (CategoryItemSet * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, CategoryItemSet_set_CategoryID, (CategoryItemSet * __this, uint32_t value, MethodInfo * method)); @@ -68940,6 +79252,7 @@ DO_APP_FUNC(0x01D42370, bool, ItemSetManagerBase_IsCategoryMember_1, (ItemSetMan DO_APP_FUNC(0x01D424A0, bool, ItemSetManagerBase_IsDefaultItemCategory, (ItemSetManagerBase * __this, ItemDefinitionBase * itemDefinition, MethodInfo * method)); DO_APP_FUNC(0x01D425E0, bool, ItemSetManagerBase_IsDefaultItemCategory_1, (ItemSetManagerBase * __this, ItemDefinitionBase * itemDefinition, IItemCategoryIdentifier * itemCategory, MethodInfo * method)); DO_APP_FUNC(0x01D427E0, void, ItemSetManagerBase_OnAddItem, (ItemSetManagerBase * __this, Item * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23E48, ItemSetManagerBase_OnAddItem__MethodInfo); DO_APP_FUNC(0x01D42840, void, ItemSetManagerBase_AddItem, (ItemSetManagerBase * __this, Item * item, IItemCategoryIdentifier * category, MethodInfo * method)); DO_APP_FUNC(0x01D42A70, void, ItemSetManagerBase_AddItemSet, (ItemSetManagerBase * __this, Item * item, IItemCategoryIdentifier * category, MethodInfo * method)); DO_APP_FUNC(0x01D439C0, bool, ItemSetManagerBase_IsChildOf, (ItemSetManagerBase * __this, ItemDefinitionBase * possibleChild, ItemDefinitionBase * possibleParent, MethodInfo * method)); @@ -68959,7 +79272,7 @@ DO_APP_FUNC(0x01D462A0, void, ItemSetManagerBase_SetDefaultItemSet, (ItemSetMana DO_APP_FUNC(0x01D46330, IItemIdentifier *, ItemSetManagerBase_GetEquipItemIdentifier, (ItemSetManagerBase * __this, int32_t slot, MethodInfo * method)); DO_APP_FUNC(0x01D46470, IItemIdentifier *, ItemSetManagerBase_GetEquipItemIdentifier_1, (ItemSetManagerBase * __this, int32_t categoryIndex, int32_t slot, MethodInfo * method)); DO_APP_FUNC(0x01D46560, IItemIdentifier *, ItemSetManagerBase_GetEquipItemIdentifier_2, (ItemSetManagerBase * __this, int32_t categoryIndex, int32_t targetItemSetIndex, int32_t slot, MethodInfo * method)); -DO_APP_FUNC(0x01D46660, IItemIdentifier *, ItemSetManagerBase_GetNextItemIdentifier, (ItemSetManagerBase * __this, int32_t slot, int32_t categoryIndex, MethodInfo * method)); +DO_APP_FUNC(0x01D46660, IItemIdentifier *, ItemSetManagerBase_GetNextItemIdentifier, (ItemSetManagerBase * __this, int32_t slot, int32_t * categoryIndex, MethodInfo * method)); DO_APP_FUNC(0x01D467B0, void, ItemSetManagerBase_OnDestroy, (ItemSetManagerBase * __this, MethodInfo * method)); DO_APP_FUNC(0x01D41D30, void, ItemSetManagerBase__ctor, (ItemSetManagerBase * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, uint32_t, ItemType_get_ID, (ItemType * __this, MethodInfo * method)); @@ -69032,13 +79345,17 @@ DO_APP_FUNC(0x00C2C4E0, bool, PlayerInput_IsControllerConnected, (PlayerInput * DO_APP_FUNC(0x01D48040, bool, PlayerInput_IsCursorVisible, (PlayerInput * __this, MethodInfo * method)); DO_APP_FUNC(0x01D48090, Vector2, PlayerInput_GetMousePosition, (PlayerInput * __this, MethodInfo * method)); DO_APP_FUNC(0x01D48100, void, PlayerInput_CheckForController, (PlayerInput * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23DA8, PlayerInput_CheckForController__MethodInfo); DO_APP_FUNC(0x01D483D0, void, PlayerInput_FixedUpdate, (PlayerInput * __this, MethodInfo * method)); DO_APP_FUNC(0x01D488C0, Vector2, PlayerInput_GetLookVector, (PlayerInput * __this, bool smoothed, MethodInfo * method)); DO_APP_FUNC(0x01D488F0, bool, PlayerInput_IsPointerOverUI, (PlayerInput * __this, MethodInfo * method)); DO_APP_FUNC(0x003CB6B0, void, PlayerInput_ChangeTimeScale, (PlayerInput * __this, float timeScale, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23DF0, PlayerInput_ChangeTimeScale__MethodInfo); DO_APP_FUNC(0x01D48B70, void, PlayerInput_EnableGameplayInput, (PlayerInput * __this, bool enable, MethodInfo * method)); DO_APP_FUNC(0x01D48D80, void, PlayerInput_OnDeath, (PlayerInput * __this, Vector3 position, Vector3 force, GameObject * attacker, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23DE8, PlayerInput_OnDeath__MethodInfo); DO_APP_FUNC(0x01D48DE0, void, PlayerInput_OnRespawn, (PlayerInput * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23DE0, PlayerInput_OnRespawn__MethodInfo); DO_APP_FUNC(0x01D48E50, void, PlayerInput_OnApplicationFocus, (PlayerInput * __this, bool hasFocus, MethodInfo * method)); DO_APP_FUNC(0x01D48F00, void, PlayerInput_OnDestroy, (PlayerInput * __this, MethodInfo * method)); DO_APP_FUNC(0x01D49300, void, PlayerInput__ctor, (PlayerInput * __this, MethodInfo * method)); @@ -69092,6 +79409,7 @@ DO_APP_FUNC(0x003BB3D0, GameObject *, VirtualControlsManager_get_Character, (Vir DO_APP_FUNC(0x01D4BBD0, void, VirtualControlsManager_set_Character, (VirtualControlsManager * __this, GameObject * value, MethodInfo * method)); DO_APP_FUNC(0x01D4BBE0, void, VirtualControlsManager_Awake, (VirtualControlsManager * __this, MethodInfo * method)); DO_APP_FUNC(0x01D4C040, void, VirtualControlsManager_OnAttachCharacter, (VirtualControlsManager * __this, GameObject * character, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23D78, VirtualControlsManager_OnAttachCharacter__MethodInfo); DO_APP_FUNC(0x01D4C830, void, VirtualControlsManager_RegisterVirtualControl, (VirtualControlsManager * __this, String * inputName, VirtualControl * virtualControl, MethodInfo * method)); DO_APP_FUNC(0x01D4C8C0, bool, VirtualControlsManager_GetButton, (VirtualControlsManager * __this, String * name, InputBase_ButtonAction__Enum action, MethodInfo * method)); DO_APP_FUNC(0x01D4C970, float, VirtualControlsManager_GetAxis, (VirtualControlsManager * __this, String * name, MethodInfo * method)); @@ -69107,6 +79425,7 @@ DO_APP_FUNC(0x01D4D460, void, VirtualTouchpad_Awake, (VirtualTouchpad * __this, DO_APP_FUNC(0x01D4D5E0, void, VirtualTouchpad_OnPointerDown, (VirtualTouchpad * __this, PointerEventData * data, MethodInfo * method)); DO_APP_FUNC(0x01D4D6E0, void, VirtualTouchpad_OnDrag, (VirtualTouchpad * __this, PointerEventData * data, MethodInfo * method)); DO_APP_FUNC(0x01D4DA50, void, VirtualTouchpad_DampenDeltaPosition, (VirtualTouchpad * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23D48, VirtualTouchpad_DampenDeltaPosition__MethodInfo); DO_APP_FUNC(0x01D4DBC0, float, VirtualTouchpad_GetAxis, (VirtualTouchpad * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x01D4DC90, void, VirtualTouchpad__ctor, (VirtualTouchpad * __this, MethodInfo * method)); DO_APP_FUNC(0x01A246F0, void, KinematicObject_set_KinematicObjectIndex, (KinematicObject * __this, int32_t value, MethodInfo * method)); @@ -69164,6 +79483,7 @@ DO_APP_FUNC(0x01D50D70, void, KinematicObjectManager_UnregisterCameraInternal, ( DO_APP_FUNC(0x01D51060, void, KinematicObjectManager_UnregisterKinematicObject, (int32_t kinematicObjectIndex, MethodInfo * method)); DO_APP_FUNC(0x01D51090, void, KinematicObjectManager_UnregisterKinematicObjectInternal, (KinematicObjectManager * __this, int32_t kinematicObjectIndex, MethodInfo * method)); DO_APP_FUNC(0x01D512E0, void, KinematicObjectManager_SceneUnloaded, (KinematicObjectManager * __this, Scene scene, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23CD0, KinematicObjectManager_SceneUnloaded__MethodInfo); DO_APP_FUNC(0x01D51450, void, KinematicObjectManager_OnDisable, (KinematicObjectManager * __this, MethodInfo * method)); DO_APP_FUNC(0x01D51500, void, KinematicObjectManager_DomainReset, (MethodInfo * method)); DO_APP_FUNC(0x01D515B0, void, KinematicObjectManager__ctor, (KinematicObjectManager * __this, MethodInfo * method)); @@ -69183,6 +79503,7 @@ DO_APP_FUNC(0x012770C0, void, KinematicObjectManager_KinematicCharacter_set_Forw DO_APP_FUNC(0x003CB6B0, void, KinematicObjectManager_KinematicCharacter_set_DeltaYawRotation, (KinematicObjectManager_KinematicCharacter * __this, float value, MethodInfo * method)); DO_APP_FUNC(0x01D52680, void, KinematicObjectManager_KinematicCharacter_Initialize, (KinematicObjectManager_KinematicCharacter * __this, UltimateCharacterLocomotion * characterLocomotion, MethodInfo * method)); DO_APP_FUNC(0x01D52BF0, void, KinematicObjectManager_KinematicCharacter_OnAttachLookSource, (KinematicObjectManager_KinematicCharacter * __this, ILookSource * lookSource, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25828, KinematicObjectManager_KinematicCharacter_OnAttachLookSource__MethodInfo); DO_APP_FUNC(0x01D52D60, void, KinematicObjectManager_KinematicCharacter_SmoothMove, (KinematicObjectManager_KinematicCharacter * __this, float interpAmount, MethodInfo * method)); DO_APP_FUNC(0x01D52E00, void, KinematicObjectManager_KinematicCharacter_Move, (KinematicObjectManager_KinematicCharacter * __this, bool manualMove, MethodInfo * method)); DO_APP_FUNC(0x01D52FF0, void, KinematicObjectManager_KinematicCharacter_RestoreFixedLocation, (KinematicObjectManager_KinematicCharacter * __this, MethodInfo * method)); @@ -69192,6 +79513,7 @@ DO_APP_FUNC(0x01D533D0, void, KinematicObjectManager_KinematicCharacter_SetRotat DO_APP_FUNC(0x01D53680, void, KinematicObjectManager_KinematicCharacter_UnregisterCharacter, (KinematicObjectManager_KinematicCharacter * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, KinematicObjectManager_KinematicCharacter__ctor, (KinematicObjectManager_KinematicCharacter * __this, MethodInfo * method)); DO_APP_FUNC(0x01D53930, void, KinematicObjectManager_KinematicCharacter__Initialize_b__21_0, (KinematicObjectManager_KinematicCharacter * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25820, KinematicObjectManager_KinematicCharacter__Initialize_b__21_0__MethodInfo); DO_APP_FUNC(0x003C7490, IKinematicObject *, KinematicObjectManager_KinematicObject_get_IKinematicObject, (KinematicObjectManager_KinematicObject * __this, MethodInfo * method)); DO_APP_FUNC(0x01D53FE0, void, KinematicObjectManager_KinematicObject_Initialize, (KinematicObjectManager_KinematicObject * __this, IKinematicObject * kinematicObject, MethodInfo * method)); DO_APP_FUNC(0x01D540A0, void, KinematicObjectManager_KinematicObject_Move, (KinematicObjectManager_KinematicObject * __this, bool applyFixedLocation, MethodInfo * method)); @@ -69201,6 +79523,7 @@ DO_APP_FUNC(0x003C91B0, UltimateCharacterLocomotion *, KinematicObjectManager_Ki DO_APP_FUNC(0x018592E0, void, KinematicObjectManager_KinematicCamera_set_LookVector, (KinematicObjectManager_KinematicCamera * __this, Vector2 value, MethodInfo * method)); DO_APP_FUNC(0x01D54130, void, KinematicObjectManager_KinematicCamera_Initialize, (KinematicObjectManager_KinematicCamera * __this, CameraController * cameraController, MethodInfo * method)); DO_APP_FUNC(0x01D54340, void, KinematicObjectManager_KinematicCamera_OnAttachCharacter, (KinematicObjectManager_KinematicCamera * __this, GameObject * character, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25838, KinematicObjectManager_KinematicCamera_OnAttachCharacter__MethodInfo); DO_APP_FUNC(0x01D54550, void, KinematicObjectManager_KinematicCamera_Rotate, (KinematicObjectManager_KinematicCamera * __this, MethodInfo * method)); DO_APP_FUNC(0x01D54590, void, KinematicObjectManager_KinematicCamera_Move, (KinematicObjectManager_KinematicCamera * __this, MethodInfo * method)); DO_APP_FUNC(0x01D545E0, void, KinematicObjectManager_KinematicCamera_UnregisterCamera, (KinematicObjectManager_KinematicCamera * __this, MethodInfo * method)); @@ -69222,6 +79545,7 @@ DO_APP_FUNC(0x01D54AC0, void, LayerManager_Awake, (LayerManager * __this, Method DO_APP_FUNC(0x01D54D70, void, LayerManager_IgnoreCollision, (Collider * mainCollider, Collider * otherCollider, MethodInfo * method)); DO_APP_FUNC(0x01D550B0, void, LayerManager_RevertCollision, (Collider * mainCollider, MethodInfo * method)); DO_APP_FUNC(0x01D553B0, void, LayerManager_SceneUnloaded, (LayerManager * __this, Scene scene, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D257D0, LayerManager_SceneUnloaded__MethodInfo); DO_APP_FUNC(0x01D554F0, void, LayerManager_OnDisable, (LayerManager * __this, MethodInfo * method)); DO_APP_FUNC(0x01D555A0, void, LayerManager_DomainReset, (MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, LayerManager__ctor, (LayerManager * __this, MethodInfo * method)); @@ -69243,7 +79567,7 @@ DO_APP_FUNC(0x01D55740, int32_t, SpawnPoint_get_ObstructionLayers, (SpawnPoint * DO_APP_FUNC(0x01D55750, void, SpawnPoint_set_ObstructionLayers, (SpawnPoint * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01D55760, void, SpawnPoint_Awake, (SpawnPoint * __this, MethodInfo * method)); DO_APP_FUNC(0x01D558A0, void, SpawnPoint_OnEnable, (SpawnPoint * __this, MethodInfo * method)); -DO_APP_FUNC(0x01D558E0, bool, SpawnPoint_GetPlacement, (SpawnPoint * __this, GameObject * spawningObject, Vector3 position, Quaternion rotation, MethodInfo * method)); +DO_APP_FUNC(0x01D558E0, bool, SpawnPoint_GetPlacement, (SpawnPoint * __this, GameObject * spawningObject, Vector3 * position, Quaternion * rotation, MethodInfo * method)); DO_APP_FUNC(0x01D561D0, Vector3, SpawnPoint_RandomPosition, (SpawnPoint * __this, int32_t attempt, MethodInfo * method)); DO_APP_FUNC(0x01D56430, void, SpawnPoint_OnDisable, (SpawnPoint * __this, MethodInfo * method)); DO_APP_FUNC(0x01D56460, void, SpawnPoint__ctor, (SpawnPoint * __this, MethodInfo * method)); @@ -69254,8 +79578,8 @@ DO_APP_FUNC(0x01D56840, void, SpawnPointManager_AddSpawnPointInternal, (SpawnPoi DO_APP_FUNC(0x01D56860, void, SpawnPointManager_AddSpawnPointGrouping, (SpawnPointManager * __this, SpawnPoint * spawnPoint, int32_t groupingIndex, MethodInfo * method)); DO_APP_FUNC(0x01D56A90, void, SpawnPointManager_UpdateSpawnPointGrouping, (SpawnPoint * spawnPoint, int32_t newGroupingIndex, MethodInfo * method)); DO_APP_FUNC(0x01D56B30, void, SpawnPointManager_UpdateSpawnPointGroupingInternal, (SpawnPointManager * __this, SpawnPoint * spawnPoint, int32_t newGroupingIndex, MethodInfo * method)); -DO_APP_FUNC(0x01D56B90, bool, SpawnPointManager_GetPlacement, (GameObject * spawningObject, int32_t grouping, Vector3 position, Quaternion rotation, MethodInfo * method)); -DO_APP_FUNC(0x01D56C00, bool, SpawnPointManager_GetPlacementInternal, (SpawnPointManager * __this, GameObject * spawningObject, int32_t grouping, Vector3 position, Quaternion rotation, MethodInfo * method)); +DO_APP_FUNC(0x01D56B90, bool, SpawnPointManager_GetPlacement, (GameObject * spawningObject, int32_t grouping, Vector3 * position, Quaternion * rotation, MethodInfo * method)); +DO_APP_FUNC(0x01D56C00, bool, SpawnPointManager_GetPlacementInternal, (SpawnPointManager * __this, GameObject * spawningObject, int32_t grouping, Vector3 * position, Quaternion * rotation, MethodInfo * method)); DO_APP_FUNC(0x01D56F90, void, SpawnPointManager_ShuffleSpawnPoints, (SpawnPointManager * __this, List_1_Opsive_UltimateCharacterController_Game_SpawnPoint_ * spawnPoints, MethodInfo * method)); DO_APP_FUNC(0x01D570E0, List_1_Opsive_UltimateCharacterController_Game_SpawnPoint_ *, SpawnPointManager_GetSpawnPoints, (int32_t grouping, MethodInfo * method)); DO_APP_FUNC(0x01D571D0, List_1_Opsive_UltimateCharacterController_Game_SpawnPoint_ *, SpawnPointManager_GetSpawnPointsInternal, (SpawnPointManager * __this, int32_t grouping, MethodInfo * method)); @@ -69263,6 +79587,7 @@ DO_APP_FUNC(0x01D56430, void, SpawnPointManager_RemoveSpawnPoint, (SpawnPoint * DO_APP_FUNC(0x01D572A0, void, SpawnPointManager_RemoveSpawnPointInternal, (SpawnPointManager * __this, SpawnPoint * spawnPoint, MethodInfo * method)); DO_APP_FUNC(0x01D57450, void, SpawnPointManager_OnDisable, (SpawnPointManager * __this, MethodInfo * method)); DO_APP_FUNC(0x01D57500, void, SpawnPointManager_SceneUnloaded, (SpawnPointManager * __this, Scene scene, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25758, SpawnPointManager_SceneUnloaded__MethodInfo); DO_APP_FUNC(0x01D57640, void, SpawnPointManager_DomainReset, (MethodInfo * method)); DO_APP_FUNC(0x01D576F0, void, SpawnPointManager__ctor, (SpawnPointManager * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AOTLinker_2_Linker, (AOTLinker_2 * __this, MethodInfo * method)); @@ -69388,17 +79713,23 @@ DO_APP_FUNC(0x01D5C5A0, void, FirstPersonPerspectiveItem_UpdateStep, (FirstPerso DO_APP_FUNC(0x01D5CAD0, void, FirstPersonPerspectiveItem_UpdateShake, (FirstPersonPerspectiveItem * __this, MethodInfo * method)); DO_APP_FUNC(0x01D5CBB0, void, FirstPersonPerspectiveItem_ApplyMovement, (FirstPersonPerspectiveItem * __this, MethodInfo * method)); DO_APP_FUNC(0x01D5D060, void, FirstPersonPerspectiveItem_OnAddPivotForce, (FirstPersonPerspectiveItem * __this, int32_t slotID, Vector3 positionalForce, Vector3 rotationalForce, bool globalForce, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D256E0, FirstPersonPerspectiveItem_OnAddPivotForce__MethodInfo); DO_APP_FUNC(0x01D5D0F0, void, FirstPersonPerspectiveItem_OnCharacterLean, (FirstPersonPerspectiveItem * __this, float distance, float tilt, float itemTiltMultiplier, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25688, FirstPersonPerspectiveItem_OnCharacterLean__MethodInfo); DO_APP_FUNC(0x01D5D110, void, FirstPersonPerspectiveItem_RefreshSprings, (FirstPersonPerspectiveItem * __this, MethodInfo * method)); DO_APP_FUNC(0x01D5D310, void, FirstPersonPerspectiveItem_SnapSprings, (FirstPersonPerspectiveItem * __this, bool fromEquip, MethodInfo * method)); DO_APP_FUNC(0x01D5D710, void, FirstPersonPerspectiveItem_StartEquip, (FirstPersonPerspectiveItem * __this, bool immediateEquip, MethodInfo * method)); DO_APP_FUNC(0x01D5D830, void, FirstPersonPerspectiveItem_StartUnequip, (FirstPersonPerspectiveItem * __this, MethodInfo * method)); DO_APP_FUNC(0x01D5D870, void, FirstPersonPerspectiveItem_Unequip, (FirstPersonPerspectiveItem * __this, MethodInfo * method)); DO_APP_FUNC(0x01D5D8E0, void, FirstPersonPerspectiveItem_OnAddItem, (FirstPersonPerspectiveItem * __this, Item * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D256A8, FirstPersonPerspectiveItem_OnAddItem__MethodInfo); DO_APP_FUNC(0x01D5DD50, void, FirstPersonPerspectiveItem_Remove, (FirstPersonPerspectiveItem * __this, MethodInfo * method)); DO_APP_FUNC(0x01D5DEF0, void, FirstPersonPerspectiveItem_OnCharacterLand, (FirstPersonPerspectiveItem * __this, float height, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25690, FirstPersonPerspectiveItem_OnCharacterLand__MethodInfo); DO_APP_FUNC(0x01D5E040, void, FirstPersonPerspectiveItem_OnImmediateTransformChange, (FirstPersonPerspectiveItem * __this, bool snapAnimator, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25680, FirstPersonPerspectiveItem_OnImmediateTransformChange__MethodInfo); DO_APP_FUNC(0x01D5E050, void, FirstPersonPerspectiveItem_OnChangeTimeScale, (FirstPersonPerspectiveItem * __this, float timeScale, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25698, FirstPersonPerspectiveItem_OnChangeTimeScale__MethodInfo); DO_APP_FUNC(0x01D5E0A0, void, FirstPersonPerspectiveItem_StateWillChange, (FirstPersonPerspectiveItem * __this, MethodInfo * method)); DO_APP_FUNC(0x01D5E1A0, void, FirstPersonPerspectiveItem_StateChange, (FirstPersonPerspectiveItem * __this, MethodInfo * method)); DO_APP_FUNC(0x01D5E2D0, void, FirstPersonPerspectiveItem_OnDestroy, (FirstPersonPerspectiveItem * __this, MethodInfo * method)); @@ -69427,6 +79758,7 @@ DO_APP_FUNC(0x00AED210, GameObject *, FirstPersonShootableWeaponProperties_get_S DO_APP_FUNC(0x00AED220, void, FirstPersonShootableWeaponProperties_set_ScopeCamera, (FirstPersonShootableWeaponProperties * __this, GameObject * value, MethodInfo * method)); DO_APP_FUNC(0x01D5EEF0, void, FirstPersonShootableWeaponProperties_Awake, (FirstPersonShootableWeaponProperties * __this, MethodInfo * method)); DO_APP_FUNC(0x00B06290, void, FirstPersonShootableWeaponProperties_OnAttachLookSource, (FirstPersonShootableWeaponProperties * __this, ILookSource * lookSource, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D255D8, FirstPersonShootableWeaponProperties_OnAttachLookSource__MethodInfo); DO_APP_FUNC(0x01D600D0, bool, FirstPersonShootableWeaponProperties_CanFire, (FirstPersonShootableWeaponProperties * __this, bool abilityActive, bool fireInLookSourceDirection, MethodInfo * method)); DO_APP_FUNC(0x01D601B0, void, FirstPersonShootableWeaponProperties_OnDestroy, (FirstPersonShootableWeaponProperties * __this, MethodInfo * method)); DO_APP_FUNC(0x01CC9C10, void, FirstPersonShootableWeaponProperties__ctor, (FirstPersonShootableWeaponProperties * __this, MethodInfo * method)); @@ -69461,17 +79793,22 @@ DO_APP_FUNC(0x01CCC800, void, FirstPersonObjects_set_MoveSpeed, (FirstPersonObje DO_APP_FUNC(0x003C91E0, GameObject *, FirstPersonObjects_get_Character, (FirstPersonObjects * __this, MethodInfo * method)); DO_APP_FUNC(0x01D60880, void, FirstPersonObjects_Awake, (FirstPersonObjects * __this, MethodInfo * method)); DO_APP_FUNC(0x01D611C0, void, FirstPersonObjects_OnAttachCamera, (FirstPersonObjects * __this, CameraController * cameraController, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25610, FirstPersonObjects_OnAttachCamera__MethodInfo); DO_APP_FUNC(0x01D61650, bool, FirstPersonObjects_IsActive, (FirstPersonObjects * __this, MethodInfo * method)); DO_APP_FUNC(0x01D618C0, void, FirstPersonObjects_UpdateLockedPitchAngle, (FirstPersonObjects * __this, MethodInfo * method)); DO_APP_FUNC(0x01D61AC0, void, FirstPersonObjects_UpdateLockedYawAngle, (FirstPersonObjects * __this, MethodInfo * method)); DO_APP_FUNC(0x01D61CC0, void, FirstPersonObjects_LateUpdate, (FirstPersonObjects * __this, MethodInfo * method)); DO_APP_FUNC(0x01D62AC0, void, FirstPersonObjects_OnAddItem, (FirstPersonObjects * __this, Item * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25618, FirstPersonObjects_OnAddItem__MethodInfo); DO_APP_FUNC(0x01D62FE0, void, FirstPersonObjects_StartEquip, (FirstPersonObjects * __this, Item * item, int32_t slotID, MethodInfo * method)); DO_APP_FUNC(0x01D63070, void, FirstPersonObjects_UnequipItem, (FirstPersonObjects * __this, Item * item, int32_t slotID, MethodInfo * method)); DO_APP_FUNC(0x01D63250, void, FirstPersonObjects_CheckActiveBaseObjects, (FirstPersonObjects * __this, MethodInfo * method)); DO_APP_FUNC(0x01C59630, void, FirstPersonObjects_OnDeath, (FirstPersonObjects * __this, Vector3 position, Vector3 force, GameObject * attacker, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25608, FirstPersonObjects_OnDeath__MethodInfo); DO_APP_FUNC(0x01D63640, void, FirstPersonObjects_OnRespawn, (FirstPersonObjects * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25600, FirstPersonObjects_OnRespawn__MethodInfo); DO_APP_FUNC(0x01D637A0, void, FirstPersonObjects_OnActivate, (FirstPersonObjects * __this, bool activate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25620, FirstPersonObjects_OnActivate__MethodInfo); DO_APP_FUNC(0x01D63810, void, FirstPersonObjects_OnDestroy, (FirstPersonObjects * __this, MethodInfo * method)); DO_APP_FUNC(0x01D63B20, void, FirstPersonObjects__ctor, (FirstPersonObjects * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, Combat_1_get_FirstPersonPerspective, (Combat_1 * __this, MethodInfo * method)); @@ -69505,14 +79842,18 @@ DO_APP_FUNC(0x01D64470, void, Lean_AbilityStarted, (Lean * __this, MethodInfo * DO_APP_FUNC(0x01D64880, void, Lean_Update, (Lean * __this, MethodInfo * method)); DO_APP_FUNC(0x01D64890, void, Lean_UpdateLean, (Lean * __this, bool forceUpdate, MethodInfo * method)); DO_APP_FUNC(0x01D657A0, void, Lean_OnInputUpdate, (Lean * __this, float value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25520, Lean_OnInputUpdate__MethodInfo); DO_APP_FUNC(0x01D657D0, void, Lean_AbilityStopped, (Lean * __this, bool force, MethodInfo * method)); DO_APP_FUNC(0x01D65B90, void, Lean_OnChangePerspectives, (Lean * __this, bool firstPersonPerspective, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25530, Lean_OnChangePerspectives__MethodInfo); DO_APP_FUNC(0x01D65BB0, void, Lean_OnDestroy, (Lean * __this, MethodInfo * method)); DO_APP_FUNC(0x01D65CC0, void, Lean__ctor, (Lean * __this, MethodInfo * method)); DO_APP_FUNC(0x01D65D00, void, MaterialSwapper_Awake, (MaterialSwapper * __this, MethodInfo * method)); DO_APP_FUNC(0x01D667A0, void, MaterialSwapper_OnAttachCharacter, (MaterialSwapper * __this, GameObject * character, MethodInfo * method)); DO_APP_FUNC(0x01D67720, void, MaterialSwapper_OnChangePerspectives, (MaterialSwapper * __this, bool firstPersonPerspective, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25500, MaterialSwapper_OnChangePerspectives__MethodInfo); DO_APP_FUNC(0x01D677D0, void, MaterialSwapper_OnAddItem, (MaterialSwapper * __this, Item * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25540, MaterialSwapper_OnAddItem__MethodInfo); DO_APP_FUNC(0x01D67A00, void, MaterialSwapper_CacheFirstPersonRenderers, (MaterialSwapper * __this, GameObject * firstPersonObject, MethodInfo * method)); DO_APP_FUNC(0x01D67CA0, void, MaterialSwapper_CacheThirdPersonRenderers, (MaterialSwapper * __this, GameObject * thirdPersonObject, MethodInfo * method)); DO_APP_FUNC(0x01D67FF0, void, MaterialSwapper_OnPreRender, (MaterialSwapper * __this, MethodInfo * method)); @@ -69521,11 +79862,13 @@ DO_APP_FUNC(0x01D681B0, void, MaterialSwapper_BeginCameraRendering, (MaterialSwa DO_APP_FUNC(0x01D68590, void, MaterialSwapper_EndCameraRendering, (MaterialSwapper * __this, Camera * camera, MethodInfo * method)); DO_APP_FUNC(0x01D68740, void, MaterialSwapper_EnableThirdPersonMaterials, (MaterialSwapper * __this, MethodInfo * method)); DO_APP_FUNC(0x01D689B0, void, MaterialSwapper_OnRespawn, (MaterialSwapper * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D254F8, MaterialSwapper_OnRespawn__MethodInfo); DO_APP_FUNC(0x01D68A80, void, MaterialSwapper_OnDestroy, (MaterialSwapper * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, MaterialSwapper__ctor, (MaterialSwapper * __this, MethodInfo * method)); DO_APP_FUNC(0x01D68BC0, void, Combat_AttachCharacter, (Combat * __this, GameObject * character, MethodInfo * method)); DO_APP_FUNC(0x01D68EE0, Quaternion, Combat_Rotate, (Combat * __this, float horizontalMovement, float verticalMovement, bool immediatePosition, MethodInfo * method)); DO_APP_FUNC(0x01D69030, void, Combat_OnAbilityActive, (Combat * __this, Ability * ability, bool active, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25508, Combat_OnAbilityActive__MethodInfo); DO_APP_FUNC(0x01D690C0, void, Combat__ctor, (Combat * __this, MethodInfo * method)); DO_APP_FUNC(0x01CE4E70, Vector3, FirstPerson_get_LookOffset, (FirstPerson * __this, MethodInfo * method)); DO_APP_FUNC(0x01D690D0, void, FirstPerson_set_LookOffset, (FirstPerson * __this, Vector3 value, MethodInfo * method)); @@ -69611,15 +79954,19 @@ DO_APP_FUNC(0x0041AEF0, bool, FirstPerson_get_FirstPersonPerspective, (FirstPers DO_APP_FUNC(0x01D69F20, Vector3, FirstPerson_get_Shake, (FirstPerson * __this, MethodInfo * method)); DO_APP_FUNC(0x01D69F40, void, FirstPerson_Initialize, (FirstPerson * __this, CameraController * cameraController, MethodInfo * method)); DO_APP_FUNC(0x01D6AA30, void, FirstPerson_InitializePositionSpringValue, (FirstPerson * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25478, FirstPerson_InitializePositionSpringValue__MethodInfo); DO_APP_FUNC(0x01D6AAF0, void, FirstPerson_AttachCharacter, (FirstPerson * __this, GameObject * character, MethodInfo * method)); DO_APP_FUNC(0x01D6B5B0, void, FirstPerson_ChangeViewType, (FirstPerson * __this, bool activate, float pitch, float yaw, Quaternion characterRotation, MethodInfo * method)); DO_APP_FUNC(0x01D6B740, void, FirstPerson_Reset, (FirstPerson * __this, Quaternion characterRotation, MethodInfo * method)); DO_APP_FUNC(0x01D6BAF0, void, FirstPerson_SetCrosshairs, (FirstPerson * __this, Transform * crosshairs, MethodInfo * method)); DO_APP_FUNC(0x01D6C150, Quaternion, FirstPerson_GetCrosshairsDeltaRotation, (FirstPerson * __this, MethodInfo * method)); DO_APP_FUNC(0x01D6C870, void, FirstPerson_OnCharacterChangeMovingPlatforms, (FirstPerson * __this, Transform * movingPlatform, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D254B0, FirstPerson_OnCharacterChangeMovingPlatforms__MethodInfo); DO_APP_FUNC(0x01D6C9C0, void, FirstPerson_UpdatePlatformRotationOffset, (FirstPerson * __this, Transform * platform, MethodInfo * method)); DO_APP_FUNC(0x01D6CD60, void, FirstPerson_UpdateFirstPersonCamera, (FirstPerson * __this, bool firstPersonPerspective, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25498, FirstPerson_UpdateFirstPersonCamera__MethodInfo); DO_APP_FUNC(0x01D6CFA0, void, FirstPerson_OnChangeViewType, (FirstPerson * __this, ViewType * viewType, bool activate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25470, FirstPerson_OnChangeViewType__MethodInfo); DO_APP_FUNC(0x01D6D120, void, FirstPerson_UpdateFieldOfView, (FirstPerson * __this, bool immediateUpdate, MethodInfo * method)); DO_APP_FUNC(0x01D6D4E0, Quaternion, FirstPerson_Rotate, (FirstPerson * __this, float horizontalMovement, float verticalMovement, bool immediateUpdate, MethodInfo * method)); DO_APP_FUNC(0x01D6EDD0, void, FirstPerson_UpdateShakes, (FirstPerson * __this, MethodInfo * method)); @@ -69636,8 +79983,11 @@ DO_APP_FUNC(0x01D71950, void, FirstPerson_AddRotationalForce, (FirstPerson * __t DO_APP_FUNC(0x01D71990, void, FirstPerson_AddSecondaryPositionalForce, (FirstPerson * __this, Vector3 force, float restAccumulation, MethodInfo * method)); DO_APP_FUNC(0x01D71B60, void, FirstPerson_AddSecondaryRotationalForce, (FirstPerson * __this, Vector3 force, float restAccumulation, MethodInfo * method)); DO_APP_FUNC(0x01D71D40, void, FirstPerson_OnCharacterLand, (FirstPerson * __this, float height, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D254A8, FirstPerson_OnCharacterLand__MethodInfo); DO_APP_FUNC(0x01D71F10, void, FirstPerson_OnCharacterLean, (FirstPerson * __this, float distance, float tilt, float itemTiltMultiplier, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D254A0, FirstPerson_OnCharacterLean__MethodInfo); DO_APP_FUNC(0x01D720D0, void, FirstPerson_AdjustVerticalOffset, (FirstPerson * __this, float amount, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D254B8, FirstPerson_AdjustVerticalOffset__MethodInfo); DO_APP_FUNC(0x01D720F0, void, FirstPerson_StateWillChange, (FirstPerson * __this, MethodInfo * method)); DO_APP_FUNC(0x01D722A0, void, FirstPerson_StateChange, (FirstPerson * __this, MethodInfo * method)); DO_APP_FUNC(0x01D72A80, void, FirstPerson_OnDestroy, (FirstPerson * __this, MethodInfo * method)); @@ -69761,10 +80111,14 @@ DO_APP_FUNC(0x01D7B800, bool, AnimatorMonitor_SetItemStateIndexChangeParameter, DO_APP_FUNC(0x01D7BA90, bool, AnimatorMonitor_SetItemSubstateIndexParameter, (AnimatorMonitor * __this, int32_t slotID, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01D7BDC0, void, AnimatorMonitor_ExecuteEvent, (AnimatorMonitor * __this, String * eventName, MethodInfo * method)); DO_APP_FUNC(0x01D7BE30, void, AnimatorMonitor_OnWillEquipItem, (AnimatorMonitor * __this, Item * item, int32_t slotID, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5B20, AnimatorMonitor_OnWillEquipItem__MethodInfo); DO_APP_FUNC(0x01D7BEC0, void, AnimatorMonitor_OnUnequipItem, (AnimatorMonitor * __this, Item * item, int32_t slotID, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5B50, AnimatorMonitor_OnUnequipItem__MethodInfo); DO_APP_FUNC(0x01D7C0A0, void, AnimatorMonitor_UpdateItemIDParameters, (AnimatorMonitor * __this, MethodInfo * method)); DO_APP_FUNC(0x01D7C2B0, void, AnimatorMonitor_OnChangeUpdateLocation, (AnimatorMonitor * __this, bool fixedUpdate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5B40, AnimatorMonitor_OnChangeUpdateLocation__MethodInfo); DO_APP_FUNC(0x01D7C320, void, AnimatorMonitor_OnChangeTimeScale, (AnimatorMonitor * __this, float timeScale, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5B68, AnimatorMonitor_OnChangeTimeScale__MethodInfo); DO_APP_FUNC(0x01D7C390, void, AnimatorMonitor_EnableAnimator, (AnimatorMonitor * __this, bool enable, MethodInfo * method)); DO_APP_FUNC(0x01D7C400, void, AnimatorMonitor_OnDestroy, (AnimatorMonitor * __this, MethodInfo * method)); DO_APP_FUNC(0x01D7C820, void, AnimatorMonitor_DomainReset, (MethodInfo * method)); @@ -69794,14 +80148,21 @@ DO_APP_FUNC(0x00BA1F50, Vector3, CapsuleColliderPositioner_get_CenterOffset, (Ca DO_APP_FUNC(0x01D7D260, void, CapsuleColliderPositioner_set_CenterOffset, (CapsuleColliderPositioner * __this, Vector3 value, MethodInfo * method)); DO_APP_FUNC(0x01D7D310, void, CapsuleColliderPositioner_Awake, (CapsuleColliderPositioner * __this, MethodInfo * method)); DO_APP_FUNC(0x01D7DAE0, void, CapsuleColliderPositioner_AnimatorSnapped, (CapsuleColliderPositioner * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5AD0, CapsuleColliderPositioner_AnimatorSnapped__MethodInfo); DO_APP_FUNC(0x01D7DBC0, void, CapsuleColliderPositioner_Initialize, (CapsuleColliderPositioner * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5A00, CapsuleColliderPositioner_Initialize__MethodInfo); DO_APP_FUNC(0x01D7E880, void, CapsuleColliderPositioner_FixedUpdate, (CapsuleColliderPositioner * __this, MethodInfo * method)); DO_APP_FUNC(0x01D7E890, void, CapsuleColliderPositioner_UpdateRotationHeight, (CapsuleColliderPositioner * __this, MethodInfo * method)); DO_APP_FUNC(0x01D7FC80, void, CapsuleColliderPositioner_AdjustCapsuleColliderHeight, (CapsuleColliderPositioner * __this, float amount, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5AA0, CapsuleColliderPositioner_AdjustCapsuleColliderHeight__MethodInfo); DO_APP_FUNC(0x01D7FDF0, void, CapsuleColliderPositioner_AdjustCenterOffset, (CapsuleColliderPositioner * __this, Vector3 targetOffset, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5A90, CapsuleColliderPositioner_AdjustCenterOffset__MethodInfo); DO_APP_FUNC(0x01C59630, void, CapsuleColliderPositioner_OnDeath, (CapsuleColliderPositioner * __this, Vector3 position, Vector3 force, GameObject * attacker, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5AD8, CapsuleColliderPositioner_OnDeath__MethodInfo); DO_APP_FUNC(0x01CE4840, void, CapsuleColliderPositioner_OnRespawn, (CapsuleColliderPositioner * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5AC0, CapsuleColliderPositioner_OnRespawn__MethodInfo); DO_APP_FUNC(0x01D80670, void, CapsuleColliderPositioner_OnImmediateTransformChange, (CapsuleColliderPositioner * __this, bool snapAnimator, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5AB8, CapsuleColliderPositioner_OnImmediateTransformChange__MethodInfo); DO_APP_FUNC(0x01D806E0, void, CapsuleColliderPositioner_OnDestroy, (CapsuleColliderPositioner * __this, MethodInfo * method)); DO_APP_FUNC(0x01D809E0, void, CapsuleColliderPositioner__ctor, (CapsuleColliderPositioner * __this, MethodInfo * method)); DO_APP_FUNC(0x00421680, CharacterFootEffects_FootstepPlacementMode__Enum, CharacterFootEffects_get_FootstepMode, (CharacterFootEffects * __this, MethodInfo * method)); @@ -69823,7 +80184,9 @@ DO_APP_FUNC(0x01C96CC0, void, CharacterFootEffects_set_MinBobInterval, (Characte DO_APP_FUNC(0x01D80A70, void, CharacterFootEffects_Awake, (CharacterFootEffects * __this, MethodInfo * method)); DO_APP_FUNC(0x01D81380, void, CharacterFootEffects_InitializeHumanoidFeet, (CharacterFootEffects * __this, MethodInfo * method)); DO_APP_FUNC(0x01D81D90, void, CharacterFootEffects_OnAttachLookSource, (CharacterFootEffects * __this, ILookSource * lookSource, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD59E0, CharacterFootEffects_OnAttachLookSource__MethodInfo); DO_APP_FUNC(0x01D81F50, void, CharacterFootEffects_OnChangePerspectives, (CharacterFootEffects * __this, bool firstPersonPerspective, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5A50, CharacterFootEffects_OnChangePerspectives__MethodInfo); DO_APP_FUNC(0x01D81F60, void, CharacterFootEffects_PrepareVerticalOffsetLists, (CharacterFootEffects * __this, MethodInfo * method)); DO_APP_FUNC(0x01D82440, void, CharacterFootEffects_FixedUpdate, (CharacterFootEffects * __this, MethodInfo * method)); DO_APP_FUNC(0x01D827D0, void, CharacterFootEffects_DetectBodyStep, (CharacterFootEffects * __this, MethodInfo * method)); @@ -69832,14 +80195,15 @@ DO_APP_FUNC(0x01D82E40, void, CharacterFootEffects_DetectCameraBob, (CharacterFo DO_APP_FUNC(0x01D830A0, void, CharacterFootEffects_GroupFootStep, (CharacterFootEffects * __this, MethodInfo * method)); DO_APP_FUNC(0x01D83210, bool, CharacterFootEffects_FootStep, (CharacterFootEffects * __this, Transform * foot, bool flipFootprint, MethodInfo * method)); DO_APP_FUNC(0x01D836F0, void, CharacterFootEffects_OnMoving, (CharacterFootEffects * __this, bool moving, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD59F0, CharacterFootEffects_OnMoving__MethodInfo); DO_APP_FUNC(0x01D83750, void, CharacterFootEffects_StateChange, (CharacterFootEffects * __this, MethodInfo * method)); DO_APP_FUNC(0x01D837C0, void, CharacterFootEffects_OnDestroy, (CharacterFootEffects * __this, MethodInfo * method)); DO_APP_FUNC(0x01D839A0, void, CharacterFootEffects__ctor, (CharacterFootEffects * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, Transform *, CharacterFootEffects_Foot_get_Object, (CharacterFootEffects_Foot__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, CharacterFootEffects_Foot_set_Object, (CharacterFootEffects_Foot__Boxed * __this, Transform * value, MethodInfo * method)); -DO_APP_FUNC(0x00471920, int32_t, CharacterFootEffects_Foot_get_Group, (CharacterFootEffects_Foot__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01D83B40, bool, CharacterFootEffects_Foot_get_FlippedFootprint, (CharacterFootEffects_Foot__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01D83B50, void, CharacterFootEffects_Foot_set_FlippedFootprint, (CharacterFootEffects_Foot__Boxed * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Transform *, CharacterFootEffects_Foot_get_Object, (CharacterFootEffects_Foot * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, CharacterFootEffects_Foot_set_Object, (CharacterFootEffects_Foot * __this, Transform * value, MethodInfo * method)); +DO_APP_FUNC(0x00471920, int32_t, CharacterFootEffects_Foot_get_Group, (CharacterFootEffects_Foot * __this, MethodInfo * method)); +DO_APP_FUNC(0x01D83B40, bool, CharacterFootEffects_Foot_get_FlippedFootprint, (CharacterFootEffects_Foot * __this, MethodInfo * method)); +DO_APP_FUNC(0x01D83B50, void, CharacterFootEffects_Foot_set_FlippedFootprint, (CharacterFootEffects_Foot * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x009F7E90, LayerMask, CharacterIK_get_LayerMask, (CharacterIK * __this, MethodInfo * method)); DO_APP_FUNC(0x01A71040, void, CharacterIK_set_LayerMask, (CharacterIK * __this, LayerMask value, MethodInfo * method)); DO_APP_FUNC(0x01D3ADD0, Vector3, CharacterIK_get_LookAtOffset, (CharacterIK * __this, MethodInfo * method)); @@ -69885,20 +80249,26 @@ DO_APP_FUNC(0x0059E010, Transform *, CharacterIK_get_RightHandTransform, (Charac DO_APP_FUNC(0x01D83DB0, void, CharacterIK_Awake, (CharacterIK * __this, MethodInfo * method)); DO_APP_FUNC(0x01D85790, void, CharacterIK_Start, (CharacterIK * __this, MethodInfo * method)); DO_APP_FUNC(0x01D85910, void, CharacterIK_OnAttachLookSource, (CharacterIK * __this, ILookSource * lookSource, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5880, CharacterIK_OnAttachLookSource__MethodInfo); DO_APP_FUNC(0x01D85A90, void, CharacterIK_SetItemIKTargets, (CharacterIK * __this, Transform * itemTransform, Transform * itemHand, Transform * nonDominantHandTarget, Transform * nonDominantHandElbowTarget, MethodInfo * method)); DO_APP_FUNC(0x01D85DC0, void, CharacterIK_SetAbilityIKTarget, (CharacterIK * __this, Transform * target, CharacterIKBase_IKGoal__Enum ikGoal, float duration, MethodInfo * method)); DO_APP_FUNC(0x01D86140, void, CharacterIK_SetAbilityIKTarget_1, (CharacterIK * __this, Transform * target, CharacterIKBase_IKGoal__Enum ikGoal, MethodInfo * method)); DO_APP_FUNC(0x01D861D0, void, CharacterIK_UpdateIKTargets, (CharacterIK * __this, MethodInfo * method)); DO_APP_FUNC(0x01D86A10, void, CharacterIK_OnEquipItem, (CharacterIK * __this, Item * item, int32_t slotID, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5860, CharacterIK_OnEquipItem__MethodInfo); DO_APP_FUNC(0x01D86A10, void, CharacterIK_OnUnequipItem, (CharacterIK * __this, Item * item, int32_t slotID, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5840, CharacterIK_OnUnequipItem__MethodInfo); DO_APP_FUNC(0x01D86A20, void, CharacterIK_DetermineDominantHand, (CharacterIK * __this, MethodInfo * method)); DO_APP_FUNC(0x01D86F00, void, CharacterIK_OnAim, (CharacterIK * __this, bool aim, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD58A8, CharacterIK_OnAim__MethodInfo); DO_APP_FUNC(0x01D86F10, void, CharacterIK_OnUseStart, (CharacterIK * __this, bool start, Use * useAbility, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5850, CharacterIK_OnUseStart__MethodInfo); DO_APP_FUNC(0x01D86F50, void, CharacterIK_OnAddForce, (CharacterIK * __this, int32_t slotID, Vector3 positionalForce, Vector3 rotationalForce, bool globalForce, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD58A0, CharacterIK_OnAddForce__MethodInfo); DO_APP_FUNC(0x01D87090, void, CharacterIK_Move, (CharacterIK * __this, bool fixedUpdate, MethodInfo * method)); DO_APP_FUNC(0x01D871C0, void, CharacterIK_OnAnimatorIK, (CharacterIK * __this, int32_t layerIndex, MethodInfo * method)); DO_APP_FUNC(0x01D87270, void, CharacterIK_PositionLowerBody, (CharacterIK * __this, MethodInfo * method)); -DO_APP_FUNC(0x01D88F20, Vector3, CharacterIK_GetFootRaycastPosition, (CharacterIK * __this, Transform * targetTransform, Transform * lowerLeg, float distance, MethodInfo * method)); +DO_APP_FUNC(0x01D88F20, Vector3, CharacterIK_GetFootRaycastPosition, (CharacterIK * __this, Transform * targetTransform, Transform * lowerLeg, float * distance, MethodInfo * method)); DO_APP_FUNC(0x01D891B0, void, CharacterIK_LookAtTarget, (CharacterIK * __this, MethodInfo * method)); DO_APP_FUNC(0x01D8A710, void, CharacterIK_SetRemoteLookAtPosition, (CharacterIK * __this, Vector3 lookAtPosition, MethodInfo * method)); DO_APP_FUNC(0x0063DFD0, void, CharacterIK_SetRemoteLookAtEntity, (CharacterIK * __this, BoltEntity * lookAtEntity, MethodInfo * method)); @@ -69907,9 +80277,13 @@ DO_APP_FUNC(0x01D8BCB0, void, CharacterIK_RotateUpperArms, (CharacterIK * __this DO_APP_FUNC(0x01D8D110, void, CharacterIK_UpdateTargetInterpolations, (CharacterIK * __this, MethodInfo * method)); DO_APP_FUNC(0x01D8DBB0, void, CharacterIK_PositionHands, (CharacterIK * __this, MethodInfo * method)); DO_APP_FUNC(0x01D8EA20, void, CharacterIK_ImmediatePosition, (CharacterIK * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD58C0, CharacterIK_ImmediatePosition__MethodInfo); DO_APP_FUNC(0x01D8EA30, void, CharacterIK_AnimatorSnapped, (CharacterIK * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD58B0, CharacterIK_AnimatorSnapped__MethodInfo); DO_APP_FUNC(0x01D8EAA0, void, CharacterIK_OnDeath, (CharacterIK * __this, Vector3 position, Vector3 force, GameObject * attacker, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5890, CharacterIK_OnDeath__MethodInfo); DO_APP_FUNC(0x01D8EB40, void, CharacterIK_OnRespawn, (CharacterIK * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5870, CharacterIK_OnRespawn__MethodInfo); DO_APP_FUNC(0x01D8EBB0, void, CharacterIK_StateWillChange, (CharacterIK * __this, MethodInfo * method)); DO_APP_FUNC(0x01D8ECB0, void, CharacterIK_StateChange, (CharacterIK * __this, MethodInfo * method)); DO_APP_FUNC(0x01D8EDF0, void, CharacterIK_OnDestroy, (CharacterIK * __this, MethodInfo * method)); @@ -70101,7 +80475,7 @@ DO_APP_FUNC(0x01D96520, void, CharacterLocomotion_UpdateMotorThrottle, (Characte DO_APP_FUNC(0x01D96A80, void, CharacterLocomotion_DeflectHorizontalCollisions, (CharacterLocomotion * __this, MethodInfo * method)); DO_APP_FUNC(0x01D99340, void, CharacterLocomotion_DeflectVerticalCollisions, (CharacterLocomotion * __this, MethodInfo * method)); DO_APP_FUNC(0x01D9A260, bool, CharacterLocomotion_CheckGround, (CharacterLocomotion * __this, MethodInfo * method)); -DO_APP_FUNC(0x01D9B840, bool, CharacterLocomotion_ComputePenetration, (CharacterLocomotion * __this, Collider * activeCollider, Collider * hitCollider, Vector3 horizontalDirection, bool constantVelocity, Vector3 offset, MethodInfo * method)); +DO_APP_FUNC(0x01D9B840, bool, CharacterLocomotion_ComputePenetration, (CharacterLocomotion * __this, Collider * activeCollider, Collider * hitCollider, Vector3 horizontalDirection, bool constantVelocity, Vector3 * offset, MethodInfo * method)); DO_APP_FUNC(0x01D9C000, bool, CharacterLocomotion_UpdateMovingPlatformTransform, (CharacterLocomotion * __this, Transform * hitTransform, bool groundUpdate, MethodInfo * method)); DO_APP_FUNC(0x01D9C6D0, void, CharacterLocomotion_SetPlatform, (CharacterLocomotion * __this, Transform * platform, MethodInfo * method)); DO_APP_FUNC(0x01D9C6F0, bool, CharacterLocomotion_SetPlatform_1, (CharacterLocomotion * __this, Transform * platform, bool platformOverride, MethodInfo * method)); @@ -70117,13 +80491,13 @@ DO_APP_FUNC(0x01D9FB50, int32_t, CharacterLocomotion_OverlapCount, (CharacterLoc DO_APP_FUNC(0x01DA07A0, void, CharacterLocomotion_ResetCombinedRaycastHits, (CharacterLocomotion * __this, MethodInfo * method)); DO_APP_FUNC(0x01DA0970, void, CharacterLocomotion_EnableColliderCollisionLayer, (CharacterLocomotion * __this, bool enable, MethodInfo * method)); DO_APP_FUNC(0x01DA0D80, void, CharacterLocomotion_AddCollider, (CharacterLocomotion * __this, Collider * collider, MethodInfo * method)); -DO_APP_FUNC(0x01DA0EC0, int32_t, CharacterLocomotion_AddCollider_1, (CharacterLocomotion * __this, Collider * collider, Collider__Array * existingColliders, Int32__Array * existingColliderLayers, GameObject__Array * existingColliderGameObjects, int32_t existingColliderCount, MethodInfo * method)); +DO_APP_FUNC(0x01DA0EC0, int32_t, CharacterLocomotion_AddCollider_1, (CharacterLocomotion * __this, Collider * collider, Collider__Array * * existingColliders, Int32__Array * * existingColliderLayers, GameObject__Array * * existingColliderGameObjects, int32_t existingColliderCount, MethodInfo * method)); DO_APP_FUNC(0x01DA12E0, void, CharacterLocomotion_RemoveCollider, (CharacterLocomotion * __this, Collider * collider, MethodInfo * method)); -DO_APP_FUNC(0x01DA1330, int32_t, CharacterLocomotion_RemoveCollider_1, (CharacterLocomotion * __this, Collider * collider, Collider__Array * existingColliders, Int32__Array * existingColliderLayers, GameObject__Array * existingColliderGameObjects, int32_t existingColliderCount, MethodInfo * method)); +DO_APP_FUNC(0x01DA1330, int32_t, CharacterLocomotion_RemoveCollider_1, (CharacterLocomotion * __this, Collider * collider, Collider__Array * * existingColliders, Int32__Array * * existingColliderLayers, GameObject__Array * * existingColliderGameObjects, int32_t existingColliderCount, MethodInfo * method)); DO_APP_FUNC(0x01DA16F0, void, CharacterLocomotion_AddColliders, (CharacterLocomotion * __this, Collider__Array * colliders, MethodInfo * method)); -DO_APP_FUNC(0x01DA1870, int32_t, CharacterLocomotion_AddColliders_1, (CharacterLocomotion * __this, Collider__Array * colliders, Collider__Array * existingColliders, Int32__Array * existingColliderLayers, GameObject__Array * existingColliderGameObjects, int32_t existingColliderCount, MethodInfo * method)); +DO_APP_FUNC(0x01DA1870, int32_t, CharacterLocomotion_AddColliders_1, (CharacterLocomotion * __this, Collider__Array * colliders, Collider__Array * * existingColliders, Int32__Array * * existingColliderLayers, GameObject__Array * * existingColliderGameObjects, int32_t existingColliderCount, MethodInfo * method)); DO_APP_FUNC(0x01DA1DB0, void, CharacterLocomotion_RemoveColliders, (CharacterLocomotion * __this, Collider__Array * colliders, MethodInfo * method)); -DO_APP_FUNC(0x01DA1E00, int32_t, CharacterLocomotion_RemoveColliders_1, (CharacterLocomotion * __this, Collider__Array * colliders, Collider__Array * existingColliders, Int32__Array * existingColliderLayers, GameObject__Array * existingColliderGameObjects, int32_t existingColliderCount, MethodInfo * method)); +DO_APP_FUNC(0x01DA1E00, int32_t, CharacterLocomotion_RemoveColliders_1, (CharacterLocomotion * __this, Collider__Array * colliders, Collider__Array * * existingColliders, Int32__Array * * existingColliderLayers, GameObject__Array * * existingColliderGameObjects, int32_t existingColliderCount, MethodInfo * method)); DO_APP_FUNC(0x01DA21D0, void, CharacterLocomotion_AddIgnoredCollider, (CharacterLocomotion * __this, Collider * collider, MethodInfo * method)); DO_APP_FUNC(0x01DA2220, void, CharacterLocomotion_RemoveIgnoredCollider, (CharacterLocomotion * __this, Collider * collider, MethodInfo * method)); DO_APP_FUNC(0x01DA2270, void, CharacterLocomotion_AddIgnoredColliders, (CharacterLocomotion * __this, Collider__Array * colliders, MethodInfo * method)); @@ -70150,6 +80524,7 @@ DO_APP_FUNC(0x01DA3AA0, void, CharacterLocomotion__ctor, (CharacterLocomotion * DO_APP_FUNC(0x01DA3FA0, void, ChildAnimatorMonitor_Awake, (ChildAnimatorMonitor * __this, MethodInfo * method)); DO_APP_FUNC(0x01DA5410, void, ChildAnimatorMonitor_Start, (ChildAnimatorMonitor * __this, MethodInfo * method)); DO_APP_FUNC(0x01DA5420, void, ChildAnimatorMonitor_SnapAnimator, (ChildAnimatorMonitor * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7018, ChildAnimatorMonitor_SnapAnimator__MethodInfo); DO_APP_FUNC(0x01DA61E0, bool, ChildAnimatorMonitor_IsInTrasition, (ChildAnimatorMonitor * __this, MethodInfo * method)); DO_APP_FUNC(0x01DA62E0, void, ChildAnimatorMonitor_SetHorizontalMovementParameter, (ChildAnimatorMonitor * __this, float value, float timeScale, float dampingTime, MethodInfo * method)); DO_APP_FUNC(0x01DA6440, void, ChildAnimatorMonitor_SetForwardMovementParameter, (ChildAnimatorMonitor * __this, float value, float timeScale, float dampingTime, MethodInfo * method)); @@ -70173,8 +80548,11 @@ DO_APP_FUNC(0x01DA78C0, void, ChildAnimatorMonitor_SetHandGripStrengthParameter, DO_APP_FUNC(0x01DA7A20, void, ChildAnimatorMonitor_OnEnable, (ChildAnimatorMonitor * __this, MethodInfo * method)); DO_APP_FUNC(0x01DA7C60, void, ChildAnimatorMonitor_ExecuteEvent, (ChildAnimatorMonitor * __this, String * eventName, MethodInfo * method)); DO_APP_FUNC(0x01DA7CE0, void, ChildAnimatorMonitor_OnImmediateTransformChange, (ChildAnimatorMonitor * __this, bool snapAnimator, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7010, ChildAnimatorMonitor_OnImmediateTransformChange__MethodInfo); DO_APP_FUNC(0x01DA7CF0, void, ChildAnimatorMonitor_OnChangeUpdateLocation, (ChildAnimatorMonitor * __this, bool fixedUpdate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7028, ChildAnimatorMonitor_OnChangeUpdateLocation__MethodInfo); DO_APP_FUNC(0x01DA7D60, void, ChildAnimatorMonitor_OnChangeTimeScale, (ChildAnimatorMonitor * __this, float timeScale, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7020, ChildAnimatorMonitor_OnChangeTimeScale__MethodInfo); DO_APP_FUNC(0x01DA7DD0, void, ChildAnimatorMonitor_OnDestroy, (ChildAnimatorMonitor * __this, MethodInfo * method)); DO_APP_FUNC(0x01DA8100, void, ChildAnimatorMonitor_DomainReset, (MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, ChildAnimatorMonitor__ctor, (ChildAnimatorMonitor * __this, MethodInfo * method)); @@ -70187,6 +80565,7 @@ DO_APP_FUNC(0x003AE000, void, FootstepTrigger__ctor, (FootstepTrigger * __this, DO_APP_FUNC(0x01DA8BD0, void, ItemHandler_Start, (ItemHandler * __this, MethodInfo * method)); DO_APP_FUNC(0x01DA8EA0, void, ItemHandler_FixedUpdate, (ItemHandler * __this, MethodInfo * method)); DO_APP_FUNC(0x01DA90F0, void, ItemHandler_OnEquipItem, (ItemHandler * __this, Item * item, int32_t slotID, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6FB8, ItemHandler_OnEquipItem__MethodInfo); DO_APP_FUNC(0x01DA9190, void, ItemHandler_OnDestroy, (ItemHandler * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, ItemHandler__ctor, (ItemHandler * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB330, GameObject *, LocalLookSource_get_GameObject, (LocalLookSource * __this, MethodInfo * method)); @@ -70301,10 +80680,11 @@ DO_APP_FUNC(0x01DACD40, Effect__Array *, UltimateCharacterLocomotion_GetSerializ DO_APP_FUNC(0x01DACDA0, void, UltimateCharacterLocomotion_SetMovementType, (UltimateCharacterLocomotion * __this, String * typeName, MethodInfo * method)); DO_APP_FUNC(0x01DACE10, void, UltimateCharacterLocomotion_SetMovementType_1, (UltimateCharacterLocomotion * __this, Type * type, MethodInfo * method)); DO_APP_FUNC(0x01DAD2E0, void, UltimateCharacterLocomotion_OnAttachLookSource, (UltimateCharacterLocomotion * __this, ILookSource * lookSource, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6EE0, UltimateCharacterLocomotion_OnAttachLookSource__MethodInfo); DO_APP_FUNC(0x01DAD530, void, UltimateCharacterLocomotion_OnEnable, (UltimateCharacterLocomotion * __this, MethodInfo * method)); DO_APP_FUNC(0x01DAD640, void, UltimateCharacterLocomotion_Start, (UltimateCharacterLocomotion * __this, MethodInfo * method)); DO_APP_FUNC(0x01DADBE0, void, UltimateCharacterLocomotion_UpdateUltimateLocomotion, (UltimateCharacterLocomotion * __this, MethodInfo * method)); -DO_APP_FUNC(0x01DADED0, void, UltimateCharacterLocomotion_AbilitiesAllowInput, (UltimateCharacterLocomotion * __this, bool allowPositionalInput, bool allowRotationalInput, MethodInfo * method)); +DO_APP_FUNC(0x01DADED0, void, UltimateCharacterLocomotion_AbilitiesAllowInput, (UltimateCharacterLocomotion * __this, bool * allowPositionalInput, bool * allowRotationalInput, MethodInfo * method)); DO_APP_FUNC(0x01DAE010, void, UltimateCharacterLocomotion_UpdateAbilities, (UltimateCharacterLocomotion * __this, Ability__Array * abilities, MethodInfo * method)); DO_APP_FUNC(0x01DAE2C0, void, UltimateCharacterLocomotion_UpdateAnimator, (UltimateCharacterLocomotion * __this, MethodInfo * method)); DO_APP_FUNC(0x01DAE600, void, UltimateCharacterLocomotion_UpdatePositionAndRotation, (UltimateCharacterLocomotion * __this, MethodInfo * method)); @@ -70317,7 +80697,7 @@ DO_APP_FUNC(0x01DAF4D0, void, UltimateCharacterLocomotion_UpdateMotorThrottle, ( DO_APP_FUNC(0x01DAF540, void, UltimateCharacterLocomotion_ApplyPosition, (UltimateCharacterLocomotion * __this, MethodInfo * method)); DO_APP_FUNC(0x01DAF610, void, UltimateCharacterLocomotion_UpdateDirtyAbilityAnimatorParameters, (UltimateCharacterLocomotion * __this, MethodInfo * method)); DO_APP_FUNC(0x01DAF650, void, UltimateCharacterLocomotion_LateUpdateUltimateLocomotion, (UltimateCharacterLocomotion * __this, MethodInfo * method)); -DO_APP_FUNC(0x01DAF750, void, UltimateCharacterLocomotion_LateUpdateActiveAbilities, (UltimateCharacterLocomotion * __this, Ability__Array * abilities, int32_t abilityCount, MethodInfo * method)); +DO_APP_FUNC(0x01DAF750, void, UltimateCharacterLocomotion_LateUpdateActiveAbilities, (UltimateCharacterLocomotion * __this, Ability__Array * abilities, int32_t * abilityCount, MethodInfo * method)); DO_APP_FUNC(0x01DAF7C0, bool, UltimateCharacterLocomotion_TryStartAbility, (UltimateCharacterLocomotion * __this, Ability * ability, MethodInfo * method)); DO_APP_FUNC(0x01DAF7E0, bool, UltimateCharacterLocomotion_TryStartAbility_1, (UltimateCharacterLocomotion * __this, Ability * ability, bool ignorePriority, MethodInfo * method)); DO_APP_FUNC(0x01DAF800, bool, UltimateCharacterLocomotion_TryStartAbility_2, (UltimateCharacterLocomotion * __this, Ability * ability, bool ignorePriority, bool ignoreCanStartCheck, MethodInfo * method)); @@ -70337,6 +80717,7 @@ DO_APP_FUNC(0x01DB1B80, Effect *, UltimateCharacterLocomotion_GetEffect, (Ultima DO_APP_FUNC(0x01DB1B90, Effect *, UltimateCharacterLocomotion_GetEffect_1, (UltimateCharacterLocomotion * __this, Type * type, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01DB1CE0, void, UltimateCharacterLocomotion_OnAnimatorMove, (UltimateCharacterLocomotion * __this, MethodInfo * method)); DO_APP_FUNC(0x01DB2130, void, UltimateCharacterLocomotion_OnChangePerspectives, (UltimateCharacterLocomotion * __this, bool firstPersonPerspective, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6EB8, UltimateCharacterLocomotion_OnChangePerspectives__MethodInfo); DO_APP_FUNC(0x01DB22D0, void, UltimateCharacterLocomotion_SetRotation, (UltimateCharacterLocomotion * __this, Quaternion rotation, MethodInfo * method)); DO_APP_FUNC(0x01DB2300, void, UltimateCharacterLocomotion_SetRotation_1, (UltimateCharacterLocomotion * __this, Quaternion rotation, bool snapAnimator, MethodInfo * method)); DO_APP_FUNC(0x01DB2600, void, UltimateCharacterLocomotion_SetPosition, (UltimateCharacterLocomotion * __this, Vector3 position, MethodInfo * method)); @@ -70347,17 +80728,22 @@ DO_APP_FUNC(0x01DB2D10, void, UltimateCharacterLocomotion_SetPositionAndRotation DO_APP_FUNC(0x01DB2D50, void, UltimateCharacterLocomotion_SetPositionAndRotation_2, (UltimateCharacterLocomotion * __this, Vector3 position, Quaternion rotation, bool snapAnimator, bool stopAllAbilities, MethodInfo * method)); DO_APP_FUNC(0x01DB30C0, void, UltimateCharacterLocomotion_SetActive, (UltimateCharacterLocomotion * __this, bool active, MethodInfo * method)); DO_APP_FUNC(0x01DB30D0, void, UltimateCharacterLocomotion_SetActive_1, (UltimateCharacterLocomotion * __this, bool active, bool uiEvent, MethodInfo * method)); -DO_APP_FUNC(0x01DB3430, bool, UltimateCharacterLocomotion_SingleCast, (UltimateCharacterLocomotion * __this, Vector3 direction, Vector3 offset, int32_t layers, RaycastHit result, MethodInfo * method)); -DO_APP_FUNC(0x01DB3E30, int32_t, UltimateCharacterLocomotion_Cast, (UltimateCharacterLocomotion * __this, Vector3 direction, Vector3 offset, RaycastHit__Array * combinedRaycastHits, Dictionary_2_UnityEngine_RaycastHit_System_Int32_ * colliderIndexMap, MethodInfo * method)); +DO_APP_FUNC(0x01DB3430, bool, UltimateCharacterLocomotion_SingleCast, (UltimateCharacterLocomotion * __this, Vector3 direction, Vector3 offset, int32_t layers, RaycastHit * result, MethodInfo * method)); +DO_APP_FUNC(0x01DB3E30, int32_t, UltimateCharacterLocomotion_Cast, (UltimateCharacterLocomotion * __this, Vector3 direction, Vector3 offset, RaycastHit__Array * * combinedRaycastHits, Dictionary_2_UnityEngine_RaycastHit_System_Int32_ * * colliderIndexMap, MethodInfo * method)); DO_APP_FUNC(0x01DB4C40, int32_t, UltimateCharacterLocomotion_OverlapCount, (UltimateCharacterLocomotion * __this, Vector3 offset, MethodInfo * method)); DO_APP_FUNC(0x01DB4CE0, void, UltimateCharacterLocomotion_OnTriggerEnter, (UltimateCharacterLocomotion * __this, Collider * other, MethodInfo * method)); DO_APP_FUNC(0x01DB4E80, void, UltimateCharacterLocomotion_OnTriggerExit, (UltimateCharacterLocomotion * __this, Collider * other, MethodInfo * method)); DO_APP_FUNC(0x01DB5020, void, UltimateCharacterLocomotion_OnAiming, (UltimateCharacterLocomotion * __this, bool aiming, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6ED0, UltimateCharacterLocomotion_OnAiming__MethodInfo); DO_APP_FUNC(0x01DB5030, void, UltimateCharacterLocomotion_OnDeath, (UltimateCharacterLocomotion * __this, Vector3 position, Vector3 force, GameObject * attacker, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6EC0, UltimateCharacterLocomotion_OnDeath__MethodInfo); DO_APP_FUNC(0x01DB5210, void, UltimateCharacterLocomotion_StopAllAbilities, (UltimateCharacterLocomotion * __this, bool fromDeath, MethodInfo * method)); DO_APP_FUNC(0x01DB5340, void, UltimateCharacterLocomotion_OnRespawn, (UltimateCharacterLocomotion * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6EB0, UltimateCharacterLocomotion_OnRespawn__MethodInfo); DO_APP_FUNC(0x01DB55F0, void, UltimateCharacterLocomotion_OnImmediateTransformChange, (UltimateCharacterLocomotion * __this, bool snapAnimator, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6EA8, UltimateCharacterLocomotion_OnImmediateTransformChange__MethodInfo); DO_APP_FUNC(0x0094DDE0, void, UltimateCharacterLocomotion_AnimatorSnapped, (UltimateCharacterLocomotion * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6EF8, UltimateCharacterLocomotion_AnimatorSnapped__MethodInfo); DO_APP_FUNC(0x01DB56B0, void, UltimateCharacterLocomotion_OnDisable, (UltimateCharacterLocomotion * __this, MethodInfo * method)); DO_APP_FUNC(0x01DB5700, void, UltimateCharacterLocomotion_OnDestroy, (UltimateCharacterLocomotion * __this, MethodInfo * method)); DO_APP_FUNC(0x01DB5C70, void, UltimateCharacterLocomotion__ctor, (UltimateCharacterLocomotion * __this, MethodInfo * method)); @@ -70370,8 +80756,11 @@ DO_APP_FUNC(0x01DB6550, void, UltimateCharacterLocomotionHandler_Update, (Ultima DO_APP_FUNC(0x01DB65E0, void, UltimateCharacterLocomotionHandler_UpdateAbilityInput, (UltimateCharacterLocomotionHandler * __this, MethodInfo * method)); DO_APP_FUNC(0x01DB68A0, void, UltimateCharacterLocomotionHandler_UpdateAbilityInput_1, (UltimateCharacterLocomotionHandler * __this, Ability__Array * abilities, MethodInfo * method)); DO_APP_FUNC(0x01DB6A10, void, UltimateCharacterLocomotionHandler_OnAbilityActive, (UltimateCharacterLocomotionHandler * __this, Ability * ability, bool active, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6DC0, UltimateCharacterLocomotionHandler_OnAbilityActive__MethodInfo); DO_APP_FUNC(0x01DB6AA0, void, UltimateCharacterLocomotionHandler_OnItemAbilityActive, (UltimateCharacterLocomotionHandler * __this, ItemAbility * itemAbility, bool active, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6DB8, UltimateCharacterLocomotionHandler_OnItemAbilityActive__MethodInfo); DO_APP_FUNC(0x01DB6B30, void, UltimateCharacterLocomotionHandler_OnUpdateItemSet, (UltimateCharacterLocomotionHandler * __this, int32_t categoryIndex, int32_t itemSetIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6DA8, UltimateCharacterLocomotionHandler_OnUpdateItemSet__MethodInfo); DO_APP_FUNC(0x01DB6BC0, void, UltimateCharacterLocomotionHandler_CheckAbilityInput, (UltimateCharacterLocomotionHandler * __this, Ability__Array * abilities, MethodInfo * method)); DO_APP_FUNC(0x01DB6C40, float, UltimateCharacterLocomotionHandler_GetDeltaYawRotation, (UltimateCharacterLocomotionHandler * __this, MethodInfo * method)); DO_APP_FUNC(0x01DB6CC0, void, UltimateCharacterLocomotionHandler_RegisterInputEvent, (UltimateCharacterLocomotionHandler * __this, ActiveInputEvent * inputEvent, MethodInfo * method)); @@ -70381,8 +80770,10 @@ DO_APP_FUNC(0x01DB6E50, bool, UltimateCharacterLocomotionHandler_TryStopAbility, DO_APP_FUNC(0x01DB6E80, void, UltimateCharacterLocomotionHandler_ExecuteInputEvent, (UltimateCharacterLocomotionHandler * __this, String * eventName, MethodInfo * method)); DO_APP_FUNC(0x01DB6EF0, void, UltimateCharacterLocomotionHandler_ExecuteInputEvent_1, (UltimateCharacterLocomotionHandler * __this, String * eventName, float axisValue, MethodInfo * method)); DO_APP_FUNC(0x01C59630, void, UltimateCharacterLocomotionHandler_OnDeath, (UltimateCharacterLocomotionHandler * __this, Vector3 position, Vector3 force, GameObject * attacker, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6DD0, UltimateCharacterLocomotionHandler_OnDeath__MethodInfo); DO_APP_FUNC(0x01DB6F80, void, UltimateCharacterLocomotionHandler_OnRespawn, (UltimateCharacterLocomotionHandler * __this, MethodInfo * method)); DO_APP_FUNC(0x01DB7050, void, UltimateCharacterLocomotionHandler_OnEnableGameplayInput, (UltimateCharacterLocomotionHandler * __this, bool enable, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6DB0, UltimateCharacterLocomotionHandler_OnEnableGameplayInput__MethodInfo); DO_APP_FUNC(0x01DB70F0, void, UltimateCharacterLocomotionHandler_OnDestroy, (UltimateCharacterLocomotionHandler * __this, MethodInfo * method)); DO_APP_FUNC(0x01DB7560, void, UltimateCharacterLocomotionHandler__ctor, (UltimateCharacterLocomotionHandler * __this, MethodInfo * method)); DO_APP_FUNC(0x01DB7670, void, MovementType_Initialize, (MovementType * __this, UltimateCharacterLocomotion * characterLocomotion, MethodInfo * method)); @@ -70391,6 +80782,7 @@ DO_APP_FUNC(0x00424C30, void, MovementType_OnAttachLookSource, (MovementType * _ DO_APP_FUNC(0x003AE050, void, MovementType_ChangeMovementType, (MovementType * __this, bool activate, MethodInfo * method)); DO_APP_FUNC(0x00424C90, bool, MovementType_UseIndependentLook, (MovementType * __this, bool characterLookDirection, MethodInfo * method)); DO_APP_FUNC(0x00424CA0, void, MovementType_OnForceIndependentLook, (MovementType * __this, bool forceIndependentLook, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6E08, MovementType_OnForceIndependentLook__MethodInfo); DO_APP_FUNC(0x01DB7A10, void, MovementType_OnDestroy, (MovementType * __this, MethodInfo * method)); DO_APP_FUNC(0x01CBD920, void, MovementType__ctor, (MovementType * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, CharacterColliderBaseIdentifier__ctor, (CharacterColliderBaseIdentifier * __this, MethodInfo * method)); @@ -70413,6 +80805,7 @@ DO_APP_FUNC(0x01D74420, void, BossStomp_set_RepeatDelay, (BossStomp * __this, fl DO_APP_FUNC(0x01DB7C00, bool, BossStomp_CanStartEffect, (BossStomp * __this, MethodInfo * method)); DO_APP_FUNC(0x01DB7D00, void, BossStomp_EffectStarted, (BossStomp * __this, MethodInfo * method)); DO_APP_FUNC(0x01DB7D80, void, BossStomp_Stomp, (BossStomp * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6D18, BossStomp_Stomp__MethodInfo); DO_APP_FUNC(0x01DB80E0, void, BossStomp_EffectStopped, (BossStomp * __this, MethodInfo * method)); DO_APP_FUNC(0x01DB81B0, void, BossStomp__ctor, (BossStomp * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCC40, bool, Effect_get_Enabled, (Effect * __this, MethodInfo * method)); @@ -70433,9 +80826,11 @@ DO_APP_FUNC(0x01DB8650, void, Effect_StartEffect_1, (Effect * __this, int32_t in DO_APP_FUNC(0x01DB8670, void, Effect_EffectStarted, (Effect * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Effect_Update, (Effect * __this, MethodInfo * method)); DO_APP_FUNC(0x01DB86D0, void, Effect_StopEffect, (Effect * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6CF8, Effect_StopEffect__MethodInfo); DO_APP_FUNC(0x01DB8700, void, Effect_StopEffect_1, (Effect * __this, bool fromController, MethodInfo * method)); DO_APP_FUNC(0x01DB8750, void, Effect_EffectStopped, (Effect * __this, MethodInfo * method)); DO_APP_FUNC(0x003C73A0, void, Effect_OnAttachCamera, (Effect * __this, CameraController * cameraController, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6D08, Effect_OnAttachCamera__MethodInfo); DO_APP_FUNC(0x01DB87B0, void, Effect_OnDestroy, (Effect * __this, MethodInfo * method)); DO_APP_FUNC(0x01DB88A0, void, Effect__ctor, (Effect * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7420, AudioClipSet *, PlayAudioClip_3_get_AudioClipSet, (PlayAudioClip_3 * __this, MethodInfo * method)); @@ -70563,7 +80958,9 @@ DO_APP_FUNC(0x01DBADC0, void, Ability_AbilityStarted, (Ability * __this, MethodI DO_APP_FUNC(0x01DBADD0, void, Ability_AbilityStarted_1, (Ability * __this, bool enableAttributeModifier, MethodInfo * method)); DO_APP_FUNC(0x01DBB380, void, Ability_SetState, (Ability * __this, bool active, MethodInfo * method)); DO_APP_FUNC(0x01DBB660, void, Ability_OnEquipItem, (Ability * __this, Item * item, int32_t slotID, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6CA8, Ability_OnEquipItem__MethodInfo); DO_APP_FUNC(0x01DBB6F0, void, Ability_OnUnequipItem, (Ability * __this, Item * item, int32_t slotID, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6CB8, Ability_OnUnequipItem__MethodInfo); DO_APP_FUNC(0x003AE050, void, Ability_InactiveUpdate, (Ability * __this, MethodInfo * method)); DO_APP_FUNC(0x01DBB780, void, Ability_Update, (Ability * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Ability_UpdateAnimator, (Ability * __this, MethodInfo * method)); @@ -70655,6 +81052,7 @@ DO_APP_FUNC(0x01DBE010, void, AlignToGravity_WillTryStopAbility, (AlignToGravity DO_APP_FUNC(0x01DBE0C0, bool, AlignToGravity_CanStopAbility, (AlignToGravity * __this, MethodInfo * method)); DO_APP_FUNC(0x01DBE250, void, AlignToGravity_ResetAlignToGravity, (AlignToGravity * __this, MethodInfo * method)); DO_APP_FUNC(0x01DBE400, void, AlignToGravity_DoAlignToGravityReset, (AlignToGravity * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6CD0, AlignToGravity_DoAlignToGravityReset__MethodInfo); DO_APP_FUNC(0x01DBE480, void, AlignToGravity_AbilityStopped, (AlignToGravity * __this, bool force, MethodInfo * method)); DO_APP_FUNC(0x01DBE4B0, void, AlignToGravity__ctor, (AlignToGravity * __this, MethodInfo * method)); DO_APP_FUNC(0x01DBE560, void, AlignToGravityZone_RegisterGravityZone, (AlignToGravityZone * __this, GravityZone * gravityZone, MethodInfo * method)); @@ -70682,9 +81080,11 @@ DO_APP_FUNC(0x0059DF90, void, DamageVisualization_set_DamageVisualizationComplet DO_APP_FUNC(0x01D28A50, int32_t, DamageVisualization_get_AbilityIntData, (DamageVisualization * __this, MethodInfo * method)); DO_APP_FUNC(0x01DC0160, void, DamageVisualization_Awake, (DamageVisualization * __this, MethodInfo * method)); DO_APP_FUNC(0x01DC02C0, void, DamageVisualization_OnDamage, (DamageVisualization * __this, float amount, Vector3 position, Vector3 force, GameObject * attacker, Collider * hitCollider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6C80, DamageVisualization_OnDamage__MethodInfo); DO_APP_FUNC(0x01DC0490, int32_t, DamageVisualization_GetDamageTypeIndex, (DamageVisualization * __this, float amount, Vector3 position, Vector3 force, GameObject * attacker, MethodInfo * method)); DO_APP_FUNC(0x01DC0560, void, DamageVisualization_AbilityStarted, (DamageVisualization * __this, MethodInfo * method)); DO_APP_FUNC(0x0059F010, void, DamageVisualization_OnDamageVisualizationComplete, (DamageVisualization * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6C78, DamageVisualization_OnDamageVisualizationComplete__MethodInfo); DO_APP_FUNC(0x01DC0670, void, DamageVisualization_AbilityStopped, (DamageVisualization * __this, bool force, MethodInfo * method)); DO_APP_FUNC(0x01DC06A0, void, DamageVisualization_OnDestroy, (DamageVisualization * __this, MethodInfo * method)); DO_APP_FUNC(0x01DC0830, void, DamageVisualization__ctor, (DamageVisualization * __this, MethodInfo * method)); @@ -70727,6 +81127,7 @@ DO_APP_FUNC(0x006BEA60, VRHand *, DetectObjectAbilityBase_get_RightHand, (Detect DO_APP_FUNC(0x006BEA70, void, DetectObjectAbilityBase_set_RightHand, (DetectObjectAbilityBase * __this, VRHand * value, MethodInfo * method)); DO_APP_FUNC(0x01DC1500, void, DetectObjectAbilityBase_Awake, (DetectObjectAbilityBase * __this, MethodInfo * method)); DO_APP_FUNC(0x01DC17D0, void, DetectObjectAbilityBase_OnAttachLookSource, (DetectObjectAbilityBase * __this, ILookSource * lookSource, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD94C0, DetectObjectAbilityBase_OnAttachLookSource__MethodInfo); DO_APP_FUNC(0x01DC19B0, bool, DetectObjectAbilityBase_CanStartAbility, (DetectObjectAbilityBase * __this, MethodInfo * method)); DO_APP_FUNC(0x01DC2360, bool, DetectObjectAbilityBase_CheckVRHand, (DetectObjectAbilityBase * __this, VRHand * hand, Transform * castTransform, Vector3 castDirection, MethodInfo * method)); DO_APP_FUNC(0x01DC2E80, void, DetectObjectAbilityBase_OnTriggerEnter, (DetectObjectAbilityBase * __this, Collider * other, MethodInfo * method)); @@ -70747,9 +81148,11 @@ DO_APP_FUNC(0x01C64150, int32_t, Die_get_AbilityIntData, (Die * __this, MethodIn DO_APP_FUNC(0x0041AEF0, bool, Die_get_CanStayActivatedOnDeath, (Die * __this, MethodInfo * method)); DO_APP_FUNC(0x01DC43F0, void, Die_Awake, (Die * __this, MethodInfo * method)); DO_APP_FUNC(0x01DC4550, void, Die_OnDeath, (Die * __this, Vector3 position, Vector3 force, GameObject * attacker, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD92A8, Die_OnDeath__MethodInfo); DO_APP_FUNC(0x01DC4650, int32_t, Die_GetDeathTypeIndex, (Die * __this, Vector3 position, Vector3 force, GameObject * attacker, MethodInfo * method)); DO_APP_FUNC(0x01DC46F0, void, Die_AbilityStarted, (Die * __this, MethodInfo * method)); DO_APP_FUNC(0x01DC4840, void, Die_OnRespawn, (Die * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD92B8, Die_OnRespawn__MethodInfo); DO_APP_FUNC(0x01DC4890, void, Die_OnDestroy, (Die * __this, MethodInfo * method)); DO_APP_FUNC(0x01DC4A20, void, Die__ctor, (Die * __this, MethodInfo * method)); DO_APP_FUNC(0x01DC4A50, bool, Drive_get_TeleportEnterExit, (Drive * __this, MethodInfo * method)); @@ -70770,6 +81173,7 @@ DO_APP_FUNC(0x01DC5350, bool, Drive_ColliderOverlap, (Drive * __this, Collider * DO_APP_FUNC(0x01DC6330, MoveTowardsLocation__Array *, Drive_GetMoveTowardsLocations, (Drive * __this, MethodInfo * method)); DO_APP_FUNC(0x01DC63D0, void, Drive_AbilityStarted, (Drive * __this, MethodInfo * method)); DO_APP_FUNC(0x01DC6A20, void, Drive_OnEnteredVehicle, (Drive * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9388, Drive_OnEnteredVehicle__MethodInfo); DO_APP_FUNC(0x01DC6B10, bool, Drive_ShouldBlockAbilityStart, (Drive * __this, Ability * startingAbility, MethodInfo * method)); DO_APP_FUNC(0x01DC6C50, bool, Drive_ShouldStopActiveAbility, (Drive * __this, Ability * activeAbility, MethodInfo * method)); DO_APP_FUNC(0x01DC6D50, void, Drive_Update, (Drive * __this, MethodInfo * method)); @@ -70778,6 +81182,7 @@ DO_APP_FUNC(0x01DC6F70, void, Drive_UpdateRotation, (Drive * __this, MethodInfo DO_APP_FUNC(0x01DC7930, void, Drive_UpdatePosition, (Drive * __this, MethodInfo * method)); DO_APP_FUNC(0x01DC7DB0, void, Drive_WillTryStopAbility, (Drive * __this, MethodInfo * method)); DO_APP_FUNC(0x01DC8240, void, Drive_OnExitedVehicle, (Drive * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9398, Drive_OnExitedVehicle__MethodInfo); DO_APP_FUNC(0x01DC8320, bool, Drive_CanStopAbility, (Drive * __this, MethodInfo * method)); DO_APP_FUNC(0x01DC8490, void, Drive_AbilityStopped, (Drive * __this, bool force, MethodInfo * method)); DO_APP_FUNC(0x01DC8690, void, Drive_OnDestroy, (Drive * __this, MethodInfo * method)); @@ -70798,10 +81203,13 @@ DO_APP_FUNC(0x0059E150, bool, Fall_CanStartAbility, (Fall * __this, MethodInfo * DO_APP_FUNC(0x01DC8840, void, Fall_AbilityStarted, (Fall * __this, MethodInfo * method)); DO_APP_FUNC(0x01DC8A20, bool, Fall_ShouldBlockAbilityStart, (Fall * __this, Ability * startingAbility, MethodInfo * method)); DO_APP_FUNC(0x01DC8AB0, void, Fall_OnGrounded, (Fall * __this, bool grounded, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9168, Fall_OnGrounded__MethodInfo); DO_APP_FUNC(0x0059E9E0, void, Fall_UpdateAnimator, (Fall * __this, MethodInfo * method)); DO_APP_FUNC(0x0059E9F0, void, Fall_Land, (Fall * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9208, Fall_Land__MethodInfo); DO_APP_FUNC(0x0059E080, bool, Fall_CanStopAbility, (Fall * __this, MethodInfo * method)); DO_APP_FUNC(0x0059EA30, void, Fall_OnImmediateTransformChange, (Fall * __this, bool snapAnimator, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9170, Fall_OnImmediateTransformChange__MethodInfo); DO_APP_FUNC(0x01DC8E90, void, Fall_AbilityStopped, (Fall * __this, bool force, MethodInfo * method)); DO_APP_FUNC(0x01DC9080, void, Fall__ctor, (Fall * __this, MethodInfo * method)); DO_APP_FUNC(0x01DC1480, bool, Generic_get_ConcurrentAbility, (Generic * __this, MethodInfo * method)); @@ -70812,6 +81220,7 @@ DO_APP_FUNC(0x005A04E0, void, Generic_set_StopEvent, (Generic * __this, Animatio DO_APP_FUNC(0x01DC9140, void, Generic_Awake, (Generic * __this, MethodInfo * method)); DO_APP_FUNC(0x01DC9220, void, Generic_AbilityStarted, (Generic * __this, MethodInfo * method)); DO_APP_FUNC(0x0059F010, void, Generic_OnComplete, (Generic * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9150, Generic_OnComplete__MethodInfo); DO_APP_FUNC(0x01DC92E0, void, Generic_OnDestroy, (Generic * __this, MethodInfo * method)); DO_APP_FUNC(0x01DC93E0, void, Generic__ctor, (Generic * __this, MethodInfo * method)); DO_APP_FUNC(0x01C5EFF0, bool, HeightChange_get_ConcurrentAbility, (HeightChange * __this, MethodInfo * method)); @@ -70842,6 +81251,7 @@ DO_APP_FUNC(0x01D1C6A0, float, Idle_1_get_AbilityFloatData, (Idle_1 * __this, Me DO_APP_FUNC(0x01DCA7E0, bool, Idle_1_CanStartAbility, (Idle_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x01DCA8D0, void, Idle_1_AbilityStarted, (Idle_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x01DCAA80, void, Idle_1_DetermineAbilityFloatDataValue, (Idle_1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD90D8, Idle_1_DetermineAbilityFloatDataValue__MethodInfo); DO_APP_FUNC(0x01DCAC30, bool, Idle_1_CanStopAbility, (Idle_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x01DCACA0, void, Idle_1_AbilityStopped, (Idle_1 * __this, bool force, MethodInfo * method)); DO_APP_FUNC(0x01DCAD30, void, Idle_1__ctor, (Idle_1 * __this, MethodInfo * method)); @@ -70870,8 +81280,11 @@ DO_APP_FUNC(0x01DCBB00, bool, Interact_ShouldBlockAbilityStart, (Interact * __th DO_APP_FUNC(0x01DCBC00, bool, Interact_ShouldStopActiveAbility, (Interact * __this, Ability * activeAbility, MethodInfo * method)); DO_APP_FUNC(0x01DCBC90, void, Interact_AbilityStarted, (Interact * __this, MethodInfo * method)); DO_APP_FUNC(0x01DCBF40, void, Interact_SetIKTarget, (Interact * __this, AbilityIKTarget * ikTarget, Transform * targetTransform, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9120, Interact_SetIKTarget__MethodInfo); DO_APP_FUNC(0x01DCC3C0, void, Interact_DoInteract, (Interact * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD90B0, Interact_DoInteract__MethodInfo); DO_APP_FUNC(0x005A65B0, void, Interact_InteractComplete, (Interact * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD90B8, Interact_InteractComplete__MethodInfo); DO_APP_FUNC(0x01DCC4B0, bool, Interact_TriggerExit, (Interact * __this, GameObject * other, MethodInfo * method)); DO_APP_FUNC(0x01DCC680, void, Interact_AbilityStopped, (Interact * __this, bool force, MethodInfo * method)); DO_APP_FUNC(0x018BC870, Interactable *, Interact_GetInteractable, (Interact * __this, MethodInfo * method)); @@ -70879,6 +81292,7 @@ DO_APP_FUNC(0x01DCC850, void, Interact_OnDestroy, (Interact * __this, MethodInfo DO_APP_FUNC(0x01DCC9A0, void, Interact__ctor, (Interact * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Interact_c_DisplayClass45_0__ctor, (Interact_c_DisplayClass45_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x01DCCAF0, void, Interact_c_DisplayClass45_0__SetIKTarget_b__0, (Interact_c_DisplayClass45_0 * __this, AbilityIKTarget * abilityIKTarget, Transform * target, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD8FC0, Interact_c_DisplayClass45_0__SetIKTarget_b__0__MethodInfo); DO_APP_FUNC(0x0041AEF0, bool, ItemEquipVerifier_get_IsConcurrent, (ItemEquipVerifier * __this, MethodInfo * method)); DO_APP_FUNC(0x01DCCB40, void, ItemEquipVerifier_Awake, (ItemEquipVerifier * __this, MethodInfo * method)); DO_APP_FUNC(0x01DCCEE0, bool, ItemEquipVerifier_TryToggleItem, (ItemEquipVerifier * __this, Ability * ability, bool activate, MethodInfo * method)); @@ -70886,9 +81300,11 @@ DO_APP_FUNC(0x01DCDAF0, bool, ItemEquipVerifier_IsDefaultItemIdentifier, (ItemEq DO_APP_FUNC(0x01DCDD60, void, ItemEquipVerifier_AbilityStarted, (ItemEquipVerifier * __this, MethodInfo * method)); DO_APP_FUNC(0x01DCDF40, void, ItemEquipVerifier_StartEquipUnequip, (ItemEquipVerifier * __this, bool immediateEquipUnequip, MethodInfo * method)); DO_APP_FUNC(0x01DCE1E0, void, ItemEquipVerifier_OnItemAbilityActive, (ItemEquipVerifier * __this, ItemAbility * itemAbility, bool active, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9020, ItemEquipVerifier_OnItemAbilityActive__MethodInfo); DO_APP_FUNC(0x01DCE310, void, ItemEquipVerifier_ItemToggled, (ItemEquipVerifier * __this, MethodInfo * method)); DO_APP_FUNC(0x01DCE470, void, ItemEquipVerifier_AbilityStopped, (ItemEquipVerifier * __this, bool force, MethodInfo * method)); DO_APP_FUNC(0x01DCE580, void, ItemEquipVerifier_OnDeath, (ItemEquipVerifier * __this, Vector3 position, Vector3 force, GameObject * attacker, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD8F80, ItemEquipVerifier_OnDeath__MethodInfo); DO_APP_FUNC(0x01DCE590, void, ItemEquipVerifier_Reset, (ItemEquipVerifier * __this, MethodInfo * method)); DO_APP_FUNC(0x01DCE610, void, ItemEquipVerifier_OnDestroy, (ItemEquipVerifier * __this, MethodInfo * method)); DO_APP_FUNC(0x01DCE720, void, ItemEquipVerifier__ctor, (ItemEquipVerifier * __this, MethodInfo * method)); @@ -70942,11 +81358,16 @@ DO_APP_FUNC(0x01DCEBB0, bool, Jump_CanStartAbility, (Jump * __this, MethodInfo * DO_APP_FUNC(0x01DCEE80, bool, Jump_ShouldStopActiveAbility, (Jump * __this, Ability * activeAbility, MethodInfo * method)); DO_APP_FUNC(0x01DCEEF0, void, Jump_AbilityStarted, (Jump * __this, MethodInfo * method)); DO_APP_FUNC(0x01DCF630, void, Jump_OnGrounded, (Jump * __this, bool grounded, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD8E30, Jump_OnGrounded__MethodInfo); DO_APP_FUNC(0x01DCF900, void, Jump_UpdateAnimator, (Jump * __this, MethodInfo * method)); DO_APP_FUNC(0x01DCFA90, void, Jump_ApplyJumpForce, (Jump * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD8E20, Jump_ApplyJumpForce__MethodInfo); DO_APP_FUNC(0x01DCFFE0, void, Jump_EnsureAirborne, (Jump * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD8EE0, Jump_EnsureAirborne__MethodInfo); DO_APP_FUNC(0x01DD0020, void, Jump_OnReleaseHold, (Jump * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD8F18, Jump_OnReleaseHold__MethodInfo); DO_APP_FUNC(0x01DD0030, void, Jump_OnAirborneJump, (Jump * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD8F40, Jump_OnAirborneJump__MethodInfo); DO_APP_FUNC(0x01DD01F0, void, Jump_UpdatePosition, (Jump * __this, MethodInfo * method)); DO_APP_FUNC(0x01DD0450, bool, Jump_CanStopAbility, (Jump * __this, MethodInfo * method)); DO_APP_FUNC(0x01DD04B0, void, Jump_AbilityStopped, (Jump * __this, bool force, MethodInfo * method)); @@ -70978,6 +81399,7 @@ DO_APP_FUNC(0x01DD24E0, Vector2, MoveTowards_GetInputVector, (MoveTowards * __th DO_APP_FUNC(0x01DD2580, void, MoveTowards_UpdateRotation, (MoveTowards * __this, MethodInfo * method)); DO_APP_FUNC(0x01DD29E0, void, MoveTowards_ApplyPosition, (MoveTowards * __this, MethodInfo * method)); DO_APP_FUNC(0x01DD2BB0, void, MoveTowards_ImmediateMove, (MoveTowards * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD8DC0, MoveTowards_ImmediateMove__MethodInfo); DO_APP_FUNC(0x01DD2D40, void, MoveTowards_AbilityStopped, (MoveTowards * __this, bool force, MethodInfo * method)); DO_APP_FUNC(0x01DD3020, void, MoveTowards__ctor, (MoveTowards * __this, MethodInfo * method)); DO_APP_FUNC(0x005A04D0, Transform *, MoveWithObject_get_Target, (MoveWithObject * __this, MethodInfo * method)); @@ -71008,7 +81430,9 @@ DO_APP_FUNC(0x01DD3C90, bool, PickupItem_ValidateObject, (PickupItem * __this, G DO_APP_FUNC(0x01DD42A0, bool, PickupItem_CanStartAbility, (PickupItem * __this, MethodInfo * method)); DO_APP_FUNC(0x01DD4370, void, PickupItem_AbilityStarted, (PickupItem * __this, MethodInfo * method)); DO_APP_FUNC(0x01DD4C70, void, PickupItem_DoItemPickup, (PickupItem * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD8BE8, PickupItem_DoItemPickup__MethodInfo); DO_APP_FUNC(0x0059F010, void, PickupItem_PickupComplete, (PickupItem * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD8BB8, PickupItem_PickupComplete__MethodInfo); DO_APP_FUNC(0x01DD4E40, void, PickupItem_AbilityStopped, (PickupItem * __this, bool force, MethodInfo * method)); DO_APP_FUNC(0x01DD4EC0, bool, PickupItem_TriggerExit, (PickupItem * __this, GameObject * other, MethodInfo * method)); DO_APP_FUNC(0x01DD5230, void, PickupItem_OnDestroy, (PickupItem * __this, MethodInfo * method)); @@ -71020,10 +81444,12 @@ DO_APP_FUNC(0x0041AF00, bool, QuickStart_get_RequireInput, (QuickStart * __this, DO_APP_FUNC(0x01D1C6D0, int32_t, QuickStart_get_AbilityIntData, (QuickStart * __this, MethodInfo * method)); DO_APP_FUNC(0x01DD54D0, void, QuickStart_Awake, (QuickStart * __this, MethodInfo * method)); DO_APP_FUNC(0x01DD5640, void, QuickStart_OnMoving, (QuickStart * __this, bool moving, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD8AA0, QuickStart_OnMoving__MethodInfo); DO_APP_FUNC(0x01DD5650, bool, QuickStart_CanStartAbility, (QuickStart * __this, MethodInfo * method)); DO_APP_FUNC(0x01DD56D0, void, QuickStart_AbilityStarted, (QuickStart * __this, MethodInfo * method)); DO_APP_FUNC(0x01DD5900, bool, QuickStart_CanStopAbility, (QuickStart * __this, MethodInfo * method)); DO_APP_FUNC(0x01DD5960, void, QuickStart_OnStartComplete, (QuickStart * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD8AB0, QuickStart_OnStartComplete__MethodInfo); DO_APP_FUNC(0x01DD5970, void, QuickStart_OnDestroy, (QuickStart * __this, MethodInfo * method)); DO_APP_FUNC(0x01DD5AF0, void, QuickStart__ctor, (QuickStart * __this, MethodInfo * method)); DO_APP_FUNC(0x01C66730, float, QuickStop_get_SpeedChangeThreshold, (QuickStop * __this, MethodInfo * method)); @@ -71042,6 +81468,7 @@ DO_APP_FUNC(0x01DD5E20, void, QuickStop_DeterminStopIndex, (QuickStop * __this, DO_APP_FUNC(0x01DD6040, void, QuickStop_Update, (QuickStop * __this, MethodInfo * method)); DO_APP_FUNC(0x01DD6110, bool, QuickStop_CanStopAbility, (QuickStop * __this, MethodInfo * method)); DO_APP_FUNC(0x01DD6170, void, QuickStop_OnStopComplete, (QuickStop * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD8B70, QuickStop_OnStopComplete__MethodInfo); DO_APP_FUNC(0x01DD6180, void, QuickStop_AbilityStopped, (QuickStop * __this, bool force, MethodInfo * method)); DO_APP_FUNC(0x01DD61B0, void, QuickStop_OnDestroy, (QuickStop * __this, MethodInfo * method)); DO_APP_FUNC(0x01DD6290, void, QuickStop__ctor, (QuickStop * __this, MethodInfo * method)); @@ -71056,6 +81483,7 @@ DO_APP_FUNC(0x01DD62E0, void, QuickTurn_Awake, (QuickTurn * __this, MethodInfo * DO_APP_FUNC(0x01DD63C0, bool, QuickTurn_CanStartAbility, (QuickTurn * __this, MethodInfo * method)); DO_APP_FUNC(0x01DD65D0, void, QuickTurn_AbilityStarted, (QuickTurn * __this, MethodInfo * method)); DO_APP_FUNC(0x01DD6670, void, QuickTurn_OnQuickTurnComplete, (QuickTurn * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD8B40, QuickTurn_OnQuickTurnComplete__MethodInfo); DO_APP_FUNC(0x01DD6680, bool, QuickTurn_CanStopAbility, (QuickTurn * __this, MethodInfo * method)); DO_APP_FUNC(0x01DD66F0, void, QuickTurn_AbilityStopped, (QuickTurn * __this, bool force, MethodInfo * method)); DO_APP_FUNC(0x01DD67A0, void, QuickTurn_OnDestroy, (QuickTurn * __this, MethodInfo * method)); @@ -71078,8 +81506,11 @@ DO_APP_FUNC(0x0041AEF0, bool, Ragdoll_get_CanStayActivatedOnDeath, (Ragdoll * __ DO_APP_FUNC(0x01DD6920, void, Ragdoll_Awake, (Ragdoll * __this, MethodInfo * method)); DO_APP_FUNC(0x01DD6F40, void, Ragdoll_AbilityStarted, (Ragdoll * __this, MethodInfo * method)); DO_APP_FUNC(0x01DD7360, void, Ragdoll_EnableRagdoll, (Ragdoll * __this, bool enable, Vector3 force, Vector3 position, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD8978, Ragdoll_EnableRagdoll__MethodInfo); DO_APP_FUNC(0x01DD7820, void, Ragdoll_OnDeath, (Ragdoll * __this, Vector3 position, Vector3 force, GameObject * attacker, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD8AE0, Ragdoll_OnDeath__MethodInfo); DO_APP_FUNC(0x01DD78F0, void, Ragdoll_OnRespawn, (Ragdoll * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD8AF0, Ragdoll_OnRespawn__MethodInfo); DO_APP_FUNC(0x01DD7950, void, Ragdoll_AbilityStopped, (Ragdoll * __this, bool force, MethodInfo * method)); DO_APP_FUNC(0x01DD7A90, void, Ragdoll_OnDestroy, (Ragdoll * __this, MethodInfo * method)); DO_APP_FUNC(0x01DD7C20, void, Ragdoll__ctor, (Ragdoll * __this, MethodInfo * method)); @@ -71095,7 +81526,7 @@ DO_APP_FUNC(0x0059DFF0, float, RestrictPosition_get_MaxZPosition, (RestrictPosit DO_APP_FUNC(0x0059E000, void, RestrictPosition_set_MaxZPosition, (RestrictPosition * __this, float value, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, RestrictPosition_get_IsConcurrent, (RestrictPosition * __this, MethodInfo * method)); DO_APP_FUNC(0x01DD7C70, void, RestrictPosition_ApplyPosition, (RestrictPosition * __this, MethodInfo * method)); -DO_APP_FUNC(0x01DD7E60, bool, RestrictPosition_RestrictedPosition, (RestrictPosition * __this, Vector3 targetPosition, MethodInfo * method)); +DO_APP_FUNC(0x01DD7E60, bool, RestrictPosition_RestrictedPosition, (RestrictPosition * __this, Vector3 * targetPosition, MethodInfo * method)); DO_APP_FUNC(0x01DD7EE0, void, RestrictPosition__ctor, (RestrictPosition * __this, MethodInfo * method)); DO_APP_FUNC(0x0059DF60, float, RestrictRotation_get_Restriction, (RestrictRotation * __this, MethodInfo * method)); DO_APP_FUNC(0x0059DF70, void, RestrictRotation_set_Restriction, (RestrictRotation * __this, float value, MethodInfo * method)); @@ -71108,6 +81539,7 @@ DO_APP_FUNC(0x01C5F070, void, RestrictRotation_set_LookSourceOffset, (RestrictRo DO_APP_FUNC(0x0041AEF0, bool, RestrictRotation_get_IsConcurrent, (RestrictRotation * __this, MethodInfo * method)); DO_APP_FUNC(0x01DD7F00, void, RestrictRotation_Awake, (RestrictRotation * __this, MethodInfo * method)); DO_APP_FUNC(0x00A8DDA0, void, RestrictRotation_OnAttachLookSource, (RestrictRotation * __this, ILookSource * lookSource, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD8910, RestrictRotation_OnAttachLookSource__MethodInfo); DO_APP_FUNC(0x01DD8060, void, RestrictRotation_ApplyRotation, (RestrictRotation * __this, MethodInfo * method)); DO_APP_FUNC(0x01DD8BD0, void, RestrictRotation_OnDestroy, (RestrictRotation * __this, MethodInfo * method)); DO_APP_FUNC(0x01DD8CE0, void, RestrictRotation__ctor, (RestrictRotation * __this, MethodInfo * method)); @@ -71119,9 +81551,12 @@ DO_APP_FUNC(0x0041AEF0, bool, Revive_get_CanStayActivatedOnDeath, (Revive * __th DO_APP_FUNC(0x01D28A50, int32_t, Revive_get_AbilityIntData, (Revive * __this, MethodInfo * method)); DO_APP_FUNC(0x01DD8D00, void, Revive_Awake, (Revive * __this, MethodInfo * method)); DO_APP_FUNC(0x01DD8FF0, void, Revive_OnDeath, (Revive * __this, Vector3 position, Vector3 force, GameObject * attacker, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD8A18, Revive_OnDeath__MethodInfo); DO_APP_FUNC(0x01DC4650, int32_t, Revive_GetReviveTypeIndex, (Revive * __this, Vector3 position, Vector3 force, GameObject * attacker, MethodInfo * method)); DO_APP_FUNC(0x01DBAD60, void, Revive_StartRevive, (Revive * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD89C0, Revive_StartRevive__MethodInfo); DO_APP_FUNC(0x01DD9110, void, Revive_OnReviveComplete, (Revive * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD89E8, Revive_OnReviveComplete__MethodInfo); DO_APP_FUNC(0x01DD9160, void, Revive_OnDestroy, (Revive * __this, MethodInfo * method)); DO_APP_FUNC(0x01DD92F0, void, Revive__ctor, (Revive * __this, MethodInfo * method)); DO_APP_FUNC(0x018BC5D0, AnimationEventTrigger *, Ride_get_MountEvent, (Ride * __this, MethodInfo * method)); @@ -71143,12 +81578,14 @@ DO_APP_FUNC(0x01DD9750, void, Ride_AbilityStarted, (Ride * __this, MethodInfo * DO_APP_FUNC(0x01DD9BF0, bool, Ride_ShouldBlockAbilityStart, (Ride * __this, Ability * startingAbility, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, Ride_ShouldStopActiveAbility, (Ride * __this, Ability * activeAbility, MethodInfo * method)); DO_APP_FUNC(0x01DD9CC0, void, Ride_OnMount, (Ride * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD8858, Ride_OnMount__MethodInfo); DO_APP_FUNC(0x01DD9E40, void, Ride_Update, (Ride * __this, MethodInfo * method)); DO_APP_FUNC(0x01DD9F20, void, Ride_UpdateRotation, (Ride * __this, MethodInfo * method)); DO_APP_FUNC(0x01DDA890, void, Ride_UpdatePosition, (Ride * __this, MethodInfo * method)); DO_APP_FUNC(0x01DDAC10, void, Ride_WillTryStopAbility, (Ride * __this, MethodInfo * method)); DO_APP_FUNC(0x01DDAD10, void, Ride_StartDismount, (Ride * __this, MethodInfo * method)); DO_APP_FUNC(0x01DDAF60, void, Ride_OnDismount, (Ride * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD8848, Ride_OnDismount__MethodInfo); DO_APP_FUNC(0x01DDB0C0, bool, Ride_CanStopAbility, (Ride * __this, MethodInfo * method)); DO_APP_FUNC(0x01DDB220, void, Ride_AbilityStopped, (Ride * __this, bool force, MethodInfo * method)); DO_APP_FUNC(0x01DDB430, void, Ride_ItemToggled, (Ride * __this, MethodInfo * method)); @@ -71170,7 +81607,7 @@ DO_APP_FUNC(0x01DDBB10, void, Rideable_Mount, (Rideable * __this, Ride * ride, M DO_APP_FUNC(0x01DDBBC0, void, Rideable_AbilityStarted, (Rideable * __this, MethodInfo * method)); DO_APP_FUNC(0x01DDC190, void, Rideable_OnCharacterMount, (Rideable * __this, MethodInfo * method)); DO_APP_FUNC(0x01DDC240, void, Rideable_LateUpdate, (Rideable * __this, MethodInfo * method)); -DO_APP_FUNC(0x01DDC300, bool, Rideable_CanDismount, (Rideable * __this, bool leftDismount, MethodInfo * method)); +DO_APP_FUNC(0x01DDC300, bool, Rideable_CanDismount, (Rideable * __this, bool * leftDismount, MethodInfo * method)); DO_APP_FUNC(0x01DDC380, bool, Rideable_DismountColliderOverlap, (Rideable * __this, Collider * dismountCollider, MethodInfo * method)); DO_APP_FUNC(0x01DDD330, void, Rideable_StartDismount, (Rideable * __this, MethodInfo * method)); DO_APP_FUNC(0x0059F010, void, Rideable_Dismounted, (Rideable * __this, MethodInfo * method)); @@ -71194,6 +81631,7 @@ DO_APP_FUNC(0x01DDDC10, void, Slide_UpdatePosition, (Slide * __this, MethodInfo DO_APP_FUNC(0x01DDE020, void, Slide_LateUpdate, (Slide * __this, MethodInfo * method)); DO_APP_FUNC(0x01DDE490, bool, Slide_CanStopAbility, (Slide * __this, MethodInfo * method)); DO_APP_FUNC(0x01DDE4B0, void, Slide_OnGrounded, (Slide * __this, bool grounded, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD86D8, Slide_OnGrounded__MethodInfo); DO_APP_FUNC(0x01DDE530, void, Slide_OnDestroy, (Slide * __this, MethodInfo * method)); DO_APP_FUNC(0x01DDE640, void, Slide__ctor, (Slide * __this, MethodInfo * method)); DO_APP_FUNC(0x0059DF60, float, SpeedChange_get_SpeedChangeMultiplier, (SpeedChange * __this, MethodInfo * method)); @@ -71234,8 +81672,11 @@ DO_APP_FUNC(0x01DDFC00, void, StoredInputAbilityBase_AbilityStarted, (StoredInpu DO_APP_FUNC(0x01DDFC40, void, StoredInputAbilityBase_AbilityStopped, (StoredInputAbilityBase * __this, bool force, MethodInfo * method)); DO_APP_FUNC(0x01DDFCD0, void, StoredInputAbilityBase_AbilityStopped_1, (StoredInputAbilityBase * __this, bool force, bool resetStoredInputs, MethodInfo * method)); DO_APP_FUNC(0x01DDFD70, void, StoredInputAbilityBase_OnGrounded, (StoredInputAbilityBase * __this, bool grounded, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDAC10, StoredInputAbilityBase_OnGrounded__MethodInfo); DO_APP_FUNC(0x01DDFD90, void, StoredInputAbilityBase_OnImmediateTransformChange, (StoredInputAbilityBase * __this, bool snapAnimator, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDAC20, StoredInputAbilityBase_OnImmediateTransformChange__MethodInfo); DO_APP_FUNC(0x01DDFDB0, void, StoredInputAbilityBase_ResetStoredInputs, (StoredInputAbilityBase * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDABF8, StoredInputAbilityBase_ResetStoredInputs__MethodInfo); DO_APP_FUNC(0x01DDFDD0, void, StoredInputAbilityBase_OnDestroy, (StoredInputAbilityBase * __this, MethodInfo * method)); DO_APP_FUNC(0x01DDFFC0, void, StoredInputAbilityBase__ctor, (StoredInputAbilityBase * __this, MethodInfo * method)); DO_APP_FUNC(0x01C5EFF0, bool, TargetOrbit_get_UseAimAssistTarget, (TargetOrbit * __this, MethodInfo * method)); @@ -71244,6 +81685,7 @@ DO_APP_FUNC(0x0041AEF0, bool, TargetOrbit_get_IsConcurrent, (TargetOrbit * __thi DO_APP_FUNC(0x01DDFFF0, Transform *, TargetOrbit_get_Target, (TargetOrbit * __this, MethodInfo * method)); DO_APP_FUNC(0x01DE0140, void, TargetOrbit_Awake, (TargetOrbit * __this, MethodInfo * method)); DO_APP_FUNC(0x01DE0230, void, TargetOrbit_OnAttachLookSource, (TargetOrbit * __this, ILookSource * lookSource, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDAC70, TargetOrbit_OnAttachLookSource__MethodInfo); DO_APP_FUNC(0x01DE03B0, bool, TargetOrbit_CanStartAbility, (TargetOrbit * __this, MethodInfo * method)); DO_APP_FUNC(0x01DE04D0, void, TargetOrbit_ApplyPosition, (TargetOrbit * __this, MethodInfo * method)); DO_APP_FUNC(0x01DE08E0, bool, TargetOrbit_CanStopAbility, (TargetOrbit * __this, MethodInfo * method)); @@ -71259,12 +81701,12 @@ DO_APP_FUNC(0x003AE960, void, ComboTimeout_set_ComboInputElements, (ComboTimeout DO_APP_FUNC(0x01DE0B00, bool, ComboTimeout_CanInputStartAbility, (ComboTimeout * __this, PlayerInput * playerInput, MethodInfo * method)); DO_APP_FUNC(0x01DE0C70, void, ComboTimeout_AbilityStarted, (ComboTimeout * __this, MethodInfo * method)); DO_APP_FUNC(0x01DE0C80, void, ComboTimeout__ctor, (ComboTimeout * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, String *, ComboTimeout_ComboInputElement_get_InputName, (ComboTimeout_ComboInputElement__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, ComboTimeout_ComboInputElement_set_InputName, (ComboTimeout_ComboInputElement__Boxed * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x00C23340, bool, ComboTimeout_ComboInputElement_get_AxisInput, (ComboTimeout_ComboInputElement__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C23350, void, ComboTimeout_ComboInputElement_set_AxisInput, (ComboTimeout_ComboInputElement__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x00C43A90, float, ComboTimeout_ComboInputElement_get_Timeout, (ComboTimeout_ComboInputElement__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C43AA0, void, ComboTimeout_ComboInputElement_set_Timeout, (ComboTimeout_ComboInputElement__Boxed * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x00471910, String *, ComboTimeout_ComboInputElement_get_InputName, (ComboTimeout_ComboInputElement * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, ComboTimeout_ComboInputElement_set_InputName, (ComboTimeout_ComboInputElement * __this, String * value, MethodInfo * method)); +DO_APP_FUNC(0x00C23340, bool, ComboTimeout_ComboInputElement_get_AxisInput, (ComboTimeout_ComboInputElement * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C23350, void, ComboTimeout_ComboInputElement_set_AxisInput, (ComboTimeout_ComboInputElement * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x00C43A90, float, ComboTimeout_ComboInputElement_get_Timeout, (ComboTimeout_ComboInputElement * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C43AA0, void, ComboTimeout_ComboInputElement_set_Timeout, (ComboTimeout_ComboInputElement * __this, float value, MethodInfo * method)); DO_APP_FUNC(0x01DC1480, bool, Aim_get_StopSpeedChange, (Aim * __this, MethodInfo * method)); DO_APP_FUNC(0x01DC1490, void, Aim_set_StopSpeedChange, (Aim * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x01DC14A0, bool, Aim_get_ActivateInFirstPerson, (Aim * __this, MethodInfo * method)); @@ -71275,7 +81717,9 @@ DO_APP_FUNC(0x0041AEF0, bool, Aim_get_CanReceiveMultipleStarts, (Aim * __this, M DO_APP_FUNC(0x01DE0CB0, bool, Aim_get_InputStart, (Aim * __this, MethodInfo * method)); DO_APP_FUNC(0x01DE0CC0, void, Aim_Awake, (Aim * __this, MethodInfo * method)); DO_APP_FUNC(0x00A8DDA0, void, Aim_OnAttachLookSource, (Aim * __this, ILookSource * lookSource, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDAB60, Aim_OnAttachLookSource__MethodInfo); DO_APP_FUNC(0x01DE1040, void, Aim_OnChangePerspectives, (Aim * __this, bool firstPersonPerspective, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDAB48, Aim_OnChangePerspectives__MethodInfo); DO_APP_FUNC(0x0059EE40, int32_t, Aim_GetItemStateIndex, (Aim * __this, int32_t slotID, MethodInfo * method)); DO_APP_FUNC(0x01DE10E0, int32_t, Aim_GetItemSubstateIndex, (Aim * __this, int32_t slotID, MethodInfo * method)); DO_APP_FUNC(0x01DE12A0, bool, Aim_CanStartAbility, (Aim * __this, MethodInfo * method)); @@ -71289,8 +81733,11 @@ DO_APP_FUNC(0x01DE1DD0, bool, Aim_CanStopAbility, (Aim * __this, MethodInfo * me DO_APP_FUNC(0x01DE1EE0, void, Aim_AbilityStopped, (Aim * __this, bool force, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, Aim_ShouldCheckInput, (Aim * __this, MethodInfo * method)); DO_APP_FUNC(0x01DE2020, void, Aim_OnAbilityActive, (Aim * __this, Ability * ability, bool active, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDAB58, Aim_OnAbilityActive__MethodInfo); DO_APP_FUNC(0x01DE2080, void, Aim_OnItemAbilityActive, (Aim * __this, ItemAbility * itemAbility, bool active, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDAB50, Aim_OnItemAbilityActive__MethodInfo); DO_APP_FUNC(0x01DE2160, void, Aim_OnRespawn, (Aim * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDAB38, Aim_OnRespawn__MethodInfo); DO_APP_FUNC(0x01DE21B0, void, Aim_OnDestroy, (Aim * __this, MethodInfo * method)); DO_APP_FUNC(0x01DE24F0, void, Aim__ctor, (Aim * __this, MethodInfo * method)); DO_APP_FUNC(0x01C6A2B0, int32_t, Drop_get_SlotID, (Drop * __this, MethodInfo * method)); @@ -71308,7 +81755,9 @@ DO_APP_FUNC(0x01DE2F90, bool, Drop_ShouldBlockAbilityStart, (Drop * __this, Abil DO_APP_FUNC(0x01DE3090, bool, Drop_ShouldStopActiveAbility, (Drop * __this, Ability * activeAbility, MethodInfo * method)); DO_APP_FUNC(0x01DE3140, void, Drop_AbilityStarted, (Drop * __this, MethodInfo * method)); DO_APP_FUNC(0x01DE3580, void, Drop_DropItem, (Drop * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDAB80, Drop_DropItem__MethodInfo); DO_APP_FUNC(0x01DE3790, void, Drop_OnUnequipItem, (Drop * __this, Item * item, int32_t slotID, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDAB68, Drop_OnUnequipItem__MethodInfo); DO_APP_FUNC(0x01DE3B20, void, Drop_OnDestroy, (Drop * __this, MethodInfo * method)); DO_APP_FUNC(0x01DE3DA0, void, Drop__ctor, (Drop * __this, MethodInfo * method)); DO_APP_FUNC(0x01DE3DC0, void, EquipNext_Awake, (EquipNext * __this, MethodInfo * method)); @@ -71316,6 +81765,7 @@ DO_APP_FUNC(0x01DE3EC0, void, EquipNext_OnItemSetIndexChange, (EquipNext * __thi DO_APP_FUNC(0x01DE3FC0, bool, EquipNext_CanStartAbility, (EquipNext * __this, MethodInfo * method)); DO_APP_FUNC(0x01DE4040, void, EquipNext_AbilityStarted, (EquipNext * __this, MethodInfo * method)); DO_APP_FUNC(0x01DE40B0, void, EquipNext_OnNextItemSet, (EquipNext * __this, Item * item, bool unequipOnFailure, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDAB20, EquipNext_OnNextItemSet__MethodInfo); DO_APP_FUNC(0x01DE42A0, void, EquipNext_OnDeath, (EquipNext * __this, Vector3 position, Vector3 force, GameObject * attacker, MethodInfo * method)); DO_APP_FUNC(0x01DE42D0, void, EquipNext_OnDestroy, (EquipNext * __this, MethodInfo * method)); DO_APP_FUNC(0x01DE43D0, void, EquipNext__ctor, (EquipNext * __this, MethodInfo * method)); @@ -71332,6 +81782,7 @@ DO_APP_FUNC(0x01DE4040, void, EquipScroll_AbilityStarted, (EquipScroll * __this, DO_APP_FUNC(0x01DE4730, void, EquipScroll__ctor, (EquipScroll * __this, MethodInfo * method)); DO_APP_FUNC(0x01DE4760, void, EquipSwitcher_Awake, (EquipSwitcher * __this, MethodInfo * method)); DO_APP_FUNC(0x01DE4B00, void, EquipSwitcher_OnItemSetIndexChange, (EquipSwitcher * __this, int32_t categoryIndex, int32_t itemSetIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA9D8, EquipSwitcher_OnItemSetIndexChange__MethodInfo); DO_APP_FUNC(0x003AE050, void, EquipSwitcher_OnItemSetIndexChange_1, (EquipSwitcher * __this, int32_t itemSetIndex, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, EquipSwitcher_OnDeath, (EquipSwitcher * __this, Vector3 position, Vector3 force, GameObject * attacker, MethodInfo * method)); DO_APP_FUNC(0x01DE4B20, void, EquipSwitcher_OnDestroy, (EquipSwitcher * __this, MethodInfo * method)); @@ -71343,11 +81794,15 @@ DO_APP_FUNC(0x01C696E0, int32_t, EquipUnequip_get_ActiveItemSetIndex, (EquipUneq DO_APP_FUNC(0x0041AEF0, bool, EquipUnequip_get_CanStayActivatedOnDeath, (EquipUnequip * __this, MethodInfo * method)); DO_APP_FUNC(0x01DE4D40, void, EquipUnequip_Awake, (EquipUnequip * __this, MethodInfo * method)); DO_APP_FUNC(0x01DE5C50, void, EquipUnequip_WillStartPickup, (EquipUnequip * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA8D8, EquipUnequip_WillStartPickup__MethodInfo); DO_APP_FUNC(0x01DE5E80, void, EquipUnequip_StopPickup, (EquipUnequip * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA8F0, EquipUnequip_StopPickup__MethodInfo); DO_APP_FUNC(0x01DE5E90, void, EquipUnequip_OnPickupItem, (EquipUnequip * __this, Item * item, int32_t amount, bool immediatePickup, bool forceEquip, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA9F8, EquipUnequip_OnPickupItem__MethodInfo); DO_APP_FUNC(0x01DE6620, bool, EquipUnequip_ShouldEquip, (EquipUnequip * __this, IItemIdentifier * itemIdentifier, int32_t slotID, int32_t amount, MethodInfo * method)); DO_APP_FUNC(0x01DE6A70, bool, EquipUnequip_IsEquipAllowed, (EquipUnequip * __this, int32_t itemSetIndex, ItemDefinitionBase * itemDefinition, int32_t slotID, MethodInfo * method)); DO_APP_FUNC(0x01DE6EB0, void, EquipUnequip_OnPickupItemIdentifier, (EquipUnequip * __this, IItemIdentifier * itemIdentifier, int32_t amount, bool immediatePickup, bool forceEquip, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDAA18, EquipUnequip_OnPickupItemIdentifier__MethodInfo); DO_APP_FUNC(0x01DE7190, void, EquipUnequip_StartEquipUnequip, (EquipUnequip * __this, int32_t itemSetIndex, MethodInfo * method)); DO_APP_FUNC(0x01DE71C0, void, EquipUnequip_StartEquipUnequip_1, (EquipUnequip * __this, int32_t itemSetIndex, bool forceEquipUnequip, MethodInfo * method)); DO_APP_FUNC(0x01DE71E0, void, EquipUnequip_StartEquipUnequip_2, (EquipUnequip * __this, int32_t itemSetIndex, bool forceEquipUnequip, bool immediateEquipUnequip, MethodInfo * method)); @@ -71359,33 +81814,59 @@ DO_APP_FUNC(0x01DE7A80, int32_t, EquipUnequip_GetItemSubstateIndex, (EquipUnequi DO_APP_FUNC(0x01DE7D40, void, EquipUnequip_Update, (EquipUnequip * __this, MethodInfo * method)); DO_APP_FUNC(0x01DE8A80, void, EquipUnequip_ForceEquipUnequip, (EquipUnequip * __this, int32_t slotID, bool startAbility, MethodInfo * method)); DO_APP_FUNC(0x01DE9920, void, EquipUnequip_OnAim, (EquipUnequip * __this, bool aim, bool inputStart, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA998, EquipUnequip_OnAim__MethodInfo); DO_APP_FUNC(0x01DE9930, void, EquipUnequip_OnItemUnequip, (EquipUnequip * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDAA10, EquipUnequip_OnItemUnequip__MethodInfo); DO_APP_FUNC(0x01DE9AA0, void, EquipUnequip_OnItemUnequipFirstSlot, (EquipUnequip * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDAA48, EquipUnequip_OnItemUnequipFirstSlot__MethodInfo); DO_APP_FUNC(0x01DE9AB0, void, EquipUnequip_OnItemUnequipSecondSlot, (EquipUnequip * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDAA20, EquipUnequip_OnItemUnequipSecondSlot__MethodInfo); DO_APP_FUNC(0x01DE9AC0, void, EquipUnequip_OnItemUnequipThirdSlot, (EquipUnequip * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDAA30, EquipUnequip_OnItemUnequipThirdSlot__MethodInfo); DO_APP_FUNC(0x01DE9AD0, void, EquipUnequip_ItemUnequip, (EquipUnequip * __this, int32_t slotID, bool canUpdate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA810, EquipUnequip_ItemUnequip__MethodInfo); DO_APP_FUNC(0x01DE9DC0, void, EquipUnequip_OnItemUnequipComplete, (EquipUnequip * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDAA40, EquipUnequip_OnItemUnequipComplete__MethodInfo); DO_APP_FUNC(0x01DE9F30, void, EquipUnequip_OnItemUnequipCompleteFirstSlot, (EquipUnequip * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDAA78, EquipUnequip_OnItemUnequipCompleteFirstSlot__MethodInfo); DO_APP_FUNC(0x01DE9F40, void, EquipUnequip_OnItemUnequipCompleteSecondSlot, (EquipUnequip * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDAA58, EquipUnequip_OnItemUnequipCompleteSecondSlot__MethodInfo); DO_APP_FUNC(0x01DE9F50, void, EquipUnequip_OnItemUnequipCompleteThirdSlot, (EquipUnequip * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDAA60, EquipUnequip_OnItemUnequipCompleteThirdSlot__MethodInfo); DO_APP_FUNC(0x01DE9F60, void, EquipUnequip_ItemUnequipComplete, (EquipUnequip * __this, int32_t slotID, bool canUpdate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA838, EquipUnequip_ItemUnequipComplete__MethodInfo); DO_APP_FUNC(0x01DEA740, void, EquipUnequip_OnVerifyUnequipItem, (EquipUnequip * __this, int32_t categoryIndex, int32_t slotID, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA8E8, EquipUnequip_OnVerifyUnequipItem__MethodInfo); DO_APP_FUNC(0x01DEA920, void, EquipUnequip_OnItemEquip, (EquipUnequip * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDAA90, EquipUnequip_OnItemEquip__MethodInfo); DO_APP_FUNC(0x01DEAA90, void, EquipUnequip_OnItemEquipFirstSlot, (EquipUnequip * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDAA98, EquipUnequip_OnItemEquipFirstSlot__MethodInfo); DO_APP_FUNC(0x01DEAAA0, void, EquipUnequip_OnItemEquipSecondSlot, (EquipUnequip * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDAAA8, EquipUnequip_OnItemEquipSecondSlot__MethodInfo); DO_APP_FUNC(0x01DEAAB0, void, EquipUnequip_OnItemEquipThirdSlot, (EquipUnequip * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDAA88, EquipUnequip_OnItemEquipThirdSlot__MethodInfo); DO_APP_FUNC(0x01DEAAC0, void, EquipUnequip_ItemEquip, (EquipUnequip * __this, int32_t slotID, bool canUpdate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA808, EquipUnequip_ItemEquip__MethodInfo); DO_APP_FUNC(0x01DEAEF0, void, EquipUnequip_OnItemEquipComplete, (EquipUnequip * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA960, EquipUnequip_OnItemEquipComplete__MethodInfo); DO_APP_FUNC(0x01DEB060, void, EquipUnequip_OnItemEquipCompleteFirstSlot, (EquipUnequip * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA968, EquipUnequip_OnItemEquipCompleteFirstSlot__MethodInfo); DO_APP_FUNC(0x01DEB070, void, EquipUnequip_OnItemEquipCompleteSecondSlot, (EquipUnequip * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA970, EquipUnequip_OnItemEquipCompleteSecondSlot__MethodInfo); DO_APP_FUNC(0x01DEB080, void, EquipUnequip_OnItemEquipCompleteThirdSlot, (EquipUnequip * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA958, EquipUnequip_OnItemEquipCompleteThirdSlot__MethodInfo); DO_APP_FUNC(0x01DEB090, void, EquipUnequip_ItemEquipComplete, (EquipUnequip * __this, int32_t slotID, bool canUpdate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA7A8, EquipUnequip_ItemEquipComplete__MethodInfo); DO_APP_FUNC(0x01DEB250, void, EquipUnequip_TryStopEquipUnequipAbility, (EquipUnequip * __this, MethodInfo * method)); DO_APP_FUNC(0x01DEB4B0, void, EquipUnequip_AbilityStopped, (EquipUnequip * __this, bool force, MethodInfo * method)); DO_APP_FUNC(0x01DEB560, void, EquipUnequip_OnItemSetIndexChange, (EquipUnequip * __this, int32_t categoryIndex, int32_t itemSetIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDAA68, EquipUnequip_OnItemSetIndexChange__MethodInfo); DO_APP_FUNC(0x01DEB570, void, EquipUnequip_OnRemoveItem, (EquipUnequip * __this, Item * item, int32_t slotID, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDAA00, EquipUnequip_OnRemoveItem__MethodInfo); DO_APP_FUNC(0x01DEB740, void, EquipUnequip_OnDeath, (EquipUnequip * __this, Vector3 position, Vector3 force, GameObject * attacker, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA978, EquipUnequip_OnDeath__MethodInfo); DO_APP_FUNC(0x01DEB860, void, EquipUnequip_OnInventoryRespawned, (EquipUnequip * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA980, EquipUnequip_OnInventoryRespawned__MethodInfo); DO_APP_FUNC(0x01DEB930, void, EquipUnequip_OnDestroy, (EquipUnequip * __this, MethodInfo * method)); DO_APP_FUNC(0x01DEC580, void, EquipUnequip__ctor, (EquipUnequip * __this, MethodInfo * method)); DO_APP_FUNC(0x0059EE40, int32_t, ItemAbility_get_ItemStateIndex, (ItemAbility * __this, MethodInfo * method)); @@ -71415,18 +81896,31 @@ DO_APP_FUNC(0x01DEE2B0, bool, Reload_1_ShouldBlockAbilityStart, (Reload_1 * __th DO_APP_FUNC(0x01DEE530, int32_t, Reload_1_GetItemStateIndex, (Reload_1 * __this, int32_t slotID, MethodInfo * method)); DO_APP_FUNC(0x01DEE5A0, int32_t, Reload_1_GetItemSubstateIndex, (Reload_1 * __this, int32_t slotID, MethodInfo * method)); DO_APP_FUNC(0x01DEE6C0, void, Reload_1_OnItemReload, (Reload_1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA720, Reload_1_OnItemReload__MethodInfo); DO_APP_FUNC(0x01DEE760, void, Reload_1_OnItemReloadFirstSlot, (Reload_1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA6B8, Reload_1_OnItemReloadFirstSlot__MethodInfo); DO_APP_FUNC(0x01DEE770, void, Reload_1_OnItemReloadSecondSlot, (Reload_1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA6C0, Reload_1_OnItemReloadSecondSlot__MethodInfo); DO_APP_FUNC(0x01DEE780, void, Reload_1_OnItemReloadThirdSlot, (Reload_1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA6A8, Reload_1_OnItemReloadThirdSlot__MethodInfo); DO_APP_FUNC(0x01DEE790, void, Reload_1_ReloadItem, (Reload_1 * __this, int32_t slotID, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA728, Reload_1_ReloadItem__MethodInfo); DO_APP_FUNC(0x01DEEAB0, void, Reload_1_OnItemReloadComplete, (Reload_1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA718, Reload_1_OnItemReloadComplete__MethodInfo); DO_APP_FUNC(0x01DEEB30, void, Reload_1_OnItemReloadCompleteFirstSlot, (Reload_1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA6E0, Reload_1_OnItemReloadCompleteFirstSlot__MethodInfo); DO_APP_FUNC(0x01DEEB40, void, Reload_1_OnItemReloadCompleteSecondSlot, (Reload_1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA6D0, Reload_1_OnItemReloadCompleteSecondSlot__MethodInfo); DO_APP_FUNC(0x01DEEB50, void, Reload_1_OnItemReloadCompleteThirdSlot, (Reload_1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA6D8, Reload_1_OnItemReloadCompleteThirdSlot__MethodInfo); DO_APP_FUNC(0x01DEEB60, void, Reload_1_ReloadItemComplete, (Reload_1 * __this, int32_t slotID, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA630, Reload_1_ReloadItemComplete__MethodInfo); DO_APP_FUNC(0x01DEEC90, void, Reload_1_OnStartPickup, (Reload_1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA710, Reload_1_OnStartPickup__MethodInfo); DO_APP_FUNC(0x01DEEF90, void, Reload_1_OnPickupItemIdentifier, (Reload_1 * __this, IItemIdentifier * itemIdentifier, int32_t amount, bool immediatePickup, bool forceEquip, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA708, Reload_1_OnPickupItemIdentifier__MethodInfo); DO_APP_FUNC(0x01DEEFB0, void, Reload_1_OnTryReload, (Reload_1 * __this, int32_t slotID, IItemIdentifier * itemIdentifier, bool immediateReload, bool equipCheck, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA6F8, Reload_1_OnTryReload__MethodInfo); DO_APP_FUNC(0x01DEF370, IReloadableItem *, Reload_1_ShouldReload, (Reload_1 * __this, Item * item, IItemIdentifier * itemIdentifier, bool fromPickup, MethodInfo * method)); DO_APP_FUNC(0x01DEF4E0, bool, Reload_1_CanCameraZoom, (Reload_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x01DEF5A0, void, Reload_1_AbilityStopped, (Reload_1 * __this, bool force, MethodInfo * method)); @@ -71453,6 +81947,7 @@ DO_APP_FUNC(0x01DEFF40, void, Use_Awake, (Use * __this, MethodInfo * method)); DO_APP_FUNC(0x01DF06C0, void, Use_RegisterSlotEvents, (Use * __this, int32_t slotID, MethodInfo * method)); DO_APP_FUNC(0x01DF0AC0, void, Use_UnregisterSlotEvents, (Use * __this, int32_t slotID, MethodInfo * method)); DO_APP_FUNC(0x0059E020, void, Use_OnAttachLookSource, (Use * __this, ILookSource * lookSource, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA580, Use_OnAttachLookSource__MethodInfo); DO_APP_FUNC(0x01DF0E40, int32_t, Use_GetItemStateIndex, (Use * __this, int32_t slotID, MethodInfo * method)); DO_APP_FUNC(0x01DF0EB0, int32_t, Use_GetItemSubstateIndex, (Use * __this, int32_t slotID, MethodInfo * method)); DO_APP_FUNC(0x01DF0F70, bool, Use_CanStartAbility, (Use * __this, MethodInfo * method)); @@ -71464,24 +81959,36 @@ DO_APP_FUNC(0x01DF26F0, void, Use_AbilityStarted, (Use * __this, MethodInfo * me DO_APP_FUNC(0x01DF2CA0, void, Use_ResetCanStopEvent, (Use * __this, int32_t slotID, MethodInfo * method)); DO_APP_FUNC(0x01DF2DB0, void, Use_ScheduleUseEvent, (Use * __this, int32_t slotID, MethodInfo * method)); DO_APP_FUNC(0x01DF2F90, void, Use_OnItemUse, (Use * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA550, Use_OnItemUse__MethodInfo); DO_APP_FUNC(0x01DF3010, void, Use_OnItemUseFirstSlot, (Use * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA600, Use_OnItemUseFirstSlot__MethodInfo); DO_APP_FUNC(0x01DF3060, void, Use_OnItemUseSecondSlot, (Use * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA608, Use_OnItemUseSecondSlot__MethodInfo); DO_APP_FUNC(0x01DF30B0, void, Use_OnItemUseThirdSlot, (Use * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA5E8, Use_OnItemUseThirdSlot__MethodInfo); DO_APP_FUNC(0x01DF3100, void, Use_UseItem, (Use * __this, int32_t slotID, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA520, Use_UseItem__MethodInfo); DO_APP_FUNC(0x003AE050, void, Use_Update, (Use * __this, MethodInfo * method)); DO_APP_FUNC(0x01DF3150, void, Use_LateUpdate, (Use * __this, MethodInfo * method)); DO_APP_FUNC(0x01DF3600, void, Use_ScheduleCompleteEvent, (Use * __this, int32_t index, bool scheduleEvent, MethodInfo * method)); DO_APP_FUNC(0x01DF37F0, void, Use_AbilityCanStop, (Use * __this, int32_t slotID, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA518, Use_AbilityCanStop__MethodInfo); DO_APP_FUNC(0x01DF3890, void, Use_UpdateRotation, (Use * __this, MethodInfo * method)); DO_APP_FUNC(0x01DF4090, void, Use_OnItemUseComplete, (Use * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA570, Use_OnItemUseComplete__MethodInfo); DO_APP_FUNC(0x01DF4110, void, Use_OnItemUseCompleteFirstSlot, (Use * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA538, Use_OnItemUseCompleteFirstSlot__MethodInfo); DO_APP_FUNC(0x01DF4130, void, Use_OnItemUseCompleteSecondSlot, (Use * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA528, Use_OnItemUseCompleteSecondSlot__MethodInfo); DO_APP_FUNC(0x01DF4150, void, Use_OnItemUseCompleteThirdSlot, (Use * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA530, Use_OnItemUseCompleteThirdSlot__MethodInfo); DO_APP_FUNC(0x01DF4170, void, Use_UseCompleteItem, (Use * __this, int32_t slotID, MethodInfo * method)); DO_APP_FUNC(0x01DF4300, bool, Use_CanStopAbility, (Use * __this, MethodInfo * method)); DO_APP_FUNC(0x01DF4500, void, Use_AbilityStopped, (Use * __this, bool force, MethodInfo * method)); DO_APP_FUNC(0x01DF4820, void, Use_OnItemAbilityActive, (Use * __this, ItemAbility * itemAbility, bool active, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA560, Use_OnItemAbilityActive__MethodInfo); DO_APP_FUNC(0x01DF4CD0, void, Use_OnEnableGameplayInput, (Use * __this, bool enable, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA588, Use_OnEnableGameplayInput__MethodInfo); DO_APP_FUNC(0x01DF4D10, void, Use_OnDestroy, (Use * __this, MethodInfo * method)); DO_APP_FUNC(0x01DF5040, void, Use__ctor, (Use * __this, MethodInfo * method)); DO_APP_FUNC(0x0059DF60, float, NavMeshAgentMovement_get_ArrivedDistance, (NavMeshAgentMovement * __this, MethodInfo * method)); @@ -71498,7 +82005,9 @@ DO_APP_FUNC(0x01DF6E20, bool, NavMeshAgentMovement_CanStopAbility, (NavMeshAgent DO_APP_FUNC(0x01DF6F00, void, NavMeshAgentMovement_AbilityStopped, (NavMeshAgentMovement * __this, bool force, MethodInfo * method)); DO_APP_FUNC(0x01DF6F40, void, NavMeshAgentMovement_OnGrounded, (NavMeshAgentMovement * __this, bool grounded, MethodInfo * method)); DO_APP_FUNC(0x01DF7340, void, NavMeshAgentMovement_OnDeath, (NavMeshAgentMovement * __this, Vector3 position, Vector3 force, GameObject * attacker, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA4A8, NavMeshAgentMovement_OnDeath__MethodInfo); DO_APP_FUNC(0x01DF7400, void, NavMeshAgentMovement_OnRespawn, (NavMeshAgentMovement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA488, NavMeshAgentMovement_OnRespawn__MethodInfo); DO_APP_FUNC(0x01DF7620, void, NavMeshAgentMovement_OnDestroy, (NavMeshAgentMovement * __this, MethodInfo * method)); DO_APP_FUNC(0x01DF7830, void, NavMeshAgentMovement__ctor, (NavMeshAgentMovement * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, PathfindingMovement_get_IsConcurrent, (PathfindingMovement * __this, MethodInfo * method)); @@ -71527,6 +82036,7 @@ DO_APP_FUNC(0x003C91B0, Transform *, AimAssist_get_Target, (AimAssist * __this, DO_APP_FUNC(0x01DF7AD0, void, AimAssist_Awake, (AimAssist * __this, MethodInfo * method)); DO_APP_FUNC(0x01DF7D10, void, AimAssist_OnAttachCharacter, (AimAssist * __this, GameObject * character, MethodInfo * method)); DO_APP_FUNC(0x01DF82C0, void, AimAssist_OnAim, (AimAssist * __this, bool aim, bool inputStart, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA430, AimAssist_OnAim__MethodInfo); DO_APP_FUNC(0x01DF82F0, void, AimAssist_SetTarget, (AimAssist * __this, Transform * target, MethodInfo * method)); DO_APP_FUNC(0x01DF88F0, void, AimAssist_UpdateBreakForce, (AimAssist * __this, float force, MethodInfo * method)); DO_APP_FUNC(0x01DF8950, bool, AimAssist_HasTarget, (AimAssist * __this, MethodInfo * method)); @@ -71601,8 +82111,11 @@ DO_APP_FUNC(0x01DFE540, void, CameraController_InitializeAnchor, (CameraControll DO_APP_FUNC(0x01DFE9C0, void, CameraController_Rotate, (CameraController * __this, float horizontalMovement, float verticalMovement, MethodInfo * method)); DO_APP_FUNC(0x01DFEC10, void, CameraController_Move, (CameraController * __this, float horizontalMovement, float verticalMovement, MethodInfo * method)); DO_APP_FUNC(0x01DFEFA0, void, CameraController_AddPositionalForce, (CameraController * __this, Vector3 force, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA3C0, CameraController_AddPositionalForce__MethodInfo); DO_APP_FUNC(0x01DFF050, void, CameraController_AddRotationalForce, (CameraController * __this, Vector3 force, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA3C8, CameraController_AddRotationalForce__MethodInfo); DO_APP_FUNC(0x01DFF100, void, CameraController_OnAddSecondaryForce, (CameraController * __this, Vector3 positionalForce, Vector3 rotationalForce, float restAccumulation, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA3B8, CameraController_OnAddSecondaryForce__MethodInfo); DO_APP_FUNC(0x01DFF220, void, CameraController_AddSecondaryPositionalForce, (CameraController * __this, Vector3 force, float restAccumulation, MethodInfo * method)); DO_APP_FUNC(0x01DFF2D0, void, CameraController_AddSecondaryRotationalForce, (CameraController * __this, Vector3 force, float restAccumulation, MethodInfo * method)); DO_APP_FUNC(0x01DFF380, void, CameraController_TryZoom, (CameraController * __this, bool zoom, MethodInfo * method)); @@ -71612,14 +82125,19 @@ DO_APP_FUNC(0x01DFFD10, Quaternion, CameraController_GetCrosshairsDeltaRotation, DO_APP_FUNC(0x01DFFD60, void, CameraController_SetPerspective, (CameraController * __this, bool firstPersonPerspective, MethodInfo * method)); DO_APP_FUNC(0x01DFFDB0, void, CameraController_SetPerspective_1, (CameraController * __this, bool firstPersonPerspective, bool immediateTransition, MethodInfo * method)); DO_APP_FUNC(0x01DFFE10, void, CameraController_OnAbilityActive, (CameraController * __this, Ability * ability, bool active, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA3B0, CameraController_OnAbilityActive__MethodInfo); DO_APP_FUNC(0x01DFFE10, void, CameraController_OnItemAbilityActive, (CameraController * __this, ItemAbility * itemAbility, bool active, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA370, CameraController_OnItemAbilityActive__MethodInfo); DO_APP_FUNC(0x01DFFE20, void, CameraController_OnChangePerspectives, (CameraController * __this, bool firstPersonPerspective, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA3A0, CameraController_OnChangePerspectives__MethodInfo); DO_APP_FUNC(0x01DFFE40, Vector3, CameraController_LookPosition, (CameraController * __this, MethodInfo * method)); DO_APP_FUNC(0x01DFFEB0, Vector3, CameraController_LookDirection, (CameraController * __this, bool characterLookDirection, MethodInfo * method)); DO_APP_FUNC(0x01DFFF20, Vector3, CameraController_LookDirection_1, (CameraController * __this, Vector3 lookPosition, bool characterLookDirection, int32_t layerMask, bool useRecoil, MethodInfo * method)); DO_APP_FUNC(0x01DFFFF0, void, CameraController_PositionImmediately, (CameraController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA378, CameraController_PositionImmediately__MethodInfo); DO_APP_FUNC(0x01E00000, void, CameraController_PositionImmediately_1, (CameraController * __this, bool resetViewTypes, MethodInfo * method)); DO_APP_FUNC(0x01E00450, void, CameraController_OnImmediateTransformChange, (CameraController * __this, bool snapAnimator, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA3A8, CameraController_OnImmediateTransformChange__MethodInfo); DO_APP_FUNC(0x01E00460, void, CameraController_OnDisable, (CameraController * __this, MethodInfo * method)); DO_APP_FUNC(0x01E004B0, void, CameraController_OnDestroy, (CameraController * __this, MethodInfo * method)); DO_APP_FUNC(0x01E00540, void, CameraController__ctor, (CameraController * __this, MethodInfo * method)); @@ -71629,6 +82147,7 @@ DO_APP_FUNC(0x005F7520, bool, CameraControllerHandler_get_ContinuousZoom, (Camer DO_APP_FUNC(0x00715340, void, CameraControllerHandler_set_ContinuousZoom, (CameraControllerHandler * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x01CE3880, void, CameraControllerHandler_Awake, (CameraControllerHandler * __this, MethodInfo * method)); DO_APP_FUNC(0x01CE3B00, void, CameraControllerHandler_OnAttachCharacter, (CameraControllerHandler * __this, GameObject * character, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D760, CameraControllerHandler_OnAttachCharacter__MethodInfo); DO_APP_FUNC(0x01CE4290, void, CameraControllerHandler_OnDisable, (CameraControllerHandler * __this, MethodInfo * method)); DO_APP_FUNC(0x01CE4320, void, CameraControllerHandler_Update, (CameraControllerHandler * __this, MethodInfo * method)); DO_APP_FUNC(0x01CE4590, void, CameraControllerHandler_FixedUpdate, (CameraControllerHandler * __this, MethodInfo * method)); @@ -71637,9 +82156,13 @@ DO_APP_FUNC(0x01CE46E0, void, CameraControllerHandler_UnregisterAbilityInputEven DO_APP_FUNC(0x01CE4740, void, CameraControllerHandler_ExecuteInputEvent, (CameraControllerHandler * __this, String * eventName, MethodInfo * method)); DO_APP_FUNC(0x01CE47B0, void, CameraControllerHandler_ExecuteInputEvent_1, (CameraControllerHandler * __this, String * eventName, float axisValue, MethodInfo * method)); DO_APP_FUNC(0x01C59630, void, CameraControllerHandler_OnDeath, (CameraControllerHandler * __this, Vector3 position, Vector3 force, GameObject * attacker, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D740, CameraControllerHandler_OnDeath__MethodInfo); DO_APP_FUNC(0x01CE4840, void, CameraControllerHandler_OnRespawn, (CameraControllerHandler * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D730, CameraControllerHandler_OnRespawn__MethodInfo); DO_APP_FUNC(0x01CE48A0, void, CameraControllerHandler_OnEnableGameplayInput, (CameraControllerHandler * __this, bool enable, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D738, CameraControllerHandler_OnEnableGameplayInput__MethodInfo); DO_APP_FUNC(0x01CE4B00, void, CameraControllerHandler_OnActivate, (CameraControllerHandler * __this, bool activate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D758, CameraControllerHandler_OnActivate__MethodInfo); DO_APP_FUNC(0x01CE4C60, void, CameraControllerHandler_OnDestroy, (CameraControllerHandler * __this, MethodInfo * method)); DO_APP_FUNC(0x01CE4DA0, void, CameraControllerHandler__ctor, (CameraControllerHandler * __this, MethodInfo * method)); DO_APP_FUNC(0x00A79C40, float, Transition_get_FirstToThirdTransitionDuration, (Transition * __this, MethodInfo * method)); @@ -71730,6 +82253,7 @@ DO_APP_FUNC(0x01CE82C0, void, AudioManager_Stop, (GameObject * gameObject, Metho DO_APP_FUNC(0x01CE8300, void, AudioManager_Stop_1, (GameObject * gameObject, int32_t reservedIndex, MethodInfo * method)); DO_APP_FUNC(0x01CE8340, void, AudioManager_StopInternal, (AudioManager * __this, GameObject * gameObject, int32_t reservedIndex, MethodInfo * method)); DO_APP_FUNC(0x01CE84D0, void, AudioManager_SceneUnloaded, (AudioManager * __this, Scene scene, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D6E8, AudioManager_SceneUnloaded__MethodInfo); DO_APP_FUNC(0x01CE8610, void, AudioManager_OnDisable, (AudioManager * __this, MethodInfo * method)); DO_APP_FUNC(0x01CE86C0, void, AudioManager_DomainReset, (MethodInfo * method)); DO_APP_FUNC(0x01CE8770, void, AudioManager__ctor, (AudioManager * __this, MethodInfo * method)); @@ -71749,25 +82273,25 @@ DO_APP_FUNC(0x02CE0450, void, TypeInferenceRuleAttribute__ctor, (TypeInferenceRu DO_APP_FUNC(0x003BCBE0, void, TypeInferenceRuleAttribute__ctor_1, (TypeInferenceRuleAttribute * __this, String * rule, MethodInfo * method)); DO_APP_FUNC(0x015C0B20, String *, TypeInferenceRuleAttribute_ToString, (TypeInferenceRuleAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x02CE0500, void, GenericStack__ctor, (GenericStack * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C2E000, void, ProfilerCategory__ctor, (ProfilerCategory__Boxed * __this, uint16_t category, MethodInfo * method)); -DO_APP_FUNC(0x02CE0510, String *, ProfilerCategory_get_Name, (ProfilerCategory__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CE0650, String *, ProfilerCategory_ToString, (ProfilerCategory__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C2E000, void, ProfilerCategory__ctor, (ProfilerCategory * __this, uint16_t category, MethodInfo * method)); +DO_APP_FUNC(0x02CE0510, String *, ProfilerCategory_get_Name, (ProfilerCategory * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CE0650, String *, ProfilerCategory_ToString, (ProfilerCategory * __this, MethodInfo * method)); DO_APP_FUNC(0x007205E0, ProfilerCategory, ProfilerCategory_get_Scripts, (MethodInfo * method)); DO_APP_FUNC(0x02CE0660, uint16_t, ProfilerCategory_op_Implicit, (ProfilerCategory category, MethodInfo * method)); -DO_APP_FUNC(0x02BBEFE0, void, ProfilerMarker__ctor, (ProfilerMarker__Boxed * __this, String * name, MethodInfo * method)); -DO_APP_FUNC(0x02CE0670, void, ProfilerMarker__ctor_1, (ProfilerMarker__Boxed * __this, ProfilerCategory category, String * name, MethodInfo * method)); -DO_APP_FUNC(0x02CE06A0, ProfilerMarker_AutoScope, ProfilerMarker_Auto, (ProfilerMarker__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CE0730, void, ProfilerMarker_AutoScope__ctor, (ProfilerMarker_AutoScope__Boxed * __this, void * markerPtr, MethodInfo * method)); -DO_APP_FUNC(0x02CE07D0, void, ProfilerMarker_AutoScope_Dispose, (ProfilerMarker_AutoScope__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, int64_t, ProfilerRecorderSample_get_Count, (ProfilerRecorderSample__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CE0860, void, ProfilerRecorder__ctor, (ProfilerRecorder__Boxed * __this, ProfilerRecorderHandle statHandle, int32_t capacity, ProfilerRecorderOptions__Enum options, MethodInfo * method)); -DO_APP_FUNC(0x02CE08F0, bool, ProfilerRecorder_get_Valid, (ProfilerRecorder__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CE0960, void, ProfilerRecorder_Start, (ProfilerRecorder__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CE09D0, void, ProfilerRecorder_Stop, (ProfilerRecorder__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CE0A40, int64_t, ProfilerRecorder_get_LastValue, (ProfilerRecorder__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CE0AA0, int32_t, ProfilerRecorder_get_Count, (ProfilerRecorder__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CE0B10, bool, ProfilerRecorder_get_IsRunning, (ProfilerRecorder__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CE0B70, ProfilerRecorderSample, ProfilerRecorder_GetSample, (ProfilerRecorder__Boxed * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x02BBEFE0, void, ProfilerMarker__ctor, (ProfilerMarker * __this, String * name, MethodInfo * method)); +DO_APP_FUNC(0x02CE0670, void, ProfilerMarker__ctor_1, (ProfilerMarker * __this, ProfilerCategory category, String * name, MethodInfo * method)); +DO_APP_FUNC(0x02CE06A0, ProfilerMarker_AutoScope, ProfilerMarker_Auto, (ProfilerMarker * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CE0730, void, ProfilerMarker_AutoScope__ctor, (ProfilerMarker_AutoScope * __this, void * markerPtr, MethodInfo * method)); +DO_APP_FUNC(0x02CE07D0, void, ProfilerMarker_AutoScope_Dispose, (ProfilerMarker_AutoScope * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, int64_t, ProfilerRecorderSample_get_Count, (ProfilerRecorderSample * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CE0860, void, ProfilerRecorder__ctor, (ProfilerRecorder * __this, ProfilerRecorderHandle statHandle, int32_t capacity, ProfilerRecorderOptions__Enum options, MethodInfo * method)); +DO_APP_FUNC(0x02CE08F0, bool, ProfilerRecorder_get_Valid, (ProfilerRecorder * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CE0960, void, ProfilerRecorder_Start, (ProfilerRecorder * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CE09D0, void, ProfilerRecorder_Stop, (ProfilerRecorder * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CE0A40, int64_t, ProfilerRecorder_get_LastValue, (ProfilerRecorder * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CE0AA0, int32_t, ProfilerRecorder_get_Count, (ProfilerRecorder * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CE0B10, bool, ProfilerRecorder_get_IsRunning, (ProfilerRecorder * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CE0B70, ProfilerRecorderSample, ProfilerRecorder_GetSample, (ProfilerRecorder * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x02CE0C30, ProfilerRecorder, ProfilerRecorder_Create, (ProfilerRecorderHandle statHandle, int32_t maxSampleCount, ProfilerRecorderOptions__Enum options, MethodInfo * method)); DO_APP_FUNC(0x02CE0CB0, void, ProfilerRecorder_Control, (ProfilerRecorder handle, ProfilerRecorder_ControlOptions__Enum options, MethodInfo * method)); DO_APP_FUNC(0x02CE0D10, int64_t, ProfilerRecorder_GetLastValue, (ProfilerRecorder handle, MethodInfo * method)); @@ -71775,27 +82299,29 @@ DO_APP_FUNC(0x02CE0D60, int32_t, ProfilerRecorder_GetCount, (ProfilerRecorder ha DO_APP_FUNC(0x02CE0DC0, bool, ProfilerRecorder_GetValid, (ProfilerRecorder handle, MethodInfo * method)); DO_APP_FUNC(0x02CE0E10, bool, ProfilerRecorder_GetRunning, (ProfilerRecorder handle, MethodInfo * method)); DO_APP_FUNC(0x02CE0E60, ProfilerRecorderSample, ProfilerRecorder_GetSampleInternal, (ProfilerRecorder handle, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x02CE0EE0, void, ProfilerRecorder_Dispose, (ProfilerRecorder__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CE0F50, void, ProfilerRecorder_CheckInitializedAndThrow, (ProfilerRecorder__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CE0FC0, void, ProfilerRecorder_Create_Injected, (ProfilerRecorderHandle statHandle, int32_t maxSampleCount, ProfilerRecorderOptions__Enum options, ProfilerRecorder ret, MethodInfo * method)); -DO_APP_FUNC(0x02CE1040, void, ProfilerRecorder_Control_Injected, (ProfilerRecorder handle, ProfilerRecorder_ControlOptions__Enum options, MethodInfo * method)); -DO_APP_FUNC(0x02CE10A0, int64_t, ProfilerRecorder_GetLastValue_Injected, (ProfilerRecorder handle, MethodInfo * method)); -DO_APP_FUNC(0x02CE10F0, int32_t, ProfilerRecorder_GetCount_Injected, (ProfilerRecorder handle, ProfilerRecorder_CountOptions__Enum countOptions, MethodInfo * method)); -DO_APP_FUNC(0x02CE1150, bool, ProfilerRecorder_GetValid_Injected, (ProfilerRecorder handle, MethodInfo * method)); -DO_APP_FUNC(0x02CE11A0, bool, ProfilerRecorder_GetRunning_Injected, (ProfilerRecorder handle, MethodInfo * method)); -DO_APP_FUNC(0x02CE11F0, void, ProfilerRecorder_GetSampleInternal_Injected, (ProfilerRecorder handle, int32_t index, ProfilerRecorderSample ret, MethodInfo * method)); -DO_APP_FUNC(0x0181A0D0, MarkerFlags__Enum, ProfilerRecorderDescription_get_Flags, (ProfilerRecorderDescription__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9A2A0, void, ProfilerRecorderHandle__ctor, (ProfilerRecorderHandle__Boxed * __this, uint64_t handle, MethodInfo * method)); -DO_APP_FUNC(0x02CE1260, bool, ProfilerRecorderHandle_get_Valid, (ProfilerRecorderHandle__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CE0EE0, void, ProfilerRecorder_Dispose, (ProfilerRecorder * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CE0F50, void, ProfilerRecorder_CheckInitializedAndThrow, (ProfilerRecorder * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04370, ProfilerRecorder_CheckInitializedAndThrow__MethodInfo); +DO_APP_FUNC(0x02CE0FC0, void, ProfilerRecorder_Create_Injected, (ProfilerRecorderHandle * statHandle, int32_t maxSampleCount, ProfilerRecorderOptions__Enum options, ProfilerRecorder * ret, MethodInfo * method)); +DO_APP_FUNC(0x02CE1040, void, ProfilerRecorder_Control_Injected, (ProfilerRecorder * handle, ProfilerRecorder_ControlOptions__Enum options, MethodInfo * method)); +DO_APP_FUNC(0x02CE10A0, int64_t, ProfilerRecorder_GetLastValue_Injected, (ProfilerRecorder * handle, MethodInfo * method)); +DO_APP_FUNC(0x02CE10F0, int32_t, ProfilerRecorder_GetCount_Injected, (ProfilerRecorder * handle, ProfilerRecorder_CountOptions__Enum countOptions, MethodInfo * method)); +DO_APP_FUNC(0x02CE1150, bool, ProfilerRecorder_GetValid_Injected, (ProfilerRecorder * handle, MethodInfo * method)); +DO_APP_FUNC(0x02CE11A0, bool, ProfilerRecorder_GetRunning_Injected, (ProfilerRecorder * handle, MethodInfo * method)); +DO_APP_FUNC(0x02CE11F0, void, ProfilerRecorder_GetSampleInternal_Injected, (ProfilerRecorder * handle, int32_t index, ProfilerRecorderSample * ret, MethodInfo * method)); +DO_APP_FUNC(0x0181A0D0, MarkerFlags__Enum, ProfilerRecorderDescription_get_Flags, (ProfilerRecorderDescription * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9A2A0, void, ProfilerRecorderHandle__ctor, (ProfilerRecorderHandle * __this, uint64_t handle, MethodInfo * method)); +DO_APP_FUNC(0x02CE1260, bool, ProfilerRecorderHandle_get_Valid, (ProfilerRecorderHandle * __this, MethodInfo * method)); DO_APP_FUNC(0x02CE1280, ProfilerRecorderDescription, ProfilerRecorderHandle_GetDescription, (ProfilerRecorderHandle handle, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04330, ProfilerRecorderHandle_GetDescription__MethodInfo); DO_APP_FUNC(0x02CE1390, ProfilerRecorderDescription, ProfilerRecorderHandle_GetDescriptionInternal, (ProfilerRecorderHandle handle, MethodInfo * method)); -DO_APP_FUNC(0x02CE1400, void, ProfilerRecorderHandle_GetDescriptionInternal_Injected, (ProfilerRecorderHandle handle, ProfilerRecorderDescription ret, MethodInfo * method)); +DO_APP_FUNC(0x02CE1400, void, ProfilerRecorderHandle_GetDescriptionInternal_Injected, (ProfilerRecorderHandle * handle, ProfilerRecorderDescription * ret, MethodInfo * method)); DO_APP_FUNC(0x02CE1460, ProfilerCategoryDescription, ProfilerUnsafeUtility_GetCategoryDescription, (uint16_t categoryId, MethodInfo * method)); DO_APP_FUNC(0x02CE14D0, void *, ProfilerUnsafeUtility_CreateMarker, (String * name, uint16_t categoryId, MarkerFlags__Enum flags, int32_t metadataCount, MethodInfo * method)); DO_APP_FUNC(0x02CE1550, void, ProfilerUnsafeUtility_BeginSample, (void * markerPtr, MethodInfo * method)); DO_APP_FUNC(0x02CE15A0, void, ProfilerUnsafeUtility_EndSample, (void * markerPtr, MethodInfo * method)); DO_APP_FUNC(0x02CE15F0, String *, ProfilerUnsafeUtility_Utf8ToString, (uint8_t * chars, int32_t charsLen, MethodInfo * method)); -DO_APP_FUNC(0x02CE16E0, void, ProfilerUnsafeUtility_GetCategoryDescription_Injected, (uint16_t categoryId, ProfilerCategoryDescription ret, MethodInfo * method)); +DO_APP_FUNC(0x02CE16E0, void, ProfilerUnsafeUtility_GetCategoryDescription_Injected, (uint16_t categoryId, ProfilerCategoryDescription * ret, MethodInfo * method)); DO_APP_FUNC(0x02CE1740, void, JobHandle_ScheduleBatchedJobs, (MethodInfo * method)); DO_APP_FUNC(0x02CE1790, void, JobsUtility_InvokePanicFunction, (MethodInfo * method)); DO_APP_FUNC(0x003F7AE0, void, JobsUtility_PanicFunction___ctor, (JobsUtility_PanicFunction_ * __this, Object * object, void * method_1, MethodInfo * method)); @@ -71832,16 +82358,16 @@ DO_APP_FUNC(0x003BCD90, void, UsedImplicitlyAttribute__ctor, (UsedImplicitlyAttr DO_APP_FUNC(0x003BCDC0, void, UsedImplicitlyAttribute__ctor_1, (UsedImplicitlyAttribute * __this, ImplicitUseKindFlags__Enum useKindFlags, ImplicitUseTargetFlags__Enum targetFlags, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, PureAttribute__ctor, (PureAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x02CE2090, int32_t, SortingLayer_GetLayerValueFromID, (int32_t id, MethodInfo * method)); -DO_APP_FUNC(0x02CE20E0, void, Keyframe__ctor, (Keyframe__Boxed * __this, float time, float value, MethodInfo * method)); -DO_APP_FUNC(0x02CE2100, void, Keyframe__ctor_1, (Keyframe__Boxed * __this, float time, float value, float inTangent, float outTangent, MethodInfo * method)); -DO_APP_FUNC(0x02CE2130, float, Keyframe_get_time, (Keyframe__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C42840, void, Keyframe_set_time, (Keyframe__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02CCAAD0, float, Keyframe_get_value, (Keyframe__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C7A0F0, void, Keyframe_set_value, (Keyframe__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02CE2140, float, Keyframe_get_inTangent, (Keyframe__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C43A80, void, Keyframe_set_inTangent, (Keyframe__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02CCABB0, float, Keyframe_get_outTangent, (Keyframe__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C43AA0, void, Keyframe_set_outTangent, (Keyframe__Boxed * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02CE20E0, void, Keyframe__ctor, (Keyframe * __this, float time, float value, MethodInfo * method)); +DO_APP_FUNC(0x02CE2100, void, Keyframe__ctor_1, (Keyframe * __this, float time, float value, float inTangent, float outTangent, MethodInfo * method)); +DO_APP_FUNC(0x02CE2130, float, Keyframe_get_time, (Keyframe * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C42840, void, Keyframe_set_time, (Keyframe * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02CCAAD0, float, Keyframe_get_value, (Keyframe * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C7A0F0, void, Keyframe_set_value, (Keyframe * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02CE2140, float, Keyframe_get_inTangent, (Keyframe * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C43A80, void, Keyframe_set_inTangent, (Keyframe * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02CCABB0, float, Keyframe_get_outTangent, (Keyframe * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C43AA0, void, Keyframe_set_outTangent, (Keyframe * __this, float value, MethodInfo * method)); DO_APP_FUNC(0x02CE2150, void, AnimationCurve_Internal_Destroy, (void * ptr, MethodInfo * method)); DO_APP_FUNC(0x02CE21A0, void *, AnimationCurve_Internal_Create, (Keyframe__Array * keys, MethodInfo * method)); DO_APP_FUNC(0x02CE21F0, bool, AnimationCurve_Internal_Equals, (AnimationCurve * __this, void * other, MethodInfo * method)); @@ -71872,9 +82398,9 @@ DO_APP_FUNC(0x02CE2D80, void, AnimationCurve__ctor_1, (AnimationCurve * __this, DO_APP_FUNC(0x02CE2DE0, bool, AnimationCurve_Equals, (AnimationCurve * __this, Object * o, MethodInfo * method)); DO_APP_FUNC(0x02CE2FA0, bool, AnimationCurve_Equals_1, (AnimationCurve * __this, AnimationCurve * other, MethodInfo * method)); DO_APP_FUNC(0x01E8EBD0, int32_t, AnimationCurve_GetHashCode, (AnimationCurve * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CE30E0, int32_t, AnimationCurve_AddKey_Internal_Injected, (AnimationCurve * __this, Keyframe key, MethodInfo * method)); -DO_APP_FUNC(0x02CE3140, int32_t, AnimationCurve_MoveKey_Injected, (AnimationCurve * __this, int32_t index, Keyframe key, MethodInfo * method)); -DO_APP_FUNC(0x02CE31B0, void, AnimationCurve_GetKey_Injected, (AnimationCurve * __this, int32_t index, Keyframe ret, MethodInfo * method)); +DO_APP_FUNC(0x02CE30E0, int32_t, AnimationCurve_AddKey_Internal_Injected, (AnimationCurve * __this, Keyframe * key, MethodInfo * method)); +DO_APP_FUNC(0x02CE3140, int32_t, AnimationCurve_MoveKey_Injected, (AnimationCurve * __this, int32_t index, Keyframe * key, MethodInfo * method)); +DO_APP_FUNC(0x02CE31B0, void, AnimationCurve_GetKey_Injected, (AnimationCurve * __this, int32_t index, Keyframe * ret, MethodInfo * method)); DO_APP_FUNC(0x02CE3220, void, Application_Quit, (int32_t exitCode, MethodInfo * method)); DO_APP_FUNC(0x00663F50, void, Application_Quit_1, (MethodInfo * method)); DO_APP_FUNC(0x02CE3270, bool, Application_get_isPlaying, (MethodInfo * method)); @@ -71916,44 +82442,50 @@ DO_APP_FUNC(0x02CE40F0, void, Application_LogCallback__ctor, (Application_LogCal DO_APP_FUNC(0x003EDBB0, void, Application_LogCallback_Invoke, (Application_LogCallback * __this, String * condition, String * stackTrace, LogType__Enum type, MethodInfo * method)); DO_APP_FUNC(0x02CE4230, BootConfigData *, BootConfigData_WrapBootConfigData, (void * nativeHandle, MethodInfo * method)); DO_APP_FUNC(0x02CE4310, void, BootConfigData__ctor, (BootConfigData * __this, void * nativeHandle, MethodInfo * method)); -DO_APP_FUNC(0x0171CAE0, void, CachedAssetBundle__ctor, (CachedAssetBundle__Boxed * __this, String * name, Hash128 hash, MethodInfo * method)); -DO_APP_FUNC(0x00E5B640, String *, CachedAssetBundle_get_name, (CachedAssetBundle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CE43C0, Hash128, CachedAssetBundle_get_hash, (CachedAssetBundle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B78450, int32_t, Cache_get_handle, (Cache__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B78450, int32_t, Cache_GetHashCode, (Cache__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CE43D0, bool, Cache_Equals, (Cache__Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x02CE4450, bool, Cache_Equals_1, (Cache__Boxed * __this, Cache other, MethodInfo * method)); -DO_APP_FUNC(0x02CE4460, bool, Cache_get_valid, (Cache__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04270, BootConfigData__ctor__MethodInfo); +DO_APP_FUNC(0x0171CAE0, void, CachedAssetBundle__ctor, (CachedAssetBundle * __this, String * name, Hash128 hash, MethodInfo * method)); +DO_APP_FUNC(0x00E5B640, String *, CachedAssetBundle_get_name, (CachedAssetBundle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CE43C0, Hash128, CachedAssetBundle_get_hash, (CachedAssetBundle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B78450, int32_t, Cache_get_handle, (Cache * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B78450, int32_t, Cache_GetHashCode, (Cache * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CE43D0, bool, Cache_Equals, (Cache * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x02CE4450, bool, Cache_Equals_1, (Cache * __this, Cache other, MethodInfo * method)); +DO_APP_FUNC(0x02CE4460, bool, Cache_get_valid, (Cache * __this, MethodInfo * method)); DO_APP_FUNC(0x02CE44B0, bool, Cache_Cache_IsValid, (int32_t handle, MethodInfo * method)); -DO_APP_FUNC(0x02CE4500, String *, Cache_get_path, (Cache__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CE4500, String *, Cache_get_path, (Cache * __this, MethodInfo * method)); DO_APP_FUNC(0x02CE4550, String *, Cache_Cache_GetPath, (int32_t handle, MethodInfo * method)); -DO_APP_FUNC(0x02CE45A0, void, Cache_set_maximumAvailableStorageSpace, (Cache__Boxed * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC(0x02CE45A0, void, Cache_set_maximumAvailableStorageSpace, (Cache * __this, int64_t value, MethodInfo * method)); DO_APP_FUNC(0x02CE4600, void, Cache_Cache_SetMaximumDiskSpaceAvailable, (int32_t handle, int64_t value, MethodInfo * method)); -DO_APP_FUNC(0x02CE4660, void, Cache_set_expirationDelay, (Cache__Boxed * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x02CE4660, void, Cache_set_expirationDelay, (Cache * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x02CE46C0, void, Cache_Cache_SetExpirationDelay, (int32_t handle, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x02CE4720, void, Caching_set_compressionEnabled, (bool value, MethodInfo * method)); DO_APP_FUNC(0x02CE4770, bool, Caching_get_ready, (MethodInfo * method)); DO_APP_FUNC(0x02CE47C0, bool, Caching_ClearCachedVersion, (String * assetBundleName, Hash128 hash, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04240, Caching_ClearCachedVersion__MethodInfo); DO_APP_FUNC(0x02CE4880, bool, Caching_ClearCachedVersionInternal, (String * assetBundleName, Hash128 hash, MethodInfo * method)); DO_APP_FUNC(0x02CE48E0, bool, Caching_ClearOtherCachedVersions, (String * assetBundleName, Hash128 hash, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04238, Caching_ClearOtherCachedVersions__MethodInfo); DO_APP_FUNC(0x02CE49A0, bool, Caching_ClearAllCachedVersions, (String * assetBundleName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04230, Caching_ClearAllCachedVersions__MethodInfo); DO_APP_FUNC(0x02CE4A60, bool, Caching_ClearCachedVersions, (String * assetBundleName, Hash128 hash, bool keepInputVersion, MethodInfo * method)); DO_APP_FUNC(0x02CE4AD0, bool, Caching_IsVersionCached, (CachedAssetBundle cachedBundle, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04228, Caching_IsVersionCached__MethodInfo); DO_APP_FUNC(0x02CE4BD0, bool, Caching_IsVersionCached_1, (String * url, String * assetBundleName, Hash128 hash, MethodInfo * method)); DO_APP_FUNC(0x02CE4C40, Cache, Caching_AddCache, (String * cachePath, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04218, Caching_AddCache__MethodInfo); DO_APP_FUNC(0x02CE4F00, Cache, Caching_AddCache_1, (String * cachePath, bool isReadonly, MethodInfo * method)); DO_APP_FUNC(0x02CE4F70, Cache, Caching_GetCacheByPath, (String * cachePath, MethodInfo * method)); DO_APP_FUNC(0x02CE4FD0, Cache, Caching_get_defaultCache, (MethodInfo * method)); DO_APP_FUNC(0x02CE5030, Cache, Caching_get_currentCacheForWriting, (MethodInfo * method)); DO_APP_FUNC(0x02CE5090, void, Caching_set_currentCacheForWriting, (Cache value, MethodInfo * method)); -DO_APP_FUNC(0x02CE50E0, bool, Caching_ClearCachedVersionInternal_Injected, (String * assetBundleName, Hash128 hash, MethodInfo * method)); -DO_APP_FUNC(0x02CE5140, bool, Caching_ClearCachedVersions_Injected, (String * assetBundleName, Hash128 hash, bool keepInputVersion, MethodInfo * method)); -DO_APP_FUNC(0x02CE51B0, bool, Caching_IsVersionCached_Injected, (String * url, String * assetBundleName, Hash128 hash, MethodInfo * method)); -DO_APP_FUNC(0x02CE5220, void, Caching_AddCache_Injected, (String * cachePath, bool isReadonly, Cache ret, MethodInfo * method)); -DO_APP_FUNC(0x02CE5290, void, Caching_GetCacheByPath_Injected, (String * cachePath, Cache ret, MethodInfo * method)); -DO_APP_FUNC(0x02CE52F0, void, Caching_get_defaultCache_Injected, (Cache ret, MethodInfo * method)); -DO_APP_FUNC(0x02CE5340, void, Caching_get_currentCacheForWriting_Injected, (Cache ret, MethodInfo * method)); -DO_APP_FUNC(0x02CE5390, void, Caching_set_currentCacheForWriting_Injected, (Cache value, MethodInfo * method)); +DO_APP_FUNC(0x02CE50E0, bool, Caching_ClearCachedVersionInternal_Injected, (String * assetBundleName, Hash128 * hash, MethodInfo * method)); +DO_APP_FUNC(0x02CE5140, bool, Caching_ClearCachedVersions_Injected, (String * assetBundleName, Hash128 * hash, bool keepInputVersion, MethodInfo * method)); +DO_APP_FUNC(0x02CE51B0, bool, Caching_IsVersionCached_Injected, (String * url, String * assetBundleName, Hash128 * hash, MethodInfo * method)); +DO_APP_FUNC(0x02CE5220, void, Caching_AddCache_Injected, (String * cachePath, bool isReadonly, Cache * ret, MethodInfo * method)); +DO_APP_FUNC(0x02CE5290, void, Caching_GetCacheByPath_Injected, (String * cachePath, Cache * ret, MethodInfo * method)); +DO_APP_FUNC(0x02CE52F0, void, Caching_get_defaultCache_Injected, (Cache * ret, MethodInfo * method)); +DO_APP_FUNC(0x02CE5340, void, Caching_get_currentCacheForWriting_Injected, (Cache * ret, MethodInfo * method)); +DO_APP_FUNC(0x02CE5390, void, Caching_set_currentCacheForWriting_Injected, (Cache * value, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, Camera__ctor, (Camera * __this, MethodInfo * method)); DO_APP_FUNC(0x02CE53E0, float, Camera_get_nearClipPlane, (Camera * __this, MethodInfo * method)); DO_APP_FUNC(0x02CE5430, void, Camera_set_nearClipPlane, (Camera * __this, float value, MethodInfo * method)); @@ -72040,6 +82572,7 @@ DO_APP_FUNC(0x02CE74A0, int32_t, Camera_GetAllCamerasCount, (MethodInfo * method DO_APP_FUNC(0x02CE74F0, int32_t, Camera_GetAllCamerasImpl, (Camera__Array * cam, MethodInfo * method)); DO_APP_FUNC(0x02CE74A0, int32_t, Camera_get_allCamerasCount, (MethodInfo * method)); DO_APP_FUNC(0x02CE7540, int32_t, Camera_GetAllCameras, (Camera__Array * cameras, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D041E8, Camera_GetAllCameras__MethodInfo); DO_APP_FUNC(0x02CE7670, void, Camera_Render, (Camera * __this, MethodInfo * method)); DO_APP_FUNC(0x02CE76C0, void, Camera_SetupCurrent, (Camera * cur, MethodInfo * method)); DO_APP_FUNC(0x02CE7710, void, Camera_CopyFrom, (Camera * __this, Camera * other, MethodInfo * method)); @@ -72047,37 +82580,39 @@ DO_APP_FUNC(0x02CE7770, int32_t, Camera_get_commandBufferCount, (Camera * __this DO_APP_FUNC(0x02CE77C0, void, Camera_AddCommandBufferImpl, (Camera * __this, CameraEvent__Enum evt, CommandBuffer * buffer, MethodInfo * method)); DO_APP_FUNC(0x02CE7830, void, Camera_RemoveCommandBufferImpl, (Camera * __this, CameraEvent__Enum evt, CommandBuffer * buffer, MethodInfo * method)); DO_APP_FUNC(0x02CE78A0, void, Camera_AddCommandBuffer, (Camera * __this, CameraEvent__Enum evt, CommandBuffer * buffer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04208, Camera_AddCommandBuffer__MethodInfo); DO_APP_FUNC(0x02CE7A10, void, Camera_RemoveCommandBuffer, (Camera * __this, CameraEvent__Enum evt, CommandBuffer * buffer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D041F8, Camera_RemoveCommandBuffer__MethodInfo); DO_APP_FUNC(0x02CE7B80, CommandBuffer__Array *, Camera_GetCommandBuffers, (Camera * __this, CameraEvent__Enum evt, MethodInfo * method)); DO_APP_FUNC(0x02CE7BE0, void, Camera_FireOnPreCull, (Camera * cam, MethodInfo * method)); DO_APP_FUNC(0x02CE7C40, void, Camera_FireOnPreRender, (Camera * cam, MethodInfo * method)); DO_APP_FUNC(0x02CE7CA0, void, Camera_FireOnPostRender, (Camera * cam, MethodInfo * method)); -DO_APP_FUNC(0x02CE7D00, void, Camera_get_sensorSize_Injected, (Camera * __this, Vector2 ret, MethodInfo * method)); -DO_APP_FUNC(0x02CE7D60, void, Camera_set_sensorSize_Injected, (Camera * __this, Vector2 value, MethodInfo * method)); -DO_APP_FUNC(0x02CE7DC0, void, Camera_get_lensShift_Injected, (Camera * __this, Vector2 ret, MethodInfo * method)); -DO_APP_FUNC(0x02CE7E20, void, Camera_set_lensShift_Injected, (Camera * __this, Vector2 value, MethodInfo * method)); -DO_APP_FUNC(0x02CE7E80, void, Camera_get_rect_Injected, (Camera * __this, Rect ret, MethodInfo * method)); -DO_APP_FUNC(0x02CE7EE0, void, Camera_set_rect_Injected, (Camera * __this, Rect value, MethodInfo * method)); -DO_APP_FUNC(0x02CE7F40, void, Camera_get_pixelRect_Injected, (Camera * __this, Rect ret, MethodInfo * method)); -DO_APP_FUNC(0x02CE7FA0, void, Camera_get_cameraToWorldMatrix_Injected, (Camera * __this, Matrix4x4 ret, MethodInfo * method)); -DO_APP_FUNC(0x02CE8000, void, Camera_get_worldToCameraMatrix_Injected, (Camera * __this, Matrix4x4 ret, MethodInfo * method)); -DO_APP_FUNC(0x02CE8060, void, Camera_get_projectionMatrix_Injected, (Camera * __this, Matrix4x4 ret, MethodInfo * method)); -DO_APP_FUNC(0x02CE80C0, void, Camera_set_projectionMatrix_Injected, (Camera * __this, Matrix4x4 value, MethodInfo * method)); -DO_APP_FUNC(0x02CE8120, void, Camera_set_nonJitteredProjectionMatrix_Injected, (Camera * __this, Matrix4x4 value, MethodInfo * method)); -DO_APP_FUNC(0x02CE8180, void, Camera_WorldToScreenPoint_Injected, (Camera * __this, Vector3 position, Camera_MonoOrStereoscopicEye__Enum eye, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02CE8200, void, Camera_WorldToViewportPoint_Injected, (Camera * __this, Vector3 position, Camera_MonoOrStereoscopicEye__Enum eye, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02CE8280, void, Camera_ViewportToWorldPoint_Injected, (Camera * __this, Vector3 position, Camera_MonoOrStereoscopicEye__Enum eye, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02CE8300, void, Camera_ScreenToWorldPoint_Injected, (Camera * __this, Vector3 position, Camera_MonoOrStereoscopicEye__Enum eye, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02CE8380, void, Camera_ScreenToViewportPoint_Injected, (Camera * __this, Vector3 position, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02CE83F0, void, Camera_ViewportToScreenPoint_Injected, (Camera * __this, Vector3 position, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02CE8460, void, Camera_ScreenPointToRay_Injected, (Camera * __this, Vector2 pos, Camera_MonoOrStereoscopicEye__Enum eye, Ray ret, MethodInfo * method)); -DO_APP_FUNC(0x02CE84E0, void, Camera_GetStereoNonJitteredProjectionMatrix_Injected, (Camera * __this, Camera_StereoscopicEye__Enum eye, Matrix4x4 ret, MethodInfo * method)); -DO_APP_FUNC(0x02CE8550, void, Camera_GetStereoViewMatrix_Injected, (Camera * __this, Camera_StereoscopicEye__Enum eye, Matrix4x4 ret, MethodInfo * method)); -DO_APP_FUNC(0x02CE85C0, void, Camera_GetStereoProjectionMatrix_Injected, (Camera * __this, Camera_StereoscopicEye__Enum eye, Matrix4x4 ret, MethodInfo * method)); -DO_APP_FUNC(0x02CE8630, void, Camera_SetStereoProjectionMatrix_Injected, (Camera * __this, Camera_StereoscopicEye__Enum eye, Matrix4x4 matrix, MethodInfo * method)); +DO_APP_FUNC(0x02CE7D00, void, Camera_get_sensorSize_Injected, (Camera * __this, Vector2 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02CE7D60, void, Camera_set_sensorSize_Injected, (Camera * __this, Vector2 * value, MethodInfo * method)); +DO_APP_FUNC(0x02CE7DC0, void, Camera_get_lensShift_Injected, (Camera * __this, Vector2 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02CE7E20, void, Camera_set_lensShift_Injected, (Camera * __this, Vector2 * value, MethodInfo * method)); +DO_APP_FUNC(0x02CE7E80, void, Camera_get_rect_Injected, (Camera * __this, Rect * ret, MethodInfo * method)); +DO_APP_FUNC(0x02CE7EE0, void, Camera_set_rect_Injected, (Camera * __this, Rect * value, MethodInfo * method)); +DO_APP_FUNC(0x02CE7F40, void, Camera_get_pixelRect_Injected, (Camera * __this, Rect * ret, MethodInfo * method)); +DO_APP_FUNC(0x02CE7FA0, void, Camera_get_cameraToWorldMatrix_Injected, (Camera * __this, Matrix4x4 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02CE8000, void, Camera_get_worldToCameraMatrix_Injected, (Camera * __this, Matrix4x4 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02CE8060, void, Camera_get_projectionMatrix_Injected, (Camera * __this, Matrix4x4 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02CE80C0, void, Camera_set_projectionMatrix_Injected, (Camera * __this, Matrix4x4 * value, MethodInfo * method)); +DO_APP_FUNC(0x02CE8120, void, Camera_set_nonJitteredProjectionMatrix_Injected, (Camera * __this, Matrix4x4 * value, MethodInfo * method)); +DO_APP_FUNC(0x02CE8180, void, Camera_WorldToScreenPoint_Injected, (Camera * __this, Vector3 * position, Camera_MonoOrStereoscopicEye__Enum eye, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02CE8200, void, Camera_WorldToViewportPoint_Injected, (Camera * __this, Vector3 * position, Camera_MonoOrStereoscopicEye__Enum eye, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02CE8280, void, Camera_ViewportToWorldPoint_Injected, (Camera * __this, Vector3 * position, Camera_MonoOrStereoscopicEye__Enum eye, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02CE8300, void, Camera_ScreenToWorldPoint_Injected, (Camera * __this, Vector3 * position, Camera_MonoOrStereoscopicEye__Enum eye, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02CE8380, void, Camera_ScreenToViewportPoint_Injected, (Camera * __this, Vector3 * position, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02CE83F0, void, Camera_ViewportToScreenPoint_Injected, (Camera * __this, Vector3 * position, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02CE8460, void, Camera_ScreenPointToRay_Injected, (Camera * __this, Vector2 * pos, Camera_MonoOrStereoscopicEye__Enum eye, Ray * ret, MethodInfo * method)); +DO_APP_FUNC(0x02CE84E0, void, Camera_GetStereoNonJitteredProjectionMatrix_Injected, (Camera * __this, Camera_StereoscopicEye__Enum eye, Matrix4x4 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02CE8550, void, Camera_GetStereoViewMatrix_Injected, (Camera * __this, Camera_StereoscopicEye__Enum eye, Matrix4x4 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02CE85C0, void, Camera_GetStereoProjectionMatrix_Injected, (Camera * __this, Camera_StereoscopicEye__Enum eye, Matrix4x4 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02CE8630, void, Camera_SetStereoProjectionMatrix_Injected, (Camera * __this, Camera_StereoscopicEye__Enum eye, Matrix4x4 * matrix, MethodInfo * method)); DO_APP_FUNC(0x003EE8E0, void, Camera_CameraCallback__ctor, (Camera_CameraCallback * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EE650, void, Camera_CameraCallback_Invoke, (Camera_CameraCallback * __this, Camera * cam, MethodInfo * method)); -DO_APP_FUNC(0x02CCABC0, void, BoundingSphere__ctor, (BoundingSphere__Boxed * __this, Vector3 pos, float rad, MethodInfo * method)); +DO_APP_FUNC(0x02CCABC0, void, BoundingSphere__ctor, (BoundingSphere * __this, Vector3 pos, float rad, MethodInfo * method)); DO_APP_FUNC(0x02CE86A0, void, CullingGroup__ctor, (CullingGroup * __this, MethodInfo * method)); DO_APP_FUNC(0x02CE8750, void, CullingGroup_Finalize, (CullingGroup * __this, MethodInfo * method)); DO_APP_FUNC(0x02CE8810, void, CullingGroup_DisposeInternal, (CullingGroup * __this, MethodInfo * method)); @@ -72105,6 +82640,7 @@ DO_APP_FUNC(0x02CE8FE0, void, DebugLogHandler_Internal_Log, (LogType__Enum level DO_APP_FUNC(0x02CE9060, void, DebugLogHandler_Internal_LogException, (Exception * ex, Object_1 * obj, MethodInfo * method)); DO_APP_FUNC(0x02CE90C0, void, DebugLogHandler_LogFormat, (DebugLogHandler * __this, LogType__Enum logType, Object_1 * context, String * format, Object__Array * args, MethodInfo * method)); DO_APP_FUNC(0x02CE91F0, void, DebugLogHandler_LogException, (DebugLogHandler * __this, Exception * exception, Object_1 * context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D041D0, DebugLogHandler_LogException__MethodInfo); DO_APP_FUNC(0x003AE050, void, DebugLogHandler__ctor, (DebugLogHandler * __this, MethodInfo * method)); DO_APP_FUNC(0x02CE92B0, ILogger *, Debug_2_get_unityLogger, (MethodInfo * method)); DO_APP_FUNC(0x02CE9310, void, Debug_2_DrawLine, (Vector3 start, Vector3 end, Color color, float duration, MethodInfo * method)); @@ -72135,148 +82671,149 @@ DO_APP_FUNC(0x02CEA860, bool, Debug_2_get_isDebugBuild, (MethodInfo * method)); DO_APP_FUNC(0x02CEA8B0, bool, Debug_2_CallOverridenDebugHandler, (Exception * exception, Object_1 * obj, MethodInfo * method)); DO_APP_FUNC(0x02CEAB10, bool, Debug_2_IsLoggingEnabled, (MethodInfo * method)); DO_APP_FUNC(0x02CEAC60, void, Debug_2__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02CEAE20, void, Debug_2_DrawLine_Injected, (Vector3 start, Vector3 end, Color color, float duration, bool depthTest, MethodInfo * method)); -DO_APP_FUNC(0x02CEAEB0, void, Bounds__ctor, (Bounds__Boxed * __this, Vector3 center, Vector3 size, MethodInfo * method)); -DO_APP_FUNC(0x02CEAF00, int32_t, Bounds_GetHashCode, (Bounds__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CEAFD0, bool, Bounds_Equals, (Bounds__Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x02CEB0E0, bool, Bounds_Equals_1, (Bounds__Boxed * __this, Bounds other, MethodInfo * method)); -DO_APP_FUNC(0x02CB9C50, Vector3, Bounds_get_center, (Bounds__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C7A120, void, Bounds_set_center, (Bounds__Boxed * __this, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x02CEB170, Vector3, Bounds_get_size, (Bounds__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CEB1B0, void, Bounds_set_size, (Bounds__Boxed * __this, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x02CEB1F0, Vector3, Bounds_get_extents, (Bounds__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C7A130, void, Bounds_set_extents, (Bounds__Boxed * __this, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x02CEB210, Vector3, Bounds_get_min, (Bounds__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CEB260, void, Bounds_set_min, (Bounds__Boxed * __this, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x02CEB2F0, Vector3, Bounds_get_max, (Bounds__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CEB340, void, Bounds_set_max, (Bounds__Boxed * __this, Vector3 value, MethodInfo * method)); +DO_APP_FUNC(0x02CEAE20, void, Debug_2_DrawLine_Injected, (Vector3 * start, Vector3 * end, Color * color, float duration, bool depthTest, MethodInfo * method)); +DO_APP_FUNC(0x02CEAEB0, void, Bounds__ctor, (Bounds * __this, Vector3 center, Vector3 size, MethodInfo * method)); +DO_APP_FUNC(0x02CEAF00, int32_t, Bounds_GetHashCode, (Bounds * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CEAFD0, bool, Bounds_Equals, (Bounds * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x02CEB0E0, bool, Bounds_Equals_1, (Bounds * __this, Bounds other, MethodInfo * method)); +DO_APP_FUNC(0x02CB9C50, Vector3, Bounds_get_center, (Bounds * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C7A120, void, Bounds_set_center, (Bounds * __this, Vector3 value, MethodInfo * method)); +DO_APP_FUNC(0x02CEB170, Vector3, Bounds_get_size, (Bounds * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CEB1B0, void, Bounds_set_size, (Bounds * __this, Vector3 value, MethodInfo * method)); +DO_APP_FUNC(0x02CEB1F0, Vector3, Bounds_get_extents, (Bounds * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C7A130, void, Bounds_set_extents, (Bounds * __this, Vector3 value, MethodInfo * method)); +DO_APP_FUNC(0x02CEB210, Vector3, Bounds_get_min, (Bounds * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CEB260, void, Bounds_set_min, (Bounds * __this, Vector3 value, MethodInfo * method)); +DO_APP_FUNC(0x02CEB2F0, Vector3, Bounds_get_max, (Bounds * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CEB340, void, Bounds_set_max, (Bounds * __this, Vector3 value, MethodInfo * method)); DO_APP_FUNC(0x02CEB3E0, bool, Bounds_op_Equality, (Bounds lhs, Bounds rhs, MethodInfo * method)); DO_APP_FUNC(0x02CEB480, bool, Bounds_op_Inequality, (Bounds lhs, Bounds rhs, MethodInfo * method)); -DO_APP_FUNC(0x02CEB540, void, Bounds_SetMinMax, (Bounds__Boxed * __this, Vector3 min, Vector3 max, MethodInfo * method)); -DO_APP_FUNC(0x02CEB5C0, void, Bounds_Encapsulate, (Bounds__Boxed * __this, Vector3 point, MethodInfo * method)); -DO_APP_FUNC(0x02CEB6B0, void, Bounds_Encapsulate_1, (Bounds__Boxed * __this, Bounds bounds, MethodInfo * method)); -DO_APP_FUNC(0x02CEB780, void, Bounds_Expand, (Bounds__Boxed * __this, float amount, MethodInfo * method)); -DO_APP_FUNC(0x02CEB7C0, void, Bounds_Expand_1, (Bounds__Boxed * __this, Vector3 amount, MethodInfo * method)); -DO_APP_FUNC(0x02CEB820, bool, Bounds_Intersects, (Bounds__Boxed * __this, Bounds bounds, MethodInfo * method)); -DO_APP_FUNC(0x02CEB8E0, bool, Bounds_IntersectRay, (Bounds__Boxed * __this, Ray ray, float distance, MethodInfo * method)); -DO_APP_FUNC(0x02CEB960, String *, Bounds_ToString, (Bounds__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CEB970, String *, Bounds_ToString_1, (Bounds__Boxed * __this, String * format, IFormatProvider * formatProvider, MethodInfo * method)); -DO_APP_FUNC(0x02CEBB30, bool, Bounds_Contains, (Bounds__Boxed * __this, Vector3 point, MethodInfo * method)); -DO_APP_FUNC(0x02CEBB90, bool, Bounds_IntersectRayAABB, (Ray ray, Bounds bounds, float dist, MethodInfo * method)); -DO_APP_FUNC(0x02CEBC00, bool, Bounds_Contains_Injected, (Bounds _unity_self, Vector3 point, MethodInfo * method)); -DO_APP_FUNC(0x02CEBC60, bool, Bounds_IntersectRayAABB_Injected, (Ray ray, Bounds bounds, float dist, MethodInfo * method)); -DO_APP_FUNC(0x02B78450, int32_t, BoundsInt_get_x, (BoundsInt__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C4B40, int32_t, BoundsInt_get_y, (BoundsInt__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01809D80, int32_t, BoundsInt_get_z, (BoundsInt__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CEBCD0, Vector3, BoundsInt_get_center, (BoundsInt__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CEBD40, void, BoundsInt_set_min, (BoundsInt__Boxed * __this, Vector3Int value, MethodInfo * method)); -DO_APP_FUNC(0x02CEBDA0, void, BoundsInt_set_max, (BoundsInt__Boxed * __this, Vector3Int value, MethodInfo * method)); -DO_APP_FUNC(0x02CEBDC0, int32_t, BoundsInt_get_xMin, (BoundsInt__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CEBE30, void, BoundsInt_set_xMin, (BoundsInt__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x02CEBE60, int32_t, BoundsInt_get_yMin, (BoundsInt__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CEBED0, void, BoundsInt_set_yMin, (BoundsInt__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x02CEBF00, int32_t, BoundsInt_get_zMin, (BoundsInt__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CEBF70, void, BoundsInt_set_zMin, (BoundsInt__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x02CEBFA0, int32_t, BoundsInt_get_xMax, (BoundsInt__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CEC010, void, BoundsInt_set_xMax, (BoundsInt__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x02CEC020, int32_t, BoundsInt_get_yMax, (BoundsInt__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CEC090, void, BoundsInt_set_yMax, (BoundsInt__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x02CEC0A0, int32_t, BoundsInt_get_zMax, (BoundsInt__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CEC110, void, BoundsInt_set_zMax, (BoundsInt__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x02CEB1F0, Vector3Int, BoundsInt_get_size, (BoundsInt__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02C31EE0, void, BoundsInt__ctor, (BoundsInt__Boxed * __this, Vector3Int position, Vector3Int size, MethodInfo * method)); -DO_APP_FUNC(0x02CEC120, void, BoundsInt_SetMinMax, (BoundsInt__Boxed * __this, Vector3Int minPosition, Vector3Int maxPosition, MethodInfo * method)); -DO_APP_FUNC(0x02CEC1C0, String *, BoundsInt_ToString, (BoundsInt__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CEC1D0, String *, BoundsInt_ToString_1, (BoundsInt__Boxed * __this, String * format, IFormatProvider * formatProvider, MethodInfo * method)); -DO_APP_FUNC(0x02CEC360, bool, BoundsInt_Equals, (BoundsInt__Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x02CEC400, bool, BoundsInt_Equals_1, (BoundsInt__Boxed * __this, BoundsInt other, MethodInfo * method)); -DO_APP_FUNC(0x02CEC4A0, int32_t, BoundsInt_GetHashCode, (BoundsInt__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CEB540, void, Bounds_SetMinMax, (Bounds * __this, Vector3 min, Vector3 max, MethodInfo * method)); +DO_APP_FUNC(0x02CEB5C0, void, Bounds_Encapsulate, (Bounds * __this, Vector3 point, MethodInfo * method)); +DO_APP_FUNC(0x02CEB6B0, void, Bounds_Encapsulate_1, (Bounds * __this, Bounds bounds, MethodInfo * method)); +DO_APP_FUNC(0x02CEB780, void, Bounds_Expand, (Bounds * __this, float amount, MethodInfo * method)); +DO_APP_FUNC(0x02CEB7C0, void, Bounds_Expand_1, (Bounds * __this, Vector3 amount, MethodInfo * method)); +DO_APP_FUNC(0x02CEB820, bool, Bounds_Intersects, (Bounds * __this, Bounds bounds, MethodInfo * method)); +DO_APP_FUNC(0x02CEB8E0, bool, Bounds_IntersectRay, (Bounds * __this, Ray ray, float * distance, MethodInfo * method)); +DO_APP_FUNC(0x02CEB960, String *, Bounds_ToString, (Bounds * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CEB970, String *, Bounds_ToString_1, (Bounds * __this, String * format, IFormatProvider * formatProvider, MethodInfo * method)); +DO_APP_FUNC(0x02CEBB30, bool, Bounds_Contains, (Bounds * __this, Vector3 point, MethodInfo * method)); +DO_APP_FUNC(0x02CEBB90, bool, Bounds_IntersectRayAABB, (Ray ray, Bounds bounds, float * dist, MethodInfo * method)); +DO_APP_FUNC(0x02CEBC00, bool, Bounds_Contains_Injected, (Bounds * _unity_self, Vector3 * point, MethodInfo * method)); +DO_APP_FUNC(0x02CEBC60, bool, Bounds_IntersectRayAABB_Injected, (Ray * ray, Bounds * bounds, float * dist, MethodInfo * method)); +DO_APP_FUNC(0x02B78450, int32_t, BoundsInt_get_x, (BoundsInt * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C4B40, int32_t, BoundsInt_get_y, (BoundsInt * __this, MethodInfo * method)); +DO_APP_FUNC(0x01809D80, int32_t, BoundsInt_get_z, (BoundsInt * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CEBCD0, Vector3, BoundsInt_get_center, (BoundsInt * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CEBD40, void, BoundsInt_set_min, (BoundsInt * __this, Vector3Int value, MethodInfo * method)); +DO_APP_FUNC(0x02CEBDA0, void, BoundsInt_set_max, (BoundsInt * __this, Vector3Int value, MethodInfo * method)); +DO_APP_FUNC(0x02CEBDC0, int32_t, BoundsInt_get_xMin, (BoundsInt * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CEBE30, void, BoundsInt_set_xMin, (BoundsInt * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x02CEBE60, int32_t, BoundsInt_get_yMin, (BoundsInt * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CEBED0, void, BoundsInt_set_yMin, (BoundsInt * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x02CEBF00, int32_t, BoundsInt_get_zMin, (BoundsInt * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CEBF70, void, BoundsInt_set_zMin, (BoundsInt * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x02CEBFA0, int32_t, BoundsInt_get_xMax, (BoundsInt * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CEC010, void, BoundsInt_set_xMax, (BoundsInt * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x02CEC020, int32_t, BoundsInt_get_yMax, (BoundsInt * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CEC090, void, BoundsInt_set_yMax, (BoundsInt * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x02CEC0A0, int32_t, BoundsInt_get_zMax, (BoundsInt * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CEC110, void, BoundsInt_set_zMax, (BoundsInt * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x02CEB1F0, Vector3Int, BoundsInt_get_size, (BoundsInt * __this, MethodInfo * method)); +DO_APP_FUNC(0x02C31EE0, void, BoundsInt__ctor, (BoundsInt * __this, Vector3Int position, Vector3Int size, MethodInfo * method)); +DO_APP_FUNC(0x02CEC120, void, BoundsInt_SetMinMax, (BoundsInt * __this, Vector3Int minPosition, Vector3Int maxPosition, MethodInfo * method)); +DO_APP_FUNC(0x02CEC1C0, String *, BoundsInt_ToString, (BoundsInt * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CEC1D0, String *, BoundsInt_ToString_1, (BoundsInt * __this, String * format, IFormatProvider * formatProvider, MethodInfo * method)); +DO_APP_FUNC(0x02CEC360, bool, BoundsInt_Equals, (BoundsInt * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x02CEC400, bool, BoundsInt_Equals_1, (BoundsInt * __this, BoundsInt other, MethodInfo * method)); +DO_APP_FUNC(0x02CEC4A0, int32_t, BoundsInt_GetHashCode, (BoundsInt * __this, MethodInfo * method)); DO_APP_FUNC(0x02CEC500, Plane__Array *, GeometryUtility_CalculateFrustumPlanes, (Camera * camera, MethodInfo * method)); DO_APP_FUNC(0x02CEC560, void, GeometryUtility_CalculateFrustumPlanes_1, (Camera * camera, Plane__Array * planes, MethodInfo * method)); DO_APP_FUNC(0x02CEC7E0, void, GeometryUtility_CalculateFrustumPlanes_2, (Matrix4x4 worldToProjectionMatrix, Plane__Array * planes, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04190, GeometryUtility_CalculateFrustumPlanes_2__MethodInfo); DO_APP_FUNC(0x02CEC930, bool, GeometryUtility_TestPlanesAABB, (Plane__Array * planes, Bounds bounds, MethodInfo * method)); DO_APP_FUNC(0x02CEC990, void, GeometryUtility_Internal_ExtractPlanes, (Plane__Array * planes, Matrix4x4 worldToProjectionMatrix, MethodInfo * method)); -DO_APP_FUNC(0x02CEC9F0, bool, GeometryUtility_TestPlanesAABB_Injected, (Plane__Array * planes, Bounds bounds, MethodInfo * method)); -DO_APP_FUNC(0x02CECA50, void, GeometryUtility_Internal_ExtractPlanes_Injected, (Plane__Array * planes, Matrix4x4 worldToProjectionMatrix, MethodInfo * method)); -DO_APP_FUNC(0x02CB9C50, Vector3, Plane_get_normal, (Plane__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CCABB0, float, Plane_get_distance, (Plane__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CECAB0, void, Plane__ctor, (Plane__Boxed * __this, Vector3 inNormal, Vector3 inPoint, MethodInfo * method)); -DO_APP_FUNC(0x02CECBB0, void, Plane__ctor_1, (Plane__Boxed * __this, Vector3 inNormal, float d, MethodInfo * method)); -DO_APP_FUNC(0x02CECC70, void, Plane__ctor_2, (Plane__Boxed * __this, Vector3 a, Vector3 b, Vector3 c, MethodInfo * method)); -DO_APP_FUNC(0x02CECE10, void, Plane_SetNormalAndPosition, (Plane__Boxed * __this, Vector3 inNormal, Vector3 inPoint, MethodInfo * method)); -DO_APP_FUNC(0x02CECF00, float, Plane_GetDistanceToPoint, (Plane__Boxed * __this, Vector3 point, MethodInfo * method)); -DO_APP_FUNC(0x02CECF50, bool, Plane_Raycast, (Plane__Boxed * __this, Ray ray, float enter, MethodInfo * method)); -DO_APP_FUNC(0x02CED080, String *, Plane_ToString, (Plane__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CED090, String *, Plane_ToString_1, (Plane__Boxed * __this, String * format, IFormatProvider * formatProvider, MethodInfo * method)); -DO_APP_FUNC(0x02CED250, void, Ray__ctor, (Ray__Boxed * __this, Vector3 origin, Vector3 direction, MethodInfo * method)); -DO_APP_FUNC(0x02CB9C50, Vector3, Ray_get_origin, (Ray__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C7A120, void, Ray_set_origin, (Ray__Boxed * __this, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x02CEB1F0, Vector3, Ray_get_direction, (Ray__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CED290, void, Ray_set_direction, (Ray__Boxed * __this, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x02CED2C0, Vector3, Ray_GetPoint, (Ray__Boxed * __this, float distance, MethodInfo * method)); -DO_APP_FUNC(0x02CED320, String *, Ray_ToString, (Ray__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CED330, String *, Ray_ToString_1, (Ray__Boxed * __this, String * format, IFormatProvider * formatProvider, MethodInfo * method)); -DO_APP_FUNC(0x003CAFE0, void, Rect__ctor, (Rect__Boxed * __this, float x, float y, float width, float height, MethodInfo * method)); -DO_APP_FUNC(0x02CED4F0, void, Rect__ctor_1, (Rect__Boxed * __this, Vector2 position, Vector2 size, MethodInfo * method)); -DO_APP_FUNC(0x02BD9C10, void, Rect__ctor_2, (Rect__Boxed * __this, Rect source, MethodInfo * method)); +DO_APP_FUNC(0x02CEC9F0, bool, GeometryUtility_TestPlanesAABB_Injected, (Plane__Array * planes, Bounds * bounds, MethodInfo * method)); +DO_APP_FUNC(0x02CECA50, void, GeometryUtility_Internal_ExtractPlanes_Injected, (Plane__Array * planes, Matrix4x4 * worldToProjectionMatrix, MethodInfo * method)); +DO_APP_FUNC(0x02CB9C50, Vector3, Plane_get_normal, (Plane * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CCABB0, float, Plane_get_distance, (Plane * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CECAB0, void, Plane__ctor, (Plane * __this, Vector3 inNormal, Vector3 inPoint, MethodInfo * method)); +DO_APP_FUNC(0x02CECBB0, void, Plane__ctor_1, (Plane * __this, Vector3 inNormal, float d, MethodInfo * method)); +DO_APP_FUNC(0x02CECC70, void, Plane__ctor_2, (Plane * __this, Vector3 a, Vector3 b, Vector3 c, MethodInfo * method)); +DO_APP_FUNC(0x02CECE10, void, Plane_SetNormalAndPosition, (Plane * __this, Vector3 inNormal, Vector3 inPoint, MethodInfo * method)); +DO_APP_FUNC(0x02CECF00, float, Plane_GetDistanceToPoint, (Plane * __this, Vector3 point, MethodInfo * method)); +DO_APP_FUNC(0x02CECF50, bool, Plane_Raycast, (Plane * __this, Ray ray, float * enter, MethodInfo * method)); +DO_APP_FUNC(0x02CED080, String *, Plane_ToString, (Plane * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CED090, String *, Plane_ToString_1, (Plane * __this, String * format, IFormatProvider * formatProvider, MethodInfo * method)); +DO_APP_FUNC(0x02CED250, void, Ray__ctor, (Ray * __this, Vector3 origin, Vector3 direction, MethodInfo * method)); +DO_APP_FUNC(0x02CB9C50, Vector3, Ray_get_origin, (Ray * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C7A120, void, Ray_set_origin, (Ray * __this, Vector3 value, MethodInfo * method)); +DO_APP_FUNC(0x02CEB1F0, Vector3, Ray_get_direction, (Ray * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CED290, void, Ray_set_direction, (Ray * __this, Vector3 value, MethodInfo * method)); +DO_APP_FUNC(0x02CED2C0, Vector3, Ray_GetPoint, (Ray * __this, float distance, MethodInfo * method)); +DO_APP_FUNC(0x02CED320, String *, Ray_ToString, (Ray * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CED330, String *, Ray_ToString_1, (Ray * __this, String * format, IFormatProvider * formatProvider, MethodInfo * method)); +DO_APP_FUNC(0x003CAFE0, void, Rect__ctor, (Rect * __this, float x, float y, float width, float height, MethodInfo * method)); +DO_APP_FUNC(0x02CED4F0, void, Rect__ctor_1, (Rect * __this, Vector2 position, Vector2 size, MethodInfo * method)); +DO_APP_FUNC(0x02BD9C10, void, Rect__ctor_2, (Rect * __this, Rect source, MethodInfo * method)); DO_APP_FUNC(0x02CED530, Rect, Rect_get_zero, (MethodInfo * method)); DO_APP_FUNC(0x02CED540, Rect, Rect_MinMaxRect, (float xmin, float ymin, float xmax, float ymax, MethodInfo * method)); -DO_APP_FUNC(0x003CAFE0, void, Rect_Set, (Rect__Boxed * __this, float x, float y, float width, float height, MethodInfo * method)); -DO_APP_FUNC(0x02CE2130, float, Rect_get_x, (Rect__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C42840, void, Rect_set_x, (Rect__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02CCAAD0, float, Rect_get_y, (Rect__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C7A0F0, void, Rect_set_y, (Rect__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02CED580, Vector2, Rect_get_position, (Rect__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02C89890, void, Rect_set_position, (Rect__Boxed * __this, Vector2 value, MethodInfo * method)); -DO_APP_FUNC(0x02CED5A0, Vector2, Rect_get_center, (Rect__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CED5D0, void, Rect_set_center, (Rect__Boxed * __this, Vector2 value, MethodInfo * method)); -DO_APP_FUNC(0x02CED610, Vector2, Rect_get_min, (Rect__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CED630, void, Rect_set_min, (Rect__Boxed * __this, Vector2 value, MethodInfo * method)); -DO_APP_FUNC(0x02CED670, Vector2, Rect_get_max, (Rect__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CED690, void, Rect_set_max, (Rect__Boxed * __this, Vector2 value, MethodInfo * method)); -DO_APP_FUNC(0x02CE2140, float, Rect_get_width, (Rect__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C43A80, void, Rect_set_width, (Rect__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02CCABB0, float, Rect_get_height, (Rect__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C43AA0, void, Rect_set_height, (Rect__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02CED6C0, Vector2, Rect_get_size, (Rect__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CED6E0, void, Rect_set_size, (Rect__Boxed * __this, Vector2 value, MethodInfo * method)); -DO_APP_FUNC(0x02CE2130, float, Rect_get_xMin, (Rect__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CED700, void, Rect_set_xMin, (Rect__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02CCAAD0, float, Rect_get_yMin, (Rect__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CED720, void, Rect_set_yMin, (Rect__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02CED740, float, Rect_get_xMax, (Rect__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02071C20, void, Rect_set_xMax, (Rect__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02CED750, float, Rect_get_yMax, (Rect__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02071C40, void, Rect_set_yMax, (Rect__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02CED760, bool, Rect_Contains, (Rect__Boxed * __this, Vector2 point, MethodInfo * method)); -DO_APP_FUNC(0x02CED7A0, bool, Rect_Contains_1, (Rect__Boxed * __this, Vector3 point, MethodInfo * method)); +DO_APP_FUNC(0x003CAFE0, void, Rect_Set, (Rect * __this, float x, float y, float width, float height, MethodInfo * method)); +DO_APP_FUNC(0x02CE2130, float, Rect_get_x, (Rect * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C42840, void, Rect_set_x, (Rect * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02CCAAD0, float, Rect_get_y, (Rect * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C7A0F0, void, Rect_set_y, (Rect * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02CED580, Vector2, Rect_get_position, (Rect * __this, MethodInfo * method)); +DO_APP_FUNC(0x02C89890, void, Rect_set_position, (Rect * __this, Vector2 value, MethodInfo * method)); +DO_APP_FUNC(0x02CED5A0, Vector2, Rect_get_center, (Rect * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CED5D0, void, Rect_set_center, (Rect * __this, Vector2 value, MethodInfo * method)); +DO_APP_FUNC(0x02CED610, Vector2, Rect_get_min, (Rect * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CED630, void, Rect_set_min, (Rect * __this, Vector2 value, MethodInfo * method)); +DO_APP_FUNC(0x02CED670, Vector2, Rect_get_max, (Rect * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CED690, void, Rect_set_max, (Rect * __this, Vector2 value, MethodInfo * method)); +DO_APP_FUNC(0x02CE2140, float, Rect_get_width, (Rect * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C43A80, void, Rect_set_width, (Rect * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02CCABB0, float, Rect_get_height, (Rect * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C43AA0, void, Rect_set_height, (Rect * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02CED6C0, Vector2, Rect_get_size, (Rect * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CED6E0, void, Rect_set_size, (Rect * __this, Vector2 value, MethodInfo * method)); +DO_APP_FUNC(0x02CE2130, float, Rect_get_xMin, (Rect * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CED700, void, Rect_set_xMin, (Rect * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02CCAAD0, float, Rect_get_yMin, (Rect * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CED720, void, Rect_set_yMin, (Rect * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02CED740, float, Rect_get_xMax, (Rect * __this, MethodInfo * method)); +DO_APP_FUNC(0x02071C20, void, Rect_set_xMax, (Rect * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02CED750, float, Rect_get_yMax, (Rect * __this, MethodInfo * method)); +DO_APP_FUNC(0x02071C40, void, Rect_set_yMax, (Rect * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02CED760, bool, Rect_Contains, (Rect * __this, Vector2 point, MethodInfo * method)); +DO_APP_FUNC(0x02CED7A0, bool, Rect_Contains_1, (Rect * __this, Vector3 point, MethodInfo * method)); DO_APP_FUNC(0x02CED7E0, Rect, Rect_OrderMinMax, (Rect rect, MethodInfo * method)); -DO_APP_FUNC(0x02CED850, bool, Rect_Overlaps, (Rect__Boxed * __this, Rect other, MethodInfo * method)); -DO_APP_FUNC(0x02CED8A0, bool, Rect_Overlaps_1, (Rect__Boxed * __this, Rect other, bool allowInverse, MethodInfo * method)); +DO_APP_FUNC(0x02CED850, bool, Rect_Overlaps, (Rect * __this, Rect other, MethodInfo * method)); +DO_APP_FUNC(0x02CED8A0, bool, Rect_Overlaps_1, (Rect * __this, Rect other, bool allowInverse, MethodInfo * method)); DO_APP_FUNC(0x02CEDA10, bool, Rect_op_Inequality, (Rect lhs, Rect rhs, MethodInfo * method)); DO_APP_FUNC(0x02CEDA60, bool, Rect_op_Equality, (Rect lhs, Rect rhs, MethodInfo * method)); -DO_APP_FUNC(0x02CEDAA0, int32_t, Rect_GetHashCode, (Rect__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CEDC40, bool, Rect_Equals, (Rect__Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x02CEDCE0, bool, Rect_Equals_1, (Rect__Boxed * __this, Rect other, MethodInfo * method)); -DO_APP_FUNC(0x02CEDDD0, String *, Rect_ToString, (Rect__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CEDDE0, String *, Rect_ToString_1, (Rect__Boxed * __this, String * format, IFormatProvider * formatProvider, MethodInfo * method)); -DO_APP_FUNC(0x02B78450, int32_t, RectInt_get_x, (RectInt__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00959BA0, void, RectInt_set_x, (RectInt__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x010C4B40, int32_t, RectInt_get_y, (RectInt__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018C6CA0, void, RectInt_set_y, (RectInt__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x01809D80, int32_t, RectInt_get_width, (RectInt__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018C6CC0, void, RectInt_set_width, (RectInt__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x01810C10, int32_t, RectInt_get_height, (RectInt__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B16CA0, void, RectInt_set_height, (RectInt__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x02CEE170, int32_t, RectInt_get_xMin, (RectInt__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CEE1E0, int32_t, RectInt_get_yMin, (RectInt__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CEE250, int32_t, RectInt_get_xMax, (RectInt__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CEE2C0, int32_t, RectInt_get_yMax, (RectInt__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01ECBC60, void, RectInt__ctor, (RectInt__Boxed * __this, int32_t xMin, int32_t yMin, int32_t width, int32_t height, MethodInfo * method)); -DO_APP_FUNC(0x02CEE330, bool, RectInt_Overlaps, (RectInt__Boxed * __this, RectInt other, MethodInfo * method)); -DO_APP_FUNC(0x02CEE3E0, String *, RectInt_ToString, (RectInt__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CEE3F0, String *, RectInt_ToString_1, (RectInt__Boxed * __this, String * format, IFormatProvider * formatProvider, MethodInfo * method)); -DO_APP_FUNC(0x02CEE870, bool, RectInt_Equals, (RectInt__Boxed * __this, RectInt other, MethodInfo * method)); +DO_APP_FUNC(0x02CEDAA0, int32_t, Rect_GetHashCode, (Rect * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CEDC40, bool, Rect_Equals, (Rect * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x02CEDCE0, bool, Rect_Equals_1, (Rect * __this, Rect other, MethodInfo * method)); +DO_APP_FUNC(0x02CEDDD0, String *, Rect_ToString, (Rect * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CEDDE0, String *, Rect_ToString_1, (Rect * __this, String * format, IFormatProvider * formatProvider, MethodInfo * method)); +DO_APP_FUNC(0x02B78450, int32_t, RectInt_get_x, (RectInt * __this, MethodInfo * method)); +DO_APP_FUNC(0x00959BA0, void, RectInt_set_x, (RectInt * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x010C4B40, int32_t, RectInt_get_y, (RectInt * __this, MethodInfo * method)); +DO_APP_FUNC(0x018C6CA0, void, RectInt_set_y, (RectInt * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x01809D80, int32_t, RectInt_get_width, (RectInt * __this, MethodInfo * method)); +DO_APP_FUNC(0x018C6CC0, void, RectInt_set_width, (RectInt * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x01810C10, int32_t, RectInt_get_height, (RectInt * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B16CA0, void, RectInt_set_height, (RectInt * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x02CEE170, int32_t, RectInt_get_xMin, (RectInt * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CEE1E0, int32_t, RectInt_get_yMin, (RectInt * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CEE250, int32_t, RectInt_get_xMax, (RectInt * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CEE2C0, int32_t, RectInt_get_yMax, (RectInt * __this, MethodInfo * method)); +DO_APP_FUNC(0x01ECBC60, void, RectInt__ctor, (RectInt * __this, int32_t xMin, int32_t yMin, int32_t width, int32_t height, MethodInfo * method)); +DO_APP_FUNC(0x02CEE330, bool, RectInt_Overlaps, (RectInt * __this, RectInt other, MethodInfo * method)); +DO_APP_FUNC(0x02CEE3E0, String *, RectInt_ToString, (RectInt * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CEE3F0, String *, RectInt_ToString_1, (RectInt * __this, String * format, IFormatProvider * formatProvider, MethodInfo * method)); +DO_APP_FUNC(0x02CEE870, bool, RectInt_Equals, (RectInt * __this, RectInt other, MethodInfo * method)); DO_APP_FUNC(0x02CEE8A0, void, RectOffset__ctor, (RectOffset * __this, MethodInfo * method)); DO_APP_FUNC(0x02CEE8F0, void, RectOffset__ctor_1, (RectOffset * __this, Object * sourceStyle, void * source, MethodInfo * method)); DO_APP_FUNC(0x02CEE950, void, RectOffset_Finalize, (RectOffset * __this, MethodInfo * method)); @@ -72297,7 +82834,7 @@ DO_APP_FUNC(0x02CEF520, void, RectOffset_set_bottom, (RectOffset * __this, int32 DO_APP_FUNC(0x02CEF580, int32_t, RectOffset_get_horizontal, (RectOffset * __this, MethodInfo * method)); DO_APP_FUNC(0x02CEF5D0, int32_t, RectOffset_get_vertical, (RectOffset * __this, MethodInfo * method)); DO_APP_FUNC(0x02CEF620, Rect, RectOffset_Remove, (RectOffset * __this, Rect rect, MethodInfo * method)); -DO_APP_FUNC(0x02CEF6A0, void, RectOffset_Remove_Injected, (RectOffset * __this, Rect rect, Rect ret, MethodInfo * method)); +DO_APP_FUNC(0x02CEF6A0, void, RectOffset_Remove_Injected, (RectOffset * __this, Rect * rect, Rect * ret, MethodInfo * method)); DO_APP_FUNC(0x02CEF710, void, DynamicGI_UpdateEnvironment, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, LightingSettings_LightingSettingsDontStripMe, (LightingSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x02CEF760, void, Gizmos_DrawLine, (Vector3 from, Vector3 to, MethodInfo * method)); @@ -72318,17 +82855,17 @@ DO_APP_FUNC(0x02CEFE00, void, Gizmos_DrawMesh_2, (Mesh * mesh, MethodInfo * meth DO_APP_FUNC(0x02CEFF50, void, Gizmos_DrawMesh_3, (Mesh * mesh, Vector3 position, Quaternion rotation, Vector3 scale, MethodInfo * method)); DO_APP_FUNC(0x02CEFFF0, void, Gizmos_DrawWireMesh_1, (Mesh * mesh, Vector3 position, Quaternion rotation, Vector3 scale, MethodInfo * method)); DO_APP_FUNC(0x02CF0090, void, Gizmos_DrawIcon_2, (Vector3 center, String * name, MethodInfo * method)); -DO_APP_FUNC(0x02CF0110, void, Gizmos_DrawLine_Injected, (Vector3 from, Vector3 to, MethodInfo * method)); -DO_APP_FUNC(0x02CF0170, void, Gizmos_DrawWireSphere_Injected, (Vector3 center, float radius, MethodInfo * method)); -DO_APP_FUNC(0x02CF01D0, void, Gizmos_DrawSphere_Injected, (Vector3 center, float radius, MethodInfo * method)); -DO_APP_FUNC(0x02CF0230, void, Gizmos_DrawWireCube_Injected, (Vector3 center, Vector3 size, MethodInfo * method)); -DO_APP_FUNC(0x02CF0290, void, Gizmos_DrawCube_Injected, (Vector3 center, Vector3 size, MethodInfo * method)); -DO_APP_FUNC(0x02CF02F0, void, Gizmos_DrawMesh_Injected, (Mesh * mesh, int32_t submeshIndex, Vector3 position, Quaternion rotation, Vector3 scale, MethodInfo * method)); -DO_APP_FUNC(0x02CF0370, void, Gizmos_DrawWireMesh_Injected, (Mesh * mesh, int32_t submeshIndex, Vector3 position, Quaternion rotation, Vector3 scale, MethodInfo * method)); -DO_APP_FUNC(0x02CF03F0, void, Gizmos_DrawIcon_Injected, (Vector3 center, String * name, bool allowScaling, Color tint, MethodInfo * method)); -DO_APP_FUNC(0x02CF0470, void, Gizmos_get_color_Injected, (Color ret, MethodInfo * method)); -DO_APP_FUNC(0x02CF04C0, void, Gizmos_set_color_Injected, (Color value, MethodInfo * method)); -DO_APP_FUNC(0x02CF0510, void, Gizmos_set_matrix_Injected, (Matrix4x4 value, MethodInfo * method)); +DO_APP_FUNC(0x02CF0110, void, Gizmos_DrawLine_Injected, (Vector3 * from, Vector3 * to, MethodInfo * method)); +DO_APP_FUNC(0x02CF0170, void, Gizmos_DrawWireSphere_Injected, (Vector3 * center, float radius, MethodInfo * method)); +DO_APP_FUNC(0x02CF01D0, void, Gizmos_DrawSphere_Injected, (Vector3 * center, float radius, MethodInfo * method)); +DO_APP_FUNC(0x02CF0230, void, Gizmos_DrawWireCube_Injected, (Vector3 * center, Vector3 * size, MethodInfo * method)); +DO_APP_FUNC(0x02CF0290, void, Gizmos_DrawCube_Injected, (Vector3 * center, Vector3 * size, MethodInfo * method)); +DO_APP_FUNC(0x02CF02F0, void, Gizmos_DrawMesh_Injected, (Mesh * mesh, int32_t submeshIndex, Vector3 * position, Quaternion * rotation, Vector3 * scale, MethodInfo * method)); +DO_APP_FUNC(0x02CF0370, void, Gizmos_DrawWireMesh_Injected, (Mesh * mesh, int32_t submeshIndex, Vector3 * position, Quaternion * rotation, Vector3 * scale, MethodInfo * method)); +DO_APP_FUNC(0x02CF03F0, void, Gizmos_DrawIcon_Injected, (Vector3 * center, String * name, bool allowScaling, Color * tint, MethodInfo * method)); +DO_APP_FUNC(0x02CF0470, void, Gizmos_get_color_Injected, (Color * ret, MethodInfo * method)); +DO_APP_FUNC(0x02CF04C0, void, Gizmos_set_color_Injected, (Color * value, MethodInfo * method)); +DO_APP_FUNC(0x02CF0510, void, Gizmos_set_matrix_Injected, (Matrix4x4 * value, MethodInfo * method)); DO_APP_FUNC(0x003BCD50, int32_t, BeforeRenderOrderAttribute_get_order, (BeforeRenderOrderAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, BeforeRenderOrderAttribute_set_order, (BeforeRenderOrderAttribute * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, BeforeRenderOrderAttribute__ctor, (BeforeRenderOrderAttribute * __this, int32_t order, MethodInfo * method)); @@ -72350,10 +82887,10 @@ DO_APP_FUNC(0x02CF1910, Vector3, Display_RelativeMouseAt, (Vector3 inputMouseCoo DO_APP_FUNC(0x02CF1A00, Display *, Display_get_main, (MethodInfo * method)); DO_APP_FUNC(0x02CF1A60, void, Display_RecreateDisplayList, (IntPtr__Array * nativeDisplay, MethodInfo * method)); DO_APP_FUNC(0x02CF1D20, void, Display_FireDisplaysUpdated, (MethodInfo * method)); -DO_APP_FUNC(0x02CF1DB0, void, Display_GetSystemExtImpl, (void * nativeDisplay, int32_t w, int32_t h, MethodInfo * method)); -DO_APP_FUNC(0x02CF1E20, void, Display_GetRenderingExtImpl, (void * nativeDisplay, int32_t w, int32_t h, MethodInfo * method)); -DO_APP_FUNC(0x02CF1E90, void, Display_GetRenderingBuffersImpl, (void * nativeDisplay, RenderBuffer color, RenderBuffer depth, MethodInfo * method)); -DO_APP_FUNC(0x02CF1F00, int32_t, Display_RelativeMouseAtImpl, (int32_t x, int32_t y, int32_t rx, int32_t ry, MethodInfo * method)); +DO_APP_FUNC(0x02CF1DB0, void, Display_GetSystemExtImpl, (void * nativeDisplay, int32_t * w, int32_t * h, MethodInfo * method)); +DO_APP_FUNC(0x02CF1E20, void, Display_GetRenderingExtImpl, (void * nativeDisplay, int32_t * w, int32_t * h, MethodInfo * method)); +DO_APP_FUNC(0x02CF1E90, void, Display_GetRenderingBuffersImpl, (void * nativeDisplay, RenderBuffer * color, RenderBuffer * depth, MethodInfo * method)); +DO_APP_FUNC(0x02CF1F00, int32_t, Display_RelativeMouseAtImpl, (int32_t x, int32_t y, int32_t * rx, int32_t * ry, MethodInfo * method)); DO_APP_FUNC(0x02CF1F80, void, Display__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003F7AE0, void, Display_DisplaysUpdatedDelegate__ctor, (Display_DisplaysUpdatedDelegate * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003CB0B0, void, Display_DisplaysUpdatedDelegate_Invoke, (Display_DisplaysUpdatedDelegate * __this, MethodInfo * method)); @@ -72369,7 +82906,7 @@ DO_APP_FUNC(0x01F063B0, bool, Screen_get_fullScreen, (MethodInfo * method)); DO_APP_FUNC(0x01F06450, FullScreenMode__Enum, Screen_get_fullScreenMode, (MethodInfo * method)); DO_APP_FUNC(0x02CF2410, void, Screen_SetResolution, (int32_t width, int32_t height, FullScreenMode__Enum fullscreenMode, int32_t preferredRefreshRate, MethodInfo * method)); DO_APP_FUNC(0x02CF2490, Resolution__Array *, Screen_get_resolutions, (MethodInfo * method)); -DO_APP_FUNC(0x02CF24E0, void, Screen_get_currentResolution_Injected, (Resolution ret, MethodInfo * method)); +DO_APP_FUNC(0x02CF24E0, void, Screen_get_currentResolution_Injected, (Resolution * ret, MethodInfo * method)); DO_APP_FUNC(0x02CF2530, int32_t, Graphics_Internal_GetMaxDrawMeshInstanceCount, (MethodInfo * method)); DO_APP_FUNC(0x02CF2580, GraphicsTier__Enum, Graphics_get_activeTier, (MethodInfo * method)); DO_APP_FUNC(0x02CF25D0, void, Graphics_set_activeTier, (GraphicsTier__Enum value, MethodInfo * method)); @@ -72379,7 +82916,7 @@ DO_APP_FUNC(0x02CF2730, void, Graphics_CopyTexture_Full, (Texture * src, Texture DO_APP_FUNC(0x02CF2790, void, Graphics_CopyTexture_Slice, (Texture * src, int32_t srcElement, int32_t srcMip, Texture * dst, int32_t dstElement, int32_t dstMip, MethodInfo * method)); DO_APP_FUNC(0x02CF2810, void, Graphics_CopyTexture_Region, (Texture * src, int32_t srcElement, int32_t srcMip, int32_t srcX, int32_t srcY, int32_t srcWidth, int32_t srcHeight, Texture * dst, int32_t dstElement, int32_t dstMip, int32_t dstX, int32_t dstY, MethodInfo * method)); DO_APP_FUNC(0x02CF28A0, void, Graphics_Internal_DrawMeshNow2, (Mesh * mesh, int32_t subsetIndex, Matrix4x4 matrix, MethodInfo * method)); -DO_APP_FUNC(0x02CF2950, void, Graphics_Internal_DrawTexture, (Internal_DrawTextureArguments args, MethodInfo * method)); +DO_APP_FUNC(0x02CF2950, void, Graphics_Internal_DrawTexture, (Internal_DrawTextureArguments * args, MethodInfo * method)); DO_APP_FUNC(0x02CF29A0, void, Graphics_Internal_DrawMesh, (Mesh * mesh, int32_t submeshIndex, Matrix4x4 matrix, Material * material, int32_t layer, Camera * camera, MaterialPropertyBlock * properties, ShadowCastingMode__Enum castShadows, bool receiveShadows, Transform * probeAnchor, LightProbeUsage__Enum lightProbeUsage, LightProbeProxyVolume * lightProbeProxyVolume, MethodInfo * method)); DO_APP_FUNC(0x02CF2AC0, void, Graphics_Internal_DrawMeshInstanced, (Mesh * mesh, int32_t submeshIndex, Material * material, Matrix4x4__Array * matrices, int32_t count, MaterialPropertyBlock * properties, ShadowCastingMode__Enum castShadows, bool receiveShadows, int32_t layer, Camera * camera, LightProbeUsage__Enum lightProbeUsage, LightProbeProxyVolume * lightProbeProxyVolume, MethodInfo * method)); DO_APP_FUNC(0x02CF2B60, void, Graphics_Internal_BlitMaterial5, (Texture * source, RenderTexture * dest, Material * mat, int32_t pass, bool setRT, MethodInfo * method)); @@ -72392,9 +82929,12 @@ DO_APP_FUNC(0x02CF30C0, void, Graphics_CopyTexture, (Texture * src, Texture * ds DO_APP_FUNC(0x02CF3160, void, Graphics_CopyTexture_1, (Texture * src, int32_t srcElement, int32_t srcMip, Texture * dst, int32_t dstElement, int32_t dstMip, MethodInfo * method)); DO_APP_FUNC(0x02CF3220, void, Graphics_CopyTexture_2, (Texture * src, int32_t srcElement, int32_t srcMip, int32_t srcX, int32_t srcY, int32_t srcWidth, int32_t srcHeight, Texture * dst, int32_t dstElement, int32_t dstMip, int32_t dstX, int32_t dstY, MethodInfo * method)); DO_APP_FUNC(0x02CF32E0, void, Graphics_DrawMeshNow, (Mesh * mesh, Matrix4x4 matrix, int32_t materialIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D040C0, Graphics_DrawMeshNow__MethodInfo); DO_APP_FUNC(0x02CF3510, void, Graphics_DrawMeshNow_1, (Mesh * mesh, Matrix4x4 matrix, MethodInfo * method)); DO_APP_FUNC(0x02CF35A0, void, Graphics_DrawMesh, (Mesh * mesh, Matrix4x4 matrix, Material * material, int32_t layer, Camera * camera, int32_t submeshIndex, MaterialPropertyBlock * properties, ShadowCastingMode__Enum castShadows, bool receiveShadows, Transform * probeAnchor, LightProbeUsage__Enum lightProbeUsage, LightProbeProxyVolume * lightProbeProxyVolume, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D040A8, Graphics_DrawMesh__MethodInfo); DO_APP_FUNC(0x02CF3880, void, Graphics_DrawMeshInstanced, (Mesh * mesh, int32_t submeshIndex, Material * material, Matrix4x4__Array * matrices, int32_t count, MaterialPropertyBlock * properties, ShadowCastingMode__Enum castShadows, bool receiveShadows, int32_t layer, Camera * camera, LightProbeUsage__Enum lightProbeUsage, LightProbeProxyVolume * lightProbeProxyVolume, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D040E8, Graphics_DrawMeshInstanced__MethodInfo); DO_APP_FUNC(0x02CF4030, void, Graphics_Blit, (Texture * source, RenderTexture * dest, MethodInfo * method)); DO_APP_FUNC(0x02CF40D0, void, Graphics_Blit_1, (Texture * source, RenderTexture * dest, Material * mat, int32_t pass, MethodInfo * method)); DO_APP_FUNC(0x02CF4160, void, Graphics_Blit_2, (Texture * source, RenderTexture * dest, Material * mat, MethodInfo * method)); @@ -72407,10 +82947,11 @@ DO_APP_FUNC(0x02CF45D0, void, Graphics_SetRenderTarget_1, (RenderTexture * rt, M DO_APP_FUNC(0x02CF4670, void, Graphics_SetRenderTarget_2, (RenderTexture * rt, int32_t mipLevel, MethodInfo * method)); DO_APP_FUNC(0x02CF46E0, void, Graphics_SetRenderTarget_3, (RenderTexture * rt, int32_t mipLevel, CubemapFace__Enum face, MethodInfo * method)); DO_APP_FUNC(0x02CF4760, void, Graphics__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02CF48C0, void, Graphics_Internal_SetRTSimple_Injected, (RenderBuffer color, RenderBuffer depth, int32_t mip, CubemapFace__Enum face, int32_t depthSlice, MethodInfo * method)); -DO_APP_FUNC(0x02CF4950, void, Graphics_Internal_DrawMeshNow2_Injected, (Mesh * mesh, int32_t subsetIndex, Matrix4x4 matrix, MethodInfo * method)); -DO_APP_FUNC(0x02CF49C0, void, Graphics_Internal_DrawMesh_Injected, (Mesh * mesh, int32_t submeshIndex, Matrix4x4 matrix, Material * material, int32_t layer, Camera * camera, MaterialPropertyBlock * properties, ShadowCastingMode__Enum castShadows, bool receiveShadows, Transform * probeAnchor, LightProbeUsage__Enum lightProbeUsage, LightProbeProxyVolume * lightProbeProxyVolume, MethodInfo * method)); +DO_APP_FUNC(0x02CF48C0, void, Graphics_Internal_SetRTSimple_Injected, (RenderBuffer * color, RenderBuffer * depth, int32_t mip, CubemapFace__Enum face, int32_t depthSlice, MethodInfo * method)); +DO_APP_FUNC(0x02CF4950, void, Graphics_Internal_DrawMeshNow2_Injected, (Mesh * mesh, int32_t subsetIndex, Matrix4x4 * matrix, MethodInfo * method)); +DO_APP_FUNC(0x02CF49C0, void, Graphics_Internal_DrawMesh_Injected, (Mesh * mesh, int32_t submeshIndex, Matrix4x4 * matrix, Material * material, int32_t layer, Camera * camera, MaterialPropertyBlock * properties, ShadowCastingMode__Enum castShadows, bool receiveShadows, Transform * probeAnchor, LightProbeUsage__Enum lightProbeUsage, LightProbeProxyVolume * lightProbeProxyVolume, MethodInfo * method)); DO_APP_FUNC(0x02CF4A60, void, Graphics_DrawMeshInstancedIndirect, (Mesh * param_00011ec7, int32_t param_00011ec8, Material * param_00011ec9, Bounds param_00011eca, ComputeBuffer * param_00011ecb, int32_t param_00011ecc, MaterialPropertyBlock * param_00011ecd, ShadowCastingMode__Enum param_00011ece, bool param_00011ecf, int32_t param_00011ed0, Camera * param_00011ed1, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04068, Graphics_DrawMeshInstancedIndirect__MethodInfo); DO_APP_FUNC(0x02CF4AC0, void, GL_Vertex3, (float x, float y, float z, MethodInfo * method)); DO_APP_FUNC(0x02CF4B40, void, GL_Vertex, (Vector3 v, MethodInfo * method)); DO_APP_FUNC(0x02CF4B60, void, GL_TexCoord3, (float x, float y, float z, MethodInfo * method)); @@ -72433,11 +82974,11 @@ DO_APP_FUNC(0x02CF50F0, void, GL_GLClear, (bool clearDepth, bool clearColor, Col DO_APP_FUNC(0x02CF5170, void, GL_Clear, (bool clearDepth, bool clearColor, Color backgroundColor, float depth, MethodInfo * method)); DO_APP_FUNC(0x02CF51F0, void, GL_Clear_1, (bool clearDepth, bool clearColor, Color backgroundColor, MethodInfo * method)); DO_APP_FUNC(0x02CF5270, void, GL_Viewport, (Rect pixelRect, MethodInfo * method)); -DO_APP_FUNC(0x02CF52C0, void, GL_SetViewMatrix_Injected, (Matrix4x4 m, MethodInfo * method)); -DO_APP_FUNC(0x02CF5310, void, GL_LoadProjectionMatrix_Injected, (Matrix4x4 mat, MethodInfo * method)); -DO_APP_FUNC(0x02CF5360, void, GL_GetGPUProjectionMatrix_Injected, (Matrix4x4 proj, bool renderIntoTexture, Matrix4x4 ret, MethodInfo * method)); -DO_APP_FUNC(0x02CF53D0, void, GL_GLClear_Injected, (bool clearDepth, bool clearColor, Color backgroundColor, float depth, MethodInfo * method)); -DO_APP_FUNC(0x02CF5450, void, GL_Viewport_Injected, (Rect pixelRect, MethodInfo * method)); +DO_APP_FUNC(0x02CF52C0, void, GL_SetViewMatrix_Injected, (Matrix4x4 * m, MethodInfo * method)); +DO_APP_FUNC(0x02CF5310, void, GL_LoadProjectionMatrix_Injected, (Matrix4x4 * mat, MethodInfo * method)); +DO_APP_FUNC(0x02CF5360, void, GL_GetGPUProjectionMatrix_Injected, (Matrix4x4 * proj, bool renderIntoTexture, Matrix4x4 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02CF53D0, void, GL_GLClear_Injected, (bool clearDepth, bool clearColor, Color * backgroundColor, float depth, MethodInfo * method)); +DO_APP_FUNC(0x02CF5450, void, GL_Viewport_Injected, (Rect * pixelRect, MethodInfo * method)); DO_APP_FUNC(0x02CF54A0, float, ScalableBufferManager_get_widthScaleFactor, (MethodInfo * method)); DO_APP_FUNC(0x02CF54F0, float, ScalableBufferManager_get_heightScaleFactor, (MethodInfo * method)); DO_APP_FUNC(0x02CF5540, void, ScalableBufferManager_ResizeBuffers, (float widthScale, float heightScale, MethodInfo * method)); @@ -72453,9 +82994,9 @@ DO_APP_FUNC(0x02CF5600, void, LightmapSettings_set_lightmaps, (LightmapData__Arr DO_APP_FUNC(0x02CF5650, void, LightmapSettings_set_lightmapsMode, (LightmapsMode__Enum value, MethodInfo * method)); DO_APP_FUNC(0x02CF56A0, void, LightProbes_Internal_CallTetrahedralizationCompletedFunction, (MethodInfo * method)); DO_APP_FUNC(0x02CF5700, void, LightProbes_Internal_CallNeedsRetetrahedralizationFunction, (MethodInfo * method)); -DO_APP_FUNC(0x02B78450, int32_t, Resolution_get_width, (Resolution__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C4B40, int32_t, Resolution_get_height, (Resolution__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CF5760, String *, Resolution_ToString, (Resolution__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B78450, int32_t, Resolution_get_width, (Resolution * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C4B40, int32_t, Resolution_get_height, (Resolution * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CF5760, String *, Resolution_ToString, (Resolution * __this, MethodInfo * method)); DO_APP_FUNC(0x02CF5900, void, QualitySettings_IncreaseLevel, (bool applyExpensiveChanges, MethodInfo * method)); DO_APP_FUNC(0x02CF59A0, void, QualitySettings_DecreaseLevel, (bool applyExpensiveChanges, MethodInfo * method)); DO_APP_FUNC(0x02CF5A40, void, QualitySettings_SetQualityLevel, (int32_t index, MethodInfo * method)); @@ -72483,7 +83024,7 @@ DO_APP_FUNC(0x02CF60D0, void, TrailRenderer_Clear, (TrailRenderer * __this, Meth DO_APP_FUNC(0x02CF6120, void, LineRenderer_set_positionCount, (LineRenderer * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x02CF6180, void, LineRenderer_SetPosition, (LineRenderer * __this, int32_t index, Vector3 position, MethodInfo * method)); DO_APP_FUNC(0x02CF61F0, void, LineRenderer_SetPositions, (LineRenderer * __this, Vector3__Array * positions, MethodInfo * method)); -DO_APP_FUNC(0x02CF6250, void, LineRenderer_SetPosition_Injected, (LineRenderer * __this, int32_t index, Vector3 position, MethodInfo * method)); +DO_APP_FUNC(0x02CF6250, void, LineRenderer_SetPosition_Injected, (LineRenderer * __this, int32_t index, Vector3 * position, MethodInfo * method)); DO_APP_FUNC(0x02CF62C0, float, MaterialPropertyBlock_GetFloatImpl, (MaterialPropertyBlock * __this, int32_t name, MethodInfo * method)); DO_APP_FUNC(0x02CF6320, void, MaterialPropertyBlock_SetFloatImpl, (MaterialPropertyBlock * __this, int32_t name, float value, MethodInfo * method)); DO_APP_FUNC(0x02CF6390, void, MaterialPropertyBlock_SetVectorImpl, (MaterialPropertyBlock * __this, int32_t name, Vector4 value, MethodInfo * method)); @@ -72499,7 +83040,9 @@ DO_APP_FUNC(0x02CF6790, void, MaterialPropertyBlock_DestroyImpl, (void * mpb, Me DO_APP_FUNC(0x02CF67E0, void, MaterialPropertyBlock_Clear, (MaterialPropertyBlock * __this, bool keepMemory, MethodInfo * method)); DO_APP_FUNC(0x02CF6840, void, MaterialPropertyBlock_Clear_1, (MaterialPropertyBlock * __this, MethodInfo * method)); DO_APP_FUNC(0x02CF68A0, void, MaterialPropertyBlock_SetFloatArray, (MaterialPropertyBlock * __this, int32_t name, Single__Array * values, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04000, MaterialPropertyBlock_SetFloatArray__MethodInfo); DO_APP_FUNC(0x02CF6A30, void, MaterialPropertyBlock_SetVectorArray, (MaterialPropertyBlock * __this, int32_t name, Vector4__Array * values, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03FE0, MaterialPropertyBlock_SetVectorArray__MethodInfo); DO_APP_FUNC(0x02CF6BC0, void, MaterialPropertyBlock__ctor, (MaterialPropertyBlock * __this, MethodInfo * method)); DO_APP_FUNC(0x02CF6C10, void, MaterialPropertyBlock_Finalize, (MaterialPropertyBlock * __this, MethodInfo * method)); DO_APP_FUNC(0x02CF6D20, void, MaterialPropertyBlock_Dispose, (MaterialPropertyBlock * __this, MethodInfo * method)); @@ -72521,9 +83064,9 @@ DO_APP_FUNC(0x02CF7410, void, MaterialPropertyBlock_SetFloatArray_2, (MaterialPr DO_APP_FUNC(0x02CF7440, void, MaterialPropertyBlock_SetVectorArray_1, (MaterialPropertyBlock * __this, String * name, Vector4__Array * values, MethodInfo * method)); DO_APP_FUNC(0x02CF74D0, void, MaterialPropertyBlock_SetVectorArray_2, (MaterialPropertyBlock * __this, int32_t nameID, Vector4__Array * values, MethodInfo * method)); DO_APP_FUNC(0x02CF7500, float, MaterialPropertyBlock_GetFloat, (MaterialPropertyBlock * __this, String * name, MethodInfo * method)); -DO_APP_FUNC(0x02CF75A0, void, MaterialPropertyBlock_SetVectorImpl_Injected, (MaterialPropertyBlock * __this, int32_t name, Vector4 value, MethodInfo * method)); -DO_APP_FUNC(0x02CF7610, void, MaterialPropertyBlock_SetColorImpl_Injected, (MaterialPropertyBlock * __this, int32_t name, Color value, MethodInfo * method)); -DO_APP_FUNC(0x02CF7680, void, MaterialPropertyBlock_SetMatrixImpl_Injected, (MaterialPropertyBlock * __this, int32_t name, Matrix4x4 value, MethodInfo * method)); +DO_APP_FUNC(0x02CF75A0, void, MaterialPropertyBlock_SetVectorImpl_Injected, (MaterialPropertyBlock * __this, int32_t name, Vector4 * value, MethodInfo * method)); +DO_APP_FUNC(0x02CF7610, void, MaterialPropertyBlock_SetColorImpl_Injected, (MaterialPropertyBlock * __this, int32_t name, Color * value, MethodInfo * method)); +DO_APP_FUNC(0x02CF7680, void, MaterialPropertyBlock_SetMatrixImpl_Injected, (MaterialPropertyBlock * __this, int32_t name, Matrix4x4 * value, MethodInfo * method)); DO_APP_FUNC(0x02CF76F0, Bounds, Renderer_get_bounds, (Renderer * __this, MethodInfo * method)); DO_APP_FUNC(0x02CF7760, Bounds, Renderer_get_localBounds, (Renderer * __this, MethodInfo * method)); DO_APP_FUNC(0x02CF77D0, void, Renderer_set_localBounds, (Renderer * __this, Bounds value, MethodInfo * method)); @@ -72570,12 +83113,12 @@ DO_APP_FUNC(0x02CF7930, void, Renderer_set_sharedMaterial, (Renderer * __this, M DO_APP_FUNC(0x02CF83C0, Material__Array *, Renderer_get_sharedMaterials, (Renderer * __this, MethodInfo * method)); DO_APP_FUNC(0x02CF79E0, void, Renderer_set_sharedMaterials, (Renderer * __this, Material__Array * value, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, Renderer__ctor, (Renderer * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CF8410, void, Renderer_get_bounds_Injected, (Renderer * __this, Bounds ret, MethodInfo * method)); -DO_APP_FUNC(0x02CF8470, void, Renderer_get_localBounds_Injected, (Renderer * __this, Bounds ret, MethodInfo * method)); -DO_APP_FUNC(0x02CF84D0, void, Renderer_set_localBounds_Injected, (Renderer * __this, Bounds value, MethodInfo * method)); -DO_APP_FUNC(0x02CF8530, void, Renderer_SetStaticLightmapST_Injected, (Renderer * __this, Vector4 st, MethodInfo * method)); -DO_APP_FUNC(0x02CF8590, void, Renderer_get_localToWorldMatrix_Injected, (Renderer * __this, Matrix4x4 ret, MethodInfo * method)); -DO_APP_FUNC(0x02CF85F0, void, Renderer_GetLightmapST_Injected, (Renderer * __this, LightmapType__Enum lt, Vector4 ret, MethodInfo * method)); +DO_APP_FUNC(0x02CF8410, void, Renderer_get_bounds_Injected, (Renderer * __this, Bounds * ret, MethodInfo * method)); +DO_APP_FUNC(0x02CF8470, void, Renderer_get_localBounds_Injected, (Renderer * __this, Bounds * ret, MethodInfo * method)); +DO_APP_FUNC(0x02CF84D0, void, Renderer_set_localBounds_Injected, (Renderer * __this, Bounds * value, MethodInfo * method)); +DO_APP_FUNC(0x02CF8530, void, Renderer_SetStaticLightmapST_Injected, (Renderer * __this, Vector4 * st, MethodInfo * method)); +DO_APP_FUNC(0x02CF8590, void, Renderer_get_localToWorldMatrix_Injected, (Renderer * __this, Matrix4x4 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02CF85F0, void, Renderer_GetLightmapST_Injected, (Renderer * __this, LightmapType__Enum lt, Vector4 * ret, MethodInfo * method)); DO_APP_FUNC(0x02CF8660, bool, RenderSettings_get_fog, (MethodInfo * method)); DO_APP_FUNC(0x02CF86B0, float, RenderSettings_get_fogStartDistance, (MethodInfo * method)); DO_APP_FUNC(0x02CF8700, float, RenderSettings_get_fogEndDistance, (MethodInfo * method)); @@ -72588,8 +83131,8 @@ DO_APP_FUNC(0x02CF8910, Material *, RenderSettings_get_skybox, (MethodInfo * met DO_APP_FUNC(0x02CF8960, void, RenderSettings_set_skybox, (Material * value, MethodInfo * method)); DO_APP_FUNC(0x02CF89B0, SphericalHarmonicsL2, RenderSettings_get_ambientProbe, (MethodInfo * method)); DO_APP_FUNC(0x02CF8A30, void, RenderSettings_set_reflectionIntensity, (float value, MethodInfo * method)); -DO_APP_FUNC(0x02CF8A90, void, RenderSettings_get_fogColor_Injected, (Color ret, MethodInfo * method)); -DO_APP_FUNC(0x02CF8AE0, void, RenderSettings_get_ambientProbe_Injected, (SphericalHarmonicsL2 ret, MethodInfo * method)); +DO_APP_FUNC(0x02CF8A90, void, RenderSettings_get_fogColor_Injected, (Color * ret, MethodInfo * method)); +DO_APP_FUNC(0x02CF8AE0, void, RenderSettings_get_ambientProbe_Injected, (SphericalHarmonicsL2 * ret, MethodInfo * method)); DO_APP_FUNC(0x02CF8B30, ShaderHardwareTier__Enum, Shader_get_globalShaderHardwareTier, (MethodInfo * method)); DO_APP_FUNC(0x02CF8BB0, void, Shader_set_globalShaderHardwareTier, (ShaderHardwareTier__Enum value, MethodInfo * method)); DO_APP_FUNC(0x02CF8C40, Shader *, Shader_Find, (String * name, MethodInfo * method)); @@ -72615,10 +83158,10 @@ DO_APP_FUNC(0x02CF91E0, void, Shader_EnableKeywordFast, (GlobalKeyword keyword, DO_APP_FUNC(0x02CF9230, void, Shader_DisableKeywordFast, (GlobalKeyword keyword, MethodInfo * method)); DO_APP_FUNC(0x02CF9280, void, Shader_SetKeywordFast, (GlobalKeyword keyword, bool value, MethodInfo * method)); DO_APP_FUNC(0x02CF92E0, bool, Shader_IsKeywordEnabledFast, (GlobalKeyword keyword, MethodInfo * method)); -DO_APP_FUNC(0x02CF9330, void, Shader_EnableKeyword_1, (GlobalKeyword keyword, MethodInfo * method)); -DO_APP_FUNC(0x02CF9390, void, Shader_DisableKeyword_1, (GlobalKeyword keyword, MethodInfo * method)); -DO_APP_FUNC(0x02CF93F0, void, Shader_SetKeyword, (GlobalKeyword keyword, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02CF9450, bool, Shader_IsKeywordEnabled_1, (GlobalKeyword keyword, MethodInfo * method)); +DO_APP_FUNC(0x02CF9330, void, Shader_EnableKeyword_1, (GlobalKeyword * keyword, MethodInfo * method)); +DO_APP_FUNC(0x02CF9390, void, Shader_DisableKeyword_1, (GlobalKeyword * keyword, MethodInfo * method)); +DO_APP_FUNC(0x02CF93F0, void, Shader_SetKeyword, (GlobalKeyword * keyword, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02CF9450, bool, Shader_IsKeywordEnabled_1, (GlobalKeyword * keyword, MethodInfo * method)); DO_APP_FUNC(0x02CF94B0, int32_t, Shader_get_renderQueue, (Shader * __this, MethodInfo * method)); DO_APP_FUNC(0x02CF9500, DisableBatchingType__Enum, Shader_get_disableBatching, (Shader * __this, MethodInfo * method)); DO_APP_FUNC(0x02CF9550, void, Shader_WarmupAllShaders, (MethodInfo * method)); @@ -72630,8 +83173,11 @@ DO_APP_FUNC(0x02CF96F0, int32_t, Shader_get_passCount, (Shader * __this, MethodI DO_APP_FUNC(0x02CF9740, int32_t, Shader_get_subshaderCount, (Shader * __this, MethodInfo * method)); DO_APP_FUNC(0x02CF9790, int32_t, Shader_GetPassCountInSubshader, (Shader * __this, int32_t subshaderIndex, MethodInfo * method)); DO_APP_FUNC(0x02CF97F0, ShaderTagId, Shader_FindPassTagValue, (Shader * __this, int32_t passIndex, ShaderTagId tagName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03E60, Shader_FindPassTagValue__MethodInfo); DO_APP_FUNC(0x02CF9900, ShaderTagId, Shader_FindPassTagValue_1, (Shader * __this, int32_t subshaderIndex, int32_t passIndex, ShaderTagId tagName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03E50, Shader_FindPassTagValue_1__MethodInfo); DO_APP_FUNC(0x02CF9AD0, ShaderTagId, Shader_FindSubshaderTagValue, (Shader * __this, int32_t subshaderIndex, ShaderTagId tagName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03E70, Shader_FindSubshaderTagValue__MethodInfo); DO_APP_FUNC(0x02CF9C40, int32_t, Shader_Internal_FindPassTagValue, (Shader * __this, int32_t passIndex, int32_t tagName, MethodInfo * method)); DO_APP_FUNC(0x02CF9CB0, int32_t, Shader_Internal_FindPassTagValueInSubShader, (Shader * __this, int32_t subShaderIndex, int32_t passIndex, int32_t tagName, MethodInfo * method)); DO_APP_FUNC(0x02CF9D30, int32_t, Shader_Internal_FindSubshaderTagValue, (Shader * __this, int32_t subShaderIndex, int32_t tagName, MethodInfo * method)); @@ -72663,11 +83209,17 @@ DO_APP_FUNC(0x02CFA6C0, void, Shader_ExtractGlobalFloatArrayImpl, (int32_t name, DO_APP_FUNC(0x02CFA720, void, Shader_ExtractGlobalVectorArrayImpl, (int32_t name, Vector4__Array * val, MethodInfo * method)); DO_APP_FUNC(0x02CFA780, void, Shader_ExtractGlobalMatrixArrayImpl, (int32_t name, Matrix4x4__Array * val, MethodInfo * method)); DO_APP_FUNC(0x02CFA7E0, void, Shader_SetGlobalFloatArray, (int32_t name, Single__Array * values, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03DD8, Shader_SetGlobalFloatArray__MethodInfo); DO_APP_FUNC(0x02CFA960, void, Shader_SetGlobalVectorArray, (int32_t name, Vector4__Array * values, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03DD0, Shader_SetGlobalVectorArray__MethodInfo); DO_APP_FUNC(0x02CFAAE0, void, Shader_SetGlobalMatrixArray, (int32_t name, Matrix4x4__Array * values, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03E08, Shader_SetGlobalMatrixArray__MethodInfo); DO_APP_FUNC(0x02CFAC60, void, Shader_ExtractGlobalFloatArray, (int32_t name, List_1_System_Single_ * values, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03DE8, Shader_ExtractGlobalFloatArray__MethodInfo); DO_APP_FUNC(0x02CFAE50, void, Shader_ExtractGlobalVectorArray, (int32_t name, List_1_UnityEngine_Vector4_ * values, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03E38, Shader_ExtractGlobalVectorArray__MethodInfo); DO_APP_FUNC(0x02CFB040, void, Shader_ExtractGlobalMatrixArray, (int32_t name, List_1_UnityEngine_Matrix4x4_ * values, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03E10, Shader_ExtractGlobalMatrixArray__MethodInfo); DO_APP_FUNC(0x02CFB230, void, Shader_SetGlobalInt, (String * name, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x02CFB2E0, void, Shader_SetGlobalInt_1, (int32_t nameID, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x02CFB340, void, Shader_SetGlobalFloat, (String * name, float value, MethodInfo * method)); @@ -72741,8 +83293,9 @@ DO_APP_FUNC(0x02CFD120, int32_t, Shader_GetPropertyDefaultIntValue, (Shader * sh DO_APP_FUNC(0x02CFD180, Vector4, Shader_GetPropertyDefaultValue, (Shader * shader, int32_t propertyIndex, MethodInfo * method)); DO_APP_FUNC(0x02CFD200, TextureDimension__Enum, Shader_GetPropertyTextureDimension, (Shader * shader, int32_t propertyIndex, MethodInfo * method)); DO_APP_FUNC(0x02CFD260, String *, Shader_GetPropertyTextureDefaultName, (Shader * shader, int32_t propertyIndex, MethodInfo * method)); -DO_APP_FUNC(0x02CFD2C0, bool, Shader_FindTextureStackImpl, (Shader * s, int32_t propertyIdx, String * stackName, int32_t layerIndex, MethodInfo * method)); +DO_APP_FUNC(0x02CFD2C0, bool, Shader_FindTextureStackImpl, (Shader * s, int32_t propertyIdx, String * * stackName, int32_t * layerIndex, MethodInfo * method)); DO_APP_FUNC(0x02CFD340, void, Shader_CheckPropertyIndex, (Shader * s, int32_t propertyIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03DC0, Shader_CheckPropertyIndex__MethodInfo); DO_APP_FUNC(0x02CFD410, int32_t, Shader_GetPropertyCount, (Shader * __this, MethodInfo * method)); DO_APP_FUNC(0x02CFD460, int32_t, Shader_FindPropertyIndex, (Shader * __this, String * propertyName, MethodInfo * method)); DO_APP_FUNC(0x02CFD4C0, String *, Shader_GetPropertyName_1, (Shader * __this, int32_t propertyIndex, MethodInfo * method)); @@ -72752,21 +83305,27 @@ DO_APP_FUNC(0x02CFD610, String *, Shader_GetPropertyDescription_1, (Shader * __t DO_APP_FUNC(0x02CFD680, ShaderPropertyFlags__Enum, Shader_GetPropertyFlags_1, (Shader * __this, int32_t propertyIndex, MethodInfo * method)); DO_APP_FUNC(0x02CFD6F0, String__Array *, Shader_GetPropertyAttributes_1, (Shader * __this, int32_t propertyIndex, MethodInfo * method)); DO_APP_FUNC(0x02CFD760, float, Shader_GetPropertyDefaultFloatValue, (Shader * __this, int32_t propertyIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03D80, Shader_GetPropertyDefaultFloatValue__MethodInfo); DO_APP_FUNC(0x02CFD890, Vector4, Shader_GetPropertyDefaultVectorValue, (Shader * __this, int32_t propertyIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03D70, Shader_GetPropertyDefaultVectorValue__MethodInfo); DO_APP_FUNC(0x02CFD9E0, Vector2, Shader_GetPropertyRangeLimits, (Shader * __this, int32_t propertyIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03D60, Shader_GetPropertyRangeLimits__MethodInfo); DO_APP_FUNC(0x02CFDB20, TextureDimension__Enum, Shader_GetPropertyTextureDimension_1, (Shader * __this, int32_t propertyIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03DA8, Shader_GetPropertyTextureDimension_1__MethodInfo); DO_APP_FUNC(0x02CFDC40, String *, Shader_GetPropertyTextureDefaultName_1, (Shader * __this, int32_t propertyIndex, MethodInfo * method)); -DO_APP_FUNC(0x02CFDD60, bool, Shader_FindTextureStack, (Shader * __this, int32_t propertyIndex, String * stackName, int32_t layerIndex, MethodInfo * method)); -DO_APP_FUNC(0x02CFDEA0, void, Shader_get_keywordSpace_Injected, (Shader * __this, LocalKeywordSpace ret, MethodInfo * method)); -DO_APP_FUNC(0x02CFDF00, void, Shader_EnableKeywordFast_Injected, (GlobalKeyword keyword, MethodInfo * method)); -DO_APP_FUNC(0x02CFDF50, void, Shader_DisableKeywordFast_Injected, (GlobalKeyword keyword, MethodInfo * method)); -DO_APP_FUNC(0x02CFDFA0, void, Shader_SetKeywordFast_Injected, (GlobalKeyword keyword, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02CFE000, bool, Shader_IsKeywordEnabledFast_Injected, (GlobalKeyword keyword, MethodInfo * method)); -DO_APP_FUNC(0x02CFE050, void, Shader_SetGlobalVectorImpl_Injected, (int32_t name, Vector4 value, MethodInfo * method)); -DO_APP_FUNC(0x02CFE0B0, void, Shader_SetGlobalMatrixImpl_Injected, (int32_t name, Matrix4x4 value, MethodInfo * method)); -DO_APP_FUNC(0x02CFE110, void, Shader_GetGlobalVectorImpl_Injected, (int32_t name, Vector4 ret, MethodInfo * method)); -DO_APP_FUNC(0x02CFE170, void, Shader_GetGlobalMatrixImpl_Injected, (int32_t name, Matrix4x4 ret, MethodInfo * method)); -DO_APP_FUNC(0x02CFE1D0, void, Shader_GetPropertyDefaultValue_Injected, (Shader * shader, int32_t propertyIndex, Vector4 ret, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03D98, Shader_GetPropertyTextureDefaultName_1__MethodInfo); +DO_APP_FUNC(0x02CFDD60, bool, Shader_FindTextureStack, (Shader * __this, int32_t propertyIndex, String * * stackName, int32_t * layerIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03D90, Shader_FindTextureStack__MethodInfo); +DO_APP_FUNC(0x02CFDEA0, void, Shader_get_keywordSpace_Injected, (Shader * __this, LocalKeywordSpace * ret, MethodInfo * method)); +DO_APP_FUNC(0x02CFDF00, void, Shader_EnableKeywordFast_Injected, (GlobalKeyword * keyword, MethodInfo * method)); +DO_APP_FUNC(0x02CFDF50, void, Shader_DisableKeywordFast_Injected, (GlobalKeyword * keyword, MethodInfo * method)); +DO_APP_FUNC(0x02CFDFA0, void, Shader_SetKeywordFast_Injected, (GlobalKeyword * keyword, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02CFE000, bool, Shader_IsKeywordEnabledFast_Injected, (GlobalKeyword * keyword, MethodInfo * method)); +DO_APP_FUNC(0x02CFE050, void, Shader_SetGlobalVectorImpl_Injected, (int32_t name, Vector4 * value, MethodInfo * method)); +DO_APP_FUNC(0x02CFE0B0, void, Shader_SetGlobalMatrixImpl_Injected, (int32_t name, Matrix4x4 * value, MethodInfo * method)); +DO_APP_FUNC(0x02CFE110, void, Shader_GetGlobalVectorImpl_Injected, (int32_t name, Vector4 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02CFE170, void, Shader_GetGlobalMatrixImpl_Injected, (int32_t name, Matrix4x4 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02CFE1D0, void, Shader_GetPropertyDefaultValue_Injected, (Shader * shader, int32_t propertyIndex, Vector4 * ret, MethodInfo * method)); DO_APP_FUNC(0x02CFE240, Material *, Material_Create, (String * scriptContents, MethodInfo * method)); DO_APP_FUNC(0x02CFE300, void, Material_CreateWithShader, (Material * self, Shader * shader, MethodInfo * method)); DO_APP_FUNC(0x02CFE360, void, Material_CreateWithMaterial, (Material * self, Material * source, MethodInfo * method)); @@ -72825,10 +83384,10 @@ DO_APP_FUNC(0x02CFF9B0, void, Material_EnableLocalKeyword, (Material * __this, L DO_APP_FUNC(0x02CFFA10, void, Material_DisableLocalKeyword, (Material * __this, LocalKeyword keyword, MethodInfo * method)); DO_APP_FUNC(0x02CFFA70, void, Material_SetLocalKeyword, (Material * __this, LocalKeyword keyword, bool value, MethodInfo * method)); DO_APP_FUNC(0x02CFFAE0, bool, Material_IsLocalKeywordEnabled, (Material * __this, LocalKeyword keyword, MethodInfo * method)); -DO_APP_FUNC(0x02CFFB40, void, Material_EnableKeyword_1, (Material * __this, LocalKeyword keyword, MethodInfo * method)); -DO_APP_FUNC(0x02CFFBB0, void, Material_DisableKeyword_1, (Material * __this, LocalKeyword keyword, MethodInfo * method)); -DO_APP_FUNC(0x02CFFC20, void, Material_SetKeyword, (Material * __this, LocalKeyword keyword, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02CFFCA0, bool, Material_IsKeywordEnabled_1, (Material * __this, LocalKeyword keyword, MethodInfo * method)); +DO_APP_FUNC(0x02CFFB40, void, Material_EnableKeyword_1, (Material * __this, LocalKeyword * keyword, MethodInfo * method)); +DO_APP_FUNC(0x02CFFBB0, void, Material_DisableKeyword_1, (Material * __this, LocalKeyword * keyword, MethodInfo * method)); +DO_APP_FUNC(0x02CFFC20, void, Material_SetKeyword, (Material * __this, LocalKeyword * keyword, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02CFFCA0, bool, Material_IsKeywordEnabled_1, (Material * __this, LocalKeyword * keyword, MethodInfo * method)); DO_APP_FUNC(0x02CFFD10, LocalKeyword__Array *, Material_GetEnabledKeywords, (Material * __this, MethodInfo * method)); DO_APP_FUNC(0x02CFFD60, void, Material_SetEnabledKeywords, (Material * __this, LocalKeyword__Array * keywords, MethodInfo * method)); DO_APP_FUNC(0x02CFFD10, LocalKeyword__Array *, Material_get_enabledKeywords, (Material * __this, MethodInfo * method)); @@ -72862,7 +83421,9 @@ DO_APP_FUNC(0x02D00620, Int32__Array *, Material_GetTexturePropertyNameIDs, (Mat DO_APP_FUNC(0x02D00670, void, Material_GetTexturePropertyNamesInternal, (Material * __this, Object * outNames, MethodInfo * method)); DO_APP_FUNC(0x02D006D0, void, Material_GetTexturePropertyNameIDsInternal, (Material * __this, Object * outNames, MethodInfo * method)); DO_APP_FUNC(0x02D00730, void, Material_GetTexturePropertyNames_1, (Material * __this, List_1_System_String_ * outNames, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03D48, Material_GetTexturePropertyNames_1__MethodInfo); DO_APP_FUNC(0x02D007F0, void, Material_GetTexturePropertyNameIDs_1, (Material * __this, List_1_System_Int32_ * outNames, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03D40, Material_GetTexturePropertyNameIDs_1__MethodInfo); DO_APP_FUNC(0x02D008B0, void, Material_SetIntImpl, (Material * __this, int32_t name, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x02D00920, void, Material_SetFloatImpl, (Material * __this, int32_t name, float value, MethodInfo * method)); DO_APP_FUNC(0x02D00990, void, Material_SetColorImpl, (Material * __this, int32_t name, Color value, MethodInfo * method)); @@ -72898,13 +83459,21 @@ DO_APP_FUNC(0x02D01630, Vector4, Material_GetTextureScaleAndOffsetImpl, (Materia DO_APP_FUNC(0x02D016B0, void, Material_SetTextureOffsetImpl, (Material * __this, int32_t name, Vector2 offset, MethodInfo * method)); DO_APP_FUNC(0x02D01720, void, Material_SetTextureScaleImpl, (Material * __this, int32_t name, Vector2 scale, MethodInfo * method)); DO_APP_FUNC(0x02D01790, void, Material_SetFloatArray, (Material * __this, int32_t name, Single__Array * values, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03D20, Material_SetFloatArray__MethodInfo); DO_APP_FUNC(0x02D01920, void, Material_SetVectorArray, (Material * __this, int32_t name, Vector4__Array * values, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03D18, Material_SetVectorArray__MethodInfo); DO_APP_FUNC(0x02D01AB0, void, Material_SetColorArray, (Material * __this, int32_t name, Color__Array * values, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03D10, Material_SetColorArray__MethodInfo); DO_APP_FUNC(0x02D01C40, void, Material_SetMatrixArray, (Material * __this, int32_t name, Matrix4x4__Array * values, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03D38, Material_SetMatrixArray__MethodInfo); DO_APP_FUNC(0x02D01DD0, void, Material_ExtractFloatArray, (Material * __this, int32_t name, List_1_System_Single_ * values, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03D30, Material_ExtractFloatArray__MethodInfo); DO_APP_FUNC(0x02D01FD0, void, Material_ExtractVectorArray, (Material * __this, int32_t name, List_1_UnityEngine_Vector4_ * values, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03D28, Material_ExtractVectorArray__MethodInfo); DO_APP_FUNC(0x02D021D0, void, Material_ExtractColorArray, (Material * __this, int32_t name, List_1_UnityEngine_Color_ * values, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03CF8, Material_ExtractColorArray__MethodInfo); DO_APP_FUNC(0x02D02420, void, Material_ExtractMatrixArray, (Material * __this, int32_t name, List_1_UnityEngine_Matrix4x4_ * values, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03CF0, Material_ExtractMatrixArray__MethodInfo); DO_APP_FUNC(0x02D02620, void, Material_SetInt, (Material * __this, String * name, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x02D026E0, void, Material_SetInt_1, (Material * __this, int32_t nameID, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x02D02750, void, Material_SetFloat, (Material * __this, String * name, float value, MethodInfo * method)); @@ -72983,17 +83552,17 @@ DO_APP_FUNC(0x02D04B70, Vector2, Material_GetTextureOffset, (Material * __this, DO_APP_FUNC(0x02D04BE0, Vector2, Material_GetTextureOffset_1, (Material * __this, int32_t nameID, MethodInfo * method)); DO_APP_FUNC(0x02D04C60, Vector2, Material_GetTextureScale, (Material * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x02D04CD0, Vector2, Material_GetTextureScale_1, (Material * __this, int32_t nameID, MethodInfo * method)); -DO_APP_FUNC(0x02D04D50, void, Material_EnableLocalKeyword_Injected, (Material * __this, LocalKeyword keyword, MethodInfo * method)); -DO_APP_FUNC(0x02D04DB0, void, Material_DisableLocalKeyword_Injected, (Material * __this, LocalKeyword keyword, MethodInfo * method)); -DO_APP_FUNC(0x02D04E10, void, Material_SetLocalKeyword_Injected, (Material * __this, LocalKeyword keyword, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02D04E80, bool, Material_IsLocalKeywordEnabled_Injected, (Material * __this, LocalKeyword keyword, MethodInfo * method)); -DO_APP_FUNC(0x02D04EE0, void, Material_SetColorImpl_Injected, (Material * __this, int32_t name, Color value, MethodInfo * method)); -DO_APP_FUNC(0x02D04F50, void, Material_SetMatrixImpl_Injected, (Material * __this, int32_t name, Matrix4x4 value, MethodInfo * method)); -DO_APP_FUNC(0x02D04FC0, void, Material_GetColorImpl_Injected, (Material * __this, int32_t name, Color ret, MethodInfo * method)); -DO_APP_FUNC(0x02D05030, void, Material_GetMatrixImpl_Injected, (Material * __this, int32_t name, Matrix4x4 ret, MethodInfo * method)); -DO_APP_FUNC(0x02D050A0, void, Material_GetTextureScaleAndOffsetImpl_Injected, (Material * __this, int32_t name, Vector4 ret, MethodInfo * method)); -DO_APP_FUNC(0x02D05110, void, Material_SetTextureOffsetImpl_Injected, (Material * __this, int32_t name, Vector2 offset, MethodInfo * method)); -DO_APP_FUNC(0x02D05180, void, Material_SetTextureScaleImpl_Injected, (Material * __this, int32_t name, Vector2 scale, MethodInfo * method)); +DO_APP_FUNC(0x02D04D50, void, Material_EnableLocalKeyword_Injected, (Material * __this, LocalKeyword * keyword, MethodInfo * method)); +DO_APP_FUNC(0x02D04DB0, void, Material_DisableLocalKeyword_Injected, (Material * __this, LocalKeyword * keyword, MethodInfo * method)); +DO_APP_FUNC(0x02D04E10, void, Material_SetLocalKeyword_Injected, (Material * __this, LocalKeyword * keyword, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02D04E80, bool, Material_IsLocalKeywordEnabled_Injected, (Material * __this, LocalKeyword * keyword, MethodInfo * method)); +DO_APP_FUNC(0x02D04EE0, void, Material_SetColorImpl_Injected, (Material * __this, int32_t name, Color * value, MethodInfo * method)); +DO_APP_FUNC(0x02D04F50, void, Material_SetMatrixImpl_Injected, (Material * __this, int32_t name, Matrix4x4 * value, MethodInfo * method)); +DO_APP_FUNC(0x02D04FC0, void, Material_GetColorImpl_Injected, (Material * __this, int32_t name, Color * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D05030, void, Material_GetMatrixImpl_Injected, (Material * __this, int32_t name, Matrix4x4 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D050A0, void, Material_GetTextureScaleAndOffsetImpl_Injected, (Material * __this, int32_t name, Vector4 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D05110, void, Material_SetTextureOffsetImpl_Injected, (Material * __this, int32_t name, Vector2 * offset, MethodInfo * method)); +DO_APP_FUNC(0x02D05180, void, Material_SetTextureScaleImpl_Injected, (Material * __this, int32_t name, Vector2 * scale, MethodInfo * method)); DO_APP_FUNC(0x02D051F0, void, Flare__ctor, (Flare * __this, MethodInfo * method)); DO_APP_FUNC(0x02D05280, void, Flare_Internal_Create, (Flare * self, MethodInfo * method)); DO_APP_FUNC(0x02D052D0, Material *, Projector_get_material, (Projector * __this, MethodInfo * method)); @@ -73085,14 +83654,14 @@ DO_APP_FUNC(0x003AE050, void, Light_set_shadowObjectSizeBias, (Light * __this, f DO_APP_FUNC(0x01120490, bool, Light_get_attenuate, (Light * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Light_set_attenuate, (Light * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, Light__ctor, (Light * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D06DC0, void, Light_get_color_Injected, (Light * __this, Color ret, MethodInfo * method)); -DO_APP_FUNC(0x02D06E20, void, Light_set_color_Injected, (Light * __this, Color value, MethodInfo * method)); -DO_APP_FUNC(0x02D06E80, void, Light_get_boundingSphereOverride_Injected, (Light * __this, Vector4 ret, MethodInfo * method)); -DO_APP_FUNC(0x02D06EE0, void, Light_set_boundingSphereOverride_Injected, (Light * __this, Vector4 value, MethodInfo * method)); -DO_APP_FUNC(0x02D06F40, void, Light_get_shadowMatrixOverride_Injected, (Light * __this, Matrix4x4 ret, MethodInfo * method)); -DO_APP_FUNC(0x02D06FA0, void, Light_set_shadowMatrixOverride_Injected, (Light * __this, Matrix4x4 value, MethodInfo * method)); -DO_APP_FUNC(0x02D07000, void, Light_get_bakingOutput_Injected, (Light * __this, LightBakingOutput ret, MethodInfo * method)); -DO_APP_FUNC(0x02D07060, void, Light_set_bakingOutput_Injected, (Light * __this, LightBakingOutput value, MethodInfo * method)); +DO_APP_FUNC(0x02D06DC0, void, Light_get_color_Injected, (Light * __this, Color * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D06E20, void, Light_set_color_Injected, (Light * __this, Color * value, MethodInfo * method)); +DO_APP_FUNC(0x02D06E80, void, Light_get_boundingSphereOverride_Injected, (Light * __this, Vector4 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D06EE0, void, Light_set_boundingSphereOverride_Injected, (Light * __this, Vector4 * value, MethodInfo * method)); +DO_APP_FUNC(0x02D06F40, void, Light_get_shadowMatrixOverride_Injected, (Light * __this, Matrix4x4 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D06FA0, void, Light_set_shadowMatrixOverride_Injected, (Light * __this, Matrix4x4 * value, MethodInfo * method)); +DO_APP_FUNC(0x02D07000, void, Light_get_bakingOutput_Injected, (Light * __this, LightBakingOutput * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D07060, void, Light_set_bakingOutput_Injected, (Light * __this, LightBakingOutput * value, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, MeshFilter_DontStripMeshFilter, (MeshFilter * __this, MethodInfo * method)); DO_APP_FUNC(0x02D070C0, Mesh *, MeshFilter_get_sharedMesh, (MeshFilter * __this, MethodInfo * method)); DO_APP_FUNC(0x02D07110, void, MeshFilter_set_sharedMesh, (MeshFilter * __this, Mesh * value, MethodInfo * method)); @@ -73118,7 +83687,9 @@ DO_APP_FUNC(0x02D07750, void, SkinnedMeshRenderer_SetBlendShapeWeight, (SkinnedM DO_APP_FUNC(0x02D077C0, void, SkinnedMeshRenderer_BakeMesh, (SkinnedMeshRenderer * __this, Mesh * mesh, MethodInfo * method)); DO_APP_FUNC(0x02D07830, void, SkinnedMeshRenderer_BakeMesh_1, (SkinnedMeshRenderer * __this, Mesh * mesh, bool useScale, MethodInfo * method)); DO_APP_FUNC(0x02D078A0, GraphicsBuffer *, SkinnedMeshRenderer_GetVertexBuffer, (SkinnedMeshRenderer * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03CE0, SkinnedMeshRenderer_GetVertexBuffer__MethodInfo); DO_APP_FUNC(0x02D07A10, GraphicsBuffer *, SkinnedMeshRenderer_GetPreviousVertexBuffer, (SkinnedMeshRenderer * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03CE8, SkinnedMeshRenderer_GetPreviousVertexBuffer__MethodInfo); DO_APP_FUNC(0x02D07B80, GraphicsBuffer *, SkinnedMeshRenderer_GetVertexBufferImpl, (SkinnedMeshRenderer * __this, MethodInfo * method)); DO_APP_FUNC(0x02D07BD0, GraphicsBuffer *, SkinnedMeshRenderer_GetPreviousVertexBufferImpl, (SkinnedMeshRenderer * __this, MethodInfo * method)); DO_APP_FUNC(0x02D07C20, GraphicsBuffer_Target__Enum, SkinnedMeshRenderer_get_vertexBufferTarget, (SkinnedMeshRenderer * __this, MethodInfo * method)); @@ -73151,9 +83722,9 @@ DO_APP_FUNC(0x02D083C0, float, LODGroup_get_crossFadeAnimationDuration, (MethodI DO_APP_FUNC(0x02D08410, void, LODGroup_set_crossFadeAnimationDuration, (float value, MethodInfo * method)); DO_APP_FUNC(0x02D08470, Vector3, LODGroup_get_worldReferencePoint, (LODGroup * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, LODGroup__ctor, (LODGroup * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D084E0, void, LODGroup_get_localReferencePoint_Injected, (LODGroup * __this, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02D08540, void, LODGroup_set_localReferencePoint_Injected, (LODGroup * __this, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x02D085A0, void, LODGroup_get_worldReferencePoint_Injected, (LODGroup * __this, Vector3 ret, MethodInfo * method)); +DO_APP_FUNC(0x02D084E0, void, LODGroup_get_localReferencePoint_Injected, (LODGroup * __this, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D08540, void, LODGroup_set_localReferencePoint_Injected, (LODGroup * __this, Vector3 * value, MethodInfo * method)); +DO_APP_FUNC(0x02D085A0, void, LODGroup_get_worldReferencePoint_Injected, (LODGroup * __this, Vector3 * ret, MethodInfo * method)); DO_APP_FUNC(0x02D08600, void, Mesh_Internal_Create, (Mesh * mono, MethodInfo * method)); DO_APP_FUNC(0x02D08650, void, Mesh__ctor, (Mesh * __this, MethodInfo * method)); DO_APP_FUNC(0x02D086E0, Mesh *, Mesh_FromInstanceID, (int32_t id, MethodInfo * method)); @@ -73254,9 +83825,13 @@ DO_APP_FUNC(0x02D0AE70, void, Mesh_OptimizeImpl, (Mesh * __this, MethodInfo * me DO_APP_FUNC(0x02D0AEC0, void, Mesh_OptimizeIndexBuffersImpl, (Mesh * __this, MethodInfo * method)); DO_APP_FUNC(0x02D0AF10, void, Mesh_OptimizeReorderVertexBufferImpl, (Mesh * __this, MethodInfo * method)); DO_APP_FUNC(0x02D0AF60, VertexAttribute__Enum, Mesh_GetUVChannel, (int32_t uvIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03C68, Mesh_GetUVChannel__MethodInfo); DO_APP_FUNC(0x02D0AFF0, int32_t, Mesh_DefaultDimensionForChannel, (VertexAttribute__Enum channel, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03C58, Mesh_DefaultDimensionForChannel__MethodInfo); DO_APP_FUNC(0x02D0B0B0, void, Mesh_SetSizedArrayForChannel, (Mesh * __this, VertexAttribute__Enum channel, VertexAttributeFormat__Enum format, int32_t dim, Array * values, int32_t valuesArrayLength, int32_t valuesStart, int32_t valuesCount, MeshUpdateFlags__Enum flags, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03C40, Mesh_SetSizedArrayForChannel__MethodInfo); DO_APP_FUNC(0x02D0B4A0, void, Mesh_SetSizedNativeArrayForChannel, (Mesh * __this, VertexAttribute__Enum channel, VertexAttributeFormat__Enum format, int32_t dim, void * values, int32_t valuesArrayLength, int32_t valuesStart, int32_t valuesCount, MeshUpdateFlags__Enum flags, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03C78, Mesh_SetSizedNativeArrayForChannel__MethodInfo); DO_APP_FUNC(0x02D0B880, Vector3__Array *, Mesh_get_vertices, (Mesh * __this, MethodInfo * method)); DO_APP_FUNC(0x02D0B8E0, void, Mesh_set_vertices, (Mesh * __this, Vector3__Array * value, MethodInfo * method)); DO_APP_FUNC(0x02D0B970, Vector3__Array *, Mesh_get_normals, (Mesh * __this, MethodInfo * method)); @@ -73284,6 +83859,7 @@ DO_APP_FUNC(0x02D0C330, void, Mesh_set_colors, (Mesh * __this, Color__Array * va DO_APP_FUNC(0x02D0C3C0, Color32__Array *, Mesh_get_colors32, (Mesh * __this, MethodInfo * method)); DO_APP_FUNC(0x02D0C420, void, Mesh_set_colors32, (Mesh * __this, Color32__Array * value, MethodInfo * method)); DO_APP_FUNC(0x02D0C4B0, void, Mesh_GetVertices, (Mesh * __this, List_1_UnityEngine_Vector3_ * vertices, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03BB0, Mesh_GetVertices__MethodInfo); DO_APP_FUNC(0x02D0C5D0, void, Mesh_SetVertices, (Mesh * __this, List_1_UnityEngine_Vector3_ * inVertices, MethodInfo * method)); DO_APP_FUNC(0x02D0C680, void, Mesh_SetVertices_1, (Mesh * __this, List_1_UnityEngine_Vector3_ * inVertices, int32_t start, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x02D0C700, void, Mesh_SetVertices_2, (Mesh * __this, List_1_UnityEngine_Vector3_ * inVertices, int32_t start, int32_t length, MeshUpdateFlags__Enum flags, MethodInfo * method)); @@ -73291,6 +83867,7 @@ DO_APP_FUNC(0x02D0C780, void, Mesh_SetVertices_3, (Mesh * __this, Vector3__Array DO_APP_FUNC(0x02D0C800, void, Mesh_SetVertices_4, (Mesh * __this, Vector3__Array * inVertices, int32_t start, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x02D0C880, void, Mesh_SetVertices_5, (Mesh * __this, Vector3__Array * inVertices, int32_t start, int32_t length, MeshUpdateFlags__Enum flags, MethodInfo * method)); DO_APP_FUNC(0x02D0C900, void, Mesh_GetNormals, (Mesh * __this, List_1_UnityEngine_Vector3_ * normals, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03B18, Mesh_GetNormals__MethodInfo); DO_APP_FUNC(0x02D0CA20, void, Mesh_SetNormals, (Mesh * __this, List_1_UnityEngine_Vector3_ * inNormals, MethodInfo * method)); DO_APP_FUNC(0x02D0CAD0, void, Mesh_SetNormals_1, (Mesh * __this, List_1_UnityEngine_Vector3_ * inNormals, int32_t start, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x02D0CB50, void, Mesh_SetNormals_2, (Mesh * __this, List_1_UnityEngine_Vector3_ * inNormals, int32_t start, int32_t length, MeshUpdateFlags__Enum flags, MethodInfo * method)); @@ -73298,6 +83875,7 @@ DO_APP_FUNC(0x02D0CBD0, void, Mesh_SetNormals_3, (Mesh * __this, Vector3__Array DO_APP_FUNC(0x02D0CC60, void, Mesh_SetNormals_4, (Mesh * __this, Vector3__Array * inNormals, int32_t start, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x02D0CCE0, void, Mesh_SetNormals_5, (Mesh * __this, Vector3__Array * inNormals, int32_t start, int32_t length, MeshUpdateFlags__Enum flags, MethodInfo * method)); DO_APP_FUNC(0x02D0CD60, void, Mesh_GetTangents, (Mesh * __this, List_1_UnityEngine_Vector4_ * tangents, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03B38, Mesh_GetTangents__MethodInfo); DO_APP_FUNC(0x02D0CE80, void, Mesh_SetTangents, (Mesh * __this, List_1_UnityEngine_Vector4_ * inTangents, MethodInfo * method)); DO_APP_FUNC(0x02D0CFC0, void, Mesh_SetTangents_1, (Mesh * __this, List_1_UnityEngine_Vector4_ * inTangents, int32_t start, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x02D0D0B0, void, Mesh_SetTangents_2, (Mesh * __this, List_1_UnityEngine_Vector4_ * inTangents, int32_t start, int32_t length, MeshUpdateFlags__Enum flags, MethodInfo * method)); @@ -73305,6 +83883,7 @@ DO_APP_FUNC(0x02D0D1B0, void, Mesh_SetTangents_3, (Mesh * __this, Vector4__Array DO_APP_FUNC(0x02D0D240, void, Mesh_SetTangents_4, (Mesh * __this, Vector4__Array * inTangents, int32_t start, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x02D0D2C0, void, Mesh_SetTangents_5, (Mesh * __this, Vector4__Array * inTangents, int32_t start, int32_t length, MeshUpdateFlags__Enum flags, MethodInfo * method)); DO_APP_FUNC(0x02D0D350, void, Mesh_GetColors, (Mesh * __this, List_1_UnityEngine_Color_ * colors, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03B58, Mesh_GetColors__MethodInfo); DO_APP_FUNC(0x02D0D470, void, Mesh_SetColors, (Mesh * __this, List_1_UnityEngine_Color_ * inColors, MethodInfo * method)); DO_APP_FUNC(0x02D0D5B0, void, Mesh_SetColors_1, (Mesh * __this, List_1_UnityEngine_Color_ * inColors, int32_t start, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x02D0D6A0, void, Mesh_SetColors_2, (Mesh * __this, List_1_UnityEngine_Color_ * inColors, int32_t start, int32_t length, MeshUpdateFlags__Enum flags, MethodInfo * method)); @@ -73312,6 +83891,7 @@ DO_APP_FUNC(0x02D0D7A0, void, Mesh_SetColors_3, (Mesh * __this, Color__Array * i DO_APP_FUNC(0x02D0D830, void, Mesh_SetColors_4, (Mesh * __this, Color__Array * inColors, int32_t start, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x02D0D8B0, void, Mesh_SetColors_5, (Mesh * __this, Color__Array * inColors, int32_t start, int32_t length, MeshUpdateFlags__Enum flags, MethodInfo * method)); DO_APP_FUNC(0x02D0D940, void, Mesh_GetColors_1, (Mesh * __this, List_1_UnityEngine_Color32_ * colors, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03AD8, Mesh_GetColors_1__MethodInfo); DO_APP_FUNC(0x02D0DBC0, void, Mesh_SetColors_6, (Mesh * __this, List_1_UnityEngine_Color32_ * inColors, MethodInfo * method)); DO_APP_FUNC(0x02D0DD00, void, Mesh_SetColors_7, (Mesh * __this, List_1_UnityEngine_Color32_ * inColors, int32_t start, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x02D0DDF0, void, Mesh_SetColors_8, (Mesh * __this, List_1_UnityEngine_Color32_ * inColors, int32_t start, int32_t length, MeshUpdateFlags__Enum flags, MethodInfo * method)); @@ -73328,6 +83908,7 @@ DO_APP_FUNC(0x02D0E7A0, void, Mesh_SetUVs_6, (Mesh * __this, int32_t channel, Li DO_APP_FUNC(0x02D0E8B0, void, Mesh_SetUVs_7, (Mesh * __this, int32_t channel, List_1_UnityEngine_Vector4_ * uvs, int32_t start, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x02D0E9C0, void, Mesh_SetUVs_8, (Mesh * __this, int32_t channel, List_1_UnityEngine_Vector4_ * uvs, int32_t start, int32_t length, MeshUpdateFlags__Enum flags, MethodInfo * method)); DO_APP_FUNC(0x02D0EAD0, void, Mesh_SetUvsImpl, (Mesh * __this, int32_t uvIndex, int32_t dim, Array * uvs, int32_t arrayStart, int32_t arraySize, MeshUpdateFlags__Enum flags, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03B08, Mesh_SetUvsImpl__MethodInfo); DO_APP_FUNC(0x02D0EC00, void, Mesh_SetUVs_9, (Mesh * __this, int32_t channel, Vector2__Array * uvs, MethodInfo * method)); DO_APP_FUNC(0x02D0EC70, void, Mesh_SetUVs_10, (Mesh * __this, int32_t channel, Vector3__Array * uvs, MethodInfo * method)); DO_APP_FUNC(0x02D0ECE0, void, Mesh_SetUVs_11, (Mesh * __this, int32_t channel, Vector4__Array * uvs, MethodInfo * method)); @@ -73348,13 +83929,20 @@ DO_APP_FUNC(0x02D08A40, void, Mesh_SetVertexBufferParams, (Mesh * __this, int32_ DO_APP_FUNC(0x02D0F460, void, Mesh_SetVertexBufferParams_1, (Mesh * __this, int32_t vertexCount, NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor_ attributes, MethodInfo * method)); DO_APP_FUNC(0x02D0F500, Mesh_MeshDataArray, Mesh_AcquireReadOnlyMeshData, (Mesh * mesh, MethodInfo * method)); DO_APP_FUNC(0x02D0F540, Mesh_MeshDataArray, Mesh_AcquireReadOnlyMeshData_1, (Mesh__Array * meshes, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03A80, Mesh_AcquireReadOnlyMeshData_1__MethodInfo); DO_APP_FUNC(0x02D0F5F0, Mesh_MeshDataArray, Mesh_AcquireReadOnlyMeshData_2, (List_1_UnityEngine_Mesh_ * meshes, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03A68, Mesh_AcquireReadOnlyMeshData_2__MethodInfo); DO_APP_FUNC(0x02D0F6F0, Mesh_MeshDataArray, Mesh_AllocateWritableMeshData, (int32_t meshCount, MethodInfo * method)); DO_APP_FUNC(0x02D0F730, void, Mesh_ApplyAndDisposeWritableMeshData, (Mesh_MeshDataArray data, Mesh * mesh, MeshUpdateFlags__Enum flags, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03AA0, Mesh_ApplyAndDisposeWritableMeshData__MethodInfo); DO_APP_FUNC(0x02D0F950, void, Mesh_ApplyAndDisposeWritableMeshData_1, (Mesh_MeshDataArray data, Mesh__Array * meshes, MeshUpdateFlags__Enum flags, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03A88, Mesh_ApplyAndDisposeWritableMeshData_1__MethodInfo); DO_APP_FUNC(0x02D0FAC0, void, Mesh_ApplyAndDisposeWritableMeshData_2, (Mesh_MeshDataArray data, List_1_UnityEngine_Mesh_ * meshes, MeshUpdateFlags__Enum flags, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03AB8, Mesh_ApplyAndDisposeWritableMeshData_2__MethodInfo); DO_APP_FUNC(0x02D0FC90, GraphicsBuffer *, Mesh_GetVertexBuffer, (Mesh * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D039E8, Mesh_GetVertexBuffer__MethodInfo); DO_APP_FUNC(0x02D0FE10, GraphicsBuffer *, Mesh_GetIndexBuffer, (Mesh * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D039E0, Mesh_GetIndexBuffer__MethodInfo); DO_APP_FUNC(0x02D0FF80, void, Mesh_PrintErrorCantAccessIndices, (Mesh * __this, MethodInfo * method)); DO_APP_FUNC(0x02D10040, bool, Mesh_CheckCanAccessSubmesh, (Mesh * __this, int32_t submesh, bool errorAboutTriangles, MethodInfo * method)); DO_APP_FUNC(0x02D10210, bool, Mesh_CheckCanAccessSubmeshTriangles, (Mesh * __this, int32_t submesh, MethodInfo * method)); @@ -73365,16 +83953,24 @@ DO_APP_FUNC(0x02D103F0, Int32__Array *, Mesh_GetTriangles, (Mesh * __this, int32 DO_APP_FUNC(0x02D10400, Int32__Array *, Mesh_GetTriangles_1, (Mesh * __this, int32_t submesh, bool applyBaseVertex, MethodInfo * method)); DO_APP_FUNC(0x02D10490, void, Mesh_GetTriangles_2, (Mesh * __this, List_1_System_Int32_ * triangles, int32_t submesh, MethodInfo * method)); DO_APP_FUNC(0x02D104B0, void, Mesh_GetTriangles_3, (Mesh * __this, List_1_System_Int32_ * triangles, int32_t submesh, bool applyBaseVertex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03A08, Mesh_GetTriangles_3__MethodInfo); DO_APP_FUNC(0x02D106B0, void, Mesh_GetTriangles_4, (Mesh * __this, List_1_System_UInt16_ * triangles, int32_t submesh, bool applyBaseVertex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03A30, Mesh_GetTriangles_4__MethodInfo); DO_APP_FUNC(0x02D108B0, Int32__Array *, Mesh_GetIndices, (Mesh * __this, int32_t submesh, MethodInfo * method)); DO_APP_FUNC(0x02D10960, Int32__Array *, Mesh_GetIndices_1, (Mesh * __this, int32_t submesh, bool applyBaseVertex, MethodInfo * method)); DO_APP_FUNC(0x02D10A30, void, Mesh_GetIndices_2, (Mesh * __this, List_1_System_Int32_ * indices, int32_t submesh, MethodInfo * method)); DO_APP_FUNC(0x02D10A50, void, Mesh_GetIndices_3, (Mesh * __this, List_1_System_Int32_ * indices, int32_t submesh, bool applyBaseVertex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03980, Mesh_GetIndices_3__MethodInfo); DO_APP_FUNC(0x02D10C40, void, Mesh_GetIndices_4, (Mesh * __this, List_1_System_UInt16_ * indices, int32_t submesh, bool applyBaseVertex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03978, Mesh_GetIndices_4__MethodInfo); DO_APP_FUNC(0x02D10E30, uint32_t, Mesh_GetIndexStart, (Mesh * __this, int32_t submesh, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03970, Mesh_GetIndexStart__MethodInfo); DO_APP_FUNC(0x02D10F30, uint32_t, Mesh_GetIndexCount, (Mesh * __this, int32_t submesh, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03968, Mesh_GetIndexCount__MethodInfo); DO_APP_FUNC(0x02D11030, uint32_t, Mesh_GetBaseVertex, (Mesh * __this, int32_t submesh, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03960, Mesh_GetBaseVertex__MethodInfo); DO_APP_FUNC(0x02D11130, void, Mesh_CheckIndicesArrayRange, (Mesh * __this, int32_t valuesLength, int32_t start, int32_t length, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D039A8, Mesh_CheckIndicesArrayRange__MethodInfo); DO_APP_FUNC(0x02D113C0, void, Mesh_SetTrianglesImpl, (Mesh * __this, int32_t submesh, IndexFormat__Enum indicesFormat, Array * triangles, int32_t trianglesArrayLength, int32_t start, int32_t length, bool calculateBounds, int32_t baseVertex, MethodInfo * method)); DO_APP_FUNC(0x02D114A0, void, Mesh_SetTriangles, (Mesh * __this, Int32__Array * triangles, int32_t submesh, MethodInfo * method)); DO_APP_FUNC(0x02D11550, void, Mesh_SetTriangles_1, (Mesh * __this, Int32__Array * triangles, int32_t submesh, bool calculateBounds, MethodInfo * method)); @@ -73399,11 +83995,14 @@ DO_APP_FUNC(0x02D124B0, void, Mesh_SetIndices_7, (Mesh * __this, List_1_System_I DO_APP_FUNC(0x02D12630, void, Mesh_SetIndices_8, (Mesh * __this, List_1_System_UInt16_ * indices, MeshTopology__Enum topology, int32_t submesh, bool calculateBounds, int32_t baseVertex, MethodInfo * method)); DO_APP_FUNC(0x02D127F0, void, Mesh_SetIndices_9, (Mesh * __this, List_1_System_UInt16_ * indices, int32_t indicesStart, int32_t indicesLength, MeshTopology__Enum topology, int32_t submesh, bool calculateBounds, int32_t baseVertex, MethodInfo * method)); DO_APP_FUNC(0x02D12970, void, Mesh_SetSubMeshes, (Mesh * __this, SubMeshDescriptor__Array * desc, int32_t start, int32_t count, MeshUpdateFlags__Enum flags, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D038E0, Mesh_SetSubMeshes__MethodInfo); DO_APP_FUNC(0x02D12D00, void, Mesh_SetSubMeshes_1, (Mesh * __this, SubMeshDescriptor__Array * desc, MeshUpdateFlags__Enum flags, MethodInfo * method)); DO_APP_FUNC(0x02D12D40, void, Mesh_SetSubMeshes_2, (Mesh * __this, List_1_UnityEngine_Rendering_SubMeshDescriptor_ * desc, int32_t start, int32_t count, MeshUpdateFlags__Enum flags, MethodInfo * method)); DO_APP_FUNC(0x02D12DC0, void, Mesh_SetSubMeshes_3, (Mesh * __this, List_1_UnityEngine_Rendering_SubMeshDescriptor_ * desc, MeshUpdateFlags__Enum flags, MethodInfo * method)); DO_APP_FUNC(0x02D12E60, void, Mesh_GetBindposes, (Mesh * __this, List_1_UnityEngine_Matrix4x4_ * bindposes, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D038E8, Mesh_GetBindposes__MethodInfo); DO_APP_FUNC(0x02D13020, void, Mesh_GetBoneWeights, (Mesh * __this, List_1_UnityEngine_BoneWeight_ * boneWeights, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03918, Mesh_GetBoneWeights__MethodInfo); DO_APP_FUNC(0x02D09E50, BoneWeight__Array *, Mesh_get_boneWeights, (Mesh * __this, MethodInfo * method)); DO_APP_FUNC(0x02D09EA0, void, Mesh_set_boneWeights, (Mesh * __this, BoneWeight__Array * value, MethodInfo * method)); DO_APP_FUNC(0x02D0A9D0, void, Mesh_Clear, (Mesh * __this, bool keepVertexLayout, MethodInfo * method)); @@ -73426,46 +84025,51 @@ DO_APP_FUNC(0x02D14460, void, Mesh_CombineMeshes, (Mesh * __this, CombineInstanc DO_APP_FUNC(0x02D14480, void, Mesh_CombineMeshes_1, (Mesh * __this, CombineInstance__Array * combine, bool mergeSubMeshes, bool useMatrices, MethodInfo * method)); DO_APP_FUNC(0x02D144A0, void, Mesh_CombineMeshes_2, (Mesh * __this, CombineInstance__Array * combine, bool mergeSubMeshes, MethodInfo * method)); DO_APP_FUNC(0x02D144C0, void, Mesh_CombineMeshes_3, (Mesh * __this, CombineInstance__Array * combine, MethodInfo * method)); -DO_APP_FUNC(0x02D144F0, void, Mesh_GetVertexAttribute_Injected, (Mesh * __this, int32_t index, VertexAttributeDescriptor ret, MethodInfo * method)); -DO_APP_FUNC(0x02D14560, void, Mesh_SetSubMesh_Injected, (Mesh * __this, int32_t index, SubMeshDescriptor desc, MeshUpdateFlags__Enum flags, MethodInfo * method)); -DO_APP_FUNC(0x02D145E0, void, Mesh_GetSubMesh_Injected, (Mesh * __this, int32_t index, SubMeshDescriptor ret, MethodInfo * method)); -DO_APP_FUNC(0x02D14650, void, Mesh_get_bounds_Injected, (Mesh * __this, Bounds ret, MethodInfo * method)); -DO_APP_FUNC(0x02D146B0, void, Mesh_set_bounds_Injected, (Mesh * __this, Bounds value, MethodInfo * method)); +DO_APP_FUNC(0x02D144F0, void, Mesh_GetVertexAttribute_Injected, (Mesh * __this, int32_t index, VertexAttributeDescriptor * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D14560, void, Mesh_SetSubMesh_Injected, (Mesh * __this, int32_t index, SubMeshDescriptor * desc, MeshUpdateFlags__Enum flags, MethodInfo * method)); +DO_APP_FUNC(0x02D145E0, void, Mesh_GetSubMesh_Injected, (Mesh * __this, int32_t index, SubMeshDescriptor * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D14650, void, Mesh_get_bounds_Injected, (Mesh * __this, Bounds * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D146B0, void, Mesh_set_bounds_Injected, (Mesh * __this, Bounds * value, MethodInfo * method)); DO_APP_FUNC(0x02D14840, void, Mesh_MeshDataArray_AcquireReadOnlyMeshData, (Mesh * mesh, void * * datas, MethodInfo * method)); DO_APP_FUNC(0x02D148A0, void, Mesh_MeshDataArray_AcquireReadOnlyMeshDatas, (Mesh__Array * meshes, void * * datas, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x02D14910, void, Mesh_MeshDataArray_ReleaseMeshDatas, (void * * datas, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x02D14970, void, Mesh_MeshDataArray_CreateNewMeshDatas, (void * * datas, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x02D149D0, void, Mesh_MeshDataArray_ApplyToMeshesImpl, (Mesh__Array * meshes, void * * datas, int32_t count, MeshUpdateFlags__Enum flags, MethodInfo * method)); DO_APP_FUNC(0x02D14A50, void, Mesh_MeshDataArray_ApplyToMeshImpl, (Mesh * mesh, void * data, MeshUpdateFlags__Enum flags, MethodInfo * method)); -DO_APP_FUNC(0x00471920, int32_t, Mesh_MeshDataArray_get_Length, (Mesh_MeshDataArray__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D14AC0, void, Mesh_MeshDataArray_Dispose, (Mesh_MeshDataArray__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D14B80, void, Mesh_MeshDataArray_ApplyToMeshAndDispose, (Mesh_MeshDataArray__Boxed * __this, Mesh * mesh, MeshUpdateFlags__Enum flags, MethodInfo * method)); -DO_APP_FUNC(0x02D14CF0, void, Mesh_MeshDataArray_ApplyToMeshesAndDispose, (Mesh_MeshDataArray__Boxed * __this, Mesh__Array * meshes, MeshUpdateFlags__Enum flags, MethodInfo * method)); -DO_APP_FUNC(0x02D14FF0, void, Mesh_MeshDataArray__ctor, (Mesh_MeshDataArray__Boxed * __this, Mesh * mesh, bool checkReadWrite, MethodInfo * method)); -DO_APP_FUNC(0x02D15300, void, Mesh_MeshDataArray__ctor_1, (Mesh_MeshDataArray__Boxed * __this, Mesh__Array * meshes, int32_t meshesCount, bool checkReadWrite, MethodInfo * method)); -DO_APP_FUNC(0x02D15710, void, Mesh_MeshDataArray__ctor_2, (Mesh_MeshDataArray__Boxed * __this, int32_t meshesCount, MethodInfo * method)); -DO_APP_FUNC(0x02CE2130, float, BoneWeight_get_weight0, (BoneWeight__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C42840, void, BoneWeight_set_weight0, (BoneWeight__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02CCAAD0, float, BoneWeight_get_weight1, (BoneWeight__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CE2140, float, BoneWeight_get_weight2, (BoneWeight__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CCABB0, float, BoneWeight_get_weight3, (BoneWeight__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01E8EBD0, int32_t, BoneWeight_get_boneIndex0, (BoneWeight__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD60, void, BoneWeight_set_boneIndex0, (BoneWeight__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x0143B290, int32_t, BoneWeight_get_boneIndex1, (BoneWeight__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x011227E0, int32_t, BoneWeight_get_boneIndex2, (BoneWeight__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x015C0B10, int32_t, BoneWeight_get_boneIndex3, (BoneWeight__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D158D0, int32_t, BoneWeight_GetHashCode, (BoneWeight__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D15AB0, bool, BoneWeight_Equals, (BoneWeight__Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x02D15BC0, bool, BoneWeight_Equals_1, (BoneWeight__Boxed * __this, BoneWeight other, MethodInfo * method)); -DO_APP_FUNC(0x02CE2130, float, BoneWeight1_get_weight, (BoneWeight1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C4B40, int32_t, BoneWeight1_get_boneIndex, (BoneWeight1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D15C20, bool, BoneWeight1_Equals, (BoneWeight1__Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x02D15CB0, bool, BoneWeight1_Equals_1, (BoneWeight1__Boxed * __this, BoneWeight1 other, MethodInfo * method)); -DO_APP_FUNC(0x02D15D10, int32_t, BoneWeight1_GetHashCode, (BoneWeight1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D15D80, void, CombineInstance_set_mesh, (CombineInstance__Boxed * __this, Mesh * value, MethodInfo * method)); -DO_APP_FUNC(0x02D15EA0, void, CombineInstance_set_transform, (CombineInstance__Boxed * __this, Matrix4x4 value, MethodInfo * method)); -DO_APP_FUNC(0x021F3A70, void, CombineInstance_set_lightmapScaleOffset, (CombineInstance__Boxed * __this, Vector4 value, MethodInfo * method)); -DO_APP_FUNC(0x021F3A80, void, CombineInstance_set_realtimeLightmapScaleOffset, (CombineInstance__Boxed * __this, Vector4 value, MethodInfo * method)); +DO_APP_FUNC(0x00471920, int32_t, Mesh_MeshDataArray_get_Length, (Mesh_MeshDataArray * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D14AC0, void, Mesh_MeshDataArray_Dispose, (Mesh_MeshDataArray * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D14B80, void, Mesh_MeshDataArray_ApplyToMeshAndDispose, (Mesh_MeshDataArray * __this, Mesh * mesh, MeshUpdateFlags__Enum flags, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07B30, Mesh_MeshDataArray_ApplyToMeshAndDispose__MethodInfo); +DO_APP_FUNC(0x02D14CF0, void, Mesh_MeshDataArray_ApplyToMeshesAndDispose, (Mesh_MeshDataArray * __this, Mesh__Array * meshes, MeshUpdateFlags__Enum flags, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07B20, Mesh_MeshDataArray_ApplyToMeshesAndDispose__MethodInfo); +DO_APP_FUNC(0x02D14FF0, void, Mesh_MeshDataArray__ctor, (Mesh_MeshDataArray * __this, Mesh * mesh, bool checkReadWrite, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07B48, Mesh_MeshDataArray__ctor__MethodInfo); +DO_APP_FUNC(0x02D15300, void, Mesh_MeshDataArray__ctor_1, (Mesh_MeshDataArray * __this, Mesh__Array * meshes, int32_t meshesCount, bool checkReadWrite, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07B38, Mesh_MeshDataArray__ctor_1__MethodInfo); +DO_APP_FUNC(0x02D15710, void, Mesh_MeshDataArray__ctor_2, (Mesh_MeshDataArray * __this, int32_t meshesCount, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07B68, Mesh_MeshDataArray__ctor_2__MethodInfo); +DO_APP_FUNC(0x02CE2130, float, BoneWeight_get_weight0, (BoneWeight * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C42840, void, BoneWeight_set_weight0, (BoneWeight * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02CCAAD0, float, BoneWeight_get_weight1, (BoneWeight * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CE2140, float, BoneWeight_get_weight2, (BoneWeight * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CCABB0, float, BoneWeight_get_weight3, (BoneWeight * __this, MethodInfo * method)); +DO_APP_FUNC(0x01E8EBD0, int32_t, BoneWeight_get_boneIndex0, (BoneWeight * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD60, void, BoneWeight_set_boneIndex0, (BoneWeight * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x0143B290, int32_t, BoneWeight_get_boneIndex1, (BoneWeight * __this, MethodInfo * method)); +DO_APP_FUNC(0x011227E0, int32_t, BoneWeight_get_boneIndex2, (BoneWeight * __this, MethodInfo * method)); +DO_APP_FUNC(0x015C0B10, int32_t, BoneWeight_get_boneIndex3, (BoneWeight * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D158D0, int32_t, BoneWeight_GetHashCode, (BoneWeight * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D15AB0, bool, BoneWeight_Equals, (BoneWeight * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x02D15BC0, bool, BoneWeight_Equals_1, (BoneWeight * __this, BoneWeight other, MethodInfo * method)); +DO_APP_FUNC(0x02CE2130, float, BoneWeight1_get_weight, (BoneWeight1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C4B40, int32_t, BoneWeight1_get_boneIndex, (BoneWeight1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D15C20, bool, BoneWeight1_Equals, (BoneWeight1 * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x02D15CB0, bool, BoneWeight1_Equals_1, (BoneWeight1 * __this, BoneWeight1 other, MethodInfo * method)); +DO_APP_FUNC(0x02D15D10, int32_t, BoneWeight1_GetHashCode, (BoneWeight1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D15D80, void, CombineInstance_set_mesh, (CombineInstance * __this, Mesh * value, MethodInfo * method)); +DO_APP_FUNC(0x02D15EA0, void, CombineInstance_set_transform, (CombineInstance * __this, Matrix4x4 value, MethodInfo * method)); +DO_APP_FUNC(0x021F3A70, void, CombineInstance_set_lightmapScaleOffset, (CombineInstance * __this, Vector4 value, MethodInfo * method)); +DO_APP_FUNC(0x021F3A80, void, CombineInstance_set_realtimeLightmapScaleOffset, (CombineInstance * __this, Vector4 value, MethodInfo * method)); DO_APP_FUNC(0x02D15EC0, void, Texture__ctor, (Texture * __this, MethodInfo * method)); DO_APP_FUNC(0x02D15F10, int32_t, Texture_get_mipmapCount, (Texture * __this, MethodInfo * method)); DO_APP_FUNC(0x02D15F60, GraphicsFormat__Enum, Texture_get_graphicsFormat, (Texture * __this, MethodInfo * method)); @@ -73474,10 +84078,13 @@ DO_APP_FUNC(0x02D16040, int32_t, Texture_GetDataHeight, (Texture * __this, Metho DO_APP_FUNC(0x02D16090, TextureDimension__Enum, Texture_GetDimension, (Texture * __this, MethodInfo * method)); DO_APP_FUNC(0x02D15FF0, int32_t, Texture_get_width, (Texture * __this, MethodInfo * method)); DO_APP_FUNC(0x02D160E0, void, Texture_set_width, (Texture * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07AF8, Texture_set_width__MethodInfo); DO_APP_FUNC(0x02D16040, int32_t, Texture_get_height, (Texture * __this, MethodInfo * method)); DO_APP_FUNC(0x02D16130, void, Texture_set_height, (Texture * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07AF0, Texture_set_height__MethodInfo); DO_APP_FUNC(0x02D16090, TextureDimension__Enum, Texture_get_dimension, (Texture * __this, MethodInfo * method)); DO_APP_FUNC(0x02D16180, void, Texture_set_dimension, (Texture * __this, TextureDimension__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07AE8, Texture_set_dimension__MethodInfo); DO_APP_FUNC(0x02D161D0, bool, Texture_get_isReadable, (Texture * __this, MethodInfo * method)); DO_APP_FUNC(0x02D16220, TextureWrapMode__Enum, Texture_get_wrapMode, (Texture * __this, MethodInfo * method)); DO_APP_FUNC(0x02D16270, void, Texture_set_wrapMode, (Texture * __this, TextureWrapMode__Enum value, MethodInfo * method)); @@ -73506,7 +84113,7 @@ DO_APP_FUNC(0x02D16CA0, bool, Texture_ValidateFormat_1, (Texture * __this, Graph DO_APP_FUNC(0x02D16F10, UnityException *, Texture_CreateNonReadableException, (Texture * __this, Texture * t, MethodInfo * method)); DO_APP_FUNC(0x02D16FF0, UnityException *, Texture_CreateNativeArrayLengthOverflowException, (Texture * __this, MethodInfo * method)); DO_APP_FUNC(0x02D17060, void, Texture__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02D170A0, void, Texture_get_texelSize_Injected, (Texture * __this, Vector2 ret, MethodInfo * method)); +DO_APP_FUNC(0x02D170A0, void, Texture_get_texelSize_Injected, (Texture * __this, Vector2 * ret, MethodInfo * method)); DO_APP_FUNC(0x02D17100, TextureFormat__Enum, Texture2D_get_format, (Texture2D * __this, MethodInfo * method)); DO_APP_FUNC(0x02D17150, bool, Texture2D_get_ignoreMipmapLimit, (Texture2D * __this, MethodInfo * method)); DO_APP_FUNC(0x02D171A0, void, Texture2D_set_ignoreMipmapLimit, (Texture2D * __this, bool value, MethodInfo * method)); @@ -73519,6 +84126,7 @@ DO_APP_FUNC(0x02D17390, Texture2D *, Texture2D_get_normalTexture, (MethodInfo * DO_APP_FUNC(0x02D173E0, void, Texture2D_Compress, (Texture2D * __this, bool highQuality, MethodInfo * method)); DO_APP_FUNC(0x02D17440, bool, Texture2D_Internal_CreateImpl, (Texture2D * mono, int32_t w, int32_t h, int32_t mipCount, GraphicsFormat__Enum format, TextureColorSpace__Enum colorSpace, TextureCreationFlags__Enum flags, void * nativeTex, MethodInfo * method)); DO_APP_FUNC(0x02D174C0, void, Texture2D_Internal_Create, (Texture2D * mono, int32_t w, int32_t h, int32_t mipCount, GraphicsFormat__Enum format, TextureColorSpace__Enum colorSpace, TextureCreationFlags__Enum flags, void * nativeTex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07990, Texture2D_Internal_Create__MethodInfo); DO_APP_FUNC(0x02D175C0, bool, Texture2D_get_isReadable, (Texture2D * __this, MethodInfo * method)); DO_APP_FUNC(0x02D17610, bool, Texture2D_get_vtOnly, (Texture2D * __this, MethodInfo * method)); DO_APP_FUNC(0x02D17660, void, Texture2D_ApplyImpl, (Texture2D * __this, bool updateMipmaps, bool makeNoLongerReadable, MethodInfo * method)); @@ -73564,7 +84172,9 @@ DO_APP_FUNC(0x02D18690, Rect__Array *, Texture2D_PackTextures, (Texture2D * __th DO_APP_FUNC(0x02D18720, Rect__Array *, Texture2D_PackTextures_1, (Texture2D * __this, Texture2D__Array * textures, int32_t padding, int32_t maximumAtlasSize, MethodInfo * method)); DO_APP_FUNC(0x02D187B0, Rect__Array *, Texture2D_PackTextures_2, (Texture2D * __this, Texture2D__Array * textures, int32_t padding, MethodInfo * method)); DO_APP_FUNC(0x02D18830, bool, Texture2D_ValidateFormat, (Texture2D * __this, TextureFormat__Enum format, int32_t width, int32_t height, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07890, Texture2D_ValidateFormat__MethodInfo); DO_APP_FUNC(0x02D18940, bool, Texture2D_ValidateFormat_1, (Texture2D * __this, GraphicsFormat__Enum format, int32_t width, int32_t height, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07888, Texture2D_ValidateFormat_1__MethodInfo); DO_APP_FUNC(0x02D18AC0, void, Texture2D__ctor, (Texture2D * __this, int32_t width, int32_t height, GraphicsFormat__Enum format, TextureCreationFlags__Enum flags, int32_t mipCount, void * nativeTex, MethodInfo * method)); DO_APP_FUNC(0x02D18D20, void, Texture2D__ctor_1, (Texture2D * __this, int32_t width, int32_t height, DefaultFormat__Enum format, TextureCreationFlags__Enum flags, MethodInfo * method)); DO_APP_FUNC(0x02D18DB0, void, Texture2D__ctor_2, (Texture2D * __this, int32_t width, int32_t height, GraphicsFormat__Enum format, TextureCreationFlags__Enum flags, MethodInfo * method)); @@ -73575,47 +84185,65 @@ DO_APP_FUNC(0x02D19220, void, Texture2D__ctor_6, (Texture2D * __this, int32_t wi DO_APP_FUNC(0x02D192C0, void, Texture2D__ctor_7, (Texture2D * __this, int32_t width, int32_t height, TextureFormat__Enum textureFormat, bool mipChain, MethodInfo * method)); DO_APP_FUNC(0x02D19360, void, Texture2D__ctor_8, (Texture2D * __this, int32_t width, int32_t height, MethodInfo * method)); DO_APP_FUNC(0x02D19420, Texture2D *, Texture2D_CreateExternalTexture, (int32_t width, int32_t height, TextureFormat__Enum format, bool mipChain, bool linear, void * nativeTex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D077E0, Texture2D_CreateExternalTexture__MethodInfo); DO_APP_FUNC(0x02D19560, void, Texture2D_SetPixel, (Texture2D * __this, int32_t x, int32_t y, Color color, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D077D0, Texture2D_SetPixel__MethodInfo); DO_APP_FUNC(0x02D19640, void, Texture2D_SetPixel_1, (Texture2D * __this, int32_t x, int32_t y, Color color, int32_t mipLevel, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D077C8, Texture2D_SetPixel_1__MethodInfo); DO_APP_FUNC(0x02D19720, void, Texture2D_SetPixels, (Texture2D * __this, int32_t x, int32_t y, int32_t blockWidth, int32_t blockHeight, Color__Array * colors, int32_t miplevel, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07838, Texture2D_SetPixels__MethodInfo); DO_APP_FUNC(0x02D197F0, void, Texture2D_SetPixels_1, (Texture2D * __this, int32_t x, int32_t y, int32_t blockWidth, int32_t blockHeight, Color__Array * colors, MethodInfo * method)); DO_APP_FUNC(0x02D19820, void, Texture2D_SetPixels_2, (Texture2D * __this, Color__Array * colors, int32_t miplevel, MethodInfo * method)); DO_APP_FUNC(0x02D198D0, void, Texture2D_SetPixels_3, (Texture2D * __this, Color__Array * colors, MethodInfo * method)); DO_APP_FUNC(0x02D19950, Color, Texture2D_GetPixel, (Texture2D * __this, int32_t x, int32_t y, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07830, Texture2D_GetPixel__MethodInfo); DO_APP_FUNC(0x02D19A40, Color, Texture2D_GetPixel_1, (Texture2D * __this, int32_t x, int32_t y, int32_t mipLevel, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07820, Texture2D_GetPixel_1__MethodInfo); DO_APP_FUNC(0x02D19B30, Color, Texture2D_GetPixelBilinear, (Texture2D * __this, float u, float v, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07810, Texture2D_GetPixelBilinear__MethodInfo); DO_APP_FUNC(0x02D19C20, Color, Texture2D_GetPixelBilinear_1, (Texture2D * __this, float u, float v, int32_t mipLevel, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07800, Texture2D_GetPixelBilinear_1__MethodInfo); DO_APP_FUNC(0x02D19D10, void, Texture2D_LoadRawTextureData, (Texture2D * __this, void * data, int32_t size, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07868, Texture2D_LoadRawTextureData__MethodInfo); DO_APP_FUNC(0x02D19EA0, void, Texture2D_LoadRawTextureData_1, (Texture2D * __this, Byte__Array * data, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07858, Texture2D_LoadRawTextureData_1__MethodInfo); DO_APP_FUNC(0x02D1A000, void, Texture2D_Apply, (Texture2D * __this, bool updateMipmaps, bool makeNoLongerReadable, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07848, Texture2D_Apply__MethodInfo); DO_APP_FUNC(0x02D1A0C0, void, Texture2D_Apply_1, (Texture2D * __this, bool updateMipmaps, MethodInfo * method)); DO_APP_FUNC(0x02D1A0D0, void, Texture2D_Apply_2, (Texture2D * __this, MethodInfo * method)); DO_APP_FUNC(0x02D1A0E0, bool, Texture2D_Reinitialize, (Texture2D * __this, int32_t width, int32_t height, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07840, Texture2D_Reinitialize__MethodInfo); DO_APP_FUNC(0x02D1A190, bool, Texture2D_Reinitialize_1, (Texture2D * __this, int32_t width, int32_t height, TextureFormat__Enum format, bool hasMipMap, MethodInfo * method)); DO_APP_FUNC(0x02D1A280, bool, Texture2D_Reinitialize_2, (Texture2D * __this, int32_t width, int32_t height, GraphicsFormat__Enum format, bool hasMipMap, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07720, Texture2D_Reinitialize_2__MethodInfo); DO_APP_FUNC(0x02D1A320, bool, Texture2D_Resize, (Texture2D * __this, int32_t width, int32_t height, MethodInfo * method)); DO_APP_FUNC(0x02D1A330, bool, Texture2D_Resize_1, (Texture2D * __this, int32_t width, int32_t height, TextureFormat__Enum format, bool hasMipMap, MethodInfo * method)); DO_APP_FUNC(0x02D1A280, bool, Texture2D_Resize_2, (Texture2D * __this, int32_t width, int32_t height, GraphicsFormat__Enum format, bool hasMipMap, MethodInfo * method)); DO_APP_FUNC(0x02D1A350, void, Texture2D_ReadPixels, (Texture2D * __this, Rect source, int32_t destX, int32_t destY, bool recalculateMipMaps, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07718, Texture2D_ReadPixels__MethodInfo); DO_APP_FUNC(0x02D1A430, void, Texture2D_ReadPixels_1, (Texture2D * __this, Rect source, int32_t destX, int32_t destY, MethodInfo * method)); DO_APP_FUNC(0x02D1A500, bool, Texture2D_GenerateAtlas, (Vector2__Array * sizes, int32_t padding, int32_t atlasSize, List_1_UnityEngine_Rect_ * results, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07750, Texture2D_GenerateAtlas__MethodInfo); DO_APP_FUNC(0x02D18380, void, Texture2D_SetPixels32, (Texture2D * __this, Color32__Array * colors, int32_t miplevel, MethodInfo * method)); DO_APP_FUNC(0x02D1A860, void, Texture2D_SetPixels32_1, (Texture2D * __this, Color32__Array * colors, MethodInfo * method)); DO_APP_FUNC(0x02D183F0, void, Texture2D_SetPixels32_2, (Texture2D * __this, int32_t x, int32_t y, int32_t blockWidth, int32_t blockHeight, Color32__Array * colors, int32_t miplevel, MethodInfo * method)); DO_APP_FUNC(0x02D1A8D0, void, Texture2D_SetPixels32_3, (Texture2D * __this, int32_t x, int32_t y, int32_t blockWidth, int32_t blockHeight, Color32__Array * colors, MethodInfo * method)); DO_APP_FUNC(0x02D1A960, Color__Array *, Texture2D_GetPixels_2, (Texture2D * __this, int32_t miplevel, MethodInfo * method)); DO_APP_FUNC(0x02D1AA40, Color__Array *, Texture2D_GetPixels_3, (Texture2D * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D1AB00, void, Texture2D_SetPixelImpl_Injected, (Texture2D * __this, int32_t image, int32_t mip, int32_t x, int32_t y, Color color, MethodInfo * method)); -DO_APP_FUNC(0x02D1AB80, void, Texture2D_GetPixelImpl_Injected, (Texture2D * __this, int32_t image, int32_t mip, int32_t x, int32_t y, Color ret, MethodInfo * method)); -DO_APP_FUNC(0x02D1AC00, void, Texture2D_GetPixelBilinearImpl_Injected, (Texture2D * __this, int32_t image, int32_t mip, float u, float v, Color ret, MethodInfo * method)); -DO_APP_FUNC(0x02D1AC80, void, Texture2D_ReadPixelsImpl_Injected, (Texture2D * __this, Rect source, int32_t destX, int32_t destY, bool recalculateMipMaps, MethodInfo * method)); +DO_APP_FUNC(0x02D1AB00, void, Texture2D_SetPixelImpl_Injected, (Texture2D * __this, int32_t image, int32_t mip, int32_t x, int32_t y, Color * color, MethodInfo * method)); +DO_APP_FUNC(0x02D1AB80, void, Texture2D_GetPixelImpl_Injected, (Texture2D * __this, int32_t image, int32_t mip, int32_t x, int32_t y, Color * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D1AC00, void, Texture2D_GetPixelBilinearImpl_Injected, (Texture2D * __this, int32_t image, int32_t mip, float u, float v, Color * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D1AC80, void, Texture2D_ReadPixelsImpl_Injected, (Texture2D * __this, Rect * source, int32_t destX, int32_t destY, bool recalculateMipMaps, MethodInfo * method)); DO_APP_FUNC(0x02D1AD10, bool, Cubemap_Internal_CreateImpl, (Cubemap * mono, int32_t ext, int32_t mipCount, GraphicsFormat__Enum format, TextureColorSpace__Enum colorSpace, TextureCreationFlags__Enum flags, void * nativeTex, MethodInfo * method)); DO_APP_FUNC(0x02D1AD90, void, Cubemap_Internal_Create, (Cubemap * mono, int32_t ext, int32_t mipCount, GraphicsFormat__Enum format, TextureColorSpace__Enum colorSpace, TextureCreationFlags__Enum flags, void * nativeTex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D077B0, Cubemap_Internal_Create__MethodInfo); DO_APP_FUNC(0x02D1AE90, void, Cubemap_ApplyImpl, (Cubemap * __this, bool updateMipmaps, bool makeNoLongerReadable, MethodInfo * method)); DO_APP_FUNC(0x02D1AF10, bool, Cubemap_get_isReadable, (Cubemap * __this, MethodInfo * method)); DO_APP_FUNC(0x02D1AF60, void, Cubemap_SetPixelImpl, (Cubemap * __this, int32_t image, int32_t mip, int32_t x, int32_t y, Color color, MethodInfo * method)); DO_APP_FUNC(0x02D1B000, bool, Cubemap_ValidateFormat, (Cubemap * __this, TextureFormat__Enum format, int32_t width, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07780, Cubemap_ValidateFormat__MethodInfo); DO_APP_FUNC(0x02D1B120, bool, Cubemap_ValidateFormat_1, (Cubemap * __this, GraphicsFormat__Enum format, int32_t width, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07688, Cubemap_ValidateFormat_1__MethodInfo); DO_APP_FUNC(0x02D1B2C0, void, Cubemap__ctor, (Cubemap * __this, int32_t width, DefaultFormat__Enum format, TextureCreationFlags__Enum flags, MethodInfo * method)); DO_APP_FUNC(0x02D1B350, void, Cubemap__ctor_1, (Cubemap * __this, int32_t width, GraphicsFormat__Enum format, TextureCreationFlags__Enum flags, MethodInfo * method)); DO_APP_FUNC(0x02D1B490, void, Cubemap__ctor_2, (Cubemap * __this, int32_t width, TextureFormat__Enum format, int32_t mipCount, MethodInfo * method)); @@ -73625,10 +84253,13 @@ DO_APP_FUNC(0x02D1B8D0, void, Cubemap__ctor_5, (Cubemap * __this, int32_t width, DO_APP_FUNC(0x02D1B8F0, void, Cubemap__ctor_6, (Cubemap * __this, int32_t width, TextureFormat__Enum textureFormat, bool mipChain, MethodInfo * method)); DO_APP_FUNC(0x02D1B980, void, Cubemap_SetPixel, (Cubemap * __this, CubemapFace__Enum face, int32_t x, int32_t y, Color color, MethodInfo * method)); DO_APP_FUNC(0x02D1BA60, void, Cubemap_SetPixel_1, (Cubemap * __this, CubemapFace__Enum face, int32_t x, int32_t y, Color color, int32_t mip, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D076B0, Cubemap_SetPixel_1__MethodInfo); DO_APP_FUNC(0x02D1BB40, void, Cubemap_Apply, (Cubemap * __this, bool updateMipmaps, bool makeNoLongerReadable, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D076A8, Cubemap_Apply__MethodInfo); DO_APP_FUNC(0x02D1BC00, void, Cubemap_Apply_1, (Cubemap * __this, MethodInfo * method)); DO_APP_FUNC(0x02D1BCA0, void, Cubemap_ValidateIsNotCrunched, (TextureCreationFlags__Enum flags, MethodInfo * method)); -DO_APP_FUNC(0x02D1BD10, void, Cubemap_SetPixelImpl_Injected, (Cubemap * __this, int32_t image, int32_t mip, int32_t x, int32_t y, Color color, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07698, Cubemap_ValidateIsNotCrunched__MethodInfo); +DO_APP_FUNC(0x02D1BD10, void, Cubemap_SetPixelImpl_Injected, (Cubemap * __this, int32_t image, int32_t mip, int32_t x, int32_t y, Color * color, MethodInfo * method)); DO_APP_FUNC(0x02D1BD90, int32_t, Texture3D_get_depth, (Texture3D * __this, MethodInfo * method)); DO_APP_FUNC(0x02D1BDE0, TextureFormat__Enum, Texture3D_get_format, (Texture3D * __this, MethodInfo * method)); DO_APP_FUNC(0x02D1BE30, bool, Texture3D_get_isReadable, (Texture3D * __this, MethodInfo * method)); @@ -73637,6 +84268,7 @@ DO_APP_FUNC(0x02D1BF20, Color, Texture3D_GetPixelImpl, (Texture3D * __this, int3 DO_APP_FUNC(0x02D1BFC0, Color, Texture3D_GetPixelBilinearImpl, (Texture3D * __this, int32_t mip, float u, float v, float w, MethodInfo * method)); DO_APP_FUNC(0x02D1C060, bool, Texture3D_Internal_CreateImpl, (Texture3D * mono, int32_t w, int32_t h, int32_t d, int32_t mipCount, GraphicsFormat__Enum format, TextureColorSpace__Enum colorSpace, TextureCreationFlags__Enum flags, void * nativeTex, MethodInfo * method)); DO_APP_FUNC(0x02D1C0E0, void, Texture3D_Internal_Create, (Texture3D * mono, int32_t w, int32_t h, int32_t d, int32_t mipCount, GraphicsFormat__Enum format, TextureColorSpace__Enum colorSpace, TextureCreationFlags__Enum flags, void * nativeTex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D076E8, Texture3D_Internal_Create__MethodInfo); DO_APP_FUNC(0x02D1C1F0, void, Texture3D_UpdateExternalTexture, (Texture3D * __this, void * nativeTex, MethodInfo * method)); DO_APP_FUNC(0x02D1C250, void, Texture3D_ApplyImpl, (Texture3D * __this, bool updateMipmaps, bool makeNoLongerReadable, MethodInfo * method)); DO_APP_FUNC(0x02D1C2D0, Color__Array *, Texture3D_GetPixels, (Texture3D * __this, int32_t miplevel, MethodInfo * method)); @@ -73658,29 +84290,41 @@ DO_APP_FUNC(0x02D1CBF0, void, Texture3D__ctor_4, (Texture3D * __this, int32_t wi DO_APP_FUNC(0x02D1CDA0, void, Texture3D__ctor_5, (Texture3D * __this, int32_t width, int32_t height, int32_t depth, TextureFormat__Enum textureFormat, bool mipChain, MethodInfo * method)); DO_APP_FUNC(0x02D1CF70, void, Texture3D__ctor_6, (Texture3D * __this, int32_t width, int32_t height, int32_t depth, TextureFormat__Enum textureFormat, bool mipChain, void * nativeTex, MethodInfo * method)); DO_APP_FUNC(0x02D1CFA0, Texture3D *, Texture3D_CreateExternalTexture, (int32_t width, int32_t height, int32_t depth, TextureFormat__Enum format, bool mipChain, void * nativeTex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07670, Texture3D_CreateExternalTexture__MethodInfo); DO_APP_FUNC(0x02D1D0E0, void, Texture3D_Apply, (Texture3D * __this, bool updateMipmaps, bool makeNoLongerReadable, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07668, Texture3D_Apply__MethodInfo); DO_APP_FUNC(0x02D1D1A0, void, Texture3D_Apply_1, (Texture3D * __this, bool updateMipmaps, MethodInfo * method)); DO_APP_FUNC(0x02D1D1B0, void, Texture3D_Apply_2, (Texture3D * __this, MethodInfo * method)); DO_APP_FUNC(0x02D1D1C0, void, Texture3D_SetPixel, (Texture3D * __this, int32_t x, int32_t y, int32_t z, Color color, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07660, Texture3D_SetPixel__MethodInfo); DO_APP_FUNC(0x02D1D2A0, void, Texture3D_SetPixel_1, (Texture3D * __this, int32_t x, int32_t y, int32_t z, Color color, int32_t mipLevel, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07658, Texture3D_SetPixel_1__MethodInfo); DO_APP_FUNC(0x02D1D380, Color, Texture3D_GetPixel, (Texture3D * __this, int32_t x, int32_t y, int32_t z, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07650, Texture3D_GetPixel__MethodInfo); DO_APP_FUNC(0x02D1D470, Color, Texture3D_GetPixel_1, (Texture3D * __this, int32_t x, int32_t y, int32_t z, int32_t mipLevel, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07648, Texture3D_GetPixel_1__MethodInfo); DO_APP_FUNC(0x02D1D570, Color, Texture3D_GetPixelBilinear, (Texture3D * __this, float u, float v, float w, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07640, Texture3D_GetPixelBilinear__MethodInfo); DO_APP_FUNC(0x02D1D670, Color, Texture3D_GetPixelBilinear_1, (Texture3D * __this, float u, float v, float w, int32_t mipLevel, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07638, Texture3D_GetPixelBilinear_1__MethodInfo); DO_APP_FUNC(0x02D1D770, void, Texture3D_ValidateIsNotCrunched, (TextureCreationFlags__Enum flags, MethodInfo * method)); -DO_APP_FUNC(0x02D1D7E0, void, Texture3D_SetPixelImpl_Injected, (Texture3D * __this, int32_t mip, int32_t x, int32_t y, int32_t z, Color color, MethodInfo * method)); -DO_APP_FUNC(0x02D1D860, void, Texture3D_GetPixelImpl_Injected, (Texture3D * __this, int32_t mip, int32_t x, int32_t y, int32_t z, Color ret, MethodInfo * method)); -DO_APP_FUNC(0x02D1D8E0, void, Texture3D_GetPixelBilinearImpl_Injected, (Texture3D * __this, int32_t mip, float u, float v, float w, Color ret, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D075A8, Texture3D_ValidateIsNotCrunched__MethodInfo); +DO_APP_FUNC(0x02D1D7E0, void, Texture3D_SetPixelImpl_Injected, (Texture3D * __this, int32_t mip, int32_t x, int32_t y, int32_t z, Color * color, MethodInfo * method)); +DO_APP_FUNC(0x02D1D860, void, Texture3D_GetPixelImpl_Injected, (Texture3D * __this, int32_t mip, int32_t x, int32_t y, int32_t z, Color * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D1D8E0, void, Texture3D_GetPixelBilinearImpl_Injected, (Texture3D * __this, int32_t mip, float u, float v, float w, Color * ret, MethodInfo * method)); DO_APP_FUNC(0x02D1D960, int32_t, Texture2DArray_get_allSlices, (MethodInfo * method)); DO_APP_FUNC(0x02D1D9B0, int32_t, Texture2DArray_get_depth, (Texture2DArray * __this, MethodInfo * method)); DO_APP_FUNC(0x02D1DA00, bool, Texture2DArray_get_isReadable, (Texture2DArray * __this, MethodInfo * method)); DO_APP_FUNC(0x02D1DA50, bool, Texture2DArray_Internal_CreateImpl, (Texture2DArray * mono, int32_t w, int32_t h, int32_t d, int32_t mipCount, GraphicsFormat__Enum format, TextureColorSpace__Enum colorSpace, TextureCreationFlags__Enum flags, MethodInfo * method)); DO_APP_FUNC(0x02D1DAD0, void, Texture2DArray_Internal_Create, (Texture2DArray * mono, int32_t w, int32_t h, int32_t d, int32_t mipCount, GraphicsFormat__Enum format, TextureColorSpace__Enum colorSpace, TextureCreationFlags__Enum flags, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D075E0, Texture2DArray_Internal_Create__MethodInfo); DO_APP_FUNC(0x02D1DBD0, void, Texture2DArray_ApplyImpl, (Texture2DArray * __this, bool updateMipmaps, bool makeNoLongerReadable, MethodInfo * method)); DO_APP_FUNC(0x02D1DC50, Color__Array *, Texture2DArray_GetPixels, (Texture2DArray * __this, int32_t arrayElement, int32_t miplevel, MethodInfo * method)); DO_APP_FUNC(0x02D1DCC0, bool, Texture2DArray_SetPixelDataImpl, (Texture2DArray * __this, void * data, int32_t mipLevel, int32_t element, int32_t elementSize, int32_t dataArraySize, int32_t sourceDataStartIndex, MethodInfo * method)); DO_APP_FUNC(0x02D1DD50, bool, Texture2DArray_ValidateFormat, (Texture2DArray * __this, TextureFormat__Enum format, int32_t width, int32_t height, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07610, Texture2DArray_ValidateFormat__MethodInfo); DO_APP_FUNC(0x02D1DE60, bool, Texture2DArray_ValidateFormat_1, (Texture2DArray * __this, GraphicsFormat__Enum format, int32_t width, int32_t height, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07600, Texture2DArray_ValidateFormat_1__MethodInfo); DO_APP_FUNC(0x02D1DFE0, void, Texture2DArray__ctor, (Texture2DArray * __this, int32_t width, int32_t height, int32_t depth, DefaultFormat__Enum format, TextureCreationFlags__Enum flags, MethodInfo * method)); DO_APP_FUNC(0x02D1E0E0, void, Texture2DArray__ctor_1, (Texture2DArray * __this, int32_t width, int32_t height, int32_t depth, GraphicsFormat__Enum format, TextureCreationFlags__Enum flags, MethodInfo * method)); DO_APP_FUNC(0x02D1E190, void, Texture2DArray__ctor_2, (Texture2DArray * __this, int32_t width, int32_t height, int32_t depth, GraphicsFormat__Enum format, TextureCreationFlags__Enum flags, int32_t mipCount, MethodInfo * method)); @@ -73688,11 +84332,14 @@ DO_APP_FUNC(0x02D1E400, void, Texture2DArray__ctor_3, (Texture2DArray * __this, DO_APP_FUNC(0x02D1E670, void, Texture2DArray__ctor_4, (Texture2DArray * __this, int32_t width, int32_t height, int32_t depth, TextureFormat__Enum textureFormat, bool mipChain, bool linear, MethodInfo * method)); DO_APP_FUNC(0x02D1E6A0, void, Texture2DArray__ctor_5, (Texture2DArray * __this, int32_t width, int32_t height, int32_t depth, TextureFormat__Enum textureFormat, bool mipChain, MethodInfo * method)); DO_APP_FUNC(0x02D1E6E0, void, Texture2DArray_Apply, (Texture2DArray * __this, bool updateMipmaps, bool makeNoLongerReadable, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D074F8, Texture2DArray_Apply__MethodInfo); DO_APP_FUNC(0x02D1E7A0, void, Texture2DArray_Apply_1, (Texture2DArray * __this, MethodInfo * method)); DO_APP_FUNC(0x02D1E840, void, Texture2DArray_ValidateIsNotCrunched, (TextureCreationFlags__Enum flags, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D074E8, Texture2DArray_ValidateIsNotCrunched__MethodInfo); DO_APP_FUNC(0x02D1E8B0, bool, CubemapArray_get_isReadable, (CubemapArray * __this, MethodInfo * method)); DO_APP_FUNC(0x02D1E900, bool, CubemapArray_Internal_CreateImpl, (CubemapArray * mono, int32_t ext, int32_t count, int32_t mipCount, GraphicsFormat__Enum format, TextureColorSpace__Enum colorSpace, TextureCreationFlags__Enum flags, MethodInfo * method)); DO_APP_FUNC(0x02D1E980, void, CubemapArray_Internal_Create, (CubemapArray * mono, int32_t ext, int32_t count, int32_t mipCount, GraphicsFormat__Enum format, TextureColorSpace__Enum colorSpace, TextureCreationFlags__Enum flags, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07510, CubemapArray_Internal_Create__MethodInfo); DO_APP_FUNC(0x02D1EA70, void, CubemapArray_ApplyImpl, (CubemapArray * __this, bool updateMipmaps, bool makeNoLongerReadable, MethodInfo * method)); DO_APP_FUNC(0x02D1EAF0, void, CubemapArray_SetPixels, (CubemapArray * __this, Color__Array * colors, CubemapFace__Enum face, int32_t arrayElement, int32_t miplevel, MethodInfo * method)); DO_APP_FUNC(0x02D1EB80, void, CubemapArray_SetPixels_1, (CubemapArray * __this, Color__Array * colors, CubemapFace__Enum face, int32_t arrayElement, MethodInfo * method)); @@ -73703,8 +84350,10 @@ DO_APP_FUNC(0x02D1EF20, void, CubemapArray__ctor_3, (CubemapArray * __this, int3 DO_APP_FUNC(0x02D1F0B0, void, CubemapArray__ctor_4, (CubemapArray * __this, int32_t width, int32_t cubemapCount, TextureFormat__Enum textureFormat, bool mipChain, bool linear, MethodInfo * method)); DO_APP_FUNC(0x02D1F0E0, void, CubemapArray__ctor_5, (CubemapArray * __this, int32_t width, int32_t cubemapCount, TextureFormat__Enum textureFormat, bool mipChain, MethodInfo * method)); DO_APP_FUNC(0x02D1F110, void, CubemapArray_Apply, (CubemapArray * __this, bool updateMipmaps, bool makeNoLongerReadable, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07538, CubemapArray_Apply__MethodInfo); DO_APP_FUNC(0x02D1F1D0, void, CubemapArray_Apply_1, (CubemapArray * __this, MethodInfo * method)); DO_APP_FUNC(0x02D1F270, void, CubemapArray_ValidateIsNotCrunched, (TextureCreationFlags__Enum flags, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07520, CubemapArray_ValidateIsNotCrunched__MethodInfo); DO_APP_FUNC(0x02D1F2E0, int32_t, RenderTexture_get_width, (RenderTexture * __this, MethodInfo * method)); DO_APP_FUNC(0x02D1F330, void, RenderTexture_set_width, (RenderTexture * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x02D1F390, int32_t, RenderTexture_get_height, (RenderTexture * __this, MethodInfo * method)); @@ -73754,6 +84403,7 @@ DO_APP_FUNC(0x02D20370, int32_t, RenderTexture_get_depth, (RenderTexture * __thi DO_APP_FUNC(0x02D203C0, void, RenderTexture__ctor, (RenderTexture * __this, MethodInfo * method)); DO_APP_FUNC(0x02D20440, void, RenderTexture__ctor_1, (RenderTexture * __this, RenderTextureDescriptor desc, MethodInfo * method)); DO_APP_FUNC(0x02D205B0, void, RenderTexture__ctor_2, (RenderTexture * __this, RenderTexture * textureToCopy, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07440, RenderTexture__ctor_2__MethodInfo); DO_APP_FUNC(0x02D20870, void, RenderTexture__ctor_3, (RenderTexture * __this, int32_t width, int32_t height, int32_t depth, DefaultFormat__Enum format, MethodInfo * method)); DO_APP_FUNC(0x02D209E0, void, RenderTexture__ctor_4, (RenderTexture * __this, int32_t width, int32_t height, int32_t depth, GraphicsFormat__Enum format, MethodInfo * method)); DO_APP_FUNC(0x02D20A90, void, RenderTexture__ctor_5, (RenderTexture * __this, int32_t width, int32_t height, int32_t depth, GraphicsFormat__Enum format, int32_t mipCount, MethodInfo * method)); @@ -73770,6 +84420,7 @@ DO_APP_FUNC(0x02D216C0, GraphicsFormat__Enum, RenderTexture_GetDepthStencilForma DO_APP_FUNC(0x02D216D0, GraphicsFormat__Enum, RenderTexture_GetDepthStencilFormatLegacy_3, (int32_t depthBits, bool requestedShadowMap, MethodInfo * method)); DO_APP_FUNC(0x02D21760, RenderTextureDescriptor, RenderTexture_get_descriptor, (RenderTexture * __this, MethodInfo * method)); DO_APP_FUNC(0x02D21810, void, RenderTexture_ValidateRenderTextureDesc, (RenderTextureDescriptor desc, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07328, RenderTexture_ValidateRenderTextureDesc__MethodInfo); DO_APP_FUNC(0x02D21E40, GraphicsFormat__Enum, RenderTexture_GetDefaultColorFormat, (DefaultFormat__Enum format, MethodInfo * method)); DO_APP_FUNC(0x02D21EB0, GraphicsFormat__Enum, RenderTexture_GetDefaultDepthStencilFormat, (DefaultFormat__Enum format, int32_t depth, MethodInfo * method)); DO_APP_FUNC(0x02D21F20, GraphicsFormat__Enum, RenderTexture_GetCompatibleFormat, (RenderTextureFormat__Enum renderTextureFormat, RenderTextureReadWrite__Enum readWrite, MethodInfo * method)); @@ -73781,93 +84432,93 @@ DO_APP_FUNC(0x02D22460, RenderTexture *, RenderTexture_GetTemporary_3, (int32_t DO_APP_FUNC(0x02D22560, RenderTexture *, RenderTexture_GetTemporary_4, (int32_t width, int32_t height, int32_t depthBuffer, RenderTextureFormat__Enum format, RenderTextureReadWrite__Enum readWrite, int32_t antiAliasing, MethodInfo * method)); DO_APP_FUNC(0x02D22650, RenderTexture *, RenderTexture_GetTemporary_5, (int32_t width, int32_t height, int32_t depthBuffer, RenderTextureFormat__Enum format, RenderTextureReadWrite__Enum readWrite, MethodInfo * method)); DO_APP_FUNC(0x02D22740, RenderTexture *, RenderTexture_GetTemporary_6, (int32_t width, int32_t height, int32_t depthBuffer, RenderTextureFormat__Enum format, MethodInfo * method)); -DO_APP_FUNC(0x02D22830, void, RenderTexture_GetColorBuffer_Injected, (RenderTexture * __this, RenderBuffer ret, MethodInfo * method)); -DO_APP_FUNC(0x02D22890, void, RenderTexture_GetDepthBuffer_Injected, (RenderTexture * __this, RenderBuffer ret, MethodInfo * method)); -DO_APP_FUNC(0x02D228F0, void, RenderTexture_SetRenderTextureDescriptor_Injected, (RenderTexture * __this, RenderTextureDescriptor desc, MethodInfo * method)); -DO_APP_FUNC(0x02D22950, void, RenderTexture_GetDescriptor_Injected, (RenderTexture * __this, RenderTextureDescriptor ret, MethodInfo * method)); -DO_APP_FUNC(0x02D229B0, RenderTexture *, RenderTexture_GetTemporary_Internal_Injected, (RenderTextureDescriptor desc, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, RenderTextureDescriptor_get_width, (RenderTextureDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00959BA0, void, RenderTextureDescriptor_set_width, (RenderTextureDescriptor__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00C173E0, int32_t, RenderTextureDescriptor_get_height, (RenderTextureDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018C6CA0, void, RenderTextureDescriptor_set_height, (RenderTextureDescriptor__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00471920, int32_t, RenderTextureDescriptor_get_msaaSamples, (RenderTextureDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018C6CC0, void, RenderTextureDescriptor_set_msaaSamples, (RenderTextureDescriptor__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00E57F20, int32_t, RenderTextureDescriptor_get_volumeDepth, (RenderTextureDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B16CA0, void, RenderTextureDescriptor_set_volumeDepth, (RenderTextureDescriptor__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x003BCD60, void, RenderTextureDescriptor_set_mipCount, (RenderTextureDescriptor__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x0143B290, GraphicsFormat__Enum, RenderTextureDescriptor_get_graphicsFormat, (RenderTextureDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D22A00, void, RenderTextureDescriptor_set_graphicsFormat, (RenderTextureDescriptor__Boxed * __this, GraphicsFormat__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x003CD440, GraphicsFormat__Enum, RenderTextureDescriptor_get_depthStencilFormat, (RenderTextureDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x006D8870, void, RenderTextureDescriptor_set_depthStencilFormat, (RenderTextureDescriptor__Boxed * __this, GraphicsFormat__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x02D22AC0, RenderTextureFormat__Enum, RenderTextureDescriptor_get_colorFormat, (RenderTextureDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D22B70, void, RenderTextureDescriptor_set_colorFormat, (RenderTextureDescriptor__Boxed * __this, RenderTextureFormat__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x02D22C40, bool, RenderTextureDescriptor_get_sRGB, (RenderTextureDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D22CD0, void, RenderTextureDescriptor_set_sRGB, (RenderTextureDescriptor__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02D22E40, int32_t, RenderTextureDescriptor_get_depthBufferBits, (RenderTextureDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D22ED0, void, RenderTextureDescriptor_set_depthBufferBits, (RenderTextureDescriptor__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x003CC980, TextureDimension__Enum, RenderTextureDescriptor_get_dimension, (RenderTextureDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003CC990, void, RenderTextureDescriptor_set_dimension, (RenderTextureDescriptor__Boxed * __this, TextureDimension__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x003CD280, ShadowSamplingMode__Enum, RenderTextureDescriptor_get_shadowSamplingMode, (RenderTextureDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x006D8950, void, RenderTextureDescriptor_set_shadowSamplingMode, (RenderTextureDescriptor__Boxed * __this, ShadowSamplingMode__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x00421680, VRTextureUsage__Enum, RenderTextureDescriptor_get_vrUsage, (RenderTextureDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00421690, void, RenderTextureDescriptor_set_vrUsage, (RenderTextureDescriptor__Boxed * __this, VRTextureUsage__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x003C7300, RenderTextureMemoryless__Enum, RenderTextureDescriptor_get_memoryless, (RenderTextureDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003C7310, void, RenderTextureDescriptor_set_memoryless, (RenderTextureDescriptor__Boxed * __this, RenderTextureMemoryless__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x02D22F00, void, RenderTextureDescriptor__ctor, (RenderTextureDescriptor__Boxed * __this, int32_t width, int32_t height, MethodInfo * method)); -DO_APP_FUNC(0x02D22F20, void, RenderTextureDescriptor__ctor_1, (RenderTextureDescriptor__Boxed * __this, int32_t width, int32_t height, RenderTextureFormat__Enum colorFormat, MethodInfo * method)); -DO_APP_FUNC(0x02D22F40, void, RenderTextureDescriptor__ctor_2, (RenderTextureDescriptor__Boxed * __this, int32_t width, int32_t height, RenderTextureFormat__Enum colorFormat, int32_t depthBufferBits, MethodInfo * method)); -DO_APP_FUNC(0x02D22FF0, void, RenderTextureDescriptor__ctor_3, (RenderTextureDescriptor__Boxed * __this, int32_t width, int32_t height, RenderTextureFormat__Enum colorFormat, int32_t depthBufferBits, int32_t mipCount, MethodInfo * method)); -DO_APP_FUNC(0x02D23020, void, RenderTextureDescriptor__ctor_4, (RenderTextureDescriptor__Boxed * __this, int32_t width, int32_t height, RenderTextureFormat__Enum colorFormat, int32_t depthBufferBits, int32_t mipCount, RenderTextureReadWrite__Enum readWrite, MethodInfo * method)); -DO_APP_FUNC(0x02D231A0, void, RenderTextureDescriptor__ctor_5, (RenderTextureDescriptor__Boxed * __this, int32_t width, int32_t height, GraphicsFormat__Enum colorFormat, GraphicsFormat__Enum depthStencilFormat, MethodInfo * method)); -DO_APP_FUNC(0x02D23280, void, RenderTextureDescriptor__ctor_6, (RenderTextureDescriptor__Boxed * __this, int32_t width, int32_t height, GraphicsFormat__Enum colorFormat, GraphicsFormat__Enum depthStencilFormat, int32_t mipCount, MethodInfo * method)); -DO_APP_FUNC(0x02D232F0, void, RenderTextureDescriptor_SetOrClearRenderTextureCreationFlag, (RenderTextureDescriptor__Boxed * __this, bool value, RenderTextureCreationFlags__Enum flag, MethodInfo * method)); -DO_APP_FUNC(0x02D23310, bool, RenderTextureDescriptor_get_useMipMap, (RenderTextureDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D23320, void, RenderTextureDescriptor_set_useMipMap, (RenderTextureDescriptor__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02D23340, bool, RenderTextureDescriptor_get_autoGenerateMips, (RenderTextureDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D23350, void, RenderTextureDescriptor_set_autoGenerateMips, (RenderTextureDescriptor__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02D23370, bool, RenderTextureDescriptor_get_enableRandomWrite, (RenderTextureDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D23380, void, RenderTextureDescriptor_set_enableRandomWrite, (RenderTextureDescriptor__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02D233A0, void, RenderTextureDescriptor_set_createdFromScript, (RenderTextureDescriptor__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02D233C0, void, RenderTextureDescriptor_set_useDynamicScale, (RenderTextureDescriptor__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02D233E0, void, Hash128__ctor, (Hash128__Boxed * __this, uint32_t u32_0, uint32_t u32_1, uint32_t u32_2, uint32_t u32_3, MethodInfo * method)); -DO_APP_FUNC(0x00BDCC10, void, Hash128__ctor_1, (Hash128__Boxed * __this, uint64_t u64_0, uint64_t u64_1, MethodInfo * method)); -DO_APP_FUNC(0x02D23410, bool, Hash128_get_isValid, (Hash128__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D23430, int32_t, Hash128_CompareTo, (Hash128__Boxed * __this, Hash128 rhs, MethodInfo * method)); -DO_APP_FUNC(0x02D23490, String *, Hash128_ToString, (Hash128__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D22830, void, RenderTexture_GetColorBuffer_Injected, (RenderTexture * __this, RenderBuffer * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D22890, void, RenderTexture_GetDepthBuffer_Injected, (RenderTexture * __this, RenderBuffer * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D228F0, void, RenderTexture_SetRenderTextureDescriptor_Injected, (RenderTexture * __this, RenderTextureDescriptor * desc, MethodInfo * method)); +DO_APP_FUNC(0x02D22950, void, RenderTexture_GetDescriptor_Injected, (RenderTexture * __this, RenderTextureDescriptor * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D229B0, RenderTexture *, RenderTexture_GetTemporary_Internal_Injected, (RenderTextureDescriptor * desc, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, RenderTextureDescriptor_get_width, (RenderTextureDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC(0x00959BA0, void, RenderTextureDescriptor_set_width, (RenderTextureDescriptor * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x00C173E0, int32_t, RenderTextureDescriptor_get_height, (RenderTextureDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC(0x018C6CA0, void, RenderTextureDescriptor_set_height, (RenderTextureDescriptor * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x00471920, int32_t, RenderTextureDescriptor_get_msaaSamples, (RenderTextureDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC(0x018C6CC0, void, RenderTextureDescriptor_set_msaaSamples, (RenderTextureDescriptor * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x00E57F20, int32_t, RenderTextureDescriptor_get_volumeDepth, (RenderTextureDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B16CA0, void, RenderTextureDescriptor_set_volumeDepth, (RenderTextureDescriptor * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x003BCD60, void, RenderTextureDescriptor_set_mipCount, (RenderTextureDescriptor * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x0143B290, GraphicsFormat__Enum, RenderTextureDescriptor_get_graphicsFormat, (RenderTextureDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D22A00, void, RenderTextureDescriptor_set_graphicsFormat, (RenderTextureDescriptor * __this, GraphicsFormat__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x003CD440, GraphicsFormat__Enum, RenderTextureDescriptor_get_depthStencilFormat, (RenderTextureDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC(0x006D8870, void, RenderTextureDescriptor_set_depthStencilFormat, (RenderTextureDescriptor * __this, GraphicsFormat__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x02D22AC0, RenderTextureFormat__Enum, RenderTextureDescriptor_get_colorFormat, (RenderTextureDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D22B70, void, RenderTextureDescriptor_set_colorFormat, (RenderTextureDescriptor * __this, RenderTextureFormat__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x02D22C40, bool, RenderTextureDescriptor_get_sRGB, (RenderTextureDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D22CD0, void, RenderTextureDescriptor_set_sRGB, (RenderTextureDescriptor * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02D22E40, int32_t, RenderTextureDescriptor_get_depthBufferBits, (RenderTextureDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D22ED0, void, RenderTextureDescriptor_set_depthBufferBits, (RenderTextureDescriptor * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x003CC980, TextureDimension__Enum, RenderTextureDescriptor_get_dimension, (RenderTextureDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC(0x003CC990, void, RenderTextureDescriptor_set_dimension, (RenderTextureDescriptor * __this, TextureDimension__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x003CD280, ShadowSamplingMode__Enum, RenderTextureDescriptor_get_shadowSamplingMode, (RenderTextureDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC(0x006D8950, void, RenderTextureDescriptor_set_shadowSamplingMode, (RenderTextureDescriptor * __this, ShadowSamplingMode__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x00421680, VRTextureUsage__Enum, RenderTextureDescriptor_get_vrUsage, (RenderTextureDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC(0x00421690, void, RenderTextureDescriptor_set_vrUsage, (RenderTextureDescriptor * __this, VRTextureUsage__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x003C7300, RenderTextureMemoryless__Enum, RenderTextureDescriptor_get_memoryless, (RenderTextureDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC(0x003C7310, void, RenderTextureDescriptor_set_memoryless, (RenderTextureDescriptor * __this, RenderTextureMemoryless__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x02D22F00, void, RenderTextureDescriptor__ctor, (RenderTextureDescriptor * __this, int32_t width, int32_t height, MethodInfo * method)); +DO_APP_FUNC(0x02D22F20, void, RenderTextureDescriptor__ctor_1, (RenderTextureDescriptor * __this, int32_t width, int32_t height, RenderTextureFormat__Enum colorFormat, MethodInfo * method)); +DO_APP_FUNC(0x02D22F40, void, RenderTextureDescriptor__ctor_2, (RenderTextureDescriptor * __this, int32_t width, int32_t height, RenderTextureFormat__Enum colorFormat, int32_t depthBufferBits, MethodInfo * method)); +DO_APP_FUNC(0x02D22FF0, void, RenderTextureDescriptor__ctor_3, (RenderTextureDescriptor * __this, int32_t width, int32_t height, RenderTextureFormat__Enum colorFormat, int32_t depthBufferBits, int32_t mipCount, MethodInfo * method)); +DO_APP_FUNC(0x02D23020, void, RenderTextureDescriptor__ctor_4, (RenderTextureDescriptor * __this, int32_t width, int32_t height, RenderTextureFormat__Enum colorFormat, int32_t depthBufferBits, int32_t mipCount, RenderTextureReadWrite__Enum readWrite, MethodInfo * method)); +DO_APP_FUNC(0x02D231A0, void, RenderTextureDescriptor__ctor_5, (RenderTextureDescriptor * __this, int32_t width, int32_t height, GraphicsFormat__Enum colorFormat, GraphicsFormat__Enum depthStencilFormat, MethodInfo * method)); +DO_APP_FUNC(0x02D23280, void, RenderTextureDescriptor__ctor_6, (RenderTextureDescriptor * __this, int32_t width, int32_t height, GraphicsFormat__Enum colorFormat, GraphicsFormat__Enum depthStencilFormat, int32_t mipCount, MethodInfo * method)); +DO_APP_FUNC(0x02D232F0, void, RenderTextureDescriptor_SetOrClearRenderTextureCreationFlag, (RenderTextureDescriptor * __this, bool value, RenderTextureCreationFlags__Enum flag, MethodInfo * method)); +DO_APP_FUNC(0x02D23310, bool, RenderTextureDescriptor_get_useMipMap, (RenderTextureDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D23320, void, RenderTextureDescriptor_set_useMipMap, (RenderTextureDescriptor * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02D23340, bool, RenderTextureDescriptor_get_autoGenerateMips, (RenderTextureDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D23350, void, RenderTextureDescriptor_set_autoGenerateMips, (RenderTextureDescriptor * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02D23370, bool, RenderTextureDescriptor_get_enableRandomWrite, (RenderTextureDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D23380, void, RenderTextureDescriptor_set_enableRandomWrite, (RenderTextureDescriptor * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02D233A0, void, RenderTextureDescriptor_set_createdFromScript, (RenderTextureDescriptor * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02D233C0, void, RenderTextureDescriptor_set_useDynamicScale, (RenderTextureDescriptor * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02D233E0, void, Hash128__ctor, (Hash128 * __this, uint32_t u32_0, uint32_t u32_1, uint32_t u32_2, uint32_t u32_3, MethodInfo * method)); +DO_APP_FUNC(0x00BDCC10, void, Hash128__ctor_1, (Hash128 * __this, uint64_t u64_0, uint64_t u64_1, MethodInfo * method)); +DO_APP_FUNC(0x02D23410, bool, Hash128_get_isValid, (Hash128 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D23430, int32_t, Hash128_CompareTo, (Hash128 * __this, Hash128 rhs, MethodInfo * method)); +DO_APP_FUNC(0x02D23490, String *, Hash128_ToString, (Hash128 * __this, MethodInfo * method)); DO_APP_FUNC(0x02D234F0, Hash128, Hash128_Parse, (String * hashString, MethodInfo * method)); DO_APP_FUNC(0x02D23560, String *, Hash128_Hash128ToStringImpl, (Hash128 hash, MethodInfo * method)); -DO_APP_FUNC(0x02D235B0, void, Hash128_ComputeFromString, (String * data, Hash128 hash, MethodInfo * method)); +DO_APP_FUNC(0x02D235B0, void, Hash128_ComputeFromString, (String * data, Hash128 * hash, MethodInfo * method)); DO_APP_FUNC(0x02D23610, Hash128, Hash128_Compute, (String * data, MethodInfo * method)); -DO_APP_FUNC(0x02D23690, bool, Hash128_Equals, (Hash128__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02D23720, bool, Hash128_Equals_1, (Hash128__Boxed * __this, Hash128 obj, MethodInfo * method)); -DO_APP_FUNC(0x02D23750, int32_t, Hash128_GetHashCode, (Hash128__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D23770, int32_t, Hash128_CompareTo_1, (Hash128__Boxed * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02D23690, bool, Hash128_Equals, (Hash128 * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02D23720, bool, Hash128_Equals_1, (Hash128 * __this, Hash128 obj, MethodInfo * method)); +DO_APP_FUNC(0x02D23750, int32_t, Hash128_GetHashCode, (Hash128 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D23770, int32_t, Hash128_CompareTo_1, (Hash128 * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x01E013D0, bool, Hash128_op_Equality, (Hash128 hash1, Hash128 hash2, MethodInfo * method)); DO_APP_FUNC(0x02D23850, bool, Hash128_op_LessThan, (Hash128 x, Hash128 y, MethodInfo * method)); DO_APP_FUNC(0x02D23870, bool, Hash128_op_GreaterThan, (Hash128 x, Hash128 y, MethodInfo * method)); -DO_APP_FUNC(0x02D238B0, void, Hash128_Parse_Injected, (String * hashString, Hash128 ret, MethodInfo * method)); -DO_APP_FUNC(0x02D23910, String *, Hash128_Hash128ToStringImpl_Injected, (Hash128 hash, MethodInfo * method)); -DO_APP_FUNC(0x02D23960, void, HashUtilities_AppendHash, (Hash128 inHash, Hash128 outHash, MethodInfo * method)); +DO_APP_FUNC(0x02D238B0, void, Hash128_Parse_Injected, (String * hashString, Hash128 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D23910, String *, Hash128_Hash128ToStringImpl_Injected, (Hash128 * hash, MethodInfo * method)); +DO_APP_FUNC(0x02D23960, void, HashUtilities_AppendHash, (Hash128 * inHash, Hash128 * outHash, MethodInfo * method)); DO_APP_FUNC(0x02D23A10, void, HashUnsafeUtilities_ComputeHash128, (Void * data, uint64_t dataSize, uint64_t * hash1, uint64_t * hash2, MethodInfo * method)); DO_APP_FUNC(0x02D23AA0, void, HashUnsafeUtilities_ComputeHash128_1, (Void * data, uint64_t dataSize, Hash128 * hash, MethodInfo * method)); DO_APP_FUNC(0x02D23B60, bool, SpookyHash_AttemptDetectAllowUnalignedRead, (MethodInfo * method)); DO_APP_FUNC(0x02D23C70, void, SpookyHash_Hash, (Void * message, uint64_t length, uint64_t * hash1, uint64_t * hash2, MethodInfo * method)); -DO_APP_FUNC(0x02D241C0, void, SpookyHash_End, (uint64_t * data, uint64_t h0, uint64_t h1, uint64_t h2, uint64_t h3, uint64_t h4, uint64_t h5, uint64_t h6, uint64_t h7, uint64_t h8, uint64_t h9, uint64_t h10, uint64_t h11, MethodInfo * method)); -DO_APP_FUNC(0x02D24410, void, SpookyHash_EndPartial, (uint64_t h0, uint64_t h1, uint64_t h2, uint64_t h3, uint64_t h4, uint64_t h5, uint64_t h6, uint64_t h7, uint64_t h8, uint64_t h9, uint64_t h10, uint64_t h11, MethodInfo * method)); -DO_APP_FUNC(0x02D24640, void, SpookyHash_Rot64, (uint64_t x, int32_t k, MethodInfo * method)); +DO_APP_FUNC(0x02D241C0, void, SpookyHash_End, (uint64_t * data, uint64_t * h0, uint64_t * h1, uint64_t * h2, uint64_t * h3, uint64_t * h4, uint64_t * h5, uint64_t * h6, uint64_t * h7, uint64_t * h8, uint64_t * h9, uint64_t * h10, uint64_t * h11, MethodInfo * method)); +DO_APP_FUNC(0x02D24410, void, SpookyHash_EndPartial, (uint64_t * h0, uint64_t * h1, uint64_t * h2, uint64_t * h3, uint64_t * h4, uint64_t * h5, uint64_t * h6, uint64_t * h7, uint64_t * h8, uint64_t * h9, uint64_t * h10, uint64_t * h11, MethodInfo * method)); +DO_APP_FUNC(0x02D24640, void, SpookyHash_Rot64, (uint64_t * x, int32_t k, MethodInfo * method)); DO_APP_FUNC(0x02D24670, void, SpookyHash_Short, (Void * message, uint64_t length, uint64_t * hash1, uint64_t * hash2, MethodInfo * method)); -DO_APP_FUNC(0x02D24AC0, void, SpookyHash_ShortMix, (uint64_t h0, uint64_t h1, uint64_t h2, uint64_t h3, MethodInfo * method)); -DO_APP_FUNC(0x02D24CB0, void, SpookyHash_ShortEnd, (uint64_t h0, uint64_t h1, uint64_t h2, uint64_t h3, MethodInfo * method)); -DO_APP_FUNC(0x02D24E60, void, SpookyHash_Mix, (uint64_t * data, uint64_t s0, uint64_t s1, uint64_t s2, uint64_t s3, uint64_t s4, uint64_t s5, uint64_t s6, uint64_t s7, uint64_t s8, uint64_t s9, uint64_t s10, uint64_t s11, MethodInfo * method)); +DO_APP_FUNC(0x02D24AC0, void, SpookyHash_ShortMix, (uint64_t * h0, uint64_t * h1, uint64_t * h2, uint64_t * h3, MethodInfo * method)); +DO_APP_FUNC(0x02D24CB0, void, SpookyHash_ShortEnd, (uint64_t * h0, uint64_t * h1, uint64_t * h2, uint64_t * h3, MethodInfo * method)); +DO_APP_FUNC(0x02D24E60, void, SpookyHash_Mix, (uint64_t * data, uint64_t * s0, uint64_t * s1, uint64_t * s2, uint64_t * s3, uint64_t * s4, uint64_t * s5, uint64_t * s6, uint64_t * s7, uint64_t * s8, uint64_t * s9, uint64_t * s10, uint64_t * s11, MethodInfo * method)); DO_APP_FUNC(0x02D25140, void, SpookyHash_memset, (Void * dst, int32_t value, uint64_t numberOfBytes, MethodInfo * method)); DO_APP_FUNC(0x02D251D0, void, SpookyHash__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x00A9A2A0, void, SpookyHash_U__ctor, (SpookyHash_U__Boxed * __this, uint16_t * p8, MethodInfo * method)); +DO_APP_FUNC(0x00A9A2A0, void, SpookyHash_U__ctor, (SpookyHash_U * __this, uint16_t * p8, MethodInfo * method)); DO_APP_FUNC(0x02D25310, void, Cursor_1_SetCursor, (Texture2D * texture, Vector2 hotspot, CursorMode__Enum cursorMode, MethodInfo * method)); DO_APP_FUNC(0x01D48040, bool, Cursor_1_get_visible, (MethodInfo * method)); DO_APP_FUNC(0x02D25380, void, Cursor_1_set_visible, (bool value, MethodInfo * method)); DO_APP_FUNC(0x02D253D0, CursorLockMode__Enum, Cursor_1_get_lockState, (MethodInfo * method)); DO_APP_FUNC(0x02D25420, void, Cursor_1_set_lockState, (CursorLockMode__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x02D25470, void, Cursor_1_SetCursor_Injected, (Texture2D * texture, Vector2 hotspot, CursorMode__Enum cursorMode, MethodInfo * method)); +DO_APP_FUNC(0x02D25470, void, Cursor_1_SetCursor_Injected, (Texture2D * texture, Vector2 * hotspot, CursorMode__Enum cursorMode, MethodInfo * method)); DO_APP_FUNC(0x02D254E0, void, Logger_2__ctor, (Logger_2 * __this, ILogHandler * logHandler, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, ILogHandler *, Logger_2_get_logHandler, (Logger_2 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, Logger_2_set_logHandler, (Logger_2 * __this, ILogHandler * value, MethodInfo * method)); @@ -73894,13 +84545,13 @@ DO_APP_FUNC(0x02D260B0, void, UnityLogWriter_Write, (UnityLogWriter * __this, ui DO_APP_FUNC(0x02D26190, void, UnityLogWriter_Write_1, (UnityLogWriter * __this, String * s, MethodInfo * method)); DO_APP_FUNC(0x02D261F0, void, UnityLogWriter_Write_2, (UnityLogWriter * __this, Char__Array * buffer, int32_t index, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x02D26260, void, UnityLogWriter__ctor, (UnityLogWriter * __this, MethodInfo * method)); -DO_APP_FUNC(0x003CAFE0, void, Color__ctor, (Color__Boxed * __this, float r, float g, float b, float a, MethodInfo * method)); -DO_APP_FUNC(0x02D262B0, void, Color__ctor_1, (Color__Boxed * __this, float r, float g, float b, MethodInfo * method)); -DO_APP_FUNC(0x02D262D0, String *, Color_ToString, (Color__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D262E0, String *, Color_ToString_1, (Color__Boxed * __this, String * format, IFormatProvider * formatProvider, MethodInfo * method)); -DO_APP_FUNC(0x00957B30, int32_t, Color_GetHashCode, (Color__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D26540, bool, Color_Equals, (Color__Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x0076B990, bool, Color_Equals_1, (Color__Boxed * __this, Color other, MethodInfo * method)); +DO_APP_FUNC(0x003CAFE0, void, Color__ctor, (Color * __this, float r, float g, float b, float a, MethodInfo * method)); +DO_APP_FUNC(0x02D262B0, void, Color__ctor_1, (Color * __this, float r, float g, float b, MethodInfo * method)); +DO_APP_FUNC(0x02D262D0, String *, Color_ToString, (Color * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D262E0, String *, Color_ToString_1, (Color * __this, String * format, IFormatProvider * formatProvider, MethodInfo * method)); +DO_APP_FUNC(0x00957B30, int32_t, Color_GetHashCode, (Color * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D26540, bool, Color_Equals, (Color * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x0076B990, bool, Color_Equals_1, (Color * __this, Color other, MethodInfo * method)); DO_APP_FUNC(0x02D265D0, Color, Color_op_Addition, (Color a, Color b, MethodInfo * method)); DO_APP_FUNC(0x02D26630, Color, Color_op_Subtraction, (Color a, Color b, MethodInfo * method)); DO_APP_FUNC(0x02D26690, Color, Color_op_Multiply, (Color a, Color b, MethodInfo * method)); @@ -73910,7 +84561,7 @@ DO_APP_FUNC(0x02D26790, bool, Color_op_Equality, (Color lhs, Color rhs, MethodIn DO_APP_FUNC(0x00AEE450, bool, Color_op_Inequality, (Color lhs, Color rhs, MethodInfo * method)); DO_APP_FUNC(0x02D26800, Color, Color_Lerp, (Color a, Color b, float t, MethodInfo * method)); DO_APP_FUNC(0x02D268A0, Color, Color_LerpUnclamped, (Color a, Color b, float t, MethodInfo * method)); -DO_APP_FUNC(0x02D26920, Color, Color_RGBMultiplied, (Color__Boxed * __this, float multiplier, MethodInfo * method)); +DO_APP_FUNC(0x02D26920, Color, Color_RGBMultiplied, (Color * __this, float multiplier, MethodInfo * method)); DO_APP_FUNC(0x004EDA10, Color, Color_get_red, (MethodInfo * method)); DO_APP_FUNC(0x004C9440, Color, Color_get_green, (MethodInfo * method)); DO_APP_FUNC(0x00957AE0, Color, Color_get_blue, (MethodInfo * method)); @@ -73922,24 +84573,24 @@ DO_APP_FUNC(0x02D26980, Color, Color_get_magenta, (MethodInfo * method)); DO_APP_FUNC(0x02D26990, Color, Color_get_gray, (MethodInfo * method)); DO_APP_FUNC(0x02D26990, Color, Color_get_grey, (MethodInfo * method)); DO_APP_FUNC(0x02D269A0, Color, Color_get_clear, (MethodInfo * method)); -DO_APP_FUNC(0x02D269B0, float, Color_get_grayscale, (Color__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00B5E420, Color, Color_get_linear, (Color__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x028E24D0, Color, Color_get_gamma, (Color__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D269F0, float, Color_get_maxColorComponent, (Color__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D269B0, float, Color_get_grayscale, (Color * __this, MethodInfo * method)); +DO_APP_FUNC(0x00B5E420, Color, Color_get_linear, (Color * __this, MethodInfo * method)); +DO_APP_FUNC(0x028E24D0, Color, Color_get_gamma, (Color * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D269F0, float, Color_get_maxColorComponent, (Color * __this, MethodInfo * method)); DO_APP_FUNC(0x02D26A10, Vector4, Color_op_Implicit, (Color c, MethodInfo * method)); DO_APP_FUNC(0x02D26A10, Color, Color_op_Implicit_1, (Vector4 v, MethodInfo * method)); -DO_APP_FUNC(0x02D26A30, void, Color_RGBToHSV, (Color rgbColor, float H, float S, float V, MethodInfo * method)); -DO_APP_FUNC(0x02D26AD0, void, Color_RGBToHSVHelper, (float offset, float dominantcolor, float colorone, float colortwo, float H, float S, float V, MethodInfo * method)); +DO_APP_FUNC(0x02D26A30, void, Color_RGBToHSV, (Color rgbColor, float * H, float * S, float * V, MethodInfo * method)); +DO_APP_FUNC(0x02D26AD0, void, Color_RGBToHSVHelper, (float offset, float dominantcolor, float colorone, float colortwo, float * H, float * S, float * V, MethodInfo * method)); DO_APP_FUNC(0x02D26B80, Color, Color_HSVToRGB, (float H, float S, float V, bool hdr, MethodInfo * method)); -DO_APP_FUNC(0x0042DBF0, void, Color32__ctor, (Color32__Boxed * __this, uint8_t r, uint8_t g, uint8_t b, uint8_t a, MethodInfo * method)); +DO_APP_FUNC(0x0042DBF0, void, Color32__ctor, (Color32 * __this, uint8_t r, uint8_t g, uint8_t b, uint8_t a, MethodInfo * method)); DO_APP_FUNC(0x02D26E30, Color32, Color32_op_Implicit, (Color c, MethodInfo * method)); DO_APP_FUNC(0x0042DB10, Color, Color32_op_Implicit_1, (Color32 c, MethodInfo * method)); DO_APP_FUNC(0x02D26F70, Color32, Color32_Lerp, (Color32 a, Color32 b, float t, MethodInfo * method)); -DO_APP_FUNC(0x02D27080, String *, Color32_ToString, (Color32__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D27090, String *, Color32_ToString_1, (Color32__Boxed * __this, String * format, IFormatProvider * formatProvider, MethodInfo * method)); +DO_APP_FUNC(0x02D27080, String *, Color32_ToString, (Color32 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D27090, String *, Color32_ToString_1, (Color32 * __this, String * format, IFormatProvider * formatProvider, MethodInfo * method)); DO_APP_FUNC(0x02D272D0, String *, ColorUtility_ToHtmlStringRGB, (Color color, MethodInfo * method)); -DO_APP_FUNC(0x02D274F0, void, GradientColorKey__ctor, (GradientColorKey__Boxed * __this, Color col, float time, MethodInfo * method)); -DO_APP_FUNC(0x003CAF50, void, GradientAlphaKey__ctor, (GradientAlphaKey__Boxed * __this, float alpha, float time, MethodInfo * method)); +DO_APP_FUNC(0x02D274F0, void, GradientColorKey__ctor, (GradientColorKey * __this, Color col, float time, MethodInfo * method)); +DO_APP_FUNC(0x003CAF50, void, GradientAlphaKey__ctor, (GradientAlphaKey * __this, float alpha, float time, MethodInfo * method)); DO_APP_FUNC(0x02D27500, void *, Gradient_Init, (MethodInfo * method)); DO_APP_FUNC(0x02D27550, void, Gradient_Cleanup, (Gradient * __this, MethodInfo * method)); DO_APP_FUNC(0x02D275A0, bool, Gradient_Internal_Equals, (Gradient * __this, void * other, MethodInfo * method)); @@ -73953,82 +84604,88 @@ DO_APP_FUNC(0x02D27850, void, Gradient_SetKeys, (Gradient * __this, GradientColo DO_APP_FUNC(0x02D278C0, bool, Gradient_Equals, (Gradient * __this, Object * o, MethodInfo * method)); DO_APP_FUNC(0x02D27A80, bool, Gradient_Equals_1, (Gradient * __this, Gradient * other, MethodInfo * method)); DO_APP_FUNC(0x01E8EBD0, int32_t, Gradient_GetHashCode, (Gradient * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D27BC0, void, Gradient_Evaluate_Injected, (Gradient * __this, float time, Color ret, MethodInfo * method)); -DO_APP_FUNC(0x02D27C30, Vector3, Matrix4x4_GetLossyScale, (Matrix4x4__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D27CA0, bool, Matrix4x4_IsIdentity, (Matrix4x4__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D27CF0, FrustumPlanes, Matrix4x4_DecomposeProjection, (Matrix4x4__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D27D60, Vector3, Matrix4x4_get_lossyScale, (Matrix4x4__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D27CA0, bool, Matrix4x4_get_isIdentity, (Matrix4x4__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D27DF0, FrustumPlanes, Matrix4x4_get_decomposeProjection, (Matrix4x4__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D27BC0, void, Gradient_Evaluate_Injected, (Gradient * __this, float time, Color * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D27C30, Vector3, Matrix4x4_GetLossyScale, (Matrix4x4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D27CA0, bool, Matrix4x4_IsIdentity, (Matrix4x4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D27CF0, FrustumPlanes, Matrix4x4_DecomposeProjection, (Matrix4x4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D27D60, Vector3, Matrix4x4_get_lossyScale, (Matrix4x4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D27CA0, bool, Matrix4x4_get_isIdentity, (Matrix4x4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D27DF0, FrustumPlanes, Matrix4x4_get_decomposeProjection, (Matrix4x4 * __this, MethodInfo * method)); DO_APP_FUNC(0x02D27E80, Matrix4x4, Matrix4x4_TRS, (Vector3 pos, Quaternion q, Vector3 s, MethodInfo * method)); -DO_APP_FUNC(0x02D27F20, bool, Matrix4x4_Inverse3DAffine, (Matrix4x4 input, Matrix4x4 result, MethodInfo * method)); +DO_APP_FUNC(0x02D27F20, bool, Matrix4x4_Inverse3DAffine, (Matrix4x4 input, Matrix4x4 * result, MethodInfo * method)); DO_APP_FUNC(0x02D27F80, Matrix4x4, Matrix4x4_Inverse, (Matrix4x4 m, MethodInfo * method)); -DO_APP_FUNC(0x02D28000, Matrix4x4, Matrix4x4_get_inverse, (Matrix4x4__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D28000, Matrix4x4, Matrix4x4_get_inverse, (Matrix4x4 * __this, MethodInfo * method)); DO_APP_FUNC(0x02D280D0, Matrix4x4, Matrix4x4_Ortho, (float left, float right, float bottom, float top, float zNear, float zFar, MethodInfo * method)); DO_APP_FUNC(0x02D281A0, Matrix4x4, Matrix4x4_Perspective, (float fov, float aspect, float zNear, float zFar, MethodInfo * method)); DO_APP_FUNC(0x02D28250, Matrix4x4, Matrix4x4_LookAt, (Vector3 from, Vector3 to, Vector3 up, MethodInfo * method)); DO_APP_FUNC(0x02D282F0, Matrix4x4, Matrix4x4_Frustum, (float left, float right, float bottom, float top, float zNear, float zFar, MethodInfo * method)); DO_APP_FUNC(0x02D283C0, Matrix4x4, Matrix4x4_Frustum_1, (FrustumPlanes fp, MethodInfo * method)); -DO_APP_FUNC(0x02D28510, void, Matrix4x4__ctor, (Matrix4x4__Boxed * __this, Vector4 column0, Vector4 column1, Vector4 column2, Vector4 column3, MethodInfo * method)); -DO_APP_FUNC(0x02D28580, float, Matrix4x4_get_Item, (Matrix4x4__Boxed * __this, int32_t row, int32_t column, MethodInfo * method)); -DO_APP_FUNC(0x02D28590, void, Matrix4x4_set_Item, (Matrix4x4__Boxed * __this, int32_t row, int32_t column, float value, MethodInfo * method)); -DO_APP_FUNC(0x02D285A0, float, Matrix4x4_get_Item_1, (Matrix4x4__Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x02D28700, void, Matrix4x4_set_Item_1, (Matrix4x4__Boxed * __this, int32_t index, float value, MethodInfo * method)); -DO_APP_FUNC(0x02D28860, int32_t, Matrix4x4_GetHashCode, (Matrix4x4__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D28A10, bool, Matrix4x4_Equals, (Matrix4x4__Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x00CCB5E0, bool, Matrix4x4_Equals_1, (Matrix4x4__Boxed * __this, Matrix4x4 other, MethodInfo * method)); +DO_APP_FUNC(0x02D28510, void, Matrix4x4__ctor, (Matrix4x4 * __this, Vector4 column0, Vector4 column1, Vector4 column2, Vector4 column3, MethodInfo * method)); +DO_APP_FUNC(0x02D28580, float, Matrix4x4_get_Item, (Matrix4x4 * __this, int32_t row, int32_t column, MethodInfo * method)); +DO_APP_FUNC(0x02D28590, void, Matrix4x4_set_Item, (Matrix4x4 * __this, int32_t row, int32_t column, float value, MethodInfo * method)); +DO_APP_FUNC(0x02D285A0, float, Matrix4x4_get_Item_1, (Matrix4x4 * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07078, Matrix4x4_get_Item_1__MethodInfo); +DO_APP_FUNC(0x02D28700, void, Matrix4x4_set_Item_1, (Matrix4x4 * __this, int32_t index, float value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07070, Matrix4x4_set_Item_1__MethodInfo); +DO_APP_FUNC(0x02D28860, int32_t, Matrix4x4_GetHashCode, (Matrix4x4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D28A10, bool, Matrix4x4_Equals, (Matrix4x4 * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x00CCB5E0, bool, Matrix4x4_Equals_1, (Matrix4x4 * __this, Matrix4x4 other, MethodInfo * method)); DO_APP_FUNC(0x02D28AC0, Matrix4x4, Matrix4x4_op_Multiply, (Matrix4x4 lhs, Matrix4x4 rhs, MethodInfo * method)); DO_APP_FUNC(0x02D29000, Vector4, Matrix4x4_op_Multiply_1, (Matrix4x4 lhs, Vector4 vector, MethodInfo * method)); DO_APP_FUNC(0x02D29120, bool, Matrix4x4_op_Equality, (Matrix4x4 lhs, Matrix4x4 rhs, MethodInfo * method)); DO_APP_FUNC(0x00AEE500, bool, Matrix4x4_op_Inequality, (Matrix4x4 lhs, Matrix4x4 rhs, MethodInfo * method)); -DO_APP_FUNC(0x02D29260, Vector4, Matrix4x4_GetColumn, (Matrix4x4__Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x02D29330, Vector4, Matrix4x4_GetRow, (Matrix4x4__Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x02D29430, void, Matrix4x4_SetColumn, (Matrix4x4__Boxed * __this, int32_t index, Vector4 column, MethodInfo * method)); -DO_APP_FUNC(0x02D294B0, void, Matrix4x4_SetRow, (Matrix4x4__Boxed * __this, int32_t index, Vector4 row, MethodInfo * method)); -DO_APP_FUNC(0x02D29520, Vector3, Matrix4x4_MultiplyPoint, (Matrix4x4__Boxed * __this, Vector3 point, MethodInfo * method)); -DO_APP_FUNC(0x02D29610, Vector3, Matrix4x4_MultiplyPoint3x4, (Matrix4x4__Boxed * __this, Vector3 point, MethodInfo * method)); -DO_APP_FUNC(0x02D296B0, Vector3, Matrix4x4_MultiplyVector, (Matrix4x4__Boxed * __this, Vector3 vector, MethodInfo * method)); +DO_APP_FUNC(0x02D29260, Vector4, Matrix4x4_GetColumn, (Matrix4x4 * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07050, Matrix4x4_GetColumn__MethodInfo); +DO_APP_FUNC(0x02D29330, Vector4, Matrix4x4_GetRow, (Matrix4x4 * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07098, Matrix4x4_GetRow__MethodInfo); +DO_APP_FUNC(0x02D29430, void, Matrix4x4_SetColumn, (Matrix4x4 * __this, int32_t index, Vector4 column, MethodInfo * method)); +DO_APP_FUNC(0x02D294B0, void, Matrix4x4_SetRow, (Matrix4x4 * __this, int32_t index, Vector4 row, MethodInfo * method)); +DO_APP_FUNC(0x02D29520, Vector3, Matrix4x4_MultiplyPoint, (Matrix4x4 * __this, Vector3 point, MethodInfo * method)); +DO_APP_FUNC(0x02D29610, Vector3, Matrix4x4_MultiplyPoint3x4, (Matrix4x4 * __this, Vector3 point, MethodInfo * method)); +DO_APP_FUNC(0x02D296B0, Vector3, Matrix4x4_MultiplyVector, (Matrix4x4 * __this, Vector3 vector, MethodInfo * method)); DO_APP_FUNC(0x02D29740, Matrix4x4, Matrix4x4_Scale, (Vector3 vector, MethodInfo * method)); DO_APP_FUNC(0x02D297E0, Matrix4x4, Matrix4x4_Translate, (Vector3 vector, MethodInfo * method)); DO_APP_FUNC(0x02D29880, Matrix4x4, Matrix4x4_Rotate, (Quaternion q, MethodInfo * method)); DO_APP_FUNC(0x02D29A30, Matrix4x4, Matrix4x4_get_zero, (MethodInfo * method)); DO_APP_FUNC(0x02D29A90, Matrix4x4, Matrix4x4_get_identity, (MethodInfo * method)); -DO_APP_FUNC(0x02D29AF0, String *, Matrix4x4_ToString, (Matrix4x4__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D29B00, String *, Matrix4x4_ToString_1, (Matrix4x4__Boxed * __this, String * format, IFormatProvider * formatProvider, MethodInfo * method)); +DO_APP_FUNC(0x02D29AF0, String *, Matrix4x4_ToString, (Matrix4x4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D29B00, String *, Matrix4x4_ToString_1, (Matrix4x4 * __this, String * format, IFormatProvider * formatProvider, MethodInfo * method)); DO_APP_FUNC(0x02D2A140, void, Matrix4x4__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02D2A260, void, Matrix4x4_GetLossyScale_Injected, (Matrix4x4 _unity_self, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02D27CA0, bool, Matrix4x4_IsIdentity_Injected, (Matrix4x4 _unity_self, MethodInfo * method)); -DO_APP_FUNC(0x02D2A2C0, void, Matrix4x4_DecomposeProjection_Injected, (Matrix4x4 _unity_self, FrustumPlanes ret, MethodInfo * method)); -DO_APP_FUNC(0x02D2A320, void, Matrix4x4_TRS_Injected, (Vector3 pos, Quaternion q, Vector3 s, Matrix4x4 ret, MethodInfo * method)); -DO_APP_FUNC(0x02D2A3A0, bool, Matrix4x4_Inverse3DAffine_Injected, (Matrix4x4 input, Matrix4x4 result, MethodInfo * method)); -DO_APP_FUNC(0x02D2A400, void, Matrix4x4_Inverse_Injected, (Matrix4x4 m, Matrix4x4 ret, MethodInfo * method)); -DO_APP_FUNC(0x02D2A460, void, Matrix4x4_Ortho_Injected, (float left, float right, float bottom, float top, float zNear, float zFar, Matrix4x4 ret, MethodInfo * method)); -DO_APP_FUNC(0x02D2A500, void, Matrix4x4_Perspective_Injected, (float fov, float aspect, float zNear, float zFar, Matrix4x4 ret, MethodInfo * method)); -DO_APP_FUNC(0x02D2A5A0, void, Matrix4x4_LookAt_Injected, (Vector3 from, Vector3 to, Vector3 up, Matrix4x4 ret, MethodInfo * method)); -DO_APP_FUNC(0x02D2A620, void, Matrix4x4_Frustum_Injected, (float left, float right, float bottom, float top, float zNear, float zFar, Matrix4x4 ret, MethodInfo * method)); +DO_APP_FUNC(0x02D2A260, void, Matrix4x4_GetLossyScale_Injected, (Matrix4x4 * _unity_self, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D27CA0, bool, Matrix4x4_IsIdentity_Injected, (Matrix4x4 * _unity_self, MethodInfo * method)); +DO_APP_FUNC(0x02D2A2C0, void, Matrix4x4_DecomposeProjection_Injected, (Matrix4x4 * _unity_self, FrustumPlanes * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D2A320, void, Matrix4x4_TRS_Injected, (Vector3 * pos, Quaternion * q, Vector3 * s, Matrix4x4 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D2A3A0, bool, Matrix4x4_Inverse3DAffine_Injected, (Matrix4x4 * input, Matrix4x4 * result, MethodInfo * method)); +DO_APP_FUNC(0x02D2A400, void, Matrix4x4_Inverse_Injected, (Matrix4x4 * m, Matrix4x4 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D2A460, void, Matrix4x4_Ortho_Injected, (float left, float right, float bottom, float top, float zNear, float zFar, Matrix4x4 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D2A500, void, Matrix4x4_Perspective_Injected, (float fov, float aspect, float zNear, float zFar, Matrix4x4 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D2A5A0, void, Matrix4x4_LookAt_Injected, (Vector3 * from, Vector3 * to, Vector3 * up, Matrix4x4 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D2A620, void, Matrix4x4_Frustum_Injected, (float left, float right, float bottom, float top, float zNear, float zFar, Matrix4x4 * ret, MethodInfo * method)); DO_APP_FUNC(0x02D2A6C0, Vector3, Vector3_Slerp, (Vector3 a, Vector3 b, float t, MethodInfo * method)); -DO_APP_FUNC(0x02D2A750, void, Vector3_OrthoNormalize2, (Vector3 a, Vector3 b, MethodInfo * method)); -DO_APP_FUNC(0x02D2A750, void, Vector3_OrthoNormalize, (Vector3 normal, Vector3 tangent, MethodInfo * method)); +DO_APP_FUNC(0x02D2A750, void, Vector3_OrthoNormalize2, (Vector3 * a, Vector3 * b, MethodInfo * method)); +DO_APP_FUNC(0x02D2A750, void, Vector3_OrthoNormalize, (Vector3 * normal, Vector3 * tangent, MethodInfo * method)); DO_APP_FUNC(0x02D2A7B0, Vector3, Vector3_RotateTowards, (Vector3 current, Vector3 target, float maxRadiansDelta, float maxMagnitudeDelta, MethodInfo * method)); DO_APP_FUNC(0x02D2A850, Vector3, Vector3_Lerp, (Vector3 a, Vector3 b, float t, MethodInfo * method)); DO_APP_FUNC(0x02D2A8C0, Vector3, Vector3_LerpUnclamped, (Vector3 a, Vector3 b, float t, MethodInfo * method)); DO_APP_FUNC(0x02D2A910, Vector3, Vector3_MoveTowards, (Vector3 current, Vector3 target, float maxDistanceDelta, MethodInfo * method)); -DO_APP_FUNC(0x02D2AA90, Vector3, Vector3_SmoothDamp, (Vector3 current, Vector3 target, Vector3 currentVelocity, float smoothTime, float maxSpeed, float deltaTime, MethodInfo * method)); -DO_APP_FUNC(0x00BB5660, float, Vector3_get_Item, (Vector3__Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00BB56F0, void, Vector3_set_Item, (Vector3__Boxed * __this, int32_t index, float value, MethodInfo * method)); -DO_APP_FUNC(0x003CAFD0, void, Vector3__ctor, (Vector3__Boxed * __this, float x, float y, float z, MethodInfo * method)); -DO_APP_FUNC(0x02D2AE00, void, Vector3__ctor_1, (Vector3__Boxed * __this, float x, float y, MethodInfo * method)); -DO_APP_FUNC(0x003CAFD0, void, Vector3_Set, (Vector3__Boxed * __this, float newX, float newY, float newZ, MethodInfo * method)); +DO_APP_FUNC(0x02D2AA90, Vector3, Vector3_SmoothDamp, (Vector3 current, Vector3 target, Vector3 * currentVelocity, float smoothTime, float maxSpeed, float deltaTime, MethodInfo * method)); +DO_APP_FUNC(0x00BB5660, float, Vector3_get_Item, (Vector3 * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEA60, Vector3_get_Item__MethodInfo); +DO_APP_FUNC(0x00BB56F0, void, Vector3_set_Item, (Vector3 * __this, int32_t index, float value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEA58, Vector3_set_Item__MethodInfo); +DO_APP_FUNC(0x003CAFD0, void, Vector3__ctor, (Vector3 * __this, float x, float y, float z, MethodInfo * method)); +DO_APP_FUNC(0x02D2AE00, void, Vector3__ctor_1, (Vector3 * __this, float x, float y, MethodInfo * method)); +DO_APP_FUNC(0x003CAFD0, void, Vector3_Set, (Vector3 * __this, float newX, float newY, float newZ, MethodInfo * method)); DO_APP_FUNC(0x02D2AE20, Vector3, Vector3_Scale, (Vector3 a, Vector3 b, MethodInfo * method)); -DO_APP_FUNC(0x02D2AE50, void, Vector3_Scale_1, (Vector3__Boxed * __this, Vector3 scale, MethodInfo * method)); +DO_APP_FUNC(0x02D2AE50, void, Vector3_Scale_1, (Vector3 * __this, Vector3 scale, MethodInfo * method)); DO_APP_FUNC(0x02D2AE80, Vector3, Vector3_Cross, (Vector3 lhs, Vector3 rhs, MethodInfo * method)); -DO_APP_FUNC(0x011C7360, int32_t, Vector3_GetHashCode, (Vector3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D2AEE0, bool, Vector3_Equals, (Vector3__Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x02070610, bool, Vector3_Equals_1, (Vector3__Boxed * __this, Vector3 other, MethodInfo * method)); +DO_APP_FUNC(0x011C7360, int32_t, Vector3_GetHashCode, (Vector3 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D2AEE0, bool, Vector3_Equals, (Vector3 * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x02070610, bool, Vector3_Equals_1, (Vector3 * __this, Vector3 other, MethodInfo * method)); DO_APP_FUNC(0x02D2AF90, Vector3, Vector3_Reflect, (Vector3 inDirection, Vector3 inNormal, MethodInfo * method)); DO_APP_FUNC(0x003ED050, Vector3, Vector3_Normalize, (Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x003ECD80, void, Vector3_Normalize_1, (Vector3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003EC830, Vector3, Vector3_get_normalized, (Vector3__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x003ECD80, void, Vector3_Normalize_1, (Vector3 * __this, MethodInfo * method)); +DO_APP_FUNC(0x003EC830, Vector3, Vector3_get_normalized, (Vector3 * __this, MethodInfo * method)); DO_APP_FUNC(0x02D2B010, float, Vector3_Dot, (Vector3 lhs, Vector3 rhs, MethodInfo * method)); DO_APP_FUNC(0x02D2B040, Vector3, Vector3_Project, (Vector3 vector, Vector3 onNormal, MethodInfo * method)); DO_APP_FUNC(0x02D2B190, Vector3, Vector3_ProjectOnPlane, (Vector3 vector, Vector3 planeNormal, MethodInfo * method)); @@ -74037,9 +84694,9 @@ DO_APP_FUNC(0x020128A0, float, Vector3_SignedAngle, (Vector3 from, Vector3 to, V DO_APP_FUNC(0x02D2B430, float, Vector3_Distance, (Vector3 a, Vector3 b, MethodInfo * method)); DO_APP_FUNC(0x02D2B500, Vector3, Vector3_ClampMagnitude, (Vector3 vector, float maxLength, MethodInfo * method)); DO_APP_FUNC(0x02D2B610, float, Vector3_Magnitude, (Vector3 vector, MethodInfo * method)); -DO_APP_FUNC(0x02D2B6C0, float, Vector3_get_magnitude, (Vector3__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D2B6C0, float, Vector3_get_magnitude, (Vector3 * __this, MethodInfo * method)); DO_APP_FUNC(0x02D2B7B0, float, Vector3_SqrMagnitude, (Vector3 vector, MethodInfo * method)); -DO_APP_FUNC(0x02D2B7B0, float, Vector3_get_sqrMagnitude, (Vector3__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D2B7B0, float, Vector3_get_sqrMagnitude, (Vector3 * __this, MethodInfo * method)); DO_APP_FUNC(0x02D2B7E0, Vector3, Vector3_Min, (Vector3 lhs, Vector3 rhs, MethodInfo * method)); DO_APP_FUNC(0x02D2B820, Vector3, Vector3_Max, (Vector3 lhs, Vector3 rhs, MethodInfo * method)); DO_APP_FUNC(0x02D2B860, Vector3, Vector3_get_zero, (MethodInfo * method)); @@ -74059,11 +84716,11 @@ DO_APP_FUNC(0x02D2BBA0, Vector3, Vector3_op_Multiply_1, (float d, Vector3 a, Met DO_APP_FUNC(0x003EC950, Vector3, Vector3_op_Division, (Vector3 a, float d, MethodInfo * method)); DO_APP_FUNC(0x02D2BBD0, bool, Vector3_op_Equality, (Vector3 lhs, Vector3 rhs, MethodInfo * method)); DO_APP_FUNC(0x00AEE390, bool, Vector3_op_Inequality, (Vector3 lhs, Vector3 rhs, MethodInfo * method)); -DO_APP_FUNC(0x02D2BC10, String *, Vector3_ToString, (Vector3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D2BC20, String *, Vector3_ToString_1, (Vector3__Boxed * __this, String * format, IFormatProvider * formatProvider, MethodInfo * method)); +DO_APP_FUNC(0x02D2BC10, String *, Vector3_ToString, (Vector3 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D2BC20, String *, Vector3_ToString_1, (Vector3 * __this, String * format, IFormatProvider * formatProvider, MethodInfo * method)); DO_APP_FUNC(0x02D2BE30, void, Vector3__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02D2BFB0, void, Vector3_Slerp_Injected, (Vector3 a, Vector3 b, float t, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02D2C030, void, Vector3_RotateTowards_Injected, (Vector3 current, Vector3 target, float maxRadiansDelta, float maxMagnitudeDelta, Vector3 ret, MethodInfo * method)); +DO_APP_FUNC(0x02D2BFB0, void, Vector3_Slerp_Injected, (Vector3 * a, Vector3 * b, float t, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D2C030, void, Vector3_RotateTowards_Injected, (Vector3 * current, Vector3 * target, float maxRadiansDelta, float maxMagnitudeDelta, Vector3 * ret, MethodInfo * method)); DO_APP_FUNC(0x02D2C0C0, Quaternion, Quaternion_FromToRotation, (Vector3 fromDirection, Vector3 toDirection, MethodInfo * method)); DO_APP_FUNC(0x02D2C140, Quaternion, Quaternion_Inverse, (Quaternion rotation, MethodInfo * method)); DO_APP_FUNC(0x02D2C1B0, Quaternion, Quaternion_Slerp, (Quaternion a, Quaternion b, float t, MethodInfo * method)); @@ -74071,12 +84728,13 @@ DO_APP_FUNC(0x02D2C240, Quaternion, Quaternion_SlerpUnclamped, (Quaternion a, Qu DO_APP_FUNC(0x02D2C2D0, Quaternion, Quaternion_Lerp, (Quaternion a, Quaternion b, float t, MethodInfo * method)); DO_APP_FUNC(0x02D2C360, Quaternion, Quaternion_Internal_FromEulerRad, (Vector3 euler, MethodInfo * method)); DO_APP_FUNC(0x02D2C3D0, Vector3, Quaternion_Internal_ToEulerRad, (Quaternion rotation, MethodInfo * method)); -DO_APP_FUNC(0x02D2C440, void, Quaternion_Internal_ToAxisAngleRad, (Quaternion q, Vector3 axis, float angle, MethodInfo * method)); +DO_APP_FUNC(0x02D2C440, void, Quaternion_Internal_ToAxisAngleRad, (Quaternion q, Vector3 * axis, float * angle, MethodInfo * method)); DO_APP_FUNC(0x02D2C4B0, Quaternion, Quaternion_AngleAxis, (float angle, Vector3 axis, MethodInfo * method)); DO_APP_FUNC(0x02D2C530, Quaternion, Quaternion_LookRotation, (Vector3 forward, Vector3 upwards, MethodInfo * method)); DO_APP_FUNC(0x02D2C5B0, Quaternion, Quaternion_LookRotation_1, (Vector3 forward, MethodInfo * method)); -DO_APP_FUNC(0x01F44090, float, Quaternion_get_Item, (Quaternion__Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x003CAFE0, void, Quaternion__ctor, (Quaternion__Boxed * __this, float x, float y, float z, float w, MethodInfo * method)); +DO_APP_FUNC(0x01F44090, float, Quaternion_get_Item, (Quaternion * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1D78, Quaternion_get_Item__MethodInfo); +DO_APP_FUNC(0x003CAFE0, void, Quaternion__ctor, (Quaternion * __this, float x, float y, float z, float w, MethodInfo * method)); DO_APP_FUNC(0x02D2C690, Quaternion, Quaternion_get_identity, (MethodInfo * method)); DO_APP_FUNC(0x003EC980, Quaternion, Quaternion_op_Multiply, (Quaternion lhs, Quaternion rhs, MethodInfo * method)); DO_APP_FUNC(0x02D2C6E0, Vector3, Quaternion_op_Multiply_1, (Quaternion rotation, Vector3 point, MethodInfo * method)); @@ -74086,30 +84744,30 @@ DO_APP_FUNC(0x00AEE3F0, bool, Quaternion_op_Inequality, (Quaternion lhs, Quatern DO_APP_FUNC(0x02D2C8C0, float, Quaternion_Dot, (Quaternion a, Quaternion b, MethodInfo * method)); DO_APP_FUNC(0x02D2C900, float, Quaternion_Angle, (Quaternion a, Quaternion b, MethodInfo * method)); DO_APP_FUNC(0x02D2C990, Vector3, Quaternion_Internal_MakePositive, (Vector3 euler, MethodInfo * method)); -DO_APP_FUNC(0x003ECBC0, Vector3, Quaternion_get_eulerAngles, (Quaternion__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D2CA20, void, Quaternion_set_eulerAngles, (Quaternion__Boxed * __this, Vector3 value, MethodInfo * method)); +DO_APP_FUNC(0x003ECBC0, Vector3, Quaternion_get_eulerAngles, (Quaternion * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D2CA20, void, Quaternion_set_eulerAngles, (Quaternion * __this, Vector3 value, MethodInfo * method)); DO_APP_FUNC(0x00475BE0, Quaternion, Quaternion_Euler, (float x, float y, float z, MethodInfo * method)); DO_APP_FUNC(0x0049DEA0, Quaternion, Quaternion_Euler_1, (Vector3 euler, MethodInfo * method)); -DO_APP_FUNC(0x00B05F20, void, Quaternion_ToAngleAxis, (Quaternion__Boxed * __this, float angle, Vector3 axis, MethodInfo * method)); +DO_APP_FUNC(0x00B05F20, void, Quaternion_ToAngleAxis, (Quaternion * __this, float * angle, Vector3 * axis, MethodInfo * method)); DO_APP_FUNC(0x02D2CAD0, Quaternion, Quaternion_RotateTowards, (Quaternion from, Quaternion to, float maxDegreesDelta, MethodInfo * method)); DO_APP_FUNC(0x02D2CC40, Quaternion, Quaternion_Normalize, (Quaternion q, MethodInfo * method)); -DO_APP_FUNC(0x02D2CD60, Quaternion, Quaternion_get_normalized, (Quaternion__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00957BE0, int32_t, Quaternion_GetHashCode, (Quaternion__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D2CDA0, bool, Quaternion_Equals, (Quaternion__Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x0076B990, bool, Quaternion_Equals_1, (Quaternion__Boxed * __this, Quaternion other, MethodInfo * method)); -DO_APP_FUNC(0x02D2CE30, String *, Quaternion_ToString, (Quaternion__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D2CE40, String *, Quaternion_ToString_1, (Quaternion__Boxed * __this, String * format, IFormatProvider * formatProvider, MethodInfo * method)); +DO_APP_FUNC(0x02D2CD60, Quaternion, Quaternion_get_normalized, (Quaternion * __this, MethodInfo * method)); +DO_APP_FUNC(0x00957BE0, int32_t, Quaternion_GetHashCode, (Quaternion * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D2CDA0, bool, Quaternion_Equals, (Quaternion * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x0076B990, bool, Quaternion_Equals_1, (Quaternion * __this, Quaternion other, MethodInfo * method)); +DO_APP_FUNC(0x02D2CE30, String *, Quaternion_ToString, (Quaternion * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D2CE40, String *, Quaternion_ToString_1, (Quaternion * __this, String * format, IFormatProvider * formatProvider, MethodInfo * method)); DO_APP_FUNC(0x02D2D0A0, void, Quaternion__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02D2D0F0, void, Quaternion_FromToRotation_Injected, (Vector3 fromDirection, Vector3 toDirection, Quaternion ret, MethodInfo * method)); -DO_APP_FUNC(0x02D2D160, void, Quaternion_Inverse_Injected, (Quaternion rotation, Quaternion ret, MethodInfo * method)); -DO_APP_FUNC(0x02D2D1C0, void, Quaternion_Slerp_Injected, (Quaternion a, Quaternion b, float t, Quaternion ret, MethodInfo * method)); -DO_APP_FUNC(0x02D2D240, void, Quaternion_SlerpUnclamped_Injected, (Quaternion a, Quaternion b, float t, Quaternion ret, MethodInfo * method)); -DO_APP_FUNC(0x02D2D2C0, void, Quaternion_Lerp_Injected, (Quaternion a, Quaternion b, float t, Quaternion ret, MethodInfo * method)); -DO_APP_FUNC(0x02D2D340, void, Quaternion_Internal_FromEulerRad_Injected, (Vector3 euler, Quaternion ret, MethodInfo * method)); -DO_APP_FUNC(0x02D2D3A0, void, Quaternion_Internal_ToEulerRad_Injected, (Quaternion rotation, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02D2D400, void, Quaternion_Internal_ToAxisAngleRad_Injected, (Quaternion q, Vector3 axis, float angle, MethodInfo * method)); -DO_APP_FUNC(0x02D2D470, void, Quaternion_AngleAxis_Injected, (float angle, Vector3 axis, Quaternion ret, MethodInfo * method)); -DO_APP_FUNC(0x02D2D4E0, void, Quaternion_LookRotation_Injected, (Vector3 forward, Vector3 upwards, Quaternion ret, MethodInfo * method)); +DO_APP_FUNC(0x02D2D0F0, void, Quaternion_FromToRotation_Injected, (Vector3 * fromDirection, Vector3 * toDirection, Quaternion * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D2D160, void, Quaternion_Inverse_Injected, (Quaternion * rotation, Quaternion * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D2D1C0, void, Quaternion_Slerp_Injected, (Quaternion * a, Quaternion * b, float t, Quaternion * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D2D240, void, Quaternion_SlerpUnclamped_Injected, (Quaternion * a, Quaternion * b, float t, Quaternion * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D2D2C0, void, Quaternion_Lerp_Injected, (Quaternion * a, Quaternion * b, float t, Quaternion * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D2D340, void, Quaternion_Internal_FromEulerRad_Injected, (Vector3 * euler, Quaternion * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D2D3A0, void, Quaternion_Internal_ToEulerRad_Injected, (Quaternion * rotation, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D2D400, void, Quaternion_Internal_ToAxisAngleRad_Injected, (Quaternion * q, Vector3 * axis, float * angle, MethodInfo * method)); +DO_APP_FUNC(0x02D2D470, void, Quaternion_AngleAxis_Injected, (float angle, Vector3 * axis, Quaternion * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D2D4E0, void, Quaternion_LookRotation_Injected, (Vector3 * forward, Vector3 * upwards, Quaternion * ret, MethodInfo * method)); DO_APP_FUNC(0x02D2D550, int32_t, Mathf_ClosestPowerOfTwo, (int32_t value, MethodInfo * method)); DO_APP_FUNC(0x02D2D5A0, bool, Mathf_IsPowerOfTwo, (int32_t value, MethodInfo * method)); DO_APP_FUNC(0x02D2D5F0, int32_t, Mathf_NextPowerOfTwo, (int32_t value, MethodInfo * method)); @@ -74156,38 +84814,40 @@ DO_APP_FUNC(0x00A09980, float, Mathf_MoveTowards, (float current, float target, DO_APP_FUNC(0x02D2E1A0, float, Mathf_MoveTowardsAngle, (float current, float target, float maxDelta, MethodInfo * method)); DO_APP_FUNC(0x00B5E570, float, Mathf_SmoothStep, (float from, float to, float t, MethodInfo * method)); DO_APP_FUNC(0x02D2E240, bool, Mathf_Approximately, (float a, float b, MethodInfo * method)); -DO_APP_FUNC(0x01CA0140, float, Mathf_SmoothDamp, (float current, float target, float currentVelocity, float smoothTime, MethodInfo * method)); -DO_APP_FUNC(0x02D2E2D0, float, Mathf_SmoothDamp_1, (float current, float target, float currentVelocity, float smoothTime, float maxSpeed, float deltaTime, MethodInfo * method)); +DO_APP_FUNC(0x01CA0140, float, Mathf_SmoothDamp, (float current, float target, float * currentVelocity, float smoothTime, MethodInfo * method)); +DO_APP_FUNC(0x02D2E2D0, float, Mathf_SmoothDamp_1, (float current, float target, float * currentVelocity, float smoothTime, float maxSpeed, float deltaTime, MethodInfo * method)); DO_APP_FUNC(0x02D2E420, float, Mathf_Repeat, (float t, float length, MethodInfo * method)); DO_APP_FUNC(0x005AB4D0, float, Mathf_PingPong, (float t, float length, MethodInfo * method)); DO_APP_FUNC(0x00957AF0, float, Mathf_InverseLerp, (float a, float b, float value, MethodInfo * method)); DO_APP_FUNC(0x005CFA60, float, Mathf_DeltaAngle, (float current, float target, MethodInfo * method)); DO_APP_FUNC(0x02D2E480, void, Mathf__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02D2E500, void, Mathf_CorrelatedColorTemperatureToRGB_Injected, (float kelvin, Color ret, MethodInfo * method)); -DO_APP_FUNC(0x02966ED0, float, Vector2_get_Item, (Vector2__Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x02D2E560, void, Vector2_set_Item, (Vector2__Boxed * __this, int32_t index, float value, MethodInfo * method)); -DO_APP_FUNC(0x003CAF50, void, Vector2__ctor, (Vector2__Boxed * __this, float x, float y, MethodInfo * method)); -DO_APP_FUNC(0x003CAF50, void, Vector2_Set, (Vector2__Boxed * __this, float newX, float newY, MethodInfo * method)); +DO_APP_FUNC(0x02D2E500, void, Mathf_CorrelatedColorTemperatureToRGB_Injected, (float kelvin, Color * ret, MethodInfo * method)); +DO_APP_FUNC(0x02966ED0, float, Vector2_get_Item, (Vector2 * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC4FF8, Vector2_get_Item__MethodInfo); +DO_APP_FUNC(0x02D2E560, void, Vector2_set_Item, (Vector2 * __this, int32_t index, float value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D818, Vector2_set_Item__MethodInfo); +DO_APP_FUNC(0x003CAF50, void, Vector2__ctor, (Vector2 * __this, float x, float y, MethodInfo * method)); +DO_APP_FUNC(0x003CAF50, void, Vector2_Set, (Vector2 * __this, float newX, float newY, MethodInfo * method)); DO_APP_FUNC(0x02D2E5E0, Vector2, Vector2_Lerp, (Vector2 a, Vector2 b, float t, MethodInfo * method)); DO_APP_FUNC(0x02D2E650, Vector2, Vector2_LerpUnclamped, (Vector2 a, Vector2 b, float t, MethodInfo * method)); DO_APP_FUNC(0x02D2E6A0, Vector2, Vector2_MoveTowards, (Vector2 current, Vector2 target, float maxDistanceDelta, MethodInfo * method)); DO_APP_FUNC(0x0206FDE0, Vector2, Vector2_Scale, (Vector2 a, Vector2 b, MethodInfo * method)); -DO_APP_FUNC(0x02D2E7E0, void, Vector2_Scale_1, (Vector2__Boxed * __this, Vector2 scale, MethodInfo * method)); -DO_APP_FUNC(0x0076BA60, void, Vector2_Normalize, (Vector2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D2E810, Vector2, Vector2_get_normalized, (Vector2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D2E8C0, String *, Vector2_ToString, (Vector2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D2E8D0, String *, Vector2_ToString_1, (Vector2__Boxed * __this, String * format, IFormatProvider * formatProvider, MethodInfo * method)); -DO_APP_FUNC(0x02D2EA90, int32_t, Vector2_GetHashCode, (Vector2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D2EAD0, bool, Vector2_Equals, (Vector2__Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x0206FCC0, bool, Vector2_Equals_1, (Vector2__Boxed * __this, Vector2 other, MethodInfo * method)); +DO_APP_FUNC(0x02D2E7E0, void, Vector2_Scale_1, (Vector2 * __this, Vector2 scale, MethodInfo * method)); +DO_APP_FUNC(0x0076BA60, void, Vector2_Normalize, (Vector2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D2E810, Vector2, Vector2_get_normalized, (Vector2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D2E8C0, String *, Vector2_ToString, (Vector2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D2E8D0, String *, Vector2_ToString_1, (Vector2 * __this, String * format, IFormatProvider * formatProvider, MethodInfo * method)); +DO_APP_FUNC(0x02D2EA90, int32_t, Vector2_GetHashCode, (Vector2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D2EAD0, bool, Vector2_Equals, (Vector2 * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x0206FCC0, bool, Vector2_Equals_1, (Vector2 * __this, Vector2 other, MethodInfo * method)); DO_APP_FUNC(0x02D2EB70, float, Vector2_Dot, (Vector2 lhs, Vector2 rhs, MethodInfo * method)); -DO_APP_FUNC(0x02D2EBA0, float, Vector2_get_magnitude, (Vector2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D2EC60, float, Vector2_get_sqrMagnitude, (Vector2__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D2EBA0, float, Vector2_get_magnitude, (Vector2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D2EC60, float, Vector2_get_sqrMagnitude, (Vector2 * __this, MethodInfo * method)); DO_APP_FUNC(0x02D2EC80, float, Vector2_Angle, (Vector2 from, Vector2 to, MethodInfo * method)); DO_APP_FUNC(0x02D2EDE0, float, Vector2_Distance, (Vector2 a, Vector2 b, MethodInfo * method)); DO_APP_FUNC(0x02D2EE90, Vector2, Vector2_ClampMagnitude, (Vector2 vector, float maxLength, MethodInfo * method)); DO_APP_FUNC(0x02D2EFA0, float, Vector2_SqrMagnitude, (Vector2 a, MethodInfo * method)); -DO_APP_FUNC(0x02D2EC60, float, Vector2_SqrMagnitude_1, (Vector2__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D2EC60, float, Vector2_SqrMagnitude_1, (Vector2 * __this, MethodInfo * method)); DO_APP_FUNC(0x02D2EFC0, Vector2, Vector2_Min, (Vector2 lhs, Vector2 rhs, MethodInfo * method)); DO_APP_FUNC(0x02D2F000, Vector2, Vector2_Max, (Vector2 lhs, Vector2 rhs, MethodInfo * method)); DO_APP_FUNC(0x0206FD60, Vector2, Vector2_op_Addition, (Vector2 a, Vector2 b, MethodInfo * method)); @@ -74211,32 +84871,32 @@ DO_APP_FUNC(0x02D2F2B0, Vector2, Vector2_get_right, (MethodInfo * method)); DO_APP_FUNC(0x02D2F300, Vector2, Vector2_get_positiveInfinity, (MethodInfo * method)); DO_APP_FUNC(0x02D2F350, Vector2, Vector2_get_negativeInfinity, (MethodInfo * method)); DO_APP_FUNC(0x02D2F3A0, void, Vector2__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02B78450, int32_t, Vector2Int_get_x, (Vector2Int__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00959BA0, void, Vector2Int_set_x, (Vector2Int__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x010C4B40, int32_t, Vector2Int_get_y, (Vector2Int__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018C6CA0, void, Vector2Int_set_y, (Vector2Int__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00977B80, void, Vector2Int__ctor, (Vector2Int__Boxed * __this, int32_t x, int32_t y, MethodInfo * method)); -DO_APP_FUNC(0x02D2F490, float, Vector2Int_get_magnitude, (Vector2Int__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B78450, int32_t, Vector2Int_get_x, (Vector2Int * __this, MethodInfo * method)); +DO_APP_FUNC(0x00959BA0, void, Vector2Int_set_x, (Vector2Int * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x010C4B40, int32_t, Vector2Int_get_y, (Vector2Int * __this, MethodInfo * method)); +DO_APP_FUNC(0x018C6CA0, void, Vector2Int_set_y, (Vector2Int * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x00977B80, void, Vector2Int__ctor, (Vector2Int * __this, int32_t x, int32_t y, MethodInfo * method)); +DO_APP_FUNC(0x02D2F490, float, Vector2Int_get_magnitude, (Vector2Int * __this, MethodInfo * method)); DO_APP_FUNC(0x02D2F4C0, Vector2Int, Vector2Int_Max, (Vector2Int lhs, Vector2Int rhs, MethodInfo * method)); DO_APP_FUNC(0x02D2F4F0, Vector2, Vector2Int_op_Implicit, (Vector2Int v, MethodInfo * method)); DO_APP_FUNC(0x02D2F510, Vector2Int, Vector2Int_FloorToInt, (Vector2 v, MethodInfo * method)); DO_APP_FUNC(0x02D2F550, bool, Vector2Int_op_Equality, (Vector2Int lhs, Vector2Int rhs, MethodInfo * method)); DO_APP_FUNC(0x02D2F570, bool, Vector2Int_op_Inequality, (Vector2Int lhs, Vector2Int rhs, MethodInfo * method)); -DO_APP_FUNC(0x02D2F590, bool, Vector2Int_Equals, (Vector2Int__Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x02D2F630, bool, Vector2Int_Equals_1, (Vector2Int__Boxed * __this, Vector2Int other, MethodInfo * method)); -DO_APP_FUNC(0x02D2F650, int32_t, Vector2Int_GetHashCode, (Vector2Int__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D2F660, String *, Vector2Int_ToString, (Vector2Int__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D2F670, String *, Vector2Int_ToString_1, (Vector2Int__Boxed * __this, String * format, IFormatProvider * formatProvider, MethodInfo * method)); +DO_APP_FUNC(0x02D2F590, bool, Vector2Int_Equals, (Vector2Int * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x02D2F630, bool, Vector2Int_Equals_1, (Vector2Int * __this, Vector2Int other, MethodInfo * method)); +DO_APP_FUNC(0x02D2F650, int32_t, Vector2Int_GetHashCode, (Vector2Int * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D2F660, String *, Vector2Int_ToString, (Vector2Int * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D2F670, String *, Vector2Int_ToString_1, (Vector2Int * __this, String * format, IFormatProvider * formatProvider, MethodInfo * method)); DO_APP_FUNC(0x02D2F940, Vector2Int, Vector2Int_get_zero, (MethodInfo * method)); DO_APP_FUNC(0x02D2F980, Vector2Int, Vector2Int_get_one, (MethodInfo * method)); DO_APP_FUNC(0x02D2F9C0, void, Vector2Int__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02B78450, int32_t, Vector3Int_get_x, (Vector3Int__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00959BA0, void, Vector3Int_set_x, (Vector3Int__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x010C4B40, int32_t, Vector3Int_get_y, (Vector3Int__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018C6CA0, void, Vector3Int_set_y, (Vector3Int__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x01809D80, int32_t, Vector3Int_get_z, (Vector3Int__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018C6CC0, void, Vector3Int_set_z, (Vector3Int__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00977060, void, Vector3Int__ctor, (Vector3Int__Boxed * __this, int32_t x, int32_t y, int32_t z, MethodInfo * method)); +DO_APP_FUNC(0x02B78450, int32_t, Vector3Int_get_x, (Vector3Int * __this, MethodInfo * method)); +DO_APP_FUNC(0x00959BA0, void, Vector3Int_set_x, (Vector3Int * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x010C4B40, int32_t, Vector3Int_get_y, (Vector3Int * __this, MethodInfo * method)); +DO_APP_FUNC(0x018C6CA0, void, Vector3Int_set_y, (Vector3Int * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x01809D80, int32_t, Vector3Int_get_z, (Vector3Int * __this, MethodInfo * method)); +DO_APP_FUNC(0x018C6CC0, void, Vector3Int_set_z, (Vector3Int * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x00977060, void, Vector3Int__ctor, (Vector3Int * __this, int32_t x, int32_t y, int32_t z, MethodInfo * method)); DO_APP_FUNC(0x02D2FAC0, Vector3Int, Vector3Int_Min, (Vector3Int lhs, Vector3Int rhs, MethodInfo * method)); DO_APP_FUNC(0x02D2FB20, Vector3Int, Vector3Int_Max, (Vector3Int lhs, Vector3Int rhs, MethodInfo * method)); DO_APP_FUNC(0x02D2FB80, Vector3, Vector3Int_op_Implicit, (Vector3Int v, MethodInfo * method)); @@ -74246,29 +84906,31 @@ DO_APP_FUNC(0x02D2FC30, Vector3Int, Vector3Int_op_Multiply, (Vector3Int a, int32 DO_APP_FUNC(0x02D2FC70, Vector3Int, Vector3Int_op_Division, (Vector3Int a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x02D2FCB0, bool, Vector3Int_op_Equality, (Vector3Int lhs, Vector3Int rhs, MethodInfo * method)); DO_APP_FUNC(0x02D2FCD0, bool, Vector3Int_op_Inequality, (Vector3Int lhs, Vector3Int rhs, MethodInfo * method)); -DO_APP_FUNC(0x02D2FD20, bool, Vector3Int_Equals, (Vector3Int__Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x02D2FDF0, bool, Vector3Int_Equals_1, (Vector3Int__Boxed * __this, Vector3Int other, MethodInfo * method)); -DO_APP_FUNC(0x02D2FE40, int32_t, Vector3Int_GetHashCode, (Vector3Int__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D2FE70, String *, Vector3Int_ToString, (Vector3Int__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D2FE80, String *, Vector3Int_ToString_1, (Vector3Int__Boxed * __this, String * format, IFormatProvider * formatProvider, MethodInfo * method)); +DO_APP_FUNC(0x02D2FD20, bool, Vector3Int_Equals, (Vector3Int * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x02D2FDF0, bool, Vector3Int_Equals_1, (Vector3Int * __this, Vector3Int other, MethodInfo * method)); +DO_APP_FUNC(0x02D2FE40, int32_t, Vector3Int_GetHashCode, (Vector3Int * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D2FE70, String *, Vector3Int_ToString, (Vector3Int * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D2FE80, String *, Vector3Int_ToString_1, (Vector3Int * __this, String * format, IFormatProvider * formatProvider, MethodInfo * method)); DO_APP_FUNC(0x02D30230, Vector3Int, Vector3Int_get_zero, (MethodInfo * method)); DO_APP_FUNC(0x02D30280, Vector3Int, Vector3Int_get_one, (MethodInfo * method)); DO_APP_FUNC(0x02D302D0, void, Vector3Int__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x00BB55C0, float, Vector4_get_Item, (Vector4__Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00BFE050, void, Vector4_set_Item, (Vector4__Boxed * __this, int32_t index, float value, MethodInfo * method)); -DO_APP_FUNC(0x003CAFE0, void, Vector4__ctor, (Vector4__Boxed * __this, float x, float y, float z, float w, MethodInfo * method)); -DO_APP_FUNC(0x003CAFE0, void, Vector4_Set, (Vector4__Boxed * __this, float newX, float newY, float newZ, float newW, MethodInfo * method)); +DO_APP_FUNC(0x00BB55C0, float, Vector4_get_Item, (Vector4 * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEA80, Vector4_get_Item__MethodInfo); +DO_APP_FUNC(0x00BFE050, void, Vector4_set_Item, (Vector4 * __this, int32_t index, float value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1718, Vector4_set_Item__MethodInfo); +DO_APP_FUNC(0x003CAFE0, void, Vector4__ctor, (Vector4 * __this, float x, float y, float z, float w, MethodInfo * method)); +DO_APP_FUNC(0x003CAFE0, void, Vector4_Set, (Vector4 * __this, float newX, float newY, float newZ, float newW, MethodInfo * method)); DO_APP_FUNC(0x02D26800, Vector4, Vector4_Lerp, (Vector4 a, Vector4 b, float t, MethodInfo * method)); -DO_APP_FUNC(0x02D30430, void, Vector4_Scale, (Vector4__Boxed * __this, Vector4 scale, MethodInfo * method)); -DO_APP_FUNC(0x00957BE0, int32_t, Vector4_GetHashCode, (Vector4__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D30470, bool, Vector4_Equals, (Vector4__Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x02071150, bool, Vector4_Equals_1, (Vector4__Boxed * __this, Vector4 other, MethodInfo * method)); +DO_APP_FUNC(0x02D30430, void, Vector4_Scale, (Vector4 * __this, Vector4 scale, MethodInfo * method)); +DO_APP_FUNC(0x00957BE0, int32_t, Vector4_GetHashCode, (Vector4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D30470, bool, Vector4_Equals, (Vector4 * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x02071150, bool, Vector4_Equals_1, (Vector4 * __this, Vector4 other, MethodInfo * method)); DO_APP_FUNC(0x02D30530, Vector4, Vector4_Normalize, (Vector4 a, MethodInfo * method)); -DO_APP_FUNC(0x00BFE0F0, Vector4, Vector4_get_normalized, (Vector4__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00BFE0F0, Vector4, Vector4_get_normalized, (Vector4 * __this, MethodInfo * method)); DO_APP_FUNC(0x02D2C8C0, float, Vector4_Dot, (Vector4 a, Vector4 b, MethodInfo * method)); DO_APP_FUNC(0x02D30600, float, Vector4_Magnitude, (Vector4 a, MethodInfo * method)); -DO_APP_FUNC(0x02D306D0, float, Vector4_get_magnitude, (Vector4__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D307A0, float, Vector4_get_sqrMagnitude, (Vector4__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D306D0, float, Vector4_get_magnitude, (Vector4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D307A0, float, Vector4_get_sqrMagnitude, (Vector4 * __this, MethodInfo * method)); DO_APP_FUNC(0x02D307F0, Vector4, Vector4_get_zero, (MethodInfo * method)); DO_APP_FUNC(0x02D30840, Vector4, Vector4_get_one, (MethodInfo * method)); DO_APP_FUNC(0x02D265D0, Vector4, Vector4_op_Addition, (Vector4 a, Vector4 b, MethodInfo * method)); @@ -74282,11 +84944,13 @@ DO_APP_FUNC(0x02D30980, Vector4, Vector4_op_Implicit, (Vector3 v, MethodInfo * m DO_APP_FUNC(0x02D309D0, Vector3, Vector4_op_Implicit_1, (Vector4 v, MethodInfo * method)); DO_APP_FUNC(0x02D309F0, Vector4, Vector4_op_Implicit_2, (Vector2 v, MethodInfo * method)); DO_APP_FUNC(0x02CED580, Vector2, Vector4_op_Implicit_3, (Vector4 v, MethodInfo * method)); -DO_APP_FUNC(0x02D30A30, String *, Vector4_ToString, (Vector4__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D30A40, String *, Vector4_ToString_1, (Vector4__Boxed * __this, String * format, IFormatProvider * formatProvider, MethodInfo * method)); +DO_APP_FUNC(0x02D30A30, String *, Vector4_ToString, (Vector4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D30A40, String *, Vector4_ToString_1, (Vector4 * __this, String * format, IFormatProvider * formatProvider, MethodInfo * method)); DO_APP_FUNC(0x02D30CA0, void, Vector4__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02D30D30, void, PlayerConnectionInternal_UnityEngine_IPlayerEditorConnectionNative_SendMessage, (PlayerConnectionInternal * __this, Guid messageId, Byte__Array * data, int32_t playerId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D648, PlayerConnectionInternal_UnityEngine_IPlayerEditorConnectionNative_SendMessage__MethodInfo); DO_APP_FUNC(0x02D30E90, bool, PlayerConnectionInternal_UnityEngine_IPlayerEditorConnectionNative_TrySendMessage, (PlayerConnectionInternal * __this, Guid messageId, Byte__Array * data, int32_t playerId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D688, PlayerConnectionInternal_UnityEngine_IPlayerEditorConnectionNative_TrySendMessage__MethodInfo); DO_APP_FUNC(0x02D30FF0, void, PlayerConnectionInternal_UnityEngine_IPlayerEditorConnectionNative_Poll, (PlayerConnectionInternal * __this, MethodInfo * method)); DO_APP_FUNC(0x02D31040, void, PlayerConnectionInternal_UnityEngine_IPlayerEditorConnectionNative_RegisterInternal, (PlayerConnectionInternal * __this, Guid messageId, MethodInfo * method)); DO_APP_FUNC(0x02D310D0, void, PlayerConnectionInternal_UnityEngine_IPlayerEditorConnectionNative_UnregisterInternal, (PlayerConnectionInternal * __this, Guid messageId, MethodInfo * method)); @@ -74317,6 +84981,7 @@ DO_APP_FUNC(0x02D31790, float, PlayerPrefs_GetFloat, (String * key, float defaul DO_APP_FUNC_METHODINFO(0x03C93C00, PlayerPrefs_GetFloat__MethodInfo); DO_APP_FUNC(0x02D317F0, float, PlayerPrefs_GetFloat_1, (String * key, MethodInfo * method)); DO_APP_FUNC(0x02D31850, void, PlayerPrefs_SetString, (String * key, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D600, PlayerPrefs_SetString__MethodInfo); DO_APP_FUNC(0x02D31910, String *, PlayerPrefs_GetString, (String * key, String * defaultValue, MethodInfo * method)); DO_APP_FUNC(0x02D31970, String *, PlayerPrefs_GetString_1, (String * key, MethodInfo * method)); DO_APP_FUNC(0x02D31A00, bool, PlayerPrefs_HasKey, (String * key, MethodInfo * method)); @@ -74338,16 +85003,16 @@ DO_APP_FUNC(0x003BCDC0, void, TextAreaAttribute__ctor_1, (TextAreaAttribute * __ DO_APP_FUNC(0x02D31AD0, void, ColorUsageAttribute__ctor, (ColorUsageAttribute * __this, bool showAlpha, MethodInfo * method)); DO_APP_FUNC(0x02D31B00, void, ColorUsageAttribute__ctor_1, (ColorUsageAttribute * __this, bool showAlpha, bool hdr, MethodInfo * method)); DO_APP_FUNC(0x02D31B30, PropertyName, PropertyNameUtils_PropertyNameFromString, (String * name, MethodInfo * method)); -DO_APP_FUNC(0x02D31B90, void, PropertyNameUtils_PropertyNameFromString_Injected, (String * name, PropertyName ret, MethodInfo * method)); -DO_APP_FUNC(0x02D31BF0, void, PropertyName__ctor, (PropertyName__Boxed * __this, String * name, MethodInfo * method)); -DO_APP_FUNC(0x00959BA0, void, PropertyName__ctor_1, (PropertyName__Boxed * __this, PropertyName other, MethodInfo * method)); +DO_APP_FUNC(0x02D31B90, void, PropertyNameUtils_PropertyNameFromString_Injected, (String * name, PropertyName * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D31BF0, void, PropertyName__ctor, (PropertyName * __this, String * name, MethodInfo * method)); +DO_APP_FUNC(0x00959BA0, void, PropertyName__ctor_1, (PropertyName * __this, PropertyName other, MethodInfo * method)); DO_APP_FUNC(0x02D31C60, bool, PropertyName_IsNullOrEmpty, (PropertyName prop, MethodInfo * method)); DO_APP_FUNC(0x02D31C70, bool, PropertyName_op_Equality, (PropertyName lhs, PropertyName rhs, MethodInfo * method)); -DO_APP_FUNC(0x02B78450, int32_t, PropertyName_GetHashCode, (PropertyName__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D31C80, bool, PropertyName_Equals, (PropertyName__Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x02CE4450, bool, PropertyName_Equals_1, (PropertyName__Boxed * __this, PropertyName other, MethodInfo * method)); +DO_APP_FUNC(0x02B78450, int32_t, PropertyName_GetHashCode, (PropertyName * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D31C80, bool, PropertyName_Equals, (PropertyName * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x02CE4450, bool, PropertyName_Equals_1, (PropertyName * __this, PropertyName other, MethodInfo * method)); DO_APP_FUNC(0x02D31B30, PropertyName, PropertyName_op_Implicit, (String * name, MethodInfo * method)); -DO_APP_FUNC(0x02D31D00, String *, PropertyName_ToString, (PropertyName__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D31D00, String *, PropertyName_ToString, (PropertyName * __this, MethodInfo * method)); DO_APP_FUNC(0x02D31DB0, void, Random_2_InitState, (int32_t seed, MethodInfo * method)); DO_APP_FUNC(0x02D31E00, Random_State, Random_2_get_state, (MethodInfo * method)); DO_APP_FUNC(0x02D31E60, void, Random_2_set_state, (Random_State value, MethodInfo * method)); @@ -74356,16 +85021,16 @@ DO_APP_FUNC(0x02D31F20, int32_t, Random_2_Range_1, (int32_t minInclusive, int32_ DO_APP_FUNC(0x02D31F20, int32_t, Random_2_RandomRangeInt, (int32_t minInclusive, int32_t maxExclusive, MethodInfo * method)); DO_APP_FUNC(0x02D31F80, float, Random_2_get_value, (MethodInfo * method)); DO_APP_FUNC(0x02D31FD0, Vector3, Random_2_get_insideUnitSphere, (MethodInfo * method)); -DO_APP_FUNC(0x02D32030, void, Random_2_GetRandomUnitCircle, (Vector2 output, MethodInfo * method)); +DO_APP_FUNC(0x02D32030, void, Random_2_GetRandomUnitCircle, (Vector2 * output, MethodInfo * method)); DO_APP_FUNC(0x02D32080, Vector2, Random_2_get_insideUnitCircle, (MethodInfo * method)); DO_APP_FUNC(0x02D320E0, Vector3, Random_2_get_onUnitSphere, (MethodInfo * method)); DO_APP_FUNC(0x02D32140, Quaternion, Random_2_get_rotation, (MethodInfo * method)); DO_APP_FUNC(0x02D321A0, Color, Random_2_ColorHSV, (float hueMin, float hueMax, float saturationMin, float saturationMax, float valueMin, float valueMax, float alphaMin, float alphaMax, MethodInfo * method)); -DO_APP_FUNC(0x02D32410, void, Random_2_get_state_Injected, (Random_State ret, MethodInfo * method)); -DO_APP_FUNC(0x02D32460, void, Random_2_set_state_Injected, (Random_State value, MethodInfo * method)); -DO_APP_FUNC(0x02D324B0, void, Random_2_get_insideUnitSphere_Injected, (Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02D32500, void, Random_2_get_onUnitSphere_Injected, (Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02D32550, void, Random_2_get_rotation_Injected, (Quaternion ret, MethodInfo * method)); +DO_APP_FUNC(0x02D32410, void, Random_2_get_state_Injected, (Random_State * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D32460, void, Random_2_set_state_Injected, (Random_State * value, MethodInfo * method)); +DO_APP_FUNC(0x02D324B0, void, Random_2_get_insideUnitSphere_Injected, (Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D32500, void, Random_2_get_onUnitSphere_Injected, (Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D32550, void, Random_2_get_rotation_Injected, (Quaternion * ret, MethodInfo * method)); DO_APP_FUNC(0x02D325A0, Object_1 *, ResourceRequest_GetResult, (ResourceRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x019BD2D0, Object_1 *, ResourceRequest_get_asset, (ResourceRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ResourceRequest__ctor, (ResourceRequest * __this, MethodInfo * method)); @@ -74454,6 +85119,7 @@ DO_APP_FUNC(0x003AE050, void, Coroutine__ctor, (Coroutine * __this, MethodInfo * DO_APP_FUNC(0x02D349A0, void, Coroutine_Finalize, (Coroutine * __this, MethodInfo * method)); DO_APP_FUNC(0x02D34A20, void, Coroutine_ReleaseCoroutine, (void * ptr, MethodInfo * method)); DO_APP_FUNC(0x02D34A70, void, SetupCoroutine_InvokeMoveNext, (IEnumerator * enumerator, void * returnValueAddress, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D4F0, SetupCoroutine_InvokeMoveNext__MethodInfo); DO_APP_FUNC(0x02D34B60, Object *, SetupCoroutine_InvokeMember, (Object * behaviour, String * name, Object * variable, MethodInfo * method)); DO_APP_FUNC(0x00A35CC0, Object *, CustomYieldInstruction_get_Current, (CustomYieldInstruction * __this, MethodInfo * method)); DO_APP_FUNC(0x01AD2800, bool, CustomYieldInstruction_MoveNext, (CustomYieldInstruction * __this, MethodInfo * method)); @@ -74477,7 +85143,7 @@ DO_APP_FUNC(0x02D351B0, Component__Array *, GameObject_GetComponentsInChildren, DO_APP_FUNC(0x02D351C0, Component__Array *, GameObject_GetComponentsInChildren_1, (GameObject * __this, Type * type, bool includeInactive, MethodInfo * method)); DO_APP_FUNC(0x02D352A0, Component__Array *, GameObject_GetComponentsInParent, (GameObject * __this, Type * type, MethodInfo * method)); DO_APP_FUNC(0x02D35370, Component__Array *, GameObject_GetComponentsInParent_1, (GameObject * __this, Type * type, bool includeInactive, MethodInfo * method)); -DO_APP_FUNC(0x02D35450, bool, GameObject_TryGetComponent, (GameObject * __this, Type * type, Component * component, MethodInfo * method)); +DO_APP_FUNC(0x02D35450, bool, GameObject_TryGetComponent, (GameObject * __this, Type * type, Component * * component, MethodInfo * method)); DO_APP_FUNC(0x02D35600, Component *, GameObject_TryGetComponentInternal, (GameObject * __this, Type * type, MethodInfo * method)); DO_APP_FUNC(0x02D35660, void, GameObject_TryGetComponentFastPath, (GameObject * __this, Type * type, void * oneFurtherThanResultValue, MethodInfo * method)); DO_APP_FUNC(0x02D356D0, GameObject *, GameObject_FindWithTag, (String * tag, MethodInfo * method)); @@ -74521,30 +85187,40 @@ DO_APP_FUNC(0x02D362B0, GameObject *, GameObject_Find, (String * name, MethodInf DO_APP_FUNC(0x02D36300, Scene, GameObject_get_scene, (GameObject * __this, MethodInfo * method)); DO_APP_FUNC(0x02D36360, uint64_t, GameObject_get_sceneCullingMask, (GameObject * __this, MethodInfo * method)); DO_APP_FUNC(0x01BF07D0, GameObject *, GameObject_get_gameObject, (GameObject * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D363B0, void, GameObject_get_scene_Injected, (GameObject * __this, Scene ret, MethodInfo * method)); +DO_APP_FUNC(0x02D363B0, void, GameObject_get_scene_Injected, (GameObject * __this, Scene * ret, MethodInfo * method)); DO_APP_FUNC(0x02D36410, int32_t, LayerMask_op_Implicit, (LayerMask mask, MethodInfo * method)); DO_APP_FUNC(0x02D36410, LayerMask, LayerMask_op_Implicit_1, (int32_t intVal, MethodInfo * method)); -DO_APP_FUNC(0x02B78450, int32_t, LayerMask_get_value, (LayerMask__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00959BA0, void, LayerMask_set_value, (LayerMask__Boxed * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x02B78450, int32_t, LayerMask_get_value, (LayerMask * __this, MethodInfo * method)); +DO_APP_FUNC(0x00959BA0, void, LayerMask_set_value, (LayerMask * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x02D36420, String *, LayerMask_LayerToName, (int32_t layer, MethodInfo * method)); DO_APP_FUNC(0x02D36470, int32_t, LayerMask_NameToLayer, (String * layerName, MethodInfo * method)); DO_APP_FUNC(0x02D364C0, int32_t, LayerMask_GetMask, (String__Array * layerNames, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D238, LayerMask_GetMask__MethodInfo); DO_APP_FUNC(0x02D365C0, void, ManagedStreamHelpers_ValidateLoadFromStream, (Stream * stream, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D218, ManagedStreamHelpers_ValidateLoadFromStream__MethodInfo); DO_APP_FUNC(0x02D36740, void, ManagedStreamHelpers_ManagedStreamRead, (Byte__Array * buffer, int32_t offset, int32_t count, Stream * stream, void * returnValueAddress, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D288, ManagedStreamHelpers_ManagedStreamRead__MethodInfo); DO_APP_FUNC(0x02D36860, void, ManagedStreamHelpers_ManagedStreamSeek, (int64_t offset, uint32_t origin, Stream * stream, void * returnValueAddress, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D268, ManagedStreamHelpers_ManagedStreamSeek__MethodInfo); DO_APP_FUNC(0x02D36970, void, ManagedStreamHelpers_ManagedStreamLength, (Stream * stream, void * returnValueAddress, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D0D0, ManagedStreamHelpers_ManagedStreamLength__MethodInfo); DO_APP_FUNC(0x02D36A60, bool, MonoBehaviour_IsInvoking, (MonoBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x01EC1C80, void, MonoBehaviour_CancelInvoke, (MonoBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x02D36AB0, void, MonoBehaviour_Invoke, (MonoBehaviour * __this, String * methodName, float time, MethodInfo * method)); DO_APP_FUNC(0x02D36AD0, void, MonoBehaviour_InvokeRepeating, (MonoBehaviour * __this, String * methodName, float time, float repeatRate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D0B0, MonoBehaviour_InvokeRepeating__MethodInfo); DO_APP_FUNC(0x02D36B70, void, MonoBehaviour_CancelInvoke_1, (MonoBehaviour * __this, String * methodName, MethodInfo * method)); DO_APP_FUNC(0x02D36BD0, bool, MonoBehaviour_IsInvoking_1, (MonoBehaviour * __this, String * methodName, MethodInfo * method)); DO_APP_FUNC(0x02D36C30, Coroutine *, MonoBehaviour_StartCoroutine, (MonoBehaviour * __this, String * methodName, MethodInfo * method)); DO_APP_FUNC(0x02D36D90, Coroutine *, MonoBehaviour_StartCoroutine_1, (MonoBehaviour * __this, String * methodName, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D090, MonoBehaviour_StartCoroutine_1__MethodInfo); DO_APP_FUNC(0x02D36F00, Coroutine *, MonoBehaviour_StartCoroutine_2, (MonoBehaviour * __this, IEnumerator * routine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D058, MonoBehaviour_StartCoroutine_2__MethodInfo); DO_APP_FUNC(0x02D37060, Coroutine *, MonoBehaviour_StartCoroutine_Auto, (MonoBehaviour * __this, IEnumerator * routine, MethodInfo * method)); DO_APP_FUNC(0x02D37070, void, MonoBehaviour_StopCoroutine, (MonoBehaviour * __this, IEnumerator * routine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D128, MonoBehaviour_StopCoroutine__MethodInfo); DO_APP_FUNC(0x02D371D0, void, MonoBehaviour_StopCoroutine_1, (MonoBehaviour * __this, Coroutine * routine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D118, MonoBehaviour_StopCoroutine_1__MethodInfo); DO_APP_FUNC(0x02D37330, void, MonoBehaviour_StopCoroutine_2, (MonoBehaviour * __this, String * methodName, MethodInfo * method)); DO_APP_FUNC(0x0046C9F0, void, MonoBehaviour_StopAllCoroutines, (MonoBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x02D37390, bool, MonoBehaviour_get_useGUILayout, (MonoBehaviour * __this, MethodInfo * method)); @@ -74565,8 +85241,8 @@ DO_APP_FUNC(0x003AE000, void, MonoBehaviour__ctor, (MonoBehaviour * __this, Meth DO_APP_FUNC(0x02D37740, int32_t, NoAllocHelpers_SafeLength, (Array * values, MethodInfo * method)); DO_APP_FUNC(0x02D37760, void, NoAllocHelpers_Internal_ResizeList, (Object * list, int32_t size, MethodInfo * method)); DO_APP_FUNC(0x02D377C0, Array *, NoAllocHelpers_ExtractArrayFromList, (Object * list, MethodInfo * method)); -DO_APP_FUNC(0x02D37810, int32_t, RangeInt_get_end, (RangeInt__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00977B80, void, RangeInt__ctor, (RangeInt__Boxed * __this, int32_t start, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x02D37810, int32_t, RangeInt_get_end, (RangeInt * __this, MethodInfo * method)); +DO_APP_FUNC(0x00977B80, void, RangeInt__ctor, (RangeInt * __this, int32_t start, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x026DE8F0, void, RuntimeInitializeOnLoadMethodAttribute__ctor, (RuntimeInitializeOnLoadMethodAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, RuntimeInitializeOnLoadMethodAttribute__ctor_1, (RuntimeInitializeOnLoadMethodAttribute * __this, RuntimeInitializeLoadType__Enum loadType, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, RuntimeInitializeOnLoadMethodAttribute_set_loadType, (RuntimeInitializeOnLoadMethodAttribute * __this, RuntimeInitializeLoadType__Enum value, MethodInfo * method)); @@ -74579,7 +85255,8 @@ DO_APP_FUNC(0x01120490, bool, ScriptingUtility_IsManagedCodeWorking, (MethodInfo DO_APP_FUNC(0x003AE050, void, SelectionBaseAttribute__ctor, (SelectionBaseAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x02D37A10, void, StackTraceUtility_SetProjectFolder, (String * folder, MethodInfo * method)); DO_APP_FUNC(0x02D37BD0, String *, StackTraceUtility_ExtractStackTrace, (MethodInfo * method)); -DO_APP_FUNC(0x02D37D60, void, StackTraceUtility_ExtractStringFromExceptionInternal, (Object * exceptiono, String * message, String * stackTrace, MethodInfo * method)); +DO_APP_FUNC(0x02D37D60, void, StackTraceUtility_ExtractStringFromExceptionInternal, (Object * exceptiono, String * * message, String * * stackTrace, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CF90, StackTraceUtility_ExtractStringFromExceptionInternal__MethodInfo); DO_APP_FUNC(0x02D38230, String *, StackTraceUtility_ExtractFormattedStackTrace, (StackTrace * stackTrace, MethodInfo * method)); DO_APP_FUNC(0x02D38BD0, void, StackTraceUtility__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02D38C80, void, UnityException__ctor, (UnityException * __this, MethodInfo * method)); @@ -74606,6 +85283,7 @@ DO_APP_FUNC(0x02D39DA0, void, UnhandledExceptionHandler_RegisterUECatcher, (Meth DO_APP_FUNC(0x02D3A000, void, UnhandledExceptionHandler_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, UnhandledExceptionHandler_c__ctor, (UnhandledExceptionHandler_c * __this, MethodInfo * method)); DO_APP_FUNC(0x02D3A0B0, void, UnhandledExceptionHandler_c__RegisterUECatcher_b__0_0, (UnhandledExceptionHandler_c * __this, Object * sender, UnhandledExceptionEventArgs * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CF38, UnhandledExceptionHandler_c__RegisterUECatcher_b__0_0__MethodInfo); DO_APP_FUNC(0x003BCBE0, void, UnityAPICompatibilityVersionAttribute__ctor, (UnityAPICompatibilityVersionAttribute * __this, String * version, MethodInfo * method)); DO_APP_FUNC(0x02D3A170, int32_t, Object_1_GetInstanceID, (Object_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02D3A290, int32_t, Object_1_GetHashCode, (Object_1 * __this, MethodInfo * method)); @@ -74613,15 +85291,20 @@ DO_APP_FUNC(0x02D3A2A0, bool, Object_1_Equals, (Object_1 * __this, Object * othe DO_APP_FUNC(0x02D3A570, bool, Object_1_op_Implicit, (Object_1 * exists, MethodInfo * method)); DO_APP_FUNC(0x02D3A640, bool, Object_1_CompareBaseObjects, (Object_1 * lhs, Object_1 * rhs, MethodInfo * method)); DO_APP_FUNC(0x02D3A770, void, Object_1_EnsureRunningOnMainThread, (Object_1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CE28, Object_1_EnsureRunningOnMainThread__MethodInfo); DO_APP_FUNC(0x02D3A850, bool, Object_1_IsNativeObjectAlive, (Object_1 * o, MethodInfo * method)); DO_APP_FUNC(0x015C0B20, void *, Object_1_GetCachedPtr, (Object_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02D3A8B0, String *, Object_1_get_name, (Object_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02D3A940, void, Object_1_set_name, (Object_1 * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x02D3A9E0, Object_1 *, Object_1_Instantiate, (Object_1 * original, Vector3 position, Quaternion rotation, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CE40, Object_1_Instantiate__MethodInfo); DO_APP_FUNC(0x02D3AD00, Object_1 *, Object_1_Instantiate_1, (Object_1 * original, Vector3 position, Quaternion rotation, Transform * parent, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CE90, Object_1_Instantiate_1__MethodInfo); DO_APP_FUNC(0x02D3B0A0, Object_1 *, Object_1_Instantiate_2, (Object_1 * original, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CE70, Object_1_Instantiate_2__MethodInfo); DO_APP_FUNC(0x02D3B2A0, Object_1 *, Object_1_Instantiate_3, (Object_1 * original, Transform * parent, MethodInfo * method)); DO_APP_FUNC(0x02D3B310, Object_1 *, Object_1_Instantiate_4, (Object_1 * original, Transform * parent, bool instantiateInWorldSpace, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CEC8, Object_1_Instantiate_4__MethodInfo); DO_APP_FUNC(0x02D3B620, void, Object_1_Destroy, (Object_1 * obj, float t, MethodInfo * method)); DO_APP_FUNC(0x02D3B680, void, Object_1_Destroy_1, (Object_1 * obj, MethodInfo * method)); DO_APP_FUNC(0x02D3B710, void, Object_1_DestroyImmediate, (Object_1 * obj, bool allowDestroyingAssets, MethodInfo * method)); @@ -74639,6 +85322,7 @@ DO_APP_FUNC(0x02D3BC30, Object_1__Array *, Object_1_FindSceneObjectsOfType, (Typ DO_APP_FUNC(0x02D3BC80, Object_1__Array *, Object_1_FindObjectsOfTypeIncludingAssets, (Type * type, MethodInfo * method)); DO_APP_FUNC(0x02D3BCD0, Object_1__Array *, Object_1_FindObjectsOfTypeAll, (Type * type, MethodInfo * method)); DO_APP_FUNC(0x02D3BCE0, void, Object_1_CheckNullArgument, (Object * arg, String * message, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CE10, Object_1_CheckNullArgument__MethodInfo); DO_APP_FUNC(0x02D3BD40, Object_1 *, Object_1_FindObjectOfType, (Type * type, MethodInfo * method)); DO_APP_FUNC(0x02D3BDF0, Object_1 *, Object_1_FindFirstObjectByType, (Type * type, MethodInfo * method)); DO_APP_FUNC(0x02D3BEB0, Object_1 *, Object_1_FindAnyObjectByType, (Type * type, MethodInfo * method)); @@ -74663,8 +85347,8 @@ DO_APP_FUNC(0x02D3C9B0, Object_1 *, Object_1_FindObjectFromInstanceID, (int32_t DO_APP_FUNC(0x02D3CA00, Object_1 *, Object_1_ForceLoadFromInstanceID, (int32_t instanceID, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Object_1__ctor, (Object_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02D3CA50, void, Object_1__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02D3CA90, Object_1 *, Object_1_Internal_InstantiateSingle_Injected, (Object_1 * data, Vector3 pos, Quaternion rot, MethodInfo * method)); -DO_APP_FUNC(0x02D3CB00, Object_1 *, Object_1_Internal_InstantiateSingleWithParent_Injected, (Object_1 * data, Transform * parent, Vector3 pos, Quaternion rot, MethodInfo * method)); +DO_APP_FUNC(0x02D3CA90, Object_1 *, Object_1_Internal_InstantiateSingle_Injected, (Object_1 * data, Vector3 * pos, Quaternion * rot, MethodInfo * method)); +DO_APP_FUNC(0x02D3CB00, Object_1 *, Object_1_Internal_InstantiateSingleWithParent_Injected, (Object_1 * data, Transform * parent, Vector3 * pos, Quaternion * rot, MethodInfo * method)); DO_APP_FUNC(0x02D3CB80, void, UnitySynchronizationContext__ctor, (UnitySynchronizationContext * __this, int32_t mainThreadID, MethodInfo * method)); DO_APP_FUNC(0x02D3CCF0, void, UnitySynchronizationContext__ctor_1, (UnitySynchronizationContext * __this, List_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * queue, int32_t mainThreadID, MethodInfo * method)); DO_APP_FUNC(0x02D3CE40, void, UnitySynchronizationContext_Send, (UnitySynchronizationContext * __this, SendOrPostCallback * callback, Object * state, MethodInfo * method)); @@ -74677,8 +85361,8 @@ DO_APP_FUNC(0x02D3D770, bool, UnitySynchronizationContext_HasPendingTasks, (Unit DO_APP_FUNC(0x02D3D7D0, void, UnitySynchronizationContext_InitializeSynchronizationContext, (MethodInfo * method)); DO_APP_FUNC(0x02D3D9D0, void, UnitySynchronizationContext_ExecuteTasks, (MethodInfo * method)); DO_APP_FUNC(0x02D3DA30, bool, UnitySynchronizationContext_ExecutePendingTasks, (int64_t millisecondsTimeout, MethodInfo * method)); -DO_APP_FUNC(0x0096DD20, void, UnitySynchronizationContext_WorkRequest__ctor, (UnitySynchronizationContext_WorkRequest__Boxed * __this, SendOrPostCallback * callback, Object * state, ManualResetEvent * waitHandle, MethodInfo * method)); -DO_APP_FUNC(0x02D3DBC0, void, UnitySynchronizationContext_WorkRequest_Invoke, (UnitySynchronizationContext_WorkRequest__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0096DD20, void, UnitySynchronizationContext_WorkRequest__ctor, (UnitySynchronizationContext_WorkRequest * __this, SendOrPostCallback * callback, Object * state, ManualResetEvent * waitHandle, MethodInfo * method)); +DO_APP_FUNC(0x02D3DBC0, void, UnitySynchronizationContext_WorkRequest_Invoke, (UnitySynchronizationContext_WorkRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, WaitForEndOfFrame__ctor, (WaitForEndOfFrame * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, WaitForFixedUpdate__ctor, (WaitForFixedUpdate * __this, MethodInfo * method)); DO_APP_FUNC(0x003CC920, void, WaitForSeconds__ctor, (WaitForSeconds * __this, float seconds, MethodInfo * method)); @@ -74702,12 +85386,15 @@ DO_APP_FUNC(0x02D3E010, void, ComputeBuffer_DestroyBuffer, (ComputeBuffer * buf, DO_APP_FUNC(0x02D3E060, void, ComputeBuffer__ctor, (ComputeBuffer * __this, int32_t count, int32_t stride, MethodInfo * method)); DO_APP_FUNC(0x02D3E090, void, ComputeBuffer__ctor_1, (ComputeBuffer * __this, int32_t count, int32_t stride, ComputeBufferType__Enum type, MethodInfo * method)); DO_APP_FUNC(0x02D3E0C0, void, ComputeBuffer__ctor_2, (ComputeBuffer * __this, int32_t count, int32_t stride, ComputeBufferType__Enum type, ComputeBufferMode__Enum usage, int32_t stackDepth, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CC68, ComputeBuffer__ctor_2__MethodInfo); DO_APP_FUNC(0x02D3DE30, void, ComputeBuffer_Release, (ComputeBuffer * __this, MethodInfo * method)); DO_APP_FUNC(0x02D3E320, int32_t, ComputeBuffer_get_count, (ComputeBuffer * __this, MethodInfo * method)); DO_APP_FUNC(0x02D3E370, int32_t, ComputeBuffer_get_stride, (ComputeBuffer * __this, MethodInfo * method)); DO_APP_FUNC(0x02D3E3C0, void, ComputeBuffer_SetData, (ComputeBuffer * __this, Array * data, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CC98, ComputeBuffer_SetData__MethodInfo); DO_APP_FUNC(0x02D3E570, void, ComputeBuffer_InternalSetData, (ComputeBuffer * __this, Array * data, int32_t managedBufferStartIndex, int32_t computeBufferStartIndex, int32_t count, int32_t elemSize, MethodInfo * method)); DO_APP_FUNC(0x02D3E600, void, ComputeBuffer_GetData, (ComputeBuffer * __this, Array * data, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CC88, ComputeBuffer_GetData__MethodInfo); DO_APP_FUNC(0x02D3E7E0, void, ComputeBuffer_InternalGetData, (ComputeBuffer * __this, Array * data, int32_t managedBufferStartIndex, int32_t computeBufferStartIndex, int32_t count, int32_t elemSize, MethodInfo * method)); DO_APP_FUNC(0x02D3E870, void, ComputeBuffer_set_name, (ComputeBuffer * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x02D3E870, void, ComputeBuffer_SetName, (ComputeBuffer * __this, String * name, MethodInfo * method)); @@ -74722,7 +85409,7 @@ DO_APP_FUNC(0x02D3EBC0, void, ComputeShader_SetTexture, (ComputeShader * __this, DO_APP_FUNC(0x02D3EC40, void, ComputeShader_Internal_SetBuffer, (ComputeShader * __this, int32_t kernelIndex, int32_t nameID, ComputeBuffer * buffer, MethodInfo * method)); DO_APP_FUNC(0x02D3EC40, void, ComputeShader_SetBuffer, (ComputeShader * __this, int32_t kernelIndex, int32_t nameID, ComputeBuffer * buffer, MethodInfo * method)); DO_APP_FUNC(0x02D3ECC0, void, ComputeShader_SetConstantComputeBuffer, (ComputeShader * __this, int32_t nameID, ComputeBuffer * buffer, int32_t offset, int32_t size, MethodInfo * method)); -DO_APP_FUNC(0x02D3ED40, void, ComputeShader_GetKernelThreadGroupSizes, (ComputeShader * __this, int32_t kernelIndex, uint32_t x, uint32_t y, uint32_t z, MethodInfo * method)); +DO_APP_FUNC(0x02D3ED40, void, ComputeShader_GetKernelThreadGroupSizes, (ComputeShader * __this, int32_t kernelIndex, uint32_t * x, uint32_t * y, uint32_t * z, MethodInfo * method)); DO_APP_FUNC(0x02D3EDC0, void, ComputeShader_Dispatch, (ComputeShader * __this, int32_t kernelIndex, int32_t threadGroupsX, int32_t threadGroupsY, int32_t threadGroupsZ, MethodInfo * method)); DO_APP_FUNC(0x02D3EE40, void, ComputeShader_EnableKeyword, (ComputeShader * __this, String * keyword, MethodInfo * method)); DO_APP_FUNC(0x02D3EEA0, void, ComputeShader_DisableKeyword, (ComputeShader * __this, String * keyword, MethodInfo * method)); @@ -74735,8 +85422,8 @@ DO_APP_FUNC(0x02D3F2B0, void, ComputeShader_SetBool, (ComputeShader * __this, St DO_APP_FUNC(0x02D3F370, void, ComputeShader_SetTexture_1, (ComputeShader * __this, int32_t kernelIndex, String * name, Texture * texture, MethodInfo * method)); DO_APP_FUNC(0x02D3F440, void, ComputeShader_SetBuffer_1, (ComputeShader * __this, int32_t kernelIndex, String * name, ComputeBuffer * buffer, MethodInfo * method)); DO_APP_FUNC(0x02D3ECC0, void, ComputeShader_SetConstantBuffer, (ComputeShader * __this, int32_t nameID, ComputeBuffer * buffer, int32_t offset, int32_t size, MethodInfo * method)); -DO_APP_FUNC(0x02D3F500, void, ComputeShader_SetVector_Injected, (ComputeShader * __this, int32_t nameID, Vector4 val, MethodInfo * method)); -DO_APP_FUNC(0x02D3F570, void, ComputeShader_SetMatrix_Injected, (ComputeShader * __this, int32_t nameID, Matrix4x4 val, MethodInfo * method)); +DO_APP_FUNC(0x02D3F500, void, ComputeShader_SetVector_Injected, (ComputeShader * __this, int32_t nameID, Vector4 * val, MethodInfo * method)); +DO_APP_FUNC(0x02D3F570, void, ComputeShader_SetMatrix_Injected, (ComputeShader * __this, int32_t nameID, Matrix4x4 * val, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, LowerResBlitTexture_LowerResBlitTextureDontStripMe, (LowerResBlitTexture * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, PreloadData_PreloadDataDontStripMe, (PreloadData * __this, MethodInfo * method)); DO_APP_FUNC(0x02D3F5E0, OperatingSystemFamily__Enum, SystemInfo_1_get_operatingSystemFamily, (MethodInfo * method)); @@ -74759,7 +85446,9 @@ DO_APP_FUNC(0x02D3FAE0, int32_t, SystemInfo_1_get_supportedRenderTargetCount, (M DO_APP_FUNC(0x02D3FB30, bool, SystemInfo_1_get_usesReversedZBuffer, (MethodInfo * method)); DO_APP_FUNC(0x02D3FB80, bool, SystemInfo_1_IsValidEnumValue, (Enum value, MethodInfo * method)); DO_APP_FUNC(0x02D3FCA0, bool, SystemInfo_1_SupportsRenderTextureFormat, (RenderTextureFormat__Enum format, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CAE0, SystemInfo_1_SupportsRenderTextureFormat__MethodInfo); DO_APP_FUNC(0x02D3FD90, bool, SystemInfo_1_SupportsTextureFormat, (TextureFormat__Enum format, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CB48, SystemInfo_1_SupportsTextureFormat__MethodInfo); DO_APP_FUNC(0x02D3FE80, int32_t, SystemInfo_1_get_maxTextureSize, (MethodInfo * method)); DO_APP_FUNC(0x02D3FED0, int32_t, SystemInfo_1_get_maxRenderTextureSize, (MethodInfo * method)); DO_APP_FUNC(0x02D3FF20, bool, SystemInfo_1_get_supportsGraphicsFence, (MethodInfo * method)); @@ -74797,28 +85486,28 @@ DO_APP_FUNC(0x02D401C0, GraphicsFormat__Enum, SystemInfo_1_GetGraphicsFormat, (D DO_APP_FUNC(0x02D40010, bool, SystemInfo_1_UsesLoadStoreActions, (MethodInfo * method)); DO_APP_FUNC(0x02D40210, DateTime, SystemClock_get_now, (MethodInfo * method)); DO_APP_FUNC(0x02D40260, void, SystemClock__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x00B1CDE0, float, Time_get_time, (MethodInfo * method)); -DO_APP_FUNC(0x02D402E0, float, Time_get_timeSinceLevelLoad, (MethodInfo * method)); -DO_APP_FUNC(0x02D40330, float, Time_get_deltaTime, (MethodInfo * method)); -DO_APP_FUNC(0x00B1CE30, float, Time_get_fixedTime, (MethodInfo * method)); -DO_APP_FUNC(0x02A69840, float, Time_get_unscaledTime, (MethodInfo * method)); -DO_APP_FUNC(0x02D40380, float, Time_get_fixedUnscaledTime, (MethodInfo * method)); -DO_APP_FUNC(0x01F064A0, float, Time_get_unscaledDeltaTime, (MethodInfo * method)); -DO_APP_FUNC(0x00B1CE80, float, Time_get_fixedDeltaTime, (MethodInfo * method)); -DO_APP_FUNC(0x02D403D0, void, Time_set_fixedDeltaTime, (float value, MethodInfo * method)); -DO_APP_FUNC(0x02D40430, float, Time_get_maximumDeltaTime, (MethodInfo * method)); -DO_APP_FUNC(0x02D40480, float, Time_get_smoothDeltaTime, (MethodInfo * method)); -DO_APP_FUNC(0x02D404D0, float, Time_get_timeScale, (MethodInfo * method)); -DO_APP_FUNC(0x02D40520, void, Time_set_timeScale, (float value, MethodInfo * method)); -DO_APP_FUNC(0x02D40580, int32_t, Time_get_frameCount, (MethodInfo * method)); -DO_APP_FUNC(0x02D405D0, int32_t, Time_get_renderedFrameCount, (MethodInfo * method)); -DO_APP_FUNC(0x02D40620, float, Time_get_realtimeSinceStartup, (MethodInfo * method)); -DO_APP_FUNC(0x02D40670, bool, Time_get_inFixedTimeStep, (MethodInfo * method)); +DO_APP_FUNC(0x00B1CDE0, float, Time_1_get_time, (MethodInfo * method)); +DO_APP_FUNC(0x02D402E0, float, Time_1_get_timeSinceLevelLoad, (MethodInfo * method)); +DO_APP_FUNC(0x02D40330, float, Time_1_get_deltaTime, (MethodInfo * method)); +DO_APP_FUNC(0x00B1CE30, float, Time_1_get_fixedTime, (MethodInfo * method)); +DO_APP_FUNC(0x02A69840, float, Time_1_get_unscaledTime, (MethodInfo * method)); +DO_APP_FUNC(0x02D40380, float, Time_1_get_fixedUnscaledTime, (MethodInfo * method)); +DO_APP_FUNC(0x01F064A0, float, Time_1_get_unscaledDeltaTime, (MethodInfo * method)); +DO_APP_FUNC(0x00B1CE80, float, Time_1_get_fixedDeltaTime, (MethodInfo * method)); +DO_APP_FUNC(0x02D403D0, void, Time_1_set_fixedDeltaTime, (float value, MethodInfo * method)); +DO_APP_FUNC(0x02D40430, float, Time_1_get_maximumDeltaTime, (MethodInfo * method)); +DO_APP_FUNC(0x02D40480, float, Time_1_get_smoothDeltaTime, (MethodInfo * method)); +DO_APP_FUNC(0x02D404D0, float, Time_1_get_timeScale, (MethodInfo * method)); +DO_APP_FUNC(0x02D40520, void, Time_1_set_timeScale, (float value, MethodInfo * method)); +DO_APP_FUNC(0x02D40580, int32_t, Time_1_get_frameCount, (MethodInfo * method)); +DO_APP_FUNC(0x02D405D0, int32_t, Time_1_get_renderedFrameCount, (MethodInfo * method)); +DO_APP_FUNC(0x02D40620, float, Time_1_get_realtimeSinceStartup, (MethodInfo * method)); +DO_APP_FUNC(0x02D40670, bool, Time_1_get_inFixedTimeStep, (MethodInfo * method)); DO_APP_FUNC(0x02D406C0, void, TouchScreenKeyboard_Internal_Destroy, (void * ptr, MethodInfo * method)); DO_APP_FUNC(0x02D40710, void, TouchScreenKeyboard_Destroy, (TouchScreenKeyboard * __this, MethodInfo * method)); DO_APP_FUNC(0x02D407F0, void, TouchScreenKeyboard_Finalize, (TouchScreenKeyboard * __this, MethodInfo * method)); DO_APP_FUNC(0x02D40900, void, TouchScreenKeyboard__ctor, (TouchScreenKeyboard * __this, String * text, TouchScreenKeyboardType__Enum keyboardType, bool autocorrection, bool multiline, bool secure, bool alert, String * textPlaceholder, int32_t characterLimit, MethodInfo * method)); -DO_APP_FUNC(0x02D40A30, void *, TouchScreenKeyboard_TouchScreenKeyboard_InternalConstructorHelper, (TouchScreenKeyboard_InternalConstructorHelperArguments arguments, String * text, String * textPlaceholder, MethodInfo * method)); +DO_APP_FUNC(0x02D40A30, void *, TouchScreenKeyboard_TouchScreenKeyboard_InternalConstructorHelper, (TouchScreenKeyboard_InternalConstructorHelperArguments * arguments, String * text, String * textPlaceholder, MethodInfo * method)); DO_APP_FUNC(0x02D40AA0, bool, TouchScreenKeyboard_get_isSupported, (MethodInfo * method)); DO_APP_FUNC(0x02D40B50, bool, TouchScreenKeyboard_get_disableInPlaceEditing, (MethodInfo * method)); DO_APP_FUNC(0x02D40B90, bool, TouchScreenKeyboard_get_isInPlaceEditingAllowed, (MethodInfo * method)); @@ -74835,19 +85524,20 @@ DO_APP_FUNC(0x02D41010, bool, TouchScreenKeyboard_get_canGetSelection, (TouchScr DO_APP_FUNC(0x02D41060, bool, TouchScreenKeyboard_get_canSetSelection, (TouchScreenKeyboard * __this, MethodInfo * method)); DO_APP_FUNC(0x02D410B0, RangeInt, TouchScreenKeyboard_get_selection, (TouchScreenKeyboard * __this, MethodInfo * method)); DO_APP_FUNC(0x02D41110, void, TouchScreenKeyboard_set_selection, (TouchScreenKeyboard * __this, RangeInt value, MethodInfo * method)); -DO_APP_FUNC(0x02D41260, void, TouchScreenKeyboard_GetSelection, (int32_t start, int32_t length, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C8F0, TouchScreenKeyboard_set_selection__MethodInfo); +DO_APP_FUNC(0x02D41260, void, TouchScreenKeyboard_GetSelection, (int32_t * start, int32_t * length, MethodInfo * method)); DO_APP_FUNC(0x02D412C0, void, TouchScreenKeyboard_SetSelection, (int32_t start, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x02D41320, void, Pose__ctor, (Pose__Boxed * __this, Vector3 position, Quaternion rotation, MethodInfo * method)); -DO_APP_FUNC(0x02D41340, String *, Pose_ToString, (Pose__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D41460, Pose, Pose_GetTransformedBy, (Pose__Boxed * __this, Pose lhs, MethodInfo * method)); -DO_APP_FUNC(0x02D41760, Pose, Pose_GetTransformedBy_1, (Pose__Boxed * __this, Transform * lhs, MethodInfo * method)); +DO_APP_FUNC(0x02D41320, void, Pose__ctor, (Pose * __this, Vector3 position, Quaternion rotation, MethodInfo * method)); +DO_APP_FUNC(0x02D41340, String *, Pose_ToString, (Pose * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D41460, Pose, Pose_GetTransformedBy, (Pose * __this, Pose lhs, MethodInfo * method)); +DO_APP_FUNC(0x02D41760, Pose, Pose_GetTransformedBy_1, (Pose * __this, Transform * lhs, MethodInfo * method)); DO_APP_FUNC(0x02D41A00, Pose, Pose_get_identity, (MethodInfo * method)); -DO_APP_FUNC(0x02D41A80, bool, Pose_Equals, (Pose__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02D41B40, bool, Pose_Equals_1, (Pose__Boxed * __this, Pose other, MethodInfo * method)); -DO_APP_FUNC(0x02D41BF0, int32_t, Pose_GetHashCode, (Pose__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D41A80, bool, Pose_Equals, (Pose * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02D41B40, bool, Pose_Equals_1, (Pose * __this, Pose other, MethodInfo * method)); +DO_APP_FUNC(0x02D41BF0, int32_t, Pose_GetHashCode, (Pose * __this, MethodInfo * method)); DO_APP_FUNC(0x02D41C60, void, Pose__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, DrivenRectTransformTracker_Add, (DrivenRectTransformTracker__Boxed * __this, Object_1 * driver, RectTransform * rectTransform, DrivenTransformProperties__Enum drivenProperties, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, DrivenRectTransformTracker_Clear, (DrivenRectTransformTracker__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, DrivenRectTransformTracker_Add, (DrivenRectTransformTracker * __this, Object_1 * driver, RectTransform * rectTransform, DrivenTransformProperties__Enum drivenProperties, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, DrivenRectTransformTracker_Clear, (DrivenRectTransformTracker * __this, MethodInfo * method)); DO_APP_FUNC(0x02D41D40, void, RectTransform_add_reapplyDrivenProperties, (RectTransform_ReapplyDrivenProperties * value, MethodInfo * method)); DO_APP_FUNC(0x02D41E50, void, RectTransform_remove_reapplyDrivenProperties, (RectTransform_ReapplyDrivenProperties * value, MethodInfo * method)); DO_APP_FUNC(0x02D41F60, Rect, RectTransform_get_rect, (RectTransform * __this, MethodInfo * method)); @@ -74874,17 +85564,17 @@ DO_APP_FUNC(0x02D434B0, void, RectTransform_SetInsetAndSizeFromParentEdge, (Rect DO_APP_FUNC(0x02D43A30, void, RectTransform_SetSizeWithCurrentAnchors, (RectTransform * __this, RectTransform_Axis__Enum axis, float size, MethodInfo * method)); DO_APP_FUNC(0x02D43D60, void, RectTransform_SendReapplyDrivenProperties, (RectTransform * driven, MethodInfo * method)); DO_APP_FUNC(0x02D43DC0, Vector2, RectTransform_GetParentSize, (RectTransform * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D43FD0, void, RectTransform_get_rect_Injected, (RectTransform * __this, Rect ret, MethodInfo * method)); -DO_APP_FUNC(0x02D44030, void, RectTransform_get_anchorMin_Injected, (RectTransform * __this, Vector2 ret, MethodInfo * method)); -DO_APP_FUNC(0x02D44090, void, RectTransform_set_anchorMin_Injected, (RectTransform * __this, Vector2 value, MethodInfo * method)); -DO_APP_FUNC(0x02D440F0, void, RectTransform_get_anchorMax_Injected, (RectTransform * __this, Vector2 ret, MethodInfo * method)); -DO_APP_FUNC(0x02D44150, void, RectTransform_set_anchorMax_Injected, (RectTransform * __this, Vector2 value, MethodInfo * method)); -DO_APP_FUNC(0x02D441B0, void, RectTransform_get_anchoredPosition_Injected, (RectTransform * __this, Vector2 ret, MethodInfo * method)); -DO_APP_FUNC(0x02D44210, void, RectTransform_set_anchoredPosition_Injected, (RectTransform * __this, Vector2 value, MethodInfo * method)); -DO_APP_FUNC(0x02D44270, void, RectTransform_get_sizeDelta_Injected, (RectTransform * __this, Vector2 ret, MethodInfo * method)); -DO_APP_FUNC(0x02D442D0, void, RectTransform_set_sizeDelta_Injected, (RectTransform * __this, Vector2 value, MethodInfo * method)); -DO_APP_FUNC(0x02D44330, void, RectTransform_get_pivot_Injected, (RectTransform * __this, Vector2 ret, MethodInfo * method)); -DO_APP_FUNC(0x02D44390, void, RectTransform_set_pivot_Injected, (RectTransform * __this, Vector2 value, MethodInfo * method)); +DO_APP_FUNC(0x02D43FD0, void, RectTransform_get_rect_Injected, (RectTransform * __this, Rect * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D44030, void, RectTransform_get_anchorMin_Injected, (RectTransform * __this, Vector2 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D44090, void, RectTransform_set_anchorMin_Injected, (RectTransform * __this, Vector2 * value, MethodInfo * method)); +DO_APP_FUNC(0x02D440F0, void, RectTransform_get_anchorMax_Injected, (RectTransform * __this, Vector2 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D44150, void, RectTransform_set_anchorMax_Injected, (RectTransform * __this, Vector2 * value, MethodInfo * method)); +DO_APP_FUNC(0x02D441B0, void, RectTransform_get_anchoredPosition_Injected, (RectTransform * __this, Vector2 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D44210, void, RectTransform_set_anchoredPosition_Injected, (RectTransform * __this, Vector2 * value, MethodInfo * method)); +DO_APP_FUNC(0x02D44270, void, RectTransform_get_sizeDelta_Injected, (RectTransform * __this, Vector2 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D442D0, void, RectTransform_set_sizeDelta_Injected, (RectTransform * __this, Vector2 * value, MethodInfo * method)); +DO_APP_FUNC(0x02D44330, void, RectTransform_get_pivot_Injected, (RectTransform * __this, Vector2 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D44390, void, RectTransform_set_pivot_Injected, (RectTransform * __this, Vector2 * value, MethodInfo * method)); DO_APP_FUNC(0x003EE8E0, void, RectTransform_ReapplyDrivenProperties__ctor, (RectTransform_ReapplyDrivenProperties * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EE650, void, RectTransform_ReapplyDrivenProperties_Invoke, (RectTransform_ReapplyDrivenProperties * __this, RectTransform * driven, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, Transform__ctor, (Transform * __this, MethodInfo * method)); @@ -74926,8 +85616,8 @@ DO_APP_FUNC(0x02D45A20, Matrix4x4, Transform_get_worldToLocalMatrix, (Transform DO_APP_FUNC(0x02D45AA0, Matrix4x4, Transform_get_localToWorldMatrix, (Transform * __this, MethodInfo * method)); DO_APP_FUNC(0x02D45B20, void, Transform_SetPositionAndRotation, (Transform * __this, Vector3 position, Quaternion rotation, MethodInfo * method)); DO_APP_FUNC(0x02D45B90, void, Transform_SetLocalPositionAndRotation, (Transform * __this, Vector3 localPosition, Quaternion localRotation, MethodInfo * method)); -DO_APP_FUNC(0x02D45C00, void, Transform_GetPositionAndRotation, (Transform * __this, Vector3 position, Quaternion rotation, MethodInfo * method)); -DO_APP_FUNC(0x02D45C70, void, Transform_GetLocalPositionAndRotation, (Transform * __this, Vector3 localPosition, Quaternion localRotation, MethodInfo * method)); +DO_APP_FUNC(0x02D45C00, void, Transform_GetPositionAndRotation, (Transform * __this, Vector3 * position, Quaternion * rotation, MethodInfo * method)); +DO_APP_FUNC(0x02D45C70, void, Transform_GetLocalPositionAndRotation, (Transform * __this, Vector3 * localPosition, Quaternion * localRotation, MethodInfo * method)); DO_APP_FUNC(0x02D45CE0, void, Transform_Translate, (Transform * __this, Vector3 translation, Space__Enum relativeTo, MethodInfo * method)); DO_APP_FUNC(0x02D45F10, void, Transform_Translate_1, (Transform * __this, Vector3 translation, MethodInfo * method)); DO_APP_FUNC(0x02D45F40, void, Transform_Translate_2, (Transform * __this, float x, float y, float z, Space__Enum relativeTo, MethodInfo * method)); @@ -74970,6 +85660,7 @@ DO_APP_FUNC(0x02D47E20, void, Transform_MoveAfterSibling, (Transform * __this, T DO_APP_FUNC(0x02D47E90, int32_t, Transform_GetSiblingIndex, (Transform * __this, MethodInfo * method)); DO_APP_FUNC(0x02D47EE0, Transform *, Transform_FindRelativeTransformWithPath, (Transform * transform, String * path, bool isActiveOnly, MethodInfo * method)); DO_APP_FUNC(0x02D47F50, Transform *, Transform_Find, (Transform * __this, String * n, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C770, Transform_Find__MethodInfo); DO_APP_FUNC(0x02D48010, void, Transform_SendTransformChangedScale, (Transform * __this, MethodInfo * method)); DO_APP_FUNC(0x02D48060, Vector3, Transform_get_lossyScale, (Transform * __this, MethodInfo * method)); DO_APP_FUNC(0x02D480D0, bool, Transform_IsChildOf, (Transform * __this, Transform * parent, MethodInfo * method)); @@ -74992,34 +85683,34 @@ DO_APP_FUNC(0x02D48560, bool, Transform_get_constrainProportionsScale, (Transfor DO_APP_FUNC(0x02D485B0, void, Transform_set_constrainProportionsScale, (Transform * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x02D485B0, void, Transform_SetConstrainProportionsScale, (Transform * __this, bool isLinked, MethodInfo * method)); DO_APP_FUNC(0x02D48560, bool, Transform_IsConstrainProportionsScale, (Transform * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D48610, void, Transform_get_position_Injected, (Transform * __this, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02D48670, void, Transform_set_position_Injected, (Transform * __this, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x02D486D0, void, Transform_get_localPosition_Injected, (Transform * __this, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02D48730, void, Transform_set_localPosition_Injected, (Transform * __this, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x02D48790, void, Transform_GetLocalEulerAngles_Injected, (Transform * __this, RotationOrder__Enum order, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02D48800, void, Transform_SetLocalEulerAngles_Injected, (Transform * __this, Vector3 euler, RotationOrder__Enum order, MethodInfo * method)); -DO_APP_FUNC(0x02D48870, void, Transform_SetLocalEulerHint_Injected, (Transform * __this, Vector3 euler, MethodInfo * method)); -DO_APP_FUNC(0x02D488D0, void, Transform_get_rotation_Injected, (Transform * __this, Quaternion ret, MethodInfo * method)); -DO_APP_FUNC(0x02D48930, void, Transform_set_rotation_Injected, (Transform * __this, Quaternion value, MethodInfo * method)); -DO_APP_FUNC(0x02D48990, void, Transform_get_localRotation_Injected, (Transform * __this, Quaternion ret, MethodInfo * method)); -DO_APP_FUNC(0x02D489F0, void, Transform_set_localRotation_Injected, (Transform * __this, Quaternion value, MethodInfo * method)); -DO_APP_FUNC(0x02D48A50, void, Transform_get_localScale_Injected, (Transform * __this, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02D48AB0, void, Transform_set_localScale_Injected, (Transform * __this, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x02D48B10, void, Transform_get_worldToLocalMatrix_Injected, (Transform * __this, Matrix4x4 ret, MethodInfo * method)); -DO_APP_FUNC(0x02D48B70, void, Transform_get_localToWorldMatrix_Injected, (Transform * __this, Matrix4x4 ret, MethodInfo * method)); -DO_APP_FUNC(0x02D48BD0, void, Transform_SetPositionAndRotation_Injected, (Transform * __this, Vector3 position, Quaternion rotation, MethodInfo * method)); -DO_APP_FUNC(0x02D48C40, void, Transform_SetLocalPositionAndRotation_Injected, (Transform * __this, Vector3 localPosition, Quaternion localRotation, MethodInfo * method)); -DO_APP_FUNC(0x02D48CB0, void, Transform_RotateAroundInternal_Injected, (Transform * __this, Vector3 axis, float angle, MethodInfo * method)); -DO_APP_FUNC(0x02D48D20, void, Transform_Internal_LookAt_Injected, (Transform * __this, Vector3 worldPosition, Vector3 worldUp, MethodInfo * method)); -DO_APP_FUNC(0x02D48D90, void, Transform_TransformDirection_Injected, (Transform * __this, Vector3 direction, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02D48E00, void, Transform_InverseTransformDirection_Injected, (Transform * __this, Vector3 direction, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02D48E70, void, Transform_TransformVector_Injected, (Transform * __this, Vector3 vector, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02D48EE0, void, Transform_InverseTransformVector_Injected, (Transform * __this, Vector3 vector, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02D48F50, void, Transform_TransformPoint_Injected, (Transform * __this, Vector3 position, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02D48FC0, void, Transform_InverseTransformPoint_Injected, (Transform * __this, Vector3 position, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02D49030, void, Transform_get_lossyScale_Injected, (Transform * __this, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02D49090, void, Transform_RotateAround_Injected, (Transform * __this, Vector3 axis, float angle, MethodInfo * method)); -DO_APP_FUNC(0x02D49100, void, Transform_RotateAroundLocal_Injected, (Transform * __this, Vector3 axis, float angle, MethodInfo * method)); +DO_APP_FUNC(0x02D48610, void, Transform_get_position_Injected, (Transform * __this, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D48670, void, Transform_set_position_Injected, (Transform * __this, Vector3 * value, MethodInfo * method)); +DO_APP_FUNC(0x02D486D0, void, Transform_get_localPosition_Injected, (Transform * __this, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D48730, void, Transform_set_localPosition_Injected, (Transform * __this, Vector3 * value, MethodInfo * method)); +DO_APP_FUNC(0x02D48790, void, Transform_GetLocalEulerAngles_Injected, (Transform * __this, RotationOrder__Enum order, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D48800, void, Transform_SetLocalEulerAngles_Injected, (Transform * __this, Vector3 * euler, RotationOrder__Enum order, MethodInfo * method)); +DO_APP_FUNC(0x02D48870, void, Transform_SetLocalEulerHint_Injected, (Transform * __this, Vector3 * euler, MethodInfo * method)); +DO_APP_FUNC(0x02D488D0, void, Transform_get_rotation_Injected, (Transform * __this, Quaternion * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D48930, void, Transform_set_rotation_Injected, (Transform * __this, Quaternion * value, MethodInfo * method)); +DO_APP_FUNC(0x02D48990, void, Transform_get_localRotation_Injected, (Transform * __this, Quaternion * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D489F0, void, Transform_set_localRotation_Injected, (Transform * __this, Quaternion * value, MethodInfo * method)); +DO_APP_FUNC(0x02D48A50, void, Transform_get_localScale_Injected, (Transform * __this, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D48AB0, void, Transform_set_localScale_Injected, (Transform * __this, Vector3 * value, MethodInfo * method)); +DO_APP_FUNC(0x02D48B10, void, Transform_get_worldToLocalMatrix_Injected, (Transform * __this, Matrix4x4 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D48B70, void, Transform_get_localToWorldMatrix_Injected, (Transform * __this, Matrix4x4 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D48BD0, void, Transform_SetPositionAndRotation_Injected, (Transform * __this, Vector3 * position, Quaternion * rotation, MethodInfo * method)); +DO_APP_FUNC(0x02D48C40, void, Transform_SetLocalPositionAndRotation_Injected, (Transform * __this, Vector3 * localPosition, Quaternion * localRotation, MethodInfo * method)); +DO_APP_FUNC(0x02D48CB0, void, Transform_RotateAroundInternal_Injected, (Transform * __this, Vector3 * axis, float angle, MethodInfo * method)); +DO_APP_FUNC(0x02D48D20, void, Transform_Internal_LookAt_Injected, (Transform * __this, Vector3 * worldPosition, Vector3 * worldUp, MethodInfo * method)); +DO_APP_FUNC(0x02D48D90, void, Transform_TransformDirection_Injected, (Transform * __this, Vector3 * direction, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D48E00, void, Transform_InverseTransformDirection_Injected, (Transform * __this, Vector3 * direction, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D48E70, void, Transform_TransformVector_Injected, (Transform * __this, Vector3 * vector, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D48EE0, void, Transform_InverseTransformVector_Injected, (Transform * __this, Vector3 * vector, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D48F50, void, Transform_TransformPoint_Injected, (Transform * __this, Vector3 * position, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D48FC0, void, Transform_InverseTransformPoint_Injected, (Transform * __this, Vector3 * position, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D49030, void, Transform_get_lossyScale_Injected, (Transform * __this, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D49090, void, Transform_RotateAround_Injected, (Transform * __this, Vector3 * axis, float angle, MethodInfo * method)); +DO_APP_FUNC(0x02D49100, void, Transform_RotateAroundLocal_Injected, (Transform * __this, Vector3 * axis, float angle, MethodInfo * method)); DO_APP_FUNC(0x019CA400, void, Transform_Enumerator__ctor, (Transform_Enumerator * __this, Transform * outer, MethodInfo * method)); DO_APP_FUNC(0x02D49170, Object *, Transform_Enumerator_get_Current, (Transform_Enumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x02D491E0, bool, Transform_Enumerator_MoveNext, (Transform_Enumerator * __this, MethodInfo * method)); @@ -75027,8 +85718,8 @@ DO_APP_FUNC(0x006DDC60, void, Transform_Enumerator_Reset, (Transform_Enumerator DO_APP_FUNC(0x02D49260, void, SpriteRenderer_InvokeSpriteChanged, (SpriteRenderer * __this, MethodInfo * method)); DO_APP_FUNC(0x02D492F0, Color, SpriteRenderer_get_color, (SpriteRenderer * __this, MethodInfo * method)); DO_APP_FUNC(0x02D49360, void, SpriteRenderer_set_color, (SpriteRenderer * __this, Color value, MethodInfo * method)); -DO_APP_FUNC(0x02D493C0, void, SpriteRenderer_get_color_Injected, (SpriteRenderer * __this, Color ret, MethodInfo * method)); -DO_APP_FUNC(0x02D49420, void, SpriteRenderer_set_color_Injected, (SpriteRenderer * __this, Color value, MethodInfo * method)); +DO_APP_FUNC(0x02D493C0, void, SpriteRenderer_get_color_Injected, (SpriteRenderer * __this, Color * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D49420, void, SpriteRenderer_set_color_Injected, (SpriteRenderer * __this, Color * value, MethodInfo * method)); DO_APP_FUNC(0x02D49480, void, Sprite__ctor, (Sprite * __this, MethodInfo * method)); DO_APP_FUNC(0x02D494D0, int32_t, Sprite_GetPackingMode, (Sprite * __this, MethodInfo * method)); DO_APP_FUNC(0x02D49520, int32_t, Sprite_GetPackingRotation, (Sprite * __this, MethodInfo * method)); @@ -75053,22 +85744,23 @@ DO_APP_FUNC(0x02D49C50, Vector2__Array *, Sprite_get_vertices, (Sprite * __this, DO_APP_FUNC(0x02D49CA0, UInt16__Array *, Sprite_get_triangles, (Sprite * __this, MethodInfo * method)); DO_APP_FUNC(0x02D49CF0, Vector2__Array *, Sprite_get_uv, (Sprite * __this, MethodInfo * method)); DO_APP_FUNC(0x02D49D40, Sprite *, Sprite_Create, (Texture2D * texture, Rect rect, Vector2 pivot, float pixelsPerUnit, uint32_t extrude, SpriteMeshType__Enum meshType, Vector4 border, bool generateFallbackPhysicsShape, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C650, Sprite_Create__MethodInfo); DO_APP_FUNC(0x02D4A290, Sprite *, Sprite_Create_1, (Texture2D * texture, Rect rect, Vector2 pivot, float pixelsPerUnit, uint32_t extrude, SpriteMeshType__Enum meshType, Vector4 border, MethodInfo * method)); DO_APP_FUNC(0x02D4A2F0, Sprite *, Sprite_Create_2, (Texture2D * texture, Rect rect, Vector2 pivot, float pixelsPerUnit, uint32_t extrude, SpriteMeshType__Enum meshType, MethodInfo * method)); DO_APP_FUNC(0x02D4A3C0, Sprite *, Sprite_Create_3, (Texture2D * texture, Rect rect, Vector2 pivot, float pixelsPerUnit, uint32_t extrude, MethodInfo * method)); DO_APP_FUNC(0x02D4A400, Sprite *, Sprite_Create_4, (Texture2D * texture, Rect rect, Vector2 pivot, float pixelsPerUnit, MethodInfo * method)); DO_APP_FUNC(0x02D4A430, Sprite *, Sprite_Create_5, (Texture2D * texture, Rect rect, Vector2 pivot, MethodInfo * method)); -DO_APP_FUNC(0x02D4A470, void, Sprite_GetTextureRect_Injected, (Sprite * __this, Rect ret, MethodInfo * method)); -DO_APP_FUNC(0x02D4A4D0, void, Sprite_GetInnerUVs_Injected, (Sprite * __this, Vector4 ret, MethodInfo * method)); -DO_APP_FUNC(0x02D4A530, void, Sprite_GetOuterUVs_Injected, (Sprite * __this, Vector4 ret, MethodInfo * method)); -DO_APP_FUNC(0x02D4A590, void, Sprite_GetPadding_Injected, (Sprite * __this, Vector4 ret, MethodInfo * method)); -DO_APP_FUNC(0x02D4A5F0, Sprite *, Sprite_CreateSprite_Injected, (Texture2D * texture, Rect rect, Vector2 pivot, float pixelsPerUnit, uint32_t extrude, SpriteMeshType__Enum meshType, Vector4 border, bool generateFallbackPhysicsShape, MethodInfo * method)); -DO_APP_FUNC(0x02D4A680, void, Sprite_get_bounds_Injected, (Sprite * __this, Bounds ret, MethodInfo * method)); -DO_APP_FUNC(0x02D4A6E0, void, Sprite_get_rect_Injected, (Sprite * __this, Rect ret, MethodInfo * method)); -DO_APP_FUNC(0x02D4A740, void, Sprite_get_border_Injected, (Sprite * __this, Vector4 ret, MethodInfo * method)); -DO_APP_FUNC(0x02D4A7A0, void, Sprite_get_pivot_Injected, (Sprite * __this, Vector2 ret, MethodInfo * method)); -DO_APP_FUNC(0x02D4A800, bool, APIUpdaterRuntimeHelpers_GetMovedFromAttributeDataForType, (Type * sourceType, String * assembly, String * nsp, String * klass, MethodInfo * method)); -DO_APP_FUNC(0x02D4AB40, bool, APIUpdaterRuntimeHelpers_GetObsoleteTypeRedirection, (Type * sourceType, String * assemblyName, String * nsp, String * className, MethodInfo * method)); +DO_APP_FUNC(0x02D4A470, void, Sprite_GetTextureRect_Injected, (Sprite * __this, Rect * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D4A4D0, void, Sprite_GetInnerUVs_Injected, (Sprite * __this, Vector4 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D4A530, void, Sprite_GetOuterUVs_Injected, (Sprite * __this, Vector4 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D4A590, void, Sprite_GetPadding_Injected, (Sprite * __this, Vector4 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D4A5F0, Sprite *, Sprite_CreateSprite_Injected, (Texture2D * texture, Rect * rect, Vector2 * pivot, float pixelsPerUnit, uint32_t extrude, SpriteMeshType__Enum meshType, Vector4 * border, bool generateFallbackPhysicsShape, MethodInfo * method)); +DO_APP_FUNC(0x02D4A680, void, Sprite_get_bounds_Injected, (Sprite * __this, Bounds * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D4A6E0, void, Sprite_get_rect_Injected, (Sprite * __this, Rect * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D4A740, void, Sprite_get_border_Injected, (Sprite * __this, Vector4 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D4A7A0, void, Sprite_get_pivot_Injected, (Sprite * __this, Vector2 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D4A800, bool, APIUpdaterRuntimeHelpers_GetMovedFromAttributeDataForType, (Type * sourceType, String * * assembly, String * * nsp, String * * klass, MethodInfo * method)); +DO_APP_FUNC(0x02D4AB40, bool, APIUpdaterRuntimeHelpers_GetObsoleteTypeRedirection, (Type * sourceType, String * * assemblyName, String * * nsp, String * * className, MethodInfo * method)); DO_APP_FUNC(0x02D4AF90, Vector4, DataUtility_GetInnerUV, (Sprite * sprite, MethodInfo * method)); DO_APP_FUNC(0x02D4B020, Vector4, DataUtility_GetOuterUV, (Sprite * sprite, MethodInfo * method)); DO_APP_FUNC(0x02D4B0B0, Vector4, DataUtility_GetPadding, (Sprite * sprite, MethodInfo * method)); @@ -75078,6 +85770,7 @@ DO_APP_FUNC(0x02D4B3A0, void, SpriteAtlasManager_add_atlasRegistered, (Action_1_ DO_APP_FUNC(0x02D4B4E0, void, SpriteAtlasManager_remove_atlasRegistered, (Action_1_UnityEngine_U2D_SpriteAtlas_ * value, MethodInfo * method)); DO_APP_FUNC(0x02D4B620, void, SpriteAtlasManager_PostRegisteredAtlas, (SpriteAtlas * spriteAtlas, MethodInfo * method)); DO_APP_FUNC(0x02D4B680, void, SpriteAtlasManager_Register, (SpriteAtlas * spriteAtlas, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C608, SpriteAtlasManager_Register__MethodInfo); DO_APP_FUNC(0x02D4B6D0, bool, SpriteAtlas_CanBindTo, (SpriteAtlas * __this, Sprite * sprite, MethodInfo * method)); DO_APP_FUNC(0x02D4B730, Sprite *, SpriteAtlas_GetSprite, (SpriteAtlas * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Profiler_1_EndThreadProfiling, (MethodInfo * method)); @@ -75102,23 +85795,23 @@ DO_APP_FUNC(0x02D4BF80, void, CustomSampler__ctor, (CustomSampler * __this, Meth DO_APP_FUNC(0x02D4BFD0, void, CustomSampler__ctor_1, (CustomSampler * __this, void * ptr, MethodInfo * method)); DO_APP_FUNC(0x02D4C030, CustomSampler *, CustomSampler_Create, (String * name, bool collectGpuData, MethodInfo * method)); DO_APP_FUNC(0x02D4C150, void, CustomSampler__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x0119B5D0, void, DebugScreenCapture_set_rawImageDataReference, (DebugScreenCapture__Boxed * __this, NativeArray_1_System_Byte_ value, MethodInfo * method)); -DO_APP_FUNC(0x003BCD60, void, DebugScreenCapture_set_imageFormat, (DebugScreenCapture__Boxed * __this, TextureFormat__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x003BCD80, void, DebugScreenCapture_set_width, (DebugScreenCapture__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x003BCDD0, void, DebugScreenCapture_set_height, (DebugScreenCapture__Boxed * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x0119B5D0, void, DebugScreenCapture_set_rawImageDataReference, (DebugScreenCapture * __this, NativeArray_1_System_Byte_ value, MethodInfo * method)); +DO_APP_FUNC(0x003BCD60, void, DebugScreenCapture_set_imageFormat, (DebugScreenCapture * __this, TextureFormat__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x003BCD80, void, DebugScreenCapture_set_width, (DebugScreenCapture * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x003BCDD0, void, DebugScreenCapture_set_height, (DebugScreenCapture * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, MetaData__ctor, (MetaData * __this, MethodInfo * method)); DO_APP_FUNC(0x02D4C230, Byte__Array *, MemoryProfiler_PrepareMetadata, (MethodInfo * method)); DO_APP_FUNC(0x02D4C5B0, int32_t, MemoryProfiler_WriteIntToByteArray, (Byte__Array * array, int32_t offset, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x02D4C630, int32_t, MemoryProfiler_WriteStringToByteArray, (Byte__Array * array, int32_t offset, String * value, MethodInfo * method)); DO_APP_FUNC(0x02D4C6B0, void, MemoryProfiler_FinalizeSnapshot, (String * path, bool result, MethodInfo * method)); DO_APP_FUNC(0x02D4C770, void, MemoryProfiler_SaveScreenshotToDisk, (String * path, bool result, void * pixelsPtr, int32_t pixelsCount, TextureFormat__Enum format, int32_t width, int32_t height, MethodInfo * method)); -DO_APP_FUNC(0x02D4C8D0, void, TransformAccessArray__ctor, (TransformAccessArray__Boxed * __this, int32_t capacity, int32_t desiredJobCount, MethodInfo * method)); -DO_APP_FUNC(0x02D4C940, void, TransformAccessArray_Allocate, (int32_t capacity, int32_t desiredJobCount, TransformAccessArray array, MethodInfo * method)); -DO_APP_FUNC(0x02D4C9B0, bool, TransformAccessArray_get_isCreated, (TransformAccessArray__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D4CA00, void, TransformAccessArray_Dispose, (TransformAccessArray__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D4CA90, Transform *, TransformAccessArray_get_Item, (TransformAccessArray__Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x02D4CAF0, int32_t, TransformAccessArray_get_length, (TransformAccessArray__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D4CB40, void, TransformAccessArray_Add, (TransformAccessArray__Boxed * __this, Transform * transform, MethodInfo * method)); +DO_APP_FUNC(0x02D4C8D0, void, TransformAccessArray__ctor, (TransformAccessArray * __this, int32_t capacity, int32_t desiredJobCount, MethodInfo * method)); +DO_APP_FUNC(0x02D4C940, void, TransformAccessArray_Allocate, (int32_t capacity, int32_t desiredJobCount, TransformAccessArray * array, MethodInfo * method)); +DO_APP_FUNC(0x02D4C9B0, bool, TransformAccessArray_get_isCreated, (TransformAccessArray * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D4CA00, void, TransformAccessArray_Dispose, (TransformAccessArray * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D4CA90, Transform *, TransformAccessArray_get_Item, (TransformAccessArray * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x02D4CAF0, int32_t, TransformAccessArray_get_length, (TransformAccessArray * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D4CB40, void, TransformAccessArray_Add, (TransformAccessArray * __this, Transform * transform, MethodInfo * method)); DO_APP_FUNC(0x02D4CBA0, void *, TransformAccessArray_Create, (int32_t capacity, int32_t desiredJobCount, MethodInfo * method)); DO_APP_FUNC(0x02D4CC00, void, TransformAccessArray_DestroyTransformAccessArray, (void * transformArray, MethodInfo * method)); DO_APP_FUNC(0x02D4CC50, void, TransformAccessArray_Add_1, (void * transformArrayIntPtr, Transform * transform, MethodInfo * method)); @@ -75126,6 +85819,7 @@ DO_APP_FUNC(0x02D4CCB0, int32_t, TransformAccessArray_GetLength, (void * transfo DO_APP_FUNC(0x02D4CD00, Transform *, TransformAccessArray_GetTransform, (void * transformArrayIntPtr, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x02D4CD60, void, Input_ForwardRawInputImpl, (uint32_t * rawInputHeaderIndices, uint32_t * rawInputDataIndices, uint32_t indicesCount, uint8_t * rawInputData, uint32_t rawInputDataSize, MethodInfo * method)); DO_APP_FUNC(0x0219A720, void, Input_ForwardRawInput, (uint32_t * rawInputHeaderIndices, uint32_t * rawInputDataIndices, uint32_t indicesCount, uint8_t * rawInputData, uint32_t rawInputDataSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C4F8, Input_ForwardRawInput__MethodInfo); DO_APP_FUNC(0x02D4CDF0, void, PhraseRecognitionSystem_PhraseRecognitionSystem_InvokeErrorEvent, (SpeechError__Enum errorCode, MethodInfo * method)); DO_APP_FUNC(0x02D4CE50, void, PhraseRecognitionSystem_PhraseRecognitionSystem_InvokeStatusChangedEvent, (SpeechSystemStatus__Enum status, MethodInfo * method)); DO_APP_FUNC(0x003EE520, void, PhraseRecognitionSystem_ErrorDelegate__ctor, (PhraseRecognitionSystem_ErrorDelegate * __this, Object * object, void * method_1, MethodInfo * method)); @@ -75148,7 +85842,7 @@ DO_APP_FUNC(0x003EE520, void, DictationRecognizer_DictationCompletedDelegate__ct DO_APP_FUNC(0x003EE650, void, DictationRecognizer_DictationCompletedDelegate_Invoke, (DictationRecognizer_DictationCompletedDelegate * __this, DictationCompletionCause__Enum cause, MethodInfo * method)); DO_APP_FUNC(0x02336B40, void, DictationRecognizer_DictationErrorHandler__ctor, (DictationRecognizer_DictationErrorHandler * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EC2D0, void, DictationRecognizer_DictationErrorHandler_Invoke, (DictationRecognizer_DictationErrorHandler * __this, String * error, int32_t hresult, MethodInfo * method)); -DO_APP_FUNC(0x02D4D300, void, PhraseRecognizedEventArgs__ctor, (PhraseRecognizedEventArgs__Boxed * __this, String * text, ConfidenceLevel__Enum confidence, SemanticMeaning__Array * semanticMeanings, DateTime phraseStartTime, TimeSpan phraseDuration, MethodInfo * method)); +DO_APP_FUNC(0x02D4D300, void, PhraseRecognizedEventArgs__ctor, (PhraseRecognizedEventArgs * __this, String * text, ConfidenceLevel__Enum confidence, SemanticMeaning__Array * semanticMeanings, DateTime phraseStartTime, TimeSpan phraseDuration, MethodInfo * method)); DO_APP_FUNC(0x02D4D3D0, PhotoCapture_PhotoCaptureResult, PhotoCapture_MakeCaptureResult, (int64_t hResult, MethodInfo * method)); DO_APP_FUNC(0x02D4D440, void, PhotoCapture_InvokeOnCreatedResourceDelegate, (PhotoCapture_OnCaptureResourceCreatedCallback * callback, void * nativePtr, MethodInfo * method)); DO_APP_FUNC(0x0120DC90, void, PhotoCapture__ctor, (PhotoCapture * __this, void * nativeCaptureObject, MethodInfo * method)); @@ -75215,6 +85909,7 @@ DO_APP_FUNC(0x02D4E480, void, ArgumentCache_OnAfterDeserialize, (ArgumentCache * DO_APP_FUNC(0x003AE050, void, ArgumentCache__ctor, (ArgumentCache * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BaseInvokableCall__ctor, (BaseInvokableCall * __this, MethodInfo * method)); DO_APP_FUNC(0x02D4E4F0, void, BaseInvokableCall__ctor_1, (BaseInvokableCall * __this, Object * target, MethodInfo_1 * function, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12078, BaseInvokableCall__ctor_1__MethodInfo); DO_APP_FUNC(0x02D4E630, bool, BaseInvokableCall_AllowInvoke, (Delegate * delegate, MethodInfo * method)); DO_APP_FUNC(0x02D4E790, void, InvokableCall_add_Delegate, (InvokableCall * __this, UnityAction * value, MethodInfo * method)); DO_APP_FUNC(0x02D4E880, void, InvokableCall_remove_Delegate, (InvokableCall * __this, UnityAction * value, MethodInfo * method)); @@ -75231,6 +85926,7 @@ DO_APP_FUNC(0x02D4EDA0, ArgumentCache *, PersistentCall_get_arguments, (Persiste DO_APP_FUNC(0x02D4EDB0, bool, PersistentCall_IsValid, (PersistentCall * __this, MethodInfo * method)); DO_APP_FUNC(0x02D4EDF0, BaseInvokableCall *, PersistentCall_GetRuntimeCall, (PersistentCall * __this, UnityEventBase * theEvent, MethodInfo * method)); DO_APP_FUNC(0x02D4F290, BaseInvokableCall *, PersistentCall_GetObjectCall, (Object_1 * target, MethodInfo_1 * method_1, ArgumentCache * arguments, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11FF0, PersistentCall_GetObjectCall__MethodInfo); DO_APP_FUNC(0x02D4E480, void, PersistentCall_OnBeforeSerialize, (PersistentCall * __this, MethodInfo * method)); DO_APP_FUNC(0x02D4E480, void, PersistentCall_OnAfterDeserialize, (PersistentCall * __this, MethodInfo * method)); DO_APP_FUNC(0x02D4F840, void, PersistentCall__ctor, (PersistentCall * __this, MethodInfo * method)); @@ -75247,6 +85943,7 @@ DO_APP_FUNC(0x02D50460, void, UnityEventBase__ctor, (UnityEventBase * __this, Me DO_APP_FUNC(0x02D50680, void, UnityEventBase_UnityEngine_ISerializationCallbackReceiver_OnBeforeSerialize, (UnityEventBase * __this, MethodInfo * method)); DO_APP_FUNC(0x02D50680, void, UnityEventBase_UnityEngine_ISerializationCallbackReceiver_OnAfterDeserialize, (UnityEventBase * __this, MethodInfo * method)); DO_APP_FUNC(0x02D50690, MethodInfo_1 *, UnityEventBase_FindMethod, (UnityEventBase * __this, PersistentCall * call, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11D28, UnityEventBase_FindMethod__MethodInfo); DO_APP_FUNC(0x02D50900, MethodInfo_1 *, UnityEventBase_FindMethod_1, (UnityEventBase * __this, String * name, Type * listenerType, PersistentListenerMode__Enum mode, Type * argumentType, MethodInfo * method)); DO_APP_FUNC(0x02D50CD0, void, UnityEventBase_DirtyPersistentCalls, (UnityEventBase * __this, MethodInfo * method)); DO_APP_FUNC(0x02D50E10, void, UnityEventBase_RebuildPersistentCallsIfNeeded, (UnityEventBase * __this, MethodInfo * method)); @@ -75268,7 +85965,7 @@ DO_APP_FUNC(0x02D51610, void, UnityEvent_Invoke, (UnityEvent * __this, MethodInf DO_APP_FUNC(0x003BCBE0, void, FormerlySerializedAsAttribute__ctor, (FormerlySerializedAsAttribute * __this, String * oldName, MethodInfo * method)); DO_APP_FUNC(0x015C0B20, String *, FormerlySerializedAsAttribute_get_oldName, (FormerlySerializedAsAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, PreserveAttribute_1__ctor, (PreserveAttribute_1 * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D517D0, void, MovedFromAttributeData_Set, (MovedFromAttributeData__Boxed * __this, bool autoUpdateAPI, String * sourceNamespace, String * sourceAssembly, String * sourceClassName, MethodInfo * method)); +DO_APP_FUNC(0x02D517D0, void, MovedFromAttributeData_Set, (MovedFromAttributeData * __this, bool autoUpdateAPI, String * sourceNamespace, String * sourceAssembly, String * sourceClassName, MethodInfo * method)); DO_APP_FUNC(0x02D51920, void, MovedFromAttribute__ctor, (MovedFromAttribute * __this, bool autoUpdateAPI, String * sourceNamespace, String * sourceAssembly, String * sourceClassName, MethodInfo * method)); DO_APP_FUNC(0x02D51940, void, MovedFromAttribute__ctor_1, (MovedFromAttribute * __this, String * sourceNamespace, MethodInfo * method)); DO_APP_FUNC(0x02D51970, bool, Scene_IsValidInternal, (int32_t sceneHandle, MethodInfo * method)); @@ -75278,20 +85975,21 @@ DO_APP_FUNC(0x02D51A60, bool, Scene_GetIsLoadedInternal, (int32_t sceneHandle, M DO_APP_FUNC(0x02D51AB0, int32_t, Scene_GetBuildIndexInternal, (int32_t sceneHandle, MethodInfo * method)); DO_APP_FUNC(0x02D51B00, int32_t, Scene_GetRootCountInternal, (int32_t sceneHandle, MethodInfo * method)); DO_APP_FUNC(0x02D51B50, void, Scene_GetRootGameObjectsInternal, (int32_t sceneHandle, Object * resultRootList, MethodInfo * method)); -DO_APP_FUNC(0x02B78450, int32_t, Scene_get_handle, (Scene__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D51BB0, String *, Scene_get_guid, (Scene__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D51C00, bool, Scene_IsValid, (Scene__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D51C50, String *, Scene_get_name, (Scene__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D51CA0, bool, Scene_get_isLoaded, (Scene__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D51CF0, int32_t, Scene_get_buildIndex, (Scene__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D51D40, int32_t, Scene_get_rootCount, (Scene__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D51D90, GameObject__Array *, Scene_GetRootGameObjects, (Scene__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D51E80, void, Scene_GetRootGameObjects_1, (Scene__Boxed * __this, List_1_UnityEngine_GameObject_ * rootGameObjects, MethodInfo * method)); +DO_APP_FUNC(0x02B78450, int32_t, Scene_get_handle, (Scene * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D51BB0, String *, Scene_get_guid, (Scene * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D51C00, bool, Scene_IsValid, (Scene * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D51C50, String *, Scene_get_name, (Scene * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D51CA0, bool, Scene_get_isLoaded, (Scene * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D51CF0, int32_t, Scene_get_buildIndex, (Scene * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D51D40, int32_t, Scene_get_rootCount, (Scene * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D51D90, GameObject__Array *, Scene_GetRootGameObjects, (Scene * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D51E80, void, Scene_GetRootGameObjects_1, (Scene * __this, List_1_UnityEngine_GameObject_ * rootGameObjects, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11B98, Scene_GetRootGameObjects_1__MethodInfo); DO_APP_FUNC(0x02D31C70, bool, Scene_op_Equality, (Scene lhs, Scene rhs, MethodInfo * method)); -DO_APP_FUNC(0x02B78450, int32_t, Scene_GetHashCode, (Scene__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D521F0, bool, Scene_Equals, (Scene__Boxed * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x02B78450, int32_t, Scene_GetHashCode, (Scene * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D521F0, bool, Scene_Equals, (Scene * __this, Object * other, MethodInfo * method)); DO_APP_FUNC(0x02D52280, AsyncOperation_1 *, SceneManagerAPIInternal_LoadSceneAsyncNameIndexInternal, (String * sceneName, int32_t sceneBuildIndex, LoadSceneParameters parameters, bool mustCompleteNextFrame, MethodInfo * method)); -DO_APP_FUNC(0x02D52300, AsyncOperation_1 *, SceneManagerAPIInternal_LoadSceneAsyncNameIndexInternal_Injected, (String * sceneName, int32_t sceneBuildIndex, LoadSceneParameters parameters, bool mustCompleteNextFrame, MethodInfo * method)); +DO_APP_FUNC(0x02D52300, AsyncOperation_1 *, SceneManagerAPIInternal_LoadSceneAsyncNameIndexInternal_Injected, (String * sceneName, int32_t sceneBuildIndex, LoadSceneParameters * parameters, bool mustCompleteNextFrame, MethodInfo * method)); DO_APP_FUNC(0x02D52380, SceneManagerAPI *, SceneManagerAPI_get_ActiveAPI, (MethodInfo * method)); DO_APP_FUNC(0x02D52440, SceneManagerAPI *, SceneManagerAPI_get_overrideAPI, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SceneManagerAPI__ctor, (SceneManagerAPI * __this, MethodInfo * method)); @@ -75320,13 +86018,13 @@ DO_APP_FUNC(0x02D535C0, void, SceneManager_Internal_SceneLoaded, (Scene scene, L DO_APP_FUNC(0x02D53660, void, SceneManager_Internal_SceneUnloaded, (Scene scene, MethodInfo * method)); DO_APP_FUNC(0x02D53700, void, SceneManager_Internal_ActiveSceneChanged, (Scene previousActiveScene, Scene newActiveScene, MethodInfo * method)); DO_APP_FUNC(0x02D537A0, void, SceneManager__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02D537E0, void, SceneManager_GetActiveScene_Injected, (Scene ret, MethodInfo * method)); -DO_APP_FUNC(0x02D53830, bool, SceneManager_SetActiveScene_Injected, (Scene scene, MethodInfo * method)); -DO_APP_FUNC(0x02D53880, void, SceneManager_GetSceneAt_Injected, (int32_t index, Scene ret, MethodInfo * method)); -DO_APP_FUNC(0x02D538E0, AsyncOperation_1 *, SceneManager_UnloadSceneAsyncInternal_Injected, (Scene scene, UnloadSceneOptions__Enum options, MethodInfo * method)); -DO_APP_FUNC(0x00959BA0, void, LoadSceneParameters_set_loadSceneMode, (LoadSceneParameters__Boxed * __this, LoadSceneMode__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x02D53940, void, LoadSceneParameters__ctor, (LoadSceneParameters__Boxed * __this, LoadSceneMode__Enum mode, MethodInfo * method)); -DO_APP_FUNC(0x02D53950, String *, PlayerLoopSystem_ToString, (PlayerLoopSystem__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D537E0, void, SceneManager_GetActiveScene_Injected, (Scene * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D53830, bool, SceneManager_SetActiveScene_Injected, (Scene * scene, MethodInfo * method)); +DO_APP_FUNC(0x02D53880, void, SceneManager_GetSceneAt_Injected, (int32_t index, Scene * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D538E0, AsyncOperation_1 *, SceneManager_UnloadSceneAsyncInternal_Injected, (Scene * scene, UnloadSceneOptions__Enum options, MethodInfo * method)); +DO_APP_FUNC(0x00959BA0, void, LoadSceneParameters_set_loadSceneMode, (LoadSceneParameters * __this, LoadSceneMode__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x02D53940, void, LoadSceneParameters__ctor, (LoadSceneParameters * __this, LoadSceneMode__Enum mode, MethodInfo * method)); +DO_APP_FUNC(0x02D53950, String *, PlayerLoopSystem_ToString, (PlayerLoopSystem * __this, MethodInfo * method)); DO_APP_FUNC(0x003F7AE0, void, PlayerLoopSystem_UpdateFunction__ctor, (PlayerLoopSystem_UpdateFunction * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003CB0B0, void, PlayerLoopSystem_UpdateFunction_Invoke, (PlayerLoopSystem_UpdateFunction * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, MessageEventArgs__ctor, (MessageEventArgs * __this, MethodInfo * method)); @@ -75336,25 +86034,32 @@ DO_APP_FUNC(0x02D53C10, PlayerConnection *, PlayerConnection_CreateInstance, (Me DO_APP_FUNC(0x02D53D40, void, PlayerConnection_OnEnable, (PlayerConnection * __this, MethodInfo * method)); DO_APP_FUNC(0x02D53DB0, IPlayerEditorConnectionNative *, PlayerConnection_GetConnectionNativeApi, (PlayerConnection * __this, MethodInfo * method)); DO_APP_FUNC(0x02D53E20, void, PlayerConnection_Register, (PlayerConnection * __this, Guid messageId, UnityAction_1_UnityEngine_Networking_PlayerConnection_MessageEventArgs_ * callback, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D119E0, PlayerConnection_Register__MethodInfo); DO_APP_FUNC(0x02D54070, void, PlayerConnection_Unregister, (PlayerConnection * __this, Guid messageId, UnityAction_1_UnityEngine_Networking_PlayerConnection_MessageEventArgs_ * callback, MethodInfo * method)); DO_APP_FUNC(0x02D54320, void, PlayerConnection_RegisterConnection, (PlayerConnection * __this, UnityAction_1_System_Int32_ * callback, MethodInfo * method)); DO_APP_FUNC(0x02D54550, void, PlayerConnection_RegisterDisconnection, (PlayerConnection * __this, UnityAction_1_System_Int32_ * callback, MethodInfo * method)); DO_APP_FUNC(0x02D545B0, void, PlayerConnection_UnregisterConnection, (PlayerConnection * __this, UnityAction_1_System_Int32_ * callback, MethodInfo * method)); DO_APP_FUNC(0x02D54650, void, PlayerConnection_UnregisterDisconnection, (PlayerConnection * __this, UnityAction_1_System_Int32_ * callback, MethodInfo * method)); DO_APP_FUNC(0x02D546F0, void, PlayerConnection_Send, (PlayerConnection * __this, Guid messageId, Byte__Array * data, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D117F8, PlayerConnection_Send__MethodInfo); DO_APP_FUNC(0x02D548A0, bool, PlayerConnection_TrySend, (PlayerConnection * __this, Guid messageId, Byte__Array * data, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11858, PlayerConnection_TrySend__MethodInfo); DO_APP_FUNC(0x02D54A60, bool, PlayerConnection_BlockUntilRecvMsg, (PlayerConnection * __this, Guid messageId, int32_t timeout, MethodInfo * method)); DO_APP_FUNC(0x02D54DE0, void, PlayerConnection_DisconnectAll, (PlayerConnection * __this, MethodInfo * method)); DO_APP_FUNC(0x02D54E40, void, PlayerConnection_MessageCallbackInternal, (void * data, uint64_t size, uint64_t guid, String * messageId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11890, PlayerConnection_MessageCallbackInternal__MethodInfo); DO_APP_FUNC(0x02D55080, void, PlayerConnection_ConnectedCallbackInternal, (int32_t playerId, MethodInfo * method)); DO_APP_FUNC(0x02D55160, void, PlayerConnection_DisconnectedCallback, (int32_t playerId, MethodInfo * method)); DO_APP_FUNC(0x02D551F0, void, PlayerConnection__ctor, (PlayerConnection * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, PlayerConnection_c_DisplayClass12_0__ctor, (PlayerConnection_c_DisplayClass12_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x02D55350, bool, PlayerConnection_c_DisplayClass12_0__Register_b__0, (PlayerConnection_c_DisplayClass12_0 * __this, PlayerEditorConnectionEvents_MessageTypeSubscribers * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11A18, PlayerConnection_c_DisplayClass12_0__Register_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, PlayerConnection_c_DisplayClass13_0__ctor, (PlayerConnection_c_DisplayClass13_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x02D55350, bool, PlayerConnection_c_DisplayClass13_0__Unregister_b__0, (PlayerConnection_c_DisplayClass13_0 * __this, PlayerEditorConnectionEvents_MessageTypeSubscribers * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D117E8, PlayerConnection_c_DisplayClass13_0__Unregister_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, PlayerConnection_c_DisplayClass20_0__ctor, (PlayerConnection_c_DisplayClass20_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD40, void, PlayerConnection_c_DisplayClass20_0__BlockUntilRecvMsg_b__0, (PlayerConnection_c_DisplayClass20_0 * __this, MessageEventArgs * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11848, PlayerConnection_c_DisplayClass20_0__BlockUntilRecvMsg_b__0__MethodInfo); DO_APP_FUNC(0x02D553D0, void, PlayerEditorConnectionEvents_InvokeMessageIdSubscribers, (PlayerEditorConnectionEvents * __this, Guid messageId, Byte__Array * data, int32_t playerId, MethodInfo * method)); DO_APP_FUNC(0x02D557D0, UnityEvent_1_UnityEngine_Networking_PlayerConnection_MessageEventArgs_ *, PlayerEditorConnectionEvents_AddAndCreate, (PlayerEditorConnectionEvents * __this, Guid messageId, MethodInfo * method)); DO_APP_FUNC(0x02D55B20, void, PlayerEditorConnectionEvents_UnregisterManagedCallback, (PlayerEditorConnectionEvents * __this, Guid messageId, UnityAction_1_UnityEngine_Networking_PlayerConnection_MessageEventArgs_ * callback, MethodInfo * method)); @@ -75366,77 +86071,82 @@ DO_APP_FUNC(0x02D560C0, void, PlayerEditorConnectionEvents_MessageTypeSubscriber DO_APP_FUNC(0x02D56160, void, PlayerEditorConnectionEvents_MessageTypeSubscribers__ctor, (PlayerEditorConnectionEvents_MessageTypeSubscribers * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, PlayerEditorConnectionEvents_c_DisplayClass6_0__ctor, (PlayerEditorConnectionEvents_c_DisplayClass6_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x02D55350, bool, PlayerEditorConnectionEvents_c_DisplayClass6_0__InvokeMessageIdSubscribers_b__0, (PlayerEditorConnectionEvents_c_DisplayClass6_0 * __this, PlayerEditorConnectionEvents_MessageTypeSubscribers * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11738, PlayerEditorConnectionEvents_c_DisplayClass6_0__InvokeMessageIdSubscribers_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, PlayerEditorConnectionEvents_c_DisplayClass7_0__ctor, (PlayerEditorConnectionEvents_c_DisplayClass7_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x02D55350, bool, PlayerEditorConnectionEvents_c_DisplayClass7_0__AddAndCreate_b__0, (PlayerEditorConnectionEvents_c_DisplayClass7_0 * __this, PlayerEditorConnectionEvents_MessageTypeSubscribers * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11768, PlayerEditorConnectionEvents_c_DisplayClass7_0__AddAndCreate_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, PlayerEditorConnectionEvents_c_DisplayClass8_0__ctor, (PlayerEditorConnectionEvents_c_DisplayClass8_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x02D55350, bool, PlayerEditorConnectionEvents_c_DisplayClass8_0__UnregisterManagedCallback_b__0, (PlayerEditorConnectionEvents_c_DisplayClass8_0 * __this, PlayerEditorConnectionEvents_MessageTypeSubscribers * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11748, PlayerEditorConnectionEvents_c_DisplayClass8_0__UnregisterManagedCallback_b__0__MethodInfo); DO_APP_FUNC(0x003BCBE0, void, DefaultValueAttribute_1__ctor, (DefaultValueAttribute_1 * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x015C0B20, Object *, DefaultValueAttribute_1_get_Value, (DefaultValueAttribute_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02D56220, bool, DefaultValueAttribute_1_Equals, (DefaultValueAttribute_1 * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x02D562D0, int32_t, DefaultValueAttribute_1_GetHashCode, (DefaultValueAttribute_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ExcludeFromDocsAttribute__ctor, (ExcludeFromDocsAttribute * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D56310, void, AsyncGPUReadbackRequest_WaitForCompletion, (AsyncGPUReadbackRequest__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D56360, bool, AsyncGPUReadbackRequest_get_done, (AsyncGPUReadbackRequest__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D563B0, bool, AsyncGPUReadbackRequest_get_hasError, (AsyncGPUReadbackRequest__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D56400, int32_t, AsyncGPUReadbackRequest_get_layerCount, (AsyncGPUReadbackRequest__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D56450, int32_t, AsyncGPUReadbackRequest_get_layerDataSize, (AsyncGPUReadbackRequest__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D56360, bool, AsyncGPUReadbackRequest_IsDone, (AsyncGPUReadbackRequest__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D563B0, bool, AsyncGPUReadbackRequest_HasError, (AsyncGPUReadbackRequest__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D56400, int32_t, AsyncGPUReadbackRequest_GetLayerCount, (AsyncGPUReadbackRequest__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D56450, int32_t, AsyncGPUReadbackRequest_GetLayerDataSize, (AsyncGPUReadbackRequest__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D564A0, void, AsyncGPUReadbackRequest_SetScriptingCallback, (AsyncGPUReadbackRequest__Boxed * __this, Action_1_UnityEngine_Rendering_AsyncGPUReadbackRequest_ * callback, MethodInfo * method)); -DO_APP_FUNC(0x02D56500, void *, AsyncGPUReadbackRequest_GetDataRaw, (AsyncGPUReadbackRequest__Boxed * __this, int32_t layer, MethodInfo * method)); -DO_APP_FUNC(0x02D56310, void, AsyncGPUReadbackRequest_WaitForCompletion_Injected, (AsyncGPUReadbackRequest _unity_self, MethodInfo * method)); -DO_APP_FUNC(0x02D56360, bool, AsyncGPUReadbackRequest_IsDone_Injected, (AsyncGPUReadbackRequest _unity_self, MethodInfo * method)); -DO_APP_FUNC(0x02D563B0, bool, AsyncGPUReadbackRequest_HasError_Injected, (AsyncGPUReadbackRequest _unity_self, MethodInfo * method)); -DO_APP_FUNC(0x02D56400, int32_t, AsyncGPUReadbackRequest_GetLayerCount_Injected, (AsyncGPUReadbackRequest _unity_self, MethodInfo * method)); -DO_APP_FUNC(0x02D56450, int32_t, AsyncGPUReadbackRequest_GetLayerDataSize_Injected, (AsyncGPUReadbackRequest _unity_self, MethodInfo * method)); -DO_APP_FUNC(0x02D564A0, void, AsyncGPUReadbackRequest_SetScriptingCallback_Injected, (AsyncGPUReadbackRequest _unity_self, Action_1_UnityEngine_Rendering_AsyncGPUReadbackRequest_ * callback, MethodInfo * method)); -DO_APP_FUNC(0x02D56500, void *, AsyncGPUReadbackRequest_GetDataRaw_Injected, (AsyncGPUReadbackRequest _unity_self, int32_t layer, MethodInfo * method)); +DO_APP_FUNC(0x02D56310, void, AsyncGPUReadbackRequest_WaitForCompletion, (AsyncGPUReadbackRequest * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D56360, bool, AsyncGPUReadbackRequest_get_done, (AsyncGPUReadbackRequest * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D563B0, bool, AsyncGPUReadbackRequest_get_hasError, (AsyncGPUReadbackRequest * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D56400, int32_t, AsyncGPUReadbackRequest_get_layerCount, (AsyncGPUReadbackRequest * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D56450, int32_t, AsyncGPUReadbackRequest_get_layerDataSize, (AsyncGPUReadbackRequest * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D56360, bool, AsyncGPUReadbackRequest_IsDone, (AsyncGPUReadbackRequest * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D563B0, bool, AsyncGPUReadbackRequest_HasError, (AsyncGPUReadbackRequest * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D56400, int32_t, AsyncGPUReadbackRequest_GetLayerCount, (AsyncGPUReadbackRequest * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D56450, int32_t, AsyncGPUReadbackRequest_GetLayerDataSize, (AsyncGPUReadbackRequest * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D564A0, void, AsyncGPUReadbackRequest_SetScriptingCallback, (AsyncGPUReadbackRequest * __this, Action_1_UnityEngine_Rendering_AsyncGPUReadbackRequest_ * callback, MethodInfo * method)); +DO_APP_FUNC(0x02D56500, void *, AsyncGPUReadbackRequest_GetDataRaw, (AsyncGPUReadbackRequest * __this, int32_t layer, MethodInfo * method)); +DO_APP_FUNC(0x02D56310, void, AsyncGPUReadbackRequest_WaitForCompletion_Injected, (AsyncGPUReadbackRequest * _unity_self, MethodInfo * method)); +DO_APP_FUNC(0x02D56360, bool, AsyncGPUReadbackRequest_IsDone_Injected, (AsyncGPUReadbackRequest * _unity_self, MethodInfo * method)); +DO_APP_FUNC(0x02D563B0, bool, AsyncGPUReadbackRequest_HasError_Injected, (AsyncGPUReadbackRequest * _unity_self, MethodInfo * method)); +DO_APP_FUNC(0x02D56400, int32_t, AsyncGPUReadbackRequest_GetLayerCount_Injected, (AsyncGPUReadbackRequest * _unity_self, MethodInfo * method)); +DO_APP_FUNC(0x02D56450, int32_t, AsyncGPUReadbackRequest_GetLayerDataSize_Injected, (AsyncGPUReadbackRequest * _unity_self, MethodInfo * method)); +DO_APP_FUNC(0x02D564A0, void, AsyncGPUReadbackRequest_SetScriptingCallback_Injected, (AsyncGPUReadbackRequest * _unity_self, Action_1_UnityEngine_Rendering_AsyncGPUReadbackRequest_ * callback, MethodInfo * method)); +DO_APP_FUNC(0x02D56500, void *, AsyncGPUReadbackRequest_GetDataRaw_Injected, (AsyncGPUReadbackRequest * _unity_self, int32_t layer, MethodInfo * method)); DO_APP_FUNC(0x02D56560, AsyncGPUReadbackRequest, AsyncGPUReadback_Request, (Texture * src, int32_t mipIndex, int32_t x, int32_t width, int32_t y, int32_t height, int32_t z, int32_t depth, Action_1_UnityEngine_Rendering_AsyncGPUReadbackRequest_ * callback, MethodInfo * method)); DO_APP_FUNC(0x02D566A0, AsyncGPUReadbackRequest, AsyncGPUReadback_Request_Internal_Texture_3, (Texture * src, int32_t mipIndex, int32_t x, int32_t width, int32_t y, int32_t height, int32_t z, int32_t depth, AsyncRequestNativeArrayData * data, MethodInfo * method)); -DO_APP_FUNC(0x02D56770, void, AsyncGPUReadback_Request_Internal_Texture_3_Injected, (Texture * src, int32_t mipIndex, int32_t x, int32_t width, int32_t y, int32_t height, int32_t z, int32_t depth, AsyncRequestNativeArrayData * data, AsyncGPUReadbackRequest ret, MethodInfo * method)); +DO_APP_FUNC(0x02D56770, void, AsyncGPUReadback_Request_Internal_Texture_3_Injected, (Texture * src, int32_t mipIndex, int32_t x, int32_t width, int32_t y, int32_t height, int32_t z, int32_t depth, AsyncRequestNativeArrayData * data, AsyncGPUReadbackRequest * ret, MethodInfo * method)); DO_APP_FUNC(0x02D567F0, bool, CameraEventUtils_IsValid, (CameraEvent__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x0171AEA0, Bounds, SubMeshDescriptor_get_bounds, (SubMeshDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC2E0, MeshTopology__Enum, SubMeshDescriptor_get_topology, (SubMeshDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003CD440, int32_t, SubMeshDescriptor_get_indexStart, (SubMeshDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003CC980, int32_t, SubMeshDescriptor_get_indexCount, (SubMeshDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003CD280, int32_t, SubMeshDescriptor_get_baseVertex, (SubMeshDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00421680, int32_t, SubMeshDescriptor_get_firstVertex, (SubMeshDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0098C870, int32_t, SubMeshDescriptor_get_vertexCount, (SubMeshDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D56800, String *, SubMeshDescriptor_ToString, (SubMeshDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, VertexAttribute__Enum, VertexAttributeDescriptor_get_attribute, (VertexAttributeDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00959BA0, void, VertexAttributeDescriptor_set_attribute, (VertexAttributeDescriptor__Boxed * __this, VertexAttribute__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x00C173E0, VertexAttributeFormat__Enum, VertexAttributeDescriptor_get_format, (VertexAttributeDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018C6CA0, void, VertexAttributeDescriptor_set_format, (VertexAttributeDescriptor__Boxed * __this, VertexAttributeFormat__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x00471920, int32_t, VertexAttributeDescriptor_get_dimension, (VertexAttributeDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018C6CC0, void, VertexAttributeDescriptor_set_dimension, (VertexAttributeDescriptor__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00E57F20, int32_t, VertexAttributeDescriptor_get_stream, (VertexAttributeDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B16CA0, void, VertexAttributeDescriptor_set_stream, (VertexAttributeDescriptor__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x01ECBC60, void, VertexAttributeDescriptor__ctor, (VertexAttributeDescriptor__Boxed * __this, VertexAttribute__Enum attribute, VertexAttributeFormat__Enum format, int32_t dimension, int32_t stream, MethodInfo * method)); -DO_APP_FUNC(0x02D56B70, String *, VertexAttributeDescriptor_ToString, (VertexAttributeDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D56DD0, int32_t, VertexAttributeDescriptor_GetHashCode, (VertexAttributeDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D56DF0, bool, VertexAttributeDescriptor_Equals, (VertexAttributeDescriptor__Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x02CEE870, bool, VertexAttributeDescriptor_Equals_1, (VertexAttributeDescriptor__Boxed * __this, VertexAttributeDescriptor other, MethodInfo * method)); -DO_APP_FUNC(0x02D56EA0, void, RenderTargetIdentifier__ctor, (RenderTargetIdentifier__Boxed * __this, BuiltinRenderTextureType__Enum type, MethodInfo * method)); -DO_APP_FUNC(0x02D56F10, void, RenderTargetIdentifier__ctor_1, (RenderTargetIdentifier__Boxed * __this, int32_t nameID, MethodInfo * method)); -DO_APP_FUNC(0x02D56F80, void, RenderTargetIdentifier__ctor_2, (RenderTargetIdentifier__Boxed * __this, int32_t nameID, int32_t mipLevel, CubemapFace__Enum cubeFace, int32_t depthSlice, MethodInfo * method)); -DO_APP_FUNC(0x02D57010, void, RenderTargetIdentifier__ctor_3, (RenderTargetIdentifier__Boxed * __this, RenderTargetIdentifier renderTargetIdentifier, int32_t mipLevel, CubemapFace__Enum cubeFace, int32_t depthSlice, MethodInfo * method)); -DO_APP_FUNC(0x02D57040, void, RenderTargetIdentifier__ctor_4, (RenderTargetIdentifier__Boxed * __this, Texture * tex, MethodInfo * method)); -DO_APP_FUNC(0x02D57220, void, RenderTargetIdentifier__ctor_5, (RenderTargetIdentifier__Boxed * __this, RenderBuffer buf, int32_t mipLevel, CubemapFace__Enum cubeFace, int32_t depthSlice, MethodInfo * method)); +DO_APP_FUNC(0x0171AEA0, Bounds, SubMeshDescriptor_get_bounds, (SubMeshDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC2E0, MeshTopology__Enum, SubMeshDescriptor_get_topology, (SubMeshDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC(0x003CD440, int32_t, SubMeshDescriptor_get_indexStart, (SubMeshDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC(0x003CC980, int32_t, SubMeshDescriptor_get_indexCount, (SubMeshDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC(0x003CD280, int32_t, SubMeshDescriptor_get_baseVertex, (SubMeshDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC(0x00421680, int32_t, SubMeshDescriptor_get_firstVertex, (SubMeshDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC(0x0098C870, int32_t, SubMeshDescriptor_get_vertexCount, (SubMeshDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D56800, String *, SubMeshDescriptor_ToString, (SubMeshDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, VertexAttribute__Enum, VertexAttributeDescriptor_get_attribute, (VertexAttributeDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC(0x00959BA0, void, VertexAttributeDescriptor_set_attribute, (VertexAttributeDescriptor * __this, VertexAttribute__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x00C173E0, VertexAttributeFormat__Enum, VertexAttributeDescriptor_get_format, (VertexAttributeDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC(0x018C6CA0, void, VertexAttributeDescriptor_set_format, (VertexAttributeDescriptor * __this, VertexAttributeFormat__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x00471920, int32_t, VertexAttributeDescriptor_get_dimension, (VertexAttributeDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC(0x018C6CC0, void, VertexAttributeDescriptor_set_dimension, (VertexAttributeDescriptor * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x00E57F20, int32_t, VertexAttributeDescriptor_get_stream, (VertexAttributeDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B16CA0, void, VertexAttributeDescriptor_set_stream, (VertexAttributeDescriptor * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x01ECBC60, void, VertexAttributeDescriptor__ctor, (VertexAttributeDescriptor * __this, VertexAttribute__Enum attribute, VertexAttributeFormat__Enum format, int32_t dimension, int32_t stream, MethodInfo * method)); +DO_APP_FUNC(0x02D56B70, String *, VertexAttributeDescriptor_ToString, (VertexAttributeDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D56DD0, int32_t, VertexAttributeDescriptor_GetHashCode, (VertexAttributeDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D56DF0, bool, VertexAttributeDescriptor_Equals, (VertexAttributeDescriptor * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x02CEE870, bool, VertexAttributeDescriptor_Equals_1, (VertexAttributeDescriptor * __this, VertexAttributeDescriptor other, MethodInfo * method)); +DO_APP_FUNC(0x02D56EA0, void, RenderTargetIdentifier__ctor, (RenderTargetIdentifier * __this, BuiltinRenderTextureType__Enum type, MethodInfo * method)); +DO_APP_FUNC(0x02D56F10, void, RenderTargetIdentifier__ctor_1, (RenderTargetIdentifier * __this, int32_t nameID, MethodInfo * method)); +DO_APP_FUNC(0x02D56F80, void, RenderTargetIdentifier__ctor_2, (RenderTargetIdentifier * __this, int32_t nameID, int32_t mipLevel, CubemapFace__Enum cubeFace, int32_t depthSlice, MethodInfo * method)); +DO_APP_FUNC(0x02D57010, void, RenderTargetIdentifier__ctor_3, (RenderTargetIdentifier * __this, RenderTargetIdentifier renderTargetIdentifier, int32_t mipLevel, CubemapFace__Enum cubeFace, int32_t depthSlice, MethodInfo * method)); +DO_APP_FUNC(0x02D57040, void, RenderTargetIdentifier__ctor_4, (RenderTargetIdentifier * __this, Texture * tex, MethodInfo * method)); +DO_APP_FUNC(0x02D57220, void, RenderTargetIdentifier__ctor_5, (RenderTargetIdentifier * __this, RenderBuffer buf, int32_t mipLevel, CubemapFace__Enum cubeFace, int32_t depthSlice, MethodInfo * method)); DO_APP_FUNC(0x02D57250, RenderTargetIdentifier, RenderTargetIdentifier_op_Implicit, (BuiltinRenderTextureType__Enum type, MethodInfo * method)); DO_APP_FUNC(0x02D57310, RenderTargetIdentifier, RenderTargetIdentifier_op_Implicit_1, (int32_t nameID, MethodInfo * method)); DO_APP_FUNC(0x02D573D0, RenderTargetIdentifier, RenderTargetIdentifier_op_Implicit_2, (Texture * tex, MethodInfo * method)); DO_APP_FUNC(0x02D57430, RenderTargetIdentifier, RenderTargetIdentifier_op_Implicit_3, (RenderBuffer buf, MethodInfo * method)); -DO_APP_FUNC(0x02D57490, String *, RenderTargetIdentifier_ToString, (RenderTargetIdentifier__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D577D0, int32_t, RenderTargetIdentifier_GetHashCode, (RenderTargetIdentifier__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D577E0, bool, RenderTargetIdentifier_Equals, (RenderTargetIdentifier__Boxed * __this, RenderTargetIdentifier rhs, MethodInfo * method)); -DO_APP_FUNC(0x02D57870, bool, RenderTargetIdentifier_Equals_1, (RenderTargetIdentifier__Boxed * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02D57490, String *, RenderTargetIdentifier_ToString, (RenderTargetIdentifier * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D577D0, int32_t, RenderTargetIdentifier_GetHashCode, (RenderTargetIdentifier * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D577E0, bool, RenderTargetIdentifier_Equals, (RenderTargetIdentifier * __this, RenderTargetIdentifier rhs, MethodInfo * method)); +DO_APP_FUNC(0x02D57870, bool, RenderTargetIdentifier_Equals_1, (RenderTargetIdentifier * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x02D57980, SynchronisationStageFlags__Enum, GraphicsFence_TranslateSynchronizationStageToFlags, (SynchronisationStage__Enum s, MethodInfo * method)); -DO_APP_FUNC(0x02D57990, void, GraphicsFence_InitPostAllocation, (GraphicsFence__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D57AD0, bool, GraphicsFence_IsFencePending, (GraphicsFence__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D57B80, void, GraphicsFence_Validate, (GraphicsFence__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D57C40, int32_t, GraphicsFence_GetPlatformNotSupportedVersion, (GraphicsFence__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D57990, void, GraphicsFence_InitPostAllocation, (GraphicsFence * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D115A0, GraphicsFence_InitPostAllocation__MethodInfo); +DO_APP_FUNC(0x02D57AD0, bool, GraphicsFence_IsFencePending, (GraphicsFence * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D57B80, void, GraphicsFence_Validate, (GraphicsFence * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11580, GraphicsFence_Validate__MethodInfo); +DO_APP_FUNC(0x02D57C40, int32_t, GraphicsFence_GetPlatformNotSupportedVersion, (GraphicsFence * __this, MethodInfo * method)); DO_APP_FUNC(0x02D57C50, int32_t, GraphicsFence_GetVersionNumber, (void * fencePtr, MethodInfo * method)); DO_APP_FUNC(0x02D57CA0, bool, GraphicsSettings_get_lightsUseLinearIntensity, (MethodInfo * method)); DO_APP_FUNC(0x02D57CF0, bool, GraphicsSettings_HasShaderDefine, (GraphicsTier__Enum tier, BuiltinShaderDefine__Enum defineHash, MethodInfo * method)); @@ -75449,7 +86159,7 @@ DO_APP_FUNC(0x02D57F00, RenderPipelineAsset *, GraphicsSettings_get_defaultRende DO_APP_FUNC(0x02D57E60, void, GraphicsSettings_set_defaultRenderPipeline, (RenderPipelineAsset * value, MethodInfo * method)); DO_APP_FUNC(0x02D57FC0, BuiltinShaderMode__Enum, GraphicsSettings_GetShaderMode, (BuiltinShaderType__Enum type, MethodInfo * method)); DO_APP_FUNC(0x02D58010, int32_t, OnDemandRendering_get_renderFrameInterval, (MethodInfo * method)); -DO_APP_FUNC(0x02D58070, void, OnDemandRendering_GetRenderFrameInterval, (int32_t frameInterval, MethodInfo * method)); +DO_APP_FUNC(0x02D58070, void, OnDemandRendering_GetRenderFrameInterval, (int32_t * frameInterval, MethodInfo * method)); DO_APP_FUNC(0x02D58100, void, OnDemandRendering__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02D58140, void, CommandBuffer_Internal_SetSinglePassStereo, (CommandBuffer * __this, SinglePassStereoMode__Enum mode, MethodInfo * method)); DO_APP_FUNC(0x02D581A0, void *, CommandBuffer_InitBuffer, (MethodInfo * method)); @@ -75458,7 +86168,7 @@ DO_APP_FUNC(0x02D58260, void, CommandBuffer_WaitOnGPUFence_Internal, (CommandBuf DO_APP_FUNC(0x02D582D0, void, CommandBuffer_ReleaseBuffer, (CommandBuffer * __this, MethodInfo * method)); DO_APP_FUNC(0x02D58320, void, CommandBuffer_SetComputeVectorParam, (CommandBuffer * __this, ComputeShader * computeShader, int32_t nameID, Vector4 val, MethodInfo * method)); DO_APP_FUNC(0x02D583A0, void, CommandBuffer_Internal_SetComputeFloats, (CommandBuffer * __this, ComputeShader * computeShader, int32_t nameID, Single__Array * values, MethodInfo * method)); -DO_APP_FUNC(0x02D58420, void, CommandBuffer_Internal_SetComputeTextureParam, (CommandBuffer * __this, ComputeShader * computeShader, int32_t kernelIndex, int32_t nameID, RenderTargetIdentifier rt, int32_t mipLevel, RenderTextureSubElement__Enum element, MethodInfo * method)); +DO_APP_FUNC(0x02D58420, void, CommandBuffer_Internal_SetComputeTextureParam, (CommandBuffer * __this, ComputeShader * computeShader, int32_t kernelIndex, int32_t nameID, RenderTargetIdentifier * rt, int32_t mipLevel, RenderTextureSubElement__Enum element, MethodInfo * method)); DO_APP_FUNC(0x02D584B0, void, CommandBuffer_Internal_SetComputeBufferParam, (CommandBuffer * __this, ComputeShader * computeShader, int32_t kernelIndex, int32_t nameID, ComputeBuffer * buffer, MethodInfo * method)); DO_APP_FUNC(0x02D58540, void, CommandBuffer_Internal_SetComputeConstantComputeBufferParam, (CommandBuffer * __this, ComputeShader * computeShader, int32_t nameID, ComputeBuffer * buffer, int32_t offset, int32_t size, MethodInfo * method)); DO_APP_FUNC(0x02D585D0, void, CommandBuffer_Internal_DispatchCompute, (CommandBuffer * __this, ComputeShader * computeShader, int32_t kernelIndex, int32_t threadGroupsX, int32_t threadGroupsY, int32_t threadGroupsZ, MethodInfo * method)); @@ -75472,9 +86182,9 @@ DO_APP_FUNC(0x02D588F0, void, CommandBuffer_Internal_DrawProcedural, (CommandBuf DO_APP_FUNC(0x02D589A0, void, CommandBuffer_Internal_DrawMeshInstanced, (CommandBuffer * __this, Mesh * mesh, int32_t submeshIndex, Material * material, int32_t shaderPass, Matrix4x4__Array * matrices, int32_t count, MaterialPropertyBlock * properties, MethodInfo * method)); DO_APP_FUNC(0x02D58A30, void, CommandBuffer_Internal_DrawOcclusionMesh, (CommandBuffer * __this, RectInt normalizedCamViewport, MethodInfo * method)); DO_APP_FUNC(0x02D58A90, void, CommandBuffer_SetViewport, (CommandBuffer * __this, Rect pixelRect, MethodInfo * method)); -DO_APP_FUNC(0x02D58AF0, void, CommandBuffer_CopyTexture_Internal, (CommandBuffer * __this, RenderTargetIdentifier src, int32_t srcElement, int32_t srcMip, int32_t srcX, int32_t srcY, int32_t srcWidth, int32_t srcHeight, RenderTargetIdentifier dst, int32_t dstElement, int32_t dstMip, int32_t dstX, int32_t dstY, int32_t mode, MethodInfo * method)); -DO_APP_FUNC(0x02D58B80, void, CommandBuffer_Blit_Texture, (CommandBuffer * __this, Texture * source, RenderTargetIdentifier dest, Material * mat, int32_t pass, Vector2 scale, Vector2 offset, int32_t sourceDepthSlice, int32_t destDepthSlice, MethodInfo * method)); -DO_APP_FUNC(0x02D58C40, void, CommandBuffer_Blit_Identifier, (CommandBuffer * __this, RenderTargetIdentifier source, RenderTargetIdentifier dest, Material * mat, int32_t pass, Vector2 scale, Vector2 offset, int32_t sourceDepthSlice, int32_t destDepthSlice, MethodInfo * method)); +DO_APP_FUNC(0x02D58AF0, void, CommandBuffer_CopyTexture_Internal, (CommandBuffer * __this, RenderTargetIdentifier * src, int32_t srcElement, int32_t srcMip, int32_t srcX, int32_t srcY, int32_t srcWidth, int32_t srcHeight, RenderTargetIdentifier * dst, int32_t dstElement, int32_t dstMip, int32_t dstX, int32_t dstY, int32_t mode, MethodInfo * method)); +DO_APP_FUNC(0x02D58B80, void, CommandBuffer_Blit_Texture, (CommandBuffer * __this, Texture * source, RenderTargetIdentifier * dest, Material * mat, int32_t pass, Vector2 scale, Vector2 offset, int32_t sourceDepthSlice, int32_t destDepthSlice, MethodInfo * method)); +DO_APP_FUNC(0x02D58C40, void, CommandBuffer_Blit_Identifier, (CommandBuffer * __this, RenderTargetIdentifier * source, RenderTargetIdentifier * dest, Material * mat, int32_t pass, Vector2 scale, Vector2 offset, int32_t sourceDepthSlice, int32_t destDepthSlice, MethodInfo * method)); DO_APP_FUNC(0x02D58D00, void, CommandBuffer_GetTemporaryRT, (CommandBuffer * __this, int32_t nameID, int32_t width, int32_t height, int32_t depthBuffer, FilterMode__Enum filter, GraphicsFormat__Enum format, int32_t antiAliasing, bool enableRandomWrite, RenderTextureMemoryless__Enum memorylessMode, bool useDynamicScale, MethodInfo * method)); DO_APP_FUNC(0x02D58DA0, void, CommandBuffer_GetTemporaryRT_1, (CommandBuffer * __this, int32_t nameID, int32_t width, int32_t height, int32_t depthBuffer, FilterMode__Enum filter, GraphicsFormat__Enum format, int32_t antiAliasing, bool enableRandomWrite, RenderTextureMemoryless__Enum memorylessMode, MethodInfo * method)); DO_APP_FUNC(0x02D58E40, void, CommandBuffer_GetTemporaryRT_2, (CommandBuffer * __this, int32_t nameID, int32_t width, int32_t height, int32_t depthBuffer, FilterMode__Enum filter, GraphicsFormat__Enum format, int32_t antiAliasing, MethodInfo * method)); @@ -75500,7 +86210,7 @@ DO_APP_FUNC(0x02D59940, void, CommandBuffer_DisableShaderKeyword, (CommandBuffer DO_APP_FUNC(0x02D599A0, void, CommandBuffer_SetViewProjectionMatrices, (CommandBuffer * __this, Matrix4x4 view, Matrix4x4 proj, MethodInfo * method)); DO_APP_FUNC(0x02D59A10, void, CommandBuffer_SetExecutionFlags, (CommandBuffer * __this, CommandBufferExecutionFlags__Enum flags, MethodInfo * method)); DO_APP_FUNC(0x02D59A70, bool, CommandBuffer_ValidateAgainstExecutionFlags, (CommandBuffer * __this, CommandBufferExecutionFlags__Enum requiredFlags, CommandBufferExecutionFlags__Enum invalidFlags, MethodInfo * method)); -DO_APP_FUNC(0x02D59AE0, void, CommandBuffer_SetGlobalTexture_Impl, (CommandBuffer * __this, int32_t nameID, RenderTargetIdentifier rt, RenderTextureSubElement__Enum element, MethodInfo * method)); +DO_APP_FUNC(0x02D59AE0, void, CommandBuffer_SetGlobalTexture_Impl, (CommandBuffer * __this, int32_t nameID, RenderTargetIdentifier * rt, RenderTextureSubElement__Enum element, MethodInfo * method)); DO_APP_FUNC(0x02D59B60, void, CommandBuffer_BeginSample, (CommandBuffer * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x02D59BC0, void, CommandBuffer_EndSample, (CommandBuffer * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x02D59C20, void, CommandBuffer_BeginSample_1, (CommandBuffer * __this, CustomSampler * sampler, MethodInfo * method)); @@ -75510,19 +86220,28 @@ DO_APP_FUNC(0x02D59C80, void, CommandBuffer_EndSample_CustomSampler, (CommandBuf DO_APP_FUNC(0x02D59CE0, void, CommandBuffer_SetGlobalConstantBufferInternal, (CommandBuffer * __this, ComputeBuffer * buffer, int32_t nameID, int32_t offset, int32_t size, MethodInfo * method)); DO_APP_FUNC(0x02D59D70, void, CommandBuffer_SetRenderTarget, (CommandBuffer * __this, RenderTargetIdentifier rt, MethodInfo * method)); DO_APP_FUNC(0x02D59E50, void, CommandBuffer_SetRenderTarget_1, (CommandBuffer * __this, RenderTargetIdentifier rt, RenderBufferLoadAction__Enum loadAction, RenderBufferStoreAction__Enum storeAction, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11418, CommandBuffer_SetRenderTarget_1__MethodInfo); DO_APP_FUNC(0x02D59FA0, void, CommandBuffer_SetRenderTarget_2, (CommandBuffer * __this, RenderTargetIdentifier rt, RenderBufferLoadAction__Enum colorLoadAction, RenderBufferStoreAction__Enum colorStoreAction, RenderBufferLoadAction__Enum depthLoadAction, RenderBufferStoreAction__Enum depthStoreAction, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11408, CommandBuffer_SetRenderTarget_2__MethodInfo); DO_APP_FUNC(0x02D5A120, void, CommandBuffer_SetRenderTarget_3, (CommandBuffer * __this, RenderTargetIdentifier rt, int32_t mipLevel, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D113E8, CommandBuffer_SetRenderTarget_3__MethodInfo); DO_APP_FUNC(0x02D5A2F0, void, CommandBuffer_SetRenderTarget_4, (CommandBuffer * __this, RenderTargetIdentifier rt, int32_t mipLevel, CubemapFace__Enum cubemapFace, int32_t depthSlice, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D113C8, CommandBuffer_SetRenderTarget_4__MethodInfo); DO_APP_FUNC(0x02D5A550, void, CommandBuffer_SetRenderTarget_5, (CommandBuffer * __this, RenderTargetIdentifier color, RenderTargetIdentifier depth, MethodInfo * method)); DO_APP_FUNC(0x02D5A670, void, CommandBuffer_SetRenderTarget_6, (CommandBuffer * __this, RenderTargetIdentifier color, RenderTargetIdentifier depth, int32_t mipLevel, CubemapFace__Enum cubemapFace, int32_t depthSlice, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D113C0, CommandBuffer_SetRenderTarget_6__MethodInfo); DO_APP_FUNC(0x02D5A900, void, CommandBuffer_SetRenderTarget_7, (CommandBuffer * __this, RenderTargetIdentifier color, RenderBufferLoadAction__Enum colorLoadAction, RenderBufferStoreAction__Enum colorStoreAction, RenderTargetIdentifier depth, RenderBufferLoadAction__Enum depthLoadAction, RenderBufferStoreAction__Enum depthStoreAction, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D113B8, CommandBuffer_SetRenderTarget_7__MethodInfo); DO_APP_FUNC(0x02D5AAC0, void, CommandBuffer_SetRenderTarget_8, (CommandBuffer * __this, RenderTargetIdentifier__Array * colors, RenderTargetIdentifier depth, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D112A8, CommandBuffer_SetRenderTarget_8__MethodInfo); DO_APP_FUNC(0x02D5AD60, void, CommandBuffer_SetRenderTarget_9, (CommandBuffer * __this, RenderTargetIdentifier__Array * colors, RenderTargetIdentifier depth, int32_t mipLevel, CubemapFace__Enum cubemapFace, int32_t depthSlice, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11298, CommandBuffer_SetRenderTarget_9__MethodInfo); DO_APP_FUNC(0x02D5B030, void, CommandBuffer_SetRenderTargetSingle_Internal, (CommandBuffer * __this, RenderTargetIdentifier rt, RenderBufferLoadAction__Enum colorLoadAction, RenderBufferStoreAction__Enum colorStoreAction, RenderBufferLoadAction__Enum depthLoadAction, RenderBufferStoreAction__Enum depthStoreAction, MethodInfo * method)); DO_APP_FUNC(0x02D5B0D0, void, CommandBuffer_SetRenderTargetColorDepth_Internal, (CommandBuffer * __this, RenderTargetIdentifier color, RenderTargetIdentifier depth, RenderBufferLoadAction__Enum colorLoadAction, RenderBufferStoreAction__Enum colorStoreAction, RenderBufferLoadAction__Enum depthLoadAction, RenderBufferStoreAction__Enum depthStoreAction, RenderTargetFlags__Enum flags, MethodInfo * method)); DO_APP_FUNC(0x02D5B180, void, CommandBuffer_SetRenderTargetMulti_Internal, (CommandBuffer * __this, RenderTargetIdentifier__Array * colors, RenderTargetIdentifier depth, RenderBufferLoadAction__Enum__Array * colorLoadActions, RenderBufferStoreAction__Enum__Array * colorStoreActions, RenderBufferLoadAction__Enum depthLoadAction, RenderBufferStoreAction__Enum depthStoreAction, RenderTargetFlags__Enum flags, MethodInfo * method)); DO_APP_FUNC(0x02D5B230, void, CommandBuffer_SetRenderTargetMultiSubtarget, (CommandBuffer * __this, RenderTargetIdentifier__Array * colors, RenderTargetIdentifier depth, RenderBufferLoadAction__Enum__Array * colorLoadActions, RenderBufferStoreAction__Enum__Array * colorStoreActions, RenderBufferLoadAction__Enum depthLoadAction, RenderBufferStoreAction__Enum depthStoreAction, int32_t mipLevel, CubemapFace__Enum cubemapFace, int32_t depthSlice, MethodInfo * method)); DO_APP_FUNC(0x02D5B300, void, CommandBuffer_SetBufferData, (CommandBuffer * __this, ComputeBuffer * buffer, Array * data, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11290, CommandBuffer_SetBufferData__MethodInfo); DO_APP_FUNC(0x02D5B500, void, CommandBuffer_InternalSetComputeBufferData, (CommandBuffer * __this, ComputeBuffer * buffer, Array * data, int32_t managedBufferStartIndex, int32_t graphicsBufferStartIndex, int32_t count, int32_t elemSize, MethodInfo * method)); DO_APP_FUNC(0x02D5B590, void, CommandBuffer_Finalize, (CommandBuffer * __this, MethodInfo * method)); DO_APP_FUNC(0x02D5B5E0, void, CommandBuffer_Dispose, (CommandBuffer * __this, MethodInfo * method)); @@ -75533,6 +86252,7 @@ DO_APP_FUNC(0x02D5B7C0, GraphicsFence, CommandBuffer_CreateGraphicsFence, (Comma DO_APP_FUNC(0x02D5B880, void, CommandBuffer_WaitOnAsyncGraphicsFence, (CommandBuffer * __this, GraphicsFence fence, MethodInfo * method)); DO_APP_FUNC(0x02D5B980, void, CommandBuffer_WaitOnAsyncGraphicsFence_1, (CommandBuffer * __this, GraphicsFence fence, SynchronisationStage__Enum stage, MethodInfo * method)); DO_APP_FUNC(0x02D5BA90, void, CommandBuffer_WaitOnAsyncGraphicsFence_2, (CommandBuffer * __this, GraphicsFence fence, SynchronisationStageFlags__Enum stage, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D112C0, CommandBuffer_WaitOnAsyncGraphicsFence_2__MethodInfo); DO_APP_FUNC(0x02D5BB70, void, CommandBuffer_SetComputeVectorParam_1, (CommandBuffer * __this, ComputeShader * computeShader, String * name, Vector4 val, MethodInfo * method)); DO_APP_FUNC(0x02D5BC40, void, CommandBuffer_SetComputeFloatParams, (CommandBuffer * __this, ComputeShader * computeShader, String * name, Single__Array * values, MethodInfo * method)); DO_APP_FUNC(0x02D5BD00, void, CommandBuffer_SetComputeTextureParam, (CommandBuffer * __this, ComputeShader * computeShader, int32_t kernelIndex, String * name, RenderTargetIdentifier rt, MethodInfo * method)); @@ -75540,15 +86260,19 @@ DO_APP_FUNC(0x02D5BDE0, void, CommandBuffer_SetComputeBufferParam, (CommandBuffe DO_APP_FUNC(0x02D58540, void, CommandBuffer_SetComputeConstantBufferParam, (CommandBuffer * __this, ComputeShader * computeShader, int32_t nameID, ComputeBuffer * buffer, int32_t offset, int32_t size, MethodInfo * method)); DO_APP_FUNC(0x02D585D0, void, CommandBuffer_DispatchCompute, (CommandBuffer * __this, ComputeShader * computeShader, int32_t kernelIndex, int32_t threadGroupsX, int32_t threadGroupsY, int32_t threadGroupsZ, MethodInfo * method)); DO_APP_FUNC(0x02D5BEB0, void, CommandBuffer_DrawMesh, (CommandBuffer * __this, Mesh * mesh, Matrix4x4 matrix, Material * material, int32_t submeshIndex, int32_t shaderPass, MaterialPropertyBlock * properties, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11308, CommandBuffer_DrawMesh__MethodInfo); DO_APP_FUNC(0x02D5C3A0, void, CommandBuffer_DrawMesh_1, (CommandBuffer * __this, Mesh * mesh, Matrix4x4 matrix, Material * material, int32_t submeshIndex, int32_t shaderPass, MethodInfo * method)); DO_APP_FUNC(0x02D5C410, void, CommandBuffer_DrawMesh_2, (CommandBuffer * __this, Mesh * mesh, Matrix4x4 matrix, Material * material, int32_t submeshIndex, MethodInfo * method)); DO_APP_FUNC(0x02D5C470, void, CommandBuffer_DrawMesh_3, (CommandBuffer * __this, Mesh * mesh, Matrix4x4 matrix, Material * material, MethodInfo * method)); DO_APP_FUNC(0x02D5C4D0, void, CommandBuffer_DrawRenderer, (CommandBuffer * __this, Renderer * renderer, Material * material, int32_t submeshIndex, int32_t shaderPass, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D112E8, CommandBuffer_DrawRenderer__MethodInfo); DO_APP_FUNC(0x02D5C8C0, void, CommandBuffer_DrawRenderer_1, (CommandBuffer * __this, Renderer * renderer, Material * material, int32_t submeshIndex, MethodInfo * method)); DO_APP_FUNC(0x02D5C8E0, void, CommandBuffer_DrawRenderer_2, (CommandBuffer * __this, Renderer * renderer, Material * material, MethodInfo * method)); DO_APP_FUNC(0x02D5C910, void, CommandBuffer_DrawRendererList, (CommandBuffer * __this, RendererList rendererList, MethodInfo * method)); DO_APP_FUNC(0x02D5C970, void, CommandBuffer_DrawProcedural, (CommandBuffer * __this, Matrix4x4 matrix, Material * material, int32_t shaderPass, MeshTopology__Enum topology, int32_t vertexCount, int32_t instanceCount, MaterialPropertyBlock * properties, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D112D8, CommandBuffer_DrawProcedural__MethodInfo); DO_APP_FUNC(0x02D5CBE0, void, CommandBuffer_DrawMeshInstanced, (CommandBuffer * __this, Mesh * mesh, int32_t submeshIndex, Material * material, int32_t shaderPass, Matrix4x4__Array * matrices, int32_t count, MaterialPropertyBlock * properties, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11330, CommandBuffer_DrawMeshInstanced__MethodInfo); DO_APP_FUNC(0x02D5D1A0, void, CommandBuffer_DrawOcclusionMesh, (CommandBuffer * __this, RectInt normalizedCamViewport, MethodInfo * method)); DO_APP_FUNC(0x02D5D200, void, CommandBuffer_CopyTexture, (CommandBuffer * __this, RenderTargetIdentifier src, RenderTargetIdentifier dst, MethodInfo * method)); DO_APP_FUNC(0x02D5D2D0, void, CommandBuffer_CopyTexture_1, (CommandBuffer * __this, RenderTargetIdentifier src, int32_t srcElement, int32_t srcMip, RenderTargetIdentifier dst, int32_t dstElement, int32_t dstMip, MethodInfo * method)); @@ -75562,74 +86286,80 @@ DO_APP_FUNC(0x02D5DA40, void, CommandBuffer_SetGlobalTexture_1, (CommandBuffer * DO_APP_FUNC(0x02D5DA60, void, CommandBuffer_SetGlobalTexture_2, (CommandBuffer * __this, int32_t nameID, RenderTargetIdentifier value, RenderTextureSubElement__Enum element, MethodInfo * method)); DO_APP_FUNC(0x02D59CE0, void, CommandBuffer_SetGlobalConstantBuffer, (CommandBuffer * __this, ComputeBuffer * buffer, int32_t nameID, int32_t offset, int32_t size, MethodInfo * method)); DO_APP_FUNC(0x02D58140, void, CommandBuffer_SetSinglePassStereo, (CommandBuffer * __this, SinglePassStereoMode__Enum mode, MethodInfo * method)); -DO_APP_FUNC(0x02D5DA80, void, CommandBuffer_SetComputeVectorParam_Injected, (CommandBuffer * __this, ComputeShader * computeShader, int32_t nameID, Vector4 val, MethodInfo * method)); -DO_APP_FUNC(0x02D5DB00, void, CommandBuffer_Internal_DrawMesh_Injected, (CommandBuffer * __this, Mesh * mesh, Matrix4x4 matrix, Material * material, int32_t submeshIndex, int32_t shaderPass, MaterialPropertyBlock * properties, MethodInfo * method)); -DO_APP_FUNC(0x02D5DB90, void, CommandBuffer_Internal_DrawRendererList_Injected, (CommandBuffer * __this, RendererList rendererList, MethodInfo * method)); -DO_APP_FUNC(0x02D5DBF0, void, CommandBuffer_Internal_DrawProcedural_Injected, (CommandBuffer * __this, Matrix4x4 matrix, Material * material, int32_t shaderPass, MeshTopology__Enum topology, int32_t vertexCount, int32_t instanceCount, MaterialPropertyBlock * properties, MethodInfo * method)); -DO_APP_FUNC(0x02D5DC80, void, CommandBuffer_Internal_DrawOcclusionMesh_Injected, (CommandBuffer * __this, RectInt normalizedCamViewport, MethodInfo * method)); -DO_APP_FUNC(0x02D5DCE0, void, CommandBuffer_SetViewport_Injected, (CommandBuffer * __this, Rect pixelRect, MethodInfo * method)); -DO_APP_FUNC(0x02D5DD40, void, CommandBuffer_Blit_Texture_Injected, (CommandBuffer * __this, Texture * source, RenderTargetIdentifier dest, Material * mat, int32_t pass, Vector2 scale, Vector2 offset, int32_t sourceDepthSlice, int32_t destDepthSlice, MethodInfo * method)); -DO_APP_FUNC(0x02D5DDD0, void, CommandBuffer_Blit_Identifier_Injected, (CommandBuffer * __this, RenderTargetIdentifier source, RenderTargetIdentifier dest, Material * mat, int32_t pass, Vector2 scale, Vector2 offset, int32_t sourceDepthSlice, int32_t destDepthSlice, MethodInfo * method)); -DO_APP_FUNC(0x02D5DE60, void, CommandBuffer_GetTemporaryRTWithDescriptor_Injected, (CommandBuffer * __this, int32_t nameID, RenderTextureDescriptor desc, FilterMode__Enum filter, MethodInfo * method)); -DO_APP_FUNC(0x02D5DEE0, void, CommandBuffer_ClearRenderTarget_Injected, (CommandBuffer * __this, RTClearFlags__Enum clearFlags, Color backgroundColor, float depth, uint32_t stencil, MethodInfo * method)); -DO_APP_FUNC(0x02D5DF60, void, CommandBuffer_SetGlobalVector_Injected, (CommandBuffer * __this, int32_t nameID, Vector4 value, MethodInfo * method)); -DO_APP_FUNC(0x02D5DFD0, void, CommandBuffer_SetGlobalColor_Injected, (CommandBuffer * __this, int32_t nameID, Color value, MethodInfo * method)); -DO_APP_FUNC(0x02D5E040, void, CommandBuffer_SetGlobalMatrix_Injected, (CommandBuffer * __this, int32_t nameID, Matrix4x4 value, MethodInfo * method)); -DO_APP_FUNC(0x02D5E0B0, void, CommandBuffer_SetViewProjectionMatrices_Injected, (CommandBuffer * __this, Matrix4x4 view, Matrix4x4 proj, MethodInfo * method)); -DO_APP_FUNC(0x02D5E120, void, CommandBuffer_SetRenderTargetSingle_Internal_Injected, (CommandBuffer * __this, RenderTargetIdentifier rt, RenderBufferLoadAction__Enum colorLoadAction, RenderBufferStoreAction__Enum colorStoreAction, RenderBufferLoadAction__Enum depthLoadAction, RenderBufferStoreAction__Enum depthStoreAction, MethodInfo * method)); -DO_APP_FUNC(0x02D5E1B0, void, CommandBuffer_SetRenderTargetColorDepth_Internal_Injected, (CommandBuffer * __this, RenderTargetIdentifier color, RenderTargetIdentifier depth, RenderBufferLoadAction__Enum colorLoadAction, RenderBufferStoreAction__Enum colorStoreAction, RenderBufferLoadAction__Enum depthLoadAction, RenderBufferStoreAction__Enum depthStoreAction, RenderTargetFlags__Enum flags, MethodInfo * method)); -DO_APP_FUNC(0x02D5E240, void, CommandBuffer_SetRenderTargetMulti_Internal_Injected, (CommandBuffer * __this, RenderTargetIdentifier__Array * colors, RenderTargetIdentifier depth, RenderBufferLoadAction__Enum__Array * colorLoadActions, RenderBufferStoreAction__Enum__Array * colorStoreActions, RenderBufferLoadAction__Enum depthLoadAction, RenderBufferStoreAction__Enum depthStoreAction, RenderTargetFlags__Enum flags, MethodInfo * method)); -DO_APP_FUNC(0x02D5E2D0, void, CommandBuffer_SetRenderTargetMultiSubtarget_Injected, (CommandBuffer * __this, RenderTargetIdentifier__Array * colors, RenderTargetIdentifier depth, RenderBufferLoadAction__Enum__Array * colorLoadActions, RenderBufferStoreAction__Enum__Array * colorStoreActions, RenderBufferLoadAction__Enum depthLoadAction, RenderBufferStoreAction__Enum depthStoreAction, int32_t mipLevel, CubemapFace__Enum cubemapFace, int32_t depthSlice, MethodInfo * method)); -DO_APP_FUNC(0x02D5E360, void, CommandBufferExtensions_Internal_SwitchIntoFastMemory, (CommandBuffer * cmd, RenderTargetIdentifier rt, FastMemoryFlags__Enum fastMemoryFlags, float residency, bool copyContents, MethodInfo * method)); -DO_APP_FUNC(0x02D5E3F0, void, CommandBufferExtensions_Internal_SwitchOutOfFastMemory, (CommandBuffer * cmd, RenderTargetIdentifier rt, bool copyContents, MethodInfo * method)); +DO_APP_FUNC(0x02D5DA80, void, CommandBuffer_SetComputeVectorParam_Injected, (CommandBuffer * __this, ComputeShader * computeShader, int32_t nameID, Vector4 * val, MethodInfo * method)); +DO_APP_FUNC(0x02D5DB00, void, CommandBuffer_Internal_DrawMesh_Injected, (CommandBuffer * __this, Mesh * mesh, Matrix4x4 * matrix, Material * material, int32_t submeshIndex, int32_t shaderPass, MaterialPropertyBlock * properties, MethodInfo * method)); +DO_APP_FUNC(0x02D5DB90, void, CommandBuffer_Internal_DrawRendererList_Injected, (CommandBuffer * __this, RendererList * rendererList, MethodInfo * method)); +DO_APP_FUNC(0x02D5DBF0, void, CommandBuffer_Internal_DrawProcedural_Injected, (CommandBuffer * __this, Matrix4x4 * matrix, Material * material, int32_t shaderPass, MeshTopology__Enum topology, int32_t vertexCount, int32_t instanceCount, MaterialPropertyBlock * properties, MethodInfo * method)); +DO_APP_FUNC(0x02D5DC80, void, CommandBuffer_Internal_DrawOcclusionMesh_Injected, (CommandBuffer * __this, RectInt * normalizedCamViewport, MethodInfo * method)); +DO_APP_FUNC(0x02D5DCE0, void, CommandBuffer_SetViewport_Injected, (CommandBuffer * __this, Rect * pixelRect, MethodInfo * method)); +DO_APP_FUNC(0x02D5DD40, void, CommandBuffer_Blit_Texture_Injected, (CommandBuffer * __this, Texture * source, RenderTargetIdentifier * dest, Material * mat, int32_t pass, Vector2 * scale, Vector2 * offset, int32_t sourceDepthSlice, int32_t destDepthSlice, MethodInfo * method)); +DO_APP_FUNC(0x02D5DDD0, void, CommandBuffer_Blit_Identifier_Injected, (CommandBuffer * __this, RenderTargetIdentifier * source, RenderTargetIdentifier * dest, Material * mat, int32_t pass, Vector2 * scale, Vector2 * offset, int32_t sourceDepthSlice, int32_t destDepthSlice, MethodInfo * method)); +DO_APP_FUNC(0x02D5DE60, void, CommandBuffer_GetTemporaryRTWithDescriptor_Injected, (CommandBuffer * __this, int32_t nameID, RenderTextureDescriptor * desc, FilterMode__Enum filter, MethodInfo * method)); +DO_APP_FUNC(0x02D5DEE0, void, CommandBuffer_ClearRenderTarget_Injected, (CommandBuffer * __this, RTClearFlags__Enum clearFlags, Color * backgroundColor, float depth, uint32_t stencil, MethodInfo * method)); +DO_APP_FUNC(0x02D5DF60, void, CommandBuffer_SetGlobalVector_Injected, (CommandBuffer * __this, int32_t nameID, Vector4 * value, MethodInfo * method)); +DO_APP_FUNC(0x02D5DFD0, void, CommandBuffer_SetGlobalColor_Injected, (CommandBuffer * __this, int32_t nameID, Color * value, MethodInfo * method)); +DO_APP_FUNC(0x02D5E040, void, CommandBuffer_SetGlobalMatrix_Injected, (CommandBuffer * __this, int32_t nameID, Matrix4x4 * value, MethodInfo * method)); +DO_APP_FUNC(0x02D5E0B0, void, CommandBuffer_SetViewProjectionMatrices_Injected, (CommandBuffer * __this, Matrix4x4 * view, Matrix4x4 * proj, MethodInfo * method)); +DO_APP_FUNC(0x02D5E120, void, CommandBuffer_SetRenderTargetSingle_Internal_Injected, (CommandBuffer * __this, RenderTargetIdentifier * rt, RenderBufferLoadAction__Enum colorLoadAction, RenderBufferStoreAction__Enum colorStoreAction, RenderBufferLoadAction__Enum depthLoadAction, RenderBufferStoreAction__Enum depthStoreAction, MethodInfo * method)); +DO_APP_FUNC(0x02D5E1B0, void, CommandBuffer_SetRenderTargetColorDepth_Internal_Injected, (CommandBuffer * __this, RenderTargetIdentifier * color, RenderTargetIdentifier * depth, RenderBufferLoadAction__Enum colorLoadAction, RenderBufferStoreAction__Enum colorStoreAction, RenderBufferLoadAction__Enum depthLoadAction, RenderBufferStoreAction__Enum depthStoreAction, RenderTargetFlags__Enum flags, MethodInfo * method)); +DO_APP_FUNC(0x02D5E240, void, CommandBuffer_SetRenderTargetMulti_Internal_Injected, (CommandBuffer * __this, RenderTargetIdentifier__Array * colors, RenderTargetIdentifier * depth, RenderBufferLoadAction__Enum__Array * colorLoadActions, RenderBufferStoreAction__Enum__Array * colorStoreActions, RenderBufferLoadAction__Enum depthLoadAction, RenderBufferStoreAction__Enum depthStoreAction, RenderTargetFlags__Enum flags, MethodInfo * method)); +DO_APP_FUNC(0x02D5E2D0, void, CommandBuffer_SetRenderTargetMultiSubtarget_Injected, (CommandBuffer * __this, RenderTargetIdentifier__Array * colors, RenderTargetIdentifier * depth, RenderBufferLoadAction__Enum__Array * colorLoadActions, RenderBufferStoreAction__Enum__Array * colorStoreActions, RenderBufferLoadAction__Enum depthLoadAction, RenderBufferStoreAction__Enum depthStoreAction, int32_t mipLevel, CubemapFace__Enum cubemapFace, int32_t depthSlice, MethodInfo * method)); +DO_APP_FUNC(0x02D5E360, void, CommandBufferExtensions_Internal_SwitchIntoFastMemory, (CommandBuffer * cmd, RenderTargetIdentifier * rt, FastMemoryFlags__Enum fastMemoryFlags, float residency, bool copyContents, MethodInfo * method)); +DO_APP_FUNC(0x02D5E3F0, void, CommandBufferExtensions_Internal_SwitchOutOfFastMemory, (CommandBuffer * cmd, RenderTargetIdentifier * rt, bool copyContents, MethodInfo * method)); DO_APP_FUNC(0x02D5E460, void, CommandBufferExtensions_SwitchIntoFastMemory, (CommandBuffer * cmd, RenderTargetIdentifier rid, FastMemoryFlags__Enum fastMemoryFlags, float residency, bool copyContents, MethodInfo * method)); DO_APP_FUNC(0x02D5E4F0, void, CommandBufferExtensions_SwitchOutOfFastMemory, (CommandBuffer * cmd, RenderTargetIdentifier rid, bool copyContents, MethodInfo * method)); -DO_APP_FUNC(0x02D5E560, float, SphericalHarmonicsL2_get_Item, (SphericalHarmonicsL2__Boxed * __this, int32_t rgb, int32_t coefficient, MethodInfo * method)); -DO_APP_FUNC(0x02D5E760, void, SphericalHarmonicsL2_set_Item, (SphericalHarmonicsL2__Boxed * __this, int32_t rgb, int32_t coefficient, float value, MethodInfo * method)); -DO_APP_FUNC(0x02D5E960, int32_t, SphericalHarmonicsL2_GetHashCode, (SphericalHarmonicsL2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D5EB30, bool, SphericalHarmonicsL2_Equals, (SphericalHarmonicsL2__Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x02D5EC90, bool, SphericalHarmonicsL2_Equals_1, (SphericalHarmonicsL2__Boxed * __this, SphericalHarmonicsL2 other, MethodInfo * method)); +DO_APP_FUNC(0x02D5E560, float, SphericalHarmonicsL2_get_Item, (SphericalHarmonicsL2 * __this, int32_t rgb, int32_t coefficient, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11178, SphericalHarmonicsL2_get_Item__MethodInfo); +DO_APP_FUNC(0x02D5E760, void, SphericalHarmonicsL2_set_Item, (SphericalHarmonicsL2 * __this, int32_t rgb, int32_t coefficient, float value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11170, SphericalHarmonicsL2_set_Item__MethodInfo); +DO_APP_FUNC(0x02D5E960, int32_t, SphericalHarmonicsL2_GetHashCode, (SphericalHarmonicsL2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D5EB30, bool, SphericalHarmonicsL2_Equals, (SphericalHarmonicsL2 * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x02D5EC90, bool, SphericalHarmonicsL2_Equals_1, (SphericalHarmonicsL2 * __this, SphericalHarmonicsL2 other, MethodInfo * method)); DO_APP_FUNC(0x02D5ED50, bool, SphericalHarmonicsL2_op_Equality, (SphericalHarmonicsL2 lhs, SphericalHarmonicsL2 rhs, MethodInfo * method)); -DO_APP_FUNC(0x02D5EF70, void, BatchCullingContext__ctor, (BatchCullingContext__Boxed * __this, NativeArray_1_UnityEngine_Plane_ inCullingPlanes, NativeArray_1_UnityEngine_Rendering_BatchVisibility_ inOutBatchVisibility, NativeArray_1_System_Int32_ outVisibleIndices, NativeArray_1_System_Int32_ outVisibleIndicesY, LODParameters inLodParameters, Matrix4x4 inCullingMatrix, float inNearPlane, MethodInfo * method)); -DO_APP_FUNC(0x02D5EFF0, void, BatchRendererGroup_InvokeOnPerformCulling, (BatchRendererGroup * group, BatchRendererCullingOutput context, LODParameters lodParameters, MethodInfo * method)); +DO_APP_FUNC(0x02D5EF70, void, BatchCullingContext__ctor, (BatchCullingContext * __this, NativeArray_1_UnityEngine_Plane_ inCullingPlanes, NativeArray_1_UnityEngine_Rendering_BatchVisibility_ inOutBatchVisibility, NativeArray_1_System_Int32_ outVisibleIndices, NativeArray_1_System_Int32_ outVisibleIndicesY, LODParameters inLodParameters, Matrix4x4 inCullingMatrix, float inNearPlane, MethodInfo * method)); +DO_APP_FUNC(0x02D5EFF0, void, BatchRendererGroup_InvokeOnPerformCulling, (BatchRendererGroup * group, BatchRendererCullingOutput * context, LODParameters * lodParameters, MethodInfo * method)); DO_APP_FUNC(0x02D5F2E0, void, BatchRendererGroup_OnPerformCulling__ctor, (BatchRendererGroup_OnPerformCulling * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x02D5F4A0, JobHandle, BatchRendererGroup_OnPerformCulling_Invoke, (BatchRendererGroup_OnPerformCulling * __this, BatchRendererGroup * rendererGroup, BatchCullingContext cullingContext, MethodInfo * method)); -DO_APP_FUNC(0x02D5F550, bool, BlendState_Equals, (BlendState__Boxed * __this, BlendState other, MethodInfo * method)); -DO_APP_FUNC(0x02D5F820, bool, BlendState_Equals_1, (BlendState__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02D5F8E0, int32_t, BlendState_GetHashCode, (BlendState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D5FBF0, bool, CullingResults_Equals, (CullingResults__Boxed * __this, CullingResults other, MethodInfo * method)); -DO_APP_FUNC(0x02D5FCC0, bool, CullingResults_Equals_1, (CullingResults__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0180A3E0, int32_t, CullingResults_GetHashCode, (CullingResults__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D5FD60, bool, DepthState_Equals, (DepthState__Boxed * __this, DepthState other, MethodInfo * method)); -DO_APP_FUNC(0x02D5FD80, bool, DepthState_Equals_1, (DepthState__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02D5FE20, int32_t, DepthState_GetHashCode, (DepthState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D5FE40, void, DrawingSettings__ctor, (DrawingSettings__Boxed * __this, ShaderTagId shaderPassName, SortingSettings sortingSettings, MethodInfo * method)); -DO_APP_FUNC(0x02D5FFA0, void, DrawingSettings_set_perObjectData, (DrawingSettings__Boxed * __this, PerObjectData__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x02D5FFB0, void, DrawingSettings_set_overrideMaterial, (DrawingSettings__Boxed * __this, Material * value, MethodInfo * method)); -DO_APP_FUNC(0x01D171A0, void, DrawingSettings_set_overrideMaterialPassIndex, (DrawingSettings__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x02D5FFF0, ShaderTagId, DrawingSettings_GetShaderPassName, (DrawingSettings__Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x02D60140, void, DrawingSettings_SetShaderPassName, (DrawingSettings__Boxed * __this, int32_t index, ShaderTagId shaderPassName, MethodInfo * method)); -DO_APP_FUNC(0x02D602A0, bool, DrawingSettings_Equals, (DrawingSettings__Boxed * __this, DrawingSettings other, MethodInfo * method)); -DO_APP_FUNC(0x02D60850, bool, DrawingSettings_Equals_1, (DrawingSettings__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02D609A0, int32_t, DrawingSettings_GetHashCode, (DrawingSettings__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D5F550, bool, BlendState_Equals, (BlendState * __this, BlendState other, MethodInfo * method)); +DO_APP_FUNC(0x02D5F820, bool, BlendState_Equals_1, (BlendState * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02D5F8E0, int32_t, BlendState_GetHashCode, (BlendState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D5FBF0, bool, CullingResults_Equals, (CullingResults * __this, CullingResults other, MethodInfo * method)); +DO_APP_FUNC(0x02D5FCC0, bool, CullingResults_Equals_1, (CullingResults * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x0180A3E0, int32_t, CullingResults_GetHashCode, (CullingResults * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D5FD60, bool, DepthState_Equals, (DepthState * __this, DepthState other, MethodInfo * method)); +DO_APP_FUNC(0x02D5FD80, bool, DepthState_Equals_1, (DepthState * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02D5FE20, int32_t, DepthState_GetHashCode, (DepthState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D5FE40, void, DrawingSettings__ctor, (DrawingSettings * __this, ShaderTagId shaderPassName, SortingSettings sortingSettings, MethodInfo * method)); +DO_APP_FUNC(0x02D5FFA0, void, DrawingSettings_set_perObjectData, (DrawingSettings * __this, PerObjectData__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x02D5FFB0, void, DrawingSettings_set_overrideMaterial, (DrawingSettings * __this, Material * value, MethodInfo * method)); +DO_APP_FUNC(0x01D171A0, void, DrawingSettings_set_overrideMaterialPassIndex, (DrawingSettings * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x02D5FFF0, ShaderTagId, DrawingSettings_GetShaderPassName, (DrawingSettings * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D111C8, DrawingSettings_GetShaderPassName__MethodInfo); +DO_APP_FUNC(0x02D60140, void, DrawingSettings_SetShaderPassName, (DrawingSettings * __this, int32_t index, ShaderTagId shaderPassName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11118, DrawingSettings_SetShaderPassName__MethodInfo); +DO_APP_FUNC(0x02D602A0, bool, DrawingSettings_Equals, (DrawingSettings * __this, DrawingSettings other, MethodInfo * method)); +DO_APP_FUNC(0x02D60850, bool, DrawingSettings_Equals_1, (DrawingSettings * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02D609A0, int32_t, DrawingSettings_GetHashCode, (DrawingSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x02D60A00, void, DrawingSettings__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02D60A40, void, FilteringSettings__ctor, (FilteringSettings__Boxed * __this, Nullable_1_UnityEngine_Rendering_RenderQueueRange_ renderQueueRange, int32_t layerMask, uint32_t renderingLayerMask, int32_t excludeMotionVectorObjects, MethodInfo * method)); -DO_APP_FUNC(0x0281FE50, void, FilteringSettings_set_excludeMotionVectorObjects, (FilteringSettings__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02D60B30, bool, FilteringSettings_Equals, (FilteringSettings__Boxed * __this, FilteringSettings other, MethodInfo * method)); -DO_APP_FUNC(0x02D60BF0, bool, FilteringSettings_Equals_1, (FilteringSettings__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02D60C90, int32_t, FilteringSettings_GetHashCode, (FilteringSettings__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D60D00, bool, LODParameters_Equals, (LODParameters__Boxed * __this, LODParameters other, MethodInfo * method)); -DO_APP_FUNC(0x02D60DC0, bool, LODParameters_Equals_1, (LODParameters__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02D60E70, int32_t, LODParameters_GetHashCode, (LODParameters__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D60F20, void, RasterState__ctor, (RasterState__Boxed * __this, CullMode__Enum cullingMode, int32_t offsetUnits, float offsetFactor, bool depthClip, MethodInfo * method)); -DO_APP_FUNC(0x02D60FB0, bool, RasterState_Equals, (RasterState__Boxed * __this, RasterState other, MethodInfo * method)); -DO_APP_FUNC(0x02D61020, bool, RasterState_Equals_1, (RasterState__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02D61140, int32_t, RasterState_GetHashCode, (RasterState__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D60A40, void, FilteringSettings__ctor, (FilteringSettings * __this, Nullable_1_UnityEngine_Rendering_RenderQueueRange_ renderQueueRange, int32_t layerMask, uint32_t renderingLayerMask, int32_t excludeMotionVectorObjects, MethodInfo * method)); +DO_APP_FUNC(0x0281FE50, void, FilteringSettings_set_excludeMotionVectorObjects, (FilteringSettings * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02D60B30, bool, FilteringSettings_Equals, (FilteringSettings * __this, FilteringSettings other, MethodInfo * method)); +DO_APP_FUNC(0x02D60BF0, bool, FilteringSettings_Equals_1, (FilteringSettings * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02D60C90, int32_t, FilteringSettings_GetHashCode, (FilteringSettings * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D60D00, bool, LODParameters_Equals, (LODParameters * __this, LODParameters other, MethodInfo * method)); +DO_APP_FUNC(0x02D60DC0, bool, LODParameters_Equals_1, (LODParameters * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02D60E70, int32_t, LODParameters_GetHashCode, (LODParameters * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D60F20, void, RasterState__ctor, (RasterState * __this, CullMode__Enum cullingMode, int32_t offsetUnits, float offsetFactor, bool depthClip, MethodInfo * method)); +DO_APP_FUNC(0x02D60FB0, bool, RasterState_Equals, (RasterState * __this, RasterState other, MethodInfo * method)); +DO_APP_FUNC(0x02D61020, bool, RasterState_Equals_1, (RasterState * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02D61140, int32_t, RasterState_GetHashCode, (RasterState * __this, MethodInfo * method)); DO_APP_FUNC(0x02D61190, void, RasterState__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, RenderPipeline_ProcessRenderRequests, (RenderPipeline * __this, ScriptableRenderContext context, Camera * camera, List_1_UnityEngine_Camera_RenderRequest_ * renderRequests, MethodInfo * method)); DO_APP_FUNC(0x02D61220, void, RenderPipeline_Render, (RenderPipeline * __this, ScriptableRenderContext context, List_1_UnityEngine_Camera_ * cameras, MethodInfo * method)); DO_APP_FUNC(0x02D612A0, void, RenderPipeline_InternalRender, (RenderPipeline * __this, ScriptableRenderContext context, List_1_UnityEngine_Camera_ * cameras, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11078, RenderPipeline_InternalRender__MethodInfo); DO_APP_FUNC(0x02D61330, void, RenderPipeline_InternalRenderWithRequests, (RenderPipeline * __this, ScriptableRenderContext context, List_1_UnityEngine_Camera_ * cameras, List_1_UnityEngine_Camera_RenderRequest_ * renderRequests, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11048, RenderPipeline_InternalRenderWithRequests__MethodInfo); DO_APP_FUNC(0x003BCD20, bool, RenderPipeline_get_disposed, (RenderPipeline * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD30, void, RenderPipeline_set_disposed, (RenderPipeline * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x02D61470, void, RenderPipeline_Dispose, (RenderPipeline * __this, MethodInfo * method)); @@ -75669,76 +86399,78 @@ DO_APP_FUNC(0x02D62340, void, RenderPipelineManager_PrepareRenderPipeline, (Rend DO_APP_FUNC(0x02D62620, bool, RenderPipelineManager_IsPipelineRequireCreation, (MethodInfo * method)); DO_APP_FUNC(0x02D627B0, void, RenderPipelineManager__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02D629A0, RenderQueueRange, RenderQueueRange_get_all, (MethodInfo * method)); -DO_APP_FUNC(0x02D629C0, bool, RenderQueueRange_Equals, (RenderQueueRange__Boxed * __this, RenderQueueRange other, MethodInfo * method)); -DO_APP_FUNC(0x02D629E0, bool, RenderQueueRange_Equals_1, (RenderQueueRange__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02D62AA0, int32_t, RenderQueueRange_GetHashCode, (RenderQueueRange__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D629C0, bool, RenderQueueRange_Equals, (RenderQueueRange * __this, RenderQueueRange other, MethodInfo * method)); +DO_APP_FUNC(0x02D629E0, bool, RenderQueueRange_Equals_1, (RenderQueueRange * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02D62AA0, int32_t, RenderQueueRange_GetHashCode, (RenderQueueRange * __this, MethodInfo * method)); DO_APP_FUNC(0x02D62AB0, void, RenderQueueRange__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02D62B10, bool, RenderStateBlock_Equals, (RenderStateBlock__Boxed * __this, RenderStateBlock other, MethodInfo * method)); -DO_APP_FUNC(0x02D62D50, bool, RenderStateBlock_Equals_1, (RenderStateBlock__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02D62E50, int32_t, RenderStateBlock_GetHashCode, (RenderStateBlock__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D62FC0, bool, RenderTargetBlendState_Equals, (RenderTargetBlendState__Boxed * __this, RenderTargetBlendState other, MethodInfo * method)); -DO_APP_FUNC(0x02D63010, bool, RenderTargetBlendState_Equals_1, (RenderTargetBlendState__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02D630F0, int32_t, RenderTargetBlendState_GetHashCode, (RenderTargetBlendState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D63150, void, ScriptableRenderContext_InitializeSortSettings, (Camera * camera, SortingSettings sortingSettings, MethodInfo * method)); -DO_APP_FUNC(0x02D631B0, void, ScriptableRenderContext_GetCameras_Internal, (ScriptableRenderContext__Boxed * __this, Type * listType, Object * resultList, MethodInfo * method)); -DO_APP_FUNC(0x02D63260, void, ScriptableRenderContext_DrawRenderers_Internal, (ScriptableRenderContext__Boxed * __this, void * cullResults, DrawingSettings drawingSettings, FilteringSettings filteringSettings, ShaderTagId tagName, bool isPassTagName, void * tagValues, void * stateBlocks, int32_t stateCount, MethodInfo * method)); -DO_APP_FUNC(0x02D63360, void, ScriptableRenderContext_ExecuteCommandBuffer_Internal, (ScriptableRenderContext__Boxed * __this, CommandBuffer * commandBuffer, MethodInfo * method)); -DO_APP_FUNC(0x02D63400, void, ScriptableRenderContext_ExecuteCommandBufferAsync_Internal, (ScriptableRenderContext__Boxed * __this, CommandBuffer * commandBuffer, ComputeQueueType__Enum queueType, MethodInfo * method)); -DO_APP_FUNC(0x02D634B0, RendererList, ScriptableRenderContext_CreateRendererList_Internal, (ScriptableRenderContext__Boxed * __this, void * cullResults, DrawingSettings drawingSettings, FilteringSettings filteringSettings, ShaderTagId tagName, bool isPassTagName, void * tagValues, void * stateBlocks, int32_t stateCount, MethodInfo * method)); -DO_APP_FUNC(0x02D635C0, void, ScriptableRenderContext_PrepareRendererListsAsync_Internal, (ScriptableRenderContext__Boxed * __this, Object * rendererLists, MethodInfo * method)); -DO_APP_FUNC(0x02D63660, RendererListStatus__Enum, ScriptableRenderContext_QueryRendererListStatus_Internal, (ScriptableRenderContext__Boxed * __this, RendererList handle, MethodInfo * method)); -DO_APP_FUNC(0x00A9A2A0, void, ScriptableRenderContext__ctor, (ScriptableRenderContext__Boxed * __this, void * ptr, MethodInfo * method)); -DO_APP_FUNC(0x02D63700, void, ScriptableRenderContext_GetCameras, (ScriptableRenderContext__Boxed * __this, List_1_UnityEngine_Camera_ * results, MethodInfo * method)); -DO_APP_FUNC(0x02D637C0, void, ScriptableRenderContext_DrawRenderers, (ScriptableRenderContext__Boxed * __this, CullingResults cullingResults, DrawingSettings drawingSettings, FilteringSettings filteringSettings, MethodInfo * method)); -DO_APP_FUNC(0x02D638C0, void, ScriptableRenderContext_DrawRenderers_1, (ScriptableRenderContext__Boxed * __this, CullingResults cullingResults, DrawingSettings drawingSettings, FilteringSettings filteringSettings, RenderStateBlock stateBlock, MethodInfo * method)); -DO_APP_FUNC(0x02D639A0, void, ScriptableRenderContext_ExecuteCommandBuffer, (ScriptableRenderContext__Boxed * __this, CommandBuffer * commandBuffer, MethodInfo * method)); -DO_APP_FUNC(0x02D63AD0, void, ScriptableRenderContext_ExecuteCommandBufferAsync, (ScriptableRenderContext__Boxed * __this, CommandBuffer * commandBuffer, ComputeQueueType__Enum queueType, MethodInfo * method)); -DO_APP_FUNC(0x02D63C20, bool, ScriptableRenderContext_Equals, (ScriptableRenderContext__Boxed * __this, ScriptableRenderContext other, MethodInfo * method)); -DO_APP_FUNC(0x02D63CE0, bool, ScriptableRenderContext_Equals_1, (ScriptableRenderContext__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02B78450, int32_t, ScriptableRenderContext_GetHashCode, (ScriptableRenderContext__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D63D80, RendererList, ScriptableRenderContext_CreateRendererList, (ScriptableRenderContext__Boxed * __this, RendererListDesc desc, MethodInfo * method)); -DO_APP_FUNC(0x02D64120, void, ScriptableRenderContext_PrepareRendererListsAsync, (ScriptableRenderContext__Boxed * __this, List_1_UnityEngine_Rendering_RendererUtils_RendererList_ * rendererLists, MethodInfo * method)); -DO_APP_FUNC(0x02D64180, RendererListStatus__Enum, ScriptableRenderContext_QueryRendererListStatus, (ScriptableRenderContext__Boxed * __this, RendererList rendererList, MethodInfo * method)); +DO_APP_FUNC(0x02D62B10, bool, RenderStateBlock_Equals, (RenderStateBlock * __this, RenderStateBlock other, MethodInfo * method)); +DO_APP_FUNC(0x02D62D50, bool, RenderStateBlock_Equals_1, (RenderStateBlock * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02D62E50, int32_t, RenderStateBlock_GetHashCode, (RenderStateBlock * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D62FC0, bool, RenderTargetBlendState_Equals, (RenderTargetBlendState * __this, RenderTargetBlendState other, MethodInfo * method)); +DO_APP_FUNC(0x02D63010, bool, RenderTargetBlendState_Equals_1, (RenderTargetBlendState * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02D630F0, int32_t, RenderTargetBlendState_GetHashCode, (RenderTargetBlendState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D63150, void, ScriptableRenderContext_InitializeSortSettings, (Camera * camera, SortingSettings * sortingSettings, MethodInfo * method)); +DO_APP_FUNC(0x02D631B0, void, ScriptableRenderContext_GetCameras_Internal, (ScriptableRenderContext * __this, Type * listType, Object * resultList, MethodInfo * method)); +DO_APP_FUNC(0x02D63260, void, ScriptableRenderContext_DrawRenderers_Internal, (ScriptableRenderContext * __this, void * cullResults, DrawingSettings * drawingSettings, FilteringSettings * filteringSettings, ShaderTagId tagName, bool isPassTagName, void * tagValues, void * stateBlocks, int32_t stateCount, MethodInfo * method)); +DO_APP_FUNC(0x02D63360, void, ScriptableRenderContext_ExecuteCommandBuffer_Internal, (ScriptableRenderContext * __this, CommandBuffer * commandBuffer, MethodInfo * method)); +DO_APP_FUNC(0x02D63400, void, ScriptableRenderContext_ExecuteCommandBufferAsync_Internal, (ScriptableRenderContext * __this, CommandBuffer * commandBuffer, ComputeQueueType__Enum queueType, MethodInfo * method)); +DO_APP_FUNC(0x02D634B0, RendererList, ScriptableRenderContext_CreateRendererList_Internal, (ScriptableRenderContext * __this, void * cullResults, DrawingSettings * drawingSettings, FilteringSettings * filteringSettings, ShaderTagId tagName, bool isPassTagName, void * tagValues, void * stateBlocks, int32_t stateCount, MethodInfo * method)); +DO_APP_FUNC(0x02D635C0, void, ScriptableRenderContext_PrepareRendererListsAsync_Internal, (ScriptableRenderContext * __this, Object * rendererLists, MethodInfo * method)); +DO_APP_FUNC(0x02D63660, RendererListStatus__Enum, ScriptableRenderContext_QueryRendererListStatus_Internal, (ScriptableRenderContext * __this, RendererList handle, MethodInfo * method)); +DO_APP_FUNC(0x00A9A2A0, void, ScriptableRenderContext__ctor, (ScriptableRenderContext * __this, void * ptr, MethodInfo * method)); +DO_APP_FUNC(0x02D63700, void, ScriptableRenderContext_GetCameras, (ScriptableRenderContext * __this, List_1_UnityEngine_Camera_ * results, MethodInfo * method)); +DO_APP_FUNC(0x02D637C0, void, ScriptableRenderContext_DrawRenderers, (ScriptableRenderContext * __this, CullingResults cullingResults, DrawingSettings * drawingSettings, FilteringSettings * filteringSettings, MethodInfo * method)); +DO_APP_FUNC(0x02D638C0, void, ScriptableRenderContext_DrawRenderers_1, (ScriptableRenderContext * __this, CullingResults cullingResults, DrawingSettings * drawingSettings, FilteringSettings * filteringSettings, RenderStateBlock * stateBlock, MethodInfo * method)); +DO_APP_FUNC(0x02D639A0, void, ScriptableRenderContext_ExecuteCommandBuffer, (ScriptableRenderContext * __this, CommandBuffer * commandBuffer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10F80, ScriptableRenderContext_ExecuteCommandBuffer__MethodInfo); +DO_APP_FUNC(0x02D63AD0, void, ScriptableRenderContext_ExecuteCommandBufferAsync, (ScriptableRenderContext * __this, CommandBuffer * commandBuffer, ComputeQueueType__Enum queueType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10F60, ScriptableRenderContext_ExecuteCommandBufferAsync__MethodInfo); +DO_APP_FUNC(0x02D63C20, bool, ScriptableRenderContext_Equals, (ScriptableRenderContext * __this, ScriptableRenderContext other, MethodInfo * method)); +DO_APP_FUNC(0x02D63CE0, bool, ScriptableRenderContext_Equals_1, (ScriptableRenderContext * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02B78450, int32_t, ScriptableRenderContext_GetHashCode, (ScriptableRenderContext * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D63D80, RendererList, ScriptableRenderContext_CreateRendererList, (ScriptableRenderContext * __this, RendererListDesc desc, MethodInfo * method)); +DO_APP_FUNC(0x02D64120, void, ScriptableRenderContext_PrepareRendererListsAsync, (ScriptableRenderContext * __this, List_1_UnityEngine_Rendering_RendererUtils_RendererList_ * rendererLists, MethodInfo * method)); +DO_APP_FUNC(0x02D64180, RendererListStatus__Enum, ScriptableRenderContext_QueryRendererListStatus, (ScriptableRenderContext * __this, RendererList rendererList, MethodInfo * method)); DO_APP_FUNC(0x02D64260, void, ScriptableRenderContext__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02D64300, void, ScriptableRenderContext_GetCameras_Internal_Injected, (ScriptableRenderContext _unity_self, Type * listType, Object * resultList, MethodInfo * method)); -DO_APP_FUNC(0x02D64370, void, ScriptableRenderContext_DrawRenderers_Internal_Injected, (ScriptableRenderContext _unity_self, void * cullResults, DrawingSettings drawingSettings, FilteringSettings filteringSettings, ShaderTagId tagName, bool isPassTagName, void * tagValues, void * stateBlocks, int32_t stateCount, MethodInfo * method)); -DO_APP_FUNC(0x02D64400, void, ScriptableRenderContext_ExecuteCommandBuffer_Internal_Injected, (ScriptableRenderContext _unity_self, CommandBuffer * commandBuffer, MethodInfo * method)); -DO_APP_FUNC(0x02D64460, void, ScriptableRenderContext_ExecuteCommandBufferAsync_Internal_Injected, (ScriptableRenderContext _unity_self, CommandBuffer * commandBuffer, ComputeQueueType__Enum queueType, MethodInfo * method)); -DO_APP_FUNC(0x02D644D0, void, ScriptableRenderContext_CreateRendererList_Internal_Injected, (ScriptableRenderContext _unity_self, void * cullResults, DrawingSettings drawingSettings, FilteringSettings filteringSettings, ShaderTagId tagName, bool isPassTagName, void * tagValues, void * stateBlocks, int32_t stateCount, RendererList ret, MethodInfo * method)); -DO_APP_FUNC(0x02D64560, void, ScriptableRenderContext_PrepareRendererListsAsync_Internal_Injected, (ScriptableRenderContext _unity_self, Object * rendererLists, MethodInfo * method)); -DO_APP_FUNC(0x02D645C0, RendererListStatus__Enum, ScriptableRenderContext_QueryRendererListStatus_Internal_Injected, (ScriptableRenderContext _unity_self, RendererList handle, MethodInfo * method)); -DO_APP_FUNC(0x02D64620, void, ShaderTagId__ctor, (ShaderTagId__Boxed * __this, String * name, MethodInfo * method)); -DO_APP_FUNC(0x02B78450, int32_t, ShaderTagId_get_id, (ShaderTagId__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00959BA0, void, ShaderTagId_set_id, (ShaderTagId__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x02D64680, bool, ShaderTagId_Equals, (ShaderTagId__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02CE4450, bool, ShaderTagId_Equals_1, (ShaderTagId__Boxed * __this, ShaderTagId other, MethodInfo * method)); -DO_APP_FUNC(0x02D64700, int32_t, ShaderTagId_GetHashCode, (ShaderTagId__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D64300, void, ScriptableRenderContext_GetCameras_Internal_Injected, (ScriptableRenderContext * _unity_self, Type * listType, Object * resultList, MethodInfo * method)); +DO_APP_FUNC(0x02D64370, void, ScriptableRenderContext_DrawRenderers_Internal_Injected, (ScriptableRenderContext * _unity_self, void * cullResults, DrawingSettings * drawingSettings, FilteringSettings * filteringSettings, ShaderTagId * tagName, bool isPassTagName, void * tagValues, void * stateBlocks, int32_t stateCount, MethodInfo * method)); +DO_APP_FUNC(0x02D64400, void, ScriptableRenderContext_ExecuteCommandBuffer_Internal_Injected, (ScriptableRenderContext * _unity_self, CommandBuffer * commandBuffer, MethodInfo * method)); +DO_APP_FUNC(0x02D64460, void, ScriptableRenderContext_ExecuteCommandBufferAsync_Internal_Injected, (ScriptableRenderContext * _unity_self, CommandBuffer * commandBuffer, ComputeQueueType__Enum queueType, MethodInfo * method)); +DO_APP_FUNC(0x02D644D0, void, ScriptableRenderContext_CreateRendererList_Internal_Injected, (ScriptableRenderContext * _unity_self, void * cullResults, DrawingSettings * drawingSettings, FilteringSettings * filteringSettings, ShaderTagId * tagName, bool isPassTagName, void * tagValues, void * stateBlocks, int32_t stateCount, RendererList * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D64560, void, ScriptableRenderContext_PrepareRendererListsAsync_Internal_Injected, (ScriptableRenderContext * _unity_self, Object * rendererLists, MethodInfo * method)); +DO_APP_FUNC(0x02D645C0, RendererListStatus__Enum, ScriptableRenderContext_QueryRendererListStatus_Internal_Injected, (ScriptableRenderContext * _unity_self, RendererList * handle, MethodInfo * method)); +DO_APP_FUNC(0x02D64620, void, ShaderTagId__ctor, (ShaderTagId * __this, String * name, MethodInfo * method)); +DO_APP_FUNC(0x02B78450, int32_t, ShaderTagId_get_id, (ShaderTagId * __this, MethodInfo * method)); +DO_APP_FUNC(0x00959BA0, void, ShaderTagId_set_id, (ShaderTagId * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x02D64680, bool, ShaderTagId_Equals, (ShaderTagId * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02CE4450, bool, ShaderTagId_Equals_1, (ShaderTagId * __this, ShaderTagId other, MethodInfo * method)); +DO_APP_FUNC(0x02D64700, int32_t, ShaderTagId_GetHashCode, (ShaderTagId * __this, MethodInfo * method)); DO_APP_FUNC(0x02D31C70, bool, ShaderTagId_op_Equality, (ShaderTagId tag1, ShaderTagId tag2, MethodInfo * method)); DO_APP_FUNC(0x02D64710, bool, ShaderTagId_op_Inequality, (ShaderTagId tag1, ShaderTagId tag2, MethodInfo * method)); DO_APP_FUNC(0x02D64720, SortingLayerRange, SortingLayerRange_get_all, (MethodInfo * method)); -DO_APP_FUNC(0x02D64730, bool, SortingLayerRange_Equals, (SortingLayerRange__Boxed * __this, SortingLayerRange other, MethodInfo * method)); -DO_APP_FUNC(0x02D64750, bool, SortingLayerRange_Equals_1, (SortingLayerRange__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02D647F0, int32_t, SortingLayerRange_GetHashCode, (SortingLayerRange__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D64800, void, SortingSettings__ctor, (SortingSettings__Boxed * __this, Camera * camera, MethodInfo * method)); -DO_APP_FUNC(0x02D648A0, SortingCriteria__Enum, SortingSettings_get_criteria, (SortingSettings__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00720A40, void, SortingSettings_set_criteria, (SortingSettings__Boxed * __this, SortingCriteria__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x02D648B0, bool, SortingSettings_Equals, (SortingSettings__Boxed * __this, SortingSettings other, MethodInfo * method)); -DO_APP_FUNC(0x02D64DE0, bool, SortingSettings_Equals_1, (SortingSettings__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02D64F10, int32_t, SortingSettings_GetHashCode, (SortingSettings__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D65000, void, StencilState_set_enabled, (StencilState__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x01EC7BF0, void, StencilState_set_readMask, (StencilState__Boxed * __this, uint8_t value, MethodInfo * method)); -DO_APP_FUNC(0x029495C0, void, StencilState_set_writeMask, (StencilState__Boxed * __this, uint8_t value, MethodInfo * method)); -DO_APP_FUNC(0x02949C40, void, StencilState_set_compareFunctionFront, (StencilState__Boxed * __this, CompareFunction__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x02D65060, void, StencilState_set_passOperationFront, (StencilState__Boxed * __this, StencilOp__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x02D65070, void, StencilState_set_failOperationFront, (StencilState__Boxed * __this, StencilOp__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x02D65080, void, StencilState_set_zFailOperationFront, (StencilState__Boxed * __this, StencilOp__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x00C23350, void, StencilState_set_compareFunctionBack, (StencilState__Boxed * __this, CompareFunction__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x02D65090, void, StencilState_set_passOperationBack, (StencilState__Boxed * __this, StencilOp__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x02D650A0, void, StencilState_set_failOperationBack, (StencilState__Boxed * __this, StencilOp__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x02D650B0, void, StencilState_set_zFailOperationBack, (StencilState__Boxed * __this, StencilOp__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x02D650C0, bool, StencilState_Equals, (StencilState__Boxed * __this, StencilState other, MethodInfo * method)); -DO_APP_FUNC(0x02D65130, bool, StencilState_Equals_1, (StencilState__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02D65290, int32_t, StencilState_GetHashCode, (StencilState__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D64730, bool, SortingLayerRange_Equals, (SortingLayerRange * __this, SortingLayerRange other, MethodInfo * method)); +DO_APP_FUNC(0x02D64750, bool, SortingLayerRange_Equals_1, (SortingLayerRange * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02D647F0, int32_t, SortingLayerRange_GetHashCode, (SortingLayerRange * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D64800, void, SortingSettings__ctor, (SortingSettings * __this, Camera * camera, MethodInfo * method)); +DO_APP_FUNC(0x02D648A0, SortingCriteria__Enum, SortingSettings_get_criteria, (SortingSettings * __this, MethodInfo * method)); +DO_APP_FUNC(0x00720A40, void, SortingSettings_set_criteria, (SortingSettings * __this, SortingCriteria__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x02D648B0, bool, SortingSettings_Equals, (SortingSettings * __this, SortingSettings other, MethodInfo * method)); +DO_APP_FUNC(0x02D64DE0, bool, SortingSettings_Equals_1, (SortingSettings * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02D64F10, int32_t, SortingSettings_GetHashCode, (SortingSettings * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D65000, void, StencilState_set_enabled, (StencilState * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x01EC7BF0, void, StencilState_set_readMask, (StencilState * __this, uint8_t value, MethodInfo * method)); +DO_APP_FUNC(0x029495C0, void, StencilState_set_writeMask, (StencilState * __this, uint8_t value, MethodInfo * method)); +DO_APP_FUNC(0x02949C40, void, StencilState_set_compareFunctionFront, (StencilState * __this, CompareFunction__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x02D65060, void, StencilState_set_passOperationFront, (StencilState * __this, StencilOp__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x02D65070, void, StencilState_set_failOperationFront, (StencilState * __this, StencilOp__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x02D65080, void, StencilState_set_zFailOperationFront, (StencilState * __this, StencilOp__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x00C23350, void, StencilState_set_compareFunctionBack, (StencilState * __this, CompareFunction__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x02D65090, void, StencilState_set_passOperationBack, (StencilState * __this, StencilOp__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x02D650A0, void, StencilState_set_failOperationBack, (StencilState * __this, StencilOp__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x02D650B0, void, StencilState_set_zFailOperationBack, (StencilState * __this, StencilOp__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x02D650C0, bool, StencilState_Equals, (StencilState * __this, StencilState other, MethodInfo * method)); +DO_APP_FUNC(0x02D65130, bool, StencilState_Equals_1, (StencilState * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02D65290, int32_t, StencilState_GetHashCode, (StencilState * __this, MethodInfo * method)); DO_APP_FUNC(0x02D65320, SupportedRenderingFeatures *, SupportedRenderingFeatures_get_active, (MethodInfo * method)); DO_APP_FUNC(0x02D65450, void, SupportedRenderingFeatures_set_active, (SupportedRenderingFeatures * value, MethodInfo * method)); DO_APP_FUNC(0x003BCD70, SupportedRenderingFeatures_LightmapMixedBakeModes__Enum, SupportedRenderingFeatures_get_defaultMixedLightingModes, (SupportedRenderingFeatures * __this, MethodInfo * method)); @@ -75763,70 +86495,70 @@ DO_APP_FUNC(0x02D65DC0, void, SupportedRenderingFeatures_IsAutoDefaultReflection DO_APP_FUNC(0x018C6C80, void, SupportedRenderingFeatures_FallbackLightmapperByRef, (void * lightmapperPtr, MethodInfo * method)); DO_APP_FUNC(0x02D65E20, void, SupportedRenderingFeatures__ctor, (SupportedRenderingFeatures * __this, MethodInfo * method)); DO_APP_FUNC(0x02D65EE0, void, SupportedRenderingFeatures__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02D65F90, bool, VisibleLight_Equals, (VisibleLight__Boxed * __this, VisibleLight other, MethodInfo * method)); -DO_APP_FUNC(0x02D66150, bool, VisibleLight_Equals_1, (VisibleLight__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02D66250, int32_t, VisibleLight_GetHashCode, (VisibleLight__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D662F0, bool, VisibleReflectionProbe_Equals, (VisibleReflectionProbe__Boxed * __this, VisibleReflectionProbe other, MethodInfo * method)); -DO_APP_FUNC(0x02D66590, bool, VisibleReflectionProbe_Equals_1, (VisibleReflectionProbe__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02D666A0, int32_t, VisibleReflectionProbe_GetHashCode, (VisibleReflectionProbe__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E5B640, String *, GlobalKeyword_ToString, (GlobalKeyword__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D66790, String *, LocalKeyword_ToString, (LocalKeyword__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D667A0, bool, LocalKeyword_Equals, (LocalKeyword__Boxed * __this, Object * o, MethodInfo * method)); -DO_APP_FUNC(0x02D66850, bool, LocalKeyword_Equals_1, (LocalKeyword__Boxed * __this, LocalKeyword rhs, MethodInfo * method)); -DO_APP_FUNC(0x02D668A0, int32_t, LocalKeyword_GetHashCode, (LocalKeyword__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D668B0, bool, LocalKeywordSpace_Equals, (LocalKeywordSpace__Boxed * __this, Object * o, MethodInfo * method)); -DO_APP_FUNC(0x02D66930, bool, LocalKeywordSpace_Equals_1, (LocalKeywordSpace__Boxed * __this, LocalKeywordSpace rhs, MethodInfo * method)); +DO_APP_FUNC(0x02D65F90, bool, VisibleLight_Equals, (VisibleLight * __this, VisibleLight other, MethodInfo * method)); +DO_APP_FUNC(0x02D66150, bool, VisibleLight_Equals_1, (VisibleLight * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02D66250, int32_t, VisibleLight_GetHashCode, (VisibleLight * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D662F0, bool, VisibleReflectionProbe_Equals, (VisibleReflectionProbe * __this, VisibleReflectionProbe other, MethodInfo * method)); +DO_APP_FUNC(0x02D66590, bool, VisibleReflectionProbe_Equals_1, (VisibleReflectionProbe * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02D666A0, int32_t, VisibleReflectionProbe_GetHashCode, (VisibleReflectionProbe * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E5B640, String *, GlobalKeyword_ToString, (GlobalKeyword * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D66790, String *, LocalKeyword_ToString, (LocalKeyword * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D667A0, bool, LocalKeyword_Equals, (LocalKeyword * __this, Object * o, MethodInfo * method)); +DO_APP_FUNC(0x02D66850, bool, LocalKeyword_Equals_1, (LocalKeyword * __this, LocalKeyword rhs, MethodInfo * method)); +DO_APP_FUNC(0x02D668A0, int32_t, LocalKeyword_GetHashCode, (LocalKeyword * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D668B0, bool, LocalKeywordSpace_Equals, (LocalKeywordSpace * __this, Object * o, MethodInfo * method)); +DO_APP_FUNC(0x02D66930, bool, LocalKeywordSpace_Equals_1, (LocalKeywordSpace * __this, LocalKeywordSpace rhs, MethodInfo * method)); DO_APP_FUNC(0x02D66940, bool, LocalKeywordSpace_op_Equality, (LocalKeywordSpace lhs, LocalKeywordSpace rhs, MethodInfo * method)); -DO_APP_FUNC(0x02B78450, int32_t, LocalKeywordSpace_GetHashCode, (LocalKeywordSpace__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B78450, int32_t, LocalKeywordSpace_GetHashCode, (LocalKeywordSpace * __this, MethodInfo * method)); DO_APP_FUNC(0x02D66950, uint32_t, ShaderKeyword_GetGlobalKeywordCount, (MethodInfo * method)); DO_APP_FUNC(0x02D669A0, uint32_t, ShaderKeyword_GetGlobalKeywordIndex, (String * keyword, MethodInfo * method)); DO_APP_FUNC(0x02D669F0, void, ShaderKeyword_CreateGlobalKeyword, (String * keyword, MethodInfo * method)); -DO_APP_FUNC(0x02D66A40, void, ShaderKeyword__ctor, (ShaderKeyword__Boxed * __this, String * keywordName, MethodInfo * method)); -DO_APP_FUNC(0x00E5B640, String *, ShaderKeyword_ToString, (ShaderKeyword__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D66A40, void, ShaderKeyword__ctor, (ShaderKeyword * __this, String * keywordName, MethodInfo * method)); +DO_APP_FUNC(0x00E5B640, String *, ShaderKeyword_ToString, (ShaderKeyword * __this, MethodInfo * method)); DO_APP_FUNC(0x02D66BE0, int32_t, SortingGroup_get_invalidSortingGroupID, (MethodInfo * method)); DO_APP_FUNC(0x02D66C30, SortingGroup *, SortingGroup_GetSortingGroupByIndex, (int32_t index, MethodInfo * method)); DO_APP_FUNC(0x02D66C80, int32_t, SortingGroup_get_sortingLayerID, (SortingGroup * __this, MethodInfo * method)); DO_APP_FUNC(0x02D66CD0, int32_t, SortingGroup_get_sortingOrder, (SortingGroup * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, SortingGroup__ctor, (SortingGroup * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D66D20, bool, RendererList_get_isValid, (RendererList__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D66DB0, void, RendererList__ctor, (RendererList__Boxed * __this, void * ctx, uint32_t indx, MethodInfo * method)); +DO_APP_FUNC(0x02D66D20, bool, RendererList_get_isValid, (RendererList * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D66DB0, void, RendererList__ctor, (RendererList * __this, void * ctx, uint32_t indx, MethodInfo * method)); DO_APP_FUNC(0x02D66DC0, void, RendererList__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02D66E50, bool, RendererList_get_isValid_Injected, (RendererList _unity_self, MethodInfo * method)); -DO_APP_FUNC(0x02AE7740, CullingResults, RendererListDesc_get_cullingResult, (RendererListDesc__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003C1700, Camera *, RendererListDesc_get_camera, (RendererListDesc__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x006C4CD0, ShaderTagId, RendererListDesc_get_passName, (RendererListDesc__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x005A9990, ShaderTagId__Array *, RendererListDesc_get_passNames, (RendererListDesc__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D66EA0, bool, RendererListDesc_IsValid, (RendererListDesc__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C3C200, void, RendererListParams_set_isValid, (RendererListParams__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02D67000, RendererListParams, RendererListParams_Create, (RendererListDesc desc, MethodInfo * method)); +DO_APP_FUNC(0x02D66E50, bool, RendererList_get_isValid_Injected, (RendererList * _unity_self, MethodInfo * method)); +DO_APP_FUNC(0x02AE7740, CullingResults, RendererListDesc_get_cullingResult, (RendererListDesc * __this, MethodInfo * method)); +DO_APP_FUNC(0x003C1700, Camera *, RendererListDesc_get_camera, (RendererListDesc * __this, MethodInfo * method)); +DO_APP_FUNC(0x006C4CD0, ShaderTagId, RendererListDesc_get_passName, (RendererListDesc * __this, MethodInfo * method)); +DO_APP_FUNC(0x005A9990, ShaderTagId__Array *, RendererListDesc_get_passNames, (RendererListDesc * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D66EA0, bool, RendererListDesc_IsValid, (RendererListDesc * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C3C200, void, RendererListParams_set_isValid, (RendererListParams * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02D67000, RendererListParams, RendererListParams_Create, (RendererListDesc * desc, MethodInfo * method)); DO_APP_FUNC(0x02D678F0, void, RendererListParams__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02D679B0, bool, FrameData_HasFlags, (FrameData__Boxed * __this, FrameData_Flags__Enum flag, MethodInfo * method)); -DO_APP_FUNC(0x02D679C0, float, FrameData_get_deltaTime, (FrameData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D4E460, float, FrameData_get_effectiveSpeed, (FrameData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D679D0, FrameData_EvaluationType__Enum, FrameData_get_evaluationType, (FrameData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D679E0, bool, FrameData_get_seekOccurred, (FrameData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D679F0, bool, FrameData_get_timeLooped, (FrameData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D67A00, bool, FrameData_get_timeHeld, (FrameData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D67A10, PlayableOutput, FrameData_get_output, (FrameData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D67A20, PlayState__Enum, FrameData_get_effectivePlayState, (FrameData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C045B0, bool, FrameRate_get_dropFrame, (FrameRate__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D67A40, double, FrameRate_get_rate, (FrameRate__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D67AB0, void, FrameRate__ctor, (FrameRate__Boxed * __this, uint32_t frameRate, bool drop, MethodInfo * method)); -DO_APP_FUNC(0x02D67AD0, bool, FrameRate_IsValid, (FrameRate__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CE4450, bool, FrameRate_Equals, (FrameRate__Boxed * __this, FrameRate other, MethodInfo * method)); -DO_APP_FUNC(0x02D67AE0, bool, FrameRate_Equals_1, (FrameRate__Boxed * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02D679B0, bool, FrameData_HasFlags, (FrameData * __this, FrameData_Flags__Enum flag, MethodInfo * method)); +DO_APP_FUNC(0x02D679C0, float, FrameData_get_deltaTime, (FrameData * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D4E460, float, FrameData_get_effectiveSpeed, (FrameData * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D679D0, FrameData_EvaluationType__Enum, FrameData_get_evaluationType, (FrameData * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D679E0, bool, FrameData_get_seekOccurred, (FrameData * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D679F0, bool, FrameData_get_timeLooped, (FrameData * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D67A00, bool, FrameData_get_timeHeld, (FrameData * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D67A10, PlayableOutput, FrameData_get_output, (FrameData * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D67A20, PlayState__Enum, FrameData_get_effectivePlayState, (FrameData * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C045B0, bool, FrameRate_get_dropFrame, (FrameRate * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D67A40, double, FrameRate_get_rate, (FrameRate * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D67AB0, void, FrameRate__ctor, (FrameRate * __this, uint32_t frameRate, bool drop, MethodInfo * method)); +DO_APP_FUNC(0x02D67AD0, bool, FrameRate_IsValid, (FrameRate * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CE4450, bool, FrameRate_Equals, (FrameRate * __this, FrameRate other, MethodInfo * method)); +DO_APP_FUNC(0x02D67AE0, bool, FrameRate_Equals_1, (FrameRate * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x02D67B80, bool, FrameRate_op_Equality, (FrameRate a, FrameRate b, MethodInfo * method)); -DO_APP_FUNC(0x02B78450, int32_t, FrameRate_GetHashCode, (FrameRate__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D67BE0, String *, FrameRate_ToString, (FrameRate__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D67C40, String *, FrameRate_ToString_1, (FrameRate__Boxed * __this, String * format, IFormatProvider * formatProvider, MethodInfo * method)); +DO_APP_FUNC(0x02B78450, int32_t, FrameRate_GetHashCode, (FrameRate * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D67BE0, String *, FrameRate_ToString, (FrameRate * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D67C40, String *, FrameRate_ToString_1, (FrameRate * __this, String * format, IFormatProvider * formatProvider, MethodInfo * method)); DO_APP_FUNC(0x02D67E50, FrameRate, FrameRate_DoubleToFrameRate, (double framerate, MethodInfo * method)); DO_APP_FUNC(0x02D67FB0, void, FrameRate__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02D68090, Playable, Playable_get_Null, (MethodInfo * method)); DO_APP_FUNC(0x02D68100, Playable, Playable_Create, (PlayableGraph graph, int32_t inputCount, MethodInfo * method)); -DO_APP_FUNC(0x0119B5D0, void, Playable__ctor, (Playable__Boxed * __this, PlayableHandle handle, MethodInfo * method)); -DO_APP_FUNC(0x0104C5D0, PlayableHandle, Playable_GetHandle, (Playable__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D681F0, Type *, Playable_GetPlayableType, (Playable__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D682F0, bool, Playable_Equals, (Playable__Boxed * __this, Playable other, MethodInfo * method)); +DO_APP_FUNC(0x0119B5D0, void, Playable__ctor, (Playable * __this, PlayableHandle handle, MethodInfo * method)); +DO_APP_FUNC(0x0104C5D0, PlayableHandle, Playable_GetHandle, (Playable * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D681F0, Type *, Playable_GetPlayableType, (Playable * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D682F0, bool, Playable_Equals, (Playable * __this, Playable other, MethodInfo * method)); DO_APP_FUNC(0x02D683E0, void, Playable__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02D68490, double, PlayableAsset_get_duration, (PlayableAsset * __this, MethodInfo * method)); DO_APP_FUNC(0x02D684F0, IEnumerable_1_UnityEngine_Playables_PlayableBinding_ *, PlayableAsset_get_outputs, (PlayableAsset * __this, MethodInfo * method)); @@ -75843,176 +86575,183 @@ DO_APP_FUNC(0x003AE050, void, PlayableBehaviour_OnBehaviourPause, (PlayableBehav DO_APP_FUNC(0x003AE050, void, PlayableBehaviour_PrepareFrame, (PlayableBehaviour * __this, Playable playable, FrameData info, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, PlayableBehaviour_ProcessFrame, (PlayableBehaviour * __this, Playable playable, FrameData info, Object * playerData, MethodInfo * method)); DO_APP_FUNC(0x02D68750, Object *, PlayableBehaviour_Clone, (PlayableBehaviour * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E5B640, String *, PlayableBinding_get_streamName, (PlayableBinding__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D66790, Object_1 *, PlayableBinding_get_sourceObject, (PlayableBinding__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D68760, PlayableOutput, PlayableBinding_CreateOutput, (PlayableBinding__Boxed * __this, PlayableGraph graph, MethodInfo * method)); +DO_APP_FUNC(0x00E5B640, String *, PlayableBinding_get_streamName, (PlayableBinding * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D66790, Object_1 *, PlayableBinding_get_sourceObject, (PlayableBinding * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D68760, PlayableOutput, PlayableBinding_CreateOutput, (PlayableBinding * __this, PlayableGraph graph, MethodInfo * method)); DO_APP_FUNC(0x02D68860, PlayableBinding, PlayableBinding_CreateInternal, (String * name, Object_1 * sourceObject, Type * sourceType, PlayableBinding_CreateOutputMethod * createFunction, MethodInfo * method)); DO_APP_FUNC(0x02D68A00, void, PlayableBinding__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02D68AD0, void, PlayableBinding_CreateOutputMethod__ctor, (PlayableBinding_CreateOutputMethod * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x02D68C00, PlayableOutput, PlayableBinding_CreateOutputMethod_Invoke, (PlayableBinding_CreateOutputMethod * __this, PlayableGraph graph, String * name, MethodInfo * method)); -DO_APP_FUNC(0x02D68C40, Playable, PlayableGraph_GetRootPlayable, (PlayableGraph__Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x02D68CD0, void, PlayableGraph_Evaluate, (PlayableGraph__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D68D30, bool, PlayableGraph_IsValid, (PlayableGraph__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D68D80, bool, PlayableGraph_IsPlaying, (PlayableGraph__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D68DD0, void, PlayableGraph_Evaluate_1, (PlayableGraph__Boxed * __this, float deltaTime, MethodInfo * method)); -DO_APP_FUNC(0x02D68E30, IExposedPropertyTable *, PlayableGraph_GetResolver, (PlayableGraph__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D68E80, int32_t, PlayableGraph_GetPlayableCount, (PlayableGraph__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D68ED0, int32_t, PlayableGraph_GetRootPlayableCount, (PlayableGraph__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D68F20, void, PlayableGraph_SynchronizeEvaluation, (PlayableGraph__Boxed * __this, PlayableGraph playable, MethodInfo * method)); -DO_APP_FUNC(0x02D68F80, int32_t, PlayableGraph_GetOutputCount, (PlayableGraph__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D68FD0, PlayableHandle, PlayableGraph_CreatePlayableHandle, (PlayableGraph__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D69040, bool, PlayableGraph_CreateScriptOutputInternal, (PlayableGraph__Boxed * __this, String * name, PlayableOutputHandle handle, MethodInfo * method)); -DO_APP_FUNC(0x02D690B0, PlayableHandle, PlayableGraph_GetRootPlayableInternal, (PlayableGraph__Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x02D69130, bool, PlayableGraph_IsMatchFrameRateEnabled, (PlayableGraph__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D69180, FrameRate, PlayableGraph_GetFrameRate, (PlayableGraph__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D691E0, bool, PlayableGraph_GetOutputByTypeInternal, (PlayableGraph__Boxed * __this, Type * outputType, int32_t index, PlayableOutputHandle handle, MethodInfo * method)); -DO_APP_FUNC(0x02D69260, bool, PlayableGraph_ConnectInternal, (PlayableGraph__Boxed * __this, PlayableHandle source, int32_t sourceOutputPort, PlayableHandle destination, int32_t destinationInputPort, MethodInfo * method)); -DO_APP_FUNC(0x02D692F0, void, PlayableGraph_DestroyPlayableInternal, (PlayableGraph__Boxed * __this, PlayableHandle playable, MethodInfo * method)); -DO_APP_FUNC(0x02D68D30, bool, PlayableGraph_IsValid_Injected, (PlayableGraph _unity_self, MethodInfo * method)); -DO_APP_FUNC(0x02D68D80, bool, PlayableGraph_IsPlaying_Injected, (PlayableGraph _unity_self, MethodInfo * method)); -DO_APP_FUNC(0x02D68DD0, void, PlayableGraph_Evaluate_Injected, (PlayableGraph _unity_self, float deltaTime, MethodInfo * method)); -DO_APP_FUNC(0x02D68E30, IExposedPropertyTable *, PlayableGraph_GetResolver_Injected, (PlayableGraph _unity_self, MethodInfo * method)); -DO_APP_FUNC(0x02D68E80, int32_t, PlayableGraph_GetPlayableCount_Injected, (PlayableGraph _unity_self, MethodInfo * method)); -DO_APP_FUNC(0x02D68ED0, int32_t, PlayableGraph_GetRootPlayableCount_Injected, (PlayableGraph _unity_self, MethodInfo * method)); -DO_APP_FUNC(0x02D69350, void, PlayableGraph_SynchronizeEvaluation_Injected, (PlayableGraph _unity_self, PlayableGraph playable, MethodInfo * method)); -DO_APP_FUNC(0x02D68F80, int32_t, PlayableGraph_GetOutputCount_Injected, (PlayableGraph _unity_self, MethodInfo * method)); -DO_APP_FUNC(0x02D693B0, void, PlayableGraph_CreatePlayableHandle_Injected, (PlayableGraph _unity_self, PlayableHandle ret, MethodInfo * method)); -DO_APP_FUNC(0x02D69040, bool, PlayableGraph_CreateScriptOutputInternal_Injected, (PlayableGraph _unity_self, String * name, PlayableOutputHandle handle, MethodInfo * method)); -DO_APP_FUNC(0x02D69410, void, PlayableGraph_GetRootPlayableInternal_Injected, (PlayableGraph _unity_self, int32_t index, PlayableHandle ret, MethodInfo * method)); -DO_APP_FUNC(0x02D69130, bool, PlayableGraph_IsMatchFrameRateEnabled_Injected, (PlayableGraph _unity_self, MethodInfo * method)); -DO_APP_FUNC(0x02D69480, void, PlayableGraph_GetFrameRate_Injected, (PlayableGraph _unity_self, FrameRate ret, MethodInfo * method)); -DO_APP_FUNC(0x02D691E0, bool, PlayableGraph_GetOutputByTypeInternal_Injected, (PlayableGraph _unity_self, Type * outputType, int32_t index, PlayableOutputHandle handle, MethodInfo * method)); -DO_APP_FUNC(0x02D694E0, bool, PlayableGraph_ConnectInternal_Injected, (PlayableGraph _unity_self, PlayableHandle source, int32_t sourceOutputPort, PlayableHandle destination, int32_t destinationInputPort, MethodInfo * method)); -DO_APP_FUNC(0x02D69570, void, PlayableGraph_DestroyPlayableInternal_Injected, (PlayableGraph _unity_self, PlayableHandle playable, MethodInfo * method)); +DO_APP_FUNC(0x02D68C40, Playable, PlayableGraph_GetRootPlayable, (PlayableGraph * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x02D68CD0, void, PlayableGraph_Evaluate, (PlayableGraph * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D68D30, bool, PlayableGraph_IsValid, (PlayableGraph * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D68D80, bool, PlayableGraph_IsPlaying, (PlayableGraph * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D68DD0, void, PlayableGraph_Evaluate_1, (PlayableGraph * __this, float deltaTime, MethodInfo * method)); +DO_APP_FUNC(0x02D68E30, IExposedPropertyTable *, PlayableGraph_GetResolver, (PlayableGraph * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D68E80, int32_t, PlayableGraph_GetPlayableCount, (PlayableGraph * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D68ED0, int32_t, PlayableGraph_GetRootPlayableCount, (PlayableGraph * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D68F20, void, PlayableGraph_SynchronizeEvaluation, (PlayableGraph * __this, PlayableGraph playable, MethodInfo * method)); +DO_APP_FUNC(0x02D68F80, int32_t, PlayableGraph_GetOutputCount, (PlayableGraph * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D68FD0, PlayableHandle, PlayableGraph_CreatePlayableHandle, (PlayableGraph * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D69040, bool, PlayableGraph_CreateScriptOutputInternal, (PlayableGraph * __this, String * name, PlayableOutputHandle * handle, MethodInfo * method)); +DO_APP_FUNC(0x02D690B0, PlayableHandle, PlayableGraph_GetRootPlayableInternal, (PlayableGraph * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x02D69130, bool, PlayableGraph_IsMatchFrameRateEnabled, (PlayableGraph * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D69180, FrameRate, PlayableGraph_GetFrameRate, (PlayableGraph * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D691E0, bool, PlayableGraph_GetOutputByTypeInternal, (PlayableGraph * __this, Type * outputType, int32_t index, PlayableOutputHandle * handle, MethodInfo * method)); +DO_APP_FUNC(0x02D69260, bool, PlayableGraph_ConnectInternal, (PlayableGraph * __this, PlayableHandle source, int32_t sourceOutputPort, PlayableHandle destination, int32_t destinationInputPort, MethodInfo * method)); +DO_APP_FUNC(0x02D692F0, void, PlayableGraph_DestroyPlayableInternal, (PlayableGraph * __this, PlayableHandle playable, MethodInfo * method)); +DO_APP_FUNC(0x02D68D30, bool, PlayableGraph_IsValid_Injected, (PlayableGraph * _unity_self, MethodInfo * method)); +DO_APP_FUNC(0x02D68D80, bool, PlayableGraph_IsPlaying_Injected, (PlayableGraph * _unity_self, MethodInfo * method)); +DO_APP_FUNC(0x02D68DD0, void, PlayableGraph_Evaluate_Injected, (PlayableGraph * _unity_self, float deltaTime, MethodInfo * method)); +DO_APP_FUNC(0x02D68E30, IExposedPropertyTable *, PlayableGraph_GetResolver_Injected, (PlayableGraph * _unity_self, MethodInfo * method)); +DO_APP_FUNC(0x02D68E80, int32_t, PlayableGraph_GetPlayableCount_Injected, (PlayableGraph * _unity_self, MethodInfo * method)); +DO_APP_FUNC(0x02D68ED0, int32_t, PlayableGraph_GetRootPlayableCount_Injected, (PlayableGraph * _unity_self, MethodInfo * method)); +DO_APP_FUNC(0x02D69350, void, PlayableGraph_SynchronizeEvaluation_Injected, (PlayableGraph * _unity_self, PlayableGraph * playable, MethodInfo * method)); +DO_APP_FUNC(0x02D68F80, int32_t, PlayableGraph_GetOutputCount_Injected, (PlayableGraph * _unity_self, MethodInfo * method)); +DO_APP_FUNC(0x02D693B0, void, PlayableGraph_CreatePlayableHandle_Injected, (PlayableGraph * _unity_self, PlayableHandle * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D69040, bool, PlayableGraph_CreateScriptOutputInternal_Injected, (PlayableGraph * _unity_self, String * name, PlayableOutputHandle * handle, MethodInfo * method)); +DO_APP_FUNC(0x02D69410, void, PlayableGraph_GetRootPlayableInternal_Injected, (PlayableGraph * _unity_self, int32_t index, PlayableHandle * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D69130, bool, PlayableGraph_IsMatchFrameRateEnabled_Injected, (PlayableGraph * _unity_self, MethodInfo * method)); +DO_APP_FUNC(0x02D69480, void, PlayableGraph_GetFrameRate_Injected, (PlayableGraph * _unity_self, FrameRate * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D691E0, bool, PlayableGraph_GetOutputByTypeInternal_Injected, (PlayableGraph * _unity_self, Type * outputType, int32_t index, PlayableOutputHandle * handle, MethodInfo * method)); +DO_APP_FUNC(0x02D694E0, bool, PlayableGraph_ConnectInternal_Injected, (PlayableGraph * _unity_self, PlayableHandle * source, int32_t sourceOutputPort, PlayableHandle * destination, int32_t destinationInputPort, MethodInfo * method)); +DO_APP_FUNC(0x02D69570, void, PlayableGraph_DestroyPlayableInternal_Injected, (PlayableGraph * _unity_self, PlayableHandle * playable, MethodInfo * method)); DO_APP_FUNC(0x02D695D0, PlayableHandle, PlayableHandle_get_Null, (MethodInfo * method)); -DO_APP_FUNC(0x02D69640, Playable, PlayableHandle_GetInput, (PlayableHandle__Boxed * __this, int32_t inputPort, MethodInfo * method)); -DO_APP_FUNC(0x02D69740, bool, PlayableHandle_SetInputWeight, (PlayableHandle__Boxed * __this, int32_t inputIndex, float weight, MethodInfo * method)); -DO_APP_FUNC(0x02D69820, float, PlayableHandle_GetInputWeight, (PlayableHandle__Boxed * __this, int32_t inputIndex, MethodInfo * method)); -DO_APP_FUNC(0x02D698F0, void, PlayableHandle_Destroy, (PlayableHandle__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D69640, Playable, PlayableHandle_GetInput, (PlayableHandle * __this, int32_t inputPort, MethodInfo * method)); +DO_APP_FUNC(0x02D69740, bool, PlayableHandle_SetInputWeight, (PlayableHandle * __this, int32_t inputIndex, float weight, MethodInfo * method)); +DO_APP_FUNC(0x02D69820, float, PlayableHandle_GetInputWeight, (PlayableHandle * __this, int32_t inputIndex, MethodInfo * method)); +DO_APP_FUNC(0x02D698F0, void, PlayableHandle_Destroy, (PlayableHandle * __this, MethodInfo * method)); DO_APP_FUNC(0x02D69A80, bool, PlayableHandle_op_Equality, (PlayableHandle x, PlayableHandle y, MethodInfo * method)); -DO_APP_FUNC(0x02D69B00, bool, PlayableHandle_Equals, (PlayableHandle__Boxed * __this, Object * p, MethodInfo * method)); -DO_APP_FUNC(0x02D69C20, bool, PlayableHandle_Equals_1, (PlayableHandle__Boxed * __this, PlayableHandle other, MethodInfo * method)); -DO_APP_FUNC(0x02D69CB0, int32_t, PlayableHandle_GetHashCode, (PlayableHandle__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D69B00, bool, PlayableHandle_Equals, (PlayableHandle * __this, Object * p, MethodInfo * method)); +DO_APP_FUNC(0x02D69C20, bool, PlayableHandle_Equals_1, (PlayableHandle * __this, PlayableHandle other, MethodInfo * method)); +DO_APP_FUNC(0x02D69CB0, int32_t, PlayableHandle_GetHashCode, (PlayableHandle * __this, MethodInfo * method)); DO_APP_FUNC(0x0180A2C0, bool, PlayableHandle_CompareVersion, (PlayableHandle lhs, PlayableHandle rhs, MethodInfo * method)); -DO_APP_FUNC(0x02D69CC0, bool, PlayableHandle_CheckInputBounds, (PlayableHandle__Boxed * __this, int32_t inputIndex, MethodInfo * method)); -DO_APP_FUNC(0x02D69D20, bool, PlayableHandle_CheckInputBounds_1, (PlayableHandle__Boxed * __this, int32_t inputIndex, bool acceptAny, MethodInfo * method)); -DO_APP_FUNC(0x02D69FA0, bool, PlayableHandle_IsValid, (PlayableHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D6A030, Type *, PlayableHandle_GetPlayableType, (PlayableHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D6A0C0, void, PlayableHandle_SetScriptInstance, (PlayableHandle__Boxed * __this, Object * scriptInstance, MethodInfo * method)); -DO_APP_FUNC(0x02D6A160, PlayState__Enum, PlayableHandle_GetPlayState, (PlayableHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D6A1F0, void, PlayableHandle_Play, (PlayableHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D6A280, void, PlayableHandle_Pause, (PlayableHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D6A310, void, PlayableHandle_SetSpeed, (PlayableHandle__Boxed * __this, double value, MethodInfo * method)); -DO_APP_FUNC(0x02D6A3B0, double, PlayableHandle_GetTime, (PlayableHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D6A440, void, PlayableHandle_SetTime, (PlayableHandle__Boxed * __this, double value, MethodInfo * method)); -DO_APP_FUNC(0x02D6A4E0, bool, PlayableHandle_IsDone, (PlayableHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D6A570, void, PlayableHandle_SetDone, (PlayableHandle__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02D6A610, double, PlayableHandle_GetDuration, (PlayableHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D6A6A0, void, PlayableHandle_SetDuration, (PlayableHandle__Boxed * __this, double value, MethodInfo * method)); -DO_APP_FUNC(0x02D6A740, void, PlayableHandle_SetPropagateSetTime, (PlayableHandle__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02D6A7E0, PlayableGraph, PlayableHandle_GetGraph, (PlayableHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D6A880, int32_t, PlayableHandle_GetInputCount, (PlayableHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D6A910, void, PlayableHandle_SetInputCount, (PlayableHandle__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x02D6A9B0, void, PlayableHandle_SetInputWeight_1, (PlayableHandle__Boxed * __this, PlayableHandle input, float weight, MethodInfo * method)); -DO_APP_FUNC(0x02D6AA60, double, PlayableHandle_GetPreviousTime, (PlayableHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D6AAF0, void, PlayableHandle_SetTraversalMode, (PlayableHandle__Boxed * __this, PlayableTraversalMode__Enum mode, MethodInfo * method)); -DO_APP_FUNC(0x02D6AB90, DirectorWrapMode__Enum, PlayableHandle_GetTimeWrapMode, (PlayableHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D6AC20, void, PlayableHandle_SetTimeWrapMode, (PlayableHandle__Boxed * __this, DirectorWrapMode__Enum mode, MethodInfo * method)); -DO_APP_FUNC(0x02D6ACC0, Object *, PlayableHandle_GetScriptInstance, (PlayableHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D6AD50, PlayableHandle, PlayableHandle_GetInputHandle, (PlayableHandle__Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x02D6AE00, void, PlayableHandle_SetInputWeightFromIndex, (PlayableHandle__Boxed * __this, int32_t index, float weight, MethodInfo * method)); -DO_APP_FUNC(0x02D6AEB0, float, PlayableHandle_GetInputWeightFromIndex, (PlayableHandle__Boxed * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x02D69CC0, bool, PlayableHandle_CheckInputBounds, (PlayableHandle * __this, int32_t inputIndex, MethodInfo * method)); +DO_APP_FUNC(0x02D69D20, bool, PlayableHandle_CheckInputBounds_1, (PlayableHandle * __this, int32_t inputIndex, bool acceptAny, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10DC0, PlayableHandle_CheckInputBounds_1__MethodInfo); +DO_APP_FUNC(0x02D69FA0, bool, PlayableHandle_IsValid, (PlayableHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D6A030, Type *, PlayableHandle_GetPlayableType, (PlayableHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D6A0C0, void, PlayableHandle_SetScriptInstance, (PlayableHandle * __this, Object * scriptInstance, MethodInfo * method)); +DO_APP_FUNC(0x02D6A160, PlayState__Enum, PlayableHandle_GetPlayState, (PlayableHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D6A1F0, void, PlayableHandle_Play, (PlayableHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D6A280, void, PlayableHandle_Pause, (PlayableHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D6A310, void, PlayableHandle_SetSpeed, (PlayableHandle * __this, double value, MethodInfo * method)); +DO_APP_FUNC(0x02D6A3B0, double, PlayableHandle_GetTime, (PlayableHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D6A440, void, PlayableHandle_SetTime, (PlayableHandle * __this, double value, MethodInfo * method)); +DO_APP_FUNC(0x02D6A4E0, bool, PlayableHandle_IsDone, (PlayableHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D6A570, void, PlayableHandle_SetDone, (PlayableHandle * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02D6A610, double, PlayableHandle_GetDuration, (PlayableHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D6A6A0, void, PlayableHandle_SetDuration, (PlayableHandle * __this, double value, MethodInfo * method)); +DO_APP_FUNC(0x02D6A740, void, PlayableHandle_SetPropagateSetTime, (PlayableHandle * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02D6A7E0, PlayableGraph, PlayableHandle_GetGraph, (PlayableHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D6A880, int32_t, PlayableHandle_GetInputCount, (PlayableHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D6A910, void, PlayableHandle_SetInputCount, (PlayableHandle * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x02D6A9B0, void, PlayableHandle_SetInputWeight_1, (PlayableHandle * __this, PlayableHandle input, float weight, MethodInfo * method)); +DO_APP_FUNC(0x02D6AA60, double, PlayableHandle_GetPreviousTime, (PlayableHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D6AAF0, void, PlayableHandle_SetTraversalMode, (PlayableHandle * __this, PlayableTraversalMode__Enum mode, MethodInfo * method)); +DO_APP_FUNC(0x02D6AB90, DirectorWrapMode__Enum, PlayableHandle_GetTimeWrapMode, (PlayableHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D6AC20, void, PlayableHandle_SetTimeWrapMode, (PlayableHandle * __this, DirectorWrapMode__Enum mode, MethodInfo * method)); +DO_APP_FUNC(0x02D6ACC0, Object *, PlayableHandle_GetScriptInstance, (PlayableHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D6AD50, PlayableHandle, PlayableHandle_GetInputHandle, (PlayableHandle * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x02D6AE00, void, PlayableHandle_SetInputWeightFromIndex, (PlayableHandle * __this, int32_t index, float weight, MethodInfo * method)); +DO_APP_FUNC(0x02D6AEB0, float, PlayableHandle_GetInputWeightFromIndex, (PlayableHandle * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x02D6AF50, void, PlayableHandle__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02D6AF90, bool, PlayableHandle_IsValid_Injected, (PlayableHandle _unity_self, MethodInfo * method)); -DO_APP_FUNC(0x02D6AFE0, Type *, PlayableHandle_GetPlayableType_Injected, (PlayableHandle _unity_self, MethodInfo * method)); -DO_APP_FUNC(0x02D6B030, void, PlayableHandle_SetScriptInstance_Injected, (PlayableHandle _unity_self, Object * scriptInstance, MethodInfo * method)); -DO_APP_FUNC(0x02D6B090, PlayState__Enum, PlayableHandle_GetPlayState_Injected, (PlayableHandle _unity_self, MethodInfo * method)); -DO_APP_FUNC(0x02D6B0E0, void, PlayableHandle_Play_Injected, (PlayableHandle _unity_self, MethodInfo * method)); -DO_APP_FUNC(0x02D6B130, void, PlayableHandle_Pause_Injected, (PlayableHandle _unity_self, MethodInfo * method)); -DO_APP_FUNC(0x02D6B180, void, PlayableHandle_SetSpeed_Injected, (PlayableHandle _unity_self, double value, MethodInfo * method)); -DO_APP_FUNC(0x02D6B1E0, double, PlayableHandle_GetTime_Injected, (PlayableHandle _unity_self, MethodInfo * method)); -DO_APP_FUNC(0x02D6B230, void, PlayableHandle_SetTime_Injected, (PlayableHandle _unity_self, double value, MethodInfo * method)); -DO_APP_FUNC(0x02D6B290, bool, PlayableHandle_IsDone_Injected, (PlayableHandle _unity_self, MethodInfo * method)); -DO_APP_FUNC(0x02D6B2E0, void, PlayableHandle_SetDone_Injected, (PlayableHandle _unity_self, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02D6B340, double, PlayableHandle_GetDuration_Injected, (PlayableHandle _unity_self, MethodInfo * method)); -DO_APP_FUNC(0x02D6B390, void, PlayableHandle_SetDuration_Injected, (PlayableHandle _unity_self, double value, MethodInfo * method)); -DO_APP_FUNC(0x02D6B3F0, void, PlayableHandle_SetPropagateSetTime_Injected, (PlayableHandle _unity_self, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02D6B450, void, PlayableHandle_GetGraph_Injected, (PlayableHandle _unity_self, PlayableGraph ret, MethodInfo * method)); -DO_APP_FUNC(0x02D6B4B0, int32_t, PlayableHandle_GetInputCount_Injected, (PlayableHandle _unity_self, MethodInfo * method)); -DO_APP_FUNC(0x02D6B500, void, PlayableHandle_SetInputCount_Injected, (PlayableHandle _unity_self, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x02D6B560, void, PlayableHandle_SetInputWeight_Injected, (PlayableHandle _unity_self, PlayableHandle input, float weight, MethodInfo * method)); -DO_APP_FUNC(0x02D6B5D0, double, PlayableHandle_GetPreviousTime_Injected, (PlayableHandle _unity_self, MethodInfo * method)); -DO_APP_FUNC(0x02D6B620, void, PlayableHandle_SetTraversalMode_Injected, (PlayableHandle _unity_self, PlayableTraversalMode__Enum mode, MethodInfo * method)); -DO_APP_FUNC(0x02D6B680, DirectorWrapMode__Enum, PlayableHandle_GetTimeWrapMode_Injected, (PlayableHandle _unity_self, MethodInfo * method)); -DO_APP_FUNC(0x02D6B6D0, void, PlayableHandle_SetTimeWrapMode_Injected, (PlayableHandle _unity_self, DirectorWrapMode__Enum mode, MethodInfo * method)); -DO_APP_FUNC(0x02D6B730, Object *, PlayableHandle_GetScriptInstance_Injected, (PlayableHandle _unity_self, MethodInfo * method)); -DO_APP_FUNC(0x02D6B780, void, PlayableHandle_GetInputHandle_Injected, (PlayableHandle _unity_self, int32_t index, PlayableHandle ret, MethodInfo * method)); -DO_APP_FUNC(0x02D6B7F0, void, PlayableHandle_SetInputWeightFromIndex_Injected, (PlayableHandle _unity_self, int32_t index, float weight, MethodInfo * method)); -DO_APP_FUNC(0x02D6B860, float, PlayableHandle_GetInputWeightFromIndex_Injected, (PlayableHandle _unity_self, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x02D6AF90, bool, PlayableHandle_IsValid_Injected, (PlayableHandle * _unity_self, MethodInfo * method)); +DO_APP_FUNC(0x02D6AFE0, Type *, PlayableHandle_GetPlayableType_Injected, (PlayableHandle * _unity_self, MethodInfo * method)); +DO_APP_FUNC(0x02D6B030, void, PlayableHandle_SetScriptInstance_Injected, (PlayableHandle * _unity_self, Object * scriptInstance, MethodInfo * method)); +DO_APP_FUNC(0x02D6B090, PlayState__Enum, PlayableHandle_GetPlayState_Injected, (PlayableHandle * _unity_self, MethodInfo * method)); +DO_APP_FUNC(0x02D6B0E0, void, PlayableHandle_Play_Injected, (PlayableHandle * _unity_self, MethodInfo * method)); +DO_APP_FUNC(0x02D6B130, void, PlayableHandle_Pause_Injected, (PlayableHandle * _unity_self, MethodInfo * method)); +DO_APP_FUNC(0x02D6B180, void, PlayableHandle_SetSpeed_Injected, (PlayableHandle * _unity_self, double value, MethodInfo * method)); +DO_APP_FUNC(0x02D6B1E0, double, PlayableHandle_GetTime_Injected, (PlayableHandle * _unity_self, MethodInfo * method)); +DO_APP_FUNC(0x02D6B230, void, PlayableHandle_SetTime_Injected, (PlayableHandle * _unity_self, double value, MethodInfo * method)); +DO_APP_FUNC(0x02D6B290, bool, PlayableHandle_IsDone_Injected, (PlayableHandle * _unity_self, MethodInfo * method)); +DO_APP_FUNC(0x02D6B2E0, void, PlayableHandle_SetDone_Injected, (PlayableHandle * _unity_self, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02D6B340, double, PlayableHandle_GetDuration_Injected, (PlayableHandle * _unity_self, MethodInfo * method)); +DO_APP_FUNC(0x02D6B390, void, PlayableHandle_SetDuration_Injected, (PlayableHandle * _unity_self, double value, MethodInfo * method)); +DO_APP_FUNC(0x02D6B3F0, void, PlayableHandle_SetPropagateSetTime_Injected, (PlayableHandle * _unity_self, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02D6B450, void, PlayableHandle_GetGraph_Injected, (PlayableHandle * _unity_self, PlayableGraph * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D6B4B0, int32_t, PlayableHandle_GetInputCount_Injected, (PlayableHandle * _unity_self, MethodInfo * method)); +DO_APP_FUNC(0x02D6B500, void, PlayableHandle_SetInputCount_Injected, (PlayableHandle * _unity_self, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x02D6B560, void, PlayableHandle_SetInputWeight_Injected, (PlayableHandle * _unity_self, PlayableHandle * input, float weight, MethodInfo * method)); +DO_APP_FUNC(0x02D6B5D0, double, PlayableHandle_GetPreviousTime_Injected, (PlayableHandle * _unity_self, MethodInfo * method)); +DO_APP_FUNC(0x02D6B620, void, PlayableHandle_SetTraversalMode_Injected, (PlayableHandle * _unity_self, PlayableTraversalMode__Enum mode, MethodInfo * method)); +DO_APP_FUNC(0x02D6B680, DirectorWrapMode__Enum, PlayableHandle_GetTimeWrapMode_Injected, (PlayableHandle * _unity_self, MethodInfo * method)); +DO_APP_FUNC(0x02D6B6D0, void, PlayableHandle_SetTimeWrapMode_Injected, (PlayableHandle * _unity_self, DirectorWrapMode__Enum mode, MethodInfo * method)); +DO_APP_FUNC(0x02D6B730, Object *, PlayableHandle_GetScriptInstance_Injected, (PlayableHandle * _unity_self, MethodInfo * method)); +DO_APP_FUNC(0x02D6B780, void, PlayableHandle_GetInputHandle_Injected, (PlayableHandle * _unity_self, int32_t index, PlayableHandle * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D6B7F0, void, PlayableHandle_SetInputWeightFromIndex_Injected, (PlayableHandle * _unity_self, int32_t index, float weight, MethodInfo * method)); +DO_APP_FUNC(0x02D6B860, float, PlayableHandle_GetInputWeightFromIndex_Injected, (PlayableHandle * _unity_self, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x02D6B8C0, PlayableOutput, PlayableOutput_get_Null, (MethodInfo * method)); -DO_APP_FUNC(0x0119B5D0, void, PlayableOutput__ctor, (PlayableOutput__Boxed * __this, PlayableOutputHandle handle, MethodInfo * method)); -DO_APP_FUNC(0x0104C5D0, PlayableOutputHandle, PlayableOutput_GetHandle, (PlayableOutput__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D6B930, bool, PlayableOutput_Equals, (PlayableOutput__Boxed * __this, PlayableOutput other, MethodInfo * method)); +DO_APP_FUNC(0x0119B5D0, void, PlayableOutput__ctor, (PlayableOutput * __this, PlayableOutputHandle handle, MethodInfo * method)); +DO_APP_FUNC(0x0104C5D0, PlayableOutputHandle, PlayableOutput_GetHandle, (PlayableOutput * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D6B930, bool, PlayableOutput_Equals, (PlayableOutput * __this, PlayableOutput other, MethodInfo * method)); DO_APP_FUNC(0x02D6BA20, void, PlayableOutput__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02D6BAD0, PlayableOutputHandle, PlayableOutputHandle_get_Null, (MethodInfo * method)); -DO_APP_FUNC(0x02D69CB0, int32_t, PlayableOutputHandle_GetHashCode, (PlayableOutputHandle__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D69CB0, int32_t, PlayableOutputHandle_GetHashCode, (PlayableOutputHandle * __this, MethodInfo * method)); DO_APP_FUNC(0x02D6BB40, bool, PlayableOutputHandle_op_Equality, (PlayableOutputHandle lhs, PlayableOutputHandle rhs, MethodInfo * method)); -DO_APP_FUNC(0x02D6BBC0, bool, PlayableOutputHandle_Equals, (PlayableOutputHandle__Boxed * __this, Object * p, MethodInfo * method)); -DO_APP_FUNC(0x02D6BCE0, bool, PlayableOutputHandle_Equals_1, (PlayableOutputHandle__Boxed * __this, PlayableOutputHandle other, MethodInfo * method)); +DO_APP_FUNC(0x02D6BBC0, bool, PlayableOutputHandle_Equals, (PlayableOutputHandle * __this, Object * p, MethodInfo * method)); +DO_APP_FUNC(0x02D6BCE0, bool, PlayableOutputHandle_Equals_1, (PlayableOutputHandle * __this, PlayableOutputHandle other, MethodInfo * method)); DO_APP_FUNC(0x0180A2C0, bool, PlayableOutputHandle_CompareVersion, (PlayableOutputHandle lhs, PlayableOutputHandle rhs, MethodInfo * method)); -DO_APP_FUNC(0x02D6BD70, bool, PlayableOutputHandle_IsValid, (PlayableOutputHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D6BE00, Type *, PlayableOutputHandle_GetPlayableOutputType, (PlayableOutputHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D6BE90, void, PlayableOutputHandle_SetReferenceObject, (PlayableOutputHandle__Boxed * __this, Object_1 * target, MethodInfo * method)); -DO_APP_FUNC(0x02D6BF30, void, PlayableOutputHandle_SetUserData, (PlayableOutputHandle__Boxed * __this, Object_1 * target, MethodInfo * method)); -DO_APP_FUNC(0x02D6BFD0, PlayableHandle, PlayableOutputHandle_GetSourcePlayable, (PlayableOutputHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D6C070, void, PlayableOutputHandle_SetSourcePlayable, (PlayableOutputHandle__Boxed * __this, PlayableHandle target, int32_t port, MethodInfo * method)); -DO_APP_FUNC(0x02D6C120, int32_t, PlayableOutputHandle_GetSourceOutputPort, (PlayableOutputHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D6C1B0, void, PlayableOutputHandle_SetWeight, (PlayableOutputHandle__Boxed * __this, float weight, MethodInfo * method)); -DO_APP_FUNC(0x02D6C250, void, PlayableOutputHandle_PushNotification, (PlayableOutputHandle__Boxed * __this, PlayableHandle origin, INotification * notification, Object * context, MethodInfo * method)); -DO_APP_FUNC(0x02D6C310, void, PlayableOutputHandle_AddNotificationReceiver, (PlayableOutputHandle__Boxed * __this, INotificationReceiver * receiver, MethodInfo * method)); +DO_APP_FUNC(0x02D6BD70, bool, PlayableOutputHandle_IsValid, (PlayableOutputHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D6BE00, Type *, PlayableOutputHandle_GetPlayableOutputType, (PlayableOutputHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D6BE90, void, PlayableOutputHandle_SetReferenceObject, (PlayableOutputHandle * __this, Object_1 * target, MethodInfo * method)); +DO_APP_FUNC(0x02D6BF30, void, PlayableOutputHandle_SetUserData, (PlayableOutputHandle * __this, Object_1 * target, MethodInfo * method)); +DO_APP_FUNC(0x02D6BFD0, PlayableHandle, PlayableOutputHandle_GetSourcePlayable, (PlayableOutputHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D6C070, void, PlayableOutputHandle_SetSourcePlayable, (PlayableOutputHandle * __this, PlayableHandle target, int32_t port, MethodInfo * method)); +DO_APP_FUNC(0x02D6C120, int32_t, PlayableOutputHandle_GetSourceOutputPort, (PlayableOutputHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D6C1B0, void, PlayableOutputHandle_SetWeight, (PlayableOutputHandle * __this, float weight, MethodInfo * method)); +DO_APP_FUNC(0x02D6C250, void, PlayableOutputHandle_PushNotification, (PlayableOutputHandle * __this, PlayableHandle origin, INotification * notification, Object * context, MethodInfo * method)); +DO_APP_FUNC(0x02D6C310, void, PlayableOutputHandle_AddNotificationReceiver, (PlayableOutputHandle * __this, INotificationReceiver * receiver, MethodInfo * method)); DO_APP_FUNC(0x02D6C3B0, void, PlayableOutputHandle__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02D6C3F0, bool, PlayableOutputHandle_IsValid_Injected, (PlayableOutputHandle _unity_self, MethodInfo * method)); -DO_APP_FUNC(0x02D6C440, Type *, PlayableOutputHandle_GetPlayableOutputType_Injected, (PlayableOutputHandle _unity_self, MethodInfo * method)); -DO_APP_FUNC(0x02D6C490, void, PlayableOutputHandle_SetReferenceObject_Injected, (PlayableOutputHandle _unity_self, Object_1 * target, MethodInfo * method)); -DO_APP_FUNC(0x02D6C4F0, void, PlayableOutputHandle_SetUserData_Injected, (PlayableOutputHandle _unity_self, Object_1 * target, MethodInfo * method)); -DO_APP_FUNC(0x02D6C550, void, PlayableOutputHandle_GetSourcePlayable_Injected, (PlayableOutputHandle _unity_self, PlayableHandle ret, MethodInfo * method)); -DO_APP_FUNC(0x02D6C5B0, void, PlayableOutputHandle_SetSourcePlayable_Injected, (PlayableOutputHandle _unity_self, PlayableHandle target, int32_t port, MethodInfo * method)); -DO_APP_FUNC(0x02D6C620, int32_t, PlayableOutputHandle_GetSourceOutputPort_Injected, (PlayableOutputHandle _unity_self, MethodInfo * method)); -DO_APP_FUNC(0x02D6C670, void, PlayableOutputHandle_SetWeight_Injected, (PlayableOutputHandle _unity_self, float weight, MethodInfo * method)); -DO_APP_FUNC(0x02D6C6D0, void, PlayableOutputHandle_PushNotification_Injected, (PlayableOutputHandle _unity_self, PlayableHandle origin, INotification * notification, Object * context, MethodInfo * method)); -DO_APP_FUNC(0x02D6C750, void, PlayableOutputHandle_AddNotificationReceiver_Injected, (PlayableOutputHandle _unity_self, INotificationReceiver * receiver, MethodInfo * method)); +DO_APP_FUNC(0x02D6C3F0, bool, PlayableOutputHandle_IsValid_Injected, (PlayableOutputHandle * _unity_self, MethodInfo * method)); +DO_APP_FUNC(0x02D6C440, Type *, PlayableOutputHandle_GetPlayableOutputType_Injected, (PlayableOutputHandle * _unity_self, MethodInfo * method)); +DO_APP_FUNC(0x02D6C490, void, PlayableOutputHandle_SetReferenceObject_Injected, (PlayableOutputHandle * _unity_self, Object_1 * target, MethodInfo * method)); +DO_APP_FUNC(0x02D6C4F0, void, PlayableOutputHandle_SetUserData_Injected, (PlayableOutputHandle * _unity_self, Object_1 * target, MethodInfo * method)); +DO_APP_FUNC(0x02D6C550, void, PlayableOutputHandle_GetSourcePlayable_Injected, (PlayableOutputHandle * _unity_self, PlayableHandle * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D6C5B0, void, PlayableOutputHandle_SetSourcePlayable_Injected, (PlayableOutputHandle * _unity_self, PlayableHandle * target, int32_t port, MethodInfo * method)); +DO_APP_FUNC(0x02D6C620, int32_t, PlayableOutputHandle_GetSourceOutputPort_Injected, (PlayableOutputHandle * _unity_self, MethodInfo * method)); +DO_APP_FUNC(0x02D6C670, void, PlayableOutputHandle_SetWeight_Injected, (PlayableOutputHandle * _unity_self, float weight, MethodInfo * method)); +DO_APP_FUNC(0x02D6C6D0, void, PlayableOutputHandle_PushNotification_Injected, (PlayableOutputHandle * _unity_self, PlayableHandle * origin, INotification * notification, Object * context, MethodInfo * method)); +DO_APP_FUNC(0x02D6C750, void, PlayableOutputHandle_AddNotificationReceiver_Injected, (PlayableOutputHandle * _unity_self, INotificationReceiver * receiver, MethodInfo * method)); DO_APP_FUNC(0x02D6C7B0, PlayableBinding, ScriptPlayableBinding_Create, (String * name, Object_1 * key, Type * type, MethodInfo * method)); DO_APP_FUNC(0x02D6C8C0, PlayableOutput, ScriptPlayableBinding_CreateScriptOutput, (PlayableGraph graph, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10C98, ScriptPlayableBinding_CreateScriptOutput__MethodInfo); DO_APP_FUNC(0x02D6CA10, ScriptPlayableOutput, ScriptPlayableOutput_Create, (PlayableGraph graph, String * name, MethodInfo * method)); -DO_APP_FUNC(0x02D6CB60, void, ScriptPlayableOutput__ctor, (ScriptPlayableOutput__Boxed * __this, PlayableOutputHandle handle, MethodInfo * method)); +DO_APP_FUNC(0x02D6CB60, void, ScriptPlayableOutput__ctor, (ScriptPlayableOutput * __this, PlayableOutputHandle handle, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10CF0, ScriptPlayableOutput__ctor__MethodInfo); DO_APP_FUNC(0x02D6CC50, ScriptPlayableOutput, ScriptPlayableOutput_get_Null, (MethodInfo * method)); -DO_APP_FUNC(0x0104C5D0, PlayableOutputHandle, ScriptPlayableOutput_GetHandle, (ScriptPlayableOutput__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0104C5D0, PlayableOutputHandle, ScriptPlayableOutput_GetHandle, (ScriptPlayableOutput * __this, MethodInfo * method)); DO_APP_FUNC(0x02CD2C80, PlayableOutput, ScriptPlayableOutput_op_Implicit, (ScriptPlayableOutput output, MethodInfo * method)); -DO_APP_FUNC(0x02CE2130, float, LinearColor_get_red, (LinearColor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D6CD10, void, LinearColor_set_red, (LinearColor__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02CCAAD0, float, LinearColor_get_green, (LinearColor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D6CDE0, void, LinearColor_set_green, (LinearColor__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02CE2140, float, LinearColor_get_blue, (LinearColor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D6CEB0, void, LinearColor_set_blue, (LinearColor__Boxed * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02CE2130, float, LinearColor_get_red, (LinearColor * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D6CD10, void, LinearColor_set_red, (LinearColor * __this, float value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10CC0, LinearColor_set_red__MethodInfo); +DO_APP_FUNC(0x02CCAAD0, float, LinearColor_get_green, (LinearColor * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D6CDE0, void, LinearColor_set_green, (LinearColor * __this, float value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10D40, LinearColor_set_green__MethodInfo); +DO_APP_FUNC(0x02CE2140, float, LinearColor_get_blue, (LinearColor * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D6CEB0, void, LinearColor_set_blue, (LinearColor * __this, float value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10D28, LinearColor_set_blue__MethodInfo); DO_APP_FUNC(0x02D6CF80, LinearColor, LinearColor_Convert, (Color color, float intensity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10D00, LinearColor_Convert__MethodInfo); DO_APP_FUNC(0x02D6D340, LinearColor, LinearColor_Black, (MethodInfo * method)); -DO_APP_FUNC(0x02D6D370, void, LightDataGI_Init, (LightDataGI__Boxed * __this, DirectionalLight light, Cookie_1 cookie, MethodInfo * method)); -DO_APP_FUNC(0x02D6D3F0, void, LightDataGI_Init_1, (LightDataGI__Boxed * __this, PointLight light, Cookie_1 cookie, MethodInfo * method)); -DO_APP_FUNC(0x02D6D460, void, LightDataGI_Init_2, (LightDataGI__Boxed * __this, SpotLight light, Cookie_1 cookie, MethodInfo * method)); -DO_APP_FUNC(0x02D6D4E0, void, LightDataGI_Init_3, (LightDataGI__Boxed * __this, RectangleLight light, Cookie_1 cookie, MethodInfo * method)); -DO_APP_FUNC(0x02D6D550, void, LightDataGI_Init_4, (LightDataGI__Boxed * __this, DiscLight light, Cookie_1 cookie, MethodInfo * method)); -DO_APP_FUNC(0x02D6D5C0, void, LightDataGI_InitNoBake, (LightDataGI__Boxed * __this, int32_t lightInstanceID, MethodInfo * method)); +DO_APP_FUNC(0x02D6D370, void, LightDataGI_Init, (LightDataGI * __this, DirectionalLight * light, Cookie_1 * cookie, MethodInfo * method)); +DO_APP_FUNC(0x02D6D3F0, void, LightDataGI_Init_1, (LightDataGI * __this, PointLight * light, Cookie_1 * cookie, MethodInfo * method)); +DO_APP_FUNC(0x02D6D460, void, LightDataGI_Init_2, (LightDataGI * __this, SpotLight * light, Cookie_1 * cookie, MethodInfo * method)); +DO_APP_FUNC(0x02D6D4E0, void, LightDataGI_Init_3, (LightDataGI * __this, RectangleLight * light, Cookie_1 * cookie, MethodInfo * method)); +DO_APP_FUNC(0x02D6D550, void, LightDataGI_Init_4, (LightDataGI * __this, DiscLight * light, Cookie_1 * cookie, MethodInfo * method)); +DO_APP_FUNC(0x02D6D5C0, void, LightDataGI_InitNoBake, (LightDataGI * __this, int32_t lightInstanceID, MethodInfo * method)); DO_APP_FUNC(0x02D6D5D0, LightMode__Enum, LightmapperUtils_Extract, (LightmapBakeType__Enum baketype, MethodInfo * method)); DO_APP_FUNC(0x02D6D5F0, LinearColor, LightmapperUtils_ExtractIndirect, (Light * l, MethodInfo * method)); DO_APP_FUNC(0x02D6D730, float, LightmapperUtils_ExtractInnerCone, (Light * l, MethodInfo * method)); DO_APP_FUNC(0x02D6D7C0, Color, LightmapperUtils_ExtractColorTemperature, (Light * l, MethodInfo * method)); -DO_APP_FUNC(0x02D6D940, void, LightmapperUtils_ApplyColorTemperature, (Color cct, LinearColor lightColor, MethodInfo * method)); -DO_APP_FUNC(0x02D6D9A0, void, LightmapperUtils_Extract_1, (Light * l, DirectionalLight dir, MethodInfo * method)); -DO_APP_FUNC(0x02D6DDC0, void, LightmapperUtils_Extract_2, (Light * l, PointLight point, MethodInfo * method)); -DO_APP_FUNC(0x02D6E230, void, LightmapperUtils_Extract_3, (Light * l, SpotLight spot, MethodInfo * method)); -DO_APP_FUNC(0x02D6E760, void, LightmapperUtils_Extract_4, (Light * l, RectangleLight rect, MethodInfo * method)); -DO_APP_FUNC(0x02D6DDC0, void, LightmapperUtils_Extract_5, (Light * l, DiscLight disc, MethodInfo * method)); -DO_APP_FUNC(0x02D6EBD0, void, LightmapperUtils_Extract_6, (Light * l, Cookie_1 cookie, MethodInfo * method)); +DO_APP_FUNC(0x02D6D940, void, LightmapperUtils_ApplyColorTemperature, (Color cct, LinearColor * lightColor, MethodInfo * method)); +DO_APP_FUNC(0x02D6D9A0, void, LightmapperUtils_Extract_1, (Light * l, DirectionalLight * dir, MethodInfo * method)); +DO_APP_FUNC(0x02D6DDC0, void, LightmapperUtils_Extract_2, (Light * l, PointLight * point, MethodInfo * method)); +DO_APP_FUNC(0x02D6E230, void, LightmapperUtils_Extract_3, (Light * l, SpotLight * spot, MethodInfo * method)); +DO_APP_FUNC(0x02D6E760, void, LightmapperUtils_Extract_4, (Light * l, RectangleLight * rect, MethodInfo * method)); +DO_APP_FUNC(0x02D6DDC0, void, LightmapperUtils_Extract_5, (Light * l, DiscLight * disc, MethodInfo * method)); +DO_APP_FUNC(0x02D6EBD0, void, LightmapperUtils_Extract_6, (Light * l, Cookie_1 * cookie, MethodInfo * method)); DO_APP_FUNC(0x02D6EED0, void, Lightmapping_SetDelegate, (Lightmapping_RequestLightsDelegate * del, MethodInfo * method)); DO_APP_FUNC(0x02D6EFB0, Lightmapping_RequestLightsDelegate *, Lightmapping_GetDelegate, (MethodInfo * method)); DO_APP_FUNC(0x02D6F010, void, Lightmapping_ResetDelegate, (MethodInfo * method)); @@ -76023,13 +86762,14 @@ DO_APP_FUNC(0x01448B00, void, Lightmapping_RequestLightsDelegate_Invoke, (Lightm DO_APP_FUNC(0x02D6F570, void, Lightmapping_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Lightmapping_c__ctor, (Lightmapping_c * __this, MethodInfo * method)); DO_APP_FUNC(0x02D6F620, void, Lightmapping_c___cctor_b__7_0, (Lightmapping_c * __this, Light__Array * requests, NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI_ lightsOutput, MethodInfo * method)); -DO_APP_FUNC(0x0104C5D0, PlayableHandle, CameraPlayable_GetHandle, (CameraPlayable__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D6FBF0, bool, CameraPlayable_Equals, (CameraPlayable__Boxed * __this, CameraPlayable other, MethodInfo * method)); -DO_APP_FUNC(0x0104C5D0, PlayableHandle, MaterialEffectPlayable_GetHandle, (MaterialEffectPlayable__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D6FCB0, bool, MaterialEffectPlayable_Equals, (MaterialEffectPlayable__Boxed * __this, MaterialEffectPlayable other, MethodInfo * method)); -DO_APP_FUNC(0x0104C5D0, PlayableHandle, TextureMixerPlayable_GetHandle, (TextureMixerPlayable__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D6FD70, bool, TextureMixerPlayable_Equals, (TextureMixerPlayable__Boxed * __this, TextureMixerPlayable other, MethodInfo * method)); -DO_APP_FUNC(0x0104C5D0, PlayableOutputHandle, TexturePlayableOutput_GetHandle, (TexturePlayableOutput__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12568, Lightmapping_c___cctor_b__7_0__MethodInfo); +DO_APP_FUNC(0x0104C5D0, PlayableHandle, CameraPlayable_GetHandle, (CameraPlayable * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D6FBF0, bool, CameraPlayable_Equals, (CameraPlayable * __this, CameraPlayable other, MethodInfo * method)); +DO_APP_FUNC(0x0104C5D0, PlayableHandle, MaterialEffectPlayable_GetHandle, (MaterialEffectPlayable * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D6FCB0, bool, MaterialEffectPlayable_Equals, (MaterialEffectPlayable * __this, MaterialEffectPlayable other, MethodInfo * method)); +DO_APP_FUNC(0x0104C5D0, PlayableHandle, TextureMixerPlayable_GetHandle, (TextureMixerPlayable * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D6FD70, bool, TextureMixerPlayable_Equals, (TextureMixerPlayable * __this, TextureMixerPlayable other, MethodInfo * method)); +DO_APP_FUNC(0x0104C5D0, PlayableOutputHandle, TexturePlayableOutput_GetHandle, (TexturePlayableOutput * __this, MethodInfo * method)); DO_APP_FUNC(0x02D6FE30, bool, BuiltinRuntimeReflectionSystem_TickRealtimeProbes, (BuiltinRuntimeReflectionSystem * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BuiltinRuntimeReflectionSystem_Dispose, (BuiltinRuntimeReflectionSystem * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BuiltinRuntimeReflectionSystem_Dispose_1, (BuiltinRuntimeReflectionSystem * __this, bool disposing, MethodInfo * method)); @@ -76042,7 +86782,7 @@ DO_APP_FUNC(0x02D700A0, void, ScriptableRuntimeReflectionSystemSettings_Scriptin DO_APP_FUNC(0x02D700F0, void, ScriptableRuntimeReflectionSystemSettings__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, IScriptableRuntimeReflectionSystem *, ScriptableRuntimeReflectionSystemWrapper_get_implementation, (ScriptableRuntimeReflectionSystemWrapper * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, ScriptableRuntimeReflectionSystemWrapper_set_implementation, (ScriptableRuntimeReflectionSystemWrapper * __this, IScriptableRuntimeReflectionSystem * value, MethodInfo * method)); -DO_APP_FUNC(0x02D701B0, void, ScriptableRuntimeReflectionSystemWrapper_Internal_ScriptableRuntimeReflectionSystemWrapper_TickRealtimeProbes, (ScriptableRuntimeReflectionSystemWrapper * __this, bool result, MethodInfo * method)); +DO_APP_FUNC(0x02D701B0, void, ScriptableRuntimeReflectionSystemWrapper_Internal_ScriptableRuntimeReflectionSystemWrapper_TickRealtimeProbes, (ScriptableRuntimeReflectionSystemWrapper * __this, bool * result, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ScriptableRuntimeReflectionSystemWrapper__ctor, (ScriptableRuntimeReflectionSystemWrapper * __this, MethodInfo * method)); DO_APP_FUNC(0x02D70220, GraphicsFormat__Enum, GraphicsFormatUtility_GetFormat, (Texture * texture, MethodInfo * method)); DO_APP_FUNC(0x02D70270, GraphicsFormat__Enum, GraphicsFormatUtility_GetGraphicsFormat, (TextureFormat__Enum format, bool isSRGB, MethodInfo * method)); @@ -76056,6 +86796,7 @@ DO_APP_FUNC(0x02D70610, GraphicsFormat__Enum, GraphicsFormatUtility_GetDepthSten DO_APP_FUNC(0x02D70660, GraphicsFormat__Enum, GraphicsFormatUtility_GetDepthStencilFormat, (int32_t minimumDepthBits, MethodInfo * method)); DO_APP_FUNC(0x02D706F0, int32_t, GraphicsFormatUtility_GetDepthBits, (GraphicsFormat__Enum format, MethodInfo * method)); DO_APP_FUNC(0x02D70740, GraphicsFormat__Enum, GraphicsFormatUtility_GetDepthStencilFormat_1, (int32_t minimumDepthBits, int32_t minimumStencilBits, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12540, GraphicsFormatUtility_GetDepthStencilFormat_1__MethodInfo); DO_APP_FUNC(0x02D70A30, bool, GraphicsFormatUtility_IsSRGBFormat, (GraphicsFormat__Enum format, MethodInfo * method)); DO_APP_FUNC(0x02D70A80, GraphicsFormat__Enum, GraphicsFormatUtility_GetSRGBFormat, (GraphicsFormat__Enum format, MethodInfo * method)); DO_APP_FUNC(0x02D70AD0, GraphicsFormat__Enum, GraphicsFormatUtility_GetLinearFormat, (GraphicsFormat__Enum format, MethodInfo * method)); @@ -76077,6 +86818,7 @@ DO_APP_FUNC(0x02D70FA0, FormatSwizzle__Enum, GraphicsFormatUtility_GetSwizzleA, DO_APP_FUNC(0x02D70FF0, uint32_t, GraphicsFormatUtility_GetBlockSize, (GraphicsFormat__Enum format, MethodInfo * method)); DO_APP_FUNC(0x02D71040, void, GraphicsFormatUtility__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02D71230, void, Assert_Fail, (String * message, String * userMessage, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12510, Assert_Fail__MethodInfo); DO_APP_FUNC(0x02D71370, void, Assert_IsTrue, (bool condition, MethodInfo * method)); DO_APP_FUNC(0x02D71410, void, Assert_IsTrue_1, (bool condition, String * message, MethodInfo * method)); DO_APP_FUNC(0x02D71480, void, Assert_IsFalse, (bool condition, String * message, MethodInfo * method)); @@ -76124,7 +86866,9 @@ DO_APP_FUNC(0x00937F20, void, AstarPath_LogPathResults, (AstarPath * __this, Pat DO_APP_FUNC(0x00938060, void, AstarPath_Update, (AstarPath * __this, MethodInfo * method)); DO_APP_FUNC(0x00938110, void, AstarPath_PerformBlockingActions, (AstarPath * __this, bool force, MethodInfo * method)); DO_APP_FUNC(0x009381B0, void, AstarPath_QueueWorkItemFloodFill, (AstarPath * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFBBD8, AstarPath_QueueWorkItemFloodFill__MethodInfo); DO_APP_FUNC(0x00938210, void, AstarPath_EnsureValidFloodFill, (AstarPath * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFBBB8, AstarPath_EnsureValidFloodFill__MethodInfo); DO_APP_FUNC(0x00938270, void, AstarPath_AddWorkItem, (AstarPath * __this, Action * callback, MethodInfo * method)); DO_APP_FUNC(0x009382C0, void, AstarPath_AddWorkItem_1, (AstarPath * __this, Action_1_Pathfinding_IWorkItemContext_ * callback, MethodInfo * method)); DO_APP_FUNC(0x00938310, void, AstarPath_AddWorkItem_2, (AstarPath * __this, AstarWorkItem item, MethodInfo * method)); @@ -76143,6 +86887,7 @@ DO_APP_FUNC(0x00939030, int32_t, AstarPath_CalculateThreadCount, (ThreadCount__E DO_APP_FUNC(0x00939220, void, AstarPath_Awake, (AstarPath * __this, MethodInfo * method)); DO_APP_FUNC(0x00939700, void, AstarPath_InitializePathProcessor, (AstarPath * __this, MethodInfo * method)); DO_APP_FUNC(0x00939D20, void, AstarPath_VerifyIntegrity, (AstarPath * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFBAF0, AstarPath_VerifyIntegrity__MethodInfo); DO_APP_FUNC(0x00939FD0, void, AstarPath_ConfigureReferencesInternal, (AstarPath * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AstarPath_InitializeProfiler, (AstarPath * __this, MethodInfo * method)); DO_APP_FUNC(0x0093A240, void, AstarPath_InitializeAstarData, (AstarPath * __this, MethodInfo * method)); @@ -76158,65 +86903,83 @@ DO_APP_FUNC(0x003AE050, void, AstarPath_BlockUntilPathQueueBlocked, (AstarPath * DO_APP_FUNC(0x0093B2E0, PathProcessor_GraphUpdateLock, AstarPath_PausePathfinding, (AstarPath * __this, MethodInfo * method)); DO_APP_FUNC(0x0093B330, PathProcessor_GraphUpdateLock, AstarPath_PausePathfindingSoon, (AstarPath * __this, MethodInfo * method)); DO_APP_FUNC(0x0093B380, void, AstarPath_Scan, (AstarPath * __this, NavGraph * graphToScan, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFBA58, AstarPath_Scan__MethodInfo); DO_APP_FUNC(0x0093B470, void, AstarPath_Scan_1, (AstarPath * __this, NavGraph__Array * graphsToScan, MethodInfo * method)); DO_APP_FUNC(0x0093B6A0, IEnumerable_1_Pathfinding_Progress_ *, AstarPath_ScanAsync, (AstarPath * __this, NavGraph * graphToScan, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFBA38, AstarPath_ScanAsync__MethodInfo); DO_APP_FUNC(0x0093B790, IEnumerable_1_Pathfinding_Progress_ *, AstarPath_ScanAsync_1, (AstarPath * __this, NavGraph__Array * graphsToScan, MethodInfo * method)); DO_APP_FUNC(0x0093B8C0, IEnumerable_1_Pathfinding_Progress_ *, AstarPath_ScanGraph, (AstarPath * __this, NavGraph * graph, MethodInfo * method)); DO_APP_FUNC(0x0093B980, void, AstarPath_WaitForPath, (Path_1 * path, MethodInfo * method)); DO_APP_FUNC(0x0093B9D0, void, AstarPath_BlockUntilCalculated, (Path_1 * path, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFBA08, AstarPath_BlockUntilCalculated__MethodInfo); DO_APP_FUNC(0x0093C0E0, void, AstarPath_RegisterSafeUpdate, (Action * callback, MethodInfo * method)); DO_APP_FUNC(0x0093C1A0, void, AstarPath_StartPath, (Path_1 * path, bool pushToFront, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB968, AstarPath_StartPath__MethodInfo); DO_APP_FUNC(0x0093C5F0, NNInfo, AstarPath_GetNearest, (AstarPath * __this, Vector3 position, MethodInfo * method)); DO_APP_FUNC(0x0093C6B0, NNInfo, AstarPath_GetNearest_1, (AstarPath * __this, Vector3 position, NNConstraint * constraint, MethodInfo * method)); DO_APP_FUNC(0x0093C700, NNInfo, AstarPath_GetNearest_2, (AstarPath * __this, Vector3 position, NNConstraint * constraint, GraphNode * hint, MethodInfo * method)); DO_APP_FUNC(0x0093CC20, GraphNode *, AstarPath_GetNearest_3, (AstarPath * __this, Ray ray, MethodInfo * method)); DO_APP_FUNC(0x0093CE10, void, AstarPath__cctor, (MethodInfo * method)); DO_APP_FUNC(0x0093D020, void, AstarPath___ctor_b__92_0, (AstarPath * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4448, AstarPath___ctor_b__92_0__MethodInfo); DO_APP_FUNC(0x0093D0C0, void, AstarPath__InitializePathProcessor_b__122_1, (AstarPath * __this, Path_1 * path, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFBB38, AstarPath__InitializePathProcessor_b__122_1__MethodInfo); DO_APP_FUNC(0x0093D240, void, AstarPath__InitializePathProcessor_b__122_2, (AstarPath * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFBB18, AstarPath__InitializePathProcessor_b__122_2__MethodInfo); DO_APP_FUNC(0x003AE050, void, AstarPath_c_DisplayClass97_0__ctor, (AstarPath_c_DisplayClass97_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0093D270, void, AstarPath_c_DisplayClass97_0__RecalculateDebugLimits_b__0, (AstarPath_c_DisplayClass97_0 * __this, GraphNode * node, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFBC18, AstarPath_c_DisplayClass97_0__RecalculateDebugLimits_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, AstarPath_c_DisplayClass109_0__ctor, (AstarPath_c_DisplayClass109_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0093D490, void, AstarPath_c_DisplayClass109_0__QueueGraphUpdates_b__0, (AstarPath_c_DisplayClass109_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFBB98, AstarPath_c_DisplayClass109_0__QueueGraphUpdates_b__0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, AstarPath_DelayedGraphUpdate_d_110__ctor, (AstarPath_DelayedGraphUpdate_d_110 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AstarPath_DelayedGraphUpdate_d_110_System_IDisposable_Dispose, (AstarPath_DelayedGraphUpdate_d_110 * __this, MethodInfo * method)); DO_APP_FUNC(0x0093D520, bool, AstarPath_DelayedGraphUpdate_d_110_MoveNext, (AstarPath_DelayedGraphUpdate_d_110 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, AstarPath_DelayedGraphUpdate_d_110_System_Collections_Generic_IEnumerator_System_Object__get_Current, (AstarPath_DelayedGraphUpdate_d_110 * __this, MethodInfo * method)); DO_APP_FUNC(0x0093D690, void, AstarPath_DelayedGraphUpdate_d_110_System_Collections_IEnumerator_Reset, (AstarPath_DelayedGraphUpdate_d_110 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB900, AstarPath_DelayedGraphUpdate_d_110_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, AstarPath_DelayedGraphUpdate_d_110_System_Collections_IEnumerator_get_Current, (AstarPath_DelayedGraphUpdate_d_110 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, AstarPath_UpdateGraphsInternal_d_113__ctor, (AstarPath_UpdateGraphsInternal_d_113 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AstarPath_UpdateGraphsInternal_d_113_System_IDisposable_Dispose, (AstarPath_UpdateGraphsInternal_d_113 * __this, MethodInfo * method)); DO_APP_FUNC(0x0093D6E0, bool, AstarPath_UpdateGraphsInternal_d_113_MoveNext, (AstarPath_UpdateGraphsInternal_d_113 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, AstarPath_UpdateGraphsInternal_d_113_System_Collections_Generic_IEnumerator_System_Object__get_Current, (AstarPath_UpdateGraphsInternal_d_113 * __this, MethodInfo * method)); DO_APP_FUNC(0x0093D7E0, void, AstarPath_UpdateGraphsInternal_d_113_System_Collections_IEnumerator_Reset, (AstarPath_UpdateGraphsInternal_d_113 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB8F0, AstarPath_UpdateGraphsInternal_d_113_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, AstarPath_UpdateGraphsInternal_d_113_System_Collections_IEnumerator_get_Current, (AstarPath_UpdateGraphsInternal_d_113 * __this, MethodInfo * method)); DO_APP_FUNC(0x0093D830, void, AstarPath_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AstarPath_c__ctor, (AstarPath_c * __this, MethodInfo * method)); DO_APP_FUNC(0x0093D8E0, void, AstarPath_c__InitializePathProcessor_b__122_0, (AstarPath_c * __this, Path_1 * path, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFBB28, AstarPath_c__InitializePathProcessor_b__122_0__MethodInfo); DO_APP_FUNC(0x0093D960, void, AstarPath_ScanAsync_d_141__ctor, (AstarPath_ScanAsync_d_141 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AstarPath_ScanAsync_d_141_System_IDisposable_Dispose, (AstarPath_ScanAsync_d_141 * __this, MethodInfo * method)); DO_APP_FUNC(0x0093D980, bool, AstarPath_ScanAsync_d_141_MoveNext, (AstarPath_ScanAsync_d_141 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB858, AstarPath_ScanAsync_d_141_MoveNext__MethodInfo); DO_APP_FUNC(0x0093E890, Progress, AstarPath_ScanAsync_d_141_System_Collections_Generic_IEnumerator_Pathfinding_Progress__get_Current, (AstarPath_ScanAsync_d_141 * __this, MethodInfo * method)); DO_APP_FUNC(0x0093E8A0, void, AstarPath_ScanAsync_d_141_System_Collections_IEnumerator_Reset, (AstarPath_ScanAsync_d_141 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB840, AstarPath_ScanAsync_d_141_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x0093E8F0, Object *, AstarPath_ScanAsync_d_141_System_Collections_IEnumerator_get_Current, (AstarPath_ScanAsync_d_141 * __this, MethodInfo * method)); DO_APP_FUNC(0x0093E940, IEnumerator_1_Pathfinding_Progress_ *, AstarPath_ScanAsync_d_141_System_Collections_Generic_IEnumerable_Pathfinding_Progress__GetEnumerator, (AstarPath_ScanAsync_d_141 * __this, MethodInfo * method)); DO_APP_FUNC(0x0093E940, IEnumerator *, AstarPath_ScanAsync_d_141_System_Collections_IEnumerable_GetEnumerator, (AstarPath_ScanAsync_d_141 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AstarPath_c_DisplayClass142_0__ctor, (AstarPath_c_DisplayClass142_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0093EA90, void, AstarPath_c_DisplayClass142_0__ScanGraph_b__0, (AstarPath_c_DisplayClass142_0 * __this, GraphNode * node, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB808, AstarPath_c_DisplayClass142_0__ScanGraph_b__0__MethodInfo); DO_APP_FUNC(0x0093D960, void, AstarPath_ScanGraph_d_142__ctor, (AstarPath_ScanGraph_d_142 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x0093EAC0, void, AstarPath_ScanGraph_d_142_System_IDisposable_Dispose, (AstarPath_ScanGraph_d_142 * __this, MethodInfo * method)); DO_APP_FUNC(0x0093EB90, bool, AstarPath_ScanGraph_d_142_MoveNext, (AstarPath_ScanGraph_d_142 * __this, MethodInfo * method)); DO_APP_FUNC(0x0093F480, void, AstarPath_ScanGraph_d_142___m__Finally1, (AstarPath_ScanGraph_d_142 * __this, MethodInfo * method)); DO_APP_FUNC(0x0093E890, Progress, AstarPath_ScanGraph_d_142_System_Collections_Generic_IEnumerator_Pathfinding_Progress__get_Current, (AstarPath_ScanGraph_d_142 * __this, MethodInfo * method)); DO_APP_FUNC(0x0093F4E0, void, AstarPath_ScanGraph_d_142_System_Collections_IEnumerator_Reset, (AstarPath_ScanGraph_d_142 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB7E0, AstarPath_ScanGraph_d_142_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x0093F530, Object *, AstarPath_ScanGraph_d_142_System_Collections_IEnumerator_get_Current, (AstarPath_ScanGraph_d_142 * __this, MethodInfo * method)); DO_APP_FUNC(0x0093F580, IEnumerator_1_Pathfinding_Progress_ *, AstarPath_ScanGraph_d_142_System_Collections_Generic_IEnumerable_Pathfinding_Progress__GetEnumerator, (AstarPath_ScanGraph_d_142 * __this, MethodInfo * method)); DO_APP_FUNC(0x0093F580, IEnumerator *, AstarPath_ScanGraph_d_142_System_Collections_IEnumerable_GetEnumerator, (AstarPath_ScanGraph_d_142 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AstarPath_c_DisplayClass152_0__ctor, (AstarPath_c_DisplayClass152_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0093F670, void, AstarPath_c_DisplayClass152_0__GetNearest_b__0, (AstarPath_c_DisplayClass152_0 * __this, GraphNode * node, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB930, AstarPath_c_DisplayClass152_0__GetNearest_b__0__MethodInfo); DO_APP_FUNC(0x0093F7E0, void, AIDestinationSetter_OnEnable, (AIDestinationSetter * __this, MethodInfo * method)); DO_APP_FUNC(0x0093F960, void, AIDestinationSetter_OnDisable, (AIDestinationSetter * __this, MethodInfo * method)); DO_APP_FUNC(0x0093FA70, void, AIDestinationSetter_Update, (AIDestinationSetter * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB7C8, AIDestinationSetter_Update__MethodInfo); DO_APP_FUNC(0x003AE000, void, AIDestinationSetter__ctor, (AIDestinationSetter * __this, MethodInfo * method)); DO_APP_FUNC(0x0093FC20, void, Patrol_2_Awake, (Patrol_2 * __this, MethodInfo * method)); DO_APP_FUNC(0x0093FCC0, void, Patrol_2_Update, (Patrol_2 * __this, MethodInfo * method)); @@ -76250,11 +87013,12 @@ DO_APP_FUNC(0x00941260, void, AIBase_CancelCurrentPathRequest, (AIBase * __this, DO_APP_FUNC(0x009413F0, void, AIBase_OnDisable, (AIBase * __this, MethodInfo * method)); DO_APP_FUNC(0x009415D0, void, AIBase_Update, (AIBase * __this, MethodInfo * method)); DO_APP_FUNC(0x00941AD0, void, AIBase_FixedUpdate, (AIBase * __this, MethodInfo * method)); -DO_APP_FUNC(0x00941D70, void, AIBase_MovementUpdate, (AIBase * __this, float deltaTime, Vector3 nextPosition, Quaternion nextRotation, MethodInfo * method)); -DO_APP_FUNC(0x00941D90, void, AIBase_CalculatePathRequestEndpoints, (AIBase * __this, Vector3 start, Vector3 end, MethodInfo * method)); +DO_APP_FUNC(0x00941D70, void, AIBase_MovementUpdate, (AIBase * __this, float deltaTime, Vector3 * nextPosition, Quaternion * nextRotation, MethodInfo * method)); +DO_APP_FUNC(0x00941D90, void, AIBase_CalculatePathRequestEndpoints, (AIBase * __this, Vector3 * start, Vector3 * end, MethodInfo * method)); DO_APP_FUNC(0x00941E00, void, AIBase_SearchPath, (AIBase * __this, MethodInfo * method)); DO_APP_FUNC(0x00942050, Vector3, AIBase_GetFeetPosition, (AIBase * __this, MethodInfo * method)); DO_APP_FUNC(0x00942080, void, AIBase_SetPath, (AIBase * __this, Path_1 * path, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB750, AIBase_SetPath__MethodInfo); DO_APP_FUNC(0x00942280, void, AIBase_ApplyGravity, (AIBase * __this, float deltaTime, MethodInfo * method)); DO_APP_FUNC(0x009424E0, Vector2, AIBase_CalculateDeltaToMoveThisFrame, (AIBase * __this, Vector2 position, float distanceToEndOfPath, float deltaTime, MethodInfo * method)); DO_APP_FUNC(0x00942830, Quaternion, AIBase_SimulateRotationTowards, (AIBase * __this, Vector3 direction, float maxDegrees, MethodInfo * method)); @@ -76264,7 +87028,7 @@ DO_APP_FUNC(0x00942DE0, void, AIBase_FinalizeMovement, (AIBase * __this, Vector3 DO_APP_FUNC(0x00942E40, void, AIBase_FinalizeRotation, (AIBase * __this, Quaternion nextRotation, MethodInfo * method)); DO_APP_FUNC(0x00943140, void, AIBase_FinalizePosition, (AIBase * __this, Vector3 nextPosition, MethodInfo * method)); DO_APP_FUNC(0x00943950, void, AIBase_UpdateVelocity, (AIBase * __this, MethodInfo * method)); -DO_APP_FUNC(0x00943A00, Vector3, AIBase_ClampToNavmesh, (AIBase * __this, Vector3 position, bool positionChanged, MethodInfo * method)); +DO_APP_FUNC(0x00943A00, Vector3, AIBase_ClampToNavmesh, (AIBase * __this, Vector3 position, bool * positionChanged, MethodInfo * method)); DO_APP_FUNC(0x00943A20, Vector3, AIBase_RaycastPosition, (AIBase * __this, Vector3 position, float lastElevation, MethodInfo * method)); DO_APP_FUNC(0x00943E60, void, AIBase_OnDrawGizmosSelected, (AIBase * __this, MethodInfo * method)); DO_APP_FUNC(0x00943ED0, void, AIBase_OnDrawGizmos, (AIBase * __this, MethodInfo * method)); @@ -76311,25 +87075,28 @@ DO_APP_FUNC(0x009459A0, void, AILerp_Start, (AILerp * __this, MethodInfo * metho DO_APP_FUNC(0x009459B0, void, AILerp_OnEnable, (AILerp * __this, MethodInfo * method)); DO_APP_FUNC(0x00945B00, void, AILerp_Init, (AILerp * __this, MethodInfo * method)); DO_APP_FUNC(0x00945C10, void, AILerp_OnDisable, (AILerp * __this, MethodInfo * method)); -DO_APP_FUNC(0x00945D60, void, AILerp_GetRemainingPath, (AILerp * __this, List_1_UnityEngine_Vector3_ * buffer, bool stale, MethodInfo * method)); +DO_APP_FUNC(0x00945D60, void, AILerp_GetRemainingPath, (AILerp * __this, List_1_UnityEngine_Vector3_ * buffer, bool * stale, MethodInfo * method)); DO_APP_FUNC(0x00945F10, void, AILerp_Teleport, (AILerp * __this, Vector3 position, bool clearPath, MethodInfo * method)); DO_APP_FUNC(0x00946010, bool, AILerp_get_shouldRecalculatePath, (AILerp * __this, MethodInfo * method)); DO_APP_FUNC(0x00946090, void, AILerp_ForceSearchPath, (AILerp * __this, MethodInfo * method)); DO_APP_FUNC(0x009460B0, void, AILerp_SearchPath, (AILerp * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AILerp_OnTargetReached, (AILerp * __this, MethodInfo * method)); DO_APP_FUNC(0x00946250, void, AILerp_OnPathComplete, (AILerp * __this, Path_1 * _p, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB690, AILerp_OnPathComplete__MethodInfo); DO_APP_FUNC(0x009464C0, void, AILerp_ClearPath, (AILerp * __this, MethodInfo * method)); DO_APP_FUNC(0x009466E0, void, AILerp_SetPath, (AILerp * __this, Path_1 * path, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB660, AILerp_SetPath__MethodInfo); DO_APP_FUNC(0x009468C0, void, AILerp_ConfigurePathSwitchInterpolation, (AILerp * __this, MethodInfo * method)); DO_APP_FUNC(0x00946AF0, Vector3, AILerp_GetFeetPosition, (AILerp * __this, MethodInfo * method)); DO_APP_FUNC(0x00946B20, void, AILerp_ConfigureNewPath, (AILerp * __this, MethodInfo * method)); DO_APP_FUNC(0x00946E10, void, AILerp_Update, (AILerp * __this, MethodInfo * method)); -DO_APP_FUNC(0x00947170, void, AILerp_MovementUpdate, (AILerp * __this, float deltaTime, Vector3 nextPosition, Quaternion nextRotation, MethodInfo * method)); +DO_APP_FUNC(0x00947170, void, AILerp_MovementUpdate, (AILerp * __this, float deltaTime, Vector3 * nextPosition, Quaternion * nextRotation, MethodInfo * method)); DO_APP_FUNC(0x00947340, void, AILerp_FinalizeMovement, (AILerp * __this, Vector3 nextPosition, Quaternion nextRotation, MethodInfo * method)); DO_APP_FUNC(0x00947480, Quaternion, AILerp_SimulateRotationTowards, (AILerp * __this, Vector3 direction, float deltaTime, MethodInfo * method)); -DO_APP_FUNC(0x009478C0, Vector3, AILerp_CalculateNextPosition, (AILerp * __this, Vector3 direction, float deltaTime, MethodInfo * method)); +DO_APP_FUNC(0x009478C0, Vector3, AILerp_CalculateNextPosition, (AILerp * __this, Vector3 * direction, float deltaTime, MethodInfo * method)); DO_APP_FUNC(0x00947BA0, int32_t, AILerp_OnUpgradeSerializedData, (AILerp * __this, int32_t version, bool unityThread, MethodInfo * method)); DO_APP_FUNC(0x00947CD0, Vector3, AILerp__Awake_b__84_0, (AILerp * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB6C8, AILerp__Awake_b__84_0__MethodInfo); DO_APP_FUNC(0x00947CF0, void, AIPath_Teleport, (AIPath * __this, Vector3 newPosition, bool clearPath, MethodInfo * method)); DO_APP_FUNC(0x00947D20, float, AIPath_get_remainingDistance, (AIPath * __this, MethodInfo * method)); DO_APP_FUNC(0x00947EF0, bool, AIPath_get_reachedDestination, (AIPath * __this, MethodInfo * method)); @@ -76348,14 +87115,15 @@ DO_APP_FUNC(0x00421700, bool, AIPath_Pathfinding_IAstarAI_get_canSearch, (AIPath DO_APP_FUNC(0x00421710, void, AIPath_Pathfinding_IAstarAI_set_canSearch, (AIPath * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x0046E820, bool, AIPath_Pathfinding_IAstarAI_get_canMove, (AIPath * __this, MethodInfo * method)); DO_APP_FUNC(0x0046E830, void, AIPath_Pathfinding_IAstarAI_set_canMove, (AIPath * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x00948350, void, AIPath_GetRemainingPath, (AIPath * __this, List_1_UnityEngine_Vector3_ * buffer, bool stale, MethodInfo * method)); +DO_APP_FUNC(0x00948350, void, AIPath_GetRemainingPath, (AIPath * __this, List_1_UnityEngine_Vector3_ * buffer, bool * stale, MethodInfo * method)); DO_APP_FUNC(0x00948490, void, AIPath_OnDisable, (AIPath * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AIPath_OnTargetReached, (AIPath * __this, MethodInfo * method)); DO_APP_FUNC(0x00948540, void, AIPath_OnPathComplete, (AIPath * __this, Path_1 * newPath, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB620, AIPath_OnPathComplete__MethodInfo); DO_APP_FUNC(0x00948C10, void, AIPath_ClearPath, (AIPath * __this, MethodInfo * method)); -DO_APP_FUNC(0x00948C50, void, AIPath_MovementUpdateInternal, (AIPath * __this, float deltaTime, Vector3 nextPosition, Quaternion nextRotation, MethodInfo * method)); -DO_APP_FUNC(0x009499A0, void, AIPath_CalculateNextRotation, (AIPath * __this, float slowdown, Quaternion nextRotation, MethodInfo * method)); -DO_APP_FUNC(0x00949B70, Vector3, AIPath_ClampToNavmesh, (AIPath * __this, Vector3 position, bool positionChanged, MethodInfo * method)); +DO_APP_FUNC(0x00948C50, void, AIPath_MovementUpdateInternal, (AIPath * __this, float deltaTime, Vector3 * nextPosition, Quaternion * nextRotation, MethodInfo * method)); +DO_APP_FUNC(0x009499A0, void, AIPath_CalculateNextRotation, (AIPath * __this, float slowdown, Quaternion * nextRotation, MethodInfo * method)); +DO_APP_FUNC(0x00949B70, Vector3, AIPath_ClampToNavmesh, (AIPath * __this, Vector3 position, bool * positionChanged, MethodInfo * method)); DO_APP_FUNC(0x0094A050, int32_t, AIPath_OnUpgradeSerializedData, (AIPath * __this, int32_t version, bool unityThread, MethodInfo * method)); DO_APP_FUNC(0x00948280, bool, AIPath_get_TargetReached, (AIPath * __this, MethodInfo * method)); DO_APP_FUNC(0x0094A0A0, float, AIPath_get_turningSpeed, (AIPath * __this, MethodInfo * method)); @@ -76394,13 +87162,13 @@ DO_APP_FUNC(0x0094B080, void, RichAI_SearchPath, (RichAI * __this, MethodInfo * DO_APP_FUNC(0x0094B0A0, void, RichAI_OnPathComplete, (RichAI * __this, Path_1 * p, MethodInfo * method)); DO_APP_FUNC(0x0094B3D0, void, RichAI_ClearPath, (RichAI * __this, MethodInfo * method)); DO_APP_FUNC(0x0094B420, void, RichAI_NextPart, (RichAI * __this, MethodInfo * method)); -DO_APP_FUNC(0x0094B580, void, RichAI_GetRemainingPath, (RichAI * __this, List_1_UnityEngine_Vector3_ * buffer, bool stale, MethodInfo * method)); +DO_APP_FUNC(0x0094B580, void, RichAI_GetRemainingPath, (RichAI * __this, List_1_UnityEngine_Vector3_ * buffer, bool * stale, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, RichAI_OnTargetReached, (RichAI * __this, MethodInfo * method)); DO_APP_FUNC(0x0094B5D0, Vector3, RichAI_UpdateTarget, (RichAI * __this, RichFunnel * fn, MethodInfo * method)); -DO_APP_FUNC(0x0094B700, void, RichAI_MovementUpdateInternal, (RichAI * __this, float deltaTime, Vector3 nextPosition, Quaternion nextRotation, MethodInfo * method)); -DO_APP_FUNC(0x0094BAF0, void, RichAI_TraverseFunnel, (RichAI * __this, RichFunnel * fn, float deltaTime, Vector3 nextPosition, Quaternion nextRotation, MethodInfo * method)); -DO_APP_FUNC(0x0094C610, void, RichAI_FinalMovement, (RichAI * __this, Vector3 position3D, float deltaTime, float distanceToEndOfPath, float slowdownFactor, Vector3 nextPosition, Quaternion nextRotation, MethodInfo * method)); -DO_APP_FUNC(0x0094CE00, Vector3, RichAI_ClampToNavmesh, (RichAI * __this, Vector3 position, bool positionChanged, MethodInfo * method)); +DO_APP_FUNC(0x0094B700, void, RichAI_MovementUpdateInternal, (RichAI * __this, float deltaTime, Vector3 * nextPosition, Quaternion * nextRotation, MethodInfo * method)); +DO_APP_FUNC(0x0094BAF0, void, RichAI_TraverseFunnel, (RichAI * __this, RichFunnel * fn, float deltaTime, Vector3 * nextPosition, Quaternion * nextRotation, MethodInfo * method)); +DO_APP_FUNC(0x0094C610, void, RichAI_FinalMovement, (RichAI * __this, Vector3 position3D, float deltaTime, float distanceToEndOfPath, float slowdownFactor, Vector3 * nextPosition, Quaternion * nextRotation, MethodInfo * method)); +DO_APP_FUNC(0x0094CE00, Vector3, RichAI_ClampToNavmesh, (RichAI * __this, Vector3 position, bool * positionChanged, MethodInfo * method)); DO_APP_FUNC(0x0094D1B0, Vector2, RichAI_CalculateWallForce, (RichAI * __this, Vector2 position, float elevation, Vector2 directionToTarget, MethodInfo * method)); DO_APP_FUNC(0x0094D780, IEnumerator *, RichAI_TraverseSpecial, (RichAI * __this, RichSpecial * link, MethodInfo * method)); DO_APP_FUNC(0x0094D890, IEnumerator *, RichAI_TraverseOffMeshLinkFallback, (RichAI * __this, RichSpecial * link, MethodInfo * method)); @@ -76427,39 +87195,45 @@ DO_APP_FUNC(0x003AE050, void, RichAI_TraverseSpecial_d_68_System_IDisposable_Dis DO_APP_FUNC(0x0094E520, bool, RichAI_TraverseSpecial_d_68_MoveNext, (RichAI_TraverseSpecial_d_68 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, RichAI_TraverseSpecial_d_68_System_Collections_Generic_IEnumerator_System_Object__get_Current, (RichAI_TraverseSpecial_d_68 * __this, MethodInfo * method)); DO_APP_FUNC(0x0094E790, void, RichAI_TraverseSpecial_d_68_System_Collections_IEnumerator_Reset, (RichAI_TraverseSpecial_d_68 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB580, RichAI_TraverseSpecial_d_68_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, RichAI_TraverseSpecial_d_68_System_Collections_IEnumerator_get_Current, (RichAI_TraverseSpecial_d_68 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, RichAI_TraverseOffMeshLinkFallback_d_69__ctor, (RichAI_TraverseOffMeshLinkFallback_d_69 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, RichAI_TraverseOffMeshLinkFallback_d_69_System_IDisposable_Dispose, (RichAI_TraverseOffMeshLinkFallback_d_69 * __this, MethodInfo * method)); DO_APP_FUNC(0x0094E7E0, bool, RichAI_TraverseOffMeshLinkFallback_d_69_MoveNext, (RichAI_TraverseOffMeshLinkFallback_d_69 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, RichAI_TraverseOffMeshLinkFallback_d_69_System_Collections_Generic_IEnumerator_System_Object__get_Current, (RichAI_TraverseOffMeshLinkFallback_d_69 * __this, MethodInfo * method)); DO_APP_FUNC(0x0094ED50, void, RichAI_TraverseOffMeshLinkFallback_d_69_System_Collections_IEnumerator_Reset, (RichAI_TraverseOffMeshLinkFallback_d_69 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB578, RichAI_TraverseOffMeshLinkFallback_d_69_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, RichAI_TraverseOffMeshLinkFallback_d_69_System_Collections_IEnumerator_get_Current, (RichAI_TraverseOffMeshLinkFallback_d_69 * __this, MethodInfo * method)); DO_APP_FUNC(0x0094EDA0, void, RichPath__ctor, (RichPath * __this, MethodInfo * method)); DO_APP_FUNC(0x0094EE70, void, RichPath_Clear, (RichPath * __this, MethodInfo * method)); DO_APP_FUNC(0x0094EEF0, void, RichPath_Initialize, (RichPath * __this, Seeker * seeker, Path_1 * path, bool mergePartEndpoints, bool simplificationMode, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB4B8, RichPath_Initialize__MethodInfo); DO_APP_FUNC(0x0094F9F0, Vector3, RichPath_get_Endpoint, (RichPath * __this, MethodInfo * method)); DO_APP_FUNC(0x0094FA10, void, RichPath_set_Endpoint, (RichPath * __this, Vector3 value, MethodInfo * method)); DO_APP_FUNC(0x0094FA20, bool, RichPath_get_CompletedAllParts, (RichPath * __this, MethodInfo * method)); DO_APP_FUNC(0x0094FA70, bool, RichPath_get_IsLastPart, (RichPath * __this, MethodInfo * method)); DO_APP_FUNC(0x0094FAC0, void, RichPath_NextPart, (RichPath * __this, MethodInfo * method)); DO_APP_FUNC(0x0094FB10, RichPathPart *, RichPath_GetCurrentPart, (RichPath * __this, MethodInfo * method)); -DO_APP_FUNC(0x0094FBD0, void, RichPath_GetRemainingPath, (RichPath * __this, List_1_UnityEngine_Vector3_ * buffer, Vector3 currentPosition, bool requiresRepath, MethodInfo * method)); +DO_APP_FUNC(0x0094FBD0, void, RichPath_GetRemainingPath, (RichPath * __this, List_1_UnityEngine_Vector3_ * buffer, Vector3 currentPosition, bool * requiresRepath, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, RichPathPart__ctor, (RichPathPart * __this, MethodInfo * method)); DO_APP_FUNC(0x0094FE70, void, RichFunnel__ctor, (RichFunnel * __this, MethodInfo * method)); DO_APP_FUNC(0x00950100, RichFunnel *, RichFunnel_Initialize, (RichFunnel * __this, RichPath * path, NavmeshBase * graph, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB468, RichFunnel_Initialize__MethodInfo); DO_APP_FUNC(0x009502B0, void, RichFunnel_OnEnterPool, (RichFunnel * __this, MethodInfo * method)); DO_APP_FUNC(0x009503B0, TriangleMeshNode *, RichFunnel_get_CurrentNode, (RichFunnel * __this, MethodInfo * method)); DO_APP_FUNC(0x00950440, void, RichFunnel_BuildFunnelCorridor, (RichFunnel * __this, List_1_Pathfinding_GraphNode_ * nodes, int32_t start, int32_t end, MethodInfo * method)); DO_APP_FUNC(0x00950C70, void, RichFunnel_SimplifyPath, (RichFunnel * __this, IRaycastableGraph * graph, List_1_Pathfinding_GraphNode_ * nodes, int32_t start, int32_t end, List_1_Pathfinding_GraphNode_ * result, Vector3 startPoint, Vector3 endPoint, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB3B0, RichFunnel_SimplifyPath__MethodInfo); DO_APP_FUNC(0x00951FC0, void, RichFunnel_UpdateFunnelCorridor, (RichFunnel * __this, int32_t splitIndex, List_1_Pathfinding_TriangleMeshNode_ * prefix, MethodInfo * method)); DO_APP_FUNC(0x00952400, bool, RichFunnel_CheckForDestroyedNodes, (RichFunnel * __this, MethodInfo * method)); DO_APP_FUNC(0x009524B0, float, RichFunnel_get_DistanceToEndOfPath, (RichFunnel * __this, MethodInfo * method)); DO_APP_FUNC(0x009525D0, Vector3, RichFunnel_ClampToNavmesh, (RichFunnel * __this, Vector3 position, MethodInfo * method)); -DO_APP_FUNC(0x00952810, Vector3, RichFunnel_Update, (RichFunnel * __this, Vector3 position, List_1_UnityEngine_Vector3_ * buffer, int32_t numCorners, bool lastCorner, bool requiresRepath, MethodInfo * method)); -DO_APP_FUNC(0x00952E40, bool, RichFunnel_ClampToNavmeshInternal, (RichFunnel * __this, Vector3 position, MethodInfo * method)); +DO_APP_FUNC(0x00952810, Vector3, RichFunnel_Update, (RichFunnel * __this, Vector3 position, List_1_UnityEngine_Vector3_ * buffer, int32_t numCorners, bool * lastCorner, bool * requiresRepath, MethodInfo * method)); +DO_APP_FUNC(0x00952E40, bool, RichFunnel_ClampToNavmeshInternal, (RichFunnel * __this, Vector3 * position, MethodInfo * method)); DO_APP_FUNC(0x00953590, void, RichFunnel_FindWalls, (RichFunnel * __this, List_1_UnityEngine_Vector3_ * wallBuffer, float range, MethodInfo * method)); DO_APP_FUNC(0x009535D0, void, RichFunnel_FindWalls_1, (RichFunnel * __this, int32_t nodeIndex, List_1_UnityEngine_Vector3_ * wallBuffer, Vector3 position, float range, MethodInfo * method)); -DO_APP_FUNC(0x00953E10, bool, RichFunnel_FindNextCorners, (RichFunnel * __this, Vector3 origin, int32_t startIndex, List_1_UnityEngine_Vector3_ * funnelPath, int32_t numCorners, bool lastCorner, MethodInfo * method)); +DO_APP_FUNC(0x00953E10, bool, RichFunnel_FindNextCorners, (RichFunnel * __this, Vector3 origin, int32_t startIndex, List_1_UnityEngine_Vector3_ * funnelPath, int32_t numCorners, bool * lastCorner, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB2E8, RichFunnel_FindNextCorners__MethodInfo); DO_APP_FUNC(0x00954CC0, void, RichFunnel__cctor, (MethodInfo * method)); DO_APP_FUNC(0x00954F40, void, RichSpecial_OnEnterPool, (RichSpecial * __this, MethodInfo * method)); DO_APP_FUNC(0x00954FA0, RichSpecial *, RichSpecial_Initialize, (RichSpecial * __this, NodeLink2 * nodeLink, GraphNode * first, MethodInfo * method)); @@ -76476,9 +87250,12 @@ DO_APP_FUNC(0x00955C10, void, Seeker_PostProcess, (Seeker * __this, Path_1 * pat DO_APP_FUNC(0x00955C20, void, Seeker_RunModifiers, (Seeker * __this, Seeker_ModifierPass__Enum pass, Path_1 * path, MethodInfo * method)); DO_APP_FUNC(0x00955ED0, bool, Seeker_IsDone, (Seeker * __this, MethodInfo * method)); DO_APP_FUNC(0x00955EF0, void, Seeker_OnPathComplete, (Seeker * __this, Path_1 * path, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB248, Seeker_OnPathComplete__MethodInfo); DO_APP_FUNC(0x00955F10, void, Seeker_OnPathComplete_1, (Seeker * __this, Path_1 * p, bool runModifiers, bool sendCallbacks, MethodInfo * method)); DO_APP_FUNC(0x00956130, void, Seeker_OnPartialPathComplete, (Seeker * __this, Path_1 * p, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB238, Seeker_OnPartialPathComplete__MethodInfo); DO_APP_FUNC(0x00956150, void, Seeker_OnMultiPathComplete, (Seeker * __this, Path_1 * p, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB190, Seeker_OnMultiPathComplete__MethodInfo); DO_APP_FUNC(0x00956170, ABPath *, Seeker_GetNewPath, (Seeker * __this, Vector3 start, Vector3 end, MethodInfo * method)); DO_APP_FUNC(0x00956200, Path_1 *, Seeker_StartPath, (Seeker * __this, Vector3 start, Vector3 end, MethodInfo * method)); DO_APP_FUNC(0x009562D0, Path_1 *, Seeker_StartPath_1, (Seeker * __this, Vector3 start, Vector3 end, OnPathDelegate * callback, MethodInfo * method)); @@ -76494,14 +87271,15 @@ DO_APP_FUNC(0x00956FD0, int32_t, Seeker_OnUpgradeSerializedData, (Seeker * __thi DO_APP_FUNC(0x009570B0, void, Seeker_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Seeker_c__ctor, (Seeker_c * __this, MethodInfo * method)); DO_APP_FUNC(0x00957160, int32_t, Seeker_c__RegisterModifier_b__26_0, (Seeker_c * __this, IPathModifier * a, IPathModifier * b, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB1F0, Seeker_c__RegisterModifier_b__26_0__MethodInfo); DO_APP_FUNC(0x009571F0, int32_t, AstarColor_ColorHash, (MethodInfo * method)); DO_APP_FUNC(0x00957430, Color, AstarColor_GetAreaColor, (uint32_t area, MethodInfo * method)); DO_APP_FUNC(0x00957590, Color, AstarColor_GetTagColor, (uint32_t tag, MethodInfo * method)); DO_APP_FUNC(0x009576F0, void, AstarColor_PushToStatic, (AstarColor * __this, AstarPath * astar, MethodInfo * method)); DO_APP_FUNC(0x009578C0, void, AstarColor__ctor, (AstarColor * __this, MethodInfo * method)); DO_APP_FUNC(0x00957910, void, AstarColor__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x00957C50, float, GraphHitInfo_get_distance, (GraphHitInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00957CB0, void, GraphHitInfo__ctor, (GraphHitInfo__Boxed * __this, Vector3 point, MethodInfo * method)); +DO_APP_FUNC(0x00957C50, float, GraphHitInfo_get_distance, (GraphHitInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x00957CB0, void, GraphHitInfo__ctor, (GraphHitInfo * __this, Vector3 point, MethodInfo * method)); DO_APP_FUNC(0x00957E00, bool, NNConstraint_SuitableGraph, (NNConstraint * __this, int32_t graphIndex, NavGraph * graph, MethodInfo * method)); DO_APP_FUNC(0x00957E20, bool, NNConstraint_Suitable, (NNConstraint * __this, GraphNode * node, MethodInfo * method)); DO_APP_FUNC(0x00957EB0, NNConstraint *, NNConstraint_get_Default, (MethodInfo * method)); @@ -76510,50 +87288,53 @@ DO_APP_FUNC(0x00957F90, void, NNConstraint__ctor, (NNConstraint * __this, Method DO_APP_FUNC(0x00957FC0, PathNNConstraint *, PathNNConstraint_get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00958030, void, PathNNConstraint_SetStart, (PathNNConstraint * __this, GraphNode * node, MethodInfo * method)); DO_APP_FUNC(0x00957F90, void, PathNNConstraint__ctor, (PathNNConstraint * __this, MethodInfo * method)); -DO_APP_FUNC(0x00958060, void, NNInfoInternal__ctor, (NNInfoInternal__Boxed * __this, GraphNode * node, MethodInfo * method)); -DO_APP_FUNC(0x009581A0, void, NNInfoInternal_UpdateInfo, (NNInfoInternal__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00958320, Vector3, NNInfo_get_clampedPosition, (NNInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00958340, void, NNInfo__ctor, (NNInfo__Boxed * __this, NNInfoInternal internalInfo, MethodInfo * method)); +DO_APP_FUNC(0x00958060, void, NNInfoInternal__ctor, (NNInfoInternal * __this, GraphNode * node, MethodInfo * method)); +DO_APP_FUNC(0x009581A0, void, NNInfoInternal_UpdateInfo, (NNInfoInternal * __this, MethodInfo * method)); +DO_APP_FUNC(0x00958320, Vector3, NNInfo_get_clampedPosition, (NNInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x00958340, void, NNInfo__ctor, (NNInfo * __this, NNInfoInternal internalInfo, MethodInfo * method)); DO_APP_FUNC(0x00958320, Vector3, NNInfo_op_Explicit, (NNInfo ob, MethodInfo * method)); DO_APP_FUNC(0x00471910, GraphNode *, NNInfo_op_Explicit_1, (NNInfo ob, MethodInfo * method)); -DO_APP_FUNC(0x009583B0, void, Progress__ctor, (Progress__Boxed * __this, float progress, String * description, MethodInfo * method)); -DO_APP_FUNC(0x00958410, Progress, Progress_MapTo, (Progress__Boxed * __this, float min, float max, String * prefix, MethodInfo * method)); -DO_APP_FUNC(0x009584E0, String *, Progress_ToString, (Progress__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x009583B0, void, Progress__ctor, (Progress * __this, float progress, String * description, MethodInfo * method)); +DO_APP_FUNC(0x00958410, Progress, Progress_MapTo, (Progress * __this, float min, float max, String * prefix, MethodInfo * method)); +DO_APP_FUNC(0x009584E0, String *, Progress_ToString, (Progress * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GraphUpdateObject_set_requiresFloodFill, (GraphUpdateObject * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x00958550, void, GraphUpdateObject_WillUpdateNode, (GraphUpdateObject * __this, GraphNode * node, MethodInfo * method)); DO_APP_FUNC(0x00958780, void, GraphUpdateObject_RevertFromBackup, (GraphUpdateObject * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5CC8, GraphUpdateObject_RevertFromBackup__MethodInfo); DO_APP_FUNC(0x00958C80, void, GraphUpdateObject_Apply, (GraphUpdateObject * __this, GraphNode * node, MethodInfo * method)); DO_APP_FUNC(0x00958D60, void, GraphUpdateObject__ctor, (GraphUpdateObject * __this, MethodInfo * method)); DO_APP_FUNC(0x00958DD0, void, GraphUpdateObject__ctor_1, (GraphUpdateObject * __this, Bounds b, MethodInfo * method)); -DO_APP_FUNC(0x00958E60, void, IntRect__ctor, (IntRect__Boxed * __this, int32_t xmin, int32_t ymin, int32_t xmax, int32_t ymax, MethodInfo * method)); -DO_APP_FUNC(0x00958E80, bool, IntRect_Contains, (IntRect__Boxed * __this, int32_t x, int32_t y, MethodInfo * method)); -DO_APP_FUNC(0x00958EA0, int32_t, IntRect_get_Width, (IntRect__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00958EB0, int32_t, IntRect_get_Height, (IntRect__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00958EC0, bool, IntRect_IsValid, (IntRect__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00958E60, void, IntRect__ctor, (IntRect * __this, int32_t xmin, int32_t ymin, int32_t xmax, int32_t ymax, MethodInfo * method)); +DO_APP_FUNC(0x00958E80, bool, IntRect_Contains, (IntRect * __this, int32_t x, int32_t y, MethodInfo * method)); +DO_APP_FUNC(0x00958EA0, int32_t, IntRect_get_Width, (IntRect * __this, MethodInfo * method)); +DO_APP_FUNC(0x00958EB0, int32_t, IntRect_get_Height, (IntRect * __this, MethodInfo * method)); +DO_APP_FUNC(0x00958EC0, bool, IntRect_IsValid, (IntRect * __this, MethodInfo * method)); DO_APP_FUNC(0x00958EE0, bool, IntRect_op_Equality, (IntRect a, IntRect b, MethodInfo * method)); DO_APP_FUNC(0x00958F10, bool, IntRect_op_Inequality, (IntRect a, IntRect b, MethodInfo * method)); -DO_APP_FUNC(0x00958F40, bool, IntRect_Equals, (IntRect__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x00958FE0, int32_t, IntRect_GetHashCode, (IntRect__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00958F40, bool, IntRect_Equals, (IntRect * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x00958FE0, int32_t, IntRect_GetHashCode, (IntRect * __this, MethodInfo * method)); DO_APP_FUNC(0x00959000, IntRect, IntRect_Intersection, (IntRect a, IntRect b, MethodInfo * method)); DO_APP_FUNC(0x009590B0, bool, IntRect_Intersects, (IntRect a, IntRect b, MethodInfo * method)); DO_APP_FUNC(0x009590E0, IntRect, IntRect_Union, (IntRect a, IntRect b, MethodInfo * method)); -DO_APP_FUNC(0x00959190, IntRect, IntRect_ExpandToContain, (IntRect__Boxed * __this, int32_t x, int32_t y, MethodInfo * method)); -DO_APP_FUNC(0x00959240, IntRect, IntRect_Expand, (IntRect__Boxed * __this, int32_t range, MethodInfo * method)); -DO_APP_FUNC(0x00959270, String *, IntRect_ToString, (IntRect__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x009595C0, void, IntRect_DebugDraw, (IntRect__Boxed * __this, GraphTransform * transform, Color color, MethodInfo * method)); +DO_APP_FUNC(0x00959190, IntRect, IntRect_ExpandToContain, (IntRect * __this, int32_t x, int32_t y, MethodInfo * method)); +DO_APP_FUNC(0x00959240, IntRect, IntRect_Expand, (IntRect * __this, int32_t range, MethodInfo * method)); +DO_APP_FUNC(0x00959270, String *, IntRect_ToString, (IntRect * __this, MethodInfo * method)); +DO_APP_FUNC(0x009595C0, void, IntRect_DebugDraw, (IntRect * __this, GraphTransform * transform, Color color, MethodInfo * method)); DO_APP_FUNC(0x006B4F60, GraphMask, GraphMask_get_everything, (MethodInfo * method)); -DO_APP_FUNC(0x00959BA0, void, GraphMask__ctor, (GraphMask__Boxed * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x00959BA0, void, GraphMask__ctor, (GraphMask * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x00959BB0, int32_t, GraphMask_op_Implicit, (GraphMask mask, MethodInfo * method)); DO_APP_FUNC(0x00959BB0, GraphMask, GraphMask_op_Implicit_1, (int32_t mask, MethodInfo * method)); DO_APP_FUNC(0x00959BC0, GraphMask, GraphMask_op_BitwiseAnd, (GraphMask lhs, GraphMask rhs, MethodInfo * method)); DO_APP_FUNC(0x00959BD0, GraphMask, GraphMask_op_BitwiseOr, (GraphMask lhs, GraphMask rhs, MethodInfo * method)); DO_APP_FUNC(0x00959BE0, GraphMask, GraphMask_op_OnesComplement, (GraphMask lhs, MethodInfo * method)); -DO_APP_FUNC(0x00959BF0, bool, GraphMask_Contains, (GraphMask__Boxed * __this, int32_t graphIndex, MethodInfo * method)); +DO_APP_FUNC(0x00959BF0, bool, GraphMask_Contains, (GraphMask * __this, int32_t graphIndex, MethodInfo * method)); DO_APP_FUNC(0x00959C00, GraphMask, GraphMask_FromGraph, (NavGraph * graph, MethodInfo * method)); -DO_APP_FUNC(0x00959C30, String *, GraphMask_ToString, (GraphMask__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00959C30, String *, GraphMask_ToString, (GraphMask * __this, MethodInfo * method)); DO_APP_FUNC(0x00959C40, GraphMask, GraphMask_FromGraphName, (String * graphName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5C90, GraphMask_FromGraphName__MethodInfo); DO_APP_FUNC(0x003AE050, void, GraphMask_c_DisplayClass12_0__ctor, (GraphMask_c_DisplayClass12_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00959ED0, bool, GraphMask_c_DisplayClass12_0__FromGraphName_b__0, (GraphMask_c_DisplayClass12_0 * __this, NavGraph * g, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5C98, GraphMask_c_DisplayClass12_0__FromGraphName_b__0__MethodInfo); DO_APP_FUNC(0x0084C240, void, OnPathDelegate__ctor, (OnPathDelegate * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EE650, void, OnPathDelegate_Invoke, (OnPathDelegate * __this, Path_1 * p, MethodInfo * method)); DO_APP_FUNC(0x003EEA20, IAsyncResult *, OnPathDelegate_BeginInvoke, (OnPathDelegate * __this, Path_1 * p, AsyncCallback * callback, Object * object, MethodInfo * method)); @@ -76590,18 +87371,21 @@ DO_APP_FUNC(0x0095A400, void, AstarData_SetData, (AstarData * __this, Byte__Arra DO_APP_FUNC(0x0095A410, void, AstarData_Awake, (AstarData * __this, MethodInfo * method)); DO_APP_FUNC(0x0095A5A0, void, AstarData_LockGraphStructure, (AstarData * __this, bool allowAddingGraphs, MethodInfo * method)); DO_APP_FUNC(0x0095A600, void, AstarData_UnlockGraphStructure, (AstarData * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5C70, AstarData_UnlockGraphStructure__MethodInfo); DO_APP_FUNC(0x0095A6B0, PathProcessor_GraphUpdateLock, AstarData_AssertSafe, (AstarData * __this, bool onlyAddingGraph, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5C60, AstarData_AssertSafe__MethodInfo); DO_APP_FUNC(0x0095A990, void, AstarData_GetNodes, (AstarData * __this, Action_1_Pathfinding_GraphNode_ * callback, MethodInfo * method)); DO_APP_FUNC(0x0095AA20, void, AstarData_UpdateShortcuts, (AstarData * __this, MethodInfo * method)); DO_APP_FUNC(0x0095AEC0, void, AstarData_LoadFromCache, (AstarData * __this, MethodInfo * method)); DO_APP_FUNC(0x0095B100, Byte__Array *, AstarData_SerializeGraphs, (AstarData * __this, MethodInfo * method)); DO_APP_FUNC(0x0095B170, Byte__Array *, AstarData_SerializeGraphs_1, (AstarData * __this, SerializeSettings * settings, MethodInfo * method)); -DO_APP_FUNC(0x0095B190, Byte__Array *, AstarData_SerializeGraphs_2, (AstarData * __this, SerializeSettings * settings, uint32_t checksum, MethodInfo * method)); +DO_APP_FUNC(0x0095B190, Byte__Array *, AstarData_SerializeGraphs_2, (AstarData * __this, SerializeSettings * settings, uint32_t * checksum, MethodInfo * method)); DO_APP_FUNC(0x0095B3D0, void, AstarData_DeserializeGraphs, (AstarData * __this, MethodInfo * method)); DO_APP_FUNC(0x0095B450, void, AstarData_ClearGraphs, (AstarData * __this, MethodInfo * method)); DO_APP_FUNC(0x0095B590, void, AstarData_OnDestroy, (AstarData * __this, MethodInfo * method)); DO_APP_FUNC(0x0095B5A0, void, AstarData_DeserializeGraphs_1, (AstarData * __this, Byte__Array * bytes, MethodInfo * method)); DO_APP_FUNC(0x0095B600, void, AstarData_DeserializeGraphsAdditive, (AstarData * __this, Byte__Array * bytes, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5BE8, AstarData_DeserializeGraphsAdditive__MethodInfo); DO_APP_FUNC(0x0095B970, void, AstarData_DeserializeGraphsPartAdditive, (AstarData * __this, AstarSerializer * sr, MethodInfo * method)); DO_APP_FUNC(0x0095BFC0, void, AstarData_FindGraphTypes, (AstarData * __this, MethodInfo * method)); DO_APP_FUNC(0x0095C2A0, Type *, AstarData_GetGraphType, (AstarData * __this, String * type, MethodInfo * method)); @@ -76610,6 +87394,7 @@ DO_APP_FUNC(0x0095C580, NavGraph *, AstarData_CreateGraph_1, (AstarData * __this DO_APP_FUNC(0x0095C6B0, NavGraph *, AstarData_AddGraph, (AstarData * __this, String * type, MethodInfo * method)); DO_APP_FUNC(0x0095C850, NavGraph *, AstarData_AddGraph_1, (AstarData * __this, Type * type, MethodInfo * method)); DO_APP_FUNC(0x0095CC20, void, AstarData_AddGraph_2, (AstarData * __this, NavGraph * graph, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5B30, AstarData_AddGraph_2__MethodInfo); DO_APP_FUNC(0x0095CF50, bool, AstarData_RemoveGraph, (AstarData * __this, NavGraph * graph, MethodInfo * method)); DO_APP_FUNC(0x0095D0F0, NavGraph *, AstarData_GetGraph, (GraphNode * node, MethodInfo * method)); DO_APP_FUNC(0x0095D270, NavGraph *, AstarData_FindGraph, (AstarData * __this, Func_2_Pathfinding_NavGraph_Boolean_ * predicate, MethodInfo * method)); @@ -76619,18 +87404,23 @@ DO_APP_FUNC(0x0095D650, IEnumerable *, AstarData_FindGraphsOfType, (AstarData * DO_APP_FUNC(0x0095D780, IEnumerable *, AstarData_GetUpdateableGraphs, (AstarData * __this, MethodInfo * method)); DO_APP_FUNC(0x0095D840, IEnumerable *, AstarData_GetRaycastableGraphs, (AstarData * __this, MethodInfo * method)); DO_APP_FUNC(0x0095D900, int32_t, AstarData_GetGraphIndex, (AstarData * __this, NavGraph * graph, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5AE0, AstarData_GetGraphIndex__MethodInfo); DO_APP_FUNC(0x0095DA20, void, AstarData__ctor, (AstarData * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AstarData_c_DisplayClass53_0__ctor, (AstarData_c_DisplayClass53_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0095DB60, void, AstarData_c_DisplayClass53_0__DeserializeGraphsPartAdditive_b__0, (AstarData_c_DisplayClass53_0 * __this, GraphNode * node, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5BB8, AstarData_c_DisplayClass53_0__DeserializeGraphsPartAdditive_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, AstarData_c_DisplayClass64_0__ctor, (AstarData_c_DisplayClass64_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0095DB90, bool, AstarData_c_DisplayClass64_0__FindGraphOfType_b__0, (AstarData_c_DisplayClass64_0 * __this, NavGraph * graph, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5B18, AstarData_c_DisplayClass64_0__FindGraphOfType_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, AstarData_c_DisplayClass65_0__ctor, (AstarData_c_DisplayClass65_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0095DBF0, bool, AstarData_c_DisplayClass65_0__FindGraphWhichInheritsFrom_b__0, (AstarData_c_DisplayClass65_0 * __this, NavGraph * graph, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5B08, AstarData_c_DisplayClass65_0__FindGraphWhichInheritsFrom_b__0__MethodInfo); DO_APP_FUNC(0x0095DC40, void, AstarData_FindGraphsOfType_d_66__ctor, (AstarData_FindGraphsOfType_d_66 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AstarData_FindGraphsOfType_d_66_System_IDisposable_Dispose, (AstarData_FindGraphsOfType_d_66 * __this, MethodInfo * method)); DO_APP_FUNC(0x0095DC60, bool, AstarData_FindGraphsOfType_d_66_MoveNext, (AstarData_FindGraphsOfType_d_66 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, AstarData_FindGraphsOfType_d_66_System_Collections_Generic_IEnumerator_System_Object__get_Current, (AstarData_FindGraphsOfType_d_66 * __this, MethodInfo * method)); DO_APP_FUNC(0x0095DD80, void, AstarData_FindGraphsOfType_d_66_System_Collections_IEnumerator_Reset, (AstarData_FindGraphsOfType_d_66 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5AD8, AstarData_FindGraphsOfType_d_66_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, AstarData_FindGraphsOfType_d_66_System_Collections_IEnumerator_get_Current, (AstarData_FindGraphsOfType_d_66 * __this, MethodInfo * method)); DO_APP_FUNC(0x0095DDD0, IEnumerator_1_System_Object_ *, AstarData_FindGraphsOfType_d_66_System_Collections_Generic_IEnumerable_System_Object__GetEnumerator, (AstarData_FindGraphsOfType_d_66 * __this, MethodInfo * method)); DO_APP_FUNC(0x0095DDD0, IEnumerator *, AstarData_FindGraphsOfType_d_66_System_Collections_IEnumerable_GetEnumerator, (AstarData_FindGraphsOfType_d_66 * __this, MethodInfo * method)); @@ -76639,6 +87429,7 @@ DO_APP_FUNC(0x003AE050, void, AstarData_GetUpdateableGraphs_d_67_System_IDisposa DO_APP_FUNC(0x0095DF20, bool, AstarData_GetUpdateableGraphs_d_67_MoveNext, (AstarData_GetUpdateableGraphs_d_67 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, AstarData_GetUpdateableGraphs_d_67_System_Collections_Generic_IEnumerator_System_Object__get_Current, (AstarData_GetUpdateableGraphs_d_67 * __this, MethodInfo * method)); DO_APP_FUNC(0x0095E020, void, AstarData_GetUpdateableGraphs_d_67_System_Collections_IEnumerator_Reset, (AstarData_GetUpdateableGraphs_d_67 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5AC8, AstarData_GetUpdateableGraphs_d_67_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, AstarData_GetUpdateableGraphs_d_67_System_Collections_IEnumerator_get_Current, (AstarData_GetUpdateableGraphs_d_67 * __this, MethodInfo * method)); DO_APP_FUNC(0x0095E070, IEnumerator_1_System_Object_ *, AstarData_GetUpdateableGraphs_d_67_System_Collections_Generic_IEnumerable_System_Object__GetEnumerator, (AstarData_GetUpdateableGraphs_d_67 * __this, MethodInfo * method)); DO_APP_FUNC(0x0095E070, IEnumerator *, AstarData_GetUpdateableGraphs_d_67_System_Collections_IEnumerable_GetEnumerator, (AstarData_GetUpdateableGraphs_d_67 * __this, MethodInfo * method)); @@ -76647,6 +87438,7 @@ DO_APP_FUNC(0x003AE050, void, AstarData_GetRaycastableGraphs_d_68_System_IDispos DO_APP_FUNC(0x0095E160, bool, AstarData_GetRaycastableGraphs_d_68_MoveNext, (AstarData_GetRaycastableGraphs_d_68 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, AstarData_GetRaycastableGraphs_d_68_System_Collections_Generic_IEnumerator_System_Object__get_Current, (AstarData_GetRaycastableGraphs_d_68 * __this, MethodInfo * method)); DO_APP_FUNC(0x0095E260, void, AstarData_GetRaycastableGraphs_d_68_System_Collections_IEnumerator_Reset, (AstarData_GetRaycastableGraphs_d_68 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5AC0, AstarData_GetRaycastableGraphs_d_68_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, AstarData_GetRaycastableGraphs_d_68_System_Collections_IEnumerator_get_Current, (AstarData_GetRaycastableGraphs_d_68 * __this, MethodInfo * method)); DO_APP_FUNC(0x0095E2B0, IEnumerator_1_System_Object_ *, AstarData_GetRaycastableGraphs_d_68_System_Collections_Generic_IEnumerable_System_Object__GetEnumerator, (AstarData_GetRaycastableGraphs_d_68 * __this, MethodInfo * method)); DO_APP_FUNC(0x0095E2B0, IEnumerator *, AstarData_GetRaycastableGraphs_d_68_System_Collections_IEnumerable_GetEnumerator, (AstarData_GetRaycastableGraphs_d_68 * __this, MethodInfo * method)); @@ -76690,23 +87482,23 @@ DO_APP_FUNC(0x0095FF70, bool, VectorMath_SegmentsIntersect, (Int2 start1, Int2 e DO_APP_FUNC(0x00960090, bool, VectorMath_SegmentsIntersectXZ, (Int3 start1, Int3 end1, Int3 start2, Int3 end2, MethodInfo * method)); DO_APP_FUNC(0x00960290, bool, VectorMath_SegmentsIntersectXZ_1, (Vector3 start1, Vector3 end1, Vector3 start2, Vector3 end2, MethodInfo * method)); DO_APP_FUNC(0x00960370, Vector3, VectorMath_LineDirIntersectionPointXZ, (Vector3 start1, Vector3 dir1, Vector3 start2, Vector3 dir2, MethodInfo * method)); -DO_APP_FUNC(0x00960430, Vector3, VectorMath_LineDirIntersectionPointXZ_1, (Vector3 start1, Vector3 dir1, Vector3 start2, Vector3 dir2, bool intersects, MethodInfo * method)); +DO_APP_FUNC(0x00960430, Vector3, VectorMath_LineDirIntersectionPointXZ_1, (Vector3 start1, Vector3 dir1, Vector3 start2, Vector3 dir2, bool * intersects, MethodInfo * method)); DO_APP_FUNC(0x00960500, bool, VectorMath_RaySegmentIntersectXZ, (Int3 start1, Int3 end1, Int3 start2, Int3 end2, MethodInfo * method)); -DO_APP_FUNC(0x00960600, bool, VectorMath_LineIntersectionFactorXZ, (Int3 start1, Int3 end1, Int3 start2, Int3 end2, float factor1, float factor2, MethodInfo * method)); -DO_APP_FUNC(0x00960700, bool, VectorMath_LineIntersectionFactorXZ_1, (Vector3 start1, Vector3 end1, Vector3 start2, Vector3 end2, float factor1, float factor2, MethodInfo * method)); +DO_APP_FUNC(0x00960600, bool, VectorMath_LineIntersectionFactorXZ, (Int3 start1, Int3 end1, Int3 start2, Int3 end2, float * factor1, float * factor2, MethodInfo * method)); +DO_APP_FUNC(0x00960700, bool, VectorMath_LineIntersectionFactorXZ_1, (Vector3 start1, Vector3 end1, Vector3 start2, Vector3 end2, float * factor1, float * factor2, MethodInfo * method)); DO_APP_FUNC(0x009607F0, float, VectorMath_LineRayIntersectionFactorXZ, (Int3 start1, Int3 end1, Int3 start2, Int3 end2, MethodInfo * method)); DO_APP_FUNC(0x009608D0, float, VectorMath_LineIntersectionFactorXZ_2, (Vector3 start1, Vector3 end1, Vector3 start2, Vector3 end2, MethodInfo * method)); DO_APP_FUNC(0x00960950, Vector3, VectorMath_LineIntersectionPointXZ, (Vector3 start1, Vector3 end1, Vector3 start2, Vector3 end2, MethodInfo * method)); -DO_APP_FUNC(0x00960A60, Vector3, VectorMath_LineIntersectionPointXZ_1, (Vector3 start1, Vector3 end1, Vector3 start2, Vector3 end2, bool intersects, MethodInfo * method)); +DO_APP_FUNC(0x00960A60, Vector3, VectorMath_LineIntersectionPointXZ_1, (Vector3 start1, Vector3 end1, Vector3 start2, Vector3 end2, bool * intersects, MethodInfo * method)); DO_APP_FUNC(0x00960B70, Vector2, VectorMath_LineIntersectionPoint, (Vector2 start1, Vector2 end1, Vector2 start2, Vector2 end2, MethodInfo * method)); -DO_APP_FUNC(0x00960C50, Vector2, VectorMath_LineIntersectionPoint_1, (Vector2 start1, Vector2 end1, Vector2 start2, Vector2 end2, bool intersects, MethodInfo * method)); -DO_APP_FUNC(0x00960D40, Vector3, VectorMath_SegmentIntersectionPointXZ, (Vector3 start1, Vector3 end1, Vector3 start2, Vector3 end2, bool intersects, MethodInfo * method)); +DO_APP_FUNC(0x00960C50, Vector2, VectorMath_LineIntersectionPoint_1, (Vector2 start1, Vector2 end1, Vector2 start2, Vector2 end2, bool * intersects, MethodInfo * method)); +DO_APP_FUNC(0x00960D40, Vector3, VectorMath_SegmentIntersectionPointXZ, (Vector3 start1, Vector3 end1, Vector3 start2, Vector3 end2, bool * intersects, MethodInfo * method)); DO_APP_FUNC(0x00960E90, bool, VectorMath_SegmentIntersectsBounds, (Bounds bounds, Vector3 a, Vector3 b, MethodInfo * method)); DO_APP_FUNC(0x009611C0, float, VectorMath_LineCircleIntersectionFactor, (Vector3 circleCenter, Vector3 linePoint1, Vector3 linePoint2, float radius, MethodInfo * method)); DO_APP_FUNC(0x009613B0, bool, VectorMath_ReversesFaceOrientations, (Matrix4x4 matrix, MethodInfo * method)); DO_APP_FUNC(0x00961560, bool, VectorMath_ReversesFaceOrientationsXZ, (Matrix4x4 matrix, MethodInfo * method)); -DO_APP_FUNC(0x009615E0, Vector3, VectorMath_Normalize, (Vector3 v, float magnitude, MethodInfo * method)); -DO_APP_FUNC(0x009616A0, Vector2, VectorMath_Normalize_1, (Vector2 v, float magnitude, MethodInfo * method)); +DO_APP_FUNC(0x009615E0, Vector3, VectorMath_Normalize, (Vector3 v, float * magnitude, MethodInfo * method)); +DO_APP_FUNC(0x009616A0, Vector2, VectorMath_Normalize_1, (Vector2 v, float * magnitude, MethodInfo * method)); DO_APP_FUNC(0x00961730, Vector3, VectorMath_ClampMagnitudeXZ, (Vector3 v, float maxMagnitude, MethodInfo * method)); DO_APP_FUNC(0x009617D0, float, VectorMath_MagnitudeXZ, (Vector3 v, MethodInfo * method)); DO_APP_FUNC(0x00961800, float, AstarMath_MapTo, (float startMin, float startMax, float targetMin, float targetMax, float value, MethodInfo * method)); @@ -76724,7 +87516,7 @@ DO_APP_FUNC(0x00962450, Vector3__Array *, Polygon_ConvexHullXZ, (Vector3__Array DO_APP_FUNC(0x00962770, Vector2, Polygon_ClosestPointOnTriangle, (Vector2 a, Vector2 b, Vector2 c, Vector2 p, MethodInfo * method)); DO_APP_FUNC(0x00962A60, Vector3, Polygon_ClosestPointOnTriangleXZ, (Vector3 a, Vector3 b, Vector3 c, Vector3 p, MethodInfo * method)); DO_APP_FUNC(0x00962E50, Vector3, Polygon_ClosestPointOnTriangle_1, (Vector3 a, Vector3 b, Vector3 c, Vector3 p, MethodInfo * method)); -DO_APP_FUNC(0x00963330, void, Polygon_CompressMesh, (List_1_Pathfinding_Int3_ * vertices, List_1_System_Int32_ * triangles, Int3__Array * outVertices, Int32__Array * outTriangles, MethodInfo * method)); +DO_APP_FUNC(0x00963330, void, Polygon_CompressMesh, (List_1_Pathfinding_Int3_ * vertices, List_1_System_Int32_ * triangles, Int3__Array * * outVertices, Int32__Array * * outTriangles, MethodInfo * method)); DO_APP_FUNC(0x009639E0, void, Polygon_TraceContours, (Dictionary_2_System_Int32_System_Int32_ * outline, HashSet_1_System_Int32_ * hasInEdge, Action_2_System_Collections_Generic_List_1_Boolean_ * results, MethodInfo * method)); DO_APP_FUNC(0x00963CF0, void, Polygon_Subdivide, (List_1_UnityEngine_Vector3_ * points, List_1_UnityEngine_Vector3_ * result, int32_t subSegments, MethodInfo * method)); DO_APP_FUNC(0x00963F80, void, Polygon__cctor, (MethodInfo * method)); @@ -76755,7 +87547,8 @@ DO_APP_FUNC(0x009679D0, Bounds, GraphUpdateShape_GetBounds_2, (Vector3__Array * DO_APP_FUNC(0x00967E00, bool, GraphUpdateShape_Contains, (GraphUpdateShape * __this, GraphNode * node, MethodInfo * method)); DO_APP_FUNC(0x00967E80, bool, GraphUpdateShape_Contains_1, (GraphUpdateShape * __this, Vector3 point, MethodInfo * method)); DO_APP_FUNC(0x00968190, Transform *, AnimationLink_SearchRec, (Transform * tr, String * name, MethodInfo * method)); -DO_APP_FUNC(0x009683D0, void, AnimationLink_CalculateOffsets, (AnimationLink * __this, List_1_UnityEngine_Vector3_ * trace, Vector3 endPosition, MethodInfo * method)); +DO_APP_FUNC(0x009683D0, void, AnimationLink_CalculateOffsets, (AnimationLink * __this, List_1_UnityEngine_Vector3_ * trace, Vector3 * endPosition, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB59C8, AnimationLink_CalculateOffsets__MethodInfo); DO_APP_FUNC(0x00969560, void, AnimationLink_OnDrawGizmosSelected, (AnimationLink * __this, MethodInfo * method)); DO_APP_FUNC(0x009697A0, void, AnimationLink__ctor, (AnimationLink * __this, MethodInfo * method)); DO_APP_FUNC(0x009698E0, String *, AnimationLink_LinkClip_get_name, (AnimationLink_LinkClip * __this, MethodInfo * method)); @@ -76765,24 +87558,38 @@ DO_APP_FUNC(0x00969E80, void, AstarDebugger_LateUpdate, (AstarDebugger * __this, DO_APP_FUNC(0x0096A840, void, AstarDebugger_DrawGraphLine, (AstarDebugger * __this, int32_t index, Matrix4x4 m, float x1, float x2, float y1, float y2, Color color, MethodInfo * method)); DO_APP_FUNC(0x0096ABA0, void, AstarDebugger_OnGUI, (AstarDebugger * __this, MethodInfo * method)); DO_APP_FUNC(0x0096C880, void, AstarDebugger__ctor, (AstarDebugger * __this, MethodInfo * method)); -DO_APP_FUNC(0x0096DD20, void, AstarDebugger_PathTypeDebug__ctor, (AstarDebugger_PathTypeDebug__Boxed * __this, String * name, Func_1_Int32_ * getSize, Func_1_Int32_ * getTotalCreated, MethodInfo * method)); -DO_APP_FUNC(0x0096DE20, void, AstarDebugger_PathTypeDebug_Print, (AstarDebugger_PathTypeDebug__Boxed * __this, StringBuilder * text, MethodInfo * method)); +DO_APP_FUNC(0x0096DD20, void, AstarDebugger_PathTypeDebug__ctor, (AstarDebugger_PathTypeDebug * __this, String * name, Func_1_Int32_ * getSize, Func_1_Int32_ * getTotalCreated, MethodInfo * method)); +DO_APP_FUNC(0x0096DE20, void, AstarDebugger_PathTypeDebug_Print, (AstarDebugger_PathTypeDebug * __this, StringBuilder * text, MethodInfo * method)); DO_APP_FUNC(0x0096DF70, void, AstarDebugger_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AstarDebugger_c__ctor, (AstarDebugger_c * __this, MethodInfo * method)); DO_APP_FUNC(0x0096E020, int32_t, AstarDebugger_c___ctor_b__42_0, (AstarDebugger_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5908, AstarDebugger_c___ctor_b__42_0__MethodInfo); DO_APP_FUNC(0x0096E0C0, int32_t, AstarDebugger_c___ctor_b__42_1, (AstarDebugger_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB58E0, AstarDebugger_c___ctor_b__42_1__MethodInfo); DO_APP_FUNC(0x0096E160, int32_t, AstarDebugger_c___ctor_b__42_2, (AstarDebugger_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB58B8, AstarDebugger_c___ctor_b__42_2__MethodInfo); DO_APP_FUNC(0x0096E200, int32_t, AstarDebugger_c___ctor_b__42_3, (AstarDebugger_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB58B0, AstarDebugger_c___ctor_b__42_3__MethodInfo); DO_APP_FUNC(0x0096E2A0, int32_t, AstarDebugger_c___ctor_b__42_4, (AstarDebugger_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB58C8, AstarDebugger_c___ctor_b__42_4__MethodInfo); DO_APP_FUNC(0x0096E340, int32_t, AstarDebugger_c___ctor_b__42_5, (AstarDebugger_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB58C0, AstarDebugger_c___ctor_b__42_5__MethodInfo); DO_APP_FUNC(0x0096E3E0, int32_t, AstarDebugger_c___ctor_b__42_6, (AstarDebugger_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5898, AstarDebugger_c___ctor_b__42_6__MethodInfo); DO_APP_FUNC(0x0096E480, int32_t, AstarDebugger_c___ctor_b__42_7, (AstarDebugger_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5890, AstarDebugger_c___ctor_b__42_7__MethodInfo); DO_APP_FUNC(0x0096E520, int32_t, AstarDebugger_c___ctor_b__42_8, (AstarDebugger_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB58A8, AstarDebugger_c___ctor_b__42_8__MethodInfo); DO_APP_FUNC(0x0096E5C0, int32_t, AstarDebugger_c___ctor_b__42_9, (AstarDebugger_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB58A0, AstarDebugger_c___ctor_b__42_9__MethodInfo); DO_APP_FUNC(0x0096E660, int32_t, AstarDebugger_c___ctor_b__42_10, (AstarDebugger_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5900, AstarDebugger_c___ctor_b__42_10__MethodInfo); DO_APP_FUNC(0x0096E700, int32_t, AstarDebugger_c___ctor_b__42_11, (AstarDebugger_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB58D8, AstarDebugger_c___ctor_b__42_11__MethodInfo); DO_APP_FUNC(0x0096E7A0, int32_t, AstarDebugger_c___ctor_b__42_12, (AstarDebugger_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB58D0, AstarDebugger_c___ctor_b__42_12__MethodInfo); DO_APP_FUNC(0x0096E840, int32_t, AstarDebugger_c___ctor_b__42_13, (AstarDebugger_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB58E8, AstarDebugger_c___ctor_b__42_13__MethodInfo); DO_APP_FUNC(0x0096E8E0, bool, BinaryHeap_get_isEmpty, (BinaryHeap * __this, MethodInfo * method)); DO_APP_FUNC(0x0096E8F0, int32_t, BinaryHeap_RoundUpToNextMultipleMod1, (int32_t v, MethodInfo * method)); DO_APP_FUNC(0x0096E920, void, BinaryHeap__ctor, (BinaryHeap * __this, int32_t capacity, MethodInfo * method)); @@ -76790,12 +87597,15 @@ DO_APP_FUNC(0x0096EA00, void, BinaryHeap_Clear, (BinaryHeap * __this, MethodInfo DO_APP_FUNC(0x0096EA60, PathNode *, BinaryHeap_GetNode, (BinaryHeap * __this, int32_t i, MethodInfo * method)); DO_APP_FUNC(0x0096EAA0, void, BinaryHeap_SetF, (BinaryHeap * __this, int32_t i, uint32_t f, MethodInfo * method)); DO_APP_FUNC(0x0096EAD0, void, BinaryHeap_Expand, (BinaryHeap * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB57E0, BinaryHeap_Expand__MethodInfo); DO_APP_FUNC(0x0096EC90, void, BinaryHeap_Add, (BinaryHeap * __this, PathNode * node, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB57F0, BinaryHeap_Add__MethodInfo); DO_APP_FUNC(0x0096EE10, void, BinaryHeap_DecreaseKey, (BinaryHeap * __this, BinaryHeap_Tuple node, uint16_t index, MethodInfo * method)); DO_APP_FUNC(0x0096EFD0, PathNode *, BinaryHeap_Remove, (BinaryHeap * __this, MethodInfo * method)); DO_APP_FUNC(0x0096F420, void, BinaryHeap_Validate, (BinaryHeap * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB57B8, BinaryHeap_Validate__MethodInfo); DO_APP_FUNC(0x0096F7C0, void, BinaryHeap_Rebuild, (BinaryHeap * __this, MethodInfo * method)); -DO_APP_FUNC(0x0096F940, void, BinaryHeap_Tuple__ctor, (BinaryHeap_Tuple__Boxed * __this, uint32_t f, PathNode * node, MethodInfo * method)); +DO_APP_FUNC(0x0096F940, void, BinaryHeap_Tuple__ctor, (BinaryHeap_Tuple * __this, uint32_t f, PathNode * node, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GraphEditorBase__ctor, (GraphEditorBase * __this, MethodInfo * method)); DO_APP_FUNC(0x0096F9A0, void, GraphModifier_FindAllModifiers, (MethodInfo * method)); DO_APP_FUNC(0x0096FB20, void, GraphModifier_TriggerEvent, (GraphModifier_EventType__Enum type, MethodInfo * method)); @@ -76825,20 +87635,27 @@ DO_APP_FUNC(0x009718A0, void, GraphUpdateProcessor_EnableMultithreading, (GraphU DO_APP_FUNC(0x00971B00, void, GraphUpdateProcessor_DisableMultithreading, (GraphUpdateProcessor * __this, MethodInfo * method)); DO_APP_FUNC(0x00971C60, void, GraphUpdateProcessor_AddToQueue, (GraphUpdateProcessor * __this, GraphUpdateObject * ob, MethodInfo * method)); DO_APP_FUNC(0x00971CC0, void, GraphUpdateProcessor_QueueGraphUpdatesInternal, (GraphUpdateProcessor * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5738, GraphUpdateProcessor_QueueGraphUpdatesInternal__MethodInfo); DO_APP_FUNC(0x00972180, bool, GraphUpdateProcessor_ProcessGraphUpdates, (GraphUpdateProcessor * __this, bool force, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5728, GraphUpdateProcessor_ProcessGraphUpdates__MethodInfo); DO_APP_FUNC(0x00972270, bool, GraphUpdateProcessor_ProcessRegularUpdates, (GraphUpdateProcessor * __this, bool force, MethodInfo * method)); DO_APP_FUNC(0x00972630, bool, GraphUpdateProcessor_StartAsyncUpdatesIfQueued, (GraphUpdateProcessor * __this, MethodInfo * method)); DO_APP_FUNC(0x009726A0, void, GraphUpdateProcessor_ProcessPostUpdates, (GraphUpdateProcessor * __this, MethodInfo * method)); DO_APP_FUNC(0x00972850, void, GraphUpdateProcessor_ProcessGraphUpdatesAsync, (GraphUpdateProcessor * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5720, GraphUpdateProcessor_ProcessGraphUpdatesAsync__MethodInfo); DO_APP_FUNC(0x00972EF0, List_1_UnityEngine_Vector3_ *, GraphUtilities_GetContours, (NavGraph * graph, MethodInfo * method)); DO_APP_FUNC(0x00973170, void, GraphUtilities_GetContours_1, (INavmesh * navmesh, Action_2_System_Collections_Generic_List_1_Boolean__1 * results, MethodInfo * method)); DO_APP_FUNC(0x009735C0, void, GraphUtilities_GetContours_2, (GridGraph * grid, Action_1_UnityEngine_Vector3__1 * callback, float yMergeThreshold, GridNodeBase__Array * nodes, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GraphUtilities_c_DisplayClass0_0__ctor, (GraphUtilities_c_DisplayClass0_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x009741B0, void, GraphUtilities_c_DisplayClass0_0__GetContours_b__0, (GraphUtilities_c_DisplayClass0_0 * __this, List_1_Pathfinding_Int3_ * vertices, bool cycle, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB71F0, GraphUtilities_c_DisplayClass0_0__GetContours_b__0__MethodInfo); DO_APP_FUNC(0x00974460, void, GraphUtilities_c_DisplayClass0_0__GetContours_b__1, (GraphUtilities_c_DisplayClass0_0 * __this, Vector3__Array * vertices, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7208, GraphUtilities_c_DisplayClass0_0__GetContours_b__1__MethodInfo); DO_APP_FUNC(0x003AE050, void, GraphUtilities_c_DisplayClass1_0__ctor, (GraphUtilities_c_DisplayClass1_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00974610, void, GraphUtilities_c_DisplayClass1_0__GetContours_b__0, (GraphUtilities_c_DisplayClass1_0 * __this, GraphNode * _node, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB71D0, GraphUtilities_c_DisplayClass1_0__GetContours_b__0__MethodInfo); DO_APP_FUNC(0x009749E0, void, GraphUtilities_c_DisplayClass1_0__GetContours_b__1, (GraphUtilities_c_DisplayClass1_0 * __this, List_1_System_Int32_ * chain, bool cycle, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB71B8, GraphUtilities_c_DisplayClass1_0__GetContours_b__1__MethodInfo); DO_APP_FUNC(0x003C7300, int32_t, HierarchicalGraph_get_version, (HierarchicalGraph * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7310, void, HierarchicalGraph_set_version, (HierarchicalGraph * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x00974C40, void, HierarchicalGraph__ctor, (HierarchicalGraph * __this, MethodInfo * method)); @@ -76846,6 +87663,7 @@ DO_APP_FUNC(0x00975100, void, HierarchicalGraph_Grow, (HierarchicalGraph * __thi DO_APP_FUNC(0x009756B0, int32_t, HierarchicalGraph_GetHierarchicalNodeIndex, (HierarchicalGraph * __this, MethodInfo * method)); DO_APP_FUNC(0x00975730, void, HierarchicalGraph_OnCreatedNode, (HierarchicalGraph * __this, GraphNode * node, MethodInfo * method)); DO_APP_FUNC(0x00975880, void, HierarchicalGraph_AddDirtyNode, (HierarchicalGraph * __this, GraphNode * node, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7120, HierarchicalGraph_AddDirtyNode__MethodInfo); DO_APP_FUNC(0x00975C70, int32_t, HierarchicalGraph_get_NumConnectedComponents, (HierarchicalGraph * __this, MethodInfo * method)); DO_APP_FUNC(0x00975C80, void, HierarchicalGraph_set_NumConnectedComponents, (HierarchicalGraph * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x00975C90, uint32_t, HierarchicalGraph_GetConnectedComponent, (HierarchicalGraph * __this, int32_t hierarchicalNodeIndex, MethodInfo * method)); @@ -76856,10 +87674,12 @@ DO_APP_FUNC(0x00976350, void, HierarchicalGraph_FloodFill, (HierarchicalGraph * DO_APP_FUNC(0x00976590, void, HierarchicalGraph_FindHierarchicalNodeChildren, (HierarchicalGraph * __this, int32_t hierarchicalNode, GraphNode * startNode, MethodInfo * method)); DO_APP_FUNC(0x009768D0, void, HierarchicalGraph_OnDrawGizmos, (HierarchicalGraph * __this, RetainedGizmos * gizmos, MethodInfo * method)); DO_APP_FUNC(0x00976E50, void, HierarchicalGraph___ctor_b__22_0, (HierarchicalGraph * __this, GraphNode * neighbour, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7138, HierarchicalGraph___ctor_b__22_0__MethodInfo); DO_APP_FUNC(0x00976F90, void, HierarchicalGraph__RecalculateAll_b__34_0, (HierarchicalGraph * __this, GraphNode * node, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7108, HierarchicalGraph__RecalculateAll_b__34_0__MethodInfo); DO_APP_FUNC(0x00976FA0, Int3, Int3_get_zero, (MethodInfo * method)); -DO_APP_FUNC(0x00976FB0, void, Int3__ctor, (Int3__Boxed * __this, Vector3 position, MethodInfo * method)); -DO_APP_FUNC(0x00977060, void, Int3__ctor_1, (Int3__Boxed * __this, int32_t _x, int32_t _y, int32_t _z, MethodInfo * method)); +DO_APP_FUNC(0x00976FB0, void, Int3__ctor, (Int3 * __this, Vector3 position, MethodInfo * method)); +DO_APP_FUNC(0x00977060, void, Int3__ctor_1, (Int3 * __this, int32_t _x, int32_t _y, int32_t _z, MethodInfo * method)); DO_APP_FUNC(0x00977070, bool, Int3_op_Equality, (Int3 lhs, Int3 rhs, MethodInfo * method)); DO_APP_FUNC(0x00977090, bool, Int3_op_Inequality, (Int3 lhs, Int3 rhs, MethodInfo * method)); DO_APP_FUNC(0x009770B0, Int3, Int3_op_Explicit, (Vector3 ob, MethodInfo * method)); @@ -76871,36 +87691,36 @@ DO_APP_FUNC(0x00977250, Int3, Int3_op_Multiply, (Int3 lhs, int32_t rhs, MethodIn DO_APP_FUNC(0x00977280, Int3, Int3_op_Multiply_1, (Int3 lhs, float rhs, MethodInfo * method)); DO_APP_FUNC(0x00977340, Int3, Int3_op_Multiply_2, (Int3 lhs, double rhs, MethodInfo * method)); DO_APP_FUNC(0x00977400, Int3, Int3_op_Division, (Int3 lhs, float rhs, MethodInfo * method)); -DO_APP_FUNC(0x009774C0, int32_t, Int3_get_Item, (Int3__Boxed * __this, int32_t i, MethodInfo * method)); -DO_APP_FUNC(0x009774E0, void, Int3_set_Item, (Int3__Boxed * __this, int32_t i, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x009774C0, int32_t, Int3_get_Item, (Int3 * __this, int32_t i, MethodInfo * method)); +DO_APP_FUNC(0x009774E0, void, Int3_set_Item, (Int3 * __this, int32_t i, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x00977500, float, Int3_Angle, (Int3 lhs, Int3 rhs, MethodInfo * method)); DO_APP_FUNC(0x00977620, int32_t, Int3_Dot, (Int3 lhs, Int3 rhs, MethodInfo * method)); DO_APP_FUNC(0x00977640, int64_t, Int3_DotLong, (Int3 lhs, Int3 rhs, MethodInfo * method)); -DO_APP_FUNC(0x00977670, Int3, Int3_Normal2D, (Int3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00977690, float, Int3_get_magnitude, (Int3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00977750, int32_t, Int3_get_costMagnitude, (Int3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x009777C0, float, Int3_get_sqrMagnitude, (Int3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x009777F0, int64_t, Int3_get_sqrMagnitudeLong, (Int3__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00977670, Int3, Int3_Normal2D, (Int3 * __this, MethodInfo * method)); +DO_APP_FUNC(0x00977690, float, Int3_get_magnitude, (Int3 * __this, MethodInfo * method)); +DO_APP_FUNC(0x00977750, int32_t, Int3_get_costMagnitude, (Int3 * __this, MethodInfo * method)); +DO_APP_FUNC(0x009777C0, float, Int3_get_sqrMagnitude, (Int3 * __this, MethodInfo * method)); +DO_APP_FUNC(0x009777F0, int64_t, Int3_get_sqrMagnitudeLong, (Int3 * __this, MethodInfo * method)); DO_APP_FUNC(0x00977810, String *, Int3_op_Implicit, (Int3 obj, MethodInfo * method)); -DO_APP_FUNC(0x00977820, String *, Int3_ToString, (Int3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00977AC0, bool, Int3_Equals, (Int3__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x00977070, bool, Int3_Equals_1, (Int3__Boxed * __this, Int3 other, MethodInfo * method)); -DO_APP_FUNC(0x00977B60, int32_t, Int3_GetHashCode, (Int3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00977B80, void, Int2__ctor, (Int2__Boxed * __this, int32_t x, int32_t y, MethodInfo * method)); -DO_APP_FUNC(0x00977B90, int64_t, Int2_get_sqrMagnitudeLong, (Int2__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00977820, String *, Int3_ToString, (Int3 * __this, MethodInfo * method)); +DO_APP_FUNC(0x00977AC0, bool, Int3_Equals, (Int3 * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x00977070, bool, Int3_Equals_1, (Int3 * __this, Int3 other, MethodInfo * method)); +DO_APP_FUNC(0x00977B60, int32_t, Int3_GetHashCode, (Int3 * __this, MethodInfo * method)); +DO_APP_FUNC(0x00977B80, void, Int2__ctor, (Int2 * __this, int32_t x, int32_t y, MethodInfo * method)); +DO_APP_FUNC(0x00977B90, int64_t, Int2_get_sqrMagnitudeLong, (Int2 * __this, MethodInfo * method)); DO_APP_FUNC(0x00977BB0, Int2, Int2_op_Addition, (Int2 a, Int2 b, MethodInfo * method)); DO_APP_FUNC(0x00977BD0, Int2, Int2_op_Subtraction, (Int2 a, Int2 b, MethodInfo * method)); DO_APP_FUNC(0x00977BF0, bool, Int2_op_Equality, (Int2 a, Int2 b, MethodInfo * method)); DO_APP_FUNC(0x00977C10, bool, Int2_op_Inequality, (Int2 a, Int2 b, MethodInfo * method)); DO_APP_FUNC(0x00977C30, int64_t, Int2_DotLong, (Int2 a, Int2 b, MethodInfo * method)); -DO_APP_FUNC(0x00977C60, bool, Int2_Equals, (Int2__Boxed * __this, Object * o, MethodInfo * method)); -DO_APP_FUNC(0x00977CE0, bool, Int2_Equals_1, (Int2__Boxed * __this, Int2 other, MethodInfo * method)); -DO_APP_FUNC(0x00977D00, int32_t, Int2_GetHashCode, (Int2__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00977C60, bool, Int2_Equals, (Int2 * __this, Object * o, MethodInfo * method)); +DO_APP_FUNC(0x00977CE0, bool, Int2_Equals_1, (Int2 * __this, Int2 other, MethodInfo * method)); +DO_APP_FUNC(0x00977D00, int32_t, Int2_GetHashCode, (Int2 * __this, MethodInfo * method)); DO_APP_FUNC(0x00977D10, Int2, Int2_Min, (Int2 a, Int2 b, MethodInfo * method)); DO_APP_FUNC(0x00977D90, Int2, Int2_Max, (Int2 a, Int2 b, MethodInfo * method)); DO_APP_FUNC(0x00977E10, Int2, Int2_FromInt3XZ, (Int3 o, MethodInfo * method)); DO_APP_FUNC(0x00977E30, Int3, Int2_ToInt3XZ, (Int2 o, MethodInfo * method)); -DO_APP_FUNC(0x00977E50, String *, Int2_ToString, (Int2__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00977E50, String *, Int2_ToString, (Int2 * __this, MethodInfo * method)); DO_APP_FUNC(0x00978060, Transform *, NodeLink_get_Start, (NodeLink * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7320, Transform *, NodeLink_get_End, (NodeLink * __this, MethodInfo * method)); DO_APP_FUNC(0x009780B0, void, NodeLink_OnPostScan, (NodeLink * __this, MethodInfo * method)); @@ -76910,7 +87730,9 @@ DO_APP_FUNC(0x00978370, void, NodeLink_Apply, (NodeLink * __this, MethodInfo * m DO_APP_FUNC(0x00978A50, void, NodeLink_OnDrawGizmos, (NodeLink * __this, MethodInfo * method)); DO_APP_FUNC(0x00978E30, void, NodeLink__ctor, (NodeLink * __this, MethodInfo * method)); DO_APP_FUNC(0x00978EC0, bool, NodeLink__OnPostScan_b__8_0, (NodeLink * __this, bool force, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB70B0, NodeLink__OnPostScan_b__8_0__MethodInfo); DO_APP_FUNC(0x00978EC0, bool, NodeLink__OnGraphsPostUpdate_b__10_0, (NodeLink * __this, bool force, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB70A0, NodeLink__OnGraphsPostUpdate_b__10_0__MethodInfo); DO_APP_FUNC(0x00978EE0, NodeLink2 *, NodeLink2_GetNodeLink, (GraphNode * node, MethodInfo * method)); DO_APP_FUNC(0x00978060, Transform *, NodeLink2_get_StartTransform, (NodeLink2 * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7320, Transform *, NodeLink2_get_EndTransform, (NodeLink2 * __this, MethodInfo * method)); @@ -76933,11 +87755,14 @@ DO_APP_FUNC(0x0097AE00, void, NodeLink2_OnDrawGizmos, (NodeLink2 * __this, Metho DO_APP_FUNC(0x0097AE10, void, NodeLink2_OnDrawGizmos_1, (NodeLink2 * __this, bool selected, MethodInfo * method)); DO_APP_FUNC(0x0097BBF0, void, NodeLink2_SerializeReferences, (GraphSerializationContext * ctx, MethodInfo * method)); DO_APP_FUNC(0x0097C050, void, NodeLink2_DeserializeReferences, (GraphSerializationContext * ctx, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7028, NodeLink2_DeserializeReferences__MethodInfo); DO_APP_FUNC(0x0097C750, void, NodeLink2__ctor, (NodeLink2 * __this, MethodInfo * method)); DO_APP_FUNC(0x0097C7E0, void, NodeLink2__cctor, (MethodInfo * method)); DO_APP_FUNC(0x0097C910, void, NodeLink3Node__ctor, (NodeLink3Node * __this, AstarPath * active, MethodInfo * method)); DO_APP_FUNC(0x0097C920, bool, NodeLink3Node_GetPortal, (NodeLink3Node * __this, GraphNode * other, List_1_UnityEngine_Vector3_ * left, List_1_UnityEngine_Vector3_ * right, bool backwards, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6FE0, NodeLink3Node_GetPortal__MethodInfo); DO_APP_FUNC(0x0097CA60, GraphNode *, NodeLink3Node_GetOther, (NodeLink3Node * __this, GraphNode * a, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6FC0, NodeLink3Node_GetOther__MethodInfo); DO_APP_FUNC(0x0097CC20, GraphNode *, NodeLink3Node_GetOtherInternal, (NodeLink3Node * __this, GraphNode * a, MethodInfo * method)); DO_APP_FUNC(0x0097CC70, NodeLink3 *, NodeLink3_GetNodeLink, (GraphNode * node, MethodInfo * method)); DO_APP_FUNC(0x00978060, Transform *, NodeLink3_get_StartTransform, (NodeLink3 * __this, MethodInfo * method)); @@ -76958,7 +87783,9 @@ DO_APP_FUNC(0x0097FB70, void, NodeLink3_OnDrawGizmos_1, (NodeLink3 * __this, boo DO_APP_FUNC(0x00980950, void, NodeLink3__ctor, (NodeLink3 * __this, MethodInfo * method)); DO_APP_FUNC(0x009809E0, void, NodeLink3__cctor, (MethodInfo * method)); DO_APP_FUNC(0x00980B10, bool, NodeLink3__OnPostScan_b__20_0, (NodeLink3 * __this, bool force, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6FB8, NodeLink3__OnPostScan_b__20_0__MethodInfo); DO_APP_FUNC(0x00980B30, void, PathPool_Pool, (Path_1 * path, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6EC0, PathPool_Pool__MethodInfo); DO_APP_FUNC(0x00980F30, int32_t, PathPool_GetTotalCreated, (Type * type, MethodInfo * method)); DO_APP_FUNC(0x00981010, int32_t, PathPool_GetSize, (Type * type, MethodInfo * method)); DO_APP_FUNC(0x009810D0, void, PathPool__cctor, (MethodInfo * method)); @@ -76971,27 +87798,32 @@ DO_APP_FUNC(0x009817E0, void, PathProcessor_remove_OnQueueUnblocked, (PathProces DO_APP_FUNC(0x009818D0, int32_t, PathProcessor_get_NumThreads, (PathProcessor * __this, MethodInfo * method)); DO_APP_FUNC(0x009818F0, bool, PathProcessor_get_IsUsingMultithreading, (PathProcessor * __this, MethodInfo * method)); DO_APP_FUNC(0x00981900, void, PathProcessor__ctor, (PathProcessor * __this, AstarPath * astar, PathReturnQueue * returnQueue, int32_t processors, bool multithreaded, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6E40, PathProcessor__ctor__MethodInfo); DO_APP_FUNC(0x009824E0, int32_t, PathProcessor_Lock, (PathProcessor * __this, bool block, MethodInfo * method)); DO_APP_FUNC(0x00982600, void, PathProcessor_Unlock, (PathProcessor * __this, int32_t id, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6E18, PathProcessor_Unlock__MethodInfo); DO_APP_FUNC(0x009826F0, PathProcessor_GraphUpdateLock, PathProcessor_PausePathfinding, (PathProcessor * __this, bool block, MethodInfo * method)); DO_APP_FUNC(0x00982710, void, PathProcessor_TickNonMultithreaded, (PathProcessor * __this, MethodInfo * method)); DO_APP_FUNC(0x00982850, void, PathProcessor_JoinThreads, (PathProcessor * __this, MethodInfo * method)); DO_APP_FUNC(0x009829B0, void, PathProcessor_AbortThreads, (PathProcessor * __this, MethodInfo * method)); DO_APP_FUNC(0x00982A50, int32_t, PathProcessor_GetNewNodeIndex, (PathProcessor * __this, MethodInfo * method)); DO_APP_FUNC(0x00982AC0, void, PathProcessor_InitializeNode, (PathProcessor * __this, GraphNode * node, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6DE8, PathProcessor_InitializeNode__MethodInfo); DO_APP_FUNC(0x00982CF0, void, PathProcessor_DestroyNode, (PathProcessor * __this, GraphNode * node, MethodInfo * method)); DO_APP_FUNC(0x00982ED0, void, PathProcessor_CalculatePathsThreaded, (PathProcessor * __this, PathHandler * pathHandler, MethodInfo * method)); DO_APP_FUNC(0x00983990, IEnumerator *, PathProcessor_CalculatePaths, (PathProcessor * __this, PathHandler * pathHandler, MethodInfo * method)); -DO_APP_FUNC(0x00983AA0, void, PathProcessor_GraphUpdateLock__ctor, (PathProcessor_GraphUpdateLock__Boxed * __this, PathProcessor * pathProcessor, bool block, MethodInfo * method)); -DO_APP_FUNC(0x00983C20, bool, PathProcessor_GraphUpdateLock_get_Held, (PathProcessor_GraphUpdateLock__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00983CC0, void, PathProcessor_GraphUpdateLock_Release, (PathProcessor_GraphUpdateLock__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00983AA0, void, PathProcessor_GraphUpdateLock__ctor, (PathProcessor_GraphUpdateLock * __this, PathProcessor * pathProcessor, bool block, MethodInfo * method)); +DO_APP_FUNC(0x00983C20, bool, PathProcessor_GraphUpdateLock_get_Held, (PathProcessor_GraphUpdateLock * __this, MethodInfo * method)); +DO_APP_FUNC(0x00983CC0, void, PathProcessor_GraphUpdateLock_Release, (PathProcessor_GraphUpdateLock * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, PathProcessor_c_DisplayClass24_0__ctor, (PathProcessor_c_DisplayClass24_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00983DC0, void, PathProcessor_c_DisplayClass24_0___ctor_b__0, (PathProcessor_c_DisplayClass24_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6E68, PathProcessor_c_DisplayClass24_0___ctor_b__0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, PathProcessor_CalculatePaths_d_36__ctor, (PathProcessor_CalculatePaths_d_36 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, PathProcessor_CalculatePaths_d_36_System_IDisposable_Dispose, (PathProcessor_CalculatePaths_d_36 * __this, MethodInfo * method)); DO_APP_FUNC(0x00983DF0, bool, PathProcessor_CalculatePaths_d_36_MoveNext, (PathProcessor_CalculatePaths_d_36 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, PathProcessor_CalculatePaths_d_36_System_Collections_Generic_IEnumerator_System_Object__get_Current, (PathProcessor_CalculatePaths_d_36 * __this, MethodInfo * method)); DO_APP_FUNC(0x00984A20, void, PathProcessor_CalculatePaths_d_36_System_Collections_IEnumerator_Reset, (PathProcessor_CalculatePaths_d_36 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6DB8, PathProcessor_CalculatePaths_d_36_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, PathProcessor_CalculatePaths_d_36_System_Collections_IEnumerator_get_Current, (PathProcessor_CalculatePaths_d_36 * __this, MethodInfo * method)); DO_APP_FUNC(0x00984A70, void, PathReturnQueue__ctor, (PathReturnQueue * __this, Object * pathsClaimedSilentlyBy, MethodInfo * method)); DO_APP_FUNC(0x00984BA0, void, PathReturnQueue_Enqueue, (PathReturnQueue * __this, Path_1 * path, MethodInfo * method)); @@ -77009,13 +87841,15 @@ DO_APP_FUNC(0x00985B80, void, ThreadControlQueue_Push, (ThreadControlQueue * __t DO_APP_FUNC(0x00985F00, void, ThreadControlQueue_Starving, (ThreadControlQueue * __this, MethodInfo * method)); DO_APP_FUNC(0x00985F30, void, ThreadControlQueue_TerminateReceivers, (ThreadControlQueue * __this, MethodInfo * method)); DO_APP_FUNC(0x00986080, Path_1 *, ThreadControlQueue_Pop, (ThreadControlQueue * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6D68, ThreadControlQueue_Pop__MethodInfo); DO_APP_FUNC(0x00986550, void, ThreadControlQueue_ReceiverTerminated, (ThreadControlQueue * __this, MethodInfo * method)); DO_APP_FUNC(0x009865B0, Path_1 *, ThreadControlQueue_PopNoBlock, (ThreadControlQueue * __this, bool blockedBefore, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6D28, ThreadControlQueue_PopNoBlock__MethodInfo); DO_APP_FUNC(0x009869B0, void, ThreadControlQueue_QueueTerminationException__ctor, (ThreadControlQueue_QueueTerminationException * __this, MethodInfo * method)); -DO_APP_FUNC(0x00986A00, void, AstarWorkItem__ctor, (AstarWorkItem__Boxed * __this, Func_2_Boolean_Boolean_ * update, MethodInfo * method)); -DO_APP_FUNC(0x00986B60, void, AstarWorkItem__ctor_1, (AstarWorkItem__Boxed * __this, Func_3_Pathfinding_IWorkItemContext_Boolean_Boolean_ * update, MethodInfo * method)); -DO_APP_FUNC(0x00986CC0, void, AstarWorkItem__ctor_2, (AstarWorkItem__Boxed * __this, Action * init, Func_2_Boolean_Boolean_ * update, MethodInfo * method)); -DO_APP_FUNC(0x00986E20, void, AstarWorkItem__ctor_3, (AstarWorkItem__Boxed * __this, Action_1_Pathfinding_IWorkItemContext_ * init, Func_3_Pathfinding_IWorkItemContext_Boolean_Boolean_ * update, MethodInfo * method)); +DO_APP_FUNC(0x00986A00, void, AstarWorkItem__ctor, (AstarWorkItem * __this, Func_2_Boolean_Boolean_ * update, MethodInfo * method)); +DO_APP_FUNC(0x00986B60, void, AstarWorkItem__ctor_1, (AstarWorkItem * __this, Func_3_Pathfinding_IWorkItemContext_Boolean_Boolean_ * update, MethodInfo * method)); +DO_APP_FUNC(0x00986CC0, void, AstarWorkItem__ctor_2, (AstarWorkItem * __this, Action * init, Func_2_Boolean_Boolean_ * update, MethodInfo * method)); +DO_APP_FUNC(0x00986E20, void, AstarWorkItem__ctor_3, (AstarWorkItem * __this, Action_1_Pathfinding_IWorkItemContext_ * init, Func_3_Pathfinding_IWorkItemContext_Boolean_Boolean_ * update, MethodInfo * method)); DO_APP_FUNC(0x003BCD20, bool, WorkItemProcessor_get_workItemsInProgressRightNow, (WorkItemProcessor * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD30, void, WorkItemProcessor_set_workItemsInProgressRightNow, (WorkItemProcessor * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x00986F90, bool, WorkItemProcessor_get_anyQueued, (WorkItemProcessor * __this, MethodInfo * method)); @@ -77028,11 +87862,13 @@ DO_APP_FUNC(0x00987060, void, WorkItemProcessor__ctor, (WorkItemProcessor * __th DO_APP_FUNC(0x00987200, void, WorkItemProcessor_OnFloodFill, (WorkItemProcessor * __this, MethodInfo * method)); DO_APP_FUNC(0x00987210, void, WorkItemProcessor_AddWorkItem, (WorkItemProcessor * __this, AstarWorkItem item, MethodInfo * method)); DO_APP_FUNC(0x00987280, bool, WorkItemProcessor_ProcessWorkItems, (WorkItemProcessor * __this, bool force, MethodInfo * method)); -DO_APP_FUNC(0x009877B0, void, Connection__ctor, (Connection__Boxed * __this, GraphNode * node, uint32_t cost, uint8_t shapeEdge, MethodInfo * method)); -DO_APP_FUNC(0x00987820, int32_t, Connection_GetHashCode, (Connection__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00987860, bool, Connection_Equals, (Connection__Boxed * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6C48, WorkItemProcessor_ProcessWorkItems__MethodInfo); +DO_APP_FUNC(0x009877B0, void, Connection__ctor, (Connection * __this, GraphNode * node, uint32_t cost, uint8_t shapeEdge, MethodInfo * method)); +DO_APP_FUNC(0x00987820, int32_t, Connection_GetHashCode, (Connection * __this, MethodInfo * method)); +DO_APP_FUNC(0x00987860, bool, Connection_Equals, (Connection * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x009878F0, NavGraph *, GraphNode_get_Graph, (GraphNode * __this, MethodInfo * method)); DO_APP_FUNC(0x00987910, void, GraphNode__ctor, (GraphNode * __this, AstarPath * astar, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6C18, GraphNode__ctor__MethodInfo); DO_APP_FUNC(0x00987A10, void, GraphNode_Destroy, (GraphNode * __this, MethodInfo * method)); DO_APP_FUNC(0x00987BD0, bool, GraphNode_get_Destroyed, (GraphNode * __this, MethodInfo * method)); DO_APP_FUNC(0x00987BF0, int32_t, GraphNode_get_NodeIndex, (GraphNode * __this, MethodInfo * method)); @@ -77070,8 +87906,10 @@ DO_APP_FUNC(0x003AE050, void, GraphNode_SerializeReferences, (GraphNode * __this DO_APP_FUNC(0x003AE050, void, GraphNode_DeserializeReferences, (GraphNode * __this, GraphSerializationContext * ctx, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GraphNode_c_DisplayClass59_0__ctor, (GraphNode_c_DisplayClass59_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00988400, void, GraphNode_c_DisplayClass59_0__UpdateRecursiveG_b__0, (GraphNode_c_DisplayClass59_0 * __this, GraphNode * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6BE8, GraphNode_c_DisplayClass59_0__UpdateRecursiveG_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, GraphNode_c_DisplayClass64_0__ctor, (GraphNode_c_DisplayClass64_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00988490, void, GraphNode_c_DisplayClass64_0__ContainsConnection_b__0, (GraphNode_c_DisplayClass64_0 * __this, GraphNode * neighbour, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6BD8, GraphNode_c_DisplayClass64_0__ContainsConnection_b__0__MethodInfo); DO_APP_FUNC(0x0097C910, void, MeshNode__ctor, (MeshNode * __this, AstarPath * astar, MethodInfo * method)); DO_APP_FUNC(0x009884B0, void, MeshNode_ClearConnections, (MeshNode * __this, bool alsoReverse, MethodInfo * method)); DO_APP_FUNC(0x00988600, void, MeshNode_GetConnections, (MeshNode * __this, Action_1_Pathfinding_GraphNode_ * action, MethodInfo * method)); @@ -77079,6 +87917,7 @@ DO_APP_FUNC(0x00988690, bool, MeshNode_ContainsConnection, (MeshNode * __this, G DO_APP_FUNC(0x009886F0, void, MeshNode_UpdateRecursiveG, (MeshNode * __this, Path_1 * path, PathNode * pathNode, PathHandler * handler, MethodInfo * method)); DO_APP_FUNC(0x00988840, void, MeshNode_AddConnection, (MeshNode * __this, GraphNode * node, uint32_t cost, MethodInfo * method)); DO_APP_FUNC(0x00988860, void, MeshNode_AddConnection_1, (MeshNode * __this, GraphNode * node, uint32_t cost, int32_t shapeEdge, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6BA0, MeshNode_AddConnection_1__MethodInfo); DO_APP_FUNC(0x00988C70, void, MeshNode_RemoveConnection, (MeshNode * __this, GraphNode * node, MethodInfo * method)); DO_APP_FUNC(0x00988EE0, bool, MeshNode_ContainsPoint, (MeshNode * __this, Int3 point, MethodInfo * method)); DO_APP_FUNC(0x00988F60, int32_t, MeshNode_GetGizmoHashCode, (MeshNode * __this, MethodInfo * method)); @@ -77120,9 +87959,12 @@ DO_APP_FUNC(0x0098A590, void, Path_1_Error, (Path_1 * __this, MethodInfo * metho DO_APP_FUNC(0x0098A5A0, void, Path_1_ErrorCheck, (Path_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x0098A690, void, Path_1_OnEnterPool, (Path_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x0098A850, void, Path_1_Reset, (Path_1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6B40, Path_1_Reset__MethodInfo); DO_APP_FUNC(0x0098AF70, void, Path_1_Claim, (Path_1 * __this, Object * o, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6B20, Path_1_Claim__MethodInfo); DO_APP_FUNC(0x0098B140, void, Path_1_ReleaseSilent, (Path_1 * __this, Object * o, MethodInfo * method)); DO_APP_FUNC(0x0098B150, void, Path_1_Release, (Path_1 * __this, Object * o, bool silent, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6B10, Path_1_Release__MethodInfo); DO_APP_FUNC(0x0098B450, void, Path_1_Trace, (Path_1 * __this, PathNode * from, MethodInfo * method)); DO_APP_FUNC(0x0098B960, void, Path_1_DebugStringPrefix, (Path_1 * __this, PathLog__Enum logMode, StringBuilder * text, MethodInfo * method)); DO_APP_FUNC(0x0098BB20, void, Path_1_DebugStringSuffix, (Path_1 * __this, PathLog__Enum logMode, StringBuilder * text, MethodInfo * method)); @@ -77144,8 +87986,10 @@ DO_APP_FUNC(0x0098C5A0, void, Path_1__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, Path_WaitForPath_d_51__ctor, (Path_WaitForPath_d_51 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Path_WaitForPath_d_51_System_IDisposable_Dispose, (Path_WaitForPath_d_51 * __this, MethodInfo * method)); DO_APP_FUNC(0x0098C660, bool, Path_WaitForPath_d_51_MoveNext, (Path_WaitForPath_d_51 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6A40, Path_WaitForPath_d_51_MoveNext__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Path_WaitForPath_d_51_System_Collections_Generic_IEnumerator_System_Object__get_Current, (Path_WaitForPath_d_51 * __this, MethodInfo * method)); DO_APP_FUNC(0x0098C780, void, Path_WaitForPath_d_51_System_Collections_IEnumerator_Reset, (Path_WaitForPath_d_51 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6A30, Path_WaitForPath_d_51_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Path_WaitForPath_d_51_System_Collections_IEnumerator_get_Current, (Path_WaitForPath_d_51 * __this, MethodInfo * method)); DO_APP_FUNC(0x0098C7D0, uint32_t, PathNode_get_cost, (PathNode * __this, MethodInfo * method)); DO_APP_FUNC(0x0098C7E0, void, PathNode_set_cost, (PathNode * __this, uint32_t value, MethodInfo * method)); @@ -77200,24 +88044,31 @@ DO_APP_FUNC(0x0098E310, void, NavGraph_Pathfinding_IGraphInternals_DeserializeSe DO_APP_FUNC(0x0098E330, void, NavGraph__ctor, (NavGraph * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NavGraph_c_DisplayClass11_0__ctor, (NavGraph_c_DisplayClass11_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0098E400, void, NavGraph_c_DisplayClass11_0__CountNodes_b__0, (NavGraph_c_DisplayClass11_0 * __this, GraphNode * node, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6A00, NavGraph_c_DisplayClass11_0__CountNodes_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, NavGraph_c_DisplayClass12_0__ctor, (NavGraph_c_DisplayClass12_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0098E410, void, NavGraph_c_DisplayClass12_0__GetNodes_b__0, (NavGraph_c_DisplayClass12_0 * __this, GraphNode * node, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB69F8, NavGraph_c_DisplayClass12_0__GetNodes_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, NavGraph_c_DisplayClass18_0__ctor, (NavGraph_c_DisplayClass18_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0098E460, void, NavGraph_c_DisplayClass18_0__RelocateNodes_b__0, (NavGraph_c_DisplayClass18_0 * __this, GraphNode * node, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB69C8, NavGraph_c_DisplayClass18_0__RelocateNodes_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, NavGraph_c_DisplayClass21_0__ctor, (NavGraph_c_DisplayClass21_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0098E630, void, NavGraph_c_DisplayClass21_0__GetNearest_b__0, (NavGraph_c_DisplayClass21_0 * __this, GraphNode * node, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB69A8, NavGraph_c_DisplayClass21_0__GetNearest_b__0__MethodInfo); DO_APP_FUNC(0x0098E7E0, void, NavGraph_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NavGraph_c__ctor, (NavGraph_c * __this, MethodInfo * method)); DO_APP_FUNC(0x0098E890, void, NavGraph_c__DestroyAllNodes_b__24_0, (NavGraph_c * __this, GraphNode * node, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6990, NavGraph_c__DestroyAllNodes_b__24_0__MethodInfo); DO_APP_FUNC(0x003AE050, void, NavGraph_c_DisplayClass32_0__ctor, (NavGraph_c_DisplayClass32_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0098E8B0, void, NavGraph_c_DisplayClass32_0__OnDrawGizmos_b__0, (NavGraph_c_DisplayClass32_0 * __this, GraphNode * node, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6980, NavGraph_c_DisplayClass32_0__OnDrawGizmos_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, NavGraph_c_DisplayClass33_0__ctor, (NavGraph_c_DisplayClass33_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0098E8C0, void, NavGraph_c_DisplayClass33_0__DrawUnwalkableNodes_b__0, (NavGraph_c_DisplayClass33_0 * __this, GraphNode * node, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6950, NavGraph_c_DisplayClass33_0__DrawUnwalkableNodes_b__0__MethodInfo); DO_APP_FUNC(0x0098EA20, void, GraphCollision_Initialize, (GraphCollision * __this, GraphTransform * transform, float scale, MethodInfo * method)); DO_APP_FUNC(0x0098EC80, bool, GraphCollision_Check, (GraphCollision * __this, Vector3 position, MethodInfo * method)); DO_APP_FUNC(0x0098F430, Vector3, GraphCollision_CheckHeight, (GraphCollision * __this, Vector3 position, MethodInfo * method)); -DO_APP_FUNC(0x0098F4B0, Vector3, GraphCollision_CheckHeight_1, (GraphCollision * __this, Vector3 position, RaycastHit hit, bool walkable, MethodInfo * method)); -DO_APP_FUNC(0x0098F920, RaycastHit__Array *, GraphCollision_CheckHeightAll, (GraphCollision * __this, Vector3 position, int32_t numHits, MethodInfo * method)); +DO_APP_FUNC(0x0098F4B0, Vector3, GraphCollision_CheckHeight_1, (GraphCollision * __this, Vector3 position, RaycastHit * hit, bool * walkable, MethodInfo * method)); +DO_APP_FUNC(0x0098F920, RaycastHit__Array *, GraphCollision_CheckHeightAll, (GraphCollision * __this, Vector3 position, int32_t * numHits, MethodInfo * method)); DO_APP_FUNC(0x0098FC10, void, GraphCollision_DeserializeSettingsCompatibility, (GraphCollision * __this, GraphSerializationContext * ctx, MethodInfo * method)); DO_APP_FUNC(0x0098FE20, void, GraphCollision__ctor, (GraphCollision * __this, MethodInfo * method)); DO_APP_FUNC(0x0098FEF0, void, GridGraph_OnDestroy, (GridGraph * __this, MethodInfo * method)); @@ -77234,6 +88085,7 @@ DO_APP_FUNC(0x00990340, GraphTransform *, GridGraph_get_transform, (GridGraph * DO_APP_FUNC(0x00990350, void, GridGraph_set_transform, (GridGraph * __this, GraphTransform * value, MethodInfo * method)); DO_APP_FUNC(0x009903B0, void, GridGraph__ctor, (GridGraph * __this, MethodInfo * method)); DO_APP_FUNC(0x00990960, void, GridGraph_RelocateNodes, (GridGraph * __this, Matrix4x4 deltaMatrix, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB68B8, GridGraph_RelocateNodes__MethodInfo); DO_APP_FUNC(0x009909C0, void, GridGraph_RelocateNodes_1, (GridGraph * __this, Vector3 center, Quaternion rotation, float nodeSize, float aspectRatio, float isometricAngle, MethodInfo * method)); DO_APP_FUNC(0x00990BF0, Int3, GridGraph_GraphPointToWorld, (GridGraph * __this, int32_t x, int32_t z, float height, MethodInfo * method)); DO_APP_FUNC(0x00990D20, float, GridGraph_ConvertHexagonSizeToNodeSize, (InspectorGridHexagonNodeSize__Enum mode, float value, MethodInfo * method)); @@ -77254,7 +88106,7 @@ DO_APP_FUNC(0x00991480, void, GridGraph_UpdateSizeFromWidthDepth, (GridGraph * _ DO_APP_FUNC(0x009914D0, void, GridGraph_GenerateMatrix, (GridGraph * __this, MethodInfo * method)); DO_APP_FUNC(0x009914E0, void, GridGraph_UpdateTransform, (GridGraph * __this, MethodInfo * method)); DO_APP_FUNC(0x00991570, GraphTransform *, GridGraph_CalculateTransform, (GridGraph * __this, MethodInfo * method)); -DO_APP_FUNC(0x00991FD0, void, GridGraph_CalculateDimensions, (GridGraph * __this, int32_t width, int32_t depth, float nodeSize, MethodInfo * method)); +DO_APP_FUNC(0x00991FD0, void, GridGraph_CalculateDimensions, (GridGraph * __this, int32_t * width, int32_t * depth, float * nodeSize, MethodInfo * method)); DO_APP_FUNC(0x00992160, NNInfoInternal, GridGraph_GetNearest, (GridGraph * __this, Vector3 position, NNConstraint * constraint, GraphNode * hint, MethodInfo * method)); DO_APP_FUNC(0x00992450, NNInfoInternal, GridGraph_GetNearestForce, (GridGraph * __this, Vector3 position, NNConstraint * constraint, MethodInfo * method)); DO_APP_FUNC(0x00993680, void, GridGraph_SetUpOffsetsAndCosts, (GridGraph * __this, MethodInfo * method)); @@ -77284,20 +88136,21 @@ DO_APP_FUNC(0x009970F0, List_1_Pathfinding_GraphNode_ *, GridGraph_GetNodesInReg DO_APP_FUNC(0x009971A0, List_1_Pathfinding_GraphNode_ *, GridGraph_GetNodesInRegion_2, (GridGraph * __this, Bounds bounds, GraphUpdateShape * shape, MethodInfo * method)); DO_APP_FUNC(0x00997500, List_1_Pathfinding_GraphNode_ *, GridGraph_GetNodesInRegion_3, (GridGraph * __this, IntRect rect, MethodInfo * method)); DO_APP_FUNC(0x00997730, int32_t, GridGraph_GetNodesInRegion_4, (GridGraph * __this, IntRect rect, GridNodeBase__Array * buffer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6778, GridGraph_GetNodesInRegion_4__MethodInfo); DO_APP_FUNC(0x00997930, GridNodeBase *, GridGraph_GetNode, (GridGraph * __this, int32_t x, int32_t z, MethodInfo * method)); DO_APP_FUNC(0x003CB690, GraphUpdateThreading__Enum, GridGraph_Pathfinding_IUpdatableGraph_CanUpdateAsync, (GridGraph * __this, GraphUpdateObject * o, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GridGraph_Pathfinding_IUpdatableGraph_UpdateAreaInit, (GridGraph * __this, GraphUpdateObject * o, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GridGraph_Pathfinding_IUpdatableGraph_UpdateAreaPost, (GridGraph * __this, GraphUpdateObject * o, MethodInfo * method)); -DO_APP_FUNC(0x00997990, void, GridGraph_CalculateAffectedRegions, (GridGraph * __this, GraphUpdateObject * o, IntRect originalRect, IntRect affectRect, IntRect physicsRect, bool willChangeWalkability, int32_t erosion, MethodInfo * method)); +DO_APP_FUNC(0x00997990, void, GridGraph_CalculateAffectedRegions, (GridGraph * __this, GraphUpdateObject * o, IntRect * originalRect, IntRect * affectRect, IntRect * physicsRect, bool * willChangeWalkability, int32_t * erosion, MethodInfo * method)); DO_APP_FUNC(0x00997CE0, void, GridGraph_Pathfinding_IUpdatableGraph_UpdateArea, (GridGraph * __this, GraphUpdateObject * o, MethodInfo * method)); DO_APP_FUNC(0x009986A0, bool, GridGraph_Linecast, (GridGraph * __this, Vector3 from, Vector3 to, MethodInfo * method)); DO_APP_FUNC(0x00998720, bool, GridGraph_Linecast_1, (GridGraph * __this, Vector3 from, Vector3 to, GraphNode * hint, MethodInfo * method)); -DO_APP_FUNC(0x00998790, bool, GridGraph_Linecast_2, (GridGraph * __this, Vector3 from, Vector3 to, GraphNode * hint, GraphHitInfo hit, MethodInfo * method)); +DO_APP_FUNC(0x00998790, bool, GridGraph_Linecast_2, (GridGraph * __this, Vector3 from, Vector3 to, GraphNode * hint, GraphHitInfo * hit, MethodInfo * method)); DO_APP_FUNC(0x009987F0, float, GridGraph_CrossMagnitude, (Vector2 a, Vector2 b, MethodInfo * method)); DO_APP_FUNC(0x00998820, int64_t, GridGraph_CrossMagnitude_1, (Int2 a, Int2 b, MethodInfo * method)); -DO_APP_FUNC(0x00998850, bool, GridGraph_ClipLineSegmentToBounds, (GridGraph * __this, Vector3 a, Vector3 b, Vector3 outA, Vector3 outB, MethodInfo * method)); -DO_APP_FUNC(0x00999080, bool, GridGraph_Linecast_3, (GridGraph * __this, Vector3 from, Vector3 to, GraphNode * hint, GraphHitInfo hit, List_1_Pathfinding_GraphNode_ * trace, MethodInfo * method)); -DO_APP_FUNC(0x00999AC0, bool, GridGraph_SnappedLinecast, (GridGraph * __this, Vector3 from, Vector3 to, GraphNode * hint, GraphHitInfo hit, MethodInfo * method)); +DO_APP_FUNC(0x00998850, bool, GridGraph_ClipLineSegmentToBounds, (GridGraph * __this, Vector3 a, Vector3 b, Vector3 * outA, Vector3 * outB, MethodInfo * method)); +DO_APP_FUNC(0x00999080, bool, GridGraph_Linecast_3, (GridGraph * __this, Vector3 from, Vector3 to, GraphNode * hint, GraphHitInfo * hit, List_1_Pathfinding_GraphNode_ * trace, MethodInfo * method)); +DO_APP_FUNC(0x00999AC0, bool, GridGraph_SnappedLinecast, (GridGraph * __this, Vector3 from, Vector3 to, GraphNode * hint, GraphHitInfo * hit, MethodInfo * method)); DO_APP_FUNC(0x00999CB0, bool, GridGraph_Linecast_4, (GridGraph * __this, GridNodeBase * fromNode, GridNodeBase * toNode, MethodInfo * method)); DO_APP_FUNC(0x00999FA0, bool, GridGraph_CheckConnection, (GridGraph * __this, GridNode * node, int32_t dir, MethodInfo * method)); DO_APP_FUNC(0x0099A130, void, GridGraph_SerializeExtraInfo, (GridGraph * __this, GraphSerializationContext * ctx, MethodInfo * method)); @@ -77312,13 +88165,16 @@ DO_APP_FUNC(0x0099B1D0, void, GridGraph_TextureData__ctor, (GridGraph_TextureDat DO_APP_FUNC(0x0099B2F0, void, GridGraph_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GridGraph_c__ctor, (GridGraph_c * __this, MethodInfo * method)); DO_APP_FUNC(0x0099B3A0, void, GridGraph_c__DestroyAllNodes_b__1_0, (GridGraph_c * __this, GraphNode * node, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB68E0, GridGraph_c__DestroyAllNodes_b__1_0__MethodInfo); DO_APP_FUNC(0x003AE050, void, GridGraph_c_DisplayClass59_0__ctor, (GridGraph_c_DisplayClass59_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0099B430, void, GridGraph_c_DisplayClass59_0__RelocateNodes_b__0, (GridGraph_c_DisplayClass59_0 * __this, GraphNode * node, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6880, GridGraph_c_DisplayClass59_0__RelocateNodes_b__0__MethodInfo); DO_APP_FUNC(0x0093D960, void, GridGraph_ScanInternal_d_85__ctor, (GridGraph_ScanInternal_d_85 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GridGraph_ScanInternal_d_85_System_IDisposable_Dispose, (GridGraph_ScanInternal_d_85 * __this, MethodInfo * method)); DO_APP_FUNC(0x0099B5D0, bool, GridGraph_ScanInternal_d_85_MoveNext, (GridGraph_ScanInternal_d_85 * __this, MethodInfo * method)); DO_APP_FUNC(0x0093E890, Progress, GridGraph_ScanInternal_d_85_System_Collections_Generic_IEnumerator_Pathfinding_Progress__get_Current, (GridGraph_ScanInternal_d_85 * __this, MethodInfo * method)); DO_APP_FUNC(0x0099BD50, void, GridGraph_ScanInternal_d_85_System_Collections_IEnumerator_Reset, (GridGraph_ScanInternal_d_85 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8460, GridGraph_ScanInternal_d_85_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x0099BDA0, Object *, GridGraph_ScanInternal_d_85_System_Collections_IEnumerator_get_Current, (GridGraph_ScanInternal_d_85 * __this, MethodInfo * method)); DO_APP_FUNC(0x0099BDF0, IEnumerator_1_Pathfinding_Progress_ *, GridGraph_ScanInternal_d_85_System_Collections_Generic_IEnumerable_Pathfinding_Progress__GetEnumerator, (GridGraph_ScanInternal_d_85 * __this, MethodInfo * method)); DO_APP_FUNC(0x0099BDF0, IEnumerator *, GridGraph_ScanInternal_d_85_System_Collections_IEnumerable_GetEnumerator, (GridGraph_ScanInternal_d_85 * __this, MethodInfo * method)); @@ -77331,11 +88187,12 @@ DO_APP_FUNC(0x0099C100, void, LayerGridGraph_GetNodes, (LayerGridGraph * __this, DO_APP_FUNC(0x0099C1A0, List_1_Pathfinding_GraphNode_ *, LayerGridGraph_GetNodesInRegion, (LayerGridGraph * __this, Bounds b, GraphUpdateShape * shape, MethodInfo * method)); DO_APP_FUNC(0x0099C560, List_1_Pathfinding_GraphNode_ *, LayerGridGraph_GetNodesInRegion_1, (LayerGridGraph * __this, IntRect rect, MethodInfo * method)); DO_APP_FUNC(0x0099C7D0, int32_t, LayerGridGraph_GetNodesInRegion_2, (LayerGridGraph * __this, IntRect rect, GridNodeBase__Array * buffer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8420, LayerGridGraph_GetNodesInRegion_2__MethodInfo); DO_APP_FUNC(0x0099CA70, GridNodeBase *, LayerGridGraph_GetNode, (LayerGridGraph * __this, int32_t x, int32_t z, MethodInfo * method)); DO_APP_FUNC(0x0099CAD0, GridNodeBase *, LayerGridGraph_GetNode_1, (LayerGridGraph * __this, int32_t x, int32_t z, int32_t layer, MethodInfo * method)); DO_APP_FUNC(0x0099CB50, void, LayerGridGraph_Pathfinding_IUpdatableGraph_UpdateArea, (LayerGridGraph * __this, GraphUpdateObject * o, MethodInfo * method)); DO_APP_FUNC(0x0099D880, IEnumerable_1_Pathfinding_Progress_ *, LayerGridGraph_ScanInternal, (LayerGridGraph * __this, MethodInfo * method)); -DO_APP_FUNC(0x0099D940, LayerGridGraph_HeightSample__Array *, LayerGridGraph_SampleHeights, (GraphCollision * collision, float mergeSpanRange, Vector3 position, int32_t numHits, MethodInfo * method)); +DO_APP_FUNC(0x0099D940, LayerGridGraph_HeightSample__Array *, LayerGridGraph_SampleHeights, (GraphCollision * collision, float mergeSpanRange, Vector3 position, int32_t * numHits, MethodInfo * method)); DO_APP_FUNC(0x0099DF10, void, LayerGridGraph_RecalculateCell, (LayerGridGraph * __this, int32_t x, int32_t z, bool resetPenalties, bool resetTags, MethodInfo * method)); DO_APP_FUNC(0x0099E770, void, LayerGridGraph_AddLayers, (LayerGridGraph * __this, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x0099EB70, bool, LayerGridGraph_ErosionAnyFalseConnections, (LayerGridGraph * __this, GraphNode * baseNode, MethodInfo * method)); @@ -77359,6 +88216,7 @@ DO_APP_FUNC(0x003AE050, void, LayerGridGraph_ScanInternal_d_20_System_IDisposabl DO_APP_FUNC(0x009A0B30, bool, LayerGridGraph_ScanInternal_d_20_MoveNext, (LayerGridGraph_ScanInternal_d_20 * __this, MethodInfo * method)); DO_APP_FUNC(0x0093E890, Progress, LayerGridGraph_ScanInternal_d_20_System_Collections_Generic_IEnumerator_Pathfinding_Progress__get_Current, (LayerGridGraph_ScanInternal_d_20 * __this, MethodInfo * method)); DO_APP_FUNC(0x009A1120, void, LayerGridGraph_ScanInternal_d_20_System_Collections_IEnumerator_Reset, (LayerGridGraph_ScanInternal_d_20 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8350, LayerGridGraph_ScanInternal_d_20_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x009A1170, Object *, LayerGridGraph_ScanInternal_d_20_System_Collections_IEnumerator_get_Current, (LayerGridGraph_ScanInternal_d_20 * __this, MethodInfo * method)); DO_APP_FUNC(0x009A11C0, IEnumerator_1_Pathfinding_Progress_ *, LayerGridGraph_ScanInternal_d_20_System_Collections_Generic_IEnumerable_Pathfinding_Progress__GetEnumerator, (LayerGridGraph_ScanInternal_d_20 * __this, MethodInfo * method)); DO_APP_FUNC(0x009A11C0, IEnumerator *, LayerGridGraph_ScanInternal_d_20_System_Collections_IEnumerable_GetEnumerator, (LayerGridGraph_ScanInternal_d_20 * __this, MethodInfo * method)); @@ -77391,7 +88249,7 @@ DO_APP_FUNC(0x009A2A50, Int3, NavmeshBase_GetVertex, (NavmeshBase * __this, int3 DO_APP_FUNC(0x009A2AC0, Int3, NavmeshBase_GetVertexInGraphSpace, (NavmeshBase * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x009A2B30, int32_t, NavmeshBase_GetTileIndex, (int32_t index, MethodInfo * method)); DO_APP_FUNC(0x009A2B40, int32_t, NavmeshBase_GetVertexArrayIndex, (NavmeshBase * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x009A2B50, void, NavmeshBase_GetTileCoordinates, (NavmeshBase * __this, int32_t tileIndex, int32_t x, int32_t z, MethodInfo * method)); +DO_APP_FUNC(0x009A2B50, void, NavmeshBase_GetTileCoordinates, (NavmeshBase * __this, int32_t tileIndex, int32_t * x, int32_t * z, MethodInfo * method)); DO_APP_FUNC(0x009A2B70, NavmeshTile__Array *, NavmeshBase_GetTiles, (NavmeshBase * __this, MethodInfo * method)); DO_APP_FUNC(0x009A2B80, Bounds, NavmeshBase_GetTileBounds, (NavmeshBase * __this, IntRect rect, MethodInfo * method)); DO_APP_FUNC(0x009A2C30, Bounds, NavmeshBase_GetTileBounds_1, (NavmeshBase * __this, int32_t x, int32_t z, int32_t width, int32_t depth, MethodInfo * method)); @@ -77407,6 +88265,7 @@ DO_APP_FUNC(0x009A38E0, IntRect, NavmeshBase_GetTouchingTiles, (NavmeshBase * __ DO_APP_FUNC(0x009A3B50, IntRect, NavmeshBase_GetTouchingTilesInGraphSpace, (NavmeshBase * __this, Rect rect, MethodInfo * method)); DO_APP_FUNC(0x009A3CD0, IntRect, NavmeshBase_GetTouchingTilesRound, (NavmeshBase * __this, Bounds bounds, MethodInfo * method)); DO_APP_FUNC(0x009A3F30, void, NavmeshBase_ConnectTileWithNeighbours, (NavmeshBase * __this, NavmeshTile * tile, bool onlyUnflagged, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB81F8, NavmeshBase_ConnectTileWithNeighbours__MethodInfo); DO_APP_FUNC(0x009A40A0, void, NavmeshBase_RemoveConnectionsFromTile, (NavmeshBase * __this, NavmeshTile * tile, MethodInfo * method)); DO_APP_FUNC(0x009A4250, void, NavmeshBase_RemoveConnectionsFromTo, (NavmeshBase * __this, NavmeshTile * a, NavmeshTile * b, MethodInfo * method)); DO_APP_FUNC(0x009A43E0, NNInfoInternal, NavmeshBase_GetNearest, (NavmeshBase * __this, Vector3 position, NNConstraint * constraint, GraphNode * hint, MethodInfo * method)); @@ -77415,37 +88274,51 @@ DO_APP_FUNC(0x009A4AB0, GraphNode *, NavmeshBase_PointOnNavmesh, (NavmeshBase * DO_APP_FUNC(0x009A4C10, void, NavmeshBase_FillWithEmptyTiles, (NavmeshBase * __this, MethodInfo * method)); DO_APP_FUNC(0x009A4CF0, void, NavmeshBase_CreateNodeConnections, (TriangleMeshNode__Array * nodes, MethodInfo * method)); DO_APP_FUNC(0x009A52E0, void, NavmeshBase_ConnectTiles, (NavmeshBase * __this, NavmeshTile * tile1, NavmeshTile * tile2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8100, NavmeshBase_ConnectTiles__MethodInfo); DO_APP_FUNC(0x009A6090, void, NavmeshBase_StartBatchTileUpdate, (NavmeshBase * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8098, NavmeshBase_StartBatchTileUpdate__MethodInfo); DO_APP_FUNC(0x009A6110, void, NavmeshBase_DestroyNodes, (NavmeshBase * __this, List_1_Pathfinding_MeshNode_ * nodes, MethodInfo * method)); DO_APP_FUNC(0x009A6330, void, NavmeshBase_TryConnect, (NavmeshBase * __this, int32_t tileIdx1, int32_t tileIdx2, MethodInfo * method)); DO_APP_FUNC(0x009A63C0, void, NavmeshBase_EndBatchTileUpdate, (NavmeshBase * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8000, NavmeshBase_EndBatchTileUpdate__MethodInfo); DO_APP_FUNC(0x009A6860, void, NavmeshBase_ClearTile, (NavmeshBase * __this, int32_t x, int32_t z, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7FD0, NavmeshBase_ClearTile__MethodInfo); DO_APP_FUNC(0x009A6A00, void, NavmeshBase_PrepareNodeRecycling, (NavmeshBase * __this, int32_t x, int32_t z, Int3__Array * verts, Int32__Array * tris, TriangleMeshNode__Array * recycledNodeBuffer, MethodInfo * method)); DO_APP_FUNC(0x009A71E0, void, NavmeshBase_ReplaceTile, (NavmeshBase * __this, int32_t x, int32_t z, Int3__Array * verts, Int32__Array * tris, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7F58, NavmeshBase_ReplaceTile__MethodInfo); DO_APP_FUNC(0x009A80E0, void, NavmeshBase_CreateNodes, (NavmeshBase * __this, TriangleMeshNode__Array * buffer, Int32__Array * tris, int32_t tileIndex, uint32_t graphIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7ED0, NavmeshBase_CreateNodes__MethodInfo); DO_APP_FUNC(0x009A8500, void, NavmeshBase__ctor, (NavmeshBase * __this, MethodInfo * method)); DO_APP_FUNC(0x009A8940, bool, NavmeshBase_Linecast, (NavmeshBase * __this, Vector3 origin, Vector3 end, MethodInfo * method)); -DO_APP_FUNC(0x009A8A90, bool, NavmeshBase_Linecast_1, (NavmeshBase * __this, Vector3 origin, Vector3 end, GraphNode * hint, GraphHitInfo hit, MethodInfo * method)); +DO_APP_FUNC(0x009A8A90, bool, NavmeshBase_Linecast_1, (NavmeshBase * __this, Vector3 origin, Vector3 end, GraphNode * hint, GraphHitInfo * hit, MethodInfo * method)); DO_APP_FUNC(0x009A8B50, bool, NavmeshBase_Linecast_2, (NavmeshBase * __this, Vector3 origin, Vector3 end, GraphNode * hint, MethodInfo * method)); -DO_APP_FUNC(0x009A8C30, bool, NavmeshBase_Linecast_3, (NavmeshBase * __this, Vector3 origin, Vector3 end, GraphNode * hint, GraphHitInfo hit, List_1_Pathfinding_GraphNode_ * trace, MethodInfo * method)); -DO_APP_FUNC(0x009A8D00, bool, NavmeshBase_Linecast_4, (NavmeshBase * graph, Vector3 origin, Vector3 end, GraphNode * hint, GraphHitInfo hit, MethodInfo * method)); +DO_APP_FUNC(0x009A8C30, bool, NavmeshBase_Linecast_3, (NavmeshBase * __this, Vector3 origin, Vector3 end, GraphNode * hint, GraphHitInfo * hit, List_1_Pathfinding_GraphNode_ * trace, MethodInfo * method)); +DO_APP_FUNC(0x009A8D00, bool, NavmeshBase_Linecast_4, (NavmeshBase * graph, Vector3 origin, Vector3 end, GraphNode * hint, GraphHitInfo * hit, MethodInfo * method)); DO_APP_FUNC(0x009A8DC0, void, NavmeshBase__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x009A91F0, bool, NavmeshBase_Linecast_5, (NavmeshBase * graph, Vector3 origin, Vector3 end, GraphNode * hint, GraphHitInfo hit, List_1_Pathfinding_GraphNode_ * trace, MethodInfo * method)); +DO_APP_FUNC(0x009A91F0, bool, NavmeshBase_Linecast_5, (NavmeshBase * graph, Vector3 origin, Vector3 end, GraphNode * hint, GraphHitInfo * hit, List_1_Pathfinding_GraphNode_ * trace, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7DC0, NavmeshBase_Linecast_5__MethodInfo); DO_APP_FUNC(0x009A9F50, void, NavmeshBase_OnDrawGizmos, (NavmeshBase * __this, RetainedGizmos * gizmos, bool drawNodes, MethodInfo * method)); DO_APP_FUNC(0x009AA600, void, NavmeshBase_CreateNavmeshSurfaceVisualization, (NavmeshBase * __this, NavmeshTile__Array * tiles, int32_t startTile, int32_t endTile, GraphGizmoHelper * helper, MethodInfo * method)); DO_APP_FUNC(0x009AACA0, void, NavmeshBase_CreateNavmeshOutlineVisualization, (NavmeshTile__Array * tiles, int32_t startTile, int32_t endTile, GraphGizmoHelper * helper, MethodInfo * method)); DO_APP_FUNC(0x009AB160, void, NavmeshBase_SerializeExtraInfo, (NavmeshBase * __this, GraphSerializationContext * ctx, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7D70, NavmeshBase_SerializeExtraInfo__MethodInfo); DO_APP_FUNC(0x009AB5C0, void, NavmeshBase_DeserializeExtraInfo, (NavmeshBase * __this, GraphSerializationContext * ctx, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7D08, NavmeshBase_DeserializeExtraInfo__MethodInfo); DO_APP_FUNC(0x009ABF70, void, NavmeshBase_PostDeserialization, (NavmeshBase * __this, GraphSerializationContext * ctx, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NavmeshBase_c_DisplayClass83_0__ctor, (NavmeshBase_c_DisplayClass83_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x009AC730, void, NavmeshBase_c_DisplayClass83_0__PostDeserialization_b__3, (NavmeshBase_c_DisplayClass83_0 * __this, GraphNode * node, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7C20, NavmeshBase_c_DisplayClass83_0__PostDeserialization_b__3__MethodInfo); DO_APP_FUNC(0x003AE050, void, NavmeshBase_c_DisplayClass83_1__ctor, (NavmeshBase_c_DisplayClass83_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x009ACBF0, bool, NavmeshBase_c_DisplayClass83_1__PostDeserialization_b__4, (NavmeshBase_c_DisplayClass83_1 * __this, Connection conn, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7B78, NavmeshBase_c_DisplayClass83_1__PostDeserialization_b__4__MethodInfo); DO_APP_FUNC(0x009ACC30, void, NavmeshBase_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NavmeshBase_c__ctor, (NavmeshBase_c * __this, MethodInfo * method)); DO_APP_FUNC(0x0068BE20, IEnumerable_1_Pathfinding_TriangleMeshNode_ *, NavmeshBase_c__PostDeserialization_b__83_0, (NavmeshBase_c * __this, NavmeshTile * s, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7C60, NavmeshBase_c__PostDeserialization_b__83_0__MethodInfo); DO_APP_FUNC(0x00420A60, TriangleMeshNode *, NavmeshBase_c__PostDeserialization_b__83_1, (NavmeshBase_c * __this, TriangleMeshNode * n, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7BF8, NavmeshBase_c__PostDeserialization_b__83_1__MethodInfo); DO_APP_FUNC(0x009ACCE0, Connection__Array *, NavmeshBase_c__PostDeserialization_b__83_2, (NavmeshBase_c * __this, TriangleMeshNode * n, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7BF0, NavmeshBase_c__PostDeserialization_b__83_2__MethodInfo); DO_APP_FUNC(0x009ACD40, bool, NavMeshGraph_get_RecalculateNormals, (NavMeshGraph * __this, MethodInfo * method)); DO_APP_FUNC(0x009ACD50, float, NavMeshGraph_get_TileWorldSizeX, (NavMeshGraph * __this, MethodInfo * method)); DO_APP_FUNC(0x006C4FC0, float, NavMeshGraph_get_TileWorldSizeZ, (NavMeshGraph * __this, MethodInfo * method)); @@ -77462,11 +88335,13 @@ DO_APP_FUNC(0x009ADB20, void, NavMeshGraph_DeserializeSettingsCompatibility, (Na DO_APP_FUNC(0x009ADD50, void, NavMeshGraph__ctor, (NavMeshGraph * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NavMeshGraph_c_DisplayClass19_0__ctor, (NavMeshGraph_c_DisplayClass19_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x009ADDB0, void, NavMeshGraph_c_DisplayClass19_0__UpdateArea_b__0, (NavMeshGraph_c_DisplayClass19_0 * __this, GraphNode * _node, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7B20, NavMeshGraph_c_DisplayClass19_0__UpdateArea_b__0__MethodInfo); DO_APP_FUNC(0x0093D960, void, NavMeshGraph_ScanInternal_d_21__ctor, (NavMeshGraph_ScanInternal_d_21 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NavMeshGraph_ScanInternal_d_21_System_IDisposable_Dispose, (NavMeshGraph_ScanInternal_d_21 * __this, MethodInfo * method)); DO_APP_FUNC(0x009AE2C0, bool, NavMeshGraph_ScanInternal_d_21_MoveNext, (NavMeshGraph_ScanInternal_d_21 * __this, MethodInfo * method)); DO_APP_FUNC(0x0093E890, Progress, NavMeshGraph_ScanInternal_d_21_System_Collections_Generic_IEnumerator_Pathfinding_Progress__get_Current, (NavMeshGraph_ScanInternal_d_21 * __this, MethodInfo * method)); DO_APP_FUNC(0x009AF1E0, void, NavMeshGraph_ScanInternal_d_21_System_Collections_IEnumerator_Reset, (NavMeshGraph_ScanInternal_d_21 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7A80, NavMeshGraph_ScanInternal_d_21_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x009AF230, Object *, NavMeshGraph_ScanInternal_d_21_System_Collections_IEnumerator_get_Current, (NavMeshGraph_ScanInternal_d_21 * __this, MethodInfo * method)); DO_APP_FUNC(0x009AF280, IEnumerator_1_Pathfinding_Progress_ *, NavMeshGraph_ScanInternal_d_21_System_Collections_Generic_IEnumerable_Pathfinding_Progress__GetEnumerator, (NavMeshGraph_ScanInternal_d_21 * __this, MethodInfo * method)); DO_APP_FUNC(0x009AF280, IEnumerator *, NavMeshGraph_ScanInternal_d_21_System_Collections_IEnumerable_GetEnumerator, (NavMeshGraph_ScanInternal_d_21 * __this, MethodInfo * method)); @@ -77508,7 +88383,9 @@ DO_APP_FUNC(0x009B1140, Vector3, GridNodeBase_RandomPointOnSurface, (GridNodeBas DO_APP_FUNC(0x009B1360, int32_t, GridNodeBase_GetGizmoHashCode, (GridNodeBase * __this, MethodInfo * method)); DO_APP_FUNC(0x009B13A0, bool, GridNodeBase_ContainsConnection, (GridNodeBase * __this, GraphNode * node, MethodInfo * method)); DO_APP_FUNC(0x009B1410, void, GridNodeBase_AddConnection, (GridNodeBase * __this, GraphNode * node, uint32_t cost, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB79C8, GridNodeBase_AddConnection__MethodInfo); DO_APP_FUNC(0x009B1470, void, GridNodeBase_RemoveConnection, (GridNodeBase * __this, GraphNode * node, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB79C0, GridNodeBase_RemoveConnection__MethodInfo); DO_APP_FUNC(0x003AE050, void, GridNodeBase_ClearCustomConnections, (GridNodeBase * __this, bool alsoReverse, MethodInfo * method)); DO_APP_FUNC(0x00606220, void, PointNode_SetPosition, (PointNode * __this, Int3 value, MethodInfo * method)); DO_APP_FUNC(0x0097C910, void, PointNode__ctor, (PointNode * __this, AstarPath * astar, MethodInfo * method)); @@ -77517,6 +88394,7 @@ DO_APP_FUNC(0x009B14D0, void, PointNode_ClearConnections, (PointNode * __this, b DO_APP_FUNC(0x009886F0, void, PointNode_UpdateRecursiveG, (PointNode * __this, Path_1 * path, PathNode * pathNode, PathHandler * handler, MethodInfo * method)); DO_APP_FUNC(0x009B1620, bool, PointNode_ContainsConnection, (PointNode * __this, GraphNode * node, MethodInfo * method)); DO_APP_FUNC(0x009B1670, void, PointNode_AddConnection, (PointNode * __this, GraphNode * node, uint32_t cost, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7980, PointNode_AddConnection__MethodInfo); DO_APP_FUNC(0x009B1B30, void, PointNode_RemoveConnection, (PointNode * __this, GraphNode * node, MethodInfo * method)); DO_APP_FUNC(0x009B1D30, void, PointNode_Open, (PointNode * __this, Path_1 * path, PathNode * pathNode, PathHandler * handler, MethodInfo * method)); DO_APP_FUNC(0x00988F60, int32_t, PointNode_GetGizmoHashCode, (PointNode * __this, MethodInfo * method)); @@ -77530,8 +88408,8 @@ DO_APP_FUNC(0x009B25F0, void, TriangleMeshNode_SetNavmeshHolder, (int32_t graphI DO_APP_FUNC(0x009B2980, void, TriangleMeshNode_UpdatePositionFromVertices, (TriangleMeshNode * __this, MethodInfo * method)); DO_APP_FUNC(0x009B2BA0, int32_t, TriangleMeshNode_GetVertexIndex, (TriangleMeshNode * __this, int32_t i, MethodInfo * method)); DO_APP_FUNC(0x009B2BC0, int32_t, TriangleMeshNode_GetVertexArrayIndex, (TriangleMeshNode * __this, int32_t i, MethodInfo * method)); -DO_APP_FUNC(0x009B2C70, void, TriangleMeshNode_GetVertices, (TriangleMeshNode * __this, Int3 v0, Int3 v1, Int3 v2, MethodInfo * method)); -DO_APP_FUNC(0x009B2DA0, void, TriangleMeshNode_GetVerticesInGraphSpace, (TriangleMeshNode * __this, Int3 v0, Int3 v1, Int3 v2, MethodInfo * method)); +DO_APP_FUNC(0x009B2C70, void, TriangleMeshNode_GetVertices, (TriangleMeshNode * __this, Int3 * v0, Int3 * v1, Int3 * v2, MethodInfo * method)); +DO_APP_FUNC(0x009B2DA0, void, TriangleMeshNode_GetVerticesInGraphSpace, (TriangleMeshNode * __this, Int3 * v0, Int3 * v1, Int3 * v2, MethodInfo * method)); DO_APP_FUNC(0x009B2EE0, Int3, TriangleMeshNode_GetVertex, (TriangleMeshNode * __this, int32_t i, MethodInfo * method)); DO_APP_FUNC(0x009B2FC0, Int3, TriangleMeshNode_GetVertexInGraphSpace, (TriangleMeshNode * __this, int32_t i, MethodInfo * method)); DO_APP_FUNC(0x007159C0, int32_t, TriangleMeshNode_GetVertexCount, (TriangleMeshNode * __this, MethodInfo * method)); @@ -77544,7 +88422,8 @@ DO_APP_FUNC(0x009B3F50, void, TriangleMeshNode_UpdateRecursiveG, (TriangleMeshNo DO_APP_FUNC(0x009B40A0, void, TriangleMeshNode_Open, (TriangleMeshNode * __this, Path_1 * path, PathNode * pathNode, PathHandler * handler, MethodInfo * method)); DO_APP_FUNC(0x009B4320, int32_t, TriangleMeshNode_SharedEdge, (TriangleMeshNode * __this, GraphNode * other, MethodInfo * method)); DO_APP_FUNC(0x009B4380, bool, TriangleMeshNode_GetPortal, (TriangleMeshNode * __this, GraphNode * toNode, List_1_UnityEngine_Vector3_ * left, List_1_UnityEngine_Vector3_ * right, bool backwards, MethodInfo * method)); -DO_APP_FUNC(0x009B43C0, bool, TriangleMeshNode_GetPortal_1, (TriangleMeshNode * __this, GraphNode * toNode, List_1_UnityEngine_Vector3_ * left, List_1_UnityEngine_Vector3_ * right, bool backwards, int32_t aIndex, int32_t bIndex, MethodInfo * method)); +DO_APP_FUNC(0x009B43C0, bool, TriangleMeshNode_GetPortal_1, (TriangleMeshNode * __this, GraphNode * toNode, List_1_UnityEngine_Vector3_ * left, List_1_UnityEngine_Vector3_ * right, bool backwards, int32_t * aIndex, int32_t * bIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7870, TriangleMeshNode_GetPortal_1__MethodInfo); DO_APP_FUNC(0x009B4B40, float, TriangleMeshNode_SurfaceArea, (TriangleMeshNode * __this, MethodInfo * method)); DO_APP_FUNC(0x009B4CD0, Vector3, TriangleMeshNode_RandomPointOnSurface, (TriangleMeshNode * __this, MethodInfo * method)); DO_APP_FUNC(0x009B50C0, void, TriangleMeshNode_SerializeNode, (TriangleMeshNode * __this, GraphSerializationContext * ctx, MethodInfo * method)); @@ -77560,7 +88439,7 @@ DO_APP_FUNC(0x009B5530, NNInfoInternal, PointGraph_GetNearestInternal, (PointGra DO_APP_FUNC(0x009B5B30, NNInfoInternal, PointGraph_FindClosestConnectionPoint, (PointGraph * __this, PointNode * node, Vector3 position, MethodInfo * method)); DO_APP_FUNC(0x009B5F30, PointNode *, PointGraph_AddNode, (PointGraph * __this, Int3 position, MethodInfo * method)); DO_APP_FUNC(0x009B5FF0, int32_t, PointGraph_CountChildren, (Transform * tr, MethodInfo * method)); -DO_APP_FUNC(0x009B6220, void, PointGraph_AddChildren, (PointGraph * __this, int32_t c, Transform * tr, MethodInfo * method)); +DO_APP_FUNC(0x009B6220, void, PointGraph_AddChildren, (PointGraph * __this, int32_t * c, Transform * tr, MethodInfo * method)); DO_APP_FUNC(0x009B6740, void, PointGraph_RebuildNodeLookup, (PointGraph * __this, MethodInfo * method)); DO_APP_FUNC(0x009B6840, void, PointGraph_RebuildConnectionDistanceLookup, (PointGraph * __this, MethodInfo * method)); DO_APP_FUNC(0x009B69B0, void, PointGraph_AddToLookup, (PointGraph * __this, PointNode * node, MethodInfo * method)); @@ -77569,7 +88448,7 @@ DO_APP_FUNC(0x009B6A60, PointNode__Array *, PointGraph_CreateNodes, (PointGraph DO_APP_FUNC(0x009B6BC0, IEnumerable_1_Pathfinding_Progress_ *, PointGraph_ScanInternal, (PointGraph * __this, MethodInfo * method)); DO_APP_FUNC(0x009B6C80, void, PointGraph_ConnectNodes, (PointGraph * __this, MethodInfo * method)); DO_APP_FUNC(0x009B6D90, IEnumerable_1_Pathfinding_Progress_ *, PointGraph_ConnectNodesAsync, (PointGraph * __this, MethodInfo * method)); -DO_APP_FUNC(0x009B6E50, bool, PointGraph_IsValidConnection, (PointGraph * __this, GraphNode * a, GraphNode * b, float dist, MethodInfo * method)); +DO_APP_FUNC(0x009B6E50, bool, PointGraph_IsValidConnection, (PointGraph * __this, GraphNode * a, GraphNode * b, float * dist, MethodInfo * method)); DO_APP_FUNC(0x003CB690, GraphUpdateThreading__Enum, PointGraph_Pathfinding_IUpdatableGraph_CanUpdateAsync, (PointGraph * __this, GraphUpdateObject * o, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, PointGraph_Pathfinding_IUpdatableGraph_UpdateAreaInit, (PointGraph * __this, GraphUpdateObject * o, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, PointGraph_Pathfinding_IUpdatableGraph_UpdateAreaPost, (PointGraph * __this, GraphUpdateObject * o, MethodInfo * method)); @@ -77586,6 +88465,7 @@ DO_APP_FUNC(0x009B8910, bool, PointGraph_ScanInternal_d_35_MoveNext, (PointGraph DO_APP_FUNC(0x009B9AE0, void, PointGraph_ScanInternal_d_35___m__Finally1, (PointGraph_ScanInternal_d_35 * __this, MethodInfo * method)); DO_APP_FUNC(0x0093E890, Progress, PointGraph_ScanInternal_d_35_System_Collections_Generic_IEnumerator_Pathfinding_Progress__get_Current, (PointGraph_ScanInternal_d_35 * __this, MethodInfo * method)); DO_APP_FUNC(0x009B9B40, void, PointGraph_ScanInternal_d_35_System_Collections_IEnumerator_Reset, (PointGraph_ScanInternal_d_35 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB95E0, PointGraph_ScanInternal_d_35_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x009B9B90, Object *, PointGraph_ScanInternal_d_35_System_Collections_IEnumerator_get_Current, (PointGraph_ScanInternal_d_35 * __this, MethodInfo * method)); DO_APP_FUNC(0x009B9BE0, IEnumerator_1_Pathfinding_Progress_ *, PointGraph_ScanInternal_d_35_System_Collections_Generic_IEnumerable_Pathfinding_Progress__GetEnumerator, (PointGraph_ScanInternal_d_35 * __this, MethodInfo * method)); DO_APP_FUNC(0x009B9BE0, IEnumerator *, PointGraph_ScanInternal_d_35_System_Collections_IEnumerable_GetEnumerator, (PointGraph_ScanInternal_d_35 * __this, MethodInfo * method)); @@ -77594,6 +88474,7 @@ DO_APP_FUNC(0x003AE050, void, PointGraph_ConnectNodesAsync_d_37_System_IDisposab DO_APP_FUNC(0x009B9CD0, bool, PointGraph_ConnectNodesAsync_d_37_MoveNext, (PointGraph_ConnectNodesAsync_d_37 * __this, MethodInfo * method)); DO_APP_FUNC(0x0093E890, Progress, PointGraph_ConnectNodesAsync_d_37_System_Collections_Generic_IEnumerator_Pathfinding_Progress__get_Current, (PointGraph_ConnectNodesAsync_d_37 * __this, MethodInfo * method)); DO_APP_FUNC(0x009BA660, void, PointGraph_ConnectNodesAsync_d_37_System_Collections_IEnumerator_Reset, (PointGraph_ConnectNodesAsync_d_37 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB95B0, PointGraph_ConnectNodesAsync_d_37_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x009BA6B0, Object *, PointGraph_ConnectNodesAsync_d_37_System_Collections_IEnumerator_get_Current, (PointGraph_ConnectNodesAsync_d_37 * __this, MethodInfo * method)); DO_APP_FUNC(0x009BA700, IEnumerator_1_Pathfinding_Progress_ *, PointGraph_ConnectNodesAsync_d_37_System_Collections_Generic_IEnumerable_Pathfinding_Progress__GetEnumerator, (PointGraph_ConnectNodesAsync_d_37 * __this, MethodInfo * method)); DO_APP_FUNC(0x009BA700, IEnumerator *, PointGraph_ConnectNodesAsync_d_37_System_Collections_IEnumerable_GetEnumerator, (PointGraph_ConnectNodesAsync_d_37 * __this, MethodInfo * method)); @@ -77608,10 +88489,12 @@ DO_APP_FUNC(0x009BAA10, void, RecastGraph_SnapForceBoundsToScene, (RecastGraph * DO_APP_FUNC(0x009BAED0, GraphUpdateThreading__Enum, RecastGraph_Pathfinding_IUpdatableGraph_CanUpdateAsync, (RecastGraph * __this, GraphUpdateObject * o, MethodInfo * method)); DO_APP_FUNC(0x009BAF00, void, RecastGraph_Pathfinding_IUpdatableGraph_UpdateAreaInit, (RecastGraph * __this, GraphUpdateObject * o, MethodInfo * method)); DO_APP_FUNC(0x009BB330, void, RecastGraph_Pathfinding_IUpdatableGraph_UpdateArea, (RecastGraph * __this, GraphUpdateObject * guo, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9560, RecastGraph_Pathfinding_IUpdatableGraph_UpdateArea__MethodInfo); DO_APP_FUNC(0x009BB7E0, void, RecastGraph_Pathfinding_IUpdatableGraph_UpdateAreaPost, (RecastGraph * __this, GraphUpdateObject * guo, MethodInfo * method)); DO_APP_FUNC(0x009BBC60, IEnumerable_1_Pathfinding_Progress_ *, RecastGraph_ScanInternal, (RecastGraph * __this, MethodInfo * method)); DO_APP_FUNC(0x009BBD20, GraphTransform *, RecastGraph_CalculateTransform, (RecastGraph * __this, MethodInfo * method)); DO_APP_FUNC(0x009BC100, void, RecastGraph_InitializeTileInfo, (RecastGraph * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9520, RecastGraph_InitializeTileInfo__MethodInfo); DO_APP_FUNC(0x009BC3E0, List_1_Pathfinding_Voxels_RasterizationMesh___Array *, RecastGraph_PutMeshesIntoTileBuckets, (RecastGraph * __this, List_1_Pathfinding_Voxels_RasterizationMesh_ * meshes, MethodInfo * method)); DO_APP_FUNC(0x009BC820, IEnumerable_1_Pathfinding_Progress_ *, RecastGraph_ScanAllTiles, (RecastGraph * __this, MethodInfo * method)); DO_APP_FUNC(0x009BC8E0, List_1_Pathfinding_Voxels_RasterizationMesh_ *, RecastGraph_CollectMeshes, (RecastGraph * __this, Bounds bounds, MethodInfo * method)); @@ -77622,6 +88505,7 @@ DO_APP_FUNC(0x009BCB90, float, RecastGraph_get_TileBorderSizeInWorldUnits, (Reca DO_APP_FUNC(0x009BCBD0, Bounds, RecastGraph_CalculateTileBoundsWithBorder, (RecastGraph * __this, int32_t x, int32_t z, MethodInfo * method)); DO_APP_FUNC(0x009BCDD0, NavmeshTile *, RecastGraph_BuildTileMesh, (RecastGraph * __this, Voxelize * vox, int32_t x, int32_t z, int32_t threadIndex, MethodInfo * method)); DO_APP_FUNC(0x009BD310, NavmeshTile *, RecastGraph_CreateTile, (RecastGraph * __this, Voxelize * vox, VoxelMesh mesh, int32_t x, int32_t z, int32_t threadIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB94C8, RecastGraph_CreateTile__MethodInfo); DO_APP_FUNC(0x009BDA60, void, RecastGraph_DeserializeSettingsCompatibility, (RecastGraph * __this, GraphSerializationContext * ctx, MethodInfo * method)); DO_APP_FUNC(0x009BE190, void, RecastGraph__ctor, (RecastGraph * __this, MethodInfo * method)); DO_APP_FUNC(0x0093D960, void, RecastGraph_ScanInternal_d_46__ctor, (RecastGraph_ScanInternal_d_46 * __this, int32_t __1__state, MethodInfo * method)); @@ -77630,14 +88514,18 @@ DO_APP_FUNC(0x009BE4B0, bool, RecastGraph_ScanInternal_d_46_MoveNext, (RecastGra DO_APP_FUNC(0x009BE930, void, RecastGraph_ScanInternal_d_46___m__Finally1, (RecastGraph_ScanInternal_d_46 * __this, MethodInfo * method)); DO_APP_FUNC(0x0093E890, Progress, RecastGraph_ScanInternal_d_46_System_Collections_Generic_IEnumerator_Pathfinding_Progress__get_Current, (RecastGraph_ScanInternal_d_46 * __this, MethodInfo * method)); DO_APP_FUNC(0x009BE990, void, RecastGraph_ScanInternal_d_46_System_Collections_IEnumerator_Reset, (RecastGraph_ScanInternal_d_46 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9490, RecastGraph_ScanInternal_d_46_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x009BE9E0, Object *, RecastGraph_ScanInternal_d_46_System_Collections_IEnumerator_get_Current, (RecastGraph_ScanInternal_d_46 * __this, MethodInfo * method)); DO_APP_FUNC(0x009BEA30, IEnumerator_1_Pathfinding_Progress_ *, RecastGraph_ScanInternal_d_46_System_Collections_Generic_IEnumerable_Pathfinding_Progress__GetEnumerator, (RecastGraph_ScanInternal_d_46 * __this, MethodInfo * method)); DO_APP_FUNC(0x009BEA30, IEnumerator *, RecastGraph_ScanInternal_d_46_System_Collections_IEnumerable_GetEnumerator, (RecastGraph_ScanInternal_d_46 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, RecastGraph_c_DisplayClass50_0__ctor, (RecastGraph_c_DisplayClass50_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x009BEB20, void, RecastGraph_c_DisplayClass50_0__ScanAllTiles_b__0, (RecastGraph_c_DisplayClass50_0 * __this, Int2 tile, int32_t threadIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9448, RecastGraph_c_DisplayClass50_0__ScanAllTiles_b__0__MethodInfo); DO_APP_FUNC(0x009BECA0, void, RecastGraph_c_DisplayClass50_0__ScanAllTiles_b__1, (RecastGraph_c_DisplayClass50_0 * __this, GraphNode * node, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9440, RecastGraph_c_DisplayClass50_0__ScanAllTiles_b__1__MethodInfo); DO_APP_FUNC(0x003AE050, void, RecastGraph_c_DisplayClass50_1__ctor, (RecastGraph_c_DisplayClass50_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x009BECD0, void, RecastGraph_c_DisplayClass50_1__ScanAllTiles_b__2, (RecastGraph_c_DisplayClass50_1 * __this, Int2 tile, int32_t threadIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9410, RecastGraph_c_DisplayClass50_1__ScanAllTiles_b__2__MethodInfo); DO_APP_FUNC(0x0093D960, void, RecastGraph_ScanAllTiles_d_50__ctor, (RecastGraph_ScanAllTiles_d_50 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x009BEE70, void, RecastGraph_ScanAllTiles_d_50_System_IDisposable_Dispose, (RecastGraph_ScanAllTiles_d_50 * __this, MethodInfo * method)); DO_APP_FUNC(0x009BEFF0, bool, RecastGraph_ScanAllTiles_d_50_MoveNext, (RecastGraph_ScanAllTiles_d_50 * __this, MethodInfo * method)); @@ -77645,6 +88533,7 @@ DO_APP_FUNC(0x009C0920, void, RecastGraph_ScanAllTiles_d_50___m__Finally1, (Reca DO_APP_FUNC(0x009C0980, void, RecastGraph_ScanAllTiles_d_50___m__Finally2, (RecastGraph_ScanAllTiles_d_50 * __this, MethodInfo * method)); DO_APP_FUNC(0x0093E890, Progress, RecastGraph_ScanAllTiles_d_50_System_Collections_Generic_IEnumerator_Pathfinding_Progress__get_Current, (RecastGraph_ScanAllTiles_d_50 * __this, MethodInfo * method)); DO_APP_FUNC(0x009C09E0, void, RecastGraph_ScanAllTiles_d_50_System_Collections_IEnumerator_Reset, (RecastGraph_ScanAllTiles_d_50 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB93D8, RecastGraph_ScanAllTiles_d_50_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x009C0A30, Object *, RecastGraph_ScanAllTiles_d_50_System_Collections_IEnumerator_get_Current, (RecastGraph_ScanAllTiles_d_50 * __this, MethodInfo * method)); DO_APP_FUNC(0x009C0A80, IEnumerator_1_Pathfinding_Progress_ *, RecastGraph_ScanAllTiles_d_50_System_Collections_Generic_IEnumerable_Pathfinding_Progress__GetEnumerator, (RecastGraph_ScanAllTiles_d_50 * __this, MethodInfo * method)); DO_APP_FUNC(0x009C0A80, IEnumerator *, RecastGraph_ScanAllTiles_d_50_System_Collections_IEnumerable_GetEnumerator, (RecastGraph_ScanAllTiles_d_50 * __this, MethodInfo * method)); @@ -77661,12 +88550,12 @@ DO_APP_FUNC(0x009C1770, int32_t, BBTree_RebuildFromInternal, (BBTree * __this, T DO_APP_FUNC(0x009C1E10, IntRect, BBTree_NodeBounds, (Int32__Array * permutation, IntRect__Array * nodeBounds, int32_t from, int32_t to, MethodInfo * method)); DO_APP_FUNC(0x009C1F70, void, BBTree_DrawDebugRect, (IntRect rect, MethodInfo * method)); DO_APP_FUNC(0x009C2480, void, BBTree_DrawDebugNode, (TriangleMeshNode * node, float yoffset, Color color, MethodInfo * method)); -DO_APP_FUNC(0x009C2D10, NNInfoInternal, BBTree_QueryClosest, (BBTree * __this, Vector3 p, NNConstraint * constraint, float distance, MethodInfo * method)); -DO_APP_FUNC(0x009C2E20, NNInfoInternal, BBTree_QueryClosestXZ, (BBTree * __this, Vector3 p, NNConstraint * constraint, float distance, NNInfoInternal previous, MethodInfo * method)); -DO_APP_FUNC(0x009C2F70, void, BBTree_SearchBoxClosestXZ, (BBTree * __this, int32_t boxi, Vector3 p, float closestSqrDist, NNConstraint * constraint, NNInfoInternal nnInfo, MethodInfo * method)); -DO_APP_FUNC(0x009C3300, NNInfoInternal, BBTree_QueryClosest_1, (BBTree * __this, Vector3 p, NNConstraint * constraint, float distance, NNInfoInternal previous, MethodInfo * method)); -DO_APP_FUNC(0x009C3450, void, BBTree_SearchBoxClosest, (BBTree * __this, int32_t boxi, Vector3 p, float closestSqrDist, NNConstraint * constraint, NNInfoInternal nnInfo, MethodInfo * method)); -DO_APP_FUNC(0x009C3780, void, BBTree_GetOrderedChildren, (BBTree * __this, int32_t first, int32_t second, float firstDist, float secondDist, Vector3 p, MethodInfo * method)); +DO_APP_FUNC(0x009C2D10, NNInfoInternal, BBTree_QueryClosest, (BBTree * __this, Vector3 p, NNConstraint * constraint, float * distance, MethodInfo * method)); +DO_APP_FUNC(0x009C2E20, NNInfoInternal, BBTree_QueryClosestXZ, (BBTree * __this, Vector3 p, NNConstraint * constraint, float * distance, NNInfoInternal previous, MethodInfo * method)); +DO_APP_FUNC(0x009C2F70, void, BBTree_SearchBoxClosestXZ, (BBTree * __this, int32_t boxi, Vector3 p, float * closestSqrDist, NNConstraint * constraint, NNInfoInternal * nnInfo, MethodInfo * method)); +DO_APP_FUNC(0x009C3300, NNInfoInternal, BBTree_QueryClosest_1, (BBTree * __this, Vector3 p, NNConstraint * constraint, float * distance, NNInfoInternal previous, MethodInfo * method)); +DO_APP_FUNC(0x009C3450, void, BBTree_SearchBoxClosest, (BBTree * __this, int32_t boxi, Vector3 p, float * closestSqrDist, NNConstraint * constraint, NNInfoInternal * nnInfo, MethodInfo * method)); +DO_APP_FUNC(0x009C3780, void, BBTree_GetOrderedChildren, (BBTree * __this, int32_t * first, int32_t * second, float * firstDist, float * secondDist, Vector3 p, MethodInfo * method)); DO_APP_FUNC(0x009C3890, TriangleMeshNode *, BBTree_QueryInside, (BBTree * __this, Vector3 p, NNConstraint * constraint, MethodInfo * method)); DO_APP_FUNC(0x009C3950, TriangleMeshNode *, BBTree_SearchBoxInside, (BBTree * __this, int32_t boxi, Vector3 p, NNConstraint * constraint, MethodInfo * method)); DO_APP_FUNC(0x009C3C30, void, BBTree_OnDrawGizmos, (BBTree * __this, MethodInfo * method)); @@ -77675,10 +88564,10 @@ DO_APP_FUNC(0x009C3FC0, bool, BBTree_NodeIntersectsCircle, (TriangleMeshNode * n DO_APP_FUNC(0x009C4080, bool, BBTree_RectIntersectsCircle, (IntRect r, Vector3 p, float radius, MethodInfo * method)); DO_APP_FUNC(0x009C4200, float, BBTree_SquaredRectPointDistance, (IntRect r, Vector3 p, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BBTree__ctor, (BBTree * __this, MethodInfo * method)); -DO_APP_FUNC(0x006D7510, bool, BBTree_BBTreeBox_get_IsLeaf, (BBTree_BBTreeBox__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x009C4350, void, BBTree_BBTreeBox__ctor, (BBTree_BBTreeBox__Boxed * __this, IntRect rect, MethodInfo * method)); -DO_APP_FUNC(0x009C4370, void, BBTree_BBTreeBox__ctor_1, (BBTree_BBTreeBox__Boxed * __this, int32_t nodeOffset, IntRect rect, MethodInfo * method)); -DO_APP_FUNC(0x009C4390, bool, BBTree_BBTreeBox_Contains, (BBTree_BBTreeBox__Boxed * __this, Vector3 point, MethodInfo * method)); +DO_APP_FUNC(0x006D7510, bool, BBTree_BBTreeBox_get_IsLeaf, (BBTree_BBTreeBox * __this, MethodInfo * method)); +DO_APP_FUNC(0x009C4350, void, BBTree_BBTreeBox__ctor, (BBTree_BBTreeBox * __this, IntRect rect, MethodInfo * method)); +DO_APP_FUNC(0x009C4370, void, BBTree_BBTreeBox__ctor_1, (BBTree_BBTreeBox * __this, int32_t nodeOffset, IntRect rect, MethodInfo * method)); +DO_APP_FUNC(0x009C4390, bool, BBTree_BBTreeBox_Contains, (BBTree_BBTreeBox * __this, Vector3 point, MethodInfo * method)); DO_APP_FUNC(0x009C4470, uint32_t, EuclideanEmbedding_GetRandom, (EuclideanEmbedding * __this, MethodInfo * method)); DO_APP_FUNC(0x009C4480, void, EuclideanEmbedding_EnsureCapacity, (EuclideanEmbedding * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x009C4720, uint32_t, EuclideanEmbedding_GetHeuristic, (EuclideanEmbedding * __this, int32_t nodeIndex1, int32_t nodeIndex2, MethodInfo * method)); @@ -77686,22 +88575,30 @@ DO_APP_FUNC(0x009C4840, void, EuclideanEmbedding_GetClosestWalkableNodesToChildr DO_APP_FUNC(0x009C4C10, void, EuclideanEmbedding_PickNRandomNodes, (EuclideanEmbedding * __this, int32_t count, List_1_Pathfinding_GraphNode_ * buffer, MethodInfo * method)); DO_APP_FUNC(0x009C4E40, GraphNode *, EuclideanEmbedding_PickAnyWalkableNode, (EuclideanEmbedding * __this, MethodInfo * method)); DO_APP_FUNC(0x009C5000, void, EuclideanEmbedding_RecalculatePivots, (EuclideanEmbedding * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9378, EuclideanEmbedding_RecalculatePivots__MethodInfo); DO_APP_FUNC(0x009C55C0, void, EuclideanEmbedding_RecalculateCosts, (EuclideanEmbedding * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9320, EuclideanEmbedding_RecalculateCosts__MethodInfo); DO_APP_FUNC(0x009C5A40, void, EuclideanEmbedding_ApplyGridGraphEndpointSpecialCase, (EuclideanEmbedding * __this, MethodInfo * method)); DO_APP_FUNC(0x009C5F80, void, EuclideanEmbedding_OnDrawGizmos, (EuclideanEmbedding * __this, MethodInfo * method)); DO_APP_FUNC(0x009C61A0, void, EuclideanEmbedding__ctor, (EuclideanEmbedding * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, EuclideanEmbedding_c_DisplayClass17_0__ctor, (EuclideanEmbedding_c_DisplayClass17_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x009C62C0, void, EuclideanEmbedding_c_DisplayClass17_0__PickNRandomNodes_b__0, (EuclideanEmbedding_c_DisplayClass17_0 * __this, GraphNode * node, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB93A0, EuclideanEmbedding_c_DisplayClass17_0__PickNRandomNodes_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, EuclideanEmbedding_c_DisplayClass18_0__ctor, (EuclideanEmbedding_c_DisplayClass18_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x009C6400, void, EuclideanEmbedding_c_DisplayClass18_0__PickAnyWalkableNode_b__0, (EuclideanEmbedding_c_DisplayClass18_0 * __this, GraphNode * node, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9390, EuclideanEmbedding_c_DisplayClass18_0__PickAnyWalkableNode_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, EuclideanEmbedding_c_DisplayClass20_0__ctor, (EuclideanEmbedding_c_DisplayClass20_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x009C6420, void, EuclideanEmbedding_c_DisplayClass20_0__RecalculateCosts_b__0, (EuclideanEmbedding_c_DisplayClass20_0 * __this, Path_1 * path, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9340, EuclideanEmbedding_c_DisplayClass20_0__RecalculateCosts_b__0__MethodInfo); DO_APP_FUNC(0x009C6460, void, EuclideanEmbedding_c_DisplayClass20_0__RecalculateCosts_b__1, (EuclideanEmbedding_c_DisplayClass20_0 * __this, int32_t pivotIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9338, EuclideanEmbedding_c_DisplayClass20_0__RecalculateCosts_b__1__MethodInfo); DO_APP_FUNC(0x003AE050, void, EuclideanEmbedding_c_DisplayClass20_1__ctor, (EuclideanEmbedding_c_DisplayClass20_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x009C6760, void, EuclideanEmbedding_c_DisplayClass20_1__RecalculateCosts_b__2, (EuclideanEmbedding_c_DisplayClass20_1 * __this, Path_1 * _p, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9318, EuclideanEmbedding_c_DisplayClass20_1__RecalculateCosts_b__2__MethodInfo); DO_APP_FUNC(0x003AE050, void, EuclideanEmbedding_c_DisplayClass20_2__ctor, (EuclideanEmbedding_c_DisplayClass20_2 * __this, MethodInfo * method)); DO_APP_FUNC(0x009C6D40, void, EuclideanEmbedding_c_DisplayClass20_2__RecalculateCosts_b__3, (EuclideanEmbedding_c_DisplayClass20_2 * __this, GraphNode * node, MethodInfo * method)); -DO_APP_FUNC(0x009C6F40, void, NavmeshTile_GetTileCoordinates, (NavmeshTile * __this, int32_t tileIndex, int32_t x, int32_t z, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB92F8, EuclideanEmbedding_c_DisplayClass20_2__RecalculateCosts_b__3__MethodInfo); +DO_APP_FUNC(0x009C6F40, void, NavmeshTile_GetTileCoordinates, (NavmeshTile * __this, int32_t tileIndex, int32_t * x, int32_t * z, MethodInfo * method)); DO_APP_FUNC(0x009A2B40, int32_t, NavmeshTile_GetVertexArrayIndex, (NavmeshTile * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x009C6F50, Int3, NavmeshTile_GetVertex, (NavmeshTile * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x009C6FA0, Int3, NavmeshTile_GetVertexInGraphSpace, (NavmeshTile * __this, int32_t index, MethodInfo * method)); @@ -77710,11 +88607,12 @@ DO_APP_FUNC(0x009C7010, void, NavmeshTile_GetNodes, (NavmeshTile * __this, Actio DO_APP_FUNC(0x003AE050, void, NavmeshTile__ctor, (NavmeshTile * __this, MethodInfo * method)); DO_APP_FUNC(0x009C7090, Mesh *, ObjImporter_ImportFile, (String * filePath, MethodInfo * method)); DO_APP_FUNC(0x009C75D0, ObjImporter_meshStruct, ObjImporter_createMeshStruct, (String * filename, MethodInfo * method)); -DO_APP_FUNC(0x009C7E60, void, ObjImporter_populateMeshStruct, (ObjImporter_meshStruct mesh, MethodInfo * method)); +DO_APP_FUNC(0x009C7E60, void, ObjImporter_populateMeshStruct, (ObjImporter_meshStruct * mesh, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ObjImporter__ctor, (ObjImporter * __this, MethodInfo * method)); DO_APP_FUNC(0x009C8E40, void, PointKDTree__ctor, (PointKDTree * __this, MethodInfo * method)); DO_APP_FUNC(0x009C9100, void, PointKDTree_Add, (PointKDTree * __this, GraphNode * node, MethodInfo * method)); DO_APP_FUNC(0x009C9130, void, PointKDTree_Rebuild, (PointKDTree * __this, GraphNode__Array * nodes, int32_t start, int32_t end, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9220, PointKDTree_Rebuild__MethodInfo); DO_APP_FUNC(0x009C9360, GraphNode__Array *, PointKDTree_GetOrCreateList, (PointKDTree * __this, MethodInfo * method)); DO_APP_FUNC(0x009C93F0, int32_t, PointKDTree_Size, (PointKDTree * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x009C9480, void, PointKDTree_CollectAndClear, (PointKDTree * __this, int32_t index, List_1_Pathfinding_GraphNode_ * buffer, MethodInfo * method)); @@ -77724,9 +88622,9 @@ DO_APP_FUNC(0x009C9790, void, PointKDTree_EnsureSize, (PointKDTree * __this, int DO_APP_FUNC(0x009C98B0, void, PointKDTree_Build, (PointKDTree * __this, int32_t index, List_1_Pathfinding_GraphNode_ * nodes, int32_t start, int32_t end, MethodInfo * method)); DO_APP_FUNC(0x009C9F60, void, PointKDTree_Add_1, (PointKDTree * __this, GraphNode * point, int32_t index, int32_t depth, MethodInfo * method)); DO_APP_FUNC(0x009CA260, GraphNode *, PointKDTree_GetNearest, (PointKDTree * __this, Int3 point, NNConstraint * constraint, MethodInfo * method)); -DO_APP_FUNC(0x009CA2C0, void, PointKDTree_GetNearestInternal, (PointKDTree * __this, int32_t index, Int3 point, NNConstraint * constraint, GraphNode * best, int64_t bestSqrDist, MethodInfo * method)); +DO_APP_FUNC(0x009CA2C0, void, PointKDTree_GetNearestInternal, (PointKDTree * __this, int32_t index, Int3 point, NNConstraint * constraint, GraphNode * * best, int64_t * bestSqrDist, MethodInfo * method)); DO_APP_FUNC(0x009CA530, GraphNode *, PointKDTree_GetNearestConnection, (PointKDTree * __this, Int3 point, NNConstraint * constraint, int64_t maximumSqrConnectionLength, MethodInfo * method)); -DO_APP_FUNC(0x009CA5A0, void, PointKDTree_GetNearestConnectionInternal, (PointKDTree * __this, int32_t index, Int3 point, NNConstraint * constraint, GraphNode * best, int64_t bestSqrDist, int64_t distanceThresholdOffset, MethodInfo * method)); +DO_APP_FUNC(0x009CA5A0, void, PointKDTree_GetNearestConnectionInternal, (PointKDTree * __this, int32_t index, Int3 point, NNConstraint * constraint, GraphNode * * best, int64_t * bestSqrDist, int64_t distanceThresholdOffset, MethodInfo * method)); DO_APP_FUNC(0x009CAB70, void, PointKDTree_GetInRange, (PointKDTree * __this, Int3 point, int64_t sqrRadius, List_1_Pathfinding_GraphNode_ * buffer, MethodInfo * method)); DO_APP_FUNC(0x009CABB0, void, PointKDTree_GetInRangeInternal, (PointKDTree * __this, int32_t index, Int3 point, int64_t sqrRadius, List_1_Pathfinding_GraphNode_ * buffer, MethodInfo * method)); DO_APP_FUNC(0x009CADE0, void, PointKDTree__cctor, (MethodInfo * method)); @@ -77739,7 +88637,8 @@ DO_APP_FUNC(0x003AE050, void, PointKDTree_CompareZ__ctor, (PointKDTree_CompareZ DO_APP_FUNC(0x009CB0A0, void, RecastBBTree_QueryInBounds, (RecastBBTree * __this, Rect bounds, List_1_Pathfinding_RecastMeshObj_ * buffer, MethodInfo * method)); DO_APP_FUNC(0x009CB0E0, void, RecastBBTree_QueryBoxInBounds, (RecastBBTree * __this, RecastBBTreeBox * box, Rect bounds, List_1_Pathfinding_RecastMeshObj_ * boxes, MethodInfo * method)); DO_APP_FUNC(0x009CB3D0, bool, RecastBBTree_Remove, (RecastBBTree * __this, RecastMeshObj * mesh, MethodInfo * method)); -DO_APP_FUNC(0x009CB650, RecastBBTreeBox *, RecastBBTree_RemoveBox, (RecastBBTree * __this, RecastBBTreeBox * c, RecastMeshObj * mesh, Rect bounds, bool found, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB91C8, RecastBBTree_Remove__MethodInfo); +DO_APP_FUNC(0x009CB650, RecastBBTreeBox *, RecastBBTree_RemoveBox, (RecastBBTree * __this, RecastBBTreeBox * c, RecastMeshObj * mesh, Rect bounds, bool * found, MethodInfo * method)); DO_APP_FUNC(0x009CBAB0, void, RecastBBTree_Insert, (RecastBBTree * __this, RecastMeshObj * mesh, MethodInfo * method)); DO_APP_FUNC(0x009CBFD0, bool, RecastBBTree_RectIntersectsRect, (Rect r, Rect r2, MethodInfo * method)); DO_APP_FUNC(0x009CC020, float, RecastBBTree_ExpansionRequired, (Rect r, Rect r2, MethodInfo * method)); @@ -77751,11 +88650,14 @@ DO_APP_FUNC(0x009CC1E0, bool, RecastBBTreeBox_Contains, (RecastBBTreeBox * __thi DO_APP_FUNC(0x009CC230, void, RecastMeshObj_GetAllInBounds, (List_1_Pathfinding_RecastMeshObj_ * buffer, Bounds bounds, MethodInfo * method)); DO_APP_FUNC(0x009CC8E0, void, RecastMeshObj_OnEnable, (RecastMeshObj * __this, MethodInfo * method)); DO_APP_FUNC(0x009CC8F0, void, RecastMeshObj_Register, (RecastMeshObj * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9190, RecastMeshObj_Register__MethodInfo); DO_APP_FUNC(0x009CCFF0, void, RecastMeshObj_RecalculateBounds, (RecastMeshObj * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9170, RecastMeshObj_RecalculateBounds__MethodInfo); DO_APP_FUNC(0x009CD610, Bounds, RecastMeshObj_GetBounds, (RecastMeshObj * __this, MethodInfo * method)); DO_APP_FUNC(0x009CD650, MeshFilter *, RecastMeshObj_GetMeshFilter, (RecastMeshObj * __this, MethodInfo * method)); DO_APP_FUNC(0x009CD690, Collider *, RecastMeshObj_GetCollider, (RecastMeshObj * __this, MethodInfo * method)); DO_APP_FUNC(0x009CD6D0, void, RecastMeshObj_OnDisable, (RecastMeshObj * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9150, RecastMeshObj_OnDisable__MethodInfo); DO_APP_FUNC(0x009CD830, void, RecastMeshObj__ctor, (RecastMeshObj * __this, MethodInfo * method)); DO_APP_FUNC(0x009CD880, void, RecastMeshObj__cctor, (MethodInfo * method)); DO_APP_FUNC(0x009CDA10, int32_t, AdvancedSmooth_get_Order, (AdvancedSmooth * __this, MethodInfo * method)); @@ -77791,10 +88693,10 @@ DO_APP_FUNC(0x009D2880, double, AdvancedSmooth_TurnConstructor_ClampAngle, (Adva DO_APP_FUNC(0x009D28C0, double, AdvancedSmooth_TurnConstructor_Atan2, (AdvancedSmooth_TurnConstructor * __this, Vector3 v, MethodInfo * method)); DO_APP_FUNC(0x009D2920, void, AdvancedSmooth_TurnConstructor__ctor, (AdvancedSmooth_TurnConstructor * __this, MethodInfo * method)); DO_APP_FUNC(0x009D2930, void, AdvancedSmooth_TurnConstructor__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x009D2980, float, AdvancedSmooth_Turn_get_score, (AdvancedSmooth_Turn__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x009D29B0, void, AdvancedSmooth_Turn__ctor, (AdvancedSmooth_Turn__Boxed * __this, float length, AdvancedSmooth_TurnConstructor * constructor, int32_t id, MethodInfo * method)); -DO_APP_FUNC(0x009D2A10, void, AdvancedSmooth_Turn_GetPath, (AdvancedSmooth_Turn__Boxed * __this, List_1_UnityEngine_Vector3_ * output, MethodInfo * method)); -DO_APP_FUNC(0x009D2A50, int32_t, AdvancedSmooth_Turn_CompareTo, (AdvancedSmooth_Turn__Boxed * __this, AdvancedSmooth_Turn t, MethodInfo * method)); +DO_APP_FUNC(0x009D2980, float, AdvancedSmooth_Turn_get_score, (AdvancedSmooth_Turn * __this, MethodInfo * method)); +DO_APP_FUNC(0x009D29B0, void, AdvancedSmooth_Turn__ctor, (AdvancedSmooth_Turn * __this, float length, AdvancedSmooth_TurnConstructor * constructor, int32_t id, MethodInfo * method)); +DO_APP_FUNC(0x009D2A10, void, AdvancedSmooth_Turn_GetPath, (AdvancedSmooth_Turn * __this, List_1_UnityEngine_Vector3_ * output, MethodInfo * method)); +DO_APP_FUNC(0x009D2A50, int32_t, AdvancedSmooth_Turn_CompareTo, (AdvancedSmooth_Turn * __this, AdvancedSmooth_Turn t, MethodInfo * method)); DO_APP_FUNC(0x009D2AD0, bool, AdvancedSmooth_Turn_op_LessThan, (AdvancedSmooth_Turn lhs, AdvancedSmooth_Turn rhs, MethodInfo * method)); DO_APP_FUNC(0x009D2B20, bool, AdvancedSmooth_Turn_op_GreaterThan, (AdvancedSmooth_Turn lhs, AdvancedSmooth_Turn rhs, MethodInfo * method)); DO_APP_FUNC(0x009D2B70, int32_t, AlternativePath_get_Order, (AlternativePath * __this, MethodInfo * method)); @@ -77816,8 +88718,8 @@ DO_APP_FUNC(0x009D3B80, void, MonoModifier_OnDisable, (MonoModifier * __this, Me DO_APP_FUNC(0x003AE050, void, MonoModifier_PreProcess, (MonoModifier * __this, Path_1 * path, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, MonoModifier__ctor, (MonoModifier * __this, MethodInfo * method)); DO_APP_FUNC(0x009D3CD0, int32_t, RadiusModifier_get_Order, (RadiusModifier * __this, MethodInfo * method)); -DO_APP_FUNC(0x009D3CE0, bool, RadiusModifier_CalculateCircleInner, (RadiusModifier * __this, Vector3 p1, Vector3 p2, float r1, float r2, float a, float sigma, MethodInfo * method)); -DO_APP_FUNC(0x009D3E20, bool, RadiusModifier_CalculateCircleOuter, (RadiusModifier * __this, Vector3 p1, Vector3 p2, float r1, float r2, float a, float sigma, MethodInfo * method)); +DO_APP_FUNC(0x009D3CE0, bool, RadiusModifier_CalculateCircleInner, (RadiusModifier * __this, Vector3 p1, Vector3 p2, float r1, float r2, float * a, float * sigma, MethodInfo * method)); +DO_APP_FUNC(0x009D3E20, bool, RadiusModifier_CalculateCircleOuter, (RadiusModifier * __this, Vector3 p1, Vector3 p2, float r1, float r2, float * a, float * sigma, MethodInfo * method)); DO_APP_FUNC(0x009D3F80, RadiusModifier_TangentType__Enum, RadiusModifier_CalculateTangentType, (RadiusModifier * __this, Vector3 p1, Vector3 p2, Vector3 p3, Vector3 p4, MethodInfo * method)); DO_APP_FUNC(0x009D4040, RadiusModifier_TangentType__Enum, RadiusModifier_CalculateTangentTypeSimple, (RadiusModifier * __this, Vector3 p1, Vector3 p2, Vector3 p3, MethodInfo * method)); DO_APP_FUNC(0x009D40A0, void, RadiusModifier_Apply, (RadiusModifier * __this, Path_1 * p, MethodInfo * method)); @@ -77840,7 +88742,8 @@ DO_APP_FUNC(0x009D9A80, List_1_UnityEngine_Vector3_ *, SimpleSmoothModifier_Smoo DO_APP_FUNC(0x009DA0E0, void, SimpleSmoothModifier__ctor, (SimpleSmoothModifier * __this, MethodInfo * method)); DO_APP_FUNC(0x003CB690, int32_t, StartEndModifier_get_Order, (StartEndModifier * __this, MethodInfo * method)); DO_APP_FUNC(0x009DA160, void, StartEndModifier_Apply, (StartEndModifier * __this, Path_1 * _p, MethodInfo * method)); -DO_APP_FUNC(0x009DA460, Vector3, StartEndModifier_Snap, (StartEndModifier * __this, ABPath * path, StartEndModifier_Exactness__Enum mode, bool start, bool forceAddPoint, int32_t closestConnectionIndex, MethodInfo * method)); +DO_APP_FUNC(0x009DA460, Vector3, StartEndModifier_Snap, (StartEndModifier * __this, ABPath * path, StartEndModifier_Exactness__Enum mode, bool start, bool * forceAddPoint, int32_t * closestConnectionIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA668, StartEndModifier_Snap__MethodInfo); DO_APP_FUNC(0x009DAEE0, Vector3, StartEndModifier_GetClampedPoint, (StartEndModifier * __this, Vector3 from, Vector3 to, GraphNode * hint, MethodInfo * method)); DO_APP_FUNC(0x009DB0F0, void, StartEndModifier__ctor, (StartEndModifier * __this, MethodInfo * method)); DO_APP_FUNC(0x009DB110, bool, NavmeshAdd_RequiresUpdate, (NavmeshAdd * __this, MethodInfo * method)); @@ -77850,7 +88753,7 @@ DO_APP_FUNC(0x009DB3E0, void, NavmeshAdd_NotifyUpdated, (NavmeshAdd * __this, Me DO_APP_FUNC(0x009DB4E0, Vector3, NavmeshAdd_get_Center, (NavmeshAdd * __this, MethodInfo * method)); DO_APP_FUNC(0x009DB640, void, NavmeshAdd_RebuildMesh, (NavmeshAdd * __this, MethodInfo * method)); DO_APP_FUNC(0x009DBBB0, Rect, NavmeshAdd_GetBounds, (NavmeshAdd * __this, GraphTransform * inverseTransform, MethodInfo * method)); -DO_APP_FUNC(0x009DBEA0, void, NavmeshAdd_GetMesh, (NavmeshAdd * __this, Int3__Array * vbuffer, Int32__Array * tbuffer, GraphTransform * inverseTransform, MethodInfo * method)); +DO_APP_FUNC(0x009DBEA0, void, NavmeshAdd_GetMesh, (NavmeshAdd * __this, Int3__Array * * vbuffer, Int32__Array * * tbuffer, GraphTransform * inverseTransform, MethodInfo * method)); DO_APP_FUNC(0x009DC700, void, NavmeshAdd__ctor, (NavmeshAdd * __this, MethodInfo * method)); DO_APP_FUNC(0x009DC7B0, void, NavmeshAdd__cctor, (MethodInfo * method)); DO_APP_FUNC(0x009DC800, void, NavmeshClipper_AddEnableCallback, (Action_1_Pathfinding_NavmeshClipper_ * onEnable, Action_1_Pathfinding_NavmeshClipper_ * onDisable, MethodInfo * method)); @@ -77879,7 +88782,9 @@ DO_APP_FUNC(0x009E0090, void, NavmeshUpdates_OnEnable, (NavmeshUpdates * __this, DO_APP_FUNC(0x009E0180, void, NavmeshUpdates_OnDisable, (NavmeshUpdates * __this, MethodInfo * method)); DO_APP_FUNC(0x009E0270, void, NavmeshUpdates_DiscardPending, (NavmeshUpdates * __this, MethodInfo * method)); DO_APP_FUNC(0x009E04F0, void, NavmeshUpdates_HandleOnEnableCallback, (NavmeshUpdates * __this, NavmeshClipper * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA4F8, NavmeshUpdates_HandleOnEnableCallback__MethodInfo); DO_APP_FUNC(0x009E0620, void, NavmeshUpdates_HandleOnDisableCallback, (NavmeshUpdates * __this, NavmeshClipper * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA508, NavmeshUpdates_HandleOnDisableCallback__MethodInfo); DO_APP_FUNC(0x009E0750, void, NavmeshUpdates_Update, (NavmeshUpdates * __this, MethodInfo * method)); DO_APP_FUNC(0x009E0970, void, NavmeshUpdates_ForceUpdate, (NavmeshUpdates * __this, MethodInfo * method)); DO_APP_FUNC(0x009E0EF0, void, NavmeshUpdates__ctor, (NavmeshUpdates * __this, MethodInfo * method)); @@ -77903,6 +88808,7 @@ DO_APP_FUNC(0x004EB7C0, void, RelevantGraphSurface__ctor, (RelevantGraphSurface DO_APP_FUNC(0x009E2EF0, float, TileHandlerHelper_get_updateInterval, (TileHandlerHelper * __this, MethodInfo * method)); DO_APP_FUNC(0x009E2F60, void, TileHandlerHelper_set_updateInterval, (TileHandlerHelper * __this, float value, MethodInfo * method)); DO_APP_FUNC(0x009E2FE0, void, TileHandlerHelper_UseSpecifiedHandler, (TileHandlerHelper * __this, TileHandler * newHandler, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA400, TileHandlerHelper_UseSpecifiedHandler__MethodInfo); DO_APP_FUNC(0x009E3040, void, TileHandlerHelper_DiscardPending, (TileHandlerHelper * __this, MethodInfo * method)); DO_APP_FUNC(0x009E30C0, void, TileHandlerHelper_ForceUpdate, (TileHandlerHelper * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, TileHandlerHelper__ctor, (TileHandlerHelper * __this, MethodInfo * method)); @@ -77914,6 +88820,7 @@ DO_APP_FUNC(0x003AE050, void, VersionedMonoBehaviour_UnityEngine_ISerializationC DO_APP_FUNC(0x009E31F0, void, VersionedMonoBehaviour_UnityEngine_ISerializationCallbackReceiver_OnAfterDeserialize, (VersionedMonoBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x007205E0, int32_t, VersionedMonoBehaviour_OnUpgradeSerializedData, (VersionedMonoBehaviour * __this, int32_t version, bool unityThread, MethodInfo * method)); DO_APP_FUNC(0x009E3220, void, VersionedMonoBehaviour_Pathfinding_IVersionedMonoBehaviourInternal_UpgradeFromUnityThread, (VersionedMonoBehaviour * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA3F0, VersionedMonoBehaviour_Pathfinding_IVersionedMonoBehaviourInternal_UpgradeFromUnityThread__MethodInfo); DO_APP_FUNC(0x003AE000, void, VersionedMonoBehaviour__ctor, (VersionedMonoBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, ABPath_get_hasEndPoint, (ABPath * __this, MethodInfo * method)); DO_APP_FUNC(0x009E3290, void, ABPath__ctor, (ABPath * __this, MethodInfo * method)); @@ -77924,13 +88831,17 @@ DO_APP_FUNC(0x009E3900, void, ABPath_UpdateStartEnd, (ABPath * __this, Vector3 s DO_APP_FUNC(0x009E3AD0, uint32_t, ABPath_GetConnectionSpecialCost, (ABPath * __this, GraphNode * a, GraphNode * b, uint32_t currentCost, MethodInfo * method)); DO_APP_FUNC(0x009E4220, void, ABPath_Reset, (ABPath * __this, MethodInfo * method)); DO_APP_FUNC(0x009E4530, bool, ABPath_EndPointGridGraphSpecialCase, (ABPath * __this, GraphNode * closestWalkableEndNode, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA3E0, ABPath_EndPointGridGraphSpecialCase__MethodInfo); DO_APP_FUNC(0x009E4CA0, void, ABPath_SetFlagOnSurroundingGridNodes, (ABPath * __this, GridNode * gridNode, int32_t flag, bool flagState, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA3D0, ABPath_SetFlagOnSurroundingGridNodes__MethodInfo); DO_APP_FUNC(0x009E4FB0, void, ABPath_Prepare, (ABPath * __this, MethodInfo * method)); DO_APP_FUNC(0x009E54C0, void, ABPath_CompletePathIfStartIsValidTarget, (ABPath * __this, MethodInfo * method)); DO_APP_FUNC(0x009E55A0, void, ABPath_Initialize, (ABPath * __this, MethodInfo * method)); DO_APP_FUNC(0x009E5950, void, ABPath_Cleanup, (ABPath * __this, MethodInfo * method)); DO_APP_FUNC(0x009E5AB0, void, ABPath_CompleteWith, (ABPath * __this, GraphNode * node, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA358, ABPath_CompleteWith__MethodInfo); DO_APP_FUNC(0x009E5C30, void, ABPath_CalculateStep, (ABPath * __this, int64_t targetTick, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA338, ABPath_CalculateStep__MethodInfo); DO_APP_FUNC(0x009E5EE0, String *, ABPath_DebugString, (ABPath * __this, PathLog__Enum logMode, MethodInfo * method)); DO_APP_FUNC(0x009E6250, Vector3, ABPath_GetMovementVector, (ABPath * __this, Vector3 point, MethodInfo * method)); DO_APP_FUNC(0x009E6680, void, ABPath__cctor, (MethodInfo * method)); @@ -77943,6 +88854,7 @@ DO_APP_FUNC(0x009E6D90, void, ConstantPath_Prepare, (ConstantPath * __this, Meth DO_APP_FUNC(0x009E6ED0, void, ConstantPath_Initialize, (ConstantPath * __this, MethodInfo * method)); DO_APP_FUNC(0x009E7160, void, ConstantPath_Cleanup, (ConstantPath * __this, MethodInfo * method)); DO_APP_FUNC(0x009E7240, void, ConstantPath_CalculateStep, (ConstantPath * __this, int64_t targetTick, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA268, ConstantPath_CalculateStep__MethodInfo); DO_APP_FUNC(0x009E7490, void, ConstantPath__ctor, (ConstantPath * __this, MethodInfo * method)); DO_APP_FUNC(0x009E74E0, void, EndingConditionDistance__ctor, (EndingConditionDistance * __this, Path_1 * p, int32_t maxGScore, MethodInfo * method)); DO_APP_FUNC(0x009E75B0, bool, EndingConditionDistance_TargetFound, (EndingConditionDistance * __this, PathNode * node, MethodInfo * method)); @@ -77955,21 +88867,25 @@ DO_APP_FUNC(0x009E79E0, GraphNode *, FloodPath_GetParent, (FloodPath * __this, G DO_APP_FUNC(0x009E7A40, void, FloodPath__ctor, (FloodPath * __this, MethodInfo * method)); DO_APP_FUNC(0x009E7AA0, FloodPath *, FloodPath_Construct, (Vector3 start, OnPathDelegate * callback, MethodInfo * method)); DO_APP_FUNC(0x009E7BB0, FloodPath *, FloodPath_Construct_1, (GraphNode * start, OnPathDelegate * callback, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA1E0, FloodPath_Construct_1__MethodInfo); DO_APP_FUNC(0x009E7E00, void, FloodPath_Setup, (FloodPath * __this, Vector3 start, OnPathDelegate * callback, MethodInfo * method)); DO_APP_FUNC(0x009E7E90, void, FloodPath_Setup_1, (FloodPath * __this, GraphNode * start, OnPathDelegate * callback, MethodInfo * method)); DO_APP_FUNC(0x009E8040, void, FloodPath_Reset, (FloodPath * __this, MethodInfo * method)); DO_APP_FUNC(0x009E8230, void, FloodPath_Prepare, (FloodPath * __this, MethodInfo * method)); DO_APP_FUNC(0x009E8450, void, FloodPath_Initialize, (FloodPath * __this, MethodInfo * method)); DO_APP_FUNC(0x009E8700, void, FloodPath_CalculateStep, (FloodPath * __this, int64_t targetTick, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA160, FloodPath_CalculateStep__MethodInfo); DO_APP_FUNC(0x009E8950, void, FloodPathConstraint__ctor, (FloodPathConstraint * __this, FloodPath * path, MethodInfo * method)); DO_APP_FUNC(0x009E8A30, bool, FloodPathConstraint_Suitable, (FloodPathConstraint * __this, GraphNode * node, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, FloodPathTracer_get_hasEndPoint, (FloodPathTracer * __this, MethodInfo * method)); DO_APP_FUNC(0x009E8AD0, void, FloodPathTracer__ctor, (FloodPathTracer * __this, MethodInfo * method)); DO_APP_FUNC(0x009E8B60, FloodPathTracer *, FloodPathTracer_Construct, (Vector3 start, FloodPath * flood, OnPathDelegate * callback, MethodInfo * method)); DO_APP_FUNC(0x009E8C30, void, FloodPathTracer_Setup, (FloodPathTracer * __this, Vector3 start, FloodPath * flood, OnPathDelegate * callback, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA120, FloodPathTracer_Setup__MethodInfo); DO_APP_FUNC(0x009E8F00, void, FloodPathTracer_Reset, (FloodPathTracer * __this, MethodInfo * method)); DO_APP_FUNC(0x009E8F70, void, FloodPathTracer_Initialize, (FloodPathTracer * __this, MethodInfo * method)); DO_APP_FUNC(0x009E9010, void, FloodPathTracer_CalculateStep, (FloodPathTracer * __this, int64_t targetTick, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA0D8, FloodPathTracer_CalculateStep__MethodInfo); DO_APP_FUNC(0x009E9080, void, FloodPathTracer_Trace, (FloodPathTracer * __this, GraphNode * from, MethodInfo * method)); DO_APP_FUNC(0x009E9290, bool, MultiTargetPath_get_inverted, (MultiTargetPath * __this, MethodInfo * method)); DO_APP_FUNC(0x009E92A0, void, MultiTargetPath_set_inverted, (MultiTargetPath * __this, bool value, MethodInfo * method)); @@ -77977,6 +88893,7 @@ DO_APP_FUNC(0x009E92B0, void, MultiTargetPath__ctor, (MultiTargetPath * __this, DO_APP_FUNC(0x009E9350, MultiTargetPath *, MultiTargetPath_Construct, (Vector3__Array * startPoints, Vector3 target, OnPathDelegate__Array * callbackDelegates, OnPathDelegate * callback, MethodInfo * method)); DO_APP_FUNC(0x009E93A0, MultiTargetPath *, MultiTargetPath_Construct_1, (Vector3 start, Vector3__Array * targets, OnPathDelegate__Array * callbackDelegates, OnPathDelegate * callback, MethodInfo * method)); DO_APP_FUNC(0x009E9480, void, MultiTargetPath_Setup, (MultiTargetPath * __this, Vector3 start, Vector3__Array * targets, OnPathDelegate__Array * callbackDelegates, OnPathDelegate * callback, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA070, MultiTargetPath_Setup__MethodInfo); DO_APP_FUNC(0x009E98B0, void, MultiTargetPath_Reset, (MultiTargetPath * __this, MethodInfo * method)); DO_APP_FUNC(0x009E9900, void, MultiTargetPath_OnEnterPool, (MultiTargetPath * __this, MethodInfo * method)); DO_APP_FUNC(0x009E9D80, void, MultiTargetPath_ChooseShortestPath, (MultiTargetPath * __this, MethodInfo * method)); @@ -77986,6 +88903,7 @@ DO_APP_FUNC(0x009EA4A0, void, MultiTargetPath_FoundTarget, (MultiTargetPath * __ DO_APP_FUNC(0x009EA740, void, MultiTargetPath_RebuildOpenList, (MultiTargetPath * __this, MethodInfo * method)); DO_APP_FUNC(0x009EA980, void, MultiTargetPath_Prepare, (MultiTargetPath * __this, MethodInfo * method)); DO_APP_FUNC(0x009EB190, void, MultiTargetPath_RecalculateHTarget, (MultiTargetPath * __this, bool firstTime, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9FF0, MultiTargetPath_RecalculateHTarget__MethodInfo); DO_APP_FUNC(0x009EBA00, void, MultiTargetPath_Initialize, (MultiTargetPath * __this, MethodInfo * method)); DO_APP_FUNC(0x009EBD60, void, MultiTargetPath_Cleanup, (MultiTargetPath * __this, MethodInfo * method)); DO_APP_FUNC(0x009EBF50, void, MultiTargetPath_ResetFlags, (MultiTargetPath * __this, MethodInfo * method)); @@ -78002,6 +88920,7 @@ DO_APP_FUNC(0x009ED040, void, RandomPath_ReturnPath, (RandomPath * __this, Metho DO_APP_FUNC(0x009ED1F0, void, RandomPath_Prepare, (RandomPath * __this, MethodInfo * method)); DO_APP_FUNC(0x009ED5D0, void, RandomPath_Initialize, (RandomPath * __this, MethodInfo * method)); DO_APP_FUNC(0x009ED870, void, RandomPath_CalculateStep, (RandomPath * __this, int64_t targetTick, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9EF8, RandomPath_CalculateStep__MethodInfo); DO_APP_FUNC(0x009EDBB0, void, XPath__ctor, (XPath * __this, MethodInfo * method)); DO_APP_FUNC(0x009EDC40, XPath *, XPath_Construct, (Vector3 start, Vector3 end, OnPathDelegate * callback, MethodInfo * method)); DO_APP_FUNC(0x009E8F00, void, XPath_Reset, (XPath * __this, MethodInfo * method)); @@ -78009,13 +88928,17 @@ DO_APP_FUNC(0x0041AF00, bool, XPath_EndPointGridGraphSpecialCase, (XPath * __thi DO_APP_FUNC(0x009EDE00, void, XPath_CompletePathIfStartIsValidTarget, (XPath * __this, MethodInfo * method)); DO_APP_FUNC(0x009EDED0, void, XPath_ChangeEndNode, (XPath * __this, GraphNode * target, MethodInfo * method)); DO_APP_FUNC(0x009EE010, void, XPath_CalculateStep, (XPath * __this, int64_t targetTick, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9EB8, XPath_CalculateStep__MethodInfo); DO_APP_FUNC(0x003AE050, void, PathEndingCondition__ctor, (PathEndingCondition * __this, MethodInfo * method)); DO_APP_FUNC(0x009EE260, void, PathEndingCondition__ctor_1, (PathEndingCondition * __this, Path_1 * p, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9EC8, PathEndingCondition__ctor_1__MethodInfo); DO_APP_FUNC(0x009EE320, void, ABPathEndingCondition__ctor, (ABPathEndingCondition * __this, ABPath * p, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9E90, ABPathEndingCondition__ctor__MethodInfo); DO_APP_FUNC(0x009EE440, bool, ABPathEndingCondition_TargetFound, (ABPathEndingCondition * __this, PathNode * node, MethodInfo * method)); DO_APP_FUNC(0x009EE470, void, EndingConditionProximity__ctor, (EndingConditionProximity * __this, ABPath * p, float maxDistance, MethodInfo * method)); DO_APP_FUNC(0x009EE4A0, bool, EndingConditionProximity_TargetFound, (EndingConditionProximity * __this, PathNode * node, MethodInfo * method)); DO_APP_FUNC(0x009EE560, void, BlockManager_Start, (BlockManager * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9E70, BlockManager_Start__MethodInfo); DO_APP_FUNC(0x009EE640, bool, BlockManager_NodeContainsAnyOf, (BlockManager * __this, GraphNode * node, List_1_Pathfinding_SingleNodeBlocker_ * selector, MethodInfo * method)); DO_APP_FUNC(0x009EE770, bool, BlockManager_NodeContainsAnyExcept, (BlockManager * __this, GraphNode * node, List_1_Pathfinding_SingleNodeBlocker_ * selector, MethodInfo * method)); DO_APP_FUNC(0x009EE8A0, void, BlockManager_InternalBlock, (BlockManager * __this, GraphNode * node, SingleNodeBlocker * blocker, MethodInfo * method)); @@ -78024,17 +88947,21 @@ DO_APP_FUNC(0x009EED40, void, BlockManager__ctor, (BlockManager * __this, Method DO_APP_FUNC(0x003BC2E0, BlockManager_BlockMode__Enum, BlockManager_TraversalProvider_get_mode, (BlockManager_TraversalProvider * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCDD0, void, BlockManager_TraversalProvider_set_mode, (BlockManager_TraversalProvider * __this, BlockManager_BlockMode__Enum value, MethodInfo * method)); DO_APP_FUNC(0x009EEEB0, void, BlockManager_TraversalProvider__ctor, (BlockManager_TraversalProvider * __this, BlockManager * blockManager, BlockManager_BlockMode__Enum mode, List_1_Pathfinding_SingleNodeBlocker_ * selector, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBAF20, BlockManager_TraversalProvider__ctor__MethodInfo); DO_APP_FUNC(0x009EF120, bool, BlockManager_TraversalProvider_CanTraverse, (BlockManager_TraversalProvider * __this, Path_1 * path, GraphNode * node, MethodInfo * method)); DO_APP_FUNC(0x009EF3C0, uint32_t, BlockManager_TraversalProvider_GetTraversalCost, (BlockManager_TraversalProvider * __this, Path_1 * path, GraphNode * node, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BlockManager_c_DisplayClass6_0__ctor, (BlockManager_c_DisplayClass6_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x009EF400, void, BlockManager_c_DisplayClass6_0__InternalBlock_b__0, (BlockManager_c_DisplayClass6_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9E28, BlockManager_c_DisplayClass6_0__InternalBlock_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, BlockManager_c_DisplayClass7_0__ctor, (BlockManager_c_DisplayClass7_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x009EF560, void, BlockManager_c_DisplayClass7_0__InternalUnblock_b__0, (BlockManager_c_DisplayClass7_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9DF8, BlockManager_c_DisplayClass7_0__InternalUnblock_b__0__MethodInfo); DO_APP_FUNC(0x003BB3E0, GraphNode *, SingleNodeBlocker_get_lastBlocked, (SingleNodeBlocker * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCDE0, void, SingleNodeBlocker_set_lastBlocked, (SingleNodeBlocker * __this, GraphNode * value, MethodInfo * method)); DO_APP_FUNC(0x009EF6A0, void, SingleNodeBlocker_BlockAtCurrentPosition, (SingleNodeBlocker * __this, MethodInfo * method)); DO_APP_FUNC(0x009EF780, void, SingleNodeBlocker_BlockAt, (SingleNodeBlocker * __this, Vector3 position, MethodInfo * method)); DO_APP_FUNC(0x009EF960, void, SingleNodeBlocker_Block, (SingleNodeBlocker * __this, GraphNode * node, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBAEA8, SingleNodeBlocker_Block__MethodInfo); DO_APP_FUNC(0x009EFA50, void, SingleNodeBlocker_Unblock, (SingleNodeBlocker * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, SingleNodeBlocker__ctor, (SingleNodeBlocker * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AstarProfiler__ctor, (AstarProfiler * __this, MethodInfo * method)); @@ -78050,17 +88977,22 @@ DO_APP_FUNC(0x009F0FF0, void, AstarProfiler_PrintResults, (MethodInfo * method)) DO_APP_FUNC(0x009F1A30, void, AstarProfiler__cctor, (MethodInfo * method)); DO_APP_FUNC(0x009F1B70, void, AstarProfiler_ProfilePoint__ctor, (AstarProfiler_ProfilePoint * __this, MethodInfo * method)); DO_APP_FUNC(0x009F1C00, List_1_Pathfinding_Funnel_PathPart_ *, Funnel_SplitIntoParts, (Path_1 * path, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBACE8, Funnel_SplitIntoParts__MethodInfo); DO_APP_FUNC(0x009F2430, Funnel_FunnelPortals, Funnel_ConstructFunnelPortals, (List_1_Pathfinding_GraphNode_ * nodes, Funnel_PathPart part, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBACC8, Funnel_ConstructFunnelPortals__MethodInfo); DO_APP_FUNC(0x009F2B60, void, Funnel_ShrinkPortals, (Funnel_FunnelPortals portals, float shrink, MethodInfo * method)); -DO_APP_FUNC(0x009F2F70, bool, Funnel_UnwrapHelper, (Vector3 portalStart, Vector3 portalEnd, Vector3 prevPoint, Vector3 nextPoint, Quaternion mRot, Vector3 mOffset, MethodInfo * method)); +DO_APP_FUNC(0x009F2F70, bool, Funnel_UnwrapHelper, (Vector3 portalStart, Vector3 portalEnd, Vector3 prevPoint, Vector3 nextPoint, Quaternion * mRot, Vector3 * mOffset, MethodInfo * method)); DO_APP_FUNC(0x009F34C0, void, Funnel_Unwrap, (Funnel_FunnelPortals funnel, Vector2__Array * left, Vector2__Array * right, MethodInfo * method)); DO_APP_FUNC(0x009F4010, int32_t, Funnel_FixFunnel, (Vector2__Array * left, Vector2__Array * right, int32_t numPortals, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBAC60, Funnel_FixFunnel__MethodInfo); DO_APP_FUNC(0x009F41D0, Vector2, Funnel_ToXZ, (Vector3 p, MethodInfo * method)); DO_APP_FUNC(0x009F41F0, Vector3, Funnel_FromXZ, (Vector2 p, MethodInfo * method)); DO_APP_FUNC(0x009F4220, bool, Funnel_RightOrColinear, (Vector2 a, Vector2 b, MethodInfo * method)); DO_APP_FUNC(0x009F4260, bool, Funnel_LeftOrColinear, (Vector2 a, Vector2 b, MethodInfo * method)); DO_APP_FUNC(0x009F42A0, List_1_UnityEngine_Vector3_ *, Funnel_Calculate, (Funnel_FunnelPortals funnel, bool unwrap, bool splitAtEveryPortal, MethodInfo * method)); -DO_APP_FUNC(0x009F4C80, void, Funnel_Calculate_1, (Vector2__Array * left, Vector2__Array * right, int32_t numPortals, int32_t startIndex, List_1_System_Int32_ * funnelPath, int32_t maxCorners, bool lastCorner, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBAC28, Funnel_Calculate__MethodInfo); +DO_APP_FUNC(0x009F4C80, void, Funnel_Calculate_1, (Vector2__Array * left, Vector2__Array * right, int32_t numPortals, int32_t startIndex, List_1_System_Int32_ * funnelPath, int32_t maxCorners, bool * lastCorner, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBAC30, Funnel_Calculate_1__MethodInfo); DO_APP_FUNC(0x003AE050, void, Funnel__ctor, (Funnel * __this, MethodInfo * method)); DO_APP_FUNC(0x009F5140, bool, GraphUpdateUtilities_UpdateGraphsNoBlock, (GraphUpdateObject * guo, GraphNode * node1, GraphNode * node2, bool alwaysRevert, MethodInfo * method)); DO_APP_FUNC(0x009F5250, bool, GraphUpdateUtilities_UpdateGraphsNoBlock_1, (GraphUpdateObject * guo, List_1_Pathfinding_GraphNode_ * nodes, bool alwaysRevert, MethodInfo * method)); @@ -78073,13 +89005,19 @@ DO_APP_FUNC(0x009F6250, List_1_UnityEngine_Vector3_ *, PathUtilities_GetSpiralPo DO_APP_FUNC(0x009F66C0, Vector3, PathUtilities_InvoluteOfCircle, (float a, float t, MethodInfo * method)); DO_APP_FUNC(0x009F6750, void, PathUtilities_GetPointsAroundPointWorld, (Vector3 p, IRaycastableGraph * g, List_1_UnityEngine_Vector3_ * previousPoints, float radius, float clearanceRadius, MethodInfo * method)); DO_APP_FUNC(0x009F69C0, void, PathUtilities_GetPointsAroundPoint, (Vector3 center, IRaycastableGraph * g, List_1_UnityEngine_Vector3_ * previousPoints, float radius, float clearanceRadius, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBAB00, PathUtilities_GetPointsAroundPoint__MethodInfo); DO_APP_FUNC(0x009F71D0, List_1_UnityEngine_Vector3_ *, PathUtilities_GetPointsOnNodes, (List_1_Pathfinding_GraphNode_ * nodes, int32_t count, float clearanceRadius, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBAAB8, PathUtilities_GetPointsOnNodes__MethodInfo); DO_APP_FUNC(0x003AE050, void, PathUtilities_c_DisplayClass3_0__ctor, (PathUtilities_c_DisplayClass3_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x009F79C0, void, PathUtilities_c_DisplayClass3_0__GetReachableNodes_b__0, (PathUtilities_c_DisplayClass3_0 * __this, GraphNode * node, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBABB8, PathUtilities_c_DisplayClass3_0__GetReachableNodes_b__0__MethodInfo); DO_APP_FUNC(0x009F7AA0, void, PathUtilities_c_DisplayClass3_0__GetReachableNodes_b__1, (PathUtilities_c_DisplayClass3_0 * __this, GraphNode * node, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBABA8, PathUtilities_c_DisplayClass3_0__GetReachableNodes_b__1__MethodInfo); DO_APP_FUNC(0x003AE050, void, PathUtilities_c_DisplayClass6_0__ctor, (PathUtilities_c_DisplayClass6_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x009F7BC0, void, PathUtilities_c_DisplayClass6_0__BFS_b__0, (PathUtilities_c_DisplayClass6_0 * __this, GraphNode * node, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBAB48, PathUtilities_c_DisplayClass6_0__BFS_b__0__MethodInfo); DO_APP_FUNC(0x009F7D20, void, PathUtilities_c_DisplayClass6_0__BFS_b__1, (PathUtilities_c_DisplayClass6_0 * __this, GraphNode * node, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBAB38, PathUtilities_c_DisplayClass6_0__BFS_b__1__MethodInfo); DO_APP_FUNC(0x009F7E90, int32_t, Profile_ControlValue, (Profile * __this, MethodInfo * method)); DO_APP_FUNC(0x009F7EA0, void, Profile__ctor, (Profile * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Profile_WriteCSV, (String * path, Profile__Array * profiles, MethodInfo * method)); @@ -78089,7 +89027,9 @@ DO_APP_FUNC(0x009F8040, void, Profile_Stop, (Profile * __this, MethodInfo * meth DO_APP_FUNC(0x009F8070, void, Profile_Log, (Profile * __this, MethodInfo * method)); DO_APP_FUNC(0x009F80E0, void, Profile_ConsoleLog, (Profile * __this, MethodInfo * method)); DO_APP_FUNC(0x009F8150, void, Profile_Stop_1, (Profile * __this, int32_t control, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBAA38, Profile_Stop_1__MethodInfo); DO_APP_FUNC(0x009F8240, void, Profile_Control, (Profile * __this, Profile * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBAA40, Profile_Control__MethodInfo); DO_APP_FUNC(0x009F84C0, String *, Profile_ToString, (Profile * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, String *, UnityReferenceHelper_GetGUID, (UnityReferenceHelper * __this, MethodInfo * method)); DO_APP_FUNC(0x009F8900, void, UnityReferenceHelper_Awake, (UnityReferenceHelper * __this, MethodInfo * method)); @@ -78097,6 +89037,7 @@ DO_APP_FUNC(0x009F8910, void, UnityReferenceHelper_Reset, (UnityReferenceHelper DO_APP_FUNC(0x003AE000, void, UnityReferenceHelper__ctor, (UnityReferenceHelper * __this, MethodInfo * method)); DO_APP_FUNC(0x009F8CD0, void, LegacyAIPath_Awake, (LegacyAIPath * __this, MethodInfo * method)); DO_APP_FUNC(0x009F8EE0, void, LegacyAIPath_OnPathComplete, (LegacyAIPath * __this, Path_1 * _p, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA9B8, LegacyAIPath_OnPathComplete__MethodInfo); DO_APP_FUNC(0x009F9210, void, LegacyAIPath_Update, (LegacyAIPath * __this, MethodInfo * method)); DO_APP_FUNC(0x009F96B0, float, LegacyAIPath_XZSqrMagnitude, (LegacyAIPath * __this, Vector3 a, Vector3 b, MethodInfo * method)); DO_APP_FUNC(0x009F96E0, Vector3, LegacyAIPath_CalculateVelocity, (LegacyAIPath * __this, Vector3 currentPosition, MethodInfo * method)); @@ -78115,27 +89056,27 @@ DO_APP_FUNC(0x009FD1F0, void, VoxelArea__ctor, (VoxelArea * __this, int32_t widt DO_APP_FUNC(0x009FD610, int32_t, VoxelArea_GetSpanCountAll, (VoxelArea * __this, MethodInfo * method)); DO_APP_FUNC(0x009FD680, int32_t, VoxelArea_GetSpanCount, (VoxelArea * __this, MethodInfo * method)); DO_APP_FUNC(0x009FD700, void, VoxelArea_AddLinkedSpan, (VoxelArea * __this, int32_t index, uint32_t bottom, uint32_t top, int32_t area, int32_t voxelWalkableClimb, MethodInfo * method)); -DO_APP_FUNC(0x009FD760, void, LinkedVoxelSpan__ctor, (LinkedVoxelSpan__Boxed * __this, uint32_t bottom, uint32_t top, int32_t area, MethodInfo * method)); -DO_APP_FUNC(0x009FD780, void, LinkedVoxelSpan__ctor_1, (LinkedVoxelSpan__Boxed * __this, uint32_t bottom, uint32_t top, int32_t area, int32_t next, MethodInfo * method)); +DO_APP_FUNC(0x009FD760, void, LinkedVoxelSpan__ctor, (LinkedVoxelSpan * __this, uint32_t bottom, uint32_t top, int32_t area, MethodInfo * method)); +DO_APP_FUNC(0x009FD780, void, LinkedVoxelSpan__ctor_1, (LinkedVoxelSpan * __this, uint32_t bottom, uint32_t top, int32_t area, int32_t next, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, RasterizationMesh__ctor, (RasterizationMesh * __this, MethodInfo * method)); DO_APP_FUNC(0x009FD7A0, void, RasterizationMesh__ctor_1, (RasterizationMesh * __this, Vector3__Array * vertices, Int32__Array * triangles, Bounds bounds, MethodInfo * method)); DO_APP_FUNC(0x009FD960, void, RasterizationMesh__ctor_2, (RasterizationMesh * __this, Vector3__Array * vertices, Int32__Array * triangles, Bounds bounds, Matrix4x4 matrix, MethodInfo * method)); DO_APP_FUNC(0x009FDAE0, void, RasterizationMesh_RecalculateBounds, (RasterizationMesh * __this, MethodInfo * method)); DO_APP_FUNC(0x009FDE50, void, RasterizationMesh_Pool, (RasterizationMesh * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, VoxelContourSet__ctor, (VoxelContourSet * __this, MethodInfo * method)); -DO_APP_FUNC(0x009FDF20, void, VoxelCell_AddSpan, (VoxelCell__Boxed * __this, uint32_t bottom, uint32_t top, int32_t area, int32_t voxelWalkableClimb, MethodInfo * method)); -DO_APP_FUNC(0x00977B80, void, CompactVoxelCell__ctor, (CompactVoxelCell__Boxed * __this, uint32_t i, uint32_t c, MethodInfo * method)); -DO_APP_FUNC(0x009FE120, void, CompactVoxelSpan__ctor, (CompactVoxelSpan__Boxed * __this, uint16_t bottom, uint32_t height, MethodInfo * method)); -DO_APP_FUNC(0x009FE140, void, CompactVoxelSpan_SetConnection, (CompactVoxelSpan__Boxed * __this, int32_t dir, uint32_t value, MethodInfo * method)); -DO_APP_FUNC(0x009FE170, int32_t, CompactVoxelSpan_GetConnection, (CompactVoxelSpan__Boxed * __this, int32_t dir, MethodInfo * method)); +DO_APP_FUNC(0x009FDF20, void, VoxelCell_AddSpan, (VoxelCell * __this, uint32_t bottom, uint32_t top, int32_t area, int32_t voxelWalkableClimb, MethodInfo * method)); +DO_APP_FUNC(0x00977B80, void, CompactVoxelCell__ctor, (CompactVoxelCell * __this, uint32_t i, uint32_t c, MethodInfo * method)); +DO_APP_FUNC(0x009FE120, void, CompactVoxelSpan__ctor, (CompactVoxelSpan * __this, uint16_t bottom, uint32_t height, MethodInfo * method)); +DO_APP_FUNC(0x009FE140, void, CompactVoxelSpan_SetConnection, (CompactVoxelSpan * __this, int32_t dir, uint32_t value, MethodInfo * method)); +DO_APP_FUNC(0x009FE170, int32_t, CompactVoxelSpan_GetConnection, (CompactVoxelSpan * __this, int32_t dir, MethodInfo * method)); DO_APP_FUNC(0x009FE190, void, VoxelSpan__ctor, (VoxelSpan * __this, uint32_t b, uint32_t t, int32_t area, MethodInfo * method)); DO_APP_FUNC(0x009FE1A0, void, Voxelize_BuildContours, (Voxelize * __this, float maxError, int32_t maxEdgeLength, VoxelContourSet * cset, int32_t buildFlags, MethodInfo * method)); -DO_APP_FUNC(0x009FF180, void, Voxelize_GetClosestIndices, (Voxelize * __this, Int32__Array * vertsa, int32_t nvertsa, Int32__Array * vertsb, int32_t nvertsb, int32_t ia, int32_t ib, MethodInfo * method)); +DO_APP_FUNC(0x009FF180, void, Voxelize_GetClosestIndices, (Voxelize * __this, Int32__Array * vertsa, int32_t nvertsa, Int32__Array * vertsb, int32_t nvertsb, int32_t * ia, int32_t * ib, MethodInfo * method)); DO_APP_FUNC(0x009FF420, void, Voxelize_ReleaseContours, (VoxelContourSet * cset, MethodInfo * method)); -DO_APP_FUNC(0x009FF5A0, bool, Voxelize_MergeContours, (VoxelContour ca, VoxelContour cb, int32_t ia, int32_t ib, MethodInfo * method)); +DO_APP_FUNC(0x009FF5A0, bool, Voxelize_MergeContours, (VoxelContour * ca, VoxelContour * cb, int32_t ia, int32_t ib, MethodInfo * method)); DO_APP_FUNC(0x009FF980, void, Voxelize_SimplifyContour, (Voxelize * __this, List_1_System_Int32_ * verts, List_1_System_Int32_ * simplified, float maxError, int32_t maxEdgeLenght, int32_t buildFlags, MethodInfo * method)); DO_APP_FUNC(0x00A008C0, void, Voxelize_WalkContour, (Voxelize * __this, int32_t x, int32_t z, int32_t i, UInt16__Array * flags, List_1_System_Int32_ * verts, MethodInfo * method)); -DO_APP_FUNC(0x00A00DC0, int32_t, Voxelize_GetCornerHeight, (Voxelize * __this, int32_t x, int32_t z, int32_t i, int32_t dir, bool isBorderVertex, MethodInfo * method)); +DO_APP_FUNC(0x00A00DC0, int32_t, Voxelize_GetCornerHeight, (Voxelize * __this, int32_t x, int32_t z, int32_t i, int32_t dir, bool * isBorderVertex, MethodInfo * method)); DO_APP_FUNC(0x00A01510, void, Voxelize_RemoveDegenerateSegments, (Voxelize * __this, List_1_System_Int32_ * simplified, MethodInfo * method)); DO_APP_FUNC(0x00A01670, int32_t, Voxelize_CalcAreaOfPolygon2D, (Voxelize * __this, Int32__Array * verts, int32_t nverts, MethodInfo * method)); DO_APP_FUNC(0x00A01750, bool, Voxelize_Ileft, (int32_t a, int32_t b, int32_t c, Int32__Array * va, Int32__Array * vb, Int32__Array * vc, MethodInfo * method)); @@ -78153,15 +89094,16 @@ DO_APP_FUNC(0x00A020C0, bool, Voxelize_Intersect, (int32_t a, int32_t b, int32_t DO_APP_FUNC(0x00A02240, bool, Voxelize_Vequal, (int32_t a, int32_t b, Int32__Array * verts, MethodInfo * method)); DO_APP_FUNC(0x00A022B0, int32_t, Voxelize_Prev, (int32_t i, int32_t n, MethodInfo * method)); DO_APP_FUNC(0x00A022C0, int32_t, Voxelize_Next, (int32_t i, int32_t n, MethodInfo * method)); -DO_APP_FUNC(0x00A022D0, void, Voxelize_BuildPolyMesh, (Voxelize * __this, VoxelContourSet * cset, int32_t nvp, VoxelMesh mesh, MethodInfo * method)); -DO_APP_FUNC(0x00A02BE0, int32_t, Voxelize_Triangulate, (Voxelize * __this, int32_t n, Int32__Array * verts, Int32__Array * indices, Int32__Array * tris, MethodInfo * method)); +DO_APP_FUNC(0x00A022D0, void, Voxelize_BuildPolyMesh, (Voxelize * __this, VoxelContourSet * cset, int32_t nvp, VoxelMesh * mesh, MethodInfo * method)); +DO_APP_FUNC(0x00A02BE0, int32_t, Voxelize_Triangulate, (Voxelize * __this, int32_t n, Int32__Array * verts, Int32__Array * * indices, Int32__Array * * tris, MethodInfo * method)); DO_APP_FUNC(0x003C91D0, GraphTransform *, Voxelize_get_transformVoxel2Graph, (Voxelize * __this, MethodInfo * method)); DO_APP_FUNC(0x00A030D0, void, Voxelize_set_transformVoxel2Graph, (Voxelize * __this, GraphTransform * value, MethodInfo * method)); DO_APP_FUNC(0x00A03130, Vector3, Voxelize_CompactSpanToVector, (Voxelize * __this, int32_t x, int32_t z, int32_t i, MethodInfo * method)); -DO_APP_FUNC(0x00A031F0, void, Voxelize_VectorToIndex, (Voxelize * __this, Vector3 p, int32_t x, int32_t z, MethodInfo * method)); +DO_APP_FUNC(0x00A031F0, void, Voxelize_VectorToIndex, (Voxelize * __this, Vector3 p, int32_t * x, int32_t * z, MethodInfo * method)); DO_APP_FUNC(0x00A032A0, void, Voxelize__ctor, (Voxelize * __this, float ch, float cs, float walkableClimb, float walkableHeight, float maxSlope, float maxEdgeLength, MethodInfo * method)); DO_APP_FUNC(0x00A033C0, void, Voxelize_Init, (Voxelize * __this, MethodInfo * method)); DO_APP_FUNC(0x00A035F0, void, Voxelize_VoxelizeInput, (Voxelize * __this, GraphTransform * graphTransform, Bounds graphSpaceBounds, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA800, Voxelize_VoxelizeInput__MethodInfo); DO_APP_FUNC(0x00A04AE0, void, Voxelize_DebugDrawSpans, (Voxelize * __this, MethodInfo * method)); DO_APP_FUNC(0x00A04B40, void, Voxelize_BuildCompactField, (Voxelize * __this, MethodInfo * method)); DO_APP_FUNC(0x00A04F80, void, Voxelize_BuildVoxelConnections, (Voxelize * __this, MethodInfo * method)); @@ -78183,13 +89125,13 @@ DO_APP_FUNC(0x00A07A60, void, Voxelize_BuildRegions, (Voxelize * __this, MethodI DO_APP_FUNC(0x00A08DB0, int32_t, Voxelize_union_find_find, (Int32__Array * arr, int32_t x, MethodInfo * method)); DO_APP_FUNC(0x00A08E10, void, Voxelize_union_find_union, (Int32__Array * arr, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00A08F10, void, Voxelize_FilterSmallRegions, (Voxelize * __this, UInt16__Array * reg, int32_t minRegionSize, int32_t maxRegions, MethodInfo * method)); -DO_APP_FUNC(0x00A099D0, void, VoxelPolygonClipper__ctor, (VoxelPolygonClipper__Boxed * __this, int32_t capacity, MethodInfo * method)); -DO_APP_FUNC(0x00A09B40, void, VoxelPolygonClipper_set_Item, (VoxelPolygonClipper__Boxed * __this, int32_t i, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x00A09BB0, void, VoxelPolygonClipper_ClipPolygonAlongX, (VoxelPolygonClipper__Boxed * __this, VoxelPolygonClipper result, float multi, float offset, MethodInfo * method)); -DO_APP_FUNC(0x00A09E70, void, VoxelPolygonClipper_ClipPolygonAlongZWithYZ, (VoxelPolygonClipper__Boxed * __this, VoxelPolygonClipper result, float multi, float offset, MethodInfo * method)); -DO_APP_FUNC(0x00A0A0A0, void, VoxelPolygonClipper_ClipPolygonAlongZWithY, (VoxelPolygonClipper__Boxed * __this, VoxelPolygonClipper result, float multi, float offset, MethodInfo * method)); -DO_APP_FUNC(0x00A0A240, void, Int3PolygonClipper_Init, (Int3PolygonClipper__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A0A370, int32_t, Int3PolygonClipper_ClipPolygon, (Int3PolygonClipper__Boxed * __this, Int3__Array * vIn, int32_t n, Int3__Array * vOut, int32_t multi, int32_t offset, int32_t axis, MethodInfo * method)); +DO_APP_FUNC(0x00A099D0, void, VoxelPolygonClipper__ctor, (VoxelPolygonClipper * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC(0x00A09B40, void, VoxelPolygonClipper_set_Item, (VoxelPolygonClipper * __this, int32_t i, Vector3 value, MethodInfo * method)); +DO_APP_FUNC(0x00A09BB0, void, VoxelPolygonClipper_ClipPolygonAlongX, (VoxelPolygonClipper * __this, VoxelPolygonClipper * result, float multi, float offset, MethodInfo * method)); +DO_APP_FUNC(0x00A09E70, void, VoxelPolygonClipper_ClipPolygonAlongZWithYZ, (VoxelPolygonClipper * __this, VoxelPolygonClipper * result, float multi, float offset, MethodInfo * method)); +DO_APP_FUNC(0x00A0A0A0, void, VoxelPolygonClipper_ClipPolygonAlongZWithY, (VoxelPolygonClipper * __this, VoxelPolygonClipper * result, float multi, float offset, MethodInfo * method)); +DO_APP_FUNC(0x00A0A240, void, Int3PolygonClipper_Init, (Int3PolygonClipper * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A0A370, int32_t, Int3PolygonClipper_ClipPolygon, (Int3PolygonClipper * __this, Int3__Array * vIn, int32_t n, Int3__Array * vOut, int32_t multi, int32_t offset, int32_t axis, MethodInfo * method)); DO_APP_FUNC(0x00A0A690, float, Utility_Min, (float a, float b, float c, MethodInfo * method)); DO_APP_FUNC(0x00A0A6A0, float, Utility_Max, (float a, float b, float c, MethodInfo * method)); DO_APP_FUNC(0x00A0A6B0, Int3__Array *, Utility_RemoveDuplicateVertices, (Int3__Array * vertices, Int32__Array * triangles, MethodInfo * method)); @@ -78200,6 +89142,7 @@ DO_APP_FUNC(0x00A0B0A0, void, RecastMeshGatherer_CollectSceneMeshes, (RecastMesh DO_APP_FUNC(0x00A0B800, void, RecastMeshGatherer_CollectRecastMeshObjs, (RecastMeshGatherer * __this, List_1_Pathfinding_Voxels_RasterizationMesh_ * buffer, MethodInfo * method)); DO_APP_FUNC(0x00A0C400, void, RecastMeshGatherer_CollectTerrainMeshes, (RecastMeshGatherer * __this, bool rasterizeTrees, float desiredChunkSize, List_1_Pathfinding_Voxels_RasterizationMesh_ * result, MethodInfo * method)); DO_APP_FUNC(0x00A0C690, void, RecastMeshGatherer_GenerateTerrainChunks, (RecastMeshGatherer * __this, Terrain * terrain, Bounds bounds, float desiredChunkSize, List_1_Pathfinding_Voxels_RasterizationMesh_ * result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC158, RecastMeshGatherer_GenerateTerrainChunks__MethodInfo); DO_APP_FUNC(0x00A0CFF0, int32_t, RecastMeshGatherer_CeilDivision, (int32_t lhs, int32_t rhs, MethodInfo * method)); DO_APP_FUNC(0x00A0D000, RasterizationMesh *, RecastMeshGatherer_GenerateHeightmapChunk, (RecastMeshGatherer * __this, Single__Array_1 * heights, Vector3 sampleSize, Vector3 offset, int32_t x0, int32_t z0, int32_t width, int32_t depth, int32_t stride, MethodInfo * method)); DO_APP_FUNC(0x00A0D580, void, RecastMeshGatherer_CollectTreeMeshes, (RecastMeshGatherer * __this, Terrain * terrain, List_1_Pathfinding_Voxels_RasterizationMesh_ * result, MethodInfo * method)); @@ -78214,6 +89157,7 @@ DO_APP_FUNC(0x00A104B0, void, GraphSerializationContext__ctor, (GraphSerializati DO_APP_FUNC(0x003BCDE0, void, GraphSerializationContext__ctor_1, (GraphSerializationContext * __this, BinaryWriter * writer, MethodInfo * method)); DO_APP_FUNC(0x00A105C0, void, GraphSerializationContext_SerializeNodeReference, (GraphSerializationContext * __this, GraphNode * node, MethodInfo * method)); DO_APP_FUNC(0x00A10600, GraphNode *, GraphSerializationContext_DeserializeNodeReference, (GraphSerializationContext * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC108, GraphSerializationContext_DeserializeNodeReference__MethodInfo); DO_APP_FUNC(0x00A10750, void, GraphSerializationContext_SerializeVector3, (GraphSerializationContext * __this, Vector3 v, MethodInfo * method)); DO_APP_FUNC(0x00A107D0, Vector3, GraphSerializationContext_DeserializeVector3, (GraphSerializationContext * __this, MethodInfo * method)); DO_APP_FUNC(0x00A10870, void, GraphSerializationContext_SerializeInt3, (GraphSerializationContext * __this, Int3 v, MethodInfo * method)); @@ -78221,6 +89165,7 @@ DO_APP_FUNC(0x00A108F0, Int3, GraphSerializationContext_DeserializeInt3, (GraphS DO_APP_FUNC(0x00A10990, int32_t, GraphSerializationContext_DeserializeInt, (GraphSerializationContext * __this, int32_t defaultValue, MethodInfo * method)); DO_APP_FUNC(0x00A10A70, float, GraphSerializationContext_DeserializeFloat, (GraphSerializationContext * __this, float defaultValue, MethodInfo * method)); DO_APP_FUNC(0x00A10B50, Object_1 *, GraphSerializationContext_DeserializeUnityObject, (GraphSerializationContext * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC0E0, GraphSerializationContext_DeserializeUnityObject__MethodInfo); DO_APP_FUNC(0x00A10F50, StringBuilder *, AstarSerializer_GetStringBuilder, (MethodInfo * method)); DO_APP_FUNC(0x00A10FD0, void, AstarSerializer__ctor, (AstarSerializer * __this, AstarData * data, MethodInfo * method)); DO_APP_FUNC(0x00A11190, void, AstarSerializer__ctor_1, (AstarSerializer * __this, AstarData * data, SerializeSettings * settings, MethodInfo * method)); @@ -78231,26 +89176,34 @@ DO_APP_FUNC(0x00A113B0, uint32_t, AstarSerializer_GetChecksum, (AstarSerializer DO_APP_FUNC(0x00A113C0, void, AstarSerializer_OpenSerialize, (AstarSerializer * __this, MethodInfo * method)); DO_APP_FUNC(0x00A115F0, Byte__Array *, AstarSerializer_CloseSerialize, (AstarSerializer * __this, MethodInfo * method)); DO_APP_FUNC(0x00A11C40, void, AstarSerializer_SerializeGraphs, (AstarSerializer * __this, NavGraph__Array * _graphs, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC080, AstarSerializer_SerializeGraphs__MethodInfo); DO_APP_FUNC(0x00A11EE0, Byte__Array *, AstarSerializer_SerializeMeta, (AstarSerializer * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC070, AstarSerializer_SerializeMeta__MethodInfo); DO_APP_FUNC(0x00A12440, Byte__Array *, AstarSerializer_Serialize, (AstarSerializer * __this, NavGraph * graph, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AstarSerializer_SerializeNodes, (AstarSerializer * __this, MethodInfo * method)); DO_APP_FUNC(0x00A12520, int32_t, AstarSerializer_GetMaxNodeIndexInAllGraphs, (NavGraph__Array * graphs, MethodInfo * method)); DO_APP_FUNC(0x00A12650, Byte__Array *, AstarSerializer_SerializeNodeIndices, (NavGraph__Array * graphs, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC020, AstarSerializer_SerializeNodeIndices__MethodInfo); DO_APP_FUNC(0x00A12A20, Byte__Array *, AstarSerializer_SerializeGraphExtraInfo, (NavGraph * graph, MethodInfo * method)); DO_APP_FUNC(0x00A12B90, Byte__Array *, AstarSerializer_SerializeGraphNodeReferences, (NavGraph * graph, MethodInfo * method)); DO_APP_FUNC(0x00A12DE0, void, AstarSerializer_SerializeExtraInfo, (AstarSerializer * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBBFF0, AstarSerializer_SerializeExtraInfo__MethodInfo); DO_APP_FUNC(0x00A132F0, Byte__Array *, AstarSerializer_SerializeNodeLinks, (AstarSerializer * __this, MethodInfo * method)); DO_APP_FUNC(0x00A13450, ZipEntry *, AstarSerializer_GetEntry, (AstarSerializer * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x00A13470, bool, AstarSerializer_ContainsEntry, (AstarSerializer * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x00A134A0, bool, AstarSerializer_OpenDeserialize, (AstarSerializer * __this, Byte__Array * bytes, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBBF90, AstarSerializer_OpenDeserialize__MethodInfo); DO_APP_FUNC(0x00A140C0, Version *, AstarSerializer_FullyDefinedVersion, (Version * v, MethodInfo * method)); DO_APP_FUNC(0x00A14180, void, AstarSerializer_CloseDeserialize, (AstarSerializer * __this, MethodInfo * method)); DO_APP_FUNC(0x00A142D0, NavGraph *, AstarSerializer_DeserializeGraph, (AstarSerializer * __this, int32_t zipIndex, int32_t graphIndex, Type__Array * availableGraphTypes, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBBF60, AstarSerializer_DeserializeGraph__MethodInfo); DO_APP_FUNC(0x00A148C0, NavGraph__Array *, AstarSerializer_DeserializeGraphs, (AstarSerializer * __this, Type__Array * availableGraphTypes, MethodInfo * method)); DO_APP_FUNC(0x00A14B60, bool, AstarSerializer_DeserializeExtraInfo, (AstarSerializer * __this, NavGraph * graph, MethodInfo * method)); DO_APP_FUNC(0x00A14D70, bool, AstarSerializer_AnyDestroyedNodesInGraphs, (AstarSerializer * __this, MethodInfo * method)); DO_APP_FUNC(0x00A14EC0, GraphNode__Array *, AstarSerializer_DeserializeNodeReferenceMap, (AstarSerializer * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBBF08, AstarSerializer_DeserializeNodeReferenceMap__MethodInfo); DO_APP_FUNC(0x00A153F0, void, AstarSerializer_DeserializeNodeReferences, (AstarSerializer * __this, NavGraph * graph, GraphNode__Array * int2Node, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBBEC8, AstarSerializer_DeserializeNodeReferences__MethodInfo); DO_APP_FUNC(0x00A15770, void, AstarSerializer_DeserializeExtraInfo_1, (AstarSerializer * __this, MethodInfo * method)); DO_APP_FUNC(0x00A15AE0, void, AstarSerializer_DeserializeNodeLinks, (AstarSerializer * __this, GraphNode__Array * int2Node, MethodInfo * method)); DO_APP_FUNC(0x00A15C10, void, AstarSerializer_PostDeserialization, (AstarSerializer * __this, MethodInfo * method)); @@ -78259,22 +89212,30 @@ DO_APP_FUNC(0x00A15FB0, BinaryReader *, AstarSerializer_GetBinaryReader, (ZipEnt DO_APP_FUNC(0x00A16080, String *, AstarSerializer_GetString, (ZipEntry * entry, MethodInfo * method)); DO_APP_FUNC(0x00A161F0, GraphMeta *, AstarSerializer_DeserializeMeta, (AstarSerializer * __this, ZipEntry * entry, MethodInfo * method)); DO_APP_FUNC(0x00A16330, GraphMeta *, AstarSerializer_DeserializeBinaryMeta, (AstarSerializer * __this, ZipEntry * entry, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBBE80, AstarSerializer_DeserializeBinaryMeta__MethodInfo); DO_APP_FUNC(0x00A168F0, void, AstarSerializer_SaveToFile, (String * path, Byte__Array * data, MethodInfo * method)); DO_APP_FUNC(0x00A16A50, Byte__Array *, AstarSerializer_LoadFromFile, (String * path, MethodInfo * method)); DO_APP_FUNC(0x00A16C30, void, AstarSerializer__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AstarSerializer_c_DisplayClass29_0__ctor, (AstarSerializer_c_DisplayClass29_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00A16EF0, void, AstarSerializer_c_DisplayClass29_0__GetMaxNodeIndexInAllGraphs_b__0, (AstarSerializer_c_DisplayClass29_0 * __this, GraphNode * node, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC058, AstarSerializer_c_DisplayClass29_0__GetMaxNodeIndexInAllGraphs_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, AstarSerializer_c_DisplayClass30_0__ctor, (AstarSerializer_c_DisplayClass30_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00A16F90, void, AstarSerializer_c_DisplayClass30_0__SerializeNodeIndices_b__0, (AstarSerializer_c_DisplayClass30_0 * __this, GraphNode * node, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC038, AstarSerializer_c_DisplayClass30_0__SerializeNodeIndices_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, AstarSerializer_c_DisplayClass32_0__ctor, (AstarSerializer_c_DisplayClass32_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00A17040, void, AstarSerializer_c_DisplayClass32_0__SerializeGraphNodeReferences_b__0, (AstarSerializer_c_DisplayClass32_0 * __this, GraphNode * node, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC018, AstarSerializer_c_DisplayClass32_0__SerializeGraphNodeReferences_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, AstarSerializer_c_DisplayClass43_0__ctor, (AstarSerializer_c_DisplayClass43_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00A17070, void, AstarSerializer_c_DisplayClass43_0__AnyDestroyedNodesInGraphs_b__0, (AstarSerializer_c_DisplayClass43_0 * __this, GraphNode * node, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBBF28, AstarSerializer_c_DisplayClass43_0__AnyDestroyedNodesInGraphs_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, AstarSerializer_c_DisplayClass44_0__ctor, (AstarSerializer_c_DisplayClass44_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00A170A0, void, AstarSerializer_c_DisplayClass44_0__DeserializeNodeReferenceMap_b__0, (AstarSerializer_c_DisplayClass44_0 * __this, GraphNode * node, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBBF18, AstarSerializer_c_DisplayClass44_0__DeserializeNodeReferenceMap_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, AstarSerializer_c_DisplayClass45_0__ctor, (AstarSerializer_c_DisplayClass45_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00A17130, void, AstarSerializer_c_DisplayClass45_0__DeserializeNodeReferences_b__0, (AstarSerializer_c_DisplayClass45_0 * __this, GraphNode * node, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBBED8, AstarSerializer_c_DisplayClass45_0__DeserializeNodeReferences_b__0__MethodInfo); DO_APP_FUNC(0x00A17160, Type *, GraphMeta_GetGraphType, (GraphMeta * __this, int32_t index, Type__Array * availableGraphTypes, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBBE68, GraphMeta_GetGraphType__MethodInfo); DO_APP_FUNC(0x003AE050, void, GraphMeta__ctor, (GraphMeta * __this, MethodInfo * method)); DO_APP_FUNC(0x00A17380, SerializeSettings *, SerializeSettings_get_Settings, (MethodInfo * method)); DO_APP_FUNC(0x003BCD40, void, SerializeSettings__ctor, (SerializeSettings * __this, MethodInfo * method)); @@ -78287,23 +89248,35 @@ DO_APP_FUNC(0x00A182C0, void, TinyJsonSerializer_QuotedField, (TinyJsonSerialize DO_APP_FUNC(0x00A18340, void, TinyJsonSerializer_SerializeUnityObject, (TinyJsonSerializer * __this, Object_1 * obj, MethodInfo * method)); DO_APP_FUNC(0x00A18B00, void, TinyJsonSerializer__cctor, (MethodInfo * method)); DO_APP_FUNC(0x00A18C10, void, TinyJsonSerializer___ctor_b__4_0, (TinyJsonSerializer * __this, Object * v, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBBE20, TinyJsonSerializer___ctor_b__4_0__MethodInfo); DO_APP_FUNC(0x00A18D60, void, TinyJsonSerializer___ctor_b__4_1, (TinyJsonSerializer * __this, Object * v, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBBE18, TinyJsonSerializer___ctor_b__4_1__MethodInfo); DO_APP_FUNC(0x00A18E10, void, TinyJsonSerializer___ctor_b__4_7, (TinyJsonSerializer * __this, Object * v, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBBDC8, TinyJsonSerializer___ctor_b__4_7__MethodInfo); DO_APP_FUNC(0x00A18E60, void, TinyJsonSerializer___ctor_b__4_2, (TinyJsonSerializer * __this, Object * v, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBBDF0, TinyJsonSerializer___ctor_b__4_2__MethodInfo); DO_APP_FUNC(0x00A18F60, void, TinyJsonSerializer___ctor_b__4_3, (TinyJsonSerializer * __this, Object * v, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBBDE8, TinyJsonSerializer___ctor_b__4_3__MethodInfo); DO_APP_FUNC(0x00A190D0, void, TinyJsonSerializer___ctor_b__4_4, (TinyJsonSerializer * __this, Object * v, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBBE00, TinyJsonSerializer___ctor_b__4_4__MethodInfo); DO_APP_FUNC(0x00A19310, void, TinyJsonSerializer___ctor_b__4_5, (TinyJsonSerializer * __this, Object * v, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBBDF8, TinyJsonSerializer___ctor_b__4_5__MethodInfo); DO_APP_FUNC(0x00A193D0, void, TinyJsonSerializer___ctor_b__4_6, (TinyJsonSerializer * __this, Object * v, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBBDD0, TinyJsonSerializer___ctor_b__4_6__MethodInfo); DO_APP_FUNC(0x00A19540, Object *, TinyJsonDeserializer_Deserialize, (String * text, Type * type, Object * populate, MethodInfo * method)); DO_APP_FUNC(0x00A196F0, Object *, TinyJsonDeserializer_Deserialize_1, (TinyJsonDeserializer * __this, Type * tp, Object * populate, MethodInfo * method)); DO_APP_FUNC(0x00A1A780, Object_1 *, TinyJsonDeserializer_DeserializeUnityObject, (TinyJsonDeserializer * __this, MethodInfo * method)); DO_APP_FUNC(0x00A1A800, Object_1 *, TinyJsonDeserializer_DeserializeUnityObjectInner, (TinyJsonDeserializer * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBBCB8, TinyJsonDeserializer_DeserializeUnityObjectInner__MethodInfo); DO_APP_FUNC(0x00A1AF00, void, TinyJsonDeserializer_EatWhitespace, (TinyJsonDeserializer * __this, MethodInfo * method)); DO_APP_FUNC(0x00A1AFB0, void, TinyJsonDeserializer_Eat, (TinyJsonDeserializer * __this, String * s, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBBCA0, TinyJsonDeserializer_Eat__MethodInfo); DO_APP_FUNC(0x00A1B240, String *, TinyJsonDeserializer_EatUntil, (TinyJsonDeserializer * __this, String * c, bool inString, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBBC80, TinyJsonDeserializer_EatUntil__MethodInfo); DO_APP_FUNC(0x00A1B440, bool, TinyJsonDeserializer_TryEat, (TinyJsonDeserializer * __this, uint16_t c, MethodInfo * method)); DO_APP_FUNC(0x00A1B4C0, String *, TinyJsonDeserializer_EatField, (TinyJsonDeserializer * __this, MethodInfo * method)); DO_APP_FUNC(0x00A1B560, void, TinyJsonDeserializer_SkipFieldData, (TinyJsonDeserializer * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBBC60, TinyJsonDeserializer_SkipFieldData__MethodInfo); DO_APP_FUNC(0x00A1B6D0, void, TinyJsonDeserializer__ctor, (TinyJsonDeserializer * __this, MethodInfo * method)); DO_APP_FUNC(0x00A1B780, void, TinyJsonDeserializer__cctor, (MethodInfo * method)); DO_APP_FUNC(0x00A1B820, Type *, WindowsStoreCompatibility_GetTypeFromInfo, (Type * type, MethodInfo * method)); @@ -78318,7 +89291,7 @@ DO_APP_FUNC(0x00A1C930, void, Draw_CrossXZ, (Draw * __this, Vector3 position, Co DO_APP_FUNC(0x00A1CBD0, void, Draw_Bezier, (Draw * __this, Vector3 a, Vector3 b, Color color, MethodInfo * method)); DO_APP_FUNC(0x00A1D100, void, Draw__ctor, (Draw * __this, MethodInfo * method)); DO_APP_FUNC(0x00A1D160, void, Draw__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x00A1D350, float, MovementUtilities_FilterRotationDirection, (Vector2 state, Vector2 state2, Vector2 deltaPosition, float threshold, float deltaTime, MethodInfo * method)); +DO_APP_FUNC(0x00A1D350, float, MovementUtilities_FilterRotationDirection, (Vector2 * state, Vector2 * state2, Vector2 deltaPosition, float threshold, float deltaTime, MethodInfo * method)); DO_APP_FUNC(0x00A1D4F0, Vector2, MovementUtilities_ClampVelocity, (Vector2 velocity, float maxSpeed, float slowdownFactor, bool slowWhenNotFacingTarget, Vector2 forward, MethodInfo * method)); DO_APP_FUNC(0x00A1D770, Vector2, MovementUtilities_CalculateAccelerationToReachPoint, (Vector2 deltaPosition, Vector2 targetVelocity, Vector2 currentVelocity, float forwardsAcceleration, float rotationSpeed, float maxSpeed, Vector2 forwardsVector, MethodInfo * method)); DO_APP_FUNC(0x00A1DE20, Vector3, PathInterpolator_get_position, (PathInterpolator * __this, MethodInfo * method)); @@ -78332,8 +89305,11 @@ DO_APP_FUNC(0x00421680, int32_t, PathInterpolator_get_segmentIndex, (PathInterpo DO_APP_FUNC(0x00421690, void, PathInterpolator_set_segmentIndex, (PathInterpolator * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x00A1E220, bool, PathInterpolator_get_valid, (PathInterpolator * __this, MethodInfo * method)); DO_APP_FUNC(0x00A1E230, void, PathInterpolator_GetRemainingPath, (PathInterpolator * __this, List_1_UnityEngine_Vector3_ * buffer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBBC50, PathInterpolator_GetRemainingPath__MethodInfo); DO_APP_FUNC(0x00A1E470, void, PathInterpolator_SetPath, (PathInterpolator * __this, List_1_UnityEngine_Vector3_ * path, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBBC38, PathInterpolator_SetPath__MethodInfo); DO_APP_FUNC(0x00A1E7D0, void, PathInterpolator_MoveToSegment, (PathInterpolator * __this, int32_t index, float fractionAlongSegment, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBBC30, PathInterpolator_MoveToSegment__MethodInfo); DO_APP_FUNC(0x00A1E900, void, PathInterpolator_MoveToClosestPoint, (PathInterpolator * __this, Vector3 point, MethodInfo * method)); DO_APP_FUNC(0x00A1ECD0, void, PathInterpolator_MoveToLocallyClosestPoint, (PathInterpolator * __this, Vector3 point, bool allowForwards, bool allowBackwards, MethodInfo * method)); DO_APP_FUNC(0x00A1F530, void, PathInterpolator_MoveToCircleIntersection2D, (PathInterpolator * __this, Vector3 circleCenter3D, float radius, IMovementPlane * transform, MethodInfo * method)); @@ -78355,20 +89331,24 @@ DO_APP_FUNC(0x00A21580, GraphTransform *, GraphTransform_op_Multiply_1, (Matrix4 DO_APP_FUNC(0x00A216D0, Bounds, GraphTransform_Transform_3, (GraphTransform * __this, Bounds bounds, MethodInfo * method)); DO_APP_FUNC(0x00A21DD0, Bounds, GraphTransform_InverseTransform_3, (GraphTransform * __this, Bounds bounds, MethodInfo * method)); DO_APP_FUNC(0x00A224D0, Vector2, GraphTransform_Pathfinding_Util_IMovementPlane_ToPlane, (GraphTransform * __this, Vector3 point, MethodInfo * method)); -DO_APP_FUNC(0x00A22560, Vector2, GraphTransform_Pathfinding_Util_IMovementPlane_ToPlane_1, (GraphTransform * __this, Vector3 point, float elevation, MethodInfo * method)); +DO_APP_FUNC(0x00A22560, Vector2, GraphTransform_Pathfinding_Util_IMovementPlane_ToPlane_1, (GraphTransform * __this, Vector3 point, float * elevation, MethodInfo * method)); DO_APP_FUNC(0x00A225E0, Vector3, GraphTransform_Pathfinding_Util_IMovementPlane_ToWorld, (GraphTransform * __this, Vector2 point, float elevation, MethodInfo * method)); DO_APP_FUNC(0x00A227B0, void, GraphTransform__cctor, (MethodInfo * method)); DO_APP_FUNC(0x00A228F0, bool, TileHandler_get_isBatching, (TileHandler * __this, MethodInfo * method)); DO_APP_FUNC(0x00A22900, bool, TileHandler_get_isValid, (TileHandler * __this, MethodInfo * method)); DO_APP_FUNC(0x00A22A50, void, TileHandler__ctor, (TileHandler * __this, NavmeshBase * graph, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBBBE0, TileHandler__ctor__MethodInfo); DO_APP_FUNC(0x00A22F90, void, TileHandler_OnRecalculatedTiles, (TileHandler * __this, NavmeshTile__Array * recalculatedTiles, MethodInfo * method)); DO_APP_FUNC(0x00A23050, int32_t, TileHandler_GetActiveRotation, (TileHandler * __this, Int2 p, MethodInfo * method)); DO_APP_FUNC(0x00A23090, TileHandler_TileType *, TileHandler_RegisterTileType, (TileHandler * __this, Mesh * source, Int3 centerOffset, int32_t width, int32_t depth, MethodInfo * method)); DO_APP_FUNC(0x00A23250, void, TileHandler_CreateTileTypesFromGraph, (TileHandler * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBBBB8, TileHandler_CreateTileTypesFromGraph__MethodInfo); DO_APP_FUNC(0x00A23340, void, TileHandler_UpdateTileType, (TileHandler * __this, NavmeshTile * tile, MethodInfo * method)); DO_APP_FUNC(0x00A23750, void, TileHandler_StartBatchLoad, (TileHandler * __this, MethodInfo * method)); DO_APP_FUNC(0x00A23870, void, TileHandler_EndBatchLoad, (TileHandler * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBBB88, TileHandler_EndBatchLoad__MethodInfo); DO_APP_FUNC(0x00A23A40, TileHandler_CuttingResult, TileHandler_CutPoly, (TileHandler * __this, Int3__Array * verts, Int32__Array * tris, Int3__Array * extraShape, GraphTransform * graphTransform, IntRect tiles, TileHandler_CutMode__Enum mode, int32_t perturbate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB948, TileHandler_CutPoly__MethodInfo); DO_APP_FUNC(0x00A261C0, List_1_Pathfinding_Util_TileHandler_Cut_ *, TileHandler_PrepareNavmeshCutsForCutting, (List_1_Pathfinding_NavmeshCut_ * navmeshCuts, GraphTransform * transform, IntRect cutSpaceBounds, int32_t perturbate, bool anyNavmeshAdds, MethodInfo * method)); DO_APP_FUNC(0x00A26A50, void, TileHandler_PoolPolygon, (Polygon_1 * polygon, Stack_1_Pathfinding_Poly2Tri_Polygon_ * pool, MethodInfo * method)); DO_APP_FUNC(0x00A26F40, void, TileHandler_CutAll, (TileHandler * __this, List_1_Pathfinding_ClipperLib_IntPoint_ * poly, List_1_System_Int32_ * intersectingCutIndices, List_1_Pathfinding_Util_TileHandler_Cut_ * cuts, PolyTree * result, MethodInfo * method)); @@ -78376,38 +89356,47 @@ DO_APP_FUNC(0x00A27120, void, TileHandler_CutDual, (TileHandler * __this, List_1 DO_APP_FUNC(0x00A275B0, void, TileHandler_CutExtra, (TileHandler * __this, List_1_Pathfinding_ClipperLib_IntPoint_ * poly, List_1_Pathfinding_ClipperLib_IntPoint_ * extraClipShape, PolyTree * result, MethodInfo * method)); DO_APP_FUNC(0x00A276B0, int32_t, TileHandler_ClipAgainstRectangle, (TileHandler * __this, Int3__Array * clipIn, Int3__Array * clipOut, Int2 size, MethodInfo * method)); DO_APP_FUNC(0x00A28240, void, TileHandler_CopyMesh, (Int3__Array * vertices, Int32__Array * triangles, List_1_Pathfinding_Int3_ * outVertices, List_1_System_Int32_ * outTriangles, MethodInfo * method)); -DO_APP_FUNC(0x00A28650, void, TileHandler_DelaunayRefinement, (TileHandler * __this, Int3__Array * verts, Int32__Array * tris, int32_t tCount, bool delaunay, bool colinear, MethodInfo * method)); +DO_APP_FUNC(0x00A28650, void, TileHandler_DelaunayRefinement, (TileHandler * __this, Int3__Array * verts, Int32__Array * tris, int32_t * tCount, bool delaunay, bool colinear, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB848, TileHandler_DelaunayRefinement__MethodInfo); DO_APP_FUNC(0x00A29670, void, TileHandler_ClearTile, (TileHandler * __this, int32_t x, int32_t z, MethodInfo * method)); DO_APP_FUNC(0x00A29930, void, TileHandler_ReloadInBounds, (TileHandler * __this, Bounds bounds, MethodInfo * method)); DO_APP_FUNC(0x00A299A0, void, TileHandler_ReloadInBounds_1, (TileHandler * __this, IntRect tiles, MethodInfo * method)); DO_APP_FUNC(0x00A29AB0, void, TileHandler_ReloadTile, (TileHandler * __this, int32_t x, int32_t z, MethodInfo * method)); DO_APP_FUNC(0x00A29B70, void, TileHandler_LoadTile, (TileHandler * __this, TileHandler_TileType * tile, int32_t x, int32_t z, int32_t rotation, int32_t yoffset, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB818, TileHandler_LoadTile__MethodInfo); DO_APP_FUNC(0x00A2A070, bool, TileHandler__StartBatchLoad_b__23_0, (TileHandler * __this, bool force, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBBBB0, TileHandler__StartBatchLoad_b__23_0__MethodInfo); DO_APP_FUNC(0x00A2A0A0, bool, TileHandler__EndBatchLoad_b__24_0, (TileHandler * __this, IWorkItemContext * ctx, bool force, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBBB78, TileHandler__EndBatchLoad_b__24_0__MethodInfo); DO_APP_FUNC(0x00A2A110, int32_t, TileHandler_TileType_get_Width, (TileHandler_TileType * __this, MethodInfo * method)); DO_APP_FUNC(0x009F7E90, int32_t, TileHandler_TileType_get_Depth, (TileHandler_TileType * __this, MethodInfo * method)); DO_APP_FUNC(0x00A2A120, void, TileHandler_TileType__ctor, (TileHandler_TileType * __this, Int3__Array * sourceVerts, Int32__Array * sourceTris, Int3 tileSize, Int3 centerOffset, int32_t width, int32_t depth, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB800, TileHandler_TileType__ctor__MethodInfo); DO_APP_FUNC(0x00A2A590, void, TileHandler_TileType__ctor_1, (TileHandler_TileType * __this, Mesh * source, Int3 tileSize, Int3 centerOffset, int32_t width, int32_t depth, MethodInfo * method)); -DO_APP_FUNC(0x00A2AB10, void, TileHandler_TileType_Load, (TileHandler_TileType * __this, Int3__Array * verts, Int32__Array * tris, int32_t rotation, int32_t yoffset, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB7E8, TileHandler_TileType__ctor_1__MethodInfo); +DO_APP_FUNC(0x00A2AB10, void, TileHandler_TileType_Load, (TileHandler_TileType * __this, Int3__Array * * verts, Int32__Array * * tris, int32_t rotation, int32_t yoffset, MethodInfo * method)); DO_APP_FUNC(0x00A2AE70, void, TileHandler_TileType__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TileHandler_Cut__ctor, (TileHandler_Cut * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TileHandler_c_DisplayClass37_0__ctor, (TileHandler_c_DisplayClass37_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00A2AF50, bool, TileHandler_c_DisplayClass37_0__ClearTile_b__0, (TileHandler_c_DisplayClass37_0 * __this, IWorkItemContext * context, bool force, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB850, TileHandler_c_DisplayClass37_0__ClearTile_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, TileHandler_c_DisplayClass41_0__ctor, (TileHandler_c_DisplayClass41_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00A2B080, bool, TileHandler_c_DisplayClass41_0__LoadTile_b__0, (TileHandler_c_DisplayClass41_0 * __this, IWorkItemContext * context, bool force, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB830, TileHandler_c_DisplayClass41_0__LoadTile_b__0__MethodInfo); DO_APP_FUNC(0x00A2B430, uint32_t, Checksum_GetChecksum, (Byte__Array * arr, uint32_t hash, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Checksum__ctor, (Checksum * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2B490, void, Guid_1__ctor, (Guid_1__Boxed * __this, Byte__Array * bytes, MethodInfo * method)); -DO_APP_FUNC(0x00A2B720, void, Guid_1__ctor_1, (Guid_1__Boxed * __this, String * str, MethodInfo * method)); +DO_APP_FUNC(0x00A2B490, void, Guid_1__ctor, (Guid_1 * __this, Byte__Array * bytes, MethodInfo * method)); +DO_APP_FUNC(0x00A2B720, void, Guid_1__ctor_1, (Guid_1 * __this, String * str, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC988, Guid_1__ctor_1__MethodInfo); DO_APP_FUNC(0x00A2BB40, Guid_1, Guid_1_Parse, (String * input, MethodInfo * method)); DO_APP_FUNC(0x00A2BB60, uint64_t, Guid_1_SwapEndianness, (uint64_t value, MethodInfo * method)); -DO_APP_FUNC(0x00A2BB70, Byte__Array *, Guid_1_ToByteArray, (Guid_1__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2BB70, Byte__Array *, Guid_1_ToByteArray, (Guid_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x00A2BD90, Guid_1, Guid_1_NewGuid, (MethodInfo * method)); DO_APP_FUNC(0x00A2BE50, bool, Guid_1_op_Equality, (Guid_1 lhs, Guid_1 rhs, MethodInfo * method)); DO_APP_FUNC(0x00A2BE70, bool, Guid_1_op_Inequality, (Guid_1 lhs, Guid_1 rhs, MethodInfo * method)); -DO_APP_FUNC(0x00A2BE90, bool, Guid_1_Equals, (Guid_1__Boxed * __this, Object * _rhs, MethodInfo * method)); -DO_APP_FUNC(0x00A2BF20, int32_t, Guid_1_GetHashCode, (Guid_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2BF40, String *, Guid_1_ToString, (Guid_1__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2BE90, bool, Guid_1_Equals, (Guid_1 * __this, Object * _rhs, MethodInfo * method)); +DO_APP_FUNC(0x00A2BF20, int32_t, Guid_1_GetHashCode, (Guid_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2BF40, String *, Guid_1_ToString, (Guid_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x00A2C340, void, Guid_1__cctor, (MethodInfo * method)); DO_APP_FUNC(0x00A2C560, RetainedGizmos_Hasher, GraphGizmoHelper_get_hasher, (GraphGizmoHelper * __this, MethodInfo * method)); DO_APP_FUNC(0x00A2C580, void, GraphGizmoHelper_set_hasher, (GraphGizmoHelper * __this, RetainedGizmos_Hasher value, MethodInfo * method)); @@ -78417,7 +89406,9 @@ DO_APP_FUNC(0x00A2C5F0, void, GraphGizmoHelper__ctor, (GraphGizmoHelper * __this DO_APP_FUNC(0x00A2C6C0, void, GraphGizmoHelper_Init, (GraphGizmoHelper * __this, AstarPath * active, RetainedGizmos_Hasher hasher, RetainedGizmos * gizmos, MethodInfo * method)); DO_APP_FUNC(0x00A2C9A0, void, GraphGizmoHelper_OnEnterPool, (GraphGizmoHelper * __this, MethodInfo * method)); DO_APP_FUNC(0x00A2CA90, void, GraphGizmoHelper_DrawConnections, (GraphGizmoHelper * __this, GraphNode * node, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6968, GraphGizmoHelper_DrawConnections__MethodInfo); DO_APP_FUNC(0x00A2CD80, void, GraphGizmoHelper_DrawConnection, (GraphGizmoHelper * __this, GraphNode * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC958, GraphGizmoHelper_DrawConnection__MethodInfo); DO_APP_FUNC(0x00A2CEA0, Color, GraphGizmoHelper_NodeColor, (GraphGizmoHelper * __this, GraphNode * node, MethodInfo * method)); DO_APP_FUNC(0x00A2D420, bool, GraphGizmoHelper_InSearchTree, (GraphNode * node, PathHandler * handler, uint16_t pathID, MethodInfo * method)); DO_APP_FUNC(0x00A2D470, void, GraphGizmoHelper_DrawWireTriangle, (GraphGizmoHelper * __this, Vector3 a, Vector3 b, Vector3 c, Color color, MethodInfo * method)); @@ -78436,10 +89427,10 @@ DO_APP_FUNC(0x00A2E170, void, RetainedGizmos_FinalizeDraw, (RetainedGizmos * __t DO_APP_FUNC(0x00A2E860, void, RetainedGizmos_ClearCache, (RetainedGizmos * __this, MethodInfo * method)); DO_APP_FUNC(0x00A2E9D0, void, RetainedGizmos_RemoveUnusedMeshes, (RetainedGizmos * __this, List_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * meshList, MethodInfo * method)); DO_APP_FUNC(0x00A2EC10, void, RetainedGizmos__ctor, (RetainedGizmos * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2EF20, void, RetainedGizmos_Hasher__ctor, (RetainedGizmos_Hasher__Boxed * __this, AstarPath * active, MethodInfo * method)); -DO_APP_FUNC(0x00A2F070, void, RetainedGizmos_Hasher_AddHash, (RetainedGizmos_Hasher__Boxed * __this, int32_t hash, MethodInfo * method)); -DO_APP_FUNC(0x00A2F090, void, RetainedGizmos_Hasher_HashNode, (RetainedGizmos_Hasher__Boxed * __this, GraphNode * node, MethodInfo * method)); -DO_APP_FUNC(0x00471910, uint64_t, RetainedGizmos_Hasher_get_Hash, (RetainedGizmos_Hasher__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2EF20, void, RetainedGizmos_Hasher__ctor, (RetainedGizmos_Hasher * __this, AstarPath * active, MethodInfo * method)); +DO_APP_FUNC(0x00A2F070, void, RetainedGizmos_Hasher_AddHash, (RetainedGizmos_Hasher * __this, int32_t hash, MethodInfo * method)); +DO_APP_FUNC(0x00A2F090, void, RetainedGizmos_Hasher_HashNode, (RetainedGizmos_Hasher * __this, GraphNode * node, MethodInfo * method)); +DO_APP_FUNC(0x00471910, uint64_t, RetainedGizmos_Hasher_get_Hash, (RetainedGizmos_Hasher * __this, MethodInfo * method)); DO_APP_FUNC(0x00A2F190, void, RetainedGizmos_Builder_DrawMesh, (RetainedGizmos_Builder * __this, RetainedGizmos * gizmos, Vector3__Array * vertices, List_1_System_Int32_ * triangles, Color__Array * colors, MethodInfo * method)); DO_APP_FUNC(0x00A2F330, void, RetainedGizmos_Builder_DrawWireCube, (RetainedGizmos_Builder * __this, GraphTransform * tr, Bounds bounds, Color color, MethodInfo * method)); DO_APP_FUNC(0x00A2FAC0, void, RetainedGizmos_Builder_DrawLine, (RetainedGizmos_Builder * __this, Vector3 start, Vector3 end, Color color, MethodInfo * method)); @@ -78461,17 +89452,23 @@ DO_APP_FUNC(0x00A30CA0, void, Simulator__ctor, (Simulator * __this, int32_t work DO_APP_FUNC(0x00A31150, void, Simulator_ClearAgents, (Simulator * __this, MethodInfo * method)); DO_APP_FUNC(0x00A312B0, void, Simulator_OnDestroy, (Simulator * __this, MethodInfo * method)); DO_APP_FUNC(0x00A31350, IAgent *, Simulator_AddAgent, (Simulator * __this, IAgent * agent, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC7C0, Simulator_AddAgent__MethodInfo); DO_APP_FUNC(0x00A315E0, IAgent *, Simulator_AddAgent_1, (Simulator * __this, Vector3 position, MethodInfo * method)); DO_APP_FUNC(0x00A31600, IAgent *, Simulator_AddAgent_2, (Simulator * __this, Vector2 position, float elevationCoordinate, MethodInfo * method)); DO_APP_FUNC(0x00A31690, void, Simulator_RemoveAgent, (Simulator * __this, IAgent * agent, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC788, Simulator_RemoveAgent__MethodInfo); DO_APP_FUNC(0x00A31910, ObstacleVertex *, Simulator_AddObstacle, (Simulator * __this, ObstacleVertex * v, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC770, Simulator_AddObstacle__MethodInfo); DO_APP_FUNC(0x00A319D0, ObstacleVertex *, Simulator_AddObstacle_1, (Simulator * __this, Vector3__Array * vertices, float height, bool cycle, MethodInfo * method)); DO_APP_FUNC(0x00A31A90, ObstacleVertex *, Simulator_AddObstacle_2, (Simulator * __this, Vector3__Array * vertices, float height, Matrix4x4 matrix, RVOLayer__Enum layer, bool cycle, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC750, Simulator_AddObstacle_2__MethodInfo); DO_APP_FUNC(0x00A31E10, ObstacleVertex *, Simulator_AddObstacle_3, (Simulator * __this, Vector3 a, Vector3 b, float height, MethodInfo * method)); DO_APP_FUNC(0x00A320D0, void, Simulator_UpdateObstacle, (Simulator * __this, ObstacleVertex * obstacle, Vector3__Array * vertices, Matrix4x4 matrix, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC740, Simulator_UpdateObstacle__MethodInfo); DO_APP_FUNC(0x00A325A0, void, Simulator_ScheduleCleanObstacles, (Simulator * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Simulator_CleanObstacles, (Simulator * __this, MethodInfo * method)); DO_APP_FUNC(0x00A325B0, void, Simulator_RemoveObstacle, (Simulator * __this, ObstacleVertex * v, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC718, Simulator_RemoveObstacle__MethodInfo); DO_APP_FUNC(0x00A32670, void, Simulator_UpdateObstacles, (Simulator * __this, MethodInfo * method)); DO_APP_FUNC(0x00A32680, void, Simulator_BuildQuadtree, (Simulator * __this, MethodInfo * method)); DO_APP_FUNC(0x00A32950, void, Simulator_BlockUntilSimulationStepIsDone, (Simulator * __this, MethodInfo * method)); @@ -78484,6 +89481,7 @@ DO_APP_FUNC(0x00A33A40, void, Simulator_Worker_Execute, (Simulator_Worker * __th DO_APP_FUNC(0x00A33AC0, void, Simulator_Worker_WaitOne, (Simulator_Worker * __this, MethodInfo * method)); DO_APP_FUNC(0x00A33B00, void, Simulator_Worker_Terminate, (Simulator_Worker * __this, MethodInfo * method)); DO_APP_FUNC(0x00A33B50, void, Simulator_Worker_Run, (Simulator_Worker * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC6F8, Simulator_Worker_Run__MethodInfo); DO_APP_FUNC(0x00A33E60, void, RVOQuadtree_Clear, (RVOQuadtree * __this, MethodInfo * method)); DO_APP_FUNC(0x00A33EA0, void, RVOQuadtree_SetBounds, (RVOQuadtree * __this, Rect r, MethodInfo * method)); DO_APP_FUNC(0x00A33EB0, int32_t, RVOQuadtree_GetNodeIndex, (RVOQuadtree * __this, MethodInfo * method)); @@ -78493,10 +89491,10 @@ DO_APP_FUNC(0x00A346C0, void, RVOQuadtree_Query, (RVOQuadtree * __this, Vector2 DO_APP_FUNC(0x00A347E0, void, RVOQuadtree_DebugDraw, (RVOQuadtree * __this, MethodInfo * method)); DO_APP_FUNC(0x00A34810, void, RVOQuadtree_DebugDrawRec, (RVOQuadtree * __this, int32_t i, Rect r, MethodInfo * method)); DO_APP_FUNC(0x00A35170, void, RVOQuadtree__ctor, (RVOQuadtree * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A35200, void, RVOQuadtree_Node_Add, (RVOQuadtree_Node__Boxed * __this, Agent * agent, MethodInfo * method)); -DO_APP_FUNC(0x00A352E0, void, RVOQuadtree_Node_Distribute, (RVOQuadtree_Node__Boxed * __this, RVOQuadtree_Node__Array * nodes, Rect r, MethodInfo * method)); -DO_APP_FUNC(0x00A353F0, float, RVOQuadtree_Node_CalculateMaxSpeed, (RVOQuadtree_Node__Boxed * __this, RVOQuadtree_Node__Array * nodes, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00A355E0, void, RVOQuadtree_QuadtreeQuery_QueryRec, (RVOQuadtree_QuadtreeQuery__Boxed * __this, int32_t i, Rect r, MethodInfo * method)); +DO_APP_FUNC(0x00A35200, void, RVOQuadtree_Node_Add, (RVOQuadtree_Node * __this, Agent * agent, MethodInfo * method)); +DO_APP_FUNC(0x00A352E0, void, RVOQuadtree_Node_Distribute, (RVOQuadtree_Node * __this, RVOQuadtree_Node__Array * nodes, Rect r, MethodInfo * method)); +DO_APP_FUNC(0x00A353F0, float, RVOQuadtree_Node_CalculateMaxSpeed, (RVOQuadtree_Node * __this, RVOQuadtree_Node__Array * nodes, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00A355E0, void, RVOQuadtree_QuadtreeQuery_QueryRec, (RVOQuadtree_QuadtreeQuery * __this, int32_t i, Rect r, MethodInfo * method)); DO_APP_FUNC(0x00A35A50, float, RVOController_get_radius, (RVOController * __this, MethodInfo * method)); DO_APP_FUNC(0x00A35AC0, void, RVOController_set_radius, (RVOController * __this, float value, MethodInfo * method)); DO_APP_FUNC(0x00A35B40, float, RVOController_get_height, (RVOController * __this, MethodInfo * method)); @@ -78526,11 +89524,12 @@ DO_APP_FUNC(0x00A36450, Vector3, RVOController_CalculateMovementDelta_1, (RVOCon DO_APP_FUNC(0x00A365A0, void, RVOController_SetCollisionNormal, (RVOController * __this, Vector3 normal, MethodInfo * method)); DO_APP_FUNC(0x00A36140, void, RVOController_ForceSetVelocity, (RVOController * __this, Vector3 velocity, MethodInfo * method)); DO_APP_FUNC(0x00A36640, Vector2, RVOController_To2D, (RVOController * __this, Vector3 p, MethodInfo * method)); -DO_APP_FUNC(0x00A36690, Vector2, RVOController_To2D_1, (RVOController * __this, Vector3 p, float elevation, MethodInfo * method)); +DO_APP_FUNC(0x00A36690, Vector2, RVOController_To2D_1, (RVOController * __this, Vector3 p, float * elevation, MethodInfo * method)); DO_APP_FUNC(0x00A366F0, Vector3, RVOController_To3D, (RVOController * __this, Vector2 p, float elevationCoordinate, MethodInfo * method)); DO_APP_FUNC(0x00A36760, void, RVOController_OnDisable, (RVOController * __this, MethodInfo * method)); DO_APP_FUNC(0x00A36780, void, RVOController_OnEnable, (RVOController * __this, MethodInfo * method)); DO_APP_FUNC(0x00A36D80, void, RVOController_UpdateAgentProperties, (RVOController * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC6D0, RVOController_UpdateAgentProperties__MethodInfo); DO_APP_FUNC(0x00A37190, void, RVOController_SetTarget, (RVOController * __this, Vector3 pos, float speed, float maxSpeed, MethodInfo * method)); DO_APP_FUNC(0x00A37270, void, RVOController_Move, (RVOController * __this, Vector3 vel, MethodInfo * method)); DO_APP_FUNC(0x00A37480, void, RVOController_Teleport, (RVOController * __this, Vector3 pos, MethodInfo * method)); @@ -78540,6 +89539,7 @@ DO_APP_FUNC(0x00A37F00, void, RVOController__ctor, (RVOController * __this, Meth DO_APP_FUNC(0x00A37F90, void, RVONavmesh_OnPostCacheLoad, (RVONavmesh * __this, MethodInfo * method)); DO_APP_FUNC(0x00A37F90, void, RVONavmesh_OnGraphsPostUpdate, (RVONavmesh * __this, MethodInfo * method)); DO_APP_FUNC(0x00A37FB0, void, RVONavmesh_OnLatePostScan, (RVONavmesh * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC6B0, RVONavmesh_OnLatePostScan__MethodInfo); DO_APP_FUNC(0x00A38400, void, RVONavmesh_OnDisable, (RVONavmesh * __this, MethodInfo * method)); DO_APP_FUNC(0x00A38420, void, RVONavmesh_RemoveObstacles, (RVONavmesh * __this, MethodInfo * method)); DO_APP_FUNC(0x00A38650, void, RVONavmesh_AddGraphObstacles, (RVONavmesh * __this, Simulator * sim, GridGraph * grid, MethodInfo * method)); @@ -78547,18 +89547,24 @@ DO_APP_FUNC(0x00A38960, void, RVONavmesh_AddGraphObstacles_1, (RVONavmesh * __th DO_APP_FUNC(0x00A38AD0, void, RVONavmesh__ctor, (RVONavmesh * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, RVONavmesh_c_DisplayClass8_0__ctor, (RVONavmesh_c_DisplayClass8_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00A38BF0, void, RVONavmesh_c_DisplayClass8_0__AddGraphObstacles_b__0, (RVONavmesh_c_DisplayClass8_0 * __this, Vector3__Array * vertices, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC698, RVONavmesh_c_DisplayClass8_0__AddGraphObstacles_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, RVONavmesh_c_DisplayClass9_0__ctor, (RVONavmesh_c_DisplayClass9_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00A38D10, void, RVONavmesh_c_DisplayClass9_0__AddGraphObstacles_b__0, (RVONavmesh_c_DisplayClass9_0 * __this, List_1_Pathfinding_Int3_ * vertices, bool cycle, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC688, RVONavmesh_c_DisplayClass9_0__AddGraphObstacles_b__0__MethodInfo); DO_APP_FUNC(0x00A38F00, void, RVOObstacle_OnDrawGizmos, (RVOObstacle * __this, MethodInfo * method)); DO_APP_FUNC(0x00A38F10, void, RVOObstacle_OnDrawGizmosSelected, (RVOObstacle * __this, MethodInfo * method)); DO_APP_FUNC(0x00A38F20, void, RVOObstacle_OnDrawGizmos_1, (RVOObstacle * __this, bool selected, MethodInfo * method)); DO_APP_FUNC(0x00A39EC0, Matrix4x4, RVOObstacle_GetMatrix, (RVOObstacle * __this, MethodInfo * method)); DO_APP_FUNC(0x00A3A020, void, RVOObstacle_OnDisable, (RVOObstacle * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC650, RVOObstacle_OnDisable__MethodInfo); DO_APP_FUNC(0x00A3A200, void, RVOObstacle_OnEnable, (RVOObstacle * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC640, RVOObstacle_OnEnable__MethodInfo); DO_APP_FUNC(0x00A3A410, void, RVOObstacle_Start, (RVOObstacle * __this, MethodInfo * method)); DO_APP_FUNC(0x00A3A5E0, void, RVOObstacle_Update, (RVOObstacle * __this, MethodInfo * method)); DO_APP_FUNC(0x00A3A840, void, RVOObstacle_FindSimulator, (RVOObstacle * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC630, RVOObstacle_FindSimulator__MethodInfo); DO_APP_FUNC(0x00A3AA80, void, RVOObstacle_AddObstacle, (RVOObstacle * __this, Vector3__Array * vertices, float height, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC610, RVOObstacle_AddObstacle__MethodInfo); DO_APP_FUNC(0x00A3ACB0, void, RVOObstacle_AddObstacleInternal, (RVOObstacle * __this, Vector3__Array * vertices, float height, MethodInfo * method)); DO_APP_FUNC(0x00A3ADD0, void, RVOObstacle_WindCorrectly, (RVOObstacle * __this, Vector3__Array * vertices, MethodInfo * method)); DO_APP_FUNC(0x00A3B3B0, void, RVOObstacle__ctor, (RVOObstacle * __this, MethodInfo * method)); @@ -78622,21 +89628,21 @@ DO_APP_FUNC(0x008B29E0, float, Agent_Sqr, (float x, MethodInfo * method)); DO_APP_FUNC(0x00A3C860, float, Agent_InsertAgentNeighbour, (Agent * __this, Agent * agent, float rangeSq, MethodInfo * method)); DO_APP_FUNC(0x009F41F0, Vector3, Agent_FromXZ, (Vector2 p, MethodInfo * method)); DO_APP_FUNC(0x009F41D0, Vector2, Agent_ToXZ, (Vector3 p, MethodInfo * method)); -DO_APP_FUNC(0x00A3CC20, Vector2, Agent_To2D, (Agent * __this, Vector3 p, float elevation, MethodInfo * method)); +DO_APP_FUNC(0x00A3CC20, Vector2, Agent_To2D, (Agent * __this, Vector3 p, float * elevation, MethodInfo * method)); DO_APP_FUNC(0x00A3CC80, void, Agent_DrawVO, (Vector2 circleCenter, float radius, Vector2 origin, MethodInfo * method)); DO_APP_FUNC(0x00A3D120, void, Agent_CalculateVelocity, (Agent * __this, Simulator_WorkerContext * context, MethodInfo * method)); DO_APP_FUNC(0x00A3D540, Color, Agent_Rainbow, (float v, MethodInfo * method)); DO_APP_FUNC(0x00A3D590, void, Agent_GenerateObstacleVOs, (Agent * __this, Agent_VOBuffer * vos, MethodInfo * method)); DO_APP_FUNC(0x00A3DAE0, void, Agent_GenerateNeighbourAgentVOs, (Agent * __this, Agent_VOBuffer * vos, MethodInfo * method)); DO_APP_FUNC(0x00A3DF70, Vector2, Agent_GradientDescent, (Agent * __this, Agent_VOBuffer * vos, Vector2 sampleAround1, Vector2 sampleAround2, MethodInfo * method)); -DO_APP_FUNC(0x00A3E190, bool, Agent_BiasDesiredVelocity, (Agent_VOBuffer * vos, Vector2 desiredVelocity, Vector2 targetPointInVelocitySpace, float maxBiasRadians, MethodInfo * method)); -DO_APP_FUNC(0x00A3E300, Vector2, Agent_EvaluateGradient, (Agent * __this, Agent_VOBuffer * vos, Vector2 p, float value, MethodInfo * method)); -DO_APP_FUNC(0x00A3E650, Vector2, Agent_Trace, (Agent * __this, Agent_VOBuffer * vos, Vector2 p, float score, MethodInfo * method)); -DO_APP_FUNC(0x00A3E940, void, Agent_VO__ctor, (Agent_VO__Boxed * __this, Vector2 center, Vector2 offset, float radius, float inverseDt, float inverseDeltaTime, MethodInfo * method)); +DO_APP_FUNC(0x00A3E190, bool, Agent_BiasDesiredVelocity, (Agent_VOBuffer * vos, Vector2 * desiredVelocity, Vector2 * targetPointInVelocitySpace, float maxBiasRadians, MethodInfo * method)); +DO_APP_FUNC(0x00A3E300, Vector2, Agent_EvaluateGradient, (Agent * __this, Agent_VOBuffer * vos, Vector2 p, float * value, MethodInfo * method)); +DO_APP_FUNC(0x00A3E650, Vector2, Agent_Trace, (Agent * __this, Agent_VOBuffer * vos, Vector2 p, float * score, MethodInfo * method)); +DO_APP_FUNC(0x00A3E940, void, Agent_VO__ctor, (Agent_VO * __this, Vector2 center, Vector2 offset, float radius, float inverseDt, float inverseDeltaTime, MethodInfo * method)); DO_APP_FUNC(0x00A3EF30, Agent_VO, Agent_VO_SegmentObstacle, (Vector2 segmentStart, Vector2 segmentEnd, Vector2 offset, float radius, float inverseDt, float inverseDeltaTime, MethodInfo * method)); DO_APP_FUNC(0x00A3F690, float, Agent_VO_SignedDistanceFromLine, (Vector2 a, Vector2 dir, Vector2 p, MethodInfo * method)); -DO_APP_FUNC(0x00A3F6D0, Vector2, Agent_VO_ScaledGradient, (Agent_VO__Boxed * __this, Vector2 p, float weight, MethodInfo * method)); -DO_APP_FUNC(0x00A3F760, Vector2, Agent_VO_Gradient, (Agent_VO__Boxed * __this, Vector2 p, float weight, MethodInfo * method)); +DO_APP_FUNC(0x00A3F6D0, Vector2, Agent_VO_ScaledGradient, (Agent_VO * __this, Vector2 p, float * weight, MethodInfo * method)); +DO_APP_FUNC(0x00A3F760, Vector2, Agent_VO_Gradient, (Agent_VO * __this, Vector2 p, float * weight, MethodInfo * method)); DO_APP_FUNC(0x00A3FB40, void, Agent_VOBuffer_Clear, (Agent_VOBuffer * __this, MethodInfo * method)); DO_APP_FUNC(0x00A3FB50, void, Agent_VOBuffer__ctor, (Agent_VOBuffer * __this, int32_t n, MethodInfo * method)); DO_APP_FUNC(0x00A3FC00, void, Agent_VOBuffer_Add, (Agent_VOBuffer * __this, Agent_VO vo, MethodInfo * method)); @@ -78652,6 +89658,7 @@ DO_APP_FUNC(0x003AE050, void, AnimationLinkTraverser_TraverseOffMeshLink_d_4_Sys DO_APP_FUNC(0x00A405D0, bool, AnimationLinkTraverser_TraverseOffMeshLink_d_4_MoveNext, (AnimationLinkTraverser_TraverseOffMeshLink_d_4 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, AnimationLinkTraverser_TraverseOffMeshLink_d_4_System_Collections_Generic_IEnumerator_System_Object__get_Current, (AnimationLinkTraverser_TraverseOffMeshLink_d_4 * __this, MethodInfo * method)); DO_APP_FUNC(0x00A41300, void, AnimationLinkTraverser_TraverseOffMeshLink_d_4_System_Collections_IEnumerator_Reset, (AnimationLinkTraverser_TraverseOffMeshLink_d_4 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC5B8, AnimationLinkTraverser_TraverseOffMeshLink_d_4_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, AnimationLinkTraverser_TraverseOffMeshLink_d_4_System_Collections_IEnumerator_get_Current, (AnimationLinkTraverser_TraverseOffMeshLink_d_4 * __this, MethodInfo * method)); DO_APP_FUNC(0x00843C60, uint32_t, _PrivateImplementationDetails__4_ComputeStringHash, (String * s, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, ZLZoHhNFMCGTXnwWxfttfyLCMCQj_Initialize, (ZLZoHhNFMCGTXnwWxfttfyLCMCQj * __this, GUIText * text, MethodInfo * method)); @@ -78659,7 +89666,9 @@ DO_APP_FUNC(0x02182860, void, ZLZoHhNFMCGTXnwWxfttfyLCMCQj_Start, (ZLZoHhNFMCGTX DO_APP_FUNC(0x02182C10, void, ZLZoHhNFMCGTXnwWxfttfyLCMCQj_Update, (ZLZoHhNFMCGTXnwWxfttfyLCMCQj * __this, MethodInfo * method)); DO_APP_FUNC(0x02184E50, void, ZLZoHhNFMCGTXnwWxfttfyLCMCQj_GQGjXlPsHhKLZqJlkenSBlXVGEjR, (ZLZoHhNFMCGTXnwWxfttfyLCMCQj * __this, MethodInfo * method)); DO_APP_FUNC(0x02184FB0, void, ZLZoHhNFMCGTXnwWxfttfyLCMCQj_mRNkVdmRQZlXvbdcbkqMpXVYoSVM, (ZLZoHhNFMCGTXnwWxfttfyLCMCQj * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEA00, ZLZoHhNFMCGTXnwWxfttfyLCMCQj_mRNkVdmRQZlXvbdcbkqMpXVYoSVM__MethodInfo); DO_APP_FUNC(0x02184FB0, void, ZLZoHhNFMCGTXnwWxfttfyLCMCQj_mkmxKVszUSFcXRKOVItoyQkmrXYu, (ZLZoHhNFMCGTXnwWxfttfyLCMCQj * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCE9F8, ZLZoHhNFMCGTXnwWxfttfyLCMCQj_mkmxKVszUSFcXRKOVItoyQkmrXYu__MethodInfo); DO_APP_FUNC(0x02184FC0, void, ZLZoHhNFMCGTXnwWxfttfyLCMCQj_qDAfsYTbIFtZDhVVxiMnTIgoFKSW, (ZLZoHhNFMCGTXnwWxfttfyLCMCQj * __this, MethodInfo * method)); DO_APP_FUNC(0x02185110, void, ZLZoHhNFMCGTXnwWxfttfyLCMCQj_IqeirVCUUEJhXFQOWXCdOtBiFkPb, (ZLZoHhNFMCGTXnwWxfttfyLCMCQj * __this, MethodInfo * method)); DO_APP_FUNC(0x02185260, void, ZLZoHhNFMCGTXnwWxfttfyLCMCQj_hhYCYWGhOaaGjCpwkCBqNGwqoWaz, (ZLZoHhNFMCGTXnwWxfttfyLCMCQj * __this, String * param_0001406f, Object * param_00014070, MethodInfo * method)); @@ -78673,7 +89682,9 @@ DO_APP_FUNC(0x02185FA0, void, nOdVPLBpoCzigRpttrVItEeXOHjK_Update, (nOdVPLBpoCzi DO_APP_FUNC(0x02188E80, void, nOdVPLBpoCzigRpttrVItEeXOHjK_OnDestroy, (nOdVPLBpoCzigRpttrVItEeXOHjK * __this, MethodInfo * method)); DO_APP_FUNC(0x02188EE0, void, nOdVPLBpoCzigRpttrVItEeXOHjK_GQGjXlPsHhKLZqJlkenSBlXVGEjR, (nOdVPLBpoCzigRpttrVItEeXOHjK * __this, MethodInfo * method)); DO_APP_FUNC(0x02188FB0, void, nOdVPLBpoCzigRpttrVItEeXOHjK_mRNkVdmRQZlXvbdcbkqMpXVYoSVM, (nOdVPLBpoCzigRpttrVItEeXOHjK * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCE928, nOdVPLBpoCzigRpttrVItEeXOHjK_mRNkVdmRQZlXvbdcbkqMpXVYoSVM__MethodInfo); DO_APP_FUNC(0x02188FB0, void, nOdVPLBpoCzigRpttrVItEeXOHjK_mkmxKVszUSFcXRKOVItoyQkmrXYu, (nOdVPLBpoCzigRpttrVItEeXOHjK * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCE920, nOdVPLBpoCzigRpttrVItEeXOHjK_mkmxKVszUSFcXRKOVItoyQkmrXYu__MethodInfo); DO_APP_FUNC(0x02188FC0, void, nOdVPLBpoCzigRpttrVItEeXOHjK_qDAfsYTbIFtZDhVVxiMnTIgoFKSW, (nOdVPLBpoCzigRpttrVItEeXOHjK * __this, MethodInfo * method)); DO_APP_FUNC(0x021890C0, void, nOdVPLBpoCzigRpttrVItEeXOHjK_IqeirVCUUEJhXFQOWXCdOtBiFkPb, (nOdVPLBpoCzigRpttrVItEeXOHjK * __this, MethodInfo * method)); DO_APP_FUNC(0x021891C0, void, nOdVPLBpoCzigRpttrVItEeXOHjK_hhYCYWGhOaaGjCpwkCBqNGwqoWaz, (nOdVPLBpoCzigRpttrVItEeXOHjK * __this, String * param_00014075, Object * param_00014076, MethodInfo * method)); @@ -78721,7 +89732,7 @@ DO_APP_FUNC(0x0218AE90, void, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_pupBUQtfmNrKuQpVBHqz DO_APP_FUNC(0x0218AFD0, List_1_YbqFPqlOhPbwgAIFLLewBFaMbWuFb_WCWrnemrMnIApfYLoPRnewDeJmzbA_ *, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_LCSsaykEjQLcmrxvNtXwNvGZZwDe, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb * __this, MethodInfo * method)); DO_APP_FUNC(0x0218BA40, void, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_DVboPdzaJIuXtLZraReCwokGlhnc, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb * __this, MethodInfo * method)); DO_APP_FUNC(0x0218BA70, void, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_ylAfbYactmpehSTtcXiJZQKrnjzP, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb * __this, List_1_YbqFPqlOhPbwgAIFLLewBFaMbWuFb_WCWrnemrMnIApfYLoPRnewDeJmzbA_ * param_000140a2, MethodInfo * method)); -DO_APP_FUNC(0x0218BF70, void, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_RCfAJwsnvlYElKZcfLlDYKFXfzSo, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb * __this, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE * param_000140a3, rPGgilLxmMTekXrALcMmwLgZUrTO * param_000140a4, String * param_000140a5, MethodInfo * method)); +DO_APP_FUNC(0x0218BF70, void, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_RCfAJwsnvlYElKZcfLlDYKFXfzSo, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb * __this, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE * param_000140a3, rPGgilLxmMTekXrALcMmwLgZUrTO * param_000140a4, String * * param_000140a5, MethodInfo * method)); DO_APP_FUNC(0x0218C2B0, void, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_SCfYDvoCdZvLEqIJzGGKJBkeUexN, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb * __this, MethodInfo * method)); DO_APP_FUNC(0x0218C410, IList_1_IEpqttsJBVpdPbiISguYNqxToTKd_ *, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_KqhxnmKjnnVkQzGQbglHBhCnczkz, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb * __this, MethodInfo * method)); DO_APP_FUNC(0x0218C4E0, void, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_EUgkZacqfIEthCNOlpqCGpjTKVLA, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb * __this, MethodInfo * method)); @@ -78740,8 +89751,10 @@ DO_APP_FUNC(0x0218D810, bool, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_qhySHmfIYbUojbWwfofD DO_APP_FUNC(0x0218D910, void, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_wzGfetKGzmgJPwNTqhswwjWMGCrjA, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb * __this, List_1_YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE_ * param_000140bc, List_1_YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE_ * param_000140bd, bool param_000140be, MethodInfo * method)); DO_APP_FUNC(0x0218DAA0, void, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_WWoDgPEAPgTZWAZsRxRnBIOlkxpyA, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb * __this, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE * param_000140bf, bool param_000140c0, MethodInfo * method)); DO_APP_FUNC(0x0218DBE0, bool, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oOrcsmDjojJjfDXMrFMtJTboTSUjA, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCE800, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oOrcsmDjojJjfDXMrFMtJTboTSUjA__MethodInfo); DO_APP_FUNC(0x0218DC60, void, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_mBXjBZzLiJibeFRkuHfRLBcZCPyZ, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb * __this, List_1_YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE_ * param_000140c1, List_1_YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE_ * param_000140c2, MethodInfo * method)); DO_APP_FUNC(0x0218DD50, List_1_YbqFPqlOhPbwgAIFLLewBFaMbWuFb_WCWrnemrMnIApfYLoPRnewDeJmzbA_ *, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_UsVnmRQUdfPbCYJjQagIkBiufdzY, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCE808, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_UsVnmRQUdfPbCYJjQagIkBiufdzY__MethodInfo); DO_APP_FUNC(0x003BCD50, int32_t, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE_get_rewiredId, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE_set_rewiredId, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x003BCD70, int32_t, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE_get_inputManagerId, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE * __this, MethodInfo * method)); @@ -78759,6 +89772,7 @@ DO_APP_FUNC(0x0218DF40, void, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhP DO_APP_FUNC(0x0218E350, void, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE_LlWYXnGCuVVKJpzCdJYHeprZIwvC, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE * __this, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE * param_000140c9, MethodInfo * method)); DO_APP_FUNC(0x0218E4B0, void, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE_Update, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE * __this, MethodInfo * method)); DO_APP_FUNC(0x0218E5E0, void, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE_FillData, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE * __this, ControllerDataUpdater * dataUpdater, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCE6A0, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE_FillData__MethodInfo); DO_APP_FUNC(0x0218E740, int32_t, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE_xMnHTvEjWQzscBBoZLxFJdfZBqLaA, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE * __this, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE * param_000140cb, MethodInfo * method)); DO_APP_FUNC(0x0218E840, BridgedControllerHWInfo *, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE_yMGiTySicmPQxCrMjmtihGllAkSc, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE * __this, MethodInfo * method)); DO_APP_FUNC(0x0218E8B0, BridgedController *, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE_ToBridgedController, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE * __this, MethodInfo * method)); @@ -78768,14 +89782,16 @@ DO_APP_FUNC(0x0218EAF0, void, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhP DO_APP_FUNC(0x0218EB20, void, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE_bREaCmyldYGFJfUUZzKzraPGSMtN, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE * __this, Boolean__Array * param_000140cc, Int32__Array * param_000140cd, MethodInfo * method)); DO_APP_FUNC(0x0218ED40, void, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE_OigKfWVDKSJyYsIOrKMbobMHUegc, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE * __this, Boolean__Array * param_000140ce, Int32__Array * param_000140cf, MethodInfo * method)); DO_APP_FUNC(0x0218EF60, void, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE_kqOiDUXLlnbmJboyHowfUOyWgnyP, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE * __this, HardwareJoystickMap_Platform_RawOrDirectInput_Axis_Base * param_000140d0, int32_t param_000140d1, Boolean__Array * param_000140d2, Int32__Array * param_000140d3, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCE660, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE_kqOiDUXLlnbmJboyHowfUOyWgnyP__MethodInfo); DO_APP_FUNC(0x0218F060, void, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE_ynDbHjkUqAiXslOEaLEBNCdzGTelA, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE * __this, HardwareJoystickMap_Platform_RawOrDirectInput_Button_Base * param_000140d4, int32_t param_000140d5, Boolean__Array * param_000140d6, Int32__Array * param_000140d7, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCE658, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE_ynDbHjkUqAiXslOEaLEBNCdzGTelA__MethodInfo); DO_APP_FUNC(0x0218F150, float, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE_llRJkCMrCfgBMwkiUoMjwPMOqdgh, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE * __this, HardwareJoystickMap_Platform_RawOrDirectInput_Axis_Base * param_000140d8, Boolean__Array * param_000140d9, Int32__Array * param_000140da, MethodInfo * method)); DO_APP_FUNC(0x0218F4D0, float, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE_llRJkCMrCfgBMwkiUoMjwPMOqdgh_1, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE * __this, DirectInputAxis__Enum param_000140db, MethodInfo * method)); DO_APP_FUNC(0x0218FA40, bool, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE_FiMGdLgwnQkuAJmdoeKwRJXajcdpA, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE * __this, HardwareJoystickMap_Platform_RawOrDirectInput_Button_Base * param_000140dc, Boolean__Array * param_000140dd, Int32__Array * param_000140de, MethodInfo * method)); DO_APP_FUNC(0x02190040, bool, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE_XGJfVJsxmKdNrGHsNbLrAPqRhikZ, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE * __this, int32_t param_000140df, int32_t param_000140e0, HatType__Enum param_000140e1, MethodInfo * method)); DO_APP_FUNC(0x01F18140, float, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE_YvVCiLRdmYmoeVjiKyxMYHzAarUG, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE * __this, int32_t param_000140e2, AxisDirection__Enum param_000140e3, MethodInfo * method)); -DO_APP_FUNC(0x021900F0, bool, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE_YYFOuGgNdPgISLyuaHSHRIYHFaIS, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE * __this, HardwareJoystickMap_Platform_RawOrDirectInput_CustomCalculationSourceData * param_000140e4, Boolean__Array * param_000140e5, bool param_000140e6, MethodInfo * method)); -DO_APP_FUNC(0x02190150, bool, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE_nbEzOZVECjlaWheETbBSdjsHVjpz, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE * __this, HardwareJoystickMap_Platform_RawOrDirectInput_CustomCalculationSourceData * param_000140e7, float param_000140e8, MethodInfo * method)); +DO_APP_FUNC(0x021900F0, bool, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE_YYFOuGgNdPgISLyuaHSHRIYHFaIS, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE * __this, HardwareJoystickMap_Platform_RawOrDirectInput_CustomCalculationSourceData * param_000140e4, Boolean__Array * param_000140e5, bool * param_000140e6, MethodInfo * method)); +DO_APP_FUNC(0x02190150, bool, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE_nbEzOZVECjlaWheETbBSdjsHVjpz, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE * __this, HardwareJoystickMap_Platform_RawOrDirectInput_CustomCalculationSourceData * param_000140e7, float * param_000140e8, MethodInfo * method)); DO_APP_FUNC(0x021902D0, ControlDeviceType__Enum, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE_STuXznnMkGHZJxQmSflCxJvaHclO, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE * __this, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_iotHRVOMpyfeQesWUiMxwdlBsoxKA__Enum param_000140e9, MethodInfo * method)); DO_APP_FUNC(0x02190320, void, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE_aTDeeMxviQqftWWeVrsNCPkIDzWf, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE * __this, MethodInfo * method)); DO_APP_FUNC(0x02190470, String *, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE_wtCgcfrWDKXQyqCsqfdjbWDuPuyK, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE * __this, MethodInfo * method)); @@ -78786,7 +89802,9 @@ DO_APP_FUNC(0x02191090, void, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhP DO_APP_FUNC(0x02191100, void, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE_koAztZrcZLyuMlaqoUCpAMQQIsgb, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE * __this, MethodInfo * method)); DO_APP_FUNC(0x02191150, void, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE_ixmAePEnLRGjkiYJbCTfPNBHXEcwB_1, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE * __this, bool param_000140ec, MethodInfo * method)); DO_APP_FUNC(0x01F19080, int32_t, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE_HLphWyVAaKAupfKmDRRLewfywsiy, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE * param_000140ed, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE * param_000140ee, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCE6F0, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE_HLphWyVAaKAupfKmDRRLewfywsiy__MethodInfo); DO_APP_FUNC(0x021911E0, int32_t, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE_qSbzayrWDlqgNouBOISiTwQQiBgf, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE * param_000140ef, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE * param_000140f0, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCE6E8, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE_qSbzayrWDlqgNouBOISiTwQQiBgf__MethodInfo); DO_APP_FUNC(0x02191230, Boolean__Array *, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_kmEsTSZdFFnIPZHCfAKxHljbQrJR_DFUXAphSQHZHVVVyguNGgAvyFgBA, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb_kmEsTSZdFFnIPZHCfAKxHljbQrJR * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7490, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_kmEsTSZdFFnIPZHCfAKxHljbQrJR_EmzirSFTFiHtAsVxbZwpExkVigoi *, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_kmEsTSZdFFnIPZHCfAKxHljbQrJR_JAetsUHDQgKwdhBAdHyQydsSQzBt, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb_kmEsTSZdFFnIPZHCfAKxHljbQrJR * __this, MethodInfo * method)); DO_APP_FUNC(0x021912A0, void, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_kmEsTSZdFFnIPZHCfAKxHljbQrJR__ctor, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb_kmEsTSZdFFnIPZHCfAKxHljbQrJR * __this, GqryNrYEvkExVmQzJVqPbzHUZsSB * param_000140f1, UpdateLoopSetting__Enum param_000140f2, MethodInfo * method)); @@ -78797,6 +89815,7 @@ DO_APP_FUNC(0x021919C0, void, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_kmEsTSZdFFnIPZHCfAKx DO_APP_FUNC(0x021919D0, void, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_kmEsTSZdFFnIPZHCfAKxHljbQrJR_LlWYXnGCuVVKJpzCdJYHeprZIwvC, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb_kmEsTSZdFFnIPZHCfAKxHljbQrJR * __this, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_kmEsTSZdFFnIPZHCfAKxHljbQrJR * param_000140f3, MethodInfo * method)); DO_APP_FUNC(0x02191EE0, void, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_kmEsTSZdFFnIPZHCfAKxHljbQrJR_gWAXVZNniAcIzioRCLgiRVdXoEde, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb_kmEsTSZdFFnIPZHCfAKxHljbQrJR * __this, int32_t param_000140f4, int32_t param_000140f5, int32_t param_000140f6, float param_000140f7, MethodInfo * method)); DO_APP_FUNC(0x02192090, void, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_kmEsTSZdFFnIPZHCfAKxHljbQrJR_wRWaxEIAGmAgIeMjxOODvhjlDRssA, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb_kmEsTSZdFFnIPZHCfAKxHljbQrJR * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCE638, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_kmEsTSZdFFnIPZHCfAKxHljbQrJR_wRWaxEIAGmAgIeMjxOODvhjlDRssA__MethodInfo); DO_APP_FUNC(0x02192380, void, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_kmEsTSZdFFnIPZHCfAKxHljbQrJR_okNPGOmxwuXjZFywiawUSqOyuPwF, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb_kmEsTSZdFFnIPZHCfAKxHljbQrJR * __this, MethodInfo * method)); DO_APP_FUNC(0x02192490, void, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_kmEsTSZdFFnIPZHCfAKxHljbQrJR_rUVOngknMKdaVcBZRsgOUAyzJBnjA, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb_kmEsTSZdFFnIPZHCfAKxHljbQrJR * __this, MethodInfo * method)); DO_APP_FUNC(0x021925D0, void, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_kmEsTSZdFFnIPZHCfAKxHljbQrJR_Dispose, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb_kmEsTSZdFFnIPZHCfAKxHljbQrJR * __this, MethodInfo * method)); @@ -78806,7 +89825,7 @@ DO_APP_FUNC(0x02192780, float, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_kmEsTSZdFFnIPZHCfAK DO_APP_FUNC(0x021927F0, void, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_kmEsTSZdFFnIPZHCfAKxHljbQrJR_EmzirSFTFiHtAsVxbZwpExkVigoi__ctor, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb_kmEsTSZdFFnIPZHCfAKxHljbQrJR_EmzirSFTFiHtAsVxbZwpExkVigoi * __this, MethodInfo * method)); DO_APP_FUNC(0x02192AA0, void, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_kmEsTSZdFFnIPZHCfAKxHljbQrJR_EmzirSFTFiHtAsVxbZwpExkVigoi_IqeirVCUUEJhXFQOWXCdOtBiFkPb, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb_kmEsTSZdFFnIPZHCfAKxHljbQrJR_EmzirSFTFiHtAsVxbZwpExkVigoi * __this, MethodInfo * method)); DO_APP_FUNC(0x02192CB0, void, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_kmEsTSZdFFnIPZHCfAKxHljbQrJR_EmzirSFTFiHtAsVxbZwpExkVigoi_iGlRenjOWJphMVhzZUqICzDnNZft, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb_kmEsTSZdFFnIPZHCfAKxHljbQrJR_EmzirSFTFiHtAsVxbZwpExkVigoi * __this, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_kmEsTSZdFFnIPZHCfAKxHljbQrJR_EmzirSFTFiHtAsVxbZwpExkVigoi * param_000140fa, MethodInfo * method)); -DO_APP_FUNC(0x02193030, void, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_kmEsTSZdFFnIPZHCfAKxHljbQrJR_EmzirSFTFiHtAsVxbZwpExkVigoi_iGlRenjOWJphMVhzZUqICzDnNZft_1, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb_kmEsTSZdFFnIPZHCfAKxHljbQrJR_EmzirSFTFiHtAsVxbZwpExkVigoi * __this, LowLevelInputEvent param_000140fb, MethodInfo * method)); +DO_APP_FUNC(0x02193030, void, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_kmEsTSZdFFnIPZHCfAKxHljbQrJR_EmzirSFTFiHtAsVxbZwpExkVigoi_iGlRenjOWJphMVhzZUqICzDnNZft_1, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb_kmEsTSZdFFnIPZHCfAKxHljbQrJR_EmzirSFTFiHtAsVxbZwpExkVigoi * __this, LowLevelInputEvent * param_000140fb, MethodInfo * method)); DO_APP_FUNC(0x021932C0, void, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_kmEsTSZdFFnIPZHCfAKxHljbQrJR_EmzirSFTFiHtAsVxbZwpExkVigoi_VfdUKmQuYDLmPLAgoyzzjtdVJRmN, (eIOeMVETDBCpONALFPUSmkDfCaEg * param_000140fc, double param_000140fd, LowLevelInputEvent param_000140fe, MethodInfo * method)); DO_APP_FUNC(0x02193D60, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_YxkmvjCgiJdMkrjxCfYBRnWcQdWC *, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_YxkmvjCgiJdMkrjxCfYBRnWcQdWC_givyoQaQtdahfgHPPDDuAIjBUOgkB, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb_YxkmvjCgiJdMkrjxCfYBRnWcQdWC * param_000140ff, eIOeMVETDBCpONALFPUSmkDfCaEg * param_00014100, MethodInfo * method)); DO_APP_FUNC(0x02193EA0, void, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_YxkmvjCgiJdMkrjxCfYBRnWcQdWC__ctor, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb_YxkmvjCgiJdMkrjxCfYBRnWcQdWC * __this, eIOeMVETDBCpONALFPUSmkDfCaEg * param_00014101, int32_t param_00014102, int32_t param_00014103, int32_t param_00014104, float param_00014105, MethodInfo * method)); @@ -78829,6 +89848,7 @@ DO_APP_FUNC(0x02196280, IEnumerable_1_YbqFPqlOhPbwgAIFLLewBFaMbWuFb_bmycphkAyqKN DO_APP_FUNC(0x021963B0, void, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_bmycphkAyqKNoaTIKLUfvetjHrnTA_kLiYwZakvesizQTKwNeuXgSbcAnJ, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb_bmycphkAyqKNoaTIKLUfvetjHrnTA * __this, int32_t param_00014115, Guid param_00014116, int32_t param_00014117, MethodInfo * method)); DO_APP_FUNC(0x02196500, String *, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_bmycphkAyqKNoaTIKLUfvetjHrnTA_LVmcPOeqeDbqbgLicgjuWNFJdAuo, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb_bmycphkAyqKNoaTIKLUfvetjHrnTA * __this, MethodInfo * method)); DO_APP_FUNC(0x021967E0, bool, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_bmycphkAyqKNoaTIKLUfvetjHrnTA_wAEbikHXPiUhjCZkCxpMjGhOLrYn_xMnHTvEjWQzscBBoZLxFJdfZBqLaA, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb_bmycphkAyqKNoaTIKLUfvetjHrnTA_wAEbikHXPiUhjCZkCxpMjGhOLrYn * __this, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE * param_00014118, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_bmycphkAyqKNoaTIKLUfvetjHrnTA_IhNjCXUMJgTgUUONqOIwbeuCrluG__Enum param_00014119, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCE608, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_bmycphkAyqKNoaTIKLUfvetjHrnTA_wAEbikHXPiUhjCZkCxpMjGhOLrYn_xMnHTvEjWQzscBBoZLxFJdfZBqLaA__MethodInfo); DO_APP_FUNC(0x02196910, String *, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_bmycphkAyqKNoaTIKLUfvetjHrnTA_wAEbikHXPiUhjCZkCxpMjGhOLrYn_LVmcPOeqeDbqbgLicgjuWNFJdAuo, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb_bmycphkAyqKNoaTIKLUfvetjHrnTA_wAEbikHXPiUhjCZkCxpMjGhOLrYn * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_bmycphkAyqKNoaTIKLUfvetjHrnTA_wAEbikHXPiUhjCZkCxpMjGhOLrYn__ctor, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb_bmycphkAyqKNoaTIKLUfvetjHrnTA_wAEbikHXPiUhjCZkCxpMjGhOLrYn * __this, MethodInfo * method)); DO_APP_FUNC(0x00FDB5B0, void, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_bmycphkAyqKNoaTIKLUfvetjHrnTA_NoaDFLBntEVyrLFQjuULFTNrtGLz__ctor, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb_bmycphkAyqKNoaTIKLUfvetjHrnTA_NoaDFLBntEVyrLFQjuULFTNrtGLz * __this, int32_t param_0001411a, MethodInfo * method)); @@ -78836,6 +89856,7 @@ DO_APP_FUNC(0x003AE050, void, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_bmycphkAyqKNoaTIKLUf DO_APP_FUNC(0x02196B90, bool, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_bmycphkAyqKNoaTIKLUfvetjHrnTA_NoaDFLBntEVyrLFQjuULFTNrtGLz_MoveNext, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb_bmycphkAyqKNoaTIKLUfvetjHrnTA_NoaDFLBntEVyrLFQjuULFTNrtGLz * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_bmycphkAyqKNoaTIKLUfvetjHrnTA_wAEbikHXPiUhjCZkCxpMjGhOLrYn *, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_bmycphkAyqKNoaTIKLUfvetjHrnTA_NoaDFLBntEVyrLFQjuULFTNrtGLz_System_Collections_Generic_IEnumerator_Rewired_Windows_DirectInputManager_JoystickRecords_Record__get_Current, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb_bmycphkAyqKNoaTIKLUfvetjHrnTA_NoaDFLBntEVyrLFQjuULFTNrtGLz * __this, MethodInfo * method)); DO_APP_FUNC(0x02196CC0, void, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_bmycphkAyqKNoaTIKLUfvetjHrnTA_NoaDFLBntEVyrLFQjuULFTNrtGLz_System_Collections_IEnumerator_Reset, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb_bmycphkAyqKNoaTIKLUfvetjHrnTA_NoaDFLBntEVyrLFQjuULFTNrtGLz * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCE568, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_bmycphkAyqKNoaTIKLUfvetjHrnTA_NoaDFLBntEVyrLFQjuULFTNrtGLz_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_bmycphkAyqKNoaTIKLUfvetjHrnTA_NoaDFLBntEVyrLFQjuULFTNrtGLz_System_Collections_IEnumerator_get_Current, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb_bmycphkAyqKNoaTIKLUfvetjHrnTA_NoaDFLBntEVyrLFQjuULFTNrtGLz * __this, MethodInfo * method)); DO_APP_FUNC(0x02196D10, IEnumerator_1_YbqFPqlOhPbwgAIFLLewBFaMbWuFb_bmycphkAyqKNoaTIKLUfvetjHrnTA_wAEbikHXPiUhjCZkCxpMjGhOLrYn_ *, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_bmycphkAyqKNoaTIKLUfvetjHrnTA_NoaDFLBntEVyrLFQjuULFTNrtGLz_System_Collections_Generic_IEnumerable_Rewired_Windows_DirectInputManager_JoystickRecords_Record__GetEnumerator, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb_bmycphkAyqKNoaTIKLUfvetjHrnTA_NoaDFLBntEVyrLFQjuULFTNrtGLz * __this, MethodInfo * method)); DO_APP_FUNC(0x02196ED0, IEnumerator *, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_bmycphkAyqKNoaTIKLUfvetjHrnTA_NoaDFLBntEVyrLFQjuULFTNrtGLz_System_Collections_IEnumerable_GetEnumerator, (YbqFPqlOhPbwgAIFLLewBFaMbWuFb_bmycphkAyqKNoaTIKLUfvetjHrnTA_NoaDFLBntEVyrLFQjuULFTNrtGLz * __this, MethodInfo * method)); @@ -78863,6 +89884,7 @@ DO_APP_FUNC(0x003AE050, void, kFIrhYouotPQcJZqjklRXONdiOBk_SetUnityJoystickId, ( DO_APP_FUNC(0x005B9620, IUnifiedMouseSource *, kFIrhYouotPQcJZqjklRXONdiOBk_GetUnifiedMouseSource, (kFIrhYouotPQcJZqjklRXONdiOBk * __this, MethodInfo * method)); DO_APP_FUNC(0x003C1700, IUnifiedKeyboardSource *, kFIrhYouotPQcJZqjklRXONdiOBk_GetUnifiedKeyboardSource, (kFIrhYouotPQcJZqjklRXONdiOBk * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, kFIrhYouotPQcJZqjklRXONdiOBk_oRxiXkgXWxfaUgUSkLZgjvKawexX, (kFIrhYouotPQcJZqjklRXONdiOBk * __this, lNxFJILufgduJyEUwukEQTSTSOGU param_0001412e, aHWgfHQFfzeojacNUuWNWbRtoBCi__Enum param_0001412f, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFBF8, kFIrhYouotPQcJZqjklRXONdiOBk_oRxiXkgXWxfaUgUSkLZgjvKawexX__MethodInfo); DO_APP_FUNC(0x02198790, void, kFIrhYouotPQcJZqjklRXONdiOBk_pupBUQtfmNrKuQpVBHqzKfqhHvKS, (kFIrhYouotPQcJZqjklRXONdiOBk * __this, MethodInfo * method)); DO_APP_FUNC(0x021988B0, void, kFIrhYouotPQcJZqjklRXONdiOBk_bTQCoezssaChuslPcnMYDIuIceqg, (kFIrhYouotPQcJZqjklRXONdiOBk * __this, MethodInfo * method)); DO_APP_FUNC(0x021988E0, void, kFIrhYouotPQcJZqjklRXONdiOBk_bTQCoezssaChuslPcnMYDIuIceqg_1, (kFIrhYouotPQcJZqjklRXONdiOBk * __this, IList_1_znMZhiOLtznjGEIVUrVliWSuIivu_ * param_00014130, MethodInfo * method)); @@ -78883,7 +89905,9 @@ DO_APP_FUNC(0x0219A0A0, bool, kFIrhYouotPQcJZqjklRXONdiOBk_qhySHmfIYbUojbWwfofDn DO_APP_FUNC(0x0219A210, void, kFIrhYouotPQcJZqjklRXONdiOBk_wzGfetKGzmgJPwNTqhswwjWMGCrjA, (kFIrhYouotPQcJZqjklRXONdiOBk * __this, List_1_kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ_ * param_00014146, List_1_kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ_ * param_00014147, bool param_00014148, MethodInfo * method)); DO_APP_FUNC(0x0219A3A0, void, kFIrhYouotPQcJZqjklRXONdiOBk_WWoDgPEAPgTZWAZsRxRnBIOlkxpyA, (kFIrhYouotPQcJZqjklRXONdiOBk * __this, kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ * param_00014149, bool param_0001414a, MethodInfo * method)); DO_APP_FUNC(0x0219A550, bool, kFIrhYouotPQcJZqjklRXONdiOBk_oOrcsmDjojJjfDXMrFMtJTboTSUjA, (kFIrhYouotPQcJZqjklRXONdiOBk * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCE588, kFIrhYouotPQcJZqjklRXONdiOBk_oOrcsmDjojJjfDXMrFMtJTboTSUjA__MethodInfo); DO_APP_FUNC(0x0219A6D0, void, kFIrhYouotPQcJZqjklRXONdiOBk_VOGnZdziqXWrBCOEhaiDdnJuPXOmA, (kFIrhYouotPQcJZqjklRXONdiOBk * __this, kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ * param_0001414b, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCE520, kFIrhYouotPQcJZqjklRXONdiOBk_VOGnZdziqXWrBCOEhaiDdnJuPXOmA__MethodInfo); DO_APP_FUNC(0x0219A8B0, bool, kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ_cVNWnwCgAjThLmXkQPsPiHVOTTnS, (kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD50, int32_t, kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ_get_rewiredId, (kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ_set_rewiredId, (kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ * __this, int32_t value, MethodInfo * method)); @@ -78904,6 +89928,7 @@ DO_APP_FUNC(0x0219ABA0, void, kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjX DO_APP_FUNC(0x0219B320, void, kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ_LlWYXnGCuVVKJpzCdJYHeprZIwvC, (kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ * __this, kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ * param_00014154, MethodInfo * method)); DO_APP_FUNC(0x0219B550, void, kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ_Update, (kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ * __this, MethodInfo * method)); DO_APP_FUNC(0x0219B630, void, kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ_FillData, (kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ * __this, ControllerDataUpdater * dataUpdater, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFF00, kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ_FillData__MethodInfo); DO_APP_FUNC(0x0219B850, int32_t, kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ_xMnHTvEjWQzscBBoZLxFJdfZBqLaA, (kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ * __this, kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ * param_00014156, MethodInfo * method)); DO_APP_FUNC(0x0219B9F0, BridgedControllerHWInfo *, kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ_yMGiTySicmPQxCrMjmtihGllAkSc, (kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ * __this, MethodInfo * method)); DO_APP_FUNC(0x0219BA60, BridgedController *, kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ_ToBridgedController, (kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ * __this, MethodInfo * method)); @@ -78911,18 +89936,22 @@ DO_APP_FUNC(0x0219BB20, ControllerDisconnectedEventArgs *, kFIrhYouotPQcJZqjklRX DO_APP_FUNC(0x0219BBC0, void, kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ_bREaCmyldYGFJfUUZzKzraPGSMtN, (kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ * __this, Boolean__Array * param_00014157, Int32__Array * param_00014158, MethodInfo * method)); DO_APP_FUNC(0x0219BF90, void, kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ_OigKfWVDKSJyYsIOrKMbobMHUegc, (kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ * __this, Boolean__Array * param_00014159, Int32__Array * param_0001415a, MethodInfo * method)); DO_APP_FUNC(0x0219C360, void, kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ_kqOiDUXLlnbmJboyHowfUOyWgnyP, (kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ * __this, HardwareJoystickMap_Platform_RawOrDirectInput_Axis_Base * param_0001415b, int32_t param_0001415c, Boolean__Array * param_0001415d, Int32__Array * param_0001415e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFF28, kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ_kqOiDUXLlnbmJboyHowfUOyWgnyP__MethodInfo); DO_APP_FUNC(0x0219C460, void, kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ_ynDbHjkUqAiXslOEaLEBNCdzGTelA, (kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ * __this, HardwareJoystickMap_Platform_RawOrDirectInput_Button_Base * param_0001415f, int32_t param_00014160, Boolean__Array * param_00014161, Int32__Array * param_00014162, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFF48, kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ_ynDbHjkUqAiXslOEaLEBNCdzGTelA__MethodInfo); DO_APP_FUNC(0x0219C560, float, kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ_llRJkCMrCfgBMwkiUoMjwPMOqdgh, (kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ * __this, HardwareJoystickMap_Platform_RawOrDirectInput_Axis_Base * param_00014163, Boolean__Array * param_00014164, Int32__Array * param_00014165, MethodInfo * method)); DO_APP_FUNC(0x0219C940, float, kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ_llRJkCMrCfgBMwkiUoMjwPMOqdgh_1, (kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ * __this, RawInputAxis__Enum param_00014166, int32_t param_00014167, MethodInfo * method)); DO_APP_FUNC(0x0219CA70, float, kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ_FiMGdLgwnQkuAJmdoeKwRJXajcdpA, (kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ * __this, HardwareJoystickMap_Platform_RawOrDirectInput_Button_Base * param_00014168, Boolean__Array * param_00014169, Int32__Array * param_0001416a, MethodInfo * method)); DO_APP_FUNC(0x02185800, float, kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ_WBTydUTpGhZAhZjalHMpfRTNIiaf, (kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ * __this, int32_t param_0001416b, MethodInfo * method)); DO_APP_FUNC(0x0219D050, float, kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ_XGJfVJsxmKdNrGHsNbLrAPqRhikZ, (kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ * __this, int32_t param_0001416c, int32_t param_0001416d, HatType__Enum param_0001416e, MethodInfo * method)); DO_APP_FUNC(0x01F18140, float, kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ_YvVCiLRdmYmoeVjiKyxMYHzAarUG, (kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ * __this, int32_t param_0001416f, AxisDirection__Enum param_00014170, MethodInfo * method)); -DO_APP_FUNC(0x0219D110, bool, kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ_YYFOuGgNdPgISLyuaHSHRIYHFaIS, (kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ * __this, HardwareJoystickMap_Platform_RawOrDirectInput_CustomCalculationSourceData * param_00014171, Boolean__Array * param_00014172, bool param_00014173, MethodInfo * method)); -DO_APP_FUNC(0x0219D170, bool, kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ_nbEzOZVECjlaWheETbBSdjsHVjpz, (kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ * __this, HardwareJoystickMap_Platform_RawOrDirectInput_CustomCalculationSourceData * param_00014174, float param_00014175, MethodInfo * method)); +DO_APP_FUNC(0x0219D110, bool, kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ_YYFOuGgNdPgISLyuaHSHRIYHFaIS, (kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ * __this, HardwareJoystickMap_Platform_RawOrDirectInput_CustomCalculationSourceData * param_00014171, Boolean__Array * param_00014172, bool * param_00014173, MethodInfo * method)); +DO_APP_FUNC(0x0219D170, bool, kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ_nbEzOZVECjlaWheETbBSdjsHVjpz, (kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ * __this, HardwareJoystickMap_Platform_RawOrDirectInput_CustomCalculationSourceData * param_00014174, float * param_00014175, MethodInfo * method)); DO_APP_FUNC(0x0219D2F0, ControlDeviceType__Enum, kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ_LOughhBkaVlUMqcAIKkFRyoxkPnfA, (kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ * __this, DeviceType__Enum_1 param_00014176, MethodInfo * method)); DO_APP_FUNC(0x0219D330, void, kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ_iSrNsdezNYwMvMbgNQqBhfIHQKeF, (kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ * __this, HardwareJoystickMap_Platform_InternalDriver_Base_Axis * param_00014177, int32_t param_00014178, Boolean__Array * param_00014179, Int32__Array * param_0001417a, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFE58, kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ_iSrNsdezNYwMvMbgNQqBhfIHQKeF__MethodInfo); DO_APP_FUNC(0x0219D430, void, kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ_HFFUsTscJOjYBqDKuwKQgxGWdGKk, (kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ * __this, HardwareJoystickMap_Platform_InternalDriver_Base_Button * param_0001417b, int32_t param_0001417c, Boolean__Array * param_0001417d, Int32__Array * param_0001417e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFE68, kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ_HFFUsTscJOjYBqDKuwKQgxGWdGKk__MethodInfo); DO_APP_FUNC(0x0219D530, float, kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ_PhbwQqbwOsOsNxSNFcSVxFJKGXXX, (kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ * __this, HardwareJoystickMap_Platform_InternalDriver_Base_Axis * param_0001417f, Boolean__Array * param_00014180, Int32__Array * param_00014181, MethodInfo * method)); DO_APP_FUNC(0x0219D6A0, float, kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ_PhbwQqbwOsOsNxSNFcSVxFJKGXXX_1, (kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ * __this, int32_t param_00014182, MethodInfo * method)); DO_APP_FUNC(0x0219D740, float, kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ_bEOiTWAceeZYTEmgDRnAPCBovBPCA, (kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ * __this, HardwareJoystickMap_Platform_InternalDriver_Base_Button * param_00014183, Boolean__Array * param_00014184, Int32__Array * param_00014185, MethodInfo * method)); @@ -78935,13 +89964,16 @@ DO_APP_FUNC(0x0219E950, void, kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjX DO_APP_FUNC(0x02191100, void, kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ_koAztZrcZLyuMlaqoUCpAMQQIsgb, (kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ * __this, MethodInfo * method)); DO_APP_FUNC(0x0219E9C0, void, kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ_ixmAePEnLRGjkiYJbCTfPNBHXEcwB_1, (kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ * __this, bool param_00014188, MethodInfo * method)); DO_APP_FUNC(0x01F19080, int32_t, kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ_vDCjSzhyoWTjJtGZnDeoSRlPfAbd, (kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ * param_00014189, kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ * param_0001418a, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCE4C8, kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ_vDCjSzhyoWTjJtGZnDeoSRlPfAbd__MethodInfo); DO_APP_FUNC(0x0219E9E0, int32_t, kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ_dGqVTUAofixkbyukqwAIyYICriOG, (kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ * param_0001418b, kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ * param_0001418c, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCE4D0, kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ_dGqVTUAofixkbyukqwAIyYICriOG__MethodInfo); DO_APP_FUNC(0x0219EA30, void, kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ__ctor, (kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ * __this, MethodInfo * method)); DO_APP_FUNC(0x0219EB00, void, kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ_WTuFMsAAnTHnmAtwzDZXXKSNDQZq, (kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ * __this, kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ * param_0001418d, MethodInfo * method)); DO_APP_FUNC(0x0219EFB0, IEnumerable_1_kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ_IPxIzDRSRdPphfeFncEoTAbRXhKJ_ *, kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ_PLuWEjfgDkcVVjWkqQaDcEiErMRp, (kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ * __this, kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ * param_0001418e, kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ_SPZUnxjRkXOxVqfnfqRSKtNHQIux__Enum param_0001418f, MethodInfo * method)); DO_APP_FUNC(0x0219F0E0, void, kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ_kLiYwZakvesizQTKwNeuXgSbcAnJ, (kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ * __this, int32_t param_00014190, Guid param_00014191, int32_t param_00014192, MethodInfo * method)); DO_APP_FUNC(0x0219F230, String *, kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ_LVmcPOeqeDbqbgLicgjuWNFJdAuo, (kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ * __this, MethodInfo * method)); DO_APP_FUNC(0x0219F510, bool, kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ_IPxIzDRSRdPphfeFncEoTAbRXhKJ_xMnHTvEjWQzscBBoZLxFJdfZBqLaA, (kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ_IPxIzDRSRdPphfeFncEoTAbRXhKJ * __this, kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ * param_00014193, kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ_SPZUnxjRkXOxVqfnfqRSKtNHQIux__Enum param_00014194, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFDE8, kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ_IPxIzDRSRdPphfeFncEoTAbRXhKJ_xMnHTvEjWQzscBBoZLxFJdfZBqLaA__MethodInfo); DO_APP_FUNC(0x0219F690, String *, kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ_IPxIzDRSRdPphfeFncEoTAbRXhKJ_LVmcPOeqeDbqbgLicgjuWNFJdAuo, (kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ_IPxIzDRSRdPphfeFncEoTAbRXhKJ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ_IPxIzDRSRdPphfeFncEoTAbRXhKJ__ctor, (kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ_IPxIzDRSRdPphfeFncEoTAbRXhKJ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FDB5B0, void, kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ_yMNTTgVWSRJwyOzISTeNjRuONyKF__ctor, (kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ_yMNTTgVWSRJwyOzISTeNjRuONyKF * __this, int32_t param_00014195, MethodInfo * method)); @@ -78949,6 +89981,7 @@ DO_APP_FUNC(0x003AE050, void, kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSH DO_APP_FUNC(0x0219FA20, bool, kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ_yMNTTgVWSRJwyOzISTeNjRuONyKF_MoveNext, (kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ_yMNTTgVWSRJwyOzISTeNjRuONyKF * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ_IPxIzDRSRdPphfeFncEoTAbRXhKJ *, kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ_yMNTTgVWSRJwyOzISTeNjRuONyKF_System_Collections_Generic_IEnumerator_Rewired_Windows_RawInputManager_JoystickRecords_Record__get_Current, (kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ_yMNTTgVWSRJwyOzISTeNjRuONyKF * __this, MethodInfo * method)); DO_APP_FUNC(0x0219FB50, void, kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ_yMNTTgVWSRJwyOzISTeNjRuONyKF_System_Collections_IEnumerator_Reset, (kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ_yMNTTgVWSRJwyOzISTeNjRuONyKF * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFDB8, kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ_yMNTTgVWSRJwyOzISTeNjRuONyKF_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ_yMNTTgVWSRJwyOzISTeNjRuONyKF_System_Collections_IEnumerator_get_Current, (kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ_yMNTTgVWSRJwyOzISTeNjRuONyKF * __this, MethodInfo * method)); DO_APP_FUNC(0x0219FBA0, IEnumerator_1_kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ_IPxIzDRSRdPphfeFncEoTAbRXhKJ_ *, kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ_yMNTTgVWSRJwyOzISTeNjRuONyKF_System_Collections_Generic_IEnumerable_Rewired_Windows_RawInputManager_JoystickRecords_Record__GetEnumerator, (kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ_yMNTTgVWSRJwyOzISTeNjRuONyKF * __this, MethodInfo * method)); DO_APP_FUNC(0x0219FD60, IEnumerator *, kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ_yMNTTgVWSRJwyOzISTeNjRuONyKF_System_Collections_IEnumerable_GetEnumerator, (kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ_yMNTTgVWSRJwyOzISTeNjRuONyKF * __this, MethodInfo * method)); @@ -78969,14 +90002,18 @@ DO_APP_FUNC(0x021A0980, void, JRmFfGvKMkHFhkxbaEUMFVGagwzEc_ZwGcNmFCpvNSKPmHmkfb DO_APP_FUNC(0x021A09E0, void, JRmFfGvKMkHFhkxbaEUMFVGagwzEc_lWqdSMeWewAncZjXoaqChwJgEpRt, (JRmFfGvKMkHFhkxbaEUMFVGagwzEc * __this, MethodInfo * method)); DO_APP_FUNC(0x021A0B40, void, JRmFfGvKMkHFhkxbaEUMFVGagwzEc_UEgeETCmBeQbSGaOoIVvmslDFalCb, (JRmFfGvKMkHFhkxbaEUMFVGagwzEc * __this, SRYVsvBnJRRIGpAZWqJVixPIiJrt param_0001419d, lNxFJILufgduJyEUwukEQTSTSOGU param_0001419e, uint32_t param_0001419f, void * param_000141a0, MethodInfo * method)); DO_APP_FUNC(0x021A0CA0, void, JRmFfGvKMkHFhkxbaEUMFVGagwzEc_wVqttrJgXqlltbfaVJbOMbcaflgt, (JRmFfGvKMkHFhkxbaEUMFVGagwzEc * __this, SRYVsvBnJRRIGpAZWqJVixPIiJrt param_000141a1, lNxFJILufgduJyEUwukEQTSTSOGU param_000141a2, uint32_t param_000141a3, void * param_000141a4, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFD08, JRmFfGvKMkHFhkxbaEUMFVGagwzEc_wVqttrJgXqlltbfaVJbOMbcaflgt__MethodInfo); DO_APP_FUNC(0x021A0CD0, void, JRmFfGvKMkHFhkxbaEUMFVGagwzEc_IVNkdnNlpSHldIEQNubMwusdWxEgA, (JRmFfGvKMkHFhkxbaEUMFVGagwzEc * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFD70, JRmFfGvKMkHFhkxbaEUMFVGagwzEc_IVNkdnNlpSHldIEQNubMwusdWxEgA__MethodInfo); DO_APP_FUNC(0x021A1010, void *, JRmFfGvKMkHFhkxbaEUMFVGagwzEc_khCeQMuaUPcHAhAHDqFeCCBqbEEv, (JRmFfGvKMkHFhkxbaEUMFVGagwzEc * __this, void * param_000141a5, uint32_t param_000141a6, void * param_000141a7, void * param_000141a8, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFD90, JRmFfGvKMkHFhkxbaEUMFVGagwzEc_khCeQMuaUPcHAhAHDqFeCCBqbEEv__MethodInfo); DO_APP_FUNC(0x021A11F0, void, JRmFfGvKMkHFhkxbaEUMFVGagwzEc_ouwTfAcYoAaLZDOncmZQZbWsgBDx_ZwGcNmFCpvNSKPmHmkfbWJhPMXCI, (void * param_000141a9, MethodInfo * method)); DO_APP_FUNC(0x021A1460, void, JRmFfGvKMkHFhkxbaEUMFVGagwzEc_ouwTfAcYoAaLZDOncmZQZbWsgBDx_lWqdSMeWewAncZjXoaqChwJgEpRt, (MethodInfo * method)); DO_APP_FUNC(0x021A1580, void *, JRmFfGvKMkHFhkxbaEUMFVGagwzEc_ouwTfAcYoAaLZDOncmZQZbWsgBDx_PSWUAhOLOZSyxMBuOcbJBgKjDWKGA, (void * param_000141aa, void * param_000141ab, int32_t param_000141ac, MethodInfo * method)); DO_APP_FUNC(0x021A1620, bool, JRmFfGvKMkHFhkxbaEUMFVGagwzEc_ouwTfAcYoAaLZDOncmZQZbWsgBDx_btIGSMhqgsnqoaDYiCqAZqIKPaFOA, (void * param_000141ad, MethodInfo * method)); DO_APP_FUNC(0x021A16A0, void, JRmFfGvKMkHFhkxbaEUMFVGagwzEc_ouwTfAcYoAaLZDOncmZQZbWsgBDx__cctor, (MethodInfo * method)); DO_APP_FUNC(0x021A1800, void, YmMTSUgHoMLuIFBEDUyyrVpljvtC__ctor, (YmMTSUgHoMLuIFBEDUyyrVpljvtC * __this, ConfigVars * param_000141ae, Func_2_Rewired_BridgedControllerHWInfo_Rewired_HardwareJoystickMap_InputManager_ * param_000141af, Func_1_Int32_ * param_000141b0, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFC98, YmMTSUgHoMLuIFBEDUyyrVpljvtC__ctor__MethodInfo); DO_APP_FUNC(0x021A2140, bool, YmMTSUgHoMLuIFBEDUyyrVpljvtC_Rewired_Interfaces_INativePlatformHelper_get_isApplicationFocused, (YmMTSUgHoMLuIFBEDUyyrVpljvtC * __this, MethodInfo * method)); DO_APP_FUNC(0x021A21D0, bool, YmMTSUgHoMLuIFBEDUyyrVpljvtC_YtCaDJKVxYyeWmwTCaHNGblHyTAbB, (YmMTSUgHoMLuIFBEDUyyrVpljvtC * __this, ConfigVars * param_000141b1, JRmFfGvKMkHFhkxbaEUMFVGagwzEc * param_000141b2, MethodInfo * method)); DO_APP_FUNC(0x021A2510, bool, YmMTSUgHoMLuIFBEDUyyrVpljvtC_aVbaiFExZZJJPjtMAWaRRFAASRwo, (YmMTSUgHoMLuIFBEDUyyrVpljvtC * __this, ConfigVars * param_000141b3, JRmFfGvKMkHFhkxbaEUMFVGagwzEc * param_000141b4, MethodInfo * method)); @@ -78997,10 +90034,15 @@ DO_APP_FUNC(0x003AE050, void, YmMTSUgHoMLuIFBEDUyyrVpljvtC_SetUnityJoystickId, ( DO_APP_FUNC(0x021A3510, IUnifiedMouseSource *, YmMTSUgHoMLuIFBEDUyyrVpljvtC_GetUnifiedMouseSource, (YmMTSUgHoMLuIFBEDUyyrVpljvtC * __this, MethodInfo * method)); DO_APP_FUNC(0x021A35D0, IUnifiedKeyboardSource *, YmMTSUgHoMLuIFBEDUyyrVpljvtC_GetUnifiedKeyboardSource, (YmMTSUgHoMLuIFBEDUyyrVpljvtC * __this, MethodInfo * method)); DO_APP_FUNC(0x021A3690, void, YmMTSUgHoMLuIFBEDUyyrVpljvtC_aYSkRAHeivMTfKaRZJPiQAosBKpKA, (YmMTSUgHoMLuIFBEDUyyrVpljvtC * __this, BridgedController * param_000141be, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFCB0, YmMTSUgHoMLuIFBEDUyyrVpljvtC_aYSkRAHeivMTfKaRZJPiQAosBKpKA__MethodInfo); DO_APP_FUNC(0x021A36E0, void, YmMTSUgHoMLuIFBEDUyyrVpljvtC_REDdwzOvFfeWHcsWJHLrwJPVoPig, (YmMTSUgHoMLuIFBEDUyyrVpljvtC * __this, ControllerDisconnectedEventArgs * param_000141bf, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFC38, YmMTSUgHoMLuIFBEDUyyrVpljvtC_REDdwzOvFfeWHcsWJHLrwJPVoPig__MethodInfo); DO_APP_FUNC(0x021A3820, void, YmMTSUgHoMLuIFBEDUyyrVpljvtC_mRNkVdmRQZlXvbdcbkqMpXVYoSVM, (YmMTSUgHoMLuIFBEDUyyrVpljvtC * __this, EventArgs * param_000141c0, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFCA8, YmMTSUgHoMLuIFBEDUyyrVpljvtC_mRNkVdmRQZlXvbdcbkqMpXVYoSVM__MethodInfo); DO_APP_FUNC(0x021A38E0, void, YmMTSUgHoMLuIFBEDUyyrVpljvtC_mkmxKVszUSFcXRKOVItoyQkmrXYu, (YmMTSUgHoMLuIFBEDUyyrVpljvtC * __this, EventArgs * param_000141c1, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFCC8, YmMTSUgHoMLuIFBEDUyyrVpljvtC_mkmxKVszUSFcXRKOVItoyQkmrXYu__MethodInfo); DO_APP_FUNC(0x021A39A0, void, YmMTSUgHoMLuIFBEDUyyrVpljvtC_HNIJNNAZKqvHoeeKmnYDNRUedpTk, (YmMTSUgHoMLuIFBEDUyyrVpljvtC * __this, UpdateControllerInfoEventArgs * param_000141c2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFC40, YmMTSUgHoMLuIFBEDUyyrVpljvtC_HNIJNNAZKqvHoeeKmnYDNRUedpTk__MethodInfo); DO_APP_FUNC(0x021A3CD0, int32_t, YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb_dxKxxgJXEGaJNCaeNhJnGBeGGvNmA, (YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb * __this, MethodInfo * method)); DO_APP_FUNC(0x021A3D20, void, YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb__ctor, (YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb * __this, MethodInfo * method)); DO_APP_FUNC(0x021A3E70, void, YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb_qLmDyPienMPoYinjKMQnBypxoWZhb, (YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb * __this, BridgedController * param_000141c3, MethodInfo * method)); @@ -79009,6 +90051,7 @@ DO_APP_FUNC(0x021A4370, void, YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtL DO_APP_FUNC(0x021A44D0, int32_t, YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb_rOoROfneBnmQIAKzxVaJeCMBZXph, (YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb * __this, int32_t param_000141c7, YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb_EKfkoLoGgXknENWLwighugQitgow__Enum param_000141c8, MethodInfo * method)); DO_APP_FUNC(0x021A45F0, int32_t, YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb_rOoROfneBnmQIAKzxVaJeCMBZXph_1, (YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb * __this, int32_t param_000141c9, InputSource__Enum param_000141ca, YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb_EKfkoLoGgXknENWLwighugQitgow__Enum param_000141cb, MethodInfo * method)); DO_APP_FUNC(0x021A4780, YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb_SxQKkEUxNlQSoOOtKCyqVTcGKDkL, YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb_pNRkTOIVXfTwQUQDjOjRUAjbKrzJ, (YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb * __this, int32_t param_000141cc, YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb_EKfkoLoGgXknENWLwighugQitgow__Enum param_000141cd, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFB30, YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb_pNRkTOIVXfTwQUQDjOjRUAjbKrzJ__MethodInfo); DO_APP_FUNC(0x021A4920, int32_t, YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb_AXjepXSzFdPcKHAwUTjQPLPqRIix, (YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb * __this, int32_t param_000141ce, InputSource__Enum param_000141cf, YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb_EKfkoLoGgXknENWLwighugQitgow__Enum param_000141d0, MethodInfo * method)); DO_APP_FUNC(0x021A4A00, int32_t, YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb_ertESNEnydnhhJBwEBTfdXsJtrUz, (YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb * __this, int32_t param_000141d1, MethodInfo * method)); DO_APP_FUNC(0x021A4AC0, int32_t, YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb_ertESNEnydnhhJBwEBTfdXsJtrUz_1, (YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb * __this, MethodInfo * method)); @@ -79016,7 +90059,8 @@ DO_APP_FUNC(0x01A495D0, void, YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtL DO_APP_FUNC(0x003BCD80, void, YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb_TKPMPusWChpubsSueSSSVXEvmtou_zRKKKxhkoOArpcmrZNscrEthKMVOA, (YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb_TKPMPusWChpubsSueSSSVXEvmtou * __this, int32_t param_000141d6, MethodInfo * method)); DO_APP_FUNC(0x021A4B70, YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb_SxQKkEUxNlQSoOOtKCyqVTcGKDkL, YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb_TKPMPusWChpubsSueSSSVXEvmtou_pNRkTOIVXfTwQUQDjOjRUAjbKrzJ, (YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb_TKPMPusWChpubsSueSSSVXEvmtou * __this, MethodInfo * method)); DO_APP_FUNC(0x021A4B90, int32_t, YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb_TKPMPusWChpubsSueSSSVXEvmtou_HLyQRrDdtZhufHDqPlsNpQaZsaCp, (YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb_TKPMPusWChpubsSueSSSVXEvmtou * param_000141d7, YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb_TKPMPusWChpubsSueSSSVXEvmtou * param_000141d8, MethodInfo * method)); -DO_APP_FUNC(0x00977060, void, YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb_SxQKkEUxNlQSoOOtKCyqVTcGKDkL__ctor, (YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb_SxQKkEUxNlQSoOOtKCyqVTcGKDkL__Boxed * __this, int32_t param_000141d9, int32_t param_000141da, InputSource__Enum param_000141db, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFB80, YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb_TKPMPusWChpubsSueSSSVXEvmtou_HLyQRrDdtZhufHDqPlsNpQaZsaCp__MethodInfo); +DO_APP_FUNC(0x00977060, void, YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb_SxQKkEUxNlQSoOOtKCyqVTcGKDkL__ctor, (YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb_SxQKkEUxNlQSoOOtKCyqVTcGKDkL * __this, int32_t param_000141d9, int32_t param_000141da, InputSource__Enum param_000141db, MethodInfo * method)); DO_APP_FUNC(0x00A5E870, void, YmMTSUgHoMLuIFBEDUyyrVpljvtC_IWZUnbwNuyxPFlXGOpEKcHdUoINd__ctor, (YmMTSUgHoMLuIFBEDUyyrVpljvtC_IWZUnbwNuyxPFlXGOpEKcHdUoINd * __this, IInputManagerJoystickPublic * param_000141dc, int32_t param_000141dd, MethodInfo * method)); DO_APP_FUNC(0x021A4BD0, int32_t, YmMTSUgHoMLuIFBEDUyyrVpljvtC_IWZUnbwNuyxPFlXGOpEKcHdUoINd_get_rewiredId, (YmMTSUgHoMLuIFBEDUyyrVpljvtC_IWZUnbwNuyxPFlXGOpEKcHdUoINd * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, YmMTSUgHoMLuIFBEDUyyrVpljvtC_IWZUnbwNuyxPFlXGOpEKcHdUoINd_get_inputManagerId, (YmMTSUgHoMLuIFBEDUyyrVpljvtC_IWZUnbwNuyxPFlXGOpEKcHdUoINd * __this, MethodInfo * method)); @@ -79030,7 +90074,9 @@ DO_APP_FUNC(0x021A4E50, void, YmMTSUgHoMLuIFBEDUyyrVpljvtC_IWZUnbwNuyxPFlXGOpEKc DO_APP_FUNC(0x021A4EC0, void, YmMTSUgHoMLuIFBEDUyyrVpljvtC_IWZUnbwNuyxPFlXGOpEKcHdUoINd_StopVibration, (YmMTSUgHoMLuIFBEDUyyrVpljvtC_IWZUnbwNuyxPFlXGOpEKcHdUoINd * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, YmMTSUgHoMLuIFBEDUyyrVpljvtC_ZmVAsXJBxkgbDiCwTwrQpoWELVge__ctor, (YmMTSUgHoMLuIFBEDUyyrVpljvtC_ZmVAsXJBxkgbDiCwTwrQpoWELVge * __this, MethodInfo * method)); DO_APP_FUNC(0x021A4F10, int32_t, YmMTSUgHoMLuIFBEDUyyrVpljvtC_ZmVAsXJBxkgbDiCwTwrQpoWELVge_ACohKtgeTYMJvBkUhoBBfzPcpkhdC, (YmMTSUgHoMLuIFBEDUyyrVpljvtC_ZmVAsXJBxkgbDiCwTwrQpoWELVge * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFBE0, YmMTSUgHoMLuIFBEDUyyrVpljvtC_ZmVAsXJBxkgbDiCwTwrQpoWELVge_ACohKtgeTYMJvBkUhoBBfzPcpkhdC__MethodInfo); DO_APP_FUNC(0x021A4F20, void, XWKLBhMJByLmRjCmXYTJulYaPqwJ__ctor, (XWKLBhMJByLmRjCmXYTJulYaPqwJ * __this, bool param_000141e0, UpdateLoopSetting__Enum param_000141e1, Func_2_Rewired_BridgedControllerHWInfo_Rewired_HardwareJoystickMap_InputManager_ * param_000141e2, Func_1_Int32_ * param_000141e3, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFB40, XWKLBhMJByLmRjCmXYTJulYaPqwJ__ctor__MethodInfo); DO_APP_FUNC(0x021A59E0, int32_t, XWKLBhMJByLmRjCmXYTJulYaPqwJ_get_deviceCount, (XWKLBhMJByLmRjCmXYTJulYaPqwJ * __this, MethodInfo * method)); DO_APP_FUNC(0x00A1B820, PlatformInputManager *, XWKLBhMJByLmRjCmXYTJulYaPqwJ_get_primaryInputManager, (XWKLBhMJByLmRjCmXYTJulYaPqwJ * __this, MethodInfo * method)); DO_APP_FUNC(0x003CB690, IInputSource *, XWKLBhMJByLmRjCmXYTJulYaPqwJ_get_inputSource, (XWKLBhMJByLmRjCmXYTJulYaPqwJ * __this, MethodInfo * method)); @@ -79053,6 +90099,7 @@ DO_APP_FUNC(0x021A6740, void, XWKLBhMJByLmRjCmXYTJulYaPqwJ_ORYGjDSFYcKIqqXzPmTzu DO_APP_FUNC(0x021A69D0, void, XWKLBhMJByLmRjCmXYTJulYaPqwJ_iYcSLcQAPsGgEHZVWFtcndNQTktBA, (XWKLBhMJByLmRjCmXYTJulYaPqwJ * __this, MethodInfo * method)); DO_APP_FUNC(0x021A6A50, void, XWKLBhMJByLmRjCmXYTJulYaPqwJ_pYQEphjEmpbkilgPRKyaNakvjcUs, (XWKLBhMJByLmRjCmXYTJulYaPqwJ * __this, MethodInfo * method)); DO_APP_FUNC(0x021A6C60, bool, XWKLBhMJByLmRjCmXYTJulYaPqwJ_TPnXeqhkHxttxhRxksAZeEKqKWwP, (XWKLBhMJByLmRjCmXYTJulYaPqwJ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFB58, XWKLBhMJByLmRjCmXYTJulYaPqwJ_TPnXeqhkHxttxhRxksAZeEKqKWwP__MethodInfo); DO_APP_FUNC(0x021A6E20, Boolean__Array *, XWKLBhMJByLmRjCmXYTJulYaPqwJ_HQqGqUhkAhYkpJlLiMstDtUcHMRwb, (XWKLBhMJByLmRjCmXYTJulYaPqwJ * __this, MethodInfo * method)); DO_APP_FUNC(0x021A6EF0, void, XWKLBhMJByLmRjCmXYTJulYaPqwJ_vPnldiJRcZpNhWLPniUyaasfoXuh, (XWKLBhMJByLmRjCmXYTJulYaPqwJ * __this, Boolean__Array * param_000141ea, MethodInfo * method)); DO_APP_FUNC(0x021A7120, bool, XWKLBhMJByLmRjCmXYTJulYaPqwJ_WWoDgPEAPgTZWAZsRxRnBIOlkxpyA, (XWKLBhMJByLmRjCmXYTJulYaPqwJ * __this, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kKVyOYAdtYJrZyUqtCeuyKpidgaN * param_000141eb, bool param_000141ec, MethodInfo * method)); @@ -79081,6 +90128,7 @@ DO_APP_FUNC(0x00936150, void, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kKVyOYAdtYJrZyUqtCeuy DO_APP_FUNC(0x021A8BF0, void, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kKVyOYAdtYJrZyUqtCeuyKpidgaN_JyKApZFqgMxicmBVyllCbsEvPMujA, (XWKLBhMJByLmRjCmXYTJulYaPqwJ_kKVyOYAdtYJrZyUqtCeuyKpidgaN * __this, MethodInfo * method)); DO_APP_FUNC(0x021A8C80, void, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kKVyOYAdtYJrZyUqtCeuyKpidgaN_ulzsUPgORhZfPokUrbJhCtBoeKpd, (XWKLBhMJByLmRjCmXYTJulYaPqwJ_kKVyOYAdtYJrZyUqtCeuyKpidgaN * __this, MethodInfo * method)); DO_APP_FUNC(0x021A8CF0, void, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kKVyOYAdtYJrZyUqtCeuyKpidgaN_FillData, (XWKLBhMJByLmRjCmXYTJulYaPqwJ_kKVyOYAdtYJrZyUqtCeuyKpidgaN * __this, ControllerDataUpdater * dataUpdater, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFAC8, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kKVyOYAdtYJrZyUqtCeuyKpidgaN_FillData__MethodInfo); DO_APP_FUNC(0x021A8E30, BridgedControllerHWInfo *, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kKVyOYAdtYJrZyUqtCeuyKpidgaN_yMGiTySicmPQxCrMjmtihGllAkSc, (XWKLBhMJByLmRjCmXYTJulYaPqwJ_kKVyOYAdtYJrZyUqtCeuyKpidgaN * __this, MethodInfo * method)); DO_APP_FUNC(0x021A8EA0, BridgedController *, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kKVyOYAdtYJrZyUqtCeuyKpidgaN_ToBridgedController, (XWKLBhMJByLmRjCmXYTJulYaPqwJ_kKVyOYAdtYJrZyUqtCeuyKpidgaN * __this, MethodInfo * method)); DO_APP_FUNC(0x021A8F10, ControllerDisconnectedEventArgs *, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kKVyOYAdtYJrZyUqtCeuyKpidgaN_ToControllerDisconnectedEventArgs, (XWKLBhMJByLmRjCmXYTJulYaPqwJ_kKVyOYAdtYJrZyUqtCeuyKpidgaN * __this, MethodInfo * method)); @@ -79088,11 +90136,13 @@ DO_APP_FUNC(0x021A8FB0, void, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kKVyOYAdtYJrZyUqtCeuy DO_APP_FUNC(0x021A9520, bool, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kKVyOYAdtYJrZyUqtCeuyKpidgaN_MPxEuCONnkfrXuTMztvvTiBpsMOx, (XWKLBhMJByLmRjCmXYTJulYaPqwJ_kKVyOYAdtYJrZyUqtCeuyKpidgaN * __this, MethodInfo * method)); DO_APP_FUNC(0x0077BE20, void, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kKVyOYAdtYJrZyUqtCeuyKpidgaN_ibbPTzrCvanFfMHPHzYIVUAqPeGu, (XWKLBhMJByLmRjCmXYTJulYaPqwJ_kKVyOYAdtYJrZyUqtCeuyKpidgaN * __this, MethodInfo * method)); DO_APP_FUNC(0x021A9580, void, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kKVyOYAdtYJrZyUqtCeuyKpidgaN_JCZyCeTDvzczXuxnqcCGplRQAooX, (XWKLBhMJByLmRjCmXYTJulYaPqwJ_kKVyOYAdtYJrZyUqtCeuyKpidgaN * __this, MethodInfo * method)); -DO_APP_FUNC(0x021A95D0, void, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kKVyOYAdtYJrZyUqtCeuyKpidgaN_bREaCmyldYGFJfUUZzKzraPGSMtN, (XWKLBhMJByLmRjCmXYTJulYaPqwJ_kKVyOYAdtYJrZyUqtCeuyKpidgaN * __this, Boolean__Array * param_000141fe, HmAcNXaDOwcBaXnHmUCisFjFgxag param_000141ff, MethodInfo * method)); -DO_APP_FUNC(0x021A99F0, void, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kKVyOYAdtYJrZyUqtCeuyKpidgaN_OigKfWVDKSJyYsIOrKMbobMHUegc, (XWKLBhMJByLmRjCmXYTJulYaPqwJ_kKVyOYAdtYJrZyUqtCeuyKpidgaN * __this, Boolean__Array * param_00014200, HmAcNXaDOwcBaXnHmUCisFjFgxag param_00014201, MethodInfo * method)); -DO_APP_FUNC(0x021A9E50, float, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kKVyOYAdtYJrZyUqtCeuyKpidgaN_llRJkCMrCfgBMwkiUoMjwPMOqdgh, (XWKLBhMJByLmRjCmXYTJulYaPqwJ_kKVyOYAdtYJrZyUqtCeuyKpidgaN * __this, HardwareJoystickMap_Platform_XInput_Base_Axis * param_00014202, Boolean__Array * param_00014203, HmAcNXaDOwcBaXnHmUCisFjFgxag param_00014204, MethodInfo * method)); -DO_APP_FUNC(0x021AA0D0, float, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kKVyOYAdtYJrZyUqtCeuyKpidgaN_llRJkCMrCfgBMwkiUoMjwPMOqdgh_1, (XWKLBhMJByLmRjCmXYTJulYaPqwJ_kKVyOYAdtYJrZyUqtCeuyKpidgaN * __this, XInputAxis__Enum param_00014205, HmAcNXaDOwcBaXnHmUCisFjFgxag param_00014206, MethodInfo * method)); -DO_APP_FUNC(0x021AA180, bool, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kKVyOYAdtYJrZyUqtCeuyKpidgaN_FiMGdLgwnQkuAJmdoeKwRJXajcdpA, (XWKLBhMJByLmRjCmXYTJulYaPqwJ_kKVyOYAdtYJrZyUqtCeuyKpidgaN * __this, HardwareJoystickMap_Platform_XInput_Base_Button * param_00014207, Boolean__Array * param_00014208, HmAcNXaDOwcBaXnHmUCisFjFgxag param_00014209, MethodInfo * method)); +DO_APP_FUNC(0x021A95D0, void, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kKVyOYAdtYJrZyUqtCeuyKpidgaN_bREaCmyldYGFJfUUZzKzraPGSMtN, (XWKLBhMJByLmRjCmXYTJulYaPqwJ_kKVyOYAdtYJrZyUqtCeuyKpidgaN * __this, Boolean__Array * param_000141fe, HmAcNXaDOwcBaXnHmUCisFjFgxag * param_000141ff, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFAB8, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kKVyOYAdtYJrZyUqtCeuyKpidgaN_bREaCmyldYGFJfUUZzKzraPGSMtN__MethodInfo); +DO_APP_FUNC(0x021A99F0, void, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kKVyOYAdtYJrZyUqtCeuyKpidgaN_OigKfWVDKSJyYsIOrKMbobMHUegc, (XWKLBhMJByLmRjCmXYTJulYaPqwJ_kKVyOYAdtYJrZyUqtCeuyKpidgaN * __this, Boolean__Array * param_00014200, HmAcNXaDOwcBaXnHmUCisFjFgxag * param_00014201, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFA60, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kKVyOYAdtYJrZyUqtCeuyKpidgaN_OigKfWVDKSJyYsIOrKMbobMHUegc__MethodInfo); +DO_APP_FUNC(0x021A9E50, float, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kKVyOYAdtYJrZyUqtCeuyKpidgaN_llRJkCMrCfgBMwkiUoMjwPMOqdgh, (XWKLBhMJByLmRjCmXYTJulYaPqwJ_kKVyOYAdtYJrZyUqtCeuyKpidgaN * __this, HardwareJoystickMap_Platform_XInput_Base_Axis * param_00014202, Boolean__Array * param_00014203, HmAcNXaDOwcBaXnHmUCisFjFgxag * param_00014204, MethodInfo * method)); +DO_APP_FUNC(0x021AA0D0, float, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kKVyOYAdtYJrZyUqtCeuyKpidgaN_llRJkCMrCfgBMwkiUoMjwPMOqdgh_1, (XWKLBhMJByLmRjCmXYTJulYaPqwJ_kKVyOYAdtYJrZyUqtCeuyKpidgaN * __this, XInputAxis__Enum param_00014205, HmAcNXaDOwcBaXnHmUCisFjFgxag * param_00014206, MethodInfo * method)); +DO_APP_FUNC(0x021AA180, bool, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kKVyOYAdtYJrZyUqtCeuyKpidgaN_FiMGdLgwnQkuAJmdoeKwRJXajcdpA, (XWKLBhMJByLmRjCmXYTJulYaPqwJ_kKVyOYAdtYJrZyUqtCeuyKpidgaN * __this, HardwareJoystickMap_Platform_XInput_Base_Button * param_00014207, Boolean__Array * param_00014208, HmAcNXaDOwcBaXnHmUCisFjFgxag * param_00014209, MethodInfo * method)); DO_APP_FUNC(0x021AA4C0, bool, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kKVyOYAdtYJrZyUqtCeuyKpidgaN_FiMGdLgwnQkuAJmdoeKwRJXajcdpA_1, (XWKLBhMJByLmRjCmXYTJulYaPqwJ_kKVyOYAdtYJrZyUqtCeuyKpidgaN * __this, XInputButton__Enum param_0001420a, Boolean__Array * param_0001420b, MethodInfo * method)); DO_APP_FUNC(0x021AA700, void, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kKVyOYAdtYJrZyUqtCeuyKpidgaN_aTDeeMxviQqftWWeVrsNCPkIDzWf, (XWKLBhMJByLmRjCmXYTJulYaPqwJ_kKVyOYAdtYJrZyUqtCeuyKpidgaN * __this, MethodInfo * method)); DO_APP_FUNC(0x021AA840, String *, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kKVyOYAdtYJrZyUqtCeuyKpidgaN_qgMCCVkQzVPumECHTPQrjyzrNcBmA, (XWKLBhMJByLmRjCmXYTJulYaPqwJ_kKVyOYAdtYJrZyUqtCeuyKpidgaN * __this, MethodInfo * method)); @@ -79107,6 +90157,7 @@ DO_APP_FUNC(0x021AB4A0, void, XWKLBhMJByLmRjCmXYTJulYaPqwJ_YaWBSOGSSrYuejjxIPgOg DO_APP_FUNC(0x021AB560, int32_t, XWKLBhMJByLmRjCmXYTJulYaPqwJ_YaWBSOGSSrYuejjxIPgOgikwrUfr_CcVhrFhhmOSXiTqwSdMldyoGUUtwA, (XWKLBhMJByLmRjCmXYTJulYaPqwJ_YaWBSOGSSrYuejjxIPgOgikwrUfr * __this, XInputDeviceSubType__Enum param_00014214, bool param_00014215, MethodInfo * method)); DO_APP_FUNC(0x021AB640, int32_t, XWKLBhMJByLmRjCmXYTJulYaPqwJ_YaWBSOGSSrYuejjxIPgOgikwrUfr_rOoROfneBnmQIAKzxVaJeCMBZXph, (XWKLBhMJByLmRjCmXYTJulYaPqwJ_YaWBSOGSSrYuejjxIPgOgikwrUfr * __this, int32_t param_00014216, XInputDeviceSubType__Enum param_00014217, bool param_00014218, MethodInfo * method)); DO_APP_FUNC(0x021AB740, int32_t, XWKLBhMJByLmRjCmXYTJulYaPqwJ_YaWBSOGSSrYuejjxIPgOgikwrUfr_hsUeTrsoxSDvXjCrXDbyZzJOJHrU, (XWKLBhMJByLmRjCmXYTJulYaPqwJ_YaWBSOGSSrYuejjxIPgOgikwrUfr * __this, int32_t param_00014219, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFA68, XWKLBhMJByLmRjCmXYTJulYaPqwJ_YaWBSOGSSrYuejjxIPgOgikwrUfr_hsUeTrsoxSDvXjCrXDbyZzJOJHrU__MethodInfo); DO_APP_FUNC(0x021AB820, void, XWKLBhMJByLmRjCmXYTJulYaPqwJ_YaWBSOGSSrYuejjxIPgOgikwrUfr_UsIeSxSmOWGiZNWvmGspmMWOYXtc, (XWKLBhMJByLmRjCmXYTJulYaPqwJ_YaWBSOGSSrYuejjxIPgOgikwrUfr * __this, int32_t param_0001421a, bool param_0001421b, MethodInfo * method)); DO_APP_FUNC(0x021AB8C0, void, XWKLBhMJByLmRjCmXYTJulYaPqwJ_YaWBSOGSSrYuejjxIPgOgikwrUfr_LlnZLsKOkGcztEBJUXEELsmJjENbA_zRKKKxhkoOArpcmrZNscrEthKMVOA, (XWKLBhMJByLmRjCmXYTJulYaPqwJ_YaWBSOGSSrYuejjxIPgOgikwrUfr_LlnZLsKOkGcztEBJUXEELsmJjENbA * __this, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kKVyOYAdtYJrZyUqtCeuyKpidgaN * param_0001421c, bool param_0001421d, MethodInfo * method)); DO_APP_FUNC(0x01F2B160, void, XWKLBhMJByLmRjCmXYTJulYaPqwJ_YaWBSOGSSrYuejjxIPgOgikwrUfr_LlnZLsKOkGcztEBJUXEELsmJjENbA__ctor, (XWKLBhMJByLmRjCmXYTJulYaPqwJ_YaWBSOGSSrYuejjxIPgOgikwrUfr_LlnZLsKOkGcztEBJUXEELsmJjENbA * __this, int32_t param_0001421e, XInputDeviceSubType__Enum param_0001421f, MethodInfo * method)); @@ -79120,19 +90171,22 @@ DO_APP_FUNC(0x021ABFC0, void, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kHnKKSzKKDvrCOIKypwsc DO_APP_FUNC(0x021AC0A0, void, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kHnKKSzKKDvrCOIKypwscWAsAlpt_xjmMhxeOlBkrfCnHxekXCQVArthv, (XWKLBhMJByLmRjCmXYTJulYaPqwJ_kHnKKSzKKDvrCOIKypwscWAsAlpt * __this, MethodInfo * method)); DO_APP_FUNC(0x021AC0F0, void, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kHnKKSzKKDvrCOIKypwscWAsAlpt_IgdwwTfmhXhMNXaVydsaEsQSKNzb, (XWKLBhMJByLmRjCmXYTJulYaPqwJ_kHnKKSzKKDvrCOIKypwscWAsAlpt * __this, MethodInfo * method)); DO_APP_FUNC(0x021AC100, bool, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kHnKKSzKKDvrCOIKypwscWAsAlpt_wHLkhsPZVpElKLVEmHuuXnbZMbYl, (XWKLBhMJByLmRjCmXYTJulYaPqwJ_kHnKKSzKKDvrCOIKypwscWAsAlpt * __this, XWKLBhMJByLmRjCmXYTJulYaPqwJ_hstLDqXBgWFMOdvqNBSIsUgLtrrOA__Enum param_00014223, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFA20, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kHnKKSzKKDvrCOIKypwscWAsAlpt_wHLkhsPZVpElKLVEmHuuXnbZMbYl__MethodInfo); DO_APP_FUNC(0x021AC1A0, void, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kHnKKSzKKDvrCOIKypwscWAsAlpt_FCzQNTpXGUcHzmjQHbDDjsbmyLbB, (XWKLBhMJByLmRjCmXYTJulYaPqwJ_kHnKKSzKKDvrCOIKypwscWAsAlpt * __this, float param_00014224, int32_t param_00014225, MethodInfo * method)); DO_APP_FUNC(0x021AC220, void, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kHnKKSzKKDvrCOIKypwscWAsAlpt_KGVewDgIhCzFRcFUSGnsjYdGgeFob, (XWKLBhMJByLmRjCmXYTJulYaPqwJ_kHnKKSzKKDvrCOIKypwscWAsAlpt * __this, MethodInfo * method)); DO_APP_FUNC(0x021AC230, void, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kHnKKSzKKDvrCOIKypwscWAsAlpt_nWHgRcQPqLbpdPSpkSWQxtdxOVuk, (XWKLBhMJByLmRjCmXYTJulYaPqwJ_kHnKKSzKKDvrCOIKypwscWAsAlpt * __this, MethodInfo * method)); DO_APP_FUNC(0x021AC410, void, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kHnKKSzKKDvrCOIKypwscWAsAlpt_kskvZNVHiQmWKUbFJUDnXxSksqwm, (XWKLBhMJByLmRjCmXYTJulYaPqwJ_kHnKKSzKKDvrCOIKypwscWAsAlpt * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFAE8, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kHnKKSzKKDvrCOIKypwscWAsAlpt_kskvZNVHiQmWKUbFJUDnXxSksqwm__MethodInfo); DO_APP_FUNC(0x021AC900, void, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kHnKKSzKKDvrCOIKypwscWAsAlpt_PIlATWHpyrSVYOFZhMypFbpFxHGbb, (XWKLBhMJByLmRjCmXYTJulYaPqwJ_kHnKKSzKKDvrCOIKypwscWAsAlpt * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFB00, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kHnKKSzKKDvrCOIKypwscWAsAlpt_PIlATWHpyrSVYOFZhMypFbpFxHGbb__MethodInfo); DO_APP_FUNC(0x021ACCA0, void, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kHnKKSzKKDvrCOIKypwscWAsAlpt_OLnrSaDjYHwnoQdHiHpefsYsMjrL, (XWKLBhMJByLmRjCmXYTJulYaPqwJ_kHnKKSzKKDvrCOIKypwscWAsAlpt * __this, MethodInfo * method)); DO_APP_FUNC(0x021ACCA0, void, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kHnKKSzKKDvrCOIKypwscWAsAlpt_vqPvwcMbfiZISYisXZOXpgcnjseK, (XWKLBhMJByLmRjCmXYTJulYaPqwJ_kHnKKSzKKDvrCOIKypwscWAsAlpt * __this, MethodInfo * method)); DO_APP_FUNC(0x021ACD40, void, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kHnKKSzKKDvrCOIKypwscWAsAlpt_FEWaaICqYydPoDlfVAEKhXOLkuQU, (XWKLBhMJByLmRjCmXYTJulYaPqwJ_kHnKKSzKKDvrCOIKypwscWAsAlpt * __this, MethodInfo * method)); -DO_APP_FUNC(0x021ACEA0, void, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kHnKKSzKKDvrCOIKypwscWAsAlpt_ArPJPMtiNjHgTskojhKjCOtuwBcY, (RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * param_00014226, BdACSJchhOOtndVeqHEImuFxBOOY * param_00014227, double param_00014228, MethodInfo * method)); -DO_APP_FUNC(0x021AD000, void, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kHnKKSzKKDvrCOIKypwscWAsAlpt_yTuAPMzRjiCEhaADbQGycjffLUPLA, (BdACSJchhOOtndVeqHEImuFxBOOY * param_00014229, aQHgSHeigtcamfIWbNaiXaCiVwuq param_0001422a, double param_0001422b, MethodInfo * method)); -DO_APP_FUNC(0x021AD090, void, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kHnKKSzKKDvrCOIKypwscWAsAlpt_psQQgGrHzxCRckASZklJiYNyqcss, (XWKLBhMJByLmRjCmXYTJulYaPqwJ_kHnKKSzKKDvrCOIKypwscWAsAlpt * __this, HmAcNXaDOwcBaXnHmUCisFjFgxag param_0001422c, MethodInfo * method)); -DO_APP_FUNC(0x021AD290, void, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kHnKKSzKKDvrCOIKypwscWAsAlpt_glJkWqotYdPJEfSSoBcEEWwNpsPRA, (XWKLBhMJByLmRjCmXYTJulYaPqwJ_kHnKKSzKKDvrCOIKypwscWAsAlpt * __this, HmAcNXaDOwcBaXnHmUCisFjFgxag param_0001422d, double param_0001422e, LowLevelInputEvent param_0001422f, MethodInfo * method)); -DO_APP_FUNC(0x021AD390, void, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kHnKKSzKKDvrCOIKypwscWAsAlpt_JCxbDAersjEBRkebuEEGyGduItnF, (XWKLBhMJByLmRjCmXYTJulYaPqwJ_kHnKKSzKKDvrCOIKypwscWAsAlpt * __this, HmAcNXaDOwcBaXnHmUCisFjFgxag param_00014230, LowLevelInputEvent param_00014231, MethodInfo * method)); +DO_APP_FUNC(0x021ACEA0, void, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kHnKKSzKKDvrCOIKypwscWAsAlpt_ArPJPMtiNjHgTskojhKjCOtuwBcY, (RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * param_00014226, BdACSJchhOOtndVeqHEImuFxBOOY * param_00014227, double * param_00014228, MethodInfo * method)); +DO_APP_FUNC(0x021AD000, void, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kHnKKSzKKDvrCOIKypwscWAsAlpt_yTuAPMzRjiCEhaADbQGycjffLUPLA, (BdACSJchhOOtndVeqHEImuFxBOOY * param_00014229, aQHgSHeigtcamfIWbNaiXaCiVwuq param_0001422a, double * param_0001422b, MethodInfo * method)); +DO_APP_FUNC(0x021AD090, void, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kHnKKSzKKDvrCOIKypwscWAsAlpt_psQQgGrHzxCRckASZklJiYNyqcss, (XWKLBhMJByLmRjCmXYTJulYaPqwJ_kHnKKSzKKDvrCOIKypwscWAsAlpt * __this, HmAcNXaDOwcBaXnHmUCisFjFgxag * param_0001422c, MethodInfo * method)); +DO_APP_FUNC(0x021AD290, void, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kHnKKSzKKDvrCOIKypwscWAsAlpt_glJkWqotYdPJEfSSoBcEEWwNpsPRA, (XWKLBhMJByLmRjCmXYTJulYaPqwJ_kHnKKSzKKDvrCOIKypwscWAsAlpt * __this, HmAcNXaDOwcBaXnHmUCisFjFgxag * param_0001422d, double param_0001422e, LowLevelInputEvent param_0001422f, MethodInfo * method)); +DO_APP_FUNC(0x021AD390, void, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kHnKKSzKKDvrCOIKypwscWAsAlpt_JCxbDAersjEBRkebuEEGyGduItnF, (XWKLBhMJByLmRjCmXYTJulYaPqwJ_kHnKKSzKKDvrCOIKypwscWAsAlpt * __this, HmAcNXaDOwcBaXnHmUCisFjFgxag * param_00014230, LowLevelInputEvent * param_00014231, MethodInfo * method)); DO_APP_FUNC(0x021AD4A0, bool, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kHnKKSzKKDvrCOIKypwscWAsAlpt_FiMGdLgwnQkuAJmdoeKwRJXajcdpA, (int32_t param_00014232, int32_t param_00014233, MethodInfo * method)); DO_APP_FUNC(0x021AD4C0, void, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kHnKKSzKKDvrCOIKypwscWAsAlpt_rUVOngknMKdaVcBZRsgOUAyzJBnjA, (XWKLBhMJByLmRjCmXYTJulYaPqwJ_kHnKKSzKKDvrCOIKypwscWAsAlpt * __this, MethodInfo * method)); DO_APP_FUNC(0x021AD5B0, void, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kHnKKSzKKDvrCOIKypwscWAsAlpt_Dispose, (XWKLBhMJByLmRjCmXYTJulYaPqwJ_kHnKKSzKKDvrCOIKypwscWAsAlpt * __this, MethodInfo * method)); @@ -79141,20 +90195,20 @@ DO_APP_FUNC(0x021AD620, void, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kHnKKSzKKDvrCOIKypwsc DO_APP_FUNC(0x021AD660, float, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kHnKKSzKKDvrCOIKypwscWAsAlpt_WBTydUTpGhZAhZjalHMpfRTNIiaf, (int32_t param_00014235, MethodInfo * method)); DO_APP_FUNC(0x021AD6D0, float, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kHnKKSzKKDvrCOIKypwscWAsAlpt_PKpuDaOCCcyYpOjikTevcBEfEoQR, (int32_t param_00014236, MethodInfo * method)); DO_APP_FUNC(0x021AD740, bool, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kHnKKSzKKDvrCOIKypwscWAsAlpt_mrfzTpBfszsjUHmbMSSPKkBbDRdBA, (HmAcNXaDOwcBaXnHmUCisFjFgxag param_00014237, HmAcNXaDOwcBaXnHmUCisFjFgxag param_00014238, MethodInfo * method)); -DO_APP_FUNC(0x021AD790, void *, bcOmlpGgwVCrecHKRjwdQzyizLQGA_gLDuyHGNDfTNiCodQCvBgWCPEKlN, (bcOmlpGgwVCrecHKRjwdQzyizLQGA_zqrMMRRVlnxYQKhlRpOFkRpFWHlB param_00014239, bcOmlpGgwVCrecHKRjwdQzyizLQGA_NezMPkGUwSkAcIJPJQDqPKqwcDUr param_0001423a, MethodInfo * method)); -DO_APP_FUNC(0x021ADB30, void *, bcOmlpGgwVCrecHKRjwdQzyizLQGA_gLDuyHGNDfTNiCodQCvBgWCPEKlN_1, (bcOmlpGgwVCrecHKRjwdQzyizLQGA_zqrMMRRVlnxYQKhlRpOFkRpFWHlB param_0001423b, void * param_0001423c, MethodInfo * method)); -DO_APP_FUNC(0x021ADC70, bool, bcOmlpGgwVCrecHKRjwdQzyizLQGA_OXCFNlIhpygShuqcvPuLkQwXyNEmA, (void * param_0001423d, bcOmlpGgwVCrecHKRjwdQzyizLQGA_NezMPkGUwSkAcIJPJQDqPKqwcDUr param_0001423e, MethodInfo * method)); +DO_APP_FUNC(0x021AD790, void *, bcOmlpGgwVCrecHKRjwdQzyizLQGA_gLDuyHGNDfTNiCodQCvBgWCPEKlN, (bcOmlpGgwVCrecHKRjwdQzyizLQGA_zqrMMRRVlnxYQKhlRpOFkRpFWHlB * param_00014239, bcOmlpGgwVCrecHKRjwdQzyizLQGA_NezMPkGUwSkAcIJPJQDqPKqwcDUr * param_0001423a, MethodInfo * method)); +DO_APP_FUNC(0x021ADB30, void *, bcOmlpGgwVCrecHKRjwdQzyizLQGA_gLDuyHGNDfTNiCodQCvBgWCPEKlN_1, (bcOmlpGgwVCrecHKRjwdQzyizLQGA_zqrMMRRVlnxYQKhlRpOFkRpFWHlB * param_0001423b, void * param_0001423c, MethodInfo * method)); +DO_APP_FUNC(0x021ADC70, bool, bcOmlpGgwVCrecHKRjwdQzyizLQGA_OXCFNlIhpygShuqcvPuLkQwXyNEmA, (void * param_0001423d, bcOmlpGgwVCrecHKRjwdQzyizLQGA_NezMPkGUwSkAcIJPJQDqPKqwcDUr * param_0001423e, MethodInfo * method)); DO_APP_FUNC(0x021ADF70, bool, bcOmlpGgwVCrecHKRjwdQzyizLQGA_OXCFNlIhpygShuqcvPuLkQwXyNEmA_1, (void * param_0001423f, void * param_00014240, MethodInfo * method)); DO_APP_FUNC(0x021AE010, bool, bcOmlpGgwVCrecHKRjwdQzyizLQGA_RsgfcZWylmOaXVsMjBsMATCMOHpQ, (void * param_00014241, MethodInfo * method)); -DO_APP_FUNC(0x021AE0A0, String *, bcOmlpGgwVCrecHKRjwdQzyizLQGA_zqrMMRRVlnxYQKhlRpOFkRpFWHlB_LVmcPOeqeDbqbgLicgjuWNFJdAuo, (bcOmlpGgwVCrecHKRjwdQzyizLQGA_zqrMMRRVlnxYQKhlRpOFkRpFWHlB__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x021AE5D0, String *, bcOmlpGgwVCrecHKRjwdQzyizLQGA_NezMPkGUwSkAcIJPJQDqPKqwcDUr_LVmcPOeqeDbqbgLicgjuWNFJdAuo, (bcOmlpGgwVCrecHKRjwdQzyizLQGA_NezMPkGUwSkAcIJPJQDqPKqwcDUr__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x021AE0A0, String *, bcOmlpGgwVCrecHKRjwdQzyizLQGA_zqrMMRRVlnxYQKhlRpOFkRpFWHlB_LVmcPOeqeDbqbgLicgjuWNFJdAuo, (bcOmlpGgwVCrecHKRjwdQzyizLQGA_zqrMMRRVlnxYQKhlRpOFkRpFWHlB * __this, MethodInfo * method)); +DO_APP_FUNC(0x021AE5D0, String *, bcOmlpGgwVCrecHKRjwdQzyizLQGA_NezMPkGUwSkAcIJPJQDqPKqwcDUr_LVmcPOeqeDbqbgLicgjuWNFJdAuo, (bcOmlpGgwVCrecHKRjwdQzyizLQGA_NezMPkGUwSkAcIJPJQDqPKqwcDUr * __this, MethodInfo * method)); DO_APP_FUNC(0x021AE9B0, bcOmlpGgwVCrecHKRjwdQzyizLQGA_NezMPkGUwSkAcIJPJQDqPKqwcDUr, bcOmlpGgwVCrecHKRjwdQzyizLQGA_NezMPkGUwSkAcIJPJQDqPKqwcDUr_fkFHPtthnqGWtyhDKbcIRTPUeGLc, (MethodInfo * method)); -DO_APP_FUNC(0x021AEA70, String *, bcOmlpGgwVCrecHKRjwdQzyizLQGA_cIyeLAkawaCKenVDjzymlkuwIPuDA_LVmcPOeqeDbqbgLicgjuWNFJdAuo, (bcOmlpGgwVCrecHKRjwdQzyizLQGA_cIyeLAkawaCKenVDjzymlkuwIPuDA__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x021AEE10, String *, bcOmlpGgwVCrecHKRjwdQzyizLQGA_zPdKqgvkhJiMWHlWrgKrPGzAQOwA_LVmcPOeqeDbqbgLicgjuWNFJdAuo, (bcOmlpGgwVCrecHKRjwdQzyizLQGA_zPdKqgvkhJiMWHlWrgKrPGzAQOwA__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x021AF0E0, bool, bcOmlpGgwVCrecHKRjwdQzyizLQGA_zPdKqgvkhJiMWHlWrgKrPGzAQOwA_jGOdeoKvGbJTgPHjTEwpbgvczBjsb, (bcOmlpGgwVCrecHKRjwdQzyizLQGA_zPdKqgvkhJiMWHlWrgKrPGzAQOwA__Boxed * __this, bcOmlpGgwVCrecHKRjwdQzyizLQGA_ozzCwydVGqRtzfxkQeqCoZQcovRAA param_00014242, MethodInfo * method)); -DO_APP_FUNC(0x021AF120, bcOmlpGgwVCrecHKRjwdQzyizLQGA_ozzCwydVGqRtzfxkQeqCoZQcovRAA, bcOmlpGgwVCrecHKRjwdQzyizLQGA_ozzCwydVGqRtzfxkQeqCoZQcovRAA_cfdetsduBPnYsrwaYjeyeHdZAexNA, (String * param_00014243, bool param_00014244, MethodInfo * method)); +DO_APP_FUNC(0x021AEA70, String *, bcOmlpGgwVCrecHKRjwdQzyizLQGA_cIyeLAkawaCKenVDjzymlkuwIPuDA_LVmcPOeqeDbqbgLicgjuWNFJdAuo, (bcOmlpGgwVCrecHKRjwdQzyizLQGA_cIyeLAkawaCKenVDjzymlkuwIPuDA * __this, MethodInfo * method)); +DO_APP_FUNC(0x021AEE10, String *, bcOmlpGgwVCrecHKRjwdQzyizLQGA_zPdKqgvkhJiMWHlWrgKrPGzAQOwA_LVmcPOeqeDbqbgLicgjuWNFJdAuo, (bcOmlpGgwVCrecHKRjwdQzyizLQGA_zPdKqgvkhJiMWHlWrgKrPGzAQOwA * __this, MethodInfo * method)); +DO_APP_FUNC(0x021AF0E0, bool, bcOmlpGgwVCrecHKRjwdQzyizLQGA_zPdKqgvkhJiMWHlWrgKrPGzAQOwA_jGOdeoKvGbJTgPHjTEwpbgvczBjsb, (bcOmlpGgwVCrecHKRjwdQzyizLQGA_zPdKqgvkhJiMWHlWrgKrPGzAQOwA * __this, bcOmlpGgwVCrecHKRjwdQzyizLQGA_ozzCwydVGqRtzfxkQeqCoZQcovRAA * param_00014242, MethodInfo * method)); +DO_APP_FUNC(0x021AF120, bcOmlpGgwVCrecHKRjwdQzyizLQGA_ozzCwydVGqRtzfxkQeqCoZQcovRAA, bcOmlpGgwVCrecHKRjwdQzyizLQGA_ozzCwydVGqRtzfxkQeqCoZQcovRAA_cfdetsduBPnYsrwaYjeyeHdZAexNA, (String * param_00014243, bool * param_00014244, MethodInfo * method)); DO_APP_FUNC(0x021AF2A0, void, bcOmlpGgwVCrecHKRjwdQzyizLQGA_ozzCwydVGqRtzfxkQeqCoZQcovRAA__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x021AF360, uint16_t, ZMqjCYehEKqIQMMhejVBKtVTTPMf_xzkrlOTgWNNCroGONVPHQWPpgXeD, (ZMqjCYehEKqIQMMhejVBKtVTTPMf_TsQJRjzqAaquHPlNjgdTtMmlCdse param_00014245, MethodInfo * method)); +DO_APP_FUNC(0x021AF360, uint16_t, ZMqjCYehEKqIQMMhejVBKtVTTPMf_xzkrlOTgWNNCroGONVPHQWPpgXeD, (ZMqjCYehEKqIQMMhejVBKtVTTPMf_TsQJRjzqAaquHPlNjgdTtMmlCdse * param_00014245, MethodInfo * method)); DO_APP_FUNC(0x021AF510, bool, ZMqjCYehEKqIQMMhejVBKtVTTPMf_vJPZKXDBWXRpnRzfkMBiRpAylFUT, (String * param_00014246, void * param_00014247, MethodInfo * method)); DO_APP_FUNC(0x021AF5B0, void *, ZMqjCYehEKqIQMMhejVBKtVTTPMf_CkJdPhaQztJUMDpsjgBQPQyaHqGE, (uint32_t param_00014248, String * param_00014249, String * param_0001424a, uint32_t param_0001424b, int32_t param_0001424c, int32_t param_0001424d, int32_t param_0001424e, int32_t param_0001424f, void * param_00014250, void * param_00014251, void * param_00014252, void * param_00014253, MethodInfo * method)); DO_APP_FUNC(0x021AF6E0, void *, ZMqjCYehEKqIQMMhejVBKtVTTPMf_KFGJCwLJMkeDcvMfRqbGkuRGoqu, (void * param_00014254, uint32_t param_00014255, void * param_00014256, void * param_00014257, MethodInfo * method)); @@ -79164,9 +90218,11 @@ DO_APP_FUNC(0x021AF820, void, ZMqjCYehEKqIQMMhejVBKtVTTPMf_Dispose, (ZMqjCYehEKq DO_APP_FUNC(0x021AF880, void, ZMqjCYehEKqIQMMhejVBKtVTTPMf_koAztZrcZLyuMlaqoUCpAMQQIsgb, (ZMqjCYehEKqIQMMhejVBKtVTTPMf * __this, MethodInfo * method)); DO_APP_FUNC(0x021AF8D0, void, ZMqjCYehEKqIQMMhejVBKtVTTPMf_ixmAePEnLRGjkiYJbCTfPNBHXEcwB, (ZMqjCYehEKqIQMMhejVBKtVTTPMf * __this, bool param_00014259, MethodInfo * method)); DO_APP_FUNC(0x021AFAA0, void, ZMqjCYehEKqIQMMhejVBKtVTTPMf__ctor, (ZMqjCYehEKqIQMMhejVBKtVTTPMf * __this, String * param_0001425a, bool param_0001425b, ZMqjCYehEKqIQMMhejVBKtVTTPMf_tkPDljFlUTWCqmeHEUtBSxPpHDmqA * param_0001425c, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF930, ZMqjCYehEKqIQMMhejVBKtVTTPMf__ctor__MethodInfo); DO_APP_FUNC(0x021B0310, void *, ZMqjCYehEKqIQMMhejVBKtVTTPMf_MbnVBnAjGRYhQrkCvTcSERieJaHs, (ZMqjCYehEKqIQMMhejVBKtVTTPMf * __this, String * param_0001425d, void * param_0001425e, MethodInfo * method)); DO_APP_FUNC(0x021B0470, void *, ZMqjCYehEKqIQMMhejVBKtVTTPMf_QrXFebqXXbAVDTTdwPeoJOGaSwyf, (ZMqjCYehEKqIQMMhejVBKtVTTPMf * __this, String * param_0001425f, void * param_00014260, MethodInfo * method)); DO_APP_FUNC(0x021B0610, void *, ZMqjCYehEKqIQMMhejVBKtVTTPMf_KzAQeNNAclKkdLhTuBkrNoRVPKzi, (void * param_00014261, uint32_t param_00014262, void * param_00014263, void * param_00014264, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF948, ZMqjCYehEKqIQMMhejVBKtVTTPMf_KzAQeNNAclKkdLhTuBkrNoRVPKzi__MethodInfo); DO_APP_FUNC(0x003C73A0, void, ZMqjCYehEKqIQMMhejVBKtVTTPMf_cOaGBjBzuOdGuHEsMxJuiewFjDfy, (ZMqjCYehEKqIQMMhejVBKtVTTPMf * __this, ZMqjCYehEKqIQMMhejVBKtVTTPMf_tkPDljFlUTWCqmeHEUtBSxPpHDmqA * param_00014265, MethodInfo * method)); DO_APP_FUNC(0x021B0900, void, ZMqjCYehEKqIQMMhejVBKtVTTPMf_tkPDljFlUTWCqmeHEUtBSxPpHDmqA__ctor, (ZMqjCYehEKqIQMMhejVBKtVTTPMf_tkPDljFlUTWCqmeHEUtBSxPpHDmqA * __this, Object * param_00014266, void * param_00014267, MethodInfo * method)); DO_APP_FUNC(0x003F09C0, void *, ZMqjCYehEKqIQMMhejVBKtVTTPMf_tkPDljFlUTWCqmeHEUtBSxPpHDmqA_Invoke, (ZMqjCYehEKqIQMMhejVBKtVTTPMf_tkPDljFlUTWCqmeHEUtBSxPpHDmqA * __this, void * hWnd, uint32_t msg, void * wParam, void * lParam, MethodInfo * method)); @@ -79174,11 +90230,13 @@ DO_APP_FUNC(0x021B0A30, int32_t, WdfFFcMoZkFeQDYdsleBlfRGSwSrA_jYXsUZBgpTHcCFZjg DO_APP_FUNC(0x021B0A70, ThreadHelper_1 *, WdfFFcMoZkFeQDYdsleBlfRGSwSrA_terlnhTOIjLshGKbKRxlueFAeHQw, (MethodInfo * method)); DO_APP_FUNC(0x021B0AB0, ThreadHelper_1 *, WdfFFcMoZkFeQDYdsleBlfRGSwSrA_punBoKdeVLmJijGAfFDKNimceaKqB, (MethodInfo * method)); DO_APP_FUNC(0x021B0AF0, void, WdfFFcMoZkFeQDYdsleBlfRGSwSrA_jQsuOfnWgBdSsdsHwhjmjLkSdwvU, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF950, WdfFFcMoZkFeQDYdsleBlfRGSwSrA_jQsuOfnWgBdSsdsHwhjmjLkSdwvU__MethodInfo); DO_APP_FUNC(0x021B1000, void, WdfFFcMoZkFeQDYdsleBlfRGSwSrA_BEuQcBkAItsOJDIQkVoYsZixMPXS, (UpdateLoopType__Enum param_0001426c, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF960, WdfFFcMoZkFeQDYdsleBlfRGSwSrA_BEuQcBkAItsOJDIQkVoYsZixMPXS__MethodInfo); DO_APP_FUNC(0x021B10C0, void, WdfFFcMoZkFeQDYdsleBlfRGSwSrA_ixmAePEnLRGjkiYJbCTfPNBHXEcwB, (MethodInfo * method)); DO_APP_FUNC(0x021B1430, void, qUaeyIgVCufmDzatlipvlpwBwlinA__cctor, (MethodInfo * method)); DO_APP_FUNC(0x021B1C80, void *, yjqIYPGPZDRUzhLMmmIFEMNBhVMq_OCJyIaIgkxEYUWVhYxIXSliXNlPr, (MethodInfo * method)); -DO_APP_FUNC(0x021B1CF0, bool, yjqIYPGPZDRUzhLMmmIFEMNBhVMq_eYLrowgnyWqBcjKHplyfPjlJfXJE, (void * param_0001426d, bool param_0001426e, MethodInfo * method)); +DO_APP_FUNC(0x021B1CF0, bool, yjqIYPGPZDRUzhLMmmIFEMNBhVMq_eYLrowgnyWqBcjKHplyfPjlJfXJE, (void * param_0001426d, bool * param_0001426e, MethodInfo * method)); DO_APP_FUNC(0x021B1D90, void *, yjqIYPGPZDRUzhLMmmIFEMNBhVMq_KFvCjQIuzsdedXtLQXfoxSiYHydo, (MethodInfo * method)); DO_APP_FUNC(0x021B1E00, void *, yjqIYPGPZDRUzhLMmmIFEMNBhVMq_tDEqcmmSZnJURlkniPyrlyPgBKnK, (MethodInfo * method)); DO_APP_FUNC(0x021B1E70, void *, yjqIYPGPZDRUzhLMmmIFEMNBhVMq_MNwnhqPAtpNsfKCbyCObsVfWVyRh, (void * param_0001426f, int32_t param_00014270, MethodInfo * method)); @@ -79187,41 +90245,44 @@ DO_APP_FUNC(0x021B1FC0, void *, yjqIYPGPZDRUzhLMmmIFEMNBhVMq_cKnzMToyHFlQnIqBdtH DO_APP_FUNC(0x021B2050, void *, yjqIYPGPZDRUzhLMmmIFEMNBhVMq_dMQtAcubGYamkTevegDSKyjOSnTiA, (void * param_00014275, int32_t param_00014276, void * param_00014277, MethodInfo * method)); DO_APP_FUNC(0x021B2120, void *, yjqIYPGPZDRUzhLMmmIFEMNBhVMq_MfaaVkFPSPNyFevzZFDRuykcLYHmA, (void * param_00014278, int32_t param_00014279, void * param_0001427a, MethodInfo * method)); DO_APP_FUNC(0x021B21C0, void *, yjqIYPGPZDRUzhLMmmIFEMNBhVMq_KOoobJbyhOTXMCtjwoEzfiBmPmCp, (void * param_0001427b, int32_t param_0001427c, void * param_0001427d, MethodInfo * method)); -DO_APP_FUNC(0x021B2260, uint32_t, yjqIYPGPZDRUzhLMmmIFEMNBhVMq_gUoMaaPUTrBOtYZSpgFJqQCdeYNn, (void * param_0001427e, uint32_t param_0001427f, uint32_t param_00014280, MethodInfo * method)); -DO_APP_FUNC(0x021B2300, uint32_t, yjqIYPGPZDRUzhLMmmIFEMNBhVMq_KRSUgNkIOyoPDuJXCamEklXQyYlF, (void * param_00014281, uint32_t param_00014282, uint32_t param_00014283, MethodInfo * method)); -DO_APP_FUNC(0x021B23A0, int32_t, yjqIYPGPZDRUzhLMmmIFEMNBhVMq_mLFDmzxKeHOtdfLrYvSaYufAKQSj, (void * param_00014284, uint32_t param_00014285, uint32_t param_00014286, MethodInfo * method)); -DO_APP_FUNC(0x021B2440, bool, yjqIYPGPZDRUzhLMmmIFEMNBhVMq_YenuQJFfKtcrrlYfQGkzscmsGgCw, (uint32_t param_00014287, uint32_t param_00014288, int32_t param_00014289, uint32_t param_0001428a, MethodInfo * method)); +DO_APP_FUNC(0x021B2260, uint32_t, yjqIYPGPZDRUzhLMmmIFEMNBhVMq_gUoMaaPUTrBOtYZSpgFJqQCdeYNn, (void * param_0001427e, uint32_t * param_0001427f, uint32_t param_00014280, MethodInfo * method)); +DO_APP_FUNC(0x021B2300, uint32_t, yjqIYPGPZDRUzhLMmmIFEMNBhVMq_KRSUgNkIOyoPDuJXCamEklXQyYlF, (void * param_00014281, uint32_t * param_00014282, uint32_t param_00014283, MethodInfo * method)); +DO_APP_FUNC(0x021B23A0, int32_t, yjqIYPGPZDRUzhLMmmIFEMNBhVMq_mLFDmzxKeHOtdfLrYvSaYufAKQSj, (void * param_00014284, uint32_t * param_00014285, uint32_t param_00014286, MethodInfo * method)); +DO_APP_FUNC(0x021B2440, bool, yjqIYPGPZDRUzhLMmmIFEMNBhVMq_YenuQJFfKtcrrlYfQGkzscmsGgCw, (uint32_t param_00014287, uint32_t param_00014288, int32_t * param_00014289, uint32_t param_0001428a, MethodInfo * method)); DO_APP_FUNC(0x021B24F0, int32_t, yjqIYPGPZDRUzhLMmmIFEMNBhVMq_REiLKHaLaLsNcIrvlBUChHinnTMb, (int32_t param_0001428b, MethodInfo * method)); -DO_APP_FUNC(0x021B2570, bool, yjqIYPGPZDRUzhLMmmIFEMNBhVMq_eIBcyrOGjYGlIanChPJhVnsNvVyuA, (CffaujAdfZSkXUdIRPRCmzTfUTzW param_0001428c, MethodInfo * method)); +DO_APP_FUNC(0x021B2570, bool, yjqIYPGPZDRUzhLMmmIFEMNBhVMq_eIBcyrOGjYGlIanChPJhVnsNvVyuA, (CffaujAdfZSkXUdIRPRCmzTfUTzW * param_0001428c, MethodInfo * method)); DO_APP_FUNC(0x021B25F0, void *, yjqIYPGPZDRUzhLMmmIFEMNBhVMq_bIBvnHmbTKtysTPNgIvpEqjitiSj, (uint32_t param_0001428d, bool param_0001428e, uint32_t param_0001428f, MethodInfo * method)); DO_APP_FUNC(0x021B2680, int16_t, yjqIYPGPZDRUzhLMmmIFEMNBhVMq_HPRVGjmxojWTqlPRwcjstsxCByGQ, (int32_t param_00014290, MethodInfo * method)); DO_APP_FUNC(0x021B2700, int16_t, yjqIYPGPZDRUzhLMmmIFEMNBhVMq_gAlhJnFdWrletvjGSCycbSKSStJYA, (int32_t param_00014291, MethodInfo * method)); DO_APP_FUNC(0x021B2780, bool, yjqIYPGPZDRUzhLMmmIFEMNBhVMq_TBKjAThDOYHHyDYPGkvmDUbmpzeKA, (void * param_00014292, MethodInfo * method)); -DO_APP_FUNC(0x021B2800, bool, yjqIYPGPZDRUzhLMmmIFEMNBhVMq_sxFqaHJKDQBSpiMCvghScGPChLNnb, (void * param_00014293, CffaujAdfZSkXUdIRPRCmzTfUTzW param_00014294, MethodInfo * method)); -DO_APP_FUNC(0x021B2890, bool, yjqIYPGPZDRUzhLMmmIFEMNBhVMq_FRTnYriUrDPxapMiuOHqGJUBFGEO, (void * param_00014295, zecnIPCkLHFLZyMeSPKKSKQOugSU param_00014296, MethodInfo * method)); -DO_APP_FUNC(0x021B2920, bool, yjqIYPGPZDRUzhLMmmIFEMNBhVMq_vKjCeOTDAvcqNYFrNFMYiVCGdTNvA, (void * param_00014297, zecnIPCkLHFLZyMeSPKKSKQOugSU param_00014298, MethodInfo * method)); +DO_APP_FUNC(0x021B2800, bool, yjqIYPGPZDRUzhLMmmIFEMNBhVMq_sxFqaHJKDQBSpiMCvghScGPChLNnb, (void * param_00014293, CffaujAdfZSkXUdIRPRCmzTfUTzW * param_00014294, MethodInfo * method)); +DO_APP_FUNC(0x021B2890, bool, yjqIYPGPZDRUzhLMmmIFEMNBhVMq_FRTnYriUrDPxapMiuOHqGJUBFGEO, (void * param_00014295, zecnIPCkLHFLZyMeSPKKSKQOugSU * param_00014296, MethodInfo * method)); +DO_APP_FUNC(0x021B2920, bool, yjqIYPGPZDRUzhLMmmIFEMNBhVMq_vKjCeOTDAvcqNYFrNFMYiVCGdTNvA, (void * param_00014297, zecnIPCkLHFLZyMeSPKKSKQOugSU * param_00014298, MethodInfo * method)); DO_APP_FUNC(0x021B29B0, uint32_t, yjqIYPGPZDRUzhLMmmIFEMNBhVMq_ahChbVDjslMotnhcOAbOqlcmNtES, (uint32_t param_00014299, uint32_t param_0001429a, MethodInfo * method)); DO_APP_FUNC(0x021B2A40, void *, yjqIYPGPZDRUzhLMmmIFEMNBhVMq_kNdtuQwBFfSeMiteymxFOygSkrWx, (int32_t param_0001429b, MethodInfo * method)); DO_APP_FUNC(0x021B2AC0, bool, yjqIYPGPZDRUzhLMmmIFEMNBhVMq_VNTTTDlObBPAAfPyNBnIlIAOnTll, (void * param_0001429c, MethodInfo * method)); DO_APP_FUNC(0x021B2B40, void *, yjqIYPGPZDRUzhLMmmIFEMNBhVMq_ggHWakULDDgQyGgwPFugnknKffJmA, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2180, yjqIYPGPZDRUzhLMmmIFEMNBhVMq_ggHWakULDDgQyGgwPFugnknKffJmA__MethodInfo); DO_APP_FUNC(0x021B2CA0, bool, yjqIYPGPZDRUzhLMmmIFEMNBhVMq_XhRBeEjFrJIPFVFfqYcSGrWIhUzdb, (MethodInfo * method)); DO_APP_FUNC(0x021B2D80, void, yjqIYPGPZDRUzhLMmmIFEMNBhVMq__cctor, (MethodInfo * method)); DO_APP_FUNC(0x021B2DE0, void, SRYVsvBnJRRIGpAZWqJVixPIiJrt__cctor, (MethodInfo * method)); DO_APP_FUNC(0x021B2E40, SRYVsvBnJRRIGpAZWqJVixPIiJrt, SRYVsvBnJRRIGpAZWqJVixPIiJrt_kaOUkEsnYqbyVXBjibvHiNiHPmYVA, (Byte__Array * param_0001429d, int32_t param_0001429e, MethodInfo * method)); DO_APP_FUNC(0x021B2F50, SRYVsvBnJRRIGpAZWqJVixPIiJrt, SRYVsvBnJRRIGpAZWqJVixPIiJrt_qlQFyYbsFtREWUEDvqgpZPFXOEHGA, (void * param_0001429f, MethodInfo * method)); DO_APP_FUNC(0x00A1B820, void *, SRYVsvBnJRRIGpAZWqJVixPIiJrt_qlQFyYbsFtREWUEDvqgpZPFXOEHGA_1, (SRYVsvBnJRRIGpAZWqJVixPIiJrt param_000142a0, MethodInfo * method)); -DO_APP_FUNC(0x021B2FC0, String *, SRYVsvBnJRRIGpAZWqJVixPIiJrt_LVmcPOeqeDbqbgLicgjuWNFJdAuo, (SRYVsvBnJRRIGpAZWqJVixPIiJrt__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x021B2FC0, String *, SRYVsvBnJRRIGpAZWqJVixPIiJrt_LVmcPOeqeDbqbgLicgjuWNFJdAuo, (SRYVsvBnJRRIGpAZWqJVixPIiJrt * __this, MethodInfo * method)); DO_APP_FUNC(0x021B3030, void, lNxFJILufgduJyEUwukEQTSTSOGU__cctor, (MethodInfo * method)); DO_APP_FUNC(0x021B3090, lNxFJILufgduJyEUwukEQTSTSOGU, lNxFJILufgduJyEUwukEQTSTSOGU_kaOUkEsnYqbyVXBjibvHiNiHPmYVA, (Byte__Array * param_000142a1, int32_t param_000142a2, MethodInfo * method)); DO_APP_FUNC(0x00A1B820, void *, lNxFJILufgduJyEUwukEQTSTSOGU_qlQFyYbsFtREWUEDvqgpZPFXOEHGA, (lNxFJILufgduJyEUwukEQTSTSOGU param_000142a3, MethodInfo * method)); DO_APP_FUNC(0x021B3210, lNxFJILufgduJyEUwukEQTSTSOGU, lNxFJILufgduJyEUwukEQTSTSOGU_qlQFyYbsFtREWUEDvqgpZPFXOEHGA_1, (void * param_000142a4, MethodInfo * method)); -DO_APP_FUNC(0x021B3280, String *, lNxFJILufgduJyEUwukEQTSTSOGU_LVmcPOeqeDbqbgLicgjuWNFJdAuo, (lNxFJILufgduJyEUwukEQTSTSOGU__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x021B32F0, int32_t, lNxFJILufgduJyEUwukEQTSTSOGU_vuLfTGkIsDBvznjZWLgitARlYlwF, (lNxFJILufgduJyEUwukEQTSTSOGU__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x021B3280, String *, lNxFJILufgduJyEUwukEQTSTSOGU_LVmcPOeqeDbqbgLicgjuWNFJdAuo, (lNxFJILufgduJyEUwukEQTSTSOGU * __this, MethodInfo * method)); +DO_APP_FUNC(0x021B32F0, int32_t, lNxFJILufgduJyEUwukEQTSTSOGU_vuLfTGkIsDBvznjZWLgitARlYlwF, (lNxFJILufgduJyEUwukEQTSTSOGU * __this, MethodInfo * method)); DO_APP_FUNC(0x021B3350, String *, sFLhyFixFUQyuoQPGjLlsZEgnXagA_KNpapNnXQwJETQMRUscbMMZcKHAD, (void * param_000142a5, int32_t param_000142a6, MethodInfo * method)); DO_APP_FUNC(0x021B34E0, void, LGqFCRjpcFjJFbjtKNmHioEhMHIc__ctor, (LGqFCRjpcFjJFbjtKNmHioEhMHIc * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF908, LGqFCRjpcFjJFbjtKNmHioEhMHIc__ctor__MethodInfo); DO_APP_FUNC(0x021B3680, void, LGqFCRjpcFjJFbjtKNmHioEhMHIc_PatYCEvgZKyRbQfvhKmCKDEcGrhDA, (LGqFCRjpcFjJFbjtKNmHioEhMHIc * __this, Action_4_SRYVsvBnJRRIGpAZWqJVixPIiJrt_lNxFJILufgduJyEUwukEQTSTSOGU_UInt32_IntPtr_ * param_000142a7, bool param_000142a8, MethodInfo * method)); DO_APP_FUNC(0x021B39C0, void, LGqFCRjpcFjJFbjtKNmHioEhMHIc_YYkYQubQaEWZRFpNPGBAcdOsnScg, (LGqFCRjpcFjJFbjtKNmHioEhMHIc * __this, MethodInfo * method)); DO_APP_FUNC(0x021B3AD0, void *, LGqFCRjpcFjJFbjtKNmHioEhMHIc_YNLmMIlBFtjbTryOREvuZoqTrQSC, (int32_t param_000142a9, void * param_000142aa, void * param_000142ab, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF8F8, LGqFCRjpcFjJFbjtKNmHioEhMHIc_YNLmMIlBFtjbTryOREvuZoqTrQSC__MethodInfo); DO_APP_FUNC(0x021B41B0, void, LGqFCRjpcFjJFbjtKNmHioEhMHIc_Dispose, (LGqFCRjpcFjJFbjtKNmHioEhMHIc * __this, MethodInfo * method)); DO_APP_FUNC(0x01F28E70, void, LGqFCRjpcFjJFbjtKNmHioEhMHIc_koAztZrcZLyuMlaqoUCpAMQQIsgb, (LGqFCRjpcFjJFbjtKNmHioEhMHIc * __this, MethodInfo * method)); DO_APP_FUNC(0x021B4220, void, LGqFCRjpcFjJFbjtKNmHioEhMHIc_ixmAePEnLRGjkiYJbCTfPNBHXEcwB, (LGqFCRjpcFjJFbjtKNmHioEhMHIc * __this, bool param_000142ac, MethodInfo * method)); @@ -79298,9 +90359,9 @@ DO_APP_FUNC(0x021B7BC0, void, rnwGumBskXMryeokghSZPtEShGNbB_IqeirVCUUEJhXFQOWXCd DO_APP_FUNC(0x021B7BD0, void, MlYCrDknvgzHIeLWriwQBruRJPKAb_VNubIxxpewOOHdNDHykqGjYFHaFy, (MlYCrDknvgzHIeLWriwQBruRJPKAb * __this, MethodInfo * method)); DO_APP_FUNC(0x021B7C40, String *, MlYCrDknvgzHIeLWriwQBruRJPKAb_LVmcPOeqeDbqbgLicgjuWNFJdAuo, (MlYCrDknvgzHIeLWriwQBruRJPKAb * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, MlYCrDknvgzHIeLWriwQBruRJPKAb__ctor, (MlYCrDknvgzHIeLWriwQBruRJPKAb * __this, MethodInfo * method)); -DO_APP_FUNC(0x021B7D10, void, dizNapQvKwuvFnHArdMGFroDLpMDb_iGlRenjOWJphMVhzZUqICzDnNZft, (dizNapQvKwuvFnHArdMGFroDLpMDb * __this, fsRiDBEERnIQlMGEHJRgRRiEbYqF param_0001430a, MethodInfo * method)); +DO_APP_FUNC(0x021B7D10, void, dizNapQvKwuvFnHArdMGFroDLpMDb_iGlRenjOWJphMVhzZUqICzDnNZft, (dizNapQvKwuvFnHArdMGFroDLpMDb * __this, fsRiDBEERnIQlMGEHJRgRRiEbYqF * param_0001430a, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, dizNapQvKwuvFnHArdMGFroDLpMDb__ctor, (dizNapQvKwuvFnHArdMGFroDLpMDb * __this, MethodInfo * method)); -DO_APP_FUNC(0x021B7DF0, void, AdxpHlVvHbUFAoIBbwQQELBqZvLB_iGlRenjOWJphMVhzZUqICzDnNZft, (AdxpHlVvHbUFAoIBbwQQELBqZvLB * __this, KGpfpVumzcziOxJRZbURZTEAJARe param_0001430b, MethodInfo * method)); +DO_APP_FUNC(0x021B7DF0, void, AdxpHlVvHbUFAoIBbwQQELBqZvLB_iGlRenjOWJphMVhzZUqICzDnNZft, (AdxpHlVvHbUFAoIBbwQQELBqZvLB * __this, KGpfpVumzcziOxJRZbURZTEAJARe * param_0001430b, MethodInfo * method)); DO_APP_FUNC(0x021B7ED0, String *, AdxpHlVvHbUFAoIBbwQQELBqZvLB_LVmcPOeqeDbqbgLicgjuWNFJdAuo, (AdxpHlVvHbUFAoIBbwQQELBqZvLB * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AdxpHlVvHbUFAoIBbwQQELBqZvLB__ctor, (AdxpHlVvHbUFAoIBbwQQELBqZvLB * __this, MethodInfo * method)); DO_APP_FUNC(0x00A863A0, int32_t, VmygOaZMePMYixMwHDTZwiDTgTwx_izIVdGcaTKiPxUYPtkQeqWpbqVvt, (VmygOaZMePMYixMwHDTZwiDTgTwx * __this, MethodInfo * method)); @@ -79325,9 +90386,10 @@ DO_APP_FUNC(0x003AE050, void, VmygOaZMePMYixMwHDTZwiDTgTwx_aYKnLyJwnQsfPnmCkNcob DO_APP_FUNC(0x00A863B0, void, VmygOaZMePMYixMwHDTZwiDTgTwx_PiXHSUXWAfbGKhoejMXwApOWIkjp, (VmygOaZMePMYixMwHDTZwiDTgTwx * __this, int32_t param_00014316, MethodInfo * method)); DO_APP_FUNC(0x021B8E40, void, VmygOaZMePMYixMwHDTZwiDTgTwx_kZdtnNnvepQNzkTadlposPYFXqDF, (VmygOaZMePMYixMwHDTZwiDTgTwx * __this, MethodInfo * method)); DO_APP_FUNC(0x021BA200, void, VmygOaZMePMYixMwHDTZwiDTgTwx_OigKfWVDKSJyYsIOrKMbobMHUegc, (VmygOaZMePMYixMwHDTZwiDTgTwx * __this, void * param_00014317, int32_t param_00014318, void * param_00014319, uint8_t param_0001431a, double param_0001431b, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF6F8, VmygOaZMePMYixMwHDTZwiDTgTwx_OigKfWVDKSJyYsIOrKMbobMHUegc__MethodInfo); DO_APP_FUNC(0x021BA5C0, void, VmygOaZMePMYixMwHDTZwiDTgTwx_DtZxluvGULhDnZkYxshhgLPSfZrv, (VmygOaZMePMYixMwHDTZwiDTgTwx * __this, AList_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * param_0001431c, void * param_0001431d, int32_t param_0001431e, void * param_0001431f, uint8_t param_00014320, double param_00014321, MethodInfo * method)); DO_APP_FUNC(0x021BA930, void, VmygOaZMePMYixMwHDTZwiDTgTwx_FdjjSFwZOCGRCLcMJrBOxPKpCsFQ, (VmygOaZMePMYixMwHDTZwiDTgTwx * __this, AList_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * param_00014322, int32_t param_00014323, VmygOaZMePMYixMwHDTZwiDTgTwx_BOxQKWlqJkCqZgYbdmKoWcSioOHg * param_00014324, int32_t param_00014325, uint16_t param_00014326, void * param_00014327, void * param_00014328, int32_t param_00014329, MethodInfo * method)); -DO_APP_FUNC(0x021BACF0, bool, VmygOaZMePMYixMwHDTZwiDTgTwx_MGMqoYHyfMHyfeXKNUOszNYxwWxI, (VmygOaZMePMYixMwHDTZwiDTgTwx * __this, AList_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * param_0001432a, xPRgcRKBLoHYedzPQnPxbmJxtbbAb * param_0001432b, int32_t param_0001432c, uint32_t param_0001432d, MethodInfo * method)); +DO_APP_FUNC(0x021BACF0, bool, VmygOaZMePMYixMwHDTZwiDTgTwx_MGMqoYHyfMHyfeXKNUOszNYxwWxI, (VmygOaZMePMYixMwHDTZwiDTgTwx * __this, AList_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * param_0001432a, xPRgcRKBLoHYedzPQnPxbmJxtbbAb * param_0001432b, int32_t param_0001432c, uint32_t * param_0001432d, MethodInfo * method)); DO_APP_FUNC(0x021BADF0, bool, VmygOaZMePMYixMwHDTZwiDTgTwx_HfoPVPwiHnDdOHanoklNfTMzgkwT, (VmygOaZMePMYixMwHDTZwiDTgTwx * __this, xPRgcRKBLoHYedzPQnPxbmJxtbbAb * param_0001432e, int32_t param_0001432f, void * param_00014330, void * param_00014331, uint16_t param_00014332, int32_t param_00014333, int32_t param_00014334, void * param_00014335, MethodInfo * method)); DO_APP_FUNC(0x021BAF30, bool, VmygOaZMePMYixMwHDTZwiDTgTwx_vDcTrYSTuBIdVBMHYJcdceqDfDXgA, (void * param_00014336, int32_t param_00014337, void * param_00014338, AList_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * param_00014339, NativeBuffer * param_0001433a, MethodInfo * method)); DO_APP_FUNC(0x021BB1F0, void, VmygOaZMePMYixMwHDTZwiDTgTwx_AMDSdQIgpeSiOkjtbZOmLQyLKRwN, (VmygOaZMePMYixMwHDTZwiDTgTwx * __this, int32_t param_0001433b, uint16_t param_0001433c, uint16_t param_0001433d, uint32_t param_0001433e, int32_t param_0001433f, int32_t param_00014340, MethodInfo * method)); @@ -79335,6 +90397,7 @@ DO_APP_FUNC(0x021BB2C0, void, VmygOaZMePMYixMwHDTZwiDTgTwx_pFinJLBZyjGTFLBKpQFEA DO_APP_FUNC(0x021BB580, void, VmygOaZMePMYixMwHDTZwiDTgTwx_HiDeXnJShdkOIDEMqmxLzqZGZIzL, (VmygOaZMePMYixMwHDTZwiDTgTwx * __this, int32_t param_00014349, uint16_t param_0001434a, uint16_t param_0001434b, int32_t param_0001434c, int32_t param_0001434d, uint32_t param_0001434e, MethodInfo * method)); DO_APP_FUNC(0x021BB620, void, VmygOaZMePMYixMwHDTZwiDTgTwx_vHDBmXpHNHyMENOtxodXQSlfUgJR, (VmygOaZMePMYixMwHDTZwiDTgTwx * __this, int32_t param_0001434f, uint16_t param_00014350, uint16_t param_00014351, int32_t param_00014352, int32_t param_00014353, uint32_t param_00014354, MethodInfo * method)); DO_APP_FUNC(0x021BB6C0, void, VmygOaZMePMYixMwHDTZwiDTgTwx_fUZGWvWOcBRWVMTwoFhJDeuQFtXDA, (VmygOaZMePMYixMwHDTZwiDTgTwx * __this, void * param_00014355, int32_t param_00014356, int32_t param_00014357, double param_00014358, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF840, VmygOaZMePMYixMwHDTZwiDTgTwx_fUZGWvWOcBRWVMTwoFhJDeuQFtXDA__MethodInfo); DO_APP_FUNC(0x021BB6F0, void, VmygOaZMePMYixMwHDTZwiDTgTwx_ixmAePEnLRGjkiYJbCTfPNBHXEcwB, (VmygOaZMePMYixMwHDTZwiDTgTwx * __this, bool param_00014359, MethodInfo * method)); DO_APP_FUNC(0x021BB7C0, LvZCVPtmcvoJGRjIDMmnLaqjtTcQ *, VmygOaZMePMYixMwHDTZwiDTgTwx_UbhFqOihFozqfqbpqmHmRGYalPPl, (List_1_NJXNwLLrhxyDOSGduoygSsnoYkiK_ * param_0001435a, List_1_rnwGumBskXMryeokghSZPtEShGNbB_ * param_0001435b, ZemgRaVLtbvyLNdCEKfootiqlVcK * param_0001435c, xPRgcRKBLoHYedzPQnPxbmJxtbbAb * param_0001435d, uint16_t param_0001435e, bool param_0001435f, int32_t param_00014360, int32_t param_00014361, MethodInfo * method)); DO_APP_FUNC(0x021BBB40, LvZCVPtmcvoJGRjIDMmnLaqjtTcQ *, VmygOaZMePMYixMwHDTZwiDTgTwx_vLlGYnOHfrSPvPxfpXyObihDsSdG, (VmygOaZMePMYixMwHDTZwiDTgTwx * __this, VmygOaZMePMYixMwHDTZwiDTgTwx_KSREqnFwehoxndHZqHzDjWxKkJsRA__Array * param_00014362, int32_t param_00014363, int32_t param_00014364, int32_t param_00014365, MethodInfo * method)); @@ -79359,18 +90422,21 @@ DO_APP_FUNC(0x021BC7D0, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA__ctor, (eiAEQUagfGTj DO_APP_FUNC(0x003AE050, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_mLmttQFKcYPulxEbnzmZITaDjtbR, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA * __this, MethodInfo * method)); DO_APP_FUNC(0x021BDA40, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_TwowxOnMkpWPSTGkrcLysXtUlYyc, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA * __this, MethodInfo * method)); DO_APP_FUNC(0x021BDBD0, bool, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_zInCqxfUVLLeAfSITMTKnLdgINwab, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCE590, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_zInCqxfUVLLeAfSITMTKnLdgINwab__MethodInfo); DO_APP_FUNC(0x021BDD10, bool, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_ZrTeRFbcxuFIqMhFjcqKEZpeQEGKb, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA * __this, MethodInfo * method)); DO_APP_FUNC(0x021BDD40, bool, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_tSFVLmnmpYWlQlmcsibipmDxFVLL, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA * __this, MethodInfo * method)); DO_APP_FUNC(0x021BDD90, bool, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_lRqmdjbHOkiDZoWoldaKavbZjAtB, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA * __this, bool param_00014378, MethodInfo * method)); DO_APP_FUNC(0x021BDDA0, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_add_DeviceChangedEvent, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA * __this, Action * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2160, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_add_DeviceChangedEvent__MethodInfo); DO_APP_FUNC(0x021BDDF0, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_remove_DeviceChangedEvent, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA * __this, Action * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2168, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_remove_DeviceChangedEvent__MethodInfo); DO_APP_FUNC(0x021BDE40, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_SystemDeviceDisconnected, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA * __this, MethodInfo * method)); DO_APP_FUNC(0x021BDE40, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_SystemDeviceConnected, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA * __this, MethodInfo * method)); DO_APP_FUNC(0x021BDE50, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_Update, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA * __this, MethodInfo * method)); DO_APP_FUNC(0x021BDF30, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_UpdateDevices, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA * __this, UpdateLoopType__Enum updateLoop, MethodInfo * method)); DO_APP_FUNC(0x021BE010, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_UpdateFinished, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA * __this, MethodInfo * method)); DO_APP_FUNC(0x021BE0F0, List_1_znMZhiOLtznjGEIVUrVliWSuIivu_ *, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_TgjVInyMZERLnrFJsOrJamncrlIn, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA * __this, bool param_0001437c, MethodInfo * method)); -DO_APP_FUNC(0x021BE880, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_yFImYjAqRxBPEZMejNfRNACvewtK, (List_1_znMZhiOLtznjGEIVUrVliWSuIivu_ * param_0001437d, List_1_znMZhiOLtznjGEIVUrVliWSuIivu_ * param_0001437e, MethodInfo * method)); +DO_APP_FUNC(0x021BE880, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_yFImYjAqRxBPEZMejNfRNACvewtK, (List_1_znMZhiOLtznjGEIVUrVliWSuIivu_ * * param_0001437d, List_1_znMZhiOLtznjGEIVUrVliWSuIivu_ * param_0001437e, MethodInfo * method)); DO_APP_FUNC(0x021BEEA0, znMZhiOLtznjGEIVUrVliWSuIivu *, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_YYJzNPKEXAxhfAdixlXIrGCykalT, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA * __this, void * param_0001437f, YGRBAcfQwvGWVUaYYJtDYIzQnxML * param_00014380, IList_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ * param_00014381, List_1_System_String_ * param_00014382, int32_t param_00014383, MethodInfo * method)); DO_APP_FUNC(0x021BF3A0, znMZhiOLtznjGEIVUrVliWSuIivu *, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_aSEqwGfwhyGhDNSvJLpTkvYubsAQ, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA * __this, JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb param_00014384, int32_t param_00014385, MethodInfo * method)); DO_APP_FUNC(0x021BF5D0, znMZhiOLtznjGEIVUrVliWSuIivu *, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_NzENlxBicHHfwhbEyvVuibaOubHmA, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA * __this, DMTdpOkPdJDUQJGWRYyKbMtKOoSj__Enum param_00014386, uKZrdNmKhYlWXSGMEBBcLOFVDMcG * param_00014387, void * param_00014388, uint16_t param_00014389, uint16_t param_0001438a, int32_t param_0001438b, MethodInfo * method)); @@ -79380,6 +90446,7 @@ DO_APP_FUNC(0x021BFA50, int32_t, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_nZNpCwKQEDJASqrfe DO_APP_FUNC(0x021BFAE0, znMZhiOLtznjGEIVUrVliWSuIivu *, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_urYEtjrtcDArqXthNPTUrArAobFW, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA * __this, DMTdpOkPdJDUQJGWRYyKbMtKOoSj__Enum param_0001438e, void * param_0001438f, int32_t param_00014390, uKZrdNmKhYlWXSGMEBBcLOFVDMcG * param_00014391, List_1_znMZhiOLtznjGEIVUrVliWSuIivu_ * param_00014392, bool param_00014393, MethodInfo * method)); DO_APP_FUNC(0x021C0A30, znMZhiOLtznjGEIVUrVliWSuIivu *, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_BjszJCjMvjvocbSLivGdTmhbzGuJ, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA * __this, DMTdpOkPdJDUQJGWRYyKbMtKOoSj__Enum param_00014394, void * param_00014395, MethodInfo * method)); DO_APP_FUNC(0x021C0B60, int32_t, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_cqbqforPUOKfyOGlsPzmSsXTrnRR, (znMZhiOLtznjGEIVUrVliWSuIivu * param_00014396, znMZhiOLtznjGEIVUrVliWSuIivu * param_00014397, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2078, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_cqbqforPUOKfyOGlsPzmSsXTrnRR__MethodInfo); DO_APP_FUNC(0x021C0D30, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_dlQCxZHyRguEnkIdqKttynrwEvjbA, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA * __this, MethodInfo * method)); DO_APP_FUNC(0x021C0E60, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_xtDDwEaKDGMPVChdKLaECIfqgFOBB, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA * __this, MethodInfo * method)); DO_APP_FUNC(0x021C0F40, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_uXUlkfEQpNotDqLRNjcKknkLomFR, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA * __this, MethodInfo * method)); @@ -79390,8 +90457,8 @@ DO_APP_FUNC(0x021C1760, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_yJFgULdhbdEGzIFbFpAl DO_APP_FUNC(0x021C1A10, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_WTBDNCINsszrlttJQLtiWtfxXMxIA, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA * __this, void * param_00014398, MethodInfo * method)); DO_APP_FUNC(0x021C1AA0, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_fMgZbaQbsGJaAvKeQTKPyrDoWjTv, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA * __this, MethodInfo * method)); DO_APP_FUNC(0x021C1B10, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_JKxGyLcedOUmHoAUvKfCgljCeHgyB, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA * __this, MethodInfo * method)); -DO_APP_FUNC(0x021C1C70, bool, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_KRSUgNkIOyoPDuJXCamEklXQyYlF, (TCRXlPQtHbINhZHaJSiRiOxqgzebA * param_00014399, uint32_t param_0001439a, MethodInfo * method)); -DO_APP_FUNC(0x021C1D90, bool, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_KUTkSiuQmMwNIGWcDWyBGCxITsCG, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA * __this, ControllerType__Enum param_0001439b, TCRXlPQtHbINhZHaJSiRiOxqgzebA * param_0001439c, uint32_t param_0001439d, void * param_0001439e, MethodInfo * method)); +DO_APP_FUNC(0x021C1C70, bool, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_KRSUgNkIOyoPDuJXCamEklXQyYlF, (TCRXlPQtHbINhZHaJSiRiOxqgzebA * param_00014399, uint32_t * param_0001439a, MethodInfo * method)); +DO_APP_FUNC(0x021C1D90, bool, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_KUTkSiuQmMwNIGWcDWyBGCxITsCG, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA * __this, ControllerType__Enum param_0001439b, TCRXlPQtHbINhZHaJSiRiOxqgzebA * param_0001439c, uint32_t param_0001439d, void * * param_0001439e, MethodInfo * method)); DO_APP_FUNC(0x021C1EB0, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_xRkEtGLLoXpUzhdSDOyOZveUWqnd, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA * __this, void * param_0001439f, MethodInfo * method)); DO_APP_FUNC(0x021C1F30, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_SDuobizFYAYTBfvNBGQQJTHPowiH, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA * __this, MethodInfo * method)); DO_APP_FUNC(0x021C1F40, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_ZqhCOlqJCRCUKFSmkceRCPKcUMypA, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA * __this, MethodInfo * method)); @@ -79401,29 +90468,41 @@ DO_APP_FUNC(0x021C2390, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_rMouzHCLBWJQltreuKht DO_APP_FUNC(0x021C24D0, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_ZiRVrdGEzwXynRGkbxDdbsvipLpS, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA * __this, MethodInfo * method)); DO_APP_FUNC(0x021C2D70, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_izcDbdDcVXBxvIIgFOEduyOwqEHfA, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA * __this, MethodInfo * method)); DO_APP_FUNC(0x021C3610, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_QrXFebqXXbAVDTTdwPeoJOGaSwyf, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA * __this, ZMqjCYehEKqIQMMhejVBKtVTTPMf_tkPDljFlUTWCqmeHEUtBSxPpHDmqA * param_000143a0, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1E70, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_QrXFebqXXbAVDTTdwPeoJOGaSwyf__MethodInfo); DO_APP_FUNC(0x021C37E0, ZMqjCYehEKqIQMMhejVBKtVTTPMf *, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_LItLTAzgixUuivOfwNtjVivrcpSEA, (ZMqjCYehEKqIQMMhejVBKtVTTPMf_tkPDljFlUTWCqmeHEUtBSxPpHDmqA * param_000143a1, MethodInfo * method)); DO_APP_FUNC(0x021C38F0, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_oqMbgaksbBHSmzoSbfYmpxJZXJIAA, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA * __this, MethodInfo * method)); DO_APP_FUNC(0x021C3E80, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_TNKbnwZnqaGiRBQDGdETghYOFHEfA, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA * __this, MethodInfo * method)); DO_APP_FUNC(0x021C40E0, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_gamhKnXvKqVvgvgunEpKeBsqBnBD, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA * __this, bool param_000143a2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD20D8, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_gamhKnXvKqVvgvgunEpKeBsqBnBD__MethodInfo); DO_APP_FUNC(0x021C4120, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_sebUdMxnMBIyJcHlZmDBJWPhpossB, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA * __this, FullScreenMode__Enum param_000143a3, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD20E8, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_sebUdMxnMBIyJcHlZmDBJWPhpossB__MethodInfo); DO_APP_FUNC(0x021C42A0, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_lCxnptdmiFeeVFpFePQlrtFLaKteb, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA * __this, void * param_000143a4, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD20D0, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_lCxnptdmiFeeVFpFePQlrtFLaKteb__MethodInfo); DO_APP_FUNC(0x021C42E0, void *, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_ufXhCfVwREvFzeIKHBjAtIunzaCc, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA * __this, void * param_000143a5, uint32_t param_000143a6, void * param_000143a7, void * param_000143a8, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD20E0, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_ufXhCfVwREvFzeIKHBjAtIunzaCc__MethodInfo); DO_APP_FUNC(0x0200A020, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_SoEMyWpuhBQSGgNeEfVoDSzylkrPA, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA * __this, Action * param_000143a9, bool param_000143aa, MethodInfo * method)); DO_APP_FUNC(0x021C4390, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_qaJEHBZmGNHXWaVQItIGQgXZgArVA, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA * __this, HAtiKZlBnjTWOWEtNgXBPPGKUhuP param_000143ab, double param_000143ac, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1EE0, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_qaJEHBZmGNHXWaVQItIGQgXZgArVA__MethodInfo); DO_APP_FUNC(0x021C45B0, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_kFFjJaCRYXxmJvSbuZiIsleuuMWcA, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA * __this, fsRiDBEERnIQlMGEHJRgRRiEbYqF param_000143ad, double param_000143ae, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1EE8, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_kFFjJaCRYXxmJvSbuZiIsleuuMWcA__MethodInfo); DO_APP_FUNC(0x021C46D0, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_ADDbwiNjpjkonrTxbKjUIneLYJxJ, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA * __this, dizNapQvKwuvFnHArdMGFroDLpMDb * param_000143af, double param_000143b0, MethodInfo * method)); DO_APP_FUNC(0x021C4700, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_UXbSrpzFMxFCHZkgHXwdsVzfXAjb, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA * __this, KGpfpVumzcziOxJRZbURZTEAJARe param_000143b1, double param_000143b2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1F00, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_UXbSrpzFMxFCHZkgHXwdsVzfXAjb__MethodInfo); DO_APP_FUNC(0x021C4810, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_NaKRaUqEduOzrLjVerSyyajTJpKS, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA * __this, AdxpHlVvHbUFAoIBbwQQELBqZvLB * param_000143b3, double param_000143b4, MethodInfo * method)); DO_APP_FUNC(0x021C4840, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_EmKxCoDZowoQwDceBPXxQVEQlqzG, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA * __this, void * param_000143b5, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1F08, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_EmKxCoDZowoQwDceBPXxQVEQlqzG__MethodInfo); DO_APP_FUNC(0x021C4840, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_DAogfwlHxBhSrODcKhQdhuCebwRM, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1EF0, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_DAogfwlHxBhSrODcKhQdhuCebwRM__MethodInfo); DO_APP_FUNC(0x021C4850, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_Dispose, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA * __this, MethodInfo * method)); DO_APP_FUNC(0x021C48C0, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_koAztZrcZLyuMlaqoUCpAMQQIsgb, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA * __this, MethodInfo * method)); DO_APP_FUNC(0x021C4910, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_ixmAePEnLRGjkiYJbCTfPNBHXEcwB, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA * __this, bool param_000143b6, MethodInfo * method)); -DO_APP_FUNC(0x021C5100, bool, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_NYDcBdCvbTpQZDtHFKHIIOFXDWsYA, (eVXRkvwNiDDgOEqoJybjZlbHcejCA__Enum param_000143b7, int32_t param_000143b8, MethodInfo * method)); +DO_APP_FUNC(0x021C5100, bool, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_NYDcBdCvbTpQZDtHFKHIIOFXDWsYA, (eVXRkvwNiDDgOEqoJybjZlbHcejCA__Enum param_000143b7, int32_t * param_000143b8, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1EA0, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_NYDcBdCvbTpQZDtHFKHIIOFXDWsYA__MethodInfo); DO_APP_FUNC(0x021C5530, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA__cctor, (MethodInfo * method)); DO_APP_FUNC(0x021C5780, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_hUpdaoQEbllsRpmCLDhzWcFrDjOHA__ctor, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA_hUpdaoQEbllsRpmCLDhzWcFrDjOHA * __this, uint16_t param_000143b9, uint16_t param_000143ba, MethodInfo * method)); DO_APP_FUNC(0x021C5790, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_tHcuMrcnEhbKRfgsSwbqOsBBnpSm *, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_tHcuMrcnEhbKRfgsSwbqOsBBnpSm_WZTwlTeOHTGIIPKMkjqtIivLxoyM, (void * param_000143bb, String * param_000143bc, MethodInfo * method)); DO_APP_FUNC(0x021C5840, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_tHcuMrcnEhbKRfgsSwbqOsBBnpSm__ctor, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA_tHcuMrcnEhbKRfgsSwbqOsBBnpSm * __this, void * param_000143bd, String * param_000143be, String * param_000143bf, String * param_000143c0, String * param_000143c1, int32_t param_000143c2, int32_t param_000143c3, bool param_000143c4, String * param_000143c5, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1E30, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_tHcuMrcnEhbKRfgsSwbqOsBBnpSm__ctor__MethodInfo); DO_APP_FUNC(0x003BB3D0, void *, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_tHcuMrcnEhbKRfgsSwbqOsBBnpSm_XaFgejwFzhZVSbfciOuoSdSnGXlO, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA_tHcuMrcnEhbKRfgsSwbqOsBBnpSm * __this, MethodInfo * method)); DO_APP_FUNC(0x00936140, bool, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_tHcuMrcnEhbKRfgsSwbqOsBBnpSm_GIpdtvFFoSYQYjMWDivKqpeiAGPsA, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA_tHcuMrcnEhbKRfgsSwbqOsBBnpSm * __this, MethodInfo * method)); DO_APP_FUNC(0x00936150, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_tHcuMrcnEhbKRfgsSwbqOsBBnpSm_yTTybkbIOmtECCrpveyMRCaCLcbk, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA_tHcuMrcnEhbKRfgsSwbqOsBBnpSm * __this, bool param_000143c6, MethodInfo * method)); @@ -79435,12 +90514,16 @@ DO_APP_FUNC(0x0041AF00, bool, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_tHcuMrcnEhbKRfgsSwbq DO_APP_FUNC(0x003AE050, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_tHcuMrcnEhbKRfgsSwbqOsBBnpSm_soPqSrKQOExwkwjVhnxgvGZAtSoD, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA_tHcuMrcnEhbKRfgsSwbqOsBBnpSm * __this, bool param_000143c7, MethodInfo * method)); DO_APP_FUNC(0x021C60A0, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_tHcuMrcnEhbKRfgsSwbqOsBBnpSm_LsxzSvQljPCBNjPFaBuztJosGZLTA, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA_tHcuMrcnEhbKRfgsSwbqOsBBnpSm * __this, MethodInfo * method)); DO_APP_FUNC(0x021C60D0, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_tHcuMrcnEhbKRfgsSwbqOsBBnpSm_LsxzSvQljPCBNjPFaBuztJosGZLTA_1, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA_tHcuMrcnEhbKRfgsSwbqOsBBnpSm * __this, CXcjWwmjwkDPvbUGOUBrzXtVCjZi__Enum param_000143c8, CXcjWwmjwkDPvbUGOUBrzXtVCjZi__Enum param_000143c9, TxIEpSdEtyyzpeNinAApugagRQDUA__Enum param_000143ca, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1E18, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_tHcuMrcnEhbKRfgsSwbqOsBBnpSm_LsxzSvQljPCBNjPFaBuztJosGZLTA_1__MethodInfo); DO_APP_FUNC(0x021C61B0, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_tHcuMrcnEhbKRfgsSwbqOsBBnpSm_cAZzGAFVtGTVqldvdlrLVMTtaDJm, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA_tHcuMrcnEhbKRfgsSwbqOsBBnpSm * __this, MethodInfo * method)); -DO_APP_FUNC(0x021C6240, bool, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_tHcuMrcnEhbKRfgsSwbqOsBBnpSm_YCTIEluofjTCejnNUmMWdqilaNeq, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA_tHcuMrcnEhbKRfgsSwbqOsBBnpSm * __this, Byte__Array * param_000143cb, uint8_t param_000143cc, MethodInfo * method)); +DO_APP_FUNC(0x021C6240, bool, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_tHcuMrcnEhbKRfgsSwbqOsBBnpSm_YCTIEluofjTCejnNUmMWdqilaNeq, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA_tHcuMrcnEhbKRfgsSwbqOsBBnpSm * __this, Byte__Array * * param_000143cb, uint8_t param_000143cc, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1E50, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_tHcuMrcnEhbKRfgsSwbqOsBBnpSm_YCTIEluofjTCejnNUmMWdqilaNeq__MethodInfo); DO_APP_FUNC(0x021C66D0, String *, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_tHcuMrcnEhbKRfgsSwbqOsBBnpSm_SubPZWelNjPfpFKQprUiEGtTCKoT, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA_tHcuMrcnEhbKRfgsSwbqOsBBnpSm * __this, MethodInfo * method)); -DO_APP_FUNC(0x021C6850, bool, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_tHcuMrcnEhbKRfgsSwbqOsBBnpSm_SubPZWelNjPfpFKQprUiEGtTCKoT_1, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA_tHcuMrcnEhbKRfgsSwbqOsBBnpSm * __this, Byte__Array * param_000143cd, MethodInfo * method)); +DO_APP_FUNC(0x021C6850, bool, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_tHcuMrcnEhbKRfgsSwbqOsBBnpSm_SubPZWelNjPfpFKQprUiEGtTCKoT_1, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA_tHcuMrcnEhbKRfgsSwbqOsBBnpSm * __this, Byte__Array * * param_000143cd, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1E40, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_tHcuMrcnEhbKRfgsSwbqOsBBnpSm_SubPZWelNjPfpFKQprUiEGtTCKoT_1__MethodInfo); DO_APP_FUNC(0x021C6BB0, String *, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_tHcuMrcnEhbKRfgsSwbqOsBBnpSm_zMshNnjnoiaNvsDGymMUHoypjaxc, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA_tHcuMrcnEhbKRfgsSwbqOsBBnpSm * __this, MethodInfo * method)); -DO_APP_FUNC(0x021C6D10, bool, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_tHcuMrcnEhbKRfgsSwbqOsBBnpSm_zMshNnjnoiaNvsDGymMUHoypjaxc_1, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA_tHcuMrcnEhbKRfgsSwbqOsBBnpSm * __this, Byte__Array * param_000143ce, MethodInfo * method)); +DO_APP_FUNC(0x021C6D10, bool, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_tHcuMrcnEhbKRfgsSwbqOsBBnpSm_zMshNnjnoiaNvsDGymMUHoypjaxc_1, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA_tHcuMrcnEhbKRfgsSwbqOsBBnpSm * __this, Byte__Array * * param_000143ce, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1E08, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_tHcuMrcnEhbKRfgsSwbqOsBBnpSm_zMshNnjnoiaNvsDGymMUHoypjaxc_1__MethodInfo); DO_APP_FUNC(0x003C91F0, ORTGfyrtizZvDeIlwUvooZaSkBIl__Array *, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_tHcuMrcnEhbKRfgsSwbqOsBBnpSm_ovlaQGLyvutoxyqLoLwldWOrUDrx, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA_tHcuMrcnEhbKRfgsSwbqOsBBnpSm * __this, MethodInfo * method)); DO_APP_FUNC(0x003C9200, xPRgcRKBLoHYedzPQnPxbmJxtbbAb__Array *, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_tHcuMrcnEhbKRfgsSwbqOsBBnpSm_RCQbsNbKVdCLIRWWIYjAbTsXtySHA, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA_tHcuMrcnEhbKRfgsSwbqOsBBnpSm * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7390, String *, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_tHcuMrcnEhbKRfgsSwbqOsBBnpSm_tlQGztXCUFthjfzWjqlFtctQfxAu, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA_tHcuMrcnEhbKRfgsSwbqOsBBnpSm * __this, MethodInfo * method)); @@ -79456,26 +90539,37 @@ DO_APP_FUNC(0x021C6FD0, Byte__Array *, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_tHcuMrcnEhb DO_APP_FUNC(0x021C7030, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_pLALiLGugFVPZvFGJIhmDJanjJCAA__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_pLALiLGugFVPZvFGJIhmDJanjJCAA__ctor, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA_pLALiLGugFVPZvFGJIhmDJanjJCAA * __this, MethodInfo * method)); DO_APP_FUNC(0x021C70E0, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_pLALiLGugFVPZvFGJIhmDJanjJCAA_USLFHfJbdJKQVadcfEUsLynOuEeTb, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA_pLALiLGugFVPZvFGJIhmDJanjJCAA * __this, znMZhiOLtznjGEIVUrVliWSuIivu * param_000143d1, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1F90, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_pLALiLGugFVPZvFGJIhmDJanjJCAA_USLFHfJbdJKQVadcfEUsLynOuEeTb__MethodInfo); DO_APP_FUNC(0x003AE050, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_wKBMOBVdNMFvqFDBJcHFYpmayfRS__ctor, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA_wKBMOBVdNMFvqFDBJcHFYpmayfRS * __this, MethodInfo * method)); DO_APP_FUNC(0x021C7130, bool, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_wKBMOBVdNMFvqFDBJcHFYpmayfRS_HmhmDwbguskoBEqqZKczxWLHGsoR, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA_wKBMOBVdNMFvqFDBJcHFYpmayfRS * __this, String * param_000143d2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2000, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_wKBMOBVdNMFvqFDBJcHFYpmayfRS_HmhmDwbguskoBEqqZKczxWLHGsoR__MethodInfo); DO_APP_FUNC(0x003AE050, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_hnNyodFGRElgLSzHCgUPXWVnGvdg__ctor, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA_hnNyodFGRElgLSzHCgUPXWVnGvdg * __this, MethodInfo * method)); DO_APP_FUNC(0x021C7290, bool, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_hnNyodFGRElgLSzHCgUPXWVnGvdg_FfapGevUiVmIYIIxKnOhguXUfPmS, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA_hnNyodFGRElgLSzHCgUPXWVnGvdg * __this, znMZhiOLtznjGEIVUrVliWSuIivu * param_000143d3, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2070, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_hnNyodFGRElgLSzHCgUPXWVnGvdg_FfapGevUiVmIYIIxKnOhguXUfPmS__MethodInfo); DO_APP_FUNC(0x003AE050, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_GTvGFxRFzpOUREzXrZDCUjbScOHJ__ctor, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA_GTvGFxRFzpOUREzXrZDCUjbScOHJ * __this, MethodInfo * method)); DO_APP_FUNC(0x021C7370, Byte__Array *, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_GTvGFxRFzpOUREzXrZDCUjbScOHJ_tsPIejaXDkFMKKfYbqEJzcLWeLQy, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA_GTvGFxRFzpOUREzXrZDCUjbScOHJ * __this, uint8_t param_000143d4, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1FD0, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_GTvGFxRFzpOUREzXrZDCUjbScOHJ_tsPIejaXDkFMKKfYbqEJzcLWeLQy__MethodInfo); DO_APP_FUNC(0x003AE050, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_EudWpfUaVkMWIWGwWnmGkpaEufCF__ctor, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA_EudWpfUaVkMWIWGwWnmGkpaEufCF * __this, MethodInfo * method)); DO_APP_FUNC(0x021C7450, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_EudWpfUaVkMWIWGwWnmGkpaEufCF_LNNiTqXYEwfAkAWEbYwyXcaOaupq, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA_EudWpfUaVkMWIWGwWnmGkpaEufCF * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1F60, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_EudWpfUaVkMWIWGwWnmGkpaEufCF_LNNiTqXYEwfAkAWEbYwyXcaOaupq__MethodInfo); DO_APP_FUNC(0x003AE050, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_ClDTABYsniHDdeVYBfnurTEzopUjA__ctor, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA_ClDTABYsniHDdeVYBfnurTEzopUjA * __this, MethodInfo * method)); DO_APP_FUNC(0x021C75C0, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_ClDTABYsniHDdeVYBfnurTEzopUjA_gOrGfijnvJvFlJUFCDshUBhGpKNrA, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA_ClDTABYsniHDdeVYBfnurTEzopUjA * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1F40, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_ClDTABYsniHDdeVYBfnurTEzopUjA_gOrGfijnvJvFlJUFCDshUBhGpKNrA__MethodInfo); DO_APP_FUNC(0x003AE050, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_duOBKFiKPZioaWPKwoFTxiyHVtjE__ctor, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA_duOBKFiKPZioaWPKwoFTxiyHVtjE * __this, MethodInfo * method)); DO_APP_FUNC(0x021C7650, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_duOBKFiKPZioaWPKwoFTxiyHVtjE_zlpdyFLdZctmGCtNgSVSyDVrTxgv, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA_duOBKFiKPZioaWPKwoFTxiyHVtjE * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1F78, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_duOBKFiKPZioaWPKwoFTxiyHVtjE_zlpdyFLdZctmGCtNgSVSyDVrTxgv__MethodInfo); DO_APP_FUNC(0x003AE050, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_AYMuEYEJYFDsvzTwBMYcMfYqEKLc__ctor, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA_AYMuEYEJYFDsvzTwBMYcMfYqEKLc * __this, MethodInfo * method)); DO_APP_FUNC(0x021C76B0, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_AYMuEYEJYFDsvzTwBMYcMfYqEKLc_NKEnBbVUudBMljSKKAzUFpVeBIiL, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA_AYMuEYEJYFDsvzTwBMYcMfYqEKLc * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1EC8, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_AYMuEYEJYFDsvzTwBMYcMfYqEKLc_NKEnBbVUudBMljSKKAzUFpVeBIiL__MethodInfo); DO_APP_FUNC(0x003AE050, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_KoMOdQDxpgPjKjgGZZknfoBiPpoc__ctor, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA_KoMOdQDxpgPjKjgGZZknfoBiPpoc * __this, MethodInfo * method)); DO_APP_FUNC(0x021C7750, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_KoMOdQDxpgPjKjgGZZknfoBiPpoc_UOouZlSnxBoInuPAArjqEYCucgEL, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA_KoMOdQDxpgPjKjgGZZknfoBiPpoc * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1EB8, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_KoMOdQDxpgPjKjgGZZknfoBiPpoc_UOouZlSnxBoInuPAArjqEYCucgEL__MethodInfo); DO_APP_FUNC(0x003AE050, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_MWXWwPbumsHUmhTKqjUOnMwOCbRDA__ctor, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA_MWXWwPbumsHUmhTKqjUOnMwOCbRDA * __this, MethodInfo * method)); DO_APP_FUNC(0x021C77F0, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_MWXWwPbumsHUmhTKqjUOnMwOCbRDA_dnJbLgGRMCrJCUwLUdSKaKPLRULbb, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA_MWXWwPbumsHUmhTKqjUOnMwOCbRDA * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1F20, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_MWXWwPbumsHUmhTKqjUOnMwOCbRDA_dnJbLgGRMCrJCUwLUdSKaKPLRULbb__MethodInfo); DO_APP_FUNC(0x003AE050, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_arqVnzNJHGvifXPSCBughnhbuUXqA__ctor, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA_arqVnzNJHGvifXPSCBughnhbuUXqA * __this, MethodInfo * method)); DO_APP_FUNC(0x021C7850, void, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_arqVnzNJHGvifXPSCBughnhbuUXqA_KoVNSBVBGCrVcQaxhwlljpeRlGEd, (eiAEQUagfGTjXRjdiGwJDzSBPdYSA_arqVnzNJHGvifXPSCBughnhbuUXqA * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1E88, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_arqVnzNJHGvifXPSCBughnhbuUXqA_KoVNSBVBGCrVcQaxhwlljpeRlGEd__MethodInfo); DO_APP_FUNC(0x021C7A70, void, AJsmGXHTskPzBiTBDSfAEVsAgBQd__cctor, (MethodInfo * method)); DO_APP_FUNC(0x021C85A0, void, AJsmGXHTskPzBiTBDSfAEVsAgBQd__ctor, (AJsmGXHTskPzBiTBDSfAEVsAgBQd * __this, UpdateLoopSetting__Enum param_000143d5, MethodInfo * method)); DO_APP_FUNC(0x021C8CC0, void, AJsmGXHTskPzBiTBDSfAEVsAgBQd_zRKKKxhkoOArpcmrZNscrEthKMVOA, (AJsmGXHTskPzBiTBDSfAEVsAgBQd * __this, UpdateLoopType__Enum param_000143d6, MethodInfo * method)); @@ -79484,9 +90578,13 @@ DO_APP_FUNC(0x021C9640, void, AJsmGXHTskPzBiTBDSfAEVsAgBQd_QCvsuWJxFrhKcdFpCuxGI DO_APP_FUNC(0x021C9650, void, AJsmGXHTskPzBiTBDSfAEVsAgBQd_bvGRdnqZAdIXWRsfXuiVDJqJSiLq, (AJsmGXHTskPzBiTBDSfAEVsAgBQd * __this, bool param_000143d9, MethodInfo * method)); DO_APP_FUNC(0x021C9680, int32_t, AJsmGXHTskPzBiTBDSfAEVsAgBQd_fDtbKAKSNOtFxIkbaOuyrTqdkPwT, (AJsmGXHTskPzBiTBDSfAEVsAgBQd * __this, MethodInfo * method)); DO_APP_FUNC(0x021C9710, void, AJsmGXHTskPzBiTBDSfAEVsAgBQd_rgfQbQAQZnhQQUPMpXJcskNFtriO, (AJsmGXHTskPzBiTBDSfAEVsAgBQd * __this, bool param_000143da, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1D80, AJsmGXHTskPzBiTBDSfAEVsAgBQd_rgfQbQAQZnhQQUPMpXJcskNFtriO__MethodInfo); DO_APP_FUNC(0x003AE050, void, AJsmGXHTskPzBiTBDSfAEVsAgBQd_qeLBvgeaEVaHDHvhhUrtNMQINEjy, (AJsmGXHTskPzBiTBDSfAEVsAgBQd * __this, bool param_000143db, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1DA0, AJsmGXHTskPzBiTBDSfAEVsAgBQd_qeLBvgeaEVaHDHvhhUrtNMQINEjy__MethodInfo); DO_APP_FUNC(0x021C9780, void, AJsmGXHTskPzBiTBDSfAEVsAgBQd_MxJuIiwOfPVNisMeLcGvKbXbOjzCA, (AJsmGXHTskPzBiTBDSfAEVsAgBQd * __this, bool param_000143dc, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1D98, AJsmGXHTskPzBiTBDSfAEVsAgBQd_MxJuIiwOfPVNisMeLcGvKbXbOjzCA__MethodInfo); DO_APP_FUNC(0x021C9950, void, AJsmGXHTskPzBiTBDSfAEVsAgBQd_VVplYfaiXJyOPsEWofOgGbIHjsSX, (AJsmGXHTskPzBiTBDSfAEVsAgBQd * __this, UpdateLoopType__Enum param_000143dd, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1DA8, AJsmGXHTskPzBiTBDSfAEVsAgBQd_VVplYfaiXJyOPsEWofOgGbIHjsSX__MethodInfo); DO_APP_FUNC(0x021C9AB0, void, AJsmGXHTskPzBiTBDSfAEVsAgBQd_gJNpiFpGDKxaXxAScBmKaUyezLtlA, (AJsmGXHTskPzBiTBDSfAEVsAgBQd * __this, MethodInfo * method)); DO_APP_FUNC(0x00897450, bool, AJsmGXHTskPzBiTBDSfAEVsAgBQd_get_enabled, (AJsmGXHTskPzBiTBDSfAEVsAgBQd * __this, MethodInfo * method)); DO_APP_FUNC(0x021C9C30, void, AJsmGXHTskPzBiTBDSfAEVsAgBQd_set_enabled, (AJsmGXHTskPzBiTBDSfAEVsAgBQd * __this, bool value, MethodInfo * method)); @@ -79502,7 +90600,7 @@ DO_APP_FUNC(0x021C48C0, void, AJsmGXHTskPzBiTBDSfAEVsAgBQd_koAztZrcZLyuMlaqoUCpA DO_APP_FUNC(0x021CA430, void, AJsmGXHTskPzBiTBDSfAEVsAgBQd_ixmAePEnLRGjkiYJbCTfPNBHXEcwB, (AJsmGXHTskPzBiTBDSfAEVsAgBQd * __this, bool param_000143e0, MethodInfo * method)); DO_APP_FUNC(0x021CA5D0, int32_t, AJsmGXHTskPzBiTBDSfAEVsAgBQd_zgfpSFezhrbwYbABXDJHvkkVAlAiA, (AdxpHlVvHbUFAoIBbwQQELBqZvLB * param_000143e1, KeyCode__Enum__Array * param_000143e2, MethodInfo * method)); DO_APP_FUNC(0x021CB960, qUaeyIgVCufmDzatlipvlpwBwlinA_cyAAlzRafJbONGrhwijrhGXhJQshA__Enum, AJsmGXHTskPzBiTBDSfAEVsAgBQd_zWSGBRFzuzLnnttxqVCoeLEJmyCC, (MethodInfo * method)); -DO_APP_FUNC(0x021CBC80, bool, AJsmGXHTskPzBiTBDSfAEVsAgBQd_IFQBQdfDSzVGXlrcDkjownkUASIx, (Keys__Enum param_000143e3, qUaeyIgVCufmDzatlipvlpwBwlinA_cyAAlzRafJbONGrhwijrhGXhJQshA__Enum param_000143e4, KeyCode__Enum param_000143e5, MethodInfo * method)); +DO_APP_FUNC(0x021CBC80, bool, AJsmGXHTskPzBiTBDSfAEVsAgBQd_IFQBQdfDSzVGXlrcDkjownkUASIx, (Keys__Enum param_000143e3, qUaeyIgVCufmDzatlipvlpwBwlinA_cyAAlzRafJbONGrhwijrhGXhJQshA__Enum param_000143e4, KeyCode__Enum * param_000143e5, MethodInfo * method)); DO_APP_FUNC(0x021CBE30, bool, AJsmGXHTskPzBiTBDSfAEVsAgBQd_OAgyLCHBLGZBhjJowsXBVCdllnuS, (Keys__Enum param_000143e6, MethodInfo * method)); DO_APP_FUNC(0x021CBEA0, void, AJsmGXHTskPzBiTBDSfAEVsAgBQd_ScAUiPDVTJpqftJwGhLKjPCZiivt__ctor, (AJsmGXHTskPzBiTBDSfAEVsAgBQd_ScAUiPDVTJpqftJwGhLKjPCZiivt * __this, UpdateLoopType__Enum param_000143e7, MethodInfo * method)); DO_APP_FUNC(0x021CBFB0, void, AJsmGXHTskPzBiTBDSfAEVsAgBQd_ScAUiPDVTJpqftJwGhLKjPCZiivt_yMyycmDTkhPFqHdHGmZkguUjhtqj, (AJsmGXHTskPzBiTBDSfAEVsAgBQd_ScAUiPDVTJpqftJwGhLKjPCZiivt * __this, AdxpHlVvHbUFAoIBbwQQELBqZvLB * param_000143e8, MethodInfo * method)); @@ -79519,9 +90617,13 @@ DO_APP_FUNC(0x021CCD90, void, mnnDsnejpZEXCYBwEaOUubxgEUzu_QCvsuWJxFrhKcdFpCuxGI DO_APP_FUNC(0x021CCDA0, void, mnnDsnejpZEXCYBwEaOUubxgEUzu_bvGRdnqZAdIXWRsfXuiVDJqJSiLq, (mnnDsnejpZEXCYBwEaOUubxgEUzu * __this, bool param_000143ee, MethodInfo * method)); DO_APP_FUNC(0x021CCDD0, int32_t, mnnDsnejpZEXCYBwEaOUubxgEUzu_ndADnCrupYOOQTPrivKjdAJuFQRK, (mnnDsnejpZEXCYBwEaOUubxgEUzu * __this, MethodInfo * method)); DO_APP_FUNC(0x021CCED0, void, mnnDsnejpZEXCYBwEaOUubxgEUzu_rgfQbQAQZnhQQUPMpXJcskNFtriO, (mnnDsnejpZEXCYBwEaOUubxgEUzu * __this, bool param_000143ef, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1CE0, mnnDsnejpZEXCYBwEaOUubxgEUzu_rgfQbQAQZnhQQUPMpXJcskNFtriO__MethodInfo); DO_APP_FUNC(0x003AE050, void, mnnDsnejpZEXCYBwEaOUubxgEUzu_qeLBvgeaEVaHDHvhhUrtNMQINEjy, (mnnDsnejpZEXCYBwEaOUubxgEUzu * __this, bool param_000143f0, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1D00, mnnDsnejpZEXCYBwEaOUubxgEUzu_qeLBvgeaEVaHDHvhhUrtNMQINEjy__MethodInfo); DO_APP_FUNC(0x021CCF50, void, mnnDsnejpZEXCYBwEaOUubxgEUzu_MxJuIiwOfPVNisMeLcGvKbXbOjzCA, (mnnDsnejpZEXCYBwEaOUubxgEUzu * __this, bool param_000143f1, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1CF0, mnnDsnejpZEXCYBwEaOUubxgEUzu_MxJuIiwOfPVNisMeLcGvKbXbOjzCA__MethodInfo); DO_APP_FUNC(0x021CD120, void, mnnDsnejpZEXCYBwEaOUubxgEUzu_VVplYfaiXJyOPsEWofOgGbIHjsSX, (mnnDsnejpZEXCYBwEaOUubxgEUzu * __this, UpdateLoopType__Enum param_000143f2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1D08, mnnDsnejpZEXCYBwEaOUubxgEUzu_VVplYfaiXJyOPsEWofOgGbIHjsSX__MethodInfo); DO_APP_FUNC(0x021CD280, void, mnnDsnejpZEXCYBwEaOUubxgEUzu_KuTtjDvODMNrYipBYSbTSOujDsei, (mnnDsnejpZEXCYBwEaOUubxgEUzu * __this, MethodInfo * method)); DO_APP_FUNC(0x00424C90, bool, mnnDsnejpZEXCYBwEaOUubxgEUzu_get_enabled, (mnnDsnejpZEXCYBwEaOUubxgEUzu * __this, MethodInfo * method)); DO_APP_FUNC(0x021CD420, void, mnnDsnejpZEXCYBwEaOUubxgEUzu_set_enabled, (mnnDsnejpZEXCYBwEaOUubxgEUzu * __this, bool value, MethodInfo * method)); @@ -79556,9 +90658,11 @@ DO_APP_FUNC(0x003D2F30, int32_t, WEPwwhsQpvkXBmQtlecPERdWRTWF_hGQexhgoVPxAqrtuap DO_APP_FUNC(0x003BB3C0, void *, fxvJDhgRhXRzTcBpAdpZBRnzpmHIb_LhqzQPbGeguGwHTghCOzOuMxMPAf, (fxvJDhgRhXRzTcBpAdpZBRnzpmHIb * __this, MethodInfo * method)); DO_APP_FUNC(0x021CEE10, void, fxvJDhgRhXRzTcBpAdpZBRnzpmHIb__ctor, (fxvJDhgRhXRzTcBpAdpZBRnzpmHIb * __this, int32_t param_00014405, MethodInfo * method)); DO_APP_FUNC(0x021CEE20, uint8_t, fxvJDhgRhXRzTcBpAdpZBRnzpmHIb_FFerJRvkgzZHFwaEuTtRIlRwEVuG, (fxvJDhgRhXRzTcBpAdpZBRnzpmHIb * __this, int32_t param_00014406, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1CD0, fxvJDhgRhXRzTcBpAdpZBRnzpmHIb_FFerJRvkgzZHFwaEuTtRIlRwEVuG__MethodInfo); DO_APP_FUNC(0x021CEEA0, int32_t, fxvJDhgRhXRzTcBpAdpZBRnzpmHIb_xjsHrKvIpmxOVLFnRqpMhhyqbpcl, (fxvJDhgRhXRzTcBpAdpZBRnzpmHIb * __this, uint8_t * param_00014407, int32_t param_00014408, int32_t param_00014409, int32_t param_0001440a, int32_t param_0001440b, MethodInfo * method)); DO_APP_FUNC(0x021CEF40, int32_t, fxvJDhgRhXRzTcBpAdpZBRnzpmHIb_FfqxhbnrAQRgzurMxCknJVxsddaA, (fxvJDhgRhXRzTcBpAdpZBRnzpmHIb * __this, uint8_t * param_0001440c, int32_t param_0001440d, int32_t param_0001440e, int32_t param_0001440f, int32_t param_00014410, MethodInfo * method)); DO_APP_FUNC(0x021CEFD0, bool, fxvJDhgRhXRzTcBpAdpZBRnzpmHIb_jewkQGOphjAEPDyvHBEDriCeikJZA, (fxvJDhgRhXRzTcBpAdpZBRnzpmHIb * __this, int32_t param_00014411, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1CD8, fxvJDhgRhXRzTcBpAdpZBRnzpmHIb_jewkQGOphjAEPDyvHBEDriCeikJZA__MethodInfo); DO_APP_FUNC(0x021CF180, void, fxvJDhgRhXRzTcBpAdpZBRnzpmHIb_IqeirVCUUEJhXFQOWXCdOtBiFkPb, (fxvJDhgRhXRzTcBpAdpZBRnzpmHIb * __this, MethodInfo * method)); DO_APP_FUNC(0x021CF280, void, fxvJDhgRhXRzTcBpAdpZBRnzpmHIb_gCMQybVCfRQIiGxMcilQMYINRtfk, (fxvJDhgRhXRzTcBpAdpZBRnzpmHIb * __this, MethodInfo * method)); DO_APP_FUNC(0x021CF300, String *, fxvJDhgRhXRzTcBpAdpZBRnzpmHIb_LVmcPOeqeDbqbgLicgjuWNFJdAuo, (fxvJDhgRhXRzTcBpAdpZBRnzpmHIb * __this, MethodInfo * method)); @@ -79566,8 +90670,9 @@ DO_APP_FUNC(0x021CF500, void, fxvJDhgRhXRzTcBpAdpZBRnzpmHIb_Dispose, (fxvJDhgRhX DO_APP_FUNC(0x021CF570, void, fxvJDhgRhXRzTcBpAdpZBRnzpmHIb_koAztZrcZLyuMlaqoUCpAMQQIsgb, (fxvJDhgRhXRzTcBpAdpZBRnzpmHIb * __this, MethodInfo * method)); DO_APP_FUNC(0x021CF5C0, void, fxvJDhgRhXRzTcBpAdpZBRnzpmHIb_ixmAePEnLRGjkiYJbCTfPNBHXEcwB, (fxvJDhgRhXRzTcBpAdpZBRnzpmHIb * __this, bool param_00014412, MethodInfo * method)); DO_APP_FUNC(0x021CF5E0, void, qmCgssHgeaDgijqXBUzdmdbXNPiuB__ctor, (qmCgssHgeaDgijqXBUzdmdbXNPiuB * __this, int32_t param_00014413, MethodInfo * method)); -DO_APP_FUNC(0x021CF700, int32_t, qmCgssHgeaDgijqXBUzdmdbXNPiuB_NBqUdddHeUOQUsQOgRvwgdpecfMh, (qmCgssHgeaDgijqXBUzdmdbXNPiuB * __this, uint8_t * param_00014414, int32_t param_00014415, int32_t param_00014416, int32_t param_00014417, uint32_t param_00014418, MethodInfo * method)); -DO_APP_FUNC(0x021CF8F0, int32_t, qmCgssHgeaDgijqXBUzdmdbXNPiuB_NBqUdddHeUOQUsQOgRvwgdpecfMh_1, (qmCgssHgeaDgijqXBUzdmdbXNPiuB * __this, Byte__Array * param_00014419, int32_t param_0001441a, int32_t param_0001441b, uint32_t param_0001441c, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1C88, qmCgssHgeaDgijqXBUzdmdbXNPiuB__ctor__MethodInfo); +DO_APP_FUNC(0x021CF700, int32_t, qmCgssHgeaDgijqXBUzdmdbXNPiuB_NBqUdddHeUOQUsQOgRvwgdpecfMh, (qmCgssHgeaDgijqXBUzdmdbXNPiuB * __this, uint8_t * param_00014414, int32_t param_00014415, int32_t param_00014416, int32_t * param_00014417, uint32_t * param_00014418, MethodInfo * method)); +DO_APP_FUNC(0x021CF8F0, int32_t, qmCgssHgeaDgijqXBUzdmdbXNPiuB_NBqUdddHeUOQUsQOgRvwgdpecfMh_1, (qmCgssHgeaDgijqXBUzdmdbXNPiuB * __this, Byte__Array * param_00014419, int32_t param_0001441a, int32_t * param_0001441b, uint32_t * param_0001441c, MethodInfo * method)); DO_APP_FUNC(0x021CF960, int32_t, qmCgssHgeaDgijqXBUzdmdbXNPiuB_NBqUdddHeUOQUsQOgRvwgdpecfMh_2, (qmCgssHgeaDgijqXBUzdmdbXNPiuB * __this, Byte__Array * param_0001441d, int32_t param_0001441e, MethodInfo * method)); DO_APP_FUNC(0x021CF9D0, int32_t, qmCgssHgeaDgijqXBUzdmdbXNPiuB_gtuaQrafNylUICLNGkKEzcymqpfwb, (qmCgssHgeaDgijqXBUzdmdbXNPiuB * __this, uint8_t * param_0001441f, int32_t param_00014420, int32_t param_00014421, MethodInfo * method)); DO_APP_FUNC(0x021CFB50, int32_t, qmCgssHgeaDgijqXBUzdmdbXNPiuB_gtuaQrafNylUICLNGkKEzcymqpfwb_1, (qmCgssHgeaDgijqXBUzdmdbXNPiuB * __this, Byte__Array * param_00014422, int32_t param_00014423, MethodInfo * method)); @@ -79578,19 +90683,25 @@ DO_APP_FUNC(0x021CFBA0, void, qmCgssHgeaDgijqXBUzdmdbXNPiuB_Dispose, (qmCgssHgea DO_APP_FUNC(0x0206C010, void, qmCgssHgeaDgijqXBUzdmdbXNPiuB_koAztZrcZLyuMlaqoUCpAMQQIsgb, (qmCgssHgeaDgijqXBUzdmdbXNPiuB * __this, MethodInfo * method)); DO_APP_FUNC(0x021CFC70, void, qmCgssHgeaDgijqXBUzdmdbXNPiuB_ixmAePEnLRGjkiYJbCTfPNBHXEcwB, (qmCgssHgeaDgijqXBUzdmdbXNPiuB * __this, bool param_00014426, MethodInfo * method)); DO_APP_FUNC(0x021CFD00, void, ZwvBwnPnaSevkAQfOfiwZpBxrYvmA_zSGebFFxDgckzckkiOSexYskKlXSb, (uint8_t * param_00014427, uint8_t * param_00014428, uint32_t param_00014429, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1C70, ZwvBwnPnaSevkAQfOfiwZpBxrYvmA_zSGebFFxDgckzckkiOSexYskKlXSb__MethodInfo); DO_APP_FUNC(0x021CFFE0, void, ZwvBwnPnaSevkAQfOfiwZpBxrYvmA_zSGebFFxDgckzckkiOSexYskKlXSb_1, (uint8_t * param_0001442a, uint8_t * param_0001442b, uint64_t param_0001442c, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1C80, ZwvBwnPnaSevkAQfOfiwZpBxrYvmA_zSGebFFxDgckzckkiOSexYskKlXSb_1__MethodInfo); DO_APP_FUNC(0x021D02C0, bool, ZwvBwnPnaSevkAQfOfiwZpBxrYvmA_CNBvoutbZPgbAMiwWaNuOaGjQRhC, (uint8_t * param_0001442d, uint8_t * param_0001442e, int32_t param_0001442f, int32_t param_00014430, int32_t param_00014431, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1C60, ZwvBwnPnaSevkAQfOfiwZpBxrYvmA_CNBvoutbZPgbAMiwWaNuOaGjQRhC__MethodInfo); DO_APP_FUNC(0x021D04A0, bool, ZwvBwnPnaSevkAQfOfiwZpBxrYvmA_gsrYqGKFPHcncPZHSGuLBLwADTKdA, (uint8_t * param_00014432, uint8_t * param_00014433, int32_t param_00014434, int32_t param_00014435, int32_t param_00014436, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1C58, ZwvBwnPnaSevkAQfOfiwZpBxrYvmA_gsrYqGKFPHcncPZHSGuLBLwADTKdA__MethodInfo); DO_APP_FUNC(0x021D0560, void, ZwvBwnPnaSevkAQfOfiwZpBxrYvmA_KxogBqZDLXWBbQkyBysrXjTRGoxgA, (uint8_t * param_00014437, int32_t param_00014438, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1C50, ZwvBwnPnaSevkAQfOfiwZpBxrYvmA_KxogBqZDLXWBbQkyBysrXjTRGoxgA__MethodInfo); DO_APP_FUNC(0x006B4AD0, Object *, Main_GetPlatformInitializer, (MethodInfo * method)); -DO_APP_FUNC(0x00C0F590, bool, GFKZjHfobKJLrxczgBweGNPXMszRA_Equals, (GFKZjHfobKJLrxczgBweGNPXMszRA__Boxed * __this, GFKZjHfobKJLrxczgBweGNPXMszRA other, MethodInfo * method)); -DO_APP_FUNC(0x021D0620, bool, GFKZjHfobKJLrxczgBweGNPXMszRA_CYQtMiSiYCbPscwsgRvMGVWHNBtX, (GFKZjHfobKJLrxczgBweGNPXMszRA__Boxed * __this, Object * param_00014443, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, GFKZjHfobKJLrxczgBweGNPXMszRA_mwDGsmfTGspighSucRblGVFHpgGGc, (GFKZjHfobKJLrxczgBweGNPXMszRA__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C0F590, bool, GFKZjHfobKJLrxczgBweGNPXMszRA_Equals, (GFKZjHfobKJLrxczgBweGNPXMszRA * __this, GFKZjHfobKJLrxczgBweGNPXMszRA other, MethodInfo * method)); +DO_APP_FUNC(0x021D0620, bool, GFKZjHfobKJLrxczgBweGNPXMszRA_CYQtMiSiYCbPscwsgRvMGVWHNBtX, (GFKZjHfobKJLrxczgBweGNPXMszRA * __this, Object * param_00014443, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, GFKZjHfobKJLrxczgBweGNPXMszRA_mwDGsmfTGspighSucRblGVFHpgGGc, (GFKZjHfobKJLrxczgBweGNPXMszRA * __this, MethodInfo * method)); DO_APP_FUNC(0x00A9F1E0, bool, GFKZjHfobKJLrxczgBweGNPXMszRA_qlQFyYbsFtREWUEDvqgpZPFXOEHGA, (GFKZjHfobKJLrxczgBweGNPXMszRA param_00014444, MethodInfo * method)); -DO_APP_FUNC(0x021D06B0, String *, GFKZjHfobKJLrxczgBweGNPXMszRA_LVmcPOeqeDbqbgLicgjuWNFJdAuo, (GFKZjHfobKJLrxczgBweGNPXMszRA__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x021D06B0, String *, GFKZjHfobKJLrxczgBweGNPXMszRA_LVmcPOeqeDbqbgLicgjuWNFJdAuo, (GFKZjHfobKJLrxczgBweGNPXMszRA * __this, MethodInfo * method)); DO_APP_FUNC(0x021D0760, void, TwEEqzAdHdQMPMbtxaTUEBRaqYhhb__ctor, (TwEEqzAdHdQMPMbtxaTUEBRaqYhhb * __this, void * param_00014445, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TwEEqzAdHdQMPMbtxaTUEBRaqYhhb__ctor_1, (TwEEqzAdHdQMPMbtxaTUEBRaqYhhb * __this, MethodInfo * method)); DO_APP_FUNC(0x021D07B0, int32_t, TwEEqzAdHdQMPMbtxaTUEBRaqYhhb_JVciuLXdTgnRzaWUmqGxwHwXkjZx, (TwEEqzAdHdQMPMbtxaTUEBRaqYhhb * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1CA8, TwEEqzAdHdQMPMbtxaTUEBRaqYhhb_JVciuLXdTgnRzaWUmqGxwHwXkjZx__MethodInfo); DO_APP_FUNC(0x021D0880, void, TwEEqzAdHdQMPMbtxaTUEBRaqYhhb_ixmAePEnLRGjkiYJbCTfPNBHXEcwB, (TwEEqzAdHdQMPMbtxaTUEBRaqYhhb * __this, bool param_00014446, MethodInfo * method)); DO_APP_FUNC(0x021D0A10, void, TwEEqzAdHdQMPMbtxaTUEBRaqYhhb_JUrpjOlsUWqgRtXMhIyHuoEWmnAC, (TwEEqzAdHdQMPMbtxaTUEBRaqYhhb * __this, MethodInfo * method)); DO_APP_FUNC(0x021D0AA0, void, TwEEqzAdHdQMPMbtxaTUEBRaqYhhb_sNWABViLtvsBiwioSfJtHQTfoMfNA, (TwEEqzAdHdQMPMbtxaTUEBRaqYhhb * __this, void * param_00014447, MethodInfo * method)); @@ -79615,17 +90726,18 @@ DO_APP_FUNC(0x021D0D90, String *, fuxLlWsjEGbhmJsWNqYSFBhaScUe_LVmcPOeqeDbqbgLic DO_APP_FUNC(0x003BCD50, int32_t, fuxLlWsjEGbhmJsWNqYSFBhaScUe_mwDGsmfTGspighSucRblGVFHpgGGc, (fuxLlWsjEGbhmJsWNqYSFBhaScUe * __this, MethodInfo * method)); DO_APP_FUNC(0x021D0F30, bool, fuxLlWsjEGbhmJsWNqYSFBhaScUe_CYQtMiSiYCbPscwsgRvMGVWHNBtX, (fuxLlWsjEGbhmJsWNqYSFBhaScUe * __this, fuxLlWsjEGbhmJsWNqYSFBhaScUe * param_00014452, MethodInfo * method)); DO_APP_FUNC(0x021D0F50, bool, fuxLlWsjEGbhmJsWNqYSFBhaScUe_CYQtMiSiYCbPscwsgRvMGVWHNBtX_1, (fuxLlWsjEGbhmJsWNqYSFBhaScUe * __this, Object * param_00014453, MethodInfo * method)); -DO_APP_FUNC(0x00959BA0, void, IpQCkqlgJLyrFpAOyBfUxXQpJsWK__ctor, (IpQCkqlgJLyrFpAOyBfUxXQpJsWK__Boxed * __this, int32_t param_00014454, MethodInfo * method)); -DO_APP_FUNC(0x00959BA0, void, IpQCkqlgJLyrFpAOyBfUxXQpJsWK__ctor_1, (IpQCkqlgJLyrFpAOyBfUxXQpJsWK__Boxed * __this, uint32_t param_00014455, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, IpQCkqlgJLyrFpAOyBfUxXQpJsWK_QZnLsuhBqJRHgHcSYuSuquUnBctv, (IpQCkqlgJLyrFpAOyBfUxXQpJsWK__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x021D1060, bool, IpQCkqlgJLyrFpAOyBfUxXQpJsWK_LQgjFNsEkenKfzNTEgrjduzwsrIF, (IpQCkqlgJLyrFpAOyBfUxXQpJsWK__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00959BA0, void, IpQCkqlgJLyrFpAOyBfUxXQpJsWK__ctor, (IpQCkqlgJLyrFpAOyBfUxXQpJsWK * __this, int32_t param_00014454, MethodInfo * method)); +DO_APP_FUNC(0x00959BA0, void, IpQCkqlgJLyrFpAOyBfUxXQpJsWK__ctor_1, (IpQCkqlgJLyrFpAOyBfUxXQpJsWK * __this, uint32_t param_00014455, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, IpQCkqlgJLyrFpAOyBfUxXQpJsWK_QZnLsuhBqJRHgHcSYuSuquUnBctv, (IpQCkqlgJLyrFpAOyBfUxXQpJsWK * __this, MethodInfo * method)); +DO_APP_FUNC(0x021D1060, bool, IpQCkqlgJLyrFpAOyBfUxXQpJsWK_LQgjFNsEkenKfzNTEgrjduzwsrIF, (IpQCkqlgJLyrFpAOyBfUxXQpJsWK * __this, MethodInfo * method)); DO_APP_FUNC(0x021D10B0, int32_t, IpQCkqlgJLyrFpAOyBfUxXQpJsWK_TWmtUCOtyoAgJjPuIQQFTmoCCVaEA, (IpQCkqlgJLyrFpAOyBfUxXQpJsWK param_00014456, MethodInfo * method)); DO_APP_FUNC(0x00959BB0, IpQCkqlgJLyrFpAOyBfUxXQpJsWK, IpQCkqlgJLyrFpAOyBfUxXQpJsWK_qlQFyYbsFtREWUEDvqgpZPFXOEHGA, (int32_t param_00014457, MethodInfo * method)); -DO_APP_FUNC(0x021D1100, bool, IpQCkqlgJLyrFpAOyBfUxXQpJsWK_Equals, (IpQCkqlgJLyrFpAOyBfUxXQpJsWK__Boxed * __this, IpQCkqlgJLyrFpAOyBfUxXQpJsWK other, MethodInfo * method)); -DO_APP_FUNC(0x021D1160, bool, IpQCkqlgJLyrFpAOyBfUxXQpJsWK_CYQtMiSiYCbPscwsgRvMGVWHNBtX, (IpQCkqlgJLyrFpAOyBfUxXQpJsWK__Boxed * __this, Object * param_00014459, MethodInfo * method)); -DO_APP_FUNC(0x021D1240, int32_t, IpQCkqlgJLyrFpAOyBfUxXQpJsWK_mwDGsmfTGspighSucRblGVFHpgGGc, (IpQCkqlgJLyrFpAOyBfUxXQpJsWK__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x021D1290, String *, IpQCkqlgJLyrFpAOyBfUxXQpJsWK_LVmcPOeqeDbqbgLicgjuWNFJdAuo, (IpQCkqlgJLyrFpAOyBfUxXQpJsWK__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x021D1430, void, IpQCkqlgJLyrFpAOyBfUxXQpJsWK_PnvDnjxwYvWtGsBMtdXnjnKuAJdB, (IpQCkqlgJLyrFpAOyBfUxXQpJsWK__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x021D1100, bool, IpQCkqlgJLyrFpAOyBfUxXQpJsWK_Equals, (IpQCkqlgJLyrFpAOyBfUxXQpJsWK * __this, IpQCkqlgJLyrFpAOyBfUxXQpJsWK other, MethodInfo * method)); +DO_APP_FUNC(0x021D1160, bool, IpQCkqlgJLyrFpAOyBfUxXQpJsWK_CYQtMiSiYCbPscwsgRvMGVWHNBtX, (IpQCkqlgJLyrFpAOyBfUxXQpJsWK * __this, Object * param_00014459, MethodInfo * method)); +DO_APP_FUNC(0x021D1240, int32_t, IpQCkqlgJLyrFpAOyBfUxXQpJsWK_mwDGsmfTGspighSucRblGVFHpgGGc, (IpQCkqlgJLyrFpAOyBfUxXQpJsWK * __this, MethodInfo * method)); +DO_APP_FUNC(0x021D1290, String *, IpQCkqlgJLyrFpAOyBfUxXQpJsWK_LVmcPOeqeDbqbgLicgjuWNFJdAuo, (IpQCkqlgJLyrFpAOyBfUxXQpJsWK * __this, MethodInfo * method)); +DO_APP_FUNC(0x021D1430, void, IpQCkqlgJLyrFpAOyBfUxXQpJsWK_PnvDnjxwYvWtGsBMtdXnjnKuAJdB, (IpQCkqlgJLyrFpAOyBfUxXQpJsWK * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1C38, IpQCkqlgJLyrFpAOyBfUxXQpJsWK_PnvDnjxwYvWtGsBMtdXnjnKuAJdB__MethodInfo); DO_APP_FUNC(0x021D14A0, void, IpQCkqlgJLyrFpAOyBfUxXQpJsWK__cctor, (MethodInfo * method)); DO_APP_FUNC(0x021D1F10, void, DtqAEEJiDJPjNlUOxJfuxiAZflzJ__ctor, (DtqAEEJiDJPjNlUOxJfuxiAZflzJ * __this, IpQCkqlgJLyrFpAOyBfUxXQpJsWK param_0001445a, String * param_0001445b, String * param_0001445c, String * param_0001445d, String * param_0001445e, MethodInfo * method)); DO_APP_FUNC(0x003BCD50, IpQCkqlgJLyrFpAOyBfUxXQpJsWK, DtqAEEJiDJPjNlUOxJfuxiAZflzJ_GxGYqWAPgcfFBNAWYimJcnlaWsJv, (DtqAEEJiDJPjNlUOxJfuxiAZflzJ * __this, MethodInfo * method)); @@ -79645,7 +90757,7 @@ DO_APP_FUNC(0x021D2320, String *, DtqAEEJiDJPjNlUOxJfuxiAZflzJ_LVmcPOeqeDbqbgLic DO_APP_FUNC(0x021D2580, DtqAEEJiDJPjNlUOxJfuxiAZflzJ *, DtqAEEJiDJPjNlUOxJfuxiAZflzJ_hDysaIldBGBdncjAaXlDeADYLxkxA, (IpQCkqlgJLyrFpAOyBfUxXQpJsWK param_00014466, MethodInfo * method)); DO_APP_FUNC(0x021D2CA0, void, DtqAEEJiDJPjNlUOxJfuxiAZflzJ_VWqdVvVrskTHxOvBgJcHiecnFZuE, (Type * param_00014467, MethodInfo * method)); DO_APP_FUNC(0x021D2F40, String *, DtqAEEJiDJPjNlUOxJfuxiAZflzJ_BRCydjKzFauqMdnrZaapWfFnCqWE, (int32_t param_00014468, MethodInfo * method)); -DO_APP_FUNC(0x021D30B0, uint32_t, DtqAEEJiDJPjNlUOxJfuxiAZflzJ_OwrJjhACQtrMEoeAUjquWOhmvhFG, (int32_t param_00014469, void * param_0001446a, int32_t param_0001446b, int32_t param_0001446c, void * param_0001446d, int32_t param_0001446e, void * param_0001446f, MethodInfo * method)); +DO_APP_FUNC(0x021D30B0, uint32_t, DtqAEEJiDJPjNlUOxJfuxiAZflzJ_OwrJjhACQtrMEoeAUjquWOhmvhFG, (int32_t param_00014469, void * param_0001446a, int32_t param_0001446b, int32_t param_0001446c, void * * param_0001446d, int32_t param_0001446e, void * param_0001446f, MethodInfo * method)); DO_APP_FUNC(0x021D3160, void, DtqAEEJiDJPjNlUOxJfuxiAZflzJ__cctor, (MethodInfo * method)); DO_APP_FUNC(0x021D33C0, void, cbyUiVefFlHVnbUJtDuDNQeJTsfmA__ctor, (cbyUiVefFlHVnbUJtDuDNQeJTsfmA * __this, IpQCkqlgJLyrFpAOyBfUxXQpJsWK param_00014470, MethodInfo * method)); DO_APP_FUNC(0x021D35E0, void, cbyUiVefFlHVnbUJtDuDNQeJTsfmA__ctor_1, (cbyUiVefFlHVnbUJtDuDNQeJTsfmA * __this, DtqAEEJiDJPjNlUOxJfuxiAZflzJ * param_00014471, MethodInfo * method)); @@ -79674,7 +90786,7 @@ DO_APP_FUNC(0x021D3F30, int32_t, exarigLDNtDEaYVUwCksJVldldinA_pedbQkmlhIDmUqiGG DO_APP_FUNC(0x021D3FC0, bool, exarigLDNtDEaYVUwCksJVldldinA_vLfMQbQjvTpxquaVTRfDzPxHjufe, (MethodInfo * method)); DO_APP_FUNC(0x021D4000, cOkweYcnkHdyWuqEdbZVuivClOnK__Enum, exarigLDNtDEaYVUwCksJVldldinA_NOlaSJtHjkisHEotkWrFzypZRHcJ, (MethodInfo * method)); DO_APP_FUNC(0x021D4040, exarigLDNtDEaYVUwCksJVldldinA_HHzyMkQCLNpKeBssvgdeLTnJUXXA *, exarigLDNtDEaYVUwCksJVldldinA_enGsOVrTiXNNpSKyhMEciLgkalax, (MethodInfo * method)); -DO_APP_FUNC(0x021D4080, bool, exarigLDNtDEaYVUwCksJVldldinA_oFAdiMAHuRZYlTcAeMWxznNznaOnA, (cOkweYcnkHdyWuqEdbZVuivClOnK__Enum param_000144a1, String * param_000144a2, int32_t param_000144a3, MethodInfo * method)); +DO_APP_FUNC(0x021D4080, bool, exarigLDNtDEaYVUwCksJVldldinA_oFAdiMAHuRZYlTcAeMWxznNznaOnA, (cOkweYcnkHdyWuqEdbZVuivClOnK__Enum * param_000144a1, String * * param_000144a2, int32_t * param_000144a3, MethodInfo * method)); DO_APP_FUNC(0x021D4500, bool, exarigLDNtDEaYVUwCksJVldldinA_uLeFGykLegNlrAHFEXJfNdzlRcxfB, (MethodInfo * method)); DO_APP_FUNC(0x021D4610, bool, exarigLDNtDEaYVUwCksJVldldinA_YPrXhrelnjsrJvpiIZSKJhaMSgEW, (MethodInfo * method)); DO_APP_FUNC(0x021D4720, bool, exarigLDNtDEaYVUwCksJVldldinA_SzEEpCbPASSxlIgeCLNsVwvFpfVd, (MethodInfo * method)); @@ -79687,10 +90799,10 @@ DO_APP_FUNC(0x021D4B90, void, exarigLDNtDEaYVUwCksJVldldinA_HHzyMkQCLNpKeBssvgde DO_APP_FUNC(0x003ED330, int32_t, exarigLDNtDEaYVUwCksJVldldinA_HHzyMkQCLNpKeBssvgdeLTnJUXXA_Invoke, (exarigLDNtDEaYVUwCksJVldldinA_HHzyMkQCLNpKeBssvgdeLTnJUXXA * __this, int32_t arg0, Void * arg1, MethodInfo * method)); DO_APP_FUNC(0x003BCD30, void, BdACSJchhOOtndVeqHEImuFxBOOY__ctor, (BdACSJchhOOtndVeqHEImuFxBOOY * __this, jhIfZXSQdsChTrkZNrQAffepYdWj__Enum param_000144a8, MethodInfo * method)); DO_APP_FUNC(0x021D4CC0, gUSyaRhcurFFxWpITxNSYlEVrpsT, BdACSJchhOOtndVeqHEImuFxBOOY_tztFvmfHuppIVKsXlaHuAjEnSfWyA, (BdACSJchhOOtndVeqHEImuFxBOOY * __this, FarCaICiULDzSapxbfZPGvErZVoy__Enum param_000144a9, MethodInfo * method)); -DO_APP_FUNC(0x021D4DA0, bool, BdACSJchhOOtndVeqHEImuFxBOOY_TtjaIAuuLRHNrsEcSWCWjsbEeMNX, (BdACSJchhOOtndVeqHEImuFxBOOY * __this, rpxIYXtczSAEpdhyrDEYcJoufCaG param_000144aa, MethodInfo * method)); +DO_APP_FUNC(0x021D4DA0, bool, BdACSJchhOOtndVeqHEImuFxBOOY_TtjaIAuuLRHNrsEcSWCWjsbEeMNX, (BdACSJchhOOtndVeqHEImuFxBOOY * __this, rpxIYXtczSAEpdhyrDEYcJoufCaG * param_000144aa, MethodInfo * method)); DO_APP_FUNC(0x021D4DC0, IpQCkqlgJLyrFpAOyBfUxXQpJsWK, BdACSJchhOOtndVeqHEImuFxBOOY_FCzQNTpXGUcHzmjQHbDDjsbmyLbB, (BdACSJchhOOtndVeqHEImuFxBOOY * __this, aQHgSHeigtcamfIWbNaiXaCiVwuq param_000144ab, MethodInfo * method)); DO_APP_FUNC(0x021D4E80, bool, BdACSJchhOOtndVeqHEImuFxBOOY_JuhFFGJyhqNTfnOSHKmgszUPDlGWA, (BdACSJchhOOtndVeqHEImuFxBOOY * __this, MethodInfo * method)); -DO_APP_FUNC(0x021D4EB0, String *, HmAcNXaDOwcBaXnHmUCisFjFgxag_LVmcPOeqeDbqbgLicgjuWNFJdAuo, (HmAcNXaDOwcBaXnHmUCisFjFgxag__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x021D4EB0, String *, HmAcNXaDOwcBaXnHmUCisFjFgxag_LVmcPOeqeDbqbgLicgjuWNFJdAuo, (HmAcNXaDOwcBaXnHmUCisFjFgxag * __this, MethodInfo * method)); DO_APP_FUNC(0x021D5220, int32_t, QOFvqpkaSiLPOKScrqULLtJwGeen_CdbFTSgzHhpSadoijHaEouzqdWevA, (int32_t param_000144ac, aQHgSHeigtcamfIWbNaiXaCiVwuq param_000144ad, MethodInfo * method)); DO_APP_FUNC(0x021D54E0, int32_t, QOFvqpkaSiLPOKScrqULLtJwGeen_EdDAifkBzibXHELxvreIANOfUPRBB, (int32_t param_000144ae, Void * param_000144af, MethodInfo * method)); DO_APP_FUNC(0x021D5760, int32_t, QOFvqpkaSiLPOKScrqULLtJwGeen_RjrawkixIktxwMTRTTsQehGBNVHfb, (int32_t param_000144b0, Void * param_000144b1, MethodInfo * method)); @@ -79698,14 +90810,14 @@ DO_APP_FUNC(0x021D57F0, int32_t, QOFvqpkaSiLPOKScrqULLtJwGeen_WWGPCtpOVqdVIHJGla DO_APP_FUNC(0x021D5880, int32_t, QOFvqpkaSiLPOKScrqULLtJwGeen_EhretuTlLVCOCdGeniSvAzisIKnZA, (int32_t param_000144b4, Void * param_000144b5, MethodInfo * method)); DO_APP_FUNC(0x021D5910, int32_t, QOFvqpkaSiLPOKScrqULLtJwGeen_XKvdlHZjGxmUeYtAUrPngkQHQuZQ, (int32_t param_000144b6, Void * param_000144b7, MethodInfo * method)); DO_APP_FUNC(0x021D59A0, int32_t, QOFvqpkaSiLPOKScrqULLtJwGeen_sWfHKhTMQZoLOSNYhUORqPQdRnfx, (int32_t param_000144b8, Void * param_000144b9, MethodInfo * method)); -DO_APP_FUNC(0x021D5A30, int32_t, QOFvqpkaSiLPOKScrqULLtJwGeen_PlVMsjzidcAOPBbXBEXkoBLNfCadA, (int32_t param_000144ba, rpxIYXtczSAEpdhyrDEYcJoufCaG param_000144bb, MethodInfo * method)); +DO_APP_FUNC(0x021D5A30, int32_t, QOFvqpkaSiLPOKScrqULLtJwGeen_PlVMsjzidcAOPBbXBEXkoBLNfCadA, (int32_t param_000144ba, rpxIYXtczSAEpdhyrDEYcJoufCaG * param_000144bb, MethodInfo * method)); DO_APP_FUNC(0x021D5A40, int32_t, QOFvqpkaSiLPOKScrqULLtJwGeen_OwKIvsdxVnLSjXixCvhGVDKKZPtc, (int32_t param_000144bc, Void * param_000144bd, MethodInfo * method)); DO_APP_FUNC(0x021D5D90, int32_t, QOFvqpkaSiLPOKScrqULLtJwGeen_OPkMfYLJbesuSiHMbxOXimAcAiCP, (int32_t param_000144be, Void * param_000144bf, MethodInfo * method)); DO_APP_FUNC(0x021D5E20, int32_t, QOFvqpkaSiLPOKScrqULLtJwGeen_EBAAsNFhiljGFYLqfubSSwHDNXrjA, (int32_t param_000144c0, Void * param_000144c1, MethodInfo * method)); DO_APP_FUNC(0x021D5EB0, int32_t, QOFvqpkaSiLPOKScrqULLtJwGeen_JpgEKYAFwGXThaYElxNRURmGseCw, (int32_t param_000144c2, Void * param_000144c3, MethodInfo * method)); DO_APP_FUNC(0x021D5F40, int32_t, QOFvqpkaSiLPOKScrqULLtJwGeen_EPCOtVcTQVmkjIOuZfnrqpvUrZUu, (int32_t param_000144c4, Void * param_000144c5, MethodInfo * method)); DO_APP_FUNC(0x021D5FD0, int32_t, QOFvqpkaSiLPOKScrqULLtJwGeen_pedbQkmlhIDmUqiGGTbIWccHvXOV, (int32_t param_000144c6, Void * param_000144c7, MethodInfo * method)); -DO_APP_FUNC(0x021D6060, int32_t, QOFvqpkaSiLPOKScrqULLtJwGeen_JwgnxHmsPrucikJZgOJBZHiLaXXP, (int32_t param_000144c8, FarCaICiULDzSapxbfZPGvErZVoy__Enum param_000144c9, gUSyaRhcurFFxWpITxNSYlEVrpsT param_000144ca, MethodInfo * method)); +DO_APP_FUNC(0x021D6060, int32_t, QOFvqpkaSiLPOKScrqULLtJwGeen_JwgnxHmsPrucikJZgOJBZHiLaXXP, (int32_t param_000144c8, FarCaICiULDzSapxbfZPGvErZVoy__Enum param_000144c9, gUSyaRhcurFFxWpITxNSYlEVrpsT * param_000144ca, MethodInfo * method)); DO_APP_FUNC(0x021D6080, int32_t, QOFvqpkaSiLPOKScrqULLtJwGeen_OanhdlhyETOotnamsXeYkzREjDEg, (int32_t param_000144cb, int32_t param_000144cc, Void * param_000144cd, MethodInfo * method)); DO_APP_FUNC(0x021D6310, int32_t, QOFvqpkaSiLPOKScrqULLtJwGeen_KNyqNfOEOXVvBmNjIuWPNgcZFEDB, (int32_t param_000144ce, int32_t param_000144cf, Void * param_000144d0, MethodInfo * method)); DO_APP_FUNC(0x021D63A0, int32_t, QOFvqpkaSiLPOKScrqULLtJwGeen_cDXIdxuZJUIIsiwWSFPBPplIJqRJ, (int32_t param_000144d1, int32_t param_000144d2, Void * param_000144d3, MethodInfo * method)); @@ -79723,6 +90835,7 @@ DO_APP_FUNC(0x021D6BB0, void, fQGmhUoTfEGCGFzPdVXUheHRfwfj_jlOGjLgVmKtVOIDMTDrqS DO_APP_FUNC(0x021D6CD0, void, fQGmhUoTfEGCGFzPdVXUheHRfwfj_JPQoJdQGLzLESMQuSjrYyMWdvTn, (bool param_000144ec, MethodInfo * method)); DO_APP_FUNC(0x021D6D70, void, fQGmhUoTfEGCGFzPdVXUheHRfwfj_eGAFaajVQFVPMIYAlBjidLFGUKXdA, (ForwardRawInputEventsToUnityDelegate * param_000144ed, MethodInfo * method)); DO_APP_FUNC(0x021D6E60, void, SfDmCQCjerbvNXSRAQskzDQgvyUE__ctor, (SfDmCQCjerbvNXSRAQskzDQgvyUE * __this, uint32_t param_000144ee, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1A90, SfDmCQCjerbvNXSRAQskzDQgvyUE__ctor__MethodInfo); DO_APP_FUNC(0x021D6FF0, void *, SfDmCQCjerbvNXSRAQskzDQgvyUE_MPNEmxfhoflyXieBsaInrPtZWSst, (SfDmCQCjerbvNXSRAQskzDQgvyUE * __this, uint32_t param_000144ef, Void * param_000144f0, MethodInfo * method)); DO_APP_FUNC(0x021D7120, void, SfDmCQCjerbvNXSRAQskzDQgvyUE_Dispose, (SfDmCQCjerbvNXSRAQskzDQgvyUE * __this, MethodInfo * method)); DO_APP_FUNC(0x01F28E70, void, SfDmCQCjerbvNXSRAQskzDQgvyUE_koAztZrcZLyuMlaqoUCpAMQQIsgb, (SfDmCQCjerbvNXSRAQskzDQgvyUE * __this, MethodInfo * method)); @@ -79748,35 +90861,37 @@ DO_APP_FUNC(0x021D88D0, void, gEPJIdTJwmJwoXPlEpTuwVGlPAjJ_jlOGjLgVmKtVOIDMTDrqS DO_APP_FUNC(0x021D89C0, void, gEPJIdTJwmJwoXPlEpTuwVGlPAjJ_JPQoJdQGLzLESMQuSjrYyMWdvTn, (bool param_00014504, MethodInfo * method)); DO_APP_FUNC(0x021D8A20, mpaLPxHPAdcoRcKwvOFTaxXvswum *, gEPJIdTJwmJwoXPlEpTuwVGlPAjJ_ACHKpZeamJzgvnRRofzfTYbSaZqH, (MethodInfo * method)); DO_APP_FUNC(0x021D8A80, List_1_OTOWXECUgLIzgwXfEeXoDsFfLoRQ_ *, gEPJIdTJwmJwoXPlEpTuwVGlPAjJ_GzygSjJBfMufLJomkwEJfEJaxTDDA, (bool param_00014505, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1A60, gEPJIdTJwmJwoXPlEpTuwVGlPAjJ_GzygSjJBfMufLJomkwEJfEJaxTDDA__MethodInfo); DO_APP_FUNC(0x021D9310, void, gEPJIdTJwmJwoXPlEpTuwVGlPAjJ_tczAVdkQtcIucAUhkSpScGMoZukx, (SlxRMAHMknLXlIwlYNXFkgfOCpoZ__Enum param_00014506, vATUkrlOiGeLYgQcCuhFNGXvdOC__Enum param_00014507, MiyEDRjWgTrwpzsYmktTqmGgBfJt__Enum param_00014508, void * param_00014509, MethodInfo * method)); DO_APP_FUNC(0x021D93E0, void, gEPJIdTJwmJwoXPlEpTuwVGlPAjJ_ETNQVfKYmCjpnnCQAsBwlhhLgnuc, (SlxRMAHMknLXlIwlYNXFkgfOCpoZ__Enum param_0001450a, vATUkrlOiGeLYgQcCuhFNGXvdOC__Enum param_0001450b, MethodInfo * method)); DO_APP_FUNC(0x021D94B0, void, gEPJIdTJwmJwoXPlEpTuwVGlPAjJ_IqeirVCUUEJhXFQOWXCdOtBiFkPb, (MethodInfo * method)); DO_APP_FUNC(0x021D96D0, void, gEPJIdTJwmJwoXPlEpTuwVGlPAjJ_JVmPHZFvNwKTBNQvnFdvvEMoBQvDA, (void * param_0001450c, double param_0001450d, MethodInfo * method)); -DO_APP_FUNC(0x021D9EC0, void, gEPJIdTJwmJwoXPlEpTuwVGlPAjJ_AZuVepZbDzwvvvnYdFYamItMzRDR, (GEkTLWOzrjueegRfpWbBUAyxBMpf * param_0001450e, Byte__Array * param_0001450f, UInt32__Array * param_00014510, UInt32__Array * param_00014511, uint32_t param_00014512, uint32_t param_00014513, MethodInfo * method)); -DO_APP_FUNC(0x021D9FD0, bool, gEPJIdTJwmJwoXPlEpTuwVGlPAjJ_qYeqqGgZWDGsQgVDqfynGisBqXpK, (GEkTLWOzrjueegRfpWbBUAyxBMpf * param_00014514, Byte__Array * param_00014515, UInt32__Array * param_00014516, UInt32__Array * param_00014517, uint32_t param_00014518, uint32_t param_00014519, MethodInfo * method)); -DO_APP_FUNC(0x021DA190, void, gEPJIdTJwmJwoXPlEpTuwVGlPAjJ_LoHXgvXRgibliPxrEmxGBIIvHlco, (Byte__Array * param_0001451a, UInt32__Array * param_0001451b, UInt32__Array * param_0001451c, uint32_t param_0001451d, uint32_t param_0001451e, MethodInfo * method)); +DO_APP_FUNC(0x021D9EC0, void, gEPJIdTJwmJwoXPlEpTuwVGlPAjJ_AZuVepZbDzwvvvnYdFYamItMzRDR, (GEkTLWOzrjueegRfpWbBUAyxBMpf * param_0001450e, Byte__Array * param_0001450f, UInt32__Array * param_00014510, UInt32__Array * param_00014511, uint32_t * param_00014512, uint32_t * param_00014513, MethodInfo * method)); +DO_APP_FUNC(0x021D9FD0, bool, gEPJIdTJwmJwoXPlEpTuwVGlPAjJ_qYeqqGgZWDGsQgVDqfynGisBqXpK, (GEkTLWOzrjueegRfpWbBUAyxBMpf * param_00014514, Byte__Array * param_00014515, UInt32__Array * param_00014516, UInt32__Array * param_00014517, uint32_t * param_00014518, uint32_t * param_00014519, MethodInfo * method)); +DO_APP_FUNC(0x021DA190, void, gEPJIdTJwmJwoXPlEpTuwVGlPAjJ_LoHXgvXRgibliPxrEmxGBIIvHlco, (Byte__Array * param_0001451a, UInt32__Array * param_0001451b, UInt32__Array * param_0001451c, uint32_t * param_0001451d, uint32_t * param_0001451e, MethodInfo * method)); DO_APP_FUNC(0x021DA3F0, void, gEPJIdTJwmJwoXPlEpTuwVGlPAjJ_bhbLKsnrIaMjJnlegmUewMLtxLzQ, (GEkTLWOzrjueegRfpWbBUAyxBMpf * param_0001451f, double param_00014520, MethodInfo * method)); DO_APP_FUNC(0x021DA6E0, void, gEPJIdTJwmJwoXPlEpTuwVGlPAjJ_LHvnHxGlHFdDLIlPCUafPfKmOXXT, (void * param_00014521, void * param_00014522, MethodInfo * method)); DO_APP_FUNC(0x021DA800, void *, gEPJIdTJwmJwoXPlEpTuwVGlPAjJ_ufXhCfVwREvFzeIKHBjAtIunzaCc, (void * param_00014523, uint32_t param_00014524, void * param_00014525, void * param_00014526, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1A50, gEPJIdTJwmJwoXPlEpTuwVGlPAjJ_ufXhCfVwREvFzeIKHBjAtIunzaCc__MethodInfo); DO_APP_FUNC(0x021DAA80, void, gEPJIdTJwmJwoXPlEpTuwVGlPAjJ_ynIQbRrbQiHFvEBfBzYVnYLXwwSC, (void * param_00014527, uint32_t param_00014528, void * param_00014529, void * param_0001452a, MethodInfo * method)); -DO_APP_FUNC(0x021DADC0, void, OTOWXECUgLIzgwXfEeXoDsFfLoRQ__ctor, (OTOWXECUgLIzgwXfEeXoDsFfLoRQ * __this, ILDFNGRIDghDjeEnSsgTiekOmNsr param_0001452b, String * param_0001452c, void * param_0001452d, MethodInfo * method)); +DO_APP_FUNC(0x021DADC0, void, OTOWXECUgLIzgwXfEeXoDsFfLoRQ__ctor, (OTOWXECUgLIzgwXfEeXoDsFfLoRQ * __this, ILDFNGRIDghDjeEnSsgTiekOmNsr * param_0001452b, String * param_0001452c, void * param_0001452d, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, String *, OTOWXECUgLIzgwXfEeXoDsFfLoRQ_SVJSIHAvtcJZBKeNrvFOCOkBbAffA, (OTOWXECUgLIzgwXfEeXoDsFfLoRQ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, OTOWXECUgLIzgwXfEeXoDsFfLoRQ_rxKmiCOVLuKwQijscaQXKnIopWCm, (OTOWXECUgLIzgwXfEeXoDsFfLoRQ * __this, String * param_0001452e, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, eVXRkvwNiDDgOEqoJybjZlbHcejCA__Enum, OTOWXECUgLIzgwXfEeXoDsFfLoRQ_qswRDPqPXxjxZTkaZbOVZAojugCF, (OTOWXECUgLIzgwXfEeXoDsFfLoRQ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCDD0, void, OTOWXECUgLIzgwXfEeXoDsFfLoRQ_hFHlSeUiHkbDLkISFjSxJBxFAPRD, (OTOWXECUgLIzgwXfEeXoDsFfLoRQ * __this, eVXRkvwNiDDgOEqoJybjZlbHcejCA__Enum param_0001452f, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, void *, OTOWXECUgLIzgwXfEeXoDsFfLoRQ_XaFgejwFzhZVSbfciOuoSdSnGXlO, (OTOWXECUgLIzgwXfEeXoDsFfLoRQ * __this, MethodInfo * method)); DO_APP_FUNC(0x00421670, void, OTOWXECUgLIzgwXfEeXoDsFfLoRQ_oEOPLjAHAAbBINVufFkcPEaweeoH, (OTOWXECUgLIzgwXfEeXoDsFfLoRQ * __this, void * param_00014530, MethodInfo * method)); -DO_APP_FUNC(0x021DAE20, OTOWXECUgLIzgwXfEeXoDsFfLoRQ *, OTOWXECUgLIzgwXfEeXoDsFfLoRQ_zbCPqwfATdFMcmpcCGFzdDRAMaCt, (ILDFNGRIDghDjeEnSsgTiekOmNsr param_00014531, String * param_00014532, void * param_00014533, MethodInfo * method)); +DO_APP_FUNC(0x021DAE20, OTOWXECUgLIzgwXfEeXoDsFfLoRQ *, OTOWXECUgLIzgwXfEeXoDsFfLoRQ_zbCPqwfATdFMcmpcCGFzdDRAMaCt, (ILDFNGRIDghDjeEnSsgTiekOmNsr * param_00014531, String * param_00014532, void * param_00014533, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8D298, OTOWXECUgLIzgwXfEeXoDsFfLoRQ_zbCPqwfATdFMcmpcCGFzdDRAMaCt__MethodInfo); -DO_APP_FUNC(0x021DB190, int32_t, NqFEcMTdAwhdcKgonlqNMiVTHgIs_gUoMaaPUTrBOtYZSpgFJqQCdeYNn, (yUgrsNEvLzxrXGzkHTUPIBJYGDah__Array * param_00014534, int32_t param_00014535, int32_t param_00014536, MethodInfo * method)); +DO_APP_FUNC(0x021DB190, int32_t, NqFEcMTdAwhdcKgonlqNMiVTHgIs_gUoMaaPUTrBOtYZSpgFJqQCdeYNn, (yUgrsNEvLzxrXGzkHTUPIBJYGDah__Array * param_00014534, int32_t * param_00014535, int32_t param_00014536, MethodInfo * method)); DO_APP_FUNC(0x021DB250, int32_t, NqFEcMTdAwhdcKgonlqNMiVTHgIs_RWcorYTpkAlMyGVcHYFeDfOwmimE, (Void * param_00014537, Void * param_00014538, int32_t param_00014539, MethodInfo * method)); -DO_APP_FUNC(0x021DB2F0, int32_t, NqFEcMTdAwhdcKgonlqNMiVTHgIs_ESxYsmIxatWjljFEYkIfAVbYSfTr, (void * param_0001453a, AYhIlMiMvqKiDmZUMsKNUawaOHEc__Enum param_0001453b, void * param_0001453c, int32_t param_0001453d, MethodInfo * method)); +DO_APP_FUNC(0x021DB2F0, int32_t, NqFEcMTdAwhdcKgonlqNMiVTHgIs_ESxYsmIxatWjljFEYkIfAVbYSfTr, (void * param_0001453a, AYhIlMiMvqKiDmZUMsKNUawaOHEc__Enum param_0001453b, void * param_0001453c, int32_t * param_0001453d, MethodInfo * method)); DO_APP_FUNC(0x021DB2F0, int32_t, NqFEcMTdAwhdcKgonlqNMiVTHgIs_ECVbWigwZKEwyCASWdlLfzNcODsyA, (Void * param_0001453e, int32_t param_0001453f, Void * param_00014540, Void * param_00014541, MethodInfo * method)); DO_APP_FUNC(0x021DB390, GFKZjHfobKJLrxczgBweGNPXMszRA, NqFEcMTdAwhdcKgonlqNMiVTHgIs_TzBoYpjCImPLIszrHxJbPWGHZmp, (aOHEnKCFymegycPegEXPFUjlaUPpA__Array * param_00014542, int32_t param_00014543, int32_t param_00014544, MethodInfo * method)); DO_APP_FUNC(0x021DB450, GFKZjHfobKJLrxczgBweGNPXMszRA, NqFEcMTdAwhdcKgonlqNMiVTHgIs_ofarupwexHSDVVqqsbsxkqXpztUdA, (Void * param_00014545, int32_t param_00014546, int32_t param_00014547, MethodInfo * method)); -DO_APP_FUNC(0x021DB4F0, int32_t, NqFEcMTdAwhdcKgonlqNMiVTHgIs_RuexLXVeUbEXCDCzCqfisHkOfOItA, (void * param_00014548, FEKFtxiOGQuZgFRPgfadzixUuXGlA__Enum param_00014549, void * param_0001454a, int32_t param_0001454b, int32_t param_0001454c, MethodInfo * method)); +DO_APP_FUNC(0x021DB4F0, int32_t, NqFEcMTdAwhdcKgonlqNMiVTHgIs_RuexLXVeUbEXCDCzCqfisHkOfOItA, (void * param_00014548, FEKFtxiOGQuZgFRPgfadzixUuXGlA__Enum param_00014549, void * param_0001454a, int32_t * param_0001454b, int32_t param_0001454c, MethodInfo * method)); DO_APP_FUNC(0x021DB4F0, int32_t, NqFEcMTdAwhdcKgonlqNMiVTHgIs_nANOCpZrdfEuKKygWUqeKlzfPiTO, (Void * param_0001454d, int32_t param_0001454e, Void * param_0001454f, Void * param_00014550, int32_t param_00014551, MethodInfo * method)); -DO_APP_FUNC(0x021DB5A0, void, YGRBAcfQwvGWVUaYYJtDYIzQnxML__ctor, (YGRBAcfQwvGWVUaYYJtDYIzQnxML * __this, ILDFNGRIDghDjeEnSsgTiekOmNsr param_00014552, String * param_00014553, void * param_00014554, MethodInfo * method)); +DO_APP_FUNC(0x021DB5A0, void, YGRBAcfQwvGWVUaYYJtDYIzQnxML__ctor, (YGRBAcfQwvGWVUaYYJtDYIzQnxML * __this, ILDFNGRIDghDjeEnSsgTiekOmNsr * param_00014552, String * param_00014553, void * param_00014554, MethodInfo * method)); DO_APP_FUNC(0x00421690, void, YGRBAcfQwvGWVUaYYJtDYIzQnxML_JCWLLLKeFGtRZUYHzHQCfCpmjyKgA, (YGRBAcfQwvGWVUaYYJtDYIzQnxML * __this, int32_t param_00014555, MethodInfo * method)); DO_APP_FUNC(0x0098C880, void, YGRBAcfQwvGWVUaYYJtDYIzQnxML_rWwACpUERGiMBxjdNfYvAutUewbCb, (YGRBAcfQwvGWVUaYYJtDYIzQnxML * __this, int32_t param_00014556, MethodInfo * method)); DO_APP_FUNC(0x003C7310, void, YGRBAcfQwvGWVUaYYJtDYIzQnxML_vAuDcKchxhesUYQIpPYfolfpweFX, (YGRBAcfQwvGWVUaYYJtDYIzQnxML * __this, int32_t param_00014557, MethodInfo * method)); @@ -79784,24 +90899,24 @@ DO_APP_FUNC(0x021DB630, SlxRMAHMknLXlIwlYNXFkgfOCpoZ__Enum, YGRBAcfQwvGWVUaYYJtD DO_APP_FUNC(0x021DB640, void, YGRBAcfQwvGWVUaYYJtDYIzQnxML_LUSemWPBQMklFuOuykTrkCPjRVHl, (YGRBAcfQwvGWVUaYYJtDYIzQnxML * __this, SlxRMAHMknLXlIwlYNXFkgfOCpoZ__Enum param_00014558, MethodInfo * method)); DO_APP_FUNC(0x021DB650, vATUkrlOiGeLYgQcCuhFNGXvdOC__Enum, YGRBAcfQwvGWVUaYYJtDYIzQnxML_RDGYnXvQbyrFNxIxMGlNJeeEkOUA, (YGRBAcfQwvGWVUaYYJtDYIzQnxML * __this, MethodInfo * method)); DO_APP_FUNC(0x021DB660, void, YGRBAcfQwvGWVUaYYJtDYIzQnxML_UPdGlDfIhYIRkLFigsEmgIbRenKK, (YGRBAcfQwvGWVUaYYJtDYIzQnxML * __this, vATUkrlOiGeLYgQcCuhFNGXvdOC__Enum param_00014559, MethodInfo * method)); -DO_APP_FUNC(0x021DB670, void, HAtiKZlBnjTWOWEtNgXBPPGKUhuP__ctor, (HAtiKZlBnjTWOWEtNgXBPPGKUhuP__Boxed * __this, GEkTLWOzrjueegRfpWbBUAyxBMpf param_0001455a, SfDmCQCjerbvNXSRAQskzDQgvyUE * param_0001455b, MethodInfo * method)); -DO_APP_FUNC(0x021DB810, bool, HAtiKZlBnjTWOWEtNgXBPPGKUhuP_PihkTuBwuXLwjuwNhMStzVhfwlQV, (HAtiKZlBnjTWOWEtNgXBPPGKUhuP__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, void *, HAtiKZlBnjTWOWEtNgXBPPGKUhuP_irucGCKibtGYzqTFfhkRrddMFKzqA, (HAtiKZlBnjTWOWEtNgXBPPGKUhuP__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, int32_t, HAtiKZlBnjTWOWEtNgXBPPGKUhuP_RTRDnAGADtkCnBezZyzTxbOHVrGH, (HAtiKZlBnjTWOWEtNgXBPPGKUhuP__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x021DB870, void, YrFMyfiLgpyDeEARLCikjyqxmMMJ__ctor, (YrFMyfiLgpyDeEARLCikjyqxmMMJ * __this, ILDFNGRIDghDjeEnSsgTiekOmNsr param_0001455c, String * param_0001455d, void * param_0001455e, MethodInfo * method)); +DO_APP_FUNC(0x021DB670, void, HAtiKZlBnjTWOWEtNgXBPPGKUhuP__ctor, (HAtiKZlBnjTWOWEtNgXBPPGKUhuP * __this, GEkTLWOzrjueegRfpWbBUAyxBMpf * param_0001455a, SfDmCQCjerbvNXSRAQskzDQgvyUE * param_0001455b, MethodInfo * method)); +DO_APP_FUNC(0x021DB810, bool, HAtiKZlBnjTWOWEtNgXBPPGKUhuP_PihkTuBwuXLwjuwNhMStzVhfwlQV, (HAtiKZlBnjTWOWEtNgXBPPGKUhuP * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, void *, HAtiKZlBnjTWOWEtNgXBPPGKUhuP_irucGCKibtGYzqTFfhkRrddMFKzqA, (HAtiKZlBnjTWOWEtNgXBPPGKUhuP * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, int32_t, HAtiKZlBnjTWOWEtNgXBPPGKUhuP_RTRDnAGADtkCnBezZyzTxbOHVrGH, (HAtiKZlBnjTWOWEtNgXBPPGKUhuP * __this, MethodInfo * method)); +DO_APP_FUNC(0x021DB870, void, YrFMyfiLgpyDeEARLCikjyqxmMMJ__ctor, (YrFMyfiLgpyDeEARLCikjyqxmMMJ * __this, ILDFNGRIDghDjeEnSsgTiekOmNsr * param_0001455c, String * param_0001455d, void * param_0001455e, MethodInfo * method)); DO_APP_FUNC(0x00421690, void, YrFMyfiLgpyDeEARLCikjyqxmMMJ_yboeoZDtzcrpxircmjIkDagRRRFHA, (YrFMyfiLgpyDeEARLCikjyqxmMMJ * __this, int32_t param_0001455f, MethodInfo * method)); DO_APP_FUNC(0x0098C880, void, YrFMyfiLgpyDeEARLCikjyqxmMMJ_xemevmoyNAnIlMDZuqovNXNwpZVr, (YrFMyfiLgpyDeEARLCikjyqxmMMJ * __this, int32_t param_00014560, MethodInfo * method)); DO_APP_FUNC(0x003C7310, void, YrFMyfiLgpyDeEARLCikjyqxmMMJ_meUojhuvuOFVojMcVGQqfaUhkMgA, (YrFMyfiLgpyDeEARLCikjyqxmMMJ * __this, int32_t param_00014561, MethodInfo * method)); DO_APP_FUNC(0x00BC6590, void, YrFMyfiLgpyDeEARLCikjyqxmMMJ_fzNhghRhqRZtXpqwVUYaLzeaeAng, (YrFMyfiLgpyDeEARLCikjyqxmMMJ * __this, int32_t param_00014562, MethodInfo * method)); DO_APP_FUNC(0x01A71040, void, YrFMyfiLgpyDeEARLCikjyqxmMMJ_BFuptjGzvZSdHofprcuhccZLullAA, (YrFMyfiLgpyDeEARLCikjyqxmMMJ * __this, int32_t param_00014563, MethodInfo * method)); DO_APP_FUNC(0x01A246F0, void, YrFMyfiLgpyDeEARLCikjyqxmMMJ_amihlcJTVbrSXpqteheREpciFzJs, (YrFMyfiLgpyDeEARLCikjyqxmMMJ * __this, int32_t param_00014564, MethodInfo * method)); -DO_APP_FUNC(0x021DB900, void, KGpfpVumzcziOxJRZbURZTEAJARe__ctor, (KGpfpVumzcziOxJRZbURZTEAJARe__Boxed * __this, GEkTLWOzrjueegRfpWbBUAyxBMpf param_00014565, MethodInfo * method)); -DO_APP_FUNC(0x021DB930, void, UeUkhRcOLNmLrceQTbCUqfXnCKWS__ctor, (UeUkhRcOLNmLrceQTbCUqfXnCKWS * __this, ILDFNGRIDghDjeEnSsgTiekOmNsr param_00014566, String * param_00014567, void * param_00014568, MethodInfo * method)); +DO_APP_FUNC(0x021DB900, void, KGpfpVumzcziOxJRZbURZTEAJARe__ctor, (KGpfpVumzcziOxJRZbURZTEAJARe * __this, GEkTLWOzrjueegRfpWbBUAyxBMpf * param_00014565, MethodInfo * method)); +DO_APP_FUNC(0x021DB930, void, UeUkhRcOLNmLrceQTbCUqfXnCKWS__ctor, (UeUkhRcOLNmLrceQTbCUqfXnCKWS * __this, ILDFNGRIDghDjeEnSsgTiekOmNsr * param_00014566, String * param_00014567, void * param_00014568, MethodInfo * method)); DO_APP_FUNC(0x00421690, void, UeUkhRcOLNmLrceQTbCUqfXnCKWS_VQXkIQMZWkJLTAVAtMLNdSqBjXhJ, (UeUkhRcOLNmLrceQTbCUqfXnCKWS * __this, int32_t param_00014569, MethodInfo * method)); DO_APP_FUNC(0x0098C880, void, UeUkhRcOLNmLrceQTbCUqfXnCKWS_neuQecFvRPDZKVvCVyJTqaKmFLRi, (UeUkhRcOLNmLrceQTbCUqfXnCKWS * __this, int32_t param_0001456a, MethodInfo * method)); DO_APP_FUNC(0x003C7310, void, UeUkhRcOLNmLrceQTbCUqfXnCKWS_bDInEJPHRjJubnGbMphjvkivGaMHA, (UeUkhRcOLNmLrceQTbCUqfXnCKWS * __this, int32_t param_0001456b, MethodInfo * method)); DO_APP_FUNC(0x01DB9820, void, UeUkhRcOLNmLrceQTbCUqfXnCKWS_HaNNUErKKlrsTadjGyPcZMgJgateA, (UeUkhRcOLNmLrceQTbCUqfXnCKWS * __this, bool param_0001456c, MethodInfo * method)); -DO_APP_FUNC(0x021DB9C0, void, fsRiDBEERnIQlMGEHJRgRRiEbYqF__ctor, (fsRiDBEERnIQlMGEHJRgRRiEbYqF__Boxed * __this, GEkTLWOzrjueegRfpWbBUAyxBMpf param_0001456d, MethodInfo * method)); +DO_APP_FUNC(0x021DB9C0, void, fsRiDBEERnIQlMGEHJRgRRiEbYqF__ctor, (fsRiDBEERnIQlMGEHJRgRRiEbYqF * __this, GEkTLWOzrjueegRfpWbBUAyxBMpf * param_0001456d, MethodInfo * method)); DO_APP_FUNC(0x021DBA00, void, NFikfIAJlwJkNAEmwUGtOYnGGzB__ctor, (NFikfIAJlwJkNAEmwUGtOYnGGzB * __this, DateTime param_0001456e, TwEEqzAdHdQMPMbtxaTUEBRaqYhhb * param_0001456f, String * param_00014570, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, DateTime, NFikfIAJlwJkNAEmwUGtOYnGGzB_GllHFIEBtgrAKZdruETBzibQidgHA, (NFikfIAJlwJkNAEmwUGtOYnGGzB * __this, MethodInfo * method)); DO_APP_FUNC(0x0120DC90, void, NFikfIAJlwJkNAEmwUGtOYnGGzB_TArqDUUQiFttzENIVuhBEFSgokdG, (NFikfIAJlwJkNAEmwUGtOYnGGzB * __this, DateTime param_00014571, MethodInfo * method)); @@ -79831,14 +90946,14 @@ DO_APP_FUNC(0x021DE550, void, OaSOlzSwSlKTYFRuIsyqYGBlRNoV_ZybmJoyoAuBRmtzJvXGWw DO_APP_FUNC(0x021DE580, void, MMEMBMVknmmSyquroJWRlzXgZuxA__ctor, (MMEMBMVknmmSyquroJWRlzXgZuxA * __this, MethodInfo * method)); DO_APP_FUNC(0x021DE590, MMEMBMVknmmSyquroJWRlzXgZuxA_SaexGkMYETngnUDWwqxfYuerWOod, MMEMBMVknmmSyquroJWRlzXgZuxA_YyhEuATUIDskuHSjUtNqDnWmbwgI, (MethodInfo * method)); DO_APP_FUNC(0x003BCC40, DeviceType__Enum_3, MMEMBMVknmmSyquroJWRlzXgZuxA_MOTrHGHDpqwqvNnQAzkAkBsVjTrd, (MMEMBMVknmmSyquroJWRlzXgZuxA * __this, MethodInfo * method)); -DO_APP_FUNC(0x021DE5B0, void, MMEMBMVknmmSyquroJWRlzXgZuxA_lwEoarzOQRDZDEAGLuGvpcCgeqTLA, (MMEMBMVknmmSyquroJWRlzXgZuxA * __this, MMEMBMVknmmSyquroJWRlzXgZuxA_SaexGkMYETngnUDWwqxfYuerWOod param_00014580, MethodInfo * method)); +DO_APP_FUNC(0x021DE5B0, void, MMEMBMVknmmSyquroJWRlzXgZuxA_lwEoarzOQRDZDEAGLuGvpcCgeqTLA, (MMEMBMVknmmSyquroJWRlzXgZuxA * __this, MMEMBMVknmmSyquroJWRlzXgZuxA_SaexGkMYETngnUDWwqxfYuerWOod * param_00014580, MethodInfo * method)); DO_APP_FUNC(0x021DE600, void, pkfvdhAgvJBekrlDorTPuCftMpCU__ctor, (pkfvdhAgvJBekrlDorTPuCftMpCU * __this, pGkQOPgWegsFGDOnOGftBvOUUKELA__Enum param_00014585, MethodInfo * method)); DO_APP_FUNC(0x021DE770, pkfvdhAgvJBekrlDorTPuCftMpCU_FjrgjYzhloBTBSeFTKeQNPflgRoe, pkfvdhAgvJBekrlDorTPuCftMpCU_YyhEuATUIDskuHSjUtNqDnWmbwgI, (MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, jlOcQLgjodoHrMnRTMaZoBnVTQkmA__Array *, pkfvdhAgvJBekrlDorTPuCftMpCU_ISAmKkCYjnGxuzPRJLqqTIPjiFis, (pkfvdhAgvJBekrlDorTPuCftMpCU * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, pkfvdhAgvJBekrlDorTPuCftMpCU_CDmXNLcmNkKYBRijFfsNATfNHDEy, (pkfvdhAgvJBekrlDorTPuCftMpCU * __this, jlOcQLgjodoHrMnRTMaZoBnVTQkmA__Array * param_00014586, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, pkfvdhAgvJBekrlDorTPuCftMpCU_ZpkBGQaADeWXCSAqGijWWEKrFPsn, (pkfvdhAgvJBekrlDorTPuCftMpCU * __this, pkfvdhAgvJBekrlDorTPuCftMpCU_FjrgjYzhloBTBSeFTKeQNPflgRoe param_00014587, MethodInfo * method)); -DO_APP_FUNC(0x021DE790, void, pkfvdhAgvJBekrlDorTPuCftMpCU_sBKhobCjwRbgBIUplgQMjlAZhNBBA, (pkfvdhAgvJBekrlDorTPuCftMpCU * __this, pkfvdhAgvJBekrlDorTPuCftMpCU_FjrgjYzhloBTBSeFTKeQNPflgRoe param_00014588, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, pkfvdhAgvJBekrlDorTPuCftMpCU_FjrgjYzhloBTBSeFTKeQNPflgRoe_ZpkBGQaADeWXCSAqGijWWEKrFPsn, (pkfvdhAgvJBekrlDorTPuCftMpCU_FjrgjYzhloBTBSeFTKeQNPflgRoe__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, pkfvdhAgvJBekrlDorTPuCftMpCU_ZpkBGQaADeWXCSAqGijWWEKrFPsn, (pkfvdhAgvJBekrlDorTPuCftMpCU * __this, pkfvdhAgvJBekrlDorTPuCftMpCU_FjrgjYzhloBTBSeFTKeQNPflgRoe * param_00014587, MethodInfo * method)); +DO_APP_FUNC(0x021DE790, void, pkfvdhAgvJBekrlDorTPuCftMpCU_sBKhobCjwRbgBIUplgQMjlAZhNBBA, (pkfvdhAgvJBekrlDorTPuCftMpCU * __this, pkfvdhAgvJBekrlDorTPuCftMpCU_FjrgjYzhloBTBSeFTKeQNPflgRoe * param_00014588, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, pkfvdhAgvJBekrlDorTPuCftMpCU_FjrgjYzhloBTBSeFTKeQNPflgRoe_ZpkBGQaADeWXCSAqGijWWEKrFPsn, (pkfvdhAgvJBekrlDorTPuCftMpCU_FjrgjYzhloBTBSeFTKeQNPflgRoe * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, xgCcYdjKRQMbzInDtFoOimkrwUPF__ctor, (xgCcYdjKRQMbzInDtFoOimkrwUPF * __this, pGkQOPgWegsFGDOnOGftBvOUUKELA__Enum param_00014589, MethodInfo * method)); DO_APP_FUNC(0x021DEA30, void, jlOcQLgjodoHrMnRTMaZoBnVTQkmA__ctor, (jlOcQLgjodoHrMnRTMaZoBnVTQkmA * __this, Guid param_0001458a, int32_t param_0001458b, FKhSbiIliqzGLmbRIjbdTJHpKbLA__Enum param_0001458c, xrCFcXdjuexAehjhunaprdiFguVXA__Enum param_0001458d, int32_t param_0001458e, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, String *, jlOcQLgjodoHrMnRTMaZoBnVTQkmA_BGHCRjDARyFqbvHLZCLJgHEDCPGic, (jlOcQLgjodoHrMnRTMaZoBnVTQkmA * __this, MethodInfo * method)); @@ -79853,7 +90968,7 @@ DO_APP_FUNC(0x003C7300, int32_t, jlOcQLgjodoHrMnRTMaZoBnVTQkmA_mXeqxLBmBnHERoqJr DO_APP_FUNC(0x003C7310, void, jlOcQLgjodoHrMnRTMaZoBnVTQkmA_TJFwIwVDGqFURcqnPIxyCZUutstSA, (jlOcQLgjodoHrMnRTMaZoBnVTQkmA * __this, int32_t param_00014593, MethodInfo * method)); DO_APP_FUNC(0x00A2A110, xrCFcXdjuexAehjhunaprdiFguVXA__Enum, jlOcQLgjodoHrMnRTMaZoBnVTQkmA_XyIhnPGjOlNdVhaNdSaEoIdROvAj, (jlOcQLgjodoHrMnRTMaZoBnVTQkmA * __this, MethodInfo * method)); DO_APP_FUNC(0x00BC6590, void, jlOcQLgjodoHrMnRTMaZoBnVTQkmA_WDGoczqaLKjQtQVfGDJAPqNlkXKl, (jlOcQLgjodoHrMnRTMaZoBnVTQkmA * __this, xrCFcXdjuexAehjhunaprdiFguVXA__Enum param_00014594, MethodInfo * method)); -DO_APP_FUNC(0x021DEA50, void, jlOcQLgjodoHrMnRTMaZoBnVTQkmA_sBKhobCjwRbgBIUplgQMjlAZhNBBA, (jlOcQLgjodoHrMnRTMaZoBnVTQkmA * __this, jlOcQLgjodoHrMnRTMaZoBnVTQkmA_UQNUjWDnDBJiFEZHZdfMIOPkNvdGb param_00014595, MethodInfo * method)); +DO_APP_FUNC(0x021DEA50, void, jlOcQLgjodoHrMnRTMaZoBnVTQkmA_sBKhobCjwRbgBIUplgQMjlAZhNBBA, (jlOcQLgjodoHrMnRTMaZoBnVTQkmA * __this, jlOcQLgjodoHrMnRTMaZoBnVTQkmA_UQNUjWDnDBJiFEZHZdfMIOPkNvdGb * param_00014595, MethodInfo * method)); DO_APP_FUNC(0x021DEB70, void, eWMwVZsbMzrrgLhCbeBgUICQPRbg__ctor, (eWMwVZsbMzrrgLhCbeBgUICQPRbg * __this, String * param_00014596, FKhSbiIliqzGLmbRIjbdTJHpKbLA__Enum param_00014597, xrCFcXdjuexAehjhunaprdiFguVXA__Enum param_00014598, MethodInfo * method)); DO_APP_FUNC(0x021DEBE0, void, eWMwVZsbMzrrgLhCbeBgUICQPRbg__ctor_1, (eWMwVZsbMzrrgLhCbeBgUICQPRbg * __this, String * param_00014599, int32_t param_0001459a, FKhSbiIliqzGLmbRIjbdTJHpKbLA__Enum param_0001459b, xrCFcXdjuexAehjhunaprdiFguVXA__Enum param_0001459c, MethodInfo * method)); DO_APP_FUNC(0x021DEC50, void, eWMwVZsbMzrrgLhCbeBgUICQPRbg__ctor_2, (eWMwVZsbMzrrgLhCbeBgUICQPRbg * __this, String * param_0001459d, int32_t param_0001459e, FKhSbiIliqzGLmbRIjbdTJHpKbLA__Enum param_0001459f, MethodInfo * method)); @@ -79875,7 +90990,7 @@ DO_APP_FUNC(0x021DF7E0, int32_t, lrZLQeVDGDrIlNPDYgJAkdvWWrWwA_KcNFTHGjFVYTdRWUu DO_APP_FUNC(0x021DF880, int32_t, lrZLQeVDGDrIlNPDYgJAkdvWWrWwA_RzsfADGwbmbZxnTcbEqwKyjpivqy, (Void * param_000145bd, MethodInfo * method)); DO_APP_FUNC(0x021DF900, MMEMBMVknmmSyquroJWRlzXgZuxA *, lrZLQeVDGDrIlNPDYgJAkdvWWrWwA_LQoQWVXWjbpMTqbMwwdEVgyOkgNo, (lrZLQeVDGDrIlNPDYgJAkdvWWrWwA * __this, MethodInfo * method)); DO_APP_FUNC(0x021DF930, IEpqttsJBVpdPbiISguYNqxToTKd *, lrZLQeVDGDrIlNPDYgJAkdvWWrWwA_uzabXHbxkAqjqJMCmQQZbyYmRrmzA, (lrZLQeVDGDrIlNPDYgJAkdvWWrWwA * __this, MethodInfo * method)); -DO_APP_FUNC(0x021DFBB0, void, lrZLQeVDGDrIlNPDYgJAkdvWWrWwA_tztFvmfHuppIVKsXlaHuAjEnSfWyA, (lrZLQeVDGDrIlNPDYgJAkdvWWrWwA * __this, MMEMBMVknmmSyquroJWRlzXgZuxA * param_000145be, MethodInfo * method)); +DO_APP_FUNC(0x021DFBB0, void, lrZLQeVDGDrIlNPDYgJAkdvWWrWwA_tztFvmfHuppIVKsXlaHuAjEnSfWyA, (lrZLQeVDGDrIlNPDYgJAkdvWWrWwA * __this, MMEMBMVknmmSyquroJWRlzXgZuxA * * param_000145be, MethodInfo * method)); DO_APP_FUNC(0x021DFDE0, void, lrZLQeVDGDrIlNPDYgJAkdvWWrWwA_ylQiKHmoMYWZnvONscWhelJSsgpi, (lrZLQeVDGDrIlNPDYgJAkdvWWrWwA * __this, fuxLlWsjEGbhmJsWNqYSFBhaScUe * param_000145bf, void * param_000145c0, int32_t param_000145c1, MethodInfo * method)); DO_APP_FUNC(0x021DFF20, void, lrZLQeVDGDrIlNPDYgJAkdvWWrWwA_zaTbqpPPLwIVYIZFhLtbSDuJEoPDA, (lrZLQeVDGDrIlNPDYgJAkdvWWrWwA * __this, void * param_000145c2, void * param_000145c3, MethodInfo * method)); DO_APP_FUNC(0x021E0040, void, lrZLQeVDGDrIlNPDYgJAkdvWWrWwA_GevCJouemVVzGXTJmVMaIEUrrVIn, (lrZLQeVDGDrIlNPDYgJAkdvWWrWwA * __this, void * param_000145c4, void * param_000145c5, MethodInfo * method)); @@ -79884,22 +90999,22 @@ DO_APP_FUNC(0x021E0270, void, lrZLQeVDGDrIlNPDYgJAkdvWWrWwA_aYKnLyJwnQsfPnmCkNco DO_APP_FUNC(0x021E0380, void, lrZLQeVDGDrIlNPDYgJAkdvWWrWwA_ydkcxtUvtcsUdrxBzyFagkXalPXi, (lrZLQeVDGDrIlNPDYgJAkdvWWrWwA * __this, int32_t param_000145c6, void * param_000145c7, MethodInfo * method)); DO_APP_FUNC(0x021E04A0, void, lrZLQeVDGDrIlNPDYgJAkdvWWrWwA_BvLQUvfhWrbwWuRMppwwdrsmgKZM, (lrZLQeVDGDrIlNPDYgJAkdvWWrWwA * __this, pkfvdhAgvJBekrlDorTPuCftMpCU * param_000145c8, MethodInfo * method)); DO_APP_FUNC(0x021E0610, void, lrZLQeVDGDrIlNPDYgJAkdvWWrWwA_ASgAMUOHdSGTekdgiizYBYFlNOtyA, (lrZLQeVDGDrIlNPDYgJAkdvWWrWwA * __this, void * param_000145c9, VcdrcXuLyElkLlaaZGmPblREbRnwA__Enum param_000145ca, MethodInfo * method)); -DO_APP_FUNC(0x021E0730, void, lrZLQeVDGDrIlNPDYgJAkdvWWrWwA_grBhukYCsnXIzKJNBdqPMlGrTLxS, (lrZLQeVDGDrIlNPDYgJAkdvWWrWwA * __this, IEpqttsJBVpdPbiISguYNqxToTKd * param_000145cb, MethodInfo * method)); +DO_APP_FUNC(0x021E0730, void, lrZLQeVDGDrIlNPDYgJAkdvWWrWwA_grBhukYCsnXIzKJNBdqPMlGrTLxS, (lrZLQeVDGDrIlNPDYgJAkdvWWrWwA * __this, IEpqttsJBVpdPbiISguYNqxToTKd * * param_000145cb, MethodInfo * method)); DO_APP_FUNC(0x021E0990, void, lrZLQeVDGDrIlNPDYgJAkdvWWrWwA_YqdqXTupcoOZBKGGyYIzKjgyemWZ, (lrZLQeVDGDrIlNPDYgJAkdvWWrWwA * __this, MethodInfo * method)); DO_APP_FUNC(0x021E0AA0, void, IEpqttsJBVpdPbiISguYNqxToTKd__ctor, (IEpqttsJBVpdPbiISguYNqxToTKd * __this, MethodInfo * method)); DO_APP_FUNC(0x021E0AB0, IEpqttsJBVpdPbiISguYNqxToTKd_VPLAUbfmNaXGykunYoYWgmIHQTzMb, IEpqttsJBVpdPbiISguYNqxToTKd_YyhEuATUIDskuHSjUtNqDnWmbwgI, (MethodInfo * method)); DO_APP_FUNC(0x005C47D0, DeviceType__Enum_3, IEpqttsJBVpdPbiISguYNqxToTKd_MOTrHGHDpqwqvNnQAzkAkBsVjTrd, (IEpqttsJBVpdPbiISguYNqxToTKd * __this, MethodInfo * method)); DO_APP_FUNC(0x021E0AE0, int32_t, IEpqttsJBVpdPbiISguYNqxToTKd_mVKUmlmiFIYbDYqXrmMzzmKufzqo, (IEpqttsJBVpdPbiISguYNqxToTKd * __this, MethodInfo * method)); DO_APP_FUNC(0x021E0AF0, bool, IEpqttsJBVpdPbiISguYNqxToTKd_sEZfwlDpikycnCIPyraPZgTntZEV, (IEpqttsJBVpdPbiISguYNqxToTKd * __this, MethodInfo * method)); -DO_APP_FUNC(0x021E0B00, void, IEpqttsJBVpdPbiISguYNqxToTKd_lwEoarzOQRDZDEAGLuGvpcCgeqTLA, (IEpqttsJBVpdPbiISguYNqxToTKd * __this, IEpqttsJBVpdPbiISguYNqxToTKd_VPLAUbfmNaXGykunYoYWgmIHQTzMb param_000145cc, MethodInfo * method)); -DO_APP_FUNC(0x021E0E20, FKhSbiIliqzGLmbRIjbdTJHpKbLA__Enum, nFndkMjTXqlRMeVVGCxPcylopsxz_XyIhnPGjOlNdVhaNdSaEoIdROvAj, (nFndkMjTXqlRMeVVGCxPcylopsxz__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x021E0E30, int32_t, nFndkMjTXqlRMeVVGCxPcylopsxz_mXeqxLBmBnHERoqJrTgVuGswVynA, (nFndkMjTXqlRMeVVGCxPcylopsxz__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x021E0E40, bool, nFndkMjTXqlRMeVVGCxPcylopsxz_CYQtMiSiYCbPscwsgRvMGVWHNBtX, (nFndkMjTXqlRMeVVGCxPcylopsxz__Boxed * __this, nFndkMjTXqlRMeVVGCxPcylopsxz param_000145cd, MethodInfo * method)); -DO_APP_FUNC(0x021E0E50, bool, nFndkMjTXqlRMeVVGCxPcylopsxz_CYQtMiSiYCbPscwsgRvMGVWHNBtX_1, (nFndkMjTXqlRMeVVGCxPcylopsxz__Boxed * __this, Object * param_000145ce, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, nFndkMjTXqlRMeVVGCxPcylopsxz_mwDGsmfTGspighSucRblGVFHpgGGc, (nFndkMjTXqlRMeVVGCxPcylopsxz__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x021E0F40, String *, nFndkMjTXqlRMeVVGCxPcylopsxz_LVmcPOeqeDbqbgLicgjuWNFJdAuo, (nFndkMjTXqlRMeVVGCxPcylopsxz__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x021E0B00, void, IEpqttsJBVpdPbiISguYNqxToTKd_lwEoarzOQRDZDEAGLuGvpcCgeqTLA, (IEpqttsJBVpdPbiISguYNqxToTKd * __this, IEpqttsJBVpdPbiISguYNqxToTKd_VPLAUbfmNaXGykunYoYWgmIHQTzMb * param_000145cc, MethodInfo * method)); +DO_APP_FUNC(0x021E0E20, FKhSbiIliqzGLmbRIjbdTJHpKbLA__Enum, nFndkMjTXqlRMeVVGCxPcylopsxz_XyIhnPGjOlNdVhaNdSaEoIdROvAj, (nFndkMjTXqlRMeVVGCxPcylopsxz * __this, MethodInfo * method)); +DO_APP_FUNC(0x021E0E30, int32_t, nFndkMjTXqlRMeVVGCxPcylopsxz_mXeqxLBmBnHERoqJrTgVuGswVynA, (nFndkMjTXqlRMeVVGCxPcylopsxz * __this, MethodInfo * method)); +DO_APP_FUNC(0x021E0E40, bool, nFndkMjTXqlRMeVVGCxPcylopsxz_CYQtMiSiYCbPscwsgRvMGVWHNBtX, (nFndkMjTXqlRMeVVGCxPcylopsxz * __this, nFndkMjTXqlRMeVVGCxPcylopsxz param_000145cd, MethodInfo * method)); +DO_APP_FUNC(0x021E0E50, bool, nFndkMjTXqlRMeVVGCxPcylopsxz_CYQtMiSiYCbPscwsgRvMGVWHNBtX_1, (nFndkMjTXqlRMeVVGCxPcylopsxz * __this, Object * param_000145ce, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, nFndkMjTXqlRMeVVGCxPcylopsxz_mwDGsmfTGspighSucRblGVFHpgGGc, (nFndkMjTXqlRMeVVGCxPcylopsxz * __this, MethodInfo * method)); +DO_APP_FUNC(0x021E0F40, String *, nFndkMjTXqlRMeVVGCxPcylopsxz_LVmcPOeqeDbqbgLicgjuWNFJdAuo, (nFndkMjTXqlRMeVVGCxPcylopsxz * __this, MethodInfo * method)); DO_APP_FUNC(0x021E11B0, void, xHrRgXbpglyyLcUqeKrUBIwiHmMg__ctor, (xHrRgXbpglyyLcUqeKrUBIwiHmMg * __this, MethodInfo * method)); -DO_APP_FUNC(0x021E11C0, void, xHrRgXbpglyyLcUqeKrUBIwiHmMg_lwEoarzOQRDZDEAGLuGvpcCgeqTLA, (xHrRgXbpglyyLcUqeKrUBIwiHmMg * __this, xHrRgXbpglyyLcUqeKrUBIwiHmMg_ENkAeKwaMEIDBCcWHpdDNzScIbSrA param_000145cf, MethodInfo * method)); +DO_APP_FUNC(0x021E11C0, void, xHrRgXbpglyyLcUqeKrUBIwiHmMg_lwEoarzOQRDZDEAGLuGvpcCgeqTLA, (xHrRgXbpglyyLcUqeKrUBIwiHmMg * __this, xHrRgXbpglyyLcUqeKrUBIwiHmMg_ENkAeKwaMEIDBCcWHpdDNzScIbSrA * param_000145cf, MethodInfo * method)); DO_APP_FUNC(0x021E13B0, void, rPGgilLxmMTekXrALcMmwLgZUrTO__ctor, (rPGgilLxmMTekXrALcMmwLgZUrTO * __this, lrZLQeVDGDrIlNPDYgJAkdvWWrWwA * param_000145d0, MethodInfo * method)); DO_APP_FUNC(0x021E1410, void, rPGgilLxmMTekXrALcMmwLgZUrTO_MqMtNKVBPuXVaLsrkZNQPAGPHpxg, (rPGgilLxmMTekXrALcMmwLgZUrTO * __this, yXbPmUgIgDXqgCyJcVqsWcXfFfVs__Enum param_000145d1, MethodInfo * method)); DO_APP_FUNC(0x021E1500, String *, rPGgilLxmMTekXrALcMmwLgZUrTO_ReHJtyJbEzJULvZFPwvBXpWEKTlI, (rPGgilLxmMTekXrALcMmwLgZUrTO * __this, MethodInfo * method)); @@ -79914,7 +91029,7 @@ DO_APP_FUNC(0x021E1C80, IList_1_IEpqttsJBVpdPbiISguYNqxToTKd_ *, HhyJayjEkazMHJn DO_APP_FUNC(0x021E1EA0, int32_t, HhyJayjEkazMHJnFosltszjdHjxA_JntQuVkgeQprHAlsZbcvBgCqJdhMA, (HhyJayjEkazMHJnFosltszjdHjxA * __this, idyHbWsJPidvWVLFgweaeqNyynMr__Enum param_000145d5, AxAszkCRgjxKrOSKwqNWDAjWcnjW__Enum param_000145d6, MethodInfo * method)); DO_APP_FUNC(0x021E20B0, int32_t, HhyJayjEkazMHJnFosltszjdHjxA_FPGmYMmYwivuxGBEgEqEmpeDAaVl, (Void * param_000145d7, Void * param_000145d8, Void * param_000145d9, Void * param_000145da, MethodInfo * method)); DO_APP_FUNC(0x021E2160, int32_t, HhyJayjEkazMHJnFosltszjdHjxA_jOgYCjjmURyWFsewHMRgJdzRitxJ, (Void * param_000145db, int32_t param_000145dc, Void * param_000145dd, Void * param_000145de, int32_t param_000145df, MethodInfo * method)); -DO_APP_FUNC(0x021E2210, void, HhyJayjEkazMHJnFosltszjdHjxA_ibptIPdDFZMPnhjsRlmLqKgZIzbU, (HhyJayjEkazMHJnFosltszjdHjxA * __this, Guid param_000145e0, void * param_000145e1, TwEEqzAdHdQMPMbtxaTUEBRaqYhhb * param_000145e2, MethodInfo * method)); +DO_APP_FUNC(0x021E2210, void, HhyJayjEkazMHJnFosltszjdHjxA_ibptIPdDFZMPnhjsRlmLqKgZIzbU, (HhyJayjEkazMHJnFosltszjdHjxA * __this, Guid param_000145e0, void * * param_000145e1, TwEEqzAdHdQMPMbtxaTUEBRaqYhhb * param_000145e2, MethodInfo * method)); DO_APP_FUNC(0x021E2370, void, HhyJayjEkazMHJnFosltszjdHjxA_kwsvMzghHqEpItoswSLBnoCuSBwi, (HhyJayjEkazMHJnFosltszjdHjxA * __this, int32_t param_000145e3, fuxLlWsjEGbhmJsWNqYSFBhaScUe * param_000145e4, void * param_000145e5, AxAszkCRgjxKrOSKwqNWDAjWcnjW__Enum param_000145e6, MethodInfo * method)); DO_APP_FUNC(0x021E24C0, void, HhyJayjEkazMHJnFosltszjdHjxA_rSotNEMJOPdGQymAyXNblfpQGKFR__cctor, (MethodInfo * method)); DO_APP_FUNC(0x021E27A0, void *, HhyJayjEkazMHJnFosltszjdHjxA_rSotNEMJOPdGQymAyXNblfpQGKFR_tVdoPaCtAbqlujlxXITRbZypirBA, (MethodInfo * method)); @@ -79940,13 +91055,13 @@ DO_APP_FUNC(0x021E3200, int32_t, JYBTXkVuHseRAPnFWSKHEVXmogBe_ZGgJrDaBoUwVNKQqom DO_APP_FUNC_METHODINFO(0x03C8CF90, JYBTXkVuHseRAPnFWSKHEVXmogBe_ZGgJrDaBoUwVNKQqommHMwoDWbzi__MethodInfo); DO_APP_FUNC(0x021E2960, void, JYBTXkVuHseRAPnFWSKHEVXmogBe_MRyVOkEJicyElZRDsuYLxkDvBnwo__ctor, (JYBTXkVuHseRAPnFWSKHEVXmogBe_MRyVOkEJicyElZRDsuYLxkDvBnwo * __this, Object * param_000145f7, void * param_000145f8, MethodInfo * method)); DO_APP_FUNC(0x003ED330, int32_t, JYBTXkVuHseRAPnFWSKHEVXmogBe_MRyVOkEJicyElZRDsuYLxkDvBnwo_Invoke, (JYBTXkVuHseRAPnFWSKHEVXmogBe_MRyVOkEJicyElZRDsuYLxkDvBnwo * __this, Void * deviceInstance, void * data, MethodInfo * method)); -DO_APP_FUNC(0x021E34F0, void, iTsYHZGTMrgZQrYoMNYmewdCLSRM_flgWSjeYzACqgUIiODygXatyFDbHA, (void * param_000145fb, int32_t param_000145fc, Guid param_000145fd, void * param_000145fe, TwEEqzAdHdQMPMbtxaTUEBRaqYhhb * param_000145ff, MethodInfo * method)); +DO_APP_FUNC(0x021E34F0, void, iTsYHZGTMrgZQrYoMNYmewdCLSRM_flgWSjeYzACqgUIiODygXatyFDbHA, (void * param_000145fb, int32_t param_000145fc, Guid param_000145fd, void * * param_000145fe, TwEEqzAdHdQMPMbtxaTUEBRaqYhhb * param_000145ff, MethodInfo * method)); DO_APP_FUNC(0x021E3660, int32_t, iTsYHZGTMrgZQrYoMNYmewdCLSRM_frhKMxLkLjZOrCtSSeIIyiKdeXiO, (Void * param_00014600, int32_t param_00014601, Void * param_00014602, Void * param_00014603, Void * param_00014604, MethodInfo * method)); DO_APP_FUNC(0x021E3710, void, CClyMcfsYLeaPgcfhKixbGxThdbZ__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x021E3980, void, IseAuldnhPHboDUdxlbAlGeSTfxw_lwEoarzOQRDZDEAGLuGvpcCgeqTLA, (IseAuldnhPHboDUdxlbAlGeSTfxw__Boxed * __this, IseAuldnhPHboDUdxlbAlGeSTfxw_wKzPFmUkpUODMAjsMfyMfvghvWmPA param_00014605, MethodInfo * method)); -DO_APP_FUNC(0x021E3B00, void, JYkaRqeUjtHXxcgerIQieKAHgrarA_lwEoarzOQRDZDEAGLuGvpcCgeqTLA, (JYkaRqeUjtHXxcgerIQieKAHgrarA__Boxed * __this, JYkaRqeUjtHXxcgerIQieKAHgrarA_aNzGETBZvCtqMqFInwgZFSaZiiHbb param_00014606, MethodInfo * method)); -DO_APP_FUNC(0x00977B80, void, kjaumSMAWMgoyyuYBSjDcpGIgHeAA__ctor, (kjaumSMAWMgoyyuYBSjDcpGIgHeAA__Boxed * __this, int32_t param_00014608, int32_t param_00014609, MethodInfo * method)); -DO_APP_FUNC(0x021E3C70, void, kjaumSMAWMgoyyuYBSjDcpGIgHeAA_MXpVzGntZvGkylbtqFekWYrHhsxU, (kjaumSMAWMgoyyuYBSjDcpGIgHeAA__Boxed * __this, weuQjMwbfsNskfysppPfTKjudoTD param_0001460a, MethodInfo * method)); +DO_APP_FUNC(0x021E3980, void, IseAuldnhPHboDUdxlbAlGeSTfxw_lwEoarzOQRDZDEAGLuGvpcCgeqTLA, (IseAuldnhPHboDUdxlbAlGeSTfxw * __this, IseAuldnhPHboDUdxlbAlGeSTfxw_wKzPFmUkpUODMAjsMfyMfvghvWmPA * param_00014605, MethodInfo * method)); +DO_APP_FUNC(0x021E3B00, void, JYkaRqeUjtHXxcgerIQieKAHgrarA_lwEoarzOQRDZDEAGLuGvpcCgeqTLA, (JYkaRqeUjtHXxcgerIQieKAHgrarA * __this, JYkaRqeUjtHXxcgerIQieKAHgrarA_aNzGETBZvCtqMqFInwgZFSaZiiHbb * param_00014606, MethodInfo * method)); +DO_APP_FUNC(0x00977B80, void, kjaumSMAWMgoyyuYBSjDcpGIgHeAA__ctor, (kjaumSMAWMgoyyuYBSjDcpGIgHeAA * __this, int32_t param_00014608, int32_t param_00014609, MethodInfo * method)); +DO_APP_FUNC(0x021E3C70, void, kjaumSMAWMgoyyuYBSjDcpGIgHeAA_MXpVzGntZvGkylbtqFekWYrHhsxU, (kjaumSMAWMgoyyuYBSjDcpGIgHeAA * __this, weuQjMwbfsNskfysppPfTKjudoTD * param_0001460a, MethodInfo * method)); DO_APP_FUNC(0x021E3C80, void, GqryNrYEvkExVmQzJVqPbzHUZsSB__ctor, (GqryNrYEvkExVmQzJVqPbzHUZsSB * __this, HhyJayjEkazMHJnFosltszjdHjxA * param_0001460b, Guid param_0001460c, MethodInfo * method)); DO_APP_FUNC(0x021E3D10, void, eIOeMVETDBCpONALFPUSmkDfCaEg__ctor, (eIOeMVETDBCpONALFPUSmkDfCaEg * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD50, int32_t, eIOeMVETDBCpONALFPUSmkDfCaEg_BuJHhqbMiVvhWbNEFcaiecHqHRaq, (eIOeMVETDBCpONALFPUSmkDfCaEg * __this, MethodInfo * method)); @@ -80014,12 +91129,12 @@ DO_APP_FUNC(0x02192CB0, void, eIOeMVETDBCpONALFPUSmkDfCaEg_iGlRenjOWJphMVhzZUqIC DO_APP_FUNC(0x02192AA0, void, eIOeMVETDBCpONALFPUSmkDfCaEg_IqeirVCUUEJhXFQOWXCdOtBiFkPb, (eIOeMVETDBCpONALFPUSmkDfCaEg * __this, MethodInfo * method)); DO_APP_FUNC(0x021E4280, bool, eIOeMVETDBCpONALFPUSmkDfCaEg_PMGrPcJNrEmNzhLyyqBYdVuNrNnd, (eIOeMVETDBCpONALFPUSmkDfCaEg * __this, eIOeMVETDBCpONALFPUSmkDfCaEg * param_0001462d, MethodInfo * method)); DO_APP_FUNC(0x021E4640, String *, eIOeMVETDBCpONALFPUSmkDfCaEg_LVmcPOeqeDbqbgLicgjuWNFJdAuo, (eIOeMVETDBCpONALFPUSmkDfCaEg * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, tSPvxZUJjzaTiAEejeAOLKctGpmKA_QegyosMALfqxXyedKXjCcdkCxCvF, (tSPvxZUJjzaTiAEejeAOLKctGpmKA__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C173E0, int32_t, tSPvxZUJjzaTiAEejeAOLKctGpmKA_fACsHKFdqocDKsGBazdzFSdOzUwG, (tSPvxZUJjzaTiAEejeAOLKctGpmKA__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471920, int32_t, tSPvxZUJjzaTiAEejeAOLKctGpmKA_OObGkJDGQiumrrhMWzqoOfQuKMBgb, (tSPvxZUJjzaTiAEejeAOLKctGpmKA__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E57F20, int32_t, tSPvxZUJjzaTiAEejeAOLKctGpmKA_XjeDExJrQAKqpkpEIyIycCXbmMQc, (tSPvxZUJjzaTiAEejeAOLKctGpmKA__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, HSgFoYglukrQnwmltWKJJNfRjaEwA__Enum, tSPvxZUJjzaTiAEejeAOLKctGpmKA_KFPKrRLxWQueipJlIjxclqphgfqy, (tSPvxZUJjzaTiAEejeAOLKctGpmKA__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x021E52D0, String *, tSPvxZUJjzaTiAEejeAOLKctGpmKA_LVmcPOeqeDbqbgLicgjuWNFJdAuo, (tSPvxZUJjzaTiAEejeAOLKctGpmKA__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, tSPvxZUJjzaTiAEejeAOLKctGpmKA_QegyosMALfqxXyedKXjCcdkCxCvF, (tSPvxZUJjzaTiAEejeAOLKctGpmKA * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C173E0, int32_t, tSPvxZUJjzaTiAEejeAOLKctGpmKA_fACsHKFdqocDKsGBazdzFSdOzUwG, (tSPvxZUJjzaTiAEejeAOLKctGpmKA * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471920, int32_t, tSPvxZUJjzaTiAEejeAOLKctGpmKA_OObGkJDGQiumrrhMWzqoOfQuKMBgb, (tSPvxZUJjzaTiAEejeAOLKctGpmKA * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E57F20, int32_t, tSPvxZUJjzaTiAEejeAOLKctGpmKA_XjeDExJrQAKqpkpEIyIycCXbmMQc, (tSPvxZUJjzaTiAEejeAOLKctGpmKA * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, HSgFoYglukrQnwmltWKJJNfRjaEwA__Enum, tSPvxZUJjzaTiAEejeAOLKctGpmKA_KFPKrRLxWQueipJlIjxclqphgfqy, (tSPvxZUJjzaTiAEejeAOLKctGpmKA * __this, MethodInfo * method)); +DO_APP_FUNC(0x021E52D0, String *, tSPvxZUJjzaTiAEejeAOLKctGpmKA_LVmcPOeqeDbqbgLicgjuWNFJdAuo, (tSPvxZUJjzaTiAEejeAOLKctGpmKA * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, lrZLQeVDGDrIlNPDYgJAkdvWWrWwA *, ydldxpSsOZLZMTNrfDcYRQNMEqkP_AjXtGpSZCVsKCgQEyDPQkPmUoFPMA, (ydldxpSsOZLZMTNrfDcYRQNMEqkP * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, ydldxpSsOZLZMTNrfDcYRQNMEqkP_pYaDWAhgbkebMUSDoBhpwmjmWfEv, (ydldxpSsOZLZMTNrfDcYRQNMEqkP * __this, lrZLQeVDGDrIlNPDYgJAkdvWWrWwA * param_0001462e, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, ydldxpSsOZLZMTNrfDcYRQNMEqkP_XxWtxjuUXwbGJVbHHjVNSyChWSxU, (ydldxpSsOZLZMTNrfDcYRQNMEqkP * __this, MethodInfo * method)); @@ -80081,25 +91196,25 @@ DO_APP_FUNC(0x010F8990, ORTGfyrtizZvDeIlwUvooZaSkBIl_NxUoZAIjxQCtCGCtMeaRfbbPUZU DO_APP_FUNC(0x01B621F0, void, ORTGfyrtizZvDeIlwUvooZaSkBIl_JrFfGjCcMfLsQGMykDroFWwsPsNJ, (ORTGfyrtizZvDeIlwUvooZaSkBIl * __this, ORTGfyrtizZvDeIlwUvooZaSkBIl_NxUoZAIjxQCtCGCtMeaRfbbPUZUjA param_00014656, MethodInfo * method)); DO_APP_FUNC(0x0127BA60, ORTGfyrtizZvDeIlwUvooZaSkBIl_MDLGpsHDafewljoLdpDIwkJokPyS, ORTGfyrtizZvDeIlwUvooZaSkBIl_RMbsmJulXQnfmzLsjzYaRESKDlwN, (ORTGfyrtizZvDeIlwUvooZaSkBIl * __this, MethodInfo * method)); DO_APP_FUNC(0x02000580, void, ORTGfyrtizZvDeIlwUvooZaSkBIl_dgcccOVWcRHUHUgbzcOVCxhpTJZv, (ORTGfyrtizZvDeIlwUvooZaSkBIl * __this, ORTGfyrtizZvDeIlwUvooZaSkBIl_MDLGpsHDafewljoLdpDIwkJokPyS param_00014657, MethodInfo * method)); -DO_APP_FUNC(0x00C15E20, uint16_t, ORTGfyrtizZvDeIlwUvooZaSkBIl_NxUoZAIjxQCtCGCtMeaRfbbPUZUjA_rozCDQKbSiDqpDECQBytTXPaMcjDA, (ORTGfyrtizZvDeIlwUvooZaSkBIl_NxUoZAIjxQCtCGCtMeaRfbbPUZUjA__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C2E000, void, ORTGfyrtizZvDeIlwUvooZaSkBIl_NxUoZAIjxQCtCGCtMeaRfbbPUZUjA_vKIVotIvcCTOazWMeaFOBQYlLxmq, (ORTGfyrtizZvDeIlwUvooZaSkBIl_NxUoZAIjxQCtCGCtMeaRfbbPUZUjA__Boxed * __this, uint16_t param_00014658, MethodInfo * method)); -DO_APP_FUNC(0x0181A0D0, uint16_t, ORTGfyrtizZvDeIlwUvooZaSkBIl_NxUoZAIjxQCtCGCtMeaRfbbPUZUjA_jcmUONgIzMTXOvOBRVlYlWigKKFW, (ORTGfyrtizZvDeIlwUvooZaSkBIl_NxUoZAIjxQCtCGCtMeaRfbbPUZUjA__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x021E76E0, void, ORTGfyrtizZvDeIlwUvooZaSkBIl_NxUoZAIjxQCtCGCtMeaRfbbPUZUjA_RaBUALYVSKxCXQVLuZSBXOKFnhWH, (ORTGfyrtizZvDeIlwUvooZaSkBIl_NxUoZAIjxQCtCGCtMeaRfbbPUZUjA__Boxed * __this, uint16_t param_00014659, MethodInfo * method)); -DO_APP_FUNC(0x021E76F0, void, ORTGfyrtizZvDeIlwUvooZaSkBIl_NxUoZAIjxQCtCGCtMeaRfbbPUZUjA_RlWnbqRxycReatVDQKfBAzQfFjrK, (ORTGfyrtizZvDeIlwUvooZaSkBIl_NxUoZAIjxQCtCGCtMeaRfbbPUZUjA__Boxed * __this, uint16_t param_0001465a, MethodInfo * method)); -DO_APP_FUNC(0x021E7700, void, ORTGfyrtizZvDeIlwUvooZaSkBIl_NxUoZAIjxQCtCGCtMeaRfbbPUZUjA_nHnLfAGpDrFOcicwKmmSdhHtXfkdb, (ORTGfyrtizZvDeIlwUvooZaSkBIl_NxUoZAIjxQCtCGCtMeaRfbbPUZUjA__Boxed * __this, uint16_t param_0001465b, MethodInfo * method)); -DO_APP_FUNC(0x021E7710, void, ORTGfyrtizZvDeIlwUvooZaSkBIl_NxUoZAIjxQCtCGCtMeaRfbbPUZUjA_FKOfICtAeyktgaFpTnkJUSLnVzDV, (ORTGfyrtizZvDeIlwUvooZaSkBIl_NxUoZAIjxQCtCGCtMeaRfbbPUZUjA__Boxed * __this, uint16_t param_0001465c, MethodInfo * method)); -DO_APP_FUNC(0x021E7720, void, ORTGfyrtizZvDeIlwUvooZaSkBIl_NxUoZAIjxQCtCGCtMeaRfbbPUZUjA_CuedANYorygBATDXUBLkBtcGjWpEA, (ORTGfyrtizZvDeIlwUvooZaSkBIl_NxUoZAIjxQCtCGCtMeaRfbbPUZUjA__Boxed * __this, uint16_t param_0001465d, MethodInfo * method)); -DO_APP_FUNC(0x021E7730, void, ORTGfyrtizZvDeIlwUvooZaSkBIl_NxUoZAIjxQCtCGCtMeaRfbbPUZUjA_XYgftlDBxDLJTKCdcFZYMwuwtXPaA, (ORTGfyrtizZvDeIlwUvooZaSkBIl_NxUoZAIjxQCtCGCtMeaRfbbPUZUjA__Boxed * __this, uint16_t param_0001465e, MethodInfo * method)); -DO_APP_FUNC(0x021E7740, void, ORTGfyrtizZvDeIlwUvooZaSkBIl_NxUoZAIjxQCtCGCtMeaRfbbPUZUjA_FcLiqpeGtzTdtqFPQeWfoTHvzisw, (ORTGfyrtizZvDeIlwUvooZaSkBIl_NxUoZAIjxQCtCGCtMeaRfbbPUZUjA__Boxed * __this, uint16_t param_0001465f, MethodInfo * method)); -DO_APP_FUNC(0x00C15E20, uint16_t, ORTGfyrtizZvDeIlwUvooZaSkBIl_MDLGpsHDafewljoLdpDIwkJokPyS_RDGYnXvQbyrFNxIxMGlNJeeEkOUA, (ORTGfyrtizZvDeIlwUvooZaSkBIl_MDLGpsHDafewljoLdpDIwkJokPyS__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C2E000, void, ORTGfyrtizZvDeIlwUvooZaSkBIl_MDLGpsHDafewljoLdpDIwkJokPyS_UPdGlDfIhYIRkLFigsEmgIbRenKK, (ORTGfyrtizZvDeIlwUvooZaSkBIl_MDLGpsHDafewljoLdpDIwkJokPyS__Boxed * __this, uint16_t param_00014660, MethodInfo * method)); -DO_APP_FUNC(0x021E76E0, void, ORTGfyrtizZvDeIlwUvooZaSkBIl_MDLGpsHDafewljoLdpDIwkJokPyS_kXOpQydWRKasXxEjstwTHbxZCLrH, (ORTGfyrtizZvDeIlwUvooZaSkBIl_MDLGpsHDafewljoLdpDIwkJokPyS__Boxed * __this, uint16_t param_00014661, MethodInfo * method)); -DO_APP_FUNC(0x021E76F0, void, ORTGfyrtizZvDeIlwUvooZaSkBIl_MDLGpsHDafewljoLdpDIwkJokPyS_FDCQsrrMnfVtjyPjvYXAaMdfvqLq, (ORTGfyrtizZvDeIlwUvooZaSkBIl_MDLGpsHDafewljoLdpDIwkJokPyS__Boxed * __this, uint16_t param_00014662, MethodInfo * method)); -DO_APP_FUNC(0x021E7700, void, ORTGfyrtizZvDeIlwUvooZaSkBIl_MDLGpsHDafewljoLdpDIwkJokPyS_fZCmgLseMphALhBfyhNGeZUeOTq, (ORTGfyrtizZvDeIlwUvooZaSkBIl_MDLGpsHDafewljoLdpDIwkJokPyS__Boxed * __this, uint16_t param_00014663, MethodInfo * method)); -DO_APP_FUNC(0x021E7710, void, ORTGfyrtizZvDeIlwUvooZaSkBIl_MDLGpsHDafewljoLdpDIwkJokPyS_JxMTkIEgfMFhLtjPymEDfbVQOgpc, (ORTGfyrtizZvDeIlwUvooZaSkBIl_MDLGpsHDafewljoLdpDIwkJokPyS__Boxed * __this, uint16_t param_00014664, MethodInfo * method)); -DO_APP_FUNC(0x021E7720, void, ORTGfyrtizZvDeIlwUvooZaSkBIl_MDLGpsHDafewljoLdpDIwkJokPyS_wlFgViCaRlhWJmhTkISrvedeqkXC, (ORTGfyrtizZvDeIlwUvooZaSkBIl_MDLGpsHDafewljoLdpDIwkJokPyS__Boxed * __this, uint16_t param_00014665, MethodInfo * method)); -DO_APP_FUNC(0x021E7730, void, ORTGfyrtizZvDeIlwUvooZaSkBIl_MDLGpsHDafewljoLdpDIwkJokPyS_AOQCflFkSCuEvNLAARVdTJAHhRgEb, (ORTGfyrtizZvDeIlwUvooZaSkBIl_MDLGpsHDafewljoLdpDIwkJokPyS__Boxed * __this, uint16_t param_00014666, MethodInfo * method)); -DO_APP_FUNC(0x021E7740, void, ORTGfyrtizZvDeIlwUvooZaSkBIl_MDLGpsHDafewljoLdpDIwkJokPyS_FYXTYLYWgnbvlYCwXVJFeSJuhErkA, (ORTGfyrtizZvDeIlwUvooZaSkBIl_MDLGpsHDafewljoLdpDIwkJokPyS__Boxed * __this, uint16_t param_00014667, MethodInfo * method)); +DO_APP_FUNC(0x00C15E20, uint16_t, ORTGfyrtizZvDeIlwUvooZaSkBIl_NxUoZAIjxQCtCGCtMeaRfbbPUZUjA_rozCDQKbSiDqpDECQBytTXPaMcjDA, (ORTGfyrtizZvDeIlwUvooZaSkBIl_NxUoZAIjxQCtCGCtMeaRfbbPUZUjA * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C2E000, void, ORTGfyrtizZvDeIlwUvooZaSkBIl_NxUoZAIjxQCtCGCtMeaRfbbPUZUjA_vKIVotIvcCTOazWMeaFOBQYlLxmq, (ORTGfyrtizZvDeIlwUvooZaSkBIl_NxUoZAIjxQCtCGCtMeaRfbbPUZUjA * __this, uint16_t param_00014658, MethodInfo * method)); +DO_APP_FUNC(0x0181A0D0, uint16_t, ORTGfyrtizZvDeIlwUvooZaSkBIl_NxUoZAIjxQCtCGCtMeaRfbbPUZUjA_jcmUONgIzMTXOvOBRVlYlWigKKFW, (ORTGfyrtizZvDeIlwUvooZaSkBIl_NxUoZAIjxQCtCGCtMeaRfbbPUZUjA * __this, MethodInfo * method)); +DO_APP_FUNC(0x021E76E0, void, ORTGfyrtizZvDeIlwUvooZaSkBIl_NxUoZAIjxQCtCGCtMeaRfbbPUZUjA_RaBUALYVSKxCXQVLuZSBXOKFnhWH, (ORTGfyrtizZvDeIlwUvooZaSkBIl_NxUoZAIjxQCtCGCtMeaRfbbPUZUjA * __this, uint16_t param_00014659, MethodInfo * method)); +DO_APP_FUNC(0x021E76F0, void, ORTGfyrtizZvDeIlwUvooZaSkBIl_NxUoZAIjxQCtCGCtMeaRfbbPUZUjA_RlWnbqRxycReatVDQKfBAzQfFjrK, (ORTGfyrtizZvDeIlwUvooZaSkBIl_NxUoZAIjxQCtCGCtMeaRfbbPUZUjA * __this, uint16_t param_0001465a, MethodInfo * method)); +DO_APP_FUNC(0x021E7700, void, ORTGfyrtizZvDeIlwUvooZaSkBIl_NxUoZAIjxQCtCGCtMeaRfbbPUZUjA_nHnLfAGpDrFOcicwKmmSdhHtXfkdb, (ORTGfyrtizZvDeIlwUvooZaSkBIl_NxUoZAIjxQCtCGCtMeaRfbbPUZUjA * __this, uint16_t param_0001465b, MethodInfo * method)); +DO_APP_FUNC(0x021E7710, void, ORTGfyrtizZvDeIlwUvooZaSkBIl_NxUoZAIjxQCtCGCtMeaRfbbPUZUjA_FKOfICtAeyktgaFpTnkJUSLnVzDV, (ORTGfyrtizZvDeIlwUvooZaSkBIl_NxUoZAIjxQCtCGCtMeaRfbbPUZUjA * __this, uint16_t param_0001465c, MethodInfo * method)); +DO_APP_FUNC(0x021E7720, void, ORTGfyrtizZvDeIlwUvooZaSkBIl_NxUoZAIjxQCtCGCtMeaRfbbPUZUjA_CuedANYorygBATDXUBLkBtcGjWpEA, (ORTGfyrtizZvDeIlwUvooZaSkBIl_NxUoZAIjxQCtCGCtMeaRfbbPUZUjA * __this, uint16_t param_0001465d, MethodInfo * method)); +DO_APP_FUNC(0x021E7730, void, ORTGfyrtizZvDeIlwUvooZaSkBIl_NxUoZAIjxQCtCGCtMeaRfbbPUZUjA_XYgftlDBxDLJTKCdcFZYMwuwtXPaA, (ORTGfyrtizZvDeIlwUvooZaSkBIl_NxUoZAIjxQCtCGCtMeaRfbbPUZUjA * __this, uint16_t param_0001465e, MethodInfo * method)); +DO_APP_FUNC(0x021E7740, void, ORTGfyrtizZvDeIlwUvooZaSkBIl_NxUoZAIjxQCtCGCtMeaRfbbPUZUjA_FcLiqpeGtzTdtqFPQeWfoTHvzisw, (ORTGfyrtizZvDeIlwUvooZaSkBIl_NxUoZAIjxQCtCGCtMeaRfbbPUZUjA * __this, uint16_t param_0001465f, MethodInfo * method)); +DO_APP_FUNC(0x00C15E20, uint16_t, ORTGfyrtizZvDeIlwUvooZaSkBIl_MDLGpsHDafewljoLdpDIwkJokPyS_RDGYnXvQbyrFNxIxMGlNJeeEkOUA, (ORTGfyrtizZvDeIlwUvooZaSkBIl_MDLGpsHDafewljoLdpDIwkJokPyS * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C2E000, void, ORTGfyrtizZvDeIlwUvooZaSkBIl_MDLGpsHDafewljoLdpDIwkJokPyS_UPdGlDfIhYIRkLFigsEmgIbRenKK, (ORTGfyrtizZvDeIlwUvooZaSkBIl_MDLGpsHDafewljoLdpDIwkJokPyS * __this, uint16_t param_00014660, MethodInfo * method)); +DO_APP_FUNC(0x021E76E0, void, ORTGfyrtizZvDeIlwUvooZaSkBIl_MDLGpsHDafewljoLdpDIwkJokPyS_kXOpQydWRKasXxEjstwTHbxZCLrH, (ORTGfyrtizZvDeIlwUvooZaSkBIl_MDLGpsHDafewljoLdpDIwkJokPyS * __this, uint16_t param_00014661, MethodInfo * method)); +DO_APP_FUNC(0x021E76F0, void, ORTGfyrtizZvDeIlwUvooZaSkBIl_MDLGpsHDafewljoLdpDIwkJokPyS_FDCQsrrMnfVtjyPjvYXAaMdfvqLq, (ORTGfyrtizZvDeIlwUvooZaSkBIl_MDLGpsHDafewljoLdpDIwkJokPyS * __this, uint16_t param_00014662, MethodInfo * method)); +DO_APP_FUNC(0x021E7700, void, ORTGfyrtizZvDeIlwUvooZaSkBIl_MDLGpsHDafewljoLdpDIwkJokPyS_fZCmgLseMphALhBfyhNGeZUeOTq, (ORTGfyrtizZvDeIlwUvooZaSkBIl_MDLGpsHDafewljoLdpDIwkJokPyS * __this, uint16_t param_00014663, MethodInfo * method)); +DO_APP_FUNC(0x021E7710, void, ORTGfyrtizZvDeIlwUvooZaSkBIl_MDLGpsHDafewljoLdpDIwkJokPyS_JxMTkIEgfMFhLtjPymEDfbVQOgpc, (ORTGfyrtizZvDeIlwUvooZaSkBIl_MDLGpsHDafewljoLdpDIwkJokPyS * __this, uint16_t param_00014664, MethodInfo * method)); +DO_APP_FUNC(0x021E7720, void, ORTGfyrtizZvDeIlwUvooZaSkBIl_MDLGpsHDafewljoLdpDIwkJokPyS_wlFgViCaRlhWJmhTkISrvedeqkXC, (ORTGfyrtizZvDeIlwUvooZaSkBIl_MDLGpsHDafewljoLdpDIwkJokPyS * __this, uint16_t param_00014665, MethodInfo * method)); +DO_APP_FUNC(0x021E7730, void, ORTGfyrtizZvDeIlwUvooZaSkBIl_MDLGpsHDafewljoLdpDIwkJokPyS_AOQCflFkSCuEvNLAARVdTJAHhRgEb, (ORTGfyrtizZvDeIlwUvooZaSkBIl_MDLGpsHDafewljoLdpDIwkJokPyS * __this, uint16_t param_00014666, MethodInfo * method)); +DO_APP_FUNC(0x021E7740, void, ORTGfyrtizZvDeIlwUvooZaSkBIl_MDLGpsHDafewljoLdpDIwkJokPyS_FYXTYLYWgnbvlYCwXVJFeSJuhErkA, (ORTGfyrtizZvDeIlwUvooZaSkBIl_MDLGpsHDafewljoLdpDIwkJokPyS * __this, uint16_t param_00014667, MethodInfo * method)); DO_APP_FUNC(0x021E7750, void, GTJWYMCBWUFmGJGFrEFOMdusHKKP__ctor, (GTJWYMCBWUFmGJGFrEFOMdusHKKP * __this, String * param_00014668, String * param_00014669, String * param_0001466a, String * param_0001466b, int32_t param_0001466c, int32_t param_0001466d, bool param_0001466e, String * param_0001466f, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8CDA0, GTJWYMCBWUFmGJGFrEFOMdusHKKP__ctor__MethodInfo); DO_APP_FUNC(0x0049E0C0, void *, GTJWYMCBWUFmGJGFrEFOMdusHKKP_XaFgejwFzhZVSbfciOuoSdSnGXlO, (GTJWYMCBWUFmGJGFrEFOMdusHKKP * __this, MethodInfo * method)); @@ -80125,15 +91240,15 @@ DO_APP_FUNC(0x021E85F0, void, GTJWYMCBWUFmGJGFrEFOMdusHKKP_LsxzSvQljPCBNjPFaBuzt DO_APP_FUNC(0x021E8620, void, GTJWYMCBWUFmGJGFrEFOMdusHKKP_LsxzSvQljPCBNjPFaBuztJosGZLTA_1, (GTJWYMCBWUFmGJGFrEFOMdusHKKP * __this, CXcjWwmjwkDPvbUGOUBrzXtVCjZi__Enum param_00014673, CXcjWwmjwkDPvbUGOUBrzXtVCjZi__Enum param_00014674, TxIEpSdEtyyzpeNinAApugagRQDUA__Enum param_00014675, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8CD90, GTJWYMCBWUFmGJGFrEFOMdusHKKP_LsxzSvQljPCBNjPFaBuztJosGZLTA_1__MethodInfo); DO_APP_FUNC(0x021E86F0, void, GTJWYMCBWUFmGJGFrEFOMdusHKKP_cAZzGAFVtGTVqldvdlrLVMTtaDJm, (GTJWYMCBWUFmGJGFrEFOMdusHKKP * __this, MethodInfo * method)); -DO_APP_FUNC(0x021E8720, bool, GTJWYMCBWUFmGJGFrEFOMdusHKKP_YCTIEluofjTCejnNUmMWdqilaNeq, (GTJWYMCBWUFmGJGFrEFOMdusHKKP * __this, Byte__Array * param_00014676, uint8_t param_00014677, MethodInfo * method)); +DO_APP_FUNC(0x021E8720, bool, GTJWYMCBWUFmGJGFrEFOMdusHKKP_YCTIEluofjTCejnNUmMWdqilaNeq, (GTJWYMCBWUFmGJGFrEFOMdusHKKP * __this, Byte__Array * * param_00014676, uint8_t param_00014677, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8CD80, GTJWYMCBWUFmGJGFrEFOMdusHKKP_YCTIEluofjTCejnNUmMWdqilaNeq__MethodInfo); DO_APP_FUNC(0x021E8B60, String *, GTJWYMCBWUFmGJGFrEFOMdusHKKP_SubPZWelNjPfpFKQprUiEGtTCKoT, (GTJWYMCBWUFmGJGFrEFOMdusHKKP * __this, MethodInfo * method)); -DO_APP_FUNC(0x021E8CC0, bool, GTJWYMCBWUFmGJGFrEFOMdusHKKP_SubPZWelNjPfpFKQprUiEGtTCKoT_1, (GTJWYMCBWUFmGJGFrEFOMdusHKKP * __this, Byte__Array * param_00014678, MethodInfo * method)); +DO_APP_FUNC(0x021E8CC0, bool, GTJWYMCBWUFmGJGFrEFOMdusHKKP_SubPZWelNjPfpFKQprUiEGtTCKoT_1, (GTJWYMCBWUFmGJGFrEFOMdusHKKP * __this, Byte__Array * * param_00014678, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8CD78, GTJWYMCBWUFmGJGFrEFOMdusHKKP_SubPZWelNjPfpFKQprUiEGtTCKoT_1__MethodInfo); DO_APP_FUNC(0x021E8F90, String *, GTJWYMCBWUFmGJGFrEFOMdusHKKP_zMshNnjnoiaNvsDGymMUHoypjaxc, (GTJWYMCBWUFmGJGFrEFOMdusHKKP * __this, MethodInfo * method)); -DO_APP_FUNC(0x021E90A0, bool, GTJWYMCBWUFmGJGFrEFOMdusHKKP_zMshNnjnoiaNvsDGymMUHoypjaxc_1, (GTJWYMCBWUFmGJGFrEFOMdusHKKP * __this, Byte__Array * param_00014679, MethodInfo * method)); +DO_APP_FUNC(0x021E90A0, bool, GTJWYMCBWUFmGJGFrEFOMdusHKKP_zMshNnjnoiaNvsDGymMUHoypjaxc_1, (GTJWYMCBWUFmGJGFrEFOMdusHKKP * __this, Byte__Array * * param_00014679, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8CDB8, GTJWYMCBWUFmGJGFrEFOMdusHKKP_zMshNnjnoiaNvsDGymMUHoypjaxc_1__MethodInfo); -DO_APP_FUNC(0x021E9260, bool, GTJWYMCBWUFmGJGFrEFOMdusHKKP_zMshNnjnoiaNvsDGymMUHoypjaxc_2, (void * param_0001467a, Byte__Array * param_0001467b, MethodInfo * method)); +DO_APP_FUNC(0x021E9260, bool, GTJWYMCBWUFmGJGFrEFOMdusHKKP_zMshNnjnoiaNvsDGymMUHoypjaxc_2, (void * param_0001467a, Byte__Array * * param_0001467b, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8CDB0, GTJWYMCBWUFmGJGFrEFOMdusHKKP_zMshNnjnoiaNvsDGymMUHoypjaxc_2__MethodInfo); DO_APP_FUNC(0x021E95A0, String *, GTJWYMCBWUFmGJGFrEFOMdusHKKP_zMshNnjnoiaNvsDGymMUHoypjaxc_3, (void * param_0001467c, MethodInfo * method)); DO_APP_FUNC(0x021E96B0, bool, GTJWYMCBWUFmGJGFrEFOMdusHKKP_tiSNvolyGArTdVMavSIqSbAUQmBh, (GTJWYMCBWUFmGJGFrEFOMdusHKKP * __this, void * param_0001467d, int32_t param_0001467e, int32_t param_0001467f, OutputReportOptions__Enum param_00014680, MethodInfo * method)); @@ -80224,33 +91339,33 @@ DO_APP_FUNC(0x021EDF30, IEnumerable_1_GTJWYMCBWUFmGJGFrEFOMdusHKKP_ *, JijFgftvq DO_APP_FUNC(0x021EE0E0, IEnumerable_1_GTJWYMCBWUFmGJGFrEFOMdusHKKP_ *, JijFgftvqSztIyGNBBwSiwjdSDyIA_kTHJJEdwqlPTowLQfDZyPDGSDSxd_1, (String * param_000146bf, MethodInfo * method)); DO_APP_FUNC(0x021EE3A0, bool, JijFgftvqSztIyGNBBwSiwjdSDyIA_tSFVLmnmpYWlQlmcsibipmDxFVLL, (MethodInfo * method)); DO_APP_FUNC(0x021EE730, int32_t, JijFgftvqSztIyGNBBwSiwjdSDyIA_iPBOpCdtgOTiGnpLCvQjlCuPKTHw, (MethodInfo * method)); -DO_APP_FUNC(0x021EE790, int32_t, JijFgftvqSztIyGNBBwSiwjdSDyIA_iPBOpCdtgOTiGnpLCvQjlCuPKTHw_1, (bcOmlpGgwVCrecHKRjwdQzyizLQGA_zqrMMRRVlnxYQKhlRpOFkRpFWHlB param_000146c0, NativeBuffer * param_000146c1, MethodInfo * method)); +DO_APP_FUNC(0x021EE790, int32_t, JijFgftvqSztIyGNBBwSiwjdSDyIA_iPBOpCdtgOTiGnpLCvQjlCuPKTHw_1, (bcOmlpGgwVCrecHKRjwdQzyizLQGA_zqrMMRRVlnxYQKhlRpOFkRpFWHlB * param_000146c0, NativeBuffer * param_000146c1, MethodInfo * method)); DO_APP_FUNC(0x021EEAD0, IList_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ *, JijFgftvqSztIyGNBBwSiwjdSDyIA_FcNOiLmXYIpKkuKGSxBTOroVnjCg, (MethodInfo * method)); DO_APP_FUNC(0x021EF450, void, JijFgftvqSztIyGNBBwSiwjdSDyIA_bvZlcDmJcFBuaeiTJzUxabeWEgDsA, (List_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV_ * param_000146c2, MethodInfo * method)); DO_APP_FUNC(0x021EF8E0, List_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux_ *, JijFgftvqSztIyGNBBwSiwjdSDyIA_FBTbmajNjTdxkEFjIMoGxNUasUuN, (List_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux_ * param_000146c3, MethodInfo * method)); DO_APP_FUNC(0x021EFDF0, List_1_System_UInt32_ *, JijFgftvqSztIyGNBBwSiwjdSDyIA_bOsvscWIdOKAqsbacHUAahRvBVCu, (uint32_t param_000146c4, MethodInfo * method)); DO_APP_FUNC(0x021F00B0, List_1_System_UInt32_ *, JijFgftvqSztIyGNBBwSiwjdSDyIA_KLDNukTkDYHWeJqribZnbwameoGfA, (uint32_t param_000146c5, MethodInfo * method)); DO_APP_FUNC(0x021F02F0, String *, JijFgftvqSztIyGNBBwSiwjdSDyIA_WKmxBZCXdsmJrOcwpMKWwvFGOJFT, (uint32_t param_000146c6, MethodInfo * method)); -DO_APP_FUNC(0x021F0600, void, JijFgftvqSztIyGNBBwSiwjdSDyIA_msYCaFTNYNDDbaFIaRLuwIwpHLKY, (uint32_t param_000146c7, List_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux_ * param_000146c8, bool param_000146c9, String * param_000146ca, MethodInfo * method)); -DO_APP_FUNC(0x021F07F0, bool, JijFgftvqSztIyGNBBwSiwjdSDyIA_TKpsEadMkOSEUmDLudQvgywcdAZjA, (uint32_t param_000146cb, List_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux_ * param_000146cc, bool param_000146cd, uint32_t param_000146ce, MethodInfo * method)); -DO_APP_FUNC(0x021F0DF0, bool, JijFgftvqSztIyGNBBwSiwjdSDyIA_fIYBDslvJiJeHGWXtcvnnmwcgSUK, (uint32_t param_000146cf, String * param_000146d0, String * param_000146d1, uint32_t param_000146d2, MethodInfo * method)); -DO_APP_FUNC(0x021F1120, bool, JijFgftvqSztIyGNBBwSiwjdSDyIA_KFcMFfRWjDZcfrXMKtqMxpIoMYmD, (String * param_000146d3, String * param_000146d4, MethodInfo * method)); -DO_APP_FUNC(0x021F1290, bool, JijFgftvqSztIyGNBBwSiwjdSDyIA_KXKieEeCUBAoOfFgjLBVGJKvNyjWA, (uint32_t param_000146d5, String * param_000146d6, uint32_t param_000146d7, MethodInfo * method)); +DO_APP_FUNC(0x021F0600, void, JijFgftvqSztIyGNBBwSiwjdSDyIA_msYCaFTNYNDDbaFIaRLuwIwpHLKY, (uint32_t param_000146c7, List_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux_ * * param_000146c8, bool * param_000146c9, String * * param_000146ca, MethodInfo * method)); +DO_APP_FUNC(0x021F07F0, bool, JijFgftvqSztIyGNBBwSiwjdSDyIA_TKpsEadMkOSEUmDLudQvgywcdAZjA, (uint32_t param_000146cb, List_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux_ * * param_000146cc, bool * param_000146cd, uint32_t * param_000146ce, MethodInfo * method)); +DO_APP_FUNC(0x021F0DF0, bool, JijFgftvqSztIyGNBBwSiwjdSDyIA_fIYBDslvJiJeHGWXtcvnnmwcgSUK, (uint32_t param_000146cf, String * param_000146d0, String * * param_000146d1, uint32_t * param_000146d2, MethodInfo * method)); +DO_APP_FUNC(0x021F1120, bool, JijFgftvqSztIyGNBBwSiwjdSDyIA_KFcMFfRWjDZcfrXMKtqMxpIoMYmD, (String * param_000146d3, String * * param_000146d4, MethodInfo * method)); +DO_APP_FUNC(0x021F1290, bool, JijFgftvqSztIyGNBBwSiwjdSDyIA_KXKieEeCUBAoOfFgjLBVGJKvNyjWA, (uint32_t param_000146d5, String * param_000146d6, uint32_t * param_000146d7, MethodInfo * method)); DO_APP_FUNC(0x021F1640, bool, JijFgftvqSztIyGNBBwSiwjdSDyIA_zIUcGxoCGUFMjdBnIvTfgjUFjITB, (String * param_000146d8, bool param_000146d9, MethodInfo * method)); DO_APP_FUNC(0x021F1CF0, gWxrirpmIhQTmhziZnlXlEwmYtKB_pPZcvjyLOvlRnUdsCbkPaOkCCZCA, JijFgftvqSztIyGNBBwSiwjdSDyIA_bJAesNQhigzehBHFfYYChPjkCDIp, (MethodInfo * method)); DO_APP_FUNC(0x021F1D70, String *, JijFgftvqSztIyGNBBwSiwjdSDyIA_yEJyPSOeEBOsbfqZXgWYYcXnVcIq, (void * param_000146da, gWxrirpmIhQTmhziZnlXlEwmYtKB_sjhtdtPoBlWDLZgVBsTSqCbJvkiq param_000146db, MethodInfo * method)); -DO_APP_FUNC(0x021F1F00, String *, JijFgftvqSztIyGNBBwSiwjdSDyIA_FHqCeOTtEFtyTbeUGMCKbVpZprft, (void * param_000146dc, gWxrirpmIhQTmhziZnlXlEwmYtKB_pPZcvjyLOvlRnUdsCbkPaOkCCZCA param_000146dd, MethodInfo * method)); +DO_APP_FUNC(0x021F1F00, String *, JijFgftvqSztIyGNBBwSiwjdSDyIA_FHqCeOTtEFtyTbeUGMCKbVpZprft, (void * param_000146dc, gWxrirpmIhQTmhziZnlXlEwmYtKB_pPZcvjyLOvlRnUdsCbkPaOkCCZCA * param_000146dd, MethodInfo * method)); DO_APP_FUNC(0x021F21B0, Guid, JijFgftvqSztIyGNBBwSiwjdSDyIA_ulqrvekpWLLkRUJJIIsoKRYjErDj, (MethodInfo * method)); -DO_APP_FUNC(0x021F2350, String *, JijFgftvqSztIyGNBBwSiwjdSDyIA_oTShXfAcGELJpzTpNwpWrJqHDXwS, (void * param_000146de, gWxrirpmIhQTmhziZnlXlEwmYtKB_pPZcvjyLOvlRnUdsCbkPaOkCCZCA param_000146df, MethodInfo * method)); -DO_APP_FUNC(0x021F23C0, String *, JijFgftvqSztIyGNBBwSiwjdSDyIA_sXLfPhxAhwsTLzAcytcEXpobsTvU, (void * param_000146e0, gWxrirpmIhQTmhziZnlXlEwmYtKB_pPZcvjyLOvlRnUdsCbkPaOkCCZCA param_000146e1, MethodInfo * method)); -DO_APP_FUNC(0x021F2430, String *, JijFgftvqSztIyGNBBwSiwjdSDyIA_aphBaiIyQocMgXlNCXtfnKJlJhXjA, (void * param_000146e2, gWxrirpmIhQTmhziZnlXlEwmYtKB_pPZcvjyLOvlRnUdsCbkPaOkCCZCA param_000146e3, MethodInfo * method)); -DO_APP_FUNC(0x021F24A0, String *, JijFgftvqSztIyGNBBwSiwjdSDyIA_nDoNzDBGezeKIXsqNPCXUcwGBuxY, (void * param_000146e4, gWxrirpmIhQTmhziZnlXlEwmYtKB_pPZcvjyLOvlRnUdsCbkPaOkCCZCA param_000146e5, MethodInfo * method)); -DO_APP_FUNC(0x021F2510, String *, JijFgftvqSztIyGNBBwSiwjdSDyIA_DmfcYfoqgtEJBcvvtQqilCowYAhNA, (void * param_000146e6, gWxrirpmIhQTmhziZnlXlEwmYtKB_pPZcvjyLOvlRnUdsCbkPaOkCCZCA param_000146e7, int32_t param_000146e8, MethodInfo * method)); -DO_APP_FUNC(0x021F2790, String *, JijFgftvqSztIyGNBBwSiwjdSDyIA_LiGCVOEcuvppwAeYeKLTNhXbqMeTb, (void * param_000146e9, gWxrirpmIhQTmhziZnlXlEwmYtKB_pPZcvjyLOvlRnUdsCbkPaOkCCZCA param_000146ea, MethodInfo * method)); -DO_APP_FUNC(0x021F2AB0, void, JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__ctor, (JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__Boxed * __this, String * param_000146eb, String * param_000146ec, String * param_000146ed, String * param_000146ee, String * param_000146ef, bool param_000146f0, String * param_000146f1, MethodInfo * method)); -DO_APP_FUNC(0x021F2DA0, void, JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_vzaXbmkmqHknlGGeamxnmaHvgQSz, (JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x021F3230, void, JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__ctor, (JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__Boxed * __this, int32_t param_000146f2, uint32_t param_000146f3, String * param_000146f4, MethodInfo * method)); -DO_APP_FUNC(0x021F3290, void, JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__ctor, (JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__Boxed * __this, uint32_t param_000146f5, String * param_000146f6, MethodInfo * method)); +DO_APP_FUNC(0x021F2350, String *, JijFgftvqSztIyGNBBwSiwjdSDyIA_oTShXfAcGELJpzTpNwpWrJqHDXwS, (void * param_000146de, gWxrirpmIhQTmhziZnlXlEwmYtKB_pPZcvjyLOvlRnUdsCbkPaOkCCZCA * param_000146df, MethodInfo * method)); +DO_APP_FUNC(0x021F23C0, String *, JijFgftvqSztIyGNBBwSiwjdSDyIA_sXLfPhxAhwsTLzAcytcEXpobsTvU, (void * param_000146e0, gWxrirpmIhQTmhziZnlXlEwmYtKB_pPZcvjyLOvlRnUdsCbkPaOkCCZCA * param_000146e1, MethodInfo * method)); +DO_APP_FUNC(0x021F2430, String *, JijFgftvqSztIyGNBBwSiwjdSDyIA_aphBaiIyQocMgXlNCXtfnKJlJhXjA, (void * param_000146e2, gWxrirpmIhQTmhziZnlXlEwmYtKB_pPZcvjyLOvlRnUdsCbkPaOkCCZCA * param_000146e3, MethodInfo * method)); +DO_APP_FUNC(0x021F24A0, String *, JijFgftvqSztIyGNBBwSiwjdSDyIA_nDoNzDBGezeKIXsqNPCXUcwGBuxY, (void * param_000146e4, gWxrirpmIhQTmhziZnlXlEwmYtKB_pPZcvjyLOvlRnUdsCbkPaOkCCZCA * param_000146e5, MethodInfo * method)); +DO_APP_FUNC(0x021F2510, String *, JijFgftvqSztIyGNBBwSiwjdSDyIA_DmfcYfoqgtEJBcvvtQqilCowYAhNA, (void * param_000146e6, gWxrirpmIhQTmhziZnlXlEwmYtKB_pPZcvjyLOvlRnUdsCbkPaOkCCZCA * param_000146e7, int32_t param_000146e8, MethodInfo * method)); +DO_APP_FUNC(0x021F2790, String *, JijFgftvqSztIyGNBBwSiwjdSDyIA_LiGCVOEcuvppwAeYeKLTNhXbqMeTb, (void * param_000146e9, gWxrirpmIhQTmhziZnlXlEwmYtKB_pPZcvjyLOvlRnUdsCbkPaOkCCZCA * param_000146ea, MethodInfo * method)); +DO_APP_FUNC(0x021F2AB0, void, JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__ctor, (JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb * __this, String * param_000146eb, String * param_000146ec, String * param_000146ed, String * param_000146ee, String * param_000146ef, bool param_000146f0, String * param_000146f1, MethodInfo * method)); +DO_APP_FUNC(0x021F2DA0, void, JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_vzaXbmkmqHknlGGeamxnmaHvgQSz, (JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb * __this, MethodInfo * method)); +DO_APP_FUNC(0x021F3230, void, JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__ctor, (JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV * __this, int32_t param_000146f2, uint32_t param_000146f3, String * param_000146f4, MethodInfo * method)); +DO_APP_FUNC(0x021F3290, void, JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__ctor, (JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux * __this, uint32_t param_000146f5, String * param_000146f6, MethodInfo * method)); DO_APP_FUNC(0x021F3350, void, JijFgftvqSztIyGNBBwSiwjdSDyIA_TkEtJmWQgiiaJpBwVMGeRlOwPciV__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, JijFgftvqSztIyGNBBwSiwjdSDyIA_TkEtJmWQgiiaJpBwVMGeRlOwPciV__ctor, (JijFgftvqSztIyGNBBwSiwjdSDyIA_TkEtJmWQgiiaJpBwVMGeRlOwPciV * __this, MethodInfo * method)); DO_APP_FUNC(0x021F3400, GTJWYMCBWUFmGJGFrEFOMdusHKKP *, JijFgftvqSztIyGNBBwSiwjdSDyIA_TkEtJmWQgiiaJpBwVMGeRlOwPciV_vNmASwwfipdARkQQFPuOFPdFupZrB, (JijFgftvqSztIyGNBBwSiwjdSDyIA_TkEtJmWQgiiaJpBwVMGeRlOwPciV * __this, JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb param_000146f7, MethodInfo * method)); @@ -80302,28 +91417,28 @@ DO_APP_FUNC(0x02004310, xPRgcRKBLoHYedzPQnPxbmJxtbbAb_DBwzZGwYWVTOTuFKrUnXASGElV DO_APP_FUNC(0x021F3A70, void, xPRgcRKBLoHYedzPQnPxbmJxtbbAb_JrFfGjCcMfLsQGMykDroFWwsPsNJ, (xPRgcRKBLoHYedzPQnPxbmJxtbbAb * __this, xPRgcRKBLoHYedzPQnPxbmJxtbbAb_DBwzZGwYWVTOTuFKrUnXASGElVlU param_00014712, MethodInfo * method)); DO_APP_FUNC(0x00B97480, xPRgcRKBLoHYedzPQnPxbmJxtbbAb_dFiYNgHLPHtmdiusINhaKTmdpaum, xPRgcRKBLoHYedzPQnPxbmJxtbbAb_RMbsmJulXQnfmzLsjzYaRESKDlwN, (xPRgcRKBLoHYedzPQnPxbmJxtbbAb * __this, MethodInfo * method)); DO_APP_FUNC(0x021F3A80, void, xPRgcRKBLoHYedzPQnPxbmJxtbbAb_dgcccOVWcRHUHUgbzcOVCxhpTJZv, (xPRgcRKBLoHYedzPQnPxbmJxtbbAb * __this, xPRgcRKBLoHYedzPQnPxbmJxtbbAb_dFiYNgHLPHtmdiusINhaKTmdpaum param_00014713, MethodInfo * method)); -DO_APP_FUNC(0x00C15E20, uint16_t, xPRgcRKBLoHYedzPQnPxbmJxtbbAb_DBwzZGwYWVTOTuFKrUnXASGElVlU_rozCDQKbSiDqpDECQBytTXPaMcjDA, (xPRgcRKBLoHYedzPQnPxbmJxtbbAb_DBwzZGwYWVTOTuFKrUnXASGElVlU__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C2E000, void, xPRgcRKBLoHYedzPQnPxbmJxtbbAb_DBwzZGwYWVTOTuFKrUnXASGElVlU_vKIVotIvcCTOazWMeaFOBQYlLxmq, (xPRgcRKBLoHYedzPQnPxbmJxtbbAb_DBwzZGwYWVTOTuFKrUnXASGElVlU__Boxed * __this, uint16_t param_00014714, MethodInfo * method)); -DO_APP_FUNC(0x0181A0D0, uint16_t, xPRgcRKBLoHYedzPQnPxbmJxtbbAb_DBwzZGwYWVTOTuFKrUnXASGElVlU_jcmUONgIzMTXOvOBRVlYlWigKKFW, (xPRgcRKBLoHYedzPQnPxbmJxtbbAb_DBwzZGwYWVTOTuFKrUnXASGElVlU__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x021E76E0, void, xPRgcRKBLoHYedzPQnPxbmJxtbbAb_DBwzZGwYWVTOTuFKrUnXASGElVlU_RaBUALYVSKxCXQVLuZSBXOKFnhWH, (xPRgcRKBLoHYedzPQnPxbmJxtbbAb_DBwzZGwYWVTOTuFKrUnXASGElVlU__Boxed * __this, uint16_t param_00014715, MethodInfo * method)); -DO_APP_FUNC(0x021E76F0, void, xPRgcRKBLoHYedzPQnPxbmJxtbbAb_DBwzZGwYWVTOTuFKrUnXASGElVlU_RlWnbqRxycReatVDQKfBAzQfFjrK, (xPRgcRKBLoHYedzPQnPxbmJxtbbAb_DBwzZGwYWVTOTuFKrUnXASGElVlU__Boxed * __this, uint16_t param_00014716, MethodInfo * method)); -DO_APP_FUNC(0x021E7700, void, xPRgcRKBLoHYedzPQnPxbmJxtbbAb_DBwzZGwYWVTOTuFKrUnXASGElVlU_nHnLfAGpDrFOcicwKmmSdhHtXfkdb, (xPRgcRKBLoHYedzPQnPxbmJxtbbAb_DBwzZGwYWVTOTuFKrUnXASGElVlU__Boxed * __this, uint16_t param_00014717, MethodInfo * method)); -DO_APP_FUNC(0x021E7710, void, xPRgcRKBLoHYedzPQnPxbmJxtbbAb_DBwzZGwYWVTOTuFKrUnXASGElVlU_FKOfICtAeyktgaFpTnkJUSLnVzDV, (xPRgcRKBLoHYedzPQnPxbmJxtbbAb_DBwzZGwYWVTOTuFKrUnXASGElVlU__Boxed * __this, uint16_t param_00014718, MethodInfo * method)); -DO_APP_FUNC(0x021E7720, void, xPRgcRKBLoHYedzPQnPxbmJxtbbAb_DBwzZGwYWVTOTuFKrUnXASGElVlU_CuedANYorygBATDXUBLkBtcGjWpEA, (xPRgcRKBLoHYedzPQnPxbmJxtbbAb_DBwzZGwYWVTOTuFKrUnXASGElVlU__Boxed * __this, uint16_t param_00014719, MethodInfo * method)); -DO_APP_FUNC(0x00C39DE0, uint16_t, xPRgcRKBLoHYedzPQnPxbmJxtbbAb_DBwzZGwYWVTOTuFKrUnXASGElVlU_AkbrDFJvKFvOZTGBHKovhrqWjvmt, (xPRgcRKBLoHYedzPQnPxbmJxtbbAb_DBwzZGwYWVTOTuFKrUnXASGElVlU__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x021E7730, void, xPRgcRKBLoHYedzPQnPxbmJxtbbAb_DBwzZGwYWVTOTuFKrUnXASGElVlU_XYgftlDBxDLJTKCdcFZYMwuwtXPaA, (xPRgcRKBLoHYedzPQnPxbmJxtbbAb_DBwzZGwYWVTOTuFKrUnXASGElVlU__Boxed * __this, uint16_t param_0001471a, MethodInfo * method)); -DO_APP_FUNC(0x021F3A90, uint16_t, xPRgcRKBLoHYedzPQnPxbmJxtbbAb_DBwzZGwYWVTOTuFKrUnXASGElVlU_ezhJnLkHsOwQvUHnJdlFyYCggNHI, (xPRgcRKBLoHYedzPQnPxbmJxtbbAb_DBwzZGwYWVTOTuFKrUnXASGElVlU__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x021E7740, void, xPRgcRKBLoHYedzPQnPxbmJxtbbAb_DBwzZGwYWVTOTuFKrUnXASGElVlU_FcLiqpeGtzTdtqFPQeWfoTHvzisw, (xPRgcRKBLoHYedzPQnPxbmJxtbbAb_DBwzZGwYWVTOTuFKrUnXASGElVlU__Boxed * __this, uint16_t param_0001471b, MethodInfo * method)); -DO_APP_FUNC(0x00C15E20, uint16_t, xPRgcRKBLoHYedzPQnPxbmJxtbbAb_dFiYNgHLPHtmdiusINhaKTmdpaum_RDGYnXvQbyrFNxIxMGlNJeeEkOUA, (xPRgcRKBLoHYedzPQnPxbmJxtbbAb_dFiYNgHLPHtmdiusINhaKTmdpaum__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C2E000, void, xPRgcRKBLoHYedzPQnPxbmJxtbbAb_dFiYNgHLPHtmdiusINhaKTmdpaum_UPdGlDfIhYIRkLFigsEmgIbRenKK, (xPRgcRKBLoHYedzPQnPxbmJxtbbAb_dFiYNgHLPHtmdiusINhaKTmdpaum__Boxed * __this, uint16_t param_0001471c, MethodInfo * method)); -DO_APP_FUNC(0x021E76E0, void, xPRgcRKBLoHYedzPQnPxbmJxtbbAb_dFiYNgHLPHtmdiusINhaKTmdpaum_kXOpQydWRKasXxEjstwTHbxZCLrH, (xPRgcRKBLoHYedzPQnPxbmJxtbbAb_dFiYNgHLPHtmdiusINhaKTmdpaum__Boxed * __this, uint16_t param_0001471d, MethodInfo * method)); -DO_APP_FUNC(0x021E76F0, void, xPRgcRKBLoHYedzPQnPxbmJxtbbAb_dFiYNgHLPHtmdiusINhaKTmdpaum_FDCQsrrMnfVtjyPjvYXAaMdfvqLq, (xPRgcRKBLoHYedzPQnPxbmJxtbbAb_dFiYNgHLPHtmdiusINhaKTmdpaum__Boxed * __this, uint16_t param_0001471e, MethodInfo * method)); -DO_APP_FUNC(0x021E7700, void, xPRgcRKBLoHYedzPQnPxbmJxtbbAb_dFiYNgHLPHtmdiusINhaKTmdpaum_fZCmgLseMphALhBfyhNGeZUeOTq, (xPRgcRKBLoHYedzPQnPxbmJxtbbAb_dFiYNgHLPHtmdiusINhaKTmdpaum__Boxed * __this, uint16_t param_0001471f, MethodInfo * method)); -DO_APP_FUNC(0x021E7710, void, xPRgcRKBLoHYedzPQnPxbmJxtbbAb_dFiYNgHLPHtmdiusINhaKTmdpaum_JxMTkIEgfMFhLtjPymEDfbVQOgpc, (xPRgcRKBLoHYedzPQnPxbmJxtbbAb_dFiYNgHLPHtmdiusINhaKTmdpaum__Boxed * __this, uint16_t param_00014720, MethodInfo * method)); -DO_APP_FUNC(0x021E7720, void, xPRgcRKBLoHYedzPQnPxbmJxtbbAb_dFiYNgHLPHtmdiusINhaKTmdpaum_wlFgViCaRlhWJmhTkISrvedeqkXC, (xPRgcRKBLoHYedzPQnPxbmJxtbbAb_dFiYNgHLPHtmdiusINhaKTmdpaum__Boxed * __this, uint16_t param_00014721, MethodInfo * method)); -DO_APP_FUNC(0x00C39DE0, uint16_t, xPRgcRKBLoHYedzPQnPxbmJxtbbAb_dFiYNgHLPHtmdiusINhaKTmdpaum_gpsAOoJZavIrskTEOynBKXaNHQSLA, (xPRgcRKBLoHYedzPQnPxbmJxtbbAb_dFiYNgHLPHtmdiusINhaKTmdpaum__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x021E7730, void, xPRgcRKBLoHYedzPQnPxbmJxtbbAb_dFiYNgHLPHtmdiusINhaKTmdpaum_AOQCflFkSCuEvNLAARVdTJAHhRgEb, (xPRgcRKBLoHYedzPQnPxbmJxtbbAb_dFiYNgHLPHtmdiusINhaKTmdpaum__Boxed * __this, uint16_t param_00014722, MethodInfo * method)); -DO_APP_FUNC(0x021E7740, void, xPRgcRKBLoHYedzPQnPxbmJxtbbAb_dFiYNgHLPHtmdiusINhaKTmdpaum_FYXTYLYWgnbvlYCwXVJFeSJuhErkA, (xPRgcRKBLoHYedzPQnPxbmJxtbbAb_dFiYNgHLPHtmdiusINhaKTmdpaum__Boxed * __this, uint16_t param_00014723, MethodInfo * method)); +DO_APP_FUNC(0x00C15E20, uint16_t, xPRgcRKBLoHYedzPQnPxbmJxtbbAb_DBwzZGwYWVTOTuFKrUnXASGElVlU_rozCDQKbSiDqpDECQBytTXPaMcjDA, (xPRgcRKBLoHYedzPQnPxbmJxtbbAb_DBwzZGwYWVTOTuFKrUnXASGElVlU * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C2E000, void, xPRgcRKBLoHYedzPQnPxbmJxtbbAb_DBwzZGwYWVTOTuFKrUnXASGElVlU_vKIVotIvcCTOazWMeaFOBQYlLxmq, (xPRgcRKBLoHYedzPQnPxbmJxtbbAb_DBwzZGwYWVTOTuFKrUnXASGElVlU * __this, uint16_t param_00014714, MethodInfo * method)); +DO_APP_FUNC(0x0181A0D0, uint16_t, xPRgcRKBLoHYedzPQnPxbmJxtbbAb_DBwzZGwYWVTOTuFKrUnXASGElVlU_jcmUONgIzMTXOvOBRVlYlWigKKFW, (xPRgcRKBLoHYedzPQnPxbmJxtbbAb_DBwzZGwYWVTOTuFKrUnXASGElVlU * __this, MethodInfo * method)); +DO_APP_FUNC(0x021E76E0, void, xPRgcRKBLoHYedzPQnPxbmJxtbbAb_DBwzZGwYWVTOTuFKrUnXASGElVlU_RaBUALYVSKxCXQVLuZSBXOKFnhWH, (xPRgcRKBLoHYedzPQnPxbmJxtbbAb_DBwzZGwYWVTOTuFKrUnXASGElVlU * __this, uint16_t param_00014715, MethodInfo * method)); +DO_APP_FUNC(0x021E76F0, void, xPRgcRKBLoHYedzPQnPxbmJxtbbAb_DBwzZGwYWVTOTuFKrUnXASGElVlU_RlWnbqRxycReatVDQKfBAzQfFjrK, (xPRgcRKBLoHYedzPQnPxbmJxtbbAb_DBwzZGwYWVTOTuFKrUnXASGElVlU * __this, uint16_t param_00014716, MethodInfo * method)); +DO_APP_FUNC(0x021E7700, void, xPRgcRKBLoHYedzPQnPxbmJxtbbAb_DBwzZGwYWVTOTuFKrUnXASGElVlU_nHnLfAGpDrFOcicwKmmSdhHtXfkdb, (xPRgcRKBLoHYedzPQnPxbmJxtbbAb_DBwzZGwYWVTOTuFKrUnXASGElVlU * __this, uint16_t param_00014717, MethodInfo * method)); +DO_APP_FUNC(0x021E7710, void, xPRgcRKBLoHYedzPQnPxbmJxtbbAb_DBwzZGwYWVTOTuFKrUnXASGElVlU_FKOfICtAeyktgaFpTnkJUSLnVzDV, (xPRgcRKBLoHYedzPQnPxbmJxtbbAb_DBwzZGwYWVTOTuFKrUnXASGElVlU * __this, uint16_t param_00014718, MethodInfo * method)); +DO_APP_FUNC(0x021E7720, void, xPRgcRKBLoHYedzPQnPxbmJxtbbAb_DBwzZGwYWVTOTuFKrUnXASGElVlU_CuedANYorygBATDXUBLkBtcGjWpEA, (xPRgcRKBLoHYedzPQnPxbmJxtbbAb_DBwzZGwYWVTOTuFKrUnXASGElVlU * __this, uint16_t param_00014719, MethodInfo * method)); +DO_APP_FUNC(0x00C39DE0, uint16_t, xPRgcRKBLoHYedzPQnPxbmJxtbbAb_DBwzZGwYWVTOTuFKrUnXASGElVlU_AkbrDFJvKFvOZTGBHKovhrqWjvmt, (xPRgcRKBLoHYedzPQnPxbmJxtbbAb_DBwzZGwYWVTOTuFKrUnXASGElVlU * __this, MethodInfo * method)); +DO_APP_FUNC(0x021E7730, void, xPRgcRKBLoHYedzPQnPxbmJxtbbAb_DBwzZGwYWVTOTuFKrUnXASGElVlU_XYgftlDBxDLJTKCdcFZYMwuwtXPaA, (xPRgcRKBLoHYedzPQnPxbmJxtbbAb_DBwzZGwYWVTOTuFKrUnXASGElVlU * __this, uint16_t param_0001471a, MethodInfo * method)); +DO_APP_FUNC(0x021F3A90, uint16_t, xPRgcRKBLoHYedzPQnPxbmJxtbbAb_DBwzZGwYWVTOTuFKrUnXASGElVlU_ezhJnLkHsOwQvUHnJdlFyYCggNHI, (xPRgcRKBLoHYedzPQnPxbmJxtbbAb_DBwzZGwYWVTOTuFKrUnXASGElVlU * __this, MethodInfo * method)); +DO_APP_FUNC(0x021E7740, void, xPRgcRKBLoHYedzPQnPxbmJxtbbAb_DBwzZGwYWVTOTuFKrUnXASGElVlU_FcLiqpeGtzTdtqFPQeWfoTHvzisw, (xPRgcRKBLoHYedzPQnPxbmJxtbbAb_DBwzZGwYWVTOTuFKrUnXASGElVlU * __this, uint16_t param_0001471b, MethodInfo * method)); +DO_APP_FUNC(0x00C15E20, uint16_t, xPRgcRKBLoHYedzPQnPxbmJxtbbAb_dFiYNgHLPHtmdiusINhaKTmdpaum_RDGYnXvQbyrFNxIxMGlNJeeEkOUA, (xPRgcRKBLoHYedzPQnPxbmJxtbbAb_dFiYNgHLPHtmdiusINhaKTmdpaum * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C2E000, void, xPRgcRKBLoHYedzPQnPxbmJxtbbAb_dFiYNgHLPHtmdiusINhaKTmdpaum_UPdGlDfIhYIRkLFigsEmgIbRenKK, (xPRgcRKBLoHYedzPQnPxbmJxtbbAb_dFiYNgHLPHtmdiusINhaKTmdpaum * __this, uint16_t param_0001471c, MethodInfo * method)); +DO_APP_FUNC(0x021E76E0, void, xPRgcRKBLoHYedzPQnPxbmJxtbbAb_dFiYNgHLPHtmdiusINhaKTmdpaum_kXOpQydWRKasXxEjstwTHbxZCLrH, (xPRgcRKBLoHYedzPQnPxbmJxtbbAb_dFiYNgHLPHtmdiusINhaKTmdpaum * __this, uint16_t param_0001471d, MethodInfo * method)); +DO_APP_FUNC(0x021E76F0, void, xPRgcRKBLoHYedzPQnPxbmJxtbbAb_dFiYNgHLPHtmdiusINhaKTmdpaum_FDCQsrrMnfVtjyPjvYXAaMdfvqLq, (xPRgcRKBLoHYedzPQnPxbmJxtbbAb_dFiYNgHLPHtmdiusINhaKTmdpaum * __this, uint16_t param_0001471e, MethodInfo * method)); +DO_APP_FUNC(0x021E7700, void, xPRgcRKBLoHYedzPQnPxbmJxtbbAb_dFiYNgHLPHtmdiusINhaKTmdpaum_fZCmgLseMphALhBfyhNGeZUeOTq, (xPRgcRKBLoHYedzPQnPxbmJxtbbAb_dFiYNgHLPHtmdiusINhaKTmdpaum * __this, uint16_t param_0001471f, MethodInfo * method)); +DO_APP_FUNC(0x021E7710, void, xPRgcRKBLoHYedzPQnPxbmJxtbbAb_dFiYNgHLPHtmdiusINhaKTmdpaum_JxMTkIEgfMFhLtjPymEDfbVQOgpc, (xPRgcRKBLoHYedzPQnPxbmJxtbbAb_dFiYNgHLPHtmdiusINhaKTmdpaum * __this, uint16_t param_00014720, MethodInfo * method)); +DO_APP_FUNC(0x021E7720, void, xPRgcRKBLoHYedzPQnPxbmJxtbbAb_dFiYNgHLPHtmdiusINhaKTmdpaum_wlFgViCaRlhWJmhTkISrvedeqkXC, (xPRgcRKBLoHYedzPQnPxbmJxtbbAb_dFiYNgHLPHtmdiusINhaKTmdpaum * __this, uint16_t param_00014721, MethodInfo * method)); +DO_APP_FUNC(0x00C39DE0, uint16_t, xPRgcRKBLoHYedzPQnPxbmJxtbbAb_dFiYNgHLPHtmdiusINhaKTmdpaum_gpsAOoJZavIrskTEOynBKXaNHQSLA, (xPRgcRKBLoHYedzPQnPxbmJxtbbAb_dFiYNgHLPHtmdiusINhaKTmdpaum * __this, MethodInfo * method)); +DO_APP_FUNC(0x021E7730, void, xPRgcRKBLoHYedzPQnPxbmJxtbbAb_dFiYNgHLPHtmdiusINhaKTmdpaum_AOQCflFkSCuEvNLAARVdTJAHhRgEb, (xPRgcRKBLoHYedzPQnPxbmJxtbbAb_dFiYNgHLPHtmdiusINhaKTmdpaum * __this, uint16_t param_00014722, MethodInfo * method)); +DO_APP_FUNC(0x021E7740, void, xPRgcRKBLoHYedzPQnPxbmJxtbbAb_dFiYNgHLPHtmdiusINhaKTmdpaum_FYXTYLYWgnbvlYCwXVJFeSJuhErkA, (xPRgcRKBLoHYedzPQnPxbmJxtbbAb_dFiYNgHLPHtmdiusINhaKTmdpaum * __this, uint16_t param_00014723, MethodInfo * method)); DO_APP_FUNC(0x003F7AE0, void, vYQASAohASnPDQbmUfUyZKTlfvEf__ctor, (vYQASAohASnPDQbmUfUyZKTlfvEf * __this, Object * param_00014724, void * param_00014725, MethodInfo * method)); DO_APP_FUNC(0x003CB0B0, void, vYQASAohASnPDQbmUfUyZKTlfvEf_Invoke, (vYQASAohASnPDQbmUfUyZKTlfvEf * __this, MethodInfo * method)); DO_APP_FUNC(0x003F7AE0, void, wMawUSVDBBtimwLFdodjQyFgJXGm__ctor, (wMawUSVDBBtimwLFdodjQyFgJXGm * __this, Object * param_00014726, void * param_00014727, MethodInfo * method)); @@ -80348,59 +91463,59 @@ DO_APP_FUNC(0x021F48B0, Guid, gWxrirpmIhQTmhziZnlXlEwmYtKB_XSLGVGbPMETbJVbYBvPxQ DO_APP_FUNC(0x021F48D0, bool, gWxrirpmIhQTmhziZnlXlEwmYtKB_lPTCPhhTRjScxVtyhENLItZFymjDb, (void * param_0001473d, MethodInfo * method)); DO_APP_FUNC(0x021F4960, bool, gWxrirpmIhQTmhziZnlXlEwmYtKB_ywItSYTljIgEJKFmrkfddeMiPWuEB, (void * param_0001473e, void * param_0001473f, MethodInfo * method)); DO_APP_FUNC(0x021F4A00, bool, gWxrirpmIhQTmhziZnlXlEwmYtKB_mstXbQviyZlLgpIFfsaKTGvRqNKL, (void * param_00014740, MethodInfo * method)); -DO_APP_FUNC(0x021F4A90, void *, gWxrirpmIhQTmhziZnlXlEwmYtKB_NVLEDxKctqnSIlHEnARbiYgEdSeZA, (gWxrirpmIhQTmhziZnlXlEwmYtKB_NnfkkURQFkEaKHcQqtZJRYCtsuqw param_00014741, int32_t param_00014742, int32_t param_00014743, String * param_00014744, MethodInfo * method)); -DO_APP_FUNC(0x021F4BA0, void *, gWxrirpmIhQTmhziZnlXlEwmYtKB_cquePrniajkiEtyWRJOtvvebjGYn, (String * param_00014745, uint32_t param_00014746, int32_t param_00014747, gWxrirpmIhQTmhziZnlXlEwmYtKB_NnfkkURQFkEaKHcQqtZJRYCtsuqw param_00014748, int32_t param_00014749, int32_t param_0001474a, int32_t param_0001474b, MethodInfo * method)); -DO_APP_FUNC(0x021F4CD0, bool, gWxrirpmIhQTmhziZnlXlEwmYtKB_DmhnlusVQTaoAgqiodDGextyWSyD, (void * param_0001474c, void * param_0001474d, uint32_t param_0001474e, NativeOverlapped param_0001474f, gWxrirpmIhQTmhziZnlXlEwmYtKB_FXsnnlyiFJcYzdmLMGisCrAMQXNgA * param_00014750, MethodInfo * method)); +DO_APP_FUNC(0x021F4A90, void *, gWxrirpmIhQTmhziZnlXlEwmYtKB_NVLEDxKctqnSIlHEnARbiYgEdSeZA, (gWxrirpmIhQTmhziZnlXlEwmYtKB_NnfkkURQFkEaKHcQqtZJRYCtsuqw * param_00014741, int32_t param_00014742, int32_t param_00014743, String * param_00014744, MethodInfo * method)); +DO_APP_FUNC(0x021F4BA0, void *, gWxrirpmIhQTmhziZnlXlEwmYtKB_cquePrniajkiEtyWRJOtvvebjGYn, (String * param_00014745, uint32_t param_00014746, int32_t param_00014747, gWxrirpmIhQTmhziZnlXlEwmYtKB_NnfkkURQFkEaKHcQqtZJRYCtsuqw * param_00014748, int32_t param_00014749, int32_t param_0001474a, int32_t param_0001474b, MethodInfo * method)); +DO_APP_FUNC(0x021F4CD0, bool, gWxrirpmIhQTmhziZnlXlEwmYtKB_DmhnlusVQTaoAgqiodDGextyWSyD, (void * param_0001474c, void * param_0001474d, uint32_t param_0001474e, NativeOverlapped * param_0001474f, gWxrirpmIhQTmhziZnlXlEwmYtKB_FXsnnlyiFJcYzdmLMGisCrAMQXNgA * param_00014750, MethodInfo * method)); DO_APP_FUNC(0x021F4DA0, uint32_t, gWxrirpmIhQTmhziZnlXlEwmYtKB_MeAjbzgYUByiuThqfGnoelTsgrUA, (void * param_00014751, int32_t param_00014752, MethodInfo * method)); -DO_APP_FUNC(0x021F4E30, bool, gWxrirpmIhQTmhziZnlXlEwmYtKB_CDSGqKdbITtxerIVOVesCvcRahRgA, (void * param_00014753, void * param_00014754, uint32_t param_00014755, uint32_t param_00014756, NativeOverlapped param_00014757, MethodInfo * method)); +DO_APP_FUNC(0x021F4E30, bool, gWxrirpmIhQTmhziZnlXlEwmYtKB_CDSGqKdbITtxerIVOVesCvcRahRgA, (void * param_00014753, void * param_00014754, uint32_t param_00014755, uint32_t * param_00014756, NativeOverlapped * param_00014757, MethodInfo * method)); DO_APP_FUNC(0x021F4EF0, void, gWxrirpmIhQTmhziZnlXlEwmYtKB_CikWBirxFuLXQVzcZlIcfWzEdLpC, (void * param_00014758, int32_t param_00014759, MethodInfo * method)); -DO_APP_FUNC(0x021F4F80, bool, gWxrirpmIhQTmhziZnlXlEwmYtKB_AIkLNgzbnTLmfhJEFAjljvFaBHWfb, (void * param_0001475a, NativeOverlapped param_0001475b, int32_t param_0001475c, bool param_0001475d, MethodInfo * method)); +DO_APP_FUNC(0x021F4F80, bool, gWxrirpmIhQTmhziZnlXlEwmYtKB_AIkLNgzbnTLmfhJEFAjljvFaBHWfb, (void * param_0001475a, NativeOverlapped * param_0001475b, int32_t * param_0001475c, bool param_0001475d, MethodInfo * method)); DO_APP_FUNC(0x021F5030, uint32_t, gWxrirpmIhQTmhziZnlXlEwmYtKB_jcanYfWacgUwBKbnwELLRgercKhA, (int32_t param_0001475e, bool param_0001475f, MethodInfo * method)); -DO_APP_FUNC(0x021F50C0, bool, gWxrirpmIhQTmhziZnlXlEwmYtKB_ddDItihskusEcNzwAcgdhfXVRjgIA, (void * param_00014760, gWxrirpmIhQTmhziZnlXlEwmYtKB_pPZcvjyLOvlRnUdsCbkPaOkCCZCA param_00014761, int32_t param_00014762, int32_t param_00014763, void * param_00014764, int32_t param_00014765, int32_t param_00014766, MethodInfo * method)); -DO_APP_FUNC(0x021F5190, bool, gWxrirpmIhQTmhziZnlXlEwmYtKB_OBuMPJyNZTHOBgjNTqBnckCLUUbn, (void * param_00014767, gWxrirpmIhQTmhziZnlXlEwmYtKB_pPZcvjyLOvlRnUdsCbkPaOkCCZCA param_00014768, gWxrirpmIhQTmhziZnlXlEwmYtKB_IbcNXTjfAFwJOnxSjtEBZZvNbUMV param_00014769, uint64_t param_0001476a, void * param_0001476b, int32_t param_0001476c, int32_t param_0001476d, uint32_t param_0001476e, MethodInfo * method)); -DO_APP_FUNC(0x021F5270, bool, gWxrirpmIhQTmhziZnlXlEwmYtKB_tCWfcKILIwIscnpkGpxeIVTpJyyd, (void * param_0001476f, int32_t param_00014770, gWxrirpmIhQTmhziZnlXlEwmYtKB_pPZcvjyLOvlRnUdsCbkPaOkCCZCA param_00014771, MethodInfo * method)); +DO_APP_FUNC(0x021F50C0, bool, gWxrirpmIhQTmhziZnlXlEwmYtKB_ddDItihskusEcNzwAcgdhfXVRjgIA, (void * param_00014760, gWxrirpmIhQTmhziZnlXlEwmYtKB_pPZcvjyLOvlRnUdsCbkPaOkCCZCA * param_00014761, int32_t param_00014762, int32_t * param_00014763, void * param_00014764, int32_t param_00014765, int32_t * param_00014766, MethodInfo * method)); +DO_APP_FUNC(0x021F5190, bool, gWxrirpmIhQTmhziZnlXlEwmYtKB_OBuMPJyNZTHOBgjNTqBnckCLUUbn, (void * param_00014767, gWxrirpmIhQTmhziZnlXlEwmYtKB_pPZcvjyLOvlRnUdsCbkPaOkCCZCA * param_00014768, gWxrirpmIhQTmhziZnlXlEwmYtKB_IbcNXTjfAFwJOnxSjtEBZZvNbUMV * param_00014769, uint64_t * param_0001476a, void * param_0001476b, int32_t param_0001476c, int32_t * param_0001476d, uint32_t param_0001476e, MethodInfo * method)); +DO_APP_FUNC(0x021F5270, bool, gWxrirpmIhQTmhziZnlXlEwmYtKB_tCWfcKILIwIscnpkGpxeIVTpJyyd, (void * param_0001476f, int32_t param_00014770, gWxrirpmIhQTmhziZnlXlEwmYtKB_pPZcvjyLOvlRnUdsCbkPaOkCCZCA * param_00014771, MethodInfo * method)); DO_APP_FUNC(0x021F5310, int32_t, gWxrirpmIhQTmhziZnlXlEwmYtKB_evPdOAfrLXAbMCyhXNsznVISQvXR, (void * param_00014772, MethodInfo * method)); -DO_APP_FUNC(0x021F5390, bool, gWxrirpmIhQTmhziZnlXlEwmYtKB_BEFszIpetjroyResgaegUgGrffhCA, (void * param_00014773, gWxrirpmIhQTmhziZnlXlEwmYtKB_pPZcvjyLOvlRnUdsCbkPaOkCCZCA param_00014774, Guid param_00014775, int32_t param_00014776, gWxrirpmIhQTmhziZnlXlEwmYtKB_sjhtdtPoBlWDLZgVBsTSqCbJvkiq param_00014777, MethodInfo * method)); -DO_APP_FUNC(0x021F5450, void *, gWxrirpmIhQTmhziZnlXlEwmYtKB_dVUEkflBSycQcNhwaaQgVjJcCSncA, (Guid param_00014778, String * param_00014779, int32_t param_0001477a, int32_t param_0001477b, MethodInfo * method)); -DO_APP_FUNC(0x021F5510, bool, gWxrirpmIhQTmhziZnlXlEwmYtKB_bBKueBygsGcPvniYyaILmViPdqzT, (void * param_0001477c, gWxrirpmIhQTmhziZnlXlEwmYtKB_sjhtdtPoBlWDLZgVBsTSqCbJvkiq param_0001477d, void * param_0001477e, int32_t param_0001477f, int32_t param_00014780, void * param_00014781, MethodInfo * method)); -DO_APP_FUNC(0x021F55E0, bool, gWxrirpmIhQTmhziZnlXlEwmYtKB_bBKueBygsGcPvniYyaILmViPdqzT_1, (void * param_00014782, gWxrirpmIhQTmhziZnlXlEwmYtKB_sjhtdtPoBlWDLZgVBsTSqCbJvkiq param_00014783, gWxrirpmIhQTmhziZnlXlEwmYtKB_RSiSKQsLaXEAoENtUWCALbHSgSKg param_00014784, int32_t param_00014785, int32_t param_00014786, void * param_00014787, MethodInfo * method)); -DO_APP_FUNC(0x021F5870, bool, gWxrirpmIhQTmhziZnlXlEwmYtKB_NdGuRsoJUObJzOltCjXXarYvCWCb, (void * param_00014788, gWxrirpmIhQTmhziZnlXlEwmYtKB_pPZcvjyLOvlRnUdsCbkPaOkCCZCA param_00014789, void * param_0001478a, uint32_t param_0001478b, uint32_t param_0001478c, MethodInfo * method)); -DO_APP_FUNC(0x021F5930, int32_t, gWxrirpmIhQTmhziZnlXlEwmYtKB_ZNximwSPjKjjvkCSNwWiLKYuRmXk, (uint32_t param_0001478d, uint32_t param_0001478e, uint32_t param_0001478f, MethodInfo * method)); +DO_APP_FUNC(0x021F5390, bool, gWxrirpmIhQTmhziZnlXlEwmYtKB_BEFszIpetjroyResgaegUgGrffhCA, (void * param_00014773, gWxrirpmIhQTmhziZnlXlEwmYtKB_pPZcvjyLOvlRnUdsCbkPaOkCCZCA * param_00014774, Guid * param_00014775, int32_t param_00014776, gWxrirpmIhQTmhziZnlXlEwmYtKB_sjhtdtPoBlWDLZgVBsTSqCbJvkiq * param_00014777, MethodInfo * method)); +DO_APP_FUNC(0x021F5450, void *, gWxrirpmIhQTmhziZnlXlEwmYtKB_dVUEkflBSycQcNhwaaQgVjJcCSncA, (Guid * param_00014778, String * param_00014779, int32_t param_0001477a, int32_t param_0001477b, MethodInfo * method)); +DO_APP_FUNC(0x021F5510, bool, gWxrirpmIhQTmhziZnlXlEwmYtKB_bBKueBygsGcPvniYyaILmViPdqzT, (void * param_0001477c, gWxrirpmIhQTmhziZnlXlEwmYtKB_sjhtdtPoBlWDLZgVBsTSqCbJvkiq * param_0001477d, void * param_0001477e, int32_t param_0001477f, int32_t * param_00014780, void * param_00014781, MethodInfo * method)); +DO_APP_FUNC(0x021F55E0, bool, gWxrirpmIhQTmhziZnlXlEwmYtKB_bBKueBygsGcPvniYyaILmViPdqzT_1, (void * param_00014782, gWxrirpmIhQTmhziZnlXlEwmYtKB_sjhtdtPoBlWDLZgVBsTSqCbJvkiq * param_00014783, gWxrirpmIhQTmhziZnlXlEwmYtKB_RSiSKQsLaXEAoENtUWCALbHSgSKg * param_00014784, int32_t param_00014785, int32_t * param_00014786, void * param_00014787, MethodInfo * method)); +DO_APP_FUNC(0x021F5870, bool, gWxrirpmIhQTmhziZnlXlEwmYtKB_NdGuRsoJUObJzOltCjXXarYvCWCb, (void * param_00014788, gWxrirpmIhQTmhziZnlXlEwmYtKB_pPZcvjyLOvlRnUdsCbkPaOkCCZCA * param_00014789, void * param_0001478a, uint32_t param_0001478b, uint32_t * param_0001478c, MethodInfo * method)); +DO_APP_FUNC(0x021F5930, int32_t, gWxrirpmIhQTmhziZnlXlEwmYtKB_ZNximwSPjKjjvkCSNwWiLKYuRmXk, (uint32_t * param_0001478d, uint32_t param_0001478e, uint32_t param_0001478f, MethodInfo * method)); DO_APP_FUNC(0x021F59D0, int32_t, gWxrirpmIhQTmhziZnlXlEwmYtKB_iUcoIIRNqTcLlRudpCcMziIAVxHF, (uint32_t param_00014790, void * param_00014791, int32_t param_00014792, uint32_t param_00014793, MethodInfo * method)); -DO_APP_FUNC(0x021F5A70, int32_t, gWxrirpmIhQTmhziZnlXlEwmYtKB_DzXabmxDvyBpoTDREhwHOoWnBwRM, (uint32_t param_00014794, uint32_t param_00014795, uint32_t param_00014796, MethodInfo * method)); -DO_APP_FUNC(0x021F5B10, int32_t, gWxrirpmIhQTmhziZnlXlEwmYtKB_VGDfWieooUGGpglxJSWzOGFsWBebc, (uint32_t param_00014797, uint32_t param_00014798, uint32_t param_00014799, MethodInfo * method)); -DO_APP_FUNC(0x021F5BB0, int32_t, gWxrirpmIhQTmhziZnlXlEwmYtKB_DVWTwYFDcaPLLalMUJSDjTapajYQ, (uint32_t param_0001479a, uint32_t param_0001479b, uint32_t param_0001479c, MethodInfo * method)); -DO_APP_FUNC(0x021F5C50, bool, gWxrirpmIhQTmhziZnlXlEwmYtKB_RppEpdCAZJBGvjjzAeHwMUvxzDAD, (void * param_0001479d, gWxrirpmIhQTmhziZnlXlEwmYtKB_cYwrJytwiUrdJwriTAdpZJHkllqg param_0001479e, MethodInfo * method)); +DO_APP_FUNC(0x021F5A70, int32_t, gWxrirpmIhQTmhziZnlXlEwmYtKB_DzXabmxDvyBpoTDREhwHOoWnBwRM, (uint32_t * param_00014794, uint32_t param_00014795, uint32_t param_00014796, MethodInfo * method)); +DO_APP_FUNC(0x021F5B10, int32_t, gWxrirpmIhQTmhziZnlXlEwmYtKB_VGDfWieooUGGpglxJSWzOGFsWBebc, (uint32_t * param_00014797, uint32_t param_00014798, uint32_t param_00014799, MethodInfo * method)); +DO_APP_FUNC(0x021F5BB0, int32_t, gWxrirpmIhQTmhziZnlXlEwmYtKB_DVWTwYFDcaPLLalMUJSDjTapajYQ, (uint32_t * param_0001479a, uint32_t param_0001479b, uint32_t param_0001479c, MethodInfo * method)); +DO_APP_FUNC(0x021F5C50, bool, gWxrirpmIhQTmhziZnlXlEwmYtKB_RppEpdCAZJBGvjjzAeHwMUvxzDAD, (void * param_0001479d, gWxrirpmIhQTmhziZnlXlEwmYtKB_cYwrJytwiUrdJwriTAdpZJHkllqg * param_0001479e, MethodInfo * method)); DO_APP_FUNC(0x021F5CE0, bool, gWxrirpmIhQTmhziZnlXlEwmYtKB_bxDkxDnLgEWpqzOHSOGHwYGWllyD, (void * param_0001479f, Byte__Array * param_000147a0, int32_t param_000147a1, MethodInfo * method)); DO_APP_FUNC(0x021F5D90, bool, gWxrirpmIhQTmhziZnlXlEwmYtKB_nhGqmmPyAMErecMpEsryBmkToFEp, (void * param_000147a2, void * param_000147a3, int32_t param_000147a4, MethodInfo * method)); -DO_APP_FUNC(0x021F5E30, void, gWxrirpmIhQTmhziZnlXlEwmYtKB_ukEfTSfVvHGxHFxubMxBgXRVloujA, (Guid param_000147a5, MethodInfo * method)); -DO_APP_FUNC(0x021F5EB0, bool, gWxrirpmIhQTmhziZnlXlEwmYtKB_MSVGBwgayWokPouZeKYlfMoytUKS, (void * param_000147a6, void * param_000147a7, MethodInfo * method)); +DO_APP_FUNC(0x021F5E30, void, gWxrirpmIhQTmhziZnlXlEwmYtKB_ukEfTSfVvHGxHFxubMxBgXRVloujA, (Guid * param_000147a5, MethodInfo * method)); +DO_APP_FUNC(0x021F5EB0, bool, gWxrirpmIhQTmhziZnlXlEwmYtKB_MSVGBwgayWokPouZeKYlfMoytUKS, (void * param_000147a6, void * * param_000147a7, MethodInfo * method)); DO_APP_FUNC(0x021F5F40, bool, gWxrirpmIhQTmhziZnlXlEwmYtKB_lJfuvTukjzbsFIcHKrYpDWqGaFjGA, (void * param_000147a8, MethodInfo * method)); DO_APP_FUNC(0x021F5FC0, bool, gWxrirpmIhQTmhziZnlXlEwmYtKB_wPNjIdDaYmUPHKJivlsiMkWSujDV, (void * param_000147a9, void * param_000147aa, int32_t param_000147ab, MethodInfo * method)); -DO_APP_FUNC(0x021F6060, int32_t, gWxrirpmIhQTmhziZnlXlEwmYtKB_riyQweSdmQcCCQXJBfEWDiVGpoFx, (void * param_000147ac, gWxrirpmIhQTmhziZnlXlEwmYtKB_KdURfiFBwhFROjdQMSQSIwyeoKVL param_000147ad, MethodInfo * method)); -DO_APP_FUNC(0x021F64B0, int32_t, gWxrirpmIhQTmhziZnlXlEwmYtKB_bTHctvGoHHdIrisIRhKVBUbEfqaRB, (int16_t param_000147ae, void * param_000147af, int16_t param_000147b0, void * param_000147b1, MethodInfo * method)); +DO_APP_FUNC(0x021F6060, int32_t, gWxrirpmIhQTmhziZnlXlEwmYtKB_riyQweSdmQcCCQXJBfEWDiVGpoFx, (void * param_000147ac, gWxrirpmIhQTmhziZnlXlEwmYtKB_KdURfiFBwhFROjdQMSQSIwyeoKVL * param_000147ad, MethodInfo * method)); +DO_APP_FUNC(0x021F64B0, int32_t, gWxrirpmIhQTmhziZnlXlEwmYtKB_bTHctvGoHHdIrisIRhKVBUbEfqaRB, (int16_t param_000147ae, void * param_000147af, int16_t * param_000147b0, void * param_000147b1, MethodInfo * method)); DO_APP_FUNC(0x021F6560, bool, gWxrirpmIhQTmhziZnlXlEwmYtKB_iPDdyqElRxssCWkvyEOVCEQpeUeeA, (void * param_000147b2, void * param_000147b3, int32_t param_000147b4, MethodInfo * method)); DO_APP_FUNC(0x021F6600, bool, gWxrirpmIhQTmhziZnlXlEwmYtKB_iUgqAmXMgFADNWUKaNqstBLnxpSR, (void * param_000147b5, void * param_000147b6, int32_t param_000147b7, MethodInfo * method)); -DO_APP_FUNC(0x021F66A0, int32_t, gWxrirpmIhQTmhziZnlXlEwmYtKB_DDMcxjmEBUqYUCJLoVYrNYwMCKjK, (int16_t param_000147b8, void * param_000147b9, int16_t param_000147ba, void * param_000147bb, MethodInfo * method)); -DO_APP_FUNC(0x021F6750, int32_t, gWxrirpmIhQTmhziZnlXlEwmYtKB_ocfgllJAmaNDAHphCuqxeTzbnquEB, (int32_t param_000147bc, uint16_t param_000147bd, uint16_t param_000147be, void * param_000147bf, uint32_t param_000147c0, void * param_000147c1, void * param_000147c2, uint32_t param_000147c3, MethodInfo * method)); +DO_APP_FUNC(0x021F66A0, int32_t, gWxrirpmIhQTmhziZnlXlEwmYtKB_DDMcxjmEBUqYUCJLoVYrNYwMCKjK, (int16_t param_000147b8, void * param_000147b9, int16_t * param_000147ba, void * param_000147bb, MethodInfo * method)); +DO_APP_FUNC(0x021F6750, int32_t, gWxrirpmIhQTmhziZnlXlEwmYtKB_ocfgllJAmaNDAHphCuqxeTzbnquEB, (int32_t param_000147bc, uint16_t param_000147bd, uint16_t param_000147be, void * param_000147bf, uint32_t * param_000147c0, void * param_000147c1, void * param_000147c2, uint32_t param_000147c3, MethodInfo * method)); DO_APP_FUNC(0x021F6800, int32_t, gWxrirpmIhQTmhziZnlXlEwmYtKB_kPZkldmdqEdAaUXxvrBJoReZRpYy, (int32_t param_000147c4, uint16_t param_000147c5, uint16_t param_000147c6, uint16_t param_000147c7, void * param_000147c8, uint16_t param_000147c9, void * param_000147ca, void * param_000147cb, uint32_t param_000147cc, MethodInfo * method)); -DO_APP_FUNC(0x021F68C0, int32_t, gWxrirpmIhQTmhziZnlXlEwmYtKB_iaLjBYNYooZkloDTRwigKhmyytwL, (int32_t param_000147cd, void * param_000147ce, uint32_t param_000147cf, void * param_000147d0, void * param_000147d1, uint32_t param_000147d2, MethodInfo * method)); +DO_APP_FUNC(0x021F68C0, int32_t, gWxrirpmIhQTmhziZnlXlEwmYtKB_iaLjBYNYooZkloDTRwigKhmyytwL, (int32_t param_000147cd, void * param_000147ce, uint32_t * param_000147cf, void * param_000147d0, void * param_000147d1, uint32_t param_000147d2, MethodInfo * method)); DO_APP_FUNC(0x021F6970, int32_t, gWxrirpmIhQTmhziZnlXlEwmYtKB_gLTlLekaUCUmuPdMAUslLCsFkOho, (int32_t param_000147d3, void * param_000147d4, MethodInfo * method)); DO_APP_FUNC(0x021F6A00, void, gWxrirpmIhQTmhziZnlXlEwmYtKB__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003D2F30, int32_t, gWxrirpmIhQTmhziZnlXlEwmYtKB_NnfkkURQFkEaKHcQqtZJRYCtsuqw_gBIXkdeJzrVVcNHswHNabgRDpCGG, (MethodInfo * method)); -DO_APP_FUNC(0x00AEF240, int32_t, gWxrirpmIhQTmhziZnlXlEwmYtKB_sjhtdtPoBlWDLZgVBsTSqCbJvkiq_gBIXkdeJzrVVcNHswHNabgRDpCGG, (gWxrirpmIhQTmhziZnlXlEwmYtKB_sjhtdtPoBlWDLZgVBsTSqCbJvkiq__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00AEF240, int32_t, gWxrirpmIhQTmhziZnlXlEwmYtKB_pPZcvjyLOvlRnUdsCbkPaOkCCZCA_gBIXkdeJzrVVcNHswHNabgRDpCGG, (gWxrirpmIhQTmhziZnlXlEwmYtKB_pPZcvjyLOvlRnUdsCbkPaOkCCZCA__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C173E0, uint32_t, gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_cCtdzzziFmmyLbMvQjIgoBOAwDls, (gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00AEF240, int32_t, gWxrirpmIhQTmhziZnlXlEwmYtKB_sjhtdtPoBlWDLZgVBsTSqCbJvkiq_gBIXkdeJzrVVcNHswHNabgRDpCGG, (gWxrirpmIhQTmhziZnlXlEwmYtKB_sjhtdtPoBlWDLZgVBsTSqCbJvkiq * __this, MethodInfo * method)); +DO_APP_FUNC(0x00AEF240, int32_t, gWxrirpmIhQTmhziZnlXlEwmYtKB_pPZcvjyLOvlRnUdsCbkPaOkCCZCA_gBIXkdeJzrVVcNHswHNabgRDpCGG, (gWxrirpmIhQTmhziZnlXlEwmYtKB_pPZcvjyLOvlRnUdsCbkPaOkCCZCA * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C173E0, uint32_t, gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_cCtdzzziFmmyLbMvQjIgoBOAwDls, (gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy * __this, MethodInfo * method)); DO_APP_FUNC(0x021F6A90, void, gWxrirpmIhQTmhziZnlXlEwmYtKB_FXsnnlyiFJcYzdmLMGisCrAMQXNgA__ctor, (gWxrirpmIhQTmhziZnlXlEwmYtKB_FXsnnlyiFJcYzdmLMGisCrAMQXNgA * __this, Object * param_000147d5, void * param_000147d6, MethodInfo * method)); DO_APP_FUNC(0x003EDBB0, void, gWxrirpmIhQTmhziZnlXlEwmYtKB_FXsnnlyiFJcYzdmLMGisCrAMQXNgA_Invoke, (gWxrirpmIhQTmhziZnlXlEwmYtKB_FXsnnlyiFJcYzdmLMGisCrAMQXNgA * __this, int32_t dwErrorCode, int32_t dwNumbmerOfBytesTransfered, void * lpOverlapped, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, MantisLODEditorProfessional__ctor, (MantisLODEditorProfessional * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BokehRenderer__ctor, (BokehRenderer * __this, MethodInfo * method)); -DO_APP_FUNC(0x003AE060, void, BokehRenderer_RebuildMeshIfNeeded, (BokehRenderer * __this, int32_t width, int32_t height, float spriteRelativeScaleX, float spriteRelativeScaleY, Mesh__Array * meshes, MethodInfo * method)); -DO_APP_FUNC(0x003AE250, void, BokehRenderer_BuildMeshes, (BokehRenderer * __this, int32_t width, int32_t height, float spriteRelativeScaleX, float spriteRelativeScaleY, Mesh__Array * meshes, MethodInfo * method)); -DO_APP_FUNC(0x003AE780, void, BokehRenderer_Clear, (BokehRenderer * __this, Mesh__Array * meshes, MethodInfo * method)); +DO_APP_FUNC(0x003AE060, void, BokehRenderer_RebuildMeshIfNeeded, (BokehRenderer * __this, int32_t width, int32_t height, float spriteRelativeScaleX, float spriteRelativeScaleY, Mesh__Array * * meshes, MethodInfo * method)); +DO_APP_FUNC(0x003AE250, void, BokehRenderer_BuildMeshes, (BokehRenderer * __this, int32_t width, int32_t height, float spriteRelativeScaleX, float spriteRelativeScaleY, Mesh__Array * * meshes, MethodInfo * method)); +DO_APP_FUNC(0x003AE780, void, BokehRenderer_Clear, (BokehRenderer * __this, Mesh__Array * * meshes, MethodInfo * method)); DO_APP_FUNC(0x003AE8B0, void, BokehRenderer_SetTexture, (BokehRenderer * __this, Texture2D * texture, MethodInfo * method)); DO_APP_FUNC(0x003AE960, void, BokehRenderer_SetMaterial, (BokehRenderer * __this, Material * flareMaterial, MethodInfo * method)); -DO_APP_FUNC(0x003AE9C0, void, BokehRenderer_RenderFlare, (BokehRenderer * __this, RenderTexture * brightPixels, RenderTexture * destination, float intensity, Mesh__Array * meshes, MethodInfo * method)); +DO_APP_FUNC(0x003AE9C0, void, BokehRenderer_RenderFlare, (BokehRenderer * __this, RenderTexture * brightPixels, RenderTexture * destination, float intensity, Mesh__Array * * meshes, MethodInfo * method)); DO_APP_FUNC(0x003AEEC0, void, BokehRenderer_SetupSprite, (BokehRenderer * __this, int32_t idx, int32_t x, int32_t y, Vector3__Array * vertices, Int32__Array * triangles, Vector2__Array * uv0, Vector2__Array * uv1, Vector3__Array * normals, Color__Array * colors, Vector2 targetPixelUV, float halfWidth, float halfHeight, MethodInfo * method)); DO_APP_FUNC(0x003AF550, float, DeluxeFilmicCurve_GetExposure, (DeluxeFilmicCurve * __this, MethodInfo * method)); DO_APP_FUNC(0x003AF590, float, DeluxeFilmicCurve_ComputeK, (DeluxeFilmicCurve * __this, float t, float c, float b, float s, float w, MethodInfo * method)); @@ -80419,7 +91534,7 @@ DO_APP_FUNC(0x003B0140, void, UBHelper_Styles_Backup, (UBHelper_Styles * __this, DO_APP_FUNC(0x003B0450, void, UBHelper_Styles_Apply, (UBHelper_Styles * __this, MethodInfo * method)); DO_APP_FUNC(0x003B07C0, void, UBHelper_Styles_Revert, (UBHelper_Styles * __this, MethodInfo * method)); DO_APP_FUNC(0x003B0AF0, void, UltimateBloom_DestroyMaterial, (UltimateBloom * __this, Material * mat, MethodInfo * method)); -DO_APP_FUNC(0x003B0B70, void, UltimateBloom_LoadShader, (UltimateBloom * __this, Material * material, Shader * shader, String * shaderPath, MethodInfo * method)); +DO_APP_FUNC(0x003B0B70, void, UltimateBloom_LoadShader, (UltimateBloom * __this, Material * * material, Shader * * shader, String * shaderPath, MethodInfo * method)); DO_APP_FUNC(0x003B0F80, void, UltimateBloom_CreateMaterials, (UltimateBloom * __this, MethodInfo * method)); DO_APP_FUNC(0x003B1C50, Material *, UltimateBloom_CreateMaterial, (UltimateBloom * __this, Shader * shader, MethodInfo * method)); DO_APP_FUNC(0x003B1D40, void, UltimateBloom_OnDisable, (UltimateBloom * __this, MethodInfo * method)); @@ -80432,7 +91547,7 @@ DO_APP_FUNC(0x003B2B50, void, UltimateBloom_ComputeResolutionRelativeData, (Ulti DO_APP_FUNC(0x003B2BE0, void, UltimateBloom_OnRenderImage, (UltimateBloom * __this, RenderTexture * source, RenderTexture * destination, MethodInfo * method)); DO_APP_FUNC(0x003B46C0, RenderTexture *, UltimateBloom_RenderStar, (UltimateBloom * __this, RenderTexture__Array * sources, UltimateBloom_BlurSampleCount__Enum upsamplingCount, int32_t sourceWidth, int32_t sourceHeight, MethodInfo * method)); DO_APP_FUNC(0x003B4BE0, RenderTexture *, UltimateBloom_RenderStripe, (UltimateBloom * __this, RenderTexture__Array * sources, UltimateBloom_BlurSampleCount__Enum upsamplingCount, int32_t sourceWidth, int32_t sourceHeight, UltimateBloom_FlareStripeType__Enum type, MethodInfo * method)); -DO_APP_FUNC(0x003B5E70, void, UltimateBloom_RenderFlares, (UltimateBloom * __this, RenderTexture * brightTexture, RenderTexture * source, Texture * flareRT, MethodInfo * method)); +DO_APP_FUNC(0x003B5E70, void, UltimateBloom_RenderFlares, (UltimateBloom * __this, RenderTexture * brightTexture, RenderTexture * source, Texture * * flareRT, MethodInfo * method)); DO_APP_FUNC(0x003B75E0, void, UltimateBloom_CachedUpsample, (UltimateBloom * __this, RenderTexture__Array * sources, RenderTexture__Array * destinations, int32_t originalWidth, int32_t originalHeight, UltimateBloom_BlurSampleCount__Enum upsamplingCount, MethodInfo * method)); DO_APP_FUNC(0x003B7BC0, void, UltimateBloom_CachedDownsample, (UltimateBloom * __this, RenderTexture * source, RenderTexture__Array * destinations, DeluxeFilmicCurve * intensityCurve, bool hdr, MethodInfo * method)); DO_APP_FUNC(0x003B82F0, void, UltimateBloom_BrightPass, (UltimateBloom * __this, RenderTexture * source, RenderTexture * destination, Vector4 treshold, MethodInfo * method)); @@ -80452,6 +91567,7 @@ DO_APP_FUNC(0x003BA140, IAsyncResult *, UltimateBloom_BlurFunction_BeginInvoke, DO_APP_FUNC(0x003BA270, void, UltimateBloom_BlurFunction_EndInvoke, (UltimateBloom_BlurFunction * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003BA2A0, void, UltimateBloomPathLocator__ctor, (UltimateBloomPathLocator * __this, MethodInfo * method)); DO_APP_FUNC(0x003BA2B0, void, BatchCulling__ctor, (BatchCulling * __this, Camera * camera, WetDecalSystem_MaterialBatch * batch, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFD6D8, BatchCulling__ctor__MethodInfo); DO_APP_FUNC(0x003BA970, void, BatchCulling_Dispose, (BatchCulling * __this, MethodInfo * method)); DO_APP_FUNC(0x003BAA10, void, BatchCulling_Update, (BatchCulling * __this, MethodInfo * method)); DO_APP_FUNC(0x003BAC40, ArraySegment_1_Int32_, BatchCulling_Cull, (BatchCulling * __this, int32_t distanceBand, MethodInfo * method)); @@ -80473,15 +91589,17 @@ DO_APP_FUNC(0x003BB3E0, DecalLayerChannel *, DecalLayer_get_Channel4, (DecalLaye DO_APP_FUNC(0x003BB3F0, DecalLayerChannelIndexer, DecalLayer_get_Channels, (DecalLayer * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB450, void, DecalLayer__ctor, (DecalLayer * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB6A0, void, DecalLayer_Init, (DecalLayer * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB950, void, DecalLayer_EvaluateInputRange, (DecalLayer * __this, Vector4 start, Vector4 end, MethodInfo * method)); -DO_APP_FUNC(0x003BBA50, void, DecalLayer_EvaluateOutputRange, (DecalLayer * __this, Vector4 start, Vector4 end, MethodInfo * method)); -DO_APP_FUNC(0x003BBB90, void, DecalLayer_EvaluateRanges, (DecalLayer * __this, LayerParameters parameters, MethodInfo * method)); +DO_APP_FUNC(0x003BB950, void, DecalLayer_EvaluateInputRange, (DecalLayer * __this, Vector4 * start, Vector4 * end, MethodInfo * method)); +DO_APP_FUNC(0x003BBA50, void, DecalLayer_EvaluateOutputRange, (DecalLayer * __this, Vector4 * start, Vector4 * end, MethodInfo * method)); +DO_APP_FUNC(0x003BBB90, void, DecalLayer_EvaluateRanges, (DecalLayer * __this, LayerParameters * parameters, MethodInfo * method)); DO_APP_FUNC(0x003BBDF0, void, DecalLayer_OnChanged, (DecalLayer * __this, bool requiresRebuild, MethodInfo * method)); DO_APP_FUNC(0x003BBE10, DecalSettingsDataContainer_DecalLayerData, DecalLayer_Get, (DecalLayer * __this, MethodInfo * method)); DO_APP_FUNC(0x003BBF40, void, DecalLayer_Apply, (DecalLayer * __this, DecalSettingsDataContainer_DecalLayerData data, MethodInfo * method)); DO_APP_FUNC(0x003BC1A0, void, DecalLayer__Init_b__28_0, (DecalLayer * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC1C0, DecalLayerChannel *, DecalLayerChannelIndexer_get_Item, (DecalLayerChannelIndexer__Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, DecalLayerChannelIndexer__ctor, (DecalLayerChannelIndexer__Boxed * __this, DecalLayer * layer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFD648, DecalLayer__Init_b__28_0__MethodInfo); +DO_APP_FUNC(0x003BC1C0, DecalLayerChannel *, DecalLayerChannelIndexer_get_Item, (DecalLayerChannelIndexer * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFD630, DecalLayerChannelIndexer_get_Item__MethodInfo); +DO_APP_FUNC(0x003BC280, void, DecalLayerChannelIndexer__ctor, (DecalLayerChannelIndexer * __this, DecalLayer * layer, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, DecalLayerChannel_DecalChannelMode__Enum, DecalLayerChannel_get_Mode, (DecalLayerChannel * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2F0, void, DecalLayerChannel_set_Mode, (DecalLayerChannel * __this, DecalLayerChannel_DecalChannelMode__Enum value, MethodInfo * method)); DO_APP_FUNC(0x003BC310, float, DecalLayerChannel_get_InputRangeThreshold, (DecalLayerChannel * __this, MethodInfo * method)); @@ -80681,10 +91799,13 @@ DO_APP_FUNC(0x003BECD0, int32_t, SemanticVersion_1_GetHashCode, (SemanticVersion DO_APP_FUNC(0x003BED40, float, WetAttributeModifier_get_AmbientDarkenStrength, (WetAttributeModifier * __this, MethodInfo * method)); DO_APP_FUNC(0x003BED90, void, WetAttributeModifier_set_AmbientDarkenStrength, (WetAttributeModifier * __this, float value, MethodInfo * method)); DO_APP_FUNC(0x003BEDF0, void, WetAttributeModifier__ctor, (WetAttributeModifier * __this, Camera * camera, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFD528, WetAttributeModifier__ctor__MethodInfo); DO_APP_FUNC(0x003BF1E0, void, WetAttributeModifier_Dispose, (WetAttributeModifier * __this, MethodInfo * method)); DO_APP_FUNC(0x003BF270, void, WetAttributeModifier_RecordCommandBuffer, (WetAttributeModifier * __this, CommandBuffer * cmd, MethodInfo * method)); DO_APP_FUNC(0x003BFC70, int32_t, WetAttributeModifier_CopyGBufferTexture, (WetAttributeModifier * __this, CommandBuffer * cmd, String * shaderParameterName, BuiltinRenderTextureType__Enum texture, bool hdr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFD4D8, WetAttributeModifier_CopyGBufferTexture__MethodInfo); DO_APP_FUNC(0x003C0120, RenderTextureFormat__Enum, WetAttributeModifier_GBufferFormat, (BuiltinRenderTextureType__Enum gbuffer, bool hdr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFD4B8, WetAttributeModifier_GBufferFormat__MethodInfo); DO_APP_FUNC(0x003C01D0, void, WetAttributeModifier__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, Camera *, WetDecalRenderer_get_Camera, (WetDecalRenderer * __this, MethodInfo * method)); DO_APP_FUNC(0x003C0350, void, WetDecalRenderer__ctor, (WetDecalRenderer * __this, Camera * camera, MethodInfo * method)); @@ -80701,6 +91822,7 @@ DO_APP_FUNC(0x003AE050, void, WetDecalRenderer_DecalBatch_Update, (WetDecalRende DO_APP_FUNC(0x003C1B60, void, WetDecalRenderer_DecalBatch_PrepareDraw, (WetDecalRenderer_DecalBatch * __this, CommandBuffer * cmd, MethodInfo * method)); DO_APP_FUNC(0x003C1C60, int32_t, WetDecalRenderer_DecalBatch_Draw, (WetDecalRenderer_DecalBatch * __this, CommandBuffer * cmd, int32_t distanceBand, int32_t shaderPass, MethodInfo * method)); DO_APP_FUNC(0x003C1FF0, void, WetDecalRenderer_DecalBatch_DrawSingle, (WetDecalRenderer_DecalBatch * __this, CommandBuffer * cmd, WetDecalSystem_DecalRenderInstance * decal, int32_t shaderPass, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFD3A0, WetDecalRenderer_DecalBatch_DrawSingle__MethodInfo); DO_APP_FUNC(0x003C2510, void, WetDecalRenderer_DecalBatch_DrawInstanced, (WetDecalRenderer_DecalBatch * __this, CommandBuffer * cmd, ArraySegment_1_Int32_ visible, int32_t shaderPass, MethodInfo * method)); DO_APP_FUNC(0x003C3D10, ReadOnlyCollection_1_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch_ *, WetDecalSystem_get_Batches, (WetDecalSystem * __this, MethodInfo * method)); DO_APP_FUNC(0x003C3D60, uint32_t, WetDecalSystem_get_BatchEpoch, (WetDecalSystem * __this, MethodInfo * method)); @@ -80708,10 +91830,12 @@ DO_APP_FUNC(0x003C3DB0, void, WetDecalSystem__ctor, (WetDecalSystem * __this, Me DO_APP_FUNC(0x003C4070, WetDecalSystem_DecalRenderHandle, WetDecalSystem_Add, (WetDecalSystem * __this, IWetDecal * decal, MethodInfo * method)); DO_APP_FUNC(0x003C4150, void, WetDecalSystem_QueueForUpdate, (WetDecalSystem * __this, IWetDecal * decal, MethodInfo * method)); DO_APP_FUNC(0x003C4210, void, WetDecalSystem_Update, (WetDecalSystem * __this, MethodInfo * method)); -DO_APP_FUNC(0x003C4680, bool, WetDecalSystem_DecalRenderHandle_get_IsValid, (WetDecalSystem_DecalRenderHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003C46A0, void, WetDecalSystem_DecalRenderHandle__ctor, (WetDecalSystem_DecalRenderHandle__Boxed * __this, WetDecalSystem_DecalRenderInstance * instance, MethodInfo * method)); -DO_APP_FUNC(0x003C4710, void, WetDecalSystem_DecalRenderHandle_UpdateProperties, (WetDecalSystem_DecalRenderHandle__Boxed * __this, bool batchPropertiesChanged, MethodInfo * method)); -DO_APP_FUNC(0x003C47A0, void, WetDecalSystem_DecalRenderHandle_Dispose, (WetDecalSystem_DecalRenderHandle__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x003C4680, bool, WetDecalSystem_DecalRenderHandle_get_IsValid, (WetDecalSystem_DecalRenderHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x003C46A0, void, WetDecalSystem_DecalRenderHandle__ctor, (WetDecalSystem_DecalRenderHandle * __this, WetDecalSystem_DecalRenderInstance * instance, MethodInfo * method)); +DO_APP_FUNC(0x003C4710, void, WetDecalSystem_DecalRenderHandle_UpdateProperties, (WetDecalSystem_DecalRenderHandle * __this, bool batchPropertiesChanged, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFD310, WetDecalSystem_DecalRenderHandle_UpdateProperties__MethodInfo); +DO_APP_FUNC(0x003C47A0, void, WetDecalSystem_DecalRenderHandle_Dispose, (WetDecalSystem_DecalRenderHandle * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFD308, WetDecalSystem_DecalRenderHandle_Dispose__MethodInfo); DO_APP_FUNC(0x003C4830, uint32_t, WetDecalSystem_DecalRenderInstance_get_Epoch, (WetDecalSystem_DecalRenderInstance * __this, MethodInfo * method)); DO_APP_FUNC(0x003C4840, void, WetDecalSystem_DecalRenderInstance_set_Epoch, (WetDecalSystem_DecalRenderInstance * __this, uint32_t value, MethodInfo * method)); DO_APP_FUNC(0x003C4850, IWetDecal *, WetDecalSystem_DecalRenderInstance_get_Decal, (WetDecalSystem_DecalRenderInstance * __this, MethodInfo * method)); @@ -80730,10 +91854,11 @@ DO_APP_FUNC(0x003C5C70, void, WetDecalSystem_DecalRenderInstance__cctor, (Method DO_APP_FUNC(0x003C5F20, void, WetDecalSystem_DecalRenderInstance_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, WetDecalSystem_DecalRenderInstance_c__ctor, (WetDecalSystem_DecalRenderInstance_c * __this, MethodInfo * method)); DO_APP_FUNC(0x003C5FD0, WetDecalSystem_DecalRenderInstance *, WetDecalSystem_DecalRenderInstance_c___cctor_b__25_0, (WetDecalSystem_DecalRenderInstance_c * __this, MethodInfo * method)); -DO_APP_FUNC(0x003C6020, void, WetDecalSystem_MaterialBatchId__ctor, (WetDecalSystem_MaterialBatchId__Boxed * __this, MaterialPermutation permutation, MaterialProperties properties, MethodInfo * method)); -DO_APP_FUNC(0x003C60B0, bool, WetDecalSystem_MaterialBatchId_Equals, (WetDecalSystem_MaterialBatchId__Boxed * __this, WetDecalSystem_MaterialBatchId other, MethodInfo * method)); -DO_APP_FUNC(0x003C6250, bool, WetDecalSystem_MaterialBatchId_Equals_1, (WetDecalSystem_MaterialBatchId__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x003C6350, int32_t, WetDecalSystem_MaterialBatchId_GetHashCode, (WetDecalSystem_MaterialBatchId__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFD2B0, WetDecalSystem_DecalRenderInstance_c___cctor_b__25_0__MethodInfo); +DO_APP_FUNC(0x003C6020, void, WetDecalSystem_MaterialBatchId__ctor, (WetDecalSystem_MaterialBatchId * __this, MaterialPermutation permutation, MaterialProperties properties, MethodInfo * method)); +DO_APP_FUNC(0x003C60B0, bool, WetDecalSystem_MaterialBatchId_Equals, (WetDecalSystem_MaterialBatchId * __this, WetDecalSystem_MaterialBatchId other, MethodInfo * method)); +DO_APP_FUNC(0x003C6250, bool, WetDecalSystem_MaterialBatchId_Equals_1, (WetDecalSystem_MaterialBatchId * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x003C6350, int32_t, WetDecalSystem_MaterialBatchId_GetHashCode, (WetDecalSystem_MaterialBatchId * __this, MethodInfo * method)); DO_APP_FUNC(0x003C6420, bool, WetDecalSystem_MaterialBatchId_op_Equality, (WetDecalSystem_MaterialBatchId left, WetDecalSystem_MaterialBatchId right, MethodInfo * method)); DO_APP_FUNC(0x003C6490, bool, WetDecalSystem_MaterialBatchId_op_Inequality, (WetDecalSystem_MaterialBatchId left, WetDecalSystem_MaterialBatchId right, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, BoundingSphere__Array *, WetDecalSystem_MaterialBatch_get_BoundingSpheres, (WetDecalSystem_MaterialBatch * __this, MethodInfo * method)); @@ -80745,6 +91870,7 @@ DO_APP_FUNC(0x003C65A0, void, WetDecalSystem_MaterialBatch_set_Properties, (WetD DO_APP_FUNC(0x003C6620, MaterialPermutation, WetDecalSystem_MaterialBatch_get_Permutation, (WetDecalSystem_MaterialBatch * __this, MethodInfo * method)); DO_APP_FUNC(0x003C6640, void, WetDecalSystem_MaterialBatch_set_Permutation, (WetDecalSystem_MaterialBatch * __this, MaterialPermutation value, MethodInfo * method)); DO_APP_FUNC(0x003C6660, void, WetDecalSystem_MaterialBatch__ctor, (WetDecalSystem_MaterialBatch * __this, Shader * shader, MaterialPermutation permutation, MaterialProperties properties, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFD210, WetDecalSystem_MaterialBatch__ctor__MethodInfo); DO_APP_FUNC(0x003C6D70, void, WetDecalSystem_MaterialBatch_Dispose, (WetDecalSystem_MaterialBatch * __this, MethodInfo * method)); DO_APP_FUNC(0x003C6EE0, Material *, WetDecalSystem_MaterialBatch_GetMaterial, (WetDecalSystem_MaterialBatch * __this, bool instanced, MethodInfo * method)); DO_APP_FUNC(0x003C6FB0, void, WetDecalSystem_MaterialBatch_Add, (WetDecalSystem_MaterialBatch * __this, WetDecalSystem_DecalRenderInstance * decal, MethodInfo * method)); @@ -80768,6 +91894,7 @@ DO_APP_FUNC(0x003C7D90, WetDecalSystem_MaterialBatch *, WetDecalSystem_State_Fin DO_APP_FUNC(0x003C8180, void, WetDecalSystem_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, WetDecalSystem_c__ctor, (WetDecalSystem_c * __this, MethodInfo * method)); DO_APP_FUNC(0x003C8230, WetDecalSystem_State *, WetDecalSystem_c___ctor_b__9_0, (WetDecalSystem_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFD358, WetDecalSystem_c___ctor_b__9_0__MethodInfo); DO_APP_FUNC(0x003C8290, void, WetStuff_add_AfterDecalRender, (WetStuff * __this, Action_1_UnityEngine_Rendering_CommandBuffer_ * value, MethodInfo * method)); DO_APP_FUNC(0x003C83A0, void, WetStuff_remove_AfterDecalRender, (WetStuff * __this, Action_1_UnityEngine_Rendering_CommandBuffer_ * value, MethodInfo * method)); DO_APP_FUNC(0x003C84B0, void, WetStuff_Startup, (WetStuff * __this, MethodInfo * method)); @@ -80827,6 +91954,7 @@ DO_APP_FUNC(0x003CB9E0, BoundingSphere, ParticleWetSplatter_Splatter_get_Bounds, DO_APP_FUNC(0x003BB3C0, IDecalSettings *, ParticleWetSplatter_Splatter_PlaceholderSoftware_WetStuff_IWetDecal_get_Settings, (ParticleWetSplatter_Splatter * __this, MethodInfo * method)); DO_APP_FUNC(0x003CBA80, void, ParticleWetSplatter_Splatter_Step, (ParticleWetSplatter_Splatter * __this, float dt, MethodInfo * method)); DO_APP_FUNC(0x003CBBD0, void, ParticleWetSplatter_Splatter_DecalSettingsChanged, (ParticleWetSplatter_Splatter * __this, bool rebuild, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D009E8, ParticleWetSplatter_Splatter_DecalSettingsChanged__MethodInfo); DO_APP_FUNC(0x003CBBF0, void, ParticleWetSplatter_Splatter_Reset, (ParticleWetSplatter_Splatter * __this, MethodInfo * method)); DO_APP_FUNC(0x003CBC30, void, ParticleWetSplatter_Splatter_Initialize, (ParticleWetSplatter_Splatter * __this, Vector3 position, Vector3 normal, Vector3 velocity, Transform * parent, MethodInfo * method)); DO_APP_FUNC(0x003BCD20, bool, ParticleWetSplatter_BaseToggleableSettings_get_Enabled, (ParticleWetSplatter_BaseToggleableSettings * __this, MethodInfo * method)); @@ -80914,6 +92042,7 @@ DO_APP_FUNC(0x003CE450, Matrix4x4, WetDecal_PlaceholderSoftware_WetStuff_IWetDec DO_APP_FUNC(0x003CE510, Mesh *, WetDecal_PlaceholderSoftware_WetStuff_IWetDecal_get_Mesh, (WetDecal * __this, MethodInfo * method)); DO_APP_FUNC(0x003CE570, void, WetDecal_Step, (WetDecal * __this, float dt, MethodInfo * method)); DO_APP_FUNC(0x003CE5C0, void, WetDecal_OnSettingsChanged, (WetDecal * __this, bool rebuild, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00940, WetDecal_OnSettingsChanged__MethodInfo); DO_APP_FUNC(0x003CE720, void, WetDecal_OnValidate, (WetDecal * __this, MethodInfo * method)); DO_APP_FUNC(0x003CE740, void, WetDecal_OnEnable, (WetDecal * __this, MethodInfo * method)); DO_APP_FUNC(0x003CEA40, void, WetDecal_OnDisable, (WetDecal * __this, MethodInfo * method)); @@ -80930,7 +92059,7 @@ DO_APP_FUNC(0x003AE000, void, BaseExternalWetnessSource__ctor, (BaseExternalWetn DO_APP_FUNC(0x003CF850, void, DripLine_Awake, (DripLine * __this, MethodInfo * method)); DO_APP_FUNC(0x003CF8F0, void, DripLine_Update, (DripLine * __this, MethodInfo * method)); DO_APP_FUNC(0x003CFB00, void, DripLine_UpdatePosition, (DripLine * __this, bool force, MethodInfo * method)); -DO_APP_FUNC(0x003D0030, void, DripLine_CalculateLineTransform, (Vector3 a, Vector3 b, Vector3 position, Vector3 rotation, Vector3 scale, MethodInfo * method)); +DO_APP_FUNC(0x003D0030, void, DripLine_CalculateLineTransform, (Vector3 a, Vector3 b, Vector3 * position, Vector3 * rotation, Vector3 * scale, MethodInfo * method)); DO_APP_FUNC(0x003D0420, void, DripLine__ctor, (DripLine * __this, MethodInfo * method)); DO_APP_FUNC(0x003D0480, float, RainPuddle_get_Rate, (RainPuddle * __this, MethodInfo * method)); DO_APP_FUNC(0x003D0490, void, RainPuddle_set_Rate, (RainPuddle * __this, float value, MethodInfo * method)); @@ -80947,14 +92076,14 @@ DO_APP_FUNC(0x003D0D40, void, RainPuddle_Update_1, (RainPuddle * __this, List_1_ DO_APP_FUNC(0x003D0E60, void, RainPuddle_Retire, (RainPuddle * __this, List_1_PlaceholderSoftware_WetStuff_Weather_RainPuddle_RainDecal_ * decals, MethodInfo * method)); DO_APP_FUNC(0x003D1020, void, RainPuddle_Dry, (RainPuddle * __this, List_1_PlaceholderSoftware_WetStuff_Weather_RainPuddle_RainDecal_ * decals, MethodInfo * method)); DO_APP_FUNC(0x003D1250, void, RainPuddle__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x003CAFE0, void, RainPuddle_ChannelValues__ctor, (RainPuddle_ChannelValues__Boxed * __this, float threshold, float softness, float outMin, float outMax, MethodInfo * method)); -DO_APP_FUNC(0x003D1390, String *, RainPuddle_ChannelValues_ToString, (RainPuddle_ChannelValues__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003D15E0, void, RainPuddle_ChannelValues_Apply, (RainPuddle_ChannelValues__Boxed * __this, DecalLayerChannel * channel, MethodInfo * method)); +DO_APP_FUNC(0x003CAFE0, void, RainPuddle_ChannelValues__ctor, (RainPuddle_ChannelValues * __this, float threshold, float softness, float outMin, float outMax, MethodInfo * method)); +DO_APP_FUNC(0x003D1390, String *, RainPuddle_ChannelValues_ToString, (RainPuddle_ChannelValues * __this, MethodInfo * method)); +DO_APP_FUNC(0x003D15E0, void, RainPuddle_ChannelValues_Apply, (RainPuddle_ChannelValues * __this, DecalLayerChannel * channel, MethodInfo * method)); DO_APP_FUNC(0x003D1680, RainPuddle_ChannelValues, RainPuddle_ChannelValues_Lerp, (RainPuddle_ChannelValues a, RainPuddle_ChannelValues b, RainPuddle_ChannelCurves curves, float progress, MethodInfo * method)); DO_APP_FUNC(0x003D1950, void, RainPuddle_ChannelCurves__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x003D1BC0, void, RainPuddle_DecalState__ctor, (RainPuddle_DecalState__Boxed * __this, float saturation, RainPuddle_ChannelValues red, RainPuddle_ChannelValues green, RainPuddle_ChannelValues blue, RainPuddle_ChannelValues alpha, MethodInfo * method)); -DO_APP_FUNC(0x003D1BF0, String *, RainPuddle_DecalState_ToString, (RainPuddle_DecalState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003D1EA0, void, RainPuddle_DecalState_Apply, (RainPuddle_DecalState__Boxed * __this, WetDecal * decal, MethodInfo * method)); +DO_APP_FUNC(0x003D1BC0, void, RainPuddle_DecalState__ctor, (RainPuddle_DecalState * __this, float saturation, RainPuddle_ChannelValues red, RainPuddle_ChannelValues green, RainPuddle_ChannelValues blue, RainPuddle_ChannelValues alpha, MethodInfo * method)); +DO_APP_FUNC(0x003D1BF0, String *, RainPuddle_DecalState_ToString, (RainPuddle_DecalState * __this, MethodInfo * method)); +DO_APP_FUNC(0x003D1EA0, void, RainPuddle_DecalState_Apply, (RainPuddle_DecalState * __this, WetDecal * decal, MethodInfo * method)); DO_APP_FUNC(0x003D2170, RainPuddle_DecalState, RainPuddle_DecalState_Lerp, (RainPuddle_DecalState a, RainPuddle_DecalState b, RainPuddle_DecalStateCurves curves, float progress, MethodInfo * method)); DO_APP_FUNC(0x003D23F0, void, RainPuddle_DecalStateCurves__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003D2780, bool, RainPuddle_RainDecal_get_IsDead, (RainPuddle_RainDecal * __this, MethodInfo * method)); @@ -80968,9 +92097,9 @@ DO_APP_FUNC(0x003D2A30, bool, RainPuddle_RainDecal_Update, (RainPuddle_RainDecal DO_APP_FUNC(0x003D2F30, ClipCaps__Enum, DecalSettingsClip_get_clipCaps, (DecalSettingsClip * __this, MethodInfo * method)); DO_APP_FUNC(0x003D2F40, void, DecalSettingsClip__ctor, (DecalSettingsClip * __this, MethodInfo * method)); DO_APP_FUNC(0x003D2FF0, void, DecalSettingsDataContainer__ctor, (DecalSettingsDataContainer * __this, MethodInfo * method)); -DO_APP_FUNC(0x003D3020, void, DecalSettingsDataContainer_DecalSettingsData__ctor, (DecalSettingsDataContainer_DecalSettingsData__Boxed * __this, float saturation, DecalSettingsDataContainer_DecalLayerData xLayer, DecalSettingsDataContainer_DecalLayerData yLayer, DecalSettingsDataContainer_DecalLayerData zLayer, MethodInfo * method)); -DO_APP_FUNC(0x003D30C0, void, DecalSettingsDataContainer_DecalLayerData__ctor, (DecalSettingsDataContainer_DecalLayerData__Boxed * __this, DecalSettingsDataContainer_DecalLayerChannelData ch1, DecalSettingsDataContainer_DecalLayerChannelData ch2, DecalSettingsDataContainer_DecalLayerChannelData ch3, DecalSettingsDataContainer_DecalLayerChannelData ch4, MethodInfo * method)); -DO_APP_FUNC(0x003D30F0, void, DecalSettingsDataContainer_DecalLayerChannelData__ctor, (DecalSettingsDataContainer_DecalLayerChannelData__Boxed * __this, float inputRangeThreshold, float inputRangeSoftness, Vector2 outputRange, MethodInfo * method)); +DO_APP_FUNC(0x003D3020, void, DecalSettingsDataContainer_DecalSettingsData__ctor, (DecalSettingsDataContainer_DecalSettingsData * __this, float saturation, DecalSettingsDataContainer_DecalLayerData xLayer, DecalSettingsDataContainer_DecalLayerData yLayer, DecalSettingsDataContainer_DecalLayerData zLayer, MethodInfo * method)); +DO_APP_FUNC(0x003D30C0, void, DecalSettingsDataContainer_DecalLayerData__ctor, (DecalSettingsDataContainer_DecalLayerData * __this, DecalSettingsDataContainer_DecalLayerChannelData ch1, DecalSettingsDataContainer_DecalLayerChannelData ch2, DecalSettingsDataContainer_DecalLayerChannelData ch3, DecalSettingsDataContainer_DecalLayerChannelData ch4, MethodInfo * method)); +DO_APP_FUNC(0x003D30F0, void, DecalSettingsDataContainer_DecalLayerChannelData__ctor, (DecalSettingsDataContainer_DecalLayerChannelData * __this, float inputRangeThreshold, float inputRangeSoftness, Vector2 outputRange, MethodInfo * method)); DO_APP_FUNC(0x003D3100, DecalSettingsDataContainer_DecalSettingsData, DecalSettingsMixer_GetState, (DecalSettingsMixer * __this, WetDecal * trackBinding, MethodInfo * method)); DO_APP_FUNC(0x003D3360, void, DecalSettingsMixer_ApplyState, (DecalSettingsMixer * __this, DecalSettingsDataContainer_DecalSettingsData intermediate, WetDecal * trackBinding, MethodInfo * method)); DO_APP_FUNC(0x003D36A0, DecalSettingsDataContainer_DecalSettingsData, DecalSettingsMixer_Mix, (DecalSettingsMixer * __this, Playable playable, FrameData info, WetDecal * trackBinding, MethodInfo * method)); @@ -81008,30 +92137,31 @@ DO_APP_FUNC(0x003D5E10, void, Vector4Mixer_Start, (Vector4Mixer * __this, Method DO_APP_FUNC(0x003D5E90, void, Vector4Mixer_MixImpl, (Vector4Mixer * __this, float weight, Vector4 data, MethodInfo * method)); DO_APP_FUNC(0x003D5F30, Vector4, Vector4Mixer_GetResult, (Vector4Mixer * __this, Vector4 defaultValue, MethodInfo * method)); DO_APP_FUNC(0x003D60A0, void, Vector4Mixer__ctor, (Vector4Mixer * __this, MethodInfo * method)); -DO_APP_FUNC(0x003D60D0, void, InstanceProperties_LoadInto, (InstanceProperties__Boxed * __this, MaterialPropertyBlock * properties, LayerMode__Enum mode, MethodInfo * method)); -DO_APP_FUNC(0x003D6370, void, InstanceProperties_LoadInto_1, (InstanceProperties__Boxed * __this, int32_t index, Single__Array * saturation, Single__Array * fadeout, Single__Array * edgeSharpness, Nullable_1_PlaceholderSoftware_WetStuff_Rendering_LayerArrays_ x, Nullable_1_PlaceholderSoftware_WetStuff_Rendering_LayerArrays_ y, Nullable_1_PlaceholderSoftware_WetStuff_Rendering_LayerArrays_ z, MethodInfo * method)); +DO_APP_FUNC(0x003D60D0, void, InstanceProperties_LoadInto, (InstanceProperties * __this, MaterialPropertyBlock * properties, LayerMode__Enum mode, MethodInfo * method)); +DO_APP_FUNC(0x003D6370, void, InstanceProperties_LoadInto_1, (InstanceProperties * __this, int32_t index, Single__Array * saturation, Single__Array * fadeout, Single__Array * edgeSharpness, Nullable_1_PlaceholderSoftware_WetStuff_Rendering_LayerArrays_ x, Nullable_1_PlaceholderSoftware_WetStuff_Rendering_LayerArrays_ y, Nullable_1_PlaceholderSoftware_WetStuff_Rendering_LayerArrays_ z, MethodInfo * method)); DO_APP_FUNC(0x003D6620, void, InstanceProperties_LoadInto_2, (MaterialPropertyBlock * properties, Single__Array * saturation, Single__Array * fadeout, Single__Array * edgeSharpness, Nullable_1_PlaceholderSoftware_WetStuff_Rendering_LayerArrays_ x, Nullable_1_PlaceholderSoftware_WetStuff_Rendering_LayerArrays_ y, Nullable_1_PlaceholderSoftware_WetStuff_Rendering_LayerArrays_ z, MethodInfo * method)); DO_APP_FUNC(0x003D6990, void, InstanceProperties__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x003D7030, void, LayerArrays__ctor, (LayerArrays__Boxed * __this, Vector4__Array * layerInputStart, Vector4__Array * layerInputExtent, Vector4__Array * layerOutputStart, Vector4__Array * layerOutputEnd, MethodInfo * method)); +DO_APP_FUNC(0x003D7030, void, LayerArrays__ctor, (LayerArrays * __this, Vector4__Array * layerInputStart, Vector4__Array * layerInputExtent, Vector4__Array * layerOutputStart, Vector4__Array * layerOutputEnd, MethodInfo * method)); DO_APP_FUNC(0x003D7180, Nullable_1_PlaceholderSoftware_WetStuff_Rendering_LayerArrays_, LayerArrays_Create, (Vector4__Array * layerInputStart, Vector4__Array * layerInputExtent, Vector4__Array * layerOutputStart, Vector4__Array * layerOutputEnd, MethodInfo * method)); -DO_APP_FUNC(0x003D7520, void, LayerArrays_LoadInto, (LayerArrays__Boxed * __this, MaterialPropertyBlock * properties, int32_t layerInputStartId, int32_t layerInputExtentId, int32_t layerOutputStartId, int32_t layerOutputEndId, MethodInfo * method)); -DO_APP_FUNC(0x003D75E0, void, LayerParameters_LoadInto, (LayerParameters__Boxed * __this, MaterialPropertyBlock * properties, int32_t inputStartId, int32_t inputExtentId, int32_t outputStartId, int32_t outputEndId, MethodInfo * method)); -DO_APP_FUNC(0x003D7780, void, LayerParameters_LoadInto_1, (LayerParameters__Boxed * __this, LayerArrays arrays, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x003D7830, void, MaterialPermutation__ctor, (MaterialPermutation__Boxed * __this, WetDecalMode__Enum mode, LayerMode__Enum layerMode, ProjectionMode__Enum layerProjectionMode, DecalShape__Enum shape, bool enableJitter, MethodInfo * method)); -DO_APP_FUNC(0x003D7850, int32_t, MaterialPermutation_get_RenderOrder, (MaterialPermutation__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003D7860, Shader *, MaterialPermutation_SelectShader, (MaterialPermutation__Boxed * __this, Shader * wet, Shader * dry, MethodInfo * method)); -DO_APP_FUNC(0x003D7870, bool, MaterialPermutation_Equals, (MaterialPermutation__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x003D7910, bool, MaterialPermutation_Equals_1, (MaterialPermutation__Boxed * __this, MaterialPermutation other, MethodInfo * method)); -DO_APP_FUNC(0x003D7A90, int32_t, MaterialPermutation_GetHashCode, (MaterialPermutation__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D003B8, LayerArrays_Create__MethodInfo); +DO_APP_FUNC(0x003D7520, void, LayerArrays_LoadInto, (LayerArrays * __this, MaterialPropertyBlock * properties, int32_t layerInputStartId, int32_t layerInputExtentId, int32_t layerOutputStartId, int32_t layerOutputEndId, MethodInfo * method)); +DO_APP_FUNC(0x003D75E0, void, LayerParameters_LoadInto, (LayerParameters * __this, MaterialPropertyBlock * properties, int32_t inputStartId, int32_t inputExtentId, int32_t outputStartId, int32_t outputEndId, MethodInfo * method)); +DO_APP_FUNC(0x003D7780, void, LayerParameters_LoadInto_1, (LayerParameters * __this, LayerArrays arrays, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x003D7830, void, MaterialPermutation__ctor, (MaterialPermutation * __this, WetDecalMode__Enum mode, LayerMode__Enum layerMode, ProjectionMode__Enum layerProjectionMode, DecalShape__Enum shape, bool enableJitter, MethodInfo * method)); +DO_APP_FUNC(0x003D7850, int32_t, MaterialPermutation_get_RenderOrder, (MaterialPermutation * __this, MethodInfo * method)); +DO_APP_FUNC(0x003D7860, Shader *, MaterialPermutation_SelectShader, (MaterialPermutation * __this, Shader * wet, Shader * dry, MethodInfo * method)); +DO_APP_FUNC(0x003D7870, bool, MaterialPermutation_Equals, (MaterialPermutation * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x003D7910, bool, MaterialPermutation_Equals_1, (MaterialPermutation * __this, MaterialPermutation other, MethodInfo * method)); +DO_APP_FUNC(0x003D7A90, int32_t, MaterialPermutation_GetHashCode, (MaterialPermutation * __this, MethodInfo * method)); DO_APP_FUNC(0x003D7B40, bool, MaterialPermutation_op_Equality, (MaterialPermutation permutation1, MaterialPermutation permutation2, MethodInfo * method)); DO_APP_FUNC(0x003D7B70, bool, MaterialPermutation_op_Inequality, (MaterialPermutation permutation1, MaterialPermutation permutation2, MethodInfo * method)); -DO_APP_FUNC(0x003D7BB0, void, MaterialProperties__ctor, (MaterialProperties__Boxed * __this, Texture2D * xLayer, Vector4 xLayerScaleOffset, Texture2D * yLayer, Vector4 yLayerScaleOffset, Texture2D * zLayer, Vector4 zLayerScaleOffset, Texture2D * blueNoiseRgba, Vector2 randomnessTiling, Vector2 sampleJitter, MethodInfo * method)); -DO_APP_FUNC(0x003D7D50, bool, MaterialProperties_Equals, (MaterialProperties__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x003D7E40, bool, MaterialProperties_Equals_1, (MaterialProperties__Boxed * __this, MaterialProperties other, MethodInfo * method)); -DO_APP_FUNC(0x003D81A0, int32_t, MaterialProperties_GetHashCode, (MaterialProperties__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x003D7BB0, void, MaterialProperties__ctor, (MaterialProperties * __this, Texture2D * xLayer, Vector4 xLayerScaleOffset, Texture2D * yLayer, Vector4 yLayerScaleOffset, Texture2D * zLayer, Vector4 zLayerScaleOffset, Texture2D * blueNoiseRgba, Vector2 randomnessTiling, Vector2 sampleJitter, MethodInfo * method)); +DO_APP_FUNC(0x003D7D50, bool, MaterialProperties_Equals, (MaterialProperties * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x003D7E40, bool, MaterialProperties_Equals_1, (MaterialProperties * __this, MaterialProperties other, MethodInfo * method)); +DO_APP_FUNC(0x003D81A0, int32_t, MaterialProperties_GetHashCode, (MaterialProperties * __this, MethodInfo * method)); DO_APP_FUNC(0x003D8490, bool, MaterialProperties_op_Equality, (MaterialProperties properties1, MaterialProperties properties2, MethodInfo * method)); DO_APP_FUNC(0x003D8530, bool, MaterialProperties_op_Inequality, (MaterialProperties properties1, MaterialProperties properties2, MethodInfo * method)); -DO_APP_FUNC(0x003D8660, void, MaterialProperties_LoadInto, (MaterialProperties__Boxed * __this, Material * properties, MethodInfo * method)); +DO_APP_FUNC(0x003D8660, void, MaterialProperties_LoadInto, (MaterialProperties * __this, Material * properties, MethodInfo * method)); DO_APP_FUNC(0x003D8D70, void, MaterialProperties__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003D9180, bool, RenderSettings_1_get_EnableInstancing, (RenderSettings_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x003D9230, void, RenderSettings_1_set_EnableInstancing, (RenderSettings_1 * __this, bool value, MethodInfo * method)); @@ -81054,6 +92184,7 @@ DO_APP_FUNC(0x003D9F70, void, DebugSettings__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003DA060, void, DebugSettings_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, DebugSettings_c__ctor, (DebugSettings_c * __this, MethodInfo * method)); DO_APP_FUNC(0x003DA110, int32_t, DebugSettings_c___ctor_b__7_0, (DebugSettings_c * __this, LogCategory__Enum c, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D000C8, DebugSettings_c___ctor_b__7_0__MethodInfo); DO_APP_FUNC(0x003DA120, WetSurfaceDecalsException *, LoggingConstants_Ex, (String * message, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, LoggingConstants__ctor, (LoggingConstants * __this, MethodInfo * method)); DO_APP_FUNC(0x003DA1C0, Log_1 *, Logs_Create, (LogCategory__Enum category, String * name, MethodInfo * method)); @@ -81065,8 +92196,9 @@ DO_APP_FUNC(0x003DA650, LogLevel__Enum_1, Logs_GetLogLevel_1, (int32_t category, DO_APP_FUNC(0x003DA730, void, Logs_WriteMultithreadedLogs, (MethodInfo * method)); DO_APP_FUNC(0x003DAB10, void, Logs_SendLogMessage, (String * message, LogLevel__Enum_1 level, MethodInfo * method)); DO_APP_FUNC(0x003DAEC0, void, Logs__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x003DB020, void, Logs_LogMessage__ctor, (Logs_LogMessage__Boxed * __this, String * message, LogLevel__Enum_1 level, MethodInfo * method)); -DO_APP_FUNC(0x003DB080, void, Logs_LogMessage_Log, (Logs_LogMessage__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x003DB020, void, Logs_LogMessage__ctor, (Logs_LogMessage * __this, String * message, LogLevel__Enum_1 level, MethodInfo * method)); +DO_APP_FUNC(0x003DB080, void, Logs_LogMessage_Log, (Logs_LogMessage * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFFDA8, Logs_LogMessage_Log__MethodInfo); DO_APP_FUNC(0x003DB180, bool, Log_1_get_IsTrace, (Log_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x003DB1E0, bool, Log_1_get_IsDebug, (Log_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x003DB240, bool, Log_1_get_IsInfo, (Log_1 * __this, MethodInfo * method)); @@ -81075,6 +92207,7 @@ DO_APP_FUNC(0x003DB300, bool, Log_1_get_IsError, (Log_1 * __this, MethodInfo * m DO_APP_FUNC(0x003DB360, void, Log_1__ctor, (Log_1 * __this, int32_t category, String * name, MethodInfo * method)); DO_APP_FUNC(0x003DB6E0, bool, Log_1_ShouldLog, (Log_1 * __this, LogLevel__Enum_1 level, MethodInfo * method)); DO_APP_FUNC(0x003DB750, void, Log_1_WriteLog, (Log_1 * __this, LogLevel__Enum_1 level, String * message, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFFCC8, Log_1_WriteLog__MethodInfo); DO_APP_FUNC(0x003DB950, void, Log_1_WriteLogFormat, (Log_1 * __this, LogLevel__Enum_1 level, String * format, Object__Array * parameters, MethodInfo * method)); DO_APP_FUNC(0x003DBA90, void, Log_1_Trace, (Log_1 * __this, String * message, MethodInfo * method)); DO_APP_FUNC(0x003DBAA0, void, Log_1_Trace_1, (Log_1 * __this, String * format, Object__Array * parameters, MethodInfo * method)); @@ -81093,6 +92226,7 @@ DO_APP_FUNC(0x003DC0A0, Exception *, Log_1_CreatePossibleBugException, (Log_1 * DO_APP_FUNC(0x003DC0C0, bool, Log_1_AssertAndLogWarn, (Log_1 * __this, bool assertion, String * msg, MethodInfo * method)); DO_APP_FUNC(0x003DC0F0, bool, Log_1_AssertAndLogError, (Log_1 * __this, bool assertion, String * guid, String * msg, MethodInfo * method)); DO_APP_FUNC(0x003DC140, void, Log_1_AssertAndThrowPossibleBug, (Log_1 * __this, bool assertion, String * guid, String * msg, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFFC48, Log_1_AssertAndThrowPossibleBug__MethodInfo); DO_APP_FUNC(0x003DC180, void, WetSurfaceDecalsException__ctor, (WetSurfaceDecalsException * __this, String * message, MethodInfo * method)); DO_APP_FUNC(0x003BCD40, void, My_Half_edge__ctor, (My_Half_edge * __this, MethodInfo * method)); DO_APP_FUNC(0x003DC1E0, int32_t, My_Half_edge_CompareTo, (My_Half_edge * __this, Object * obj, MethodInfo * method)); @@ -81119,7 +92253,7 @@ DO_APP_FUNC(0x003AE050, void, Vector3Comparer__ctor, (Vector3Comparer * __this, DO_APP_FUNC(0x003DD3A0, void, Progressive_Mesh__ctor, (Progressive_Mesh * __this, MethodInfo * method)); DO_APP_FUNC(0x003DD9E0, int32_t, Progressive_Mesh_get_trace_num, (Progressive_Mesh * __this, MethodInfo * method)); DO_APP_FUNC(0x003DDA30, void, Progressive_Mesh_create_progressive_mesh, (Progressive_Mesh * __this, Vector3__Array * vertex_array, int32_t vertex_count, Int32__Array * triangle_array, int32_t triangle_count, Vector3__Array * normal_array, int32_t normal_count, Color__Array * color_array, int32_t color_count, Vector2__Array * uv_array, int32_t uv_count, int32_t protect_boundary, int32_t protect_detail, int32_t protect_symmetry, int32_t protect_normal, int32_t protect_shape, int32_t use_detail_map, int32_t detail_boost, MethodInfo * method)); -DO_APP_FUNC(0x003DDC10, void, Progressive_Mesh_get_triangle_list, (Progressive_Mesh * __this, int32_t goal, Int32__Array * triangle_array, int32_t triangle_count, MethodInfo * method)); +DO_APP_FUNC(0x003DDC10, void, Progressive_Mesh_get_triangle_list, (Progressive_Mesh * __this, int32_t goal, Int32__Array * triangle_array, int32_t * triangle_count, MethodInfo * method)); DO_APP_FUNC(0x003DE300, void, Progressive_Mesh_load_mesh_from_array, (Progressive_Mesh * __this, Vector3__Array * vertex_array, int32_t vertex_count, Int32__Array * triangle_array, int32_t triangle_count, Vector3__Array * normal_array, int32_t normal_count, Color__Array * color_array, int32_t color_count, Vector2__Array * uv_array, int32_t uv_count, MethodInfo * method)); DO_APP_FUNC(0x003DEEA0, void, Progressive_Mesh_calculate_face_normal, (Progressive_Mesh * __this, My_Half_face * one_face, MethodInfo * method)); DO_APP_FUNC(0x003DF000, void, Progressive_Mesh_calculate_face_normals, (Progressive_Mesh * __this, MethodInfo * method)); @@ -81133,7 +92267,7 @@ DO_APP_FUNC(0x003E1B20, bool, Progressive_Mesh_contract_edge, (Progressive_Mesh DO_APP_FUNC(0x003E31D0, void, Progressive_Mesh_contract_edges, (Progressive_Mesh * __this, MethodInfo * method)); DO_APP_FUNC(0x003E3260, int32_t, Progressive_Mesh_trace_to, (Progressive_Mesh * __this, int32_t goal, MethodInfo * method)); DO_APP_FUNC(0x003E37D0, int32_t, MantisLODSimpler_create_progressive_mesh, (Vector3__Array * vertex_array, int32_t vertex_count, Int32__Array * triangle_array, int32_t triangle_count, Vector3__Array * normal_array, int32_t normal_count, Color__Array * color_array, int32_t color_count, Vector2__Array * uv_array, int32_t uv_count, int32_t protect_boundary, int32_t protect_detail, int32_t protect_symmetry, int32_t protect_normal, int32_t protect_shape, int32_t use_detail_map, int32_t detail_boost, MethodInfo * method)); -DO_APP_FUNC(0x003E3C60, int32_t, MantisLODSimpler_get_triangle_list, (int32_t index, float goal, Int32__Array * triangle_array, int32_t triangle_count, MethodInfo * method)); +DO_APP_FUNC(0x003E3C60, int32_t, MantisLODSimpler_get_triangle_list, (int32_t index, float goal, Int32__Array * triangle_array, int32_t * triangle_count, MethodInfo * method)); DO_APP_FUNC(0x003E3E50, int32_t, MantisLODSimpler_delete_progressive_mesh, (int32_t index, MethodInfo * method)); DO_APP_FUNC(0x003E3FB0, void, MantisLODSimpler__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Lod_Mesh__ctor, (Lod_Mesh * __this, MethodInfo * method)); @@ -81178,24 +92312,36 @@ DO_APP_FUNC(0x003E9ED0, void, ActivityManager_add_OnActivityJoinRequest, (Activi DO_APP_FUNC(0x003E9FC0, void, ActivityManager_remove_OnActivityJoinRequest, (ActivityManager * __this, ActivityManager_ActivityJoinRequestHandler * value, MethodInfo * method)); DO_APP_FUNC(0x003EA0B0, void, ActivityManager_add_OnActivityInvite, (ActivityManager * __this, ActivityManager_ActivityInviteHandler * value, MethodInfo * method)); DO_APP_FUNC(0x003EA1A0, void, ActivityManager_remove_OnActivityInvite, (ActivityManager * __this, ActivityManager_ActivityInviteHandler * value, MethodInfo * method)); -DO_APP_FUNC(0x003EA290, void, ActivityManager__ctor, (ActivityManager * __this, void * ptr, void * eventsPtr, ActivityManager_FFIEvents events, MethodInfo * method)); -DO_APP_FUNC(0x003EA3C0, void, ActivityManager_InitEvents, (ActivityManager * __this, void * eventsPtr, ActivityManager_FFIEvents events, MethodInfo * method)); +DO_APP_FUNC(0x003EA290, void, ActivityManager__ctor, (ActivityManager * __this, void * ptr, void * eventsPtr, ActivityManager_FFIEvents * events, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF2A8, ActivityManager__ctor__MethodInfo); +DO_APP_FUNC(0x003EA3C0, void, ActivityManager_InitEvents, (ActivityManager * __this, void * eventsPtr, ActivityManager_FFIEvents * events, MethodInfo * method)); DO_APP_FUNC(0x003EAB10, void, ActivityManager_RegisterCommand_1, (ActivityManager * __this, String * command, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF240, ActivityManager_RegisterCommand_1__MethodInfo); DO_APP_FUNC(0x003EABC0, void, ActivityManager_RegisterSteam, (ActivityManager * __this, uint32_t steamId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF238, ActivityManager_RegisterSteam__MethodInfo); DO_APP_FUNC(0x003EAC70, void, ActivityManager_UpdateActivityCallbackImpl, (void * ptr, Result__Enum result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF218, ActivityManager_UpdateActivityCallbackImpl__MethodInfo); DO_APP_FUNC(0x003EADA0, void, ActivityManager_UpdateActivity, (ActivityManager * __this, Activity activity, ActivityManager_UpdateActivityHandler * callback, MethodInfo * method)); DO_APP_FUNC(0x003EAF90, void, ActivityManager_ClearActivityCallbackImpl, (void * ptr, Result__Enum result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF1F0, ActivityManager_ClearActivityCallbackImpl__MethodInfo); DO_APP_FUNC(0x003EB0C0, void, ActivityManager_ClearActivity, (ActivityManager * __this, ActivityManager_ClearActivityHandler * callback, MethodInfo * method)); DO_APP_FUNC(0x003EB2A0, void, ActivityManager_SendRequestReplyCallbackImpl, (void * ptr, Result__Enum result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF1D8, ActivityManager_SendRequestReplyCallbackImpl__MethodInfo); DO_APP_FUNC(0x003EB3D0, void, ActivityManager_SendRequestReply, (ActivityManager * __this, int64_t userId, ActivityJoinRequestReply__Enum reply, ActivityManager_SendRequestReplyHandler * callback, MethodInfo * method)); DO_APP_FUNC(0x003EB5C0, void, ActivityManager_SendInviteCallbackImpl, (void * ptr, Result__Enum result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF1C0, ActivityManager_SendInviteCallbackImpl__MethodInfo); DO_APP_FUNC(0x003EB6F0, void, ActivityManager_SendInvite, (ActivityManager * __this, int64_t userId, ActivityActionType__Enum type, String * content, ActivityManager_SendInviteHandler * callback, MethodInfo * method)); DO_APP_FUNC(0x003EB900, void, ActivityManager_AcceptInviteCallbackImpl, (void * ptr, Result__Enum result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF198, ActivityManager_AcceptInviteCallbackImpl__MethodInfo); DO_APP_FUNC(0x003EBA30, void, ActivityManager_AcceptInvite, (ActivityManager * __this, int64_t userId, ActivityManager_AcceptInviteHandler * callback, MethodInfo * method)); DO_APP_FUNC(0x003EBC30, void, ActivityManager_OnActivityJoinImpl, (void * ptr, String * secret, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF270, ActivityManager_OnActivityJoinImpl__MethodInfo); DO_APP_FUNC(0x003EBD80, void, ActivityManager_OnActivitySpectateImpl, (void * ptr, String * secret, MethodInfo * method)); -DO_APP_FUNC(0x003EBED0, void, ActivityManager_OnActivityJoinRequestImpl, (void * ptr, User user, MethodInfo * method)); -DO_APP_FUNC(0x003EC020, void, ActivityManager_OnActivityInviteImpl, (void * ptr, ActivityActionType__Enum type, User user, Activity activity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF260, ActivityManager_OnActivitySpectateImpl__MethodInfo); +DO_APP_FUNC(0x003EBED0, void, ActivityManager_OnActivityJoinRequestImpl, (void * ptr, User * user, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF268, ActivityManager_OnActivityJoinRequestImpl__MethodInfo); +DO_APP_FUNC(0x003EC020, void, ActivityManager_OnActivityInviteImpl, (void * ptr, ActivityActionType__Enum type, User * user, Activity * activity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF278, ActivityManager_OnActivityInviteImpl__MethodInfo); DO_APP_FUNC(0x003EC1A0, void, ActivityManager_FFIEvents_ActivityJoinHandler__ctor, (ActivityManager_FFIEvents_ActivityJoinHandler * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EC2D0, void, ActivityManager_FFIEvents_ActivityJoinHandler_Invoke, (ActivityManager_FFIEvents_ActivityJoinHandler * __this, void * ptr, String * secret, MethodInfo * method)); DO_APP_FUNC(0x003EC2E0, IAsyncResult *, ActivityManager_FFIEvents_ActivityJoinHandler_BeginInvoke, (ActivityManager_FFIEvents_ActivityJoinHandler * __this, void * ptr, String * secret, AsyncCallback * callback, Object * object, MethodInfo * method)); @@ -81205,13 +92351,13 @@ DO_APP_FUNC(0x003EC2D0, void, ActivityManager_FFIEvents_ActivitySpectateHandler_ DO_APP_FUNC(0x003EC370, IAsyncResult *, ActivityManager_FFIEvents_ActivitySpectateHandler_BeginInvoke, (ActivityManager_FFIEvents_ActivitySpectateHandler * __this, void * ptr, String * secret, AsyncCallback * callback, Object * object, MethodInfo * method)); DO_APP_FUNC(0x003BA270, void, ActivityManager_FFIEvents_ActivitySpectateHandler_EndInvoke, (ActivityManager_FFIEvents_ActivitySpectateHandler * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003EC1A0, void, ActivityManager_FFIEvents_ActivityJoinRequestHandler__ctor, (ActivityManager_FFIEvents_ActivityJoinRequestHandler * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EC2D0, void, ActivityManager_FFIEvents_ActivityJoinRequestHandler_Invoke, (ActivityManager_FFIEvents_ActivityJoinRequestHandler * __this, void * ptr, User user, MethodInfo * method)); -DO_APP_FUNC(0x003EC400, IAsyncResult *, ActivityManager_FFIEvents_ActivityJoinRequestHandler_BeginInvoke, (ActivityManager_FFIEvents_ActivityJoinRequestHandler * __this, void * ptr, User user, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003EC4B0, void, ActivityManager_FFIEvents_ActivityJoinRequestHandler_EndInvoke, (ActivityManager_FFIEvents_ActivityJoinRequestHandler * __this, User user, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EC2D0, void, ActivityManager_FFIEvents_ActivityJoinRequestHandler_Invoke, (ActivityManager_FFIEvents_ActivityJoinRequestHandler * __this, void * ptr, User * user, MethodInfo * method)); +DO_APP_FUNC(0x003EC400, IAsyncResult *, ActivityManager_FFIEvents_ActivityJoinRequestHandler_BeginInvoke, (ActivityManager_FFIEvents_ActivityJoinRequestHandler * __this, void * ptr, User * user, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003EC4B0, void, ActivityManager_FFIEvents_ActivityJoinRequestHandler_EndInvoke, (ActivityManager_FFIEvents_ActivityJoinRequestHandler * __this, User * user, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003EC4D0, void, ActivityManager_FFIEvents_ActivityInviteHandler__ctor, (ActivityManager_FFIEvents_ActivityInviteHandler * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EC600, void, ActivityManager_FFIEvents_ActivityInviteHandler_Invoke, (ActivityManager_FFIEvents_ActivityInviteHandler * __this, void * ptr, ActivityActionType__Enum type, User user, Activity activity, MethodInfo * method)); -DO_APP_FUNC(0x003EC620, IAsyncResult *, ActivityManager_FFIEvents_ActivityInviteHandler_BeginInvoke, (ActivityManager_FFIEvents_ActivityInviteHandler * __this, void * ptr, ActivityActionType__Enum type, User user, Activity activity, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003EC720, void, ActivityManager_FFIEvents_ActivityInviteHandler_EndInvoke, (ActivityManager_FFIEvents_ActivityInviteHandler * __this, User user, Activity activity, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EC600, void, ActivityManager_FFIEvents_ActivityInviteHandler_Invoke, (ActivityManager_FFIEvents_ActivityInviteHandler * __this, void * ptr, ActivityActionType__Enum type, User * user, Activity * activity, MethodInfo * method)); +DO_APP_FUNC(0x003EC620, IAsyncResult *, ActivityManager_FFIEvents_ActivityInviteHandler_BeginInvoke, (ActivityManager_FFIEvents_ActivityInviteHandler * __this, void * ptr, ActivityActionType__Enum type, User * user, Activity * activity, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003EC720, void, ActivityManager_FFIEvents_ActivityInviteHandler_EndInvoke, (ActivityManager_FFIEvents_ActivityInviteHandler * __this, User * user, Activity * activity, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003ED200, void, ActivityManager_FFIMethods_RegisterCommandMethod__ctor, (ActivityManager_FFIMethods_RegisterCommandMethod * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003ED330, Result__Enum, ActivityManager_FFIMethods_RegisterCommandMethod_Invoke, (ActivityManager_FFIMethods_RegisterCommandMethod * __this, void * methodsPtr, String * command, MethodInfo * method)); DO_APP_FUNC(0x003ED340, IAsyncResult *, ActivityManager_FFIMethods_RegisterCommandMethod_BeginInvoke, (ActivityManager_FFIMethods_RegisterCommandMethod * __this, void * methodsPtr, String * command, AsyncCallback * callback, Object * object, MethodInfo * method)); @@ -81225,9 +92371,9 @@ DO_APP_FUNC(0x003EC2D0, void, ActivityManager_FFIMethods_UpdateActivityCallback_ DO_APP_FUNC(0x003ED720, IAsyncResult *, ActivityManager_FFIMethods_UpdateActivityCallback_BeginInvoke, (ActivityManager_FFIMethods_UpdateActivityCallback * __this, void * ptr, Result__Enum result, AsyncCallback * callback, Object * object, MethodInfo * method)); DO_APP_FUNC(0x003BA270, void, ActivityManager_FFIMethods_UpdateActivityCallback_EndInvoke, (ActivityManager_FFIMethods_UpdateActivityCallback * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003ED7D0, void, ActivityManager_FFIMethods_UpdateActivityMethod__ctor, (ActivityManager_FFIMethods_UpdateActivityMethod * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EC600, void, ActivityManager_FFIMethods_UpdateActivityMethod_Invoke, (ActivityManager_FFIMethods_UpdateActivityMethod * __this, void * methodsPtr, Activity activity, void * callbackData, ActivityManager_FFIMethods_UpdateActivityCallback * callback, MethodInfo * method)); -DO_APP_FUNC(0x003ED900, IAsyncResult *, ActivityManager_FFIMethods_UpdateActivityMethod_BeginInvoke, (ActivityManager_FFIMethods_UpdateActivityMethod * __this, void * methodsPtr, Activity activity, void * callbackData, ActivityManager_FFIMethods_UpdateActivityCallback * callback, AsyncCallback * __callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003EC4B0, void, ActivityManager_FFIMethods_UpdateActivityMethod_EndInvoke, (ActivityManager_FFIMethods_UpdateActivityMethod * __this, Activity activity, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EC600, void, ActivityManager_FFIMethods_UpdateActivityMethod_Invoke, (ActivityManager_FFIMethods_UpdateActivityMethod * __this, void * methodsPtr, Activity * activity, void * callbackData, ActivityManager_FFIMethods_UpdateActivityCallback * callback, MethodInfo * method)); +DO_APP_FUNC(0x003ED900, IAsyncResult *, ActivityManager_FFIMethods_UpdateActivityMethod_BeginInvoke, (ActivityManager_FFIMethods_UpdateActivityMethod * __this, void * methodsPtr, Activity * activity, void * callbackData, ActivityManager_FFIMethods_UpdateActivityCallback * callback, AsyncCallback * __callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003EC4B0, void, ActivityManager_FFIMethods_UpdateActivityMethod_EndInvoke, (ActivityManager_FFIMethods_UpdateActivityMethod * __this, Activity * activity, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003ED5F0, void, ActivityManager_FFIMethods_ClearActivityCallback__ctor, (ActivityManager_FFIMethods_ClearActivityCallback * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EC2D0, void, ActivityManager_FFIMethods_ClearActivityCallback_Invoke, (ActivityManager_FFIMethods_ClearActivityCallback * __this, void * ptr, Result__Enum result, MethodInfo * method)); DO_APP_FUNC(0x003ED9D0, IAsyncResult *, ActivityManager_FFIMethods_ClearActivityCallback_BeginInvoke, (ActivityManager_FFIMethods_ClearActivityCallback * __this, void * ptr, Result__Enum result, AsyncCallback * callback, Object * object, MethodInfo * method)); @@ -81289,22 +92435,28 @@ DO_APP_FUNC(0x003EE650, void, ActivityManager_ActivitySpectateHandler_Invoke, (A DO_APP_FUNC(0x003EEA20, IAsyncResult *, ActivityManager_ActivitySpectateHandler_BeginInvoke, (ActivityManager_ActivitySpectateHandler * __this, String * secret, AsyncCallback * callback, Object * object, MethodInfo * method)); DO_APP_FUNC(0x003BA270, void, ActivityManager_ActivitySpectateHandler_EndInvoke, (ActivityManager_ActivitySpectateHandler * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003EEA50, void, ActivityManager_ActivityJoinRequestHandler__ctor, (ActivityManager_ActivityJoinRequestHandler * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EE650, void, ActivityManager_ActivityJoinRequestHandler_Invoke, (ActivityManager_ActivityJoinRequestHandler * __this, User user, MethodInfo * method)); -DO_APP_FUNC(0x003EEB90, IAsyncResult *, ActivityManager_ActivityJoinRequestHandler_BeginInvoke, (ActivityManager_ActivityJoinRequestHandler * __this, User user, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003EC4B0, void, ActivityManager_ActivityJoinRequestHandler_EndInvoke, (ActivityManager_ActivityJoinRequestHandler * __this, User user, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EE650, void, ActivityManager_ActivityJoinRequestHandler_Invoke, (ActivityManager_ActivityJoinRequestHandler * __this, User * user, MethodInfo * method)); +DO_APP_FUNC(0x003EEB90, IAsyncResult *, ActivityManager_ActivityJoinRequestHandler_BeginInvoke, (ActivityManager_ActivityJoinRequestHandler * __this, User * user, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003EC4B0, void, ActivityManager_ActivityJoinRequestHandler_EndInvoke, (ActivityManager_ActivityJoinRequestHandler * __this, User * user, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003EEC20, void, ActivityManager_ActivityInviteHandler__ctor, (ActivityManager_ActivityInviteHandler * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EDBB0, void, ActivityManager_ActivityInviteHandler_Invoke, (ActivityManager_ActivityInviteHandler * __this, ActivityActionType__Enum type, User user, Activity activity, MethodInfo * method)); -DO_APP_FUNC(0x003EED50, IAsyncResult *, ActivityManager_ActivityInviteHandler_BeginInvoke, (ActivityManager_ActivityInviteHandler * __this, ActivityActionType__Enum type, User user, Activity activity, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003EC720, void, ActivityManager_ActivityInviteHandler_EndInvoke, (ActivityManager_ActivityInviteHandler * __this, User user, Activity activity, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EDBB0, void, ActivityManager_ActivityInviteHandler_Invoke, (ActivityManager_ActivityInviteHandler * __this, ActivityActionType__Enum type, User * user, Activity * activity, MethodInfo * method)); +DO_APP_FUNC(0x003EED50, IAsyncResult *, ActivityManager_ActivityInviteHandler_BeginInvoke, (ActivityManager_ActivityInviteHandler * __this, ActivityActionType__Enum type, User * user, Activity * activity, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003EC720, void, ActivityManager_ActivityInviteHandler_EndInvoke, (ActivityManager_ActivityInviteHandler * __this, User * user, Activity * activity, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003EEE20, ImageHandle, ImageHandle_User, (int64_t id, MethodInfo * method)); DO_APP_FUNC(0x003EEE60, ImageHandle, ImageHandle_User_1, (int64_t id, uint32_t size, MethodInfo * method)); -DO_APP_FUNC(0x003EEE80, LobbyTransaction_FFIMethods, LobbyTransaction_get_Methods, (LobbyTransaction__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003EF000, void, LobbyTransaction_SetType, (LobbyTransaction__Boxed * __this, LobbyType__Enum type, MethodInfo * method)); -DO_APP_FUNC(0x003EF0E0, void, LobbyTransaction_SetOwner, (LobbyTransaction__Boxed * __this, int64_t ownerId, MethodInfo * method)); -DO_APP_FUNC(0x003EF1C0, void, LobbyTransaction_SetCapacity, (LobbyTransaction__Boxed * __this, uint32_t capacity, MethodInfo * method)); -DO_APP_FUNC(0x003EF2A0, void, LobbyTransaction_SetMetadata, (LobbyTransaction__Boxed * __this, String * key, String * value, MethodInfo * method)); -DO_APP_FUNC(0x003EF390, void, LobbyTransaction_DeleteMetadata, (LobbyTransaction__Boxed * __this, String * key, MethodInfo * method)); -DO_APP_FUNC(0x003EF470, void, LobbyTransaction_SetLocked, (LobbyTransaction__Boxed * __this, bool locked, MethodInfo * method)); +DO_APP_FUNC(0x003EEE80, LobbyTransaction_FFIMethods, LobbyTransaction_get_Methods, (LobbyTransaction * __this, MethodInfo * method)); +DO_APP_FUNC(0x003EF000, void, LobbyTransaction_SetType, (LobbyTransaction * __this, LobbyType__Enum type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05908, LobbyTransaction_SetType__MethodInfo); +DO_APP_FUNC(0x003EF0E0, void, LobbyTransaction_SetOwner, (LobbyTransaction * __this, int64_t ownerId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D058F0, LobbyTransaction_SetOwner__MethodInfo); +DO_APP_FUNC(0x003EF1C0, void, LobbyTransaction_SetCapacity, (LobbyTransaction * __this, uint32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D058D8, LobbyTransaction_SetCapacity__MethodInfo); +DO_APP_FUNC(0x003EF2A0, void, LobbyTransaction_SetMetadata, (LobbyTransaction * __this, String * key, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D058D0, LobbyTransaction_SetMetadata__MethodInfo); +DO_APP_FUNC(0x003EF390, void, LobbyTransaction_DeleteMetadata, (LobbyTransaction * __this, String * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D058C8, LobbyTransaction_DeleteMetadata__MethodInfo); +DO_APP_FUNC(0x003EF470, void, LobbyTransaction_SetLocked, (LobbyTransaction * __this, bool locked, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D058B8, LobbyTransaction_SetLocked__MethodInfo); DO_APP_FUNC(0x003ED410, void, LobbyTransaction_FFIMethods_SetTypeMethod__ctor, (LobbyTransaction_FFIMethods_SetTypeMethod * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003ED330, Result__Enum, LobbyTransaction_FFIMethods_SetTypeMethod_Invoke, (LobbyTransaction_FFIMethods_SetTypeMethod * __this, void * methodsPtr, LobbyType__Enum type, MethodInfo * method)); DO_APP_FUNC(0x003EF550, IAsyncResult *, LobbyTransaction_FFIMethods_SetTypeMethod_BeginInvoke, (LobbyTransaction_FFIMethods_SetTypeMethod * __this, void * methodsPtr, LobbyType__Enum type, AsyncCallback * callback, Object * object, MethodInfo * method)); @@ -81329,9 +92481,11 @@ DO_APP_FUNC(0x003EFB00, void, LobbyTransaction_FFIMethods_SetLockedMethod__ctor, DO_APP_FUNC(0x003ED330, Result__Enum, LobbyTransaction_FFIMethods_SetLockedMethod_Invoke, (LobbyTransaction_FFIMethods_SetLockedMethod * __this, void * methodsPtr, bool locked, MethodInfo * method)); DO_APP_FUNC(0x003EFC30, IAsyncResult *, LobbyTransaction_FFIMethods_SetLockedMethod_BeginInvoke, (LobbyTransaction_FFIMethods_SetLockedMethod * __this, void * methodsPtr, bool locked, AsyncCallback * callback, Object * object, MethodInfo * method)); DO_APP_FUNC(0x003ED3D0, Result__Enum, LobbyTransaction_FFIMethods_SetLockedMethod_EndInvoke, (LobbyTransaction_FFIMethods_SetLockedMethod * __this, IAsyncResult * result, MethodInfo * method)); -DO_APP_FUNC(0x003EFCE0, LobbyMemberTransaction_FFIMethods, LobbyMemberTransaction_get_Methods, (LobbyMemberTransaction__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003EFE50, void, LobbyMemberTransaction_SetMetadata, (LobbyMemberTransaction__Boxed * __this, String * key, String * value, MethodInfo * method)); -DO_APP_FUNC(0x003EFF40, void, LobbyMemberTransaction_DeleteMetadata, (LobbyMemberTransaction__Boxed * __this, String * key, MethodInfo * method)); +DO_APP_FUNC(0x003EFCE0, LobbyMemberTransaction_FFIMethods, LobbyMemberTransaction_get_Methods, (LobbyMemberTransaction * __this, MethodInfo * method)); +DO_APP_FUNC(0x003EFE50, void, LobbyMemberTransaction_SetMetadata, (LobbyMemberTransaction * __this, String * key, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05788, LobbyMemberTransaction_SetMetadata__MethodInfo); +DO_APP_FUNC(0x003EFF40, void, LobbyMemberTransaction_DeleteMetadata, (LobbyMemberTransaction * __this, String * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05768, LobbyMemberTransaction_DeleteMetadata__MethodInfo); DO_APP_FUNC(0x003EF890, void, LobbyMemberTransaction_FFIMethods_SetMetadataMethod__ctor, (LobbyMemberTransaction_FFIMethods_SetMetadataMethod * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EF9C0, Result__Enum, LobbyMemberTransaction_FFIMethods_SetMetadataMethod_Invoke, (LobbyMemberTransaction_FFIMethods_SetMetadataMethod * __this, void * methodsPtr, String * key, String * value, MethodInfo * method)); DO_APP_FUNC(0x003F0010, IAsyncResult *, LobbyMemberTransaction_FFIMethods_SetMetadataMethod_BeginInvoke, (LobbyMemberTransaction_FFIMethods_SetMetadataMethod * __this, void * methodsPtr, String * key, String * value, AsyncCallback * callback, Object * object, MethodInfo * method)); @@ -81340,11 +92494,15 @@ DO_APP_FUNC(0x003ED200, void, LobbyMemberTransaction_FFIMethods_DeleteMetadataMe DO_APP_FUNC(0x003ED330, Result__Enum, LobbyMemberTransaction_FFIMethods_DeleteMetadataMethod_Invoke, (LobbyMemberTransaction_FFIMethods_DeleteMetadataMethod * __this, void * methodsPtr, String * key, MethodInfo * method)); DO_APP_FUNC(0x003F00A0, IAsyncResult *, LobbyMemberTransaction_FFIMethods_DeleteMetadataMethod_BeginInvoke, (LobbyMemberTransaction_FFIMethods_DeleteMetadataMethod * __this, void * methodsPtr, String * key, AsyncCallback * callback, Object * object, MethodInfo * method)); DO_APP_FUNC(0x003ED3D0, Result__Enum, LobbyMemberTransaction_FFIMethods_DeleteMetadataMethod_EndInvoke, (LobbyMemberTransaction_FFIMethods_DeleteMetadataMethod * __this, IAsyncResult * result, MethodInfo * method)); -DO_APP_FUNC(0x003F0130, LobbySearchQuery_FFIMethods, LobbySearchQuery_get_Methods, (LobbySearchQuery__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003F02A0, void, LobbySearchQuery_Filter, (LobbySearchQuery__Boxed * __this, String * key, LobbySearchComparison__Enum comparison, LobbySearchCast__Enum cast, String * value, MethodInfo * method)); -DO_APP_FUNC(0x003F03B0, void, LobbySearchQuery_Sort, (LobbySearchQuery__Boxed * __this, String * key, LobbySearchCast__Enum cast, String * value, MethodInfo * method)); -DO_APP_FUNC(0x003F04B0, void, LobbySearchQuery_Limit, (LobbySearchQuery__Boxed * __this, uint32_t limit, MethodInfo * method)); -DO_APP_FUNC(0x003F0580, void, LobbySearchQuery_Distance, (LobbySearchQuery__Boxed * __this, LobbySearchDistance__Enum distance, MethodInfo * method)); +DO_APP_FUNC(0x003F0130, LobbySearchQuery_FFIMethods, LobbySearchQuery_get_Methods, (LobbySearchQuery * __this, MethodInfo * method)); +DO_APP_FUNC(0x003F02A0, void, LobbySearchQuery_Filter, (LobbySearchQuery * __this, String * key, LobbySearchComparison__Enum comparison, LobbySearchCast__Enum cast, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05700, LobbySearchQuery_Filter__MethodInfo); +DO_APP_FUNC(0x003F03B0, void, LobbySearchQuery_Sort, (LobbySearchQuery * __this, String * key, LobbySearchCast__Enum cast, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D056F8, LobbySearchQuery_Sort__MethodInfo); +DO_APP_FUNC(0x003F04B0, void, LobbySearchQuery_Limit, (LobbySearchQuery * __this, uint32_t limit, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D056F0, LobbySearchQuery_Limit__MethodInfo); +DO_APP_FUNC(0x003F0580, void, LobbySearchQuery_Distance, (LobbySearchQuery * __this, LobbySearchDistance__Enum distance, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D056E8, LobbySearchQuery_Distance__MethodInfo); DO_APP_FUNC(0x003F0650, void, LobbySearchQuery_FFIMethods_FilterMethod__ctor, (LobbySearchQuery_FFIMethods_FilterMethod * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003F0780, Result__Enum, LobbySearchQuery_FFIMethods_FilterMethod_Invoke, (LobbySearchQuery_FFIMethods_FilterMethod * __this, void * methodsPtr, String * key, LobbySearchComparison__Enum comparison, LobbySearchCast__Enum cast, String * value, MethodInfo * method)); DO_APP_FUNC(0x003F07A0, IAsyncResult *, LobbySearchQuery_FFIMethods_FilterMethod_BeginInvoke, (LobbySearchQuery_FFIMethods_FilterMethod * __this, void * methodsPtr, String * key, LobbySearchComparison__Enum comparison, LobbySearchCast__Enum cast, String * value, AsyncCallback * callback, Object * object, MethodInfo * method)); @@ -81362,13 +92520,16 @@ DO_APP_FUNC(0x003ED330, Result__Enum, LobbySearchQuery_FFIMethods_DistanceMethod DO_APP_FUNC(0x003F0B50, IAsyncResult *, LobbySearchQuery_FFIMethods_DistanceMethod_BeginInvoke, (LobbySearchQuery_FFIMethods_DistanceMethod * __this, void * methodsPtr, LobbySearchDistance__Enum distance, AsyncCallback * callback, Object * object, MethodInfo * method)); DO_APP_FUNC(0x003ED3D0, Result__Enum, LobbySearchQuery_FFIMethods_DistanceMethod_EndInvoke, (LobbySearchQuery_FFIMethods_DistanceMethod * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003F0C00, void, ResultException__ctor, (ResultException * __this, Result__Enum result, MethodInfo * method)); -DO_APP_FUNC(0x003F0CA0, Result__Enum, Discord_DiscordCreate, (uint32_t version, Discord_FFICreateParams createParams, void * manager, MethodInfo * method)); +DO_APP_FUNC(0x003F0CA0, Result__Enum, Discord_DiscordCreate, (uint32_t version, Discord_FFICreateParams * createParams, void * * manager, MethodInfo * method)); DO_APP_FUNC(0x003F0D40, Discord_FFIMethods, Discord_get_Methods, (Discord * __this, MethodInfo * method)); DO_APP_FUNC(0x003F0F00, void, Discord__ctor, (Discord * __this, int64_t clientId, uint64_t flags, MethodInfo * method)); -DO_APP_FUNC(0x003F1C60, void, Discord_InitEvents, (Discord * __this, void * eventsPtr, Discord_FFIEvents events, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05630, Discord__ctor__MethodInfo); +DO_APP_FUNC(0x003F1C60, void, Discord_InitEvents, (Discord * __this, void * eventsPtr, Discord_FFIEvents * events, MethodInfo * method)); DO_APP_FUNC(0x003F1D40, void, Discord_Dispose, (Discord * __this, MethodInfo * method)); DO_APP_FUNC(0x003F1EF0, void, Discord_RunCallbacks, (Discord * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05610, Discord_RunCallbacks__MethodInfo); DO_APP_FUNC(0x003F1FA0, void, Discord_SetLogHookCallbackImpl, (void * ptr, LogLevel__Enum_2 level, String * message, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05600, Discord_SetLogHookCallbackImpl__MethodInfo); DO_APP_FUNC(0x003F20D0, void, Discord_SetLogHook, (Discord * __this, LogLevel__Enum_2 minLevel, Discord_SetLogHookHandler * callback, MethodInfo * method)); DO_APP_FUNC(0x003F2350, ApplicationManager *, Discord_GetApplicationManager, (Discord * __this, MethodInfo * method)); DO_APP_FUNC(0x003F2620, UserManager *, Discord_GetUserManager, (Discord * __this, MethodInfo * method)); @@ -81452,15 +92613,19 @@ DO_APP_FUNC(0x003F4FE0, IAsyncResult *, Discord_SetLogHookHandler_BeginInvoke, ( DO_APP_FUNC(0x003BA270, void, Discord_SetLogHookHandler_EndInvoke, (Discord_SetLogHookHandler * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, MonoPInvokeCallbackAttribute_4__ctor, (MonoPInvokeCallbackAttribute_4 * __this, MethodInfo * method)); DO_APP_FUNC(0x003F5070, ApplicationManager_FFIMethods, ApplicationManager_get_Methods, (ApplicationManager * __this, MethodInfo * method)); -DO_APP_FUNC(0x003F51F0, void, ApplicationManager__ctor, (ApplicationManager * __this, void * ptr, void * eventsPtr, ApplicationManager_FFIEvents events, MethodInfo * method)); -DO_APP_FUNC(0x003F53C0, void, ApplicationManager_InitEvents, (ApplicationManager * __this, void * eventsPtr, ApplicationManager_FFIEvents events, MethodInfo * method)); +DO_APP_FUNC(0x003F51F0, void, ApplicationManager__ctor, (ApplicationManager * __this, void * ptr, void * eventsPtr, ApplicationManager_FFIEvents * events, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D054F8, ApplicationManager__ctor__MethodInfo); +DO_APP_FUNC(0x003F53C0, void, ApplicationManager_InitEvents, (ApplicationManager * __this, void * eventsPtr, ApplicationManager_FFIEvents * events, MethodInfo * method)); DO_APP_FUNC(0x003F54A0, void, ApplicationManager_ValidateOrExitCallbackImpl, (void * ptr, Result__Enum result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D054E0, ApplicationManager_ValidateOrExitCallbackImpl__MethodInfo); DO_APP_FUNC(0x003F55D0, void, ApplicationManager_ValidateOrExit, (ApplicationManager * __this, ApplicationManager_ValidateOrExitHandler * callback, MethodInfo * method)); DO_APP_FUNC(0x003F57B0, String *, ApplicationManager_GetCurrentLocale, (ApplicationManager * __this, MethodInfo * method)); DO_APP_FUNC(0x003F58B0, String *, ApplicationManager_GetCurrentBranch, (ApplicationManager * __this, MethodInfo * method)); -DO_APP_FUNC(0x003F59B0, void, ApplicationManager_GetOAuth2TokenCallbackImpl, (void * ptr, Result__Enum result, OAuth2Token oauth2Token, MethodInfo * method)); +DO_APP_FUNC(0x003F59B0, void, ApplicationManager_GetOAuth2TokenCallbackImpl, (void * ptr, Result__Enum result, OAuth2Token * oauth2Token, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D054C0, ApplicationManager_GetOAuth2TokenCallbackImpl__MethodInfo); DO_APP_FUNC(0x003F5AF0, void, ApplicationManager_GetOAuth2Token, (ApplicationManager * __this, ApplicationManager_GetOAuth2TokenHandler * callback, MethodInfo * method)); -DO_APP_FUNC(0x003F5CD0, void, ApplicationManager_GetTicketCallbackImpl, (void * ptr, Result__Enum result, String * data, MethodInfo * method)); +DO_APP_FUNC(0x003F5CD0, void, ApplicationManager_GetTicketCallbackImpl, (void * ptr, Result__Enum result, String * * data, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D054A8, ApplicationManager_GetTicketCallbackImpl__MethodInfo); DO_APP_FUNC(0x003F5E10, void, ApplicationManager_GetTicket, (ApplicationManager * __this, ApplicationManager_GetTicketHandler * callback, MethodInfo * method)); DO_APP_FUNC(0x003ED5F0, void, ApplicationManager_FFIMethods_ValidateOrExitCallback__ctor, (ApplicationManager_FFIMethods_ValidateOrExitCallback * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EC2D0, void, ApplicationManager_FFIMethods_ValidateOrExitCallback_Invoke, (ApplicationManager_FFIMethods_ValidateOrExitCallback * __this, void * ptr, Result__Enum result, MethodInfo * method)); @@ -81479,17 +92644,17 @@ DO_APP_FUNC(0x003EC2D0, void, ApplicationManager_FFIMethods_GetCurrentBranchMeth DO_APP_FUNC(0x003F61D0, IAsyncResult *, ApplicationManager_FFIMethods_GetCurrentBranchMethod_BeginInvoke, (ApplicationManager_FFIMethods_GetCurrentBranchMethod * __this, void * methodsPtr, StringBuilder * branch, AsyncCallback * callback, Object * object, MethodInfo * method)); DO_APP_FUNC(0x003BA270, void, ApplicationManager_FFIMethods_GetCurrentBranchMethod_EndInvoke, (ApplicationManager_FFIMethods_GetCurrentBranchMethod * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003F4360, void, ApplicationManager_FFIMethods_GetOAuth2TokenCallback__ctor, (ApplicationManager_FFIMethods_GetOAuth2TokenCallback * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EDBB0, void, ApplicationManager_FFIMethods_GetOAuth2TokenCallback_Invoke, (ApplicationManager_FFIMethods_GetOAuth2TokenCallback * __this, void * ptr, Result__Enum result, OAuth2Token oauth2Token, MethodInfo * method)); -DO_APP_FUNC(0x003F6260, IAsyncResult *, ApplicationManager_FFIMethods_GetOAuth2TokenCallback_BeginInvoke, (ApplicationManager_FFIMethods_GetOAuth2TokenCallback * __this, void * ptr, Result__Enum result, OAuth2Token oauth2Token, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003EC4B0, void, ApplicationManager_FFIMethods_GetOAuth2TokenCallback_EndInvoke, (ApplicationManager_FFIMethods_GetOAuth2TokenCallback * __this, OAuth2Token oauth2Token, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EDBB0, void, ApplicationManager_FFIMethods_GetOAuth2TokenCallback_Invoke, (ApplicationManager_FFIMethods_GetOAuth2TokenCallback * __this, void * ptr, Result__Enum result, OAuth2Token * oauth2Token, MethodInfo * method)); +DO_APP_FUNC(0x003F6260, IAsyncResult *, ApplicationManager_FFIMethods_GetOAuth2TokenCallback_BeginInvoke, (ApplicationManager_FFIMethods_GetOAuth2TokenCallback * __this, void * ptr, Result__Enum result, OAuth2Token * oauth2Token, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003EC4B0, void, ApplicationManager_FFIMethods_GetOAuth2TokenCallback_EndInvoke, (ApplicationManager_FFIMethods_GetOAuth2TokenCallback * __this, OAuth2Token * oauth2Token, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003EDA80, void, ApplicationManager_FFIMethods_GetOAuth2TokenMethod__ctor, (ApplicationManager_FFIMethods_GetOAuth2TokenMethod * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EDBB0, void, ApplicationManager_FFIMethods_GetOAuth2TokenMethod_Invoke, (ApplicationManager_FFIMethods_GetOAuth2TokenMethod * __this, void * methodsPtr, void * callbackData, ApplicationManager_FFIMethods_GetOAuth2TokenCallback * callback, MethodInfo * method)); DO_APP_FUNC(0x003F6330, IAsyncResult *, ApplicationManager_FFIMethods_GetOAuth2TokenMethod_BeginInvoke, (ApplicationManager_FFIMethods_GetOAuth2TokenMethod * __this, void * methodsPtr, void * callbackData, ApplicationManager_FFIMethods_GetOAuth2TokenCallback * callback, AsyncCallback * __callback, Object * object, MethodInfo * method)); DO_APP_FUNC(0x003BA270, void, ApplicationManager_FFIMethods_GetOAuth2TokenMethod_EndInvoke, (ApplicationManager_FFIMethods_GetOAuth2TokenMethod * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003F4360, void, ApplicationManager_FFIMethods_GetTicketCallback__ctor, (ApplicationManager_FFIMethods_GetTicketCallback * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EDBB0, void, ApplicationManager_FFIMethods_GetTicketCallback_Invoke, (ApplicationManager_FFIMethods_GetTicketCallback * __this, void * ptr, Result__Enum result, String * data, MethodInfo * method)); -DO_APP_FUNC(0x003F63D0, IAsyncResult *, ApplicationManager_FFIMethods_GetTicketCallback_BeginInvoke, (ApplicationManager_FFIMethods_GetTicketCallback * __this, void * ptr, Result__Enum result, String * data, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003EC4B0, void, ApplicationManager_FFIMethods_GetTicketCallback_EndInvoke, (ApplicationManager_FFIMethods_GetTicketCallback * __this, String * data, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EDBB0, void, ApplicationManager_FFIMethods_GetTicketCallback_Invoke, (ApplicationManager_FFIMethods_GetTicketCallback * __this, void * ptr, Result__Enum result, String * * data, MethodInfo * method)); +DO_APP_FUNC(0x003F63D0, IAsyncResult *, ApplicationManager_FFIMethods_GetTicketCallback_BeginInvoke, (ApplicationManager_FFIMethods_GetTicketCallback * __this, void * ptr, Result__Enum result, String * * data, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003EC4B0, void, ApplicationManager_FFIMethods_GetTicketCallback_EndInvoke, (ApplicationManager_FFIMethods_GetTicketCallback * __this, String * * data, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003EDA80, void, ApplicationManager_FFIMethods_GetTicketMethod__ctor, (ApplicationManager_FFIMethods_GetTicketMethod * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EDBB0, void, ApplicationManager_FFIMethods_GetTicketMethod_Invoke, (ApplicationManager_FFIMethods_GetTicketMethod * __this, void * methodsPtr, void * callbackData, ApplicationManager_FFIMethods_GetTicketCallback * callback, MethodInfo * method)); DO_APP_FUNC(0x003F6480, IAsyncResult *, ApplicationManager_FFIMethods_GetTicketMethod_BeginInvoke, (ApplicationManager_FFIMethods_GetTicketMethod * __this, void * methodsPtr, void * callbackData, ApplicationManager_FFIMethods_GetTicketCallback * callback, AsyncCallback * __callback, Object * object, MethodInfo * method)); @@ -81499,63 +92664,73 @@ DO_APP_FUNC(0x003EE650, void, ApplicationManager_ValidateOrExitHandler_Invoke, ( DO_APP_FUNC(0x003F6520, IAsyncResult *, ApplicationManager_ValidateOrExitHandler_BeginInvoke, (ApplicationManager_ValidateOrExitHandler * __this, Result__Enum result, AsyncCallback * callback, Object * object, MethodInfo * method)); DO_APP_FUNC(0x003BA270, void, ApplicationManager_ValidateOrExitHandler_EndInvoke, (ApplicationManager_ValidateOrExitHandler * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003F4EB0, void, ApplicationManager_GetOAuth2TokenHandler__ctor, (ApplicationManager_GetOAuth2TokenHandler * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EC2D0, void, ApplicationManager_GetOAuth2TokenHandler_Invoke, (ApplicationManager_GetOAuth2TokenHandler * __this, Result__Enum result, OAuth2Token oauth2Token, MethodInfo * method)); -DO_APP_FUNC(0x003F65A0, IAsyncResult *, ApplicationManager_GetOAuth2TokenHandler_BeginInvoke, (ApplicationManager_GetOAuth2TokenHandler * __this, Result__Enum result, OAuth2Token oauth2Token, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003EC4B0, void, ApplicationManager_GetOAuth2TokenHandler_EndInvoke, (ApplicationManager_GetOAuth2TokenHandler * __this, OAuth2Token oauth2Token, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EC2D0, void, ApplicationManager_GetOAuth2TokenHandler_Invoke, (ApplicationManager_GetOAuth2TokenHandler * __this, Result__Enum result, OAuth2Token * oauth2Token, MethodInfo * method)); +DO_APP_FUNC(0x003F65A0, IAsyncResult *, ApplicationManager_GetOAuth2TokenHandler_BeginInvoke, (ApplicationManager_GetOAuth2TokenHandler * __this, Result__Enum result, OAuth2Token * oauth2Token, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003EC4B0, void, ApplicationManager_GetOAuth2TokenHandler_EndInvoke, (ApplicationManager_GetOAuth2TokenHandler * __this, OAuth2Token * oauth2Token, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003F4EB0, void, ApplicationManager_GetTicketHandler__ctor, (ApplicationManager_GetTicketHandler * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EC2D0, void, ApplicationManager_GetTicketHandler_Invoke, (ApplicationManager_GetTicketHandler * __this, Result__Enum result, String * data, MethodInfo * method)); -DO_APP_FUNC(0x003F6650, IAsyncResult *, ApplicationManager_GetTicketHandler_BeginInvoke, (ApplicationManager_GetTicketHandler * __this, Result__Enum result, String * data, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003EC4B0, void, ApplicationManager_GetTicketHandler_EndInvoke, (ApplicationManager_GetTicketHandler * __this, String * data, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EC2D0, void, ApplicationManager_GetTicketHandler_Invoke, (ApplicationManager_GetTicketHandler * __this, Result__Enum result, String * * data, MethodInfo * method)); +DO_APP_FUNC(0x003F6650, IAsyncResult *, ApplicationManager_GetTicketHandler_BeginInvoke, (ApplicationManager_GetTicketHandler * __this, Result__Enum result, String * * data, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003EC4B0, void, ApplicationManager_GetTicketHandler_EndInvoke, (ApplicationManager_GetTicketHandler * __this, String * * data, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003F66E0, UserManager_FFIMethods, UserManager_get_Methods, (UserManager * __this, MethodInfo * method)); DO_APP_FUNC(0x003F6850, void, UserManager_add_OnCurrentUserUpdate, (UserManager * __this, UserManager_CurrentUserUpdateHandler * value, MethodInfo * method)); DO_APP_FUNC(0x003F6940, void, UserManager_remove_OnCurrentUserUpdate, (UserManager * __this, UserManager_CurrentUserUpdateHandler * value, MethodInfo * method)); -DO_APP_FUNC(0x003F6A30, void, UserManager__ctor, (UserManager * __this, void * ptr, void * eventsPtr, UserManager_FFIEvents events, MethodInfo * method)); -DO_APP_FUNC(0x003F6B60, void, UserManager_InitEvents, (UserManager * __this, void * eventsPtr, UserManager_FFIEvents events, MethodInfo * method)); +DO_APP_FUNC(0x003F6A30, void, UserManager__ctor, (UserManager * __this, void * ptr, void * eventsPtr, UserManager_FFIEvents * events, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05450, UserManager__ctor__MethodInfo); +DO_APP_FUNC(0x003F6B60, void, UserManager_InitEvents, (UserManager * __this, void * eventsPtr, UserManager_FFIEvents * events, MethodInfo * method)); DO_APP_FUNC(0x003F6DF0, User, UserManager_GetCurrentUser, (UserManager * __this, MethodInfo * method)); -DO_APP_FUNC(0x003F6EA0, void, UserManager_GetUserCallbackImpl, (void * ptr, Result__Enum result, User user, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05430, UserManager_GetCurrentUser__MethodInfo); +DO_APP_FUNC(0x003F6EA0, void, UserManager_GetUserCallbackImpl, (void * ptr, Result__Enum result, User * user, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05418, UserManager_GetUserCallbackImpl__MethodInfo); DO_APP_FUNC(0x003F6FE0, void, UserManager_GetUser, (UserManager * __this, int64_t userId, UserManager_GetUserHandler * callback, MethodInfo * method)); DO_APP_FUNC(0x003F71D0, PremiumType__Enum, UserManager_GetCurrentUserPremiumType, (UserManager * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05410, UserManager_GetCurrentUserPremiumType__MethodInfo); DO_APP_FUNC(0x003F7280, bool, UserManager_CurrentUserHasFlag, (UserManager * __this, UserFlag__Enum flag, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05408, UserManager_CurrentUserHasFlag__MethodInfo); DO_APP_FUNC(0x003F7340, void, UserManager_OnCurrentUserUpdateImpl, (void * ptr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05438, UserManager_OnCurrentUserUpdateImpl__MethodInfo); DO_APP_FUNC(0x003F3FF0, void, UserManager_FFIEvents_CurrentUserUpdateHandler__ctor, (UserManager_FFIEvents_CurrentUserUpdateHandler * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EE650, void, UserManager_FFIEvents_CurrentUserUpdateHandler_Invoke, (UserManager_FFIEvents_CurrentUserUpdateHandler * __this, void * ptr, MethodInfo * method)); DO_APP_FUNC(0x003F7480, IAsyncResult *, UserManager_FFIEvents_CurrentUserUpdateHandler_BeginInvoke, (UserManager_FFIEvents_CurrentUserUpdateHandler * __this, void * ptr, AsyncCallback * callback, Object * object, MethodInfo * method)); DO_APP_FUNC(0x003BA270, void, UserManager_FFIEvents_CurrentUserUpdateHandler_EndInvoke, (UserManager_FFIEvents_CurrentUserUpdateHandler * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003ED200, void, UserManager_FFIMethods_GetCurrentUserMethod__ctor, (UserManager_FFIMethods_GetCurrentUserMethod * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003ED330, Result__Enum, UserManager_FFIMethods_GetCurrentUserMethod_Invoke, (UserManager_FFIMethods_GetCurrentUserMethod * __this, void * methodsPtr, User currentUser, MethodInfo * method)); -DO_APP_FUNC(0x003F7500, IAsyncResult *, UserManager_FFIMethods_GetCurrentUserMethod_BeginInvoke, (UserManager_FFIMethods_GetCurrentUserMethod * __this, void * methodsPtr, User currentUser, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003F75B0, Result__Enum, UserManager_FFIMethods_GetCurrentUserMethod_EndInvoke, (UserManager_FFIMethods_GetCurrentUserMethod * __this, User currentUser, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003ED330, Result__Enum, UserManager_FFIMethods_GetCurrentUserMethod_Invoke, (UserManager_FFIMethods_GetCurrentUserMethod * __this, void * methodsPtr, User * currentUser, MethodInfo * method)); +DO_APP_FUNC(0x003F7500, IAsyncResult *, UserManager_FFIMethods_GetCurrentUserMethod_BeginInvoke, (UserManager_FFIMethods_GetCurrentUserMethod * __this, void * methodsPtr, User * currentUser, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003F75B0, Result__Enum, UserManager_FFIMethods_GetCurrentUserMethod_EndInvoke, (UserManager_FFIMethods_GetCurrentUserMethod * __this, User * currentUser, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003F4360, void, UserManager_FFIMethods_GetUserCallback__ctor, (UserManager_FFIMethods_GetUserCallback * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EDBB0, void, UserManager_FFIMethods_GetUserCallback_Invoke, (UserManager_FFIMethods_GetUserCallback * __this, void * ptr, Result__Enum result, User user, MethodInfo * method)); -DO_APP_FUNC(0x003F75E0, IAsyncResult *, UserManager_FFIMethods_GetUserCallback_BeginInvoke, (UserManager_FFIMethods_GetUserCallback * __this, void * ptr, Result__Enum result, User user, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003EC4B0, void, UserManager_FFIMethods_GetUserCallback_EndInvoke, (UserManager_FFIMethods_GetUserCallback * __this, User user, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EDBB0, void, UserManager_FFIMethods_GetUserCallback_Invoke, (UserManager_FFIMethods_GetUserCallback * __this, void * ptr, Result__Enum result, User * user, MethodInfo * method)); +DO_APP_FUNC(0x003F75E0, IAsyncResult *, UserManager_FFIMethods_GetUserCallback_BeginInvoke, (UserManager_FFIMethods_GetUserCallback * __this, void * ptr, Result__Enum result, User * user, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003EC4B0, void, UserManager_FFIMethods_GetUserCallback_EndInvoke, (UserManager_FFIMethods_GetUserCallback * __this, User * user, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003EE320, void, UserManager_FFIMethods_GetUserMethod__ctor, (UserManager_FFIMethods_GetUserMethod * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EC600, void, UserManager_FFIMethods_GetUserMethod_Invoke, (UserManager_FFIMethods_GetUserMethod * __this, void * methodsPtr, int64_t userId, void * callbackData, UserManager_FFIMethods_GetUserCallback * callback, MethodInfo * method)); DO_APP_FUNC(0x003F76B0, IAsyncResult *, UserManager_FFIMethods_GetUserMethod_BeginInvoke, (UserManager_FFIMethods_GetUserMethod * __this, void * methodsPtr, int64_t userId, void * callbackData, UserManager_FFIMethods_GetUserCallback * callback, AsyncCallback * __callback, Object * object, MethodInfo * method)); DO_APP_FUNC(0x003BA270, void, UserManager_FFIMethods_GetUserMethod_EndInvoke, (UserManager_FFIMethods_GetUserMethod * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003ED200, void, UserManager_FFIMethods_GetCurrentUserPremiumTypeMethod__ctor, (UserManager_FFIMethods_GetCurrentUserPremiumTypeMethod * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003ED330, Result__Enum, UserManager_FFIMethods_GetCurrentUserPremiumTypeMethod_Invoke, (UserManager_FFIMethods_GetCurrentUserPremiumTypeMethod * __this, void * methodsPtr, PremiumType__Enum premiumType, MethodInfo * method)); -DO_APP_FUNC(0x003F7780, IAsyncResult *, UserManager_FFIMethods_GetCurrentUserPremiumTypeMethod_BeginInvoke, (UserManager_FFIMethods_GetCurrentUserPremiumTypeMethod * __this, void * methodsPtr, PremiumType__Enum premiumType, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003F75B0, Result__Enum, UserManager_FFIMethods_GetCurrentUserPremiumTypeMethod_EndInvoke, (UserManager_FFIMethods_GetCurrentUserPremiumTypeMethod * __this, PremiumType__Enum premiumType, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003ED330, Result__Enum, UserManager_FFIMethods_GetCurrentUserPremiumTypeMethod_Invoke, (UserManager_FFIMethods_GetCurrentUserPremiumTypeMethod * __this, void * methodsPtr, PremiumType__Enum * premiumType, MethodInfo * method)); +DO_APP_FUNC(0x003F7780, IAsyncResult *, UserManager_FFIMethods_GetCurrentUserPremiumTypeMethod_BeginInvoke, (UserManager_FFIMethods_GetCurrentUserPremiumTypeMethod * __this, void * methodsPtr, PremiumType__Enum * premiumType, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003F75B0, Result__Enum, UserManager_FFIMethods_GetCurrentUserPremiumTypeMethod_EndInvoke, (UserManager_FFIMethods_GetCurrentUserPremiumTypeMethod * __this, PremiumType__Enum * premiumType, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003F7830, void, UserManager_FFIMethods_CurrentUserHasFlagMethod__ctor, (UserManager_FFIMethods_CurrentUserHasFlagMethod * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EF9C0, Result__Enum, UserManager_FFIMethods_CurrentUserHasFlagMethod_Invoke, (UserManager_FFIMethods_CurrentUserHasFlagMethod * __this, void * methodsPtr, UserFlag__Enum flag, bool hasFlag, MethodInfo * method)); -DO_APP_FUNC(0x003F7960, IAsyncResult *, UserManager_FFIMethods_CurrentUserHasFlagMethod_BeginInvoke, (UserManager_FFIMethods_CurrentUserHasFlagMethod * __this, void * methodsPtr, UserFlag__Enum flag, bool hasFlag, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003F75B0, Result__Enum, UserManager_FFIMethods_CurrentUserHasFlagMethod_EndInvoke, (UserManager_FFIMethods_CurrentUserHasFlagMethod * __this, bool hasFlag, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EF9C0, Result__Enum, UserManager_FFIMethods_CurrentUserHasFlagMethod_Invoke, (UserManager_FFIMethods_CurrentUserHasFlagMethod * __this, void * methodsPtr, UserFlag__Enum flag, bool * hasFlag, MethodInfo * method)); +DO_APP_FUNC(0x003F7960, IAsyncResult *, UserManager_FFIMethods_CurrentUserHasFlagMethod_BeginInvoke, (UserManager_FFIMethods_CurrentUserHasFlagMethod * __this, void * methodsPtr, UserFlag__Enum flag, bool * hasFlag, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003F75B0, Result__Enum, UserManager_FFIMethods_CurrentUserHasFlagMethod_EndInvoke, (UserManager_FFIMethods_CurrentUserHasFlagMethod * __this, bool * hasFlag, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003F4EB0, void, UserManager_GetUserHandler__ctor, (UserManager_GetUserHandler * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EC2D0, void, UserManager_GetUserHandler_Invoke, (UserManager_GetUserHandler * __this, Result__Enum result, User user, MethodInfo * method)); -DO_APP_FUNC(0x003F7A30, IAsyncResult *, UserManager_GetUserHandler_BeginInvoke, (UserManager_GetUserHandler * __this, Result__Enum result, User user, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003EC4B0, void, UserManager_GetUserHandler_EndInvoke, (UserManager_GetUserHandler * __this, User user, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EC2D0, void, UserManager_GetUserHandler_Invoke, (UserManager_GetUserHandler * __this, Result__Enum result, User * user, MethodInfo * method)); +DO_APP_FUNC(0x003F7A30, IAsyncResult *, UserManager_GetUserHandler_BeginInvoke, (UserManager_GetUserHandler * __this, Result__Enum result, User * user, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003EC4B0, void, UserManager_GetUserHandler_EndInvoke, (UserManager_GetUserHandler * __this, User * user, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003F7AE0, void, UserManager_CurrentUserUpdateHandler__ctor, (UserManager_CurrentUserUpdateHandler * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003CB0B0, void, UserManager_CurrentUserUpdateHandler_Invoke, (UserManager_CurrentUserUpdateHandler * __this, MethodInfo * method)); DO_APP_FUNC(0x003F7C10, IAsyncResult *, UserManager_CurrentUserUpdateHandler_BeginInvoke, (UserManager_CurrentUserUpdateHandler * __this, AsyncCallback * callback, Object * object, MethodInfo * method)); DO_APP_FUNC(0x003BA270, void, UserManager_CurrentUserUpdateHandler_EndInvoke, (UserManager_CurrentUserUpdateHandler * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003F7C40, ImageManager_FFIMethods, ImageManager_get_Methods, (ImageManager * __this, MethodInfo * method)); -DO_APP_FUNC(0x003F7DB0, void, ImageManager__ctor, (ImageManager * __this, void * ptr, void * eventsPtr, ImageManager_FFIEvents events, MethodInfo * method)); -DO_APP_FUNC(0x003F7F80, void, ImageManager_InitEvents, (ImageManager * __this, void * eventsPtr, ImageManager_FFIEvents events, MethodInfo * method)); +DO_APP_FUNC(0x003F7DB0, void, ImageManager__ctor, (ImageManager * __this, void * ptr, void * eventsPtr, ImageManager_FFIEvents * events, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D053C0, ImageManager__ctor__MethodInfo); +DO_APP_FUNC(0x003F7F80, void, ImageManager_InitEvents, (ImageManager * __this, void * eventsPtr, ImageManager_FFIEvents * events, MethodInfo * method)); DO_APP_FUNC(0x003F8060, void, ImageManager_FetchCallbackImpl, (void * ptr, Result__Enum result, ImageHandle handleResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D053A0, ImageManager_FetchCallbackImpl__MethodInfo); DO_APP_FUNC(0x003F81C0, void, ImageManager_Fetch, (ImageManager * __this, ImageHandle handle, bool refresh, ImageManager_FetchHandler * callback, MethodInfo * method)); DO_APP_FUNC(0x003F83E0, ImageDimensions, ImageManager_GetDimensions, (ImageManager * __this, ImageHandle handle, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05398, ImageManager_GetDimensions__MethodInfo); DO_APP_FUNC(0x003F84C0, void, ImageManager_GetData, (ImageManager * __this, ImageHandle handle, Byte__Array * data, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05390, ImageManager_GetData__MethodInfo); DO_APP_FUNC(0x003F85B0, void, ImageManager_Fetch_1, (ImageManager * __this, ImageHandle handle, ImageManager_FetchHandler * callback, MethodInfo * method)); DO_APP_FUNC(0x003F85F0, Byte__Array *, ImageManager_GetData_1, (ImageManager * __this, ImageHandle handle, MethodInfo * method)); DO_APP_FUNC(0x003F8740, Texture2D *, ImageManager_GetTexture, (ImageManager * __this, ImageHandle handle, MethodInfo * method)); @@ -81568,9 +92743,9 @@ DO_APP_FUNC(0x003F8CC0, void, ImageManager_FFIMethods_FetchMethod_Invoke, (Image DO_APP_FUNC(0x003F8D20, IAsyncResult *, ImageManager_FFIMethods_FetchMethod_BeginInvoke, (ImageManager_FFIMethods_FetchMethod * __this, void * methodsPtr, ImageHandle handle, bool refresh, void * callbackData, ImageManager_FFIMethods_FetchCallback * callback, AsyncCallback * __callback, Object * object, MethodInfo * method)); DO_APP_FUNC(0x003BA270, void, ImageManager_FFIMethods_FetchMethod_EndInvoke, (ImageManager_FFIMethods_FetchMethod * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003F8E20, void, ImageManager_FFIMethods_GetDimensionsMethod__ctor, (ImageManager_FFIMethods_GetDimensionsMethod * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003F8F50, Result__Enum, ImageManager_FFIMethods_GetDimensionsMethod_Invoke, (ImageManager_FFIMethods_GetDimensionsMethod * __this, void * methodsPtr, ImageHandle handle, ImageDimensions dimensions, MethodInfo * method)); -DO_APP_FUNC(0x003F8F90, IAsyncResult *, ImageManager_FFIMethods_GetDimensionsMethod_BeginInvoke, (ImageManager_FFIMethods_GetDimensionsMethod * __this, void * methodsPtr, ImageHandle handle, ImageDimensions dimensions, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003F75B0, Result__Enum, ImageManager_FFIMethods_GetDimensionsMethod_EndInvoke, (ImageManager_FFIMethods_GetDimensionsMethod * __this, ImageDimensions dimensions, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003F8F50, Result__Enum, ImageManager_FFIMethods_GetDimensionsMethod_Invoke, (ImageManager_FFIMethods_GetDimensionsMethod * __this, void * methodsPtr, ImageHandle handle, ImageDimensions * dimensions, MethodInfo * method)); +DO_APP_FUNC(0x003F8F90, IAsyncResult *, ImageManager_FFIMethods_GetDimensionsMethod_BeginInvoke, (ImageManager_FFIMethods_GetDimensionsMethod * __this, void * methodsPtr, ImageHandle handle, ImageDimensions * dimensions, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003F75B0, Result__Enum, ImageManager_FFIMethods_GetDimensionsMethod_EndInvoke, (ImageManager_FFIMethods_GetDimensionsMethod * __this, ImageDimensions * dimensions, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003F9060, void, ImageManager_FFIMethods_GetDataMethod__ctor, (ImageManager_FFIMethods_GetDataMethod * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003F9190, Result__Enum, ImageManager_FFIMethods_GetDataMethod_Invoke, (ImageManager_FFIMethods_GetDataMethod * __this, void * methodsPtr, ImageHandle handle, Byte__Array * data, int32_t dataLen, MethodInfo * method)); DO_APP_FUNC(0x003F91E0, IAsyncResult *, ImageManager_FFIMethods_GetDataMethod_BeginInvoke, (ImageManager_FFIMethods_GetDataMethod * __this, void * methodsPtr, ImageHandle handle, Byte__Array * data, int32_t dataLen, AsyncCallback * callback, Object * object, MethodInfo * method)); @@ -81584,55 +92759,62 @@ DO_APP_FUNC(0x003F9650, void, RelationshipManager_add_OnRefresh, (RelationshipMa DO_APP_FUNC(0x003F9740, void, RelationshipManager_remove_OnRefresh, (RelationshipManager * __this, RelationshipManager_RefreshHandler * value, MethodInfo * method)); DO_APP_FUNC(0x003F9830, void, RelationshipManager_add_OnRelationshipUpdate, (RelationshipManager * __this, RelationshipManager_RelationshipUpdateHandler * value, MethodInfo * method)); DO_APP_FUNC(0x003F9920, void, RelationshipManager_remove_OnRelationshipUpdate, (RelationshipManager * __this, RelationshipManager_RelationshipUpdateHandler * value, MethodInfo * method)); -DO_APP_FUNC(0x003F9A10, void, RelationshipManager__ctor, (RelationshipManager * __this, void * ptr, void * eventsPtr, RelationshipManager_FFIEvents events, MethodInfo * method)); -DO_APP_FUNC(0x003F9B40, void, RelationshipManager_InitEvents, (RelationshipManager * __this, void * eventsPtr, RelationshipManager_FFIEvents events, MethodInfo * method)); -DO_APP_FUNC(0x003F9F70, bool, RelationshipManager_FilterCallbackImpl, (void * ptr, Relationship relationship, MethodInfo * method)); +DO_APP_FUNC(0x003F9A10, void, RelationshipManager__ctor, (RelationshipManager * __this, void * ptr, void * eventsPtr, RelationshipManager_FFIEvents * events, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05338, RelationshipManager__ctor__MethodInfo); +DO_APP_FUNC(0x003F9B40, void, RelationshipManager_InitEvents, (RelationshipManager * __this, void * eventsPtr, RelationshipManager_FFIEvents * events, MethodInfo * method)); +DO_APP_FUNC(0x003F9F70, bool, RelationshipManager_FilterCallbackImpl, (void * ptr, Relationship * relationship, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D052F8, RelationshipManager_FilterCallbackImpl__MethodInfo); DO_APP_FUNC(0x003FA090, void, RelationshipManager_Filter, (RelationshipManager * __this, RelationshipManager_FilterHandler * callback, MethodInfo * method)); DO_APP_FUNC(0x003FA280, int32_t, RelationshipManager_Count, (RelationshipManager * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D052F0, RelationshipManager_Count__MethodInfo); DO_APP_FUNC(0x003FA330, Relationship, RelationshipManager_Get, (RelationshipManager * __this, int64_t userId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D052E8, RelationshipManager_Get__MethodInfo); DO_APP_FUNC(0x003FA400, Relationship, RelationshipManager_GetAt, (RelationshipManager * __this, uint32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D052E0, RelationshipManager_GetAt__MethodInfo); DO_APP_FUNC(0x003FA4D0, void, RelationshipManager_OnRefreshImpl, (void * ptr, MethodInfo * method)); -DO_APP_FUNC(0x003FA610, void, RelationshipManager_OnRelationshipUpdateImpl, (void * ptr, Relationship relationship, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05320, RelationshipManager_OnRefreshImpl__MethodInfo); +DO_APP_FUNC(0x003FA610, void, RelationshipManager_OnRelationshipUpdateImpl, (void * ptr, Relationship * relationship, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05318, RelationshipManager_OnRelationshipUpdateImpl__MethodInfo); DO_APP_FUNC(0x003F3FF0, void, RelationshipManager_FFIEvents_RefreshHandler__ctor, (RelationshipManager_FFIEvents_RefreshHandler * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EE650, void, RelationshipManager_FFIEvents_RefreshHandler_Invoke, (RelationshipManager_FFIEvents_RefreshHandler * __this, void * ptr, MethodInfo * method)); DO_APP_FUNC(0x003FA760, IAsyncResult *, RelationshipManager_FFIEvents_RefreshHandler_BeginInvoke, (RelationshipManager_FFIEvents_RefreshHandler * __this, void * ptr, AsyncCallback * callback, Object * object, MethodInfo * method)); DO_APP_FUNC(0x003BA270, void, RelationshipManager_FFIEvents_RefreshHandler_EndInvoke, (RelationshipManager_FFIEvents_RefreshHandler * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003EC1A0, void, RelationshipManager_FFIEvents_RelationshipUpdateHandler__ctor, (RelationshipManager_FFIEvents_RelationshipUpdateHandler * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EC2D0, void, RelationshipManager_FFIEvents_RelationshipUpdateHandler_Invoke, (RelationshipManager_FFIEvents_RelationshipUpdateHandler * __this, void * ptr, Relationship relationship, MethodInfo * method)); -DO_APP_FUNC(0x003FA7E0, IAsyncResult *, RelationshipManager_FFIEvents_RelationshipUpdateHandler_BeginInvoke, (RelationshipManager_FFIEvents_RelationshipUpdateHandler * __this, void * ptr, Relationship relationship, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003EC4B0, void, RelationshipManager_FFIEvents_RelationshipUpdateHandler_EndInvoke, (RelationshipManager_FFIEvents_RelationshipUpdateHandler * __this, Relationship relationship, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EC2D0, void, RelationshipManager_FFIEvents_RelationshipUpdateHandler_Invoke, (RelationshipManager_FFIEvents_RelationshipUpdateHandler * __this, void * ptr, Relationship * relationship, MethodInfo * method)); +DO_APP_FUNC(0x003FA7E0, IAsyncResult *, RelationshipManager_FFIEvents_RelationshipUpdateHandler_BeginInvoke, (RelationshipManager_FFIEvents_RelationshipUpdateHandler * __this, void * ptr, Relationship * relationship, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003EC4B0, void, RelationshipManager_FFIEvents_RelationshipUpdateHandler_EndInvoke, (RelationshipManager_FFIEvents_RelationshipUpdateHandler * __this, Relationship * relationship, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003FA890, void, RelationshipManager_FFIMethods_FilterCallback__ctor, (RelationshipManager_FFIMethods_FilterCallback * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003ED330, bool, RelationshipManager_FFIMethods_FilterCallback_Invoke, (RelationshipManager_FFIMethods_FilterCallback * __this, void * ptr, Relationship relationship, MethodInfo * method)); -DO_APP_FUNC(0x003FA9C0, IAsyncResult *, RelationshipManager_FFIMethods_FilterCallback_BeginInvoke, (RelationshipManager_FFIMethods_FilterCallback * __this, void * ptr, Relationship relationship, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003FAA70, bool, RelationshipManager_FFIMethods_FilterCallback_EndInvoke, (RelationshipManager_FFIMethods_FilterCallback * __this, Relationship relationship, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003ED330, bool, RelationshipManager_FFIMethods_FilterCallback_Invoke, (RelationshipManager_FFIMethods_FilterCallback * __this, void * ptr, Relationship * relationship, MethodInfo * method)); +DO_APP_FUNC(0x003FA9C0, IAsyncResult *, RelationshipManager_FFIMethods_FilterCallback_BeginInvoke, (RelationshipManager_FFIMethods_FilterCallback * __this, void * ptr, Relationship * relationship, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003FAA70, bool, RelationshipManager_FFIMethods_FilterCallback_EndInvoke, (RelationshipManager_FFIMethods_FilterCallback * __this, Relationship * relationship, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003EDA80, void, RelationshipManager_FFIMethods_FilterMethod__ctor, (RelationshipManager_FFIMethods_FilterMethod * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EDBB0, void, RelationshipManager_FFIMethods_FilterMethod_Invoke, (RelationshipManager_FFIMethods_FilterMethod * __this, void * methodsPtr, void * callbackData, RelationshipManager_FFIMethods_FilterCallback * callback, MethodInfo * method)); DO_APP_FUNC(0x003FAAA0, IAsyncResult *, RelationshipManager_FFIMethods_FilterMethod_BeginInvoke, (RelationshipManager_FFIMethods_FilterMethod * __this, void * methodsPtr, void * callbackData, RelationshipManager_FFIMethods_FilterCallback * callback, AsyncCallback * __callback, Object * object, MethodInfo * method)); DO_APP_FUNC(0x003BA270, void, RelationshipManager_FFIMethods_FilterMethod_EndInvoke, (RelationshipManager_FFIMethods_FilterMethod * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003ED200, void, RelationshipManager_FFIMethods_CountMethod__ctor, (RelationshipManager_FFIMethods_CountMethod * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003ED330, Result__Enum, RelationshipManager_FFIMethods_CountMethod_Invoke, (RelationshipManager_FFIMethods_CountMethod * __this, void * methodsPtr, int32_t count, MethodInfo * method)); -DO_APP_FUNC(0x003FAB40, IAsyncResult *, RelationshipManager_FFIMethods_CountMethod_BeginInvoke, (RelationshipManager_FFIMethods_CountMethod * __this, void * methodsPtr, int32_t count, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003F75B0, Result__Enum, RelationshipManager_FFIMethods_CountMethod_EndInvoke, (RelationshipManager_FFIMethods_CountMethod * __this, int32_t count, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003ED330, Result__Enum, RelationshipManager_FFIMethods_CountMethod_Invoke, (RelationshipManager_FFIMethods_CountMethod * __this, void * methodsPtr, int32_t * count, MethodInfo * method)); +DO_APP_FUNC(0x003FAB40, IAsyncResult *, RelationshipManager_FFIMethods_CountMethod_BeginInvoke, (RelationshipManager_FFIMethods_CountMethod * __this, void * methodsPtr, int32_t * count, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003F75B0, Result__Enum, RelationshipManager_FFIMethods_CountMethod_EndInvoke, (RelationshipManager_FFIMethods_CountMethod * __this, int32_t * count, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003FABF0, void, RelationshipManager_FFIMethods_GetMethod__ctor, (RelationshipManager_FFIMethods_GetMethod * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EF9C0, Result__Enum, RelationshipManager_FFIMethods_GetMethod_Invoke, (RelationshipManager_FFIMethods_GetMethod * __this, void * methodsPtr, int64_t userId, Relationship relationship, MethodInfo * method)); -DO_APP_FUNC(0x003FAD20, IAsyncResult *, RelationshipManager_FFIMethods_GetMethod_BeginInvoke, (RelationshipManager_FFIMethods_GetMethod * __this, void * methodsPtr, int64_t userId, Relationship relationship, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003F75B0, Result__Enum, RelationshipManager_FFIMethods_GetMethod_EndInvoke, (RelationshipManager_FFIMethods_GetMethod * __this, Relationship relationship, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EF9C0, Result__Enum, RelationshipManager_FFIMethods_GetMethod_Invoke, (RelationshipManager_FFIMethods_GetMethod * __this, void * methodsPtr, int64_t userId, Relationship * relationship, MethodInfo * method)); +DO_APP_FUNC(0x003FAD20, IAsyncResult *, RelationshipManager_FFIMethods_GetMethod_BeginInvoke, (RelationshipManager_FFIMethods_GetMethod * __this, void * methodsPtr, int64_t userId, Relationship * relationship, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003F75B0, Result__Enum, RelationshipManager_FFIMethods_GetMethod_EndInvoke, (RelationshipManager_FFIMethods_GetMethod * __this, Relationship * relationship, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003F7830, void, RelationshipManager_FFIMethods_GetAtMethod__ctor, (RelationshipManager_FFIMethods_GetAtMethod * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EF9C0, Result__Enum, RelationshipManager_FFIMethods_GetAtMethod_Invoke, (RelationshipManager_FFIMethods_GetAtMethod * __this, void * methodsPtr, uint32_t index, Relationship relationship, MethodInfo * method)); -DO_APP_FUNC(0x003FADF0, IAsyncResult *, RelationshipManager_FFIMethods_GetAtMethod_BeginInvoke, (RelationshipManager_FFIMethods_GetAtMethod * __this, void * methodsPtr, uint32_t index, Relationship relationship, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003F75B0, Result__Enum, RelationshipManager_FFIMethods_GetAtMethod_EndInvoke, (RelationshipManager_FFIMethods_GetAtMethod * __this, Relationship relationship, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EF9C0, Result__Enum, RelationshipManager_FFIMethods_GetAtMethod_Invoke, (RelationshipManager_FFIMethods_GetAtMethod * __this, void * methodsPtr, uint32_t index, Relationship * relationship, MethodInfo * method)); +DO_APP_FUNC(0x003FADF0, IAsyncResult *, RelationshipManager_FFIMethods_GetAtMethod_BeginInvoke, (RelationshipManager_FFIMethods_GetAtMethod * __this, void * methodsPtr, uint32_t index, Relationship * relationship, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003F75B0, Result__Enum, RelationshipManager_FFIMethods_GetAtMethod_EndInvoke, (RelationshipManager_FFIMethods_GetAtMethod * __this, Relationship * relationship, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003FAEC0, void, RelationshipManager_FilterHandler__ctor, (RelationshipManager_FilterHandler * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003F42D0, bool, RelationshipManager_FilterHandler_Invoke, (RelationshipManager_FilterHandler * __this, Relationship relationship, MethodInfo * method)); -DO_APP_FUNC(0x003FB000, IAsyncResult *, RelationshipManager_FilterHandler_BeginInvoke, (RelationshipManager_FilterHandler * __this, Relationship relationship, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003FAA70, bool, RelationshipManager_FilterHandler_EndInvoke, (RelationshipManager_FilterHandler * __this, Relationship relationship, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003F42D0, bool, RelationshipManager_FilterHandler_Invoke, (RelationshipManager_FilterHandler * __this, Relationship * relationship, MethodInfo * method)); +DO_APP_FUNC(0x003FB000, IAsyncResult *, RelationshipManager_FilterHandler_BeginInvoke, (RelationshipManager_FilterHandler * __this, Relationship * relationship, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003FAA70, bool, RelationshipManager_FilterHandler_EndInvoke, (RelationshipManager_FilterHandler * __this, Relationship * relationship, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003F7AE0, void, RelationshipManager_RefreshHandler__ctor, (RelationshipManager_RefreshHandler * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003CB0B0, void, RelationshipManager_RefreshHandler_Invoke, (RelationshipManager_RefreshHandler * __this, MethodInfo * method)); DO_APP_FUNC(0x003F7C10, IAsyncResult *, RelationshipManager_RefreshHandler_BeginInvoke, (RelationshipManager_RefreshHandler * __this, AsyncCallback * callback, Object * object, MethodInfo * method)); DO_APP_FUNC(0x003BA270, void, RelationshipManager_RefreshHandler_EndInvoke, (RelationshipManager_RefreshHandler * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003EEA50, void, RelationshipManager_RelationshipUpdateHandler__ctor, (RelationshipManager_RelationshipUpdateHandler * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EE650, void, RelationshipManager_RelationshipUpdateHandler_Invoke, (RelationshipManager_RelationshipUpdateHandler * __this, Relationship relationship, MethodInfo * method)); -DO_APP_FUNC(0x003FB090, IAsyncResult *, RelationshipManager_RelationshipUpdateHandler_BeginInvoke, (RelationshipManager_RelationshipUpdateHandler * __this, Relationship relationship, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003EC4B0, void, RelationshipManager_RelationshipUpdateHandler_EndInvoke, (RelationshipManager_RelationshipUpdateHandler * __this, Relationship relationship, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EE650, void, RelationshipManager_RelationshipUpdateHandler_Invoke, (RelationshipManager_RelationshipUpdateHandler * __this, Relationship * relationship, MethodInfo * method)); +DO_APP_FUNC(0x003FB090, IAsyncResult *, RelationshipManager_RelationshipUpdateHandler_BeginInvoke, (RelationshipManager_RelationshipUpdateHandler * __this, Relationship * relationship, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003EC4B0, void, RelationshipManager_RelationshipUpdateHandler_EndInvoke, (RelationshipManager_RelationshipUpdateHandler * __this, Relationship * relationship, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003FB120, LobbyManager_FFIMethods, LobbyManager_get_Methods, (LobbyManager * __this, MethodInfo * method)); DO_APP_FUNC(0x003FB2F0, void, LobbyManager_add_OnLobbyUpdate, (LobbyManager * __this, LobbyManager_LobbyUpdateHandler * value, MethodInfo * method)); DO_APP_FUNC(0x003FB3E0, void, LobbyManager_remove_OnLobbyUpdate, (LobbyManager * __this, LobbyManager_LobbyUpdateHandler * value, MethodInfo * method)); @@ -81650,60 +92832,101 @@ DO_APP_FUNC(0x003FBE30, void, LobbyManager_add_OnSpeaking, (LobbyManager * __thi DO_APP_FUNC(0x003FBF20, void, LobbyManager_remove_OnSpeaking, (LobbyManager * __this, LobbyManager_SpeakingHandler * value, MethodInfo * method)); DO_APP_FUNC(0x003FC010, void, LobbyManager_add_OnNetworkMessage, (LobbyManager * __this, LobbyManager_NetworkMessageHandler * value, MethodInfo * method)); DO_APP_FUNC(0x003FC100, void, LobbyManager_remove_OnNetworkMessage, (LobbyManager * __this, LobbyManager_NetworkMessageHandler * value, MethodInfo * method)); -DO_APP_FUNC(0x003FC1F0, void, LobbyManager__ctor, (LobbyManager * __this, void * ptr, void * eventsPtr, LobbyManager_FFIEvents events, MethodInfo * method)); -DO_APP_FUNC(0x003FC320, void, LobbyManager_InitEvents, (LobbyManager * __this, void * eventsPtr, LobbyManager_FFIEvents events, MethodInfo * method)); +DO_APP_FUNC(0x003FC1F0, void, LobbyManager__ctor, (LobbyManager * __this, void * ptr, void * eventsPtr, LobbyManager_FFIEvents * events, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05260, LobbyManager__ctor__MethodInfo); +DO_APP_FUNC(0x003FC320, void, LobbyManager_InitEvents, (LobbyManager * __this, void * eventsPtr, LobbyManager_FFIEvents * events, MethodInfo * method)); DO_APP_FUNC(0x003FD170, LobbyTransaction, LobbyManager_GetLobbyCreateTransaction, (LobbyManager * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D051D0, LobbyManager_GetLobbyCreateTransaction__MethodInfo); DO_APP_FUNC(0x003FD2A0, LobbyTransaction, LobbyManager_GetLobbyUpdateTransaction, (LobbyManager * __this, int64_t lobbyId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D051C8, LobbyManager_GetLobbyUpdateTransaction__MethodInfo); DO_APP_FUNC(0x003FD3E0, LobbyMemberTransaction, LobbyManager_GetMemberUpdateTransaction, (LobbyManager * __this, int64_t lobbyId, int64_t userId, MethodInfo * method)); -DO_APP_FUNC(0x003FD530, void, LobbyManager_CreateLobbyCallbackImpl, (void * ptr, Result__Enum result, Lobby lobby, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D051C0, LobbyManager_GetMemberUpdateTransaction__MethodInfo); +DO_APP_FUNC(0x003FD530, void, LobbyManager_CreateLobbyCallbackImpl, (void * ptr, Result__Enum result, Lobby * lobby, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D051A8, LobbyManager_CreateLobbyCallbackImpl__MethodInfo); DO_APP_FUNC(0x003FD670, void, LobbyManager_CreateLobby, (LobbyManager * __this, LobbyTransaction transaction, LobbyManager_CreateLobbyHandler * callback, MethodInfo * method)); DO_APP_FUNC(0x003FD8E0, void, LobbyManager_UpdateLobbyCallbackImpl, (void * ptr, Result__Enum result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05198, LobbyManager_UpdateLobbyCallbackImpl__MethodInfo); DO_APP_FUNC(0x003FDA10, void, LobbyManager_UpdateLobby, (LobbyManager * __this, int64_t lobbyId, LobbyTransaction transaction, LobbyManager_UpdateLobbyHandler * callback, MethodInfo * method)); DO_APP_FUNC(0x003FDC80, void, LobbyManager_DeleteLobbyCallbackImpl, (void * ptr, Result__Enum result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05178, LobbyManager_DeleteLobbyCallbackImpl__MethodInfo); DO_APP_FUNC(0x003FDDB0, void, LobbyManager_DeleteLobby, (LobbyManager * __this, int64_t lobbyId, LobbyManager_DeleteLobbyHandler * callback, MethodInfo * method)); -DO_APP_FUNC(0x003FE010, void, LobbyManager_ConnectLobbyCallbackImpl, (void * ptr, Result__Enum result, Lobby lobby, MethodInfo * method)); +DO_APP_FUNC(0x003FE010, void, LobbyManager_ConnectLobbyCallbackImpl, (void * ptr, Result__Enum result, Lobby * lobby, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05160, LobbyManager_ConnectLobbyCallbackImpl__MethodInfo); DO_APP_FUNC(0x003FE150, void, LobbyManager_ConnectLobby, (LobbyManager * __this, int64_t lobbyId, String * secret, LobbyManager_ConnectLobbyHandler * callback, MethodInfo * method)); -DO_APP_FUNC(0x003FE3B0, void, LobbyManager_ConnectLobbyWithActivitySecretCallbackImpl, (void * ptr, Result__Enum result, Lobby lobby, MethodInfo * method)); +DO_APP_FUNC(0x003FE3B0, void, LobbyManager_ConnectLobbyWithActivitySecretCallbackImpl, (void * ptr, Result__Enum result, Lobby * lobby, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05148, LobbyManager_ConnectLobbyWithActivitySecretCallbackImpl__MethodInfo); DO_APP_FUNC(0x003FE4F0, void, LobbyManager_ConnectLobbyWithActivitySecret, (LobbyManager * __this, String * activitySecret, LobbyManager_ConnectLobbyWithActivitySecretHandler * callback, MethodInfo * method)); DO_APP_FUNC(0x003FE750, void, LobbyManager_DisconnectLobbyCallbackImpl, (void * ptr, Result__Enum result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05130, LobbyManager_DisconnectLobbyCallbackImpl__MethodInfo); DO_APP_FUNC(0x003FE880, void, LobbyManager_DisconnectLobby, (LobbyManager * __this, int64_t lobbyId, LobbyManager_DisconnectLobbyHandler * callback, MethodInfo * method)); DO_APP_FUNC(0x003FEAE0, Lobby, LobbyManager_GetLobby, (LobbyManager * __this, int64_t lobbyId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05128, LobbyManager_GetLobby__MethodInfo); DO_APP_FUNC(0x003FEC20, String *, LobbyManager_GetLobbyActivitySecret, (LobbyManager * __this, int64_t lobbyId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05120, LobbyManager_GetLobbyActivitySecret__MethodInfo); DO_APP_FUNC(0x003FEDF0, String *, LobbyManager_GetLobbyMetadataValue, (LobbyManager * __this, int64_t lobbyId, String * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05118, LobbyManager_GetLobbyMetadataValue__MethodInfo); DO_APP_FUNC(0x003FEFD0, String *, LobbyManager_GetLobbyMetadataKey, (LobbyManager * __this, int64_t lobbyId, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05110, LobbyManager_GetLobbyMetadataKey__MethodInfo); DO_APP_FUNC(0x003FF1B0, int32_t, LobbyManager_LobbyMetadataCount, (LobbyManager * __this, int64_t lobbyId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05108, LobbyManager_LobbyMetadataCount__MethodInfo); DO_APP_FUNC(0x003FF2F0, int32_t, LobbyManager_MemberCount, (LobbyManager * __this, int64_t lobbyId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05100, LobbyManager_MemberCount__MethodInfo); DO_APP_FUNC(0x003FF430, int64_t, LobbyManager_GetMemberUserId, (LobbyManager * __this, int64_t lobbyId, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D050F8, LobbyManager_GetMemberUserId__MethodInfo); DO_APP_FUNC(0x003FF580, User, LobbyManager_GetMemberUser, (LobbyManager * __this, int64_t lobbyId, int64_t userId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D050F0, LobbyManager_GetMemberUser__MethodInfo); DO_APP_FUNC(0x003FF6D0, String *, LobbyManager_GetMemberMetadataValue, (LobbyManager * __this, int64_t lobbyId, int64_t userId, String * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D050E8, LobbyManager_GetMemberMetadataValue__MethodInfo); DO_APP_FUNC(0x003FF8D0, String *, LobbyManager_GetMemberMetadataKey, (LobbyManager * __this, int64_t lobbyId, int64_t userId, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D050E0, LobbyManager_GetMemberMetadataKey__MethodInfo); DO_APP_FUNC(0x003FFAD0, int32_t, LobbyManager_MemberMetadataCount, (LobbyManager * __this, int64_t lobbyId, int64_t userId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D050D8, LobbyManager_MemberMetadataCount__MethodInfo); DO_APP_FUNC(0x003FFC20, void, LobbyManager_UpdateMemberCallbackImpl, (void * ptr, Result__Enum result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D050C8, LobbyManager_UpdateMemberCallbackImpl__MethodInfo); DO_APP_FUNC(0x003FFD50, void, LobbyManager_UpdateMember, (LobbyManager * __this, int64_t lobbyId, int64_t userId, LobbyMemberTransaction transaction, LobbyManager_UpdateMemberHandler * callback, MethodInfo * method)); DO_APP_FUNC(0x003FFFE0, void, LobbyManager_SendLobbyMessageCallbackImpl, (void * ptr, Result__Enum result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D050B0, LobbyManager_SendLobbyMessageCallbackImpl__MethodInfo); DO_APP_FUNC(0x00400110, void, LobbyManager_SendLobbyMessage, (LobbyManager * __this, int64_t lobbyId, Byte__Array * data, LobbyManager_SendLobbyMessageHandler * callback, MethodInfo * method)); DO_APP_FUNC(0x00400390, LobbySearchQuery, LobbyManager_GetSearchQuery, (LobbyManager * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D050A0, LobbyManager_GetSearchQuery__MethodInfo); DO_APP_FUNC(0x004004C0, void, LobbyManager_SearchCallbackImpl, (void * ptr, Result__Enum result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05090, LobbyManager_SearchCallbackImpl__MethodInfo); DO_APP_FUNC(0x004005F0, void, LobbyManager_Search, (LobbyManager * __this, LobbySearchQuery query, LobbyManager_SearchHandler * callback, MethodInfo * method)); DO_APP_FUNC(0x00400860, int32_t, LobbyManager_LobbyCount, (LobbyManager * __this, MethodInfo * method)); DO_APP_FUNC(0x00400940, int64_t, LobbyManager_GetLobbyId, (LobbyManager * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05080, LobbyManager_GetLobbyId__MethodInfo); DO_APP_FUNC(0x00400A80, void, LobbyManager_ConnectVoiceCallbackImpl, (void * ptr, Result__Enum result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05068, LobbyManager_ConnectVoiceCallbackImpl__MethodInfo); DO_APP_FUNC(0x00400BB0, void, LobbyManager_ConnectVoice, (LobbyManager * __this, int64_t lobbyId, LobbyManager_ConnectVoiceHandler * callback, MethodInfo * method)); DO_APP_FUNC(0x00400E10, void, LobbyManager_DisconnectVoiceCallbackImpl, (void * ptr, Result__Enum result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05050, LobbyManager_DisconnectVoiceCallbackImpl__MethodInfo); DO_APP_FUNC(0x00400F40, void, LobbyManager_DisconnectVoice, (LobbyManager * __this, int64_t lobbyId, LobbyManager_DisconnectVoiceHandler * callback, MethodInfo * method)); DO_APP_FUNC(0x004011A0, void, LobbyManager_ConnectNetwork, (LobbyManager * __this, int64_t lobbyId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05048, LobbyManager_ConnectNetwork__MethodInfo); DO_APP_FUNC(0x004012C0, void, LobbyManager_DisconnectNetwork, (LobbyManager * __this, int64_t lobbyId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05040, LobbyManager_DisconnectNetwork__MethodInfo); DO_APP_FUNC(0x004013E0, void, LobbyManager_FlushNetwork, (LobbyManager * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05038, LobbyManager_FlushNetwork__MethodInfo); DO_APP_FUNC(0x00401500, void, LobbyManager_OpenNetworkChannel, (LobbyManager * __this, int64_t lobbyId, uint8_t channelId, bool reliable, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05030, LobbyManager_OpenNetworkChannel__MethodInfo); DO_APP_FUNC(0x00401650, void, LobbyManager_SendNetworkMessage, (LobbyManager * __this, int64_t lobbyId, int64_t userId, uint8_t channelId, Byte__Array * data, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05028, LobbyManager_SendNetworkMessage__MethodInfo); DO_APP_FUNC(0x004017B0, void, LobbyManager_OnLobbyUpdateImpl, (void * ptr, int64_t lobbyId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05240, LobbyManager_OnLobbyUpdateImpl__MethodInfo); DO_APP_FUNC(0x00401900, void, LobbyManager_OnLobbyDeleteImpl, (void * ptr, int64_t lobbyId, uint32_t reason, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05250, LobbyManager_OnLobbyDeleteImpl__MethodInfo); DO_APP_FUNC(0x00401A70, void, LobbyManager_OnMemberConnectImpl, (void * ptr, int64_t lobbyId, int64_t userId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05238, LobbyManager_OnMemberConnectImpl__MethodInfo); DO_APP_FUNC(0x00401BE0, void, LobbyManager_OnMemberUpdateImpl, (void * ptr, int64_t lobbyId, int64_t userId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05228, LobbyManager_OnMemberUpdateImpl__MethodInfo); DO_APP_FUNC(0x00401D50, void, LobbyManager_OnMemberDisconnectImpl, (void * ptr, int64_t lobbyId, int64_t userId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05230, LobbyManager_OnMemberDisconnectImpl__MethodInfo); DO_APP_FUNC(0x00401EC0, void, LobbyManager_OnLobbyMessageImpl, (void * ptr, int64_t lobbyId, int64_t userId, void * dataPtr, int32_t dataLen, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05248, LobbyManager_OnLobbyMessageImpl__MethodInfo); DO_APP_FUNC(0x004020D0, void, LobbyManager_OnSpeakingImpl, (void * ptr, int64_t lobbyId, int64_t userId, bool speaking, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05218, LobbyManager_OnSpeakingImpl__MethodInfo); DO_APP_FUNC(0x00402250, void, LobbyManager_OnNetworkMessageImpl, (void * ptr, int64_t lobbyId, int64_t userId, uint8_t channelId, void * dataPtr, int32_t dataLen, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05220, LobbyManager_OnNetworkMessageImpl__MethodInfo); DO_APP_FUNC(0x00402460, IEnumerable_1_Discord_User_ *, LobbyManager_GetMemberUsers, (LobbyManager * __this, int64_t lobbyID, MethodInfo * method)); DO_APP_FUNC(0x00402A40, void, LobbyManager_SendLobbyMessage_1, (LobbyManager * __this, int64_t lobbyID, String * data, LobbyManager_SendLobbyMessageHandler * handler, MethodInfo * method)); DO_APP_FUNC(0x00402AC0, void, LobbyManager_FFIEvents_LobbyUpdateHandler__ctor, (LobbyManager_FFIEvents_LobbyUpdateHandler * __this, Object * object, void * method_1, MethodInfo * method)); @@ -81739,21 +92962,21 @@ DO_APP_FUNC(0x004037B0, void, LobbyManager_FFIEvents_NetworkMessageHandler_Invok DO_APP_FUNC(0x004037D0, IAsyncResult *, LobbyManager_FFIEvents_NetworkMessageHandler_BeginInvoke, (LobbyManager_FFIEvents_NetworkMessageHandler * __this, void * ptr, int64_t lobbyId, int64_t userId, uint8_t channelId, void * dataPtr, int32_t dataLen, AsyncCallback * callback, Object * object, MethodInfo * method)); DO_APP_FUNC(0x003BA270, void, LobbyManager_FFIEvents_NetworkMessageHandler_EndInvoke, (LobbyManager_FFIEvents_NetworkMessageHandler * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003ED200, void, LobbyManager_FFIMethods_GetLobbyCreateTransactionMethod__ctor, (LobbyManager_FFIMethods_GetLobbyCreateTransactionMethod * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003ED330, Result__Enum, LobbyManager_FFIMethods_GetLobbyCreateTransactionMethod_Invoke, (LobbyManager_FFIMethods_GetLobbyCreateTransactionMethod * __this, void * methodsPtr, void * transaction, MethodInfo * method)); -DO_APP_FUNC(0x00403900, IAsyncResult *, LobbyManager_FFIMethods_GetLobbyCreateTransactionMethod_BeginInvoke, (LobbyManager_FFIMethods_GetLobbyCreateTransactionMethod * __this, void * methodsPtr, void * transaction, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003F75B0, Result__Enum, LobbyManager_FFIMethods_GetLobbyCreateTransactionMethod_EndInvoke, (LobbyManager_FFIMethods_GetLobbyCreateTransactionMethod * __this, void * transaction, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003ED330, Result__Enum, LobbyManager_FFIMethods_GetLobbyCreateTransactionMethod_Invoke, (LobbyManager_FFIMethods_GetLobbyCreateTransactionMethod * __this, void * methodsPtr, void * * transaction, MethodInfo * method)); +DO_APP_FUNC(0x00403900, IAsyncResult *, LobbyManager_FFIMethods_GetLobbyCreateTransactionMethod_BeginInvoke, (LobbyManager_FFIMethods_GetLobbyCreateTransactionMethod * __this, void * methodsPtr, void * * transaction, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003F75B0, Result__Enum, LobbyManager_FFIMethods_GetLobbyCreateTransactionMethod_EndInvoke, (LobbyManager_FFIMethods_GetLobbyCreateTransactionMethod * __this, void * * transaction, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003FABF0, void, LobbyManager_FFIMethods_GetLobbyUpdateTransactionMethod__ctor, (LobbyManager_FFIMethods_GetLobbyUpdateTransactionMethod * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EF9C0, Result__Enum, LobbyManager_FFIMethods_GetLobbyUpdateTransactionMethod_Invoke, (LobbyManager_FFIMethods_GetLobbyUpdateTransactionMethod * __this, void * methodsPtr, int64_t lobbyId, void * transaction, MethodInfo * method)); -DO_APP_FUNC(0x004039A0, IAsyncResult *, LobbyManager_FFIMethods_GetLobbyUpdateTransactionMethod_BeginInvoke, (LobbyManager_FFIMethods_GetLobbyUpdateTransactionMethod * __this, void * methodsPtr, int64_t lobbyId, void * transaction, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003F75B0, Result__Enum, LobbyManager_FFIMethods_GetLobbyUpdateTransactionMethod_EndInvoke, (LobbyManager_FFIMethods_GetLobbyUpdateTransactionMethod * __this, void * transaction, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EF9C0, Result__Enum, LobbyManager_FFIMethods_GetLobbyUpdateTransactionMethod_Invoke, (LobbyManager_FFIMethods_GetLobbyUpdateTransactionMethod * __this, void * methodsPtr, int64_t lobbyId, void * * transaction, MethodInfo * method)); +DO_APP_FUNC(0x004039A0, IAsyncResult *, LobbyManager_FFIMethods_GetLobbyUpdateTransactionMethod_BeginInvoke, (LobbyManager_FFIMethods_GetLobbyUpdateTransactionMethod * __this, void * methodsPtr, int64_t lobbyId, void * * transaction, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003F75B0, Result__Enum, LobbyManager_FFIMethods_GetLobbyUpdateTransactionMethod_EndInvoke, (LobbyManager_FFIMethods_GetLobbyUpdateTransactionMethod * __this, void * * transaction, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x00403A60, void, LobbyManager_FFIMethods_GetMemberUpdateTransactionMethod__ctor, (LobbyManager_FFIMethods_GetMemberUpdateTransactionMethod * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003F09C0, Result__Enum, LobbyManager_FFIMethods_GetMemberUpdateTransactionMethod_Invoke, (LobbyManager_FFIMethods_GetMemberUpdateTransactionMethod * __this, void * methodsPtr, int64_t lobbyId, int64_t userId, void * transaction, MethodInfo * method)); -DO_APP_FUNC(0x00403B90, IAsyncResult *, LobbyManager_FFIMethods_GetMemberUpdateTransactionMethod_BeginInvoke, (LobbyManager_FFIMethods_GetMemberUpdateTransactionMethod * __this, void * methodsPtr, int64_t lobbyId, int64_t userId, void * transaction, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003F75B0, Result__Enum, LobbyManager_FFIMethods_GetMemberUpdateTransactionMethod_EndInvoke, (LobbyManager_FFIMethods_GetMemberUpdateTransactionMethod * __this, void * transaction, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003F09C0, Result__Enum, LobbyManager_FFIMethods_GetMemberUpdateTransactionMethod_Invoke, (LobbyManager_FFIMethods_GetMemberUpdateTransactionMethod * __this, void * methodsPtr, int64_t lobbyId, int64_t userId, void * * transaction, MethodInfo * method)); +DO_APP_FUNC(0x00403B90, IAsyncResult *, LobbyManager_FFIMethods_GetMemberUpdateTransactionMethod_BeginInvoke, (LobbyManager_FFIMethods_GetMemberUpdateTransactionMethod * __this, void * methodsPtr, int64_t lobbyId, int64_t userId, void * * transaction, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003F75B0, Result__Enum, LobbyManager_FFIMethods_GetMemberUpdateTransactionMethod_EndInvoke, (LobbyManager_FFIMethods_GetMemberUpdateTransactionMethod * __this, void * * transaction, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003F4360, void, LobbyManager_FFIMethods_CreateLobbyCallback__ctor, (LobbyManager_FFIMethods_CreateLobbyCallback * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EDBB0, void, LobbyManager_FFIMethods_CreateLobbyCallback_Invoke, (LobbyManager_FFIMethods_CreateLobbyCallback * __this, void * ptr, Result__Enum result, Lobby lobby, MethodInfo * method)); -DO_APP_FUNC(0x00403C60, IAsyncResult *, LobbyManager_FFIMethods_CreateLobbyCallback_BeginInvoke, (LobbyManager_FFIMethods_CreateLobbyCallback * __this, void * ptr, Result__Enum result, Lobby lobby, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003EC4B0, void, LobbyManager_FFIMethods_CreateLobbyCallback_EndInvoke, (LobbyManager_FFIMethods_CreateLobbyCallback * __this, Lobby lobby, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EDBB0, void, LobbyManager_FFIMethods_CreateLobbyCallback_Invoke, (LobbyManager_FFIMethods_CreateLobbyCallback * __this, void * ptr, Result__Enum result, Lobby * lobby, MethodInfo * method)); +DO_APP_FUNC(0x00403C60, IAsyncResult *, LobbyManager_FFIMethods_CreateLobbyCallback_BeginInvoke, (LobbyManager_FFIMethods_CreateLobbyCallback * __this, void * ptr, Result__Enum result, Lobby * lobby, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003EC4B0, void, LobbyManager_FFIMethods_CreateLobbyCallback_EndInvoke, (LobbyManager_FFIMethods_CreateLobbyCallback * __this, Lobby * lobby, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003EE320, void, LobbyManager_FFIMethods_CreateLobbyMethod__ctor, (LobbyManager_FFIMethods_CreateLobbyMethod * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EC600, void, LobbyManager_FFIMethods_CreateLobbyMethod_Invoke, (LobbyManager_FFIMethods_CreateLobbyMethod * __this, void * methodsPtr, void * transaction, void * callbackData, LobbyManager_FFIMethods_CreateLobbyCallback * callback, MethodInfo * method)); DO_APP_FUNC(0x00403D30, IAsyncResult *, LobbyManager_FFIMethods_CreateLobbyMethod_BeginInvoke, (LobbyManager_FFIMethods_CreateLobbyMethod * __this, void * methodsPtr, void * transaction, void * callbackData, LobbyManager_FFIMethods_CreateLobbyCallback * callback, AsyncCallback * __callback, Object * object, MethodInfo * method)); @@ -81775,17 +92998,17 @@ DO_APP_FUNC(0x003EC600, void, LobbyManager_FFIMethods_DeleteLobbyMethod_Invoke, DO_APP_FUNC(0x00404160, IAsyncResult *, LobbyManager_FFIMethods_DeleteLobbyMethod_BeginInvoke, (LobbyManager_FFIMethods_DeleteLobbyMethod * __this, void * methodsPtr, int64_t lobbyId, void * callbackData, LobbyManager_FFIMethods_DeleteLobbyCallback * callback, AsyncCallback * __callback, Object * object, MethodInfo * method)); DO_APP_FUNC(0x003BA270, void, LobbyManager_FFIMethods_DeleteLobbyMethod_EndInvoke, (LobbyManager_FFIMethods_DeleteLobbyMethod * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003F4360, void, LobbyManager_FFIMethods_ConnectLobbyCallback__ctor, (LobbyManager_FFIMethods_ConnectLobbyCallback * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EDBB0, void, LobbyManager_FFIMethods_ConnectLobbyCallback_Invoke, (LobbyManager_FFIMethods_ConnectLobbyCallback * __this, void * ptr, Result__Enum result, Lobby lobby, MethodInfo * method)); -DO_APP_FUNC(0x00404230, IAsyncResult *, LobbyManager_FFIMethods_ConnectLobbyCallback_BeginInvoke, (LobbyManager_FFIMethods_ConnectLobbyCallback * __this, void * ptr, Result__Enum result, Lobby lobby, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003EC4B0, void, LobbyManager_FFIMethods_ConnectLobbyCallback_EndInvoke, (LobbyManager_FFIMethods_ConnectLobbyCallback * __this, Lobby lobby, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EDBB0, void, LobbyManager_FFIMethods_ConnectLobbyCallback_Invoke, (LobbyManager_FFIMethods_ConnectLobbyCallback * __this, void * ptr, Result__Enum result, Lobby * lobby, MethodInfo * method)); +DO_APP_FUNC(0x00404230, IAsyncResult *, LobbyManager_FFIMethods_ConnectLobbyCallback_BeginInvoke, (LobbyManager_FFIMethods_ConnectLobbyCallback * __this, void * ptr, Result__Enum result, Lobby * lobby, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003EC4B0, void, LobbyManager_FFIMethods_ConnectLobbyCallback_EndInvoke, (LobbyManager_FFIMethods_ConnectLobbyCallback * __this, Lobby * lobby, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x00404300, void, LobbyManager_FFIMethods_ConnectLobbyMethod__ctor, (LobbyManager_FFIMethods_ConnectLobbyMethod * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EDE50, void, LobbyManager_FFIMethods_ConnectLobbyMethod_Invoke, (LobbyManager_FFIMethods_ConnectLobbyMethod * __this, void * methodsPtr, int64_t lobbyId, String * secret, void * callbackData, LobbyManager_FFIMethods_ConnectLobbyCallback * callback, MethodInfo * method)); DO_APP_FUNC(0x00404430, IAsyncResult *, LobbyManager_FFIMethods_ConnectLobbyMethod_BeginInvoke, (LobbyManager_FFIMethods_ConnectLobbyMethod * __this, void * methodsPtr, int64_t lobbyId, String * secret, void * callbackData, LobbyManager_FFIMethods_ConnectLobbyCallback * callback, AsyncCallback * __callback, Object * object, MethodInfo * method)); DO_APP_FUNC(0x003BA270, void, LobbyManager_FFIMethods_ConnectLobbyMethod_EndInvoke, (LobbyManager_FFIMethods_ConnectLobbyMethod * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003F4360, void, LobbyManager_FFIMethods_ConnectLobbyWithActivitySecretCallback__ctor, (LobbyManager_FFIMethods_ConnectLobbyWithActivitySecretCallback * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EDBB0, void, LobbyManager_FFIMethods_ConnectLobbyWithActivitySecretCallback_Invoke, (LobbyManager_FFIMethods_ConnectLobbyWithActivitySecretCallback * __this, void * ptr, Result__Enum result, Lobby lobby, MethodInfo * method)); -DO_APP_FUNC(0x00404510, IAsyncResult *, LobbyManager_FFIMethods_ConnectLobbyWithActivitySecretCallback_BeginInvoke, (LobbyManager_FFIMethods_ConnectLobbyWithActivitySecretCallback * __this, void * ptr, Result__Enum result, Lobby lobby, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003EC4B0, void, LobbyManager_FFIMethods_ConnectLobbyWithActivitySecretCallback_EndInvoke, (LobbyManager_FFIMethods_ConnectLobbyWithActivitySecretCallback * __this, Lobby lobby, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EDBB0, void, LobbyManager_FFIMethods_ConnectLobbyWithActivitySecretCallback_Invoke, (LobbyManager_FFIMethods_ConnectLobbyWithActivitySecretCallback * __this, void * ptr, Result__Enum result, Lobby * lobby, MethodInfo * method)); +DO_APP_FUNC(0x00404510, IAsyncResult *, LobbyManager_FFIMethods_ConnectLobbyWithActivitySecretCallback_BeginInvoke, (LobbyManager_FFIMethods_ConnectLobbyWithActivitySecretCallback * __this, void * ptr, Result__Enum result, Lobby * lobby, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003EC4B0, void, LobbyManager_FFIMethods_ConnectLobbyWithActivitySecretCallback_EndInvoke, (LobbyManager_FFIMethods_ConnectLobbyWithActivitySecretCallback * __this, Lobby * lobby, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003ED7D0, void, LobbyManager_FFIMethods_ConnectLobbyWithActivitySecretMethod__ctor, (LobbyManager_FFIMethods_ConnectLobbyWithActivitySecretMethod * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EC600, void, LobbyManager_FFIMethods_ConnectLobbyWithActivitySecretMethod_Invoke, (LobbyManager_FFIMethods_ConnectLobbyWithActivitySecretMethod * __this, void * methodsPtr, String * activitySecret, void * callbackData, LobbyManager_FFIMethods_ConnectLobbyWithActivitySecretCallback * callback, MethodInfo * method)); DO_APP_FUNC(0x004045E0, IAsyncResult *, LobbyManager_FFIMethods_ConnectLobbyWithActivitySecretMethod_BeginInvoke, (LobbyManager_FFIMethods_ConnectLobbyWithActivitySecretMethod * __this, void * methodsPtr, String * activitySecret, void * callbackData, LobbyManager_FFIMethods_ConnectLobbyWithActivitySecretCallback * callback, AsyncCallback * __callback, Object * object, MethodInfo * method)); @@ -81799,9 +93022,9 @@ DO_APP_FUNC(0x003EC600, void, LobbyManager_FFIMethods_DisconnectLobbyMethod_Invo DO_APP_FUNC(0x00404740, IAsyncResult *, LobbyManager_FFIMethods_DisconnectLobbyMethod_BeginInvoke, (LobbyManager_FFIMethods_DisconnectLobbyMethod * __this, void * methodsPtr, int64_t lobbyId, void * callbackData, LobbyManager_FFIMethods_DisconnectLobbyCallback * callback, AsyncCallback * __callback, Object * object, MethodInfo * method)); DO_APP_FUNC(0x003BA270, void, LobbyManager_FFIMethods_DisconnectLobbyMethod_EndInvoke, (LobbyManager_FFIMethods_DisconnectLobbyMethod * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003FABF0, void, LobbyManager_FFIMethods_GetLobbyMethod__ctor, (LobbyManager_FFIMethods_GetLobbyMethod * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EF9C0, Result__Enum, LobbyManager_FFIMethods_GetLobbyMethod_Invoke, (LobbyManager_FFIMethods_GetLobbyMethod * __this, void * methodsPtr, int64_t lobbyId, Lobby lobby, MethodInfo * method)); -DO_APP_FUNC(0x00404810, IAsyncResult *, LobbyManager_FFIMethods_GetLobbyMethod_BeginInvoke, (LobbyManager_FFIMethods_GetLobbyMethod * __this, void * methodsPtr, int64_t lobbyId, Lobby lobby, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003F75B0, Result__Enum, LobbyManager_FFIMethods_GetLobbyMethod_EndInvoke, (LobbyManager_FFIMethods_GetLobbyMethod * __this, Lobby lobby, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EF9C0, Result__Enum, LobbyManager_FFIMethods_GetLobbyMethod_Invoke, (LobbyManager_FFIMethods_GetLobbyMethod * __this, void * methodsPtr, int64_t lobbyId, Lobby * lobby, MethodInfo * method)); +DO_APP_FUNC(0x00404810, IAsyncResult *, LobbyManager_FFIMethods_GetLobbyMethod_BeginInvoke, (LobbyManager_FFIMethods_GetLobbyMethod * __this, void * methodsPtr, int64_t lobbyId, Lobby * lobby, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003F75B0, Result__Enum, LobbyManager_FFIMethods_GetLobbyMethod_EndInvoke, (LobbyManager_FFIMethods_GetLobbyMethod * __this, Lobby * lobby, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003FABF0, void, LobbyManager_FFIMethods_GetLobbyActivitySecretMethod__ctor, (LobbyManager_FFIMethods_GetLobbyActivitySecretMethod * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EF9C0, Result__Enum, LobbyManager_FFIMethods_GetLobbyActivitySecretMethod_Invoke, (LobbyManager_FFIMethods_GetLobbyActivitySecretMethod * __this, void * methodsPtr, int64_t lobbyId, StringBuilder * secret, MethodInfo * method)); DO_APP_FUNC(0x004048E0, IAsyncResult *, LobbyManager_FFIMethods_GetLobbyActivitySecretMethod_BeginInvoke, (LobbyManager_FFIMethods_GetLobbyActivitySecretMethod * __this, void * methodsPtr, int64_t lobbyId, StringBuilder * secret, AsyncCallback * callback, Object * object, MethodInfo * method)); @@ -81815,21 +93038,21 @@ DO_APP_FUNC(0x003F09C0, Result__Enum, LobbyManager_FFIMethods_GetLobbyMetadataKe DO_APP_FUNC(0x00404CB0, IAsyncResult *, LobbyManager_FFIMethods_GetLobbyMetadataKeyMethod_BeginInvoke, (LobbyManager_FFIMethods_GetLobbyMetadataKeyMethod * __this, void * methodsPtr, int64_t lobbyId, int32_t index, StringBuilder * key, AsyncCallback * callback, Object * object, MethodInfo * method)); DO_APP_FUNC(0x003ED3D0, Result__Enum, LobbyManager_FFIMethods_GetLobbyMetadataKeyMethod_EndInvoke, (LobbyManager_FFIMethods_GetLobbyMetadataKeyMethod * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003FABF0, void, LobbyManager_FFIMethods_LobbyMetadataCountMethod__ctor, (LobbyManager_FFIMethods_LobbyMetadataCountMethod * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EF9C0, Result__Enum, LobbyManager_FFIMethods_LobbyMetadataCountMethod_Invoke, (LobbyManager_FFIMethods_LobbyMetadataCountMethod * __this, void * methodsPtr, int64_t lobbyId, int32_t count, MethodInfo * method)); -DO_APP_FUNC(0x00404D90, IAsyncResult *, LobbyManager_FFIMethods_LobbyMetadataCountMethod_BeginInvoke, (LobbyManager_FFIMethods_LobbyMetadataCountMethod * __this, void * methodsPtr, int64_t lobbyId, int32_t count, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003F75B0, Result__Enum, LobbyManager_FFIMethods_LobbyMetadataCountMethod_EndInvoke, (LobbyManager_FFIMethods_LobbyMetadataCountMethod * __this, int32_t count, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EF9C0, Result__Enum, LobbyManager_FFIMethods_LobbyMetadataCountMethod_Invoke, (LobbyManager_FFIMethods_LobbyMetadataCountMethod * __this, void * methodsPtr, int64_t lobbyId, int32_t * count, MethodInfo * method)); +DO_APP_FUNC(0x00404D90, IAsyncResult *, LobbyManager_FFIMethods_LobbyMetadataCountMethod_BeginInvoke, (LobbyManager_FFIMethods_LobbyMetadataCountMethod * __this, void * methodsPtr, int64_t lobbyId, int32_t * count, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003F75B0, Result__Enum, LobbyManager_FFIMethods_LobbyMetadataCountMethod_EndInvoke, (LobbyManager_FFIMethods_LobbyMetadataCountMethod * __this, int32_t * count, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003FABF0, void, LobbyManager_FFIMethods_MemberCountMethod__ctor, (LobbyManager_FFIMethods_MemberCountMethod * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EF9C0, Result__Enum, LobbyManager_FFIMethods_MemberCountMethod_Invoke, (LobbyManager_FFIMethods_MemberCountMethod * __this, void * methodsPtr, int64_t lobbyId, int32_t count, MethodInfo * method)); -DO_APP_FUNC(0x00404E60, IAsyncResult *, LobbyManager_FFIMethods_MemberCountMethod_BeginInvoke, (LobbyManager_FFIMethods_MemberCountMethod * __this, void * methodsPtr, int64_t lobbyId, int32_t count, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003F75B0, Result__Enum, LobbyManager_FFIMethods_MemberCountMethod_EndInvoke, (LobbyManager_FFIMethods_MemberCountMethod * __this, int32_t count, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EF9C0, Result__Enum, LobbyManager_FFIMethods_MemberCountMethod_Invoke, (LobbyManager_FFIMethods_MemberCountMethod * __this, void * methodsPtr, int64_t lobbyId, int32_t * count, MethodInfo * method)); +DO_APP_FUNC(0x00404E60, IAsyncResult *, LobbyManager_FFIMethods_MemberCountMethod_BeginInvoke, (LobbyManager_FFIMethods_MemberCountMethod * __this, void * methodsPtr, int64_t lobbyId, int32_t * count, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003F75B0, Result__Enum, LobbyManager_FFIMethods_MemberCountMethod_EndInvoke, (LobbyManager_FFIMethods_MemberCountMethod * __this, int32_t * count, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x00404B80, void, LobbyManager_FFIMethods_GetMemberUserIdMethod__ctor, (LobbyManager_FFIMethods_GetMemberUserIdMethod * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003F09C0, Result__Enum, LobbyManager_FFIMethods_GetMemberUserIdMethod_Invoke, (LobbyManager_FFIMethods_GetMemberUserIdMethod * __this, void * methodsPtr, int64_t lobbyId, int32_t index, int64_t userId, MethodInfo * method)); -DO_APP_FUNC(0x00404F30, IAsyncResult *, LobbyManager_FFIMethods_GetMemberUserIdMethod_BeginInvoke, (LobbyManager_FFIMethods_GetMemberUserIdMethod * __this, void * methodsPtr, int64_t lobbyId, int32_t index, int64_t userId, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003F75B0, Result__Enum, LobbyManager_FFIMethods_GetMemberUserIdMethod_EndInvoke, (LobbyManager_FFIMethods_GetMemberUserIdMethod * __this, int64_t userId, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003F09C0, Result__Enum, LobbyManager_FFIMethods_GetMemberUserIdMethod_Invoke, (LobbyManager_FFIMethods_GetMemberUserIdMethod * __this, void * methodsPtr, int64_t lobbyId, int32_t index, int64_t * userId, MethodInfo * method)); +DO_APP_FUNC(0x00404F30, IAsyncResult *, LobbyManager_FFIMethods_GetMemberUserIdMethod_BeginInvoke, (LobbyManager_FFIMethods_GetMemberUserIdMethod * __this, void * methodsPtr, int64_t lobbyId, int32_t index, int64_t * userId, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003F75B0, Result__Enum, LobbyManager_FFIMethods_GetMemberUserIdMethod_EndInvoke, (LobbyManager_FFIMethods_GetMemberUserIdMethod * __this, int64_t * userId, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x00403A60, void, LobbyManager_FFIMethods_GetMemberUserMethod__ctor, (LobbyManager_FFIMethods_GetMemberUserMethod * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003F09C0, Result__Enum, LobbyManager_FFIMethods_GetMemberUserMethod_Invoke, (LobbyManager_FFIMethods_GetMemberUserMethod * __this, void * methodsPtr, int64_t lobbyId, int64_t userId, User user, MethodInfo * method)); -DO_APP_FUNC(0x00405020, IAsyncResult *, LobbyManager_FFIMethods_GetMemberUserMethod_BeginInvoke, (LobbyManager_FFIMethods_GetMemberUserMethod * __this, void * methodsPtr, int64_t lobbyId, int64_t userId, User user, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003F75B0, Result__Enum, LobbyManager_FFIMethods_GetMemberUserMethod_EndInvoke, (LobbyManager_FFIMethods_GetMemberUserMethod * __this, User user, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003F09C0, Result__Enum, LobbyManager_FFIMethods_GetMemberUserMethod_Invoke, (LobbyManager_FFIMethods_GetMemberUserMethod * __this, void * methodsPtr, int64_t lobbyId, int64_t userId, User * user, MethodInfo * method)); +DO_APP_FUNC(0x00405020, IAsyncResult *, LobbyManager_FFIMethods_GetMemberUserMethod_BeginInvoke, (LobbyManager_FFIMethods_GetMemberUserMethod * __this, void * methodsPtr, int64_t lobbyId, int64_t userId, User * user, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003F75B0, Result__Enum, LobbyManager_FFIMethods_GetMemberUserMethod_EndInvoke, (LobbyManager_FFIMethods_GetMemberUserMethod * __this, User * user, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x00405110, void, LobbyManager_FFIMethods_GetMemberMetadataValueMethod__ctor, (LobbyManager_FFIMethods_GetMemberMetadataValueMethod * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003F0780, Result__Enum, LobbyManager_FFIMethods_GetMemberMetadataValueMethod_Invoke, (LobbyManager_FFIMethods_GetMemberMetadataValueMethod * __this, void * methodsPtr, int64_t lobbyId, int64_t userId, String * key, StringBuilder * value, MethodInfo * method)); DO_APP_FUNC(0x00405240, IAsyncResult *, LobbyManager_FFIMethods_GetMemberMetadataValueMethod_BeginInvoke, (LobbyManager_FFIMethods_GetMemberMetadataValueMethod * __this, void * methodsPtr, int64_t lobbyId, int64_t userId, String * key, StringBuilder * value, AsyncCallback * callback, Object * object, MethodInfo * method)); @@ -81839,9 +93062,9 @@ DO_APP_FUNC(0x003F0780, Result__Enum, LobbyManager_FFIMethods_GetMemberMetadataK DO_APP_FUNC(0x00405450, IAsyncResult *, LobbyManager_FFIMethods_GetMemberMetadataKeyMethod_BeginInvoke, (LobbyManager_FFIMethods_GetMemberMetadataKeyMethod * __this, void * methodsPtr, int64_t lobbyId, int64_t userId, int32_t index, StringBuilder * key, AsyncCallback * callback, Object * object, MethodInfo * method)); DO_APP_FUNC(0x003ED3D0, Result__Enum, LobbyManager_FFIMethods_GetMemberMetadataKeyMethod_EndInvoke, (LobbyManager_FFIMethods_GetMemberMetadataKeyMethod * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x00403A60, void, LobbyManager_FFIMethods_MemberMetadataCountMethod__ctor, (LobbyManager_FFIMethods_MemberMetadataCountMethod * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003F09C0, Result__Enum, LobbyManager_FFIMethods_MemberMetadataCountMethod_Invoke, (LobbyManager_FFIMethods_MemberMetadataCountMethod * __this, void * methodsPtr, int64_t lobbyId, int64_t userId, int32_t count, MethodInfo * method)); -DO_APP_FUNC(0x00405540, IAsyncResult *, LobbyManager_FFIMethods_MemberMetadataCountMethod_BeginInvoke, (LobbyManager_FFIMethods_MemberMetadataCountMethod * __this, void * methodsPtr, int64_t lobbyId, int64_t userId, int32_t count, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003F75B0, Result__Enum, LobbyManager_FFIMethods_MemberMetadataCountMethod_EndInvoke, (LobbyManager_FFIMethods_MemberMetadataCountMethod * __this, int32_t count, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003F09C0, Result__Enum, LobbyManager_FFIMethods_MemberMetadataCountMethod_Invoke, (LobbyManager_FFIMethods_MemberMetadataCountMethod * __this, void * methodsPtr, int64_t lobbyId, int64_t userId, int32_t * count, MethodInfo * method)); +DO_APP_FUNC(0x00405540, IAsyncResult *, LobbyManager_FFIMethods_MemberMetadataCountMethod_BeginInvoke, (LobbyManager_FFIMethods_MemberMetadataCountMethod * __this, void * methodsPtr, int64_t lobbyId, int64_t userId, int32_t * count, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003F75B0, Result__Enum, LobbyManager_FFIMethods_MemberMetadataCountMethod_EndInvoke, (LobbyManager_FFIMethods_MemberMetadataCountMethod * __this, int32_t * count, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003ED5F0, void, LobbyManager_FFIMethods_UpdateMemberCallback__ctor, (LobbyManager_FFIMethods_UpdateMemberCallback * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EC2D0, void, LobbyManager_FFIMethods_UpdateMemberCallback_Invoke, (LobbyManager_FFIMethods_UpdateMemberCallback * __this, void * ptr, Result__Enum result, MethodInfo * method)); DO_APP_FUNC(0x00405630, IAsyncResult *, LobbyManager_FFIMethods_UpdateMemberCallback_BeginInvoke, (LobbyManager_FFIMethods_UpdateMemberCallback * __this, void * ptr, Result__Enum result, AsyncCallback * callback, Object * object, MethodInfo * method)); @@ -81859,9 +93082,9 @@ DO_APP_FUNC(0x003EE140, void, LobbyManager_FFIMethods_SendLobbyMessageMethod_Inv DO_APP_FUNC(0x00405AF0, IAsyncResult *, LobbyManager_FFIMethods_SendLobbyMessageMethod_BeginInvoke, (LobbyManager_FFIMethods_SendLobbyMessageMethod * __this, void * methodsPtr, int64_t lobbyId, Byte__Array * data, int32_t dataLen, void * callbackData, LobbyManager_FFIMethods_SendLobbyMessageCallback * callback, AsyncCallback * __callback, Object * object, MethodInfo * method)); DO_APP_FUNC(0x003BA270, void, LobbyManager_FFIMethods_SendLobbyMessageMethod_EndInvoke, (LobbyManager_FFIMethods_SendLobbyMessageMethod * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003ED200, void, LobbyManager_FFIMethods_GetSearchQueryMethod__ctor, (LobbyManager_FFIMethods_GetSearchQueryMethod * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003ED330, Result__Enum, LobbyManager_FFIMethods_GetSearchQueryMethod_Invoke, (LobbyManager_FFIMethods_GetSearchQueryMethod * __this, void * methodsPtr, void * query, MethodInfo * method)); -DO_APP_FUNC(0x00405C00, IAsyncResult *, LobbyManager_FFIMethods_GetSearchQueryMethod_BeginInvoke, (LobbyManager_FFIMethods_GetSearchQueryMethod * __this, void * methodsPtr, void * query, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003F75B0, Result__Enum, LobbyManager_FFIMethods_GetSearchQueryMethod_EndInvoke, (LobbyManager_FFIMethods_GetSearchQueryMethod * __this, void * query, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003ED330, Result__Enum, LobbyManager_FFIMethods_GetSearchQueryMethod_Invoke, (LobbyManager_FFIMethods_GetSearchQueryMethod * __this, void * methodsPtr, void * * query, MethodInfo * method)); +DO_APP_FUNC(0x00405C00, IAsyncResult *, LobbyManager_FFIMethods_GetSearchQueryMethod_BeginInvoke, (LobbyManager_FFIMethods_GetSearchQueryMethod * __this, void * methodsPtr, void * * query, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003F75B0, Result__Enum, LobbyManager_FFIMethods_GetSearchQueryMethod_EndInvoke, (LobbyManager_FFIMethods_GetSearchQueryMethod * __this, void * * query, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003ED5F0, void, LobbyManager_FFIMethods_SearchCallback__ctor, (LobbyManager_FFIMethods_SearchCallback * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EC2D0, void, LobbyManager_FFIMethods_SearchCallback_Invoke, (LobbyManager_FFIMethods_SearchCallback * __this, void * ptr, Result__Enum result, MethodInfo * method)); DO_APP_FUNC(0x00405CA0, IAsyncResult *, LobbyManager_FFIMethods_SearchCallback_BeginInvoke, (LobbyManager_FFIMethods_SearchCallback * __this, void * ptr, Result__Enum result, AsyncCallback * callback, Object * object, MethodInfo * method)); @@ -81871,13 +93094,13 @@ DO_APP_FUNC(0x003EC600, void, LobbyManager_FFIMethods_SearchMethod_Invoke, (Lobb DO_APP_FUNC(0x00405D50, IAsyncResult *, LobbyManager_FFIMethods_SearchMethod_BeginInvoke, (LobbyManager_FFIMethods_SearchMethod * __this, void * methodsPtr, void * query, void * callbackData, LobbyManager_FFIMethods_SearchCallback * callback, AsyncCallback * __callback, Object * object, MethodInfo * method)); DO_APP_FUNC(0x003BA270, void, LobbyManager_FFIMethods_SearchMethod_EndInvoke, (LobbyManager_FFIMethods_SearchMethod * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003EC1A0, void, LobbyManager_FFIMethods_LobbyCountMethod__ctor, (LobbyManager_FFIMethods_LobbyCountMethod * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EC2D0, void, LobbyManager_FFIMethods_LobbyCountMethod_Invoke, (LobbyManager_FFIMethods_LobbyCountMethod * __this, void * methodsPtr, int32_t count, MethodInfo * method)); -DO_APP_FUNC(0x00405E10, IAsyncResult *, LobbyManager_FFIMethods_LobbyCountMethod_BeginInvoke, (LobbyManager_FFIMethods_LobbyCountMethod * __this, void * methodsPtr, int32_t count, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003EC4B0, void, LobbyManager_FFIMethods_LobbyCountMethod_EndInvoke, (LobbyManager_FFIMethods_LobbyCountMethod * __this, int32_t count, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EC2D0, void, LobbyManager_FFIMethods_LobbyCountMethod_Invoke, (LobbyManager_FFIMethods_LobbyCountMethod * __this, void * methodsPtr, int32_t * count, MethodInfo * method)); +DO_APP_FUNC(0x00405E10, IAsyncResult *, LobbyManager_FFIMethods_LobbyCountMethod_BeginInvoke, (LobbyManager_FFIMethods_LobbyCountMethod * __this, void * methodsPtr, int32_t * count, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003EC4B0, void, LobbyManager_FFIMethods_LobbyCountMethod_EndInvoke, (LobbyManager_FFIMethods_LobbyCountMethod * __this, int32_t * count, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003F7830, void, LobbyManager_FFIMethods_GetLobbyIdMethod__ctor, (LobbyManager_FFIMethods_GetLobbyIdMethod * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EF9C0, Result__Enum, LobbyManager_FFIMethods_GetLobbyIdMethod_Invoke, (LobbyManager_FFIMethods_GetLobbyIdMethod * __this, void * methodsPtr, int32_t index, int64_t lobbyId, MethodInfo * method)); -DO_APP_FUNC(0x00405EC0, IAsyncResult *, LobbyManager_FFIMethods_GetLobbyIdMethod_BeginInvoke, (LobbyManager_FFIMethods_GetLobbyIdMethod * __this, void * methodsPtr, int32_t index, int64_t lobbyId, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003F75B0, Result__Enum, LobbyManager_FFIMethods_GetLobbyIdMethod_EndInvoke, (LobbyManager_FFIMethods_GetLobbyIdMethod * __this, int64_t lobbyId, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EF9C0, Result__Enum, LobbyManager_FFIMethods_GetLobbyIdMethod_Invoke, (LobbyManager_FFIMethods_GetLobbyIdMethod * __this, void * methodsPtr, int32_t index, int64_t * lobbyId, MethodInfo * method)); +DO_APP_FUNC(0x00405EC0, IAsyncResult *, LobbyManager_FFIMethods_GetLobbyIdMethod_BeginInvoke, (LobbyManager_FFIMethods_GetLobbyIdMethod * __this, void * methodsPtr, int32_t index, int64_t * lobbyId, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003F75B0, Result__Enum, LobbyManager_FFIMethods_GetLobbyIdMethod_EndInvoke, (LobbyManager_FFIMethods_GetLobbyIdMethod * __this, int64_t * lobbyId, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003ED5F0, void, LobbyManager_FFIMethods_ConnectVoiceCallback__ctor, (LobbyManager_FFIMethods_ConnectVoiceCallback * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EC2D0, void, LobbyManager_FFIMethods_ConnectVoiceCallback_Invoke, (LobbyManager_FFIMethods_ConnectVoiceCallback * __this, void * ptr, Result__Enum result, MethodInfo * method)); DO_APP_FUNC(0x00405F90, IAsyncResult *, LobbyManager_FFIMethods_ConnectVoiceCallback_BeginInvoke, (LobbyManager_FFIMethods_ConnectVoiceCallback * __this, void * ptr, Result__Enum result, AsyncCallback * callback, Object * object, MethodInfo * method)); @@ -81915,9 +93138,9 @@ DO_APP_FUNC(0x004067F0, Result__Enum, LobbyManager_FFIMethods_SendNetworkMessage DO_APP_FUNC(0x00406810, IAsyncResult *, LobbyManager_FFIMethods_SendNetworkMessageMethod_BeginInvoke, (LobbyManager_FFIMethods_SendNetworkMessageMethod * __this, void * methodsPtr, int64_t lobbyId, int64_t userId, uint8_t channelId, Byte__Array * data, int32_t dataLen, AsyncCallback * callback, Object * object, MethodInfo * method)); DO_APP_FUNC(0x003ED3D0, Result__Enum, LobbyManager_FFIMethods_SendNetworkMessageMethod_EndInvoke, (LobbyManager_FFIMethods_SendNetworkMessageMethod * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003F4EB0, void, LobbyManager_CreateLobbyHandler__ctor, (LobbyManager_CreateLobbyHandler * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EC2D0, void, LobbyManager_CreateLobbyHandler_Invoke, (LobbyManager_CreateLobbyHandler * __this, Result__Enum result, Lobby lobby, MethodInfo * method)); -DO_APP_FUNC(0x00406930, IAsyncResult *, LobbyManager_CreateLobbyHandler_BeginInvoke, (LobbyManager_CreateLobbyHandler * __this, Result__Enum result, Lobby lobby, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003EC4B0, void, LobbyManager_CreateLobbyHandler_EndInvoke, (LobbyManager_CreateLobbyHandler * __this, Lobby lobby, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EC2D0, void, LobbyManager_CreateLobbyHandler_Invoke, (LobbyManager_CreateLobbyHandler * __this, Result__Enum result, Lobby * lobby, MethodInfo * method)); +DO_APP_FUNC(0x00406930, IAsyncResult *, LobbyManager_CreateLobbyHandler_BeginInvoke, (LobbyManager_CreateLobbyHandler * __this, Result__Enum result, Lobby * lobby, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003EC4B0, void, LobbyManager_CreateLobbyHandler_EndInvoke, (LobbyManager_CreateLobbyHandler * __this, Lobby * lobby, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003EE520, void, LobbyManager_UpdateLobbyHandler__ctor, (LobbyManager_UpdateLobbyHandler * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EE650, void, LobbyManager_UpdateLobbyHandler_Invoke, (LobbyManager_UpdateLobbyHandler * __this, Result__Enum result, MethodInfo * method)); DO_APP_FUNC(0x004069E0, IAsyncResult *, LobbyManager_UpdateLobbyHandler_BeginInvoke, (LobbyManager_UpdateLobbyHandler * __this, Result__Enum result, AsyncCallback * callback, Object * object, MethodInfo * method)); @@ -81927,13 +93150,13 @@ DO_APP_FUNC(0x003EE650, void, LobbyManager_DeleteLobbyHandler_Invoke, (LobbyMana DO_APP_FUNC(0x00406A60, IAsyncResult *, LobbyManager_DeleteLobbyHandler_BeginInvoke, (LobbyManager_DeleteLobbyHandler * __this, Result__Enum result, AsyncCallback * callback, Object * object, MethodInfo * method)); DO_APP_FUNC(0x003BA270, void, LobbyManager_DeleteLobbyHandler_EndInvoke, (LobbyManager_DeleteLobbyHandler * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003F4EB0, void, LobbyManager_ConnectLobbyHandler__ctor, (LobbyManager_ConnectLobbyHandler * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EC2D0, void, LobbyManager_ConnectLobbyHandler_Invoke, (LobbyManager_ConnectLobbyHandler * __this, Result__Enum result, Lobby lobby, MethodInfo * method)); -DO_APP_FUNC(0x00406AE0, IAsyncResult *, LobbyManager_ConnectLobbyHandler_BeginInvoke, (LobbyManager_ConnectLobbyHandler * __this, Result__Enum result, Lobby lobby, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003EC4B0, void, LobbyManager_ConnectLobbyHandler_EndInvoke, (LobbyManager_ConnectLobbyHandler * __this, Lobby lobby, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EC2D0, void, LobbyManager_ConnectLobbyHandler_Invoke, (LobbyManager_ConnectLobbyHandler * __this, Result__Enum result, Lobby * lobby, MethodInfo * method)); +DO_APP_FUNC(0x00406AE0, IAsyncResult *, LobbyManager_ConnectLobbyHandler_BeginInvoke, (LobbyManager_ConnectLobbyHandler * __this, Result__Enum result, Lobby * lobby, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003EC4B0, void, LobbyManager_ConnectLobbyHandler_EndInvoke, (LobbyManager_ConnectLobbyHandler * __this, Lobby * lobby, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003F4EB0, void, LobbyManager_ConnectLobbyWithActivitySecretHandler__ctor, (LobbyManager_ConnectLobbyWithActivitySecretHandler * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EC2D0, void, LobbyManager_ConnectLobbyWithActivitySecretHandler_Invoke, (LobbyManager_ConnectLobbyWithActivitySecretHandler * __this, Result__Enum result, Lobby lobby, MethodInfo * method)); -DO_APP_FUNC(0x00406B90, IAsyncResult *, LobbyManager_ConnectLobbyWithActivitySecretHandler_BeginInvoke, (LobbyManager_ConnectLobbyWithActivitySecretHandler * __this, Result__Enum result, Lobby lobby, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003EC4B0, void, LobbyManager_ConnectLobbyWithActivitySecretHandler_EndInvoke, (LobbyManager_ConnectLobbyWithActivitySecretHandler * __this, Lobby lobby, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EC2D0, void, LobbyManager_ConnectLobbyWithActivitySecretHandler_Invoke, (LobbyManager_ConnectLobbyWithActivitySecretHandler * __this, Result__Enum result, Lobby * lobby, MethodInfo * method)); +DO_APP_FUNC(0x00406B90, IAsyncResult *, LobbyManager_ConnectLobbyWithActivitySecretHandler_BeginInvoke, (LobbyManager_ConnectLobbyWithActivitySecretHandler * __this, Result__Enum result, Lobby * lobby, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003EC4B0, void, LobbyManager_ConnectLobbyWithActivitySecretHandler_EndInvoke, (LobbyManager_ConnectLobbyWithActivitySecretHandler * __this, Lobby * lobby, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003EE520, void, LobbyManager_DisconnectLobbyHandler__ctor, (LobbyManager_DisconnectLobbyHandler * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EE650, void, LobbyManager_DisconnectLobbyHandler_Invoke, (LobbyManager_DisconnectLobbyHandler * __this, Result__Enum result, MethodInfo * method)); DO_APP_FUNC(0x00406C40, IAsyncResult *, LobbyManager_DisconnectLobbyHandler_BeginInvoke, (LobbyManager_DisconnectLobbyHandler * __this, Result__Enum result, AsyncCallback * callback, Object * object, MethodInfo * method)); @@ -81995,18 +93218,28 @@ DO_APP_FUNC(0x00407830, void, NetworkManager_add_OnMessage, (NetworkManager * __ DO_APP_FUNC(0x00407920, void, NetworkManager_remove_OnMessage, (NetworkManager * __this, NetworkManager_MessageHandler * value, MethodInfo * method)); DO_APP_FUNC(0x00407A10, void, NetworkManager_add_OnRouteUpdate, (NetworkManager * __this, NetworkManager_RouteUpdateHandler * value, MethodInfo * method)); DO_APP_FUNC(0x00407B00, void, NetworkManager_remove_OnRouteUpdate, (NetworkManager * __this, NetworkManager_RouteUpdateHandler * value, MethodInfo * method)); -DO_APP_FUNC(0x00407BF0, void, NetworkManager__ctor, (NetworkManager * __this, void * ptr, void * eventsPtr, NetworkManager_FFIEvents events, MethodInfo * method)); -DO_APP_FUNC(0x00407D20, void, NetworkManager_InitEvents, (NetworkManager * __this, void * eventsPtr, NetworkManager_FFIEvents events, MethodInfo * method)); +DO_APP_FUNC(0x00407BF0, void, NetworkManager__ctor, (NetworkManager * __this, void * ptr, void * eventsPtr, NetworkManager_FFIEvents * events, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04ED0, NetworkManager__ctor__MethodInfo); +DO_APP_FUNC(0x00407D20, void, NetworkManager_InitEvents, (NetworkManager * __this, void * eventsPtr, NetworkManager_FFIEvents * events, MethodInfo * method)); DO_APP_FUNC(0x00408150, uint64_t, NetworkManager_GetPeerId, (NetworkManager * __this, MethodInfo * method)); DO_APP_FUNC(0x004081B0, void, NetworkManager_Flush, (NetworkManager * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04EA0, NetworkManager_Flush__MethodInfo); DO_APP_FUNC(0x00408250, void, NetworkManager_OpenPeer, (NetworkManager * __this, uint64_t peerId, String * routeData, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04E98, NetworkManager_OpenPeer__MethodInfo); DO_APP_FUNC(0x00408310, void, NetworkManager_UpdatePeer, (NetworkManager * __this, uint64_t peerId, String * routeData, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04E90, NetworkManager_UpdatePeer__MethodInfo); DO_APP_FUNC(0x004083D0, void, NetworkManager_ClosePeer, (NetworkManager * __this, uint64_t peerId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04E88, NetworkManager_ClosePeer__MethodInfo); DO_APP_FUNC(0x00408480, void, NetworkManager_OpenChannel, (NetworkManager * __this, uint64_t peerId, uint8_t channelId, bool reliable, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04E80, NetworkManager_OpenChannel__MethodInfo); DO_APP_FUNC(0x00408550, void, NetworkManager_CloseChannel, (NetworkManager * __this, uint64_t peerId, uint8_t channelId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04E78, NetworkManager_CloseChannel__MethodInfo); DO_APP_FUNC(0x00408610, void, NetworkManager_SendMessage, (NetworkManager * __this, uint64_t peerId, uint8_t channelId, Byte__Array * data, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04E70, NetworkManager_SendMessage__MethodInfo); DO_APP_FUNC(0x004086F0, void, NetworkManager_OnMessageImpl, (void * ptr, uint64_t peerId, uint8_t channelId, void * dataPtr, int32_t dataLen, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04EB8, NetworkManager_OnMessageImpl__MethodInfo); DO_APP_FUNC(0x00408900, void, NetworkManager_OnRouteUpdateImpl, (void * ptr, String * routeData, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04EB0, NetworkManager_OnRouteUpdateImpl__MethodInfo); DO_APP_FUNC(0x00408A50, void, NetworkManager_FFIEvents_MessageHandler__ctor, (NetworkManager_FFIEvents_MessageHandler * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EDE50, void, NetworkManager_FFIEvents_MessageHandler_Invoke, (NetworkManager_FFIEvents_MessageHandler * __this, void * ptr, uint64_t peerId, uint8_t channelId, void * dataPtr, int32_t dataLen, MethodInfo * method)); DO_APP_FUNC(0x00408B80, IAsyncResult *, NetworkManager_FFIEvents_MessageHandler_BeginInvoke, (NetworkManager_FFIEvents_MessageHandler * __this, void * ptr, uint64_t peerId, uint8_t channelId, void * dataPtr, int32_t dataLen, AsyncCallback * callback, Object * object, MethodInfo * method)); @@ -82016,9 +93249,9 @@ DO_APP_FUNC(0x003EC2D0, void, NetworkManager_FFIEvents_RouteUpdateHandler_Invoke DO_APP_FUNC(0x00408C90, IAsyncResult *, NetworkManager_FFIEvents_RouteUpdateHandler_BeginInvoke, (NetworkManager_FFIEvents_RouteUpdateHandler * __this, void * ptr, String * routeData, AsyncCallback * callback, Object * object, MethodInfo * method)); DO_APP_FUNC(0x003BA270, void, NetworkManager_FFIEvents_RouteUpdateHandler_EndInvoke, (NetworkManager_FFIEvents_RouteUpdateHandler * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003EC1A0, void, NetworkManager_FFIMethods_GetPeerIdMethod__ctor, (NetworkManager_FFIMethods_GetPeerIdMethod * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EC2D0, void, NetworkManager_FFIMethods_GetPeerIdMethod_Invoke, (NetworkManager_FFIMethods_GetPeerIdMethod * __this, void * methodsPtr, uint64_t peerId, MethodInfo * method)); -DO_APP_FUNC(0x00408D20, IAsyncResult *, NetworkManager_FFIMethods_GetPeerIdMethod_BeginInvoke, (NetworkManager_FFIMethods_GetPeerIdMethod * __this, void * methodsPtr, uint64_t peerId, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003EC4B0, void, NetworkManager_FFIMethods_GetPeerIdMethod_EndInvoke, (NetworkManager_FFIMethods_GetPeerIdMethod * __this, uint64_t peerId, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EC2D0, void, NetworkManager_FFIMethods_GetPeerIdMethod_Invoke, (NetworkManager_FFIMethods_GetPeerIdMethod * __this, void * methodsPtr, uint64_t * peerId, MethodInfo * method)); +DO_APP_FUNC(0x00408D20, IAsyncResult *, NetworkManager_FFIMethods_GetPeerIdMethod_BeginInvoke, (NetworkManager_FFIMethods_GetPeerIdMethod * __this, void * methodsPtr, uint64_t * peerId, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003EC4B0, void, NetworkManager_FFIMethods_GetPeerIdMethod_EndInvoke, (NetworkManager_FFIMethods_GetPeerIdMethod * __this, uint64_t * peerId, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003F41A0, void, NetworkManager_FFIMethods_FlushMethod__ctor, (NetworkManager_FFIMethods_FlushMethod * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003F42D0, Result__Enum, NetworkManager_FFIMethods_FlushMethod_Invoke, (NetworkManager_FFIMethods_FlushMethod * __this, void * methodsPtr, MethodInfo * method)); DO_APP_FUNC(0x00408DD0, IAsyncResult *, NetworkManager_FFIMethods_FlushMethod_BeginInvoke, (NetworkManager_FFIMethods_FlushMethod * __this, void * methodsPtr, AsyncCallback * callback, Object * object, MethodInfo * method)); @@ -82058,19 +93291,25 @@ DO_APP_FUNC(0x003BA270, void, NetworkManager_RouteUpdateHandler_EndInvoke, (Netw DO_APP_FUNC(0x00409770, OverlayManager_FFIMethods, OverlayManager_get_Methods, (OverlayManager * __this, MethodInfo * method)); DO_APP_FUNC(0x00409940, void, OverlayManager_add_OnToggle, (OverlayManager * __this, OverlayManager_ToggleHandler * value, MethodInfo * method)); DO_APP_FUNC(0x00409A30, void, OverlayManager_remove_OnToggle, (OverlayManager * __this, OverlayManager_ToggleHandler * value, MethodInfo * method)); -DO_APP_FUNC(0x00409B20, void, OverlayManager__ctor, (OverlayManager * __this, void * ptr, void * eventsPtr, OverlayManager_FFIEvents events, MethodInfo * method)); -DO_APP_FUNC(0x00409C50, void, OverlayManager_InitEvents, (OverlayManager * __this, void * eventsPtr, OverlayManager_FFIEvents events, MethodInfo * method)); +DO_APP_FUNC(0x00409B20, void, OverlayManager__ctor, (OverlayManager * __this, void * ptr, void * eventsPtr, OverlayManager_FFIEvents * events, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04E08, OverlayManager__ctor__MethodInfo); +DO_APP_FUNC(0x00409C50, void, OverlayManager_InitEvents, (OverlayManager * __this, void * eventsPtr, OverlayManager_FFIEvents * events, MethodInfo * method)); DO_APP_FUNC(0x00409EE0, bool, OverlayManager_IsEnabled, (OverlayManager * __this, MethodInfo * method)); DO_APP_FUNC(0x00409F40, bool, OverlayManager_IsLocked, (OverlayManager * __this, MethodInfo * method)); DO_APP_FUNC(0x00409FA0, void, OverlayManager_SetLockedCallbackImpl, (void * ptr, Result__Enum result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04DE0, OverlayManager_SetLockedCallbackImpl__MethodInfo); DO_APP_FUNC(0x0040A0D0, void, OverlayManager_SetLocked, (OverlayManager * __this, bool locked, OverlayManager_SetLockedHandler * callback, MethodInfo * method)); DO_APP_FUNC(0x0040A2C0, void, OverlayManager_OpenActivityInviteCallbackImpl, (void * ptr, Result__Enum result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04DC0, OverlayManager_OpenActivityInviteCallbackImpl__MethodInfo); DO_APP_FUNC(0x0040A3F0, void, OverlayManager_OpenActivityInvite, (OverlayManager * __this, ActivityActionType__Enum type, OverlayManager_OpenActivityInviteHandler * callback, MethodInfo * method)); DO_APP_FUNC(0x0040A5E0, void, OverlayManager_OpenGuildInviteCallbackImpl, (void * ptr, Result__Enum result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04DA8, OverlayManager_OpenGuildInviteCallbackImpl__MethodInfo); DO_APP_FUNC(0x0040A710, void, OverlayManager_OpenGuildInvite, (OverlayManager * __this, String * code, OverlayManager_OpenGuildInviteHandler * callback, MethodInfo * method)); DO_APP_FUNC(0x0040A900, void, OverlayManager_OpenVoiceSettingsCallbackImpl, (void * ptr, Result__Enum result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04D90, OverlayManager_OpenVoiceSettingsCallbackImpl__MethodInfo); DO_APP_FUNC(0x0040AA30, void, OverlayManager_OpenVoiceSettings, (OverlayManager * __this, OverlayManager_OpenVoiceSettingsHandler * callback, MethodInfo * method)); DO_APP_FUNC(0x0040AC10, void, OverlayManager_InitDrawingDxgi, (OverlayManager * __this, void * swapchain, bool useMessageForwarding, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04D88, OverlayManager_InitDrawingDxgi__MethodInfo); DO_APP_FUNC(0x0040ACD0, void, OverlayManager_OnPresent, (OverlayManager * __this, MethodInfo * method)); DO_APP_FUNC(0x0040AD20, void, OverlayManager_ForwardMessage, (OverlayManager * __this, void * message, MethodInfo * method)); DO_APP_FUNC(0x0040AD80, void, OverlayManager_KeyEvent, (OverlayManager * __this, bool down, String * keyCode, KeyVariant__Enum variant, MethodInfo * method)); @@ -82080,24 +93319,27 @@ DO_APP_FUNC(0x0040AF00, void, OverlayManager_MouseMotionEvent, (OverlayManager * DO_APP_FUNC(0x0040AF70, void, OverlayManager_ImeCommitText, (OverlayManager * __this, String * text, MethodInfo * method)); DO_APP_FUNC(0x0040AFD0, void, OverlayManager_ImeSetComposition, (OverlayManager * __this, String * text, ImeUnderline underlines, int32_t from, int32_t to, MethodInfo * method)); DO_APP_FUNC(0x0040B060, void, OverlayManager_ImeCancelComposition, (OverlayManager * __this, MethodInfo * method)); -DO_APP_FUNC(0x0040B0B0, void, OverlayManager_SetImeCompositionRangeCallbackCallbackImpl, (void * ptr, int32_t from, int32_t to, Rect_1 bounds, MethodInfo * method)); +DO_APP_FUNC(0x0040B0B0, void, OverlayManager_SetImeCompositionRangeCallbackCallbackImpl, (void * ptr, int32_t from, int32_t to, Rect_1 * bounds, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04D78, OverlayManager_SetImeCompositionRangeCallbackCallbackImpl__MethodInfo); DO_APP_FUNC(0x0040B210, void, OverlayManager_SetImeCompositionRangeCallback, (OverlayManager * __this, OverlayManager_SetImeCompositionRangeCallbackHandler * callback, MethodInfo * method)); DO_APP_FUNC(0x0040B3F0, void, OverlayManager_SetImeSelectionBoundsCallbackCallbackImpl, (void * ptr, Rect_1 anchor, Rect_1 focus, bool isAnchorFirst, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04D60, OverlayManager_SetImeSelectionBoundsCallbackCallbackImpl__MethodInfo); DO_APP_FUNC(0x0040B570, void, OverlayManager_SetImeSelectionBoundsCallback, (OverlayManager * __this, OverlayManager_SetImeSelectionBoundsCallbackHandler * callback, MethodInfo * method)); DO_APP_FUNC(0x0040B750, bool, OverlayManager_IsPointInsideClickZone, (OverlayManager * __this, int32_t x, int32_t y, MethodInfo * method)); DO_APP_FUNC(0x0040B7C0, void, OverlayManager_OnToggleImpl, (void * ptr, bool locked, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04DF8, OverlayManager_OnToggleImpl__MethodInfo); DO_APP_FUNC(0x0040B910, void, OverlayManager_FFIEvents_ToggleHandler__ctor, (OverlayManager_FFIEvents_ToggleHandler * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EC2D0, void, OverlayManager_FFIEvents_ToggleHandler_Invoke, (OverlayManager_FFIEvents_ToggleHandler * __this, void * ptr, bool locked, MethodInfo * method)); DO_APP_FUNC(0x0040BA40, IAsyncResult *, OverlayManager_FFIEvents_ToggleHandler_BeginInvoke, (OverlayManager_FFIEvents_ToggleHandler * __this, void * ptr, bool locked, AsyncCallback * callback, Object * object, MethodInfo * method)); DO_APP_FUNC(0x003BA270, void, OverlayManager_FFIEvents_ToggleHandler_EndInvoke, (OverlayManager_FFIEvents_ToggleHandler * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003EC1A0, void, OverlayManager_FFIMethods_IsEnabledMethod__ctor, (OverlayManager_FFIMethods_IsEnabledMethod * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EC2D0, void, OverlayManager_FFIMethods_IsEnabledMethod_Invoke, (OverlayManager_FFIMethods_IsEnabledMethod * __this, void * methodsPtr, bool enabled, MethodInfo * method)); -DO_APP_FUNC(0x0040BAF0, IAsyncResult *, OverlayManager_FFIMethods_IsEnabledMethod_BeginInvoke, (OverlayManager_FFIMethods_IsEnabledMethod * __this, void * methodsPtr, bool enabled, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003EC4B0, void, OverlayManager_FFIMethods_IsEnabledMethod_EndInvoke, (OverlayManager_FFIMethods_IsEnabledMethod * __this, bool enabled, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EC2D0, void, OverlayManager_FFIMethods_IsEnabledMethod_Invoke, (OverlayManager_FFIMethods_IsEnabledMethod * __this, void * methodsPtr, bool * enabled, MethodInfo * method)); +DO_APP_FUNC(0x0040BAF0, IAsyncResult *, OverlayManager_FFIMethods_IsEnabledMethod_BeginInvoke, (OverlayManager_FFIMethods_IsEnabledMethod * __this, void * methodsPtr, bool * enabled, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003EC4B0, void, OverlayManager_FFIMethods_IsEnabledMethod_EndInvoke, (OverlayManager_FFIMethods_IsEnabledMethod * __this, bool * enabled, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003EC1A0, void, OverlayManager_FFIMethods_IsLockedMethod__ctor, (OverlayManager_FFIMethods_IsLockedMethod * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EC2D0, void, OverlayManager_FFIMethods_IsLockedMethod_Invoke, (OverlayManager_FFIMethods_IsLockedMethod * __this, void * methodsPtr, bool locked, MethodInfo * method)); -DO_APP_FUNC(0x0040BBA0, IAsyncResult *, OverlayManager_FFIMethods_IsLockedMethod_BeginInvoke, (OverlayManager_FFIMethods_IsLockedMethod * __this, void * methodsPtr, bool locked, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003EC4B0, void, OverlayManager_FFIMethods_IsLockedMethod_EndInvoke, (OverlayManager_FFIMethods_IsLockedMethod * __this, bool locked, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EC2D0, void, OverlayManager_FFIMethods_IsLockedMethod_Invoke, (OverlayManager_FFIMethods_IsLockedMethod * __this, void * methodsPtr, bool * locked, MethodInfo * method)); +DO_APP_FUNC(0x0040BBA0, IAsyncResult *, OverlayManager_FFIMethods_IsLockedMethod_BeginInvoke, (OverlayManager_FFIMethods_IsLockedMethod * __this, void * methodsPtr, bool * locked, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003EC4B0, void, OverlayManager_FFIMethods_IsLockedMethod_EndInvoke, (OverlayManager_FFIMethods_IsLockedMethod * __this, bool * locked, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003ED5F0, void, OverlayManager_FFIMethods_SetLockedCallback__ctor, (OverlayManager_FFIMethods_SetLockedCallback * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EC2D0, void, OverlayManager_FFIMethods_SetLockedCallback_Invoke, (OverlayManager_FFIMethods_SetLockedCallback * __this, void * ptr, Result__Enum result, MethodInfo * method)); DO_APP_FUNC(0x0040BC50, IAsyncResult *, OverlayManager_FFIMethods_SetLockedCallback_BeginInvoke, (OverlayManager_FFIMethods_SetLockedCallback * __this, void * ptr, Result__Enum result, AsyncCallback * callback, Object * object, MethodInfo * method)); @@ -82163,17 +93405,17 @@ DO_APP_FUNC(0x003EC2D0, void, OverlayManager_FFIMethods_ImeCommitTextMethod_Invo DO_APP_FUNC(0x0040CBF0, IAsyncResult *, OverlayManager_FFIMethods_ImeCommitTextMethod_BeginInvoke, (OverlayManager_FFIMethods_ImeCommitTextMethod * __this, void * methodsPtr, String * text, AsyncCallback * callback, Object * object, MethodInfo * method)); DO_APP_FUNC(0x003BA270, void, OverlayManager_FFIMethods_ImeCommitTextMethod_EndInvoke, (OverlayManager_FFIMethods_ImeCommitTextMethod * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x0040CC80, void, OverlayManager_FFIMethods_ImeSetCompositionMethod__ctor, (OverlayManager_FFIMethods_ImeSetCompositionMethod * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EDE50, void, OverlayManager_FFIMethods_ImeSetCompositionMethod_Invoke, (OverlayManager_FFIMethods_ImeSetCompositionMethod * __this, void * methodsPtr, String * text, ImeUnderline underlines, int32_t from, int32_t to, MethodInfo * method)); -DO_APP_FUNC(0x0040CDB0, IAsyncResult *, OverlayManager_FFIMethods_ImeSetCompositionMethod_BeginInvoke, (OverlayManager_FFIMethods_ImeSetCompositionMethod * __this, void * methodsPtr, String * text, ImeUnderline underlines, int32_t from, int32_t to, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003EC4B0, void, OverlayManager_FFIMethods_ImeSetCompositionMethod_EndInvoke, (OverlayManager_FFIMethods_ImeSetCompositionMethod * __this, ImeUnderline underlines, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EDE50, void, OverlayManager_FFIMethods_ImeSetCompositionMethod_Invoke, (OverlayManager_FFIMethods_ImeSetCompositionMethod * __this, void * methodsPtr, String * text, ImeUnderline * underlines, int32_t from, int32_t to, MethodInfo * method)); +DO_APP_FUNC(0x0040CDB0, IAsyncResult *, OverlayManager_FFIMethods_ImeSetCompositionMethod_BeginInvoke, (OverlayManager_FFIMethods_ImeSetCompositionMethod * __this, void * methodsPtr, String * text, ImeUnderline * underlines, int32_t from, int32_t to, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003EC4B0, void, OverlayManager_FFIMethods_ImeSetCompositionMethod_EndInvoke, (OverlayManager_FFIMethods_ImeSetCompositionMethod * __this, ImeUnderline * underlines, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003F3FF0, void, OverlayManager_FFIMethods_ImeCancelCompositionMethod__ctor, (OverlayManager_FFIMethods_ImeCancelCompositionMethod * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EE650, void, OverlayManager_FFIMethods_ImeCancelCompositionMethod_Invoke, (OverlayManager_FFIMethods_ImeCancelCompositionMethod * __this, void * methodsPtr, MethodInfo * method)); DO_APP_FUNC(0x0040CEB0, IAsyncResult *, OverlayManager_FFIMethods_ImeCancelCompositionMethod_BeginInvoke, (OverlayManager_FFIMethods_ImeCancelCompositionMethod * __this, void * methodsPtr, AsyncCallback * callback, Object * object, MethodInfo * method)); DO_APP_FUNC(0x003BA270, void, OverlayManager_FFIMethods_ImeCancelCompositionMethod_EndInvoke, (OverlayManager_FFIMethods_ImeCancelCompositionMethod * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x0040CF30, void, OverlayManager_FFIMethods_SetImeCompositionRangeCallbackCallback__ctor, (OverlayManager_FFIMethods_SetImeCompositionRangeCallbackCallback * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EC600, void, OverlayManager_FFIMethods_SetImeCompositionRangeCallbackCallback_Invoke, (OverlayManager_FFIMethods_SetImeCompositionRangeCallbackCallback * __this, void * ptr, int32_t from, int32_t to, Rect_1 bounds, MethodInfo * method)); -DO_APP_FUNC(0x0040D060, IAsyncResult *, OverlayManager_FFIMethods_SetImeCompositionRangeCallbackCallback_BeginInvoke, (OverlayManager_FFIMethods_SetImeCompositionRangeCallbackCallback * __this, void * ptr, int32_t from, int32_t to, Rect_1 bounds, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003EC4B0, void, OverlayManager_FFIMethods_SetImeCompositionRangeCallbackCallback_EndInvoke, (OverlayManager_FFIMethods_SetImeCompositionRangeCallbackCallback * __this, Rect_1 bounds, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EC600, void, OverlayManager_FFIMethods_SetImeCompositionRangeCallbackCallback_Invoke, (OverlayManager_FFIMethods_SetImeCompositionRangeCallbackCallback * __this, void * ptr, int32_t from, int32_t to, Rect_1 * bounds, MethodInfo * method)); +DO_APP_FUNC(0x0040D060, IAsyncResult *, OverlayManager_FFIMethods_SetImeCompositionRangeCallbackCallback_BeginInvoke, (OverlayManager_FFIMethods_SetImeCompositionRangeCallbackCallback * __this, void * ptr, int32_t from, int32_t to, Rect_1 * bounds, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003EC4B0, void, OverlayManager_FFIMethods_SetImeCompositionRangeCallbackCallback_EndInvoke, (OverlayManager_FFIMethods_SetImeCompositionRangeCallbackCallback * __this, Rect_1 * bounds, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003EDA80, void, OverlayManager_FFIMethods_SetImeCompositionRangeCallbackMethod__ctor, (OverlayManager_FFIMethods_SetImeCompositionRangeCallbackMethod * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EDBB0, void, OverlayManager_FFIMethods_SetImeCompositionRangeCallbackMethod_Invoke, (OverlayManager_FFIMethods_SetImeCompositionRangeCallbackMethod * __this, void * methodsPtr, void * callbackData, OverlayManager_FFIMethods_SetImeCompositionRangeCallbackCallback * callback, MethodInfo * method)); DO_APP_FUNC(0x0040D150, IAsyncResult *, OverlayManager_FFIMethods_SetImeCompositionRangeCallbackMethod_BeginInvoke, (OverlayManager_FFIMethods_SetImeCompositionRangeCallbackMethod * __this, void * methodsPtr, void * callbackData, OverlayManager_FFIMethods_SetImeCompositionRangeCallbackCallback * callback, AsyncCallback * __callback, Object * object, MethodInfo * method)); @@ -82207,9 +93449,9 @@ DO_APP_FUNC(0x003EE650, void, OverlayManager_OpenVoiceSettingsHandler_Invoke, (O DO_APP_FUNC(0x0040D8B0, IAsyncResult *, OverlayManager_OpenVoiceSettingsHandler_BeginInvoke, (OverlayManager_OpenVoiceSettingsHandler * __this, Result__Enum result, AsyncCallback * callback, Object * object, MethodInfo * method)); DO_APP_FUNC(0x003BA270, void, OverlayManager_OpenVoiceSettingsHandler_EndInvoke, (OverlayManager_OpenVoiceSettingsHandler * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x0040D930, void, OverlayManager_SetImeCompositionRangeCallbackHandler__ctor, (OverlayManager_SetImeCompositionRangeCallbackHandler * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EDBB0, void, OverlayManager_SetImeCompositionRangeCallbackHandler_Invoke, (OverlayManager_SetImeCompositionRangeCallbackHandler * __this, int32_t from, int32_t to, Rect_1 bounds, MethodInfo * method)); -DO_APP_FUNC(0x0040DA60, IAsyncResult *, OverlayManager_SetImeCompositionRangeCallbackHandler_BeginInvoke, (OverlayManager_SetImeCompositionRangeCallbackHandler * __this, int32_t from, int32_t to, Rect_1 bounds, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003EC4B0, void, OverlayManager_SetImeCompositionRangeCallbackHandler_EndInvoke, (OverlayManager_SetImeCompositionRangeCallbackHandler * __this, Rect_1 bounds, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EDBB0, void, OverlayManager_SetImeCompositionRangeCallbackHandler_Invoke, (OverlayManager_SetImeCompositionRangeCallbackHandler * __this, int32_t from, int32_t to, Rect_1 * bounds, MethodInfo * method)); +DO_APP_FUNC(0x0040DA60, IAsyncResult *, OverlayManager_SetImeCompositionRangeCallbackHandler_BeginInvoke, (OverlayManager_SetImeCompositionRangeCallbackHandler * __this, int32_t from, int32_t to, Rect_1 * bounds, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003EC4B0, void, OverlayManager_SetImeCompositionRangeCallbackHandler_EndInvoke, (OverlayManager_SetImeCompositionRangeCallbackHandler * __this, Rect_1 * bounds, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x0040DB20, void, OverlayManager_SetImeSelectionBoundsCallbackHandler__ctor, (OverlayManager_SetImeSelectionBoundsCallbackHandler * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x0040DC50, void, OverlayManager_SetImeSelectionBoundsCallbackHandler_Invoke, (OverlayManager_SetImeSelectionBoundsCallbackHandler * __this, Rect_1 anchor, Rect_1 focus, bool isAnchorFirst, MethodInfo * method)); DO_APP_FUNC(0x0040DC90, IAsyncResult *, OverlayManager_SetImeSelectionBoundsCallbackHandler_BeginInvoke, (OverlayManager_SetImeSelectionBoundsCallbackHandler * __this, Rect_1 anchor, Rect_1 focus, bool isAnchorFirst, AsyncCallback * callback, Object * object, MethodInfo * method)); @@ -82219,27 +93461,38 @@ DO_APP_FUNC(0x003EE650, void, OverlayManager_ToggleHandler_Invoke, (OverlayManag DO_APP_FUNC(0x0040DE80, IAsyncResult *, OverlayManager_ToggleHandler_BeginInvoke, (OverlayManager_ToggleHandler * __this, bool locked, AsyncCallback * callback, Object * object, MethodInfo * method)); DO_APP_FUNC(0x003BA270, void, OverlayManager_ToggleHandler_EndInvoke, (OverlayManager_ToggleHandler * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x0040DF00, StorageManager_FFIMethods, StorageManager_get_Methods, (StorageManager * __this, MethodInfo * method)); -DO_APP_FUNC(0x0040E0A0, void, StorageManager__ctor, (StorageManager * __this, void * ptr, void * eventsPtr, StorageManager_FFIEvents events, MethodInfo * method)); -DO_APP_FUNC(0x0040E270, void, StorageManager_InitEvents, (StorageManager * __this, void * eventsPtr, StorageManager_FFIEvents events, MethodInfo * method)); +DO_APP_FUNC(0x0040E0A0, void, StorageManager__ctor, (StorageManager * __this, void * ptr, void * eventsPtr, StorageManager_FFIEvents * events, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C900, StorageManager__ctor__MethodInfo); +DO_APP_FUNC(0x0040E270, void, StorageManager_InitEvents, (StorageManager * __this, void * eventsPtr, StorageManager_FFIEvents * events, MethodInfo * method)); DO_APP_FUNC(0x0040E350, uint32_t, StorageManager_Read, (StorageManager * __this, String * name, Byte__Array * data, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C8E0, StorageManager_Read__MethodInfo); DO_APP_FUNC(0x0040E440, void, StorageManager_ReadAsyncCallbackImpl, (void * ptr, Result__Enum result, void * dataPtr, int32_t dataLen, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C8C8, StorageManager_ReadAsyncCallbackImpl__MethodInfo); DO_APP_FUNC(0x0040E600, void, StorageManager_ReadAsync, (StorageManager * __this, String * name, StorageManager_ReadAsyncHandler * callback, MethodInfo * method)); DO_APP_FUNC(0x0040E7F0, void, StorageManager_ReadAsyncPartialCallbackImpl, (void * ptr, Result__Enum result, void * dataPtr, int32_t dataLen, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C8A0, StorageManager_ReadAsyncPartialCallbackImpl__MethodInfo); DO_APP_FUNC(0x0040E9B0, void, StorageManager_ReadAsyncPartial, (StorageManager * __this, String * name, uint64_t offset, uint64_t length, StorageManager_ReadAsyncPartialHandler * callback, MethodInfo * method)); DO_APP_FUNC(0x0040EBC0, void, StorageManager_Write, (StorageManager * __this, String * name, Byte__Array * data, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C898, StorageManager_Write__MethodInfo); DO_APP_FUNC(0x0040EC90, void, StorageManager_WriteAsyncCallbackImpl, (void * ptr, Result__Enum result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C888, StorageManager_WriteAsyncCallbackImpl__MethodInfo); DO_APP_FUNC(0x0040EDC0, void, StorageManager_WriteAsync, (StorageManager * __this, String * name, Byte__Array * data, StorageManager_WriteAsyncHandler * callback, MethodInfo * method)); DO_APP_FUNC(0x0040EFD0, void, StorageManager_Delete, (StorageManager * __this, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C878, StorageManager_Delete__MethodInfo); DO_APP_FUNC(0x0040F080, bool, StorageManager_Exists, (StorageManager * __this, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C870, StorageManager_Exists__MethodInfo); DO_APP_FUNC(0x0040F140, int32_t, StorageManager_Count, (StorageManager * __this, MethodInfo * method)); DO_APP_FUNC(0x0040F1A0, FileStat, StorageManager_Stat, (StorageManager * __this, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C868, StorageManager_Stat__MethodInfo); DO_APP_FUNC(0x0040F270, FileStat, StorageManager_StatAt, (StorageManager * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C860, StorageManager_StatAt__MethodInfo); DO_APP_FUNC(0x0040F340, String *, StorageManager_GetPath, (StorageManager * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C858, StorageManager_GetPath__MethodInfo); DO_APP_FUNC(0x0040F4A0, IEnumerable_1_Discord_FileStat_ *, StorageManager_Files, (StorageManager * __this, MethodInfo * method)); DO_APP_FUNC(0x0040F810, void, StorageManager_FFIMethods_ReadMethod__ctor, (StorageManager_FFIMethods_ReadMethod * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003F0780, Result__Enum, StorageManager_FFIMethods_ReadMethod_Invoke, (StorageManager_FFIMethods_ReadMethod * __this, void * methodsPtr, String * name, Byte__Array * data, int32_t dataLen, uint32_t read, MethodInfo * method)); -DO_APP_FUNC(0x0040F940, IAsyncResult *, StorageManager_FFIMethods_ReadMethod_BeginInvoke, (StorageManager_FFIMethods_ReadMethod * __this, void * methodsPtr, String * name, Byte__Array * data, int32_t dataLen, uint32_t read, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003F75B0, Result__Enum, StorageManager_FFIMethods_ReadMethod_EndInvoke, (StorageManager_FFIMethods_ReadMethod * __this, uint32_t read, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003F0780, Result__Enum, StorageManager_FFIMethods_ReadMethod_Invoke, (StorageManager_FFIMethods_ReadMethod * __this, void * methodsPtr, String * name, Byte__Array * data, int32_t dataLen, uint32_t * read, MethodInfo * method)); +DO_APP_FUNC(0x0040F940, IAsyncResult *, StorageManager_FFIMethods_ReadMethod_BeginInvoke, (StorageManager_FFIMethods_ReadMethod * __this, void * methodsPtr, String * name, Byte__Array * data, int32_t dataLen, uint32_t * read, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003F75B0, Result__Enum, StorageManager_FFIMethods_ReadMethod_EndInvoke, (StorageManager_FFIMethods_ReadMethod * __this, uint32_t * read, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x0040FA30, void, StorageManager_FFIMethods_ReadAsyncCallback__ctor, (StorageManager_FFIMethods_ReadAsyncCallback * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EC600, void, StorageManager_FFIMethods_ReadAsyncCallback_Invoke, (StorageManager_FFIMethods_ReadAsyncCallback * __this, void * ptr, Result__Enum result, void * dataPtr, int32_t dataLen, MethodInfo * method)); DO_APP_FUNC(0x0040FB60, IAsyncResult *, StorageManager_FFIMethods_ReadAsyncCallback_BeginInvoke, (StorageManager_FFIMethods_ReadAsyncCallback * __this, void * ptr, Result__Enum result, void * dataPtr, int32_t dataLen, AsyncCallback * callback, Object * object, MethodInfo * method)); @@ -82273,21 +93526,21 @@ DO_APP_FUNC(0x003ED330, Result__Enum, StorageManager_FFIMethods_DeleteMethod_Inv DO_APP_FUNC(0x004104D0, IAsyncResult *, StorageManager_FFIMethods_DeleteMethod_BeginInvoke, (StorageManager_FFIMethods_DeleteMethod * __this, void * methodsPtr, String * name, AsyncCallback * callback, Object * object, MethodInfo * method)); DO_APP_FUNC(0x003ED3D0, Result__Enum, StorageManager_FFIMethods_DeleteMethod_EndInvoke, (StorageManager_FFIMethods_DeleteMethod * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003EF890, void, StorageManager_FFIMethods_ExistsMethod__ctor, (StorageManager_FFIMethods_ExistsMethod * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EF9C0, Result__Enum, StorageManager_FFIMethods_ExistsMethod_Invoke, (StorageManager_FFIMethods_ExistsMethod * __this, void * methodsPtr, String * name, bool exists, MethodInfo * method)); -DO_APP_FUNC(0x00410560, IAsyncResult *, StorageManager_FFIMethods_ExistsMethod_BeginInvoke, (StorageManager_FFIMethods_ExistsMethod * __this, void * methodsPtr, String * name, bool exists, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003F75B0, Result__Enum, StorageManager_FFIMethods_ExistsMethod_EndInvoke, (StorageManager_FFIMethods_ExistsMethod * __this, bool exists, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EF9C0, Result__Enum, StorageManager_FFIMethods_ExistsMethod_Invoke, (StorageManager_FFIMethods_ExistsMethod * __this, void * methodsPtr, String * name, bool * exists, MethodInfo * method)); +DO_APP_FUNC(0x00410560, IAsyncResult *, StorageManager_FFIMethods_ExistsMethod_BeginInvoke, (StorageManager_FFIMethods_ExistsMethod * __this, void * methodsPtr, String * name, bool * exists, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003F75B0, Result__Enum, StorageManager_FFIMethods_ExistsMethod_EndInvoke, (StorageManager_FFIMethods_ExistsMethod * __this, bool * exists, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003EC1A0, void, StorageManager_FFIMethods_CountMethod__ctor, (StorageManager_FFIMethods_CountMethod * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EC2D0, void, StorageManager_FFIMethods_CountMethod_Invoke, (StorageManager_FFIMethods_CountMethod * __this, void * methodsPtr, int32_t count, MethodInfo * method)); -DO_APP_FUNC(0x00410610, IAsyncResult *, StorageManager_FFIMethods_CountMethod_BeginInvoke, (StorageManager_FFIMethods_CountMethod * __this, void * methodsPtr, int32_t count, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003EC4B0, void, StorageManager_FFIMethods_CountMethod_EndInvoke, (StorageManager_FFIMethods_CountMethod * __this, int32_t count, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EC2D0, void, StorageManager_FFIMethods_CountMethod_Invoke, (StorageManager_FFIMethods_CountMethod * __this, void * methodsPtr, int32_t * count, MethodInfo * method)); +DO_APP_FUNC(0x00410610, IAsyncResult *, StorageManager_FFIMethods_CountMethod_BeginInvoke, (StorageManager_FFIMethods_CountMethod * __this, void * methodsPtr, int32_t * count, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003EC4B0, void, StorageManager_FFIMethods_CountMethod_EndInvoke, (StorageManager_FFIMethods_CountMethod * __this, int32_t * count, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003EF890, void, StorageManager_FFIMethods_StatMethod__ctor, (StorageManager_FFIMethods_StatMethod * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EF9C0, Result__Enum, StorageManager_FFIMethods_StatMethod_Invoke, (StorageManager_FFIMethods_StatMethod * __this, void * methodsPtr, String * name, FileStat stat, MethodInfo * method)); -DO_APP_FUNC(0x004106C0, IAsyncResult *, StorageManager_FFIMethods_StatMethod_BeginInvoke, (StorageManager_FFIMethods_StatMethod * __this, void * methodsPtr, String * name, FileStat stat, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003F75B0, Result__Enum, StorageManager_FFIMethods_StatMethod_EndInvoke, (StorageManager_FFIMethods_StatMethod * __this, FileStat stat, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EF9C0, Result__Enum, StorageManager_FFIMethods_StatMethod_Invoke, (StorageManager_FFIMethods_StatMethod * __this, void * methodsPtr, String * name, FileStat * stat, MethodInfo * method)); +DO_APP_FUNC(0x004106C0, IAsyncResult *, StorageManager_FFIMethods_StatMethod_BeginInvoke, (StorageManager_FFIMethods_StatMethod * __this, void * methodsPtr, String * name, FileStat * stat, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003F75B0, Result__Enum, StorageManager_FFIMethods_StatMethod_EndInvoke, (StorageManager_FFIMethods_StatMethod * __this, FileStat * stat, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003F7830, void, StorageManager_FFIMethods_StatAtMethod__ctor, (StorageManager_FFIMethods_StatAtMethod * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EF9C0, Result__Enum, StorageManager_FFIMethods_StatAtMethod_Invoke, (StorageManager_FFIMethods_StatAtMethod * __this, void * methodsPtr, int32_t index, FileStat stat, MethodInfo * method)); -DO_APP_FUNC(0x00410770, IAsyncResult *, StorageManager_FFIMethods_StatAtMethod_BeginInvoke, (StorageManager_FFIMethods_StatAtMethod * __this, void * methodsPtr, int32_t index, FileStat stat, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003F75B0, Result__Enum, StorageManager_FFIMethods_StatAtMethod_EndInvoke, (StorageManager_FFIMethods_StatAtMethod * __this, FileStat stat, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EF9C0, Result__Enum, StorageManager_FFIMethods_StatAtMethod_Invoke, (StorageManager_FFIMethods_StatAtMethod * __this, void * methodsPtr, int32_t index, FileStat * stat, MethodInfo * method)); +DO_APP_FUNC(0x00410770, IAsyncResult *, StorageManager_FFIMethods_StatAtMethod_BeginInvoke, (StorageManager_FFIMethods_StatAtMethod * __this, void * methodsPtr, int32_t index, FileStat * stat, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003F75B0, Result__Enum, StorageManager_FFIMethods_StatAtMethod_EndInvoke, (StorageManager_FFIMethods_StatAtMethod * __this, FileStat * stat, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003ED200, void, StorageManager_FFIMethods_GetPathMethod__ctor, (StorageManager_FFIMethods_GetPathMethod * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003ED330, Result__Enum, StorageManager_FFIMethods_GetPathMethod_Invoke, (StorageManager_FFIMethods_GetPathMethod * __this, void * methodsPtr, StringBuilder * path, MethodInfo * method)); DO_APP_FUNC(0x00410840, IAsyncResult *, StorageManager_FFIMethods_GetPathMethod_BeginInvoke, (StorageManager_FFIMethods_GetPathMethod * __this, void * methodsPtr, StringBuilder * path, AsyncCallback * callback, Object * object, MethodInfo * method)); @@ -82309,33 +93562,44 @@ DO_APP_FUNC(0x00410C00, void, StoreManager_add_OnEntitlementCreate, (StoreManage DO_APP_FUNC(0x00410CF0, void, StoreManager_remove_OnEntitlementCreate, (StoreManager * __this, StoreManager_EntitlementCreateHandler * value, MethodInfo * method)); DO_APP_FUNC(0x00410DE0, void, StoreManager_add_OnEntitlementDelete, (StoreManager * __this, StoreManager_EntitlementDeleteHandler * value, MethodInfo * method)); DO_APP_FUNC(0x00410ED0, void, StoreManager_remove_OnEntitlementDelete, (StoreManager * __this, StoreManager_EntitlementDeleteHandler * value, MethodInfo * method)); -DO_APP_FUNC(0x00410FC0, void, StoreManager__ctor, (StoreManager * __this, void * ptr, void * eventsPtr, StoreManager_FFIEvents events, MethodInfo * method)); -DO_APP_FUNC(0x004110F0, void, StoreManager_InitEvents, (StoreManager * __this, void * eventsPtr, StoreManager_FFIEvents events, MethodInfo * method)); +DO_APP_FUNC(0x00410FC0, void, StoreManager__ctor, (StoreManager * __this, void * ptr, void * eventsPtr, StoreManager_FFIEvents * events, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C7A0, StoreManager__ctor__MethodInfo); +DO_APP_FUNC(0x004110F0, void, StoreManager_InitEvents, (StoreManager * __this, void * eventsPtr, StoreManager_FFIEvents * events, MethodInfo * method)); DO_APP_FUNC(0x00411520, void, StoreManager_FetchSkusCallbackImpl, (void * ptr, Result__Enum result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C748, StoreManager_FetchSkusCallbackImpl__MethodInfo); DO_APP_FUNC(0x00411650, void, StoreManager_FetchSkus, (StoreManager * __this, StoreManager_FetchSkusHandler * callback, MethodInfo * method)); DO_APP_FUNC(0x00411830, int32_t, StoreManager_CountSkus, (StoreManager * __this, MethodInfo * method)); DO_APP_FUNC(0x00411890, Sku, StoreManager_GetSku, (StoreManager * __this, int64_t skuId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C740, StoreManager_GetSku__MethodInfo); DO_APP_FUNC(0x00411960, Sku, StoreManager_GetSkuAt, (StoreManager * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C738, StoreManager_GetSkuAt__MethodInfo); DO_APP_FUNC(0x00411A30, void, StoreManager_FetchEntitlementsCallbackImpl, (void * ptr, Result__Enum result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C720, StoreManager_FetchEntitlementsCallbackImpl__MethodInfo); DO_APP_FUNC(0x00411B60, void, StoreManager_FetchEntitlements, (StoreManager * __this, StoreManager_FetchEntitlementsHandler * callback, MethodInfo * method)); DO_APP_FUNC(0x00411D40, int32_t, StoreManager_CountEntitlements, (StoreManager * __this, MethodInfo * method)); DO_APP_FUNC(0x00411DA0, Entitlement, StoreManager_GetEntitlement, (StoreManager * __this, int64_t entitlementId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C718, StoreManager_GetEntitlement__MethodInfo); DO_APP_FUNC(0x00411E70, Entitlement, StoreManager_GetEntitlementAt, (StoreManager * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C710, StoreManager_GetEntitlementAt__MethodInfo); DO_APP_FUNC(0x00411F40, bool, StoreManager_HasSkuEntitlement, (StoreManager * __this, int64_t skuId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C708, StoreManager_HasSkuEntitlement__MethodInfo); DO_APP_FUNC(0x00412000, void, StoreManager_StartPurchaseCallbackImpl, (void * ptr, Result__Enum result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C6F0, StoreManager_StartPurchaseCallbackImpl__MethodInfo); DO_APP_FUNC(0x00412130, void, StoreManager_StartPurchase, (StoreManager * __this, int64_t skuId, StoreManager_StartPurchaseHandler * callback, MethodInfo * method)); -DO_APP_FUNC(0x00412320, void, StoreManager_OnEntitlementCreateImpl, (void * ptr, Entitlement entitlement, MethodInfo * method)); -DO_APP_FUNC(0x00412470, void, StoreManager_OnEntitlementDeleteImpl, (void * ptr, Entitlement entitlement, MethodInfo * method)); +DO_APP_FUNC(0x00412320, void, StoreManager_OnEntitlementCreateImpl, (void * ptr, Entitlement * entitlement, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C768, StoreManager_OnEntitlementCreateImpl__MethodInfo); +DO_APP_FUNC(0x00412470, void, StoreManager_OnEntitlementDeleteImpl, (void * ptr, Entitlement * entitlement, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C760, StoreManager_OnEntitlementDeleteImpl__MethodInfo); DO_APP_FUNC(0x004125C0, IEnumerable_1_Discord_Entitlement_ *, StoreManager_GetEntitlements, (StoreManager * __this, MethodInfo * method)); DO_APP_FUNC(0x004128A0, IEnumerable_1_Discord_Sku_ *, StoreManager_GetSkus, (StoreManager * __this, MethodInfo * method)); DO_APP_FUNC(0x003EC1A0, void, StoreManager_FFIEvents_EntitlementCreateHandler__ctor, (StoreManager_FFIEvents_EntitlementCreateHandler * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EC2D0, void, StoreManager_FFIEvents_EntitlementCreateHandler_Invoke, (StoreManager_FFIEvents_EntitlementCreateHandler * __this, void * ptr, Entitlement entitlement, MethodInfo * method)); -DO_APP_FUNC(0x00412C30, IAsyncResult *, StoreManager_FFIEvents_EntitlementCreateHandler_BeginInvoke, (StoreManager_FFIEvents_EntitlementCreateHandler * __this, void * ptr, Entitlement entitlement, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003EC4B0, void, StoreManager_FFIEvents_EntitlementCreateHandler_EndInvoke, (StoreManager_FFIEvents_EntitlementCreateHandler * __this, Entitlement entitlement, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EC2D0, void, StoreManager_FFIEvents_EntitlementCreateHandler_Invoke, (StoreManager_FFIEvents_EntitlementCreateHandler * __this, void * ptr, Entitlement * entitlement, MethodInfo * method)); +DO_APP_FUNC(0x00412C30, IAsyncResult *, StoreManager_FFIEvents_EntitlementCreateHandler_BeginInvoke, (StoreManager_FFIEvents_EntitlementCreateHandler * __this, void * ptr, Entitlement * entitlement, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003EC4B0, void, StoreManager_FFIEvents_EntitlementCreateHandler_EndInvoke, (StoreManager_FFIEvents_EntitlementCreateHandler * __this, Entitlement * entitlement, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003EC1A0, void, StoreManager_FFIEvents_EntitlementDeleteHandler__ctor, (StoreManager_FFIEvents_EntitlementDeleteHandler * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EC2D0, void, StoreManager_FFIEvents_EntitlementDeleteHandler_Invoke, (StoreManager_FFIEvents_EntitlementDeleteHandler * __this, void * ptr, Entitlement entitlement, MethodInfo * method)); -DO_APP_FUNC(0x00412CE0, IAsyncResult *, StoreManager_FFIEvents_EntitlementDeleteHandler_BeginInvoke, (StoreManager_FFIEvents_EntitlementDeleteHandler * __this, void * ptr, Entitlement entitlement, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003EC4B0, void, StoreManager_FFIEvents_EntitlementDeleteHandler_EndInvoke, (StoreManager_FFIEvents_EntitlementDeleteHandler * __this, Entitlement entitlement, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EC2D0, void, StoreManager_FFIEvents_EntitlementDeleteHandler_Invoke, (StoreManager_FFIEvents_EntitlementDeleteHandler * __this, void * ptr, Entitlement * entitlement, MethodInfo * method)); +DO_APP_FUNC(0x00412CE0, IAsyncResult *, StoreManager_FFIEvents_EntitlementDeleteHandler_BeginInvoke, (StoreManager_FFIEvents_EntitlementDeleteHandler * __this, void * ptr, Entitlement * entitlement, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003EC4B0, void, StoreManager_FFIEvents_EntitlementDeleteHandler_EndInvoke, (StoreManager_FFIEvents_EntitlementDeleteHandler * __this, Entitlement * entitlement, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003ED5F0, void, StoreManager_FFIMethods_FetchSkusCallback__ctor, (StoreManager_FFIMethods_FetchSkusCallback * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EC2D0, void, StoreManager_FFIMethods_FetchSkusCallback_Invoke, (StoreManager_FFIMethods_FetchSkusCallback * __this, void * ptr, Result__Enum result, MethodInfo * method)); DO_APP_FUNC(0x00412D90, IAsyncResult *, StoreManager_FFIMethods_FetchSkusCallback_BeginInvoke, (StoreManager_FFIMethods_FetchSkusCallback * __this, void * ptr, Result__Enum result, AsyncCallback * callback, Object * object, MethodInfo * method)); @@ -82345,17 +93609,17 @@ DO_APP_FUNC(0x003EDBB0, void, StoreManager_FFIMethods_FetchSkusMethod_Invoke, (S DO_APP_FUNC(0x00412E40, IAsyncResult *, StoreManager_FFIMethods_FetchSkusMethod_BeginInvoke, (StoreManager_FFIMethods_FetchSkusMethod * __this, void * methodsPtr, void * callbackData, StoreManager_FFIMethods_FetchSkusCallback * callback, AsyncCallback * __callback, Object * object, MethodInfo * method)); DO_APP_FUNC(0x003BA270, void, StoreManager_FFIMethods_FetchSkusMethod_EndInvoke, (StoreManager_FFIMethods_FetchSkusMethod * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003EC1A0, void, StoreManager_FFIMethods_CountSkusMethod__ctor, (StoreManager_FFIMethods_CountSkusMethod * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EC2D0, void, StoreManager_FFIMethods_CountSkusMethod_Invoke, (StoreManager_FFIMethods_CountSkusMethod * __this, void * methodsPtr, int32_t count, MethodInfo * method)); -DO_APP_FUNC(0x00412EE0, IAsyncResult *, StoreManager_FFIMethods_CountSkusMethod_BeginInvoke, (StoreManager_FFIMethods_CountSkusMethod * __this, void * methodsPtr, int32_t count, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003EC4B0, void, StoreManager_FFIMethods_CountSkusMethod_EndInvoke, (StoreManager_FFIMethods_CountSkusMethod * __this, int32_t count, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EC2D0, void, StoreManager_FFIMethods_CountSkusMethod_Invoke, (StoreManager_FFIMethods_CountSkusMethod * __this, void * methodsPtr, int32_t * count, MethodInfo * method)); +DO_APP_FUNC(0x00412EE0, IAsyncResult *, StoreManager_FFIMethods_CountSkusMethod_BeginInvoke, (StoreManager_FFIMethods_CountSkusMethod * __this, void * methodsPtr, int32_t * count, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003EC4B0, void, StoreManager_FFIMethods_CountSkusMethod_EndInvoke, (StoreManager_FFIMethods_CountSkusMethod * __this, int32_t * count, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003FABF0, void, StoreManager_FFIMethods_GetSkuMethod__ctor, (StoreManager_FFIMethods_GetSkuMethod * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EF9C0, Result__Enum, StoreManager_FFIMethods_GetSkuMethod_Invoke, (StoreManager_FFIMethods_GetSkuMethod * __this, void * methodsPtr, int64_t skuId, Sku sku, MethodInfo * method)); -DO_APP_FUNC(0x00412F90, IAsyncResult *, StoreManager_FFIMethods_GetSkuMethod_BeginInvoke, (StoreManager_FFIMethods_GetSkuMethod * __this, void * methodsPtr, int64_t skuId, Sku sku, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003F75B0, Result__Enum, StoreManager_FFIMethods_GetSkuMethod_EndInvoke, (StoreManager_FFIMethods_GetSkuMethod * __this, Sku sku, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EF9C0, Result__Enum, StoreManager_FFIMethods_GetSkuMethod_Invoke, (StoreManager_FFIMethods_GetSkuMethod * __this, void * methodsPtr, int64_t skuId, Sku * sku, MethodInfo * method)); +DO_APP_FUNC(0x00412F90, IAsyncResult *, StoreManager_FFIMethods_GetSkuMethod_BeginInvoke, (StoreManager_FFIMethods_GetSkuMethod * __this, void * methodsPtr, int64_t skuId, Sku * sku, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003F75B0, Result__Enum, StoreManager_FFIMethods_GetSkuMethod_EndInvoke, (StoreManager_FFIMethods_GetSkuMethod * __this, Sku * sku, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003F7830, void, StoreManager_FFIMethods_GetSkuAtMethod__ctor, (StoreManager_FFIMethods_GetSkuAtMethod * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EF9C0, Result__Enum, StoreManager_FFIMethods_GetSkuAtMethod_Invoke, (StoreManager_FFIMethods_GetSkuAtMethod * __this, void * methodsPtr, int32_t index, Sku sku, MethodInfo * method)); -DO_APP_FUNC(0x00413060, IAsyncResult *, StoreManager_FFIMethods_GetSkuAtMethod_BeginInvoke, (StoreManager_FFIMethods_GetSkuAtMethod * __this, void * methodsPtr, int32_t index, Sku sku, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003F75B0, Result__Enum, StoreManager_FFIMethods_GetSkuAtMethod_EndInvoke, (StoreManager_FFIMethods_GetSkuAtMethod * __this, Sku sku, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EF9C0, Result__Enum, StoreManager_FFIMethods_GetSkuAtMethod_Invoke, (StoreManager_FFIMethods_GetSkuAtMethod * __this, void * methodsPtr, int32_t index, Sku * sku, MethodInfo * method)); +DO_APP_FUNC(0x00413060, IAsyncResult *, StoreManager_FFIMethods_GetSkuAtMethod_BeginInvoke, (StoreManager_FFIMethods_GetSkuAtMethod * __this, void * methodsPtr, int32_t index, Sku * sku, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003F75B0, Result__Enum, StoreManager_FFIMethods_GetSkuAtMethod_EndInvoke, (StoreManager_FFIMethods_GetSkuAtMethod * __this, Sku * sku, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003ED5F0, void, StoreManager_FFIMethods_FetchEntitlementsCallback__ctor, (StoreManager_FFIMethods_FetchEntitlementsCallback * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EC2D0, void, StoreManager_FFIMethods_FetchEntitlementsCallback_Invoke, (StoreManager_FFIMethods_FetchEntitlementsCallback * __this, void * ptr, Result__Enum result, MethodInfo * method)); DO_APP_FUNC(0x00413130, IAsyncResult *, StoreManager_FFIMethods_FetchEntitlementsCallback_BeginInvoke, (StoreManager_FFIMethods_FetchEntitlementsCallback * __this, void * ptr, Result__Enum result, AsyncCallback * callback, Object * object, MethodInfo * method)); @@ -82365,21 +93629,21 @@ DO_APP_FUNC(0x003EDBB0, void, StoreManager_FFIMethods_FetchEntitlementsMethod_In DO_APP_FUNC(0x004131E0, IAsyncResult *, StoreManager_FFIMethods_FetchEntitlementsMethod_BeginInvoke, (StoreManager_FFIMethods_FetchEntitlementsMethod * __this, void * methodsPtr, void * callbackData, StoreManager_FFIMethods_FetchEntitlementsCallback * callback, AsyncCallback * __callback, Object * object, MethodInfo * method)); DO_APP_FUNC(0x003BA270, void, StoreManager_FFIMethods_FetchEntitlementsMethod_EndInvoke, (StoreManager_FFIMethods_FetchEntitlementsMethod * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003EC1A0, void, StoreManager_FFIMethods_CountEntitlementsMethod__ctor, (StoreManager_FFIMethods_CountEntitlementsMethod * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EC2D0, void, StoreManager_FFIMethods_CountEntitlementsMethod_Invoke, (StoreManager_FFIMethods_CountEntitlementsMethod * __this, void * methodsPtr, int32_t count, MethodInfo * method)); -DO_APP_FUNC(0x00413280, IAsyncResult *, StoreManager_FFIMethods_CountEntitlementsMethod_BeginInvoke, (StoreManager_FFIMethods_CountEntitlementsMethod * __this, void * methodsPtr, int32_t count, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003EC4B0, void, StoreManager_FFIMethods_CountEntitlementsMethod_EndInvoke, (StoreManager_FFIMethods_CountEntitlementsMethod * __this, int32_t count, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EC2D0, void, StoreManager_FFIMethods_CountEntitlementsMethod_Invoke, (StoreManager_FFIMethods_CountEntitlementsMethod * __this, void * methodsPtr, int32_t * count, MethodInfo * method)); +DO_APP_FUNC(0x00413280, IAsyncResult *, StoreManager_FFIMethods_CountEntitlementsMethod_BeginInvoke, (StoreManager_FFIMethods_CountEntitlementsMethod * __this, void * methodsPtr, int32_t * count, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003EC4B0, void, StoreManager_FFIMethods_CountEntitlementsMethod_EndInvoke, (StoreManager_FFIMethods_CountEntitlementsMethod * __this, int32_t * count, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003FABF0, void, StoreManager_FFIMethods_GetEntitlementMethod__ctor, (StoreManager_FFIMethods_GetEntitlementMethod * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EF9C0, Result__Enum, StoreManager_FFIMethods_GetEntitlementMethod_Invoke, (StoreManager_FFIMethods_GetEntitlementMethod * __this, void * methodsPtr, int64_t entitlementId, Entitlement entitlement, MethodInfo * method)); -DO_APP_FUNC(0x00413330, IAsyncResult *, StoreManager_FFIMethods_GetEntitlementMethod_BeginInvoke, (StoreManager_FFIMethods_GetEntitlementMethod * __this, void * methodsPtr, int64_t entitlementId, Entitlement entitlement, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003F75B0, Result__Enum, StoreManager_FFIMethods_GetEntitlementMethod_EndInvoke, (StoreManager_FFIMethods_GetEntitlementMethod * __this, Entitlement entitlement, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EF9C0, Result__Enum, StoreManager_FFIMethods_GetEntitlementMethod_Invoke, (StoreManager_FFIMethods_GetEntitlementMethod * __this, void * methodsPtr, int64_t entitlementId, Entitlement * entitlement, MethodInfo * method)); +DO_APP_FUNC(0x00413330, IAsyncResult *, StoreManager_FFIMethods_GetEntitlementMethod_BeginInvoke, (StoreManager_FFIMethods_GetEntitlementMethod * __this, void * methodsPtr, int64_t entitlementId, Entitlement * entitlement, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003F75B0, Result__Enum, StoreManager_FFIMethods_GetEntitlementMethod_EndInvoke, (StoreManager_FFIMethods_GetEntitlementMethod * __this, Entitlement * entitlement, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003F7830, void, StoreManager_FFIMethods_GetEntitlementAtMethod__ctor, (StoreManager_FFIMethods_GetEntitlementAtMethod * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EF9C0, Result__Enum, StoreManager_FFIMethods_GetEntitlementAtMethod_Invoke, (StoreManager_FFIMethods_GetEntitlementAtMethod * __this, void * methodsPtr, int32_t index, Entitlement entitlement, MethodInfo * method)); -DO_APP_FUNC(0x00413400, IAsyncResult *, StoreManager_FFIMethods_GetEntitlementAtMethod_BeginInvoke, (StoreManager_FFIMethods_GetEntitlementAtMethod * __this, void * methodsPtr, int32_t index, Entitlement entitlement, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003F75B0, Result__Enum, StoreManager_FFIMethods_GetEntitlementAtMethod_EndInvoke, (StoreManager_FFIMethods_GetEntitlementAtMethod * __this, Entitlement entitlement, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EF9C0, Result__Enum, StoreManager_FFIMethods_GetEntitlementAtMethod_Invoke, (StoreManager_FFIMethods_GetEntitlementAtMethod * __this, void * methodsPtr, int32_t index, Entitlement * entitlement, MethodInfo * method)); +DO_APP_FUNC(0x00413400, IAsyncResult *, StoreManager_FFIMethods_GetEntitlementAtMethod_BeginInvoke, (StoreManager_FFIMethods_GetEntitlementAtMethod * __this, void * methodsPtr, int32_t index, Entitlement * entitlement, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003F75B0, Result__Enum, StoreManager_FFIMethods_GetEntitlementAtMethod_EndInvoke, (StoreManager_FFIMethods_GetEntitlementAtMethod * __this, Entitlement * entitlement, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003FABF0, void, StoreManager_FFIMethods_HasSkuEntitlementMethod__ctor, (StoreManager_FFIMethods_HasSkuEntitlementMethod * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EF9C0, Result__Enum, StoreManager_FFIMethods_HasSkuEntitlementMethod_Invoke, (StoreManager_FFIMethods_HasSkuEntitlementMethod * __this, void * methodsPtr, int64_t skuId, bool hasEntitlement, MethodInfo * method)); -DO_APP_FUNC(0x004134D0, IAsyncResult *, StoreManager_FFIMethods_HasSkuEntitlementMethod_BeginInvoke, (StoreManager_FFIMethods_HasSkuEntitlementMethod * __this, void * methodsPtr, int64_t skuId, bool hasEntitlement, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003F75B0, Result__Enum, StoreManager_FFIMethods_HasSkuEntitlementMethod_EndInvoke, (StoreManager_FFIMethods_HasSkuEntitlementMethod * __this, bool hasEntitlement, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EF9C0, Result__Enum, StoreManager_FFIMethods_HasSkuEntitlementMethod_Invoke, (StoreManager_FFIMethods_HasSkuEntitlementMethod * __this, void * methodsPtr, int64_t skuId, bool * hasEntitlement, MethodInfo * method)); +DO_APP_FUNC(0x004134D0, IAsyncResult *, StoreManager_FFIMethods_HasSkuEntitlementMethod_BeginInvoke, (StoreManager_FFIMethods_HasSkuEntitlementMethod * __this, void * methodsPtr, int64_t skuId, bool * hasEntitlement, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003F75B0, Result__Enum, StoreManager_FFIMethods_HasSkuEntitlementMethod_EndInvoke, (StoreManager_FFIMethods_HasSkuEntitlementMethod * __this, bool * hasEntitlement, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003ED5F0, void, StoreManager_FFIMethods_StartPurchaseCallback__ctor, (StoreManager_FFIMethods_StartPurchaseCallback * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EC2D0, void, StoreManager_FFIMethods_StartPurchaseCallback_Invoke, (StoreManager_FFIMethods_StartPurchaseCallback * __this, void * ptr, Result__Enum result, MethodInfo * method)); DO_APP_FUNC(0x004135A0, IAsyncResult *, StoreManager_FFIMethods_StartPurchaseCallback_BeginInvoke, (StoreManager_FFIMethods_StartPurchaseCallback * __this, void * ptr, Result__Enum result, AsyncCallback * callback, Object * object, MethodInfo * method)); @@ -82401,38 +93665,50 @@ DO_APP_FUNC(0x003EE650, void, StoreManager_StartPurchaseHandler_Invoke, (StoreMa DO_APP_FUNC(0x00413820, IAsyncResult *, StoreManager_StartPurchaseHandler_BeginInvoke, (StoreManager_StartPurchaseHandler * __this, Result__Enum result, AsyncCallback * callback, Object * object, MethodInfo * method)); DO_APP_FUNC(0x003BA270, void, StoreManager_StartPurchaseHandler_EndInvoke, (StoreManager_StartPurchaseHandler * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003EEA50, void, StoreManager_EntitlementCreateHandler__ctor, (StoreManager_EntitlementCreateHandler * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EE650, void, StoreManager_EntitlementCreateHandler_Invoke, (StoreManager_EntitlementCreateHandler * __this, Entitlement entitlement, MethodInfo * method)); -DO_APP_FUNC(0x004138A0, IAsyncResult *, StoreManager_EntitlementCreateHandler_BeginInvoke, (StoreManager_EntitlementCreateHandler * __this, Entitlement entitlement, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003EC4B0, void, StoreManager_EntitlementCreateHandler_EndInvoke, (StoreManager_EntitlementCreateHandler * __this, Entitlement entitlement, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EE650, void, StoreManager_EntitlementCreateHandler_Invoke, (StoreManager_EntitlementCreateHandler * __this, Entitlement * entitlement, MethodInfo * method)); +DO_APP_FUNC(0x004138A0, IAsyncResult *, StoreManager_EntitlementCreateHandler_BeginInvoke, (StoreManager_EntitlementCreateHandler * __this, Entitlement * entitlement, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003EC4B0, void, StoreManager_EntitlementCreateHandler_EndInvoke, (StoreManager_EntitlementCreateHandler * __this, Entitlement * entitlement, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003EEA50, void, StoreManager_EntitlementDeleteHandler__ctor, (StoreManager_EntitlementDeleteHandler * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EE650, void, StoreManager_EntitlementDeleteHandler_Invoke, (StoreManager_EntitlementDeleteHandler * __this, Entitlement entitlement, MethodInfo * method)); -DO_APP_FUNC(0x00413930, IAsyncResult *, StoreManager_EntitlementDeleteHandler_BeginInvoke, (StoreManager_EntitlementDeleteHandler * __this, Entitlement entitlement, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003EC4B0, void, StoreManager_EntitlementDeleteHandler_EndInvoke, (StoreManager_EntitlementDeleteHandler * __this, Entitlement entitlement, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EE650, void, StoreManager_EntitlementDeleteHandler_Invoke, (StoreManager_EntitlementDeleteHandler * __this, Entitlement * entitlement, MethodInfo * method)); +DO_APP_FUNC(0x00413930, IAsyncResult *, StoreManager_EntitlementDeleteHandler_BeginInvoke, (StoreManager_EntitlementDeleteHandler * __this, Entitlement * entitlement, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003EC4B0, void, StoreManager_EntitlementDeleteHandler_EndInvoke, (StoreManager_EntitlementDeleteHandler * __this, Entitlement * entitlement, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x004139C0, VoiceManager_FFIMethods, VoiceManager_get_Methods, (VoiceManager * __this, MethodInfo * method)); DO_APP_FUNC(0x00413B50, void, VoiceManager_add_OnSettingsUpdate, (VoiceManager * __this, VoiceManager_SettingsUpdateHandler * value, MethodInfo * method)); DO_APP_FUNC(0x00413C40, void, VoiceManager_remove_OnSettingsUpdate, (VoiceManager * __this, VoiceManager_SettingsUpdateHandler * value, MethodInfo * method)); -DO_APP_FUNC(0x00413D30, void, VoiceManager__ctor, (VoiceManager * __this, void * ptr, void * eventsPtr, VoiceManager_FFIEvents events, MethodInfo * method)); -DO_APP_FUNC(0x00413E60, void, VoiceManager_InitEvents, (VoiceManager * __this, void * eventsPtr, VoiceManager_FFIEvents events, MethodInfo * method)); +DO_APP_FUNC(0x00413D30, void, VoiceManager__ctor, (VoiceManager * __this, void * ptr, void * eventsPtr, VoiceManager_FFIEvents * events, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C600, VoiceManager__ctor__MethodInfo); +DO_APP_FUNC(0x00413E60, void, VoiceManager_InitEvents, (VoiceManager * __this, void * eventsPtr, VoiceManager_FFIEvents * events, MethodInfo * method)); DO_APP_FUNC(0x004140F0, InputMode, VoiceManager_GetInputMode, (VoiceManager * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C5D8, VoiceManager_GetInputMode__MethodInfo); DO_APP_FUNC(0x004141A0, void, VoiceManager_SetInputModeCallbackImpl, (void * ptr, Result__Enum result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C5B0, VoiceManager_SetInputModeCallbackImpl__MethodInfo); DO_APP_FUNC(0x004142D0, void, VoiceManager_SetInputMode, (VoiceManager * __this, InputMode inputMode, VoiceManager_SetInputModeHandler * callback, MethodInfo * method)); DO_APP_FUNC(0x004144D0, bool, VoiceManager_IsSelfMute, (VoiceManager * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C5A8, VoiceManager_IsSelfMute__MethodInfo); DO_APP_FUNC(0x00414590, void, VoiceManager_SetSelfMute, (VoiceManager * __this, bool mute, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C5A0, VoiceManager_SetSelfMute__MethodInfo); DO_APP_FUNC(0x00414640, bool, VoiceManager_IsSelfDeaf, (VoiceManager * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C598, VoiceManager_IsSelfDeaf__MethodInfo); DO_APP_FUNC(0x00414700, void, VoiceManager_SetSelfDeaf, (VoiceManager * __this, bool deaf, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C590, VoiceManager_SetSelfDeaf__MethodInfo); DO_APP_FUNC(0x004147B0, bool, VoiceManager_IsLocalMute, (VoiceManager * __this, int64_t userId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C588, VoiceManager_IsLocalMute__MethodInfo); DO_APP_FUNC(0x00414870, void, VoiceManager_SetLocalMute, (VoiceManager * __this, int64_t userId, bool mute, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C580, VoiceManager_SetLocalMute__MethodInfo); DO_APP_FUNC(0x00414930, uint8_t, VoiceManager_GetLocalVolume, (VoiceManager * __this, int64_t userId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C578, VoiceManager_GetLocalVolume__MethodInfo); DO_APP_FUNC(0x004149F0, void, VoiceManager_SetLocalVolume, (VoiceManager * __this, int64_t userId, uint8_t volume, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C570, VoiceManager_SetLocalVolume__MethodInfo); DO_APP_FUNC(0x00414AB0, void, VoiceManager_OnSettingsUpdateImpl, (void * ptr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C5E0, VoiceManager_OnSettingsUpdateImpl__MethodInfo); DO_APP_FUNC(0x003F3FF0, void, VoiceManager_FFIEvents_SettingsUpdateHandler__ctor, (VoiceManager_FFIEvents_SettingsUpdateHandler * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EE650, void, VoiceManager_FFIEvents_SettingsUpdateHandler_Invoke, (VoiceManager_FFIEvents_SettingsUpdateHandler * __this, void * ptr, MethodInfo * method)); DO_APP_FUNC(0x00414BF0, IAsyncResult *, VoiceManager_FFIEvents_SettingsUpdateHandler_BeginInvoke, (VoiceManager_FFIEvents_SettingsUpdateHandler * __this, void * ptr, AsyncCallback * callback, Object * object, MethodInfo * method)); DO_APP_FUNC(0x003BA270, void, VoiceManager_FFIEvents_SettingsUpdateHandler_EndInvoke, (VoiceManager_FFIEvents_SettingsUpdateHandler * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003ED200, void, VoiceManager_FFIMethods_GetInputModeMethod__ctor, (VoiceManager_FFIMethods_GetInputModeMethod * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003ED330, Result__Enum, VoiceManager_FFIMethods_GetInputModeMethod_Invoke, (VoiceManager_FFIMethods_GetInputModeMethod * __this, void * methodsPtr, InputMode inputMode, MethodInfo * method)); -DO_APP_FUNC(0x00414C70, IAsyncResult *, VoiceManager_FFIMethods_GetInputModeMethod_BeginInvoke, (VoiceManager_FFIMethods_GetInputModeMethod * __this, void * methodsPtr, InputMode inputMode, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003F75B0, Result__Enum, VoiceManager_FFIMethods_GetInputModeMethod_EndInvoke, (VoiceManager_FFIMethods_GetInputModeMethod * __this, InputMode inputMode, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003ED330, Result__Enum, VoiceManager_FFIMethods_GetInputModeMethod_Invoke, (VoiceManager_FFIMethods_GetInputModeMethod * __this, void * methodsPtr, InputMode * inputMode, MethodInfo * method)); +DO_APP_FUNC(0x00414C70, IAsyncResult *, VoiceManager_FFIMethods_GetInputModeMethod_BeginInvoke, (VoiceManager_FFIMethods_GetInputModeMethod * __this, void * methodsPtr, InputMode * inputMode, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003F75B0, Result__Enum, VoiceManager_FFIMethods_GetInputModeMethod_EndInvoke, (VoiceManager_FFIMethods_GetInputModeMethod * __this, InputMode * inputMode, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003ED5F0, void, VoiceManager_FFIMethods_SetInputModeCallback__ctor, (VoiceManager_FFIMethods_SetInputModeCallback * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EC2D0, void, VoiceManager_FFIMethods_SetInputModeCallback_Invoke, (VoiceManager_FFIMethods_SetInputModeCallback * __this, void * ptr, Result__Enum result, MethodInfo * method)); DO_APP_FUNC(0x00414D20, IAsyncResult *, VoiceManager_FFIMethods_SetInputModeCallback_BeginInvoke, (VoiceManager_FFIMethods_SetInputModeCallback * __this, void * ptr, Result__Enum result, AsyncCallback * callback, Object * object, MethodInfo * method)); @@ -82442,33 +93718,33 @@ DO_APP_FUNC(0x00414F00, void, VoiceManager_FFIMethods_SetInputModeMethod_Invoke, DO_APP_FUNC(0x00414F40, IAsyncResult *, VoiceManager_FFIMethods_SetInputModeMethod_BeginInvoke, (VoiceManager_FFIMethods_SetInputModeMethod * __this, void * methodsPtr, InputMode inputMode, void * callbackData, VoiceManager_FFIMethods_SetInputModeCallback * callback, AsyncCallback * __callback, Object * object, MethodInfo * method)); DO_APP_FUNC(0x003BA270, void, VoiceManager_FFIMethods_SetInputModeMethod_EndInvoke, (VoiceManager_FFIMethods_SetInputModeMethod * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003ED200, void, VoiceManager_FFIMethods_IsSelfMuteMethod__ctor, (VoiceManager_FFIMethods_IsSelfMuteMethod * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003ED330, Result__Enum, VoiceManager_FFIMethods_IsSelfMuteMethod_Invoke, (VoiceManager_FFIMethods_IsSelfMuteMethod * __this, void * methodsPtr, bool mute, MethodInfo * method)); -DO_APP_FUNC(0x00415010, IAsyncResult *, VoiceManager_FFIMethods_IsSelfMuteMethod_BeginInvoke, (VoiceManager_FFIMethods_IsSelfMuteMethod * __this, void * methodsPtr, bool mute, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003F75B0, Result__Enum, VoiceManager_FFIMethods_IsSelfMuteMethod_EndInvoke, (VoiceManager_FFIMethods_IsSelfMuteMethod * __this, bool mute, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003ED330, Result__Enum, VoiceManager_FFIMethods_IsSelfMuteMethod_Invoke, (VoiceManager_FFIMethods_IsSelfMuteMethod * __this, void * methodsPtr, bool * mute, MethodInfo * method)); +DO_APP_FUNC(0x00415010, IAsyncResult *, VoiceManager_FFIMethods_IsSelfMuteMethod_BeginInvoke, (VoiceManager_FFIMethods_IsSelfMuteMethod * __this, void * methodsPtr, bool * mute, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003F75B0, Result__Enum, VoiceManager_FFIMethods_IsSelfMuteMethod_EndInvoke, (VoiceManager_FFIMethods_IsSelfMuteMethod * __this, bool * mute, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003EFB00, void, VoiceManager_FFIMethods_SetSelfMuteMethod__ctor, (VoiceManager_FFIMethods_SetSelfMuteMethod * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003ED330, Result__Enum, VoiceManager_FFIMethods_SetSelfMuteMethod_Invoke, (VoiceManager_FFIMethods_SetSelfMuteMethod * __this, void * methodsPtr, bool mute, MethodInfo * method)); DO_APP_FUNC(0x004150C0, IAsyncResult *, VoiceManager_FFIMethods_SetSelfMuteMethod_BeginInvoke, (VoiceManager_FFIMethods_SetSelfMuteMethod * __this, void * methodsPtr, bool mute, AsyncCallback * callback, Object * object, MethodInfo * method)); DO_APP_FUNC(0x003ED3D0, Result__Enum, VoiceManager_FFIMethods_SetSelfMuteMethod_EndInvoke, (VoiceManager_FFIMethods_SetSelfMuteMethod * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003ED200, void, VoiceManager_FFIMethods_IsSelfDeafMethod__ctor, (VoiceManager_FFIMethods_IsSelfDeafMethod * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003ED330, Result__Enum, VoiceManager_FFIMethods_IsSelfDeafMethod_Invoke, (VoiceManager_FFIMethods_IsSelfDeafMethod * __this, void * methodsPtr, bool deaf, MethodInfo * method)); -DO_APP_FUNC(0x00415170, IAsyncResult *, VoiceManager_FFIMethods_IsSelfDeafMethod_BeginInvoke, (VoiceManager_FFIMethods_IsSelfDeafMethod * __this, void * methodsPtr, bool deaf, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003F75B0, Result__Enum, VoiceManager_FFIMethods_IsSelfDeafMethod_EndInvoke, (VoiceManager_FFIMethods_IsSelfDeafMethod * __this, bool deaf, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003ED330, Result__Enum, VoiceManager_FFIMethods_IsSelfDeafMethod_Invoke, (VoiceManager_FFIMethods_IsSelfDeafMethod * __this, void * methodsPtr, bool * deaf, MethodInfo * method)); +DO_APP_FUNC(0x00415170, IAsyncResult *, VoiceManager_FFIMethods_IsSelfDeafMethod_BeginInvoke, (VoiceManager_FFIMethods_IsSelfDeafMethod * __this, void * methodsPtr, bool * deaf, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003F75B0, Result__Enum, VoiceManager_FFIMethods_IsSelfDeafMethod_EndInvoke, (VoiceManager_FFIMethods_IsSelfDeafMethod * __this, bool * deaf, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003EFB00, void, VoiceManager_FFIMethods_SetSelfDeafMethod__ctor, (VoiceManager_FFIMethods_SetSelfDeafMethod * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003ED330, Result__Enum, VoiceManager_FFIMethods_SetSelfDeafMethod_Invoke, (VoiceManager_FFIMethods_SetSelfDeafMethod * __this, void * methodsPtr, bool deaf, MethodInfo * method)); DO_APP_FUNC(0x00415220, IAsyncResult *, VoiceManager_FFIMethods_SetSelfDeafMethod_BeginInvoke, (VoiceManager_FFIMethods_SetSelfDeafMethod * __this, void * methodsPtr, bool deaf, AsyncCallback * callback, Object * object, MethodInfo * method)); DO_APP_FUNC(0x003ED3D0, Result__Enum, VoiceManager_FFIMethods_SetSelfDeafMethod_EndInvoke, (VoiceManager_FFIMethods_SetSelfDeafMethod * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003FABF0, void, VoiceManager_FFIMethods_IsLocalMuteMethod__ctor, (VoiceManager_FFIMethods_IsLocalMuteMethod * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EF9C0, Result__Enum, VoiceManager_FFIMethods_IsLocalMuteMethod_Invoke, (VoiceManager_FFIMethods_IsLocalMuteMethod * __this, void * methodsPtr, int64_t userId, bool mute, MethodInfo * method)); -DO_APP_FUNC(0x004152D0, IAsyncResult *, VoiceManager_FFIMethods_IsLocalMuteMethod_BeginInvoke, (VoiceManager_FFIMethods_IsLocalMuteMethod * __this, void * methodsPtr, int64_t userId, bool mute, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003F75B0, Result__Enum, VoiceManager_FFIMethods_IsLocalMuteMethod_EndInvoke, (VoiceManager_FFIMethods_IsLocalMuteMethod * __this, bool mute, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EF9C0, Result__Enum, VoiceManager_FFIMethods_IsLocalMuteMethod_Invoke, (VoiceManager_FFIMethods_IsLocalMuteMethod * __this, void * methodsPtr, int64_t userId, bool * mute, MethodInfo * method)); +DO_APP_FUNC(0x004152D0, IAsyncResult *, VoiceManager_FFIMethods_IsLocalMuteMethod_BeginInvoke, (VoiceManager_FFIMethods_IsLocalMuteMethod * __this, void * methodsPtr, int64_t userId, bool * mute, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003F75B0, Result__Enum, VoiceManager_FFIMethods_IsLocalMuteMethod_EndInvoke, (VoiceManager_FFIMethods_IsLocalMuteMethod * __this, bool * mute, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x00409160, void, VoiceManager_FFIMethods_SetLocalMuteMethod__ctor, (VoiceManager_FFIMethods_SetLocalMuteMethod * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EF9C0, Result__Enum, VoiceManager_FFIMethods_SetLocalMuteMethod_Invoke, (VoiceManager_FFIMethods_SetLocalMuteMethod * __this, void * methodsPtr, int64_t userId, bool mute, MethodInfo * method)); DO_APP_FUNC(0x004153A0, IAsyncResult *, VoiceManager_FFIMethods_SetLocalMuteMethod_BeginInvoke, (VoiceManager_FFIMethods_SetLocalMuteMethod * __this, void * methodsPtr, int64_t userId, bool mute, AsyncCallback * callback, Object * object, MethodInfo * method)); DO_APP_FUNC(0x003ED3D0, Result__Enum, VoiceManager_FFIMethods_SetLocalMuteMethod_EndInvoke, (VoiceManager_FFIMethods_SetLocalMuteMethod * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003FABF0, void, VoiceManager_FFIMethods_GetLocalVolumeMethod__ctor, (VoiceManager_FFIMethods_GetLocalVolumeMethod * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EF9C0, Result__Enum, VoiceManager_FFIMethods_GetLocalVolumeMethod_Invoke, (VoiceManager_FFIMethods_GetLocalVolumeMethod * __this, void * methodsPtr, int64_t userId, uint8_t volume, MethodInfo * method)); -DO_APP_FUNC(0x00415470, IAsyncResult *, VoiceManager_FFIMethods_GetLocalVolumeMethod_BeginInvoke, (VoiceManager_FFIMethods_GetLocalVolumeMethod * __this, void * methodsPtr, int64_t userId, uint8_t volume, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003F75B0, Result__Enum, VoiceManager_FFIMethods_GetLocalVolumeMethod_EndInvoke, (VoiceManager_FFIMethods_GetLocalVolumeMethod * __this, uint8_t volume, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EF9C0, Result__Enum, VoiceManager_FFIMethods_GetLocalVolumeMethod_Invoke, (VoiceManager_FFIMethods_GetLocalVolumeMethod * __this, void * methodsPtr, int64_t userId, uint8_t * volume, MethodInfo * method)); +DO_APP_FUNC(0x00415470, IAsyncResult *, VoiceManager_FFIMethods_GetLocalVolumeMethod_BeginInvoke, (VoiceManager_FFIMethods_GetLocalVolumeMethod * __this, void * methodsPtr, int64_t userId, uint8_t * volume, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003F75B0, Result__Enum, VoiceManager_FFIMethods_GetLocalVolumeMethod_EndInvoke, (VoiceManager_FFIMethods_GetLocalVolumeMethod * __this, uint8_t * volume, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x00409160, void, VoiceManager_FFIMethods_SetLocalVolumeMethod__ctor, (VoiceManager_FFIMethods_SetLocalVolumeMethod * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EF9C0, Result__Enum, VoiceManager_FFIMethods_SetLocalVolumeMethod_Invoke, (VoiceManager_FFIMethods_SetLocalVolumeMethod * __this, void * methodsPtr, int64_t userId, uint8_t volume, MethodInfo * method)); DO_APP_FUNC(0x00415540, IAsyncResult *, VoiceManager_FFIMethods_SetLocalVolumeMethod_BeginInvoke, (VoiceManager_FFIMethods_SetLocalVolumeMethod * __this, void * methodsPtr, int64_t userId, uint8_t volume, AsyncCallback * callback, Object * object, MethodInfo * method)); @@ -82484,20 +93760,26 @@ DO_APP_FUNC(0x003BA270, void, VoiceManager_SettingsUpdateHandler_EndInvoke, (Voi DO_APP_FUNC(0x00415690, AchievementManager_FFIMethods, AchievementManager_get_Methods, (AchievementManager * __this, MethodInfo * method)); DO_APP_FUNC(0x00415810, void, AchievementManager_add_OnUserAchievementUpdate, (AchievementManager * __this, AchievementManager_UserAchievementUpdateHandler * value, MethodInfo * method)); DO_APP_FUNC(0x00415900, void, AchievementManager_remove_OnUserAchievementUpdate, (AchievementManager * __this, AchievementManager_UserAchievementUpdateHandler * value, MethodInfo * method)); -DO_APP_FUNC(0x004159F0, void, AchievementManager__ctor, (AchievementManager * __this, void * ptr, void * eventsPtr, AchievementManager_FFIEvents events, MethodInfo * method)); -DO_APP_FUNC(0x00415B20, void, AchievementManager_InitEvents, (AchievementManager * __this, void * eventsPtr, AchievementManager_FFIEvents events, MethodInfo * method)); +DO_APP_FUNC(0x004159F0, void, AchievementManager__ctor, (AchievementManager * __this, void * ptr, void * eventsPtr, AchievementManager_FFIEvents * events, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C4C0, AchievementManager__ctor__MethodInfo); +DO_APP_FUNC(0x00415B20, void, AchievementManager_InitEvents, (AchievementManager * __this, void * eventsPtr, AchievementManager_FFIEvents * events, MethodInfo * method)); DO_APP_FUNC(0x00415DB0, void, AchievementManager_SetUserAchievementCallbackImpl, (void * ptr, Result__Enum result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C488, AchievementManager_SetUserAchievementCallbackImpl__MethodInfo); DO_APP_FUNC(0x00415EE0, void, AchievementManager_SetUserAchievement, (AchievementManager * __this, int64_t achievementId, uint8_t percentComplete, AchievementManager_SetUserAchievementHandler * callback, MethodInfo * method)); DO_APP_FUNC(0x004160D0, void, AchievementManager_FetchUserAchievementsCallbackImpl, (void * ptr, Result__Enum result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C470, AchievementManager_FetchUserAchievementsCallbackImpl__MethodInfo); DO_APP_FUNC(0x00416200, void, AchievementManager_FetchUserAchievements, (AchievementManager * __this, AchievementManager_FetchUserAchievementsHandler * callback, MethodInfo * method)); DO_APP_FUNC(0x004163E0, int32_t, AchievementManager_CountUserAchievements, (AchievementManager * __this, MethodInfo * method)); DO_APP_FUNC(0x00416440, UserAchievement, AchievementManager_GetUserAchievement, (AchievementManager * __this, int64_t userAchievementId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C460, AchievementManager_GetUserAchievement__MethodInfo); DO_APP_FUNC(0x00416510, UserAchievement, AchievementManager_GetUserAchievementAt, (AchievementManager * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x004165E0, void, AchievementManager_OnUserAchievementUpdateImpl, (void * ptr, UserAchievement userAchievement, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C458, AchievementManager_GetUserAchievementAt__MethodInfo); +DO_APP_FUNC(0x004165E0, void, AchievementManager_OnUserAchievementUpdateImpl, (void * ptr, UserAchievement * userAchievement, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C4B8, AchievementManager_OnUserAchievementUpdateImpl__MethodInfo); DO_APP_FUNC(0x003EC1A0, void, AchievementManager_FFIEvents_UserAchievementUpdateHandler__ctor, (AchievementManager_FFIEvents_UserAchievementUpdateHandler * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EC2D0, void, AchievementManager_FFIEvents_UserAchievementUpdateHandler_Invoke, (AchievementManager_FFIEvents_UserAchievementUpdateHandler * __this, void * ptr, UserAchievement userAchievement, MethodInfo * method)); -DO_APP_FUNC(0x00416730, IAsyncResult *, AchievementManager_FFIEvents_UserAchievementUpdateHandler_BeginInvoke, (AchievementManager_FFIEvents_UserAchievementUpdateHandler * __this, void * ptr, UserAchievement userAchievement, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003EC4B0, void, AchievementManager_FFIEvents_UserAchievementUpdateHandler_EndInvoke, (AchievementManager_FFIEvents_UserAchievementUpdateHandler * __this, UserAchievement userAchievement, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EC2D0, void, AchievementManager_FFIEvents_UserAchievementUpdateHandler_Invoke, (AchievementManager_FFIEvents_UserAchievementUpdateHandler * __this, void * ptr, UserAchievement * userAchievement, MethodInfo * method)); +DO_APP_FUNC(0x00416730, IAsyncResult *, AchievementManager_FFIEvents_UserAchievementUpdateHandler_BeginInvoke, (AchievementManager_FFIEvents_UserAchievementUpdateHandler * __this, void * ptr, UserAchievement * userAchievement, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003EC4B0, void, AchievementManager_FFIEvents_UserAchievementUpdateHandler_EndInvoke, (AchievementManager_FFIEvents_UserAchievementUpdateHandler * __this, UserAchievement * userAchievement, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003ED5F0, void, AchievementManager_FFIMethods_SetUserAchievementCallback__ctor, (AchievementManager_FFIMethods_SetUserAchievementCallback * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EC2D0, void, AchievementManager_FFIMethods_SetUserAchievementCallback_Invoke, (AchievementManager_FFIMethods_SetUserAchievementCallback * __this, void * ptr, Result__Enum result, MethodInfo * method)); DO_APP_FUNC(0x004167E0, IAsyncResult *, AchievementManager_FFIMethods_SetUserAchievementCallback_BeginInvoke, (AchievementManager_FFIMethods_SetUserAchievementCallback * __this, void * ptr, Result__Enum result, AsyncCallback * callback, Object * object, MethodInfo * method)); @@ -82515,17 +93797,17 @@ DO_APP_FUNC(0x003EDBB0, void, AchievementManager_FFIMethods_FetchUserAchievement DO_APP_FUNC(0x00416B60, IAsyncResult *, AchievementManager_FFIMethods_FetchUserAchievementsMethod_BeginInvoke, (AchievementManager_FFIMethods_FetchUserAchievementsMethod * __this, void * methodsPtr, void * callbackData, AchievementManager_FFIMethods_FetchUserAchievementsCallback * callback, AsyncCallback * __callback, Object * object, MethodInfo * method)); DO_APP_FUNC(0x003BA270, void, AchievementManager_FFIMethods_FetchUserAchievementsMethod_EndInvoke, (AchievementManager_FFIMethods_FetchUserAchievementsMethod * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003EC1A0, void, AchievementManager_FFIMethods_CountUserAchievementsMethod__ctor, (AchievementManager_FFIMethods_CountUserAchievementsMethod * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EC2D0, void, AchievementManager_FFIMethods_CountUserAchievementsMethod_Invoke, (AchievementManager_FFIMethods_CountUserAchievementsMethod * __this, void * methodsPtr, int32_t count, MethodInfo * method)); -DO_APP_FUNC(0x00416C00, IAsyncResult *, AchievementManager_FFIMethods_CountUserAchievementsMethod_BeginInvoke, (AchievementManager_FFIMethods_CountUserAchievementsMethod * __this, void * methodsPtr, int32_t count, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003EC4B0, void, AchievementManager_FFIMethods_CountUserAchievementsMethod_EndInvoke, (AchievementManager_FFIMethods_CountUserAchievementsMethod * __this, int32_t count, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EC2D0, void, AchievementManager_FFIMethods_CountUserAchievementsMethod_Invoke, (AchievementManager_FFIMethods_CountUserAchievementsMethod * __this, void * methodsPtr, int32_t * count, MethodInfo * method)); +DO_APP_FUNC(0x00416C00, IAsyncResult *, AchievementManager_FFIMethods_CountUserAchievementsMethod_BeginInvoke, (AchievementManager_FFIMethods_CountUserAchievementsMethod * __this, void * methodsPtr, int32_t * count, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003EC4B0, void, AchievementManager_FFIMethods_CountUserAchievementsMethod_EndInvoke, (AchievementManager_FFIMethods_CountUserAchievementsMethod * __this, int32_t * count, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003FABF0, void, AchievementManager_FFIMethods_GetUserAchievementMethod__ctor, (AchievementManager_FFIMethods_GetUserAchievementMethod * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EF9C0, Result__Enum, AchievementManager_FFIMethods_GetUserAchievementMethod_Invoke, (AchievementManager_FFIMethods_GetUserAchievementMethod * __this, void * methodsPtr, int64_t userAchievementId, UserAchievement userAchievement, MethodInfo * method)); -DO_APP_FUNC(0x00416CB0, IAsyncResult *, AchievementManager_FFIMethods_GetUserAchievementMethod_BeginInvoke, (AchievementManager_FFIMethods_GetUserAchievementMethod * __this, void * methodsPtr, int64_t userAchievementId, UserAchievement userAchievement, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003F75B0, Result__Enum, AchievementManager_FFIMethods_GetUserAchievementMethod_EndInvoke, (AchievementManager_FFIMethods_GetUserAchievementMethod * __this, UserAchievement userAchievement, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EF9C0, Result__Enum, AchievementManager_FFIMethods_GetUserAchievementMethod_Invoke, (AchievementManager_FFIMethods_GetUserAchievementMethod * __this, void * methodsPtr, int64_t userAchievementId, UserAchievement * userAchievement, MethodInfo * method)); +DO_APP_FUNC(0x00416CB0, IAsyncResult *, AchievementManager_FFIMethods_GetUserAchievementMethod_BeginInvoke, (AchievementManager_FFIMethods_GetUserAchievementMethod * __this, void * methodsPtr, int64_t userAchievementId, UserAchievement * userAchievement, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003F75B0, Result__Enum, AchievementManager_FFIMethods_GetUserAchievementMethod_EndInvoke, (AchievementManager_FFIMethods_GetUserAchievementMethod * __this, UserAchievement * userAchievement, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003F7830, void, AchievementManager_FFIMethods_GetUserAchievementAtMethod__ctor, (AchievementManager_FFIMethods_GetUserAchievementAtMethod * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EF9C0, Result__Enum, AchievementManager_FFIMethods_GetUserAchievementAtMethod_Invoke, (AchievementManager_FFIMethods_GetUserAchievementAtMethod * __this, void * methodsPtr, int32_t index, UserAchievement userAchievement, MethodInfo * method)); -DO_APP_FUNC(0x00416D80, IAsyncResult *, AchievementManager_FFIMethods_GetUserAchievementAtMethod_BeginInvoke, (AchievementManager_FFIMethods_GetUserAchievementAtMethod * __this, void * methodsPtr, int32_t index, UserAchievement userAchievement, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003F75B0, Result__Enum, AchievementManager_FFIMethods_GetUserAchievementAtMethod_EndInvoke, (AchievementManager_FFIMethods_GetUserAchievementAtMethod * __this, UserAchievement userAchievement, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EF9C0, Result__Enum, AchievementManager_FFIMethods_GetUserAchievementAtMethod_Invoke, (AchievementManager_FFIMethods_GetUserAchievementAtMethod * __this, void * methodsPtr, int32_t index, UserAchievement * userAchievement, MethodInfo * method)); +DO_APP_FUNC(0x00416D80, IAsyncResult *, AchievementManager_FFIMethods_GetUserAchievementAtMethod_BeginInvoke, (AchievementManager_FFIMethods_GetUserAchievementAtMethod * __this, void * methodsPtr, int32_t index, UserAchievement * userAchievement, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003F75B0, Result__Enum, AchievementManager_FFIMethods_GetUserAchievementAtMethod_EndInvoke, (AchievementManager_FFIMethods_GetUserAchievementAtMethod * __this, UserAchievement * userAchievement, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003EE520, void, AchievementManager_SetUserAchievementHandler__ctor, (AchievementManager_SetUserAchievementHandler * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EE650, void, AchievementManager_SetUserAchievementHandler_Invoke, (AchievementManager_SetUserAchievementHandler * __this, Result__Enum result, MethodInfo * method)); DO_APP_FUNC(0x00416E50, IAsyncResult *, AchievementManager_SetUserAchievementHandler_BeginInvoke, (AchievementManager_SetUserAchievementHandler * __this, Result__Enum result, AsyncCallback * callback, Object * object, MethodInfo * method)); @@ -82535,44 +93817,72 @@ DO_APP_FUNC(0x003EE650, void, AchievementManager_FetchUserAchievementsHandler_In DO_APP_FUNC(0x00416ED0, IAsyncResult *, AchievementManager_FetchUserAchievementsHandler_BeginInvoke, (AchievementManager_FetchUserAchievementsHandler * __this, Result__Enum result, AsyncCallback * callback, Object * object, MethodInfo * method)); DO_APP_FUNC(0x003BA270, void, AchievementManager_FetchUserAchievementsHandler_EndInvoke, (AchievementManager_FetchUserAchievementsHandler * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003EEA50, void, AchievementManager_UserAchievementUpdateHandler__ctor, (AchievementManager_UserAchievementUpdateHandler * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EE650, void, AchievementManager_UserAchievementUpdateHandler_Invoke, (AchievementManager_UserAchievementUpdateHandler * __this, UserAchievement userAchievement, MethodInfo * method)); -DO_APP_FUNC(0x00416F50, IAsyncResult *, AchievementManager_UserAchievementUpdateHandler_BeginInvoke, (AchievementManager_UserAchievementUpdateHandler * __this, UserAchievement userAchievement, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003EC4B0, void, AchievementManager_UserAchievementUpdateHandler_EndInvoke, (AchievementManager_UserAchievementUpdateHandler * __this, UserAchievement userAchievement, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EE650, void, AchievementManager_UserAchievementUpdateHandler_Invoke, (AchievementManager_UserAchievementUpdateHandler * __this, UserAchievement * userAchievement, MethodInfo * method)); +DO_APP_FUNC(0x00416F50, IAsyncResult *, AchievementManager_UserAchievementUpdateHandler_BeginInvoke, (AchievementManager_UserAchievementUpdateHandler * __this, UserAchievement * userAchievement, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003EC4B0, void, AchievementManager_UserAchievementUpdateHandler_EndInvoke, (AchievementManager_UserAchievementUpdateHandler * __this, UserAchievement * userAchievement, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x00416FE0, String *, ExtensionMethods_1_CTToTitleCase, (String * str, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C3E0, ExtensionMethods_1_CTToTitleCase__MethodInfo); DO_APP_FUNC(0x00417110, String *, ExtensionMethods_1_CTReverse, (String * str, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C3D0, ExtensionMethods_1_CTReverse__MethodInfo); DO_APP_FUNC(0x00417230, String *, ExtensionMethods_1_CTReplace, (String * str, String * oldString, String * newString, StringComparison__Enum comp, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C3C0, ExtensionMethods_1_CTReplace__MethodInfo); DO_APP_FUNC(0x004173C0, bool, ExtensionMethods_1_CTEquals, (String * str, String * toCheck, StringComparison__Enum comp, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C3A8, ExtensionMethods_1_CTEquals__MethodInfo); DO_APP_FUNC(0x00417430, bool, ExtensionMethods_1_CTContains, (String * str, String * toCheck, StringComparison__Enum comp, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C3A0, ExtensionMethods_1_CTContains__MethodInfo); DO_APP_FUNC(0x004174C0, bool, ExtensionMethods_1_CTContainsAny, (String * str, String * searchTerms, uint16_t splitChar, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C370, ExtensionMethods_1_CTContainsAny__MethodInfo); DO_APP_FUNC(0x004176B0, bool, ExtensionMethods_1_CTContainsAll, (String * str, String * searchTerms, uint16_t splitChar, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C350, ExtensionMethods_1_CTContainsAll__MethodInfo); DO_APP_FUNC(0x004178A0, bool, ExtensionMethods_1_CTisNumeric, (String * str, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C348, ExtensionMethods_1_CTisNumeric__MethodInfo); DO_APP_FUNC(0x00417980, bool, ExtensionMethods_1_CTisInteger, (String * str, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C338, ExtensionMethods_1_CTisInteger__MethodInfo); DO_APP_FUNC(0x00417A40, bool, ExtensionMethods_1_CTStartsWith, (String * str, String * toCheck, StringComparison__Enum comp, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C330, ExtensionMethods_1_CTStartsWith__MethodInfo); DO_APP_FUNC(0x00417AD0, bool, ExtensionMethods_1_CTEndsWith, (String * str, String * toCheck, StringComparison__Enum comp, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C328, ExtensionMethods_1_CTEndsWith__MethodInfo); DO_APP_FUNC(0x00417B60, int32_t, ExtensionMethods_1_CTLastIndexOf, (String * str, String * toCheck, StringComparison__Enum comp, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C320, ExtensionMethods_1_CTLastIndexOf__MethodInfo); DO_APP_FUNC(0x00417C00, int32_t, ExtensionMethods_1_CTIndexOf, (String * str, String * toCheck, StringComparison__Enum comp, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C318, ExtensionMethods_1_CTIndexOf__MethodInfo); DO_APP_FUNC(0x00417CA0, int32_t, ExtensionMethods_1_CTIndexOf_1, (String * str, String * toCheck, int32_t startIndex, StringComparison__Enum comp, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C310, ExtensionMethods_1_CTIndexOf_1__MethodInfo); DO_APP_FUNC(0x00417D40, String *, ExtensionMethods_1_CTDump, (Quaternion__Array * array, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C2F8, ExtensionMethods_1_CTDump__MethodInfo); DO_APP_FUNC(0x00417F10, String *, ExtensionMethods_1_CTDump_1, (Vector2__Array * array, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C2F0, ExtensionMethods_1_CTDump_1__MethodInfo); DO_APP_FUNC(0x00418090, String *, ExtensionMethods_1_CTDump_2, (Vector3__Array * array, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C2E8, ExtensionMethods_1_CTDump_2__MethodInfo); DO_APP_FUNC(0x00418240, String *, ExtensionMethods_1_CTDump_3, (Vector4__Array * array, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C2E0, ExtensionMethods_1_CTDump_3__MethodInfo); DO_APP_FUNC(0x00418410, String *, ExtensionMethods_1_CTDump_4, (IList_1_UnityEngine_Quaternion_ * list, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C2B0, ExtensionMethods_1_CTDump_4__MethodInfo); DO_APP_FUNC(0x00418740, String *, ExtensionMethods_1_CTDump_5, (IList_1_UnityEngine_Vector2_ * list, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C298, ExtensionMethods_1_CTDump_5__MethodInfo); DO_APP_FUNC(0x00418A10, String *, ExtensionMethods_1_CTDump_6, (IList_1_UnityEngine_Vector3_ * list, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C280, ExtensionMethods_1_CTDump_6__MethodInfo); DO_APP_FUNC(0x00418D20, String *, ExtensionMethods_1_CTDump_7, (IList_1_UnityEngine_Vector4_ * list, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C268, ExtensionMethods_1_CTDump_7__MethodInfo); DO_APP_FUNC(0x00419050, bool, ExtensionMethods_1_CTIsVisibleFrom, (Renderer * renderer, Camera * camera, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C258, ExtensionMethods_1_CTIsVisibleFrom__MethodInfo); DO_APP_FUNC(0x00419380, Transform *, ExtensionMethods_1_CTDeepSearch, (Transform * parent, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C240, ExtensionMethods_1_CTDeepSearch__MethodInfo); DO_APP_FUNC(0x00419910, Byte__Array *, ExtensionMethods_1_CTReadFully, (Stream * input, int32_t bufferSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C220, ExtensionMethods_1_CTReadFully__MethodInfo); DO_APP_FUNC(0x003AE050, void, ExtensionMethods_c_DisplayClass5_0__ctor, (ExtensionMethods_c_DisplayClass5_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00419B20, bool, ExtensionMethods_c_DisplayClass5_0__CTContainsAny_b__0, (ExtensionMethods_c_DisplayClass5_0 * __this, String * searchTerm, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C380, ExtensionMethods_c_DisplayClass5_0__CTContainsAny_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, ExtensionMethods_c_DisplayClass6_0__ctor, (ExtensionMethods_c_DisplayClass6_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00419B20, bool, ExtensionMethods_c_DisplayClass6_0__CTContainsAll_b__0, (ExtensionMethods_c_DisplayClass6_0 * __this, String * searchTerm, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C360, ExtensionMethods_c_DisplayClass6_0__CTContainsAll_b__0__MethodInfo); DO_APP_FUNC(0x00419D70, void, SurviveSceneSwitch_Start, (SurviveSceneSwitch * __this, MethodInfo * method)); DO_APP_FUNC(0x00419E10, void, SurviveSceneSwitch_Update, (SurviveSceneSwitch * __this, MethodInfo * method)); DO_APP_FUNC(0x0041A200, void, SurviveSceneSwitch__ctor, (SurviveSceneSwitch * __this, MethodInfo * method)); DO_APP_FUNC(0x0041A2A0, void, SurviveSceneSwitch_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SurviveSceneSwitch_c__ctor, (SurviveSceneSwitch_c * __this, MethodInfo * method)); DO_APP_FUNC(0x0041A350, bool, SurviveSceneSwitch_c__Update_b__5_0, (SurviveSceneSwitch_c * __this, GameObject * _go, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C1F8, SurviveSceneSwitch_c__Update_b__5_0__MethodInfo); DO_APP_FUNC(0x0041A450, void, TakeScreenshot_Update, (TakeScreenshot * __this, MethodInfo * method)); DO_APP_FUNC(0x0041A4C0, void, TakeScreenshot_Capture, (TakeScreenshot * __this, MethodInfo * method)); DO_APP_FUNC(0x0041A6F0, void, TakeScreenshot__ctor, (TakeScreenshot * __this, MethodInfo * method)); @@ -82637,25 +93947,36 @@ DO_APP_FUNC(0x003AE050, void, BaseHelper__ctor, (BaseHelper * __this, MethodInfo DO_APP_FUNC(0x004208E0, void, BaseHelper_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BaseHelper_c__ctor, (BaseHelper_c * __this, MethodInfo * method)); DO_APP_FUNC(0x00420990, bool, BaseHelper_c__RemoteCertificateValidationCallback_b__65_0, (BaseHelper_c * __this, X509ChainStatus t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C0C0, BaseHelper_c__RemoteCertificateValidationCallback_b__65_0__MethodInfo); DO_APP_FUNC(0x004209A0, bool, BaseHelper_c__GetFiles_b__68_0, (BaseHelper_c * __this, String * extension, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C068, BaseHelper_c__GetFiles_b__68_0__MethodInfo); DO_APP_FUNC(0x00420A60, String *, BaseHelper_c__GetFiles_b__68_1, (BaseHelper_c * __this, String * q, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C060, BaseHelper_c__GetFiles_b__68_1__MethodInfo); DO_APP_FUNC(0x00420A70, HelperCT *, HelperCT_get_Instance, (MethodInfo * method)); DO_APP_FUNC(0x00420AB0, void, HelperCT_set_Instance, (HelperCT * value, MethodInfo * method)); DO_APP_FUNC(0x00420B50, void, HelperCT_Awake, (HelperCT * __this, MethodInfo * method)); DO_APP_FUNC(0x00420BF0, void, HelperCT_OnApplicationQuit, (HelperCT * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, HelperCT__ctor, (HelperCT * __this, MethodInfo * method)); DO_APP_FUNC(0x00420C50, bool, CTPlayerPrefs_HasKey, (String * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BEC8, CTPlayerPrefs_HasKey__MethodInfo); DO_APP_FUNC(0x00420D00, void, CTPlayerPrefs_DeleteAll, (MethodInfo * method)); DO_APP_FUNC(0x00420D50, void, CTPlayerPrefs_DeleteKey, (String * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BEC0, CTPlayerPrefs_DeleteKey__MethodInfo); DO_APP_FUNC(0x00420E00, void, CTPlayerPrefs_Save, (MethodInfo * method)); DO_APP_FUNC(0x00420E50, String *, CTPlayerPrefs_GetString, (String * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BEB8, CTPlayerPrefs_GetString__MethodInfo); DO_APP_FUNC(0x00420ED0, float, CTPlayerPrefs_GetFloat, (String * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BEB0, CTPlayerPrefs_GetFloat__MethodInfo); DO_APP_FUNC(0x00420F80, int32_t, CTPlayerPrefs_GetInt, (String * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BEA8, CTPlayerPrefs_GetInt__MethodInfo); DO_APP_FUNC(0x00421030, bool, CTPlayerPrefs_GetBool, (String * key, MethodInfo * method)); DO_APP_FUNC(0x004211F0, DateTime, CTPlayerPrefs_GetDate, (String * key, MethodInfo * method)); DO_APP_FUNC(0x004212F0, void, CTPlayerPrefs_SetString, (String * key, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BE90, CTPlayerPrefs_SetString__MethodInfo); DO_APP_FUNC(0x00421370, void, CTPlayerPrefs_SetFloat, (String * key, float value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BE88, CTPlayerPrefs_SetFloat__MethodInfo); DO_APP_FUNC(0x004213F0, void, CTPlayerPrefs_SetInt, (String * key, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BE78, CTPlayerPrefs_SetInt__MethodInfo); DO_APP_FUNC(0x00421470, void, CTPlayerPrefs_SetBool, (String * key, bool value, MethodInfo * method)); DO_APP_FUNC(0x00421540, void, CTPlayerPrefs_SetDate, (String * key, DateTime value, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, void *, CTProcess_get_Handle, (CTProcess * __this, MethodInfo * method)); @@ -82692,17 +94013,21 @@ DO_APP_FUNC(0x00422200, void, CTProcess_BeginOutputReadLine, (CTProcess * __this DO_APP_FUNC(0x004222C0, void, CTProcess_BeginErrorReadLine, (CTProcess * __this, MethodInfo * method)); DO_APP_FUNC(0x00422380, void, CTProcess_Dispose, (CTProcess * __this, MethodInfo * method)); DO_APP_FUNC(0x004224E0, void, CTProcess_createProcess, (CTProcess * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BD90, CTProcess_createProcess__MethodInfo); DO_APP_FUNC(0x00423BC0, void, CTProcess_cleanup, (CTProcess * __this, MethodInfo * method)); DO_APP_FUNC(0x00423CB0, void, CTProcess_watchStdOut, (CTProcess * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BD50, CTProcess_watchStdOut__MethodInfo); DO_APP_FUNC(0x00423EA0, void, CTProcess_watchStdErr, (CTProcess * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BD30, CTProcess_watchStdErr__MethodInfo); DO_APP_FUNC(0x00424090, DataReceivedEventArgs *, CTProcess_createMockDataReceivedEventArgs, (String * data, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BB58, CTProcess_createMockDataReceivedEventArgs__MethodInfo); DO_APP_FUNC(0x00424300, void, CTProcess__ctor, (CTProcess * __this, MethodInfo * method)); DO_APP_FUNC(0x00424480, void, CTProcess__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x00424580, bool, NativeMethods_1_CreateProcess, (String * lpApplicationName, String * lpCommandLine, NativeMethods_SECURITY_ATTRIBUTES lpProcessAttributes, NativeMethods_SECURITY_ATTRIBUTES lpThreadAttributes, bool bInheritHandles, uint32_t dwCreationFlags, void * lpEnvironment, String * lpCurrentDirectory, NativeMethods_STARTUPINFOEX lpStartupInfo, NativeMethods_PROCESS_INFORMATION lpProcessInformation, MethodInfo * method)); +DO_APP_FUNC(0x00424580, bool, NativeMethods_1_CreateProcess, (String * lpApplicationName, String * lpCommandLine, NativeMethods_SECURITY_ATTRIBUTES * lpProcessAttributes, NativeMethods_SECURITY_ATTRIBUTES * lpThreadAttributes, bool bInheritHandles, uint32_t dwCreationFlags, void * lpEnvironment, String * lpCurrentDirectory, NativeMethods_STARTUPINFOEX * lpStartupInfo, NativeMethods_PROCESS_INFORMATION * lpProcessInformation, MethodInfo * method)); DO_APP_FUNC(0x00424850, bool, NativeMethods_1_CloseHandle, (void * hObject, MethodInfo * method)); -DO_APP_FUNC(0x004248E0, bool, NativeMethods_1_GetExitCodeProcess, (void * process, uint32_t exitCode, MethodInfo * method)); +DO_APP_FUNC(0x004248E0, bool, NativeMethods_1_GetExitCodeProcess, (void * process, uint32_t * exitCode, MethodInfo * method)); DO_APP_FUNC(0x00424980, uint32_t, NativeMethods_1_WaitForSingleObject, (void * handle, uint32_t milliseconds, MethodInfo * method)); -DO_APP_FUNC(0x00424A10, bool, NativeMethods_1_TerminateProcess, (void * hProcess, uint32_t exitCode, MethodInfo * method)); +DO_APP_FUNC(0x00424A10, bool, NativeMethods_1_TerminateProcess, (void * hProcess, uint32_t * exitCode, MethodInfo * method)); DO_APP_FUNC(0x00424AB0, uint32_t, NativeMethods_1_GetLastError, (MethodInfo * method)); DO_APP_FUNC(0x00424B20, void, CTProcessStartInfo__ctor, (CTProcessStartInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD20, bool, CTProcessStartInfo_get_UseThread, (CTProcessStartInfo * __this, MethodInfo * method)); @@ -82741,12 +94066,16 @@ DO_APP_FUNC(0x0041AEF0, bool, MemoryCacheStream_get_CanSeek, (MemoryCacheStream DO_APP_FUNC(0x0041AEF0, bool, MemoryCacheStream_get_CanWrite, (MemoryCacheStream * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7320, int64_t, MemoryCacheStream_get_Position, (MemoryCacheStream * __this, MethodInfo * method)); DO_APP_FUNC(0x00425390, void, MemoryCacheStream_set_Position, (MemoryCacheStream * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B9C8, MemoryCacheStream_set_Position__MethodInfo); DO_APP_FUNC(0x003C7390, int64_t, MemoryCacheStream_get_Length, (MemoryCacheStream * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, MemoryCacheStream_Flush, (MemoryCacheStream * __this, MethodInfo * method)); DO_APP_FUNC(0x00425420, int64_t, MemoryCacheStream_Seek, (MemoryCacheStream * __this, int64_t offset, SeekOrigin__Enum origin, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B990, MemoryCacheStream_Seek__MethodInfo); DO_APP_FUNC(0x004255A0, void, MemoryCacheStream_SetLength, (MemoryCacheStream * __this, int64_t value, MethodInfo * method)); DO_APP_FUNC(0x004255E0, int32_t, MemoryCacheStream_Read, (MemoryCacheStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B940, MemoryCacheStream_Read__MethodInfo); DO_APP_FUNC(0x00425840, void, MemoryCacheStream_Write, (MemoryCacheStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B900, MemoryCacheStream_Write__MethodInfo); DO_APP_FUNC(0x00425B10, int32_t, MemoryCacheStream_read, (MemoryCacheStream * __this, Byte__Array * buff, int32_t offset, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x00425BC0, void, MemoryCacheStream_write, (MemoryCacheStream * __this, Byte__Array * buff, int32_t offset, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x00425C80, void, MemoryCacheStream_createCache, (MemoryCacheStream * __this, MethodInfo * method)); @@ -82759,7 +94088,9 @@ DO_APP_FUNC(0x00426760, void, PlatformController__ctor, (PlatformController * __ DO_APP_FUNC(0x004267B0, void, PlatformController_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, PlatformController_c__ctor, (PlatformController_c * __this, MethodInfo * method)); DO_APP_FUNC(0x00426860, bool, PlatformController_c__activateGameObjects_b__8_0, (PlatformController_c * __this, GameObject * go, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B888, PlatformController_c__activateGameObjects_b__8_0__MethodInfo); DO_APP_FUNC(0x00426960, bool, PlatformController_c__activateScripts_b__9_0, (PlatformController_c * __this, MonoBehaviour * script, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B818, PlatformController_c__activateScripts_b__9_0__MethodInfo); DO_APP_FUNC(0x00426A60, void, RandomColor_Start, (RandomColor * __this, MethodInfo * method)); DO_APP_FUNC(0x004270A0, void, RandomColor_Update, (RandomColor * __this, MethodInfo * method)); DO_APP_FUNC(0x00427700, void, RandomColor__ctor, (RandomColor * __this, MethodInfo * method)); @@ -82775,8 +94106,11 @@ DO_APP_FUNC(0x00428410, void, SingletonHelper_set_isQuitting, (bool value, Metho DO_APP_FUNC(0x00428470, void, SingletonHelper__cctor, (MethodInfo * method)); DO_APP_FUNC(0x00428470, void, SingletonHelper_initialize, (MethodInfo * method)); DO_APP_FUNC(0x00428630, void, SingletonHelper_onQuitting, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B6C8, SingletonHelper_onQuitting__MethodInfo); DO_APP_FUNC(0x004286D0, void, SingletonHelper_onSceneLoaded, (Scene scene, LoadSceneMode__Enum mode, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B6B8, SingletonHelper_onSceneLoaded__MethodInfo); DO_APP_FUNC(0x004287A0, void, SingletonHelper_onSceneUnloaded, (Scene scene, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B6A8, SingletonHelper_onSceneUnloaded__MethodInfo); DO_APP_FUNC(0x003AE050, void, SingletonHelper__ctor, (SingletonHelper * __this, MethodInfo * method)); DO_APP_FUNC(0x00428870, void, FreeCam_Start, (FreeCam * __this, MethodInfo * method)); DO_APP_FUNC(0x00428910, void, FreeCam_Update, (FreeCam * __this, MethodInfo * method)); @@ -82812,9 +94146,9 @@ DO_APP_FUNC(0x0042C280, String *, BWFManager_Unmark, (BWFManager * __this, Strin DO_APP_FUNC(0x0042C380, IEnumerator *, BWFManager_containsAsync, (BWFManager * __this, String * text, ManagerMask__Enum mask, String__Array * sourceNames, MethodInfo * method)); DO_APP_FUNC(0x0042C500, IEnumerator *, BWFManager_getAllAsync, (BWFManager * __this, String * text, ManagerMask__Enum mask, String__Array * sourceNames, MethodInfo * method)); DO_APP_FUNC(0x0042C680, IEnumerator *, BWFManager_replaceAllAsync, (BWFManager * __this, String * text, ManagerMask__Enum mask, bool markOnly, String * prefix, String * postfix, String__Array * sourceNames, MethodInfo * method)); -DO_APP_FUNC(0x0042C8B0, void, BWFManager_contains, (BWFManager * __this, bool result, String * text, ManagerMask__Enum mask, String__Array * sourceNames, MethodInfo * method)); -DO_APP_FUNC(0x0042CB40, void, BWFManager_getAll, (BWFManager * __this, List_1_System_String_ * result, String * text, ManagerMask__Enum mask, String__Array * sourceNames, MethodInfo * method)); -DO_APP_FUNC(0x0042D070, void, BWFManager_replaceAll, (BWFManager * __this, String * result, String * text, ManagerMask__Enum mask, bool markOnly, String * prefix, String * postfix, String__Array * sourceNames, MethodInfo * method)); +DO_APP_FUNC(0x0042C8B0, void, BWFManager_contains, (BWFManager * __this, bool * result, String * text, ManagerMask__Enum mask, String__Array * sourceNames, MethodInfo * method)); +DO_APP_FUNC(0x0042CB40, void, BWFManager_getAll, (BWFManager * __this, List_1_System_String_ * * result, String * text, ManagerMask__Enum mask, String__Array * sourceNames, MethodInfo * method)); +DO_APP_FUNC(0x0042D070, void, BWFManager_replaceAll, (BWFManager * __this, String * * result, String * text, ManagerMask__Enum mask, bool markOnly, String * prefix, String * postfix, String__Array * sourceNames, MethodInfo * method)); DO_APP_FUNC(0x0042D500, void, BWFManager_onBWFReady, (BWFManager * __this, MethodInfo * method)); DO_APP_FUNC(0x0042D580, void, BWFManager_onContainsComplete, (BWFManager * __this, String * text, bool result, MethodInfo * method)); DO_APP_FUNC(0x0042D640, void, BWFManager_onGetAllComplete, (BWFManager * __this, String * text, List_1_System_String_ * badWords, MethodInfo * method)); @@ -82827,34 +94161,45 @@ DO_APP_FUNC(0x003BA270, void, BWFManager_BWFReady_EndInvoke, (BWFManager_BWFRead DO_APP_FUNC(0x0042DC10, void, BWFManager_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BWFManager_c__ctor, (BWFManager_c * __this, MethodInfo * method)); DO_APP_FUNC(0x0042DCC0, int32_t, BWFManager_c__get_TotalRegexCount_b__5_0, (BWFManager_c * __this, Source * src, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B498, BWFManager_c__get_TotalRegexCount_b__5_0__MethodInfo); DO_APP_FUNC(0x0042DCE0, String *, BWFManager_c__Sources_b__26_0, (BWFManager_c * __this, Source * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B2C0, BWFManager_c__Sources_b__26_0__MethodInfo); DO_APP_FUNC(0x0042DD00, bool, BWFManager_c__Mark_b__35_0, (BWFManager_c * __this, String * unwantedWord, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B230, BWFManager_c__Mark_b__35_0__MethodInfo); DO_APP_FUNC(0x00420A60, String *, BWFManager_c__getAll_b__42_0, (BWFManager_c * __this, String * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B190, BWFManager_c__getAll_b__42_0__MethodInfo); DO_APP_FUNC(0x003AE050, void, BWFManager_c_DisplayClass35_0__ctor, (BWFManager_c_DisplayClass35_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0042DD20, String *, BWFManager_c_DisplayClass35_0__Mark_b__1, (BWFManager_c_DisplayClass35_0 * __this, String * current, String * unwantedWord, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B220, BWFManager_c_DisplayClass35_0__Mark_b__1__MethodInfo); DO_APP_FUNC(0x003AE050, void, BWFManager_c_DisplayClass38_0__ctor, (BWFManager_c_DisplayClass38_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0042DD70, void, BWFManager_c_DisplayClass38_0__containsAsync_b__0, (BWFManager_c_DisplayClass38_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D104D8, BWFManager_c_DisplayClass38_0__containsAsync_b__0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, BWFManager_containsAsync_d_38__ctor, (BWFManager_containsAsync_d_38 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BWFManager_containsAsync_d_38_System_IDisposable_Dispose, (BWFManager_containsAsync_d_38 * __this, MethodInfo * method)); DO_APP_FUNC(0x0042DDB0, bool, BWFManager_containsAsync_d_38_MoveNext, (BWFManager_containsAsync_d_38 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, BWFManager_containsAsync_d_38_System_Collections_Generic_IEnumerator_System_Object__get_Current, (BWFManager_containsAsync_d_38 * __this, MethodInfo * method)); DO_APP_FUNC(0x0042E1B0, void, BWFManager_containsAsync_d_38_System_Collections_IEnumerator_Reset, (BWFManager_containsAsync_d_38 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D104C0, BWFManager_containsAsync_d_38_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, BWFManager_containsAsync_d_38_System_Collections_IEnumerator_get_Current, (BWFManager_containsAsync_d_38 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BWFManager_c_DisplayClass39_0__ctor, (BWFManager_c_DisplayClass39_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0042E200, void, BWFManager_c_DisplayClass39_0__getAllAsync_b__0, (BWFManager_c_DisplayClass39_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D104B8, BWFManager_c_DisplayClass39_0__getAllAsync_b__0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, BWFManager_getAllAsync_d_39__ctor, (BWFManager_getAllAsync_d_39 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BWFManager_getAllAsync_d_39_System_IDisposable_Dispose, (BWFManager_getAllAsync_d_39 * __this, MethodInfo * method)); DO_APP_FUNC(0x0042E240, bool, BWFManager_getAllAsync_d_39_MoveNext, (BWFManager_getAllAsync_d_39 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, BWFManager_getAllAsync_d_39_System_Collections_Generic_IEnumerator_System_Object__get_Current, (BWFManager_getAllAsync_d_39 * __this, MethodInfo * method)); DO_APP_FUNC(0x0042E690, void, BWFManager_getAllAsync_d_39_System_Collections_IEnumerator_Reset, (BWFManager_getAllAsync_d_39 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D104A8, BWFManager_getAllAsync_d_39_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, BWFManager_getAllAsync_d_39_System_Collections_IEnumerator_get_Current, (BWFManager_getAllAsync_d_39 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BWFManager_c_DisplayClass40_0__ctor, (BWFManager_c_DisplayClass40_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0042E6E0, void, BWFManager_c_DisplayClass40_0__replaceAllAsync_b__0, (BWFManager_c_DisplayClass40_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D104A0, BWFManager_c_DisplayClass40_0__replaceAllAsync_b__0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, BWFManager_replaceAllAsync_d_40__ctor, (BWFManager_replaceAllAsync_d_40 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BWFManager_replaceAllAsync_d_40_System_IDisposable_Dispose, (BWFManager_replaceAllAsync_d_40 * __this, MethodInfo * method)); DO_APP_FUNC(0x0042E740, bool, BWFManager_replaceAllAsync_d_40_MoveNext, (BWFManager_replaceAllAsync_d_40 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, BWFManager_replaceAllAsync_d_40_System_Collections_Generic_IEnumerator_System_Object__get_Current, (BWFManager_replaceAllAsync_d_40 * __this, MethodInfo * method)); DO_APP_FUNC(0x0042EC70, void, BWFManager_replaceAllAsync_d_40_System_Collections_IEnumerator_Reset, (BWFManager_replaceAllAsync_d_40 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10490, BWFManager_replaceAllAsync_d_40_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, BWFManager_replaceAllAsync_d_40_System_Collections_IEnumerator_get_Current, (BWFManager_replaceAllAsync_d_40 * __this, MethodInfo * method)); DO_APP_FUNC(0x0042ECC0, void, OnReady__ctor, (OnReady * __this, MethodInfo * method)); DO_APP_FUNC(0x0042ED20, void, OnContainsCompleted__ctor, (OnContainsCompleted * __this, MethodInfo * method)); @@ -82892,6 +94237,7 @@ DO_APP_FUNC(0x0042F790, void, BadWordProvider_Load, (BadWordProvider * __this, M DO_APP_FUNC(0x0042F800, void, BadWordProvider_init, (BadWordProvider * __this, MethodInfo * method)); DO_APP_FUNC(0x00430420, void, BadWordProvider__ctor, (BadWordProvider * __this, MethodInfo * method)); DO_APP_FUNC(0x00430720, Regex *, BadWordProvider__init_b__17_0, (BadWordProvider * __this, String * line, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10430, BadWordProvider__init_b__17_0__MethodInfo); DO_APP_FUNC(0x00430810, void, BadWordProviderText_Load, (BadWordProviderText * __this, MethodInfo * method)); DO_APP_FUNC(0x00430CB0, void, BadWordProviderText_Save, (BadWordProviderText * __this, MethodInfo * method)); DO_APP_FUNC(0x00430D20, IEnumerator *, BadWordProviderText_loadWeb, (BadWordProviderText * __this, Source * src, MethodInfo * method)); @@ -82900,18 +94246,21 @@ DO_APP_FUNC(0x00430F40, void, BadWordProviderText__ctor, (BadWordProviderText * DO_APP_FUNC(0x00430F50, void, BadWordProviderText_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BadWordProviderText_c__ctor, (BadWordProviderText_c * __this, MethodInfo * method)); DO_APP_FUNC(0x00431000, bool, BadWordProviderText_c__Load_b__0_0, (BadWordProviderText_c * __this, Source * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10260, BadWordProviderText_c__Load_b__0_0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, BadWordProviderText_loadWeb_d_2__ctor, (BadWordProviderText_loadWeb_d_2 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x00431100, void, BadWordProviderText_loadWeb_d_2_System_IDisposable_Dispose, (BadWordProviderText_loadWeb_d_2 * __this, MethodInfo * method)); DO_APP_FUNC(0x004311D0, bool, BadWordProviderText_loadWeb_d_2_MoveNext, (BadWordProviderText_loadWeb_d_2 * __this, MethodInfo * method)); DO_APP_FUNC(0x00431E20, void, BadWordProviderText_loadWeb_d_2___m__Finally1, (BadWordProviderText_loadWeb_d_2 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, BadWordProviderText_loadWeb_d_2_System_Collections_Generic_IEnumerator_System_Object__get_Current, (BadWordProviderText_loadWeb_d_2 * __this, MethodInfo * method)); DO_APP_FUNC(0x00431E80, void, BadWordProviderText_loadWeb_d_2_System_Collections_IEnumerator_Reset, (BadWordProviderText_loadWeb_d_2 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10098, BadWordProviderText_loadWeb_d_2_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, BadWordProviderText_loadWeb_d_2_System_Collections_IEnumerator_get_Current, (BadWordProviderText_loadWeb_d_2 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, BadWordProviderText_loadResource_d_3__ctor, (BadWordProviderText_loadResource_d_3 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BadWordProviderText_loadResource_d_3_System_IDisposable_Dispose, (BadWordProviderText_loadResource_d_3 * __this, MethodInfo * method)); DO_APP_FUNC(0x00431ED0, bool, BadWordProviderText_loadResource_d_3_MoveNext, (BadWordProviderText_loadResource_d_3 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, BadWordProviderText_loadResource_d_3_System_Collections_Generic_IEnumerator_System_Object__get_Current, (BadWordProviderText_loadResource_d_3 * __this, MethodInfo * method)); DO_APP_FUNC(0x00432590, void, BadWordProviderText_loadResource_d_3_System_Collections_IEnumerator_Reset, (BadWordProviderText_loadResource_d_3 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10040, BadWordProviderText_loadResource_d_3_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, BadWordProviderText_loadResource_d_3_System_Collections_IEnumerator_get_Current, (BadWordProviderText_loadResource_d_3 * __this, MethodInfo * method)); DO_APP_FUNC(0x004325E0, int32_t, BaseProvider_get_RegexCount, (BaseProvider * __this, MethodInfo * method)); DO_APP_FUNC(0x00432770, bool, BaseProvider_get_isReady, (BaseProvider * __this, MethodInfo * method)); @@ -82923,6 +94272,7 @@ DO_APP_FUNC(0x004329F0, void, BaseProvider__ctor, (BaseProvider * __this, Method DO_APP_FUNC(0x00432B00, void, BaseProvider_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BaseProvider_c__ctor, (BaseProvider_c * __this, MethodInfo * method)); DO_APP_FUNC(0x0042DCC0, int32_t, BaseProvider_c__get_RegexCount_b__11_0, (BaseProvider_c * __this, Source * src, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10020, BaseProvider_c__get_RegexCount_b__11_0__MethodInfo); DO_APP_FUNC(0x003C7490, Dictionary_2_System_String_System_Text_RegularExpressions_Regex_ *, DomainProvider_get_DomainsRegex, (DomainProvider * __this, MethodInfo * method)); DO_APP_FUNC(0x003C74A0, void, DomainProvider_set_DomainsRegex, (DomainProvider * __this, Dictionary_2_System_String_System_Text_RegularExpressions_Regex_ * value, MethodInfo * method)); DO_APP_FUNC(0x003C91B0, Dictionary_2_System_String_List_1_System_Text_RegularExpressions_Regex_ *, DomainProvider_get_DebugDomainsRegex, (DomainProvider * __this, MethodInfo * method)); @@ -82932,6 +94282,7 @@ DO_APP_FUNC(0x00432BB0, void, DomainProvider_Load, (DomainProvider * __this, Met DO_APP_FUNC(0x00432C20, void, DomainProvider_init, (DomainProvider * __this, MethodInfo * method)); DO_APP_FUNC(0x00433670, void, DomainProvider__ctor, (DomainProvider * __this, MethodInfo * method)); DO_APP_FUNC(0x004338C0, Regex *, DomainProvider__init_b__13_0, (DomainProvider * __this, String * line, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FF60, DomainProvider__init_b__13_0__MethodInfo); DO_APP_FUNC(0x004339B0, void, DomainProviderText_Load, (DomainProviderText * __this, MethodInfo * method)); DO_APP_FUNC(0x00433E50, void, DomainProviderText_Save, (DomainProviderText * __this, MethodInfo * method)); DO_APP_FUNC(0x00433EC0, IEnumerator *, DomainProviderText_loadWeb, (DomainProviderText * __this, Source * src, MethodInfo * method)); @@ -82940,18 +94291,21 @@ DO_APP_FUNC(0x004340E0, void, DomainProviderText__ctor, (DomainProviderText * __ DO_APP_FUNC(0x004340F0, void, DomainProviderText_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, DomainProviderText_c__ctor, (DomainProviderText_c * __this, MethodInfo * method)); DO_APP_FUNC(0x004341A0, bool, DomainProviderText_c__Load_b__0_0, (DomainProviderText_c * __this, Source * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FE70, DomainProviderText_c__Load_b__0_0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, DomainProviderText_loadWeb_d_2__ctor, (DomainProviderText_loadWeb_d_2 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x004342A0, void, DomainProviderText_loadWeb_d_2_System_IDisposable_Dispose, (DomainProviderText_loadWeb_d_2 * __this, MethodInfo * method)); DO_APP_FUNC(0x00434370, bool, DomainProviderText_loadWeb_d_2_MoveNext, (DomainProviderText_loadWeb_d_2 * __this, MethodInfo * method)); DO_APP_FUNC(0x00434FC0, void, DomainProviderText_loadWeb_d_2___m__Finally1, (DomainProviderText_loadWeb_d_2 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, DomainProviderText_loadWeb_d_2_System_Collections_Generic_IEnumerator_System_Object__get_Current, (DomainProviderText_loadWeb_d_2 * __this, MethodInfo * method)); DO_APP_FUNC(0x00435020, void, DomainProviderText_loadWeb_d_2_System_Collections_IEnumerator_Reset, (DomainProviderText_loadWeb_d_2 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FD90, DomainProviderText_loadWeb_d_2_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, DomainProviderText_loadWeb_d_2_System_Collections_IEnumerator_get_Current, (DomainProviderText_loadWeb_d_2 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, DomainProviderText_loadResource_d_3__ctor, (DomainProviderText_loadResource_d_3 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, DomainProviderText_loadResource_d_3_System_IDisposable_Dispose, (DomainProviderText_loadResource_d_3 * __this, MethodInfo * method)); DO_APP_FUNC(0x00435070, bool, DomainProviderText_loadResource_d_3_MoveNext, (DomainProviderText_loadResource_d_3 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, DomainProviderText_loadResource_d_3_System_Collections_Generic_IEnumerator_System_Object__get_Current, (DomainProviderText_loadResource_d_3 * __this, MethodInfo * method)); DO_APP_FUNC(0x00435730, void, DomainProviderText_loadResource_d_3_System_Collections_IEnumerator_Reset, (DomainProviderText_loadResource_d_3 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FD70, DomainProviderText_loadResource_d_3_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, DomainProviderText_loadResource_d_3_System_Collections_IEnumerator_get_Current, (DomainProviderText_loadResource_d_3 * __this, MethodInfo * method)); DO_APP_FUNC(0x00435780, void, BadWords__ctor, (BadWords * __this, Source * source, IEnumerable_1_System_String_ * badWordList, MethodInfo * method)); DO_APP_FUNC(0x00435B70, String *, BadWords_ToString, (BadWords * __this, MethodInfo * method)); @@ -82995,29 +94349,36 @@ DO_APP_FUNC(0x00437FD0, void, BadWordManager__ctor, (BadWordManager * __this, Me DO_APP_FUNC(0x00438080, void, BadWordManager_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BadWordManager_c__ctor, (BadWordManager_c * __this, MethodInfo * method)); DO_APP_FUNC(0x0042DCC0, int32_t, BadWordManager_c__get_TotalRegexCount_b__28_0, (BadWordManager_c * __this, Source * src, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FC68, BadWordManager_c__get_TotalRegexCount_b__28_0__MethodInfo); DO_APP_FUNC(0x003AE050, void, BadWordManager_c_DisplayClass47_0__ctor, (BadWordManager_c_DisplayClass47_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00438130, void, BadWordManager_c_DisplayClass47_0__containsAsync_b__0, (BadWordManager_c_DisplayClass47_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FAB8, BadWordManager_c_DisplayClass47_0__containsAsync_b__0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, BadWordManager_containsAsync_d_47__ctor, (BadWordManager_containsAsync_d_47 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BadWordManager_containsAsync_d_47_System_IDisposable_Dispose, (BadWordManager_containsAsync_d_47 * __this, MethodInfo * method)); DO_APP_FUNC(0x004381B0, bool, BadWordManager_containsAsync_d_47_MoveNext, (BadWordManager_containsAsync_d_47 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, BadWordManager_containsAsync_d_47_System_Collections_Generic_IEnumerator_System_Object__get_Current, (BadWordManager_containsAsync_d_47 * __this, MethodInfo * method)); DO_APP_FUNC(0x004385B0, void, BadWordManager_containsAsync_d_47_System_Collections_IEnumerator_Reset, (BadWordManager_containsAsync_d_47 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FA98, BadWordManager_containsAsync_d_47_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, BadWordManager_containsAsync_d_47_System_Collections_IEnumerator_get_Current, (BadWordManager_containsAsync_d_47 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BadWordManager_c_DisplayClass48_0__ctor, (BadWordManager_c_DisplayClass48_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00438600, void, BadWordManager_c_DisplayClass48_0__getAllAsync_b__0, (BadWordManager_c_DisplayClass48_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FA68, BadWordManager_c_DisplayClass48_0__getAllAsync_b__0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, BadWordManager_getAllAsync_d_48__ctor, (BadWordManager_getAllAsync_d_48 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BadWordManager_getAllAsync_d_48_System_IDisposable_Dispose, (BadWordManager_getAllAsync_d_48 * __this, MethodInfo * method)); DO_APP_FUNC(0x00438680, bool, BadWordManager_getAllAsync_d_48_MoveNext, (BadWordManager_getAllAsync_d_48 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, BadWordManager_getAllAsync_d_48_System_Collections_Generic_IEnumerator_System_Object__get_Current, (BadWordManager_getAllAsync_d_48 * __this, MethodInfo * method)); DO_APP_FUNC(0x00438AD0, void, BadWordManager_getAllAsync_d_48_System_Collections_IEnumerator_Reset, (BadWordManager_getAllAsync_d_48 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FA48, BadWordManager_getAllAsync_d_48_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, BadWordManager_getAllAsync_d_48_System_Collections_IEnumerator_get_Current, (BadWordManager_getAllAsync_d_48 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BadWordManager_c_DisplayClass49_0__ctor, (BadWordManager_c_DisplayClass49_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00438B20, void, BadWordManager_c_DisplayClass49_0__replaceAllAsync_b__0, (BadWordManager_c_DisplayClass49_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FA18, BadWordManager_c_DisplayClass49_0__replaceAllAsync_b__0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, BadWordManager_replaceAllAsync_d_49__ctor, (BadWordManager_replaceAllAsync_d_49 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BadWordManager_replaceAllAsync_d_49_System_IDisposable_Dispose, (BadWordManager_replaceAllAsync_d_49 * __this, MethodInfo * method)); DO_APP_FUNC(0x00438C00, bool, BadWordManager_replaceAllAsync_d_49_MoveNext, (BadWordManager_replaceAllAsync_d_49 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, BadWordManager_replaceAllAsync_d_49_System_Collections_Generic_IEnumerator_System_Object__get_Current, (BadWordManager_replaceAllAsync_d_49 * __this, MethodInfo * method)); DO_APP_FUNC(0x00439120, void, BadWordManager_replaceAllAsync_d_49_System_Collections_IEnumerator_Reset, (BadWordManager_replaceAllAsync_d_49 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F9F8, BadWordManager_replaceAllAsync_d_49_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, BadWordManager_replaceAllAsync_d_49_System_Collections_IEnumerator_get_Current, (BadWordManager_replaceAllAsync_d_49 * __this, MethodInfo * method)); DO_APP_FUNC(0x00439170, int32_t, CapitalizationManager_get_CapitalizationCharsNumber, (CapitalizationManager * __this, MethodInfo * method)); DO_APP_FUNC(0x00439180, void, CapitalizationManager_set_CapitalizationCharsNumber, (CapitalizationManager * __this, int32_t value, MethodInfo * method)); @@ -83043,27 +94404,33 @@ DO_APP_FUNC(0x0043A100, IEnumerator *, CapitalizationManager_replaceAllAsync, (C DO_APP_FUNC(0x0043A2D0, void, CapitalizationManager__ctor, (CapitalizationManager * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CapitalizationManager_c_DisplayClass28_0__ctor, (CapitalizationManager_c_DisplayClass28_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0043A320, void, CapitalizationManager_c_DisplayClass28_0__containsAsync_b__0, (CapitalizationManager_c_DisplayClass28_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F858, CapitalizationManager_c_DisplayClass28_0__containsAsync_b__0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, CapitalizationManager_containsAsync_d_28__ctor, (CapitalizationManager_containsAsync_d_28 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CapitalizationManager_containsAsync_d_28_System_IDisposable_Dispose, (CapitalizationManager_containsAsync_d_28 * __this, MethodInfo * method)); DO_APP_FUNC(0x0043A350, bool, CapitalizationManager_containsAsync_d_28_MoveNext, (CapitalizationManager_containsAsync_d_28 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, CapitalizationManager_containsAsync_d_28_System_Collections_Generic_IEnumerator_System_Object__get_Current, (CapitalizationManager_containsAsync_d_28 * __this, MethodInfo * method)); DO_APP_FUNC(0x0043A6F0, void, CapitalizationManager_containsAsync_d_28_System_Collections_IEnumerator_Reset, (CapitalizationManager_containsAsync_d_28 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F838, CapitalizationManager_containsAsync_d_28_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, CapitalizationManager_containsAsync_d_28_System_Collections_IEnumerator_get_Current, (CapitalizationManager_containsAsync_d_28 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CapitalizationManager_c_DisplayClass29_0__ctor, (CapitalizationManager_c_DisplayClass29_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0043A740, void, CapitalizationManager_c_DisplayClass29_0__getAllAsync_b__0, (CapitalizationManager_c_DisplayClass29_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F808, CapitalizationManager_c_DisplayClass29_0__getAllAsync_b__0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, CapitalizationManager_getAllAsync_d_29__ctor, (CapitalizationManager_getAllAsync_d_29 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CapitalizationManager_getAllAsync_d_29_System_IDisposable_Dispose, (CapitalizationManager_getAllAsync_d_29 * __this, MethodInfo * method)); DO_APP_FUNC(0x0043A7C0, bool, CapitalizationManager_getAllAsync_d_29_MoveNext, (CapitalizationManager_getAllAsync_d_29 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, CapitalizationManager_getAllAsync_d_29_System_Collections_Generic_IEnumerator_System_Object__get_Current, (CapitalizationManager_getAllAsync_d_29 * __this, MethodInfo * method)); DO_APP_FUNC(0x0043ABB0, void, CapitalizationManager_getAllAsync_d_29_System_Collections_IEnumerator_Reset, (CapitalizationManager_getAllAsync_d_29 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F7E8, CapitalizationManager_getAllAsync_d_29_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, CapitalizationManager_getAllAsync_d_29_System_Collections_IEnumerator_get_Current, (CapitalizationManager_getAllAsync_d_29 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CapitalizationManager_c_DisplayClass30_0__ctor, (CapitalizationManager_c_DisplayClass30_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0043AC00, void, CapitalizationManager_c_DisplayClass30_0__replaceAllAsync_b__0, (CapitalizationManager_c_DisplayClass30_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F7B8, CapitalizationManager_c_DisplayClass30_0__replaceAllAsync_b__0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, CapitalizationManager_replaceAllAsync_d_30__ctor, (CapitalizationManager_replaceAllAsync_d_30 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CapitalizationManager_replaceAllAsync_d_30_System_IDisposable_Dispose, (CapitalizationManager_replaceAllAsync_d_30 * __this, MethodInfo * method)); DO_APP_FUNC(0x0043AC90, bool, CapitalizationManager_replaceAllAsync_d_30_MoveNext, (CapitalizationManager_replaceAllAsync_d_30 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, CapitalizationManager_replaceAllAsync_d_30_System_Collections_Generic_IEnumerator_System_Object__get_Current, (CapitalizationManager_replaceAllAsync_d_30 * __this, MethodInfo * method)); DO_APP_FUNC(0x0043B150, void, CapitalizationManager_replaceAllAsync_d_30_System_Collections_IEnumerator_Reset, (CapitalizationManager_replaceAllAsync_d_30 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F798, CapitalizationManager_replaceAllAsync_d_30_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, CapitalizationManager_replaceAllAsync_d_30_System_Collections_IEnumerator_get_Current, (CapitalizationManager_replaceAllAsync_d_30 * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7390, String *, DomainManager_get_ReplaceChars, (DomainManager * __this, MethodInfo * method)); DO_APP_FUNC(0x00436B00, void, DomainManager_set_ReplaceChars, (DomainManager * __this, String * value, MethodInfo * method)); @@ -83093,29 +94460,36 @@ DO_APP_FUNC(0x0043C4F0, void, DomainManager__ctor, (DomainManager * __this, Meth DO_APP_FUNC(0x0043C5A0, void, DomainManager_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, DomainManager_c__ctor, (DomainManager_c * __this, MethodInfo * method)); DO_APP_FUNC(0x0042DCC0, int32_t, DomainManager_c__get_TotalRegexCount_b__16_0, (DomainManager_c * __this, Source * src, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F778, DomainManager_c__get_TotalRegexCount_b__16_0__MethodInfo); DO_APP_FUNC(0x003AE050, void, DomainManager_c_DisplayClass35_0__ctor, (DomainManager_c_DisplayClass35_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0043C650, void, DomainManager_c_DisplayClass35_0__containsAsync_b__0, (DomainManager_c_DisplayClass35_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F5F8, DomainManager_c_DisplayClass35_0__containsAsync_b__0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, DomainManager_containsAsync_d_35__ctor, (DomainManager_containsAsync_d_35 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, DomainManager_containsAsync_d_35_System_IDisposable_Dispose, (DomainManager_containsAsync_d_35 * __this, MethodInfo * method)); DO_APP_FUNC(0x0043C6D0, bool, DomainManager_containsAsync_d_35_MoveNext, (DomainManager_containsAsync_d_35 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, DomainManager_containsAsync_d_35_System_Collections_Generic_IEnumerator_System_Object__get_Current, (DomainManager_containsAsync_d_35 * __this, MethodInfo * method)); DO_APP_FUNC(0x0043CAD0, void, DomainManager_containsAsync_d_35_System_Collections_IEnumerator_Reset, (DomainManager_containsAsync_d_35 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F5D8, DomainManager_containsAsync_d_35_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, DomainManager_containsAsync_d_35_System_Collections_IEnumerator_get_Current, (DomainManager_containsAsync_d_35 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, DomainManager_c_DisplayClass36_0__ctor, (DomainManager_c_DisplayClass36_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0043CB20, void, DomainManager_c_DisplayClass36_0__getAllAsync_b__0, (DomainManager_c_DisplayClass36_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F5A8, DomainManager_c_DisplayClass36_0__getAllAsync_b__0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, DomainManager_getAllAsync_d_36__ctor, (DomainManager_getAllAsync_d_36 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, DomainManager_getAllAsync_d_36_System_IDisposable_Dispose, (DomainManager_getAllAsync_d_36 * __this, MethodInfo * method)); DO_APP_FUNC(0x0043CBA0, bool, DomainManager_getAllAsync_d_36_MoveNext, (DomainManager_getAllAsync_d_36 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, DomainManager_getAllAsync_d_36_System_Collections_Generic_IEnumerator_System_Object__get_Current, (DomainManager_getAllAsync_d_36 * __this, MethodInfo * method)); DO_APP_FUNC(0x0043CFF0, void, DomainManager_getAllAsync_d_36_System_Collections_IEnumerator_Reset, (DomainManager_getAllAsync_d_36 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F588, DomainManager_getAllAsync_d_36_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, DomainManager_getAllAsync_d_36_System_Collections_IEnumerator_get_Current, (DomainManager_getAllAsync_d_36 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, DomainManager_c_DisplayClass37_0__ctor, (DomainManager_c_DisplayClass37_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0043D040, void, DomainManager_c_DisplayClass37_0__replaceAllAsync_b__0, (DomainManager_c_DisplayClass37_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F558, DomainManager_c_DisplayClass37_0__replaceAllAsync_b__0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, DomainManager_replaceAllAsync_d_37__ctor, (DomainManager_replaceAllAsync_d_37 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, DomainManager_replaceAllAsync_d_37_System_IDisposable_Dispose, (DomainManager_replaceAllAsync_d_37 * __this, MethodInfo * method)); DO_APP_FUNC(0x0043D120, bool, DomainManager_replaceAllAsync_d_37_MoveNext, (DomainManager_replaceAllAsync_d_37 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, DomainManager_replaceAllAsync_d_37_System_Collections_Generic_IEnumerator_System_Object__get_Current, (DomainManager_replaceAllAsync_d_37 * __this, MethodInfo * method)); DO_APP_FUNC(0x0043D640, void, DomainManager_replaceAllAsync_d_37_System_Collections_IEnumerator_Reset, (DomainManager_replaceAllAsync_d_37 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F538, DomainManager_replaceAllAsync_d_37_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, DomainManager_replaceAllAsync_d_37_System_Collections_IEnumerator_get_Current, (DomainManager_replaceAllAsync_d_37 * __this, MethodInfo * method)); DO_APP_FUNC(0x00439170, int32_t, PunctuationManager_get_PunctuationCharsNumber, (PunctuationManager * __this, MethodInfo * method)); DO_APP_FUNC(0x0043D690, void, PunctuationManager_set_PunctuationCharsNumber, (PunctuationManager * __this, int32_t value, MethodInfo * method)); @@ -83141,27 +94515,33 @@ DO_APP_FUNC(0x0043E600, IEnumerator *, PunctuationManager_replaceAllAsync, (Punc DO_APP_FUNC(0x0043E7D0, void, PunctuationManager__ctor, (PunctuationManager * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, PunctuationManager_c_DisplayClass28_0__ctor, (PunctuationManager_c_DisplayClass28_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0043E820, void, PunctuationManager_c_DisplayClass28_0__containsAsync_b__0, (PunctuationManager_c_DisplayClass28_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F3A8, PunctuationManager_c_DisplayClass28_0__containsAsync_b__0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, PunctuationManager_containsAsync_d_28__ctor, (PunctuationManager_containsAsync_d_28 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, PunctuationManager_containsAsync_d_28_System_IDisposable_Dispose, (PunctuationManager_containsAsync_d_28 * __this, MethodInfo * method)); DO_APP_FUNC(0x0043E850, bool, PunctuationManager_containsAsync_d_28_MoveNext, (PunctuationManager_containsAsync_d_28 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, PunctuationManager_containsAsync_d_28_System_Collections_Generic_IEnumerator_System_Object__get_Current, (PunctuationManager_containsAsync_d_28 * __this, MethodInfo * method)); DO_APP_FUNC(0x0043EBF0, void, PunctuationManager_containsAsync_d_28_System_Collections_IEnumerator_Reset, (PunctuationManager_containsAsync_d_28 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F388, PunctuationManager_containsAsync_d_28_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, PunctuationManager_containsAsync_d_28_System_Collections_IEnumerator_get_Current, (PunctuationManager_containsAsync_d_28 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, PunctuationManager_c_DisplayClass29_0__ctor, (PunctuationManager_c_DisplayClass29_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0043EC40, void, PunctuationManager_c_DisplayClass29_0__getAllAsync_b__0, (PunctuationManager_c_DisplayClass29_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F358, PunctuationManager_c_DisplayClass29_0__getAllAsync_b__0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, PunctuationManager_getAllAsync_d_29__ctor, (PunctuationManager_getAllAsync_d_29 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, PunctuationManager_getAllAsync_d_29_System_IDisposable_Dispose, (PunctuationManager_getAllAsync_d_29 * __this, MethodInfo * method)); DO_APP_FUNC(0x0043ECC0, bool, PunctuationManager_getAllAsync_d_29_MoveNext, (PunctuationManager_getAllAsync_d_29 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, PunctuationManager_getAllAsync_d_29_System_Collections_Generic_IEnumerator_System_Object__get_Current, (PunctuationManager_getAllAsync_d_29 * __this, MethodInfo * method)); DO_APP_FUNC(0x0043F0B0, void, PunctuationManager_getAllAsync_d_29_System_Collections_IEnumerator_Reset, (PunctuationManager_getAllAsync_d_29 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F338, PunctuationManager_getAllAsync_d_29_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, PunctuationManager_getAllAsync_d_29_System_Collections_IEnumerator_get_Current, (PunctuationManager_getAllAsync_d_29 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, PunctuationManager_c_DisplayClass30_0__ctor, (PunctuationManager_c_DisplayClass30_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0043F100, void, PunctuationManager_c_DisplayClass30_0__replaceAllAsync_b__0, (PunctuationManager_c_DisplayClass30_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F308, PunctuationManager_c_DisplayClass30_0__replaceAllAsync_b__0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, PunctuationManager_replaceAllAsync_d_30__ctor, (PunctuationManager_replaceAllAsync_d_30 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, PunctuationManager_replaceAllAsync_d_30_System_IDisposable_Dispose, (PunctuationManager_replaceAllAsync_d_30 * __this, MethodInfo * method)); DO_APP_FUNC(0x0043F190, bool, PunctuationManager_replaceAllAsync_d_30_MoveNext, (PunctuationManager_replaceAllAsync_d_30 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, PunctuationManager_replaceAllAsync_d_30_System_Collections_Generic_IEnumerator_System_Object__get_Current, (PunctuationManager_replaceAllAsync_d_30 * __this, MethodInfo * method)); DO_APP_FUNC(0x0043F650, void, PunctuationManager_replaceAllAsync_d_30_System_Collections_IEnumerator_Reset, (PunctuationManager_replaceAllAsync_d_30 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F2E8, PunctuationManager_replaceAllAsync_d_30_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, PunctuationManager_replaceAllAsync_d_30_System_Collections_IEnumerator_get_Current, (PunctuationManager_replaceAllAsync_d_30 * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7490, List_1_Crosstales_BWF_Provider_BadWordProvider_ *, BadWordFilter_get_BadWordProviderLTR, (BadWordFilter * __this, MethodInfo * method)); DO_APP_FUNC(0x0043F6A0, void, BadWordFilter_set_BadWordProviderLTR, (BadWordFilter * __this, List_1_Crosstales_BWF_Provider_BadWordProvider_ * value, MethodInfo * method)); @@ -83175,70 +94555,129 @@ DO_APP_FUNC(0x004459E0, String *, BadWordFilter_ReplaceAll, (BadWordFilter * __t DO_APP_FUNC(0x00447950, String *, BadWordFilter_replaceCapture, (BadWordFilter * __this, String * text, Capture * capture, bool markOnly, String * prefix, String * postfix, int32_t offset, MethodInfo * method)); DO_APP_FUNC(0x00447B10, String *, BadWordFilter_replaceLeetToText, (BadWordFilter * __this, String * input, MethodInfo * method)); DO_APP_FUNC(0x00448120, bool, BadWordFilter__get_isReady_b__19_6, (BadWordFilter * __this, _f_AnonymousType0_2_Crosstales_BWF_Provider_BadWordProvider_Crosstales_BWF_Data_Source_ * __h__TransparentIdentifier0, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F1D8, BadWordFilter__get_isReady_b__19_6__MethodInfo); DO_APP_FUNC(0x004481D0, bool, BadWordFilter__get_isReady_b__19_12, (BadWordFilter * __this, _f_AnonymousType1_2_Crosstales_BWF_Provider_BadWordProvider_Crosstales_BWF_Data_Source_ * __h__TransparentIdentifier0, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F1E8, BadWordFilter__get_isReady_b__19_12__MethodInfo); DO_APP_FUNC(0x00448280, void, BadWordFilter_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BadWordFilter_c__ctor, (BadWordFilter_c * __this, MethodInfo * method)); DO_APP_FUNC(0x00448330, bool, BadWordFilter_c__get_isReady_b__19_0, (BadWordFilter_c * __this, BadWordProvider * bp, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F0B8, BadWordFilter_c__get_isReady_b__19_0__MethodInfo); DO_APP_FUNC(0x00448430, bool, BadWordFilter_c__get_isReady_b__19_1, (BadWordFilter_c * __this, BadWordProvider * bp, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F078, BadWordFilter_c__get_isReady_b__19_1__MethodInfo); DO_APP_FUNC(0x00448530, bool, BadWordFilter_c__get_isReady_b__19_2, (BadWordFilter_c * __this, BadWordProvider * bpLTR, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F068, BadWordFilter_c__get_isReady_b__19_2__MethodInfo); DO_APP_FUNC(0x00448630, IEnumerable_1_Crosstales_BWF_Data_Source_ *, BadWordFilter_c__get_isReady_b__19_3, (BadWordFilter_c * __this, BadWordProvider * bpLTR, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F058, BadWordFilter_c__get_isReady_b__19_3__MethodInfo); DO_APP_FUNC(0x00448650, _f_AnonymousType0_2_Crosstales_BWF_Provider_BadWordProvider_Crosstales_BWF_Data_Source_ *, BadWordFilter_c__get_isReady_b__19_4, (BadWordFilter_c * __this, BadWordProvider * bpLTR, Source * src, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F048, BadWordFilter_c__get_isReady_b__19_4__MethodInfo); DO_APP_FUNC(0x00448770, bool, BadWordFilter_c__get_isReady_b__19_5, (BadWordFilter_c * __this, _f_AnonymousType0_2_Crosstales_BWF_Provider_BadWordProvider_Crosstales_BWF_Data_Source_ * __h__TransparentIdentifier0, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F038, BadWordFilter_c__get_isReady_b__19_5__MethodInfo); DO_APP_FUNC(0x00448890, Source *, BadWordFilter_c__get_isReady_b__19_7, (BadWordFilter_c * __this, _f_AnonymousType0_2_Crosstales_BWF_Provider_BadWordProvider_Crosstales_BWF_Data_Source_ * __h__TransparentIdentifier0, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F028, BadWordFilter_c__get_isReady_b__19_7__MethodInfo); DO_APP_FUNC(0x004488D0, bool, BadWordFilter_c__get_isReady_b__19_8, (BadWordFilter_c * __this, BadWordProvider * bpRTL, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F018, BadWordFilter_c__get_isReady_b__19_8__MethodInfo); DO_APP_FUNC(0x00448630, IEnumerable_1_Crosstales_BWF_Data_Source_ *, BadWordFilter_c__get_isReady_b__19_9, (BadWordFilter_c * __this, BadWordProvider * bpRTL, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F008, BadWordFilter_c__get_isReady_b__19_9__MethodInfo); DO_APP_FUNC(0x004489D0, _f_AnonymousType1_2_Crosstales_BWF_Provider_BadWordProvider_Crosstales_BWF_Data_Source_ *, BadWordFilter_c__get_isReady_b__19_10, (BadWordFilter_c * __this, BadWordProvider * bpRTL, Source * src, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F0A8, BadWordFilter_c__get_isReady_b__19_10__MethodInfo); DO_APP_FUNC(0x00448AF0, bool, BadWordFilter_c__get_isReady_b__19_11, (BadWordFilter_c * __this, _f_AnonymousType1_2_Crosstales_BWF_Provider_BadWordProvider_Crosstales_BWF_Data_Source_ * __h__TransparentIdentifier0, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F098, BadWordFilter_c__get_isReady_b__19_11__MethodInfo); DO_APP_FUNC(0x00448C10, Source *, BadWordFilter_c__get_isReady_b__19_13, (BadWordFilter_c * __this, _f_AnonymousType1_2_Crosstales_BWF_Provider_BadWordProvider_Crosstales_BWF_Data_Source_ * __h__TransparentIdentifier0, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F088, BadWordFilter_c__get_isReady_b__19_13__MethodInfo); DO_APP_FUNC(0x00420A60, IEnumerable_1_System_String_ *, BadWordFilter_c__GetAll_b__22_1, (BadWordFilter_c * __this, List_1_System_String_ * words, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EAF0, BadWordFilter_c__GetAll_b__22_1__MethodInfo); DO_APP_FUNC(0x00448C50, _f_AnonymousType2_2_System_Collections_Generic_List_1_System_String_ *, BadWordFilter_c__GetAll_b__22_2, (BadWordFilter_c * __this, List_1_System_String_ * words, String * simpleWord, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EAA0, BadWordFilter_c__GetAll_b__22_2__MethodInfo); DO_APP_FUNC(0x00448CE0, String *, BadWordFilter_c__GetAll_b__22_4, (BadWordFilter_c * __this, _f_AnonymousType2_2_System_Collections_Generic_List_1_System_String_ * __h__TransparentIdentifier0, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EA90, BadWordFilter_c__GetAll_b__22_4__MethodInfo); DO_APP_FUNC(0x00448D20, IEnumerable_1_System_Text_RegularExpressions_Capture_ *, BadWordFilter_c__GetAll_b__22_5, (BadWordFilter_c * __this, Match * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EA80, BadWordFilter_c__GetAll_b__22_5__MethodInfo); DO_APP_FUNC(0x00448DF0, Capture *, BadWordFilter_c__GetAll_b__22_6, (BadWordFilter_c * __this, Match * match, Capture * capture, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EA70, BadWordFilter_c__GetAll_b__22_6__MethodInfo); DO_APP_FUNC(0x00448E00, IEnumerable_1_System_Text_RegularExpressions_Capture_ *, BadWordFilter_c__GetAll_b__22_8, (BadWordFilter_c * __this, Match * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EA60, BadWordFilter_c__GetAll_b__22_8__MethodInfo); DO_APP_FUNC(0x00448DF0, Capture *, BadWordFilter_c__GetAll_b__22_9, (BadWordFilter_c * __this, Match * match, Capture * capture, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EA50, BadWordFilter_c__GetAll_b__22_9__MethodInfo); DO_APP_FUNC(0x00420A60, IEnumerable_1_System_String_ *, BadWordFilter_c__GetAll_b__22_10, (BadWordFilter_c * __this, List_1_System_String_ * words, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EB60, BadWordFilter_c__GetAll_b__22_10__MethodInfo); DO_APP_FUNC(0x00448ED0, _f_AnonymousType2_2_System_Collections_Generic_List_1_System_String_ *, BadWordFilter_c__GetAll_b__22_11, (BadWordFilter_c * __this, List_1_System_String_ * words, String * simpleWord, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EB50, BadWordFilter_c__GetAll_b__22_11__MethodInfo); DO_APP_FUNC(0x00448F60, String *, BadWordFilter_c__GetAll_b__22_14, (BadWordFilter_c * __this, _f_AnonymousType2_2_System_Collections_Generic_List_1_System_String_ * __h__TransparentIdentifier0, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EB40, BadWordFilter_c__GetAll_b__22_14__MethodInfo); DO_APP_FUNC(0x00448FA0, IEnumerable_1_System_Text_RegularExpressions_Match_ *, BadWordFilter_c__GetAll_b__22_16, (BadWordFilter_c * __this, MatchCollection * matches, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EB30, BadWordFilter_c__GetAll_b__22_16__MethodInfo); DO_APP_FUNC(0x00449060, _f_AnonymousType3_2_System_Text_RegularExpressions_MatchCollection_System_Text_RegularExpressions_Match_ *, BadWordFilter_c__GetAll_b__22_17, (BadWordFilter_c * __this, MatchCollection * matches, Match * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EB20, BadWordFilter_c__GetAll_b__22_17__MethodInfo); DO_APP_FUNC(0x004490F0, IEnumerable_1_System_Text_RegularExpressions_Capture_ *, BadWordFilter_c__GetAll_b__22_18, (BadWordFilter_c * __this, _f_AnonymousType3_2_System_Text_RegularExpressions_MatchCollection_System_Text_RegularExpressions_Match_ * __h__TransparentIdentifier0, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EB10, BadWordFilter_c__GetAll_b__22_18__MethodInfo); DO_APP_FUNC(0x004491E0, _f_AnonymousType4_2_f_AnonymousType3_2_System_Text_RegularExpressions_MatchCollection_System_Text_RegularExpressions_Match_System_Text_RegularExpressions_Capture_ *, BadWordFilter_c__GetAll_b__22_19, (BadWordFilter_c * __this, _f_AnonymousType3_2_System_Text_RegularExpressions_MatchCollection_System_Text_RegularExpressions_Match_ * __h__TransparentIdentifier0, Capture * capture, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EB00, BadWordFilter_c__GetAll_b__22_19__MethodInfo); DO_APP_FUNC(0x00449270, Capture *, BadWordFilter_c__GetAll_b__22_21, (BadWordFilter_c * __this, _f_AnonymousType4_2_f_AnonymousType3_2_System_Text_RegularExpressions_MatchCollection_System_Text_RegularExpressions_Match_System_Text_RegularExpressions_Capture_ * __h__TransparentIdentifier1, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EAE0, BadWordFilter_c__GetAll_b__22_21__MethodInfo); DO_APP_FUNC(0x004492B0, IEnumerable_1_System_Text_RegularExpressions_Capture_ *, BadWordFilter_c__GetAll_b__22_24, (BadWordFilter_c * __this, Match * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EAD0, BadWordFilter_c__GetAll_b__22_24__MethodInfo); DO_APP_FUNC(0x00449380, _f_AnonymousType5_2_System_Text_RegularExpressions_Match_System_Text_RegularExpressions_Capture_ *, BadWordFilter_c__GetAll_b__22_25, (BadWordFilter_c * __this, Match * match, Capture * capture, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EAC0, BadWordFilter_c__GetAll_b__22_25__MethodInfo); DO_APP_FUNC(0x00449410, Capture *, BadWordFilter_c__GetAll_b__22_27, (BadWordFilter_c * __this, _f_AnonymousType5_2_System_Text_RegularExpressions_Match_System_Text_RegularExpressions_Capture_ * __h__TransparentIdentifier0, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EAB0, BadWordFilter_c__GetAll_b__22_27__MethodInfo); DO_APP_FUNC(0x00420A60, String *, BadWordFilter_c__GetAll_b__22_0, (BadWordFilter_c * __this, String * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EB70, BadWordFilter_c__GetAll_b__22_0__MethodInfo); DO_APP_FUNC(0x00449450, IEnumerable_1_System_Text_RegularExpressions_Capture_ *, BadWordFilter_c__ReplaceAll_b__23_0, (BadWordFilter_c * __this, Match * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E8F8, BadWordFilter_c__ReplaceAll_b__23_0__MethodInfo); DO_APP_FUNC(0x00448DF0, Capture *, BadWordFilter_c__ReplaceAll_b__23_1, (BadWordFilter_c * __this, Match * match, Capture * capture, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E8D8, BadWordFilter_c__ReplaceAll_b__23_1__MethodInfo); DO_APP_FUNC(0x00449520, IEnumerable_1_System_Text_RegularExpressions_Capture_ *, BadWordFilter_c__ReplaceAll_b__23_2, (BadWordFilter_c * __this, Match * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E8C8, BadWordFilter_c__ReplaceAll_b__23_2__MethodInfo); DO_APP_FUNC(0x00448DF0, Capture *, BadWordFilter_c__ReplaceAll_b__23_3, (BadWordFilter_c * __this, Match * match, Capture * capture, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E8B8, BadWordFilter_c__ReplaceAll_b__23_3__MethodInfo); DO_APP_FUNC(0x004495F0, IEnumerable_1_System_Text_RegularExpressions_Match_ *, BadWordFilter_c__ReplaceAll_b__23_5, (BadWordFilter_c * __this, MatchCollection * matches, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E8A8, BadWordFilter_c__ReplaceAll_b__23_5__MethodInfo); DO_APP_FUNC(0x004496B0, _f_AnonymousType3_2_System_Text_RegularExpressions_MatchCollection_System_Text_RegularExpressions_Match_ *, BadWordFilter_c__ReplaceAll_b__23_6, (BadWordFilter_c * __this, MatchCollection * matches, Match * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E898, BadWordFilter_c__ReplaceAll_b__23_6__MethodInfo); DO_APP_FUNC(0x00449740, IEnumerable_1_System_Text_RegularExpressions_Capture_ *, BadWordFilter_c__ReplaceAll_b__23_7, (BadWordFilter_c * __this, _f_AnonymousType3_2_System_Text_RegularExpressions_MatchCollection_System_Text_RegularExpressions_Match_ * __h__TransparentIdentifier0, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E888, BadWordFilter_c__ReplaceAll_b__23_7__MethodInfo); DO_APP_FUNC(0x00448DF0, Capture *, BadWordFilter_c__ReplaceAll_b__23_8, (BadWordFilter_c * __this, _f_AnonymousType3_2_System_Text_RegularExpressions_MatchCollection_System_Text_RegularExpressions_Match_ * __h__TransparentIdentifier0, Capture * capture, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E878, BadWordFilter_c__ReplaceAll_b__23_8__MethodInfo); DO_APP_FUNC(0x00449830, IEnumerable_1_System_Text_RegularExpressions_Capture_ *, BadWordFilter_c__ReplaceAll_b__23_9, (BadWordFilter_c * __this, Match * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E868, BadWordFilter_c__ReplaceAll_b__23_9__MethodInfo); DO_APP_FUNC(0x00448DF0, Capture *, BadWordFilter_c__ReplaceAll_b__23_10, (BadWordFilter_c * __this, Match * match, Capture * capture, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E8E8, BadWordFilter_c__ReplaceAll_b__23_10__MethodInfo); DO_APP_FUNC(0x003AE050, void, BadWordFilter_c_DisplayClass21_0__ctor, (BadWordFilter_c_DisplayClass21_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00419B20, bool, BadWordFilter_c_DisplayClass21_0__Contains_b__2, (BadWordFilter_c_DisplayClass21_0 * __this, String * simpleWord, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EE38, BadWordFilter_c_DisplayClass21_0__Contains_b__2__MethodInfo); DO_APP_FUNC(0x00419B20, bool, BadWordFilter_c_DisplayClass21_0__Contains_b__3, (BadWordFilter_c_DisplayClass21_0 * __this, String * simpleWord, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EE28, BadWordFilter_c_DisplayClass21_0__Contains_b__3__MethodInfo); DO_APP_FUNC(0x00449900, bool, BadWordFilter_c_DisplayClass21_0__Contains_b__0, (BadWordFilter_c_DisplayClass21_0 * __this, List_1_System_String_ * words, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EE58, BadWordFilter_c_DisplayClass21_0__Contains_b__0__MethodInfo); DO_APP_FUNC(0x00419B20, bool, BadWordFilter_c_DisplayClass21_0__Contains_b__4, (BadWordFilter_c_DisplayClass21_0 * __this, String * simpleWord, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E490, BadWordFilter_c_DisplayClass21_0__Contains_b__4__MethodInfo); DO_APP_FUNC(0x00449A00, bool, BadWordFilter_c_DisplayClass21_0__Contains_b__1, (BadWordFilter_c_DisplayClass21_0 * __this, Regex * badWordRegex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EE48, BadWordFilter_c_DisplayClass21_0__Contains_b__1__MethodInfo); DO_APP_FUNC(0x00419B20, bool, BadWordFilter_c_DisplayClass21_0__Contains_b__5, (BadWordFilter_c_DisplayClass21_0 * __this, String * simpleWord, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EE18, BadWordFilter_c_DisplayClass21_0__Contains_b__5__MethodInfo); DO_APP_FUNC(0x003AE050, void, BadWordFilter_c_DisplayClass22_0__ctor, (BadWordFilter_c_DisplayClass22_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00449AC0, bool, BadWordFilter_c_DisplayClass22_0__GetAll_b__13, (BadWordFilter_c_DisplayClass22_0 * __this, _f_AnonymousType2_2_System_Collections_Generic_List_1_System_String_ * __h__TransparentIdentifier0, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EA40, BadWordFilter_c_DisplayClass22_0__GetAll_b__13__MethodInfo); DO_APP_FUNC(0x00449B60, bool, BadWordFilter_c_DisplayClass22_0__GetAll_b__20, (BadWordFilter_c_DisplayClass22_0 * __this, _f_AnonymousType4_2_f_AnonymousType3_2_System_Text_RegularExpressions_MatchCollection_System_Text_RegularExpressions_Match_System_Text_RegularExpressions_Capture_ * __h__TransparentIdentifier1, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EA30, BadWordFilter_c_DisplayClass22_0__GetAll_b__20__MethodInfo); DO_APP_FUNC(0x00449C30, bool, BadWordFilter_c_DisplayClass22_0__GetAll_b__23, (BadWordFilter_c_DisplayClass22_0 * __this, String * simpleWord, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EA20, BadWordFilter_c_DisplayClass22_0__GetAll_b__23__MethodInfo); DO_APP_FUNC(0x00449CC0, bool, BadWordFilter_c_DisplayClass22_0__GetAll_b__26, (BadWordFilter_c_DisplayClass22_0 * __this, _f_AnonymousType5_2_System_Text_RegularExpressions_Match_System_Text_RegularExpressions_Capture_ * __h__TransparentIdentifier0, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EA10, BadWordFilter_c_DisplayClass22_0__GetAll_b__26__MethodInfo); DO_APP_FUNC(0x003AE050, void, BadWordFilter_c_DisplayClass22_1__ctor, (BadWordFilter_c_DisplayClass22_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x00449D90, bool, BadWordFilter_c_DisplayClass22_1__GetAll_b__3, (BadWordFilter_c_DisplayClass22_1 * __this, _f_AnonymousType2_2_System_Collections_Generic_List_1_System_String_ * __h__TransparentIdentifier0, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E9C0, BadWordFilter_c_DisplayClass22_1__GetAll_b__3__MethodInfo); DO_APP_FUNC(0x00419B20, bool, BadWordFilter_c_DisplayClass22_1__GetAll_b__7, (BadWordFilter_c_DisplayClass22_1 * __this, String * simpleWord, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E9B0, BadWordFilter_c_DisplayClass22_1__GetAll_b__7__MethodInfo); DO_APP_FUNC(0x0044A010, bool, BadWordFilter_c_DisplayClass22_1__GetAll_b__12, (BadWordFilter_c_DisplayClass22_1 * __this, _f_AnonymousType2_2_System_Collections_Generic_List_1_System_String_ * __h__TransparentIdentifier0, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E9F0, BadWordFilter_c_DisplayClass22_1__GetAll_b__12__MethodInfo); DO_APP_FUNC(0x0044A290, MatchCollection *, BadWordFilter_c_DisplayClass22_1__GetAll_b__15, (BadWordFilter_c_DisplayClass22_1 * __this, Regex * badWordsResource, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E9E0, BadWordFilter_c_DisplayClass22_1__GetAll_b__15__MethodInfo); DO_APP_FUNC(0x00419B20, bool, BadWordFilter_c_DisplayClass22_1__GetAll_b__22, (BadWordFilter_c_DisplayClass22_1 * __this, String * simpleWord, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E9D0, BadWordFilter_c_DisplayClass22_1__GetAll_b__22__MethodInfo); DO_APP_FUNC(0x003AE050, void, BadWordFilter_c_DisplayClass23_0__ctor, (BadWordFilter_c_DisplayClass23_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0044A290, MatchCollection *, BadWordFilter_c_DisplayClass23_0__ReplaceAll_b__4, (BadWordFilter_c_DisplayClass23_0 * __this, Regex * badWordsResource, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E858, BadWordFilter_c_DisplayClass23_0__ReplaceAll_b__4__MethodInfo); DO_APP_FUNC(0x0044A2C0, List_1_Crosstales_BWF_Data_Source_ *, BaseFilter_get_Sources, (BaseFilter * __this, MethodInfo * method)); DO_APP_FUNC(0x0044A6D0, String *, BaseFilter_Unmark, (BaseFilter * __this, String * text, String * prefix, String * postfix, MethodInfo * method)); DO_APP_FUNC(0x0044A9A0, String *, BaseFilter_Mark, (BaseFilter * __this, String * text, bool replace, String * prefix, String * postfix, String__Array * sourceNames, MethodInfo * method)); @@ -83251,7 +94690,9 @@ DO_APP_FUNC(0x0044AF30, void, BaseFilter__ctor, (BaseFilter * __this, MethodInfo DO_APP_FUNC(0x0044B010, void, BaseFilter_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BaseFilter_c__ctor, (BaseFilter_c * __this, MethodInfo * method)); DO_APP_FUNC(0x0044B0C0, String *, BaseFilter_c__get_Sources_b__2_0, (BaseFilter_c * __this, KeyValuePair_2_System_String_Crosstales_BWF_Data_Source_ x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E460, BaseFilter_c__get_Sources_b__2_0__MethodInfo); DO_APP_FUNC(0x0044B100, Source *, BaseFilter_c__get_Sources_b__2_1, (BaseFilter_c * __this, KeyValuePair_2_System_String_Crosstales_BWF_Data_Source_ y, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E458, BaseFilter_c__get_Sources_b__2_1__MethodInfo); DO_APP_FUNC(0x003BB3E0, Regex *, CapitalizationFilter_get_RegularExpression, (CapitalizationFilter * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCDE0, void, CapitalizationFilter_set_RegularExpression, (CapitalizationFilter * __this, Regex * value, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, CapitalizationFilter_get_CharacterNumber, (CapitalizationFilter * __this, MethodInfo * method)); @@ -83264,10 +94705,15 @@ DO_APP_FUNC(0x0044BD00, String *, CapitalizationFilter_ReplaceAll, (Capitalizati DO_APP_FUNC(0x0044C4C0, void, CapitalizationFilter_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CapitalizationFilter_c__ctor, (CapitalizationFilter_c * __this, MethodInfo * method)); DO_APP_FUNC(0x0044C570, IEnumerable_1_System_Text_RegularExpressions_Capture_ *, CapitalizationFilter_c__GetAll_b__12_1, (CapitalizationFilter_c * __this, Match * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E3E0, CapitalizationFilter_c__GetAll_b__12_1__MethodInfo); DO_APP_FUNC(0x00448DF0, Capture *, CapitalizationFilter_c__GetAll_b__12_2, (CapitalizationFilter_c * __this, Match * match, Capture * capture, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E3D8, CapitalizationFilter_c__GetAll_b__12_2__MethodInfo); DO_APP_FUNC(0x00420A60, String *, CapitalizationFilter_c__GetAll_b__12_0, (CapitalizationFilter_c * __this, String * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E3E8, CapitalizationFilter_c__GetAll_b__12_0__MethodInfo); DO_APP_FUNC(0x0044C640, IEnumerable_1_System_Text_RegularExpressions_Capture_ *, CapitalizationFilter_c__ReplaceAll_b__13_0, (CapitalizationFilter_c * __this, Match * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E3C0, CapitalizationFilter_c__ReplaceAll_b__13_0__MethodInfo); DO_APP_FUNC(0x00448DF0, Capture *, CapitalizationFilter_c__ReplaceAll_b__13_1, (CapitalizationFilter_c * __this, Match * match, Capture * capture, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E3B8, CapitalizationFilter_c__ReplaceAll_b__13_1__MethodInfo); DO_APP_FUNC(0x003BB3E0, List_1_Crosstales_BWF_Provider_DomainProvider_ *, DomainFilter_get_DomainProvider, (DomainFilter * __this, MethodInfo * method)); DO_APP_FUNC(0x0044C710, void, DomainFilter_set_DomainProvider, (DomainFilter * __this, List_1_Crosstales_BWF_Provider_DomainProvider_ * value, MethodInfo * method)); DO_APP_FUNC(0x0044CBA0, bool, DomainFilter_get_isReady, (DomainFilter * __this, MethodInfo * method)); @@ -83276,46 +94722,82 @@ DO_APP_FUNC(0x0044D760, bool, DomainFilter_Contains, (DomainFilter * __this, Str DO_APP_FUNC(0x0044E230, List_1_System_String_ *, DomainFilter_GetAll, (DomainFilter * __this, String * text, String__Array * sourceNames, MethodInfo * method)); DO_APP_FUNC(0x00450410, String *, DomainFilter_ReplaceAll, (DomainFilter * __this, String * text, bool markOnly, String * prefix, String * postfix, String__Array * sourceNames, MethodInfo * method)); DO_APP_FUNC(0x00451F70, bool, DomainFilter__get_isReady_b__11_5, (DomainFilter * __this, _f_AnonymousType6_2_Crosstales_BWF_Provider_DomainProvider_Crosstales_BWF_Data_Source_ * __h__TransparentIdentifier0, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E370, DomainFilter__get_isReady_b__11_5__MethodInfo); DO_APP_FUNC(0x00452020, void, DomainFilter_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, DomainFilter_c__ctor, (DomainFilter_c * __this, MethodInfo * method)); DO_APP_FUNC(0x004520D0, bool, DomainFilter_c__get_isReady_b__11_0, (DomainFilter_c * __this, DomainProvider * dp, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E318, DomainFilter_c__get_isReady_b__11_0__MethodInfo); DO_APP_FUNC(0x004521D0, bool, DomainFilter_c__get_isReady_b__11_1, (DomainFilter_c * __this, DomainProvider * dp, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E310, DomainFilter_c__get_isReady_b__11_1__MethodInfo); DO_APP_FUNC(0x00448630, IEnumerable_1_Crosstales_BWF_Data_Source_ *, DomainFilter_c__get_isReady_b__11_2, (DomainFilter_c * __this, DomainProvider * dp, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E308, DomainFilter_c__get_isReady_b__11_2__MethodInfo); DO_APP_FUNC(0x004522D0, _f_AnonymousType6_2_Crosstales_BWF_Provider_DomainProvider_Crosstales_BWF_Data_Source_ *, DomainFilter_c__get_isReady_b__11_3, (DomainFilter_c * __this, DomainProvider * dp, Source * src, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E300, DomainFilter_c__get_isReady_b__11_3__MethodInfo); DO_APP_FUNC(0x004523F0, bool, DomainFilter_c__get_isReady_b__11_4, (DomainFilter_c * __this, _f_AnonymousType6_2_Crosstales_BWF_Provider_DomainProvider_Crosstales_BWF_Data_Source_ * __h__TransparentIdentifier0, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E2F8, DomainFilter_c__get_isReady_b__11_4__MethodInfo); DO_APP_FUNC(0x00452510, Source *, DomainFilter_c__get_isReady_b__11_6, (DomainFilter_c * __this, _f_AnonymousType6_2_Crosstales_BWF_Provider_DomainProvider_Crosstales_BWF_Data_Source_ * __h__TransparentIdentifier0, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E2F0, DomainFilter_c__get_isReady_b__11_6__MethodInfo); DO_APP_FUNC(0x00452550, IEnumerable_1_System_Text_RegularExpressions_Capture_ *, DomainFilter_c__GetAll_b__14_1, (DomainFilter_c * __this, Match * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E298, DomainFilter_c__GetAll_b__14_1__MethodInfo); DO_APP_FUNC(0x00448DF0, Capture *, DomainFilter_c__GetAll_b__14_2, (DomainFilter_c * __this, Match * match, Capture * capture, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E290, DomainFilter_c__GetAll_b__14_2__MethodInfo); DO_APP_FUNC(0x00452620, IEnumerable_1_System_Text_RegularExpressions_Capture_ *, DomainFilter_c__GetAll_b__14_3, (DomainFilter_c * __this, Match * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E288, DomainFilter_c__GetAll_b__14_3__MethodInfo); DO_APP_FUNC(0x00448DF0, Capture *, DomainFilter_c__GetAll_b__14_4, (DomainFilter_c * __this, Match * match, Capture * capture, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E280, DomainFilter_c__GetAll_b__14_4__MethodInfo); DO_APP_FUNC(0x004526F0, IEnumerable_1_System_Text_RegularExpressions_Match_ *, DomainFilter_c__GetAll_b__14_6, (DomainFilter_c * __this, MatchCollection * matches, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E278, DomainFilter_c__GetAll_b__14_6__MethodInfo); DO_APP_FUNC(0x004527B0, _f_AnonymousType3_2_System_Text_RegularExpressions_MatchCollection_System_Text_RegularExpressions_Match_ *, DomainFilter_c__GetAll_b__14_7, (DomainFilter_c * __this, MatchCollection * matches, Match * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E270, DomainFilter_c__GetAll_b__14_7__MethodInfo); DO_APP_FUNC(0x00452840, IEnumerable_1_System_Text_RegularExpressions_Capture_ *, DomainFilter_c__GetAll_b__14_8, (DomainFilter_c * __this, _f_AnonymousType3_2_System_Text_RegularExpressions_MatchCollection_System_Text_RegularExpressions_Match_ * __h__TransparentIdentifier0, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E268, DomainFilter_c__GetAll_b__14_8__MethodInfo); DO_APP_FUNC(0x00452930, _f_AnonymousType4_2_f_AnonymousType3_2_System_Text_RegularExpressions_MatchCollection_System_Text_RegularExpressions_Match_System_Text_RegularExpressions_Capture_ *, DomainFilter_c__GetAll_b__14_9, (DomainFilter_c * __this, _f_AnonymousType3_2_System_Text_RegularExpressions_MatchCollection_System_Text_RegularExpressions_Match_ * __h__TransparentIdentifier0, Capture * capture, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E260, DomainFilter_c__GetAll_b__14_9__MethodInfo); DO_APP_FUNC(0x004529C0, Capture *, DomainFilter_c__GetAll_b__14_11, (DomainFilter_c * __this, _f_AnonymousType4_2_f_AnonymousType3_2_System_Text_RegularExpressions_MatchCollection_System_Text_RegularExpressions_Match_System_Text_RegularExpressions_Capture_ * __h__TransparentIdentifier1, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E2B8, DomainFilter_c__GetAll_b__14_11__MethodInfo); DO_APP_FUNC(0x00452A00, IEnumerable_1_System_Text_RegularExpressions_Capture_ *, DomainFilter_c__GetAll_b__14_12, (DomainFilter_c * __this, Match * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E2B0, DomainFilter_c__GetAll_b__14_12__MethodInfo); DO_APP_FUNC(0x00452AD0, _f_AnonymousType5_2_System_Text_RegularExpressions_Match_System_Text_RegularExpressions_Capture_ *, DomainFilter_c__GetAll_b__14_13, (DomainFilter_c * __this, Match * match, Capture * capture, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E2A8, DomainFilter_c__GetAll_b__14_13__MethodInfo); DO_APP_FUNC(0x00452B60, Capture *, DomainFilter_c__GetAll_b__14_15, (DomainFilter_c * __this, _f_AnonymousType5_2_System_Text_RegularExpressions_Match_System_Text_RegularExpressions_Capture_ * __h__TransparentIdentifier0, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E2A0, DomainFilter_c__GetAll_b__14_15__MethodInfo); DO_APP_FUNC(0x00420A60, String *, DomainFilter_c__GetAll_b__14_0, (DomainFilter_c * __this, String * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E2C0, DomainFilter_c__GetAll_b__14_0__MethodInfo); DO_APP_FUNC(0x00452BA0, IEnumerable_1_System_Text_RegularExpressions_Capture_ *, DomainFilter_c__ReplaceAll_b__15_5, (DomainFilter_c * __this, Match * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E1D0, DomainFilter_c__ReplaceAll_b__15_5__MethodInfo); DO_APP_FUNC(0x00448DF0, Capture *, DomainFilter_c__ReplaceAll_b__15_6, (DomainFilter_c * __this, Match * match, Capture * capture, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E1C8, DomainFilter_c__ReplaceAll_b__15_6__MethodInfo); DO_APP_FUNC(0x00452C70, IEnumerable_1_System_Text_RegularExpressions_Capture_ *, DomainFilter_c__ReplaceAll_b__15_7, (DomainFilter_c * __this, Match * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E1C0, DomainFilter_c__ReplaceAll_b__15_7__MethodInfo); DO_APP_FUNC(0x00448DF0, Capture *, DomainFilter_c__ReplaceAll_b__15_8, (DomainFilter_c * __this, Match * match, Capture * capture, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E1B8, DomainFilter_c__ReplaceAll_b__15_8__MethodInfo); DO_APP_FUNC(0x00452D40, _f_AnonymousType7_2_System_Text_RegularExpressions_Regex_System_Text_RegularExpressions_Match_ *, DomainFilter_c__ReplaceAll_b__15_1, (DomainFilter_c * __this, Regex * domainRegex, Match * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E1E8, DomainFilter_c__ReplaceAll_b__15_1__MethodInfo); DO_APP_FUNC(0x00452E60, IEnumerable_1_System_Text_RegularExpressions_Capture_ *, DomainFilter_c__ReplaceAll_b__15_2, (DomainFilter_c * __this, _f_AnonymousType7_2_System_Text_RegularExpressions_Regex_System_Text_RegularExpressions_Match_ * __h__TransparentIdentifier0, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E1E0, DomainFilter_c__ReplaceAll_b__15_2__MethodInfo); DO_APP_FUNC(0x00448DF0, Capture *, DomainFilter_c__ReplaceAll_b__15_3, (DomainFilter_c * __this, _f_AnonymousType7_2_System_Text_RegularExpressions_Regex_System_Text_RegularExpressions_Match_ * __h__TransparentIdentifier0, Capture * capture, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E1D8, DomainFilter_c__ReplaceAll_b__15_3__MethodInfo); DO_APP_FUNC(0x00452F50, IEnumerable_1_System_Text_RegularExpressions_Capture_ *, DomainFilter_c__ReplaceAll_b__15_9, (DomainFilter_c * __this, Match * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E1B0, DomainFilter_c__ReplaceAll_b__15_9__MethodInfo); DO_APP_FUNC(0x00448DF0, Capture *, DomainFilter_c__ReplaceAll_b__15_10, (DomainFilter_c * __this, Match * match, Capture * capture, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E1F0, DomainFilter_c__ReplaceAll_b__15_10__MethodInfo); DO_APP_FUNC(0x003AE050, void, DomainFilter_c_DisplayClass13_0__ctor, (DomainFilter_c_DisplayClass13_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00449A00, bool, DomainFilter_c_DisplayClass13_0__Contains_b__0, (DomainFilter_c_DisplayClass13_0 * __this, Regex * domainRegex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E2E0, DomainFilter_c_DisplayClass13_0__Contains_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, DomainFilter_c_DisplayClass14_0__ctor, (DomainFilter_c_DisplayClass14_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0044A290, MatchCollection *, DomainFilter_c_DisplayClass14_0__GetAll_b__5, (DomainFilter_c_DisplayClass14_0 * __this, Regex * domainRegex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E248, DomainFilter_c_DisplayClass14_0__GetAll_b__5__MethodInfo); DO_APP_FUNC(0x00453020, bool, DomainFilter_c_DisplayClass14_0__GetAll_b__10, (DomainFilter_c_DisplayClass14_0 * __this, _f_AnonymousType4_2_f_AnonymousType3_2_System_Text_RegularExpressions_MatchCollection_System_Text_RegularExpressions_Match_System_Text_RegularExpressions_Capture_ * __h__TransparentIdentifier1, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E258, DomainFilter_c_DisplayClass14_0__GetAll_b__10__MethodInfo); DO_APP_FUNC(0x004530F0, bool, DomainFilter_c_DisplayClass14_0__GetAll_b__14, (DomainFilter_c_DisplayClass14_0 * __this, _f_AnonymousType5_2_System_Text_RegularExpressions_Match_System_Text_RegularExpressions_Capture_ * __h__TransparentIdentifier0, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E250, DomainFilter_c_DisplayClass14_0__GetAll_b__14__MethodInfo); DO_APP_FUNC(0x003AE050, void, DomainFilter_c_DisplayClass15_0__ctor, (DomainFilter_c_DisplayClass15_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x004531C0, IEnumerable_1_System_Text_RegularExpressions_Match_ *, DomainFilter_c_DisplayClass15_0__ReplaceAll_b__0, (DomainFilter_c_DisplayClass15_0 * __this, Regex * domainRegex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E1A8, DomainFilter_c_DisplayClass15_0__ReplaceAll_b__0__MethodInfo); DO_APP_FUNC(0x004532A0, String *, DomainFilter_c_DisplayClass15_0__ReplaceAll_b__4, (DomainFilter_c_DisplayClass15_0 * __this, String * current, Capture * capture, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E198, DomainFilter_c_DisplayClass15_0__ReplaceAll_b__4__MethodInfo); DO_APP_FUNC(0x004533D0, String *, DomainFilter_c_DisplayClass15_0__ReplaceAll_b__11, (DomainFilter_c_DisplayClass15_0 * __this, String * current, Capture * capture, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E1A0, DomainFilter_c_DisplayClass15_0__ReplaceAll_b__11__MethodInfo); DO_APP_FUNC(0x003BB3D0, Regex *, PunctuationFilter_get_RegularExpression, (PunctuationFilter * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE960, void, PunctuationFilter_set_RegularExpression, (PunctuationFilter * __this, Regex * value, MethodInfo * method)); DO_APP_FUNC(0x003CC980, int32_t, PunctuationFilter_get_CharacterNumber, (PunctuationFilter * __this, MethodInfo * method)); @@ -83328,10 +94810,15 @@ DO_APP_FUNC(0x004540C0, String *, PunctuationFilter_ReplaceAll, (PunctuationFilt DO_APP_FUNC(0x00454900, void, PunctuationFilter_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, PunctuationFilter_c__ctor, (PunctuationFilter_c * __this, MethodInfo * method)); DO_APP_FUNC(0x004549B0, IEnumerable_1_System_Text_RegularExpressions_Capture_ *, PunctuationFilter_c__GetAll_b__12_1, (PunctuationFilter_c * __this, Match * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E148, PunctuationFilter_c__GetAll_b__12_1__MethodInfo); DO_APP_FUNC(0x00448DF0, Capture *, PunctuationFilter_c__GetAll_b__12_2, (PunctuationFilter_c * __this, Match * match, Capture * capture, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E140, PunctuationFilter_c__GetAll_b__12_2__MethodInfo); DO_APP_FUNC(0x00420A60, String *, PunctuationFilter_c__GetAll_b__12_0, (PunctuationFilter_c * __this, String * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E150, PunctuationFilter_c__GetAll_b__12_0__MethodInfo); DO_APP_FUNC(0x00454A80, IEnumerable_1_System_Text_RegularExpressions_Capture_ *, PunctuationFilter_c__ReplaceAll_b__13_0, (PunctuationFilter_c * __this, Match * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E128, PunctuationFilter_c__ReplaceAll_b__13_0__MethodInfo); DO_APP_FUNC(0x00448DF0, Capture *, PunctuationFilter_c__ReplaceAll_b__13_1, (PunctuationFilter_c * __this, Match * match, Capture * capture, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E120, PunctuationFilter_c__ReplaceAll_b__13_1__MethodInfo); DO_APP_FUNC(0x003C7400, int32_t, Source_get_RegexCount, (Source * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7410, void, Source_set_RegexCount, (Source * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x00454B50, String *, Source_ToString, (Source * __this, MethodInfo * method)); @@ -83365,19 +94852,19 @@ DO_APP_FUNC(0x02B9EFD0, void, MaterialReferenceManager_AddColorGradientPreset, ( DO_APP_FUNC(0x02B9F0C0, void, MaterialReferenceManager_AddColorGradientPreset_Internal, (MaterialReferenceManager * __this, int32_t hashCode, TMP_ColorGradient * spriteAsset, MethodInfo * method)); DO_APP_FUNC(0x02B9F1A0, bool, MaterialReferenceManager_Contains, (MaterialReferenceManager * __this, TMP_FontAsset * font, MethodInfo * method)); DO_APP_FUNC(0x02B9F220, bool, MaterialReferenceManager_Contains_1, (MaterialReferenceManager * __this, TMP_SpriteAsset * sprite, MethodInfo * method)); -DO_APP_FUNC(0x02B9F2A0, bool, MaterialReferenceManager_TryGetFontAsset, (int32_t hashCode, TMP_FontAsset * fontAsset, MethodInfo * method)); -DO_APP_FUNC(0x02B9F360, bool, MaterialReferenceManager_TryGetFontAssetInternal, (MaterialReferenceManager * __this, int32_t hashCode, TMP_FontAsset * fontAsset, MethodInfo * method)); -DO_APP_FUNC(0x02B9F410, bool, MaterialReferenceManager_TryGetSpriteAsset, (int32_t hashCode, TMP_SpriteAsset * spriteAsset, MethodInfo * method)); -DO_APP_FUNC(0x02B9F4D0, bool, MaterialReferenceManager_TryGetSpriteAssetInternal, (MaterialReferenceManager * __this, int32_t hashCode, TMP_SpriteAsset * spriteAsset, MethodInfo * method)); -DO_APP_FUNC(0x02B9F580, bool, MaterialReferenceManager_TryGetColorGradientPreset, (int32_t hashCode, TMP_ColorGradient * gradientPreset, MethodInfo * method)); -DO_APP_FUNC(0x02B9F640, bool, MaterialReferenceManager_TryGetColorGradientPresetInternal, (MaterialReferenceManager * __this, int32_t hashCode, TMP_ColorGradient * gradientPreset, MethodInfo * method)); -DO_APP_FUNC(0x02B9F6F0, bool, MaterialReferenceManager_TryGetMaterial, (int32_t hashCode, Material * material, MethodInfo * method)); -DO_APP_FUNC(0x02B9F7B0, bool, MaterialReferenceManager_TryGetMaterialInternal, (MaterialReferenceManager * __this, int32_t hashCode, Material * material, MethodInfo * method)); +DO_APP_FUNC(0x02B9F2A0, bool, MaterialReferenceManager_TryGetFontAsset, (int32_t hashCode, TMP_FontAsset * * fontAsset, MethodInfo * method)); +DO_APP_FUNC(0x02B9F360, bool, MaterialReferenceManager_TryGetFontAssetInternal, (MaterialReferenceManager * __this, int32_t hashCode, TMP_FontAsset * * fontAsset, MethodInfo * method)); +DO_APP_FUNC(0x02B9F410, bool, MaterialReferenceManager_TryGetSpriteAsset, (int32_t hashCode, TMP_SpriteAsset * * spriteAsset, MethodInfo * method)); +DO_APP_FUNC(0x02B9F4D0, bool, MaterialReferenceManager_TryGetSpriteAssetInternal, (MaterialReferenceManager * __this, int32_t hashCode, TMP_SpriteAsset * * spriteAsset, MethodInfo * method)); +DO_APP_FUNC(0x02B9F580, bool, MaterialReferenceManager_TryGetColorGradientPreset, (int32_t hashCode, TMP_ColorGradient * * gradientPreset, MethodInfo * method)); +DO_APP_FUNC(0x02B9F640, bool, MaterialReferenceManager_TryGetColorGradientPresetInternal, (MaterialReferenceManager * __this, int32_t hashCode, TMP_ColorGradient * * gradientPreset, MethodInfo * method)); +DO_APP_FUNC(0x02B9F6F0, bool, MaterialReferenceManager_TryGetMaterial, (int32_t hashCode, Material * * material, MethodInfo * method)); +DO_APP_FUNC(0x02B9F7B0, bool, MaterialReferenceManager_TryGetMaterialInternal, (MaterialReferenceManager * __this, int32_t hashCode, Material * * material, MethodInfo * method)); DO_APP_FUNC(0x02B9F860, void, MaterialReferenceManager__ctor, (MaterialReferenceManager * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B9FB70, void, MaterialReference__ctor, (MaterialReference__Boxed * __this, int32_t index, TMP_FontAsset * fontAsset, TMP_SpriteAsset * spriteAsset, Material * material, float padding, MethodInfo * method)); +DO_APP_FUNC(0x02B9FB70, void, MaterialReference__ctor, (MaterialReference * __this, int32_t index, TMP_FontAsset * fontAsset, TMP_SpriteAsset * spriteAsset, Material * material, float padding, MethodInfo * method)); DO_APP_FUNC(0x02B9FD40, bool, MaterialReference_Contains, (MaterialReference__Array * materialReferences, TMP_FontAsset * fontAsset, MethodInfo * method)); -DO_APP_FUNC(0x02B9FEE0, int32_t, MaterialReference_AddMaterialReference, (Material * material, TMP_FontAsset * fontAsset, MaterialReference__Array * materialReferences, Dictionary_2_System_Int32_System_Int32_ * materialReferenceIndexLookup, MethodInfo * method)); -DO_APP_FUNC(0x02BA0290, int32_t, MaterialReference_AddMaterialReference_1, (Material * material, TMP_SpriteAsset * spriteAsset, MaterialReference__Array * materialReferences, Dictionary_2_System_Int32_System_Int32_ * materialReferenceIndexLookup, MethodInfo * method)); +DO_APP_FUNC(0x02B9FEE0, int32_t, MaterialReference_AddMaterialReference, (Material * material, TMP_FontAsset * fontAsset, MaterialReference__Array * * materialReferences, Dictionary_2_System_Int32_System_Int32_ * materialReferenceIndexLookup, MethodInfo * method)); +DO_APP_FUNC(0x02BA0290, int32_t, MaterialReference_AddMaterialReference_1, (Material * material, TMP_SpriteAsset * spriteAsset, MaterialReference__Array * * materialReferences, Dictionary_2_System_Int32_System_Int32_ * materialReferenceIndexLookup, MethodInfo * method)); DO_APP_FUNC(0x003BCC40, bool, TextContainer_get_hasChanged, (TextContainer * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCC50, void, TextContainer_set_hasChanged, (TextContainer * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x003BC490, Vector2, TextContainer_get_pivot, (TextContainer * __this, MethodInfo * method)); @@ -83609,17 +95096,17 @@ DO_APP_FUNC(0x02BBEF10, bool, TMPro_ExtensionMethods_Compare_3, (Quaternion q1, DO_APP_FUNC(0x02BBF050, bool, TMP_Math_Approximately, (float a, float b, MethodInfo * method)); DO_APP_FUNC(0x02BBF080, int32_t, TMP_Math_Mod, (int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x02BBF0A0, void, TMP_Math__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02BBF110, void, VertexGradient__ctor, (VertexGradient__Boxed * __this, Color color, MethodInfo * method)); -DO_APP_FUNC(0x02BBF130, void, VertexGradient__ctor_1, (VertexGradient__Boxed * __this, Color color0, Color color1, Color color2, Color color3, MethodInfo * method)); -DO_APP_FUNC(0x02BBF160, void, TMP_LinkInfo_SetLinkID, (TMP_LinkInfo__Boxed * __this, Char__Array * text, int32_t startIndex, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x02BBF280, String *, TMP_LinkInfo_GetLinkText, (TMP_LinkInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02BBF3E0, String *, TMP_LinkInfo_GetLinkID, (TMP_LinkInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02BBF520, String *, TMP_WordInfo_GetWord, (TMP_WordInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BDCC10, void, Extents__ctor, (Extents__Boxed * __this, Vector2 min, Vector2 max, MethodInfo * method)); -DO_APP_FUNC(0x02BBF690, String *, Extents_ToString, (Extents__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02BBF110, void, VertexGradient__ctor, (VertexGradient * __this, Color color, MethodInfo * method)); +DO_APP_FUNC(0x02BBF130, void, VertexGradient__ctor_1, (VertexGradient * __this, Color color0, Color color1, Color color2, Color color3, MethodInfo * method)); +DO_APP_FUNC(0x02BBF160, void, TMP_LinkInfo_SetLinkID, (TMP_LinkInfo * __this, Char__Array * text, int32_t startIndex, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x02BBF280, String *, TMP_LinkInfo_GetLinkText, (TMP_LinkInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x02BBF3E0, String *, TMP_LinkInfo_GetLinkID, (TMP_LinkInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x02BBF520, String *, TMP_WordInfo_GetWord, (TMP_WordInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x00BDCC10, void, Extents__ctor, (Extents * __this, Vector2 min, Vector2 max, MethodInfo * method)); +DO_APP_FUNC(0x02BBF690, String *, Extents_ToString, (Extents * __this, MethodInfo * method)); DO_APP_FUNC(0x02BBFA10, void, Extents__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x00BDCC10, void, Mesh_Extents__ctor, (Mesh_Extents__Boxed * __this, Vector2 min, Vector2 max, MethodInfo * method)); -DO_APP_FUNC(0x02BBFB10, String *, Mesh_Extents_ToString, (Mesh_Extents__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00BDCC10, void, Mesh_Extents__ctor, (Mesh_Extents * __this, Vector2 min, Vector2 max, MethodInfo * method)); +DO_APP_FUNC(0x02BBFB10, String *, Mesh_Extents_ToString, (Mesh_Extents * __this, MethodInfo * method)); DO_APP_FUNC(0x02BBFE90, int32_t, TMP_Asset_get_instanceID, (TMP_Asset * __this, MethodInfo * method)); DO_APP_FUNC(0x003BA2A0, void, TMP_Asset__ctor, (TMP_Asset * __this, MethodInfo * method)); DO_APP_FUNC(0x02BBFEC0, void, TMP_Character__ctor, (TMP_Character * __this, MethodInfo * method)); @@ -83628,68 +95115,68 @@ DO_APP_FUNC(0x02BBFFB0, void, TMP_Character__ctor_2, (TMP_Character * __this, ui DO_APP_FUNC(0x02BC0090, void, TMP_Character__ctor_3, (TMP_Character * __this, uint32_t unicode, uint32_t glyphIndex, MethodInfo * method)); DO_APP_FUNC(0x02BC0160, TMP_Vertex, TMP_Vertex_get_zero, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TMP_Vertex__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x00BCBB00, float, TMP_Offset_get_left, (TMP_Offset__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C42840, void, TMP_Offset_set_left, (TMP_Offset__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x00C4B940, float, TMP_Offset_get_right, (TMP_Offset__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C7A0F0, void, TMP_Offset_set_right, (TMP_Offset__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x00C43A70, float, TMP_Offset_get_top, (TMP_Offset__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C43A80, void, TMP_Offset_set_top, (TMP_Offset__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x00C43A90, float, TMP_Offset_get_bottom, (TMP_Offset__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C43AA0, void, TMP_Offset_set_bottom, (TMP_Offset__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x00BCBB00, float, TMP_Offset_get_horizontal, (TMP_Offset__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02BC01E0, void, TMP_Offset_set_horizontal, (TMP_Offset__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x00C43A70, float, TMP_Offset_get_vertical, (TMP_Offset__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02BC01F0, void, TMP_Offset_set_vertical, (TMP_Offset__Boxed * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x00BCBB00, float, TMP_Offset_get_left, (TMP_Offset * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C42840, void, TMP_Offset_set_left, (TMP_Offset * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x00C4B940, float, TMP_Offset_get_right, (TMP_Offset * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C7A0F0, void, TMP_Offset_set_right, (TMP_Offset * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x00C43A70, float, TMP_Offset_get_top, (TMP_Offset * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C43A80, void, TMP_Offset_set_top, (TMP_Offset * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x00C43A90, float, TMP_Offset_get_bottom, (TMP_Offset * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C43AA0, void, TMP_Offset_set_bottom, (TMP_Offset * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x00BCBB00, float, TMP_Offset_get_horizontal, (TMP_Offset * __this, MethodInfo * method)); +DO_APP_FUNC(0x02BC01E0, void, TMP_Offset_set_horizontal, (TMP_Offset * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x00C43A70, float, TMP_Offset_get_vertical, (TMP_Offset * __this, MethodInfo * method)); +DO_APP_FUNC(0x02BC01F0, void, TMP_Offset_set_vertical, (TMP_Offset * __this, float value, MethodInfo * method)); DO_APP_FUNC(0x02BC0200, TMP_Offset, TMP_Offset_get_zero, (MethodInfo * method)); -DO_APP_FUNC(0x003CAFE0, void, TMP_Offset__ctor, (TMP_Offset__Boxed * __this, float left, float right, float top, float bottom, MethodInfo * method)); -DO_APP_FUNC(0x02BC0260, void, TMP_Offset__ctor_1, (TMP_Offset__Boxed * __this, float horizontal, float vertical, MethodInfo * method)); +DO_APP_FUNC(0x003CAFE0, void, TMP_Offset__ctor, (TMP_Offset * __this, float left, float right, float top, float bottom, MethodInfo * method)); +DO_APP_FUNC(0x02BC0260, void, TMP_Offset__ctor_1, (TMP_Offset * __this, float horizontal, float vertical, MethodInfo * method)); DO_APP_FUNC(0x02071150, bool, TMP_Offset_op_Equality, (TMP_Offset lhs, TMP_Offset rhs, MethodInfo * method)); DO_APP_FUNC(0x02BC0280, bool, TMP_Offset_op_Inequality, (TMP_Offset lhs, TMP_Offset rhs, MethodInfo * method)); DO_APP_FUNC(0x02071BD0, TMP_Offset, TMP_Offset_op_Multiply, (TMP_Offset a, float b, MethodInfo * method)); -DO_APP_FUNC(0x02BC0350, int32_t, TMP_Offset_GetHashCode, (TMP_Offset__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02BC03B0, bool, TMP_Offset_Equals, (TMP_Offset__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02BC0420, bool, TMP_Offset_Equals_1, (TMP_Offset__Boxed * __this, TMP_Offset other, MethodInfo * method)); +DO_APP_FUNC(0x02BC0350, int32_t, TMP_Offset_GetHashCode, (TMP_Offset * __this, MethodInfo * method)); +DO_APP_FUNC(0x02BC03B0, bool, TMP_Offset_Equals, (TMP_Offset * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02BC0420, bool, TMP_Offset_Equals_1, (TMP_Offset * __this, TMP_Offset other, MethodInfo * method)); DO_APP_FUNC(0x02BC04A0, void, TMP_Offset__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x0171BD10, void, HighlightState__ctor, (HighlightState__Boxed * __this, Color32 color, TMP_Offset padding, MethodInfo * method)); +DO_APP_FUNC(0x0171BD10, void, HighlightState__ctor, (HighlightState * __this, Color32 color, TMP_Offset padding, MethodInfo * method)); DO_APP_FUNC(0x02BC04E0, bool, HighlightState_op_Equality, (HighlightState lhs, HighlightState rhs, MethodInfo * method)); DO_APP_FUNC(0x02BC0620, bool, HighlightState_op_Inequality, (HighlightState lhs, HighlightState rhs, MethodInfo * method)); -DO_APP_FUNC(0x02BC0760, int32_t, HighlightState_GetHashCode, (HighlightState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02BC07C0, bool, HighlightState_Equals, (HighlightState__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02BC0830, bool, HighlightState_Equals_1, (HighlightState__Boxed * __this, HighlightState other, MethodInfo * method)); +DO_APP_FUNC(0x02BC0760, int32_t, HighlightState_GetHashCode, (HighlightState * __this, MethodInfo * method)); +DO_APP_FUNC(0x02BC07C0, bool, HighlightState_Equals, (HighlightState * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02BC0830, bool, HighlightState_Equals_1, (HighlightState * __this, HighlightState other, MethodInfo * method)); DO_APP_FUNC(0x02BC08C0, void, TMP_ColorGradient__ctor, (TMP_ColorGradient * __this, MethodInfo * method)); DO_APP_FUNC(0x02BC0980, void, TMP_ColorGradient__ctor_1, (TMP_ColorGradient * __this, Color color, MethodInfo * method)); DO_APP_FUNC(0x02BC09D0, void, TMP_ColorGradient__ctor_2, (TMP_ColorGradient * __this, Color color0, Color color1, Color color2, Color color3, MethodInfo * method)); DO_APP_FUNC(0x02BC0A40, void, TMP_ColorGradient__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02BC0A90, TextAlignmentOptions__Enum, TMP_Compatibility_ConvertTextAlignmentEnumValues, (TextAlignmentOptions__Enum oldValue, MethodInfo * method)); -DO_APP_FUNC(0x00C16880, Color, ColorTween_get_startColor, (ColorTween__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B621E0, void, ColorTween_set_startColor, (ColorTween__Boxed * __this, Color value, MethodInfo * method)); -DO_APP_FUNC(0x0093E890, Color, ColorTween_get_targetColor, (ColorTween__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x011C24B0, void, ColorTween_set_targetColor, (ColorTween__Boxed * __this, Color value, MethodInfo * method)); -DO_APP_FUNC(0x00421680, ColorTween_ColorTweenMode__Enum, ColorTween_get_tweenMode, (ColorTween__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00421690, void, ColorTween_set_tweenMode, (ColorTween__Boxed * __this, ColorTween_ColorTweenMode__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x003CD2B0, float, ColorTween_get_duration, (ColorTween__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C58F50, void, ColorTween_set_duration, (ColorTween__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x00594F20, bool, ColorTween_get_ignoreTimeScale, (ColorTween__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A474A0, void, ColorTween_set_ignoreTimeScale, (ColorTween__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02BC0BA0, void, ColorTween_TweenValue, (ColorTween__Boxed * __this, float floatPercentage, MethodInfo * method)); -DO_APP_FUNC(0x02BC0CD0, void, ColorTween_AddOnChangedCallback, (ColorTween__Boxed * __this, UnityAction_1_UnityEngine_Color_ * callback, MethodInfo * method)); -DO_APP_FUNC(0x00594F20, bool, ColorTween_GetIgnoreTimescale, (ColorTween__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003CD2B0, float, ColorTween_GetDuration, (ColorTween__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C0DCF0, bool, ColorTween_ValidTarget, (ColorTween__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C16880, Color, ColorTween_get_startColor, (ColorTween * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B621E0, void, ColorTween_set_startColor, (ColorTween * __this, Color value, MethodInfo * method)); +DO_APP_FUNC(0x0093E890, Color, ColorTween_get_targetColor, (ColorTween * __this, MethodInfo * method)); +DO_APP_FUNC(0x011C24B0, void, ColorTween_set_targetColor, (ColorTween * __this, Color value, MethodInfo * method)); +DO_APP_FUNC(0x00421680, ColorTween_ColorTweenMode__Enum, ColorTween_get_tweenMode, (ColorTween * __this, MethodInfo * method)); +DO_APP_FUNC(0x00421690, void, ColorTween_set_tweenMode, (ColorTween * __this, ColorTween_ColorTweenMode__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x003CD2B0, float, ColorTween_get_duration, (ColorTween * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C58F50, void, ColorTween_set_duration, (ColorTween * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x00594F20, bool, ColorTween_get_ignoreTimeScale, (ColorTween * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A474A0, void, ColorTween_set_ignoreTimeScale, (ColorTween * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02BC0BA0, void, ColorTween_TweenValue, (ColorTween * __this, float floatPercentage, MethodInfo * method)); +DO_APP_FUNC(0x02BC0CD0, void, ColorTween_AddOnChangedCallback, (ColorTween * __this, UnityAction_1_UnityEngine_Color_ * callback, MethodInfo * method)); +DO_APP_FUNC(0x00594F20, bool, ColorTween_GetIgnoreTimescale, (ColorTween * __this, MethodInfo * method)); +DO_APP_FUNC(0x003CD2B0, float, ColorTween_GetDuration, (ColorTween * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C0DCF0, bool, ColorTween_ValidTarget, (ColorTween * __this, MethodInfo * method)); DO_APP_FUNC(0x02BC0DE0, void, ColorTween_ColorTweenCallback__ctor, (ColorTween_ColorTweenCallback * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C43A70, float, FloatTween_get_startValue, (FloatTween__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C43A80, void, FloatTween_set_startValue, (FloatTween__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x00C43A90, float, FloatTween_get_targetValue, (FloatTween__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C43AA0, void, FloatTween_set_targetValue, (FloatTween__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x003BC3C0, float, FloatTween_get_duration, (FloatTween__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003CC920, void, FloatTween_set_duration, (FloatTween__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x003CD410, bool, FloatTween_get_ignoreTimeScale, (FloatTween__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x019BF330, void, FloatTween_set_ignoreTimeScale, (FloatTween__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02BC0E20, void, FloatTween_TweenValue, (FloatTween__Boxed * __this, float floatPercentage, MethodInfo * method)); -DO_APP_FUNC(0x02BC0EB0, void, FloatTween_AddOnChangedCallback, (FloatTween__Boxed * __this, UnityAction_1_System_Single_ * callback, MethodInfo * method)); -DO_APP_FUNC(0x003CD410, bool, FloatTween_GetIgnoreTimescale, (FloatTween__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC3C0, float, FloatTween_GetDuration, (FloatTween__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C0DCF0, bool, FloatTween_ValidTarget, (FloatTween__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C43A70, float, FloatTween_get_startValue, (FloatTween * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C43A80, void, FloatTween_set_startValue, (FloatTween * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x00C43A90, float, FloatTween_get_targetValue, (FloatTween * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C43AA0, void, FloatTween_set_targetValue, (FloatTween * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x003BC3C0, float, FloatTween_get_duration, (FloatTween * __this, MethodInfo * method)); +DO_APP_FUNC(0x003CC920, void, FloatTween_set_duration, (FloatTween * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x003CD410, bool, FloatTween_get_ignoreTimeScale, (FloatTween * __this, MethodInfo * method)); +DO_APP_FUNC(0x019BF330, void, FloatTween_set_ignoreTimeScale, (FloatTween * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02BC0E20, void, FloatTween_TweenValue, (FloatTween * __this, float floatPercentage, MethodInfo * method)); +DO_APP_FUNC(0x02BC0EB0, void, FloatTween_AddOnChangedCallback, (FloatTween * __this, UnityAction_1_System_Single_ * callback, MethodInfo * method)); +DO_APP_FUNC(0x003CD410, bool, FloatTween_GetIgnoreTimescale, (FloatTween * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC3C0, float, FloatTween_GetDuration, (FloatTween * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C0DCF0, bool, FloatTween_ValidTarget, (FloatTween * __this, MethodInfo * method)); DO_APP_FUNC(0x02BC0FC0, void, FloatTween_FloatTweenCallback__ctor, (FloatTween_FloatTweenCallback * __this, MethodInfo * method)); DO_APP_FUNC(0x02BC1000, GameObject *, TMP_DefaultControls_CreateUIElementRoot, (String * name, Vector2 size, MethodInfo * method)); DO_APP_FUNC(0x02BC10F0, GameObject *, TMP_DefaultControls_CreateUIObject, (String * name, GameObject * parent, MethodInfo * method)); @@ -83851,8 +95338,8 @@ DO_APP_FUNC(0x02BCDBC0, void, TMP_FontAsset_SortAllTables, (TMP_FontAsset * __th DO_APP_FUNC(0x02BCDC00, bool, TMP_FontAsset_HasCharacter, (TMP_FontAsset * __this, int32_t character, MethodInfo * method)); DO_APP_FUNC(0x02BCDC80, bool, TMP_FontAsset_HasCharacter_1, (TMP_FontAsset * __this, uint16_t character, bool searchFallbacks, bool tryAddCharacter, MethodInfo * method)); DO_APP_FUNC(0x02BCE550, bool, TMP_FontAsset_HasCharacter_Internal, (TMP_FontAsset * __this, uint32_t character, bool searchFallbacks, bool tryAddCharacter, MethodInfo * method)); -DO_APP_FUNC(0x02BCE8D0, bool, TMP_FontAsset_HasCharacters, (TMP_FontAsset * __this, String * text, List_1_System_Char_ * missingCharacters, MethodInfo * method)); -DO_APP_FUNC(0x02BCEB10, bool, TMP_FontAsset_HasCharacters_1, (TMP_FontAsset * __this, String * text, UInt32__Array * missingCharacters, bool searchFallbacks, bool tryAddCharacter, MethodInfo * method)); +DO_APP_FUNC(0x02BCE8D0, bool, TMP_FontAsset_HasCharacters, (TMP_FontAsset * __this, String * text, List_1_System_Char_ * * missingCharacters, MethodInfo * method)); +DO_APP_FUNC(0x02BCEB10, bool, TMP_FontAsset_HasCharacters_1, (TMP_FontAsset * __this, String * text, UInt32__Array * * missingCharacters, bool searchFallbacks, bool tryAddCharacter, MethodInfo * method)); DO_APP_FUNC(0x02BCF500, bool, TMP_FontAsset_HasCharacters_2, (TMP_FontAsset * __this, String * text, MethodInfo * method)); DO_APP_FUNC(0x02BCF5E0, String *, TMP_FontAsset_GetCharacters, (TMP_FontAsset * fontAsset, MethodInfo * method)); DO_APP_FUNC(0x02BCF770, Int32__Array *, TMP_FontAsset_GetCharactersArray, (TMP_FontAsset * fontAsset, MethodInfo * method)); @@ -83862,11 +95349,11 @@ DO_APP_FUNC(0x02BCFAF0, void, TMP_FontAsset_UpdateFontFeaturesForFontAssetsInQue DO_APP_FUNC(0x02BCFCA0, void, TMP_FontAsset_RegisterFontAssetForAtlasTextureUpdate, (TMP_FontAsset * fontAsset, MethodInfo * method)); DO_APP_FUNC(0x02BCFDC0, void, TMP_FontAsset_UpdateAtlasTexturesForFontAssetsInQueue, (MethodInfo * method)); DO_APP_FUNC(0x02BCFF50, bool, TMP_FontAsset_TryAddCharacters, (TMP_FontAsset * __this, UInt32__Array * unicodes, bool includeFontFeatures, MethodInfo * method)); -DO_APP_FUNC(0x02BCFF80, bool, TMP_FontAsset_TryAddCharacters_1, (TMP_FontAsset * __this, UInt32__Array * unicodes, UInt32__Array * missingUnicodes, bool includeFontFeatures, MethodInfo * method)); +DO_APP_FUNC(0x02BCFF80, bool, TMP_FontAsset_TryAddCharacters_1, (TMP_FontAsset * __this, UInt32__Array * unicodes, UInt32__Array * * missingUnicodes, bool includeFontFeatures, MethodInfo * method)); DO_APP_FUNC(0x02BD0DF0, bool, TMP_FontAsset_TryAddCharacters_2, (TMP_FontAsset * __this, String * characters, bool includeFontFeatures, MethodInfo * method)); -DO_APP_FUNC(0x02BD0E20, bool, TMP_FontAsset_TryAddCharacters_3, (TMP_FontAsset * __this, String * characters, String * missingCharacters, bool includeFontFeatures, MethodInfo * method)); -DO_APP_FUNC(0x02BD1D10, bool, TMP_FontAsset_TryAddCharacterInternal, (TMP_FontAsset * __this, uint32_t unicode, TMP_Character * character, MethodInfo * method)); -DO_APP_FUNC(0x02BD2760, bool, TMP_FontAsset_TryGetCharacter_and_QueueRenderToTexture, (TMP_FontAsset * __this, uint32_t unicode, TMP_Character * character, MethodInfo * method)); +DO_APP_FUNC(0x02BD0E20, bool, TMP_FontAsset_TryAddCharacters_3, (TMP_FontAsset * __this, String * characters, String * * missingCharacters, bool includeFontFeatures, MethodInfo * method)); +DO_APP_FUNC(0x02BD1D10, bool, TMP_FontAsset_TryAddCharacterInternal, (TMP_FontAsset * __this, uint32_t unicode, TMP_Character * * character, MethodInfo * method)); +DO_APP_FUNC(0x02BD2760, bool, TMP_FontAsset_TryGetCharacter_and_QueueRenderToTexture, (TMP_FontAsset * __this, uint32_t unicode, TMP_Character * * character, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TMP_FontAsset_TryAddGlyphsToAtlasTextures, (TMP_FontAsset * __this, MethodInfo * method)); DO_APP_FUNC(0x02BD2DC0, bool, TMP_FontAsset_TryAddGlyphsToNewAtlasTexture, (TMP_FontAsset * __this, MethodInfo * method)); DO_APP_FUNC(0x02BD32A0, void, TMP_FontAsset_SetupNewAtlasTexture, (TMP_FontAsset * __this, MethodInfo * method)); @@ -83893,9 +95380,9 @@ DO_APP_FUNC_METHODINFO(0x03CA30B8, TMP_FontAsset_c__SortGlyphTable_b__125_0__Met DO_APP_FUNC(0x003AE050, void, FaceInfo_Legacy__ctor, (FaceInfo_Legacy * __this, MethodInfo * method)); DO_APP_FUNC(0x02BD6F50, TMP_Glyph *, TMP_Glyph_Clone, (TMP_Glyph * source, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TMP_Glyph__ctor, (TMP_Glyph * __this, MethodInfo * method)); -DO_APP_FUNC(0x02BD6FE0, void, FontAssetCreationSettings__ctor, (FontAssetCreationSettings__Boxed * __this, String * sourceFontFileGUID, int32_t pointSize, int32_t pointSizeSamplingMode, int32_t padding, int32_t packingMode, int32_t atlasWidth, int32_t atlasHeight, int32_t characterSelectionMode, String * characterSet, int32_t renderMode, MethodInfo * method)); -DO_APP_FUNC(0x02BD7250, void, KerningPairKey__ctor, (KerningPairKey__Boxed * __this, uint32_t ascii_left, uint32_t ascii_right, MethodInfo * method)); -DO_APP_FUNC(0x02BD7270, void, GlyphValueRecord_Legacy__ctor, (GlyphValueRecord_Legacy__Boxed * __this, GlyphValueRecord valueRecord, MethodInfo * method)); +DO_APP_FUNC(0x02BD6FE0, void, FontAssetCreationSettings__ctor, (FontAssetCreationSettings * __this, String * sourceFontFileGUID, int32_t pointSize, int32_t pointSizeSamplingMode, int32_t padding, int32_t packingMode, int32_t atlasWidth, int32_t atlasHeight, int32_t characterSelectionMode, String * characterSet, int32_t renderMode, MethodInfo * method)); +DO_APP_FUNC(0x02BD7250, void, KerningPairKey__ctor, (KerningPairKey * __this, uint32_t ascii_left, uint32_t ascii_right, MethodInfo * method)); +DO_APP_FUNC(0x02BD7270, void, GlyphValueRecord_Legacy__ctor, (GlyphValueRecord_Legacy * __this, GlyphValueRecord valueRecord, MethodInfo * method)); DO_APP_FUNC(0x02071A50, GlyphValueRecord_Legacy, GlyphValueRecord_Legacy_op_Addition, (GlyphValueRecord_Legacy a, GlyphValueRecord_Legacy b, MethodInfo * method)); DO_APP_FUNC(0x003BCD50, uint32_t, KerningPair_get_firstGlyph, (KerningPair * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, KerningPair_set_firstGlyph, (KerningPair * __this, uint32_t value, MethodInfo * method)); @@ -83931,36 +95418,36 @@ DO_APP_FUNC(0x01F6EA10, uint32_t, KerningTable_c__SortKerningPairs_b__7_0, (Kern DO_APP_FUNC_METHODINFO(0x03CA2988, KerningTable_c__SortKerningPairs_b__7_0__MethodInfo); DO_APP_FUNC(0x00C667A0, uint32_t, KerningTable_c__SortKerningPairs_b__7_1, (KerningTable_c * __this, KerningPair * s, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA2998, KerningTable_c__SortKerningPairs_b__7_1__MethodInfo); -DO_APP_FUNC(0x02BD7FD0, TMP_FontAsset *, TMP_FontUtilities_SearchForCharacter, (TMP_FontAsset * font, uint32_t unicode, TMP_Character * character, MethodInfo * method)); -DO_APP_FUNC(0x02BD8120, TMP_FontAsset *, TMP_FontUtilities_SearchForCharacter_1, (List_1_TMPro_TMP_FontAsset_ * fonts, uint32_t unicode, TMP_Character * character, MethodInfo * method)); -DO_APP_FUNC(0x02BD8130, TMP_FontAsset *, TMP_FontUtilities_SearchForCharacterInternal, (TMP_FontAsset * font, uint32_t unicode, TMP_Character * character, MethodInfo * method)); -DO_APP_FUNC(0x02BD85D0, TMP_FontAsset *, TMP_FontUtilities_SearchForCharacterInternal_1, (List_1_TMPro_TMP_FontAsset_ * fonts, uint32_t unicode, TMP_Character * character, MethodInfo * method)); +DO_APP_FUNC(0x02BD7FD0, TMP_FontAsset *, TMP_FontUtilities_SearchForCharacter, (TMP_FontAsset * font, uint32_t unicode, TMP_Character * * character, MethodInfo * method)); +DO_APP_FUNC(0x02BD8120, TMP_FontAsset *, TMP_FontUtilities_SearchForCharacter_1, (List_1_TMPro_TMP_FontAsset_ * fonts, uint32_t unicode, TMP_Character * * character, MethodInfo * method)); +DO_APP_FUNC(0x02BD8130, TMP_FontAsset *, TMP_FontUtilities_SearchForCharacterInternal, (TMP_FontAsset * font, uint32_t unicode, TMP_Character * * character, MethodInfo * method)); +DO_APP_FUNC(0x02BD85D0, TMP_FontAsset *, TMP_FontUtilities_SearchForCharacterInternal_1, (List_1_TMPro_TMP_FontAsset_ * fonts, uint32_t unicode, TMP_Character * * character, MethodInfo * method)); DO_APP_FUNC(0x02BD87E0, void, TMP_FontAssetUtilities__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02BD8890, TMP_FontAssetUtilities *, TMP_FontAssetUtilities_get_instance, (MethodInfo * method)); -DO_APP_FUNC(0x02BD88F0, TMP_Character *, TMP_FontAssetUtilities_GetCharacterFromFontAsset, (uint32_t unicode, TMP_FontAsset * sourceFontAsset, bool includeFallbacks, FontStyles__Enum fontStyle, FontWeight__Enum fontWeight, bool isAlternativeTypeface, MethodInfo * method)); -DO_APP_FUNC(0x02BD8AD0, TMP_Character *, TMP_FontAssetUtilities_GetCharacterFromFontAsset_Internal, (uint32_t unicode, TMP_FontAsset * sourceFontAsset, bool includeFallbacks, FontStyles__Enum fontStyle, FontWeight__Enum fontWeight, bool isAlternativeTypeface, MethodInfo * method)); -DO_APP_FUNC(0x02BD9090, TMP_Character *, TMP_FontAssetUtilities_GetCharacterFromFontAssets, (uint32_t unicode, TMP_FontAsset * sourceFontAsset, List_1_TMPro_TMP_FontAsset_ * fontAssets, bool includeFallbacks, FontStyles__Enum fontStyle, FontWeight__Enum fontWeight, bool isAlternativeTypeface, MethodInfo * method)); +DO_APP_FUNC(0x02BD88F0, TMP_Character *, TMP_FontAssetUtilities_GetCharacterFromFontAsset, (uint32_t unicode, TMP_FontAsset * sourceFontAsset, bool includeFallbacks, FontStyles__Enum fontStyle, FontWeight__Enum fontWeight, bool * isAlternativeTypeface, MethodInfo * method)); +DO_APP_FUNC(0x02BD8AD0, TMP_Character *, TMP_FontAssetUtilities_GetCharacterFromFontAsset_Internal, (uint32_t unicode, TMP_FontAsset * sourceFontAsset, bool includeFallbacks, FontStyles__Enum fontStyle, FontWeight__Enum fontWeight, bool * isAlternativeTypeface, MethodInfo * method)); +DO_APP_FUNC(0x02BD9090, TMP_Character *, TMP_FontAssetUtilities_GetCharacterFromFontAssets, (uint32_t unicode, TMP_FontAsset * sourceFontAsset, List_1_TMPro_TMP_FontAsset_ * fontAssets, bool includeFallbacks, FontStyles__Enum fontStyle, FontWeight__Enum fontWeight, bool * isAlternativeTypeface, MethodInfo * method)); DO_APP_FUNC(0x02BD9420, TMP_SpriteCharacter *, TMP_FontAssetUtilities_GetSpriteCharacterFromSpriteAsset, (uint32_t unicode, TMP_SpriteAsset * spriteAsset, bool includeFallbacks, MethodInfo * method)); DO_APP_FUNC(0x02BD9920, TMP_SpriteCharacter *, TMP_FontAssetUtilities_GetSpriteCharacterFromSpriteAsset_Internal, (uint32_t unicode, TMP_SpriteAsset * spriteAsset, bool includeFallbacks, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TMP_FontAssetUtilities__ctor, (TMP_FontAssetUtilities * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BCBB00, float, TMP_GlyphValueRecord_get_xPlacement, (TMP_GlyphValueRecord__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C42840, void, TMP_GlyphValueRecord_set_xPlacement, (TMP_GlyphValueRecord__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x00C4B940, float, TMP_GlyphValueRecord_get_yPlacement, (TMP_GlyphValueRecord__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C7A0F0, void, TMP_GlyphValueRecord_set_yPlacement, (TMP_GlyphValueRecord__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x00C43A70, float, TMP_GlyphValueRecord_get_xAdvance, (TMP_GlyphValueRecord__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C43A80, void, TMP_GlyphValueRecord_set_xAdvance, (TMP_GlyphValueRecord__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x00C43A90, float, TMP_GlyphValueRecord_get_yAdvance, (TMP_GlyphValueRecord__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C43AA0, void, TMP_GlyphValueRecord_set_yAdvance, (TMP_GlyphValueRecord__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x003CAFE0, void, TMP_GlyphValueRecord__ctor, (TMP_GlyphValueRecord__Boxed * __this, float xPlacement, float yPlacement, float xAdvance, float yAdvance, MethodInfo * method)); -DO_APP_FUNC(0x02BD9C10, void, TMP_GlyphValueRecord__ctor_1, (TMP_GlyphValueRecord__Boxed * __this, GlyphValueRecord_Legacy valueRecord, MethodInfo * method)); -DO_APP_FUNC(0x02BD7270, void, TMP_GlyphValueRecord__ctor_2, (TMP_GlyphValueRecord__Boxed * __this, GlyphValueRecord valueRecord, MethodInfo * method)); +DO_APP_FUNC(0x00BCBB00, float, TMP_GlyphValueRecord_get_xPlacement, (TMP_GlyphValueRecord * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C42840, void, TMP_GlyphValueRecord_set_xPlacement, (TMP_GlyphValueRecord * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x00C4B940, float, TMP_GlyphValueRecord_get_yPlacement, (TMP_GlyphValueRecord * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C7A0F0, void, TMP_GlyphValueRecord_set_yPlacement, (TMP_GlyphValueRecord * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x00C43A70, float, TMP_GlyphValueRecord_get_xAdvance, (TMP_GlyphValueRecord * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C43A80, void, TMP_GlyphValueRecord_set_xAdvance, (TMP_GlyphValueRecord * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x00C43A90, float, TMP_GlyphValueRecord_get_yAdvance, (TMP_GlyphValueRecord * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C43AA0, void, TMP_GlyphValueRecord_set_yAdvance, (TMP_GlyphValueRecord * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x003CAFE0, void, TMP_GlyphValueRecord__ctor, (TMP_GlyphValueRecord * __this, float xPlacement, float yPlacement, float xAdvance, float yAdvance, MethodInfo * method)); +DO_APP_FUNC(0x02BD9C10, void, TMP_GlyphValueRecord__ctor_1, (TMP_GlyphValueRecord * __this, GlyphValueRecord_Legacy valueRecord, MethodInfo * method)); +DO_APP_FUNC(0x02BD7270, void, TMP_GlyphValueRecord__ctor_2, (TMP_GlyphValueRecord * __this, GlyphValueRecord valueRecord, MethodInfo * method)); DO_APP_FUNC(0x02BD9C30, TMP_GlyphValueRecord, TMP_GlyphValueRecord_op_Addition, (TMP_GlyphValueRecord a, TMP_GlyphValueRecord b, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, uint32_t, TMP_GlyphAdjustmentRecord_get_glyphIndex, (TMP_GlyphAdjustmentRecord__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00959BA0, void, TMP_GlyphAdjustmentRecord_set_glyphIndex, (TMP_GlyphAdjustmentRecord__Boxed * __this, uint32_t value, MethodInfo * method)); -DO_APP_FUNC(0x0171BD20, TMP_GlyphValueRecord, TMP_GlyphAdjustmentRecord_get_glyphValueRecord, (TMP_GlyphAdjustmentRecord__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02BD9C50, void, TMP_GlyphAdjustmentRecord_set_glyphValueRecord, (TMP_GlyphAdjustmentRecord__Boxed * __this, TMP_GlyphValueRecord value, MethodInfo * method)); -DO_APP_FUNC(0x0171BD10, void, TMP_GlyphAdjustmentRecord__ctor, (TMP_GlyphAdjustmentRecord__Boxed * __this, uint32_t glyphIndex, TMP_GlyphValueRecord glyphValueRecord, MethodInfo * method)); -DO_APP_FUNC(0x02BD9C60, void, TMP_GlyphAdjustmentRecord__ctor_1, (TMP_GlyphAdjustmentRecord__Boxed * __this, GlyphAdjustmentRecord adjustmentRecord, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, uint32_t, TMP_GlyphAdjustmentRecord_get_glyphIndex, (TMP_GlyphAdjustmentRecord * __this, MethodInfo * method)); +DO_APP_FUNC(0x00959BA0, void, TMP_GlyphAdjustmentRecord_set_glyphIndex, (TMP_GlyphAdjustmentRecord * __this, uint32_t value, MethodInfo * method)); +DO_APP_FUNC(0x0171BD20, TMP_GlyphValueRecord, TMP_GlyphAdjustmentRecord_get_glyphValueRecord, (TMP_GlyphAdjustmentRecord * __this, MethodInfo * method)); +DO_APP_FUNC(0x02BD9C50, void, TMP_GlyphAdjustmentRecord_set_glyphValueRecord, (TMP_GlyphAdjustmentRecord * __this, TMP_GlyphValueRecord value, MethodInfo * method)); +DO_APP_FUNC(0x0171BD10, void, TMP_GlyphAdjustmentRecord__ctor, (TMP_GlyphAdjustmentRecord * __this, uint32_t glyphIndex, TMP_GlyphValueRecord glyphValueRecord, MethodInfo * method)); +DO_APP_FUNC(0x02BD9C60, void, TMP_GlyphAdjustmentRecord__ctor_1, (TMP_GlyphAdjustmentRecord * __this, GlyphAdjustmentRecord adjustmentRecord, MethodInfo * method)); DO_APP_FUNC(0x0146B4C0, TMP_GlyphAdjustmentRecord, TMP_GlyphPairAdjustmentRecord_get_firstAdjustmentRecord, (TMP_GlyphPairAdjustmentRecord * __this, MethodInfo * method)); DO_APP_FUNC(0x02649F50, void, TMP_GlyphPairAdjustmentRecord_set_firstAdjustmentRecord, (TMP_GlyphPairAdjustmentRecord * __this, TMP_GlyphAdjustmentRecord value, MethodInfo * method)); DO_APP_FUNC(0x02BD9CB0, TMP_GlyphAdjustmentRecord, TMP_GlyphPairAdjustmentRecord_get_secondAdjustmentRecord, (TMP_GlyphPairAdjustmentRecord * __this, MethodInfo * method)); @@ -83969,8 +95456,8 @@ DO_APP_FUNC(0x009F7E90, FontFeatureLookupFlags__Enum, TMP_GlyphPairAdjustmentRec DO_APP_FUNC(0x01A71040, void, TMP_GlyphPairAdjustmentRecord_set_featureLookupFlags, (TMP_GlyphPairAdjustmentRecord * __this, FontFeatureLookupFlags__Enum value, MethodInfo * method)); DO_APP_FUNC(0x02BD9CE0, void, TMP_GlyphPairAdjustmentRecord__ctor, (TMP_GlyphPairAdjustmentRecord * __this, TMP_GlyphAdjustmentRecord firstAdjustmentRecord, TMP_GlyphAdjustmentRecord secondAdjustmentRecord, MethodInfo * method)); DO_APP_FUNC(0x02BD9D10, void, TMP_GlyphPairAdjustmentRecord__ctor_1, (TMP_GlyphPairAdjustmentRecord * __this, GlyphPairAdjustmentRecord glyphPairAdjustmentRecord, MethodInfo * method)); -DO_APP_FUNC(0x02BD9DC0, void, GlyphPairKey__ctor, (GlyphPairKey__Boxed * __this, uint32_t firstGlyphIndex, uint32_t secondGlyphIndex, MethodInfo * method)); -DO_APP_FUNC(0x02BD9DE0, void, GlyphPairKey__ctor_1, (GlyphPairKey__Boxed * __this, TMP_GlyphPairAdjustmentRecord * record, MethodInfo * method)); +DO_APP_FUNC(0x02BD9DC0, void, GlyphPairKey__ctor, (GlyphPairKey * __this, uint32_t firstGlyphIndex, uint32_t secondGlyphIndex, MethodInfo * method)); +DO_APP_FUNC(0x02BD9DE0, void, GlyphPairKey__ctor_1, (GlyphPairKey * __this, TMP_GlyphPairAdjustmentRecord * record, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, List_1_TMPro_TMP_GlyphPairAdjustmentRecord_ *, TMP_FontFeatureTable_get_glyphPairAdjustmentRecords, (TMP_FontFeatureTable * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, TMP_FontFeatureTable_set_glyphPairAdjustmentRecords, (TMP_FontFeatureTable * __this, List_1_TMPro_TMP_GlyphPairAdjustmentRecord_ * value, MethodInfo * method)); DO_APP_FUNC(0x02BD9E10, void, TMP_FontFeatureTable__ctor, (TMP_FontFeatureTable * __this, MethodInfo * method)); @@ -84070,8 +95557,8 @@ DO_APP_FUNC(0x02BDCBE0, bool, TMP_InputField_get_multiLine, (TMP_InputField * __ DO_APP_FUNC(0x02BDCC00, uint16_t, TMP_InputField_get_asteriskChar, (TMP_InputField * __this, MethodInfo * method)); DO_APP_FUNC(0x02BDCC10, void, TMP_InputField_set_asteriskChar, (TMP_InputField * __this, uint16_t value, MethodInfo * method)); DO_APP_FUNC(0x02BDCD40, bool, TMP_InputField_get_wasCanceled, (TMP_InputField * __this, MethodInfo * method)); -DO_APP_FUNC(0x02BDCD50, void, TMP_InputField_ClampStringPos, (TMP_InputField * __this, int32_t pos, MethodInfo * method)); -DO_APP_FUNC(0x02BDCD90, void, TMP_InputField_ClampCaretPos, (TMP_InputField * __this, int32_t pos, MethodInfo * method)); +DO_APP_FUNC(0x02BDCD50, void, TMP_InputField_ClampStringPos, (TMP_InputField * __this, int32_t * pos, MethodInfo * method)); +DO_APP_FUNC(0x02BDCD90, void, TMP_InputField_ClampCaretPos, (TMP_InputField * __this, int32_t * pos, MethodInfo * method)); DO_APP_FUNC(0x02BDCDF0, int32_t, TMP_InputField_get_caretPositionInternal, (TMP_InputField * __this, MethodInfo * method)); DO_APP_FUNC(0x02BDCE30, void, TMP_InputField_set_caretPositionInternal, (TMP_InputField * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x02BDCEA0, int32_t, TMP_InputField_get_stringPositionInternal, (TMP_InputField * __this, MethodInfo * method)); @@ -84233,7 +95720,7 @@ DO_APP_FUNC(0x003BB3D0, Object *, TMP_InputField_MouseDragOutsideRect_d_294_Syst DO_APP_FUNC(0x02C0F440, void, TMP_InputField_MouseDragOutsideRect_d_294_System_Collections_IEnumerator_Reset, (TMP_InputField_MouseDragOutsideRect_d_294 * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7468, TMP_InputField_MouseDragOutsideRect_d_294_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, TMP_InputField_MouseDragOutsideRect_d_294_System_Collections_IEnumerator_get_Current, (TMP_InputField_MouseDragOutsideRect_d_294 * __this, MethodInfo * method)); -DO_APP_FUNC(0x02C0F490, bool, SetPropertyUtility_SetColor, (Color currentValue, Color newValue, MethodInfo * method)); +DO_APP_FUNC(0x02C0F490, bool, SetPropertyUtility_SetColor, (Color * currentValue, Color newValue, MethodInfo * method)); DO_APP_FUNC(0x003BA2A0, void, TMP_InputValidator__ctor, (TMP_InputValidator * __this, MethodInfo * method)); DO_APP_FUNC(0x02C0F4D0, void, TMP_MaterialManager__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02C0F870, void, TMP_MaterialManager_OnPreRender, (MethodInfo * method)); @@ -84270,23 +95757,23 @@ DO_APP_FUNC_METHODINFO(0x03CA72B8, TMP_MaterialManager_c_DisplayClass12_0__Remov DO_APP_FUNC(0x003AE050, void, TMP_MaterialManager_c_DisplayClass13_0__ctor, (TMP_MaterialManager_c_DisplayClass13_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x02C13E80, bool, TMP_MaterialManager_c_DisplayClass13_0__ReleaseBaseMaterial_b__0, (TMP_MaterialManager_c_DisplayClass13_0 * __this, TMP_MaterialManager_MaskingMaterial * item, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7360, TMP_MaterialManager_c_DisplayClass13_0__ReleaseBaseMaterial_b__0__MethodInfo); -DO_APP_FUNC(0x02C14030, void, TMP_MeshInfo__ctor, (TMP_MeshInfo__Boxed * __this, Mesh * mesh, int32_t size, MethodInfo * method)); -DO_APP_FUNC(0x02C14AA0, void, TMP_MeshInfo__ctor_1, (TMP_MeshInfo__Boxed * __this, Mesh * mesh, int32_t size, bool isVolumetric, MethodInfo * method)); -DO_APP_FUNC(0x02C15980, void, TMP_MeshInfo_ResizeMeshInfo, (TMP_MeshInfo__Boxed * __this, int32_t size, MethodInfo * method)); -DO_APP_FUNC(0x02C160D0, void, TMP_MeshInfo_ResizeMeshInfo_1, (TMP_MeshInfo__Boxed * __this, int32_t size, bool isVolumetric, MethodInfo * method)); -DO_APP_FUNC(0x02C16EA0, void, TMP_MeshInfo_Clear, (TMP_MeshInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02C17040, void, TMP_MeshInfo_Clear_1, (TMP_MeshInfo__Boxed * __this, bool uploadChanges, MethodInfo * method)); -DO_APP_FUNC(0x02C172F0, void, TMP_MeshInfo_ClearUnusedVertices, (TMP_MeshInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02C17330, void, TMP_MeshInfo_ClearUnusedVertices_1, (TMP_MeshInfo__Boxed * __this, int32_t startIndex, MethodInfo * method)); -DO_APP_FUNC(0x02C17370, void, TMP_MeshInfo_ClearUnusedVertices_2, (TMP_MeshInfo__Boxed * __this, int32_t startIndex, bool updateMesh, MethodInfo * method)); -DO_APP_FUNC(0x02C17530, void, TMP_MeshInfo_SortGeometry, (TMP_MeshInfo__Boxed * __this, VertexSortingOrder__Enum order, MethodInfo * method)); -DO_APP_FUNC(0x02C175E0, void, TMP_MeshInfo_SortGeometry_1, (TMP_MeshInfo__Boxed * __this, IList_1_System_Int32_ * sortingOrder, MethodInfo * method)); -DO_APP_FUNC(0x02C17730, void, TMP_MeshInfo_SwapVertexData, (TMP_MeshInfo__Boxed * __this, int32_t src, int32_t dst, MethodInfo * method)); +DO_APP_FUNC(0x02C14030, void, TMP_MeshInfo__ctor, (TMP_MeshInfo * __this, Mesh * mesh, int32_t size, MethodInfo * method)); +DO_APP_FUNC(0x02C14AA0, void, TMP_MeshInfo__ctor_1, (TMP_MeshInfo * __this, Mesh * mesh, int32_t size, bool isVolumetric, MethodInfo * method)); +DO_APP_FUNC(0x02C15980, void, TMP_MeshInfo_ResizeMeshInfo, (TMP_MeshInfo * __this, int32_t size, MethodInfo * method)); +DO_APP_FUNC(0x02C160D0, void, TMP_MeshInfo_ResizeMeshInfo_1, (TMP_MeshInfo * __this, int32_t size, bool isVolumetric, MethodInfo * method)); +DO_APP_FUNC(0x02C16EA0, void, TMP_MeshInfo_Clear, (TMP_MeshInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x02C17040, void, TMP_MeshInfo_Clear_1, (TMP_MeshInfo * __this, bool uploadChanges, MethodInfo * method)); +DO_APP_FUNC(0x02C172F0, void, TMP_MeshInfo_ClearUnusedVertices, (TMP_MeshInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x02C17330, void, TMP_MeshInfo_ClearUnusedVertices_1, (TMP_MeshInfo * __this, int32_t startIndex, MethodInfo * method)); +DO_APP_FUNC(0x02C17370, void, TMP_MeshInfo_ClearUnusedVertices_2, (TMP_MeshInfo * __this, int32_t startIndex, bool updateMesh, MethodInfo * method)); +DO_APP_FUNC(0x02C17530, void, TMP_MeshInfo_SortGeometry, (TMP_MeshInfo * __this, VertexSortingOrder__Enum order, MethodInfo * method)); +DO_APP_FUNC(0x02C175E0, void, TMP_MeshInfo_SortGeometry_1, (TMP_MeshInfo * __this, IList_1_System_Int32_ * sortingOrder, MethodInfo * method)); +DO_APP_FUNC(0x02C17730, void, TMP_MeshInfo_SwapVertexData, (TMP_MeshInfo * __this, int32_t src, int32_t dst, MethodInfo * method)); DO_APP_FUNC(0x02C17F20, void, TMP_MeshInfo__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02C17FD0, void, TMP_ResourceManager__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02C18220, TMP_Settings *, TMP_ResourceManager_GetTextSettings, (MethodInfo * method)); DO_APP_FUNC(0x02C18420, void, TMP_ResourceManager_AddFontAsset, (TMP_FontAsset * fontAsset, MethodInfo * method)); -DO_APP_FUNC(0x02C18590, bool, TMP_ResourceManager_TryGetFontAsset, (int32_t hashcode, TMP_FontAsset * fontAsset, MethodInfo * method)); +DO_APP_FUNC(0x02C18590, bool, TMP_ResourceManager_TryGetFontAsset, (int32_t hashcode, TMP_FontAsset * * fontAsset, MethodInfo * method)); DO_APP_FUNC(0x02C18680, void, TMP_ResourceManager_RebuildFontAssetCache, (int32_t instanceID, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TMP_ResourceManager__ctor, (TMP_ResourceManager * __this, MethodInfo * method)); DO_APP_FUNC(0x02C187D0, void, TMP_ScrollbarEventHandler_OnPointerClick, (TMP_ScrollbarEventHandler * __this, PointerEventData * eventData, MethodInfo * method)); @@ -84383,12 +95870,12 @@ DO_APP_FUNC(0x02C1F980, void, TMP_SpriteAsset_UpdateLookupTables, (TMP_SpriteAss DO_APP_FUNC(0x02C20230, int32_t, TMP_SpriteAsset_GetSpriteIndexFromHashcode, (TMP_SpriteAsset * __this, int32_t hashCode, MethodInfo * method)); DO_APP_FUNC(0x02C202F0, int32_t, TMP_SpriteAsset_GetSpriteIndexFromUnicode, (TMP_SpriteAsset * __this, uint32_t unicode, MethodInfo * method)); DO_APP_FUNC(0x02C20390, int32_t, TMP_SpriteAsset_GetSpriteIndexFromName, (TMP_SpriteAsset * __this, String * name, MethodInfo * method)); -DO_APP_FUNC(0x02C20450, TMP_SpriteAsset *, TMP_SpriteAsset_SearchForSpriteByUnicode, (TMP_SpriteAsset * spriteAsset, uint32_t unicode, bool includeFallbacks, int32_t spriteIndex, MethodInfo * method)); -DO_APP_FUNC(0x02C207F0, TMP_SpriteAsset *, TMP_SpriteAsset_SearchForSpriteByUnicodeInternal, (List_1_TMPro_TMP_SpriteAsset_ * spriteAssets, uint32_t unicode, bool includeFallbacks, int32_t spriteIndex, MethodInfo * method)); -DO_APP_FUNC(0x02C20B10, TMP_SpriteAsset *, TMP_SpriteAsset_SearchForSpriteByUnicodeInternal_1, (TMP_SpriteAsset * spriteAsset, uint32_t unicode, bool includeFallbacks, int32_t spriteIndex, MethodInfo * method)); -DO_APP_FUNC(0x02C20BD0, TMP_SpriteAsset *, TMP_SpriteAsset_SearchForSpriteByHashCode, (TMP_SpriteAsset * spriteAsset, int32_t hashCode, bool includeFallbacks, int32_t spriteIndex, MethodInfo * method)); -DO_APP_FUNC(0x02C21140, TMP_SpriteAsset *, TMP_SpriteAsset_SearchForSpriteByHashCodeInternal, (List_1_TMPro_TMP_SpriteAsset_ * spriteAssets, int32_t hashCode, bool searchFallbacks, int32_t spriteIndex, MethodInfo * method)); -DO_APP_FUNC(0x02C21460, TMP_SpriteAsset *, TMP_SpriteAsset_SearchForSpriteByHashCodeInternal_1, (TMP_SpriteAsset * spriteAsset, int32_t hashCode, bool searchFallbacks, int32_t spriteIndex, MethodInfo * method)); +DO_APP_FUNC(0x02C20450, TMP_SpriteAsset *, TMP_SpriteAsset_SearchForSpriteByUnicode, (TMP_SpriteAsset * spriteAsset, uint32_t unicode, bool includeFallbacks, int32_t * spriteIndex, MethodInfo * method)); +DO_APP_FUNC(0x02C207F0, TMP_SpriteAsset *, TMP_SpriteAsset_SearchForSpriteByUnicodeInternal, (List_1_TMPro_TMP_SpriteAsset_ * spriteAssets, uint32_t unicode, bool includeFallbacks, int32_t * spriteIndex, MethodInfo * method)); +DO_APP_FUNC(0x02C20B10, TMP_SpriteAsset *, TMP_SpriteAsset_SearchForSpriteByUnicodeInternal_1, (TMP_SpriteAsset * spriteAsset, uint32_t unicode, bool includeFallbacks, int32_t * spriteIndex, MethodInfo * method)); +DO_APP_FUNC(0x02C20BD0, TMP_SpriteAsset *, TMP_SpriteAsset_SearchForSpriteByHashCode, (TMP_SpriteAsset * spriteAsset, int32_t hashCode, bool includeFallbacks, int32_t * spriteIndex, MethodInfo * method)); +DO_APP_FUNC(0x02C21140, TMP_SpriteAsset *, TMP_SpriteAsset_SearchForSpriteByHashCodeInternal, (List_1_TMPro_TMP_SpriteAsset_ * spriteAssets, int32_t hashCode, bool searchFallbacks, int32_t * spriteIndex, MethodInfo * method)); +DO_APP_FUNC(0x02C21460, TMP_SpriteAsset *, TMP_SpriteAsset_SearchForSpriteByHashCodeInternal_1, (TMP_SpriteAsset * spriteAsset, int32_t hashCode, bool searchFallbacks, int32_t * spriteIndex, MethodInfo * method)); DO_APP_FUNC(0x02C21520, void, TMP_SpriteAsset_SortGlyphTable, (TMP_SpriteAsset * __this, MethodInfo * method)); DO_APP_FUNC(0x02C21770, void, TMP_SpriteAsset_SortCharacterTable, (TMP_SpriteAsset * __this, MethodInfo * method)); DO_APP_FUNC(0x02C219C0, void, TMP_SpriteAsset_SortGlyphAndCharacterTables, (TMP_SpriteAsset * __this, MethodInfo * method)); @@ -84727,18 +96214,18 @@ DO_APP_FUNC(0x02BF4370, void, TMP_Text_SetText_12, (TMP_Text * __this, Char__Arr DO_APP_FUNC(0x02BF42F0, void, TMP_Text_SetCharArray, (TMP_Text * __this, Char__Array * sourceText, MethodInfo * method)); DO_APP_FUNC(0x02BF4370, void, TMP_Text_SetCharArray_1, (TMP_Text * __this, Char__Array * sourceText, int32_t start, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x02BF43E0, TMP_Style *, TMP_Text_GetStyle, (TMP_Text * __this, int32_t hashCode, MethodInfo * method)); -DO_APP_FUNC(0x02BF4620, bool, TMP_Text_ReplaceOpeningStyleTag, (TMP_Text * __this, TMP_Text_TextBackingContainer sourceText, int32_t srcIndex, int32_t srcOffset, TMP_Text_UnicodeChar__Array * charBuffer, int32_t writeIndex, MethodInfo * method)); -DO_APP_FUNC(0x02BF4AA0, bool, TMP_Text_ReplaceOpeningStyleTag_1, (TMP_Text * __this, Int32__Array * sourceText, int32_t srcIndex, int32_t srcOffset, TMP_Text_UnicodeChar__Array * charBuffer, int32_t writeIndex, MethodInfo * method)); -DO_APP_FUNC(0x02BF4F20, void, TMP_Text_ReplaceClosingStyleTag, (TMP_Text * __this, TMP_Text_TextBackingContainer sourceText, int32_t srcIndex, TMP_Text_UnicodeChar__Array * charBuffer, int32_t writeIndex, MethodInfo * method)); -DO_APP_FUNC(0x02BF52D0, void, TMP_Text_ReplaceClosingStyleTag_1, (TMP_Text * __this, Int32__Array * sourceText, int32_t srcIndex, TMP_Text_UnicodeChar__Array * charBuffer, int32_t writeIndex, MethodInfo * method)); -DO_APP_FUNC(0x02BF5680, bool, TMP_Text_InsertOpeningStyleTag, (TMP_Text * __this, TMP_Style * style, int32_t srcIndex, TMP_Text_UnicodeChar__Array * charBuffer, int32_t writeIndex, MethodInfo * method)); -DO_APP_FUNC(0x02BF5A30, void, TMP_Text_InsertClosingStyleTag, (TMP_Text * __this, TMP_Text_UnicodeChar__Array * charBuffer, int32_t writeIndex, MethodInfo * method)); +DO_APP_FUNC(0x02BF4620, bool, TMP_Text_ReplaceOpeningStyleTag, (TMP_Text * __this, TMP_Text_TextBackingContainer * sourceText, int32_t srcIndex, int32_t * srcOffset, TMP_Text_UnicodeChar__Array * * charBuffer, int32_t * writeIndex, MethodInfo * method)); +DO_APP_FUNC(0x02BF4AA0, bool, TMP_Text_ReplaceOpeningStyleTag_1, (TMP_Text * __this, Int32__Array * * sourceText, int32_t srcIndex, int32_t * srcOffset, TMP_Text_UnicodeChar__Array * * charBuffer, int32_t * writeIndex, MethodInfo * method)); +DO_APP_FUNC(0x02BF4F20, void, TMP_Text_ReplaceClosingStyleTag, (TMP_Text * __this, TMP_Text_TextBackingContainer * sourceText, int32_t srcIndex, TMP_Text_UnicodeChar__Array * * charBuffer, int32_t * writeIndex, MethodInfo * method)); +DO_APP_FUNC(0x02BF52D0, void, TMP_Text_ReplaceClosingStyleTag_1, (TMP_Text * __this, Int32__Array * * sourceText, int32_t srcIndex, TMP_Text_UnicodeChar__Array * * charBuffer, int32_t * writeIndex, MethodInfo * method)); +DO_APP_FUNC(0x02BF5680, bool, TMP_Text_InsertOpeningStyleTag, (TMP_Text * __this, TMP_Style * style, int32_t srcIndex, TMP_Text_UnicodeChar__Array * * charBuffer, int32_t * writeIndex, MethodInfo * method)); +DO_APP_FUNC(0x02BF5A30, void, TMP_Text_InsertClosingStyleTag, (TMP_Text * __this, TMP_Text_UnicodeChar__Array * * charBuffer, int32_t * writeIndex, MethodInfo * method)); DO_APP_FUNC(0x02BF5DC0, int32_t, TMP_Text_GetMarkupTagHashCode, (TMP_Text * __this, Int32__Array * tagDefinition, int32_t readIndex, MethodInfo * method)); DO_APP_FUNC(0x02BF5E80, int32_t, TMP_Text_GetMarkupTagHashCode_1, (TMP_Text * __this, TMP_Text_TextBackingContainer tagDefinition, int32_t readIndex, MethodInfo * method)); -DO_APP_FUNC(0x02BF5F50, int32_t, TMP_Text_GetStyleHashCode, (TMP_Text * __this, Int32__Array * text, int32_t index, int32_t closeIndex, MethodInfo * method)); -DO_APP_FUNC(0x02BF6040, int32_t, TMP_Text_GetStyleHashCode_1, (TMP_Text * __this, TMP_Text_TextBackingContainer text, int32_t index, int32_t closeIndex, MethodInfo * method)); -DO_APP_FUNC(0x02BF6130, void, TMP_Text_AddFloatToInternalTextBackingArray, (TMP_Text * __this, float value, int32_t padding, int32_t precision, int32_t writeIndex, MethodInfo * method)); -DO_APP_FUNC(0x02BF6820, void, TMP_Text_AddIntegerToInternalTextBackingArray, (TMP_Text * __this, double number, int32_t padding, int32_t writeIndex, MethodInfo * method)); +DO_APP_FUNC(0x02BF5F50, int32_t, TMP_Text_GetStyleHashCode, (TMP_Text * __this, Int32__Array * * text, int32_t index, int32_t * closeIndex, MethodInfo * method)); +DO_APP_FUNC(0x02BF6040, int32_t, TMP_Text_GetStyleHashCode_1, (TMP_Text * __this, TMP_Text_TextBackingContainer * text, int32_t index, int32_t * closeIndex, MethodInfo * method)); +DO_APP_FUNC(0x02BF6130, void, TMP_Text_AddFloatToInternalTextBackingArray, (TMP_Text * __this, float value, int32_t padding, int32_t precision, int32_t * writeIndex, MethodInfo * method)); +DO_APP_FUNC(0x02BF6820, void, TMP_Text_AddIntegerToInternalTextBackingArray, (TMP_Text * __this, double number, int32_t padding, int32_t * writeIndex, MethodInfo * method)); DO_APP_FUNC(0x02BF6A20, String *, TMP_Text_InternalTextBackingArrayToString, (TMP_Text * __this, MethodInfo * method)); DO_APP_FUNC(0x003CB690, int32_t, TMP_Text_SetArraySizes, (TMP_Text * __this, TMP_Text_UnicodeChar__Array * unicodeChars, MethodInfo * method)); DO_APP_FUNC(0x02BF6AF0, Vector2, TMP_Text_GetPreferredValues, (TMP_Text * __this, MethodInfo * method)); @@ -84755,7 +96242,7 @@ DO_APP_FUNC(0x02BF1F90, float, TMP_Text_GetRenderedWidth, (TMP_Text * __this, Me DO_APP_FUNC(0x02BF7460, float, TMP_Text_GetRenderedWidth_1, (TMP_Text * __this, bool onlyVisibleCharacters, MethodInfo * method)); DO_APP_FUNC(0x02BF1FC0, float, TMP_Text_GetRenderedHeight, (TMP_Text * __this, MethodInfo * method)); DO_APP_FUNC(0x02BF7490, float, TMP_Text_GetRenderedHeight_1, (TMP_Text * __this, bool onlyVisibleCharacters, MethodInfo * method)); -DO_APP_FUNC(0x02BF74C0, Vector2, TMP_Text_CalculatePreferredValues, (TMP_Text * __this, float fontSize, Vector2 marginSize, bool isTextAutoSizingEnabled, bool isWordWrappingEnabled, MethodInfo * method)); +DO_APP_FUNC(0x02BF74C0, Vector2, TMP_Text_CalculatePreferredValues, (TMP_Text * __this, float * fontSize, Vector2 marginSize, bool isTextAutoSizingEnabled, bool isWordWrappingEnabled, MethodInfo * method)); DO_APP_FUNC(0x0121A100, Bounds, TMP_Text_GetCompoundBounds, (TMP_Text * __this, MethodInfo * method)); DO_APP_FUNC(0x00A9AD90, Rect, TMP_Text_GetCanvasSpaceClippingRect, (TMP_Text * __this, MethodInfo * method)); DO_APP_FUNC(0x02BFA3E0, Bounds, TMP_Text_GetTextBounds, (TMP_Text * __this, MethodInfo * method)); @@ -84764,23 +96251,23 @@ DO_APP_FUNC(0x02BFA940, void, TMP_Text_AdjustLineOffset, (TMP_Text * __this, int DO_APP_FUNC(0x02BFADE0, void, TMP_Text_ResizeLineExtents, (TMP_Text * __this, int32_t size, MethodInfo * method)); DO_APP_FUNC(0x003CB690, TMP_TextInfo *, TMP_Text_GetTextInfo, (TMP_Text * __this, String * text, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TMP_Text_ComputeMarginSize, (TMP_Text * __this, MethodInfo * method)); -DO_APP_FUNC(0x02BFB0D0, void, TMP_Text_InsertNewLine, (TMP_Text * __this, int32_t i, float baseScale, float currentElementScale, float currentEmScale, float glyphAdjustment, float boldSpacingAdjustment, float characterSpacingAdjustment, float width, float lineGap, bool isMaxVisibleDescenderSet, float maxVisibleDescender, MethodInfo * method)); -DO_APP_FUNC(0x02BFB9E0, void, TMP_Text_SaveWordWrappingState, (TMP_Text * __this, WordWrapState state, int32_t index, int32_t count, MethodInfo * method)); -DO_APP_FUNC(0x02BFC3D0, int32_t, TMP_Text_RestoreWordWrappingState, (TMP_Text * __this, WordWrapState state, MethodInfo * method)); +DO_APP_FUNC(0x02BFB0D0, void, TMP_Text_InsertNewLine, (TMP_Text * __this, int32_t i, float baseScale, float currentElementScale, float currentEmScale, float glyphAdjustment, float boldSpacingAdjustment, float characterSpacingAdjustment, float width, float lineGap, bool * isMaxVisibleDescenderSet, float * maxVisibleDescender, MethodInfo * method)); +DO_APP_FUNC(0x02BFB9E0, void, TMP_Text_SaveWordWrappingState, (TMP_Text * __this, WordWrapState * state, int32_t index, int32_t count, MethodInfo * method)); +DO_APP_FUNC(0x02BFC3D0, int32_t, TMP_Text_RestoreWordWrappingState, (TMP_Text * __this, WordWrapState * state, MethodInfo * method)); DO_APP_FUNC(0x02BFCE10, void, TMP_Text_SaveGlyphVertexInfo, (TMP_Text * __this, float padding, float style_padding, Color32 vertexColor, MethodInfo * method)); DO_APP_FUNC(0x02BFE330, void, TMP_Text_SaveSpriteVertexInfo, (TMP_Text * __this, Color32 vertexColor, MethodInfo * method)); DO_APP_FUNC(0x02BFEE50, void, TMP_Text_FillCharacterVertexBuffers, (TMP_Text * __this, int32_t i, int32_t index_X4, MethodInfo * method)); DO_APP_FUNC(0x02BFF780, void, TMP_Text_FillCharacterVertexBuffers_1, (TMP_Text * __this, int32_t i, int32_t index_X4, bool isVolumetric, MethodInfo * method)); DO_APP_FUNC(0x02C00620, void, TMP_Text_FillSpriteVertexBuffers, (TMP_Text * __this, int32_t i, int32_t index_X4, MethodInfo * method)); -DO_APP_FUNC(0x02C00F50, void, TMP_Text_DrawUnderlineMesh, (TMP_Text * __this, Vector3 start, Vector3 end, int32_t index, float startScale, float endScale, float maxScale, float sdfScale, Color32 underlineColor, MethodInfo * method)); -DO_APP_FUNC(0x02C01DF0, void, TMP_Text_DrawTextHighlight, (TMP_Text * __this, Vector3 start, Vector3 end, int32_t index, Color32 highlightColor, MethodInfo * method)); +DO_APP_FUNC(0x02C00F50, void, TMP_Text_DrawUnderlineMesh, (TMP_Text * __this, Vector3 start, Vector3 end, int32_t * index, float startScale, float endScale, float maxScale, float sdfScale, Color32 underlineColor, MethodInfo * method)); +DO_APP_FUNC(0x02C01DF0, void, TMP_Text_DrawTextHighlight, (TMP_Text * __this, Vector3 start, Vector3 end, int32_t * index, Color32 highlightColor, MethodInfo * method)); DO_APP_FUNC(0x02C02350, void, TMP_Text_LoadDefaultSettings, (TMP_Text * __this, MethodInfo * method)); DO_APP_FUNC(0x02C02940, void, TMP_Text_GetSpecialCharacters, (TMP_Text * __this, TMP_FontAsset * fontAsset, MethodInfo * method)); DO_APP_FUNC(0x02C02970, void, TMP_Text_GetEllipsisSpecialCharacter, (TMP_Text * __this, TMP_FontAsset * fontAsset, MethodInfo * method)); DO_APP_FUNC(0x02C02DB0, void, TMP_Text_GetUnderlineSpecialCharacter, (TMP_Text * __this, TMP_FontAsset * fontAsset, MethodInfo * method)); DO_APP_FUNC(0x02C02FE0, void, TMP_Text_ReplaceTagWithCharacter, (TMP_Text * __this, Int32__Array * chars, int32_t insertionIndex, int32_t tagLength, uint16_t c, MethodInfo * method)); DO_APP_FUNC(0x02C03040, TMP_FontAsset *, TMP_Text_GetFontAssetForWeight, (TMP_Text * __this, int32_t fontWeight, MethodInfo * method)); -DO_APP_FUNC(0x02C030D0, TMP_TextElement *, TMP_Text_GetTextElement, (TMP_Text * __this, uint32_t unicode, TMP_FontAsset * fontAsset, FontStyles__Enum fontStyle, FontWeight__Enum fontWeight, bool isUsingAlternativeTypeface, MethodInfo * method)); +DO_APP_FUNC(0x02C030D0, TMP_TextElement *, TMP_Text_GetTextElement, (TMP_Text * __this, uint32_t unicode, TMP_FontAsset * fontAsset, FontStyles__Enum fontStyle, FontWeight__Enum fontWeight, bool * isUsingAlternativeTypeface, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TMP_Text_SetActiveSubMeshes, (TMP_Text * __this, bool state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TMP_Text_DestroySubMeshObjects, (TMP_Text * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TMP_Text_ClearMesh, (TMP_Text * __this, MethodInfo * method)); @@ -84804,21 +96291,21 @@ DO_APP_FUNC(0x02C045B0, int32_t, TMP_Text_GetUTF32_3, (TMP_Text * __this, String DO_APP_FUNC(0x02C04740, int32_t, TMP_Text_GetUTF32_4, (TMP_Text * __this, TMP_Text_TextBackingContainer text, int32_t i, MethodInfo * method)); DO_APP_FUNC(0x02C048F0, Color32, TMP_Text_HexCharsToColor, (TMP_Text * __this, Char__Array * hexChars, int32_t tagCount, MethodInfo * method)); DO_APP_FUNC(0x02C04EC0, Color32, TMP_Text_HexCharsToColor_1, (TMP_Text * __this, Char__Array * hexChars, int32_t startIndex, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x02C05190, int32_t, TMP_Text_GetAttributeParameters, (TMP_Text * __this, Char__Array * chars, int32_t startIndex, int32_t length, Single__Array * parameters, MethodInfo * method)); +DO_APP_FUNC(0x02C05190, int32_t, TMP_Text_GetAttributeParameters, (TMP_Text * __this, Char__Array * chars, int32_t startIndex, int32_t length, Single__Array * * parameters, MethodInfo * method)); DO_APP_FUNC(0x02C05380, float, TMP_Text_ConvertToFloat, (TMP_Text * __this, Char__Array * chars, int32_t startIndex, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x02C053B0, float, TMP_Text_ConvertToFloat_1, (TMP_Text * __this, Char__Array * chars, int32_t startIndex, int32_t length, int32_t lastIndex, MethodInfo * method)); -DO_APP_FUNC(0x02C05530, bool, TMP_Text_ValidateHtmlTag, (TMP_Text * __this, TMP_Text_UnicodeChar__Array * chars, int32_t startIndex, int32_t endIndex, MethodInfo * method)); +DO_APP_FUNC(0x02C053B0, float, TMP_Text_ConvertToFloat_1, (TMP_Text * __this, Char__Array * chars, int32_t startIndex, int32_t length, int32_t * lastIndex, MethodInfo * method)); +DO_APP_FUNC(0x02C05530, bool, TMP_Text_ValidateHtmlTag, (TMP_Text * __this, TMP_Text_UnicodeChar__Array * chars, int32_t startIndex, int32_t * endIndex, MethodInfo * method)); DO_APP_FUNC(0x02C0CCD0, void, TMP_Text__ctor, (TMP_Text * __this, MethodInfo * method)); DO_APP_FUNC(0x02C0E1A0, void, TMP_Text__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x00977B80, void, TMP_Text_CharacterSubstitution__ctor, (TMP_Text_CharacterSubstitution__Boxed * __this, int32_t index, uint32_t unicode, MethodInfo * method)); -DO_APP_FUNC(0x02C29230, void, TMP_Text_SpecialCharacter__ctor, (TMP_Text_SpecialCharacter__Boxed * __this, TMP_Character * character, int32_t materialIndex, MethodInfo * method)); -DO_APP_FUNC(0x0144C360, int32_t, TMP_Text_TextBackingContainer_get_Capacity, (TMP_Text_TextBackingContainer__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471920, int32_t, TMP_Text_TextBackingContainer_get_Count, (TMP_Text_TextBackingContainer__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018C6CC0, void, TMP_Text_TextBackingContainer_set_Count, (TMP_Text_TextBackingContainer__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x02C294D0, uint32_t, TMP_Text_TextBackingContainer_get_Item, (TMP_Text_TextBackingContainer__Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x02C29500, void, TMP_Text_TextBackingContainer_set_Item, (TMP_Text_TextBackingContainer__Boxed * __this, int32_t index, uint32_t value, MethodInfo * method)); -DO_APP_FUNC(0x02C29560, void, TMP_Text_TextBackingContainer__ctor, (TMP_Text_TextBackingContainer__Boxed * __this, int32_t size, MethodInfo * method)); -DO_APP_FUNC(0x02C29610, void, TMP_Text_TextBackingContainer_Resize, (TMP_Text_TextBackingContainer__Boxed * __this, int32_t size, MethodInfo * method)); +DO_APP_FUNC(0x00977B80, void, TMP_Text_CharacterSubstitution__ctor, (TMP_Text_CharacterSubstitution * __this, int32_t index, uint32_t unicode, MethodInfo * method)); +DO_APP_FUNC(0x02C29230, void, TMP_Text_SpecialCharacter__ctor, (TMP_Text_SpecialCharacter * __this, TMP_Character * character, int32_t materialIndex, MethodInfo * method)); +DO_APP_FUNC(0x0144C360, int32_t, TMP_Text_TextBackingContainer_get_Capacity, (TMP_Text_TextBackingContainer * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471920, int32_t, TMP_Text_TextBackingContainer_get_Count, (TMP_Text_TextBackingContainer * __this, MethodInfo * method)); +DO_APP_FUNC(0x018C6CC0, void, TMP_Text_TextBackingContainer_set_Count, (TMP_Text_TextBackingContainer * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x02C294D0, uint32_t, TMP_Text_TextBackingContainer_get_Item, (TMP_Text_TextBackingContainer * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x02C29500, void, TMP_Text_TextBackingContainer_set_Item, (TMP_Text_TextBackingContainer * __this, int32_t index, uint32_t value, MethodInfo * method)); +DO_APP_FUNC(0x02C29560, void, TMP_Text_TextBackingContainer__ctor, (TMP_Text_TextBackingContainer * __this, int32_t size, MethodInfo * method)); +DO_APP_FUNC(0x02C29610, void, TMP_Text_TextBackingContainer_Resize, (TMP_Text_TextBackingContainer * __this, int32_t size, MethodInfo * method)); DO_APP_FUNC(0x02C296A0, void, TMP_Text_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TMP_Text_c__ctor, (TMP_Text_c * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TMP_Text_c___ctor_b__622_0, (TMP_Text_c * __this, TMP_TextInfo * _p0_, MethodInfo * method)); @@ -84861,12 +96348,12 @@ DO_APP_FUNC(0x02C2B840, bool, TMP_TextParsingUtilities_IsHighSurrogate, (uint32_ DO_APP_FUNC(0x02C2B860, bool, TMP_TextParsingUtilities_IsLowSurrogate, (uint32_t c, MethodInfo * method)); DO_APP_FUNC(0x02C2B880, uint32_t, TMP_TextParsingUtilities_ConvertToUTF32, (uint32_t highSurrogate, uint32_t lowSurrogate, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TMP_TextParsingUtilities__ctor, (TMP_TextParsingUtilities * __this, MethodInfo * method)); -DO_APP_FUNC(0x02C2B890, void, TMP_FontStyleStack_Clear, (TMP_FontStyleStack__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02C2B8A0, uint8_t, TMP_FontStyleStack_Add, (TMP_FontStyleStack__Boxed * __this, FontStyles__Enum style, MethodInfo * method)); -DO_APP_FUNC(0x02C2B950, uint8_t, TMP_FontStyleStack_Remove, (TMP_FontStyleStack__Boxed * __this, FontStyles__Enum style, MethodInfo * method)); -DO_APP_FUNC(0x00977B80, void, CaretInfo__ctor, (CaretInfo__Boxed * __this, int32_t index, CaretPosition__Enum position, MethodInfo * method)); +DO_APP_FUNC(0x02C2B890, void, TMP_FontStyleStack_Clear, (TMP_FontStyleStack * __this, MethodInfo * method)); +DO_APP_FUNC(0x02C2B8A0, uint8_t, TMP_FontStyleStack_Add, (TMP_FontStyleStack * __this, FontStyles__Enum style, MethodInfo * method)); +DO_APP_FUNC(0x02C2B950, uint8_t, TMP_FontStyleStack_Remove, (TMP_FontStyleStack * __this, FontStyles__Enum style, MethodInfo * method)); +DO_APP_FUNC(0x00977B80, void, CaretInfo__ctor, (CaretInfo * __this, int32_t index, CaretPosition__Enum position, MethodInfo * method)); DO_APP_FUNC(0x02C2BA80, int32_t, TMP_TextUtilities_GetCursorIndexFromPosition, (TMP_Text * textComponent, Vector3 position, Camera * camera, MethodInfo * method)); -DO_APP_FUNC(0x02C2BCC0, int32_t, TMP_TextUtilities_GetCursorIndexFromPosition_1, (TMP_Text * textComponent, Vector3 position, Camera * camera, CaretPosition__Enum cursor, MethodInfo * method)); +DO_APP_FUNC(0x02C2BCC0, int32_t, TMP_TextUtilities_GetCursorIndexFromPosition_1, (TMP_Text * textComponent, Vector3 position, Camera * camera, CaretPosition__Enum * cursor, MethodInfo * method)); DO_APP_FUNC(0x02C2BFB0, int32_t, TMP_TextUtilities_FindNearestLine, (TMP_Text * text, Vector3 position, Camera * camera, MethodInfo * method)); DO_APP_FUNC(0x02C2C2B0, int32_t, TMP_TextUtilities_FindNearestCharacterOnLine, (TMP_Text * text, Vector3 position, int32_t line, Camera * camera, bool visibleOnly, MethodInfo * method)); DO_APP_FUNC(0x02C2C8D0, bool, TMP_TextUtilities_IsIntersectingRectTransform, (RectTransform * rectTransform, Vector3 position, Camera * camera, MethodInfo * method)); @@ -84878,8 +96365,8 @@ DO_APP_FUNC(0x02C2F050, int32_t, TMP_TextUtilities_FindIntersectingLine, (TMP_Te DO_APP_FUNC(0x02C2F2A0, int32_t, TMP_TextUtilities_FindIntersectingLink, (TMP_Text * text, Vector3 position, Camera * camera, MethodInfo * method)); DO_APP_FUNC(0x02C2FCD0, int32_t, TMP_TextUtilities_FindNearestLink, (TMP_Text * text, Vector3 position, Camera * camera, MethodInfo * method)); DO_APP_FUNC(0x02C30C00, bool, TMP_TextUtilities_PointIntersectRectangle, (Vector3 m, Vector3 a, Vector3 b, Vector3 c, Vector3 d, MethodInfo * method)); -DO_APP_FUNC(0x02C30DA0, bool, TMP_TextUtilities_ScreenPointToWorldPointInRectangle, (Transform * transform, Vector2 screenPoint, Camera * cam, Vector3 worldPoint, MethodInfo * method)); -DO_APP_FUNC(0x02C313A0, bool, TMP_TextUtilities_IntersectLinePlane, (TMP_TextUtilities_LineSegment line, Vector3 point, Vector3 normal, Vector3 intersectingPoint, MethodInfo * method)); +DO_APP_FUNC(0x02C30DA0, bool, TMP_TextUtilities_ScreenPointToWorldPointInRectangle, (Transform * transform, Vector2 screenPoint, Camera * cam, Vector3 * worldPoint, MethodInfo * method)); +DO_APP_FUNC(0x02C313A0, bool, TMP_TextUtilities_IntersectLinePlane, (TMP_TextUtilities_LineSegment line, Vector3 point, Vector3 normal, Vector3 * intersectingPoint, MethodInfo * method)); DO_APP_FUNC(0x02C31590, float, TMP_TextUtilities_DistanceToLine, (Vector3 a, Vector3 b, Vector3 point, MethodInfo * method)); DO_APP_FUNC(0x02C31770, uint16_t, TMP_TextUtilities_ToLowerFast, (uint16_t c, MethodInfo * method)); DO_APP_FUNC(0x02C317E0, uint16_t, TMP_TextUtilities_ToUpperFast, (uint16_t c, MethodInfo * method)); @@ -84890,7 +96377,7 @@ DO_APP_FUNC(0x02C319F0, uint32_t, TMP_TextUtilities_GetSimpleHashCodeLowercase, DO_APP_FUNC(0x02C31B10, int32_t, TMP_TextUtilities_HexToInt, (uint16_t hex, MethodInfo * method)); DO_APP_FUNC(0x02C31C20, int32_t, TMP_TextUtilities_StringHexToInt, (String * s, MethodInfo * method)); DO_APP_FUNC(0x02C31E20, void, TMP_TextUtilities__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02C31EE0, void, TMP_TextUtilities_LineSegment__ctor, (TMP_TextUtilities_LineSegment__Boxed * __this, Vector3 p1, Vector3 p2, MethodInfo * method)); +DO_APP_FUNC(0x02C31EE0, void, TMP_TextUtilities_LineSegment__ctor, (TMP_TextUtilities_LineSegment * __this, Vector3 p1, Vector3 p2, MethodInfo * method)); DO_APP_FUNC(0x02C31F00, TMP_UpdateManager *, TMP_UpdateManager_get_instance, (MethodInfo * method)); DO_APP_FUNC(0x02C32030, void, TMP_UpdateManager__ctor, (TMP_UpdateManager * __this, MethodInfo * method)); DO_APP_FUNC(0x02C324A0, void, TMP_UpdateManager_RegisterTextObjectForUpdate, (TMP_Text * textObject, MethodInfo * method)); @@ -84923,8 +96410,8 @@ DO_APP_FUNC(0x02C34270, void, TMP_UpdateRegistry_UnRegisterCanvasElementForRebui DO_APP_FUNC(0x02C34480, void, TMP_UpdateRegistry_InternalUnRegisterCanvasElementForLayoutRebuild, (TMP_UpdateRegistry * __this, ICanvasElement * element, MethodInfo * method)); DO_APP_FUNC(0x02C34580, void, TMP_UpdateRegistry_InternalUnRegisterCanvasElementForGraphicRebuild, (TMP_UpdateRegistry * __this, ICanvasElement * element, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TexturePacker_JsonArray__ctor, (TexturePacker_JsonArray * __this, MethodInfo * method)); -DO_APP_FUNC(0x02C34680, String *, TexturePacker_JsonArray_SpriteFrame_ToString, (TexturePacker_JsonArray_SpriteFrame__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02C349B0, String *, TexturePacker_JsonArray_SpriteSize_ToString, (TexturePacker_JsonArray_SpriteSize__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02C34680, String *, TexturePacker_JsonArray_SpriteFrame_ToString, (TexturePacker_JsonArray_SpriteFrame * __this, MethodInfo * method)); +DO_APP_FUNC(0x02C349B0, String *, TexturePacker_JsonArray_SpriteSize_ToString, (TexturePacker_JsonArray_SpriteSize * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TexturePacker_JsonArray_SpriteDataObject__ctor, (TexturePacker_JsonArray_SpriteDataObject * __this, MethodInfo * method)); DO_APP_FUNC(0x00A1B820, String *, SR_2_GetString, (String * name, MethodInfo * method)); DO_APP_FUNC(0x022975D0, String *, SR_2_Format, (String * resourceFormat, Object * p1, MethodInfo * method)); @@ -85189,9 +96676,9 @@ DO_APP_FUNC(0x022B1010, void, Expression_1_RequiresCanWrite, (Expression_1 * exp DO_APP_FUNC_METHODINFO(0x03C948F8, Expression_1_RequiresCanWrite__MethodInfo); DO_APP_FUNC(0x022B12B0, GotoExpression *, Expression_1_Goto, (LabelTarget * target, Expression_1 * value, MethodInfo * method)); DO_APP_FUNC(0x022B1370, GotoExpression *, Expression_1_MakeGoto, (GotoExpressionKind__Enum kind, LabelTarget * target, Expression_1 * value, Type * type, MethodInfo * method)); -DO_APP_FUNC(0x022B1590, void, Expression_1_ValidateGoto, (LabelTarget * target, Expression_1 * value, String * targetParameter, String * valueParameter, Type * type, MethodInfo * method)); +DO_APP_FUNC(0x022B1590, void, Expression_1_ValidateGoto, (LabelTarget * target, Expression_1 * * value, String * targetParameter, String * valueParameter, Type * type, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C94808, Expression_1_ValidateGoto__MethodInfo); -DO_APP_FUNC(0x022B18A0, void, Expression_1_ValidateGotoType, (Type * expectedType, Expression_1 * value, String * paramName, MethodInfo * method)); +DO_APP_FUNC(0x022B18A0, void, Expression_1_ValidateGotoType, (Type * expectedType, Expression_1 * * value, String * paramName, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C947F8, Expression_1_ValidateGotoType__MethodInfo); DO_APP_FUNC(0x022B1A10, IndexExpression *, Expression_1_MakeIndex, (Expression_1 * instance, PropertyInfo_1 * indexer, IEnumerable_1_System_Linq_Expressions_Expression_ * arguments, MethodInfo * method)); DO_APP_FUNC(0x022B1BC0, IndexExpression *, Expression_1_ArrayAccess, (Expression_1 * array, Expression_1__Array * indexes, MethodInfo * method)); @@ -85199,11 +96686,11 @@ DO_APP_FUNC(0x022B1C20, IndexExpression *, Expression_1_ArrayAccess_1, (Expressi DO_APP_FUNC_METHODINFO(0x03C94858, Expression_1_ArrayAccess_1__MethodInfo); DO_APP_FUNC(0x022B2000, IndexExpression *, Expression_1_Property, (Expression_1 * instance, PropertyInfo_1 * indexer, IEnumerable_1_System_Linq_Expressions_Expression_ * arguments, MethodInfo * method)); DO_APP_FUNC(0x022B2150, IndexExpression *, Expression_1_MakeIndexProperty, (Expression_1 * instance, PropertyInfo_1 * indexer, String * paramName, ReadOnlyCollection_1_System_Linq_Expressions_Expression_ * argList, MethodInfo * method)); -DO_APP_FUNC(0x022B2230, void, Expression_1_ValidateIndexedProperty, (Expression_1 * instance, PropertyInfo_1 * indexer, String * paramName, ReadOnlyCollection_1_System_Linq_Expressions_Expression_ * argList, MethodInfo * method)); +DO_APP_FUNC(0x022B2230, void, Expression_1_ValidateIndexedProperty, (Expression_1 * instance, PropertyInfo_1 * indexer, String * paramName, ReadOnlyCollection_1_System_Linq_Expressions_Expression_ * * argList, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C94818, Expression_1_ValidateIndexedProperty__MethodInfo); -DO_APP_FUNC(0x022B2910, void, Expression_1_ValidateAccessor, (Expression_1 * instance, MethodInfo_1 * method_1, ParameterInfo__Array * indexes, ReadOnlyCollection_1_System_Linq_Expressions_Expression_ * arguments, String * paramName, MethodInfo * method)); +DO_APP_FUNC(0x022B2910, void, Expression_1_ValidateAccessor, (Expression_1 * instance, MethodInfo_1 * method_1, ParameterInfo__Array * indexes, ReadOnlyCollection_1_System_Linq_Expressions_Expression_ * * arguments, String * paramName, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C94708, Expression_1_ValidateAccessor__MethodInfo); -DO_APP_FUNC(0x022B2BF0, void, Expression_1_ValidateAccessorArgumentTypes, (MethodInfo_1 * method_1, ParameterInfo__Array * indexes, ReadOnlyCollection_1_System_Linq_Expressions_Expression_ * arguments, String * paramName, MethodInfo * method)); +DO_APP_FUNC(0x022B2BF0, void, Expression_1_ValidateAccessorArgumentTypes, (MethodInfo_1 * method_1, ParameterInfo__Array * indexes, ReadOnlyCollection_1_System_Linq_Expressions_Expression_ * * arguments, String * paramName, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C946D8, Expression_1_ValidateAccessorArgumentTypes__MethodInfo); DO_APP_FUNC(0x022B3170, InvocationExpression *, Expression_1_Invoke, (Expression_1 * expression, Expression_1 * arg0, MethodInfo * method)); DO_APP_FUNC(0x022B3470, MethodInfo_1 *, Expression_1_GetInvokeMethod, (Expression_1 * expression, MethodInfo * method)); @@ -85213,7 +96700,7 @@ DO_APP_FUNC(0x022B3860, LabelTarget *, Expression_1_Label_1, (Type * type, Strin DO_APP_FUNC(0x022B3A20, LambdaExpression *, Expression_1_CreateLambda, (Type * delegateType, Expression_1 * body, String * name, bool tailCall, ReadOnlyCollection_1_System_Linq_Expressions_ParameterExpression_ * parameters, MethodInfo * method)); DO_APP_FUNC(0x022B4100, LambdaExpression *, Expression_1_Lambda, (Type * delegateType, Expression_1 * body, ParameterExpression__Array * parameters, MethodInfo * method)); DO_APP_FUNC(0x022B4210, LambdaExpression *, Expression_1_Lambda_1, (Type * delegateType, Expression_1 * body, String * name, bool tailCall, IEnumerable_1_System_Linq_Expressions_ParameterExpression_ * parameters, MethodInfo * method)); -DO_APP_FUNC(0x022B4300, void, Expression_1_ValidateLambdaArgs, (Type * delegateType, Expression_1 * body, ReadOnlyCollection_1_System_Linq_Expressions_ParameterExpression_ * parameters, String * paramName, MethodInfo * method)); +DO_APP_FUNC(0x022B4300, void, Expression_1_ValidateLambdaArgs, (Type * delegateType, Expression_1 * * body, ReadOnlyCollection_1_System_Linq_Expressions_ParameterExpression_ * parameters, String * paramName, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C94618, Expression_1_ValidateLambdaArgs__MethodInfo); DO_APP_FUNC(0x022B4BA0, MemberExpression *, Expression_1_Field, (Expression_1 * expression, FieldInfo_1 * field, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C944E0, Expression_1_Field__MethodInfo); @@ -85244,11 +96731,11 @@ DO_APP_FUNC(0x022B88B0, void, Expression_1_ValidateStaticOrInstanceMethod, (Expr DO_APP_FUNC_METHODINFO(0x03C94340, Expression_1_ValidateStaticOrInstanceMethod__MethodInfo); DO_APP_FUNC(0x022B89D0, void, Expression_1_ValidateCallInstanceType, (Type * instanceType, MethodInfo_1 * method_1, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C94320, Expression_1_ValidateCallInstanceType__MethodInfo); -DO_APP_FUNC(0x022B8A80, void, Expression_1_ValidateArgumentTypes, (MethodBase * method_1, ExpressionType__Enum_1 nodeKind, ReadOnlyCollection_1_System_Linq_Expressions_Expression_ * arguments, String * methodParamName, MethodInfo * method)); +DO_APP_FUNC(0x022B8A80, void, Expression_1_ValidateArgumentTypes, (MethodBase * method_1, ExpressionType__Enum_1 nodeKind, ReadOnlyCollection_1_System_Linq_Expressions_Expression_ * * arguments, String * methodParamName, MethodInfo * method)); DO_APP_FUNC(0x022B8A90, ParameterInfo__Array *, Expression_1_GetParametersForValidation, (MethodBase * method_1, ExpressionType__Enum_1 nodeKind, MethodInfo * method)); DO_APP_FUNC(0x022B8AA0, void, Expression_1_ValidateArgumentCount, (MethodBase * method_1, ExpressionType__Enum_1 nodeKind, int32_t count, ParameterInfo__Array * pis, MethodInfo * method)); DO_APP_FUNC(0x022B8AB0, Expression_1 *, Expression_1_ValidateOneArgument, (MethodBase * method_1, ExpressionType__Enum_1 nodeKind, Expression_1 * arg, ParameterInfo * pi, String * methodParamName, String * argumentParamName, MethodInfo * method)); -DO_APP_FUNC(0x022B8AF0, bool, Expression_1_TryQuote, (Type * parameterType, Expression_1 * argument, MethodInfo * method)); +DO_APP_FUNC(0x022B8AF0, bool, Expression_1_TryQuote, (Type * parameterType, Expression_1 * * argument, MethodInfo * method)); DO_APP_FUNC(0x022B8B00, MethodInfo_1 *, Expression_1_FindMethod, (Type * type, String * methodName, Type__Array * typeArgs, Expression_1__Array * args, BindingFlags__Enum flags, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C941B0, Expression_1_FindMethod__MethodInfo); DO_APP_FUNC(0x022B8E70, bool, Expression_1_IsCompatible, (MethodBase * m, Expression_1__Array * arguments, MethodInfo * method)); @@ -85324,7 +96811,7 @@ DO_APP_FUNC_METHODINFO(0x03C98718, BlockExpression_GetOrMakeExpressions__MethodI DO_APP_FUNC(0x022BED90, ReadOnlyCollection_1_System_Linq_Expressions_ParameterExpression_ *, BlockExpression_GetOrMakeVariables, (BlockExpression * __this, MethodInfo * method)); DO_APP_FUNC(0x022BEDF0, BlockExpression *, BlockExpression_Rewrite, (BlockExpression * __this, ReadOnlyCollection_1_System_Linq_Expressions_ParameterExpression_ * variables, Expression_1__Array * args, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C98700, BlockExpression_Rewrite__MethodInfo); -DO_APP_FUNC(0x022BEE20, ReadOnlyCollection_1_System_Linq_Expressions_Expression_ *, BlockExpression_ReturnReadOnlyExpressions, (BlockExpression * provider, Object * collection, MethodInfo * method)); +DO_APP_FUNC(0x022BEE20, ReadOnlyCollection_1_System_Linq_Expressions_Expression_ *, BlockExpression_ReturnReadOnlyExpressions, (BlockExpression * provider, Object * * collection, MethodInfo * method)); DO_APP_FUNC(0x022BF0E0, void, Block2__ctor, (Block2 * __this, Expression_1 * arg0, Expression_1 * arg1, MethodInfo * method)); DO_APP_FUNC(0x022BF1F0, Expression_1 *, Block2_GetExpression, (Block2 * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C986E8, Block2_GetExpression__MethodInfo); @@ -86058,8 +97545,8 @@ DO_APP_FUNC(0x003AE050, void, ArrayLengthInstruction__ctor, (ArrayLengthInstruct DO_APP_FUNC(0x022D77F0, int32_t, ArrayLengthInstruction_Run, (ArrayLengthInstruction * __this, InterpretedFrame * frame, MethodInfo * method)); DO_APP_FUNC(0x022D78B0, void, ArrayLengthInstruction__cctor, (MethodInfo * method)); DO_APP_FUNC(0x022D7960, int32_t, ConvertHelper_ToInt32NoNull, (Object * val, MethodInfo * method)); -DO_APP_FUNC(0x022D7A60, void, RuntimeLabel__ctor, (RuntimeLabel__Boxed * __this, int32_t index, int32_t continuationStackDepth, int32_t stackDepth, MethodInfo * method)); -DO_APP_FUNC(0x022D7A70, String *, RuntimeLabel_ToString, (RuntimeLabel__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x022D7A60, void, RuntimeLabel__ctor, (RuntimeLabel * __this, int32_t index, int32_t continuationStackDepth, int32_t stackDepth, MethodInfo * method)); +DO_APP_FUNC(0x022D7A70, String *, RuntimeLabel_ToString, (RuntimeLabel * __this, MethodInfo * method)); DO_APP_FUNC(0x00421680, int32_t, BranchLabel_get_LabelIndex, (BranchLabel * __this, MethodInfo * method)); DO_APP_FUNC(0x00421690, void, BranchLabel_set_LabelIndex, (BranchLabel * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x022D7BC0, bool, BranchLabel_get_HasRuntimeLabel, (BranchLabel * __this, MethodInfo * method)); @@ -86077,7 +97564,7 @@ DO_APP_FUNC(0x022D8A40, void, CallInstruction_ArrayItemSetter1, (Array * array, DO_APP_FUNC(0x022D8A70, void, CallInstruction_ArrayItemSetter2, (Array * array, int32_t index0, int32_t index1, Object * value, MethodInfo * method)); DO_APP_FUNC(0x022D8AA0, void, CallInstruction_ArrayItemSetter3, (Array * array, int32_t index0, int32_t index1, int32_t index2, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01A65FB0, int32_t, CallInstruction_get_ConsumedStack, (CallInstruction * __this, MethodInfo * method)); -DO_APP_FUNC(0x022D8AE0, bool, CallInstruction_TryGetLightLambdaTarget, (Object * instance, LightLambda * lightLambda, MethodInfo * method)); +DO_APP_FUNC(0x022D8AE0, bool, CallInstruction_TryGetLightLambdaTarget, (Object * instance, LightLambda * * lightLambda, MethodInfo * method)); DO_APP_FUNC(0x022D8CA0, Object *, CallInstruction_InterpretLambdaInvoke, (CallInstruction * __this, LightLambda * targetLambda, Object__Array * args, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CallInstruction__ctor, (CallInstruction * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, MethodInfoCallInstruction_get_ArgumentCount, (MethodInfoCallInstruction * __this, MethodInfo * method)); @@ -86437,7 +97924,7 @@ DO_APP_FUNC(0x022E7480, String *, Instruction_ToString, (Instruction * __this, M DO_APP_FUNC(0x01B165D0, String *, Instruction_ToDebugString, (Instruction * __this, int32_t instructionIndex, Object * cookie, Func_2_Int32_Int32_ * labelIndexer, IReadOnlyList_1_System_Object_ * objects, MethodInfo * method)); DO_APP_FUNC(0x022E74E0, void, Instruction_NullCheck, (Object * o, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Instruction__ctor, (Instruction * __this, MethodInfo * method)); -DO_APP_FUNC(0x022E7500, void, InstructionArray__ctor, (InstructionArray__Boxed * __this, int32_t maxStackDepth, int32_t maxContinuationDepth, Instruction__Array * instructions, Object__Array * objects, RuntimeLabel__Array * labels, List_1_KeyValuePair_2_System_Int32_System_Object_ * debugCookies, MethodInfo * method)); +DO_APP_FUNC(0x022E7500, void, InstructionArray__ctor, (InstructionArray * __this, int32_t maxStackDepth, int32_t maxContinuationDepth, Instruction__Array * instructions, Object__Array * objects, RuntimeLabel__Array * labels, List_1_KeyValuePair_2_System_Int32_System_Object_ * debugCookies, MethodInfo * method)); DO_APP_FUNC(0x022E7670, void, InstructionArray_DebugView__ctor, (InstructionArray_DebugView * __this, InstructionArray array, MethodInfo * method)); DO_APP_FUNC(0x022E77B0, InstructionList_DebugView_InstructionView__Array *, InstructionArray_DebugView_GetInstructionViews, (InstructionArray_DebugView * __this, bool includeDebugCookies, MethodInfo * method)); DO_APP_FUNC(0x022E7880, int32_t, InstructionArray_DebugView__GetInstructionViews_b__4_0, (InstructionArray_DebugView * __this, int32_t index, MethodInfo * method)); @@ -86556,8 +98043,8 @@ DO_APP_FUNC(0x022ED2B0, void, InstructionList_EmitStringSwitch, (InstructionList DO_APP_FUNC(0x022ED3D0, void, InstructionList__ctor, (InstructionList * __this, MethodInfo * method)); DO_APP_FUNC(0x022ED4A0, void, InstructionList__cctor, (MethodInfo * method)); DO_APP_FUNC(0x022ED670, InstructionList_DebugView_InstructionView__Array *, InstructionList_DebugView_GetInstructionViews, (IReadOnlyList_1_System_Linq_Expressions_Interpreter_Instruction_ * instructions, IReadOnlyList_1_System_Object_ * objects, Func_2_Int32_Int32_ * labelIndexer, IReadOnlyList_1_KeyValuePair_2_System_Int32_System_Object_ * debugCookies, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, String *, InstructionList_DebugView_InstructionView_GetValue, (InstructionList_DebugView_InstructionView__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x022EDB70, void, InstructionList_DebugView_InstructionView__ctor, (InstructionList_DebugView_InstructionView__Boxed * __this, Instruction * instruction, String * name, int32_t index, int32_t stackDepth, int32_t continuationsDepth, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, String *, InstructionList_DebugView_InstructionView_GetValue, (InstructionList_DebugView_InstructionView * __this, MethodInfo * method)); +DO_APP_FUNC(0x022EDB70, void, InstructionList_DebugView_InstructionView__ctor, (InstructionList_DebugView_InstructionView * __this, Instruction * instruction, String * name, int32_t index, int32_t stackDepth, int32_t continuationsDepth, MethodInfo * method)); DO_APP_FUNC(0x022EDC40, void, InterpretedFrame__ctor, (InterpretedFrame * __this, Interpreter * interpreter, IStrongBox__Array * closure, MethodInfo * method)); DO_APP_FUNC(0x022EDEE0, DebugInfo *, InterpretedFrame_GetDebugInfo, (InterpretedFrame * __this, int32_t instructionIndex, MethodInfo * method)); DO_APP_FUNC(0x022EE080, String *, InterpretedFrame_get_Name, (InterpretedFrame * __this, MethodInfo * method)); @@ -86625,7 +98112,7 @@ DO_APP_FUNC_METHODINFO(0x03C99D98, LabelInfo_c__ValidateJump_b__9_0__MethodInfo) DO_APP_FUNC(0x022F0FC0, void, LabelScopeInfo__ctor, (LabelScopeInfo * __this, LabelScopeInfo * parent, LabelScopeKind__Enum kind, MethodInfo * method)); DO_APP_FUNC(0x022F1020, bool, LabelScopeInfo_get_CanJumpInto, (LabelScopeInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x022F1030, bool, LabelScopeInfo_ContainsTarget, (LabelScopeInfo * __this, LabelTarget * target, MethodInfo * method)); -DO_APP_FUNC(0x022F1110, bool, LabelScopeInfo_TryGetLabelInfo, (LabelScopeInfo * __this, LabelTarget * target, LabelInfo * info, MethodInfo * method)); +DO_APP_FUNC(0x022F1110, bool, LabelScopeInfo_TryGetLabelInfo, (LabelScopeInfo * __this, LabelTarget * target, LabelInfo * * info, MethodInfo * method)); DO_APP_FUNC(0x022F11E0, void, LabelScopeInfo_AddLabelInfo, (LabelScopeInfo * __this, LabelTarget * target, LabelInfo * info, MethodInfo * method)); DO_APP_FUNC(0x0072BFF0, int32_t, LeftShiftInstruction_get_ConsumedStack, (LeftShiftInstruction * __this, MethodInfo * method)); DO_APP_FUNC(0x007205E0, int32_t, LeftShiftInstruction_get_ProducedStack, (LeftShiftInstruction * __this, MethodInfo * method)); @@ -86714,8 +98201,8 @@ DO_APP_FUNC(0x003BB3B0, ExceptionHandler__Array *, TryCatchFinallyHandler_get_Ha DO_APP_FUNC(0x019975D0, bool, TryCatchFinallyHandler_get_IsCatchBlockExist, (TryCatchFinallyHandler * __this, MethodInfo * method)); DO_APP_FUNC(0x022F6160, void, TryCatchFinallyHandler__ctor, (TryCatchFinallyHandler * __this, int32_t tryStart, int32_t tryEnd, int32_t gotoEndTargetIndex, ExceptionHandler__Array * handlers, MethodInfo * method)); DO_APP_FUNC(0x022F61E0, void, TryCatchFinallyHandler__ctor_1, (TryCatchFinallyHandler * __this, int32_t tryStart, int32_t tryEnd, int32_t gotoEndLabelIndex, int32_t finallyStart, int32_t finallyEnd, ExceptionHandler__Array * handlers, MethodInfo * method)); -DO_APP_FUNC(0x022F6260, bool, TryCatchFinallyHandler_HasHandler, (TryCatchFinallyHandler * __this, InterpretedFrame * frame, Exception * exception, ExceptionHandler * handler, Object * unwrappedException, MethodInfo * method)); -DO_APP_FUNC(0x022F64C0, bool, TryCatchFinallyHandler_FilterPasses, (InterpretedFrame * frame, Object * exception, ExceptionFilter * filter, MethodInfo * method)); +DO_APP_FUNC(0x022F6260, bool, TryCatchFinallyHandler_HasHandler, (TryCatchFinallyHandler * __this, InterpretedFrame * frame, Exception * exception, ExceptionHandler * * handler, Object * * unwrappedException, MethodInfo * method)); +DO_APP_FUNC(0x022F64C0, bool, TryCatchFinallyHandler_FilterPasses, (InterpretedFrame * frame, Object * * exception, ExceptionFilter * filter, MethodInfo * method)); DO_APP_FUNC(0x01A495D0, void, TryFaultHandler__ctor, (TryFaultHandler * __this, int32_t tryStart, int32_t tryEnd, int32_t finallyStart, int32_t finallyEnd, MethodInfo * method)); DO_APP_FUNC(0x022F6760, void, RethrowException__ctor, (RethrowException * __this, MethodInfo * method)); DO_APP_FUNC(0x022F67B0, DebugInfo *, DebugInfo_GetMatchingDebugInfo, (DebugInfo__Array * debugInfos, int32_t index, MethodInfo * method)); @@ -86724,8 +98211,8 @@ DO_APP_FUNC(0x003AE050, void, DebugInfo__ctor, (DebugInfo * __this, MethodInfo * DO_APP_FUNC(0x022F6C10, void, DebugInfo__cctor, (MethodInfo * method)); DO_APP_FUNC(0x022F6CD0, int32_t, DebugInfo_DebugInfoComparer_System_Collections_Generic_IComparer_System_Linq_Expressions_Interpreter_DebugInfo__Compare, (DebugInfo_DebugInfoComparer * __this, DebugInfo * d1, DebugInfo * d2, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, DebugInfo_DebugInfoComparer__ctor, (DebugInfo_DebugInfoComparer * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A76400, void, InterpretedFrameInfo__ctor, (InterpretedFrameInfo__Boxed * __this, String * methodName, DebugInfo * info, MethodInfo * method)); -DO_APP_FUNC(0x022F6D10, String *, InterpretedFrameInfo_ToString, (InterpretedFrameInfo__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A76400, void, InterpretedFrameInfo__ctor, (InterpretedFrameInfo * __this, String * methodName, DebugInfo * info, MethodInfo * method)); +DO_APP_FUNC(0x022F6D10, String *, InterpretedFrameInfo_ToString, (InterpretedFrameInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x022F6D90, void, LightCompiler__ctor, (LightCompiler * __this, MethodInfo * method)); DO_APP_FUNC(0x022F7390, void, LightCompiler__ctor_1, (LightCompiler * __this, LightCompiler * parent, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, InstructionList *, LightCompiler_get_Instructions, (LightCompiler * __this, MethodInfo * method)); @@ -86979,16 +98466,16 @@ DO_APP_FUNC(0x023116A0, void, LocalVariable_set_IsBoxed, (LocalVariable * __this DO_APP_FUNC(0x023116C0, bool, LocalVariable_get_InClosure, (LocalVariable * __this, MethodInfo * method)); DO_APP_FUNC(0x023116D0, void, LocalVariable__ctor, (LocalVariable * __this, int32_t index, bool closure, MethodInfo * method)); DO_APP_FUNC(0x023116E0, String *, LocalVariable_ToString, (LocalVariable * __this, MethodInfo * method)); -DO_APP_FUNC(0x0114D850, void, LocalDefinition__ctor, (LocalDefinition__Boxed * __this, int32_t localIndex, ParameterExpression * parameter, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, LocalDefinition_get_Index, (LocalDefinition__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, ParameterExpression *, LocalDefinition_get_Parameter, (LocalDefinition__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02311820, bool, LocalDefinition_Equals, (LocalDefinition__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x023118B0, int32_t, LocalDefinition_GetHashCode, (LocalDefinition__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0114D850, void, LocalDefinition__ctor, (LocalDefinition * __this, int32_t localIndex, ParameterExpression * parameter, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, LocalDefinition_get_Index, (LocalDefinition * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, ParameterExpression *, LocalDefinition_get_Parameter, (LocalDefinition * __this, MethodInfo * method)); +DO_APP_FUNC(0x02311820, bool, LocalDefinition_Equals, (LocalDefinition * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x023118B0, int32_t, LocalDefinition_GetHashCode, (LocalDefinition * __this, MethodInfo * method)); DO_APP_FUNC(0x023118F0, LocalDefinition, LocalVariables_DefineLocal, (LocalVariables * __this, ParameterExpression * variable, int32_t start, MethodInfo * method)); DO_APP_FUNC(0x02311C40, void, LocalVariables_UndefineLocal, (LocalVariables * __this, LocalDefinition definition, int32_t end, MethodInfo * method)); DO_APP_FUNC(0x02311DC0, void, LocalVariables_Box, (LocalVariables * __this, ParameterExpression * variable, InstructionList * instructions, MethodInfo * method)); DO_APP_FUNC(0x003CD280, int32_t, LocalVariables_get_LocalCount, (LocalVariables * __this, MethodInfo * method)); -DO_APP_FUNC(0x02311F40, bool, LocalVariables_TryGetLocalOrClosure, (LocalVariables * __this, ParameterExpression * var, LocalVariable * local, MethodInfo * method)); +DO_APP_FUNC(0x02311F40, bool, LocalVariables_TryGetLocalOrClosure, (LocalVariables * __this, ParameterExpression * var, LocalVariable * * local, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Dictionary_2_System_Linq_Expressions_ParameterExpression_System_Linq_Expressions_Interpreter_LocalVariable_ *, LocalVariables_get_ClosureVariables, (LocalVariables * __this, MethodInfo * method)); DO_APP_FUNC(0x023120D0, LocalVariable *, LocalVariables_AddClosureVariable, (LocalVariables * __this, ParameterExpression * variable, MethodInfo * method)); DO_APP_FUNC(0x02312270, void, LocalVariables__ctor, (LocalVariables * __this, MethodInfo * method)); @@ -87422,7 +98909,7 @@ DO_APP_FUNC_METHODINFO(0x03C9BE90, ContractUtils_RequiresNotNull__MethodInfo); DO_APP_FUNC(0x02325DB0, void, ContractUtils_RequiresNotNull_1, (Object * value, String * paramName, int32_t index, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9BE78, ContractUtils_RequiresNotNull_1__MethodInfo); DO_APP_FUNC(0x02325E30, String *, ContractUtils_GetParamName, (String * paramName, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x02325EF0, void, ExpressionUtils_ValidateArgumentTypes, (MethodBase * method_1, ExpressionType__Enum_1 nodeKind, ReadOnlyCollection_1_System_Linq_Expressions_Expression_ * arguments, String * methodParamName, MethodInfo * method)); +DO_APP_FUNC(0x02325EF0, void, ExpressionUtils_ValidateArgumentTypes, (MethodBase * method_1, ExpressionType__Enum_1 nodeKind, ReadOnlyCollection_1_System_Linq_Expressions_Expression_ * * arguments, String * methodParamName, MethodInfo * method)); DO_APP_FUNC(0x023262A0, void, ExpressionUtils_ValidateArgumentCount, (MethodBase * method_1, ExpressionType__Enum_1 nodeKind, int32_t count, ParameterInfo__Array * pis, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9BEC0, ExpressionUtils_ValidateArgumentCount__MethodInfo); DO_APP_FUNC(0x02326380, Expression_1 *, ExpressionUtils_ValidateOneArgument, (MethodBase * method_1, ExpressionType__Enum_1 nodeKind, Expression_1 * arguments, ParameterInfo * pi, String * methodParamName, String * argumentParamName, int32_t index, MethodInfo * method)); @@ -87430,7 +98917,7 @@ DO_APP_FUNC_METHODINFO(0x03C9BEB0, ExpressionUtils_ValidateOneArgument__MethodIn DO_APP_FUNC(0x02326650, void, ExpressionUtils_RequiresCanRead, (Expression_1 * expression, String * paramName, MethodInfo * method)); DO_APP_FUNC(0x02326660, void, ExpressionUtils_RequiresCanRead_1, (Expression_1 * expression, String * paramName, int32_t idx, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9BEB8, ExpressionUtils_RequiresCanRead_1__MethodInfo); -DO_APP_FUNC(0x023268A0, bool, ExpressionUtils_TryQuote, (Type * parameterType, Expression_1 * argument, MethodInfo * method)); +DO_APP_FUNC(0x023268A0, bool, ExpressionUtils_TryQuote, (Type * parameterType, Expression_1 * * argument, MethodInfo * method)); DO_APP_FUNC(0x02326A20, ParameterInfo__Array *, ExpressionUtils_GetParametersForValidation, (MethodBase * method_1, ExpressionType__Enum_1 nodeKind, MethodInfo * method)); DO_APP_FUNC(0x02326B00, void, ExpressionUtils_ValidateArgumentCount_1, (LambdaExpression * lambda, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9BE58, ExpressionUtils_ValidateArgumentCount_1__MethodInfo); @@ -87518,8 +99005,8 @@ DO_APP_FUNC(0x0232CB70, void, ReaderWriterLockSlim_ExitWriteLock, (ReaderWriterL DO_APP_FUNC_METHODINFO(0x03C9BDD8, ReaderWriterLockSlim_ExitWriteLock__MethodInfo); DO_APP_FUNC(0x0232CDB0, void, ReaderWriterLockSlim_ExitUpgradeableReadLock, (ReaderWriterLockSlim * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9BDE8, ReaderWriterLockSlim_ExitUpgradeableReadLock__MethodInfo); -DO_APP_FUNC(0x0232D130, void, ReaderWriterLockSlim_LazyCreateEvent, (ReaderWriterLockSlim * __this, EventWaitHandle * waitEvent, bool makeAutoResetEvent, MethodInfo * method)); -DO_APP_FUNC(0x0232D280, bool, ReaderWriterLockSlim_WaitOnEvent, (ReaderWriterLockSlim * __this, EventWaitHandle * waitEvent, uint32_t numWaiters, ReaderWriterLockSlim_TimeoutTracker timeout, bool isWriteWaiter, MethodInfo * method)); +DO_APP_FUNC(0x0232D130, void, ReaderWriterLockSlim_LazyCreateEvent, (ReaderWriterLockSlim * __this, EventWaitHandle * * waitEvent, bool makeAutoResetEvent, MethodInfo * method)); +DO_APP_FUNC(0x0232D280, bool, ReaderWriterLockSlim_WaitOnEvent, (ReaderWriterLockSlim * __this, EventWaitHandle * waitEvent, uint32_t * numWaiters, ReaderWriterLockSlim_TimeoutTracker timeout, bool isWriteWaiter, MethodInfo * method)); DO_APP_FUNC(0x0232D540, void, ReaderWriterLockSlim_ExitAndWakeUpAppropriateWaiters, (ReaderWriterLockSlim * __this, MethodInfo * method)); DO_APP_FUNC(0x0232D5D0, void, ReaderWriterLockSlim_ExitAndWakeUpAppropriateWaitersPreferringWriters, (ReaderWriterLockSlim * __this, MethodInfo * method)); DO_APP_FUNC(0x0232D650, void, ReaderWriterLockSlim_ExitAndWakeUpAppropriateReadWaiters, (ReaderWriterLockSlim * __this, MethodInfo * method)); @@ -87547,10 +99034,10 @@ DO_APP_FUNC(0x0232E330, int32_t, ReaderWriterLockSlim_get_RecursiveWriteCount, ( DO_APP_FUNC(0x003CD440, int32_t, ReaderWriterLockSlim_get_WaitingReadCount, (ReaderWriterLockSlim * __this, MethodInfo * method)); DO_APP_FUNC(0x003CD280, int32_t, ReaderWriterLockSlim_get_WaitingUpgradeCount, (ReaderWriterLockSlim * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, ReaderWriterLockSlim_get_WaitingWriteCount, (ReaderWriterLockSlim * __this, MethodInfo * method)); -DO_APP_FUNC(0x0232E5C0, void, ReaderWriterLockSlim_TimeoutTracker__ctor, (ReaderWriterLockSlim_TimeoutTracker__Boxed * __this, int32_t millisecondsTimeout, MethodInfo * method)); +DO_APP_FUNC(0x0232E5C0, void, ReaderWriterLockSlim_TimeoutTracker__ctor, (ReaderWriterLockSlim_TimeoutTracker * __this, int32_t millisecondsTimeout, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9C9D0, ReaderWriterLockSlim_TimeoutTracker__ctor__MethodInfo); -DO_APP_FUNC(0x0232E650, int32_t, ReaderWriterLockSlim_TimeoutTracker_get_RemainingMilliseconds, (ReaderWriterLockSlim_TimeoutTracker__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0232E6C0, bool, ReaderWriterLockSlim_TimeoutTracker_get_IsExpired, (ReaderWriterLockSlim_TimeoutTracker__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0232E650, int32_t, ReaderWriterLockSlim_TimeoutTracker_get_RemainingMilliseconds, (ReaderWriterLockSlim_TimeoutTracker * __this, MethodInfo * method)); +DO_APP_FUNC(0x0232E6C0, bool, ReaderWriterLockSlim_TimeoutTracker_get_IsExpired, (ReaderWriterLockSlim_TimeoutTracker * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, EmbeddedAttribute_2__ctor, (EmbeddedAttribute_2 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, IsUnmanagedAttribute__ctor, (IsUnmanagedAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x02ACD740, void, SceneRenderPipeline_OnEnable, (SceneRenderPipeline * __this, MethodInfo * method)); @@ -87588,18 +99075,18 @@ DO_APP_FUNC(0x02AD0C60, void, ProbeBrickIndex_UploadIndexData, (ProbeBrickIndex DO_APP_FUNC(0x02AD0C90, void, ProbeBrickIndex_Clear, (ProbeBrickIndex * __this, MethodInfo * method)); DO_APP_FUNC(0x02AD0E10, void, ProbeBrickIndex_MapBrickToVoxels, (ProbeBrickIndex * __this, ProbeBrickIndex_Brick brick, HashSet_1_UnityEngine_Vector3Int_ * voxels, MethodInfo * method)); DO_APP_FUNC(0x02AD1080, void, ProbeBrickIndex_ClearVoxel, (ProbeBrickIndex * __this, Vector3Int pos, ProbeBrickIndex_CellIndexUpdateInfo cellInfo, MethodInfo * method)); -DO_APP_FUNC(0x02AD1180, void, ProbeBrickIndex_GetRuntimeResources, (ProbeBrickIndex * __this, ProbeReferenceVolume_RuntimeResources rr, MethodInfo * method)); +DO_APP_FUNC(0x02AD1180, void, ProbeBrickIndex_GetRuntimeResources, (ProbeBrickIndex * __this, ProbeReferenceVolume_RuntimeResources * rr, MethodInfo * method)); DO_APP_FUNC(0x02AD1210, void, ProbeBrickIndex_Cleanup, (ProbeBrickIndex * __this, MethodInfo * method)); DO_APP_FUNC(0x02AD1310, int32_t, ProbeBrickIndex_MergeIndex, (ProbeBrickIndex * __this, int32_t index, int32_t size, MethodInfo * method)); -DO_APP_FUNC(0x02AD1330, bool, ProbeBrickIndex_AssignIndexChunksToCell, (ProbeBrickIndex * __this, ProbeReferenceVolume_Cell * cell, int32_t bricksCount, ProbeBrickIndex_CellIndexUpdateInfo cellUpdateInfo, MethodInfo * method)); +DO_APP_FUNC(0x02AD1330, bool, ProbeBrickIndex_AssignIndexChunksToCell, (ProbeBrickIndex * __this, ProbeReferenceVolume_Cell * cell, int32_t bricksCount, ProbeBrickIndex_CellIndexUpdateInfo * cellUpdateInfo, MethodInfo * method)); DO_APP_FUNC(0x02AD1460, void, ProbeBrickIndex_AddBricks, (ProbeBrickIndex * __this, ProbeReferenceVolume_RegId id, List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick_ * bricks, List_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * allocations, int32_t allocationSize, int32_t poolWidth, int32_t poolHeight, ProbeBrickIndex_CellIndexUpdateInfo cellInfo, MethodInfo * method)); DO_APP_FUNC(0x02AD2070, void, ProbeBrickIndex_RemoveBricks, (ProbeBrickIndex * __this, ProbeReferenceVolume_RegId id, ProbeBrickIndex_CellIndexUpdateInfo cellInfo, MethodInfo * method)); DO_APP_FUNC(0x02AD25E0, void, ProbeBrickIndex_UpdateIndexForVoxel, (ProbeBrickIndex * __this, Vector3Int voxel, ProbeBrickIndex_CellIndexUpdateInfo cellInfo, MethodInfo * method)); DO_APP_FUNC(0x02AD2940, void, ProbeBrickIndex_UpdatePhysicalIndex, (ProbeBrickIndex * __this, Vector3Int brickMin, Vector3Int brickMax, int32_t value, ProbeBrickIndex_CellIndexUpdateInfo cellInfo, MethodInfo * method)); -DO_APP_FUNC(0x02AD2D30, void, ProbeBrickIndex_ClipToIndexSpace, (ProbeBrickIndex * __this, Vector3Int pos, int32_t subdiv, Vector3Int outMinpos, Vector3Int outMaxpos, ProbeBrickIndex_CellIndexUpdateInfo cellInfo, MethodInfo * method)); +DO_APP_FUNC(0x02AD2D30, void, ProbeBrickIndex_ClipToIndexSpace, (ProbeBrickIndex * __this, Vector3Int pos, int32_t subdiv, Vector3Int * outMinpos, Vector3Int * outMaxpos, ProbeBrickIndex_CellIndexUpdateInfo cellInfo, MethodInfo * method)); DO_APP_FUNC(0x02AD2F40, void, ProbeBrickIndex_UpdateIndexForVoxel_1, (ProbeBrickIndex * __this, Vector3Int voxel, List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick_ * bricks, List_1_System_UInt16_ * indices, ProbeBrickIndex_CellIndexUpdateInfo cellInfo, MethodInfo * method)); -DO_APP_FUNC(0x0171B0D0, void, ProbeBrickIndex_Brick__ctor, (ProbeBrickIndex_Brick__Boxed * __this, Vector3Int position, int32_t subdivisionLevel, MethodInfo * method)); -DO_APP_FUNC(0x02AD33E0, bool, ProbeBrickIndex_Brick_Equals, (ProbeBrickIndex_Brick__Boxed * __this, ProbeBrickIndex_Brick other, MethodInfo * method)); +DO_APP_FUNC(0x0171B0D0, void, ProbeBrickIndex_Brick__ctor, (ProbeBrickIndex_Brick * __this, Vector3Int position, int32_t subdivisionLevel, MethodInfo * method)); +DO_APP_FUNC(0x02AD33E0, bool, ProbeBrickIndex_Brick_Equals, (ProbeBrickIndex_Brick * __this, ProbeBrickIndex_Brick other, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ProbeBrickIndex_c_DisplayClass31_0__ctor, (ProbeBrickIndex_c_DisplayClass31_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x02A67680, bool, ProbeBrickIndex_c_DisplayClass31_0__AddBricks_b__0, (ProbeBrickIndex_c_DisplayClass31_0 * __this, ProbeBrickIndex_VoxelMeta lhs, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C92DA8, ProbeBrickIndex_c_DisplayClass31_0__AddBricks_b__0__MethodInfo); @@ -87615,19 +99102,19 @@ DO_APP_FUNC(0x02AD3850, int32_t, ProbeBrickPool_GetChunkSizeInProbeCount, (Probe DO_APP_FUNC(0x007209F0, int32_t, ProbeBrickPool_GetPoolWidth, (ProbeBrickPool * __this, MethodInfo * method)); DO_APP_FUNC(0x00A9C5C0, int32_t, ProbeBrickPool_GetPoolHeight, (ProbeBrickPool * __this, MethodInfo * method)); DO_APP_FUNC(0x02AD3860, Vector3Int, ProbeBrickPool_GetPoolDimensions, (ProbeBrickPool * __this, MethodInfo * method)); -DO_APP_FUNC(0x02AD3880, void, ProbeBrickPool_GetRuntimeResources, (ProbeBrickPool * __this, ProbeReferenceVolume_RuntimeResources rr, MethodInfo * method)); +DO_APP_FUNC(0x02AD3880, void, ProbeBrickPool_GetRuntimeResources, (ProbeBrickPool * __this, ProbeReferenceVolume_RuntimeResources * rr, MethodInfo * method)); DO_APP_FUNC(0x02AD3B00, void, ProbeBrickPool_Clear, (ProbeBrickPool * __this, MethodInfo * method)); DO_APP_FUNC(0x02AD3B50, void, ProbeBrickPool_Allocate, (ProbeBrickPool * __this, int32_t numberOfBrickChunks, List_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * outAllocations, MethodInfo * method)); DO_APP_FUNC(0x02AD3D70, void, ProbeBrickPool_Deallocate, (ProbeBrickPool * __this, List_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * allocations, MethodInfo * method)); DO_APP_FUNC(0x02AD3F90, void, ProbeBrickPool_Update, (ProbeBrickPool * __this, ProbeBrickPool_DataLocation source, List_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * srcLocations, List_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * dstLocations, ProbeVolumeSHBands__Enum bands, MethodInfo * method)); DO_APP_FUNC(0x02AD43C0, Vector3Int, ProbeBrickPool_ProbeCountToDataLocSize, (int32_t numProbes, MethodInfo * method)); -DO_APP_FUNC(0x02AD4440, ProbeBrickPool_DataLocation, ProbeBrickPool_CreateDataLocation, (int32_t numProbes, bool compressed, ProbeVolumeSHBands__Enum bands, int32_t allocatedBytes, MethodInfo * method)); -DO_APP_FUNC(0x02AD4C00, void, ProbeBrickPool_SetPixel, (Color__Array * data, int32_t x, int32_t y, int32_t z, int32_t dataLocWidth, int32_t dataLocHeight, Color value, MethodInfo * method)); -DO_APP_FUNC(0x02AD4C50, void, ProbeBrickPool_FillDataLocation, (ProbeBrickPool_DataLocation loc, SphericalHarmonicsL2__Array * shl2, ProbeVolumeSHBands__Enum bands, MethodInfo * method)); -DO_APP_FUNC(0x02AD56F0, void, ProbeBrickPool_DerivePoolSizeFromBudget, (ProbeBrickPool * __this, int32_t allocationSize, ProbeVolumeTextureMemoryBudget__Enum memoryBudget, int32_t width, int32_t height, int32_t depth, MethodInfo * method)); +DO_APP_FUNC(0x02AD4440, ProbeBrickPool_DataLocation, ProbeBrickPool_CreateDataLocation, (int32_t numProbes, bool compressed, ProbeVolumeSHBands__Enum bands, int32_t * allocatedBytes, MethodInfo * method)); +DO_APP_FUNC(0x02AD4C00, void, ProbeBrickPool_SetPixel, (Color__Array * * data, int32_t x, int32_t y, int32_t z, int32_t dataLocWidth, int32_t dataLocHeight, Color value, MethodInfo * method)); +DO_APP_FUNC(0x02AD4C50, void, ProbeBrickPool_FillDataLocation, (ProbeBrickPool_DataLocation * loc, SphericalHarmonicsL2__Array * shl2, ProbeVolumeSHBands__Enum bands, MethodInfo * method)); +DO_APP_FUNC(0x02AD56F0, void, ProbeBrickPool_DerivePoolSizeFromBudget, (ProbeBrickPool * __this, int32_t allocationSize, ProbeVolumeTextureMemoryBudget__Enum memoryBudget, int32_t * width, int32_t * height, int32_t * depth, MethodInfo * method)); DO_APP_FUNC(0x02AD5710, void, ProbeBrickPool_Cleanup, (ProbeBrickPool * __this, MethodInfo * method)); -DO_APP_FUNC(0x02AD5720, int32_t, ProbeBrickPool_BrickChunkAlloc_flattenIndex, (ProbeBrickPool_BrickChunkAlloc__Boxed * __this, int32_t sx, int32_t sy, MethodInfo * method)); -DO_APP_FUNC(0x02AD5740, void, ProbeBrickPool_DataLocation_Cleanup, (ProbeBrickPool_DataLocation__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02AD5720, int32_t, ProbeBrickPool_BrickChunkAlloc_flattenIndex, (ProbeBrickPool_BrickChunkAlloc * __this, int32_t sx, int32_t sy, MethodInfo * method)); +DO_APP_FUNC(0x02AD5740, void, ProbeBrickPool_DataLocation_Cleanup, (ProbeBrickPool_DataLocation * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD50, int32_t, ProbeCellIndices_get_estimatedVMemCost, (ProbeCellIndices * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, ProbeCellIndices_set_estimatedVMemCost, (ProbeCellIndices * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x00C2F900, Vector3Int, ProbeCellIndices_GetCellIndexDimension, (ProbeCellIndices * __this, MethodInfo * method)); @@ -87638,9 +99125,9 @@ DO_APP_FUNC(0x02AD5CF0, int32_t, ProbeCellIndices_GetFlatIdxForCell, (ProbeCellI DO_APP_FUNC(0x02AD5D50, void, ProbeCellIndices_AddCell, (ProbeCellIndices * __this, int32_t cellFlatIdx, ProbeBrickIndex_CellIndexUpdateInfo cellUpdateInfo, MethodInfo * method)); DO_APP_FUNC(0x02AD6090, void, ProbeCellIndices_MarkCellAsUnloaded, (ProbeCellIndices * __this, int32_t cellFlatIdx, MethodInfo * method)); DO_APP_FUNC(0x02AD60E0, void, ProbeCellIndices_PushComputeData, (ProbeCellIndices * __this, MethodInfo * method)); -DO_APP_FUNC(0x02AD6110, void, ProbeCellIndices_GetRuntimeResources, (ProbeCellIndices * __this, ProbeReferenceVolume_RuntimeResources rr, MethodInfo * method)); +DO_APP_FUNC(0x02AD6110, void, ProbeCellIndices_GetRuntimeResources, (ProbeCellIndices * __this, ProbeReferenceVolume_RuntimeResources * rr, MethodInfo * method)); DO_APP_FUNC(0x02AD61B0, void, ProbeCellIndices_Cleanup, (ProbeCellIndices * __this, MethodInfo * method)); -DO_APP_FUNC(0x02AD62B0, void, ProbeCellIndices_IndexMetaData_Pack, (ProbeCellIndices_IndexMetaData__Boxed * __this, UInt32__Array * vals, MethodInfo * method)); +DO_APP_FUNC(0x02AD62B0, void, ProbeCellIndices_IndexMetaData_Pack, (ProbeCellIndices_IndexMetaData * __this, UInt32__Array * * vals, MethodInfo * method)); DO_APP_FUNC(0x02AD6480, void, ProbeReferenceVolume_InvalidateAllCellRefs, (ProbeReferenceVolume * __this, MethodInfo * method)); DO_APP_FUNC(0x02AD64D0, bool, ProbeReferenceVolume_get_isInitialized, (ProbeReferenceVolume * __this, MethodInfo * method)); DO_APP_FUNC(0x02AD64E0, bool, ProbeReferenceVolume_get_enabledBySRP, (ProbeReferenceVolume * __this, MethodInfo * method)); @@ -87648,7 +99135,7 @@ DO_APP_FUNC(0x02AD64F0, ProbeVolumeSHBands__Enum, ProbeReferenceVolume_get_shBan DO_APP_FUNC(0x01DCE840, ProbeVolumeTextureMemoryBudget__Enum, ProbeReferenceVolume_get_memoryBudget, (ProbeReferenceVolume * __this, MethodInfo * method)); DO_APP_FUNC(0x02AD6500, ProbeReferenceVolume *, ProbeReferenceVolume_get_instance, (MethodInfo * method)); DO_APP_FUNC(0x02AD6560, void, ProbeReferenceVolume_SetNumberOfCellsLoadedPerFrame, (ProbeReferenceVolume * __this, int32_t numberOfCells, MethodInfo * method)); -DO_APP_FUNC(0x02AD6580, void, ProbeReferenceVolume_Initialize, (ProbeReferenceVolume * __this, ProbeVolumeSystemParameters parameters, MethodInfo * method)); +DO_APP_FUNC(0x02AD6580, void, ProbeReferenceVolume_Initialize, (ProbeReferenceVolume * __this, ProbeVolumeSystemParameters * parameters, MethodInfo * method)); DO_APP_FUNC(0x02AD66B0, void, ProbeReferenceVolume_SetEnableStateFromSRP, (ProbeReferenceVolume * __this, bool srpEnablesPV, MethodInfo * method)); DO_APP_FUNC(0x02AD66C0, void, ProbeReferenceVolume_ForceSHBand, (ProbeReferenceVolume * __this, ProbeVolumeSHBands__Enum shBands, MethodInfo * method)); DO_APP_FUNC(0x02AD6720, void, ProbeReferenceVolume_Cleanup, (ProbeReferenceVolume * __this, MethodInfo * method)); @@ -87664,8 +99151,8 @@ DO_APP_FUNC(0x02AD80C0, void, ProbeReferenceVolume_SetMinBrickAndMaxSubdiv, (Pro DO_APP_FUNC(0x02AD82E0, void, ProbeReferenceVolume_LoadAsset, (ProbeReferenceVolume * __this, ProbeVolumeAsset * asset, MethodInfo * method)); DO_APP_FUNC(0x02AD8880, void, ProbeReferenceVolume_PerformPendingLoading, (ProbeReferenceVolume * __this, MethodInfo * method)); DO_APP_FUNC(0x02AD9000, void, ProbeReferenceVolume_PerformPendingDeletion, (ProbeReferenceVolume * __this, MethodInfo * method)); -DO_APP_FUNC(0x02AD9270, int32_t, ProbeReferenceVolume_GetNumberOfBricksAtSubdiv, (ProbeReferenceVolume * __this, ProbeReferenceVolume_Cell * cell, Vector3Int minValidLocalIdxAtMaxRes, Vector3Int sizeOfValidIndicesAtMaxRes, MethodInfo * method)); -DO_APP_FUNC(0x02AD9910, bool, ProbeReferenceVolume_GetCellIndexUpdate, (ProbeReferenceVolume * __this, ProbeReferenceVolume_Cell * cell, ProbeBrickIndex_CellIndexUpdateInfo cellUpdateInfo, MethodInfo * method)); +DO_APP_FUNC(0x02AD9270, int32_t, ProbeReferenceVolume_GetNumberOfBricksAtSubdiv, (ProbeReferenceVolume * __this, ProbeReferenceVolume_Cell * cell, Vector3Int * minValidLocalIdxAtMaxRes, Vector3Int * sizeOfValidIndicesAtMaxRes, MethodInfo * method)); +DO_APP_FUNC(0x02AD9910, bool, ProbeReferenceVolume_GetCellIndexUpdate, (ProbeReferenceVolume * __this, ProbeReferenceVolume_Cell * cell, ProbeBrickIndex_CellIndexUpdateInfo * cellUpdateInfo, MethodInfo * method)); DO_APP_FUNC(0x02AD9B90, void, ProbeReferenceVolume_LoadPendingCells, (ProbeReferenceVolume * __this, bool loadAll, MethodInfo * method)); DO_APP_FUNC(0x02ADA0D0, void, ProbeReferenceVolume_PerformPendingOperations, (ProbeReferenceVolume * __this, bool loadAllCells, MethodInfo * method)); DO_APP_FUNC(0x02ADA160, void, ProbeReferenceVolume_InitProbeReferenceVolume, (ProbeReferenceVolume * __this, int32_t allocationSize, ProbeVolumeTextureMemoryBudget__Enum memoryBudget, ProbeVolumeSHBands__Enum shBands, MethodInfo * method)); @@ -87686,7 +99173,7 @@ DO_APP_FUNC(0x02ADB800, float, ProbeReferenceVolume_GetDistanceBetweenProbes, (P DO_APP_FUNC(0x02ADB820, float, ProbeReferenceVolume_MinDistanceBetweenProbes, (ProbeReferenceVolume * __this, MethodInfo * method)); DO_APP_FUNC(0x01D17040, bool, ProbeReferenceVolume_DataHasBeenLoaded, (ProbeReferenceVolume * __this, MethodInfo * method)); DO_APP_FUNC(0x02ADB840, void, ProbeReferenceVolume_Clear, (ProbeReferenceVolume * __this, MethodInfo * method)); -DO_APP_FUNC(0x02ADB980, ProbeReferenceVolume_RegId, ProbeReferenceVolume_AddBricks, (ProbeReferenceVolume * __this, List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick_ * bricks, ProbeBrickPool_DataLocation dataloc, ProbeBrickIndex_CellIndexUpdateInfo cellUpdateInfo, List_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * ch_list, MethodInfo * method)); +DO_APP_FUNC(0x02ADB980, ProbeReferenceVolume_RegId, ProbeReferenceVolume_AddBricks, (ProbeReferenceVolume * __this, List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick_ * bricks, ProbeBrickPool_DataLocation dataloc, ProbeBrickIndex_CellIndexUpdateInfo cellUpdateInfo, List_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * * ch_list, MethodInfo * method)); DO_APP_FUNC(0x02ADC090, void, ProbeReferenceVolume_ReleaseBricks, (ProbeReferenceVolume * __this, ProbeReferenceVolume_RegId id, MethodInfo * method)); DO_APP_FUNC(0x02ADC380, void, ProbeReferenceVolume_UpdateConstantBuffer, (ProbeReferenceVolume * __this, CommandBuffer * cmd, ProbeVolumeShadingParameters parameters, MethodInfo * method)); DO_APP_FUNC(0x02ADC600, void, ProbeReferenceVolume_CleanupLoadedData, (ProbeReferenceVolume * __this, MethodInfo * method)); @@ -87747,20 +99234,20 @@ DO_APP_FUNC(0x02AE0450, void, ProbeReferenceVolume_Cell__ctor, (ProbeReferenceVo DO_APP_FUNC(0x003AE050, void, ProbeReferenceVolume_CellChunkInfo__ctor, (ProbeReferenceVolume_CellChunkInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x02AE0460, int32_t, ProbeReferenceVolume_CellSortInfo_CompareTo, (ProbeReferenceVolume_CellSortInfo * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ProbeReferenceVolume_CellSortInfo__ctor, (ProbeReferenceVolume_CellSortInfo * __this, MethodInfo * method)); -DO_APP_FUNC(0x02AE0510, void, ProbeReferenceVolume_Volume__ctor, (ProbeReferenceVolume_Volume__Boxed * __this, Matrix4x4 trs, float maxSubdivision, float minSubdivision, MethodInfo * method)); -DO_APP_FUNC(0x02AE0670, void, ProbeReferenceVolume_Volume__ctor_1, (ProbeReferenceVolume_Volume__Boxed * __this, Vector3 corner, Vector3 X, Vector3 Y, Vector3 Z, float maxSubdivision, float minSubdivision, MethodInfo * method)); -DO_APP_FUNC(0x02AE06D0, void, ProbeReferenceVolume_Volume__ctor_2, (ProbeReferenceVolume_Volume__Boxed * __this, ProbeReferenceVolume_Volume copy, MethodInfo * method)); -DO_APP_FUNC(0x02AE0720, Bounds, ProbeReferenceVolume_Volume_CalculateAABB, (ProbeReferenceVolume_Volume__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02AE09E0, void, ProbeReferenceVolume_Volume_CalculateCenterAndSize, (ProbeReferenceVolume_Volume__Boxed * __this, Vector3 center, Vector3 size, MethodInfo * method)); -DO_APP_FUNC(0x02AE0AF0, void, ProbeReferenceVolume_Volume_Transform, (ProbeReferenceVolume_Volume__Boxed * __this, Matrix4x4 trs, MethodInfo * method)); -DO_APP_FUNC(0x02AE0D70, String *, ProbeReferenceVolume_Volume_ToString, (ProbeReferenceVolume_Volume__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02AE1050, bool, ProbeReferenceVolume_Volume_Equals, (ProbeReferenceVolume_Volume__Boxed * __this, ProbeReferenceVolume_Volume other, MethodInfo * method)); -DO_APP_FUNC(0x00AFCF00, bool, ProbeReferenceVolume_RegId_IsValid, (ProbeReferenceVolume_RegId__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C42850, void, ProbeReferenceVolume_RegId_Invalidate, (ProbeReferenceVolume_RegId__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02AE0510, void, ProbeReferenceVolume_Volume__ctor, (ProbeReferenceVolume_Volume * __this, Matrix4x4 trs, float maxSubdivision, float minSubdivision, MethodInfo * method)); +DO_APP_FUNC(0x02AE0670, void, ProbeReferenceVolume_Volume__ctor_1, (ProbeReferenceVolume_Volume * __this, Vector3 corner, Vector3 X, Vector3 Y, Vector3 Z, float maxSubdivision, float minSubdivision, MethodInfo * method)); +DO_APP_FUNC(0x02AE06D0, void, ProbeReferenceVolume_Volume__ctor_2, (ProbeReferenceVolume_Volume * __this, ProbeReferenceVolume_Volume copy, MethodInfo * method)); +DO_APP_FUNC(0x02AE0720, Bounds, ProbeReferenceVolume_Volume_CalculateAABB, (ProbeReferenceVolume_Volume * __this, MethodInfo * method)); +DO_APP_FUNC(0x02AE09E0, void, ProbeReferenceVolume_Volume_CalculateCenterAndSize, (ProbeReferenceVolume_Volume * __this, Vector3 * center, Vector3 * size, MethodInfo * method)); +DO_APP_FUNC(0x02AE0AF0, void, ProbeReferenceVolume_Volume_Transform, (ProbeReferenceVolume_Volume * __this, Matrix4x4 trs, MethodInfo * method)); +DO_APP_FUNC(0x02AE0D70, String *, ProbeReferenceVolume_Volume_ToString, (ProbeReferenceVolume_Volume * __this, MethodInfo * method)); +DO_APP_FUNC(0x02AE1050, bool, ProbeReferenceVolume_Volume_Equals, (ProbeReferenceVolume_Volume * __this, ProbeReferenceVolume_Volume other, MethodInfo * method)); +DO_APP_FUNC(0x00AFCF00, bool, ProbeReferenceVolume_RegId_IsValid, (ProbeReferenceVolume_RegId * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C42850, void, ProbeReferenceVolume_RegId_Invalidate, (ProbeReferenceVolume_RegId * __this, MethodInfo * method)); DO_APP_FUNC(0x00AFE200, bool, ProbeReferenceVolume_RegId_op_Equality, (ProbeReferenceVolume_RegId lhs, ProbeReferenceVolume_RegId rhs, MethodInfo * method)); DO_APP_FUNC(0x00AEE320, bool, ProbeReferenceVolume_RegId_op_Inequality, (ProbeReferenceVolume_RegId lhs, ProbeReferenceVolume_RegId rhs, MethodInfo * method)); -DO_APP_FUNC(0x02AE11B0, bool, ProbeReferenceVolume_RegId_Equals, (ProbeReferenceVolume_RegId__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, ProbeReferenceVolume_RegId_GetHashCode, (ProbeReferenceVolume_RegId__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02AE11B0, bool, ProbeReferenceVolume_RegId_Equals, (ProbeReferenceVolume_RegId * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, ProbeReferenceVolume_RegId_GetHashCode, (ProbeReferenceVolume_RegId * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ProbeReferenceVolume_CellInstancedDebugProbes__ctor, (ProbeReferenceVolume_CellInstancedDebugProbes * __this, MethodInfo * method)); DO_APP_FUNC(0x02AE12A0, void, ProbeReferenceVolume_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ProbeReferenceVolume_c__ctor, (ProbeReferenceVolume_c * __this, MethodInfo * method)); @@ -87818,24 +99305,24 @@ DO_APP_FUNC(0x02AE6E20, void, ProbeVolumeSceneData_c__cctor, (MethodInfo * metho DO_APP_FUNC(0x003AE050, void, ProbeVolumeSceneData_c__ctor, (ProbeVolumeSceneData_c * __this, MethodInfo * method)); DO_APP_FUNC(0x00F84FF0, String *, ProbeVolumeSceneData_c__UpdateBakingSets_b__22_0, (ProbeVolumeSceneData_c * __this, ProbeVolumeSceneData_SerializablePVProfile s, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C91FB8, ProbeVolumeSceneData_c__UpdateBakingSets_b__22_0__MethodInfo); -DO_APP_FUNC(0x00C173D0, bool, RendererList_1_get_isValid, (RendererList_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C3C200, void, RendererList_1_set_isValid, (RendererList_1__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02AE6ED0, RendererList_1, RendererList_1_Create, (RendererListDesc_1 desc, MethodInfo * method)); +DO_APP_FUNC(0x00C173D0, bool, RendererList_1_get_isValid, (RendererList_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C3C200, void, RendererList_1_set_isValid, (RendererList_1 * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02AE6ED0, RendererList_1, RendererList_1_Create, (RendererListDesc_1 * desc, MethodInfo * method)); DO_APP_FUNC(0x02AE7680, void, RendererList_1__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02AE7740, CullingResults, RendererListDesc_1_get_cullingResult, (RendererListDesc_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02AE7750, void, RendererListDesc_1_set_cullingResult, (RendererListDesc_1__Boxed * __this, CullingResults value, MethodInfo * method)); -DO_APP_FUNC(0x003C1700, Camera *, RendererListDesc_1_get_camera, (RendererListDesc_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003C1710, void, RendererListDesc_1_set_camera, (RendererListDesc_1__Boxed * __this, Camera * value, MethodInfo * method)); -DO_APP_FUNC(0x006C4CD0, ShaderTagId, RendererListDesc_1_get_passName, (RendererListDesc_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A3BCC0, void, RendererListDesc_1_set_passName, (RendererListDesc_1__Boxed * __this, ShaderTagId value, MethodInfo * method)); -DO_APP_FUNC(0x005A9990, ShaderTagId__Array *, RendererListDesc_1_get_passNames, (RendererListDesc_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A3BD50, void, RendererListDesc_1_set_passNames, (RendererListDesc_1__Boxed * __this, ShaderTagId__Array * value, MethodInfo * method)); -DO_APP_FUNC(0x02AE7760, void, RendererListDesc_1__ctor, (RendererListDesc_1__Boxed * __this, ShaderTagId passName, CullingResults cullingResult, Camera * camera, MethodInfo * method)); -DO_APP_FUNC(0x02AE7880, void, RendererListDesc_1__ctor_1, (RendererListDesc_1__Boxed * __this, ShaderTagId__Array * passNames, CullingResults cullingResult, Camera * camera, MethodInfo * method)); -DO_APP_FUNC(0x02AE79E0, bool, RendererListDesc_1_IsValid, (RendererListDesc_1__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02AE7740, CullingResults, RendererListDesc_1_get_cullingResult, (RendererListDesc_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02AE7750, void, RendererListDesc_1_set_cullingResult, (RendererListDesc_1 * __this, CullingResults value, MethodInfo * method)); +DO_APP_FUNC(0x003C1700, Camera *, RendererListDesc_1_get_camera, (RendererListDesc_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x003C1710, void, RendererListDesc_1_set_camera, (RendererListDesc_1 * __this, Camera * value, MethodInfo * method)); +DO_APP_FUNC(0x006C4CD0, ShaderTagId, RendererListDesc_1_get_passName, (RendererListDesc_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A3BCC0, void, RendererListDesc_1_set_passName, (RendererListDesc_1 * __this, ShaderTagId value, MethodInfo * method)); +DO_APP_FUNC(0x005A9990, ShaderTagId__Array *, RendererListDesc_1_get_passNames, (RendererListDesc_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A3BD50, void, RendererListDesc_1_set_passNames, (RendererListDesc_1 * __this, ShaderTagId__Array * value, MethodInfo * method)); +DO_APP_FUNC(0x02AE7760, void, RendererListDesc_1__ctor, (RendererListDesc_1 * __this, ShaderTagId passName, CullingResults cullingResult, Camera * camera, MethodInfo * method)); +DO_APP_FUNC(0x02AE7880, void, RendererListDesc_1__ctor_1, (RendererListDesc_1 * __this, ShaderTagId__Array * passNames, CullingResults cullingResult, Camera * camera, MethodInfo * method)); +DO_APP_FUNC(0x02AE79E0, bool, RendererListDesc_1_IsValid, (RendererListDesc_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, RenderGraphContext__ctor, (RenderGraphContext * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, RenderGraphExecution__ctor, (RenderGraphExecution__Boxed * __this, RenderGraph * renderGraph, MethodInfo * method)); -DO_APP_FUNC(0x02AE7B40, void, RenderGraphExecution_Dispose, (RenderGraphExecution__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, RenderGraphExecution__ctor, (RenderGraphExecution * __this, RenderGraph * renderGraph, MethodInfo * method)); +DO_APP_FUNC(0x02AE7B40, void, RenderGraphExecution_Dispose, (RenderGraphExecution * __this, MethodInfo * method)); DO_APP_FUNC(0x02AE7B60, void, RenderGraphDebugParams_RegisterDebug, (RenderGraphDebugParams * __this, String * name, DebugUI_Panel * debugPanel, MethodInfo * method)); DO_APP_FUNC(0x02AE87C0, void, RenderGraphDebugParams_UnRegisterDebug, (RenderGraphDebugParams * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, RenderGraphDebugParams__ctor, (RenderGraphDebugParams * __this, MethodInfo * method)); @@ -87876,20 +99363,20 @@ DO_APP_FUNC(0x02AEA980, RenderGraphDebugData *, RenderGraph_GetDebugData, (Rende DO_APP_FUNC(0x02AEAA10, void, RenderGraph_EndFrame, (RenderGraph * __this, MethodInfo * method)); DO_APP_FUNC(0x02AEABA0, TextureHandle, RenderGraph_ImportTexture, (RenderGraph * __this, RTHandle * rt, MethodInfo * method)); DO_APP_FUNC(0x02AEAD80, TextureHandle, RenderGraph_ImportBackbuffer, (RenderGraph * __this, RenderTargetIdentifier rt, MethodInfo * method)); -DO_APP_FUNC(0x02AEADE0, TextureHandle, RenderGraph_CreateTexture, (RenderGraph * __this, TextureDesc desc, MethodInfo * method)); -DO_APP_FUNC(0x02AEAE20, TextureHandle, RenderGraph_CreateSharedTexture, (RenderGraph * __this, TextureDesc desc, bool explicitRelease, MethodInfo * method)); +DO_APP_FUNC(0x02AEADE0, TextureHandle, RenderGraph_CreateTexture, (RenderGraph * __this, TextureDesc * desc, MethodInfo * method)); +DO_APP_FUNC(0x02AEAE20, TextureHandle, RenderGraph_CreateSharedTexture, (RenderGraph * __this, TextureDesc * desc, bool explicitRelease, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C91CB0, RenderGraph_CreateSharedTexture__MethodInfo); DO_APP_FUNC(0x02AEAEC0, void, RenderGraph_ReleaseSharedTexture, (RenderGraph * __this, TextureHandle texture, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C91C00, RenderGraph_ReleaseSharedTexture__MethodInfo); DO_APP_FUNC(0x02AEAF50, TextureHandle, RenderGraph_CreateTexture_1, (RenderGraph * __this, TextureHandle texture, MethodInfo * method)); -DO_APP_FUNC(0x02AEB020, void, RenderGraph_CreateTextureIfInvalid, (RenderGraph * __this, TextureDesc desc, TextureHandle texture, MethodInfo * method)); +DO_APP_FUNC(0x02AEB020, void, RenderGraph_CreateTextureIfInvalid, (RenderGraph * __this, TextureDesc * desc, TextureHandle * texture, MethodInfo * method)); DO_APP_FUNC(0x02AEB100, TextureDesc, RenderGraph_GetTextureDesc, (RenderGraph * __this, TextureHandle texture, MethodInfo * method)); -DO_APP_FUNC(0x02AEB180, RendererListHandle, RenderGraph_CreateRendererList, (RenderGraph * __this, RendererListDesc desc, MethodInfo * method)); +DO_APP_FUNC(0x02AEB180, RendererListHandle, RenderGraph_CreateRendererList, (RenderGraph * __this, RendererListDesc * desc, MethodInfo * method)); DO_APP_FUNC(0x02AEB2D0, ComputeBufferHandle, RenderGraph_ImportComputeBuffer, (RenderGraph * __this, ComputeBuffer * computeBuffer, MethodInfo * method)); -DO_APP_FUNC(0x02AEB440, ComputeBufferHandle, RenderGraph_CreateComputeBuffer, (RenderGraph * __this, ComputeBufferDesc desc, MethodInfo * method)); -DO_APP_FUNC(0x02AEB470, ComputeBufferHandle, RenderGraph_CreateComputeBuffer_1, (RenderGraph * __this, ComputeBufferHandle computeBuffer, MethodInfo * method)); -DO_APP_FUNC(0x02AEB4D0, ComputeBufferDesc, RenderGraph_GetComputeBufferDesc, (RenderGraph * __this, ComputeBufferHandle computeBuffer, MethodInfo * method)); -DO_APP_FUNC(0x02AEB510, RenderGraphExecution, RenderGraph_RecordAndExecute, (RenderGraph * __this, RenderGraphParameters parameters, MethodInfo * method)); +DO_APP_FUNC(0x02AEB440, ComputeBufferHandle, RenderGraph_CreateComputeBuffer, (RenderGraph * __this, ComputeBufferDesc * desc, MethodInfo * method)); +DO_APP_FUNC(0x02AEB470, ComputeBufferHandle, RenderGraph_CreateComputeBuffer_1, (RenderGraph * __this, ComputeBufferHandle * computeBuffer, MethodInfo * method)); +DO_APP_FUNC(0x02AEB4D0, ComputeBufferDesc, RenderGraph_GetComputeBufferDesc, (RenderGraph * __this, ComputeBufferHandle * computeBuffer, MethodInfo * method)); +DO_APP_FUNC(0x02AEB510, RenderGraphExecution, RenderGraph_RecordAndExecute, (RenderGraph * __this, RenderGraphParameters * parameters, MethodInfo * method)); DO_APP_FUNC(0x02AEBAC0, void, RenderGraph_Execute, (RenderGraph * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C91C60, RenderGraph_Execute__MethodInfo); DO_APP_FUNC(0x02AEBF50, void, RenderGraph_BeginProfilingSampler, (RenderGraph * __this, ProfilingSampler * sampler, MethodInfo * method)); @@ -87910,12 +99397,12 @@ DO_APP_FUNC(0x02AED280, void, RenderGraph_InitResourceInfosData, (RenderGraph * DO_APP_FUNC(0x02AED370, void, RenderGraph_InitializeCompilationData, (RenderGraph * __this, MethodInfo * method)); DO_APP_FUNC(0x02AED620, void, RenderGraph_CountReferences, (RenderGraph * __this, MethodInfo * method)); DO_APP_FUNC(0x02AEDC90, void, RenderGraph_CullUnusedPasses, (RenderGraph * __this, MethodInfo * method)); -DO_APP_FUNC(0x02AEE1F0, void, RenderGraph_UpdatePassSynchronization, (RenderGraph * __this, RenderGraph_CompiledPassInfo currentPassInfo, RenderGraph_CompiledPassInfo producerPassInfo, int32_t currentPassIndex, int32_t lastProducer, int32_t intLastSyncIndex, MethodInfo * method)); -DO_APP_FUNC(0x02AEE210, void, RenderGraph_UpdateResourceSynchronization, (RenderGraph * __this, int32_t lastGraphicsPipeSync, int32_t lastComputePipeSync, int32_t currentPassIndex, RenderGraph_CompiledResourceInfo resource, MethodInfo * method)); -DO_APP_FUNC(0x02AEE340, int32_t, RenderGraph_GetLatestProducerIndex, (RenderGraph * __this, int32_t passIndex, RenderGraph_CompiledResourceInfo info, MethodInfo * method)); -DO_APP_FUNC(0x02AEE540, int32_t, RenderGraph_GetLatestValidReadIndex, (RenderGraph * __this, RenderGraph_CompiledResourceInfo info, MethodInfo * method)); -DO_APP_FUNC(0x02AEE630, int32_t, RenderGraph_GetFirstValidWriteIndex, (RenderGraph * __this, RenderGraph_CompiledResourceInfo info, MethodInfo * method)); -DO_APP_FUNC(0x02AEE730, int32_t, RenderGraph_GetLatestValidWriteIndex, (RenderGraph * __this, RenderGraph_CompiledResourceInfo info, MethodInfo * method)); +DO_APP_FUNC(0x02AEE1F0, void, RenderGraph_UpdatePassSynchronization, (RenderGraph * __this, RenderGraph_CompiledPassInfo * currentPassInfo, RenderGraph_CompiledPassInfo * producerPassInfo, int32_t currentPassIndex, int32_t lastProducer, int32_t * intLastSyncIndex, MethodInfo * method)); +DO_APP_FUNC(0x02AEE210, void, RenderGraph_UpdateResourceSynchronization, (RenderGraph * __this, int32_t * lastGraphicsPipeSync, int32_t * lastComputePipeSync, int32_t currentPassIndex, RenderGraph_CompiledResourceInfo * resource, MethodInfo * method)); +DO_APP_FUNC(0x02AEE340, int32_t, RenderGraph_GetLatestProducerIndex, (RenderGraph * __this, int32_t passIndex, RenderGraph_CompiledResourceInfo * info, MethodInfo * method)); +DO_APP_FUNC(0x02AEE540, int32_t, RenderGraph_GetLatestValidReadIndex, (RenderGraph * __this, RenderGraph_CompiledResourceInfo * info, MethodInfo * method)); +DO_APP_FUNC(0x02AEE630, int32_t, RenderGraph_GetFirstValidWriteIndex, (RenderGraph * __this, RenderGraph_CompiledResourceInfo * info, MethodInfo * method)); +DO_APP_FUNC(0x02AEE730, int32_t, RenderGraph_GetLatestValidWriteIndex, (RenderGraph * __this, RenderGraph_CompiledResourceInfo * info, MethodInfo * method)); DO_APP_FUNC(0x02AEE820, void, RenderGraph_CreateRendererLists, (RenderGraph * __this, MethodInfo * method)); DO_APP_FUNC(0x02AEE960, void, RenderGraph_UpdateResourceAllocationAndSynchronization, (RenderGraph * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C91A68, RenderGraph_UpdateResourceAllocationAndSynchronization__MethodInfo); @@ -87923,29 +99410,29 @@ DO_APP_FUNC(0x02AEF2B0, bool, RenderGraph_AreRendererListsEmpty, (RenderGraph * DO_APP_FUNC(0x02AEF620, void, RenderGraph_TryCullPassAtIndex, (RenderGraph * __this, int32_t passIndex, MethodInfo * method)); DO_APP_FUNC(0x02AEF720, void, RenderGraph_CullRendererLists, (RenderGraph * __this, MethodInfo * method)); DO_APP_FUNC(0x02AEF850, void, RenderGraph_CompileRenderGraph, (RenderGraph * __this, MethodInfo * method)); -DO_APP_FUNC(0x02AEFC90, RenderGraph_CompiledPassInfo, RenderGraph_CompilePassImmediatly, (RenderGraph * __this, RenderGraphPass * pass, MethodInfo * method)); +DO_APP_FUNC(0x02AEFC90, RenderGraph_CompiledPassInfo *, RenderGraph_CompilePassImmediatly, (RenderGraph * __this, RenderGraphPass * pass, MethodInfo * method)); DO_APP_FUNC(0x02AF0670, void, RenderGraph_ExecutePassImmediatly, (RenderGraph * __this, RenderGraphPass * pass, MethodInfo * method)); -DO_APP_FUNC(0x02AF06A0, void, RenderGraph_ExecuteCompiledPass, (RenderGraph * __this, RenderGraph_CompiledPassInfo passInfo, int32_t passIndex, MethodInfo * method)); +DO_APP_FUNC(0x02AF06A0, void, RenderGraph_ExecuteCompiledPass, (RenderGraph * __this, RenderGraph_CompiledPassInfo * passInfo, int32_t passIndex, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C919C0, RenderGraph_ExecuteCompiledPass__MethodInfo); DO_APP_FUNC(0x02AF0960, void, RenderGraph_ExecuteRenderGraph, (RenderGraph * __this, MethodInfo * method)); -DO_APP_FUNC(0x02AF0A60, void, RenderGraph_PreRenderPassSetRenderTargets, (RenderGraph * __this, RenderGraph_CompiledPassInfo passInfo, RenderGraphContext * rgContext, MethodInfo * method)); +DO_APP_FUNC(0x02AF0A60, void, RenderGraph_PreRenderPassSetRenderTargets, (RenderGraph * __this, RenderGraph_CompiledPassInfo * passInfo, RenderGraphContext * rgContext, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C91A38, RenderGraph_PreRenderPassSetRenderTargets__MethodInfo); -DO_APP_FUNC(0x02AF1200, void, RenderGraph_PreRenderPassExecute, (RenderGraph * __this, RenderGraph_CompiledPassInfo passInfo, RenderGraphContext * rgContext, MethodInfo * method)); -DO_APP_FUNC(0x02AF1730, void, RenderGraph_PostRenderPassExecute, (RenderGraph * __this, RenderGraph_CompiledPassInfo passInfo, RenderGraphContext * rgContext, MethodInfo * method)); +DO_APP_FUNC(0x02AF1200, void, RenderGraph_PreRenderPassExecute, (RenderGraph * __this, RenderGraph_CompiledPassInfo * passInfo, RenderGraphContext * rgContext, MethodInfo * method)); +DO_APP_FUNC(0x02AF1730, void, RenderGraph_PostRenderPassExecute, (RenderGraph * __this, RenderGraph_CompiledPassInfo * passInfo, RenderGraphContext * rgContext, MethodInfo * method)); DO_APP_FUNC(0x02AF1B30, void, RenderGraph_ClearRenderPasses, (RenderGraph * __this, MethodInfo * method)); DO_APP_FUNC(0x02AF1CD0, void, RenderGraph_ReleaseImmediateModeResources, (RenderGraph * __this, MethodInfo * method)); DO_APP_FUNC(0x02AF1EB0, void, RenderGraph_LogFrameInformation, (RenderGraph * __this, MethodInfo * method)); DO_APP_FUNC(0x02AF2070, void, RenderGraph_LogRendererListsCreation, (RenderGraph * __this, MethodInfo * method)); -DO_APP_FUNC(0x02AF21A0, void, RenderGraph_LogRenderPassBegin, (RenderGraph * __this, RenderGraph_CompiledPassInfo passInfo, MethodInfo * method)); +DO_APP_FUNC(0x02AF21A0, void, RenderGraph_LogRenderPassBegin, (RenderGraph * __this, RenderGraph_CompiledPassInfo * passInfo, MethodInfo * method)); DO_APP_FUNC(0x02AF24C0, void, RenderGraph_LogCulledPasses, (RenderGraph * __this, MethodInfo * method)); DO_APP_FUNC(0x02AF2800, ProfilingSampler *, RenderGraph_GetDefaultProfilingSampler, (RenderGraph * __this, String * name, MethodInfo * method)); -DO_APP_FUNC(0x02AF2930, void, RenderGraph_UpdateImportedResourceLifeTime, (RenderGraph * __this, RenderGraphDebugData_ResourceDebugData data, List_1_System_Int32_ * passList, MethodInfo * method)); +DO_APP_FUNC(0x02AF2930, void, RenderGraph_UpdateImportedResourceLifeTime, (RenderGraph * __this, RenderGraphDebugData_ResourceDebugData * data, List_1_System_Int32_ * passList, MethodInfo * method)); DO_APP_FUNC(0x02AF2BB0, void, RenderGraph_GenerateDebugData, (RenderGraph * __this, MethodInfo * method)); DO_APP_FUNC(0x02AF3CE0, void, RenderGraph_CleanupDebugData, (RenderGraph * __this, MethodInfo * method)); DO_APP_FUNC(0x02AF3EF0, void, RenderGraph__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02AF4060, void, RenderGraph_CompiledResourceInfo_Reset, (RenderGraph_CompiledResourceInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02AF41F0, bool, RenderGraph_CompiledPassInfo_get_allowPassCulling, (RenderGraph_CompiledPassInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02AF4210, void, RenderGraph_CompiledPassInfo_Reset, (RenderGraph_CompiledPassInfo__Boxed * __this, RenderGraphPass * pass, MethodInfo * method)); +DO_APP_FUNC(0x02AF4060, void, RenderGraph_CompiledResourceInfo_Reset, (RenderGraph_CompiledResourceInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x02AF41F0, bool, RenderGraph_CompiledPassInfo_get_allowPassCulling, (RenderGraph_CompiledPassInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x02AF4210, void, RenderGraph_CompiledPassInfo_Reset, (RenderGraph_CompiledPassInfo * __this, RenderGraphPass * pass, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, RenderGraph_ProfilingScopePassData__ctor, (RenderGraph_ProfilingScopePassData * __this, MethodInfo * method)); DO_APP_FUNC(0x0084C240, void, RenderGraph_OnGraphRegisteredDelegate__ctor, (RenderGraph_OnGraphRegisteredDelegate * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EE650, void, RenderGraph_OnGraphRegisteredDelegate_Invoke, (RenderGraph_OnGraphRegisteredDelegate * __this, RenderGraph * graph, MethodInfo * method)); @@ -87961,30 +99448,30 @@ DO_APP_FUNC(0x02AF47D0, void, RenderGraph_c__BeginProfilingSampler_b__61_0, (Ren DO_APP_FUNC_METHODINFO(0x03C91C48, RenderGraph_c__BeginProfilingSampler_b__61_0__MethodInfo); DO_APP_FUNC(0x02AF48D0, void, RenderGraph_c__EndProfilingSampler_b__62_0, (RenderGraph_c * __this, RenderGraph_ProfilingScopePassData * data, RenderGraphContext * ctx, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C91BA0, RenderGraph_c__EndProfilingSampler_b__62_0__MethodInfo); -DO_APP_FUNC(0x02AF49D0, void, RenderGraphProfilingScope__ctor, (RenderGraphProfilingScope__Boxed * __this, RenderGraph * renderGraph, ProfilingSampler * sampler, MethodInfo * method)); -DO_APP_FUNC(0x02AF4AB0, void, RenderGraphProfilingScope_Dispose, (RenderGraphProfilingScope__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02AF4AF0, void, RenderGraphProfilingScope_Dispose_1, (RenderGraphProfilingScope__Boxed * __this, bool disposing, MethodInfo * method)); -DO_APP_FUNC(0x02AF4B30, TextureHandle, RenderGraphBuilder_UseColorBuffer, (RenderGraphBuilder__Boxed * __this, TextureHandle input, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x02AF4C40, TextureHandle, RenderGraphBuilder_UseDepthBuffer, (RenderGraphBuilder__Boxed * __this, TextureHandle input, DepthAccess__Enum flags, MethodInfo * method)); -DO_APP_FUNC(0x02AF4D50, TextureHandle, RenderGraphBuilder_ReadTexture, (RenderGraphBuilder__Boxed * __this, TextureHandle input, MethodInfo * method)); -DO_APP_FUNC(0x02AF4F90, TextureHandle, RenderGraphBuilder_WriteTexture, (RenderGraphBuilder__Boxed * __this, TextureHandle input, MethodInfo * method)); -DO_APP_FUNC(0x02AF4FF0, TextureHandle, RenderGraphBuilder_ReadWriteTexture, (RenderGraphBuilder__Boxed * __this, TextureHandle input, MethodInfo * method)); -DO_APP_FUNC(0x02AF5070, TextureHandle, RenderGraphBuilder_CreateTransientTexture, (RenderGraphBuilder__Boxed * __this, TextureDesc desc, MethodInfo * method)); -DO_APP_FUNC(0x02AF50E0, TextureHandle, RenderGraphBuilder_CreateTransientTexture_1, (RenderGraphBuilder__Boxed * __this, TextureHandle texture, MethodInfo * method)); -DO_APP_FUNC(0x02AF51D0, RendererListHandle, RenderGraphBuilder_UseRendererList, (RenderGraphBuilder__Boxed * __this, RendererListHandle input, MethodInfo * method)); -DO_APP_FUNC(0x02AF5240, ComputeBufferHandle, RenderGraphBuilder_ReadComputeBuffer, (RenderGraphBuilder__Boxed * __this, ComputeBufferHandle input, MethodInfo * method)); -DO_APP_FUNC(0x02AF5270, ComputeBufferHandle, RenderGraphBuilder_WriteComputeBuffer, (RenderGraphBuilder__Boxed * __this, ComputeBufferHandle input, MethodInfo * method)); -DO_APP_FUNC(0x02AF52C0, ComputeBufferHandle, RenderGraphBuilder_CreateTransientComputeBuffer, (RenderGraphBuilder__Boxed * __this, ComputeBufferDesc desc, MethodInfo * method)); -DO_APP_FUNC(0x02AF5320, ComputeBufferHandle, RenderGraphBuilder_CreateTransientComputeBuffer_1, (RenderGraphBuilder__Boxed * __this, ComputeBufferHandle computebuffer, MethodInfo * method)); -DO_APP_FUNC(0x02AF53B0, void, RenderGraphBuilder_EnableAsyncCompute, (RenderGraphBuilder__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02AF53D0, void, RenderGraphBuilder_AllowPassCulling, (RenderGraphBuilder__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02AF53F0, void, RenderGraphBuilder_Dispose, (RenderGraphBuilder__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02AF5460, void, RenderGraphBuilder_AllowRendererListCulling, (RenderGraphBuilder__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02AF51D0, RendererListHandle, RenderGraphBuilder_DependsOn, (RenderGraphBuilder__Boxed * __this, RendererListHandle input, MethodInfo * method)); -DO_APP_FUNC(0x02AF5480, void, RenderGraphBuilder__ctor, (RenderGraphBuilder__Boxed * __this, RenderGraphPass * renderPass, RenderGraphResourceRegistry * resources, RenderGraph * renderGraph, MethodInfo * method)); -DO_APP_FUNC(0x02AF53F0, void, RenderGraphBuilder_Dispose_1, (RenderGraphBuilder__Boxed * __this, bool disposing, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, RenderGraphBuilder_CheckResource, (RenderGraphBuilder__Boxed * __this, ResourceHandle res, bool dontCheckTransientReadWrite, MethodInfo * method)); -DO_APP_FUNC(0x02AF5590, void, RenderGraphBuilder_GenerateDebugData, (RenderGraphBuilder__Boxed * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02AF49D0, void, RenderGraphProfilingScope__ctor, (RenderGraphProfilingScope * __this, RenderGraph * renderGraph, ProfilingSampler * sampler, MethodInfo * method)); +DO_APP_FUNC(0x02AF4AB0, void, RenderGraphProfilingScope_Dispose, (RenderGraphProfilingScope * __this, MethodInfo * method)); +DO_APP_FUNC(0x02AF4AF0, void, RenderGraphProfilingScope_Dispose_1, (RenderGraphProfilingScope * __this, bool disposing, MethodInfo * method)); +DO_APP_FUNC(0x02AF4B30, TextureHandle, RenderGraphBuilder_UseColorBuffer, (RenderGraphBuilder * __this, TextureHandle * input, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x02AF4C40, TextureHandle, RenderGraphBuilder_UseDepthBuffer, (RenderGraphBuilder * __this, TextureHandle * input, DepthAccess__Enum flags, MethodInfo * method)); +DO_APP_FUNC(0x02AF4D50, TextureHandle, RenderGraphBuilder_ReadTexture, (RenderGraphBuilder * __this, TextureHandle * input, MethodInfo * method)); +DO_APP_FUNC(0x02AF4F90, TextureHandle, RenderGraphBuilder_WriteTexture, (RenderGraphBuilder * __this, TextureHandle * input, MethodInfo * method)); +DO_APP_FUNC(0x02AF4FF0, TextureHandle, RenderGraphBuilder_ReadWriteTexture, (RenderGraphBuilder * __this, TextureHandle * input, MethodInfo * method)); +DO_APP_FUNC(0x02AF5070, TextureHandle, RenderGraphBuilder_CreateTransientTexture, (RenderGraphBuilder * __this, TextureDesc * desc, MethodInfo * method)); +DO_APP_FUNC(0x02AF50E0, TextureHandle, RenderGraphBuilder_CreateTransientTexture_1, (RenderGraphBuilder * __this, TextureHandle * texture, MethodInfo * method)); +DO_APP_FUNC(0x02AF51D0, RendererListHandle, RenderGraphBuilder_UseRendererList, (RenderGraphBuilder * __this, RendererListHandle * input, MethodInfo * method)); +DO_APP_FUNC(0x02AF5240, ComputeBufferHandle, RenderGraphBuilder_ReadComputeBuffer, (RenderGraphBuilder * __this, ComputeBufferHandle * input, MethodInfo * method)); +DO_APP_FUNC(0x02AF5270, ComputeBufferHandle, RenderGraphBuilder_WriteComputeBuffer, (RenderGraphBuilder * __this, ComputeBufferHandle * input, MethodInfo * method)); +DO_APP_FUNC(0x02AF52C0, ComputeBufferHandle, RenderGraphBuilder_CreateTransientComputeBuffer, (RenderGraphBuilder * __this, ComputeBufferDesc * desc, MethodInfo * method)); +DO_APP_FUNC(0x02AF5320, ComputeBufferHandle, RenderGraphBuilder_CreateTransientComputeBuffer_1, (RenderGraphBuilder * __this, ComputeBufferHandle * computebuffer, MethodInfo * method)); +DO_APP_FUNC(0x02AF53B0, void, RenderGraphBuilder_EnableAsyncCompute, (RenderGraphBuilder * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02AF53D0, void, RenderGraphBuilder_AllowPassCulling, (RenderGraphBuilder * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02AF53F0, void, RenderGraphBuilder_Dispose, (RenderGraphBuilder * __this, MethodInfo * method)); +DO_APP_FUNC(0x02AF5460, void, RenderGraphBuilder_AllowRendererListCulling, (RenderGraphBuilder * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02AF51D0, RendererListHandle, RenderGraphBuilder_DependsOn, (RenderGraphBuilder * __this, RendererListHandle * input, MethodInfo * method)); +DO_APP_FUNC(0x02AF5480, void, RenderGraphBuilder__ctor, (RenderGraphBuilder * __this, RenderGraphPass * renderPass, RenderGraphResourceRegistry * resources, RenderGraph * renderGraph, MethodInfo * method)); +DO_APP_FUNC(0x02AF53F0, void, RenderGraphBuilder_Dispose_1, (RenderGraphBuilder * __this, bool disposing, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, RenderGraphBuilder_CheckResource, (RenderGraphBuilder * __this, ResourceHandle * res, bool dontCheckTransientReadWrite, MethodInfo * method)); +DO_APP_FUNC(0x02AF5590, void, RenderGraphBuilder_GenerateDebugData, (RenderGraphBuilder * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x019D2A70, TextureHandle, RenderGraphDefaultResources_get_blackTexture, (RenderGraphDefaultResources * __this, MethodInfo * method)); DO_APP_FUNC(0x019D2A80, void, RenderGraphDefaultResources_set_blackTexture, (RenderGraphDefaultResources * __this, TextureHandle value, MethodInfo * method)); DO_APP_FUNC(0x019D2A30, TextureHandle, RenderGraphDefaultResources_get_whiteTexture, (RenderGraphDefaultResources * __this, MethodInfo * method)); @@ -88008,9 +99495,9 @@ DO_APP_FUNC(0x02A798B0, void, RenderGraphDefaultResources_set_defaultShadowTextu DO_APP_FUNC(0x02AF55F0, void, RenderGraphDefaultResources__ctor, (RenderGraphDefaultResources * __this, MethodInfo * method)); DO_APP_FUNC(0x02AF5870, void, RenderGraphDefaultResources_Cleanup, (RenderGraphDefaultResources * __this, MethodInfo * method)); DO_APP_FUNC(0x02AF58C0, void, RenderGraphDefaultResources_InitializeForRendering, (RenderGraphDefaultResources * __this, RenderGraph * renderGraph, MethodInfo * method)); -DO_APP_FUNC(0x02AF5DB0, void, RenderGraphLogIndent__ctor, (RenderGraphLogIndent__Boxed * __this, RenderGraphLogger * logger, int32_t indentation, MethodInfo * method)); -DO_APP_FUNC(0x02AF5E80, void, RenderGraphLogIndent_Dispose, (RenderGraphLogIndent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02AF5F10, void, RenderGraphLogIndent_Dispose_1, (RenderGraphLogIndent__Boxed * __this, bool disposing, MethodInfo * method)); +DO_APP_FUNC(0x02AF5DB0, void, RenderGraphLogIndent__ctor, (RenderGraphLogIndent * __this, RenderGraphLogger * logger, int32_t indentation, MethodInfo * method)); +DO_APP_FUNC(0x02AF5E80, void, RenderGraphLogIndent_Dispose, (RenderGraphLogIndent * __this, MethodInfo * method)); +DO_APP_FUNC(0x02AF5F10, void, RenderGraphLogIndent_Dispose_1, (RenderGraphLogIndent * __this, bool disposing, MethodInfo * method)); DO_APP_FUNC(0x02AF5FB0, void, RenderGraphLogger_Initialize, (RenderGraphLogger * __this, String * logName, MethodInfo * method)); DO_APP_FUNC(0x02AF6130, void, RenderGraphLogger_IncrementIndentation, (RenderGraphLogger * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x02AF61A0, void, RenderGraphLogger_DecrementIndentation, (RenderGraphLogger * __this, int32_t value, MethodInfo * method)); @@ -88049,9 +99536,9 @@ DO_APP_FUNC(0x005C2F90, bool, RenderGraphPass_get_allowRendererListCulling, (Ren DO_APP_FUNC(0x00702B10, void, RenderGraphPass_set_allowRendererListCulling, (RenderGraphPass * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x02AF7600, void, RenderGraphPass__ctor, (RenderGraphPass * __this, MethodInfo * method)); DO_APP_FUNC(0x02AF7D90, void, RenderGraphPass_Clear, (RenderGraphPass * __this, MethodInfo * method)); -DO_APP_FUNC(0x02AF80D0, void, RenderGraphPass_AddResourceWrite, (RenderGraphPass * __this, ResourceHandle res, MethodInfo * method)); -DO_APP_FUNC(0x02AF81A0, void, RenderGraphPass_AddResourceRead, (RenderGraphPass * __this, ResourceHandle res, MethodInfo * method)); -DO_APP_FUNC(0x02AF8270, void, RenderGraphPass_AddTransientResource, (RenderGraphPass * __this, ResourceHandle res, MethodInfo * method)); +DO_APP_FUNC(0x02AF80D0, void, RenderGraphPass_AddResourceWrite, (RenderGraphPass * __this, ResourceHandle * res, MethodInfo * method)); +DO_APP_FUNC(0x02AF81A0, void, RenderGraphPass_AddResourceRead, (RenderGraphPass * __this, ResourceHandle * res, MethodInfo * method)); +DO_APP_FUNC(0x02AF8270, void, RenderGraphPass_AddTransientResource, (RenderGraphPass * __this, ResourceHandle * res, MethodInfo * method)); DO_APP_FUNC(0x02AF8340, void, RenderGraphPass_UseRendererList, (RenderGraphPass * __this, RendererListHandle rendererList, MethodInfo * method)); DO_APP_FUNC(0x02AF83A0, void, RenderGraphPass_DependsOnRendererList, (RenderGraphPass * __this, RendererListHandle rendererList, MethodInfo * method)); DO_APP_FUNC(0x00424C20, void, RenderGraphPass_EnableAsyncCompute, (RenderGraphPass * __this, bool value, MethodInfo * method)); @@ -88061,13 +99548,13 @@ DO_APP_FUNC(0x004217B0, void, RenderGraphPass_GenerateDebugData, (RenderGraphPas DO_APP_FUNC(0x02AF8400, void, RenderGraphPass_SetColorBuffer, (RenderGraphPass * __this, TextureHandle resource, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x02AF84B0, void, RenderGraphPass_SetDepthBuffer, (RenderGraphPass * __this, TextureHandle resource, DepthAccess__Enum flags, MethodInfo * method)); DO_APP_FUNC(0x02AF8510, ComputeBufferHandle, ComputeBufferHandle_get_nullHandle, (MethodInfo * method)); -DO_APP_FUNC(0x02AF8570, void, ComputeBufferHandle__ctor, (ComputeBufferHandle__Boxed * __this, int32_t handle, bool shared, MethodInfo * method)); +DO_APP_FUNC(0x02AF8570, void, ComputeBufferHandle__ctor, (ComputeBufferHandle * __this, int32_t handle, bool shared, MethodInfo * method)); DO_APP_FUNC(0x02AF85B0, ComputeBuffer *, ComputeBufferHandle_op_Implicit, (ComputeBufferHandle buffer, MethodInfo * method)); -DO_APP_FUNC(0x02AF8690, bool, ComputeBufferHandle_IsValid, (ComputeBufferHandle__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02AF8690, bool, ComputeBufferHandle_IsValid, (ComputeBufferHandle * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ComputeBufferHandle__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02AF86E0, void, ComputeBufferDesc__ctor, (ComputeBufferDesc__Boxed * __this, int32_t count, int32_t stride, MethodInfo * method)); -DO_APP_FUNC(0x02AF8700, void, ComputeBufferDesc__ctor_1, (ComputeBufferDesc__Boxed * __this, int32_t count, int32_t stride, ComputeBufferType__Enum type, MethodInfo * method)); -DO_APP_FUNC(0x02AF8720, int32_t, ComputeBufferDesc_GetHashCode, (ComputeBufferDesc__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02AF86E0, void, ComputeBufferDesc__ctor, (ComputeBufferDesc * __this, int32_t count, int32_t stride, MethodInfo * method)); +DO_APP_FUNC(0x02AF8700, void, ComputeBufferDesc__ctor_1, (ComputeBufferDesc * __this, int32_t count, int32_t stride, ComputeBufferType__Enum type, MethodInfo * method)); +DO_APP_FUNC(0x02AF8720, int32_t, ComputeBufferDesc_GetHashCode, (ComputeBufferDesc * __this, MethodInfo * method)); DO_APP_FUNC(0x02AF8740, String *, ComputeBufferResource_GetName, (ComputeBufferResource * __this, MethodInfo * method)); DO_APP_FUNC(0x02AF8790, void, ComputeBufferResource_CreatePooledGraphicsResource, (ComputeBufferResource * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C96378, ComputeBufferResource_CreatePooledGraphicsResource__MethodInfo); @@ -88088,45 +99575,45 @@ DO_APP_FUNC(0x02AF9640, void, ComputeBufferPool__ctor, (ComputeBufferPool * __th DO_APP_FUNC(0x003AE050, void, IRenderGraphResourcePool__ctor, (IRenderGraphResourcePool * __this, MethodInfo * method)); DO_APP_FUNC(0x02AF9680, RenderGraphResourceRegistry *, RenderGraphResourceRegistry_get_current, (MethodInfo * method)); DO_APP_FUNC(0x02AF96C0, void, RenderGraphResourceRegistry_set_current, (RenderGraphResourceRegistry * value, MethodInfo * method)); -DO_APP_FUNC(0x02AF9760, RTHandle *, RenderGraphResourceRegistry_GetTexture, (RenderGraphResourceRegistry * __this, TextureHandle handle, MethodInfo * method)); +DO_APP_FUNC(0x02AF9760, RTHandle *, RenderGraphResourceRegistry_GetTexture, (RenderGraphResourceRegistry * __this, TextureHandle * handle, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C96258, RenderGraphResourceRegistry_GetTexture__MethodInfo); -DO_APP_FUNC(0x02AF9A20, bool, RenderGraphResourceRegistry_TextureNeedsFallback, (RenderGraphResourceRegistry * __this, TextureHandle handle, MethodInfo * method)); -DO_APP_FUNC(0x02AF9B00, RendererList, RenderGraphResourceRegistry_GetRendererList, (RenderGraphResourceRegistry * __this, RendererListHandle handle, MethodInfo * method)); -DO_APP_FUNC(0x02AF9BF0, ComputeBuffer *, RenderGraphResourceRegistry_GetComputeBuffer, (RenderGraphResourceRegistry * __this, ComputeBufferHandle handle, MethodInfo * method)); +DO_APP_FUNC(0x02AF9A20, bool, RenderGraphResourceRegistry_TextureNeedsFallback, (RenderGraphResourceRegistry * __this, TextureHandle * handle, MethodInfo * method)); +DO_APP_FUNC(0x02AF9B00, RendererList, RenderGraphResourceRegistry_GetRendererList, (RenderGraphResourceRegistry * __this, RendererListHandle * handle, MethodInfo * method)); +DO_APP_FUNC(0x02AF9BF0, ComputeBuffer *, RenderGraphResourceRegistry_GetComputeBuffer, (RenderGraphResourceRegistry * __this, ComputeBufferHandle * handle, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C96238, RenderGraphResourceRegistry_GetComputeBuffer__MethodInfo); DO_APP_FUNC(0x02AF9E30, void, RenderGraphResourceRegistry__ctor, (RenderGraphResourceRegistry * __this, MethodInfo * method)); DO_APP_FUNC(0x02AFA080, void, RenderGraphResourceRegistry__ctor_1, (RenderGraphResourceRegistry * __this, RenderGraphDebugParams * renderGraphDebug, RenderGraphLogger * frameInformationLogger, MethodInfo * method)); DO_APP_FUNC(0x02AFA8E0, void, RenderGraphResourceRegistry_BeginRenderGraph, (RenderGraphResourceRegistry * __this, int32_t executionCount, MethodInfo * method)); DO_APP_FUNC(0x02AFAA60, void, RenderGraphResourceRegistry_BeginExecute, (RenderGraphResourceRegistry * __this, int32_t currentFrameIndex, MethodInfo * method)); DO_APP_FUNC(0x02AFABF0, void, RenderGraphResourceRegistry_EndExecute, (RenderGraphResourceRegistry * __this, MethodInfo * method)); -DO_APP_FUNC(0x02AFAC00, void, RenderGraphResourceRegistry_CheckHandleValidity, (RenderGraphResourceRegistry * __this, ResourceHandle res, MethodInfo * method)); +DO_APP_FUNC(0x02AFAC00, void, RenderGraphResourceRegistry_CheckHandleValidity, (RenderGraphResourceRegistry * __this, ResourceHandle * res, MethodInfo * method)); DO_APP_FUNC(0x02AFAC70, void, RenderGraphResourceRegistry_CheckHandleValidity_1, (RenderGraphResourceRegistry * __this, RenderGraphResourceType__Enum type, int32_t index, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C961A8, RenderGraphResourceRegistry_CheckHandleValidity_1__MethodInfo); -DO_APP_FUNC(0x02AFADA0, void, RenderGraphResourceRegistry_IncrementWriteCount, (RenderGraphResourceRegistry * __this, ResourceHandle res, MethodInfo * method)); -DO_APP_FUNC(0x02AFAEF0, String *, RenderGraphResourceRegistry_GetRenderGraphResourceName, (RenderGraphResourceRegistry * __this, ResourceHandle res, MethodInfo * method)); +DO_APP_FUNC(0x02AFADA0, void, RenderGraphResourceRegistry_IncrementWriteCount, (RenderGraphResourceRegistry * __this, ResourceHandle * res, MethodInfo * method)); +DO_APP_FUNC(0x02AFAEF0, String *, RenderGraphResourceRegistry_GetRenderGraphResourceName, (RenderGraphResourceRegistry * __this, ResourceHandle * res, MethodInfo * method)); DO_APP_FUNC(0x02AFB040, String *, RenderGraphResourceRegistry_GetRenderGraphResourceName_1, (RenderGraphResourceRegistry * __this, RenderGraphResourceType__Enum type, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x02AFB100, bool, RenderGraphResourceRegistry_IsRenderGraphResourceImported, (RenderGraphResourceRegistry * __this, ResourceHandle res, MethodInfo * method)); +DO_APP_FUNC(0x02AFB100, bool, RenderGraphResourceRegistry_IsRenderGraphResourceImported, (RenderGraphResourceRegistry * __this, ResourceHandle * res, MethodInfo * method)); DO_APP_FUNC(0x02AFB240, bool, RenderGraphResourceRegistry_IsRenderGraphResourceShared, (RenderGraphResourceRegistry * __this, RenderGraphResourceType__Enum type, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x02AFB2A0, bool, RenderGraphResourceRegistry_IsGraphicsResourceCreated, (RenderGraphResourceRegistry * __this, ResourceHandle res, MethodInfo * method)); -DO_APP_FUNC(0x02AFB3F0, bool, RenderGraphResourceRegistry_IsRendererListCreated, (RenderGraphResourceRegistry * __this, RendererListHandle res, MethodInfo * method)); +DO_APP_FUNC(0x02AFB2A0, bool, RenderGraphResourceRegistry_IsGraphicsResourceCreated, (RenderGraphResourceRegistry * __this, ResourceHandle * res, MethodInfo * method)); +DO_APP_FUNC(0x02AFB3F0, bool, RenderGraphResourceRegistry_IsRendererListCreated, (RenderGraphResourceRegistry * __this, RendererListHandle * res, MethodInfo * method)); DO_APP_FUNC(0x02AFB4A0, bool, RenderGraphResourceRegistry_IsRenderGraphResourceImported_1, (RenderGraphResourceRegistry * __this, RenderGraphResourceType__Enum type, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x02AFB550, int32_t, RenderGraphResourceRegistry_GetRenderGraphResourceTransientIndex, (RenderGraphResourceRegistry * __this, ResourceHandle res, MethodInfo * method)); +DO_APP_FUNC(0x02AFB550, int32_t, RenderGraphResourceRegistry_GetRenderGraphResourceTransientIndex, (RenderGraphResourceRegistry * __this, ResourceHandle * res, MethodInfo * method)); DO_APP_FUNC(0x02AFB690, TextureHandle, RenderGraphResourceRegistry_ImportTexture, (RenderGraphResourceRegistry * __this, RTHandle * rt, MethodInfo * method)); -DO_APP_FUNC(0x02AFB7C0, TextureHandle, RenderGraphResourceRegistry_CreateSharedTexture, (RenderGraphResourceRegistry * __this, TextureDesc desc, bool explicitRelease, MethodInfo * method)); +DO_APP_FUNC(0x02AFB7C0, TextureHandle, RenderGraphResourceRegistry_CreateSharedTexture, (RenderGraphResourceRegistry * __this, TextureDesc * desc, bool explicitRelease, MethodInfo * method)); DO_APP_FUNC(0x02AFBA90, void, RenderGraphResourceRegistry_ReleaseSharedTexture, (RenderGraphResourceRegistry * __this, TextureHandle texture, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C960D8, RenderGraphResourceRegistry_ReleaseSharedTexture__MethodInfo); DO_APP_FUNC(0x02AFBC50, TextureHandle, RenderGraphResourceRegistry_ImportBackbuffer, (RenderGraphResourceRegistry * __this, RenderTargetIdentifier rt, MethodInfo * method)); -DO_APP_FUNC(0x02AFBEF0, TextureHandle, RenderGraphResourceRegistry_CreateTexture, (RenderGraphResourceRegistry * __this, TextureDesc desc, int32_t transientPassIndex, MethodInfo * method)); +DO_APP_FUNC(0x02AFBEF0, TextureHandle, RenderGraphResourceRegistry_CreateTexture, (RenderGraphResourceRegistry * __this, TextureDesc * desc, int32_t transientPassIndex, MethodInfo * method)); DO_APP_FUNC(0x02AFC090, int32_t, RenderGraphResourceRegistry_GetTextureResourceCount, (RenderGraphResourceRegistry * __this, MethodInfo * method)); -DO_APP_FUNC(0x02AFC0F0, TextureResource *, RenderGraphResourceRegistry_GetTextureResource, (RenderGraphResourceRegistry * __this, ResourceHandle handle, MethodInfo * method)); -DO_APP_FUNC(0x02AFC270, TextureDesc, RenderGraphResourceRegistry_GetTextureResourceDesc, (RenderGraphResourceRegistry * __this, ResourceHandle handle, MethodInfo * method)); -DO_APP_FUNC(0x02AFC430, void, RenderGraphResourceRegistry_ForceTextureClear, (RenderGraphResourceRegistry * __this, ResourceHandle handle, Color clearColor, MethodInfo * method)); -DO_APP_FUNC(0x02AFC490, RendererListHandle, RenderGraphResourceRegistry_CreateRendererList, (RenderGraphResourceRegistry * __this, RendererListDesc desc, MethodInfo * method)); +DO_APP_FUNC(0x02AFC0F0, TextureResource *, RenderGraphResourceRegistry_GetTextureResource, (RenderGraphResourceRegistry * __this, ResourceHandle * handle, MethodInfo * method)); +DO_APP_FUNC(0x02AFC270, TextureDesc, RenderGraphResourceRegistry_GetTextureResourceDesc, (RenderGraphResourceRegistry * __this, ResourceHandle * handle, MethodInfo * method)); +DO_APP_FUNC(0x02AFC430, void, RenderGraphResourceRegistry_ForceTextureClear, (RenderGraphResourceRegistry * __this, ResourceHandle * handle, Color clearColor, MethodInfo * method)); +DO_APP_FUNC(0x02AFC490, RendererListHandle, RenderGraphResourceRegistry_CreateRendererList, (RenderGraphResourceRegistry * __this, RendererListDesc * desc, MethodInfo * method)); DO_APP_FUNC(0x02AFC5D0, ComputeBufferHandle, RenderGraphResourceRegistry_ImportComputeBuffer, (RenderGraphResourceRegistry * __this, ComputeBuffer * computeBuffer, MethodInfo * method)); -DO_APP_FUNC(0x02AFC730, ComputeBufferHandle, RenderGraphResourceRegistry_CreateComputeBuffer, (RenderGraphResourceRegistry * __this, ComputeBufferDesc desc, int32_t transientPassIndex, MethodInfo * method)); -DO_APP_FUNC(0x02AFC8B0, ComputeBufferDesc, RenderGraphResourceRegistry_GetComputeBufferResourceDesc, (RenderGraphResourceRegistry * __this, ResourceHandle handle, MethodInfo * method)); +DO_APP_FUNC(0x02AFC730, ComputeBufferHandle, RenderGraphResourceRegistry_CreateComputeBuffer, (RenderGraphResourceRegistry * __this, ComputeBufferDesc * desc, int32_t transientPassIndex, MethodInfo * method)); +DO_APP_FUNC(0x02AFC8B0, ComputeBufferDesc, RenderGraphResourceRegistry_GetComputeBufferResourceDesc, (RenderGraphResourceRegistry * __this, ResourceHandle * handle, MethodInfo * method)); DO_APP_FUNC(0x02AFCA30, int32_t, RenderGraphResourceRegistry_GetComputeBufferResourceCount, (RenderGraphResourceRegistry * __this, MethodInfo * method)); -DO_APP_FUNC(0x02AFCA90, ComputeBufferResource *, RenderGraphResourceRegistry_GetComputeBufferResource, (RenderGraphResourceRegistry * __this, ResourceHandle handle, MethodInfo * method)); +DO_APP_FUNC(0x02AFCA90, ComputeBufferResource *, RenderGraphResourceRegistry_GetComputeBufferResource, (RenderGraphResourceRegistry * __this, ResourceHandle * handle, MethodInfo * method)); DO_APP_FUNC(0x02AFCC10, void, RenderGraphResourceRegistry_UpdateSharedResourceLastFrameIndex, (RenderGraphResourceRegistry * __this, int32_t type, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x02AFCCB0, void, RenderGraphResourceRegistry_ManageSharedRenderGraphResources, (RenderGraphResourceRegistry * __this, MethodInfo * method)); DO_APP_FUNC(0x02AFCE40, void, RenderGraphResourceRegistry_CreatePooledResource, (RenderGraphResourceRegistry * __this, RenderGraphContext * rgContext, int32_t type, int32_t index, MethodInfo * method)); @@ -88135,9 +99622,9 @@ DO_APP_FUNC_METHODINFO(0x03C96270, RenderGraphResourceRegistry_CreateTextureCall DO_APP_FUNC(0x02AFD1D0, void, RenderGraphResourceRegistry_ReleasePooledResource, (RenderGraphResourceRegistry * __this, RenderGraphContext * rgContext, int32_t type, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x02AFD300, void, RenderGraphResourceRegistry_ReleaseTextureCallback, (RenderGraphResourceRegistry * __this, RenderGraphContext * rgContext, IRenderGraphResource * res, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C96278, RenderGraphResourceRegistry_ReleaseTextureCallback__MethodInfo); -DO_APP_FUNC(0x003AE050, void, RenderGraphResourceRegistry_ValidateTextureDesc, (RenderGraphResourceRegistry * __this, TextureDesc desc, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, RenderGraphResourceRegistry_ValidateRendererListDesc, (RenderGraphResourceRegistry * __this, RendererListDesc desc, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, RenderGraphResourceRegistry_ValidateComputeBufferDesc, (RenderGraphResourceRegistry * __this, ComputeBufferDesc desc, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, RenderGraphResourceRegistry_ValidateTextureDesc, (RenderGraphResourceRegistry * __this, TextureDesc * desc, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, RenderGraphResourceRegistry_ValidateRendererListDesc, (RenderGraphResourceRegistry * __this, RendererListDesc * desc, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, RenderGraphResourceRegistry_ValidateComputeBufferDesc, (RenderGraphResourceRegistry * __this, ComputeBufferDesc * desc, MethodInfo * method)); DO_APP_FUNC(0x02AFD4C0, void, RenderGraphResourceRegistry_CreateRendererLists, (RenderGraphResourceRegistry * __this, List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle_ * rendererLists, ScriptableRenderContext context, bool manualDispatch, MethodInfo * method)); DO_APP_FUNC(0x02AFD9B0, void, RenderGraphResourceRegistry_Clear, (RenderGraphResourceRegistry * __this, bool onException, MethodInfo * method)); DO_APP_FUNC(0x02AFDC60, void, RenderGraphResourceRegistry_PurgeUnusedGraphicsResources, (RenderGraphResourceRegistry * __this, MethodInfo * method)); @@ -88152,20 +99639,20 @@ DO_APP_FUNC(0x02AFE010, void, RenderGraphResourceRegistry_RenderGraphResourcesDa DO_APP_FUNC(0x02AFE0F0, void, RenderGraphResourceRegistry_RenderGraphResourcesData_Cleanup, (RenderGraphResourceRegistry_RenderGraphResourcesData * __this, MethodInfo * method)); DO_APP_FUNC(0x02AFE190, void, RenderGraphResourceRegistry_RenderGraphResourcesData_PurgeUnusedGraphicsResources, (RenderGraphResourceRegistry_RenderGraphResourcesData * __this, int32_t frameIndex, MethodInfo * method)); DO_APP_FUNC(0x02AFE1C0, void, RenderGraphResourceRegistry_RenderGraphResourcesData__ctor, (RenderGraphResourceRegistry_RenderGraphResourcesData * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C173E0, int32_t, RendererListHandle_get_handle, (RendererListHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018C6CA0, void, RendererListHandle_set_handle, (RendererListHandle__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x0181D7A0, void, RendererListHandle__ctor, (RendererListHandle__Boxed * __this, int32_t handle, MethodInfo * method)); +DO_APP_FUNC(0x00C173E0, int32_t, RendererListHandle_get_handle, (RendererListHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x018C6CA0, void, RendererListHandle_set_handle, (RendererListHandle * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x0181D7A0, void, RendererListHandle__ctor, (RendererListHandle * __this, int32_t handle, MethodInfo * method)); DO_APP_FUNC(0x01B96460, int32_t, RendererListHandle_op_Implicit, (RendererListHandle handle, MethodInfo * method)); DO_APP_FUNC(0x02AFE350, RendererList, RendererListHandle_op_Implicit_1, (RendererListHandle rendererList, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, RendererListHandle_IsValid, (RendererListHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02AFE420, void, RendererListResource__ctor, (RendererListResource__Boxed * __this, RendererListDesc desc, MethodInfo * method)); -DO_APP_FUNC(0x00C15E20, int32_t, ResourceHandle_get_index, (ResourceHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C173E0, RenderGraphResourceType__Enum, ResourceHandle_get_type, (ResourceHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018C6CA0, void, ResourceHandle_set_type, (ResourceHandle__Boxed * __this, RenderGraphResourceType__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x02AFE580, int32_t, ResourceHandle_get_iType, (ResourceHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02AFE5D0, void, ResourceHandle__ctor, (ResourceHandle__Boxed * __this, int32_t value, RenderGraphResourceType__Enum type, bool shared, MethodInfo * method)); +DO_APP_FUNC(0x00C173D0, bool, RendererListHandle_IsValid, (RendererListHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02AFE420, void, RendererListResource__ctor, (RendererListResource * __this, RendererListDesc * desc, MethodInfo * method)); +DO_APP_FUNC(0x00C15E20, int32_t, ResourceHandle_get_index, (ResourceHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C173E0, RenderGraphResourceType__Enum, ResourceHandle_get_type, (ResourceHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x018C6CA0, void, ResourceHandle_set_type, (ResourceHandle * __this, RenderGraphResourceType__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x02AFE580, int32_t, ResourceHandle_get_iType, (ResourceHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02AFE5D0, void, ResourceHandle__ctor, (ResourceHandle * __this, int32_t value, RenderGraphResourceType__Enum type, bool shared, MethodInfo * method)); DO_APP_FUNC(0x02AFE6A0, int32_t, ResourceHandle_op_Implicit, (ResourceHandle handle, MethodInfo * method)); -DO_APP_FUNC(0x02AFE6F0, bool, ResourceHandle_IsValid, (ResourceHandle__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02AFE6F0, bool, ResourceHandle_IsValid, (ResourceHandle * __this, MethodInfo * method)); DO_APP_FUNC(0x02AFE790, void, ResourceHandle_NewFrame, (int32_t executionIndex, MethodInfo * method)); DO_APP_FUNC(0x02AFE880, void, ResourceHandle__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02AFE8E0, void, IRenderGraphResource_Reset, (IRenderGraphResource * __this, IRenderGraphResourcePool * pool, MethodInfo * method)); @@ -88182,20 +99669,20 @@ DO_APP_FUNC(0x003AE050, void, IRenderGraphResource_LogRelease, (IRenderGraphReso DO_APP_FUNC(0x003CB690, int32_t, IRenderGraphResource_GetSortIndex, (IRenderGraphResource * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, IRenderGraphResource__ctor, (IRenderGraphResource * __this, MethodInfo * method)); DO_APP_FUNC(0x02AFE9C0, TextureHandle, TextureHandle_get_nullHandle, (MethodInfo * method)); -DO_APP_FUNC(0x02AFEA20, void, TextureHandle__ctor, (TextureHandle__Boxed * __this, int32_t handle, bool shared, MethodInfo * method)); +DO_APP_FUNC(0x02AFEA20, void, TextureHandle__ctor, (TextureHandle * __this, int32_t handle, bool shared, MethodInfo * method)); DO_APP_FUNC(0x02AFEAC0, RenderTargetIdentifier, TextureHandle_op_Implicit, (TextureHandle texture, MethodInfo * method)); DO_APP_FUNC(0x02AFEC20, Texture *, TextureHandle_op_Implicit_1, (TextureHandle texture, MethodInfo * method)); DO_APP_FUNC(0x02AFED10, RenderTexture *, TextureHandle_op_Implicit_2, (TextureHandle texture, MethodInfo * method)); DO_APP_FUNC(0x02AFEE00, RTHandle *, TextureHandle_op_Implicit_3, (TextureHandle texture, MethodInfo * method)); -DO_APP_FUNC(0x02AFEEE0, bool, TextureHandle_IsValid, (TextureHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02AFEF30, void, TextureHandle_SetFallBackResource, (TextureHandle__Boxed * __this, TextureHandle texture, MethodInfo * method)); +DO_APP_FUNC(0x02AFEEE0, bool, TextureHandle_IsValid, (TextureHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02AFEF30, void, TextureHandle_SetFallBackResource, (TextureHandle * __this, TextureHandle texture, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TextureHandle__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02AFEF40, void, TextureDesc_InitDefaultValues, (TextureDesc__Boxed * __this, bool dynamicResolution, bool xrReady, MethodInfo * method)); -DO_APP_FUNC(0x02AFEFE0, void, TextureDesc__ctor, (TextureDesc__Boxed * __this, int32_t width, int32_t height, bool dynamicResolution, bool xrReady, MethodInfo * method)); -DO_APP_FUNC(0x02AFF030, void, TextureDesc__ctor_1, (TextureDesc__Boxed * __this, Vector2 scale, bool dynamicResolution, bool xrReady, MethodInfo * method)); -DO_APP_FUNC(0x02AFF090, void, TextureDesc__ctor_2, (TextureDesc__Boxed * __this, ScaleFunc * func, bool dynamicResolution, bool xrReady, MethodInfo * method)); -DO_APP_FUNC(0x02AFF140, void, TextureDesc__ctor_3, (TextureDesc__Boxed * __this, TextureDesc input, MethodInfo * method)); -DO_APP_FUNC(0x02AFF1D0, int32_t, TextureDesc_GetHashCode, (TextureDesc__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02AFEF40, void, TextureDesc_InitDefaultValues, (TextureDesc * __this, bool dynamicResolution, bool xrReady, MethodInfo * method)); +DO_APP_FUNC(0x02AFEFE0, void, TextureDesc__ctor, (TextureDesc * __this, int32_t width, int32_t height, bool dynamicResolution, bool xrReady, MethodInfo * method)); +DO_APP_FUNC(0x02AFF030, void, TextureDesc__ctor_1, (TextureDesc * __this, Vector2 scale, bool dynamicResolution, bool xrReady, MethodInfo * method)); +DO_APP_FUNC(0x02AFF090, void, TextureDesc__ctor_2, (TextureDesc * __this, ScaleFunc * func, bool dynamicResolution, bool xrReady, MethodInfo * method)); +DO_APP_FUNC(0x02AFF140, void, TextureDesc__ctor_3, (TextureDesc * __this, TextureDesc input, MethodInfo * method)); +DO_APP_FUNC(0x02AFF1D0, int32_t, TextureDesc_GetHashCode, (TextureDesc * __this, MethodInfo * method)); DO_APP_FUNC(0x02AFF330, String *, TextureResource_GetName, (TextureResource * __this, MethodInfo * method)); DO_APP_FUNC(0x02AFF3A0, void, TextureResource_CreatePooledGraphicsResource, (TextureResource * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C96000, TextureResource_CreatePooledGraphicsResource__MethodInfo); @@ -88247,31 +99734,31 @@ DO_APP_FUNC(0x02B03C10, void, ConstantBuffer__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ConstantBufferBase__ctor, (ConstantBufferBase * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, DisplayInfoAttribute__ctor, (DisplayInfoAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AdditionalPropertyAttribute__ctor, (AdditionalPropertyAttribute * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B03CF0, void, CoreUnsafeUtils_CalculateRadixParams, (int32_t radixBits, int32_t bitStates, MethodInfo * method)); +DO_APP_FUNC(0x02B03CF0, void, CoreUnsafeUtils_CalculateRadixParams, (int32_t radixBits, int32_t * bitStates, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C95DA8, CoreUnsafeUtils_CalculateRadixParams__MethodInfo); DO_APP_FUNC(0x02B03D70, int32_t, CoreUnsafeUtils_CalculateRadixSupportSize, (int32_t bitStates, int32_t arrayLength, MethodInfo * method)); -DO_APP_FUNC(0x02B03D80, void, CoreUnsafeUtils_CalculateRadixSortSupportArrays, (int32_t bitStates, int32_t arrayLength, uint32_t * supportArray, uint32_t * bucketIndices, uint32_t * bucketSizes, uint32_t * bucketPrefix, uint32_t * arrayOutput, MethodInfo * method)); +DO_APP_FUNC(0x02B03D80, void, CoreUnsafeUtils_CalculateRadixSortSupportArrays, (int32_t bitStates, int32_t arrayLength, uint32_t * supportArray, uint32_t * * bucketIndices, uint32_t * * bucketSizes, uint32_t * * bucketPrefix, uint32_t * * arrayOutput, MethodInfo * method)); DO_APP_FUNC(0x02B03DC0, void, CoreUnsafeUtils_MergeSort, (uint32_t * array, uint32_t * support, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x02B03FA0, void, CoreUnsafeUtils_MergeSort_1, (UInt32__Array * arr, int32_t sortSize, UInt32__Array * supportArray, MethodInfo * method)); -DO_APP_FUNC(0x02B040E0, void, CoreUnsafeUtils_MergeSort_2, (NativeArray_1_System_UInt32_ arr, int32_t sortSize, NativeArray_1_System_UInt32_ supportArray, MethodInfo * method)); +DO_APP_FUNC(0x02B03FA0, void, CoreUnsafeUtils_MergeSort_1, (UInt32__Array * arr, int32_t sortSize, UInt32__Array * * supportArray, MethodInfo * method)); +DO_APP_FUNC(0x02B040E0, void, CoreUnsafeUtils_MergeSort_2, (NativeArray_1_System_UInt32_ arr, int32_t sortSize, NativeArray_1_System_UInt32_ * supportArray, MethodInfo * method)); DO_APP_FUNC(0x02B041C0, void, CoreUnsafeUtils_InsertionSort, (uint32_t * arr, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x02B04210, void, CoreUnsafeUtils_InsertionSort_1, (UInt32__Array * arr, int32_t sortSize, MethodInfo * method)); DO_APP_FUNC(0x02B042D0, void, CoreUnsafeUtils_InsertionSort_2, (NativeArray_1_System_UInt32_ arr, int32_t sortSize, MethodInfo * method)); DO_APP_FUNC(0x02B043B0, void, CoreUnsafeUtils_RadixSort, (uint32_t * array, uint32_t * support, int32_t radixBits, int32_t bitStates, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x02B04570, void, CoreUnsafeUtils_RadixSort_1, (UInt32__Array * arr, int32_t sortSize, UInt32__Array * supportArray, int32_t radixBits, MethodInfo * method)); -DO_APP_FUNC(0x02B04740, void, CoreUnsafeUtils_RadixSort_2, (NativeArray_1_System_UInt32_ array, int32_t sortSize, NativeArray_1_System_UInt32_ supportArray, int32_t radixBits, MethodInfo * method)); +DO_APP_FUNC(0x02B04570, void, CoreUnsafeUtils_RadixSort_1, (UInt32__Array * arr, int32_t sortSize, UInt32__Array * * supportArray, int32_t radixBits, MethodInfo * method)); +DO_APP_FUNC(0x02B04740, void, CoreUnsafeUtils_RadixSort_2, (NativeArray_1_System_UInt32_ array, int32_t sortSize, NativeArray_1_System_UInt32_ * supportArray, int32_t radixBits, MethodInfo * method)); DO_APP_FUNC(0x02B048A0, void, CoreUnsafeUtils_QuickSort, (UInt32__Array * arr, int32_t left, int32_t right, MethodInfo * method)); -DO_APP_FUNC(0x02B04990, int32_t, CoreUnsafeUtils_CompareHashes, (int32_t oldHashCount, Hash128 * oldHashes, int32_t newHashCount, Hash128 * newHashes, int32_t * addIndices, int32_t * removeIndices, int32_t addCount, int32_t remCount, MethodInfo * method)); +DO_APP_FUNC(0x02B04990, int32_t, CoreUnsafeUtils_CompareHashes, (int32_t oldHashCount, Hash128 * oldHashes, int32_t newHashCount, Hash128 * newHashes, int32_t * addIndices, int32_t * removeIndices, int32_t * addCount, int32_t * remCount, MethodInfo * method)); DO_APP_FUNC(0x02B04A10, void, CoreUnsafeUtils_CombineHashes, (int32_t count, Hash128 * hashes, Hash128 * outHash, MethodInfo * method)); DO_APP_FUNC(0x02B04B80, bool, CoreUnsafeUtils_HaveDuplicates, (Int32__Array * arr, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C95D08, CoreUnsafeUtils_HaveDuplicates__MethodInfo); -DO_APP_FUNC(0x003CD280, int32_t, CoreUnsafeUtils_FixedBufferStringQueue_get_Count, (CoreUnsafeUtils_FixedBufferStringQueue__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x006D8950, void, CoreUnsafeUtils_FixedBufferStringQueue_set_Count, (CoreUnsafeUtils_FixedBufferStringQueue__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x02B04CF0, void, CoreUnsafeUtils_FixedBufferStringQueue__ctor, (CoreUnsafeUtils_FixedBufferStringQueue__Boxed * __this, uint8_t * ptr, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x02B04D20, bool, CoreUnsafeUtils_FixedBufferStringQueue_TryPush, (CoreUnsafeUtils_FixedBufferStringQueue__Boxed * __this, String * v, MethodInfo * method)); -DO_APP_FUNC(0x02B04DC0, bool, CoreUnsafeUtils_FixedBufferStringQueue_TryPop, (CoreUnsafeUtils_FixedBufferStringQueue__Boxed * __this, String * v, MethodInfo * method)); -DO_APP_FUNC(0x02B04EC0, void, CoreUnsafeUtils_FixedBufferStringQueue_Clear, (CoreUnsafeUtils_FixedBufferStringQueue__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A8A8A0, uint32_t, CoreUnsafeUtils_UintKeyGetter_Get, (CoreUnsafeUtils_UintKeyGetter__Boxed * __this, uint32_t v, MethodInfo * method)); +DO_APP_FUNC(0x003CD280, int32_t, CoreUnsafeUtils_FixedBufferStringQueue_get_Count, (CoreUnsafeUtils_FixedBufferStringQueue * __this, MethodInfo * method)); +DO_APP_FUNC(0x006D8950, void, CoreUnsafeUtils_FixedBufferStringQueue_set_Count, (CoreUnsafeUtils_FixedBufferStringQueue * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x02B04CF0, void, CoreUnsafeUtils_FixedBufferStringQueue__ctor, (CoreUnsafeUtils_FixedBufferStringQueue * __this, uint8_t * ptr, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x02B04D20, bool, CoreUnsafeUtils_FixedBufferStringQueue_TryPush, (CoreUnsafeUtils_FixedBufferStringQueue * __this, String * v, MethodInfo * method)); +DO_APP_FUNC(0x02B04DC0, bool, CoreUnsafeUtils_FixedBufferStringQueue_TryPop, (CoreUnsafeUtils_FixedBufferStringQueue * __this, String * * v, MethodInfo * method)); +DO_APP_FUNC(0x02B04EC0, void, CoreUnsafeUtils_FixedBufferStringQueue_Clear, (CoreUnsafeUtils_FixedBufferStringQueue * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A8A8A0, uint32_t, CoreUnsafeUtils_UintKeyGetter_Get, (CoreUnsafeUtils_UintKeyGetter * __this, uint32_t * v, MethodInfo * method)); DO_APP_FUNC(0x015B3690, void, PerformDynamicRes__ctor, (PerformDynamicRes * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x00B6BEC0, float, PerformDynamicRes_Invoke, (PerformDynamicRes * __this, MethodInfo * method)); DO_APP_FUNC(0x003F7C10, IAsyncResult *, PerformDynamicRes_BeginInvoke, (PerformDynamicRes * __this, AsyncCallback * callback, Object * object, MethodInfo * method)); @@ -88398,11 +99885,11 @@ DO_APP_FUNC(0x02B0D310, void, DebugActionState_Reset, (DebugActionState * __this DO_APP_FUNC(0x02B0D370, void, DebugActionState_Update, (DebugActionState * __this, DebugActionDesc * desc, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, DebugActionState__ctor, (DebugActionState * __this, MethodInfo * method)); DO_APP_FUNC(0x02B0D570, DebugShapes *, DebugShapes_get_instance, (MethodInfo * method)); -DO_APP_FUNC(0x02B0D630, void, DebugShapes_BuildSphere, (DebugShapes * __this, Mesh * outputMesh, float radius, uint32_t longSubdiv, uint32_t latSubdiv, MethodInfo * method)); +DO_APP_FUNC(0x02B0D630, void, DebugShapes_BuildSphere, (DebugShapes * __this, Mesh * * outputMesh, float radius, uint32_t longSubdiv, uint32_t latSubdiv, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C95A60, DebugShapes_BuildSphere__MethodInfo); -DO_APP_FUNC(0x02B0E060, void, DebugShapes_BuildBox, (DebugShapes * __this, Mesh * outputMesh, float length, float width, float height, MethodInfo * method)); -DO_APP_FUNC(0x02B0EF10, void, DebugShapes_BuildCone, (DebugShapes * __this, Mesh * outputMesh, float height, float topRadius, float bottomRadius, int32_t nbSides, MethodInfo * method)); -DO_APP_FUNC(0x02B0FB30, void, DebugShapes_BuildPyramid, (DebugShapes * __this, Mesh * outputMesh, float width, float height, float depth, MethodInfo * method)); +DO_APP_FUNC(0x02B0E060, void, DebugShapes_BuildBox, (DebugShapes * __this, Mesh * * outputMesh, float length, float width, float height, MethodInfo * method)); +DO_APP_FUNC(0x02B0EF10, void, DebugShapes_BuildCone, (DebugShapes * __this, Mesh * * outputMesh, float height, float topRadius, float bottomRadius, int32_t nbSides, MethodInfo * method)); +DO_APP_FUNC(0x02B0FB30, void, DebugShapes_BuildPyramid, (DebugShapes * __this, Mesh * * outputMesh, float width, float height, float depth, MethodInfo * method)); DO_APP_FUNC(0x02B101F0, void, DebugShapes_BuildShapes, (DebugShapes * __this, MethodInfo * method)); DO_APP_FUNC(0x02B104C0, void, DebugShapes_RebuildResources, (DebugShapes * __this, MethodInfo * method)); DO_APP_FUNC(0x02B10830, Mesh *, DebugShapes_RequestSphereMesh, (DebugShapes * __this, MethodInfo * method)); @@ -88599,13 +100086,13 @@ DO_APP_FUNC(0x02B16BF0, int32_t, ProfilingSampler_get_cpuSampleCount, (Profiling DO_APP_FUNC(0x02B16CD0, float, ProfilingSampler_get_inlineCpuElapsedTime, (ProfilingSampler * __this, MethodInfo * method)); DO_APP_FUNC(0x02B16DA0, int32_t, ProfilingSampler_get_inlineCpuSampleCount, (ProfilingSampler * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ProfilingSampler__ctor_1, (ProfilingSampler * __this, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, ProfilingScope__ctor, (ProfilingScope__Boxed * __this, CommandBuffer * cmd, ProfilingSampler * sampler, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, ProfilingScope_Dispose, (ProfilingScope__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B16E80, void, ProfilingSample__ctor, (ProfilingSample__Boxed * __this, CommandBuffer * cmd, String * name, CustomSampler * sampler, MethodInfo * method)); -DO_APP_FUNC(0x02B17030, void, ProfilingSample__ctor_1, (ProfilingSample__Boxed * __this, CommandBuffer * cmd, String * format, Object * arg, MethodInfo * method)); -DO_APP_FUNC(0x02B170C0, void, ProfilingSample__ctor_2, (ProfilingSample__Boxed * __this, CommandBuffer * cmd, String * format, Object__Array * args, MethodInfo * method)); -DO_APP_FUNC(0x02B171B0, void, ProfilingSample_Dispose, (ProfilingSample__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B171C0, void, ProfilingSample_Dispose_1, (ProfilingSample__Boxed * __this, bool disposing, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, ProfilingScope__ctor, (ProfilingScope * __this, CommandBuffer * cmd, ProfilingSampler * sampler, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, ProfilingScope_Dispose, (ProfilingScope * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B16E80, void, ProfilingSample__ctor, (ProfilingSample * __this, CommandBuffer * cmd, String * name, CustomSampler * sampler, MethodInfo * method)); +DO_APP_FUNC(0x02B17030, void, ProfilingSample__ctor_1, (ProfilingSample * __this, CommandBuffer * cmd, String * format, Object * arg, MethodInfo * method)); +DO_APP_FUNC(0x02B170C0, void, ProfilingSample__ctor_2, (ProfilingSample * __this, CommandBuffer * cmd, String * format, Object__Array * args, MethodInfo * method)); +DO_APP_FUNC(0x02B171B0, void, ProfilingSample_Dispose, (ProfilingSample * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B171C0, void, ProfilingSample_Dispose_1, (ProfilingSample * __this, bool disposing, MethodInfo * method)); DO_APP_FUNC(0x02B17270, void, CoreRPHelpURLAttribute__ctor, (CoreRPHelpURLAttribute * __this, String * pageName, String * packageName, MethodInfo * method)); DO_APP_FUNC(0x02B17430, String *, DocumentationInfo_get_version, (MethodInfo * method)); DO_APP_FUNC(0x02B17470, String *, DocumentationInfo_GetPageLink, (String * packageName, String * pageName, MethodInfo * method)); @@ -88616,17 +100103,17 @@ DO_APP_FUNC(0x02B177A0, SphericalHarmonicsL1, SphericalHarmonicsL1_op_Multiply, DO_APP_FUNC(0x02B17890, SphericalHarmonicsL1, SphericalHarmonicsL1_op_Division, (SphericalHarmonicsL1 lhs, float rhs, MethodInfo * method)); DO_APP_FUNC(0x02B17980, bool, SphericalHarmonicsL1_op_Equality, (SphericalHarmonicsL1 lhs, SphericalHarmonicsL1 rhs, MethodInfo * method)); DO_APP_FUNC(0x02B17AD0, bool, SphericalHarmonicsL1_op_Inequality, (SphericalHarmonicsL1 lhs, SphericalHarmonicsL1 rhs, MethodInfo * method)); -DO_APP_FUNC(0x02B17B80, bool, SphericalHarmonicsL1_Equals, (SphericalHarmonicsL1__Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x02B17CA0, int32_t, SphericalHarmonicsL1_GetHashCode, (SphericalHarmonicsL1__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B17B80, bool, SphericalHarmonicsL1_Equals, (SphericalHarmonicsL1 * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x02B17CA0, int32_t, SphericalHarmonicsL1_GetHashCode, (SphericalHarmonicsL1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02B17CF0, void, SphericalHarmonicsL1__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02B17DF0, void, SphericalHarmonicsL2Utils_GetL1, (SphericalHarmonicsL2 sh, Vector3 L1_R, Vector3 L1_G, Vector3 L1_B, MethodInfo * method)); -DO_APP_FUNC(0x02B17F20, void, SphericalHarmonicsL2Utils_GetL2, (SphericalHarmonicsL2 sh, Vector3 L2_0, Vector3 L2_1, Vector3 L2_2, Vector3 L2_3, Vector3 L2_4, MethodInfo * method)); -DO_APP_FUNC(0x02B180F0, void, SphericalHarmonicsL2Utils_SetL0, (SphericalHarmonicsL2 sh, Vector3 L0, MethodInfo * method)); -DO_APP_FUNC(0x02B18160, void, SphericalHarmonicsL2Utils_SetL1R, (SphericalHarmonicsL2 sh, Vector3 L1_R, MethodInfo * method)); -DO_APP_FUNC(0x02B181D0, void, SphericalHarmonicsL2Utils_SetL1G, (SphericalHarmonicsL2 sh, Vector3 L1_G, MethodInfo * method)); -DO_APP_FUNC(0x02B18250, void, SphericalHarmonicsL2Utils_SetL1B, (SphericalHarmonicsL2 sh, Vector3 L1_B, MethodInfo * method)); -DO_APP_FUNC(0x02B182D0, void, SphericalHarmonicsL2Utils_SetL1, (SphericalHarmonicsL2 sh, Vector3 L1_R, Vector3 L1_G, Vector3 L1_B, MethodInfo * method)); -DO_APP_FUNC(0x02B18410, void, SphericalHarmonicsL2Utils_SetCoefficient, (SphericalHarmonicsL2 sh, int32_t index, Vector3 coefficient, MethodInfo * method)); +DO_APP_FUNC(0x02B17DF0, void, SphericalHarmonicsL2Utils_GetL1, (SphericalHarmonicsL2 sh, Vector3 * L1_R, Vector3 * L1_G, Vector3 * L1_B, MethodInfo * method)); +DO_APP_FUNC(0x02B17F20, void, SphericalHarmonicsL2Utils_GetL2, (SphericalHarmonicsL2 sh, Vector3 * L2_0, Vector3 * L2_1, Vector3 * L2_2, Vector3 * L2_3, Vector3 * L2_4, MethodInfo * method)); +DO_APP_FUNC(0x02B180F0, void, SphericalHarmonicsL2Utils_SetL0, (SphericalHarmonicsL2 * sh, Vector3 L0, MethodInfo * method)); +DO_APP_FUNC(0x02B18160, void, SphericalHarmonicsL2Utils_SetL1R, (SphericalHarmonicsL2 * sh, Vector3 L1_R, MethodInfo * method)); +DO_APP_FUNC(0x02B181D0, void, SphericalHarmonicsL2Utils_SetL1G, (SphericalHarmonicsL2 * sh, Vector3 L1_G, MethodInfo * method)); +DO_APP_FUNC(0x02B18250, void, SphericalHarmonicsL2Utils_SetL1B, (SphericalHarmonicsL2 * sh, Vector3 L1_B, MethodInfo * method)); +DO_APP_FUNC(0x02B182D0, void, SphericalHarmonicsL2Utils_SetL1, (SphericalHarmonicsL2 * sh, Vector3 L1_R, Vector3 L1_G, Vector3 L1_B, MethodInfo * method)); +DO_APP_FUNC(0x02B18410, void, SphericalHarmonicsL2Utils_SetCoefficient, (SphericalHarmonicsL2 * sh, int32_t index, Vector3 coefficient, MethodInfo * method)); DO_APP_FUNC(0x02B18490, Vector3, SphericalHarmonicsL2Utils_GetCoefficient, (SphericalHarmonicsL2 sh, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SphericalHarmonicsL2Utils__ctor, (SphericalHarmonicsL2Utils * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, LensFlareCommonSRP__ctor, (LensFlareCommonSRP * __this, MethodInfo * method)); @@ -88662,7 +100149,7 @@ DO_APP_FUNC(0x02B1F410, void, LensFlareCommonSRP__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02B1F6C0, float, LensFlareCommonSRP__ShapeAttenuationAreaTubeLight_g__Fpo_23_0, (float d, float l, MethodInfo * method)); DO_APP_FUNC(0x02B1F720, float, LensFlareCommonSRP__ShapeAttenuationAreaTubeLight_g__Fwt_23_1, (float d, float l, MethodInfo * method)); DO_APP_FUNC(0x02B1F740, float, LensFlareCommonSRP__ShapeAttenuationAreaTubeLight_g__DiffLineIntegral_23_2, (Vector3 p1, Vector3 p2, MethodInfo * method)); -DO_APP_FUNC(0x02B1FB60, Vector2, LensFlareCommonSRP__DoLensFlareDataDrivenCommon_g__ComputeLocalSize_33_0, (Vector2 rayOff, Vector2 rayOff0, Vector2 curSize, AnimationCurve * distortionCurve, LensFlareCommonSRP_c_DisplayClass33_0 param_00017153, LensFlareCommonSRP_c_DisplayClass33_1 param_00017154, MethodInfo * method)); +DO_APP_FUNC(0x02B1FB60, Vector2, LensFlareCommonSRP__DoLensFlareDataDrivenCommon_g__ComputeLocalSize_33_0, (Vector2 rayOff, Vector2 rayOff0, Vector2 curSize, AnimationCurve * distortionCurve, LensFlareCommonSRP_c_DisplayClass33_0 * param_00017153, LensFlareCommonSRP_c_DisplayClass33_1 * param_00017154, MethodInfo * method)); DO_APP_FUNC(0x02B1FDD0, float, LensFlareCommonSRP__DoLensFlareDataDrivenCommon_g__RandomRange_33_1, (float min, float max, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, LensFlareDataSRP *, LensFlareComponentSRP_get_lensFlareData, (LensFlareComponentSRP * __this, MethodInfo * method)); DO_APP_FUNC(0x02B1FDE0, void, LensFlareComponentSRP_set_lensFlareData, (LensFlareComponentSRP * __this, LensFlareDataSRP * value, MethodInfo * method)); @@ -88718,16 +100205,16 @@ DO_APP_FUNC(0x02B231A0, void, BufferedRTHandleSystem__ctor, (BufferedRTHandleSys DO_APP_FUNC(0x02B23310, void, PowerOfTwoTextureAtlas__ctor, (PowerOfTwoTextureAtlas * __this, int32_t size, int32_t mipPadding, GraphicsFormat__Enum format, FilterMode__Enum filterMode, String * name, bool useMipMap, MethodInfo * method)); DO_APP_FUNC(0x003C7400, int32_t, PowerOfTwoTextureAtlas_get_mipPadding, (PowerOfTwoTextureAtlas * __this, MethodInfo * method)); DO_APP_FUNC(0x02B23480, int32_t, PowerOfTwoTextureAtlas_GetTexturePadding, (PowerOfTwoTextureAtlas * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B234B0, Vector4, PowerOfTwoTextureAtlas_GetPayloadScaleOffset, (PowerOfTwoTextureAtlas * __this, Texture * texture, Vector4 scaleOffset, MethodInfo * method)); -DO_APP_FUNC(0x02B23630, Vector4, PowerOfTwoTextureAtlas_GetPayloadScaleOffset_1, (Vector2 textureSize, Vector2 paddingSize, Vector4 scaleOffset, MethodInfo * method)); +DO_APP_FUNC(0x02B234B0, Vector4, PowerOfTwoTextureAtlas_GetPayloadScaleOffset, (PowerOfTwoTextureAtlas * __this, Texture * texture, Vector4 * scaleOffset, MethodInfo * method)); +DO_APP_FUNC(0x02B23630, Vector4, PowerOfTwoTextureAtlas_GetPayloadScaleOffset_1, (Vector2 * textureSize, Vector2 * paddingSize, Vector4 * scaleOffset, MethodInfo * method)); DO_APP_FUNC(0x02B23700, void, PowerOfTwoTextureAtlas_Blit2DTexture, (PowerOfTwoTextureAtlas * __this, CommandBuffer * cmd, Vector4 scaleOffset, Texture * texture, Vector4 sourceScaleOffset, bool blitMips, PowerOfTwoTextureAtlas_BlitType__Enum blitType, MethodInfo * method)); DO_APP_FUNC(0x02B23B40, void, PowerOfTwoTextureAtlas_BlitTexture, (PowerOfTwoTextureAtlas * __this, CommandBuffer * cmd, Vector4 scaleOffset, Texture * texture, Vector4 sourceScaleOffset, bool blitMips, int32_t overrideInstanceID, MethodInfo * method)); DO_APP_FUNC(0x02B23C10, void, PowerOfTwoTextureAtlas_BlitTextureMultiply, (PowerOfTwoTextureAtlas * __this, CommandBuffer * cmd, Vector4 scaleOffset, Texture * texture, Vector4 sourceScaleOffset, bool blitMips, int32_t overrideInstanceID, MethodInfo * method)); DO_APP_FUNC(0x02B23CF0, void, PowerOfTwoTextureAtlas_BlitOctahedralTexture, (PowerOfTwoTextureAtlas * __this, CommandBuffer * cmd, Vector4 scaleOffset, Texture * texture, Vector4 sourceScaleOffset, bool blitMips, int32_t overrideInstanceID, MethodInfo * method)); DO_APP_FUNC(0x02B23DD0, void, PowerOfTwoTextureAtlas_BlitOctahedralTextureMultiply, (PowerOfTwoTextureAtlas * __this, CommandBuffer * cmd, Vector4 scaleOffset, Texture * texture, Vector4 sourceScaleOffset, bool blitMips, int32_t overrideInstanceID, MethodInfo * method)); -DO_APP_FUNC(0x02B23EB0, void, PowerOfTwoTextureAtlas_TextureSizeToPowerOfTwo, (PowerOfTwoTextureAtlas * __this, Texture * texture, int32_t width, int32_t height, MethodInfo * method)); +DO_APP_FUNC(0x02B23EB0, void, PowerOfTwoTextureAtlas_TextureSizeToPowerOfTwo, (PowerOfTwoTextureAtlas * __this, Texture * texture, int32_t * width, int32_t * height, MethodInfo * method)); DO_APP_FUNC(0x02B23F60, Vector2, PowerOfTwoTextureAtlas_GetPowerOfTwoTextureSize, (PowerOfTwoTextureAtlas * __this, Texture * texture, MethodInfo * method)); -DO_APP_FUNC(0x02B24060, bool, PowerOfTwoTextureAtlas_AllocateTexture, (PowerOfTwoTextureAtlas * __this, CommandBuffer * cmd, Vector4 scaleOffset, Texture * texture, int32_t width, int32_t height, int32_t overrideInstanceID, MethodInfo * method)); +DO_APP_FUNC(0x02B24060, bool, PowerOfTwoTextureAtlas_AllocateTexture, (PowerOfTwoTextureAtlas * __this, CommandBuffer * cmd, Vector4 * scaleOffset, Texture * texture, int32_t width, int32_t height, int32_t overrideInstanceID, MethodInfo * method)); DO_APP_FUNC(0x02B24340, void, PowerOfTwoTextureAtlas_ResetRequestedTexture, (PowerOfTwoTextureAtlas * __this, MethodInfo * method)); DO_APP_FUNC(0x02B243D0, bool, PowerOfTwoTextureAtlas_ReserveSpace, (PowerOfTwoTextureAtlas * __this, Texture * texture, MethodInfo * method)); DO_APP_FUNC(0x02B24460, bool, PowerOfTwoTextureAtlas_ReserveSpace_1, (PowerOfTwoTextureAtlas * __this, Texture * texture, int32_t width, int32_t height, MethodInfo * method)); @@ -88740,7 +100227,7 @@ DO_APP_FUNC(0x02B25330, void, PowerOfTwoTextureAtlas_c__cctor, (MethodInfo * met DO_APP_FUNC(0x003AE050, void, PowerOfTwoTextureAtlas_c__ctor, (PowerOfTwoTextureAtlas_c * __this, MethodInfo * method)); DO_APP_FUNC(0x02B253E0, int32_t, PowerOfTwoTextureAtlas_c__RelayoutEntries_b__23_0, (PowerOfTwoTextureAtlas_c * __this, ValueTuple_2_Int32_UnityEngine_Vector2Int_ c1, ValueTuple_2_Int32_UnityEngine_Vector2Int_ c2, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C97E20, PowerOfTwoTextureAtlas_c__RelayoutEntries_b__23_0__MethodInfo); -DO_APP_FUNC(0x02B254D0, void, RTHandle_SetCustomHandleProperties, (RTHandle * __this, RTHandleProperties properties, MethodInfo * method)); +DO_APP_FUNC(0x02B254D0, void, RTHandle_SetCustomHandleProperties, (RTHandle * __this, RTHandleProperties * properties, MethodInfo * method)); DO_APP_FUNC(0x0058A3E0, void, RTHandle_ClearCustomHandleProperties, (RTHandle * __this, MethodInfo * method)); DO_APP_FUNC(0x018060D0, Vector2, RTHandle_get_scaleFactor, (RTHandle * __this, MethodInfo * method)); DO_APP_FUNC(0x018060F0, void, RTHandle_set_scaleFactor, (RTHandle * __this, Vector2 value, MethodInfo * method)); @@ -88799,7 +100286,7 @@ DO_APP_FUNC(0x02B276D0, void, RTHandleSystem_Remove, (RTHandleSystem * __this, R DO_APP_FUNC(0x02B27730, void, RTHandleSystem_ResetReferenceSize, (RTHandleSystem * __this, int32_t width, int32_t height, MethodInfo * method)); DO_APP_FUNC(0x02B27760, void, RTHandleSystem_SetReferenceSize, (RTHandleSystem * __this, int32_t width, int32_t height, MethodInfo * method)); DO_APP_FUNC(0x02B27780, void, RTHandleSystem_SetReferenceSize_1, (RTHandleSystem * __this, int32_t width, int32_t height, bool reset, MethodInfo * method)); -DO_APP_FUNC(0x02B279C0, Vector2, RTHandleSystem_CalculateRatioAgainstMaxSize, (RTHandleSystem * __this, Vector2Int viewportSize, MethodInfo * method)); +DO_APP_FUNC(0x02B279C0, Vector2, RTHandleSystem_CalculateRatioAgainstMaxSize, (RTHandleSystem * __this, Vector2Int * viewportSize, MethodInfo * method)); DO_APP_FUNC(0x02B27BD0, void, RTHandleSystem_SetHardwareDynamicResolutionState, (RTHandleSystem * __this, bool enableHWDynamicRes, MethodInfo * method)); DO_APP_FUNC(0x02B27E20, void, RTHandleSystem_SwitchResizeMode, (RTHandleSystem * __this, RTHandle * rth, RTHandleSystem_ResizeMode__Enum mode, MethodInfo * method)); DO_APP_FUNC(0x02B27F40, void, RTHandleSystem_DemandResize, (RTHandleSystem * __this, RTHandle * rth, MethodInfo * method)); @@ -88819,10 +100306,10 @@ DO_APP_FUNC(0x02B2A7E0, RTHandle *, RTHandleSystem_Alloc_7, (RTHandleSystem * __ DO_APP_FUNC(0x02B2A940, RTHandle *, RTHandleSystem_Alloc_8, (RTHandle * tex, MethodInfo * method)); DO_APP_FUNC(0x02B2A9A0, String *, RTHandleSystem_DumpRTInfo, (RTHandleSystem * __this, MethodInfo * method)); DO_APP_FUNC(0x02B2AF40, void, AtlasAllocator__ctor, (AtlasAllocator * __this, int32_t width, int32_t height, bool potPadding, MethodInfo * method)); -DO_APP_FUNC(0x02B2B320, bool, AtlasAllocator_Allocate, (AtlasAllocator * __this, Vector4 result, int32_t width, int32_t height, MethodInfo * method)); +DO_APP_FUNC(0x02B2B320, bool, AtlasAllocator_Allocate, (AtlasAllocator * __this, Vector4 * result, int32_t width, int32_t height, MethodInfo * method)); DO_APP_FUNC(0x02B2B3B0, void, AtlasAllocator_Reset, (AtlasAllocator * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B2B410, AtlasAllocator_AtlasNode *, AtlasAllocator_AtlasNode_Allocate, (AtlasAllocator_AtlasNode * __this, ObjectPool_1_AtlasAllocator_AtlasNode_ * pool, int32_t width, int32_t height, bool powerOfTwoPadding, MethodInfo * method)); -DO_APP_FUNC(0x02B2B780, void, AtlasAllocator_AtlasNode_Release, (AtlasAllocator_AtlasNode * __this, ObjectPool_1_AtlasAllocator_AtlasNode_ * pool, MethodInfo * method)); +DO_APP_FUNC(0x02B2B410, AtlasAllocator_AtlasNode *, AtlasAllocator_AtlasNode_Allocate, (AtlasAllocator_AtlasNode * __this, ObjectPool_1_AtlasAllocator_AtlasNode_ * * pool, int32_t width, int32_t height, bool powerOfTwoPadding, MethodInfo * method)); +DO_APP_FUNC(0x02B2B780, void, AtlasAllocator_AtlasNode_Release, (AtlasAllocator_AtlasNode * __this, ObjectPool_1_AtlasAllocator_AtlasNode_ * * pool, MethodInfo * method)); DO_APP_FUNC(0x02B2B910, void, AtlasAllocator_AtlasNode__ctor, (AtlasAllocator_AtlasNode * __this, MethodInfo * method)); DO_APP_FUNC(0x02B2B920, void, AtlasAllocator_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AtlasAllocator_c__ctor, (AtlasAllocator_c * __this, MethodInfo * method)); @@ -88845,51 +100332,51 @@ DO_APP_FUNC(0x02B2CD00, void, Texture2DAtlas_MarkGPUTextureInvalid, (Texture2DAt DO_APP_FUNC(0x02B2CD80, void, Texture2DAtlas_BlitTexture, (Texture2DAtlas * __this, CommandBuffer * cmd, Vector4 scaleOffset, Texture * texture, Vector4 sourceScaleOffset, bool blitMips, int32_t overrideInstanceID, MethodInfo * method)); DO_APP_FUNC(0x02B2CF10, void, Texture2DAtlas_BlitOctahedralTexture, (Texture2DAtlas * __this, CommandBuffer * cmd, Vector4 scaleOffset, Texture * texture, Vector4 sourceScaleOffset, bool blitMips, int32_t overrideInstanceID, MethodInfo * method)); DO_APP_FUNC(0x02B2CF70, void, Texture2DAtlas_BlitCubeTexture2D, (Texture2DAtlas * __this, CommandBuffer * cmd, Vector4 scaleOffset, Texture * texture, bool blitMips, int32_t overrideInstanceID, MethodInfo * method)); -DO_APP_FUNC(0x02B2D110, bool, Texture2DAtlas_AllocateTexture, (Texture2DAtlas * __this, CommandBuffer * cmd, Vector4 scaleOffset, Texture * texture, int32_t width, int32_t height, int32_t overrideInstanceID, MethodInfo * method)); -DO_APP_FUNC(0x02B2D340, bool, Texture2DAtlas_AllocateTextureWithoutBlit, (Texture2DAtlas * __this, Texture * texture, int32_t width, int32_t height, Vector4 scaleOffset, MethodInfo * method)); -DO_APP_FUNC(0x02B2D3B0, bool, Texture2DAtlas_AllocateTextureWithoutBlit_1, (Texture2DAtlas * __this, int32_t instanceId, int32_t width, int32_t height, Vector4 scaleOffset, MethodInfo * method)); +DO_APP_FUNC(0x02B2D110, bool, Texture2DAtlas_AllocateTexture, (Texture2DAtlas * __this, CommandBuffer * cmd, Vector4 * scaleOffset, Texture * texture, int32_t width, int32_t height, int32_t overrideInstanceID, MethodInfo * method)); +DO_APP_FUNC(0x02B2D340, bool, Texture2DAtlas_AllocateTextureWithoutBlit, (Texture2DAtlas * __this, Texture * texture, int32_t width, int32_t height, Vector4 * scaleOffset, MethodInfo * method)); +DO_APP_FUNC(0x02B2D3B0, bool, Texture2DAtlas_AllocateTextureWithoutBlit_1, (Texture2DAtlas * __this, int32_t instanceId, int32_t width, int32_t height, Vector4 * scaleOffset, MethodInfo * method)); DO_APP_FUNC(0x02B2D630, int32_t, Texture2DAtlas_GetTextureHash, (Texture2DAtlas * __this, Texture * textureA, Texture * textureB, MethodInfo * method)); DO_APP_FUNC(0x02B2D6A0, int32_t, Texture2DAtlas_GetTextureID, (Texture2DAtlas * __this, Texture * texture, MethodInfo * method)); DO_APP_FUNC(0x02B2D6C0, int32_t, Texture2DAtlas_GetTextureID_1, (Texture2DAtlas * __this, Texture * textureA, Texture * textureB, MethodInfo * method)); -DO_APP_FUNC(0x02B2D710, bool, Texture2DAtlas_IsCached, (Texture2DAtlas * __this, Vector4 scaleOffset, Texture * textureA, Texture * textureB, MethodInfo * method)); -DO_APP_FUNC(0x02B2D780, bool, Texture2DAtlas_IsCached_1, (Texture2DAtlas * __this, Vector4 scaleOffset, Texture * texture, MethodInfo * method)); -DO_APP_FUNC(0x02B2D7C0, bool, Texture2DAtlas_IsCached_2, (Texture2DAtlas * __this, Vector4 scaleOffset, int32_t id, MethodInfo * method)); +DO_APP_FUNC(0x02B2D710, bool, Texture2DAtlas_IsCached, (Texture2DAtlas * __this, Vector4 * scaleOffset, Texture * textureA, Texture * textureB, MethodInfo * method)); +DO_APP_FUNC(0x02B2D780, bool, Texture2DAtlas_IsCached_1, (Texture2DAtlas * __this, Vector4 * scaleOffset, Texture * texture, MethodInfo * method)); +DO_APP_FUNC(0x02B2D7C0, bool, Texture2DAtlas_IsCached_2, (Texture2DAtlas * __this, Vector4 * scaleOffset, int32_t id, MethodInfo * method)); DO_APP_FUNC(0x02B2D880, Vector2Int, Texture2DAtlas_GetCachedTextureSize, (Texture2DAtlas * __this, int32_t id, MethodInfo * method)); DO_APP_FUNC(0x02B2D930, bool, Texture2DAtlas_NeedsUpdate, (Texture2DAtlas * __this, Texture * texture, bool needMips, MethodInfo * method)); DO_APP_FUNC(0x02B2DD90, bool, Texture2DAtlas_NeedsUpdate_1, (Texture2DAtlas * __this, Texture * textureA, Texture * textureB, bool needMips, MethodInfo * method)); -DO_APP_FUNC(0x02B2E6B0, bool, Texture2DAtlas_AddTexture, (Texture2DAtlas * __this, CommandBuffer * cmd, Vector4 scaleOffset, Texture * texture, MethodInfo * method)); -DO_APP_FUNC(0x02B2E790, bool, Texture2DAtlas_UpdateTexture, (Texture2DAtlas * __this, CommandBuffer * cmd, Texture * oldTexture, Texture * newTexture, Vector4 scaleOffset, Vector4 sourceScaleOffset, bool updateIfNeeded, bool blitMips, MethodInfo * method)); -DO_APP_FUNC(0x02B2E970, bool, Texture2DAtlas_UpdateTexture_1, (Texture2DAtlas * __this, CommandBuffer * cmd, Texture * texture, Vector4 scaleOffset, bool updateIfNeeded, bool blitMips, MethodInfo * method)); -DO_APP_FUNC(0x02B2EA50, bool, Texture2DAtlas_EnsureTextureSlot, (Texture2DAtlas * __this, bool isUploadNeeded, Vector4 scaleBias, int32_t key, int32_t width, int32_t height, MethodInfo * method)); +DO_APP_FUNC(0x02B2E6B0, bool, Texture2DAtlas_AddTexture, (Texture2DAtlas * __this, CommandBuffer * cmd, Vector4 * scaleOffset, Texture * texture, MethodInfo * method)); +DO_APP_FUNC(0x02B2E790, bool, Texture2DAtlas_UpdateTexture, (Texture2DAtlas * __this, CommandBuffer * cmd, Texture * oldTexture, Texture * newTexture, Vector4 * scaleOffset, Vector4 sourceScaleOffset, bool updateIfNeeded, bool blitMips, MethodInfo * method)); +DO_APP_FUNC(0x02B2E970, bool, Texture2DAtlas_UpdateTexture_1, (Texture2DAtlas * __this, CommandBuffer * cmd, Texture * texture, Vector4 * scaleOffset, bool updateIfNeeded, bool blitMips, MethodInfo * method)); +DO_APP_FUNC(0x02B2EA50, bool, Texture2DAtlas_EnsureTextureSlot, (Texture2DAtlas * __this, bool * isUploadNeeded, Vector4 * scaleBias, int32_t key, int32_t width, int32_t height, MethodInfo * method)); DO_APP_FUNC(0x02B2EC70, void, Texture2DAtlas__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02B2ECD0, void, AtlasAllocatorDynamic__ctor, (AtlasAllocatorDynamic * __this, int32_t width, int32_t height, int32_t capacityAllocations, MethodInfo * method)); -DO_APP_FUNC(0x02B2EF50, bool, AtlasAllocatorDynamic_Allocate, (AtlasAllocatorDynamic * __this, Vector4 result, int32_t key, int32_t width, int32_t height, MethodInfo * method)); +DO_APP_FUNC(0x02B2EF50, bool, AtlasAllocatorDynamic_Allocate, (AtlasAllocatorDynamic * __this, Vector4 * result, int32_t key, int32_t width, int32_t height, MethodInfo * method)); DO_APP_FUNC(0x02B2F0A0, void, AtlasAllocatorDynamic_Release, (AtlasAllocatorDynamic * __this, int32_t key, MethodInfo * method)); DO_APP_FUNC(0x02B2F1A0, void, AtlasAllocatorDynamic_Release_1, (AtlasAllocatorDynamic * __this, MethodInfo * method)); DO_APP_FUNC(0x02B2F2D0, String *, AtlasAllocatorDynamic_DebugStringFromRoot, (AtlasAllocatorDynamic * __this, int32_t depthMax, MethodInfo * method)); -DO_APP_FUNC(0x02B2F340, void, AtlasAllocatorDynamic_DebugStringFromNode, (AtlasAllocatorDynamic * __this, String * res, int16_t n, int32_t depthCurrent, int32_t depthMax, MethodInfo * method)); +DO_APP_FUNC(0x02B2F340, void, AtlasAllocatorDynamic_DebugStringFromNode, (AtlasAllocatorDynamic * __this, String * * res, int16_t n, int32_t depthCurrent, int32_t depthMax, MethodInfo * method)); DO_APP_FUNC(0x02B2FB40, void, AtlasAllocatorDynamic_AtlasNodePool__ctor, (AtlasAllocatorDynamic_AtlasNodePool * __this, int16_t capacity, MethodInfo * method)); DO_APP_FUNC(0x02B2FBF0, void, AtlasAllocatorDynamic_AtlasNodePool_Dispose, (AtlasAllocatorDynamic_AtlasNodePool * __this, MethodInfo * method)); DO_APP_FUNC(0x02B2FC50, void, AtlasAllocatorDynamic_AtlasNodePool_Clear, (AtlasAllocatorDynamic_AtlasNodePool * __this, MethodInfo * method)); DO_APP_FUNC(0x02B2FC60, int16_t, AtlasAllocatorDynamic_AtlasNodePool_AtlasNodeCreate, (AtlasAllocatorDynamic_AtlasNodePool * __this, int16_t parent, MethodInfo * method)); DO_APP_FUNC(0x02B2FE00, void, AtlasAllocatorDynamic_AtlasNodePool_AtlasNodeFree, (AtlasAllocatorDynamic_AtlasNodePool * __this, int16_t index, MethodInfo * method)); -DO_APP_FUNC(0x02B2FE40, void, AtlasAllocatorDynamic_AtlasNode__ctor, (AtlasAllocatorDynamic_AtlasNode__Boxed * __this, int16_t self, int16_t parent, MethodInfo * method)); -DO_APP_FUNC(0x02B2FEA0, bool, AtlasAllocatorDynamic_AtlasNode_IsOccupied, (AtlasAllocatorDynamic_AtlasNode__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B2FEB0, void, AtlasAllocatorDynamic_AtlasNode_SetIsOccupied, (AtlasAllocatorDynamic_AtlasNode__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B2FEC0, void, AtlasAllocatorDynamic_AtlasNode_ClearIsOccupied, (AtlasAllocatorDynamic_AtlasNode__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B2FED0, bool, AtlasAllocatorDynamic_AtlasNode_IsLeafNode, (AtlasAllocatorDynamic_AtlasNode__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B2FEE0, int16_t, AtlasAllocatorDynamic_AtlasNode_Allocate, (AtlasAllocatorDynamic_AtlasNode__Boxed * __this, AtlasAllocatorDynamic_AtlasNodePool * pool, int32_t width, int32_t height, MethodInfo * method)); -DO_APP_FUNC(0x02B303C0, void, AtlasAllocatorDynamic_AtlasNode_ReleaseChildren, (AtlasAllocatorDynamic_AtlasNode__Boxed * __this, AtlasAllocatorDynamic_AtlasNodePool * pool, MethodInfo * method)); -DO_APP_FUNC(0x02B304B0, void, AtlasAllocatorDynamic_AtlasNode_ReleaseAndMerge, (AtlasAllocatorDynamic_AtlasNode__Boxed * __this, AtlasAllocatorDynamic_AtlasNodePool * pool, MethodInfo * method)); -DO_APP_FUNC(0x02B305D0, bool, AtlasAllocatorDynamic_AtlasNode_IsMergeNeeded, (AtlasAllocatorDynamic_AtlasNode__Boxed * __this, AtlasAllocatorDynamic_AtlasNodePool * pool, MethodInfo * method)); +DO_APP_FUNC(0x02B2FE40, void, AtlasAllocatorDynamic_AtlasNode__ctor, (AtlasAllocatorDynamic_AtlasNode * __this, int16_t self, int16_t parent, MethodInfo * method)); +DO_APP_FUNC(0x02B2FEA0, bool, AtlasAllocatorDynamic_AtlasNode_IsOccupied, (AtlasAllocatorDynamic_AtlasNode * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B2FEB0, void, AtlasAllocatorDynamic_AtlasNode_SetIsOccupied, (AtlasAllocatorDynamic_AtlasNode * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B2FEC0, void, AtlasAllocatorDynamic_AtlasNode_ClearIsOccupied, (AtlasAllocatorDynamic_AtlasNode * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B2FED0, bool, AtlasAllocatorDynamic_AtlasNode_IsLeafNode, (AtlasAllocatorDynamic_AtlasNode * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B2FEE0, int16_t, AtlasAllocatorDynamic_AtlasNode_Allocate, (AtlasAllocatorDynamic_AtlasNode * __this, AtlasAllocatorDynamic_AtlasNodePool * pool, int32_t width, int32_t height, MethodInfo * method)); +DO_APP_FUNC(0x02B303C0, void, AtlasAllocatorDynamic_AtlasNode_ReleaseChildren, (AtlasAllocatorDynamic_AtlasNode * __this, AtlasAllocatorDynamic_AtlasNodePool * pool, MethodInfo * method)); +DO_APP_FUNC(0x02B304B0, void, AtlasAllocatorDynamic_AtlasNode_ReleaseAndMerge, (AtlasAllocatorDynamic_AtlasNode * __this, AtlasAllocatorDynamic_AtlasNodePool * pool, MethodInfo * method)); +DO_APP_FUNC(0x02B305D0, bool, AtlasAllocatorDynamic_AtlasNode_IsMergeNeeded, (AtlasAllocatorDynamic_AtlasNode * __this, AtlasAllocatorDynamic_AtlasNodePool * pool, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, RTHandle *, Texture2DAtlasDynamic_get_AtlasTexture, (Texture2DAtlasDynamic * __this, MethodInfo * method)); DO_APP_FUNC(0x02B306B0, void, Texture2DAtlasDynamic__ctor, (Texture2DAtlasDynamic * __this, int32_t width, int32_t height, int32_t capacity, GraphicsFormat__Enum format, MethodInfo * method)); DO_APP_FUNC(0x02B30990, void, Texture2DAtlasDynamic__ctor_1, (Texture2DAtlasDynamic * __this, int32_t width, int32_t height, int32_t capacity, RTHandle * atlasTexture, MethodInfo * method)); DO_APP_FUNC(0x02B30BF0, void, Texture2DAtlasDynamic_Release, (Texture2DAtlasDynamic * __this, MethodInfo * method)); DO_APP_FUNC(0x02B30CB0, void, Texture2DAtlasDynamic_ResetAllocator, (Texture2DAtlasDynamic * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B30E60, bool, Texture2DAtlasDynamic_AddTexture, (Texture2DAtlasDynamic * __this, CommandBuffer * cmd, Vector4 scaleOffset, Texture * texture, MethodInfo * method)); -DO_APP_FUNC(0x02B311B0, bool, Texture2DAtlasDynamic_IsCached, (Texture2DAtlasDynamic * __this, Vector4 scaleOffset, int32_t key, MethodInfo * method)); -DO_APP_FUNC(0x02B31220, bool, Texture2DAtlasDynamic_EnsureTextureSlot, (Texture2DAtlasDynamic * __this, bool isUploadNeeded, Vector4 scaleOffset, int32_t key, int32_t width, int32_t height, MethodInfo * method)); +DO_APP_FUNC(0x02B30E60, bool, Texture2DAtlasDynamic_AddTexture, (Texture2DAtlasDynamic * __this, CommandBuffer * cmd, Vector4 * scaleOffset, Texture * texture, MethodInfo * method)); +DO_APP_FUNC(0x02B311B0, bool, Texture2DAtlasDynamic_IsCached, (Texture2DAtlasDynamic * __this, Vector4 * scaleOffset, int32_t key, MethodInfo * method)); +DO_APP_FUNC(0x02B31220, bool, Texture2DAtlasDynamic_EnsureTextureSlot, (Texture2DAtlasDynamic * __this, bool * isUploadNeeded, Vector4 * scaleOffset, int32_t key, int32_t width, int32_t height, MethodInfo * method)); DO_APP_FUNC(0x02B313A0, void, Texture2DAtlasDynamic_ReleaseTextureSlot, (Texture2DAtlasDynamic * __this, int32_t key, MethodInfo * method)); DO_APP_FUNC(0x02B314F0, void, TextureXR_set_maxViews, (int32_t value, MethodInfo * method)); DO_APP_FUNC(0x02B31550, int32_t, TextureXR_get_slices, (MethodInfo * method)); @@ -88908,128 +100395,128 @@ DO_APP_FUNC(0x02B33650, Texture *, TextureXR_CreateBlackUIntTextureArray, (Comma DO_APP_FUNC(0x02B33AB0, Texture *, TextureXR_CreateBlackUintTexture, (CommandBuffer * cmd, ComputeShader * clearR32_UIntShader, MethodInfo * method)); DO_APP_FUNC(0x02B33F10, Texture3D *, TextureXR_CreateBlackTexture3D, (String * name, MethodInfo * method)); DO_APP_FUNC(0x02B34070, void, TextureXR__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02B340B0, void, ArrayExtensions_ResizeArray, (TransformAccessArray array, int32_t capacity, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1F0, uint32_t, BitArray8_get_capacity, (BitArray8__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02949E00, bool, BitArray8_get_allFalse, (BitArray8__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B34260, bool, BitArray8_get_allTrue, (BitArray8__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B34270, String *, BitArray8_get_humanizedData, (BitArray8__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B34420, bool, BitArray8_get_Item, (BitArray8__Boxed * __this, uint32_t index, MethodInfo * method)); -DO_APP_FUNC(0x02B34440, void, BitArray8_set_Item, (BitArray8__Boxed * __this, uint32_t index, bool value, MethodInfo * method)); -DO_APP_FUNC(0x00C3C200, void, BitArray8__ctor, (BitArray8__Boxed * __this, uint8_t initValue, MethodInfo * method)); -DO_APP_FUNC(0x02B34460, void, BitArray8__ctor_1, (BitArray8__Boxed * __this, IEnumerable_1_System_UInt32_ * bitIndexTrue, MethodInfo * method)); +DO_APP_FUNC(0x02B340B0, void, ArrayExtensions_ResizeArray, (TransformAccessArray * array, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1F0, uint32_t, BitArray8_get_capacity, (BitArray8 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02949E00, bool, BitArray8_get_allFalse, (BitArray8 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B34260, bool, BitArray8_get_allTrue, (BitArray8 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B34270, String *, BitArray8_get_humanizedData, (BitArray8 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B34420, bool, BitArray8_get_Item, (BitArray8 * __this, uint32_t index, MethodInfo * method)); +DO_APP_FUNC(0x02B34440, void, BitArray8_set_Item, (BitArray8 * __this, uint32_t index, bool value, MethodInfo * method)); +DO_APP_FUNC(0x00C3C200, void, BitArray8__ctor, (BitArray8 * __this, uint8_t initValue, MethodInfo * method)); +DO_APP_FUNC(0x02B34460, void, BitArray8__ctor_1, (BitArray8 * __this, IEnumerable_1_System_UInt32_ * bitIndexTrue, MethodInfo * method)); DO_APP_FUNC(0x02B34510, BitArray8, BitArray8_op_OnesComplement, (BitArray8 a, MethodInfo * method)); DO_APP_FUNC(0x02B34520, BitArray8, BitArray8_op_BitwiseOr, (BitArray8 a, BitArray8 b, MethodInfo * method)); DO_APP_FUNC(0x02B34530, BitArray8, BitArray8_op_BitwiseAnd, (BitArray8 a, BitArray8 b, MethodInfo * method)); -DO_APP_FUNC(0x02B34540, IBitArray *, BitArray8_BitAnd, (BitArray8__Boxed * __this, IBitArray * other, MethodInfo * method)); -DO_APP_FUNC(0x02B345C0, IBitArray *, BitArray8_BitOr, (BitArray8__Boxed * __this, IBitArray * other, MethodInfo * method)); -DO_APP_FUNC(0x02B34640, IBitArray *, BitArray8_BitNot, (BitArray8__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B34540, IBitArray *, BitArray8_BitAnd, (BitArray8 * __this, IBitArray * other, MethodInfo * method)); +DO_APP_FUNC(0x02B345C0, IBitArray *, BitArray8_BitOr, (BitArray8 * __this, IBitArray * other, MethodInfo * method)); +DO_APP_FUNC(0x02B34640, IBitArray *, BitArray8_BitNot, (BitArray8 * __this, MethodInfo * method)); DO_APP_FUNC(0x02B34690, bool, BitArray8_op_Equality, (BitArray8 a, BitArray8 b, MethodInfo * method)); DO_APP_FUNC(0x02B346A0, bool, BitArray8_op_Inequality, (BitArray8 a, BitArray8 b, MethodInfo * method)); -DO_APP_FUNC(0x02B346B0, bool, BitArray8_Equals, (BitArray8__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02B34740, int32_t, BitArray8_GetHashCode, (BitArray8__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003D2F30, uint32_t, BitArray16_get_capacity, (BitArray16__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B34750, bool, BitArray16_get_allFalse, (BitArray16__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B34760, bool, BitArray16_get_allTrue, (BitArray16__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B34770, String *, BitArray16_get_humanizedData, (BitArray16__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B349C0, bool, BitArray16_get_Item, (BitArray16__Boxed * __this, uint32_t index, MethodInfo * method)); -DO_APP_FUNC(0x02B349E0, void, BitArray16_set_Item, (BitArray16__Boxed * __this, uint32_t index, bool value, MethodInfo * method)); -DO_APP_FUNC(0x00C2E000, void, BitArray16__ctor, (BitArray16__Boxed * __this, uint16_t initValue, MethodInfo * method)); -DO_APP_FUNC(0x02B34A00, void, BitArray16__ctor_1, (BitArray16__Boxed * __this, IEnumerable_1_System_UInt32_ * bitIndexTrue, MethodInfo * method)); +DO_APP_FUNC(0x02B346B0, bool, BitArray8_Equals, (BitArray8 * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02B34740, int32_t, BitArray8_GetHashCode, (BitArray8 * __this, MethodInfo * method)); +DO_APP_FUNC(0x003D2F30, uint32_t, BitArray16_get_capacity, (BitArray16 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B34750, bool, BitArray16_get_allFalse, (BitArray16 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B34760, bool, BitArray16_get_allTrue, (BitArray16 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B34770, String *, BitArray16_get_humanizedData, (BitArray16 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B349C0, bool, BitArray16_get_Item, (BitArray16 * __this, uint32_t index, MethodInfo * method)); +DO_APP_FUNC(0x02B349E0, void, BitArray16_set_Item, (BitArray16 * __this, uint32_t index, bool value, MethodInfo * method)); +DO_APP_FUNC(0x00C2E000, void, BitArray16__ctor, (BitArray16 * __this, uint16_t initValue, MethodInfo * method)); +DO_APP_FUNC(0x02B34A00, void, BitArray16__ctor_1, (BitArray16 * __this, IEnumerable_1_System_UInt32_ * bitIndexTrue, MethodInfo * method)); DO_APP_FUNC(0x02B34AB0, BitArray16, BitArray16_op_OnesComplement, (BitArray16 a, MethodInfo * method)); DO_APP_FUNC(0x02B34AC0, BitArray16, BitArray16_op_BitwiseOr, (BitArray16 a, BitArray16 b, MethodInfo * method)); DO_APP_FUNC(0x02B34AD0, BitArray16, BitArray16_op_BitwiseAnd, (BitArray16 a, BitArray16 b, MethodInfo * method)); -DO_APP_FUNC(0x02B34AE0, IBitArray *, BitArray16_BitAnd, (BitArray16__Boxed * __this, IBitArray * other, MethodInfo * method)); -DO_APP_FUNC(0x02B34B60, IBitArray *, BitArray16_BitOr, (BitArray16__Boxed * __this, IBitArray * other, MethodInfo * method)); -DO_APP_FUNC(0x02B34BE0, IBitArray *, BitArray16_BitNot, (BitArray16__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B34AE0, IBitArray *, BitArray16_BitAnd, (BitArray16 * __this, IBitArray * other, MethodInfo * method)); +DO_APP_FUNC(0x02B34B60, IBitArray *, BitArray16_BitOr, (BitArray16 * __this, IBitArray * other, MethodInfo * method)); +DO_APP_FUNC(0x02B34BE0, IBitArray *, BitArray16_BitNot, (BitArray16 * __this, MethodInfo * method)); DO_APP_FUNC(0x02B34C30, bool, BitArray16_op_Equality, (BitArray16 a, BitArray16 b, MethodInfo * method)); DO_APP_FUNC(0x02B34C40, bool, BitArray16_op_Inequality, (BitArray16 a, BitArray16 b, MethodInfo * method)); -DO_APP_FUNC(0x02B34C50, bool, BitArray16_Equals, (BitArray16__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02B34CE0, int32_t, BitArray16_GetHashCode, (BitArray16__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00AEF240, uint32_t, BitArray32_get_capacity, (BitArray32__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00AFDFA0, bool, BitArray32_get_allFalse, (BitArray32__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B34CF0, bool, BitArray32_get_allTrue, (BitArray32__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B34D00, String *, BitArray32_get_humanizedVersion, (BitArray32__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B34D70, String *, BitArray32_get_humanizedData, (BitArray32__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B34FC0, bool, BitArray32_get_Item, (BitArray32__Boxed * __this, uint32_t index, MethodInfo * method)); -DO_APP_FUNC(0x02B34FE0, void, BitArray32_set_Item, (BitArray32__Boxed * __this, uint32_t index, bool value, MethodInfo * method)); -DO_APP_FUNC(0x00959BA0, void, BitArray32__ctor, (BitArray32__Boxed * __this, uint32_t initValue, MethodInfo * method)); -DO_APP_FUNC(0x02B35000, void, BitArray32__ctor_1, (BitArray32__Boxed * __this, IEnumerable_1_System_UInt32_ * bitIndexTrue, MethodInfo * method)); -DO_APP_FUNC(0x02B350B0, IBitArray *, BitArray32_BitAnd, (BitArray32__Boxed * __this, IBitArray * other, MethodInfo * method)); -DO_APP_FUNC(0x02B35130, IBitArray *, BitArray32_BitOr, (BitArray32__Boxed * __this, IBitArray * other, MethodInfo * method)); -DO_APP_FUNC(0x02B351B0, IBitArray *, BitArray32_BitNot, (BitArray32__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B34C50, bool, BitArray16_Equals, (BitArray16 * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02B34CE0, int32_t, BitArray16_GetHashCode, (BitArray16 * __this, MethodInfo * method)); +DO_APP_FUNC(0x00AEF240, uint32_t, BitArray32_get_capacity, (BitArray32 * __this, MethodInfo * method)); +DO_APP_FUNC(0x00AFDFA0, bool, BitArray32_get_allFalse, (BitArray32 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B34CF0, bool, BitArray32_get_allTrue, (BitArray32 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B34D00, String *, BitArray32_get_humanizedVersion, (BitArray32 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B34D70, String *, BitArray32_get_humanizedData, (BitArray32 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B34FC0, bool, BitArray32_get_Item, (BitArray32 * __this, uint32_t index, MethodInfo * method)); +DO_APP_FUNC(0x02B34FE0, void, BitArray32_set_Item, (BitArray32 * __this, uint32_t index, bool value, MethodInfo * method)); +DO_APP_FUNC(0x00959BA0, void, BitArray32__ctor, (BitArray32 * __this, uint32_t initValue, MethodInfo * method)); +DO_APP_FUNC(0x02B35000, void, BitArray32__ctor_1, (BitArray32 * __this, IEnumerable_1_System_UInt32_ * bitIndexTrue, MethodInfo * method)); +DO_APP_FUNC(0x02B350B0, IBitArray *, BitArray32_BitAnd, (BitArray32 * __this, IBitArray * other, MethodInfo * method)); +DO_APP_FUNC(0x02B35130, IBitArray *, BitArray32_BitOr, (BitArray32 * __this, IBitArray * other, MethodInfo * method)); +DO_APP_FUNC(0x02B351B0, IBitArray *, BitArray32_BitNot, (BitArray32 * __this, MethodInfo * method)); DO_APP_FUNC(0x00959BE0, BitArray32, BitArray32_op_OnesComplement, (BitArray32 a, MethodInfo * method)); DO_APP_FUNC(0x00959BD0, BitArray32, BitArray32_op_BitwiseOr, (BitArray32 a, BitArray32 b, MethodInfo * method)); DO_APP_FUNC(0x00959BC0, BitArray32, BitArray32_op_BitwiseAnd, (BitArray32 a, BitArray32 b, MethodInfo * method)); DO_APP_FUNC(0x00AFE200, bool, BitArray32_op_Equality, (BitArray32 a, BitArray32 b, MethodInfo * method)); DO_APP_FUNC(0x00AEE320, bool, BitArray32_op_Inequality, (BitArray32 a, BitArray32 b, MethodInfo * method)); -DO_APP_FUNC(0x02B35200, bool, BitArray32_Equals, (BitArray32__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02B35290, int32_t, BitArray32_GetHashCode, (BitArray32__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00AEFEA0, uint32_t, BitArray64_get_capacity, (BitArray64__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9A290, bool, BitArray64_get_allFalse, (BitArray64__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B352A0, bool, BitArray64_get_allTrue, (BitArray64__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B352B0, String *, BitArray64_get_humanizedData, (BitArray64__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B35500, bool, BitArray64_get_Item, (BitArray64__Boxed * __this, uint32_t index, MethodInfo * method)); -DO_APP_FUNC(0x02B35520, void, BitArray64_set_Item, (BitArray64__Boxed * __this, uint32_t index, bool value, MethodInfo * method)); -DO_APP_FUNC(0x00A9A2A0, void, BitArray64__ctor, (BitArray64__Boxed * __this, uint64_t initValue, MethodInfo * method)); -DO_APP_FUNC(0x02B35540, void, BitArray64__ctor_1, (BitArray64__Boxed * __this, IEnumerable_1_System_UInt32_ * bitIndexTrue, MethodInfo * method)); +DO_APP_FUNC(0x02B35200, bool, BitArray32_Equals, (BitArray32 * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02B35290, int32_t, BitArray32_GetHashCode, (BitArray32 * __this, MethodInfo * method)); +DO_APP_FUNC(0x00AEFEA0, uint32_t, BitArray64_get_capacity, (BitArray64 * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9A290, bool, BitArray64_get_allFalse, (BitArray64 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B352A0, bool, BitArray64_get_allTrue, (BitArray64 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B352B0, String *, BitArray64_get_humanizedData, (BitArray64 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B35500, bool, BitArray64_get_Item, (BitArray64 * __this, uint32_t index, MethodInfo * method)); +DO_APP_FUNC(0x02B35520, void, BitArray64_set_Item, (BitArray64 * __this, uint32_t index, bool value, MethodInfo * method)); +DO_APP_FUNC(0x00A9A2A0, void, BitArray64__ctor, (BitArray64 * __this, uint64_t initValue, MethodInfo * method)); +DO_APP_FUNC(0x02B35540, void, BitArray64__ctor_1, (BitArray64 * __this, IEnumerable_1_System_UInt32_ * bitIndexTrue, MethodInfo * method)); DO_APP_FUNC(0x02B355F0, BitArray64, BitArray64_op_OnesComplement, (BitArray64 a, MethodInfo * method)); DO_APP_FUNC(0x02B35600, BitArray64, BitArray64_op_BitwiseOr, (BitArray64 a, BitArray64 b, MethodInfo * method)); DO_APP_FUNC(0x02B35610, BitArray64, BitArray64_op_BitwiseAnd, (BitArray64 a, BitArray64 b, MethodInfo * method)); -DO_APP_FUNC(0x02B35620, IBitArray *, BitArray64_BitAnd, (BitArray64__Boxed * __this, IBitArray * other, MethodInfo * method)); -DO_APP_FUNC(0x02B356A0, IBitArray *, BitArray64_BitOr, (BitArray64__Boxed * __this, IBitArray * other, MethodInfo * method)); -DO_APP_FUNC(0x02B35720, IBitArray *, BitArray64_BitNot, (BitArray64__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B35620, IBitArray *, BitArray64_BitAnd, (BitArray64 * __this, IBitArray * other, MethodInfo * method)); +DO_APP_FUNC(0x02B356A0, IBitArray *, BitArray64_BitOr, (BitArray64 * __this, IBitArray * other, MethodInfo * method)); +DO_APP_FUNC(0x02B35720, IBitArray *, BitArray64_BitNot, (BitArray64 * __this, MethodInfo * method)); DO_APP_FUNC(0x00A89090, bool, BitArray64_op_Equality, (BitArray64 a, BitArray64 b, MethodInfo * method)); DO_APP_FUNC(0x00A92050, bool, BitArray64_op_Inequality, (BitArray64 a, BitArray64 b, MethodInfo * method)); -DO_APP_FUNC(0x02B35770, bool, BitArray64_Equals, (BitArray64__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02B35800, int32_t, BitArray64_GetHashCode, (BitArray64__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00AEFB60, uint32_t, BitArray128_get_capacity, (BitArray128__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0288B270, bool, BitArray128_get_allFalse, (BitArray128__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B35810, bool, BitArray128_get_allTrue, (BitArray128__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B35830, String *, BitArray128_get_humanizedData, (BitArray128__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B35BD0, bool, BitArray128_get_Item, (BitArray128__Boxed * __this, uint32_t index, MethodInfo * method)); -DO_APP_FUNC(0x02B35C00, void, BitArray128_set_Item, (BitArray128__Boxed * __this, uint32_t index, bool value, MethodInfo * method)); -DO_APP_FUNC(0x00BDCC10, void, BitArray128__ctor, (BitArray128__Boxed * __this, uint64_t initValue1, uint64_t initValue2, MethodInfo * method)); -DO_APP_FUNC(0x02B35C40, void, BitArray128__ctor_1, (BitArray128__Boxed * __this, IEnumerable_1_System_UInt32_ * bitIndexTrue, MethodInfo * method)); +DO_APP_FUNC(0x02B35770, bool, BitArray64_Equals, (BitArray64 * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02B35800, int32_t, BitArray64_GetHashCode, (BitArray64 * __this, MethodInfo * method)); +DO_APP_FUNC(0x00AEFB60, uint32_t, BitArray128_get_capacity, (BitArray128 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0288B270, bool, BitArray128_get_allFalse, (BitArray128 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B35810, bool, BitArray128_get_allTrue, (BitArray128 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B35830, String *, BitArray128_get_humanizedData, (BitArray128 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B35BD0, bool, BitArray128_get_Item, (BitArray128 * __this, uint32_t index, MethodInfo * method)); +DO_APP_FUNC(0x02B35C00, void, BitArray128_set_Item, (BitArray128 * __this, uint32_t index, bool value, MethodInfo * method)); +DO_APP_FUNC(0x00BDCC10, void, BitArray128__ctor, (BitArray128 * __this, uint64_t initValue1, uint64_t initValue2, MethodInfo * method)); +DO_APP_FUNC(0x02B35C40, void, BitArray128__ctor_1, (BitArray128 * __this, IEnumerable_1_System_UInt32_ * bitIndexTrue, MethodInfo * method)); DO_APP_FUNC(0x02B35D10, BitArray128, BitArray128_op_OnesComplement, (BitArray128 a, MethodInfo * method)); DO_APP_FUNC(0x02B35D30, BitArray128, BitArray128_op_BitwiseOr, (BitArray128 a, BitArray128 b, MethodInfo * method)); DO_APP_FUNC(0x0288BFE0, BitArray128, BitArray128_op_BitwiseAnd, (BitArray128 a, BitArray128 b, MethodInfo * method)); -DO_APP_FUNC(0x02B35D50, IBitArray *, BitArray128_BitAnd, (BitArray128__Boxed * __this, IBitArray * other, MethodInfo * method)); -DO_APP_FUNC(0x02B35DF0, IBitArray *, BitArray128_BitOr, (BitArray128__Boxed * __this, IBitArray * other, MethodInfo * method)); -DO_APP_FUNC(0x02B35E90, IBitArray *, BitArray128_BitNot, (BitArray128__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B35D50, IBitArray *, BitArray128_BitAnd, (BitArray128 * __this, IBitArray * other, MethodInfo * method)); +DO_APP_FUNC(0x02B35DF0, IBitArray *, BitArray128_BitOr, (BitArray128 * __this, IBitArray * other, MethodInfo * method)); +DO_APP_FUNC(0x02B35E90, IBitArray *, BitArray128_BitNot, (BitArray128 * __this, MethodInfo * method)); DO_APP_FUNC(0x00A2BE50, bool, BitArray128_op_Equality, (BitArray128 a, BitArray128 b, MethodInfo * method)); DO_APP_FUNC(0x00A2BE70, bool, BitArray128_op_Inequality, (BitArray128 a, BitArray128 b, MethodInfo * method)); -DO_APP_FUNC(0x02B35F00, bool, BitArray128_Equals, (BitArray128__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02B35F90, int32_t, BitArray128_GetHashCode, (BitArray128__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00EAA8C0, uint32_t, BitArray256_get_capacity, (BitArray256__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B35FC0, bool, BitArray256_get_allFalse, (BitArray256__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B35FE0, bool, BitArray256_get_allTrue, (BitArray256__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B36000, String *, BitArray256_get_humanizedData, (BitArray256__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B36610, bool, BitArray256_get_Item, (BitArray256__Boxed * __this, uint32_t index, MethodInfo * method)); -DO_APP_FUNC(0x02B36660, void, BitArray256_set_Item, (BitArray256__Boxed * __this, uint32_t index, bool value, MethodInfo * method)); -DO_APP_FUNC(0x00BDCD30, void, BitArray256__ctor, (BitArray256__Boxed * __this, uint64_t initValue1, uint64_t initValue2, uint64_t initValue3, uint64_t initValue4, MethodInfo * method)); -DO_APP_FUNC(0x02B366F0, void, BitArray256__ctor_1, (BitArray256__Boxed * __this, IEnumerable_1_System_UInt32_ * bitIndexTrue, MethodInfo * method)); +DO_APP_FUNC(0x02B35F00, bool, BitArray128_Equals, (BitArray128 * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02B35F90, int32_t, BitArray128_GetHashCode, (BitArray128 * __this, MethodInfo * method)); +DO_APP_FUNC(0x00EAA8C0, uint32_t, BitArray256_get_capacity, (BitArray256 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B35FC0, bool, BitArray256_get_allFalse, (BitArray256 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B35FE0, bool, BitArray256_get_allTrue, (BitArray256 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B36000, String *, BitArray256_get_humanizedData, (BitArray256 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B36610, bool, BitArray256_get_Item, (BitArray256 * __this, uint32_t index, MethodInfo * method)); +DO_APP_FUNC(0x02B36660, void, BitArray256_set_Item, (BitArray256 * __this, uint32_t index, bool value, MethodInfo * method)); +DO_APP_FUNC(0x00BDCD30, void, BitArray256__ctor, (BitArray256 * __this, uint64_t initValue1, uint64_t initValue2, uint64_t initValue3, uint64_t initValue4, MethodInfo * method)); +DO_APP_FUNC(0x02B366F0, void, BitArray256__ctor_1, (BitArray256 * __this, IEnumerable_1_System_UInt32_ * bitIndexTrue, MethodInfo * method)); DO_APP_FUNC(0x02B36800, BitArray256, BitArray256_op_OnesComplement, (BitArray256 a, MethodInfo * method)); DO_APP_FUNC(0x02B36830, BitArray256, BitArray256_op_BitwiseOr, (BitArray256 a, BitArray256 b, MethodInfo * method)); DO_APP_FUNC(0x02B36870, BitArray256, BitArray256_op_BitwiseAnd, (BitArray256 a, BitArray256 b, MethodInfo * method)); -DO_APP_FUNC(0x02B368B0, IBitArray *, BitArray256_BitAnd, (BitArray256__Boxed * __this, IBitArray * other, MethodInfo * method)); -DO_APP_FUNC(0x02B369B0, IBitArray *, BitArray256_BitOr, (BitArray256__Boxed * __this, IBitArray * other, MethodInfo * method)); -DO_APP_FUNC(0x02B36AB0, IBitArray *, BitArray256_BitNot, (BitArray256__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B368B0, IBitArray *, BitArray256_BitAnd, (BitArray256 * __this, IBitArray * other, MethodInfo * method)); +DO_APP_FUNC(0x02B369B0, IBitArray *, BitArray256_BitOr, (BitArray256 * __this, IBitArray * other, MethodInfo * method)); +DO_APP_FUNC(0x02B36AB0, IBitArray *, BitArray256_BitNot, (BitArray256 * __this, MethodInfo * method)); DO_APP_FUNC(0x02B36B40, bool, BitArray256_op_Equality, (BitArray256 a, BitArray256 b, MethodInfo * method)); DO_APP_FUNC(0x02B36B80, bool, BitArray256_op_Inequality, (BitArray256 a, BitArray256 b, MethodInfo * method)); -DO_APP_FUNC(0x02B36BC0, bool, BitArray256_Equals, (BitArray256__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02B36C70, int32_t, BitArray256_GetHashCode, (BitArray256__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B36BC0, bool, BitArray256_Equals, (BitArray256 * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02B36C70, int32_t, BitArray256_GetHashCode, (BitArray256 * __this, MethodInfo * method)); DO_APP_FUNC(0x02B36CC0, bool, BitArrayUtilities_Get8, (uint32_t index, uint8_t data, MethodInfo * method)); DO_APP_FUNC(0x02B36CE0, bool, BitArrayUtilities_Get16, (uint32_t index, uint16_t data, MethodInfo * method)); DO_APP_FUNC(0x02B36D00, bool, BitArrayUtilities_Get32, (uint32_t index, uint32_t data, MethodInfo * method)); DO_APP_FUNC(0x02B36D10, bool, BitArrayUtilities_Get64, (uint32_t index, uint64_t data, MethodInfo * method)); DO_APP_FUNC(0x02B36D30, bool, BitArrayUtilities_Get128, (uint32_t index, uint64_t data1, uint64_t data2, MethodInfo * method)); DO_APP_FUNC(0x02B36D60, bool, BitArrayUtilities_Get256, (uint32_t index, uint64_t data1, uint64_t data2, uint64_t data3, uint64_t data4, MethodInfo * method)); -DO_APP_FUNC(0x02B36DB0, void, BitArrayUtilities_Set8, (uint32_t index, uint8_t data, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02B36DD0, void, BitArrayUtilities_Set16, (uint32_t index, uint16_t data, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02B36DF0, void, BitArrayUtilities_Set32, (uint32_t index, uint32_t data, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02B36E10, void, BitArrayUtilities_Set64, (uint32_t index, uint64_t data, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02B36E30, void, BitArrayUtilities_Set128, (uint32_t index, uint64_t data1, uint64_t data2, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02B36E70, void, BitArrayUtilities_Set256, (uint32_t index, uint64_t data1, uint64_t data2, uint64_t data3, uint64_t data4, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02B36DB0, void, BitArrayUtilities_Set8, (uint32_t index, uint8_t * data, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02B36DD0, void, BitArrayUtilities_Set16, (uint32_t index, uint16_t * data, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02B36DF0, void, BitArrayUtilities_Set32, (uint32_t index, uint32_t * data, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02B36E10, void, BitArrayUtilities_Set64, (uint32_t index, uint64_t * data, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02B36E30, void, BitArrayUtilities_Set128, (uint32_t index, uint64_t * data1, uint64_t * data2, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02B36E70, void, BitArrayUtilities_Set256, (uint32_t index, uint64_t * data1, uint64_t * data2, uint64_t * data3, uint64_t * data4, bool value, MethodInfo * method)); DO_APP_FUNC(0x02B36EE0, void, Blitter_Initialize, (Shader * blitPS, Shader * blitColorAndDepthPS, MethodInfo * method)); DO_APP_FUNC(0x02B37A30, void, Blitter_Cleanup, (MethodInfo * method)); DO_APP_FUNC(0x02B37DC0, Material *, Blitter_GetBlitMaterial, (TextureDimension__Enum dimension, bool singleSlice, MethodInfo * method)); @@ -89068,10 +100555,10 @@ DO_APP_FUNC(0x02B3C6F0, float, ColorUtils_get_lensImperfectionExposureScale, (Me DO_APP_FUNC(0x02ABBC80, float, ColorUtils_StandardIlluminantY, (float x, MethodInfo * method)); DO_APP_FUNC(0x02ABBCB0, Vector3, ColorUtils_CIExyToLMS, (float x, float y, MethodInfo * method)); DO_APP_FUNC(0x02B3C760, Vector3, ColorUtils_ColorBalanceToLMSCoeffs, (float temperature, float tint, MethodInfo * method)); -DO_APP_FUNC(0x02B3C8E0, ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4_, ColorUtils_PrepareShadowsMidtonesHighlights, (Vector4 inShadows, Vector4 inMidtones, Vector4 inHighlights, MethodInfo * method)); -DO_APP_FUNC(0x02B3CDF0, ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4_, ColorUtils_PrepareLiftGammaGain, (Vector4 inLift, Vector4 inGamma, Vector4 inGain, MethodInfo * method)); -DO_APP_FUNC(0x02B3D3C0, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4_, ColorUtils_PrepareSplitToning, (Vector4 inShadows, Vector4 inHighlights, float balance, MethodInfo * method)); -DO_APP_FUNC(0x02B3D4A0, float, ColorUtils_Luminance, (Color color, MethodInfo * method)); +DO_APP_FUNC(0x02B3C8E0, ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4_, ColorUtils_PrepareShadowsMidtonesHighlights, (Vector4 * inShadows, Vector4 * inMidtones, Vector4 * inHighlights, MethodInfo * method)); +DO_APP_FUNC(0x02B3CDF0, ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4_, ColorUtils_PrepareLiftGammaGain, (Vector4 * inLift, Vector4 * inGamma, Vector4 * inGain, MethodInfo * method)); +DO_APP_FUNC(0x02B3D3C0, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4_, ColorUtils_PrepareSplitToning, (Vector4 * inShadows, Vector4 * inHighlights, float balance, MethodInfo * method)); +DO_APP_FUNC(0x02B3D4A0, float, ColorUtils_Luminance, (Color * color, MethodInfo * method)); DO_APP_FUNC(0x02B3D4D0, float, ColorUtils_ComputeEV100, (float aperture, float shutterSpeed, float ISO, MethodInfo * method)); DO_APP_FUNC(0x02B3D500, float, ColorUtils_ConvertEV100ToExposure, (float EV100, MethodInfo * method)); DO_APP_FUNC(0x02B3D580, float, ColorUtils_ConvertExposureToEV100, (float exposure, MethodInfo * method)); @@ -89080,8 +100567,8 @@ DO_APP_FUNC(0x02B3D680, float, ColorUtils_ComputeISO, (float aperture, float shu DO_APP_FUNC(0x02ABC0A0, uint32_t, ColorUtils_ToHex, (Color c, MethodInfo * method)); DO_APP_FUNC(0x02ABC130, Color, ColorUtils_ToRGBA, (uint32_t hex, MethodInfo * method)); DO_APP_FUNC(0x02B3D6D0, void, ColorUtils__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02B3D730, void, CoreMatrixUtils_MatrixTimesTranslation, (Matrix4x4 inOutMatrix, Vector3 translation, MethodInfo * method)); -DO_APP_FUNC(0x02B3D7C0, void, CoreMatrixUtils_TranslationTimesMatrix, (Matrix4x4 inOutMatrix, Vector3 translation, MethodInfo * method)); +DO_APP_FUNC(0x02B3D730, void, CoreMatrixUtils_MatrixTimesTranslation, (Matrix4x4 * inOutMatrix, Vector3 translation, MethodInfo * method)); +DO_APP_FUNC(0x02B3D7C0, void, CoreMatrixUtils_TranslationTimesMatrix, (Matrix4x4 * inOutMatrix, Vector3 translation, MethodInfo * method)); DO_APP_FUNC(0x02B3D8B0, Matrix4x4, CoreMatrixUtils_MultiplyPerspectiveMatrix, (Matrix4x4 perspective, Matrix4x4 rhs, MethodInfo * method)); DO_APP_FUNC(0x02B3DA00, Matrix4x4, CoreMatrixUtils_MultiplyOrthoMatrixCentered, (Matrix4x4 ortho, Matrix4x4 rhs, MethodInfo * method)); DO_APP_FUNC(0x02B3DB40, Matrix4x4, CoreMatrixUtils_MultiplyGenericOrthoMatrix, (Matrix4x4 ortho, Matrix4x4 rhs, MethodInfo * method)); @@ -89180,8 +100667,8 @@ DO_APP_FUNC(0x02B45B20, void, HableCurve__ctor, (HableCurve * __this, MethodInfo DO_APP_FUNC(0x02ABC410, float, HableCurve_Eval, (HableCurve * __this, float x, MethodInfo * method)); DO_APP_FUNC(0x02B45D80, void, HableCurve_Init, (HableCurve * __this, float toeStrength, float toeLength, float shoulderStrength, float shoulderLength, float shoulderAngle, float gamma, MethodInfo * method)); DO_APP_FUNC(0x02ABC6F0, void, HableCurve_InitSegments, (HableCurve * __this, HableCurve_DirectParams srcParams, MethodInfo * method)); -DO_APP_FUNC(0x02ABCC30, void, HableCurve_SolveAB, (HableCurve * __this, float lnA, float B, float x0, float y0, float m, MethodInfo * method)); -DO_APP_FUNC(0x02ABCCA0, void, HableCurve_AsSlopeIntercept, (HableCurve * __this, float m, float b, float x0, float x1, float y0, float y1, MethodInfo * method)); +DO_APP_FUNC(0x02ABCC30, void, HableCurve_SolveAB, (HableCurve * __this, float * lnA, float * B, float x0, float y0, float m, MethodInfo * method)); +DO_APP_FUNC(0x02ABCCA0, void, HableCurve_AsSlopeIntercept, (HableCurve * __this, float * m, float * b, float x0, float x1, float y0, float y1, MethodInfo * method)); DO_APP_FUNC(0x02ABCD00, float, HableCurve_EvalDerivativeLinearGamma, (HableCurve * __this, float m, float b, float g, float x, MethodInfo * method)); DO_APP_FUNC(0x02ABCD50, float, HableCurve_Segment_Eval, (HableCurve_Segment * __this, float x, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HableCurve_Segment__ctor, (HableCurve_Segment * __this, MethodInfo * method)); @@ -89208,7 +100695,7 @@ DO_APP_FUNC(0x02B47A40, void, MeshGizmo_DrawMesh, (MeshGizmo * __this, Matrix4x4 DO_APP_FUNC(0x02B47CA0, void, MeshGizmo_RenderWireframe, (MeshGizmo * __this, Matrix4x4 trs, CompareFunction__Enum depthTest, String * gizmoName, MethodInfo * method)); DO_APP_FUNC(0x02B47D00, void, MeshGizmo_Dispose, (MeshGizmo * __this, MethodInfo * method)); DO_APP_FUNC(0x02B47D60, void, MeshGizmo__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02B47DA0, void, MeshGizmo__AddWireCube_g__AddEdge_10_0, (MeshGizmo * __this, Vector3 p1, Vector3 p2, MeshGizmo_c_DisplayClass10_0 param_000175f2, MethodInfo * method)); +DO_APP_FUNC(0x02B47DA0, void, MeshGizmo__AddWireCube_g__AddEdge_10_0, (MeshGizmo * __this, Vector3 p1, Vector3 p2, MeshGizmo_c_DisplayClass10_0 * param_000175f2, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ReloadAttribute__ctor, (ReloadAttribute * __this, String__Array * paths, ReloadAttribute_Package__Enum package, MethodInfo * method)); DO_APP_FUNC(0x02B480D0, void, ReloadAttribute__ctor_1, (ReloadAttribute * __this, String * path, ReloadAttribute_Package__Enum package, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ReloadAttribute__ctor_2, (ReloadAttribute * __this, String * pathFormat, int32_t rangeMin, int32_t rangeMax, ReloadAttribute_Package__Enum package, MethodInfo * method)); @@ -89216,8 +100703,8 @@ DO_APP_FUNC(0x003AE050, void, ReloadGroupAttribute__ctor, (ReloadGroupAttribute DO_APP_FUNC(0x003BCD50, int32_t, TextureCurve_get_length, (TextureCurve * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, TextureCurve_set_length, (TextureCurve * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x02B48160, Keyframe, TextureCurve_get_Item, (TextureCurve * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x02B48210, void, TextureCurve__ctor, (TextureCurve * __this, AnimationCurve * baseCurve, float zeroValue, bool loop, Vector2 bounds, MethodInfo * method)); -DO_APP_FUNC(0x02B483B0, void, TextureCurve__ctor_1, (TextureCurve * __this, Keyframe__Array * keys, float zeroValue, bool loop, Vector2 bounds, MethodInfo * method)); +DO_APP_FUNC(0x02B48210, void, TextureCurve__ctor, (TextureCurve * __this, AnimationCurve * baseCurve, float zeroValue, bool loop, Vector2 * bounds, MethodInfo * method)); +DO_APP_FUNC(0x02B483B0, void, TextureCurve__ctor_1, (TextureCurve * __this, Keyframe__Array * keys, float zeroValue, bool loop, Vector2 * bounds, MethodInfo * method)); DO_APP_FUNC(0x01A4F4E0, void, TextureCurve_Finalize, (TextureCurve * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TextureCurve_Dispose, (TextureCurve * __this, MethodInfo * method)); DO_APP_FUNC(0x02B48500, void, TextureCurve_Release, (TextureCurve * __this, MethodInfo * method)); @@ -89226,14 +100713,14 @@ DO_APP_FUNC(0x02B485C0, GraphicsFormat__Enum, TextureCurve_GetTextureFormat, (Me DO_APP_FUNC(0x02B48680, Texture2D *, TextureCurve_GetTexture, (TextureCurve * __this, MethodInfo * method)); DO_APP_FUNC(0x02B48B20, float, TextureCurve_Evaluate, (TextureCurve * __this, float time, MethodInfo * method)); DO_APP_FUNC(0x02B48E30, int32_t, TextureCurve_AddKey, (TextureCurve * __this, float time, float value, MethodInfo * method)); -DO_APP_FUNC(0x02B48ED0, int32_t, TextureCurve_MoveKey, (TextureCurve * __this, int32_t index, Keyframe key, MethodInfo * method)); +DO_APP_FUNC(0x02B48ED0, int32_t, TextureCurve_MoveKey, (TextureCurve * __this, int32_t index, Keyframe * key, MethodInfo * method)); DO_APP_FUNC(0x02B48F70, void, TextureCurve_RemoveKey, (TextureCurve * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x02B48FF0, void, TextureCurve_SmoothTangents, (TextureCurve * __this, int32_t index, float weight, MethodInfo * method)); DO_APP_FUNC(0x02B49080, void, TextureCurveParameter__ctor, (TextureCurveParameter * __this, TextureCurve * value, bool overrideState, MethodInfo * method)); DO_APP_FUNC(0x02B490E0, void, TextureCurveParameter_Release, (TextureCurveParameter * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B491A0, bool, TileLayoutUtils_TryLayoutByTiles, (RectInt src, uint32_t tileSize, RectInt main, RectInt topRow, RectInt rightCol, RectInt topRight, MethodInfo * method)); -DO_APP_FUNC(0x02B492B0, bool, TileLayoutUtils_TryLayoutByRow, (RectInt src, uint32_t tileSize, RectInt main, RectInt other, MethodInfo * method)); -DO_APP_FUNC(0x02B49320, bool, TileLayoutUtils_TryLayoutByCol, (RectInt src, uint32_t tileSize, RectInt main, RectInt other, MethodInfo * method)); +DO_APP_FUNC(0x02B491A0, bool, TileLayoutUtils_TryLayoutByTiles, (RectInt src, uint32_t tileSize, RectInt * main, RectInt * topRow, RectInt * rightCol, RectInt * topRight, MethodInfo * method)); +DO_APP_FUNC(0x02B492B0, bool, TileLayoutUtils_TryLayoutByRow, (RectInt src, uint32_t tileSize, RectInt * main, RectInt * other, MethodInfo * method)); +DO_APP_FUNC(0x02B49320, bool, TileLayoutUtils_TryLayoutByCol, (RectInt src, uint32_t tileSize, RectInt * main, RectInt * other, MethodInfo * method)); DO_APP_FUNC(0x02B49390, void, XRUtils_DrawOcclusionMesh, (CommandBuffer * cmd, Camera * camera, bool stereoEnabled, MethodInfo * method)); DO_APP_FUNC(0x003BCC40, bool, Volume_get_isGlobal, (Volume * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCC50, void, Volume_set_isGlobal, (Volume * __this, bool value, MethodInfo * method)); @@ -89307,8 +100794,8 @@ DO_APP_FUNC(0x02B4ED10, bool, VolumeManager_c__GetVolumes_b__38_0, (VolumeManage DO_APP_FUNC_METHODINFO(0x03C99768, VolumeManager_c__GetVolumes_b__38_0__MethodInfo); DO_APP_FUNC(0x02B4EE10, VolumeManager *, VolumeManager_c___cctor_b__42_0, (VolumeManager_c * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C995A0, VolumeManager_c___cctor_b__42_0__MethodInfo); -DO_APP_FUNC(0x003AE050, void, VolumeIsolationScope__ctor, (VolumeIsolationScope__Boxed * __this, bool unused, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, VolumeIsolationScope_System_IDisposable_Dispose, (VolumeIsolationScope__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, VolumeIsolationScope__ctor, (VolumeIsolationScope * __this, bool unused, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, VolumeIsolationScope_System_IDisposable_Dispose, (VolumeIsolationScope * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD20, bool, VolumeParameter_get_overrideState, (VolumeParameter * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD30, void, VolumeParameter_set_overrideState, (VolumeParameter * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, VolumeParameter_OnEnable, (VolumeParameter * __this, MethodInfo * method)); @@ -89450,7 +100937,7 @@ DO_APP_FUNC(0x006DDC60, void, DebugUIHandlerCanvas_RequestHierarchyReset, (Debug DO_APP_FUNC(0x02B53DD0, void, DebugUIHandlerCanvas_ResetAllHierarchy, (DebugUIHandlerCanvas * __this, MethodInfo * method)); DO_APP_FUNC(0x02B540C0, void, DebugUIHandlerCanvas_Rebuild, (DebugUIHandlerCanvas * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9B498, DebugUIHandlerCanvas_Rebuild__MethodInfo); -DO_APP_FUNC(0x02B54AD0, void, DebugUIHandlerCanvas_Traverse, (DebugUIHandlerCanvas * __this, DebugUI_IContainer * container, Transform * parentTransform, DebugUIHandlerWidget * parentUIHandler, DebugUIHandlerWidget * selectedHandler, MethodInfo * method)); +DO_APP_FUNC(0x02B54AD0, void, DebugUIHandlerCanvas_Traverse, (DebugUIHandlerCanvas * __this, DebugUI_IContainer * container, Transform * parentTransform, DebugUIHandlerWidget * parentUIHandler, DebugUIHandlerWidget * * selectedHandler, MethodInfo * method)); DO_APP_FUNC(0x02B55280, DebugUIHandlerWidget *, DebugUIHandlerCanvas_GetWidgetFromPath, (DebugUIHandlerCanvas * __this, String * queryPath, MethodInfo * method)); DO_APP_FUNC(0x02B55450, void, DebugUIHandlerCanvas_ActivatePanel, (DebugUIHandlerCanvas * __this, int32_t index, DebugUIHandlerWidget * selectedWidget, MethodInfo * method)); DO_APP_FUNC(0x02B55860, void, DebugUIHandlerCanvas_ChangeSelection, (DebugUIHandlerCanvas * __this, DebugUIHandlerWidget * widget, bool fromNext, MethodInfo * method)); @@ -89783,9 +101270,11 @@ DO_APP_FUNC(0x003C7320, ExtensionsToggle *, ExtensionsToggleGroup_get_SelectedTo DO_APP_FUNC(0x003C7330, void, ExtensionsToggleGroup_set_SelectedToggle, (ExtensionsToggleGroup * __this, ExtensionsToggle * value, MethodInfo * method)); DO_APP_FUNC(0x0301CB40, void, ExtensionsToggleGroup__ctor, (ExtensionsToggleGroup * __this, MethodInfo * method)); DO_APP_FUNC(0x0301CD90, void, ExtensionsToggleGroup_ValidateToggleIsInGroup, (ExtensionsToggleGroup * __this, ExtensionsToggle * toggle, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6380, ExtensionsToggleGroup_ValidateToggleIsInGroup__MethodInfo); DO_APP_FUNC(0x0301CFC0, void, ExtensionsToggleGroup_NotifyToggleOn, (ExtensionsToggleGroup * __this, ExtensionsToggle * toggle, MethodInfo * method)); DO_APP_FUNC(0x0301D260, void, ExtensionsToggleGroup_UnregisterToggle, (ExtensionsToggleGroup * __this, ExtensionsToggle * toggle, MethodInfo * method)); DO_APP_FUNC(0x0301D3D0, void, ExtensionsToggleGroup_NotifyToggleChanged, (ExtensionsToggleGroup * __this, bool isOn, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6280, ExtensionsToggleGroup_NotifyToggleChanged__MethodInfo); DO_APP_FUNC(0x0301D430, void, ExtensionsToggleGroup_RegisterToggle, (ExtensionsToggleGroup * __this, ExtensionsToggle * toggle, MethodInfo * method)); DO_APP_FUNC(0x0301D5B0, bool, ExtensionsToggleGroup_AnyTogglesOn, (ExtensionsToggleGroup * __this, MethodInfo * method)); DO_APP_FUNC(0x0301D820, IEnumerable_1_UnityEngine_UI_ExtensionsToggle_ *, ExtensionsToggleGroup_ActiveToggles, (ExtensionsToggleGroup * __this, MethodInfo * method)); @@ -89796,7 +101285,9 @@ DO_APP_FUNC(0x0301DC80, void, ExtensionsToggleGroup_ToggleGroupEvent__ctor, (Ext DO_APP_FUNC(0x0301DCC0, void, ExtensionsToggleGroup_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ExtensionsToggleGroup_c__ctor, (ExtensionsToggleGroup_c * __this, MethodInfo * method)); DO_APP_FUNC(0x0301DD70, bool, ExtensionsToggleGroup_c__AnyTogglesOn_b__18_0, (ExtensionsToggleGroup_c * __this, ExtensionsToggle * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6290, ExtensionsToggleGroup_c__AnyTogglesOn_b__18_0__MethodInfo); DO_APP_FUNC(0x0301DD70, bool, ExtensionsToggleGroup_c__ActiveToggles_b__19_0, (ExtensionsToggleGroup_c * __this, ExtensionsToggle * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF62C0, ExtensionsToggleGroup_c__ActiveToggles_b__19_0__MethodInfo); DO_APP_FUNC(0x0301DD90, void, ReturnKeyTriggersButton_Start, (ReturnKeyTriggersButton * __this, MethodInfo * method)); DO_APP_FUNC(0x0301DE30, void, ReturnKeyTriggersButton_RemoveHighlight, (ReturnKeyTriggersButton * __this, MethodInfo * method)); DO_APP_FUNC(0x0301DEC0, void, ReturnKeyTriggersButton_OnSubmit, (ReturnKeyTriggersButton * __this, BaseEventData * eventData, MethodInfo * method)); @@ -89813,11 +101304,14 @@ DO_APP_FUNC(0x01D58310, float, AccordionElement_get_MinWidth, (AccordionElement DO_APP_FUNC(0x0301E140, void, AccordionElement__ctor, (AccordionElement * __this, MethodInfo * method)); DO_APP_FUNC(0x0301E2A0, void, AccordionElement_Awake, (AccordionElement * __this, MethodInfo * method)); DO_APP_FUNC(0x0301E750, void, AccordionElement_OnValueChanged, (AccordionElement * __this, bool state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6238, AccordionElement_OnValueChanged__MethodInfo); DO_APP_FUNC(0x0301EF40, float, AccordionElement_GetExpandedHeight, (AccordionElement * __this, MethodInfo * method)); DO_APP_FUNC(0x0301F0F0, float, AccordionElement_GetExpandedWidth, (AccordionElement * __this, MethodInfo * method)); DO_APP_FUNC(0x0301F2A0, void, AccordionElement_StartTween, (AccordionElement * __this, float startFloat, float targetFloat, MethodInfo * method)); DO_APP_FUNC(0x0301F510, void, AccordionElement_SetHeight, (AccordionElement * __this, float height, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6250, AccordionElement_SetHeight__MethodInfo); DO_APP_FUNC(0x0301F640, void, AccordionElement_SetWidth, (AccordionElement * __this, float width, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6258, AccordionElement_SetWidth__MethodInfo); DO_APP_FUNC(0x003C4850, RectTransform *, BoxSlider_get_HandleRect, (BoxSlider * __this, MethodInfo * method)); DO_APP_FUNC(0x0301F770, void, BoxSlider_set_HandleRect, (BoxSlider * __this, RectTransform * value, MethodInfo * method)); DO_APP_FUNC(0x01CBF900, float, BoxSlider_get_MinValue, (BoxSlider * __this, MethodInfo * method)); @@ -89894,9 +101388,12 @@ DO_APP_FUNC(0x030254F0, void, AutoCompleteComboBox_SelectionTextChangedEvent__ct DO_APP_FUNC(0x03025530, void, AutoCompleteComboBox_SelectionValidityChangedEvent__ctor, (AutoCompleteComboBox_SelectionValidityChangedEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AutoCompleteComboBox_c_DisplayClass62_0__ctor, (AutoCompleteComboBox_c_DisplayClass62_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x03025570, void, AutoCompleteComboBox_c_DisplayClass62_0__RebuildPanel_b__0, (AutoCompleteComboBox_c_DisplayClass62_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5FF0, AutoCompleteComboBox_c_DisplayClass62_0__RebuildPanel_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, AutoCompleteComboBox_c_DisplayClass69_0__ctor, (AutoCompleteComboBox_c_DisplayClass69_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x030255A0, bool, AutoCompleteComboBox_c_DisplayClass69_0__PruneItemsLinq_b__0, (AutoCompleteComboBox_c_DisplayClass69_0 * __this, String * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6030, AutoCompleteComboBox_c_DisplayClass69_0__PruneItemsLinq_b__0__MethodInfo); DO_APP_FUNC(0x030255D0, bool, AutoCompleteComboBox_c_DisplayClass69_0__PruneItemsLinq_b__1, (AutoCompleteComboBox_c_DisplayClass69_0 * __this, String * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6060, AutoCompleteComboBox_c_DisplayClass69_0__PruneItemsLinq_b__1__MethodInfo); DO_APP_FUNC(0x003BB3B0, DropDownListItem *, ComboBox_get_SelectedItem, (ComboBox * __this, MethodInfo * method)); DO_APP_FUNC(0x003C6500, void, ComboBox_set_SelectedItem, (ComboBox * __this, DropDownListItem * value, MethodInfo * method)); DO_APP_FUNC(0x006C53B0, String *, ComboBox_get_Text, (ComboBox * __this, MethodInfo * method)); @@ -89922,6 +101419,7 @@ DO_APP_FUNC(0x03028100, void, ComboBox__ctor, (ComboBox * __this, MethodInfo * m DO_APP_FUNC(0x03028150, void, ComboBox_SelectionChangedEvent__ctor, (ComboBox_SelectionChangedEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ComboBox_c_DisplayClass46_0__ctor, (ComboBox_c_DisplayClass46_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x03028190, void, ComboBox_c_DisplayClass46_0__RebuildPanel_b__0, (ComboBox_c_DisplayClass46_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5F50, ComboBox_c_DisplayClass46_0__RebuildPanel_b__0__MethodInfo); DO_APP_FUNC(0x003BB3B0, DropDownListItem *, DropDownList_get_SelectedItem, (DropDownList * __this, MethodInfo * method)); DO_APP_FUNC(0x003C6500, void, DropDownList_set_SelectedItem, (DropDownList * __this, DropDownListItem * value, MethodInfo * method)); DO_APP_FUNC(0x01CB8600, float, DropDownList_get_ScrollBarWidth, (DropDownList * __this, MethodInfo * method)); @@ -89931,6 +101429,7 @@ DO_APP_FUNC(0x03028240, void, DropDownList_set_ItemsToDisplay, (DropDownList * _ DO_APP_FUNC(0x03028250, void, DropDownList_Start, (DropDownList * __this, MethodInfo * method)); DO_APP_FUNC(0x030282D0, bool, DropDownList_Initialize, (DropDownList * __this, MethodInfo * method)); DO_APP_FUNC(0x030292B0, void, DropDownList_RefreshItems, (DropDownList * __this, Object__Array * list, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5E58, DropDownList_RefreshItems__MethodInfo); DO_APP_FUNC(0x03029610, void, DropDownList_AddItem, (DropDownList * __this, DropDownListItem * item, MethodInfo * method)); DO_APP_FUNC(0x030296B0, void, DropDownList_AddItem_1, (DropDownList * __this, String * item, MethodInfo * method)); DO_APP_FUNC(0x030297C0, void, DropDownList_AddItem_2, (DropDownList * __this, Sprite * item, MethodInfo * method)); @@ -89947,6 +101446,7 @@ DO_APP_FUNC(0x0302B4E0, void, DropDownList__ctor, (DropDownList * __this, Method DO_APP_FUNC(0x0302B540, void, DropDownList_SelectionChangedEvent__ctor, (DropDownList_SelectionChangedEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, DropDownList_c_DisplayClass45_0__ctor, (DropDownList_c_DisplayClass45_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0302B580, void, DropDownList_c_DisplayClass45_0__RebuildPanel_b__0, (DropDownList_c_DisplayClass45_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5F10, DropDownList_c_DisplayClass45_0__RebuildPanel_b__0__MethodInfo); DO_APP_FUNC(0x0302B5D0, void, DropDownListButton__ctor, (DropDownListButton * __this, GameObject * btnObj, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, String *, DropDownListItem_get_Caption, (DropDownListItem * __this, MethodInfo * method)); DO_APP_FUNC(0x0302BA70, void, DropDownListItem_set_Caption, (DropDownListItem * __this, String * value, MethodInfo * method)); @@ -90074,7 +101574,7 @@ DO_APP_FUNC(0x03030C60, void, ReorderableList_Refresh, (ReorderableList * __this DO_APP_FUNC(0x03030D70, void, ReorderableList_Start, (ReorderableList * __this, MethodInfo * method)); DO_APP_FUNC(0x030311E0, void, ReorderableList_TestReOrderableListTarget, (ReorderableList * __this, ReorderableList_ReorderableListEventStruct item, MethodInfo * method)); DO_APP_FUNC(0x030312F0, void, ReorderableList__ctor, (ReorderableList * __this, MethodInfo * method)); -DO_APP_FUNC(0x03031780, void, ReorderableList_ReorderableListEventStruct_Cancel, (ReorderableList_ReorderableListEventStruct__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x03031780, void, ReorderableList_ReorderableListEventStruct_Cancel, (ReorderableList_ReorderableListEventStruct * __this, MethodInfo * method)); DO_APP_FUNC(0x030317E0, void, ReorderableList_ReorderableListHandler__ctor, (ReorderableList_ReorderableListHandler * __this, MethodInfo * method)); DO_APP_FUNC(0x03031870, void, ReorderableListContent_OnEnable, (ReorderableListContent * __this, MethodInfo * method)); DO_APP_FUNC(0x030318F0, void, ReorderableListContent_OnTransformChildrenChanged, (ReorderableListContent * __this, MethodInfo * method)); @@ -90086,9 +101586,11 @@ DO_APP_FUNC(0x003AE050, void, ReorderableListContent_RefreshChildren_d_9_System_ DO_APP_FUNC(0x03031C70, bool, ReorderableListContent_RefreshChildren_d_9_MoveNext, (ReorderableListContent_RefreshChildren_d_9 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, ReorderableListContent_RefreshChildren_d_9_System_Collections_Generic_IEnumerator_System_Object__get_Current, (ReorderableListContent_RefreshChildren_d_9 * __this, MethodInfo * method)); DO_APP_FUNC(0x03032190, void, ReorderableListContent_RefreshChildren_d_9_System_Collections_IEnumerator_Reset, (ReorderableListContent_RefreshChildren_d_9 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5CE0, ReorderableListContent_RefreshChildren_d_9_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, ReorderableListContent_RefreshChildren_d_9_System_Collections_IEnumerator_get_Current, (ReorderableListContent_RefreshChildren_d_9 * __this, MethodInfo * method)); DO_APP_FUNC(0x030321E0, void, ReorderableListDebug_Awake, (ReorderableListDebug * __this, MethodInfo * method)); DO_APP_FUNC(0x030324A0, void, ReorderableListDebug_ElementDropped, (ReorderableListDebug * __this, ReorderableList_ReorderableListEventStruct droppedStruct, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5CC8, ReorderableListDebug_ElementDropped__MethodInfo); DO_APP_FUNC(0x003AE000, void, ReorderableListDebug__ctor, (ReorderableListDebug * __this, MethodInfo * method)); DO_APP_FUNC(0x006B5710, bool, ReorderableListElement_get_IsTransferable, (ReorderableListElement * __this, MethodInfo * method)); DO_APP_FUNC(0x03032A30, void, ReorderableListElement_set_IsTransferable, (ReorderableListElement * __this, bool value, MethodInfo * method)); @@ -90098,7 +101600,9 @@ DO_APP_FUNC(0x03034550, void, ReorderableListElement_displaceElement, (Reorderab DO_APP_FUNC(0x03035190, void, ReorderableListElement_revertDisplacedElement, (ReorderableListElement * __this, MethodInfo * method)); DO_APP_FUNC(0x03035B00, void, ReorderableListElement_finishDisplacingElement, (ReorderableListElement * __this, MethodInfo * method)); DO_APP_FUNC(0x03035DD0, void, ReorderableListElement_OnEndDrag, (ReorderableListElement * __this, PointerEventData * eventData, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5C38, ReorderableListElement_OnEndDrag__MethodInfo); DO_APP_FUNC(0x03036E30, void, ReorderableListElement_CancelDrag, (ReorderableListElement * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5C48, ReorderableListElement_CancelDrag__MethodInfo); DO_APP_FUNC(0x030377B0, void, ReorderableListElement_RefreshSizes, (ReorderableListElement * __this, MethodInfo * method)); DO_APP_FUNC(0x03037C30, void, ReorderableListElement_Init, (ReorderableListElement * __this, ReorderableList * reorderableList, MethodInfo * method)); DO_APP_FUNC(0x03037DE0, void, ReorderableListElement__ctor, (ReorderableListElement * __this, MethodInfo * method)); @@ -90146,6 +101650,7 @@ DO_APP_FUNC(0x003AE050, void, Segment_DelayedInit_d_14_System_IDisposable_Dispos DO_APP_FUNC(0x0303B6C0, bool, Segment_DelayedInit_d_14_MoveNext, (Segment_DelayedInit_d_14 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, Segment_DelayedInit_d_14_System_Collections_Generic_IEnumerator_System_Object__get_Current, (Segment_DelayedInit_d_14 * __this, MethodInfo * method)); DO_APP_FUNC(0x0303B860, void, Segment_DelayedInit_d_14_System_Collections_IEnumerator_Reset, (Segment_DelayedInit_d_14 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5B60, Segment_DelayedInit_d_14_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Segment_DelayedInit_d_14_System_Collections_IEnumerator_get_Current, (Segment_DelayedInit_d_14 * __this, MethodInfo * method)); DO_APP_FUNC(0x0303B8B0, float, SegmentedControl_get_SeparatorWidth, (SegmentedControl * __this, MethodInfo * method)); DO_APP_FUNC(0x0303BA30, Selectable__Array *, SegmentedControl_get_segments, (SegmentedControl * __this, MethodInfo * method)); @@ -90162,6 +101667,7 @@ DO_APP_FUNC(0x0303BF70, void, SegmentedControl_Start, (SegmentedControl * __this DO_APP_FUNC(0x0303BFE0, void, SegmentedControl_OnEnable, (SegmentedControl * __this, MethodInfo * method)); DO_APP_FUNC(0x0303C010, IEnumerator *, SegmentedControl_DelayedInit, (SegmentedControl * __this, MethodInfo * method)); DO_APP_FUNC(0x0303C0B0, Selectable__Array *, SegmentedControl_GetChildSegments, (SegmentedControl * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5A78, SegmentedControl_GetChildSegments__MethodInfo); DO_APP_FUNC(0x0303C2C0, void, SegmentedControl_RecreateSprites, (SegmentedControl * __this, MethodInfo * method)); DO_APP_FUNC(0x0303C6A0, Sprite *, SegmentedControl_CutSprite, (Sprite * sprite, bool leftmost, bool rightmost, MethodInfo * method)); DO_APP_FUNC(0x0303CA80, void, SegmentedControl_LayoutSegments, (SegmentedControl * __this, MethodInfo * method)); @@ -90171,6 +101677,7 @@ DO_APP_FUNC(0x003AE050, void, SegmentedControl_DelayedInit_d_27_System_IDisposab DO_APP_FUNC(0x0303D490, bool, SegmentedControl_DelayedInit_d_27_MoveNext, (SegmentedControl_DelayedInit_d_27 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SegmentedControl_DelayedInit_d_27_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SegmentedControl_DelayedInit_d_27 * __this, MethodInfo * method)); DO_APP_FUNC(0x0303D550, void, SegmentedControl_DelayedInit_d_27_System_Collections_IEnumerator_Reset, (SegmentedControl_DelayedInit_d_27 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5AD0, SegmentedControl_DelayedInit_d_27_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SegmentedControl_DelayedInit_d_27_System_Collections_IEnumerator_get_Current, (SegmentedControl_DelayedInit_d_27 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCC40, bool, ExampleSelectable_get_selected, (ExampleSelectable * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCC50, void, ExampleSelectable_set_selected, (ExampleSelectable * __this, bool value, MethodInfo * method)); @@ -90181,6 +101688,7 @@ DO_APP_FUNC(0x0303D800, void, ExampleSelectable_Update, (ExampleSelectable * __t DO_APP_FUNC(0x003AE000, void, ExampleSelectable__ctor, (ExampleSelectable * __this, MethodInfo * method)); DO_APP_FUNC(0x00978060, Transform *, ExampleSelectable_UnityEngine_UI_Extensions_IBoxSelectable_get_transform, (ExampleSelectable * __this, MethodInfo * method)); DO_APP_FUNC(0x0303DAA0, void, SelectionBox_ValidateCanvas, (SelectionBox * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7560, SelectionBox_ValidateCanvas__MethodInfo); DO_APP_FUNC(0x0303DD60, void, SelectionBox_SetSelectableGroup, (SelectionBox * __this, IEnumerable_1_UnityEngine_MonoBehaviour_ * behaviourCollection, MethodInfo * method)); DO_APP_FUNC(0x0303E0B0, void, SelectionBox_CreateBoxRect, (SelectionBox * __this, MethodInfo * method)); DO_APP_FUNC(0x0303E2C0, void, SelectionBox_ResetBoxRect, (SelectionBox * __this, MethodInfo * method)); @@ -90219,6 +101727,7 @@ DO_APP_FUNC(0x03040AA0, void, Stepper_Start, (Stepper * __this, MethodInfo * met DO_APP_FUNC(0x03040B10, void, Stepper_OnEnable, (Stepper * __this, MethodInfo * method)); DO_APP_FUNC(0x03040B40, IEnumerator *, Stepper_DelayedInit, (Stepper * __this, MethodInfo * method)); DO_APP_FUNC(0x03040BE0, Selectable__Array *, Stepper_GetSides, (Stepper * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF74F8, Stepper_GetSides__MethodInfo); DO_APP_FUNC(0x03040D20, void, Stepper_StepUp, (Stepper * __this, MethodInfo * method)); DO_APP_FUNC(0x03040D30, void, Stepper_StepDown, (Stepper * __this, MethodInfo * method)); DO_APP_FUNC(0x03040D40, void, Stepper_Step, (Stepper * __this, int32_t amount, MethodInfo * method)); @@ -90232,6 +101741,7 @@ DO_APP_FUNC(0x003AE050, void, Stepper_DelayedInit_d_38_System_IDisposable_Dispos DO_APP_FUNC(0x03041F70, bool, Stepper_DelayedInit_d_38_MoveNext, (Stepper_DelayedInit_d_38 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, Stepper_DelayedInit_d_38_System_Collections_Generic_IEnumerator_System_Object__get_Current, (Stepper_DelayedInit_d_38 * __this, MethodInfo * method)); DO_APP_FUNC(0x03042030, void, Stepper_DelayedInit_d_38_System_Collections_IEnumerator_Reset, (Stepper_DelayedInit_d_38 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7450, Stepper_DelayedInit_d_38_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Stepper_DelayedInit_d_38_System_Collections_IEnumerator_get_Current, (Stepper_DelayedInit_d_38 * __this, MethodInfo * method)); DO_APP_FUNC(0x03042080, Selectable *, StepperSide_get_button, (StepperSide * __this, MethodInfo * method)); DO_APP_FUNC(0x030420C0, Stepper *, StepperSide_get_stepper, (StepperSide * __this, MethodInfo * method)); @@ -90274,6 +101784,7 @@ DO_APP_FUNC(0x03048270, void, TextPic_HrefInfo__ctor, (TextPic_HrefInfo * __this DO_APP_FUNC(0x030483F0, void, TextPic_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TextPic_c__ctor, (TextPic_c * __this, MethodInfo * method)); DO_APP_FUNC(0x030484A0, bool, TextPic_c__UpdateQuadImage_b__48_0, (TextPic_c * __this, Image * image, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7468, TextPic_c__UpdateQuadImage_b__48_0__MethodInfo); DO_APP_FUNC(0x030485A0, void, UI_Knob_Awake, (UI_Knob * __this, MethodInfo * method)); DO_APP_FUNC(0x03048690, void, UI_Knob_Start, (UI_Knob * __this, MethodInfo * method)); DO_APP_FUNC(0x030486A0, void, UI_Knob_CheckForParentTouchMask, (UI_Knob * __this, MethodInfo * method)); @@ -90284,15 +101795,20 @@ DO_APP_FUNC(0x03048C30, void, UI_Knob_OnPointerDown, (UI_Knob * __this, PointerE DO_APP_FUNC(0x03048FB0, void, UI_Knob_OnDrag, (UI_Knob * __this, PointerEventData * eventData, MethodInfo * method)); DO_APP_FUNC(0x03049790, void, UI_Knob_UpdateKnobValue, (UI_Knob * __this, MethodInfo * method)); DO_APP_FUNC(0x03049A30, void, UI_Knob_SetKnobValue, (UI_Knob * __this, float value, int32_t loops, MethodInfo * method)); -DO_APP_FUNC(0x03049C80, void, UI_Knob_SnapToPositionValue, (UI_Knob * __this, float knobValue, MethodInfo * method)); +DO_APP_FUNC(0x03049C80, void, UI_Knob_SnapToPositionValue, (UI_Knob * __this, float * knobValue, MethodInfo * method)); DO_APP_FUNC(0x03049CD0, void, UI_Knob_InvokeEvents, (UI_Knob * __this, float value, MethodInfo * method)); DO_APP_FUNC(0x02FDBE00, void, UI_Knob_OnInitializePotentialDrag, (UI_Knob * __this, PointerEventData * eventData, MethodInfo * method)); DO_APP_FUNC(0x03049D50, void, UI_Knob__ctor, (UI_Knob * __this, MethodInfo * method)); DO_APP_FUNC(0x03049DC0, void, UI_Knob__CheckForParentTouchMask_b__21_0, (UI_Knob * __this, BaseEventData * data, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF73E0, UI_Knob__CheckForParentTouchMask_b__21_0__MethodInfo); DO_APP_FUNC(0x03049E50, void, UI_Knob__CheckForParentTouchMask_b__21_1, (UI_Knob * __this, BaseEventData * data, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF73E8, UI_Knob__CheckForParentTouchMask_b__21_1__MethodInfo); DO_APP_FUNC(0x03049EE0, void, UI_Knob__CheckForParentTouchMask_b__21_2, (UI_Knob * __this, BaseEventData * data, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF73D0, UI_Knob__CheckForParentTouchMask_b__21_2__MethodInfo); DO_APP_FUNC(0x03049F70, void, UI_Knob__CheckForParentTouchMask_b__21_3, (UI_Knob * __this, BaseEventData * data, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF73D8, UI_Knob__CheckForParentTouchMask_b__21_3__MethodInfo); DO_APP_FUNC(0x0304A000, void, UI_Knob__CheckForParentTouchMask_b__21_4, (UI_Knob * __this, BaseEventData * data, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF73C0, UI_Knob__CheckForParentTouchMask_b__21_4__MethodInfo); DO_APP_FUNC(0x0304A090, void, KnobFloatValueEvent__ctor, (KnobFloatValueEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x02FF47C0, void, BestFitOutline__ctor, (BestFitOutline * __this, MethodInfo * method)); DO_APP_FUNC(0x0304A0D0, void, BestFitOutline_ModifyMesh, (BestFitOutline * __this, Mesh * mesh, MethodInfo * method)); @@ -90310,13 +101826,14 @@ DO_APP_FUNC(0x003BB330, Graphic *, CUIGraphic_get_UIGraphic, (CUIGraphic * __thi DO_APP_FUNC(0x003C7320, CUIGraphic *, CUIGraphic_get_RefCUIGraphic, (CUIGraphic * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7390, CUIBezierCurve__Array *, CUIGraphic_get_RefCurves, (CUIGraphic * __this, MethodInfo * method)); DO_APP_FUNC(0x003CD530, Vector3_Array2D__Array *, CUIGraphic_get_RefCurvesControlRatioPoints, (CUIGraphic * __this, MethodInfo * method)); -DO_APP_FUNC(0x0304AAA0, void, CUIGraphic_solveDoubleEquationWithVector, (CUIGraphic * __this, float _x_1, float _y_1, float _x_2, float _y_2, Vector3 _constant_1, Vector3 _contant_2, Vector3 _x, Vector3 _y, MethodInfo * method)); +DO_APP_FUNC(0x0304AAA0, void, CUIGraphic_solveDoubleEquationWithVector, (CUIGraphic * __this, float _x_1, float _y_1, float _x_2, float _y_2, Vector3 _constant_1, Vector3 _contant_2, Vector3 * _x, Vector3 * _y, MethodInfo * method)); DO_APP_FUNC(0x0304AD80, UIVertex, CUIGraphic_uiVertexLerp, (CUIGraphic * __this, UIVertex _a, UIVertex _b, float _time, MethodInfo * method)); DO_APP_FUNC(0x0304B1A0, UIVertex, CUIGraphic_uiVertexBerp, (CUIGraphic * __this, UIVertex v_bottomLeft, UIVertex v_topLeft, UIVertex v_topRight, UIVertex v_bottomRight, float _xTime, float _yTime, MethodInfo * method)); DO_APP_FUNC(0x0304B4B0, void, CUIGraphic_tessellateQuad, (CUIGraphic * __this, List_1_UnityEngine_UIVertex_ * _quads, int32_t _thisQuadIdx, MethodInfo * method)); DO_APP_FUNC(0x0304C350, void, CUIGraphic_tessellateGraphic, (CUIGraphic * __this, List_1_UnityEngine_UIVertex_ * _verts, MethodInfo * method)); DO_APP_FUNC(0x0304D030, void, CUIGraphic_OnRectTransformDimensionsChange, (CUIGraphic * __this, MethodInfo * method)); DO_APP_FUNC(0x0304D040, void, CUIGraphic_Refresh, (CUIGraphic * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7328, CUIGraphic_Refresh__MethodInfo); DO_APP_FUNC(0x012EAEC0, void, CUIGraphic_Awake, (CUIGraphic * __this, MethodInfo * method)); DO_APP_FUNC(0x0304D500, void, CUIGraphic_OnEnable, (CUIGraphic * __this, MethodInfo * method)); DO_APP_FUNC(0x0304D530, void, CUIGraphic_ReportSet, (CUIGraphic * __this, MethodInfo * method)); @@ -90337,8 +101854,8 @@ DO_APP_FUNC(0x03050260, void, CUIImage_ReportSet, (CUIImage * __this, MethodInfo DO_APP_FUNC(0x030503E0, void, CUIImage_modifyVertices, (CUIImage * __this, List_1_UnityEngine_UIVertex_ * _verts, MethodInfo * method)); DO_APP_FUNC(0x03051110, void, CUIImage__ctor, (CUIImage * __this, MethodInfo * method)); DO_APP_FUNC(0x03051210, void, CUIImage__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x03051270, Vector3, Vector3_Array2D_get_Item, (Vector3_Array2D__Boxed * __this, int32_t _idx, MethodInfo * method)); -DO_APP_FUNC(0x030512C0, void, Vector3_Array2D_set_Item, (Vector3_Array2D__Boxed * __this, int32_t _idx, Vector3 value, MethodInfo * method)); +DO_APP_FUNC(0x03051270, Vector3, Vector3_Array2D_get_Item, (Vector3_Array2D * __this, int32_t _idx, MethodInfo * method)); +DO_APP_FUNC(0x030512C0, void, Vector3_Array2D_set_Item, (Vector3_Array2D * __this, int32_t _idx, Vector3 value, MethodInfo * method)); DO_APP_FUNC(0x03051300, void, CUIText_ReportSet, (CUIText * __this, MethodInfo * method)); DO_APP_FUNC(0x03051480, void, CUIText__ctor, (CUIText * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, AnimationCurve *, CurvedText_get_CurveForText, (CurvedText * __this, MethodInfo * method)); @@ -90391,7 +101908,9 @@ DO_APP_FUNC(0x030573B0, void, Gradient2__ctor, (Gradient2 * __this, MethodInfo * DO_APP_FUNC(0x03057610, void, Gradient2_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Gradient2_c__ctor, (Gradient2_c * __this, MethodInfo * method)); DO_APP_FUNC(0x030576C0, float, Gradient2_c__ModifyMesh_b__24_0, (Gradient2_c * __this, UIVertex v, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF72E8, Gradient2_c__ModifyMesh_b__24_0__MethodInfo); DO_APP_FUNC(0x030576D0, float, Gradient2_c__ModifyMesh_b__24_1, (Gradient2_c * __this, UIVertex v, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7300, Gradient2_c__ModifyMesh_b__24_1__MethodInfo); DO_APP_FUNC(0x003AE000, void, LetterSpacing__ctor, (LetterSpacing * __this, MethodInfo * method)); DO_APP_FUNC(0x003CC930, float, LetterSpacing_get_spacing, (LetterSpacing * __this, MethodInfo * method)); DO_APP_FUNC(0x030576E0, void, LetterSpacing_set_spacing, (LetterSpacing * __this, float value, MethodInfo * method)); @@ -90495,6 +102014,7 @@ DO_APP_FUNC(0x003AE050, void, CardStack2D_ButtonCooldown_d_14_System_IDisposable DO_APP_FUNC(0x03066310, bool, CardStack2D_ButtonCooldown_d_14_MoveNext, (CardStack2D_ButtonCooldown_d_14 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, CardStack2D_ButtonCooldown_d_14_System_Collections_Generic_IEnumerator_System_Object__get_Current, (CardStack2D_ButtonCooldown_d_14 * __this, MethodInfo * method)); DO_APP_FUNC(0x03066470, void, CardStack2D_ButtonCooldown_d_14_System_Collections_IEnumerator_Reset, (CardStack2D_ButtonCooldown_d_14 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF86A8, CardStack2D_ButtonCooldown_d_14_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, CardStack2D_ButtonCooldown_d_14_System_Collections_IEnumerator_get_Current, (CardStack2D_ButtonCooldown_d_14 * __this, MethodInfo * method)); DO_APP_FUNC(0x030664C0, void, CardExpanding3D_Start, (CardExpanding3D * __this, MethodInfo * method)); DO_APP_FUNC(0x03066930, void, CardExpanding3D_Update, (CardExpanding3D * __this, MethodInfo * method)); @@ -90527,7 +102047,7 @@ DO_APP_FUNC(0x006F94D0, bool, ContentScrollSnapHorizontal_get_Lerping, (ContentS DO_APP_FUNC(0x0306A090, int32_t, ContentScrollSnapHorizontal_get_ClosestItemIndex, (ContentScrollSnapHorizontal * __this, MethodInfo * method)); DO_APP_FUNC(0x0306A1C0, int32_t, ContentScrollSnapHorizontal_get_LerpTargetIndex, (ContentScrollSnapHorizontal * __this, MethodInfo * method)); DO_APP_FUNC(0x0306A270, void, ContentScrollSnapHorizontal_Awake, (ContentScrollSnapHorizontal * __this, MethodInfo * method)); -DO_APP_FUNC(0x0306A690, void, ContentScrollSnapHorizontal_SetNewItems, (ContentScrollSnapHorizontal * __this, List_1_UnityEngine_Transform_ * newItems, MethodInfo * method)); +DO_APP_FUNC(0x0306A690, void, ContentScrollSnapHorizontal_SetNewItems, (ContentScrollSnapHorizontal * __this, List_1_UnityEngine_Transform_ * * newItems, MethodInfo * method)); DO_APP_FUNC(0x0306AB60, bool, ContentScrollSnapHorizontal_get_IsScrollRectAvailable, (ContentScrollSnapHorizontal * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ContentScrollSnapHorizontal_OnDisable, (ContentScrollSnapHorizontal * __this, MethodInfo * method)); DO_APP_FUNC(0x0306AC50, void, ContentScrollSnapHorizontal_SetupDrivenTransforms, (ContentScrollSnapHorizontal * __this, MethodInfo * method)); @@ -90552,24 +102072,28 @@ DO_APP_FUNC(0x0306D150, Vector2, ContentScrollSnapHorizontal_DstFromTopLeftOfTra DO_APP_FUNC(0x0306D390, Vector3, ContentScrollSnapHorizontal_FindClosestFrom, (ContentScrollSnapHorizontal * __this, Vector3 start, MethodInfo * method)); DO_APP_FUNC(0x0306D6C0, void, ContentScrollSnapHorizontal__ctor, (ContentScrollSnapHorizontal * __this, MethodInfo * method)); DO_APP_FUNC(0x0306C950, void, ContentScrollSnapHorizontal__Awake_b__51_0, (ContentScrollSnapHorizontal * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8648, ContentScrollSnapHorizontal__Awake_b__51_0__MethodInfo); DO_APP_FUNC(0x0306C9D0, void, ContentScrollSnapHorizontal__Awake_b__51_1, (ContentScrollSnapHorizontal * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8658, ContentScrollSnapHorizontal__Awake_b__51_1__MethodInfo); DO_APP_FUNC(0x0042ECC0, void, ContentScrollSnapHorizontal_StartMovementEvent__ctor, (ContentScrollSnapHorizontal_StartMovementEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x0306DB00, void, ContentScrollSnapHorizontal_CurrentItemChangeEvent__ctor, (ContentScrollSnapHorizontal_CurrentItemChangeEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x0306DB40, void, ContentScrollSnapHorizontal_FoundItemToSnapToEvent__ctor, (ContentScrollSnapHorizontal_FoundItemToSnapToEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x0306DB80, void, ContentScrollSnapHorizontal_SnappedToItemEvent__ctor, (ContentScrollSnapHorizontal_SnappedToItemEvent * __this, MethodInfo * method)); -DO_APP_FUNC(0x0306DBC0, void, ContentScrollSnapHorizontal_MoveInfo__ctor, (ContentScrollSnapHorizontal_MoveInfo__Boxed * __this, ContentScrollSnapHorizontal_MoveInfo_IndexType__Enum _indexType, int32_t _index, MethodInfo * method)); -DO_APP_FUNC(0x0306DBE0, void, ContentScrollSnapHorizontal_MoveInfo__ctor_1, (ContentScrollSnapHorizontal_MoveInfo__Boxed * __this, ContentScrollSnapHorizontal_MoveInfo_IndexType__Enum _indexType, int32_t _index, bool _jump, float _duration, MethodInfo * method)); +DO_APP_FUNC(0x0306DBC0, void, ContentScrollSnapHorizontal_MoveInfo__ctor, (ContentScrollSnapHorizontal_MoveInfo * __this, ContentScrollSnapHorizontal_MoveInfo_IndexType__Enum _indexType, int32_t _index, MethodInfo * method)); +DO_APP_FUNC(0x0306DBE0, void, ContentScrollSnapHorizontal_MoveInfo__ctor_1, (ContentScrollSnapHorizontal_MoveInfo * __this, ContentScrollSnapHorizontal_MoveInfo_IndexType__Enum _indexType, int32_t _index, bool _jump, float _duration, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, ContentScrollSnapHorizontal_SlideAndLerp_d_70__ctor, (ContentScrollSnapHorizontal_SlideAndLerp_d_70 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ContentScrollSnapHorizontal_SlideAndLerp_d_70_System_IDisposable_Dispose, (ContentScrollSnapHorizontal_SlideAndLerp_d_70 * __this, MethodInfo * method)); DO_APP_FUNC(0x0306DC00, bool, ContentScrollSnapHorizontal_SlideAndLerp_d_70_MoveNext, (ContentScrollSnapHorizontal_SlideAndLerp_d_70 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, ContentScrollSnapHorizontal_SlideAndLerp_d_70_System_Collections_Generic_IEnumerator_System_Object__get_Current, (ContentScrollSnapHorizontal_SlideAndLerp_d_70 * __this, MethodInfo * method)); DO_APP_FUNC(0x0306E220, void, ContentScrollSnapHorizontal_SlideAndLerp_d_70_System_Collections_IEnumerator_Reset, (ContentScrollSnapHorizontal_SlideAndLerp_d_70 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF84F8, ContentScrollSnapHorizontal_SlideAndLerp_d_70_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, ContentScrollSnapHorizontal_SlideAndLerp_d_70_System_Collections_IEnumerator_get_Current, (ContentScrollSnapHorizontal_SlideAndLerp_d_70 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, ContentScrollSnapHorizontal_LerpToContent_d_71__ctor, (ContentScrollSnapHorizontal_LerpToContent_d_71 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ContentScrollSnapHorizontal_LerpToContent_d_71_System_IDisposable_Dispose, (ContentScrollSnapHorizontal_LerpToContent_d_71 * __this, MethodInfo * method)); DO_APP_FUNC(0x0306E270, bool, ContentScrollSnapHorizontal_LerpToContent_d_71_MoveNext, (ContentScrollSnapHorizontal_LerpToContent_d_71 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, ContentScrollSnapHorizontal_LerpToContent_d_71_System_Collections_Generic_IEnumerator_System_Object__get_Current, (ContentScrollSnapHorizontal_LerpToContent_d_71 * __this, MethodInfo * method)); DO_APP_FUNC(0x0306E590, void, ContentScrollSnapHorizontal_LerpToContent_d_71_System_Collections_IEnumerator_Reset, (ContentScrollSnapHorizontal_LerpToContent_d_71 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF84E0, ContentScrollSnapHorizontal_LerpToContent_d_71_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, ContentScrollSnapHorizontal_LerpToContent_d_71_System_Collections_IEnumerator_get_Current, (ContentScrollSnapHorizontal_LerpToContent_d_71 * __this, MethodInfo * method)); DO_APP_FUNC(0x0306E5E0, void, CurvedLayout_OnEnable, (CurvedLayout * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CurvedLayout_SetLayoutHorizontal, (CurvedLayout * __this, MethodInfo * method)); @@ -90619,6 +102143,7 @@ DO_APP_FUNC(0x0306EEE0, void, Scroller_1_ScrollTo, (Scroller_1 * __this, float p DO_APP_FUNC(0x0306EF40, void, Scroller_1_ScrollTo_1, (Scroller_1 * __this, float position, float duration, Ease__Enum easing, Action * onComplete, MethodInfo * method)); DO_APP_FUNC(0x0306EF90, void, Scroller_1_ScrollTo_2, (Scroller_1 * __this, float position, float duration, EasingFunction_1 * easingFunction, Action * onComplete, MethodInfo * method)); DO_APP_FUNC(0x0306F2E0, void, Scroller_1_JumpTo, (Scroller_1 * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8500, Scroller_1_JumpTo__MethodInfo); DO_APP_FUNC(0x0306F380, MovementDirection__Enum, Scroller_1_GetMovementDirection, (Scroller_1 * __this, int32_t sourceIndex, int32_t destIndex, MethodInfo * method)); DO_APP_FUNC(0x0306F3D0, void, Scroller_1_UnityEngine_EventSystems_IPointerDownHandler_OnPointerDown, (Scroller_1 * __this, PointerEventData * eventData, MethodInfo * method)); DO_APP_FUNC(0x0306F420, void, Scroller_1_UnityEngine_EventSystems_IPointerUpHandler_OnPointerUp, (Scroller_1 * __this, PointerEventData * eventData, MethodInfo * method)); @@ -90636,6 +102161,7 @@ DO_APP_FUNC(0x030701D0, float, Scroller_1_CircularPosition, (Scroller_1 * __this DO_APP_FUNC(0x03070230, void, Scroller_1__ctor, (Scroller_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x030703D0, void, Scroller_1__cctor, (MethodInfo * method)); DO_APP_FUNC(0x03070470, void, Scroller_1__Start_b__55_0, (Scroller_1 * __this, float x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8510, Scroller_1__Start_b__55_0__MethodInfo); DO_APP_FUNC(0x003AE050, void, Scroller_Snap__ctor, (Scroller_Snap * __this, MethodInfo * method)); DO_APP_FUNC(0x030704A0, void, Scroller_AutoScrollState_Reset, (Scroller_AutoScrollState * __this, MethodInfo * method)); DO_APP_FUNC(0x030705C0, void, Scroller_AutoScrollState_Complete, (Scroller_AutoScrollState * __this, MethodInfo * method)); @@ -90669,10 +102195,10 @@ DO_APP_FUNC(0x030728E0, bool, HorizontalScrollSnap_IsRectMovingSlowerThanThresho DO_APP_FUNC(0x03072950, void, HorizontalScrollSnap_DistributePages, (HorizontalScrollSnap * __this, MethodInfo * method)); DO_APP_FUNC(0x03072F80, void, HorizontalScrollSnap_AddChild, (HorizontalScrollSnap * __this, GameObject * GO, MethodInfo * method)); DO_APP_FUNC(0x030730A0, void, HorizontalScrollSnap_AddChild_1, (HorizontalScrollSnap * __this, GameObject * GO, bool WorldPositionStays, MethodInfo * method)); -DO_APP_FUNC(0x030731D0, void, HorizontalScrollSnap_RemoveChild, (HorizontalScrollSnap * __this, int32_t index, GameObject * ChildRemoved, MethodInfo * method)); -DO_APP_FUNC(0x030731F0, void, HorizontalScrollSnap_RemoveChild_1, (HorizontalScrollSnap * __this, int32_t index, bool WorldPositionStays, GameObject * ChildRemoved, MethodInfo * method)); -DO_APP_FUNC(0x030734B0, void, HorizontalScrollSnap_RemoveAllChildren, (HorizontalScrollSnap * __this, GameObject__Array * ChildrenRemoved, MethodInfo * method)); -DO_APP_FUNC(0x030734C0, void, HorizontalScrollSnap_RemoveAllChildren_1, (HorizontalScrollSnap * __this, bool WorldPositionStays, GameObject__Array * ChildrenRemoved, MethodInfo * method)); +DO_APP_FUNC(0x030731D0, void, HorizontalScrollSnap_RemoveChild, (HorizontalScrollSnap * __this, int32_t index, GameObject * * ChildRemoved, MethodInfo * method)); +DO_APP_FUNC(0x030731F0, void, HorizontalScrollSnap_RemoveChild_1, (HorizontalScrollSnap * __this, int32_t index, bool WorldPositionStays, GameObject * * ChildRemoved, MethodInfo * method)); +DO_APP_FUNC(0x030734B0, void, HorizontalScrollSnap_RemoveAllChildren, (HorizontalScrollSnap * __this, GameObject__Array * * ChildrenRemoved, MethodInfo * method)); +DO_APP_FUNC(0x030734C0, void, HorizontalScrollSnap_RemoveAllChildren_1, (HorizontalScrollSnap * __this, bool WorldPositionStays, GameObject__Array * * ChildrenRemoved, MethodInfo * method)); DO_APP_FUNC(0x03073940, void, HorizontalScrollSnap_SetScrollContainerPosition, (HorizontalScrollSnap * __this, MethodInfo * method)); DO_APP_FUNC(0x03073A20, void, HorizontalScrollSnap_UpdateLayout, (HorizontalScrollSnap * __this, MethodInfo * method)); DO_APP_FUNC(0x03073AD0, void, HorizontalScrollSnap_OnRectTransformDimensionsChange, (HorizontalScrollSnap * __this, MethodInfo * method)); @@ -90729,7 +102255,9 @@ DO_APP_FUNC(0x030786E0, void, ScrollSnap_OnDrag, (ScrollSnap * __this, PointerEv DO_APP_FUNC(0x003AE050, void, ScrollSnap_StartScreenChange, (ScrollSnap * __this, MethodInfo * method)); DO_APP_FUNC(0x03078770, void, ScrollSnap__ctor, (ScrollSnap * __this, MethodInfo * method)); DO_APP_FUNC(0x03077F90, void, ScrollSnap__Start_b__35_0, (ScrollSnap * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9988, ScrollSnap__Start_b__35_0__MethodInfo); DO_APP_FUNC(0x03078020, void, ScrollSnap__Start_b__35_1, (ScrollSnap * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9990, ScrollSnap__Start_b__35_1__MethodInfo); DO_APP_FUNC(0x003EE520, void, ScrollSnap_PageSnapChange__ctor, (ScrollSnap_PageSnapChange * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EE650, void, ScrollSnap_PageSnapChange_Invoke, (ScrollSnap_PageSnapChange * __this, int32_t page, MethodInfo * method)); DO_APP_FUNC(0x030787F0, IAsyncResult *, ScrollSnap_PageSnapChange_BeginInvoke, (ScrollSnap_PageSnapChange * __this, int32_t page, AsyncCallback * callback, Object * object, MethodInfo * method)); @@ -90752,7 +102280,7 @@ DO_APP_FUNC(0x0307A480, void, ScrollSnapBase_PreviousScreen, (ScrollSnapBase * _ DO_APP_FUNC(0x0307A5B0, void, ScrollSnapBase_GoToScreen, (ScrollSnapBase * __this, int32_t screenIndex, bool pagination, MethodInfo * method)); DO_APP_FUNC(0x0307A690, int32_t, ScrollSnapBase_GetPageforPosition, (ScrollSnapBase * __this, Vector3 pos, MethodInfo * method)); DO_APP_FUNC(0x0307A730, bool, ScrollSnapBase_IsRectSettledOnaPage, (ScrollSnapBase * __this, Vector3 pos, MethodInfo * method)); -DO_APP_FUNC(0x0307A830, void, ScrollSnapBase_GetPositionforPage, (ScrollSnapBase * __this, int32_t page, Vector3 target, MethodInfo * method)); +DO_APP_FUNC(0x0307A830, void, ScrollSnapBase_GetPositionforPage, (ScrollSnapBase * __this, int32_t page, Vector3 * target, MethodInfo * method)); DO_APP_FUNC(0x0307AA50, void, ScrollSnapBase_ScrollToClosestElement, (ScrollSnapBase * __this, MethodInfo * method)); DO_APP_FUNC(0x0307AB90, void, ScrollSnapBase_OnCurrentScreenChange, (ScrollSnapBase * __this, int32_t currentScreen, MethodInfo * method)); DO_APP_FUNC(0x0307ABC0, void, ScrollSnapBase_ChangeBulletsInfo, (ScrollSnapBase * __this, int32_t targetScreen, MethodInfo * method)); @@ -90762,7 +102290,7 @@ DO_APP_FUNC(0x0307B580, void, ScrollSnapBase_StartScreenChange, (ScrollSnapBase DO_APP_FUNC(0x0307B5C0, void, ScrollSnapBase_ScreenChange, (ScrollSnapBase * __this, MethodInfo * method)); DO_APP_FUNC(0x0307B610, void, ScrollSnapBase_EndScreenChange, (ScrollSnapBase * __this, MethodInfo * method)); DO_APP_FUNC(0x0307B690, Transform *, ScrollSnapBase_CurrentPageObject, (ScrollSnapBase * __this, MethodInfo * method)); -DO_APP_FUNC(0x0307B700, void, ScrollSnapBase_CurrentPageObject_1, (ScrollSnapBase * __this, Transform * returnObject, MethodInfo * method)); +DO_APP_FUNC(0x0307B700, void, ScrollSnapBase_CurrentPageObject_1, (ScrollSnapBase * __this, Transform * * returnObject, MethodInfo * method)); DO_APP_FUNC(0x0307B7C0, void, ScrollSnapBase_OnBeginDrag, (ScrollSnapBase * __this, PointerEventData * eventData, MethodInfo * method)); DO_APP_FUNC(0x0307B890, void, ScrollSnapBase_OnDrag, (ScrollSnapBase * __this, PointerEventData * eventData, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ScrollSnapBase_OnEndDrag, (ScrollSnapBase * __this, PointerEventData * eventData, MethodInfo * method)); @@ -90772,7 +102300,9 @@ DO_APP_FUNC(0x0307B9B0, void, ScrollSnapBase_ChangePage, (ScrollSnapBase * __thi DO_APP_FUNC(0x0307B9C0, void, ScrollSnapBase_OnPointerClick, (ScrollSnapBase * __this, PointerEventData * eventData, MethodInfo * method)); DO_APP_FUNC(0x0307BA30, void, ScrollSnapBase__ctor, (ScrollSnapBase * __this, MethodInfo * method)); DO_APP_FUNC(0x0307BD20, void, ScrollSnapBase__Awake_b__63_0, (ScrollSnapBase * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF99B0, ScrollSnapBase__Awake_b__63_0__MethodInfo); DO_APP_FUNC(0x0307BD30, void, ScrollSnapBase__Awake_b__63_1, (ScrollSnapBase * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF99B8, ScrollSnapBase__Awake_b__63_1__MethodInfo); DO_APP_FUNC(0x0042ECC0, void, ScrollSnapBase_SelectionChangeStartEvent__ctor, (ScrollSnapBase_SelectionChangeStartEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x0307BD40, void, ScrollSnapBase_SelectionPageChangedEvent__ctor, (ScrollSnapBase_SelectionPageChangedEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x0307BD80, void, ScrollSnapBase_SelectionChangeEndEvent__ctor, (ScrollSnapBase_SelectionChangeEndEvent * __this, MethodInfo * method)); @@ -90831,20 +102361,23 @@ DO_APP_FUNC(0x0307F290, void, UIVerticalScroller_SnapToElement, (UIVerticalScrol DO_APP_FUNC(0x0307F410, void, UIVerticalScroller_ScrollUp, (UIVerticalScroller * __this, MethodInfo * method)); DO_APP_FUNC(0x0307F670, void, UIVerticalScroller_ScrollDown, (UIVerticalScroller * __this, MethodInfo * method)); DO_APP_FUNC(0x0307F850, void, UIVerticalScroller__Start_b__29_0, (UIVerticalScroller * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9918, UIVerticalScroller__Start_b__29_0__MethodInfo); DO_APP_FUNC(0x0307F860, void, UIVerticalScroller__Start_b__29_1, (UIVerticalScroller * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9920, UIVerticalScroller__Start_b__29_1__MethodInfo); DO_APP_FUNC(0x0307F870, void, UIVerticalScroller_IntEvent__ctor, (UIVerticalScroller_IntEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, UIVerticalScroller_c_DisplayClass28_0__ctor, (UIVerticalScroller_c_DisplayClass28_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0307F8B0, void, UIVerticalScroller_c_DisplayClass28_0__updateChildren_b__0, (UIVerticalScroller_c_DisplayClass28_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9928, UIVerticalScroller_c_DisplayClass28_0__updateChildren_b__0__MethodInfo); DO_APP_FUNC(0x0307F910, void, VerticalScrollSnap_Start, (VerticalScrollSnap * __this, MethodInfo * method)); DO_APP_FUNC(0x0307FA30, void, VerticalScrollSnap_Update, (VerticalScrollSnap * __this, MethodInfo * method)); DO_APP_FUNC(0x0307FE60, bool, VerticalScrollSnap_IsRectMovingSlowerThanThreshold, (VerticalScrollSnap * __this, float startingSpeed, MethodInfo * method)); DO_APP_FUNC(0x0307FED0, void, VerticalScrollSnap_DistributePages, (VerticalScrollSnap * __this, MethodInfo * method)); DO_APP_FUNC(0x03080500, void, VerticalScrollSnap_AddChild, (VerticalScrollSnap * __this, GameObject * GO, MethodInfo * method)); DO_APP_FUNC(0x03080620, void, VerticalScrollSnap_AddChild_1, (VerticalScrollSnap * __this, GameObject * GO, bool WorldPositionStays, MethodInfo * method)); -DO_APP_FUNC(0x03080750, void, VerticalScrollSnap_RemoveChild, (VerticalScrollSnap * __this, int32_t index, GameObject * ChildRemoved, MethodInfo * method)); -DO_APP_FUNC(0x03080770, void, VerticalScrollSnap_RemoveChild_1, (VerticalScrollSnap * __this, int32_t index, bool WorldPositionStays, GameObject * ChildRemoved, MethodInfo * method)); -DO_APP_FUNC(0x03080A40, void, VerticalScrollSnap_RemoveAllChildren, (VerticalScrollSnap * __this, GameObject__Array * ChildrenRemoved, MethodInfo * method)); -DO_APP_FUNC(0x03080A50, void, VerticalScrollSnap_RemoveAllChildren_1, (VerticalScrollSnap * __this, bool WorldPositionStays, GameObject__Array * ChildrenRemoved, MethodInfo * method)); +DO_APP_FUNC(0x03080750, void, VerticalScrollSnap_RemoveChild, (VerticalScrollSnap * __this, int32_t index, GameObject * * ChildRemoved, MethodInfo * method)); +DO_APP_FUNC(0x03080770, void, VerticalScrollSnap_RemoveChild_1, (VerticalScrollSnap * __this, int32_t index, bool WorldPositionStays, GameObject * * ChildRemoved, MethodInfo * method)); +DO_APP_FUNC(0x03080A40, void, VerticalScrollSnap_RemoveAllChildren, (VerticalScrollSnap * __this, GameObject__Array * * ChildrenRemoved, MethodInfo * method)); +DO_APP_FUNC(0x03080A50, void, VerticalScrollSnap_RemoveAllChildren_1, (VerticalScrollSnap * __this, bool WorldPositionStays, GameObject__Array * * ChildrenRemoved, MethodInfo * method)); DO_APP_FUNC(0x03080ED0, void, VerticalScrollSnap_SetScrollContainerPosition, (VerticalScrollSnap * __this, MethodInfo * method)); DO_APP_FUNC(0x03080FB0, void, VerticalScrollSnap_UpdateLayout, (VerticalScrollSnap * __this, MethodInfo * method)); DO_APP_FUNC(0x03081060, void, VerticalScrollSnap_OnRectTransformDimensionsChange, (VerticalScrollSnap * __this, MethodInfo * method)); @@ -90861,9 +102394,10 @@ DO_APP_FUNC(0x03081560, void, MenuManager_set_Instance, (MenuManager * value, Me DO_APP_FUNC(0x03081600, void, MenuManager_Start, (MenuManager * __this, MethodInfo * method)); DO_APP_FUNC(0x030817E0, void, MenuManager_OnDestroy, (MenuManager * __this, MethodInfo * method)); DO_APP_FUNC(0x030817F0, GameObject *, MenuManager_CreateInstance, (MenuManager * __this, String * MenuName, MethodInfo * method)); -DO_APP_FUNC(0x030818C0, void, MenuManager_CreateInstance_1, (MenuManager * __this, String * MenuName, GameObject * menuInstance, MethodInfo * method)); +DO_APP_FUNC(0x030818C0, void, MenuManager_CreateInstance_1, (MenuManager * __this, String * MenuName, GameObject * * menuInstance, MethodInfo * method)); DO_APP_FUNC(0x030819E0, void, MenuManager_OpenMenu, (MenuManager * __this, Menu_1 * menuInstance, MethodInfo * method)); DO_APP_FUNC(0x03081EE0, GameObject *, MenuManager_GetPrefab, (MenuManager * __this, String * PrefabName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9878, MenuManager_GetPrefab__MethodInfo); DO_APP_FUNC(0x03082030, void, MenuManager_CloseMenu, (MenuManager * __this, Menu_1 * menu, MethodInfo * method)); DO_APP_FUNC(0x03082380, void, MenuManager_CloseTopMenu, (MenuManager * __this, MethodInfo * method)); DO_APP_FUNC(0x03082730, void, MenuManager_Update, (MenuManager * __this, MethodInfo * method)); @@ -91026,10 +102560,12 @@ DO_APP_FUNC(0x0308FEB0, void, UISquircle__ctor, (UISquircle * __this, MethodInfo DO_APP_FUNC(0x0308FFB0, void, UISquircle_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, UISquircle_c__ctor, (UISquircle_c * __this, MethodInfo * method)); DO_APP_FUNC(0x03090060, Vector2, UISquircle_c__OnPopulateMesh_b__11_0, (UISquircle_c * __this, Vector2 t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB0D0, UISquircle_c__OnPopulateMesh_b__11_0__MethodInfo); DO_APP_FUNC(0x03090090, Vector2, UISquircle_c__OnPopulateMesh_b__11_1, (UISquircle_c * __this, Vector2 t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB0B8, UISquircle_c__OnPopulateMesh_b__11_1__MethodInfo); DO_APP_FUNC(0x030900C0, void, TabNavigationHelper_Start, (TabNavigationHelper * __this, MethodInfo * method)); DO_APP_FUNC(0x03090460, void, TabNavigationHelper_Update, (TabNavigationHelper * __this, MethodInfo * method)); -DO_APP_FUNC(0x03091240, void, TabNavigationHelper_SelectDefaultObject, (TabNavigationHelper * __this, Selectable * next, MethodInfo * method)); +DO_APP_FUNC(0x03091240, void, TabNavigationHelper_SelectDefaultObject, (TabNavigationHelper * __this, Selectable * * next, MethodInfo * method)); DO_APP_FUNC(0x030913B0, void, TabNavigationHelper_selectGameObject, (TabNavigationHelper * __this, Selectable * selectable, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, TabNavigationHelper__ctor, (TabNavigationHelper * __this, MethodInfo * method)); DO_APP_FUNC(0x030916E0, bool, BoundTooltipItem_get_IsActive, (BoundTooltipItem * __this, MethodInfo * method)); @@ -91085,6 +102621,7 @@ DO_APP_FUNC(0x003AE050, void, TooltipTrigger_HoveredMouseFollowingLoop_d_10_Syst DO_APP_FUNC(0x03096940, bool, TooltipTrigger_HoveredMouseFollowingLoop_d_10_MoveNext, (TooltipTrigger_HoveredMouseFollowingLoop_d_10 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, TooltipTrigger_HoveredMouseFollowingLoop_d_10_System_Collections_Generic_IEnumerator_System_Object__get_Current, (TooltipTrigger_HoveredMouseFollowingLoop_d_10 * __this, MethodInfo * method)); DO_APP_FUNC(0x03096AD0, void, TooltipTrigger_HoveredMouseFollowingLoop_d_10_System_Collections_IEnumerator_Reset, (TooltipTrigger_HoveredMouseFollowingLoop_d_10 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB068, TooltipTrigger_HoveredMouseFollowingLoop_d_10_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, TooltipTrigger_HoveredMouseFollowingLoop_d_10_System_Collections_IEnumerator_get_Current, (TooltipTrigger_HoveredMouseFollowingLoop_d_10 * __this, MethodInfo * method)); DO_APP_FUNC(0x03096B20, void, UIWindowBase_Start, (UIWindowBase * __this, MethodInfo * method)); DO_APP_FUNC(0x03096DF0, void, UIWindowBase_Update, (UIWindowBase * __this, MethodInfo * method)); @@ -91093,6 +102630,7 @@ DO_APP_FUNC(0x030970D0, void, UIWindowBase_OnBeginDrag, (UIWindowBase * __this, DO_APP_FUNC(0x008F9CF0, void, UIWindowBase_OnEndDrag, (UIWindowBase * __this, PointerEventData * eventData, MethodInfo * method)); DO_APP_FUNC(0x03097280, void, UIWindowBase_resetCoordinatePosition, (UIWindowBase * __this, MethodInfo * method)); DO_APP_FUNC(0x03097330, Vector3, UIWindowBase_ScreenToCanvas, (UIWindowBase * __this, Vector3 screenPosition, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB070, UIWindowBase_ScreenToCanvas__MethodInfo); DO_APP_FUNC(0x03097BF0, void, UIWindowBase__ctor, (UIWindowBase * __this, MethodInfo * method)); DO_APP_FUNC(0x03097C80, void, BezierPath__ctor, (BezierPath * __this, MethodInfo * method)); DO_APP_FUNC(0x03097D50, void, BezierPath_SetControlPoints, (BezierPath * __this, List_1_UnityEngine_Vector2_ * newControlPoints, MethodInfo * method)); @@ -91135,17 +102673,20 @@ DO_APP_FUNC(0x0309A210, void, Circle__ctor_1, (Circle * __this, float radius, in DO_APP_FUNC(0x0309A220, void, Circle__ctor_2, (Circle * __this, float xAxis, float yAxis, MethodInfo * method)); DO_APP_FUNC(0x0309A240, void, Circle__ctor_3, (Circle * __this, float xAxis, float yAxis, int32_t steps, MethodInfo * method)); DO_APP_FUNC(0x0309A250, Vector2, Circle_Evaluate, (Circle * __this, float t, MethodInfo * method)); -DO_APP_FUNC(0x0309A2C0, void, Circle_Evaluate_1, (Circle * __this, float t, Vector2 eval, MethodInfo * method)); +DO_APP_FUNC(0x0309A2C0, void, Circle_Evaluate_1, (Circle * __this, float t, Vector2 * eval, MethodInfo * method)); DO_APP_FUNC(0x0309A330, Byte__Array *, CLZF2_Compress, (Byte__Array * inputBytes, MethodInfo * method)); DO_APP_FUNC(0x0309A460, Byte__Array *, CLZF2_Decompress, (Byte__Array * inputBytes, MethodInfo * method)); -DO_APP_FUNC(0x0309A590, int32_t, CLZF2_lzf_compress, (Byte__Array * input, Byte__Array * output, MethodInfo * method)); -DO_APP_FUNC(0x0309ACF0, int32_t, CLZF2_lzf_decompress, (Byte__Array * input, Byte__Array * output, MethodInfo * method)); +DO_APP_FUNC(0x0309A590, int32_t, CLZF2_lzf_compress, (Byte__Array * input, Byte__Array * * output, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAFC8, CLZF2_lzf_compress__MethodInfo); +DO_APP_FUNC(0x0309ACF0, int32_t, CLZF2_lzf_decompress, (Byte__Array * input, Byte__Array * * output, MethodInfo * method)); DO_APP_FUNC(0x0309AF00, void, CLZF2__cctor, (MethodInfo * method)); DO_APP_FUNC(0x0309B030, void, DragCorrector_Start, (DragCorrector * __this, MethodInfo * method)); DO_APP_FUNC(0x0309B110, void, DragCorrector__ctor, (DragCorrector * __this, MethodInfo * method)); DO_APP_FUNC(0x0309B170, bool, ExtentionMethods_IsPrefab, (GameObject * gameObject, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAFD8, ExtentionMethods_IsPrefab__MethodInfo); DO_APP_FUNC(0x0309B390, void, InputFieldEnterSubmit_Awake, (InputFieldEnterSubmit * __this, MethodInfo * method)); DO_APP_FUNC(0x0309B4C0, void, InputFieldEnterSubmit_OnEndEdit, (InputFieldEnterSubmit * __this, String * txt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAFD0, InputFieldEnterSubmit_OnEndEdit__MethodInfo); DO_APP_FUNC(0x00426760, void, InputFieldEnterSubmit__ctor, (InputFieldEnterSubmit * __this, MethodInfo * method)); DO_APP_FUNC(0x0309B600, void, InputFieldEnterSubmit_EnterSubmitEvent__ctor, (InputFieldEnterSubmit_EnterSubmitEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NonDrawingGraphic_SetMaterialDirty, (NonDrawingGraphic * __this, MethodInfo * method)); @@ -91159,9 +102700,12 @@ DO_APP_FUNC(0x0309B970, void, PaginationManager_ResetPaginationChildren, (Pagina DO_APP_FUNC(0x0309BF20, void, PaginationManager_GoToScreen, (PaginationManager * __this, int32_t pageNo, MethodInfo * method)); DO_APP_FUNC(0x0309BF50, void, PaginationManager_ToggleClick, (PaginationManager * __this, Toggle * target, MethodInfo * method)); DO_APP_FUNC(0x0309C010, void, PaginationManager_ToggleClick_1, (PaginationManager * __this, bool toggle, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB000, PaginationManager_ToggleClick_1__MethodInfo); DO_APP_FUNC(0x0309C0F0, void, PaginationManager_ToggleClick_2, (PaginationManager * __this, int32_t target, MethodInfo * method)); DO_APP_FUNC(0x0309C120, void, PaginationManager_SetToggleGraphics, (PaginationManager * __this, int32_t pageNo, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAFE0, PaginationManager_SetToggleGraphics__MethodInfo); DO_APP_FUNC(0x01B52B60, void, PaginationManager_OnPageChangeEnd, (PaginationManager * __this, int32_t pageNo, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAFF0, PaginationManager_OnPageChangeEnd__MethodInfo); DO_APP_FUNC(0x0309C1B0, void, PPIViewer_Awake, (PPIViewer * __this, MethodInfo * method)); DO_APP_FUNC(0x0309C240, void, PPIViewer_Start, (PPIViewer * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, PPIViewer__ctor, (PPIViewer * __this, MethodInfo * method)); @@ -91183,18 +102727,24 @@ DO_APP_FUNC(0x0309D8E0, void, ScrollRectEx_OnScroll, (ScrollRectEx * __this, Poi DO_APP_FUNC(0x0309DAF0, void, ScrollRectEx__ctor, (ScrollRectEx * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ScrollRectEx_c_DisplayClass2_0__ctor, (ScrollRectEx_c_DisplayClass2_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0309DB00, void, ScrollRectEx_c_DisplayClass2_0__OnInitializePotentialDrag_b__0, (ScrollRectEx_c_DisplayClass2_0 * __this, IInitializePotentialDragHandler * parent, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAF10, ScrollRectEx_c_DisplayClass2_0__OnInitializePotentialDrag_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, ScrollRectEx_c_DisplayClass3_0__ctor, (ScrollRectEx_c_DisplayClass3_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0309DB60, void, ScrollRectEx_c_DisplayClass3_0__OnDrag_b__0, (ScrollRectEx_c_DisplayClass3_0 * __this, IDragHandler * parent, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAEF0, ScrollRectEx_c_DisplayClass3_0__OnDrag_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, ScrollRectEx_c_DisplayClass4_0__ctor, (ScrollRectEx_c_DisplayClass4_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0309DBC0, void, ScrollRectEx_c_DisplayClass4_0__OnBeginDrag_b__0, (ScrollRectEx_c_DisplayClass4_0 * __this, IBeginDragHandler * parent, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAF28, ScrollRectEx_c_DisplayClass4_0__OnBeginDrag_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, ScrollRectEx_c_DisplayClass5_0__ctor, (ScrollRectEx_c_DisplayClass5_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0309DC20, void, ScrollRectEx_c_DisplayClass5_0__OnEndDrag_b__0, (ScrollRectEx_c_DisplayClass5_0 * __this, IEndDragHandler * parent, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAF58, ScrollRectEx_c_DisplayClass5_0__OnEndDrag_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, ScrollRectEx_c_DisplayClass6_0__ctor, (ScrollRectEx_c_DisplayClass6_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0309DC80, void, ScrollRectEx_c_DisplayClass6_0__OnScroll_b__0, (ScrollRectEx_c_DisplayClass6_0 * __this, IScrollHandler * parent, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAF78, ScrollRectEx_c_DisplayClass6_0__OnScroll_b__0__MethodInfo); DO_APP_FUNC(0x0309DCE0, void, ScrollRectExtensions_ScrollToTop, (ScrollRect * scrollRect, MethodInfo * method)); DO_APP_FUNC(0x0309DD40, void, ScrollRectExtensions_ScrollToBottom, (ScrollRect * scrollRect, MethodInfo * method)); DO_APP_FUNC(0x0309DD90, void, ScrollRectLinker_Awake, (ScrollRectLinker * __this, MethodInfo * method)); DO_APP_FUNC(0x0309DF90, void, ScrollRectLinker_MirrorPos, (ScrollRectLinker * __this, Vector2 scrollPos, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAEA0, ScrollRectLinker_MirrorPos__MethodInfo); DO_APP_FUNC(0x005AD6C0, void, ScrollRectLinker__ctor, (ScrollRectLinker * __this, MethodInfo * method)); DO_APP_FUNC(0x0309E070, void, ScrollRectTweener_Awake, (ScrollRectTweener * __this, MethodInfo * method)); DO_APP_FUNC(0x0309E120, void, ScrollRectTweener_ScrollHorizontal, (ScrollRectTweener * __this, float normalizedX, MethodInfo * method)); @@ -91218,6 +102768,7 @@ DO_APP_FUNC(0x003AE050, void, ScrollRectTweener_DoMove_d_17_System_IDisposable_D DO_APP_FUNC(0x0309E990, bool, ScrollRectTweener_DoMove_d_17_MoveNext, (ScrollRectTweener_DoMove_d_17 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, ScrollRectTweener_DoMove_d_17_System_Collections_Generic_IEnumerator_System_Object__get_Current, (ScrollRectTweener_DoMove_d_17 * __this, MethodInfo * method)); DO_APP_FUNC(0x0309EC10, void, ScrollRectTweener_DoMove_d_17_System_Collections_IEnumerator_Reset, (ScrollRectTweener_DoMove_d_17 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAEA8, ScrollRectTweener_DoMove_d_17_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, ScrollRectTweener_DoMove_d_17_System_Collections_IEnumerator_get_Current, (ScrollRectTweener_DoMove_d_17 * __this, MethodInfo * method)); DO_APP_FUNC(0x0309EC60, Selectable *, SelectableScaler_get_Target, (SelectableScaler * __this, MethodInfo * method)); DO_APP_FUNC(0x0309EDD0, void, SelectableScaler_Awake, (SelectableScaler * __this, MethodInfo * method)); @@ -91232,14 +102783,16 @@ DO_APP_FUNC(0x003AE050, void, SelectableScaler_ScaleIN_d_11_System_IDisposable_D DO_APP_FUNC(0x0309F4E0, bool, SelectableScaler_ScaleIN_d_11_MoveNext, (SelectableScaler_ScaleIN_d_11 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SelectableScaler_ScaleIN_d_11_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SelectableScaler_ScaleIN_d_11 * __this, MethodInfo * method)); DO_APP_FUNC(0x0309F8B0, void, SelectableScaler_ScaleIN_d_11_System_Collections_IEnumerator_Reset, (SelectableScaler_ScaleIN_d_11 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAED8, SelectableScaler_ScaleIN_d_11_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SelectableScaler_ScaleIN_d_11_System_Collections_IEnumerator_get_Current, (SelectableScaler_ScaleIN_d_11 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, SelectableScaler_ScaleOUT_d_12__ctor, (SelectableScaler_ScaleOUT_d_12 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SelectableScaler_ScaleOUT_d_12_System_IDisposable_Dispose, (SelectableScaler_ScaleOUT_d_12 * __this, MethodInfo * method)); DO_APP_FUNC(0x0309F900, bool, SelectableScaler_ScaleOUT_d_12_MoveNext, (SelectableScaler_ScaleOUT_d_12 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SelectableScaler_ScaleOUT_d_12_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SelectableScaler_ScaleOUT_d_12 * __this, MethodInfo * method)); DO_APP_FUNC(0x0309FD20, void, SelectableScaler_ScaleOUT_d_12_System_Collections_IEnumerator_Reset, (SelectableScaler_ScaleOUT_d_12 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAE38, SelectableScaler_ScaleOUT_d_12_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SelectableScaler_ScaleOUT_d_12_System_Collections_IEnumerator_get_Current, (SelectableScaler_ScaleOUT_d_12 * __this, MethodInfo * method)); -DO_APP_FUNC(0x02C0F490, bool, SetPropertyUtility_1_SetColor, (Color currentValue, Color newValue, MethodInfo * method)); +DO_APP_FUNC(0x02C0F490, bool, SetPropertyUtility_1_SetColor, (Color * currentValue, Color newValue, MethodInfo * method)); DO_APP_FUNC(0x0309FD70, Shader *, ShaderLibrary_GetShaderInstance, (String * shaderName, MethodInfo * method)); DO_APP_FUNC(0x0309FFE0, void, ShaderLibrary__cctor, (MethodInfo * method)); DO_APP_FUNC(0x030A00D0, Vector2, RectTransformExtension_switchToRectTransform, (RectTransform * from, RectTransform * to, MethodInfo * method)); @@ -91300,6 +102853,7 @@ DO_APP_FUNC(0x003AE050, void, UIScrollToSelection_ScrollToPosition_d_41_System_I DO_APP_FUNC(0x030A3570, bool, UIScrollToSelection_ScrollToPosition_d_41_MoveNext, (UIScrollToSelection_ScrollToPosition_d_41 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, UIScrollToSelection_ScrollToPosition_d_41_System_Collections_Generic_IEnumerator_System_Object__get_Current, (UIScrollToSelection_ScrollToPosition_d_41 * __this, MethodInfo * method)); DO_APP_FUNC(0x030A3AE0, void, UIScrollToSelection_ScrollToPosition_d_41_System_Collections_IEnumerator_Reset, (UIScrollToSelection_ScrollToPosition_d_41 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFADB0, UIScrollToSelection_ScrollToPosition_d_41_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, UIScrollToSelection_ScrollToPosition_d_41_System_Collections_IEnumerator_get_Current, (UIScrollToSelection_ScrollToPosition_d_41 * __this, MethodInfo * method)); DO_APP_FUNC(0x030A3B30, void, UIScrollToSelectionXY_Start, (UIScrollToSelectionXY * __this, MethodInfo * method)); DO_APP_FUNC(0x030A3C50, void, UIScrollToSelectionXY_Update, (UIScrollToSelectionXY * __this, MethodInfo * method)); @@ -91316,18 +102870,19 @@ DO_APP_FUNC(0x00612630, void, UISelectableExtension_OnDisable, (UISelectableExte DO_APP_FUNC(0x003AE000, void, UISelectableExtension__ctor, (UISelectableExtension * __this, MethodInfo * method)); DO_APP_FUNC(0x030A48E0, void, UISelectableExtension_UIButtonEvent__ctor, (UISelectableExtension_UIButtonEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x030A4920, void, UI_InfiniteScroll_Awake, (UI_InfiniteScroll * __this, MethodInfo * method)); -DO_APP_FUNC(0x030A4930, void, UI_InfiniteScroll_SetNewItems, (UI_InfiniteScroll * __this, List_1_UnityEngine_Transform_ * newItems, MethodInfo * method)); +DO_APP_FUNC(0x030A4930, void, UI_InfiniteScroll_SetNewItems, (UI_InfiniteScroll * __this, List_1_UnityEngine_Transform_ * * newItems, MethodInfo * method)); DO_APP_FUNC(0x030A4EB0, void, UI_InfiniteScroll_SetItems, (UI_InfiniteScroll * __this, MethodInfo * method)); DO_APP_FUNC(0x030A50C0, void, UI_InfiniteScroll_Init, (UI_InfiniteScroll * __this, MethodInfo * method)); DO_APP_FUNC(0x030A59B0, void, UI_InfiniteScroll_DisableGridComponents, (UI_InfiniteScroll * __this, MethodInfo * method)); DO_APP_FUNC(0x030A5E20, void, UI_InfiniteScroll_OnScroll, (UI_InfiniteScroll * __this, Vector2 pos, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAD18, UI_InfiniteScroll_OnScroll__MethodInfo); DO_APP_FUNC(0x030A6710, void, UI_InfiniteScroll__ctor, (UI_InfiniteScroll * __this, MethodInfo * method)); DO_APP_FUNC(0x030A6860, void, UI_MagneticInfiniteScroll_add_OnNewSelect, (UI_MagneticInfiniteScroll * __this, Action_1_UnityEngine_GameObject_ * value, MethodInfo * method)); DO_APP_FUNC(0x030A6970, void, UI_MagneticInfiniteScroll_remove_OnNewSelect, (UI_MagneticInfiniteScroll * __this, Action_1_UnityEngine_GameObject_ * value, MethodInfo * method)); DO_APP_FUNC(0x005A9990, List_1_UnityEngine_RectTransform_ *, UI_MagneticInfiniteScroll_get_Items, (UI_MagneticInfiniteScroll * __this, MethodInfo * method)); DO_APP_FUNC(0x030A6A80, void, UI_MagneticInfiniteScroll_Awake, (UI_MagneticInfiniteScroll * __this, MethodInfo * method)); DO_APP_FUNC(0x030A6B40, void, UI_MagneticInfiniteScroll_Update, (UI_MagneticInfiniteScroll * __this, MethodInfo * method)); -DO_APP_FUNC(0x030A7270, void, UI_MagneticInfiniteScroll_SetNewItems, (UI_MagneticInfiniteScroll * __this, List_1_UnityEngine_Transform_ * newItems, MethodInfo * method)); +DO_APP_FUNC(0x030A7270, void, UI_MagneticInfiniteScroll_SetNewItems, (UI_MagneticInfiniteScroll * __this, List_1_UnityEngine_Transform_ * * newItems, MethodInfo * method)); DO_APP_FUNC(0x030A74B0, void, UI_MagneticInfiniteScroll_SetContentInPivot, (UI_MagneticInfiniteScroll * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x030A7670, IEnumerator *, UI_MagneticInfiniteScroll_SetInitContent, (UI_MagneticInfiniteScroll * __this, MethodInfo * method)); DO_APP_FUNC(0x030A7710, float, UI_MagneticInfiniteScroll_GetAnchoredPositionForPivot, (UI_MagneticInfiniteScroll * __this, int32_t index, MethodInfo * method)); @@ -91342,11 +102897,13 @@ DO_APP_FUNC(0x003AE050, void, UI_MagneticInfiniteScroll_SetInitContent_d_25_Syst DO_APP_FUNC(0x030A7B80, bool, UI_MagneticInfiniteScroll_SetInitContent_d_25_MoveNext, (UI_MagneticInfiniteScroll_SetInitContent_d_25 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, UI_MagneticInfiniteScroll_SetInitContent_d_25_System_Collections_Generic_IEnumerator_System_Object__get_Current, (UI_MagneticInfiniteScroll_SetInitContent_d_25 * __this, MethodInfo * method)); DO_APP_FUNC(0x030A7C80, void, UI_MagneticInfiniteScroll_SetInitContent_d_25_System_Collections_IEnumerator_Reset, (UI_MagneticInfiniteScroll_SetInitContent_d_25 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAD70, UI_MagneticInfiniteScroll_SetInitContent_d_25_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, UI_MagneticInfiniteScroll_SetInitContent_d_25_System_Collections_IEnumerator_get_Current, (UI_MagneticInfiniteScroll_SetInitContent_d_25 * __this, MethodInfo * method)); DO_APP_FUNC(0x030A7CD0, void, UI_ScrollRectOcclusion_Awake, (UI_ScrollRectOcclusion * __this, MethodInfo * method)); DO_APP_FUNC(0x030A7CE0, void, UI_ScrollRectOcclusion_Init, (UI_ScrollRectOcclusion * __this, MethodInfo * method)); DO_APP_FUNC(0x030A8720, void, UI_ScrollRectOcclusion_ToggleGridComponents, (UI_ScrollRectOcclusion * __this, bool toggle, MethodInfo * method)); DO_APP_FUNC(0x030A8B50, void, UI_ScrollRectOcclusion_OnScroll, (UI_ScrollRectOcclusion * __this, Vector2 pos, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFACA0, UI_ScrollRectOcclusion_OnScroll__MethodInfo); DO_APP_FUNC(0x0187B430, void, UI_ScrollRectOcclusion_SetDirty, (UI_ScrollRectOcclusion * __this, MethodInfo * method)); DO_APP_FUNC(0x030A95B0, void, UI_ScrollRectOcclusion_LateUpdate, (UI_ScrollRectOcclusion * __this, MethodInfo * method)); DO_APP_FUNC(0x030A98C0, void, UI_ScrollRectOcclusion__ctor, (UI_ScrollRectOcclusion * __this, MethodInfo * method)); @@ -91360,6 +102917,7 @@ DO_APP_FUNC(0x003AE050, void, UI_TweenScale_Tween_d_11_System_IDisposable_Dispos DO_APP_FUNC(0x030A9D90, bool, UI_TweenScale_Tween_d_11_MoveNext, (UI_TweenScale_Tween_d_11 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, UI_TweenScale_Tween_d_11_System_Collections_Generic_IEnumerator_System_Object__get_Current, (UI_TweenScale_Tween_d_11 * __this, MethodInfo * method)); DO_APP_FUNC(0x030AA1C0, void, UI_TweenScale_Tween_d_11_System_Collections_IEnumerator_Reset, (UI_TweenScale_Tween_d_11 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFACC0, UI_TweenScale_Tween_d_11_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, UI_TweenScale_Tween_d_11_System_Collections_IEnumerator_get_Current, (UI_TweenScale_Tween_d_11 * __this, MethodInfo * method)); DO_APP_FUNC(0x015BA0A0, void, EasingFunction_1__ctor, (EasingFunction_1 * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003F42D0, float, EasingFunction_1_Invoke, (EasingFunction_1 * __this, float t, MethodInfo * method)); @@ -91367,45 +102925,79 @@ DO_APP_FUNC(0x030AA210, IAsyncResult *, EasingFunction_1_BeginInvoke, (EasingFun DO_APP_FUNC(0x00BAE590, float, EasingFunction_1_EndInvoke, (EasingFunction_1 * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x030AA2A0, EasingFunction_1 *, Easing_1_Get, (Ease__Enum type, MethodInfo * method)); DO_APP_FUNC(0x003AE050, float, Easing_1__Get_g__linear_0_0, (float t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAC28, Easing_1__Get_g__linear_0_0__MethodInfo); DO_APP_FUNC(0x030AAA30, float, Easing_1__Get_g__inBack_0_1, (float t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFACF8, Easing_1__Get_g__inBack_0_1__MethodInfo); DO_APP_FUNC(0x030AAA80, float, Easing_1__Get_g__outBack_0_2, (float t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAC00, Easing_1__Get_g__outBack_0_2__MethodInfo); DO_APP_FUNC(0x030AAAF0, float, Easing_1__Get_g__inOutBack_0_3, (float t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAB48, Easing_1__Get_g__inOutBack_0_3__MethodInfo); DO_APP_FUNC(0x030AABC0, float, Easing_1__Get_g__inBounce_0_4, (float t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFACE0, Easing_1__Get_g__inBounce_0_4__MethodInfo); DO_APP_FUNC(0x030AAC00, float, Easing_1__Get_g__outBounce_0_5, (float t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAC10, Easing_1__Get_g__outBounce_0_5__MethodInfo); DO_APP_FUNC(0x030AACB0, float, Easing_1__Get_g__inOutBounce_0_6, (float t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAB28, Easing_1__Get_g__inOutBounce_0_6__MethodInfo); DO_APP_FUNC(0x008B2DF0, float, Easing_1__Get_g__inCirc_0_7, (float t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFACE8, Easing_1__Get_g__inCirc_0_7__MethodInfo); DO_APP_FUNC(0x030AAD30, float, Easing_1__Get_g__outCirc_0_8, (float t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFABF0, Easing_1__Get_g__outCirc_0_8__MethodInfo); DO_APP_FUNC(0x030AAD60, float, Easing_1__Get_g__inOutCirc_0_9, (float t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAB38, Easing_1__Get_g__inOutCirc_0_9__MethodInfo); DO_APP_FUNC(0x008B2A90, float, Easing_1__Get_g__inCubic_0_10, (float t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAB50, Easing_1__Get_g__inCubic_0_10__MethodInfo); DO_APP_FUNC(0x008B2AA0, float, Easing_1__Get_g__outCubic_0_11, (float t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFABF8, Easing_1__Get_g__outCubic_0_11__MethodInfo); DO_APP_FUNC(0x030AAE40, float, Easing_1__Get_g__inOutCubic_0_12, (float t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAB10, Easing_1__Get_g__inOutCubic_0_12__MethodInfo); DO_APP_FUNC(0x030AAE90, float, Easing_1__Get_g__inElastic_0_13, (float t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAB58, Easing_1__Get_g__inElastic_0_13__MethodInfo); DO_APP_FUNC(0x030AAEF0, float, Easing_1__Get_g__outElastic_0_14, (float t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFABE0, Easing_1__Get_g__outElastic_0_14__MethodInfo); DO_APP_FUNC(0x030AAF50, float, Easing_1__Get_g__inOutElastic_0_15, (float t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAB18, Easing_1__Get_g__inOutElastic_0_15__MethodInfo); DO_APP_FUNC(0x030AB040, float, Easing_1__Get_g__inExpo_0_16, (float t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAB40, Easing_1__Get_g__inExpo_0_16__MethodInfo); DO_APP_FUNC(0x030AB0A0, float, Easing_1__Get_g__outExpo_0_17, (float t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFABE8, Easing_1__Get_g__outExpo_0_17__MethodInfo); DO_APP_FUNC(0x030AB110, float, Easing_1__Get_g__inOutExpo_0_18, (float v, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFABC0, Easing_1__Get_g__inOutExpo_0_18__MethodInfo); DO_APP_FUNC(0x008B29E0, float, Easing_1__Get_g__inQuad_0_19, (float t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAB90, Easing_1__Get_g__inQuad_0_19__MethodInfo); DO_APP_FUNC(0x030AB1D0, float, Easing_1__Get_g__outQuad_0_20, (float t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAC70, Easing_1__Get_g__outQuad_0_20__MethodInfo); DO_APP_FUNC(0x030AB1F0, float, Easing_1__Get_g__inOutQuad_0_21, (float t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFABD0, Easing_1__Get_g__inOutQuad_0_21__MethodInfo); DO_APP_FUNC(0x008B2B10, float, Easing_1__Get_g__inQuart_0_22, (float t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAB60, Easing_1__Get_g__inQuart_0_22__MethodInfo); DO_APP_FUNC(0x030AB230, float, Easing_1__Get_g__outQuart_0_23, (float t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAC80, Easing_1__Get_g__outQuart_0_23__MethodInfo); DO_APP_FUNC(0x030AB260, float, Easing_1__Get_g__inOutQuart_0_24, (float t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFABA0, Easing_1__Get_g__inOutQuart_0_24__MethodInfo); DO_APP_FUNC(0x008B2BB0, float, Easing_1__Get_g__inQuint_0_25, (float t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAB70, Easing_1__Get_g__inQuint_0_25__MethodInfo); DO_APP_FUNC(0x008B2BD0, float, Easing_1__Get_g__outQuint_0_26, (float t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAC60, Easing_1__Get_g__outQuint_0_26__MethodInfo); DO_APP_FUNC(0x030AB2B0, float, Easing_1__Get_g__inOutQuint_0_27, (float t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFABB0, Easing_1__Get_g__inOutQuint_0_27__MethodInfo); DO_APP_FUNC(0x02EBF950, float, Easing_1__Get_g__inSine_0_28, (float t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAC18, Easing_1__Get_g__inSine_0_28__MethodInfo); DO_APP_FUNC(0x030AB310, float, Easing_1__Get_g__outSine_0_29, (float t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAC68, Easing_1__Get_g__outSine_0_29__MethodInfo); DO_APP_FUNC(0x008B2CB0, float, Easing_1__Get_g__inOutSine_0_30, (float t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAB80, Easing_1__Get_g__inOutSine_0_30__MethodInfo); DO_APP_FUNC(0x030AB320, void, ColorImage_Awake, (ColorImage * __this, MethodInfo * method)); DO_APP_FUNC(0x030AB440, void, ColorImage_OnDestroy, (ColorImage * __this, MethodInfo * method)); DO_APP_FUNC(0x030AB520, void, ColorImage_ColorChanged, (ColorImage * __this, Color newColor, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAC38, ColorImage_ColorChanged__MethodInfo); DO_APP_FUNC(0x003AE000, void, ColorImage__ctor, (ColorImage * __this, MethodInfo * method)); DO_APP_FUNC(0x030AB560, void, ColorLabel_Awake, (ColorLabel * __this, MethodInfo * method)); DO_APP_FUNC(0x030AB5F0, void, ColorLabel_OnEnable, (ColorLabel * __this, MethodInfo * method)); DO_APP_FUNC(0x030AB840, void, ColorLabel_OnDestroy, (ColorLabel * __this, MethodInfo * method)); DO_APP_FUNC(0x030ABAB0, void, ColorLabel_ColorChanged, (ColorLabel * __this, Color color, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB3A0, ColorLabel_ColorChanged__MethodInfo); DO_APP_FUNC(0x030ABAB0, void, ColorLabel_HSVChanged, (ColorLabel * __this, float hue, float sateration, float value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB3A8, ColorLabel_HSVChanged__MethodInfo); DO_APP_FUNC(0x030ABAC0, void, ColorLabel_UpdateValue, (ColorLabel * __this, MethodInfo * method)); DO_APP_FUNC(0x030ABE50, String *, ColorLabel_ConvertToDisplayString, (ColorLabel * __this, float value, MethodInfo * method)); DO_APP_FUNC(0x030ABFB0, void, ColorLabel__ctor, (ColorLabel * __this, MethodInfo * method)); @@ -91434,13 +103026,16 @@ DO_APP_FUNC(0x030AC860, void, ColorPickerControl_HSVChanged, (ColorPickerControl DO_APP_FUNC(0x030AC8D0, void, ColorPickerControl_SendChangedEvent, (ColorPickerControl * __this, MethodInfo * method)); DO_APP_FUNC(0x030AC970, void, ColorPickerControl_AssignColor, (ColorPickerControl * __this, ColorValues__Enum type, float value, MethodInfo * method)); DO_APP_FUNC(0x030ACAB0, float, ColorPickerControl_GetValue, (ColorPickerControl * __this, ColorValues__Enum type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB240, ColorPickerControl_GetValue__MethodInfo); DO_APP_FUNC(0x030ACB90, void, ColorPickerControl__ctor, (ColorPickerControl * __this, MethodInfo * method)); DO_APP_FUNC(0x030ACEE0, String *, ColorPickerPresets_get_JsonFilePath, (ColorPickerPresets * __this, MethodInfo * method)); DO_APP_FUNC(0x030ACF90, void, ColorPickerPresets_Reset, (ColorPickerPresets * __this, MethodInfo * method)); DO_APP_FUNC(0x030AD0D0, void, ColorPickerPresets_Awake, (ColorPickerPresets * __this, MethodInfo * method)); DO_APP_FUNC(0x030AD330, void, ColorPickerPresets_CreatePresetButton, (ColorPickerPresets * __this, MethodInfo * method)); DO_APP_FUNC(0x030AD370, void, ColorPickerPresets_LoadPresets, (ColorPickerPresets * __this, ColorPickerPresets_SaveType__Enum saveType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB310, ColorPickerPresets_LoadPresets__MethodInfo); DO_APP_FUNC(0x030AD900, void, ColorPickerPresets_SavePresets, (ColorPickerPresets * __this, ColorPickerPresets_SaveType__Enum saveType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB1B0, ColorPickerPresets_SavePresets__MethodInfo); DO_APP_FUNC(0x030ADB80, void, ColorPickerPresets_CreatePreset, (ColorPickerPresets * __this, Color color, bool loading, MethodInfo * method)); DO_APP_FUNC(0x030ADF90, void, ColorPickerPresets_CreatePreset_1, (ColorPickerPresets * __this, Color color, MethodInfo * method)); DO_APP_FUNC(0x030ADFC0, void, ColorPickerPresets_PresetSelect, (ColorPickerPresets * __this, Image * sender, MethodInfo * method)); @@ -91454,6 +103049,7 @@ DO_APP_FUNC(0x030AE600, void, ColorPickerTester_Awake, (ColorPickerTester * __th DO_APP_FUNC(0x030AE690, void, ColorPickerTester_Start, (ColorPickerTester * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, ColorPickerTester__ctor, (ColorPickerTester * __this, MethodInfo * method)); DO_APP_FUNC(0x030AE740, void, ColorPickerTester__Start_b__3_0, (ColorPickerTester * __this, Color color, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB1B8, ColorPickerTester__Start_b__3_0__MethodInfo); DO_APP_FUNC(0x030AE7D0, void, ColorSampler_OnEnable, (ColorSampler * __this, MethodInfo * method)); DO_APP_FUNC(0x030AEA30, void, ColorSampler_OnDisable, (ColorSampler * __this, MethodInfo * method)); DO_APP_FUNC(0x030AEBD0, void, ColorSampler_Update, (ColorSampler * __this, MethodInfo * method)); @@ -91466,8 +103062,11 @@ DO_APP_FUNC(0x030AF140, void, ColorSampler__ctor, (ColorSampler * __this, Method DO_APP_FUNC(0x030AF250, void, ColorSlider_Awake, (ColorSlider * __this, MethodInfo * method)); DO_APP_FUNC(0x030AF470, void, ColorSlider_OnDestroy, (ColorSlider * __this, MethodInfo * method)); DO_APP_FUNC(0x030AF6B0, void, ColorSlider_ColorChanged, (ColorSlider * __this, Color newColor, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB220, ColorSlider_ColorChanged__MethodInfo); DO_APP_FUNC(0x030AF810, void, ColorSlider_HSVChanged, (ColorSlider * __this, float hue, float saturation, float value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB208, ColorSlider_HSVChanged__MethodInfo); DO_APP_FUNC(0x030AF970, void, ColorSlider_SliderChanged, (ColorSlider * __this, float newValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB210, ColorSlider_SliderChanged__MethodInfo); DO_APP_FUNC(0x030AF9C0, void, ColorSlider__ctor, (ColorSlider * __this, MethodInfo * method)); DO_APP_FUNC(0x030AFA10, RectTransform *, ColorSliderImage_get_RectTransform, (ColorSliderImage * __this, MethodInfo * method)); DO_APP_FUNC(0x030AFAA0, void, ColorSliderImage_Awake, (ColorSliderImage * __this, MethodInfo * method)); @@ -91475,51 +103074,58 @@ DO_APP_FUNC(0x030AFC00, void, ColorSliderImage_OnEnable, (ColorSliderImage * __t DO_APP_FUNC(0x030AFE50, void, ColorSliderImage_OnDisable, (ColorSliderImage * __this, MethodInfo * method)); DO_APP_FUNC(0x030B00C0, void, ColorSliderImage_OnDestroy, (ColorSliderImage * __this, MethodInfo * method)); DO_APP_FUNC(0x030B0210, void, ColorSliderImage_ColorChanged, (ColorSliderImage * __this, Color newColor, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB150, ColorSliderImage_ColorChanged__MethodInfo); DO_APP_FUNC(0x030B0210, void, ColorSliderImage_ColorChanged_1, (ColorSliderImage * __this, float hue, float saturation, float value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB148, ColorSliderImage_ColorChanged_1__MethodInfo); DO_APP_FUNC(0x030B0260, void, ColorSliderImage_RegenerateTexture, (ColorSliderImage * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB170, ColorSliderImage_RegenerateTexture__MethodInfo); DO_APP_FUNC(0x003AE000, void, ColorSliderImage__ctor, (ColorSliderImage * __this, MethodInfo * method)); DO_APP_FUNC(0x030B0F70, void, HexColorField_Awake, (HexColorField * __this, MethodInfo * method)); DO_APP_FUNC(0x030B1120, void, HexColorField_OnDestroy, (HexColorField * __this, MethodInfo * method)); DO_APP_FUNC(0x030B12B0, void, HexColorField_UpdateHex, (HexColorField * __this, Color newColor, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB160, HexColorField_UpdateHex__MethodInfo); DO_APP_FUNC(0x030B1310, void, HexColorField_UpdateColor, (HexColorField * __this, String * newHex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB158, HexColorField_UpdateColor__MethodInfo); DO_APP_FUNC(0x030B14A0, String *, HexColorField_ColorToHex, (HexColorField * __this, Color32 color, MethodInfo * method)); -DO_APP_FUNC(0x030B1780, bool, HexColorField_HexToColor, (String * hex, Color32 color, MethodInfo * method)); +DO_APP_FUNC(0x030B1780, bool, HexColorField_HexToColor, (String * hex, Color32 * color, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, HexColorField__ctor, (HexColorField * __this, MethodInfo * method)); DO_APP_FUNC(0x030B2220, HsvColor, HSVUtil_ConvertRgbToHsv, (Color color, MethodInfo * method)); DO_APP_FUNC(0x030B22A0, HsvColor, HSVUtil_ConvertRgbToHsv_1, (double r, double b, double g, MethodInfo * method)); DO_APP_FUNC(0x030B2480, Color, HSVUtil_ConvertHsvToRgb, (double h, double s, double v, float alpha, MethodInfo * method)); -DO_APP_FUNC(0x030B2590, float, HsvColor_get_NormalizedH, (HsvColor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x030B25B0, void, HsvColor_set_NormalizedH, (HsvColor__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x030B25D0, float, HsvColor_get_NormalizedS, (HsvColor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x030B25E0, void, HsvColor_set_NormalizedS, (HsvColor__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02C46080, float, HsvColor_get_NormalizedV, (HsvColor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x030B25F0, void, HsvColor_set_NormalizedV, (HsvColor__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x030B2600, void, HsvColor__ctor, (HsvColor__Boxed * __this, double h, double s, double v, MethodInfo * method)); -DO_APP_FUNC(0x030B2610, String *, HsvColor_ToString, (HsvColor__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x030B2590, float, HsvColor_get_NormalizedH, (HsvColor * __this, MethodInfo * method)); +DO_APP_FUNC(0x030B25B0, void, HsvColor_set_NormalizedH, (HsvColor * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x030B25D0, float, HsvColor_get_NormalizedS, (HsvColor * __this, MethodInfo * method)); +DO_APP_FUNC(0x030B25E0, void, HsvColor_set_NormalizedS, (HsvColor * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02C46080, float, HsvColor_get_NormalizedV, (HsvColor * __this, MethodInfo * method)); +DO_APP_FUNC(0x030B25F0, void, HsvColor_set_NormalizedV, (HsvColor * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x030B2600, void, HsvColor__ctor, (HsvColor * __this, double h, double s, double v, MethodInfo * method)); +DO_APP_FUNC(0x030B2610, String *, HsvColor_ToString, (HsvColor * __this, MethodInfo * method)); DO_APP_FUNC(0x030B28E0, RectTransform *, SVBoxSlider_get_RectTransform, (SVBoxSlider * __this, MethodInfo * method)); DO_APP_FUNC(0x030B2970, void, SVBoxSlider_Awake, (SVBoxSlider * __this, MethodInfo * method)); DO_APP_FUNC(0x030B2A90, void, SVBoxSlider_OnEnable, (SVBoxSlider * __this, MethodInfo * method)); DO_APP_FUNC(0x030B2D60, void, SVBoxSlider_OnDisable, (SVBoxSlider * __this, MethodInfo * method)); DO_APP_FUNC(0x030B2FD0, void, SVBoxSlider_OnDestroy, (SVBoxSlider * __this, MethodInfo * method)); DO_APP_FUNC(0x030B3120, void, SVBoxSlider_SliderChanged, (SVBoxSlider * __this, float saturation, float value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB120, SVBoxSlider_SliderChanged__MethodInfo); DO_APP_FUNC(0x030B31C0, void, SVBoxSlider_HSVChanged, (SVBoxSlider * __this, float h, float s, float v, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB100, SVBoxSlider_HSVChanged__MethodInfo); DO_APP_FUNC(0x030B3300, void, SVBoxSlider_RegenerateSVTexture, (SVBoxSlider * __this, MethodInfo * method)); DO_APP_FUNC(0x030B3740, void, SVBoxSlider__ctor, (SVBoxSlider * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BCBB00, float, FloatTween_1_get_startFloat, (FloatTween_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C42840, void, FloatTween_1_set_startFloat, (FloatTween_1__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x00C4B940, float, FloatTween_1_get_targetFloat, (FloatTween_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C7A0F0, void, FloatTween_1_set_targetFloat, (FloatTween_1__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x00C43A70, float, FloatTween_1_get_duration, (FloatTween_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C43A80, void, FloatTween_1_set_duration, (FloatTween_1__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x01D83B40, bool, FloatTween_1_get_ignoreTimeScale, (FloatTween_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01D83B50, void, FloatTween_1_set_ignoreTimeScale, (FloatTween_1__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x030B3790, void, FloatTween_1_TweenValue, (FloatTween_1__Boxed * __this, float floatPercentage, MethodInfo * method)); -DO_APP_FUNC(0x030B3820, void, FloatTween_1_AddOnChangedCallback, (FloatTween_1__Boxed * __this, UnityAction_1_System_Single_ * callback, MethodInfo * method)); -DO_APP_FUNC(0x030B3930, void, FloatTween_1_AddOnFinishCallback, (FloatTween_1__Boxed * __this, UnityAction * callback, MethodInfo * method)); -DO_APP_FUNC(0x01D83B40, bool, FloatTween_1_GetIgnoreTimescale, (FloatTween_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C43A70, float, FloatTween_1_GetDuration, (FloatTween_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A1E220, bool, FloatTween_1_ValidTarget, (FloatTween_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x030B3A80, void, FloatTween_1_Finished, (FloatTween_1__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00BCBB00, float, FloatTween_1_get_startFloat, (FloatTween_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C42840, void, FloatTween_1_set_startFloat, (FloatTween_1 * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x00C4B940, float, FloatTween_1_get_targetFloat, (FloatTween_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C7A0F0, void, FloatTween_1_set_targetFloat, (FloatTween_1 * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x00C43A70, float, FloatTween_1_get_duration, (FloatTween_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C43A80, void, FloatTween_1_set_duration, (FloatTween_1 * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x01D83B40, bool, FloatTween_1_get_ignoreTimeScale, (FloatTween_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01D83B50, void, FloatTween_1_set_ignoreTimeScale, (FloatTween_1 * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x030B3790, void, FloatTween_1_TweenValue, (FloatTween_1 * __this, float floatPercentage, MethodInfo * method)); +DO_APP_FUNC(0x030B3820, void, FloatTween_1_AddOnChangedCallback, (FloatTween_1 * __this, UnityAction_1_System_Single_ * callback, MethodInfo * method)); +DO_APP_FUNC(0x030B3930, void, FloatTween_1_AddOnFinishCallback, (FloatTween_1 * __this, UnityAction * callback, MethodInfo * method)); +DO_APP_FUNC(0x01D83B40, bool, FloatTween_1_GetIgnoreTimescale, (FloatTween_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C43A70, float, FloatTween_1_GetDuration, (FloatTween_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A1E220, bool, FloatTween_1_ValidTarget, (FloatTween_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x030B3A80, void, FloatTween_1_Finished, (FloatTween_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x030B3AA0, void, FloatTween_FloatTweenCallback_1__ctor, (FloatTween_FloatTweenCallback_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x0042ECC0, void, FloatTween_FloatFinishCallback__ctor, (FloatTween_FloatFinishCallback * __this, MethodInfo * method)); DO_APP_FUNC(0x00C10510, void, WdlResampler__ctor, (WdlResampler * __this, MethodInfo * method)); @@ -91531,7 +103137,7 @@ DO_APP_FUNC(0x00C10770, void, WdlResampler_SetRates, (WdlResampler * __this, dou DO_APP_FUNC(0x00C107B0, double, WdlResampler_get_InputSampleRate, (WdlResampler * __this, MethodInfo * method)); DO_APP_FUNC(0x00C107C0, double, WdlResampler_get_OutputSampleRate, (WdlResampler * __this, MethodInfo * method)); DO_APP_FUNC(0x00C107D0, double, WdlResampler_GetCurrentLatency, (WdlResampler * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C10800, int32_t, WdlResampler_ResamplePrepare, (WdlResampler * __this, int32_t out_samples, int32_t nch, Single__Array * inbuffer, int32_t inbufferOffset, MethodInfo * method)); +DO_APP_FUNC(0x00C10800, int32_t, WdlResampler_ResamplePrepare, (WdlResampler * __this, int32_t out_samples, int32_t nch, Single__Array * * inbuffer, int32_t * inbufferOffset, MethodInfo * method)); DO_APP_FUNC(0x00C10A40, int32_t, WdlResampler_ResampleOut, (WdlResampler * __this, Single__Array * outBuffer, int32_t outBufferIndex, int32_t nsamples_in, int32_t nsamples_out, int32_t nch, MethodInfo * method)); DO_APP_FUNC(0x00C11720, void, WdlResampler_BuildLowPass, (WdlResampler * __this, double filtpos, MethodInfo * method)); DO_APP_FUNC(0x00C11A80, void, WdlResampler_SincSample, (WdlResampler * __this, Single__Array * outBuffer, int32_t outBufferIndex, Single__Array * inBuffer, int32_t inBufferIndex, double fracpos, int32_t nch, Single__Array * filter, int32_t filterIndex, int32_t filtsz, MethodInfo * method)); @@ -91627,24 +103233,24 @@ DO_APP_FUNC(0x00C15C10, ChannelPriority__Enum, ChannelProperties_get_TransmitPri DO_APP_FUNC(0x003CC930, float, ChannelProperties_get_AmplitudeMultiplier, (ChannelProperties * __this, MethodInfo * method)); DO_APP_FUNC(0x00C15C70, void, ChannelProperties_set_AmplitudeMultiplier, (ChannelProperties * __this, float value, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, ChannelProperties__ctor, (ChannelProperties * __this, IChannelPriorityProvider * defaultPriority, MethodInfo * method)); -DO_APP_FUNC(0x00C15D20, void, PlayerChannel__ctor, (PlayerChannel__Boxed * __this, uint16_t subscriptionId, String * playerId, PlayerChannels * channels, ChannelProperties * properties, MethodInfo * method)); -DO_APP_FUNC(0x00C15E20, uint16_t, PlayerChannel_get_SubscriptionId, (PlayerChannel__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, String *, PlayerChannel_get_TargetId, (PlayerChannel__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, ChannelProperties *, PlayerChannel_Dissonance_IChannel_System_String__get_Properties, (PlayerChannel__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, ChannelProperties *, PlayerChannel_get_Properties, (PlayerChannel__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C15E30, bool, PlayerChannel_get_IsOpen, (PlayerChannel__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C15EB0, bool, PlayerChannel_get_Positional, (PlayerChannel__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C15EE0, void, PlayerChannel_set_Positional, (PlayerChannel__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x00C15F20, ChannelPriority__Enum, PlayerChannel_get_Priority, (PlayerChannel__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C15F50, void, PlayerChannel_set_Priority, (PlayerChannel__Boxed * __this, ChannelPriority__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x00C15F90, float, PlayerChannel_get_Volume, (PlayerChannel__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C15FC0, void, PlayerChannel_set_Volume, (PlayerChannel__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x00C16000, void, PlayerChannel_Dispose, (PlayerChannel__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C16070, void, PlayerChannel_CheckValidProperties, (PlayerChannel__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C15D20, void, PlayerChannel__ctor, (PlayerChannel * __this, uint16_t subscriptionId, String * playerId, PlayerChannels * channels, ChannelProperties * properties, MethodInfo * method)); +DO_APP_FUNC(0x00C15E20, uint16_t, PlayerChannel_get_SubscriptionId, (PlayerChannel * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, String *, PlayerChannel_get_TargetId, (PlayerChannel * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, ChannelProperties *, PlayerChannel_Dissonance_IChannel_System_String__get_Properties, (PlayerChannel * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, ChannelProperties *, PlayerChannel_get_Properties, (PlayerChannel * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C15E30, bool, PlayerChannel_get_IsOpen, (PlayerChannel * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C15EB0, bool, PlayerChannel_get_Positional, (PlayerChannel * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C15EE0, void, PlayerChannel_set_Positional, (PlayerChannel * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x00C15F20, ChannelPriority__Enum, PlayerChannel_get_Priority, (PlayerChannel * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C15F50, void, PlayerChannel_set_Priority, (PlayerChannel * __this, ChannelPriority__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x00C15F90, float, PlayerChannel_get_Volume, (PlayerChannel * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C15FC0, void, PlayerChannel_set_Volume, (PlayerChannel * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x00C16000, void, PlayerChannel_Dispose, (PlayerChannel * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C16070, void, PlayerChannel_CheckValidProperties, (PlayerChannel * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8FB30, PlayerChannel_CheckValidProperties__MethodInfo); -DO_APP_FUNC(0x00C160F0, bool, PlayerChannel_Equals, (PlayerChannel__Boxed * __this, PlayerChannel other, MethodInfo * method)); -DO_APP_FUNC(0x00C16150, bool, PlayerChannel_Equals_1, (PlayerChannel__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x00C16220, int32_t, PlayerChannel_GetHashCode, (PlayerChannel__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C160F0, bool, PlayerChannel_Equals, (PlayerChannel * __this, PlayerChannel other, MethodInfo * method)); +DO_APP_FUNC(0x00C16150, bool, PlayerChannel_Equals_1, (PlayerChannel * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x00C16220, int32_t, PlayerChannel_GetHashCode, (PlayerChannel * __this, MethodInfo * method)); DO_APP_FUNC(0x00C162B0, void, PlayerChannels__ctor, (PlayerChannels * __this, IChannelPriorityProvider * priorityProvider, MethodInfo * method)); DO_APP_FUNC(0x00C16580, PlayerChannel, PlayerChannels_CreateChannel, (PlayerChannels * __this, uint16_t subscriptionId, String * channelId, ChannelProperties * properties, MethodInfo * method)); DO_APP_FUNC(0x00C165D0, void, PlayerChannels_c__cctor, (MethodInfo * method)); @@ -91653,30 +103259,30 @@ DO_APP_FUNC(0x003AE050, void, PlayerChannels_c___ctor_b__0_0, (PlayerChannels_c DO_APP_FUNC_METHODINFO(0x03C8FB08, PlayerChannels_c___ctor_b__0_0__MethodInfo); DO_APP_FUNC(0x003AE050, void, PlayerChannels_c___ctor_b__0_1, (PlayerChannels_c * __this, String * id, ChannelProperties * _, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8FAE0, PlayerChannels_c___ctor_b__0_1__MethodInfo); -DO_APP_FUNC(0x00A9EFB0, ChannelType__Enum, RemoteChannel_get_Type, (RemoteChannel__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C16680, PlaybackOptions, RemoteChannel_get_Options, (RemoteChannel__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, String *, RemoteChannel_get_TargetName, (RemoteChannel__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C166A0, void, RemoteChannel__ctor, (RemoteChannel__Boxed * __this, String * targetName, ChannelType__Enum type, PlaybackOptions options, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, ChannelType__Enum, RemoteChannel_get_Type, (RemoteChannel * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C16680, PlaybackOptions, RemoteChannel_get_Options, (RemoteChannel * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, String *, RemoteChannel_get_TargetName, (RemoteChannel * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C166A0, void, RemoteChannel__ctor, (RemoteChannel * __this, String * targetName, ChannelType__Enum type, PlaybackOptions options, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8FAD8, RemoteChannel__ctor__MethodInfo); -DO_APP_FUNC(0x00C16770, void, RoomChannel__ctor, (RoomChannel__Boxed * __this, uint16_t subscriptionId, RoomName roomId, RoomChannels * channels, ChannelProperties * properties, MethodInfo * method)); -DO_APP_FUNC(0x00C15E20, uint16_t, RoomChannel_get_SubscriptionId, (RoomChannel__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, String *, RoomChannel_get_TargetId, (RoomChannel__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C16880, RoomName, RoomChannel_Dissonance_IChannel_Dissonance_RoomName__get_TargetId, (RoomChannel__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3D0, ChannelProperties *, RoomChannel_Dissonance_IChannel_Dissonance_RoomName__get_Properties, (RoomChannel__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3D0, ChannelProperties *, RoomChannel_get_Properties, (RoomChannel__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C16890, bool, RoomChannel_get_IsOpen, (RoomChannel__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C16980, bool, RoomChannel_get_Positional, (RoomChannel__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C169F0, void, RoomChannel_set_Positional, (RoomChannel__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x00C16A60, ChannelPriority__Enum, RoomChannel_get_Priority, (RoomChannel__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C16AD0, void, RoomChannel_set_Priority, (RoomChannel__Boxed * __this, ChannelPriority__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x00C16B40, float, RoomChannel_get_Volume, (RoomChannel__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C16BB0, void, RoomChannel_set_Volume, (RoomChannel__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x00C16C50, void, RoomChannel_Dispose, (RoomChannel__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C16CC0, void, RoomChannel_CheckValidProperties, (RoomChannel__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C16770, void, RoomChannel__ctor, (RoomChannel * __this, uint16_t subscriptionId, RoomName roomId, RoomChannels * channels, ChannelProperties * properties, MethodInfo * method)); +DO_APP_FUNC(0x00C15E20, uint16_t, RoomChannel_get_SubscriptionId, (RoomChannel * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, String *, RoomChannel_get_TargetId, (RoomChannel * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C16880, RoomName, RoomChannel_Dissonance_IChannel_Dissonance_RoomName__get_TargetId, (RoomChannel * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3D0, ChannelProperties *, RoomChannel_Dissonance_IChannel_Dissonance_RoomName__get_Properties, (RoomChannel * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3D0, ChannelProperties *, RoomChannel_get_Properties, (RoomChannel * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C16890, bool, RoomChannel_get_IsOpen, (RoomChannel * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C16980, bool, RoomChannel_get_Positional, (RoomChannel * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C169F0, void, RoomChannel_set_Positional, (RoomChannel * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x00C16A60, ChannelPriority__Enum, RoomChannel_get_Priority, (RoomChannel * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C16AD0, void, RoomChannel_set_Priority, (RoomChannel * __this, ChannelPriority__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x00C16B40, float, RoomChannel_get_Volume, (RoomChannel * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C16BB0, void, RoomChannel_set_Volume, (RoomChannel * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x00C16C50, void, RoomChannel_Dispose, (RoomChannel * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C16CC0, void, RoomChannel_CheckValidProperties, (RoomChannel * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8FAA8, RoomChannel_CheckValidProperties__MethodInfo); -DO_APP_FUNC(0x00C16DC0, bool, RoomChannel_Equals, (RoomChannel__Boxed * __this, RoomChannel other, MethodInfo * method)); -DO_APP_FUNC(0x00C16E20, bool, RoomChannel_Equals_1, (RoomChannel__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x00C16220, int32_t, RoomChannel_GetHashCode, (RoomChannel__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C16DC0, bool, RoomChannel_Equals, (RoomChannel * __this, RoomChannel other, MethodInfo * method)); +DO_APP_FUNC(0x00C16E20, bool, RoomChannel_Equals_1, (RoomChannel * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x00C16220, int32_t, RoomChannel_GetHashCode, (RoomChannel * __this, MethodInfo * method)); DO_APP_FUNC(0x00C16F20, void, RoomChannel__cctor, (MethodInfo * method)); DO_APP_FUNC(0x00C17000, void, RoomChannels__ctor, (RoomChannels * __this, IChannelPriorityProvider * priorityProvider, MethodInfo * method)); DO_APP_FUNC(0x00C172D0, RoomChannel, RoomChannels_CreateChannel, (RoomChannels * __this, uint16_t subscriptionId, RoomName channelId, ChannelProperties * properties, MethodInfo * method)); @@ -91686,11 +103292,11 @@ DO_APP_FUNC(0x003AE050, void, RoomChannels_c___ctor_b__0_0, (RoomChannels_c * __ DO_APP_FUNC_METHODINFO(0x03C8FA78, RoomChannels_c___ctor_b__0_0__MethodInfo); DO_APP_FUNC(0x003AE050, void, RoomChannels_c___ctor_b__0_1, (RoomChannels_c * __this, RoomName id, ChannelProperties * _, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8FA50, RoomChannels_c___ctor_b__0_1__MethodInfo); -DO_APP_FUNC(0x00C173D0, Codec__Enum, CodecSettings_get_Codec, (CodecSettings__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C173E0, uint32_t, CodecSettings_get_FrameSize, (CodecSettings__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471920, int32_t, CodecSettings_get_SampleRate, (CodecSettings__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C173F0, void, CodecSettings__ctor, (CodecSettings__Boxed * __this, Codec__Enum codec, uint32_t frameSize, int32_t sampleRate, MethodInfo * method)); -DO_APP_FUNC(0x00C17400, String *, CodecSettings_ToString, (CodecSettings__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C173D0, Codec__Enum, CodecSettings_get_Codec, (CodecSettings * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C173E0, uint32_t, CodecSettings_get_FrameSize, (CodecSettings * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471920, int32_t, CodecSettings_get_SampleRate, (CodecSettings * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C173F0, void, CodecSettings__ctor, (CodecSettings * __this, Codec__Enum codec, uint32_t frameSize, int32_t sampleRate, MethodInfo * method)); +DO_APP_FUNC(0x00C17400, String *, CodecSettings_ToString, (CodecSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x00C17540, CodecSettings, CodecSettingsLoader_get_Config, (CodecSettingsLoader * __this, MethodInfo * method)); DO_APP_FUNC(0x00C17580, void, CodecSettingsLoader_Start, (CodecSettingsLoader * __this, Codec__Enum codec, MethodInfo * method)); DO_APP_FUNC(0x00C17660, void, CodecSettingsLoader_GenerateSettings, (CodecSettingsLoader * __this, MethodInfo * method)); @@ -91807,10 +103413,10 @@ DO_APP_FUNC(0x00C1E900, void, DissonanceComms_CoResumePlayback_d_94_System_Colle DO_APP_FUNC_METHODINFO(0x03C8F6B0, DissonanceComms_CoResumePlayback_d_94_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, DissonanceComms_CoResumePlayback_d_94_System_Collections_IEnumerator_get_Current, (DissonanceComms_CoResumePlayback_d_94 * __this, MethodInfo * method)); DO_APP_FUNC(0x00C1E950, void, DissonanceException__ctor, (DissonanceException * __this, String * message, MethodInfo * method)); -DO_APP_FUNC(0x003BCC40, bool, FrameSkipDetector_get_IsBreakerClosed, (FrameSkipDetector__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C1E9B0, void, FrameSkipDetector__ctor, (FrameSkipDetector__Boxed * __this, TimeSpan maxFrameTime, TimeSpan minimumBreakerDuration, TimeSpan maxBreakerDuration, TimeSpan breakerResetPerSecond, MethodInfo * method)); -DO_APP_FUNC(0x00C1EA90, bool, FrameSkipDetector_IsFrameSkip, (FrameSkipDetector__Boxed * __this, float deltaTime, MethodInfo * method)); -DO_APP_FUNC(0x00C1EB60, void, FrameSkipDetector_UpdateBreaker, (FrameSkipDetector__Boxed * __this, bool skip, float dt, MethodInfo * method)); +DO_APP_FUNC(0x003BCC40, bool, FrameSkipDetector_get_IsBreakerClosed, (FrameSkipDetector * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C1E9B0, void, FrameSkipDetector__ctor, (FrameSkipDetector * __this, TimeSpan maxFrameTime, TimeSpan minimumBreakerDuration, TimeSpan maxBreakerDuration, TimeSpan breakerResetPerSecond, MethodInfo * method)); +DO_APP_FUNC(0x00C1EA90, bool, FrameSkipDetector_IsFrameSkip, (FrameSkipDetector * __this, float deltaTime, MethodInfo * method)); +DO_APP_FUNC(0x00C1EB60, void, FrameSkipDetector_UpdateBreaker, (FrameSkipDetector * __this, bool skip, float dt, MethodInfo * method)); DO_APP_FUNC(0x00C1EC60, void, FrameSkipDetector__cctor, (MethodInfo * method)); DO_APP_FUNC(0x00C1ED30, bool, Logs_1_get_Disable, (MethodInfo * method)); DO_APP_FUNC(0x00C1ED90, void, Logs_1_set_Disable, (bool value, MethodInfo * method)); @@ -91824,8 +103430,8 @@ DO_APP_FUNC(0x00C1F360, void, Logs_1_WriteMultithreadedLogs, (MethodInfo * metho DO_APP_FUNC(0x00C1F600, void, Logs_1_SendLogMessage, (String * message, LogLevel__Enum_3 level, MethodInfo * method)); DO_APP_FUNC(0x00C1F730, bool, Logs_1_IsMainThread, (MethodInfo * method)); DO_APP_FUNC(0x00C1F7D0, void, Logs_1__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x003DB020, void, Logs_LogMessage_1__ctor, (Logs_LogMessage_1__Boxed * __this, String * message, LogLevel__Enum_3 level, MethodInfo * method)); -DO_APP_FUNC(0x00C1F8C0, void, Logs_LogMessage_1_Log, (Logs_LogMessage_1__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x003DB020, void, Logs_LogMessage_1__ctor, (Logs_LogMessage_1 * __this, String * message, LogLevel__Enum_3 level, MethodInfo * method)); +DO_APP_FUNC(0x00C1F8C0, void, Logs_LogMessage_1_Log, (Logs_LogMessage_1 * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8F678, Logs_LogMessage_1_Log__MethodInfo); DO_APP_FUNC(0x00C1F9C0, void, Log__ctor, (Log * __this, int32_t category, String * name, MethodInfo * method)); DO_APP_FUNC(0x00C1FD40, bool, Log_get_IsTrace, (Log * __this, MethodInfo * method)); @@ -91857,7 +103463,7 @@ DO_APP_FUNC(0x003CB690, String *, Metrics_MetricName, (String * category, String DO_APP_FUNC(0x003CB690, String *, Metrics_MetricName_1, (String * category, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Metrics_Sample, (String * name, float value, MethodInfo * method)); DO_APP_FUNC(0x00C20900, void, Metrics__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x00C209E0, void, Metrics_MetricEvent__ctor, (Metrics_MetricEvent__Boxed * __this, String * name, double value, MethodInfo * method)); +DO_APP_FUNC(0x00C209E0, void, Metrics_MetricEvent__ctor, (Metrics_MetricEvent * __this, String * name, double value, MethodInfo * method)); DO_APP_FUNC(0x0070B9F0, float, PacketLossMonitor_get_PacketLoss, (PacketLossMonitor * __this, MethodInfo * method)); DO_APP_FUNC(0x00948340, void, PacketLossMonitor_set_PacketLoss, (PacketLossMonitor * __this, float value, MethodInfo * method)); DO_APP_FUNC(0x00C20A40, void, PacketLossMonitor__ctor, (PacketLossMonitor * __this, ReadOnlyCollection_1_Dissonance_VoicePlayerState_ * players, MethodInfo * method)); @@ -91885,7 +103491,7 @@ DO_APP_FUNC(0x00C22400, void, PlayerCollection_Add, (PlayerCollection * __this, DO_APP_FUNC_METHODINFO(0x03C8F3D8, PlayerCollection_Add__MethodInfo); DO_APP_FUNC(0x00C22620, VoicePlayerState *, PlayerCollection_Remove, (PlayerCollection * __this, String * playerId, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8F3A8, PlayerCollection_Remove__MethodInfo); -DO_APP_FUNC(0x00C227F0, bool, PlayerCollection_TryGet, (PlayerCollection * __this, String * playerId, VoicePlayerState * state, MethodInfo * method)); +DO_APP_FUNC(0x00C227F0, bool, PlayerCollection_TryGet, (PlayerCollection * __this, String * playerId, VoicePlayerState * * state, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8F390, PlayerCollection_TryGet__MethodInfo); DO_APP_FUNC(0x00C228B0, void, PlayerCollection_Update, (PlayerCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x00C22970, void, PlayerCollection__cctor, (MethodInfo * method)); @@ -91900,15 +103506,15 @@ DO_APP_FUNC_METHODINFO(0x03C8F2F8, PlayerTrackerManager_AddTracker__MethodInfo); DO_APP_FUNC(0x00C23070, void, PlayerTrackerManager_RemoveTracker, (PlayerTrackerManager * __this, IDissonancePlayer * player, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8F300, PlayerTrackerManager_RemoveTracker__MethodInfo); DO_APP_FUNC(0x00C23260, void, PlayerTrackerManager__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x00471910, String *, RoomName_get_Name, (RoomName__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, RoomName_set_Name, (RoomName__Boxed * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x00C23340, bool, RoomName_get_SuppressDuplicateCheck, (RoomName__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C23350, void, RoomName_set_SuppressDuplicateCheck, (RoomName__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x00C23360, void, RoomName__ctor, (RoomName__Boxed * __this, String * name, bool suppress, MethodInfo * method)); +DO_APP_FUNC(0x00471910, String *, RoomName_get_Name, (RoomName * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, RoomName_set_Name, (RoomName * __this, String * value, MethodInfo * method)); +DO_APP_FUNC(0x00C23340, bool, RoomName_get_SuppressDuplicateCheck, (RoomName * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C23350, void, RoomName_set_SuppressDuplicateCheck, (RoomName * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x00C23360, void, RoomName__ctor, (RoomName * __this, String * name, bool suppress, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8F2F0, RoomName__ctor__MethodInfo); -DO_APP_FUNC(0x00C23420, void, RoomName__ctor_1, (RoomName__Boxed * __this, String * name, MethodInfo * method)); +DO_APP_FUNC(0x00C23420, void, RoomName__ctor_1, (RoomName * __this, String * name, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8F2D8, RoomName__ctor_1__MethodInfo); -DO_APP_FUNC(0x00C234E0, bool, RoomName_Equals, (RoomName__Boxed * __this, RoomName other, MethodInfo * method)); +DO_APP_FUNC(0x00C234E0, bool, RoomName_Equals, (RoomName * __this, RoomName other, MethodInfo * method)); DO_APP_FUNC(0x00C23520, RoomName, RoomName_op_Implicit, (String * name, MethodInfo * method)); DO_APP_FUNC(0x00471910, String *, RoomName_op_Implicit_1, (RoomName name, MethodInfo * method)); DO_APP_FUNC(0x00C235F0, uint16_t, RoomIdConversion_ToRoomId, (String * name, MethodInfo * method)); @@ -91934,9 +103540,9 @@ DO_APP_FUNC(0x00C24C40, String *, Rooms_Name, (Rooms * __this, uint16_t roomId, DO_APP_FUNC(0x00C24C40, String *, Rooms_Dissonance_IRooms_Name, (Rooms * __this, uint16_t roomId, MethodInfo * method)); DO_APP_FUNC(0x00C24D20, Nullable_1_Int32_, Rooms_FindById, (Rooms * __this, uint16_t id, MethodInfo * method)); DO_APP_FUNC(0x00C24E50, void, Rooms__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x00C24FD0, void, RoomMembership__ctor, (RoomMembership__Boxed * __this, RoomName name, int32_t count, MethodInfo * method)); -DO_APP_FUNC(0x00471910, String *, RoomMembership_get_RoomName, (RoomMembership__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C25060, uint16_t, RoomMembership_get_RoomId, (RoomMembership__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C24FD0, void, RoomMembership__ctor, (RoomMembership * __this, RoomName name, int32_t count, MethodInfo * method)); +DO_APP_FUNC(0x00471910, String *, RoomMembership_get_RoomName, (RoomMembership * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C25060, uint16_t, RoomMembership_get_RoomId, (RoomMembership * __this, MethodInfo * method)); DO_APP_FUNC(0x00C25070, int32_t, RoomMembershipComparer_Compare, (RoomMembershipComparer * __this, RoomMembership x, RoomMembership y, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, RoomMembershipComparer__ctor, (RoomMembershipComparer * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD50, int32_t, SemanticVersion_get_Major, (SemanticVersion * __this, MethodInfo * method)); @@ -92132,15 +103738,15 @@ DO_APP_FUNC(0x003BCC50, void, DThread_set_IsStarted, (DThread * __this, bool val DO_APP_FUNC(0x00C2DDA0, void, DThread__ctor, (DThread * __this, Action * action, MethodInfo * method)); DO_APP_FUNC(0x00C2DEB0, void, DThread_Start, (DThread * __this, MethodInfo * method)); DO_APP_FUNC(0x00C2DEE0, void, DThread_Join, (DThread * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C15E20, uint16_t, ChannelBitField_get_Bitfield, (ChannelBitField__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C2DF70, ChannelType__Enum, ChannelBitField_get_Type, (ChannelBitField__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C2DF80, bool, ChannelBitField_get_IsClosing, (ChannelBitField__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C2DF90, bool, ChannelBitField_get_IsPositional, (ChannelBitField__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C2DFA0, ChannelPriority__Enum, ChannelBitField_get_Priority, (ChannelBitField__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C2DFD0, float, ChannelBitField_get_AmplitudeMultiplier, (ChannelBitField__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C2DFF0, int32_t, ChannelBitField_get_SessionId, (ChannelBitField__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C2E000, void, ChannelBitField__ctor, (ChannelBitField__Boxed * __this, uint16_t bitfield, MethodInfo * method)); -DO_APP_FUNC(0x00C2E010, void, ChannelBitField__ctor_1, (ChannelBitField__Boxed * __this, ChannelType__Enum type, int32_t sessionId, ChannelPriority__Enum priority, float amplitudeMult, bool positional, bool closing, MethodInfo * method)); +DO_APP_FUNC(0x00C15E20, uint16_t, ChannelBitField_get_Bitfield, (ChannelBitField * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C2DF70, ChannelType__Enum, ChannelBitField_get_Type, (ChannelBitField * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C2DF80, bool, ChannelBitField_get_IsClosing, (ChannelBitField * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C2DF90, bool, ChannelBitField_get_IsPositional, (ChannelBitField * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C2DFA0, ChannelPriority__Enum, ChannelBitField_get_Priority, (ChannelBitField * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C2DFD0, float, ChannelBitField_get_AmplitudeMultiplier, (ChannelBitField * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C2DFF0, int32_t, ChannelBitField_get_SessionId, (ChannelBitField * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C2E000, void, ChannelBitField__ctor, (ChannelBitField * __this, uint16_t bitfield, MethodInfo * method)); +DO_APP_FUNC(0x00C2E010, void, ChannelBitField__ctor_1, (ChannelBitField * __this, ChannelType__Enum type, int32_t sessionId, ChannelPriority__Enum priority, float amplitudeMult, bool positional, bool closing, MethodInfo * method)); DO_APP_FUNC(0x00C2E180, uint16_t, ChannelBitField_PackPriority, (ChannelPriority__Enum priority, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, IEnumerable_1_KeyValuePair_2_System_UInt16_System_String_ *, ClientIdCollection_get_Items, (ClientIdCollection * __this, MethodInfo * method)); DO_APP_FUNC(0x00C2E1B0, void, ClientIdCollection__ctor, (ClientIdCollection * __this, MethodInfo * method)); @@ -92162,88 +103768,88 @@ DO_APP_FUNC(0x00C2F730, KeyValuePair_2_System_UInt16_System_String_, ClientIdCol DO_APP_FUNC_METHODINFO(0x03C8EA00, ClientIdCollection_c___ctor_b__6_0__MethodInfo); DO_APP_FUNC(0x00C2F7E0, bool, ClientIdCollection_c___ctor_b__6_1, (ClientIdCollection_c * __this, KeyValuePair_2_System_UInt16_System_String_ x, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8EA10, ClientIdCollection_c___ctor_b__6_1__MethodInfo); -DO_APP_FUNC(0x00471910, String *, ClientInfo_get_PlayerName, (ClientInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C2F820, uint16_t, ClientInfo_get_PlayerId, (ClientInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C2F830, CodecSettings, ClientInfo_get_CodecSettings, (ClientInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C2F850, void, ClientInfo__ctor, (ClientInfo__Boxed * __this, String * playerName, uint16_t playerId, CodecSettings codecSettings, MethodInfo * method)); -DO_APP_FUNC(0x00C2F8C0, bool, VoicePacket_get_Positional, (VoicePacket__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C2F8E0, ChannelPriority__Enum, VoicePacket_get_Priority, (VoicePacket__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C2F8F0, float, VoicePacket_get_AmplitudeMultiplier, (VoicePacket__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C2F900, PlaybackOptions, VoicePacket_get_PlaybackOptions, (VoicePacket__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C2F920, void, VoicePacket__ctor, (VoicePacket__Boxed * __this, String * senderPlayerId, ChannelPriority__Enum priority, float ampMul, bool positional, ArraySegment_1_Byte_ encodedAudioFrame, uint32_t sequence, List_1_Dissonance_RemoteChannel_ * channels, MethodInfo * method)); -DO_APP_FUNC(0x00C2FA70, void, TextMessage__ctor, (TextMessage__Boxed * __this, String * sender, ChannelType__Enum recipientType, String * recipient, String * message, MethodInfo * method)); -DO_APP_FUNC(0x00C2FB70, void, RoomEvent__ctor, (RoomEvent__Boxed * __this, String * name, String * room, bool joined, ReadOnlyCollection_1_System_String_ * rooms, MethodInfo * method)); +DO_APP_FUNC(0x00471910, String *, ClientInfo_get_PlayerName, (ClientInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C2F820, uint16_t, ClientInfo_get_PlayerId, (ClientInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C2F830, CodecSettings, ClientInfo_get_CodecSettings, (ClientInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C2F850, void, ClientInfo__ctor, (ClientInfo * __this, String * playerName, uint16_t playerId, CodecSettings codecSettings, MethodInfo * method)); +DO_APP_FUNC(0x00C2F8C0, bool, VoicePacket_get_Positional, (VoicePacket * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C2F8E0, ChannelPriority__Enum, VoicePacket_get_Priority, (VoicePacket * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C2F8F0, float, VoicePacket_get_AmplitudeMultiplier, (VoicePacket * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C2F900, PlaybackOptions, VoicePacket_get_PlaybackOptions, (VoicePacket * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C2F920, void, VoicePacket__ctor, (VoicePacket * __this, String * senderPlayerId, ChannelPriority__Enum priority, float ampMul, bool positional, ArraySegment_1_Byte_ encodedAudioFrame, uint32_t sequence, List_1_Dissonance_RemoteChannel_ * channels, MethodInfo * method)); +DO_APP_FUNC(0x00C2FA70, void, TextMessage__ctor, (TextMessage * __this, String * sender, ChannelType__Enum recipientType, String * recipient, String * message, MethodInfo * method)); +DO_APP_FUNC(0x00C2FB70, void, RoomEvent__ctor, (RoomEvent * __this, String * name, String * room, bool joined, ReadOnlyCollection_1_System_String_ * rooms, MethodInfo * method)); DO_APP_FUNC(0x00C2FC80, bool, NetworkModeExtensions_IsServerEnabled, (NetworkMode__Enum mode, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8E788, NetworkModeExtensions_IsServerEnabled__MethodInfo); DO_APP_FUNC(0x00C2FD40, bool, NetworkModeExtensions_IsClientEnabled, (NetworkMode__Enum mode, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8E740, NetworkModeExtensions_IsClientEnabled__MethodInfo); -DO_APP_FUNC(0x00C2FE00, ArraySegment_1_Byte_, PacketReader_get_Read, (PacketReader__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C2FED0, ArraySegment_1_Byte_, PacketReader_get_Unread, (PacketReader__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C2FFD0, ArraySegment_1_Byte_, PacketReader_get_All, (PacketReader__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C2FFE0, void, PacketReader__ctor, (PacketReader__Boxed * __this, ArraySegment_1_Byte_ array, MethodInfo * method)); +DO_APP_FUNC(0x00C2FE00, ArraySegment_1_Byte_, PacketReader_get_Read, (PacketReader * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C2FED0, ArraySegment_1_Byte_, PacketReader_get_Unread, (PacketReader * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C2FFD0, ArraySegment_1_Byte_, PacketReader_get_All, (PacketReader * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C2FFE0, void, PacketReader__ctor, (PacketReader * __this, ArraySegment_1_Byte_ array, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8E6F8, PacketReader__ctor__MethodInfo); -DO_APP_FUNC(0x00C30100, void, PacketReader__ctor_1, (PacketReader__Boxed * __this, Byte__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x00C30200, void, PacketReader_Check, (PacketReader__Boxed * __this, int32_t count, String * type, MethodInfo * method)); +DO_APP_FUNC(0x00C30100, void, PacketReader__ctor_1, (PacketReader * __this, Byte__Array * array, MethodInfo * method)); +DO_APP_FUNC(0x00C30200, void, PacketReader_Check, (PacketReader * __this, int32_t count, String * type, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8E6D8, PacketReader_Check__MethodInfo); -DO_APP_FUNC(0x00C30300, uint8_t, PacketReader_FastReadByte, (PacketReader__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C303A0, uint8_t, PacketReader_ReadByte, (PacketReader__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C30420, uint16_t, PacketReader_ReadUInt16, (PacketReader__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C30580, uint32_t, PacketReader_ReadUInt32, (PacketReader__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C306C0, ArraySegment_1_Byte_, PacketReader_ReadByteSegment, (PacketReader__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C30820, String *, PacketReader_ReadString, (PacketReader__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C309A0, CodecSettings, PacketReader_ReadCodecSettings, (PacketReader__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C30A40, ClientInfo, PacketReader_ReadClientInfo, (PacketReader__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C30BD0, bool, PacketReader_ReadPacketHeader, (PacketReader__Boxed * __this, MessageTypes__Enum messageType, MethodInfo * method)); -DO_APP_FUNC(0x00C30C70, void, PacketReader_ReadHandshakeRequest, (PacketReader__Boxed * __this, String * name, CodecSettings codecSettings, MethodInfo * method)); -DO_APP_FUNC(0x00C30DA0, void, PacketReader_ReadHandshakeResponseHeader, (PacketReader__Boxed * __this, uint32_t session, uint16_t clientId, MethodInfo * method)); -DO_APP_FUNC(0x00C30E20, void, PacketReader_ReadHandshakeResponseBody, (PacketReader__Boxed * __this, List_1_Dissonance_Networking_ClientInfo_ * clients, Dictionary_2_System_String_List_1_System_UInt16_ * outputRoomsToPeerId, MethodInfo * method)); +DO_APP_FUNC(0x00C30300, uint8_t, PacketReader_FastReadByte, (PacketReader * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C303A0, uint8_t, PacketReader_ReadByte, (PacketReader * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C30420, uint16_t, PacketReader_ReadUInt16, (PacketReader * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C30580, uint32_t, PacketReader_ReadUInt32, (PacketReader * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C306C0, ArraySegment_1_Byte_, PacketReader_ReadByteSegment, (PacketReader * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C30820, String *, PacketReader_ReadString, (PacketReader * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C309A0, CodecSettings, PacketReader_ReadCodecSettings, (PacketReader * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C30A40, ClientInfo, PacketReader_ReadClientInfo, (PacketReader * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C30BD0, bool, PacketReader_ReadPacketHeader, (PacketReader * __this, MessageTypes__Enum * messageType, MethodInfo * method)); +DO_APP_FUNC(0x00C30C70, void, PacketReader_ReadHandshakeRequest, (PacketReader * __this, String * * name, CodecSettings * codecSettings, MethodInfo * method)); +DO_APP_FUNC(0x00C30DA0, void, PacketReader_ReadHandshakeResponseHeader, (PacketReader * __this, uint32_t * session, uint16_t * clientId, MethodInfo * method)); +DO_APP_FUNC(0x00C30E20, void, PacketReader_ReadHandshakeResponseBody, (PacketReader * __this, List_1_Dissonance_Networking_ClientInfo_ * clients, Dictionary_2_System_String_List_1_System_UInt16_ * outputRoomsToPeerId, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8E5C8, PacketReader_ReadHandshakeResponseBody__MethodInfo); -DO_APP_FUNC(0x00C31700, void, PacketReader_ReadhandshakeP2P, (PacketReader__Boxed * __this, uint16_t peerId, MethodInfo * method)); -DO_APP_FUNC(0x00C31760, ClientInfo, PacketReader_ReadClientStateHeader, (PacketReader__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C31700, void, PacketReader_ReadhandshakeP2P, (PacketReader * __this, uint16_t * peerId, MethodInfo * method)); +DO_APP_FUNC(0x00C31760, ClientInfo, PacketReader_ReadClientStateHeader, (PacketReader * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8E580, PacketReader_ReadClientStateHeader__MethodInfo); -DO_APP_FUNC(0x00C31860, void, PacketReader_ReadClientStateRooms, (PacketReader__Boxed * __this, List_1_System_String_ * rooms, MethodInfo * method)); +DO_APP_FUNC(0x00C31860, void, PacketReader_ReadClientStateRooms, (PacketReader * __this, List_1_System_String_ * rooms, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8E548, PacketReader_ReadClientStateRooms__MethodInfo); -DO_APP_FUNC(0x00C31A00, void, PacketReader_ReadRemoveClient, (PacketReader__Boxed * __this, uint16_t clientId, MethodInfo * method)); -DO_APP_FUNC(0x00C31A60, void, PacketReader_ReadVoicePacketHeader1, (PacketReader__Boxed * __this, uint16_t senderId, MethodInfo * method)); -DO_APP_FUNC(0x00C31AC0, void, PacketReader_ReadVoicePacketHeader2, (PacketReader__Boxed * __this, VoicePacketOptions options, uint16_t sequenceNumber, uint16_t numChannels, MethodInfo * method)); -DO_APP_FUNC(0x00C31B60, void, PacketReader_ReadVoicePacketChannel, (PacketReader__Boxed * __this, ChannelBitField bitfield, uint16_t recipient, MethodInfo * method)); -DO_APP_FUNC(0x00C31BE0, TextPacket, PacketReader_ReadTextPacket, (PacketReader__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C31CF0, uint32_t, PacketReader_ReadErrorWrongSession, (PacketReader__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C31D40, void, PacketReader_ReadRelay, (PacketReader__Boxed * __this, List_1_System_UInt16_ * destinations, ArraySegment_1_Byte_ data, MethodInfo * method)); -DO_APP_FUNC(0x00C31EF0, void, PacketReader_ReadDeltaChannelState, (PacketReader__Boxed * __this, bool joined, uint16_t peer, String * name, MethodInfo * method)); +DO_APP_FUNC(0x00C31A00, void, PacketReader_ReadRemoveClient, (PacketReader * __this, uint16_t * clientId, MethodInfo * method)); +DO_APP_FUNC(0x00C31A60, void, PacketReader_ReadVoicePacketHeader1, (PacketReader * __this, uint16_t * senderId, MethodInfo * method)); +DO_APP_FUNC(0x00C31AC0, void, PacketReader_ReadVoicePacketHeader2, (PacketReader * __this, VoicePacketOptions * options, uint16_t * sequenceNumber, uint16_t * numChannels, MethodInfo * method)); +DO_APP_FUNC(0x00C31B60, void, PacketReader_ReadVoicePacketChannel, (PacketReader * __this, ChannelBitField * bitfield, uint16_t * recipient, MethodInfo * method)); +DO_APP_FUNC(0x00C31BE0, TextPacket, PacketReader_ReadTextPacket, (PacketReader * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C31CF0, uint32_t, PacketReader_ReadErrorWrongSession, (PacketReader * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C31D40, void, PacketReader_ReadRelay, (PacketReader * __this, List_1_System_UInt16_ * destinations, ArraySegment_1_Byte_ * data, MethodInfo * method)); +DO_APP_FUNC(0x00C31EF0, void, PacketReader_ReadDeltaChannelState, (PacketReader * __this, bool * joined, uint16_t * peer, String * * name, MethodInfo * method)); DO_APP_FUNC(0x00C32050, void, PacketReader__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x00C32130, ArraySegment_1_Byte_, PacketWriter_get_Written, (PacketWriter__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C32200, void, PacketWriter__ctor, (PacketWriter__Boxed * __this, Byte__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x00C32300, void, PacketWriter__ctor_1, (PacketWriter__Boxed * __this, ArraySegment_1_Byte_ array, MethodInfo * method)); +DO_APP_FUNC(0x00C32130, ArraySegment_1_Byte_, PacketWriter_get_Written, (PacketWriter * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C32200, void, PacketWriter__ctor, (PacketWriter * __this, Byte__Array * array, MethodInfo * method)); +DO_APP_FUNC(0x00C32300, void, PacketWriter__ctor_1, (PacketWriter * __this, ArraySegment_1_Byte_ array, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8E4A0, PacketWriter__ctor_1__MethodInfo); -DO_APP_FUNC(0x00C32420, void, PacketWriter_Check, (PacketWriter__Boxed * __this, int32_t count, String * type, MethodInfo * method)); +DO_APP_FUNC(0x00C32420, void, PacketWriter_Check, (PacketWriter * __this, int32_t count, String * type, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8E470, PacketWriter_Check__MethodInfo); -DO_APP_FUNC(0x00C32520, PacketWriter, PacketWriter_FastWriteByte, (PacketWriter__Boxed * __this, uint8_t b, MethodInfo * method)); -DO_APP_FUNC(0x00C325F0, PacketWriter, PacketWriter_Write, (PacketWriter__Boxed * __this, uint8_t b, MethodInfo * method)); -DO_APP_FUNC(0x00C326A0, PacketWriter, PacketWriter_Write_1, (PacketWriter__Boxed * __this, uint16_t u, MethodInfo * method)); -DO_APP_FUNC(0x00C32810, PacketWriter, PacketWriter_Write_2, (PacketWriter__Boxed * __this, uint32_t u, MethodInfo * method)); -DO_APP_FUNC(0x00C32B10, PacketWriter, PacketWriter_Write_3, (PacketWriter__Boxed * __this, String * s, MethodInfo * method)); +DO_APP_FUNC(0x00C32520, PacketWriter, PacketWriter_FastWriteByte, (PacketWriter * __this, uint8_t b, MethodInfo * method)); +DO_APP_FUNC(0x00C325F0, PacketWriter, PacketWriter_Write, (PacketWriter * __this, uint8_t b, MethodInfo * method)); +DO_APP_FUNC(0x00C326A0, PacketWriter, PacketWriter_Write_1, (PacketWriter * __this, uint16_t u, MethodInfo * method)); +DO_APP_FUNC(0x00C32810, PacketWriter, PacketWriter_Write_2, (PacketWriter * __this, uint32_t u, MethodInfo * method)); +DO_APP_FUNC(0x00C32B10, PacketWriter, PacketWriter_Write_3, (PacketWriter * __this, String * s, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8E3C0, PacketWriter_Write_3__MethodInfo); -DO_APP_FUNC(0x00C32DE0, PacketWriter, PacketWriter_Write_4, (PacketWriter__Boxed * __this, ArraySegment_1_Byte_ data, MethodInfo * method)); -DO_APP_FUNC(0x00C32F40, PacketWriter, PacketWriter_Write_5, (PacketWriter__Boxed * __this, CodecSettings codecSettings, MethodInfo * method)); -DO_APP_FUNC(0x00C33050, PacketWriter, PacketWriter_Write_6, (PacketWriter__Boxed * __this, String * playerName, uint16_t playerId, CodecSettings codecSettings, MethodInfo * method)); -DO_APP_FUNC(0x00C33130, PacketWriter, PacketWriter_WriteMagic, (PacketWriter__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C331B0, PacketWriter, PacketWriter_WriteHandshakeRequest, (PacketWriter__Boxed * __this, String * name, CodecSettings codecSettings, MethodInfo * method)); -DO_APP_FUNC(0x00C33330, PacketWriter, PacketWriter_WriteHandshakeResponse, (PacketWriter__Boxed * __this, uint32_t session, uint16_t clientId, MethodInfo * method)); -DO_APP_FUNC(0x00C334D0, PacketWriter, PacketWriter_WriteHandshakeP2P, (PacketWriter__Boxed * __this, uint32_t session, uint16_t peerId, MethodInfo * method)); -DO_APP_FUNC(0x00C33640, PacketWriter, PacketWriter_WriteClientState, (PacketWriter__Boxed * __this, uint32_t session, String * name, uint16_t clientId, CodecSettings codecSettings, Rooms * rooms, MethodInfo * method)); +DO_APP_FUNC(0x00C32DE0, PacketWriter, PacketWriter_Write_4, (PacketWriter * __this, ArraySegment_1_Byte_ data, MethodInfo * method)); +DO_APP_FUNC(0x00C32F40, PacketWriter, PacketWriter_Write_5, (PacketWriter * __this, CodecSettings codecSettings, MethodInfo * method)); +DO_APP_FUNC(0x00C33050, PacketWriter, PacketWriter_Write_6, (PacketWriter * __this, String * playerName, uint16_t playerId, CodecSettings codecSettings, MethodInfo * method)); +DO_APP_FUNC(0x00C33130, PacketWriter, PacketWriter_WriteMagic, (PacketWriter * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C331B0, PacketWriter, PacketWriter_WriteHandshakeRequest, (PacketWriter * __this, String * name, CodecSettings codecSettings, MethodInfo * method)); +DO_APP_FUNC(0x00C33330, PacketWriter, PacketWriter_WriteHandshakeResponse, (PacketWriter * __this, uint32_t session, uint16_t clientId, MethodInfo * method)); +DO_APP_FUNC(0x00C334D0, PacketWriter, PacketWriter_WriteHandshakeP2P, (PacketWriter * __this, uint32_t session, uint16_t peerId, MethodInfo * method)); +DO_APP_FUNC(0x00C33640, PacketWriter, PacketWriter_WriteClientState, (PacketWriter * __this, uint32_t session, String * name, uint16_t clientId, CodecSettings codecSettings, Rooms * rooms, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8E300, PacketWriter_WriteClientState__MethodInfo); -DO_APP_FUNC(0x00C33800, PacketWriter, PacketWriter_WriteClientState_1, (PacketWriter__Boxed * __this, uint32_t session, String * name, uint16_t clientId, CodecSettings codecSettings, ReadOnlyCollection_1_System_String_ * rooms, MethodInfo * method)); +DO_APP_FUNC(0x00C33800, PacketWriter, PacketWriter_WriteClientState_1, (PacketWriter * __this, uint32_t session, String * name, uint16_t clientId, CodecSettings codecSettings, ReadOnlyCollection_1_System_String_ * rooms, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8E2E0, PacketWriter_WriteClientState_1__MethodInfo); -DO_APP_FUNC(0x00C33B80, PacketWriter, PacketWriter_WriteRemoveClient, (PacketWriter__Boxed * __this, uint32_t session, uint16_t clientId, MethodInfo * method)); -DO_APP_FUNC(0x00C33CF0, PacketWriter, PacketWriter_WriteVoiceData, (PacketWriter__Boxed * __this, uint32_t session, uint16_t senderId, uint16_t sequenceNumber, uint8_t channelSession, IList_1_Dissonance_Networking_Client_OpenChannel_ * channels, ArraySegment_1_Byte_ encodedAudio, MethodInfo * method)); +DO_APP_FUNC(0x00C33B80, PacketWriter, PacketWriter_WriteRemoveClient, (PacketWriter * __this, uint32_t session, uint16_t clientId, MethodInfo * method)); +DO_APP_FUNC(0x00C33CF0, PacketWriter, PacketWriter_WriteVoiceData, (PacketWriter * __this, uint32_t session, uint16_t senderId, uint16_t sequenceNumber, uint8_t channelSession, IList_1_Dissonance_Networking_Client_OpenChannel_ * channels, ArraySegment_1_Byte_ encodedAudio, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8E2A0, PacketWriter_WriteVoiceData__MethodInfo); -DO_APP_FUNC(0x00C34170, PacketWriter, PacketWriter_WriteTextPacket, (PacketWriter__Boxed * __this, uint32_t session, uint16_t senderId, ChannelType__Enum recipient, uint16_t target, String * data, MethodInfo * method)); -DO_APP_FUNC(0x00C34380, PacketWriter, PacketWriter_WriteErrorWrongSession, (PacketWriter__Boxed * __this, uint32_t session, MethodInfo * method)); -DO_APP_FUNC(0x00C344C0, PacketWriter, PacketWriter_WriteDeltaChannelState, (PacketWriter__Boxed * __this, uint32_t session, bool joined, uint16_t peer, String * name, MethodInfo * method)); +DO_APP_FUNC(0x00C34170, PacketWriter, PacketWriter_WriteTextPacket, (PacketWriter * __this, uint32_t session, uint16_t senderId, ChannelType__Enum recipient, uint16_t target, String * data, MethodInfo * method)); +DO_APP_FUNC(0x00C34380, PacketWriter, PacketWriter_WriteErrorWrongSession, (PacketWriter * __this, uint32_t session, MethodInfo * method)); +DO_APP_FUNC(0x00C344C0, PacketWriter, PacketWriter_WriteDeltaChannelState, (PacketWriter * __this, uint32_t session, bool joined, uint16_t peer, String * name, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8E1C0, PacketWriter_WriteDeltaChannelState__MethodInfo); DO_APP_FUNC(0x00C346D0, void, PacketWriter__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x00C34810, void, TextPacket__ctor, (TextPacket__Boxed * __this, uint16_t sender, ChannelType__Enum recipientType, uint16_t recipient, String * text, MethodInfo * method)); +DO_APP_FUNC(0x00C34810, void, TextPacket__ctor, (TextPacket * __this, uint16_t sender, ChannelType__Enum recipientType, uint16_t recipient, String * text, MethodInfo * method)); DO_APP_FUNC(0x003BCD50, uint32_t, TrafficCounter_get_Packets, (TrafficCounter * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, TrafficCounter_set_Packets, (TrafficCounter * __this, uint32_t value, MethodInfo * method)); DO_APP_FUNC(0x003BCD70, uint32_t, TrafficCounter_get_Bytes, (TrafficCounter * __this, MethodInfo * method)); @@ -92253,7 +103859,7 @@ DO_APP_FUNC(0x003BCDD0, void, TrafficCounter_set_BytesPerSecond, (TrafficCounter DO_APP_FUNC(0x00C34880, void, TrafficCounter_Update, (TrafficCounter * __this, int32_t bytes, Nullable_1_DateTime_ now, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C948B0, TrafficCounter_Update__MethodInfo); DO_APP_FUNC(0x00C34C90, String *, TrafficCounter_ToString, (TrafficCounter * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C34DF0, void, TrafficCounter_Combine, (uint32_t packets, uint32_t bytes, uint32_t totalBytesPerSecond, TrafficCounter__Array * counters, MethodInfo * method)); +DO_APP_FUNC(0x00C34DF0, void, TrafficCounter_Combine, (uint32_t * packets, uint32_t * bytes, uint32_t * totalBytesPerSecond, TrafficCounter__Array * counters, MethodInfo * method)); DO_APP_FUNC(0x00C34E60, String *, TrafficCounter_Format, (uint64_t packets, uint64_t bytes, uint64_t bytesPerSecond, MethodInfo * method)); DO_APP_FUNC(0x00C34FB0, String *, TrafficCounter_FormatByteString, (Decimal bytes, MethodInfo * method)); DO_APP_FUNC(0x00C35430, void, TrafficCounter__ctor, (TrafficCounter * __this, MethodInfo * method)); @@ -92291,37 +103897,37 @@ DO_APP_FUNC(0x00C391D0, void, EventQueue_EnqueueVoiceData, (EventQueue * __this, DO_APP_FUNC(0x00C394A0, void, EventQueue_EnqueueTextData, (EventQueue * __this, TextMessage data, MethodInfo * method)); DO_APP_FUNC(0x00C39750, Byte__Array *, EventQueue_GetEventBuffer, (EventQueue * __this, MethodInfo * method)); DO_APP_FUNC(0x00C398B0, void, EventQueue__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x00594C90, String *, EventQueue_NetworkEvent_get_PlayerName, (EventQueue_NetworkEvent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x005F25C0, void, EventQueue_NetworkEvent_set_PlayerName, (EventQueue_NetworkEvent__Boxed * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x00C39A10, CodecSettings, EventQueue_NetworkEvent_get_CodecSettings, (EventQueue_NetworkEvent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C39A30, void, EventQueue_NetworkEvent_set_CodecSettings, (EventQueue_NetworkEvent__Boxed * __this, CodecSettings value, MethodInfo * method)); -DO_APP_FUNC(0x003BB3E0, String *, EventQueue_NetworkEvent_get_Room, (EventQueue_NetworkEvent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCDE0, void, EventQueue_NetworkEvent_set_Room, (EventQueue_NetworkEvent__Boxed * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x003BB3B0, ReadOnlyCollection_1_System_String_ *, EventQueue_NetworkEvent_get_AllRooms, (EventQueue_NetworkEvent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003C6500, void, EventQueue_NetworkEvent_set_AllRooms, (EventQueue_NetworkEvent__Boxed * __this, ReadOnlyCollection_1_System_String_ * value, MethodInfo * method)); -DO_APP_FUNC(0x00C39A40, VoicePacket, EventQueue_NetworkEvent_get_VoicePacket, (EventQueue_NetworkEvent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C39A70, TextMessage, EventQueue_NetworkEvent_get_TextMessage, (EventQueue_NetworkEvent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C39A90, void, EventQueue_NetworkEvent__ctor, (EventQueue_NetworkEvent__Boxed * __this, EventQueue_EventType__Enum type, MethodInfo * method)); -DO_APP_FUNC(0x00C39BC0, void, EventQueue_NetworkEvent__ctor_1, (EventQueue_NetworkEvent__Boxed * __this, VoicePacket voice, MethodInfo * method)); -DO_APP_FUNC(0x00C39C50, void, EventQueue_NetworkEvent__ctor_2, (EventQueue_NetworkEvent__Boxed * __this, TextMessage text, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, EventQueue_NetworkEvent_Check, (EventQueue_NetworkEvent__Boxed * __this, EventQueue_EventType__Enum type, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, EventQueue_NetworkEvent_Check_1, (EventQueue_NetworkEvent__Boxed * __this, EventQueue_EventType__Enum typeA, EventQueue_EventType__Enum typeB, MethodInfo * method)); -DO_APP_FUNC(0x00471910, ChannelProperties *, OpenChannel_get_Config, (OpenChannel__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C39CD0, uint16_t, OpenChannel_get_Bitfield, (OpenChannel__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C39DE0, uint16_t, OpenChannel_get_Recipient, (OpenChannel__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471920, ChannelType__Enum, OpenChannel_get_Type, (OpenChannel__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCC40, bool, OpenChannel_get_IsClosing, (OpenChannel__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C39DF0, bool, OpenChannel_get_IsPositional, (OpenChannel__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C39E10, ChannelPriority__Enum, OpenChannel_get_Priority, (OpenChannel__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C39E70, float, OpenChannel_get_AmplitudeMultiplier, (OpenChannel__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C39E90, uint16_t, OpenChannel_get_SessionId, (OpenChannel__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, String *, OpenChannel_get_Name, (OpenChannel__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C39EA0, void, OpenChannel__ctor, (OpenChannel__Boxed * __this, ChannelType__Enum type, uint16_t sessionId, ChannelProperties * config, bool closing, uint16_t recipient, String * name, bool sent, MethodInfo * method)); -DO_APP_FUNC(0x00C39F90, OpenChannel, OpenChannel_AsClosing, (OpenChannel__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, String *, EventQueue_NetworkEvent_get_PlayerName, (EventQueue_NetworkEvent * __this, MethodInfo * method)); +DO_APP_FUNC(0x005F25C0, void, EventQueue_NetworkEvent_set_PlayerName, (EventQueue_NetworkEvent * __this, String * value, MethodInfo * method)); +DO_APP_FUNC(0x00C39A10, CodecSettings, EventQueue_NetworkEvent_get_CodecSettings, (EventQueue_NetworkEvent * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C39A30, void, EventQueue_NetworkEvent_set_CodecSettings, (EventQueue_NetworkEvent * __this, CodecSettings value, MethodInfo * method)); +DO_APP_FUNC(0x003BB3E0, String *, EventQueue_NetworkEvent_get_Room, (EventQueue_NetworkEvent * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCDE0, void, EventQueue_NetworkEvent_set_Room, (EventQueue_NetworkEvent * __this, String * value, MethodInfo * method)); +DO_APP_FUNC(0x003BB3B0, ReadOnlyCollection_1_System_String_ *, EventQueue_NetworkEvent_get_AllRooms, (EventQueue_NetworkEvent * __this, MethodInfo * method)); +DO_APP_FUNC(0x003C6500, void, EventQueue_NetworkEvent_set_AllRooms, (EventQueue_NetworkEvent * __this, ReadOnlyCollection_1_System_String_ * value, MethodInfo * method)); +DO_APP_FUNC(0x00C39A40, VoicePacket, EventQueue_NetworkEvent_get_VoicePacket, (EventQueue_NetworkEvent * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C39A70, TextMessage, EventQueue_NetworkEvent_get_TextMessage, (EventQueue_NetworkEvent * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C39A90, void, EventQueue_NetworkEvent__ctor, (EventQueue_NetworkEvent * __this, EventQueue_EventType__Enum type, MethodInfo * method)); +DO_APP_FUNC(0x00C39BC0, void, EventQueue_NetworkEvent__ctor_1, (EventQueue_NetworkEvent * __this, VoicePacket voice, MethodInfo * method)); +DO_APP_FUNC(0x00C39C50, void, EventQueue_NetworkEvent__ctor_2, (EventQueue_NetworkEvent * __this, TextMessage text, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, EventQueue_NetworkEvent_Check, (EventQueue_NetworkEvent * __this, EventQueue_EventType__Enum type, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, EventQueue_NetworkEvent_Check_1, (EventQueue_NetworkEvent * __this, EventQueue_EventType__Enum typeA, EventQueue_EventType__Enum typeB, MethodInfo * method)); +DO_APP_FUNC(0x00471910, ChannelProperties *, OpenChannel_get_Config, (OpenChannel * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C39CD0, uint16_t, OpenChannel_get_Bitfield, (OpenChannel * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C39DE0, uint16_t, OpenChannel_get_Recipient, (OpenChannel * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471920, ChannelType__Enum, OpenChannel_get_Type, (OpenChannel * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCC40, bool, OpenChannel_get_IsClosing, (OpenChannel * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C39DF0, bool, OpenChannel_get_IsPositional, (OpenChannel * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C39E10, ChannelPriority__Enum, OpenChannel_get_Priority, (OpenChannel * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C39E70, float, OpenChannel_get_AmplitudeMultiplier, (OpenChannel * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C39E90, uint16_t, OpenChannel_get_SessionId, (OpenChannel * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, String *, OpenChannel_get_Name, (OpenChannel * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C39EA0, void, OpenChannel__ctor, (OpenChannel * __this, ChannelType__Enum type, uint16_t sessionId, ChannelProperties * config, bool closing, uint16_t recipient, String * name, bool sent, MethodInfo * method)); +DO_APP_FUNC(0x00C39F90, OpenChannel, OpenChannel_AsClosing, (OpenChannel * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C944E8, OpenChannel_AsClosing__MethodInfo); -DO_APP_FUNC(0x00C3A0B0, OpenChannel, OpenChannel_AsOpen, (OpenChannel__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C3A0B0, OpenChannel, OpenChannel_AsOpen, (OpenChannel * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C944D0, OpenChannel_AsOpen__MethodInfo); -DO_APP_FUNC(0x00C3A1E0, OpenChannel, OpenChannel_AsSent, (OpenChannel__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C3A1E0, OpenChannel, OpenChannel_AsSent, (OpenChannel * __this, MethodInfo * method)); DO_APP_FUNC(0x00C3A250, void, OpenChannel__cctor, (MethodInfo * method)); DO_APP_FUNC(0x00C3A330, bool, PacketDelaySimulator_IsOrderedReliable, (MessageTypes__Enum header, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, PacketDelaySimulator_ShouldLose, (PacketDelaySimulator * __this, ArraySegment_1_Byte_ packet, MethodInfo * method)); @@ -92335,8 +103941,8 @@ DO_APP_FUNC(0x00C3A460, void, PeerVoiceReceiver__ctor, (PeerVoiceReceiver * __th DO_APP_FUNC(0x00C3A7A0, void, PeerVoiceReceiver_CheckTimeout, (PeerVoiceReceiver * __this, DateTime utcNow, TimeSpan activeTimeout, TimeSpan inactiveTimeout, MethodInfo * method)); DO_APP_FUNC(0x00C3A8B0, void, PeerVoiceReceiver_StopSpeaking, (PeerVoiceReceiver * __this, MethodInfo * method)); DO_APP_FUNC(0x00C3A9A0, void, PeerVoiceReceiver_StartSpeaking, (PeerVoiceReceiver * __this, uint16_t startSequenceNumber, uint16_t channelSession, DateTime utcNow, MethodInfo * method)); -DO_APP_FUNC(0x00C3AAD0, void, PeerVoiceReceiver_ReceivePacket, (PeerVoiceReceiver * __this, PacketReader reader, DateTime utcNow, MethodInfo * method)); -DO_APP_FUNC(0x00C3AE10, void, PeerVoiceReceiver_ReadChannels, (PeerVoiceReceiver * __this, PacketReader reader, uint16_t numChannels, bool allClosing, bool forceReset, PeerVoiceReceiver_ChannelsMetadata channelsMetadata, ICollection_1_Dissonance_RemoteChannel_ * channelsOut, MethodInfo * method)); +DO_APP_FUNC(0x00C3AAD0, void, PeerVoiceReceiver_ReceivePacket, (PeerVoiceReceiver * __this, PacketReader * reader, DateTime utcNow, MethodInfo * method)); +DO_APP_FUNC(0x00C3AE10, void, PeerVoiceReceiver_ReadChannels, (PeerVoiceReceiver * __this, PacketReader * reader, uint16_t numChannels, bool * allClosing, bool * forceReset, PeerVoiceReceiver_ChannelsMetadata * channelsMetadata, ICollection_1_Dissonance_RemoteChannel_ * channelsOut, MethodInfo * method)); DO_APP_FUNC(0x00C3B230, bool, PeerVoiceReceiver_HasChannelSessionChanged, (PeerVoiceReceiver * __this, int32_t compositeId, int32_t expectedValue, MethodInfo * method)); DO_APP_FUNC(0x00C3B340, Nullable_1_Dissonance_RemoteChannel_, PeerVoiceReceiver_IsChannelToLocalPlayer, (PeerVoiceReceiver * __this, ChannelBitField channel, uint16_t recipient, MethodInfo * method)); DO_APP_FUNC(0x00C3BA60, void, PeerVoiceReceiver_RemoveChannelsExcept, (PeerVoiceReceiver * __this, List_1_System_Int32_ * keys, MethodInfo * method)); @@ -92344,19 +103950,19 @@ DO_APP_FUNC(0x00C3BDC0, bool, PeerVoiceReceiver_UpdateSpeakerState, (PeerVoiceRe DO_APP_FUNC(0x00C3BF80, bool, PeerVoiceReceiver_UpdateSequenceNumber, (PeerVoiceReceiver * __this, uint16_t sequenceNumber, DateTime utcNow, MethodInfo * method)); DO_APP_FUNC(0x00C3BFC0, bool, PeerVoiceReceiver_IsPacketFromPreviousSession, (uint16_t currentChannelSession, uint16_t packetChannelSession, bool isExtendedRange, MethodInfo * method)); DO_APP_FUNC(0x00C3C000, void, PeerVoiceReceiver__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x00C3C0E0, void, PeerVoiceReceiver_ChannelsMetadata__ctor, (PeerVoiceReceiver_ChannelsMetadata__Boxed * __this, bool isPositional, float amplitudeMultiplier, ChannelPriority__Enum priority, MethodInfo * method)); -DO_APP_FUNC(0x00C3C0F0, PeerVoiceReceiver_ChannelsMetadata, PeerVoiceReceiver_ChannelsMetadata_CombineWith, (PeerVoiceReceiver_ChannelsMetadata__Boxed * __this, PeerVoiceReceiver_ChannelsMetadata other, MethodInfo * method)); -DO_APP_FUNC(0x00C3C1C0, int32_t, VoicePacketOptions_get_ChannelSessionRange, (VoicePacketOptions__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C3C1E0, bool, VoicePacketOptions_get_IsChannelSessionExtendedRange, (VoicePacketOptions__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C3C1F0, uint8_t, VoicePacketOptions_get_ChannelSession, (VoicePacketOptions__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, uint8_t, VoicePacketOptions_get_Bitfield, (VoicePacketOptions__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C3C200, void, VoicePacketOptions__ctor, (VoicePacketOptions__Boxed * __this, uint8_t bitfield, MethodInfo * method)); +DO_APP_FUNC(0x00C3C0E0, void, PeerVoiceReceiver_ChannelsMetadata__ctor, (PeerVoiceReceiver_ChannelsMetadata * __this, bool isPositional, float amplitudeMultiplier, ChannelPriority__Enum priority, MethodInfo * method)); +DO_APP_FUNC(0x00C3C0F0, PeerVoiceReceiver_ChannelsMetadata, PeerVoiceReceiver_ChannelsMetadata_CombineWith, (PeerVoiceReceiver_ChannelsMetadata * __this, PeerVoiceReceiver_ChannelsMetadata other, MethodInfo * method)); +DO_APP_FUNC(0x00C3C1C0, int32_t, VoicePacketOptions_get_ChannelSessionRange, (VoicePacketOptions * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C3C1E0, bool, VoicePacketOptions_get_IsChannelSessionExtendedRange, (VoicePacketOptions * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C3C1F0, uint8_t, VoicePacketOptions_get_ChannelSession, (VoicePacketOptions * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C173D0, uint8_t, VoicePacketOptions_get_Bitfield, (VoicePacketOptions * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C3C200, void, VoicePacketOptions__ctor, (VoicePacketOptions * __this, uint8_t bitfield, MethodInfo * method)); DO_APP_FUNC(0x00C3C210, VoicePacketOptions, VoicePacketOptions_Unpack, (uint8_t bitfield, MethodInfo * method)); DO_APP_FUNC(0x00C3C220, VoicePacketOptions, VoicePacketOptions_Pack, (uint8_t channelSession, MethodInfo * method)); -DO_APP_FUNC(0x00C3C230, void *, ArraySegmentExtensions_DisposableHandle_get_Ptr, (ArraySegmentExtensions_DisposableHandle__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C3C230, void *, ArraySegmentExtensions_DisposableHandle_get_Ptr, (ArraySegmentExtensions_DisposableHandle * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C94360, ArraySegmentExtensions_DisposableHandle_get_Ptr__MethodInfo); -DO_APP_FUNC(0x00BDCC10, void, ArraySegmentExtensions_DisposableHandle__ctor, (ArraySegmentExtensions_DisposableHandle__Boxed * __this, void * ptr, GCHandle handle, MethodInfo * method)); -DO_APP_FUNC(0x00C3C2D0, void, ArraySegmentExtensions_DisposableHandle_Dispose, (ArraySegmentExtensions_DisposableHandle__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00BDCC10, void, ArraySegmentExtensions_DisposableHandle__ctor, (ArraySegmentExtensions_DisposableHandle * __this, void * ptr, GCHandle handle, MethodInfo * method)); +DO_APP_FUNC(0x00C3C2D0, void, ArraySegmentExtensions_DisposableHandle_Dispose, (ArraySegmentExtensions_DisposableHandle * __this, MethodInfo * method)); DO_APP_FUNC(0x00C3C2E0, int32_t, StringExtensions_1_GetFnvHashCode, (String * str, MethodInfo * method)); DO_APP_FUNC(0x00C3C360, int32_t, UShortExtensions_WrappedDelta2, (uint16_t a, uint16_t b, MethodInfo * method)); DO_APP_FUNC(0x00C3C380, int32_t, UShortExtensions_WrappedDelta7, (uint16_t a, uint16_t b, MethodInfo * method)); @@ -92378,18 +103984,18 @@ DO_APP_FUNC(0x00C3C9D0, void, POTBuffer_Alloc, (POTBuffer * __this, uint32_t cou DO_APP_FUNC_METHODINFO(0x03C94250, POTBuffer_Alloc__MethodInfo); DO_APP_FUNC(0x00C3CA60, bool, POTBuffer_Expand, (POTBuffer * __this, int32_t limit, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C94230, POTBuffer_Expand__MethodInfo); -DO_APP_FUNC(0x00C3CB90, Single__Array *, POTBuffer_GetBuffer, (POTBuffer * __this, uint32_t count, bool zeroed, MethodInfo * method)); +DO_APP_FUNC(0x00C3CB90, Single__Array *, POTBuffer_GetBuffer, (POTBuffer * __this, uint32_t * count, bool zeroed, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C94200, POTBuffer_GetBuffer__MethodInfo); -DO_APP_FUNC(0x00C15E20, uint16_t, Union16_get_UInt16, (Union16__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C2E000, void, Union16_set_UInt16, (Union16__Boxed * __this, uint16_t value, MethodInfo * method)); -DO_APP_FUNC(0x00C3CE50, uint8_t, Union16_get_LSB, (Union16__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C3CEC0, void, Union16_set_LSB, (Union16__Boxed * __this, uint8_t value, MethodInfo * method)); -DO_APP_FUNC(0x00C3CF40, uint8_t, Union16_get_MSB, (Union16__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C3CFB0, void, Union16_set_MSB, (Union16__Boxed * __this, uint8_t value, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, uint32_t, Union32_get_UInt32, (Union32__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00959BA0, void, Union32_set_UInt32, (Union32__Boxed * __this, uint32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00C3D030, void, Union32_SetBytesFromNetworkOrder, (Union32__Boxed * __this, uint8_t b1, uint8_t b2, uint8_t b3, uint8_t b4, MethodInfo * method)); -DO_APP_FUNC(0x00C3D0F0, void, Union32_GetBytesInNetworkOrder, (Union32__Boxed * __this, uint8_t b1, uint8_t b2, uint8_t b3, uint8_t b4, MethodInfo * method)); +DO_APP_FUNC(0x00C15E20, uint16_t, Union16_get_UInt16, (Union16 * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C2E000, void, Union16_set_UInt16, (Union16 * __this, uint16_t value, MethodInfo * method)); +DO_APP_FUNC(0x00C3CE50, uint8_t, Union16_get_LSB, (Union16 * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C3CEC0, void, Union16_set_LSB, (Union16 * __this, uint8_t value, MethodInfo * method)); +DO_APP_FUNC(0x00C3CF40, uint8_t, Union16_get_MSB, (Union16 * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C3CFB0, void, Union16_set_MSB, (Union16 * __this, uint8_t value, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, uint32_t, Union32_get_UInt32, (Union32 * __this, MethodInfo * method)); +DO_APP_FUNC(0x00959BA0, void, Union32_set_UInt32, (Union32 * __this, uint32_t value, MethodInfo * method)); +DO_APP_FUNC(0x00C3D030, void, Union32_SetBytesFromNetworkOrder, (Union32 * __this, uint8_t b1, uint8_t b2, uint8_t b3, uint8_t b4, MethodInfo * method)); +DO_APP_FUNC(0x00C3D0F0, void, Union32_GetBytesInNetworkOrder, (Union32 * __this, uint8_t * b1, uint8_t * b2, uint8_t * b3, uint8_t * b4, MethodInfo * method)); DO_APP_FUNC(0x003CC930, float, WindowDeviationCalculator_get_StdDev, (WindowDeviationCalculator * __this, MethodInfo * method)); DO_APP_FUNC(0x003CC940, void, WindowDeviationCalculator_set_StdDev, (WindowDeviationCalculator * __this, float value, MethodInfo * method)); DO_APP_FUNC(0x003CC900, float, WindowDeviationCalculator_get_Mean, (WindowDeviationCalculator * __this, MethodInfo * method)); @@ -92469,11 +104075,11 @@ DO_APP_FUNC(0x00C42490, FrameSize__Enum, VoiceSettings_c__Load_b__84_1, (VoiceSe DO_APP_FUNC_METHODINFO(0x03C93BC8, VoiceSettings_c__Load_b__84_1__MethodInfo); DO_APP_FUNC(0x00C424F0, void, AecDiagnostics_Dissonance_GetAecMetrics, (void * buffer, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x00C42530, AecDiagnostics_AecState__Enum, AecDiagnostics_GetState, (MethodInfo * method)); -DO_APP_FUNC(0x00C425B0, AecDiagnostics_AecStats, AecDiagnostics_GetStats, (Single__Array * temp, MethodInfo * method)); -DO_APP_FUNC(0x00BCBB00, float, ArvCalculator_get_ARV, (ArvCalculator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C42840, void, ArvCalculator_set_ARV, (ArvCalculator__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x00C42850, void, ArvCalculator_Reset, (ArvCalculator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C42860, void, ArvCalculator_Update, (ArvCalculator__Boxed * __this, ArraySegment_1_Single_ samples, MethodInfo * method)); +DO_APP_FUNC(0x00C425B0, AecDiagnostics_AecStats, AecDiagnostics_GetStats, (Single__Array * * temp, MethodInfo * method)); +DO_APP_FUNC(0x00BCBB00, float, ArvCalculator_get_ARV, (ArvCalculator * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C42840, void, ArvCalculator_set_ARV, (ArvCalculator * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x00C42850, void, ArvCalculator_Reset, (ArvCalculator * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C42860, void, ArvCalculator_Update, (ArvCalculator * __this, ArraySegment_1_Single_ samples, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C93B78, ArvCalculator_Update__MethodInfo); DO_APP_FUNC(0x00C42A40, void, AudioFileWriter__ctor, (AudioFileWriter * __this, String * filename, WaveFormat * format, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C93B48, AudioFileWriter__ctor__MethodInfo); @@ -92488,15 +104094,15 @@ DO_APP_FUNC(0x00C43700, void, AudioSettingsWatcher_OnAudioConfigChanged, (AudioS DO_APP_FUNC_METHODINFO(0x03C93AE8, AudioSettingsWatcher_OnAudioConfigChanged__MethodInfo); DO_APP_FUNC(0x00C438A0, void, AudioSettingsWatcher__ctor, (AudioSettingsWatcher * __this, MethodInfo * method)); DO_APP_FUNC(0x00C43930, void, AudioSettingsWatcher__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x00BCBB00, float, Fader_get_Volume, (Fader__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C42840, void, Fader_set_Volume, (Fader__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x00C43A70, float, Fader_get_EndVolume, (Fader__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C43A80, void, Fader_set_EndVolume, (Fader__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x00C43A90, float, Fader_get_StartVolume, (Fader__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C43AA0, void, Fader_set_StartVolume, (Fader__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x00C43AB0, void, Fader_Update, (Fader__Boxed * __this, float dt, MethodInfo * method)); -DO_APP_FUNC(0x00C43B20, float, Fader_CalculateVolume, (Fader__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C43B90, void, Fader_FadeTo, (Fader__Boxed * __this, float target, float duration, MethodInfo * method)); +DO_APP_FUNC(0x00BCBB00, float, Fader_get_Volume, (Fader * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C42840, void, Fader_set_Volume, (Fader * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x00C43A70, float, Fader_get_EndVolume, (Fader * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C43A80, void, Fader_set_EndVolume, (Fader * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x00C43A90, float, Fader_get_StartVolume, (Fader * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C43AA0, void, Fader_set_StartVolume, (Fader * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x00C43AB0, void, Fader_Update, (Fader * __this, float dt, MethodInfo * method)); +DO_APP_FUNC(0x00C43B20, float, Fader_CalculateVolume, (Fader * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C43B90, void, Fader_FadeTo, (Fader * __this, float target, float duration, MethodInfo * method)); DO_APP_FUNC(0x003CC930, float, OpenChannelVolumeDuck_get_TargetVolume, (OpenChannelVolumeDuck * __this, MethodInfo * method)); DO_APP_FUNC(0x00C43BC0, void, OpenChannelVolumeDuck__ctor, (OpenChannelVolumeDuck * __this, RoomChannels * rooms, PlayerChannels * players, MethodInfo * method)); DO_APP_FUNC(0x00C43C90, void, OpenChannelVolumeDuck_Update, (OpenChannelVolumeDuck * __this, bool isMuted, float dt, MethodInfo * method)); @@ -92598,11 +104204,11 @@ DO_APP_FUNC(0x00C49530, DecoderPipeline *, DecoderPipelinePool_c_DisplayClass2_0 DO_APP_FUNC_METHODINFO(0x03C93828, DecoderPipelinePool_c_DisplayClass2_0__GetPool_b__0__MethodInfo); DO_APP_FUNC(0x00C49710, void, DecoderPipelinePool_c_DisplayClass2_0__GetPool_b__1, (DecoderPipelinePool_c_DisplayClass2_0 * __this, DecoderPipeline * p, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C937E8, DecoderPipelinePool_c_DisplayClass2_0__GetPool_b__1__MethodInfo); -DO_APP_FUNC(0x00A9EFB0, int32_t, DesyncCalculator_get_DesyncMilliseconds, (DesyncCalculator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00959BA0, void, DesyncCalculator_set_DesyncMilliseconds, (DesyncCalculator__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00C49810, float, DesyncCalculator_get_CorrectedPlaybackSpeed, (DesyncCalculator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C49870, void, DesyncCalculator_Update, (DesyncCalculator__Boxed * __this, TimeSpan ideal, TimeSpan actual, MethodInfo * method)); -DO_APP_FUNC(0x00C49A10, void, DesyncCalculator_Skip, (DesyncCalculator__Boxed * __this, int32_t deltaDesyncMilliseconds, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, DesyncCalculator_get_DesyncMilliseconds, (DesyncCalculator * __this, MethodInfo * method)); +DO_APP_FUNC(0x00959BA0, void, DesyncCalculator_set_DesyncMilliseconds, (DesyncCalculator * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x00C49810, float, DesyncCalculator_get_CorrectedPlaybackSpeed, (DesyncCalculator * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C49870, void, DesyncCalculator_Update, (DesyncCalculator * __this, TimeSpan ideal, TimeSpan actual, MethodInfo * method)); +DO_APP_FUNC(0x00C49A10, void, DesyncCalculator_Skip, (DesyncCalculator * __this, int32_t deltaDesyncMilliseconds, MethodInfo * method)); DO_APP_FUNC(0x00C49A20, int32_t, DesyncCalculator_CalculateDesync, (TimeSpan idealPlaybackPosition, TimeSpan actualPlaybackPosition, MethodInfo * method)); DO_APP_FUNC(0x00C49BB0, float, DesyncCalculator_CalculateCorrectionFactor, (float desyncMilliseconds, MethodInfo * method)); DO_APP_FUNC(0x003CD280, int32_t, EncodedAudioBuffer_get_Count, (EncodedAudioBuffer * __this, MethodInfo * method)); @@ -92613,16 +104219,16 @@ DO_APP_FUNC(0x00C49C20, void, EncodedAudioBuffer__ctor, (EncodedAudioBuffer * __ DO_APP_FUNC_METHODINFO(0x03C937A0, EncodedAudioBuffer__ctor__MethodInfo); DO_APP_FUNC(0x00C49F90, void, EncodedAudioBuffer_Push, (EncodedAudioBuffer * __this, VoicePacket frame, MethodInfo * method)); DO_APP_FUNC(0x00C4A240, void, EncodedAudioBuffer_Stop, (EncodedAudioBuffer * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C4A250, bool, EncodedAudioBuffer_Read, (EncodedAudioBuffer * __this, Nullable_1_Dissonance_Networking_VoicePacket_ frame, bool lostPacket, MethodInfo * method)); +DO_APP_FUNC(0x00C4A250, bool, EncodedAudioBuffer_Read, (EncodedAudioBuffer * __this, Nullable_1_Dissonance_Networking_VoicePacket_ * frame, bool * lostPacket, MethodInfo * method)); DO_APP_FUNC(0x00C4A980, void, EncodedAudioBuffer_Reset, (EncodedAudioBuffer * __this, MethodInfo * method)); DO_APP_FUNC(0x00C4AB00, bool, EncodedAudioBuffer_IsComplete, (EncodedAudioBuffer * __this, MethodInfo * method)); DO_APP_FUNC(0x00C4AB90, void, EncodedAudioBuffer__cctor, (MethodInfo * method)); DO_APP_FUNC(0x00C4AC70, int32_t, EncodedAudioBuffer_VoicePacketComparer_Compare, (EncodedAudioBuffer_VoicePacketComparer * __this, VoicePacket x, VoicePacket y, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, EncodedAudioBuffer_VoicePacketComparer__ctor, (EncodedAudioBuffer_VoicePacketComparer * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C4AC90, void, FrameFormat__ctor, (FrameFormat__Boxed * __this, Codec__Enum codec, WaveFormat * waveFormat, uint32_t frameSize, MethodInfo * method)); -DO_APP_FUNC(0x00C4ACF0, int32_t, FrameFormat_GetHashCode, (FrameFormat__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C4AD50, bool, FrameFormat_Equals, (FrameFormat__Boxed * __this, FrameFormat other, MethodInfo * method)); -DO_APP_FUNC(0x00C4ADB0, bool, FrameFormat_Equals_1, (FrameFormat__Boxed * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x00C4AC90, void, FrameFormat__ctor, (FrameFormat * __this, Codec__Enum codec, WaveFormat * waveFormat, uint32_t frameSize, MethodInfo * method)); +DO_APP_FUNC(0x00C4ACF0, int32_t, FrameFormat_GetHashCode, (FrameFormat * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C4AD50, bool, FrameFormat_Equals, (FrameFormat * __this, FrameFormat other, MethodInfo * method)); +DO_APP_FUNC(0x00C4ADB0, bool, FrameFormat_Equals_1, (FrameFormat * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x00C4AE80, void, FrameToSampleConverter__ctor, (FrameToSampleConverter * __this, IFrameSource * source, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C93738, FrameToSampleConverter__ctor__MethodInfo); DO_APP_FUNC(0x00C4B060, WaveFormat *, FrameToSampleConverter_get_WaveFormat, (FrameToSampleConverter * __this, MethodInfo * method)); @@ -92635,10 +104241,10 @@ DO_APP_FUNC(0x003BCDD0, void, PriorityManager_set_TopPriority, (PriorityManager DO_APP_FUNC(0x00C4B640, void, PriorityManager__ctor, (PriorityManager * __this, PlayerCollection * players, MethodInfo * method)); DO_APP_FUNC(0x00C4B6B0, void, PriorityManager_Update, (PriorityManager * __this, MethodInfo * method)); DO_APP_FUNC(0x00C4B860, void, PriorityManager__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x00C3C0E0, void, PlaybackOptions__ctor, (PlaybackOptions__Boxed * __this, bool isPositional, float amplitudeMultiplier, ChannelPriority__Enum priority, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, PlaybackOptions_get_IsPositional, (PlaybackOptions__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C4B940, float, PlaybackOptions_get_AmplitudeMultiplier, (PlaybackOptions__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471920, ChannelPriority__Enum, PlaybackOptions_get_Priority, (PlaybackOptions__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C3C0E0, void, PlaybackOptions__ctor, (PlaybackOptions * __this, bool isPositional, float amplitudeMultiplier, ChannelPriority__Enum priority, MethodInfo * method)); +DO_APP_FUNC(0x00C173D0, bool, PlaybackOptions_get_IsPositional, (PlaybackOptions * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C4B940, float, PlaybackOptions_get_AmplitudeMultiplier, (PlaybackOptions * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471920, ChannelPriority__Enum, PlaybackOptions_get_Priority, (PlaybackOptions * __this, MethodInfo * method)); DO_APP_FUNC(0x00C4B950, void, Resampler_1__ctor, (Resampler_1 * __this, ISampleSource * source, IRateProvider * rate, MethodInfo * method)); DO_APP_FUNC(0x00C4BC60, WaveFormat *, Resampler_1_get_WaveFormat, (Resampler_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x00C4BC70, void, Resampler_1_Prepare, (Resampler_1 * __this, SessionContext context, MethodInfo * method)); @@ -92660,34 +104266,34 @@ DO_APP_FUNC(0x00C4CF30, void, SamplePlaybackComponent_OnEnable, (SamplePlaybackC DO_APP_FUNC(0x00C4CF30, void, SamplePlaybackComponent_OnDisable, (SamplePlaybackComponent * __this, MethodInfo * method)); DO_APP_FUNC(0x00C4CFD0, void, SamplePlaybackComponent_OnAudioFilterRead, (SamplePlaybackComponent * __this, Single__Array * data, int32_t channels, MethodInfo * method)); DO_APP_FUNC(0x00C4D530, void, SamplePlaybackComponent_ApplyReset, (SamplePlaybackComponent * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C4D540, bool, SamplePlaybackComponent_Filter, (SpeechSession session, Single__Array * output, int32_t channels, Single__Array * temp, AudioFileWriter * diagnosticOutput, IAudioOutputSubscriber__Array * subscribers, float arv, MethodInfo * method)); +DO_APP_FUNC(0x00C4D540, bool, SamplePlaybackComponent_Filter, (SpeechSession session, Single__Array * output, int32_t channels, Single__Array * temp, AudioFileWriter * diagnosticOutput, IAudioOutputSubscriber__Array * subscribers, float * arv, MethodInfo * method)); DO_APP_FUNC(0x00C4D890, void, SamplePlaybackComponent__ctor, (SamplePlaybackComponent * __this, MethodInfo * method)); DO_APP_FUNC(0x00C4D9C0, void, SamplePlaybackComponent__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x00C4DAA0, void, SessionContext__ctor, (SessionContext__Boxed * __this, String * playerName, uint32_t id, MethodInfo * method)); +DO_APP_FUNC(0x00C4DAA0, void, SessionContext__ctor, (SessionContext * __this, String * playerName, uint32_t id, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C93678, SessionContext__ctor__MethodInfo); -DO_APP_FUNC(0x00C4DB80, bool, SessionContext_Equals, (SessionContext__Boxed * __this, SessionContext other, MethodInfo * method)); -DO_APP_FUNC(0x00C4DBF0, bool, SessionContext_Equals_1, (SessionContext__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x00C4DCD0, int32_t, SessionContext_GetHashCode, (SessionContext__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C4DB80, bool, SessionContext_Equals, (SessionContext * __this, SessionContext other, MethodInfo * method)); +DO_APP_FUNC(0x00C4DBF0, bool, SessionContext_Equals_1, (SessionContext * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x00C4DCD0, int32_t, SessionContext_GetHashCode, (SessionContext * __this, MethodInfo * method)); DO_APP_FUNC(0x00C4DD60, WaveFormat *, SoftClipSampleSource_get_WaveFormat, (SoftClipSampleSource * __this, MethodInfo * method)); DO_APP_FUNC(0x00C4DDB0, void, SoftClipSampleSource__ctor, (SoftClipSampleSource * __this, ISampleSource * upstream, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C93650, SoftClipSampleSource__ctor__MethodInfo); DO_APP_FUNC(0x00C4DF30, void, SoftClipSampleSource_Prepare, (SoftClipSampleSource * __this, SessionContext context, MethodInfo * method)); DO_APP_FUNC(0x00C4E000, bool, SoftClipSampleSource_Read, (SoftClipSampleSource * __this, ArraySegment_1_Single_ samples, MethodInfo * method)); DO_APP_FUNC(0x00C4E100, void, SoftClipSampleSource_Reset, (SoftClipSampleSource * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C4E180, int32_t, SpeechSession_get_BufferCount, (SpeechSession__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0093E890, SessionContext, SpeechSession_get_Context, (SpeechSession__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C4E1D0, PlaybackOptions, SpeechSession_get_PlaybackOptions, (SpeechSession__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C4E2B0, WaveFormat *, SpeechSession_get_OutputWaveFormat, (SpeechSession__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C4E300, float, SpeechSession_get_PacketLoss, (SpeechSession__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, IRemoteChannelProvider *, SpeechSession_get_Channels, (SpeechSession__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C4E350, DateTime, SpeechSession_get_TargetActivationTime, (SpeechSession__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C4E3F0, TimeSpan, SpeechSession_get_Delay, (SpeechSession__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C4E520, SyncState, SpeechSession_get_SyncState, (SpeechSession__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C4E600, void, SpeechSession__ctor, (SpeechSession__Boxed * __this, SessionContext context, IJitterEstimator * jitter, IDecoderPipeline * pipeline, IRemoteChannelProvider * channels, DateTime now, MethodInfo * method)); +DO_APP_FUNC(0x00C4E180, int32_t, SpeechSession_get_BufferCount, (SpeechSession * __this, MethodInfo * method)); +DO_APP_FUNC(0x0093E890, SessionContext, SpeechSession_get_Context, (SpeechSession * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C4E1D0, PlaybackOptions, SpeechSession_get_PlaybackOptions, (SpeechSession * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C4E2B0, WaveFormat *, SpeechSession_get_OutputWaveFormat, (SpeechSession * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C4E300, float, SpeechSession_get_PacketLoss, (SpeechSession * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, IRemoteChannelProvider *, SpeechSession_get_Channels, (SpeechSession * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C4E350, DateTime, SpeechSession_get_TargetActivationTime, (SpeechSession * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C4E3F0, TimeSpan, SpeechSession_get_Delay, (SpeechSession * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C4E520, SyncState, SpeechSession_get_SyncState, (SpeechSession * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C4E600, void, SpeechSession__ctor, (SpeechSession * __this, SessionContext context, IJitterEstimator * jitter, IDecoderPipeline * pipeline, IRemoteChannelProvider * channels, DateTime now, MethodInfo * method)); DO_APP_FUNC(0x00C4E820, SpeechSession, SpeechSession_Create, (SessionContext context, IJitterEstimator * jitter, IDecoderPipeline * pipeline, IRemoteChannelProvider * channels, DateTime now, MethodInfo * method)); -DO_APP_FUNC(0x00C4E880, void, SpeechSession_Prepare, (SpeechSession__Boxed * __this, DateTime timeOfFirstDequeueAttempt, MethodInfo * method)); -DO_APP_FUNC(0x00C4EF70, bool, SpeechSession_Read, (SpeechSession__Boxed * __this, ArraySegment_1_Single_ samples, MethodInfo * method)); -DO_APP_FUNC(0x00C4F040, void, SpeechSession_SetOutputSampleRate, (SpeechSession__Boxed * __this, Nullable_1_Int32_ rate, MethodInfo * method)); +DO_APP_FUNC(0x00C4E880, void, SpeechSession_Prepare, (SpeechSession * __this, DateTime timeOfFirstDequeueAttempt, MethodInfo * method)); +DO_APP_FUNC(0x00C4EF70, bool, SpeechSession_Read, (SpeechSession * __this, ArraySegment_1_Single_ samples, MethodInfo * method)); +DO_APP_FUNC(0x00C4F040, void, SpeechSession_SetOutputSampleRate, (SpeechSession * __this, Nullable_1_Int32_ rate, MethodInfo * method)); DO_APP_FUNC(0x00C4F110, void, SpeechSession__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003C7490, String *, SpeechSessionStream_get_PlayerName, (SpeechSessionStream * __this, MethodInfo * method)); DO_APP_FUNC(0x00C4F310, void, SpeechSessionStream_set_PlayerName, (SpeechSessionStream * __this, String * value, MethodInfo * method)); @@ -92715,9 +104321,9 @@ DO_APP_FUNC(0x00C51010, void, SynchronizerSampleSource_Prepare, (SynchronizerSam DO_APP_FUNC(0x005F07F0, void, SynchronizerSampleSource_Enable, (SynchronizerSampleSource * __this, MethodInfo * method)); DO_APP_FUNC(0x00C51250, void, SynchronizerSampleSource_Reset, (SynchronizerSampleSource * __this, MethodInfo * method)); DO_APP_FUNC(0x00C512C0, bool, SynchronizerSampleSource_Read, (SynchronizerSampleSource * __this, ArraySegment_1_Single_ samples, MethodInfo * method)); -DO_APP_FUNC(0x00C51650, bool, SynchronizerSampleSource_Skip, (SynchronizerSampleSource * __this, int32_t desyncMilliseconds, int32_t deltaSamples, int32_t deltaDesyncMilliseconds, MethodInfo * method)); +DO_APP_FUNC(0x00C51650, bool, SynchronizerSampleSource_Skip, (SynchronizerSampleSource * __this, int32_t desyncMilliseconds, int32_t * deltaSamples, int32_t * deltaDesyncMilliseconds, MethodInfo * method)); DO_APP_FUNC(0x00C51B40, void, SynchronizerSampleSource__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x00C51CB0, void, SyncState__ctor, (SyncState__Boxed * __this, TimeSpan actualPlaybackPosition, TimeSpan idealPlaybackPosition, TimeSpan desync, float compensatedPlaybackSpeed, bool enabled, MethodInfo * method)); +DO_APP_FUNC(0x00C51CB0, void, SyncState__ctor, (SyncState * __this, TimeSpan actualPlaybackPosition, TimeSpan idealPlaybackPosition, TimeSpan desync, float compensatedPlaybackSpeed, bool enabled, MethodInfo * method)); DO_APP_FUNC(0x003C91C0, AudioSource *, VoicePlayback_get_AudioSource, (VoicePlayback * __this, MethodInfo * method)); DO_APP_FUNC(0x0042F730, void, VoicePlayback_set_AudioSource, (VoicePlayback * __this, AudioSource * value, MethodInfo * method)); DO_APP_FUNC(0x00C51CE0, float, VoicePlayback_get_Amplitude, (VoicePlayback * __this, MethodInfo * method)); @@ -92745,7 +104351,7 @@ DO_APP_FUNC_METHODINFO(0x03C934D0, VolumeRampedFrameSource_ApplyFlatAttenuation_ DO_APP_FUNC(0x00C53B70, void, VolumeRampedFrameSource_ApplyRampedAttenuation, (ArraySegment_1_Single_ frame, float start, float end, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C934D8, VolumeRampedFrameSource_ApplyRampedAttenuation__MethodInfo); DO_APP_FUNC(0x00C53D50, void, VolumeRampedFrameSource_Reset, (VolumeRampedFrameSource * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C53DB0, void, EncodedBuffer__ctor, (EncodedBuffer__Boxed * __this, Nullable_1_ArraySegment_1_Byte_ encoded, bool packetLost, MethodInfo * method)); +DO_APP_FUNC(0x00C53DB0, void, EncodedBuffer__ctor, (EncodedBuffer * __this, Nullable_1_ArraySegment_1_Byte_ encoded, bool packetLost, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, WaveFormat *, SilenceDecoder_get_Format, (SilenceDecoder * __this, MethodInfo * method)); DO_APP_FUNC(0x00C53E20, void, SilenceDecoder__ctor, (SilenceDecoder * __this, FrameFormat frameFormat, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SilenceDecoder_Dispose, (SilenceDecoder * __this, MethodInfo * method)); @@ -92757,15 +104363,15 @@ DO_APP_FUNC(0x00C54070, void, BandwidthExtensions__cctor, (MethodInfo * method)) DO_APP_FUNC(0x00C54150, String *, OpusNative_OpusVersion, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, OpusNative__ctor, (OpusNative * __this, MethodInfo * method)); DO_APP_FUNC(0x00C54220, void *, OpusNative_OpusNativeMethods_opus_get_version_string, (MethodInfo * method)); -DO_APP_FUNC(0x00C54290, void *, OpusNative_OpusNativeMethods_opus_encoder_create, (int32_t samplingRate, int32_t channels, int32_t application, int32_t error, MethodInfo * method)); +DO_APP_FUNC(0x00C54290, void *, OpusNative_OpusNativeMethods_opus_encoder_create, (int32_t samplingRate, int32_t channels, int32_t application, int32_t * error, MethodInfo * method)); DO_APP_FUNC(0x00C54330, void, OpusNative_OpusNativeMethods_opus_encoder_destroy, (void * encoder, MethodInfo * method)); DO_APP_FUNC(0x00C543B0, int32_t, OpusNative_OpusNativeMethods_opus_encode_float, (void * encoder, void * floatPcm, int32_t frameSize, void * byteEncoded, int32_t maxEncodedLength, MethodInfo * method)); -DO_APP_FUNC(0x00C54460, void *, OpusNative_OpusNativeMethods_opus_decoder_create, (int32_t samplingRate, int32_t channels, int32_t error, MethodInfo * method)); +DO_APP_FUNC(0x00C54460, void *, OpusNative_OpusNativeMethods_opus_decoder_create, (int32_t samplingRate, int32_t channels, int32_t * error, MethodInfo * method)); DO_APP_FUNC(0x00C544F0, void *, OpusNative_OpusNativeMethods_opus_decoder_destroy, (void * decoder, MethodInfo * method)); DO_APP_FUNC(0x00C54570, int32_t, OpusNative_OpusNativeMethods_opus_decode_float, (void * decoder, void * byteData, int32_t dataLength, void * floatPcm, int32_t frameSize, bool decodeFEC, MethodInfo * method)); -DO_APP_FUNC(0x00C54630, int32_t, OpusNative_OpusNativeMethods_dissonance_opus_decoder_ctl_out, (void * st, OpusNative_Ctl__Enum request, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x00C54630, int32_t, OpusNative_OpusNativeMethods_dissonance_opus_decoder_ctl_out, (void * st, OpusNative_Ctl__Enum request, int32_t * value, MethodInfo * method)); DO_APP_FUNC(0x00C546D0, int32_t, OpusNative_OpusNativeMethods_dissonance_opus_decoder_ctl_in, (void * st, OpusNative_Ctl__Enum request, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00C54770, int32_t, OpusNative_OpusNativeMethods_dissonance_opus_encoder_ctl_out, (void * st, OpusNative_Ctl__Enum request, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x00C54770, int32_t, OpusNative_OpusNativeMethods_dissonance_opus_encoder_ctl_out, (void * st, OpusNative_Ctl__Enum request, int32_t * value, MethodInfo * method)); DO_APP_FUNC(0x00C54810, int32_t, OpusNative_OpusNativeMethods_dissonance_opus_encoder_ctl_in, (void * st, OpusNative_Ctl__Enum request, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x00C548B0, void, OpusNative_OpusNativeMethods_opus_pcm_soft_clip, (void * pcm, int32_t frameSize, int32_t channels, Single__Array * softClipMem, MethodInfo * method)); DO_APP_FUNC(0x00C54960, void, OpusNative_OpusException__ctor, (OpusNative_OpusException * __this, String * message, MethodInfo * method)); @@ -92784,7 +104390,7 @@ DO_APP_FUNC(0x00C55750, void, OpusNative_OpusEncoder_Reset, (OpusNative_OpusEnco DO_APP_FUNC_METHODINFO(0x03C93390, OpusNative_OpusEncoder_Reset__MethodInfo); DO_APP_FUNC(0x00C55930, int32_t, OpusNative_OpusEncoder_OpusCtlIn, (OpusNative_OpusEncoder * __this, OpusNative_Ctl__Enum ctl, int32_t value, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C93368, OpusNative_OpusEncoder_OpusCtlIn__MethodInfo); -DO_APP_FUNC(0x00C55C80, int32_t, OpusNative_OpusEncoder_OpusCtlOut, (OpusNative_OpusEncoder * __this, OpusNative_Ctl__Enum ctl, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x00C55C80, int32_t, OpusNative_OpusEncoder_OpusCtlOut, (OpusNative_OpusEncoder * __this, OpusNative_Ctl__Enum ctl, int32_t * value, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C93340, OpusNative_OpusEncoder_OpusCtlOut__MethodInfo); DO_APP_FUNC(0x00C56040, void, OpusNative_OpusEncoder_Finalize, (OpusNative_OpusEncoder * __this, MethodInfo * method)); DO_APP_FUNC(0x00C56080, void, OpusNative_OpusEncoder_Dispose, (OpusNative_OpusEncoder * __this, MethodInfo * method)); @@ -93047,15 +104653,16 @@ DO_APP_FUNC(0x00C67D90, bool, WebRtcPreprocessingPipeline_RnnoisePreprocessor_c_ DO_APP_FUNC_METHODINFO(0x03C950A8, WebRtcPreprocessingPipeline_RnnoisePreprocessor_c___ctor_b__7_0__MethodInfo); DO_APP_FUNC(0x00C67DF0, float, WebRtcPreprocessingPipeline_RnnoisePreprocessor_c___ctor_b__7_2, (WebRtcPreprocessingPipeline_RnnoisePreprocessor_c * __this, VoiceSettings * v, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C950B0, WebRtcPreprocessingPipeline_RnnoisePreprocessor_c___ctor_b__7_2__MethodInfo); -DO_APP_FUNC(0x00B69D90, void, CinemachineCameraOffset_PostPipelineStageCallback, (CinemachineCameraOffset * __this, CinemachineVirtualCameraBase * vcam, CinemachineCore_Stage__Enum stage, CameraState state, float deltaTime, MethodInfo * method)); +DO_APP_FUNC(0x00B69D90, void, CinemachineCameraOffset_PostPipelineStageCallback, (CinemachineCameraOffset * __this, CinemachineVirtualCameraBase * vcam, CinemachineCore_Stage__Enum stage, CameraState * state, float deltaTime, MethodInfo * method)); DO_APP_FUNC(0x00B6A1A0, void, CinemachineCameraOffset__ctor, (CinemachineCameraOffset * __this, MethodInfo * method)); DO_APP_FUNC(0x00B6A230, void, CinemachineRecomposer_Reset, (CinemachineRecomposer * __this, MethodInfo * method)); DO_APP_FUNC(0x00B6A260, void, CinemachineRecomposer_OnValidate, (CinemachineRecomposer * __this, MethodInfo * method)); -DO_APP_FUNC(0x00B6A2C0, void, CinemachineRecomposer_PrePipelineMutateCameraStateCallback, (CinemachineRecomposer * __this, CinemachineVirtualCameraBase * vcam, CameraState curState, float deltaTime, MethodInfo * method)); -DO_APP_FUNC(0x00B6A2E0, void, CinemachineRecomposer_PostPipelineStageCallback, (CinemachineRecomposer * __this, CinemachineVirtualCameraBase * vcam, CinemachineCore_Stage__Enum stage, CameraState state, float deltaTime, MethodInfo * method)); +DO_APP_FUNC(0x00B6A2C0, void, CinemachineRecomposer_PrePipelineMutateCameraStateCallback, (CinemachineRecomposer * __this, CinemachineVirtualCameraBase * vcam, CameraState * curState, float deltaTime, MethodInfo * method)); +DO_APP_FUNC(0x00B6A2E0, void, CinemachineRecomposer_PostPipelineStageCallback, (CinemachineRecomposer * __this, CinemachineVirtualCameraBase * vcam, CinemachineCore_Stage__Enum stage, CameraState * state, float deltaTime, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, CinemachineRecomposer__ctor, (CinemachineRecomposer * __this, MethodInfo * method)); DO_APP_FUNC(0x00B6A8A0, void, CinemachineTouchInputMapper_Start, (CinemachineTouchInputMapper * __this, MethodInfo * method)); DO_APP_FUNC(0x00B6A9C0, float, CinemachineTouchInputMapper_GetInputAxis, (CinemachineTouchInputMapper * __this, String * axisName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCE490, CinemachineTouchInputMapper_GetInputAxis__MethodInfo); DO_APP_FUNC(0x00B6AB40, void, CinemachineTouchInputMapper__ctor, (CinemachineTouchInputMapper * __this, MethodInfo * method)); DO_APP_FUNC(0x00B6AC90, void, CinemachineMixer_OnPlayableDestroy, (CinemachineMixer * __this, Playable playable, MethodInfo * method)); DO_APP_FUNC(0x006D87F0, void, CinemachineMixer_PrepareFrame, (CinemachineMixer * __this, Playable playable, FrameData info, MethodInfo * method)); @@ -93079,9 +104686,10 @@ DO_APP_FUNC(0x00B6C5E0, void, Cinemachine3rdPersonAim_OnValidate, (Cinemachine3r DO_APP_FUNC(0x00B6C600, void, Cinemachine3rdPersonAim_Reset, (Cinemachine3rdPersonAim * __this, MethodInfo * method)); DO_APP_FUNC(0x00B6C710, bool, Cinemachine3rdPersonAim_OnTransitionFromCamera, (Cinemachine3rdPersonAim * __this, ICinemachineCamera * fromCam, Vector3 worldUp, float deltaTime, MethodInfo * method)); DO_APP_FUNC(0x00B6C890, void, Cinemachine3rdPersonAim_DrawReticle, (Cinemachine3rdPersonAim * __this, CinemachineBrain * brain, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCE398, Cinemachine3rdPersonAim_DrawReticle__MethodInfo); DO_APP_FUNC(0x00B6CC80, Vector3, Cinemachine3rdPersonAim_ComputeLookAtPoint, (Cinemachine3rdPersonAim * __this, Vector3 camPos, Transform * player, MethodInfo * method)); DO_APP_FUNC(0x00B6D2C0, Vector3, Cinemachine3rdPersonAim_ComputeAimTarget, (Cinemachine3rdPersonAim * __this, Vector3 cameraLookAt, Transform * player, MethodInfo * method)); -DO_APP_FUNC(0x00B6D550, void, Cinemachine3rdPersonAim_PostPipelineStageCallback, (Cinemachine3rdPersonAim * __this, CinemachineVirtualCameraBase * vcam, CinemachineCore_Stage__Enum stage, CameraState state, float deltaTime, MethodInfo * method)); +DO_APP_FUNC(0x00B6D550, void, Cinemachine3rdPersonAim_PostPipelineStageCallback, (Cinemachine3rdPersonAim * __this, CinemachineVirtualCameraBase * vcam, CinemachineCore_Stage__Enum stage, CameraState * state, float deltaTime, MethodInfo * method)); DO_APP_FUNC(0x00B6D8D0, void, Cinemachine3rdPersonAim__ctor, (Cinemachine3rdPersonAim * __this, MethodInfo * method)); DO_APP_FUNC(0x00B6D9A0, String *, CinemachineBlendListCamera_get_Description, (CinemachineBlendListCamera * __this, MethodInfo * method)); DO_APP_FUNC(0x00B6DAE0, void, CinemachineBlendListCamera_Reset, (CinemachineBlendListCamera * __this, MethodInfo * method)); @@ -93101,6 +104709,7 @@ DO_APP_FUNC(0x00B6EBD0, void, CinemachineBlendListCamera_OnEnable, (CinemachineB DO_APP_FUNC(0x00B6EF60, void, CinemachineBlendListCamera_OnDisable, (CinemachineBlendListCamera * __this, MethodInfo * method)); DO_APP_FUNC(0x00B6F0F0, void, CinemachineBlendListCamera_OnTransformChildrenChanged, (CinemachineBlendListCamera * __this, MethodInfo * method)); DO_APP_FUNC(0x00B6F100, void, CinemachineBlendListCamera_OnGuiHandler, (CinemachineBlendListCamera * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCE360, CinemachineBlendListCamera_OnGuiHandler__MethodInfo); DO_APP_FUNC(0x00B6F270, CinemachineVirtualCameraBase__Array *, CinemachineBlendListCamera_get_ChildCameras, (CinemachineBlendListCamera * __this, MethodInfo * method)); DO_APP_FUNC(0x00B6F290, bool, CinemachineBlendListCamera_get_IsBlending, (CinemachineBlendListCamera * __this, MethodInfo * method)); DO_APP_FUNC(0x00B6F2A0, void, CinemachineBlendListCamera_InvalidateListOfChildren, (CinemachineBlendListCamera * __this, MethodInfo * method)); @@ -93116,9 +104725,12 @@ DO_APP_FUNC(0x00B70460, Vector3, CinemachineBrain_get_DefaultWorldUp, (Cinemachi DO_APP_FUNC(0x00B70630, void, CinemachineBrain_OnEnable, (CinemachineBrain * __this, MethodInfo * method)); DO_APP_FUNC(0x00B70C60, void, CinemachineBrain_OnDisable, (CinemachineBrain * __this, MethodInfo * method)); DO_APP_FUNC(0x00B70F80, void, CinemachineBrain_OnSceneLoaded, (CinemachineBrain * __this, Scene scene, LoadSceneMode__Enum mode, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCE2F0, CinemachineBrain_OnSceneLoaded__MethodInfo); DO_APP_FUNC(0x00B71020, void, CinemachineBrain_OnSceneUnloaded, (CinemachineBrain * __this, Scene scene, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCE2E8, CinemachineBrain_OnSceneUnloaded__MethodInfo); DO_APP_FUNC(0x00B710C0, void, CinemachineBrain_Start, (CinemachineBrain * __this, MethodInfo * method)); DO_APP_FUNC(0x00B710E0, void, CinemachineBrain_OnGuiHandler, (CinemachineBrain * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCE308, CinemachineBrain_OnGuiHandler__MethodInfo); DO_APP_FUNC(0x00B71620, IEnumerator *, CinemachineBrain_AfterPhysics, (CinemachineBrain * __this, MethodInfo * method)); DO_APP_FUNC(0x00B716C0, void, CinemachineBrain_LateUpdate, (CinemachineBrain * __this, MethodInfo * method)); DO_APP_FUNC(0x00B716D0, void, CinemachineBrain_ManualUpdate, (CinemachineBrain * __this, MethodInfo * method)); @@ -93134,13 +104746,13 @@ DO_APP_FUNC(0x00B72560, int32_t, CinemachineBrain_SetCameraOverride, (Cinemachin DO_APP_FUNC(0x00B72AF0, void, CinemachineBrain_ReleaseCameraOverride, (CinemachineBrain * __this, int32_t overrideId, MethodInfo * method)); DO_APP_FUNC(0x00B72BD0, void, CinemachineBrain_ProcessActiveCamera, (CinemachineBrain * __this, float deltaTime, MethodInfo * method)); DO_APP_FUNC(0x00B733B0, void, CinemachineBrain_UpdateFrame0, (CinemachineBrain * __this, float deltaTime, MethodInfo * method)); -DO_APP_FUNC(0x00B73C40, void, CinemachineBrain_ComputeCurrentBlend, (CinemachineBrain * __this, CinemachineBlend * outputBlend, int32_t numTopLayersToExclude, MethodInfo * method)); +DO_APP_FUNC(0x00B73C40, void, CinemachineBrain_ComputeCurrentBlend, (CinemachineBrain * __this, CinemachineBlend * * outputBlend, int32_t numTopLayersToExclude, MethodInfo * method)); DO_APP_FUNC(0x00B74230, bool, CinemachineBrain_IsLive, (CinemachineBrain * __this, ICinemachineCamera * vcam, bool dominantChildOnly, MethodInfo * method)); DO_APP_FUNC(0x00B74410, CameraState, CinemachineBrain_get_CurrentCameraState, (CinemachineBrain * __this, MethodInfo * method)); DO_APP_FUNC(0x00B744B0, void, CinemachineBrain_set_CurrentCameraState, (CinemachineBrain * __this, CameraState value, MethodInfo * method)); DO_APP_FUNC(0x00B745A0, ICinemachineCamera *, CinemachineBrain_TopCameraFromPriorityQueue, (CinemachineBrain * __this, MethodInfo * method)); DO_APP_FUNC(0x00B74960, CinemachineBlendDefinition, CinemachineBrain_LookupBlend, (CinemachineBrain * __this, ICinemachineCamera * fromKey, ICinemachineCamera * toKey, MethodInfo * method)); -DO_APP_FUNC(0x00B74BF0, void, CinemachineBrain_PushStateToUnityCamera, (CinemachineBrain * __this, CameraState state, MethodInfo * method)); +DO_APP_FUNC(0x00B74BF0, void, CinemachineBrain_PushStateToUnityCamera, (CinemachineBrain * __this, CameraState * state, MethodInfo * method)); DO_APP_FUNC(0x00B75340, void, CinemachineBrain__ctor, (CinemachineBrain * __this, MethodInfo * method)); DO_APP_FUNC(0x00B757C0, void, CinemachineBrain__cctor, (MethodInfo * method)); DO_APP_FUNC(0x00B75870, void, CinemachineBrain_BrainEvent__ctor, (CinemachineBrain_BrainEvent * __this, MethodInfo * method)); @@ -93152,6 +104764,7 @@ DO_APP_FUNC(0x003AE050, void, CinemachineBrain_AfterPhysics_d_33_System_IDisposa DO_APP_FUNC(0x00B75C00, bool, CinemachineBrain_AfterPhysics_d_33_MoveNext, (CinemachineBrain_AfterPhysics_d_33 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, CinemachineBrain_AfterPhysics_d_33_System_Collections_Generic_IEnumerator_System_Object__get_Current, (CinemachineBrain_AfterPhysics_d_33 * __this, MethodInfo * method)); DO_APP_FUNC(0x00B75D70, void, CinemachineBrain_AfterPhysics_d_33_System_Collections_IEnumerator_Reset, (CinemachineBrain_AfterPhysics_d_33 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCE248, CinemachineBrain_AfterPhysics_d_33_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, CinemachineBrain_AfterPhysics_d_33_System_Collections_IEnumerator_get_Current, (CinemachineBrain_AfterPhysics_d_33 * __this, MethodInfo * method)); DO_APP_FUNC(0x00B75DC0, String *, CinemachineClearShot_get_Description, (CinemachineClearShot * __this, MethodInfo * method)); DO_APP_FUNC(0x009A2B70, ICinemachineCamera *, CinemachineClearShot_get_LiveChild, (CinemachineClearShot * __this, MethodInfo * method)); @@ -93169,6 +104782,7 @@ DO_APP_FUNC(0x00B76980, void, CinemachineClearShot_OnEnable, (CinemachineClearSh DO_APP_FUNC(0x00B76CC0, void, CinemachineClearShot_OnDisable, (CinemachineClearShot * __this, MethodInfo * method)); DO_APP_FUNC(0x00B76E50, void, CinemachineClearShot_OnTransformChildrenChanged, (CinemachineClearShot * __this, MethodInfo * method)); DO_APP_FUNC(0x00B76E70, void, CinemachineClearShot_OnGuiHandler, (CinemachineClearShot * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCE240, CinemachineClearShot_OnGuiHandler__MethodInfo); DO_APP_FUNC(0x00B76FE0, bool, CinemachineClearShot_get_IsBlending, (CinemachineClearShot * __this, MethodInfo * method)); DO_APP_FUNC(0x00B76FF0, CinemachineVirtualCameraBase__Array *, CinemachineClearShot_get_ChildCameras, (CinemachineClearShot * __this, MethodInfo * method)); DO_APP_FUNC(0x00B77010, void, CinemachineClearShot_InvalidateListOfChildren, (CinemachineClearShot * __this, MethodInfo * method)); @@ -93182,6 +104796,7 @@ DO_APP_FUNC(0x00B78BE0, void, CinemachineClearShot__ctor, (CinemachineClearShot DO_APP_FUNC(0x00B78E70, void, CinemachineClearShot_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CinemachineClearShot_c__ctor, (CinemachineClearShot_c * __this, MethodInfo * method)); DO_APP_FUNC(0x00B78F20, int32_t, CinemachineClearShot_c__Randomize_b__47_0, (CinemachineClearShot_c * __this, CinemachineClearShot_Pair p1, CinemachineClearShot_Pair p2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCE200, CinemachineClearShot_c__Randomize_b__47_0__MethodInfo); DO_APP_FUNC(0x00B78F40, bool, CinemachineCollider_IsTargetObscured, (CinemachineCollider * __this, ICinemachineCamera * vcam, MethodInfo * method)); DO_APP_FUNC(0x00B78FA0, bool, CinemachineCollider_CameraWasDisplaced, (CinemachineCollider * __this, ICinemachineCamera * vcam, MethodInfo * method)); DO_APP_FUNC(0x00B79010, float, CinemachineCollider_GetCameraDisplacementDistance, (CinemachineCollider * __this, ICinemachineCamera * vcam, MethodInfo * method)); @@ -93189,11 +104804,11 @@ DO_APP_FUNC(0x00B79080, void, CinemachineCollider_OnValidate, (CinemachineCollid DO_APP_FUNC(0x00B790D0, void, CinemachineCollider_OnDestroy, (CinemachineCollider * __this, MethodInfo * method)); DO_APP_FUNC(0x00B79140, List_1_List_1_UnityEngine_Vector3_ *, CinemachineCollider_get_DebugPaths, (CinemachineCollider * __this, MethodInfo * method)); DO_APP_FUNC(0x00B79360, float, CinemachineCollider_GetMaxDampTime, (CinemachineCollider * __this, MethodInfo * method)); -DO_APP_FUNC(0x00B79380, void, CinemachineCollider_PostPipelineStageCallback, (CinemachineCollider * __this, CinemachineVirtualCameraBase * vcam, CinemachineCore_Stage__Enum stage, CameraState state, float deltaTime, MethodInfo * method)); -DO_APP_FUNC(0x00B7A200, Vector3, CinemachineCollider_PreserveLineOfSight, (CinemachineCollider * __this, CameraState state, CinemachineCollider_VcamExtraState * extra, MethodInfo * method)); -DO_APP_FUNC(0x00B7A770, Vector3, CinemachineCollider_PullCameraInFrontOfNearestObstacle, (CinemachineCollider * __this, Vector3 cameraPos, Vector3 lookAtPos, int32_t layerMask, RaycastHit hitInfo, MethodInfo * method)); -DO_APP_FUNC(0x00B7AB10, Vector3, CinemachineCollider_PushCameraBack, (CinemachineCollider * __this, Vector3 currentPos, Vector3 pushDir, RaycastHit obstacle, Vector3 lookAtPos, Plane startPlane, float targetDistance, int32_t iterations, CinemachineCollider_VcamExtraState * extra, MethodInfo * method)); -DO_APP_FUNC(0x00B7B6E0, bool, CinemachineCollider_GetWalkingDirection, (CinemachineCollider * __this, Vector3 pos, Vector3 pushDir, RaycastHit obstacle, Vector3 outDir, MethodInfo * method)); +DO_APP_FUNC(0x00B79380, void, CinemachineCollider_PostPipelineStageCallback, (CinemachineCollider * __this, CinemachineVirtualCameraBase * vcam, CinemachineCore_Stage__Enum stage, CameraState * state, float deltaTime, MethodInfo * method)); +DO_APP_FUNC(0x00B7A200, Vector3, CinemachineCollider_PreserveLineOfSight, (CinemachineCollider * __this, CameraState * state, CinemachineCollider_VcamExtraState * * extra, MethodInfo * method)); +DO_APP_FUNC(0x00B7A770, Vector3, CinemachineCollider_PullCameraInFrontOfNearestObstacle, (CinemachineCollider * __this, Vector3 cameraPos, Vector3 lookAtPos, int32_t layerMask, RaycastHit * hitInfo, MethodInfo * method)); +DO_APP_FUNC(0x00B7AB10, Vector3, CinemachineCollider_PushCameraBack, (CinemachineCollider * __this, Vector3 currentPos, Vector3 pushDir, RaycastHit obstacle, Vector3 lookAtPos, Plane startPlane, float targetDistance, int32_t iterations, CinemachineCollider_VcamExtraState * * extra, MethodInfo * method)); +DO_APP_FUNC(0x00B7B6E0, bool, CinemachineCollider_GetWalkingDirection, (CinemachineCollider * __this, Vector3 pos, Vector3 pushDir, RaycastHit obstacle, Vector3 * outDir, MethodInfo * method)); DO_APP_FUNC(0x00B7C050, float, CinemachineCollider_GetPushBackDistance, (CinemachineCollider * __this, Ray ray, Plane startPlane, float targetDistance, Vector3 lookAtPos, MethodInfo * method)); DO_APP_FUNC(0x00B7C1D0, float, CinemachineCollider_ClampRayToBounds, (Ray ray, float distance, Bounds bounds, MethodInfo * method)); DO_APP_FUNC(0x00B7D210, Vector3, CinemachineCollider_RespectCameraRadius, (CinemachineCollider * __this, Vector3 cameraPos, Vector3 lookAtPos, MethodInfo * method)); @@ -93212,25 +104827,25 @@ DO_APP_FUNC(0x00B7EF50, void, CinemachineConfiner_OnValidate, (CinemachineConfin DO_APP_FUNC(0x00B7EF60, void, CinemachineConfiner_ConnectToVcam, (CinemachineConfiner * __this, bool connect, MethodInfo * method)); DO_APP_FUNC(0x00B7EF70, bool, CinemachineConfiner_get_IsValid, (CinemachineConfiner * __this, MethodInfo * method)); DO_APP_FUNC(0x00B7F260, float, CinemachineConfiner_GetMaxDampTime, (CinemachineConfiner * __this, MethodInfo * method)); -DO_APP_FUNC(0x00B7F270, void, CinemachineConfiner_PostPipelineStageCallback, (CinemachineConfiner * __this, CinemachineVirtualCameraBase * vcam, CinemachineCore_Stage__Enum stage, CameraState state, float deltaTime, MethodInfo * method)); +DO_APP_FUNC(0x00B7F270, void, CinemachineConfiner_PostPipelineStageCallback, (CinemachineConfiner * __this, CinemachineVirtualCameraBase * vcam, CinemachineCore_Stage__Enum stage, CameraState * state, float deltaTime, MethodInfo * method)); DO_APP_FUNC(0x00B7F550, void, CinemachineConfiner_InvalidatePathCache, (CinemachineConfiner * __this, MethodInfo * method)); DO_APP_FUNC(0x00B7F600, bool, CinemachineConfiner_ValidatePathCache, (CinemachineConfiner * __this, MethodInfo * method)); DO_APP_FUNC(0x00B7FFA0, Vector3, CinemachineConfiner_ConfinePoint, (CinemachineConfiner * __this, Vector3 camPos, MethodInfo * method)); -DO_APP_FUNC(0x00B805F0, Vector3, CinemachineConfiner_ConfineScreenEdges, (CinemachineConfiner * __this, CameraState state, MethodInfo * method)); +DO_APP_FUNC(0x00B805F0, Vector3, CinemachineConfiner_ConfineScreenEdges, (CinemachineConfiner * __this, CameraState * state, MethodInfo * method)); DO_APP_FUNC(0x00B80E10, void, CinemachineConfiner__ctor, (CinemachineConfiner * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CinemachineConfiner_VcamExtraState__ctor, (CinemachineConfiner_VcamExtraState * __this, MethodInfo * method)); DO_APP_FUNC(0x00B80E60, void, CinemachineConfiner2D_InvalidateCache, (CinemachineConfiner2D * __this, MethodInfo * method)); DO_APP_FUNC(0x00B80E70, bool, CinemachineConfiner2D_ValidateCache, (CinemachineConfiner2D * __this, float cameraAspectRatio, MethodInfo * method)); -DO_APP_FUNC(0x00B80EB0, void, CinemachineConfiner2D_PostPipelineStageCallback, (CinemachineConfiner2D * __this, CinemachineVirtualCameraBase * vcam, CinemachineCore_Stage__Enum stage, CameraState state, float deltaTime, MethodInfo * method)); -DO_APP_FUNC(0x00B81720, float, CinemachineConfiner2D_CalculateHalfFrustumHeight, (CinemachineConfiner2D * __this, CameraState state, float cameraPosLocalZ, MethodInfo * method)); +DO_APP_FUNC(0x00B80EB0, void, CinemachineConfiner2D_PostPipelineStageCallback, (CinemachineConfiner2D * __this, CinemachineVirtualCameraBase * vcam, CinemachineCore_Stage__Enum stage, CameraState * state, float deltaTime, MethodInfo * method)); +DO_APP_FUNC(0x00B81720, float, CinemachineConfiner2D_CalculateHalfFrustumHeight, (CinemachineConfiner2D * __this, CameraState * state, float * cameraPosLocalZ, MethodInfo * method)); DO_APP_FUNC(0x00B817E0, void, CinemachineConfiner2D_OnValidate, (CinemachineConfiner2D * __this, MethodInfo * method)); DO_APP_FUNC(0x00B81800, void, CinemachineConfiner2D_Reset, (CinemachineConfiner2D * __this, MethodInfo * method)); DO_APP_FUNC(0x00B81810, void, CinemachineConfiner2D__ctor, (CinemachineConfiner2D * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CinemachineConfiner2D_VcamExtraState__ctor, (CinemachineConfiner2D_VcamExtraState * __this, MethodInfo * method)); -DO_APP_FUNC(0x00B81860, void, CinemachineConfiner2D_ShapeCache_Invalidate, (CinemachineConfiner2D_ShapeCache__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00B81A20, bool, CinemachineConfiner2D_ShapeCache_ValidateCache, (CinemachineConfiner2D_ShapeCache__Boxed * __this, Collider2D * boundingShape2D, float maxWindowSize, float aspectRatio, bool confinerStateChanged, MethodInfo * method)); -DO_APP_FUNC(0x00B825C0, bool, CinemachineConfiner2D_ShapeCache_IsValid, (CinemachineConfiner2D_ShapeCache__Boxed * __this, Collider2D * boundingShape2D, float aspectRatio, float maxOrthoSize, MethodInfo * method)); -DO_APP_FUNC(0x00B82950, void, CinemachineConfiner2D_ShapeCache_CalculateDeltaTransformationMatrix, (CinemachineConfiner2D_ShapeCache__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00B81860, void, CinemachineConfiner2D_ShapeCache_Invalidate, (CinemachineConfiner2D_ShapeCache * __this, MethodInfo * method)); +DO_APP_FUNC(0x00B81A20, bool, CinemachineConfiner2D_ShapeCache_ValidateCache, (CinemachineConfiner2D_ShapeCache * __this, Collider2D * boundingShape2D, float maxWindowSize, float aspectRatio, bool * confinerStateChanged, MethodInfo * method)); +DO_APP_FUNC(0x00B825C0, bool, CinemachineConfiner2D_ShapeCache_IsValid, (CinemachineConfiner2D_ShapeCache * __this, Collider2D * * boundingShape2D, float * aspectRatio, float * maxOrthoSize, MethodInfo * method)); +DO_APP_FUNC(0x00B82950, void, CinemachineConfiner2D_ShapeCache_CalculateDeltaTransformationMatrix, (CinemachineConfiner2D_ShapeCache * __this, MethodInfo * method)); DO_APP_FUNC(0x00B82C10, void, CinemachineDollyCart_FixedUpdate, (CinemachineDollyCart * __this, MethodInfo * method)); DO_APP_FUNC(0x00B82CA0, void, CinemachineDollyCart_Update, (CinemachineDollyCart * __this, MethodInfo * method)); DO_APP_FUNC(0x00B82D70, void, CinemachineDollyCart_LateUpdate, (CinemachineDollyCart * __this, MethodInfo * method)); @@ -93245,7 +104860,7 @@ DO_APP_FUNC(0x00B832E0, void, CinemachineExternalCamera_InternalUpdateCameraStat DO_APP_FUNC(0x00B83FB0, void, CinemachineExternalCamera__ctor, (CinemachineExternalCamera * __this, MethodInfo * method)); DO_APP_FUNC(0x00B84180, void, CinemachineFollowZoom_OnValidate, (CinemachineFollowZoom * __this, MethodInfo * method)); DO_APP_FUNC(0x003CD2B0, float, CinemachineFollowZoom_GetMaxDampTime, (CinemachineFollowZoom * __this, MethodInfo * method)); -DO_APP_FUNC(0x00B841E0, void, CinemachineFollowZoom_PostPipelineStageCallback, (CinemachineFollowZoom * __this, CinemachineVirtualCameraBase * vcam, CinemachineCore_Stage__Enum stage, CameraState state, float deltaTime, MethodInfo * method)); +DO_APP_FUNC(0x00B841E0, void, CinemachineFollowZoom_PostPipelineStageCallback, (CinemachineFollowZoom * __this, CinemachineVirtualCameraBase * vcam, CinemachineCore_Stage__Enum stage, CameraState * state, float deltaTime, MethodInfo * method)); DO_APP_FUNC(0x00B845C0, void, CinemachineFollowZoom__ctor, (CinemachineFollowZoom * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CinemachineFollowZoom_VcamExtraState__ctor, (CinemachineFollowZoom_VcamExtraState * __this, MethodInfo * method)); DO_APP_FUNC(0x00B84620, void, CinemachineFreeLook_OnValidate, (CinemachineFreeLook * __this, MethodInfo * method)); @@ -93276,6 +104891,7 @@ DO_APP_FUNC(0x00B87AA0, CinemachineVirtualCamera__Array *, CinemachineFreeLook_C DO_APP_FUNC(0x00B881C0, void, CinemachineFreeLook_UpdateRigCache, (CinemachineFreeLook * __this, MethodInfo * method)); DO_APP_FUNC(0x00B88520, int32_t, CinemachineFreeLook_LocateExistingRigs, (CinemachineFreeLook * __this, String__Array * rigNames, bool forceOrbital, MethodInfo * method)); DO_APP_FUNC(0x00B88FD0, float, CinemachineFreeLook_UpdateXAxisHeading, (CinemachineFreeLook * __this, CinemachineOrbitalTransposer * orbital, float deltaTime, Vector3 up, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCE0B8, CinemachineFreeLook_UpdateXAxisHeading__MethodInfo); DO_APP_FUNC(0x00B892B0, void, CinemachineFreeLook_PushSettingsToRigs, (CinemachineFreeLook * __this, MethodInfo * method)); DO_APP_FUNC(0x00B89BE0, float, CinemachineFreeLook_GetYAxisValue, (CinemachineFreeLook * __this, MethodInfo * method)); DO_APP_FUNC(0x00B89C10, CameraState, CinemachineFreeLook_CalculateNewState, (CinemachineFreeLook * __this, Vector3 worldUp, float deltaTime, MethodInfo * method)); @@ -93283,7 +104899,7 @@ DO_APP_FUNC(0x00B89EC0, Vector3, CinemachineFreeLook_GetLocalPositionForCameraFr DO_APP_FUNC(0x00B8A170, void, CinemachineFreeLook_UpdateCachedSpline, (CinemachineFreeLook * __this, MethodInfo * method)); DO_APP_FUNC(0x00B8A820, void, CinemachineFreeLook_OnBeforeSerialize, (CinemachineFreeLook * __this, MethodInfo * method)); DO_APP_FUNC(0x00B8A900, void, CinemachineFreeLook__ctor, (CinemachineFreeLook * __this, MethodInfo * method)); -DO_APP_FUNC(0x003CAF50, void, CinemachineFreeLook_Orbit__ctor, (CinemachineFreeLook_Orbit__Boxed * __this, float h, float r, MethodInfo * method)); +DO_APP_FUNC(0x003CAF50, void, CinemachineFreeLook_Orbit__ctor, (CinemachineFreeLook_Orbit * __this, float h, float r, MethodInfo * method)); DO_APP_FUNC(0x00B8AFD0, void, CinemachineFreeLook_CreateRigDelegate__ctor, (CinemachineFreeLook_CreateRigDelegate * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EF9C0, CinemachineVirtualCamera *, CinemachineFreeLook_CreateRigDelegate_Invoke, (CinemachineFreeLook_CreateRigDelegate * __this, CinemachineFreeLook * vcam, String * name, CinemachineVirtualCamera * copyFrom, MethodInfo * method)); DO_APP_FUNC(0x00B8B190, IAsyncResult *, CinemachineFreeLook_CreateRigDelegate_BeginInvoke, (CinemachineFreeLook_CreateRigDelegate * __this, CinemachineFreeLook * vcam, String * name, CinemachineVirtualCamera * copyFrom, AsyncCallback * callback, Object * object, MethodInfo * method)); @@ -93320,7 +104936,7 @@ DO_APP_FUNC(0x00B8D210, float, CinemachinePath_get_MaxPos, (CinemachinePath * __ DO_APP_FUNC(0x00436BD0, bool, CinemachinePath_get_Looped, (CinemachinePath * __this, MethodInfo * method)); DO_APP_FUNC(0x00B8D250, void, CinemachinePath_Reset, (CinemachinePath * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, CinemachinePath_get_DistanceCacheSampleStepsPerSegment, (CinemachinePath * __this, MethodInfo * method)); -DO_APP_FUNC(0x00B8D420, float, CinemachinePath_GetBoundingIndices, (CinemachinePath * __this, float pos, int32_t indexA, int32_t indexB, MethodInfo * method)); +DO_APP_FUNC(0x00B8D420, float, CinemachinePath_GetBoundingIndices, (CinemachinePath * __this, float pos, int32_t * indexA, int32_t * indexB, MethodInfo * method)); DO_APP_FUNC(0x00B8D510, Vector3, CinemachinePath_EvaluatePosition, (CinemachinePath * __this, float pos, MethodInfo * method)); DO_APP_FUNC(0x00B8D980, Vector3, CinemachinePath_EvaluateTangent, (CinemachinePath * __this, float pos, MethodInfo * method)); DO_APP_FUNC(0x00B8DD40, Quaternion, CinemachinePath_EvaluateOrientation, (CinemachinePath * __this, float pos, MethodInfo * method)); @@ -93336,13 +104952,13 @@ DO_APP_FUNC(0x00B8E360, void, CinemachineSmoothPath_OnValidate, (CinemachineSmoo DO_APP_FUNC(0x00B8E410, void, CinemachineSmoothPath_Reset, (CinemachineSmoothPath * __this, MethodInfo * method)); DO_APP_FUNC(0x00B8E5D0, void, CinemachineSmoothPath_InvalidateDistanceCache, (CinemachineSmoothPath * __this, MethodInfo * method)); DO_APP_FUNC(0x00B8E720, void, CinemachineSmoothPath_UpdateControlPoints, (CinemachineSmoothPath * __this, MethodInfo * method)); -DO_APP_FUNC(0x00B8EA90, float, CinemachineSmoothPath_GetBoundingIndices, (CinemachineSmoothPath * __this, float pos, int32_t indexA, int32_t indexB, MethodInfo * method)); +DO_APP_FUNC(0x00B8EA90, float, CinemachineSmoothPath_GetBoundingIndices, (CinemachineSmoothPath * __this, float pos, int32_t * indexA, int32_t * indexB, MethodInfo * method)); DO_APP_FUNC(0x00B8EB70, Vector3, CinemachineSmoothPath_EvaluatePosition, (CinemachineSmoothPath * __this, float pos, MethodInfo * method)); DO_APP_FUNC(0x00B8EF80, Vector3, CinemachineSmoothPath_EvaluateTangent, (CinemachineSmoothPath * __this, float pos, MethodInfo * method)); DO_APP_FUNC(0x00B8F560, Quaternion, CinemachineSmoothPath_EvaluateOrientation, (CinemachineSmoothPath * __this, float pos, MethodInfo * method)); DO_APP_FUNC(0x00B8FC60, Quaternion, CinemachineSmoothPath_RollAroundForward, (CinemachineSmoothPath * __this, float angle, MethodInfo * method)); DO_APP_FUNC(0x00B8FCB0, void, CinemachineSmoothPath__ctor, (CinemachineSmoothPath * __this, MethodInfo * method)); -DO_APP_FUNC(0x00B901D0, Vector4, CinemachineSmoothPath_Waypoint_get_AsVector4, (CinemachineSmoothPath_Waypoint__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00B901D0, Vector4, CinemachineSmoothPath_Waypoint_get_AsVector4, (CinemachineSmoothPath_Waypoint * __this, MethodInfo * method)); DO_APP_FUNC(0x00B901F0, CinemachineSmoothPath_Waypoint, CinemachineSmoothPath_Waypoint_FromVector4, (Vector4 v, MethodInfo * method)); DO_APP_FUNC(0x00B90220, String *, CinemachineStateDrivenCamera_get_Description, (CinemachineStateDrivenCamera * __this, MethodInfo * method)); DO_APP_FUNC(0x005128C0, ICinemachineCamera *, CinemachineStateDrivenCamera_get_LiveChild, (CinemachineStateDrivenCamera * __this, MethodInfo * method)); @@ -93361,6 +104977,7 @@ DO_APP_FUNC(0x00B910E0, void, CinemachineStateDrivenCamera_OnEnable, (Cinemachin DO_APP_FUNC(0x00B91420, void, CinemachineStateDrivenCamera_OnDisable, (CinemachineStateDrivenCamera * __this, MethodInfo * method)); DO_APP_FUNC(0x00B915B0, void, CinemachineStateDrivenCamera_OnTransformChildrenChanged, (CinemachineStateDrivenCamera * __this, MethodInfo * method)); DO_APP_FUNC(0x00B915C0, void, CinemachineStateDrivenCamera_OnGuiHandler, (CinemachineStateDrivenCamera * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEF78, CinemachineStateDrivenCamera_OnGuiHandler__MethodInfo); DO_APP_FUNC(0x00B91730, CinemachineVirtualCameraBase__Array *, CinemachineStateDrivenCamera_get_ChildCameras, (CinemachineStateDrivenCamera * __this, MethodInfo * method)); DO_APP_FUNC(0x00B91750, bool, CinemachineStateDrivenCamera_get_IsBlending, (CinemachineStateDrivenCamera * __this, MethodInfo * method)); DO_APP_FUNC(0x00B91760, int32_t, CinemachineStateDrivenCamera_CreateFakeHash, (int32_t parentHash, AnimationClip * clip, MethodInfo * method)); @@ -93372,17 +104989,19 @@ DO_APP_FUNC(0x00B92870, CinemachineVirtualCameraBase *, CinemachineStateDrivenCa DO_APP_FUNC(0x00B93280, int32_t, CinemachineStateDrivenCamera_GetClipHash, (CinemachineStateDrivenCamera * __this, int32_t hash, List_1_UnityEngine_AnimatorClipInfo_ * clips, MethodInfo * method)); DO_APP_FUNC(0x00B93410, CinemachineBlendDefinition, CinemachineStateDrivenCamera_LookupBlend, (CinemachineStateDrivenCamera * __this, ICinemachineCamera * fromKey, ICinemachineCamera * toKey, MethodInfo * method)); DO_APP_FUNC(0x00B936B0, void, CinemachineStateDrivenCamera__ctor, (CinemachineStateDrivenCamera * __this, MethodInfo * method)); -DO_APP_FUNC(0x00977B80, void, CinemachineStateDrivenCamera_ParentHash__ctor, (CinemachineStateDrivenCamera_ParentHash__Boxed * __this, int32_t h, int32_t p, MethodInfo * method)); -DO_APP_FUNC(0x00B93AC0, void, CinemachineStoryboard_PostPipelineStageCallback, (CinemachineStoryboard * __this, CinemachineVirtualCameraBase * vcam, CinemachineCore_Stage__Enum stage, CameraState state, float deltaTime, MethodInfo * method)); +DO_APP_FUNC(0x00977B80, void, CinemachineStateDrivenCamera_ParentHash__ctor, (CinemachineStateDrivenCamera_ParentHash * __this, int32_t h, int32_t p, MethodInfo * method)); +DO_APP_FUNC(0x00B93AC0, void, CinemachineStoryboard_PostPipelineStageCallback, (CinemachineStoryboard * __this, CinemachineVirtualCameraBase * vcam, CinemachineCore_Stage__Enum stage, CameraState * state, float deltaTime, MethodInfo * method)); DO_APP_FUNC(0x00B93D40, void, CinemachineStoryboard_UpdateRenderCanvas, (CinemachineStoryboard * __this, MethodInfo * method)); DO_APP_FUNC(0x00B93FC0, void, CinemachineStoryboard_ConnectToVcam, (CinemachineStoryboard * __this, bool connect, MethodInfo * method)); DO_APP_FUNC(0x00B94190, String *, CinemachineStoryboard_get_CanvasName, (CinemachineStoryboard * __this, MethodInfo * method)); DO_APP_FUNC(0x00B942C0, void, CinemachineStoryboard_CameraUpdatedCallback, (CinemachineStoryboard * __this, CinemachineBrain * brain, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEDF0, CinemachineStoryboard_CameraUpdatedCallback__MethodInfo); DO_APP_FUNC(0x00B946D0, CinemachineStoryboard_CanvasInfo *, CinemachineStoryboard_LocateMyCanvas, (CinemachineStoryboard * __this, CinemachineBrain * parent, bool createIfNotFound, MethodInfo * method)); DO_APP_FUNC(0x00B951B0, void, CinemachineStoryboard_CreateCanvas, (CinemachineStoryboard * __this, CinemachineStoryboard_CanvasInfo * ci, MethodInfo * method)); DO_APP_FUNC(0x00B95C20, void, CinemachineStoryboard_DestroyCanvas, (CinemachineStoryboard * __this, MethodInfo * method)); DO_APP_FUNC(0x00B95FD0, void, CinemachineStoryboard_PlaceImage, (CinemachineStoryboard * __this, CinemachineStoryboard_CanvasInfo * ci, float alpha, MethodInfo * method)); DO_APP_FUNC(0x00B96CD0, void, CinemachineStoryboard_StaticBlendingHandler, (CinemachineBrain * brain, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCECA8, CinemachineStoryboard_StaticBlendingHandler__MethodInfo); DO_APP_FUNC(0x00B97100, void, CinemachineStoryboard_InitializeModule, (MethodInfo * method)); DO_APP_FUNC(0x00B97270, void, CinemachineStoryboard__ctor, (CinemachineStoryboard * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CinemachineStoryboard_CanvasInfo__ctor, (CinemachineStoryboard_CanvasInfo * __this, MethodInfo * method)); @@ -93399,14 +105018,14 @@ DO_APP_FUNC(0x00B97D90, Bounds, CinemachineTargetGroup_GetViewSpaceBoundingBox, DO_APP_FUNC(0x00B98230, BoundingSphere, CinemachineTargetGroup_WeightedMemberBounds, (CinemachineTargetGroup_Target t, Vector3 avgPos, float maxWeight, MethodInfo * method)); DO_APP_FUNC(0x00B98450, void, CinemachineTargetGroup_DoUpdate, (CinemachineTargetGroup * __this, MethodInfo * method)); DO_APP_FUNC(0x00B98710, BoundingSphere, CinemachineTargetGroup_CalculateBoundingSphere, (CinemachineTargetGroup * __this, float maxWeight, MethodInfo * method)); -DO_APP_FUNC(0x00B98B70, Vector3, CinemachineTargetGroup_CalculateAveragePosition, (CinemachineTargetGroup * __this, float maxWeight, MethodInfo * method)); +DO_APP_FUNC(0x00B98B70, Vector3, CinemachineTargetGroup_CalculateAveragePosition, (CinemachineTargetGroup * __this, float * maxWeight, MethodInfo * method)); DO_APP_FUNC(0x00B98F50, Quaternion, CinemachineTargetGroup_CalculateAverageOrientation, (CinemachineTargetGroup * __this, MethodInfo * method)); DO_APP_FUNC(0x00B99520, Bounds, CinemachineTargetGroup_CalculateBoundingBox, (CinemachineTargetGroup * __this, Vector3 avgPos, float maxWeight, MethodInfo * method)); DO_APP_FUNC(0x00B998A0, void, CinemachineTargetGroup_OnValidate, (CinemachineTargetGroup * __this, MethodInfo * method)); DO_APP_FUNC(0x00B99950, void, CinemachineTargetGroup_FixedUpdate, (CinemachineTargetGroup * __this, MethodInfo * method)); DO_APP_FUNC(0x00B99960, void, CinemachineTargetGroup_Update, (CinemachineTargetGroup * __this, MethodInfo * method)); DO_APP_FUNC(0x00B999D0, void, CinemachineTargetGroup_LateUpdate, (CinemachineTargetGroup * __this, MethodInfo * method)); -DO_APP_FUNC(0x00B999E0, void, CinemachineTargetGroup_GetViewSpaceAngularBounds, (CinemachineTargetGroup * __this, Matrix4x4 observer, Vector2 minAngles, Vector2 maxAngles, Vector2 zRange, MethodInfo * method)); +DO_APP_FUNC(0x00B999E0, void, CinemachineTargetGroup_GetViewSpaceAngularBounds, (CinemachineTargetGroup * __this, Matrix4x4 observer, Vector2 * minAngles, Vector2 * maxAngles, Vector2 * zRange, MethodInfo * method)); DO_APP_FUNC(0x00B9A400, void, CinemachineTargetGroup__ctor, (CinemachineTargetGroup * __this, MethodInfo * method)); DO_APP_FUNC(0x00B9A4E0, CameraState, CinemachineVirtualCamera_get_State, (CinemachineVirtualCamera * __this, MethodInfo * method)); DO_APP_FUNC(0x00B6DD20, Transform *, CinemachineVirtualCamera_get_LookAt, (CinemachineVirtualCamera * __this, MethodInfo * method)); @@ -93447,24 +105066,26 @@ DO_APP_FUNC(0x003BA270, void, CinemachineVirtualCamera_DestroyPipelineDelegate_E DO_APP_FUNC(0x00B9EFD0, void, CinemachineVirtualCamera_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CinemachineVirtualCamera_c__ctor, (CinemachineVirtualCamera_c * __this, MethodInfo * method)); DO_APP_FUNC(0x00B9F080, int32_t, CinemachineVirtualCamera_c__UpdateComponentPipeline_b__38_0, (CinemachineVirtualCamera_c * __this, CinemachineComponentBase * c1, CinemachineComponentBase * c2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEBB0, CinemachineVirtualCamera_c__UpdateComponentPipeline_b__38_0__MethodInfo); DO_APP_FUNC(0x00B9F0E0, bool, CinemachineVirtualCamera_c__RequiresUserInput_b__47_0, (CinemachineVirtualCamera_c * __this, CinemachineComponentBase * c, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEB40, CinemachineVirtualCamera_c__RequiresUserInput_b__47_0__MethodInfo); DO_APP_FUNC(0x00B9F1F0, void, Cinemachine3rdPersonFollow_OnValidate, (Cinemachine3rdPersonFollow * __this, MethodInfo * method)); DO_APP_FUNC(0x00B9F270, void, Cinemachine3rdPersonFollow_Reset, (Cinemachine3rdPersonFollow * __this, MethodInfo * method)); DO_APP_FUNC(0x00B9F2E0, void, Cinemachine3rdPersonFollow_OnDestroy, (Cinemachine3rdPersonFollow * __this, MethodInfo * method)); DO_APP_FUNC(0x00B9F330, bool, Cinemachine3rdPersonFollow_get_IsValid, (Cinemachine3rdPersonFollow * __this, MethodInfo * method)); DO_APP_FUNC(0x003CB690, CinemachineCore_Stage__Enum, Cinemachine3rdPersonFollow_get_Stage, (Cinemachine3rdPersonFollow * __this, MethodInfo * method)); DO_APP_FUNC(0x00B9F480, float, Cinemachine3rdPersonFollow_GetMaxDampTime, (Cinemachine3rdPersonFollow * __this, MethodInfo * method)); -DO_APP_FUNC(0x00B9F4B0, void, Cinemachine3rdPersonFollow_MutateCameraState, (Cinemachine3rdPersonFollow * __this, CameraState curState, float deltaTime, MethodInfo * method)); +DO_APP_FUNC(0x00B9F4B0, void, Cinemachine3rdPersonFollow_MutateCameraState, (Cinemachine3rdPersonFollow * __this, CameraState * curState, float deltaTime, MethodInfo * method)); DO_APP_FUNC(0x00B9F540, void, Cinemachine3rdPersonFollow_OnTargetObjectWarped, (Cinemachine3rdPersonFollow * __this, Transform * target, Vector3 positionDelta, MethodInfo * method)); -DO_APP_FUNC(0x00B9F720, void, Cinemachine3rdPersonFollow_PositionCamera, (Cinemachine3rdPersonFollow * __this, CameraState curState, float deltaTime, MethodInfo * method)); -DO_APP_FUNC(0x00B9FD70, void, Cinemachine3rdPersonFollow_GetRigPositions, (Cinemachine3rdPersonFollow * __this, Vector3 root, Vector3 shoulder, Vector3 hand, MethodInfo * method)); +DO_APP_FUNC(0x00B9F720, void, Cinemachine3rdPersonFollow_PositionCamera, (Cinemachine3rdPersonFollow * __this, CameraState * curState, float deltaTime, MethodInfo * method)); +DO_APP_FUNC(0x00B9FD70, void, Cinemachine3rdPersonFollow_GetRigPositions, (Cinemachine3rdPersonFollow * __this, Vector3 * root, Vector3 * shoulder, Vector3 * hand, MethodInfo * method)); DO_APP_FUNC(0x00B9FF90, Quaternion, Cinemachine3rdPersonFollow_GetHeading, (Quaternion targetRot, Vector3 up, MethodInfo * method)); -DO_APP_FUNC(0x00BA0430, void, Cinemachine3rdPersonFollow_GetRawRigPositions, (Cinemachine3rdPersonFollow * __this, Vector3 root, Quaternion targetRot, Quaternion heading, Vector3 shoulder, Vector3 hand, MethodInfo * method)); -DO_APP_FUNC(0x00BA07B0, Vector3, Cinemachine3rdPersonFollow_ResolveCollisions, (Cinemachine3rdPersonFollow * __this, Vector3 root, Vector3 tip, float deltaTime, float cameraRadius, float collisionCorrection, MethodInfo * method)); +DO_APP_FUNC(0x00BA0430, void, Cinemachine3rdPersonFollow_GetRawRigPositions, (Cinemachine3rdPersonFollow * __this, Vector3 root, Quaternion targetRot, Quaternion heading, Vector3 * shoulder, Vector3 * hand, MethodInfo * method)); +DO_APP_FUNC(0x00BA07B0, Vector3, Cinemachine3rdPersonFollow_ResolveCollisions, (Cinemachine3rdPersonFollow * __this, Vector3 root, Vector3 tip, float deltaTime, float cameraRadius, float * collisionCorrection, MethodInfo * method)); DO_APP_FUNC(0x00BA0B50, void, Cinemachine3rdPersonFollow__ctor, (Cinemachine3rdPersonFollow * __this, MethodInfo * method)); DO_APP_FUNC(0x00BA0C20, bool, CinemachineBasicMultiChannelPerlin_get_IsValid, (CinemachineBasicMultiChannelPerlin * __this, MethodInfo * method)); DO_APP_FUNC(0x0072BFF0, CinemachineCore_Stage__Enum, CinemachineBasicMultiChannelPerlin_get_Stage, (CinemachineBasicMultiChannelPerlin * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BA0D70, void, CinemachineBasicMultiChannelPerlin_MutateCameraState, (CinemachineBasicMultiChannelPerlin * __this, CameraState curState, float deltaTime, MethodInfo * method)); +DO_APP_FUNC(0x00BA0D70, void, CinemachineBasicMultiChannelPerlin_MutateCameraState, (CinemachineBasicMultiChannelPerlin * __this, CameraState * curState, float deltaTime, MethodInfo * method)); DO_APP_FUNC(0x00BA19E0, void, CinemachineBasicMultiChannelPerlin_ReSeed, (CinemachineBasicMultiChannelPerlin * __this, MethodInfo * method)); DO_APP_FUNC(0x00BA1B10, void, CinemachineBasicMultiChannelPerlin_Initialize, (CinemachineBasicMultiChannelPerlin * __this, MethodInfo * method)); DO_APP_FUNC(0x00BA1D20, void, CinemachineBasicMultiChannelPerlin__ctor, (CinemachineBasicMultiChannelPerlin * __this, MethodInfo * method)); @@ -93476,17 +105097,17 @@ DO_APP_FUNC(0x00BA1F80, Vector3, CinemachineComposer_GetLookAtPointAndSetTracked DO_APP_FUNC(0x00BA22F0, void, CinemachineComposer_OnTargetObjectWarped, (CinemachineComposer * __this, Transform * target, Vector3 positionDelta, MethodInfo * method)); DO_APP_FUNC(0x00BA2550, void, CinemachineComposer_ForceCameraPosition, (CinemachineComposer * __this, Vector3 pos, Quaternion rot, MethodInfo * method)); DO_APP_FUNC(0x00BA2570, float, CinemachineComposer_GetMaxDampTime, (CinemachineComposer * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BA2580, void, CinemachineComposer_PrePipelineMutateCameraState, (CinemachineComposer * __this, CameraState curState, float deltaTime, MethodInfo * method)); -DO_APP_FUNC(0x00BA26C0, void, CinemachineComposer_MutateCameraState, (CinemachineComposer * __this, CameraState curState, float deltaTime, MethodInfo * method)); +DO_APP_FUNC(0x00BA2580, void, CinemachineComposer_PrePipelineMutateCameraState, (CinemachineComposer * __this, CameraState * curState, float deltaTime, MethodInfo * method)); +DO_APP_FUNC(0x00BA26C0, void, CinemachineComposer_MutateCameraState, (CinemachineComposer * __this, CameraState * curState, float deltaTime, MethodInfo * method)); DO_APP_FUNC(0x00BA34C0, Rect, CinemachineComposer_get_SoftGuideRect, (CinemachineComposer * __this, MethodInfo * method)); DO_APP_FUNC(0x00BA3510, void, CinemachineComposer_set_SoftGuideRect, (CinemachineComposer * __this, Rect value, MethodInfo * method)); DO_APP_FUNC(0x00BA35D0, Rect, CinemachineComposer_get_HardGuideRect, (CinemachineComposer * __this, MethodInfo * method)); DO_APP_FUNC(0x00BA3650, void, CinemachineComposer_set_HardGuideRect, (CinemachineComposer * __this, Rect value, MethodInfo * method)); -DO_APP_FUNC(0x00BA3790, void, CinemachineComposer_RotateToScreenBounds, (CinemachineComposer * __this, CameraState state, Rect screenRect, Vector3 trackedPoint, Quaternion rigOrientation, float fov, float fovH, float deltaTime, MethodInfo * method)); -DO_APP_FUNC(0x00BA3A70, bool, CinemachineComposer_ClampVerticalBounds, (CinemachineComposer * __this, Rect r, Vector3 dir, Vector3 up, float fov, MethodInfo * method)); +DO_APP_FUNC(0x00BA3790, void, CinemachineComposer_RotateToScreenBounds, (CinemachineComposer * __this, CameraState * state, Rect screenRect, Vector3 trackedPoint, Quaternion * rigOrientation, float fov, float fovH, float deltaTime, MethodInfo * method)); +DO_APP_FUNC(0x00BA3A70, bool, CinemachineComposer_ClampVerticalBounds, (CinemachineComposer * __this, Rect * r, Vector3 dir, Vector3 up, float fov, MethodInfo * method)); DO_APP_FUNC(0x00BA3D60, void, CinemachineComposer__ctor, (CinemachineComposer * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BA3FA0, void, CinemachineComposer_FovCache_UpdateCache, (CinemachineComposer_FovCache__Boxed * __this, LensSettings lens, Rect softGuide, Rect hardGuide, float targetDistance, MethodInfo * method)); -DO_APP_FUNC(0x00BA4360, Rect, CinemachineComposer_FovCache_ScreenToFOV, (CinemachineComposer_FovCache__Boxed * __this, Rect rScreen, float fov, float fovH, float aspect, MethodInfo * method)); +DO_APP_FUNC(0x00BA3FA0, void, CinemachineComposer_FovCache_UpdateCache, (CinemachineComposer_FovCache * __this, LensSettings lens, Rect softGuide, Rect hardGuide, float targetDistance, MethodInfo * method)); +DO_APP_FUNC(0x00BA4360, Rect, CinemachineComposer_FovCache_ScreenToFOV, (CinemachineComposer_FovCache * __this, Rect rScreen, float fov, float fovH, float aspect, MethodInfo * method)); DO_APP_FUNC(0x00BA4C40, Rect, CinemachineFramingTransposer_get_SoftGuideRect, (CinemachineFramingTransposer * __this, MethodInfo * method)); DO_APP_FUNC(0x00BA4C90, void, CinemachineFramingTransposer_set_SoftGuideRect, (CinemachineFramingTransposer * __this, Rect value, MethodInfo * method)); DO_APP_FUNC(0x00BA4D50, Rect, CinemachineFramingTransposer_get_HardGuideRect, (CinemachineFramingTransposer * __this, MethodInfo * method)); @@ -93500,17 +105121,17 @@ DO_APP_FUNC(0x00BA5170, void, CinemachineFramingTransposer_set_TrackedPoint, (Ci DO_APP_FUNC(0x00BA5190, void, CinemachineFramingTransposer_OnTargetObjectWarped, (CinemachineFramingTransposer * __this, Transform * target, Vector3 positionDelta, MethodInfo * method)); DO_APP_FUNC(0x00BA53C0, void, CinemachineFramingTransposer_ForceCameraPosition, (CinemachineFramingTransposer * __this, Vector3 pos, Quaternion rot, MethodInfo * method)); DO_APP_FUNC(0x00BA53F0, float, CinemachineFramingTransposer_GetMaxDampTime, (CinemachineFramingTransposer * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BA5410, bool, CinemachineFramingTransposer_OnTransitionFromCamera, (CinemachineFramingTransposer * __this, ICinemachineCamera * fromCam, Vector3 worldUp, float deltaTime, CinemachineVirtualCameraBase_TransitionParams transitionParams, MethodInfo * method)); +DO_APP_FUNC(0x00BA5410, bool, CinemachineFramingTransposer_OnTransitionFromCamera, (CinemachineFramingTransposer * __this, ICinemachineCamera * fromCam, Vector3 worldUp, float deltaTime, CinemachineVirtualCameraBase_TransitionParams * transitionParams, MethodInfo * method)); DO_APP_FUNC(0x00BA5640, Rect, CinemachineFramingTransposer_ScreenToOrtho, (CinemachineFramingTransposer * __this, Rect rScreen, float orthoSize, float aspect, MethodInfo * method)); DO_APP_FUNC(0x00BA5710, Vector3, CinemachineFramingTransposer_OrthoOffsetToScreenBounds, (CinemachineFramingTransposer * __this, Vector3 targetPos2D, Rect screenRect, MethodInfo * method)); DO_APP_FUNC(0x00BA5820, Bounds, CinemachineFramingTransposer_get_LastBounds, (CinemachineFramingTransposer * __this, MethodInfo * method)); DO_APP_FUNC(0x00BA5840, void, CinemachineFramingTransposer_set_LastBounds, (CinemachineFramingTransposer * __this, Bounds value, MethodInfo * method)); DO_APP_FUNC(0x00BA5860, Matrix4x4, CinemachineFramingTransposer_get_LastBoundsMatrix, (CinemachineFramingTransposer * __this, MethodInfo * method)); DO_APP_FUNC(0x00BA5890, void, CinemachineFramingTransposer_set_LastBoundsMatrix, (CinemachineFramingTransposer * __this, Matrix4x4 value, MethodInfo * method)); -DO_APP_FUNC(0x00BA58C0, void, CinemachineFramingTransposer_MutateCameraState, (CinemachineFramingTransposer * __this, CameraState curState, float deltaTime, MethodInfo * method)); +DO_APP_FUNC(0x00BA58C0, void, CinemachineFramingTransposer_MutateCameraState, (CinemachineFramingTransposer * __this, CameraState * curState, float deltaTime, MethodInfo * method)); DO_APP_FUNC(0x00BA7490, float, CinemachineFramingTransposer_GetTargetHeight, (CinemachineFramingTransposer * __this, Vector2 boundsSize, MethodInfo * method)); -DO_APP_FUNC(0x00BA7690, Vector3, CinemachineFramingTransposer_ComputeGroupBounds, (CinemachineFramingTransposer * __this, ICinemachineTargetGroup * group, CameraState curState, MethodInfo * method)); -DO_APP_FUNC(0x00BA7EC0, Bounds, CinemachineFramingTransposer_GetScreenSpaceGroupBoundingBox, (ICinemachineTargetGroup * group, Vector3 pos, Quaternion orientation, MethodInfo * method)); +DO_APP_FUNC(0x00BA7690, Vector3, CinemachineFramingTransposer_ComputeGroupBounds, (CinemachineFramingTransposer * __this, ICinemachineTargetGroup * group, CameraState * curState, MethodInfo * method)); +DO_APP_FUNC(0x00BA7EC0, Bounds, CinemachineFramingTransposer_GetScreenSpaceGroupBoundingBox, (ICinemachineTargetGroup * group, Vector3 * pos, Quaternion orientation, MethodInfo * method)); DO_APP_FUNC(0x00BA8710, void, CinemachineFramingTransposer__ctor, (CinemachineFramingTransposer * __this, MethodInfo * method)); DO_APP_FUNC(0x00BA88D0, void, CinemachineGroupComposer_OnValidate, (CinemachineGroupComposer * __this, MethodInfo * method)); DO_APP_FUNC(0x00BA89A0, Bounds, CinemachineGroupComposer_get_LastBounds, (CinemachineGroupComposer * __this, MethodInfo * method)); @@ -93518,34 +105139,34 @@ DO_APP_FUNC(0x00BA89C0, void, CinemachineGroupComposer_set_LastBounds, (Cinemach DO_APP_FUNC(0x00BA89E0, Matrix4x4, CinemachineGroupComposer_get_LastBoundsMatrix, (CinemachineGroupComposer * __this, MethodInfo * method)); DO_APP_FUNC(0x00BA8A10, void, CinemachineGroupComposer_set_LastBoundsMatrix, (CinemachineGroupComposer * __this, Matrix4x4 value, MethodInfo * method)); DO_APP_FUNC(0x00BA8A40, float, CinemachineGroupComposer_GetMaxDampTime, (CinemachineGroupComposer * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BA8A60, void, CinemachineGroupComposer_MutateCameraState, (CinemachineGroupComposer * __this, CameraState curState, float deltaTime, MethodInfo * method)); +DO_APP_FUNC(0x00BA8A60, void, CinemachineGroupComposer_MutateCameraState, (CinemachineGroupComposer * __this, CameraState * curState, float deltaTime, MethodInfo * method)); DO_APP_FUNC(0x00BA9DD0, float, CinemachineGroupComposer_GetTargetHeight, (CinemachineGroupComposer * __this, Vector2 boundsSize, MethodInfo * method)); -DO_APP_FUNC(0x00BAA010, Bounds, CinemachineGroupComposer_GetScreenSpaceGroupBoundingBox, (ICinemachineTargetGroup * group, Matrix4x4 observer, Vector3 newFwd, MethodInfo * method)); +DO_APP_FUNC(0x00BAA010, Bounds, CinemachineGroupComposer_GetScreenSpaceGroupBoundingBox, (ICinemachineTargetGroup * group, Matrix4x4 observer, Vector3 * newFwd, MethodInfo * method)); DO_APP_FUNC(0x00BAA580, void, CinemachineGroupComposer__ctor, (CinemachineGroupComposer * __this, MethodInfo * method)); DO_APP_FUNC(0x00BAA600, bool, CinemachineHardLockToTarget_get_IsValid, (CinemachineHardLockToTarget * __this, MethodInfo * method)); DO_APP_FUNC(0x003CB690, CinemachineCore_Stage__Enum, CinemachineHardLockToTarget_get_Stage, (CinemachineHardLockToTarget * __this, MethodInfo * method)); DO_APP_FUNC(0x003CC930, float, CinemachineHardLockToTarget_GetMaxDampTime, (CinemachineHardLockToTarget * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BAA750, void, CinemachineHardLockToTarget_MutateCameraState, (CinemachineHardLockToTarget * __this, CameraState curState, float deltaTime, MethodInfo * method)); +DO_APP_FUNC(0x00BAA750, void, CinemachineHardLockToTarget_MutateCameraState, (CinemachineHardLockToTarget * __this, CameraState * curState, float deltaTime, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, CinemachineHardLockToTarget__ctor, (CinemachineHardLockToTarget * __this, MethodInfo * method)); DO_APP_FUNC(0x00BAA920, bool, CinemachineHardLookAt_get_IsValid, (CinemachineHardLookAt * __this, MethodInfo * method)); DO_APP_FUNC(0x007205E0, CinemachineCore_Stage__Enum, CinemachineHardLookAt_get_Stage, (CinemachineHardLookAt * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BAAA70, void, CinemachineHardLookAt_MutateCameraState, (CinemachineHardLookAt * __this, CameraState curState, float deltaTime, MethodInfo * method)); +DO_APP_FUNC(0x00BAAA70, void, CinemachineHardLookAt_MutateCameraState, (CinemachineHardLookAt * __this, CameraState * curState, float deltaTime, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, CinemachineHardLookAt__ctor, (CinemachineHardLookAt * __this, MethodInfo * method)); DO_APP_FUNC(0x00BAAE80, void, CinemachineOrbitalTransposer_OnValidate, (CinemachineOrbitalTransposer * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BAB070, float, CinemachineOrbitalTransposer_UpdateHeading, (CinemachineOrbitalTransposer * __this, float deltaTime, Vector3 up, AxisState axis, MethodInfo * method)); -DO_APP_FUNC(0x00BAB0B0, float, CinemachineOrbitalTransposer_UpdateHeading_1, (CinemachineOrbitalTransposer * __this, float deltaTime, Vector3 up, AxisState axis, AxisState_Recentering recentering, bool isLive, MethodInfo * method)); +DO_APP_FUNC(0x00BAB070, float, CinemachineOrbitalTransposer_UpdateHeading, (CinemachineOrbitalTransposer * __this, float deltaTime, Vector3 up, AxisState * axis, MethodInfo * method)); +DO_APP_FUNC(0x00BAB0B0, float, CinemachineOrbitalTransposer_UpdateHeading_1, (CinemachineOrbitalTransposer * __this, float deltaTime, Vector3 up, AxisState * axis, AxisState_Recentering * recentering, bool isLive, MethodInfo * method)); DO_APP_FUNC(0x00BAB250, void, CinemachineOrbitalTransposer_OnEnable, (CinemachineOrbitalTransposer * __this, MethodInfo * method)); DO_APP_FUNC(0x00BAB4A0, void, CinemachineOrbitalTransposer_UpdateInputAxisProvider, (CinemachineOrbitalTransposer * __this, MethodInfo * method)); DO_APP_FUNC(0x00BAB650, void, CinemachineOrbitalTransposer_OnTargetObjectWarped, (CinemachineOrbitalTransposer * __this, Transform * target, Vector3 positionDelta, MethodInfo * method)); DO_APP_FUNC(0x00BAB8B0, void, CinemachineOrbitalTransposer_ForceCameraPosition, (CinemachineOrbitalTransposer * __this, Vector3 pos, Quaternion rot, MethodInfo * method)); -DO_APP_FUNC(0x00BABA10, bool, CinemachineOrbitalTransposer_OnTransitionFromCamera, (CinemachineOrbitalTransposer * __this, ICinemachineCamera * fromCam, Vector3 worldUp, float deltaTime, CinemachineVirtualCameraBase_TransitionParams transitionParams, MethodInfo * method)); +DO_APP_FUNC(0x00BABA10, bool, CinemachineOrbitalTransposer_OnTransitionFromCamera, (CinemachineOrbitalTransposer * __this, ICinemachineCamera * fromCam, Vector3 worldUp, float deltaTime, CinemachineVirtualCameraBase_TransitionParams * transitionParams, MethodInfo * method)); DO_APP_FUNC(0x00BABC40, float, CinemachineOrbitalTransposer_GetAxisClosestValue, (CinemachineOrbitalTransposer * __this, Vector3 cameraPos, Vector3 up, MethodInfo * method)); -DO_APP_FUNC(0x00BAC3E0, void, CinemachineOrbitalTransposer_MutateCameraState, (CinemachineOrbitalTransposer * __this, CameraState curState, float deltaTime, MethodInfo * method)); +DO_APP_FUNC(0x00BAC3E0, void, CinemachineOrbitalTransposer_MutateCameraState, (CinemachineOrbitalTransposer * __this, CameraState * curState, float deltaTime, MethodInfo * method)); DO_APP_FUNC(0x00BAD080, Vector3, CinemachineOrbitalTransposer_GetTargetCameraPosition, (CinemachineOrbitalTransposer * __this, Vector3 worldUp, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, CinemachineOrbitalTransposer_get_RequiresUserInput, (CinemachineOrbitalTransposer * __this, MethodInfo * method)); DO_APP_FUNC(0x00BAD400, float, CinemachineOrbitalTransposer_GetTargetHeading, (CinemachineOrbitalTransposer * __this, float currentHeading, Quaternion targetOrientation, MethodInfo * method)); DO_APP_FUNC(0x00BADD90, void, CinemachineOrbitalTransposer__ctor, (CinemachineOrbitalTransposer * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BAE2D0, void, CinemachineOrbitalTransposer_Heading__ctor, (CinemachineOrbitalTransposer_Heading__Boxed * __this, CinemachineOrbitalTransposer_Heading_HeadingDefinition__Enum def, int32_t filterStrength, float bias, MethodInfo * method)); +DO_APP_FUNC(0x00BAE2D0, void, CinemachineOrbitalTransposer_Heading__ctor, (CinemachineOrbitalTransposer_Heading * __this, CinemachineOrbitalTransposer_Heading_HeadingDefinition__Enum def, int32_t filterStrength, float bias, MethodInfo * method)); DO_APP_FUNC(0x00BAE2E0, void, CinemachineOrbitalTransposer_UpdateHeadingDelegate__ctor, (CinemachineOrbitalTransposer_UpdateHeadingDelegate * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x00BAE4A0, float, CinemachineOrbitalTransposer_UpdateHeadingDelegate_Invoke, (CinemachineOrbitalTransposer_UpdateHeadingDelegate * __this, CinemachineOrbitalTransposer * orbital, float deltaTime, Vector3 up, MethodInfo * method)); DO_APP_FUNC(0x00BAE4E0, IAsyncResult *, CinemachineOrbitalTransposer_UpdateHeadingDelegate_BeginInvoke, (CinemachineOrbitalTransposer_UpdateHeadingDelegate * __this, CinemachineOrbitalTransposer * orbital, float deltaTime, Vector3 up, AsyncCallback * callback, Object * object, MethodInfo * method)); @@ -93553,33 +105174,34 @@ DO_APP_FUNC(0x00BAE590, float, CinemachineOrbitalTransposer_UpdateHeadingDelegat DO_APP_FUNC(0x00BAE5D0, void, CinemachineOrbitalTransposer_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CinemachineOrbitalTransposer_c__ctor, (CinemachineOrbitalTransposer_c * __this, MethodInfo * method)); DO_APP_FUNC(0x00BAE680, float, CinemachineOrbitalTransposer_c___ctor_b__30_0, (CinemachineOrbitalTransposer_c * __this, CinemachineOrbitalTransposer * orbital, float deltaTime, Vector3 up, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEAA8, CinemachineOrbitalTransposer_c___ctor_b__30_0__MethodInfo); DO_APP_FUNC(0x00A92B10, bool, CinemachinePOV_get_IsValid, (CinemachinePOV * __this, MethodInfo * method)); DO_APP_FUNC(0x007205E0, CinemachineCore_Stage__Enum, CinemachinePOV_get_Stage, (CinemachinePOV * __this, MethodInfo * method)); DO_APP_FUNC(0x00BAE780, void, CinemachinePOV_OnValidate, (CinemachinePOV * __this, MethodInfo * method)); DO_APP_FUNC(0x00BAE890, void, CinemachinePOV_OnEnable, (CinemachinePOV * __this, MethodInfo * method)); DO_APP_FUNC(0x00BAE8A0, void, CinemachinePOV_UpdateInputAxisProvider, (CinemachinePOV * __this, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, CinemachinePOV_PrePipelineMutateCameraState, (CinemachinePOV * __this, CameraState state, float deltaTime, MethodInfo * method)); -DO_APP_FUNC(0x00BAEBA0, void, CinemachinePOV_MutateCameraState, (CinemachinePOV * __this, CameraState curState, float deltaTime, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, CinemachinePOV_PrePipelineMutateCameraState, (CinemachinePOV * __this, CameraState * state, float deltaTime, MethodInfo * method)); +DO_APP_FUNC(0x00BAEBA0, void, CinemachinePOV_MutateCameraState, (CinemachinePOV * __this, CameraState * curState, float deltaTime, MethodInfo * method)); DO_APP_FUNC(0x00BAF2C0, Vector2, CinemachinePOV_GetRecenterTarget, (CinemachinePOV * __this, MethodInfo * method)); DO_APP_FUNC(0x00BAF7E0, float, CinemachinePOV_NormalizeAngle, (float angle, MethodInfo * method)); DO_APP_FUNC(0x00BAF810, void, CinemachinePOV_ForceCameraPosition, (CinemachinePOV * __this, Vector3 pos, Quaternion rot, MethodInfo * method)); -DO_APP_FUNC(0x00BAF830, bool, CinemachinePOV_OnTransitionFromCamera, (CinemachinePOV * __this, ICinemachineCamera * fromCam, Vector3 worldUp, float deltaTime, CinemachineVirtualCameraBase_TransitionParams transitionParams, MethodInfo * method)); +DO_APP_FUNC(0x00BAF830, bool, CinemachinePOV_OnTransitionFromCamera, (CinemachinePOV * __this, ICinemachineCamera * fromCam, Vector3 worldUp, float deltaTime, CinemachineVirtualCameraBase_TransitionParams * transitionParams, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, CinemachinePOV_get_RequiresUserInput, (CinemachinePOV * __this, MethodInfo * method)); DO_APP_FUNC(0x00BAFA90, void, CinemachinePOV_SetAxesForRotation, (CinemachinePOV * __this, Quaternion targetRot, MethodInfo * method)); DO_APP_FUNC(0x00BB04A0, void, CinemachinePOV__ctor, (CinemachinePOV * __this, MethodInfo * method)); DO_APP_FUNC(0x00BB07F0, bool, CinemachineSameAsFollowTarget_get_IsValid, (CinemachineSameAsFollowTarget * __this, MethodInfo * method)); DO_APP_FUNC(0x007205E0, CinemachineCore_Stage__Enum, CinemachineSameAsFollowTarget_get_Stage, (CinemachineSameAsFollowTarget * __this, MethodInfo * method)); DO_APP_FUNC(0x003CC930, float, CinemachineSameAsFollowTarget_GetMaxDampTime, (CinemachineSameAsFollowTarget * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BB0940, void, CinemachineSameAsFollowTarget_MutateCameraState, (CinemachineSameAsFollowTarget * __this, CameraState curState, float deltaTime, MethodInfo * method)); +DO_APP_FUNC(0x00BB0940, void, CinemachineSameAsFollowTarget_MutateCameraState, (CinemachineSameAsFollowTarget * __this, CameraState * curState, float deltaTime, MethodInfo * method)); DO_APP_FUNC(0x00BB0B10, void, CinemachineSameAsFollowTarget__ctor, (CinemachineSameAsFollowTarget * __this, MethodInfo * method)); DO_APP_FUNC(0x00BB0B90, bool, CinemachineTrackedDolly_get_IsValid, (CinemachineTrackedDolly * __this, MethodInfo * method)); DO_APP_FUNC(0x003CB690, CinemachineCore_Stage__Enum, CinemachineTrackedDolly_get_Stage, (CinemachineTrackedDolly * __this, MethodInfo * method)); DO_APP_FUNC(0x00BB0CE0, float, CinemachineTrackedDolly_GetMaxDampTime, (CinemachineTrackedDolly * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BB0D90, void, CinemachineTrackedDolly_MutateCameraState, (CinemachineTrackedDolly * __this, CameraState curState, float deltaTime, MethodInfo * method)); +DO_APP_FUNC(0x00BB0D90, void, CinemachineTrackedDolly_MutateCameraState, (CinemachineTrackedDolly * __this, CameraState * curState, float deltaTime, MethodInfo * method)); DO_APP_FUNC(0x00BB1E60, Quaternion, CinemachineTrackedDolly_GetCameraOrientationAtPathPoint, (CinemachineTrackedDolly * __this, Quaternion pathOrientation, Vector3 up, MethodInfo * method)); DO_APP_FUNC(0x00BB2410, Vector3, CinemachineTrackedDolly_get_AngularDamping, (CinemachineTrackedDolly * __this, MethodInfo * method)); DO_APP_FUNC(0x00BB24C0, void, CinemachineTrackedDolly__ctor, (CinemachineTrackedDolly * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BB2600, void, CinemachineTrackedDolly_AutoDolly__ctor, (CinemachineTrackedDolly_AutoDolly__Boxed * __this, bool enabled, float positionOffset, int32_t searchRadius, int32_t stepsPerSegment, MethodInfo * method)); +DO_APP_FUNC(0x00BB2600, void, CinemachineTrackedDolly_AutoDolly__ctor, (CinemachineTrackedDolly_AutoDolly * __this, bool enabled, float positionOffset, int32_t searchRadius, int32_t stepsPerSegment, MethodInfo * method)); DO_APP_FUNC(0x00BB2620, void, CinemachineTransposer_OnValidate, (CinemachineTransposer * __this, MethodInfo * method)); DO_APP_FUNC(0x004217A0, bool, CinemachineTransposer_get_HideOffsetInInspector, (CinemachineTransposer * __this, MethodInfo * method)); DO_APP_FUNC(0x004217B0, void, CinemachineTransposer_set_HideOffsetInInspector, (CinemachineTransposer * __this, bool value, MethodInfo * method)); @@ -93587,55 +105209,55 @@ DO_APP_FUNC(0x00BB2670, Vector3, CinemachineTransposer_get_EffectiveOffset, (Cin DO_APP_FUNC(0x00BB26B0, bool, CinemachineTransposer_get_IsValid, (CinemachineTransposer * __this, MethodInfo * method)); DO_APP_FUNC(0x003CB690, CinemachineCore_Stage__Enum, CinemachineTransposer_get_Stage, (CinemachineTransposer * __this, MethodInfo * method)); DO_APP_FUNC(0x00BB2800, float, CinemachineTransposer_GetMaxDampTime, (CinemachineTransposer * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BB2890, void, CinemachineTransposer_MutateCameraState, (CinemachineTransposer * __this, CameraState curState, float deltaTime, MethodInfo * method)); +DO_APP_FUNC(0x00BB2890, void, CinemachineTransposer_MutateCameraState, (CinemachineTransposer * __this, CameraState * curState, float deltaTime, MethodInfo * method)); DO_APP_FUNC(0x00BB2C10, void, CinemachineTransposer_OnTargetObjectWarped, (CinemachineTransposer * __this, Transform * target, Vector3 positionDelta, MethodInfo * method)); DO_APP_FUNC(0x00BB2DF0, void, CinemachineTransposer_ForceCameraPosition, (CinemachineTransposer * __this, Vector3 pos, Quaternion rot, MethodInfo * method)); -DO_APP_FUNC(0x00BB3130, void, CinemachineTransposer_InitPrevFrameStateInfo, (CinemachineTransposer * __this, CameraState curState, float deltaTime, MethodInfo * method)); -DO_APP_FUNC(0x00BB3410, void, CinemachineTransposer_TrackTarget, (CinemachineTransposer * __this, float deltaTime, Vector3 up, Vector3 desiredCameraOffset, Vector3 outTargetPosition, Quaternion outTargetOrient, MethodInfo * method)); +DO_APP_FUNC(0x00BB3130, void, CinemachineTransposer_InitPrevFrameStateInfo, (CinemachineTransposer * __this, CameraState * curState, float deltaTime, MethodInfo * method)); +DO_APP_FUNC(0x00BB3410, void, CinemachineTransposer_TrackTarget, (CinemachineTransposer * __this, float deltaTime, Vector3 up, Vector3 desiredCameraOffset, Vector3 * outTargetPosition, Quaternion * outTargetOrient, MethodInfo * method)); DO_APP_FUNC(0x00BB4510, Vector3, CinemachineTransposer_GetOffsetForMinimumTargetDistance, (CinemachineTransposer * __this, Vector3 dampedTargetPos, Vector3 cameraOffset, Vector3 cameraFwd, Vector3 up, Vector3 actualTargetPos, MethodInfo * method)); DO_APP_FUNC(0x00BB4AD0, Vector3, CinemachineTransposer_get_Damping, (CinemachineTransposer * __this, MethodInfo * method)); DO_APP_FUNC(0x00BB4B10, Vector3, CinemachineTransposer_get_AngularDamping, (CinemachineTransposer * __this, MethodInfo * method)); DO_APP_FUNC(0x00BB4BF0, Vector3, CinemachineTransposer_GetTargetCameraPosition, (CinemachineTransposer * __this, Vector3 worldUp, MethodInfo * method)); DO_APP_FUNC(0x00BB4D70, Quaternion, CinemachineTransposer_GetReferenceOrientation, (CinemachineTransposer * __this, Vector3 worldUp, MethodInfo * method)); DO_APP_FUNC(0x00BB5440, void, CinemachineTransposer__ctor, (CinemachineTransposer * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BB58A0, void, AxisState__ctor, (AxisState__Boxed * __this, float minValue, float maxValue, bool wrap, bool rangeLocked, float maxSpeed, float accelTime, float decelTime, String * name, bool invert, MethodInfo * method)); -DO_APP_FUNC(0x00BB5A10, void, AxisState_Validate, (AxisState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BB5A70, void, AxisState_Reset, (AxisState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BB5A80, void, AxisState_SetInputAxisProvider, (AxisState__Boxed * __this, int32_t axis, AxisState_IInputAxisProvider * provider, MethodInfo * method)); -DO_APP_FUNC(0x00BB5AE0, bool, AxisState_get_HasInputProvider, (AxisState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BB5AF0, bool, AxisState_Update, (AxisState__Boxed * __this, float deltaTime, MethodInfo * method)); -DO_APP_FUNC(0x00BB6090, float, AxisState_ClampValue, (AxisState__Boxed * __this, float v, MethodInfo * method)); -DO_APP_FUNC(0x00BB6100, bool, AxisState_MaxSpeedUpdate, (AxisState__Boxed * __this, float input, float deltaTime, MethodInfo * method)); -DO_APP_FUNC(0x00BB6330, float, AxisState_GetMaxSpeed, (AxisState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BB63E0, bool, AxisState_get_ValueRangeLocked, (AxisState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BB63F0, void, AxisState_set_ValueRangeLocked, (AxisState__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x00BB6400, bool, AxisState_get_HasRecentering, (AxisState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BB6410, void, AxisState_set_HasRecentering, (AxisState__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x00BB6420, void, AxisState_Recentering__ctor, (AxisState_Recentering__Boxed * __this, bool enabled, float waitTime, float recenteringTime, MethodInfo * method)); -DO_APP_FUNC(0x00BB6440, void, AxisState_Recentering_Validate, (AxisState_Recentering__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BB6460, void, AxisState_Recentering_CopyStateFrom, (AxisState_Recentering__Boxed * __this, AxisState_Recentering other, MethodInfo * method)); -DO_APP_FUNC(0x00BB6480, void, AxisState_Recentering_CancelRecentering, (AxisState_Recentering__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BB64E0, void, AxisState_Recentering_RecenterNow, (AxisState_Recentering__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BB64F0, void, AxisState_Recentering_DoRecentering, (AxisState_Recentering__Boxed * __this, AxisState axis, float deltaTime, float recenterTarget, MethodInfo * method)); -DO_APP_FUNC(0x00BB6720, bool, AxisState_Recentering_LegacyUpgrade, (AxisState_Recentering__Boxed * __this, int32_t heading, int32_t velocityFilter, MethodInfo * method)); -DO_APP_FUNC(0x00BB6750, bool, CameraState_get_HasLookAt, (CameraState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BB67B0, Vector3, CameraState_get_CorrectedPosition, (CameraState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BB6800, Quaternion, CameraState_get_CorrectedOrientation, (CameraState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BB67B0, Vector3, CameraState_get_FinalPosition, (CameraState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BB6970, Quaternion, CameraState_get_FinalOrientation, (CameraState__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00BB58A0, void, AxisState__ctor, (AxisState * __this, float minValue, float maxValue, bool wrap, bool rangeLocked, float maxSpeed, float accelTime, float decelTime, String * name, bool invert, MethodInfo * method)); +DO_APP_FUNC(0x00BB5A10, void, AxisState_Validate, (AxisState * __this, MethodInfo * method)); +DO_APP_FUNC(0x00BB5A70, void, AxisState_Reset, (AxisState * __this, MethodInfo * method)); +DO_APP_FUNC(0x00BB5A80, void, AxisState_SetInputAxisProvider, (AxisState * __this, int32_t axis, AxisState_IInputAxisProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x00BB5AE0, bool, AxisState_get_HasInputProvider, (AxisState * __this, MethodInfo * method)); +DO_APP_FUNC(0x00BB5AF0, bool, AxisState_Update, (AxisState * __this, float deltaTime, MethodInfo * method)); +DO_APP_FUNC(0x00BB6090, float, AxisState_ClampValue, (AxisState * __this, float v, MethodInfo * method)); +DO_APP_FUNC(0x00BB6100, bool, AxisState_MaxSpeedUpdate, (AxisState * __this, float input, float deltaTime, MethodInfo * method)); +DO_APP_FUNC(0x00BB6330, float, AxisState_GetMaxSpeed, (AxisState * __this, MethodInfo * method)); +DO_APP_FUNC(0x00BB63E0, bool, AxisState_get_ValueRangeLocked, (AxisState * __this, MethodInfo * method)); +DO_APP_FUNC(0x00BB63F0, void, AxisState_set_ValueRangeLocked, (AxisState * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x00BB6400, bool, AxisState_get_HasRecentering, (AxisState * __this, MethodInfo * method)); +DO_APP_FUNC(0x00BB6410, void, AxisState_set_HasRecentering, (AxisState * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x00BB6420, void, AxisState_Recentering__ctor, (AxisState_Recentering * __this, bool enabled, float waitTime, float recenteringTime, MethodInfo * method)); +DO_APP_FUNC(0x00BB6440, void, AxisState_Recentering_Validate, (AxisState_Recentering * __this, MethodInfo * method)); +DO_APP_FUNC(0x00BB6460, void, AxisState_Recentering_CopyStateFrom, (AxisState_Recentering * __this, AxisState_Recentering * other, MethodInfo * method)); +DO_APP_FUNC(0x00BB6480, void, AxisState_Recentering_CancelRecentering, (AxisState_Recentering * __this, MethodInfo * method)); +DO_APP_FUNC(0x00BB64E0, void, AxisState_Recentering_RecenterNow, (AxisState_Recentering * __this, MethodInfo * method)); +DO_APP_FUNC(0x00BB64F0, void, AxisState_Recentering_DoRecentering, (AxisState_Recentering * __this, AxisState * axis, float deltaTime, float recenterTarget, MethodInfo * method)); +DO_APP_FUNC(0x00BB6720, bool, AxisState_Recentering_LegacyUpgrade, (AxisState_Recentering * __this, int32_t * heading, int32_t * velocityFilter, MethodInfo * method)); +DO_APP_FUNC(0x00BB6750, bool, CameraState_get_HasLookAt, (CameraState * __this, MethodInfo * method)); +DO_APP_FUNC(0x00BB67B0, Vector3, CameraState_get_CorrectedPosition, (CameraState * __this, MethodInfo * method)); +DO_APP_FUNC(0x00BB6800, Quaternion, CameraState_get_CorrectedOrientation, (CameraState * __this, MethodInfo * method)); +DO_APP_FUNC(0x00BB67B0, Vector3, CameraState_get_FinalPosition, (CameraState * __this, MethodInfo * method)); +DO_APP_FUNC(0x00BB6970, Quaternion, CameraState_get_FinalOrientation, (CameraState * __this, MethodInfo * method)); DO_APP_FUNC(0x00BB6C30, CameraState, CameraState_get_Default, (MethodInfo * method)); -DO_APP_FUNC(0x00BB6E90, int32_t, CameraState_get_NumCustomBlendables, (CameraState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BB6EA0, void, CameraState_set_NumCustomBlendables, (CameraState__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00BB6EB0, CameraState_CustomBlendable, CameraState_GetCustomBlendable, (CameraState__Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00BB7020, int32_t, CameraState_FindCustomBlendable, (CameraState__Boxed * __this, Object_1 * custom, MethodInfo * method)); -DO_APP_FUNC(0x00BB77B0, void, CameraState_AddCustomBlendable, (CameraState__Boxed * __this, CameraState_CustomBlendable b, MethodInfo * method)); +DO_APP_FUNC(0x00BB6E90, int32_t, CameraState_get_NumCustomBlendables, (CameraState * __this, MethodInfo * method)); +DO_APP_FUNC(0x00BB6EA0, void, CameraState_set_NumCustomBlendables, (CameraState * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x00BB6EB0, CameraState_CustomBlendable, CameraState_GetCustomBlendable, (CameraState * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00BB7020, int32_t, CameraState_FindCustomBlendable, (CameraState * __this, Object_1 * custom, MethodInfo * method)); +DO_APP_FUNC(0x00BB77B0, void, CameraState_AddCustomBlendable, (CameraState * __this, CameraState_CustomBlendable b, MethodInfo * method)); DO_APP_FUNC(0x00BB7C70, CameraState, CameraState_Lerp, (CameraState stateA, CameraState stateB, float t, MethodInfo * method)); DO_APP_FUNC(0x00BBBEB0, float, CameraState_InterpolateFOV, (float fovA, float fovB, float dA, float dB, float t, MethodInfo * method)); DO_APP_FUNC(0x00BBC000, Vector3, CameraState_ApplyPosBlendHint, (Vector3 posA, CameraState_BlendHintValue__Enum hintA, Vector3 posB, CameraState_BlendHintValue__Enum hintB, Vector3 original, Vector3 blended, MethodInfo * method)); DO_APP_FUNC(0x00BBC080, Quaternion, CameraState_ApplyRotBlendHint, (Quaternion rotA, CameraState_BlendHintValue__Enum hintA, Quaternion rotB, CameraState_BlendHintValue__Enum hintB, Quaternion original, Quaternion blended, MethodInfo * method)); -DO_APP_FUNC(0x00BBC0D0, Vector3, CameraState_InterpolatePosition, (CameraState__Boxed * __this, Vector3 posA, Vector3 pivotA, Vector3 posB, Vector3 pivotB, float t, MethodInfo * method)); +DO_APP_FUNC(0x00BBC0D0, Vector3, CameraState_InterpolatePosition, (CameraState * __this, Vector3 posA, Vector3 pivotA, Vector3 posB, Vector3 pivotB, float t, MethodInfo * method)); DO_APP_FUNC(0x00BBC5C0, void, CameraState__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x00BBC610, void, CameraState_CustomBlendable__ctor, (CameraState_CustomBlendable__Boxed * __this, Object_1 * custom, float weight, MethodInfo * method)); +DO_APP_FUNC(0x00BBC610, void, CameraState_CustomBlendable__ctor, (CameraState_CustomBlendable * __this, Object_1 * custom, float weight, MethodInfo * method)); DO_APP_FUNC(0x00BBC670, float, CinemachineBlend_get_BlendWeight, (CinemachineBlend * __this, MethodInfo * method)); DO_APP_FUNC(0x00BBC760, bool, CinemachineBlend_get_IsValid, (CinemachineBlend * __this, MethodInfo * method)); DO_APP_FUNC(0x00BBC7E0, bool, CinemachineBlend_get_IsComplete, (CinemachineBlend * __this, MethodInfo * method)); @@ -93644,10 +105266,10 @@ DO_APP_FUNC(0x00BBCA20, bool, CinemachineBlend_Uses, (CinemachineBlend * __this, DO_APP_FUNC(0x00BBCB20, void, CinemachineBlend__ctor, (CinemachineBlend * __this, ICinemachineCamera * a, ICinemachineCamera * b, AnimationCurve * curve, float duration, float t, MethodInfo * method)); DO_APP_FUNC(0x00BBCC40, void, CinemachineBlend_UpdateCameraState, (CinemachineBlend * __this, Vector3 worldUp, float deltaTime, MethodInfo * method)); DO_APP_FUNC(0x00BBCD30, CameraState, CinemachineBlend_get_State, (CinemachineBlend * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BBD200, float, CinemachineBlendDefinition_get_BlendTime, (CinemachineBlendDefinition__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BBD210, void, CinemachineBlendDefinition__ctor, (CinemachineBlendDefinition__Boxed * __this, CinemachineBlendDefinition_Style__Enum style, float time, MethodInfo * method)); -DO_APP_FUNC(0x00BBD270, void, CinemachineBlendDefinition_CreateStandardCurves, (CinemachineBlendDefinition__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BBDAE0, AnimationCurve *, CinemachineBlendDefinition_get_BlendCurve, (CinemachineBlendDefinition__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00BBD200, float, CinemachineBlendDefinition_get_BlendTime, (CinemachineBlendDefinition * __this, MethodInfo * method)); +DO_APP_FUNC(0x00BBD210, void, CinemachineBlendDefinition__ctor, (CinemachineBlendDefinition * __this, CinemachineBlendDefinition_Style__Enum style, float time, MethodInfo * method)); +DO_APP_FUNC(0x00BBD270, void, CinemachineBlendDefinition_CreateStandardCurves, (CinemachineBlendDefinition * __this, MethodInfo * method)); +DO_APP_FUNC(0x00BBDAE0, AnimationCurve *, CinemachineBlendDefinition_get_BlendCurve, (CinemachineBlendDefinition * __this, MethodInfo * method)); DO_APP_FUNC(0x00BBDBF0, void, StaticPointVirtualCamera__ctor, (StaticPointVirtualCamera * __this, CameraState state, String * name, MethodInfo * method)); DO_APP_FUNC(0x00BBDCF0, void, StaticPointVirtualCamera_SetState, (StaticPointVirtualCamera * __this, CameraState state, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, String *, StaticPointVirtualCamera_get_Name, (StaticPointVirtualCamera * __this, MethodInfo * method)); @@ -93705,9 +105327,9 @@ DO_APP_FUNC(0x00BBF3D0, CinemachineTargetGroup *, CinemachineComponentBase_get_L DO_APP_FUNC(0x00BBF470, Vector3, CinemachineComponentBase_get_LookAtTargetPosition, (CinemachineComponentBase * __this, MethodInfo * method)); DO_APP_FUNC(0x00BBF7D0, Quaternion, CinemachineComponentBase_get_LookAtTargetRotation, (CinemachineComponentBase * __this, MethodInfo * method)); DO_APP_FUNC(0x00BBFB00, CameraState, CinemachineComponentBase_get_VcamState, (CinemachineComponentBase * __this, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, CinemachineComponentBase_PrePipelineMutateCameraState, (CinemachineComponentBase * __this, CameraState curState, float deltaTime, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, CinemachineComponentBase_PrePipelineMutateCameraState, (CinemachineComponentBase * __this, CameraState * curState, float deltaTime, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, CinemachineComponentBase_get_BodyAppliesAfterAim, (CinemachineComponentBase * __this, MethodInfo * method)); -DO_APP_FUNC(0x0041AF00, bool, CinemachineComponentBase_OnTransitionFromCamera, (CinemachineComponentBase * __this, ICinemachineCamera * fromCam, Vector3 worldUp, float deltaTime, CinemachineVirtualCameraBase_TransitionParams transitionParams, MethodInfo * method)); +DO_APP_FUNC(0x0041AF00, bool, CinemachineComponentBase_OnTransitionFromCamera, (CinemachineComponentBase * __this, ICinemachineCamera * fromCam, Vector3 worldUp, float deltaTime, CinemachineVirtualCameraBase_TransitionParams * transitionParams, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CinemachineComponentBase_OnTargetObjectWarped, (CinemachineComponentBase * __this, Transform * target, Vector3 positionDelta, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CinemachineComponentBase_ForceCameraPosition, (CinemachineComponentBase * __this, Vector3 pos, Quaternion rot, MethodInfo * method)); DO_APP_FUNC(0x00945260, float, CinemachineComponentBase_GetMaxDampTime, (CinemachineComponentBase * __this, MethodInfo * method)); @@ -93752,25 +105374,26 @@ DO_APP_FUNC(0x003AE050, void, CinemachineCore_UpdateStatus__ctor, (CinemachineCo DO_APP_FUNC(0x00BC36A0, void, CinemachineCore_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CinemachineCore_c__ctor, (CinemachineCore_c * __this, MethodInfo * method)); DO_APP_FUNC(0x00BC3750, int32_t, CinemachineCore_c__GetVirtualCamera_b__30_0, (CinemachineCore_c * __this, CinemachineVirtualCameraBase * x, CinemachineVirtualCameraBase * y, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0470, CinemachineCore_c__GetVirtualCamera_b__30_0__MethodInfo); DO_APP_FUNC(0x00BC3790, CinemachineVirtualCameraBase *, CinemachineExtension_get_VirtualCamera, (CinemachineExtension * __this, MethodInfo * method)); DO_APP_FUNC(0x00BC3900, void, CinemachineExtension_Awake, (CinemachineExtension * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CinemachineExtension_OnEnable, (CinemachineExtension * __this, MethodInfo * method)); DO_APP_FUNC(0x00BC3920, void, CinemachineExtension_OnDestroy, (CinemachineExtension * __this, MethodInfo * method)); DO_APP_FUNC(0x00BC3900, void, CinemachineExtension_EnsureStarted, (CinemachineExtension * __this, MethodInfo * method)); DO_APP_FUNC(0x00BC3940, void, CinemachineExtension_ConnectToVcam, (CinemachineExtension * __this, bool connect, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, CinemachineExtension_PrePipelineMutateCameraStateCallback, (CinemachineExtension * __this, CinemachineVirtualCameraBase * vcam, CameraState curState, float deltaTime, MethodInfo * method)); -DO_APP_FUNC(0x00BC3C20, void, CinemachineExtension_InvokePostPipelineStageCallback, (CinemachineExtension * __this, CinemachineVirtualCameraBase * vcam, CinemachineCore_Stage__Enum stage, CameraState state, float deltaTime, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, CinemachineExtension_PrePipelineMutateCameraStateCallback, (CinemachineExtension * __this, CinemachineVirtualCameraBase * vcam, CameraState * curState, float deltaTime, MethodInfo * method)); +DO_APP_FUNC(0x00BC3C20, void, CinemachineExtension_InvokePostPipelineStageCallback, (CinemachineExtension * __this, CinemachineVirtualCameraBase * vcam, CinemachineCore_Stage__Enum stage, CameraState * state, float deltaTime, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CinemachineExtension_OnTargetObjectWarped, (CinemachineExtension * __this, Transform * target, Vector3 positionDelta, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CinemachineExtension_ForceCameraPosition, (CinemachineExtension * __this, Vector3 pos, Quaternion rot, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, CinemachineExtension_OnTransitionFromCamera, (CinemachineExtension * __this, ICinemachineCamera * fromCam, Vector3 worldUp, float deltaTime, MethodInfo * method)); DO_APP_FUNC(0x00945260, float, CinemachineExtension_GetMaxDampTime, (CinemachineExtension * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, CinemachineExtension_get_RequiresUserInput, (CinemachineExtension * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, CinemachineExtension__ctor, (CinemachineExtension * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BC3C40, void, AxisBase_Validate, (AxisBase__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BB6440, void, CinemachineInputAxisDriver_Validate, (CinemachineInputAxisDriver__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BC3C70, bool, CinemachineInputAxisDriver_Update, (CinemachineInputAxisDriver__Boxed * __this, float deltaTime, AxisBase axis, MethodInfo * method)); -DO_APP_FUNC(0x00BC3FD0, bool, CinemachineInputAxisDriver_Update_1, (CinemachineInputAxisDriver__Boxed * __this, float deltaTime, AxisState axis, MethodInfo * method)); -DO_APP_FUNC(0x00BC4040, float, CinemachineInputAxisDriver_ClampValue, (CinemachineInputAxisDriver__Boxed * __this, AxisBase axis, float v, MethodInfo * method)); +DO_APP_FUNC(0x00BC3C40, void, AxisBase_Validate, (AxisBase * __this, MethodInfo * method)); +DO_APP_FUNC(0x00BB6440, void, CinemachineInputAxisDriver_Validate, (CinemachineInputAxisDriver * __this, MethodInfo * method)); +DO_APP_FUNC(0x00BC3C70, bool, CinemachineInputAxisDriver_Update, (CinemachineInputAxisDriver * __this, float deltaTime, AxisBase * axis, MethodInfo * method)); +DO_APP_FUNC(0x00BC3FD0, bool, CinemachineInputAxisDriver_Update_1, (CinemachineInputAxisDriver * __this, float deltaTime, AxisState * axis, MethodInfo * method)); +DO_APP_FUNC(0x00BC4040, float, CinemachineInputAxisDriver_ClampValue, (CinemachineInputAxisDriver * __this, AxisBase * axis, float v, MethodInfo * method)); DO_APP_FUNC(0x00BC40B0, float, CinemachinePathBase_StandardizePos, (CinemachinePathBase * __this, float pos, MethodInfo * method)); DO_APP_FUNC(0x00BC41A0, float, CinemachinePathBase_FindClosestPoint, (CinemachinePathBase * __this, Vector3 p, int32_t startSegment, int32_t searchRadius, int32_t stepsPerSegment, MethodInfo * method)); DO_APP_FUNC(0x00BC45C0, float, CinemachinePathBase_MinUnit, (CinemachinePathBase * __this, CinemachinePathBase_PositionUnits__Enum units, MethodInfo * method)); @@ -93814,14 +105437,14 @@ DO_APP_FUNC(0x00BC5A00, void, CinemachineVirtualCameraBase_AddExtension, (Cinema DO_APP_FUNC(0x00BC5B70, void, CinemachineVirtualCameraBase_RemoveExtension, (CinemachineVirtualCameraBase * __this, CinemachineExtension * extension, MethodInfo * method)); DO_APP_FUNC(0x003CD530, List_1_Cinemachine_CinemachineExtension_ *, CinemachineVirtualCameraBase_get_mExtensions, (CinemachineVirtualCameraBase * __this, MethodInfo * method)); DO_APP_FUNC(0x00421740, void, CinemachineVirtualCameraBase_set_mExtensions, (CinemachineVirtualCameraBase * __this, List_1_Cinemachine_CinemachineExtension_ * value, MethodInfo * method)); -DO_APP_FUNC(0x00BC5BD0, void, CinemachineVirtualCameraBase_InvokePostPipelineStageCallback, (CinemachineVirtualCameraBase * __this, CinemachineVirtualCameraBase * vcam, CinemachineCore_Stage__Enum stage, CameraState newState, float deltaTime, MethodInfo * method)); -DO_APP_FUNC(0x00BC5F70, void, CinemachineVirtualCameraBase_InvokePrePipelineMutateCameraStateCallback, (CinemachineVirtualCameraBase * __this, CinemachineVirtualCameraBase * vcam, CameraState newState, float deltaTime, MethodInfo * method)); +DO_APP_FUNC(0x00BC5BD0, void, CinemachineVirtualCameraBase_InvokePostPipelineStageCallback, (CinemachineVirtualCameraBase * __this, CinemachineVirtualCameraBase * vcam, CinemachineCore_Stage__Enum stage, CameraState * newState, float deltaTime, MethodInfo * method)); +DO_APP_FUNC(0x00BC5F70, void, CinemachineVirtualCameraBase_InvokePrePipelineMutateCameraStateCallback, (CinemachineVirtualCameraBase * __this, CinemachineVirtualCameraBase * vcam, CameraState * newState, float deltaTime, MethodInfo * method)); DO_APP_FUNC(0x00BC6300, bool, CinemachineVirtualCameraBase_InvokeOnTransitionInExtensions, (CinemachineVirtualCameraBase * __this, ICinemachineCamera * fromCam, Vector3 worldUp, float deltaTime, MethodInfo * method)); DO_APP_FUNC(0x00A6A9E0, String *, CinemachineVirtualCameraBase_get_Name, (CinemachineVirtualCameraBase * __this, MethodInfo * method)); DO_APP_FUNC(0x00BC6550, String *, CinemachineVirtualCameraBase_get_Description, (CinemachineVirtualCameraBase * __this, MethodInfo * method)); DO_APP_FUNC(0x00A2A110, int32_t, CinemachineVirtualCameraBase_get_Priority, (CinemachineVirtualCameraBase * __this, MethodInfo * method)); DO_APP_FUNC(0x00BC6590, void, CinemachineVirtualCameraBase_set_Priority, (CinemachineVirtualCameraBase * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00BC65A0, void, CinemachineVirtualCameraBase_ApplyPositionBlendMethod, (CinemachineVirtualCameraBase * __this, CameraState state, CinemachineVirtualCameraBase_BlendHint__Enum hint, MethodInfo * method)); +DO_APP_FUNC(0x00BC65A0, void, CinemachineVirtualCameraBase_ApplyPositionBlendMethod, (CinemachineVirtualCameraBase * __this, CameraState * state, CinemachineVirtualCameraBase_BlendHint__Enum hint, MethodInfo * method)); DO_APP_FUNC(0x00BC65D0, GameObject *, CinemachineVirtualCameraBase_get_VirtualCameraGameObject, (CinemachineVirtualCameraBase * __this, MethodInfo * method)); DO_APP_FUNC(0x00BC6710, bool, CinemachineVirtualCameraBase_get_IsValid, (CinemachineVirtualCameraBase * __this, MethodInfo * method)); DO_APP_FUNC(0x00BC6810, ICinemachineCamera *, CinemachineVirtualCameraBase_get_ParentCamera, (CinemachineVirtualCameraBase * __this, MethodInfo * method)); @@ -93848,7 +105471,7 @@ DO_APP_FUNC(0x00BC7B00, void, CinemachineVirtualCameraBase_MoveToTopOfPrioritySu DO_APP_FUNC(0x00BC7B10, void, CinemachineVirtualCameraBase_OnTargetObjectWarped, (CinemachineVirtualCameraBase * __this, Transform * target, Vector3 positionDelta, MethodInfo * method)); DO_APP_FUNC(0x00BC7C00, void, CinemachineVirtualCameraBase_ForceCameraPosition, (CinemachineVirtualCameraBase * __this, Vector3 pos, Quaternion rot, MethodInfo * method)); DO_APP_FUNC(0x00BC7D10, CinemachineBlend *, CinemachineVirtualCameraBase_CreateBlend, (CinemachineVirtualCameraBase * __this, ICinemachineCamera * camA, ICinemachineCamera * camB, CinemachineBlendDefinition blendDef, CinemachineBlend * activeBlend, MethodInfo * method)); -DO_APP_FUNC(0x00BC8080, CameraState, CinemachineVirtualCameraBase_PullStateFromVirtualCamera, (CinemachineVirtualCameraBase * __this, Vector3 worldUp, LensSettings lens, MethodInfo * method)); +DO_APP_FUNC(0x00BC8080, CameraState, CinemachineVirtualCameraBase_PullStateFromVirtualCamera, (CinemachineVirtualCameraBase * __this, Vector3 worldUp, LensSettings * lens, MethodInfo * method)); DO_APP_FUNC(0x00BC83E0, void, CinemachineVirtualCameraBase_InvalidateCachedTargets, (CinemachineVirtualCameraBase * __this, MethodInfo * method)); DO_APP_FUNC(0x00936140, bool, CinemachineVirtualCameraBase_get_FollowTargetChanged, (CinemachineVirtualCameraBase * __this, MethodInfo * method)); DO_APP_FUNC(0x00936150, void, CinemachineVirtualCameraBase_set_FollowTargetChanged, (CinemachineVirtualCameraBase * __this, bool value, MethodInfo * method)); @@ -93867,55 +105490,56 @@ DO_APP_FUNC(0x00BC8E20, void, CinemachineVirtualCameraBase__ctor, (CinemachineVi DO_APP_FUNC(0x00BC8F70, void, CinemachineVirtualCameraBase_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CinemachineVirtualCameraBase_c__ctor, (CinemachineVirtualCameraBase_c * __this, MethodInfo * method)); DO_APP_FUNC(0x00BC9020, bool, CinemachineVirtualCameraBase_c__RequiresUserInput_b__66_0, (CinemachineVirtualCameraBase_c * __this, CinemachineExtension * extension, MethodInfo * method)); -DO_APP_FUNC(0x00BC9130, void, ConfinerOven__ctor, (ConfinerOven * __this, List_1_List_1_UnityEngine_Vector2_ * inputPath, float aspectRatio, float maxFrustumHeight, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0378, CinemachineVirtualCameraBase_c__RequiresUserInput_b__66_0__MethodInfo); +DO_APP_FUNC(0x00BC9130, void, ConfinerOven__ctor, (ConfinerOven * __this, List_1_List_1_UnityEngine_Vector2_ * * inputPath, float * aspectRatio, float maxFrustumHeight, MethodInfo * method)); DO_APP_FUNC(0x00BC9250, ConfinerOven_BakedSolution *, ConfinerOven_GetBakedSolution, (ConfinerOven * __this, float frustumHeight, MethodInfo * method)); DO_APP_FUNC(0x003C7400, ConfinerOven_BakingState__Enum, ConfinerOven_get_State, (ConfinerOven * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7410, void, ConfinerOven_set_State, (ConfinerOven * __this, ConfinerOven_BakingState__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x00BC9620, void, ConfinerOven_Initialize, (ConfinerOven * __this, List_1_List_1_UnityEngine_Vector2_ * inputPath, float aspectRatio, float maxFrustumHeight, MethodInfo * method)); +DO_APP_FUNC(0x00BC9620, void, ConfinerOven_Initialize, (ConfinerOven * __this, List_1_List_1_UnityEngine_Vector2_ * * inputPath, float * aspectRatio, float maxFrustumHeight, MethodInfo * method)); DO_APP_FUNC(0x00BC9EB0, void, ConfinerOven_BakeConfiner, (ConfinerOven * __this, float maxComputationTimePerFrameInSeconds, MethodInfo * method)); -DO_APP_FUNC(0x00BCA430, Rect, ConfinerOven_GetPolygonBoundingBox, (List_1_List_1_UnityEngine_Vector2_ * polygons, MethodInfo * method)); -DO_APP_FUNC(0x00BCA610, void, ConfinerOven_ComputeSkeleton, (ConfinerOven * __this, List_1_Cinemachine_ConfinerOven_PolygonSolution_ * solutions, MethodInfo * method)); +DO_APP_FUNC(0x00BCA430, Rect, ConfinerOven_GetPolygonBoundingBox, (List_1_List_1_UnityEngine_Vector2_ * * polygons, MethodInfo * method)); +DO_APP_FUNC(0x00BCA610, void, ConfinerOven_ComputeSkeleton, (ConfinerOven * __this, List_1_Cinemachine_ConfinerOven_PolygonSolution_ * * solutions, MethodInfo * method)); DO_APP_FUNC(0x003BC3C0, float, ConfinerOven_BakedSolution_get_FrustumHeight, (ConfinerOven_BakedSolution * __this, MethodInfo * method)); DO_APP_FUNC(0x00BCAB30, void, ConfinerOven_BakedSolution__ctor, (ConfinerOven_BakedSolution * __this, float aspectRatio, float frustumHeight, bool hasBones, Rect polygonBounds, List_1_List_1_Cinemachine_ClipperLib_IntPoint_ * originalPolygon, List_1_List_1_Cinemachine_ClipperLib_IntPoint_ * solution, MethodInfo * method)); DO_APP_FUNC(0x00BCAC80, void, ConfinerOven_BakedSolution_Clear, (ConfinerOven_BakedSolution * __this, MethodInfo * method)); DO_APP_FUNC(0x00BCAD30, bool, ConfinerOven_BakedSolution_IsValid, (ConfinerOven_BakedSolution * __this, float frustumHeight, MethodInfo * method)); -DO_APP_FUNC(0x00BCAD60, Vector2, ConfinerOven_BakedSolution_ConfinePoint, (ConfinerOven_BakedSolution * __this, Vector2 pointToConfine, MethodInfo * method)); +DO_APP_FUNC(0x00BCAD60, Vector2, ConfinerOven_BakedSolution_ConfinePoint, (ConfinerOven_BakedSolution * __this, Vector2 * pointToConfine, MethodInfo * method)); DO_APP_FUNC(0x00BCB3E0, bool, ConfinerOven_BakedSolution_IsInsideOriginal, (ConfinerOven_BakedSolution * __this, ClipperLib_IntPoint p, MethodInfo * method)); DO_APP_FUNC(0x00BCB4C0, float, ConfinerOven_BakedSolution_ClosestPointOnSegment, (ClipperLib_IntPoint p, ClipperLib_IntPoint s0, ClipperLib_IntPoint s1, MethodInfo * method)); DO_APP_FUNC(0x00BCB550, ClipperLib_IntPoint, ConfinerOven_BakedSolution_IntPointLerp, (ClipperLib_IntPoint a, ClipperLib_IntPoint b, float lerp, MethodInfo * method)); DO_APP_FUNC(0x00BCB5F0, bool, ConfinerOven_BakedSolution_DoesIntersectOriginal, (ConfinerOven_BakedSolution * __this, ClipperLib_IntPoint l1, ClipperLib_IntPoint l2, MethodInfo * method)); -DO_APP_FUNC(0x00BCB880, int32_t, ConfinerOven_BakedSolution_FindIntersection, (ClipperLib_IntPoint p1, ClipperLib_IntPoint p2, ClipperLib_IntPoint p3, ClipperLib_IntPoint p4, MethodInfo * method)); +DO_APP_FUNC(0x00BCB880, int32_t, ConfinerOven_BakedSolution_FindIntersection, (ClipperLib_IntPoint * p1, ClipperLib_IntPoint * p2, ClipperLib_IntPoint * p3, ClipperLib_IntPoint * p4, MethodInfo * method)); DO_APP_FUNC(0x00BCBAD0, double, ConfinerOven_BakedSolution_IntPointDiffSqrMagnitude, (ClipperLib_IntPoint p1, ClipperLib_IntPoint p2, MethodInfo * method)); -DO_APP_FUNC(0x00BCBB00, float, ConfinerOven_AspectStretcher_get_Aspect, (ConfinerOven_AspectStretcher__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BCBB10, void, ConfinerOven_AspectStretcher__ctor, (ConfinerOven_AspectStretcher__Boxed * __this, float aspect, float centerX, MethodInfo * method)); -DO_APP_FUNC(0x00BCBB30, Vector2, ConfinerOven_AspectStretcher_Stretch, (ConfinerOven_AspectStretcher__Boxed * __this, Vector2 p, MethodInfo * method)); -DO_APP_FUNC(0x00BCBB60, Vector2, ConfinerOven_AspectStretcher_Unstretch, (ConfinerOven_AspectStretcher__Boxed * __this, Vector2 p, MethodInfo * method)); -DO_APP_FUNC(0x00BCBB90, bool, ConfinerOven_PolygonSolution_StateChanged, (ConfinerOven_PolygonSolution__Boxed * __this, List_1_List_1_Cinemachine_ClipperLib_IntPoint_ * paths, MethodInfo * method)); -DO_APP_FUNC(0x00A9A290, bool, ConfinerOven_PolygonSolution_get_IsEmpty, (ConfinerOven_PolygonSolution__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BCBCA0, bool, LensSettings_get_Orthographic, (LensSettings__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BCBCC0, void, LensSettings_set_Orthographic, (LensSettings__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x00BCBCD0, Vector2, LensSettings_get_SensorSize, (LensSettings__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BCBCF0, void, LensSettings_set_SensorSize, (LensSettings__Boxed * __this, Vector2 value, MethodInfo * method)); -DO_APP_FUNC(0x00BCBD00, float, LensSettings_get_Aspect, (LensSettings__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BCBD90, bool, LensSettings_get_IsPhysicalCamera, (LensSettings__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BCBDB0, void, LensSettings_set_IsPhysicalCamera, (LensSettings__Boxed * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x00BCBB00, float, ConfinerOven_AspectStretcher_get_Aspect, (ConfinerOven_AspectStretcher * __this, MethodInfo * method)); +DO_APP_FUNC(0x00BCBB10, void, ConfinerOven_AspectStretcher__ctor, (ConfinerOven_AspectStretcher * __this, float aspect, float centerX, MethodInfo * method)); +DO_APP_FUNC(0x00BCBB30, Vector2, ConfinerOven_AspectStretcher_Stretch, (ConfinerOven_AspectStretcher * __this, Vector2 p, MethodInfo * method)); +DO_APP_FUNC(0x00BCBB60, Vector2, ConfinerOven_AspectStretcher_Unstretch, (ConfinerOven_AspectStretcher * __this, Vector2 p, MethodInfo * method)); +DO_APP_FUNC(0x00BCBB90, bool, ConfinerOven_PolygonSolution_StateChanged, (ConfinerOven_PolygonSolution * __this, List_1_List_1_Cinemachine_ClipperLib_IntPoint_ * * paths, MethodInfo * method)); +DO_APP_FUNC(0x00A9A290, bool, ConfinerOven_PolygonSolution_get_IsEmpty, (ConfinerOven_PolygonSolution * __this, MethodInfo * method)); +DO_APP_FUNC(0x00BCBCA0, bool, LensSettings_get_Orthographic, (LensSettings * __this, MethodInfo * method)); +DO_APP_FUNC(0x00BCBCC0, void, LensSettings_set_Orthographic, (LensSettings * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x00BCBCD0, Vector2, LensSettings_get_SensorSize, (LensSettings * __this, MethodInfo * method)); +DO_APP_FUNC(0x00BCBCF0, void, LensSettings_set_SensorSize, (LensSettings * __this, Vector2 value, MethodInfo * method)); +DO_APP_FUNC(0x00BCBD00, float, LensSettings_get_Aspect, (LensSettings * __this, MethodInfo * method)); +DO_APP_FUNC(0x00BCBD90, bool, LensSettings_get_IsPhysicalCamera, (LensSettings * __this, MethodInfo * method)); +DO_APP_FUNC(0x00BCBDB0, void, LensSettings_set_IsPhysicalCamera, (LensSettings * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x00BCBDC0, LensSettings, LensSettings_FromCamera, (Camera * fromCamera, MethodInfo * method)); -DO_APP_FUNC(0x00BCC110, void, LensSettings_SnapshotCameraReadOnlyProperties, (LensSettings__Boxed * __this, Camera * camera, MethodInfo * method)); -DO_APP_FUNC(0x00BCC600, void, LensSettings_SnapshotCameraReadOnlyProperties_1, (LensSettings__Boxed * __this, LensSettings lens, MethodInfo * method)); -DO_APP_FUNC(0x00BCC710, void, LensSettings__ctor, (LensSettings__Boxed * __this, float verticalFOV, float orthographicSize, float nearClip, float farClip, float dutch, MethodInfo * method)); +DO_APP_FUNC(0x00BCC110, void, LensSettings_SnapshotCameraReadOnlyProperties, (LensSettings * __this, Camera * camera, MethodInfo * method)); +DO_APP_FUNC(0x00BCC600, void, LensSettings_SnapshotCameraReadOnlyProperties_1, (LensSettings * __this, LensSettings * lens, MethodInfo * method)); +DO_APP_FUNC(0x00BCC710, void, LensSettings__ctor, (LensSettings * __this, float verticalFOV, float orthographicSize, float nearClip, float farClip, float dutch, MethodInfo * method)); DO_APP_FUNC(0x00BCC760, LensSettings, LensSettings_Lerp, (LensSettings lensA, LensSettings lensB, float t, MethodInfo * method)); -DO_APP_FUNC(0x00BCC960, void, LensSettings_Validate, (LensSettings__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00BCC960, void, LensSettings_Validate, (LensSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x00BCC9D0, void, LensSettings__cctor, (MethodInfo * method)); DO_APP_FUNC(0x00BCCA50, Vector3, NoiseSettings_GetCombinedFilterResults, (NoiseSettings_TransformNoiseParams__Array * noiseParams, float time, Vector3 timeOffsets, MethodInfo * method)); DO_APP_FUNC(0x00945260, float, NoiseSettings_get_SignalDuration, (NoiseSettings * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BCCBD0, void, NoiseSettings_GetSignal, (NoiseSettings * __this, float timeSinceSignalStart, Vector3 pos, Quaternion rot, MethodInfo * method)); +DO_APP_FUNC(0x00BCCBD0, void, NoiseSettings_GetSignal, (NoiseSettings * __this, float timeSinceSignalStart, Vector3 * pos, Quaternion * rot, MethodInfo * method)); DO_APP_FUNC(0x00BCCD70, void, NoiseSettings__ctor, (NoiseSettings * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BCCE80, float, NoiseSettings_NoiseParams_GetValueAt, (NoiseSettings_NoiseParams__Boxed * __this, float time, float timeOffset, MethodInfo * method)); -DO_APP_FUNC(0x00BCCF30, Vector3, NoiseSettings_TransformNoiseParams_GetValueAt, (NoiseSettings_TransformNoiseParams__Boxed * __this, float time, Vector3 timeOffsets, MethodInfo * method)); +DO_APP_FUNC(0x00BCCE80, float, NoiseSettings_NoiseParams_GetValueAt, (NoiseSettings_NoiseParams * __this, float time, float timeOffset, MethodInfo * method)); +DO_APP_FUNC(0x00BCCF30, Vector3, NoiseSettings_TransformNoiseParams_GetValueAt, (NoiseSettings_TransformNoiseParams * __this, float time, Vector3 timeOffsets, MethodInfo * method)); DO_APP_FUNC(0x00BCCFD0, void, RuntimeUtility_DestroyObject, (Object_1 * obj, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, RuntimeUtility_IsPrefab, (GameObject * gameObject, MethodInfo * method)); -DO_APP_FUNC(0x00BCD0F0, bool, RuntimeUtility_RaycastIgnoreTag, (Ray ray, RaycastHit hitInfo, float rayLength, int32_t layerMask, String * ignoreTag, MethodInfo * method)); -DO_APP_FUNC(0x00BCD470, bool, RuntimeUtility_SphereCastIgnoreTag, (Vector3 rayStart, float radius, Vector3 dir, RaycastHit hitInfo, float rayLength, int32_t layerMask, String * ignoreTag, MethodInfo * method)); +DO_APP_FUNC(0x00BCD0F0, bool, RuntimeUtility_RaycastIgnoreTag, (Ray ray, RaycastHit * hitInfo, float rayLength, int32_t layerMask, String * * ignoreTag, MethodInfo * method)); +DO_APP_FUNC(0x00BCD470, bool, RuntimeUtility_SphereCastIgnoreTag, (Vector3 rayStart, float radius, Vector3 dir, RaycastHit * hitInfo, float rayLength, int32_t layerMask, String * * ignoreTag, MethodInfo * method)); DO_APP_FUNC(0x00BCDF20, SphereCollider *, RuntimeUtility_GetScratchCollider, (MethodInfo * method)); DO_APP_FUNC(0x00BCE4F0, void, RuntimeUtility_DestroyScratchCollider, (MethodInfo * method)); DO_APP_FUNC(0x00BCE810, AnimationCurve *, RuntimeUtility_NormalizeCurve, (AnimationCurve * curve, bool normalizeX, bool normalizeY, MethodInfo * method)); @@ -93943,10 +105567,10 @@ DO_APP_FUNC(0x00BD0600, TargetPositionCache_CacheCurve_Item, TargetPositionCache DO_APP_FUNC(0x00BD0660, void, TargetPositionCache_CacheEntry_AddRawItem, (TargetPositionCache_CacheEntry * __this, float time, bool isCut, Transform * target, MethodInfo * method)); DO_APP_FUNC(0x00BD0AA0, void, TargetPositionCache_CacheEntry_CreateCurves, (TargetPositionCache_CacheEntry * __this, MethodInfo * method)); DO_APP_FUNC(0x00BD0E60, void, TargetPositionCache_CacheEntry__ctor, (TargetPositionCache_CacheEntry * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BD0FE0, bool, TargetPositionCache_TimeRange_get_IsEmpty, (TargetPositionCache_TimeRange__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BD0FF0, bool, TargetPositionCache_TimeRange_Contains, (TargetPositionCache_TimeRange__Boxed * __this, float time, MethodInfo * method)); +DO_APP_FUNC(0x00BD0FE0, bool, TargetPositionCache_TimeRange_get_IsEmpty, (TargetPositionCache_TimeRange * __this, MethodInfo * method)); +DO_APP_FUNC(0x00BD0FF0, bool, TargetPositionCache_TimeRange_Contains, (TargetPositionCache_TimeRange * __this, float time, MethodInfo * method)); DO_APP_FUNC(0x00BD1010, TargetPositionCache_TimeRange, TargetPositionCache_TimeRange_get_Empty, (MethodInfo * method)); -DO_APP_FUNC(0x00BD1030, void, TargetPositionCache_TimeRange_Include, (TargetPositionCache_TimeRange__Boxed * __this, float time, MethodInfo * method)); +DO_APP_FUNC(0x00BD1030, void, TargetPositionCache_TimeRange_Include, (TargetPositionCache_TimeRange * __this, float time, MethodInfo * method)); DO_APP_FUNC(0x00BD1050, void, UpdateTracker_InitializeModule, (MethodInfo * method)); DO_APP_FUNC(0x00BD10D0, void, UpdateTracker_UpdateTargets, (UpdateTracker_UpdateClock__Enum currentClock, MethodInfo * method)); DO_APP_FUNC(0x00BD1610, UpdateTracker_UpdateClock__Enum, UpdateTracker_GetPreferredUpdate, (Transform * target, MethodInfo * method)); @@ -93961,9 +105585,10 @@ DO_APP_FUNC(0x00BD1DC0, float, CinemachineInputProvider_GetAxisValue, (Cinemachi DO_APP_FUNC(0x00BD1EE0, InputAction_1 *, CinemachineInputProvider_ResolveForPlayer, (CinemachineInputProvider * __this, int32_t axis, InputActionReference * actionRef, MethodInfo * method)); DO_APP_FUNC(0x00BD2850, void, CinemachineInputProvider_OnDisable, (CinemachineInputProvider * __this, MethodInfo * method)); DO_APP_FUNC(0x00BD28B0, void, CinemachineInputProvider__ctor, (CinemachineInputProvider * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BD2900, InputAction_1 *, CinemachineInputProvider__ResolveForPlayer_g__GetFirstMatch_7_0, (InputUser user, InputActionReference * aRef, MethodInfo * method)); +DO_APP_FUNC(0x00BD2900, InputAction_1 *, CinemachineInputProvider__ResolveForPlayer_g__GetFirstMatch_7_0, (InputUser * user, InputActionReference * aRef, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CinemachineInputProvider_c_DisplayClass7_0__ctor, (CinemachineInputProvider_c_DisplayClass7_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00BD2A90, bool, CinemachineInputProvider_c_DisplayClass7_0__ResolveForPlayer_b__1, (CinemachineInputProvider_c_DisplayClass7_0 * __this, InputAction_1 * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFFD8, CinemachineInputProvider_c_DisplayClass7_0__ResolveForPlayer_b__1__MethodInfo); DO_APP_FUNC(0x00BD2D50, bool, CinemachineTriggerAction_Filter, (CinemachineTriggerAction * __this, GameObject * other, MethodInfo * method)); DO_APP_FUNC(0x00BD2E70, void, CinemachineTriggerAction_InternalDoTriggerEnter, (CinemachineTriggerAction * __this, GameObject * other, MethodInfo * method)); DO_APP_FUNC(0x00BD3000, void, CinemachineTriggerAction_InternalDoTriggerExit, (CinemachineTriggerAction * __this, GameObject * other, MethodInfo * method)); @@ -93977,8 +105602,8 @@ DO_APP_FUNC(0x00BD3260, void, CinemachineTriggerAction_OnCollisionEnter2D, (Cine DO_APP_FUNC(0x00BD32A0, void, CinemachineTriggerAction_OnCollisionExit2D, (CinemachineTriggerAction * __this, Collision2D * other, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CinemachineTriggerAction_OnEnable, (CinemachineTriggerAction * __this, MethodInfo * method)); DO_APP_FUNC(0x00BD32E0, void, CinemachineTriggerAction__ctor, (CinemachineTriggerAction * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BD35F0, void, CinemachineTriggerAction_ActionSettings__ctor, (CinemachineTriggerAction_ActionSettings__Boxed * __this, CinemachineTriggerAction_ActionSettings_Mode__Enum action, MethodInfo * method)); -DO_APP_FUNC(0x00BD3780, void, CinemachineTriggerAction_ActionSettings_Invoke, (CinemachineTriggerAction_ActionSettings__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00BD35F0, void, CinemachineTriggerAction_ActionSettings__ctor, (CinemachineTriggerAction_ActionSettings * __this, CinemachineTriggerAction_ActionSettings_Mode__Enum action, MethodInfo * method)); +DO_APP_FUNC(0x00BD3780, void, CinemachineTriggerAction_ActionSettings_Invoke, (CinemachineTriggerAction_ActionSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x0042ECC0, void, CinemachineTriggerAction_ActionSettings_TriggerEvent__ctor, (CinemachineTriggerAction_ActionSettings_TriggerEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x00BD43A0, void, GroupWeightManipulator_Start, (GroupWeightManipulator * __this, MethodInfo * method)); DO_APP_FUNC(0x00BD4430, void, GroupWeightManipulator_OnValidate, (GroupWeightManipulator * __this, MethodInfo * method)); @@ -93989,16 +105614,16 @@ DO_APP_FUNC(0x00BD47C0, void, CinemachineCollisionImpulseSource_Start, (Cinemach DO_APP_FUNC(0x003AE050, void, CinemachineCollisionImpulseSource_OnEnable, (CinemachineCollisionImpulseSource * __this, MethodInfo * method)); DO_APP_FUNC(0x00BD48E0, void, CinemachineCollisionImpulseSource_OnCollisionEnter, (CinemachineCollisionImpulseSource * __this, Collision * c, MethodInfo * method)); DO_APP_FUNC(0x00BD4920, void, CinemachineCollisionImpulseSource_OnTriggerEnter, (CinemachineCollisionImpulseSource * __this, Collider * c, MethodInfo * method)); -DO_APP_FUNC(0x00BD4990, float, CinemachineCollisionImpulseSource_GetMassAndVelocity, (CinemachineCollisionImpulseSource * __this, Collider * other, Vector3 vel, MethodInfo * method)); +DO_APP_FUNC(0x00BD4990, float, CinemachineCollisionImpulseSource_GetMassAndVelocity, (CinemachineCollisionImpulseSource * __this, Collider * other, Vector3 * vel, MethodInfo * method)); DO_APP_FUNC(0x00BD4F30, void, CinemachineCollisionImpulseSource_GenerateImpactEvent, (CinemachineCollisionImpulseSource * __this, Collider * other, Vector3 vel, MethodInfo * method)); DO_APP_FUNC(0x00BD52E0, void, CinemachineCollisionImpulseSource_OnCollisionEnter2D, (CinemachineCollisionImpulseSource * __this, Collision2D * c, MethodInfo * method)); DO_APP_FUNC(0x00BD5340, void, CinemachineCollisionImpulseSource_OnTriggerEnter2D, (CinemachineCollisionImpulseSource * __this, Collider2D * c, MethodInfo * method)); -DO_APP_FUNC(0x00BD53B0, float, CinemachineCollisionImpulseSource_GetMassAndVelocity2D, (CinemachineCollisionImpulseSource * __this, Collider2D * other2d, Vector3 vel, MethodInfo * method)); +DO_APP_FUNC(0x00BD53B0, float, CinemachineCollisionImpulseSource_GetMassAndVelocity2D, (CinemachineCollisionImpulseSource * __this, Collider2D * other2d, Vector3 * vel, MethodInfo * method)); DO_APP_FUNC(0x00BD58B0, void, CinemachineCollisionImpulseSource_GenerateImpactEvent2D, (CinemachineCollisionImpulseSource * __this, Collider2D * other2d, Vector3 vel, MethodInfo * method)); DO_APP_FUNC(0x00BD5C60, void, CinemachineCollisionImpulseSource__ctor, (CinemachineCollisionImpulseSource * __this, MethodInfo * method)); DO_APP_FUNC(0x00BD5E30, float, CinemachineFixedSignal_get_SignalDuration, (CinemachineFixedSignal * __this, MethodInfo * method)); DO_APP_FUNC(0x00BD5E90, float, CinemachineFixedSignal_AxisDuration, (CinemachineFixedSignal * __this, AnimationCurve * axis, MethodInfo * method)); -DO_APP_FUNC(0x00BD5F90, void, CinemachineFixedSignal_GetSignal, (CinemachineFixedSignal * __this, float timeSinceSignalStart, Vector3 pos, Quaternion rot, MethodInfo * method)); +DO_APP_FUNC(0x00BD5F90, void, CinemachineFixedSignal_GetSignal, (CinemachineFixedSignal * __this, float timeSinceSignalStart, Vector3 * pos, Quaternion * rot, MethodInfo * method)); DO_APP_FUNC(0x00BD6170, float, CinemachineFixedSignal_AxisValue, (CinemachineFixedSignal * __this, AnimationCurve * axis, float time, MethodInfo * method)); DO_APP_FUNC(0x003BA2A0, void, CinemachineFixedSignal__ctor, (CinemachineFixedSignal * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CinemachineImpulseDefinitionPropertyAttribute__ctor, (CinemachineImpulseDefinitionPropertyAttribute * __this, MethodInfo * method)); @@ -94012,36 +105637,36 @@ DO_APP_FUNC(0x00BD7380, CinemachineImpulseManager_ImpulseEvent *, CinemachineImp DO_APP_FUNC(0x00BD77A0, void, CinemachineImpulseDefinition__ctor, (CinemachineImpulseDefinition * __this, MethodInfo * method)); DO_APP_FUNC(0x00BD7A40, void, CinemachineImpulseDefinition_SignalSource__ctor, (CinemachineImpulseDefinition_SignalSource * __this, CinemachineImpulseDefinition * def, Vector3 velocity, MethodInfo * method)); DO_APP_FUNC(0x00BD7AB0, float, CinemachineImpulseDefinition_SignalSource_get_SignalDuration, (CinemachineImpulseDefinition_SignalSource * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BD7AD0, void, CinemachineImpulseDefinition_SignalSource_GetSignal, (CinemachineImpulseDefinition_SignalSource * __this, float timeSinceSignalStart, Vector3 pos, Quaternion rot, MethodInfo * method)); +DO_APP_FUNC(0x00BD7AD0, void, CinemachineImpulseDefinition_SignalSource_GetSignal, (CinemachineImpulseDefinition_SignalSource * __this, float timeSinceSignalStart, Vector3 * pos, Quaternion * rot, MethodInfo * method)); DO_APP_FUNC(0x00BD7D00, void, CinemachineImpulseDefinition_LegacySignalSource__ctor, (CinemachineImpulseDefinition_LegacySignalSource * __this, CinemachineImpulseDefinition * def, Vector3 velocity, MethodInfo * method)); DO_APP_FUNC(0x00BD7DC0, float, CinemachineImpulseDefinition_LegacySignalSource_get_SignalDuration, (CinemachineImpulseDefinition_LegacySignalSource * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BD7E00, void, CinemachineImpulseDefinition_LegacySignalSource_GetSignal, (CinemachineImpulseDefinition_LegacySignalSource * __this, float timeSinceSignalStart, Vector3 pos, Quaternion rot, MethodInfo * method)); +DO_APP_FUNC(0x00BD7E00, void, CinemachineImpulseDefinition_LegacySignalSource_GetSignal, (CinemachineImpulseDefinition_LegacySignalSource * __this, float timeSinceSignalStart, Vector3 * pos, Quaternion * rot, MethodInfo * method)); DO_APP_FUNC(0x00BD82C0, void, CinemachineImpulseListener_Reset, (CinemachineImpulseListener * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BD8380, void, CinemachineImpulseListener_PostPipelineStageCallback, (CinemachineImpulseListener * __this, CinemachineVirtualCameraBase * vcam, CinemachineCore_Stage__Enum stage, CameraState state, float deltaTime, MethodInfo * method)); +DO_APP_FUNC(0x00BD8380, void, CinemachineImpulseListener_PostPipelineStageCallback, (CinemachineImpulseListener * __this, CinemachineVirtualCameraBase * vcam, CinemachineCore_Stage__Enum stage, CameraState * state, float deltaTime, MethodInfo * method)); DO_APP_FUNC(0x00BD8940, void, CinemachineImpulseListener__ctor, (CinemachineImpulseListener * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BD8990, void, CinemachineImpulseListener_ImpulseReaction_ReSeed, (CinemachineImpulseListener_ImpulseReaction__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BD8AC0, bool, CinemachineImpulseListener_ImpulseReaction_GetReaction, (CinemachineImpulseListener_ImpulseReaction__Boxed * __this, float deltaTime, Vector3 impulsePos, Vector3 pos, Quaternion rot, MethodInfo * method)); +DO_APP_FUNC(0x00BD8990, void, CinemachineImpulseListener_ImpulseReaction_ReSeed, (CinemachineImpulseListener_ImpulseReaction * __this, MethodInfo * method)); +DO_APP_FUNC(0x00BD8AC0, bool, CinemachineImpulseListener_ImpulseReaction_GetReaction, (CinemachineImpulseListener_ImpulseReaction * __this, float deltaTime, Vector3 impulsePos, Vector3 * pos, Quaternion * rot, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CinemachineImpulseEnvelopePropertyAttribute__ctor, (CinemachineImpulseEnvelopePropertyAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CinemachineImpulseChannelPropertyAttribute__ctor, (CinemachineImpulseChannelPropertyAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CinemachineImpulseManager__ctor, (CinemachineImpulseManager * __this, MethodInfo * method)); DO_APP_FUNC(0x00BD9090, CinemachineImpulseManager *, CinemachineImpulseManager_get_Instance, (MethodInfo * method)); DO_APP_FUNC(0x00BD9150, void, CinemachineImpulseManager_InitializeModule, (MethodInfo * method)); DO_APP_FUNC(0x00BD9290, float, CinemachineImpulseManager_EvaluateDissipationScale, (float spread, float normalizedDistance, MethodInfo * method)); -DO_APP_FUNC(0x00BD9390, bool, CinemachineImpulseManager_GetImpulseAt, (CinemachineImpulseManager * __this, Vector3 listenerLocation, bool distance2D, int32_t channelMask, Vector3 pos, Quaternion rot, MethodInfo * method)); +DO_APP_FUNC(0x00BD9390, bool, CinemachineImpulseManager_GetImpulseAt, (CinemachineImpulseManager * __this, Vector3 listenerLocation, bool distance2D, int32_t channelMask, Vector3 * pos, Quaternion * rot, MethodInfo * method)); DO_APP_FUNC(0x00BD98D0, float, CinemachineImpulseManager_get_CurrentTime, (CinemachineImpulseManager * __this, MethodInfo * method)); DO_APP_FUNC(0x00BD9970, CinemachineImpulseManager_ImpulseEvent *, CinemachineImpulseManager_NewImpulseEvent, (CinemachineImpulseManager * __this, MethodInfo * method)); DO_APP_FUNC(0x00BD9A70, void, CinemachineImpulseManager_AddImpulseEvent, (CinemachineImpulseManager * __this, CinemachineImpulseManager_ImpulseEvent * e, MethodInfo * method)); DO_APP_FUNC(0x00BD9B80, void, CinemachineImpulseManager_Clear, (CinemachineImpulseManager * __this, MethodInfo * method)); DO_APP_FUNC(0x00BD9C80, CinemachineImpulseManager_EnvelopeDefinition, CinemachineImpulseManager_EnvelopeDefinition_Default, (MethodInfo * method)); -DO_APP_FUNC(0x00BD9CA0, float, CinemachineImpulseManager_EnvelopeDefinition_get_Duration, (CinemachineImpulseManager_EnvelopeDefinition__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BD9CC0, float, CinemachineImpulseManager_EnvelopeDefinition_GetValueAt, (CinemachineImpulseManager_EnvelopeDefinition__Boxed * __this, float offset, MethodInfo * method)); -DO_APP_FUNC(0x00BD9E10, void, CinemachineImpulseManager_EnvelopeDefinition_ChangeStopTime, (CinemachineImpulseManager_EnvelopeDefinition__Boxed * __this, float offset, bool forceNoDecay, MethodInfo * method)); -DO_APP_FUNC(0x00BD9E40, void, CinemachineImpulseManager_EnvelopeDefinition_Clear, (CinemachineImpulseManager_EnvelopeDefinition__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BD9F00, void, CinemachineImpulseManager_EnvelopeDefinition_Validate, (CinemachineImpulseManager_EnvelopeDefinition__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00BD9CA0, float, CinemachineImpulseManager_EnvelopeDefinition_get_Duration, (CinemachineImpulseManager_EnvelopeDefinition * __this, MethodInfo * method)); +DO_APP_FUNC(0x00BD9CC0, float, CinemachineImpulseManager_EnvelopeDefinition_GetValueAt, (CinemachineImpulseManager_EnvelopeDefinition * __this, float offset, MethodInfo * method)); +DO_APP_FUNC(0x00BD9E10, void, CinemachineImpulseManager_EnvelopeDefinition_ChangeStopTime, (CinemachineImpulseManager_EnvelopeDefinition * __this, float offset, bool forceNoDecay, MethodInfo * method)); +DO_APP_FUNC(0x00BD9E40, void, CinemachineImpulseManager_EnvelopeDefinition_Clear, (CinemachineImpulseManager_EnvelopeDefinition * __this, MethodInfo * method)); +DO_APP_FUNC(0x00BD9F00, void, CinemachineImpulseManager_EnvelopeDefinition_Validate, (CinemachineImpulseManager_EnvelopeDefinition * __this, MethodInfo * method)); DO_APP_FUNC(0x00BD9F30, bool, CinemachineImpulseManager_ImpulseEvent_get_Expired, (CinemachineImpulseManager_ImpulseEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x00BD9FE0, void, CinemachineImpulseManager_ImpulseEvent_Cancel, (CinemachineImpulseManager_ImpulseEvent * __this, float time, bool forceNoDecay, MethodInfo * method)); DO_APP_FUNC(0x00BDA020, float, CinemachineImpulseManager_ImpulseEvent_DistanceDecay, (CinemachineImpulseManager_ImpulseEvent * __this, float distance, MethodInfo * method)); -DO_APP_FUNC(0x00BDA190, bool, CinemachineImpulseManager_ImpulseEvent_GetDecayedSignal, (CinemachineImpulseManager_ImpulseEvent * __this, Vector3 listenerPosition, bool use2D, Vector3 pos, Quaternion rot, MethodInfo * method)); +DO_APP_FUNC(0x00BDA190, bool, CinemachineImpulseManager_ImpulseEvent_GetDecayedSignal, (CinemachineImpulseManager_ImpulseEvent * __this, Vector3 listenerPosition, bool use2D, Vector3 * pos, Quaternion * rot, MethodInfo * method)); DO_APP_FUNC(0x00BDA8B0, void, CinemachineImpulseManager_ImpulseEvent_Clear, (CinemachineImpulseManager_ImpulseEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CinemachineImpulseManager_ImpulseEvent__ctor, (CinemachineImpulseManager_ImpulseEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x00BDA980, void, CinemachineImpulseSource_OnValidate, (CinemachineImpulseSource * __this, MethodInfo * method)); @@ -94059,9 +105684,9 @@ DO_APP_FUNC(0x00BDB180, void, CinemachineIndependentImpulseListener_OnEnable, (C DO_APP_FUNC(0x00BDB210, void, CinemachineIndependentImpulseListener_Update, (CinemachineIndependentImpulseListener * __this, MethodInfo * method)); DO_APP_FUNC(0x00BDB680, void, CinemachineIndependentImpulseListener_LateUpdate, (CinemachineIndependentImpulseListener * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, CinemachineIndependentImpulseListener__ctor, (CinemachineIndependentImpulseListener * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BDBF80, void, ClipperLib_DoublePoint__ctor, (ClipperLib_DoublePoint__Boxed * __this, double x, double y, MethodInfo * method)); -DO_APP_FUNC(0x00BDBF90, void, ClipperLib_DoublePoint__ctor_1, (ClipperLib_DoublePoint__Boxed * __this, ClipperLib_DoublePoint dp, MethodInfo * method)); -DO_APP_FUNC(0x00BDBFA0, void, ClipperLib_DoublePoint__ctor_2, (ClipperLib_DoublePoint__Boxed * __this, ClipperLib_IntPoint ip, MethodInfo * method)); +DO_APP_FUNC(0x00BDBF80, void, ClipperLib_DoublePoint__ctor, (ClipperLib_DoublePoint * __this, double x, double y, MethodInfo * method)); +DO_APP_FUNC(0x00BDBF90, void, ClipperLib_DoublePoint__ctor_1, (ClipperLib_DoublePoint * __this, ClipperLib_DoublePoint dp, MethodInfo * method)); +DO_APP_FUNC(0x00BDBFA0, void, ClipperLib_DoublePoint__ctor_2, (ClipperLib_DoublePoint * __this, ClipperLib_IntPoint ip, MethodInfo * method)); DO_APP_FUNC(0x00BDBFC0, void, ClipperLib_PolyTree_Clear, (ClipperLib_PolyTree * __this, MethodInfo * method)); DO_APP_FUNC(0x00BDC0F0, ClipperLib_PolyNode *, ClipperLib_PolyTree_GetFirst, (ClipperLib_PolyTree * __this, MethodInfo * method)); DO_APP_FUNC(0x00BDC180, int32_t, ClipperLib_PolyTree_get_Total, (ClipperLib_PolyTree * __this, MethodInfo * method)); @@ -94078,14 +105703,14 @@ DO_APP_FUNC(0x00BDC300, bool, ClipperLib_PolyNode_get_IsHole, (ClipperLib_PolyNo DO_APP_FUNC(0x00424C90, bool, ClipperLib_PolyNode_get_IsOpen, (ClipperLib_PolyNode * __this, MethodInfo * method)); DO_APP_FUNC(0x00424CA0, void, ClipperLib_PolyNode_set_IsOpen, (ClipperLib_PolyNode * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x00BDC5A0, void, ClipperLib_PolyNode__ctor, (ClipperLib_PolyNode * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BDC700, void, ClipperLib_Int128__ctor, (ClipperLib_Int128__Boxed * __this, int64_t _lo, MethodInfo * method)); -DO_APP_FUNC(0x00BDC710, void, ClipperLib_Int128__ctor_1, (ClipperLib_Int128__Boxed * __this, int64_t _hi, uint64_t _lo, MethodInfo * method)); -DO_APP_FUNC(0x00BDBF90, void, ClipperLib_Int128__ctor_2, (ClipperLib_Int128__Boxed * __this, ClipperLib_Int128 val, MethodInfo * method)); -DO_APP_FUNC(0x00BDC720, bool, ClipperLib_Int128_IsNegative, (ClipperLib_Int128__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00BDC700, void, ClipperLib_Int128__ctor, (ClipperLib_Int128 * __this, int64_t _lo, MethodInfo * method)); +DO_APP_FUNC(0x00BDC710, void, ClipperLib_Int128__ctor_1, (ClipperLib_Int128 * __this, int64_t _hi, uint64_t _lo, MethodInfo * method)); +DO_APP_FUNC(0x00BDBF90, void, ClipperLib_Int128__ctor_2, (ClipperLib_Int128 * __this, ClipperLib_Int128 val, MethodInfo * method)); +DO_APP_FUNC(0x00BDC720, bool, ClipperLib_Int128_IsNegative, (ClipperLib_Int128 * __this, MethodInfo * method)); DO_APP_FUNC(0x00BDC730, bool, ClipperLib_Int128_op_Equality, (ClipperLib_Int128 val1, ClipperLib_Int128 val2, MethodInfo * method)); DO_APP_FUNC(0x00BDC7F0, bool, ClipperLib_Int128_op_Inequality, (ClipperLib_Int128 val1, ClipperLib_Int128 val2, MethodInfo * method)); -DO_APP_FUNC(0x00BDC8B0, bool, ClipperLib_Int128_Equals, (ClipperLib_Int128__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x00BDC940, int32_t, ClipperLib_Int128_GetHashCode, (ClipperLib_Int128__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00BDC8B0, bool, ClipperLib_Int128_Equals, (ClipperLib_Int128 * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x00BDC940, int32_t, ClipperLib_Int128_GetHashCode, (ClipperLib_Int128 * __this, MethodInfo * method)); DO_APP_FUNC(0x00BDC960, bool, ClipperLib_Int128_op_GreaterThan, (ClipperLib_Int128 val1, ClipperLib_Int128 val2, MethodInfo * method)); DO_APP_FUNC(0x00BDC980, bool, ClipperLib_Int128_op_LessThan, (ClipperLib_Int128 val1, ClipperLib_Int128 val2, MethodInfo * method)); DO_APP_FUNC(0x00BDC9A0, ClipperLib_Int128, ClipperLib_Int128_op_Addition, (ClipperLib_Int128 lhs, ClipperLib_Int128 rhs, MethodInfo * method)); @@ -94093,15 +105718,15 @@ DO_APP_FUNC(0x00BDC9D0, ClipperLib_Int128, ClipperLib_Int128_op_Subtraction, (Cl DO_APP_FUNC(0x00BDCA40, ClipperLib_Int128, ClipperLib_Int128_op_UnaryNegation, (ClipperLib_Int128 val, MethodInfo * method)); DO_APP_FUNC(0x00BDCA80, double, ClipperLib_Int128_op_Explicit, (ClipperLib_Int128 val, MethodInfo * method)); DO_APP_FUNC(0x00BDCB40, ClipperLib_Int128, ClipperLib_Int128_Int128Mul, (int64_t lhs, int64_t rhs, MethodInfo * method)); -DO_APP_FUNC(0x00BDCC10, void, ClipperLib_IntPoint__ctor, (ClipperLib_IntPoint__Boxed * __this, int64_t X, int64_t Y, MethodInfo * method)); -DO_APP_FUNC(0x00BDCC20, void, ClipperLib_IntPoint__ctor_1, (ClipperLib_IntPoint__Boxed * __this, double x, double y, MethodInfo * method)); -DO_APP_FUNC(0x00BDBF90, void, ClipperLib_IntPoint__ctor_2, (ClipperLib_IntPoint__Boxed * __this, ClipperLib_IntPoint pt, MethodInfo * method)); +DO_APP_FUNC(0x00BDCC10, void, ClipperLib_IntPoint__ctor, (ClipperLib_IntPoint * __this, int64_t X, int64_t Y, MethodInfo * method)); +DO_APP_FUNC(0x00BDCC20, void, ClipperLib_IntPoint__ctor_1, (ClipperLib_IntPoint * __this, double x, double y, MethodInfo * method)); +DO_APP_FUNC(0x00BDBF90, void, ClipperLib_IntPoint__ctor_2, (ClipperLib_IntPoint * __this, ClipperLib_IntPoint pt, MethodInfo * method)); DO_APP_FUNC(0x00A2BE50, bool, ClipperLib_IntPoint_op_Equality, (ClipperLib_IntPoint a, ClipperLib_IntPoint b, MethodInfo * method)); DO_APP_FUNC(0x00A2BE70, bool, ClipperLib_IntPoint_op_Inequality, (ClipperLib_IntPoint a, ClipperLib_IntPoint b, MethodInfo * method)); -DO_APP_FUNC(0x00BDCC40, bool, ClipperLib_IntPoint_Equals, (ClipperLib_IntPoint__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x00BDCCD0, int32_t, ClipperLib_IntPoint_GetHashCode, (ClipperLib_IntPoint__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BDCD30, void, ClipperLib_IntRect__ctor, (ClipperLib_IntRect__Boxed * __this, int64_t l, int64_t t, int64_t r, int64_t b, MethodInfo * method)); -DO_APP_FUNC(0x00BDCD50, void, ClipperLib_IntRect__ctor_1, (ClipperLib_IntRect__Boxed * __this, ClipperLib_IntRect ir, MethodInfo * method)); +DO_APP_FUNC(0x00BDCC40, bool, ClipperLib_IntPoint_Equals, (ClipperLib_IntPoint * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x00BDCCD0, int32_t, ClipperLib_IntPoint_GetHashCode, (ClipperLib_IntPoint * __this, MethodInfo * method)); +DO_APP_FUNC(0x00BDCD30, void, ClipperLib_IntRect__ctor, (ClipperLib_IntRect * __this, int64_t l, int64_t t, int64_t r, int64_t b, MethodInfo * method)); +DO_APP_FUNC(0x00BDCD50, void, ClipperLib_IntRect__ctor_1, (ClipperLib_IntRect * __this, ClipperLib_IntRect ir, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ClipperLib_TEdge__ctor, (ClipperLib_TEdge * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ClipperLib_IntersectNode__ctor, (ClipperLib_IntersectNode * __this, MethodInfo * method)); DO_APP_FUNC(0x00BDCD70, int32_t, ClipperLib_MyIntersectNodeSort_Compare, (ClipperLib_MyIntersectNodeSort * __this, ClipperLib_IntersectNode * node1, ClipperLib_IntersectNode * node2, MethodInfo * method)); @@ -94115,7 +105740,7 @@ DO_APP_FUNC(0x003AE050, void, ClipperLib_Join__ctor, (ClipperLib_Join * __this, DO_APP_FUNC(0x00BDCDB0, bool, ClipperLib_ClipperBase_near_zero, (double val, MethodInfo * method)); DO_APP_FUNC(0x005C2B60, bool, ClipperLib_ClipperBase_get_PreserveCollinear, (ClipperLib_ClipperBase * __this, MethodInfo * method)); DO_APP_FUNC(0x00BDCDD0, void, ClipperLib_ClipperBase_set_PreserveCollinear, (ClipperLib_ClipperBase * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x00BDCDE0, void, ClipperLib_ClipperBase_Swap, (ClipperLib_ClipperBase * __this, int64_t val1, int64_t val2, MethodInfo * method)); +DO_APP_FUNC(0x00BDCDE0, void, ClipperLib_ClipperBase_Swap, (ClipperLib_ClipperBase * __this, int64_t * val1, int64_t * val2, MethodInfo * method)); DO_APP_FUNC(0x00BDCDF0, bool, ClipperLib_ClipperBase_IsHorizontal, (ClipperLib_TEdge * e, MethodInfo * method)); DO_APP_FUNC(0x00BDCE10, bool, ClipperLib_ClipperBase_PointIsVertex, (ClipperLib_ClipperBase * __this, ClipperLib_IntPoint pt, ClipperLib_OutPt * pp, MethodInfo * method)); DO_APP_FUNC(0x00BDCE60, bool, ClipperLib_ClipperBase_PointOnLineSegment, (ClipperLib_ClipperBase * __this, ClipperLib_IntPoint pt, ClipperLib_IntPoint linePt1, ClipperLib_IntPoint linePt2, bool UseFullRange, MethodInfo * method)); @@ -94126,27 +105751,30 @@ DO_APP_FUNC(0x00BDD4D0, bool, ClipperLib_ClipperBase_SlopesEqual_2, (ClipperLib_ DO_APP_FUNC(0x00BDD620, void, ClipperLib_ClipperBase__ctor, (ClipperLib_ClipperBase * __this, MethodInfo * method)); DO_APP_FUNC(0x00BDD790, void, ClipperLib_ClipperBase_Clear, (ClipperLib_ClipperBase * __this, MethodInfo * method)); DO_APP_FUNC(0x00BDDA90, void, ClipperLib_ClipperBase_DisposeLocalMinimaList, (ClipperLib_ClipperBase * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BDDBD0, void, ClipperLib_ClipperBase_RangeTest, (ClipperLib_ClipperBase * __this, ClipperLib_IntPoint Pt, bool useFullRange, MethodInfo * method)); +DO_APP_FUNC(0x00BDDBD0, void, ClipperLib_ClipperBase_RangeTest, (ClipperLib_ClipperBase * __this, ClipperLib_IntPoint Pt, bool * useFullRange, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0BC0, ClipperLib_ClipperBase_RangeTest__MethodInfo); DO_APP_FUNC(0x00BDDCB0, void, ClipperLib_ClipperBase_InitEdge, (ClipperLib_ClipperBase * __this, ClipperLib_TEdge * e, ClipperLib_TEdge * eNext, ClipperLib_TEdge * ePrev, ClipperLib_IntPoint pt, MethodInfo * method)); DO_APP_FUNC(0x00BDDD90, void, ClipperLib_ClipperBase_InitEdge2, (ClipperLib_ClipperBase * __this, ClipperLib_TEdge * e, ClipperLib_PolyType__Enum polyType, MethodInfo * method)); DO_APP_FUNC(0x00BDDE40, ClipperLib_TEdge *, ClipperLib_ClipperBase_FindNextLocMin, (ClipperLib_ClipperBase * __this, ClipperLib_TEdge * E, MethodInfo * method)); DO_APP_FUNC(0x00BDDF40, ClipperLib_TEdge *, ClipperLib_ClipperBase_ProcessBound, (ClipperLib_ClipperBase * __this, ClipperLib_TEdge * E, bool LeftBoundIsForward, MethodInfo * method)); DO_APP_FUNC(0x00BDE610, bool, ClipperLib_ClipperBase_AddPath, (ClipperLib_ClipperBase * __this, List_1_Cinemachine_ClipperLib_IntPoint_ * pg, ClipperLib_PolyType__Enum polyType, bool Closed, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0B80, ClipperLib_ClipperBase_AddPath__MethodInfo); DO_APP_FUNC(0x00BDF850, bool, ClipperLib_ClipperBase_AddPaths, (ClipperLib_ClipperBase * __this, List_1_List_1_Cinemachine_ClipperLib_IntPoint_ * ppg, ClipperLib_PolyType__Enum polyType, bool closed, MethodInfo * method)); DO_APP_FUNC(0x00BDF940, bool, ClipperLib_ClipperBase_Pt2IsBetweenPt1AndPt3, (ClipperLib_ClipperBase * __this, ClipperLib_IntPoint pt1, ClipperLib_IntPoint pt2, ClipperLib_IntPoint pt3, MethodInfo * method)); DO_APP_FUNC(0x00BDF9B0, ClipperLib_TEdge *, ClipperLib_ClipperBase_RemoveEdge, (ClipperLib_ClipperBase * __this, ClipperLib_TEdge * e, MethodInfo * method)); DO_APP_FUNC(0x00BDFB00, void, ClipperLib_ClipperBase_SetDx, (ClipperLib_ClipperBase * __this, ClipperLib_TEdge * e, MethodInfo * method)); DO_APP_FUNC(0x00BDFB60, void, ClipperLib_ClipperBase_InsertLocalMinima, (ClipperLib_ClipperBase * __this, ClipperLib_LocalMinima * newLm, MethodInfo * method)); -DO_APP_FUNC(0x00BDFD80, bool, ClipperLib_ClipperBase_PopLocalMinima, (ClipperLib_ClipperBase * __this, int64_t Y, ClipperLib_LocalMinima * current, MethodInfo * method)); +DO_APP_FUNC(0x00BDFD80, bool, ClipperLib_ClipperBase_PopLocalMinima, (ClipperLib_ClipperBase * __this, int64_t Y, ClipperLib_LocalMinima * * current, MethodInfo * method)); DO_APP_FUNC(0x00BDFE70, void, ClipperLib_ClipperBase_ReverseHorizontal, (ClipperLib_ClipperBase * __this, ClipperLib_TEdge * e, MethodInfo * method)); DO_APP_FUNC(0x00BDFEA0, void, ClipperLib_ClipperBase_Reset, (ClipperLib_ClipperBase * __this, MethodInfo * method)); DO_APP_FUNC(0x00BE0320, ClipperLib_IntRect, ClipperLib_ClipperBase_GetBounds, (List_1_List_1_Cinemachine_ClipperLib_IntPoint_ * paths, MethodInfo * method)); DO_APP_FUNC(0x00BE07A0, void, ClipperLib_ClipperBase_InsertScanbeam, (ClipperLib_ClipperBase * __this, int64_t Y, MethodInfo * method)); -DO_APP_FUNC(0x00BE0AB0, bool, ClipperLib_ClipperBase_PopScanbeam, (ClipperLib_ClipperBase * __this, int64_t Y, MethodInfo * method)); +DO_APP_FUNC(0x00BE0AB0, bool, ClipperLib_ClipperBase_PopScanbeam, (ClipperLib_ClipperBase * __this, int64_t * Y, MethodInfo * method)); DO_APP_FUNC(0x00BE0B40, bool, ClipperLib_ClipperBase_LocalMinimaPending, (ClipperLib_ClipperBase * __this, MethodInfo * method)); DO_APP_FUNC(0x00BE0B50, ClipperLib_OutRec *, ClipperLib_ClipperBase_CreateOutRec, (ClipperLib_ClipperBase * __this, MethodInfo * method)); DO_APP_FUNC(0x00BE0D80, void, ClipperLib_ClipperBase_DisposeOutRec, (ClipperLib_ClipperBase * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00BE0E90, void, ClipperLib_ClipperBase_UpdateEdgeIntoAEL, (ClipperLib_ClipperBase * __this, ClipperLib_TEdge * e, MethodInfo * method)); +DO_APP_FUNC(0x00BE0E90, void, ClipperLib_ClipperBase_UpdateEdgeIntoAEL, (ClipperLib_ClipperBase * __this, ClipperLib_TEdge * * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0B50, ClipperLib_ClipperBase_UpdateEdgeIntoAEL__MethodInfo); DO_APP_FUNC(0x00BE1270, void, ClipperLib_ClipperBase_SwapPositionsInAEL, (ClipperLib_ClipperBase * __this, ClipperLib_TEdge * edge1, ClipperLib_TEdge * edge2, MethodInfo * method)); DO_APP_FUNC(0x00BE1530, void, ClipperLib_ClipperBase_DeleteFromAEL, (ClipperLib_ClipperBase * __this, ClipperLib_TEdge * e, MethodInfo * method)); DO_APP_FUNC(0x00BE1750, void, ClipperLib_Clipper__ctor, (ClipperLib_Clipper * __this, int32_t InitOptions, MethodInfo * method)); @@ -94158,6 +105786,7 @@ DO_APP_FUNC(0x00BE2200, void, ClipperLib_Clipper_set_StrictlySimple, (ClipperLib DO_APP_FUNC(0x00BE2210, bool, ClipperLib_Clipper_Execute, (ClipperLib_Clipper * __this, ClipperLib_ClipType__Enum clipType, List_1_List_1_Cinemachine_ClipperLib_IntPoint_ * solution, ClipperLib_PolyFillType__Enum FillType, MethodInfo * method)); DO_APP_FUNC(0x00BE2230, bool, ClipperLib_Clipper_Execute_1, (ClipperLib_Clipper * __this, ClipperLib_ClipType__Enum clipType, ClipperLib_PolyTree * polytree, ClipperLib_PolyFillType__Enum FillType, MethodInfo * method)); DO_APP_FUNC(0x00BE2250, bool, ClipperLib_Clipper_Execute_2, (ClipperLib_Clipper * __this, ClipperLib_ClipType__Enum clipType, List_1_List_1_Cinemachine_ClipperLib_IntPoint_ * solution, ClipperLib_PolyFillType__Enum subjFillType, ClipperLib_PolyFillType__Enum clipFillType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0AF0, ClipperLib_Clipper_Execute_2__MethodInfo); DO_APP_FUNC(0x00BE2400, bool, ClipperLib_Clipper_Execute_3, (ClipperLib_Clipper * __this, ClipperLib_ClipType__Enum clipType, ClipperLib_PolyTree * polytree, ClipperLib_PolyFillType__Enum subjFillType, ClipperLib_PolyFillType__Enum clipFillType, MethodInfo * method)); DO_APP_FUNC(0x00BE24E0, void, ClipperLib_Clipper_FixHoleLinkage, (ClipperLib_Clipper * __this, ClipperLib_OutRec * outRec, MethodInfo * method)); DO_APP_FUNC(0x00BE2580, bool, ClipperLib_Clipper_ExecuteInternal, (ClipperLib_Clipper * __this, MethodInfo * method)); @@ -94172,14 +105801,14 @@ DO_APP_FUNC(0x00BE3BC0, bool, ClipperLib_Clipper_IsEvenOddAltFillType, (ClipperL DO_APP_FUNC(0x00BE3BF0, bool, ClipperLib_Clipper_IsContributing, (ClipperLib_Clipper * __this, ClipperLib_TEdge * edge, MethodInfo * method)); DO_APP_FUNC(0x00BE3D90, void, ClipperLib_Clipper_SetWindingCount, (ClipperLib_Clipper * __this, ClipperLib_TEdge * edge, MethodInfo * method)); DO_APP_FUNC(0x00BE3FD0, void, ClipperLib_Clipper_AddEdgeToSEL, (ClipperLib_Clipper * __this, ClipperLib_TEdge * edge, MethodInfo * method)); -DO_APP_FUNC(0x00BE4290, bool, ClipperLib_Clipper_PopEdgeFromSEL, (ClipperLib_Clipper * __this, ClipperLib_TEdge * e, MethodInfo * method)); +DO_APP_FUNC(0x00BE4290, bool, ClipperLib_Clipper_PopEdgeFromSEL, (ClipperLib_Clipper * __this, ClipperLib_TEdge * * e, MethodInfo * method)); DO_APP_FUNC(0x00BE44A0, void, ClipperLib_Clipper_CopyAELToSEL, (ClipperLib_Clipper * __this, MethodInfo * method)); DO_APP_FUNC(0x00BE45D0, void, ClipperLib_Clipper_SwapPositionsInSEL, (ClipperLib_Clipper * __this, ClipperLib_TEdge * edge1, ClipperLib_TEdge * edge2, MethodInfo * method)); DO_APP_FUNC(0x00BE4A00, void, ClipperLib_Clipper_AddLocalMaxPoly, (ClipperLib_Clipper * __this, ClipperLib_TEdge * e1, ClipperLib_TEdge * e2, ClipperLib_IntPoint pt, MethodInfo * method)); DO_APP_FUNC(0x00BE4AC0, ClipperLib_OutPt *, ClipperLib_Clipper_AddLocalMinPoly, (ClipperLib_Clipper * __this, ClipperLib_TEdge * e1, ClipperLib_TEdge * e2, ClipperLib_IntPoint pt, MethodInfo * method)); DO_APP_FUNC(0x00BE4D60, ClipperLib_OutPt *, ClipperLib_Clipper_AddOutPt, (ClipperLib_Clipper * __this, ClipperLib_TEdge * e, ClipperLib_IntPoint pt, MethodInfo * method)); DO_APP_FUNC(0x00BE5180, ClipperLib_OutPt *, ClipperLib_Clipper_GetLastOutPt, (ClipperLib_Clipper * __this, ClipperLib_TEdge * e, MethodInfo * method)); -DO_APP_FUNC(0x00BE5220, void, ClipperLib_Clipper_SwapPoints, (ClipperLib_Clipper * __this, ClipperLib_IntPoint pt1, ClipperLib_IntPoint pt2, MethodInfo * method)); +DO_APP_FUNC(0x00BE5220, void, ClipperLib_Clipper_SwapPoints, (ClipperLib_Clipper * __this, ClipperLib_IntPoint * pt1, ClipperLib_IntPoint * pt2, MethodInfo * method)); DO_APP_FUNC(0x00BE5250, bool, ClipperLib_Clipper_HorzSegmentsOverlap, (ClipperLib_Clipper * __this, int64_t seg1a, int64_t seg1b, int64_t seg2a, int64_t seg2b, MethodInfo * method)); DO_APP_FUNC(0x00BE5290, void, ClipperLib_Clipper_SetHoleState, (ClipperLib_Clipper * __this, ClipperLib_TEdge * e, ClipperLib_OutRec * outRec, MethodInfo * method)); DO_APP_FUNC(0x00BE5460, double, ClipperLib_Clipper_GetDx, (ClipperLib_Clipper * __this, ClipperLib_IntPoint pt1, ClipperLib_IntPoint pt2, MethodInfo * method)); @@ -94195,7 +105824,7 @@ DO_APP_FUNC(0x00BE6D60, void, ClipperLib_Clipper_SwapPolyIndexes, (ClipperLib_TE DO_APP_FUNC(0x00BE6D90, void, ClipperLib_Clipper_IntersectEdges, (ClipperLib_Clipper * __this, ClipperLib_TEdge * e1, ClipperLib_TEdge * e2, ClipperLib_IntPoint pt, MethodInfo * method)); DO_APP_FUNC(0x00BE73A0, void, ClipperLib_Clipper_DeleteFromSEL, (ClipperLib_Clipper * __this, ClipperLib_TEdge * e, MethodInfo * method)); DO_APP_FUNC(0x00BE75C0, void, ClipperLib_Clipper_ProcessHorizontals, (ClipperLib_Clipper * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BE7810, void, ClipperLib_Clipper_GetHorzDirection, (ClipperLib_Clipper * __this, ClipperLib_TEdge * HorzEdge, ClipperLib_Direction__Enum Dir, int64_t Left, int64_t Right, MethodInfo * method)); +DO_APP_FUNC(0x00BE7810, void, ClipperLib_Clipper_GetHorzDirection, (ClipperLib_Clipper * __this, ClipperLib_TEdge * HorzEdge, ClipperLib_Direction__Enum * Dir, int64_t * Left, int64_t * Right, MethodInfo * method)); DO_APP_FUNC(0x00BE7870, void, ClipperLib_Clipper_ProcessHorizontal, (ClipperLib_Clipper * __this, ClipperLib_TEdge * horzEdge, MethodInfo * method)); DO_APP_FUNC(0x00BE8290, ClipperLib_TEdge *, ClipperLib_Clipper_GetNextInAEL, (ClipperLib_Clipper * __this, ClipperLib_TEdge * e, ClipperLib_Direction__Enum Direction, MethodInfo * method)); DO_APP_FUNC(0x00BE82C0, bool, ClipperLib_Clipper_IsMinima, (ClipperLib_Clipper * __this, ClipperLib_TEdge * e, MethodInfo * method)); @@ -94204,6 +105833,7 @@ DO_APP_FUNC(0x00BE8330, bool, ClipperLib_Clipper_IsIntermediate, (ClipperLib_Cli DO_APP_FUNC(0x00BE8370, ClipperLib_TEdge *, ClipperLib_Clipper_GetMaximaPair, (ClipperLib_Clipper * __this, ClipperLib_TEdge * e, MethodInfo * method)); DO_APP_FUNC(0x00BE83F0, ClipperLib_TEdge *, ClipperLib_Clipper_GetMaximaPairEx, (ClipperLib_Clipper * __this, ClipperLib_TEdge * e, MethodInfo * method)); DO_APP_FUNC(0x00BE84B0, bool, ClipperLib_Clipper_ProcessIntersections, (ClipperLib_Clipper * __this, int64_t topY, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0A88, ClipperLib_Clipper_ProcessIntersections__MethodInfo); DO_APP_FUNC(0x00BE8740, void, ClipperLib_Clipper_BuildIntersectList, (ClipperLib_Clipper * __this, int64_t topY, MethodInfo * method)); DO_APP_FUNC(0x00BE8B10, bool, ClipperLib_Clipper_EdgesAdjacent, (ClipperLib_Clipper * __this, ClipperLib_IntersectNode * inode, MethodInfo * method)); DO_APP_FUNC(0x00BE8B50, int32_t, ClipperLib_Clipper_IntersectNodeSort, (ClipperLib_IntersectNode * node1, ClipperLib_IntersectNode * node2, MethodInfo * method)); @@ -94211,9 +105841,10 @@ DO_APP_FUNC(0x00BE8B70, bool, ClipperLib_Clipper_FixupIntersectionOrder, (Clippe DO_APP_FUNC(0x00BE8F10, void, ClipperLib_Clipper_ProcessIntersectList, (ClipperLib_Clipper * __this, MethodInfo * method)); DO_APP_FUNC(0x00BE9060, int64_t, ClipperLib_Clipper_Round, (double value, MethodInfo * method)); DO_APP_FUNC(0x00BE9090, int64_t, ClipperLib_Clipper_TopX, (ClipperLib_TEdge * edge, int64_t currentY, MethodInfo * method)); -DO_APP_FUNC(0x00BE9100, void, ClipperLib_Clipper_IntersectPoint, (ClipperLib_Clipper * __this, ClipperLib_TEdge * edge1, ClipperLib_TEdge * edge2, ClipperLib_IntPoint ip, MethodInfo * method)); +DO_APP_FUNC(0x00BE9100, void, ClipperLib_Clipper_IntersectPoint, (ClipperLib_Clipper * __this, ClipperLib_TEdge * edge1, ClipperLib_TEdge * edge2, ClipperLib_IntPoint * ip, MethodInfo * method)); DO_APP_FUNC(0x00BE9580, void, ClipperLib_Clipper_ProcessEdgesAtTopOfScanbeam, (ClipperLib_Clipper * __this, int64_t topY, MethodInfo * method)); DO_APP_FUNC(0x00BE9B10, void, ClipperLib_Clipper_DoMaxima, (ClipperLib_Clipper * __this, ClipperLib_TEdge * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0A40, ClipperLib_Clipper_DoMaxima__MethodInfo); DO_APP_FUNC(0x00BE9D80, void, ClipperLib_Clipper_ReversePaths, (List_1_List_1_Cinemachine_ClipperLib_IntPoint_ * polys, MethodInfo * method)); DO_APP_FUNC(0x00BE9F50, bool, ClipperLib_Clipper_Orientation, (List_1_Cinemachine_ClipperLib_IntPoint_ * poly, MethodInfo * method)); DO_APP_FUNC(0x00BE9F70, int32_t, ClipperLib_Clipper_PointCount, (ClipperLib_Clipper * __this, ClipperLib_OutPt * pts, MethodInfo * method)); @@ -94222,7 +105853,7 @@ DO_APP_FUNC(0x00BEA1E0, void, ClipperLib_Clipper_BuildResult2, (ClipperLib_Clipp DO_APP_FUNC(0x00BEA570, void, ClipperLib_Clipper_FixupOutPolyline, (ClipperLib_Clipper * __this, ClipperLib_OutRec * outrec, MethodInfo * method)); DO_APP_FUNC(0x00BEA680, void, ClipperLib_Clipper_FixupOutPolygon, (ClipperLib_Clipper * __this, ClipperLib_OutRec * outRec, MethodInfo * method)); DO_APP_FUNC(0x00BEAB80, ClipperLib_OutPt *, ClipperLib_Clipper_DupOutPt, (ClipperLib_Clipper * __this, ClipperLib_OutPt * outPt, bool InsertAfter, MethodInfo * method)); -DO_APP_FUNC(0x00BEAEC0, bool, ClipperLib_Clipper_GetOverlap, (ClipperLib_Clipper * __this, int64_t a1, int64_t a2, int64_t b1, int64_t b2, int64_t Left, int64_t Right, MethodInfo * method)); +DO_APP_FUNC(0x00BEAEC0, bool, ClipperLib_Clipper_GetOverlap, (ClipperLib_Clipper * __this, int64_t a1, int64_t a2, int64_t b1, int64_t b2, int64_t * Left, int64_t * Right, MethodInfo * method)); DO_APP_FUNC(0x00BEAFE0, bool, ClipperLib_Clipper_JoinHorz, (ClipperLib_Clipper * __this, ClipperLib_OutPt * op1, ClipperLib_OutPt * op1b, ClipperLib_OutPt * op2, ClipperLib_OutPt * op2b, ClipperLib_IntPoint Pt, bool DiscardLeft, MethodInfo * method)); DO_APP_FUNC(0x00BEB5F0, bool, ClipperLib_Clipper_JoinPoints, (ClipperLib_Clipper * __this, ClipperLib_Join * j, ClipperLib_OutRec * outRec1, ClipperLib_OutRec * outRec2, MethodInfo * method)); DO_APP_FUNC(0x00BEC990, int32_t, ClipperLib_Clipper_PointInPolygon, (ClipperLib_IntPoint pt, List_1_Cinemachine_ClipperLib_IntPoint_ * path, MethodInfo * method)); @@ -94268,9 +105899,9 @@ DO_APP_FUNC(0x00BF0F00, void, ClipperLib_ClipperOffset_AddPaths, (ClipperLib_Cli DO_APP_FUNC(0x00BF1090, void, ClipperLib_ClipperOffset_FixOrientations, (ClipperLib_ClipperOffset * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF1310, ClipperLib_DoublePoint, ClipperLib_ClipperOffset_GetUnitNormal, (ClipperLib_IntPoint pt1, ClipperLib_IntPoint pt2, MethodInfo * method)); DO_APP_FUNC(0x00BF1410, void, ClipperLib_ClipperOffset_DoOffset, (ClipperLib_ClipperOffset * __this, double delta, MethodInfo * method)); -DO_APP_FUNC(0x00BF2A70, void, ClipperLib_ClipperOffset_Execute, (ClipperLib_ClipperOffset * __this, List_1_List_1_Cinemachine_ClipperLib_IntPoint_ * solution, double delta, MethodInfo * method)); -DO_APP_FUNC(0x00BF2F80, void, ClipperLib_ClipperOffset_Execute_1, (ClipperLib_ClipperOffset * __this, ClipperLib_PolyTree * solution, double delta, MethodInfo * method)); -DO_APP_FUNC(0x00BF36C0, void, ClipperLib_ClipperOffset_OffsetPoint, (ClipperLib_ClipperOffset * __this, int32_t j, int32_t k, ClipperLib_JoinType__Enum jointype, MethodInfo * method)); +DO_APP_FUNC(0x00BF2A70, void, ClipperLib_ClipperOffset_Execute, (ClipperLib_ClipperOffset * __this, List_1_List_1_Cinemachine_ClipperLib_IntPoint_ * * solution, double delta, MethodInfo * method)); +DO_APP_FUNC(0x00BF2F80, void, ClipperLib_ClipperOffset_Execute_1, (ClipperLib_ClipperOffset * __this, ClipperLib_PolyTree * * solution, double delta, MethodInfo * method)); +DO_APP_FUNC(0x00BF36C0, void, ClipperLib_ClipperOffset_OffsetPoint, (ClipperLib_ClipperOffset * __this, int32_t j, int32_t * k, ClipperLib_JoinType__Enum jointype, MethodInfo * method)); DO_APP_FUNC(0x00BF40D0, void, ClipperLib_ClipperOffset_DoSquare, (ClipperLib_ClipperOffset * __this, int32_t j, int32_t k, MethodInfo * method)); DO_APP_FUNC(0x00BF4710, void, ClipperLib_ClipperOffset_DoMiter, (ClipperLib_ClipperOffset * __this, int32_t j, int32_t k, double r, MethodInfo * method)); DO_APP_FUNC(0x00BF49C0, void, ClipperLib_ClipperOffset_DoRound, (ClipperLib_ClipperOffset * __this, int32_t j, int32_t k, MethodInfo * method)); @@ -94279,9 +105910,11 @@ DO_APP_FUNC(0x00BF5010, bool, CinemachinePostProcessing_get_IsValid, (Cinemachin DO_APP_FUNC(0x00BF5150, void, CinemachinePostProcessing_InvalidateCachedProfile, (CinemachinePostProcessing * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF5220, void, CinemachinePostProcessing_OnEnable, (CinemachinePostProcessing * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF5370, void, CinemachinePostProcessing_OnDestroy, (CinemachinePostProcessing * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BF5450, void, CinemachinePostProcessing_PostPipelineStageCallback, (CinemachinePostProcessing * __this, CinemachineVirtualCameraBase * vcam, CinemachineCore_Stage__Enum stage, CameraState state, float deltaTime, MethodInfo * method)); +DO_APP_FUNC(0x00BF5450, void, CinemachinePostProcessing_PostPipelineStageCallback, (CinemachinePostProcessing * __this, CinemachineVirtualCameraBase * vcam, CinemachineCore_Stage__Enum stage, CameraState * state, float deltaTime, MethodInfo * method)); DO_APP_FUNC(0x00BF5AC0, void, CinemachinePostProcessing_OnCameraCut, (CinemachineBrain * brain, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1990, CinemachinePostProcessing_OnCameraCut__MethodInfo); DO_APP_FUNC(0x00BF5BF0, void, CinemachinePostProcessing_ApplyPostFX, (CinemachineBrain * brain, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1928, CinemachinePostProcessing_ApplyPostFX__MethodInfo); DO_APP_FUNC(0x00BF6320, List_1_UnityEngine_Rendering_PostProcessing_PostProcessVolume_ *, CinemachinePostProcessing_GetDynamicBrainVolumes, (CinemachineBrain * brain, PostProcessLayer * ppLayer, int32_t minVolumes, MethodInfo * method)); DO_APP_FUNC(0x00BF6A00, PostProcessLayer *, CinemachinePostProcessing_GetPPLayer, (CinemachineBrain * brain, MethodInfo * method)); DO_APP_FUNC(0x00BF6ED0, void, CinemachinePostProcessing_CleanupLookupTable, (MethodInfo * method)); @@ -94294,6 +105927,7 @@ DO_APP_FUNC(0x003AE050, void, CinemachinePostProcessing_VcamExtraState__ctor, (C DO_APP_FUNC(0x00BF7CC0, void, CinemachinePostProcessing_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CinemachinePostProcessing_c__ctor, (CinemachinePostProcessing_c * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF7D70, void, CinemachinePostProcessing_c__InitializeModule_b__22_0, (CinemachinePostProcessing_c * __this, Scene scene, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1938, CinemachinePostProcessing_c__InitializeModule_b__22_0__MethodInfo); DO_APP_FUNC(0x003AE000, void, CinemachineVolumeSettings__ctor, (CinemachineVolumeSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF7DC0, void, CinemachineDebug_ReleaseScreenPos, (Object_1 * client, MethodInfo * method)); DO_APP_FUNC(0x00BF7E70, Rect, CinemachineDebug_GetScreenPos, (Object_1 * client, String * text, GUIStyle * style, MethodInfo * method)); @@ -94334,15 +105968,15 @@ DO_APP_FUNC(0x00BFA530, Vector3, SplineHelpers_Bezier3, (float t, Vector3 p0, Ve DO_APP_FUNC(0x00BFA6A0, Vector3, SplineHelpers_BezierTangent3, (float t, Vector3 p0, Vector3 p1, Vector3 p2, Vector3 p3, MethodInfo * method)); DO_APP_FUNC(0x00BFA920, float, SplineHelpers_Bezier1, (float t, float p0, float p1, float p2, float p3, MethodInfo * method)); DO_APP_FUNC(0x00BFA9C0, float, SplineHelpers_BezierTangent1, (float t, float p0, float p1, float p2, float p3, MethodInfo * method)); -DO_APP_FUNC(0x00BFAAA0, void, SplineHelpers_ComputeSmoothControlPoints, (Vector4__Array * knot, Vector4__Array * ctrl1, Vector4__Array * ctrl2, MethodInfo * method)); -DO_APP_FUNC(0x00BFB3C0, void, SplineHelpers_ComputeSmoothControlPointsLooped, (Vector4__Array * knot, Vector4__Array * ctrl1, Vector4__Array * ctrl2, MethodInfo * method)); +DO_APP_FUNC(0x00BFAAA0, void, SplineHelpers_ComputeSmoothControlPoints, (Vector4__Array * * knot, Vector4__Array * * ctrl1, Vector4__Array * * ctrl2, MethodInfo * method)); +DO_APP_FUNC(0x00BFB3C0, void, SplineHelpers_ComputeSmoothControlPointsLooped, (Vector4__Array * * knot, Vector4__Array * * ctrl1, Vector4__Array * * ctrl2, MethodInfo * method)); DO_APP_FUNC(0x00BFB6C0, bool, UnityVectorExtensions_IsNaN, (Vector2 v, MethodInfo * method)); DO_APP_FUNC(0x00BFB6F0, bool, UnityVectorExtensions_IsNaN_1, (Vector3 v, MethodInfo * method)); DO_APP_FUNC(0x00BFB730, float, UnityVectorExtensions_ClosestPointOnSegment, (Vector3 p, Vector3 s0, Vector3 s1, MethodInfo * method)); DO_APP_FUNC(0x00BFB820, float, UnityVectorExtensions_ClosestPointOnSegment_1, (Vector2 p, Vector2 s0, Vector2 s1, MethodInfo * method)); DO_APP_FUNC(0x00BFB8C0, Vector3, UnityVectorExtensions_ProjectOntoPlane, (Vector3 vector, Vector3 planeNormal, MethodInfo * method)); DO_APP_FUNC(0x00BFB950, Vector2, UnityVectorExtensions_SquareNormalize, (Vector2 v, MethodInfo * method)); -DO_APP_FUNC(0x00BFB9F0, int32_t, UnityVectorExtensions_FindIntersection, (Vector2 p1, Vector2 p2, Vector2 q1, Vector2 q2, Vector2 intersection, MethodInfo * method)); +DO_APP_FUNC(0x00BFB9F0, int32_t, UnityVectorExtensions_FindIntersection, (Vector2 * p1, Vector2 * p2, Vector2 * q1, Vector2 * q2, Vector2 * intersection, MethodInfo * method)); DO_APP_FUNC(0x00BFBDE0, float, UnityVectorExtensions_Cross, (Vector2 v1, Vector2 v2, MethodInfo * method)); DO_APP_FUNC(0x00BFBE10, Vector2, UnityVectorExtensions_Abs, (Vector2 v, MethodInfo * method)); DO_APP_FUNC(0x00BFBE40, Vector3, UnityVectorExtensions_Abs_1, (Vector3 v, MethodInfo * method)); @@ -94362,16 +105996,18 @@ DO_APP_FUNC(0x00A80F60, UdpPlatform *, BoltLauncher_get_TargetPlatform, (MethodI DO_APP_FUNC(0x00A80FA0, void, BoltLauncher_set_TargetPlatform, (UdpPlatform * value, MethodInfo * method)); DO_APP_FUNC(0x00A81040, void, BoltLauncher_StartSinglePlayer, (BoltConfig * config, MethodInfo * method)); DO_APP_FUNC(0x00A81150, void, BoltLauncher_StartServer, (int32_t port, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC4130, BoltLauncher_StartServer__MethodInfo); DO_APP_FUNC(0x00A81300, void, BoltLauncher_StartServer_1, (BoltConfig * config, String * scene, MethodInfo * method)); DO_APP_FUNC(0x00A81400, void, BoltLauncher_StartServer_2, (UdpEndPoint endpoint, String * scene, MethodInfo * method)); DO_APP_FUNC(0x00A814C0, void, BoltLauncher_StartServer_3, (UdpEndPoint endpoint, BoltConfig * config, String * scene, MethodInfo * method)); DO_APP_FUNC(0x00A81560, void, BoltLauncher_StartClient, (int32_t port, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC4120, BoltLauncher_StartClient__MethodInfo); DO_APP_FUNC(0x00A817F0, void, BoltLauncher_StartClient_1, (BoltConfig * config, MethodInfo * method)); DO_APP_FUNC(0x00A81900, void, BoltLauncher_StartClient_2, (UdpEndPoint endpoint, BoltConfig * config, MethodInfo * method)); DO_APP_FUNC(0x00A819B0, void, BoltLauncher_Initialize, (BoltNetworkModes__Enum mode, UdpEndPoint endpoint, BoltConfig * config, String * scene, MethodInfo * method)); DO_APP_FUNC(0x00A81A50, void, BoltLauncher_Shutdown, (MethodInfo * method)); DO_APP_FUNC(0x00A81AD0, void, BoltLauncher_SetUdpPlatform, (UdpPlatform * platform, MethodInfo * method)); -DO_APP_FUNC(0x00A81B70, bool, BoltNetwork_FindConnection, (uint32_t connectionId, BoltConnection * boltConnection, MethodInfo * method)); +DO_APP_FUNC(0x00A81B70, bool, BoltNetwork_FindConnection, (uint32_t connectionId, BoltConnection * * boltConnection, MethodInfo * method)); DO_APP_FUNC(0x00A81CF0, void, BoltNetwork_Accept, (UdpEndPoint endpoint, MethodInfo * method)); DO_APP_FUNC(0x00A81D70, void, BoltNetwork_Accept_1, (UdpEndPoint endpoint, IProtocolToken * acceptToken, MethodInfo * method)); DO_APP_FUNC(0x00A81DF0, void, BoltNetwork_Connect, (uint16_t port, IProtocolToken * token, MethodInfo * method)); @@ -94410,9 +106046,12 @@ DO_APP_FUNC(0x00A83300, Map_2_System_Guid_UdpSession_ *, BoltNetwork_get_Session DO_APP_FUNC(0x00A83360, float, BoltNetwork_get_Time, (MethodInfo * method)); DO_APP_FUNC(0x00A833E0, UdpSocket *, BoltNetwork_get_UdpSocket, (MethodInfo * method)); DO_APP_FUNC(0x00A83440, Version *, BoltNetwork_get_Version, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC4018, BoltNetwork_get_Version__MethodInfo); DO_APP_FUNC(0x00A834B0, String *, BoltNetwork_get_CurrentVersion, (MethodInfo * method)); DO_APP_FUNC(0x00A83960, String *, BoltNetwork_get_VersionInfo, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3FF0, BoltNetwork_get_VersionInfo__MethodInfo); DO_APP_FUNC(0x00A83A80, String *, BoltNetwork_get_VersionConfiguration, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3FB8, BoltNetwork_get_VersionConfiguration__MethodInfo); DO_APP_FUNC(0x00A83BA0, GameObject *, BoltNetwork_Attach, (GameObject * gameObject, MethodInfo * method)); DO_APP_FUNC(0x00A83C70, GameObject *, BoltNetwork_Attach_1, (GameObject * gameObject, IProtocolToken * token, MethodInfo * method)); DO_APP_FUNC(0x00A83D20, void, BoltNetwork_Detach, (GameObject * gameObject, MethodInfo * method)); @@ -94430,6 +106069,7 @@ DO_APP_FUNC(0x00A84A80, BoltEntity *, BoltNetwork_Instantiate_6, (PrefabId prefa DO_APP_FUNC(0x00A84B20, BoltEntity *, BoltNetwork_Instantiate_7, (PrefabId prefabId, IProtocolToken * token, Vector3 position, Quaternion rotation, MethodInfo * method)); DO_APP_FUNC(0x00A84C30, void, BoltNetwork_PreLoadPrefabDatabase, (MethodInfo * method)); DO_APP_FUNC(0x00A84C40, void, BoltNetwork_SetPrefabPool, (IPrefabPool * pool, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3ED8, BoltNetwork_SetPrefabPool__MethodInfo); DO_APP_FUNC(0x00A84D50, void, BoltNetwork_SetCanReceiveEntities, (bool canReceiveEntities, MethodInfo * method)); DO_APP_FUNC(0x00A84DB0, Vector3, BoltNetwork_PositionAtFrame, (BoltHitboxBody * hitboxBody, int32_t frame, MethodInfo * method)); DO_APP_FUNC(0x00A84E40, BoltPhysicsHits *, BoltNetwork_RaycastAll, (Ray ray, MethodInfo * method)); @@ -94441,10 +106081,12 @@ DO_APP_FUNC(0x00A850C0, void, BoltNetwork_RemoveGlobalEventListener, (MonoBehavi DO_APP_FUNC(0x00A85140, void, BoltNetwork_EnableLanBroadcast, (uint16_t port, MethodInfo * method)); DO_APP_FUNC(0x00A852F0, void, BoltNetwork_DisableLanBroadcast, (MethodInfo * method)); DO_APP_FUNC(0x00A85340, void, BoltNetwork_SetEventFilter, (IEventFilter * filter, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3E58, BoltNetwork_SetEventFilter__MethodInfo); DO_APP_FUNC(0x003AE050, void, BoltNetwork_SetNetworkSimulation, (float loss, int32_t pingMin, int32_t pingMax, MethodInfo * method)); DO_APP_FUNC(0x00A85450, void, BoltNetwork_UpdateSessionList, (Map_2_System_Guid_UdpSession_ * sessions, MethodInfo * method)); DO_APP_FUNC(0x00A85DC0, void, BoltNetwork_UpdateSceneObjectsLookup, (MethodInfo * method)); DO_APP_FUNC(0x00A85E10, void, BoltNetwork_VerifyIsRunning, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3D50, BoltNetwork_VerifyIsRunning__MethodInfo); DO_APP_FUNC(0x00A85EF0, void, BoltNetwork__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003C7390, IProtocolToken *, NetworkCommand_Data_get_Token, (NetworkCommand_Data * __this, MethodInfo * method)); DO_APP_FUNC(0x003C73A0, void, NetworkCommand_Data_set_Token, (NetworkCommand_Data * __this, IProtocolToken * value, MethodInfo * method)); @@ -94478,7 +106120,9 @@ DO_APP_FUNC(0x00474710, void, Command_Photon_Bolt_Collections_IBoltListNode_Phot DO_APP_FUNC(0x00A86480, void, Command__ctor, (Command * __this, Command_Meta * meta, MethodInfo * method)); DO_APP_FUNC(0x00A864F0, void, Command_InitNetworkStorage, (Command * __this, MethodInfo * method)); DO_APP_FUNC(0x00A86560, void, Command_VerifyCanSetInput, (Command * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3B60, Command_VerifyCanSetInput__MethodInfo); DO_APP_FUNC(0x00A86640, void, Command_VerifyCanSetResult, (Command * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3B38, Command_VerifyCanSetResult__MethodInfo); DO_APP_FUNC(0x00A86720, void, Command_PackInput, (Command * __this, BoltConnection * connection, UdpPacket * packet, MethodInfo * method)); DO_APP_FUNC(0x00A86800, void, Command_PackInputDiff, (Command * __this, BoltConnection * connection, UdpPacket * packet, NetworkStorage * other, MethodInfo * method)); DO_APP_FUNC(0x00A86890, void, Command_ReadInput, (Command * __this, BoltConnection * connection, UdpPacket * packet, MethodInfo * method)); @@ -94539,7 +106183,7 @@ DO_APP_FUNC(0x00A88B00, ExistsResult__Enum, BoltConnection_ExistsOnRemote_1, (Bo DO_APP_FUNC(0x00A88B50, void, BoltConnection_StreamBytes, (BoltConnection * __this, UdpChannelName channel, Byte__Array * data, MethodInfo * method)); DO_APP_FUNC(0x00A88B80, void, BoltConnection_SetStreamBandwidth, (BoltConnection * __this, int32_t bytesPerSecond, MethodInfo * method)); DO_APP_FUNC(0x00A88D10, void, BoltConnection_SendData, (BoltConnection * __this, Byte__Array * data, MethodInfo * method)); -DO_APP_FUNC(0x00A88D80, bool, BoltConnection_ReceiveData, (BoltConnection * __this, Byte__Array * data, MethodInfo * method)); +DO_APP_FUNC(0x00A88D80, bool, BoltConnection_ReceiveData, (BoltConnection * __this, Byte__Array * * data, MethodInfo * method)); DO_APP_FUNC(0x00A88EC0, void, BoltConnection_Disconnect, (BoltConnection * __this, MethodInfo * method)); DO_APP_FUNC(0x00A88F70, void, BoltConnection_Disconnect_1, (BoltConnection * __this, IProtocolToken * token, UdpConnectionDisconnectReason__Enum disconnectReason, MethodInfo * method)); DO_APP_FUNC(0x00A88FC0, int32_t, BoltConnection_GetSkippedUpdates, (BoltConnection * __this, BoltEntity * en, MethodInfo * method)); @@ -94559,8 +106203,11 @@ DO_APP_FUNC(0x00A878D0, bool, BoltConnection_op_Implicit, (BoltConnection * cn, DO_APP_FUNC(0x00A8A7E0, void, BoltConnection_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BoltConnection_c__ctor, (BoltConnection_c * __this, MethodInfo * method)); DO_APP_FUNC(0x00520A00, int32_t, BoltConnection_c__SwitchPerfCounters_b__123_0, (BoltConnection_c * __this, PacketStats x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3868, BoltConnection_c__SwitchPerfCounters_b__123_0__MethodInfo); DO_APP_FUNC(0x00A8A890, int32_t, BoltConnection_c__SwitchPerfCounters_b__123_1, (BoltConnection_c * __this, PacketStats x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3830, BoltConnection_c__SwitchPerfCounters_b__123_1__MethodInfo); DO_APP_FUNC(0x00A8A8A0, int32_t, BoltConnection_c__SwitchPerfCounters_b__123_2, (BoltConnection_c * __this, PacketStats x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3820, BoltConnection_c__SwitchPerfCounters_b__123_2__MethodInfo); DO_APP_FUNC(0x003EE8E0, void, AddCallback__ctor, (AddCallback * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EE650, void, AddCallback_Invoke, (AddCallback * __this, Action * callbackAction, MethodInfo * method)); DO_APP_FUNC(0x003EEA20, IAsyncResult *, AddCallback_BeginInvoke, (AddCallback * __this, Action * callbackAction, AsyncCallback * callback, Object * object, MethodInfo * method)); @@ -94596,6 +106243,7 @@ DO_APP_FUNC(0x0042F6D0, void, BoltEntity_Photon_Bolt_Collections_IBoltListNode_P DO_APP_FUNC(0x003C91C0, Object *, BoltEntity_Photon_Bolt_Collections_IBoltListNode_Photon_Bolt_BoltEntity__get_list, (BoltEntity * __this, MethodInfo * method)); DO_APP_FUNC(0x0042F730, void, BoltEntity_Photon_Bolt_Collections_IBoltListNode_Photon_Bolt_BoltEntity__set_list, (BoltEntity * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x00A8AE50, Entity *, BoltEntity_get_Entity, (BoltEntity * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3720, BoltEntity_get_Entity__MethodInfo); DO_APP_FUNC(0x00A8AEF0, UniqueId, BoltEntity_get_SceneGuid, (BoltEntity * __this, MethodInfo * method)); DO_APP_FUNC(0x00A8AF20, void, BoltEntity_set_SceneGuid, (BoltEntity * __this, UniqueId value, MethodInfo * method)); DO_APP_FUNC(0x00A8AFC0, UniqueId, BoltEntity_get_SerializerGuid, (BoltEntity * __this, MethodInfo * method)); @@ -94644,6 +106292,7 @@ DO_APP_FUNC(0x00A8BEF0, bool, BoltEntity_StateIs, (BoltEntity * __this, Type * t DO_APP_FUNC(0x00A8BF50, String *, BoltEntity_ToString, (BoltEntity * __this, MethodInfo * method)); DO_APP_FUNC(0x00A8C250, void, BoltEntity_DestroyDelayed, (BoltEntity * __this, float time, MethodInfo * method)); DO_APP_FUNC(0x00A8C310, void, BoltEntity_VerifyNotAttached, (BoltEntity * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC36A8, BoltEntity_VerifyNotAttached__MethodInfo); DO_APP_FUNC(0x00A8C380, IEnumerator *, BoltEntity_DestroyDelayedInternal, (BoltEntity * __this, float time, MethodInfo * method)); DO_APP_FUNC(0x00A8C430, void, BoltEntity_Awake, (BoltEntity * __this, MethodInfo * method)); DO_APP_FUNC(0x00A8C440, void, BoltEntity_OnDisable, (BoltEntity * __this, MethodInfo * method)); @@ -94656,6 +106305,7 @@ DO_APP_FUNC(0x003AE050, void, BoltEntity_DestroyDelayedInternal_d_107_System_IDi DO_APP_FUNC(0x00A8C7F0, bool, BoltEntity_DestroyDelayedInternal_d_107_MoveNext, (BoltEntity_DestroyDelayedInternal_d_107 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, BoltEntity_DestroyDelayedInternal_d_107_System_Collections_Generic_IEnumerator_System_Object__get_Current, (BoltEntity_DestroyDelayedInternal_d_107 * __this, MethodInfo * method)); DO_APP_FUNC(0x00A8C930, void, BoltEntity_DestroyDelayedInternal_d_107_System_Collections_IEnumerator_Reset, (BoltEntity_DestroyDelayedInternal_d_107 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3640, BoltEntity_DestroyDelayedInternal_d_107_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, BoltEntity_DestroyDelayedInternal_d_107_System_Collections_IEnumerator_get_Current, (BoltEntity_DestroyDelayedInternal_d_107 * __this, MethodInfo * method)); DO_APP_FUNC(0x00A8C980, bool, Entity_QueueInput, (Entity * __this, Command * cmd, bool force, MethodInfo * method)); DO_APP_FUNC(0x00A8CCA0, void, Entity_TakeControl, (Entity * __this, IProtocolToken * token, MethodInfo * method)); @@ -94707,7 +106357,7 @@ DO_APP_FUNC(0x00A8F6A0, void, Entity_Render, (Entity * __this, MethodInfo * meth DO_APP_FUNC(0x00A8F6F0, void, Entity_Initialize, (Entity * __this, MethodInfo * method)); DO_APP_FUNC(0x00A8FDB0, void, Entity_SetIdle, (Entity * __this, BoltConnection * connection, bool idle, MethodInfo * method)); DO_APP_FUNC(0x00A8FF20, void, Entity_Simulate, (Entity * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A90860, bool, Entity_ExecuteCommandsFromRemote, (Entity * __this, Command * lastExecutedCommand, BoltIterator_1_Photon_Bolt_Command_ lastCommandIteration, MethodInfo * method)); +DO_APP_FUNC(0x00A90860, bool, Entity_ExecuteCommandsFromRemote, (Entity * __this, Command * * lastExecutedCommand, BoltIterator_1_Photon_Bolt_Command_ * lastCommandIteration, MethodInfo * method)); DO_APP_FUNC(0x00A90FA0, void, Entity_ExecuteInstantCommand, (Entity * __this, Command * lastExecutedCommand, BoltIterator_1_Photon_Bolt_Command_ lastCommandIteration, int32_t instantMaxPredict, MethodInfo * method)); DO_APP_FUNC(0x00A91320, bool, Entity_LocalAndRemoteResultEqual, (Entity * __this, Command * cmd, MethodInfo * method)); DO_APP_FUNC(0x00A914A0, void, Entity_ExecuteCommand, (Entity * __this, Command * cmd, bool resetState, bool skipExecuted, MethodInfo * method)); @@ -94748,10 +106398,11 @@ DO_APP_FUNC(0x00A92D10, bool, EntityList_GetEnumerator_d_4_MoveNext, (EntityList DO_APP_FUNC(0x00A93080, void, EntityList_GetEnumerator_d_4___m__Finally1, (EntityList_GetEnumerator_d_4 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, BoltEntity *, EntityList_GetEnumerator_d_4_System_Collections_Generic_IEnumerator_Photon_Bolt_BoltEntity__get_Current, (EntityList_GetEnumerator_d_4 * __this, MethodInfo * method)); DO_APP_FUNC(0x00A930D0, void, EntityList_GetEnumerator_d_4_System_Collections_IEnumerator_Reset, (EntityList_GetEnumerator_d_4 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3348, EntityList_GetEnumerator_d_4_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, EntityList_GetEnumerator_d_4_System_Collections_IEnumerator_get_Current, (EntityList_GetEnumerator_d_4 * __this, MethodInfo * method)); DO_APP_FUNC(0x00A93120, int32_t, EntityLookup_get_Count, (EntityLookup * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, EntityLookup__ctor, (EntityLookup * __this, Dictionary_2_Photon_Bolt_NetworkId_Photon_Bolt_Internal_EntityProxy_ * d, MethodInfo * method)); -DO_APP_FUNC(0x00A93170, bool, EntityLookup_TryGet, (EntityLookup * __this, NetworkId id, BoltEntity * entity, MethodInfo * method)); +DO_APP_FUNC(0x00A93170, bool, EntityLookup_TryGet, (EntityLookup * __this, NetworkId id, BoltEntity * * entity, MethodInfo * method)); DO_APP_FUNC(0x00A93370, IEnumerator_1_Photon_Bolt_BoltEntity_ *, EntityLookup_GetEnumerator, (EntityLookup * __this, MethodInfo * method)); DO_APP_FUNC(0x00A93370, IEnumerator *, EntityLookup_System_Collections_IEnumerable_GetEnumerator, (EntityLookup * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, EntityLookup_GetEnumerator_d_5__ctor, (EntityLookup_GetEnumerator_d_5 * __this, int32_t __1__state, MethodInfo * method)); @@ -94760,6 +106411,7 @@ DO_APP_FUNC(0x00A934D0, bool, EntityLookup_GetEnumerator_d_5_MoveNext, (EntityLo DO_APP_FUNC(0x00A938B0, void, EntityLookup_GetEnumerator_d_5___m__Finally1, (EntityLookup_GetEnumerator_d_5 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, BoltEntity *, EntityLookup_GetEnumerator_d_5_System_Collections_Generic_IEnumerator_Photon_Bolt_BoltEntity__get_Current, (EntityLookup_GetEnumerator_d_5 * __this, MethodInfo * method)); DO_APP_FUNC(0x00A93900, void, EntityLookup_GetEnumerator_d_5_System_Collections_IEnumerator_Reset, (EntityLookup_GetEnumerator_d_5 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3290, EntityLookup_GetEnumerator_d_5_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, EntityLookup_GetEnumerator_d_5_System_Collections_IEnumerator_get_Current, (EntityLookup_GetEnumerator_d_5 * __this, MethodInfo * method)); DO_APP_FUNC(0x00A93950, bool, Event_get_FromSelf, (Event * __this, MethodInfo * method)); DO_APP_FUNC(0x003C91B0, BoltConnection *, Event_get_RaisedBy, (Event * __this, MethodInfo * method)); @@ -94791,7 +106443,7 @@ DO_APP_FUNC(0x00A94BC0, void, EventChannel_Lost, (EventChannel * __this, Packet DO_APP_FUNC(0x00A94D50, void, EventChannel_Pack, (EventChannel * __this, Packet * packet, MethodInfo * method)); DO_APP_FUNC(0x00A95530, bool, EventChannel_PackEvent, (EventChannel * __this, Event * ev, UdpPacket * stream, uint32_t sequence, MethodInfo * method)); DO_APP_FUNC(0x00A957B0, void, EventChannel_Read, (EventChannel * __this, Packet * packet, MethodInfo * method)); -DO_APP_FUNC(0x00A95B30, Event *, EventChannel_ReadEvent, (EventChannel * __this, UdpPacket * stream, uint32_t sequence, MethodInfo * method)); +DO_APP_FUNC(0x00A95B30, Event *, EventChannel_ReadEvent, (EventChannel * __this, UdpPacket * stream, uint32_t * sequence, MethodInfo * method)); DO_APP_FUNC(0x00A95F80, void, EventDispatcher_Raise, (EventDispatcher * __this, Event * ev, MethodInfo * method)); DO_APP_FUNC(0x00A96490, void, EventDispatcher_Add, (EventDispatcher * __this, MonoBehaviour * behaviour, MethodInfo * method)); DO_APP_FUNC(0x00A96830, void, EventDispatcher_Remove, (EventDispatcher * __this, MonoBehaviour * behaviour, MethodInfo * method)); @@ -94821,17 +106473,17 @@ DO_APP_FUNC(0x00A990C0, void, EventDispatcher__cctor, (MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, DefaultEventFilter_Photon_Bolt_IEventFilter_EventReceived, (DefaultEventFilter * __this, Event * ev, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, DefaultEventFilter__ctor, (DefaultEventFilter * __this, MethodInfo * method)); DO_APP_FUNC(0x00A991A0, void, EventReliableRecvBuffer__ctor, (EventReliableRecvBuffer * __this, int32_t windowBits, int32_t sequenceBits, MethodInfo * method)); -DO_APP_FUNC(0x00A99290, bool, EventReliableRecvBuffer_TryRemove, (EventReliableRecvBuffer * __this, EventReliable value, MethodInfo * method)); +DO_APP_FUNC(0x00A99290, bool, EventReliableRecvBuffer_TryRemove, (EventReliableRecvBuffer * __this, EventReliable * value, MethodInfo * method)); DO_APP_FUNC(0x00A993A0, RecvBufferAddResult__Enum, EventReliableRecvBuffer_TryEnqueue, (EventReliableRecvBuffer * __this, EventReliable value, MethodInfo * method)); DO_APP_FUNC(0x00A99490, IEnumerable_1_Photon_Bolt_EventReliable_ *, EventReliableSendBuffer_get_Pending, (EventReliableSendBuffer * __this, MethodInfo * method)); DO_APP_FUNC(0x00A99550, IEnumerable_1_Photon_Bolt_EventReliable_ *, EventReliableSendBuffer_get_Delivered, (EventReliableSendBuffer * __this, MethodInfo * method)); DO_APP_FUNC(0x00A99610, bool, EventReliableSendBuffer_get_Full, (EventReliableSendBuffer * __this, MethodInfo * method)); DO_APP_FUNC(0x00A99640, void, EventReliableSendBuffer__ctor, (EventReliableSendBuffer * __this, int32_t windowBits, int32_t sequenceBits, MethodInfo * method)); DO_APP_FUNC(0x00A99740, bool, EventReliableSendBuffer_TryEnqueue, (EventReliableSendBuffer * __this, EventReliable value, MethodInfo * method)); -DO_APP_FUNC(0x00A99870, bool, EventReliableSendBuffer_TryNext, (EventReliableSendBuffer * __this, EventReliable value, MethodInfo * method)); +DO_APP_FUNC(0x00A99870, bool, EventReliableSendBuffer_TryNext, (EventReliableSendBuffer * __this, EventReliable * value, MethodInfo * method)); DO_APP_FUNC(0x00A99930, void, EventReliableSendBuffer_SetDelivered, (EventReliableSendBuffer * __this, EventReliable value, MethodInfo * method)); DO_APP_FUNC(0x00A999D0, void, EventReliableSendBuffer_SetSend, (EventReliableSendBuffer * __this, EventReliable value, MethodInfo * method)); -DO_APP_FUNC(0x00A99A70, bool, EventReliableSendBuffer_TryRemove, (EventReliableSendBuffer * __this, EventReliable value, MethodInfo * method)); +DO_APP_FUNC(0x00A99A70, bool, EventReliableSendBuffer_TryRemove, (EventReliableSendBuffer * __this, EventReliable * value, MethodInfo * method)); DO_APP_FUNC(0x00A99B70, void, EventReliableSendBuffer_ChangeState, (EventReliableSendBuffer * __this, EventReliable value, EventReliableSendBuffer_State__Enum state, MethodInfo * method)); DO_APP_FUNC(0x00A99C00, int32_t, EventReliableSendBuffer_SequenceDistance, (EventReliableSendBuffer * __this, uint32_t from, uint32_t to, MethodInfo * method)); DO_APP_FUNC(0x0093D960, void, EventReliableSendBuffer_get_Pending_d_9__ctor, (EventReliableSendBuffer_get_Pending_d_9 * __this, int32_t __1__state, MethodInfo * method)); @@ -94839,6 +106491,7 @@ DO_APP_FUNC(0x003AE050, void, EventReliableSendBuffer_get_Pending_d_9_System_IDi DO_APP_FUNC(0x00A99C30, bool, EventReliableSendBuffer_get_Pending_d_9_MoveNext, (EventReliableSendBuffer_get_Pending_d_9 * __this, MethodInfo * method)); DO_APP_FUNC(0x0093E890, EventReliable, EventReliableSendBuffer_get_Pending_d_9_System_Collections_Generic_IEnumerator_Photon_Bolt_EventReliable__get_Current, (EventReliableSendBuffer_get_Pending_d_9 * __this, MethodInfo * method)); DO_APP_FUNC(0x00A99CE0, void, EventReliableSendBuffer_get_Pending_d_9_System_Collections_IEnumerator_Reset, (EventReliableSendBuffer_get_Pending_d_9 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2CC8, EventReliableSendBuffer_get_Pending_d_9_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x00A99D30, Object *, EventReliableSendBuffer_get_Pending_d_9_System_Collections_IEnumerator_get_Current, (EventReliableSendBuffer_get_Pending_d_9 * __this, MethodInfo * method)); DO_APP_FUNC(0x00A99D80, IEnumerator_1_Photon_Bolt_EventReliable_ *, EventReliableSendBuffer_get_Pending_d_9_System_Collections_Generic_IEnumerable_Photon_Bolt_EventReliable__GetEnumerator, (EventReliableSendBuffer_get_Pending_d_9 * __this, MethodInfo * method)); DO_APP_FUNC(0x00A99D80, IEnumerator *, EventReliableSendBuffer_get_Pending_d_9_System_Collections_IEnumerable_GetEnumerator, (EventReliableSendBuffer_get_Pending_d_9 * __this, MethodInfo * method)); @@ -94847,6 +106500,7 @@ DO_APP_FUNC(0x003AE050, void, EventReliableSendBuffer_get_Delivered_d_11_System_ DO_APP_FUNC(0x00A99E70, bool, EventReliableSendBuffer_get_Delivered_d_11_MoveNext, (EventReliableSendBuffer_get_Delivered_d_11 * __this, MethodInfo * method)); DO_APP_FUNC(0x0093E890, EventReliable, EventReliableSendBuffer_get_Delivered_d_11_System_Collections_Generic_IEnumerator_Photon_Bolt_EventReliable__get_Current, (EventReliableSendBuffer_get_Delivered_d_11 * __this, MethodInfo * method)); DO_APP_FUNC(0x00A99F20, void, EventReliableSendBuffer_get_Delivered_d_11_System_Collections_IEnumerator_Reset, (EventReliableSendBuffer_get_Delivered_d_11 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2C98, EventReliableSendBuffer_get_Delivered_d_11_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x00A99F70, Object *, EventReliableSendBuffer_get_Delivered_d_11_System_Collections_IEnumerator_get_Current, (EventReliableSendBuffer_get_Delivered_d_11 * __this, MethodInfo * method)); DO_APP_FUNC(0x00A99FC0, IEnumerator_1_Photon_Bolt_EventReliable_ *, EventReliableSendBuffer_get_Delivered_d_11_System_Collections_Generic_IEnumerable_Photon_Bolt_EventReliable__GetEnumerator, (EventReliableSendBuffer_get_Delivered_d_11 * __this, MethodInfo * method)); DO_APP_FUNC(0x00A99FC0, IEnumerator *, EventReliableSendBuffer_get_Delivered_d_11_System_Collections_IEnumerable_GetEnumerator, (EventReliableSendBuffer_get_Delivered_d_11 * __this, MethodInfo * method)); @@ -94855,33 +106509,34 @@ DO_APP_FUNC(0x00A9A100, uint32_t, NetworkIdAllocator_get_LocalConnectionId, (Met DO_APP_FUNC(0x00A9A140, void, NetworkIdAllocator_Reset, (uint32_t connectionId, MethodInfo * method)); DO_APP_FUNC(0x00A9A1A0, void, NetworkIdAllocator_Assigned, (uint32_t connectionId, MethodInfo * method)); DO_APP_FUNC(0x00A9A1E0, NetworkId, NetworkIdAllocator_Allocate, (MethodInfo * method)); -DO_APP_FUNC(0x00A9A290, bool, NetworkId_get_IsZero, (NetworkId__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, uint64_t, NetworkId_get_PackedValue, (NetworkId__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9A2A0, void, NetworkId__ctor, (NetworkId__Boxed * __this, uint64_t packed, MethodInfo * method)); -DO_APP_FUNC(0x00A9A2B0, void, NetworkId__ctor_1, (NetworkId__Boxed * __this, uint32_t connection, uint32_t entity, MethodInfo * method)); -DO_APP_FUNC(0x00A9A2C0, String *, NetworkId_ToString, (NetworkId__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2C58, NetworkIdAllocator_Allocate__MethodInfo); +DO_APP_FUNC(0x00A9A290, bool, NetworkId_get_IsZero, (NetworkId * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, uint64_t, NetworkId_get_PackedValue, (NetworkId * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9A2A0, void, NetworkId__ctor, (NetworkId * __this, uint64_t packed, MethodInfo * method)); +DO_APP_FUNC(0x00A9A2B0, void, NetworkId__ctor_1, (NetworkId * __this, uint32_t connection, uint32_t entity, MethodInfo * method)); +DO_APP_FUNC(0x00A9A2C0, String *, NetworkId_ToString, (NetworkId * __this, MethodInfo * method)); DO_APP_FUNC(0x00A89090, bool, NetworkId_op_Equality, (NetworkId a, NetworkId b, MethodInfo * method)); DO_APP_FUNC(0x00A92050, bool, NetworkId_op_Inequality, (NetworkId a, NetworkId b, MethodInfo * method)); -DO_APP_FUNC(0x00A9A680, int32_t, NetworkId_GetHashCode, (NetworkId__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9A690, bool, NetworkId_Equals, (NetworkId__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x00A9A720, bool, NetworkId_System_IEquatable_Photon_Bolt_NetworkId__Equals, (NetworkId__Boxed * __this, NetworkId other, MethodInfo * method)); +DO_APP_FUNC(0x00A9A680, int32_t, NetworkId_GetHashCode, (NetworkId * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9A690, bool, NetworkId_Equals, (NetworkId * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x00A9A720, bool, NetworkId_System_IEquatable_Photon_Bolt_NetworkId__Equals, (NetworkId * __this, NetworkId other, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NetworkId_EqualityComparer__ctor, (NetworkId_EqualityComparer * __this, MethodInfo * method)); DO_APP_FUNC(0x00A9A730, bool, NetworkId_EqualityComparer_System_Collections_Generic_IEqualityComparer_Photon_Bolt_NetworkId__Equals, (NetworkId_EqualityComparer * __this, NetworkId x, NetworkId y, MethodInfo * method)); DO_APP_FUNC(0x00A9A740, int32_t, NetworkId_EqualityComparer_System_Collections_Generic_IEqualityComparer_Photon_Bolt_NetworkId__GetHashCode, (NetworkId_EqualityComparer * __this, NetworkId x, MethodInfo * method)); DO_APP_FUNC(0x00A9A750, void, NetworkId_EqualityComparer__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x00A9A800, String *, UniqueId_get_IdString, (UniqueId__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9A880, bool, UniqueId_get_IsNone, (UniqueId__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9A910, void, UniqueId__ctor, (UniqueId__Boxed * __this, String * guid, MethodInfo * method)); -DO_APP_FUNC(0x00A9AA40, void, UniqueId__ctor_1, (UniqueId__Boxed * __this, Byte__Array * bytes, MethodInfo * method)); -DO_APP_FUNC(0x00A9AB50, void, UniqueId__ctor_2, (UniqueId__Boxed * __this, uint8_t byte0, uint8_t byte1, uint8_t byte2, uint8_t byte3, uint8_t byte4, uint8_t byte5, uint8_t byte6, uint8_t byte7, uint8_t byte8, uint8_t byte9, uint8_t byte10, uint8_t byte11, uint8_t byte12, uint8_t byte13, uint8_t byte14, uint8_t byte15, MethodInfo * method)); -DO_APP_FUNC(0x00A9ABD0, Byte__Array *, UniqueId_ToByteArray, (UniqueId__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9ABE0, int32_t, UniqueId_GetHashCode, (UniqueId__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9ABF0, bool, UniqueId_Equals, (UniqueId__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x00A9ACB0, String *, UniqueId_ToString, (UniqueId__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9A800, String *, UniqueId_get_IdString, (UniqueId * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9A880, bool, UniqueId_get_IsNone, (UniqueId * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9A910, void, UniqueId__ctor, (UniqueId * __this, String * guid, MethodInfo * method)); +DO_APP_FUNC(0x00A9AA40, void, UniqueId__ctor_1, (UniqueId * __this, Byte__Array * bytes, MethodInfo * method)); +DO_APP_FUNC(0x00A9AB50, void, UniqueId__ctor_2, (UniqueId * __this, uint8_t byte0, uint8_t byte1, uint8_t byte2, uint8_t byte3, uint8_t byte4, uint8_t byte5, uint8_t byte6, uint8_t byte7, uint8_t byte8, uint8_t byte9, uint8_t byte10, uint8_t byte11, uint8_t byte12, uint8_t byte13, uint8_t byte14, uint8_t byte15, MethodInfo * method)); +DO_APP_FUNC(0x00A9ABD0, Byte__Array *, UniqueId_ToByteArray, (UniqueId * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9ABE0, int32_t, UniqueId_GetHashCode, (UniqueId * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9ABF0, bool, UniqueId_Equals, (UniqueId * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x00A9ACB0, String *, UniqueId_ToString, (UniqueId * __this, MethodInfo * method)); DO_APP_FUNC(0x00A9AD90, UniqueId, UniqueId_get_None, (MethodInfo * method)); DO_APP_FUNC(0x00A9ADA0, UniqueId, UniqueId_New, (MethodInfo * method)); DO_APP_FUNC(0x00A9AE00, UniqueId, UniqueId_Parse, (String * text, MethodInfo * method)); -DO_APP_FUNC(0x00A9AEF0, bool, UniqueId_System_IEquatable_Photon_Bolt_UniqueId__Equals, (UniqueId__Boxed * __this, UniqueId other, MethodInfo * method)); +DO_APP_FUNC(0x00A9AEF0, bool, UniqueId_System_IEquatable_Photon_Bolt_UniqueId__Equals, (UniqueId * __this, UniqueId other, MethodInfo * method)); DO_APP_FUNC(0x00A9AEF0, bool, UniqueId_op_Equality, (UniqueId a, UniqueId b, MethodInfo * method)); DO_APP_FUNC(0x00A9AF40, bool, UniqueId_op_Inequality, (UniqueId a, UniqueId b, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, UniqueId_EqualityComparer__ctor, (UniqueId_EqualityComparer * __this, MethodInfo * method)); @@ -94904,6 +106559,7 @@ DO_APP_FUNC(0x00A9BF00, void, PhotonCloudGlobalBehavior_PhotonBoltBehavior__ctor DO_APP_FUNC(0x00A9BF80, void, PhotonCloudGlobalBehavior_PhotonBoltBehavior_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, PhotonCloudGlobalBehavior_PhotonBoltBehavior_c__ctor, (PhotonCloudGlobalBehavior_PhotonBoltBehavior_c * __this, MethodInfo * method)); DO_APP_FUNC(0x00A9C030, void, PhotonCloudGlobalBehavior_PhotonBoltBehavior_c__BoltShutdownBegin_b__0_0, (PhotonCloudGlobalBehavior_PhotonBoltBehavior_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2AE0, PhotonCloudGlobalBehavior_PhotonBoltBehavior_c__BoltShutdownBegin_b__0_0__MethodInfo); DO_APP_FUNC(0x003BCD20, bool, PhotonRoomProperties_get_IsOpen, (PhotonRoomProperties * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD30, void, PhotonRoomProperties_set_IsOpen, (PhotonRoomProperties * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x00424BF0, bool, PhotonRoomProperties_get_IsVisible, (PhotonRoomProperties * __this, MethodInfo * method)); @@ -94933,7 +106589,9 @@ DO_APP_FUNC(0x00A9D150, void, BoltRuntimeSettings__ctor, (BoltRuntimeSettings * DO_APP_FUNC(0x00A9D3B0, void, BoltRuntimeSettings_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BoltRuntimeSettings_c__ctor, (BoltRuntimeSettings_c * __this, MethodInfo * method)); DO_APP_FUNC(0x00A9D460, String *, BoltRuntimeSettings_c__get_photonCloudRegions_b__22_0, (BoltRuntimeSettings_c * __this, PhotonRegion * region, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2948, BoltRuntimeSettings_c__get_photonCloudRegions_b__22_0__MethodInfo); DO_APP_FUNC(0x00A9D490, String *, BoltRuntimeSettings_c__get_photonCloudRegionsId_b__24_0, (BoltRuntimeSettings_c * __this, PhotonRegion * region, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2930, BoltRuntimeSettings_c__get_photonCloudRegionsId_b__24_0__MethodInfo); DO_APP_FUNC(0x00A9D4B0, void, NetworkArray_Entity__ctor, (NetworkArray_Entity * __this, int32_t length, int32_t stride, MethodInfo * method)); DO_APP_FUNC(0x00A9D510, BoltEntity *, NetworkArray_Entity_GetValue, (NetworkArray_Entity * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x00A9D5B0, bool, NetworkArray_Entity_SetValue, (NetworkArray_Entity * __this, int32_t index, BoltEntity * value, MethodInfo * method)); @@ -94959,15 +106617,16 @@ DO_APP_FUNC(0x00A9E480, NetworkTransform *, NetworkArray_Transform_get_Item, (Ne DO_APP_FUNC(0x00A9E530, void, NetworkArray_Transform__ctor, (NetworkArray_Transform * __this, int32_t length, int32_t stride, MethodInfo * method)); DO_APP_FUNC(0x00A9E590, NetworkTransform *, NetworkArray_Transform_GetValue, (NetworkArray_Transform * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x00A9E5F0, bool, NetworkArray_Transform_SetValue, (NetworkArray_Transform * __this, int32_t index, NetworkTransform * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2810, NetworkArray_Transform_SetValue__MethodInfo); DO_APP_FUNC(0x00A9E640, void, NetworkArray_Vector__ctor, (NetworkArray_Vector * __this, int32_t length, int32_t stride, MethodInfo * method)); DO_APP_FUNC(0x00A9E730, Vector3, NetworkArray_Vector_GetValue, (NetworkArray_Vector * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x00A9E7A0, bool, NetworkArray_Vector_SetValue, (NetworkArray_Vector * __this, int32_t index, Vector3 value, MethodInfo * method)); DO_APP_FUNC(0x00A9E8B0, NetworkState_Meta *, BoltStateMetas_GetStateMeta, (TypeId typeId, MethodInfo * method)); DO_APP_FUNC(0x00A9E960, void, BoltStateMetas_FetchStateMetas, (MethodInfo * method)); DO_APP_FUNC(0x00A9EDC0, IEnumerable_1_System_Type_ *, BoltStateMetas_FindImplementations, (Type * t, MethodInfo * method)); -DO_APP_FUNC(0x00959BA0, void, Filter_1__ctor, (Filter_1__Boxed * __this, int32_t bits, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, Filter_1_GetHashCode, (Filter_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFC0, String *, Filter_1_ToString, (Filter_1__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00959BA0, void, Filter_1__ctor, (Filter_1 * __this, int32_t bits, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, Filter_1_GetHashCode, (Filter_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFC0, String *, Filter_1_ToString, (Filter_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x00A9F1E0, bool, Filter_1_op_Implicit, (Filter_1 a, MethodInfo * method)); DO_APP_FUNC(0x00959BC0, Filter_1, Filter_1_op_BitwiseAnd, (Filter_1 a, Filter_1 b, MethodInfo * method)); DO_APP_FUNC(0x00959BD0, Filter_1, Filter_1_op_BitwiseOr, (Filter_1 a, Filter_1 b, MethodInfo * method)); @@ -94976,9 +106635,10 @@ DO_APP_FUNC(0x003AE050, void, Filter_EqualityComparer__ctor, (Filter_EqualityCom DO_APP_FUNC(0x00A9F2B0, bool, Filter_EqualityComparer_System_Collections_Generic_IEqualityComparer_Photon_Bolt_Filter__Equals, (Filter_EqualityComparer * __this, Filter_1 a, Filter_1 b, MethodInfo * method)); DO_APP_FUNC(0x003DA110, int32_t, Filter_EqualityComparer_System_Collections_Generic_IEqualityComparer_Photon_Bolt_Filter__GetHashCode, (Filter_EqualityComparer * __this, Filter_1 f, MethodInfo * method)); DO_APP_FUNC(0x00A9F2C0, void, Filter_EqualityComparer__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, ArrayIndices__ctor, (ArrayIndices__Boxed * __this, Int32__Array * indices, MethodInfo * method)); -DO_APP_FUNC(0x00A9F370, int32_t, ArrayIndices_get_Length, (ArrayIndices__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9F380, int32_t, ArrayIndices_get_Item, (ArrayIndices__Boxed * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, ArrayIndices__ctor, (ArrayIndices * __this, Int32__Array * indices, MethodInfo * method)); +DO_APP_FUNC(0x00A9F370, int32_t, ArrayIndices_get_Length, (ArrayIndices * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9F380, int32_t, ArrayIndices_get_Item, (ArrayIndices * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2700, ArrayIndices_get_Item__MethodInfo); DO_APP_FUNC(0x00A9F400, void, NetworkArray_Meta__ctor, (NetworkArray_Meta * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NetworkArray_Meta_InitMeta, (NetworkArray_Meta * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NetworkArray_Meta_InitObject, (NetworkArray_Meta * __this, NetworkObj * obj, NetworkObj_Meta_Offsets offsets, MethodInfo * method)); @@ -95005,9 +106665,10 @@ DO_APP_FUNC(0x00AA1010, void, NetworkObj_Meta_CopyProperties, (NetworkObj_Meta * DO_APP_FUNC(0x00AA1100, void, NetworkObj_Meta_InitMeta, (NetworkObj_Meta * __this, MethodInfo * method)); DO_APP_FUNC(0x00AA14C0, void, NetworkObj_Meta_InitObject, (NetworkObj_Meta * __this, NetworkObj * obj, NetworkObj * root, NetworkObj_Meta_Offsets offsets, MethodInfo * method)); DO_APP_FUNC(0x00AA1610, void, NetworkObj_Meta__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x00AA1760, void, NetworkObj_Meta_Offsets__ctor, (NetworkObj_Meta_Offsets__Boxed * __this, int32_t properties, int32_t storage, int32_t objects, MethodInfo * method)); +DO_APP_FUNC(0x00AA1760, void, NetworkObj_Meta_Offsets__ctor, (NetworkObj_Meta_Offsets * __this, int32_t properties, int32_t storage, int32_t objects, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NetworkObj_Meta_c_DisplayClass22_0__ctor, (NetworkObj_Meta_c_DisplayClass22_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00AA1770, String *, NetworkObj_Meta_c_DisplayClass22_0__AddCopiedProperty_b__0, (NetworkObj_Meta_c_DisplayClass22_0 * __this, String * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2618, NetworkObj_Meta_c_DisplayClass22_0__AddCopiedProperty_b__0__MethodInfo); DO_APP_FUNC(0x0041AEF0, bool, NetworkProperty_get_AllowCallbacks, (NetworkProperty * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, NetworkProperty_get_WantsOnRender, (NetworkProperty * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, NetworkProperty_get_WantsOnSimulateAfter, (NetworkProperty * __this, MethodInfo * method)); @@ -95020,7 +106681,9 @@ DO_APP_FUNC(0x00AA18B0, void, NetworkProperty_Settings_Interpolation, (NetworkPr DO_APP_FUNC(0x00AA18C0, Object *, NetworkProperty_DebugValue, (NetworkProperty * __this, NetworkObj * obj, NetworkStorage * storage, MethodInfo * method)); DO_APP_FUNC(0x006B4F60, int32_t, NetworkProperty_BitCount, (NetworkProperty * __this, NetworkObj * obj, MethodInfo * method)); DO_APP_FUNC(0x00AA1900, void, NetworkProperty_SetDynamic, (NetworkProperty * __this, NetworkObj * obj, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC25F0, NetworkProperty_SetDynamic__MethodInfo); DO_APP_FUNC(0x00AA1950, Object *, NetworkProperty_GetDynamic, (NetworkProperty * __this, NetworkObj * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC25E8, NetworkProperty_GetDynamic__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, NetworkProperty_SupportsDeltaCompression, (NetworkProperty * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NetworkProperty_OnInit, (NetworkProperty * __this, NetworkObj * obj, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NetworkProperty_OnRender, (NetworkProperty * __this, NetworkObj * obj, MethodInfo * method)); @@ -95079,14 +106742,16 @@ DO_APP_FUNC(0x00AA5B80, void, NetworkState_Photon_Bolt_IState_RemoveCallback, (N DO_APP_FUNC(0x00AA5C30, void, NetworkState_Photon_Bolt_IState_RemoveCallback_1, (NetworkState * __this, String * path, PropertyCallbackSimple * callback, MethodInfo * method)); DO_APP_FUNC(0x00AA5CE0, void, NetworkState_Photon_Bolt_IState_RemoveAllCallbacks, (NetworkState * __this, MethodInfo * method)); DO_APP_FUNC(0x00AA5D60, void, NetworkState_Photon_Bolt_IState_SetDynamic, (NetworkState * __this, String * property, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC22A0, NetworkState_Photon_Bolt_IState_SetDynamic__MethodInfo); DO_APP_FUNC(0x00AA5F60, Object *, NetworkState_Photon_Bolt_IState_GetDynamic, (NetworkState * __this, String * property, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2290, NetworkState_Photon_Bolt_IState_GetDynamic__MethodInfo); DO_APP_FUNC(0x00AA6150, void, NetworkState_Photon_Bolt_IState_SetTeleport, (NetworkState * __this, NetworkTransform * transform, MethodInfo * method)); DO_APP_FUNC(0x00AA6170, void, NetworkState_Photon_Bolt_IState_SetTransforms, (NetworkState * __this, NetworkTransform * transform, Transform * simulate, MethodInfo * method)); DO_APP_FUNC(0x00AA6240, void, NetworkState_Photon_Bolt_IState_SetTransforms_1, (NetworkState * __this, NetworkTransform * transform, Transform * simulate, Transform * render, MethodInfo * method)); DO_APP_FUNC(0x00AA64F0, void, NetworkState_Photon_Bolt_IState_ForceTransform, (NetworkState * __this, NetworkTransform * transform, Vector3 position, MethodInfo * method)); DO_APP_FUNC(0x00AA6610, void, NetworkState_Photon_Bolt_IState_ForceTransform_1, (NetworkState * __this, NetworkTransform * transform, Vector3 position, Quaternion rotation, MethodInfo * method)); DO_APP_FUNC(0x00AA67E0, bool, NetworkState_Photon_Bolt_IState_TrySetDynamic, (NetworkState * __this, String * property, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x00AA6970, bool, NetworkState_Photon_Bolt_IState_TryGetDynamic, (NetworkState * __this, String * property, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x00AA6970, bool, NetworkState_Photon_Bolt_IState_TryGetDynamic, (NetworkState * __this, String * property, Object * * value, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NetworkState_System_IDisposable_Dispose, (NetworkState * __this, MethodInfo * method)); DO_APP_FUNC(0x00AA6B70, void, NetworkState_InvokeCallbacks, (NetworkState * __this, MethodInfo * method)); DO_APP_FUNC(0x00AA6F20, void, NetworkState_InvokeCallbacksForProperty, (NetworkState * __this, int32_t propertyIndex, MethodInfo * method)); @@ -95095,7 +106760,7 @@ DO_APP_FUNC(0x005F7520, bool, NetworkState_PropertyField_get_IsVisible, (Network DO_APP_FUNC(0x00715340, void, NetworkState_PropertyField_set_IsVisible, (NetworkState_PropertyField * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x00AECA90, void, NetworkState_PropertyField__ctor, (NetworkState_PropertyField * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x00AECC70, void, NetworkState_PropertyField_AddField, (NetworkState_PropertyField * __this, NetworkState_PropertyField * field, MethodInfo * method)); -DO_APP_FUNC(0x00AECD10, bool, NetworkState_PropertyField_TryGet, (NetworkState_PropertyField * __this, int32_t id, NetworkState_PropertyField * field, MethodInfo * method)); +DO_APP_FUNC(0x00AECD10, bool, NetworkState_PropertyField_TryGet, (NetworkState_PropertyField * __this, int32_t id, NetworkState_PropertyField * * field, MethodInfo * method)); DO_APP_FUNC(0x003C7300, int32_t, NetworkState_PropertyField_GetHashCode, (NetworkState_PropertyField * __this, MethodInfo * method)); DO_APP_FUNC(0x00AECEA0, bool, NetworkState_PropertyField_Equals, (NetworkState_PropertyField * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, String *, NetworkState_PropertyField_GetName, (NetworkState_PropertyField * __this, MethodInfo * method)); @@ -95124,24 +106789,25 @@ DO_APP_FUNC(0x00AED850, void, NetworkTransform_SetTransformsInternal, (NetworkTr DO_APP_FUNC(0x00AEDCE0, void, NetworkTransform_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NetworkTransform_c__ctor, (NetworkTransform_c * __this, MethodInfo * method)); DO_APP_FUNC(0x00AEDD90, Vector3, NetworkTransform_c___ctor_b__9_0, (NetworkTransform_c * __this, BoltEntity * entity, Vector3 position, MethodInfo * method)); -DO_APP_FUNC(0x00AEDDB0, bool, NetworkTrigger_Equals, (NetworkTrigger__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x00AEDE50, int32_t, NetworkTrigger_GetHashCode, (NetworkTrigger__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00AEDE70, void, NetworkTrigger_Update, (NetworkTrigger__Boxed * __this, int32_t frame, bool set, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC83B8, NetworkTransform_c___ctor_b__9_0__MethodInfo); +DO_APP_FUNC(0x00AEDDB0, bool, NetworkTrigger_Equals, (NetworkTrigger * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x00AEDE50, int32_t, NetworkTrigger_GetHashCode, (NetworkTrigger * __this, MethodInfo * method)); +DO_APP_FUNC(0x00AEDE70, void, NetworkTrigger_Update, (NetworkTrigger * __this, int32_t frame, bool set, MethodInfo * method)); DO_APP_FUNC(0x00977BF0, bool, NetworkTrigger_op_Equality, (NetworkTrigger a, NetworkTrigger b, MethodInfo * method)); DO_APP_FUNC(0x00977C10, bool, NetworkTrigger_op_Inequality, (NetworkTrigger a, NetworkTrigger b, MethodInfo * method)); -DO_APP_FUNC(0x00AEDEB0, bool, NetworkValue_get_HasNonDefaultValue, (NetworkValue__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00AEDED0, Matrix4x4, NetworkValue_get_Matrix4x4, (NetworkValue__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00AEDFB0, void, NetworkValue_set_Matrix4x4, (NetworkValue__Boxed * __this, Matrix4x4 value, MethodInfo * method)); -DO_APP_FUNC(0x00AEE070, String *, NetworkValue_get_String, (NetworkValue__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCBE0, void, NetworkValue_set_String, (NetworkValue__Boxed * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x00AEE0D0, IProtocolToken *, NetworkValue_get_ProtocolToken, (NetworkValue__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCBE0, void, NetworkValue_set_ProtocolToken, (NetworkValue__Boxed * __this, IProtocolToken * value, MethodInfo * method)); -DO_APP_FUNC(0x00AEE140, NetworkTransform *, NetworkValue_get_Transform, (NetworkValue__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCBE0, void, NetworkValue_set_Transform, (NetworkValue__Boxed * __this, NetworkTransform * value, MethodInfo * method)); -DO_APP_FUNC(0x00AEE1C0, Action *, NetworkValue_get_Action, (NetworkValue__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCBE0, void, NetworkValue_set_Action, (NetworkValue__Boxed * __this, Action * value, MethodInfo * method)); -DO_APP_FUNC(0x00AEE220, BoltEntity *, NetworkValue_get_Entity, (NetworkValue__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00AEE280, void, NetworkValue_set_Entity, (NetworkValue__Boxed * __this, BoltEntity * value, MethodInfo * method)); +DO_APP_FUNC(0x00AEDEB0, bool, NetworkValue_get_HasNonDefaultValue, (NetworkValue * __this, MethodInfo * method)); +DO_APP_FUNC(0x00AEDED0, Matrix4x4, NetworkValue_get_Matrix4x4, (NetworkValue * __this, MethodInfo * method)); +DO_APP_FUNC(0x00AEDFB0, void, NetworkValue_set_Matrix4x4, (NetworkValue * __this, Matrix4x4 value, MethodInfo * method)); +DO_APP_FUNC(0x00AEE070, String *, NetworkValue_get_String, (NetworkValue * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCBE0, void, NetworkValue_set_String, (NetworkValue * __this, String * value, MethodInfo * method)); +DO_APP_FUNC(0x00AEE0D0, IProtocolToken *, NetworkValue_get_ProtocolToken, (NetworkValue * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCBE0, void, NetworkValue_set_ProtocolToken, (NetworkValue * __this, IProtocolToken * value, MethodInfo * method)); +DO_APP_FUNC(0x00AEE140, NetworkTransform *, NetworkValue_get_Transform, (NetworkValue * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCBE0, void, NetworkValue_set_Transform, (NetworkValue * __this, NetworkTransform * value, MethodInfo * method)); +DO_APP_FUNC(0x00AEE1C0, Action *, NetworkValue_get_Action, (NetworkValue * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCBE0, void, NetworkValue_set_Action, (NetworkValue * __this, Action * value, MethodInfo * method)); +DO_APP_FUNC(0x00AEE220, BoltEntity *, NetworkValue_get_Entity, (NetworkValue * __this, MethodInfo * method)); +DO_APP_FUNC(0x00AEE280, void, NetworkValue_set_Entity, (NetworkValue * __this, BoltEntity * value, MethodInfo * method)); DO_APP_FUNC(0x00A01E70, bool, NetworkValue_Diff, (bool a, bool b, MethodInfo * method)); DO_APP_FUNC(0x00AEE320, bool, NetworkValue_Diff_1, (int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00A9AF40, bool, NetworkValue_Diff_2, (Guid a, Guid b, MethodInfo * method)); @@ -95376,48 +107042,53 @@ DO_APP_FUNC(0x003F7AE0, void, PropertyCallbackSimple__ctor, (PropertyCallbackSim DO_APP_FUNC(0x003CB0B0, void, PropertyCallbackSimple_Invoke, (PropertyCallbackSimple * __this, MethodInfo * method)); DO_APP_FUNC(0x003F7C10, IAsyncResult *, PropertyCallbackSimple_BeginInvoke, (PropertyCallbackSimple * __this, AsyncCallback * callback, Object * object, MethodInfo * method)); DO_APP_FUNC(0x003BA270, void, PropertyCallbackSimple_EndInvoke, (PropertyCallbackSimple * __this, IAsyncResult * result, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, PropertyFloatCompressionSettings_get_BitsRequired, (PropertyFloatCompressionSettings__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, PropertyFloatCompressionSettings_get_BitsRequired, (PropertyFloatCompressionSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x00AFC6F0, PropertyFloatCompressionSettings, PropertyFloatCompressionSettings_Create, (MethodInfo * method)); DO_APP_FUNC(0x00AFC700, PropertyFloatCompressionSettings, PropertyFloatCompressionSettings_Create_1, (int32_t bits, float shift, float pack, float read, MethodInfo * method)); -DO_APP_FUNC(0x00AFC720, void, PropertyFloatCompressionSettings_Pack, (PropertyFloatCompressionSettings__Boxed * __this, UdpPacket * stream, float value, MethodInfo * method)); -DO_APP_FUNC(0x00AFC800, float, PropertyFloatCompressionSettings_Read, (PropertyFloatCompressionSettings__Boxed * __this, UdpPacket * stream, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, PropertyIntCompressionSettings_get_BitsRequired, (PropertyIntCompressionSettings__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00AFC720, void, PropertyFloatCompressionSettings_Pack, (PropertyFloatCompressionSettings * __this, UdpPacket * stream, float value, MethodInfo * method)); +DO_APP_FUNC(0x00AFC800, float, PropertyFloatCompressionSettings_Read, (PropertyFloatCompressionSettings * __this, UdpPacket * stream, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, PropertyIntCompressionSettings_get_BitsRequired, (PropertyIntCompressionSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x00AFC870, PropertyIntCompressionSettings, PropertyIntCompressionSettings_Create, (MethodInfo * method)); DO_APP_FUNC(0x00AFC890, PropertyIntCompressionSettings, PropertyIntCompressionSettings_Create_1, (int32_t bits, int32_t shift, MethodInfo * method)); -DO_APP_FUNC(0x00AFC8A0, void, PropertyIntCompressionSettings_Pack, (PropertyIntCompressionSettings__Boxed * __this, UdpPacket * stream, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00AFC8D0, int32_t, PropertyIntCompressionSettings_Read, (PropertyIntCompressionSettings__Boxed * __this, UdpPacket * stream, MethodInfo * method)); -DO_APP_FUNC(0x00AFC900, int32_t, PropertyQuaternionCompression_get_BitsRequired, (PropertyQuaternionCompression__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00AFC920, bool, PropertyQuaternionCompression_get_StrictComparison, (PropertyQuaternionCompression__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00AFC8A0, void, PropertyIntCompressionSettings_Pack, (PropertyIntCompressionSettings * __this, UdpPacket * stream, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x00AFC8D0, int32_t, PropertyIntCompressionSettings_Read, (PropertyIntCompressionSettings * __this, UdpPacket * stream, MethodInfo * method)); +DO_APP_FUNC(0x00AFC900, int32_t, PropertyQuaternionCompression_get_BitsRequired, (PropertyQuaternionCompression * __this, MethodInfo * method)); +DO_APP_FUNC(0x00AFC920, bool, PropertyQuaternionCompression_get_StrictComparison, (PropertyQuaternionCompression * __this, MethodInfo * method)); DO_APP_FUNC(0x00AFC930, PropertyQuaternionCompression, PropertyQuaternionCompression_Create, (PropertyVectorCompressionSettings euler, MethodInfo * method)); DO_APP_FUNC(0x00AFC970, PropertyQuaternionCompression, PropertyQuaternionCompression_Create_1, (PropertyFloatCompressionSettings quaternion, MethodInfo * method)); DO_APP_FUNC(0x00AFC9C0, PropertyQuaternionCompression, PropertyQuaternionCompression_Create_2, (PropertyFloatCompressionSettings quaternion, bool strict, MethodInfo * method)); -DO_APP_FUNC(0x00AFCA00, void, PropertyQuaternionCompression_Pack, (PropertyQuaternionCompression__Boxed * __this, UdpPacket * stream, Quaternion value, MethodInfo * method)); -DO_APP_FUNC(0x00AFCAF0, Quaternion, PropertyQuaternionCompression_Read, (PropertyQuaternionCompression__Boxed * __this, UdpPacket * stream, MethodInfo * method)); +DO_APP_FUNC(0x00AFCA00, void, PropertyQuaternionCompression_Pack, (PropertyQuaternionCompression * __this, UdpPacket * stream, Quaternion value, MethodInfo * method)); +DO_APP_FUNC(0x00AFCAF0, Quaternion, PropertyQuaternionCompression_Read, (PropertyQuaternionCompression * __this, UdpPacket * stream, MethodInfo * method)); DO_APP_FUNC(0x00AFCC40, PropertyTransformCompressionSettings, PropertyTransformCompressionSettings_Create, (PropertyVectorCompressionSettings position, PropertyQuaternionCompression rotation, MethodInfo * method)); -DO_APP_FUNC(0x00AFCC90, int32_t, PropertyVectorCompressionSettings_get_BitsRequired, (PropertyVectorCompressionSettings__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00AFCC90, int32_t, PropertyVectorCompressionSettings_get_BitsRequired, (PropertyVectorCompressionSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x00AFCCA0, PropertyVectorCompressionSettings, PropertyVectorCompressionSettings_Create, (PropertyFloatCompressionSettings x, PropertyFloatCompressionSettings y, PropertyFloatCompressionSettings z, MethodInfo * method)); DO_APP_FUNC(0x00AFCD00, PropertyVectorCompressionSettings, PropertyVectorCompressionSettings_Create_1, (PropertyFloatCompressionSettings x, PropertyFloatCompressionSettings y, PropertyFloatCompressionSettings z, bool strict, MethodInfo * method)); -DO_APP_FUNC(0x00AFCD30, void, PropertyVectorCompressionSettings_Pack, (PropertyVectorCompressionSettings__Boxed * __this, UdpPacket * stream, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x00AFCD90, Vector3, PropertyVectorCompressionSettings_Read, (PropertyVectorCompressionSettings__Boxed * __this, UdpPacket * stream, MethodInfo * method)); +DO_APP_FUNC(0x00AFCD30, void, PropertyVectorCompressionSettings_Pack, (PropertyVectorCompressionSettings * __this, UdpPacket * stream, Vector3 value, MethodInfo * method)); +DO_APP_FUNC(0x00AFCD90, Vector3, PropertyVectorCompressionSettings_Read, (PropertyVectorCompressionSettings * __this, UdpPacket * stream, MethodInfo * method)); DO_APP_FUNC(0x00AFCED0, PropertyExtrapolationSettings, PropertyExtrapolationSettings_Create, (int32_t maxFrames, float errorTolerance, float snapMagnitude, ExtrapolationVelocityModes__Enum velocityMode, MethodInfo * method)); -DO_APP_FUNC(0x00AFCF00, bool, PropertyMecanimSettings_get_Enabled, (PropertyMecanimSettings__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00AFCF10, Encoding *, PropertyStringSettings_get_EncodingClass, (PropertyStringSettings__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00AFCF00, bool, PropertyMecanimSettings_get_Enabled, (PropertyMecanimSettings * __this, MethodInfo * method)); +DO_APP_FUNC(0x00AFCF10, Encoding *, PropertyStringSettings_get_EncodingClass, (PropertyStringSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x00AFCF20, void, BitSet__cctor, (MethodInfo * method)); DO_APP_FUNC(0x00AFD1F0, void, BitSet__ctor, (BitSet * __this, uint64_t bits0, uint64_t bits1, uint64_t bits2, uint64_t bits3, uint64_t bits4, uint64_t bits5, uint64_t bits6, uint64_t bits7, uint64_t bits8, uint64_t bits9, uint64_t bits10, uint64_t bits11, uint64_t bits12, uint64_t bits13, uint64_t bits14, uint64_t bits15, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BitSet__ctor_1, (BitSet * __this, MethodInfo * method)); DO_APP_FUNC(0x00AFD280, bool, BitSet_get_IsZero, (BitSet * __this, MethodInfo * method)); DO_APP_FUNC(0x00AFD300, void, BitSet_Set, (BitSet * __this, int32_t bit, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8310, BitSet_Set__MethodInfo); DO_APP_FUNC(0x00AFD640, void, BitSet_Clear, (BitSet * __this, int32_t bit, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8320, BitSet_Clear__MethodInfo); DO_APP_FUNC(0x00AFD980, void, BitSet_Combine, (BitSet * __this, BitSet * other, MethodInfo * method)); DO_APP_FUNC(0x00AFDA70, void, BitSet_ClearAll, (BitSet * __this, MethodInfo * method)); DO_APP_FUNC(0x00AFDAC0, bool, BitSet_IsSet, (BitSet * __this, int32_t bit, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8300, BitSet_IsSet__MethodInfo); DO_APP_FUNC(0x00AFDD00, uint64_t, BitSet_get_Item, (BitSet * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC82F8, BitSet_get_Item__MethodInfo); DO_APP_FUNC(0x00AFDE50, void, BitSet_set_Item, (BitSet * __this, int32_t index, uint64_t value, MethodInfo * method)); -DO_APP_FUNC(0x00AFDFA0, bool, EntityFlags_get_IsZero, (EntityFlags__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00959BA0, void, EntityFlags__ctor, (EntityFlags__Boxed * __this, int32_t val, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, EntityFlags_GetHashCode, (EntityFlags__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00AFDFB0, bool, EntityFlags_Equals, (EntityFlags__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x00AFE040, String *, EntityFlags_ToString, (EntityFlags__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8308, BitSet_set_Item__MethodInfo); +DO_APP_FUNC(0x00AFDFA0, bool, EntityFlags_get_IsZero, (EntityFlags * __this, MethodInfo * method)); +DO_APP_FUNC(0x00959BA0, void, EntityFlags__ctor, (EntityFlags * __this, int32_t val, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, EntityFlags_GetHashCode, (EntityFlags * __this, MethodInfo * method)); +DO_APP_FUNC(0x00AFDFB0, bool, EntityFlags_Equals, (EntityFlags * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x00AFE040, String *, EntityFlags_ToString, (EntityFlags * __this, MethodInfo * method)); DO_APP_FUNC(0x00A9F1E0, bool, EntityFlags_op_Implicit, (EntityFlags a, MethodInfo * method)); DO_APP_FUNC(0x00959BB0, int32_t, EntityFlags_op_Explicit, (EntityFlags a, MethodInfo * method)); DO_APP_FUNC(0x00959BB0, EntityFlags, EntityFlags_op_Explicit_1, (int32_t a, MethodInfo * method)); @@ -95428,11 +107099,11 @@ DO_APP_FUNC(0x00959BE0, EntityFlags, EntityFlags_op_OnesComplement, (EntityFlags DO_APP_FUNC(0x00AFE200, bool, EntityFlags_op_Equality, (EntityFlags a, EntityFlags b, MethodInfo * method)); DO_APP_FUNC(0x00AEE320, bool, EntityFlags_op_Inequality, (EntityFlags a, EntityFlags b, MethodInfo * method)); DO_APP_FUNC(0x00AFE210, void, EntityFlags__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x00AFDFA0, bool, InstantiateFlags_get_IsZero, (InstantiateFlags__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00959BA0, void, InstantiateFlags__ctor, (InstantiateFlags__Boxed * __this, int32_t val, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, InstantiateFlags_GetHashCode, (InstantiateFlags__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00AFE2C0, bool, InstantiateFlags_Equals, (InstantiateFlags__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x00AFE350, String *, InstantiateFlags_ToString, (InstantiateFlags__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00AFDFA0, bool, InstantiateFlags_get_IsZero, (InstantiateFlags * __this, MethodInfo * method)); +DO_APP_FUNC(0x00959BA0, void, InstantiateFlags__ctor, (InstantiateFlags * __this, int32_t val, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, InstantiateFlags_GetHashCode, (InstantiateFlags * __this, MethodInfo * method)); +DO_APP_FUNC(0x00AFE2C0, bool, InstantiateFlags_Equals, (InstantiateFlags * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x00AFE350, String *, InstantiateFlags_ToString, (InstantiateFlags * __this, MethodInfo * method)); DO_APP_FUNC(0x00A9F1E0, bool, InstantiateFlags_op_Implicit, (InstantiateFlags a, MethodInfo * method)); DO_APP_FUNC(0x00959BB0, int32_t, InstantiateFlags_op_Explicit, (InstantiateFlags a, MethodInfo * method)); DO_APP_FUNC(0x00959BB0, InstantiateFlags, InstantiateFlags_op_Explicit_1, (int32_t a, MethodInfo * method)); @@ -95443,11 +107114,11 @@ DO_APP_FUNC(0x00959BE0, InstantiateFlags, InstantiateFlags_op_OnesComplement, (I DO_APP_FUNC(0x00AFE200, bool, InstantiateFlags_op_Equality, (InstantiateFlags a, InstantiateFlags b, MethodInfo * method)); DO_APP_FUNC(0x00AEE320, bool, InstantiateFlags_op_Inequality, (InstantiateFlags a, InstantiateFlags b, MethodInfo * method)); DO_APP_FUNC(0x00AFE480, void, InstantiateFlags__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x00AFDFA0, bool, ProxyFlags_get_IsZero, (ProxyFlags__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00959BA0, void, ProxyFlags__ctor, (ProxyFlags__Boxed * __this, int32_t val, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, ProxyFlags_GetHashCode, (ProxyFlags__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00AFE4F0, bool, ProxyFlags_Equals, (ProxyFlags__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x00AFE580, String *, ProxyFlags_ToString, (ProxyFlags__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00AFDFA0, bool, ProxyFlags_get_IsZero, (ProxyFlags * __this, MethodInfo * method)); +DO_APP_FUNC(0x00959BA0, void, ProxyFlags__ctor, (ProxyFlags * __this, int32_t val, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, ProxyFlags_GetHashCode, (ProxyFlags * __this, MethodInfo * method)); +DO_APP_FUNC(0x00AFE4F0, bool, ProxyFlags_Equals, (ProxyFlags * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x00AFE580, String *, ProxyFlags_ToString, (ProxyFlags * __this, MethodInfo * method)); DO_APP_FUNC(0x00A9F1E0, bool, ProxyFlags_op_Implicit, (ProxyFlags a, MethodInfo * method)); DO_APP_FUNC(0x00959BB0, int32_t, ProxyFlags_op_Explicit, (ProxyFlags a, MethodInfo * method)); DO_APP_FUNC(0x00959BB0, ProxyFlags, ProxyFlags_op_Explicit_1, (int32_t a, MethodInfo * method)); @@ -95458,11 +107129,11 @@ DO_APP_FUNC(0x00959BE0, ProxyFlags, ProxyFlags_op_OnesComplement, (ProxyFlags a, DO_APP_FUNC(0x00AFE200, bool, ProxyFlags_op_Equality, (ProxyFlags a, ProxyFlags b, MethodInfo * method)); DO_APP_FUNC(0x00AEE320, bool, ProxyFlags_op_Inequality, (ProxyFlags a, ProxyFlags b, MethodInfo * method)); DO_APP_FUNC(0x00AFE780, void, ProxyFlags__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x00AFDFA0, bool, CommandFlags_get_IsZero, (CommandFlags__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00959BA0, void, CommandFlags__ctor, (CommandFlags__Boxed * __this, int32_t val, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, CommandFlags_GetHashCode, (CommandFlags__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00AFE860, bool, CommandFlags_Equals, (CommandFlags__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x00AFE8F0, String *, CommandFlags_ToString, (CommandFlags__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00AFDFA0, bool, CommandFlags_get_IsZero, (CommandFlags * __this, MethodInfo * method)); +DO_APP_FUNC(0x00959BA0, void, CommandFlags__ctor, (CommandFlags * __this, int32_t val, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, CommandFlags_GetHashCode, (CommandFlags * __this, MethodInfo * method)); +DO_APP_FUNC(0x00AFE860, bool, CommandFlags_Equals, (CommandFlags * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x00AFE8F0, String *, CommandFlags_ToString, (CommandFlags * __this, MethodInfo * method)); DO_APP_FUNC(0x00A9F1E0, bool, CommandFlags_op_Implicit, (CommandFlags a, MethodInfo * method)); DO_APP_FUNC(0x00959BB0, int32_t, CommandFlags_op_Explicit, (CommandFlags a, MethodInfo * method)); DO_APP_FUNC(0x00959BB0, CommandFlags, CommandFlags_op_Explicit_1, (int32_t a, MethodInfo * method)); @@ -95477,10 +107148,10 @@ DO_APP_FUNC(0x00AFEB90, void, IdExtensions_WritePrefabId, (UdpPacket * stream, P DO_APP_FUNC(0x00AFEC00, PrefabId, IdExtensions_ReadPrefabId, (UdpPacket * stream, MethodInfo * method)); DO_APP_FUNC(0x00AFEB90, void, IdExtensions_WriteTypeId, (UdpPacket * stream, TypeId id, MethodInfo * method)); DO_APP_FUNC(0x00AFEC00, TypeId, IdExtensions_ReadTypeId, (UdpPacket * stream, MethodInfo * method)); -DO_APP_FUNC(0x00959BA0, void, PrefabId__ctor, (PrefabId__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00AFEC60, bool, PrefabId_Equals, (PrefabId__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, PrefabId_GetHashCode, (PrefabId__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00AFECF0, String *, PrefabId_ToString, (PrefabId__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00959BA0, void, PrefabId__ctor, (PrefabId * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x00AFEC60, bool, PrefabId_Equals, (PrefabId * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, PrefabId_GetHashCode, (PrefabId * __this, MethodInfo * method)); +DO_APP_FUNC(0x00AFECF0, String *, PrefabId_ToString, (PrefabId * __this, MethodInfo * method)); DO_APP_FUNC(0x00AFE200, bool, PrefabId_op_Equality, (PrefabId a, PrefabId b, MethodInfo * method)); DO_APP_FUNC(0x00AEE320, bool, PrefabId_op_Inequality, (PrefabId a, PrefabId b, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, PrefabId_Comparer__ctor, (PrefabId_Comparer * __this, MethodInfo * method)); @@ -95490,10 +107161,10 @@ DO_APP_FUNC(0x003AE050, void, PrefabId_EqualityComparer__ctor, (PrefabId_Equalit DO_APP_FUNC(0x00A9F2B0, bool, PrefabId_EqualityComparer_System_Collections_Generic_IEqualityComparer_Photon_Bolt_PrefabId__Equals, (PrefabId_EqualityComparer * __this, PrefabId x, PrefabId y, MethodInfo * method)); DO_APP_FUNC(0x003DA110, int32_t, PrefabId_EqualityComparer_System_Collections_Generic_IEqualityComparer_Photon_Bolt_PrefabId__GetHashCode, (PrefabId_EqualityComparer * __this, PrefabId x, MethodInfo * method)); DO_APP_FUNC(0x00AFEE60, void, PrefabId_EqualityComparer__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x00959BA0, void, TypeId__ctor, (TypeId__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00AFEF10, bool, TypeId_Equals, (TypeId__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, TypeId_GetHashCode, (TypeId__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00AFEFA0, String *, TypeId_ToString, (TypeId__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00959BA0, void, TypeId__ctor, (TypeId * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x00AFEF10, bool, TypeId_Equals, (TypeId * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, TypeId_GetHashCode, (TypeId * __this, MethodInfo * method)); +DO_APP_FUNC(0x00AFEFA0, String *, TypeId_ToString, (TypeId * __this, MethodInfo * method)); DO_APP_FUNC(0x00AFE200, bool, TypeId_op_Equality, (TypeId a, TypeId b, MethodInfo * method)); DO_APP_FUNC(0x00AEE320, bool, TypeId_op_Inequality, (TypeId a, TypeId b, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TypeId_Comparer__ctor, (TypeId_Comparer * __this, MethodInfo * method)); @@ -95508,7 +107179,7 @@ DO_APP_FUNC(0x00AFF1B0, Byte__Array *, ProtocolTokenUtils_ToByteArray, (IProtoco DO_APP_FUNC(0x00AFF6A0, IProtocolToken *, ProtocolTokenUtils_ToToken, (Byte__Array * bytes, MethodInfo * method)); DO_APP_FUNC(0x00AFF8B0, void, ProtocolTokenUtils_WriteToken, (UdpPacket * packet, IProtocolToken * token, MethodInfo * method)); DO_APP_FUNC(0x00AFF9D0, IProtocolToken *, ProtocolTokenUtils_ReadToken, (UdpPacket * packet, MethodInfo * method)); -DO_APP_FUNC(0x00AFFAD0, void, ProtocolTokenUtils_SerializeToken, (UdpPacket * packet, IProtocolToken * token, MethodInfo * method)); +DO_APP_FUNC(0x00AFFAD0, void, ProtocolTokenUtils_SerializeToken, (UdpPacket * packet, IProtocolToken * * token, MethodInfo * method)); DO_APP_FUNC(0x00AFFB50, void, ProtocolTokenUtils_Release, (IProtocolToken * token, MethodInfo * method)); DO_APP_FUNC(0x003BCD50, BoltNetworkModes__Enum, BoltGlobalBehaviourAttribute_get_Mode, (BoltGlobalBehaviourAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, BoltGlobalBehaviourAttribute_set_Mode, (BoltGlobalBehaviourAttribute * __this, BoltNetworkModes__Enum value, MethodInfo * method)); @@ -95541,6 +107212,7 @@ DO_APP_FUNC(0x00B012F0, void, PrefabDatabase__ctor, (PrefabDatabase * __this, Me DO_APP_FUNC(0x00B01410, void, PrefabDatabase_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, PrefabDatabase_c__ctor, (PrefabDatabase_c * __this, MethodInfo * method)); DO_APP_FUNC(0x00B014C0, void, PrefabDatabase_c__BuildCacheAsync_b__13_0, (PrefabDatabase_c * __this, AsyncOperation_1 * op, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8150, PrefabDatabase_c__BuildCacheAsync_b__13_0__MethodInfo); DO_APP_FUNC(0x00B01610, GameObject *, DefaultPrefabPool_Photon_Bolt_IPrefabPool_Instantiate, (DefaultPrefabPool * __this, PrefabId prefabId, Vector3 position, Quaternion rotation, MethodInfo * method)); DO_APP_FUNC(0x006AEAE0, GameObject *, DefaultPrefabPool_Photon_Bolt_IPrefabPool_LoadPrefab, (DefaultPrefabPool * __this, PrefabId prefabId, MethodInfo * method)); DO_APP_FUNC(0x00B01760, void, DefaultPrefabPool_Photon_Bolt_IPrefabPool_Destroy, (DefaultPrefabPool * __this, GameObject * gameObject, MethodInfo * method)); @@ -95569,6 +107241,7 @@ DO_APP_FUNC(0x003AE050, void, CCUService_SendReport_d_6_System_IDisposable_Dispo DO_APP_FUNC(0x00B02610, bool, CCUService_SendReport_d_6_MoveNext, (CCUService_SendReport_d_6 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, CCUService_SendReport_d_6_System_Collections_Generic_IEnumerator_System_Object__get_Current, (CCUService_SendReport_d_6 * __this, MethodInfo * method)); DO_APP_FUNC(0x00B027A0, void, CCUService_SendReport_d_6_System_Collections_IEnumerator_Reset, (CCUService_SendReport_d_6 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC80D8, CCUService_SendReport_d_6_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, CCUService_SendReport_d_6_System_Collections_IEnumerator_get_Current, (CCUService_SendReport_d_6 * __this, MethodInfo * method)); DO_APP_FUNC(0x00B027F0, void, SceneLoadChannel__ctor, (SceneLoadChannel * __this, MethodInfo * method)); DO_APP_FUNC(0x00B02870, void, SceneLoadChannel_ForceSceneSync, (SceneLoadChannel * __this, MethodInfo * method)); @@ -95597,20 +107270,22 @@ DO_APP_FUNC(0x003AE050, void, BoltSceneLoader_LoadAsync_d_12_System_IDisposable_ DO_APP_FUNC(0x00B03A60, bool, BoltSceneLoader_LoadAsync_d_12_MoveNext, (BoltSceneLoader_LoadAsync_d_12 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, BoltSceneLoader_LoadAsync_d_12_System_Collections_Generic_IEnumerator_System_Object__get_Current, (BoltSceneLoader_LoadAsync_d_12 * __this, MethodInfo * method)); DO_APP_FUNC(0x00B03E70, void, BoltSceneLoader_LoadAsync_d_12_System_Collections_IEnumerator_Reset, (BoltSceneLoader_LoadAsync_d_12 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8078, BoltSceneLoader_LoadAsync_d_12_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, BoltSceneLoader_LoadAsync_d_12_System_Collections_IEnumerator_get_Current, (BoltSceneLoader_LoadAsync_d_12 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, BoltSceneLoader_Done_d_13__ctor, (BoltSceneLoader_Done_d_13 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BoltSceneLoader_Done_d_13_System_IDisposable_Dispose, (BoltSceneLoader_Done_d_13 * __this, MethodInfo * method)); DO_APP_FUNC(0x00B03EC0, bool, BoltSceneLoader_Done_d_13_MoveNext, (BoltSceneLoader_Done_d_13 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, BoltSceneLoader_Done_d_13_System_Collections_Generic_IEnumerator_System_Object__get_Current, (BoltSceneLoader_Done_d_13 * __this, MethodInfo * method)); DO_APP_FUNC(0x00B04150, void, BoltSceneLoader_Done_d_13_System_Collections_IEnumerator_Reset, (BoltSceneLoader_Done_d_13 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8070, BoltSceneLoader_Done_d_13_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, BoltSceneLoader_Done_d_13_System_Collections_IEnumerator_get_Current, (BoltSceneLoader_Done_d_13 * __this, MethodInfo * method)); -DO_APP_FUNC(0x00B041A0, SceneLoadState, SceneLoadState_BeginLoad, (SceneLoadState__Boxed * __this, int32_t index, IProtocolToken * token, MethodInfo * method)); +DO_APP_FUNC(0x00B041A0, SceneLoadState, SceneLoadState_BeginLoad, (SceneLoadState * __this, int32_t index, IProtocolToken * token, MethodInfo * method)); DO_APP_FUNC(0x00B04250, SceneLoadState, SceneLoadState_DefaultRemote, (MethodInfo * method)); DO_APP_FUNC(0x00B042F0, SceneLoadState, SceneLoadState_DefaultLocal, (MethodInfo * method)); -DO_APP_FUNC(0x00B043E0, void, Scene_1__ctor, (Scene_1__Boxed * __this, int32_t index, int32_t sequence, MethodInfo * method)); -DO_APP_FUNC(0x00B04400, int32_t, Scene_1_GetHashCode, (Scene_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00B04410, bool, Scene_1_Equals, (Scene_1__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x00B044D0, String *, Scene_1_ToString, (Scene_1__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00B043E0, void, Scene_1__ctor, (Scene_1 * __this, int32_t index, int32_t sequence, MethodInfo * method)); +DO_APP_FUNC(0x00B04400, int32_t, Scene_1_GetHashCode, (Scene_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x00B04410, bool, Scene_1_Equals, (Scene_1 * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x00B044D0, String *, Scene_1_ToString, (Scene_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x00B045A0, bool, Scene_1_op_Equality, (Scene_1 a, Scene_1 b, MethodInfo * method)); DO_APP_FUNC(0x00B045C0, bool, Scene_1_op_Inequality, (Scene_1 a, Scene_1 b, MethodInfo * method)); DO_APP_FUNC(0x00B045E0, UdpSession *, BoltMatchmaking_get_CurrentSession, (MethodInfo * method)); @@ -95633,12 +107308,12 @@ DO_APP_FUNC(0x00B04CD0, void, BoltHitbox_set_hitboxBoxSize, (BoltHitbox * __this DO_APP_FUNC(0x003D0480, float, BoltHitbox_get_hitboxSphereRadius, (BoltHitbox * __this, MethodInfo * method)); DO_APP_FUNC(0x003D0490, void, BoltHitbox_set_hitboxSphereRadius, (BoltHitbox * __this, float value, MethodInfo * method)); DO_APP_FUNC(0x00B04CE0, void, BoltHitbox_OnDrawGizmos, (BoltHitbox * __this, MethodInfo * method)); -DO_APP_FUNC(0x00B04E00, bool, BoltHitbox_OverlapSphere, (BoltHitbox * __this, Matrix4x4 matrix, Vector3 center, float radius, MethodInfo * method)); -DO_APP_FUNC(0x00B05150, bool, BoltHitbox_Raycast, (BoltHitbox * __this, Matrix4x4 matrix, Vector3 scale, Vector3 origin, Vector3 direction, float distance, MethodInfo * method)); +DO_APP_FUNC(0x00B04E00, bool, BoltHitbox_OverlapSphere, (BoltHitbox * __this, Matrix4x4 * matrix, Vector3 center, float radius, MethodInfo * method)); +DO_APP_FUNC(0x00B05150, bool, BoltHitbox_Raycast, (BoltHitbox * __this, Matrix4x4 * matrix, Vector3 * scale, Vector3 origin, Vector3 direction, float * distance, MethodInfo * method)); DO_APP_FUNC(0x00B05620, bool, BoltHitbox_OverlapSphereOnSphere, (BoltHitbox * __this, Vector3 center, float radius, MethodInfo * method)); DO_APP_FUNC(0x00B05730, bool, BoltHitbox_OverlapSphereOnBox, (BoltHitbox * __this, Vector3 center, float radius, MethodInfo * method)); -DO_APP_FUNC(0x00B058B0, bool, BoltHitbox_RaycastSphere, (BoltHitbox * __this, Vector3 origin, Vector3 direction, Vector3 scale, float distance, MethodInfo * method)); -DO_APP_FUNC(0x00B05A40, void, BoltHitbox_ClampVector, (Vector3 value, Vector3 min, Vector3 max, Vector3 result, MethodInfo * method)); +DO_APP_FUNC(0x00B058B0, bool, BoltHitbox_RaycastSphere, (BoltHitbox * __this, Vector3 origin, Vector3 direction, Vector3 scale, float * distance, MethodInfo * method)); +DO_APP_FUNC(0x00B05A40, void, BoltHitbox_ClampVector, (Vector3 * value, Vector3 * min, Vector3 * max, Vector3 * result, MethodInfo * method)); DO_APP_FUNC(0x00B05A90, void, BoltHitbox_Draw, (BoltHitbox * __this, Matrix4x4 matrix, MethodInfo * method)); DO_APP_FUNC(0x00B05D90, void, BoltHitbox__ctor, (BoltHitbox * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB330, BoltHitboxBody *, BoltHitboxBody_Photon_Bolt_Collections_IBoltListNode_Photon_Bolt_LagCompensation_BoltHitboxBody__get_prev, (BoltHitboxBody * __this, MethodInfo * method)); @@ -95694,7 +107369,7 @@ DO_APP_FUNC(0x00B08FD0, BoltPhysicsHits *, BoltPhysics_Raycast, (Ray ray, int32_ DO_APP_FUNC(0x00B092C0, BoltPhysicsHits *, BoltPhysics_Raycast_1, (Ray ray, BoltHitboxWorldSnapshot * snapshot, MethodInfo * method)); DO_APP_FUNC(0x00B094C0, BoltPhysicsHits *, BoltPhysics_OverlapSphere, (Vector3 origin, float radius, int32_t frame, MethodInfo * method)); DO_APP_FUNC(0x00B09770, BoltPhysicsHits *, BoltPhysics_OverlapSphere_1, (Vector3 origin, float radius, BoltHitboxWorldSnapshot * snapshot, MethodInfo * method)); -DO_APP_FUNC(0x00B09960, bool, BoltPhysics_TryGetSnapshot, (int32_t frame, BoltHitboxWorldSnapshot * snapshot, MethodInfo * method)); +DO_APP_FUNC(0x00B09960, bool, BoltPhysics_TryGetSnapshot, (int32_t frame, BoltHitboxWorldSnapshot * * snapshot, MethodInfo * method)); DO_APP_FUNC(0x00B09C70, void, BoltPhysics__cctor, (MethodInfo * method)); DO_APP_FUNC(0x00B09E00, int32_t, BoltPhysicsHits_get_count, (BoltPhysicsHits * __this, MethodInfo * method)); DO_APP_FUNC(0x00B09E50, BoltPhysicsHit, BoltPhysicsHits_get_Item, (BoltPhysicsHits * __this, int32_t index, MethodInfo * method)); @@ -95754,12 +107429,17 @@ DO_APP_FUNC(0x003AE000, void, DebugInfo_1__ctor, (DebugInfo_1 * __this, MethodIn DO_APP_FUNC(0x00B12030, void, DebugInfo_1__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, DebugInfo_c_DisplayClass61_0__ctor, (DebugInfo_c_DisplayClass61_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00B12410, bool, DebugInfo_c_DisplayClass61_0__OnGUI_b__1, (DebugInfo_c_DisplayClass61_0 * __this, Entity * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCAE68, DebugInfo_c_DisplayClass61_0__OnGUI_b__1__MethodInfo); DO_APP_FUNC(0x00B125B0, float, DebugInfo_c_DisplayClass61_0__OnGUI_b__2, (DebugInfo_c_DisplayClass61_0 * __this, Entity * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCAE60, DebugInfo_c_DisplayClass61_0__OnGUI_b__2__MethodInfo); DO_APP_FUNC(0x00B12740, void, DebugInfo_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, DebugInfo_c__ctor, (DebugInfo_c * __this, MethodInfo * method)); DO_APP_FUNC(0x00B127F0, bool, DebugInfo_c__OnGUI_b__61_0, (DebugInfo_c * __this, Entity * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCAEB8, DebugInfo_c__OnGUI_b__61_0__MethodInfo); DO_APP_FUNC(0x00B12880, bool, DebugInfo_c__DrawSummary_b__62_0, (DebugInfo_c * __this, Entity * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCAD68, DebugInfo_c__DrawSummary_b__62_0__MethodInfo); DO_APP_FUNC(0x00B128A0, bool, DebugInfo_c__DrawSummary_b__62_1, (DebugInfo_c * __this, Entity * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCAD28, DebugInfo_c__DrawSummary_b__62_1__MethodInfo); DO_APP_FUNC(0x00B128C0, void, BoltLog_RemoveAll, (MethodInfo * method)); DO_APP_FUNC(0x00B12C80, void, BoltLog_Info, (String * message, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BoltLog_Info_1, (Object * message, MethodInfo * method)); @@ -95802,6 +107482,7 @@ DO_APP_FUNC(0x00B14F90, void, BoltLog_File_Photon_Bolt_Utils_BoltLog_IWriter_War DO_APP_FUNC(0x00B14F90, void, BoltLog_File_Photon_Bolt_Utils_BoltLog_IWriter_Error, (BoltLog_File * __this, String * message, MethodInfo * method)); DO_APP_FUNC(0x00B14FA0, void, BoltLog_File_Dispose, (BoltLog_File * __this, MethodInfo * method)); DO_APP_FUNC(0x00B14FB0, void, BoltLog_File_WriteLoop, (BoltLog_File * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCABD0, BoltLog_File_WriteLoop__MethodInfo); DO_APP_FUNC(0x00B159B0, bool, BoltLog_File_Equals, (BoltLog_File * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x00B15A80, int32_t, BoltLog_File_GetHashCode, (BoltLog_File * __this, MethodInfo * method)); DO_APP_FUNC(0x00B15AE0, void, BoltLog_ConsoleWriter_Photon_Bolt_Utils_BoltLog_IWriter_Info, (BoltLog_ConsoleWriter * __this, String * message, MethodInfo * method)); @@ -95828,9 +107509,9 @@ DO_APP_FUNC(0x003AE050, void, BoltLog_UnityWriter_Dispose, (BoltLog_UnityWriter DO_APP_FUNC(0x00B159B0, bool, BoltLog_UnityWriter_Equals, (BoltLog_UnityWriter * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x00B15A80, int32_t, BoltLog_UnityWriter_GetHashCode, (BoltLog_UnityWriter * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BoltLog_UnityWriter__ctor, (BoltLog_UnityWriter * __this, MethodInfo * method)); -DO_APP_FUNC(0x00B16160, void, BoltSequenceGenerator__ctor, (BoltSequenceGenerator__Boxed * __this, int32_t bits, MethodInfo * method)); -DO_APP_FUNC(0x00B16180, void, BoltSequenceGenerator__ctor_1, (BoltSequenceGenerator__Boxed * __this, int32_t bits, uint32_t start, MethodInfo * method)); -DO_APP_FUNC(0x00B161A0, uint32_t, BoltSequenceGenerator_Next, (BoltSequenceGenerator__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00B16160, void, BoltSequenceGenerator__ctor, (BoltSequenceGenerator * __this, int32_t bits, MethodInfo * method)); +DO_APP_FUNC(0x00B16180, void, BoltSequenceGenerator__ctor_1, (BoltSequenceGenerator * __this, int32_t bits, uint32_t start, MethodInfo * method)); +DO_APP_FUNC(0x00B161A0, uint32_t, BoltSequenceGenerator_Next, (BoltSequenceGenerator * __this, MethodInfo * method)); DO_APP_FUNC(0x00B161B0, String *, BoltUtils_ToStringDetailed, (Quaternion q, MethodInfo * method)); DO_APP_FUNC(0x00B16400, IProtocolToken *, BoltUtils_GetProtocolToken, (UdpSession * session, MethodInfo * method)); DO_APP_FUNC(0x00B16530, bool, BoltUtils_NullOrEmpty, (Array * array, MethodInfo * method)); @@ -95858,10 +107539,10 @@ DO_APP_FUNC(0x00B16CC0, void, BoltUtils_WriteQuaternion, (UdpPacket * stream, Qu DO_APP_FUNC(0x00B16D30, Quaternion, BoltUtils_ReadQuaternion, (UdpPacket * stream, MethodInfo * method)); DO_APP_FUNC(0x00B16DC0, void, BoltUtils_WriteTransform, (UdpPacket * stream, Transform * transform, MethodInfo * method)); DO_APP_FUNC(0x00B16F10, void, BoltUtils_ReadTransform, (UdpPacket * stream, Transform * transform, MethodInfo * method)); -DO_APP_FUNC(0x00B17090, void, BoltUtils_ReadTransform_1, (UdpPacket * stream, Vector3 position, Quaternion rotation, MethodInfo * method)); +DO_APP_FUNC(0x00B17090, void, BoltUtils_ReadTransform_1, (UdpPacket * stream, Vector3 * position, Quaternion * rotation, MethodInfo * method)); DO_APP_FUNC(0x00B17170, void, BoltUtils_WriteRigidbody, (UdpPacket * stream, Rigidbody * rigidbody, MethodInfo * method)); DO_APP_FUNC(0x00B173D0, void, BoltUtils_ReadRigidbody, (UdpPacket * stream, Rigidbody * rigidbody, MethodInfo * method)); -DO_APP_FUNC(0x00B17650, void, BoltUtils_ReadRigidbody_1, (UdpPacket * stream, Vector3 position, Quaternion rotation, Vector3 velocity, Vector3 angularVelocity, MethodInfo * method)); +DO_APP_FUNC(0x00B17650, void, BoltUtils_ReadRigidbody_1, (UdpPacket * stream, Vector3 * position, Quaternion * rotation, Vector3 * velocity, Vector3 * angularVelocity, MethodInfo * method)); DO_APP_FUNC(0x00B177B0, void, BoltUtils_WriteBounds, (UdpPacket * stream, Bounds b, MethodInfo * method)); DO_APP_FUNC(0x00B17880, Bounds, BoltUtils_ReadBounds, (UdpPacket * stream, MethodInfo * method)); DO_APP_FUNC(0x00B16CC0, void, BoltUtils_WriteRect, (UdpPacket * stream, Rect rect, MethodInfo * method)); @@ -95903,22 +107584,26 @@ DO_APP_FUNC(0x00B192F0, String *, BoltUtils_BytesToString, (Byte__Array * values DO_APP_FUNC(0x00B19510, bool, BoltUtils_IsValidAppId, (String * val, MethodInfo * method)); DO_APP_FUNC(0x00B19640, float, Math_1_InterpolateFloat, (BoltDoubleList_1_Photon_Bolt_NetworkStorage_ * frames, int32_t offset, int32_t frame, bool angle, MethodInfo * method)); DO_APP_FUNC(0x00B19890, Vector3, Math_1_InterpolateVector, (BoltDoubleList_1_Photon_Bolt_NetworkStorage_ * frames, int32_t offset, int32_t frame, float snapLimit, MethodInfo * method)); -DO_APP_FUNC(0x00B198F0, Vector3, Math_1_InterpolateVector_1, (BoltDoubleList_1_Photon_Bolt_NetworkStorage_ * frames, int32_t offset, int32_t frame, float snapLimit, bool snapped, MethodInfo * method)); +DO_APP_FUNC(0x00B198F0, Vector3, Math_1_InterpolateVector_1, (BoltDoubleList_1_Photon_Bolt_NetworkStorage_ * frames, int32_t offset, int32_t frame, float snapLimit, bool * snapped, MethodInfo * method)); DO_APP_FUNC(0x00B19C20, Quaternion, Math_1_InterpolateQuaternion, (BoltDoubleList_1_Photon_Bolt_NetworkStorage_ * frames, int32_t offset, int32_t frame, MethodInfo * method)); -DO_APP_FUNC(0x00B19ED0, Vector3, Math_1_ExtrapolateVector, (Vector3 cpos, Vector3 rpos, Vector3 rvel, int32_t recievedFrame, int32_t entityFrame, PropertyExtrapolationSettings settings, bool snapped, MethodInfo * method)); +DO_APP_FUNC(0x00B19ED0, Vector3, Math_1_ExtrapolateVector, (Vector3 cpos, Vector3 rpos, Vector3 rvel, int32_t recievedFrame, int32_t entityFrame, PropertyExtrapolationSettings settings, bool * snapped, MethodInfo * method)); DO_APP_FUNC(0x00B1A120, Quaternion, Math_1_ExtrapolateQuaternion, (Quaternion cquat, Quaternion rquat, int32_t recievedFrame, int32_t entityFrame, PropertyExtrapolationSettings settings, MethodInfo * method)); DO_APP_FUNC(0x00B1A680, int32_t, Math_1_SequenceDistance, (uint32_t from, uint32_t to, int32_t shift, MethodInfo * method)); DO_APP_FUNC(0x00B1A6A0, int32_t, Math_1_HighBit, (uint32_t v, MethodInfo * method)); DO_APP_FUNC(0x00B1A6B0, int32_t, Math_1_BytesRequired, (int32_t bits, MethodInfo * method)); DO_APP_FUNC(0x00B1A6C0, int32_t, Math_1_BitsRequired, (int32_t number, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCAAC8, Math_1_BitsRequired__MethodInfo); DO_APP_FUNC(0x00B1A770, int32_t, Math_1_PopCount, (uint64_t value, MethodInfo * method)); DO_APP_FUNC(0x00B1A7B0, Task *, WaitHandleExtensions_AsTask, (WaitHandle * handle, MethodInfo * method)); DO_APP_FUNC(0x00B1A820, Task *, WaitHandleExtensions_AsTask_1, (WaitHandle * handle, TimeSpan timeout, MethodInfo * method)); DO_APP_FUNC(0x00B1ABD0, void, WaitHandleExtensions_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, WaitHandleExtensions_c__ctor, (WaitHandleExtensions_c * __this, MethodInfo * method)); DO_APP_FUNC(0x00B1AC80, void, WaitHandleExtensions_c__AsTask_b__1_0, (WaitHandleExtensions_c * __this, Object * state, bool timedOut, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCAA80, WaitHandleExtensions_c__AsTask_b__1_0__MethodInfo); DO_APP_FUNC(0x00B1AD60, bool, WaitHandleExtensions_c__AsTask_b__1_1, (WaitHandleExtensions_c * __this, Task_1_System_Object_ * _, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCAA50, WaitHandleExtensions_c__AsTask_b__1_1__MethodInfo); DO_APP_FUNC(0x00B1ADD0, void, Assert_1_Fail, (String * message, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA9D0, Assert_1_Fail__MethodInfo); DO_APP_FUNC(0x003AE050, void, Assert_1_Same, (Object * a, Object * b, String * error, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Assert_1_NotSame, (Object * a, Object * b, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Assert_1_Null, (Object * a, String * msg, MethodInfo * method)); @@ -95926,15 +107611,18 @@ DO_APP_FUNC(0x003AE050, void, Assert_1_NotNull, (Object * a, String * msg, Metho DO_APP_FUNC(0x003AE050, void, Assert_1_Equal, (Object * a, Object * b, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Assert_1_NotEqual, (Object * a, Object * b, MethodInfo * method)); DO_APP_FUNC(0x00B1AE30, void, Assert_1_False, (bool condition, String * message, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA9C0, Assert_1_False__MethodInfo); DO_APP_FUNC(0x00B1AE90, void, Assert_1_True, (bool condition, String * message, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA9F0, Assert_1_True__MethodInfo); DO_APP_FUNC(0x00B1AEF0, void, Assert_1_True_1, (bool condition, String * message, Object__Array * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA9E0, Assert_1_True_1__MethodInfo); DO_APP_FUNC(0x00A4F060, Object *, BoltException_get_ExtraInfo, (BoltException * __this, MethodInfo * method)); DO_APP_FUNC(0x00A4F070, void, BoltException_set_ExtraInfo, (BoltException * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x00B1AF70, String *, BoltException_get_Message, (BoltException * __this, MethodInfo * method)); DO_APP_FUNC(0x00B1B010, void, BoltException__ctor, (BoltException * __this, String * message, Object__Array * args, MethodInfo * method)); DO_APP_FUNC(0x00B1B130, void, BoltAssertFailedException__ctor, (BoltAssertFailedException * __this, String * msg, MethodInfo * method)); DO_APP_FUNC(0x00B1B1F0, void, BoltPackageOverflowException__ctor, (BoltPackageOverflowException * __this, MethodInfo * method)); -DO_APP_FUNC(0x00B1B260, void, PacketStats_Clear, (PacketStats__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00B1B260, void, PacketStats_Clear, (PacketStats * __this, MethodInfo * method)); DO_APP_FUNC(0x00B1B270, void, PacketTypeStats_Update, (PacketTypeStats * __this, BoltRingBuffer_1_Photon_Bolt_Internal_PacketStats_ * statsIn, BoltRingBuffer_1_Photon_Bolt_Internal_PacketStats_ * statsOut, Func_2_Photon_Bolt_Internal_PacketStats_Int32_ * selector, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, PacketTypeStats__ctor, (PacketTypeStats * __this, MethodInfo * method)); DO_APP_FUNC(0x00B1B440, void, BoltCore_Connect, (UdpEndPoint endpoint, IProtocolToken * token, MethodInfo * method)); @@ -95977,6 +107665,7 @@ DO_APP_FUNC(0x00B1D750, UdpSession *, BoltCore_get_CurrentSession, (MethodInfo * DO_APP_FUNC(0x00B1D810, Dictionary_2_System_String_System_Object_ *, BoltCore_get_CurrentMetadata, (MethodInfo * method)); DO_APP_FUNC(0x00B1D890, bool, BoltCore_get_HasSocket, (MethodInfo * method)); DO_APP_FUNC(0x00B1D8F0, void, BoltCore_Shutdown, (UdpConnectionDisconnectReason__Enum disconnectReason, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA770, BoltCore_Shutdown__MethodInfo); DO_APP_FUNC(0x00B1DBA0, void, BoltCore_SetServerInfo, (String * serverName, bool dedicated, IProtocolToken * token, MethodInfo * method)); DO_APP_FUNC(0x00B1DC70, void, BoltCore_EnableLanBroadcast, (uint16_t port, MethodInfo * method)); DO_APP_FUNC(0x00B1DDC0, void, BoltCore_DisableLanBroadcast, (MethodInfo * method)); @@ -95998,6 +107687,7 @@ DO_APP_FUNC(0x00B20A40, void, BoltCore_StepControlledEntities, (MethodInfo * met DO_APP_FUNC(0x00B20C50, void, BoltCore_SetSessionList, (Map_2_System_Guid_UdpSession_ * sessions, MethodInfo * method)); DO_APP_FUNC(0x00B20D40, UdpPacket *, BoltCore_AllocateUdpPacket, (MethodInfo * method)); DO_APP_FUNC(0x00B20DB0, UdpChannelName, BoltCore_CreateStreamChannel, (String * name, UdpChannelMode__Enum mode, int32_t priority, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA418, BoltCore_CreateStreamChannel__MethodInfo); DO_APP_FUNC(0x00B20F10, void, BoltCore_AutoLoadScene, (AutoLoadSceneOrigin__Enum loadSceneOrigin, MethodInfo * method)); DO_APP_FUNC(0x00B21230, void, BoltCore_Destroy, (BoltEntity * entity, IProtocolToken * detachToken, MethodInfo * method)); DO_APP_FUNC(0x00B212F0, void, BoltCore_DestroyForce, (Entity * entity, MethodInfo * method)); @@ -96005,6 +107695,7 @@ DO_APP_FUNC(0x00B21400, void, BoltCore_Detach, (BoltEntity * entity, IProtocolTo DO_APP_FUNC(0x00B21460, Entity *, BoltCore_FindEntity, (NetworkId id, MethodInfo * method)); DO_APP_FUNC(0x00B216C0, bool, BoltCore_CanClientInstantiate, (BoltEntity * entity, MethodInfo * method)); DO_APP_FUNC(0x00B21710, BoltEntity *, BoltCore_Instantiate, (PrefabId prefabId, TypeId serializerId, Vector3 position, Quaternion rotation, InstantiateFlags instanceFlags, BoltConnection * controller, IProtocolToken * attachToken, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA398, BoltCore_Instantiate__MethodInfo); DO_APP_FUNC(0x00B219A0, GameObject *, BoltCore_Attach, (GameObject * gameObject, EntityFlags flags, IProtocolToken * attachToken, MethodInfo * method)); DO_APP_FUNC(0x00B21B90, GameObject *, BoltCore_Attach_1, (GameObject * gameObject, TypeId serializerId, EntityFlags flags, IProtocolToken * attachToken, MethodInfo * method)); DO_APP_FUNC(0x00B21CA0, void, BoltCore_FreezeProxies, (MethodInfo * method)); @@ -96043,36 +107734,48 @@ DO_APP_FUNC(0x00B27690, GameObject *, BoltCore_FindSceneObject, (UniqueId unique DO_APP_FUNC(0x00B27820, void, BoltCore_ResetIdAllocator, (BoltNetworkModes__Enum mode, MethodInfo * method)); DO_APP_FUNC(0x00B278D0, void, BoltCore_CreateUdpConfig, (BoltConfig * config, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BoltCore_UdpLogWriter, (uint32_t level, String * message, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA6D0, BoltCore_UdpLogWriter__MethodInfo); DO_APP_FUNC(0x00B27C60, void, BoltCore_UnityLogCallback, (String * condition, String * stackTrace, LogType__Enum type, MethodInfo * method)); DO_APP_FUNC(0x00B27CF0, void, BoltCore_DoProtocolTokenRegistration, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9EB0, BoltCore_DoProtocolTokenRegistration__MethodInfo); DO_APP_FUNC(0x00B27F40, void, BoltCore__cctor, (MethodInfo * method)); DO_APP_FUNC(0x00B28C30, void, BoltCore_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BoltCore_c__ctor, (BoltCore_c * __this, MethodInfo * method)); DO_APP_FUNC(0x00B28CE0, BoltEntity *, BoltCore_c__get_entities_b__20_0, (BoltCore_c * __this, Entity * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA8D8, BoltCore_c__get_entities_b__20_0__MethodInfo); DO_APP_FUNC(0x00B28D00, bool, BoltCore_c__get_clients_b__24_0, (BoltCore_c * __this, BoltConnection * c, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA8A0, BoltCore_c__get_clients_b__24_0__MethodInfo); DO_APP_FUNC(0x00B28D30, void, BoltCore_c__ShutdownProcedure_b__107_0, (BoltCore_c * __this, uint32_t i, String * m, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9CF8, BoltCore_c__ShutdownProcedure_b__107_0__MethodInfo); DO_APP_FUNC(0x00B28D80, bool, BoltCore_c__UpdateSceneObjectsLookup_b__169_0, (BoltCore_c * __this, BoltEntity * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9F28, BoltCore_c__UpdateSceneObjectsLookup_b__169_0__MethodInfo); DO_APP_FUNC(0x00B28E00, UniqueId, BoltCore_c__UpdateSceneObjectsLookup_b__169_1, (BoltCore_c * __this, BoltEntity * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9F18, BoltCore_c__UpdateSceneObjectsLookup_b__169_1__MethodInfo); DO_APP_FUNC(0x00B28E40, GameObject *, BoltCore_c___cctor_b__176_0, (BoltCore_c * __this, GameObject * go, Vector3 p, Quaternion r, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9E08, BoltCore_c___cctor_b__176_0__MethodInfo); DO_APP_FUNC(0x00B28EE0, void, BoltCore_c___cctor_b__176_1, (BoltCore_c * __this, GameObject * go, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9E28, BoltCore_c___cctor_b__176_1__MethodInfo); DO_APP_FUNC(0x0095DC40, void, BoltCore_get_entities_d_72__ctor, (BoltCore_get_entities_d_72 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BoltCore_get_entities_d_72_System_IDisposable_Dispose, (BoltCore_get_entities_d_72 * __this, MethodInfo * method)); DO_APP_FUNC(0x00B28F30, bool, BoltCore_get_entities_d_72_MoveNext, (BoltCore_get_entities_d_72 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Entity *, BoltCore_get_entities_d_72_System_Collections_Generic_IEnumerator_Photon_Bolt_Entity__get_Current, (BoltCore_get_entities_d_72 * __this, MethodInfo * method)); DO_APP_FUNC(0x00B29360, void, BoltCore_get_entities_d_72_System_Collections_IEnumerator_Reset, (BoltCore_get_entities_d_72 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9DE8, BoltCore_get_entities_d_72_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, BoltCore_get_entities_d_72_System_Collections_IEnumerator_get_Current, (BoltCore_get_entities_d_72 * __this, MethodInfo * method)); DO_APP_FUNC(0x00B293B0, IEnumerator_1_Photon_Bolt_Entity_ *, BoltCore_get_entities_d_72_System_Collections_Generic_IEnumerable_Photon_Bolt_Entity__GetEnumerator, (BoltCore_get_entities_d_72 * __this, MethodInfo * method)); DO_APP_FUNC(0x00B293B0, IEnumerator *, BoltCore_get_entities_d_72_System_Collections_IEnumerable_GetEnumerator, (BoltCore_get_entities_d_72 * __this, MethodInfo * method)); -DO_APP_FUNC(0x00B29440, void, BoltCore_BeginShutdown_d_105_MoveNext, (BoltCore_BeginShutdown_d_105__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00B29800, void, BoltCore_BeginShutdown_d_105_SetStateMachine, (BoltCore_BeginShutdown_d_105__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00B29810, void, BoltCore_ShutdownImmediate_d_106_MoveNext, (BoltCore_ShutdownImmediate_d_106__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00B29800, void, BoltCore_ShutdownImmediate_d_106_SetStateMachine, (BoltCore_ShutdownImmediate_d_106__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00B29E80, void, BoltCore_ShutdownProcedure_d_107_MoveNext, (BoltCore_ShutdownProcedure_d_107__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00B2AE40, void, BoltCore_ShutdownProcedure_d_107_SetStateMachine, (BoltCore_ShutdownProcedure_d_107__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00B29440, void, BoltCore_BeginShutdown_d_105_MoveNext, (BoltCore_BeginShutdown_d_105 * __this, MethodInfo * method)); +DO_APP_FUNC(0x00B29800, void, BoltCore_BeginShutdown_d_105_SetStateMachine, (BoltCore_BeginShutdown_d_105 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00B29810, void, BoltCore_ShutdownImmediate_d_106_MoveNext, (BoltCore_ShutdownImmediate_d_106 * __this, MethodInfo * method)); +DO_APP_FUNC(0x00B29800, void, BoltCore_ShutdownImmediate_d_106_SetStateMachine, (BoltCore_ShutdownImmediate_d_106 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00B29E80, void, BoltCore_ShutdownProcedure_d_107_MoveNext, (BoltCore_ShutdownProcedure_d_107 * __this, MethodInfo * method)); +DO_APP_FUNC(0x00B2AE40, void, BoltCore_ShutdownProcedure_d_107_SetStateMachine, (BoltCore_ShutdownProcedure_d_107 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BoltCore_c_DisplayClass109_0__ctor, (BoltCore_c_DisplayClass109_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00B2AEA0, bool, BoltCore_c_DisplayClass109_0__UpdateActiveGlobalBehaviours_b__0, (BoltCore_c_DisplayClass109_0 * __this, String * scenePattern, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA4F0, BoltCore_c_DisplayClass109_0__UpdateActiveGlobalBehaviours_b__0__MethodInfo); DO_APP_FUNC(0x00B2AF10, void, BoltCoreInternal__cctor, (MethodInfo * method)); DO_APP_FUNC(0x00B2AFF0, bool, BoltNetworkInternal_Setup, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9CD8, BoltNetworkInternal_Setup__MethodInfo); DO_APP_FUNC(0x00B2B170, void, BoltNetworkInternal_Initialize, (BoltNetworkModes__Enum mode, UdpEndPoint endpoint, BoltConfig * config, UdpPlatform * platform, String * autoloadScene, MethodInfo * method)); DO_APP_FUNC(0x00B2B3D0, void, ControlCommand__ctor, (ControlCommand * __this, MethodInfo * method)); DO_APP_FUNC(0x00B2B4A0, UdpPlatform *, ControlCommandStart_get_DefaultPlatform, (ControlCommandStart * __this, MethodInfo * method)); @@ -96096,6 +107799,7 @@ DO_APP_FUNC(0x00B2C890, Event *, Factory_1_NewEvent, (TypeId id, MethodInfo * me DO_APP_FUNC(0x00B2C940, Event *, Factory_1_NewEvent_1, (UniqueId id, MethodInfo * method)); DO_APP_FUNC(0x00B2CA00, uint8_t, Factory_1_GetTokenId, (IProtocolToken * obj, MethodInfo * method)); DO_APP_FUNC(0x00B2CA70, uint8_t, Factory_1_GetTokenId_1, (Type * tokenType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9B60, Factory_1_GetTokenId_1__MethodInfo); DO_APP_FUNC(0x00B2CBE0, IProtocolToken *, Factory_1_NewToken, (uint8_t id, MethodInfo * method)); DO_APP_FUNC(0x00B2CF40, Command *, Factory_1_NewCommand, (TypeId id, MethodInfo * method)); DO_APP_FUNC(0x00B2CFF0, Command *, Factory_1_NewCommand_1, (UniqueId id, MethodInfo * method)); @@ -96105,6 +107809,7 @@ DO_APP_FUNC(0x00B2D1A0, Object *, Factory_1_Create, (TypeId id, MethodInfo * met DO_APP_FUNC(0x00B2D270, Object *, Factory_1_Create_1, (UniqueId id, MethodInfo * method)); DO_APP_FUNC(0x00B2D3E0, void, Factory_1_UnregisterAll, (MethodInfo * method)); DO_APP_FUNC(0x00B2DBA0, void, Factory_1_RegisterTokenClass, (Type * type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9A38, Factory_1_RegisterTokenClass__MethodInfo); DO_APP_FUNC(0x00B2DF90, void, Factory_1__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, GlobalEventListenerBase *, GlobalEventListenerBase_Photon_Bolt_Collections_IBoltListNode_Photon_Bolt_Internal_GlobalEventListenerBase__get_prev, (GlobalEventListenerBase * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE960, void, GlobalEventListenerBase_Photon_Bolt_Collections_IBoltListNode_Photon_Bolt_Internal_GlobalEventListenerBase__set_prev, (GlobalEventListenerBase * __this, GlobalEventListenerBase * value, MethodInfo * method)); @@ -96208,8 +107913,11 @@ DO_APP_FUNC(0x00B33A60, void, BoltSend_Awake, (BoltSend * __this, MethodInfo * m DO_APP_FUNC(0x00B33BC0, void, BoltSend_FixedUpdate, (BoltSend * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, BoltSend__ctor, (BoltSend * __this, MethodInfo * method)); DO_APP_FUNC(0x00B33DF0, void, PooledProtocolTokenBase_Read, (PooledProtocolTokenBase * __this, UdpPacket * packet, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC98D8, PooledProtocolTokenBase_Read__MethodInfo); DO_APP_FUNC(0x00B33E40, void, PooledProtocolTokenBase_Write, (PooledProtocolTokenBase * __this, UdpPacket * packet, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC98D0, PooledProtocolTokenBase_Write__MethodInfo); DO_APP_FUNC(0x00B33E90, void, PooledProtocolTokenBase_Reset, (PooledProtocolTokenBase * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC98E0, PooledProtocolTokenBase_Reset__MethodInfo); DO_APP_FUNC(0x00B33EE0, void, PooledProtocolTokenBase_Dispose, (PooledProtocolTokenBase * __this, bool disposing, MethodInfo * method)); DO_APP_FUNC(0x00B33F80, void, PooledProtocolTokenBase_Dispose_1, (PooledProtocolTokenBase * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, PooledProtocolTokenBase__ctor, (PooledProtocolTokenBase * __this, MethodInfo * method)); @@ -96219,14 +107927,15 @@ DO_APP_FUNC(0x00B341D0, void, BinaryDataChannel_Disconnected, (BinaryDataChannel DO_APP_FUNC(0x00B34230, void, BinaryDataChannel__ctor, (BinaryDataChannel * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, BoltConnection *, BoltChannel_get_connection, (BoltChannel * __this, MethodInfo * method)); DO_APP_FUNC(0x00B34380, void, BoltChannel_set_connection, (BoltChannel * __this, BoltConnection * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9898, BoltChannel_set_connection__MethodInfo); DO_APP_FUNC(0x003AE050, void, BoltChannel_Lost, (BoltChannel * __this, Packet * packet, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BoltChannel_Delivered, (BoltChannel * __this, Packet * packet, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BoltChannel_Disconnected, (BoltChannel * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BoltChannel__ctor, (BoltChannel * __this, MethodInfo * method)); DO_APP_FUNC(0x00B34420, void, EntityChannel__ctor, (EntityChannel * __this, MethodInfo * method)); DO_APP_FUNC(0x00B34830, void, EntityChannel_ForceSync, (EntityChannel * __this, Entity * en, MethodInfo * method)); -DO_APP_FUNC(0x00B34920, void, EntityChannel_ForceSync_1, (EntityChannel * __this, Entity * en, EntityProxy * proxy, MethodInfo * method)); -DO_APP_FUNC(0x00B34A00, bool, EntityChannel_TryFindProxy, (EntityChannel * __this, Entity * en, EntityProxy * proxy, MethodInfo * method)); +DO_APP_FUNC(0x00B34920, void, EntityChannel_ForceSync_1, (EntityChannel * __this, Entity * en, EntityProxy * * proxy, MethodInfo * method)); +DO_APP_FUNC(0x00B34A00, bool, EntityChannel_TryFindProxy, (EntityChannel * __this, Entity * en, EntityProxy * * proxy, MethodInfo * method)); DO_APP_FUNC(0x00B34AA0, void, EntityChannel_SetIdle, (EntityChannel * __this, Entity * entity, bool idle, MethodInfo * method)); DO_APP_FUNC(0x00B34BD0, void, EntityChannel_SetScope, (EntityChannel * __this, Entity * entity, bool inScope, MethodInfo * method)); DO_APP_FUNC(0x00B34E70, bool, EntityChannel_ExistsOnRemote, (EntityChannel * __this, Entity * entity, MethodInfo * method)); @@ -96234,7 +107943,7 @@ DO_APP_FUNC(0x00B34FE0, ExistsResult__Enum, EntityChannel_ExistsOnRemote_1, (Ent DO_APP_FUNC(0x00B35170, bool, EntityChannel_MightExistOnRemote, (EntityChannel * __this, Entity * entity, MethodInfo * method)); DO_APP_FUNC(0x00B35250, void, EntityChannel_DestroyOnRemote, (EntityChannel * __this, Entity * entity, MethodInfo * method)); DO_APP_FUNC(0x00B354C0, void, EntityChannel_CreateOnRemote, (EntityChannel * __this, Entity * entity, MethodInfo * method)); -DO_APP_FUNC(0x00B354E0, void, EntityChannel_CreateOnRemote_1, (EntityChannel * __this, Entity * entity, EntityProxy * proxy, MethodInfo * method)); +DO_APP_FUNC(0x00B354E0, void, EntityChannel_CreateOnRemote_1, (EntityChannel * __this, Entity * entity, EntityProxy * * proxy, MethodInfo * method)); DO_APP_FUNC(0x00B357A0, float, EntityChannel_GetPriority, (EntityChannel * __this, Entity * entity, MethodInfo * method)); DO_APP_FUNC(0x00B35830, void, EntityChannel_Pack, (EntityChannel * __this, Packet * packet, MethodInfo * method)); DO_APP_FUNC(0x00B365D0, void, EntityChannel_Read, (EntityChannel * __this, Packet * packet, MethodInfo * method)); @@ -96245,6 +107954,7 @@ DO_APP_FUNC(0x00B36D10, int32_t, EntityChannel_GetSkippedUpdates, (EntityChannel DO_APP_FUNC(0x00B36DA0, void, EntityChannel_ApplyPropertyPriorities, (EntityChannel * __this, EntityProxyEnvelope * env, MethodInfo * method)); DO_APP_FUNC(0x00B36EB0, int32_t, EntityChannel_PackUpdate, (EntityChannel * __this, Packet * packet, EntityProxy * proxy, MethodInfo * method)); DO_APP_FUNC(0x00B37BD0, bool, EntityChannel_ReadUpdate, (EntityChannel * __this, Packet * packet, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC97F0, EntityChannel_ReadUpdate__MethodInfo); DO_APP_FUNC(0x00B38B70, void, EntityChannel_DestroyOutgoingProxy, (EntityChannel * __this, EntityProxy * proxy, MethodInfo * method)); DO_APP_FUNC(0x00B38CA0, void, EntityChannel_DestroyIncommingProxy, (EntityChannel * __this, EntityProxy * proxy, IProtocolToken * token, MethodInfo * method)); DO_APP_FUNC(0x00B390E0, int32_t, EntityChannel_CommandChannel_get_pingFrames, (EntityChannel_CommandChannel * __this, MethodInfo * method)); @@ -96304,14 +108014,17 @@ DO_APP_FUNC(0x003AE050, void, Button_OnFinishSubmit_d_9_System_IDisposable_Dispo DO_APP_FUNC(0x02E1AAA0, bool, Button_OnFinishSubmit_d_9_MoveNext, (Button_OnFinishSubmit_d_9 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, Button_OnFinishSubmit_d_9_System_Collections_Generic_IEnumerator_System_Object__get_Current, (Button_OnFinishSubmit_d_9 * __this, MethodInfo * method)); DO_APP_FUNC(0x02E1AC80, void, Button_OnFinishSubmit_d_9_System_Collections_IEnumerator_Reset, (Button_OnFinishSubmit_d_9 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23C30, Button_OnFinishSubmit_d_9_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Button_OnFinishSubmit_d_9_System_Collections_IEnumerator_get_Current, (Button_OnFinishSubmit_d_9 * __this, MethodInfo * method)); DO_APP_FUNC(0x02E1ACD0, void, CanvasUpdateRegistry__ctor, (CanvasUpdateRegistry * __this, MethodInfo * method)); DO_APP_FUNC(0x02E1B0C0, CanvasUpdateRegistry *, CanvasUpdateRegistry_get_instance, (MethodInfo * method)); DO_APP_FUNC(0x02E1B1F0, bool, CanvasUpdateRegistry_ObjectValidForUpdate, (CanvasUpdateRegistry * __this, ICanvasElement * element, MethodInfo * method)); DO_APP_FUNC(0x02E1B390, void, CanvasUpdateRegistry_CleanInvalidItems, (CanvasUpdateRegistry * __this, MethodInfo * method)); DO_APP_FUNC(0x02E1B560, void, CanvasUpdateRegistry_PerformUpdate, (CanvasUpdateRegistry * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23C70, CanvasUpdateRegistry_PerformUpdate__MethodInfo); DO_APP_FUNC(0x02E1BDE0, int32_t, CanvasUpdateRegistry_ParentCount, (Transform * child, MethodInfo * method)); DO_APP_FUNC(0x02E1C050, int32_t, CanvasUpdateRegistry_SortLayoutList, (ICanvasElement * x, ICanvasElement * y, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23BC8, CanvasUpdateRegistry_SortLayoutList__MethodInfo); DO_APP_FUNC(0x02E1C110, void, CanvasUpdateRegistry_RegisterCanvasElementForLayoutRebuild, (ICanvasElement * element, MethodInfo * method)); DO_APP_FUNC(0x02E1C180, bool, CanvasUpdateRegistry_TryRegisterCanvasElementForLayoutRebuild, (ICanvasElement * element, MethodInfo * method)); DO_APP_FUNC(0x02E1C1F0, bool, CanvasUpdateRegistry_InternalRegisterCanvasElementForLayoutRebuild, (CanvasUpdateRegistry * __this, ICanvasElement * element, MethodInfo * method)); @@ -96327,33 +108040,33 @@ DO_APP_FUNC(0x02E1CEE0, void, CanvasUpdateRegistry_InternalDisableCanvasElementF DO_APP_FUNC(0x02E1D040, bool, CanvasUpdateRegistry_IsRebuildingLayout, (MethodInfo * method)); DO_APP_FUNC(0x02E1D0A0, bool, CanvasUpdateRegistry_IsRebuildingGraphics, (MethodInfo * method)); DO_APP_FUNC(0x02E1D100, void, CanvasUpdateRegistry__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x00C2FFD0, Color, ColorBlock_get_normalColor, (ColorBlock__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0119B5D0, void, ColorBlock_set_normalColor, (ColorBlock__Boxed * __this, Color value, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, Color, ColorBlock_get_highlightedColor, (ColorBlock__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018C7DB0, void, ColorBlock_set_highlightedColor, (ColorBlock__Boxed * __this, Color value, MethodInfo * method)); -DO_APP_FUNC(0x01042010, Color, ColorBlock_get_pressedColor, (ColorBlock__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01903F70, void, ColorBlock_set_pressedColor, (ColorBlock__Boxed * __this, Color value, MethodInfo * method)); -DO_APP_FUNC(0x019D2A70, Color, ColorBlock_get_selectedColor, (ColorBlock__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x019D2A80, void, ColorBlock_set_selectedColor, (ColorBlock__Boxed * __this, Color value, MethodInfo * method)); -DO_APP_FUNC(0x019D2A30, Color, ColorBlock_get_disabledColor, (ColorBlock__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x019D2A40, void, ColorBlock_set_disabledColor, (ColorBlock__Boxed * __this, Color value, MethodInfo * method)); -DO_APP_FUNC(0x00C50D10, float, ColorBlock_get_colorMultiplier, (ColorBlock__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01D31F90, void, ColorBlock_set_colorMultiplier, (ColorBlock__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x00C61FE0, float, ColorBlock_get_fadeDuration, (ColorBlock__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C61FF0, void, ColorBlock_set_fadeDuration, (ColorBlock__Boxed * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x00C2FFD0, Color, ColorBlock_get_normalColor, (ColorBlock * __this, MethodInfo * method)); +DO_APP_FUNC(0x0119B5D0, void, ColorBlock_set_normalColor, (ColorBlock * __this, Color value, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, Color, ColorBlock_get_highlightedColor, (ColorBlock * __this, MethodInfo * method)); +DO_APP_FUNC(0x018C7DB0, void, ColorBlock_set_highlightedColor, (ColorBlock * __this, Color value, MethodInfo * method)); +DO_APP_FUNC(0x01042010, Color, ColorBlock_get_pressedColor, (ColorBlock * __this, MethodInfo * method)); +DO_APP_FUNC(0x01903F70, void, ColorBlock_set_pressedColor, (ColorBlock * __this, Color value, MethodInfo * method)); +DO_APP_FUNC(0x019D2A70, Color, ColorBlock_get_selectedColor, (ColorBlock * __this, MethodInfo * method)); +DO_APP_FUNC(0x019D2A80, void, ColorBlock_set_selectedColor, (ColorBlock * __this, Color value, MethodInfo * method)); +DO_APP_FUNC(0x019D2A30, Color, ColorBlock_get_disabledColor, (ColorBlock * __this, MethodInfo * method)); +DO_APP_FUNC(0x019D2A40, void, ColorBlock_set_disabledColor, (ColorBlock * __this, Color value, MethodInfo * method)); +DO_APP_FUNC(0x00C50D10, float, ColorBlock_get_colorMultiplier, (ColorBlock * __this, MethodInfo * method)); +DO_APP_FUNC(0x01D31F90, void, ColorBlock_set_colorMultiplier, (ColorBlock * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x00C61FE0, float, ColorBlock_get_fadeDuration, (ColorBlock * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C61FF0, void, ColorBlock_set_fadeDuration, (ColorBlock * __this, float value, MethodInfo * method)); DO_APP_FUNC(0x02E1D1F0, void, ColorBlock__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02E1D510, bool, ColorBlock_Equals, (ColorBlock__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02E1D600, bool, ColorBlock_Equals_1, (ColorBlock__Boxed * __this, ColorBlock other, MethodInfo * method)); +DO_APP_FUNC(0x02E1D510, bool, ColorBlock_Equals, (ColorBlock * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02E1D600, bool, ColorBlock_Equals_1, (ColorBlock * __this, ColorBlock other, MethodInfo * method)); DO_APP_FUNC(0x02E1D900, bool, ColorBlock_op_Equality, (ColorBlock point1, ColorBlock point2, MethodInfo * method)); DO_APP_FUNC(0x02E1D9B0, bool, ColorBlock_op_Inequality, (ColorBlock point1, ColorBlock point2, MethodInfo * method)); -DO_APP_FUNC(0x02E1DA60, int32_t, ColorBlock_GetHashCode, (ColorBlock__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02E1DA60, int32_t, ColorBlock_GetHashCode, (ColorBlock * __this, MethodInfo * method)); DO_APP_FUNC(0x02E1DAF0, void, ClipperRegistry__ctor, (ClipperRegistry * __this, MethodInfo * method)); DO_APP_FUNC(0x02E1DBC0, ClipperRegistry *, ClipperRegistry_get_instance, (MethodInfo * method)); DO_APP_FUNC(0x02E1DD60, void, ClipperRegistry_Cull, (ClipperRegistry * __this, MethodInfo * method)); DO_APP_FUNC(0x02E1DEA0, void, ClipperRegistry_Register, (IClipper * c, MethodInfo * method)); DO_APP_FUNC(0x02E1DF10, void, ClipperRegistry_Unregister, (IClipper * c, MethodInfo * method)); DO_APP_FUNC(0x02E1DF70, void, ClipperRegistry_Disable, (IClipper * c, MethodInfo * method)); -DO_APP_FUNC(0x02E1DFD0, Rect, Clipping_FindCullAndClipWorldRect, (List_1_UnityEngine_UI_RectMask2D_ * rectMaskParents, bool validRect, MethodInfo * method)); +DO_APP_FUNC(0x02E1DFD0, Rect, Clipping_FindCullAndClipWorldRect, (List_1_UnityEngine_UI_RectMask2D_ * rectMaskParents, bool * validRect, MethodInfo * method)); DO_APP_FUNC(0x02E1E370, Rect, RectangularVertexClipper_GetCanvasRect, (RectangularVertexClipper * __this, RectTransform * t, Canvas * c, MethodInfo * method)); DO_APP_FUNC(0x02E1E640, void, RectangularVertexClipper__ctor, (RectangularVertexClipper * __this, MethodInfo * method)); DO_APP_FUNC(0x02E1E750, DefaultControls_IFactoryControls *, DefaultControls_get_factory, (MethodInfo * method)); @@ -96422,7 +108135,9 @@ DO_APP_FUNC(0x02E2AA50, Dropdown_DropdownItem *, Dropdown_AddItem, (Dropdown * _ DO_APP_FUNC(0x02E2B090, void, Dropdown_AlphaFadeList, (Dropdown * __this, float duration, float alpha, MethodInfo * method)); DO_APP_FUNC(0x02E2B170, void, Dropdown_AlphaFadeList_1, (Dropdown * __this, float duration, float start, float end, MethodInfo * method)); DO_APP_FUNC(0x02E2B2F0, void, Dropdown_SetAlpha, (Dropdown * __this, float alpha, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D237C0, Dropdown_SetAlpha__MethodInfo); DO_APP_FUNC(0x02E2B3B0, void, Dropdown_Hide, (Dropdown * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D237A0, Dropdown_Hide__MethodInfo); DO_APP_FUNC(0x02E2B7A0, IEnumerator *, Dropdown_DelayedDestroyDropdownList, (Dropdown * __this, float delay, MethodInfo * method)); DO_APP_FUNC(0x02E2B850, void, Dropdown_ImmediateDestroyDropdownList, (Dropdown * __this, MethodInfo * method)); DO_APP_FUNC(0x02E2BBA0, void, Dropdown_OnSelectItem, (Dropdown * __this, Toggle * toggle, MethodInfo * method)); @@ -96452,11 +108167,13 @@ DO_APP_FUNC(0x02E2C060, void, Dropdown_OptionDataList__ctor, (Dropdown_OptionDat DO_APP_FUNC(0x02E2C130, void, Dropdown_DropdownEvent__ctor, (Dropdown_DropdownEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Dropdown_c_DisplayClass63_0__ctor, (Dropdown_c_DisplayClass63_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x02E2C170, void, Dropdown_c_DisplayClass63_0__Show_b__0, (Dropdown_c_DisplayClass63_0 * __this, bool x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23758, Dropdown_c_DisplayClass63_0__Show_b__0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, Dropdown_DelayedDestroyDropdownList_d_75__ctor, (Dropdown_DelayedDestroyDropdownList_d_75 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Dropdown_DelayedDestroyDropdownList_d_75_System_IDisposable_Dispose, (Dropdown_DelayedDestroyDropdownList_d_75 * __this, MethodInfo * method)); DO_APP_FUNC(0x02E2C1A0, bool, Dropdown_DelayedDestroyDropdownList_d_75_MoveNext, (Dropdown_DelayedDestroyDropdownList_d_75 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, Dropdown_DelayedDestroyDropdownList_d_75_System_Collections_Generic_IEnumerator_System_Object__get_Current, (Dropdown_DelayedDestroyDropdownList_d_75 * __this, MethodInfo * method)); DO_APP_FUNC(0x02E2C2A0, void, Dropdown_DelayedDestroyDropdownList_d_75_System_Collections_IEnumerator_Reset, (Dropdown_DelayedDestroyDropdownList_d_75 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23750, Dropdown_DelayedDestroyDropdownList_d_75_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Dropdown_DelayedDestroyDropdownList_d_75_System_Collections_IEnumerator_get_Current, (Dropdown_DelayedDestroyDropdownList_d_75 * __this, MethodInfo * method)); DO_APP_FUNC(0x02E2C2F0, FontData *, FontData_get_defaultFontData, (MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, Font *, FontData_get_font, (FontData * __this, MethodInfo * method)); @@ -96488,6 +108205,7 @@ DO_APP_FUNC(0x02E2C360, void, FontData_UnityEngine_ISerializationCallbackReceive DO_APP_FUNC(0x003AE050, void, FontData__ctor, (FontData * __this, MethodInfo * method)); DO_APP_FUNC(0x02E2C3B0, void, FontUpdateTracker_TrackText, (Text * t, MethodInfo * method)); DO_APP_FUNC(0x02E2C750, void, FontUpdateTracker_RebuildForFont, (Font * f, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D236B8, FontUpdateTracker_RebuildForFont__MethodInfo); DO_APP_FUNC(0x02E2CA40, void, FontUpdateTracker_UntrackText, (Text * t, MethodInfo * method)); DO_APP_FUNC(0x02E2CD20, void, FontUpdateTracker__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02E2CE10, Material *, Graphic_get_defaultGraphicMaterial, (MethodInfo * method)); @@ -96568,6 +108286,7 @@ DO_APP_FUNC(0x02E33FD0, void, GraphicRaycaster__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02E340B0, void, GraphicRaycaster_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GraphicRaycaster_c__ctor, (GraphicRaycaster_c * __this, MethodInfo * method)); DO_APP_FUNC(0x02E34160, int32_t, GraphicRaycaster_c__Raycast_b__27_0, (GraphicRaycaster_c * __this, Graphic * g1, Graphic * g2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23610, GraphicRaycaster_c__Raycast_b__27_0__MethodInfo); DO_APP_FUNC(0x02E34260, void, GraphicRegistry__ctor, (GraphicRegistry * __this, MethodInfo * method)); DO_APP_FUNC(0x02E34520, GraphicRegistry *, GraphicRegistry_get_instance, (MethodInfo * method)); DO_APP_FUNC(0x02E34650, void, GraphicRegistry_RegisterGraphicForCanvas, (Canvas * c, Graphic * graphic, MethodInfo * method)); @@ -96617,7 +108336,7 @@ DO_APP_FUNC(0x02E37320, Material *, Image_get_material, (Image * __this, MethodI DO_APP_FUNC(0x02E375D0, void, Image_set_material, (Image * __this, Material * value, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Image_OnBeforeSerialize, (Image * __this, MethodInfo * method)); DO_APP_FUNC(0x02E375E0, void, Image_OnAfterDeserialize, (Image * __this, MethodInfo * method)); -DO_APP_FUNC(0x02E37650, void, Image_PreserveSpriteAspectRatio, (Image * __this, Rect rect, Vector2 spriteSize, MethodInfo * method)); +DO_APP_FUNC(0x02E37650, void, Image_PreserveSpriteAspectRatio, (Image * __this, Rect * rect, Vector2 spriteSize, MethodInfo * method)); DO_APP_FUNC(0x02E37740, Vector4, Image_GetDrawingDimensions, (Image * __this, bool shouldPreserveAspect, MethodInfo * method)); DO_APP_FUNC(0x02E37CD0, void, Image_SetNativeSize, (Image * __this, MethodInfo * method)); DO_APP_FUNC(0x02E37FF0, void, Image_OnPopulateMesh, (Image * __this, VertexHelper * toFill, MethodInfo * method)); @@ -96648,6 +108367,7 @@ DO_APP_FUNC(0x003CB690, int32_t, Image_get_layoutPriority, (Image * __this, Meth DO_APP_FUNC(0x02E3E090, bool, Image_IsRaycastLocationValid, (Image * __this, Vector2 screenPoint, Camera * eventCamera, MethodInfo * method)); DO_APP_FUNC(0x02E3E4F0, Vector2, Image_MapCoordinate, (Image * __this, Vector2 local, Rect rect, MethodInfo * method)); DO_APP_FUNC(0x02E3EAC0, void, Image_RebuildImage, (SpriteAtlas * spriteAtlas, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23460, Image_RebuildImage__MethodInfo); DO_APP_FUNC(0x02E3ED60, void, Image_TrackImage, (Image * g, MethodInfo * method)); DO_APP_FUNC(0x02E3EE90, void, Image_UnTrackImage, (Image * g, MethodInfo * method)); DO_APP_FUNC(0x02E3EF20, void, Image_OnDidApplyAnimationProperties, (Image * __this, MethodInfo * method)); @@ -96709,7 +108429,7 @@ DO_APP_FUNC(0x02FB97F0, bool, InputField_get_multiLine, (InputField * __this, Me DO_APP_FUNC(0x02FB9810, uint16_t, InputField_get_asteriskChar, (InputField * __this, MethodInfo * method)); DO_APP_FUNC(0x02FB9820, void, InputField_set_asteriskChar, (InputField * __this, uint16_t value, MethodInfo * method)); DO_APP_FUNC(0x01DD9330, bool, InputField_get_wasCanceled, (InputField * __this, MethodInfo * method)); -DO_APP_FUNC(0x02FB98C0, void, InputField_ClampPos, (InputField * __this, int32_t pos, MethodInfo * method)); +DO_APP_FUNC(0x02FB98C0, void, InputField_ClampPos, (InputField * __this, int32_t * pos, MethodInfo * method)); DO_APP_FUNC(0x02FB9900, int32_t, InputField_get_caretPositionInternal, (InputField * __this, MethodInfo * method)); DO_APP_FUNC(0x02FB9930, void, InputField_set_caretPositionInternal, (InputField * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x02FB9980, int32_t, InputField_get_caretSelectPositionInternal, (InputField * __this, MethodInfo * method)); @@ -96728,6 +108448,7 @@ DO_APP_FUNC(0x02FBA620, IEnumerator *, InputField_CaretBlink, (InputField * __th DO_APP_FUNC(0x02FBA6C0, void, InputField_SetCaretVisible, (InputField * __this, MethodInfo * method)); DO_APP_FUNC(0x02FBA740, void, InputField_SetCaretActive, (InputField * __this, MethodInfo * method)); DO_APP_FUNC(0x02FBA830, void, InputField_UpdateCaretMaterial, (InputField * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEE348, InputField_UpdateCaretMaterial__MethodInfo); DO_APP_FUNC(0x02FBAAC0, void, InputField_OnFocus, (InputField * __this, MethodInfo * method)); DO_APP_FUNC(0x02FBAAD0, void, InputField_SelectAll, (InputField * __this, MethodInfo * method)); DO_APP_FUNC(0x02FBAB60, void, InputField_MoveTextEnd, (InputField * __this, bool shift, MethodInfo * method)); @@ -96776,12 +108497,14 @@ DO_APP_FUNC(0x02FBF890, void, InputField_SendOnSubmit, (InputField * __this, Met DO_APP_FUNC(0x02FBF950, void, InputField_Append, (InputField * __this, String * input, MethodInfo * method)); DO_APP_FUNC(0x02FBFA30, void, InputField_Append_1, (InputField * __this, uint16_t input, MethodInfo * method)); DO_APP_FUNC(0x02FBFDD0, void, InputField_UpdateLabel, (InputField * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEE350, InputField_UpdateLabel__MethodInfo); DO_APP_FUNC(0x02FC0680, bool, InputField_IsSelectionVisible, (InputField * __this, MethodInfo * method)); DO_APP_FUNC(0x02FC0750, int32_t, InputField_GetLineStartPosition, (TextGenerator * gen, int32_t line, MethodInfo * method)); DO_APP_FUNC(0x02FC0880, int32_t, InputField_GetLineEndPosition, (TextGenerator * gen, int32_t line, MethodInfo * method)); DO_APP_FUNC(0x02FC0A00, void, InputField_SetDrawRangeToContainCaretPosition, (InputField * __this, int32_t caretPos, MethodInfo * method)); DO_APP_FUNC(0x02FC1430, void, InputField_ForceLabelUpdate, (InputField * __this, MethodInfo * method)); DO_APP_FUNC(0x02FC1440, void, InputField_MarkGeometryAsDirty, (InputField * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEE358, InputField_MarkGeometryAsDirty__MethodInfo); DO_APP_FUNC(0x02FC14E0, void, InputField_Rebuild, (InputField * __this, CanvasUpdate__Enum update, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InputField_LayoutComplete, (InputField * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InputField_GraphicUpdateComplete, (InputField * __this, MethodInfo * method)); @@ -96792,6 +108515,7 @@ DO_APP_FUNC(0x02FC2930, void, InputField_GenerateCaret, (InputField * __this, Ve DO_APP_FUNC(0x02FC3780, void, InputField_CreateCursorVerts, (InputField * __this, MethodInfo * method)); DO_APP_FUNC(0x02FC3990, void, InputField_GenerateHighlight, (InputField * __this, VertexHelper * vbo, Vector2 roundingOffset, MethodInfo * method)); DO_APP_FUNC(0x02FC4260, uint16_t, InputField_Validate, (InputField * __this, String * text, int32_t pos, uint16_t ch, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEE330, InputField_Validate__MethodInfo); DO_APP_FUNC(0x02FC4950, void, InputField_ActivateInputField, (InputField * __this, MethodInfo * method)); DO_APP_FUNC(0x02FC4BE0, void, InputField_ActivateInputFieldInternal, (InputField * __this, MethodInfo * method)); DO_APP_FUNC(0x02FC54A0, void, InputField_OnSelect, (InputField * __this, BaseEventData * eventData, MethodInfo * method)); @@ -96827,12 +108551,14 @@ DO_APP_FUNC(0x003AE050, void, InputField_CaretBlink_d_170_System_IDisposable_Dis DO_APP_FUNC(0x02FC6550, bool, InputField_CaretBlink_d_170_MoveNext, (InputField_CaretBlink_d_170 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, InputField_CaretBlink_d_170_System_Collections_Generic_IEnumerator_System_Object__get_Current, (InputField_CaretBlink_d_170 * __this, MethodInfo * method)); DO_APP_FUNC(0x02FC6730, void, InputField_CaretBlink_d_170_System_Collections_IEnumerator_Reset, (InputField_CaretBlink_d_170 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEE280, InputField_CaretBlink_d_170_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, InputField_CaretBlink_d_170_System_Collections_IEnumerator_get_Current, (InputField_CaretBlink_d_170 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, InputField_MouseDragOutsideRect_d_192__ctor, (InputField_MouseDragOutsideRect_d_192 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InputField_MouseDragOutsideRect_d_192_System_IDisposable_Dispose, (InputField_MouseDragOutsideRect_d_192 * __this, MethodInfo * method)); DO_APP_FUNC(0x02FC6780, bool, InputField_MouseDragOutsideRect_d_192_MoveNext, (InputField_MouseDragOutsideRect_d_192 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, InputField_MouseDragOutsideRect_d_192_System_Collections_Generic_IEnumerator_System_Object__get_Current, (InputField_MouseDragOutsideRect_d_192 * __this, MethodInfo * method)); DO_APP_FUNC(0x02FC6BA0, void, InputField_MouseDragOutsideRect_d_192_System_Collections_IEnumerator_Reset, (InputField_MouseDragOutsideRect_d_192 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEE278, InputField_MouseDragOutsideRect_d_192_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, InputField_MouseDragOutsideRect_d_192_System_Collections_IEnumerator_get_Current, (InputField_MouseDragOutsideRect_d_192 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, AspectRatioFitter_AspectMode__Enum, AspectRatioFitter_get_aspectMode, (AspectRatioFitter * __this, MethodInfo * method)); DO_APP_FUNC(0x02FC6BF0, void, AspectRatioFitter_set_aspectMode, (AspectRatioFitter * __this, AspectRatioFitter_AspectMode__Enum value, MethodInfo * method)); @@ -96878,6 +108604,7 @@ DO_APP_FUNC(0x0110DB60, void, CanvasScaler_set_dynamicPixelsPerUnit, (CanvasScal DO_APP_FUNC(0x02FC7BA0, void, CanvasScaler__ctor, (CanvasScaler * __this, MethodInfo * method)); DO_APP_FUNC(0x02FC7C30, void, CanvasScaler_OnEnable, (CanvasScaler * __this, MethodInfo * method)); DO_APP_FUNC(0x012EB360, void, CanvasScaler_Canvas_preWillRenderCanvases, (CanvasScaler * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEE248, CanvasScaler_Canvas_preWillRenderCanvases__MethodInfo); DO_APP_FUNC(0x02FC7E40, void, CanvasScaler_OnDisable, (CanvasScaler * __this, MethodInfo * method)); DO_APP_FUNC(0x02FC7FE0, void, CanvasScaler_Handle, (CanvasScaler * __this, MethodInfo * method)); DO_APP_FUNC(0x02FC8220, void, CanvasScaler_HandleWorldCanvas, (CanvasScaler * __this, MethodInfo * method)); @@ -96940,7 +108667,7 @@ DO_APP_FUNC(0x005C33D0, bool, HorizontalOrVerticalLayoutGroup_get_reverseArrange DO_APP_FUNC(0x02FC9C90, void, HorizontalOrVerticalLayoutGroup_set_reverseArrangement, (HorizontalOrVerticalLayoutGroup * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x02FC9CE0, void, HorizontalOrVerticalLayoutGroup_CalcAlongAxis, (HorizontalOrVerticalLayoutGroup * __this, int32_t axis, bool isVertical, MethodInfo * method)); DO_APP_FUNC(0x02FCA190, void, HorizontalOrVerticalLayoutGroup_SetChildrenAlongAxis, (HorizontalOrVerticalLayoutGroup * __this, int32_t axis, bool isVertical, MethodInfo * method)); -DO_APP_FUNC(0x02FCACB0, void, HorizontalOrVerticalLayoutGroup_GetChildSizes, (HorizontalOrVerticalLayoutGroup * __this, RectTransform * child, int32_t axis, bool controlSize, bool childForceExpand, float min, float preferred, float flexible, MethodInfo * method)); +DO_APP_FUNC(0x02FCACB0, void, HorizontalOrVerticalLayoutGroup_GetChildSizes, (HorizontalOrVerticalLayoutGroup * __this, RectTransform * child, int32_t axis, bool controlSize, bool childForceExpand, float * min, float * preferred, float * flexible, MethodInfo * method)); DO_APP_FUNC(0x02FC99D0, void, HorizontalOrVerticalLayoutGroup__ctor, (HorizontalOrVerticalLayoutGroup * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCC40, bool, LayoutElement_get_ignoreLayout, (LayoutElement * __this, MethodInfo * method)); DO_APP_FUNC(0x02FCADE0, void, LayoutElement_set_ignoreLayout, (LayoutElement * __this, bool value, MethodInfo * method)); @@ -97005,11 +108732,13 @@ DO_APP_FUNC(0x003AE050, void, LayoutGroup_DelayedSetDirty_d_56_System_IDisposabl DO_APP_FUNC(0x02FCD080, bool, LayoutGroup_DelayedSetDirty_d_56_MoveNext, (LayoutGroup_DelayedSetDirty_d_56 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, LayoutGroup_DelayedSetDirty_d_56_System_Collections_Generic_IEnumerator_System_Object__get_Current, (LayoutGroup_DelayedSetDirty_d_56 * __this, MethodInfo * method)); DO_APP_FUNC(0x02FCD150, void, LayoutGroup_DelayedSetDirty_d_56_System_Collections_IEnumerator_Reset, (LayoutGroup_DelayedSetDirty_d_56 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEE1E8, LayoutGroup_DelayedSetDirty_d_56_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, LayoutGroup_DelayedSetDirty_d_56_System_Collections_IEnumerator_get_Current, (LayoutGroup_DelayedSetDirty_d_56 * __this, MethodInfo * method)); DO_APP_FUNC(0x02FCD1A0, void, LayoutRebuilder_Initialize, (LayoutRebuilder * __this, RectTransform * controller, MethodInfo * method)); DO_APP_FUNC(0x02FCD220, void, LayoutRebuilder_Clear, (LayoutRebuilder * __this, MethodInfo * method)); DO_APP_FUNC(0x02FCD280, void, LayoutRebuilder__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02FCD6E0, void, LayoutRebuilder_ReapplyDrivenProperties, (RectTransform * driven, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEE140, LayoutRebuilder_ReapplyDrivenProperties__MethodInfo); DO_APP_FUNC(0x003BB3C0, Transform *, LayoutRebuilder_get_transform, (LayoutRebuilder * __this, MethodInfo * method)); DO_APP_FUNC(0x02FCD730, bool, LayoutRebuilder_IsDestroyed, (LayoutRebuilder * __this, MethodInfo * method)); DO_APP_FUNC(0x02FCD830, void, LayoutRebuilder_StripDisabledBehavioursFromList, (List_1_UnityEngine_Component_ * components, MethodInfo * method)); @@ -97029,12 +108758,19 @@ DO_APP_FUNC(0x003AE050, void, LayoutRebuilder__ctor, (LayoutRebuilder * __this, DO_APP_FUNC(0x02FCFA60, void, LayoutRebuilder_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, LayoutRebuilder_c__ctor, (LayoutRebuilder_c * __this, MethodInfo * method)); DO_APP_FUNC(0x02FCFB10, LayoutRebuilder *, LayoutRebuilder_c___cctor_b__5_0, (LayoutRebuilder_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEE138, LayoutRebuilder_c___cctor_b__5_0__MethodInfo); DO_APP_FUNC(0x02FCFB60, void, LayoutRebuilder_c___cctor_b__5_1, (LayoutRebuilder_c * __this, LayoutRebuilder * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEE120, LayoutRebuilder_c___cctor_b__5_1__MethodInfo); DO_APP_FUNC(0x02FCFBD0, bool, LayoutRebuilder_c__StripDisabledBehavioursFromList_b__10_0, (LayoutRebuilder_c * __this, Component * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEE150, LayoutRebuilder_c__StripDisabledBehavioursFromList_b__10_0__MethodInfo); DO_APP_FUNC(0x02FCFCB0, void, LayoutRebuilder_c__Rebuild_b__12_0, (LayoutRebuilder_c * __this, Component * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEE178, LayoutRebuilder_c__Rebuild_b__12_0__MethodInfo); DO_APP_FUNC(0x02FCFD20, void, LayoutRebuilder_c__Rebuild_b__12_1, (LayoutRebuilder_c * __this, Component * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEE168, LayoutRebuilder_c__Rebuild_b__12_1__MethodInfo); DO_APP_FUNC(0x02FCFD90, void, LayoutRebuilder_c__Rebuild_b__12_2, (LayoutRebuilder_c * __this, Component * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEE170, LayoutRebuilder_c__Rebuild_b__12_2__MethodInfo); DO_APP_FUNC(0x02FCFE00, void, LayoutRebuilder_c__Rebuild_b__12_3, (LayoutRebuilder_c * __this, Component * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEE1A0, LayoutRebuilder_c__Rebuild_b__12_3__MethodInfo); DO_APP_FUNC(0x02FCFE70, float, LayoutUtility_GetMinSize, (RectTransform * rect, int32_t axis, MethodInfo * method)); DO_APP_FUNC(0x02FCFE90, float, LayoutUtility_GetPreferredSize, (RectTransform * rect, int32_t axis, MethodInfo * method)); DO_APP_FUNC(0x02FCFEB0, float, LayoutUtility_GetFlexibleSize, (RectTransform * rect, int32_t axis, MethodInfo * method)); @@ -97045,17 +108781,25 @@ DO_APP_FUNC(0x02FD0700, float, LayoutUtility_GetMinHeight, (RectTransform * rect DO_APP_FUNC(0x02FD0870, float, LayoutUtility_GetPreferredHeight, (RectTransform * rect, MethodInfo * method)); DO_APP_FUNC(0x02FD0B20, float, LayoutUtility_GetFlexibleHeight, (RectTransform * rect, MethodInfo * method)); DO_APP_FUNC(0x02FD0C90, float, LayoutUtility_GetLayoutProperty, (RectTransform * rect, Func_2_UnityEngine_UI_ILayoutElement_Single_ * property, float defaultValue, MethodInfo * method)); -DO_APP_FUNC(0x02FD0CB0, float, LayoutUtility_GetLayoutProperty_1, (RectTransform * rect, Func_2_UnityEngine_UI_ILayoutElement_Single_ * property, float defaultValue, ILayoutElement * source, MethodInfo * method)); +DO_APP_FUNC(0x02FD0CB0, float, LayoutUtility_GetLayoutProperty_1, (RectTransform * rect, Func_2_UnityEngine_UI_ILayoutElement_Single_ * property, float defaultValue, ILayoutElement * * source, MethodInfo * method)); DO_APP_FUNC(0x02FD10B0, void, LayoutUtility_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, LayoutUtility_c__ctor, (LayoutUtility_c * __this, MethodInfo * method)); DO_APP_FUNC(0x02FD1160, float, LayoutUtility_c__GetMinWidth_b__3_0, (LayoutUtility_c * __this, ILayoutElement * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEE108, LayoutUtility_c__GetMinWidth_b__3_0__MethodInfo); DO_APP_FUNC(0x02FD11B0, float, LayoutUtility_c__GetPreferredWidth_b__4_0, (LayoutUtility_c * __this, ILayoutElement * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEDFE8, LayoutUtility_c__GetPreferredWidth_b__4_0__MethodInfo); DO_APP_FUNC(0x02FD1200, float, LayoutUtility_c__GetPreferredWidth_b__4_1, (LayoutUtility_c * __this, ILayoutElement * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEDFC8, LayoutUtility_c__GetPreferredWidth_b__4_1__MethodInfo); DO_APP_FUNC(0x02FD1250, float, LayoutUtility_c__GetFlexibleWidth_b__5_0, (LayoutUtility_c * __this, ILayoutElement * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEDFB8, LayoutUtility_c__GetFlexibleWidth_b__5_0__MethodInfo); DO_APP_FUNC(0x02FD12A0, float, LayoutUtility_c__GetMinHeight_b__6_0, (LayoutUtility_c * __this, ILayoutElement * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEE030, LayoutUtility_c__GetMinHeight_b__6_0__MethodInfo); DO_APP_FUNC(0x02FD12F0, float, LayoutUtility_c__GetPreferredHeight_b__7_0, (LayoutUtility_c * __this, ILayoutElement * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEE020, LayoutUtility_c__GetPreferredHeight_b__7_0__MethodInfo); DO_APP_FUNC(0x02FD1340, float, LayoutUtility_c__GetPreferredHeight_b__7_1, (LayoutUtility_c * __this, ILayoutElement * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEE010, LayoutUtility_c__GetPreferredHeight_b__7_1__MethodInfo); DO_APP_FUNC(0x02FD1390, float, LayoutUtility_c__GetFlexibleHeight_b__8_0, (LayoutUtility_c * __this, ILayoutElement * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEE088, LayoutUtility_c__GetFlexibleHeight_b__8_0__MethodInfo); DO_APP_FUNC(0x02FC99D0, void, VerticalLayoutGroup__ctor, (VerticalLayoutGroup * __this, MethodInfo * method)); DO_APP_FUNC(0x02FD13E0, void, VerticalLayoutGroup_CalculateLayoutInputHorizontal, (VerticalLayoutGroup * __this, MethodInfo * method)); DO_APP_FUNC(0x02FD1410, void, VerticalLayoutGroup_CalculateLayoutInputVertical, (VerticalLayoutGroup * __this, MethodInfo * method)); @@ -97105,22 +108849,22 @@ DO_APP_FUNC(0x02FD5350, void, MaskUtilities_GetRectMasksForClip, (RectMask2D * c DO_APP_FUNC(0x003AE050, void, MaskUtilities__ctor, (MaskUtilities * __this, MethodInfo * method)); DO_APP_FUNC(0x02FD5740, void, Misc_Destroy, (Object_1 * obj, MethodInfo * method)); DO_APP_FUNC(0x02FD5920, void, Misc_DestroyImmediate, (Object_1 * obj, MethodInfo * method)); -DO_APP_FUNC(0x02FD5A40, bool, MultipleDisplayUtilities_GetRelativeMousePositionForDrag, (PointerEventData * eventData, Vector2 position, MethodInfo * method)); +DO_APP_FUNC(0x02FD5A40, bool, MultipleDisplayUtilities_GetRelativeMousePositionForDrag, (PointerEventData * eventData, Vector2 * position, MethodInfo * method)); DO_APP_FUNC(0x02FD5B20, Vector3, MultipleDisplayUtilities_RelativeMouseAtScaled, (Vector2 position, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, Navigation_Mode__Enum, Navigation_get_mode, (Navigation__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00959BA0, void, Navigation_set_mode, (Navigation__Boxed * __this, Navigation_Mode__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x0171B580, bool, Navigation_get_wrapAround, (Navigation__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02949C40, void, Navigation_set_wrapAround, (Navigation__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, Selectable *, Navigation_get_selectOnUp, (Navigation__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x005F25C0, void, Navigation_set_selectOnUp, (Navigation__Boxed * __this, Selectable * value, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Selectable *, Navigation_get_selectOnDown, (Navigation__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCBE0, void, Navigation_set_selectOnDown, (Navigation__Boxed * __this, Selectable * value, MethodInfo * method)); -DO_APP_FUNC(0x003BB3D0, Selectable *, Navigation_get_selectOnLeft, (Navigation__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003AE960, void, Navigation_set_selectOnLeft, (Navigation__Boxed * __this, Selectable * value, MethodInfo * method)); -DO_APP_FUNC(0x003BB3E0, Selectable *, Navigation_get_selectOnRight, (Navigation__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCDE0, void, Navigation_set_selectOnRight, (Navigation__Boxed * __this, Selectable * value, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, Navigation_Mode__Enum, Navigation_get_mode, (Navigation * __this, MethodInfo * method)); +DO_APP_FUNC(0x00959BA0, void, Navigation_set_mode, (Navigation * __this, Navigation_Mode__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x0171B580, bool, Navigation_get_wrapAround, (Navigation * __this, MethodInfo * method)); +DO_APP_FUNC(0x02949C40, void, Navigation_set_wrapAround, (Navigation * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, Selectable *, Navigation_get_selectOnUp, (Navigation * __this, MethodInfo * method)); +DO_APP_FUNC(0x005F25C0, void, Navigation_set_selectOnUp, (Navigation * __this, Selectable * value, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Selectable *, Navigation_get_selectOnDown, (Navigation * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCBE0, void, Navigation_set_selectOnDown, (Navigation * __this, Selectable * value, MethodInfo * method)); +DO_APP_FUNC(0x003BB3D0, Selectable *, Navigation_get_selectOnLeft, (Navigation * __this, MethodInfo * method)); +DO_APP_FUNC(0x003AE960, void, Navigation_set_selectOnLeft, (Navigation * __this, Selectable * value, MethodInfo * method)); +DO_APP_FUNC(0x003BB3E0, Selectable *, Navigation_get_selectOnRight, (Navigation * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCDE0, void, Navigation_set_selectOnRight, (Navigation * __this, Selectable * value, MethodInfo * method)); DO_APP_FUNC(0x02FD6450, Navigation, Navigation_get_defaultNavigation, (MethodInfo * method)); -DO_APP_FUNC(0x02FD6470, bool, Navigation_Equals, (Navigation__Boxed * __this, Navigation other, MethodInfo * method)); +DO_APP_FUNC(0x02FD6470, bool, Navigation_Equals, (Navigation * __this, Navigation other, MethodInfo * method)); DO_APP_FUNC(0x02FD69F0, void, RawImage__ctor, (RawImage * __this, MethodInfo * method)); DO_APP_FUNC(0x02FD6A20, Texture *, RawImage_get_mainTexture, (RawImage * __this, MethodInfo * method)); DO_APP_FUNC(0x00606950, Texture *, RawImage_get_texture, (RawImage * __this, MethodInfo * method)); @@ -97199,6 +108943,7 @@ DO_APP_FUNC(0x003AE050, void, Scrollbar_ClickRepeat_d_58_System_IDisposable_Disp DO_APP_FUNC(0x02FDC0C0, bool, Scrollbar_ClickRepeat_d_58_MoveNext, (Scrollbar_ClickRepeat_d_58 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, Scrollbar_ClickRepeat_d_58_System_Collections_Generic_IEnumerator_System_Object__get_Current, (Scrollbar_ClickRepeat_d_58 * __this, MethodInfo * method)); DO_APP_FUNC(0x02FDC380, void, Scrollbar_ClickRepeat_d_58_System_Collections_IEnumerator_Reset, (Scrollbar_ClickRepeat_d_58 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1238, Scrollbar_ClickRepeat_d_58_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Scrollbar_ClickRepeat_d_58_System_Collections_IEnumerator_get_Current, (Scrollbar_ClickRepeat_d_58 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, RectTransform *, ScrollRect_get_content, (ScrollRect * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE960, void, ScrollRect_set_content, (ScrollRect * __this, RectTransform * value, MethodInfo * method)); @@ -97262,7 +109007,9 @@ DO_APP_FUNC(0x02FDFB20, void, ScrollRect_set_horizontalNormalizedPosition, (Scro DO_APP_FUNC(0x02FDFB40, float, ScrollRect_get_verticalNormalizedPosition, (ScrollRect * __this, MethodInfo * method)); DO_APP_FUNC(0x02FDFC60, void, ScrollRect_set_verticalNormalizedPosition, (ScrollRect * __this, float value, MethodInfo * method)); DO_APP_FUNC(0x02FDFB20, void, ScrollRect_SetHorizontalNormalizedPosition, (ScrollRect * __this, float value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1230, ScrollRect_SetHorizontalNormalizedPosition__MethodInfo); DO_APP_FUNC(0x02FDFC60, void, ScrollRect_SetVerticalNormalizedPosition, (ScrollRect * __this, float value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1228, ScrollRect_SetVerticalNormalizedPosition__MethodInfo); DO_APP_FUNC(0x02FDFC80, void, ScrollRect_SetNormalizedPosition, (ScrollRect * __this, float value, int32_t axis, MethodInfo * method)); DO_APP_FUNC(0x02FE01F0, float, ScrollRect_RubberDelta, (float overStretching, float viewSize, MethodInfo * method)); DO_APP_FUNC(0x02FE0250, void, ScrollRect_OnRectTransformDimensionsChange, (ScrollRect * __this, MethodInfo * method)); @@ -97283,11 +109030,11 @@ DO_APP_FUNC(0x02FE0EF0, void, ScrollRect_UpdateScrollbarVisibility, (ScrollRect DO_APP_FUNC(0x02FE0F50, void, ScrollRect_UpdateOneScrollbarVisibility, (bool xScrollingNeeded, bool xAxisEnabled, ScrollRect_ScrollbarVisibility__Enum scrollbarVisibility, Scrollbar * scrollbar, MethodInfo * method)); DO_APP_FUNC(0x02FE1150, void, ScrollRect_UpdateScrollbarLayout, (ScrollRect * __this, MethodInfo * method)); DO_APP_FUNC(0x02FE1500, void, ScrollRect_UpdateBounds, (ScrollRect * __this, MethodInfo * method)); -DO_APP_FUNC(0x02FE1CA0, void, ScrollRect_AdjustBounds, (Bounds viewBounds, Vector2 contentPivot, Vector3 contentSize, Vector3 contentPos, MethodInfo * method)); +DO_APP_FUNC(0x02FE1CA0, void, ScrollRect_AdjustBounds, (Bounds * viewBounds, Vector2 * contentPivot, Vector3 * contentSize, Vector3 * contentPos, MethodInfo * method)); DO_APP_FUNC(0x02FE1D50, Bounds, ScrollRect_GetBounds, (ScrollRect * __this, MethodInfo * method)); -DO_APP_FUNC(0x02FE1F80, Bounds, ScrollRect_InternalGetBounds, (Vector3__Array * corners, Matrix4x4 viewWorldToLocalMatrix, MethodInfo * method)); +DO_APP_FUNC(0x02FE1F80, Bounds, ScrollRect_InternalGetBounds, (Vector3__Array * corners, Matrix4x4 * viewWorldToLocalMatrix, MethodInfo * method)); DO_APP_FUNC(0x02FE2230, Vector2, ScrollRect_CalculateOffset, (ScrollRect * __this, Vector2 delta, MethodInfo * method)); -DO_APP_FUNC(0x02FE2410, Vector2, ScrollRect_InternalCalculateOffset, (Bounds viewBounds, Bounds contentBounds, bool horizontal, bool vertical, ScrollRect_MovementType__Enum movementType, Vector2 delta, MethodInfo * method)); +DO_APP_FUNC(0x02FE2410, Vector2, ScrollRect_InternalCalculateOffset, (Bounds * viewBounds, Bounds * contentBounds, bool horizontal, bool vertical, ScrollRect_MovementType__Enum movementType, Vector2 * delta, MethodInfo * method)); DO_APP_FUNC(0x02FE25D0, void, ScrollRect_SetDirty, (ScrollRect * __this, MethodInfo * method)); DO_APP_FUNC(0x02FE2650, void, ScrollRect_SetDirtyCaching, (ScrollRect * __this, MethodInfo * method)); DO_APP_FUNC(0x00978060, Transform *, ScrollRect_UnityEngine_UI_ICanvasElement_get_transform, (ScrollRect * __this, MethodInfo * method)); @@ -97355,7 +109102,7 @@ DO_APP_FUNC(0x02FE6760, void, Selectable_OnSelect, (Selectable * __this, BaseEve DO_APP_FUNC(0x02FE6770, void, Selectable_OnDeselect, (Selectable * __this, BaseEventData * eventData, MethodInfo * method)); DO_APP_FUNC(0x02FE6780, void, Selectable_Select, (Selectable * __this, MethodInfo * method)); DO_APP_FUNC(0x02FE6950, void, Selectable__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02C0F490, bool, SetPropertyUtility_2_SetColor, (Color currentValue, Color newValue, MethodInfo * method)); +DO_APP_FUNC(0x02C0F490, bool, SetPropertyUtility_2_SetColor, (Color * currentValue, Color newValue, MethodInfo * method)); DO_APP_FUNC(0x003C4850, RectTransform *, Slider_get_fillRect, (Slider * __this, MethodInfo * method)); DO_APP_FUNC(0x02FE6A20, void, Slider_set_fillRect, (Slider * __this, RectTransform * value, MethodInfo * method)); DO_APP_FUNC(0x003C48C0, RectTransform *, Slider_get_handleRect, (Slider * __this, MethodInfo * method)); @@ -97404,15 +109151,15 @@ DO_APP_FUNC(0x02FDBE00, void, Slider_OnInitializePotentialDrag, (Slider * __this DO_APP_FUNC(0x02FE93E0, void, Slider_SetDirection, (Slider * __this, Slider_Direction__Enum direction, bool includeRectLayouts, MethodInfo * method)); DO_APP_FUNC(0x00978060, Transform *, Slider_UnityEngine_UI_ICanvasElement_get_transform, (Slider * __this, MethodInfo * method)); DO_APP_FUNC(0x02FE9640, void, Slider_SliderEvent__ctor, (Slider_SliderEvent * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, Sprite *, SpriteState_get_highlightedSprite, (SpriteState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, SpriteState_set_highlightedSprite, (SpriteState__Boxed * __this, Sprite * value, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, Sprite *, SpriteState_get_pressedSprite, (SpriteState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x005F25C0, void, SpriteState_set_pressedSprite, (SpriteState__Boxed * __this, Sprite * value, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Sprite *, SpriteState_get_selectedSprite, (SpriteState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCBE0, void, SpriteState_set_selectedSprite, (SpriteState__Boxed * __this, Sprite * value, MethodInfo * method)); -DO_APP_FUNC(0x003BB3D0, Sprite *, SpriteState_get_disabledSprite, (SpriteState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003AE960, void, SpriteState_set_disabledSprite, (SpriteState__Boxed * __this, Sprite * value, MethodInfo * method)); -DO_APP_FUNC(0x02FE9680, bool, SpriteState_Equals, (SpriteState__Boxed * __this, SpriteState other, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Sprite *, SpriteState_get_highlightedSprite, (SpriteState * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, SpriteState_set_highlightedSprite, (SpriteState * __this, Sprite * value, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, Sprite *, SpriteState_get_pressedSprite, (SpriteState * __this, MethodInfo * method)); +DO_APP_FUNC(0x005F25C0, void, SpriteState_set_pressedSprite, (SpriteState * __this, Sprite * value, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Sprite *, SpriteState_get_selectedSprite, (SpriteState * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCBE0, void, SpriteState_set_selectedSprite, (SpriteState * __this, Sprite * value, MethodInfo * method)); +DO_APP_FUNC(0x003BB3D0, Sprite *, SpriteState_get_disabledSprite, (SpriteState * __this, MethodInfo * method)); +DO_APP_FUNC(0x003AE960, void, SpriteState_set_disabledSprite, (SpriteState * __this, Sprite * value, MethodInfo * method)); +DO_APP_FUNC(0x02FE9680, bool, SpriteState_Equals, (SpriteState * __this, SpriteState other, MethodInfo * method)); DO_APP_FUNC(0x003CB690, Material *, StencilMaterial_Add, (Material * baseMat, int32_t stencilID, MethodInfo * method)); DO_APP_FUNC(0x02FE9BF0, Material *, StencilMaterial_Add_1, (Material * baseMat, int32_t stencilID, StencilOp__Enum operation, CompareFunction__Enum compareFunction, ColorWriteMask__Enum colorWriteMask, MethodInfo * method)); DO_APP_FUNC(0x02FE9C90, void, StencilMaterial_LogWarningWhenNotInBatchmode, (String * warning, Object_1 * context, MethodInfo * method)); @@ -97498,6 +109245,7 @@ DO_APP_FUNC(0x02FEE7E0, void, ToggleGroup__ctor, (ToggleGroup * __this, MethodIn DO_APP_FUNC(0x02FEE8E0, void, ToggleGroup_Start, (ToggleGroup * __this, MethodInfo * method)); DO_APP_FUNC(0x02FEE8E0, void, ToggleGroup_OnEnable, (ToggleGroup * __this, MethodInfo * method)); DO_APP_FUNC(0x02FEE8F0, void, ToggleGroup_ValidateToggleIsInGroup, (ToggleGroup * __this, Toggle * toggle, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0F78, ToggleGroup_ValidateToggleIsInGroup__MethodInfo); DO_APP_FUNC(0x02FEEB20, void, ToggleGroup_NotifyToggleOn, (ToggleGroup * __this, Toggle * toggle, bool sendCallback, MethodInfo * method)); DO_APP_FUNC(0x02FEEDA0, void, ToggleGroup_UnregisterToggle, (ToggleGroup * __this, Toggle * toggle, MethodInfo * method)); DO_APP_FUNC(0x02FEEE60, void, ToggleGroup_RegisterToggle, (ToggleGroup * __this, Toggle * toggle, MethodInfo * method)); @@ -97509,13 +109257,15 @@ DO_APP_FUNC(0x02FEF830, void, ToggleGroup_SetAllTogglesOff, (ToggleGroup * __thi DO_APP_FUNC(0x02FEF980, void, ToggleGroup_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ToggleGroup_c__ctor, (ToggleGroup_c * __this, MethodInfo * method)); DO_APP_FUNC(0x02FEFA30, bool, ToggleGroup_c__AnyTogglesOn_b__13_0, (ToggleGroup_c * __this, Toggle * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0DB8, ToggleGroup_c__AnyTogglesOn_b__13_0__MethodInfo); DO_APP_FUNC(0x02FEFA30, bool, ToggleGroup_c__ActiveToggles_b__14_0, (ToggleGroup_c * __this, Toggle * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0E40, ToggleGroup_c__ActiveToggles_b__14_0__MethodInfo); DO_APP_FUNC(0x02FEFA50, void, ReflectionMethodsCache__ctor, (ReflectionMethodsCache * __this, MethodInfo * method)); DO_APP_FUNC(0x02FF0BA0, ReflectionMethodsCache *, ReflectionMethodsCache_get_Singleton, (MethodInfo * method)); DO_APP_FUNC(0x02FF0C90, void, ReflectionMethodsCache_Raycast3DCallback__ctor, (ReflectionMethodsCache_Raycast3DCallback * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x02FF0DC0, bool, ReflectionMethodsCache_Raycast3DCallback_Invoke, (ReflectionMethodsCache_Raycast3DCallback * __this, Ray r, RaycastHit hit, float f, int32_t i, MethodInfo * method)); -DO_APP_FUNC(0x02FF0E00, IAsyncResult *, ReflectionMethodsCache_Raycast3DCallback_BeginInvoke, (ReflectionMethodsCache_Raycast3DCallback * __this, Ray r, RaycastHit hit, float f, int32_t i, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003FAA70, bool, ReflectionMethodsCache_Raycast3DCallback_EndInvoke, (ReflectionMethodsCache_Raycast3DCallback * __this, RaycastHit hit, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x02FF0DC0, bool, ReflectionMethodsCache_Raycast3DCallback_Invoke, (ReflectionMethodsCache_Raycast3DCallback * __this, Ray r, RaycastHit * hit, float f, int32_t i, MethodInfo * method)); +DO_APP_FUNC(0x02FF0E00, IAsyncResult *, ReflectionMethodsCache_Raycast3DCallback_BeginInvoke, (ReflectionMethodsCache_Raycast3DCallback * __this, Ray r, RaycastHit * hit, float f, int32_t i, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003FAA70, bool, ReflectionMethodsCache_Raycast3DCallback_EndInvoke, (ReflectionMethodsCache_Raycast3DCallback * __this, RaycastHit * hit, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x02FF0F00, void, ReflectionMethodsCache_RaycastAllCallback__ctor, (ReflectionMethodsCache_RaycastAllCallback * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x02FF1030, RaycastHit__Array *, ReflectionMethodsCache_RaycastAllCallback_Invoke, (ReflectionMethodsCache_RaycastAllCallback * __this, Ray r, float f, int32_t i, MethodInfo * method)); DO_APP_FUNC(0x02FF1070, IAsyncResult *, ReflectionMethodsCache_RaycastAllCallback_BeginInvoke, (ReflectionMethodsCache_RaycastAllCallback * __this, Ray r, float f, int32_t i, AsyncCallback * callback, Object * object, MethodInfo * method)); @@ -97543,9 +109293,10 @@ DO_APP_FUNC(0x02FF2170, void, VertexHelper_Dispose, (VertexHelper * __this, Meth DO_APP_FUNC(0x02FF26C0, void, VertexHelper_Clear, (VertexHelper * __this, MethodInfo * method)); DO_APP_FUNC(0x02FF27C0, int32_t, VertexHelper_get_currentVertCount, (VertexHelper * __this, MethodInfo * method)); DO_APP_FUNC(0x02FF2810, int32_t, VertexHelper_get_currentIndexCount, (VertexHelper * __this, MethodInfo * method)); -DO_APP_FUNC(0x02FF2860, void, VertexHelper_PopulateUIVertex, (VertexHelper * __this, UIVertex vertex, int32_t i, MethodInfo * method)); +DO_APP_FUNC(0x02FF2860, void, VertexHelper_PopulateUIVertex, (VertexHelper * __this, UIVertex * vertex, int32_t i, MethodInfo * method)); DO_APP_FUNC(0x02FF2AB0, void, VertexHelper_SetUIVertex, (VertexHelper * __this, UIVertex vertex, int32_t i, MethodInfo * method)); DO_APP_FUNC(0x02FF2EC0, void, VertexHelper_FillMesh, (VertexHelper * __this, Mesh * mesh, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF09C0, VertexHelper_FillMesh__MethodInfo); DO_APP_FUNC(0x02FF3080, void, VertexHelper_AddVert, (VertexHelper * __this, Vector3 position, Color32 color, Vector4 uv0, Vector4 uv1, Vector4 uv2, Vector4 uv3, Vector3 normal, Vector4 tangent, MethodInfo * method)); DO_APP_FUNC(0x02FF34A0, void, VertexHelper_AddVert_1, (VertexHelper * __this, Vector3 position, Color32 color, Vector4 uv0, Vector4 uv1, Vector3 normal, Vector4 tangent, MethodInfo * method)); DO_APP_FUNC(0x02FF3620, void, VertexHelper_AddVert_2, (VertexHelper * __this, Vector3 position, Color32 color, Vector4 uv0, MethodInfo * method)); @@ -97577,35 +109328,35 @@ DO_APP_FUNC(0x02FF4FB0, void, Shadow_set_useGraphicAlpha, (Shadow * __this, bool DO_APP_FUNC(0x02FF50F0, void, Shadow_ApplyShadowZeroAlloc, (Shadow * __this, List_1_UnityEngine_UIVertex_ * verts, Color32 color, int32_t start, int32_t end, float x, float y, MethodInfo * method)); DO_APP_FUNC(0x02FF5500, void, Shadow_ApplyShadow, (Shadow * __this, List_1_UnityEngine_UIVertex_ * verts, Color32 color, int32_t start, int32_t end, float x, float y, MethodInfo * method)); DO_APP_FUNC(0x02FF5510, void, Shadow_ModifyMesh, (Shadow * __this, VertexHelper * vh, MethodInfo * method)); -DO_APP_FUNC(0x00C16880, Color, ColorTween_1_get_startColor, (ColorTween_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B621E0, void, ColorTween_1_set_startColor, (ColorTween_1__Boxed * __this, Color value, MethodInfo * method)); -DO_APP_FUNC(0x0093E890, Color, ColorTween_1_get_targetColor, (ColorTween_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x011C24B0, void, ColorTween_1_set_targetColor, (ColorTween_1__Boxed * __this, Color value, MethodInfo * method)); -DO_APP_FUNC(0x00421680, ColorTween_ColorTweenMode__Enum_1, ColorTween_1_get_tweenMode, (ColorTween_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00421690, void, ColorTween_1_set_tweenMode, (ColorTween_1__Boxed * __this, ColorTween_ColorTweenMode__Enum_1 value, MethodInfo * method)); -DO_APP_FUNC(0x003CD2B0, float, ColorTween_1_get_duration, (ColorTween_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C58F50, void, ColorTween_1_set_duration, (ColorTween_1__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x00594F20, bool, ColorTween_1_get_ignoreTimeScale, (ColorTween_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A474A0, void, ColorTween_1_set_ignoreTimeScale, (ColorTween_1__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02FF5650, void, ColorTween_1_TweenValue, (ColorTween_1__Boxed * __this, float floatPercentage, MethodInfo * method)); -DO_APP_FUNC(0x02FF5780, void, ColorTween_1_AddOnChangedCallback, (ColorTween_1__Boxed * __this, UnityAction_1_UnityEngine_Color_ * callback, MethodInfo * method)); -DO_APP_FUNC(0x00594F20, bool, ColorTween_1_GetIgnoreTimescale, (ColorTween_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003CD2B0, float, ColorTween_1_GetDuration, (ColorTween_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C0DCF0, bool, ColorTween_1_ValidTarget, (ColorTween_1__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C16880, Color, ColorTween_1_get_startColor, (ColorTween_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B621E0, void, ColorTween_1_set_startColor, (ColorTween_1 * __this, Color value, MethodInfo * method)); +DO_APP_FUNC(0x0093E890, Color, ColorTween_1_get_targetColor, (ColorTween_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x011C24B0, void, ColorTween_1_set_targetColor, (ColorTween_1 * __this, Color value, MethodInfo * method)); +DO_APP_FUNC(0x00421680, ColorTween_ColorTweenMode__Enum_1, ColorTween_1_get_tweenMode, (ColorTween_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x00421690, void, ColorTween_1_set_tweenMode, (ColorTween_1 * __this, ColorTween_ColorTweenMode__Enum_1 value, MethodInfo * method)); +DO_APP_FUNC(0x003CD2B0, float, ColorTween_1_get_duration, (ColorTween_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C58F50, void, ColorTween_1_set_duration, (ColorTween_1 * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x00594F20, bool, ColorTween_1_get_ignoreTimeScale, (ColorTween_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A474A0, void, ColorTween_1_set_ignoreTimeScale, (ColorTween_1 * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02FF5650, void, ColorTween_1_TweenValue, (ColorTween_1 * __this, float floatPercentage, MethodInfo * method)); +DO_APP_FUNC(0x02FF5780, void, ColorTween_1_AddOnChangedCallback, (ColorTween_1 * __this, UnityAction_1_UnityEngine_Color_ * callback, MethodInfo * method)); +DO_APP_FUNC(0x00594F20, bool, ColorTween_1_GetIgnoreTimescale, (ColorTween_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x003CD2B0, float, ColorTween_1_GetDuration, (ColorTween_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C0DCF0, bool, ColorTween_1_ValidTarget, (ColorTween_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02FF5890, void, ColorTween_ColorTweenCallback_1__ctor, (ColorTween_ColorTweenCallback_1 * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C43A70, float, FloatTween_2_get_startValue, (FloatTween_2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C43A80, void, FloatTween_2_set_startValue, (FloatTween_2__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x00C43A90, float, FloatTween_2_get_targetValue, (FloatTween_2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C43AA0, void, FloatTween_2_set_targetValue, (FloatTween_2__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x003BC3C0, float, FloatTween_2_get_duration, (FloatTween_2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003CC920, void, FloatTween_2_set_duration, (FloatTween_2__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x003CD410, bool, FloatTween_2_get_ignoreTimeScale, (FloatTween_2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x019BF330, void, FloatTween_2_set_ignoreTimeScale, (FloatTween_2__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02FF58D0, void, FloatTween_2_TweenValue, (FloatTween_2__Boxed * __this, float floatPercentage, MethodInfo * method)); -DO_APP_FUNC(0x02FF5960, void, FloatTween_2_AddOnChangedCallback, (FloatTween_2__Boxed * __this, UnityAction_1_System_Single_ * callback, MethodInfo * method)); -DO_APP_FUNC(0x003CD410, bool, FloatTween_2_GetIgnoreTimescale, (FloatTween_2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC3C0, float, FloatTween_2_GetDuration, (FloatTween_2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C0DCF0, bool, FloatTween_2_ValidTarget, (FloatTween_2__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C43A70, float, FloatTween_2_get_startValue, (FloatTween_2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C43A80, void, FloatTween_2_set_startValue, (FloatTween_2 * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x00C43A90, float, FloatTween_2_get_targetValue, (FloatTween_2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C43AA0, void, FloatTween_2_set_targetValue, (FloatTween_2 * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x003BC3C0, float, FloatTween_2_get_duration, (FloatTween_2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x003CC920, void, FloatTween_2_set_duration, (FloatTween_2 * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x003CD410, bool, FloatTween_2_get_ignoreTimeScale, (FloatTween_2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x019BF330, void, FloatTween_2_set_ignoreTimeScale, (FloatTween_2 * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02FF58D0, void, FloatTween_2_TweenValue, (FloatTween_2 * __this, float floatPercentage, MethodInfo * method)); +DO_APP_FUNC(0x02FF5960, void, FloatTween_2_AddOnChangedCallback, (FloatTween_2 * __this, UnityAction_1_System_Single_ * callback, MethodInfo * method)); +DO_APP_FUNC(0x003CD410, bool, FloatTween_2_GetIgnoreTimescale, (FloatTween_2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC3C0, float, FloatTween_2_GetDuration, (FloatTween_2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C0DCF0, bool, FloatTween_2_ValidTarget, (FloatTween_2 * __this, MethodInfo * method)); DO_APP_FUNC(0x02FF5A70, void, FloatTween_FloatTweenCallback_2__ctor, (FloatTween_FloatTweenCallback_2 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, IPanel *, PanelEventHandler_get_panel, (PanelEventHandler * __this, MethodInfo * method)); DO_APP_FUNC(0x02FF5AB0, void, PanelEventHandler_set_panel, (PanelEventHandler * __this, IPanel * value, MethodInfo * method)); @@ -97616,8 +109367,11 @@ DO_APP_FUNC(0x02FF5CB0, void, PanelEventHandler_OnDisable, (PanelEventHandler * DO_APP_FUNC(0x02FF5CC0, void, PanelEventHandler_RegisterCallbacks, (PanelEventHandler * __this, MethodInfo * method)); DO_APP_FUNC(0x02FF5EB0, void, PanelEventHandler_UnregisterCallbacks, (PanelEventHandler * __this, MethodInfo * method)); DO_APP_FUNC(0x02FF60C0, void, PanelEventHandler_OnPanelDestroyed, (PanelEventHandler * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3220, PanelEventHandler_OnPanelDestroyed__MethodInfo); DO_APP_FUNC(0x02FF6170, void, PanelEventHandler_OnElementFocus, (PanelEventHandler * __this, FocusEvent * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3218, PanelEventHandler_OnElementFocus__MethodInfo); DO_APP_FUNC(0x003AE050, void, PanelEventHandler_OnElementBlur, (PanelEventHandler * __this, BlurEvent * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3230, PanelEventHandler_OnElementBlur__MethodInfo); DO_APP_FUNC(0x02FF62B0, void, PanelEventHandler_OnSelect, (PanelEventHandler * __this, BaseEventData * eventData, MethodInfo * method)); DO_APP_FUNC(0x02FF6320, void, PanelEventHandler_OnDeselect, (PanelEventHandler * __this, BaseEventData * eventData, MethodInfo * method)); DO_APP_FUNC(0x02FF6340, void, PanelEventHandler_OnPointerMove, (PanelEventHandler * __this, PointerEventData * eventData, MethodInfo * method)); @@ -97691,6 +109445,7 @@ DO_APP_FUNC(0x02FF8DD0, void, PanelRaycaster_set_panel, (PanelRaycaster * __this DO_APP_FUNC(0x02FF8FB0, void, PanelRaycaster_RegisterCallbacks, (PanelRaycaster * __this, MethodInfo * method)); DO_APP_FUNC(0x02FF9050, void, PanelRaycaster_UnregisterCallbacks, (PanelRaycaster * __this, MethodInfo * method)); DO_APP_FUNC(0x02FF90F0, void, PanelRaycaster_OnPanelDestroyed, (PanelRaycaster * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3210, PanelRaycaster_OnPanelDestroyed__MethodInfo); DO_APP_FUNC(0x02FF9100, GameObject *, PanelRaycaster_get_selectableGameObject, (PanelRaycaster * __this, MethodInfo * method)); DO_APP_FUNC(0x02FF9120, int32_t, PanelRaycaster_get_sortOrderPriority, (PanelRaycaster * __this, MethodInfo * method)); DO_APP_FUNC(0x02FF9140, int32_t, PanelRaycaster_get_renderOrderPriority, (PanelRaycaster * __this, MethodInfo * method)); @@ -97796,6 +109551,7 @@ DO_APP_FUNC(0x02FFB590, void, EventSystem_SetSelectedGameObject, (EventSystem * DO_APP_FUNC(0x02FFB930, BaseEventData *, EventSystem_get_baseEventDataCache, (EventSystem * __this, MethodInfo * method)); DO_APP_FUNC(0x02FFBA40, void, EventSystem_SetSelectedGameObject_1, (EventSystem * __this, GameObject * selected, MethodInfo * method)); DO_APP_FUNC(0x02FFBB60, int32_t, EventSystem_RaycastComparer, (RaycastResult lhs, RaycastResult rhs, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3018, EventSystem_RaycastComparer__MethodInfo); DO_APP_FUNC(0x02FFC3C0, void, EventSystem_RaycastAll, (EventSystem * __this, PointerEventData * eventData, List_1_UnityEngine_EventSystems_RaycastResult_ * raycastResults, MethodInfo * method)); DO_APP_FUNC(0x02FFC710, bool, EventSystem_IsPointerOverGameObject, (EventSystem * __this, MethodInfo * method)); DO_APP_FUNC(0x02FFC840, bool, EventSystem_IsPointerOverGameObject_1, (EventSystem * __this, int32_t pointerId, MethodInfo * method)); @@ -97804,6 +109560,7 @@ DO_APP_FUNC(0x02FFCC30, bool, EventSystem_get_sendUIToolkitEvents, (EventSystem DO_APP_FUNC(0x02FFCCA0, bool, EventSystem_get_createUIToolkitPanelGameObjectsOnStart, (EventSystem * __this, MethodInfo * method)); DO_APP_FUNC(0x02FFCD10, void, EventSystem_SetUITookitEventSystemOverride, (EventSystem * activeEventSystem, bool sendEvents, bool createPanelGameObjectsOnStart, MethodInfo * method)); DO_APP_FUNC(0x02FFD060, void, EventSystem_CreateUIToolkitPanelGameObject, (EventSystem * __this, BaseRuntimePanel * panel, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF30B8, EventSystem_CreateUIToolkitPanelGameObject__MethodInfo); DO_APP_FUNC(0x02FFD480, void, EventSystem_Start, (EventSystem * __this, MethodInfo * method)); DO_APP_FUNC(0x02FFD8A0, void, EventSystem_OnDestroy, (EventSystem * __this, MethodInfo * method)); DO_APP_FUNC(0x02FFDAA0, void, EventSystem_OnEnable, (EventSystem * __this, MethodInfo * method)); @@ -97816,6 +109573,7 @@ DO_APP_FUNC(0x02FFE920, String *, EventSystem_ToString, (EventSystem * __this, M DO_APP_FUNC(0x02FFEB60, void, EventSystem__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, EventSystem_c_DisplayClass52_0__ctor, (EventSystem_c_DisplayClass52_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x02FFEED0, void, EventSystem_c_DisplayClass52_0__CreateUIToolkitPanelGameObject_b__0, (EventSystem_c_DisplayClass52_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3090, EventSystem_c_DisplayClass52_0__CreateUIToolkitPanelGameObject_b__0__MethodInfo); DO_APP_FUNC(0x02FFEF30, List_1_UnityEngine_EventSystems_EventTrigger_Entry_ *, EventTrigger_get_delegates, (EventTrigger * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE960, void, EventTrigger_set_delegates, (EventTrigger * __this, List_1_UnityEngine_EventSystems_EventTrigger_Entry_ * value, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, EventTrigger__ctor, (EventTrigger * __this, MethodInfo * method)); @@ -97842,23 +109600,41 @@ DO_APP_FUNC(0x02FFF230, void, EventTrigger_OnCancel, (EventTrigger * __this, Bas DO_APP_FUNC(0x02FFF240, void, EventTrigger_TriggerEvent__ctor, (EventTrigger_TriggerEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x02FFF2D0, void, EventTrigger_Entry__ctor, (EventTrigger_Entry * __this, MethodInfo * method)); DO_APP_FUNC(0x02FFF410, void, ExecuteEvents_Execute, (IPointerMoveHandler * handler, BaseEventData * eventData, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2F10, ExecuteEvents_Execute__MethodInfo); DO_APP_FUNC(0x02FFF4B0, void, ExecuteEvents_Execute_1, (IPointerEnterHandler * handler, BaseEventData * eventData, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2EF8, ExecuteEvents_Execute_1__MethodInfo); DO_APP_FUNC(0x02FFF550, void, ExecuteEvents_Execute_2, (IPointerExitHandler * handler, BaseEventData * eventData, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2F00, ExecuteEvents_Execute_2__MethodInfo); DO_APP_FUNC(0x02FFF5F0, void, ExecuteEvents_Execute_3, (IPointerDownHandler * handler, BaseEventData * eventData, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2F18, ExecuteEvents_Execute_3__MethodInfo); DO_APP_FUNC(0x02FFF690, void, ExecuteEvents_Execute_4, (IPointerUpHandler * handler, BaseEventData * eventData, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2F28, ExecuteEvents_Execute_4__MethodInfo); DO_APP_FUNC(0x02FFF730, void, ExecuteEvents_Execute_5, (IPointerClickHandler * handler, BaseEventData * eventData, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2EF0, ExecuteEvents_Execute_5__MethodInfo); DO_APP_FUNC(0x02FFF7D0, void, ExecuteEvents_Execute_6, (IInitializePotentialDragHandler * handler, BaseEventData * eventData, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2F40, ExecuteEvents_Execute_6__MethodInfo); DO_APP_FUNC(0x02FFF870, void, ExecuteEvents_Execute_7, (IBeginDragHandler * handler, BaseEventData * eventData, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2F08, ExecuteEvents_Execute_7__MethodInfo); DO_APP_FUNC(0x02FFF910, void, ExecuteEvents_Execute_8, (IDragHandler * handler, BaseEventData * eventData, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2F38, ExecuteEvents_Execute_8__MethodInfo); DO_APP_FUNC(0x02FFF9B0, void, ExecuteEvents_Execute_9, (IEndDragHandler * handler, BaseEventData * eventData, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2EA0, ExecuteEvents_Execute_9__MethodInfo); DO_APP_FUNC(0x02FFFA50, void, ExecuteEvents_Execute_10, (IDropHandler * handler, BaseEventData * eventData, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2EE8, ExecuteEvents_Execute_10__MethodInfo); DO_APP_FUNC(0x02FFFAF0, void, ExecuteEvents_Execute_11, (IScrollHandler * handler, BaseEventData * eventData, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2EB8, ExecuteEvents_Execute_11__MethodInfo); DO_APP_FUNC(0x02FFFB90, void, ExecuteEvents_Execute_12, (IUpdateSelectedHandler * handler, BaseEventData * eventData, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2F30, ExecuteEvents_Execute_12__MethodInfo); DO_APP_FUNC(0x02FFFBF0, void, ExecuteEvents_Execute_13, (ISelectHandler * handler, BaseEventData * eventData, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2F50, ExecuteEvents_Execute_13__MethodInfo); DO_APP_FUNC(0x02FFFC50, void, ExecuteEvents_Execute_14, (IDeselectHandler * handler, BaseEventData * eventData, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2EB0, ExecuteEvents_Execute_14__MethodInfo); DO_APP_FUNC(0x02FFFCB0, void, ExecuteEvents_Execute_15, (IMoveHandler * handler, BaseEventData * eventData, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2F48, ExecuteEvents_Execute_15__MethodInfo); DO_APP_FUNC(0x02FFFDB0, void, ExecuteEvents_Execute_16, (ISubmitHandler * handler, BaseEventData * eventData, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2EE0, ExecuteEvents_Execute_16__MethodInfo); DO_APP_FUNC(0x02FFFE10, void, ExecuteEvents_Execute_17, (ICancelHandler * handler, BaseEventData * eventData, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2EA8, ExecuteEvents_Execute_17__MethodInfo); DO_APP_FUNC(0x02FFFE70, ExecuteEvents_EventFunction_1_IPointerMoveHandler_ *, ExecuteEvents_get_pointerMoveHandler, (MethodInfo * method)); DO_APP_FUNC(0x02FFFED0, ExecuteEvents_EventFunction_1_IPointerEnterHandler_ *, ExecuteEvents_get_pointerEnterHandler, (MethodInfo * method)); DO_APP_FUNC(0x02FFFF30, ExecuteEvents_EventFunction_1_IPointerExitHandler_ *, ExecuteEvents_get_pointerExitHandler, (MethodInfo * method)); @@ -97919,9 +109695,9 @@ DO_APP_FUNC(0x003AE050, void, BaseInputModule_UpdateModule, (BaseInputModule * _ DO_APP_FUNC(0x0041AEF0, bool, BaseInputModule_IsModuleSupported, (BaseInputModule * __this, MethodInfo * method)); DO_APP_FUNC(0x03003B10, int32_t, BaseInputModule_ConvertUIToolkitPointerId, (BaseInputModule * __this, PointerEventData * sourcePointerData, MethodInfo * method)); DO_APP_FUNC(0x03003BB0, void, BaseInputModule__ctor, (BaseInputModule * __this, MethodInfo * method)); -DO_APP_FUNC(0x03003CB0, bool, PointerInputModule_GetPointerData, (PointerInputModule * __this, int32_t id, PointerEventData * data, bool create, MethodInfo * method)); +DO_APP_FUNC(0x03003CB0, bool, PointerInputModule_GetPointerData, (PointerInputModule * __this, int32_t id, PointerEventData * * data, bool create, MethodInfo * method)); DO_APP_FUNC(0x03003E20, void, PointerInputModule_RemovePointerData, (PointerInputModule * __this, PointerEventData * data, MethodInfo * method)); -DO_APP_FUNC(0x03003E90, PointerEventData *, PointerInputModule_GetTouchPointerEventData, (PointerInputModule * __this, Touch input, bool pressed, bool released, MethodInfo * method)); +DO_APP_FUNC(0x03003E90, PointerEventData *, PointerInputModule_GetTouchPointerEventData, (PointerInputModule * __this, Touch input, bool * pressed, bool * released, MethodInfo * method)); DO_APP_FUNC(0x03004340, void, PointerInputModule_CopyFromTo, (PointerInputModule * __this, PointerEventData * from, PointerEventData * to, MethodInfo * method)); DO_APP_FUNC(0x03004540, PointerEventData_FramePressState__Enum, PointerInputModule_StateForMouseButton, (PointerInputModule * __this, int32_t buttonId, MethodInfo * method)); DO_APP_FUNC(0x03004600, PointerInputModule_MouseState *, PointerInputModule_GetMousePointerEventData, (PointerInputModule * __this, MethodInfo * method)); @@ -98023,16 +109799,16 @@ DO_APP_FUNC(0x00421680, LayerMask, PhysicsRaycaster_get_eventMask, (PhysicsRayca DO_APP_FUNC(0x00421690, void, PhysicsRaycaster_set_eventMask, (PhysicsRaycaster * __this, LayerMask value, MethodInfo * method)); DO_APP_FUNC(0x0098C870, int32_t, PhysicsRaycaster_get_maxRayIntersections, (PhysicsRaycaster * __this, MethodInfo * method)); DO_APP_FUNC(0x0098C880, void, PhysicsRaycaster_set_maxRayIntersections, (PhysicsRaycaster * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x0300D650, bool, PhysicsRaycaster_ComputeRayAndDistance, (PhysicsRaycaster * __this, PointerEventData * eventData, Ray ray, int32_t eventDisplayIndex, float distanceToClipPlane, MethodInfo * method)); +DO_APP_FUNC(0x0300D650, bool, PhysicsRaycaster_ComputeRayAndDistance, (PhysicsRaycaster * __this, PointerEventData * eventData, Ray * ray, int32_t * eventDisplayIndex, float * distanceToClipPlane, MethodInfo * method)); DO_APP_FUNC(0x0300DAF0, void, PhysicsRaycaster_Raycast, (PhysicsRaycaster * __this, PointerEventData * eventData, List_1_UnityEngine_EventSystems_RaycastResult_ * resultAppendList, MethodInfo * method)); DO_APP_FUNC(0x004CB610, int32_t, PhysicsRaycaster_RaycastHitComparer_Compare, (PhysicsRaycaster_RaycastHitComparer * __this, RaycastHit x, RaycastHit y, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, PhysicsRaycaster_RaycastHitComparer__ctor, (PhysicsRaycaster_RaycastHitComparer * __this, MethodInfo * method)); DO_APP_FUNC(0x0300E0A0, void, PhysicsRaycaster_RaycastHitComparer__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x00471910, GameObject *, RaycastResult_get_gameObject, (RaycastResult__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, RaycastResult_set_gameObject, (RaycastResult__Boxed * __this, GameObject * value, MethodInfo * method)); -DO_APP_FUNC(0x0300E150, bool, RaycastResult_get_isValid, (RaycastResult__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0300E330, void, RaycastResult_Clear, (RaycastResult__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0300E4C0, String *, RaycastResult_ToString, (RaycastResult__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, GameObject *, RaycastResult_get_gameObject, (RaycastResult * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, RaycastResult_set_gameObject, (RaycastResult * __this, GameObject * value, MethodInfo * method)); +DO_APP_FUNC(0x0300E150, bool, RaycastResult_get_isValid, (RaycastResult * __this, MethodInfo * method)); +DO_APP_FUNC(0x0300E330, void, RaycastResult_Clear, (RaycastResult * __this, MethodInfo * method)); +DO_APP_FUNC(0x0300E4C0, String *, RaycastResult_ToString, (RaycastResult * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, UIBehaviour_Awake, (UIBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, UIBehaviour_OnEnable, (UIBehaviour * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, UIBehaviour_Start, (UIBehaviour * __this, MethodInfo * method)); @@ -98088,27 +109864,27 @@ DO_APP_FUNC(0x021FD4E0, bool, BipedReferences_get_isFilled, (BipedReferences * _ DO_APP_FUNC(0x021FDF30, bool, BipedReferences_get_isEmpty, (BipedReferences * __this, MethodInfo * method)); DO_APP_FUNC(0x021FDF50, bool, BipedReferences_IsEmpty, (BipedReferences * __this, bool includeRoot, MethodInfo * method)); DO_APP_FUNC(0x021FE9B0, bool, BipedReferences_Contains, (BipedReferences * __this, Transform * t, bool ignoreRoot, MethodInfo * method)); -DO_APP_FUNC(0x021FF960, bool, BipedReferences_AutoDetectReferences, (BipedReferences * references, Transform * root, BipedReferences_AutoDetectParams autoDetectParams, MethodInfo * method)); -DO_APP_FUNC(0x021FFFC0, void, BipedReferences_DetectReferencesByNaming, (BipedReferences * references, Transform * root, BipedReferences_AutoDetectParams autoDetectParams, MethodInfo * method)); -DO_APP_FUNC(0x02201010, void, BipedReferences_AssignHumanoidReferences, (BipedReferences * references, Animator * animator, BipedReferences_AutoDetectParams autoDetectParams, MethodInfo * method)); -DO_APP_FUNC(0x02201B20, bool, BipedReferences_SetupError, (BipedReferences * references, String * errorMessage, MethodInfo * method)); -DO_APP_FUNC(0x02201CA0, bool, BipedReferences_SetupWarning, (BipedReferences * references, String * warningMessage, MethodInfo * method)); +DO_APP_FUNC(0x021FF960, bool, BipedReferences_AutoDetectReferences, (BipedReferences * * references, Transform * root, BipedReferences_AutoDetectParams autoDetectParams, MethodInfo * method)); +DO_APP_FUNC(0x021FFFC0, void, BipedReferences_DetectReferencesByNaming, (BipedReferences * * references, Transform * root, BipedReferences_AutoDetectParams autoDetectParams, MethodInfo * method)); +DO_APP_FUNC(0x02201010, void, BipedReferences_AssignHumanoidReferences, (BipedReferences * * references, Animator * animator, BipedReferences_AutoDetectParams autoDetectParams, MethodInfo * method)); +DO_APP_FUNC(0x02201B20, bool, BipedReferences_SetupError, (BipedReferences * references, String * * errorMessage, MethodInfo * method)); +DO_APP_FUNC(0x02201CA0, bool, BipedReferences_SetupWarning, (BipedReferences * references, String * * warningMessage, MethodInfo * method)); DO_APP_FUNC(0x02201D90, bool, BipedReferences_IsNeckBone, (Transform * bone, Transform * leftUpperArm, MethodInfo * method)); -DO_APP_FUNC(0x022020A0, bool, BipedReferences_AddBoneToEyes, (Transform * bone, BipedReferences * references, BipedReferences_AutoDetectParams autoDetectParams, MethodInfo * method)); -DO_APP_FUNC(0x022022F0, bool, BipedReferences_AddBoneToSpine, (Transform * bone, BipedReferences * references, BipedReferences_AutoDetectParams autoDetectParams, MethodInfo * method)); -DO_APP_FUNC(0x02202880, void, BipedReferences_DetectLimb, (BipedNaming_BoneType__Enum boneType, BipedNaming_BoneSide__Enum boneSide, Transform * firstBone, Transform * secondBone, Transform * lastBone, Transform__Array * transforms, MethodInfo * method)); -DO_APP_FUNC(0x02202B50, void, BipedReferences_AddBoneToHierarchy, (Transform__Array * bones, Transform * transform, MethodInfo * method)); -DO_APP_FUNC(0x02202CD0, bool, BipedReferences_LimbError, (Transform * bone1, Transform * bone2, Transform * bone3, String * errorMessage, MethodInfo * method)); -DO_APP_FUNC(0x022037C0, bool, BipedReferences_LimbWarning, (Transform * bone1, Transform * bone2, Transform * bone3, String * warningMessage, MethodInfo * method)); -DO_APP_FUNC(0x02203CE0, bool, BipedReferences_SpineError, (BipedReferences * references, String * errorMessage, MethodInfo * method)); -DO_APP_FUNC(0x0041AF00, bool, BipedReferences_SpineWarning, (BipedReferences * references, String * warningMessage, MethodInfo * method)); -DO_APP_FUNC(0x02204300, bool, BipedReferences_EyesError, (BipedReferences * references, String * errorMessage, MethodInfo * method)); -DO_APP_FUNC(0x0041AF00, bool, BipedReferences_EyesWarning, (BipedReferences * references, String * warningMessage, MethodInfo * method)); -DO_APP_FUNC(0x02204640, bool, BipedReferences_RootHeightWarning, (BipedReferences * references, String * warningMessage, MethodInfo * method)); -DO_APP_FUNC(0x02204AB0, bool, BipedReferences_FacingAxisWarning, (BipedReferences * references, String * warningMessage, MethodInfo * method)); +DO_APP_FUNC(0x022020A0, bool, BipedReferences_AddBoneToEyes, (Transform * bone, BipedReferences * * references, BipedReferences_AutoDetectParams autoDetectParams, MethodInfo * method)); +DO_APP_FUNC(0x022022F0, bool, BipedReferences_AddBoneToSpine, (Transform * bone, BipedReferences * * references, BipedReferences_AutoDetectParams autoDetectParams, MethodInfo * method)); +DO_APP_FUNC(0x02202880, void, BipedReferences_DetectLimb, (BipedNaming_BoneType__Enum boneType, BipedNaming_BoneSide__Enum boneSide, Transform * * firstBone, Transform * * secondBone, Transform * * lastBone, Transform__Array * transforms, MethodInfo * method)); +DO_APP_FUNC(0x02202B50, void, BipedReferences_AddBoneToHierarchy, (Transform__Array * * bones, Transform * transform, MethodInfo * method)); +DO_APP_FUNC(0x02202CD0, bool, BipedReferences_LimbError, (Transform * bone1, Transform * bone2, Transform * bone3, String * * errorMessage, MethodInfo * method)); +DO_APP_FUNC(0x022037C0, bool, BipedReferences_LimbWarning, (Transform * bone1, Transform * bone2, Transform * bone3, String * * warningMessage, MethodInfo * method)); +DO_APP_FUNC(0x02203CE0, bool, BipedReferences_SpineError, (BipedReferences * references, String * * errorMessage, MethodInfo * method)); +DO_APP_FUNC(0x0041AF00, bool, BipedReferences_SpineWarning, (BipedReferences * references, String * * warningMessage, MethodInfo * method)); +DO_APP_FUNC(0x02204300, bool, BipedReferences_EyesError, (BipedReferences * references, String * * errorMessage, MethodInfo * method)); +DO_APP_FUNC(0x0041AF00, bool, BipedReferences_EyesWarning, (BipedReferences * references, String * * warningMessage, MethodInfo * method)); +DO_APP_FUNC(0x02204640, bool, BipedReferences_RootHeightWarning, (BipedReferences * references, String * * warningMessage, MethodInfo * method)); +DO_APP_FUNC(0x02204AB0, bool, BipedReferences_FacingAxisWarning, (BipedReferences * references, String * * warningMessage, MethodInfo * method)); DO_APP_FUNC(0x02204F70, float, BipedReferences_GetVerticalOffset, (Vector3 p1, Vector3 p2, Quaternion rotation, MethodInfo * method)); DO_APP_FUNC(0x022050D0, void, BipedReferences__ctor, (BipedReferences * __this, MethodInfo * method)); -DO_APP_FUNC(0x022051E0, void, BipedReferences_AutoDetectParams__ctor, (BipedReferences_AutoDetectParams__Boxed * __this, bool legsParentInSpine, bool includeEyes, MethodInfo * method)); +DO_APP_FUNC(0x022051E0, void, BipedReferences_AutoDetectParams__ctor, (BipedReferences_AutoDetectParams * __this, bool legsParentInSpine, bool includeEyes, MethodInfo * method)); DO_APP_FUNC(0x022051F0, BipedReferences_AutoDetectParams, BipedReferences_AutoDetectParams_get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, Comments__ctor, (Comments * __this, MethodInfo * method)); DO_APP_FUNC(0x02205200, void, DemoGUIMessage_OnGUI, (DemoGUIMessage * __this, MethodInfo * method)); @@ -98117,7 +109893,7 @@ DO_APP_FUNC(0x022053F0, bool, Hierarchy_HierarchyIsValid, (Transform__Array * bo DO_APP_FUNC(0x02205470, Object_1 *, Hierarchy_ContainsDuplicate, (Object_1__Array * objects, MethodInfo * method)); DO_APP_FUNC(0x02205690, bool, Hierarchy_IsAncestor, (Transform * transform, Transform * ancestor, MethodInfo * method)); DO_APP_FUNC(0x02205A80, bool, Hierarchy_ContainsChild, (Transform * transform, Transform * child, MethodInfo * method)); -DO_APP_FUNC(0x02205DD0, void, Hierarchy_AddAncestors, (Transform * transform, Transform * blocker, Transform__Array * array, MethodInfo * method)); +DO_APP_FUNC(0x02205DD0, void, Hierarchy_AddAncestors, (Transform * transform, Transform * blocker, Transform__Array * * array, MethodInfo * method)); DO_APP_FUNC(0x02206400, Transform *, Hierarchy_GetAncestor, (Transform * transform, int32_t minChildCount, MethodInfo * method)); DO_APP_FUNC(0x02206700, Transform *, Hierarchy_GetFirstCommonAncestor, (Transform * t1, Transform * t2, MethodInfo * method)); DO_APP_FUNC(0x02206B10, Transform *, Hierarchy_GetFirstCommonAncestor_1, (Transform__Array * transforms, MethodInfo * method)); @@ -98246,8 +110022,8 @@ DO_APP_FUNC(0x0220F820, Vector3, V3Tools_ExtractVertical, (Vector3 v, Vector3 ve DO_APP_FUNC(0x0220F9F0, Vector3, V3Tools_ExtractHorizontal, (Vector3 v, Vector3 normal, float weight, MethodInfo * method)); DO_APP_FUNC(0x0220FC10, Vector3, V3Tools_Flatten, (Vector3 v, Vector3 normal, MethodInfo * method)); DO_APP_FUNC(0x0220FD50, Vector3, V3Tools_ClampDirection, (Vector3 direction, Vector3 normalDirection, float clampWeight, int32_t clampSmoothing, MethodInfo * method)); -DO_APP_FUNC(0x0220FF80, Vector3, V3Tools_ClampDirection_1, (Vector3 direction, Vector3 normalDirection, float clampWeight, int32_t clampSmoothing, bool changed, MethodInfo * method)); -DO_APP_FUNC(0x022101C0, Vector3, V3Tools_ClampDirection_2, (Vector3 direction, Vector3 normalDirection, float clampWeight, int32_t clampSmoothing, float clampValue, MethodInfo * method)); +DO_APP_FUNC(0x0220FF80, Vector3, V3Tools_ClampDirection_1, (Vector3 direction, Vector3 normalDirection, float clampWeight, int32_t clampSmoothing, bool * changed, MethodInfo * method)); +DO_APP_FUNC(0x022101C0, Vector3, V3Tools_ClampDirection_2, (Vector3 direction, Vector3 normalDirection, float clampWeight, int32_t clampSmoothing, float * clampValue, MethodInfo * method)); DO_APP_FUNC(0x02210440, Vector3, V3Tools_LineToPlane, (Vector3 origin, Vector3 direction, Vector3 planeNormal, Vector3 planePoint, MethodInfo * method)); DO_APP_FUNC(0x022105C0, Vector3, V3Tools_PointToPlane, (Vector3 point, Vector3 planePosition, Vector3 planeNormal, MethodInfo * method)); DO_APP_FUNC(0x022107D0, Vector3, V3Tools_TransformPointUnscaled, (Transform * t, Vector3 point, MethodInfo * method)); @@ -98340,8 +110116,8 @@ DO_APP_FUNC(0x013B37C0, void, BehaviourBase_CollisionDelegate__ctor, (BehaviourB DO_APP_FUNC(0x013B38F0, void, BehaviourBase_CollisionDelegate_Invoke, (BehaviourBase_CollisionDelegate * __this, MuscleCollision collision, MethodInfo * method)); DO_APP_FUNC(0x022150E0, IAsyncResult *, BehaviourBase_CollisionDelegate_BeginInvoke, (BehaviourBase_CollisionDelegate * __this, MuscleCollision collision, AsyncCallback * callback, Object * object, MethodInfo * method)); DO_APP_FUNC(0x003BA270, void, BehaviourBase_CollisionDelegate_EndInvoke, (BehaviourBase_CollisionDelegate * __this, IAsyncResult * result, MethodInfo * method)); -DO_APP_FUNC(0x02215170, bool, BehaviourBase_PuppetEvent_get_switchBehaviour, (BehaviourBase_PuppetEvent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02215260, void, BehaviourBase_PuppetEvent_Trigger, (BehaviourBase_PuppetEvent__Boxed * __this, PuppetMaster * puppetMaster, bool switchBehaviourEnabled, MethodInfo * method)); +DO_APP_FUNC(0x02215170, bool, BehaviourBase_PuppetEvent_get_switchBehaviour, (BehaviourBase_PuppetEvent * __this, MethodInfo * method)); +DO_APP_FUNC(0x02215260, void, BehaviourBase_PuppetEvent_Trigger, (BehaviourBase_PuppetEvent * __this, PuppetMaster * puppetMaster, bool switchBehaviourEnabled, MethodInfo * method)); DO_APP_FUNC(0x02215520, void, BehaviourBase_AnimatorEvent_Activate, (BehaviourBase_AnimatorEvent * __this, Animator * animator, Animation * animation, MethodInfo * method)); DO_APP_FUNC(0x02215850, void, BehaviourBase_AnimatorEvent_Activate_1, (BehaviourBase_AnimatorEvent * __this, Animator * animator, MethodInfo * method)); DO_APP_FUNC(0x02215A30, void, BehaviourBase_AnimatorEvent_Activate_2, (BehaviourBase_AnimatorEvent * __this, Animation * animation, MethodInfo * method)); @@ -98388,7 +110164,7 @@ DO_APP_FUNC(0x022182D0, void, BehaviourPuppet_OnFixedUpdate, (BehaviourPuppet * DO_APP_FUNC(0x02218CE0, void, BehaviourPuppet_OnLateUpdate, (BehaviourPuppet * __this, float deltaTime, MethodInfo * method)); DO_APP_FUNC(0x02218F50, bool, BehaviourPuppet_SetKinematic, (BehaviourPuppet * __this, MethodInfo * method)); DO_APP_FUNC(0x02219020, void, BehaviourPuppet_OnReadBehaviour, (BehaviourPuppet * __this, float deltaTime, MethodInfo * method)); -DO_APP_FUNC(0x02219670, void, BehaviourPuppet_BlendMuscleMapping, (BehaviourPuppet * __this, int32_t muscleIndex, bool to, float deltaTime, MethodInfo * method)); +DO_APP_FUNC(0x02219670, void, BehaviourPuppet_BlendMuscleMapping, (BehaviourPuppet * __this, int32_t muscleIndex, bool * to, float deltaTime, MethodInfo * method)); DO_APP_FUNC(0x02219810, void, BehaviourPuppet_OnMuscleAdded, (BehaviourPuppet * __this, Muscle * m, MethodInfo * method)); DO_APP_FUNC(0x02219860, void, BehaviourPuppet_OnMuscleRemoved, (BehaviourPuppet * __this, Muscle * m, MethodInfo * method)); DO_APP_FUNC(0x022198B0, void, BehaviourPuppet_MoveTarget, (BehaviourPuppet * __this, Vector3 position, MethodInfo * method)); @@ -98407,7 +110183,7 @@ DO_APP_FUNC(0x0221A350, void, BehaviourPuppet_BoostImpulseMlp_2, (BehaviourPuppe DO_APP_FUNC(0x02218220, void, BehaviourPuppet_Unpin, (BehaviourPuppet * __this, MethodInfo * method)); DO_APP_FUNC(0x0221A480, void, BehaviourPuppet_OnMuscleHitBehaviour, (BehaviourPuppet * __this, MuscleHit hit, MethodInfo * method)); DO_APP_FUNC(0x0221A610, void, BehaviourPuppet_OnMuscleCollisionBehaviour, (BehaviourPuppet * __this, MuscleCollision m, MethodInfo * method)); -DO_APP_FUNC(0x0221AED0, float, BehaviourPuppet_GetImpulse, (BehaviourPuppet * __this, MuscleCollision m, float layerThreshold, MethodInfo * method)); +DO_APP_FUNC(0x0221AED0, float, BehaviourPuppet_GetImpulse, (BehaviourPuppet * __this, MuscleCollision m, float * layerThreshold, MethodInfo * method)); DO_APP_FUNC(0x0221B130, void, BehaviourPuppet_UnPin, (BehaviourPuppet * __this, int32_t muscleIndex, float unpin, MethodInfo * method)); DO_APP_FUNC(0x0221B2E0, void, BehaviourPuppet_UnPinMuscle, (BehaviourPuppet * __this, int32_t muscleIndex, float unpin, MethodInfo * method)); DO_APP_FUNC(0x0221B5B0, bool, BehaviourPuppet_Activate, (BehaviourPuppet * __this, Collision * collision, float impulse, MethodInfo * method)); @@ -98539,8 +110315,8 @@ DO_APP_FUNC(0x02225300, void, Muscle_InitiateAdditionalPin, (Muscle * __this, Me DO_APP_FUNC(0x02225680, void, Muscle_UpdateColliders, (Muscle * __this, MethodInfo * method)); DO_APP_FUNC(0x022259B0, void, Muscle_DisableColliders, (Muscle * __this, MethodInfo * method)); DO_APP_FUNC(0x02225B60, void, Muscle_EnableColliders, (Muscle * __this, MethodInfo * method)); -DO_APP_FUNC(0x02225C10, void, Muscle_AddColliders, (Muscle * __this, Transform * t, Collider__Array * C, bool includeMeshColliders, MethodInfo * method)); -DO_APP_FUNC(0x02225EF0, void, Muscle_AddCompoundColliders, (Muscle * __this, Transform * t, Collider__Array * colliders, MethodInfo * method)); +DO_APP_FUNC(0x02225C10, void, Muscle_AddColliders, (Muscle * __this, Transform * t, Collider__Array * * C, bool includeMeshColliders, MethodInfo * method)); +DO_APP_FUNC(0x02225EF0, void, Muscle_AddCompoundColliders, (Muscle * __this, Transform * t, Collider__Array * * colliders, MethodInfo * method)); DO_APP_FUNC(0x02226110, void, Muscle_IgnoreInternalCollisions, (Muscle * __this, Muscle * m, MethodInfo * method)); DO_APP_FUNC(0x02226420, void, Muscle_ResetInternalCollisions, (Muscle * __this, Muscle * m, bool useInternalCollisionIgnores, MethodInfo * method)); DO_APP_FUNC(0x02226760, bool, Muscle_ForceIgnore, (Muscle * __this, Muscle * otherMuscle, MethodInfo * method)); @@ -98577,11 +110353,11 @@ DO_APP_FUNC(0x0222D360, void, Muscle_Props__ctor, (Muscle_Props * __this, Method DO_APP_FUNC(0x0222D4D0, void, Muscle_Props__ctor_1, (Muscle_Props * __this, float pinWeight, float muscleWeight, float mappingWeight, float muscleDamper, Muscle_Group__Enum group, MethodInfo * method)); DO_APP_FUNC(0x0222D670, void, Muscle_Props_Clamp, (Muscle_Props * __this, MethodInfo * method)); DO_APP_FUNC(0x0222D6F0, Muscle_State, Muscle_State_get_Default, (MethodInfo * method)); -DO_APP_FUNC(0x0222D740, void, Muscle_State_Clamp, (Muscle_State__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0222D740, void, Muscle_State_Clamp, (Muscle_State * __this, MethodInfo * method)); DO_APP_FUNC(0x0222D7E0, void, Muscle_TargetChild__ctor, (Muscle_TargetChild * __this, Transform * t, MethodInfo * method)); DO_APP_FUNC(0x0222D950, void, Muscle_TargetChild_Map, (Muscle_TargetChild * __this, MethodInfo * method)); -DO_APP_FUNC(0x0222DA30, void, MuscleCollision__ctor, (MuscleCollision__Boxed * __this, int32_t muscleIndex, Collision * collision, bool isStay, MethodInfo * method)); -DO_APP_FUNC(0x0222DA90, void, MuscleHit__ctor, (MuscleHit__Boxed * __this, int32_t muscleIndex, float unPin, Vector3 force, Vector3 position, MethodInfo * method)); +DO_APP_FUNC(0x0222DA30, void, MuscleCollision__ctor, (MuscleCollision * __this, int32_t muscleIndex, Collision * collision, bool isStay, MethodInfo * method)); +DO_APP_FUNC(0x0222DA90, void, MuscleHit__ctor, (MuscleHit * __this, int32_t muscleIndex, float unPin, Vector3 force, Vector3 position, MethodInfo * method)); DO_APP_FUNC(0x0222DAC0, void, MuscleCollisionBroadcaster_Hit, (MuscleCollisionBroadcaster * __this, float unPin, Vector3 force, Vector3 position, MethodInfo * method)); DO_APP_FUNC(0x0222DCD0, bool, MuscleCollisionBroadcaster_IsSelf, (MuscleCollisionBroadcaster * __this, Collider * c, MethodInfo * method)); DO_APP_FUNC(0x0222DDE0, void, MuscleCollisionBroadcaster_OnCollisionEnter, (MuscleCollisionBroadcaster * __this, Collision * collision, MethodInfo * method)); @@ -98591,14 +110367,14 @@ DO_APP_FUNC(0x003AE000, void, MuscleCollisionBroadcaster__ctor, (MuscleCollision DO_APP_FUNC(0x0222EAA0, void, ParticleCollisionHandler_Start, (ParticleCollisionHandler * __this, MethodInfo * method)); DO_APP_FUNC(0x0222EE20, void, ParticleCollisionHandler_OnParticleCollision, (ParticleCollisionHandler * __this, GameObject * other, MethodInfo * method)); DO_APP_FUNC(0x0222F5D0, void, ParticleCollisionHandler__ctor, (ParticleCollisionHandler * __this, MethodInfo * method)); -DO_APP_FUNC(0x0222F6D0, void, PhysXTools_Predict, (Rigidbody * r, int32_t steps, Vector3 position, Quaternion rotation, MethodInfo * method)); -DO_APP_FUNC(0x0222F840, void, PhysXTools_Predict_1, (Rigidbody * r, int32_t steps, Vector3 position, Quaternion rotation, Vector3 gravity, float drag, float angularDrag, MethodInfo * method)); -DO_APP_FUNC(0x0222FAA0, void, PhysXTools_Predict_2, (Vector3 position, Quaternion rotation, Vector3 velocity, Vector3 angularVelocity, Vector3 gravity, float drag, float angularDrag, MethodInfo * method)); +DO_APP_FUNC(0x0222F6D0, void, PhysXTools_Predict, (Rigidbody * r, int32_t steps, Vector3 * position, Quaternion * rotation, MethodInfo * method)); +DO_APP_FUNC(0x0222F840, void, PhysXTools_Predict_1, (Rigidbody * r, int32_t steps, Vector3 * position, Quaternion * rotation, Vector3 gravity, float drag, float angularDrag, MethodInfo * method)); +DO_APP_FUNC(0x0222FAA0, void, PhysXTools_Predict_2, (Vector3 * position, Quaternion * rotation, Vector3 * velocity, Vector3 * angularVelocity, Vector3 gravity, float drag, float angularDrag, MethodInfo * method)); DO_APP_FUNC(0x0222FFC0, Vector3, PhysXTools_GetCenterOfMass, (PuppetMaster * puppet, MethodInfo * method)); DO_APP_FUNC(0x022302D0, Vector3, PhysXTools_GetCenterOfMass_1, (Rigidbody__Array * rigidbodies, MethodInfo * method)); DO_APP_FUNC(0x02230560, Vector3, PhysXTools_GetCenterOfMassVelocity, (Rigidbody__Array * rigidbodies, MethodInfo * method)); -DO_APP_FUNC(0x022307F0, void, PhysXTools_DivByInertia, (Vector3 v, Quaternion rotation, Vector3 inertiaTensor, MethodInfo * method)); -DO_APP_FUNC(0x02230BB0, void, PhysXTools_ScaleByInertia, (Vector3 v, Quaternion rotation, Vector3 inertiaTensor, MethodInfo * method)); +DO_APP_FUNC(0x022307F0, void, PhysXTools_DivByInertia, (Vector3 * v, Quaternion rotation, Vector3 inertiaTensor, MethodInfo * method)); +DO_APP_FUNC(0x02230BB0, void, PhysXTools_ScaleByInertia, (Vector3 * v, Quaternion rotation, Vector3 inertiaTensor, MethodInfo * method)); DO_APP_FUNC(0x02230F70, Vector3, PhysXTools_GetAngularVelocity, (Quaternion lastRotation, Quaternion rotation, float deltaTime, MethodInfo * method)); DO_APP_FUNC(0x022312F0, Vector3, PhysXTools_GetFromToAcceleration, (Vector3 fromV, Vector3 toV, MethodInfo * method)); DO_APP_FUNC(0x02231510, Vector3, PhysXTools_GetAngularAcceleration, (Quaternion fromR, Quaternion toR, MethodInfo * method)); @@ -98748,7 +110524,7 @@ DO_APP_FUNC(0x022472D0, void, PuppetMaster_OnDisconnectMuscleRecursive, (PuppetM DO_APP_FUNC(0x022477D0, void, PuppetMaster_DisconnectMuscle, (PuppetMaster * __this, Muscle * m, bool sever, bool deactivate, MethodInfo * method)); DO_APP_FUNC(0x022487B0, void, PuppetMaster_OnReconnectMuscleRecursive, (PuppetMaster * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x022489A0, void, PuppetMaster_ReconnectMuscle, (PuppetMaster * __this, Muscle * m, MethodInfo * method)); -DO_APP_FUNC(0x02249460, void, PuppetMaster_AddIndexesRecursive, (PuppetMaster * __this, int32_t index, Int32__Array * indexes, MethodInfo * method)); +DO_APP_FUNC(0x02249460, void, PuppetMaster_AddIndexesRecursive, (PuppetMaster * __this, int32_t index, Int32__Array * * indexes, MethodInfo * method)); DO_APP_FUNC(0x022495F0, void, PuppetMaster_DisconnectJoint, (PuppetMaster * __this, ConfigurableJoint * joint, MethodInfo * method)); DO_APP_FUNC(0x022498D0, void, PuppetMaster_KillJoint, (PuppetMaster * __this, ConfigurableJoint * joint, MethodInfo * method)); DO_APP_FUNC(0x022499D0, void, PuppetMaster_SwitchToActiveMode, (PuppetMaster * __this, MethodInfo * method)); @@ -98815,11 +110591,11 @@ DO_APP_FUNC(0x022533F0, void, PuppetMaster_UpdateHierarchies, (PuppetMaster * __ DO_APP_FUNC(0x02253A30, bool, PuppetMaster_HasProp, (PuppetMaster * __this, MethodInfo * method)); DO_APP_FUNC(0x02253A90, void, PuppetMaster_UpdateBroadcasterMuscleIndexes, (PuppetMaster * __this, MethodInfo * method)); DO_APP_FUNC(0x02253D50, void, PuppetMaster_AssignParentAndChildIndexes, (PuppetMaster * __this, MethodInfo * method)); -DO_APP_FUNC(0x02254330, void, PuppetMaster_AddToParentsRecursive, (PuppetMaster * __this, ConfigurableJoint * joint, Int32__Array * indexes, MethodInfo * method)); -DO_APP_FUNC(0x02254600, void, PuppetMaster_AddToChildrenRecursive, (PuppetMaster * __this, ConfigurableJoint * joint, Int32__Array * indexes, Boolean__Array * childFlags, MethodInfo * method)); +DO_APP_FUNC(0x02254330, void, PuppetMaster_AddToParentsRecursive, (PuppetMaster * __this, ConfigurableJoint * joint, Int32__Array * * indexes, MethodInfo * method)); +DO_APP_FUNC(0x02254600, void, PuppetMaster_AddToChildrenRecursive, (PuppetMaster * __this, ConfigurableJoint * joint, Int32__Array * * indexes, Boolean__Array * * childFlags, MethodInfo * method)); DO_APP_FUNC(0x022549D0, void, PuppetMaster_AssignKinshipDegrees, (PuppetMaster * __this, MethodInfo * method)); -DO_APP_FUNC(0x02254B70, void, PuppetMaster_AssignKinshipsDownRecursive, (PuppetMaster * __this, Int32__Array * kinshipDegrees, int32_t degree, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x02254DF0, void, PuppetMaster_AssignKinshipsUpRecursive, (PuppetMaster * __this, Int32__Array * kinshipDegrees, int32_t degree, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x02254B70, void, PuppetMaster_AssignKinshipsDownRecursive, (PuppetMaster * __this, Int32__Array * * kinshipDegrees, int32_t degree, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x02254DF0, void, PuppetMaster_AssignKinshipsUpRecursive, (PuppetMaster * __this, Int32__Array * * kinshipDegrees, int32_t degree, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x022552A0, int32_t, PuppetMaster_GetMuscleIndexLowLevel, (PuppetMaster * __this, ConfigurableJoint * joint, MethodInfo * method)); DO_APP_FUNC(0x022554A0, bool, PuppetMaster_IsValid, (PuppetMaster * __this, bool log, MethodInfo * method)); DO_APP_FUNC(0x02256180, bool, PuppetMaster_CheckMassVariation, (PuppetMaster * __this, float threshold, bool log, MethodInfo * method)); @@ -98833,7 +110609,7 @@ DO_APP_FUNC(0x0084C240, void, PuppetMaster_MuscleDelegate__ctor, (PuppetMaster_M DO_APP_FUNC(0x003EE650, void, PuppetMaster_MuscleDelegate_Invoke, (PuppetMaster_MuscleDelegate * __this, Muscle * muscle, MethodInfo * method)); DO_APP_FUNC(0x003EEA20, IAsyncResult *, PuppetMaster_MuscleDelegate_BeginInvoke, (PuppetMaster_MuscleDelegate * __this, Muscle * muscle, AsyncCallback * callback, Object * object, MethodInfo * method)); DO_APP_FUNC(0x003BA270, void, PuppetMaster_MuscleDelegate_EndInvoke, (PuppetMaster_MuscleDelegate * __this, IAsyncResult * result, MethodInfo * method)); -DO_APP_FUNC(0x02256C60, void, PuppetMaster_StateSettings__ctor, (PuppetMaster_StateSettings__Boxed * __this, float killDuration, float deadMuscleWeight, float deadMuscleDamper, float maxFreezeSqrVelocity, bool freezePermanently, bool enableAngularLimitsOnKill, bool enableInternalCollisionsOnKill, MethodInfo * method)); +DO_APP_FUNC(0x02256C60, void, PuppetMaster_StateSettings__ctor, (PuppetMaster_StateSettings * __this, float killDuration, float deadMuscleWeight, float deadMuscleDamper, float maxFreezeSqrVelocity, bool freezePermanently, bool enableAngularLimitsOnKill, bool enableInternalCollisionsOnKill, MethodInfo * method)); DO_APP_FUNC(0x02256CA0, PuppetMaster_StateSettings, PuppetMaster_StateSettings_get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, PuppetMaster_DisabledToActive_d_171__ctor, (PuppetMaster_DisabledToActive_d_171 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, PuppetMaster_DisabledToActive_d_171_System_IDisposable_Dispose, (PuppetMaster_DisabledToActive_d_171 * __this, MethodInfo * method)); @@ -99027,11 +110803,11 @@ DO_APP_FUNC(0x02273390, Vector3, BipedRagdollCreator_GetUpperArmToHeadCentroid, DO_APP_FUNC(0x022734F0, Vector3, BipedRagdollCreator_GetUpperArmCentroid, (BipedRagdollReferences r, MethodInfo * method)); DO_APP_FUNC(0x02273630, void, BipedRagdollCreator__ctor, (BipedRagdollCreator * __this, MethodInfo * method)); DO_APP_FUNC(0x022736F0, BipedRagdollCreator_Options, BipedRagdollCreator_Options_get_Default, (MethodInfo * method)); -DO_APP_FUNC(0x02273740, bool, BipedRagdollReferences_IsValid, (BipedRagdollReferences__Boxed * __this, String * msg, MethodInfo * method)); -DO_APP_FUNC(0x022746D0, bool, BipedRagdollReferences_IsChildRecursive, (BipedRagdollReferences__Boxed * __this, Transform * t, Transform * parent, MethodInfo * method)); -DO_APP_FUNC(0x02274A20, bool, BipedRagdollReferences_IsEmpty, (BipedRagdollReferences__Boxed * __this, bool considerRoot, MethodInfo * method)); -DO_APP_FUNC(0x02275400, bool, BipedRagdollReferences_Contains, (BipedRagdollReferences__Boxed * __this, Transform * t, bool ignoreRoot, MethodInfo * method)); -DO_APP_FUNC(0x02276360, Transform__Array *, BipedRagdollReferences_GetRagdollTransforms, (BipedRagdollReferences__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02273740, bool, BipedRagdollReferences_IsValid, (BipedRagdollReferences * __this, String * * msg, MethodInfo * method)); +DO_APP_FUNC(0x022746D0, bool, BipedRagdollReferences_IsChildRecursive, (BipedRagdollReferences * __this, Transform * t, Transform * parent, MethodInfo * method)); +DO_APP_FUNC(0x02274A20, bool, BipedRagdollReferences_IsEmpty, (BipedRagdollReferences * __this, bool considerRoot, MethodInfo * method)); +DO_APP_FUNC(0x02275400, bool, BipedRagdollReferences_Contains, (BipedRagdollReferences * __this, Transform * t, bool ignoreRoot, MethodInfo * method)); +DO_APP_FUNC(0x02276360, Transform__Array *, BipedRagdollReferences_GetRagdollTransforms, (BipedRagdollReferences * __this, MethodInfo * method)); DO_APP_FUNC(0x022767E0, BipedRagdollReferences, BipedRagdollReferences_FromAvatar, (Animator * animator, MethodInfo * method)); DO_APP_FUNC(0x02276F30, BipedRagdollReferences, BipedRagdollReferences_FromBipedReferences, (BipedReferences * biped, MethodInfo * method)); DO_APP_FUNC(0x02277510, void, FixFootColliders_Fix, (FixFootColliders * __this, MethodInfo * method)); @@ -99041,7 +110817,7 @@ DO_APP_FUNC(0x022778D0, void, JointConverter_HingeToConfigurable, (HingeJoint * DO_APP_FUNC(0x02278110, void, JointConverter_FixedToConfigurable, (FixedJoint * src, MethodInfo * method)); DO_APP_FUNC(0x02278440, void, JointConverter_SpringToConfigurable, (SpringJoint * src, MethodInfo * method)); DO_APP_FUNC(0x02278890, void, JointConverter_CharacterToConfigurable, (CharacterJoint * src, MethodInfo * method)); -DO_APP_FUNC(0x02279270, void, JointConverter_ConvertJoint, (ConfigurableJoint * conf, Joint * src, MethodInfo * method)); +DO_APP_FUNC(0x02279270, void, JointConverter_ConvertJoint, (ConfigurableJoint * * conf, Joint * src, MethodInfo * method)); DO_APP_FUNC(0x02279800, SoftJointLimit, JointConverter_ConvertToHighSoftJointLimit, (JointLimits src, JointSpring spring, bool useSpring, MethodInfo * method)); DO_APP_FUNC(0x02279830, SoftJointLimit, JointConverter_ConvertToLowSoftJointLimit, (JointLimits src, JointSpring spring, bool useSpring, MethodInfo * method)); DO_APP_FUNC(0x02279850, SoftJointLimitSpring, JointConverter_ConvertToSoftJointLimitSpring, (JointLimits src, JointSpring spring, bool useSpring, MethodInfo * method)); @@ -99053,17 +110829,17 @@ DO_APP_FUNC(0x0227A360, Collider *, RagdollCreator_CreateCollider, (Transform * DO_APP_FUNC(0x0227ADE0, void, RagdollCreator_CreateCollider_1, (Transform * t, Vector3 startPoint, Vector3 endPoint, RagdollCreator_ColliderType__Enum colliderType, float lengthOverlap, float width, float proportionAspect, Vector3 widthDirection, MethodInfo * method)); DO_APP_FUNC(0x0227B4C0, float, RagdollCreator_GetScaleF, (Transform * t, MethodInfo * method)); DO_APP_FUNC(0x0227B550, Vector3, RagdollCreator_Abs, (Vector3 v, MethodInfo * method)); -DO_APP_FUNC(0x0227B5A0, void, RagdollCreator_Vector3Abs, (Vector3 v, MethodInfo * method)); +DO_APP_FUNC(0x0227B5A0, void, RagdollCreator_Vector3Abs, (Vector3 * v, MethodInfo * method)); DO_APP_FUNC(0x021F6BC0, Vector3, RagdollCreator_DirectionIntToVector3, (int32_t dir, MethodInfo * method)); DO_APP_FUNC(0x021F6BC0, Vector3, RagdollCreator_DirectionToVector3, (RagdollCreator_Direction__Enum dir, MethodInfo * method)); DO_APP_FUNC(0x02266500, int32_t, RagdollCreator_DirectionVector3ToInt, (Vector3 dir, MethodInfo * method)); DO_APP_FUNC(0x0227B5D0, Vector3, RagdollCreator_GetLocalOrthoDirection, (Transform * transform, Vector3 worldDir, MethodInfo * method)); -DO_APP_FUNC(0x0227BAC0, Rigidbody *, RagdollCreator_GetConnectedBody, (Transform * bone, Transform__Array * bones, MethodInfo * method)); +DO_APP_FUNC(0x0227BAC0, Rigidbody *, RagdollCreator_GetConnectedBody, (Transform * bone, Transform__Array * * bones, MethodInfo * method)); DO_APP_FUNC(0x0227BF50, void, RagdollCreator_CreateJoint, (RagdollCreator_CreateJointParams p, MethodInfo * method)); DO_APP_FUNC(0x0227D380, SoftJointLimit, RagdollCreator_ToSoftJointLimit, (float limit, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, RagdollCreator__ctor, (RagdollCreator * __this, MethodInfo * method)); -DO_APP_FUNC(0x0227D390, void, RagdollCreator_CreateJointParams__ctor, (RagdollCreator_CreateJointParams__Boxed * __this, Rigidbody * rigidbody, Rigidbody * connectedBody, Transform * child, Vector3 worldSwingAxis, RagdollCreator_CreateJointParams_Limits limits, RagdollCreator_JointType__Enum type, MethodInfo * method)); -DO_APP_FUNC(0x003CAFE0, void, RagdollCreator_CreateJointParams_Limits__ctor, (RagdollCreator_CreateJointParams_Limits__Boxed * __this, float minSwing, float maxSwing, float swing2, float twist, MethodInfo * method)); +DO_APP_FUNC(0x0227D390, void, RagdollCreator_CreateJointParams__ctor, (RagdollCreator_CreateJointParams * __this, Rigidbody * rigidbody, Rigidbody * connectedBody, Transform * child, Vector3 worldSwingAxis, RagdollCreator_CreateJointParams_Limits limits, RagdollCreator_JointType__Enum type, MethodInfo * method)); +DO_APP_FUNC(0x003CAFE0, void, RagdollCreator_CreateJointParams_Limits__ctor, (RagdollCreator_CreateJointParams_Limits * __this, float minSwing, float maxSwing, float swing2, float twist, MethodInfo * method)); DO_APP_FUNC(0x0227D4C0, void, RagdollEditor_OpenUserManual, (RagdollEditor * __this, MethodInfo * method)); DO_APP_FUNC(0x0227D540, void, RagdollEditor_OpenScriptReference, (RagdollEditor * __this, MethodInfo * method)); DO_APP_FUNC(0x0227D5C0, void, RagdollEditor_OpenTutorial, (RagdollEditor * __this, MethodInfo * method)); @@ -99089,6 +110865,7 @@ DO_APP_FUNC(0x003AE050, void, DemonicPortal_OpenPortal_d_4_System_IDisposable_Di DO_APP_FUNC(0x030B4C60, bool, DemonicPortal_OpenPortal_d_4_MoveNext, (DemonicPortal_OpenPortal_d_4 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, DemonicPortal_OpenPortal_d_4_System_Collections_Generic_IEnumerator_System_Object__get_Current, (DemonicPortal_OpenPortal_d_4 * __this, MethodInfo * method)); DO_APP_FUNC(0x030B4DF0, void, DemonicPortal_OpenPortal_d_4_System_Collections_IEnumerator_Reset, (DemonicPortal_OpenPortal_d_4 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB4C8, DemonicPortal_OpenPortal_d_4_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, DemonicPortal_OpenPortal_d_4_System_Collections_IEnumerator_get_Current, (DemonicPortal_OpenPortal_d_4 * __this, MethodInfo * method)); DO_APP_FUNC(0x030B4E40, void, FlickeringLight_Start, (FlickeringLight * __this, MethodInfo * method)); DO_APP_FUNC(0x030B4E90, void, FlickeringLight_Update, (FlickeringLight * __this, MethodInfo * method)); @@ -99140,6 +110917,7 @@ DO_APP_FUNC(0x030BC2B0, void, DynamicBone_AddPendingWork, (DynamicBone * db, Met DO_APP_FUNC(0x030BC330, void, DynamicBone_AddWorkToQueue, (DynamicBone * db, MethodInfo * method)); DO_APP_FUNC(0x030BC420, DynamicBone *, DynamicBone_GetWorkFromQueue, (MethodInfo * method)); DO_APP_FUNC(0x030BC4E0, void, DynamicBone_ThreadProc, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB2D0, DynamicBone_ThreadProc__MethodInfo); DO_APP_FUNC(0x030BC6D0, void, DynamicBone_InitThreadPool, (MethodInfo * method)); DO_APP_FUNC(0x030BCA70, void, DynamicBone_ExecuteWorks, (MethodInfo * method)); DO_APP_FUNC(0x030BD070, void, DynamicBone__ctor, (DynamicBone * __this, MethodInfo * method)); @@ -99148,15 +110926,16 @@ DO_APP_FUNC(0x003AE050, void, DynamicBone_Particle__ctor, (DynamicBone_Particle DO_APP_FUNC(0x030BD420, void, DynamicBone_ParticleTree__ctor, (DynamicBone_ParticleTree * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, DynamicBone_c_DisplayClass72_0__ctor, (DynamicBone_c_DisplayClass72_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x030BD4F0, bool, DynamicBone_c_DisplayClass72_0__SetupParticles_b__0, (DynamicBone_c_DisplayClass72_0 * __this, DynamicBone_ParticleTree * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB430, DynamicBone_c_DisplayClass72_0__SetupParticles_b__0__MethodInfo); DO_APP_FUNC(0x030BD6A0, void, DynamicBoneCollider_OnValidate, (DynamicBoneCollider * __this, MethodInfo * method)); DO_APP_FUNC(0x030BD6D0, void, DynamicBoneCollider_Prepare, (DynamicBoneCollider * __this, MethodInfo * method)); -DO_APP_FUNC(0x030BDDE0, bool, DynamicBoneCollider_Collide, (DynamicBoneCollider * __this, Vector3 particlePosition, float particleRadius, MethodInfo * method)); -DO_APP_FUNC(0x030BE170, bool, DynamicBoneCollider_OutsideSphere, (Vector3 particlePosition, float particleRadius, Vector3 sphereCenter, float sphereRadius, MethodInfo * method)); -DO_APP_FUNC(0x030BE280, bool, DynamicBoneCollider_InsideSphere, (Vector3 particlePosition, float particleRadius, Vector3 sphereCenter, float sphereRadius, MethodInfo * method)); -DO_APP_FUNC(0x030BE390, bool, DynamicBoneCollider_OutsideCapsule, (Vector3 particlePosition, float particleRadius, Vector3 capsuleP0, Vector3 capsuleP1, float capsuleRadius, float dirlen, MethodInfo * method)); -DO_APP_FUNC(0x030BE6B0, bool, DynamicBoneCollider_InsideCapsule, (Vector3 particlePosition, float particleRadius, Vector3 capsuleP0, Vector3 capsuleP1, float capsuleRadius, float dirlen, MethodInfo * method)); -DO_APP_FUNC(0x030BE9B0, bool, DynamicBoneCollider_OutsideCapsule2, (Vector3 particlePosition, float particleRadius, Vector3 capsuleP0, Vector3 capsuleP1, float capsuleRadius0, float capsuleRadius1, float dirlen, MethodInfo * method)); -DO_APP_FUNC(0x030BED90, bool, DynamicBoneCollider_InsideCapsule2, (Vector3 particlePosition, float particleRadius, Vector3 capsuleP0, Vector3 capsuleP1, float capsuleRadius0, float capsuleRadius1, float dirlen, MethodInfo * method)); +DO_APP_FUNC(0x030BDDE0, bool, DynamicBoneCollider_Collide, (DynamicBoneCollider * __this, Vector3 * particlePosition, float particleRadius, MethodInfo * method)); +DO_APP_FUNC(0x030BE170, bool, DynamicBoneCollider_OutsideSphere, (Vector3 * particlePosition, float particleRadius, Vector3 sphereCenter, float sphereRadius, MethodInfo * method)); +DO_APP_FUNC(0x030BE280, bool, DynamicBoneCollider_InsideSphere, (Vector3 * particlePosition, float particleRadius, Vector3 sphereCenter, float sphereRadius, MethodInfo * method)); +DO_APP_FUNC(0x030BE390, bool, DynamicBoneCollider_OutsideCapsule, (Vector3 * particlePosition, float particleRadius, Vector3 capsuleP0, Vector3 capsuleP1, float capsuleRadius, float dirlen, MethodInfo * method)); +DO_APP_FUNC(0x030BE6B0, bool, DynamicBoneCollider_InsideCapsule, (Vector3 * particlePosition, float particleRadius, Vector3 capsuleP0, Vector3 capsuleP1, float capsuleRadius, float dirlen, MethodInfo * method)); +DO_APP_FUNC(0x030BE9B0, bool, DynamicBoneCollider_OutsideCapsule2, (Vector3 * particlePosition, float particleRadius, Vector3 capsuleP0, Vector3 capsuleP1, float capsuleRadius0, float capsuleRadius1, float dirlen, MethodInfo * method)); +DO_APP_FUNC(0x030BED90, bool, DynamicBoneCollider_InsideCapsule2, (Vector3 * particlePosition, float particleRadius, Vector3 capsuleP0, Vector3 capsuleP1, float capsuleRadius0, float capsuleRadius1, float dirlen, MethodInfo * method)); DO_APP_FUNC(0x030BF150, void, DynamicBoneCollider_OnDrawGizmosSelected, (DynamicBoneCollider * __this, MethodInfo * method)); DO_APP_FUNC(0x030BF390, void, DynamicBoneCollider_DrawCapsule, (Vector3 c0, Vector3 c1, float radius0, float radius1, MethodInfo * method)); DO_APP_FUNC(0x030BF4F0, void, DynamicBoneCollider__ctor, (DynamicBoneCollider * __this, MethodInfo * method)); @@ -99164,11 +110943,11 @@ DO_APP_FUNC(0x0098C880, void, DynamicBoneColliderBase_set_PrepareFrame, (Dynamic DO_APP_FUNC(0x0098C870, int32_t, DynamicBoneColliderBase_get_PrepareFrame, (DynamicBoneColliderBase * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, DynamicBoneColliderBase_Start, (DynamicBoneColliderBase * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, DynamicBoneColliderBase_Prepare, (DynamicBoneColliderBase * __this, MethodInfo * method)); -DO_APP_FUNC(0x0041AF00, bool, DynamicBoneColliderBase_Collide, (DynamicBoneColliderBase * __this, Vector3 particlePosition, float particleRadius, MethodInfo * method)); +DO_APP_FUNC(0x0041AF00, bool, DynamicBoneColliderBase_Collide, (DynamicBoneColliderBase * __this, Vector3 * particlePosition, float particleRadius, MethodInfo * method)); DO_APP_FUNC(0x030BF500, void, DynamicBoneColliderBase__ctor, (DynamicBoneColliderBase * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, DynamicBonePlaneCollider_OnValidate, (DynamicBonePlaneCollider * __this, MethodInfo * method)); DO_APP_FUNC(0x030BF590, void, DynamicBonePlaneCollider_Prepare, (DynamicBonePlaneCollider * __this, MethodInfo * method)); -DO_APP_FUNC(0x030BF8E0, bool, DynamicBonePlaneCollider_Collide, (DynamicBonePlaneCollider * __this, Vector3 particlePosition, float particleRadius, MethodInfo * method)); +DO_APP_FUNC(0x030BF8E0, bool, DynamicBonePlaneCollider_Collide, (DynamicBonePlaneCollider * __this, Vector3 * particlePosition, float particleRadius, MethodInfo * method)); DO_APP_FUNC(0x030BF980, void, DynamicBonePlaneCollider_OnDrawGizmosSelected, (DynamicBonePlaneCollider * __this, MethodInfo * method)); DO_APP_FUNC(0x030BFC10, void, DynamicBonePlaneCollider__ctor, (DynamicBonePlaneCollider * __this, MethodInfo * method)); DO_APP_FUNC(0x030BFC20, IEnumerator *, DecalDestroyer_Start, (DecalDestroyer * __this, MethodInfo * method)); @@ -99178,6 +110957,7 @@ DO_APP_FUNC(0x003AE050, void, DecalDestroyer_Start_d_1_System_IDisposable_Dispos DO_APP_FUNC(0x030BFCC0, bool, DecalDestroyer_Start_d_1_MoveNext, (DecalDestroyer_Start_d_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, DecalDestroyer_Start_d_1_System_Collections_Generic_IEnumerator_System_Object__get_Current, (DecalDestroyer_Start_d_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x030BFE30, void, DecalDestroyer_Start_d_1_System_Collections_IEnumerator_Reset, (DecalDestroyer_Start_d_1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB258, DecalDestroyer_Start_d_1_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, DecalDestroyer_Start_d_1_System_Collections_IEnumerator_get_Current, (DecalDestroyer_Start_d_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x030BFE80, void, ExtinguishableFire_Start, (ExtinguishableFire * __this, MethodInfo * method)); DO_APP_FUNC(0x030BFF70, void, ExtinguishableFire_Extinguish, (ExtinguishableFire * __this, MethodInfo * method)); @@ -99189,12 +110969,14 @@ DO_APP_FUNC(0x003AE050, void, ExtinguishableFire_Extinguishing_d_6_System_IDispo DO_APP_FUNC(0x030C0170, bool, ExtinguishableFire_Extinguishing_d_6_MoveNext, (ExtinguishableFire_Extinguishing_d_6 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, ExtinguishableFire_Extinguishing_d_6_System_Collections_Generic_IEnumerator_System_Object__get_Current, (ExtinguishableFire_Extinguishing_d_6 * __this, MethodInfo * method)); DO_APP_FUNC(0x030C05E0, void, ExtinguishableFire_Extinguishing_d_6_System_Collections_IEnumerator_Reset, (ExtinguishableFire_Extinguishing_d_6 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB280, ExtinguishableFire_Extinguishing_d_6_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, ExtinguishableFire_Extinguishing_d_6_System_Collections_IEnumerator_get_Current, (ExtinguishableFire_Extinguishing_d_6 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, ExtinguishableFire_StartingFire_d_7__ctor, (ExtinguishableFire_StartingFire_d_7 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ExtinguishableFire_StartingFire_d_7_System_IDisposable_Dispose, (ExtinguishableFire_StartingFire_d_7 * __this, MethodInfo * method)); DO_APP_FUNC(0x030C0630, bool, ExtinguishableFire_StartingFire_d_7_MoveNext, (ExtinguishableFire_StartingFire_d_7 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, ExtinguishableFire_StartingFire_d_7_System_Collections_Generic_IEnumerator_System_Object__get_Current, (ExtinguishableFire_StartingFire_d_7 * __this, MethodInfo * method)); DO_APP_FUNC(0x030C0A90, void, ExtinguishableFire_StartingFire_d_7_System_Collections_IEnumerator_Reset, (ExtinguishableFire_StartingFire_d_7 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB288, ExtinguishableFire_StartingFire_d_7_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, ExtinguishableFire_StartingFire_d_7_System_Collections_IEnumerator_get_Current, (ExtinguishableFire_StartingFire_d_7 * __this, MethodInfo * method)); DO_APP_FUNC(0x030C0AE0, void, GunAim_Start, (GunAim * __this, MethodInfo * method)); DO_APP_FUNC(0x030C0B70, void, GunAim_Update, (GunAim * __this, MethodInfo * method)); @@ -99290,6 +111072,7 @@ DO_APP_FUNC(0x030CA120, void, ExplosionsShaderQueue_OnDisable, (ExplosionsShader DO_APP_FUNC(0x01CEBDE0, void, ExplosionsShaderQueue__ctor, (ExplosionsShaderQueue * __this, MethodInfo * method)); DO_APP_FUNC(0x030CA2C0, void, ExplosionsSpriteSheetAnimation_Start, (ExplosionsSpriteSheetAnimation * __this, MethodInfo * method)); DO_APP_FUNC(0x030CA370, void, ExplosionsSpriteSheetAnimation_InitDefaultVariables, (ExplosionsSpriteSheetAnimation * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB120, ExplosionsSpriteSheetAnimation_InitDefaultVariables__MethodInfo); DO_APP_FUNC(0x030CA850, void, ExplosionsSpriteSheetAnimation_Play, (ExplosionsSpriteSheetAnimation * __this, MethodInfo * method)); DO_APP_FUNC(0x030CA8E0, void, ExplosionsSpriteSheetAnimation_PlayDelay, (ExplosionsSpriteSheetAnimation * __this, MethodInfo * method)); DO_APP_FUNC(0x030CA910, void, ExplosionsSpriteSheetAnimation_OnEnable, (ExplosionsSpriteSheetAnimation * __this, MethodInfo * method)); @@ -99304,6 +111087,7 @@ DO_APP_FUNC(0x003AE050, void, ExplosionsSpriteSheetAnimation_UpdateCorutine_d_26 DO_APP_FUNC(0x030CB250, bool, ExplosionsSpriteSheetAnimation_UpdateCorutine_d_26_MoveNext, (ExplosionsSpriteSheetAnimation_UpdateCorutine_d_26 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, ExplosionsSpriteSheetAnimation_UpdateCorutine_d_26_System_Collections_Generic_IEnumerator_System_Object__get_Current, (ExplosionsSpriteSheetAnimation_UpdateCorutine_d_26 * __this, MethodInfo * method)); DO_APP_FUNC(0x030CB4B0, void, ExplosionsSpriteSheetAnimation_UpdateCorutine_d_26_System_Collections_IEnumerator_Reset, (ExplosionsSpriteSheetAnimation_UpdateCorutine_d_26 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB0A8, ExplosionsSpriteSheetAnimation_UpdateCorutine_d_26_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, ExplosionsSpriteSheetAnimation_UpdateCorutine_d_26_System_Collections_IEnumerator_get_Current, (ExplosionsSpriteSheetAnimation_UpdateCorutine_d_26 * __this, MethodInfo * method)); DO_APP_FUNC(0x030CB500, Transform *, BFX_DemoTest_GetNearestObject, (BFX_DemoTest * __this, Transform * hit, Vector3 hitPos, MethodInfo * method)); DO_APP_FUNC(0x030CB830, void, BFX_DemoTest_Update, (BFX_DemoTest * __this, MethodInfo * method)); @@ -99318,6 +111102,7 @@ DO_APP_FUNC(0x030CCE80, void, BFX_DecaGizmo_OnDrawGizmos, (BFX_DecaGizmo * __thi DO_APP_FUNC(0x003AE000, void, BFX_DecaGizmo__ctor, (BFX_DecaGizmo * __this, MethodInfo * method)); DO_APP_FUNC(0x030CD6B0, void, BFX_DecalSettings_Awake, (BFX_DecalSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x030CDB50, void, BFX_DecalSettings_ShaderCurve_OnAnimationFinished, (BFX_DecalSettings * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB0D8, BFX_DecalSettings_ShaderCurve_OnAnimationFinished__MethodInfo); DO_APP_FUNC(0x030CDBE0, void, BFX_DecalSettings_Update, (BFX_DecalSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x030CDD30, void, BFX_DecalSettings_InitializePosition, (BFX_DecalSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x030CE990, void, BFX_DecalSettings_OnDisable, (BFX_DecalSettings * __this, MethodInfo * method)); @@ -99345,20 +111130,23 @@ DO_APP_FUNC(0x030D1C10, void, BFX_ShaderProperies_Update, (BFX_ShaderProperies * DO_APP_FUNC(0x030D2250, void, BFX_ShaderProperies__ctor, (BFX_ShaderProperies * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCDE0, void, LeanAudioStream__ctor, (LeanAudioStream * __this, Single__Array * audioArr, MethodInfo * method)); DO_APP_FUNC(0x030D2320, void, LeanAudioStream_OnAudioRead, (LeanAudioStream * __this, Single__Array * data, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC580, LeanAudioStream_OnAudioRead__MethodInfo); DO_APP_FUNC(0x003BCD60, void, LeanAudioStream_OnAudioSetPosition, (LeanAudioStream * __this, int32_t newPosition, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC590, LeanAudioStream_OnAudioSetPosition__MethodInfo); DO_APP_FUNC(0x030D2380, LeanAudioOptions *, LeanAudio_options, (MethodInfo * method)); DO_APP_FUNC(0x030D2570, LeanAudioStream *, LeanAudio_createAudioStream, (AnimationCurve * volume, AnimationCurve * frequency, LeanAudioOptions * options, MethodInfo * method)); DO_APP_FUNC(0x030D2640, AudioClip *, LeanAudio_createAudio, (AnimationCurve * volume, AnimationCurve * frequency, LeanAudioOptions * options, MethodInfo * method)); DO_APP_FUNC(0x030D2710, int32_t, LeanAudio_createAudioWave, (AnimationCurve * volume, AnimationCurve * frequency, LeanAudioOptions * options, MethodInfo * method)); DO_APP_FUNC(0x030D2C90, AudioClip *, LeanAudio_createAudioFromWave, (int32_t waveLength, LeanAudioOptions * options, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, LeanAudio_OnAudioSetPosition, (int32_t newPosition, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC5A0, LeanAudio_OnAudioSetPosition__MethodInfo); DO_APP_FUNC(0x030D33E0, AudioClip *, LeanAudio_generateAudioFromCurve, (AnimationCurve * curve, int32_t frequencyRate, MethodInfo * method)); DO_APP_FUNC(0x030D3620, AudioSource *, LeanAudio_play, (AudioClip * audio, float volume, MethodInfo * method)); DO_APP_FUNC(0x030D3730, AudioSource *, LeanAudio_play_1, (AudioClip * audio, MethodInfo * method)); DO_APP_FUNC(0x030D37E0, AudioSource *, LeanAudio_play_2, (AudioClip * audio, Vector3 pos, MethodInfo * method)); DO_APP_FUNC(0x030D3860, AudioSource *, LeanAudio_play_3, (AudioClip * audio, Vector3 pos, float volume, MethodInfo * method)); DO_APP_FUNC(0x030D3980, AudioSource *, LeanAudio_playClipAt, (AudioClip * clip, Vector3 pos, MethodInfo * method)); -DO_APP_FUNC(0x030D3C30, void, LeanAudio_printOutAudioClip, (AudioClip * audioClip, AnimationCurve * curve, float scaleX, MethodInfo * method)); +DO_APP_FUNC(0x030D3C30, void, LeanAudio_printOutAudioClip, (AudioClip * audioClip, AnimationCurve * * curve, float scaleX, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, LeanAudio__ctor, (LeanAudio * __this, MethodInfo * method)); DO_APP_FUNC(0x030D3ED0, void, LeanAudio__cctor, (MethodInfo * method)); DO_APP_FUNC(0x030D3F40, void, LeanAudioOptions__ctor, (LeanAudioOptions * __this, MethodInfo * method)); @@ -99371,18 +111159,18 @@ DO_APP_FUNC(0x030D3F90, LeanAudioOptions *, LeanAudioOptions_setWaveNoise, (Lean DO_APP_FUNC(0x030D3FA0, LeanAudioOptions *, LeanAudioOptions_setWaveStyle, (LeanAudioOptions * __this, LeanAudioOptions_LeanAudioWaveStyle__Enum style, MethodInfo * method)); DO_APP_FUNC(0x030D3FB0, LeanAudioOptions *, LeanAudioOptions_setWaveNoiseScale, (LeanAudioOptions * __this, float waveScale, MethodInfo * method)); DO_APP_FUNC(0x030D3FC0, LeanAudioOptions *, LeanAudioOptions_setWaveNoiseInfluence, (LeanAudioOptions * __this, float influence, MethodInfo * method)); -DO_APP_FUNC(0x030D3FD0, float, LeanSmooth_damp, (float current, float target, float currentVelocity, float smoothTime, float maxSpeed, float deltaTime, MethodInfo * method)); -DO_APP_FUNC(0x030D41A0, Vector3, LeanSmooth_damp_1, (Vector3 current, Vector3 target, Vector3 currentVelocity, float smoothTime, float maxSpeed, float deltaTime, MethodInfo * method)); -DO_APP_FUNC(0x030D42D0, Color, LeanSmooth_damp_2, (Color current, Color target, Color currentVelocity, float smoothTime, float maxSpeed, float deltaTime, MethodInfo * method)); -DO_APP_FUNC(0x030D4440, float, LeanSmooth_spring, (float current, float target, float currentVelocity, float smoothTime, float maxSpeed, float deltaTime, float friction, float accelRate, MethodInfo * method)); -DO_APP_FUNC(0x030D4560, Vector3, LeanSmooth_spring_1, (Vector3 current, Vector3 target, Vector3 currentVelocity, float smoothTime, float maxSpeed, float deltaTime, float friction, float accelRate, MethodInfo * method)); -DO_APP_FUNC(0x030D46E0, Color, LeanSmooth_spring_2, (Color current, Color target, Color currentVelocity, float smoothTime, float maxSpeed, float deltaTime, float friction, float accelRate, MethodInfo * method)); +DO_APP_FUNC(0x030D3FD0, float, LeanSmooth_damp, (float current, float target, float * currentVelocity, float smoothTime, float maxSpeed, float deltaTime, MethodInfo * method)); +DO_APP_FUNC(0x030D41A0, Vector3, LeanSmooth_damp_1, (Vector3 current, Vector3 target, Vector3 * currentVelocity, float smoothTime, float maxSpeed, float deltaTime, MethodInfo * method)); +DO_APP_FUNC(0x030D42D0, Color, LeanSmooth_damp_2, (Color current, Color target, Color * currentVelocity, float smoothTime, float maxSpeed, float deltaTime, MethodInfo * method)); +DO_APP_FUNC(0x030D4440, float, LeanSmooth_spring, (float current, float target, float * currentVelocity, float smoothTime, float maxSpeed, float deltaTime, float friction, float accelRate, MethodInfo * method)); +DO_APP_FUNC(0x030D4560, Vector3, LeanSmooth_spring_1, (Vector3 current, Vector3 target, Vector3 * currentVelocity, float smoothTime, float maxSpeed, float deltaTime, float friction, float accelRate, MethodInfo * method)); +DO_APP_FUNC(0x030D46E0, Color, LeanSmooth_spring_2, (Color current, Color target, Color * currentVelocity, float smoothTime, float maxSpeed, float deltaTime, float friction, float accelRate, MethodInfo * method)); DO_APP_FUNC(0x030D48B0, float, LeanSmooth_linear, (float current, float target, float moveSpeed, float deltaTime, MethodInfo * method)); DO_APP_FUNC(0x030D4980, Vector3, LeanSmooth_linear_1, (Vector3 current, Vector3 target, float moveSpeed, float deltaTime, MethodInfo * method)); DO_APP_FUNC(0x030D4A60, Color, LeanSmooth_linear_2, (Color current, Color target, float moveSpeed, MethodInfo * method)); -DO_APP_FUNC(0x030D4B70, float, LeanSmooth_bounceOut, (float current, float target, float currentVelocity, float smoothTime, float maxSpeed, float deltaTime, float friction, float accelRate, float hitDamping, MethodInfo * method)); -DO_APP_FUNC(0x030D4CC0, Vector3, LeanSmooth_bounceOut_1, (Vector3 current, Vector3 target, Vector3 currentVelocity, float smoothTime, float maxSpeed, float deltaTime, float friction, float accelRate, float hitDamping, MethodInfo * method)); -DO_APP_FUNC(0x030D4E60, Color, LeanSmooth_bounceOut_2, (Color current, Color target, Color currentVelocity, float smoothTime, float maxSpeed, float deltaTime, float friction, float accelRate, float hitDamping, MethodInfo * method)); +DO_APP_FUNC(0x030D4B70, float, LeanSmooth_bounceOut, (float current, float target, float * currentVelocity, float smoothTime, float maxSpeed, float deltaTime, float friction, float accelRate, float hitDamping, MethodInfo * method)); +DO_APP_FUNC(0x030D4CC0, Vector3, LeanSmooth_bounceOut_1, (Vector3 current, Vector3 target, Vector3 * currentVelocity, float smoothTime, float maxSpeed, float deltaTime, float friction, float accelRate, float hitDamping, MethodInfo * method)); +DO_APP_FUNC(0x030D4E60, Color, LeanSmooth_bounceOut_2, (Color current, Color target, Color * currentVelocity, float smoothTime, float maxSpeed, float deltaTime, float friction, float accelRate, float hitDamping, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, LeanSmooth__ctor, (LeanSmooth * __this, MethodInfo * method)); DO_APP_FUNC(0x030D5060, void, LeanTester_Start, (LeanTester * __this, MethodInfo * method)); DO_APP_FUNC(0x030D5110, IEnumerator *, LeanTester_timeoutCheck, (LeanTester * __this, MethodInfo * method)); @@ -99392,6 +111180,7 @@ DO_APP_FUNC(0x003AE050, void, LeanTester_timeoutCheck_d_2_System_IDisposable_Dis DO_APP_FUNC(0x030D5200, bool, LeanTester_timeoutCheck_d_2_MoveNext, (LeanTester_timeoutCheck_d_2 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, LeanTester_timeoutCheck_d_2_System_Collections_Generic_IEnumerator_System_Object__get_Current, (LeanTester_timeoutCheck_d_2 * __this, MethodInfo * method)); DO_APP_FUNC(0x030D5420, void, LeanTester_timeoutCheck_d_2_System_Collections_IEnumerator_Reset, (LeanTester_timeoutCheck_d_2 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC510, LeanTester_timeoutCheck_d_2_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, LeanTester_timeoutCheck_d_2_System_Collections_IEnumerator_get_Current, (LeanTester_timeoutCheck_d_2 * __this, MethodInfo * method)); DO_APP_FUNC(0x030D5470, void, LeanTest_debug, (String * name, bool didPass, String * failExplaination, MethodInfo * method)); DO_APP_FUNC(0x030D54E0, void, LeanTest_expect, (bool didPass, String * definition, String * failExplaination, MethodInfo * method)); @@ -99412,6 +111201,7 @@ DO_APP_FUNC(0x030D6AB0, void, LeanTween_init_2, (int32_t maxSimultaneousTweens, DO_APP_FUNC(0x030D73F0, void, LeanTween_reset, (MethodInfo * method)); DO_APP_FUNC(0x030D7650, void, LeanTween_Update, (LeanTween * __this, MethodInfo * method)); DO_APP_FUNC(0x030D76A0, void, LeanTween_onLevelWasLoaded54, (Scene scene, LoadSceneMode__Enum mode, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC4F8, LeanTween_onLevelWasLoaded54__MethodInfo); DO_APP_FUNC(0x030D7760, void, LeanTween_internalOnLevelWasLoaded, (int32_t lvl, MethodInfo * method)); DO_APP_FUNC(0x030D77B0, void, LeanTween_update, (MethodInfo * method)); DO_APP_FUNC(0x030D7F70, void, LeanTween_removeTween, (int32_t i, int32_t uniqueId, MethodInfo * method)); @@ -99582,48 +111372,88 @@ DO_APP_FUNC(0x003AE000, void, LeanTween__ctor, (LeanTween * __this, MethodInfo * DO_APP_FUNC(0x030EA650, void, LeanTween__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, LeanTween_c_DisplayClass193_0__ctor, (LeanTween_c_DisplayClass193_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x030EACE0, void, LeanTween_c_DisplayClass193_0__followDamp_b__0, (LeanTween_c_DisplayClass193_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC3D8, LeanTween_c_DisplayClass193_0__followDamp_b__0__MethodInfo); DO_APP_FUNC(0x030EAFD0, void, LeanTween_c_DisplayClass193_0__followDamp_b__1, (LeanTween_c_DisplayClass193_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC3F0, LeanTween_c_DisplayClass193_0__followDamp_b__1__MethodInfo); DO_APP_FUNC(0x030EB2C0, void, LeanTween_c_DisplayClass193_0__followDamp_b__2, (LeanTween_c_DisplayClass193_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC3E8, LeanTween_c_DisplayClass193_0__followDamp_b__2__MethodInfo); DO_APP_FUNC(0x030EB490, void, LeanTween_c_DisplayClass193_0__followDamp_b__3, (LeanTween_c_DisplayClass193_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC3C0, LeanTween_c_DisplayClass193_0__followDamp_b__3__MethodInfo); DO_APP_FUNC(0x030EB660, void, LeanTween_c_DisplayClass193_0__followDamp_b__4, (LeanTween_c_DisplayClass193_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC3B8, LeanTween_c_DisplayClass193_0__followDamp_b__4__MethodInfo); DO_APP_FUNC(0x030EB830, void, LeanTween_c_DisplayClass193_0__followDamp_b__5, (LeanTween_c_DisplayClass193_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC3D0, LeanTween_c_DisplayClass193_0__followDamp_b__5__MethodInfo); DO_APP_FUNC(0x030EBA00, void, LeanTween_c_DisplayClass193_0__followDamp_b__6, (LeanTween_c_DisplayClass193_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC3C8, LeanTween_c_DisplayClass193_0__followDamp_b__6__MethodInfo); DO_APP_FUNC(0x030EBBD0, void, LeanTween_c_DisplayClass193_0__followDamp_b__7, (LeanTween_c_DisplayClass193_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC400, LeanTween_c_DisplayClass193_0__followDamp_b__7__MethodInfo); DO_APP_FUNC(0x030EBDA0, void, LeanTween_c_DisplayClass193_0__followDamp_b__8, (LeanTween_c_DisplayClass193_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC3F8, LeanTween_c_DisplayClass193_0__followDamp_b__8__MethodInfo); DO_APP_FUNC(0x030EC050, void, LeanTween_c_DisplayClass193_0__followDamp_b__9, (LeanTween_c_DisplayClass193_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC410, LeanTween_c_DisplayClass193_0__followDamp_b__9__MethodInfo); DO_APP_FUNC(0x003AE050, void, LeanTween_c_DisplayClass194_0__ctor, (LeanTween_c_DisplayClass194_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x030EC4A0, void, LeanTween_c_DisplayClass194_0__followSpring_b__0, (LeanTween_c_DisplayClass194_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC438, LeanTween_c_DisplayClass194_0__followSpring_b__0__MethodInfo); DO_APP_FUNC(0x030EC720, void, LeanTween_c_DisplayClass194_0__followSpring_b__1, (LeanTween_c_DisplayClass194_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC448, LeanTween_c_DisplayClass194_0__followSpring_b__1__MethodInfo); DO_APP_FUNC(0x030EC960, void, LeanTween_c_DisplayClass194_0__followSpring_b__2, (LeanTween_c_DisplayClass194_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC440, LeanTween_c_DisplayClass194_0__followSpring_b__2__MethodInfo); DO_APP_FUNC(0x030ECB50, void, LeanTween_c_DisplayClass194_0__followSpring_b__3, (LeanTween_c_DisplayClass194_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC420, LeanTween_c_DisplayClass194_0__followSpring_b__3__MethodInfo); DO_APP_FUNC(0x030ECD40, void, LeanTween_c_DisplayClass194_0__followSpring_b__4, (LeanTween_c_DisplayClass194_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC418, LeanTween_c_DisplayClass194_0__followSpring_b__4__MethodInfo); DO_APP_FUNC(0x030ECF30, void, LeanTween_c_DisplayClass194_0__followSpring_b__5, (LeanTween_c_DisplayClass194_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC430, LeanTween_c_DisplayClass194_0__followSpring_b__5__MethodInfo); DO_APP_FUNC(0x030ED120, void, LeanTween_c_DisplayClass194_0__followSpring_b__6, (LeanTween_c_DisplayClass194_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC428, LeanTween_c_DisplayClass194_0__followSpring_b__6__MethodInfo); DO_APP_FUNC(0x030ED310, void, LeanTween_c_DisplayClass194_0__followSpring_b__7, (LeanTween_c_DisplayClass194_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC300, LeanTween_c_DisplayClass194_0__followSpring_b__7__MethodInfo); DO_APP_FUNC(0x030ED500, void, LeanTween_c_DisplayClass194_0__followSpring_b__8, (LeanTween_c_DisplayClass194_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC2F8, LeanTween_c_DisplayClass194_0__followSpring_b__8__MethodInfo); DO_APP_FUNC(0x030ED770, void, LeanTween_c_DisplayClass194_0__followSpring_b__9, (LeanTween_c_DisplayClass194_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC310, LeanTween_c_DisplayClass194_0__followSpring_b__9__MethodInfo); DO_APP_FUNC(0x003AE050, void, LeanTween_c_DisplayClass195_0__ctor, (LeanTween_c_DisplayClass195_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x030EDC30, void, LeanTween_c_DisplayClass195_0__followBounceOut_b__0, (LeanTween_c_DisplayClass195_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC2F0, LeanTween_c_DisplayClass195_0__followBounceOut_b__0__MethodInfo); DO_APP_FUNC(0x030EDEB0, void, LeanTween_c_DisplayClass195_0__followBounceOut_b__1, (LeanTween_c_DisplayClass195_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC2E8, LeanTween_c_DisplayClass195_0__followBounceOut_b__1__MethodInfo); DO_APP_FUNC(0x030EE130, void, LeanTween_c_DisplayClass195_0__followBounceOut_b__2, (LeanTween_c_DisplayClass195_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC340, LeanTween_c_DisplayClass195_0__followBounceOut_b__2__MethodInfo); DO_APP_FUNC(0x030EE320, void, LeanTween_c_DisplayClass195_0__followBounceOut_b__3, (LeanTween_c_DisplayClass195_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC338, LeanTween_c_DisplayClass195_0__followBounceOut_b__3__MethodInfo); DO_APP_FUNC(0x030EE510, void, LeanTween_c_DisplayClass195_0__followBounceOut_b__4, (LeanTween_c_DisplayClass195_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC350, LeanTween_c_DisplayClass195_0__followBounceOut_b__4__MethodInfo); DO_APP_FUNC(0x030EE700, void, LeanTween_c_DisplayClass195_0__followBounceOut_b__5, (LeanTween_c_DisplayClass195_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC348, LeanTween_c_DisplayClass195_0__followBounceOut_b__5__MethodInfo); DO_APP_FUNC(0x030EE8F0, void, LeanTween_c_DisplayClass195_0__followBounceOut_b__6, (LeanTween_c_DisplayClass195_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC320, LeanTween_c_DisplayClass195_0__followBounceOut_b__6__MethodInfo); DO_APP_FUNC(0x030EEAE0, void, LeanTween_c_DisplayClass195_0__followBounceOut_b__7, (LeanTween_c_DisplayClass195_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC318, LeanTween_c_DisplayClass195_0__followBounceOut_b__7__MethodInfo); DO_APP_FUNC(0x030EECD0, void, LeanTween_c_DisplayClass195_0__followBounceOut_b__8, (LeanTween_c_DisplayClass195_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC330, LeanTween_c_DisplayClass195_0__followBounceOut_b__8__MethodInfo); DO_APP_FUNC(0x030EEF50, void, LeanTween_c_DisplayClass195_0__followBounceOut_b__9, (LeanTween_c_DisplayClass195_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC328, LeanTween_c_DisplayClass195_0__followBounceOut_b__9__MethodInfo); DO_APP_FUNC(0x003AE050, void, LeanTween_c_DisplayClass196_0__ctor, (LeanTween_c_DisplayClass196_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x030EF440, void, LeanTween_c_DisplayClass196_0__followLinear_b__0, (LeanTween_c_DisplayClass196_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC380, LeanTween_c_DisplayClass196_0__followLinear_b__0__MethodInfo); DO_APP_FUNC(0x030EF690, void, LeanTween_c_DisplayClass196_0__followLinear_b__1, (LeanTween_c_DisplayClass196_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC360, LeanTween_c_DisplayClass196_0__followLinear_b__1__MethodInfo); DO_APP_FUNC(0x030EF8A0, void, LeanTween_c_DisplayClass196_0__followLinear_b__2, (LeanTween_c_DisplayClass196_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC358, LeanTween_c_DisplayClass196_0__followLinear_b__2__MethodInfo); DO_APP_FUNC(0x030EF9E0, void, LeanTween_c_DisplayClass196_0__followLinear_b__3, (LeanTween_c_DisplayClass196_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC370, LeanTween_c_DisplayClass196_0__followLinear_b__3__MethodInfo); DO_APP_FUNC(0x030EFB20, void, LeanTween_c_DisplayClass196_0__followLinear_b__4, (LeanTween_c_DisplayClass196_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC368, LeanTween_c_DisplayClass196_0__followLinear_b__4__MethodInfo); DO_APP_FUNC(0x030EFC60, void, LeanTween_c_DisplayClass196_0__followLinear_b__5, (LeanTween_c_DisplayClass196_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC3A0, LeanTween_c_DisplayClass196_0__followLinear_b__5__MethodInfo); DO_APP_FUNC(0x030EFDA0, void, LeanTween_c_DisplayClass196_0__followLinear_b__6, (LeanTween_c_DisplayClass196_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC398, LeanTween_c_DisplayClass196_0__followLinear_b__6__MethodInfo); DO_APP_FUNC(0x030EFEE0, void, LeanTween_c_DisplayClass196_0__followLinear_b__7, (LeanTween_c_DisplayClass196_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC3B0, LeanTween_c_DisplayClass196_0__followLinear_b__7__MethodInfo); DO_APP_FUNC(0x030F0020, void, LeanTween_c_DisplayClass196_0__followLinear_b__8, (LeanTween_c_DisplayClass196_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC3A8, LeanTween_c_DisplayClass196_0__followLinear_b__8__MethodInfo); DO_APP_FUNC(0x030F0230, void, LeanTween_c_DisplayClass196_0__followLinear_b__9, (LeanTween_c_DisplayClass196_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC390, LeanTween_c_DisplayClass196_0__followLinear_b__9__MethodInfo); DO_APP_FUNC(0x030F05B0, Vector3__Array *, LTUtility_reverse, (Vector3__Array * arr, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, LTUtility__ctor, (LTUtility * __this, MethodInfo * method)); DO_APP_FUNC(0x030F0650, void, LTBezier__ctor, (LTBezier * __this, Vector3 a, Vector3 b, Vector3 c, Vector3 d, float precision, MethodInfo * method)); @@ -99835,6 +111665,7 @@ DO_APP_FUNC(0x030FE740, LTDescr *, LTDescr_setMoveLocalX, (LTDescr * __this, Met DO_APP_FUNC(0x030FE8D0, LTDescr *, LTDescr_setMoveLocalY, (LTDescr * __this, MethodInfo * method)); DO_APP_FUNC(0x030FEA60, LTDescr *, LTDescr_setMoveLocalZ, (LTDescr * __this, MethodInfo * method)); DO_APP_FUNC(0x02D94140, void, LTDescr_initFromInternal, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEF98, LTDescr_initFromInternal__MethodInfo); DO_APP_FUNC(0x030FEBF0, LTDescr *, LTDescr_setOffset, (LTDescr * __this, Vector3 offset, MethodInfo * method)); DO_APP_FUNC(0x030FEC10, LTDescr *, LTDescr_setMoveCurved, (LTDescr * __this, MethodInfo * method)); DO_APP_FUNC(0x030FEDA0, LTDescr *, LTDescr_setMoveCurvedLocal, (LTDescr * __this, MethodInfo * method)); @@ -99861,6 +111692,7 @@ DO_APP_FUNC(0x03100CE0, LTDescr *, LTDescr_setCanvasMoveX, (LTDescr * __this, Me DO_APP_FUNC(0x03100E70, LTDescr *, LTDescr_setCanvasMoveY, (LTDescr * __this, MethodInfo * method)); DO_APP_FUNC(0x03101000, LTDescr *, LTDescr_setCanvasMoveZ, (LTDescr * __this, MethodInfo * method)); DO_APP_FUNC(0x03101190, void, LTDescr_initCanvasRotateAround, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEDE8, LTDescr_initCanvasRotateAround__MethodInfo); DO_APP_FUNC(0x03101230, LTDescr *, LTDescr_setCanvasRotateAround, (LTDescr * __this, MethodInfo * method)); DO_APP_FUNC(0x031013C0, LTDescr *, LTDescr_setCanvasRotateAroundLocal, (LTDescr * __this, MethodInfo * method)); DO_APP_FUNC(0x03101550, LTDescr *, LTDescr_setCanvasPlaySprite, (LTDescr * __this, MethodInfo * method)); @@ -99868,6 +111700,7 @@ DO_APP_FUNC(0x031016E0, LTDescr *, LTDescr_setCanvasMove, (LTDescr * __this, Met DO_APP_FUNC(0x03101870, LTDescr *, LTDescr_setCanvasScale, (LTDescr * __this, MethodInfo * method)); DO_APP_FUNC(0x03101A00, LTDescr *, LTDescr_setCanvasSizeDelta, (LTDescr * __this, MethodInfo * method)); DO_APP_FUNC(0x03101B90, void, LTDescr_callback, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEE50, LTDescr_callback__MethodInfo); DO_APP_FUNC(0x03101C20, LTDescr *, LTDescr_setCallback, (LTDescr * __this, MethodInfo * method)); DO_APP_FUNC(0x03101EA0, LTDescr *, LTDescr_setValue3, (LTDescr * __this, MethodInfo * method)); DO_APP_FUNC(0x03102120, LTDescr *, LTDescr_setMove, (LTDescr * __this, MethodInfo * method)); @@ -99939,38 +111772,71 @@ DO_APP_FUNC(0x03109DB0, LTDescr *, LTDescr_setEaseInOutElastic, (LTDescr * __thi DO_APP_FUNC(0x03109E90, LTDescr *, LTDescr_setEasePunch, (LTDescr * __this, MethodInfo * method)); DO_APP_FUNC(0x0310A030, LTDescr *, LTDescr_setEaseShake, (LTDescr * __this, MethodInfo * method)); DO_APP_FUNC(0x0310A1D0, Vector3, LTDescr_tweenOnCurve, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEB50, LTDescr_tweenOnCurve__MethodInfo); DO_APP_FUNC(0x0310A3F0, Vector3, LTDescr_easeInOutQuad, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBED08, LTDescr_easeInOutQuad__MethodInfo); DO_APP_FUNC(0x0310A510, Vector3, LTDescr_easeInQuad, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBECF8, LTDescr_easeInQuad__MethodInfo); DO_APP_FUNC(0x0310A5C0, Vector3, LTDescr_easeOutQuad, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBECF0, LTDescr_easeOutQuad__MethodInfo); DO_APP_FUNC(0x0310A6A0, Vector3, LTDescr_easeLinear, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBF010, LTDescr_easeLinear__MethodInfo); DO_APP_FUNC(0x0310A750, Vector3, LTDescr_easeSpring, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBECE8, LTDescr_easeSpring__MethodInfo); DO_APP_FUNC(0x0310A8C0, Vector3, LTDescr_easeInCubic, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBED10, LTDescr_easeInCubic__MethodInfo); DO_APP_FUNC(0x0310A980, Vector3, LTDescr_easeOutCubic, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBED00, LTDescr_easeOutCubic__MethodInfo); DO_APP_FUNC(0x0310AA60, Vector3, LTDescr_easeInOutCubic, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBECA0, LTDescr_easeInOutCubic__MethodInfo); DO_APP_FUNC(0x0310AB80, Vector3, LTDescr_easeInQuart, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEC90, LTDescr_easeInQuart__MethodInfo); DO_APP_FUNC(0x0310AC40, Vector3, LTDescr_easeOutQuart, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEC98, LTDescr_easeOutQuart__MethodInfo); DO_APP_FUNC(0x0310AD30, Vector3, LTDescr_easeInOutQuart, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBECB0, LTDescr_easeInOutQuart__MethodInfo); DO_APP_FUNC(0x0310AED0, Vector3, LTDescr_easeInQuint, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBECA8, LTDescr_easeInQuint__MethodInfo); DO_APP_FUNC(0x0310AFA0, Vector3, LTDescr_easeOutQuint, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBECC0, LTDescr_easeOutQuint__MethodInfo); DO_APP_FUNC(0x0310B090, Vector3, LTDescr_easeInOutQuint, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBECC8, LTDescr_easeInOutQuint__MethodInfo); DO_APP_FUNC(0x0310B1C0, Vector3, LTDescr_easeInSine, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBECB8, LTDescr_easeInSine__MethodInfo); DO_APP_FUNC(0x0310B2E0, Vector3, LTDescr_easeOutSine, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBECE0, LTDescr_easeOutSine__MethodInfo); DO_APP_FUNC(0x0310B3E0, Vector3, LTDescr_easeInOutSine, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBECD0, LTDescr_easeInOutSine__MethodInfo); DO_APP_FUNC(0x0310B4B0, Vector3, LTDescr_easeInExpo, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBECD8, LTDescr_easeInExpo__MethodInfo); DO_APP_FUNC(0x0310B580, Vector3, LTDescr_easeOutExpo, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEBD0, LTDescr_easeOutExpo__MethodInfo); DO_APP_FUNC(0x0310B650, Vector3, LTDescr_easeInOutExpo, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEBA8, LTDescr_easeInOutExpo__MethodInfo); DO_APP_FUNC(0x0310B7B0, Vector3, LTDescr_easeInCirc, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEBF8, LTDescr_easeInCirc__MethodInfo); DO_APP_FUNC(0x0310B8A0, Vector3, LTDescr_easeOutCirc, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEC00, LTDescr_easeOutCirc__MethodInfo); DO_APP_FUNC(0x0310B9A0, Vector3, LTDescr_easeInOutCirc, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEBE8, LTDescr_easeInOutCirc__MethodInfo); DO_APP_FUNC(0x0310BB10, Vector3, LTDescr_easeInBounce, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEC28, LTDescr_easeInBounce__MethodInfo); DO_APP_FUNC(0x0310BCA0, Vector3, LTDescr_easeOutBounce, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEC08, LTDescr_easeOutBounce__MethodInfo); DO_APP_FUNC(0x0310BEE0, Vector3, LTDescr_easeInOutBounce, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEC18, LTDescr_easeInOutBounce__MethodInfo); DO_APP_FUNC(0x0310C150, Vector3, LTDescr_easeInBack, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEC80, LTDescr_easeInBack__MethodInfo); DO_APP_FUNC(0x0310C240, Vector3, LTDescr_easeOutBack, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEC50, LTDescr_easeOutBack__MethodInfo); DO_APP_FUNC(0x0310C340, Vector3, LTDescr_easeInOutBack, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEB28, LTDescr_easeInOutBack__MethodInfo); DO_APP_FUNC(0x0310C4E0, Vector3, LTDescr_easeInElastic, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEB38, LTDescr_easeInElastic__MethodInfo); DO_APP_FUNC(0x0310C630, Vector3, LTDescr_easeOutElastic, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEB20, LTDescr_easeOutElastic__MethodInfo); DO_APP_FUNC(0x0310C780, Vector3, LTDescr_easeInOutElastic, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEB70, LTDescr_easeInOutElastic__MethodInfo); DO_APP_FUNC(0x0310C8D0, LTDescr *, LTDescr_setOvershoot, (LTDescr * __this, float overshoot, MethodInfo * method)); DO_APP_FUNC(0x0310C8E0, LTDescr *, LTDescr_setPeriod, (LTDescr * __this, float period, MethodInfo * method)); DO_APP_FUNC(0x0310C8F0, LTDescr *, LTDescr_setScale_1, (LTDescr * __this, float scale, MethodInfo * method)); @@ -100032,95 +111898,185 @@ DO_APP_FUNC(0x0310DDC0, LTDescr *, LTDescr_setOnStart, (LTDescr * __this, Action DO_APP_FUNC(0x0310DE30, LTDescr *, LTDescr_setDirection, (LTDescr * __this, float direction, MethodInfo * method)); DO_APP_FUNC(0x0310E090, LTDescr *, LTDescr_setRecursive, (LTDescr * __this, bool useRecursion, MethodInfo * method)); DO_APP_FUNC(0x0310E0A0, void, LTDescr__setMoveX_b__73_0, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBF038, LTDescr__setMoveX_b__73_0__MethodInfo); DO_APP_FUNC(0x0310E130, void, LTDescr__setMoveX_b__73_1, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBF030, LTDescr__setMoveX_b__73_1__MethodInfo); DO_APP_FUNC(0x0310E2D0, void, LTDescr__setMoveY_b__74_0, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBF028, LTDescr__setMoveY_b__74_0__MethodInfo); DO_APP_FUNC(0x0310E360, void, LTDescr__setMoveY_b__74_1, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBF020, LTDescr__setMoveY_b__74_1__MethodInfo); DO_APP_FUNC(0x0310E4F0, void, LTDescr__setMoveZ_b__75_0, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBF058, LTDescr__setMoveZ_b__75_0__MethodInfo); DO_APP_FUNC(0x0310E580, void, LTDescr__setMoveZ_b__75_1, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBF050, LTDescr__setMoveZ_b__75_1__MethodInfo); DO_APP_FUNC(0x0310E6F0, void, LTDescr__setMoveLocalX_b__76_0, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBF048, LTDescr__setMoveLocalX_b__76_0__MethodInfo); DO_APP_FUNC(0x0310E780, void, LTDescr__setMoveLocalX_b__76_1, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBF040, LTDescr__setMoveLocalX_b__76_1__MethodInfo); DO_APP_FUNC(0x0310E920, void, LTDescr__setMoveLocalY_b__77_0, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEF80, LTDescr__setMoveLocalY_b__77_0__MethodInfo); DO_APP_FUNC(0x0310E9B0, void, LTDescr__setMoveLocalY_b__77_1, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEF78, LTDescr__setMoveLocalY_b__77_1__MethodInfo); DO_APP_FUNC(0x0310EB40, void, LTDescr__setMoveLocalZ_b__78_0, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEF70, LTDescr__setMoveLocalZ_b__78_0__MethodInfo); DO_APP_FUNC(0x0310EBD0, void, LTDescr__setMoveLocalZ_b__78_1, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEF68, LTDescr__setMoveLocalZ_b__78_1__MethodInfo); DO_APP_FUNC(0x0310ED40, void, LTDescr__setMoveCurved_b__81_0, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEFA0, LTDescr__setMoveCurved_b__81_0__MethodInfo); DO_APP_FUNC(0x0310F1C0, void, LTDescr__setMoveCurvedLocal_b__82_0, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEF88, LTDescr__setMoveCurvedLocal_b__82_0__MethodInfo); DO_APP_FUNC(0x0310F540, void, LTDescr__setMoveSpline_b__83_0, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEF90, LTDescr__setMoveSpline_b__83_0__MethodInfo); DO_APP_FUNC(0x0310F890, void, LTDescr__setMoveSplineLocal_b__84_0, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEFB8, LTDescr__setMoveSplineLocal_b__84_0__MethodInfo); DO_APP_FUNC(0x0310FAD0, void, LTDescr__setScaleX_b__85_0, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEFA8, LTDescr__setScaleX_b__85_0__MethodInfo); DO_APP_FUNC(0x0310FB60, void, LTDescr__setScaleX_b__85_1, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEFB0, LTDescr__setScaleX_b__85_1__MethodInfo); DO_APP_FUNC(0x0310FD00, void, LTDescr__setScaleY_b__86_0, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEFD0, LTDescr__setScaleY_b__86_0__MethodInfo); DO_APP_FUNC(0x0310FD90, void, LTDescr__setScaleY_b__86_1, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEFD8, LTDescr__setScaleY_b__86_1__MethodInfo); DO_APP_FUNC(0x0310FF20, void, LTDescr__setScaleZ_b__87_0, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEFC0, LTDescr__setScaleZ_b__87_0__MethodInfo); DO_APP_FUNC(0x0310FFB0, void, LTDescr__setScaleZ_b__87_1, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEFC8, LTDescr__setScaleZ_b__87_1__MethodInfo); DO_APP_FUNC(0x03110120, void, LTDescr__setRotateX_b__88_0, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEEF8, LTDescr__setRotateX_b__88_0__MethodInfo); DO_APP_FUNC(0x03110230, void, LTDescr__setRotateX_b__88_1, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEF00, LTDescr__setRotateX_b__88_1__MethodInfo); DO_APP_FUNC(0x031103C0, void, LTDescr__setRotateY_b__89_0, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEEE8, LTDescr__setRotateY_b__89_0__MethodInfo); DO_APP_FUNC(0x031104D0, void, LTDescr__setRotateY_b__89_1, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEEF0, LTDescr__setRotateY_b__89_1__MethodInfo); DO_APP_FUNC(0x03110660, void, LTDescr__setRotateZ_b__90_0, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEF18, LTDescr__setRotateZ_b__90_0__MethodInfo); DO_APP_FUNC(0x03110770, void, LTDescr__setRotateZ_b__90_1, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEF20, LTDescr__setRotateZ_b__90_1__MethodInfo); DO_APP_FUNC(0x031108F0, void, LTDescr__setRotateAround_b__91_0, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEF08, LTDescr__setRotateAround_b__91_0__MethodInfo); DO_APP_FUNC(0x03110980, void, LTDescr__setRotateAround_b__91_1, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEF10, LTDescr__setRotateAround_b__91_1__MethodInfo); DO_APP_FUNC(0x03110DF0, void, LTDescr__setRotateAroundLocal_b__92_0, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEF38, LTDescr__setRotateAroundLocal_b__92_0__MethodInfo); DO_APP_FUNC(0x03110E80, void, LTDescr__setRotateAroundLocal_b__92_1, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEF40, LTDescr__setRotateAroundLocal_b__92_1__MethodInfo); DO_APP_FUNC(0x031113F0, void, LTDescr__setAlpha_b__93_0, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEF28, LTDescr__setAlpha_b__93_0__MethodInfo); DO_APP_FUNC(0x03111D50, void, LTDescr__setAlpha_b__93_2, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE9B0, LTDescr__setAlpha_b__93_2__MethodInfo); DO_APP_FUNC(0x031120B0, void, LTDescr__setAlpha_b__93_1, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEF30, LTDescr__setAlpha_b__93_1__MethodInfo); DO_APP_FUNC(0x03112430, void, LTDescr__setTextAlpha_b__94_0, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEF58, LTDescr__setTextAlpha_b__94_0__MethodInfo); DO_APP_FUNC(0x03112600, void, LTDescr__setTextAlpha_b__94_1, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEF60, LTDescr__setTextAlpha_b__94_1__MethodInfo); DO_APP_FUNC(0x03112660, void, LTDescr__setAlphaVertex_b__95_0, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEF48, LTDescr__setAlphaVertex_b__95_0__MethodInfo); DO_APP_FUNC(0x03112780, void, LTDescr__setAlphaVertex_b__95_1, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEF50, LTDescr__setAlphaVertex_b__95_1__MethodInfo); DO_APP_FUNC(0x03112B80, void, LTDescr__setColor_b__96_0, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEE78, LTDescr__setColor_b__96_0__MethodInfo); DO_APP_FUNC(0x03113550, void, LTDescr__setColor_b__96_1, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEE80, LTDescr__setColor_b__96_1__MethodInfo); DO_APP_FUNC(0x03113900, void, LTDescr__setCallbackColor_b__97_0, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEE68, LTDescr__setCallbackColor_b__97_0__MethodInfo); DO_APP_FUNC(0x03113920, void, LTDescr__setCallbackColor_b__97_1, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEE70, LTDescr__setCallbackColor_b__97_1__MethodInfo); DO_APP_FUNC(0x03113CD0, void, LTDescr__setTextColor_b__98_0, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEE98, LTDescr__setTextColor_b__98_0__MethodInfo); DO_APP_FUNC(0x03113EE0, void, LTDescr__setTextColor_b__98_1, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEEA0, LTDescr__setTextColor_b__98_1__MethodInfo); DO_APP_FUNC(0x03114140, void, LTDescr__setCanvasAlpha_b__99_0, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEE88, LTDescr__setCanvasAlpha_b__99_0__MethodInfo); DO_APP_FUNC(0x03114480, void, LTDescr__setCanvasAlpha_b__99_1, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEE90, LTDescr__setCanvasAlpha_b__99_1__MethodInfo); DO_APP_FUNC(0x031147E0, void, LTDescr__setCanvasGroupAlpha_b__100_0, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEEB8, LTDescr__setCanvasGroupAlpha_b__100_0__MethodInfo); DO_APP_FUNC(0x03114890, void, LTDescr__setCanvasGroupAlpha_b__100_1, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEEC0, LTDescr__setCanvasGroupAlpha_b__100_1__MethodInfo); DO_APP_FUNC(0x03114960, void, LTDescr__setCanvasColor_b__101_0, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEEA8, LTDescr__setCanvasColor_b__101_0__MethodInfo); DO_APP_FUNC(0x03114CF0, void, LTDescr__setCanvasColor_b__101_1, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEEB0, LTDescr__setCanvasColor_b__101_1__MethodInfo); DO_APP_FUNC(0x031150B0, void, LTDescr__setCanvasMoveX_b__102_0, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEED8, LTDescr__setCanvasMoveX_b__102_0__MethodInfo); DO_APP_FUNC(0x031150F0, void, LTDescr__setCanvasMoveX_b__102_1, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEEE0, LTDescr__setCanvasMoveX_b__102_1__MethodInfo); DO_APP_FUNC(0x031151B0, void, LTDescr__setCanvasMoveY_b__103_0, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEEC8, LTDescr__setCanvasMoveY_b__103_0__MethodInfo); DO_APP_FUNC(0x031151F0, void, LTDescr__setCanvasMoveY_b__103_1, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEED0, LTDescr__setCanvasMoveY_b__103_1__MethodInfo); DO_APP_FUNC(0x031152B0, void, LTDescr__setCanvasMoveZ_b__104_0, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEDF0, LTDescr__setCanvasMoveZ_b__104_0__MethodInfo); DO_APP_FUNC(0x031152F0, void, LTDescr__setCanvasMoveZ_b__104_1, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEDF8, LTDescr__setCanvasMoveZ_b__104_1__MethodInfo); DO_APP_FUNC(0x031153A0, void, LTDescr__setCanvasRotateAround_b__106_0, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEDE0, LTDescr__setCanvasRotateAround_b__106_0__MethodInfo); DO_APP_FUNC(0x031157A0, void, LTDescr__setCanvasRotateAroundLocal_b__107_0, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEE10, LTDescr__setCanvasRotateAroundLocal_b__107_0__MethodInfo); DO_APP_FUNC(0x03115C90, void, LTDescr__setCanvasPlaySprite_b__108_0, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEE08, LTDescr__setCanvasPlaySprite_b__108_0__MethodInfo); DO_APP_FUNC(0x03115D40, void, LTDescr__setCanvasPlaySprite_b__108_1, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEE00, LTDescr__setCanvasPlaySprite_b__108_1__MethodInfo); DO_APP_FUNC(0x03115E20, void, LTDescr__setCanvasMove_b__109_0, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEE38, LTDescr__setCanvasMove_b__109_0__MethodInfo); DO_APP_FUNC(0x03115E60, void, LTDescr__setCanvasMove_b__109_1, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEE28, LTDescr__setCanvasMove_b__109_1__MethodInfo); DO_APP_FUNC(0x03115EC0, void, LTDescr__setCanvasScale_b__110_0, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEE20, LTDescr__setCanvasScale_b__110_0__MethodInfo); DO_APP_FUNC(0x03115F50, void, LTDescr__setCanvasScale_b__110_1, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEE18, LTDescr__setCanvasScale_b__110_1__MethodInfo); DO_APP_FUNC(0x03115FF0, void, LTDescr__setCanvasSizeDelta_b__111_0, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEE60, LTDescr__setCanvasSizeDelta_b__111_0__MethodInfo); DO_APP_FUNC(0x03116090, void, LTDescr__setCanvasSizeDelta_b__111_1, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEE58, LTDescr__setCanvasSizeDelta_b__111_1__MethodInfo); DO_APP_FUNC(0x03116130, void, LTDescr__setMove_b__115_0, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBED68, LTDescr__setMove_b__115_0__MethodInfo); DO_APP_FUNC(0x031161C0, void, LTDescr__setMove_b__115_1, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBED60, LTDescr__setMove_b__115_1__MethodInfo); DO_APP_FUNC(0x031162B0, void, LTDescr__setMoveLocal_b__116_0, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBED98, LTDescr__setMoveLocal_b__116_0__MethodInfo); DO_APP_FUNC(0x03116340, void, LTDescr__setMoveLocal_b__116_1, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBED90, LTDescr__setMoveLocal_b__116_1__MethodInfo); DO_APP_FUNC(0x03116130, void, LTDescr__setMoveToTransform_b__117_0, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBED88, LTDescr__setMoveToTransform_b__117_0__MethodInfo); DO_APP_FUNC(0x03116430, void, LTDescr__setMoveToTransform_b__117_1, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBED80, LTDescr__setMoveToTransform_b__117_1__MethodInfo); DO_APP_FUNC(0x03116610, void, LTDescr__setRotate_b__118_0, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEDB8, LTDescr__setRotate_b__118_0__MethodInfo); DO_APP_FUNC(0x03116780, void, LTDescr__setRotate_b__118_1, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEDB0, LTDescr__setRotate_b__118_1__MethodInfo); DO_APP_FUNC(0x03116830, void, LTDescr__setRotateLocal_b__119_0, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEDA8, LTDescr__setRotateLocal_b__119_0__MethodInfo); DO_APP_FUNC(0x031169A0, void, LTDescr__setRotateLocal_b__119_1, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEDA0, LTDescr__setRotateLocal_b__119_1__MethodInfo); DO_APP_FUNC(0x03116A50, void, LTDescr__setScale_b__120_0, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEDD8, LTDescr__setScale_b__120_0__MethodInfo); DO_APP_FUNC(0x03116AE0, void, LTDescr__setScale_b__120_1, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEDD0, LTDescr__setScale_b__120_1__MethodInfo); DO_APP_FUNC(0x03116BD0, void, LTDescr__setGUIMove_b__121_0, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEDC8, LTDescr__setGUIMove_b__121_0__MethodInfo); DO_APP_FUNC(0x03116C50, void, LTDescr__setGUIMove_b__121_1, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEDC0, LTDescr__setGUIMove_b__121_1__MethodInfo); DO_APP_FUNC(0x03116D30, void, LTDescr__setGUIMoveMargin_b__122_0, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBED30, LTDescr__setGUIMoveMargin_b__122_0__MethodInfo); DO_APP_FUNC(0x03116D70, void, LTDescr__setGUIMoveMargin_b__122_1, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBED28, LTDescr__setGUIMoveMargin_b__122_1__MethodInfo); DO_APP_FUNC(0x03116DE0, void, LTDescr__setGUIScale_b__123_0, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBED20, LTDescr__setGUIScale_b__123_0__MethodInfo); DO_APP_FUNC(0x03116E60, void, LTDescr__setGUIScale_b__123_1, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBED18, LTDescr__setGUIScale_b__123_1__MethodInfo); DO_APP_FUNC(0x03116F30, void, LTDescr__setGUIAlpha_b__124_0, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBED50, LTDescr__setGUIAlpha_b__124_0__MethodInfo); DO_APP_FUNC(0x03116F60, void, LTDescr__setGUIAlpha_b__124_1, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBED48, LTDescr__setGUIAlpha_b__124_1__MethodInfo); DO_APP_FUNC(0x03116FC0, void, LTDescr__setGUIRotate_b__125_0, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBED40, LTDescr__setGUIRotate_b__125_0__MethodInfo); DO_APP_FUNC(0x03117040, void, LTDescr__setGUIRotate_b__125_1, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBED38, LTDescr__setGUIRotate_b__125_1__MethodInfo); DO_APP_FUNC(0x031170A0, void, LTDescr__setDelayedSound_b__126_0, (LTDescr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBED58, LTDescr__setDelayedSound_b__126_0__MethodInfo); DO_APP_FUNC(0x015B2930, void, LTDescr_EaseTypeDelegate__ctor, (LTDescr_EaseTypeDelegate * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x015B2A60, Vector3, LTDescr_EaseTypeDelegate_Invoke, (LTDescr_EaseTypeDelegate * __this, MethodInfo * method)); DO_APP_FUNC(0x003F7C10, IAsyncResult *, LTDescr_EaseTypeDelegate_BeginInvoke, (LTDescr_EaseTypeDelegate * __this, AsyncCallback * callback, Object * object, MethodInfo * method)); @@ -100132,7 +112088,9 @@ DO_APP_FUNC(0x003BA270, void, LTDescr_ActionMethodDelegate_EndInvoke, (LTDescr_A DO_APP_FUNC(0x03117110, void, LTDescr_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, LTDescr_c__ctor, (LTDescr_c * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, LTDescr_c__setCallback_b__113_0, (LTDescr_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEE48, LTDescr_c__setCallback_b__113_0__MethodInfo); DO_APP_FUNC(0x003AE050, void, LTDescr_c__setValue3_b__114_0, (LTDescr_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBED78, LTDescr_c__setValue3_b__114_0__MethodInfo); DO_APP_FUNC(0x003BB3C0, Transform *, LTDescrOptional_get_toTrans, (LTDescrOptional * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, LTDescrOptional_set_toTrans, (LTDescrOptional * __this, Transform * value, MethodInfo * method)); DO_APP_FUNC(0x00606200, Vector3, LTDescrOptional_get_point, (LTDescrOptional * __this, MethodInfo * method)); @@ -100216,7 +112174,9 @@ DO_APP_FUNC(0x0311A090, void, Outline_Bake, (Outline * __this, MethodInfo * meth DO_APP_FUNC(0x0311A2E0, void, Outline_LoadSmoothNormals, (Outline * __this, MethodInfo * method)); DO_APP_FUNC(0x0311A6A0, List_1_UnityEngine_Vector3_ *, Outline_SmoothNormals, (Outline * __this, Mesh * mesh, MethodInfo * method)); DO_APP_FUNC(0x0311B250, void, Outline_OnCanStartInteract, (Outline * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE918, Outline_OnCanStartInteract__MethodInfo); DO_APP_FUNC(0x0311B2D0, void, Outline_OnCannotStartInteract, (Outline * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE8F0, Outline_OnCannotStartInteract__MethodInfo); DO_APP_FUNC(0x0311B340, void, Outline_UpdateMaterialProperties, (Outline * __this, MethodInfo * method)); DO_APP_FUNC(0x0311B540, void, Outline__ctor, (Outline * __this, MethodInfo * method)); DO_APP_FUNC(0x0311B780, void, Outline__cctor, (MethodInfo * method)); @@ -100224,8 +112184,11 @@ DO_APP_FUNC(0x003AE050, void, Outline_ListVector3__ctor, (Outline_ListVector3 * DO_APP_FUNC(0x0311B850, void, Outline_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Outline_c__ctor, (Outline_c * __this, MethodInfo * method)); DO_APP_FUNC(0x0311B900, bool, Outline_c__Setup_b__28_0, (Outline_c * __this, Renderer * r, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE8E8, Outline_c__Setup_b__28_0__MethodInfo); DO_APP_FUNC(0x0311B950, KeyValuePair_2_UnityEngine_Vector3_System_Int32_, Outline_c__SmoothNormals_b__38_0, (Outline_c * __this, Vector3 vertex, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE8D0, Outline_c__SmoothNormals_b__38_0__MethodInfo); DO_APP_FUNC(0x0311B9B0, Vector3, Outline_c__SmoothNormals_b__38_1, (Outline_c * __this, KeyValuePair_2_UnityEngine_Vector3_System_Int32_ pair, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE8C0, Outline_c__SmoothNormals_b__38_1__MethodInfo); DO_APP_FUNC(0x0311BA00, void, Lightning_Start, (Lightning * __this, MethodInfo * method)); DO_APP_FUNC(0x0311BA50, IEnumerator *, Lightning_Storm, (Lightning * __this, MethodInfo * method)); DO_APP_FUNC(0x0311BAF0, IEnumerator *, Lightning_Soundfx, (Lightning * __this, MethodInfo * method)); @@ -100235,12 +112198,14 @@ DO_APP_FUNC(0x003AE050, void, Lightning_Storm_d_16_System_IDisposable_Dispose, ( DO_APP_FUNC(0x0311BC00, bool, Lightning_Storm_d_16_MoveNext, (Lightning_Storm_d_16 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, Lightning_Storm_d_16_System_Collections_Generic_IEnumerator_System_Object__get_Current, (Lightning_Storm_d_16 * __this, MethodInfo * method)); DO_APP_FUNC(0x0311BEA0, void, Lightning_Storm_d_16_System_Collections_IEnumerator_Reset, (Lightning_Storm_d_16 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBFA38, Lightning_Storm_d_16_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Lightning_Storm_d_16_System_Collections_IEnumerator_get_Current, (Lightning_Storm_d_16 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, Lightning_Soundfx_d_17__ctor, (Lightning_Soundfx_d_17 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Lightning_Soundfx_d_17_System_IDisposable_Dispose, (Lightning_Soundfx_d_17 * __this, MethodInfo * method)); DO_APP_FUNC(0x0311BEF0, bool, Lightning_Soundfx_d_17_MoveNext, (Lightning_Soundfx_d_17 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, Lightning_Soundfx_d_17_System_Collections_Generic_IEnumerator_System_Object__get_Current, (Lightning_Soundfx_d_17 * __this, MethodInfo * method)); DO_APP_FUNC(0x0311C190, void, Lightning_Soundfx_d_17_System_Collections_IEnumerator_Reset, (Lightning_Soundfx_d_17 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBFA40, Lightning_Soundfx_d_17_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Lightning_Soundfx_d_17_System_Collections_IEnumerator_get_Current, (Lightning_Soundfx_d_17 * __this, MethodInfo * method)); DO_APP_FUNC(0x0311C1E0, void, ProtonPack_Start, (ProtonPack * __this, MethodInfo * method)); DO_APP_FUNC(0x0311C2A0, void, ProtonPack_Update, (ProtonPack * __this, MethodInfo * method)); @@ -100252,6 +112217,7 @@ DO_APP_FUNC(0x003AE050, void, ProtonPack_ProtonPackFire_d_10_System_IDisposable_ DO_APP_FUNC(0x0311C660, bool, ProtonPack_ProtonPackFire_d_10_MoveNext, (ProtonPack_ProtonPackFire_d_10 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, ProtonPack_ProtonPackFire_d_10_System_Collections_Generic_IEnumerator_System_Object__get_Current, (ProtonPack_ProtonPackFire_d_10 * __this, MethodInfo * method)); DO_APP_FUNC(0x0311C850, void, ProtonPack_ProtonPackFire_d_10_System_Collections_IEnumerator_Reset, (ProtonPack_ProtonPackFire_d_10 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBFA50, ProtonPack_ProtonPackFire_d_10_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, ProtonPack_ProtonPackFire_d_10_System_Collections_IEnumerator_get_Current, (ProtonPack_ProtonPackFire_d_10 * __this, MethodInfo * method)); DO_APP_FUNC(0x0311C8A0, void, ScrollUV_Clouds_Start, (ScrollUV_Clouds * __this, MethodInfo * method)); DO_APP_FUNC(0x030B52A0, void, ScrollUV_Clouds_FixedUpdate, (ScrollUV_Clouds * __this, MethodInfo * method)); @@ -100265,7 +112231,7 @@ DO_APP_FUNC(0x0311F690, void, ShatterableGlass__ctor, (ShatterableGlass * __this DO_APP_FUNC(0x00A5E870, void, ShatterableGlass_Figure__ctor, (ShatterableGlass_Figure * __this, Vector2__Array * Points, int32_t ForceScale, MethodInfo * method)); DO_APP_FUNC(0x0311F790, void, ShatterableGlass_Figure_GenerateCollider, (ShatterableGlass_Figure * __this, float GlassThickness, GameObject * Obj, MethodInfo * method)); DO_APP_FUNC(0x0311FB90, Mesh *, ShatterableGlass_Figure_GenerateMesh, (ShatterableGlass_Figure * __this, bool GenerateGlassSides, float GlassHalfThickness, Vector2 UVScale, MethodInfo * method)); -DO_APP_FUNC(0x031202C0, void, ShatterableGlass_Figure_GlassSideVertex, (ShatterableGlass_Figure * __this, Vector2 Ref, Vector3 A, Vector3 B, float GlassHalfThickness, MethodInfo * method)); +DO_APP_FUNC(0x031202C0, void, ShatterableGlass_Figure_GlassSideVertex, (ShatterableGlass_Figure * __this, Vector2 Ref, Vector3 * A, Vector3 * B, float GlassHalfThickness, MethodInfo * method)); DO_APP_FUNC(0x03120310, void, ShatterableGlass_BaseLine__ctor, (ShatterableGlass_BaseLine * __this, Vector2 HitPoint, Vector2 End, int32_t Count, MethodInfo * method)); DO_APP_FUNC(0x03120600, void, ShatterableGlassInfo__ctor, (ShatterableGlassInfo * __this, Vector3 HitPoint, Vector3 HitDirrection, MethodInfo * method)); DO_APP_FUNC(0x03120630, IEnumerator *, FireBaseScript_CleanupEverythingCoRoutine, (FireBaseScript * __this, MethodInfo * method)); @@ -100289,6 +112255,7 @@ DO_APP_FUNC(0x003AE050, void, FireBaseScript_CleanupEverythingCoRoutine_d_12_Sys DO_APP_FUNC(0x031213D0, bool, FireBaseScript_CleanupEverythingCoRoutine_d_12_MoveNext, (FireBaseScript_CleanupEverythingCoRoutine_d_12 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, FireBaseScript_CleanupEverythingCoRoutine_d_12_System_Collections_Generic_IEnumerator_System_Object__get_Current, (FireBaseScript_CleanupEverythingCoRoutine_d_12 * __this, MethodInfo * method)); DO_APP_FUNC(0x03121550, void, FireBaseScript_CleanupEverythingCoRoutine_d_12_System_Collections_IEnumerator_Reset, (FireBaseScript_CleanupEverythingCoRoutine_d_12 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBF880, FireBaseScript_CleanupEverythingCoRoutine_d_12_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, FireBaseScript_CleanupEverythingCoRoutine_d_12_System_Collections_IEnumerator_get_Current, (FireBaseScript_CleanupEverythingCoRoutine_d_12 * __this, MethodInfo * method)); DO_APP_FUNC(0x031215A0, void, FireCollisionForwardScript_OnCollisionEnter, (FireCollisionForwardScript * __this, Collision * col, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, FireCollisionForwardScript__ctor, (FireCollisionForwardScript * __this, MethodInfo * method)); @@ -100322,6 +112289,7 @@ DO_APP_FUNC(0x003AE050, void, FireProjectileScript_SendCollisionAfterDelay_d_12_ DO_APP_FUNC(0x03123570, bool, FireProjectileScript_SendCollisionAfterDelay_d_12_MoveNext, (FireProjectileScript_SendCollisionAfterDelay_d_12 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, FireProjectileScript_SendCollisionAfterDelay_d_12_System_Collections_Generic_IEnumerator_System_Object__get_Current, (FireProjectileScript_SendCollisionAfterDelay_d_12 * __this, MethodInfo * method)); DO_APP_FUNC(0x03123860, void, FireProjectileScript_SendCollisionAfterDelay_d_12_System_Collections_IEnumerator_Reset, (FireProjectileScript_SendCollisionAfterDelay_d_12 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBF728, FireProjectileScript_SendCollisionAfterDelay_d_12_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, FireProjectileScript_SendCollisionAfterDelay_d_12_System_Collections_IEnumerator_get_Current, (FireProjectileScript_SendCollisionAfterDelay_d_12 * __this, MethodInfo * method)); DO_APP_FUNC(0x015A0A70, void, MeteorSwarmCollisionDelegate__ctor, (MeteorSwarmCollisionDelegate * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EC2D0, void, MeteorSwarmCollisionDelegate_Invoke, (MeteorSwarmCollisionDelegate * __this, MeteorSwarmScript * script, GameObject * meteor, MethodInfo * method)); @@ -100341,12 +112309,14 @@ DO_APP_FUNC(0x003AE050, void, MeteorSwarmScript_SpawnMeteor_d_18_System_IDisposa DO_APP_FUNC(0x03124AB0, bool, MeteorSwarmScript_SpawnMeteor_d_18_MoveNext, (MeteorSwarmScript_SpawnMeteor_d_18 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, MeteorSwarmScript_SpawnMeteor_d_18_System_Collections_Generic_IEnumerator_System_Object__get_Current, (MeteorSwarmScript_SpawnMeteor_d_18 * __this, MethodInfo * method)); DO_APP_FUNC(0x031257D0, void, MeteorSwarmScript_SpawnMeteor_d_18_System_Collections_IEnumerator_Reset, (MeteorSwarmScript_SpawnMeteor_d_18 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBF800, MeteorSwarmScript_SpawnMeteor_d_18_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, MeteorSwarmScript_SpawnMeteor_d_18_System_Collections_IEnumerator_get_Current, (MeteorSwarmScript_SpawnMeteor_d_18 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, MeteorSwarmScript_CleanupMeteor_d_22__ctor, (MeteorSwarmScript_CleanupMeteor_d_22 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, MeteorSwarmScript_CleanupMeteor_d_22_System_IDisposable_Dispose, (MeteorSwarmScript_CleanupMeteor_d_22 * __this, MethodInfo * method)); DO_APP_FUNC(0x03125820, bool, MeteorSwarmScript_CleanupMeteor_d_22_MoveNext, (MeteorSwarmScript_CleanupMeteor_d_22 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, MeteorSwarmScript_CleanupMeteor_d_22_System_Collections_Generic_IEnumerator_System_Object__get_Current, (MeteorSwarmScript_CleanupMeteor_d_22 * __this, MethodInfo * method)); DO_APP_FUNC(0x031259D0, void, MeteorSwarmScript_CleanupMeteor_d_22_System_Collections_IEnumerator_Reset, (MeteorSwarmScript_CleanupMeteor_d_22 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBF810, MeteorSwarmScript_CleanupMeteor_d_22_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, MeteorSwarmScript_CleanupMeteor_d_22_System_Collections_IEnumerator_get_Current, (MeteorSwarmScript_CleanupMeteor_d_22 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, SingleLineAttribute__ctor, (SingleLineAttribute * __this, String * tooltip, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, String *, SingleLineAttribute_get_Tooltip, (SingleLineAttribute * __this, MethodInfo * method)); @@ -100385,6 +112355,7 @@ DO_APP_FUNC(0x01E4DF80, void, ByteArraySlice_Dispose, (ByteArraySlice * __this, DO_APP_FUNC(0x01E4DFC0, bool, ByteArraySlice_Release, (ByteArraySlice * __this, MethodInfo * method)); DO_APP_FUNC(0x01E4E000, void, ByteArraySlicePool__ctor, (ByteArraySlicePool * __this, MethodInfo * method)); DO_APP_FUNC(0x01E4E260, ByteArraySlice *, ByteArraySlicePool_Acquire, (ByteArraySlicePool * __this, int32_t minByteCount, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0F18, ByteArraySlicePool_Acquire__MethodInfo); DO_APP_FUNC(0x01E4E6E0, ByteArraySlice *, ByteArraySlicePool_PopOrCreate, (ByteArraySlicePool * __this, Stack_1_ExitGames_Client_Photon_ByteArraySlice_ * stack, int32_t stackIndex, MethodInfo * method)); DO_APP_FUNC(0x01E4EA10, bool, ByteArraySlicePool_Release, (ByteArraySlicePool * __this, ByteArraySlice * slice, int32_t stackIndex, MethodInfo * method)); DO_APP_FUNC(0x01E4EDC0, void, Hashtable_1__cctor, (MethodInfo * method)); @@ -100398,18 +112369,18 @@ DO_APP_FUNC(0x01E4F2D0, void, Hashtable_1_Add, (Hashtable_1 * __this, uint8_t k, DO_APP_FUNC(0x01E4F3A0, bool, Hashtable_1_ContainsKey, (Hashtable_1 * __this, uint8_t key, MethodInfo * method)); DO_APP_FUNC(0x01E4F460, DictionaryEntryEnumerator, Hashtable_1_GetEnumerator, (Hashtable_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x01E4F5D0, String *, Hashtable_1_ToString, (Hashtable_1 * __this, MethodInfo * method)); -DO_APP_FUNC(0x01E4FD60, void, DictionaryEntryEnumerator__ctor, (DictionaryEntryEnumerator__Boxed * __this, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Object_ original, MethodInfo * method)); -DO_APP_FUNC(0x01E4FDD0, Object *, DictionaryEntryEnumerator_System_Collections_IEnumerator_get_Current, (DictionaryEntryEnumerator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01E4FF20, DictionaryEntry, DictionaryEntryEnumerator_get_Current, (DictionaryEntryEnumerator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01E50060, bool, DictionaryEntryEnumerator_MoveNext, (DictionaryEntryEnumerator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01E500A0, void, DictionaryEntryEnumerator_Reset, (DictionaryEntryEnumerator__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, DictionaryEntryEnumerator_Dispose, (DictionaryEntryEnumerator__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01E4FD60, void, DictionaryEntryEnumerator__ctor, (DictionaryEntryEnumerator * __this, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Object_ original, MethodInfo * method)); +DO_APP_FUNC(0x01E4FDD0, Object *, DictionaryEntryEnumerator_System_Collections_IEnumerator_get_Current, (DictionaryEntryEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC(0x01E4FF20, DictionaryEntry, DictionaryEntryEnumerator_get_Current, (DictionaryEntryEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC(0x01E50060, bool, DictionaryEntryEnumerator_MoveNext, (DictionaryEntryEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC(0x01E500A0, void, DictionaryEntryEnumerator_Reset, (DictionaryEntryEnumerator * __this, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, DictionaryEntryEnumerator_Dispose, (DictionaryEntryEnumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, UnknownType__ctor, (UnknownType * __this, MethodInfo * method)); DO_APP_FUNC(0x01E50170, void, EnetChannel__ctor, (EnetChannel * __this, uint8_t channelNumber, int32_t commandBufferSize, MethodInfo * method)); DO_APP_FUNC(0x01E50590, bool, EnetChannel_ContainsUnreliableSequenceNumber, (EnetChannel * __this, int32_t unreliableSequenceNumber, MethodInfo * method)); DO_APP_FUNC(0x01E50610, bool, EnetChannel_ContainsReliableSequenceNumber, (EnetChannel * __this, int32_t reliableSequenceNumber, MethodInfo * method)); DO_APP_FUNC(0x01E50690, NCommand *, EnetChannel_FetchReliableSequenceNumber, (EnetChannel * __this, int32_t reliableSequenceNumber, MethodInfo * method)); -DO_APP_FUNC(0x01E506E0, bool, EnetChannel_TryGetFragment, (EnetChannel * __this, int32_t reliableSequenceNumber, bool isSequenced, NCommand * fragment, MethodInfo * method)); +DO_APP_FUNC(0x01E506E0, bool, EnetChannel_TryGetFragment, (EnetChannel * __this, int32_t reliableSequenceNumber, bool isSequenced, NCommand * * fragment, MethodInfo * method)); DO_APP_FUNC(0x01E50770, void, EnetChannel_RemoveFragment, (EnetChannel * __this, int32_t reliableSequenceNumber, bool isSequenced, MethodInfo * method)); DO_APP_FUNC(0x01E507F0, void, EnetChannel_clearAll, (EnetChannel * __this, MethodInfo * method)); DO_APP_FUNC(0x01E50A00, bool, EnetChannel_QueueIncomingReliableUnsequenced, (EnetChannel * __this, NCommand * command, MethodInfo * method)); @@ -100443,10 +112414,12 @@ DO_APP_FUNC(0x01E56900, void, EnetPeer_QueueOutgoingUnreliableCommand, (EnetPeer DO_APP_FUNC(0x01E56B80, void, EnetPeer_QueueOutgoingAcknowledgement, (EnetPeer * __this, NCommand * readCommand, int32_t sendTime, MethodInfo * method)); DO_APP_FUNC(0x01E56D30, void, EnetPeer_ReceiveIncomingCommands, (EnetPeer * __this, Byte__Array * inBuff, int32_t inDataLength, MethodInfo * method)); DO_APP_FUNC(0x01E579A0, void, EnetPeer_ExecuteCommand, (EnetPeer * __this, NCommand * command, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0CA8, EnetPeer_ExecuteCommand__MethodInfo); DO_APP_FUNC(0x01E58980, bool, EnetPeer_QueueIncomingCommand, (EnetPeer * __this, NCommand * command, MethodInfo * method)); DO_APP_FUNC(0x01E59230, NCommand *, EnetPeer_RemoveSentReliableCommand, (EnetPeer * __this, int32_t ackReceivedReliableSequenceNumber, int32_t ackReceivedChannel, bool isUnsequenced, MethodInfo * method)); DO_APP_FUNC(0x01E59680, void, EnetPeer__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01E59760, void, EnetPeer__ExecuteCommand_b__66_0, (EnetPeer * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0C50, EnetPeer__ExecuteCommand_b__66_0__MethodInfo); DO_APP_FUNC(0x01E59790, IPhotonPeerListener *, IPhotonSocket_get_Listener, (IPhotonSocket * __this, MethodInfo * method)); DO_APP_FUNC(0x01E597C0, int32_t, IPhotonSocket_get_MTU, (IPhotonSocket * __this, MethodInfo * method)); DO_APP_FUNC(0x003CD440, PhotonSocketState__Enum, IPhotonSocket_get_State, (IPhotonSocket * __this, MethodInfo * method)); @@ -100464,24 +112437,28 @@ DO_APP_FUNC(0x003C73A0, void, IPhotonSocket_set_UrlProtocol, (IPhotonSocket * __ DO_APP_FUNC(0x00421740, void, IPhotonSocket_set_UrlPath, (IPhotonSocket * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x01E598E0, String *, IPhotonSocket_get_SerializationProtocol, (IPhotonSocket * __this, MethodInfo * method)); DO_APP_FUNC(0x01E59AB0, void, IPhotonSocket__ctor, (IPhotonSocket * __this, PeerBase * peerBase, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0BE8, IPhotonSocket__ctor__MethodInfo); DO_APP_FUNC(0x01E59BE0, bool, IPhotonSocket_Connect, (IPhotonSocket * __this, MethodInfo * method)); DO_APP_FUNC(0x01E5A1A0, void, IPhotonSocket_HandleReceivedDatagram, (IPhotonSocket * __this, Byte__Array * inBuffer, int32_t length, bool willBeReused, MethodInfo * method)); DO_APP_FUNC(0x01E5A320, bool, IPhotonSocket_ReportDebugOfLevel, (IPhotonSocket * __this, DebugLevel__Enum levelOfMessage, MethodInfo * method)); DO_APP_FUNC(0x01E5A350, void, IPhotonSocket_EnqueueDebugReturn, (IPhotonSocket * __this, DebugLevel__Enum debugLevel, String * message, MethodInfo * method)); DO_APP_FUNC(0x01E5A370, void, IPhotonSocket_HandleException, (IPhotonSocket * __this, StatusCode__Enum statusCode, MethodInfo * method)); -DO_APP_FUNC(0x01E5A430, bool, IPhotonSocket_TryParseAddress, (IPhotonSocket * __this, String * url, String * address, uint16_t port, String * urlProtocol, String * urlPath, MethodInfo * method)); -DO_APP_FUNC(0x01E5A850, bool, IPhotonSocket_IpAddressTryParse, (IPhotonSocket * __this, String * strIP, IPAddress * address, MethodInfo * method)); +DO_APP_FUNC(0x01E5A430, bool, IPhotonSocket_TryParseAddress, (IPhotonSocket * __this, String * url, String * * address, uint16_t * port, String * * urlProtocol, String * * urlPath, MethodInfo * method)); +DO_APP_FUNC(0x01E5A850, bool, IPhotonSocket_IpAddressTryParse, (IPhotonSocket * __this, String * strIP, IPAddress * * address, MethodInfo * method)); DO_APP_FUNC(0x01E5AB20, IPAddress__Array *, IPhotonSocket_GetIpAddresses, (IPhotonSocket * __this, String * hostname, MethodInfo * method)); DO_APP_FUNC(0x01E5B680, int32_t, IPhotonSocket_AddressSortComparer, (IPhotonSocket * __this, IPAddress * x, IPAddress * y, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0B58, IPhotonSocket_AddressSortComparer__MethodInfo); DO_APP_FUNC(0x01E5B6E0, void, IPhotonSocket__HandleException_b__52_0, (IPhotonSocket * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0B28, IPhotonSocket__HandleException_b__52_0__MethodInfo); DO_APP_FUNC(0x01E5B710, void, IPhotonSocket_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, IPhotonSocket_c__ctor, (IPhotonSocket_c * __this, MethodInfo * method)); DO_APP_FUNC(0x01E5B7C0, String *, IPhotonSocket_c__GetIpAddresses_b__55_0, (IPhotonSocket_c * __this, IPAddress * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0B60, IPhotonSocket_c__GetIpAddresses_b__55_0__MethodInfo); DO_APP_FUNC(0x01E5BB10, IProtocol *, SerializationProtocolFactory_Create, (SerializationProtocol__Enum serializationProtocol, MethodInfo * method)); DO_APP_FUNC(0x01E5BBB0, Byte__Array *, IProtocol_Serialize, (IProtocol * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x01E5BC50, Object *, IProtocol_DeserializeMessage, (IProtocol * __this, StreamBuffer * stream, MethodInfo * method)); DO_APP_FUNC(0x01E5BCB0, void, IProtocol__ctor, (IProtocol * __this, MethodInfo * method)); -DO_APP_FUNC(0x01E5BD60, NCommand *, NCommandPool_Acquire, (NCommandPool * __this, EnetPeer * peer, Byte__Array * inBuff, int32_t readingOffset, MethodInfo * method)); +DO_APP_FUNC(0x01E5BD60, NCommand *, NCommandPool_Acquire, (NCommandPool * __this, EnetPeer * peer, Byte__Array * inBuff, int32_t * readingOffset, MethodInfo * method)); DO_APP_FUNC(0x01E5C010, NCommand *, NCommandPool_Acquire_1, (NCommandPool * __this, EnetPeer * peer, uint8_t commandType, StreamBuffer * payload, uint8_t channel, MethodInfo * method)); DO_APP_FUNC(0x01E5C2E0, void, NCommandPool_Release, (NCommandPool * __this, NCommand * nCommand, MethodInfo * method)); DO_APP_FUNC(0x01E5C4B0, void, NCommandPool__ctor, (NCommandPool * __this, MethodInfo * method)); @@ -100491,10 +112468,10 @@ DO_APP_FUNC(0x01E5C5B0, bool, NCommand_get_IsFlaggedReliable, (NCommand * __this DO_APP_FUNC(0x01E5C5C0, void, NCommand_CreateAck, (Byte__Array * buffer, int32_t offset, NCommand * commandToAck, int32_t sentTime, MethodInfo * method)); DO_APP_FUNC(0x01E5C810, void, NCommand__ctor, (NCommand * __this, EnetPeer * peer, uint8_t commandType, StreamBuffer * payload, uint8_t channel, MethodInfo * method)); DO_APP_FUNC(0x01E5C830, void, NCommand_Initialize, (NCommand * __this, EnetPeer * peer, uint8_t commandType, StreamBuffer * payload, uint8_t channel, MethodInfo * method)); -DO_APP_FUNC(0x01E5CBC0, void, NCommand__ctor_1, (NCommand * __this, EnetPeer * peer, Byte__Array * inBuff, int32_t readingOffset, MethodInfo * method)); -DO_APP_FUNC(0x01E5CBE0, void, NCommand_Initialize_1, (NCommand * __this, EnetPeer * peer, Byte__Array * inBuff, int32_t readingOffset, MethodInfo * method)); +DO_APP_FUNC(0x01E5CBC0, void, NCommand__ctor_1, (NCommand * __this, EnetPeer * peer, Byte__Array * inBuff, int32_t * readingOffset, MethodInfo * method)); +DO_APP_FUNC(0x01E5CBE0, void, NCommand_Initialize_1, (NCommand * __this, EnetPeer * peer, Byte__Array * inBuff, int32_t * readingOffset, MethodInfo * method)); DO_APP_FUNC(0x01E5D090, void, NCommand_Reset, (NCommand * __this, MethodInfo * method)); -DO_APP_FUNC(0x01E5D0D0, void, NCommand_SerializeHeader, (NCommand * __this, Byte__Array * buffer, int32_t bufferIndex, MethodInfo * method)); +DO_APP_FUNC(0x01E5D0D0, void, NCommand_SerializeHeader, (NCommand * __this, Byte__Array * buffer, int32_t * bufferIndex, MethodInfo * method)); DO_APP_FUNC(0x01E5D390, Byte__Array *, NCommand_Serialize, (NCommand * __this, MethodInfo * method)); DO_APP_FUNC(0x01E5D3B0, void, NCommand_FreePayload, (NCommand * __this, MethodInfo * method)); DO_APP_FUNC(0x01E5D470, void, NCommand_Release, (NCommand * __this, MethodInfo * method)); @@ -100532,7 +112509,7 @@ DO_APP_FUNC(0x01E5F120, void, ParameterDictionary_Add, (ParameterDictionary * __ DO_APP_FUNC(0x01E5F2A0, void, ParameterDictionary_Add_1, (ParameterDictionary * __this, uint8_t code, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01E5F400, void, ParameterDictionary_Add_2, (ParameterDictionary * __this, uint8_t code, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01E5F530, bool, ParameterDictionary_ContainsKey, (ParameterDictionary * __this, uint8_t key, MethodInfo * method)); -DO_APP_FUNC(0x01E5F5B0, bool, ParameterDictionary_TryGetValue, (ParameterDictionary * __this, uint8_t key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x01E5F5B0, bool, ParameterDictionary_TryGetValue, (ParameterDictionary * __this, uint8_t key, Object * * value, MethodInfo * method)); DO_APP_FUNC(0x01E5F620, void, PhotonCodes__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003BB330, String *, PeerBase_get_ServerAddress, (PeerBase * __this, MethodInfo * method)); DO_APP_FUNC(0x00424C30, void, PeerBase_set_ServerAddress, (PeerBase * __this, String * value, MethodInfo * method)); @@ -100553,6 +112530,7 @@ DO_APP_FUNC(0x01E60230, void, PeerBase_Reset, (PeerBase * __this, MethodInfo * m DO_APP_FUNC(0x01E60780, String *, PeerBase_GetHttpKeyValueString, (PeerBase * __this, Dictionary_2_System_String_System_String_ * dic, MethodInfo * method)); DO_APP_FUNC(0x01E60A00, Byte__Array *, PeerBase_WriteInitRequest, (PeerBase * __this, MethodInfo * method)); DO_APP_FUNC(0x01E61130, Byte__Array *, PeerBase_WriteInitV3, (PeerBase * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0968, PeerBase_WriteInitV3__MethodInfo); DO_APP_FUNC(0x01E61760, String *, PeerBase_PepareWebSocketUrl, (PeerBase * __this, String * serverAddress, String * appId, Object * photonToken, MethodInfo * method)); DO_APP_FUNC(0x01E61970, void, PeerBase_InitCallback, (PeerBase * __this, MethodInfo * method)); DO_APP_FUNC(0x01E61A00, StreamBuffer *, PeerBase_SerializeOperationToMessage, (PeerBase * __this, uint8_t opCode, Dictionary_2_System_Byte_System_Object_ * parameters, EgMessageType__Enum messageType, bool encrypt, MethodInfo * method)); @@ -100568,8 +112546,11 @@ DO_APP_FUNC(0x01E63DA0, void, PeerBase_EnqueueDebugReturn, (PeerBase * __this, D DO_APP_FUNC(0x01E64080, void, PeerBase_EnqueueStatusCallback, (PeerBase * __this, StatusCode__Enum statusValue, MethodInfo * method)); DO_APP_FUNC(0x01E64300, NetworkSimulationSet *, PeerBase_get_NetworkSimulationSettings, (PeerBase * __this, MethodInfo * method)); DO_APP_FUNC(0x01E64310, void, PeerBase_SendNetworkSimulated, (PeerBase * __this, Byte__Array * dataToSend, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE07D8, PeerBase_SendNetworkSimulated__MethodInfo); DO_APP_FUNC(0x01E647C0, void, PeerBase_ReceiveNetworkSimulated, (PeerBase * __this, Byte__Array * dataReceived, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE07C8, PeerBase_ReceiveNetworkSimulated__MethodInfo); DO_APP_FUNC(0x01E64C70, void, PeerBase_NetworkSimRun, (PeerBase * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0A78, PeerBase_NetworkSimRun__MethodInfo); DO_APP_FUNC(0x01E651D0, bool, PeerBase_get_TrafficStatsEnabled, (PeerBase * __this, MethodInfo * method)); DO_APP_FUNC(0x01E651F0, TrafficStats *, PeerBase_get_TrafficStatsIncoming, (PeerBase * __this, MethodInfo * method)); DO_APP_FUNC(0x01E65210, TrafficStats *, PeerBase_get_TrafficStatsOutgoing, (PeerBase * __this, MethodInfo * method)); @@ -100579,14 +112560,18 @@ DO_APP_FUNC(0x003F7AE0, void, PeerBase_MyAction__ctor, (PeerBase_MyAction * __th DO_APP_FUNC(0x003CB0B0, void, PeerBase_MyAction_Invoke, (PeerBase_MyAction * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, PeerBase_c_DisplayClass108_0__ctor, (PeerBase_c_DisplayClass108_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x01E653E0, void, PeerBase_c_DisplayClass108_0__EnqueueDebugReturn_b__0, (PeerBase_c_DisplayClass108_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0878, PeerBase_c_DisplayClass108_0__EnqueueDebugReturn_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, PeerBase_c_DisplayClass109_0__ctor, (PeerBase_c_DisplayClass109_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x01E65450, void, PeerBase_c_DisplayClass109_0__EnqueueStatusCallback_b__0, (PeerBase_c_DisplayClass109_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0860, PeerBase_c_DisplayClass109_0__EnqueueStatusCallback_b__0__MethodInfo); DO_APP_FUNC(0x01E654C0, void, PhotonClientWebSocket__ctor, (PhotonClientWebSocket * __this, PeerBase * peerBase, MethodInfo * method)); DO_APP_FUNC(0x01E65540, bool, PhotonClientWebSocket_Connect, (PhotonClientWebSocket * __this, MethodInfo * method)); DO_APP_FUNC(0x01E65630, void, PhotonClientWebSocket_AsyncConnectAndReceive, (PhotonClientWebSocket * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE3178, PhotonClientWebSocket_AsyncConnectAndReceive__MethodInfo); DO_APP_FUNC(0x01E66A70, bool, PhotonClientWebSocket_Disconnect, (PhotonClientWebSocket * __this, MethodInfo * method)); DO_APP_FUNC(0x01E66C20, PhotonSocketError__Enum, PhotonClientWebSocket_Send, (PhotonClientWebSocket * __this, Byte__Array * data, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01E66EB0, PhotonSocketError__Enum, PhotonClientWebSocket_Receive, (PhotonClientWebSocket * __this, Byte__Array * data, MethodInfo * method)); +DO_APP_FUNC(0x01E66EB0, PhotonSocketError__Enum, PhotonClientWebSocket_Receive, (PhotonClientWebSocket * __this, Byte__Array * * data, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE3118, PhotonClientWebSocket_Receive__MethodInfo); DO_APP_FUNC(0x01E66F00, uint8_t, PhotonPeer_get_ClientSdkIdShifted, (PhotonPeer * __this, MethodInfo * method)); DO_APP_FUNC(0x01E66F10, String *, PhotonPeer_get_ClientVersion, (PhotonPeer * __this, MethodInfo * method)); DO_APP_FUNC(0x01E67300, String *, PhotonPeer_get_Version, (MethodInfo * method)); @@ -100646,16 +112631,20 @@ DO_APP_FUNC(0x01E6A1F0, void, PhotonPeer_OnDisconnectMessageCall, (PhotonPeer * DO_APP_FUNC(0x01E6A210, void, PhotonPeer_StopThread, (PhotonPeer * __this, MethodInfo * method)); DO_APP_FUNC(0x01E6A4E0, bool, PhotonPeer_EstablishEncryption, (PhotonPeer * __this, MethodInfo * method)); DO_APP_FUNC(0x01E6A610, bool, PhotonPeer_InitDatagramEncryption, (PhotonPeer * __this, Byte__Array * encryptionSecret, Byte__Array * hmacSecret, bool randomizedSequenceNumbers, bool chainingModeGCM, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2FB0, PhotonPeer_InitDatagramEncryption__MethodInfo); DO_APP_FUNC(0x003C4860, void, PhotonPeer_InitPayloadEncryption, (PhotonPeer * __this, Byte__Array * secret, MethodInfo * method)); DO_APP_FUNC(0x01E6ACC0, void, PhotonPeer_Service, (PhotonPeer * __this, MethodInfo * method)); DO_APP_FUNC(0x01E6AD10, bool, PhotonPeer_SendOutgoingCommands, (PhotonPeer * __this, MethodInfo * method)); DO_APP_FUNC(0x01E6AEF0, bool, PhotonPeer_SendAcksOnly, (PhotonPeer * __this, MethodInfo * method)); DO_APP_FUNC(0x01E6B0D0, bool, PhotonPeer_DispatchIncomingCommands, (PhotonPeer * __this, MethodInfo * method)); DO_APP_FUNC(0x01E6B2D0, bool, PhotonPeer_SendOperation, (PhotonPeer * __this, uint8_t operationCode, Dictionary_2_System_Byte_System_Object_ * operationParameters, SendOptions sendOptions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE3000, PhotonPeer_SendOperation__MethodInfo); DO_APP_FUNC(0x01E6B890, bool, PhotonPeer_SendOperation_1, (PhotonPeer * __this, uint8_t operationCode, ParameterDictionary * operationParameters, SendOptions sendOptions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2FF8, PhotonPeer_SendOperation_1__MethodInfo); DO_APP_FUNC(0x01E6BE50, bool, PhotonPeer_RegisterType, (Type * customType, uint8_t code, SerializeStreamMethod * serializeMethod, DeserializeStreamMethod * constructor, MethodInfo * method)); DO_APP_FUNC(0x01E6BEE0, void, PhotonPeer__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01E6BF70, bool, PhotonPeer__EstablishEncryption_b__220_0, (PhotonPeer * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2FF0, PhotonPeer__EstablishEncryption_b__220_0__MethodInfo); DO_APP_FUNC(0x003AE050, void, OperationRequest__ctor, (OperationRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x01E6BFA0, Object *, OperationResponse_get_Item, (OperationResponse * __this, uint8_t parameterCode, MethodInfo * method)); DO_APP_FUNC(0x01E6C010, String *, OperationResponse_ToString, (OperationResponse * __this, MethodInfo * method)); @@ -100678,18 +112667,21 @@ DO_APP_FUNC(0x01E6C7D0, void, DeserializeStreamMethod__ctor, (DeserializeStreamM DO_APP_FUNC(0x003ED330, Object *, DeserializeStreamMethod_Invoke, (DeserializeStreamMethod * __this, StreamBuffer * inStream, int16_t length, MethodInfo * method)); DO_APP_FUNC(0x01E6C990, void, CustomType__ctor, (CustomType * __this, Type * type, uint8_t code, SerializeStreamMethod * serializeFunction, DeserializeStreamMethod * deserializeFunction, MethodInfo * method)); DO_APP_FUNC(0x01E6CAA0, bool, Protocol_TryRegisterType, (Type * type, uint8_t typeCode, SerializeStreamMethod * serializeFunction, DeserializeStreamMethod * deserializeFunction, MethodInfo * method)); -DO_APP_FUNC(0x01E6CDF0, void, Protocol_Serialize, (int16_t value, Byte__Array * target, int32_t targetOffset, MethodInfo * method)); -DO_APP_FUNC(0x01E6CE50, void, Protocol_Serialize_1, (int32_t value, Byte__Array * target, int32_t targetOffset, MethodInfo * method)); -DO_APP_FUNC(0x01E6CEE0, void, Protocol_Serialize_2, (float value, Byte__Array * target, int32_t targetOffset, MethodInfo * method)); -DO_APP_FUNC(0x01E6D220, void, Protocol_Deserialize, (int32_t value, Byte__Array * source, int32_t offset, MethodInfo * method)); -DO_APP_FUNC(0x01E6D2C0, void, Protocol_Deserialize_1, (int16_t value, Byte__Array * source, int32_t offset, MethodInfo * method)); -DO_APP_FUNC(0x01E6D320, void, Protocol_Deserialize_2, (float value, Byte__Array * source, int32_t offset, MethodInfo * method)); +DO_APP_FUNC(0x01E6CDF0, void, Protocol_Serialize, (int16_t value, Byte__Array * target, int32_t * targetOffset, MethodInfo * method)); +DO_APP_FUNC(0x01E6CE50, void, Protocol_Serialize_1, (int32_t value, Byte__Array * target, int32_t * targetOffset, MethodInfo * method)); +DO_APP_FUNC(0x01E6CEE0, void, Protocol_Serialize_2, (float value, Byte__Array * target, int32_t * targetOffset, MethodInfo * method)); +DO_APP_FUNC(0x01E6D220, void, Protocol_Deserialize, (int32_t * value, Byte__Array * source, int32_t * offset, MethodInfo * method)); +DO_APP_FUNC(0x01E6D2C0, void, Protocol_Deserialize_1, (int16_t * value, Byte__Array * source, int32_t * offset, MethodInfo * method)); +DO_APP_FUNC(0x01E6D320, void, Protocol_Deserialize_2, (float * value, Byte__Array * source, int32_t * offset, MethodInfo * method)); DO_APP_FUNC(0x01E6D730, void, Protocol__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01E6DA30, String *, Protocol16_get_ProtocolType, (Protocol16 * __this, MethodInfo * method)); DO_APP_FUNC(0x014462E0, Byte__Array *, Protocol16_get_VersionBytes, (Protocol16 * __this, MethodInfo * method)); DO_APP_FUNC(0x01E6DA70, bool, Protocol16_SerializeCustom, (Protocol16 * __this, StreamBuffer * dout, Object * serObject, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2EA0, Protocol16_SerializeCustom__MethodInfo); DO_APP_FUNC(0x01E6DF70, Object *, Protocol16_DeserializeCustom, (Protocol16 * __this, StreamBuffer * din, uint8_t customTypeCode, IProtocol_DeserializationFlags__Enum flags, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2F30, Protocol16_DeserializeCustom__MethodInfo); DO_APP_FUNC(0x01E6E260, Type *, Protocol16_GetTypeOfCode, (Protocol16 * __this, uint8_t typeCode, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2E38, Protocol16_GetTypeOfCode__MethodInfo); DO_APP_FUNC(0x01E6E630, Protocol16_GpType__Enum, Protocol16_GetCodeOfType, (Protocol16 * __this, Type * type, MethodInfo * method)); DO_APP_FUNC(0x01E6E9F0, Array *, Protocol16_CreateArrayByType, (Protocol16 * __this, uint8_t arrayType, int16_t length, MethodInfo * method)); DO_APP_FUNC(0x01E6EA20, void, Protocol16_SerializeOperationRequest, (Protocol16 * __this, StreamBuffer * stream, OperationRequest * operation, bool setType, MethodInfo * method)); @@ -100706,16 +112698,20 @@ DO_APP_FUNC(0x01E6F800, void, Protocol16_SerializeParameterTable_1, (Protocol16 DO_APP_FUNC(0x01E6FBC0, Dictionary_2_System_Byte_System_Object_ *, Protocol16_DeserializeParameterTable, (Protocol16 * __this, StreamBuffer * stream, Dictionary_2_System_Byte_System_Object_ * target, MethodInfo * method)); DO_APP_FUNC(0x01E6FD40, ParameterDictionary *, Protocol16_DeserializeParameterDictionary, (Protocol16 * __this, StreamBuffer * stream, ParameterDictionary * target, IProtocol_DeserializationFlags__Enum flags, MethodInfo * method)); DO_APP_FUNC(0x01E6FE80, void, Protocol16_Serialize, (Protocol16 * __this, StreamBuffer * dout, Object * serObject, bool setType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2E08, Protocol16_Serialize__MethodInfo); DO_APP_FUNC(0x01E70B00, void, Protocol16_SerializeByte, (Protocol16 * __this, StreamBuffer * dout, uint8_t serObject, bool setType, MethodInfo * method)); DO_APP_FUNC(0x01E70BB0, void, Protocol16_SerializeBoolean, (Protocol16 * __this, StreamBuffer * dout, bool serObject, bool setType, MethodInfo * method)); DO_APP_FUNC(0x01E70C60, void, Protocol16_SerializeShort, (Protocol16 * __this, StreamBuffer * dout, int16_t serObject, bool setType, MethodInfo * method)); DO_APP_FUNC(0x01E70EB0, void, Protocol16_SerializeLengthAsShort, (Protocol16 * __this, StreamBuffer * dout, int32_t serObject, String * type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2E00, Protocol16_SerializeLengthAsShort__MethodInfo); DO_APP_FUNC(0x01E71130, void, Protocol16_SerializeInteger, (Protocol16 * __this, StreamBuffer * dout, int32_t serObject, bool setType, MethodInfo * method)); DO_APP_FUNC(0x01E713B0, void, Protocol16_SerializeLong, (Protocol16 * __this, StreamBuffer * dout, int64_t serObject, bool setType, MethodInfo * method)); DO_APP_FUNC(0x01E718E0, void, Protocol16_SerializeFloat, (Protocol16 * __this, StreamBuffer * dout, float serObject, bool setType, MethodInfo * method)); DO_APP_FUNC(0x01E71EB0, void, Protocol16_SerializeDouble, (Protocol16 * __this, StreamBuffer * dout, double serObject, bool setType, MethodInfo * method)); DO_APP_FUNC(0x01E723F0, void, Protocol16_SerializeString, (Protocol16 * __this, StreamBuffer * stream, String * value, bool setType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2DF0, Protocol16_SerializeString__MethodInfo); DO_APP_FUNC(0x01E725D0, void, Protocol16_SerializeArray, (Protocol16 * __this, StreamBuffer * dout, Array * serObject, bool setType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2D38, Protocol16_SerializeArray__MethodInfo); DO_APP_FUNC(0x01E72D20, void, Protocol16_SerializeByteArray, (Protocol16 * __this, StreamBuffer * dout, Byte__Array * serObject, bool setType, MethodInfo * method)); DO_APP_FUNC(0x01E72DE0, void, Protocol16_SerializeByteArraySegment, (Protocol16 * __this, StreamBuffer * dout, Byte__Array * serObject, int32_t offset, int32_t count, bool setType, MethodInfo * method)); DO_APP_FUNC(0x01E72EC0, void, Protocol16_SerializeIntArrayOptimized, (Protocol16 * __this, StreamBuffer * inWriter, Int32__Array * serObject, bool setType, MethodInfo * method)); @@ -100723,9 +112719,12 @@ DO_APP_FUNC(0x01E73120, void, Protocol16_SerializeObjectArray, (Protocol16 * __t DO_APP_FUNC(0x01E73370, void, Protocol16_SerializeHashTable, (Protocol16 * __this, StreamBuffer * dout, Hashtable_1 * serObject, bool setType, MethodInfo * method)); DO_APP_FUNC(0x01E736E0, void, Protocol16_SerializeDictionary, (Protocol16 * __this, StreamBuffer * dout, IDictionary * serObject, bool setType, MethodInfo * method)); DO_APP_FUNC(0x01E737B0, void, Protocol16_SerializeDictionaryHeader, (Protocol16 * __this, StreamBuffer * writer, Type * dictType, MethodInfo * method)); -DO_APP_FUNC(0x01E737E0, void, Protocol16_SerializeDictionaryHeader_1, (Protocol16 * __this, StreamBuffer * writer, Object * dict, bool setKeyType, bool setValueType, MethodInfo * method)); +DO_APP_FUNC(0x01E737E0, void, Protocol16_SerializeDictionaryHeader_1, (Protocol16 * __this, StreamBuffer * writer, Object * dict, bool * setKeyType, bool * setValueType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2D10, Protocol16_SerializeDictionaryHeader_1__MethodInfo); DO_APP_FUNC(0x01E73BA0, void, Protocol16_SerializeDictionaryElements, (Protocol16 * __this, StreamBuffer * writer, Object * dict, bool setKeyType, bool setValueType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2D80, Protocol16_SerializeDictionaryElements__MethodInfo); DO_APP_FUNC(0x01E73F10, Object *, Protocol16_Deserialize, (Protocol16 * __this, StreamBuffer * din, uint8_t type, IProtocol_DeserializationFlags__Enum flags, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2D48, Protocol16_Deserialize__MethodInfo); DO_APP_FUNC(0x01E74960, uint8_t, Protocol16_DeserializeByte, (Protocol16 * __this, StreamBuffer * din, MethodInfo * method)); DO_APP_FUNC(0x01E74980, bool, Protocol16_DeserializeBoolean, (Protocol16 * __this, StreamBuffer * din, MethodInfo * method)); DO_APP_FUNC(0x01E749B0, int16_t, Protocol16_DeserializeShort, (Protocol16 * __this, StreamBuffer * din, MethodInfo * method)); @@ -100734,15 +112733,19 @@ DO_APP_FUNC(0x01E74DD0, int64_t, Protocol16_DeserializeLong, (Protocol16 * __thi DO_APP_FUNC(0x01E75160, float, Protocol16_DeserializeFloat, (Protocol16 * __this, StreamBuffer * din, MethodInfo * method)); DO_APP_FUNC(0x01E754B0, double, Protocol16_DeserializeDouble, (Protocol16 * __this, StreamBuffer * din, MethodInfo * method)); DO_APP_FUNC(0x01E758A0, String *, Protocol16_DeserializeString, (Protocol16 * __this, StreamBuffer * din, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2CE0, Protocol16_DeserializeString__MethodInfo); DO_APP_FUNC(0x01E75A10, Array *, Protocol16_DeserializeArray, (Protocol16 * __this, StreamBuffer * din, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2CC8, Protocol16_DeserializeArray__MethodInfo); DO_APP_FUNC(0x01E76420, Byte__Array *, Protocol16_DeserializeByteArray, (Protocol16 * __this, StreamBuffer * din, int32_t size, MethodInfo * method)); DO_APP_FUNC(0x01E764E0, Int32__Array *, Protocol16_DeserializeIntArray, (Protocol16 * __this, StreamBuffer * din, int32_t size, MethodInfo * method)); DO_APP_FUNC(0x01E765A0, String__Array *, Protocol16_DeserializeStringArray, (Protocol16 * __this, StreamBuffer * din, MethodInfo * method)); DO_APP_FUNC(0x01E76700, Object__Array *, Protocol16_DeserializeObjectArray, (Protocol16 * __this, StreamBuffer * din, MethodInfo * method)); DO_APP_FUNC(0x01E76890, Hashtable_1 *, Protocol16_DeserializeHashTable, (Protocol16 * __this, StreamBuffer * din, MethodInfo * method)); DO_APP_FUNC(0x01E76A00, IDictionary *, Protocol16_DeserializeDictionary, (Protocol16 * __this, StreamBuffer * din, MethodInfo * method)); -DO_APP_FUNC(0x01E76DF0, bool, Protocol16_DeserializeDictionaryArray, (Protocol16 * __this, StreamBuffer * din, int16_t size, Array * arrayResult, MethodInfo * method)); -DO_APP_FUNC(0x01E770A0, Type *, Protocol16_DeserializeDictionaryType, (Protocol16 * __this, StreamBuffer * reader, uint8_t keyTypeCode, uint8_t valTypeCode, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2D00, Protocol16_DeserializeDictionary__MethodInfo); +DO_APP_FUNC(0x01E76DF0, bool, Protocol16_DeserializeDictionaryArray, (Protocol16 * __this, StreamBuffer * din, int16_t size, Array * * arrayResult, MethodInfo * method)); +DO_APP_FUNC(0x01E770A0, Type *, Protocol16_DeserializeDictionaryType, (Protocol16 * __this, StreamBuffer * reader, uint8_t * keyTypeCode, uint8_t * valTypeCode, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2C70, Protocol16_DeserializeDictionaryType__MethodInfo); DO_APP_FUNC(0x01E77380, void, Protocol16__ctor, (Protocol16 * __this, MethodInfo * method)); DO_APP_FUNC(0x01E777E0, void, Protocol16__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01E77930, void, InvalidDataException_1__ctor, (InvalidDataException_1 * __this, String * message, MethodInfo * method)); @@ -100755,11 +112758,14 @@ DO_APP_FUNC(0x01E77AD0, Object *, Protocol18_Deserialize, (Protocol18 * __this, DO_APP_FUNC(0x01E77AF0, int16_t, Protocol18_DeserializeShort, (Protocol18 * __this, StreamBuffer * din, MethodInfo * method)); DO_APP_FUNC(0x01E74960, uint8_t, Protocol18_DeserializeByte, (Protocol18 * __this, StreamBuffer * din, MethodInfo * method)); DO_APP_FUNC(0x01E77B70, Type *, Protocol18_GetAllowedDictionaryKeyTypes, (Protocol18_GpType__Enum gpType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2C58, Protocol18_GetAllowedDictionaryKeyTypes__MethodInfo); DO_APP_FUNC(0x01E77D70, Type *, Protocol18_GetClrArrayType, (Protocol18_GpType__Enum gpType, MethodInfo * method)); DO_APP_FUNC(0x01E780D0, Protocol18_GpType__Enum, Protocol18_GetCodeOfType, (Protocol18 * __this, Type * type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2CA8, Protocol18_GetCodeOfType__MethodInfo); DO_APP_FUNC(0x01E78980, Protocol18_GpType__Enum, Protocol18_GetCodeOfTypeCode, (Protocol18 * __this, TypeCode__Enum type, MethodInfo * method)); DO_APP_FUNC(0x01E789F0, Object *, Protocol18_Read, (Protocol18 * __this, StreamBuffer * stream, IProtocol_DeserializationFlags__Enum flags, ParameterDictionary * parameters, MethodInfo * method)); DO_APP_FUNC(0x01E78A60, Object *, Protocol18_Read_1, (Protocol18 * __this, StreamBuffer * stream, uint8_t gpType, IProtocol_DeserializationFlags__Enum flags, ParameterDictionary * parameters, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2C38, Protocol18_Read_1__MethodInfo); DO_APP_FUNC(0x01E74980, bool, Protocol18_ReadBoolean, (Protocol18 * __this, StreamBuffer * stream, MethodInfo * method)); DO_APP_FUNC(0x01E74960, uint8_t, Protocol18_ReadByte, (Protocol18 * __this, StreamBuffer * stream, MethodInfo * method)); DO_APP_FUNC(0x01E77AF0, int16_t, Protocol18_ReadInt16, (Protocol18 * __this, StreamBuffer * stream, MethodInfo * method)); @@ -100769,6 +112775,7 @@ DO_APP_FUNC(0x01E79FD0, double, Protocol18_ReadDouble, (Protocol18 * __this, Str DO_APP_FUNC(0x01E7A0D0, ByteArraySlice *, Protocol18_ReadNonAllocByteArray, (Protocol18 * __this, StreamBuffer * stream, MethodInfo * method)); DO_APP_FUNC(0x01E7A170, Byte__Array *, Protocol18_ReadByteArray, (Protocol18 * __this, StreamBuffer * stream, MethodInfo * method)); DO_APP_FUNC(0x01E7A220, Object *, Protocol18_ReadCustomType, (Protocol18 * __this, StreamBuffer * stream, uint8_t gpType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2C28, Protocol18_ReadCustomType__MethodInfo); DO_APP_FUNC(0x01E7A540, EventData *, Protocol18_DeserializeEventData, (Protocol18 * __this, StreamBuffer * din, EventData * target, IProtocol_DeserializationFlags__Enum flags, MethodInfo * method)); DO_APP_FUNC(0x01E7A780, Dictionary_2_System_Byte_System_Object_ *, Protocol18_ReadParameterTable, (Protocol18 * __this, StreamBuffer * stream, Dictionary_2_System_Byte_System_Object_ * target, IProtocol_DeserializationFlags__Enum flags, MethodInfo * method)); DO_APP_FUNC(0x01E7A8F0, ParameterDictionary *, Protocol18_ReadParameterDictionary, (Protocol18 * __this, StreamBuffer * stream, ParameterDictionary * target, IProtocol_DeserializationFlags__Enum flags, MethodInfo * method)); @@ -100778,7 +112785,8 @@ DO_APP_FUNC(0x01E7ADB0, OperationResponse *, Protocol18_DeserializeOperationResp DO_APP_FUNC(0x01E7AFC0, DisconnectMessage *, Protocol18_DeserializeDisconnectMessage, (Protocol18 * __this, StreamBuffer * stream, MethodInfo * method)); DO_APP_FUNC(0x01E7B2A0, String *, Protocol18_ReadString, (Protocol18 * __this, StreamBuffer * stream, MethodInfo * method)); DO_APP_FUNC(0x01E7B380, Object *, Protocol18_ReadCustomTypeArray, (Protocol18 * __this, StreamBuffer * stream, MethodInfo * method)); -DO_APP_FUNC(0x01E7B900, Type *, Protocol18_ReadDictionaryType, (Protocol18 * __this, StreamBuffer * stream, Protocol18_GpType__Enum keyReadType, Protocol18_GpType__Enum valueReadType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2BF8, Protocol18_ReadCustomTypeArray__MethodInfo); +DO_APP_FUNC(0x01E7B900, Type *, Protocol18_ReadDictionaryType, (Protocol18 * __this, StreamBuffer * stream, Protocol18_GpType__Enum * keyReadType, Protocol18_GpType__Enum * valueReadType, MethodInfo * method)); DO_APP_FUNC(0x01E7BBC0, Type *, Protocol18_ReadDictionaryType_1, (Protocol18 * __this, StreamBuffer * stream, MethodInfo * method)); DO_APP_FUNC(0x01E7BE30, Type *, Protocol18_GetDictArrayType, (Protocol18 * __this, StreamBuffer * stream, MethodInfo * method)); DO_APP_FUNC(0x01E7BF30, IDictionary *, Protocol18_ReadDictionary, (Protocol18 * __this, StreamBuffer * stream, IProtocol_DeserializationFlags__Enum flags, ParameterDictionary * parameters, MethodInfo * method)); @@ -100796,8 +112804,10 @@ DO_APP_FUNC(0x01E7D0D0, int32_t, Protocol18_ReadInt1, (Protocol18 * __this, Stre DO_APP_FUNC(0x01E7D110, int32_t, Protocol18_ReadInt2, (Protocol18 * __this, StreamBuffer * stream, bool signNegative, MethodInfo * method)); DO_APP_FUNC(0x01E7D1E0, int32_t, Protocol18_ReadCompressedInt32, (Protocol18 * __this, StreamBuffer * stream, MethodInfo * method)); DO_APP_FUNC(0x01E7D200, uint32_t, Protocol18_ReadCompressedUInt32, (Protocol18 * __this, StreamBuffer * stream, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2BB8, Protocol18_ReadCompressedUInt32__MethodInfo); DO_APP_FUNC(0x01E7D540, int64_t, Protocol18_ReadCompressedInt64, (Protocol18 * __this, StreamBuffer * stream, MethodInfo * method)); DO_APP_FUNC(0x01E7D630, uint64_t, Protocol18_ReadCompressedUInt64, (Protocol18 * __this, StreamBuffer * stream, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2BA8, Protocol18_ReadCompressedUInt64__MethodInfo); DO_APP_FUNC(0x01E7D710, Int32__Array *, Protocol18_ReadCompressedInt32Array, (Protocol18 * __this, StreamBuffer * stream, MethodInfo * method)); DO_APP_FUNC(0x01E7D7D0, Int64__Array *, Protocol18_ReadCompressedInt64Array, (Protocol18 * __this, StreamBuffer * stream, MethodInfo * method)); DO_APP_FUNC(0x01E7D880, int32_t, Protocol18_DecodeZigZag32, (Protocol18 * __this, uint32_t value, MethodInfo * method)); @@ -100818,6 +112828,7 @@ DO_APP_FUNC(0x01E77A50, void, Protocol18_WriteInt16, (Protocol18 * __this, Strea DO_APP_FUNC(0x01E7FB40, void, Protocol18_WriteDouble, (Protocol18 * __this, StreamBuffer * stream, double value, bool writeType, MethodInfo * method)); DO_APP_FUNC(0x01E7FF20, void, Protocol18_WriteSingle, (Protocol18 * __this, StreamBuffer * stream, float value, bool writeType, MethodInfo * method)); DO_APP_FUNC(0x01E80300, void, Protocol18_WriteString, (Protocol18 * __this, StreamBuffer * stream, String * value, bool writeType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2BE8, Protocol18_WriteString__MethodInfo); DO_APP_FUNC(0x01E804B0, void, Protocol18_WriteHashtable, (Protocol18 * __this, StreamBuffer * stream, Object * value, bool writeType, MethodInfo * method)); DO_APP_FUNC(0x01E80830, void, Protocol18_WriteByteArray, (Protocol18 * __this, StreamBuffer * stream, Byte__Array * value, bool writeType, MethodInfo * method)); DO_APP_FUNC(0x01E808E0, void, Protocol18_WriteArraySegmentByte, (Protocol18 * __this, StreamBuffer * stream, ArraySegment_1_Byte_ seg, bool writeType, MethodInfo * method)); @@ -100829,16 +112840,21 @@ DO_APP_FUNC(0x01E80FB0, void, Protocol18_WriteInt16Array, (Protocol18 * __this, DO_APP_FUNC(0x01E81080, void, Protocol18_WriteSingleArray, (Protocol18 * __this, StreamBuffer * stream, Single__Array * values, bool setType, MethodInfo * method)); DO_APP_FUNC(0x01E81170, void, Protocol18_WriteDoubleArray, (Protocol18 * __this, StreamBuffer * stream, Double__Array * values, bool setType, MethodInfo * method)); DO_APP_FUNC(0x01E81260, void, Protocol18_WriteStringArray, (Protocol18 * __this, StreamBuffer * stream, Object * value0, bool writeType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2B68, Protocol18_WriteStringArray__MethodInfo); DO_APP_FUNC(0x01E81420, void, Protocol18_WriteObjectArray, (Protocol18 * __this, StreamBuffer * stream, IList * array, bool writeType, MethodInfo * method)); DO_APP_FUNC(0x01E81640, void, Protocol18_WriteArrayInArray, (Protocol18 * __this, StreamBuffer * stream, Object * value, bool writeType, MethodInfo * method)); DO_APP_FUNC(0x01E81770, void, Protocol18_WriteCustomTypeBody, (Protocol18 * __this, CustomType * customType, StreamBuffer * stream, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01E81CF0, void, Protocol18_WriteCustomType, (Protocol18 * __this, StreamBuffer * stream, Object * value, bool writeType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2B38, Protocol18_WriteCustomType__MethodInfo); DO_APP_FUNC(0x01E824A0, void, Protocol18_WriteCustomTypeArray, (Protocol18 * __this, StreamBuffer * stream, Object * value, bool writeType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2B90, Protocol18_WriteCustomTypeArray__MethodInfo); DO_APP_FUNC(0x01E82E30, bool, Protocol18_WriteArrayHeader, (Protocol18 * __this, StreamBuffer * stream, Type * type, MethodInfo * method)); DO_APP_FUNC(0x01E82F90, void, Protocol18_WriteDictionaryElements, (Protocol18 * __this, StreamBuffer * stream, IDictionary * dictionary, Protocol18_GpType__Enum keyWriteType, Protocol18_GpType__Enum valueWriteType, MethodInfo * method)); DO_APP_FUNC(0x01E83260, void, Protocol18_WriteDictionary, (Protocol18 * __this, StreamBuffer * stream, Object * dict, bool setType, MethodInfo * method)); -DO_APP_FUNC(0x01E833A0, void, Protocol18_WriteDictionaryHeader, (Protocol18 * __this, StreamBuffer * stream, Type * type, Protocol18_GpType__Enum keyWriteType, Protocol18_GpType__Enum valueWriteType, MethodInfo * method)); -DO_APP_FUNC(0x01E83B50, bool, Protocol18_WriteArrayType, (Protocol18 * __this, StreamBuffer * stream, Type * type, Protocol18_GpType__Enum writeType, MethodInfo * method)); +DO_APP_FUNC(0x01E833A0, void, Protocol18_WriteDictionaryHeader, (Protocol18 * __this, StreamBuffer * stream, Type * type, Protocol18_GpType__Enum * keyWriteType, Protocol18_GpType__Enum * valueWriteType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2B88, Protocol18_WriteDictionaryHeader__MethodInfo); +DO_APP_FUNC(0x01E83B50, bool, Protocol18_WriteArrayType, (Protocol18 * __this, StreamBuffer * stream, Type * type, Protocol18_GpType__Enum * writeType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2B70, Protocol18_WriteArrayType__MethodInfo); DO_APP_FUNC(0x01E84050, void, Protocol18_WriteHashtableArray, (Protocol18 * __this, StreamBuffer * stream, Object * value, bool writeType, MethodInfo * method)); DO_APP_FUNC(0x01E841A0, void, Protocol18_WriteDictionaryArray, (Protocol18 * __this, StreamBuffer * stream, IDictionary__Array * dictArray, bool writeType, MethodInfo * method)); DO_APP_FUNC(0x01E842E0, void, Protocol18_WriteIntLength, (Protocol18 * __this, StreamBuffer * stream, int32_t value, MethodInfo * method)); @@ -100851,7 +112867,7 @@ DO_APP_FUNC(0x01E84B10, uint32_t, Protocol18_EncodeZigZag32, (Protocol18 * __thi DO_APP_FUNC(0x01E84B20, uint64_t, Protocol18_EncodeZigZag64, (Protocol18 * __this, int64_t value, MethodInfo * method)); DO_APP_FUNC(0x01E84B40, void, Protocol18__ctor, (Protocol18 * __this, MethodInfo * method)); DO_APP_FUNC(0x01E84E20, void, Protocol18__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x01E84F00, void, SendOptions_set_Reliability, (SendOptions__Boxed * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x01E84F00, void, SendOptions_set_Reliability, (SendOptions * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x01E84F10, void, SendOptions__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01E84F80, void, SocketTcp__ctor, (SocketTcp * __this, PeerBase * npeer, MethodInfo * method)); DO_APP_FUNC(0x01E850A0, void, SocketTcp_Finalize, (SocketTcp * __this, MethodInfo * method)); @@ -100859,19 +112875,23 @@ DO_APP_FUNC(0x01E850E0, void, SocketTcp_Dispose, (SocketTcp * __this, MethodInfo DO_APP_FUNC(0x01E85200, bool, SocketTcp_Connect, (SocketTcp * __this, MethodInfo * method)); DO_APP_FUNC(0x01E85450, bool, SocketTcp_Disconnect, (SocketTcp * __this, MethodInfo * method)); DO_APP_FUNC(0x01E856F0, PhotonSocketError__Enum, SocketTcp_Send, (SocketTcp * __this, Byte__Array * data, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01E85C40, PhotonSocketError__Enum, SocketTcp_Receive, (SocketTcp * __this, Byte__Array * data, MethodInfo * method)); +DO_APP_FUNC(0x01E85C40, PhotonSocketError__Enum, SocketTcp_Receive, (SocketTcp * __this, Byte__Array * * data, MethodInfo * method)); DO_APP_FUNC(0x01E85CA0, void, SocketTcp_DnsAndConnect, (SocketTcp * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4030, SocketTcp_DnsAndConnect__MethodInfo); DO_APP_FUNC(0x01E864F0, void, SocketTcp_ReceiveLoop, (SocketTcp * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE3F30, SocketTcp_ReceiveLoop__MethodInfo); DO_APP_FUNC(0x01E87180, void, SocketTcpAsync__ctor, (SocketTcpAsync * __this, PeerBase * npeer, MethodInfo * method)); DO_APP_FUNC(0x01E850A0, void, SocketTcpAsync_Finalize, (SocketTcpAsync * __this, MethodInfo * method)); DO_APP_FUNC(0x01E850E0, void, SocketTcpAsync_Dispose, (SocketTcpAsync * __this, MethodInfo * method)); DO_APP_FUNC(0x01E872A0, bool, SocketTcpAsync_Connect, (SocketTcpAsync * __this, MethodInfo * method)); DO_APP_FUNC(0x01E874F0, bool, SocketTcpAsync_Disconnect, (SocketTcpAsync * __this, MethodInfo * method)); DO_APP_FUNC(0x01E856F0, PhotonSocketError__Enum, SocketTcpAsync_Send, (SocketTcpAsync * __this, Byte__Array * data, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01E85C40, PhotonSocketError__Enum, SocketTcpAsync_Receive, (SocketTcpAsync * __this, Byte__Array * data, MethodInfo * method)); +DO_APP_FUNC(0x01E85C40, PhotonSocketError__Enum, SocketTcpAsync_Receive, (SocketTcpAsync * __this, Byte__Array * * data, MethodInfo * method)); DO_APP_FUNC(0x01E87790, void, SocketTcpAsync_DnsAndConnect, (SocketTcpAsync * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE3E88, SocketTcpAsync_DnsAndConnect__MethodInfo); DO_APP_FUNC(0x01E87F50, void, SocketTcpAsync_ReceiveAsync, (SocketTcpAsync * __this, SocketTcpAsync_ReceiveContext * context, MethodInfo * method)); DO_APP_FUNC(0x01E88490, void, SocketTcpAsync_ReceiveAsync_1, (SocketTcpAsync * __this, IAsyncResult * ar, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE3E58, SocketTcpAsync_ReceiveAsync_1__MethodInfo); DO_APP_FUNC(0x01E88EF0, void, SocketTcpAsync_ReceiveContext__ctor, (SocketTcpAsync_ReceiveContext * __this, Socket * socket, Byte__Array * headerBuffer, Byte__Array * messageBuffer, MethodInfo * method)); DO_APP_FUNC(0x01E89000, bool, SocketTcpAsync_ReceiveContext_get_ReadingHeader, (SocketTcpAsync_ReceiveContext * __this, MethodInfo * method)); DO_APP_FUNC(0x01E89010, Byte__Array *, SocketTcpAsync_ReceiveContext_get_CurrentBuffer, (SocketTcpAsync_ReceiveContext * __this, MethodInfo * method)); @@ -100884,49 +112904,58 @@ DO_APP_FUNC(0x01E891D0, void, SocketUdp_Dispose, (SocketUdp * __this, MethodInfo DO_APP_FUNC(0x01E892F0, bool, SocketUdp_Connect, (SocketUdp * __this, MethodInfo * method)); DO_APP_FUNC(0x01E89540, bool, SocketUdp_Disconnect, (SocketUdp * __this, MethodInfo * method)); DO_APP_FUNC(0x01E89840, PhotonSocketError__Enum, SocketUdp_Send, (SocketUdp * __this, Byte__Array * data, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01E85C40, PhotonSocketError__Enum, SocketUdp_Receive, (SocketUdp * __this, Byte__Array * data, MethodInfo * method)); +DO_APP_FUNC(0x01E85C40, PhotonSocketError__Enum, SocketUdp_Receive, (SocketUdp * __this, Byte__Array * * data, MethodInfo * method)); DO_APP_FUNC(0x01E89DD0, void, SocketUdp_DnsAndConnect, (SocketUdp * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE3EA0, SocketUdp_DnsAndConnect__MethodInfo); DO_APP_FUNC(0x01E8A4F0, void, SocketUdp_ReceiveLoop, (SocketUdp * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE3E10, SocketUdp_ReceiveLoop__MethodInfo); DO_APP_FUNC(0x01E8AF90, void, SocketUdpAsync__ctor, (SocketUdpAsync * __this, PeerBase * npeer, MethodInfo * method)); DO_APP_FUNC(0x01E850A0, void, SocketUdpAsync_Finalize, (SocketUdpAsync * __this, MethodInfo * method)); DO_APP_FUNC(0x01E850E0, void, SocketUdpAsync_Dispose, (SocketUdpAsync * __this, MethodInfo * method)); DO_APP_FUNC(0x01E8B0B0, bool, SocketUdpAsync_Connect, (SocketUdpAsync * __this, MethodInfo * method)); DO_APP_FUNC(0x01E8B300, bool, SocketUdpAsync_Disconnect, (SocketUdpAsync * __this, MethodInfo * method)); DO_APP_FUNC(0x01E89840, PhotonSocketError__Enum, SocketUdpAsync_Send, (SocketUdpAsync * __this, Byte__Array * data, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01E85C40, PhotonSocketError__Enum, SocketUdpAsync_Receive, (SocketUdpAsync * __this, Byte__Array * data, MethodInfo * method)); +DO_APP_FUNC(0x01E85C40, PhotonSocketError__Enum, SocketUdpAsync_Receive, (SocketUdpAsync * __this, Byte__Array * * data, MethodInfo * method)); DO_APP_FUNC(0x01E8B5A0, void, SocketUdpAsync_DnsAndConnect, (SocketUdpAsync * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE3E48, SocketUdpAsync_DnsAndConnect__MethodInfo); DO_APP_FUNC(0x01E8BC10, void, SocketUdpAsync_StartReceive, (SocketUdpAsync * __this, MethodInfo * method)); DO_APP_FUNC(0x01E8BFE0, void, SocketUdpAsync_OnReceive, (SocketUdpAsync * __this, IAsyncResult * ar, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE3E38, SocketUdpAsync_OnReceive__MethodInfo); DO_APP_FUNC(0x01E8D0C0, void, SocketUdpBlocking__ctor, (SocketUdpBlocking * __this, PeerBase * npeer, MethodInfo * method)); DO_APP_FUNC(0x01E89190, void, SocketUdpBlocking_Finalize, (SocketUdpBlocking * __this, MethodInfo * method)); DO_APP_FUNC(0x01E891D0, void, SocketUdpBlocking_Dispose, (SocketUdpBlocking * __this, MethodInfo * method)); DO_APP_FUNC(0x01E8D1E0, bool, SocketUdpBlocking_Connect, (SocketUdpBlocking * __this, MethodInfo * method)); DO_APP_FUNC(0x01E8D430, bool, SocketUdpBlocking_Disconnect, (SocketUdpBlocking * __this, MethodInfo * method)); DO_APP_FUNC(0x01E89840, PhotonSocketError__Enum, SocketUdpBlocking_Send, (SocketUdpBlocking * __this, Byte__Array * data, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01E85C40, PhotonSocketError__Enum, SocketUdpBlocking_Receive, (SocketUdpBlocking * __this, Byte__Array * data, MethodInfo * method)); +DO_APP_FUNC(0x01E85C40, PhotonSocketError__Enum, SocketUdpBlocking_Receive, (SocketUdpBlocking * __this, Byte__Array * * data, MethodInfo * method)); DO_APP_FUNC(0x01E8D730, void, SocketUdpBlocking_DnsAndConnect, (SocketUdpBlocking * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE3D80, SocketUdpBlocking_DnsAndConnect__MethodInfo); DO_APP_FUNC(0x01E8DE50, void, SocketUdpBlocking_ReceiveLoop, (SocketUdpBlocking * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE3D70, SocketUdpBlocking_ReceiveLoop__MethodInfo); DO_APP_FUNC(0x01E8E8F0, void, StreamBuffer__ctor, (StreamBuffer * __this, int32_t size, MethodInfo * method)); DO_APP_FUNC(0x01E8E990, void, StreamBuffer__ctor_1, (StreamBuffer * __this, Byte__Array * buf, MethodInfo * method)); DO_APP_FUNC(0x01E8EA00, Byte__Array *, StreamBuffer_ToArray, (StreamBuffer * __this, MethodInfo * method)); DO_APP_FUNC(0x01E8EA70, Byte__Array *, StreamBuffer_ToArrayFromPos, (StreamBuffer * __this, MethodInfo * method)); DO_APP_FUNC(0x01E8EB10, void, StreamBuffer_Compact, (StreamBuffer * __this, MethodInfo * method)); DO_APP_FUNC(0x014462E0, Byte__Array *, StreamBuffer_GetBuffer, (StreamBuffer * __this, MethodInfo * method)); -DO_APP_FUNC(0x01E8EB90, Byte__Array *, StreamBuffer_GetBufferAndAdvance, (StreamBuffer * __this, int32_t length, int32_t offset, MethodInfo * method)); +DO_APP_FUNC(0x01E8EB90, Byte__Array *, StreamBuffer_GetBufferAndAdvance, (StreamBuffer * __this, int32_t length, int32_t * offset, MethodInfo * method)); DO_APP_FUNC(0x0143B290, int32_t, StreamBuffer_get_Length, (StreamBuffer * __this, MethodInfo * method)); DO_APP_FUNC(0x01E8EBD0, int32_t, StreamBuffer_get_Position, (StreamBuffer * __this, MethodInfo * method)); DO_APP_FUNC(0x01E8EBE0, void, StreamBuffer_set_Position, (StreamBuffer * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01E8EC00, int32_t, StreamBuffer_get_Available, (StreamBuffer * __this, MethodInfo * method)); DO_APP_FUNC(0x01E8EC10, int64_t, StreamBuffer_Seek, (StreamBuffer * __this, int64_t offset, SeekOrigin__Enum origin, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE3DE0, StreamBuffer_Seek__MethodInfo); DO_APP_FUNC(0x01E8ED40, void, StreamBuffer_SetLength, (StreamBuffer * __this, int64_t value, MethodInfo * method)); DO_APP_FUNC(0x01E8ED70, void, StreamBuffer_SetCapacityMinimum, (StreamBuffer * __this, int32_t neededSize, MethodInfo * method)); DO_APP_FUNC(0x01E8ED80, int32_t, StreamBuffer_Read, (StreamBuffer * __this, Byte__Array * buffer, int32_t dstOffset, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x01E8EDE0, void, StreamBuffer_Write, (StreamBuffer * __this, Byte__Array * buffer, int32_t srcOffset, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x01E8EE60, uint8_t, StreamBuffer_ReadByte, (StreamBuffer * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE3DB0, StreamBuffer_ReadByte__MethodInfo); DO_APP_FUNC(0x01E8EF60, void, StreamBuffer_WriteByte, (StreamBuffer * __this, uint8_t value, MethodInfo * method)); DO_APP_FUNC(0x01E8EFC0, void, StreamBuffer_WriteBytes, (StreamBuffer * __this, uint8_t v0, uint8_t v1, MethodInfo * method)); DO_APP_FUNC(0x01E8F050, bool, StreamBuffer_CheckSize, (StreamBuffer * __this, int32_t size, MethodInfo * method)); DO_APP_FUNC(0x01E8F160, uint8_t, SupportClass_StartBackgroundCalls, (Func_1_Boolean_ * myThread, int32_t millisecondsInterval, String * taskName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE3CD0, SupportClass_StartBackgroundCalls__MethodInfo); DO_APP_FUNC(0x01E8F7F0, bool, SupportClass_StopBackgroundCalls, (uint8_t id, MethodInfo * method)); DO_APP_FUNC(0x01E8FBF0, bool, SupportClass_StopAllBackgroundCalls, (MethodInfo * method)); DO_APP_FUNC(0x01E8FFC0, void, SupportClass_WriteStackTrace, (Exception * throwable, TextWriter * stream, MethodInfo * method)); @@ -100944,8 +112973,10 @@ DO_APP_FUNC(0x01E921B0, void, SupportClass_ThreadSafeRandom__cctor, (MethodInfo DO_APP_FUNC(0x01E922C0, void, SupportClass_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SupportClass_c__ctor, (SupportClass_c * __this, MethodInfo * method)); DO_APP_FUNC(0x01E92370, int32_t, SupportClass_c___cctor_b__20_0, (SupportClass_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE3C88, SupportClass_c___cctor_b__20_0__MethodInfo); DO_APP_FUNC(0x003AE050, void, SupportClass_c_DisplayClass6_0__ctor, (SupportClass_c_DisplayClass6_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x01E923B0, void, SupportClass_c_DisplayClass6_0__StartBackgroundCalls_b__0, (SupportClass_c_DisplayClass6_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE3CF0, SupportClass_c_DisplayClass6_0__StartBackgroundCalls_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, PreserveAttribute_3__ctor, (PreserveAttribute_3 * __this, MethodInfo * method)); DO_APP_FUNC(0x01E92400, void, TPeer__ctor, (TPeer * __this, MethodInfo * method)); DO_APP_FUNC(0x01E925B0, bool, TPeer_IsTransportEncrypted, (TPeer * __this, MethodInfo * method)); @@ -100961,6 +112992,7 @@ DO_APP_FUNC(0x01E93380, bool, TPeer_SendOutgoingCommands, (TPeer * __this, Metho DO_APP_FUNC(0x01E93780, bool, TPeer_SendAcksOnly, (TPeer * __this, MethodInfo * method)); DO_APP_FUNC(0x01E937F0, bool, TPeer_EnqueuePhotonMessage, (TPeer * __this, StreamBuffer * opBytes, SendOptions sendParams, MethodInfo * method)); DO_APP_FUNC(0x01E93820, bool, TPeer_EnqueueMessageAsPayload, (TPeer * __this, DeliveryMode__Enum deliveryMode, StreamBuffer * opMessage, uint8_t channelId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE3C68, TPeer_EnqueueMessageAsPayload__MethodInfo); DO_APP_FUNC(0x01E93C90, void, TPeer_SendPing, (TPeer * __this, MethodInfo * method)); DO_APP_FUNC(0x01E94020, PhotonSocketError__Enum, TPeer_SendData, (TPeer * __this, Byte__Array * data, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x01E94220, void, TPeer_ReceiveIncomingCommands, (TPeer * __this, Byte__Array * inbuff, int32_t dataLength, MethodInfo * method)); @@ -101053,10 +113085,15 @@ DO_APP_FUNC(0x01E95980, void, StructWrapperPools_Clear, (StructWrapperPools * __ DO_APP_FUNC(0x01E95BB0, void, StructWrapperPools__ctor, (StructWrapperPools * __this, MethodInfo * method)); DO_APP_FUNC(0x01E95D30, void, StructWrapperPools__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01E9BE80, void, EncryptorNet_Init, (EncryptorNet * __this, Byte__Array * encryptionSecret, Byte__Array * hmacSecret, Byte__Array * ivBytes, bool chainingModeGCM, int32_t mtu, MethodInfo * method)); -DO_APP_FUNC(0x01E9BED0, void, EncryptorNet_Encrypt2, (EncryptorNet * __this, Byte__Array * data, int32_t len, Byte__Array * header, Byte__Array * output, int32_t outOffset, int32_t outSize, MethodInfo * method)); -DO_APP_FUNC(0x01E9BF20, Byte__Array *, EncryptorNet_Decrypt2, (EncryptorNet * __this, Byte__Array * data, int32_t offset, int32_t len, Byte__Array * header, int32_t outLen, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE3B60, EncryptorNet_Init__MethodInfo); +DO_APP_FUNC(0x01E9BED0, void, EncryptorNet_Encrypt2, (EncryptorNet * __this, Byte__Array * data, int32_t len, Byte__Array * header, Byte__Array * output, int32_t outOffset, int32_t * outSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE3B68, EncryptorNet_Encrypt2__MethodInfo); +DO_APP_FUNC(0x01E9BF20, Byte__Array *, EncryptorNet_Decrypt2, (EncryptorNet * __this, Byte__Array * data, int32_t offset, int32_t len, Byte__Array * header, int32_t * outLen, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE3B50, EncryptorNet_Decrypt2__MethodInfo); DO_APP_FUNC(0x01E9BF70, int32_t, EncryptorNet_CalculateEncryptedSize, (EncryptorNet * __this, int32_t unencryptedSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE3B58, EncryptorNet_CalculateEncryptedSize__MethodInfo); DO_APP_FUNC(0x01E9BFC0, int32_t, EncryptorNet_CalculateFragmentLength, (EncryptorNet * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE3BC8, EncryptorNet_CalculateFragmentLength__MethodInfo); DO_APP_FUNC(0x003AE050, void, EncryptorNet__ctor, (EncryptorNet * __this, MethodInfo * method)); DO_APP_FUNC(0x01E9C010, void, DiffieHellmanCryptoProvider__ctor, (DiffieHellmanCryptoProvider * __this, MethodInfo * method)); DO_APP_FUNC(0x01E9C370, void, DiffieHellmanCryptoProvider__ctor_1, (DiffieHellmanCryptoProvider * __this, Byte__Array * cryptoKey, MethodInfo * method)); @@ -101158,8 +113195,8 @@ DO_APP_FUNC(0x02DF8A50, void, FontAsset_SortAllTables, (FontAsset * __this, Meth DO_APP_FUNC(0x02DF8A90, bool, FontAsset_HasCharacter, (FontAsset * __this, int32_t character, MethodInfo * method)); DO_APP_FUNC(0x02DF8B10, bool, FontAsset_HasCharacter_1, (FontAsset * __this, uint16_t character, bool searchFallbacks, bool tryAddCharacter, MethodInfo * method)); DO_APP_FUNC(0x02DF9000, bool, FontAsset_HasCharacter_Internal, (FontAsset * __this, uint32_t character, bool searchFallbacks, bool tryAddCharacter, MethodInfo * method)); -DO_APP_FUNC(0x02DF93A0, bool, FontAsset_HasCharacters, (FontAsset * __this, String * text, List_1_System_Char_ * missingCharacters, MethodInfo * method)); -DO_APP_FUNC(0x02DF95F0, bool, FontAsset_HasCharacters_1, (FontAsset * __this, String * text, UInt32__Array * missingCharacters, bool searchFallbacks, bool tryAddCharacter, MethodInfo * method)); +DO_APP_FUNC(0x02DF93A0, bool, FontAsset_HasCharacters, (FontAsset * __this, String * text, List_1_System_Char_ * * missingCharacters, MethodInfo * method)); +DO_APP_FUNC(0x02DF95F0, bool, FontAsset_HasCharacters_1, (FontAsset * __this, String * text, UInt32__Array * * missingCharacters, bool searchFallbacks, bool tryAddCharacter, MethodInfo * method)); DO_APP_FUNC(0x02DF9C60, bool, FontAsset_HasCharacters_2, (FontAsset * __this, String * text, MethodInfo * method)); DO_APP_FUNC(0x02DF9D40, String *, FontAsset_GetCharacters, (FontAsset * fontAsset, MethodInfo * method)); DO_APP_FUNC(0x02DF9ED0, Int32__Array *, FontAsset_GetCharactersArray, (FontAsset * fontAsset, MethodInfo * method)); @@ -101170,11 +113207,11 @@ DO_APP_FUNC(0x02DFA420, void, FontAsset_RegisterAtlasTextureForApply, (Texture2D DO_APP_FUNC(0x02DFA580, void, FontAsset_UpdateAtlasTexturesInQueue, (MethodInfo * method)); DO_APP_FUNC(0x02DFA740, void, FontAsset_UpdateFontAssetInUpdateQueue, (MethodInfo * method)); DO_APP_FUNC(0x02DFA930, bool, FontAsset_TryAddCharacters, (FontAsset * __this, UInt32__Array * unicodes, bool includeFontFeatures, MethodInfo * method)); -DO_APP_FUNC(0x02DFA960, bool, FontAsset_TryAddCharacters_1, (FontAsset * __this, UInt32__Array * unicodes, UInt32__Array * missingUnicodes, bool includeFontFeatures, MethodInfo * method)); +DO_APP_FUNC(0x02DFA960, bool, FontAsset_TryAddCharacters_1, (FontAsset * __this, UInt32__Array * unicodes, UInt32__Array * * missingUnicodes, bool includeFontFeatures, MethodInfo * method)); DO_APP_FUNC(0x02DFB820, bool, FontAsset_TryAddCharacters_2, (FontAsset * __this, String * characters, bool includeFontFeatures, MethodInfo * method)); -DO_APP_FUNC(0x02DFB850, bool, FontAsset_TryAddCharacters_3, (FontAsset * __this, String * characters, String * missingCharacters, bool includeFontFeatures, MethodInfo * method)); -DO_APP_FUNC(0x02DFC790, bool, FontAsset_TryAddCharacterInternal, (FontAsset * __this, uint32_t unicode, Character * character, bool shouldGetFontFeatures, MethodInfo * method)); -DO_APP_FUNC(0x02DFD3D0, bool, FontAsset_TryGetCharacter_and_QueueRenderToTexture, (FontAsset * __this, uint32_t unicode, Character * character, bool shouldGetFontFeatures, MethodInfo * method)); +DO_APP_FUNC(0x02DFB850, bool, FontAsset_TryAddCharacters_3, (FontAsset * __this, String * characters, String * * missingCharacters, bool includeFontFeatures, MethodInfo * method)); +DO_APP_FUNC(0x02DFC790, bool, FontAsset_TryAddCharacterInternal, (FontAsset * __this, uint32_t unicode, Character * * character, bool shouldGetFontFeatures, MethodInfo * method)); +DO_APP_FUNC(0x02DFD3D0, bool, FontAsset_TryGetCharacter_and_QueueRenderToTexture, (FontAsset * __this, uint32_t unicode, Character * * character, bool shouldGetFontFeatures, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, FontAsset_TryAddGlyphsToAtlasTextures, (FontAsset * __this, MethodInfo * method)); DO_APP_FUNC(0x02DFD900, bool, FontAsset_TryAddGlyphsToNewAtlasTexture, (FontAsset * __this, MethodInfo * method)); DO_APP_FUNC(0x02DFDDF0, void, FontAsset_SetupNewAtlasTexture, (FontAsset * __this, MethodInfo * method)); @@ -101194,10 +113231,12 @@ DO_APP_FUNC(0x02DFFA20, void, FontAsset__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02E000E0, void, FontAsset_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, FontAsset_c__ctor, (FontAsset_c * __this, MethodInfo * method)); DO_APP_FUNC(0x02BD6F30, uint32_t, FontAsset_c__SortCharacterTable_b__144_0, (FontAsset_c * __this, Character * c, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D20A98, FontAsset_c__SortCharacterTable_b__144_0__MethodInfo); DO_APP_FUNC(0x01F6EA10, uint32_t, FontAsset_c__SortGlyphTable_b__145_0, (FontAsset_c * __this, Glyph * c, MethodInfo * method)); -DO_APP_FUNC(0x02E00190, Character *, FontAssetUtilities_GetCharacterFromFontAsset, (uint32_t unicode, FontAsset * sourceFontAsset, bool includeFallbacks, FontStyles__Enum_1 fontStyle, TextFontWeight__Enum fontWeight, bool isAlternativeTypeface, MethodInfo * method)); -DO_APP_FUNC(0x02E002F0, Character *, FontAssetUtilities_GetCharacterFromFontAsset_Internal, (uint32_t unicode, FontAsset * sourceFontAsset, bool includeFallbacks, FontStyles__Enum_1 fontStyle, TextFontWeight__Enum fontWeight, bool isAlternativeTypeface, MethodInfo * method)); -DO_APP_FUNC(0x02E00860, Character *, FontAssetUtilities_GetCharacterFromFontAssets, (uint32_t unicode, FontAsset * sourceFontAsset, List_1_UnityEngine_TextCore_Text_FontAsset_ * fontAssets, bool includeFallbacks, FontStyles__Enum_1 fontStyle, TextFontWeight__Enum fontWeight, bool isAlternativeTypeface, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D20AE0, FontAsset_c__SortGlyphTable_b__145_0__MethodInfo); +DO_APP_FUNC(0x02E00190, Character *, FontAssetUtilities_GetCharacterFromFontAsset, (uint32_t unicode, FontAsset * sourceFontAsset, bool includeFallbacks, FontStyles__Enum_1 fontStyle, TextFontWeight__Enum fontWeight, bool * isAlternativeTypeface, MethodInfo * method)); +DO_APP_FUNC(0x02E002F0, Character *, FontAssetUtilities_GetCharacterFromFontAsset_Internal, (uint32_t unicode, FontAsset * sourceFontAsset, bool includeFallbacks, FontStyles__Enum_1 fontStyle, TextFontWeight__Enum fontWeight, bool * isAlternativeTypeface, MethodInfo * method)); +DO_APP_FUNC(0x02E00860, Character *, FontAssetUtilities_GetCharacterFromFontAssets, (uint32_t unicode, FontAsset * sourceFontAsset, List_1_UnityEngine_TextCore_Text_FontAsset_ * fontAssets, bool includeFallbacks, FontStyles__Enum_1 fontStyle, TextFontWeight__Enum fontWeight, bool * isAlternativeTypeface, MethodInfo * method)); DO_APP_FUNC(0x02E00B10, SpriteCharacter *, FontAssetUtilities_GetSpriteCharacterFromSpriteAsset, (uint32_t unicode, SpriteAsset * spriteAsset, bool includeFallbacks, MethodInfo * method)); DO_APP_FUNC(0x02E00F60, SpriteCharacter *, FontAssetUtilities_GetSpriteCharacterFromSpriteAsset_Internal, (uint32_t unicode, SpriteAsset * spriteAsset, bool includeFallbacks, MethodInfo * method)); DO_APP_FUNC(0x015C0B20, List_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ *, FontFeatureTable_get_glyphPairAdjustmentRecords, (FontFeatureTable * __this, MethodInfo * method)); @@ -101206,15 +113245,17 @@ DO_APP_FUNC(0x02E01440, void, FontFeatureTable_SortGlyphPairAdjustmentRecords, ( DO_APP_FUNC(0x02E01900, void, FontFeatureTable_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, FontFeatureTable_c__ctor, (FontFeatureTable_c * __this, MethodInfo * method)); DO_APP_FUNC(0x02E019B0, uint32_t, FontFeatureTable_c__SortGlyphPairAdjustmentRecords_b__6_0, (FontFeatureTable_c * __this, GlyphPairAdjustmentRecord s, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D208B8, FontFeatureTable_c__SortGlyphPairAdjustmentRecords_b__6_0__MethodInfo); DO_APP_FUNC(0x02E019C0, uint32_t, FontFeatureTable_c__SortGlyphPairAdjustmentRecords_b__6_1, (FontFeatureTable_c * __this, GlyphPairAdjustmentRecord s, MethodInfo * method)); -DO_APP_FUNC(0x02E019D0, String *, Extents_1_ToString, (Extents_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02E01D50, void, LinkInfo_SetLinkId, (LinkInfo__Boxed * __this, Char__Array * text, int32_t startIndex, int32_t length, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D20918, FontFeatureTable_c__SortGlyphPairAdjustmentRecords_b__6_1__MethodInfo); +DO_APP_FUNC(0x02E019D0, String *, Extents_1_ToString, (Extents_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02E01D50, void, LinkInfo_SetLinkId, (LinkInfo * __this, Char__Array * text, int32_t startIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x02E01E70, Material *, MaterialManager_GetFallbackMaterial, (Material * sourceMaterial, Material * targetMaterial, MethodInfo * method)); DO_APP_FUNC(0x02E02310, Material *, MaterialManager_GetFallbackMaterial_1, (FontAsset * fontAsset, Material * sourceMaterial, int32_t atlasIndex, MethodInfo * method)); DO_APP_FUNC(0x02E02570, void, MaterialManager__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02E02660, void, MaterialReference_1__ctor, (MaterialReference_1__Boxed * __this, int32_t index, FontAsset * fontAsset, SpriteAsset * spriteAsset, Material * material, float padding, MethodInfo * method)); -DO_APP_FUNC(0x02E02830, int32_t, MaterialReference_1_AddMaterialReference, (Material * material, FontAsset * fontAsset, MaterialReference_1__Array * materialReferences, Dictionary_2_System_Int32_System_Int32_ * materialReferenceIndexLookup, MethodInfo * method)); -DO_APP_FUNC(0x02E02BE0, int32_t, MaterialReference_1_AddMaterialReference_1, (Material * material, SpriteAsset * spriteAsset, MaterialReference_1__Array * materialReferences, Dictionary_2_System_Int32_System_Int32_ * materialReferenceIndexLookup, MethodInfo * method)); +DO_APP_FUNC(0x02E02660, void, MaterialReference_1__ctor, (MaterialReference_1 * __this, int32_t index, FontAsset * fontAsset, SpriteAsset * spriteAsset, Material * material, float padding, MethodInfo * method)); +DO_APP_FUNC(0x02E02830, int32_t, MaterialReference_1_AddMaterialReference, (Material * material, FontAsset * fontAsset, MaterialReference_1__Array * * materialReferences, Dictionary_2_System_Int32_System_Int32_ * materialReferenceIndexLookup, MethodInfo * method)); +DO_APP_FUNC(0x02E02BE0, int32_t, MaterialReference_1_AddMaterialReference_1, (Material * material, SpriteAsset * spriteAsset, MaterialReference_1__Array * * materialReferences, Dictionary_2_System_Int32_System_Int32_ * materialReferenceIndexLookup, MethodInfo * method)); DO_APP_FUNC(0x02E02F70, MaterialReferenceManager_1 *, MaterialReferenceManager_1_get_instance, (MethodInfo * method)); DO_APP_FUNC(0x02E03060, void, MaterialReferenceManager_1_AddFontAsset, (FontAsset * fontAsset, MethodInfo * method)); DO_APP_FUNC(0x02E03090, void, MaterialReferenceManager_1_AddFontAssetInternal, (MaterialReferenceManager_1 * __this, FontAsset * fontAsset, MethodInfo * method)); @@ -101224,21 +113265,21 @@ DO_APP_FUNC(0x02E03590, void, MaterialReferenceManager_1_AddFontMaterial, (int32 DO_APP_FUNC(0x02E03620, void, MaterialReferenceManager_1_AddFontMaterialInternal, (MaterialReferenceManager_1 * __this, int32_t hashCode, Material * material, MethodInfo * method)); DO_APP_FUNC(0x02E036B0, void, MaterialReferenceManager_1_AddColorGradientPreset, (int32_t hashCode, TextColorGradient * spriteAsset, MethodInfo * method)); DO_APP_FUNC(0x02E037A0, void, MaterialReferenceManager_1_AddColorGradientPreset_Internal, (MaterialReferenceManager_1 * __this, int32_t hashCode, TextColorGradient * spriteAsset, MethodInfo * method)); -DO_APP_FUNC(0x02E03880, bool, MaterialReferenceManager_1_TryGetFontAsset, (int32_t hashCode, FontAsset * fontAsset, MethodInfo * method)); -DO_APP_FUNC(0x02E03940, bool, MaterialReferenceManager_1_TryGetFontAssetInternal, (MaterialReferenceManager_1 * __this, int32_t hashCode, FontAsset * fontAsset, MethodInfo * method)); -DO_APP_FUNC(0x02E039F0, bool, MaterialReferenceManager_1_TryGetSpriteAsset, (int32_t hashCode, SpriteAsset * spriteAsset, MethodInfo * method)); -DO_APP_FUNC(0x02E03AB0, bool, MaterialReferenceManager_1_TryGetSpriteAssetInternal, (MaterialReferenceManager_1 * __this, int32_t hashCode, SpriteAsset * spriteAsset, MethodInfo * method)); -DO_APP_FUNC(0x02E03B60, bool, MaterialReferenceManager_1_TryGetColorGradientPreset, (int32_t hashCode, TextColorGradient * gradientPreset, MethodInfo * method)); -DO_APP_FUNC(0x02E03C20, bool, MaterialReferenceManager_1_TryGetColorGradientPresetInternal, (MaterialReferenceManager_1 * __this, int32_t hashCode, TextColorGradient * gradientPreset, MethodInfo * method)); -DO_APP_FUNC(0x02E03CD0, bool, MaterialReferenceManager_1_TryGetMaterial, (int32_t hashCode, Material * material, MethodInfo * method)); -DO_APP_FUNC(0x02E03D90, bool, MaterialReferenceManager_1_TryGetMaterialInternal, (MaterialReferenceManager_1 * __this, int32_t hashCode, Material * material, MethodInfo * method)); +DO_APP_FUNC(0x02E03880, bool, MaterialReferenceManager_1_TryGetFontAsset, (int32_t hashCode, FontAsset * * fontAsset, MethodInfo * method)); +DO_APP_FUNC(0x02E03940, bool, MaterialReferenceManager_1_TryGetFontAssetInternal, (MaterialReferenceManager_1 * __this, int32_t hashCode, FontAsset * * fontAsset, MethodInfo * method)); +DO_APP_FUNC(0x02E039F0, bool, MaterialReferenceManager_1_TryGetSpriteAsset, (int32_t hashCode, SpriteAsset * * spriteAsset, MethodInfo * method)); +DO_APP_FUNC(0x02E03AB0, bool, MaterialReferenceManager_1_TryGetSpriteAssetInternal, (MaterialReferenceManager_1 * __this, int32_t hashCode, SpriteAsset * * spriteAsset, MethodInfo * method)); +DO_APP_FUNC(0x02E03B60, bool, MaterialReferenceManager_1_TryGetColorGradientPreset, (int32_t hashCode, TextColorGradient * * gradientPreset, MethodInfo * method)); +DO_APP_FUNC(0x02E03C20, bool, MaterialReferenceManager_1_TryGetColorGradientPresetInternal, (MaterialReferenceManager_1 * __this, int32_t hashCode, TextColorGradient * * gradientPreset, MethodInfo * method)); +DO_APP_FUNC(0x02E03CD0, bool, MaterialReferenceManager_1_TryGetMaterial, (int32_t hashCode, Material * * material, MethodInfo * method)); +DO_APP_FUNC(0x02E03D90, bool, MaterialReferenceManager_1_TryGetMaterialInternal, (MaterialReferenceManager_1 * __this, int32_t hashCode, Material * * material, MethodInfo * method)); DO_APP_FUNC(0x02E03E40, void, MaterialReferenceManager_1__ctor, (MaterialReferenceManager_1 * __this, MethodInfo * method)); -DO_APP_FUNC(0x02E04150, void, MeshInfo__ctor, (MeshInfo__Boxed * __this, int32_t size, MethodInfo * method)); -DO_APP_FUNC(0x02E04660, void, MeshInfo_ResizeMeshInfo, (MeshInfo__Boxed * __this, int32_t size, MethodInfo * method)); -DO_APP_FUNC(0x02E04870, void, MeshInfo_Clear, (MeshInfo__Boxed * __this, bool uploadChanges, MethodInfo * method)); -DO_APP_FUNC(0x02E048B0, void, MeshInfo_ClearUnusedVertices, (MeshInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02E048F0, void, MeshInfo_SortGeometry, (MeshInfo__Boxed * __this, VertexSortingOrder__Enum_1 order, MethodInfo * method)); -DO_APP_FUNC(0x02E049A0, void, MeshInfo_SwapVertexData, (MeshInfo__Boxed * __this, int32_t src, int32_t dst, MethodInfo * method)); +DO_APP_FUNC(0x02E04150, void, MeshInfo__ctor, (MeshInfo * __this, int32_t size, MethodInfo * method)); +DO_APP_FUNC(0x02E04660, void, MeshInfo_ResizeMeshInfo, (MeshInfo * __this, int32_t size, MethodInfo * method)); +DO_APP_FUNC(0x02E04870, void, MeshInfo_Clear, (MeshInfo * __this, bool uploadChanges, MethodInfo * method)); +DO_APP_FUNC(0x02E048B0, void, MeshInfo_ClearUnusedVertices, (MeshInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x02E048F0, void, MeshInfo_SortGeometry, (MeshInfo * __this, VertexSortingOrder__Enum_1 order, MethodInfo * method)); +DO_APP_FUNC(0x02E049A0, void, MeshInfo_SwapVertexData, (MeshInfo * __this, int32_t src, int32_t dst, MethodInfo * method)); DO_APP_FUNC(0x02E05190, void, MeshInfo__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02E051E0, FaceInfo, SpriteAsset_get_faceInfo, (SpriteAsset * __this, MethodInfo * method)); DO_APP_FUNC(0x02C1F5F0, void, SpriteAsset_set_faceInfo, (SpriteAsset * __this, FaceInfo value, MethodInfo * method)); @@ -101255,12 +113296,12 @@ DO_APP_FUNC(0x02E052A0, void, SpriteAsset_UpdateLookupTables, (SpriteAsset * __t DO_APP_FUNC(0x02E05A90, int32_t, SpriteAsset_GetSpriteIndexFromHashcode, (SpriteAsset * __this, int32_t hashCode, MethodInfo * method)); DO_APP_FUNC(0x02E05B50, int32_t, SpriteAsset_GetSpriteIndexFromUnicode, (SpriteAsset * __this, uint32_t unicode, MethodInfo * method)); DO_APP_FUNC(0x02E05BF0, int32_t, SpriteAsset_GetSpriteIndexFromName, (SpriteAsset * __this, String * name, MethodInfo * method)); -DO_APP_FUNC(0x02E05C30, SpriteAsset *, SpriteAsset_SearchForSpriteByUnicode, (SpriteAsset * spriteAsset, uint32_t unicode, bool includeFallbacks, int32_t spriteIndex, MethodInfo * method)); -DO_APP_FUNC(0x02E05EC0, SpriteAsset *, SpriteAsset_SearchForSpriteByUnicodeInternal, (List_1_UnityEngine_TextCore_Text_SpriteAsset_ * spriteAssets, uint32_t unicode, bool includeFallbacks, int32_t spriteIndex, MethodInfo * method)); -DO_APP_FUNC(0x02E061E0, SpriteAsset *, SpriteAsset_SearchForSpriteByUnicodeInternal_1, (SpriteAsset * spriteAsset, uint32_t unicode, bool includeFallbacks, int32_t spriteIndex, MethodInfo * method)); -DO_APP_FUNC(0x02E062A0, SpriteAsset *, SpriteAsset_SearchForSpriteByHashCode, (SpriteAsset * spriteAsset, int32_t hashCode, bool includeFallbacks, int32_t spriteIndex, TextSettings * textSettings, MethodInfo * method)); -DO_APP_FUNC(0x02E068B0, SpriteAsset *, SpriteAsset_SearchForSpriteByHashCodeInternal, (List_1_UnityEngine_TextCore_Text_SpriteAsset_ * spriteAssets, int32_t hashCode, bool searchFallbacks, int32_t spriteIndex, MethodInfo * method)); -DO_APP_FUNC(0x02E06BD0, SpriteAsset *, SpriteAsset_SearchForSpriteByHashCodeInternal_1, (SpriteAsset * spriteAsset, int32_t hashCode, bool searchFallbacks, int32_t spriteIndex, MethodInfo * method)); +DO_APP_FUNC(0x02E05C30, SpriteAsset *, SpriteAsset_SearchForSpriteByUnicode, (SpriteAsset * spriteAsset, uint32_t unicode, bool includeFallbacks, int32_t * spriteIndex, MethodInfo * method)); +DO_APP_FUNC(0x02E05EC0, SpriteAsset *, SpriteAsset_SearchForSpriteByUnicodeInternal, (List_1_UnityEngine_TextCore_Text_SpriteAsset_ * spriteAssets, uint32_t unicode, bool includeFallbacks, int32_t * spriteIndex, MethodInfo * method)); +DO_APP_FUNC(0x02E061E0, SpriteAsset *, SpriteAsset_SearchForSpriteByUnicodeInternal_1, (SpriteAsset * spriteAsset, uint32_t unicode, bool includeFallbacks, int32_t * spriteIndex, MethodInfo * method)); +DO_APP_FUNC(0x02E062A0, SpriteAsset *, SpriteAsset_SearchForSpriteByHashCode, (SpriteAsset * spriteAsset, int32_t hashCode, bool includeFallbacks, int32_t * spriteIndex, TextSettings * textSettings, MethodInfo * method)); +DO_APP_FUNC(0x02E068B0, SpriteAsset *, SpriteAsset_SearchForSpriteByHashCodeInternal, (List_1_UnityEngine_TextCore_Text_SpriteAsset_ * spriteAssets, int32_t hashCode, bool searchFallbacks, int32_t * spriteIndex, MethodInfo * method)); +DO_APP_FUNC(0x02E06BD0, SpriteAsset *, SpriteAsset_SearchForSpriteByHashCodeInternal_1, (SpriteAsset * spriteAsset, int32_t hashCode, bool searchFallbacks, int32_t * spriteIndex, MethodInfo * method)); DO_APP_FUNC(0x02E06C90, void, SpriteAsset_SortGlyphTable, (SpriteAsset * __this, MethodInfo * method)); DO_APP_FUNC(0x02E06F50, void, SpriteAsset_SortCharacterTable, (SpriteAsset * __this, MethodInfo * method)); DO_APP_FUNC(0x02E07210, void, SpriteAsset_SortGlyphAndCharacterTables, (SpriteAsset * __this, MethodInfo * method)); @@ -101268,7 +113309,9 @@ DO_APP_FUNC(0x02E07230, void, SpriteAsset__ctor, (SpriteAsset * __this, MethodIn DO_APP_FUNC(0x02E073C0, void, SpriteAsset_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SpriteAsset_c__ctor, (SpriteAsset_c * __this, MethodInfo * method)); DO_APP_FUNC(0x01F6EA10, uint32_t, SpriteAsset_c__SortGlyphTable_b__37_0, (SpriteAsset_c * __this, SpriteGlyph * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D204F0, SpriteAsset_c__SortGlyphTable_b__37_0__MethodInfo); DO_APP_FUNC(0x02BD6F30, uint32_t, SpriteAsset_c__SortCharacterTable_b__38_0, (SpriteAsset_c * __this, SpriteCharacter * c, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D20570, SpriteAsset_c__SortCharacterTable_b__38_0__MethodInfo); DO_APP_FUNC(0x02D4EDA0, String *, SpriteCharacter_get_name, (SpriteCharacter * __this, MethodInfo * method)); DO_APP_FUNC(0x02C223A0, void, SpriteCharacter__ctor, (SpriteCharacter * __this, MethodInfo * method)); DO_APP_FUNC(0x02C225E0, void, SpriteGlyph__ctor, (SpriteGlyph * __this, MethodInfo * method)); @@ -101309,18 +113352,18 @@ DO_APP_FUNC(0x02DE5B40, Vector2, TextGenerator_1_GetCursorPosition, (TextInfo_1 DO_APP_FUNC(0x02DE5D10, Vector2, TextGenerator_1_GetPreferredValues, (TextGenerationSettings_1 * settings, TextInfo_1 * textInfo, MethodInfo * method)); DO_APP_FUNC(0x02DE60F0, void, TextGenerator_1_Prepare, (TextGenerator_1 * __this, TextGenerationSettings_1 * generationSettings, TextInfo_1 * textInfo, MethodInfo * method)); DO_APP_FUNC(0x02DD9EC0, void, TextGenerator_1_GenerateTextMesh, (TextGenerator_1 * __this, TextGenerationSettings_1 * generationSettings, TextInfo_1 * textInfo, MethodInfo * method)); -DO_APP_FUNC(0x02DE6370, void, TextGenerator_1_SaveWordWrappingState, (TextGenerator_1 * __this, WordWrapState_1 state, int32_t index, int32_t count, TextInfo_1 * textInfo, MethodInfo * method)); -DO_APP_FUNC(0x02DE6CB0, int32_t, TextGenerator_1_RestoreWordWrappingState, (TextGenerator_1 * __this, WordWrapState_1 state, TextInfo_1 * textInfo, MethodInfo * method)); -DO_APP_FUNC(0x02DE75D0, bool, TextGenerator_1_ValidateHtmlTag, (TextGenerator_1 * __this, Int32__Array * chars, int32_t startIndex, int32_t endIndex, TextGenerationSettings_1 * generationSettings, TextInfo_1 * textInfo, MethodInfo * method)); +DO_APP_FUNC(0x02DE6370, void, TextGenerator_1_SaveWordWrappingState, (TextGenerator_1 * __this, WordWrapState_1 * state, int32_t index, int32_t count, TextInfo_1 * textInfo, MethodInfo * method)); +DO_APP_FUNC(0x02DE6CB0, int32_t, TextGenerator_1_RestoreWordWrappingState, (TextGenerator_1 * __this, WordWrapState_1 * state, TextInfo_1 * textInfo, MethodInfo * method)); +DO_APP_FUNC(0x02DE75D0, bool, TextGenerator_1_ValidateHtmlTag, (TextGenerator_1 * __this, Int32__Array * chars, int32_t startIndex, int32_t * endIndex, TextGenerationSettings_1 * generationSettings, TextInfo_1 * textInfo, MethodInfo * method)); DO_APP_FUNC(0x02DECAC0, void, TextGenerator_1_SaveGlyphVertexInfo, (TextGenerator_1 * __this, float padding, float stylePadding, Color32 vertexColor, TextGenerationSettings_1 * generationSettings, TextInfo_1 * textInfo, MethodInfo * method)); DO_APP_FUNC(0x02DED970, void, TextGenerator_1_SaveSpriteVertexInfo, (TextGenerator_1 * __this, Color32 vertexColor, TextGenerationSettings_1 * generationSettings, TextInfo_1 * textInfo, MethodInfo * method)); -DO_APP_FUNC(0x02DEE390, void, TextGenerator_1_DrawUnderlineMesh, (TextGenerator_1 * __this, Vector3 start, Vector3 end, int32_t index, float startScale, float endScale, float maxScale, float sdfScale, Color32 underlineColor, TextGenerationSettings_1 * generationSettings, TextInfo_1 * textInfo, MethodInfo * method)); -DO_APP_FUNC(0x02DEF460, void, TextGenerator_1_DrawTextHighlight, (TextGenerator_1 * __this, Vector3 start, Vector3 end, int32_t index, Color32 highlightColor, TextGenerationSettings_1 * generationSettings, TextInfo_1 * textInfo, MethodInfo * method)); +DO_APP_FUNC(0x02DEE390, void, TextGenerator_1_DrawUnderlineMesh, (TextGenerator_1 * __this, Vector3 start, Vector3 end, int32_t * index, float startScale, float endScale, float maxScale, float sdfScale, Color32 underlineColor, TextGenerationSettings_1 * generationSettings, TextInfo_1 * textInfo, MethodInfo * method)); +DO_APP_FUNC(0x02DEF460, void, TextGenerator_1_DrawTextHighlight, (TextGenerator_1 * __this, Vector3 start, Vector3 end, int32_t * index, Color32 highlightColor, TextGenerationSettings_1 * generationSettings, TextInfo_1 * textInfo, MethodInfo * method)); DO_APP_FUNC(0x02DEFA90, void, TextGenerator_1_ClearMesh, (bool updateMesh, TextInfo_1 * textInfo, MethodInfo * method)); DO_APP_FUNC(0x02DEFB60, void, TextGenerator_1_EnableMasking, (TextGenerator_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02DEFB70, void, TextGenerator_1_DisableMasking, (TextGenerator_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02DEFB80, void, TextGenerator_1_SetArraySizes, (TextGenerator_1 * __this, Int32__Array * chars, TextGenerationSettings_1 * generationSettings, TextInfo_1 * textInfo, MethodInfo * method)); -DO_APP_FUNC(0x02DF10E0, TextElement *, TextGenerator_1_GetTextElement, (TextGenerator_1 * __this, TextGenerationSettings_1 * generationSettings, uint32_t unicode, FontAsset * fontAsset, FontStyles__Enum_1 fontStyle, TextFontWeight__Enum fontWeight, bool isUsingAlternativeTypeface, MethodInfo * method)); +DO_APP_FUNC(0x02DF10E0, TextElement *, TextGenerator_1_GetTextElement, (TextGenerator_1 * __this, TextGenerationSettings_1 * generationSettings, uint32_t unicode, FontAsset * fontAsset, FontStyles__Enum_1 fontStyle, TextFontWeight__Enum fontWeight, bool * isUsingAlternativeTypeface, MethodInfo * method)); DO_APP_FUNC(0x02DF1710, void, TextGenerator_1_ComputeMarginSize, (TextGenerator_1 * __this, Rect rect, Vector4 margins, MethodInfo * method)); DO_APP_FUNC(0x02DF1810, void, TextGenerator_1_GetSpecialCharacters, (TextGenerator_1 * __this, TextGenerationSettings_1 * generationSettings, MethodInfo * method)); DO_APP_FUNC(0x02DF1840, void, TextGenerator_1_GetEllipsisSpecialCharacter, (TextGenerator_1 * __this, TextGenerationSettings_1 * generationSettings, MethodInfo * method)); @@ -101329,25 +113372,25 @@ DO_APP_FUNC(0x02DF1DF0, float, TextGenerator_1_GetPaddingForMaterial, (TextGener DO_APP_FUNC(0x02DF1FF0, Vector2, TextGenerator_1_GetPreferredValuesInternal, (TextGenerator_1 * __this, TextGenerationSettings_1 * generationSettings, TextInfo_1 * textInfo, MethodInfo * method)); DO_APP_FUNC(0x02DF2200, Vector2, TextGenerator_1_CalculatePreferredValues, (TextGenerator_1 * __this, float defaultFontSize, Vector2 marginSize, bool ignoreTextAutoSizing, TextGenerationSettings_1 * generationSettings, TextInfo_1 * textInfo, MethodInfo * method)); DO_APP_FUNC(0x02DF4550, void, TextGenerator_1__ctor, (TextGenerator_1 * __this, MethodInfo * method)); -DO_APP_FUNC(0x02E0A6C0, void, TextGenerator_SpecialCharacter__ctor, (TextGenerator_SpecialCharacter__Boxed * __this, Character * character, int32_t materialIndex, MethodInfo * method)); +DO_APP_FUNC(0x02E0A6C0, void, TextGenerator_SpecialCharacter__ctor, (TextGenerator_SpecialCharacter * __this, Character * character, int32_t materialIndex, MethodInfo * method)); DO_APP_FUNC(0x02E0A960, bool, TextGeneratorUtilities_Approximately, (float a, float b, MethodInfo * method)); DO_APP_FUNC(0x02E0A990, Color32, TextGeneratorUtilities_HexCharsToColor, (Char__Array * hexChars, int32_t tagCount, MethodInfo * method)); DO_APP_FUNC(0x02E0B010, Color32, TextGeneratorUtilities_HexCharsToColor_1, (Char__Array * hexChars, int32_t startIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x02E0B2C0, int32_t, TextGeneratorUtilities_HexToInt, (uint16_t hex, MethodInfo * method)); DO_APP_FUNC(0x02E0B3D0, float, TextGeneratorUtilities_ConvertToFloat, (Char__Array * chars, int32_t startIndex, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x02E0B450, float, TextGeneratorUtilities_ConvertToFloat_1, (Char__Array * chars, int32_t startIndex, int32_t length, int32_t lastIndex, MethodInfo * method)); +DO_APP_FUNC(0x02E0B450, float, TextGeneratorUtilities_ConvertToFloat_1, (Char__Array * chars, int32_t startIndex, int32_t length, int32_t * lastIndex, MethodInfo * method)); DO_APP_FUNC(0x02E0B5F0, Vector2, TextGeneratorUtilities_PackUV, (float x, float y, float scale, MethodInfo * method)); -DO_APP_FUNC(0x02E0B630, void, TextGeneratorUtilities_StringToCharArray, (String * sourceText, Int32__Array * charBuffer, TextProcessingStack_1_System_Int32_ styleStack, TextGenerationSettings_1 * generationSettings, MethodInfo * method)); -DO_APP_FUNC(0x02E0BFB0, bool, TextGeneratorUtilities_IsTagName, (String * text, String * tag, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x02E0C0E0, bool, TextGeneratorUtilities_IsTagName_1, (Int32__Array * text, String * tag, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x02E0C210, bool, TextGeneratorUtilities_ReplaceOpeningStyleTag, (Int32__Array * sourceText, int32_t srcIndex, int32_t srcOffset, Int32__Array * charBuffer, int32_t writeIndex, TextProcessingStack_1_System_Int32_ styleStack, TextGenerationSettings_1 * generationSettings, MethodInfo * method)); -DO_APP_FUNC(0x02E0C5F0, bool, TextGeneratorUtilities_ReplaceOpeningStyleTag_1, (String * sourceText, int32_t srcIndex, int32_t srcOffset, Int32__Array * charBuffer, int32_t writeIndex, TextProcessingStack_1_System_Int32_ styleStack, TextGenerationSettings_1 * generationSettings, MethodInfo * method)); -DO_APP_FUNC(0x02E0C9E0, void, TextGeneratorUtilities_ReplaceClosingStyleTag, (Int32__Array * charBuffer, int32_t writeIndex, TextProcessingStack_1_System_Int32_ styleStack, TextGenerationSettings_1 * generationSettings, MethodInfo * method)); +DO_APP_FUNC(0x02E0B630, void, TextGeneratorUtilities_StringToCharArray, (String * sourceText, Int32__Array * * charBuffer, TextProcessingStack_1_System_Int32_ * styleStack, TextGenerationSettings_1 * generationSettings, MethodInfo * method)); +DO_APP_FUNC(0x02E0BFB0, bool, TextGeneratorUtilities_IsTagName, (String * * text, String * tag, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x02E0C0E0, bool, TextGeneratorUtilities_IsTagName_1, (Int32__Array * * text, String * tag, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x02E0C210, bool, TextGeneratorUtilities_ReplaceOpeningStyleTag, (Int32__Array * * sourceText, int32_t srcIndex, int32_t * srcOffset, Int32__Array * * charBuffer, int32_t * writeIndex, TextProcessingStack_1_System_Int32_ * styleStack, TextGenerationSettings_1 * * generationSettings, MethodInfo * method)); +DO_APP_FUNC(0x02E0C5F0, bool, TextGeneratorUtilities_ReplaceOpeningStyleTag_1, (String * * sourceText, int32_t srcIndex, int32_t * srcOffset, Int32__Array * * charBuffer, int32_t * writeIndex, TextProcessingStack_1_System_Int32_ * styleStack, TextGenerationSettings_1 * * generationSettings, MethodInfo * method)); +DO_APP_FUNC(0x02E0C9E0, void, TextGeneratorUtilities_ReplaceClosingStyleTag, (Int32__Array * * charBuffer, int32_t * writeIndex, TextProcessingStack_1_System_Int32_ * styleStack, TextGenerationSettings_1 * * generationSettings, MethodInfo * method)); DO_APP_FUNC(0x02E0CD90, TextStyle *, TextGeneratorUtilities_GetStyle, (TextGenerationSettings_1 * generationSetting, int32_t hashCode, MethodInfo * method)); DO_APP_FUNC(0x02E0CFB0, int32_t, TextGeneratorUtilities_GetUtf32, (String * text, int32_t i, MethodInfo * method)); DO_APP_FUNC(0x02E0D140, int32_t, TextGeneratorUtilities_GetUtf16, (String * text, int32_t i, MethodInfo * method)); -DO_APP_FUNC(0x02E0D240, int32_t, TextGeneratorUtilities_GetTagHashCode, (Int32__Array * text, int32_t index, int32_t closeIndex, MethodInfo * method)); -DO_APP_FUNC(0x02E0D2E0, int32_t, TextGeneratorUtilities_GetTagHashCode_1, (String * text, int32_t index, int32_t closeIndex, MethodInfo * method)); +DO_APP_FUNC(0x02E0D240, int32_t, TextGeneratorUtilities_GetTagHashCode, (Int32__Array * * text, int32_t index, int32_t * closeIndex, MethodInfo * method)); +DO_APP_FUNC(0x02E0D2E0, int32_t, TextGeneratorUtilities_GetTagHashCode_1, (String * * text, int32_t index, int32_t * closeIndex, MethodInfo * method)); DO_APP_FUNC(0x02E0D3A0, void, TextGeneratorUtilities_FillCharacterVertexBuffers, (int32_t i, TextGenerationSettings_1 * generationSettings, TextInfo_1 * textInfo, MethodInfo * method)); DO_APP_FUNC(0x02E0DDD0, void, TextGeneratorUtilities_FillSpriteVertexBuffers, (int32_t i, TextGenerationSettings_1 * generationSettings, TextInfo_1 * textInfo, MethodInfo * method)); DO_APP_FUNC(0x02E0E6F0, void, TextGeneratorUtilities_AdjustLineOffset, (int32_t startIndex, int32_t endIndex, float offset, TextInfo_1 * textInfo, MethodInfo * method)); @@ -101360,12 +113403,12 @@ DO_APP_FUNC(0x02E0F190, void, TextInfo_1_Clear, (TextInfo_1 * __this, MethodInfo DO_APP_FUNC(0x02E0F210, void, TextInfo_1_ClearMeshInfo, (TextInfo_1 * __this, bool updateMesh, MethodInfo * method)); DO_APP_FUNC(0x02E0F2E0, void, TextInfo_1_ClearLineInfo, (TextInfo_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02E0F630, void, TextInfo_1__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02C2B890, void, FontStyleStack_Clear, (FontStyleStack__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02C2B8A0, uint8_t, FontStyleStack_Add, (FontStyleStack__Boxed * __this, FontStyles__Enum_1 style, MethodInfo * method)); -DO_APP_FUNC(0x02C2B950, uint8_t, FontStyleStack_Remove, (FontStyleStack__Boxed * __this, FontStyles__Enum_1 style, MethodInfo * method)); +DO_APP_FUNC(0x02C2B890, void, FontStyleStack_Clear, (FontStyleStack * __this, MethodInfo * method)); +DO_APP_FUNC(0x02C2B8A0, uint8_t, FontStyleStack_Add, (FontStyleStack * __this, FontStyles__Enum_1 style, MethodInfo * method)); +DO_APP_FUNC(0x02C2B950, uint8_t, FontStyleStack_Remove, (FontStyleStack * __this, FontStyles__Enum_1 style, MethodInfo * method)); DO_APP_FUNC(0x02E0F6A0, void, TextResourceManager_AddFontAsset, (FontAsset * fontAsset, MethodInfo * method)); DO_APP_FUNC(0x02E0FFD0, void, TextResourceManager__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02E103F0, void, TextResourceManager_FontAssetRef__ctor, (TextResourceManager_FontAssetRef__Boxed * __this, int32_t nameHashCode, int32_t familyNameHashCode, int32_t styleNameHashCode, FontAsset * fontAsset, MethodInfo * method)); +DO_APP_FUNC(0x02E103F0, void, TextResourceManager_FontAssetRef__ctor, (TextResourceManager_FontAssetRef * __this, int32_t nameHashCode, int32_t familyNameHashCode, int32_t styleNameHashCode, FontAsset * fontAsset, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, String *, TextSettings_get_version, (TextSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE960, void, TextSettings_set_version, (TextSettings * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, FontAsset *, TextSettings_get_defaultFontAsset, (TextSettings * __this, MethodInfo * method)); @@ -101401,7 +113444,7 @@ DO_APP_FUNC(0x00481C50, void, TextSettings_set_displayWarnings, (TextSettings * DO_APP_FUNC(0x02E10530, void, TextSettings_InitializeFontReferenceLookup, (TextSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x02E10970, FontAsset *, TextSettings_GetCachedFontAssetInternal, (TextSettings * __this, Font * font, MethodInfo * method)); DO_APP_FUNC(0x02E10EE0, void, TextSettings__ctor, (TextSettings * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A76400, void, TextSettings_FontReferenceMap__ctor, (TextSettings_FontReferenceMap__Boxed * __this, Font * font, FontAsset * fontAsset, MethodInfo * method)); +DO_APP_FUNC(0x00A76400, void, TextSettings_FontReferenceMap__ctor, (TextSettings_FontReferenceMap * __this, Font * font, FontAsset * fontAsset, MethodInfo * method)); DO_APP_FUNC(0x02E11190, Shader *, TextShaderUtilities_get_ShaderRef_MobileSDF, (MethodInfo * method)); DO_APP_FUNC(0x02E11530, Shader *, TextShaderUtilities_get_ShaderRef_MobileBitmap, (MethodInfo * method)); DO_APP_FUNC(0x02E118D0, void, TextShaderUtilities__cctor, (MethodInfo * method)); @@ -101552,7 +113595,7 @@ DO_APP_FUNC(0x02A9CD30, void, ScreenSpaceReflectionResolutionParameter__ctor, (S DO_APP_FUNC(0x02A9CD90, bool, ScreenSpaceReflections_IsEnabledAndSupported, (ScreenSpaceReflections * __this, PostProcessRenderContext * context, MethodInfo * method)); DO_APP_FUNC(0x02A9CF80, void, ScreenSpaceReflections__ctor, (ScreenSpaceReflections * __this, MethodInfo * method)); DO_APP_FUNC(0x01164370, DepthTextureMode__Enum, ScreenSpaceReflectionsRenderer_GetCameraFlags, (ScreenSpaceReflectionsRenderer * __this, MethodInfo * method)); -DO_APP_FUNC(0x02A9D4E0, void, ScreenSpaceReflectionsRenderer_CheckRT, (ScreenSpaceReflectionsRenderer * __this, RenderTexture * rt, int32_t width, int32_t height, FilterMode__Enum filterMode, bool useMipMap, MethodInfo * method)); +DO_APP_FUNC(0x02A9D4E0, void, ScreenSpaceReflectionsRenderer_CheckRT, (ScreenSpaceReflectionsRenderer * __this, RenderTexture * * rt, int32_t width, int32_t height, FilterMode__Enum filterMode, bool useMipMap, MethodInfo * method)); DO_APP_FUNC(0x02A9DA10, void, ScreenSpaceReflectionsRenderer_Render, (ScreenSpaceReflectionsRenderer * __this, PostProcessRenderContext * context, MethodInfo * method)); DO_APP_FUNC(0x02A9F580, void, ScreenSpaceReflectionsRenderer_Release, (ScreenSpaceReflectionsRenderer * __this, MethodInfo * method)); DO_APP_FUNC(0x02A9F6A0, void, ScreenSpaceReflectionsRenderer__ctor, (ScreenSpaceReflectionsRenderer * __this, MethodInfo * method)); @@ -101651,7 +113694,7 @@ DO_APP_FUNC(0x02AA7990, void, PostProcessDebug_Reset, (PostProcessDebug * __this DO_APP_FUNC(0x02AA7A20, void, PostProcessDebug_UpdateStates, (PostProcessDebug * __this, MethodInfo * method)); DO_APP_FUNC(0x02AA8080, void, PostProcessDebug_OnPostRender, (PostProcessDebug * __this, MethodInfo * method)); DO_APP_FUNC(0x02AA8410, void, PostProcessDebug_OnGUI, (PostProcessDebug * __this, MethodInfo * method)); -DO_APP_FUNC(0x02AA8660, void, PostProcessDebug_DrawMonitor, (PostProcessDebug * __this, Rect rect, Monitor_1 * monitor, bool enabled, MethodInfo * method)); +DO_APP_FUNC(0x02AA8660, void, PostProcessDebug_DrawMonitor, (PostProcessDebug * __this, Rect * rect, Monitor_1 * monitor, bool enabled, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, PostProcessDebug__ctor, (PostProcessDebug * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7390, RenderTexture *, PostProcessDebugLayer_get_debugOverlayTarget, (PostProcessDebugLayer * __this, MethodInfo * method)); DO_APP_FUNC(0x003C73A0, void, PostProcessDebugLayer_set_debugOverlayTarget, (PostProcessDebugLayer * __this, RenderTexture * value, MethodInfo * method)); @@ -101691,8 +113734,8 @@ DO_APP_FUNC(0x02AAB280, bool, PostProcessEffectSettings_c__OnEnable_b__3_0, (Pos DO_APP_FUNC_METHODINFO(0x03C8EA80, PostProcessEffectSettings_c__OnEnable_b__3_0__MethodInfo); DO_APP_FUNC(0x00F84580, int32_t, PostProcessEffectSettings_c__OnEnable_b__3_1, (PostProcessEffectSettings_c * __this, FieldInfo_1 * t, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8EA88, PostProcessEffectSettings_c__OnEnable_b__3_1__MethodInfo); -DO_APP_FUNC(0x00A9F2B0, bool, PostProcessEventComparer_Equals, (PostProcessEventComparer__Boxed * __this, PostProcessEvent__Enum x, PostProcessEvent__Enum y, MethodInfo * method)); -DO_APP_FUNC(0x003DA110, int32_t, PostProcessEventComparer_GetHashCode, (PostProcessEventComparer__Boxed * __this, PostProcessEvent__Enum obj, MethodInfo * method)); +DO_APP_FUNC(0x00A9F2B0, bool, PostProcessEventComparer_Equals, (PostProcessEventComparer * __this, PostProcessEvent__Enum x, PostProcessEvent__Enum y, MethodInfo * method)); +DO_APP_FUNC(0x003DA110, int32_t, PostProcessEventComparer_GetHashCode, (PostProcessEventComparer * __this, PostProcessEvent__Enum obj, MethodInfo * method)); DO_APP_FUNC(0x00A4F060, Dictionary_2_UnityEngine_Rendering_PostProcessing_PostProcessEvent_List_1_UnityEngine_Rendering_PostProcessing_PostProcessLayer_SerializedBundleRef_ *, PostProcessLayer_get_sortedBundles, (PostProcessLayer * __this, MethodInfo * method)); DO_APP_FUNC(0x00A4F070, void, PostProcessLayer_set_sortedBundles, (PostProcessLayer * __this, Dictionary_2_UnityEngine_Rendering_PostProcessing_PostProcessEvent_List_1_UnityEngine_Rendering_PostProcessing_PostProcessLayer_SerializedBundleRef_ * value, MethodInfo * method)); DO_APP_FUNC(0x01860190, DepthTextureMode__Enum, PostProcessLayer_get_cameraDepthFlags, (PostProcessLayer * __this, MethodInfo * method)); @@ -101711,7 +113754,7 @@ DO_APP_FUNC(0x01D4DCA0, void, PostProcessLayer_Reset, (PostProcessLayer * __this DO_APP_FUNC(0x02AAD940, void, PostProcessLayer_OnPreCull, (PostProcessLayer * __this, MethodInfo * method)); DO_APP_FUNC(0x02AAE600, void, PostProcessLayer_OnPreRender, (PostProcessLayer * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, PostProcessLayer_RequiresInitialBlit, (Camera * camera, PostProcessRenderContext * context, MethodInfo * method)); -DO_APP_FUNC(0x02AAE6C0, void, PostProcessLayer_UpdateSrcDstForOpaqueOnly, (PostProcessLayer * __this, int32_t src, int32_t dst, PostProcessRenderContext * context, RenderTargetIdentifier cameraTarget, int32_t opaqueOnlyEffectsRemaining, MethodInfo * method)); +DO_APP_FUNC(0x02AAE6C0, void, PostProcessLayer_UpdateSrcDstForOpaqueOnly, (PostProcessLayer * __this, int32_t * src, int32_t * dst, PostProcessRenderContext * context, RenderTargetIdentifier cameraTarget, int32_t opaqueOnlyEffectsRemaining, MethodInfo * method)); DO_APP_FUNC(0x02AAE8D0, void, PostProcessLayer_BuildCommandBuffers, (PostProcessLayer * __this, MethodInfo * method)); DO_APP_FUNC(0x02AAFCD0, void, PostProcessLayer_OnPostRender, (PostProcessLayer * __this, MethodInfo * method)); DO_APP_FUNC(0x02AAFF50, PostProcessBundle *, PostProcessLayer_GetBundle, (PostProcessLayer * __this, Type * settingsType, MethodInfo * method)); @@ -101878,8 +113921,8 @@ DO_APP_FUNC(0x02ABC1B0, void, HableCurve_1__ctor, (HableCurve_1 * __this, Method DO_APP_FUNC(0x02ABC410, float, HableCurve_1_Eval, (HableCurve_1 * __this, float x, MethodInfo * method)); DO_APP_FUNC(0x02ABC4B0, void, HableCurve_1_Init, (HableCurve_1 * __this, float toeStrength, float toeLength, float shoulderStrength, float shoulderLength, float shoulderAngle, float gamma, MethodInfo * method)); DO_APP_FUNC(0x02ABC6F0, void, HableCurve_1_InitSegments, (HableCurve_1 * __this, HableCurve_DirectParams_1 srcParams, MethodInfo * method)); -DO_APP_FUNC(0x02ABCC30, void, HableCurve_1_SolveAB, (HableCurve_1 * __this, float lnA, float B, float x0, float y0, float m, MethodInfo * method)); -DO_APP_FUNC(0x02ABCCA0, void, HableCurve_1_AsSlopeIntercept, (HableCurve_1 * __this, float m, float b, float x0, float x1, float y0, float y1, MethodInfo * method)); +DO_APP_FUNC(0x02ABCC30, void, HableCurve_1_SolveAB, (HableCurve_1 * __this, float * lnA, float * B, float x0, float y0, float m, MethodInfo * method)); +DO_APP_FUNC(0x02ABCCA0, void, HableCurve_1_AsSlopeIntercept, (HableCurve_1 * __this, float * m, float * b, float x0, float x1, float y0, float y1, MethodInfo * method)); DO_APP_FUNC(0x02ABCD00, float, HableCurve_1_EvalDerivativeLinearGamma, (HableCurve_1 * __this, float m, float b, float g, float x, MethodInfo * method)); DO_APP_FUNC(0x02ABCD50, float, HableCurve_Segment_1_Eval, (HableCurve_Segment_1 * __this, float x, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HableCurve_Segment_1__ctor, (HableCurve_Segment_1 * __this, MethodInfo * method)); @@ -102052,6 +114095,7 @@ DO_APP_FUNC(0x01E12320, void, OffsetStream__ctor, (OffsetStream * __this, Stream DO_APP_FUNC(0x0198B640, void, OffsetStream_System_IDisposable_Dispose, (OffsetStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01E123F0, int32_t, OffsetStream_Read, (OffsetStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x01E12420, void, OffsetStream_Write, (OffsetStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD980, OffsetStream_Write__MethodInfo); DO_APP_FUNC(0x01B3F0B0, bool, OffsetStream_get_CanRead, (OffsetStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01E12470, bool, OffsetStream_get_CanSeek, (OffsetStream * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, OffsetStream_get_CanWrite, (OffsetStream * __this, MethodInfo * method)); @@ -102061,9 +114105,11 @@ DO_APP_FUNC(0x01E124D0, int64_t, OffsetStream_get_Position, (OffsetStream * __th DO_APP_FUNC(0x01E12510, void, OffsetStream_set_Position, (OffsetStream * __this, int64_t value, MethodInfo * method)); DO_APP_FUNC(0x01E12540, int64_t, OffsetStream_Seek, (OffsetStream * __this, int64_t offset, SeekOrigin__Enum origin, MethodInfo * method)); DO_APP_FUNC(0x01E12580, void, OffsetStream_SetLength, (OffsetStream * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD988, OffsetStream_SetLength__MethodInfo); DO_APP_FUNC(0x01B471A0, void, OffsetStream_Close, (OffsetStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01E125D0, void, SharedUtilities__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01E127E0, int64_t, SharedUtilities_GetFileLength, (String * fileName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD9F8, SharedUtilities_GetFileLength__MethodInfo); DO_APP_FUNC(0x01E12920, String *, SharedUtilities_SimplifyFwdSlashPath, (String * path, MethodInfo * method)); DO_APP_FUNC(0x01E12B50, String *, SharedUtilities_NormalizePathForUseInZipFile, (String * pathName, MethodInfo * method)); DO_APP_FUNC(0x01E12C80, Byte__Array *, SharedUtilities_StringToByteArray, (String * value, Encoding * encoding, MethodInfo * method)); @@ -102074,11 +114120,14 @@ DO_APP_FUNC(0x01E12E10, int32_t, SharedUtilities_ReadSignature, (Stream * s, Met DO_APP_FUNC(0x01E12E90, int32_t, SharedUtilities_ReadEntrySignature, (Stream * s, MethodInfo * method)); DO_APP_FUNC(0x01E13020, int32_t, SharedUtilities_ReadInt, (Stream * s, MethodInfo * method)); DO_APP_FUNC(0x01E13090, int32_t, SharedUtilities__ReadFourBytes, (Stream * s, String * message, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD900, SharedUtilities__ReadFourBytes__MethodInfo); DO_APP_FUNC(0x01E131E0, int64_t, SharedUtilities_FindSignature, (Stream * stream, int32_t SignatureToFind, MethodInfo * method)); DO_APP_FUNC(0x01E13460, DateTime, SharedUtilities_AdjustTime_Reverse, (DateTime time, MethodInfo * method)); DO_APP_FUNC(0x01E136C0, DateTime, SharedUtilities_PackedToDateTime, (int32_t packedDateTime, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD938, SharedUtilities_PackedToDateTime__MethodInfo); DO_APP_FUNC(0x01E13D10, int32_t, SharedUtilities_DateTimeToPacked, (DateTime time, MethodInfo * method)); -DO_APP_FUNC(0x01E13F00, void, SharedUtilities_CreateAndOpenUniqueTempFile, (String * dir, Stream * fs, String * filename, MethodInfo * method)); +DO_APP_FUNC(0x01E13F00, void, SharedUtilities_CreateAndOpenUniqueTempFile, (String * dir, Stream * * fs, String * * filename, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD918, SharedUtilities_CreateAndOpenUniqueTempFile__MethodInfo); DO_APP_FUNC(0x01E14160, String *, SharedUtilities_InternalGetTempFileName, (MethodInfo * method)); DO_APP_FUNC(0x01E141F0, String *, SharedUtilities_GenerateRandomStringImpl, (int32_t length, int32_t delta, MethodInfo * method)); DO_APP_FUNC(0x01E14370, int32_t, SharedUtilities_ReadWithRetry, (Stream * s, Byte__Array * buffer, int32_t offset, int32_t count, String * FileName, MethodInfo * method)); @@ -102086,6 +114135,7 @@ DO_APP_FUNC(0x01E143C0, void, CountingStream__ctor, (CountingStream * __this, St DO_APP_FUNC(0x003BB330, int64_t, CountingStream_get_BytesWritten, (CountingStream * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7320, int64_t, CountingStream_get_BytesRead, (CountingStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01E144B0, void, CountingStream_Adjust, (CountingStream * __this, int64_t delta, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD898, CountingStream_Adjust__MethodInfo); DO_APP_FUNC(0x01E145B0, int32_t, CountingStream_Read, (CountingStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x01E145F0, void, CountingStream_Write, (CountingStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x01E14640, bool, CountingStream_get_CanRead, (CountingStream * __this, MethodInfo * method)); @@ -102100,32 +114150,45 @@ DO_APP_FUNC(0x01E147A0, int64_t, CountingStream_Seek, (CountingStream * __this, DO_APP_FUNC(0x01E147D0, void, CountingStream_SetLength, (CountingStream * __this, int64_t value, MethodInfo * method)); DO_APP_FUNC(0x01E14800, void, ZipCrypto__ctor, (ZipCrypto * __this, MethodInfo * method)); DO_APP_FUNC(0x01E14970, ZipCrypto *, ZipCrypto_ForWrite, (String * password, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD848, ZipCrypto_ForWrite__MethodInfo); DO_APP_FUNC(0x01E14A40, ZipCrypto *, ZipCrypto_ForRead, (String * password, ZipEntry * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD8D0, ZipCrypto_ForRead__MethodInfo); DO_APP_FUNC(0x01E14CE0, uint8_t, ZipCrypto_get_MagicByte, (ZipCrypto * __this, MethodInfo * method)); DO_APP_FUNC(0x01E14D20, Byte__Array *, ZipCrypto_DecryptMessage, (ZipCrypto * __this, Byte__Array * cipherText, int32_t length, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD8C8, ZipCrypto_DecryptMessage__MethodInfo); DO_APP_FUNC(0x01E14EE0, Byte__Array *, ZipCrypto_EncryptMessage, (ZipCrypto * __this, Byte__Array * plainText, int32_t length, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD8A0, ZipCrypto_EncryptMessage__MethodInfo); DO_APP_FUNC(0x01E150A0, void, ZipCrypto_InitCipher, (ZipCrypto * __this, String * passphrase, MethodInfo * method)); DO_APP_FUNC(0x01E151B0, void, ZipCrypto_UpdateKeys, (ZipCrypto * __this, uint8_t byteValue, MethodInfo * method)); DO_APP_FUNC(0x01E152B0, void, ZipCipherStream__ctor, (ZipCipherStream * __this, Stream * s, ZipCrypto * cipher, CryptoMode__Enum mode, MethodInfo * method)); DO_APP_FUNC(0x01E153D0, int32_t, ZipCipherStream_Read, (ZipCipherStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD7C0, ZipCipherStream_Read__MethodInfo); DO_APP_FUNC(0x01E155A0, void, ZipCipherStream_Write, (ZipCipherStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD7A0, ZipCipherStream_Write__MethodInfo); DO_APP_FUNC(0x01E15760, bool, ZipCipherStream_get_CanRead, (ZipCipherStream * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, ZipCipherStream_get_CanSeek, (ZipCipherStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01E15770, bool, ZipCipherStream_get_CanWrite, (ZipCipherStream * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ZipCipherStream_Flush, (ZipCipherStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01E15780, int64_t, ZipCipherStream_get_Length, (ZipCipherStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD7A8, ZipCipherStream_get_Length__MethodInfo); DO_APP_FUNC(0x01E157D0, int64_t, ZipCipherStream_get_Position, (ZipCipherStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD790, ZipCipherStream_get_Position__MethodInfo); DO_APP_FUNC(0x01E15820, void, ZipCipherStream_set_Position, (ZipCipherStream * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD798, ZipCipherStream_set_Position__MethodInfo); DO_APP_FUNC(0x01E15870, int64_t, ZipCipherStream_Seek, (ZipCipherStream * __this, int64_t offset, SeekOrigin__Enum origin, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD780, ZipCipherStream_Seek__MethodInfo); DO_APP_FUNC(0x01E158C0, void, ZipCipherStream_SetLength, (ZipCipherStream * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD788, ZipCipherStream_SetLength__MethodInfo); DO_APP_FUNC(0x01E15910, void, ZipEntry__ctor, (ZipEntry * __this, MethodInfo * method)); DO_APP_FUNC(0x01E15A60, void, ZipEntry__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01E15BD0, bool, ZipEntry_get_AttributesIndicateDirectory, (ZipEntry * __this, MethodInfo * method)); DO_APP_FUNC(0x01E15BF0, void, ZipEntry_ResetDirEntry, (ZipEntry * __this, MethodInfo * method)); DO_APP_FUNC(0x01E15C10, ZipEntry *, ZipEntry_ReadDirEntry, (ZipFile * zf, Dictionary_2_System_String_System_Object_ * previouslySeen, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD820, ZipEntry_ReadDirEntry__MethodInfo); DO_APP_FUNC(0x01E16810, bool, ZipEntry_IsNotValidZipDirEntrySig, (int32_t signature, MethodInfo * method)); DO_APP_FUNC(0x01E16820, void, ZipEntry_Extract, (ZipEntry * __this, Stream * stream, MethodInfo * method)); DO_APP_FUNC(0x01E16840, CrcCalculatorStream *, ZipEntry_InternalOpenReader, (ZipEntry * __this, String * password, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD7E0, ZipEntry_InternalOpenReader__MethodInfo); DO_APP_FUNC(0x01E16A80, void, ZipEntry_OnExtractProgress, (ZipEntry * __this, int64_t bytesWritten, int64_t totalBytesToWrite, MethodInfo * method)); DO_APP_FUNC(0x01E16C60, void, ZipEntry_OnBeforeExtract, (ZipEntry * __this, String * path, MethodInfo * method)); DO_APP_FUNC(0x01E16CC0, void, ZipEntry_OnAfterExtract, (ZipEntry * __this, String * path, MethodInfo * method)); @@ -102133,9 +114196,13 @@ DO_APP_FUNC(0x01E16D10, void, ZipEntry_OnExtractExisting, (ZipEntry * __this, St DO_APP_FUNC(0x01E16D50, void, ZipEntry_ReallyDelete, (String * fileName, MethodInfo * method)); DO_APP_FUNC(0x01E16D60, void, ZipEntry_WriteStatus, (ZipEntry * __this, String * format, Object__Array * args, MethodInfo * method)); DO_APP_FUNC(0x01E16DB0, void, ZipEntry_InternalExtract, (ZipEntry * __this, String * baseDir, Stream * outstream, String * password, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD6D0, ZipEntry_InternalExtract__MethodInfo); DO_APP_FUNC(0x01E177B0, void, ZipEntry_VerifyCrcAfterExtract, (ZipEntry * __this, int32_t actualCrc32, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD680, ZipEntry_VerifyCrcAfterExtract__MethodInfo); DO_APP_FUNC(0x01E178A0, int32_t, ZipEntry_CheckExtractExistingFile, (ZipEntry * __this, String * baseDir, String * targetFileName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD748, ZipEntry_CheckExtractExistingFile__MethodInfo); DO_APP_FUNC(0x01E17BB0, void, ZipEntry__CheckRead, (ZipEntry * __this, int32_t nbytes, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD738, ZipEntry__CheckRead__MethodInfo); DO_APP_FUNC(0x01E17C40, int32_t, ZipEntry_ExtractOne, (ZipEntry * __this, Stream * output, MethodInfo * method)); DO_APP_FUNC(0x01E180E0, Stream *, ZipEntry_GetExtractDecompressor, (ZipEntry * __this, Stream * input2, MethodInfo * method)); DO_APP_FUNC(0x01E18190, Stream *, ZipEntry_GetExtractDecryptor, (ZipEntry * __this, Stream * input, MethodInfo * method)); @@ -102143,11 +114210,17 @@ DO_APP_FUNC(0x003AE050, void, ZipEntry__SetTimes, (ZipEntry * __this, String * f DO_APP_FUNC(0x01E18220, String *, ZipEntry_get_UnsupportedAlgorithm, (ZipEntry * __this, MethodInfo * method)); DO_APP_FUNC(0x01E18480, String *, ZipEntry_get_UnsupportedCompressionMethod, (ZipEntry * __this, MethodInfo * method)); DO_APP_FUNC(0x01E18650, void, ZipEntry_ValidateEncryption, (ZipEntry * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD628, ZipEntry_ValidateEncryption__MethodInfo); DO_APP_FUNC(0x01E18790, void, ZipEntry_ValidateCompression, (ZipEntry * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD620, ZipEntry_ValidateCompression__MethodInfo); DO_APP_FUNC(0x01E18870, void, ZipEntry_SetupCryptoForExtract, (ZipEntry * __this, String * password, MethodInfo * method)); -DO_APP_FUNC(0x01E18970, bool, ZipEntry_ValidateOutput, (ZipEntry * __this, String * basedir, Stream * outstream, String * outFileName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD600, ZipEntry_SetupCryptoForExtract__MethodInfo); +DO_APP_FUNC(0x01E18970, bool, ZipEntry_ValidateOutput, (ZipEntry * __this, String * basedir, Stream * outstream, String * * outFileName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD548, ZipEntry_ValidateOutput__MethodInfo); DO_APP_FUNC(0x01E18DA0, bool, ZipEntry_ReadHeader, (ZipEntry * ze, Encoding * defaultEncoding, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD530, ZipEntry_ReadHeader__MethodInfo); DO_APP_FUNC(0x01E19870, int32_t, ZipEntry_ReadWeakEncryptionHeader, (Stream * s, Byte__Array * buffer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD518, ZipEntry_ReadWeakEncryptionHeader__MethodInfo); DO_APP_FUNC(0x01E19960, bool, ZipEntry_IsNotValidSig, (int32_t signature, MethodInfo * method)); DO_APP_FUNC(0x01E19970, ZipEntry *, ZipEntry_ReadEntry, (ZipContainer * zc, bool first, MethodInfo * method)); DO_APP_FUNC(0x01E19D80, void, ZipEntry_HandlePK00Prefix, (Stream * s, MethodInfo * method)); @@ -102155,26 +114228,34 @@ DO_APP_FUNC(0x01E19E10, void, ZipEntry_HandleUnexpectedDataDescriptor, (ZipEntry DO_APP_FUNC(0x01E19F50, int32_t, ZipEntry_ProcessExtraField, (ZipEntry * __this, Stream * s, int16_t extraFieldLength, MethodInfo * method)); DO_APP_FUNC(0x01E1A220, int32_t, ZipEntry_ProcessExtraFieldPkwareStrongEncryption, (ZipEntry * __this, Byte__Array * Buffer, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x01E1A290, int32_t, ZipEntry_ProcessExtraFieldZip64, (ZipEntry * __this, Byte__Array * buffer, int32_t j, int16_t dataSize, int64_t posn, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD590, ZipEntry_ProcessExtraFieldZip64__MethodInfo); DO_APP_FUNC(0x01E1A370, int32_t, ZipEntry_ProcessExtraFieldInfoZipTimes, (ZipEntry * __this, Byte__Array * buffer, int32_t j, int16_t dataSize, int64_t posn, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD580, ZipEntry_ProcessExtraFieldInfoZipTimes__MethodInfo); DO_APP_FUNC(0x01E1A5D0, int32_t, ZipEntry_ProcessExtraFieldUnixTimes, (ZipEntry * __this, Byte__Array * buffer, int32_t j, int16_t dataSize, int64_t posn, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD570, ZipEntry_ProcessExtraFieldUnixTimes__MethodInfo); DO_APP_FUNC(0x01E1A6C0, int32_t, ZipEntry_ProcessExtraFieldWindowsTimes, (ZipEntry * __this, Byte__Array * buffer, int32_t j, int16_t dataSize, int64_t posn, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD558, ZipEntry_ProcessExtraFieldWindowsTimes__MethodInfo); DO_APP_FUNC(0x01E1A980, void, ZipEntry_WriteCentralDirectoryEntry, (ZipEntry * __this, Stream * s, MethodInfo * method)); DO_APP_FUNC(0x01E1B120, Byte__Array *, ZipEntry_ConstructExtraField, (ZipEntry * __this, bool forCentralDirectory, MethodInfo * method)); DO_APP_FUNC(0x01E1BA00, String *, ZipEntry_NormalizeFileName, (ZipEntry * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD498, ZipEntry_NormalizeFileName__MethodInfo); DO_APP_FUNC(0x01E1BBF0, Byte__Array *, ZipEntry_GetEncodedFileNameBytes, (ZipEntry * __this, MethodInfo * method)); DO_APP_FUNC(0x01E1C280, bool, ZipEntry_WantReadAgain, (ZipEntry * __this, MethodInfo * method)); DO_APP_FUNC(0x01E1C310, void, ZipEntry_MaybeUnsetCompressionMethodForWriting, (ZipEntry * __this, int32_t cycle, MethodInfo * method)); DO_APP_FUNC(0x01E1C4A0, void, ZipEntry_WriteHeader, (ZipEntry * __this, Stream * s, int32_t cycle, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD488, ZipEntry_WriteHeader__MethodInfo); DO_APP_FUNC(0x01E1CEE0, int32_t, ZipEntry_FigureCrc32, (ZipEntry * __this, MethodInfo * method)); DO_APP_FUNC(0x01E1D100, void, ZipEntry_PrepSourceStream, (ZipEntry * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD4C0, ZipEntry_PrepSourceStream__MethodInfo); DO_APP_FUNC(0x01E1D2F0, void, ZipEntry_CopyMetaData, (ZipEntry * __this, ZipEntry * source, MethodInfo * method)); DO_APP_FUNC(0x01E1D3B0, void, ZipEntry_OnWriteBlock, (ZipEntry * __this, int64_t bytesXferred, int64_t totalBytesToXfer, MethodInfo * method)); DO_APP_FUNC(0x01E1D590, void, ZipEntry__WriteEntryData, (ZipEntry * __this, Stream * s, MethodInfo * method)); -DO_APP_FUNC(0x01E1DB00, int64_t, ZipEntry_SetInputAndFigureFileLength, (ZipEntry * __this, Stream * input, MethodInfo * method)); +DO_APP_FUNC(0x01E1DB00, int64_t, ZipEntry_SetInputAndFigureFileLength, (ZipEntry * __this, Stream * * input, MethodInfo * method)); DO_APP_FUNC(0x01E1DDF0, void, ZipEntry_FinishOutputStream, (ZipEntry * __this, Stream * s, CountingStream * entryCounter, Stream * encryptor, Stream * compressor, CrcCalculatorStream * output, MethodInfo * method)); DO_APP_FUNC(0x01E1DF70, void, ZipEntry_PostProcessOutput, (ZipEntry * __this, Stream * s, MethodInfo * method)); DO_APP_FUNC(0x01E1EC60, void, ZipEntry_SetZip64Flags, (ZipEntry * __this, MethodInfo * method)); -DO_APP_FUNC(0x01E1EDC0, void, ZipEntry_PrepOutputStream, (ZipEntry * __this, Stream * s, int64_t streamLength, CountingStream * outputCounter, Stream * encryptor, Stream * compressor, CrcCalculatorStream * output, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD440, ZipEntry_SetZip64Flags__MethodInfo); +DO_APP_FUNC(0x01E1EDC0, void, ZipEntry_PrepOutputStream, (ZipEntry * __this, Stream * s, int64_t streamLength, CountingStream * * outputCounter, Stream * * encryptor, Stream * * compressor, CrcCalculatorStream * * output, MethodInfo * method)); DO_APP_FUNC(0x01E1F0B0, Stream *, ZipEntry_MaybeApplyCompression, (ZipEntry * __this, Stream * s, int64_t streamLength, MethodInfo * method)); DO_APP_FUNC(0x01E1F7C0, Stream *, ZipEntry_MaybeApplyEncryption, (ZipEntry * __this, Stream * s, MethodInfo * method)); DO_APP_FUNC(0x01E1F860, void, ZipEntry_OnZipErrorWhileSaving, (ZipEntry * __this, Exception * e, MethodInfo * method)); @@ -102183,7 +114264,9 @@ DO_APP_FUNC(0x01E1FF20, void, ZipEntry_StoreRelativeOffset, (ZipEntry * __this, DO_APP_FUNC(0x01E1FF30, void, ZipEntry_NotifySaveComplete, (ZipEntry * __this, MethodInfo * method)); DO_APP_FUNC(0x01E1FF60, void, ZipEntry_WriteSecurityMetadata, (ZipEntry * __this, Stream * outstream, MethodInfo * method)); DO_APP_FUNC(0x01E20270, void, ZipEntry_CopyThroughOneEntry, (ZipEntry * __this, Stream * outStream, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD398, ZipEntry_CopyThroughOneEntry__MethodInfo); DO_APP_FUNC(0x01E20500, void, ZipEntry_CopyThroughWithRecompute, (ZipEntry * __this, Stream * outstream, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD390, ZipEntry_CopyThroughWithRecompute__MethodInfo); DO_APP_FUNC(0x01E20A60, void, ZipEntry_CopyThroughWithNoChange, (ZipEntry * __this, Stream * outstream, MethodInfo * method)); DO_APP_FUNC(0x01E20C30, DateTime, ZipEntry_get_LastModified, (ZipEntry * __this, MethodInfo * method)); DO_APP_FUNC(0x01E20CC0, void, ZipEntry_set_LastModified, (ZipEntry * __this, DateTime value, MethodInfo * method)); @@ -102201,6 +114284,7 @@ DO_APP_FUNC(0x003C9200, String *, ZipEntry_get_Comment, (ZipEntry * __this, Meth DO_APP_FUNC(0x01E21430, Nullable_1_Boolean_, ZipEntry_get_OutputUsedZip64, (ZipEntry * __this, MethodInfo * method)); DO_APP_FUNC(0x01E21440, CompressionMethod__Enum, ZipEntry_get_CompressionMethod, (ZipEntry * __this, MethodInfo * method)); DO_APP_FUNC(0x01E21450, void, ZipEntry_set_CompressionMethod, (ZipEntry * __this, CompressionMethod__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD408, ZipEntry_set_CompressionMethod__MethodInfo); DO_APP_FUNC(0x01276D90, CompressionLevel__Enum_1, ZipEntry_get_CompressionLevel, (ZipEntry * __this, MethodInfo * method)); DO_APP_FUNC(0x01E21520, void, ZipEntry_set_CompressionLevel, (ZipEntry * __this, CompressionLevel__Enum_1 value, MethodInfo * method)); DO_APP_FUNC(0x005B9620, int64_t, ZipEntry_get_CompressedSize, (ZipEntry * __this, MethodInfo * method)); @@ -102208,6 +114292,7 @@ DO_APP_FUNC(0x00AED210, int64_t, ZipEntry_get_UncompressedSize, (ZipEntry * __th DO_APP_FUNC(0x006C4530, bool, ZipEntry_get_IsDirectory, (ZipEntry * __this, MethodInfo * method)); DO_APP_FUNC(0x01D17190, EncryptionAlgorithm__Enum, ZipEntry_get_Encryption, (ZipEntry * __this, MethodInfo * method)); DO_APP_FUNC(0x01E21590, void, ZipEntry_set_Encryption, (ZipEntry * __this, EncryptionAlgorithm__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD3F0, ZipEntry_set_Encryption__MethodInfo); DO_APP_FUNC(0x01E21640, void, ZipEntry_set_Password, (ZipEntry * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x006BEB40, ExtractExistingFileAction__Enum, ZipEntry_get_ExtractExistingFile, (ZipEntry * __this, MethodInfo * method)); DO_APP_FUNC(0x006BEB50, void, ZipEntry_set_ExtractExistingFile, (ZipEntry * __this, ExtractExistingFileAction__Enum value, MethodInfo * method)); @@ -102222,16 +114307,20 @@ DO_APP_FUNC(0x01E216F0, ZipOption__Enum, ZipEntry_get_AlternateEncodingUsage, (Z DO_APP_FUNC(0x01E21700, void, ZipEntry_set_AlternateEncodingUsage, (ZipEntry * __this, ZipOption__Enum value, MethodInfo * method)); DO_APP_FUNC(0x01E21710, ZipEntry *, ZipEntry_CreateForStream, (String * entryName, Stream * s, MethodInfo * method)); DO_APP_FUNC(0x01E21780, ZipEntry *, ZipEntry_Create, (String * nameInArchive, ZipEntrySource__Enum source, Object * arg1, Object * arg2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD3C0, ZipEntry_Create__MethodInfo); DO_APP_FUNC(0x01E21C70, void, ZipEntry_MarkAsDirectory, (ZipEntry * __this, MethodInfo * method)); DO_APP_FUNC(0x01E21D30, void, ZipEntry_set_IsText, (ZipEntry * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x01E21D40, String *, ZipEntry_ToString, (ZipEntry * __this, MethodInfo * method)); DO_APP_FUNC(0x01E21DD0, Stream *, ZipEntry_get_ArchiveStream, (ZipEntry * __this, MethodInfo * method)); DO_APP_FUNC(0x01E220A0, void, ZipEntry_SetFdpLoh, (ZipEntry * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD2C8, ZipEntry_SetFdpLoh__MethodInfo); DO_APP_FUNC(0x01E223E0, int32_t, ZipEntry_GetLengthOfCryptoHeaderBytes, (EncryptionAlgorithm__Enum a, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD2C0, ZipEntry_GetLengthOfCryptoHeaderBytes__MethodInfo); DO_APP_FUNC(0x01E22460, int64_t, ZipEntry_get_FileDataPosition, (ZipEntry * __this, MethodInfo * method)); DO_APP_FUNC(0x01E224A0, int32_t, ZipEntry_get_LengthOfHeader, (ZipEntry * __this, MethodInfo * method)); DO_APP_FUNC(0x01E224E0, void, ZipEntry_CopyHelper__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01E225E0, String *, ZipEntry_CopyHelper_AppendCopyToFileName, (String * f, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD368, ZipEntry_CopyHelper_AppendCopyToFileName__MethodInfo); DO_APP_FUNC(0x01E22A70, void, ZipFile__ctor, (ZipFile * __this, MethodInfo * method)); DO_APP_FUNC(0x01E22C20, void, ZipFile__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01E22CD0, void, ZipFile_add_ReadProgress, (ZipFile * __this, EventHandler_1_Pathfinding_Ionic_Zip_ReadProgressEventArgs_ * value, MethodInfo * method)); @@ -102240,6 +114329,7 @@ DO_APP_FUNC(0x01E22F70, IEnumerator *, ZipFile_System_Collections_IEnumerable_Ge DO_APP_FUNC(0x01E22F80, ZipEntry *, ZipFile_AddEntry, (ZipFile * __this, String * entryName, Stream * stream, MethodInfo * method)); DO_APP_FUNC(0x01E23100, ZipEntry *, ZipFile__InternalAddEntry, (ZipFile * __this, ZipEntry * ze, MethodInfo * method)); DO_APP_FUNC(0x01E23530, ZipEntry *, ZipFile_AddEntry_1, (ZipFile * __this, String * entryName, Byte__Array * byteContent, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD248, ZipFile_AddEntry_1__MethodInfo); DO_APP_FUNC(0x01E23760, void, ZipFile_InternalAddEntry, (ZipFile * __this, String * name, ZipEntry * entry, MethodInfo * method)); DO_APP_FUNC(0x01E23840, String *, ZipFile_get_ArchiveNameForEvent, (ZipFile * __this, MethodInfo * method)); DO_APP_FUNC(0x01E23890, bool, ZipFile_OnSaveBlock, (ZipFile * __this, ZipEntry * entry, int64_t bytesXferred, int64_t totalBytesToXfer, MethodInfo * method)); @@ -102259,19 +114349,25 @@ DO_APP_FUNC(0x01E24C20, void, ZipFile_AfterAddEntry, (ZipFile * __this, ZipEntry DO_APP_FUNC(0x01E24D90, bool, ZipFile_OnZipErrorSaving, (ZipFile * __this, ZipEntry * entry, Exception * exc, MethodInfo * method)); DO_APP_FUNC(0x01E25040, ZipFile *, ZipFile_Read, (Stream * zipStream, MethodInfo * method)); DO_APP_FUNC(0x01E250A0, ZipFile *, ZipFile_Read_1, (Stream * zipStream, TextWriter * statusMessageWriter, Encoding * encoding, EventHandler_1_Pathfinding_Ionic_Zip_ReadProgressEventArgs_ * readProgress, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD1B8, ZipFile_Read_1__MethodInfo); DO_APP_FUNC(0x01E25530, void, ZipFile_ReadIntoInstance, (ZipFile * zf, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD1A0, ZipFile_ReadIntoInstance__MethodInfo); DO_APP_FUNC(0x01E25A80, void, ZipFile_Zip64SeekToCentralDirectory, (ZipFile * zf, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD188, ZipFile_Zip64SeekToCentralDirectory__MethodInfo); DO_APP_FUNC(0x01E25DB0, uint32_t, ZipFile_ReadFirstFourBytes, (Stream * s, MethodInfo * method)); DO_APP_FUNC(0x01E25E00, void, ZipFile_ReadCentralDirectory, (ZipFile * zf, MethodInfo * method)); DO_APP_FUNC(0x01E26150, void, ZipFile_ReadIntoInstance_Orig, (ZipFile * zf, MethodInfo * method)); DO_APP_FUNC(0x01E26610, void, ZipFile_ReadCentralDirectoryFooter, (ZipFile * zf, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD1D0, ZipFile_ReadCentralDirectoryFooter__MethodInfo); DO_APP_FUNC(0x01E26AC0, void, ZipFile_ReadZipFileComment, (ZipFile * zf, MethodInfo * method)); DO_APP_FUNC(0x01E26C70, void, ZipFile_DeleteFileWithRetry, (ZipFile * __this, String * filename, MethodInfo * method)); DO_APP_FUNC(0x01E26D30, void, ZipFile_Save, (ZipFile * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD0E8, ZipFile_Save__MethodInfo); DO_APP_FUNC(0x01E27870, void, ZipFile_NotifyEntriesSaveComplete, (ICollection_1_Pathfinding_Ionic_Zip_ZipEntry_ * c, MethodInfo * method)); DO_APP_FUNC(0x01E27A50, void, ZipFile_RemoveTempFile, (ZipFile * __this, MethodInfo * method)); DO_APP_FUNC(0x01E27AF0, void, ZipFile_CleanupAfterSaveOperation, (ZipFile * __this, MethodInfo * method)); DO_APP_FUNC(0x01E27C20, void, ZipFile_Save_1, (ZipFile * __this, Stream * outputStream, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD170, ZipFile_Save_1__MethodInfo); DO_APP_FUNC(0x01DC1480, bool, ZipFile_get_FullScan, (ZipFile * __this, MethodInfo * method)); DO_APP_FUNC(0x01DC14A0, bool, ZipFile_get_SortEntriesBeforeSaving, (ZipFile * __this, MethodInfo * method)); DO_APP_FUNC(0x01DE0CA0, void, ZipFile_set_AddDirectoryWillTraverseReparsePoints, (ZipFile * __this, bool value, MethodInfo * method)); @@ -102302,6 +114398,7 @@ DO_APP_FUNC(0x01AEF660, EncryptionAlgorithm__Enum, ZipFile_get_Encryption, (ZipF DO_APP_FUNC(0x00A8DE00, SetCompressionCallback *, ZipFile_get_SetCompression, (ZipFile * __this, MethodInfo * method)); DO_APP_FUNC(0x00439170, int32_t, ZipFile_get_MaxOutputSegmentSize, (ZipFile * __this, MethodInfo * method)); DO_APP_FUNC(0x01E27F50, void, ZipFile_set_ParallelDeflateThreshold, (ZipFile * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDD148, ZipFile_set_ParallelDeflateThreshold__MethodInfo); DO_APP_FUNC(0x003C48C0, int64_t, ZipFile_get_ParallelDeflateThreshold, (ZipFile * __this, MethodInfo * method)); DO_APP_FUNC(0x01D1C400, int32_t, ZipFile_get_ParallelDeflateMaxBufferPairs, (ZipFile * __this, MethodInfo * method)); DO_APP_FUNC(0x01E27FD0, String *, ZipFile_ToString, (ZipFile * __this, MethodInfo * method)); @@ -102324,7 +114421,9 @@ DO_APP_FUNC(0x003C7320, Object *, ZipFile_GetEnumerator_c_Iterator0_System_Colle DO_APP_FUNC(0x01E294A0, bool, ZipFile_GetEnumerator_c_Iterator0_MoveNext, (ZipFile_GetEnumerator_c_Iterator0 * __this, MethodInfo * method)); DO_APP_FUNC(0x01E297C0, void, ZipFile_GetEnumerator_c_Iterator0_Dispose, (ZipFile_GetEnumerator_c_Iterator0 * __this, MethodInfo * method)); DO_APP_FUNC(0x01E29820, void, ZipFile_GetEnumerator_c_Iterator0_Reset, (ZipFile_GetEnumerator_c_Iterator0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDEF0, ZipFile_GetEnumerator_c_Iterator0_Reset__MethodInfo); DO_APP_FUNC(0x01E29870, bool, ZipOutput_WriteCentralDirectoryStructure, (Stream * s, ICollection_1_Pathfinding_Ionic_Zip_ZipEntry_ * entries, uint32_t numSegments, Zip64Option__Enum zip64, String * comment, ZipContainer * container, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDED0, ZipOutput_WriteCentralDirectoryStructure__MethodInfo); DO_APP_FUNC(0x01E2A2A0, Encoding *, ZipOutput_GetEncoding, (ZipContainer * container, String * t, MethodInfo * method)); DO_APP_FUNC(0x01E2A420, Byte__Array *, ZipOutput_GenCentralDirectoryFooter, (int64_t StartOfCentralDirectory, int64_t EndOfCentralDirectory, Zip64Option__Enum zip64, int32_t entryCount, String * comment, ZipContainer * container, MethodInfo * method)); DO_APP_FUNC(0x01E2A990, Byte__Array *, ZipOutput_GenZip64EndOfCentralDirectory, (int64_t StartOfCentralDirectory, int64_t EndOfCentralDirectory, int32_t entryCount, uint32_t numSegments, MethodInfo * method)); @@ -102333,6 +114432,7 @@ DO_APP_FUNC(0x0071C520, int32_t, ZipInputStream_get_CodecBufferSize, (ZipInputSt DO_APP_FUNC(0x01E2B0E0, void, ZipInputStream_SetupStream, (ZipInputStream * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3B0, Stream *, ZipInputStream_get_ReadStream, (ZipInputStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01E2B190, int32_t, ZipInputStream_Read, (ZipInputStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDF58, ZipInputStream_Read__MethodInfo); DO_APP_FUNC(0x0041AEF0, bool, ZipInputStream_get_CanRead, (ZipInputStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01E14670, bool, ZipInputStream_get_CanSeek, (ZipInputStream * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, ZipInputStream_get_CanWrite, (ZipInputStream * __this, MethodInfo * method)); @@ -102340,9 +114440,12 @@ DO_APP_FUNC(0x01E14700, int64_t, ZipInputStream_get_Length, (ZipInputStream * __ DO_APP_FUNC(0x01E14740, int64_t, ZipInputStream_get_Position, (ZipInputStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01E2B380, void, ZipInputStream_set_Position, (ZipInputStream * __this, int64_t value, MethodInfo * method)); DO_APP_FUNC(0x01E2B3A0, void, ZipInputStream_Flush, (ZipInputStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDF48, ZipInputStream_Flush__MethodInfo); DO_APP_FUNC(0x01E2B400, void, ZipInputStream_Write, (ZipInputStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDF38, ZipInputStream_Write__MethodInfo); DO_APP_FUNC(0x01E2B460, int64_t, ZipInputStream_Seek, (ZipInputStream * __this, int64_t offset, SeekOrigin__Enum origin, MethodInfo * method)); DO_APP_FUNC(0x01E2B490, void, ZipInputStream_SetLength, (ZipInputStream * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDF20, ZipInputStream_SetLength__MethodInfo); DO_APP_FUNC(0x006C4850, int32_t, ZipOutputStream_get_CodecBufferSize, (ZipOutputStream * __this, MethodInfo * method)); DO_APP_FUNC(0x006C49D0, CompressionStrategy__Enum, ZipOutputStream_get_Strategy, (ZipOutputStream * __this, MethodInfo * method)); DO_APP_FUNC(0x00439170, Zip64Option__Enum, ZipOutputStream_get_EnableZip64, (ZipOutputStream * __this, MethodInfo * method)); @@ -102353,23 +114456,32 @@ DO_APP_FUNC(0x0049E0C0, int64_t, ZipOutputStream_get_ParallelDeflateThreshold, ( DO_APP_FUNC(0x01806120, int32_t, ZipOutputStream_get_ParallelDeflateMaxBufferPairs, (ZipOutputStream * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB330, Stream *, ZipOutputStream_get_OutputStream, (ZipOutputStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01E2B4E0, void, ZipOutputStream_Write, (ZipOutputStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDF28, ZipOutputStream_Write__MethodInfo); DO_APP_FUNC(0x01E2B860, void, ZipOutputStream__InitiateCurrentEntry, (ZipOutputStream * __this, bool finishing, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDEA0, ZipOutputStream__InitiateCurrentEntry__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, ZipOutputStream_get_CanRead, (ZipOutputStream * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, ZipOutputStream_get_CanSeek, (ZipOutputStream * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, ZipOutputStream_get_CanWrite, (ZipOutputStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01E2BA00, int64_t, ZipOutputStream_get_Length, (ZipOutputStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDE88, ZipOutputStream_get_Length__MethodInfo); DO_APP_FUNC(0x01B3F0E0, int64_t, ZipOutputStream_get_Position, (ZipOutputStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01E2BA50, void, ZipOutputStream_set_Position, (ZipOutputStream * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDE90, ZipOutputStream_set_Position__MethodInfo); DO_APP_FUNC(0x003AE050, void, ZipOutputStream_Flush, (ZipOutputStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01E2BAA0, int32_t, ZipOutputStream_Read, (ZipOutputStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDE80, ZipOutputStream_Read__MethodInfo); DO_APP_FUNC(0x01E2BB00, int64_t, ZipOutputStream_Seek, (ZipOutputStream * __this, int64_t offset, SeekOrigin__Enum origin, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDE70, ZipOutputStream_Seek__MethodInfo); DO_APP_FUNC(0x01E2BB60, void, ZipOutputStream_SetLength, (ZipOutputStream * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDE60, ZipOutputStream_SetLength__MethodInfo); DO_APP_FUNC(0x01E2BBB0, void, ZipContainer__ctor, (ZipContainer * __this, Object * o, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, ZipFile *, ZipContainer_get_ZipFile, (ZipContainer * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, ZipOutputStream *, ZipContainer_get_ZipOutputStream, (ZipContainer * __this, MethodInfo * method)); DO_APP_FUNC(0x01E2BDF0, String *, ZipContainer_get_Password, (ZipContainer * __this, MethodInfo * method)); DO_APP_FUNC(0x01E2BE40, Zip64Option__Enum, ZipContainer_get_Zip64, (ZipContainer * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDE50, ZipContainer_get_Zip64__MethodInfo); DO_APP_FUNC(0x01E2BED0, int32_t, ZipContainer_get_BufferSize, (ZipContainer * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDE40, ZipContainer_get_BufferSize__MethodInfo); DO_APP_FUNC(0x01E2BF50, ParallelDeflateOutputStream *, ZipContainer_get_ParallelDeflater, (ZipContainer * __this, MethodInfo * method)); DO_APP_FUNC(0x01E2BFA0, void, ZipContainer_set_ParallelDeflater, (ZipContainer * __this, ParallelDeflateOutputStream * value, MethodInfo * method)); DO_APP_FUNC(0x01E2C0A0, int64_t, ZipContainer_get_ParallelDeflateThreshold, (ZipContainer * __this, MethodInfo * method)); @@ -102385,6 +114497,7 @@ DO_APP_FUNC(0x01E2C300, void, ZipSegmentedStream__ctor, (ZipSegmentedStream * __ DO_APP_FUNC(0x01E2C350, ZipSegmentedStream *, ZipSegmentedStream_ForReading, (String * name, uint32_t initialDiskNumber, uint32_t maxDiskNumber, MethodInfo * method)); DO_APP_FUNC(0x01E2C4D0, ZipSegmentedStream *, ZipSegmentedStream_ForWriting, (String * name, int32_t maxSegmentSize, MethodInfo * method)); DO_APP_FUNC(0x01E2C7C0, Stream *, ZipSegmentedStream_ForUpdate, (String * name, uint32_t diskNumber, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDEC0, ZipSegmentedStream_ForUpdate__MethodInfo); DO_APP_FUNC(0x00C3A440, bool, ZipSegmentedStream_get_ContiguousWrite, (ZipSegmentedStream * __this, MethodInfo * method)); DO_APP_FUNC(0x00C3A450, void, ZipSegmentedStream_set_ContiguousWrite, (ZipSegmentedStream * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x010C8F60, uint32_t, ZipSegmentedStream_get_CurrentSegment, (ZipSegmentedStream * __this, MethodInfo * method)); @@ -102392,13 +114505,17 @@ DO_APP_FUNC(0x01E2C9A0, void, ZipSegmentedStream_set_CurrentSegment, (ZipSegment DO_APP_FUNC(0x01E2CA00, String *, ZipSegmentedStream_get_CurrentName, (ZipSegmentedStream * __this, MethodInfo * method)); DO_APP_FUNC(0x003CD530, String *, ZipSegmentedStream_get_CurrentTempName, (ZipSegmentedStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01E2CA80, String *, ZipSegmentedStream__NameForSegment, (ZipSegmentedStream * __this, uint32_t diskNumber, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDEB0, ZipSegmentedStream__NameForSegment__MethodInfo); DO_APP_FUNC(0x01E2CC40, uint32_t, ZipSegmentedStream_ComputeSegment, (ZipSegmentedStream * __this, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x01E2CC90, String *, ZipSegmentedStream_ToString, (ZipSegmentedStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01E2CEF0, void, ZipSegmentedStream__SetReadStream, (ZipSegmentedStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01E2CFF0, int32_t, ZipSegmentedStream_Read, (ZipSegmentedStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDDB8, ZipSegmentedStream_Read__MethodInfo); DO_APP_FUNC(0x01E2D200, void, ZipSegmentedStream__SetWriteStream, (ZipSegmentedStream * __this, uint32_t increment, MethodInfo * method)); DO_APP_FUNC(0x01E2D470, void, ZipSegmentedStream_Write, (ZipSegmentedStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDDB0, ZipSegmentedStream_Write__MethodInfo); DO_APP_FUNC(0x01E2D640, int64_t, ZipSegmentedStream_TruncateBackward, (ZipSegmentedStream * __this, uint32_t diskNumber, int64_t offset, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDD98, ZipSegmentedStream_TruncateBackward__MethodInfo); DO_APP_FUNC(0x01E2DA40, bool, ZipSegmentedStream_get_CanRead, (ZipSegmentedStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01E2DA90, bool, ZipSegmentedStream_get_CanSeek, (ZipSegmentedStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01E2DAD0, bool, ZipSegmentedStream_get_CanWrite, (ZipSegmentedStream * __this, MethodInfo * method)); @@ -102408,6 +114525,7 @@ DO_APP_FUNC(0x01E2DB80, int64_t, ZipSegmentedStream_get_Position, (ZipSegmentedS DO_APP_FUNC(0x01E2DBB0, void, ZipSegmentedStream_set_Position, (ZipSegmentedStream * __this, int64_t value, MethodInfo * method)); DO_APP_FUNC(0x01E2DBE0, int64_t, ZipSegmentedStream_Seek, (ZipSegmentedStream * __this, int64_t offset, SeekOrigin__Enum origin, MethodInfo * method)); DO_APP_FUNC(0x01E2DC10, void, ZipSegmentedStream_SetLength, (ZipSegmentedStream * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDE38, ZipSegmentedStream_SetLength__MethodInfo); DO_APP_FUNC(0x01E2DC90, void, ZipSegmentedStream_Dispose, (ZipSegmentedStream * __this, bool disposing, MethodInfo * method)); DO_APP_FUNC(0x01E2DD00, void, DeflateManager__ctor, (DeflateManager * __this, MethodInfo * method)); DO_APP_FUNC(0x01E2E200, void, DeflateManager__cctor, (MethodInfo * method)); @@ -102432,19 +114550,24 @@ DO_APP_FUNC(0x01E30810, void, DeflateManager_bi_windup, (DeflateManager * __this DO_APP_FUNC(0x01E308E0, void, DeflateManager_copy_block, (DeflateManager * __this, int32_t buf, int32_t len, bool header, MethodInfo * method)); DO_APP_FUNC(0x01E30A00, void, DeflateManager_flush_block_only, (DeflateManager * __this, bool eof, MethodInfo * method)); DO_APP_FUNC(0x01E30A70, BlockState__Enum, DeflateManager_DeflateNone, (DeflateManager * __this, FlushType__Enum flush, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDCC8, DeflateManager_DeflateNone__MethodInfo); DO_APP_FUNC(0x01E30D20, void, DeflateManager__tr_stored_block, (DeflateManager * __this, int32_t buf, int32_t stored_len, bool eof, MethodInfo * method)); DO_APP_FUNC(0x01E30EA0, void, DeflateManager__tr_flush_block, (DeflateManager * __this, int32_t buf, int32_t stored_len, bool eof, MethodInfo * method)); DO_APP_FUNC(0x01E314E0, void, DeflateManager__fillWindow, (DeflateManager * __this, MethodInfo * method)); DO_APP_FUNC(0x01E31870, BlockState__Enum, DeflateManager_DeflateFast, (DeflateManager * __this, FlushType__Enum flush, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDD50, DeflateManager_DeflateFast__MethodInfo); DO_APP_FUNC(0x01E31E10, BlockState__Enum, DeflateManager_DeflateSlow, (DeflateManager * __this, FlushType__Enum flush, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDCD0, DeflateManager_DeflateSlow__MethodInfo); DO_APP_FUNC(0x01E32530, int32_t, DeflateManager_longest_match, (DeflateManager * __this, int32_t cur_match, MethodInfo * method)); DO_APP_FUNC(0x01E32A10, bool, DeflateManager_get_WantRfc1950HeaderBytes, (DeflateManager * __this, MethodInfo * method)); DO_APP_FUNC(0x01E32A20, void, DeflateManager_set_WantRfc1950HeaderBytes, (DeflateManager * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x01E32A30, int32_t, DeflateManager_Initialize, (DeflateManager * __this, ZlibCodec * codec, CompressionLevel__Enum_1 level, int32_t bits, CompressionStrategy__Enum compressionStrategy, MethodInfo * method)); DO_APP_FUNC(0x01E32AE0, int32_t, DeflateManager_Initialize_1, (DeflateManager * __this, ZlibCodec * codec, CompressionLevel__Enum_1 level, int32_t windowBits, int32_t memLevel, CompressionStrategy__Enum strategy, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDD60, DeflateManager_Initialize_1__MethodInfo); DO_APP_FUNC(0x01E32EA0, void, DeflateManager_Reset, (DeflateManager * __this, MethodInfo * method)); DO_APP_FUNC(0x01E331B0, void, DeflateManager_SetDeflater, (DeflateManager * __this, MethodInfo * method)); DO_APP_FUNC(0x01E333F0, int32_t, DeflateManager_Deflate, (DeflateManager * __this, FlushType__Enum flush, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDCC0, DeflateManager_Deflate__MethodInfo); DO_APP_FUNC(0x015B7610, void, DeflateManager_CompressFunc__ctor, (DeflateManager_CompressFunc * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003F42D0, BlockState__Enum, DeflateManager_CompressFunc_Invoke, (DeflateManager_CompressFunc * __this, FlushType__Enum flush, MethodInfo * method)); DO_APP_FUNC(0x01E33C70, void, DeflateManager_Config__ctor, (DeflateManager_Config * __this, int32_t goodLength, int32_t maxLazy, int32_t niceLength, int32_t maxChainLength, DeflateFlavor__Enum flavor, MethodInfo * method)); @@ -102453,35 +114576,57 @@ DO_APP_FUNC(0x01E341D0, DeflateManager_Config *, DeflateManager_Config_Lookup, ( DO_APP_FUNC(0x01E34250, void, DeflateStream_1__ctor, (DeflateStream_1 * __this, Stream * stream, CompressionMode__Enum_1 mode, bool leaveOpen, MethodInfo * method)); DO_APP_FUNC(0x01E34280, void, DeflateStream_1__ctor_1, (DeflateStream_1 * __this, Stream * stream, CompressionMode__Enum_1 mode, CompressionLevel__Enum_1 level, bool leaveOpen, MethodInfo * method)); DO_APP_FUNC(0x01E34400, void, DeflateStream_1_set_BufferSize, (DeflateStream_1 * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDD30, DeflateStream_1_set_BufferSize__MethodInfo); DO_APP_FUNC(0x01E34590, void, DeflateStream_1_set_Strategy, (DeflateStream_1 * __this, CompressionStrategy__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDD28, DeflateStream_1_set_Strategy__MethodInfo); DO_APP_FUNC(0x01E34610, void, DeflateStream_1_Dispose, (DeflateStream_1 * __this, bool disposing, MethodInfo * method)); DO_APP_FUNC(0x01E34690, bool, DeflateStream_1_get_CanRead, (DeflateStream_1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDD10, DeflateStream_1_get_CanRead__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, DeflateStream_1_get_CanSeek, (DeflateStream_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x01E34730, bool, DeflateStream_1_get_CanWrite, (DeflateStream_1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDD18, DeflateStream_1_get_CanWrite__MethodInfo); DO_APP_FUNC(0x01E347D0, void, DeflateStream_1_Flush, (DeflateStream_1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDD00, DeflateStream_1_Flush__MethodInfo); DO_APP_FUNC(0x01E34860, int64_t, DeflateStream_1_get_Length, (DeflateStream_1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDD08, DeflateStream_1_get_Length__MethodInfo); DO_APP_FUNC(0x01E348B0, int64_t, DeflateStream_1_get_Position, (DeflateStream_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x01E34900, void, DeflateStream_1_set_Position, (DeflateStream_1 * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDCF0, DeflateStream_1_set_Position__MethodInfo); DO_APP_FUNC(0x01E34950, int32_t, DeflateStream_1_Read, (DeflateStream_1 * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDCF8, DeflateStream_1_Read__MethodInfo); DO_APP_FUNC(0x01E349E0, int64_t, DeflateStream_1_Seek, (DeflateStream_1 * __this, int64_t offset, SeekOrigin__Enum origin, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDCE0, DeflateStream_1_Seek__MethodInfo); DO_APP_FUNC(0x01E34A30, void, DeflateStream_1_SetLength, (DeflateStream_1 * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDCE8, DeflateStream_1_SetLength__MethodInfo); DO_APP_FUNC(0x01E34A80, void, DeflateStream_1_Write, (DeflateStream_1 * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDCD8, DeflateStream_1_Write__MethodInfo); DO_APP_FUNC(0x01E34B10, void, GZipStream_1__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003C7490, String *, GZipStream_1_get_Comment, (GZipStream_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x01E34C20, void, GZipStream_1_set_Comment, (GZipStream_1 * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDC48, GZipStream_1_set_Comment__MethodInfo); DO_APP_FUNC(0x003C7420, String *, GZipStream_1_get_FileName, (GZipStream_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x01E34CE0, void, GZipStream_1_set_FileName, (GZipStream_1 * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDC30, GZipStream_1_set_FileName__MethodInfo); DO_APP_FUNC(0x01E34F30, bool, GZipStream_1_get_CanRead, (GZipStream_1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDC20, GZipStream_1_get_CanRead__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, GZipStream_1_get_CanSeek, (GZipStream_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x01E34FD0, bool, GZipStream_1_get_CanWrite, (GZipStream_1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDC28, GZipStream_1_get_CanWrite__MethodInfo); DO_APP_FUNC(0x01E35070, void, GZipStream_1_Flush, (GZipStream_1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDC10, GZipStream_1_Flush__MethodInfo); DO_APP_FUNC(0x01E35100, int64_t, GZipStream_1_get_Length, (GZipStream_1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDC18, GZipStream_1_get_Length__MethodInfo); DO_APP_FUNC(0x01E35150, int64_t, GZipStream_1_get_Position, (GZipStream_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x01E351B0, void, GZipStream_1_set_Position, (GZipStream_1 * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDC00, GZipStream_1_set_Position__MethodInfo); DO_APP_FUNC(0x01E35200, int32_t, GZipStream_1_Read, (GZipStream_1 * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDC08, GZipStream_1_Read__MethodInfo); DO_APP_FUNC(0x01E35390, int64_t, GZipStream_1_Seek, (GZipStream_1 * __this, int64_t offset, SeekOrigin__Enum origin, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDBF0, GZipStream_1_Seek__MethodInfo); DO_APP_FUNC(0x01E353E0, void, GZipStream_1_SetLength, (GZipStream_1 * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDBF8, GZipStream_1_SetLength__MethodInfo); DO_APP_FUNC(0x01E35430, void, GZipStream_1_Write, (GZipStream_1 * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDC90, GZipStream_1_Write__MethodInfo); DO_APP_FUNC(0x01E35560, int32_t, GZipStream_1_EmitHeader, (GZipStream_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InfTree__ctor, (InfTree * __this, MethodInfo * method)); DO_APP_FUNC(0x01E359E0, void, InfTree__cctor, (MethodInfo * method)); @@ -102507,35 +114652,50 @@ DO_APP_FUNC(0x00594F20, bool, InflateManager_get_HandleRfc1950HeaderBytes, (Infl DO_APP_FUNC(0x01E3A7E0, int32_t, InflateManager_Reset, (InflateManager * __this, MethodInfo * method)); DO_APP_FUNC(0x01E3A880, int32_t, InflateManager_End, (InflateManager * __this, MethodInfo * method)); DO_APP_FUNC(0x01E3A9E0, int32_t, InflateManager_Initialize, (InflateManager * __this, ZlibCodec * codec, int32_t w, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE9F8, InflateManager_Initialize__MethodInfo); DO_APP_FUNC(0x01E3ACE0, int32_t, InflateManager_Inflate, (InflateManager * __this, FlushType__Enum flush, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE9B8, InflateManager_Inflate__MethodInfo); DO_APP_FUNC(0x01E3B7E0, void, WorkItem__ctor, (WorkItem * __this, int32_t size, CompressionLevel__Enum_1 compressLevel, CompressionStrategy__Enum strategy, int32_t ix, MethodInfo * method)); DO_APP_FUNC(0x01E3BAA0, void, ParallelDeflateOutputStream__ctor, (ParallelDeflateOutputStream * __this, Stream * stream, CompressionLevel__Enum_1 level, CompressionStrategy__Enum strategy, bool leaveOpen, MethodInfo * method)); DO_APP_FUNC(0x01E3BD20, void, ParallelDeflateOutputStream__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01AEF660, CompressionStrategy__Enum, ParallelDeflateOutputStream_get_Strategy, (ParallelDeflateOutputStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01E3BD80, void, ParallelDeflateOutputStream_set_Strategy, (ParallelDeflateOutputStream * __this, CompressionStrategy__Enum value, MethodInfo * method)); DO_APP_FUNC(0x01E3BD90, void, ParallelDeflateOutputStream_set_MaxBufferPairs, (ParallelDeflateOutputStream * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE8C0, ParallelDeflateOutputStream_set_MaxBufferPairs__MethodInfo); DO_APP_FUNC(0x01E3BE20, void, ParallelDeflateOutputStream_set_BufferSize, (ParallelDeflateOutputStream * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE878, ParallelDeflateOutputStream_set_BufferSize__MethodInfo); DO_APP_FUNC(0x01E3BEB0, void, ParallelDeflateOutputStream__InitializePoolOfWorkItems, (ParallelDeflateOutputStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01E3C430, void, ParallelDeflateOutputStream_Write, (ParallelDeflateOutputStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE918, ParallelDeflateOutputStream_Write__MethodInfo); DO_APP_FUNC(0x01E3C760, void, ParallelDeflateOutputStream__FlushFinish, (ParallelDeflateOutputStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE7F8, ParallelDeflateOutputStream__FlushFinish__MethodInfo); DO_APP_FUNC(0x01E3C9A0, void, ParallelDeflateOutputStream__Flush, (ParallelDeflateOutputStream * __this, bool lastInput, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE7D8, ParallelDeflateOutputStream__Flush__MethodInfo); DO_APP_FUNC(0x01E3CAC0, void, ParallelDeflateOutputStream_Flush, (ParallelDeflateOutputStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE7E8, ParallelDeflateOutputStream_Flush__MethodInfo); DO_APP_FUNC(0x01E3CB40, void, ParallelDeflateOutputStream_Close, (ParallelDeflateOutputStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE7C0, ParallelDeflateOutputStream_Close__MethodInfo); DO_APP_FUNC(0x01E3CBF0, void, ParallelDeflateOutputStream_Dispose, (ParallelDeflateOutputStream * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ParallelDeflateOutputStream_Dispose_1, (ParallelDeflateOutputStream * __this, bool disposing, MethodInfo * method)); DO_APP_FUNC(0x01E3CC80, void, ParallelDeflateOutputStream_Reset, (ParallelDeflateOutputStream * __this, Stream * stream, MethodInfo * method)); DO_APP_FUNC(0x01E3D0A0, void, ParallelDeflateOutputStream_EmitPendingBuffers, (ParallelDeflateOutputStream * __this, bool doAll, bool mustWait, MethodInfo * method)); DO_APP_FUNC(0x01E3D700, void, ParallelDeflateOutputStream__DeflateOne, (ParallelDeflateOutputStream * __this, Object * wi, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE940, ParallelDeflateOutputStream__DeflateOne__MethodInfo); DO_APP_FUNC(0x01E3DB90, bool, ParallelDeflateOutputStream_DeflateOneSegment, (ParallelDeflateOutputStream * __this, WorkItem * workitem, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, ParallelDeflateOutputStream_get_CanSeek, (ParallelDeflateOutputStream * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, ParallelDeflateOutputStream_get_CanRead, (ParallelDeflateOutputStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01E3DCD0, bool, ParallelDeflateOutputStream_get_CanWrite, (ParallelDeflateOutputStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01E3DD00, int64_t, ParallelDeflateOutputStream_get_Length, (ParallelDeflateOutputStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE850, ParallelDeflateOutputStream_get_Length__MethodInfo); DO_APP_FUNC(0x01E3DD50, int64_t, ParallelDeflateOutputStream_get_Position, (ParallelDeflateOutputStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01E3DD80, void, ParallelDeflateOutputStream_set_Position, (ParallelDeflateOutputStream * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE860, ParallelDeflateOutputStream_set_Position__MethodInfo); DO_APP_FUNC(0x01E3DDD0, int32_t, ParallelDeflateOutputStream_Read, (ParallelDeflateOutputStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE840, ParallelDeflateOutputStream_Read__MethodInfo); DO_APP_FUNC(0x01E3DE20, int64_t, ParallelDeflateOutputStream_Seek, (ParallelDeflateOutputStream * __this, int64_t offset, SeekOrigin__Enum origin, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE848, ParallelDeflateOutputStream_Seek__MethodInfo); DO_APP_FUNC(0x01E3DE70, void, ParallelDeflateOutputStream_SetLength, (ParallelDeflateOutputStream * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE838, ParallelDeflateOutputStream_SetLength__MethodInfo); DO_APP_FUNC(0x003AE050, void, Tree__ctor, (Tree * __this, MethodInfo * method)); DO_APP_FUNC(0x01E3DEC0, void, Tree__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01E3E490, int32_t, Tree_DistanceCode, (int32_t dist, MethodInfo * method)); @@ -102555,32 +114715,48 @@ DO_APP_FUNC(0x01E3FDF0, bool, ZlibBaseStream_get__wantCompress, (ZlibBaseStream DO_APP_FUNC(0x01E3FE00, ZlibCodec *, ZlibBaseStream_get_z, (ZlibBaseStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01E40030, Byte__Array *, ZlibBaseStream_get_workingBuffer, (ZlibBaseStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01E400D0, void, ZlibBaseStream_Write, (ZlibBaseStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE738, ZlibBaseStream_Write__MethodInfo); DO_APP_FUNC(0x01E40500, void, ZlibBaseStream_finish, (ZlibBaseStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE630, ZlibBaseStream_finish__MethodInfo); DO_APP_FUNC(0x01E40D40, void, ZlibBaseStream_end, (ZlibBaseStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01E40EC0, void, ZlibBaseStream_Close, (ZlibBaseStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01E2DB20, void, ZlibBaseStream_Flush, (ZlibBaseStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01E41150, int64_t, ZlibBaseStream_Seek, (ZlibBaseStream * __this, int64_t offset, SeekOrigin__Enum origin, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE5E0, ZlibBaseStream_Seek__MethodInfo); DO_APP_FUNC(0x01E411A0, void, ZlibBaseStream_SetLength, (ZlibBaseStream * __this, int64_t value, MethodInfo * method)); DO_APP_FUNC(0x01E411D0, String *, ZlibBaseStream_ReadZeroTerminatedString, (ZlibBaseStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE5C8, ZlibBaseStream_ReadZeroTerminatedString__MethodInfo); DO_APP_FUNC(0x01E413E0, int32_t, ZlibBaseStream__ReadAndValidateGzipHeader, (ZlibBaseStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE6E8, ZlibBaseStream__ReadAndValidateGzipHeader__MethodInfo); DO_APP_FUNC(0x01E41830, int32_t, ZlibBaseStream_Read, (ZlibBaseStream * __this, Byte__Array * buffer, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE6C0, ZlibBaseStream_Read__MethodInfo); DO_APP_FUNC(0x01E41ED0, bool, ZlibBaseStream_get_CanRead, (ZlibBaseStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01E41F00, bool, ZlibBaseStream_get_CanSeek, (ZlibBaseStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01E41F30, bool, ZlibBaseStream_get_CanWrite, (ZlibBaseStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01E2DB50, int64_t, ZlibBaseStream_get_Length, (ZlibBaseStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01E41F60, int64_t, ZlibBaseStream_get_Position, (ZlibBaseStream * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE698, ZlibBaseStream_get_Position__MethodInfo); DO_APP_FUNC(0x01E41FB0, void, ZlibBaseStream_set_Position, (ZlibBaseStream * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE678, ZlibBaseStream_set_Position__MethodInfo); DO_APP_FUNC(0x01E42000, void, ZlibCodec__ctor, (ZlibCodec * __this, MethodInfo * method)); DO_APP_FUNC(0x01E42010, int32_t, ZlibCodec_InitializeInflate, (ZlibCodec * __this, bool expectRfc1950Header, MethodInfo * method)); DO_APP_FUNC(0x01E42140, int32_t, ZlibCodec_InitializeInflate_1, (ZlibCodec * __this, int32_t windowBits, bool expectRfc1950Header, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE550, ZlibCodec_InitializeInflate_1__MethodInfo); DO_APP_FUNC(0x01E42270, int32_t, ZlibCodec_Inflate, (ZlibCodec * __this, FlushType__Enum flush, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE540, ZlibCodec_Inflate__MethodInfo); DO_APP_FUNC(0x01E422F0, int32_t, ZlibCodec_EndInflate, (ZlibCodec * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE548, ZlibCodec_EndInflate__MethodInfo); DO_APP_FUNC(0x01E423C0, int32_t, ZlibCodec_InitializeDeflate, (ZlibCodec * __this, CompressionLevel__Enum_1 level, bool wantRfc1950Header, MethodInfo * method)); DO_APP_FUNC(0x01E42590, int32_t, ZlibCodec__InternalInitializeDeflate, (ZlibCodec * __this, bool wantRfc1950Header, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE528, ZlibCodec__InternalInitializeDeflate__MethodInfo); DO_APP_FUNC(0x01E42760, int32_t, ZlibCodec_Deflate, (ZlibCodec * __this, FlushType__Enum flush, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE518, ZlibCodec_Deflate__MethodInfo); DO_APP_FUNC(0x01E427E0, int32_t, ZlibCodec_EndDeflate, (ZlibCodec * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE4E8, ZlibCodec_EndDeflate__MethodInfo); DO_APP_FUNC(0x01E428A0, void, ZlibCodec_ResetDeflate, (ZlibCodec * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE4F8, ZlibCodec_ResetDeflate__MethodInfo); DO_APP_FUNC(0x01E42920, void, ZlibCodec_flush_pending, (ZlibCodec * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE4D8, ZlibCodec_flush_pending__MethodInfo); DO_APP_FUNC(0x01E42AF0, int32_t, ZlibCodec_read_buf, (ZlibCodec * __this, Byte__Array * buf, int32_t start, int32_t size, MethodInfo * method)); DO_APP_FUNC(0x01E42C00, void, CRC32__ctor, (CRC32 * __this, MethodInfo * method)); DO_APP_FUNC(0x01E42C20, void, CRC32__ctor_1, (CRC32 * __this, bool reverseBits, MethodInfo * method)); @@ -102589,9 +114765,11 @@ DO_APP_FUNC(0x003BB3D0, int64_t, CRC32_get_TotalBytesRead, (CRC32 * __this, Meth DO_APP_FUNC(0x01E42C60, int32_t, CRC32_get_Crc32Result, (CRC32 * __this, MethodInfo * method)); DO_APP_FUNC(0x01E42C70, int32_t, CRC32_GetCrc32, (CRC32 * __this, Stream * input, MethodInfo * method)); DO_APP_FUNC(0x01E42C80, int32_t, CRC32_GetCrc32AndCopy, (CRC32 * __this, Stream * input, Stream * output, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE5B0, CRC32_GetCrc32AndCopy__MethodInfo); DO_APP_FUNC(0x01E42F00, int32_t, CRC32_ComputeCrc32, (CRC32 * __this, int32_t W, uint8_t B, MethodInfo * method)); DO_APP_FUNC(0x01E42F00, int32_t, CRC32__InternalComputeCrc32, (CRC32 * __this, uint32_t W, uint8_t B, MethodInfo * method)); DO_APP_FUNC(0x01E42F40, void, CRC32_SlurpBlock, (CRC32 * __this, Byte__Array * block, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE598, CRC32_SlurpBlock__MethodInfo); DO_APP_FUNC(0x01E43050, uint32_t, CRC32_ReverseBits, (uint32_t data, MethodInfo * method)); DO_APP_FUNC(0x01E43090, uint8_t, CRC32_ReverseBits_1, (uint8_t data, MethodInfo * method)); DO_APP_FUNC(0x01E430C0, void, CRC32_GenerateLookupTable, (CRC32 * __this, MethodInfo * method)); @@ -102601,6 +114779,7 @@ DO_APP_FUNC(0x01E432F0, void, CRC32_Combine, (CRC32 * __this, int32_t crc, int32 DO_APP_FUNC(0x01E435C0, void, CrcCalculatorStream__ctor, (CrcCalculatorStream * __this, Stream * stream, MethodInfo * method)); DO_APP_FUNC(0x01E43640, void, CrcCalculatorStream__ctor_1, (CrcCalculatorStream * __this, Stream * stream, bool leaveOpen, MethodInfo * method)); DO_APP_FUNC(0x01E436D0, void, CrcCalculatorStream__ctor_2, (CrcCalculatorStream * __this, Stream * stream, int64_t length, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE568, CrcCalculatorStream__ctor_2__MethodInfo); DO_APP_FUNC(0x01E43750, void, CrcCalculatorStream__ctor_3, (CrcCalculatorStream * __this, bool leaveOpen, int64_t length, Stream * stream, CRC32 * crc32, MethodInfo * method)); DO_APP_FUNC(0x01E438E0, void, CrcCalculatorStream__cctor, (MethodInfo * method)); DO_APP_FUNC(0x0198B640, void, CrcCalculatorStream_System_IDisposable_Dispose, (CrcCalculatorStream * __this, MethodInfo * method)); @@ -102615,11 +114794,16 @@ DO_APP_FUNC(0x01E146D0, void, CrcCalculatorStream_Flush, (CrcCalculatorStream * DO_APP_FUNC(0x01E43B00, int64_t, CrcCalculatorStream_get_Length, (CrcCalculatorStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01E43920, int64_t, CrcCalculatorStream_get_Position, (CrcCalculatorStream * __this, MethodInfo * method)); DO_APP_FUNC(0x01E43BA0, void, CrcCalculatorStream_set_Position, (CrcCalculatorStream * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE490, CrcCalculatorStream_set_Position__MethodInfo); DO_APP_FUNC(0x01E43BF0, int64_t, CrcCalculatorStream_Seek, (CrcCalculatorStream * __this, int64_t offset, SeekOrigin__Enum origin, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE478, CrcCalculatorStream_Seek__MethodInfo); DO_APP_FUNC(0x01E43C40, void, CrcCalculatorStream_SetLength, (CrcCalculatorStream * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE480, CrcCalculatorStream_SetLength__MethodInfo); DO_APP_FUNC(0x01E43C90, void, CrcCalculatorStream_Close, (CrcCalculatorStream * __this, MethodInfo * method)); DO_APP_FUNC(0x00AA75E0, void, BoltNetworkInternal_User_EnvironmentSetup, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4420, BoltNetworkInternal_User_EnvironmentSetup__MethodInfo); DO_APP_FUNC(0x003AE050, void, BoltNetworkInternal_User_EnvironmentReset, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4418, BoltNetworkInternal_User_EnvironmentReset__MethodInfo); DO_APP_FUNC(0x00AA83C0, void, InventorySlot__ctor, (InventorySlot * __this, MethodInfo * method)); DO_APP_FUNC(0x00AA8470, int32_t, InventorySlot_get_ItemId, (InventorySlot * __this, MethodInfo * method)); DO_APP_FUNC(0x00AA84C0, void, InventorySlot_set_ItemId, (InventorySlot * __this, int32_t value, MethodInfo * method)); @@ -103229,6 +115413,7 @@ DO_APP_FUNC(0x00AAA3B0, BoltEntity *, InteractTriggerEvent_get_Entity, (Interact DO_APP_FUNC(0x00ACAA00, void, InteractTriggerEvent_set_Entity, (InteractTriggerEvent * __this, BoltEntity * value, MethodInfo * method)); DO_APP_FUNC(0x00ACAB10, String *, InteractTriggerEvent_ToString, (InteractTriggerEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x00ACABA0, InteractTriggerEvent *, InteractTriggerEvent_Create, (uint8_t targets, BoltConnection * connection, ReliabilityModes__Enum reliability, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC62D8, InteractTriggerEvent_Create__MethodInfo); DO_APP_FUNC(0x00ACADF0, InteractTriggerEvent *, InteractTriggerEvent_Create_1, (GlobalTargets__Enum targets, MethodInfo * method)); DO_APP_FUNC(0x00ACAE00, InteractTriggerEvent *, InteractTriggerEvent_Create_2, (GlobalTargets__Enum targets, ReliabilityModes__Enum reliability, MethodInfo * method)); DO_APP_FUNC(0x00ACAE10, InteractTriggerEvent *, InteractTriggerEvent_Create_3, (BoltConnection * connection, MethodInfo * method)); @@ -103323,6 +115508,7 @@ DO_APP_FUNC(0x00AB7E10, BoltEntity *, InteractObjectResponseEvent_get_Player, (I DO_APP_FUNC(0x00AC9260, void, InteractObjectResponseEvent_set_Player, (InteractObjectResponseEvent * __this, BoltEntity * value, MethodInfo * method)); DO_APP_FUNC(0x00ACE040, String *, InteractObjectResponseEvent_ToString, (InteractObjectResponseEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x00ACE150, InteractObjectResponseEvent *, InteractObjectResponseEvent_Create, (uint8_t targets, BoltConnection * connection, ReliabilityModes__Enum reliability, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC6208, InteractObjectResponseEvent_Create__MethodInfo); DO_APP_FUNC(0x00ACE3A0, InteractObjectResponseEvent *, InteractObjectResponseEvent_Create_1, (GlobalTargets__Enum targets, MethodInfo * method)); DO_APP_FUNC(0x00ACE3B0, InteractObjectResponseEvent *, InteractObjectResponseEvent_Create_2, (GlobalTargets__Enum targets, ReliabilityModes__Enum reliability, MethodInfo * method)); DO_APP_FUNC(0x00ACE3C0, InteractObjectResponseEvent *, InteractObjectResponseEvent_Create_3, (BoltConnection * connection, MethodInfo * method)); @@ -103353,6 +115539,7 @@ DO_APP_FUNC(0x00AB7E10, BoltEntity *, KnockoutBoxEvent_get_Player, (KnockoutBoxE DO_APP_FUNC(0x00AC9260, void, KnockoutBoxEvent_set_Player, (KnockoutBoxEvent * __this, BoltEntity * value, MethodInfo * method)); DO_APP_FUNC(0x00ACEFF0, String *, KnockoutBoxEvent_ToString, (KnockoutBoxEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x00ACF090, KnockoutBoxEvent *, KnockoutBoxEvent_Create, (uint8_t targets, BoltConnection * connection, ReliabilityModes__Enum reliability, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC61B0, KnockoutBoxEvent_Create__MethodInfo); DO_APP_FUNC(0x00ACF2E0, KnockoutBoxEvent *, KnockoutBoxEvent_Create_1, (GlobalTargets__Enum targets, MethodInfo * method)); DO_APP_FUNC(0x00ACF2F0, KnockoutBoxEvent *, KnockoutBoxEvent_Create_2, (GlobalTargets__Enum targets, ReliabilityModes__Enum reliability, MethodInfo * method)); DO_APP_FUNC(0x00ACF300, KnockoutBoxEvent *, KnockoutBoxEvent_Create_3, (BoltConnection * connection, MethodInfo * method)); @@ -103379,6 +115566,7 @@ DO_APP_FUNC(0x00ACFDA0, void, KnockoutBoxEvent_Meta_Photon_Bolt_Internal_IEventF DO_APP_FUNC(0x00ACFEC0, void, HostStartedGameEvent__ctor, (HostStartedGameEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x00ACFF30, String *, HostStartedGameEvent_ToString, (HostStartedGameEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x00AD0040, HostStartedGameEvent *, HostStartedGameEvent_Create, (uint8_t targets, BoltConnection * connection, ReliabilityModes__Enum reliability, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC6160, HostStartedGameEvent_Create__MethodInfo); DO_APP_FUNC(0x00AD0290, HostStartedGameEvent *, HostStartedGameEvent_Create_1, (GlobalTargets__Enum targets, MethodInfo * method)); DO_APP_FUNC(0x00AD02A0, HostStartedGameEvent *, HostStartedGameEvent_Create_2, (GlobalTargets__Enum targets, ReliabilityModes__Enum reliability, MethodInfo * method)); DO_APP_FUNC(0x00AD02B0, HostStartedGameEvent *, HostStartedGameEvent_Create_3, (BoltConnection * connection, MethodInfo * method)); @@ -103405,6 +115593,7 @@ DO_APP_FUNC(0x00AD0890, void, HostStartedGameEvent_Meta_Photon_Bolt_Internal_IEv DO_APP_FUNC(0x00AD09B0, void, DissonanceToClient__ctor, (DissonanceToClient * __this, MethodInfo * method)); DO_APP_FUNC(0x00AD0A20, String *, DissonanceToClient_ToString, (DissonanceToClient * __this, MethodInfo * method)); DO_APP_FUNC(0x00AD0B30, DissonanceToClient *, DissonanceToClient_Create, (BoltEntity * entity, EntityTargets__Enum targets, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC6118, DissonanceToClient_Create__MethodInfo); DO_APP_FUNC(0x00AD0DA0, DissonanceToClient *, DissonanceToClient_Create_1, (BoltEntity * entity, MethodInfo * method)); DO_APP_FUNC(0x00AD0DB0, DissonanceToClient *, DissonanceToClient_Create_2, (uint8_t targets, BoltConnection * connection, ReliabilityModes__Enum reliability, MethodInfo * method)); DO_APP_FUNC(0x00AD0F50, DissonanceToClient *, DissonanceToClient_Create_3, (GlobalTargets__Enum targets, MethodInfo * method)); @@ -103435,6 +115624,7 @@ DO_APP_FUNC(0x00AD15B0, void, DissonanceToClient_Meta_Photon_Bolt_Internal_IEven DO_APP_FUNC(0x00AD16D0, void, DissonanceToServer__ctor, (DissonanceToServer * __this, MethodInfo * method)); DO_APP_FUNC(0x00AD1740, String *, DissonanceToServer_ToString, (DissonanceToServer * __this, MethodInfo * method)); DO_APP_FUNC(0x00AD1850, DissonanceToServer *, DissonanceToServer_Create, (BoltEntity * entity, EntityTargets__Enum targets, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC60B8, DissonanceToServer_Create__MethodInfo); DO_APP_FUNC(0x00AD1AC0, DissonanceToServer *, DissonanceToServer_Create_1, (BoltEntity * entity, MethodInfo * method)); DO_APP_FUNC(0x00AD1AD0, DissonanceToServer *, DissonanceToServer_Create_2, (uint8_t targets, BoltConnection * connection, ReliabilityModes__Enum reliability, MethodInfo * method)); DO_APP_FUNC(0x00AD1C70, DissonanceToServer *, DissonanceToServer_Create_3, (GlobalTargets__Enum targets, MethodInfo * method)); @@ -103471,6 +115661,7 @@ DO_APP_FUNC(0x00AB8000, bool, KnockoutEvent_get_UsingPoison, (KnockoutEvent * __ DO_APP_FUNC(0x00AC9380, void, KnockoutEvent_set_UsingPoison, (KnockoutEvent * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x00AD2460, String *, KnockoutEvent_ToString, (KnockoutEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x00AD25A0, KnockoutEvent *, KnockoutEvent_Create, (uint8_t targets, BoltConnection * connection, ReliabilityModes__Enum reliability, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC6070, KnockoutEvent_Create__MethodInfo); DO_APP_FUNC(0x00AD27F0, KnockoutEvent *, KnockoutEvent_Create_1, (GlobalTargets__Enum targets, MethodInfo * method)); DO_APP_FUNC(0x00AD2800, KnockoutEvent *, KnockoutEvent_Create_2, (GlobalTargets__Enum targets, ReliabilityModes__Enum reliability, MethodInfo * method)); DO_APP_FUNC(0x00AD2810, KnockoutEvent *, KnockoutEvent_Create_3, (BoltConnection * connection, MethodInfo * method)); @@ -103531,6 +115722,7 @@ DO_APP_FUNC(0x00AAA590, int32_t, SurvivalChangePlayerEvent_get_PlayerIndex, (Sur DO_APP_FUNC(0x00AD4470, void, SurvivalChangePlayerEvent_set_PlayerIndex, (SurvivalChangePlayerEvent * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x00AD4510, String *, SurvivalChangePlayerEvent_ToString, (SurvivalChangePlayerEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x00AD4680, SurvivalChangePlayerEvent *, SurvivalChangePlayerEvent_Create, (uint8_t targets, BoltConnection * connection, ReliabilityModes__Enum reliability, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5FD8, SurvivalChangePlayerEvent_Create__MethodInfo); DO_APP_FUNC(0x00AD48D0, SurvivalChangePlayerEvent *, SurvivalChangePlayerEvent_Create_1, (GlobalTargets__Enum targets, MethodInfo * method)); DO_APP_FUNC(0x00AD48E0, SurvivalChangePlayerEvent *, SurvivalChangePlayerEvent_Create_2, (GlobalTargets__Enum targets, ReliabilityModes__Enum reliability, MethodInfo * method)); DO_APP_FUNC(0x00AD48F0, SurvivalChangePlayerEvent *, SurvivalChangePlayerEvent_Create_3, (BoltConnection * connection, MethodInfo * method)); @@ -103563,6 +115755,7 @@ DO_APP_FUNC(0x00AB8000, bool, PlayerPickedUpEvent_get_InHidingSpot, (PlayerPicke DO_APP_FUNC(0x00AC9380, void, PlayerPickedUpEvent_set_InHidingSpot, (PlayerPickedUpEvent * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x00AD5530, String *, PlayerPickedUpEvent_ToString, (PlayerPickedUpEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x00AD5670, PlayerPickedUpEvent *, PlayerPickedUpEvent_Create, (uint8_t targets, BoltConnection * connection, ReliabilityModes__Enum reliability, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5F80, PlayerPickedUpEvent_Create__MethodInfo); DO_APP_FUNC(0x00AD58C0, PlayerPickedUpEvent *, PlayerPickedUpEvent_Create_1, (GlobalTargets__Enum targets, MethodInfo * method)); DO_APP_FUNC(0x00AD58D0, PlayerPickedUpEvent *, PlayerPickedUpEvent_Create_2, (GlobalTargets__Enum targets, ReliabilityModes__Enum reliability, MethodInfo * method)); DO_APP_FUNC(0x00AD58E0, PlayerPickedUpEvent *, PlayerPickedUpEvent_Create_3, (BoltConnection * connection, MethodInfo * method)); @@ -103591,6 +115784,7 @@ DO_APP_FUNC(0x00AAA3B0, BoltEntity *, KnockoutGrabRagdollEvent_get_Player, (Knoc DO_APP_FUNC(0x00ACAA00, void, KnockoutGrabRagdollEvent_set_Player, (KnockoutGrabRagdollEvent * __this, BoltEntity * value, MethodInfo * method)); DO_APP_FUNC(0x00AD66C0, String *, KnockoutGrabRagdollEvent_ToString, (KnockoutGrabRagdollEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x00AD6750, KnockoutGrabRagdollEvent *, KnockoutGrabRagdollEvent_Create, (uint8_t targets, BoltConnection * connection, ReliabilityModes__Enum reliability, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5F30, KnockoutGrabRagdollEvent_Create__MethodInfo); DO_APP_FUNC(0x00AD69A0, KnockoutGrabRagdollEvent *, KnockoutGrabRagdollEvent_Create_1, (GlobalTargets__Enum targets, MethodInfo * method)); DO_APP_FUNC(0x00AD69B0, KnockoutGrabRagdollEvent *, KnockoutGrabRagdollEvent_Create_2, (GlobalTargets__Enum targets, ReliabilityModes__Enum reliability, MethodInfo * method)); DO_APP_FUNC(0x00AD69C0, KnockoutGrabRagdollEvent *, KnockoutGrabRagdollEvent_Create_3, (BoltConnection * connection, MethodInfo * method)); @@ -103621,6 +115815,7 @@ DO_APP_FUNC(0x00AA8D40, String *, DropObjectEvent_get_CarryObjectName, (DropObje DO_APP_FUNC(0x00AD73C0, void, DropObjectEvent_set_CarryObjectName, (DropObjectEvent * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x00AD7510, String *, DropObjectEvent_ToString, (DropObjectEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x00AD75B0, DropObjectEvent *, DropObjectEvent_Create, (uint8_t targets, BoltConnection * connection, ReliabilityModes__Enum reliability, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5EE8, DropObjectEvent_Create__MethodInfo); DO_APP_FUNC(0x00AD7800, DropObjectEvent *, DropObjectEvent_Create_1, (GlobalTargets__Enum targets, MethodInfo * method)); DO_APP_FUNC(0x00AD7810, DropObjectEvent *, DropObjectEvent_Create_2, (GlobalTargets__Enum targets, ReliabilityModes__Enum reliability, MethodInfo * method)); DO_APP_FUNC(0x00AD7820, DropObjectEvent *, DropObjectEvent_Create_3, (BoltConnection * connection, MethodInfo * method)); @@ -103651,6 +115846,7 @@ DO_APP_FUNC(0x00AAA590, int32_t, LobbyReadyEvent_get_PlayerIndex, (LobbyReadyEve DO_APP_FUNC(0x00AD4470, void, LobbyReadyEvent_set_PlayerIndex, (LobbyReadyEvent * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x00AD8450, String *, LobbyReadyEvent_ToString, (LobbyReadyEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x00AD85C0, LobbyReadyEvent *, LobbyReadyEvent_Create, (uint8_t targets, BoltConnection * connection, ReliabilityModes__Enum reliability, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5EA0, LobbyReadyEvent_Create__MethodInfo); DO_APP_FUNC(0x00AD8810, LobbyReadyEvent *, LobbyReadyEvent_Create_1, (GlobalTargets__Enum targets, MethodInfo * method)); DO_APP_FUNC(0x00AD8820, LobbyReadyEvent *, LobbyReadyEvent_Create_2, (GlobalTargets__Enum targets, ReliabilityModes__Enum reliability, MethodInfo * method)); DO_APP_FUNC(0x00AD8830, LobbyReadyEvent *, LobbyReadyEvent_Create_3, (BoltConnection * connection, MethodInfo * method)); @@ -103679,6 +115875,7 @@ DO_APP_FUNC(0x00AA8470, int32_t, CreatePortalEvent_get_PortalId, (CreatePortalEv DO_APP_FUNC(0x00AC91D0, void, CreatePortalEvent_set_PortalId, (CreatePortalEvent * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x00AD9470, String *, CreatePortalEvent_ToString, (CreatePortalEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x00AD9560, CreatePortalEvent *, CreatePortalEvent_Create, (uint8_t targets, BoltConnection * connection, ReliabilityModes__Enum reliability, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5E50, CreatePortalEvent_Create__MethodInfo); DO_APP_FUNC(0x00AD97B0, CreatePortalEvent *, CreatePortalEvent_Create_1, (GlobalTargets__Enum targets, MethodInfo * method)); DO_APP_FUNC(0x00AD97C0, CreatePortalEvent *, CreatePortalEvent_Create_2, (GlobalTargets__Enum targets, ReliabilityModes__Enum reliability, MethodInfo * method)); DO_APP_FUNC(0x00AD97D0, CreatePortalEvent *, CreatePortalEvent_Create_3, (BoltConnection * connection, MethodInfo * method)); @@ -103707,6 +115904,7 @@ DO_APP_FUNC(0x00AA8470, int32_t, EndingEvent_get_Ending, (EndingEvent * __this, DO_APP_FUNC(0x00AC91D0, void, EndingEvent_set_Ending, (EndingEvent * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x00ADA1E0, String *, EndingEvent_ToString, (EndingEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x00ADA2D0, EndingEvent *, EndingEvent_Create, (uint8_t targets, BoltConnection * connection, ReliabilityModes__Enum reliability, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5E00, EndingEvent_Create__MethodInfo); DO_APP_FUNC(0x00ADA520, EndingEvent *, EndingEvent_Create_1, (GlobalTargets__Enum targets, MethodInfo * method)); DO_APP_FUNC(0x00ADA530, EndingEvent *, EndingEvent_Create_2, (GlobalTargets__Enum targets, ReliabilityModes__Enum reliability, MethodInfo * method)); DO_APP_FUNC(0x00ADA540, EndingEvent *, EndingEvent_Create_3, (BoltConnection * connection, MethodInfo * method)); @@ -103855,6 +116053,7 @@ DO_APP_FUNC(0x00AA90C0, bool, RangedAttackEvent_get_Hit, (RangedAttackEvent * __ DO_APP_FUNC(0x00ADE4D0, void, RangedAttackEvent_set_Hit, (RangedAttackEvent * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x00ADE570, String *, RangedAttackEvent_ToString, (RangedAttackEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x00ADE840, RangedAttackEvent *, RangedAttackEvent_Create, (uint8_t targets, BoltConnection * connection, ReliabilityModes__Enum reliability, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC6B30, RangedAttackEvent_Create__MethodInfo); DO_APP_FUNC(0x00ADEA90, RangedAttackEvent *, RangedAttackEvent_Create_1, (GlobalTargets__Enum targets, MethodInfo * method)); DO_APP_FUNC(0x00ADEAA0, RangedAttackEvent *, RangedAttackEvent_Create_2, (GlobalTargets__Enum targets, ReliabilityModes__Enum reliability, MethodInfo * method)); DO_APP_FUNC(0x00ADEAB0, RangedAttackEvent *, RangedAttackEvent_Create_3, (BoltConnection * connection, MethodInfo * method)); @@ -103881,6 +116080,7 @@ DO_APP_FUNC(0x00ADF8B0, void, RangedAttackEvent_Meta_Photon_Bolt_Internal_IEvent DO_APP_FUNC(0x00ADF9D0, void, VoteCompletedEvent__ctor, (VoteCompletedEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x00ADFA40, String *, VoteCompletedEvent_ToString, (VoteCompletedEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x00ADFB50, VoteCompletedEvent *, VoteCompletedEvent_Create, (uint8_t targets, BoltConnection * connection, ReliabilityModes__Enum reliability, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC6AD8, VoteCompletedEvent_Create__MethodInfo); DO_APP_FUNC(0x00ADFDA0, VoteCompletedEvent *, VoteCompletedEvent_Create_1, (GlobalTargets__Enum targets, MethodInfo * method)); DO_APP_FUNC(0x00ADFDB0, VoteCompletedEvent *, VoteCompletedEvent_Create_2, (GlobalTargets__Enum targets, ReliabilityModes__Enum reliability, MethodInfo * method)); DO_APP_FUNC(0x00ADFDC0, VoteCompletedEvent *, VoteCompletedEvent_Create_3, (BoltConnection * connection, MethodInfo * method)); @@ -103915,6 +116115,7 @@ DO_APP_FUNC(0x00AE0650, Quaternion, PlaceObjectEvent_get_Rotation, (PlaceObjectE DO_APP_FUNC(0x00AE06C0, void, PlaceObjectEvent_set_Rotation, (PlaceObjectEvent * __this, Quaternion value, MethodInfo * method)); DO_APP_FUNC(0x00AE0760, String *, PlaceObjectEvent_ToString, (PlaceObjectEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x00AE0A20, PlaceObjectEvent *, PlaceObjectEvent_Create, (uint8_t targets, BoltConnection * connection, ReliabilityModes__Enum reliability, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC6A90, PlaceObjectEvent_Create__MethodInfo); DO_APP_FUNC(0x00AE0C70, PlaceObjectEvent *, PlaceObjectEvent_Create_1, (GlobalTargets__Enum targets, MethodInfo * method)); DO_APP_FUNC(0x00AE0C80, PlaceObjectEvent *, PlaceObjectEvent_Create_2, (GlobalTargets__Enum targets, ReliabilityModes__Enum reliability, MethodInfo * method)); DO_APP_FUNC(0x00AE0C90, PlaceObjectEvent *, PlaceObjectEvent_Create_3, (BoltConnection * connection, MethodInfo * method)); @@ -104125,11 +116326,17 @@ DO_APP_FUNC(0x02C7EEC0, void, OpenXRAnalytics_SendPlayerAnalytics, (OpenXRAnalyt DO_APP_FUNC(0x02C7F0D0, void, OpenXRAnalytics_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, OpenXRAnalytics_c__ctor, (OpenXRAnalytics_c * __this, MethodInfo * method)); DO_APP_FUNC(0x02C7F180, String *, OpenXRAnalytics_c__CreateInitializeEvent_b__8_0, (OpenXRAnalytics_c * __this, String * ext, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0EA0, OpenXRAnalytics_c__CreateInitializeEvent_b__8_0__MethodInfo); DO_APP_FUNC(0x02C7F240, String *, OpenXRAnalytics_c__CreateInitializeEvent_b__8_1, (OpenXRAnalytics_c * __this, String * ext, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0EA8, OpenXRAnalytics_c__CreateInitializeEvent_b__8_1__MethodInfo); DO_APP_FUNC(0x02C7F300, bool, OpenXRAnalytics_c__CreateInitializeEvent_b__8_2, (OpenXRAnalytics_c * __this, OpenXRFeature * f, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0EB0, OpenXRAnalytics_c__CreateInitializeEvent_b__8_2__MethodInfo); DO_APP_FUNC(0x02C7F400, String *, OpenXRAnalytics_c__CreateInitializeEvent_b__8_3, (OpenXRAnalytics_c * __this, OpenXRFeature * f, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0EB8, OpenXRAnalytics_c__CreateInitializeEvent_b__8_3__MethodInfo); DO_APP_FUNC(0x02C7F480, bool, OpenXRAnalytics_c__CreateInitializeEvent_b__8_4, (OpenXRAnalytics_c * __this, OpenXRFeature * f, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0E48, OpenXRAnalytics_c__CreateInitializeEvent_b__8_4__MethodInfo); DO_APP_FUNC(0x02C7F580, String *, OpenXRAnalytics_c__CreateInitializeEvent_b__8_5, (OpenXRAnalytics_c * __this, OpenXRFeature * f, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0E58, OpenXRAnalytics_c__CreateInitializeEvent_b__8_5__MethodInfo); DO_APP_FUNC(0x02C7F600, void, DiagnosticReport_StartReport, (MethodInfo * method)); DO_APP_FUNC(0x02C7F670, uint64_t, DiagnosticReport_GetSection, (String * sectionName, MethodInfo * method)); DO_APP_FUNC(0x02C7F710, void, DiagnosticReport_AddSectionEntry, (uint64_t sectionHandle, String * sectionEntry, String * sectionBody, MethodInfo * method)); @@ -104156,6 +116363,7 @@ DO_APP_FUNC(0x02C80270, bool, OpenXRLoaderBase_Initialize, (OpenXRLoaderBase * _ DO_APP_FUNC(0x02C80550, bool, OpenXRLoaderBase_InitializeInternal, (OpenXRLoaderBase * __this, MethodInfo * method)); DO_APP_FUNC(0x02C81110, bool, OpenXRLoaderBase_CreateSubsystems, (OpenXRLoaderBase * __this, MethodInfo * method)); DO_APP_FUNC(0x02C812A0, void, OpenXRLoaderBase_ProcessOpenXRMessageLoop, (OpenXRLoaderBase * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0C40, OpenXRLoaderBase_ProcessOpenXRMessageLoop__MethodInfo); DO_APP_FUNC(0x02C813D0, bool, OpenXRLoaderBase_Start, (OpenXRLoaderBase * __this, MethodInfo * method)); DO_APP_FUNC(0x02C81490, bool, OpenXRLoaderBase_StartInternal, (OpenXRLoaderBase * __this, MethodInfo * method)); DO_APP_FUNC(0x02C81730, bool, OpenXRLoaderBase_Stop, (OpenXRLoaderBase * __this, MethodInfo * method)); @@ -104167,6 +116375,7 @@ DO_APP_FUNC(0x02C823F0, bool, OpenXRLoaderBase_LoadOpenXRSymbols, (OpenXRLoaderB DO_APP_FUNC(0x02C82550, void, OpenXRLoaderBase_RequestOpenXRFeatures, (OpenXRLoaderBase * __this, MethodInfo * method)); DO_APP_FUNC(0x02C83030, void, OpenXRLoaderBase_DebugLogEnabledSpecExtensions, (MethodInfo * method)); DO_APP_FUNC(0x02C832C0, void, OpenXRLoaderBase_ReceiveNativeEvent, (OpenXRFeature_NativeEvent__Enum e, uint64_t payload, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0BB0, OpenXRLoaderBase_ReceiveNativeEvent__MethodInfo); DO_APP_FUNC(0x02C83780, void, OpenXRLoaderBase_RegisterOpenXRCallbacks, (MethodInfo * method)); DO_APP_FUNC(0x02C83980, bool, OpenXRLoaderBase_Internal_LoadOpenXRLibrary, (Byte__Array * loaderPath, MethodInfo * method)); DO_APP_FUNC(0x02C83A10, void, OpenXRLoaderBase_Internal_UnloadOpenXRLibrary, (MethodInfo * method)); @@ -104190,8 +116399,11 @@ DO_APP_FUNC(0x003BA270, void, OpenXRLoaderBase_ReceiveNativeEventDelegate_EndInv DO_APP_FUNC(0x02C84C70, void, OpenXRLoaderBase_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, OpenXRLoaderBase_c__ctor, (OpenXRLoaderBase_c * __this, MethodInfo * method)); DO_APP_FUNC(0x02C84D20, bool, OpenXRLoaderBase_c__InitializeInternal_b__31_0, (OpenXRLoaderBase_c * __this, OpenXRFeature * f, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0C48, OpenXRLoaderBase_c__InitializeInternal_b__31_0__MethodInfo); DO_APP_FUNC(0x0042DCC0, int32_t, OpenXRLoaderBase_c__InitializeInternal_b__31_1, (OpenXRLoaderBase_c * __this, OpenXRFeature * f, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0C58, OpenXRLoaderBase_c__InitializeInternal_b__31_1__MethodInfo); DO_APP_FUNC(0x01F6FCE0, String *, OpenXRLoaderBase_c__InitializeInternal_b__31_2, (OpenXRLoaderBase_c * __this, OpenXRFeature * f, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0C60, OpenXRLoaderBase_c__InitializeInternal_b__31_2__MethodInfo); DO_APP_FUNC(0x02C84E20, void, OpenXRLoaderNoPreInit__ctor, (OpenXRLoaderNoPreInit * __this, MethodInfo * method)); DO_APP_FUNC(0x02C84E70, void, OpenXRRestarter__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02C84F20, void, OpenXRRestarter_ResetCallbacks, (OpenXRRestarter * __this, MethodInfo * method)); @@ -104219,6 +116431,7 @@ DO_APP_FUNC(0x02C866F0, bool, OpenXRRestarter_PauseAndShutdownAndRestartCoroutin DO_APP_FUNC(0x02C86A50, void, OpenXRRestarter_PauseAndShutdownAndRestartCoroutine_d_34___m__Finally1, (OpenXRRestarter_PauseAndShutdownAndRestartCoroutine_d_34 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, OpenXRRestarter_PauseAndShutdownAndRestartCoroutine_d_34_System_Collections_Generic_IEnumerator_System_Object__get_Current, (OpenXRRestarter_PauseAndShutdownAndRestartCoroutine_d_34 * __this, MethodInfo * method)); DO_APP_FUNC(0x02C86A90, void, OpenXRRestarter_PauseAndShutdownAndRestartCoroutine_d_34_System_Collections_IEnumerator_Reset, (OpenXRRestarter_PauseAndShutdownAndRestartCoroutine_d_34 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0948, OpenXRRestarter_PauseAndShutdownAndRestartCoroutine_d_34_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, OpenXRRestarter_PauseAndShutdownAndRestartCoroutine_d_34_System_Collections_IEnumerator_get_Current, (OpenXRRestarter_PauseAndShutdownAndRestartCoroutine_d_34 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, OpenXRRestarter_PauseAndRetryInitializationCoroutine_d_35__ctor, (OpenXRRestarter_PauseAndRetryInitializationCoroutine_d_35 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x02C86630, void, OpenXRRestarter_PauseAndRetryInitializationCoroutine_d_35_System_IDisposable_Dispose, (OpenXRRestarter_PauseAndRetryInitializationCoroutine_d_35 * __this, MethodInfo * method)); @@ -104226,6 +116439,7 @@ DO_APP_FUNC(0x02C86AE0, bool, OpenXRRestarter_PauseAndRetryInitializationCorouti DO_APP_FUNC(0x02C86A50, void, OpenXRRestarter_PauseAndRetryInitializationCoroutine_d_35___m__Finally1, (OpenXRRestarter_PauseAndRetryInitializationCoroutine_d_35 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, OpenXRRestarter_PauseAndRetryInitializationCoroutine_d_35_System_Collections_Generic_IEnumerator_System_Object__get_Current, (OpenXRRestarter_PauseAndRetryInitializationCoroutine_d_35 * __this, MethodInfo * method)); DO_APP_FUNC(0x02C86F10, void, OpenXRRestarter_PauseAndRetryInitializationCoroutine_d_35_System_Collections_IEnumerator_Reset, (OpenXRRestarter_PauseAndRetryInitializationCoroutine_d_35 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0958, OpenXRRestarter_PauseAndRetryInitializationCoroutine_d_35_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, OpenXRRestarter_PauseAndRetryInitializationCoroutine_d_35_System_Collections_IEnumerator_get_Current, (OpenXRRestarter_PauseAndRetryInitializationCoroutine_d_35 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, OpenXRRestarter_RestartCoroutine_d_36__ctor, (OpenXRRestarter_RestartCoroutine_d_36 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x02C86F60, void, OpenXRRestarter_RestartCoroutine_d_36_System_IDisposable_Dispose, (OpenXRRestarter_RestartCoroutine_d_36 * __this, MethodInfo * method)); @@ -104233,6 +116447,7 @@ DO_APP_FUNC(0x02C86FB0, bool, OpenXRRestarter_RestartCoroutine_d_36_MoveNext, (O DO_APP_FUNC(0x02C875B0, void, OpenXRRestarter_RestartCoroutine_d_36___m__Finally1, (OpenXRRestarter_RestartCoroutine_d_36 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, OpenXRRestarter_RestartCoroutine_d_36_System_Collections_Generic_IEnumerator_System_Object__get_Current, (OpenXRRestarter_RestartCoroutine_d_36 * __this, MethodInfo * method)); DO_APP_FUNC(0x02C87640, void, OpenXRRestarter_RestartCoroutine_d_36_System_Collections_IEnumerator_Reset, (OpenXRRestarter_RestartCoroutine_d_36 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0868, OpenXRRestarter_RestartCoroutine_d_36_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, OpenXRRestarter_RestartCoroutine_d_36_System_Collections_IEnumerator_get_Current, (OpenXRRestarter_RestartCoroutine_d_36 * __this, MethodInfo * method)); DO_APP_FUNC(0x02C87690, String *, OpenXRRuntime_get_name, (MethodInfo * method)); DO_APP_FUNC(0x02C877A0, String *, OpenXRRuntime_get_version, (MethodInfo * method)); @@ -104251,32 +116466,32 @@ DO_APP_FUNC(0x02C888D0, void, OpenXRRuntime_set_retryInitializationOnFormFactorE DO_APP_FUNC(0x02C88950, bool, OpenXRRuntime_InvokeEvent, (Func_1_Boolean_ * func, MethodInfo * method)); DO_APP_FUNC(0x02C88AB0, bool, OpenXRRuntime_ShouldQuit, (MethodInfo * method)); DO_APP_FUNC(0x02C88B00, bool, OpenXRRuntime_ShouldRestart, (MethodInfo * method)); -DO_APP_FUNC(0x02C88B50, bool, OpenXRRuntime_Internal_GetRuntimeName, (void * runtimeNamePtr, MethodInfo * method)); -DO_APP_FUNC(0x02C88BD0, bool, OpenXRRuntime_Internal_GetRuntimeVersion, (uint16_t major, uint16_t minor, uint32_t patch, MethodInfo * method)); -DO_APP_FUNC(0x02C88C70, bool, OpenXRRuntime_Internal_GetAPIVersion, (uint16_t major, uint16_t minor, uint32_t patch, MethodInfo * method)); -DO_APP_FUNC(0x02C88D10, bool, OpenXRRuntime_Internal_GetPluginVersion, (void * pluginVersionPtr, MethodInfo * method)); +DO_APP_FUNC(0x02C88B50, bool, OpenXRRuntime_Internal_GetRuntimeName, (void * * runtimeNamePtr, MethodInfo * method)); +DO_APP_FUNC(0x02C88BD0, bool, OpenXRRuntime_Internal_GetRuntimeVersion, (uint16_t * major, uint16_t * minor, uint32_t * patch, MethodInfo * method)); +DO_APP_FUNC(0x02C88C70, bool, OpenXRRuntime_Internal_GetAPIVersion, (uint16_t * major, uint16_t * minor, uint32_t * patch, MethodInfo * method)); +DO_APP_FUNC(0x02C88D10, bool, OpenXRRuntime_Internal_GetPluginVersion, (void * * pluginVersionPtr, MethodInfo * method)); DO_APP_FUNC(0x02C87C50, bool, OpenXRRuntime_Internal_IsExtensionEnabled, (String * extensionName, MethodInfo * method)); DO_APP_FUNC(0x02C87D00, uint32_t, OpenXRRuntime_Internal_GetExtensionVersion, (String * extensionName, MethodInfo * method)); DO_APP_FUNC(0x02C88D90, uint32_t, OpenXRRuntime_Internal_GetEnabledExtensionCount, (MethodInfo * method)); -DO_APP_FUNC(0x02C88E00, bool, OpenXRRuntime_Internal_GetEnabledExtensionNamePtr, (uint32_t index, void * outName, MethodInfo * method)); +DO_APP_FUNC(0x02C88E00, bool, OpenXRRuntime_Internal_GetEnabledExtensionNamePtr, (uint32_t index, void * * outName, MethodInfo * method)); DO_APP_FUNC(0x02C888D0, void, OpenXRRuntime_Internal_SetSoftRestartLoopAtInitialization, (bool value, MethodInfo * method)); DO_APP_FUNC(0x02C88860, bool, OpenXRRuntime_Internal_GetSoftRestartLoopAtInitialization, (MethodInfo * method)); -DO_APP_FUNC(0x02C88E80, bool, OpenXRRuntime_Internal_GetEnabledExtensionName, (uint32_t index, String * extensionName, MethodInfo * method)); +DO_APP_FUNC(0x02C88E80, bool, OpenXRRuntime_Internal_GetEnabledExtensionName, (uint32_t index, String * * extensionName, MethodInfo * method)); DO_APP_FUNC(0x02C89040, uint32_t, OpenXRRuntime_Internal_GetAvailableExtensionCount, (MethodInfo * method)); -DO_APP_FUNC(0x02C890B0, bool, OpenXRRuntime_Internal_GetAvailableExtensionNamePtr, (uint32_t index, void * extensionName, MethodInfo * method)); -DO_APP_FUNC(0x02C89130, bool, OpenXRRuntime_Internal_GetAvailableExtensionName, (uint32_t index, String * extensionName, MethodInfo * method)); -DO_APP_FUNC(0x02C892F0, bool, OpenXRRuntime_Internal_GetLastError, (void * error, MethodInfo * method)); -DO_APP_FUNC(0x02C89370, bool, OpenXRRuntime_GetLastError, (String * error, MethodInfo * method)); +DO_APP_FUNC(0x02C890B0, bool, OpenXRRuntime_Internal_GetAvailableExtensionNamePtr, (uint32_t index, void * * extensionName, MethodInfo * method)); +DO_APP_FUNC(0x02C89130, bool, OpenXRRuntime_Internal_GetAvailableExtensionName, (uint32_t index, String * * extensionName, MethodInfo * method)); +DO_APP_FUNC(0x02C892F0, bool, OpenXRRuntime_Internal_GetLastError, (void * * error, MethodInfo * method)); +DO_APP_FUNC(0x02C89370, bool, OpenXRRuntime_GetLastError, (String * * error, MethodInfo * method)); DO_APP_FUNC(0x02C89530, void, OpenXRRuntime_LogLastError, (MethodInfo * method)); DO_APP_FUNC(0x02C89730, void, WaitForRestartFinish__ctor, (WaitForRestartFinish * __this, float timeout, MethodInfo * method)); DO_APP_FUNC(0x02C897A0, bool, WaitForRestartFinish_get_keepWaiting, (WaitForRestartFinish * __this, MethodInfo * method)); -DO_APP_FUNC(0x003CAF50, void, XrVector2f__ctor, (XrVector2f__Boxed * __this, float x, float y, MethodInfo * method)); -DO_APP_FUNC(0x02C89890, void, XrVector2f__ctor_1, (XrVector2f__Boxed * __this, Vector2 value, MethodInfo * method)); -DO_APP_FUNC(0x02C898B0, void, XrVector3f__ctor, (XrVector3f__Boxed * __this, float x, float y, float z, MethodInfo * method)); -DO_APP_FUNC(0x02C898D0, void, XrVector3f__ctor_1, (XrVector3f__Boxed * __this, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x02C898F0, void, XrQuaternionf__ctor, (XrQuaternionf__Boxed * __this, float x, float y, float z, float w, MethodInfo * method)); -DO_APP_FUNC(0x02C89920, void, XrQuaternionf__ctor_1, (XrQuaternionf__Boxed * __this, Quaternion quaternion, MethodInfo * method)); -DO_APP_FUNC(0x02C89950, void, XrPosef__ctor, (XrPosef__Boxed * __this, Vector3 vec3, Quaternion quaternion, MethodInfo * method)); +DO_APP_FUNC(0x003CAF50, void, XrVector2f__ctor, (XrVector2f * __this, float x, float y, MethodInfo * method)); +DO_APP_FUNC(0x02C89890, void, XrVector2f__ctor_1, (XrVector2f * __this, Vector2 value, MethodInfo * method)); +DO_APP_FUNC(0x02C898B0, void, XrVector3f__ctor, (XrVector3f * __this, float x, float y, float z, MethodInfo * method)); +DO_APP_FUNC(0x02C898D0, void, XrVector3f__ctor_1, (XrVector3f * __this, Vector3 value, MethodInfo * method)); +DO_APP_FUNC(0x02C898F0, void, XrQuaternionf__ctor, (XrQuaternionf * __this, float x, float y, float z, float w, MethodInfo * method)); +DO_APP_FUNC(0x02C89920, void, XrQuaternionf__ctor_1, (XrQuaternionf * __this, Quaternion quaternion, MethodInfo * method)); +DO_APP_FUNC(0x02C89950, void, XrPosef__ctor, (XrPosef * __this, Vector3 vec3, Quaternion quaternion, MethodInfo * method)); DO_APP_FUNC(0x02C899C0, void, HapticControl__ctor, (HapticControl * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, Haptic, HapticControl_ReadUnprocessedValueFromState, (HapticControl * __this, Void * statePtr, MethodInfo * method)); DO_APP_FUNC(0x02C89A70, void, OpenXRDevice_FinishSetup, (OpenXRDevice * __this, MethodInfo * method)); @@ -104300,7 +116515,7 @@ DO_APP_FUNC(0x02C8CA20, void, OpenXRInput_SendHapticImpulse_2, (InputAction_1 * DO_APP_FUNC(0x02C8CAB0, void, OpenXRInput_SendHapticImpulse_3, (InputAction_1 * action, float amplitude, float frequency, float duration, InputDevice * inputDevice, MethodInfo * method)); DO_APP_FUNC(0x02C8CC30, void, OpenXRInput_StopHaptics, (InputActionReference * actionRef, InputDevice * inputDevice, MethodInfo * method)); DO_APP_FUNC(0x02C8CE50, void, OpenXRInput_StopHaptics_1, (InputAction_1 * inputAction, InputDevice * inputDevice, MethodInfo * method)); -DO_APP_FUNC(0x02C8CF50, bool, OpenXRInput_TryGetInputSourceName, (InputAction_1 * inputAction, int32_t index, String * name, OpenXRInput_InputSourceNameFlags__Enum flags, InputDevice * inputDevice, MethodInfo * method)); +DO_APP_FUNC(0x02C8CF50, bool, OpenXRInput_TryGetInputSourceName, (InputAction_1 * inputAction, int32_t index, String * * name, OpenXRInput_InputSourceNameFlags__Enum flags, InputDevice * inputDevice, MethodInfo * method)); DO_APP_FUNC(0x02C8D080, bool, OpenXRInput_GetActionIsActive, (InputAction_1 * inputAction, MethodInfo * method)); DO_APP_FUNC(0x02C8D3C0, bool, OpenXRInput_TrySetControllerLateLatchAction, (InputAction_1 * inputAction, MethodInfo * method)); DO_APP_FUNC(0x02C8D720, uint64_t, OpenXRInput_GetActionHandle, (InputAction_1 * inputAction, InputDevice * inputDevice, MethodInfo * method)); @@ -104310,8 +116525,8 @@ DO_APP_FUNC(0x02C8DD00, void, OpenXRInput_Internal_SetDpadBindingCustomValues, ( DO_APP_FUNC(0x02C8DDC0, void, OpenXRInput_Internal_SendHapticImpulse, (uint32_t deviceId, uint64_t actionId, float amplitude, float frequency, float duration, MethodInfo * method)); DO_APP_FUNC(0x02C8DE70, void, OpenXRInput_Internal_StopHaptics, (uint32_t deviceId, uint64_t actionId, MethodInfo * method)); DO_APP_FUNC(0x02C8DF00, uint64_t, OpenXRInput_Internal_GetActionId, (uint32_t deviceId, String * name, MethodInfo * method)); -DO_APP_FUNC(0x02C8DFB0, bool, OpenXRInput_Internal_TryGetInputSourceNamePtr, (uint32_t deviceId, uint64_t actionId, uint32_t index, uint32_t flags, void * outName, MethodInfo * method)); -DO_APP_FUNC(0x02C8E060, bool, OpenXRInput_Internal_TryGetInputSourceName, (uint32_t deviceId, uint64_t actionId, uint32_t index, uint32_t flags, String * outName, MethodInfo * method)); +DO_APP_FUNC(0x02C8DFB0, bool, OpenXRInput_Internal_TryGetInputSourceNamePtr, (uint32_t deviceId, uint64_t actionId, uint32_t index, uint32_t flags, void * * outName, MethodInfo * method)); +DO_APP_FUNC(0x02C8E060, bool, OpenXRInput_Internal_TryGetInputSourceName, (uint32_t deviceId, uint64_t actionId, uint32_t index, uint32_t flags, String * * outName, MethodInfo * method)); DO_APP_FUNC(0x02C8E270, bool, OpenXRInput_Internal_TrySetControllerLateLatchAction, (uint32_t deviceId, uint64_t actionId, MethodInfo * method)); DO_APP_FUNC(0x02C8E300, bool, OpenXRInput_Internal_GetActionIsActive, (uint32_t deviceId, String * name, MethodInfo * method)); DO_APP_FUNC(0x02C8E3B0, uint64_t, OpenXRInput_Internal_RegisterDeviceDefinition, (String * userPath, String * interactionProfile, bool isAdditive, uint32_t characteristics, String * name, String * manufacturer, String * serialNumber, MethodInfo * method)); @@ -104321,27 +116536,32 @@ DO_APP_FUNC(0x02C8E840, bool, OpenXRInput_Internal_SuggestBindings, (String * in DO_APP_FUNC(0x02C8E9B0, bool, OpenXRInput_Internal_AttachActionSets, (MethodInfo * method)); DO_APP_FUNC(0x02C8EA20, void, OpenXRInput__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02C8F130, FourCC, OpenXRInput_GetInternalDeviceIdCommand_get_Type, (MethodInfo * method)); -DO_APP_FUNC(0x02C8F130, FourCC, OpenXRInput_GetInternalDeviceIdCommand_get_typeStatic, (OpenXRInput_GetInternalDeviceIdCommand__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02C8F130, FourCC, OpenXRInput_GetInternalDeviceIdCommand_get_typeStatic, (OpenXRInput_GetInternalDeviceIdCommand * __this, MethodInfo * method)); DO_APP_FUNC(0x02C8F140, OpenXRInput_GetInternalDeviceIdCommand, OpenXRInput_GetInternalDeviceIdCommand_Create, (MethodInfo * method)); DO_APP_FUNC(0x02C8F170, void, OpenXRInput_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, OpenXRInput_c__ctor, (OpenXRInput_c * __this, MethodInfo * method)); DO_APP_FUNC(0x02C8F220, bool, OpenXRInput_c__AttachActionSets_b__9_0, (OpenXRInput_c * __this, OpenXRInteractionFeature * f, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0798, OpenXRInput_c__AttachActionSets_b__9_0__MethodInfo); DO_APP_FUNC(0x02C8F270, bool, OpenXRInput_c__AttachActionSets_b__9_1, (OpenXRInput_c * __this, OpenXRInteractionFeature * f, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB07A0, OpenXRInput_c__AttachActionSets_b__9_1__MethodInfo); DO_APP_FUNC(0x0042DCE0, String *, OpenXRInput_c__CreateActions_b__11_0, (OpenXRInput_c * __this, OpenXRInteractionFeature_DeviceConfig * d, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB06C8, OpenXRInput_c__CreateActions_b__11_0__MethodInfo); DO_APP_FUNC(0x028B3140, bool, OpenXRInput_c__CreateActions_b__11_1, (OpenXRInput_c * __this, OpenXRInteractionFeature_ActionBinding * b, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB06D0, OpenXRInput_c__CreateActions_b__11_1__MethodInfo); DO_APP_FUNC(0x01F6FCE0, IEnumerable_1_System_String_ *, OpenXRInput_c__CreateActions_b__11_2, (OpenXRInput_c * __this, OpenXRInteractionFeature_ActionBinding * b, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, Pose_1_get_isTracked, (Pose_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C3C200, void, Pose_1_set_isTracked, (Pose_1__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x00C173E0, InputTrackingState__Enum, Pose_1_get_trackingState, (Pose_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018C6CA0, void, Pose_1_set_trackingState, (Pose_1__Boxed * __this, InputTrackingState__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x00958320, Vector3, Pose_1_get_position, (Pose_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02C8F2C0, void, Pose_1_set_position, (Pose_1__Boxed * __this, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x00F963E0, Quaternion, Pose_1_get_rotation, (Pose_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0288D2E0, void, Pose_1_set_rotation, (Pose_1__Boxed * __this, Quaternion value, MethodInfo * method)); -DO_APP_FUNC(0x0127BA40, Vector3, Pose_1_get_velocity, (Pose_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C5CA60, void, Pose_1_set_velocity, (Pose_1__Boxed * __this, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x0094F9F0, Vector3, Pose_1_get_angularVelocity, (Pose_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0094FA10, void, Pose_1_set_angularVelocity, (Pose_1__Boxed * __this, Vector3 value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB06D8, OpenXRInput_c__CreateActions_b__11_2__MethodInfo); +DO_APP_FUNC(0x00C173D0, bool, Pose_1_get_isTracked, (Pose_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C3C200, void, Pose_1_set_isTracked, (Pose_1 * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x00C173E0, InputTrackingState__Enum, Pose_1_get_trackingState, (Pose_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x018C6CA0, void, Pose_1_set_trackingState, (Pose_1 * __this, InputTrackingState__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x00958320, Vector3, Pose_1_get_position, (Pose_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02C8F2C0, void, Pose_1_set_position, (Pose_1 * __this, Vector3 value, MethodInfo * method)); +DO_APP_FUNC(0x00F963E0, Quaternion, Pose_1_get_rotation, (Pose_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0288D2E0, void, Pose_1_set_rotation, (Pose_1 * __this, Quaternion value, MethodInfo * method)); +DO_APP_FUNC(0x0127BA40, Vector3, Pose_1_get_velocity, (Pose_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C5CA60, void, Pose_1_set_velocity, (Pose_1 * __this, Vector3 value, MethodInfo * method)); +DO_APP_FUNC(0x0094F9F0, Vector3, Pose_1_get_angularVelocity, (Pose_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0094FA10, void, Pose_1_set_angularVelocity, (Pose_1 * __this, Vector3 value, MethodInfo * method)); DO_APP_FUNC(0x006BEA60, ButtonControl *, PoseControl_1_get_isTracked, (PoseControl_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x006BEA70, void, PoseControl_1_set_isTracked, (PoseControl_1 * __this, ButtonControl * value, MethodInfo * method)); DO_APP_FUNC(0x006BEAD0, IntegerControl *, PoseControl_1_get_trackingState, (PoseControl_1 * __this, MethodInfo * method)); @@ -104398,20 +116618,21 @@ DO_APP_FUNC(0x003AE050, void, OpenXRFeature_OnEnable, (OpenXRFeature * __this, M DO_APP_FUNC(0x003AE050, void, OpenXRFeature_OnDisable, (OpenXRFeature * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, OpenXRFeature_Awake, (OpenXRFeature * __this, MethodInfo * method)); DO_APP_FUNC(0x02C90200, bool, OpenXRFeature_ReceiveLoaderEvent, (OpenXRLoaderBase * loader, OpenXRFeature_LoaderEvent__Enum e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB05B0, OpenXRFeature_ReceiveLoaderEvent__MethodInfo); DO_APP_FUNC(0x02C90540, void, OpenXRFeature_ReceiveNativeEvent, (OpenXRFeature_NativeEvent__Enum e, uint64_t payload, MethodInfo * method)); DO_APP_FUNC(0x02C90AB0, void, OpenXRFeature_Initialize, (MethodInfo * method)); DO_APP_FUNC(0x02C90D00, void, OpenXRFeature_HookGetInstanceProcAddr_1, (MethodInfo * method)); DO_APP_FUNC(0x02C90FD0, uint64_t, OpenXRFeature_GetAction, (OpenXRFeature * __this, InputAction_1 * inputAction, MethodInfo * method)); -DO_APP_FUNC(0x02C91030, bool, OpenXRFeature_Internal_PathToStringPtr, (uint64_t pathId, void * path, MethodInfo * method)); -DO_APP_FUNC(0x02C910C0, bool, OpenXRFeature_Internal_StringToPath, (String * str, uint64_t pathId, MethodInfo * method)); -DO_APP_FUNC(0x02C91170, bool, OpenXRFeature_Internal_GetCurrentInteractionProfile, (uint64_t pathId, uint64_t interactionProfile, MethodInfo * method)); +DO_APP_FUNC(0x02C91030, bool, OpenXRFeature_Internal_PathToStringPtr, (uint64_t pathId, void * * path, MethodInfo * method)); +DO_APP_FUNC(0x02C910C0, bool, OpenXRFeature_Internal_StringToPath, (String * str, uint64_t * pathId, MethodInfo * method)); +DO_APP_FUNC(0x02C91170, bool, OpenXRFeature_Internal_GetCurrentInteractionProfile, (uint64_t pathId, uint64_t * interactionProfile, MethodInfo * method)); DO_APP_FUNC(0x02C91200, int32_t, OpenXRFeature_Internal_GetFormFactor, (MethodInfo * method)); DO_APP_FUNC(0x02C91270, int32_t, OpenXRFeature_Internal_GetViewConfigurationType, (MethodInfo * method)); DO_APP_FUNC(0x02C900F0, int32_t, OpenXRFeature_Internal_GetViewTypeFromRenderIndex, (int32_t renderPassIndex, MethodInfo * method)); -DO_APP_FUNC(0x02C912E0, void, OpenXRFeature_Internal_GetSessionState, (int32_t oldState, int32_t newState, MethodInfo * method)); +DO_APP_FUNC(0x02C912E0, void, OpenXRFeature_Internal_GetSessionState, (int32_t * oldState, int32_t * newState, MethodInfo * method)); DO_APP_FUNC(0x02C91370, XrEnvironmentBlendMode__Enum, OpenXRFeature_Internal_GetEnvironmentBlendMode, (MethodInfo * method)); DO_APP_FUNC(0x02C90170, void, OpenXRFeature_Internal_SetEnvironmentBlendMode, (XrEnvironmentBlendMode__Enum xrEnvironmentBlendMode, MethodInfo * method)); -DO_APP_FUNC(0x02C913E0, bool, OpenXRFeature_Internal_GetAppSpace, (uint64_t appSpace, MethodInfo * method)); +DO_APP_FUNC(0x02C913E0, bool, OpenXRFeature_Internal_GetAppSpace, (uint64_t * appSpace, MethodInfo * method)); DO_APP_FUNC(0x02C91460, void *, OpenXRFeature_Internal_GetProcAddressPtr, (bool loaderDefault, MethodInfo * method)); DO_APP_FUNC(0x02C914E0, void, OpenXRFeature_Internal_SetProcAddressPtrAndLoadStage1, (void * func, MethodInfo * method)); DO_APP_FUNC(0x003BA2A0, void, OpenXRFeature__ctor, (OpenXRFeature * __this, MethodInfo * method)); @@ -104424,6 +116645,7 @@ DO_APP_FUNC(0x007205E0, OpenXRInteractionFeature_InteractionProfileType__Enum, O DO_APP_FUNC(0x02C91580, String *, OpenXRInteractionFeature_GetDeviceLayoutName, (OpenXRInteractionFeature * __this, MethodInfo * method)); DO_APP_FUNC(0x02C915C0, void, OpenXRInteractionFeature_CreateActionMaps, (OpenXRInteractionFeature * __this, List_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionMapConfig_ * configs, MethodInfo * method)); DO_APP_FUNC(0x02C91710, void, OpenXRInteractionFeature_AddActionMap, (OpenXRInteractionFeature * __this, OpenXRInteractionFeature_ActionMapConfig * map, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB04E8, OpenXRInteractionFeature_AddActionMap__MethodInfo); DO_APP_FUNC(0x003AE050, void, OpenXRInteractionFeature_AddAdditiveActions, (OpenXRInteractionFeature * __this, List_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionMapConfig_ * actionMaps, OpenXRInteractionFeature_ActionMapConfig * additiveMap, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, OpenXRInteractionFeature_OnEnabledChange, (OpenXRInteractionFeature * __this, MethodInfo * method)); DO_APP_FUNC(0x02C918B0, void, OpenXRInteractionFeature_RegisterLayouts, (MethodInfo * method)); @@ -104464,9 +116686,13 @@ DO_APP_FUNC(0x018BD410, void, DPadInteraction_DPad__ctor, (DPadInteraction_DPad DO_APP_FUNC(0x02C94AD0, void, DPadInteraction_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, DPadInteraction_c__ctor, (DPadInteraction_c * __this, MethodInfo * method)); DO_APP_FUNC(0x02C94B80, bool, DPadInteraction_c__AddAdditiveActions_b__31_0, (DPadInteraction_c * __this, OpenXRInteractionFeature_DeviceConfig * d, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0270, DPadInteraction_c__AddAdditiveActions_b__31_0__MethodInfo); DO_APP_FUNC(0x02C94CA0, bool, DPadInteraction_c__AddAdditiveActions_b__31_1, (DPadInteraction_c * __this, OpenXRInteractionFeature_ActionBinding * b, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0278, DPadInteraction_c__AddAdditiveActions_b__31_1__MethodInfo); DO_APP_FUNC(0x02C94D00, bool, DPadInteraction_c__AddAdditiveActions_b__31_2, (DPadInteraction_c * __this, OpenXRInteractionFeature_ActionBinding * b, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0280, DPadInteraction_c__AddAdditiveActions_b__31_2__MethodInfo); DO_APP_FUNC(0x02C94D60, bool, DPadInteraction_c__AddAdditiveActions_b__31_3, (DPadInteraction_c * __this, OpenXRInteractionFeature_ActionConfig * a, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0288, DPadInteraction_c__AddAdditiveActions_b__31_3__MethodInfo); DO_APP_FUNC(0x02C94D80, bool, EyeGazeInteraction_OnInstanceCreate, (EyeGazeInteraction * __this, uint64_t instance, MethodInfo * method)); DO_APP_FUNC(0x02C94DE0, void, EyeGazeInteraction_RegisterDeviceLayout, (EyeGazeInteraction * __this, MethodInfo * method)); DO_APP_FUNC(0x02C95010, void, EyeGazeInteraction_UnregisterDeviceLayout, (EyeGazeInteraction * __this, MethodInfo * method)); @@ -104500,11 +116726,15 @@ DO_APP_FUNC(0x02C97C10, void, HandCommonPosesInteraction_HandInteractionPoses_Fi DO_APP_FUNC(0x018BD410, void, HandCommonPosesInteraction_HandInteractionPoses__ctor, (HandCommonPosesInteraction_HandInteractionPoses * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HandCommonPosesInteraction_c_DisplayClass17_0__ctor, (HandCommonPosesInteraction_c_DisplayClass17_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x02C97E60, bool, HandCommonPosesInteraction_c_DisplayClass17_0__AddAdditiveActions_b__3, (HandCommonPosesInteraction_c_DisplayClass17_0 * __this, OpenXRInteractionFeature_ActionBinding * b, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAFFE0, HandCommonPosesInteraction_c_DisplayClass17_0__AddAdditiveActions_b__3__MethodInfo); DO_APP_FUNC(0x02C97F80, void, HandCommonPosesInteraction_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HandCommonPosesInteraction_c__ctor, (HandCommonPosesInteraction_c * __this, MethodInfo * method)); DO_APP_FUNC(0x02C98030, bool, HandCommonPosesInteraction_c__AddAdditiveActions_b__17_0, (HandCommonPosesInteraction_c * __this, OpenXRInteractionFeature_DeviceConfig * d, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAFFC0, HandCommonPosesInteraction_c__AddAdditiveActions_b__17_0__MethodInfo); DO_APP_FUNC(0x02C94D60, bool, HandCommonPosesInteraction_c__AddAdditiveActions_b__17_1, (HandCommonPosesInteraction_c * __this, OpenXRInteractionFeature_ActionConfig * a, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAFFC8, HandCommonPosesInteraction_c__AddAdditiveActions_b__17_1__MethodInfo); DO_APP_FUNC(0x02C98150, bool, HandCommonPosesInteraction_c__AddAdditiveActions_b__17_2, (HandCommonPosesInteraction_c * __this, OpenXRInteractionFeature_ActionConfig * m, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAFFD0, HandCommonPosesInteraction_c__AddAdditiveActions_b__17_2__MethodInfo); DO_APP_FUNC(0x02C98170, bool, HandInteractionProfile_OnInstanceCreate, (HandInteractionProfile * __this, uint64_t instance, MethodInfo * method)); DO_APP_FUNC(0x02C981D0, void, HandInteractionProfile_RegisterDeviceLayout, (HandInteractionProfile * __this, MethodInfo * method)); DO_APP_FUNC(0x02C983F0, void, HandInteractionProfile_UnregisterDeviceLayout, (HandInteractionProfile * __this, MethodInfo * method)); @@ -104894,7 +117124,9 @@ DO_APP_FUNC(0x018BD410, void, PalmPoseInteraction_PalmPose__ctor, (PalmPoseInter DO_APP_FUNC(0x02CB4910, void, PalmPoseInteraction_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, PalmPoseInteraction_c__ctor, (PalmPoseInteraction_c * __this, MethodInfo * method)); DO_APP_FUNC(0x02CB49C0, bool, PalmPoseInteraction_c__AddAdditiveActions_b__13_0, (PalmPoseInteraction_c * __this, OpenXRInteractionFeature_DeviceConfig * d, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB21C8, PalmPoseInteraction_c__AddAdditiveActions_b__13_0__MethodInfo); DO_APP_FUNC(0x02C94D60, bool, PalmPoseInteraction_c__AddAdditiveActions_b__13_1, (PalmPoseInteraction_c * __this, OpenXRInteractionFeature_ActionConfig * a, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB21D0, PalmPoseInteraction_c__AddAdditiveActions_b__13_1__MethodInfo); DO_APP_FUNC(0x02CB4AE0, void, ValveIndexControllerProfile_RegisterDeviceLayout, (ValveIndexControllerProfile * __this, MethodInfo * method)); DO_APP_FUNC(0x02CB4D00, void, ValveIndexControllerProfile_UnregisterDeviceLayout, (ValveIndexControllerProfile * __this, MethodInfo * method)); DO_APP_FUNC(0x02CB4D60, String *, ValveIndexControllerProfile_GetDeviceLayoutName, (ValveIndexControllerProfile * __this, MethodInfo * method)); @@ -104971,8 +117203,8 @@ DO_APP_FUNC(0x018DE260, bool, ASN1_1_CompareArray, (ASN1_1 * __this, Byte__Array DO_APP_FUNC(0x018DE2F0, bool, ASN1_1_CompareValue, (ASN1_1 * __this, Byte__Array * value, MethodInfo * method)); DO_APP_FUNC(0x018DE380, ASN1_1 *, ASN1_1_Add, (ASN1_1 * __this, ASN1_1 * asn1, MethodInfo * method)); DO_APP_FUNC(0x018DE470, Byte__Array *, ASN1_1_GetBytes, (ASN1_1 * __this, MethodInfo * method)); -DO_APP_FUNC(0x018DEAE0, void, ASN1_1_Decode, (ASN1_1 * __this, Byte__Array * asn1, int32_t anPos, int32_t anLength, MethodInfo * method)); -DO_APP_FUNC(0x018DEF40, void, ASN1_1_DecodeTLV, (ASN1_1 * __this, Byte__Array * asn1, int32_t pos, uint8_t tag, int32_t length, Byte__Array * content, MethodInfo * method)); +DO_APP_FUNC(0x018DEAE0, void, ASN1_1_Decode, (ASN1_1 * __this, Byte__Array * asn1, int32_t * anPos, int32_t anLength, MethodInfo * method)); +DO_APP_FUNC(0x018DEF40, void, ASN1_1_DecodeTLV, (ASN1_1 * __this, Byte__Array * asn1, int32_t * pos, uint8_t * tag, int32_t * length, Byte__Array * * content, MethodInfo * method)); DO_APP_FUNC(0x018DF090, ASN1_1 *, ASN1_1_get_Item, (ASN1_1 * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x018DF160, ASN1_1 *, ASN1_1_Element, (ASN1_1 * __this, int32_t index, uint8_t anTag, MethodInfo * method)); DO_APP_FUNC(0x018DF250, String *, ASN1_1_ToString, (ASN1_1 * __this, MethodInfo * method)); @@ -105051,7 +117283,7 @@ DO_APP_FUNC_METHODINFO(0x03C90938, PKCS12_GetSymmetricAlgorithm__MethodInfo); DO_APP_FUNC(0x018E5240, Byte__Array *, PKCS12_Decrypt, (PKCS12 * __this, String * algorithmOid, Byte__Array * salt, int32_t iterationCount, Byte__Array * encryptedData, MethodInfo * method)); DO_APP_FUNC(0x018E53F0, Byte__Array *, PKCS12_Decrypt_1, (PKCS12 * __this, PKCS7_EncryptedData * ed, MethodInfo * method)); DO_APP_FUNC(0x018E5530, Byte__Array *, PKCS12_Encrypt, (PKCS12 * __this, String * algorithmOid, Byte__Array * salt, int32_t iterationCount, Byte__Array * data, MethodInfo * method)); -DO_APP_FUNC(0x018E56A0, DSAParameters, PKCS12_GetExistingParameters, (PKCS12 * __this, bool found, MethodInfo * method)); +DO_APP_FUNC(0x018E56A0, DSAParameters, PKCS12_GetExistingParameters, (PKCS12 * __this, bool * found, MethodInfo * method)); DO_APP_FUNC(0x018E5930, void, PKCS12_AddPrivateKey, (PKCS12 * __this, PKCS8_PrivateKeyInfo * pki, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C908D0, PKCS12_AddPrivateKey__MethodInfo); DO_APP_FUNC(0x018E5C40, void, PKCS12_ReadSafeBag, (PKCS12 * __this, ASN1_1 * safeBag, MethodInfo * method)); @@ -105088,15 +117320,15 @@ DO_APP_FUNC(0x018ECAF0, String *, X501_ToString_1, (ASN1_1 * seq, bool reversed, DO_APP_FUNC(0x018ECCE0, void, X501_AppendEntry, (StringBuilder * sb, ASN1_1 * entry, bool quotes, MethodInfo * method)); DO_APP_FUNC(0x018ED6B0, X520_AttributeTypeAndValue *, X501_GetAttributeFromOid, (String * attributeType, MethodInfo * method)); DO_APP_FUNC(0x018EE8C0, bool, X501_IsOid, (String * oid, MethodInfo * method)); -DO_APP_FUNC(0x018EE8F0, X520_AttributeTypeAndValue *, X501_ReadAttribute, (String * value, int32_t pos, MethodInfo * method)); +DO_APP_FUNC(0x018EE8F0, X520_AttributeTypeAndValue *, X501_ReadAttribute, (String * value, int32_t * pos, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C906A0, X501_ReadAttribute__MethodInfo); DO_APP_FUNC(0x018EEAB0, bool, X501_IsHex, (uint16_t c, MethodInfo * method)); -DO_APP_FUNC(0x018EEC10, String *, X501_ReadHex, (String * value, int32_t pos, MethodInfo * method)); +DO_APP_FUNC(0x018EEC10, String *, X501_ReadHex, (String * value, int32_t * pos, MethodInfo * method)); DO_APP_FUNC(0x018EEF20, int32_t, X501_ReadEscaped, (StringBuilder * sb, String * value, int32_t pos, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C906B8, X501_ReadEscaped__MethodInfo); DO_APP_FUNC(0x018EF0E0, int32_t, X501_ReadQuoted, (StringBuilder * sb, String * value, int32_t pos, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C90658, X501_ReadQuoted__MethodInfo); -DO_APP_FUNC(0x018EF260, String *, X501_ReadValue, (String * value, int32_t pos, MethodInfo * method)); +DO_APP_FUNC(0x018EF260, String *, X501_ReadValue, (String * value, int32_t * pos, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C90668, X501_ReadValue__MethodInfo); DO_APP_FUNC(0x018EF530, ASN1_1 *, X501_FromString, (String * rdn, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C90678, X501_FromString__MethodInfo); @@ -105310,9 +117542,9 @@ DO_APP_FUNC(0x018FE6D0, void, ChallengeResponse__cctor, (MethodInfo * method)); DO_APP_FUNC(0x018FE870, Byte__Array *, ChallengeResponse2_Compute_LM, (String * password, Byte__Array * challenge, MethodInfo * method)); DO_APP_FUNC(0x018FEE30, Byte__Array *, ChallengeResponse2_Compute_NTLM_Password, (String * password, MethodInfo * method)); DO_APP_FUNC(0x018FF170, Byte__Array *, ChallengeResponse2_Compute_NTLM, (String * password, Byte__Array * challenge, MethodInfo * method)); -DO_APP_FUNC(0x018FF1E0, void, ChallengeResponse2_Compute_NTLMv2_Session, (String * password, Byte__Array * challenge, Byte__Array * lm, Byte__Array * ntlm, MethodInfo * method)); +DO_APP_FUNC(0x018FF1E0, void, ChallengeResponse2_Compute_NTLMv2_Session, (String * password, Byte__Array * challenge, Byte__Array * * lm, Byte__Array * * ntlm, MethodInfo * method)); DO_APP_FUNC(0x018FF6B0, Byte__Array *, ChallengeResponse2_Compute_NTLMv2, (Type2Message * type2, String * username, String * password, String * domain, MethodInfo * method)); -DO_APP_FUNC(0x018FFF20, void, ChallengeResponse2_Compute, (Type2Message * type2, NtlmAuthLevel__Enum level, String * username, String * password, String * domain, Byte__Array * lm, Byte__Array * ntlm, MethodInfo * method)); +DO_APP_FUNC(0x018FFF20, void, ChallengeResponse2_Compute, (Type2Message * type2, NtlmAuthLevel__Enum level, String * username, String * password, String * domain, Byte__Array * * lm, Byte__Array * * ntlm, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C91B38, ChallengeResponse2_Compute__MethodInfo); DO_APP_FUNC(0x01900280, Byte__Array *, ChallengeResponse2_GetResponse, (Byte__Array * challenge, Byte__Array * pwd, MethodInfo * method)); DO_APP_FUNC(0x01900500, Byte__Array *, ChallengeResponse2_PrepareDESKey, (Byte__Array * key56bits, int32_t position, MethodInfo * method)); @@ -105471,9 +117703,9 @@ DO_APP_FUNC(0x019083A0, uint32_t, MD4Managed_1_F, (MD4Managed_1 * __this, uint32 DO_APP_FUNC(0x019083B0, uint32_t, MD4Managed_1_G, (MD4Managed_1 * __this, uint32_t x, uint32_t y, uint32_t z, MethodInfo * method)); DO_APP_FUNC(0x019083C0, uint32_t, MD4Managed_1_H, (MD4Managed_1 * __this, uint32_t x, uint32_t y, uint32_t z, MethodInfo * method)); DO_APP_FUNC(0x019083D0, uint32_t, MD4Managed_1_ROL, (MD4Managed_1 * __this, uint32_t x, uint8_t n, MethodInfo * method)); -DO_APP_FUNC(0x019083F0, void, MD4Managed_1_FF, (MD4Managed_1 * __this, uint32_t a, uint32_t b, uint32_t c, uint32_t d, uint32_t x, uint8_t s, MethodInfo * method)); -DO_APP_FUNC(0x01908430, void, MD4Managed_1_GG, (MD4Managed_1 * __this, uint32_t a, uint32_t b, uint32_t c, uint32_t d, uint32_t x, uint8_t s, MethodInfo * method)); -DO_APP_FUNC(0x01908480, void, MD4Managed_1_HH, (MD4Managed_1 * __this, uint32_t a, uint32_t b, uint32_t c, uint32_t d, uint32_t x, uint8_t s, MethodInfo * method)); +DO_APP_FUNC(0x019083F0, void, MD4Managed_1_FF, (MD4Managed_1 * __this, uint32_t * a, uint32_t b, uint32_t c, uint32_t d, uint32_t x, uint8_t s, MethodInfo * method)); +DO_APP_FUNC(0x01908430, void, MD4Managed_1_GG, (MD4Managed_1 * __this, uint32_t * a, uint32_t b, uint32_t c, uint32_t d, uint32_t x, uint8_t s, MethodInfo * method)); +DO_APP_FUNC(0x01908480, void, MD4Managed_1_HH, (MD4Managed_1 * __this, uint32_t * a, uint32_t b, uint32_t c, uint32_t d, uint32_t x, uint8_t s, MethodInfo * method)); DO_APP_FUNC(0x019084C0, void, MD4Managed_1_Encode, (MD4Managed_1 * __this, Byte__Array * output, UInt32__Array * input, MethodInfo * method)); DO_APP_FUNC(0x01908590, void, MD4Managed_1_Decode, (MD4Managed_1 * __this, UInt32__Array * output, Byte__Array * input, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01908640, void, MD4Managed_1_MD4Transform, (MD4Managed_1 * __this, UInt32__Array * state, Byte__Array * block, int32_t index, MethodInfo * method)); @@ -105697,13 +117929,14 @@ DO_APP_FUNC(0x01868420, void, MotionSolver_Update, (MotionSolver * __this, float DO_APP_FUNC(0x01868580, void, MotionSolver_FixedUpdate, (MotionSolver * __this, float dt, MethodInfo * method)); DO_APP_FUNC(0x01868610, void, MotionSolver_Solve, (MotionSolver * __this, float dt, MethodInfo * method)); DO_APP_FUNC(0x01868AB0, void, MotionSolver_SolveCPU, (MotionSolver * __this, int32_t nbSteps, float dtStep, MethodInfo * method)); -DO_APP_FUNC(0x01869910, void, MotionSolver_SwapBuffers, (MotionSolver * __this, ComputeBuffer * a, ComputeBuffer * b, MethodInfo * method)); +DO_APP_FUNC(0x01869910, void, MotionSolver_SwapBuffers, (MotionSolver * __this, ComputeBuffer * * a, ComputeBuffer * * b, MethodInfo * method)); DO_APP_FUNC(0x018699C0, void, MotionSolver_FeedNodeBuffers, (MotionSolver * __this, MethodInfo * method)); DO_APP_FUNC(0x01869EA0, void, MotionSolver_InitGpuSolver, (MotionSolver * __this, MethodInfo * method)); -DO_APP_FUNC(0x0186AF40, void, MotionSolver_ReleaseBuffer, (MotionSolver * __this, ComputeBuffer * Buffer, MethodInfo * method)); +DO_APP_FUNC(0x0186AF40, void, MotionSolver_ReleaseBuffer, (MotionSolver * __this, ComputeBuffer * * Buffer, MethodInfo * method)); DO_APP_FUNC(0x0186B000, void, MotionSolver_ReleaseBuffers, (MotionSolver * __this, MethodInfo * method)); DO_APP_FUNC(0x0186B060, void, MotionSolver_Destroy, (MotionSolver * __this, MethodInfo * method)); DO_APP_FUNC(0x0186B2C0, void, MotionSolver_OnConstrantChanged, (MotionSolver * __this, HairDesignerMotionConstraintAreaBase * mcstr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D20D80, MotionSolver_OnConstrantChanged__MethodInfo); DO_APP_FUNC(0x0186B420, void, MotionSolver_UpdateColliderBuffer, (MotionSolver * __this, MethodInfo * method)); DO_APP_FUNC(0x0186B950, void, MotionSolver_SolveGPU, (MotionSolver * __this, int32_t nbSteps, float dtStep, MethodInfo * method)); DO_APP_FUNC(0x0186D240, void, MotionSolver__ctor, (MotionSolver * __this, MethodInfo * method)); @@ -105730,13 +117963,17 @@ DO_APP_FUNC(0x01870610, void, MotionSolver_Link__ctor, (MotionSolver_Link * __th DO_APP_FUNC(0x018706A0, void, MotionSolver_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, MotionSolver_c__ctor, (MotionSolver_c * __this, MethodInfo * method)); DO_APP_FUNC(0x01870750, MotionSolver_GPUNodeData, MotionSolver_c__FeedNodeBuffers_b__50_0, (MotionSolver_c * __this, MotionSolver_Node * node, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D20E20, MotionSolver_c__FeedNodeBuffers_b__50_0__MethodInfo); DO_APP_FUNC(0x018707F0, MotionSolver_GPUNodeInfo, MotionSolver_c__FeedNodeBuffers_b__50_1, (MotionSolver_c * __this, MotionSolver_Node * node, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D20E18, MotionSolver_c__FeedNodeBuffers_b__50_1__MethodInfo); DO_APP_FUNC(0x01870840, HairDesignerColliderBase_DualSphere, MotionSolver_c__UpdateColliderBuffer_b__57_0, (MotionSolver_c * __this, HairDesignerColliderBase * col, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D20D50, MotionSolver_c__UpdateColliderBuffer_b__57_0__MethodInfo); DO_APP_FUNC(0x01870870, int32_t, HairDesignerStrandMeshCollectionBase_CreateNewID, (HairDesignerStrandMeshCollectionBase * __this, MethodInfo * method)); DO_APP_FUNC(0x00712B70, void, HairDesignerStrandMeshCollectionBase__ctor, (HairDesignerStrandMeshCollectionBase * __this, MethodInfo * method)); DO_APP_FUNC(0x01870A10, void, HairDesignerStrandMeshCollectionBase_StrandMesh__ctor, (HairDesignerStrandMeshCollectionBase_StrandMesh * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HairDesignerStrandMeshCollectionBase_c_DisplayClass2_0__ctor, (HairDesignerStrandMeshCollectionBase_c_DisplayClass2_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00596860, bool, HairDesignerStrandMeshCollectionBase_c_DisplayClass2_0__CreateNewID_b__0, (HairDesignerStrandMeshCollectionBase_c_DisplayClass2_0 * __this, HairDesignerStrandMeshCollectionBase_StrandMesh * s, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D20B70, HairDesignerStrandMeshCollectionBase_c_DisplayClass2_0__CreateNewID_b__0__MethodInfo); DO_APP_FUNC(0x01870AE0, void, BZCurv__ctor, (BZCurv * __this, MethodInfo * method)); DO_APP_FUNC(0x01870B30, void, BZCurv__ctor_1, (BZCurv * __this, Vector3 startPosition, Vector3 endPosition, Vector3 startTangent, Vector3 endTangent, MethodInfo * method)); DO_APP_FUNC(0x01870BF0, void, BZCurv__ctor_2, (BZCurv * __this, BZCurv * original, MethodInfo * method)); @@ -105759,7 +117996,7 @@ DO_APP_FUNC(0x01872E60, float, MBZCurv_GetEndAngle, (MBZCurv * __this, int32_t i DO_APP_FUNC(0x01872EA0, void, MBZCurv__ctor, (MBZCurv * __this, MethodInfo * method)); DO_APP_FUNC(0x01873050, Vector3, MBZCurv_GetPosition, (MBZCurv * __this, float t, MethodInfo * method)); DO_APP_FUNC(0x018730C0, Vector3, MBZCurv_GetPosition_1, (MBZCurv * __this, int32_t subCurv, float t, MethodInfo * method)); -DO_APP_FUNC(0x01873320, int32_t, MBZCurv_GetCurveId, (MBZCurv * __this, float t, float tLocal, MethodInfo * method)); +DO_APP_FUNC(0x01873320, int32_t, MBZCurv_GetCurveId, (MBZCurv * __this, float t, float * tLocal, MethodInfo * method)); DO_APP_FUNC(0x01873460, Vector3, MBZCurv_GetUp, (MBZCurv * __this, float t, MethodInfo * method)); DO_APP_FUNC(0x018734D0, Vector3, MBZCurv_GetUp_1, (MBZCurv * __this, int32_t subCurv, float t, MethodInfo * method)); DO_APP_FUNC(0x018738B0, Vector3, MBZCurv_GetTangent, (MBZCurv * __this, float t, MethodInfo * method)); @@ -105840,19 +118077,22 @@ DO_APP_FUNC(0x018836C0, void, HairDesignerGeneratorFurShellBase_Awake, (HairDesi DO_APP_FUNC(0x01883CD0, void, HairDesignerGeneratorFurShellBase_InitMotionZones, (HairDesignerGeneratorFurShellBase * __this, MethodInfo * method)); DO_APP_FUNC(0x01883FD0, void, HairDesignerGeneratorFurShellBase_Start, (HairDesignerGeneratorFurShellBase * __this, MethodInfo * method)); DO_APP_FUNC(0x01883FF0, void, HairDesignerGeneratorFurShellBase_OnPlayStateChanged, (HairDesignerGeneratorFurShellBase * __this, HairDesignerEvents_PlayModeStateChange__Enum state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D214C8, HairDesignerGeneratorFurShellBase_OnPlayStateChanged__MethodInfo); DO_APP_FUNC(0x01884040, void, HairDesignerGeneratorFurShellBase_OnPauseStateChanged, (HairDesignerGeneratorFurShellBase * __this, HairDesignerEvents_PauseState__Enum state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D214D0, HairDesignerGeneratorFurShellBase_OnPauseStateChanged__MethodInfo); DO_APP_FUNC(0x01884100, void, HairDesignerGeneratorFurShellBase_Init, (HairDesignerGeneratorFurShellBase * __this, MethodInfo * method)); DO_APP_FUNC(0x01884FE0, void, HairDesignerGeneratorFurShellBase_UpdateInstance, (HairDesignerGeneratorFurShellBase * __this, MethodInfo * method)); DO_APP_FUNC(0x01886470, void, HairDesignerGeneratorFurShellBase_LateUpdateInstance, (HairDesignerGeneratorFurShellBase * __this, MethodInfo * method)); DO_APP_FUNC(0x01886490, void, HairDesignerGeneratorFurShellBase_ClearShells, (HairDesignerGeneratorFurShellBase * __this, MethodInfo * method)); DO_APP_FUNC(0x01886AB0, void, HairDesignerGeneratorFurShellBase_InitShaderid, (HairDesignerGeneratorFurShellBase * __this, MethodInfo * method)); DO_APP_FUNC(0x01886C00, void, HairDesignerGeneratorFurShellBase_InitMaterial, (HairDesignerGeneratorFurShellBase * __this, MethodInfo * method)); -DO_APP_FUNC(0x018875A0, void, HairDesignerGeneratorFurShellBase_UpdateIndirectBuffer, (HairDesignerGeneratorFurShellBase * __this, ComputeBuffer * furBuff, List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * bufLst, ComputeBuffer * argsBuf, UInt32__Array * args, int32_t startIdx, int32_t length, int32_t subMesh, MethodInfo * method)); +DO_APP_FUNC(0x018875A0, void, HairDesignerGeneratorFurShellBase_UpdateIndirectBuffer, (HairDesignerGeneratorFurShellBase * __this, ComputeBuffer * * furBuff, List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * * bufLst, ComputeBuffer * * argsBuf, UInt32__Array * * args, int32_t startIdx, int32_t length, int32_t subMesh, MethodInfo * method)); DO_APP_FUNC(0x01887D60, void, HairDesignerGeneratorFurShellBase_UpdateDrawIndirectBuffers, (HairDesignerGeneratorFurShellBase * __this, int32_t subMesh, MethodInfo * method)); DO_APP_FUNC(0x01888340, void, HairDesignerGeneratorFurShellBase_UpdateShells, (HairDesignerGeneratorFurShellBase * __this, MethodInfo * method)); DO_APP_FUNC(0x0188AE60, void, HairDesignerGeneratorFurShellBase_GenerateShell, (HairDesignerGeneratorFurShellBase * __this, MethodInfo * method)); DO_APP_FUNC(0x0188BAE0, int32_t, HairDesignerGeneratorFurShellBase_GetLOD, (HairDesignerGeneratorFurShellBase * __this, Camera * cam, MethodInfo * method)); DO_APP_FUNC(0x0188BEB0, void, HairDesignerGeneratorFurShellBase_CameraPreCull, (HairDesignerGeneratorFurShellBase * __this, Camera * cam, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21370, HairDesignerGeneratorFurShellBase_CameraPreCull__MethodInfo); DO_APP_FUNC(0x0188BFC0, void, HairDesignerGeneratorFurShellBase_RenderLOD, (HairDesignerGeneratorFurShellBase * __this, Camera * cam, MethodInfo * method)); DO_APP_FUNC(0x0188C1E0, void, HairDesignerGeneratorFurShellBase_OnDisable, (HairDesignerGeneratorFurShellBase * __this, MethodInfo * method)); DO_APP_FUNC(0x0188C490, void, HairDesignerGeneratorFurShellBase_OnEnable, (HairDesignerGeneratorFurShellBase * __this, MethodInfo * method)); @@ -105861,7 +118101,7 @@ DO_APP_FUNC(0x0188C8B0, void, HairDesignerGeneratorFurShellBase_Destroy, (HairDe DO_APP_FUNC(0x0188C8E0, void, HairDesignerGeneratorFurShellBase_InitCS, (HairDesignerGeneratorFurShellBase * __this, MethodInfo * method)); DO_APP_FUNC(0x0188E140, void, HairDesignerGeneratorFurShellBase_CleanMIIComputeBuffers, (HairDesignerGeneratorFurShellBase * __this, MethodInfo * method)); DO_APP_FUNC(0x0188E320, void, HairDesignerGeneratorFurShellBase_CleanComputeBuffers, (HairDesignerGeneratorFurShellBase * __this, MethodInfo * method)); -DO_APP_FUNC(0x0186AF40, void, HairDesignerGeneratorFurShellBase_ClearBuffer, (HairDesignerGeneratorFurShellBase * __this, ComputeBuffer * cpb, MethodInfo * method)); +DO_APP_FUNC(0x0186AF40, void, HairDesignerGeneratorFurShellBase_ClearBuffer, (HairDesignerGeneratorFurShellBase * __this, ComputeBuffer * * cpb, MethodInfo * method)); DO_APP_FUNC(0x0188E840, void, HairDesignerGeneratorFurShellBase_GPU_Skinning, (HairDesignerGeneratorFurShellBase * __this, MethodInfo * method)); DO_APP_FUNC(0x0188F0C0, void, HairDesignerGeneratorFurShellBase__ctor, (HairDesignerGeneratorFurShellBase * __this, MethodInfo * method)); DO_APP_FUNC(0x0188F660, void, HairDesignerGeneratorFurShellBase_LODGroup__ctor, (HairDesignerGeneratorFurShellBase_LODGroup * __this, MethodInfo * method)); @@ -105878,7 +118118,7 @@ DO_APP_FUNC(0x018919C0, void, HairDesignerGeneratorLongHairBase_UpdateBonePositi DO_APP_FUNC(0x01891BE0, void, HairDesignerGeneratorLongHairBase_FixedUpdateBonePositionV3, (HairDesignerGeneratorLongHairBase * __this, MethodInfo * method)); DO_APP_FUNC(0x01891CD0, void, HairDesignerGeneratorLongHairBase_UpdateBonePositionV2, (HairDesignerGeneratorLongHairBase * __this, MethodInfo * method)); DO_APP_FUNC(0x01894560, void, HairDesignerGeneratorLongHairBase_UpdateBonePositionV1, (HairDesignerGeneratorLongHairBase * __this, MethodInfo * method)); -DO_APP_FUNC(0x01897930, bool, HairDesignerGeneratorLongHairBase_CheckCapsuleCollision, (HairDesignerGeneratorLongHairBase * __this, HairDesignerGeneratorLongHairBase_HairGroup * hg, int32_t b, Vector3 position, Vector3 normalCollision, MethodInfo * method)); +DO_APP_FUNC(0x01897930, bool, HairDesignerGeneratorLongHairBase_CheckCapsuleCollision, (HairDesignerGeneratorLongHairBase * __this, HairDesignerGeneratorLongHairBase_HairGroup * hg, int32_t b, Vector3 * position, Vector3 * normalCollision, MethodInfo * method)); DO_APP_FUNC(0x01898670, void, HairDesignerGeneratorLongHairBase_SmoothParentBoneOrientation, (HairDesignerGeneratorLongHairBase * __this, HairDesignerGeneratorLongHairBase_HairGroup * g, int32_t boneId, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HairDesignerGeneratorLongHairBase_UpdateBlendshape, (HairDesignerGeneratorLongHairBase * __this, MethodInfo * method)); DO_APP_FUNC(0x01898AE0, void, HairDesignerGeneratorLongHairBase_Destroy, (HairDesignerGeneratorLongHairBase * __this, MethodInfo * method)); @@ -105907,10 +118147,13 @@ DO_APP_FUNC(0x018A4970, void, HairDesignerGeneratorLongHairBase_MirrorModifier__ DO_APP_FUNC(0x018A4A80, void, HairDesignerGeneratorLongHairBase_EditorData__ctor, (HairDesignerGeneratorLongHairBase_EditorData * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HairDesignerGeneratorLongHairBase_c_DisplayClass48_0__ctor, (HairDesignerGeneratorLongHairBase_c_DisplayClass48_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00596860, bool, HairDesignerGeneratorLongHairBase_c_DisplayClass48_0__GenerateMeshFromCollection_b__0, (HairDesignerGeneratorLongHairBase_c_DisplayClass48_0 * __this, HairDesignerStrandMeshCollectionBase_StrandMesh * strand, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21118, HairDesignerGeneratorLongHairBase_c_DisplayClass48_0__GenerateMeshFromCollection_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, HairDesignerGeneratorLongHairBase_c_DisplayClass50_0__ctor, (HairDesignerGeneratorLongHairBase_c_DisplayClass50_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x018A4A90, bool, HairDesignerGeneratorLongHairBase_c_DisplayClass50_0__UpdateStrandMesh_b__0, (HairDesignerGeneratorLongHairBase_c_DisplayClass50_0 * __this, HairDesignerStrandMeshCollectionBase_StrandMesh * strand, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D210D0, HairDesignerGeneratorLongHairBase_c_DisplayClass50_0__UpdateStrandMesh_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, HairDesignerGeneratorLongHairBase_c_DisplayClass53_0__ctor, (HairDesignerGeneratorLongHairBase_c_DisplayClass53_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x018A4B30, bool, HairDesignerGeneratorLongHairBase_c_DisplayClass53_0__CreateHairMesh_b__0, (HairDesignerGeneratorLongHairBase_c_DisplayClass53_0 * __this, HairDesignerStrandMeshCollectionBase_StrandMesh * strand, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D210A8, HairDesignerGeneratorLongHairBase_c_DisplayClass53_0__CreateHairMesh_b__0__MethodInfo); DO_APP_FUNC(0x018A4BD0, StrandRenderingData *, HairDesignerGeneratorMeshBase_GetData, (HairDesignerGeneratorMeshBase * __this, int32_t id, MethodInfo * method)); DO_APP_FUNC(0x018A4E50, int32_t, HairDesignerGeneratorMeshBase_GetStrandCount, (HairDesignerGeneratorMeshBase * __this, MethodInfo * method)); DO_APP_FUNC(0x018A4EA0, void, HairDesignerGeneratorMeshBase_InitEditor, (HairDesignerGeneratorMeshBase * __this, MethodInfo * method)); @@ -105926,8 +118169,8 @@ DO_APP_FUNC(0x018AA3B0, void, HairDesignerGeneratorMeshBase_UpdateBlenshapes, (H DO_APP_FUNC(0x018AA820, void, HairDesignerGeneratorMeshBase__ctor, (HairDesignerGeneratorMeshBase * __this, MethodInfo * method)); DO_APP_FUNC(0x018AAA40, HairDesignerBase *, HairDesignerShader_get_m_hd, (HairDesignerShader * __this, MethodInfo * method)); DO_APP_FUNC(0x018AABB0, bool, HairDesignerShader_InstancingModeCompatibility, (HairDesignerShader * __this, eInstancingMode__Enum imode, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, HairDesignerShader_UpdatePropertyBlock, (HairDesignerShader * __this, MaterialPropertyBlock * pb, HairDesignerBase_eLayerType__Enum lt, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, HairDesignerShader_UpdateMaterialProperty, (HairDesignerShader * __this, Material * mat, HairDesignerBase_eLayerType__Enum lt, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, HairDesignerShader_UpdatePropertyBlock, (HairDesignerShader * __this, MaterialPropertyBlock * * pb, HairDesignerBase_eLayerType__Enum lt, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, HairDesignerShader_UpdateMaterialProperty, (HairDesignerShader * __this, Material * * mat, HairDesignerBase_eLayerType__Enum lt, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HairDesignerShader_SetTexture, (HairDesignerShader * __this, int32_t textureID, Texture2D * tex, MethodInfo * method)); DO_APP_FUNC(0x003CB690, Texture2D *, HairDesignerShader_GetTexture, (HairDesignerShader * __this, int32_t textureID, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, HairDesignerShader__ctor, (HairDesignerShader * __this, MethodInfo * method)); @@ -105943,11 +118186,11 @@ DO_APP_FUNC(0x018AB220, void, HairDesignerPID_Parameters__ctor_1, (HairDesignerP DO_APP_FUNC(0x018AB280, Vector3, HairPID_V3_Compute, (HairPID_V3 * __this, Vector3 input, MethodInfo * method)); DO_APP_FUNC(0x018AB4B0, void, HairPID_V3_Init, (HairPID_V3 * __this, MethodInfo * method)); DO_APP_FUNC(0x018AB610, void, HairPID_V3__ctor, (HairPID_V3 * __this, MethodInfo * method)); -DO_APP_FUNC(0x018AB890, void, MeshUtility_ApplyBlendShape, (SkinnedMeshRenderer * smr, Vector3__Array * vertices, MethodInfo * method)); +DO_APP_FUNC(0x018AB890, void, MeshUtility_ApplyBlendShape, (SkinnedMeshRenderer * smr, Vector3__Array * * vertices, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, MeshUtility__ctor, (MeshUtility * __this, MethodInfo * method)); DO_APP_FUNC(0x018ABCB0, void, TPoseUtility__ctor, (TPoseUtility * __this, MethodInfo * method)); DO_APP_FUNC(0x018ABCC0, TriangleLock *, TriangleLock_Clone, (TriangleLock * __this, MethodInfo * method)); -DO_APP_FUNC(0x018ABE70, void, TriangleLock_ComputeWeights, (TriangleLock * __this, Vector3 localPos, TriangleLock_TriangleData * tdata, bool isDirection, bool debug, MethodInfo * method)); +DO_APP_FUNC(0x018ABE70, void, TriangleLock_ComputeWeights, (TriangleLock * __this, Vector3 localPos, TriangleLock_TriangleData * * tdata, bool isDirection, bool debug, MethodInfo * method)); DO_APP_FUNC(0x018ACBD0, void, TriangleLock_InitFaceData, (TriangleLock * __this, Vector3__Array * vertices, Int32__Array * triangles, Transform * transMesh, Transform * transTarget, MethodInfo * method)); DO_APP_FUNC(0x018AD640, int32_t, TriangleLock_Lock, (TriangleLock * __this, Vector3 position, Vector3 direction, Vector3 up, Transform * transformMesh, Transform * transformTarget, int32_t faceId, Vector3__Array * vertices, Int32__Array * triangles, bool worldCoord, MethodInfo * method)); DO_APP_FUNC(0x018ADD20, void, TriangleLock_UpdateWorldDirection, (TriangleLock * __this, Vector3 worldDirection, MethodInfo * method)); @@ -105974,7 +118217,7 @@ DO_APP_FUNC(0x018B2510, void, HairDesignerGeneratorAdvancedFurBase_InitComputeSh DO_APP_FUNC(0x018B3F50, void, HairDesignerGeneratorAdvancedFurBase_RunCS, (HairDesignerGeneratorAdvancedFurBase * __this, MethodInfo * method)); DO_APP_FUNC(0x018B4EB0, void, HairDesignerGeneratorAdvancedFurBase_InitMotionZones, (HairDesignerGeneratorAdvancedFurBase * __this, MethodInfo * method)); DO_APP_FUNC(0x018B51B0, void, HairDesignerGeneratorAdvancedFurBase_Init, (HairDesignerGeneratorAdvancedFurBase * __this, MethodInfo * method)); -DO_APP_FUNC(0x018B5330, GameObject *, HairDesignerGeneratorAdvancedFurBase_GenerateFurObject, (HairDesignerGeneratorAdvancedFurBase * __this, String * name, GameObject * furObject, Renderer * renderTarget, List_1_System_Boolean_ * enableMaterial, Material * material, MethodInfo * method)); +DO_APP_FUNC(0x018B5330, GameObject *, HairDesignerGeneratorAdvancedFurBase_GenerateFurObject, (HairDesignerGeneratorAdvancedFurBase * __this, String * name, GameObject * * furObject, Renderer * * renderTarget, List_1_System_Boolean_ * * enableMaterial, Material * material, MethodInfo * method)); DO_APP_FUNC(0x018B6A80, void, HairDesignerGeneratorAdvancedFurBase_UpdateInstance, (HairDesignerGeneratorAdvancedFurBase * __this, MethodInfo * method)); DO_APP_FUNC(0x018B8520, void, HairDesignerGeneratorAdvancedFurBase_LateUpdateInstance, (HairDesignerGeneratorAdvancedFurBase * __this, MethodInfo * method)); DO_APP_FUNC(0x018B8590, void, HairDesignerGeneratorAdvancedFurBase_Disable, (HairDesignerGeneratorAdvancedFurBase * __this, MethodInfo * method)); @@ -106050,7 +118293,7 @@ DO_APP_FUNC(0x00A4A2D0, void, Behavior_DrawTaskGizmos_1, (Behavior * __this, Tas DO_APP_FUNC(0x00A4A410, Task_1 *, Behavior_FindTaskWithName, (Behavior * __this, String * taskName, MethodInfo * method)); DO_APP_FUNC(0x00A4A4A0, Task_1 *, Behavior_FindTaskWithName_1, (Behavior * __this, String * taskName, Task_1 * task, MethodInfo * method)); DO_APP_FUNC(0x00A4A610, List_1_BehaviorDesigner_Runtime_Tasks_Task_ *, Behavior_FindTasksWithName, (Behavior * __this, String * taskName, MethodInfo * method)); -DO_APP_FUNC(0x00A4A720, void, Behavior_FindTasksWithName_1, (Behavior * __this, String * taskName, Task_1 * task, List_1_BehaviorDesigner_Runtime_Tasks_Task_ * taskList, MethodInfo * method)); +DO_APP_FUNC(0x00A4A720, void, Behavior_FindTasksWithName_1, (Behavior * __this, String * taskName, Task_1 * task, List_1_BehaviorDesigner_Runtime_Tasks_Task_ * * taskList, MethodInfo * method)); DO_APP_FUNC(0x00A4A8B0, List_1_BehaviorDesigner_Runtime_Tasks_Task_ *, Behavior_GetActiveTasks, (Behavior * __this, MethodInfo * method)); DO_APP_FUNC(0x00A4AA30, Coroutine *, Behavior_StartTaskCoroutine, (Behavior * __this, Task_1 * task, String * methodName, MethodInfo * method)); DO_APP_FUNC(0x00A4AEF0, Coroutine *, Behavior_StartTaskCoroutine_1, (Behavior * __this, Task_1 * task, String * methodName, Object * value, MethodInfo * method)); @@ -106115,8 +118358,9 @@ DO_APP_FUNC(0x00A4F500, void, BehaviorManager_OnApplicationQuit, (BehaviorManage DO_APP_FUNC(0x00A4F5E0, void, BehaviorManager_EnableBehavior, (BehaviorManager * __this, Behavior * behavior, MethodInfo * method)); DO_APP_FUNC(0x00A4FAF0, IEnumerator *, BehaviorManager_CheckThreadLoaders, (BehaviorManager * __this, MethodInfo * method)); DO_APP_FUNC(0x00A4FB90, BehaviorManager_BehaviorTree *, BehaviorManager_LoadBehavior, (BehaviorManager * __this, Behavior * behavior, GameObject * behaviorGameObject, String * gameObjectName, Transform * behaviorTransform, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBF870, BehaviorManager_LoadBehavior__MethodInfo); DO_APP_FUNC(0x00A50820, void, BehaviorManager_LoadBehaviorComplete, (BehaviorManager * __this, Behavior * behavior, BehaviorManager_BehaviorTree * behaviorTree, MethodInfo * method)); -DO_APP_FUNC(0x00A51380, int32_t, BehaviorManager_AddToTaskList, (BehaviorManager * __this, BehaviorManager_BehaviorTree * behaviorTree, Task_1 * task, GameObject * behaviorGameObject, Transform * behaviorTransform, bool hasExternalBehavior, BehaviorManager_TaskAddData * data, MethodInfo * method)); +DO_APP_FUNC(0x00A51380, int32_t, BehaviorManager_AddToTaskList, (BehaviorManager * __this, BehaviorManager_BehaviorTree * behaviorTree, Task_1 * task, GameObject * behaviorGameObject, Transform * behaviorTransform, bool * hasExternalBehavior, BehaviorManager_TaskAddData * data, MethodInfo * method)); DO_APP_FUNC(0x00A532D0, void, BehaviorManager_OverrideFields, (BehaviorManager * __this, BehaviorManager_BehaviorTree * behaviorTree, BehaviorManager_TaskAddData * data, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x00A53DE0, SharedVariable *, BehaviorManager_OverrideSharedVariable, (BehaviorManager * __this, BehaviorManager_BehaviorTree * behaviorTree, BehaviorManager_TaskAddData * data, Type * fieldType, SharedVariable * sharedVariable, MethodInfo * method)); DO_APP_FUNC(0x00A545C0, void, BehaviorManager_DisableBehavior, (BehaviorManager * __this, Behavior * behavior, MethodInfo * method)); @@ -106138,10 +118382,10 @@ DO_APP_FUNC(0x00A55E50, void, BehaviorManager_Tick_2, (BehaviorManager * __this, DO_APP_FUNC(0x00A563C0, void, BehaviorManager_ReevaluateConditionalTasks, (BehaviorManager * __this, BehaviorManager_BehaviorTree * behaviorTree, MethodInfo * method)); DO_APP_FUNC(0x00A57420, void, BehaviorManager_ReevaluateParentTasks, (BehaviorManager * __this, BehaviorManager_BehaviorTree * behaviorTree, MethodInfo * method)); DO_APP_FUNC(0x00A57720, TaskStatus__Enum_1, BehaviorManager_RunTask, (BehaviorManager * __this, BehaviorManager_BehaviorTree * behaviorTree, int32_t taskIndex, int32_t stackIndex, TaskStatus__Enum_1 previousStatus, MethodInfo * method)); -DO_APP_FUNC(0x00A57F70, TaskStatus__Enum_1, BehaviorManager_RunParentTask, (BehaviorManager * __this, BehaviorManager_BehaviorTree * behaviorTree, int32_t taskIndex, int32_t stackIndex, TaskStatus__Enum_1 status, MethodInfo * method)); +DO_APP_FUNC(0x00A57F70, TaskStatus__Enum_1, BehaviorManager_RunParentTask, (BehaviorManager * __this, BehaviorManager_BehaviorTree * behaviorTree, int32_t taskIndex, int32_t * stackIndex, TaskStatus__Enum_1 status, MethodInfo * method)); DO_APP_FUNC(0x00A584D0, void, BehaviorManager_PushTask, (BehaviorManager * __this, BehaviorManager_BehaviorTree * behaviorTree, int32_t taskIndex, int32_t stackIndex, MethodInfo * method)); -DO_APP_FUNC(0x00A58AC0, void, BehaviorManager_PopTask, (BehaviorManager * __this, BehaviorManager_BehaviorTree * behaviorTree, int32_t taskIndex, int32_t stackIndex, TaskStatus__Enum_1 status, bool popChildren, MethodInfo * method)); -DO_APP_FUNC(0x00A58AF0, void, BehaviorManager_PopTask_1, (BehaviorManager * __this, BehaviorManager_BehaviorTree * behaviorTree, int32_t taskIndex, int32_t stackIndex, TaskStatus__Enum_1 status, bool popChildren, bool notifyOnEmptyStack, MethodInfo * method)); +DO_APP_FUNC(0x00A58AC0, void, BehaviorManager_PopTask, (BehaviorManager * __this, BehaviorManager_BehaviorTree * behaviorTree, int32_t taskIndex, int32_t stackIndex, TaskStatus__Enum_1 * status, bool popChildren, MethodInfo * method)); +DO_APP_FUNC(0x00A58AF0, void, BehaviorManager_PopTask_1, (BehaviorManager * __this, BehaviorManager_BehaviorTree * behaviorTree, int32_t taskIndex, int32_t stackIndex, TaskStatus__Enum_1 * status, bool popChildren, bool notifyOnEmptyStack, MethodInfo * method)); DO_APP_FUNC(0x00A59CA0, void, BehaviorManager_RemoveChildConditionalReevaluate, (BehaviorManager * __this, BehaviorManager_BehaviorTree * behaviorTree, int32_t compositeIndex, MethodInfo * method)); DO_APP_FUNC(0x00A59E90, void, BehaviorManager_Restart, (BehaviorManager * __this, BehaviorManager_BehaviorTree * behaviorTree, MethodInfo * method)); DO_APP_FUNC(0x00A5A100, bool, BehaviorManager_IsParentTask, (BehaviorManager * __this, BehaviorManager_BehaviorTree * behaviorTree, int32_t possibleParent, int32_t possibleChild, MethodInfo * method)); @@ -106198,18 +118442,21 @@ DO_APP_FUNC(0x003C7320, Thread *, BehaviorManager_BehaviorThreadLoader_get_Threa DO_APP_FUNC(0x003C7330, void, BehaviorManager_BehaviorThreadLoader_set_Thread, (BehaviorManager_BehaviorThreadLoader * __this, Thread * value, MethodInfo * method)); DO_APP_FUNC(0x003C7390, BehaviorManager_BehaviorTree *, BehaviorManager_BehaviorThreadLoader_get_BehaviorTree, (BehaviorManager_BehaviorThreadLoader * __this, MethodInfo * method)); DO_APP_FUNC(0x00A5F060, void, BehaviorManager_BehaviorThreadLoader_LoadBehavior, (BehaviorManager_BehaviorThreadLoader * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBF858, BehaviorManager_BehaviorThreadLoader_LoadBehavior__MethodInfo); DO_APP_FUNC(0x003AE050, void, BehaviorManager_CheckThreadLoaders_c_Iterator0__ctor, (BehaviorManager_CheckThreadLoaders_c_Iterator0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00A5F0F0, bool, BehaviorManager_CheckThreadLoaders_c_Iterator0_MoveNext, (BehaviorManager_CheckThreadLoaders_c_Iterator0 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, Object *, BehaviorManager_CheckThreadLoaders_c_Iterator0_System_Collections_Generic_IEnumerator_object__get_Current, (BehaviorManager_CheckThreadLoaders_c_Iterator0 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, Object *, BehaviorManager_CheckThreadLoaders_c_Iterator0_System_Collections_IEnumerator_get_Current, (BehaviorManager_CheckThreadLoaders_c_Iterator0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00A5F390, void, BehaviorManager_CheckThreadLoaders_c_Iterator0_Dispose, (BehaviorManager_CheckThreadLoaders_c_Iterator0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00A5F3A0, void, BehaviorManager_CheckThreadLoaders_c_Iterator0_Reset, (BehaviorManager_CheckThreadLoaders_c_Iterator0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBF3C0, BehaviorManager_CheckThreadLoaders_c_Iterator0_Reset__MethodInfo); DO_APP_FUNC(0x003AE050, void, BehaviorManager_CoroutineUpdate_c_Iterator1__ctor, (BehaviorManager_CoroutineUpdate_c_Iterator1 * __this, MethodInfo * method)); DO_APP_FUNC(0x00A5F3F0, bool, BehaviorManager_CoroutineUpdate_c_Iterator1_MoveNext, (BehaviorManager_CoroutineUpdate_c_Iterator1 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, BehaviorManager_CoroutineUpdate_c_Iterator1_System_Collections_Generic_IEnumerator_object__get_Current, (BehaviorManager_CoroutineUpdate_c_Iterator1 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, BehaviorManager_CoroutineUpdate_c_Iterator1_System_Collections_IEnumerator_get_Current, (BehaviorManager_CoroutineUpdate_c_Iterator1 * __this, MethodInfo * method)); DO_APP_FUNC(0x00A5F4A0, void, BehaviorManager_CoroutineUpdate_c_Iterator1_Dispose, (BehaviorManager_CoroutineUpdate_c_Iterator1 * __this, MethodInfo * method)); DO_APP_FUNC(0x00A5F4B0, void, BehaviorManager_CoroutineUpdate_c_Iterator1_Reset, (BehaviorManager_CoroutineUpdate_c_Iterator1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBF3C8, BehaviorManager_CoroutineUpdate_c_Iterator1_Reset__MethodInfo); DO_APP_FUNC(0x00A5F500, void, BehaviorSource__ctor, (BehaviorSource * __this, MethodInfo * method)); DO_APP_FUNC(0x00A5F610, void, BehaviorSource__ctor_1, (BehaviorSource * __this, IBehavior * owner, MethodInfo * method)); DO_APP_FUNC(0x003CC980, int32_t, BehaviorSource_get_BehaviorID, (BehaviorSource * __this, MethodInfo * method)); @@ -106230,7 +118477,7 @@ DO_APP_FUNC(0x003C91B0, IBehavior *, BehaviorSource_get_Owner, (BehaviorSource * DO_APP_FUNC(0x0042F6D0, void, BehaviorSource_set_Owner, (BehaviorSource * __this, IBehavior * value, MethodInfo * method)); DO_APP_FUNC(0x0042F6D0, void, BehaviorSource_Initialize, (BehaviorSource * __this, IBehavior * owner, MethodInfo * method)); DO_APP_FUNC(0x00A5F7F0, void, BehaviorSource_Save, (BehaviorSource * __this, Task_1 * entryTask, Task_1 * rootTask, List_1_BehaviorDesigner_Runtime_Tasks_Task_ * detachedTasks, MethodInfo * method)); -DO_APP_FUNC(0x00A5F8F0, void, BehaviorSource_Load, (BehaviorSource * __this, Task_1 * entryTask, Task_1 * rootTask, List_1_BehaviorDesigner_Runtime_Tasks_Task_ * detachedTasks, MethodInfo * method)); +DO_APP_FUNC(0x00A5F8F0, void, BehaviorSource_Load, (BehaviorSource * __this, Task_1 * * entryTask, Task_1 * * rootTask, List_1_BehaviorDesigner_Runtime_Tasks_Task_ * * detachedTasks, MethodInfo * method)); DO_APP_FUNC(0x00A5FA10, bool, BehaviorSource_CheckForSerialization, (BehaviorSource * __this, bool force, BehaviorSource * behaviorSource, bool isPlaying, MethodInfo * method)); DO_APP_FUNC(0x00A5FB70, SharedVariable *, BehaviorSource_GetVariable, (BehaviorSource * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x00A5FD70, List_1_BehaviorDesigner_Runtime_SharedVariable_ *, BehaviorSource_GetAllVariables, (BehaviorSource * __this, MethodInfo * method)); @@ -106246,7 +118493,7 @@ DO_APP_FUNC(0x00A60C30, void, BinaryDeserialization_set_BigEndianEightByteArray, DO_APP_FUNC(0x00A60CF0, void, BinaryDeserialization_Load, (BehaviorSource * behaviorSource, MethodInfo * method)); DO_APP_FUNC(0x00A60D60, void, BinaryDeserialization_Load_1, (TaskSerializationData * taskData, BehaviorSource * behaviorSource, bool loadTasks, MethodInfo * method)); DO_APP_FUNC(0x00A621C0, void, BinaryDeserialization_Load_2, (GlobalVariables * globalVariables, String * version, MethodInfo * method)); -DO_APP_FUNC(0x00A62AB0, void, BinaryDeserialization_LoadTask, (TaskSerializationData * taskSerializationData, FieldSerializationData * fieldSerializationData, List_1_BehaviorDesigner_Runtime_Tasks_Task_ * taskList, BehaviorSource * behaviorSource, MethodInfo * method)); +DO_APP_FUNC(0x00A62AB0, void, BinaryDeserialization_LoadTask, (TaskSerializationData * taskSerializationData, FieldSerializationData * fieldSerializationData, List_1_BehaviorDesigner_Runtime_Tasks_Task_ * * taskList, BehaviorSource * * behaviorSource, MethodInfo * method)); DO_APP_FUNC(0x00A63F20, void, BinaryDeserialization_LoadNodeData, (FieldSerializationData * fieldSerializationData, Dictionary_2_System_Int32_System_Int32_ * fieldIndexMap, Task_1 * task, MethodInfo * method)); DO_APP_FUNC(0x00A64800, void, BinaryDeserialization_LoadFields, (FieldSerializationData * fieldSerializationData, Dictionary_2_System_Int32_System_Int32_ * fieldIndexMap, Object * obj, int32_t hashPrefix, IVariableSource * variableSource, MethodInfo * method)); DO_APP_FUNC(0x00A64D00, Object *, BinaryDeserialization_LoadField, (FieldSerializationData * fieldSerializationData, Dictionary_2_System_Int32_System_Int32_ * fieldIndexMap, Type * fieldType, String * fieldName, int32_t hashPrefix, IVariableSource * variableSource, Object * obj, FieldInfo_1 * fieldInfo, MethodInfo * method)); @@ -106297,7 +118544,7 @@ DO_APP_FUNC(0x00A6AB10, Task_1 *, ExternalBehavior_FindTaskWithName, (ExternalBe DO_APP_FUNC(0x00A6AB60, void, ExternalBehavior_CheckForSerialization, (ExternalBehavior * __this, MethodInfo * method)); DO_APP_FUNC(0x00A6ACA0, Task_1 *, ExternalBehavior_FindTaskWithName_1, (ExternalBehavior * __this, String * taskName, Task_1 * task, MethodInfo * method)); DO_APP_FUNC(0x00A6AE10, List_1_BehaviorDesigner_Runtime_Tasks_Task_ *, ExternalBehavior_FindTasksWithName, (ExternalBehavior * __this, String * taskName, MethodInfo * method)); -DO_APP_FUNC(0x00A6AED0, void, ExternalBehavior_FindTasksWithName_1, (ExternalBehavior * __this, String * taskName, Task_1 * task, List_1_BehaviorDesigner_Runtime_Tasks_Task_ * taskList, MethodInfo * method)); +DO_APP_FUNC(0x00A6AED0, void, ExternalBehavior_FindTasksWithName_1, (ExternalBehavior * __this, String * taskName, Task_1 * task, List_1_BehaviorDesigner_Runtime_Tasks_Task_ * * taskList, MethodInfo * method)); DO_APP_FUNC(0x00A4D550, int32_t, ExternalBehavior_BehaviorDesigner_Runtime_IBehavior_GetInstanceID, (ExternalBehavior * __this, MethodInfo * method)); DO_APP_FUNC(0x003BA2A0, void, GlobalVariables__ctor, (GlobalVariables * __this, MethodInfo * method)); DO_APP_FUNC(0x00A6B060, GlobalVariables *, GlobalVariables_get_Instance, (MethodInfo * method)); @@ -106323,7 +118570,7 @@ DO_APP_FUNC(0x00A6C010, void, JSONDeserialization_set_TaskIDs, (Dictionary_2_Beh DO_APP_FUNC(0x00A6C0C0, void, JSONDeserialization_Load, (TaskSerializationData * taskData, BehaviorSource * behaviorSource, bool loadTasks, MethodInfo * method)); DO_APP_FUNC(0x00A6D5B0, void, JSONDeserialization_Load_1, (String * serialization, GlobalVariables * globalVariables, String * version, MethodInfo * method)); DO_APP_FUNC(0x00A6D920, void, JSONDeserialization_DeserializeVariables, (IVariableSource * variableSource, Dictionary_2_System_String_System_Object_ * dict, List_1_UnityEngine_Object_ * unityObjects, MethodInfo * method)); -DO_APP_FUNC(0x00A6DD50, Task_1 *, JSONDeserialization_DeserializeTask, (BehaviorSource * behaviorSource, Dictionary_2_System_String_System_Object_ * dict, Dictionary_2_System_Int32_BehaviorDesigner_Runtime_Tasks_Task_ * IDtoTask, List_1_UnityEngine_Object_ * unityObjects, MethodInfo * method)); +DO_APP_FUNC(0x00A6DD50, Task_1 *, JSONDeserialization_DeserializeTask, (BehaviorSource * behaviorSource, Dictionary_2_System_String_System_Object_ * dict, Dictionary_2_System_Int32_BehaviorDesigner_Runtime_Tasks_Task_ * * IDtoTask, List_1_UnityEngine_Object_ * unityObjects, MethodInfo * method)); DO_APP_FUNC(0x00A6EE60, NodeData *, JSONDeserialization_DeserializeNodeData, (Dictionary_2_System_String_System_Object_ * dict, Task_1 * task, MethodInfo * method)); DO_APP_FUNC(0x00A6FA60, SharedVariable *, JSONDeserialization_DeserializeSharedVariable, (Dictionary_2_System_String_System_Object_ * dict, IVariableSource * variableSource, bool fromSource, List_1_UnityEngine_Object_ * unityObjects, MethodInfo * method)); DO_APP_FUNC(0x00A70B60, void, JSONDeserialization_DeserializeObject, (Task_1 * task, Object * obj, Dictionary_2_System_String_System_Object_ * dict, IVariableSource * variableSource, List_1_UnityEngine_Object_ * unityObjects, MethodInfo * method)); @@ -106341,7 +118588,7 @@ DO_APP_FUNC(0x00959BB0, LayerMask, JSONDeserialization_ValueToLayerMask, (int32_ DO_APP_FUNC(0x00A75510, AnimationCurve *, JSONDeserialization_ValueToAnimationCurve, (Dictionary_2_System_String_System_Object_ * value, MethodInfo * method)); DO_APP_FUNC(0x00A76160, Object_1 *, JSONDeserialization_IndexToUnityObject, (int32_t index, List_1_UnityEngine_Object_ * unityObjects, MethodInfo * method)); DO_APP_FUNC(0x00A76200, void, JSONDeserialization__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x00A76400, void, JSONDeserialization_TaskField__ctor, (JSONDeserialization_TaskField__Boxed * __this, Task_1 * t, FieldInfo_1 * f, MethodInfo * method)); +DO_APP_FUNC(0x00A76400, void, JSONDeserialization_TaskField__ctor, (JSONDeserialization_TaskField * __this, Task_1 * t, FieldInfo_1 * f, MethodInfo * method)); DO_APP_FUNC(0x00A764B0, Object *, MiniJSON_Deserialize, (String * json, MethodInfo * method)); DO_APP_FUNC(0x00A764C0, String *, MiniJSON_Serialize, (Object * obj, MethodInfo * method)); DO_APP_FUNC(0x00A765F0, void, MiniJSON_Parser__ctor, (MiniJSON_Parser * __this, String * jsonString, MethodInfo * method)); @@ -106462,14 +118709,16 @@ DO_APP_FUNC(0x003BB3D0, Object *, TaskCoroutine_RunCoroutine_c_Iterator0_System_ DO_APP_FUNC(0x003BB3D0, Object *, TaskCoroutine_RunCoroutine_c_Iterator0_System_Collections_IEnumerator_get_Current, (TaskCoroutine_RunCoroutine_c_Iterator0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00A5F4A0, void, TaskCoroutine_RunCoroutine_c_Iterator0_Dispose, (TaskCoroutine_RunCoroutine_c_Iterator0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00A7BEB0, void, TaskCoroutine_RunCoroutine_c_Iterator0_Reset, (TaskCoroutine_RunCoroutine_c_Iterator0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0A20, TaskCoroutine_RunCoroutine_c_Iterator0_Reset__MethodInfo); DO_APP_FUNC(0x003AE050, void, TaskUtility__ctor, (TaskUtility * __this, MethodInfo * method)); DO_APP_FUNC(0x00A7BF00, Object *, TaskUtility_CreateInstance, (Type * t, MethodInfo * method)); DO_APP_FUNC(0x00A7BFE0, FieldInfo_1__Array *, TaskUtility_GetAllFields, (Type * t, MethodInfo * method)); DO_APP_FUNC(0x00A7C2B0, FieldInfo_1__Array *, TaskUtility_GetPublicFields, (Type * t, MethodInfo * method)); DO_APP_FUNC(0x00A7C580, FieldInfo_1__Array *, TaskUtility_GetSerializableFields, (Type * t, MethodInfo * method)); DO_APP_FUNC(0x00A7C830, void, TaskUtility_GetSerializableFields_1, (Type * t, IList_1_System_Reflection_FieldInfo_ * fieldList, int32_t flags, MethodInfo * method)); -DO_APP_FUNC(0x00A7CB20, void, TaskUtility_GetFields, (Type * t, List_1_System_Reflection_FieldInfo_ * fieldList, int32_t flags, MethodInfo * method)); +DO_APP_FUNC(0x00A7CB20, void, TaskUtility_GetFields, (Type * t, List_1_System_Reflection_FieldInfo_ * * fieldList, int32_t flags, MethodInfo * method)); DO_APP_FUNC(0x00A7CDC0, Type *, TaskUtility_GetTypeWithinAssembly, (String * typeName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0990, TaskUtility_GetTypeWithinAssembly__MethodInfo); DO_APP_FUNC(0x00A7D2B0, bool, TaskUtility_CompareType, (Type * t, String * typeName, MethodInfo * method)); DO_APP_FUNC(0x00A7D370, bool, TaskUtility_HasAttribute, (FieldInfo_1 * field, Type * attribute, MethodInfo * method)); DO_APP_FUNC(0x00A7D610, void, TaskUtility__cctor, (MethodInfo * method)); @@ -106494,6 +118743,7 @@ DO_APP_FUNC(0x003BB3D0, Object *, VariableSynchronizer_CoroutineUpdate_c_Iterato DO_APP_FUNC(0x003BB3D0, Object *, VariableSynchronizer_CoroutineUpdate_c_Iterator0_System_Collections_IEnumerator_get_Current, (VariableSynchronizer_CoroutineUpdate_c_Iterator0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00A5F4A0, void, VariableSynchronizer_CoroutineUpdate_c_Iterator0_Dispose, (VariableSynchronizer_CoroutineUpdate_c_Iterator0 * __this, MethodInfo * method)); DO_APP_FUNC(0x00A7FC40, void, VariableSynchronizer_CoroutineUpdate_c_Iterator0_Reset, (VariableSynchronizer_CoroutineUpdate_c_Iterator0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC07F8, VariableSynchronizer_CoroutineUpdate_c_Iterator0_Reset__MethodInfo); DO_APP_FUNC(0x007159B0, void, Action_1__ctor, (Action_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x007159B0, void, Composite__ctor, (Composite * __this, MethodInfo * method)); DO_APP_FUNC(0x007209F0, AbortType__Enum, Composite_get_AbortType, (Composite * __this, MethodInfo * method)); @@ -106560,7 +118810,7 @@ DO_APP_FUNC(0x003AE050, void, Task_1_OnAnimatorIK, (Task_1 * __this, MethodInfo DO_APP_FUNC(0x003BCBE0, void, Task_1_set_GameObject, (Task_1 * __this, GameObject * value, MethodInfo * method)); DO_APP_FUNC(0x003AE960, void, Task_1_set_Transform, (Task_1 * __this, Transform * value, MethodInfo * method)); DO_APP_FUNC(0x00A80790, Component *, Task_1_GetComponent, (Task_1 * __this, Type * type, MethodInfo * method)); -DO_APP_FUNC(0x00A80800, void, Task_1_TryGetComponent, (Task_1 * __this, Type * type, Component * component, MethodInfo * method)); +DO_APP_FUNC(0x00A80800, void, Task_1_TryGetComponent, (Task_1 * __this, Type * type, Component * * component, MethodInfo * method)); DO_APP_FUNC(0x00A809A0, GameObject *, Task_1_GetDefaultGameObject, (Task_1 * __this, GameObject * go, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, NodeData *, Task_1_get_NodeData, (Task_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCDE0, void, Task_1_set_NodeData, (Task_1 * __this, NodeData * value, MethodInfo * method)); @@ -106716,8 +118966,8 @@ DO_APP_FUNC(0x02C3AE80, Animator *, AnimationTrack_GetBinding, (AnimationTrack * DO_APP_FUNC(0x02C3B350, AnimationLayerMixerPlayable, AnimationTrack_CreateGroupMixer, (PlayableGraph graph, GameObject * go, int32_t inputCount, MethodInfo * method)); DO_APP_FUNC(0x02C3B470, Playable, AnimationTrack_CreateInfiniteTrackPlayable, (AnimationTrack * __this, PlayableGraph graph, GameObject * go, IntervalTree_1_RuntimeElement_ * tree, AppliedOffsetMode__Enum mode, MethodInfo * method)); DO_APP_FUNC(0x02C3BA10, Playable, AnimationTrack_ApplyTrackOffset, (AnimationTrack * __this, PlayableGraph graph, Playable root, GameObject * go, AppliedOffsetMode__Enum mode, MethodInfo * method)); -DO_APP_FUNC(0x02C3BCD0, void, AnimationTrack_GetEvaluationTime, (AnimationTrack * __this, double outStart, double outDuration, MethodInfo * method)); -DO_APP_FUNC(0x02C3BDA0, void, AnimationTrack_GetSequenceTime, (AnimationTrack * __this, double outStart, double outDuration, MethodInfo * method)); +DO_APP_FUNC(0x02C3BCD0, void, AnimationTrack_GetEvaluationTime, (AnimationTrack * __this, double * outStart, double * outDuration, MethodInfo * method)); +DO_APP_FUNC(0x02C3BDA0, void, AnimationTrack_GetSequenceTime, (AnimationTrack * __this, double * outStart, double * outDuration, MethodInfo * method)); DO_APP_FUNC(0x02C3BED0, void, AnimationTrack_AssignAnimationClip, (AnimationTrack * __this, TimelineClip * clip, AnimationClip * animClip, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CAACB8, AnimationTrack_AssignAnimationClip__MethodInfo); DO_APP_FUNC(0x003AE050, void, AnimationTrack_GatherProperties, (AnimationTrack * __this, PlayableDirector * director, IPropertyCollector * driver, MethodInfo * method)); @@ -106875,7 +119125,7 @@ DO_APP_FUNC(0x02C431C0, void, TimelineAsset_CreateMarkerTrack, (TimelineAsset * DO_APP_FUNC(0x02C433E0, void, TimelineAsset_Invalidate, (TimelineAsset * __this, MethodInfo * method)); DO_APP_FUNC(0x02C434E0, void, TimelineAsset_UpdateFixedDurationWithItemsDuration, (TimelineAsset * __this, MethodInfo * method)); DO_APP_FUNC(0x02C43590, DiscreteTime, TimelineAsset_CalculateItemsDuration, (TimelineAsset * __this, MethodInfo * method)); -DO_APP_FUNC(0x02C43810, void, TimelineAsset_AddSubTracksRecursive, (TrackAsset * track, List_1_UnityEngine_Timeline_TrackAsset_ * allTracks, MethodInfo * method)); +DO_APP_FUNC(0x02C43810, void, TimelineAsset_AddSubTracksRecursive, (TrackAsset * track, List_1_UnityEngine_Timeline_TrackAsset_ * * allTracks, MethodInfo * method)); DO_APP_FUNC(0x02C43B20, TrackAsset *, TimelineAsset_CreateTrack, (TimelineAsset * __this, Type * type, TrackAsset * parent, String * name, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CAA7D0, TimelineAsset_CreateTrack__MethodInfo); DO_APP_FUNC(0x02C44160, bool, TimelineAsset_DeleteClip, (TimelineAsset * __this, TimelineClip * clip, MethodInfo * method)); @@ -106990,8 +119240,8 @@ DO_APP_FUNC(0x02C4D0F0, void, TrackAsset_AddChild, (TrackAsset * __this, TrackAs DO_APP_FUNC(0x02C4D270, void, TrackAsset_MoveLastTrackBefore, (TrackAsset * __this, TrackAsset * asset, MethodInfo * method)); DO_APP_FUNC(0x02C4D690, bool, TrackAsset_RemoveSubTrack, (TrackAsset * __this, TrackAsset * child, MethodInfo * method)); DO_APP_FUNC(0x02C4D770, void, TrackAsset_RemoveClip, (TrackAsset * __this, TimelineClip * clip, MethodInfo * method)); -DO_APP_FUNC(0x02C4D830, void, TrackAsset_GetEvaluationTime, (TrackAsset * __this, double outStart, double outDuration, MethodInfo * method)); -DO_APP_FUNC(0x02C4DA70, void, TrackAsset_GetSequenceTime, (TrackAsset * __this, double outStart, double outDuration, MethodInfo * method)); +DO_APP_FUNC(0x02C4D830, void, TrackAsset_GetEvaluationTime, (TrackAsset * __this, double * outStart, double * outDuration, MethodInfo * method)); +DO_APP_FUNC(0x02C4DA70, void, TrackAsset_GetSequenceTime, (TrackAsset * __this, double * outStart, double * outDuration, MethodInfo * method)); DO_APP_FUNC(0x02C4DA90, void, TrackAsset_GatherProperties, (TrackAsset * __this, PlayableDirector * director, IPropertyCollector * driver, MethodInfo * method)); DO_APP_FUNC(0x02C4E250, GameObject *, TrackAsset_GetGameObjectBinding, (TrackAsset * __this, PlayableDirector * director, MethodInfo * method)); DO_APP_FUNC(0x02C4E5E0, bool, TrackAsset_ValidateClipType, (TrackAsset * __this, Type * clipType, MethodInfo * method)); @@ -107015,7 +119265,7 @@ DO_APP_FUNC(0x02C4FE20, bool, TrackAsset_CanCreateMixerRecursive, (TrackAsset * DO_APP_FUNC(0x02C4FFC0, void, TrackAsset__ctor, (TrackAsset * __this, MethodInfo * method)); DO_APP_FUNC(0x02C501A0, void, TrackAsset__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02C503D0, TrackAsset_TransientBuildData, TrackAsset_TransientBuildData_Create, (MethodInfo * method)); -DO_APP_FUNC(0x02C50760, void, TrackAsset_TransientBuildData_Clear, (TrackAsset_TransientBuildData__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02C50760, void, TrackAsset_TransientBuildData_Clear, (TrackAsset_TransientBuildData * __this, MethodInfo * method)); DO_APP_FUNC(0x02C37A30, void, TrackAsset_get_outputs_d_65__ctor, (TrackAsset_get_outputs_d_65 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TrackAsset_get_outputs_d_65_System_IDisposable_Dispose, (TrackAsset_get_outputs_d_65 * __this, MethodInfo * method)); DO_APP_FUNC(0x02C50840, bool, TrackAsset_get_outputs_d_65_MoveNext, (TrackAsset_get_outputs_d_65 * __this, MethodInfo * method)); @@ -107113,19 +119363,19 @@ DO_APP_FUNC(0x02C57E60, IEnumerator_1_UnityEngine_MonoBehaviour_ *, ControlPlaya DO_APP_FUNC(0x02C57E60, IEnumerator *, ControlPlayableAsset_GetControlableScripts_d_39_System_Collections_IEnumerable_GetEnumerator, (ControlPlayableAsset_GetControlableScripts_d_39 * __this, MethodInfo * method)); DO_APP_FUNC(0x02C57F50, void, ControlTrack__ctor, (ControlTrack * __this, MethodInfo * method)); DO_APP_FUNC(0x02C57FA0, double, DiscreteTime_get_tickValue, (MethodInfo * method)); -DO_APP_FUNC(0x00A9A2A0, void, DiscreteTime__ctor, (DiscreteTime__Boxed * __this, DiscreteTime time, MethodInfo * method)); -DO_APP_FUNC(0x00A9A2A0, void, DiscreteTime__ctor_1, (DiscreteTime__Boxed * __this, int64_t time, MethodInfo * method)); -DO_APP_FUNC(0x02C57FB0, void, DiscreteTime__ctor_2, (DiscreteTime__Boxed * __this, double time, MethodInfo * method)); -DO_APP_FUNC(0x02C58010, void, DiscreteTime__ctor_3, (DiscreteTime__Boxed * __this, float time, MethodInfo * method)); -DO_APP_FUNC(0x02C58070, void, DiscreteTime__ctor_4, (DiscreteTime__Boxed * __this, int32_t time, MethodInfo * method)); -DO_APP_FUNC(0x02C58110, void, DiscreteTime__ctor_5, (DiscreteTime__Boxed * __this, int32_t frame, double fps, MethodInfo * method)); -DO_APP_FUNC(0x02C58190, DiscreteTime, DiscreteTime_OneTickBefore, (DiscreteTime__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02C581A0, DiscreteTime, DiscreteTime_OneTickAfter, (DiscreteTime__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, int64_t, DiscreteTime_GetTick, (DiscreteTime__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9A2A0, void, DiscreteTime__ctor, (DiscreteTime * __this, DiscreteTime time, MethodInfo * method)); +DO_APP_FUNC(0x00A9A2A0, void, DiscreteTime__ctor_1, (DiscreteTime * __this, int64_t time, MethodInfo * method)); +DO_APP_FUNC(0x02C57FB0, void, DiscreteTime__ctor_2, (DiscreteTime * __this, double time, MethodInfo * method)); +DO_APP_FUNC(0x02C58010, void, DiscreteTime__ctor_3, (DiscreteTime * __this, float time, MethodInfo * method)); +DO_APP_FUNC(0x02C58070, void, DiscreteTime__ctor_4, (DiscreteTime * __this, int32_t time, MethodInfo * method)); +DO_APP_FUNC(0x02C58110, void, DiscreteTime__ctor_5, (DiscreteTime * __this, int32_t frame, double fps, MethodInfo * method)); +DO_APP_FUNC(0x02C58190, DiscreteTime, DiscreteTime_OneTickBefore, (DiscreteTime * __this, MethodInfo * method)); +DO_APP_FUNC(0x02C581A0, DiscreteTime, DiscreteTime_OneTickAfter, (DiscreteTime * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, int64_t, DiscreteTime_GetTick, (DiscreteTime * __this, MethodInfo * method)); DO_APP_FUNC(0x00A1B820, DiscreteTime, DiscreteTime_FromTicks, (int64_t ticks, MethodInfo * method)); -DO_APP_FUNC(0x02C581B0, int32_t, DiscreteTime_CompareTo, (DiscreteTime__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x00A9A720, bool, DiscreteTime_Equals, (DiscreteTime__Boxed * __this, DiscreteTime other, MethodInfo * method)); -DO_APP_FUNC(0x02C58260, bool, DiscreteTime_Equals_1, (DiscreteTime__Boxed * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02C581B0, int32_t, DiscreteTime_CompareTo, (DiscreteTime * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x00A9A720, bool, DiscreteTime_Equals, (DiscreteTime * __this, DiscreteTime other, MethodInfo * method)); +DO_APP_FUNC(0x02C58260, bool, DiscreteTime_Equals_1, (DiscreteTime * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x02C58300, int64_t, DiscreteTime_DoubleToDiscreteTime, (double time, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA9DA8, DiscreteTime_DoubleToDiscreteTime__MethodInfo); DO_APP_FUNC(0x02C58390, int64_t, DiscreteTime_FloatToDiscreteTime, (float time, MethodInfo * method)); @@ -107148,8 +119398,8 @@ DO_APP_FUNC(0x01BA78B0, bool, DiscreteTime_op_LessThanOrEqual, (DiscreteTime lhs DO_APP_FUNC(0x01BA78D0, bool, DiscreteTime_op_GreaterThanOrEqual, (DiscreteTime lhs, DiscreteTime rhs, MethodInfo * method)); DO_APP_FUNC(0x00EAA070, DiscreteTime, DiscreteTime_op_Addition, (DiscreteTime lhs, DiscreteTime rhs, MethodInfo * method)); DO_APP_FUNC(0x02C587A0, DiscreteTime, DiscreteTime_op_Subtraction, (DiscreteTime lhs, DiscreteTime rhs, MethodInfo * method)); -DO_APP_FUNC(0x02C587B0, String *, DiscreteTime_ToString, (DiscreteTime__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01B8B020, int32_t, DiscreteTime_GetHashCode, (DiscreteTime__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02C587B0, String *, DiscreteTime_ToString, (DiscreteTime * __this, MethodInfo * method)); +DO_APP_FUNC(0x01B8B020, int32_t, DiscreteTime_GetHashCode, (DiscreteTime * __this, MethodInfo * method)); DO_APP_FUNC(0x02C587C0, DiscreteTime, DiscreteTime_Min, (DiscreteTime lhs, DiscreteTime rhs, MethodInfo * method)); DO_APP_FUNC(0x02C58820, DiscreteTime, DiscreteTime_Max, (DiscreteTime lhs, DiscreteTime rhs, MethodInfo * method)); DO_APP_FUNC(0x02C58880, double, DiscreteTime_SnapToNearestTick, (double time, MethodInfo * method)); @@ -107199,24 +119449,24 @@ DO_APP_FUNC(0x02C59DC0, void, Marker_set_time, (Marker * __this, double value, M DO_APP_FUNC(0x02C59E50, void, Marker_UnityEngine_Timeline_IMarker_Initialize, (Marker * __this, TrackAsset * parentTrack, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Marker_OnInitialize, (Marker * __this, TrackAsset * aPent, MethodInfo * method)); DO_APP_FUNC(0x003BA2A0, void, Marker__ctor, (Marker * __this, MethodInfo * method)); -DO_APP_FUNC(0x02C5A020, List_1_UnityEngine_Timeline_IMarker_ *, MarkerList_get_markers, (MarkerList__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02C5A040, void, MarkerList__ctor, (MarkerList__Boxed * __this, int32_t capacity, MethodInfo * method)); -DO_APP_FUNC(0x02C5A1E0, void, MarkerList_Add, (MarkerList__Boxed * __this, ScriptableObject * item, MethodInfo * method)); -DO_APP_FUNC(0x02C5A310, bool, MarkerList_Remove, (MarkerList__Boxed * __this, IMarker * item, MethodInfo * method)); +DO_APP_FUNC(0x02C5A020, List_1_UnityEngine_Timeline_IMarker_ *, MarkerList_get_markers, (MarkerList * __this, MethodInfo * method)); +DO_APP_FUNC(0x02C5A040, void, MarkerList__ctor, (MarkerList * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC(0x02C5A1E0, void, MarkerList_Add, (MarkerList * __this, ScriptableObject * item, MethodInfo * method)); +DO_APP_FUNC(0x02C5A310, bool, MarkerList_Remove, (MarkerList * __this, IMarker * item, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA9D70, MarkerList_Remove__MethodInfo); -DO_APP_FUNC(0x02C5A490, bool, MarkerList_Remove_1, (MarkerList__Boxed * __this, ScriptableObject * item, TimelineAsset * timelineAsset, PlayableAsset * thingToDirty, MethodInfo * method)); -DO_APP_FUNC(0x02C5A580, void, MarkerList_Clear, (MarkerList__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02C5A5F0, bool, MarkerList_Contains, (MarkerList__Boxed * __this, ScriptableObject * item, MethodInfo * method)); -DO_APP_FUNC(0x02C5A020, IEnumerable_1_UnityEngine_Timeline_IMarker_ *, MarkerList_GetMarkers, (MarkerList__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02C5A690, int32_t, MarkerList_get_Count, (MarkerList__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02C5A6E0, IMarker *, MarkerList_get_Item, (MarkerList__Boxed * __this, int32_t idx, MethodInfo * method)); -DO_APP_FUNC(0x00471910, List_1_UnityEngine_ScriptableObject_ *, MarkerList_GetRawMarkerList, (MarkerList__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02C5A760, IMarker *, MarkerList_CreateMarker, (MarkerList__Boxed * __this, Type * type, double time, TrackAsset * owner, MethodInfo * method)); +DO_APP_FUNC(0x02C5A490, bool, MarkerList_Remove_1, (MarkerList * __this, ScriptableObject * item, TimelineAsset * timelineAsset, PlayableAsset * thingToDirty, MethodInfo * method)); +DO_APP_FUNC(0x02C5A580, void, MarkerList_Clear, (MarkerList * __this, MethodInfo * method)); +DO_APP_FUNC(0x02C5A5F0, bool, MarkerList_Contains, (MarkerList * __this, ScriptableObject * item, MethodInfo * method)); +DO_APP_FUNC(0x02C5A020, IEnumerable_1_UnityEngine_Timeline_IMarker_ *, MarkerList_GetMarkers, (MarkerList * __this, MethodInfo * method)); +DO_APP_FUNC(0x02C5A690, int32_t, MarkerList_get_Count, (MarkerList * __this, MethodInfo * method)); +DO_APP_FUNC(0x02C5A6E0, IMarker *, MarkerList_get_Item, (MarkerList * __this, int32_t idx, MethodInfo * method)); +DO_APP_FUNC(0x00471910, List_1_UnityEngine_ScriptableObject_ *, MarkerList_GetRawMarkerList, (MarkerList * __this, MethodInfo * method)); +DO_APP_FUNC(0x02C5A760, IMarker *, MarkerList_CreateMarker, (MarkerList * __this, Type * type, double time, TrackAsset * owner, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA9D18, MarkerList_CreateMarker__MethodInfo); -DO_APP_FUNC(0x02C5AA50, bool, MarkerList_HasNotifications, (MarkerList__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, MarkerList_UnityEngine_ISerializationCallbackReceiver_OnBeforeSerialize, (MarkerList__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD40, void, MarkerList_UnityEngine_ISerializationCallbackReceiver_OnAfterDeserialize, (MarkerList__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02C5AA70, void, MarkerList_BuildCache, (MarkerList__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02C5AA50, bool, MarkerList_HasNotifications, (MarkerList * __this, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, MarkerList_UnityEngine_ISerializationCallbackReceiver_OnBeforeSerialize, (MarkerList * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD40, void, MarkerList_UnityEngine_ISerializationCallbackReceiver_OnAfterDeserialize, (MarkerList * __this, MethodInfo * method)); +DO_APP_FUNC(0x02C5AA70, void, MarkerList_BuildCache, (MarkerList * __this, MethodInfo * method)); DO_APP_FUNC(0x02C5AE20, IEnumerable_1_UnityEngine_Playables_PlayableBinding_ *, MarkerTrack_get_outputs, (MarkerTrack * __this, MethodInfo * method)); DO_APP_FUNC(0x02C5B2D0, void, MarkerTrack__ctor, (MarkerTrack * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CustomSignalEventDrawer__ctor, (CustomSignalEventDrawer * __this, MethodInfo * method)); @@ -107254,7 +119504,7 @@ DO_APP_FUNC(0x02C5C820, SignalAsset *, SignalReceiver_GetSignalAssetAtIndex, (Si DO_APP_FUNC_METHODINFO(0x03CA9C20, SignalReceiver_GetSignalAssetAtIndex__MethodInfo); DO_APP_FUNC(0x003AE050, void, SignalReceiver_OnEnable, (SignalReceiver * __this, MethodInfo * method)); DO_APP_FUNC(0x02C5C910, void, SignalReceiver__ctor, (SignalReceiver * __this, MethodInfo * method)); -DO_APP_FUNC(0x02C5CB70, bool, SignalReceiver_EventKeyValue_TryGetValue, (SignalReceiver_EventKeyValue * __this, SignalAsset * key, UnityEvent * value, MethodInfo * method)); +DO_APP_FUNC(0x02C5CB70, bool, SignalReceiver_EventKeyValue_TryGetValue, (SignalReceiver_EventKeyValue * __this, SignalAsset * key, UnityEvent * * value, MethodInfo * method)); DO_APP_FUNC(0x02C5CD00, void, SignalReceiver_EventKeyValue_Append, (SignalReceiver_EventKeyValue * __this, SignalAsset * key, UnityEvent * value, MethodInfo * method)); DO_APP_FUNC(0x02C5CE20, void, SignalReceiver_EventKeyValue_Remove, (SignalReceiver_EventKeyValue * __this, int32_t idx, MethodInfo * method)); DO_APP_FUNC(0x02C5CEB0, void, SignalReceiver_EventKeyValue_Remove_1, (SignalReceiver_EventKeyValue * __this, SignalAsset * key, MethodInfo * method)); @@ -107335,12 +119585,12 @@ DO_APP_FUNC(0x02C63430, void, TimeNotificationBehaviour_SortNotifications, (Time DO_APP_FUNC(0x02C63770, bool, TimeNotificationBehaviour_CanRestoreNotification, (TimeNotificationBehaviour_NotificationEntry e, FrameData info, double currentTime, double previousTime, MethodInfo * method)); DO_APP_FUNC(0x02C637B0, void, TimeNotificationBehaviour_TriggerNotificationsInRange, (TimeNotificationBehaviour * __this, double start, double end, FrameData info, Playable playable, bool checkState, MethodInfo * method)); DO_APP_FUNC(0x02C63A40, void, TimeNotificationBehaviour_SyncDurationWithExternalSource, (TimeNotificationBehaviour * __this, Playable playable, MethodInfo * method)); -DO_APP_FUNC(0x02C63CF0, void, TimeNotificationBehaviour_Trigger_internal, (Playable playable, PlayableOutput output, TimeNotificationBehaviour_NotificationEntry e, MethodInfo * method)); -DO_APP_FUNC(0x018E1310, void, TimeNotificationBehaviour_Restore_internal, (TimeNotificationBehaviour_NotificationEntry e, MethodInfo * method)); +DO_APP_FUNC(0x02C63CF0, void, TimeNotificationBehaviour_Trigger_internal, (Playable playable, PlayableOutput output, TimeNotificationBehaviour_NotificationEntry * e, MethodInfo * method)); +DO_APP_FUNC(0x018E1310, void, TimeNotificationBehaviour_Restore_internal, (TimeNotificationBehaviour_NotificationEntry * e, MethodInfo * method)); DO_APP_FUNC(0x02C63E70, void, TimeNotificationBehaviour__ctor, (TimeNotificationBehaviour * __this, MethodInfo * method)); -DO_APP_FUNC(0x02C63FF0, bool, TimeNotificationBehaviour_NotificationEntry_get_triggerInEditor, (TimeNotificationBehaviour_NotificationEntry__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02C64000, bool, TimeNotificationBehaviour_NotificationEntry_get_prewarm, (TimeNotificationBehaviour_NotificationEntry__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02C64010, bool, TimeNotificationBehaviour_NotificationEntry_get_triggerOnce, (TimeNotificationBehaviour_NotificationEntry__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02C63FF0, bool, TimeNotificationBehaviour_NotificationEntry_get_triggerInEditor, (TimeNotificationBehaviour_NotificationEntry * __this, MethodInfo * method)); +DO_APP_FUNC(0x02C64000, bool, TimeNotificationBehaviour_NotificationEntry_get_prewarm, (TimeNotificationBehaviour_NotificationEntry * __this, MethodInfo * method)); +DO_APP_FUNC(0x02C64010, bool, TimeNotificationBehaviour_NotificationEntry_get_triggerOnce, (TimeNotificationBehaviour_NotificationEntry * __this, MethodInfo * method)); DO_APP_FUNC(0x02C64020, void, TimeNotificationBehaviour_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TimeNotificationBehaviour_c__ctor, (TimeNotificationBehaviour_c * __this, MethodInfo * method)); DO_APP_FUNC(0x02C640D0, int32_t, TimeNotificationBehaviour_c__SortNotifications_b__12_0, (TimeNotificationBehaviour_c * __this, TimeNotificationBehaviour_NotificationEntry x, TimeNotificationBehaviour_NotificationEntry y, MethodInfo * method)); @@ -107433,7 +119683,7 @@ DO_APP_FUNC(0x02C6C300, double, TimeUtility_1_GetAnimationClipLength, (Animation DO_APP_FUNC(0x02C6C530, String *, TimeUtility_1_RemoveChar, (String * str, Func_2_Char_Boolean_ * charToRemoveFunc, MethodInfo * method)); DO_APP_FUNC(0x02C6C600, FrameRate, TimeUtility_1_GetClosestFrameRate, (double frameRate, MethodInfo * method)); DO_APP_FUNC(0x02C6C870, FrameRate, TimeUtility_1_ToFrameRate, (StandardFrameRates__Enum enumValue, MethodInfo * method)); -DO_APP_FUNC(0x02C6CA60, bool, TimeUtility_1_ToStandardFrameRate, (FrameRate rate, StandardFrameRates__Enum standard, MethodInfo * method)); +DO_APP_FUNC(0x02C6CA60, bool, TimeUtility_1_ToStandardFrameRate, (FrameRate rate, StandardFrameRates__Enum * standard, MethodInfo * method)); DO_APP_FUNC(0x02C6CED0, void, TimeUtility_1__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02C6CF70, void, TimeUtility_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TimeUtility_c__ctor, (TimeUtility_c * __this, MethodInfo * method)); @@ -107494,17 +119744,17 @@ DO_APP_FUNC(0x02D76710, int32_t, Event_1_GetHashCode, (Event_1 * __this, MethodI DO_APP_FUNC(0x02D76850, bool, Event_1_Equals, (Event_1 * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x02D769F0, String *, Event_1_ToString, (Event_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02D774D0, void, Event_1_Use, (Event_1 * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D77710, void, Event_1_get_mousePosition_Injected, (Event_1 * __this, Vector2 ret, MethodInfo * method)); -DO_APP_FUNC(0x02D77770, void, Event_1_set_mousePosition_Injected, (Event_1 * __this, Vector2 value, MethodInfo * method)); -DO_APP_FUNC(0x02D777D0, void, Event_1_get_delta_Injected, (Event_1 * __this, Vector2 ret, MethodInfo * method)); -DO_APP_FUNC(0x02D77830, void, Event_1_set_delta_Injected, (Event_1 * __this, Vector2 value, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, EventInterests_get_wantsMouseMove, (EventInterests__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C3C200, void, EventInterests_set_wantsMouseMove, (EventInterests__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x01819930, bool, EventInterests_get_wantsMouseEnterLeaveWindow, (EventInterests__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC7BF0, void, EventInterests_set_wantsMouseEnterLeaveWindow, (EventInterests__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x01C045C0, bool, EventInterests_get_wantsLessLayoutEvents, (EventInterests__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D77890, bool, EventInterests_WantsEvent, (EventInterests__Boxed * __this, EventType__Enum type, MethodInfo * method)); -DO_APP_FUNC(0x02D778B0, bool, EventInterests_WantsLayoutPass, (EventInterests__Boxed * __this, EventType__Enum type, MethodInfo * method)); +DO_APP_FUNC(0x02D77710, void, Event_1_get_mousePosition_Injected, (Event_1 * __this, Vector2 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D77770, void, Event_1_set_mousePosition_Injected, (Event_1 * __this, Vector2 * value, MethodInfo * method)); +DO_APP_FUNC(0x02D777D0, void, Event_1_get_delta_Injected, (Event_1 * __this, Vector2 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D77830, void, Event_1_set_delta_Injected, (Event_1 * __this, Vector2 * value, MethodInfo * method)); +DO_APP_FUNC(0x00C173D0, bool, EventInterests_get_wantsMouseMove, (EventInterests * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C3C200, void, EventInterests_set_wantsMouseMove, (EventInterests * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x01819930, bool, EventInterests_get_wantsMouseEnterLeaveWindow, (EventInterests * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC7BF0, void, EventInterests_set_wantsMouseEnterLeaveWindow, (EventInterests * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x01C045C0, bool, EventInterests_get_wantsLessLayoutEvents, (EventInterests * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D77890, bool, EventInterests_WantsEvent, (EventInterests * __this, EventType__Enum type, MethodInfo * method)); +DO_APP_FUNC(0x02D778B0, bool, EventInterests_WantsLayoutPass, (EventInterests * __this, EventType__Enum type, MethodInfo * method)); DO_APP_FUNC(0x02D77970, Color, GUI_get_color, (MethodInfo * method)); DO_APP_FUNC(0x02D77A00, void, GUI_set_color, (Color value, MethodInfo * method)); DO_APP_FUNC(0x02D77A90, Color, GUI_get_backgroundColor, (MethodInfo * method)); @@ -107548,7 +119798,7 @@ DO_APP_FUNC(0x02D797B0, void, GUI_DrawTexture_5, (Rect position, Texture * image DO_APP_FUNC(0x02D79A10, void, GUI_DrawTexture_6, (Rect position, Texture * image, ScaleMode__Enum scaleMode, bool alphaBlend, float imageAspect, Color color, Vector4 borderWidths, Vector4 borderRadiuses, MethodInfo * method)); DO_APP_FUNC(0x02D79BA0, void, GUI_DrawTexture_7, (Rect position, Texture * image, ScaleMode__Enum scaleMode, bool alphaBlend, float imageAspect, Color color, Vector4 borderWidths, Vector4 borderRadiuses, bool drawSmoothCorners, MethodInfo * method)); DO_APP_FUNC(0x02D79D00, void, GUI_DrawTexture_8, (Rect position, Texture * image, ScaleMode__Enum scaleMode, bool alphaBlend, float imageAspect, Color leftColor, Color topColor, Color rightColor, Color bottomColor, Vector4 borderWidths, Vector4 borderRadiuses, bool drawSmoothCorners, MethodInfo * method)); -DO_APP_FUNC(0x02D7A620, bool, GUI_CalculateScaledTextureRects, (Rect position, ScaleMode__Enum scaleMode, float imageAspect, Rect outScreenRect, Rect outSourceRect, MethodInfo * method)); +DO_APP_FUNC(0x02D7A620, bool, GUI_CalculateScaledTextureRects, (Rect position, ScaleMode__Enum scaleMode, float imageAspect, Rect * outScreenRect, Rect * outSourceRect, MethodInfo * method)); DO_APP_FUNC(0x02D7A7D0, void, GUI_Box, (Rect position, String * text, MethodInfo * method)); DO_APP_FUNC(0x02D7A890, void, GUI_Box_1, (Rect position, GUIContent * content, MethodInfo * method)); DO_APP_FUNC(0x02D7A920, void, GUI_Box_2, (Rect position, GUIContent * content, GUIStyle * style, MethodInfo * method)); @@ -107579,13 +119829,13 @@ DO_APP_FUNC(0x02D7F0B0, void, GUI_EndScrollView, (bool handleScrollWheel, Method DO_APP_FUNC(0x02D80370, Rect, GUI_Window, (int32_t id, Rect clientRect, GUI_WindowFunction * func, GUIContent * title, GUIStyle * style, MethodInfo * method)); DO_APP_FUNC(0x02D80570, Rect, GUI_DoWindow, (int32_t id, Rect clientRect, GUI_WindowFunction * func, GUIContent * title, GUIStyle * style, GUISkin * skin, bool forceRectOnLayout, MethodInfo * method)); DO_APP_FUNC(0x02D806F0, void, GUI_CallWindowDelegate, (GUI_WindowFunction * func, int32_t id, int32_t instanceID, GUISkin * _skin, int32_t forceRect, float width, float height, GUIStyle * style, MethodInfo * method)); -DO_APP_FUNC(0x02D80B40, void, GUI_get_color_Injected, (Color ret, MethodInfo * method)); -DO_APP_FUNC(0x02D80B90, void, GUI_set_color_Injected, (Color value, MethodInfo * method)); -DO_APP_FUNC(0x02D80BE0, void, GUI_get_backgroundColor_Injected, (Color ret, MethodInfo * method)); -DO_APP_FUNC(0x02D80C30, void, GUI_set_backgroundColor_Injected, (Color value, MethodInfo * method)); -DO_APP_FUNC(0x02D80C80, void, GUI_get_contentColor_Injected, (Color ret, MethodInfo * method)); -DO_APP_FUNC(0x02D80CD0, void, GUI_set_contentColor_Injected, (Color value, MethodInfo * method)); -DO_APP_FUNC(0x02D80D20, void, GUI_Internal_DoWindow_Injected, (int32_t id, int32_t instanceID, Rect clientRect, GUI_WindowFunction * func, GUIContent * title, GUIStyle * style, Object * skin, bool forceRectOnLayout, Rect ret, MethodInfo * method)); +DO_APP_FUNC(0x02D80B40, void, GUI_get_color_Injected, (Color * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D80B90, void, GUI_set_color_Injected, (Color * value, MethodInfo * method)); +DO_APP_FUNC(0x02D80BE0, void, GUI_get_backgroundColor_Injected, (Color * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D80C30, void, GUI_set_backgroundColor_Injected, (Color * value, MethodInfo * method)); +DO_APP_FUNC(0x02D80C80, void, GUI_get_contentColor_Injected, (Color * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D80CD0, void, GUI_set_contentColor_Injected, (Color * value, MethodInfo * method)); +DO_APP_FUNC(0x02D80D20, void, GUI_Internal_DoWindow_Injected, (int32_t id, int32_t instanceID, Rect * clientRect, GUI_WindowFunction * func, GUIContent * title, GUIStyle * style, Object * skin, bool forceRectOnLayout, Rect * ret, MethodInfo * method)); DO_APP_FUNC(0x003EE520, void, GUI_WindowFunction__ctor, (GUI_WindowFunction * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EE650, void, GUI_WindowFunction_Invoke, (GUI_WindowFunction * __this, int32_t id, MethodInfo * method)); DO_APP_FUNC(0x02D80DB0, Rect, GUIClip_get_visibleRect, (MethodInfo * method)); @@ -107603,15 +119853,15 @@ DO_APP_FUNC(0x02D81240, void, GUIClip_Push, (Rect screenRect, Vector2 scrollOffs DO_APP_FUNC(0x02D80E90, void, GUIClip_Pop, (MethodInfo * method)); DO_APP_FUNC(0x02D812C0, Vector2, GUIClip_Unclip, (Vector2 pos, MethodInfo * method)); DO_APP_FUNC(0x02D81330, Vector2, GUIClip_ClipToWindow, (Vector2 absolutePos, MethodInfo * method)); -DO_APP_FUNC(0x02D813A0, void, GUIClip_get_visibleRect_Injected, (Rect ret, MethodInfo * method)); -DO_APP_FUNC(0x02D813F0, void, GUIClip_Internal_Push_Injected, (Rect screenRect, Vector2 scrollOffset, Vector2 renderOffset, bool resetOffset, MethodInfo * method)); -DO_APP_FUNC(0x02D81470, void, GUIClip_Unclip_Vector2_Injected, (Vector2 pos, Vector2 ret, MethodInfo * method)); -DO_APP_FUNC(0x02D814D0, void, GUIClip_ClipToWindow_Vector2_Injected, (Vector2 absolutePos, Vector2 ret, MethodInfo * method)); -DO_APP_FUNC(0x02D81530, void, GUIClip_GetMatrix_Injected, (Matrix4x4 ret, MethodInfo * method)); -DO_APP_FUNC(0x02D81580, void, GUIClip_SetMatrix_Injected, (Matrix4x4 m, MethodInfo * method)); -DO_APP_FUNC(0x02D815D0, void, GUIClip_Internal_PushParentClip_Injected, (Matrix4x4 renderTransform, Matrix4x4 inputTransform, Rect clipRect, MethodInfo * method)); -DO_APP_FUNC(0x02D81640, void, GUIClip_ParentClipScope__ctor, (GUIClip_ParentClipScope__Boxed * __this, Matrix4x4 objectTransform, Rect clipRect, MethodInfo * method)); -DO_APP_FUNC(0x02D816F0, void, GUIClip_ParentClipScope_Dispose, (GUIClip_ParentClipScope__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D813A0, void, GUIClip_get_visibleRect_Injected, (Rect * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D813F0, void, GUIClip_Internal_Push_Injected, (Rect * screenRect, Vector2 * scrollOffset, Vector2 * renderOffset, bool resetOffset, MethodInfo * method)); +DO_APP_FUNC(0x02D81470, void, GUIClip_Unclip_Vector2_Injected, (Vector2 * pos, Vector2 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D814D0, void, GUIClip_ClipToWindow_Vector2_Injected, (Vector2 * absolutePos, Vector2 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D81530, void, GUIClip_GetMatrix_Injected, (Matrix4x4 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D81580, void, GUIClip_SetMatrix_Injected, (Matrix4x4 * m, MethodInfo * method)); +DO_APP_FUNC(0x02D815D0, void, GUIClip_Internal_PushParentClip_Injected, (Matrix4x4 * renderTransform, Matrix4x4 * inputTransform, Rect * clipRect, MethodInfo * method)); +DO_APP_FUNC(0x02D81640, void, GUIClip_ParentClipScope__ctor, (GUIClip_ParentClipScope * __this, Matrix4x4 objectTransform, Rect clipRect, MethodInfo * method)); +DO_APP_FUNC(0x02D816F0, void, GUIClip_ParentClipScope_Dispose, (GUIClip_ParentClipScope * __this, MethodInfo * method)); DO_APP_FUNC(0x015C0B20, String *, GUIContent_get_text, (GUIContent * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, GUIContent_set_text, (GUIContent * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x003AE960, void, GUIContent_set_image, (GUIContent * __this, Texture * value, MethodInfo * method)); @@ -107665,6 +119915,7 @@ DO_APP_FUNC(0x02D85430, GUILayoutOption *, GUILayout_ExpandWidth, (bool expand, DO_APP_FUNC(0x02D85500, GUILayoutOption *, GUILayout_ExpandHeight, (bool expand, MethodInfo * method)); DO_APP_FUNC(0x02D855D0, void, GUILayout_LayoutedWindow__ctor, (GUILayout_LayoutedWindow * __this, GUI_WindowFunction * f, Rect screenRect, GUIContent * content, GUILayoutOption__Array * options, GUIStyle * style, MethodInfo * method)); DO_APP_FUNC(0x02D856E0, void, GUILayout_LayoutedWindow_DoWindow, (GUILayout_LayoutedWindow * __this, int32_t windowID, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D14000, GUILayout_LayoutedWindow_DoWindow__MethodInfo); DO_APP_FUNC(0x006F0970, void, GUILayoutOption__ctor, (GUILayoutOption * __this, GUILayoutOption_Type__Enum type, Object * value, MethodInfo * method)); DO_APP_FUNC(0x02D85860, Rect, GUILayoutUtility_Internal_GetWindowRect, (int32_t windowID, MethodInfo * method)); DO_APP_FUNC(0x02D85900, void, GUILayoutUtility_Internal_MoveWindow, (int32_t windowID, Rect r, MethodInfo * method)); @@ -107680,9 +119931,12 @@ DO_APP_FUNC(0x02D87250, void, GUILayoutUtility_LayoutFromContainer, (float w, fl DO_APP_FUNC(0x02D87430, void, GUILayoutUtility_LayoutFreeGroup, (GUILayoutGroup * toplevel, MethodInfo * method)); DO_APP_FUNC(0x02D87910, void, GUILayoutUtility_LayoutSingleGroup, (GUILayoutGroup * i, MethodInfo * method)); DO_APP_FUNC(0x02D87BD0, GUILayoutGroup *, GUILayoutUtility_CreateGUILayoutGroupInstanceOfType, (Type * LayoutType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13F70, GUILayoutUtility_CreateGUILayoutGroupInstanceOfType__MethodInfo); DO_APP_FUNC(0x02D87D30, GUILayoutGroup *, GUILayoutUtility_BeginLayoutGroup, (GUIStyle * style, GUILayoutOption__Array * options, Type * layoutType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13EB0, GUILayoutUtility_BeginLayoutGroup__MethodInfo); DO_APP_FUNC(0x02D88130, void, GUILayoutUtility_EndLayoutGroup, (MethodInfo * method)); DO_APP_FUNC(0x02D88510, GUILayoutGroup *, GUILayoutUtility_BeginLayoutArea, (GUIStyle * style, Type * layoutType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13EE0, GUILayoutUtility_BeginLayoutArea__MethodInfo); DO_APP_FUNC(0x02D88860, Rect, GUILayoutUtility_GetRect, (GUIContent * content, GUIStyle * style, GUILayoutOption__Array * options, MethodInfo * method)); DO_APP_FUNC(0x02D88900, Rect, GUILayoutUtility_DoGetRect, (GUIContent * content, GUIStyle * style, GUILayoutOption__Array * options, MethodInfo * method)); DO_APP_FUNC(0x02D88EF0, Rect, GUILayoutUtility_GetRect_1, (float width, float height, MethodInfo * method)); @@ -107692,8 +119946,8 @@ DO_APP_FUNC(0x02D89140, Rect, GUILayoutUtility_DoGetRect_1, (float minWidth, flo DO_APP_FUNC(0x02D893A0, Rect, GUILayoutUtility_GetLastRect, (MethodInfo * method)); DO_APP_FUNC(0x02D894F0, GUIStyle *, GUILayoutUtility_get_spaceStyle, (MethodInfo * method)); DO_APP_FUNC(0x02D896A0, void, GUILayoutUtility__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02D89920, void, GUILayoutUtility_Internal_GetWindowRect_Injected, (int32_t windowID, Rect ret, MethodInfo * method)); -DO_APP_FUNC(0x02D89980, void, GUILayoutUtility_Internal_MoveWindow_Injected, (int32_t windowID, Rect r, MethodInfo * method)); +DO_APP_FUNC(0x02D89920, void, GUILayoutUtility_Internal_GetWindowRect_Injected, (int32_t windowID, Rect * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D89980, void, GUILayoutUtility_Internal_MoveWindow_Injected, (int32_t windowID, Rect * r, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, GUILayoutUtility_LayoutCache_set_id, (GUILayoutUtility_LayoutCache * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x02D899E0, void, GUILayoutUtility_LayoutCache__ctor, (GUILayoutUtility_LayoutCache * __this, int32_t instanceID, MethodInfo * method)); DO_APP_FUNC(0x02D89BF0, void, GUILayoutUtility_LayoutCache_ResetCursor, (GUILayoutUtility_LayoutCache * __this, MethodInfo * method)); @@ -107771,8 +120025,8 @@ DO_APP_FUNC(0x02D8D4A0, void, GUIStyleState__ctor, (GUIStyleState * __this, Meth DO_APP_FUNC(0x02CEE8F0, void, GUIStyleState__ctor_1, (GUIStyleState * __this, GUIStyle * sourceStyle, void * source, MethodInfo * method)); DO_APP_FUNC(0x02D8D4F0, GUIStyleState *, GUIStyleState_GetGUIStyleState, (GUIStyle * sourceStyle, void * source, MethodInfo * method)); DO_APP_FUNC(0x02D8D5A0, void, GUIStyleState_Finalize, (GUIStyleState * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D8D660, void, GUIStyleState_get_textColor_Injected, (GUIStyleState * __this, Color ret, MethodInfo * method)); -DO_APP_FUNC(0x02D8D6C0, void, GUIStyleState_set_textColor_Injected, (GUIStyleState * __this, Color value, MethodInfo * method)); +DO_APP_FUNC(0x02D8D660, void, GUIStyleState_get_textColor_Injected, (GUIStyleState * __this, Color * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D8D6C0, void, GUIStyleState_set_textColor_Injected, (GUIStyleState * __this, Color * value, MethodInfo * method)); DO_APP_FUNC(0x02D8D720, String *, GUIStyle_get_rawName, (GUIStyle * __this, MethodInfo * method)); DO_APP_FUNC(0x02D8D770, void, GUIStyle_set_rawName, (GUIStyle * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x02D8D7D0, Font *, GUIStyle_get_font, (GUIStyle * __this, MethodInfo * method)); @@ -107843,20 +120097,20 @@ DO_APP_FUNC(0x02D8E540, Vector2, GUIStyle_CalcSize, (GUIStyle * __this, GUIConte DO_APP_FUNC(0x02D8E5B0, Vector2, GUIStyle_CalcSizeWithConstraints, (GUIStyle * __this, GUIContent * content, Vector2 constraints, MethodInfo * method)); DO_APP_FUNC(0x02D8E630, float, GUIStyle_CalcHeight, (GUIStyle * __this, GUIContent * content, float width, MethodInfo * method)); DO_APP_FUNC(0x02D8FCA0, bool, GUIStyle_get_isHeightDependantOnWidth, (GUIStyle * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D8FDA0, void, GUIStyle_CalcMinMaxWidth, (GUIStyle * __this, GUIContent * content, float minWidth, float maxWidth, MethodInfo * method)); +DO_APP_FUNC(0x02D8FDA0, void, GUIStyle_CalcMinMaxWidth, (GUIStyle * __this, GUIContent * content, float * minWidth, float * maxWidth, MethodInfo * method)); DO_APP_FUNC(0x02D8FE40, String *, GUIStyle_ToString, (GUIStyle * __this, MethodInfo * method)); DO_APP_FUNC(0x02D8FF00, void, GUIStyle__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02D8FF40, void, GUIStyle_get_contentOffset_Injected, (GUIStyle * __this, Vector2 ret, MethodInfo * method)); -DO_APP_FUNC(0x02D8FFA0, void, GUIStyle_set_contentOffset_Injected, (GUIStyle * __this, Vector2 value, MethodInfo * method)); -DO_APP_FUNC(0x02D90000, void, GUIStyle_Internal_Draw_Injected, (GUIStyle * __this, Rect screenRect, GUIContent * content, bool isHover, bool isActive, bool on, bool hasKeyboardFocus, MethodInfo * method)); -DO_APP_FUNC(0x02D900B0, void, GUIStyle_Internal_Draw2_Injected, (GUIStyle * __this, Rect position, GUIContent * content, int32_t controlID, bool on, MethodInfo * method)); -DO_APP_FUNC(0x02D90140, void, GUIStyle_Internal_GetCursorPixelPosition_Injected, (GUIStyle * __this, Rect position, GUIContent * content, int32_t cursorStringIndex, Vector2 ret, MethodInfo * method)); -DO_APP_FUNC(0x02D901D0, int32_t, GUIStyle_Internal_GetCursorStringIndex_Injected, (GUIStyle * __this, Rect position, GUIContent * content, Vector2 cursorPixelPosition, MethodInfo * method)); -DO_APP_FUNC(0x02D90250, String *, GUIStyle_Internal_GetSelectedRenderedText_Injected, (GUIStyle * __this, Rect localPosition, GUIContent * mContent, int32_t selectIndex, int32_t cursorIndex, MethodInfo * method)); -DO_APP_FUNC(0x02D902E0, void, GUIStyle_Internal_CalcSize_Injected, (GUIStyle * __this, GUIContent * content, Vector2 ret, MethodInfo * method)); -DO_APP_FUNC(0x02D90350, void, GUIStyle_Internal_CalcSizeWithConstraints_Injected, (GUIStyle * __this, GUIContent * content, Vector2 maxSize, Vector2 ret, MethodInfo * method)); -DO_APP_FUNC(0x02D903D0, void, GUIStyle_Internal_CalcMinMaxWidth_Injected, (GUIStyle * __this, GUIContent * content, Vector2 ret, MethodInfo * method)); -DO_APP_FUNC(0x02D90440, void, GUIStyle_SetMouseTooltip_Injected, (String * tooltip, Rect screenRect, MethodInfo * method)); +DO_APP_FUNC(0x02D8FF40, void, GUIStyle_get_contentOffset_Injected, (GUIStyle * __this, Vector2 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D8FFA0, void, GUIStyle_set_contentOffset_Injected, (GUIStyle * __this, Vector2 * value, MethodInfo * method)); +DO_APP_FUNC(0x02D90000, void, GUIStyle_Internal_Draw_Injected, (GUIStyle * __this, Rect * screenRect, GUIContent * content, bool isHover, bool isActive, bool on, bool hasKeyboardFocus, MethodInfo * method)); +DO_APP_FUNC(0x02D900B0, void, GUIStyle_Internal_Draw2_Injected, (GUIStyle * __this, Rect * position, GUIContent * content, int32_t controlID, bool on, MethodInfo * method)); +DO_APP_FUNC(0x02D90140, void, GUIStyle_Internal_GetCursorPixelPosition_Injected, (GUIStyle * __this, Rect * position, GUIContent * content, int32_t cursorStringIndex, Vector2 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D901D0, int32_t, GUIStyle_Internal_GetCursorStringIndex_Injected, (GUIStyle * __this, Rect * position, GUIContent * content, Vector2 * cursorPixelPosition, MethodInfo * method)); +DO_APP_FUNC(0x02D90250, String *, GUIStyle_Internal_GetSelectedRenderedText_Injected, (GUIStyle * __this, Rect * localPosition, GUIContent * mContent, int32_t selectIndex, int32_t cursorIndex, MethodInfo * method)); +DO_APP_FUNC(0x02D902E0, void, GUIStyle_Internal_CalcSize_Injected, (GUIStyle * __this, GUIContent * content, Vector2 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D90350, void, GUIStyle_Internal_CalcSizeWithConstraints_Injected, (GUIStyle * __this, GUIContent * content, Vector2 * maxSize, Vector2 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D903D0, void, GUIStyle_Internal_CalcMinMaxWidth_Injected, (GUIStyle * __this, GUIContent * content, Vector2 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02D90440, void, GUIStyle_SetMouseTooltip_Injected, (String * tooltip, Rect * screenRect, MethodInfo * method)); DO_APP_FUNC(0x02D904A0, int32_t, GUITargetAttribute_GetGUITargetAttrValue, (Type * klass, String * methodName, MethodInfo * method)); DO_APP_FUNC(0x02D906C0, float, GUIUtility_get_pixelsPerPoint, (MethodInfo * method)); DO_APP_FUNC(0x02D90710, int32_t, GUIUtility_get_guiDepth, (MethodInfo * method)); @@ -107896,8 +120150,9 @@ DO_APP_FUNC(0x02D90CE0, int32_t, GUIUtility_get_keyboardControl, (MethodInfo * m DO_APP_FUNC(0x02D90D80, void, GUIUtility_set_keyboardControl, (int32_t value, MethodInfo * method)); DO_APP_FUNC(0x02D91290, bool, GUIUtility_HasKeyFocus, (int32_t controlID, MethodInfo * method)); DO_APP_FUNC(0x02D91350, void, GUIUtility_ExitGUI, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13BC8, GUIUtility_ExitGUI__MethodInfo); DO_APP_FUNC(0x02D913A0, GUISkin *, GUIUtility_GetDefaultSkin, (MethodInfo * method)); -DO_APP_FUNC(0x02D91450, void, GUIUtility_ProcessEvent, (int32_t instanceID, void * nativeEventPtr, bool result, MethodInfo * method)); +DO_APP_FUNC(0x02D91450, void, GUIUtility_ProcessEvent, (int32_t instanceID, void * nativeEventPtr, bool * result, MethodInfo * method)); DO_APP_FUNC(0x02D914D0, void, GUIUtility_EndContainer, (MethodInfo * method)); DO_APP_FUNC(0x02D91560, void, GUIUtility_BeginGUI, (int32_t skinMode, int32_t instanceID, int32_t useGUILayout, MethodInfo * method)); DO_APP_FUNC(0x02D91610, void, GUIUtility_EndGUI, (int32_t layoutType, MethodInfo * method)); @@ -107907,15 +120162,16 @@ DO_APP_FUNC(0x02D91910, void, GUIUtility_ResetGlobalState, (MethodInfo * method) DO_APP_FUNC(0x02D91A70, bool, GUIUtility_IsExitGUIException, (Exception * exception, MethodInfo * method)); DO_APP_FUNC(0x02D91A70, bool, GUIUtility_ShouldRethrowException, (Exception * exception, MethodInfo * method)); DO_APP_FUNC(0x02D91B00, void, GUIUtility_CheckOnGUI, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13BF0, GUIUtility_CheckOnGUI__MethodInfo); DO_APP_FUNC(0x02D91BB0, float, GUIUtility_RoundToPixelGrid, (float v, MethodInfo * method)); DO_APP_FUNC(0x02D91C60, Vector2, GUIUtility_ScreenToGUIPoint, (Vector2 screenPoint, MethodInfo * method)); DO_APP_FUNC(0x02D91D20, void, GUIUtility_RotateAroundPivot, (float angle, Vector2 pivotPoint, MethodInfo * method)); DO_APP_FUNC(0x02D922D0, bool, GUIUtility_HitTest, (Rect rect, Vector2 point, int32_t offset, MethodInfo * method)); DO_APP_FUNC(0x02D92350, bool, GUIUtility_HitTest_1, (Rect rect, Vector2 point, bool isDirectManipulationDevice, MethodInfo * method)); DO_APP_FUNC(0x02D923B0, bool, GUIUtility_HitTest_2, (Rect rect, Event_1 * evt, MethodInfo * method)); -DO_APP_FUNC(0x02D924B0, int32_t, GUIUtility_Internal_GetControlID_Injected, (int32_t hint, FocusType__Enum focusType, Rect rect, MethodInfo * method)); -DO_APP_FUNC(0x02D92520, void, GUIUtility_set_compositionCursorPos_Injected, (Vector2 value, MethodInfo * method)); -DO_APP_FUNC(0x02D92570, void, GUIUtility_InternalScreenToWindowPoint_Injected, (Vector2 screenPoint, Vector2 ret, MethodInfo * method)); +DO_APP_FUNC(0x02D924B0, int32_t, GUIUtility_Internal_GetControlID_Injected, (int32_t hint, FocusType__Enum focusType, Rect * rect, MethodInfo * method)); +DO_APP_FUNC(0x02D92520, void, GUIUtility_set_compositionCursorPos_Injected, (Vector2 * value, MethodInfo * method)); +DO_APP_FUNC(0x02D92570, void, GUIUtility_InternalScreenToWindowPoint_Injected, (Vector2 * screenPoint, Vector2 * ret, MethodInfo * method)); DO_APP_FUNC(0x02D925D0, void, ExitGUIException__ctor, (ExitGUIException * __this, MethodInfo * method)); DO_APP_FUNC(0x02D92660, void, ExitGUIException__ctor_1, (ExitGUIException * __this, String * message, MethodInfo * method)); DO_APP_FUNC(0x01813E90, GUIStyle *, GUILayoutEntry_get_style, (GUILayoutEntry * __this, MethodInfo * method)); @@ -107948,6 +120204,7 @@ DO_APP_FUNC(0x02D93EC0, void, GUILayoutGroup_ApplyOptions, (GUILayoutGroup * __t DO_APP_FUNC(0x02D93FD0, void, GUILayoutGroup_ApplyStyleSettings, (GUILayoutGroup * __this, GUIStyle * style, MethodInfo * method)); DO_APP_FUNC(0x02D94140, void, GUILayoutGroup_ResetCursor, (GUILayoutGroup * __this, MethodInfo * method)); DO_APP_FUNC(0x02D94150, GUILayoutEntry *, GUILayoutGroup_GetNext, (GUILayoutGroup * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13A68, GUILayoutGroup_GetNext__MethodInfo); DO_APP_FUNC(0x02D94520, Rect, GUILayoutGroup_GetLast, (GUILayoutGroup * __this, MethodInfo * method)); DO_APP_FUNC(0x02D94A40, void, GUILayoutGroup_Add, (GUILayoutGroup * __this, GUILayoutEntry * e, MethodInfo * method)); DO_APP_FUNC(0x02D94AE0, void, GUILayoutGroup_CalcWidth, (GUILayoutGroup * __this, MethodInfo * method)); @@ -107969,34 +120226,34 @@ DO_APP_FUNC(0x02D982A0, void *, ObjectGUIState_Internal_Create, (MethodInfo * me DO_APP_FUNC(0x02D982F0, void, ObjectGUIState_Internal_Destroy, (void * ptr, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ScrollViewState__ctor, (ScrollViewState * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SliderState__ctor, (SliderState * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D98340, void, SliderHandler__ctor, (SliderHandler__Boxed * __this, Rect position, float currentValue, float size, float start, float end, GUIStyle * slider, GUIStyle * thumb, bool horiz, int32_t id, GUIStyle * thumbExtent, MethodInfo * method)); -DO_APP_FUNC(0x02D98490, float, SliderHandler_Handle, (SliderHandler__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D98520, float, SliderHandler_OnMouseDown, (SliderHandler__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D98AB0, float, SliderHandler_OnMouseDrag, (SliderHandler__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D98C70, float, SliderHandler_OnMouseUp, (SliderHandler__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D98D50, float, SliderHandler_OnRepaint, (SliderHandler__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D99320, EventType__Enum, SliderHandler_CurrentEventType, (SliderHandler__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D993C0, int32_t, SliderHandler_CurrentScrollTroughSide, (SliderHandler__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D994C0, bool, SliderHandler_IsEmptySlider, (SliderHandler__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D994E0, bool, SliderHandler_SupportsPageMovements, (SliderHandler__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D99590, float, SliderHandler_PageMovementValue, (SliderHandler__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D99640, float, SliderHandler_PageUpMovementBound, (SliderHandler__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D74890, Event_1 *, SliderHandler_CurrentEvent, (SliderHandler__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D996E0, float, SliderHandler_ValueForCurrentMousePosition, (SliderHandler__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D997C0, float, SliderHandler_Clamp, (SliderHandler__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02D997F0, Rect, SliderHandler_ThumbSelectionRect, (SliderHandler__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D99840, void, SliderHandler_StartDraggingWithValue, (SliderHandler__Boxed * __this, float dragStartValue, MethodInfo * method)); -DO_APP_FUNC(0x02D998A0, SliderState *, SliderHandler_SliderState, (SliderHandler__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D99970, Rect, SliderHandler_ThumbExtRect, (SliderHandler__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D99AF0, Rect, SliderHandler_ThumbRect, (SliderHandler__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D99B40, Rect, SliderHandler_VerticalThumbRect, (SliderHandler__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D99E20, Rect, SliderHandler_HorizontalThumbRect, (SliderHandler__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D9A100, float, SliderHandler_ClampedCurrentValue, (SliderHandler__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D9A130, float, SliderHandler_MousePosition, (SliderHandler__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D9A200, float, SliderHandler_ValuesPerPixel, (SliderHandler__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D9A340, float, SliderHandler_ThumbSize, (SliderHandler__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D9A5A0, float, SliderHandler_MaxValue, (SliderHandler__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D9A5C0, float, SliderHandler_MinValue, (SliderHandler__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D98340, void, SliderHandler__ctor, (SliderHandler * __this, Rect position, float currentValue, float size, float start, float end, GUIStyle * slider, GUIStyle * thumb, bool horiz, int32_t id, GUIStyle * thumbExtent, MethodInfo * method)); +DO_APP_FUNC(0x02D98490, float, SliderHandler_Handle, (SliderHandler * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D98520, float, SliderHandler_OnMouseDown, (SliderHandler * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D98AB0, float, SliderHandler_OnMouseDrag, (SliderHandler * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D98C70, float, SliderHandler_OnMouseUp, (SliderHandler * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D98D50, float, SliderHandler_OnRepaint, (SliderHandler * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D99320, EventType__Enum, SliderHandler_CurrentEventType, (SliderHandler * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D993C0, int32_t, SliderHandler_CurrentScrollTroughSide, (SliderHandler * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D994C0, bool, SliderHandler_IsEmptySlider, (SliderHandler * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D994E0, bool, SliderHandler_SupportsPageMovements, (SliderHandler * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D99590, float, SliderHandler_PageMovementValue, (SliderHandler * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D99640, float, SliderHandler_PageUpMovementBound, (SliderHandler * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D74890, Event_1 *, SliderHandler_CurrentEvent, (SliderHandler * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D996E0, float, SliderHandler_ValueForCurrentMousePosition, (SliderHandler * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D997C0, float, SliderHandler_Clamp, (SliderHandler * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02D997F0, Rect, SliderHandler_ThumbSelectionRect, (SliderHandler * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D99840, void, SliderHandler_StartDraggingWithValue, (SliderHandler * __this, float dragStartValue, MethodInfo * method)); +DO_APP_FUNC(0x02D998A0, SliderState *, SliderHandler_SliderState, (SliderHandler * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D99970, Rect, SliderHandler_ThumbExtRect, (SliderHandler * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D99AF0, Rect, SliderHandler_ThumbRect, (SliderHandler * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D99B40, Rect, SliderHandler_VerticalThumbRect, (SliderHandler * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D99E20, Rect, SliderHandler_HorizontalThumbRect, (SliderHandler * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D9A100, float, SliderHandler_ClampedCurrentValue, (SliderHandler * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D9A130, float, SliderHandler_MousePosition, (SliderHandler * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D9A200, float, SliderHandler_ValuesPerPixel, (SliderHandler * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D9A340, float, SliderHandler_ThumbSize, (SliderHandler * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D9A5A0, float, SliderHandler_MaxValue, (SliderHandler * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D9A5C0, float, SliderHandler_MinValue, (SliderHandler * __this, MethodInfo * method)); DO_APP_FUNC(0x00A474B0, String *, TextEditor_get_text, (TextEditor * __this, MethodInfo * method)); DO_APP_FUNC(0x02D9A5D0, void, TextEditor_set_text, (TextEditor * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x02D9A6A0, Rect, TextEditor_get_position, (TextEditor * __this, MethodInfo * method)); @@ -108088,8 +120345,8 @@ DO_APP_FUNC(0x025BE9E0, void, TextEditor_DetectFocusChange, (TextEditor * __this DO_APP_FUNC(0x02DA15F0, void, TextEditor_OnDetectFocusChange, (TextEditor * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TextEditor_OnCursorIndexChange, (TextEditor * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TextEditor_OnSelectIndexChange, (TextEditor * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DA16F0, void, TextEditor_ClampTextIndex, (TextEditor * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x02DA1730, void, TextEditor_EnsureValidCodePointIndex, (TextEditor * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x02DA16F0, void, TextEditor_ClampTextIndex, (TextEditor * __this, int32_t * index, MethodInfo * method)); +DO_APP_FUNC(0x02DA1730, void, TextEditor_EnsureValidCodePointIndex, (TextEditor * __this, int32_t * index, MethodInfo * method)); DO_APP_FUNC(0x02DA1830, bool, TextEditor_IsValidCodePointIndex, (TextEditor * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x02DA1900, int32_t, TextEditor_PreviousCodePointIndex, (TextEditor * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x02DA19E0, int32_t, TextEditor_NextCodePointIndex, (TextEditor * __this, int32_t index, MethodInfo * method)); @@ -108115,14 +120372,21 @@ DO_APP_FUNC(0x01EA19A0, void, ConnectionHandler_OnDisable, (ConnectionHandler * DO_APP_FUNC(0x01EA1AD0, void, ConnectionHandler_StartFallbackSendAckThread, (ConnectionHandler * __this, MethodInfo * method)); DO_APP_FUNC(0x01EA1BA0, void, ConnectionHandler_StopFallbackSendAckThread, (ConnectionHandler * __this, MethodInfo * method)); DO_APP_FUNC(0x01EA1C10, bool, ConnectionHandler_RealtimeFallbackThread, (ConnectionHandler * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5D68, ConnectionHandler_RealtimeFallbackThread__MethodInfo); DO_APP_FUNC(0x01EA1DD0, void, ConnectionHandler__ctor, (ConnectionHandler * __this, MethodInfo * method)); DO_APP_FUNC(0x01EA1EB0, void, CustomTypesUnity_Register, (MethodInfo * method)); DO_APP_FUNC(0x01EA2180, int16_t, CustomTypesUnity_SerializeVector3, (StreamBuffer * outStream, Object * customobject, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5D40, CustomTypesUnity_SerializeVector3__MethodInfo); DO_APP_FUNC(0x01EA2470, Object *, CustomTypesUnity_DeserializeVector3, (StreamBuffer * inStream, int16_t length, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5D48, CustomTypesUnity_DeserializeVector3__MethodInfo); DO_APP_FUNC(0x01EA2770, int16_t, CustomTypesUnity_SerializeVector2, (StreamBuffer * outStream, Object * customobject, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5D38, CustomTypesUnity_SerializeVector2__MethodInfo); DO_APP_FUNC(0x01EA2A60, Object *, CustomTypesUnity_DeserializeVector2, (StreamBuffer * inStream, int16_t length, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5D60, CustomTypesUnity_DeserializeVector2__MethodInfo); DO_APP_FUNC(0x01EA2D30, int16_t, CustomTypesUnity_SerializeQuaternion, (StreamBuffer * outStream, Object * customobject, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5D50, CustomTypesUnity_SerializeQuaternion__MethodInfo); DO_APP_FUNC(0x01EA3040, Object *, CustomTypesUnity_DeserializeQuaternion, (StreamBuffer * inStream, int16_t length, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5D58, CustomTypesUnity_DeserializeQuaternion__MethodInfo); DO_APP_FUNC(0x01EA3390, void, CustomTypesUnity__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01EA3550, void, Extensions_Merge, (IDictionary * target, IDictionary * addHash, MethodInfo * method)); DO_APP_FUNC(0x01EA38B0, void, Extensions_MergeStringKeys, (IDictionary * target, IDictionary * addHash, MethodInfo * method)); @@ -108212,6 +120476,7 @@ DO_APP_FUNC(0x0059DF90, void, LoadBalancingClient_set_CurrentCluster, (LoadBalan DO_APP_FUNC(0x01EA5920, void, LoadBalancingClient__ctor, (LoadBalancingClient * __this, ConnectionProtocol__Enum protocol, MethodInfo * method)); DO_APP_FUNC(0x01EA6680, void, LoadBalancingClient__ctor_1, (LoadBalancingClient * __this, String * masterAddress, String * appId, String * gameVersion, ConnectionProtocol__Enum protocol, MethodInfo * method)); DO_APP_FUNC(0x01EA67C0, String *, LoadBalancingClient_GetNameServerAddress, (LoadBalancingClient * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5C08, LoadBalancingClient_GetNameServerAddress__MethodInfo); DO_APP_FUNC(0x01EA6AC0, bool, LoadBalancingClient_ConnectUsingSettings, (LoadBalancingClient * __this, AppSettings * appSettings, MethodInfo * method)); DO_APP_FUNC(0x01BDC630, bool, LoadBalancingClient_Connect, (LoadBalancingClient * __this, MethodInfo * method)); DO_APP_FUNC(0x01EA6F50, bool, LoadBalancingClient_ConnectToMasterServer, (LoadBalancingClient * __this, MethodInfo * method)); @@ -108253,6 +120518,7 @@ DO_APP_FUNC(0x01EAB670, void, LoadBalancingClient_UpdatedActorList, (LoadBalanci DO_APP_FUNC(0x01EAB7A0, Player_1 *, LoadBalancingClient_CreatePlayer, (LoadBalancingClient * __this, String * actorName, int32_t actorNumber, bool isLocal, Hashtable_1 * actorProperties, MethodInfo * method)); DO_APP_FUNC(0x01EAB840, Room *, LoadBalancingClient_CreateRoom, (LoadBalancingClient * __this, String * roomName, RoomOptions * opt, MethodInfo * method)); DO_APP_FUNC(0x01EABA10, bool, LoadBalancingClient_CheckIfOpAllowedOnServer, (LoadBalancingClient * __this, uint8_t opCode, ServerConnection__Enum serverConnection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5A20, LoadBalancingClient_CheckIfOpAllowedOnServer__MethodInfo); DO_APP_FUNC(0x01EABB70, bool, LoadBalancingClient_CheckIfOpCanBeSent, (LoadBalancingClient * __this, uint8_t opCode, ServerConnection__Enum serverConnection, String * opName, MethodInfo * method)); DO_APP_FUNC(0x01EAC1D0, bool, LoadBalancingClient_CheckIfClientIsReadyToCallOperation, (LoadBalancingClient * __this, uint8_t opCode, MethodInfo * method)); DO_APP_FUNC(0x01EAC320, void, LoadBalancingClient_DebugReturn, (LoadBalancingClient * __this, DebugLevel__Enum level, String * message, MethodInfo * method)); @@ -108262,9 +120528,12 @@ DO_APP_FUNC(0x01EADF20, void, LoadBalancingClient_OnStatusChanged, (LoadBalancin DO_APP_FUNC(0x01EAEB00, void, LoadBalancingClient_OnEvent, (LoadBalancingClient * __this, EventData * photonEvent, MethodInfo * method)); DO_APP_FUNC(0x01EAFB40, void, LoadBalancingClient_OnMessage, (LoadBalancingClient * __this, Object * message, MethodInfo * method)); DO_APP_FUNC(0x01EAFBF0, void, LoadBalancingClient_OnDisconnectMessageReceived, (LoadBalancingClient * __this, DisconnectMessage * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5CC8, LoadBalancingClient_OnDisconnectMessageReceived__MethodInfo); DO_APP_FUNC(0x01EAFD80, void, LoadBalancingClient_OnRegionPingCompleted, (LoadBalancingClient * __this, RegionHandler * regionHandler, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5930, LoadBalancingClient_OnRegionPingCompleted__MethodInfo); DO_APP_FUNC(0x01EAFE20, String *, LoadBalancingClient_ReplacePortWithAlternative, (String * address, uint16_t replacementPort, MethodInfo * method)); DO_APP_FUNC(0x01EB0010, void, LoadBalancingClient_SetupEncryption, (LoadBalancingClient * __this, Dictionary_2_System_Byte_System_Object_ * encryptionData, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE58E0, LoadBalancingClient_SetupEncryption__MethodInfo); DO_APP_FUNC(0x01EB02F0, bool, LoadBalancingClient_OpWebRpc, (LoadBalancingClient * __this, String * uriPath, Object * parameters, bool sendAuthCookie, MethodInfo * method)); DO_APP_FUNC(0x01EB0550, void, LoadBalancingClient_AddCallbackTarget, (LoadBalancingClient * __this, Object * target, MethodInfo * method)); DO_APP_FUNC(0x01EB0630, void, LoadBalancingClient_RemoveCallbackTarget, (LoadBalancingClient * __this, Object * target, MethodInfo * method)); @@ -108309,6 +120578,7 @@ DO_APP_FUNC(0x01EB42C0, void, LoadBalancingPeer_set_PingImplementation, (Type * DO_APP_FUNC(0x01EB4360, void, LoadBalancingPeer__ctor, (LoadBalancingPeer * __this, ConnectionProtocol__Enum protocolType, MethodInfo * method)); DO_APP_FUNC(0x01EB46C0, void, LoadBalancingPeer__ctor_1, (LoadBalancingPeer * __this, IPhotonPeerListener * listener, ConnectionProtocol__Enum protocolType, MethodInfo * method)); DO_APP_FUNC(0x01EB4790, void, LoadBalancingPeer_ConfigUnitySockets, (LoadBalancingPeer * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE56A0, LoadBalancingPeer_ConfigUnitySockets__MethodInfo); DO_APP_FUNC(0x01EB4960, bool, LoadBalancingPeer_OpGetRegions, (LoadBalancingPeer * __this, String * appId, MethodInfo * method)); DO_APP_FUNC(0x01EB4AA0, bool, LoadBalancingPeer_OpJoinLobby, (LoadBalancingPeer * __this, TypedLobby * lobby, MethodInfo * method)); DO_APP_FUNC(0x01EB4CA0, bool, LoadBalancingPeer_OpLeaveLobby, (LoadBalancingPeer * __this, MethodInfo * method)); @@ -108327,13 +120597,16 @@ DO_APP_FUNC(0x01EB6E20, bool, LoadBalancingPeer_OpSetCustomPropertiesOfRoom, (Lo DO_APP_FUNC(0x01EB6EA0, bool, LoadBalancingPeer_OpSetPropertiesOfRoom, (LoadBalancingPeer * __this, Hashtable_1 * gameProperties, Hashtable_1 * expectedProperties, WebFlags * webflags, MethodInfo * method)); DO_APP_FUNC(0x01EB71A0, bool, LoadBalancingPeer_OpAuthenticate, (LoadBalancingPeer * __this, String * appId, String * appVersion, AuthenticationValues * authValues, String * regionCode, bool getLobbyStatistics, MethodInfo * method)); DO_APP_FUNC(0x01EB75A0, bool, LoadBalancingPeer_OpAuthenticateOnce, (LoadBalancingPeer * __this, String * appId, String * appVersion, AuthenticationValues * authValues, String * regionCode, EncryptionMode__Enum encryptionMode, ConnectionProtocol__Enum expectedProtocol, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE55C0, LoadBalancingPeer_OpAuthenticateOnce__MethodInfo); DO_APP_FUNC(0x01EB7CE0, bool, LoadBalancingPeer_OpChangeGroups, (LoadBalancingPeer * __this, Byte__Array * groupsToRemove, Byte__Array * groupsToAdd, MethodInfo * method)); DO_APP_FUNC(0x01EB7EB0, bool, LoadBalancingPeer_OpRaiseEvent, (LoadBalancingPeer * __this, uint8_t eventCode, Object * customEventContent, RaiseEventOptions * raiseEventOptions, SendOptions sendOptions, MethodInfo * method)); DO_APP_FUNC(0x01EB82B0, bool, LoadBalancingPeer_OpSettings, (LoadBalancingPeer * __this, bool receiveLobbyStats, MethodInfo * method)); DO_APP_FUNC(0x01EB8490, void, LoadBalancingPeer_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, LoadBalancingPeer_c__ctor, (LoadBalancingPeer_c * __this, MethodInfo * method)); DO_APP_FUNC(0x01EB8540, ParameterDictionary *, LoadBalancingPeer_c___ctor_b__4_0, (LoadBalancingPeer_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5648, LoadBalancingPeer_c___ctor_b__4_0__MethodInfo); DO_APP_FUNC(0x01EB85A0, void, LoadBalancingPeer_c___ctor_b__4_1, (LoadBalancingPeer_c * __this, ParameterDictionary * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5650, LoadBalancingPeer_c___ctor_b__4_1__MethodInfo); DO_APP_FUNC(0x01EB85C0, int32_t, FindFriendsOptions_ToIntFlags, (FindFriendsOptions * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, FindFriendsOptions__ctor, (FindFriendsOptions * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, OpJoinRandomRoomParams__ctor, (OpJoinRandomRoomParams * __this, MethodInfo * method)); @@ -108389,8 +120662,11 @@ DO_APP_FUNC(0x01EB8D00, void, AuthenticationValues_AddAuthParameter, (Authentica DO_APP_FUNC(0x01EB8FB0, String *, AuthenticationValues_ToString, (AuthenticationValues * __this, MethodInfo * method)); DO_APP_FUNC(0x01EB9270, AuthenticationValues *, AuthenticationValues_CopyTo, (AuthenticationValues * __this, AuthenticationValues * copy, MethodInfo * method)); DO_APP_FUNC(0x01EB93A0, bool, PhotonPing_StartPing, (PhotonPing * __this, String * ip, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE54E8, PhotonPing_StartPing__MethodInfo); DO_APP_FUNC(0x01EB93F0, bool, PhotonPing_Done, (PhotonPing * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE54D0, PhotonPing_Done__MethodInfo); DO_APP_FUNC(0x01EB9440, void, PhotonPing_Dispose, (PhotonPing * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE54D8, PhotonPing_Dispose__MethodInfo); DO_APP_FUNC(0x01EB9490, void, PhotonPing_Init, (PhotonPing * __this, MethodInfo * method)); DO_APP_FUNC(0x01EB9520, void, PhotonPing__ctor, (PhotonPing * __this, MethodInfo * method)); DO_APP_FUNC(0x01EB9670, void, PhotonPing__cctor, (MethodInfo * method)); @@ -108454,13 +120730,17 @@ DO_APP_FUNC(0x01EBC030, void, RegionHandler__ctor, (RegionHandler * __this, uint DO_APP_FUNC(0x01EBC120, bool, RegionHandler_PingMinimumOfRegions, (RegionHandler * __this, Action_1_Photon_Realtime_RegionHandler_ * onCompleteCallback, String * previousSummary, MethodInfo * method)); DO_APP_FUNC(0x01EBC890, void, RegionHandler_Abort, (RegionHandler * __this, MethodInfo * method)); DO_APP_FUNC(0x01EBCC70, void, RegionHandler_OnPreferredRegionPinged, (RegionHandler * __this, Region_1 * preferredRegion, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5418, RegionHandler_OnPreferredRegionPinged__MethodInfo); DO_APP_FUNC(0x01EBCCD0, bool, RegionHandler_PingEnabledRegions, (RegionHandler * __this, MethodInfo * method)); DO_APP_FUNC(0x01EBD110, void, RegionHandler_OnRegionDone, (RegionHandler * __this, Region_1 * region, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5348, RegionHandler_OnRegionDone__MethodInfo); DO_APP_FUNC(0x01EBD4E0, void, RegionHandler_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, RegionHandler_c__ctor, (RegionHandler_c * __this, MethodInfo * method)); DO_APP_FUNC(0x01EBD590, int32_t, RegionHandler_c__get_BestRegion_b__8_0, (RegionHandler_c * __this, Region_1 * a, Region_1 * b, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE54A0, RegionHandler_c__get_BestRegion_b__8_0__MethodInfo); DO_APP_FUNC(0x003AE050, void, RegionHandler_c_DisplayClass28_0__ctor, (RegionHandler_c_DisplayClass28_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x005F0640, bool, RegionHandler_c_DisplayClass28_0__PingMinimumOfRegions_b__0, (RegionHandler_c_DisplayClass28_0 * __this, Region_1 * r, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5408, RegionHandler_c_DisplayClass28_0__PingMinimumOfRegions_b__0__MethodInfo); DO_APP_FUNC(0x003CD410, bool, RegionPinger_get_Done, (RegionPinger * __this, MethodInfo * method)); DO_APP_FUNC(0x019BF330, void, RegionPinger_set_Done, (RegionPinger * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x01AA0780, bool, RegionPinger_get_Aborted, (RegionPinger * __this, MethodInfo * method)); @@ -108470,21 +120750,25 @@ DO_APP_FUNC(0x01EBD720, PhotonPing *, RegionPinger_GetPingImplementation, (Regio DO_APP_FUNC(0x01EBDA30, bool, RegionPinger_Start, (RegionPinger * __this, MethodInfo * method)); DO_APP_FUNC(0x01EBDDC0, void, RegionPinger_Abort, (RegionPinger * __this, MethodInfo * method)); DO_APP_FUNC(0x01EBDDF0, bool, RegionPinger_RegionPingThreaded, (RegionPinger * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5388, RegionPinger_RegionPingThreaded__MethodInfo); DO_APP_FUNC(0x01EBE160, IEnumerator *, RegionPinger_RegionPingCoroutine, (RegionPinger * __this, MethodInfo * method)); DO_APP_FUNC(0x01EBE200, String *, RegionPinger_GetResults, (RegionPinger * __this, MethodInfo * method)); DO_APP_FUNC(0x01EBE340, String *, RegionPinger_ResolveHost, (String * hostName, MethodInfo * method)); DO_APP_FUNC(0x01EBE580, void, RegionPinger__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01EBE5F0, void, RegionPinger__Start_b__19_0, (RegionPinger * __this, Object * o, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5378, RegionPinger__Start_b__19_0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, RegionPinger_RegionPingCoroutine_d_22__ctor, (RegionPinger_RegionPingCoroutine_d_22 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, RegionPinger_RegionPingCoroutine_d_22_System_IDisposable_Dispose, (RegionPinger_RegionPingCoroutine_d_22 * __this, MethodInfo * method)); DO_APP_FUNC(0x01EBE600, bool, RegionPinger_RegionPingCoroutine_d_22_MoveNext, (RegionPinger_RegionPingCoroutine_d_22 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, RegionPinger_RegionPingCoroutine_d_22_System_Collections_Generic_IEnumerator_System_Object__get_Current, (RegionPinger_RegionPingCoroutine_d_22 * __this, MethodInfo * method)); DO_APP_FUNC(0x01EBEDE0, void, RegionPinger_RegionPingCoroutine_d_22_System_Collections_IEnumerator_Reset, (RegionPinger_RegionPingCoroutine_d_22 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6358, RegionPinger_RegionPingCoroutine_d_22_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, RegionPinger_RegionPingCoroutine_d_22_System_Collections_IEnumerator_get_Current, (RegionPinger_RegionPingCoroutine_d_22 * __this, MethodInfo * method)); DO_APP_FUNC(0x01EBEE30, MonoBehaviourEmpty *, MonoBehaviourEmpty_BuildInstance, (String * id, MethodInfo * method)); DO_APP_FUNC(0x01EBEF40, void, MonoBehaviourEmpty_SelfDestroy, (MonoBehaviourEmpty * __this, MethodInfo * method)); DO_APP_FUNC(0x01EBEFE0, void, MonoBehaviourEmpty_Update, (MonoBehaviourEmpty * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCDE0, void, MonoBehaviourEmpty_CompleteOnMainThread, (MonoBehaviourEmpty * __this, RegionHandler * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5428, MonoBehaviourEmpty_CompleteOnMainThread__MethodInfo); DO_APP_FUNC(0x01EBF0E0, void, MonoBehaviourEmpty_StartCoroutineAndDestroy, (MonoBehaviourEmpty * __this, IEnumerator * coroutine, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, MonoBehaviourEmpty__ctor, (MonoBehaviourEmpty * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, MonoBehaviourEmpty_c_DisplayClass6_0__ctor, (MonoBehaviourEmpty_c_DisplayClass6_0 * __this, MethodInfo * method)); @@ -108494,6 +120778,7 @@ DO_APP_FUNC(0x003AE050, void, MonoBehaviourEmpty_c_DisplayClass6_0_StartCoroutin DO_APP_FUNC(0x01EBF330, bool, MonoBehaviourEmpty_c_DisplayClass6_0_StartCoroutineAndDestroy_g_Routine_0_d_MoveNext, (MonoBehaviourEmpty_c_DisplayClass6_0_StartCoroutineAndDestroy_g_Routine_0_d * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, MonoBehaviourEmpty_c_DisplayClass6_0_StartCoroutineAndDestroy_g_Routine_0_d_System_Collections_Generic_IEnumerator_System_Object__get_Current, (MonoBehaviourEmpty_c_DisplayClass6_0_StartCoroutineAndDestroy_g_Routine_0_d * __this, MethodInfo * method)); DO_APP_FUNC(0x01EBF3E0, void, MonoBehaviourEmpty_c_DisplayClass6_0_StartCoroutineAndDestroy_g_Routine_0_d_System_Collections_IEnumerator_Reset, (MonoBehaviourEmpty_c_DisplayClass6_0_StartCoroutineAndDestroy_g_Routine_0_d * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6398, MonoBehaviourEmpty_c_DisplayClass6_0_StartCoroutineAndDestroy_g_Routine_0_d_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, MonoBehaviourEmpty_c_DisplayClass6_0_StartCoroutineAndDestroy_g_Routine_0_d_System_Collections_IEnumerator_get_Current, (MonoBehaviourEmpty_c_DisplayClass6_0_StartCoroutineAndDestroy_g_Routine_0_d * __this, MethodInfo * method)); DO_APP_FUNC(0x003C91B0, LoadBalancingClient *, Room_get_LoadBalancingClient, (Room * __this, MethodInfo * method)); DO_APP_FUNC(0x0042F6D0, void, Room_set_LoadBalancingClient, (Room * __this, LoadBalancingClient * value, MethodInfo * method)); @@ -108691,13 +120976,13 @@ DO_APP_FUNC(0x02B69ED0, void, ResourceManager_1_Dispose, (ResourceManager_1 * __ DO_APP_FUNC(0x02B6A0A0, void, ResourceManager_1__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02B6A200, void, ResourceManager_1___ctor_b__53_0, (ResourceManager_1 * __this, IUpdateReceiver * x, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9E8C8, ResourceManager_1___ctor_b__53_0__MethodInfo); -DO_APP_FUNC(0x0171AEA0, AsyncOperationHandle, ResourceManager_DiagnosticEventContext_get_OperationHandle, (ResourceManager_DiagnosticEventContext__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC2E0, ResourceManager_DiagnosticEventType__Enum, ResourceManager_DiagnosticEventContext_get_Type, (ResourceManager_DiagnosticEventContext__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003CD440, int32_t, ResourceManager_DiagnosticEventContext_get_EventValue, (ResourceManager_DiagnosticEventContext__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3E0, IResourceLocation *, ResourceManager_DiagnosticEventContext_get_Location, (ResourceManager_DiagnosticEventContext__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3B0, Object *, ResourceManager_DiagnosticEventContext_get_Context, (ResourceManager_DiagnosticEventContext__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB330, String *, ResourceManager_DiagnosticEventContext_get_Error, (ResourceManager_DiagnosticEventContext__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B6A210, void, ResourceManager_DiagnosticEventContext__ctor, (ResourceManager_DiagnosticEventContext__Boxed * __this, AsyncOperationHandle op, ResourceManager_DiagnosticEventType__Enum type, int32_t eventValue, String * error, Object * context, MethodInfo * method)); +DO_APP_FUNC(0x0171AEA0, AsyncOperationHandle, ResourceManager_DiagnosticEventContext_get_OperationHandle, (ResourceManager_DiagnosticEventContext * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC2E0, ResourceManager_DiagnosticEventType__Enum, ResourceManager_DiagnosticEventContext_get_Type, (ResourceManager_DiagnosticEventContext * __this, MethodInfo * method)); +DO_APP_FUNC(0x003CD440, int32_t, ResourceManager_DiagnosticEventContext_get_EventValue, (ResourceManager_DiagnosticEventContext * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3E0, IResourceLocation *, ResourceManager_DiagnosticEventContext_get_Location, (ResourceManager_DiagnosticEventContext * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3B0, Object *, ResourceManager_DiagnosticEventContext_get_Context, (ResourceManager_DiagnosticEventContext * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB330, String *, ResourceManager_DiagnosticEventContext_get_Error, (ResourceManager_DiagnosticEventContext * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B6A210, void, ResourceManager_DiagnosticEventContext__ctor, (ResourceManager_DiagnosticEventContext * __this, AsyncOperationHandle op, ResourceManager_DiagnosticEventType__Enum type, int32_t eventValue, String * error, Object * context, MethodInfo * method)); DO_APP_FUNC(0x02B6A410, void, ResourceManager_InstanceOperation_Init, (ResourceManager_InstanceOperation * __this, ResourceManager_1 * rm, IInstanceProvider * instanceProvider, InstantiationParameters instantiationParams, AsyncOperationHandle_1_UnityEngine_GameObject_ dependency, MethodInfo * method)); DO_APP_FUNC(0x02B6A5D0, DownloadStatus, ResourceManager_InstanceOperation_GetDownloadStatus, (ResourceManager_InstanceOperation * __this, HashSet_1_System_Object_ * visited, MethodInfo * method)); DO_APP_FUNC(0x02B6A6D0, void, ResourceManager_InstanceOperation_GetDependencies, (ResourceManager_InstanceOperation * __this, List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * deps, MethodInfo * method)); @@ -108740,7 +121025,7 @@ DO_APP_FUNC(0x02B6C580, void, RemoteProviderException__ctor, (RemoteProviderExce DO_APP_FUNC(0x01B165D0, String *, RemoteProviderException_get_Message, (RemoteProviderException * __this, MethodInfo * method)); DO_APP_FUNC(0x0049E0C0, UnityWebRequestResult *, RemoteProviderException_get_WebRequestResult, (RemoteProviderException * __this, MethodInfo * method)); DO_APP_FUNC(0x02B6C670, String *, RemoteProviderException_ToString, (RemoteProviderException * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B6C940, LinkedListNode_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ *, DelayedActionManager_GetNode, (DelayedActionManager * __this, DelayedActionManager_DelegateInfo del, MethodInfo * method)); +DO_APP_FUNC(0x02B6C940, LinkedListNode_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ *, DelayedActionManager_GetNode, (DelayedActionManager * __this, DelayedActionManager_DelegateInfo * del, MethodInfo * method)); DO_APP_FUNC(0x02B6CB00, void, DelayedActionManager_Clear, (MethodInfo * method)); DO_APP_FUNC(0x02B6CB70, void, DelayedActionManager_DestroyWhenComplete, (DelayedActionManager * __this, MethodInfo * method)); DO_APP_FUNC(0x02B6CB80, void, DelayedActionManager_AddAction, (Delegate * action, float delay, Object__Array * parameters, MethodInfo * method)); @@ -108751,11 +121036,11 @@ DO_APP_FUNC(0x02B6D340, void, DelayedActionManager_LateUpdate, (DelayedActionMan DO_APP_FUNC(0x02B6D3A0, void, DelayedActionManager_InternalLateUpdate, (DelayedActionManager * __this, float t, MethodInfo * method)); DO_APP_FUNC(0x02B6D8C0, void, DelayedActionManager_OnApplicationQuit, (DelayedActionManager * __this, MethodInfo * method)); DO_APP_FUNC(0x02B6D9B0, void, DelayedActionManager__ctor, (DelayedActionManager * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B6DCB0, void, DelayedActionManager_DelegateInfo__ctor, (DelayedActionManager_DelegateInfo__Boxed * __this, Delegate * d, float invocationTime, Object__Array * p, MethodInfo * method)); -DO_APP_FUNC(0x003CB2A0, float, DelayedActionManager_DelegateInfo_get_InvocationTime, (DelayedActionManager_DelegateInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003CB2B0, void, DelayedActionManager_DelegateInfo_set_InvocationTime, (DelayedActionManager_DelegateInfo__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02B6DDE0, String *, DelayedActionManager_DelegateInfo_ToString, (DelayedActionManager_DelegateInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B6E360, void, DelayedActionManager_DelegateInfo_Invoke, (DelayedActionManager_DelegateInfo__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B6DCB0, void, DelayedActionManager_DelegateInfo__ctor, (DelayedActionManager_DelegateInfo * __this, Delegate * d, float invocationTime, Object__Array * p, MethodInfo * method)); +DO_APP_FUNC(0x003CB2A0, float, DelayedActionManager_DelegateInfo_get_InvocationTime, (DelayedActionManager_DelegateInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x003CB2B0, void, DelayedActionManager_DelegateInfo_set_InvocationTime, (DelayedActionManager_DelegateInfo * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02B6DDE0, String *, DelayedActionManager_DelegateInfo_ToString, (DelayedActionManager_DelegateInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B6E360, void, DelayedActionManager_DelegateInfo_Invoke, (DelayedActionManager_DelegateInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x02B6E4C0, void, LocationCacheKey__ctor, (LocationCacheKey * __this, IResourceLocation * location, Type * desiredType, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9E4A8, LocationCacheKey__ctor__MethodInfo); DO_APP_FUNC(0x02B6E680, int32_t, LocationCacheKey_GetHashCode, (LocationCacheKey * __this, MethodInfo * method)); @@ -108785,26 +121070,26 @@ DO_APP_FUNC(0x02B6F4A0, void, LRUCacheAllocationStrategy_ReleasePool, (LRUCacheA DO_APP_FUNC(0x02B6F510, Object *, LRUCacheAllocationStrategy_New, (LRUCacheAllocationStrategy * __this, Type * type, int32_t typeHash, MethodInfo * method)); DO_APP_FUNC(0x02B6F6C0, void, LRUCacheAllocationStrategy_Release, (LRUCacheAllocationStrategy * __this, int32_t typeHash, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SerializedTypeRestrictionAttribute__ctor, (SerializedTypeRestrictionAttribute * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, String *, SerializedType_get_AssemblyName, (SerializedType__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, String *, SerializedType_get_ClassName, (SerializedType__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B6F8E0, String *, SerializedType_ToString, (SerializedType__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B6F990, Type *, SerializedType_get_Value, (SerializedType__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B6FAE0, void, SerializedType_set_Value, (SerializedType__Boxed * __this, Type * value, MethodInfo * method)); -DO_APP_FUNC(0x003BCC40, bool, SerializedType_get_ValueChanged, (SerializedType__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCC50, void, SerializedType_set_ValueChanged, (SerializedType__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x00471910, String *, ObjectInitializationData_get_Id, (ObjectInitializationData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171C0A0, SerializedType, ObjectInitializationData_get_ObjectType, (ObjectInitializationData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3B0, String *, ObjectInitializationData_get_Data, (ObjectInitializationData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B6FD00, String *, ObjectInitializationData_ToString, (ObjectInitializationData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B6FDC0, AsyncOperationHandle, ObjectInitializationData_GetAsyncInitHandle, (ObjectInitializationData__Boxed * __this, ResourceManager_1 * rm, String * idOverride, MethodInfo * method)); -DO_APP_FUNC(0x02B70030, bool, ResourceManagerConfig_ExtractKeyAndSubKey, (Object * keyObj, String * mainKey, String * subKey, MethodInfo * method)); +DO_APP_FUNC(0x00471910, String *, SerializedType_get_AssemblyName, (SerializedType * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, String *, SerializedType_get_ClassName, (SerializedType * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B6F8E0, String *, SerializedType_ToString, (SerializedType * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B6F990, Type *, SerializedType_get_Value, (SerializedType * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B6FAE0, void, SerializedType_set_Value, (SerializedType * __this, Type * value, MethodInfo * method)); +DO_APP_FUNC(0x003BCC40, bool, SerializedType_get_ValueChanged, (SerializedType * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCC50, void, SerializedType_set_ValueChanged, (SerializedType * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x00471910, String *, ObjectInitializationData_get_Id, (ObjectInitializationData * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171C0A0, SerializedType, ObjectInitializationData_get_ObjectType, (ObjectInitializationData * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3B0, String *, ObjectInitializationData_get_Data, (ObjectInitializationData * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B6FD00, String *, ObjectInitializationData_ToString, (ObjectInitializationData * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B6FDC0, AsyncOperationHandle, ObjectInitializationData_GetAsyncInitHandle, (ObjectInitializationData * __this, ResourceManager_1 * rm, String * idOverride, MethodInfo * method)); +DO_APP_FUNC(0x02B70030, bool, ResourceManagerConfig_ExtractKeyAndSubKey, (Object * keyObj, String * * mainKey, String * * subKey, MethodInfo * method)); DO_APP_FUNC(0x02B701D0, bool, ResourceManagerConfig_IsPathRemote, (String * path, MethodInfo * method)); DO_APP_FUNC(0x02B70220, String *, ResourceManagerConfig_StripQueryParameters, (String * path, MethodInfo * method)); DO_APP_FUNC(0x02B70270, bool, ResourceManagerConfig_ShouldPathUseWebRequest, (String * path, MethodInfo * method)); DO_APP_FUNC(0x02B70440, bool, ResourceManagerConfig_PlatformCanLoadLocallyFromUrlPath, (MethodInfo * method)); DO_APP_FUNC(0x02B705C0, Array *, ResourceManagerConfig_CreateArrayResult, (Type * type, Object_1__Array * allAssets, MethodInfo * method)); DO_APP_FUNC(0x02B707A0, IList *, ResourceManagerConfig_CreateListResult, (Type * type, Object_1__Array * allAssets, MethodInfo * method)); -DO_APP_FUNC(0x02B70950, bool, UnityWebRequestUtilities_RequestHasErrors, (UnityWebRequest * webReq, UnityWebRequestResult * result, MethodInfo * method)); +DO_APP_FUNC(0x02B70950, bool, UnityWebRequestUtilities_RequestHasErrors, (UnityWebRequest * webReq, UnityWebRequestResult * * result, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9E330, UnityWebRequestUtilities_RequestHasErrors__MethodInfo); DO_APP_FUNC(0x02B70B60, bool, UnityWebRequestUtilities_IsAssetBundleDownloaded, (UnityWebRequestAsyncOperation * op, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, UnityWebRequestUtilities__ctor, (UnityWebRequestUtilities * __this, MethodInfo * method)); @@ -108858,8 +121143,8 @@ DO_APP_FUNC(0x02B72930, void, AssetBundleResource_Start, (AssetBundleResource * DO_APP_FUNC(0x02B72E20, bool, AssetBundleResource_WaitForCompletionHandler, (AssetBundleResource * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9E298, AssetBundleResource_WaitForCompletionHandler__MethodInfo); DO_APP_FUNC(0x02B731E0, void, AssetBundleResource_AddCallbackInvokeIfDone, (AssetBundleResource * __this, AsyncOperation_1 * operation, Action_1_UnityEngine_AsyncOperation_ * callback, MethodInfo * method)); -DO_APP_FUNC(0x02B73280, void, AssetBundleResource_GetLoadInfo, (ProvideHandle handle, AssetBundleResource_LoadType__Enum loadType, String * path, MethodInfo * method)); -DO_APP_FUNC(0x02B73310, void, AssetBundleResource_GetLoadInfo_1, (IResourceLocation * location, ResourceManager_1 * resourceManager, AssetBundleResource_LoadType__Enum loadType, String * path, MethodInfo * method)); +DO_APP_FUNC(0x02B73280, void, AssetBundleResource_GetLoadInfo, (ProvideHandle handle, AssetBundleResource_LoadType__Enum * loadType, String * * path, MethodInfo * method)); +DO_APP_FUNC(0x02B73310, void, AssetBundleResource_GetLoadInfo_1, (IResourceLocation * location, ResourceManager_1 * resourceManager, AssetBundleResource_LoadType__Enum * loadType, String * * path, MethodInfo * method)); DO_APP_FUNC(0x02B73600, void, AssetBundleResource_BeginOperation, (AssetBundleResource * __this, MethodInfo * method)); DO_APP_FUNC(0x02B73C70, void, AssetBundleResource_BeginWebRequestOperation, (AssetBundleResource * __this, AsyncOperation_1 * asyncOp, MethodInfo * method)); DO_APP_FUNC(0x02B73E00, void, AssetBundleResource_Update, (AssetBundleResource * __this, float unscaledDeltaTime, MethodInfo * method)); @@ -108900,33 +121185,33 @@ DO_APP_FUNC_METHODINFO(0x03C9E230, BundledAssetProvider_InternalOp_ProgressCallb DO_APP_FUNC(0x003AE050, void, BundledAssetProvider_InternalOp__ctor, (BundledAssetProvider_InternalOp * __this, MethodInfo * method)); DO_APP_FUNC(0x02B775A0, void, BundledAssetProvider_InternalOp__Start_b__7_0, (BundledAssetProvider_InternalOp * __this, AsyncOperation_1 * operation, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9E238, BundledAssetProvider_InternalOp__Start_b__7_0__MethodInfo); -DO_APP_FUNC(0x0171B0F0, Vector3, InstantiationParameters_get_Position, (InstantiationParameters__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C9A640, Quaternion, InstantiationParameters_get_Rotation, (InstantiationParameters__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3E0, Transform *, InstantiationParameters_get_Parent, (InstantiationParameters__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00424C10, bool, InstantiationParameters_get_InstantiateInWorldPosition, (InstantiationParameters__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01CBB9E0, bool, InstantiationParameters_get_SetPositionRotation, (InstantiationParameters__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B775B0, void, InstantiationParameters__ctor, (InstantiationParameters__Boxed * __this, Transform * parent, bool instantiateInWorldSpace, MethodInfo * method)); -DO_APP_FUNC(0x02B776B0, void, InstantiationParameters__ctor_1, (InstantiationParameters__Boxed * __this, Vector3 position, Quaternion rotation, Transform * parent, MethodInfo * method)); +DO_APP_FUNC(0x0171B0F0, Vector3, InstantiationParameters_get_Position, (InstantiationParameters * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C9A640, Quaternion, InstantiationParameters_get_Rotation, (InstantiationParameters * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3E0, Transform *, InstantiationParameters_get_Parent, (InstantiationParameters * __this, MethodInfo * method)); +DO_APP_FUNC(0x00424C10, bool, InstantiationParameters_get_InstantiateInWorldPosition, (InstantiationParameters * __this, MethodInfo * method)); +DO_APP_FUNC(0x01CBB9E0, bool, InstantiationParameters_get_SetPositionRotation, (InstantiationParameters * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B775B0, void, InstantiationParameters__ctor, (InstantiationParameters * __this, Transform * parent, bool instantiateInWorldSpace, MethodInfo * method)); +DO_APP_FUNC(0x02B776B0, void, InstantiationParameters__ctor_1, (InstantiationParameters * __this, Vector3 position, Quaternion rotation, Transform * parent, MethodInfo * method)); DO_APP_FUNC(0x02B77730, GameObject *, InstanceProvider_ProvideInstance, (InstanceProvider * __this, ResourceManager_1 * resourceManager, AsyncOperationHandle_1_UnityEngine_GameObject_ prefabHandle, InstantiationParameters instantiateParameters, MethodInfo * method)); DO_APP_FUNC(0x02B77820, void, InstanceProvider_ReleaseInstance, (InstanceProvider * __this, ResourceManager_1 * resourceManager, GameObject * instance, MethodInfo * method)); DO_APP_FUNC(0x02B77D30, void, InstanceProvider__ctor, (InstanceProvider * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B77E10, void, ProvideHandle__ctor, (ProvideHandle__Boxed * __this, ResourceManager_1 * rm, IGenericProviderOperation * op, MethodInfo * method)); -DO_APP_FUNC(0x02B77F30, IGenericProviderOperation *, ProvideHandle_get_InternalOp, (ProvideHandle__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B77E10, void, ProvideHandle__ctor, (ProvideHandle * __this, ResourceManager_1 * rm, IGenericProviderOperation * op, MethodInfo * method)); +DO_APP_FUNC(0x02B77F30, IGenericProviderOperation *, ProvideHandle_get_InternalOp, (ProvideHandle * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9E198, ProvideHandle_get_InternalOp__MethodInfo); -DO_APP_FUNC(0x003BB3C0, ResourceManager_1 *, ProvideHandle_get_ResourceManager, (ProvideHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B77FE0, Type *, ProvideHandle_get_Type, (ProvideHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B78040, IResourceLocation *, ProvideHandle_get_Location, (ProvideHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B780A0, int32_t, ProvideHandle_get_DependencyCount, (ProvideHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B78100, void, ProvideHandle_GetDependencies, (ProvideHandle__Boxed * __this, IList_1_System_Object_ * list, MethodInfo * method)); -DO_APP_FUNC(0x02B78170, void, ProvideHandle_SetProgressCallback, (ProvideHandle__Boxed * __this, Func_1_Single_ * callback, MethodInfo * method)); -DO_APP_FUNC(0x02B781E0, void, ProvideHandle_SetDownloadProgressCallbacks, (ProvideHandle__Boxed * __this, Func_1_UnityEngine_ResourceManagement_AsyncOperations_DownloadStatus_ * callback, MethodInfo * method)); -DO_APP_FUNC(0x02B782B0, void, ProvideHandle_SetWaitForCompletionCallback, (ProvideHandle__Boxed * __this, Func_1_Boolean_ * callback, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, Scene, SceneInstance_get_Scene, (SceneInstance__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00959BA0, void, SceneInstance_set_Scene, (SceneInstance__Boxed * __this, Scene value, MethodInfo * method)); -DO_APP_FUNC(0x02B78380, void, SceneInstance_Activate, (SceneInstance__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B783E0, AsyncOperation_1 *, SceneInstance_ActivateAsync, (SceneInstance__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B78450, int32_t, SceneInstance_GetHashCode, (SceneInstance__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B78460, bool, SceneInstance_Equals, (SceneInstance__Boxed * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, ResourceManager_1 *, ProvideHandle_get_ResourceManager, (ProvideHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B77FE0, Type *, ProvideHandle_get_Type, (ProvideHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B78040, IResourceLocation *, ProvideHandle_get_Location, (ProvideHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B780A0, int32_t, ProvideHandle_get_DependencyCount, (ProvideHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B78100, void, ProvideHandle_GetDependencies, (ProvideHandle * __this, IList_1_System_Object_ * list, MethodInfo * method)); +DO_APP_FUNC(0x02B78170, void, ProvideHandle_SetProgressCallback, (ProvideHandle * __this, Func_1_Single_ * callback, MethodInfo * method)); +DO_APP_FUNC(0x02B781E0, void, ProvideHandle_SetDownloadProgressCallbacks, (ProvideHandle * __this, Func_1_UnityEngine_ResourceManagement_AsyncOperations_DownloadStatus_ * callback, MethodInfo * method)); +DO_APP_FUNC(0x02B782B0, void, ProvideHandle_SetWaitForCompletionCallback, (ProvideHandle * __this, Func_1_Boolean_ * callback, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, Scene, SceneInstance_get_Scene, (SceneInstance * __this, MethodInfo * method)); +DO_APP_FUNC(0x00959BA0, void, SceneInstance_set_Scene, (SceneInstance * __this, Scene value, MethodInfo * method)); +DO_APP_FUNC(0x02B78380, void, SceneInstance_Activate, (SceneInstance * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B783E0, AsyncOperation_1 *, SceneInstance_ActivateAsync, (SceneInstance * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B78450, int32_t, SceneInstance_GetHashCode, (SceneInstance * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B78460, bool, SceneInstance_Equals, (SceneInstance * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x02B78590, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_, SceneProviderExtensions_ReleaseScene, (ISceneProvider * provider, ResourceManager_1 * resourceManager, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ sceneLoadHandle, UnloadSceneOptions__Enum unloadOptions, MethodInfo * method)); DO_APP_FUNC(0x02B787F0, Object *, JsonAssetProvider_Convert, (JsonAssetProvider * __this, Type * type, String * text, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, JsonAssetProvider__ctor, (JsonAssetProvider * __this, MethodInfo * method)); @@ -109032,15 +121317,15 @@ DO_APP_FUNC(0x02B7DCA0, Object *, LocationWrapper_get_Data, (LocationWrapper * _ DO_APP_FUNC(0x02B7DCF0, String *, LocationWrapper_get_PrimaryKey, (LocationWrapper * __this, MethodInfo * method)); DO_APP_FUNC(0x02B7DD40, Type *, LocationWrapper_get_ResourceType, (LocationWrapper * __this, MethodInfo * method)); DO_APP_FUNC(0x02B7DD90, int32_t, LocationWrapper_Hash, (LocationWrapper * __this, Type * resultType, MethodInfo * method)); -DO_APP_FUNC(0x00471910, String *, DiagnosticEvent_get_Graph, (DiagnosticEvent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, int32_t, DiagnosticEvent_get_ObjectId, (DiagnosticEvent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3D0, String *, DiagnosticEvent_get_DisplayName, (DiagnosticEvent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, Int32__Array *, DiagnosticEvent_get_Dependencies, (DiagnosticEvent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003CC980, int32_t, DiagnosticEvent_get_Stream, (DiagnosticEvent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003CD280, int32_t, DiagnosticEvent_get_Frame, (DiagnosticEvent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00421680, int32_t, DiagnosticEvent_get_Value, (DiagnosticEvent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B7DDF0, void, DiagnosticEvent__ctor, (DiagnosticEvent__Boxed * __this, String * graph, String * name, int32_t id, int32_t stream, int32_t frame, int32_t value, Int32__Array * deps, MethodInfo * method)); -DO_APP_FUNC(0x02B7DF30, Byte__Array *, DiagnosticEvent_Serialize, (DiagnosticEvent__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, String *, DiagnosticEvent_get_Graph, (DiagnosticEvent * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, int32_t, DiagnosticEvent_get_ObjectId, (DiagnosticEvent * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3D0, String *, DiagnosticEvent_get_DisplayName, (DiagnosticEvent * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, Int32__Array *, DiagnosticEvent_get_Dependencies, (DiagnosticEvent * __this, MethodInfo * method)); +DO_APP_FUNC(0x003CC980, int32_t, DiagnosticEvent_get_Stream, (DiagnosticEvent * __this, MethodInfo * method)); +DO_APP_FUNC(0x003CD280, int32_t, DiagnosticEvent_get_Frame, (DiagnosticEvent * __this, MethodInfo * method)); +DO_APP_FUNC(0x00421680, int32_t, DiagnosticEvent_get_Value, (DiagnosticEvent * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B7DDF0, void, DiagnosticEvent__ctor, (DiagnosticEvent * __this, String * graph, String * name, int32_t id, int32_t stream, int32_t frame, int32_t value, Int32__Array * deps, MethodInfo * method)); +DO_APP_FUNC(0x02B7DF30, Byte__Array *, DiagnosticEvent_Serialize, (DiagnosticEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x02B7DFD0, DiagnosticEvent, DiagnosticEvent_Deserialize, (Byte__Array * data, MethodInfo * method)); DO_APP_FUNC(0x02B7E110, Guid, DiagnosticEventCollectorSingleton_get_PlayerConnectionGuid, (MethodInfo * method)); DO_APP_FUNC(0x02B7E270, String *, DiagnosticEventCollectorSingleton_GetGameObjectName, (DiagnosticEventCollectorSingleton * __this, MethodInfo * method)); @@ -109065,39 +121350,39 @@ DO_APP_FUNC(0x02B7FEF0, bool, DiagnosticEventCollector_RegisterEventHandler, (Ac DO_APP_FUNC(0x02B7FFD0, void, DiagnosticEventCollector_UnregisterEventHandler, (DiagnosticEventCollector * __this, Action_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * handler, MethodInfo * method)); DO_APP_FUNC(0x02B80030, void, DiagnosticEventCollector_PostEvent, (DiagnosticEventCollector * __this, DiagnosticEvent diagnosticEvent, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, DiagnosticEventCollector__ctor, (DiagnosticEventCollector * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, String *, AsyncOperationHandle_get_LocationName, (AsyncOperationHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCBE0, void, AsyncOperationHandle_set_LocationName, (AsyncOperationHandle__Boxed * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x02B800B0, void, AsyncOperationHandle__ctor, (AsyncOperationHandle__Boxed * __this, IAsyncOperation * op, MethodInfo * method)); -DO_APP_FUNC(0x01D3FBB0, void, AsyncOperationHandle__ctor_1, (AsyncOperationHandle__Boxed * __this, IAsyncOperation * op, int32_t version, MethodInfo * method)); -DO_APP_FUNC(0x02B801C0, void, AsyncOperationHandle__ctor_2, (AsyncOperationHandle__Boxed * __this, IAsyncOperation * op, String * locationName, MethodInfo * method)); -DO_APP_FUNC(0x02B802E0, void, AsyncOperationHandle__ctor_3, (AsyncOperationHandle__Boxed * __this, IAsyncOperation * op, int32_t version, String * locationName, MethodInfo * method)); -DO_APP_FUNC(0x02B803A0, AsyncOperationHandle, AsyncOperationHandle_Acquire, (AsyncOperationHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B80420, void, AsyncOperationHandle_add_Completed, (AsyncOperationHandle__Boxed * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * value, MethodInfo * method)); -DO_APP_FUNC(0x02B80480, void, AsyncOperationHandle_remove_Completed, (AsyncOperationHandle__Boxed * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * value, MethodInfo * method)); -DO_APP_FUNC(0x01215030, bool, AsyncOperationHandle_Equals, (AsyncOperationHandle__Boxed * __this, AsyncOperationHandle other, MethodInfo * method)); -DO_APP_FUNC(0x02B804E0, String *, AsyncOperationHandle_get_DebugName, (AsyncOperationHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B805A0, void, AsyncOperationHandle_add_Destroyed, (AsyncOperationHandle__Boxed * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * value, MethodInfo * method)); -DO_APP_FUNC(0x02B80600, void, AsyncOperationHandle_remove_Destroyed, (AsyncOperationHandle__Boxed * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * value, MethodInfo * method)); -DO_APP_FUNC(0x02B80660, void, AsyncOperationHandle_GetDependencies, (AsyncOperationHandle__Boxed * __this, List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * deps, MethodInfo * method)); -DO_APP_FUNC(0x01215060, int32_t, AsyncOperationHandle_GetHashCode, (AsyncOperationHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B80730, IAsyncOperation *, AsyncOperationHandle_get_InternalOp, (AsyncOperationHandle__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, String *, AsyncOperationHandle_get_LocationName, (AsyncOperationHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCBE0, void, AsyncOperationHandle_set_LocationName, (AsyncOperationHandle * __this, String * value, MethodInfo * method)); +DO_APP_FUNC(0x02B800B0, void, AsyncOperationHandle__ctor, (AsyncOperationHandle * __this, IAsyncOperation * op, MethodInfo * method)); +DO_APP_FUNC(0x01D3FBB0, void, AsyncOperationHandle__ctor_1, (AsyncOperationHandle * __this, IAsyncOperation * op, int32_t version, MethodInfo * method)); +DO_APP_FUNC(0x02B801C0, void, AsyncOperationHandle__ctor_2, (AsyncOperationHandle * __this, IAsyncOperation * op, String * locationName, MethodInfo * method)); +DO_APP_FUNC(0x02B802E0, void, AsyncOperationHandle__ctor_3, (AsyncOperationHandle * __this, IAsyncOperation * op, int32_t version, String * locationName, MethodInfo * method)); +DO_APP_FUNC(0x02B803A0, AsyncOperationHandle, AsyncOperationHandle_Acquire, (AsyncOperationHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B80420, void, AsyncOperationHandle_add_Completed, (AsyncOperationHandle * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * value, MethodInfo * method)); +DO_APP_FUNC(0x02B80480, void, AsyncOperationHandle_remove_Completed, (AsyncOperationHandle * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * value, MethodInfo * method)); +DO_APP_FUNC(0x01215030, bool, AsyncOperationHandle_Equals, (AsyncOperationHandle * __this, AsyncOperationHandle other, MethodInfo * method)); +DO_APP_FUNC(0x02B804E0, String *, AsyncOperationHandle_get_DebugName, (AsyncOperationHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B805A0, void, AsyncOperationHandle_add_Destroyed, (AsyncOperationHandle * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * value, MethodInfo * method)); +DO_APP_FUNC(0x02B80600, void, AsyncOperationHandle_remove_Destroyed, (AsyncOperationHandle * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * value, MethodInfo * method)); +DO_APP_FUNC(0x02B80660, void, AsyncOperationHandle_GetDependencies, (AsyncOperationHandle * __this, List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * deps, MethodInfo * method)); +DO_APP_FUNC(0x01215060, int32_t, AsyncOperationHandle_GetHashCode, (AsyncOperationHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B80730, IAsyncOperation *, AsyncOperationHandle_get_InternalOp, (AsyncOperationHandle * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9DF18, AsyncOperationHandle_get_InternalOp__MethodInfo); -DO_APP_FUNC(0x02B807E0, bool, AsyncOperationHandle_get_IsDone, (AsyncOperationHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B80880, bool, AsyncOperationHandle_IsValid, (AsyncOperationHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B808E0, Exception *, AsyncOperationHandle_get_OperationException, (AsyncOperationHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B80940, float, AsyncOperationHandle_get_PercentComplete, (AsyncOperationHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B809A0, DownloadStatus, AsyncOperationHandle_GetDownloadStatus, (AsyncOperationHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B80A40, DownloadStatus, AsyncOperationHandle_InternalGetDownloadStatus, (AsyncOperationHandle__Boxed * __this, HashSet_1_System_Object_ * visited, MethodInfo * method)); -DO_APP_FUNC(0x02B80C00, int32_t, AsyncOperationHandle_get_ReferenceCount, (AsyncOperationHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B80C60, void, AsyncOperationHandle_Release, (AsyncOperationHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B80D00, Object *, AsyncOperationHandle_get_Result, (AsyncOperationHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B80D60, AsyncOperationStatus__Enum, AsyncOperationHandle_get_Status, (AsyncOperationHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B80DC0, Task_1_System_Object_ *, AsyncOperationHandle_get_Task, (AsyncOperationHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B80D00, Object *, AsyncOperationHandle_System_Collections_IEnumerator_get_Current, (AsyncOperationHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B80E90, bool, AsyncOperationHandle_System_Collections_IEnumerator_MoveNext, (AsyncOperationHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, AsyncOperationHandle_System_Collections_IEnumerator_Reset, (AsyncOperationHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B80EB0, Object *, AsyncOperationHandle_WaitForCompletion, (AsyncOperationHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B81000, float, DownloadStatus_get_Percent, (DownloadStatus__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B807E0, bool, AsyncOperationHandle_get_IsDone, (AsyncOperationHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B80880, bool, AsyncOperationHandle_IsValid, (AsyncOperationHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B808E0, Exception *, AsyncOperationHandle_get_OperationException, (AsyncOperationHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B80940, float, AsyncOperationHandle_get_PercentComplete, (AsyncOperationHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B809A0, DownloadStatus, AsyncOperationHandle_GetDownloadStatus, (AsyncOperationHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B80A40, DownloadStatus, AsyncOperationHandle_InternalGetDownloadStatus, (AsyncOperationHandle * __this, HashSet_1_System_Object_ * visited, MethodInfo * method)); +DO_APP_FUNC(0x02B80C00, int32_t, AsyncOperationHandle_get_ReferenceCount, (AsyncOperationHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B80C60, void, AsyncOperationHandle_Release, (AsyncOperationHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B80D00, Object *, AsyncOperationHandle_get_Result, (AsyncOperationHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B80D60, AsyncOperationStatus__Enum, AsyncOperationHandle_get_Status, (AsyncOperationHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B80DC0, Task_1_System_Object_ *, AsyncOperationHandle_get_Task, (AsyncOperationHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B80D00, Object *, AsyncOperationHandle_System_Collections_IEnumerator_get_Current, (AsyncOperationHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B80E90, bool, AsyncOperationHandle_System_Collections_IEnumerator_MoveNext, (AsyncOperationHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, AsyncOperationHandle_System_Collections_IEnumerator_Reset, (AsyncOperationHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B80EB0, Object *, AsyncOperationHandle_WaitForCompletion, (AsyncOperationHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B81000, float, DownloadStatus_get_Percent, (DownloadStatus * __this, MethodInfo * method)); DO_APP_FUNC(0x02B81030, void, GroupOperation__ctor, (GroupOperation * __this, MethodInfo * method)); DO_APP_FUNC(0x02B81270, bool, GroupOperation_InvokeWaitForCompletion, (GroupOperation * __this, MethodInfo * method)); DO_APP_FUNC(0x005B9620, IOperationCacheKey *, GroupOperation_UnityEngine_ResourceManagement_AsyncOperations_ICachable_get_Key, (GroupOperation * __this, MethodInfo * method)); @@ -109119,7 +121404,7 @@ DO_APP_FUNC_METHODINFO(0x03C9DEF0, GroupOperation_OnOperationCompleted__MethodIn DO_APP_FUNC(0x003BB3C0, List_1_PackedPlayModeBuildLogs_RuntimeBuildLog_ *, PackedPlayModeBuildLogs_get_RuntimeBuildLogs, (PackedPlayModeBuildLogs * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, PackedPlayModeBuildLogs_set_RuntimeBuildLogs, (PackedPlayModeBuildLogs * __this, List_1_PackedPlayModeBuildLogs_RuntimeBuildLog_ * value, MethodInfo * method)); DO_APP_FUNC(0x028E3670, void, PackedPlayModeBuildLogs__ctor, (PackedPlayModeBuildLogs * __this, MethodInfo * method)); -DO_APP_FUNC(0x0114D850, void, PackedPlayModeBuildLogs_RuntimeBuildLog__ctor, (PackedPlayModeBuildLogs_RuntimeBuildLog__Boxed * __this, LogType__Enum type, String * message, MethodInfo * method)); +DO_APP_FUNC(0x0114D850, void, PackedPlayModeBuildLogs_RuntimeBuildLog__ctor, (PackedPlayModeBuildLogs_RuntimeBuildLog * __this, LogType__Enum type, String * message, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, AssetReferenceUIRestriction_ValidateAsset, (AssetReferenceUIRestriction * __this, Object_1 * obj, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, AssetReferenceUIRestriction_ValidateAsset_1, (AssetReferenceUIRestriction * __this, String * path, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AssetReferenceUIRestriction__ctor, (AssetReferenceUIRestriction * __this, MethodInfo * method)); @@ -109134,6 +121419,7 @@ DO_APP_FUNC(0x028E3CC0, bool, InitalizationObjectsOperation_InvokeWaitForComplet DO_APP_FUNC(0x028E3ED0, void, InitalizationObjectsOperation_Execute, (InitalizationObjectsOperation * __this, MethodInfo * method)); DO_APP_FUNC(0x028E45E0, void, InitalizationObjectsOperation__ctor, (InitalizationObjectsOperation * __this, MethodInfo * method)); DO_APP_FUNC(0x028E4620, void, InitalizationObjectsOperation__Execute_b__8_0, (InitalizationObjectsOperation * __this, AsyncOperationHandle_1_System_Collections_Generic_IList_1__1 obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEB48, InitalizationObjectsOperation__Execute_b__8_0__MethodInfo); DO_APP_FUNC(0x00A4F060, Object *, InvalidKeyException_get_Key, (InvalidKeyException * __this, MethodInfo * method)); DO_APP_FUNC(0x00A4F070, void, InvalidKeyException_set_Key, (InvalidKeyException * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x0049E0C0, Type *, InvalidKeyException_get_Type, (InvalidKeyException * __this, MethodInfo * method)); @@ -109263,6 +121549,7 @@ DO_APP_FUNC(0x028EE130, void, AddressablesImpl_set_WebRequestOverride, (Addressa DO_APP_FUNC(0x028EE1A0, AsyncOperationHandle, AddressablesImpl_get_ChainOperation, (AddressablesImpl * __this, MethodInfo * method)); DO_APP_FUNC(0x028EE3F0, bool, AddressablesImpl_get_ShouldChainRequest, (AddressablesImpl * __this, MethodInfo * method)); DO_APP_FUNC(0x028EE4C0, void, AddressablesImpl_OnSceneUnloaded, (AddressablesImpl * __this, Scene scene, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE7B0, AddressablesImpl_OnSceneUnloaded__MethodInfo); DO_APP_FUNC(0x028EE9A0, String *, AddressablesImpl_get_StreamingAssetsSubFolder, (AddressablesImpl * __this, MethodInfo * method)); DO_APP_FUNC(0x028EE9E0, String *, AddressablesImpl_get_BuildPath, (AddressablesImpl * __this, MethodInfo * method)); DO_APP_FUNC(0x028EEAD0, String *, AddressablesImpl_get_PlayerBuildDataPath, (AddressablesImpl * __this, MethodInfo * method)); @@ -109273,6 +121560,7 @@ DO_APP_FUNC(0x028EEC40, void, AddressablesImpl_LogWarning, (AddressablesImpl * _ DO_APP_FUNC(0x028EEC90, void, AddressablesImpl_LogWarningFormat, (AddressablesImpl * __this, String * format, Object__Array * args, MethodInfo * method)); DO_APP_FUNC(0x028EECF0, void, AddressablesImpl_LogError, (AddressablesImpl * __this, String * msg, MethodInfo * method)); DO_APP_FUNC(0x028EED40, void, AddressablesImpl_LogException, (AddressablesImpl * __this, AsyncOperationHandle op, Exception * ex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE678, AddressablesImpl_LogException__MethodInfo); DO_APP_FUNC(0x003AE050, void, AddressablesImpl_LogException_1, (AddressablesImpl * __this, Exception * ex, MethodInfo * method)); DO_APP_FUNC(0x028EEE10, void, AddressablesImpl_LogErrorFormat, (AddressablesImpl * __this, String * format, Object__Array * args, MethodInfo * method)); DO_APP_FUNC(0x028EEE70, String *, AddressablesImpl_ResolveInternalId, (AddressablesImpl * __this, String * id, MethodInfo * method)); @@ -109280,8 +121568,8 @@ DO_APP_FUNC(0x028EF030, IEnumerable_1_UnityEngine_AddressableAssets_ResourceLoca DO_APP_FUNC(0x028EF1B0, void, AddressablesImpl_AddResourceLocator, (AddressablesImpl * __this, IResourceLocator * loc, String * localCatalogHash, IResourceLocation * remoteCatalogLocation, MethodInfo * method)); DO_APP_FUNC(0x028EF350, void, AddressablesImpl_RemoveResourceLocator, (AddressablesImpl * __this, IResourceLocator * loc, MethodInfo * method)); DO_APP_FUNC(0x028EF480, void, AddressablesImpl_ClearResourceLocators, (AddressablesImpl * __this, MethodInfo * method)); -DO_APP_FUNC(0x028EF4F0, bool, AddressablesImpl_GetResourceLocations, (AddressablesImpl * __this, Object * key, Type * type, IList_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_ * locations, MethodInfo * method)); -DO_APP_FUNC(0x028EFB80, bool, AddressablesImpl_GetResourceLocations_1, (AddressablesImpl * __this, IEnumerable * keys, Type * type, Addressables_MergeMode__Enum merge, IList_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_ * locations, MethodInfo * method)); +DO_APP_FUNC(0x028EF4F0, bool, AddressablesImpl_GetResourceLocations, (AddressablesImpl * __this, Object * key, Type * type, IList_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_ * * locations, MethodInfo * method)); +DO_APP_FUNC(0x028EFB80, bool, AddressablesImpl_GetResourceLocations_1, (AddressablesImpl * __this, IEnumerable * keys, Type * type, Addressables_MergeMode__Enum merge, IList_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_ * * locations, MethodInfo * method)); DO_APP_FUNC(0x028F0200, AsyncOperationHandle_1_UnityEngine_AddressableAssets_ResourceLocators_IResourceLocator_, AddressablesImpl_InitializeAsync, (AddressablesImpl * __this, String * runtimeDataPath, String * providerSuffix, bool autoReleaseHandle, MethodInfo * method)); DO_APP_FUNC(0x028F08D0, AsyncOperationHandle_1_UnityEngine_AddressableAssets_ResourceLocators_IResourceLocator_, AddressablesImpl_InitializeAsync_1, (AddressablesImpl * __this, MethodInfo * method)); DO_APP_FUNC(0x028F0970, AsyncOperationHandle_1_UnityEngine_AddressableAssets_ResourceLocators_IResourceLocator_, AddressablesImpl_InitializeAsync_2, (AddressablesImpl * __this, bool autoReleaseHandle, MethodInfo * method)); @@ -109296,8 +121584,11 @@ DO_APP_FUNC(0x028F18A0, AsyncOperationHandle_1_System_Collections_Generic_IList_ DO_APP_FUNC(0x028F1C30, AsyncOperationHandle_1_System_Collections_Generic_IList_1__2, AddressablesImpl_LoadResourceLocationsWithChain_1, (AddressablesImpl * __this, AsyncOperationHandle dep, Object * key, Type * type, MethodInfo * method)); DO_APP_FUNC(0x028F1E80, AsyncOperationHandle_1_System_Collections_Generic_IList_1__2, AddressablesImpl_LoadResourceLocationsAsync_1, (AddressablesImpl * __this, Object * key, Type * type, MethodInfo * method)); DO_APP_FUNC(0x028F21F0, void, AddressablesImpl_OnHandleDestroyed, (AddressablesImpl * __this, AsyncOperationHandle handle, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE618, AddressablesImpl_OnHandleDestroyed__MethodInfo); DO_APP_FUNC(0x028F22E0, void, AddressablesImpl_OnSceneHandleCompleted, (AddressablesImpl * __this, AsyncOperationHandle handle, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE630, AddressablesImpl_OnSceneHandleCompleted__MethodInfo); DO_APP_FUNC(0x028F24F0, void, AddressablesImpl_OnHandleCompleted, (AddressablesImpl * __this, AsyncOperationHandle handle, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE620, AddressablesImpl_OnHandleCompleted__MethodInfo); DO_APP_FUNC(0x028F26A0, void, AddressablesImpl_Release, (AddressablesImpl * __this, AsyncOperationHandle handle, MethodInfo * method)); DO_APP_FUNC(0x028F2800, AsyncOperationHandle_1_System_Int64_, AddressablesImpl_GetDownloadSizeWithChain, (AddressablesImpl * __this, AsyncOperationHandle dep, Object * key, MethodInfo * method)); DO_APP_FUNC(0x028F29D0, AsyncOperationHandle_1_System_Int64_, AddressablesImpl_GetDownloadSizeWithChain_1, (AddressablesImpl * __this, AsyncOperationHandle dep, IEnumerable * keys, MethodInfo * method)); @@ -109347,7 +121638,9 @@ DO_APP_FUNC(0x028FA160, AsyncOperationHandle_1_System_Boolean_, AddressablesImpl DO_APP_FUNC(0x028FA6A0, AsyncOperationHandle_1_System_Boolean_, AddressablesImpl_CleanBundleCacheWithChain, (AddressablesImpl * __this, AsyncOperationHandle_1_System_Collections_Generic_IList_1__1 depOp, bool forceSingleThreading, MethodInfo * method)); DO_APP_FUNC(0x028FA8B0, AsyncOperationHandle_1_System_Boolean_, AddressablesImpl_CleanBundleCacheWithChain_1, (AddressablesImpl * __this, IEnumerable_1_System_String_ * catalogIds, bool forceSingleThreading, MethodInfo * method)); DO_APP_FUNC(0x028FAAB0, void, AddressablesImpl__TrackHandle_b__72_0, (AddressablesImpl * __this, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ sceneHandle, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE5A8, AddressablesImpl__TrackHandle_b__72_0__MethodInfo); DO_APP_FUNC(0x00C7D3F0, void, AddressablesImpl__AutoReleaseHandleOnCompletion_b__109_0, (AddressablesImpl * __this, AsyncOperationHandle op, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE458, AddressablesImpl__AutoReleaseHandleOnCompletion_b__109_0__MethodInfo); DO_APP_FUNC(0x003BB3C0, IResourceLocator *, AddressablesImpl_ResourceLocatorInfo_get_Locator, (AddressablesImpl_ResourceLocatorInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, AddressablesImpl_ResourceLocatorInfo_set_Locator, (AddressablesImpl_ResourceLocatorInfo * __this, IResourceLocator * value, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, String *, AddressablesImpl_ResourceLocatorInfo_get_LocalHash, (AddressablesImpl_ResourceLocatorInfo * __this, MethodInfo * method)); @@ -109373,51 +121666,76 @@ DO_APP_FUNC(0x028FB510, void, AddressablesImpl_LoadResourceLocationKeysOp__ctor, DO_APP_FUNC(0x028FB550, void, AddressablesImpl_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AddressablesImpl_c__ctor, (AddressablesImpl_c * __this, MethodInfo * method)); DO_APP_FUNC(0x00A9D490, IResourceLocator *, AddressablesImpl_c__get_ResourceLocators_b__60_0, (AddressablesImpl_c * __this, AddressablesImpl_ResourceLocatorInfo * l, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE710, AddressablesImpl_c__get_ResourceLocators_b__60_0__MethodInfo); DO_APP_FUNC(0x028FB600, bool, AddressablesImpl_c__get_CatalogsWithAvailableUpdates_b__139_0, (AddressablesImpl_c * __this, AddressablesImpl_ResourceLocatorInfo * s, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE2D8, AddressablesImpl_c__get_CatalogsWithAvailableUpdates_b__139_0__MethodInfo); DO_APP_FUNC(0x028FB620, String *, AddressablesImpl_c__get_CatalogsWithAvailableUpdates_b__139_1, (AddressablesImpl_c * __this, AddressablesImpl_ResourceLocatorInfo * s, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE2C8, AddressablesImpl_c__get_CatalogsWithAvailableUpdates_b__139_1__MethodInfo); DO_APP_FUNC(0x028FB680, String *, AddressablesImpl_c__CleanBundleCache_b__143_0, (AddressablesImpl_c * __this, AddressablesImpl_ResourceLocatorInfo * s, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE0F0, AddressablesImpl_c__CleanBundleCache_b__143_0__MethodInfo); DO_APP_FUNC(0x003AE050, void, AddressablesImpl_c_DisplayClass62_0__ctor, (AddressablesImpl_c_DisplayClass62_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x006BDAC0, bool, AddressablesImpl_c_DisplayClass62_0__RemoveResourceLocator_b__0, (AddressablesImpl_c_DisplayClass62_0 * __this, AddressablesImpl_ResourceLocatorInfo * l, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE750, AddressablesImpl_c_DisplayClass62_0__RemoveResourceLocator_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, AddressablesImpl_c_DisplayClass71_0__ctor, (AddressablesImpl_c_DisplayClass71_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x028FB6E0, AsyncOperationHandle_1_UnityEngine_AddressableAssets_ResourceLocators_IResourceLocator_, AddressablesImpl_c_DisplayClass71_0__LoadContentCatalogAsync_b__0, (AddressablesImpl_c_DisplayClass71_0 * __this, AsyncOperationHandle op, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE5A0, AddressablesImpl_c_DisplayClass71_0__LoadContentCatalogAsync_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, AddressablesImpl_c_DisplayClass81_0__ctor, (AddressablesImpl_c_DisplayClass81_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x028FB740, AsyncOperationHandle_1_System_Collections_Generic_IList_1__2, AddressablesImpl_c_DisplayClass81_0__LoadResourceLocationsWithChain_b__0, (AddressablesImpl_c_DisplayClass81_0 * __this, AsyncOperationHandle op, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE610, AddressablesImpl_c_DisplayClass81_0__LoadResourceLocationsWithChain_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, AddressablesImpl_c_DisplayClass83_0__ctor, (AddressablesImpl_c_DisplayClass83_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x028FB7A0, AsyncOperationHandle_1_System_Collections_Generic_IList_1__2, AddressablesImpl_c_DisplayClass83_0__LoadResourceLocationsWithChain_b__0, (AddressablesImpl_c_DisplayClass83_0 * __this, AsyncOperationHandle op, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE5E8, AddressablesImpl_c_DisplayClass83_0__LoadResourceLocationsWithChain_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, AddressablesImpl_c_DisplayClass96_0__ctor, (AddressablesImpl_c_DisplayClass96_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x028FB7F0, AsyncOperationHandle_1_System_Int64_, AddressablesImpl_c_DisplayClass96_0__GetDownloadSizeWithChain_b__0, (AddressablesImpl_c_DisplayClass96_0 * __this, AsyncOperationHandle op, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE580, AddressablesImpl_c_DisplayClass96_0__GetDownloadSizeWithChain_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, AddressablesImpl_c_DisplayClass97_0__ctor, (AddressablesImpl_c_DisplayClass97_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x028FB8D0, AsyncOperationHandle_1_System_Int64_, AddressablesImpl_c_DisplayClass97_0__GetDownloadSizeWithChain_b__0, (AddressablesImpl_c_DisplayClass97_0 * __this, AsyncOperationHandle op, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE590, AddressablesImpl_c_DisplayClass97_0__GetDownloadSizeWithChain_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, AddressablesImpl_c_DisplayClass100_0__ctor, (AddressablesImpl_c_DisplayClass100_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x028FB920, AsyncOperationHandle_1_System_Collections_Generic_IList_1__3, AddressablesImpl_c_DisplayClass100_0__DownloadDependenciesAsyncWithChain_b__0, (AddressablesImpl_c_DisplayClass100_0 * __this, AsyncOperationHandle op, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE4A0, AddressablesImpl_c_DisplayClass100_0__DownloadDependenciesAsyncWithChain_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, AddressablesImpl_c_DisplayClass104_0__ctor, (AddressablesImpl_c_DisplayClass104_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x028FBA90, AsyncOperationHandle_1_System_Collections_Generic_IList_1__3, AddressablesImpl_c_DisplayClass104_0__DownloadDependenciesAsyncWithChain_b__0, (AddressablesImpl_c_DisplayClass104_0 * __this, AsyncOperationHandle op, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE4F0, AddressablesImpl_c_DisplayClass104_0__DownloadDependenciesAsyncWithChain_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, AddressablesImpl_c_DisplayClass106_0__ctor, (AddressablesImpl_c_DisplayClass106_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x028FBC00, AsyncOperationHandle_1_System_Collections_Generic_IList_1__3, AddressablesImpl_c_DisplayClass106_0__DownloadDependenciesAsyncWithChain_b__0, (AddressablesImpl_c_DisplayClass106_0 * __this, AsyncOperationHandle op, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE420, AddressablesImpl_c_DisplayClass106_0__DownloadDependenciesAsyncWithChain_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, AddressablesImpl_c_DisplayClass113_0__ctor, (AddressablesImpl_c_DisplayClass113_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x028FBD80, AsyncOperationHandle_1_System_Boolean_, AddressablesImpl_c_DisplayClass113_0__ClearDependencyCacheAsync_b__0, (AddressablesImpl_c_DisplayClass113_0 * __this, AsyncOperationHandle op, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE428, AddressablesImpl_c_DisplayClass113_0__ClearDependencyCacheAsync_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, AddressablesImpl_c_DisplayClass114_0__ctor, (AddressablesImpl_c_DisplayClass114_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x028FBDD0, AsyncOperationHandle_1_System_Boolean_, AddressablesImpl_c_DisplayClass114_0__ClearDependencyCacheAsync_b__0, (AddressablesImpl_c_DisplayClass114_0 * __this, AsyncOperationHandle op, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE450, AddressablesImpl_c_DisplayClass114_0__ClearDependencyCacheAsync_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, AddressablesImpl_c_DisplayClass115_0__ctor, (AddressablesImpl_c_DisplayClass115_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x028FBE20, AsyncOperationHandle_1_System_Boolean_, AddressablesImpl_c_DisplayClass115_0__ClearDependencyCacheAsync_b__0, (AddressablesImpl_c_DisplayClass115_0 * __this, AsyncOperationHandle op, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE3A8, AddressablesImpl_c_DisplayClass115_0__ClearDependencyCacheAsync_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, AddressablesImpl_c_DisplayClass120_0__ctor, (AddressablesImpl_c_DisplayClass120_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x028FBE70, AsyncOperationHandle_1_UnityEngine_GameObject_, AddressablesImpl_c_DisplayClass120_0__InstantiateWithChain_b__0, (AddressablesImpl_c_DisplayClass120_0 * __this, AsyncOperationHandle op, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE380, AddressablesImpl_c_DisplayClass120_0__InstantiateWithChain_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, AddressablesImpl_c_DisplayClass122_0__ctor, (AddressablesImpl_c_DisplayClass122_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x028FBEF0, AsyncOperationHandle_1_UnityEngine_GameObject_, AddressablesImpl_c_DisplayClass122_0__InstantiateWithChain_b__0, (AddressablesImpl_c_DisplayClass122_0 * __this, AsyncOperationHandle op, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE3E8, AddressablesImpl_c_DisplayClass122_0__InstantiateWithChain_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, AddressablesImpl_c_DisplayClass125_0__ctor, (AddressablesImpl_c_DisplayClass125_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x028FBF70, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_, AddressablesImpl_c_DisplayClass125_0__LoadSceneWithChain_b__0, (AddressablesImpl_c_DisplayClass125_0 * __this, AsyncOperationHandle op, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE3D8, AddressablesImpl_c_DisplayClass125_0__LoadSceneWithChain_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, AddressablesImpl_c_DisplayClass131_0__ctor, (AddressablesImpl_c_DisplayClass131_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x028FBFE0, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_, AddressablesImpl_c_DisplayClass131_0__CreateUnloadSceneWithChain_b__0, (AddressablesImpl_c_DisplayClass131_0 * __this, AsyncOperationHandle completedHandle, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE318, AddressablesImpl_c_DisplayClass131_0__CreateUnloadSceneWithChain_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, AddressablesImpl_c_DisplayClass132_0__ctor, (AddressablesImpl_c_DisplayClass132_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x028FC0E0, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_, AddressablesImpl_c_DisplayClass132_0__CreateUnloadSceneWithChain_b__0, (AddressablesImpl_c_DisplayClass132_0 * __this, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ completedHandle, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE358, AddressablesImpl_c_DisplayClass132_0__CreateUnloadSceneWithChain_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, AddressablesImpl_c_DisplayClass136_0__ctor, (AddressablesImpl_c_DisplayClass136_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x028FC150, AsyncOperationHandle_1_System_Collections_Generic_List_1_, AddressablesImpl_c_DisplayClass136_0__CheckForCatalogUpdatesWithChain_b__0, (AddressablesImpl_c_DisplayClass136_0 * __this, AsyncOperationHandle op, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE1C0, AddressablesImpl_c_DisplayClass136_0__CheckForCatalogUpdatesWithChain_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, AddressablesImpl_c_DisplayClass140_0__ctor, (AddressablesImpl_c_DisplayClass140_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x028FC1A0, AsyncOperationHandle_1_System_Collections_Generic_List_1__1, AddressablesImpl_c_DisplayClass140_0__UpdateCatalogs_b__0, (AddressablesImpl_c_DisplayClass140_0 * __this, AsyncOperationHandle_1_System_Collections_Generic_List_1_ depOp, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE298, AddressablesImpl_c_DisplayClass140_0__UpdateCatalogs_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, AddressablesImpl_c_DisplayClass145_0__ctor, (AddressablesImpl_c_DisplayClass145_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x028FC220, AsyncOperationHandle_1_System_Boolean_, AddressablesImpl_c_DisplayClass145_0__CleanBundleCacheWithChain_b__0, (AddressablesImpl_c_DisplayClass145_0 * __this, AsyncOperationHandle op, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE0A8, AddressablesImpl_c_DisplayClass145_0__CleanBundleCacheWithChain_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, AddressablesImpl_c_DisplayClass146_0__ctor, (AddressablesImpl_c_DisplayClass146_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x028FC290, AsyncOperationHandle_1_System_Boolean_, AddressablesImpl_c_DisplayClass146_0__CleanBundleCacheWithChain_b__0, (AddressablesImpl_c_DisplayClass146_0 * __this, AsyncOperationHandle op, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE180, AddressablesImpl_c_DisplayClass146_0__CleanBundleCacheWithChain_b__0__MethodInfo); DO_APP_FUNC(0x003BB3C0, String *, AssetLabelReference_get_labelString, (AssetLabelReference * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, AssetLabelReference_set_labelString, (AssetLabelReference * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x028FC2E0, Object *, AssetLabelReference_get_RuntimeKey, (AssetLabelReference * __this, MethodInfo * method)); @@ -109440,6 +121758,7 @@ DO_APP_FUNC(0x003BB3C0, String *, AssetReference_get_AssetGUID, (AssetReference DO_APP_FUNC(0x003BB3D0, String *, AssetReference_get_SubObjectName, (AssetReference * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE960, void, AssetReference_set_SubObjectName, (AssetReference * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x028FC7E0, Type *, AssetReference_get_SubOjbectType, (AssetReference * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDF00, AssetReference_get_SubOjbectType__MethodInfo); DO_APP_FUNC(0x028FC880, bool, AssetReference_IsValid, (AssetReference * __this, MethodInfo * method)); DO_APP_FUNC(0x028FC8E0, bool, AssetReference_get_IsDone, (AssetReference * __this, MethodInfo * method)); DO_APP_FUNC(0x028FC8F0, void, AssetReference__ctor, (AssetReference * __this, MethodInfo * method)); @@ -109464,11 +121783,12 @@ DO_APP_FUNC(0x028FD550, AsyncOperationHandle_1_System_Collections_Generic_List_1 DO_APP_FUNC(0x028FDD60, bool, CheckCatalogsOperation_InvokeWaitForCompletion, (CheckCatalogsOperation * __this, MethodInfo * method)); DO_APP_FUNC(0x028FDF10, void, CheckCatalogsOperation_Destroy, (CheckCatalogsOperation * __this, MethodInfo * method)); DO_APP_FUNC(0x028FDF80, void, CheckCatalogsOperation_GetDependencies, (CheckCatalogsOperation * __this, List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * dependencies, MethodInfo * method)); -DO_APP_FUNC(0x028FE050, List_1_System_String_ *, CheckCatalogsOperation_ProcessDependentOpResults, (IList_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * results, List_1_UnityEngine_AddressableAssets_AddressablesImpl_ResourceLocatorInfo_ * locatorInfos, List_1_System_String_ * localHashes, String * errorString, bool success, MethodInfo * method)); +DO_APP_FUNC(0x028FE050, List_1_System_String_ *, CheckCatalogsOperation_ProcessDependentOpResults, (IList_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * results, List_1_UnityEngine_AddressableAssets_AddressablesImpl_ResourceLocatorInfo_ * locatorInfos, List_1_System_String_ * localHashes, String * * errorString, bool * success, MethodInfo * method)); DO_APP_FUNC(0x028FEC40, void, CheckCatalogsOperation_Execute, (CheckCatalogsOperation * __this, MethodInfo * method)); DO_APP_FUNC(0x028FED10, void, CheckCatalogsOperation_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CheckCatalogsOperation_c__ctor, (CheckCatalogsOperation_c * __this, MethodInfo * method)); DO_APP_FUNC(0x028FEDC0, bool, CheckCatalogsOperation_c__Start_b__5_0, (CheckCatalogsOperation_c * __this, IResourceProvider * rp, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDD60, CheckCatalogsOperation_c__Start_b__5_0__MethodInfo); DO_APP_FUNC(0x028FEE60, void, CleanBundleCacheOperation__ctor, (CleanBundleCacheOperation * __this, AddressablesImpl * aa, bool forceSingleThreading, MethodInfo * method)); DO_APP_FUNC(0x028FEF60, AsyncOperationHandle_1_System_Boolean_, CleanBundleCacheOperation_Start, (CleanBundleCacheOperation * __this, AsyncOperationHandle_1_System_Collections_Generic_IList_1__1 depOp, MethodInfo * method)); DO_APP_FUNC(0x028FF120, void, CleanBundleCacheOperation_CompleteInternal, (CleanBundleCacheOperation * __this, bool result, bool success, String * errorMsg, MethodInfo * method)); @@ -109479,6 +121799,7 @@ DO_APP_FUNC(0x028FF3E0, void, CleanBundleCacheOperation_Execute, (CleanBundleCac DO_APP_FUNC(0x028FF700, void, CleanBundleCacheOperation_UnityEngine_ResourceManagement_IUpdateReceiver_Update, (CleanBundleCacheOperation * __this, float unscaledDeltaTime, MethodInfo * method)); DO_APP_FUNC(0x028FF7E0, void, CleanBundleCacheOperation_RemoveCacheEntries, (CleanBundleCacheOperation * __this, MethodInfo * method)); DO_APP_FUNC(0x028FF9A0, void, CleanBundleCacheOperation_DetermineCacheDirsNotInUse, (CleanBundleCacheOperation * __this, Object * data, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDB50, CleanBundleCacheOperation_DetermineCacheDirsNotInUse__MethodInfo); DO_APP_FUNC(0x028FFA30, void, CleanBundleCacheOperation_DetermineCacheDirsNotInUse_1, (CleanBundleCacheOperation * __this, HashSet_1_System_String_ * cacheDirsInUse, MethodInfo * method)); DO_APP_FUNC(0x028FFD30, HashSet_1_System_String_ *, CleanBundleCacheOperation_GetCacheDirsInUse, (CleanBundleCacheOperation * __this, IList_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * catalogOps, MethodInfo * method)); DO_APP_FUNC(0x029004B0, void, UpdateCatalogsOperation__ctor, (UpdateCatalogsOperation * __this, AddressablesImpl * aa, MethodInfo * method)); @@ -109491,13 +121812,15 @@ DO_APP_FUNC(0x02901790, void, UpdateCatalogsOperation_OnCleanCacheCompleted, (Up DO_APP_FUNC(0x029019F0, void, UpdateCatalogsOperation_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, UpdateCatalogsOperation_c__ctor, (UpdateCatalogsOperation_c * __this, MethodInfo * method)); DO_APP_FUNC(0x02901AA0, bool, UpdateCatalogsOperation_c__Start_b__6_0, (UpdateCatalogsOperation_c * __this, IResourceProvider * rp, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDBB0, UpdateCatalogsOperation_c__Start_b__6_0__MethodInfo); DO_APP_FUNC(0x003AE050, void, UpdateCatalogsOperation_c_DisplayClass11_0__ctor, (UpdateCatalogsOperation_c_DisplayClass11_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x02901B40, void, UpdateCatalogsOperation_c_DisplayClass11_0__OnCleanCacheCompleted_b__0, (UpdateCatalogsOperation_c_DisplayClass11_0 * __this, AsyncOperationHandle_1_System_Boolean_ obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDB38, UpdateCatalogsOperation_c_DisplayClass11_0__OnCleanCacheCompleted_b__0__MethodInfo); DO_APP_FUNC(0x02901D40, String *, DynamicResourceLocator_get_LocatorId, (DynamicResourceLocator * __this, MethodInfo * method)); DO_APP_FUNC(0x02901D80, IEnumerable_1_System_Object_ *, DynamicResourceLocator_get_Keys, (DynamicResourceLocator * __this, MethodInfo * method)); DO_APP_FUNC(0x02901DC0, String *, DynamicResourceLocator_get_AtlasSpriteProviderId, (DynamicResourceLocator * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, DynamicResourceLocator__ctor, (DynamicResourceLocator * __this, AddressablesImpl * addr, MethodInfo * method)); -DO_APP_FUNC(0x02902030, bool, DynamicResourceLocator_Locate, (DynamicResourceLocator * __this, Object * key, Type * type, IList_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_ * locations, MethodInfo * method)); +DO_APP_FUNC(0x02902030, bool, DynamicResourceLocator_Locate, (DynamicResourceLocator * __this, Object * key, Type * type, IList_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_ * * locations, MethodInfo * method)); DO_APP_FUNC(0x02902400, void, DynamicResourceLocator_CreateDynamicLocations, (DynamicResourceLocator * __this, Type * type, IList_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_ * locations, String * locName, String * subKey, IResourceLocation * mainLoc, MethodInfo * method)); DO_APP_FUNC(0x02902880, AddressablesPlatform__Enum, PlatformMappingService_GetAddressablesPlatformInternal, (RuntimePlatform__Enum platform, MethodInfo * method)); DO_APP_FUNC(0x02902990, String *, PlatformMappingService_GetAddressablesPlatformPathInternal, (RuntimePlatform__Enum platform, MethodInfo * method)); @@ -109513,6 +121836,7 @@ DO_APP_FUNC(0x02903870, int32_t, ResourceManagerDiagnostics_CalculateHashCode, ( DO_APP_FUNC(0x029039F0, int32_t, ResourceManagerDiagnostics_CalculateCompletedOperationHashcode, (ResourceManagerDiagnostics * __this, AsyncOperationHandle handle, MethodInfo * method)); DO_APP_FUNC(0x02903B80, String *, ResourceManagerDiagnostics_GenerateCompletedOperationDisplayName, (ResourceManagerDiagnostics * __this, AsyncOperationHandle handle, MethodInfo * method)); DO_APP_FUNC(0x029040B0, void, ResourceManagerDiagnostics_OnResourceManagerDiagnosticEvent, (ResourceManagerDiagnostics * __this, ResourceManager_DiagnosticEventContext eventContext, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD900, ResourceManagerDiagnostics_OnResourceManagerDiagnosticEvent__MethodInfo); DO_APP_FUNC(0x02904820, void, ResourceManagerDiagnostics_Dispose, (ResourceManagerDiagnostics * __this, MethodInfo * method)); DO_APP_FUNC(0x019CF880, int32_t, SerializationUtilities_ReadInt32FromByteArray, (Byte__Array * data, int32_t offset, MethodInfo * method)); DO_APP_FUNC(0x02904A30, int32_t, SerializationUtilities_WriteInt32ToByteArray, (Byte__Array * data, int32_t val, int32_t offset, MethodInfo * method)); @@ -109523,28 +121847,36 @@ DO_APP_FUNC(0x02905C10, void, ContentCatalogProvider_Release, (ContentCatalogPro DO_APP_FUNC(0x02905D00, void, ContentCatalogProvider_Provide, (ContentCatalogProvider * __this, ProvideHandle providerInterface, MethodInfo * method)); DO_APP_FUNC(0x02905F50, void, ContentCatalogProvider_InternalOp_Start, (ContentCatalogProvider_InternalOp * __this, ProvideHandle providerInterface, bool disableCatalogUpdateOnStart, bool isLocalCatalogInBundle, MethodInfo * method)); DO_APP_FUNC(0x02906250, bool, ContentCatalogProvider_InternalOp_WaitForCompletionCallback, (ContentCatalogProvider_InternalOp * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD778, ContentCatalogProvider_InternalOp_WaitForCompletionCallback__MethodInfo); DO_APP_FUNC(0x02906340, void, ContentCatalogProvider_InternalOp_Release, (ContentCatalogProvider_InternalOp * __this, MethodInfo * method)); DO_APP_FUNC(0x02906360, bool, ContentCatalogProvider_InternalOp_CanLoadCatalogFromBundle, (ContentCatalogProvider_InternalOp * __this, String * idToLoad, IResourceLocation * location, MethodInfo * method)); DO_APP_FUNC(0x02906500, void, ContentCatalogProvider_InternalOp_LoadCatalog, (ContentCatalogProvider_InternalOp * __this, String * idToLoad, bool loadCatalogFromLocalBundle, MethodInfo * method)); DO_APP_FUNC(0x02906C50, void, ContentCatalogProvider_InternalOp_CatalogLoadOpCompleteCallback, (ContentCatalogProvider_InternalOp * __this, AsyncOperationHandle_1_UnityEngine_AddressableAssets_ResourceLocators_ContentCatalogData_ op, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD828, ContentCatalogProvider_InternalOp_CatalogLoadOpCompleteCallback__MethodInfo); DO_APP_FUNC(0x02906EE0, String *, ContentCatalogProvider_InternalOp_GetTransformedInternalId, (ContentCatalogProvider_InternalOp * __this, IResourceLocation * loc, MethodInfo * method)); DO_APP_FUNC(0x02906F90, String *, ContentCatalogProvider_InternalOp_DetermineIdToLoad, (ContentCatalogProvider_InternalOp * __this, IResourceLocation * location, IList_1_System_Object_ * dependencyObjects, bool disableCatalogUpdateOnStart, MethodInfo * method)); DO_APP_FUNC(0x02907450, void, ContentCatalogProvider_InternalOp_OnCatalogLoaded, (ContentCatalogProvider_InternalOp * __this, ContentCatalogData * ccd, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ContentCatalogProvider_InternalOp__ctor, (ContentCatalogProvider_InternalOp * __this, MethodInfo * method)); DO_APP_FUNC(0x02907D20, void, ContentCatalogProvider_InternalOp__LoadCatalog_b__14_0, (ContentCatalogProvider_InternalOp * __this, ContentCatalogData * ccd, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD790, ContentCatalogProvider_InternalOp__LoadCatalog_b__14_0__MethodInfo); DO_APP_FUNC(0x02907D80, void, ContentCatalogProvider_InternalOp_BundledCatalog_add_OnLoaded, (ContentCatalogProvider_InternalOp_BundledCatalog * __this, Action_1_UnityEngine_AddressableAssets_ResourceLocators_ContentCatalogData_ * value, MethodInfo * method)); DO_APP_FUNC(0x02907E90, void, ContentCatalogProvider_InternalOp_BundledCatalog_remove_OnLoaded, (ContentCatalogProvider_InternalOp_BundledCatalog * __this, Action_1_UnityEngine_AddressableAssets_ResourceLocators_ContentCatalogData_ * value, MethodInfo * method)); DO_APP_FUNC(0x003BCC40, bool, ContentCatalogProvider_InternalOp_BundledCatalog_get_OpInProgress, (ContentCatalogProvider_InternalOp_BundledCatalog * __this, MethodInfo * method)); DO_APP_FUNC(0x02907FA0, bool, ContentCatalogProvider_InternalOp_BundledCatalog_get_OpIsSuccess, (ContentCatalogProvider_InternalOp_BundledCatalog * __this, MethodInfo * method)); DO_APP_FUNC(0x02907FC0, void, ContentCatalogProvider_InternalOp_BundledCatalog__ctor, (ContentCatalogProvider_InternalOp_BundledCatalog * __this, String * bundlePath, int32_t webRequestTimeout, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD6F8, ContentCatalogProvider_InternalOp_BundledCatalog__ctor__MethodInfo); DO_APP_FUNC(0x02908140, void, ContentCatalogProvider_InternalOp_BundledCatalog_Finalize, (ContentCatalogProvider_InternalOp_BundledCatalog * __this, MethodInfo * method)); DO_APP_FUNC(0x02908180, void, ContentCatalogProvider_InternalOp_BundledCatalog_Unload, (ContentCatalogProvider_InternalOp_BundledCatalog * __this, MethodInfo * method)); DO_APP_FUNC(0x02908240, void, ContentCatalogProvider_InternalOp_BundledCatalog_LoadCatalogFromBundleAsync, (ContentCatalogProvider_InternalOp_BundledCatalog * __this, MethodInfo * method)); DO_APP_FUNC(0x02908650, void, ContentCatalogProvider_InternalOp_BundledCatalog_WebRequestOperationCompleted, (ContentCatalogProvider_InternalOp_BundledCatalog * __this, AsyncOperation_1 * op, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD6B8, ContentCatalogProvider_InternalOp_BundledCatalog_WebRequestOperationCompleted__MethodInfo); DO_APP_FUNC(0x029089E0, void, ContentCatalogProvider_InternalOp_BundledCatalog_LoadTextAssetRequestComplete, (ContentCatalogProvider_InternalOp_BundledCatalog * __this, AsyncOperation_1 * op, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD558, ContentCatalogProvider_InternalOp_BundledCatalog_LoadTextAssetRequestComplete__MethodInfo); DO_APP_FUNC(0x02908B80, bool, ContentCatalogProvider_InternalOp_BundledCatalog_WaitForCompletion, (ContentCatalogProvider_InternalOp_BundledCatalog * __this, MethodInfo * method)); DO_APP_FUNC(0x02908E20, void, ContentCatalogProvider_InternalOp_BundledCatalog__LoadCatalogFromBundleAsync_b__19_1, (ContentCatalogProvider_InternalOp_BundledCatalog * __this, UnityWebRequestAsyncOperation * asyncOp, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD6C8, ContentCatalogProvider_InternalOp_BundledCatalog__LoadCatalogFromBundleAsync_b__19_1__MethodInfo); DO_APP_FUNC(0x02908F10, void, ContentCatalogProvider_InternalOp_BundledCatalog__LoadCatalogFromBundleAsync_b__19_0, (ContentCatalogProvider_InternalOp_BundledCatalog * __this, AsyncOperation_1 * loadOp, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD6A0, ContentCatalogProvider_InternalOp_BundledCatalog__LoadCatalogFromBundleAsync_b__19_0__MethodInfo); DO_APP_FUNC(0x003BB3C0, String *, ContentCatalogDataEntry_get_InternalId, (ContentCatalogDataEntry * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, ContentCatalogDataEntry_set_InternalId, (ContentCatalogDataEntry * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, String *, ContentCatalogDataEntry_get_Provider, (ContentCatalogDataEntry * __this, MethodInfo * method)); @@ -109585,7 +121917,7 @@ DO_APP_FUNC(0x003CD530, Type *, ContentCatalogData_CompactLocation_get_ResourceT DO_APP_FUNC(0x003BB3D0, String *, ContentCatalogData_CompactLocation_ToString, (ContentCatalogData_CompactLocation * __this, MethodInfo * method)); DO_APP_FUNC(0x0290AE50, int32_t, ContentCatalogData_CompactLocation_Hash, (ContentCatalogData_CompactLocation * __this, Type * t, MethodInfo * method)); DO_APP_FUNC(0x0290AEA0, void, ContentCatalogData_CompactLocation__ctor, (ContentCatalogData_CompactLocation * __this, ResourceLocationMap * locator, String * internalId, String * providerId, Object * dependencyKey, Object * data, int32_t depHash, String * primaryKey, Type * type, MethodInfo * method)); -DO_APP_FUNC(0x0290B250, bool, LegacyResourcesLocator_Locate, (LegacyResourcesLocator * __this, Object * key, Type * type, IList_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_ * locations, MethodInfo * method)); +DO_APP_FUNC(0x0290B250, bool, LegacyResourcesLocator_Locate, (LegacyResourcesLocator * __this, Object * key, Type * type, IList_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_ * * locations, MethodInfo * method)); DO_APP_FUNC(0x003CB690, IEnumerable_1_System_Object_ *, LegacyResourcesLocator_get_Keys, (LegacyResourcesLocator * __this, MethodInfo * method)); DO_APP_FUNC(0x0290B8F0, String *, LegacyResourcesLocator_get_LocatorId, (LegacyResourcesLocator * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, LegacyResourcesLocator__ctor, (LegacyResourcesLocator * __this, MethodInfo * method)); @@ -109604,7 +121936,7 @@ DO_APP_FUNC(0x0290BE90, void, ResourceLocationMap__ctor_1, (ResourceLocationMap DO_APP_FUNC(0x003BB3D0, Dictionary_2_System_Object_IList_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_ *, ResourceLocationMap_get_Locations, (ResourceLocationMap * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE960, void, ResourceLocationMap_set_Locations, (ResourceLocationMap * __this, Dictionary_2_System_Object_IList_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_ * value, MethodInfo * method)); DO_APP_FUNC(0x0290C9D0, IEnumerable_1_System_Object_ *, ResourceLocationMap_get_Keys, (ResourceLocationMap * __this, MethodInfo * method)); -DO_APP_FUNC(0x0290CA20, bool, ResourceLocationMap_Locate, (ResourceLocationMap * __this, Object * key, Type * type, IList_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_ * locations, MethodInfo * method)); +DO_APP_FUNC(0x0290CA20, bool, ResourceLocationMap_Locate, (ResourceLocationMap * __this, Object * key, Type * type, IList_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_ * * locations, MethodInfo * method)); DO_APP_FUNC(0x0290D1F0, void, ResourceLocationMap_Add, (ResourceLocationMap * __this, Object * key, IResourceLocation * location, MethodInfo * method)); DO_APP_FUNC(0x0290D350, void, ResourceLocationMap_Add_1, (ResourceLocationMap * __this, Object * key, IList_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_ * locations, MethodInfo * method)); DO_APP_FUNC(0x0290D3E0, Assembly__Array *, AddressablesRuntimeProperties_GetAssemblies, (MethodInfo * method)); @@ -109612,6 +121944,7 @@ DO_APP_FUNC(0x0290D420, int32_t, AddressablesRuntimeProperties_GetCachedValueCou DO_APP_FUNC(0x0290D4A0, void, AddressablesRuntimeProperties_SetPropertyValue, (String * name, String * val, MethodInfo * method)); DO_APP_FUNC(0x0290D550, void, AddressablesRuntimeProperties_ClearCachedPropertyValues, (MethodInfo * method)); DO_APP_FUNC(0x0290D5D0, String *, AddressablesRuntimeProperties_EvaluateProperty, (String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD348, AddressablesRuntimeProperties_EvaluateProperty__MethodInfo); DO_APP_FUNC(0x0290DA70, String *, AddressablesRuntimeProperties_EvaluateString, (String * input, MethodInfo * method)); DO_APP_FUNC(0x0290DB30, String *, AddressablesRuntimeProperties_EvaluateString_1, (String * inputString, uint16_t startDelimiter, uint16_t endDelimiter, Func_2_String_String_ * varFunc, MethodInfo * method)); DO_APP_FUNC(0x0290E120, void, AddressablesRuntimeProperties__cctor, (MethodInfo * method)); @@ -109626,6 +121959,7 @@ DO_APP_FUNC(0x0290EC50, void, CacheInitialization_CacheInitOp_Execute, (CacheIni DO_APP_FUNC(0x0290ECA0, void, CacheInitialization_CacheInitOp__ctor, (CacheInitialization_CacheInitOp * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, CacheInitialization_c_DisplayClass1_0__ctor, (CacheInitialization_c_DisplayClass1_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x0290ECE0, bool, CacheInitialization_c_DisplayClass1_0__InitializeAsync_b__0, (CacheInitialization_c_DisplayClass1_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD1C0, CacheInitialization_c_DisplayClass1_0__InitializeAsync_b__0__MethodInfo); DO_APP_FUNC(0x003BCD20, bool, CacheInitializationData_get_CompressionEnabled, (CacheInitializationData * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD30, void, CacheInitializationData_set_CompressionEnabled, (CacheInitializationData * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, String *, CacheInitializationData_get_CacheDirectoryOverride, (CacheInitializationData * __this, MethodInfo * method)); @@ -109652,10 +121986,13 @@ DO_APP_FUNC(0x02911FF0, void, InitializationOperation_LoadOpComplete, (Initializ DO_APP_FUNC(0x02912510, void, InitializationOperation_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InitializationOperation_c__ctor, (InitializationOperation_c * __this, MethodInfo * method)); DO_APP_FUNC(0x029125C0, bool, InitializationOperation_c__Execute_b__13_0, (InitializationOperation_c * __this, IResourceProvider * rp, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBCFD8, InitializationOperation_c__Execute_b__13_0__MethodInfo); DO_APP_FUNC(0x003AE050, void, InitializationOperation_c_DisplayClass16_0__ctor, (InitializationOperation_c_DisplayClass16_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x02912660, AsyncOperationHandle_1_UnityEngine_AddressableAssets_ResourceLocators_IResourceLocator_, InitializationOperation_c_DisplayClass16_0__LoadContentCatalog_b__0, (InitializationOperation_c_DisplayClass16_0 * __this, AsyncOperationHandle_1_UnityEngine_AddressableAssets_ResourceLocators_ContentCatalogData_ res, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBCEF8, InitializationOperation_c_DisplayClass16_0__LoadContentCatalog_b__0__MethodInfo); DO_APP_FUNC(0x003AE050, void, InitializationOperation_c_DisplayClass18_0__ctor, (InitializationOperation_c_DisplayClass18_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x029126C0, void, InitializationOperation_c_DisplayClass18_0__LoadContentCatalogInternal_b__0, (InitializationOperation_c_DisplayClass18_0 * __this, AsyncOperationHandle_1_UnityEngine_AddressableAssets_ResourceLocators_IResourceLocator_ op, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBCED0, InitializationOperation_c_DisplayClass18_0__LoadContentCatalogInternal_b__0__MethodInfo); DO_APP_FUNC(0x003BB3C0, String *, ResourceManagerRuntimeData_get_BuildTarget, (ResourceManagerRuntimeData * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, ResourceManagerRuntimeData_set_BuildTarget, (ResourceManagerRuntimeData * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, String *, ResourceManagerRuntimeData_get_SettingsHash, (ResourceManagerRuntimeData * __this, MethodInfo * method)); @@ -109687,7 +122024,7 @@ DO_APP_FUNC(0x018C3C90, TrackableId, AnchorConverter_ReplaceSpatialAnchor, (Obje DO_APP_FUNC(0x018C4060, ControllerModel *, ControllerModel_get_Left, (MethodInfo * method)); DO_APP_FUNC(0x018C40C0, ControllerModel *, ControllerModel_get_Right, (MethodInfo * method)); DO_APP_FUNC(0x018C4120, void, ControllerModel__ctor, (ControllerModel * __this, Handedness__Enum trackerHandedness, MethodInfo * method)); -DO_APP_FUNC(0x018C41B0, bool, ControllerModel_TryGetControllerModelKey, (ControllerModel * __this, uint64_t modelKey, MethodInfo * method)); +DO_APP_FUNC(0x018C41B0, bool, ControllerModel_TryGetControllerModelKey, (ControllerModel * __this, uint64_t * modelKey, MethodInfo * method)); DO_APP_FUNC(0x018C42D0, Task_1_System_Byte_ *, ControllerModel_TryGetControllerModel, (ControllerModel * __this, uint64_t modelKey, MethodInfo * method)); DO_APP_FUNC(0x018C44B0, void, ControllerModel__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ControllerModel_c_DisplayClass13_0__ctor, (ControllerModel_c_DisplayClass13_0 * __this, MethodInfo * method)); @@ -109700,27 +122037,27 @@ DO_APP_FUNC_METHODINFO(0x03C8F0B8, EyeLevelSceneOrigin_XrInput_trackingOriginUpd DO_APP_FUNC(0x018C5080, void, EyeLevelSceneOrigin_EnsureSceneOriginAtEyeLevel, (EyeLevelSceneOrigin * __this, MethodInfo * method)); DO_APP_FUNC(0x018C5280, void, EyeLevelSceneOrigin_SetEyeLevelTrackingOriginMode, (XRInputSubsystem * xrInput, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, EyeLevelSceneOrigin__ctor, (EyeLevelSceneOrigin * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, GestureEventType__Enum, GestureEventData_get_EventType, (GestureEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C173E0, GestureHandedness__Enum, GestureEventData_get_Handedness, (GestureEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018C5410, Nullable_1_Microsoft_MixedReality_OpenXR_TappedEventData_, GestureEventData_get_TappedData, (GestureEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018C54F0, Nullable_1_Microsoft_MixedReality_OpenXR_ManipulationEventData_, GestureEventData_get_ManipulationData, (GestureEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018C5600, Nullable_1_Microsoft_MixedReality_OpenXR_NavigationEventData_, GestureEventData_get_NavigationData, (GestureEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018C5710, bool, NavigationEventData_get_IsNavigatingX, (NavigationEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018C5720, bool, NavigationEventData_get_IsNavigatingY, (NavigationEventData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018C5730, bool, NavigationEventData_get_IsNavigatingZ, (NavigationEventData__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, GestureEventType__Enum, GestureEventData_get_EventType, (GestureEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C173E0, GestureHandedness__Enum, GestureEventData_get_Handedness, (GestureEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x018C5410, Nullable_1_Microsoft_MixedReality_OpenXR_TappedEventData_, GestureEventData_get_TappedData, (GestureEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x018C54F0, Nullable_1_Microsoft_MixedReality_OpenXR_ManipulationEventData_, GestureEventData_get_ManipulationData, (GestureEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x018C5600, Nullable_1_Microsoft_MixedReality_OpenXR_NavigationEventData_, GestureEventData_get_NavigationData, (GestureEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x018C5710, bool, NavigationEventData_get_IsNavigatingX, (NavigationEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x018C5720, bool, NavigationEventData_get_IsNavigatingY, (NavigationEventData * __this, MethodInfo * method)); +DO_APP_FUNC(0x018C5730, bool, NavigationEventData_get_IsNavigatingZ, (NavigationEventData * __this, MethodInfo * method)); DO_APP_FUNC(0x018C5740, void, GestureRecognizer__ctor, (GestureRecognizer * __this, GestureSettings__Enum settings, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, GestureSettings__Enum, GestureRecognizer_get_GestureSettings, (GestureRecognizer * __this, MethodInfo * method)); DO_APP_FUNC(0x018C5750, void, GestureRecognizer_set_GestureSettings, (GestureRecognizer * __this, GestureSettings__Enum value, MethodInfo * method)); DO_APP_FUNC(0x018C59F0, void, GestureRecognizer_Start, (GestureRecognizer * __this, MethodInfo * method)); DO_APP_FUNC(0x018C5A10, void, GestureRecognizer_Stop, (GestureRecognizer * __this, MethodInfo * method)); -DO_APP_FUNC(0x018C5A30, bool, GestureRecognizer_TryGetNextEvent, (GestureRecognizer * __this, GestureEventData eventData, MethodInfo * method)); +DO_APP_FUNC(0x018C5A30, bool, GestureRecognizer_TryGetNextEvent, (GestureRecognizer * __this, GestureEventData * eventData, MethodInfo * method)); DO_APP_FUNC(0x018C5B30, void, GestureRecognizer_CancelPendingGestures, (GestureRecognizer * __this, MethodInfo * method)); DO_APP_FUNC(0x018C5C20, void, GestureRecognizer_Destroy, (GestureRecognizer * __this, MethodInfo * method)); DO_APP_FUNC(0x018C5C20, void, GestureRecognizer_Dispose, (GestureRecognizer * __this, MethodInfo * method)); DO_APP_FUNC(0x018C5D10, HandMeshTracker *, HandMeshTracker_get_Left, (MethodInfo * method)); DO_APP_FUNC(0x018C5D70, HandMeshTracker *, HandMeshTracker_get_Right, (MethodInfo * method)); DO_APP_FUNC(0x018C5DD0, void, HandMeshTracker__ctor, (HandMeshTracker * __this, Handedness__Enum trackerHandedness, MethodInfo * method)); -DO_APP_FUNC(0x018C5E40, bool, HandMeshTracker_TryLocateHandMesh, (HandMeshTracker * __this, FrameTime__Enum frameTime, Pose pose, HandPoseType__Enum handPoseType, MethodInfo * method)); +DO_APP_FUNC(0x018C5E40, bool, HandMeshTracker_TryLocateHandMesh, (HandMeshTracker * __this, FrameTime__Enum frameTime, Pose * pose, HandPoseType__Enum handPoseType, MethodInfo * method)); DO_APP_FUNC(0x018C5F00, bool, HandMeshTracker_TryGetHandMesh, (HandMeshTracker * __this, FrameTime__Enum frameTime, Mesh * handMesh, HandPoseType__Enum handPoseType, MethodInfo * method)); DO_APP_FUNC(0x018C6510, void, HandMeshTracker__cctor, (MethodInfo * method)); DO_APP_FUNC(0x018C6710, HandTracker *, HandTracker_get_Left, (MethodInfo * method)); @@ -109728,15 +122065,15 @@ DO_APP_FUNC(0x018C6770, HandTracker *, HandTracker_get_Right, (MethodInfo * meth DO_APP_FUNC(0x018C67D0, void, HandTracker__ctor, (HandTracker * __this, Handedness__Enum trackerHandedness, MethodInfo * method)); DO_APP_FUNC(0x018C6840, bool, HandTracker_TryLocateHandJoints, (HandTracker * __this, FrameTime__Enum frameTime, HandJointLocation__Array * handJointLocations, MethodInfo * method)); DO_APP_FUNC(0x018C6A00, void, HandTracker__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x018C6C00, bool, HandJointLocation_get_IsTracked, (HandJointLocation__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018C6C50, Pose, HandJointLocation_get_Pose, (HandJointLocation__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003CC930, float, HandJointLocation_get_Radius, (HandJointLocation__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018C6C70, MeshType__Enum, MeshComputeSettings_get_MeshType, (MeshComputeSettings__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018C6C80, void, MeshComputeSettings_set_MeshType, (MeshComputeSettings__Boxed * __this, MeshType__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x018C6C90, VisualMeshLevelOfDetail__Enum, MeshComputeSettings_get_VisualMeshLevelOfDetail, (MeshComputeSettings__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018C6CA0, void, MeshComputeSettings_set_VisualMeshLevelOfDetail, (MeshComputeSettings__Boxed * __this, VisualMeshLevelOfDetail__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x018C6CB0, MeshComputeConsistency__Enum, MeshComputeSettings_get_MeshComputeConsistency, (MeshComputeSettings__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018C6CC0, void, MeshComputeSettings_set_MeshComputeConsistency, (MeshComputeSettings__Boxed * __this, MeshComputeConsistency__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x018C6C00, bool, HandJointLocation_get_IsTracked, (HandJointLocation * __this, MethodInfo * method)); +DO_APP_FUNC(0x018C6C50, Pose, HandJointLocation_get_Pose, (HandJointLocation * __this, MethodInfo * method)); +DO_APP_FUNC(0x003CC930, float, HandJointLocation_get_Radius, (HandJointLocation * __this, MethodInfo * method)); +DO_APP_FUNC(0x018C6C70, MeshType__Enum, MeshComputeSettings_get_MeshType, (MeshComputeSettings * __this, MethodInfo * method)); +DO_APP_FUNC(0x018C6C80, void, MeshComputeSettings_set_MeshType, (MeshComputeSettings * __this, MeshType__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x018C6C90, VisualMeshLevelOfDetail__Enum, MeshComputeSettings_get_VisualMeshLevelOfDetail, (MeshComputeSettings * __this, MethodInfo * method)); +DO_APP_FUNC(0x018C6CA0, void, MeshComputeSettings_set_VisualMeshLevelOfDetail, (MeshComputeSettings * __this, VisualMeshLevelOfDetail__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x018C6CB0, MeshComputeConsistency__Enum, MeshComputeSettings_get_MeshComputeConsistency, (MeshComputeSettings * __this, MethodInfo * method)); +DO_APP_FUNC(0x018C6CC0, void, MeshComputeSettings_set_MeshComputeConsistency, (MeshComputeSettings * __this, MeshComputeConsistency__Enum value, MethodInfo * method)); DO_APP_FUNC(0x018C6CD0, bool, MeshSettings_TrySetMeshComputeSettings, (MeshComputeSettings settings, MethodInfo * method)); DO_APP_FUNC(0x018C6D40, OpenXRContext *, OpenXRContext_get_Current, (MethodInfo * method)); DO_APP_FUNC(0x018C6DA0, uint64_t, OpenXRContext_get_Instance, (OpenXRContext * __this, MethodInfo * method)); @@ -109753,18 +122090,18 @@ DO_APP_FUNC(0x018C7B70, SpatialGraphNode *, SpatialGraphNode_FromStaticNodeId, ( DO_APP_FUNC(0x018C7C90, SpatialGraphNode *, SpatialGraphNode_FromDynamicNodeId, (Guid id, MethodInfo * method)); DO_APP_FUNC(0x00E382E0, Guid, SpatialGraphNode_get_Id, (SpatialGraphNode * __this, MethodInfo * method)); DO_APP_FUNC(0x018C7DB0, void, SpatialGraphNode_set_Id, (SpatialGraphNode * __this, Guid value, MethodInfo * method)); -DO_APP_FUNC(0x018C7DC0, bool, SpatialGraphNode_TryLocate, (SpatialGraphNode * __this, FrameTime__Enum frameTime, Pose pose, MethodInfo * method)); -DO_APP_FUNC(0x018C7E60, bool, SpatialGraphNode_TryLocate_1, (SpatialGraphNode * __this, int64_t qpcTime, Pose pose, MethodInfo * method)); +DO_APP_FUNC(0x018C7DC0, bool, SpatialGraphNode_TryLocate, (SpatialGraphNode * __this, FrameTime__Enum frameTime, Pose * pose, MethodInfo * method)); +DO_APP_FUNC(0x018C7E60, bool, SpatialGraphNode_TryLocate_1, (SpatialGraphNode * __this, int64_t qpcTime, Pose * pose, MethodInfo * method)); DO_APP_FUNC(0x018C7F00, void, SpatialGraphNode__ctor, (SpatialGraphNode * __this, MethodInfo * method)); DO_APP_FUNC(0x018C7F50, IReadOnlyList_1_Microsoft_MixedReality_OpenXR_ViewConfiguration_ *, ViewConfiguration_get_EnabledViewConfigurations, (MethodInfo * method)); -DO_APP_FUNC(0x018C8160, void, ViewConfiguration__ctor, (ViewConfiguration__Boxed * __this, OpenXRViewConfiguration openxrViewConfiguration, MethodInfo * method)); -DO_APP_FUNC(0x018C81C0, ViewConfigurationType__Enum, ViewConfiguration_get_ViewConfigurationType, (ViewConfiguration__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018C81D0, bool, ViewConfiguration_get_IsActive, (ViewConfiguration__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018C8270, IReadOnlyList_1_Microsoft_MixedReality_OpenXR_ReprojectionMode_ *, ViewConfiguration_get_SupportedReprojectionModes, (ViewConfiguration__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018C8290, void, ViewConfiguration_SetReprojectionSettings, (ViewConfiguration__Boxed * __this, ReprojectionSettings settings, MethodInfo * method)); +DO_APP_FUNC(0x018C8160, void, ViewConfiguration__ctor, (ViewConfiguration * __this, OpenXRViewConfiguration openxrViewConfiguration, MethodInfo * method)); +DO_APP_FUNC(0x018C81C0, ViewConfigurationType__Enum, ViewConfiguration_get_ViewConfigurationType, (ViewConfiguration * __this, MethodInfo * method)); +DO_APP_FUNC(0x018C81D0, bool, ViewConfiguration_get_IsActive, (ViewConfiguration * __this, MethodInfo * method)); +DO_APP_FUNC(0x018C8270, IReadOnlyList_1_Microsoft_MixedReality_OpenXR_ReprojectionMode_ *, ViewConfiguration_get_SupportedReprojectionModes, (ViewConfiguration * __this, MethodInfo * method)); +DO_APP_FUNC(0x018C8290, void, ViewConfiguration_SetReprojectionSettings, (ViewConfiguration * __this, ReprojectionSettings settings, MethodInfo * method)); DO_APP_FUNC(0x018C82F0, void, ViewConfiguration__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x018C83B0, ReprojectionMode__Enum, ReprojectionSettings_get_ReprojectionMode, (ReprojectionSettings__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018C8410, void, ReprojectionSettings_set_ReprojectionMode, (ReprojectionSettings__Boxed * __this, ReprojectionMode__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x018C83B0, ReprojectionMode__Enum, ReprojectionSettings_get_ReprojectionMode, (ReprojectionSettings * __this, MethodInfo * method)); +DO_APP_FUNC(0x018C8410, void, ReprojectionSettings_set_ReprojectionMode, (ReprojectionSettings * __this, ReprojectionMode__Enum value, MethodInfo * method)); DO_APP_FUNC(0x018C8470, IReadOnlyList_1_System_String_ *, XRAnchorStore_get_PersistedAnchorNames, (XRAnchorStore * __this, MethodInfo * method)); DO_APP_FUNC(0x018C8490, TrackableId, XRAnchorStore_LoadAnchor, (XRAnchorStore * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x018C85E0, bool, XRAnchorStore_TryPersistAnchor, (XRAnchorStore * __this, TrackableId trackableId, String * name, MethodInfo * method)); @@ -109773,10 +122110,10 @@ DO_APP_FUNC(0x018C8640, void, XRAnchorStore_Clear, (XRAnchorStore * __this, Meth DO_APP_FUNC(0x018C8660, Task_1_Microsoft_MixedReality_OpenXR_XRAnchorStore_ *, XRAnchorStore_LoadAsync, (XRAnchorSubsystem * anchorSubsystem, MethodInfo * method)); DO_APP_FUNC(0x018C87E0, Task_1_Microsoft_MixedReality_OpenXR_XRAnchorStore_ *, XRAnchorStore_LoadAnchorStoreAsync, (XRAnchorSubsystem * anchorSubsystem, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, XRAnchorStore__ctor, (XRAnchorStore * __this, OpenXRAnchorStore * openxrAnchorStore, MethodInfo * method)); -DO_APP_FUNC(0x018C8960, void, XRAnchorStore_LoadAsync_d_6_MoveNext, (XRAnchorStore_LoadAsync_d_6__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018C8C60, void, XRAnchorStore_LoadAsync_d_6_SetStateMachine, (XRAnchorStore_LoadAsync_d_6__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x018C8CD0, void, XRAnchorStore_LoadAnchorStoreAsync_d_7_MoveNext, (XRAnchorStore_LoadAnchorStoreAsync_d_7__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018C8FD0, void, XRAnchorStore_LoadAnchorStoreAsync_d_7_SetStateMachine, (XRAnchorStore_LoadAnchorStoreAsync_d_7__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x018C8960, void, XRAnchorStore_LoadAsync_d_6_MoveNext, (XRAnchorStore_LoadAsync_d_6 * __this, MethodInfo * method)); +DO_APP_FUNC(0x018C8C60, void, XRAnchorStore_LoadAsync_d_6_SetStateMachine, (XRAnchorStore_LoadAsync_d_6 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x018C8CD0, void, XRAnchorStore_LoadAnchorStoreAsync_d_7_MoveNext, (XRAnchorStore_LoadAnchorStoreAsync_d_7 * __this, MethodInfo * method)); +DO_APP_FUNC(0x018C8FD0, void, XRAnchorStore_LoadAnchorStoreAsync_d_7_SetStateMachine, (XRAnchorStore_LoadAnchorStoreAsync_d_7 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); DO_APP_FUNC(0x018C9040, void, XRAnchorTransferBatch__ctor, (XRAnchorTransferBatch * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, XRAnchorTransferBatch__ctor_1, (XRAnchorTransferBatch * __this, AnchorTransferBatch * anchorTransferBatch, MethodInfo * method)); DO_APP_FUNC(0x018C90D0, IReadOnlyList_1_System_String_ *, XRAnchorTransferBatch_get_AnchorNames, (XRAnchorTransferBatch * __this, MethodInfo * method)); @@ -109787,10 +122124,10 @@ DO_APP_FUNC(0x018C9160, TrackableId, XRAnchorTransferBatch_LoadAnchor, (XRAnchor DO_APP_FUNC(0x018C9210, TrackableId, XRAnchorTransferBatch_LoadAndReplaceAnchor, (XRAnchorTransferBatch * __this, String * name, TrackableId trackableId, MethodInfo * method)); DO_APP_FUNC(0x018C92C0, Task_1_System_IO_Stream_ *, XRAnchorTransferBatch_ExportAsync, (XRAnchorTransferBatch * anchorTransferBatch, MethodInfo * method)); DO_APP_FUNC(0x018C9440, Task_1_Microsoft_MixedReality_OpenXR_XRAnchorTransferBatch_ *, XRAnchorTransferBatch_ImportAsync, (Stream * inputStream, MethodInfo * method)); -DO_APP_FUNC(0x018C95C0, void, XRAnchorTransferBatch_ExportAsync_d_10_MoveNext, (XRAnchorTransferBatch_ExportAsync_d_10__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018C9A80, void, XRAnchorTransferBatch_ExportAsync_d_10_SetStateMachine, (XRAnchorTransferBatch_ExportAsync_d_10__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x018C9AF0, void, XRAnchorTransferBatch_ImportAsync_d_11_MoveNext, (XRAnchorTransferBatch_ImportAsync_d_11__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018CA000, void, XRAnchorTransferBatch_ImportAsync_d_11_SetStateMachine, (XRAnchorTransferBatch_ImportAsync_d_11__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x018C95C0, void, XRAnchorTransferBatch_ExportAsync_d_10_MoveNext, (XRAnchorTransferBatch_ExportAsync_d_10 * __this, MethodInfo * method)); +DO_APP_FUNC(0x018C9A80, void, XRAnchorTransferBatch_ExportAsync_d_10_SetStateMachine, (XRAnchorTransferBatch_ExportAsync_d_10 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x018C9AF0, void, XRAnchorTransferBatch_ImportAsync_d_11_MoveNext, (XRAnchorTransferBatch_ImportAsync_d_11 * __this, MethodInfo * method)); +DO_APP_FUNC(0x018CA000, void, XRAnchorTransferBatch_ImportAsync_d_11_SetStateMachine, (XRAnchorTransferBatch_ImportAsync_d_11 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); DO_APP_FUNC(0x018CA070, void, HandTrackingFeaturePlugin__ctor, (HandTrackingFeaturePlugin * __this, MethodInfo * method)); DO_APP_FUNC(0x018CA1E0, void *, HandTrackingFeaturePlugin_HookGetInstanceProcAddr, (HandTrackingFeaturePlugin * __this, void * func, MethodInfo * method)); DO_APP_FUNC(0x018CA250, bool, HandTrackingFeaturePlugin_OnInstanceCreate, (HandTrackingFeaturePlugin * __this, uint64_t instance, MethodInfo * method)); @@ -109876,12 +122213,12 @@ DO_APP_FUNC(0x018CEFC0, void, NativeLib_SetSceneObserverSceneData, (NativeLibTok DO_APP_FUNC(0x018CF080, void, NativeLib_CreatePlaneProvider, (NativeLibToken__Enum token, MethodInfo * method)); DO_APP_FUNC(0x018CF100, void, NativeLib_SetPlanefindingActive, (NativeLibToken__Enum token, bool isActive, MethodInfo * method)); DO_APP_FUNC(0x018CF190, void, NativeLib_SetPlaneDetectionMode, (NativeLibToken__Enum token, PlaneDetectionMode__Enum planeDetectionMode, MethodInfo * method)); -DO_APP_FUNC(0x018CF220, void, NativeLib_GetNumPlaneChanges, (NativeLibToken__Enum token, FrameTime__Enum frameTime, uint32_t numAddedPlanes, uint32_t numUpdatedPlanes, uint32_t numRemovedPlanes, MethodInfo * method)); +DO_APP_FUNC(0x018CF220, void, NativeLib_GetNumPlaneChanges, (NativeLibToken__Enum token, FrameTime__Enum frameTime, uint32_t * numAddedPlanes, uint32_t * numUpdatedPlanes, uint32_t * numRemovedPlanes, MethodInfo * method)); DO_APP_FUNC(0x018CF2D0, void, NativeLib_GetPlaneChanges, (NativeLibToken__Enum token, uint32_t addedPlanesSize, Void * addedPlanes, uint32_t updatedPlanesSize, Void * updatedPlanes, uint32_t removedPlanesSize, Void * removedPlanes, MethodInfo * method)); DO_APP_FUNC(0x018CF380, void, NativeLib_CreateAnchorProvider, (NativeLibToken__Enum token, MethodInfo * method)); DO_APP_FUNC(0x018CF400, bool, NativeLib_TryAddAnchor, (NativeLibToken__Enum token, FrameTime__Enum frameTime, Quaternion rotation, Vector3 position, Void * anchorPtr, MethodInfo * method)); DO_APP_FUNC(0x018CF4E0, bool, NativeLib_TryRemoveAnchor, (NativeLibToken__Enum token, Guid anchorId, MethodInfo * method)); -DO_APP_FUNC(0x018CF580, void, NativeLib_GetNumAnchorChanges, (NativeLibToken__Enum token, FrameTime__Enum frameTime, uint32_t numAddedAnchors, uint32_t numUpdatedAnchors, uint32_t numRemovedAnchors, MethodInfo * method)); +DO_APP_FUNC(0x018CF580, void, NativeLib_GetNumAnchorChanges, (NativeLibToken__Enum token, FrameTime__Enum frameTime, uint32_t * numAddedAnchors, uint32_t * numUpdatedAnchors, uint32_t * numRemovedAnchors, MethodInfo * method)); DO_APP_FUNC(0x018CF630, void, NativeLib_GetAnchorChanges, (NativeLibToken__Enum token, uint32_t addedAnchorsSize, Void * addedAnchors, uint32_t updatedAnchorsSize, Void * updatedAnchors, uint32_t removedAnchorsSize, Void * removedAnchors, MethodInfo * method)); DO_APP_FUNC(0x018CF6E0, bool, NativeLib_LoadAnchorStore, (NativeLibToken__Enum token, MethodInfo * method)); DO_APP_FUNC(0x018CF760, uint32_t, NativeLib_GetNumPersistedAnchorNames, (NativeLibToken__Enum token, MethodInfo * method)); @@ -109892,22 +122229,22 @@ DO_APP_FUNC(0x018CFA00, bool, NativeLib_TryPersistAnchor, (NativeLibToken__Enum DO_APP_FUNC(0x018CFAC0, void, NativeLib_UnpersistAnchor, (NativeLibToken__Enum token, String * name, MethodInfo * method)); DO_APP_FUNC(0x018CFB70, void, NativeLib_ClearPersistedAnchors, (NativeLibToken__Enum token, MethodInfo * method)); DO_APP_FUNC(0x018CFBF0, bool, NativeLib_GetHandJointData, (NativeLibToken__Enum token, Handedness__Enum handedness, FrameTime__Enum frameTime, HandJointLocation__Array * handJoints, MethodInfo * method)); -DO_APP_FUNC(0x018CFCB0, bool, NativeLib_TryLocateHandMesh, (NativeLibToken__Enum token, Handedness__Enum handedness, FrameTime__Enum frameTime, HandPoseType__Enum handPoseType, Pose pose, MethodInfo * method)); -DO_APP_FUNC(0x018CFD70, bool, NativeLib_TryGetHandMesh, (NativeLibToken__Enum token, Handedness__Enum handedness, FrameTime__Enum frameTime, HandPoseType__Enum handPoseType, uint64_t vertexBufferKey, uint32_t vertexCount, Vector3__Array * vertexPositions, Vector3__Array * vertexNormals, uint32_t indexBufferKey, uint32_t indexCount, Int32__Array * indices, MethodInfo * method)); -DO_APP_FUNC(0x018CFEB0, bool, NativeLib_TryGetHandMeshBufferSizes, (NativeLibToken__Enum token, uint32_t maxVertexCount, uint32_t maxIndexCount, MethodInfo * method)); -DO_APP_FUNC(0x018CFF50, bool, NativeLib_TryGetControllerModelKey, (NativeLibToken__Enum token, Handedness__Enum handedness, uint64_t modelKey, MethodInfo * method)); -DO_APP_FUNC(0x018CFFF0, bool, NativeLib_TryGetControllerModel, (NativeLibToken__Enum token, uint64_t modelKey, uint32_t bufferInputCapacity, uint32_t bufferOutputCount, Byte__Array * modelBuffer, MethodInfo * method)); +DO_APP_FUNC(0x018CFCB0, bool, NativeLib_TryLocateHandMesh, (NativeLibToken__Enum token, Handedness__Enum handedness, FrameTime__Enum frameTime, HandPoseType__Enum handPoseType, Pose * pose, MethodInfo * method)); +DO_APP_FUNC(0x018CFD70, bool, NativeLib_TryGetHandMesh, (NativeLibToken__Enum token, Handedness__Enum handedness, FrameTime__Enum frameTime, HandPoseType__Enum handPoseType, uint64_t * vertexBufferKey, uint32_t * vertexCount, Vector3__Array * vertexPositions, Vector3__Array * vertexNormals, uint32_t * indexBufferKey, uint32_t * indexCount, Int32__Array * indices, MethodInfo * method)); +DO_APP_FUNC(0x018CFEB0, bool, NativeLib_TryGetHandMeshBufferSizes, (NativeLibToken__Enum token, uint32_t * maxVertexCount, uint32_t * maxIndexCount, MethodInfo * method)); +DO_APP_FUNC(0x018CFF50, bool, NativeLib_TryGetControllerModelKey, (NativeLibToken__Enum token, Handedness__Enum handedness, uint64_t * modelKey, MethodInfo * method)); +DO_APP_FUNC(0x018CFFF0, bool, NativeLib_TryGetControllerModel, (NativeLibToken__Enum token, uint64_t modelKey, uint32_t bufferInputCapacity, uint32_t * bufferOutputCount, Byte__Array * modelBuffer, MethodInfo * method)); DO_APP_FUNC(0x018D00C0, bool, NativeLib_TryEnableRemotingOverride, (NativeLibToken__Enum token, MethodInfo * method)); DO_APP_FUNC(0x018D0140, void, NativeLib_ResetRemotingOverride, (NativeLibToken__Enum token, MethodInfo * method)); DO_APP_FUNC(0x018D01C0, void, NativeLib_ConnectRemoting, (NativeLibToken__Enum token, RemotingConfiguration_1 configuration, MethodInfo * method)); DO_APP_FUNC(0x018D02B0, void, NativeLib_ListenRemoting, (NativeLibToken__Enum token, RemotingListenConfiguration listenConfiguration, bool secureListen, String * certificateStorePath, String * subjectName, String * keyPassPhrase, String * authenticationRealm, String * secureToken, MethodInfo * method)); DO_APP_FUNC(0x018D0470, void, NativeLib_DisconnectRemoting, (NativeLibToken__Enum token, MethodInfo * method)); -DO_APP_FUNC(0x018D04F0, bool, NativeLib_TryGetRemotingConnectionState, (NativeLibToken__Enum token, ConnectionState__Enum connectionState, DisconnectReason__Enum disconnectReason, MethodInfo * method)); -DO_APP_FUNC(0x018D0590, bool, NativeLib_TryCreateSpaceFromStaticNodeId, (NativeLibToken__Enum token, Guid id, uint64_t spaceId, MethodInfo * method)); -DO_APP_FUNC(0x018D0640, bool, NativeLib_TryCreateSpaceFromDynamicNodeId, (NativeLibToken__Enum token, Guid id, uint64_t spaceId, MethodInfo * method)); -DO_APP_FUNC(0x018D06F0, bool, NativeLib_TryLocateSpatialGraphNodeSpace, (NativeLibToken__Enum token, uint64_t spaceId, FrameTime__Enum frameTime, Pose pose, MethodInfo * method)); -DO_APP_FUNC(0x018D07A0, bool, NativeLib_TryLocateSpatialGraphNodeSpace_1, (NativeLibToken__Enum token, uint64_t spaceId, int64_t qpcTime, Pose pose, MethodInfo * method)); -DO_APP_FUNC(0x018D0850, bool, NativeLib_TryLocateViewSpace, (NativeLibToken__Enum nativeLibToken, FrameTime__Enum frameTime, Pose pose, int64_t time, MethodInfo * method)); +DO_APP_FUNC(0x018D04F0, bool, NativeLib_TryGetRemotingConnectionState, (NativeLibToken__Enum token, ConnectionState__Enum * connectionState, DisconnectReason__Enum * disconnectReason, MethodInfo * method)); +DO_APP_FUNC(0x018D0590, bool, NativeLib_TryCreateSpaceFromStaticNodeId, (NativeLibToken__Enum token, Guid id, uint64_t * spaceId, MethodInfo * method)); +DO_APP_FUNC(0x018D0640, bool, NativeLib_TryCreateSpaceFromDynamicNodeId, (NativeLibToken__Enum token, Guid id, uint64_t * spaceId, MethodInfo * method)); +DO_APP_FUNC(0x018D06F0, bool, NativeLib_TryLocateSpatialGraphNodeSpace, (NativeLibToken__Enum token, uint64_t spaceId, FrameTime__Enum frameTime, Pose * pose, MethodInfo * method)); +DO_APP_FUNC(0x018D07A0, bool, NativeLib_TryLocateSpatialGraphNodeSpace_1, (NativeLibToken__Enum token, uint64_t spaceId, int64_t qpcTime, Pose * pose, MethodInfo * method)); +DO_APP_FUNC(0x018D0850, bool, NativeLib_TryLocateViewSpace, (NativeLibToken__Enum nativeLibToken, FrameTime__Enum frameTime, Pose * pose, int64_t * time, MethodInfo * method)); DO_APP_FUNC(0x018D0900, void *, NativeLib_TryAcquireSceneCoordinateSystem, (NativeLibToken__Enum token, Pose poseInScene, MethodInfo * method)); DO_APP_FUNC(0x018D09B0, void *, NativeLib_TryAcquirePerceptionSpatialAnchor, (NativeLibToken__Enum token, uint64_t anchorHandle, MethodInfo * method)); DO_APP_FUNC(0x018D0A40, void *, NativeLib_TryAcquirePerceptionSpatialAnchor_1, (NativeLibToken__Enum token, Guid trackableId, MethodInfo * method)); @@ -109919,7 +122256,7 @@ DO_APP_FUNC(0x018D0E10, uint64_t, NativeLib_TryCreateGestureRecognizer, (NativeL DO_APP_FUNC(0x018D0EA0, void, NativeLib_DestroyGestureRecognizer, (NativeLibToken__Enum nativeLibToken, uint64_t gestureRecognizer, MethodInfo * method)); DO_APP_FUNC(0x018D0F30, bool, NativeLib_TrySetGestureSettings, (NativeLibToken__Enum nativeLibToken, uint64_t gestureRecognizer, GestureSettings__Enum settings, MethodInfo * method)); DO_APP_FUNC(0x018D0FD0, void, NativeLib_CancelPendingGesture, (NativeLibToken__Enum nativeLibToken, uint64_t gestureRecognizer, MethodInfo * method)); -DO_APP_FUNC(0x018D1060, bool, NativeLib_TryGetNextEventData, (NativeLibToken__Enum nativeLibToken, uint64_t gestureRecognizer, GestureEventData eventData, MethodInfo * method)); +DO_APP_FUNC(0x018D1060, bool, NativeLib_TryGetNextEventData, (NativeLibToken__Enum nativeLibToken, uint64_t gestureRecognizer, GestureEventData * eventData, MethodInfo * method)); DO_APP_FUNC(0x018D1100, void, NativeLib_StartGestureRecognizer, (NativeLibToken__Enum nativeLibToken, uint64_t gestureRecognizer, MethodInfo * method)); DO_APP_FUNC(0x018D1190, void, NativeLib_StopGestureRecognizer, (NativeLibToken__Enum nativeLibToken, uint64_t gestureRecognizer, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NativeLib__ctor, (NativeLib * __this, MethodInfo * method)); @@ -109944,8 +122281,8 @@ DO_APP_FUNC(0x018D2C60, void, AnchorSubsystem_OpenXRProvider_Stop, (AnchorSubsys DO_APP_FUNC(0x003AE050, void, AnchorSubsystem_OpenXRProvider_Destroy, (AnchorSubsystem_OpenXRProvider * __this, MethodInfo * method)); DO_APP_FUNC(0x018D2CE0, TrackableChanges_1_XRAnchor_, AnchorSubsystem_OpenXRProvider_GetChanges, (AnchorSubsystem_OpenXRProvider * __this, XRAnchor defaultAnchor, Allocator__Enum allocator, MethodInfo * method)); DO_APP_FUNC(0x018D3600, XRAnchor, AnchorSubsystem_OpenXRProvider_ToXRAnchor, (AnchorSubsystem_OpenXRProvider * __this, NativeAnchor nativeAnchor, MethodInfo * method)); -DO_APP_FUNC(0x018D36D0, bool, AnchorSubsystem_OpenXRProvider_TryAddAnchor, (AnchorSubsystem_OpenXRProvider * __this, Pose pose, XRAnchor anchor, MethodInfo * method)); -DO_APP_FUNC(0x018D38C0, bool, AnchorSubsystem_OpenXRProvider_TryAttachAnchor, (AnchorSubsystem_OpenXRProvider * __this, TrackableId trackableToAffix, Pose pose, XRAnchor anchor, MethodInfo * method)); +DO_APP_FUNC(0x018D36D0, bool, AnchorSubsystem_OpenXRProvider_TryAddAnchor, (AnchorSubsystem_OpenXRProvider * __this, Pose pose, XRAnchor * anchor, MethodInfo * method)); +DO_APP_FUNC(0x018D38C0, bool, AnchorSubsystem_OpenXRProvider_TryAttachAnchor, (AnchorSubsystem_OpenXRProvider * __this, TrackableId trackableToAffix, Pose pose, XRAnchor * anchor, MethodInfo * method)); DO_APP_FUNC(0x018D3910, bool, AnchorSubsystem_OpenXRProvider_TryRemoveAnchor, (AnchorSubsystem_OpenXRProvider * __this, TrackableId anchorId, MethodInfo * method)); DO_APP_FUNC(0x018D39D0, void, AnchorSubsystemController__ctor, (AnchorSubsystemController * __this, NativeLibToken__Enum token, IOpenXRContext * context, MethodInfo * method)); DO_APP_FUNC(0x018D3A30, void, AnchorSubsystemController_OnSubsystemCreate, (AnchorSubsystemController * __this, ISubsystemPlugin * plugin, MethodInfo * method)); @@ -109960,10 +122297,10 @@ DO_APP_FUNC(0x018D3E50, TrackableId, AnchorTransferBatch_LoadAndReplaceAnchor, ( DO_APP_FUNC(0x018D3EF0, Task_1_Microsoft_MixedReality_OpenXR_SerializationCompletionReason_ *, AnchorTransferBatch_ExportAsync, (AnchorTransferBatch * __this, Stream * output, MethodInfo * method)); DO_APP_FUNC(0x018D4010, Task_1_Microsoft_MixedReality_OpenXR_SerializationCompletionReason_ *, AnchorTransferBatch_ImportAsync, (AnchorTransferBatch * __this, Stream * input, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AnchorTransferBatch__ctor, (AnchorTransferBatch * __this, MethodInfo * method)); -DO_APP_FUNC(0x018D4130, void, AnchorTransferBatch_ExportAsync_d_7_MoveNext, (AnchorTransferBatch_ExportAsync_d_7__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018D43E0, void, AnchorTransferBatch_ExportAsync_d_7_SetStateMachine, (AnchorTransferBatch_ExportAsync_d_7__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x018D4450, void, AnchorTransferBatch_ImportAsync_d_8_MoveNext, (AnchorTransferBatch_ImportAsync_d_8__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018D4700, void, AnchorTransferBatch_ImportAsync_d_8_SetStateMachine, (AnchorTransferBatch_ImportAsync_d_8__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x018D4130, void, AnchorTransferBatch_ExportAsync_d_7_MoveNext, (AnchorTransferBatch_ExportAsync_d_7 * __this, MethodInfo * method)); +DO_APP_FUNC(0x018D43E0, void, AnchorTransferBatch_ExportAsync_d_7_SetStateMachine, (AnchorTransferBatch_ExportAsync_d_7 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x018D4450, void, AnchorTransferBatch_ImportAsync_d_8_MoveNext, (AnchorTransferBatch_ImportAsync_d_8 * __this, MethodInfo * method)); +DO_APP_FUNC(0x018D4700, void, AnchorTransferBatch_ImportAsync_d_8_SetStateMachine, (AnchorTransferBatch_ImportAsync_d_8 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); DO_APP_FUNC(0x018D4770, bool, GestureSubsystemExtensions_IsValid, (NativeSpaceLocationFlags__Enum flags, MethodInfo * method)); DO_APP_FUNC(0x018D4790, bool, GestureSubsystemExtensions_IsTracked, (NativeSpaceLocationFlags__Enum flags, MethodInfo * method)); DO_APP_FUNC(0x018D47B0, bool, GestureSubsystemExtensions_IsTappedEvent, (NativeGestureEventData eventData, MethodInfo * method)); @@ -109973,7 +122310,7 @@ DO_APP_FUNC(0x018D4920, GestureSubsystem *, GestureSubsystem_TryCreateGestureSub DO_APP_FUNC(0x018D4C90, void, GestureSubsystem__ctor, (GestureSubsystem * __this, GestureSettings__Enum settings, uint64_t handle, MethodInfo * method)); DO_APP_FUNC(0x003CC980, GestureSettings__Enum, GestureSubsystem_get_GestureSettings, (GestureSubsystem * __this, MethodInfo * method)); DO_APP_FUNC(0x018D4D40, void, GestureSubsystem_set_GestureSettings, (GestureSubsystem * __this, GestureSettings__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x018D4F20, bool, GestureSubsystem_TryGetNextEvent, (GestureSubsystem * __this, GestureEventData eventData, MethodInfo * method)); +DO_APP_FUNC(0x018D4F20, bool, GestureSubsystem_TryGetNextEvent, (GestureSubsystem * __this, GestureEventData * eventData, MethodInfo * method)); DO_APP_FUNC(0x018D5010, void, GestureSubsystem_CancelPendingGestures, (GestureSubsystem * __this, MethodInfo * method)); DO_APP_FUNC(0x018D50F0, void, GestureSubsystem_DisposeNativeResources, (GestureSubsystem * __this, MethodInfo * method)); DO_APP_FUNC(0x018D51D0, void, GestureSubsystem_Start, (GestureSubsystem * __this, MethodInfo * method)); @@ -110029,8 +122366,8 @@ DO_APP_FUNC(0x018D88F0, void, PluginEnvironmentSubsystem_OnSessionCreated, (Meth DO_APP_FUNC(0x003AE050, void, PluginEnvironmentSubsystem__ctor, (PluginEnvironmentSubsystem * __this, MethodInfo * method)); DO_APP_FUNC(0x018D8A30, void, RaycastSubsystem_RegisterDescriptor, (MethodInfo * method)); DO_APP_FUNC(0x018D8C40, void, RaycastSubsystem__ctor, (RaycastSubsystem * __this, MethodInfo * method)); -DO_APP_FUNC(0x018D8C90, bool, RaycastSubsystem_OpenXRProvider_TryAddRaycast, (RaycastSubsystem_OpenXRProvider * __this, Vector2 screenPoint, float estimatedDistance, XRRaycast raycast, MethodInfo * method)); -DO_APP_FUNC(0x018D8D10, bool, RaycastSubsystem_OpenXRProvider_TryAddRaycast_1, (RaycastSubsystem_OpenXRProvider * __this, Ray ray, float estimatedDistance, XRRaycast raycast, MethodInfo * method)); +DO_APP_FUNC(0x018D8C90, bool, RaycastSubsystem_OpenXRProvider_TryAddRaycast, (RaycastSubsystem_OpenXRProvider * __this, Vector2 screenPoint, float estimatedDistance, XRRaycast * raycast, MethodInfo * method)); +DO_APP_FUNC(0x018D8D10, bool, RaycastSubsystem_OpenXRProvider_TryAddRaycast_1, (RaycastSubsystem_OpenXRProvider * __this, Ray ray, float estimatedDistance, XRRaycast * raycast, MethodInfo * method)); DO_APP_FUNC(0x018D8D90, void, RaycastSubsystem_OpenXRProvider_RemoveRaycast, (RaycastSubsystem_OpenXRProvider * __this, TrackableId trackableId, MethodInfo * method)); DO_APP_FUNC(0x018D8DF0, void, RaycastSubsystem_OpenXRProvider__ctor, (RaycastSubsystem_OpenXRProvider * __this, MethodInfo * method)); DO_APP_FUNC(0x018D39D0, void, RaycastSubsystemController__ctor, (RaycastSubsystemController * __this, NativeLibToken__Enum token, IOpenXRContext * context, MethodInfo * method)); @@ -110073,13 +122410,13 @@ DO_APP_FUNC(0x003AE050, void, SubsystemController_OnSubsystemCreate, (SubsystemC DO_APP_FUNC(0x003AE050, void, SubsystemController_OnSubsystemStart, (SubsystemController * __this, ISubsystemPlugin * plugin, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SubsystemController_OnSubsystemStop, (SubsystemController * __this, ISubsystemPlugin * plugin, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SubsystemController_OnSubsystemDestroy, (SubsystemController * __this, ISubsystemPlugin * plugin, MethodInfo * method)); -DO_APP_FUNC(0x018D9BE0, void, NativeReprojectionSettings__ctor, (NativeReprojectionSettings__Boxed * __this, ReprojectionSettings settings, MethodInfo * method)); -DO_APP_FUNC(0x00471920, ViewConfigurationType__Enum, OpenXRViewConfiguration_get_ViewConfigurationType, (OpenXRViewConfiguration__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018D9CE0, bool, OpenXRViewConfiguration_HasTrackingFlags, (OpenXRViewConfiguration__Boxed * __this, NativeSpaceLocationFlags__Enum nativeSpaceLocationFlags, MethodInfo * method)); -DO_APP_FUNC(0x018D9D80, bool, OpenXRViewConfiguration_get_IsActive, (OpenXRViewConfiguration__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, IReadOnlyList_1_Microsoft_MixedReality_OpenXR_ReprojectionMode_ *, OpenXRViewConfiguration_get_SupportedReprojectionModes, (OpenXRViewConfiguration__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018D9E10, void, OpenXRViewConfiguration__ctor, (OpenXRViewConfiguration__Boxed * __this, NativeLibToken__Enum nativeLibToken, ViewConfigurationType__Enum viewConfigurationType, MethodInfo * method)); -DO_APP_FUNC(0x018D9FC0, void, OpenXRViewConfiguration_SetReprojectionSettings, (OpenXRViewConfiguration__Boxed * __this, ReprojectionSettings reprojectionSettings, MethodInfo * method)); +DO_APP_FUNC(0x018D9BE0, void, NativeReprojectionSettings__ctor, (NativeReprojectionSettings * __this, ReprojectionSettings settings, MethodInfo * method)); +DO_APP_FUNC(0x00471920, ViewConfigurationType__Enum, OpenXRViewConfiguration_get_ViewConfigurationType, (OpenXRViewConfiguration * __this, MethodInfo * method)); +DO_APP_FUNC(0x018D9CE0, bool, OpenXRViewConfiguration_HasTrackingFlags, (OpenXRViewConfiguration * __this, NativeSpaceLocationFlags__Enum nativeSpaceLocationFlags, MethodInfo * method)); +DO_APP_FUNC(0x018D9D80, bool, OpenXRViewConfiguration_get_IsActive, (OpenXRViewConfiguration * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, IReadOnlyList_1_Microsoft_MixedReality_OpenXR_ReprojectionMode_ *, OpenXRViewConfiguration_get_SupportedReprojectionModes, (OpenXRViewConfiguration * __this, MethodInfo * method)); +DO_APP_FUNC(0x018D9E10, void, OpenXRViewConfiguration__ctor, (OpenXRViewConfiguration * __this, NativeLibToken__Enum nativeLibToken, ViewConfigurationType__Enum viewConfigurationType, MethodInfo * method)); +DO_APP_FUNC(0x018D9FC0, void, OpenXRViewConfiguration_SetReprojectionSettings, (OpenXRViewConfiguration * __this, ReprojectionSettings reprojectionSettings, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, IReadOnlyList_1_Microsoft_MixedReality_OpenXR_ViewConfiguration_ *, OpenXRViewConfigurationSettings_get_EnabledViewConfigurations, (OpenXRViewConfigurationSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x018DA0C0, void, OpenXRViewConfigurationSettings__ctor, (OpenXRViewConfigurationSettings * __this, NativeLibToken__Enum token, IOpenXRContext * context, MethodInfo * method)); DO_APP_FUNC(0x018DA360, void, OpenXRViewConfigurationSettings_Context_SessionBegun, (OpenXRViewConfigurationSettings * __this, IOpenXRContext * sender, EventArgs * args, MethodInfo * method)); @@ -110101,7 +122438,7 @@ DO_APP_FUNC(0x003CC920, void, LabelWidthAttribute__ctor, (LabelWidthAttribute * DO_APP_FUNC(0x018DAB80, IEnumerator *, AppRemoting_Connect, (RemotingConfiguration_1 configuration, MethodInfo * method)); DO_APP_FUNC(0x018DACF0, IEnumerator *, AppRemoting_Listen, (RemotingListenConfiguration listenConfiguration, Action * onRemotingListenCompleted, MethodInfo * method)); DO_APP_FUNC(0x018DADB0, void, AppRemoting_Disconnect, (MethodInfo * method)); -DO_APP_FUNC(0x018DAE20, bool, AppRemoting_TryGetConnectionState, (ConnectionState__Enum connectionState, DisconnectReason__Enum disconnectReason, MethodInfo * method)); +DO_APP_FUNC(0x018DAE20, bool, AppRemoting_TryGetConnectionState, (ConnectionState__Enum * connectionState, DisconnectReason__Enum * disconnectReason, MethodInfo * method)); DO_APP_FUNC(0x018DAEA0, void, AppRemoting__cctor, (MethodInfo * method)); DO_APP_FUNC(0x018DAF60, void *, AppRemotingPlugin_HookGetInstanceProcAddr, (AppRemotingPlugin * __this, void * func, MethodInfo * method)); DO_APP_FUNC(0x018DB070, void, AppRemotingPlugin_Awake, (AppRemotingPlugin * __this, MethodInfo * method)); @@ -110113,7 +122450,7 @@ DO_APP_FUNC(0x018DB880, IEnumerator *, AppRemotingPlugin_Connect, (AppRemotingPl DO_APP_FUNC(0x018DB9A0, IEnumerator *, AppRemotingPlugin_Listen, (AppRemotingPlugin * __this, RemotingListenConfiguration configuration, SecureConnectionServerConfiguration secureConnectionServerConfiguration, Action * onRemotingListenCompleted, MethodInfo * method)); DO_APP_FUNC(0x018DBB90, void, AppRemotingPlugin_Disconnect, (AppRemotingPlugin * __this, MethodInfo * method)); DO_APP_FUNC(0x018DBDF0, void, AppRemotingPlugin_StopXrLoader, (AppRemotingPlugin * __this, MethodInfo * method)); -DO_APP_FUNC(0x018DC080, bool, AppRemotingPlugin_TryGetConnectionState, (AppRemotingPlugin * __this, ConnectionState__Enum connectionState, DisconnectReason__Enum disconnectReason, MethodInfo * method)); +DO_APP_FUNC(0x018DC080, bool, AppRemotingPlugin_TryGetConnectionState, (AppRemotingPlugin * __this, ConnectionState__Enum * connectionState, DisconnectReason__Enum * disconnectReason, MethodInfo * method)); DO_APP_FUNC(0x018DC090, void, AppRemotingPlugin__ctor, (AppRemotingPlugin * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, AppRemotingPlugin_Connect_d_17__ctor, (AppRemotingPlugin_Connect_d_17 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AppRemotingPlugin_Connect_d_17_System_IDisposable_Dispose, (AppRemotingPlugin_Connect_d_17 * __this, MethodInfo * method)); @@ -110213,10 +122550,11 @@ DO_APP_FUNC(0x02895910, void, UdpConnection_OnStreamReceived, (UdpConnection * _ DO_APP_FUNC(0x02895E50, void, UdpConnection_OnStreamLost, (UdpConnection * __this, UdpStreamOpBlock * block, MethodInfo * method)); DO_APP_FUNC(0x02895FE0, void, UdpConnection_OnStreamDelivered, (UdpConnection * __this, UdpStreamOpBlock * block, MethodInfo * method)); DO_APP_FUNC(0x028961E0, int32_t, UdpConnection_SortChannelHelper, (UdpConnection * __this, UdpChannelStreamer * x, UdpChannelStreamer * y, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB86A8, UdpConnection_SortChannelHelper__MethodInfo); DO_APP_FUNC(0x02896210, void, UdpConnection_SendStream, (UdpConnection * __this, uint32_t now, MethodInfo * method)); DO_APP_FUNC(0x028967F0, void, UdpConnection_ReceiveStream, (UdpConnection * __this, MethodInfo * method)); -DO_APP_FUNC(0x02896AB0, bool, UdpEvent_get_IsInternal, (UdpEvent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, UdpEventType__Enum, UdpEvent_get_EventType, (UdpEvent__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02896AB0, bool, UdpEvent_get_IsInternal, (UdpEvent * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, UdpEventType__Enum, UdpEvent_get_EventType, (UdpEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x00EAA8F0, int32_t, UdpEventAcceptConnect_get_Type, (UdpEventAcceptConnect * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, UdpEventAcceptConnect__ctor, (UdpEventAcceptConnect * __this, MethodInfo * method)); DO_APP_FUNC(0x01B8A750, int32_t, UdpEventRefuseConnect_get_Type, (UdpEventRefuseConnect * __this, MethodInfo * method)); @@ -110310,8 +122648,8 @@ DO_APP_FUNC(0x028971E0, void, UdpPacket_WriteShort, (UdpPacket * __this, int16_t DO_APP_FUNC(0x028970C0, int16_t, UdpPacket_ReadShort, (UdpPacket * __this, int32_t bits, MethodInfo * method)); DO_APP_FUNC(0x02897130, void, UdpPacket_WriteShort_1, (UdpPacket * __this, int16_t value, MethodInfo * method)); DO_APP_FUNC(0x028971A0, int16_t, UdpPacket_ReadShort_1, (UdpPacket * __this, MethodInfo * method)); -DO_APP_FUNC(0x028971F0, void, UdpPacket_Serialize, (UdpPacket * __this, uint32_t value, int32_t bits, MethodInfo * method)); -DO_APP_FUNC(0x028971F0, void, UdpPacket_Serialize_1, (UdpPacket * __this, int32_t value, int32_t bits, MethodInfo * method)); +DO_APP_FUNC(0x028971F0, void, UdpPacket_Serialize, (UdpPacket * __this, uint32_t * value, int32_t bits, MethodInfo * method)); +DO_APP_FUNC(0x028971F0, void, UdpPacket_Serialize_1, (UdpPacket * __this, int32_t * value, int32_t bits, MethodInfo * method)); DO_APP_FUNC(0x02897230, void, UdpPacket_WriteUInt, (UdpPacket * __this, uint32_t value, int32_t bits, MethodInfo * method)); DO_APP_FUNC(0x028973C0, uint32_t, UdpPacket_ReadUInt, (UdpPacket * __this, int32_t bits, MethodInfo * method)); DO_APP_FUNC(0x02897500, void, UdpPacket_WriteUInt_1, (UdpPacket * __this, uint32_t value, MethodInfo * method)); @@ -110371,15 +122709,15 @@ DO_APP_FUNC(0x02899DC0, void, UdpPipe_SendAckPacket, (UdpPipe * __this, MethodIn DO_APP_FUNC(0x02899E90, bool, UdpPipe_ReadAcks, (UdpPipe * __this, Byte__Array * buffer, int32_t o, MethodInfo * method)); DO_APP_FUNC(0x0289A1E0, void, UdpPipe_Lost, (UdpPipe * __this, UdpPipeHandle handle, MethodInfo * method)); DO_APP_FUNC(0x0289A210, void, UdpPipe_Delivered, (UdpPipe * __this, UdpPipeHandle handle, MethodInfo * method)); -DO_APP_FUNC(0x0289A3D0, void, UdpPipe_Ack__ctor, (UdpPipe_Ack__Boxed * __this, uint32_t sequence, bool received, uint32_t time, MethodInfo * method)); +DO_APP_FUNC(0x0289A3D0, void, UdpPipe_Ack__ctor, (UdpPipe_Ack * __this, uint32_t sequence, bool received, uint32_t time, MethodInfo * method)); DO_APP_FUNC(0x0289A3E0, UdpPipe_Ack, UdpPipe_Ack_Lost, (uint32_t sequence, MethodInfo * method)); DO_APP_FUNC(0x0289A3F0, UdpPipe_Ack, UdpPipe_Ack_Recv, (uint32_t sequence, uint32_t time, MethodInfo * method)); -DO_APP_FUNC(0x0289A410, int32_t, UdpPipeConfig_get_SequenceBits, (UdpPipeConfig__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0289A420, int32_t, UdpPipeConfig_get_AckBits, (UdpPipeConfig__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0289A430, int32_t, UdpPipeConfig_get_HeaderSize, (UdpPipeConfig__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0289A440, int32_t, UdpPipeConfig_get_HeaderSizeBits, (UdpPipeConfig__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0289A460, uint32_t, UdpPipeConfig_NextSequence, (UdpPipeConfig__Boxed * __this, uint32_t seq, MethodInfo * method)); -DO_APP_FUNC(0x0289A480, int32_t, UdpPipeConfig_Distance, (UdpPipeConfig__Boxed * __this, uint32_t from, uint32_t to, MethodInfo * method)); +DO_APP_FUNC(0x0289A410, int32_t, UdpPipeConfig_get_SequenceBits, (UdpPipeConfig * __this, MethodInfo * method)); +DO_APP_FUNC(0x0289A420, int32_t, UdpPipeConfig_get_AckBits, (UdpPipeConfig * __this, MethodInfo * method)); +DO_APP_FUNC(0x0289A430, int32_t, UdpPipeConfig_get_HeaderSize, (UdpPipeConfig * __this, MethodInfo * method)); +DO_APP_FUNC(0x0289A440, int32_t, UdpPipeConfig_get_HeaderSizeBits, (UdpPipeConfig * __this, MethodInfo * method)); +DO_APP_FUNC(0x0289A460, uint32_t, UdpPipeConfig_NextSequence, (UdpPipeConfig * __this, uint32_t seq, MethodInfo * method)); +DO_APP_FUNC(0x0289A480, int32_t, UdpPipeConfig_Distance, (UdpPipeConfig * __this, uint32_t from, uint32_t to, MethodInfo * method)); DO_APP_FUNC(0x0289A4A0, UdpEndPoint, UdpSocket_get_SocketEndPoint, (UdpSocket * __this, MethodInfo * method)); DO_APP_FUNC(0x02892B10, UdpEndPoint, UdpSocket_get_LanEndPoint, (UdpSocket * __this, MethodInfo * method)); DO_APP_FUNC(0x0289A500, UdpEndPoint, UdpSocket_get_WanEndPoint, (UdpSocket * __this, MethodInfo * method)); @@ -110405,23 +122743,25 @@ DO_APP_FUNC(0x0289BD20, void, UdpSocket_CancelConnect, (UdpSocket * __this, UdpE DO_APP_FUNC(0x0289BE50, void, UdpSocket_Accept, (UdpSocket * __this, UdpEndPoint endpoint, Object * userObject, Byte__Array * token, MethodInfo * method)); DO_APP_FUNC(0x0289C030, void, UdpSocket_Refuse, (UdpSocket * __this, UdpEndPoint endpoint, Byte__Array * token, MethodInfo * method)); DO_APP_FUNC(0x0289C1B0, UdpSession__Array *, UdpSocket_GetSessions, (UdpSocket * __this, MethodInfo * method)); -DO_APP_FUNC(0x0289C1F0, bool, UdpSocket_Poll, (UdpSocket * __this, UdpEvent ev, MethodInfo * method)); +DO_APP_FUNC(0x0289C1F0, bool, UdpSocket_Poll, (UdpSocket * __this, UdpEvent * ev, MethodInfo * method)); DO_APP_FUNC(0x0289C470, void, UdpSocket_MasterServerDisconnect, (UdpSocket * __this, MethodInfo * method)); DO_APP_FUNC(0x0289C4C0, void, UdpSocket_LanBroadcastEnable, (UdpSocket * __this, uint16_t port, MethodInfo * method)); DO_APP_FUNC(0x0289C5C0, void, UdpSocket_LanBroadcastDisable, (UdpSocket * __this, MethodInfo * method)); DO_APP_FUNC(0x0289C6C0, void, UdpSocket_SetHostInfo, (UdpSocket * __this, String * name, bool dedicated, Object * tokenObject, Byte__Array * token, MethodInfo * method)); -DO_APP_FUNC(0x0289C8F0, bool, UdpSocket_FindChannel, (UdpSocket * __this, int32_t id, UdpStreamChannel * channel, MethodInfo * method)); +DO_APP_FUNC(0x0289C8F0, bool, UdpSocket_FindChannel, (UdpSocket * __this, int32_t id, UdpStreamChannel * * channel, MethodInfo * method)); DO_APP_FUNC(0x0289C9C0, Byte__Array *, UdpSocket_GetSendBuffer, (UdpSocket * __this, MethodInfo * method)); DO_APP_FUNC(0x0289CA00, Byte__Array *, UdpSocket_GetRecvBuffer, (UdpSocket * __this, MethodInfo * method)); DO_APP_FUNC(0x0289A550, uint32_t, UdpSocket_GetCurrentTime, (UdpSocket * __this, MethodInfo * method)); DO_APP_FUNC(0x0289CA40, void, UdpSocket_Raise, (UdpSocket * __this, int32_t type, UdpConnection * c, UdpPacket * p, MethodInfo * method)); DO_APP_FUNC(0x0289CB30, void, UdpSocket_Raise_1, (UdpSocket * __this, UdpEvent ev, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB84D0, UdpSocket_Raise_1__MethodInfo); DO_APP_FUNC(0x0289D290, bool, UdpSocket_Send, (UdpSocket * __this, UdpEndPoint endpoint, Byte__Array * buffer, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0289D580, void, UdpSocket_SendCommand, (UdpSocket * __this, UdpEndPoint endpoint, uint8_t cmd, MethodInfo * method)); DO_APP_FUNC(0x0289D630, void, UdpSocket_SendCommand_1, (UdpSocket * __this, UdpEndPoint endpoint, uint8_t cmd, Byte__Array * data, MethodInfo * method)); DO_APP_FUNC(0x0289D740, bool, UdpSocket_ChangeState, (UdpSocket * __this, UdpSocketState__Enum from, UdpSocketState__Enum to, MethodInfo * method)); DO_APP_FUNC(0x0289D900, bool, UdpSocket_CheckState, (UdpSocket * __this, UdpSocketState__Enum s, MethodInfo * method)); DO_APP_FUNC(0x0289D920, void, UdpSocket_NetworkLoop, (UdpSocket * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8508, UdpSocket_NetworkLoop__MethodInfo); DO_APP_FUNC(0x0289DB00, bool, UdpSocket_CreatePhysicalSocket, (UdpSocket * __this, UdpEndPoint ep, UdpSocketState__Enum s, MethodInfo * method)); DO_APP_FUNC(0x0289E050, void, UdpSocket_AcceptConnection, (UdpSocket * __this, UdpEndPoint ep, Object * userToken, Byte__Array * acceptToken, Byte__Array * connectToken, MethodInfo * method)); DO_APP_FUNC(0x0289E6E0, void, UdpSocket_ProcessTimeouts, (UdpSocket * __this, MethodInfo * method)); @@ -110437,10 +122777,11 @@ DO_APP_FUNC(0x0289FC30, bool, UdpSocket_DestroyConnection, (UdpSocket * __this, DO_APP_FUNC(0x0289FDC0, void, UdpSocket_Disconnect, (UdpSocket * __this, UdpEndPoint endPoint, MethodInfo * method)); DO_APP_FUNC(0x0289FEF0, void, UdpSocket_RecvConnectionCommand_Unconnected, (UdpSocket * __this, UdpEndPoint endpoint, Byte__Array * buffer, int32_t size, MethodInfo * method)); DO_APP_FUNC(0x028A00C0, void, UdpSocket_AddConnection, (UdpSocket * __this, UdpEndPoint endpoint, UdpConnection * cn, MethodInfo * method)); -DO_APP_FUNC(0x028A01D0, bool, UdpSocket_PollInternal, (UdpSocket * __this, UdpEvent ev, MethodInfo * method)); +DO_APP_FUNC(0x028A01D0, bool, UdpSocket_PollInternal, (UdpSocket * __this, UdpEvent * ev, MethodInfo * method)); DO_APP_FUNC(0x028A0450, void, UdpSocket_ProcessStartEvent, (UdpSocket * __this, MethodInfo * method)); DO_APP_FUNC(0x028A0770, void, UdpSocket_ProcessInternalEvents, (UdpSocket * __this, MethodInfo * method)); DO_APP_FUNC(0x028A1350, void, UdpSocket_OnEventStart, (UdpSocket * __this, UdpEvent ev, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB82F0, UdpSocket_OnEventStart__MethodInfo); DO_APP_FUNC(0x028A1F20, void, UdpSocket_OnEventConnect, (UdpSocket * __this, UdpEvent ev, MethodInfo * method)); DO_APP_FUNC(0x028A1FA0, void, UdpSocket_OnEventConnectCancel, (UdpSocket * __this, UdpEvent ev, MethodInfo * method)); DO_APP_FUNC(0x028A2330, void, UdpSocket_OnEventAccept, (UdpSocket * __this, UdpEvent ev, MethodInfo * method)); @@ -110460,6 +122801,7 @@ DO_APP_FUNC(0x028A3C70, void, UdpSocket_ConnectToEndPoint, (UdpSocket * __this, DO_APP_FUNC(0x0041AF00, bool, UdpSocket_get_ShouldDelayPacket, (UdpSocket * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, UdpSocket_get_ShouldDropPacket, (UdpSocket * __this, MethodInfo * method)); DO_APP_FUNC(0x028A3EC0, void, UdpSocket_DelayPacket, (UdpSocket * __this, UdpEndPoint ep, Byte__Array * data, int32_t length, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8138, UdpSocket_DelayPacket__MethodInfo); DO_APP_FUNC(0x003AE050, void, UdpSocket_RecvDelayedPackets, (UdpSocket * __this, MethodInfo * method)); DO_APP_FUNC(0x028A3F10, void, UdpSocket_ProcessDataStream, (UdpSocket * __this, uint32_t now, MethodInfo * method)); DO_APP_FUNC(0x028A4010, UdpChannelName, UdpSocket_StreamChannelCreate, (UdpSocket * __this, String * name, UdpChannelMode__Enum mode, int32_t priority, MethodInfo * method)); @@ -110477,12 +122819,15 @@ DO_APP_FUNC(0x028A5910, void, UdpSocket_Broadcaster_ProcessBroadcastSession, (Ud DO_APP_FUNC(0x028A5B60, void, UdpSocket_Broadcaster_ProcessBroadcastSearch, (UdpSocket_Broadcaster * __this, BroadcastSearch * search, IPEndPoint * sender, MethodInfo * method)); DO_APP_FUNC(0x028A5D20, void, UdpSocket_Broadcaster_Send, (UdpSocket_Broadcaster * __this, Byte__Array * data, IPEndPoint * destination, MethodInfo * method)); DO_APP_FUNC(0x028A5D60, void, UdpSocket_Broadcaster__StartReceiveThread_b__18_0, (UdpSocket_Broadcaster * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8008, UdpSocket_Broadcaster__StartReceiveThread_b__18_0__MethodInfo); DO_APP_FUNC(0x028A5F70, bool, UdpSocket_BroadcastManager_get_IsEnabled, (UdpSocket_BroadcastManager * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, UdpSocket_BroadcastManager__ctor, (UdpSocket_BroadcastManager * __this, UdpSocket * s, MethodInfo * method)); DO_APP_FUNC(0x028A5FB0, void, UdpSocket_BroadcastManager_Update, (UdpSocket_BroadcastManager * __this, uint32_t now, MethodInfo * method)); DO_APP_FUNC(0x028A6280, void, UdpSocket_BroadcastManager_Enable, (UdpSocket_BroadcastManager * __this, UdpEventLanBroadcastEnable * args, MethodInfo * method)); DO_APP_FUNC(0x028A6AB0, void, UdpSocket_BroadcastManager_OnBroadcastSearch, (UdpSocket_BroadcastManager * __this, BroadcastSearch * search, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7DF8, UdpSocket_BroadcastManager_OnBroadcastSearch__MethodInfo); DO_APP_FUNC(0x028A6E60, void, UdpSocket_BroadcastManager_OnBroadcastSession, (UdpSocket_BroadcastManager * __this, BroadcastSession * session, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7D40, UdpSocket_BroadcastManager_OnBroadcastSession__MethodInfo); DO_APP_FUNC(0x028A70B0, void, UdpSocket_BroadcastManager_Disable, (UdpSocket_BroadcastManager * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, UdpSocket *, UdpSocket_SessionManager_get_UdpSocket, (UdpSocket_SessionManager * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCDE0, void, UdpSocket_SessionManager_set_UdpSocket, (UdpSocket_SessionManager * __this, UdpSocket * value, MethodInfo * method)); @@ -110499,19 +122844,23 @@ DO_APP_FUNC(0x028A83B0, void, UdpSocket_SessionManager_SetWanEndPoint, (UdpSocke DO_APP_FUNC(0x028A8400, void, UdpSocket_SessionManager_SetLanEndPoint, (UdpSocket_SessionManager * __this, UdpEndPoint endpoint, MethodInfo * method)); DO_APP_FUNC(0x028A8450, void, UdpSocket_SessionManager_SetConnections, (UdpSocket_SessionManager * __this, int32_t current, int32_t max, MethodInfo * method)); DO_APP_FUNC(0x028A84B0, void, UdpSocket_SessionManager_RaiseSessionCreatedEvent, (UdpSocket_SessionManager * __this, bool success, UdpSessionError__Enum error, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7E60, UdpSocket_SessionManager_RaiseSessionCreatedEvent__MethodInfo); DO_APP_FUNC(0x028A8690, void, UdpSocket_SessionManager_RaiseSessionUpdatedEvent, (UdpSocket_SessionManager * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, UdpSocket_c_DisplayClass104_0__ctor, (UdpSocket_c_DisplayClass104_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x028A8860, void, UdpSocket_c_DisplayClass104_0__OnEventStart_g__doneCallback_0, (UdpSocket_c_DisplayClass104_0 * __this, bool result, UdpConnectionDisconnectReason__Enum disconnectReason, MethodInfo * method)); -DO_APP_FUNC(0x028A8B60, void, UdpSocket_OnEventClose_d_110_MoveNext, (UdpSocket_OnEventClose_d_110__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00B29800, void, UdpSocket_OnEventClose_d_110_SetStateMachine, (UdpSocket_OnEventClose_d_110__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB82C0, UdpSocket_c_DisplayClass104_0__OnEventStart_g__doneCallback_0__MethodInfo); +DO_APP_FUNC(0x028A8B60, void, UdpSocket_OnEventClose_d_110_MoveNext, (UdpSocket_OnEventClose_d_110 * __this, MethodInfo * method)); +DO_APP_FUNC(0x00B29800, void, UdpSocket_OnEventClose_d_110_SetStateMachine, (UdpSocket_OnEventClose_d_110 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, UdpSocket_c_DisplayClass113_0__ctor, (UdpSocket_c_DisplayClass113_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x028A9770, void, UdpSocket_c_DisplayClass113_0__OnEventSessionConnectRandom_g__handleResult_0, (UdpSocket_c_DisplayClass113_0 * __this, bool result, UdpSessionError__Enum error, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8238, UdpSocket_c_DisplayClass113_0__OnEventSessionConnectRandom_g__handleResult_0__MethodInfo); DO_APP_FUNC(0x003AE050, void, UdpSocket_c_DisplayClass114_0__ctor, (UdpSocket_c_DisplayClass114_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x028A9B40, void, UdpSocket_c_DisplayClass114_0__OnEventSessionConnect_g__handleResult_0, (UdpSocket_c_DisplayClass114_0 * __this, bool result, UdpSessionError__Enum error, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB80B0, UdpSocket_c_DisplayClass114_0__OnEventSessionConnect_g__handleResult_0__MethodInfo); DO_APP_FUNC(0x003AE050, void, UdpChannelConfig__ctor, (UdpChannelConfig * __this, MethodInfo * method)); -DO_APP_FUNC(0x01BFE8C0, void, UdpChannelName__ctor, (UdpChannelName__Boxed * __this, int32_t id, MethodInfo * method)); -DO_APP_FUNC(0x0114D850, void, UdpChannelName__ctor_1, (UdpChannelName__Boxed * __this, int32_t id, String * name, MethodInfo * method)); -DO_APP_FUNC(0x028A9ED0, String *, UdpChannelName_ToString, (UdpChannelName__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01BFE8C0, void, UdpChannelName__ctor, (UdpChannelName * __this, int32_t id, MethodInfo * method)); +DO_APP_FUNC(0x0114D850, void, UdpChannelName__ctor_1, (UdpChannelName * __this, int32_t id, String * name, MethodInfo * method)); +DO_APP_FUNC(0x028A9ED0, String *, UdpChannelName_ToString, (UdpChannelName * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, UdpChannelName_Comparer__ctor, (UdpChannelName_Comparer * __this, MethodInfo * method)); DO_APP_FUNC(0x028A9FB0, int32_t, UdpChannelName_Comparer_System_Collections_Generic_IComparer_UdpKit_UdpChannelName__Compare, (UdpChannelName_Comparer * __this, UdpChannelName x, UdpChannelName y, MethodInfo * method)); DO_APP_FUNC(0x028A9FD0, void, UdpChannelName_Comparer__cctor, (MethodInfo * method)); @@ -110617,9 +122966,9 @@ DO_APP_FUNC(0x028B0270, void, PacketIdValidator_RemoveEndPointReference, (Packet DO_APP_FUNC(0x028B0320, UdpPlatform *, ProtocolClient_get_Platform, (ProtocolClient * __this, MethodInfo * method)); DO_APP_FUNC(0x028B0350, void, ProtocolClient__ctor, (ProtocolClient * __this, UdpPlatformSocket * socket, Guid gameId, Guid peerId, MethodInfo * method)); DO_APP_FUNC(0x028B06A0, void, ProtocolClient_Update, (ProtocolClient * __this, uint32_t now, MethodInfo * method)); -DO_APP_FUNC(0x028B09A0, void, ProtocolClient_RemoveQueryAt, (ProtocolClient * __this, int32_t i, MethodInfo * method)); -DO_APP_FUNC(0x028B0A00, bool, ProtocolClient_GetValidCallback, (ProtocolClient * __this, Query * qry, ProtocolClient_AckCallback callback, MethodInfo * method)); -DO_APP_FUNC(0x028B0CE0, bool, ProtocolClient_GetValidHandler, (ProtocolClient * __this, Message * msg, ProtocolClient_MsgHandler handler, MethodInfo * method)); +DO_APP_FUNC(0x028B09A0, void, ProtocolClient_RemoveQueryAt, (ProtocolClient * __this, int32_t * i, MethodInfo * method)); +DO_APP_FUNC(0x028B0A00, bool, ProtocolClient_GetValidCallback, (ProtocolClient * __this, Query * qry, ProtocolClient_AckCallback * callback, MethodInfo * method)); +DO_APP_FUNC(0x028B0CE0, bool, ProtocolClient_GetValidHandler, (ProtocolClient * __this, Message * msg, ProtocolClient_MsgHandler * handler, MethodInfo * method)); DO_APP_FUNC(0x028B0FB0, void, ProtocolClient_Recv, (ProtocolClient * __this, UdpEndPoint endpoint, Byte__Array * buffer, int32_t offset, MethodInfo * method)); DO_APP_FUNC(0x028B1270, void, ProtocolClient_Send, (ProtocolClient * __this, Message * msg, UdpEndPoint endpoint, MethodInfo * method)); DO_APP_FUNC(0x028B1640, void, ProtocolClient_QueryResult, (ProtocolClient * __this, Result * result, MethodInfo * method)); @@ -110667,7 +123016,7 @@ DO_APP_FUNC(0x003AE050, void, UdpPlatformInterface__ctor, (UdpPlatformInterface DO_APP_FUNC(0x003BB3C0, Object *, UdpPlatformSocket_get_Token, (UdpPlatformSocket * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, UdpPlatformSocket_set_Token, (UdpPlatformSocket * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x028B2100, int32_t, UdpPlatformSocket_SendTo, (UdpPlatformSocket * __this, Byte__Array * buffer, UdpEndPoint endpoint, MethodInfo * method)); -DO_APP_FUNC(0x028B2160, int32_t, UdpPlatformSocket_RecvFrom, (UdpPlatformSocket * __this, Byte__Array * buffer, UdpEndPoint endpoint, MethodInfo * method)); +DO_APP_FUNC(0x028B2160, int32_t, UdpPlatformSocket_RecvFrom, (UdpPlatformSocket * __this, Byte__Array * buffer, UdpEndPoint * endpoint, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, UdpPlatformSocket__ctor, (UdpPlatformSocket * __this, MethodInfo * method)); DO_APP_FUNC(0x022F09D0, bool, Task_2_get_IsRunning, (Task_2 * __this, MethodInfo * method)); DO_APP_FUNC(0x028B21A0, String *, Task_2_get_Name, (Task_2 * __this, MethodInfo * method)); @@ -110676,6 +123025,7 @@ DO_APP_FUNC(0x028B2510, void, Task_2_Run, (Task_2 * __this, Action * callback, M DO_APP_FUNC(0x028B26C0, void, Task_2_Abort, (Task_2 * __this, MethodInfo * method)); DO_APP_FUNC(0x028B26F0, void, Task_2_ForceAbort, (Task_2 * __this, MethodInfo * method)); DO_APP_FUNC(0x028B2750, void, Task_2_Runner, (Task_2 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB75F0, Task_2_Runner__MethodInfo); DO_APP_FUNC(0x028B28F0, void, ThreadManager__ctor, (ThreadManager * __this, MethodInfo * method)); DO_APP_FUNC(0x028B29F0, void, ThreadManager_Clear, (MethodInfo * method)); DO_APP_FUNC(0x028B2B90, String *, ThreadManager_GetInfo, (MethodInfo * method)); @@ -110684,6 +123034,7 @@ DO_APP_FUNC(0x028B2E90, Task_2 *, ThreadManager_FindTask, (MethodInfo * method)) DO_APP_FUNC(0x028B3090, void, ThreadManager_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ThreadManager_c__ctor, (ThreadManager_c * __this, MethodInfo * method)); DO_APP_FUNC(0x028B3140, bool, ThreadManager_c__GetInfo_b__3_0, (ThreadManager_c * __this, Task_2 * thr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7608, ThreadManager_c__GetInfo_b__3_0__MethodInfo); DO_APP_FUNC(0x00B43930, void, TVECustomRenderData_OnEnable, (TVECustomRenderData * __this, MethodInfo * method)); DO_APP_FUNC(0x00B43940, void, TVECustomRenderData_OnDisable, (TVECustomRenderData * __this, MethodInfo * method)); DO_APP_FUNC(0x00B43940, void, TVECustomRenderData_OnDestroy, (TVECustomRenderData * __this, MethodInfo * method)); @@ -110753,6 +123104,7 @@ DO_APP_FUNC(0x00B4DFF0, void, TVEGlobalVolume__ctor, (TVEGlobalVolume * __this, DO_APP_FUNC(0x00B4E700, void, TVEGlobalVolume_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TVEGlobalVolume_c__ctor, (TVEGlobalVolume_c * __this, MethodInfo * method)); DO_APP_FUNC(0x00B4E7B0, int32_t, TVEGlobalVolume_c__SortElementObjects_b__45_0, (TVEGlobalVolume_c * __this, TVEElement * e1, TVEElement * e2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC240, TVEGlobalVolume_c__SortElementObjects_b__45_0__MethodInfo); DO_APP_FUNC(0x00B4EC30, void, TVEManager_Awake, (TVEManager * __this, MethodInfo * method)); DO_APP_FUNC(0x00B4EC40, void, TVEManager_OnEnable, (TVEManager * __this, MethodInfo * method)); DO_APP_FUNC(0x00B4EC50, void, TVEManager_OnDisable, (TVEManager * __this, MethodInfo * method)); @@ -110799,6 +123151,7 @@ DO_APP_FUNC(0x01CA0580, void, ColliderDisabler_OnTriggerExit, (ColliderDisabler DO_APP_FUNC(0x003AE000, void, ColliderDisabler__ctor, (ColliderDisabler * __this, MethodInfo * method)); DO_APP_FUNC(0x01CA0860, void, DamageZone_OnTriggerEnter, (DamageZone * __this, Collider * other, MethodInfo * method)); DO_APP_FUNC(0x01CA0CC0, void, DamageZone_Damage, (DamageZone * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19D30, DamageZone_Damage__MethodInfo); DO_APP_FUNC(0x01CA0FD0, void, DamageZone_OnTriggerExit, (DamageZone * __this, Collider * other, MethodInfo * method)); DO_APP_FUNC(0x01CA12D0, void, DamageZone_OnDrawGizmos, (DamageZone * __this, MethodInfo * method)); DO_APP_FUNC(0x01CA16C0, void, DamageZone__ctor, (DamageZone * __this, MethodInfo * method)); @@ -110842,12 +123195,16 @@ DO_APP_FUNC(0x003AE000, void, DoorOpener__ctor, (DoorOpener * __this, MethodInfo DO_APP_FUNC(0x01CA57E0, void, FlashlightCave_Awake, (FlashlightCave * __this, MethodInfo * method)); DO_APP_FUNC(0x01CA59E0, void, FlashlightCave_FlashlightEquippedUnequipped, (FlashlightCave * __this, bool equipped, MethodInfo * method)); DO_APP_FUNC(0x01CA5A50, void, FlashlightCave_OnEquipItem, (FlashlightCave * __this, Item * item, int32_t slotID, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19B38, FlashlightCave_OnEquipItem__MethodInfo); DO_APP_FUNC(0x01CA5BF0, void, FlashlightCave_OnUnequipItem, (FlashlightCave * __this, Item * item, int32_t slotID, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19B28, FlashlightCave_OnUnequipItem__MethodInfo); DO_APP_FUNC(0x01CA5D90, void, FlashlightCave_OnDestroy, (FlashlightCave * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, FlashlightCave__ctor, (FlashlightCave * __this, MethodInfo * method)); DO_APP_FUNC(0x01CA5EF0, void, HeadshotIndicator_Awake, (HeadshotIndicator * __this, MethodInfo * method)); DO_APP_FUNC(0x01CA61E0, void, HeadshotIndicator_OnDamage, (HeadshotIndicator * __this, float amount, Vector3 position, Vector3 force, GameObject * attacker, Collider * hitCollider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19AD8, HeadshotIndicator_OnDamage__MethodInfo); DO_APP_FUNC(0x01CA6690, void, HeadshotIndicator_UpdateTextColor, (HeadshotIndicator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19AB8, HeadshotIndicator_UpdateTextColor__MethodInfo); DO_APP_FUNC(0x01CA6A20, void, HeadshotIndicator_OnDestroy, (HeadshotIndicator * __this, MethodInfo * method)); DO_APP_FUNC(0x01CA6B10, void, HeadshotIndicator__ctor, (HeadshotIndicator * __this, MethodInfo * method)); DO_APP_FUNC(0x01CA6BA0, void, InteractRoomReset_OnTriggerExit, (InteractRoomReset * __this, Collider * other, MethodInfo * method)); @@ -110859,14 +123216,18 @@ DO_APP_FUNC(0x01CA7020, void, MovementTypeSwitcher_Awake, (MovementTypeSwitcher DO_APP_FUNC(0x01CA7400, void, MovementTypeSwitcher_Update, (MovementTypeSwitcher * __this, MethodInfo * method)); DO_APP_FUNC(0x01CA75A0, void, MovementTypeSwitcher_UpdateMovementType, (MovementTypeSwitcher * __this, bool firstPersonPerspective, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01CA76C0, void, MovementTypeSwitcher_OnChangePerspectives, (MovementTypeSwitcher * __this, bool firstPersonPerspective, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19B58, MovementTypeSwitcher_OnChangePerspectives__MethodInfo); DO_APP_FUNC(0x01CA77B0, void, MovementTypeSwitcher_UpdateStates, (MovementTypeSwitcher * __this, bool firstPersonPerspective, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19938, MovementTypeSwitcher_UpdateStates__MethodInfo); DO_APP_FUNC(0x01CA78D0, void, MovementTypeSwitcher_OnDestroy, (MovementTypeSwitcher * __this, MethodInfo * method)); DO_APP_FUNC(0x01CA7A90, void, MovementTypeSwitcher__ctor, (MovementTypeSwitcher * __this, MethodInfo * method)); DO_APP_FUNC(0x01CA7E70, void, PerspectiveSwitchZone_OnTriggerEnter, (PerspectiveSwitchZone * __this, Collider * other, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, PerspectiveSwitchZone__ctor, (PerspectiveSwitchZone * __this, MethodInfo * method)); DO_APP_FUNC(0x01CA8170, void, RideDisabler_Awake, (RideDisabler * __this, MethodInfo * method)); DO_APP_FUNC(0x01CA8390, void, RideDisabler_OnAbilityActive, (RideDisabler * __this, Ability * ability, bool active, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19A00, RideDisabler_OnAbilityActive__MethodInfo); DO_APP_FUNC(0x01CA8550, void, RideDisabler_OnCharacterChangeMovingPlatforms, (RideDisabler * __this, Transform * movingPlatform, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D199E8, RideDisabler_OnCharacterChangeMovingPlatforms__MethodInfo); DO_APP_FUNC(0x01CA8710, void, RideDisabler_OnTriggerEnter, (RideDisabler * __this, Collider * other, MethodInfo * method)); DO_APP_FUNC(0x01CA8B10, void, RideDisabler_OnTriggerExit, (RideDisabler * __this, Collider * other, MethodInfo * method)); DO_APP_FUNC(0x01CA8F40, void, RideDisabler_OnDestroy, (RideDisabler * __this, MethodInfo * method)); @@ -110875,6 +123236,7 @@ DO_APP_FUNC(0x01CA90C0, void, TimeAdjuster_Awake, (TimeAdjuster * __this, Method DO_APP_FUNC(0x01CA9520, void, TimeAdjuster_Update, (TimeAdjuster * __this, MethodInfo * method)); DO_APP_FUNC(0x01CA99C0, void, TimeAdjuster_OnTriggerEnter, (TimeAdjuster * __this, Collider * other, MethodInfo * method)); DO_APP_FUNC(0x01CA9EB0, void, TimeAdjuster_UpdateTimeScale, (TimeAdjuster * __this, bool activate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D198E8, TimeAdjuster_UpdateTimeScale__MethodInfo); DO_APP_FUNC(0x01CAA0F0, void, TimeAdjuster__ctor, (TimeAdjuster * __this, MethodInfo * method)); DO_APP_FUNC(0x01CAA150, void, TriggerAdjustor_Awake, (TriggerAdjustor * __this, MethodInfo * method)); DO_APP_FUNC(0x01CAA330, void, TriggerAdjustor_OnTriggerEnter, (TriggerAdjustor * __this, Collider * other, MethodInfo * method)); @@ -110882,16 +123244,19 @@ DO_APP_FUNC(0x01CAA800, void, TriggerAdjustor_AdjustBoxCollider, (TriggerAdjusto DO_APP_FUNC(0x01CAA910, void, TriggerAdjustor_OnTriggerExit, (TriggerAdjustor * __this, Collider * other, MethodInfo * method)); DO_APP_FUNC(0x00B80E10, void, TriggerAdjustor__ctor, (TriggerAdjustor * __this, MethodInfo * method)); DO_APP_FUNC(0x01CAACD0, void, TriggerAdjustor__OnTriggerEnter_b__7_0, (TriggerAdjustor * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D198B8, TriggerAdjustor__OnTriggerEnter_b__7_0__MethodInfo); DO_APP_FUNC(0x01CAACE0, void, CharacterStatusMonitor_Start, (CharacterStatusMonitor * __this, MethodInfo * method)); DO_APP_FUNC(0x01CAAFA0, String *, CharacterStatusMonitor_GetPerspectiveText, (CharacterStatusMonitor * __this, MethodInfo * method)); DO_APP_FUNC(0x01CAB010, String *, CharacterStatusMonitor_GetMovementTypeText, (CharacterStatusMonitor * __this, MethodInfo * method)); DO_APP_FUNC(0x01CAB100, void, CharacterStatusMonitor_OnMovementTypeChanged, (CharacterStatusMonitor * __this, MovementType * movementType, bool activated, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19870, CharacterStatusMonitor_OnMovementTypeChanged__MethodInfo); DO_APP_FUNC(0x01CAB270, void, CharacterStatusMonitor_OnDestroy, (CharacterStatusMonitor * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, CharacterStatusMonitor__ctor, (CharacterStatusMonitor * __this, MethodInfo * method)); DO_APP_FUNC(0x01CAB480, void, FirstPersonSpringZone_Awake, (FirstPersonSpringZone * __this, MethodInfo * method)); DO_APP_FUNC(0x01CAB9F0, void, FirstPersonSpringZone_ChangeSpringType, (FirstPersonSpringZone * __this, int32_t type, MethodInfo * method)); DO_APP_FUNC(0x01CABA00, void, FirstPersonSpringZone_ChangeSpringType_1, (FirstPersonSpringZone * __this, FirstPersonSpringZone_SpringType__Enum type, MethodInfo * method)); DO_APP_FUNC(0x01CABF60, void, FirstPersonSpringZone_EnableSpringState, (FirstPersonSpringZone * __this, bool characterChange, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D197A0, FirstPersonSpringZone_EnableSpringState__MethodInfo); DO_APP_FUNC(0x01CAC190, void, FirstPersonSpringZone_CharacterEnter, (FirstPersonSpringZone * __this, UltimateCharacterLocomotion * characterLocomotion, MethodInfo * method)); DO_APP_FUNC(0x01CAC740, void, FirstPersonSpringZone_CharacterExit, (FirstPersonSpringZone * __this, UltimateCharacterLocomotion * characterLocomotion, MethodInfo * method)); DO_APP_FUNC(0x01CACCA0, void, FirstPersonSpringZone__ctor, (FirstPersonSpringZone * __this, MethodInfo * method)); @@ -110912,18 +123277,24 @@ DO_APP_FUNC(0x01CAE120, void, MovementTypesZone_ChangeMovementType_1, (MovementT DO_APP_FUNC(0x01CAE2E0, bool, MovementTypesZone_IsFirstPersonType, (MovementTypesZone * __this, MovementTypesZone_MovementType__Enum type, MethodInfo * method)); DO_APP_FUNC(0x01CAE2F0, void, MovementTypesZone_CharacterEnter, (MovementTypesZone * __this, UltimateCharacterLocomotion * characterLocomotion, MethodInfo * method)); DO_APP_FUNC(0x01CAE3B0, void, MovementTypesZone_OnMovementTypeChanged, (MovementTypesZone * __this, MovementType * movementType, bool activated, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19518, MovementTypesZone_OnMovementTypeChanged__MethodInfo); DO_APP_FUNC(0x01CAE4D0, void, MovementTypesZone_OnChangePerspectives, (MovementTypesZone * __this, bool firstPersonPerspective, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19528, MovementTypesZone_OnChangePerspectives__MethodInfo); DO_APP_FUNC(0x01CAE510, void, MovementTypesZone_UpdateMovementType, (MovementTypesZone * __this, MethodInfo * method)); DO_APP_FUNC(0x01CAE5F0, void, MovementTypesZone_CharacterExit, (MovementTypesZone * __this, UltimateCharacterLocomotion * characterLocomotion, MethodInfo * method)); DO_APP_FUNC(0x01CAE670, void, MovementTypesZone_OnDestroy, (MovementTypesZone * __this, MethodInfo * method)); DO_APP_FUNC(0x01CAE7F0, void, MovementTypesZone__ctor, (MovementTypesZone * __this, MethodInfo * method)); DO_APP_FUNC(0x01CAE840, void, ToggleControlHelp_Awake, (ToggleControlHelp * __this, MethodInfo * method)); DO_APP_FUNC(0x01CAEC90, void, ToggleControlHelp_Resume, (ToggleControlHelp * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D195C0, ToggleControlHelp_Resume__MethodInfo); DO_APP_FUNC(0x00663F50, void, ToggleControlHelp_Quit, (ToggleControlHelp * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D195D0, ToggleControlHelp_Quit__MethodInfo); DO_APP_FUNC(0x01CAEE60, void, ToggleControlHelp_Update, (ToggleControlHelp * __this, MethodInfo * method)); DO_APP_FUNC(0x01CAF060, void, ToggleControlHelp_ShowControls, (ToggleControlHelp * __this, MethodInfo * method)); DO_APP_FUNC(0x01CAF350, void, ToggleControlHelp_OnControllerConnected, (ToggleControlHelp * __this, bool controllerConnected, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D195F0, ToggleControlHelp_OnControllerConnected__MethodInfo); DO_APP_FUNC(0x01C6C900, void, ToggleControlHelp_OnEnterUIZone, (ToggleControlHelp * __this, bool inUIZone, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D195E0, ToggleControlHelp_OnEnterUIZone__MethodInfo); DO_APP_FUNC(0x01CAF420, void, ToggleControlHelp_OnDestroy, (ToggleControlHelp * __this, MethodInfo * method)); DO_APP_FUNC(0x01CAF570, void, ToggleControlHelp__ctor, (ToggleControlHelp * __this, MethodInfo * method)); DO_APP_FUNC(0x01CAF5C0, void, UIZone_Awake, (UIZone * __this, MethodInfo * method)); @@ -110971,13 +123342,18 @@ DO_APP_FUNC(0x01CB16F0, void, Door__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01CB1790, void, FlammableCrate_Awake, (FlammableCrate * __this, MethodInfo * method)); DO_APP_FUNC(0x01CB1AD0, void, FlammableCrate_OnEnable, (FlammableCrate * __this, MethodInfo * method)); DO_APP_FUNC(0x01CB1B60, void, FlammableCrate_MagicCastCollision, (FlammableCrate * __this, RaycastHit hit, SurfaceImpact * surfaceImpact, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D192F8, FlammableCrate_MagicCastCollision__MethodInfo); DO_APP_FUNC(0x01CB21F0, void, FlammableCrate_ReduceHealth, (FlammableCrate * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D192A0, FlammableCrate_ReduceHealth__MethodInfo); DO_APP_FUNC(0x01CB2740, void, FlammableCrate_StopParticles, (FlammableCrate * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19290, FlammableCrate_StopParticles__MethodInfo); DO_APP_FUNC(0x01CB2950, void, FlammableCrate_FadeAudioSource, (FlammableCrate * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D193D0, FlammableCrate_FadeAudioSource__MethodInfo); DO_APP_FUNC(0x01CB2AF0, void, FlammableCrate_OnDestroy, (FlammableCrate * __this, MethodInfo * method)); DO_APP_FUNC(0x01CB2C10, void, FlammableCrate__ctor, (FlammableCrate * __this, MethodInfo * method)); DO_APP_FUNC(0x01CB2C90, void, HealingCrate_Awake, (HealingCrate * __this, MethodInfo * method)); DO_APP_FUNC(0x01CB2F80, void, HealingCrate_OnUpdateValue, (HealingCrate * __this, Attribute_1 * attribute, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19378, HealingCrate_OnUpdateValue__MethodInfo); DO_APP_FUNC(0x01CB2FE0, void, HealingCrate_OnDisable, (HealingCrate * __this, MethodInfo * method)); DO_APP_FUNC(0x01CB3010, void, HealingCrate_OnDestroy, (HealingCrate * __this, MethodInfo * method)); DO_APP_FUNC(0x01CB3140, void, HealingCrate__ctor, (HealingCrate * __this, MethodInfo * method)); @@ -111022,6 +123398,7 @@ DO_APP_FUNC(0x0059EE50, void, IntDataSetter_set_AbilityIntData, (IntDataSetter * DO_APP_FUNC(0x01CB65A0, void, IntDataSetter_Awake, (IntDataSetter * __this, MethodInfo * method)); DO_APP_FUNC(0x01CB6690, bool, IntDataSetter_CanStartAbility, (IntDataSetter * __this, MethodInfo * method)); DO_APP_FUNC(0x01CB66D0, void, IntDataSetter_OnAbilityActive, (IntDataSetter * __this, Ability * ability, bool active, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19070, IntDataSetter_OnAbilityActive__MethodInfo); DO_APP_FUNC(0x01CB6780, void, IntDataSetter_OnDestroy, (IntDataSetter * __this, MethodInfo * method)); DO_APP_FUNC(0x01CB6870, void, IntDataSetter__ctor, (IntDataSetter * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB330, GameObject *, SkyCar_get_GameObject, (SkyCar * __this, MethodInfo * method)); @@ -111032,6 +123409,7 @@ DO_APP_FUNC(0x01CB6890, void, SkyCar_Awake, (SkyCar * __this, MethodInfo * metho DO_APP_FUNC(0x01CB6C20, void, SkyCar_EnableDisableCar, (SkyCar * __this, bool enable, MethodInfo * method)); DO_APP_FUNC(0x01CB6EF0, void, SkyCar_EnterVehicle, (SkyCar * __this, GameObject * character, MethodInfo * method)); DO_APP_FUNC(0x01CB6FD0, void, SkyCar_OpenCloseDoor, (SkyCar * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19128, SkyCar_OpenCloseDoor__MethodInfo); DO_APP_FUNC(0x01CB7090, void, SkyCar_EnteredVehicle, (SkyCar * __this, GameObject * character, MethodInfo * method)); DO_APP_FUNC(0x01CB7160, void, SkyCar_Update, (SkyCar * __this, MethodInfo * method)); DO_APP_FUNC(0x01CB71F0, void, SkyCar_ExitVehicle, (SkyCar * __this, GameObject * character, MethodInfo * method)); @@ -111091,6 +123469,7 @@ DO_APP_FUNC(0x003AE050, void, SkidTrail_Start_d_1_System_IDisposable_Dispose, (S DO_APP_FUNC(0x01CBB6C0, bool, SkidTrail_Start_d_1_MoveNext, (SkidTrail_Start_d_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, SkidTrail_Start_d_1_System_Collections_Generic_IEnumerator_System_Object__get_Current, (SkidTrail_Start_d_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x01CBB990, void, SkidTrail_Start_d_1_System_Collections_IEnumerator_Reset, (SkidTrail_Start_d_1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18ED8, SkidTrail_Start_d_1_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SkidTrail_Start_d_1_System_Collections_IEnumerator_get_Current, (SkidTrail_Start_d_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x00424C10, bool, WheelEffects_get_skidding, (WheelEffects * __this, MethodInfo * method)); DO_APP_FUNC(0x00424C20, void, WheelEffects_set_skidding, (WheelEffects * __this, bool value, MethodInfo * method)); @@ -111108,6 +123487,7 @@ DO_APP_FUNC(0x003AE050, void, WheelEffects_StartSkidTrail_d_18_System_IDisposabl DO_APP_FUNC(0x01CBC610, bool, WheelEffects_StartSkidTrail_d_18_MoveNext, (WheelEffects_StartSkidTrail_d_18 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, WheelEffects_StartSkidTrail_d_18_System_Collections_Generic_IEnumerator_System_Object__get_Current, (WheelEffects_StartSkidTrail_d_18 * __this, MethodInfo * method)); DO_APP_FUNC(0x01CBCA00, void, WheelEffects_StartSkidTrail_d_18_System_Collections_IEnumerator_Reset, (WheelEffects_StartSkidTrail_d_18 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18D08, WheelEffects_StartSkidTrail_d_18_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, WheelEffects_StartSkidTrail_d_18_System_Collections_IEnumerator_get_Current, (WheelEffects_StartSkidTrail_d_18 * __this, MethodInfo * method)); DO_APP_FUNC(0x01CBCA50, Vector2, AgentMovement_get_InputVector, (AgentMovement * __this, MethodInfo * method)); DO_APP_FUNC(0x003CB160, Vector3, AgentMovement_get_DeltaRotation, (AgentMovement * __this, MethodInfo * method)); @@ -111160,9 +123540,10 @@ DO_APP_FUNC(0x028B95B0, void, PhotonPlatform_OnStartupFailed, (PhotonPlatform * DO_APP_FUNC(0x028B9600, void, PhotonPlatform_OnStartDone, (PhotonPlatform * __this, UdpEndPoint localEndPoint, Action_2_Boolean_UdpKit_UdpConnectionDisconnectReason_ * doneCallback, MethodInfo * method)); DO_APP_FUNC(0x028B96D0, void, PhotonPlatform_OnConnect, (PhotonPlatform * __this, UdpConnection * connection, MethodInfo * method)); DO_APP_FUNC(0x028B9720, void, PhotonPlatform_Configure, (PhotonPlatform * __this, UdpConfig * config, MethodInfo * method)); -DO_APP_FUNC(0x028B97E0, void, PhotonPlatform__GetPlatformMetadata_g__fill_19_0, (String * key, Object * value, PhotonPlatform_c_DisplayClass19_0 param_0001c962, MethodInfo * method)); +DO_APP_FUNC(0x028B97E0, void, PhotonPlatform__GetPlatformMetadata_g__fill_19_0, (String * key, Object * value, PhotonPlatform_c_DisplayClass19_0 * param_0001c962, MethodInfo * method)); DO_APP_FUNC(0x003C7490, String *, PhotonPlatformConfig_get_AppId, (PhotonPlatformConfig * __this, MethodInfo * method)); DO_APP_FUNC(0x028B9870, void, PhotonPlatformConfig_set_AppId, (PhotonPlatformConfig * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA2A0, PhotonPlatformConfig_set_AppId__MethodInfo); DO_APP_FUNC(0x003BB3C0, AuthenticationValues *, PhotonPlatformConfig_get_AuthenticationValues, (PhotonPlatformConfig * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, PhotonPlatformConfig_set_AuthenticationValues, (PhotonPlatformConfig * __this, AuthenticationValues * value, MethodInfo * method)); DO_APP_FUNC(0x005F7530, ConnectionProtocol__Enum, PhotonPlatformConfig_get_ConnectionProtocol, (PhotonPlatformConfig * __this, MethodInfo * method)); @@ -111183,10 +123564,11 @@ DO_APP_FUNC(0x003C7330, void, PhotonPlatformConfig_set_CustomSTUNServer, (Photon DO_APP_FUNC(0x028B9C00, Object__Array *, PhotonPlatformConfig_get_NO_ARGS, (PhotonPlatformConfig * __this, MethodInfo * method)); DO_APP_FUNC(0x028B9C40, void, PhotonPlatformConfig__ctor, (PhotonPlatformConfig * __this, MethodInfo * method)); DO_APP_FUNC(0x028B9C60, PhotonPlatformConfig *, PhotonPlatformConfig_InitDefaults, (PhotonPlatformConfig * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA0E0, PhotonPlatformConfig_InitDefaults__MethodInfo); DO_APP_FUNC(0x028BA6E0, void, PhotonPlatformConfig_UpdateBestRegion, (PhotonPlatformConfig * __this, PhotonRegion * region, MethodInfo * method)); DO_APP_FUNC(0x028BA960, bool, PhotonPlatformConfig_IsAppId, (PhotonPlatformConfig * __this, String * val, MethodInfo * method)); DO_APP_FUNC(0x028BAA90, void, PhotonSocket__ctor, (PhotonSocket * __this, PhotonPlatform * photonPlatform, DotNetPlatform * dotNetPlatform, bool ipv6, MethodInfo * method)); -DO_APP_FUNC(0x028BAB60, int32_t, PhotonSocket_RecvFrom, (PhotonSocket * __this, Byte__Array * buffer, int32_t bufferSize, UdpEndPoint remoteEndpoint, MethodInfo * method)); +DO_APP_FUNC(0x028BAB60, int32_t, PhotonSocket_RecvFrom, (PhotonSocket * __this, Byte__Array * buffer, int32_t bufferSize, UdpEndPoint * remoteEndpoint, MethodInfo * method)); DO_APP_FUNC(0x028BAC40, bool, PhotonSocket_RecvPoll, (PhotonSocket * __this, int32_t timeout, MethodInfo * method)); DO_APP_FUNC(0x028BACC0, int32_t, PhotonSocket_SendTo, (PhotonSocket * __this, Byte__Array * buffer, int32_t bytesToSend, UdpEndPoint endpoint, MethodInfo * method)); DO_APP_FUNC(0x028BAEB0, bool, PhotonPoller_SetHostInfo, (UdpSession * session, Action_2_Boolean_UdpKit_UdpSessionError_ * result, MethodInfo * method)); @@ -111224,15 +123606,18 @@ DO_APP_FUNC(0x028BE7A0, IEnumerator *, PhotonPoller_StartClientTimeout, (PhotonP DO_APP_FUNC(0x028BE850, void, PhotonPoller_StopPhotonClient, (MethodInfo * method)); DO_APP_FUNC(0x028BE900, void, PhotonPoller_Update, (PhotonPoller * __this, MethodInfo * method)); DO_APP_FUNC(0x028BEAB0, void, PhotonPoller_StartDone, (UdpEndPoint localEndPoint, Action_2_Boolean_UdpKit_UdpConnectionDisconnectReason_ * doneCallback, MethodInfo * method)); -DO_APP_FUNC(0x028BECF0, void, PhotonPoller_InstatiatePoller, (PhotonPoller * photonPoller, MethodInfo * method)); +DO_APP_FUNC(0x028BECF0, void, PhotonPoller_InstatiatePoller, (PhotonPoller * * photonPoller, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9EC0, PhotonPoller_InstatiatePoller__MethodInfo); DO_APP_FUNC(0x028BEF40, void, PhotonPoller_OnDestroy, (PhotonPoller * __this, MethodInfo * method)); DO_APP_FUNC(0x028BEF90, void, PhotonPoller_OnDisable, (PhotonPoller * __this, MethodInfo * method)); DO_APP_FUNC(0x028BEFE0, void, PhotonPoller_ConnectAttempt, (UdpEndPoint endpoint, MethodInfo * method)); DO_APP_FUNC(0x028BF210, void, PhotonPoller_ConnectFailed, (bool refused, MethodInfo * method)); DO_APP_FUNC(0x028BF300, void, PhotonPoller_Connected, (UdpConnection * connection, MethodInfo * method)); DO_APP_FUNC(0x028BF710, void, PhotonPoller_HandlerOperationResponse, (PhotonPoller * __this, OperationResponse * response, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9AE8, PhotonPoller_HandlerOperationResponse__MethodInfo); DO_APP_FUNC(0x028BFF10, void, PhotonPoller_OnEvent, (PhotonPoller * __this, EventData * evt, MethodInfo * method)); DO_APP_FUNC(0x028C0250, void, PhotonPoller_HandleStateChanged, (PhotonPoller * __this, ClientState__Enum fromState, ClientState__Enum toState, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9AF0, PhotonPoller_HandleStateChanged__MethodInfo); DO_APP_FUNC(0x028C03C0, void, PhotonPoller_PollOut, (PhotonPoller * __this, MethodInfo * method)); DO_APP_FUNC(0x028C0600, void, PhotonPoller_SendRelayUNreliable, (PhotonPoller * __this, uint8_t code, int32_t target, Object * data, MethodInfo * method)); DO_APP_FUNC(0x028C06E0, void, PhotonPoller_SendRelayReliable, (PhotonPoller * __this, uint8_t code, int32_t target, Object * data, MethodInfo * method)); @@ -111251,7 +123636,7 @@ DO_APP_FUNC(0x003AE050, void, PhotonPoller_OnPlayerPropertiesUpdate, (PhotonPoll DO_APP_FUNC(0x003AE050, void, PhotonPoller_OnRoomPropertiesUpdate, (PhotonPoller * __this, Hashtable_1 * propertiesThatChanged, MethodInfo * method)); DO_APP_FUNC(0x028C1190, PhotonPoller_PhotonPacket *, PhotonPoller_AllocPacket, (PhotonPoller * __this, int32_t size, MethodInfo * method)); DO_APP_FUNC(0x028C1360, void, PhotonPoller_FreePacket, (PhotonPoller * __this, PhotonPoller_PhotonPacket * packet, MethodInfo * method)); -DO_APP_FUNC(0x028C13C0, int32_t, PhotonPoller_RecvFrom, (Byte__Array * buffer, UdpEndPoint endpoint, MethodInfo * method)); +DO_APP_FUNC(0x028C13C0, int32_t, PhotonPoller_RecvFrom, (Byte__Array * buffer, UdpEndPoint * endpoint, MethodInfo * method)); DO_APP_FUNC(0x028C16B0, bool, PhotonPoller_RecvPoll, (MethodInfo * method)); DO_APP_FUNC(0x028C1870, int32_t, PhotonPoller_SendTo, (Byte__Array * buffer, int32_t bytesToSend, UdpEndPoint endpoint, MethodInfo * method)); DO_APP_FUNC(0x028C19F0, Byte__Array *, PhotonPoller_CloneArray, (PhotonPoller * __this, Byte__Array * array, int32_t size, MethodInfo * method)); @@ -111268,70 +123653,90 @@ DO_APP_FUNC(0x028C2830, UdpSessionError__Enum, PhotonPoller_ConvertErrorCode, (i DO_APP_FUNC(0x028C28A0, MatchmakingMode__Enum, PhotonPoller_ConvertMatchmakingMode, (UdpSessionFillMode__Enum fillMode, MethodInfo * method)); DO_APP_FUNC(0x028C28C0, void, PhotonPoller__ctor, (PhotonPoller * __this, MethodInfo * method)); DO_APP_FUNC(0x028C3340, bool, PhotonPoller__JoinSessionPre_b__105_0, (PhotonPoller * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9A18, PhotonPoller__JoinSessionPre_b__105_0__MethodInfo); DO_APP_FUNC(0x028C33C0, bool, PhotonPoller__JoinSessionPost_b__106_0, (PhotonPoller * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9A38, PhotonPoller__JoinSessionPost_b__106_0__MethodInfo); DO_APP_FUNC(0x028C33F0, bool, PhotonPoller__JoinSessionPost_b__106_1, (PhotonPoller * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9A30, PhotonPoller__JoinSessionPost_b__106_1__MethodInfo); DO_APP_FUNC(0x028C3420, bool, PhotonPoller__JoinSessionPost_b__106_2, (PhotonPoller * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB99B8, PhotonPoller__JoinSessionPost_b__106_2__MethodInfo); DO_APP_FUNC(0x003AE050, void, PhotonPoller_PhotonPacket__ctor, (PhotonPoller_PhotonPacket * __this, MethodInfo * method)); DO_APP_FUNC(0x028C3430, void, PhotonPoller_PhotonPacket__ctor_1, (PhotonPoller_PhotonPacket * __this, int32_t size, MethodInfo * method)); DO_APP_FUNC(0x028C34D0, void, PhotonPoller_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, PhotonPoller_c__ctor, (PhotonPoller_c * __this, MethodInfo * method)); DO_APP_FUNC(0x028C3580, void, PhotonPoller_c__SetHostInfo_b__0_0, (PhotonPoller_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA050, PhotonPoller_c__SetHostInfo_b__0_0__MethodInfo); DO_APP_FUNC(0x028C37D0, void, PhotonPoller_c__JoinSession_b__1_0, (PhotonPoller_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA068, PhotonPoller_c__JoinSession_b__1_0__MethodInfo); DO_APP_FUNC(0x028C3990, void, PhotonPoller_c__JoinRandomSession_b__2_0, (PhotonPoller_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9FF8, PhotonPoller_c__JoinRandomSession_b__2_0__MethodInfo); DO_APP_FUNC(0x003AE050, void, PhotonPoller_c__CreatePoller_b__62_0, (PhotonPoller_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9FB8, PhotonPoller_c__CreatePoller_b__62_0__MethodInfo); DO_APP_FUNC(0x003AE050, void, PhotonPoller_c_DisplayClass64_0__ctor, (PhotonPoller_c_DisplayClass64_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x028C3B50, void, PhotonPoller_c_DisplayClass64_0__SetupPhotonClient_g__callbackHandler_0, (PhotonPoller_c_DisplayClass64_0 * __this, bool result, UdpConnectionDisconnectReason__Enum disconnectReason, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9E00, PhotonPoller_c_DisplayClass64_0__SetupPhotonClient_g__callbackHandler_0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, PhotonPoller_StartClientTimeout_d_65__ctor, (PhotonPoller_StartClientTimeout_d_65 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, PhotonPoller_StartClientTimeout_d_65_System_IDisposable_Dispose, (PhotonPoller_StartClientTimeout_d_65 * __this, MethodInfo * method)); DO_APP_FUNC(0x028C4300, bool, PhotonPoller_StartClientTimeout_d_65_MoveNext, (PhotonPoller_StartClientTimeout_d_65 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, PhotonPoller_StartClientTimeout_d_65_System_Collections_Generic_IEnumerator_System_Object__get_Current, (PhotonPoller_StartClientTimeout_d_65 * __this, MethodInfo * method)); DO_APP_FUNC(0x028C4560, void, PhotonPoller_StartClientTimeout_d_65_System_Collections_IEnumerator_Reset, (PhotonPoller_StartClientTimeout_d_65 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9BA0, PhotonPoller_StartClientTimeout_d_65_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, PhotonPoller_StartClientTimeout_d_65_System_Collections_IEnumerator_get_Current, (PhotonPoller_StartClientTimeout_d_65 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, PhotonPoller_c_DisplayClass104_0__ctor, (PhotonPoller_c_DisplayClass104_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x028C45B0, bool, PhotonPoller_c_DisplayClass104_0__SetHostInfoRoutine_b__0, (PhotonPoller_c_DisplayClass104_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9BA8, PhotonPoller_c_DisplayClass104_0__SetHostInfoRoutine_b__0__MethodInfo); DO_APP_FUNC(0x028C4630, bool, PhotonPoller_c_DisplayClass104_0__SetHostInfoRoutine_b__1, (PhotonPoller_c_DisplayClass104_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9B60, PhotonPoller_c_DisplayClass104_0__SetHostInfoRoutine_b__1__MethodInfo); DO_APP_FUNC(0x028C4680, bool, PhotonPoller_c_DisplayClass104_0__SetHostInfoRoutine_b__2, (PhotonPoller_c_DisplayClass104_0 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9B50, PhotonPoller_c_DisplayClass104_0__SetHostInfoRoutine_b__2__MethodInfo); DO_APP_FUNC(0x003BCD60, void, PhotonPoller_SetHostInfoRoutine_d_104__ctor, (PhotonPoller_SetHostInfoRoutine_d_104 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, PhotonPoller_SetHostInfoRoutine_d_104_System_IDisposable_Dispose, (PhotonPoller_SetHostInfoRoutine_d_104 * __this, MethodInfo * method)); DO_APP_FUNC(0x028C46B0, bool, PhotonPoller_SetHostInfoRoutine_d_104_MoveNext, (PhotonPoller_SetHostInfoRoutine_d_104 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, PhotonPoller_SetHostInfoRoutine_d_104_System_Collections_Generic_IEnumerator_System_Object__get_Current, (PhotonPoller_SetHostInfoRoutine_d_104 * __this, MethodInfo * method)); DO_APP_FUNC(0x028C5AF0, void, PhotonPoller_SetHostInfoRoutine_d_104_System_Collections_IEnumerator_Reset, (PhotonPoller_SetHostInfoRoutine_d_104 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9B88, PhotonPoller_SetHostInfoRoutine_d_104_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, PhotonPoller_SetHostInfoRoutine_d_104_System_Collections_IEnumerator_get_Current, (PhotonPoller_SetHostInfoRoutine_d_104 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, PhotonPoller_JoinSessionPre_d_105__ctor, (PhotonPoller_JoinSessionPre_d_105 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, PhotonPoller_JoinSessionPre_d_105_System_IDisposable_Dispose, (PhotonPoller_JoinSessionPre_d_105 * __this, MethodInfo * method)); DO_APP_FUNC(0x028C5B40, bool, PhotonPoller_JoinSessionPre_d_105_MoveNext, (PhotonPoller_JoinSessionPre_d_105 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, PhotonPoller_JoinSessionPre_d_105_System_Collections_Generic_IEnumerator_System_Object__get_Current, (PhotonPoller_JoinSessionPre_d_105 * __this, MethodInfo * method)); DO_APP_FUNC(0x028C5DB0, void, PhotonPoller_JoinSessionPre_d_105_System_Collections_IEnumerator_Reset, (PhotonPoller_JoinSessionPre_d_105 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9A10, PhotonPoller_JoinSessionPre_d_105_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, PhotonPoller_JoinSessionPre_d_105_System_Collections_IEnumerator_get_Current, (PhotonPoller_JoinSessionPre_d_105 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, PhotonPoller_JoinSessionPost_d_106__ctor, (PhotonPoller_JoinSessionPost_d_106 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, PhotonPoller_JoinSessionPost_d_106_System_IDisposable_Dispose, (PhotonPoller_JoinSessionPost_d_106 * __this, MethodInfo * method)); DO_APP_FUNC(0x028C5E00, bool, PhotonPoller_JoinSessionPost_d_106_MoveNext, (PhotonPoller_JoinSessionPost_d_106 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, PhotonPoller_JoinSessionPost_d_106_System_Collections_Generic_IEnumerator_System_Object__get_Current, (PhotonPoller_JoinSessionPost_d_106 * __this, MethodInfo * method)); DO_APP_FUNC(0x028C66A0, void, PhotonPoller_JoinSessionPost_d_106_System_Collections_IEnumerator_Reset, (PhotonPoller_JoinSessionPost_d_106 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB99C0, PhotonPoller_JoinSessionPost_d_106_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, PhotonPoller_JoinSessionPost_d_106_System_Collections_IEnumerator_get_Current, (PhotonPoller_JoinSessionPost_d_106 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, PhotonPoller_JoinSessionRandomRoutine_d_107__ctor, (PhotonPoller_JoinSessionRandomRoutine_d_107 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, PhotonPoller_JoinSessionRandomRoutine_d_107_System_IDisposable_Dispose, (PhotonPoller_JoinSessionRandomRoutine_d_107 * __this, MethodInfo * method)); DO_APP_FUNC(0x028C66F0, bool, PhotonPoller_JoinSessionRandomRoutine_d_107_MoveNext, (PhotonPoller_JoinSessionRandomRoutine_d_107 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, PhotonPoller_JoinSessionRandomRoutine_d_107_System_Collections_Generic_IEnumerator_System_Object__get_Current, (PhotonPoller_JoinSessionRandomRoutine_d_107 * __this, MethodInfo * method)); DO_APP_FUNC(0x028C6BB0, void, PhotonPoller_JoinSessionRandomRoutine_d_107_System_Collections_IEnumerator_Reset, (PhotonPoller_JoinSessionRandomRoutine_d_107 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB99F0, PhotonPoller_JoinSessionRandomRoutine_d_107_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, PhotonPoller_JoinSessionRandomRoutine_d_107_System_Collections_IEnumerator_get_Current, (PhotonPoller_JoinSessionRandomRoutine_d_107 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, PhotonPoller_JoinSessionRoutine_d_108__ctor, (PhotonPoller_JoinSessionRoutine_d_108 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, PhotonPoller_JoinSessionRoutine_d_108_System_IDisposable_Dispose, (PhotonPoller_JoinSessionRoutine_d_108 * __this, MethodInfo * method)); DO_APP_FUNC(0x028C6C00, bool, PhotonPoller_JoinSessionRoutine_d_108_MoveNext, (PhotonPoller_JoinSessionRoutine_d_108 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, PhotonPoller_JoinSessionRoutine_d_108_System_Collections_Generic_IEnumerator_System_Object__get_Current, (PhotonPoller_JoinSessionRoutine_d_108 * __this, MethodInfo * method)); DO_APP_FUNC(0x028C6F40, void, PhotonPoller_JoinSessionRoutine_d_108_System_Collections_IEnumerator_Reset, (PhotonPoller_JoinSessionRoutine_d_108 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9A80, PhotonPoller_JoinSessionRoutine_d_108_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, PhotonPoller_JoinSessionRoutine_d_108_System_Collections_IEnumerator_get_Current, (PhotonPoller_JoinSessionRoutine_d_108 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, PhotonPoller_FailedJoinCallback_d_109__ctor, (PhotonPoller_FailedJoinCallback_d_109 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, PhotonPoller_FailedJoinCallback_d_109_System_IDisposable_Dispose, (PhotonPoller_FailedJoinCallback_d_109 * __this, MethodInfo * method)); DO_APP_FUNC(0x028C6F90, bool, PhotonPoller_FailedJoinCallback_d_109_MoveNext, (PhotonPoller_FailedJoinCallback_d_109 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, PhotonPoller_FailedJoinCallback_d_109_System_Collections_Generic_IEnumerator_System_Object__get_Current, (PhotonPoller_FailedJoinCallback_d_109 * __this, MethodInfo * method)); DO_APP_FUNC(0x028C7150, void, PhotonPoller_FailedJoinCallback_d_109_System_Collections_IEnumerator_Reset, (PhotonPoller_FailedJoinCallback_d_109 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9AA8, PhotonPoller_FailedJoinCallback_d_109_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, PhotonPoller_FailedJoinCallback_d_109_System_Collections_IEnumerator_get_Current, (PhotonPoller_FailedJoinCallback_d_109 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, PhotonPoller_FailedCreateCallback_d_110__ctor, (PhotonPoller_FailedCreateCallback_d_110 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, PhotonPoller_FailedCreateCallback_d_110_System_IDisposable_Dispose, (PhotonPoller_FailedCreateCallback_d_110 * __this, MethodInfo * method)); DO_APP_FUNC(0x028C71A0, bool, PhotonPoller_FailedCreateCallback_d_110_MoveNext, (PhotonPoller_FailedCreateCallback_d_110 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, PhotonPoller_FailedCreateCallback_d_110_System_Collections_Generic_IEnumerator_System_Object__get_Current, (PhotonPoller_FailedCreateCallback_d_110 * __this, MethodInfo * method)); DO_APP_FUNC(0x028C7340, void, PhotonPoller_FailedCreateCallback_d_110_System_Collections_IEnumerator_Reset, (PhotonPoller_FailedCreateCallback_d_110 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9A40, PhotonPoller_FailedCreateCallback_d_110_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, PhotonPoller_FailedCreateCallback_d_110_System_Collections_IEnumerator_get_Current, (PhotonPoller_FailedCreateCallback_d_110 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, String *, PhotonRegion_get_Code, (PhotonRegion * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, String *, PhotonRegion_get_Name, (PhotonRegion * __this, MethodInfo * method)); @@ -111366,6 +123771,7 @@ DO_APP_FUNC(0x003AE000, void, RoutineManager__ctor, (RoutineManager * __this, Me DO_APP_FUNC(0x028C9C30, void, StunMsgHeader__ctor, (StunMsgHeader * __this, uint32_t type, uint32_t length, uint32_t magic, Byte__Array * ts_id, MethodInfo * method)); DO_APP_FUNC(0x028C9CF0, Byte__Array *, StunMsgHeader_Encode, (StunMsgHeader * __this, MethodInfo * method)); DO_APP_FUNC(0x028C9F50, StunMsgHeader *, StunMsgHeader_Decode, (StunMsgHeader * __this, Byte__Array * data, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9808, StunMsgHeader_Decode__MethodInfo); DO_APP_FUNC(0x028CA4A0, StunServers_StunServer__Array *, StunServers_get_ALL_SERVERS, (MethodInfo * method)); DO_APP_FUNC(0x028CA6E0, bool, StunServers_RefreshServers, (MethodInfo * method)); DO_APP_FUNC(0x028CAB40, StunServers_StunServer *, StunServers_BuildIP, (String * ipOrname, int32_t port, MethodInfo * method)); @@ -111388,6 +123794,7 @@ DO_APP_FUNC(0x028CBD30, void, StunManager_RemovePingTarget, (StunManager * __thi DO_APP_FUNC(0x028CBF10, bool, StunManager_RecvStun, (StunManager * __this, Byte__Array * buffer, MethodInfo * method)); DO_APP_FUNC(0x028CC400, void, StunManager_Reset, (StunManager * __this, MethodInfo * method)); DO_APP_FUNC(0x028CC6C0, void, StunManager_Service, (StunManager * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA228, StunManager_Service__MethodInfo); DO_APP_FUNC(0x028CCD50, void, StunManager_RequestStunInfo, (StunManager * __this, MethodInfo * method)); DO_APP_FUNC(0x028CD090, void, StunManager_Ping, (StunManager * __this, UdpEndPoint endPoint, MethodInfo * method)); DO_APP_FUNC(0x028CD0F0, bool, StunManager_IsSignalingMsg, (StunManager * __this, Byte__Array * msg, MethodInfo * method)); @@ -111397,7 +123804,7 @@ DO_APP_FUNC(0x028CD3B0, StunMsgHeader *, StunManager_BuildSignalingRequest, (Met DO_APP_FUNC(0x028CD470, StunMsgHeader *, StunManager_BuildSignalingResponse, (MethodInfo * method)); DO_APP_FUNC(0x028CD530, StunMsgHeader *, StunManager_BuildStunInfoRequest, (int32_t id, MethodInfo * method)); DO_APP_FUNC(0x028CD5E0, IPEndPoint *, StunManager_GetIpEndPoint, (StunManager * __this, StunMsgHeader * stun, MethodInfo * method)); -DO_APP_FUNC(0x028CDAB0, void, StunManager_GetAddress, (StunManager * __this, Byte__Array * payload, int32_t startDiff, uint32_t outPort, Byte__Array * convertedAddress, MethodInfo * method)); +DO_APP_FUNC(0x028CDAB0, void, StunManager_GetAddress, (StunManager * __this, Byte__Array * payload, int32_t startDiff, uint32_t * outPort, Byte__Array * * convertedAddress, MethodInfo * method)); DO_APP_FUNC(0x028CE060, bool, StunManager_ValidStunMsg, (StunManager * __this, StunMsgHeader * msg, StunMsgType__Enum type, int32_t id, MethodInfo * method)); DO_APP_FUNC(0x028CE1E0, void, StunManager_GetBytes, (Byte__Array * src, Byte__Array * dst, int32_t start, MethodInfo * method)); DO_APP_FUNC(0x028CE220, Byte__Array *, StunManager_BuildID, (int32_t id, MethodInfo * method)); @@ -111408,6 +123815,7 @@ DO_APP_FUNC(0x028CE920, int32_t, PhotonClient_get_Tick, (PhotonClient * __this, DO_APP_FUNC(0x028CE970, void, PhotonClient_StartFallbackSendAckThread, (PhotonClient * __this, MethodInfo * method)); DO_APP_FUNC(0x028CEA50, void, PhotonClient_StopFallbackSendAckThread, (PhotonClient * __this, MethodInfo * method)); DO_APP_FUNC(0x028CEAD0, bool, PhotonClient_RealtimeFallbackThread, (PhotonClient * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB96C0, PhotonClient_RealtimeFallbackThread__MethodInfo); DO_APP_FUNC(0x003AE050, void, PhotonClient_OnConnected, (PhotonClient * __this, MethodInfo * method)); DO_APP_FUNC(0x028CEC40, void, PhotonClient_OnConnectedToMaster, (PhotonClient * __this, MethodInfo * method)); DO_APP_FUNC(0x028CEC60, void, PhotonClient_OnCustomAuthenticationFailed, (PhotonClient * __this, String * debugMessage, MethodInfo * method)); @@ -111415,6 +123823,7 @@ DO_APP_FUNC(0x018BC3B0, void, PhotonClient_OnCustomAuthenticationResponse, (Phot DO_APP_FUNC(0x028CED60, void, PhotonClient_OnDisconnected, (PhotonClient * __this, DisconnectCause__Enum cause, MethodInfo * method)); DO_APP_FUNC(0x028CEE20, void, PhotonClient_OnRegionListReceived, (PhotonClient * __this, RegionHandler * regionHandler, MethodInfo * method)); DO_APP_FUNC(0x028CEED0, void, PhotonClient_OnRegionPingCompleted, (PhotonClient * __this, RegionHandler * regionHandler, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB96B0, PhotonClient_OnRegionPingCompleted__MethodInfo); DO_APP_FUNC(0x028CF330, int32_t, PhotonClient_get_CurrentMasterId, (PhotonClient * __this, MethodInfo * method)); DO_APP_FUNC(0x0063C770, bool, PhotonClient_get_Enabled, (PhotonClient * __this, MethodInfo * method)); DO_APP_FUNC(0x028CF350, void, PhotonClient_set_Enabled, (PhotonClient * __this, bool value, MethodInfo * method)); @@ -111459,9 +123868,11 @@ DO_APP_FUNC(0x028D1360, void, SocketUdpPool_Dispose, (SocketUdpPool * __this, Me DO_APP_FUNC(0x028D1480, bool, SocketUdpPool_Connect, (SocketUdpPool * __this, MethodInfo * method)); DO_APP_FUNC(0x028D16A0, bool, SocketUdpPool_Disconnect, (SocketUdpPool * __this, MethodInfo * method)); DO_APP_FUNC(0x028D1990, PhotonSocketError__Enum, SocketUdpPool_Send, (SocketUdpPool * __this, Byte__Array * data, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01E85C40, PhotonSocketError__Enum, SocketUdpPool_Receive, (SocketUdpPool * __this, Byte__Array * data, MethodInfo * method)); +DO_APP_FUNC(0x01E85C40, PhotonSocketError__Enum, SocketUdpPool_Receive, (SocketUdpPool * __this, Byte__Array * * data, MethodInfo * method)); DO_APP_FUNC(0x028D1EF0, void, SocketUdpPool_DnsAndConnect, (SocketUdpPool * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9648, SocketUdpPool_DnsAndConnect__MethodInfo); DO_APP_FUNC(0x028D25E0, void, SocketUdpPool_ReceiveLoop, (SocketUdpPool * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9650, SocketUdpPool_ReceiveLoop__MethodInfo); DO_APP_FUNC(0x01C539B0, bool, VRBuilder_HasFirstPersonTwoHandTracking, (GameObject * character, MethodInfo * method)); DO_APP_FUNC(0x01C53D00, void, VRBuilder_AddFirstPersonTwoHandTracking, (GameObject * character, GameObject__Array * hands, RuntimeAnimatorController__Array * animatorControllers, GameObject__Array * itemSlotParents, MethodInfo * method)); DO_APP_FUNC(0x01C54D40, void, VRBuilder_AddHand, (FirstPersonObjects * firstPersonObjects, GameObject * hand, RuntimeAnimatorController * animatorController, GameObject * itemSlotParent, int32_t id, MethodInfo * method)); @@ -111478,6 +123889,7 @@ DO_APP_FUNC(0x01C56C00, void, FollowVRCameraCanvas_set_LerpSpeed, (FollowVRCamer DO_APP_FUNC(0x01C56C10, void, FollowVRCameraCanvas_Awake, (FollowVRCameraCanvas * __this, MethodInfo * method)); DO_APP_FUNC(0x01C57100, void, FollowVRCameraCanvas_OnAttachCharacter, (FollowVRCameraCanvas * __this, GameObject * character, MethodInfo * method)); DO_APP_FUNC(0x01C57410, void, FollowVRCameraCanvas_OnImmediateTransformChange, (FollowVRCameraCanvas * __this, bool snapAnimator, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D14378, FollowVRCameraCanvas_OnImmediateTransformChange__MethodInfo); DO_APP_FUNC(0x01C57420, void, FollowVRCameraCanvas_LateUpdate, (FollowVRCameraCanvas * __this, MethodInfo * method)); DO_APP_FUNC(0x01C57780, void, FollowVRCameraCanvas_FixedUpdate, (FollowVRCameraCanvas * __this, MethodInfo * method)); DO_APP_FUNC(0x01C57790, void, FollowVRCameraCanvas__ctor, (FollowVRCameraCanvas * __this, MethodInfo * method)); @@ -111487,21 +123899,32 @@ DO_APP_FUNC(0x01C577C0, void, UIFade_Awake, (UIFade * __this, MethodInfo * metho DO_APP_FUNC(0x01C578E0, void, UIFade_OnAttachCharacter, (UIFade * __this, GameObject * character, MethodInfo * method)); DO_APP_FUNC(0x01C57DD0, void, UIFade_Update, (UIFade * __this, MethodInfo * method)); DO_APP_FUNC(0x01C58020, void, UIFade_StartFade, (UIFade * __this, float duration, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D14348, UIFade_StartFade__MethodInfo); DO_APP_FUNC(0x01C58120, void, UIFade_OnDeath, (UIFade * __this, Vector3 position, Vector3 force, GameObject * attacker, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D14358, UIFade_OnDeath__MethodInfo); DO_APP_FUNC(0x01C58240, void, UIFade_OnRespawn, (UIFade * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D14350, UIFade_OnRespawn__MethodInfo); DO_APP_FUNC(0x01C582E0, void, UIFade__ctor, (UIFade * __this, MethodInfo * method)); DO_APP_FUNC(0x01C58300, void, AOTLinker_4_Linker, (AOTLinker_4 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, AOTLinker_4__ctor, (AOTLinker_4 * __this, MethodInfo * method)); DO_APP_FUNC(0x01C58EA0, void, AOTLinker_c_1__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AOTLinker_c_1__ctor, (AOTLinker_c_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x003CB690, MoveInPlace_HandMovementOptions__Enum, AOTLinker_c_1__Linker_b__0_0, (AOTLinker_c_1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D142C0, AOTLinker_c_1__Linker_b__0_0__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c_1__Linker_b__0_1, (AOTLinker_c_1 * __this, MoveInPlace_HandMovementOptions__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D142B8, AOTLinker_c_1__Linker_b__0_1__MethodInfo); DO_APP_FUNC(0x00A9AD90, SlotEquip_ItemDefinitionStateName, AOTLinker_c_1__Linker_b__0_2, (AOTLinker_c_1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D142B0, AOTLinker_c_1__Linker_b__0_2__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c_1__Linker_b__0_3, (AOTLinker_c_1 * __this, SlotEquip_ItemDefinitionStateName value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D142A8, AOTLinker_c_1__Linker_b__0_3__MethodInfo); DO_APP_FUNC(0x003CB690, Hold_StopAction__Enum, AOTLinker_c_1__Linker_b__0_4, (AOTLinker_c_1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D142A0, AOTLinker_c_1__Linker_b__0_4__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c_1__Linker_b__0_5, (AOTLinker_c_1 * __this, Hold_StopAction__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D14298, AOTLinker_c_1__Linker_b__0_5__MethodInfo); DO_APP_FUNC(0x003CB690, FlickReload_StartFlickDirection__Enum, AOTLinker_c_1__Linker_b__0_6, (AOTLinker_c_1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D14290, AOTLinker_c_1__Linker_b__0_6__MethodInfo); DO_APP_FUNC(0x003AE050, void, AOTLinker_c_1__Linker_b__0_7, (AOTLinker_c_1 * __this, FlickReload_StartFlickDirection__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D14288, AOTLinker_c_1__Linker_b__0_7__MethodInfo); DO_APP_FUNC(0x003CD2B0, float, VRThrowableItem_get_VelocityMultiplier, (VRThrowableItem * __this, MethodInfo * method)); DO_APP_FUNC(0x01C58F50, void, VRThrowableItem_set_VelocityMultiplier, (VRThrowableItem * __this, float value, MethodInfo * method)); DO_APP_FUNC(0x003CC900, float, VRThrowableItem_get_ForwardVelocityThreshold, (VRThrowableItem * __this, MethodInfo * method)); @@ -111532,6 +123955,7 @@ DO_APP_FUNC(0x01C596E0, void, HandTracker_1_Awake, (HandTracker_1 * __this, Meth DO_APP_FUNC(0x01C59970, void, HandTracker_1_LateUpdate, (HandTracker_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x01C59B90, void, HandTracker_1_ApplyRotation, (HandTracker_1 * __this, Quaternion rotation, MethodInfo * method)); DO_APP_FUNC(0x01C59D90, void, HandTracker_1_OnNodeStatusChange, (HandTracker_1 * __this, XRNode__Enum node, int32_t index, bool tracked, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D14308, HandTracker_1_OnNodeStatusChange__MethodInfo); DO_APP_FUNC(0x01C59EA0, void, HandTracker_1_OnDestroy, (HandTracker_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x01C59F80, void, HandTracker_1__ctor, (HandTracker_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x00B04C80, Vector3, HeadTracker_get_PositionOffset, (HeadTracker * __this, MethodInfo * method)); @@ -111539,16 +123963,18 @@ DO_APP_FUNC(0x00B04CA0, void, HeadTracker_set_PositionOffset, (HeadTracker * __t DO_APP_FUNC(0x01C59FC0, void, HeadTracker_Awake, (HeadTracker * __this, MethodInfo * method)); DO_APP_FUNC(0x01C5A120, void, HeadTracker_LateUpdate, (HeadTracker * __this, MethodInfo * method)); DO_APP_FUNC(0x01C5A360, void, HeadTracker_TryRecenter, (HeadTracker * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D14240, HeadTracker_TryRecenter__MethodInfo); DO_APP_FUNC(0x01C5A370, void, HeadTracker_OnDestroy, (HeadTracker * __this, MethodInfo * method)); DO_APP_FUNC(0x007159A0, void, HeadTracker__ctor, (HeadTracker * __this, MethodInfo * method)); DO_APP_FUNC(0x01C5A440, void, VRInputTracker_Start, (VRInputTracker * __this, MethodInfo * method)); DO_APP_FUNC(0x01C5A6D0, void, VRInputTracker_Update, (VRInputTracker * __this, MethodInfo * method)); DO_APP_FUNC(0x01C5AAE0, String *, VRInputTracker_GetDeviceName, (MethodInfo * method)); DO_APP_FUNC(0x01C5ACB0, bool, VRInputTracker_IsTracked, (XRNode__Enum node, MethodInfo * method)); -DO_APP_FUNC(0x01C5ADB0, bool, VRInputTracker_GetLocalPosition, (XRNode__Enum node, Vector3 position, MethodInfo * method)); -DO_APP_FUNC(0x01C5AF60, bool, VRInputTracker_GetLocalRotation, (XRNode__Enum node, Quaternion rotation, MethodInfo * method)); -DO_APP_FUNC(0x01C5B100, bool, VRInputTracker_GetVelocity, (XRNode__Enum node, Vector3 velocity, MethodInfo * method)); +DO_APP_FUNC(0x01C5ADB0, bool, VRInputTracker_GetLocalPosition, (XRNode__Enum node, Vector3 * position, MethodInfo * method)); +DO_APP_FUNC(0x01C5AF60, bool, VRInputTracker_GetLocalRotation, (XRNode__Enum node, Quaternion * rotation, MethodInfo * method)); +DO_APP_FUNC(0x01C5B100, bool, VRInputTracker_GetVelocity, (XRNode__Enum node, Vector3 * velocity, MethodInfo * method)); DO_APP_FUNC(0x01C5B2C0, void, VRInputTracker_TryRecenter, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D14260, VRInputTracker_TryRecenter__MethodInfo); DO_APP_FUNC(0x01C5B500, void, VRInputTracker_OnDestroy, (VRInputTracker * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, VRInputTracker__ctor, (VRInputTracker * __this, MethodInfo * method)); DO_APP_FUNC(0x01C5B5C0, void, VRInputTracker__cctor, (MethodInfo * method)); @@ -111577,9 +124003,13 @@ DO_APP_FUNC(0x0072BFF0, int32_t, HandHandler_GetSlotCount, (HandHandler * __this DO_APP_FUNC(0x01C5E230, GameObject *, HandHandler_GetHand, (HandHandler * __this, int32_t slotID, MethodInfo * method)); DO_APP_FUNC(0x01C5E240, Vector3, HandHandler_GetVelocity, (HandHandler * __this, int32_t slotID, MethodInfo * method)); DO_APP_FUNC(0x01C5E4B0, void, HandHandler_OnWillEquipItem, (HandHandler * __this, Item * item, int32_t slotID, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D14170, HandHandler_OnWillEquipItem__MethodInfo); DO_APP_FUNC(0x01C5E520, void, HandHandler_OnUnequipItem, (HandHandler * __this, Item * item, int32_t slotID, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D14178, HandHandler_OnUnequipItem__MethodInfo); DO_APP_FUNC(0x01C5E6F0, void, HandHandler_OnNodeStatusChange, (HandHandler * __this, XRNode__Enum node, int32_t index, bool tracked, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D14180, HandHandler_OnNodeStatusChange__MethodInfo); DO_APP_FUNC(0x01C5E730, void, HandHandler_OnControllerConnected, (HandHandler * __this, bool controllerConnected, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D14188, HandHandler_OnControllerConnected__MethodInfo); DO_APP_FUNC(0x01C5E790, void, HandHandler_OnDestroy, (HandHandler * __this, MethodInfo * method)); DO_APP_FUNC(0x01C5EB60, void, HandHandler__ctor, (HandHandler * __this, MethodInfo * method)); DO_APP_FUNC(0x00897450, bool, FirstPersonVR_get_BlockInput, (FirstPersonVR * __this, MethodInfo * method)); @@ -111604,6 +124034,7 @@ DO_APP_FUNC(0x01C5F080, void, ArmSwing_AbilityStarted, (ArmSwing * __this, Metho DO_APP_FUNC(0x01C5F500, void, ArmSwing_Update, (ArmSwing * __this, MethodInfo * method)); DO_APP_FUNC(0x01C5F580, float, ArmSwing_GetMoveDistance, (ArmSwing * __this, MethodInfo * method)); DO_APP_FUNC(0x01C5F770, void, ArmSwing_OnNodeStatusChange, (ArmSwing * __this, XRNode__Enum node, int32_t index, bool tracked, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D140E8, ArmSwing_OnNodeStatusChange__MethodInfo); DO_APP_FUNC(0x01C5F910, void, ArmSwing_AbilityStopped, (ArmSwing * __this, bool force, MethodInfo * method)); DO_APP_FUNC(0x01C5FA00, void, ArmSwing__ctor, (ArmSwing * __this, MethodInfo * method)); DO_APP_FUNC(0x01C5FA30, float, Dash_get_MoveSpeed, (Dash * __this, MethodInfo * method)); @@ -111636,9 +124067,11 @@ DO_APP_FUNC(0x01C60AB0, void, DirectionalRotate_AbilityStarted, (DirectionalRota DO_APP_FUNC(0x01C60F80, void, DirectionalRotate_OnHorizontalAxisInput, (DirectionalRotate * __this, float axisValue, MethodInfo * method)); DO_APP_FUNC(0x01C61090, void, DirectionalRotate_OnVerticalAxisInput, (DirectionalRotate * __this, float axisValue, MethodInfo * method)); DO_APP_FUNC(0x01C611B0, void, DirectionalRotate_OnFade, (DirectionalRotate * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D14078, DirectionalRotate_OnFade__MethodInfo); DO_APP_FUNC(0x01C611C0, void, DirectionalRotate_UpdateRotation, (DirectionalRotate * __this, MethodInfo * method)); DO_APP_FUNC(0x01C61270, void, DirectionalRotate_LateUpdate, (DirectionalRotate * __this, MethodInfo * method)); DO_APP_FUNC(0x0059F010, void, DirectionalRotate_OnFadeComplete, (DirectionalRotate * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D14080, DirectionalRotate_OnFadeComplete__MethodInfo); DO_APP_FUNC(0x01C61350, void, DirectionalRotate_AbilityStopped, (DirectionalRotate * __this, bool force, MethodInfo * method)); DO_APP_FUNC(0x01C617D0, void, DirectionalRotate__ctor, (DirectionalRotate * __this, MethodInfo * method)); DO_APP_FUNC(0x0059EE40, int32_t, FingerIndicator_get_SlotID, (FingerIndicator * __this, MethodInfo * method)); @@ -111655,19 +124088,29 @@ DO_APP_FUNC(0x01C62F70, bool, FingerIndicator_CanStopAbility, (FingerIndicator * DO_APP_FUNC(0x01C62FE0, void, FingerIndicator_UpdateAnimator, (FingerIndicator * __this, MethodInfo * method)); DO_APP_FUNC(0x01C63330, int32_t, FingerIndicator_GetStateIndex, (FingerIndicator * __this, MethodInfo * method)); DO_APP_FUNC(0x01C633E0, void, FingerIndicator_OnIndexDown, (FingerIndicator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13FC8, FingerIndicator_OnIndexDown__MethodInfo); DO_APP_FUNC(0x01C63410, void, FingerIndicator_OnIndexUp, (FingerIndicator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13FA0, FingerIndicator_OnIndexUp__MethodInfo); DO_APP_FUNC(0x01C63450, void, FingerIndicator_OnIndexNearTouchDown, (FingerIndicator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13FB8, FingerIndicator_OnIndexNearTouchDown__MethodInfo); DO_APP_FUNC(0x01C63480, void, FingerIndicator_OnIndexNearTouchUp, (FingerIndicator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13FA8, FingerIndicator_OnIndexNearTouchUp__MethodInfo); DO_APP_FUNC(0x01C634B0, void, FingerIndicator_OnThumbNearTouchDown, (FingerIndicator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13F98, FingerIndicator_OnThumbNearTouchDown__MethodInfo); DO_APP_FUNC(0x01C634E0, void, FingerIndicator_OnThumbNearTouchUp, (FingerIndicator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13F90, FingerIndicator_OnThumbNearTouchUp__MethodInfo); DO_APP_FUNC(0x01C63510, void, FingerIndicator_OnHandDown, (FingerIndicator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13FD8, FingerIndicator_OnHandDown__MethodInfo); DO_APP_FUNC(0x01C63540, void, FingerIndicator_OnHandUp, (FingerIndicator * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13FD0, FingerIndicator_OnHandUp__MethodInfo); DO_APP_FUNC(0x01C63570, void, FingerIndicator_OnGripStrengthInput, (FingerIndicator * __this, float value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D140D0, FingerIndicator_OnGripStrengthInput__MethodInfo); DO_APP_FUNC(0x01C63580, void, FingerIndicator_OnDestroy, (FingerIndicator * __this, MethodInfo * method)); DO_APP_FUNC(0x01C63A70, void, FingerIndicator__ctor, (FingerIndicator * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, FreeMovement_get_IsConcurrent, (FreeMovement * __this, MethodInfo * method)); DO_APP_FUNC(0x01C63C90, void, FreeMovement_Awake, (FreeMovement * __this, MethodInfo * method)); DO_APP_FUNC(0x01C63E70, void, FreeMovement_OnAttachLookSource, (FreeMovement * __this, ILookSource * lookSource, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13F40, FreeMovement_OnAttachLookSource__MethodInfo); DO_APP_FUNC(0x01C63F80, void, FreeMovement_UpdatePosition, (FreeMovement * __this, MethodInfo * method)); DO_APP_FUNC(0x01C64040, void, FreeMovement_OnDestroy, (FreeMovement * __this, MethodInfo * method)); DO_APP_FUNC(0x0059EE30, void, FreeMovement__ctor, (FreeMovement * __this, MethodInfo * method)); @@ -111700,11 +124143,13 @@ DO_APP_FUNC(0x01C65010, void, MoveInPlace_AbilityStarted, (MoveInPlace * __this, DO_APP_FUNC(0x01C65530, void, MoveInPlace_Update, (MoveInPlace * __this, MethodInfo * method)); DO_APP_FUNC(0x01C65740, float, MoveInPlace_GetMoveDistance, (MoveInPlace * __this, MethodInfo * method)); DO_APP_FUNC(0x01C658D0, void, MoveInPlace_OnNodeStatusChange, (MoveInPlace * __this, XRNode__Enum node, int32_t index, bool tracked, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13F78, MoveInPlace_OnNodeStatusChange__MethodInfo); DO_APP_FUNC(0x01C65B10, void, MoveInPlace_AbilityStopped, (MoveInPlace * __this, bool force, MethodInfo * method)); DO_APP_FUNC(0x01C65C00, void, MoveInPlace__ctor, (MoveInPlace * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, RotateWithHead_get_IsConcurrent, (RotateWithHead * __this, MethodInfo * method)); DO_APP_FUNC(0x01C65C30, void, RotateWithHead_Awake, (RotateWithHead * __this, MethodInfo * method)); DO_APP_FUNC(0x01C65E10, void, RotateWithHead_OnAttachLookSource, (RotateWithHead * __this, ILookSource * lookSource, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13EE8, RotateWithHead_OnAttachLookSource__MethodInfo); DO_APP_FUNC(0x01C65F20, bool, RotateWithHead_CanStartAbility, (RotateWithHead * __this, MethodInfo * method)); DO_APP_FUNC(0x01C66030, void, RotateWithHead_UpdateRotation, (RotateWithHead * __this, MethodInfo * method)); DO_APP_FUNC(0x01C66370, void, RotateWithHead_OnDestroy, (RotateWithHead * __this, MethodInfo * method)); @@ -111738,6 +124183,7 @@ DO_APP_FUNC(0x01C66800, void, TrajectoryMove_set_AdjustSurfaceIndicatorColor, (T DO_APP_FUNC(0x0041AEF0, bool, TrajectoryMove_get_IsConcurrent, (TrajectoryMove * __this, MethodInfo * method)); DO_APP_FUNC(0x01C66810, void, TrajectoryMove_Awake, (TrajectoryMove * __this, MethodInfo * method)); DO_APP_FUNC(0x01C66CE0, void, TrajectoryMove_OnAttachLookSource, (TrajectoryMove * __this, ILookSource * lookSource, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13EA8, TrajectoryMove_OnAttachLookSource__MethodInfo); DO_APP_FUNC(0x01C66DF0, void, TrajectoryMove_Start, (TrajectoryMove * __this, MethodInfo * method)); DO_APP_FUNC(0x01C66E70, bool, TrajectoryMove_CanStartAbility, (TrajectoryMove * __this, MethodInfo * method)); DO_APP_FUNC(0x01C66EF0, void, TrajectoryMove_AbilityStarted, (TrajectoryMove * __this, MethodInfo * method)); @@ -111745,6 +124191,7 @@ DO_APP_FUNC(0x01C67720, void, TrajectoryMove_Update, (TrajectoryMove * __this, M DO_APP_FUNC(0x01C68BD0, void, TrajectoryMove_OnHorizontalAxisInput, (TrajectoryMove * __this, float axisValue, MethodInfo * method)); DO_APP_FUNC(0x01C68C70, void, TrajectoryMove_OnVerticalAxisInput, (TrajectoryMove * __this, float axisValue, MethodInfo * method)); DO_APP_FUNC(0x01C68D20, void, TrajectoryMove_OnPerformMovementInput, (TrajectoryMove * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13F18, TrajectoryMove_OnPerformMovementInput__MethodInfo); DO_APP_FUNC(0x01C68D40, void, TrajectoryMove_AbilityStopped, (TrajectoryMove * __this, bool force, MethodInfo * method)); DO_APP_FUNC(0x01C693F0, void, TrajectoryMove_OnDestroy, (TrajectoryMove * __this, MethodInfo * method)); DO_APP_FUNC(0x01C69500, void, TrajectoryMove__ctor, (TrajectoryMove * __this, MethodInfo * method)); @@ -111780,18 +124227,24 @@ DO_APP_FUNC(0x0063B820, SlotEquip_ItemDefinitionStateName__Array *, SlotEquip_ge DO_APP_FUNC(0x00A8DDA0, void, SlotEquip_set_ItemDefinitionStateNames, (SlotEquip * __this, SlotEquip_ItemDefinitionStateName__Array * value, MethodInfo * method)); DO_APP_FUNC(0x01C6AA40, void, SlotEquip_Awake, (SlotEquip * __this, MethodInfo * method)); DO_APP_FUNC(0x01C6B500, void, SlotEquip_OnPickupItem, (SlotEquip * __this, Item * item, int32_t amount, bool immediatePickup, bool forceEquip, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13C98, SlotEquip_OnPickupItem__MethodInfo); DO_APP_FUNC(0x01C6B720, void, SlotEquip_OnEquipItem, (SlotEquip * __this, Item * item, int32_t slotID, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13CB8, SlotEquip_OnEquipItem__MethodInfo); DO_APP_FUNC(0x01C6B870, void, SlotEquip_OnUnequipItem, (SlotEquip * __this, Item * item, int32_t slotID, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13E08, SlotEquip_OnUnequipItem__MethodInfo); DO_APP_FUNC(0x01C6B880, void, SlotEquip_OnNextItemSet, (SlotEquip * __this, Item * item, bool unequipOnFailure, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13CA8, SlotEquip_OnNextItemSet__MethodInfo); DO_APP_FUNC(0x01C6B890, void, SlotEquip_UnequipItem, (SlotEquip * __this, Item * item, bool removeFromInventory, MethodInfo * method)); DO_APP_FUNC(0x01C6BDB0, void, SlotEquip_OnDestroy, (SlotEquip * __this, MethodInfo * method)); DO_APP_FUNC(0x01C6C050, void, SlotEquip__ctor, (SlotEquip * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, ItemDefinitionBase *, SlotEquip_ItemDefinitionStateName_get_ItemDefinition, (SlotEquip_ItemDefinitionStateName__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, String *, SlotEquip_ItemDefinitionStateName_get_StateName, (SlotEquip_ItemDefinitionStateName__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, ItemDefinitionBase *, SlotEquip_ItemDefinitionStateName_get_ItemDefinition, (SlotEquip_ItemDefinitionStateName * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, String *, SlotEquip_ItemDefinitionStateName_get_StateName, (SlotEquip_ItemDefinitionStateName * __this, MethodInfo * method)); DO_APP_FUNC(0x01C6C070, void, VRCameraPivot_Awake, (VRCameraPivot * __this, MethodInfo * method)); DO_APP_FUNC(0x01C6C1E0, void, VRCameraPivot_Start, (VRCameraPivot * __this, MethodInfo * method)); DO_APP_FUNC(0x01C6C380, void, VRCameraPivot_OnRecenter, (VRCameraPivot * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13C40, VRCameraPivot_OnRecenter__MethodInfo); DO_APP_FUNC(0x01C6C790, void, VRCameraPivot_OnNodeStatusChange, (VRCameraPivot * __this, XRNode__Enum node, int32_t index, bool tracked, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13C48, VRCameraPivot_OnNodeStatusChange__MethodInfo); DO_APP_FUNC(0x01C6C7B0, void, VRCameraPivot_OnDestroy, (VRCameraPivot * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, VRCameraPivot__ctor, (VRCameraPivot * __this, MethodInfo * method)); DO_APP_FUNC(0x00A79C40, float, FirstPersonVR_1_get_LookDirectionDistance, (FirstPersonVR_1 * __this, MethodInfo * method)); @@ -111893,8 +124346,8 @@ DO_APP_FUNC(0x02CC95E0, void, Animation_set_cullingType, (Animation * __this, An DO_APP_FUNC(0x02CC9640, Bounds, Animation_get_localBounds, (Animation * __this, MethodInfo * method)); DO_APP_FUNC(0x02CC96B0, void, Animation_set_localBounds, (Animation * __this, Bounds value, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, Animation__ctor, (Animation * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CC9710, void, Animation_get_localBounds_Injected, (Animation * __this, Bounds ret, MethodInfo * method)); -DO_APP_FUNC(0x02CC9770, void, Animation_set_localBounds_Injected, (Animation * __this, Bounds value, MethodInfo * method)); +DO_APP_FUNC(0x02CC9710, void, Animation_get_localBounds_Injected, (Animation * __this, Bounds * ret, MethodInfo * method)); +DO_APP_FUNC(0x02CC9770, void, Animation_set_localBounds_Injected, (Animation * __this, Bounds * value, MethodInfo * method)); DO_APP_FUNC(0x019CA400, void, Animation_Enumerator__ctor, (Animation_Enumerator * __this, Animation * outer, MethodInfo * method)); DO_APP_FUNC(0x02CC97D0, Object *, Animation_Enumerator_get_Current, (Animation_Enumerator * __this, MethodInfo * method)); DO_APP_FUNC(0x02CC9840, bool, Animation_Enumerator_MoveNext, (Animation_Enumerator * __this, MethodInfo * method)); @@ -111937,21 +124390,22 @@ DO_APP_FUNC(0x02CCA640, bool, AnimationClip_get_hasMotionCurves, (AnimationClip DO_APP_FUNC(0x02CCA690, bool, AnimationClip_get_hasRootCurves, (AnimationClip * __this, MethodInfo * method)); DO_APP_FUNC(0x02CCA6E0, bool, AnimationClip_get_hasRootMotion, (AnimationClip * __this, MethodInfo * method)); DO_APP_FUNC(0x02CCA730, void, AnimationClip_AddEvent, (AnimationClip * __this, AnimationEvent * evt, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFDA28, AnimationClip_AddEvent__MethodInfo); DO_APP_FUNC(0x02CCA7F0, void, AnimationClip_AddEventInternal, (AnimationClip * __this, Object * evt, MethodInfo * method)); DO_APP_FUNC(0x02CCA850, AnimationEvent__Array *, AnimationClip_get_events, (AnimationClip * __this, MethodInfo * method)); DO_APP_FUNC(0x02CCA900, void, AnimationClip_set_events, (AnimationClip * __this, AnimationEvent__Array * value, MethodInfo * method)); DO_APP_FUNC(0x02CCA900, void, AnimationClip_SetEventsInternal, (AnimationClip * __this, Array * value, MethodInfo * method)); DO_APP_FUNC(0x02CCA960, Array *, AnimationClip_GetEventsInternal, (AnimationClip * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CCA9B0, void, AnimationClip_get_localBounds_Injected, (AnimationClip * __this, Bounds ret, MethodInfo * method)); -DO_APP_FUNC(0x02CCAA10, void, AnimationClip_set_localBounds_Injected, (AnimationClip * __this, Bounds value, MethodInfo * method)); -DO_APP_FUNC(0x02CCAA70, AnimationClip *, AnimatorClipInfo_get_clip, (AnimatorClipInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CCAAD0, float, AnimatorClipInfo_get_weight, (AnimatorClipInfo__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CCA9B0, void, AnimationClip_get_localBounds_Injected, (AnimationClip * __this, Bounds * ret, MethodInfo * method)); +DO_APP_FUNC(0x02CCAA10, void, AnimationClip_set_localBounds_Injected, (AnimationClip * __this, Bounds * value, MethodInfo * method)); +DO_APP_FUNC(0x02CCAA70, AnimationClip *, AnimatorClipInfo_get_clip, (AnimatorClipInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CCAAD0, float, AnimatorClipInfo_get_weight, (AnimatorClipInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x02CCAAE0, AnimationClip *, AnimatorClipInfo_InstanceIDToAnimationClipPPtr, (int32_t instanceID, MethodInfo * method)); -DO_APP_FUNC(0x02CCAB30, bool, AnimatorStateInfo_IsName, (AnimatorStateInfo__Boxed * __this, String * name, MethodInfo * method)); -DO_APP_FUNC(0x01809D80, int32_t, AnimatorStateInfo_get_fullPathHash, (AnimatorStateInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B78450, int32_t, AnimatorStateInfo_get_shortNameHash, (AnimatorStateInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CCABB0, float, AnimatorStateInfo_get_normalizedTime, (AnimatorStateInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CCABC0, void, MatchTargetWeightMask__ctor, (MatchTargetWeightMask__Boxed * __this, Vector3 positionXYZWeight, float rotationWeight, MethodInfo * method)); +DO_APP_FUNC(0x02CCAB30, bool, AnimatorStateInfo_IsName, (AnimatorStateInfo * __this, String * name, MethodInfo * method)); +DO_APP_FUNC(0x01809D80, int32_t, AnimatorStateInfo_get_fullPathHash, (AnimatorStateInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B78450, int32_t, AnimatorStateInfo_get_shortNameHash, (AnimatorStateInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CCABB0, float, AnimatorStateInfo_get_normalizedTime, (AnimatorStateInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CCABC0, void, MatchTargetWeightMask__ctor, (MatchTargetWeightMask * __this, Vector3 positionXYZWeight, float rotationWeight, MethodInfo * method)); DO_APP_FUNC(0x02CCABE0, bool, Animator_get_isOptimizable, (Animator * __this, MethodInfo * method)); DO_APP_FUNC(0x02CCAC30, bool, Animator_get_isHuman, (Animator * __this, MethodInfo * method)); DO_APP_FUNC(0x02CCAC80, bool, Animator_get_hasRootMotion, (Animator * __this, MethodInfo * method)); @@ -112051,10 +124505,10 @@ DO_APP_FUNC(0x02CCD580, String *, Animator_GetLayerName, (Animator * __this, int DO_APP_FUNC(0x02CCD5E0, int32_t, Animator_GetLayerIndex, (Animator * __this, String * layerName, MethodInfo * method)); DO_APP_FUNC(0x02CCD640, float, Animator_GetLayerWeight, (Animator * __this, int32_t layerIndex, MethodInfo * method)); DO_APP_FUNC(0x02CCD6A0, void, Animator_SetLayerWeight, (Animator * __this, int32_t layerIndex, float weight, MethodInfo * method)); -DO_APP_FUNC(0x02CCD710, void, Animator_GetAnimatorStateInfo, (Animator * __this, int32_t layerIndex, StateInfoIndex__Enum stateInfoIndex, AnimatorStateInfo info, MethodInfo * method)); +DO_APP_FUNC(0x02CCD710, void, Animator_GetAnimatorStateInfo, (Animator * __this, int32_t layerIndex, StateInfoIndex__Enum stateInfoIndex, AnimatorStateInfo * info, MethodInfo * method)); DO_APP_FUNC(0x02CCD790, AnimatorStateInfo, Animator_GetCurrentAnimatorStateInfo, (Animator * __this, int32_t layerIndex, MethodInfo * method)); DO_APP_FUNC(0x02CCD840, AnimatorStateInfo, Animator_GetNextAnimatorStateInfo, (Animator * __this, int32_t layerIndex, MethodInfo * method)); -DO_APP_FUNC(0x02CCD8F0, void, Animator_GetAnimatorTransitionInfo, (Animator * __this, int32_t layerIndex, AnimatorTransitionInfo info, MethodInfo * method)); +DO_APP_FUNC(0x02CCD8F0, void, Animator_GetAnimatorTransitionInfo, (Animator * __this, int32_t layerIndex, AnimatorTransitionInfo * info, MethodInfo * method)); DO_APP_FUNC(0x02CCD960, AnimatorTransitionInfo, Animator_GetAnimatorTransitionInfo_1, (Animator * __this, int32_t layerIndex, MethodInfo * method)); DO_APP_FUNC(0x02CCDA00, int32_t, Animator_GetAnimatorClipInfoCount, (Animator * __this, int32_t layerIndex, bool current, MethodInfo * method)); DO_APP_FUNC(0x02CCDA70, int32_t, Animator_GetCurrentAnimatorClipInfoCount, (Animator * __this, int32_t layerIndex, MethodInfo * method)); @@ -112062,13 +124516,16 @@ DO_APP_FUNC(0x02CCDAD0, int32_t, Animator_GetNextAnimatorClipInfoCount, (Animato DO_APP_FUNC(0x02CCDB30, AnimatorClipInfo__Array *, Animator_GetCurrentAnimatorClipInfo, (Animator * __this, int32_t layerIndex, MethodInfo * method)); DO_APP_FUNC(0x02CCDB90, AnimatorClipInfo__Array *, Animator_GetNextAnimatorClipInfo, (Animator * __this, int32_t layerIndex, MethodInfo * method)); DO_APP_FUNC(0x02CCDBF0, void, Animator_GetCurrentAnimatorClipInfo_1, (Animator * __this, int32_t layerIndex, List_1_UnityEngine_AnimatorClipInfo_ * clips, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFD9F0, Animator_GetCurrentAnimatorClipInfo_1__MethodInfo); DO_APP_FUNC(0x02CCDC70, void, Animator_GetAnimatorClipInfoInternal, (Animator * __this, int32_t layerIndex, bool isCurrent, Object * clips, MethodInfo * method)); DO_APP_FUNC(0x02CCDCF0, void, Animator_GetNextAnimatorClipInfo_1, (Animator * __this, int32_t layerIndex, List_1_UnityEngine_AnimatorClipInfo_ * clips, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFDA00, Animator_GetNextAnimatorClipInfo_1__MethodInfo); DO_APP_FUNC(0x02CCDD70, bool, Animator_IsInTransition, (Animator * __this, int32_t layerIndex, MethodInfo * method)); DO_APP_FUNC(0x02CCDDD0, AnimatorControllerParameter__Array *, Animator_get_parameters, (Animator * __this, MethodInfo * method)); DO_APP_FUNC(0x02CCDE20, int32_t, Animator_get_parameterCount, (Animator * __this, MethodInfo * method)); DO_APP_FUNC(0x02CCDE70, AnimatorControllerParameter *, Animator_GetParameterInternal, (Animator * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x02CCDED0, AnimatorControllerParameter *, Animator_GetParameter, (Animator * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFDA08, Animator_GetParameter__MethodInfo); DO_APP_FUNC(0x02CCDFC0, float, Animator_get_feetPivotActive, (Animator * __this, MethodInfo * method)); DO_APP_FUNC(0x02CCE010, void, Animator_set_feetPivotActive, (Animator * __this, float value, MethodInfo * method)); DO_APP_FUNC(0x02CCE070, float, Animator_get_pivotWeight, (Animator * __this, MethodInfo * method)); @@ -112119,6 +124576,7 @@ DO_APP_FUNC(0x01BD8C20, bool, Animator_IsControlled, (Animator * __this, Transfo DO_APP_FUNC(0x02CCF490, bool, Animator_IsBoneTransform, (Animator * __this, Transform * transform, MethodInfo * method)); DO_APP_FUNC(0x02CCF4F0, Transform *, Animator_get_avatarRoot, (Animator * __this, MethodInfo * method)); DO_APP_FUNC(0x02CCF540, Transform *, Animator_GetBoneTransform, (Animator * __this, HumanBodyBones__Enum humanBoneId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFD9E0, Animator_GetBoneTransform__MethodInfo); DO_APP_FUNC(0x02CCF690, Transform *, Animator_GetBoneTransformInternal, (Animator * __this, int32_t humanBoneId, MethodInfo * method)); DO_APP_FUNC(0x02CCF6F0, AnimatorCullingMode__Enum, Animator_get_cullingMode, (Animator * __this, MethodInfo * method)); DO_APP_FUNC(0x02CCF740, void, Animator_set_cullingMode, (Animator * __this, AnimatorCullingMode__Enum value, MethodInfo * method)); @@ -112145,7 +124603,7 @@ DO_APP_FUNC(0x02CCFCA0, Avatar *, Animator_get_avatar, (Animator * __this, Metho DO_APP_FUNC(0x02CCFCF0, void, Animator_set_avatar, (Animator * __this, Avatar * value, MethodInfo * method)); DO_APP_FUNC(0x02CCFD50, String *, Animator_GetStats, (Animator * __this, MethodInfo * method)); DO_APP_FUNC(0x02CCFDA0, PlayableGraph, Animator_get_playableGraph, (Animator * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CCFE20, void, Animator_GetCurrentGraph, (Animator * __this, PlayableGraph graph, MethodInfo * method)); +DO_APP_FUNC(0x02CCFE20, void, Animator_GetCurrentGraph, (Animator * __this, PlayableGraph * graph, MethodInfo * method)); DO_APP_FUNC(0x02CCFE80, void, Animator_CheckIfInIKPass, (Animator * __this, MethodInfo * method)); DO_APP_FUNC(0x02CCFF80, bool, Animator_IsInIKPass, (Animator * __this, MethodInfo * method)); DO_APP_FUNC(0x02CCAE80, void, Animator_SetFloatString, (Animator * __this, String * name, float value, MethodInfo * method)); @@ -112205,30 +124663,30 @@ DO_APP_FUNC(0x02CD0940, Quaternion, Animator_GetQuaternion_1, (Animator * __this DO_APP_FUNC(0x003AE050, void, Animator_SetQuaternion, (Animator * __this, String * name, Quaternion value, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Animator_SetQuaternion_1, (Animator * __this, int32_t id, Quaternion value, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, Animator__ctor, (Animator * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CD0990, void, Animator_get_deltaPosition_Injected, (Animator * __this, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02CD09F0, void, Animator_get_deltaRotation_Injected, (Animator * __this, Quaternion ret, MethodInfo * method)); -DO_APP_FUNC(0x02CD0A50, void, Animator_get_velocity_Injected, (Animator * __this, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02CD0AB0, void, Animator_get_angularVelocity_Injected, (Animator * __this, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02CD0B10, void, Animator_get_rootPosition_Injected, (Animator * __this, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02CD0B70, void, Animator_set_rootPosition_Injected, (Animator * __this, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x02CD0BD0, void, Animator_get_rootRotation_Injected, (Animator * __this, Quaternion ret, MethodInfo * method)); -DO_APP_FUNC(0x02CD0C30, void, Animator_set_rootRotation_Injected, (Animator * __this, Quaternion value, MethodInfo * method)); -DO_APP_FUNC(0x02CD0C90, void, Animator_get_bodyPositionInternal_Injected, (Animator * __this, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02CD0CF0, void, Animator_set_bodyPositionInternal_Injected, (Animator * __this, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x02CD0D50, void, Animator_get_bodyRotationInternal_Injected, (Animator * __this, Quaternion ret, MethodInfo * method)); -DO_APP_FUNC(0x02CD0DB0, void, Animator_set_bodyRotationInternal_Injected, (Animator * __this, Quaternion value, MethodInfo * method)); -DO_APP_FUNC(0x02CD0E10, void, Animator_GetGoalPosition_Injected, (Animator * __this, AvatarIKGoal__Enum goal, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02CD0E80, void, Animator_SetGoalPosition_Injected, (Animator * __this, AvatarIKGoal__Enum goal, Vector3 goalPosition, MethodInfo * method)); -DO_APP_FUNC(0x02CD0EF0, void, Animator_GetGoalRotation_Injected, (Animator * __this, AvatarIKGoal__Enum goal, Quaternion ret, MethodInfo * method)); -DO_APP_FUNC(0x02CD0F60, void, Animator_SetGoalRotation_Injected, (Animator * __this, AvatarIKGoal__Enum goal, Quaternion goalRotation, MethodInfo * method)); -DO_APP_FUNC(0x02CD0FD0, void, Animator_GetHintPosition_Injected, (Animator * __this, AvatarIKHint__Enum hint, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02CD1040, void, Animator_SetHintPosition_Injected, (Animator * __this, AvatarIKHint__Enum hint, Vector3 hintPosition, MethodInfo * method)); -DO_APP_FUNC(0x02CD10B0, void, Animator_SetLookAtPositionInternal_Injected, (Animator * __this, Vector3 lookAtPosition, MethodInfo * method)); -DO_APP_FUNC(0x02CD1110, void, Animator_SetBoneLocalRotationInternal_Injected, (Animator * __this, int32_t humanBoneId, Quaternion rotation, MethodInfo * method)); -DO_APP_FUNC(0x02CD1180, void, Animator_get_pivotPosition_Injected, (Animator * __this, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02CD11E0, void, Animator_MatchTarget_Injected, (Animator * __this, Vector3 matchPosition, Quaternion matchRotation, int32_t targetBodyPart, MatchTargetWeightMask weightMask, float startNormalizedTime, float targetNormalizedTime, bool completeMatch, MethodInfo * method)); -DO_APP_FUNC(0x02CD1270, void, Animator_get_targetPosition_Injected, (Animator * __this, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02CD12D0, void, Animator_get_targetRotation_Injected, (Animator * __this, Quaternion ret, MethodInfo * method)); +DO_APP_FUNC(0x02CD0990, void, Animator_get_deltaPosition_Injected, (Animator * __this, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02CD09F0, void, Animator_get_deltaRotation_Injected, (Animator * __this, Quaternion * ret, MethodInfo * method)); +DO_APP_FUNC(0x02CD0A50, void, Animator_get_velocity_Injected, (Animator * __this, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02CD0AB0, void, Animator_get_angularVelocity_Injected, (Animator * __this, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02CD0B10, void, Animator_get_rootPosition_Injected, (Animator * __this, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02CD0B70, void, Animator_set_rootPosition_Injected, (Animator * __this, Vector3 * value, MethodInfo * method)); +DO_APP_FUNC(0x02CD0BD0, void, Animator_get_rootRotation_Injected, (Animator * __this, Quaternion * ret, MethodInfo * method)); +DO_APP_FUNC(0x02CD0C30, void, Animator_set_rootRotation_Injected, (Animator * __this, Quaternion * value, MethodInfo * method)); +DO_APP_FUNC(0x02CD0C90, void, Animator_get_bodyPositionInternal_Injected, (Animator * __this, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02CD0CF0, void, Animator_set_bodyPositionInternal_Injected, (Animator * __this, Vector3 * value, MethodInfo * method)); +DO_APP_FUNC(0x02CD0D50, void, Animator_get_bodyRotationInternal_Injected, (Animator * __this, Quaternion * ret, MethodInfo * method)); +DO_APP_FUNC(0x02CD0DB0, void, Animator_set_bodyRotationInternal_Injected, (Animator * __this, Quaternion * value, MethodInfo * method)); +DO_APP_FUNC(0x02CD0E10, void, Animator_GetGoalPosition_Injected, (Animator * __this, AvatarIKGoal__Enum goal, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02CD0E80, void, Animator_SetGoalPosition_Injected, (Animator * __this, AvatarIKGoal__Enum goal, Vector3 * goalPosition, MethodInfo * method)); +DO_APP_FUNC(0x02CD0EF0, void, Animator_GetGoalRotation_Injected, (Animator * __this, AvatarIKGoal__Enum goal, Quaternion * ret, MethodInfo * method)); +DO_APP_FUNC(0x02CD0F60, void, Animator_SetGoalRotation_Injected, (Animator * __this, AvatarIKGoal__Enum goal, Quaternion * goalRotation, MethodInfo * method)); +DO_APP_FUNC(0x02CD0FD0, void, Animator_GetHintPosition_Injected, (Animator * __this, AvatarIKHint__Enum hint, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02CD1040, void, Animator_SetHintPosition_Injected, (Animator * __this, AvatarIKHint__Enum hint, Vector3 * hintPosition, MethodInfo * method)); +DO_APP_FUNC(0x02CD10B0, void, Animator_SetLookAtPositionInternal_Injected, (Animator * __this, Vector3 * lookAtPosition, MethodInfo * method)); +DO_APP_FUNC(0x02CD1110, void, Animator_SetBoneLocalRotationInternal_Injected, (Animator * __this, int32_t humanBoneId, Quaternion * rotation, MethodInfo * method)); +DO_APP_FUNC(0x02CD1180, void, Animator_get_pivotPosition_Injected, (Animator * __this, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02CD11E0, void, Animator_MatchTarget_Injected, (Animator * __this, Vector3 * matchPosition, Quaternion * matchRotation, int32_t targetBodyPart, MatchTargetWeightMask * weightMask, float startNormalizedTime, float targetNormalizedTime, bool completeMatch, MethodInfo * method)); +DO_APP_FUNC(0x02CD1270, void, Animator_get_targetPosition_Injected, (Animator * __this, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02CD12D0, void, Animator_get_targetRotation_Injected, (Animator * __this, Quaternion * ret, MethodInfo * method)); DO_APP_FUNC(0x015C0B20, String *, AnimatorControllerParameter_get_name, (AnimatorControllerParameter * __this, MethodInfo * method)); DO_APP_FUNC(0x011227E0, AnimatorControllerParameterType__Enum, AnimatorControllerParameter_get_type, (AnimatorControllerParameter * __this, MethodInfo * method)); DO_APP_FUNC(0x02CD1330, bool, AnimatorControllerParameter_Equals, (AnimatorControllerParameter * __this, Object * o, MethodInfo * method)); @@ -112255,12 +124713,12 @@ DO_APP_FUNC(0x02CD1D30, Quaternion, Avatar_Internal_GetPostRotation, (Avatar * _ DO_APP_FUNC(0x02CD1DB0, Quaternion, Avatar_Internal_GetZYPostQ, (Avatar * __this, int32_t humanId, Quaternion parentQ, Quaternion q, MethodInfo * method)); DO_APP_FUNC(0x02CD1E40, Quaternion, Avatar_Internal_GetZYRoll, (Avatar * __this, int32_t humanId, Vector3 uvw, MethodInfo * method)); DO_APP_FUNC(0x02CD1ED0, Vector3, Avatar_Internal_GetLimitSign, (Avatar * __this, int32_t humanId, MethodInfo * method)); -DO_APP_FUNC(0x02CD1F50, void, Avatar_get_humanDescription_Injected, (Avatar * __this, HumanDescription ret, MethodInfo * method)); -DO_APP_FUNC(0x02CD1FB0, void, Avatar_Internal_GetPreRotation_Injected, (Avatar * __this, int32_t humanId, Quaternion ret, MethodInfo * method)); -DO_APP_FUNC(0x02CD2020, void, Avatar_Internal_GetPostRotation_Injected, (Avatar * __this, int32_t humanId, Quaternion ret, MethodInfo * method)); -DO_APP_FUNC(0x02CD2090, void, Avatar_Internal_GetZYPostQ_Injected, (Avatar * __this, int32_t humanId, Quaternion parentQ, Quaternion q, Quaternion ret, MethodInfo * method)); -DO_APP_FUNC(0x02CD2110, void, Avatar_Internal_GetZYRoll_Injected, (Avatar * __this, int32_t humanId, Vector3 uvw, Quaternion ret, MethodInfo * method)); -DO_APP_FUNC(0x02CD2190, void, Avatar_Internal_GetLimitSign_Injected, (Avatar * __this, int32_t humanId, Vector3 ret, MethodInfo * method)); +DO_APP_FUNC(0x02CD1F50, void, Avatar_get_humanDescription_Injected, (Avatar * __this, HumanDescription * ret, MethodInfo * method)); +DO_APP_FUNC(0x02CD1FB0, void, Avatar_Internal_GetPreRotation_Injected, (Avatar * __this, int32_t humanId, Quaternion * ret, MethodInfo * method)); +DO_APP_FUNC(0x02CD2020, void, Avatar_Internal_GetPostRotation_Injected, (Avatar * __this, int32_t humanId, Quaternion * ret, MethodInfo * method)); +DO_APP_FUNC(0x02CD2090, void, Avatar_Internal_GetZYPostQ_Injected, (Avatar * __this, int32_t humanId, Quaternion * parentQ, Quaternion * q, Quaternion * ret, MethodInfo * method)); +DO_APP_FUNC(0x02CD2110, void, Avatar_Internal_GetZYRoll_Injected, (Avatar * __this, int32_t humanId, Vector3 * uvw, Quaternion * ret, MethodInfo * method)); +DO_APP_FUNC(0x02CD2190, void, Avatar_Internal_GetLimitSign_Injected, (Avatar * __this, int32_t humanId, Vector3 * ret, MethodInfo * method)); DO_APP_FUNC(0x02CD2200, bool, AvatarMask_GetHumanoidBodyPartActive, (AvatarMask * __this, AvatarMaskBodyPart__Enum index, MethodInfo * method)); DO_APP_FUNC(0x02CD2260, int32_t, AvatarMask_get_transformCount, (AvatarMask * __this, MethodInfo * method)); DO_APP_FUNC(0x02CD22B0, String *, AvatarMask_GetTransformPath, (AvatarMask * __this, int32_t index, MethodInfo * method)); @@ -112273,100 +124731,113 @@ DO_APP_FUNC(0x02CD24D0, void, RuntimeAnimatorController__ctor, (RuntimeAnimatorC DO_APP_FUNC(0x02CD2520, AnimationClip__Array *, RuntimeAnimatorController_get_animationClips, (RuntimeAnimatorController * __this, MethodInfo * method)); DO_APP_FUNC(0x02CD2570, PlayableBinding, AnimationPlayableBinding_Create, (String * name, Object_1 * key, MethodInfo * method)); DO_APP_FUNC(0x02CD26C0, PlayableOutput, AnimationPlayableBinding_CreateAnimationOutput, (PlayableGraph graph, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFD758, AnimationPlayableBinding_CreateAnimationOutput__MethodInfo); DO_APP_FUNC(0x02CD2870, AnimationClipPlayable, AnimationClipPlayable_Create, (PlayableGraph graph, AnimationClip * clip, MethodInfo * method)); DO_APP_FUNC(0x02CD2A10, PlayableHandle, AnimationClipPlayable_CreateHandle, (PlayableGraph graph, AnimationClip * clip, MethodInfo * method)); -DO_APP_FUNC(0x02CD2B90, void, AnimationClipPlayable__ctor, (AnimationClipPlayable__Boxed * __this, PlayableHandle handle, MethodInfo * method)); -DO_APP_FUNC(0x0104C5D0, PlayableHandle, AnimationClipPlayable_GetHandle, (AnimationClipPlayable__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CD2B90, void, AnimationClipPlayable__ctor, (AnimationClipPlayable * __this, PlayableHandle handle, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFD768, AnimationClipPlayable__ctor__MethodInfo); +DO_APP_FUNC(0x0104C5D0, PlayableHandle, AnimationClipPlayable_GetHandle, (AnimationClipPlayable * __this, MethodInfo * method)); DO_APP_FUNC(0x02CD2C80, Playable, AnimationClipPlayable_op_Implicit, (AnimationClipPlayable playable, MethodInfo * method)); -DO_APP_FUNC(0x02CD2C90, bool, AnimationClipPlayable_Equals, (AnimationClipPlayable__Boxed * __this, AnimationClipPlayable other, MethodInfo * method)); -DO_APP_FUNC(0x02CD2D50, void, AnimationClipPlayable_SetApplyFootIK, (AnimationClipPlayable__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02CD2DB0, void, AnimationClipPlayable_SetRemoveStartOffset, (AnimationClipPlayable__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02CD2E10, void, AnimationClipPlayable_SetOverrideLoopTime, (AnimationClipPlayable__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02CD2E70, void, AnimationClipPlayable_SetLoopTime, (AnimationClipPlayable__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02CD2ED0, bool, AnimationClipPlayable_CreateHandleInternal, (PlayableGraph graph, AnimationClip * clip, PlayableHandle handle, MethodInfo * method)); -DO_APP_FUNC(0x02CD2D50, void, AnimationClipPlayable_SetApplyFootIKInternal, (PlayableHandle handle, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02CD2DB0, void, AnimationClipPlayable_SetRemoveStartOffsetInternal, (PlayableHandle handle, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02CD2E10, void, AnimationClipPlayable_SetOverrideLoopTimeInternal, (PlayableHandle handle, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02CD2E70, void, AnimationClipPlayable_SetLoopTimeInternal, (PlayableHandle handle, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02CD2F40, bool, AnimationClipPlayable_CreateHandleInternal_Injected, (PlayableGraph graph, AnimationClip * clip, PlayableHandle handle, MethodInfo * method)); +DO_APP_FUNC(0x02CD2C90, bool, AnimationClipPlayable_Equals, (AnimationClipPlayable * __this, AnimationClipPlayable other, MethodInfo * method)); +DO_APP_FUNC(0x02CD2D50, void, AnimationClipPlayable_SetApplyFootIK, (AnimationClipPlayable * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02CD2DB0, void, AnimationClipPlayable_SetRemoveStartOffset, (AnimationClipPlayable * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02CD2E10, void, AnimationClipPlayable_SetOverrideLoopTime, (AnimationClipPlayable * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02CD2E70, void, AnimationClipPlayable_SetLoopTime, (AnimationClipPlayable * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02CD2ED0, bool, AnimationClipPlayable_CreateHandleInternal, (PlayableGraph graph, AnimationClip * clip, PlayableHandle * handle, MethodInfo * method)); +DO_APP_FUNC(0x02CD2D50, void, AnimationClipPlayable_SetApplyFootIKInternal, (PlayableHandle * handle, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02CD2DB0, void, AnimationClipPlayable_SetRemoveStartOffsetInternal, (PlayableHandle * handle, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02CD2E10, void, AnimationClipPlayable_SetOverrideLoopTimeInternal, (PlayableHandle * handle, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02CD2E70, void, AnimationClipPlayable_SetLoopTimeInternal, (PlayableHandle * handle, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02CD2F40, bool, AnimationClipPlayable_CreateHandleInternal_Injected, (PlayableGraph * graph, AnimationClip * clip, PlayableHandle * handle, MethodInfo * method)); DO_APP_FUNC(0x02CD2FB0, AnimationLayerMixerPlayable, AnimationLayerMixerPlayable_Create, (PlayableGraph graph, int32_t inputCount, MethodInfo * method)); DO_APP_FUNC(0x02CD30A0, AnimationLayerMixerPlayable, AnimationLayerMixerPlayable_Create_1, (PlayableGraph graph, int32_t inputCount, bool singleLayerOptimization, MethodInfo * method)); DO_APP_FUNC(0x02CD3170, PlayableHandle, AnimationLayerMixerPlayable_CreateHandle, (PlayableGraph graph, int32_t inputCount, MethodInfo * method)); -DO_APP_FUNC(0x02CD33D0, void, AnimationLayerMixerPlayable__ctor, (AnimationLayerMixerPlayable__Boxed * __this, PlayableHandle handle, bool singleLayerOptimization, MethodInfo * method)); -DO_APP_FUNC(0x0104C5D0, PlayableHandle, AnimationLayerMixerPlayable_GetHandle, (AnimationLayerMixerPlayable__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CD33D0, void, AnimationLayerMixerPlayable__ctor, (AnimationLayerMixerPlayable * __this, PlayableHandle handle, bool singleLayerOptimization, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFD6D0, AnimationLayerMixerPlayable__ctor__MethodInfo); +DO_APP_FUNC(0x0104C5D0, PlayableHandle, AnimationLayerMixerPlayable_GetHandle, (AnimationLayerMixerPlayable * __this, MethodInfo * method)); DO_APP_FUNC(0x02CD3540, Playable, AnimationLayerMixerPlayable_op_Implicit, (AnimationLayerMixerPlayable playable, MethodInfo * method)); DO_APP_FUNC(0x02CD35A0, AnimationLayerMixerPlayable, AnimationLayerMixerPlayable_op_Explicit, (Playable playable, MethodInfo * method)); -DO_APP_FUNC(0x02CD3630, bool, AnimationLayerMixerPlayable_Equals, (AnimationLayerMixerPlayable__Boxed * __this, AnimationLayerMixerPlayable other, MethodInfo * method)); -DO_APP_FUNC(0x02CD3720, void, AnimationLayerMixerPlayable_SetLayerAdditive, (AnimationLayerMixerPlayable__Boxed * __this, uint32_t layerIndex, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02CD38E0, void, AnimationLayerMixerPlayable_SetLayerMaskFromAvatarMask, (AnimationLayerMixerPlayable__Boxed * __this, uint32_t layerIndex, AvatarMask * mask, MethodInfo * method)); -DO_APP_FUNC(0x02CD3BD0, bool, AnimationLayerMixerPlayable_CreateHandleInternal, (PlayableGraph graph, PlayableHandle handle, MethodInfo * method)); -DO_APP_FUNC(0x02CD3C70, void, AnimationLayerMixerPlayable_SetLayerAdditiveInternal, (PlayableHandle handle, uint32_t layerIndex, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02CD3CE0, void, AnimationLayerMixerPlayable_SetSingleLayerOptimizationInternal, (PlayableHandle handle, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02CD3D40, void, AnimationLayerMixerPlayable_SetLayerMaskFromAvatarMaskInternal, (PlayableHandle handle, uint32_t layerIndex, AvatarMask * mask, MethodInfo * method)); +DO_APP_FUNC(0x02CD3630, bool, AnimationLayerMixerPlayable_Equals, (AnimationLayerMixerPlayable * __this, AnimationLayerMixerPlayable other, MethodInfo * method)); +DO_APP_FUNC(0x02CD3720, void, AnimationLayerMixerPlayable_SetLayerAdditive, (AnimationLayerMixerPlayable * __this, uint32_t layerIndex, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFD700, AnimationLayerMixerPlayable_SetLayerAdditive__MethodInfo); +DO_APP_FUNC(0x02CD38E0, void, AnimationLayerMixerPlayable_SetLayerMaskFromAvatarMask, (AnimationLayerMixerPlayable * __this, uint32_t layerIndex, AvatarMask * mask, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFD740, AnimationLayerMixerPlayable_SetLayerMaskFromAvatarMask__MethodInfo); +DO_APP_FUNC(0x02CD3BD0, bool, AnimationLayerMixerPlayable_CreateHandleInternal, (PlayableGraph graph, PlayableHandle * handle, MethodInfo * method)); +DO_APP_FUNC(0x02CD3C70, void, AnimationLayerMixerPlayable_SetLayerAdditiveInternal, (PlayableHandle * handle, uint32_t layerIndex, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02CD3CE0, void, AnimationLayerMixerPlayable_SetSingleLayerOptimizationInternal, (PlayableHandle * handle, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02CD3D40, void, AnimationLayerMixerPlayable_SetLayerMaskFromAvatarMaskInternal, (PlayableHandle * handle, uint32_t layerIndex, AvatarMask * mask, MethodInfo * method)); DO_APP_FUNC(0x02CD3DB0, void, AnimationLayerMixerPlayable__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02CD3E80, bool, AnimationLayerMixerPlayable_CreateHandleInternal_Injected, (PlayableGraph graph, PlayableHandle handle, MethodInfo * method)); +DO_APP_FUNC(0x02CD3E80, bool, AnimationLayerMixerPlayable_CreateHandleInternal_Injected, (PlayableGraph * graph, PlayableHandle * handle, MethodInfo * method)); DO_APP_FUNC(0x02CD3EE0, AnimationMixerPlayable, AnimationMixerPlayable_Create, (PlayableGraph graph, int32_t inputCount, MethodInfo * method)); DO_APP_FUNC(0x02CD3F90, PlayableHandle, AnimationMixerPlayable_CreateHandle, (PlayableGraph graph, int32_t inputCount, MethodInfo * method)); -DO_APP_FUNC(0x02CD41F0, void, AnimationMixerPlayable__ctor, (AnimationMixerPlayable__Boxed * __this, PlayableHandle handle, MethodInfo * method)); -DO_APP_FUNC(0x0104C5D0, PlayableHandle, AnimationMixerPlayable_GetHandle, (AnimationMixerPlayable__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CD41F0, void, AnimationMixerPlayable__ctor, (AnimationMixerPlayable * __this, PlayableHandle handle, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFD660, AnimationMixerPlayable__ctor__MethodInfo); +DO_APP_FUNC(0x0104C5D0, PlayableHandle, AnimationMixerPlayable_GetHandle, (AnimationMixerPlayable * __this, MethodInfo * method)); DO_APP_FUNC(0x02CD42E0, Playable, AnimationMixerPlayable_op_Implicit, (AnimationMixerPlayable playable, MethodInfo * method)); -DO_APP_FUNC(0x02CD4340, bool, AnimationMixerPlayable_Equals, (AnimationMixerPlayable__Boxed * __this, AnimationMixerPlayable other, MethodInfo * method)); -DO_APP_FUNC(0x02CD4430, bool, AnimationMixerPlayable_CreateHandleInternal, (PlayableGraph graph, PlayableHandle handle, MethodInfo * method)); +DO_APP_FUNC(0x02CD4340, bool, AnimationMixerPlayable_Equals, (AnimationMixerPlayable * __this, AnimationMixerPlayable other, MethodInfo * method)); +DO_APP_FUNC(0x02CD4430, bool, AnimationMixerPlayable_CreateHandleInternal, (PlayableGraph graph, PlayableHandle * handle, MethodInfo * method)); DO_APP_FUNC(0x02CD44D0, void, AnimationMixerPlayable__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02CD45A0, bool, AnimationMixerPlayable_CreateHandleInternal_Injected, (PlayableGraph graph, PlayableHandle handle, MethodInfo * method)); +DO_APP_FUNC(0x02CD45A0, bool, AnimationMixerPlayable_CreateHandleInternal_Injected, (PlayableGraph * graph, PlayableHandle * handle, MethodInfo * method)); DO_APP_FUNC(0x02CD4600, AnimationMotionXToDeltaPlayable, AnimationMotionXToDeltaPlayable_Create, (PlayableGraph graph, MethodInfo * method)); DO_APP_FUNC(0x02CD46A0, PlayableHandle, AnimationMotionXToDeltaPlayable_CreateHandle, (PlayableGraph graph, MethodInfo * method)); -DO_APP_FUNC(0x02CD4910, void, AnimationMotionXToDeltaPlayable__ctor, (AnimationMotionXToDeltaPlayable__Boxed * __this, PlayableHandle handle, MethodInfo * method)); -DO_APP_FUNC(0x0104C5D0, PlayableHandle, AnimationMotionXToDeltaPlayable_GetHandle, (AnimationMotionXToDeltaPlayable__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CD4910, void, AnimationMotionXToDeltaPlayable__ctor, (AnimationMotionXToDeltaPlayable * __this, PlayableHandle handle, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFD6C0, AnimationMotionXToDeltaPlayable__ctor__MethodInfo); +DO_APP_FUNC(0x0104C5D0, PlayableHandle, AnimationMotionXToDeltaPlayable_GetHandle, (AnimationMotionXToDeltaPlayable * __this, MethodInfo * method)); DO_APP_FUNC(0x02CD4A00, Playable, AnimationMotionXToDeltaPlayable_op_Implicit, (AnimationMotionXToDeltaPlayable playable, MethodInfo * method)); -DO_APP_FUNC(0x02CD4A60, bool, AnimationMotionXToDeltaPlayable_Equals, (AnimationMotionXToDeltaPlayable__Boxed * __this, AnimationMotionXToDeltaPlayable other, MethodInfo * method)); -DO_APP_FUNC(0x02CD4B50, void, AnimationMotionXToDeltaPlayable_SetAbsoluteMotion, (AnimationMotionXToDeltaPlayable__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02CD4BF0, bool, AnimationMotionXToDeltaPlayable_CreateHandleInternal, (PlayableGraph graph, PlayableHandle handle, MethodInfo * method)); -DO_APP_FUNC(0x02CD4C90, void, AnimationMotionXToDeltaPlayable_SetAbsoluteMotionInternal, (PlayableHandle handle, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02CD4A60, bool, AnimationMotionXToDeltaPlayable_Equals, (AnimationMotionXToDeltaPlayable * __this, AnimationMotionXToDeltaPlayable other, MethodInfo * method)); +DO_APP_FUNC(0x02CD4B50, void, AnimationMotionXToDeltaPlayable_SetAbsoluteMotion, (AnimationMotionXToDeltaPlayable * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02CD4BF0, bool, AnimationMotionXToDeltaPlayable_CreateHandleInternal, (PlayableGraph graph, PlayableHandle * handle, MethodInfo * method)); +DO_APP_FUNC(0x02CD4C90, void, AnimationMotionXToDeltaPlayable_SetAbsoluteMotionInternal, (PlayableHandle * handle, bool value, MethodInfo * method)); DO_APP_FUNC(0x02CD4CF0, void, AnimationMotionXToDeltaPlayable__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02CD4DC0, bool, AnimationMotionXToDeltaPlayable_CreateHandleInternal_Injected, (PlayableGraph graph, PlayableHandle handle, MethodInfo * method)); +DO_APP_FUNC(0x02CD4DC0, bool, AnimationMotionXToDeltaPlayable_CreateHandleInternal_Injected, (PlayableGraph * graph, PlayableHandle * handle, MethodInfo * method)); DO_APP_FUNC(0x02CD4E20, AnimationOffsetPlayable, AnimationOffsetPlayable_Create, (PlayableGraph graph, Vector3 position, Quaternion rotation, int32_t inputCount, MethodInfo * method)); DO_APP_FUNC(0x02CD4F10, PlayableHandle, AnimationOffsetPlayable_CreateHandle, (PlayableGraph graph, Vector3 position, Quaternion rotation, int32_t inputCount, MethodInfo * method)); -DO_APP_FUNC(0x02CD51B0, void, AnimationOffsetPlayable__ctor, (AnimationOffsetPlayable__Boxed * __this, PlayableHandle handle, MethodInfo * method)); -DO_APP_FUNC(0x0104C5D0, PlayableHandle, AnimationOffsetPlayable_GetHandle, (AnimationOffsetPlayable__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CD51B0, void, AnimationOffsetPlayable__ctor, (AnimationOffsetPlayable * __this, PlayableHandle handle, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFD618, AnimationOffsetPlayable__ctor__MethodInfo); +DO_APP_FUNC(0x0104C5D0, PlayableHandle, AnimationOffsetPlayable_GetHandle, (AnimationOffsetPlayable * __this, MethodInfo * method)); DO_APP_FUNC(0x02CD52A0, Playable, AnimationOffsetPlayable_op_Implicit, (AnimationOffsetPlayable playable, MethodInfo * method)); -DO_APP_FUNC(0x02CD5300, bool, AnimationOffsetPlayable_Equals, (AnimationOffsetPlayable__Boxed * __this, AnimationOffsetPlayable other, MethodInfo * method)); -DO_APP_FUNC(0x02CD53B0, bool, AnimationOffsetPlayable_CreateHandleInternal, (PlayableGraph graph, Vector3 position, Quaternion rotation, PlayableHandle handle, MethodInfo * method)); +DO_APP_FUNC(0x02CD5300, bool, AnimationOffsetPlayable_Equals, (AnimationOffsetPlayable * __this, AnimationOffsetPlayable other, MethodInfo * method)); +DO_APP_FUNC(0x02CD53B0, bool, AnimationOffsetPlayable_CreateHandleInternal, (PlayableGraph graph, Vector3 position, Quaternion rotation, PlayableHandle * handle, MethodInfo * method)); DO_APP_FUNC(0x02CD5470, void, AnimationOffsetPlayable__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02CD5540, bool, AnimationOffsetPlayable_CreateHandleInternal_Injected, (PlayableGraph graph, Vector3 position, Quaternion rotation, PlayableHandle handle, MethodInfo * method)); -DO_APP_FUNC(0x02CD55C0, void, AnimationPlayableExtensions_SetAnimatedPropertiesInternal, (PlayableHandle playable, AnimationClip * animatedProperties, MethodInfo * method)); -DO_APP_FUNC(0x02CD5620, bool, AnimationPlayableGraphExtensions_InternalCreateAnimationOutput, (PlayableGraph graph, String * name, PlayableOutputHandle handle, MethodInfo * method)); +DO_APP_FUNC(0x02CD5540, bool, AnimationOffsetPlayable_CreateHandleInternal_Injected, (PlayableGraph * graph, Vector3 * position, Quaternion * rotation, PlayableHandle * handle, MethodInfo * method)); +DO_APP_FUNC(0x02CD55C0, void, AnimationPlayableExtensions_SetAnimatedPropertiesInternal, (PlayableHandle * playable, AnimationClip * animatedProperties, MethodInfo * method)); +DO_APP_FUNC(0x02CD5620, bool, AnimationPlayableGraphExtensions_InternalCreateAnimationOutput, (PlayableGraph * graph, String * name, PlayableOutputHandle * handle, MethodInfo * method)); DO_APP_FUNC(0x02CD5690, AnimationPlayableOutput, AnimationPlayableOutput_Create, (PlayableGraph graph, String * name, Animator * target, MethodInfo * method)); -DO_APP_FUNC(0x02CD5850, void, AnimationPlayableOutput__ctor, (AnimationPlayableOutput__Boxed * __this, PlayableOutputHandle handle, MethodInfo * method)); +DO_APP_FUNC(0x02CD5850, void, AnimationPlayableOutput__ctor, (AnimationPlayableOutput * __this, PlayableOutputHandle handle, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFD5A0, AnimationPlayableOutput__ctor__MethodInfo); DO_APP_FUNC(0x02CD5940, AnimationPlayableOutput, AnimationPlayableOutput_get_Null, (MethodInfo * method)); -DO_APP_FUNC(0x0104C5D0, PlayableOutputHandle, AnimationPlayableOutput_GetHandle, (AnimationPlayableOutput__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0104C5D0, PlayableOutputHandle, AnimationPlayableOutput_GetHandle, (AnimationPlayableOutput * __this, MethodInfo * method)); DO_APP_FUNC(0x02CD2C80, PlayableOutput, AnimationPlayableOutput_op_Implicit, (AnimationPlayableOutput output, MethodInfo * method)); DO_APP_FUNC(0x02CD5A00, AnimationPlayableOutput, AnimationPlayableOutput_op_Explicit, (PlayableOutput output, MethodInfo * method)); -DO_APP_FUNC(0x02CD5A90, Animator *, AnimationPlayableOutput_GetTarget, (AnimationPlayableOutput__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CD5AE0, void, AnimationPlayableOutput_SetTarget, (AnimationPlayableOutput__Boxed * __this, Animator * value, MethodInfo * method)); -DO_APP_FUNC(0x02CD5A90, Animator *, AnimationPlayableOutput_InternalGetTarget, (PlayableOutputHandle handle, MethodInfo * method)); -DO_APP_FUNC(0x02CD5AE0, void, AnimationPlayableOutput_InternalSetTarget, (PlayableOutputHandle handle, Animator * target, MethodInfo * method)); -DO_APP_FUNC(0x02CD5B40, void, AnimationPosePlayable__ctor, (AnimationPosePlayable__Boxed * __this, PlayableHandle handle, MethodInfo * method)); -DO_APP_FUNC(0x0104C5D0, PlayableHandle, AnimationPosePlayable_GetHandle, (AnimationPosePlayable__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CD5C30, bool, AnimationPosePlayable_Equals, (AnimationPosePlayable__Boxed * __this, AnimationPosePlayable other, MethodInfo * method)); +DO_APP_FUNC(0x02CD5A90, Animator *, AnimationPlayableOutput_GetTarget, (AnimationPlayableOutput * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CD5AE0, void, AnimationPlayableOutput_SetTarget, (AnimationPlayableOutput * __this, Animator * value, MethodInfo * method)); +DO_APP_FUNC(0x02CD5A90, Animator *, AnimationPlayableOutput_InternalGetTarget, (PlayableOutputHandle * handle, MethodInfo * method)); +DO_APP_FUNC(0x02CD5AE0, void, AnimationPlayableOutput_InternalSetTarget, (PlayableOutputHandle * handle, Animator * target, MethodInfo * method)); +DO_APP_FUNC(0x02CD5B40, void, AnimationPosePlayable__ctor, (AnimationPosePlayable * __this, PlayableHandle handle, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFD5E8, AnimationPosePlayable__ctor__MethodInfo); +DO_APP_FUNC(0x0104C5D0, PlayableHandle, AnimationPosePlayable_GetHandle, (AnimationPosePlayable * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CD5C30, bool, AnimationPosePlayable_Equals, (AnimationPosePlayable * __this, AnimationPosePlayable other, MethodInfo * method)); DO_APP_FUNC(0x02CD5CE0, void, AnimationPosePlayable__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02CD5DB0, AnimationRemoveScalePlayable, AnimationRemoveScalePlayable_Create, (PlayableGraph graph, int32_t inputCount, MethodInfo * method)); DO_APP_FUNC(0x02CD5E60, PlayableHandle, AnimationRemoveScalePlayable_CreateHandle, (PlayableGraph graph, int32_t inputCount, MethodInfo * method)); -DO_APP_FUNC(0x02CD60C0, void, AnimationRemoveScalePlayable__ctor, (AnimationRemoveScalePlayable__Boxed * __this, PlayableHandle handle, MethodInfo * method)); -DO_APP_FUNC(0x0104C5D0, PlayableHandle, AnimationRemoveScalePlayable_GetHandle, (AnimationRemoveScalePlayable__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CD60C0, void, AnimationRemoveScalePlayable__ctor, (AnimationRemoveScalePlayable * __this, PlayableHandle handle, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFD600, AnimationRemoveScalePlayable__ctor__MethodInfo); +DO_APP_FUNC(0x0104C5D0, PlayableHandle, AnimationRemoveScalePlayable_GetHandle, (AnimationRemoveScalePlayable * __this, MethodInfo * method)); DO_APP_FUNC(0x02CD61B0, Playable, AnimationRemoveScalePlayable_op_Implicit, (AnimationRemoveScalePlayable playable, MethodInfo * method)); -DO_APP_FUNC(0x02CD6210, bool, AnimationRemoveScalePlayable_Equals, (AnimationRemoveScalePlayable__Boxed * __this, AnimationRemoveScalePlayable other, MethodInfo * method)); -DO_APP_FUNC(0x02CD62C0, bool, AnimationRemoveScalePlayable_CreateHandleInternal, (PlayableGraph graph, PlayableHandle handle, MethodInfo * method)); +DO_APP_FUNC(0x02CD6210, bool, AnimationRemoveScalePlayable_Equals, (AnimationRemoveScalePlayable * __this, AnimationRemoveScalePlayable other, MethodInfo * method)); +DO_APP_FUNC(0x02CD62C0, bool, AnimationRemoveScalePlayable_CreateHandleInternal, (PlayableGraph graph, PlayableHandle * handle, MethodInfo * method)); DO_APP_FUNC(0x02CD6360, void, AnimationRemoveScalePlayable__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02CD6430, bool, AnimationRemoveScalePlayable_CreateHandleInternal_Injected, (PlayableGraph graph, PlayableHandle handle, MethodInfo * method)); -DO_APP_FUNC(0x02CD6490, void, AnimationScriptPlayable__ctor, (AnimationScriptPlayable__Boxed * __this, PlayableHandle handle, MethodInfo * method)); -DO_APP_FUNC(0x0104C5D0, PlayableHandle, AnimationScriptPlayable_GetHandle, (AnimationScriptPlayable__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CD6580, bool, AnimationScriptPlayable_Equals, (AnimationScriptPlayable__Boxed * __this, AnimationScriptPlayable other, MethodInfo * method)); +DO_APP_FUNC(0x02CD6430, bool, AnimationRemoveScalePlayable_CreateHandleInternal_Injected, (PlayableGraph * graph, PlayableHandle * handle, MethodInfo * method)); +DO_APP_FUNC(0x02CD6490, void, AnimationScriptPlayable__ctor, (AnimationScriptPlayable * __this, PlayableHandle handle, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFD508, AnimationScriptPlayable__ctor__MethodInfo); +DO_APP_FUNC(0x0104C5D0, PlayableHandle, AnimationScriptPlayable_GetHandle, (AnimationScriptPlayable * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CD6580, bool, AnimationScriptPlayable_Equals, (AnimationScriptPlayable * __this, AnimationScriptPlayable other, MethodInfo * method)); DO_APP_FUNC(0x02CD6670, void, AnimationScriptPlayable__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02CD6740, void, AnimatorControllerPlayable__ctor, (AnimatorControllerPlayable__Boxed * __this, PlayableHandle handle, MethodInfo * method)); -DO_APP_FUNC(0x0104C5D0, PlayableHandle, AnimatorControllerPlayable_GetHandle, (AnimatorControllerPlayable__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CD6820, void, AnimatorControllerPlayable_SetHandle, (AnimatorControllerPlayable__Boxed * __this, PlayableHandle handle, MethodInfo * method)); -DO_APP_FUNC(0x02CD6990, bool, AnimatorControllerPlayable_Equals, (AnimatorControllerPlayable__Boxed * __this, AnimatorControllerPlayable other, MethodInfo * method)); +DO_APP_FUNC(0x02CD6740, void, AnimatorControllerPlayable__ctor, (AnimatorControllerPlayable * __this, PlayableHandle handle, MethodInfo * method)); +DO_APP_FUNC(0x0104C5D0, PlayableHandle, AnimatorControllerPlayable_GetHandle, (AnimatorControllerPlayable * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CD6820, void, AnimatorControllerPlayable_SetHandle, (AnimatorControllerPlayable * __this, PlayableHandle handle, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFD568, AnimatorControllerPlayable_SetHandle__MethodInfo); +DO_APP_FUNC(0x02CD6990, bool, AnimatorControllerPlayable_Equals, (AnimatorControllerPlayable * __this, AnimatorControllerPlayable other, MethodInfo * method)); DO_APP_FUNC(0x02CD6A80, void, AnimatorControllerPlayable__cctor, (MethodInfo * method)); DO_APP_FUNC(0x0084C240, void, PropertiesChangedEvent__ctor, (PropertiesChangedEvent * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EE650, void, PropertiesChangedEvent_Invoke, (PropertiesChangedEvent * __this, VolumetricLight * volumetricLight, MethodInfo * method)); @@ -112508,10 +124979,10 @@ DO_APP_FUNC(0x02DA76F0, void, ParticleSystem_set_randomSeed, (ParticleSystem * _ DO_APP_FUNC(0x02DA7750, bool, ParticleSystem_get_useAutoRandomSeed, (ParticleSystem * __this, MethodInfo * method)); DO_APP_FUNC(0x02DA77A0, void, ParticleSystem_set_useAutoRandomSeed, (ParticleSystem * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x02DA7410, bool, ParticleSystem_get_proceduralSimulationSupported, (ParticleSystem * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DA7800, float, ParticleSystem_GetParticleCurrentSize, (ParticleSystem * __this, ParticleSystem_Particle particle, MethodInfo * method)); -DO_APP_FUNC(0x02DA7860, Vector3, ParticleSystem_GetParticleCurrentSize3D, (ParticleSystem * __this, ParticleSystem_Particle particle, MethodInfo * method)); -DO_APP_FUNC(0x02DA78E0, Color32, ParticleSystem_GetParticleCurrentColor, (ParticleSystem * __this, ParticleSystem_Particle particle, MethodInfo * method)); -DO_APP_FUNC(0x02DA7950, int32_t, ParticleSystem_GetParticleMeshIndex, (ParticleSystem * __this, ParticleSystem_Particle particle, MethodInfo * method)); +DO_APP_FUNC(0x02DA7800, float, ParticleSystem_GetParticleCurrentSize, (ParticleSystem * __this, ParticleSystem_Particle * particle, MethodInfo * method)); +DO_APP_FUNC(0x02DA7860, Vector3, ParticleSystem_GetParticleCurrentSize3D, (ParticleSystem * __this, ParticleSystem_Particle * particle, MethodInfo * method)); +DO_APP_FUNC(0x02DA78E0, Color32, ParticleSystem_GetParticleCurrentColor, (ParticleSystem * __this, ParticleSystem_Particle * particle, MethodInfo * method)); +DO_APP_FUNC(0x02DA7950, int32_t, ParticleSystem_GetParticleMeshIndex, (ParticleSystem * __this, ParticleSystem_Particle * particle, MethodInfo * method)); DO_APP_FUNC(0x02DA79B0, void, ParticleSystem_SetParticles, (ParticleSystem * __this, ParticleSystem_Particle__Array * particles, int32_t size, int32_t offset, MethodInfo * method)); DO_APP_FUNC(0x02DA7A30, void, ParticleSystem_SetParticles_1, (ParticleSystem * __this, ParticleSystem_Particle__Array * particles, int32_t size, MethodInfo * method)); DO_APP_FUNC(0x02DA7AB0, void, ParticleSystem_SetParticles_2, (ParticleSystem * __this, ParticleSystem_Particle__Array * particles, MethodInfo * method)); @@ -112530,9 +125001,9 @@ DO_APP_FUNC(0x02DA81B0, void, ParticleSystem_SetCustomParticleData, (ParticleSys DO_APP_FUNC(0x02DA8220, int32_t, ParticleSystem_GetCustomParticleData, (ParticleSystem * __this, List_1_UnityEngine_Vector4_ * customData, ParticleSystemCustomData__Enum streamIndex, MethodInfo * method)); DO_APP_FUNC(0x02DA8290, ParticleSystem_PlaybackState, ParticleSystem_GetPlaybackState, (ParticleSystem * __this, MethodInfo * method)); DO_APP_FUNC(0x02DA8300, void, ParticleSystem_SetPlaybackState, (ParticleSystem * __this, ParticleSystem_PlaybackState playbackState, MethodInfo * method)); -DO_APP_FUNC(0x02DA8360, void, ParticleSystem_GetTrailDataInternal, (ParticleSystem * __this, ParticleSystem_Trails trailData, MethodInfo * method)); +DO_APP_FUNC(0x02DA8360, void, ParticleSystem_GetTrailDataInternal, (ParticleSystem * __this, ParticleSystem_Trails * trailData, MethodInfo * method)); DO_APP_FUNC(0x02DA83C0, ParticleSystem_Trails, ParticleSystem_GetTrails, (ParticleSystem * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DA8470, int32_t, ParticleSystem_GetTrails_1, (ParticleSystem * __this, ParticleSystem_Trails trailData, MethodInfo * method)); +DO_APP_FUNC(0x02DA8470, int32_t, ParticleSystem_GetTrails_1, (ParticleSystem * __this, ParticleSystem_Trails * trailData, MethodInfo * method)); DO_APP_FUNC(0x02DA8510, void, ParticleSystem_SetTrails, (ParticleSystem * __this, ParticleSystem_Trails trailData, MethodInfo * method)); DO_APP_FUNC(0x02DA8570, void, ParticleSystem_Simulate, (ParticleSystem * __this, float t, bool withChildren, bool restart, bool fixedTimeStep, MethodInfo * method)); DO_APP_FUNC(0x02DA8600, void, ParticleSystem_Simulate_1, (ParticleSystem * __this, float t, bool withChildren, bool restart, MethodInfo * method)); @@ -112552,9 +125023,9 @@ DO_APP_FUNC(0x02DA8A50, bool, ParticleSystem_IsAlive_1, (ParticleSystem * __this DO_APP_FUNC(0x02DA8AB0, void, ParticleSystem_Emit_2, (ParticleSystem * __this, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x02DA8AB0, void, ParticleSystem_Emit_Internal, (ParticleSystem * __this, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x02DA8B10, void, ParticleSystem_Emit_3, (ParticleSystem * __this, ParticleSystem_EmitParams emitParams, int32_t count, MethodInfo * method)); -DO_APP_FUNC(0x02DA8B80, void, ParticleSystem_EmitOld_Internal, (ParticleSystem * __this, ParticleSystem_Particle particle, MethodInfo * method)); +DO_APP_FUNC(0x02DA8B80, void, ParticleSystem_EmitOld_Internal, (ParticleSystem * __this, ParticleSystem_Particle * particle, MethodInfo * method)); DO_APP_FUNC(0x02DA8BE0, void, ParticleSystem_TriggerSubEmitter, (ParticleSystem * __this, int32_t subEmitterIndex, MethodInfo * method)); -DO_APP_FUNC(0x02DA8C40, void, ParticleSystem_TriggerSubEmitter_1, (ParticleSystem * __this, int32_t subEmitterIndex, ParticleSystem_Particle particle, MethodInfo * method)); +DO_APP_FUNC(0x02DA8C40, void, ParticleSystem_TriggerSubEmitter_1, (ParticleSystem * __this, int32_t subEmitterIndex, ParticleSystem_Particle * particle, MethodInfo * method)); DO_APP_FUNC(0x02DA8D10, void, ParticleSystem_TriggerSubEmitterForParticle, (ParticleSystem * __this, int32_t subEmitterIndex, ParticleSystem_Particle particle, MethodInfo * method)); DO_APP_FUNC(0x02DA8D80, void, ParticleSystem_TriggerSubEmitter_2, (ParticleSystem * __this, int32_t subEmitterIndex, List_1_UnityEngine_ParticleSystem_Particle_ * particles, MethodInfo * method)); DO_APP_FUNC(0x02DA8DF0, void, ParticleSystem_ResetPreMappedBufferMemory, (MethodInfo * method)); @@ -112565,8 +125036,8 @@ DO_APP_FUNC(0x02DA8F40, void, ParticleSystem_AllocateCustomDataAttribute, (Parti DO_APP_FUNC(0x02DA8FA0, Void *, ParticleSystem_GetManagedJobData, (ParticleSystem * __this, MethodInfo * method)); DO_APP_FUNC(0x02DA8FF0, JobHandle, ParticleSystem_GetManagedJobHandle, (ParticleSystem * __this, MethodInfo * method)); DO_APP_FUNC(0x02DA9060, void, ParticleSystem_SetManagedJobHandle, (ParticleSystem * __this, JobHandle handle, MethodInfo * method)); -DO_APP_FUNC(0x02DA90C0, JobHandle, ParticleSystem_ScheduleManagedJob, (JobsUtility_JobScheduleParameters parameters, Void * additionalData, MethodInfo * method)); -DO_APP_FUNC(0x02DA9140, void, ParticleSystem_CopyManagedJobData, (Void * systemPtr, NativeParticleData particleData, MethodInfo * method)); +DO_APP_FUNC(0x02DA90C0, JobHandle, ParticleSystem_ScheduleManagedJob, (JobsUtility_JobScheduleParameters * parameters, Void * additionalData, MethodInfo * method)); +DO_APP_FUNC(0x02DA9140, void, ParticleSystem_CopyManagedJobData, (Void * systemPtr, NativeParticleData * particleData, MethodInfo * method)); DO_APP_FUNC(0x003BB3F0, ParticleSystem_MainModule, ParticleSystem_get_main, (ParticleSystem * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3F0, ParticleSystem_EmissionModule, ParticleSystem_get_emission, (ParticleSystem * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3F0, ParticleSystem_ShapeModule, ParticleSystem_get_shape, (ParticleSystem * __this, MethodInfo * method)); @@ -112591,240 +125062,240 @@ DO_APP_FUNC(0x003BB3F0, ParticleSystem_LightsModule, ParticleSystem_get_lights, DO_APP_FUNC(0x003BB3F0, ParticleSystem_TrailModule, ParticleSystem_get_trails, (ParticleSystem * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3F0, ParticleSystem_CustomDataModule, ParticleSystem_get_customData, (ParticleSystem * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, ParticleSystem__ctor, (ParticleSystem * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DA91A0, void, ParticleSystem_GetParticleCurrentSize3D_Injected, (ParticleSystem * __this, ParticleSystem_Particle particle, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02DA9210, void, ParticleSystem_GetParticleCurrentColor_Injected, (ParticleSystem * __this, ParticleSystem_Particle particle, Color32 ret, MethodInfo * method)); -DO_APP_FUNC(0x02DA9280, void, ParticleSystem_GetPlaybackState_Injected, (ParticleSystem * __this, ParticleSystem_PlaybackState ret, MethodInfo * method)); -DO_APP_FUNC(0x02DA92E0, void, ParticleSystem_SetPlaybackState_Injected, (ParticleSystem * __this, ParticleSystem_PlaybackState playbackState, MethodInfo * method)); -DO_APP_FUNC(0x02DA9340, void, ParticleSystem_SetTrails_Injected, (ParticleSystem * __this, ParticleSystem_Trails trailData, MethodInfo * method)); -DO_APP_FUNC(0x02DA93A0, void, ParticleSystem_Emit_Injected, (ParticleSystem * __this, ParticleSystem_EmitParams emitParams, int32_t count, MethodInfo * method)); -DO_APP_FUNC(0x02DA9410, void, ParticleSystem_TriggerSubEmitterForParticle_Injected, (ParticleSystem * __this, int32_t subEmitterIndex, ParticleSystem_Particle particle, MethodInfo * method)); -DO_APP_FUNC(0x02DA9480, void, ParticleSystem_GetManagedJobHandle_Injected, (ParticleSystem * __this, JobHandle ret, MethodInfo * method)); -DO_APP_FUNC(0x02DA94E0, void, ParticleSystem_SetManagedJobHandle_Injected, (ParticleSystem * __this, JobHandle handle, MethodInfo * method)); -DO_APP_FUNC(0x02DA9540, void, ParticleSystem_ScheduleManagedJob_Injected, (JobsUtility_JobScheduleParameters parameters, Void * additionalData, JobHandle ret, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, ParticleSystem_MainModule__ctor, (ParticleSystem_MainModule__Boxed * __this, ParticleSystem * particleSystem, MethodInfo * method)); -DO_APP_FUNC(0x02DA95B0, float, ParticleSystem_MainModule_get_duration, (ParticleSystem_MainModule__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DA9600, bool, ParticleSystem_MainModule_get_loop, (ParticleSystem_MainModule__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DA9650, void, ParticleSystem_MainModule_set_loop, (ParticleSystem_MainModule__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02DA96B0, void, ParticleSystem_MainModule_set_prewarm, (ParticleSystem_MainModule__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02DA9710, ParticleSystem_MinMaxCurve, ParticleSystem_MainModule_get_startDelay, (ParticleSystem_MainModule__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DA9780, void, ParticleSystem_MainModule_set_startDelay, (ParticleSystem_MainModule__Boxed * __this, ParticleSystem_MinMaxCurve value, MethodInfo * method)); -DO_APP_FUNC(0x02DA97E0, float, ParticleSystem_MainModule_get_startDelayMultiplier, (ParticleSystem_MainModule__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DA9830, void, ParticleSystem_MainModule_set_startDelayMultiplier, (ParticleSystem_MainModule__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02DA9890, ParticleSystem_MinMaxCurve, ParticleSystem_MainModule_get_startLifetime, (ParticleSystem_MainModule__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DA9900, void, ParticleSystem_MainModule_set_startLifetime, (ParticleSystem_MainModule__Boxed * __this, ParticleSystem_MinMaxCurve value, MethodInfo * method)); -DO_APP_FUNC(0x02DA9960, float, ParticleSystem_MainModule_get_startLifetimeMultiplier, (ParticleSystem_MainModule__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DA99B0, void, ParticleSystem_MainModule_set_startLifetimeMultiplier, (ParticleSystem_MainModule__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02DA9A10, void, ParticleSystem_MainModule_set_startSpeed, (ParticleSystem_MainModule__Boxed * __this, ParticleSystem_MinMaxCurve value, MethodInfo * method)); -DO_APP_FUNC(0x02DA9A70, float, ParticleSystem_MainModule_get_startSpeedMultiplier, (ParticleSystem_MainModule__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DA9AC0, void, ParticleSystem_MainModule_set_startSpeedMultiplier, (ParticleSystem_MainModule__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02DA9B20, ParticleSystem_MinMaxCurve, ParticleSystem_MainModule_get_startSize, (ParticleSystem_MainModule__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DA9B90, void, ParticleSystem_MainModule_set_startSize, (ParticleSystem_MainModule__Boxed * __this, ParticleSystem_MinMaxCurve value, MethodInfo * method)); -DO_APP_FUNC(0x02DA9BF0, float, ParticleSystem_MainModule_get_startSizeMultiplier, (ParticleSystem_MainModule__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DA9C40, void, ParticleSystem_MainModule_set_startSizeMultiplier, (ParticleSystem_MainModule__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02DA9CA0, void, ParticleSystem_MainModule_set_startRotation, (ParticleSystem_MainModule__Boxed * __this, ParticleSystem_MinMaxCurve value, MethodInfo * method)); -DO_APP_FUNC(0x02DA9D00, float, ParticleSystem_MainModule_get_startRotationMultiplier, (ParticleSystem_MainModule__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DA9D50, void, ParticleSystem_MainModule_set_startRotationMultiplier, (ParticleSystem_MainModule__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02DA9DB0, float, ParticleSystem_MainModule_get_startRotationXMultiplier, (ParticleSystem_MainModule__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DA9E00, void, ParticleSystem_MainModule_set_startRotationXMultiplier, (ParticleSystem_MainModule__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02DA9E60, float, ParticleSystem_MainModule_get_startRotationYMultiplier, (ParticleSystem_MainModule__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DA9EB0, void, ParticleSystem_MainModule_set_startRotationYMultiplier, (ParticleSystem_MainModule__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02DA9F10, float, ParticleSystem_MainModule_get_startRotationZMultiplier, (ParticleSystem_MainModule__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DA9F60, void, ParticleSystem_MainModule_set_startRotationZMultiplier, (ParticleSystem_MainModule__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02DA9FC0, ParticleSystem_MinMaxGradient, ParticleSystem_MainModule_get_startColor, (ParticleSystem_MainModule__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DAA040, void, ParticleSystem_MainModule_set_startColor, (ParticleSystem_MainModule__Boxed * __this, ParticleSystem_MinMaxGradient value, MethodInfo * method)); -DO_APP_FUNC(0x02DAA0A0, float, ParticleSystem_MainModule_get_gravityModifierMultiplier, (ParticleSystem_MainModule__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DAA0F0, void, ParticleSystem_MainModule_set_gravityModifierMultiplier, (ParticleSystem_MainModule__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02DAA150, ParticleSystemSimulationSpace__Enum, ParticleSystem_MainModule_get_simulationSpace, (ParticleSystem_MainModule__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DAA1A0, void, ParticleSystem_MainModule_set_simulationSpace, (ParticleSystem_MainModule__Boxed * __this, ParticleSystemSimulationSpace__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x02DAA200, float, ParticleSystem_MainModule_get_simulationSpeed, (ParticleSystem_MainModule__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DAA250, void, ParticleSystem_MainModule_set_simulationSpeed, (ParticleSystem_MainModule__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02DAA2B0, ParticleSystemScalingMode__Enum, ParticleSystem_MainModule_get_scalingMode, (ParticleSystem_MainModule__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DAA300, void, ParticleSystem_MainModule_set_scalingMode, (ParticleSystem_MainModule__Boxed * __this, ParticleSystemScalingMode__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x02DAA360, bool, ParticleSystem_MainModule_get_playOnAwake, (ParticleSystem_MainModule__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DAA3B0, void, ParticleSystem_MainModule_set_playOnAwake, (ParticleSystem_MainModule__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02DAA410, int32_t, ParticleSystem_MainModule_get_maxParticles, (ParticleSystem_MainModule__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DAA460, void, ParticleSystem_MainModule_set_maxParticles, (ParticleSystem_MainModule__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x02DA95B0, float, ParticleSystem_MainModule_get_duration_Injected, (ParticleSystem_MainModule _unity_self, MethodInfo * method)); -DO_APP_FUNC(0x02DA9600, bool, ParticleSystem_MainModule_get_loop_Injected, (ParticleSystem_MainModule _unity_self, MethodInfo * method)); -DO_APP_FUNC(0x02DA9650, void, ParticleSystem_MainModule_set_loop_Injected, (ParticleSystem_MainModule _unity_self, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02DA96B0, void, ParticleSystem_MainModule_set_prewarm_Injected, (ParticleSystem_MainModule _unity_self, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02DAA4C0, void, ParticleSystem_MainModule_get_startDelay_Injected, (ParticleSystem_MainModule _unity_self, ParticleSystem_MinMaxCurve ret, MethodInfo * method)); -DO_APP_FUNC(0x02DAA520, void, ParticleSystem_MainModule_set_startDelay_Injected, (ParticleSystem_MainModule _unity_self, ParticleSystem_MinMaxCurve value, MethodInfo * method)); -DO_APP_FUNC(0x02DA97E0, float, ParticleSystem_MainModule_get_startDelayMultiplier_Injected, (ParticleSystem_MainModule _unity_self, MethodInfo * method)); -DO_APP_FUNC(0x02DA9830, void, ParticleSystem_MainModule_set_startDelayMultiplier_Injected, (ParticleSystem_MainModule _unity_self, float value, MethodInfo * method)); -DO_APP_FUNC(0x02DAA580, void, ParticleSystem_MainModule_get_startLifetime_Injected, (ParticleSystem_MainModule _unity_self, ParticleSystem_MinMaxCurve ret, MethodInfo * method)); -DO_APP_FUNC(0x02DAA5E0, void, ParticleSystem_MainModule_set_startLifetime_Injected, (ParticleSystem_MainModule _unity_self, ParticleSystem_MinMaxCurve value, MethodInfo * method)); -DO_APP_FUNC(0x02DA9960, float, ParticleSystem_MainModule_get_startLifetimeMultiplier_Injected, (ParticleSystem_MainModule _unity_self, MethodInfo * method)); -DO_APP_FUNC(0x02DA99B0, void, ParticleSystem_MainModule_set_startLifetimeMultiplier_Injected, (ParticleSystem_MainModule _unity_self, float value, MethodInfo * method)); -DO_APP_FUNC(0x02DAA640, void, ParticleSystem_MainModule_set_startSpeed_Injected, (ParticleSystem_MainModule _unity_self, ParticleSystem_MinMaxCurve value, MethodInfo * method)); -DO_APP_FUNC(0x02DA9A70, float, ParticleSystem_MainModule_get_startSpeedMultiplier_Injected, (ParticleSystem_MainModule _unity_self, MethodInfo * method)); -DO_APP_FUNC(0x02DA9AC0, void, ParticleSystem_MainModule_set_startSpeedMultiplier_Injected, (ParticleSystem_MainModule _unity_self, float value, MethodInfo * method)); -DO_APP_FUNC(0x02DAA6A0, void, ParticleSystem_MainModule_get_startSize_Injected, (ParticleSystem_MainModule _unity_self, ParticleSystem_MinMaxCurve ret, MethodInfo * method)); -DO_APP_FUNC(0x02DAA700, void, ParticleSystem_MainModule_set_startSize_Injected, (ParticleSystem_MainModule _unity_self, ParticleSystem_MinMaxCurve value, MethodInfo * method)); -DO_APP_FUNC(0x02DA9BF0, float, ParticleSystem_MainModule_get_startSizeMultiplier_Injected, (ParticleSystem_MainModule _unity_self, MethodInfo * method)); -DO_APP_FUNC(0x02DA9C40, void, ParticleSystem_MainModule_set_startSizeMultiplier_Injected, (ParticleSystem_MainModule _unity_self, float value, MethodInfo * method)); -DO_APP_FUNC(0x02DAA760, void, ParticleSystem_MainModule_set_startRotation_Injected, (ParticleSystem_MainModule _unity_self, ParticleSystem_MinMaxCurve value, MethodInfo * method)); -DO_APP_FUNC(0x02DA9D00, float, ParticleSystem_MainModule_get_startRotationMultiplier_Injected, (ParticleSystem_MainModule _unity_self, MethodInfo * method)); -DO_APP_FUNC(0x02DA9D50, void, ParticleSystem_MainModule_set_startRotationMultiplier_Injected, (ParticleSystem_MainModule _unity_self, float value, MethodInfo * method)); -DO_APP_FUNC(0x02DA9DB0, float, ParticleSystem_MainModule_get_startRotationXMultiplier_Injected, (ParticleSystem_MainModule _unity_self, MethodInfo * method)); -DO_APP_FUNC(0x02DA9E00, void, ParticleSystem_MainModule_set_startRotationXMultiplier_Injected, (ParticleSystem_MainModule _unity_self, float value, MethodInfo * method)); -DO_APP_FUNC(0x02DA9E60, float, ParticleSystem_MainModule_get_startRotationYMultiplier_Injected, (ParticleSystem_MainModule _unity_self, MethodInfo * method)); -DO_APP_FUNC(0x02DA9EB0, void, ParticleSystem_MainModule_set_startRotationYMultiplier_Injected, (ParticleSystem_MainModule _unity_self, float value, MethodInfo * method)); -DO_APP_FUNC(0x02DA9F10, float, ParticleSystem_MainModule_get_startRotationZMultiplier_Injected, (ParticleSystem_MainModule _unity_self, MethodInfo * method)); -DO_APP_FUNC(0x02DA9F60, void, ParticleSystem_MainModule_set_startRotationZMultiplier_Injected, (ParticleSystem_MainModule _unity_self, float value, MethodInfo * method)); -DO_APP_FUNC(0x02DAA7C0, void, ParticleSystem_MainModule_get_startColor_Injected, (ParticleSystem_MainModule _unity_self, ParticleSystem_MinMaxGradient ret, MethodInfo * method)); -DO_APP_FUNC(0x02DAA820, void, ParticleSystem_MainModule_set_startColor_Injected, (ParticleSystem_MainModule _unity_self, ParticleSystem_MinMaxGradient value, MethodInfo * method)); -DO_APP_FUNC(0x02DAA0A0, float, ParticleSystem_MainModule_get_gravityModifierMultiplier_Injected, (ParticleSystem_MainModule _unity_self, MethodInfo * method)); -DO_APP_FUNC(0x02DAA0F0, void, ParticleSystem_MainModule_set_gravityModifierMultiplier_Injected, (ParticleSystem_MainModule _unity_self, float value, MethodInfo * method)); -DO_APP_FUNC(0x02DAA150, ParticleSystemSimulationSpace__Enum, ParticleSystem_MainModule_get_simulationSpace_Injected, (ParticleSystem_MainModule _unity_self, MethodInfo * method)); -DO_APP_FUNC(0x02DAA1A0, void, ParticleSystem_MainModule_set_simulationSpace_Injected, (ParticleSystem_MainModule _unity_self, ParticleSystemSimulationSpace__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x02DAA200, float, ParticleSystem_MainModule_get_simulationSpeed_Injected, (ParticleSystem_MainModule _unity_self, MethodInfo * method)); -DO_APP_FUNC(0x02DAA250, void, ParticleSystem_MainModule_set_simulationSpeed_Injected, (ParticleSystem_MainModule _unity_self, float value, MethodInfo * method)); -DO_APP_FUNC(0x02DAA2B0, ParticleSystemScalingMode__Enum, ParticleSystem_MainModule_get_scalingMode_Injected, (ParticleSystem_MainModule _unity_self, MethodInfo * method)); -DO_APP_FUNC(0x02DAA300, void, ParticleSystem_MainModule_set_scalingMode_Injected, (ParticleSystem_MainModule _unity_self, ParticleSystemScalingMode__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x02DAA360, bool, ParticleSystem_MainModule_get_playOnAwake_Injected, (ParticleSystem_MainModule _unity_self, MethodInfo * method)); -DO_APP_FUNC(0x02DAA3B0, void, ParticleSystem_MainModule_set_playOnAwake_Injected, (ParticleSystem_MainModule _unity_self, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02DAA410, int32_t, ParticleSystem_MainModule_get_maxParticles_Injected, (ParticleSystem_MainModule _unity_self, MethodInfo * method)); -DO_APP_FUNC(0x02DAA460, void, ParticleSystem_MainModule_set_maxParticles_Injected, (ParticleSystem_MainModule _unity_self, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, ParticleSystem_EmissionModule__ctor, (ParticleSystem_EmissionModule__Boxed * __this, ParticleSystem * particleSystem, MethodInfo * method)); -DO_APP_FUNC(0x02DAA880, bool, ParticleSystem_EmissionModule_get_enabled, (ParticleSystem_EmissionModule__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DAA8D0, void, ParticleSystem_EmissionModule_set_enabled, (ParticleSystem_EmissionModule__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02DAA930, ParticleSystem_MinMaxCurve, ParticleSystem_EmissionModule_get_rateOverTime, (ParticleSystem_EmissionModule__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DAA9A0, void, ParticleSystem_EmissionModule_set_rateOverTime, (ParticleSystem_EmissionModule__Boxed * __this, ParticleSystem_MinMaxCurve value, MethodInfo * method)); -DO_APP_FUNC(0x02DAAA00, float, ParticleSystem_EmissionModule_get_rateOverTimeMultiplier, (ParticleSystem_EmissionModule__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DAAA50, void, ParticleSystem_EmissionModule_set_rateOverTimeMultiplier, (ParticleSystem_EmissionModule__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02DAAAB0, void, ParticleSystem_EmissionModule_SetBurst, (ParticleSystem_EmissionModule__Boxed * __this, int32_t index, ParticleSystem_Burst burst, MethodInfo * method)); -DO_APP_FUNC(0x02DAAB20, ParticleSystem_Burst, ParticleSystem_EmissionModule_GetBurst, (ParticleSystem_EmissionModule__Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x02DAA880, bool, ParticleSystem_EmissionModule_get_enabled_Injected, (ParticleSystem_EmissionModule _unity_self, MethodInfo * method)); -DO_APP_FUNC(0x02DAA8D0, void, ParticleSystem_EmissionModule_set_enabled_Injected, (ParticleSystem_EmissionModule _unity_self, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02DAABB0, void, ParticleSystem_EmissionModule_get_rateOverTime_Injected, (ParticleSystem_EmissionModule _unity_self, ParticleSystem_MinMaxCurve ret, MethodInfo * method)); -DO_APP_FUNC(0x02DAAC10, void, ParticleSystem_EmissionModule_set_rateOverTime_Injected, (ParticleSystem_EmissionModule _unity_self, ParticleSystem_MinMaxCurve value, MethodInfo * method)); -DO_APP_FUNC(0x02DAAA00, float, ParticleSystem_EmissionModule_get_rateOverTimeMultiplier_Injected, (ParticleSystem_EmissionModule _unity_self, MethodInfo * method)); -DO_APP_FUNC(0x02DAAA50, void, ParticleSystem_EmissionModule_set_rateOverTimeMultiplier_Injected, (ParticleSystem_EmissionModule _unity_self, float value, MethodInfo * method)); -DO_APP_FUNC(0x02DAAC70, void, ParticleSystem_EmissionModule_SetBurst_Injected, (ParticleSystem_EmissionModule _unity_self, int32_t index, ParticleSystem_Burst burst, MethodInfo * method)); -DO_APP_FUNC(0x02DAACE0, void, ParticleSystem_EmissionModule_GetBurst_Injected, (ParticleSystem_EmissionModule _unity_self, int32_t index, ParticleSystem_Burst ret, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, ParticleSystem_ShapeModule__ctor, (ParticleSystem_ShapeModule__Boxed * __this, ParticleSystem * particleSystem, MethodInfo * method)); -DO_APP_FUNC(0x02DAAD50, void, ParticleSystem_ShapeModule_set_shapeType, (ParticleSystem_ShapeModule__Boxed * __this, ParticleSystemShapeType__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x02DAADB0, void, ParticleSystem_ShapeModule_set_radius, (ParticleSystem_ShapeModule__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02DAAE10, void, ParticleSystem_ShapeModule_set_angle, (ParticleSystem_ShapeModule__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02DAAE70, void, ParticleSystem_ShapeModule_set_length, (ParticleSystem_ShapeModule__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02DAAED0, void, ParticleSystem_ShapeModule_set_position, (ParticleSystem_ShapeModule__Boxed * __this, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x02DAAF30, void, ParticleSystem_ShapeModule_set_rotation, (ParticleSystem_ShapeModule__Boxed * __this, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x02DAAF90, void, ParticleSystem_ShapeModule_set_scale, (ParticleSystem_ShapeModule__Boxed * __this, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x02DAAD50, void, ParticleSystem_ShapeModule_set_shapeType_Injected, (ParticleSystem_ShapeModule _unity_self, ParticleSystemShapeType__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x02DAADB0, void, ParticleSystem_ShapeModule_set_radius_Injected, (ParticleSystem_ShapeModule _unity_self, float value, MethodInfo * method)); -DO_APP_FUNC(0x02DAAE10, void, ParticleSystem_ShapeModule_set_angle_Injected, (ParticleSystem_ShapeModule _unity_self, float value, MethodInfo * method)); -DO_APP_FUNC(0x02DAAE70, void, ParticleSystem_ShapeModule_set_length_Injected, (ParticleSystem_ShapeModule _unity_self, float value, MethodInfo * method)); -DO_APP_FUNC(0x02DAAFF0, void, ParticleSystem_ShapeModule_set_position_Injected, (ParticleSystem_ShapeModule _unity_self, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x02DAB050, void, ParticleSystem_ShapeModule_set_rotation_Injected, (ParticleSystem_ShapeModule _unity_self, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x02DAB0B0, void, ParticleSystem_ShapeModule_set_scale_Injected, (ParticleSystem_ShapeModule _unity_self, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, ParticleSystem_CollisionModule__ctor, (ParticleSystem_CollisionModule__Boxed * __this, ParticleSystem * particleSystem, MethodInfo * method)); -DO_APP_FUNC(0x02DAB110, bool, ParticleSystem_CollisionModule_get_enabled, (ParticleSystem_CollisionModule__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DAB160, LayerMask, ParticleSystem_CollisionModule_get_collidesWith, (ParticleSystem_CollisionModule__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DAB1C0, bool, ParticleSystem_CollisionModule_get_sendCollisionMessages, (ParticleSystem_CollisionModule__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DAB210, float, ParticleSystem_CollisionModule_get_colliderForce, (ParticleSystem_CollisionModule__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DAB110, bool, ParticleSystem_CollisionModule_get_enabled_Injected, (ParticleSystem_CollisionModule _unity_self, MethodInfo * method)); -DO_APP_FUNC(0x02DAB260, void, ParticleSystem_CollisionModule_get_collidesWith_Injected, (ParticleSystem_CollisionModule _unity_self, LayerMask ret, MethodInfo * method)); -DO_APP_FUNC(0x02DAB1C0, bool, ParticleSystem_CollisionModule_get_sendCollisionMessages_Injected, (ParticleSystem_CollisionModule _unity_self, MethodInfo * method)); -DO_APP_FUNC(0x02DAB210, float, ParticleSystem_CollisionModule_get_colliderForce_Injected, (ParticleSystem_CollisionModule _unity_self, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, ParticleSystem_TriggerModule__ctor, (ParticleSystem_TriggerModule__Boxed * __this, ParticleSystem * particleSystem, MethodInfo * method)); -DO_APP_FUNC(0x02DAB2C0, void, ParticleSystem_TriggerModule_set_enabled, (ParticleSystem_TriggerModule__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02DAB320, void, ParticleSystem_TriggerModule_AddCollider, (ParticleSystem_TriggerModule__Boxed * __this, Component * collider, MethodInfo * method)); -DO_APP_FUNC(0x02DAB380, int32_t, ParticleSystem_TriggerModule_get_colliderCount, (ParticleSystem_TriggerModule__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DAB2C0, void, ParticleSystem_TriggerModule_set_enabled_Injected, (ParticleSystem_TriggerModule _unity_self, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02DAB320, void, ParticleSystem_TriggerModule_AddCollider_Injected, (ParticleSystem_TriggerModule _unity_self, Component * collider, MethodInfo * method)); -DO_APP_FUNC(0x02DAB380, int32_t, ParticleSystem_TriggerModule_get_colliderCount_Injected, (ParticleSystem_TriggerModule _unity_self, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, ParticleSystem_SubEmittersModule__ctor, (ParticleSystem_SubEmittersModule__Boxed * __this, ParticleSystem * particleSystem, MethodInfo * method)); -DO_APP_FUNC(0x02DAB3D0, int32_t, ParticleSystem_SubEmittersModule_get_subEmittersCount, (ParticleSystem_SubEmittersModule__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DAB420, ParticleSystem *, ParticleSystem_SubEmittersModule_GetSubEmitterSystem, (ParticleSystem_SubEmittersModule__Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x02DAB3D0, int32_t, ParticleSystem_SubEmittersModule_get_subEmittersCount_Injected, (ParticleSystem_SubEmittersModule _unity_self, MethodInfo * method)); -DO_APP_FUNC(0x02DAB420, ParticleSystem *, ParticleSystem_SubEmittersModule_GetSubEmitterSystem_Injected, (ParticleSystem_SubEmittersModule _unity_self, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x02DAB480, bool, ParticleSystem_TextureSheetAnimationModule_get_useRandomRow, (ParticleSystem_TextureSheetAnimationModule__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, ParticleSystem_TextureSheetAnimationModule__ctor, (ParticleSystem_TextureSheetAnimationModule__Boxed * __this, ParticleSystem * particleSystem, MethodInfo * method)); -DO_APP_FUNC(0x02DAB4E0, bool, ParticleSystem_TextureSheetAnimationModule_get_enabled, (ParticleSystem_TextureSheetAnimationModule__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DAB530, int32_t, ParticleSystem_TextureSheetAnimationModule_get_numTilesX, (ParticleSystem_TextureSheetAnimationModule__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DAB580, int32_t, ParticleSystem_TextureSheetAnimationModule_get_numTilesY, (ParticleSystem_TextureSheetAnimationModule__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DAB5D0, ParticleSystemAnimationType__Enum, ParticleSystem_TextureSheetAnimationModule_get_animation, (ParticleSystem_TextureSheetAnimationModule__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DAB620, ParticleSystemAnimationRowMode__Enum, ParticleSystem_TextureSheetAnimationModule_get_rowMode, (ParticleSystem_TextureSheetAnimationModule__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DAB670, ParticleSystem_MinMaxCurve, ParticleSystem_TextureSheetAnimationModule_get_frameOverTime, (ParticleSystem_TextureSheetAnimationModule__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DAB6E0, int32_t, ParticleSystem_TextureSheetAnimationModule_get_cycleCount, (ParticleSystem_TextureSheetAnimationModule__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DAB730, int32_t, ParticleSystem_TextureSheetAnimationModule_get_rowIndex, (ParticleSystem_TextureSheetAnimationModule__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DAB4E0, bool, ParticleSystem_TextureSheetAnimationModule_get_enabled_Injected, (ParticleSystem_TextureSheetAnimationModule _unity_self, MethodInfo * method)); -DO_APP_FUNC(0x02DAB530, int32_t, ParticleSystem_TextureSheetAnimationModule_get_numTilesX_Injected, (ParticleSystem_TextureSheetAnimationModule _unity_self, MethodInfo * method)); -DO_APP_FUNC(0x02DAB580, int32_t, ParticleSystem_TextureSheetAnimationModule_get_numTilesY_Injected, (ParticleSystem_TextureSheetAnimationModule _unity_self, MethodInfo * method)); -DO_APP_FUNC(0x02DAB5D0, ParticleSystemAnimationType__Enum, ParticleSystem_TextureSheetAnimationModule_get_animation_Injected, (ParticleSystem_TextureSheetAnimationModule _unity_self, MethodInfo * method)); -DO_APP_FUNC(0x02DAB620, ParticleSystemAnimationRowMode__Enum, ParticleSystem_TextureSheetAnimationModule_get_rowMode_Injected, (ParticleSystem_TextureSheetAnimationModule _unity_self, MethodInfo * method)); -DO_APP_FUNC(0x02DAB780, void, ParticleSystem_TextureSheetAnimationModule_get_frameOverTime_Injected, (ParticleSystem_TextureSheetAnimationModule _unity_self, ParticleSystem_MinMaxCurve ret, MethodInfo * method)); -DO_APP_FUNC(0x02DAB6E0, int32_t, ParticleSystem_TextureSheetAnimationModule_get_cycleCount_Injected, (ParticleSystem_TextureSheetAnimationModule _unity_self, MethodInfo * method)); -DO_APP_FUNC(0x02DAB730, int32_t, ParticleSystem_TextureSheetAnimationModule_get_rowIndex_Injected, (ParticleSystem_TextureSheetAnimationModule _unity_self, MethodInfo * method)); -DO_APP_FUNC(0x01C6C940, void, ParticleSystem_Particle_set_lifetime, (ParticleSystem_Particle__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02CB9C50, Vector3, ParticleSystem_Particle_get_position, (ParticleSystem_Particle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C7A120, void, ParticleSystem_Particle_set_position, (ParticleSystem_Particle__Boxed * __this, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x01C7A130, void, ParticleSystem_Particle_set_velocity, (ParticleSystem_Particle__Boxed * __this, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x02DAB7E0, float, ParticleSystem_Particle_get_remainingLifetime, (ParticleSystem_Particle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C6C940, void, ParticleSystem_Particle_set_remainingLifetime, (ParticleSystem_Particle__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02DAB7F0, float, ParticleSystem_Particle_get_startLifetime, (ParticleSystem_Particle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01D83B80, void, ParticleSystem_Particle_set_startLifetime, (ParticleSystem_Particle__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x01BD11E0, void, ParticleSystem_Particle_set_startColor, (ParticleSystem_Particle__Boxed * __this, Color32 value, MethodInfo * method)); -DO_APP_FUNC(0x02DAB800, uint32_t, ParticleSystem_Particle_get_randomSeed, (ParticleSystem_Particle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BD1C10, void, ParticleSystem_Particle_set_randomSeed, (ParticleSystem_Particle__Boxed * __this, uint32_t value, MethodInfo * method)); -DO_APP_FUNC(0x02DAB810, void, ParticleSystem_Particle_set_startSize, (ParticleSystem_Particle__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02DAB830, float, ParticleSystem_Particle_get_rotation, (ParticleSystem_Particle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DAB840, Vector3, ParticleSystem_Particle_get_rotation3D, (ParticleSystem_Particle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DAB880, void, ParticleSystem_Particle_set_rotation3D, (ParticleSystem_Particle__Boxed * __this, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x02DAB8C0, void, ParticleSystem_Particle_set_angularVelocity3D, (ParticleSystem_Particle__Boxed * __this, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x02DAB900, float, ParticleSystem_Particle_GetCurrentSize, (ParticleSystem_Particle__Boxed * __this, ParticleSystem * system, MethodInfo * method)); -DO_APP_FUNC(0x02DAB970, Color32, ParticleSystem_Particle_GetCurrentColor, (ParticleSystem_Particle__Boxed * __this, ParticleSystem * system, MethodInfo * method)); -DO_APP_FUNC(0x02DAB9F0, ParticleSystem_MinMaxCurve, ParticleSystem_Burst_get_count, (ParticleSystem_Burst__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DABA10, void, ParticleSystem_Burst_set_count, (ParticleSystem_Burst__Boxed * __this, ParticleSystem_MinMaxCurve value, MethodInfo * method)); -DO_APP_FUNC(0x02DABA70, void, ParticleSystem_MinMaxCurve__ctor, (ParticleSystem_MinMaxCurve__Boxed * __this, float constant, MethodInfo * method)); -DO_APP_FUNC(0x02B78450, ParticleSystemCurveMode__Enum, ParticleSystem_MinMaxCurve_get_mode, (ParticleSystem_MinMaxCurve__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00959BA0, void, ParticleSystem_MinMaxCurve_set_mode, (ParticleSystem_MinMaxCurve__Boxed * __this, ParticleSystemCurveMode__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x02D66790, AnimationCurve *, ParticleSystem_MinMaxCurve_get_curveMin, (ParticleSystem_MinMaxCurve__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003CCB90, void, ParticleSystem_MinMaxCurve_set_constantMax, (ParticleSystem_MinMaxCurve__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x003CB2B0, void, ParticleSystem_MinMaxCurve_set_constantMin, (ParticleSystem_MinMaxCurve__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02DA1C10, float, ParticleSystem_MinMaxCurve_get_constant, (ParticleSystem_MinMaxCurve__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003CCB90, void, ParticleSystem_MinMaxCurve_set_constant, (ParticleSystem_MinMaxCurve__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x015C0B20, AnimationCurve *, ParticleSystem_MinMaxCurve_get_curve, (ParticleSystem_MinMaxCurve__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DABB30, float, ParticleSystem_MinMaxCurve_Evaluate, (ParticleSystem_MinMaxCurve__Boxed * __this, float time, MethodInfo * method)); -DO_APP_FUNC(0x02DABB50, float, ParticleSystem_MinMaxCurve_Evaluate_1, (ParticleSystem_MinMaxCurve__Boxed * __this, float time, float lerpFactor, MethodInfo * method)); +DO_APP_FUNC(0x02DA91A0, void, ParticleSystem_GetParticleCurrentSize3D_Injected, (ParticleSystem * __this, ParticleSystem_Particle * particle, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DA9210, void, ParticleSystem_GetParticleCurrentColor_Injected, (ParticleSystem * __this, ParticleSystem_Particle * particle, Color32 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DA9280, void, ParticleSystem_GetPlaybackState_Injected, (ParticleSystem * __this, ParticleSystem_PlaybackState * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DA92E0, void, ParticleSystem_SetPlaybackState_Injected, (ParticleSystem * __this, ParticleSystem_PlaybackState * playbackState, MethodInfo * method)); +DO_APP_FUNC(0x02DA9340, void, ParticleSystem_SetTrails_Injected, (ParticleSystem * __this, ParticleSystem_Trails * trailData, MethodInfo * method)); +DO_APP_FUNC(0x02DA93A0, void, ParticleSystem_Emit_Injected, (ParticleSystem * __this, ParticleSystem_EmitParams * emitParams, int32_t count, MethodInfo * method)); +DO_APP_FUNC(0x02DA9410, void, ParticleSystem_TriggerSubEmitterForParticle_Injected, (ParticleSystem * __this, int32_t subEmitterIndex, ParticleSystem_Particle * particle, MethodInfo * method)); +DO_APP_FUNC(0x02DA9480, void, ParticleSystem_GetManagedJobHandle_Injected, (ParticleSystem * __this, JobHandle * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DA94E0, void, ParticleSystem_SetManagedJobHandle_Injected, (ParticleSystem * __this, JobHandle * handle, MethodInfo * method)); +DO_APP_FUNC(0x02DA9540, void, ParticleSystem_ScheduleManagedJob_Injected, (JobsUtility_JobScheduleParameters * parameters, Void * additionalData, JobHandle * ret, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, ParticleSystem_MainModule__ctor, (ParticleSystem_MainModule * __this, ParticleSystem * particleSystem, MethodInfo * method)); +DO_APP_FUNC(0x02DA95B0, float, ParticleSystem_MainModule_get_duration, (ParticleSystem_MainModule * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DA9600, bool, ParticleSystem_MainModule_get_loop, (ParticleSystem_MainModule * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DA9650, void, ParticleSystem_MainModule_set_loop, (ParticleSystem_MainModule * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02DA96B0, void, ParticleSystem_MainModule_set_prewarm, (ParticleSystem_MainModule * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02DA9710, ParticleSystem_MinMaxCurve, ParticleSystem_MainModule_get_startDelay, (ParticleSystem_MainModule * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DA9780, void, ParticleSystem_MainModule_set_startDelay, (ParticleSystem_MainModule * __this, ParticleSystem_MinMaxCurve value, MethodInfo * method)); +DO_APP_FUNC(0x02DA97E0, float, ParticleSystem_MainModule_get_startDelayMultiplier, (ParticleSystem_MainModule * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DA9830, void, ParticleSystem_MainModule_set_startDelayMultiplier, (ParticleSystem_MainModule * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02DA9890, ParticleSystem_MinMaxCurve, ParticleSystem_MainModule_get_startLifetime, (ParticleSystem_MainModule * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DA9900, void, ParticleSystem_MainModule_set_startLifetime, (ParticleSystem_MainModule * __this, ParticleSystem_MinMaxCurve value, MethodInfo * method)); +DO_APP_FUNC(0x02DA9960, float, ParticleSystem_MainModule_get_startLifetimeMultiplier, (ParticleSystem_MainModule * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DA99B0, void, ParticleSystem_MainModule_set_startLifetimeMultiplier, (ParticleSystem_MainModule * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02DA9A10, void, ParticleSystem_MainModule_set_startSpeed, (ParticleSystem_MainModule * __this, ParticleSystem_MinMaxCurve value, MethodInfo * method)); +DO_APP_FUNC(0x02DA9A70, float, ParticleSystem_MainModule_get_startSpeedMultiplier, (ParticleSystem_MainModule * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DA9AC0, void, ParticleSystem_MainModule_set_startSpeedMultiplier, (ParticleSystem_MainModule * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02DA9B20, ParticleSystem_MinMaxCurve, ParticleSystem_MainModule_get_startSize, (ParticleSystem_MainModule * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DA9B90, void, ParticleSystem_MainModule_set_startSize, (ParticleSystem_MainModule * __this, ParticleSystem_MinMaxCurve value, MethodInfo * method)); +DO_APP_FUNC(0x02DA9BF0, float, ParticleSystem_MainModule_get_startSizeMultiplier, (ParticleSystem_MainModule * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DA9C40, void, ParticleSystem_MainModule_set_startSizeMultiplier, (ParticleSystem_MainModule * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02DA9CA0, void, ParticleSystem_MainModule_set_startRotation, (ParticleSystem_MainModule * __this, ParticleSystem_MinMaxCurve value, MethodInfo * method)); +DO_APP_FUNC(0x02DA9D00, float, ParticleSystem_MainModule_get_startRotationMultiplier, (ParticleSystem_MainModule * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DA9D50, void, ParticleSystem_MainModule_set_startRotationMultiplier, (ParticleSystem_MainModule * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02DA9DB0, float, ParticleSystem_MainModule_get_startRotationXMultiplier, (ParticleSystem_MainModule * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DA9E00, void, ParticleSystem_MainModule_set_startRotationXMultiplier, (ParticleSystem_MainModule * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02DA9E60, float, ParticleSystem_MainModule_get_startRotationYMultiplier, (ParticleSystem_MainModule * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DA9EB0, void, ParticleSystem_MainModule_set_startRotationYMultiplier, (ParticleSystem_MainModule * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02DA9F10, float, ParticleSystem_MainModule_get_startRotationZMultiplier, (ParticleSystem_MainModule * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DA9F60, void, ParticleSystem_MainModule_set_startRotationZMultiplier, (ParticleSystem_MainModule * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02DA9FC0, ParticleSystem_MinMaxGradient, ParticleSystem_MainModule_get_startColor, (ParticleSystem_MainModule * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DAA040, void, ParticleSystem_MainModule_set_startColor, (ParticleSystem_MainModule * __this, ParticleSystem_MinMaxGradient value, MethodInfo * method)); +DO_APP_FUNC(0x02DAA0A0, float, ParticleSystem_MainModule_get_gravityModifierMultiplier, (ParticleSystem_MainModule * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DAA0F0, void, ParticleSystem_MainModule_set_gravityModifierMultiplier, (ParticleSystem_MainModule * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02DAA150, ParticleSystemSimulationSpace__Enum, ParticleSystem_MainModule_get_simulationSpace, (ParticleSystem_MainModule * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DAA1A0, void, ParticleSystem_MainModule_set_simulationSpace, (ParticleSystem_MainModule * __this, ParticleSystemSimulationSpace__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x02DAA200, float, ParticleSystem_MainModule_get_simulationSpeed, (ParticleSystem_MainModule * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DAA250, void, ParticleSystem_MainModule_set_simulationSpeed, (ParticleSystem_MainModule * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02DAA2B0, ParticleSystemScalingMode__Enum, ParticleSystem_MainModule_get_scalingMode, (ParticleSystem_MainModule * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DAA300, void, ParticleSystem_MainModule_set_scalingMode, (ParticleSystem_MainModule * __this, ParticleSystemScalingMode__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x02DAA360, bool, ParticleSystem_MainModule_get_playOnAwake, (ParticleSystem_MainModule * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DAA3B0, void, ParticleSystem_MainModule_set_playOnAwake, (ParticleSystem_MainModule * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02DAA410, int32_t, ParticleSystem_MainModule_get_maxParticles, (ParticleSystem_MainModule * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DAA460, void, ParticleSystem_MainModule_set_maxParticles, (ParticleSystem_MainModule * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x02DA95B0, float, ParticleSystem_MainModule_get_duration_Injected, (ParticleSystem_MainModule * _unity_self, MethodInfo * method)); +DO_APP_FUNC(0x02DA9600, bool, ParticleSystem_MainModule_get_loop_Injected, (ParticleSystem_MainModule * _unity_self, MethodInfo * method)); +DO_APP_FUNC(0x02DA9650, void, ParticleSystem_MainModule_set_loop_Injected, (ParticleSystem_MainModule * _unity_self, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02DA96B0, void, ParticleSystem_MainModule_set_prewarm_Injected, (ParticleSystem_MainModule * _unity_self, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02DAA4C0, void, ParticleSystem_MainModule_get_startDelay_Injected, (ParticleSystem_MainModule * _unity_self, ParticleSystem_MinMaxCurve * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DAA520, void, ParticleSystem_MainModule_set_startDelay_Injected, (ParticleSystem_MainModule * _unity_self, ParticleSystem_MinMaxCurve * value, MethodInfo * method)); +DO_APP_FUNC(0x02DA97E0, float, ParticleSystem_MainModule_get_startDelayMultiplier_Injected, (ParticleSystem_MainModule * _unity_self, MethodInfo * method)); +DO_APP_FUNC(0x02DA9830, void, ParticleSystem_MainModule_set_startDelayMultiplier_Injected, (ParticleSystem_MainModule * _unity_self, float value, MethodInfo * method)); +DO_APP_FUNC(0x02DAA580, void, ParticleSystem_MainModule_get_startLifetime_Injected, (ParticleSystem_MainModule * _unity_self, ParticleSystem_MinMaxCurve * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DAA5E0, void, ParticleSystem_MainModule_set_startLifetime_Injected, (ParticleSystem_MainModule * _unity_self, ParticleSystem_MinMaxCurve * value, MethodInfo * method)); +DO_APP_FUNC(0x02DA9960, float, ParticleSystem_MainModule_get_startLifetimeMultiplier_Injected, (ParticleSystem_MainModule * _unity_self, MethodInfo * method)); +DO_APP_FUNC(0x02DA99B0, void, ParticleSystem_MainModule_set_startLifetimeMultiplier_Injected, (ParticleSystem_MainModule * _unity_self, float value, MethodInfo * method)); +DO_APP_FUNC(0x02DAA640, void, ParticleSystem_MainModule_set_startSpeed_Injected, (ParticleSystem_MainModule * _unity_self, ParticleSystem_MinMaxCurve * value, MethodInfo * method)); +DO_APP_FUNC(0x02DA9A70, float, ParticleSystem_MainModule_get_startSpeedMultiplier_Injected, (ParticleSystem_MainModule * _unity_self, MethodInfo * method)); +DO_APP_FUNC(0x02DA9AC0, void, ParticleSystem_MainModule_set_startSpeedMultiplier_Injected, (ParticleSystem_MainModule * _unity_self, float value, MethodInfo * method)); +DO_APP_FUNC(0x02DAA6A0, void, ParticleSystem_MainModule_get_startSize_Injected, (ParticleSystem_MainModule * _unity_self, ParticleSystem_MinMaxCurve * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DAA700, void, ParticleSystem_MainModule_set_startSize_Injected, (ParticleSystem_MainModule * _unity_self, ParticleSystem_MinMaxCurve * value, MethodInfo * method)); +DO_APP_FUNC(0x02DA9BF0, float, ParticleSystem_MainModule_get_startSizeMultiplier_Injected, (ParticleSystem_MainModule * _unity_self, MethodInfo * method)); +DO_APP_FUNC(0x02DA9C40, void, ParticleSystem_MainModule_set_startSizeMultiplier_Injected, (ParticleSystem_MainModule * _unity_self, float value, MethodInfo * method)); +DO_APP_FUNC(0x02DAA760, void, ParticleSystem_MainModule_set_startRotation_Injected, (ParticleSystem_MainModule * _unity_self, ParticleSystem_MinMaxCurve * value, MethodInfo * method)); +DO_APP_FUNC(0x02DA9D00, float, ParticleSystem_MainModule_get_startRotationMultiplier_Injected, (ParticleSystem_MainModule * _unity_self, MethodInfo * method)); +DO_APP_FUNC(0x02DA9D50, void, ParticleSystem_MainModule_set_startRotationMultiplier_Injected, (ParticleSystem_MainModule * _unity_self, float value, MethodInfo * method)); +DO_APP_FUNC(0x02DA9DB0, float, ParticleSystem_MainModule_get_startRotationXMultiplier_Injected, (ParticleSystem_MainModule * _unity_self, MethodInfo * method)); +DO_APP_FUNC(0x02DA9E00, void, ParticleSystem_MainModule_set_startRotationXMultiplier_Injected, (ParticleSystem_MainModule * _unity_self, float value, MethodInfo * method)); +DO_APP_FUNC(0x02DA9E60, float, ParticleSystem_MainModule_get_startRotationYMultiplier_Injected, (ParticleSystem_MainModule * _unity_self, MethodInfo * method)); +DO_APP_FUNC(0x02DA9EB0, void, ParticleSystem_MainModule_set_startRotationYMultiplier_Injected, (ParticleSystem_MainModule * _unity_self, float value, MethodInfo * method)); +DO_APP_FUNC(0x02DA9F10, float, ParticleSystem_MainModule_get_startRotationZMultiplier_Injected, (ParticleSystem_MainModule * _unity_self, MethodInfo * method)); +DO_APP_FUNC(0x02DA9F60, void, ParticleSystem_MainModule_set_startRotationZMultiplier_Injected, (ParticleSystem_MainModule * _unity_self, float value, MethodInfo * method)); +DO_APP_FUNC(0x02DAA7C0, void, ParticleSystem_MainModule_get_startColor_Injected, (ParticleSystem_MainModule * _unity_self, ParticleSystem_MinMaxGradient * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DAA820, void, ParticleSystem_MainModule_set_startColor_Injected, (ParticleSystem_MainModule * _unity_self, ParticleSystem_MinMaxGradient * value, MethodInfo * method)); +DO_APP_FUNC(0x02DAA0A0, float, ParticleSystem_MainModule_get_gravityModifierMultiplier_Injected, (ParticleSystem_MainModule * _unity_self, MethodInfo * method)); +DO_APP_FUNC(0x02DAA0F0, void, ParticleSystem_MainModule_set_gravityModifierMultiplier_Injected, (ParticleSystem_MainModule * _unity_self, float value, MethodInfo * method)); +DO_APP_FUNC(0x02DAA150, ParticleSystemSimulationSpace__Enum, ParticleSystem_MainModule_get_simulationSpace_Injected, (ParticleSystem_MainModule * _unity_self, MethodInfo * method)); +DO_APP_FUNC(0x02DAA1A0, void, ParticleSystem_MainModule_set_simulationSpace_Injected, (ParticleSystem_MainModule * _unity_self, ParticleSystemSimulationSpace__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x02DAA200, float, ParticleSystem_MainModule_get_simulationSpeed_Injected, (ParticleSystem_MainModule * _unity_self, MethodInfo * method)); +DO_APP_FUNC(0x02DAA250, void, ParticleSystem_MainModule_set_simulationSpeed_Injected, (ParticleSystem_MainModule * _unity_self, float value, MethodInfo * method)); +DO_APP_FUNC(0x02DAA2B0, ParticleSystemScalingMode__Enum, ParticleSystem_MainModule_get_scalingMode_Injected, (ParticleSystem_MainModule * _unity_self, MethodInfo * method)); +DO_APP_FUNC(0x02DAA300, void, ParticleSystem_MainModule_set_scalingMode_Injected, (ParticleSystem_MainModule * _unity_self, ParticleSystemScalingMode__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x02DAA360, bool, ParticleSystem_MainModule_get_playOnAwake_Injected, (ParticleSystem_MainModule * _unity_self, MethodInfo * method)); +DO_APP_FUNC(0x02DAA3B0, void, ParticleSystem_MainModule_set_playOnAwake_Injected, (ParticleSystem_MainModule * _unity_self, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02DAA410, int32_t, ParticleSystem_MainModule_get_maxParticles_Injected, (ParticleSystem_MainModule * _unity_self, MethodInfo * method)); +DO_APP_FUNC(0x02DAA460, void, ParticleSystem_MainModule_set_maxParticles_Injected, (ParticleSystem_MainModule * _unity_self, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, ParticleSystem_EmissionModule__ctor, (ParticleSystem_EmissionModule * __this, ParticleSystem * particleSystem, MethodInfo * method)); +DO_APP_FUNC(0x02DAA880, bool, ParticleSystem_EmissionModule_get_enabled, (ParticleSystem_EmissionModule * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DAA8D0, void, ParticleSystem_EmissionModule_set_enabled, (ParticleSystem_EmissionModule * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02DAA930, ParticleSystem_MinMaxCurve, ParticleSystem_EmissionModule_get_rateOverTime, (ParticleSystem_EmissionModule * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DAA9A0, void, ParticleSystem_EmissionModule_set_rateOverTime, (ParticleSystem_EmissionModule * __this, ParticleSystem_MinMaxCurve value, MethodInfo * method)); +DO_APP_FUNC(0x02DAAA00, float, ParticleSystem_EmissionModule_get_rateOverTimeMultiplier, (ParticleSystem_EmissionModule * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DAAA50, void, ParticleSystem_EmissionModule_set_rateOverTimeMultiplier, (ParticleSystem_EmissionModule * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02DAAAB0, void, ParticleSystem_EmissionModule_SetBurst, (ParticleSystem_EmissionModule * __this, int32_t index, ParticleSystem_Burst burst, MethodInfo * method)); +DO_APP_FUNC(0x02DAAB20, ParticleSystem_Burst, ParticleSystem_EmissionModule_GetBurst, (ParticleSystem_EmissionModule * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x02DAA880, bool, ParticleSystem_EmissionModule_get_enabled_Injected, (ParticleSystem_EmissionModule * _unity_self, MethodInfo * method)); +DO_APP_FUNC(0x02DAA8D0, void, ParticleSystem_EmissionModule_set_enabled_Injected, (ParticleSystem_EmissionModule * _unity_self, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02DAABB0, void, ParticleSystem_EmissionModule_get_rateOverTime_Injected, (ParticleSystem_EmissionModule * _unity_self, ParticleSystem_MinMaxCurve * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DAAC10, void, ParticleSystem_EmissionModule_set_rateOverTime_Injected, (ParticleSystem_EmissionModule * _unity_self, ParticleSystem_MinMaxCurve * value, MethodInfo * method)); +DO_APP_FUNC(0x02DAAA00, float, ParticleSystem_EmissionModule_get_rateOverTimeMultiplier_Injected, (ParticleSystem_EmissionModule * _unity_self, MethodInfo * method)); +DO_APP_FUNC(0x02DAAA50, void, ParticleSystem_EmissionModule_set_rateOverTimeMultiplier_Injected, (ParticleSystem_EmissionModule * _unity_self, float value, MethodInfo * method)); +DO_APP_FUNC(0x02DAAC70, void, ParticleSystem_EmissionModule_SetBurst_Injected, (ParticleSystem_EmissionModule * _unity_self, int32_t index, ParticleSystem_Burst * burst, MethodInfo * method)); +DO_APP_FUNC(0x02DAACE0, void, ParticleSystem_EmissionModule_GetBurst_Injected, (ParticleSystem_EmissionModule * _unity_self, int32_t index, ParticleSystem_Burst * ret, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, ParticleSystem_ShapeModule__ctor, (ParticleSystem_ShapeModule * __this, ParticleSystem * particleSystem, MethodInfo * method)); +DO_APP_FUNC(0x02DAAD50, void, ParticleSystem_ShapeModule_set_shapeType, (ParticleSystem_ShapeModule * __this, ParticleSystemShapeType__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x02DAADB0, void, ParticleSystem_ShapeModule_set_radius, (ParticleSystem_ShapeModule * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02DAAE10, void, ParticleSystem_ShapeModule_set_angle, (ParticleSystem_ShapeModule * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02DAAE70, void, ParticleSystem_ShapeModule_set_length, (ParticleSystem_ShapeModule * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02DAAED0, void, ParticleSystem_ShapeModule_set_position, (ParticleSystem_ShapeModule * __this, Vector3 value, MethodInfo * method)); +DO_APP_FUNC(0x02DAAF30, void, ParticleSystem_ShapeModule_set_rotation, (ParticleSystem_ShapeModule * __this, Vector3 value, MethodInfo * method)); +DO_APP_FUNC(0x02DAAF90, void, ParticleSystem_ShapeModule_set_scale, (ParticleSystem_ShapeModule * __this, Vector3 value, MethodInfo * method)); +DO_APP_FUNC(0x02DAAD50, void, ParticleSystem_ShapeModule_set_shapeType_Injected, (ParticleSystem_ShapeModule * _unity_self, ParticleSystemShapeType__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x02DAADB0, void, ParticleSystem_ShapeModule_set_radius_Injected, (ParticleSystem_ShapeModule * _unity_self, float value, MethodInfo * method)); +DO_APP_FUNC(0x02DAAE10, void, ParticleSystem_ShapeModule_set_angle_Injected, (ParticleSystem_ShapeModule * _unity_self, float value, MethodInfo * method)); +DO_APP_FUNC(0x02DAAE70, void, ParticleSystem_ShapeModule_set_length_Injected, (ParticleSystem_ShapeModule * _unity_self, float value, MethodInfo * method)); +DO_APP_FUNC(0x02DAAFF0, void, ParticleSystem_ShapeModule_set_position_Injected, (ParticleSystem_ShapeModule * _unity_self, Vector3 * value, MethodInfo * method)); +DO_APP_FUNC(0x02DAB050, void, ParticleSystem_ShapeModule_set_rotation_Injected, (ParticleSystem_ShapeModule * _unity_self, Vector3 * value, MethodInfo * method)); +DO_APP_FUNC(0x02DAB0B0, void, ParticleSystem_ShapeModule_set_scale_Injected, (ParticleSystem_ShapeModule * _unity_self, Vector3 * value, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, ParticleSystem_CollisionModule__ctor, (ParticleSystem_CollisionModule * __this, ParticleSystem * particleSystem, MethodInfo * method)); +DO_APP_FUNC(0x02DAB110, bool, ParticleSystem_CollisionModule_get_enabled, (ParticleSystem_CollisionModule * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DAB160, LayerMask, ParticleSystem_CollisionModule_get_collidesWith, (ParticleSystem_CollisionModule * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DAB1C0, bool, ParticleSystem_CollisionModule_get_sendCollisionMessages, (ParticleSystem_CollisionModule * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DAB210, float, ParticleSystem_CollisionModule_get_colliderForce, (ParticleSystem_CollisionModule * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DAB110, bool, ParticleSystem_CollisionModule_get_enabled_Injected, (ParticleSystem_CollisionModule * _unity_self, MethodInfo * method)); +DO_APP_FUNC(0x02DAB260, void, ParticleSystem_CollisionModule_get_collidesWith_Injected, (ParticleSystem_CollisionModule * _unity_self, LayerMask * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DAB1C0, bool, ParticleSystem_CollisionModule_get_sendCollisionMessages_Injected, (ParticleSystem_CollisionModule * _unity_self, MethodInfo * method)); +DO_APP_FUNC(0x02DAB210, float, ParticleSystem_CollisionModule_get_colliderForce_Injected, (ParticleSystem_CollisionModule * _unity_self, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, ParticleSystem_TriggerModule__ctor, (ParticleSystem_TriggerModule * __this, ParticleSystem * particleSystem, MethodInfo * method)); +DO_APP_FUNC(0x02DAB2C0, void, ParticleSystem_TriggerModule_set_enabled, (ParticleSystem_TriggerModule * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02DAB320, void, ParticleSystem_TriggerModule_AddCollider, (ParticleSystem_TriggerModule * __this, Component * collider, MethodInfo * method)); +DO_APP_FUNC(0x02DAB380, int32_t, ParticleSystem_TriggerModule_get_colliderCount, (ParticleSystem_TriggerModule * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DAB2C0, void, ParticleSystem_TriggerModule_set_enabled_Injected, (ParticleSystem_TriggerModule * _unity_self, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02DAB320, void, ParticleSystem_TriggerModule_AddCollider_Injected, (ParticleSystem_TriggerModule * _unity_self, Component * collider, MethodInfo * method)); +DO_APP_FUNC(0x02DAB380, int32_t, ParticleSystem_TriggerModule_get_colliderCount_Injected, (ParticleSystem_TriggerModule * _unity_self, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, ParticleSystem_SubEmittersModule__ctor, (ParticleSystem_SubEmittersModule * __this, ParticleSystem * particleSystem, MethodInfo * method)); +DO_APP_FUNC(0x02DAB3D0, int32_t, ParticleSystem_SubEmittersModule_get_subEmittersCount, (ParticleSystem_SubEmittersModule * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DAB420, ParticleSystem *, ParticleSystem_SubEmittersModule_GetSubEmitterSystem, (ParticleSystem_SubEmittersModule * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x02DAB3D0, int32_t, ParticleSystem_SubEmittersModule_get_subEmittersCount_Injected, (ParticleSystem_SubEmittersModule * _unity_self, MethodInfo * method)); +DO_APP_FUNC(0x02DAB420, ParticleSystem *, ParticleSystem_SubEmittersModule_GetSubEmitterSystem_Injected, (ParticleSystem_SubEmittersModule * _unity_self, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x02DAB480, bool, ParticleSystem_TextureSheetAnimationModule_get_useRandomRow, (ParticleSystem_TextureSheetAnimationModule * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, ParticleSystem_TextureSheetAnimationModule__ctor, (ParticleSystem_TextureSheetAnimationModule * __this, ParticleSystem * particleSystem, MethodInfo * method)); +DO_APP_FUNC(0x02DAB4E0, bool, ParticleSystem_TextureSheetAnimationModule_get_enabled, (ParticleSystem_TextureSheetAnimationModule * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DAB530, int32_t, ParticleSystem_TextureSheetAnimationModule_get_numTilesX, (ParticleSystem_TextureSheetAnimationModule * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DAB580, int32_t, ParticleSystem_TextureSheetAnimationModule_get_numTilesY, (ParticleSystem_TextureSheetAnimationModule * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DAB5D0, ParticleSystemAnimationType__Enum, ParticleSystem_TextureSheetAnimationModule_get_animation, (ParticleSystem_TextureSheetAnimationModule * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DAB620, ParticleSystemAnimationRowMode__Enum, ParticleSystem_TextureSheetAnimationModule_get_rowMode, (ParticleSystem_TextureSheetAnimationModule * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DAB670, ParticleSystem_MinMaxCurve, ParticleSystem_TextureSheetAnimationModule_get_frameOverTime, (ParticleSystem_TextureSheetAnimationModule * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DAB6E0, int32_t, ParticleSystem_TextureSheetAnimationModule_get_cycleCount, (ParticleSystem_TextureSheetAnimationModule * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DAB730, int32_t, ParticleSystem_TextureSheetAnimationModule_get_rowIndex, (ParticleSystem_TextureSheetAnimationModule * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DAB4E0, bool, ParticleSystem_TextureSheetAnimationModule_get_enabled_Injected, (ParticleSystem_TextureSheetAnimationModule * _unity_self, MethodInfo * method)); +DO_APP_FUNC(0x02DAB530, int32_t, ParticleSystem_TextureSheetAnimationModule_get_numTilesX_Injected, (ParticleSystem_TextureSheetAnimationModule * _unity_self, MethodInfo * method)); +DO_APP_FUNC(0x02DAB580, int32_t, ParticleSystem_TextureSheetAnimationModule_get_numTilesY_Injected, (ParticleSystem_TextureSheetAnimationModule * _unity_self, MethodInfo * method)); +DO_APP_FUNC(0x02DAB5D0, ParticleSystemAnimationType__Enum, ParticleSystem_TextureSheetAnimationModule_get_animation_Injected, (ParticleSystem_TextureSheetAnimationModule * _unity_self, MethodInfo * method)); +DO_APP_FUNC(0x02DAB620, ParticleSystemAnimationRowMode__Enum, ParticleSystem_TextureSheetAnimationModule_get_rowMode_Injected, (ParticleSystem_TextureSheetAnimationModule * _unity_self, MethodInfo * method)); +DO_APP_FUNC(0x02DAB780, void, ParticleSystem_TextureSheetAnimationModule_get_frameOverTime_Injected, (ParticleSystem_TextureSheetAnimationModule * _unity_self, ParticleSystem_MinMaxCurve * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DAB6E0, int32_t, ParticleSystem_TextureSheetAnimationModule_get_cycleCount_Injected, (ParticleSystem_TextureSheetAnimationModule * _unity_self, MethodInfo * method)); +DO_APP_FUNC(0x02DAB730, int32_t, ParticleSystem_TextureSheetAnimationModule_get_rowIndex_Injected, (ParticleSystem_TextureSheetAnimationModule * _unity_self, MethodInfo * method)); +DO_APP_FUNC(0x01C6C940, void, ParticleSystem_Particle_set_lifetime, (ParticleSystem_Particle * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02CB9C50, Vector3, ParticleSystem_Particle_get_position, (ParticleSystem_Particle * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C7A120, void, ParticleSystem_Particle_set_position, (ParticleSystem_Particle * __this, Vector3 value, MethodInfo * method)); +DO_APP_FUNC(0x01C7A130, void, ParticleSystem_Particle_set_velocity, (ParticleSystem_Particle * __this, Vector3 value, MethodInfo * method)); +DO_APP_FUNC(0x02DAB7E0, float, ParticleSystem_Particle_get_remainingLifetime, (ParticleSystem_Particle * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C6C940, void, ParticleSystem_Particle_set_remainingLifetime, (ParticleSystem_Particle * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02DAB7F0, float, ParticleSystem_Particle_get_startLifetime, (ParticleSystem_Particle * __this, MethodInfo * method)); +DO_APP_FUNC(0x01D83B80, void, ParticleSystem_Particle_set_startLifetime, (ParticleSystem_Particle * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x01BD11E0, void, ParticleSystem_Particle_set_startColor, (ParticleSystem_Particle * __this, Color32 value, MethodInfo * method)); +DO_APP_FUNC(0x02DAB800, uint32_t, ParticleSystem_Particle_get_randomSeed, (ParticleSystem_Particle * __this, MethodInfo * method)); +DO_APP_FUNC(0x00BD1C10, void, ParticleSystem_Particle_set_randomSeed, (ParticleSystem_Particle * __this, uint32_t value, MethodInfo * method)); +DO_APP_FUNC(0x02DAB810, void, ParticleSystem_Particle_set_startSize, (ParticleSystem_Particle * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02DAB830, float, ParticleSystem_Particle_get_rotation, (ParticleSystem_Particle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DAB840, Vector3, ParticleSystem_Particle_get_rotation3D, (ParticleSystem_Particle * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DAB880, void, ParticleSystem_Particle_set_rotation3D, (ParticleSystem_Particle * __this, Vector3 value, MethodInfo * method)); +DO_APP_FUNC(0x02DAB8C0, void, ParticleSystem_Particle_set_angularVelocity3D, (ParticleSystem_Particle * __this, Vector3 value, MethodInfo * method)); +DO_APP_FUNC(0x02DAB900, float, ParticleSystem_Particle_GetCurrentSize, (ParticleSystem_Particle * __this, ParticleSystem * system, MethodInfo * method)); +DO_APP_FUNC(0x02DAB970, Color32, ParticleSystem_Particle_GetCurrentColor, (ParticleSystem_Particle * __this, ParticleSystem * system, MethodInfo * method)); +DO_APP_FUNC(0x02DAB9F0, ParticleSystem_MinMaxCurve, ParticleSystem_Burst_get_count, (ParticleSystem_Burst * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DABA10, void, ParticleSystem_Burst_set_count, (ParticleSystem_Burst * __this, ParticleSystem_MinMaxCurve value, MethodInfo * method)); +DO_APP_FUNC(0x02DABA70, void, ParticleSystem_MinMaxCurve__ctor, (ParticleSystem_MinMaxCurve * __this, float constant, MethodInfo * method)); +DO_APP_FUNC(0x02B78450, ParticleSystemCurveMode__Enum, ParticleSystem_MinMaxCurve_get_mode, (ParticleSystem_MinMaxCurve * __this, MethodInfo * method)); +DO_APP_FUNC(0x00959BA0, void, ParticleSystem_MinMaxCurve_set_mode, (ParticleSystem_MinMaxCurve * __this, ParticleSystemCurveMode__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x02D66790, AnimationCurve *, ParticleSystem_MinMaxCurve_get_curveMin, (ParticleSystem_MinMaxCurve * __this, MethodInfo * method)); +DO_APP_FUNC(0x003CCB90, void, ParticleSystem_MinMaxCurve_set_constantMax, (ParticleSystem_MinMaxCurve * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x003CB2B0, void, ParticleSystem_MinMaxCurve_set_constantMin, (ParticleSystem_MinMaxCurve * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02DA1C10, float, ParticleSystem_MinMaxCurve_get_constant, (ParticleSystem_MinMaxCurve * __this, MethodInfo * method)); +DO_APP_FUNC(0x003CCB90, void, ParticleSystem_MinMaxCurve_set_constant, (ParticleSystem_MinMaxCurve * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x015C0B20, AnimationCurve *, ParticleSystem_MinMaxCurve_get_curve, (ParticleSystem_MinMaxCurve * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DABB30, float, ParticleSystem_MinMaxCurve_Evaluate, (ParticleSystem_MinMaxCurve * __this, float time, MethodInfo * method)); +DO_APP_FUNC(0x02DABB50, float, ParticleSystem_MinMaxCurve_Evaluate_1, (ParticleSystem_MinMaxCurve * __this, float time, float lerpFactor, MethodInfo * method)); DO_APP_FUNC(0x02DABC70, ParticleSystem_MinMaxCurve, ParticleSystem_MinMaxCurve_op_Implicit, (float constant, MethodInfo * method)); -DO_APP_FUNC(0x02DABCC0, void, ParticleSystem_MinMaxGradient__ctor, (ParticleSystem_MinMaxGradient__Boxed * __this, Color color, MethodInfo * method)); -DO_APP_FUNC(0x02DABDA0, void, ParticleSystem_MinMaxGradient__ctor_1, (ParticleSystem_MinMaxGradient__Boxed * __this, Gradient * gradient, MethodInfo * method)); -DO_APP_FUNC(0x02DABE70, Color, ParticleSystem_MinMaxGradient_get_color, (ParticleSystem_MinMaxGradient__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DABCC0, void, ParticleSystem_MinMaxGradient__ctor, (ParticleSystem_MinMaxGradient * __this, Color color, MethodInfo * method)); +DO_APP_FUNC(0x02DABDA0, void, ParticleSystem_MinMaxGradient__ctor_1, (ParticleSystem_MinMaxGradient * __this, Gradient * gradient, MethodInfo * method)); +DO_APP_FUNC(0x02DABE70, Color, ParticleSystem_MinMaxGradient_get_color, (ParticleSystem_MinMaxGradient * __this, MethodInfo * method)); DO_APP_FUNC(0x02DABE80, ParticleSystem_MinMaxGradient, ParticleSystem_MinMaxGradient_op_Implicit, (Color color, MethodInfo * method)); DO_APP_FUNC(0x02DABFB0, ParticleSystem_MinMaxGradient, ParticleSystem_MinMaxGradient_op_Implicit_1, (Gradient * gradient, MethodInfo * method)); -DO_APP_FUNC(0x02DAC020, void, ParticleSystem_Trails_Allocate, (ParticleSystem_Trails__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, ParticleSystem_VelocityOverLifetimeModule__ctor, (ParticleSystem_VelocityOverLifetimeModule__Boxed * __this, ParticleSystem * particleSystem, MethodInfo * method)); -DO_APP_FUNC(0x02DAC280, ParticleSystem_MinMaxCurve, ParticleSystem_VelocityOverLifetimeModule_get_x, (ParticleSystem_VelocityOverLifetimeModule__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DAC2F0, void, ParticleSystem_VelocityOverLifetimeModule_set_x, (ParticleSystem_VelocityOverLifetimeModule__Boxed * __this, ParticleSystem_MinMaxCurve value, MethodInfo * method)); -DO_APP_FUNC(0x02DAC350, ParticleSystem_MinMaxCurve, ParticleSystem_VelocityOverLifetimeModule_get_y, (ParticleSystem_VelocityOverLifetimeModule__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DAC3C0, void, ParticleSystem_VelocityOverLifetimeModule_set_y, (ParticleSystem_VelocityOverLifetimeModule__Boxed * __this, ParticleSystem_MinMaxCurve value, MethodInfo * method)); -DO_APP_FUNC(0x02DAC420, ParticleSystem_MinMaxCurve, ParticleSystem_VelocityOverLifetimeModule_get_z, (ParticleSystem_VelocityOverLifetimeModule__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DAC490, void, ParticleSystem_VelocityOverLifetimeModule_set_z, (ParticleSystem_VelocityOverLifetimeModule__Boxed * __this, ParticleSystem_MinMaxCurve value, MethodInfo * method)); -DO_APP_FUNC(0x02DAC4F0, void, ParticleSystem_VelocityOverLifetimeModule_get_x_Injected, (ParticleSystem_VelocityOverLifetimeModule _unity_self, ParticleSystem_MinMaxCurve ret, MethodInfo * method)); -DO_APP_FUNC(0x02DAC550, void, ParticleSystem_VelocityOverLifetimeModule_set_x_Injected, (ParticleSystem_VelocityOverLifetimeModule _unity_self, ParticleSystem_MinMaxCurve value, MethodInfo * method)); -DO_APP_FUNC(0x02DAC5B0, void, ParticleSystem_VelocityOverLifetimeModule_get_y_Injected, (ParticleSystem_VelocityOverLifetimeModule _unity_self, ParticleSystem_MinMaxCurve ret, MethodInfo * method)); -DO_APP_FUNC(0x02DAC610, void, ParticleSystem_VelocityOverLifetimeModule_set_y_Injected, (ParticleSystem_VelocityOverLifetimeModule _unity_self, ParticleSystem_MinMaxCurve value, MethodInfo * method)); -DO_APP_FUNC(0x02DAC670, void, ParticleSystem_VelocityOverLifetimeModule_get_z_Injected, (ParticleSystem_VelocityOverLifetimeModule _unity_self, ParticleSystem_MinMaxCurve ret, MethodInfo * method)); -DO_APP_FUNC(0x02DAC6D0, void, ParticleSystem_VelocityOverLifetimeModule_set_z_Injected, (ParticleSystem_VelocityOverLifetimeModule _unity_self, ParticleSystem_MinMaxCurve value, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, ParticleSystem_LimitVelocityOverLifetimeModule__ctor, (ParticleSystem_LimitVelocityOverLifetimeModule__Boxed * __this, ParticleSystem * particleSystem, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, ParticleSystem_InheritVelocityModule__ctor, (ParticleSystem_InheritVelocityModule__Boxed * __this, ParticleSystem * particleSystem, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, ParticleSystem_LifetimeByEmitterSpeedModule__ctor, (ParticleSystem_LifetimeByEmitterSpeedModule__Boxed * __this, ParticleSystem * particleSystem, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, ParticleSystem_ForceOverLifetimeModule__ctor, (ParticleSystem_ForceOverLifetimeModule__Boxed * __this, ParticleSystem * particleSystem, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, ParticleSystem_ColorOverLifetimeModule__ctor, (ParticleSystem_ColorOverLifetimeModule__Boxed * __this, ParticleSystem * particleSystem, MethodInfo * method)); -DO_APP_FUNC(0x02DAC730, void, ParticleSystem_ColorOverLifetimeModule_set_color, (ParticleSystem_ColorOverLifetimeModule__Boxed * __this, ParticleSystem_MinMaxGradient value, MethodInfo * method)); -DO_APP_FUNC(0x02DAC790, void, ParticleSystem_ColorOverLifetimeModule_set_color_Injected, (ParticleSystem_ColorOverLifetimeModule _unity_self, ParticleSystem_MinMaxGradient value, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, ParticleSystem_ColorBySpeedModule__ctor, (ParticleSystem_ColorBySpeedModule__Boxed * __this, ParticleSystem * particleSystem, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, ParticleSystem_SizeOverLifetimeModule__ctor, (ParticleSystem_SizeOverLifetimeModule__Boxed * __this, ParticleSystem * particleSystem, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, ParticleSystem_SizeBySpeedModule__ctor, (ParticleSystem_SizeBySpeedModule__Boxed * __this, ParticleSystem * particleSystem, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, ParticleSystem_RotationOverLifetimeModule__ctor, (ParticleSystem_RotationOverLifetimeModule__Boxed * __this, ParticleSystem * particleSystem, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, ParticleSystem_RotationBySpeedModule__ctor, (ParticleSystem_RotationBySpeedModule__Boxed * __this, ParticleSystem * particleSystem, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, ParticleSystem_ExternalForcesModule__ctor, (ParticleSystem_ExternalForcesModule__Boxed * __this, ParticleSystem * particleSystem, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, ParticleSystem_NoiseModule__ctor, (ParticleSystem_NoiseModule__Boxed * __this, ParticleSystem * particleSystem, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, ParticleSystem_LightsModule__ctor, (ParticleSystem_LightsModule__Boxed * __this, ParticleSystem * particleSystem, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, ParticleSystem_TrailModule__ctor, (ParticleSystem_TrailModule__Boxed * __this, ParticleSystem * particleSystem, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, ParticleSystem_CustomDataModule__ctor, (ParticleSystem_CustomDataModule__Boxed * __this, ParticleSystem * particleSystem, MethodInfo * method)); +DO_APP_FUNC(0x02DAC020, void, ParticleSystem_Trails_Allocate, (ParticleSystem_Trails * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, ParticleSystem_VelocityOverLifetimeModule__ctor, (ParticleSystem_VelocityOverLifetimeModule * __this, ParticleSystem * particleSystem, MethodInfo * method)); +DO_APP_FUNC(0x02DAC280, ParticleSystem_MinMaxCurve, ParticleSystem_VelocityOverLifetimeModule_get_x, (ParticleSystem_VelocityOverLifetimeModule * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DAC2F0, void, ParticleSystem_VelocityOverLifetimeModule_set_x, (ParticleSystem_VelocityOverLifetimeModule * __this, ParticleSystem_MinMaxCurve value, MethodInfo * method)); +DO_APP_FUNC(0x02DAC350, ParticleSystem_MinMaxCurve, ParticleSystem_VelocityOverLifetimeModule_get_y, (ParticleSystem_VelocityOverLifetimeModule * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DAC3C0, void, ParticleSystem_VelocityOverLifetimeModule_set_y, (ParticleSystem_VelocityOverLifetimeModule * __this, ParticleSystem_MinMaxCurve value, MethodInfo * method)); +DO_APP_FUNC(0x02DAC420, ParticleSystem_MinMaxCurve, ParticleSystem_VelocityOverLifetimeModule_get_z, (ParticleSystem_VelocityOverLifetimeModule * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DAC490, void, ParticleSystem_VelocityOverLifetimeModule_set_z, (ParticleSystem_VelocityOverLifetimeModule * __this, ParticleSystem_MinMaxCurve value, MethodInfo * method)); +DO_APP_FUNC(0x02DAC4F0, void, ParticleSystem_VelocityOverLifetimeModule_get_x_Injected, (ParticleSystem_VelocityOverLifetimeModule * _unity_self, ParticleSystem_MinMaxCurve * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DAC550, void, ParticleSystem_VelocityOverLifetimeModule_set_x_Injected, (ParticleSystem_VelocityOverLifetimeModule * _unity_self, ParticleSystem_MinMaxCurve * value, MethodInfo * method)); +DO_APP_FUNC(0x02DAC5B0, void, ParticleSystem_VelocityOverLifetimeModule_get_y_Injected, (ParticleSystem_VelocityOverLifetimeModule * _unity_self, ParticleSystem_MinMaxCurve * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DAC610, void, ParticleSystem_VelocityOverLifetimeModule_set_y_Injected, (ParticleSystem_VelocityOverLifetimeModule * _unity_self, ParticleSystem_MinMaxCurve * value, MethodInfo * method)); +DO_APP_FUNC(0x02DAC670, void, ParticleSystem_VelocityOverLifetimeModule_get_z_Injected, (ParticleSystem_VelocityOverLifetimeModule * _unity_self, ParticleSystem_MinMaxCurve * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DAC6D0, void, ParticleSystem_VelocityOverLifetimeModule_set_z_Injected, (ParticleSystem_VelocityOverLifetimeModule * _unity_self, ParticleSystem_MinMaxCurve * value, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, ParticleSystem_LimitVelocityOverLifetimeModule__ctor, (ParticleSystem_LimitVelocityOverLifetimeModule * __this, ParticleSystem * particleSystem, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, ParticleSystem_InheritVelocityModule__ctor, (ParticleSystem_InheritVelocityModule * __this, ParticleSystem * particleSystem, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, ParticleSystem_LifetimeByEmitterSpeedModule__ctor, (ParticleSystem_LifetimeByEmitterSpeedModule * __this, ParticleSystem * particleSystem, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, ParticleSystem_ForceOverLifetimeModule__ctor, (ParticleSystem_ForceOverLifetimeModule * __this, ParticleSystem * particleSystem, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, ParticleSystem_ColorOverLifetimeModule__ctor, (ParticleSystem_ColorOverLifetimeModule * __this, ParticleSystem * particleSystem, MethodInfo * method)); +DO_APP_FUNC(0x02DAC730, void, ParticleSystem_ColorOverLifetimeModule_set_color, (ParticleSystem_ColorOverLifetimeModule * __this, ParticleSystem_MinMaxGradient value, MethodInfo * method)); +DO_APP_FUNC(0x02DAC790, void, ParticleSystem_ColorOverLifetimeModule_set_color_Injected, (ParticleSystem_ColorOverLifetimeModule * _unity_self, ParticleSystem_MinMaxGradient * value, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, ParticleSystem_ColorBySpeedModule__ctor, (ParticleSystem_ColorBySpeedModule * __this, ParticleSystem * particleSystem, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, ParticleSystem_SizeOverLifetimeModule__ctor, (ParticleSystem_SizeOverLifetimeModule * __this, ParticleSystem * particleSystem, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, ParticleSystem_SizeBySpeedModule__ctor, (ParticleSystem_SizeBySpeedModule * __this, ParticleSystem * particleSystem, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, ParticleSystem_RotationOverLifetimeModule__ctor, (ParticleSystem_RotationOverLifetimeModule * __this, ParticleSystem * particleSystem, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, ParticleSystem_RotationBySpeedModule__ctor, (ParticleSystem_RotationBySpeedModule * __this, ParticleSystem * particleSystem, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, ParticleSystem_ExternalForcesModule__ctor, (ParticleSystem_ExternalForcesModule * __this, ParticleSystem * particleSystem, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, ParticleSystem_NoiseModule__ctor, (ParticleSystem_NoiseModule * __this, ParticleSystem * particleSystem, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, ParticleSystem_LightsModule__ctor, (ParticleSystem_LightsModule * __this, ParticleSystem * particleSystem, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, ParticleSystem_TrailModule__ctor, (ParticleSystem_TrailModule * __this, ParticleSystem * particleSystem, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, ParticleSystem_CustomDataModule__ctor, (ParticleSystem_CustomDataModule * __this, ParticleSystem * particleSystem, MethodInfo * method)); DO_APP_FUNC(0x02DAC7F0, int32_t, ParticlePhysicsExtensions_GetCollisionEvents, (ParticleSystem * ps, GameObject * go, List_1_UnityEngine_ParticleCollisionEvent_ * collisionEvents, MethodInfo * method)); DO_APP_FUNC(0x02DAC860, void, ParticleSystemRenderer_EnableVertexStreams, (ParticleSystemRenderer * __this, ParticleSystemVertexStreams__Enum streams, MethodInfo * method)); DO_APP_FUNC(0x02DAC870, void, ParticleSystemRenderer_DisableVertexStreams, (ParticleSystemRenderer * __this, ParticleSystemVertexStreams__Enum streams, MethodInfo * method)); @@ -112890,14 +125361,14 @@ DO_APP_FUNC(0x02DAE7B0, int32_t, ParticleSystemRenderer_get_activeVertexStreamsC DO_APP_FUNC(0x02DAE800, void, ParticleSystemRenderer_SetActiveVertexStreams, (ParticleSystemRenderer * __this, List_1_UnityEngine_ParticleSystemVertexStream_ * streams, MethodInfo * method)); DO_APP_FUNC(0x02DAE860, void, ParticleSystemRenderer_GetActiveVertexStreams, (ParticleSystemRenderer * __this, List_1_UnityEngine_ParticleSystemVertexStream_ * streams, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, ParticleSystemRenderer__ctor, (ParticleSystemRenderer * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DAE8C0, void, ParticleSystemRenderer_get_pivot_Injected, (ParticleSystemRenderer * __this, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02DAE920, void, ParticleSystemRenderer_set_pivot_Injected, (ParticleSystemRenderer * __this, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x02DAE980, void, ParticleSystemRenderer_get_flip_Injected, (ParticleSystemRenderer * __this, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02DAE9E0, void, ParticleSystemRenderer_set_flip_Injected, (ParticleSystemRenderer * __this, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x02CB9C50, Vector3, ParticleCollisionEvent_get_intersection, (ParticleCollisionEvent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CEB1F0, Vector3, ParticleCollisionEvent_get_normal, (ParticleCollisionEvent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DAEA40, Vector3, ParticleCollisionEvent_get_velocity, (ParticleCollisionEvent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DAEA60, Component *, ParticleCollisionEvent_get_colliderComponent, (ParticleCollisionEvent__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DAE8C0, void, ParticleSystemRenderer_get_pivot_Injected, (ParticleSystemRenderer * __this, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DAE920, void, ParticleSystemRenderer_set_pivot_Injected, (ParticleSystemRenderer * __this, Vector3 * value, MethodInfo * method)); +DO_APP_FUNC(0x02DAE980, void, ParticleSystemRenderer_get_flip_Injected, (ParticleSystemRenderer * __this, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DAE9E0, void, ParticleSystemRenderer_set_flip_Injected, (ParticleSystemRenderer * __this, Vector3 * value, MethodInfo * method)); +DO_APP_FUNC(0x02CB9C50, Vector3, ParticleCollisionEvent_get_intersection, (ParticleCollisionEvent * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CEB1F0, Vector3, ParticleCollisionEvent_get_normal, (ParticleCollisionEvent * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DAEA40, Vector3, ParticleCollisionEvent_get_velocity, (ParticleCollisionEvent * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DAEA60, Component *, ParticleCollisionEvent_get_colliderComponent, (ParticleCollisionEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x02DAEAB0, Component *, ParticleCollisionEvent_InstanceIDToColliderComponent, (int32_t instanceID, MethodInfo * method)); DO_APP_FUNC(0x02DAC7F0, int32_t, ParticleSystemExtensionsImpl_GetCollisionEvents, (ParticleSystem * ps, GameObject * go, List_1_UnityEngine_ParticleCollisionEvent_ * collisionEvents, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, EmbeddedAttribute_4__ctor, (EmbeddedAttribute_4 * __this, MethodInfo * method)); @@ -112970,6 +125441,7 @@ DO_APP_FUNC(0x02DC88A0, void, Terrain_Flush, (Terrain * __this, MethodInfo * met DO_APP_FUNC(0x02DC88F0, void, Terrain_RemoveTrees, (Terrain * __this, Vector2 position, float radius, int32_t prototypeIndex, MethodInfo * method)); DO_APP_FUNC(0x02DC8970, void, Terrain_SetSplatMaterialPropertyBlock, (Terrain * __this, MaterialPropertyBlock * properties, MethodInfo * method)); DO_APP_FUNC(0x02DC89D0, void, Terrain_GetSplatMaterialPropertyBlock, (Terrain * __this, MaterialPropertyBlock * dest, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E148, Terrain_GetSplatMaterialPropertyBlock__MethodInfo); DO_APP_FUNC(0x02DC8A90, void, Terrain_Internal_GetSplatMaterialPropertyBlock, (Terrain * __this, MaterialPropertyBlock * dest, MethodInfo * method)); DO_APP_FUNC(0x02DC8AF0, bool, Terrain_get_preserveTreePrototypeLayers, (Terrain * __this, MethodInfo * method)); DO_APP_FUNC(0x02DC8B40, void, Terrain_set_preserveTreePrototypeLayers, (Terrain * __this, bool value, MethodInfo * method)); @@ -113007,16 +125479,16 @@ DO_APP_FUNC(0x02DC9560, float, Terrain_get_legacyShininess, (Terrain * __this, M DO_APP_FUNC(0x003AE050, void, Terrain_set_legacyShininess, (Terrain * __this, float value, MethodInfo * method)); DO_APP_FUNC(0x02DC9570, void, Terrain_ApplyDelayedHeightmapModification, (Terrain * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, Terrain__ctor, (Terrain * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DC9610, void, Terrain_get_lightmapScaleOffset_Injected, (Terrain * __this, Vector4 ret, MethodInfo * method)); -DO_APP_FUNC(0x02DC9670, void, Terrain_set_lightmapScaleOffset_Injected, (Terrain * __this, Vector4 value, MethodInfo * method)); -DO_APP_FUNC(0x02DC96D0, void, Terrain_get_realtimeLightmapScaleOffset_Injected, (Terrain * __this, Vector4 ret, MethodInfo * method)); -DO_APP_FUNC(0x02DC9730, void, Terrain_set_realtimeLightmapScaleOffset_Injected, (Terrain * __this, Vector4 value, MethodInfo * method)); -DO_APP_FUNC(0x02DC9790, void, Terrain_get_patchBoundsMultiplier_Injected, (Terrain * __this, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02DC97F0, void, Terrain_set_patchBoundsMultiplier_Injected, (Terrain * __this, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x02DC9850, float, Terrain_SampleHeight_Injected, (Terrain * __this, Vector3 worldPosition, MethodInfo * method)); -DO_APP_FUNC(0x02DC98B0, void, Terrain_AddTreeInstance_Injected, (Terrain * __this, TreeInstance instance, MethodInfo * method)); -DO_APP_FUNC(0x02DC9910, void, Terrain_GetPosition_Injected, (Terrain * __this, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02DC9970, void, Terrain_RemoveTrees_Injected, (Terrain * __this, Vector2 position, float radius, int32_t prototypeIndex, MethodInfo * method)); +DO_APP_FUNC(0x02DC9610, void, Terrain_get_lightmapScaleOffset_Injected, (Terrain * __this, Vector4 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DC9670, void, Terrain_set_lightmapScaleOffset_Injected, (Terrain * __this, Vector4 * value, MethodInfo * method)); +DO_APP_FUNC(0x02DC96D0, void, Terrain_get_realtimeLightmapScaleOffset_Injected, (Terrain * __this, Vector4 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DC9730, void, Terrain_set_realtimeLightmapScaleOffset_Injected, (Terrain * __this, Vector4 * value, MethodInfo * method)); +DO_APP_FUNC(0x02DC9790, void, Terrain_get_patchBoundsMultiplier_Injected, (Terrain * __this, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DC97F0, void, Terrain_set_patchBoundsMultiplier_Injected, (Terrain * __this, Vector3 * value, MethodInfo * method)); +DO_APP_FUNC(0x02DC9850, float, Terrain_SampleHeight_Injected, (Terrain * __this, Vector3 * worldPosition, MethodInfo * method)); +DO_APP_FUNC(0x02DC98B0, void, Terrain_AddTreeInstance_Injected, (Terrain * __this, TreeInstance * instance, MethodInfo * method)); +DO_APP_FUNC(0x02DC9910, void, Terrain_GetPosition_Injected, (Terrain * __this, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DC9970, void, Terrain_RemoveTrees_Injected, (Terrain * __this, Vector2 * position, float radius, int32_t prototypeIndex, MethodInfo * method)); DO_APP_FUNC(0x02DC99F0, void, TerrainCallbacks_InvokeHeightmapChangedCallback, (TerrainData * terrainData, RectInt heightRegion, bool synched, MethodInfo * method)); DO_APP_FUNC(0x02DC9B20, void, TerrainCallbacks_InvokeTextureChangedCallback, (TerrainData * terrainData, String * textureName, RectInt texelRegion, bool synched, MethodInfo * method)); DO_APP_FUNC(0x02DC9C60, void, TerrainCallbacks_HeightmapChangedCallback__ctor, (TerrainCallbacks_HeightmapChangedCallback * __this, Object * object, void * method_1, MethodInfo * method)); @@ -113064,22 +125536,31 @@ DO_APP_FUNC(0x003AE050, void, TerrainData_set_thickness, (TerrainData * __this, DO_APP_FUNC(0x02DCB190, float, TerrainData_GetHeight, (TerrainData * __this, int32_t x, int32_t y, MethodInfo * method)); DO_APP_FUNC(0x02DCB200, float, TerrainData_GetInterpolatedHeight, (TerrainData * __this, float x, float y, MethodInfo * method)); DO_APP_FUNC(0x02DCB270, Single__Array_1 *, TerrainData_GetInterpolatedHeights, (TerrainData * __this, float xBase, float yBase, int32_t xCount, int32_t yCount, float xInterval, float yInterval, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1DED0, TerrainData_GetInterpolatedHeights__MethodInfo); DO_APP_FUNC(0x02DCB460, void, TerrainData_GetInterpolatedHeights_1, (TerrainData * __this, Single__Array_1 * results, int32_t resultXOffset, int32_t resultYOffset, float xBase, float yBase, int32_t xCount, int32_t yCount, float xInterval, float yInterval, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1DEB0, TerrainData_GetInterpolatedHeights_1__MethodInfo); DO_APP_FUNC(0x02DCB760, void, TerrainData_Internal_GetInterpolatedHeights, (TerrainData * __this, Single__Array_1 * results, int32_t resultXDimension, int32_t resultXOffset, int32_t resultYOffset, float xBase, float yBase, int32_t xCount, int32_t yCount, float xInterval, float yInterval, MethodInfo * method)); DO_APP_FUNC(0x02DCB7F0, Single__Array_1 *, TerrainData_GetHeights, (TerrainData * __this, int32_t xBase, int32_t yBase, int32_t width, int32_t height, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1DF30, TerrainData_GetHeights__MethodInfo); DO_APP_FUNC(0x02DCB920, Single__Array_1 *, TerrainData_Internal_GetHeights, (TerrainData * __this, int32_t xBase, int32_t yBase, int32_t width, int32_t height, MethodInfo * method)); DO_APP_FUNC(0x02DCB9A0, void, TerrainData_SetHeights, (TerrainData * __this, int32_t xBase, int32_t yBase, Single__Array_1 * heights, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1DF10, TerrainData_SetHeights__MethodInfo); DO_APP_FUNC(0x02DCBDD0, void, TerrainData_Internal_SetHeights, (TerrainData * __this, int32_t xBase, int32_t yBase, int32_t width, int32_t height, Single__Array_1 * heights, MethodInfo * method)); DO_APP_FUNC(0x02DCBE50, PatchExtents__Array *, TerrainData_GetPatchMinMaxHeights, (TerrainData * __this, MethodInfo * method)); DO_APP_FUNC(0x02DCBEA0, void, TerrainData_OverrideMinMaxPatchHeights, (TerrainData * __this, PatchExtents__Array * minMaxHeights, MethodInfo * method)); DO_APP_FUNC(0x02DCBF00, Single__Array *, TerrainData_GetMaximumHeightError, (TerrainData * __this, MethodInfo * method)); DO_APP_FUNC(0x02DCBF50, void, TerrainData_OverrideMaximumHeightError, (TerrainData * __this, Single__Array * maxError, MethodInfo * method)); DO_APP_FUNC(0x02DCBFB0, void, TerrainData_SetHeightsDelayLOD, (TerrainData * __this, int32_t xBase, int32_t yBase, Single__Array_1 * heights, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1DFD8, TerrainData_SetHeightsDelayLOD__MethodInfo); DO_APP_FUNC(0x02DCC410, void, TerrainData_Internal_SetHeightsDelayLOD, (TerrainData * __this, int32_t xBase, int32_t yBase, int32_t width, int32_t height, Single__Array_1 * heights, MethodInfo * method)); DO_APP_FUNC(0x02DCC490, bool, TerrainData_IsHole, (TerrainData * __this, int32_t x, int32_t y, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1DE10, TerrainData_IsHole__MethodInfo); DO_APP_FUNC(0x02DCC600, Boolean__Array_1 *, TerrainData_GetHoles, (TerrainData * __this, int32_t xBase, int32_t yBase, int32_t width, int32_t height, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1DE08, TerrainData_GetHoles__MethodInfo); DO_APP_FUNC(0x02DCC730, void, TerrainData_SetHoles, (TerrainData * __this, int32_t xBase, int32_t yBase, Boolean__Array_1 * holes, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1DDF0, TerrainData_SetHoles__MethodInfo); DO_APP_FUNC(0x02DCCC20, void, TerrainData_SetHolesDelayLOD, (TerrainData * __this, int32_t xBase, int32_t yBase, Boolean__Array_1 * holes, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1DDE8, TerrainData_SetHolesDelayLOD__MethodInfo); DO_APP_FUNC(0x02DCD0B0, void, TerrainData_Internal_SetHoles, (TerrainData * __this, int32_t xBase, int32_t yBase, int32_t width, int32_t height, Boolean__Array_1 * holes, MethodInfo * method)); DO_APP_FUNC(0x02DCD130, Boolean__Array_1 *, TerrainData_Internal_GetHoles, (TerrainData * __this, int32_t xBase, int32_t yBase, int32_t width, int32_t height, MethodInfo * method)); DO_APP_FUNC(0x02DCD1B0, bool, TerrainData_Internal_IsHole, (TerrainData * __this, int32_t x, int32_t y, MethodInfo * method)); @@ -113109,7 +125590,7 @@ DO_APP_FUNC(0x02DCE000, DetailPrototype__Array *, TerrainData_get_detailPrototyp DO_APP_FUNC(0x02DCE050, void, TerrainData_set_detailPrototypes, (TerrainData * __this, DetailPrototype__Array * value, MethodInfo * method)); DO_APP_FUNC(0x02DCE0B0, Int32__Array *, TerrainData_GetSupportedLayers, (TerrainData * __this, int32_t xBase, int32_t yBase, int32_t totalWidth, int32_t totalHeight, MethodInfo * method)); DO_APP_FUNC(0x02DCE130, Int32__Array_1 *, TerrainData_GetDetailLayer, (TerrainData * __this, int32_t xBase, int32_t yBase, int32_t width, int32_t height, int32_t layer, MethodInfo * method)); -DO_APP_FUNC(0x02DCE1B0, DetailInstanceTransform__Array *, TerrainData_ComputeDetailInstanceTransforms, (TerrainData * __this, int32_t patchX, int32_t patchY, int32_t layer, float density, Bounds bounds, MethodInfo * method)); +DO_APP_FUNC(0x02DCE1B0, DetailInstanceTransform__Array *, TerrainData_ComputeDetailInstanceTransforms, (TerrainData * __this, int32_t patchX, int32_t patchY, int32_t layer, float density, Bounds * bounds, MethodInfo * method)); DO_APP_FUNC(0x02DCE230, void, TerrainData_SetDetailLayer, (TerrainData * __this, int32_t xBase, int32_t yBase, int32_t layer, Int32__Array_1 * details, MethodInfo * method)); DO_APP_FUNC(0x02DCE350, void, TerrainData_Internal_SetDetailLayer, (TerrainData * __this, int32_t xBase, int32_t yBase, int32_t totalWidth, int32_t totalHeight, int32_t detailIndex, Int32__Array_1 * data, MethodInfo * method)); DO_APP_FUNC(0x02DCE3D0, TreeInstance__Array *, TerrainData_get_treeInstances, (TerrainData * __this, MethodInfo * method)); @@ -113117,6 +125598,7 @@ DO_APP_FUNC(0x02DCE420, void, TerrainData_set_treeInstances, (TerrainData * __th DO_APP_FUNC(0x02DCE3D0, TreeInstance__Array *, TerrainData_Internal_GetTreeInstances, (TerrainData * __this, MethodInfo * method)); DO_APP_FUNC(0x02DCE490, void, TerrainData_SetTreeInstances, (TerrainData * __this, TreeInstance__Array * instances, bool snapToHeightmap, MethodInfo * method)); DO_APP_FUNC(0x02DCE500, TreeInstance, TerrainData_GetTreeInstance, (TerrainData * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1DC50, TerrainData_GetTreeInstance__MethodInfo); DO_APP_FUNC(0x02DCE660, TreeInstance, TerrainData_Internal_GetTreeInstance, (TerrainData * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x02DCE6E0, void, TerrainData_SetTreeInstance, (TerrainData * __this, int32_t index, TreeInstance instance, MethodInfo * method)); DO_APP_FUNC(0x02DCE750, int32_t, TerrainData_get_treeInstanceCount, (TerrainData * __this, MethodInfo * method)); @@ -113128,6 +125610,7 @@ DO_APP_FUNC(0x02DCE910, bool, TerrainData_NeedUpgradeScaledTreePrototypes, (Terr DO_APP_FUNC(0x02DCE960, void, TerrainData_UpgradeScaledTreePrototype, (TerrainData * __this, MethodInfo * method)); DO_APP_FUNC(0x02DCE9B0, int32_t, TerrainData_get_alphamapLayers, (TerrainData * __this, MethodInfo * method)); DO_APP_FUNC(0x02DCEA00, Single__Array_2 *, TerrainData_GetAlphamaps, (TerrainData * __this, int32_t x, int32_t y, int32_t width, int32_t height, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1DCC8, TerrainData_GetAlphamaps__MethodInfo); DO_APP_FUNC(0x02DCEB00, Single__Array_2 *, TerrainData_Internal_GetAlphamaps, (TerrainData * __this, int32_t x, int32_t y, int32_t width, int32_t height, MethodInfo * method)); DO_APP_FUNC(0x02DCEB80, int32_t, TerrainData_get_alphamapResolution, (TerrainData * __this, MethodInfo * method)); DO_APP_FUNC(0x02DCEBD0, void, TerrainData_set_alphamapResolution, (TerrainData * __this, int32_t value, MethodInfo * method)); @@ -113141,6 +125624,7 @@ DO_APP_FUNC(0x02DCF130, void, TerrainData_set_baseMapResolution, (TerrainData * DO_APP_FUNC(0x02DCF0E0, int32_t, TerrainData_get_Internal_baseMapResolution, (TerrainData * __this, MethodInfo * method)); DO_APP_FUNC(0x02DCF590, void, TerrainData_set_Internal_baseMapResolution, (TerrainData * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x02DCF5F0, void, TerrainData_SetAlphamaps, (TerrainData * __this, int32_t x, int32_t y, Single__Array_2 * map, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1DC18, TerrainData_SetAlphamaps__MethodInfo); DO_APP_FUNC(0x02DCF850, void, TerrainData_Internal_SetAlphamaps, (TerrainData * __this, int32_t x, int32_t y, int32_t width, int32_t height, Single__Array_2 * map, MethodInfo * method)); DO_APP_FUNC(0x02DCF8D0, void, TerrainData_SetBaseMapDirty, (TerrainData * __this, MethodInfo * method)); DO_APP_FUNC(0x02DCF920, Texture2D *, TerrainData_GetAlphamapTexture, (TerrainData * __this, int32_t index, MethodInfo * method)); @@ -113150,7 +125634,7 @@ DO_APP_FUNC(0x02DCFB90, SplatPrototype__Array *, TerrainData_get_splatPrototypes DO_APP_FUNC(0x02DCFBE0, void, TerrainData_set_splatPrototypes, (TerrainData * __this, SplatPrototype__Array * value, MethodInfo * method)); DO_APP_FUNC(0x02DCFC40, TerrainLayer__Array *, TerrainData_get_terrainLayers, (TerrainData * __this, MethodInfo * method)); DO_APP_FUNC(0x02DCFC90, void, TerrainData_set_terrainLayers, (TerrainData * __this, TerrainLayer__Array * value, MethodInfo * method)); -DO_APP_FUNC(0x02DCFCF0, void, TerrainData_AddTree, (TerrainData * __this, TreeInstance tree, MethodInfo * method)); +DO_APP_FUNC(0x02DCFCF0, void, TerrainData_AddTree, (TerrainData * __this, TreeInstance * tree, MethodInfo * method)); DO_APP_FUNC(0x02DCFD50, int32_t, TerrainData_RemoveTrees, (TerrainData * __this, Vector2 position, float radius, int32_t prototypeIndex, MethodInfo * method)); DO_APP_FUNC(0x02DCFDD0, void, TerrainData_Internal_CopyActiveRenderTextureToHeightmap, (TerrainData * __this, RectInt rect, int32_t destX, int32_t destY, TerrainHeightmapSyncControl__Enum syncControl, MethodInfo * method)); DO_APP_FUNC(0x02DCFE60, void, TerrainData_Internal_DirtyHeightmapRegion, (TerrainData * __this, int32_t x, int32_t y, int32_t width, int32_t height, TerrainHeightmapSyncControl__Enum syncControl, MethodInfo * method)); @@ -113165,25 +125649,30 @@ DO_APP_FUNC(0x02DD01D0, TextureFormat__Enum, TerrainData_get_atlasFormat, (Terra DO_APP_FUNC(0x02DD0220, Terrain__Array *, TerrainData_get_users, (TerrainData * __this, MethodInfo * method)); DO_APP_FUNC(0x02DD0270, bool, TerrainData_get_SupportsCopyTextureBetweenRTAndTexture, (MethodInfo * method)); DO_APP_FUNC(0x02DD02C0, void, TerrainData_CopyActiveRenderTextureToHeightmap, (TerrainData * __this, RectInt sourceRect, Vector2Int dest, TerrainHeightmapSyncControl__Enum syncControl, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1DB28, TerrainData_CopyActiveRenderTextureToHeightmap__MethodInfo); DO_APP_FUNC(0x02DD06C0, void, TerrainData_DirtyHeightmapRegion, (TerrainData * __this, RectInt region, TerrainHeightmapSyncControl__Enum syncControl, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1DBA0, TerrainData_DirtyHeightmapRegion__MethodInfo); DO_APP_FUNC(0x02DD0950, String *, TerrainData_get_AlphamapTextureName, (MethodInfo * method)); DO_APP_FUNC(0x02DD0990, String *, TerrainData_get_HolesTextureName, (MethodInfo * method)); DO_APP_FUNC(0x02DD09D0, void, TerrainData_CopyActiveRenderTextureToTexture, (TerrainData * __this, String * textureName, int32_t textureIndex, RectInt sourceRect, Vector2Int dest, bool allowDelayedCPUSync, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1DAB8, TerrainData_CopyActiveRenderTextureToTexture__MethodInfo); DO_APP_FUNC(0x02DD17A0, void, TerrainData_DirtyTextureRegion, (TerrainData * __this, String * textureName, RectInt region, bool allowDelayedCPUSync, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1DAF0, TerrainData_DirtyTextureRegion__MethodInfo); DO_APP_FUNC(0x02DD1CC0, void, TerrainData_SyncTexture, (TerrainData * __this, String * textureName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1DAE0, TerrainData_SyncTexture__MethodInfo); DO_APP_FUNC(0x02DD1FC0, void, TerrainData__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02DD2300, void, TerrainData_get_heightmapScale_Injected, (TerrainData * __this, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02DD2360, void, TerrainData_get_size_Injected, (TerrainData * __this, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02DD23C0, void, TerrainData_set_size_Injected, (TerrainData * __this, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x02DD2420, void, TerrainData_get_bounds_Injected, (TerrainData * __this, Bounds ret, MethodInfo * method)); -DO_APP_FUNC(0x02DD2480, void, TerrainData_GetInterpolatedNormal_Injected, (TerrainData * __this, float x, float y, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02DD2500, void, TerrainData_get_wavingGrassTint_Injected, (TerrainData * __this, Color ret, MethodInfo * method)); -DO_APP_FUNC(0x02DD2560, void, TerrainData_set_wavingGrassTint_Injected, (TerrainData * __this, Color value, MethodInfo * method)); -DO_APP_FUNC(0x02DD25C0, void, TerrainData_Internal_GetTreeInstance_Injected, (TerrainData * __this, int32_t index, TreeInstance ret, MethodInfo * method)); -DO_APP_FUNC(0x02DD2630, void, TerrainData_SetTreeInstance_Injected, (TerrainData * __this, int32_t index, TreeInstance instance, MethodInfo * method)); -DO_APP_FUNC(0x02DD26A0, int32_t, TerrainData_RemoveTrees_Injected, (TerrainData * __this, Vector2 position, float radius, int32_t prototypeIndex, MethodInfo * method)); -DO_APP_FUNC(0x02DD2720, void, TerrainData_Internal_CopyActiveRenderTextureToHeightmap_Injected, (TerrainData * __this, RectInt rect, int32_t destX, int32_t destY, TerrainHeightmapSyncControl__Enum syncControl, MethodInfo * method)); -DO_APP_FUNC(0x02DD27B0, void, TerrainData_Internal_CopyActiveRenderTextureToHoles_Injected, (TerrainData * __this, RectInt rect, int32_t destX, int32_t destY, bool allowDelayedCPUSync, MethodInfo * method)); +DO_APP_FUNC(0x02DD2300, void, TerrainData_get_heightmapScale_Injected, (TerrainData * __this, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DD2360, void, TerrainData_get_size_Injected, (TerrainData * __this, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DD23C0, void, TerrainData_set_size_Injected, (TerrainData * __this, Vector3 * value, MethodInfo * method)); +DO_APP_FUNC(0x02DD2420, void, TerrainData_get_bounds_Injected, (TerrainData * __this, Bounds * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DD2480, void, TerrainData_GetInterpolatedNormal_Injected, (TerrainData * __this, float x, float y, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DD2500, void, TerrainData_get_wavingGrassTint_Injected, (TerrainData * __this, Color * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DD2560, void, TerrainData_set_wavingGrassTint_Injected, (TerrainData * __this, Color * value, MethodInfo * method)); +DO_APP_FUNC(0x02DD25C0, void, TerrainData_Internal_GetTreeInstance_Injected, (TerrainData * __this, int32_t index, TreeInstance * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DD2630, void, TerrainData_SetTreeInstance_Injected, (TerrainData * __this, int32_t index, TreeInstance * instance, MethodInfo * method)); +DO_APP_FUNC(0x02DD26A0, int32_t, TerrainData_RemoveTrees_Injected, (TerrainData * __this, Vector2 * position, float radius, int32_t prototypeIndex, MethodInfo * method)); +DO_APP_FUNC(0x02DD2720, void, TerrainData_Internal_CopyActiveRenderTextureToHeightmap_Injected, (TerrainData * __this, RectInt * rect, int32_t destX, int32_t destY, TerrainHeightmapSyncControl__Enum syncControl, MethodInfo * method)); +DO_APP_FUNC(0x02DD27B0, void, TerrainData_Internal_CopyActiveRenderTextureToHoles_Injected, (TerrainData * __this, RectInt * rect, int32_t destX, int32_t destY, bool allowDelayedCPUSync, MethodInfo * method)); DO_APP_FUNC(0x02DD2840, void, TerrainLayer__ctor, (TerrainLayer * __this, MethodInfo * method)); DO_APP_FUNC(0x02DD28D0, void, TerrainLayer_Internal_Create, (TerrainLayer * layer, MethodInfo * method)); DO_APP_FUNC(0x02DD2920, Texture2D *, TerrainLayer_get_diffuseTexture, (TerrainLayer * __this, MethodInfo * method)); @@ -113212,21 +125701,21 @@ DO_APP_FUNC(0x02DD3130, Vector4, TerrainLayer_get_maskMapRemapMin, (TerrainLayer DO_APP_FUNC(0x02DD31A0, void, TerrainLayer_set_maskMapRemapMin, (TerrainLayer * __this, Vector4 value, MethodInfo * method)); DO_APP_FUNC(0x02DD3200, Vector4, TerrainLayer_get_maskMapRemapMax, (TerrainLayer * __this, MethodInfo * method)); DO_APP_FUNC(0x02DD3270, void, TerrainLayer_set_maskMapRemapMax, (TerrainLayer * __this, Vector4 value, MethodInfo * method)); -DO_APP_FUNC(0x02DD32D0, void, TerrainLayer_get_tileSize_Injected, (TerrainLayer * __this, Vector2 ret, MethodInfo * method)); -DO_APP_FUNC(0x02DD3330, void, TerrainLayer_set_tileSize_Injected, (TerrainLayer * __this, Vector2 value, MethodInfo * method)); -DO_APP_FUNC(0x02DD3390, void, TerrainLayer_get_tileOffset_Injected, (TerrainLayer * __this, Vector2 ret, MethodInfo * method)); -DO_APP_FUNC(0x02DD33F0, void, TerrainLayer_set_tileOffset_Injected, (TerrainLayer * __this, Vector2 value, MethodInfo * method)); -DO_APP_FUNC(0x02DD3450, void, TerrainLayer_get_specular_Injected, (TerrainLayer * __this, Color ret, MethodInfo * method)); -DO_APP_FUNC(0x02DD34B0, void, TerrainLayer_set_specular_Injected, (TerrainLayer * __this, Color value, MethodInfo * method)); -DO_APP_FUNC(0x02DD3510, void, TerrainLayer_get_diffuseRemapMin_Injected, (TerrainLayer * __this, Vector4 ret, MethodInfo * method)); -DO_APP_FUNC(0x02DD3570, void, TerrainLayer_set_diffuseRemapMin_Injected, (TerrainLayer * __this, Vector4 value, MethodInfo * method)); -DO_APP_FUNC(0x02DD35D0, void, TerrainLayer_get_diffuseRemapMax_Injected, (TerrainLayer * __this, Vector4 ret, MethodInfo * method)); -DO_APP_FUNC(0x02DD3630, void, TerrainLayer_set_diffuseRemapMax_Injected, (TerrainLayer * __this, Vector4 value, MethodInfo * method)); -DO_APP_FUNC(0x02DD3690, void, TerrainLayer_get_maskMapRemapMin_Injected, (TerrainLayer * __this, Vector4 ret, MethodInfo * method)); -DO_APP_FUNC(0x02DD36F0, void, TerrainLayer_set_maskMapRemapMin_Injected, (TerrainLayer * __this, Vector4 value, MethodInfo * method)); -DO_APP_FUNC(0x02DD3750, void, TerrainLayer_get_maskMapRemapMax_Injected, (TerrainLayer * __this, Vector4 ret, MethodInfo * method)); -DO_APP_FUNC(0x02DD37B0, void, TerrainLayer_set_maskMapRemapMax_Injected, (TerrainLayer * __this, Vector4 value, MethodInfo * method)); -DO_APP_FUNC(0x00977B80, void, TerrainTileCoord__ctor, (TerrainTileCoord__Boxed * __this, int32_t tileX, int32_t tileZ, MethodInfo * method)); +DO_APP_FUNC(0x02DD32D0, void, TerrainLayer_get_tileSize_Injected, (TerrainLayer * __this, Vector2 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DD3330, void, TerrainLayer_set_tileSize_Injected, (TerrainLayer * __this, Vector2 * value, MethodInfo * method)); +DO_APP_FUNC(0x02DD3390, void, TerrainLayer_get_tileOffset_Injected, (TerrainLayer * __this, Vector2 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DD33F0, void, TerrainLayer_set_tileOffset_Injected, (TerrainLayer * __this, Vector2 * value, MethodInfo * method)); +DO_APP_FUNC(0x02DD3450, void, TerrainLayer_get_specular_Injected, (TerrainLayer * __this, Color * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DD34B0, void, TerrainLayer_set_specular_Injected, (TerrainLayer * __this, Color * value, MethodInfo * method)); +DO_APP_FUNC(0x02DD3510, void, TerrainLayer_get_diffuseRemapMin_Injected, (TerrainLayer * __this, Vector4 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DD3570, void, TerrainLayer_set_diffuseRemapMin_Injected, (TerrainLayer * __this, Vector4 * value, MethodInfo * method)); +DO_APP_FUNC(0x02DD35D0, void, TerrainLayer_get_diffuseRemapMax_Injected, (TerrainLayer * __this, Vector4 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DD3630, void, TerrainLayer_set_diffuseRemapMax_Injected, (TerrainLayer * __this, Vector4 * value, MethodInfo * method)); +DO_APP_FUNC(0x02DD3690, void, TerrainLayer_get_maskMapRemapMin_Injected, (TerrainLayer * __this, Vector4 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DD36F0, void, TerrainLayer_set_maskMapRemapMin_Injected, (TerrainLayer * __this, Vector4 * value, MethodInfo * method)); +DO_APP_FUNC(0x02DD3750, void, TerrainLayer_get_maskMapRemapMax_Injected, (TerrainLayer * __this, Vector4 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DD37B0, void, TerrainLayer_set_maskMapRemapMax_Injected, (TerrainLayer * __this, Vector4 * value, MethodInfo * method)); +DO_APP_FUNC(0x00977B80, void, TerrainTileCoord__ctor, (TerrainTileCoord * __this, int32_t tileX, int32_t tileZ, MethodInfo * method)); DO_APP_FUNC(0x02DD3810, Terrain *, TerrainMap_GetTerrain, (TerrainMap * __this, int32_t tileX, int32_t tileZ, MethodInfo * method)); DO_APP_FUNC(0x02DD3930, TerrainMap *, TerrainMap_CreateFromPlacement, (Terrain * originTerrain, Predicate_1_UnityEngine_Terrain_ * filter, bool fullValidation, MethodInfo * method)); DO_APP_FUNC(0x02DD3FB0, TerrainMap *, TerrainMap_CreateFromPlacement_1, (Vector2 gridOrigin, Vector2 gridSize, Predicate_1_UnityEngine_Terrain_ * filter, bool fullValidation, MethodInfo * method)); @@ -113238,6 +125727,7 @@ DO_APP_FUNC(0x02DD4AE0, void, TerrainMap_ValidateTerrain, (TerrainMap * __this, DO_APP_FUNC(0x02DD5890, TerrainMapStatusCode__Enum, TerrainMap_Validate, (TerrainMap * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TerrainMap_c_DisplayClass3_0__ctor, (TerrainMap_c_DisplayClass3_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x02DD5B90, bool, TerrainMap_c_DisplayClass3_0__CreateFromPlacement_b__0, (TerrainMap_c_DisplayClass3_0 * __this, Terrain * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D9C8, TerrainMap_c_DisplayClass3_0__CreateFromPlacement_b__0__MethodInfo); DO_APP_FUNC(0x02DD5C00, bool, TerrainUtility_ValidTerrainsExist, (MethodInfo * method)); DO_APP_FUNC(0x02DD5CB0, void, TerrainUtility_ClearConnectivity, (MethodInfo * method)); DO_APP_FUNC(0x02DD5DD0, Dictionary_2_System_Int32_UnityEngine_TerrainUtils_TerrainMap_ *, TerrainUtility_CollectTerrains, (bool onlyAutoConnectedTerrains, MethodInfo * method)); @@ -113245,20 +125735,21 @@ DO_APP_FUNC(0x02DD6180, void, TerrainUtility_AutoConnect, (MethodInfo * method)) DO_APP_FUNC(0x003AE050, void, TerrainUtility_c_DisplayClass2_0__ctor, (TerrainUtility_c_DisplayClass2_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TerrainUtility_c_DisplayClass2_1__ctor, (TerrainUtility_c_DisplayClass2_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02DD66A0, bool, TerrainUtility_c_DisplayClass2_1__CollectTerrains_b__0, (TerrainUtility_c_DisplayClass2_1 * __this, Terrain * x, MethodInfo * method)); -DO_APP_FUNC(0x02CE2130, float, SoftJointLimit_get_limit, (SoftJointLimit__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C42840, void, SoftJointLimit_set_limit, (SoftJointLimit__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02CCAAD0, float, SoftJointLimit_get_bounciness, (SoftJointLimit__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C7A0F0, void, SoftJointLimit_set_bounciness, (SoftJointLimit__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02CE2130, float, SoftJointLimitSpring_get_spring, (SoftJointLimitSpring__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C42840, void, SoftJointLimitSpring_set_spring, (SoftJointLimitSpring__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02CCAAD0, float, SoftJointLimitSpring_get_damper, (SoftJointLimitSpring__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C7A0F0, void, SoftJointLimitSpring_set_damper, (SoftJointLimitSpring__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x00C42840, void, JointDrive_set_positionSpring, (JointDrive__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x01C7A0F0, void, JointDrive_set_positionDamper, (JointDrive__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x00C43A80, void, JointDrive_set_maximumForce, (JointDrive__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02CE2130, float, JointLimits_get_min, (JointLimits__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CCAAD0, float, JointLimits_get_max, (JointLimits__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CE2140, float, JointLimits_get_bounciness, (JointLimits__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D910, TerrainUtility_c_DisplayClass2_1__CollectTerrains_b__0__MethodInfo); +DO_APP_FUNC(0x02CE2130, float, SoftJointLimit_get_limit, (SoftJointLimit * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C42840, void, SoftJointLimit_set_limit, (SoftJointLimit * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02CCAAD0, float, SoftJointLimit_get_bounciness, (SoftJointLimit * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C7A0F0, void, SoftJointLimit_set_bounciness, (SoftJointLimit * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02CE2130, float, SoftJointLimitSpring_get_spring, (SoftJointLimitSpring * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C42840, void, SoftJointLimitSpring_set_spring, (SoftJointLimitSpring * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02CCAAD0, float, SoftJointLimitSpring_get_damper, (SoftJointLimitSpring * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C7A0F0, void, SoftJointLimitSpring_set_damper, (SoftJointLimitSpring * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x00C42840, void, JointDrive_set_positionSpring, (JointDrive * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x01C7A0F0, void, JointDrive_set_positionDamper, (JointDrive * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x00C43A80, void, JointDrive_set_maximumForce, (JointDrive * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02CE2130, float, JointLimits_get_min, (JointLimits * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CCAAD0, float, JointLimits_get_max, (JointLimits * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CE2140, float, JointLimits_get_bounciness, (JointLimits * __this, MethodInfo * method)); DO_APP_FUNC(0x02DB4370, GameObject *, ControllerColliderHit_get_gameObject, (ControllerColliderHit * __this, MethodInfo * method)); DO_APP_FUNC(0x02DB43D0, ContactPoint__Array *, Collision_GetContacts_Internal, (Collision * __this, MethodInfo * method)); DO_APP_FUNC(0x02DB43F0, Vector3, Collision_get_relativeVelocity, (Collision * __this, MethodInfo * method)); @@ -113267,6 +125758,7 @@ DO_APP_FUNC(0x02DB4410, GameObject *, Collision_get_gameObject, (Collision * __t DO_APP_FUNC(0x02DB45A0, int32_t, Collision_get_contactCount, (Collision * __this, MethodInfo * method)); DO_APP_FUNC(0x02DB45B0, ContactPoint__Array *, Collision_get_contacts, (Collision * __this, MethodInfo * method)); DO_APP_FUNC(0x02DB4780, ContactPoint, Collision_GetContact, (Collision * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B038, Collision_GetContact__MethodInfo); DO_APP_FUNC(0x02DB48C0, Vector3, Collision_get_impulse, (Collision * __this, MethodInfo * method)); DO_APP_FUNC(0x02DB48E0, void, Physics_OnSceneContactModify, (PhysicsScene scene, void * buffer, int32_t count, bool isCCD, MethodInfo * method)); DO_APP_FUNC(0x02DB49A0, Vector3, Physics_get_gravity, (MethodInfo * method)); @@ -113280,29 +125772,29 @@ DO_APP_FUNC(0x02DB4C70, bool, Physics_Raycast, (Vector3 origin, Vector3 directio DO_APP_FUNC(0x02DB4D60, bool, Physics_Raycast_1, (Vector3 origin, Vector3 direction, float maxDistance, int32_t layerMask, MethodInfo * method)); DO_APP_FUNC(0x02DB4E40, bool, Physics_Raycast_2, (Vector3 origin, Vector3 direction, float maxDistance, MethodInfo * method)); DO_APP_FUNC(0x02DB4F20, bool, Physics_Raycast_3, (Vector3 origin, Vector3 direction, MethodInfo * method)); -DO_APP_FUNC(0x02DB5000, bool, Physics_Raycast_4, (Vector3 origin, Vector3 direction, RaycastHit hitInfo, float maxDistance, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); -DO_APP_FUNC(0x02DB5100, bool, Physics_Raycast_5, (Vector3 origin, Vector3 direction, RaycastHit hitInfo, float maxDistance, int32_t layerMask, MethodInfo * method)); -DO_APP_FUNC(0x02DB51F0, bool, Physics_Raycast_6, (Vector3 origin, Vector3 direction, RaycastHit hitInfo, float maxDistance, MethodInfo * method)); -DO_APP_FUNC(0x02DB52E0, bool, Physics_Raycast_7, (Vector3 origin, Vector3 direction, RaycastHit hitInfo, MethodInfo * method)); +DO_APP_FUNC(0x02DB5000, bool, Physics_Raycast_4, (Vector3 origin, Vector3 direction, RaycastHit * hitInfo, float maxDistance, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); +DO_APP_FUNC(0x02DB5100, bool, Physics_Raycast_5, (Vector3 origin, Vector3 direction, RaycastHit * hitInfo, float maxDistance, int32_t layerMask, MethodInfo * method)); +DO_APP_FUNC(0x02DB51F0, bool, Physics_Raycast_6, (Vector3 origin, Vector3 direction, RaycastHit * hitInfo, float maxDistance, MethodInfo * method)); +DO_APP_FUNC(0x02DB52E0, bool, Physics_Raycast_7, (Vector3 origin, Vector3 direction, RaycastHit * hitInfo, MethodInfo * method)); DO_APP_FUNC(0x02DB53C0, bool, Physics_Raycast_8, (Ray ray, float maxDistance, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); DO_APP_FUNC(0x02DB54A0, bool, Physics_Raycast_9, (Ray ray, float maxDistance, int32_t layerMask, MethodInfo * method)); DO_APP_FUNC(0x02DB5580, bool, Physics_Raycast_10, (Ray ray, float maxDistance, MethodInfo * method)); DO_APP_FUNC(0x02DB5660, bool, Physics_Raycast_11, (Ray ray, MethodInfo * method)); -DO_APP_FUNC(0x02DB5730, bool, Physics_Raycast_12, (Ray ray, RaycastHit hitInfo, float maxDistance, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); -DO_APP_FUNC(0x02DB5820, bool, Physics_Raycast_13, (Ray ray, RaycastHit hitInfo, float maxDistance, int32_t layerMask, MethodInfo * method)); -DO_APP_FUNC(0x02DB5910, bool, Physics_Raycast_14, (Ray ray, RaycastHit hitInfo, float maxDistance, MethodInfo * method)); -DO_APP_FUNC(0x02DB59F0, bool, Physics_Raycast_15, (Ray ray, RaycastHit hitInfo, MethodInfo * method)); +DO_APP_FUNC(0x02DB5730, bool, Physics_Raycast_12, (Ray ray, RaycastHit * hitInfo, float maxDistance, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); +DO_APP_FUNC(0x02DB5820, bool, Physics_Raycast_13, (Ray ray, RaycastHit * hitInfo, float maxDistance, int32_t layerMask, MethodInfo * method)); +DO_APP_FUNC(0x02DB5910, bool, Physics_Raycast_14, (Ray ray, RaycastHit * hitInfo, float maxDistance, MethodInfo * method)); +DO_APP_FUNC(0x02DB59F0, bool, Physics_Raycast_15, (Ray ray, RaycastHit * hitInfo, MethodInfo * method)); DO_APP_FUNC(0x02DB5AE0, bool, Physics_Linecast, (Vector3 start, Vector3 end, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); DO_APP_FUNC(0x02DB5C10, bool, Physics_Linecast_1, (Vector3 start, Vector3 end, int32_t layerMask, MethodInfo * method)); -DO_APP_FUNC(0x02DB5C60, bool, Physics_Linecast_2, (Vector3 start, Vector3 end, RaycastHit hitInfo, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); -DO_APP_FUNC(0x02DB5DA0, bool, Physics_Linecast_3, (Vector3 start, Vector3 end, RaycastHit hitInfo, int32_t layerMask, MethodInfo * method)); -DO_APP_FUNC(0x02DB5DF0, bool, Physics_CapsuleCast, (Vector3 point1, Vector3 point2, float radius, Vector3 direction, RaycastHit hitInfo, float maxDistance, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); -DO_APP_FUNC(0x02DB5FD0, bool, Physics_SphereCast, (Vector3 origin, float radius, Vector3 direction, RaycastHit hitInfo, float maxDistance, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); -DO_APP_FUNC(0x02DB60D0, bool, Physics_SphereCast_1, (Vector3 origin, float radius, Vector3 direction, RaycastHit hitInfo, float maxDistance, int32_t layerMask, MethodInfo * method)); +DO_APP_FUNC(0x02DB5C60, bool, Physics_Linecast_2, (Vector3 start, Vector3 end, RaycastHit * hitInfo, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); +DO_APP_FUNC(0x02DB5DA0, bool, Physics_Linecast_3, (Vector3 start, Vector3 end, RaycastHit * hitInfo, int32_t layerMask, MethodInfo * method)); +DO_APP_FUNC(0x02DB5DF0, bool, Physics_CapsuleCast, (Vector3 point1, Vector3 point2, float radius, Vector3 direction, RaycastHit * hitInfo, float maxDistance, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); +DO_APP_FUNC(0x02DB5FD0, bool, Physics_SphereCast, (Vector3 origin, float radius, Vector3 direction, RaycastHit * hitInfo, float maxDistance, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); +DO_APP_FUNC(0x02DB60D0, bool, Physics_SphereCast_1, (Vector3 origin, float radius, Vector3 direction, RaycastHit * hitInfo, float maxDistance, int32_t layerMask, MethodInfo * method)); DO_APP_FUNC(0x02DB61E0, bool, Physics_SphereCast_2, (Ray ray, float radius, float maxDistance, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); DO_APP_FUNC(0x02DB6300, bool, Physics_SphereCast_3, (Ray ray, float radius, float maxDistance, int32_t layerMask, MethodInfo * method)); -DO_APP_FUNC(0x02DB6340, bool, Physics_SphereCast_4, (Ray ray, float radius, RaycastHit hitInfo, float maxDistance, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); -DO_APP_FUNC(0x02DB6450, bool, Physics_BoxCast, (Vector3 center, Vector3 halfExtents, Vector3 direction, RaycastHit hitInfo, Quaternion orientation, float maxDistance, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); +DO_APP_FUNC(0x02DB6340, bool, Physics_SphereCast_4, (Ray ray, float radius, RaycastHit * hitInfo, float maxDistance, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); +DO_APP_FUNC(0x02DB6450, bool, Physics_BoxCast, (Vector3 center, Vector3 halfExtents, Vector3 direction, RaycastHit * hitInfo, Quaternion orientation, float maxDistance, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); DO_APP_FUNC(0x02DB6630, RaycastHit__Array *, Physics_Internal_RaycastAll, (PhysicsScene physicsScene, Ray ray, float maxDistance, int32_t mask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); DO_APP_FUNC(0x02DB66C0, RaycastHit__Array *, Physics_RaycastAll, (Vector3 origin, Vector3 direction, float maxDistance, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); DO_APP_FUNC(0x02DB68D0, RaycastHit__Array *, Physics_RaycastAll_1, (Vector3 origin, Vector3 direction, float maxDistance, int32_t layerMask, MethodInfo * method)); @@ -113328,8 +125820,8 @@ DO_APP_FUNC(0x0223ACF0, bool, Physics_get_autoSimulation, (MethodInfo * method)) DO_APP_FUNC(0x02DB7480, void, Physics_SyncTransforms, (MethodInfo * method)); DO_APP_FUNC(0x02DB74D0, bool, Physics_get_autoSyncTransforms, (MethodInfo * method)); DO_APP_FUNC(0x02DB7520, void, Physics_set_autoSyncTransforms, (bool value, MethodInfo * method)); -DO_APP_FUNC(0x02DB7570, bool, Physics_Query_ComputePenetration, (Collider * colliderA, Vector3 positionA, Quaternion rotationA, Collider * colliderB, Vector3 positionB, Quaternion rotationB, Vector3 direction, float distance, MethodInfo * method)); -DO_APP_FUNC(0x02DB7620, bool, Physics_ComputePenetration, (Collider * colliderA, Vector3 positionA, Quaternion rotationA, Collider * colliderB, Vector3 positionB, Quaternion rotationB, Vector3 direction, float distance, MethodInfo * method)); +DO_APP_FUNC(0x02DB7570, bool, Physics_Query_ComputePenetration, (Collider * colliderA, Vector3 positionA, Quaternion rotationA, Collider * colliderB, Vector3 positionB, Quaternion rotationB, Vector3 * direction, float * distance, MethodInfo * method)); +DO_APP_FUNC(0x02DB7620, bool, Physics_ComputePenetration, (Collider * colliderA, Vector3 positionA, Quaternion rotationA, Collider * colliderB, Vector3 positionB, Quaternion rotationB, Vector3 * direction, float * distance, MethodInfo * method)); DO_APP_FUNC(0x02DB7770, int32_t, Physics_OverlapSphereNonAlloc, (Vector3 position, float radius, Collider__Array * results, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); DO_APP_FUNC(0x02DB7870, int32_t, Physics_OverlapSphereNonAlloc_1, (Vector3 position, float radius, Collider__Array * results, int32_t layerMask, MethodInfo * method)); DO_APP_FUNC(0x02DB78A0, bool, Physics_CheckSphere_Internal, (PhysicsScene physicsScene, Vector3 position, float radius, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); @@ -113341,13 +125833,13 @@ DO_APP_FUNC(0x02DB7DA0, bool, Physics_CheckCapsule_Internal, (PhysicsScene physi DO_APP_FUNC(0x02DB7E30, bool, Physics_CheckCapsule, (Vector3 start, Vector3 end, float radius, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); DO_APP_FUNC(0x02DB7F50, int32_t, Physics_OverlapBoxNonAlloc, (Vector3 center, Vector3 halfExtents, Collider__Array * results, Quaternion orientation, int32_t mask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); DO_APP_FUNC(0x02DB8080, int32_t, Physics_OverlapCapsuleNonAlloc, (Vector3 point0, Vector3 point1, float radius, Collider__Array * results, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); -DO_APP_FUNC(0x02DB81B0, void, Physics_get_gravity_Injected, (Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02DB8200, void, Physics_get_defaultPhysicsScene_Injected, (PhysicsScene ret, MethodInfo * method)); -DO_APP_FUNC(0x02DB8250, RaycastHit__Array *, Physics_Internal_RaycastAll_Injected, (PhysicsScene physicsScene, Ray ray, float maxDistance, int32_t mask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); -DO_APP_FUNC(0x02DB82E0, Collider__Array *, Physics_OverlapSphere_Internal_Injected, (PhysicsScene physicsScene, Vector3 position, float radius, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); -DO_APP_FUNC(0x02DB8370, bool, Physics_Query_ComputePenetration_Injected, (Collider * colliderA, Vector3 positionA, Quaternion rotationA, Collider * colliderB, Vector3 positionB, Quaternion rotationB, Vector3 direction, float distance, MethodInfo * method)); -DO_APP_FUNC(0x02DB8400, bool, Physics_CheckSphere_Internal_Injected, (PhysicsScene physicsScene, Vector3 position, float radius, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); -DO_APP_FUNC(0x02DB8490, bool, Physics_CheckCapsule_Internal_Injected, (PhysicsScene physicsScene, Vector3 start, Vector3 end, float radius, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); +DO_APP_FUNC(0x02DB81B0, void, Physics_get_gravity_Injected, (Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DB8200, void, Physics_get_defaultPhysicsScene_Injected, (PhysicsScene * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DB8250, RaycastHit__Array *, Physics_Internal_RaycastAll_Injected, (PhysicsScene * physicsScene, Ray * ray, float maxDistance, int32_t mask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); +DO_APP_FUNC(0x02DB82E0, Collider__Array *, Physics_OverlapSphere_Internal_Injected, (PhysicsScene * physicsScene, Vector3 * position, float radius, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); +DO_APP_FUNC(0x02DB8370, bool, Physics_Query_ComputePenetration_Injected, (Collider * colliderA, Vector3 * positionA, Quaternion * rotationA, Collider * colliderB, Vector3 * positionB, Quaternion * rotationB, Vector3 * direction, float * distance, MethodInfo * method)); +DO_APP_FUNC(0x02DB8400, bool, Physics_CheckSphere_Internal_Injected, (PhysicsScene * physicsScene, Vector3 * position, float radius, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); +DO_APP_FUNC(0x02DB8490, bool, Physics_CheckCapsule_Internal_Injected, (PhysicsScene * physicsScene, Vector3 * start, Vector3 * end, float radius, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); DO_APP_FUNC(0x02DB8520, void, PhysicMaterial__ctor, (PhysicMaterial * __this, MethodInfo * method)); DO_APP_FUNC(0x02DB85D0, void, PhysicMaterial_Internal_CreateDynamicsMaterial, (PhysicMaterial * mat, String * name, MethodInfo * method)); DO_APP_FUNC(0x02DB8630, float, PhysicMaterial_get_bounciness, (PhysicMaterial * __this, MethodInfo * method)); @@ -113355,19 +125847,19 @@ DO_APP_FUNC(0x02DB8680, float, PhysicMaterial_get_dynamicFriction, (PhysicMateri DO_APP_FUNC(0x02DB86D0, float, PhysicMaterial_get_staticFriction, (PhysicMaterial * __this, MethodInfo * method)); DO_APP_FUNC(0x02DB8720, PhysicMaterialCombine__Enum, PhysicMaterial_get_frictionCombine, (PhysicMaterial * __this, MethodInfo * method)); DO_APP_FUNC(0x02DB8770, PhysicMaterialCombine__Enum, PhysicMaterial_get_bounceCombine, (PhysicMaterial * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DB87C0, Collider *, RaycastHit_get_collider, (RaycastHit__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CB9C50, Vector3, RaycastHit_get_point, (RaycastHit__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C7A120, void, RaycastHit_set_point, (RaycastHit__Boxed * __this, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x02CEB1F0, Vector3, RaycastHit_get_normal, (RaycastHit__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C7A130, void, RaycastHit_set_normal, (RaycastHit__Boxed * __this, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x02DA1C10, float, RaycastHit_get_distance, (RaycastHit__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003CCB90, void, RaycastHit_set_distance, (RaycastHit__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x011227E0, int32_t, RaycastHit_get_triangleIndex, (RaycastHit__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DB87C0, Collider *, RaycastHit_get_collider, (RaycastHit * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CB9C50, Vector3, RaycastHit_get_point, (RaycastHit * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C7A120, void, RaycastHit_set_point, (RaycastHit * __this, Vector3 value, MethodInfo * method)); +DO_APP_FUNC(0x02CEB1F0, Vector3, RaycastHit_get_normal, (RaycastHit * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C7A130, void, RaycastHit_set_normal, (RaycastHit * __this, Vector3 value, MethodInfo * method)); +DO_APP_FUNC(0x02DA1C10, float, RaycastHit_get_distance, (RaycastHit * __this, MethodInfo * method)); +DO_APP_FUNC(0x003CCB90, void, RaycastHit_set_distance, (RaycastHit * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x011227E0, int32_t, RaycastHit_get_triangleIndex, (RaycastHit * __this, MethodInfo * method)); DO_APP_FUNC(0x02DB88B0, Vector2, RaycastHit_CalculateRaycastTexCoord, (Collider * collider, Vector2 uv, Vector3 pos, uint32_t face, int32_t textcoord, MethodInfo * method)); -DO_APP_FUNC(0x02DB8950, Vector2, RaycastHit_get_textureCoord, (RaycastHit__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DB8A10, Transform *, RaycastHit_get_transform, (RaycastHit__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DB8C90, Rigidbody *, RaycastHit_get_rigidbody, (RaycastHit__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DB8E00, void, RaycastHit_CalculateRaycastTexCoord_Injected, (Collider * collider, Vector2 uv, Vector3 pos, uint32_t face, int32_t textcoord, Vector2 ret, MethodInfo * method)); +DO_APP_FUNC(0x02DB8950, Vector2, RaycastHit_get_textureCoord, (RaycastHit * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DB8A10, Transform *, RaycastHit_get_transform, (RaycastHit * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DB8C90, Rigidbody *, RaycastHit_get_rigidbody, (RaycastHit * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DB8E00, void, RaycastHit_CalculateRaycastTexCoord_Injected, (Collider * collider, Vector2 * uv, Vector3 * pos, uint32_t face, int32_t textcoord, Vector2 * ret, MethodInfo * method)); DO_APP_FUNC(0x02DB8E90, Vector3, Rigidbody_get_velocity, (Rigidbody * __this, MethodInfo * method)); DO_APP_FUNC(0x02DB8F00, void, Rigidbody_set_velocity, (Rigidbody * __this, Vector3 value, MethodInfo * method)); DO_APP_FUNC(0x02DB8F60, Vector3, Rigidbody_get_angularVelocity, (Rigidbody * __this, MethodInfo * method)); @@ -113444,12 +125936,12 @@ DO_APP_FUNC(0x02DBAA30, void, Rigidbody_AddForceAtPosition_1, (Rigidbody * __thi DO_APP_FUNC(0x02DBAAB0, void, Rigidbody_AddExplosionForce, (Rigidbody * __this, float explosionForce, Vector3 explosionPosition, float explosionRadius, float upwardsModifier, ForceMode__Enum mode, MethodInfo * method)); DO_APP_FUNC(0x02DBAB50, void, Rigidbody_AddExplosionForce_1, (Rigidbody * __this, float explosionForce, Vector3 explosionPosition, float explosionRadius, float upwardsModifier, MethodInfo * method)); DO_APP_FUNC(0x02DBABF0, void, Rigidbody_AddExplosionForce_2, (Rigidbody * __this, float explosionForce, Vector3 explosionPosition, float explosionRadius, MethodInfo * method)); -DO_APP_FUNC(0x02DBAC90, void, Rigidbody_Internal_ClosestPointOnBounds, (Rigidbody * __this, Vector3 point, Vector3 outPos, float distance, MethodInfo * method)); +DO_APP_FUNC(0x02DBAC90, void, Rigidbody_Internal_ClosestPointOnBounds, (Rigidbody * __this, Vector3 point, Vector3 * outPos, float * distance, MethodInfo * method)); DO_APP_FUNC(0x02DBAD10, Vector3, Rigidbody_ClosestPointOnBounds, (Rigidbody * __this, Vector3 position, MethodInfo * method)); -DO_APP_FUNC(0x02DBAE00, RaycastHit, Rigidbody_SweepTest, (Rigidbody * __this, Vector3 direction, float maxDistance, QueryTriggerInteraction__Enum queryTriggerInteraction, bool hasHit, MethodInfo * method)); -DO_APP_FUNC(0x02DBAEB0, bool, Rigidbody_SweepTest_1, (Rigidbody * __this, Vector3 direction, RaycastHit hitInfo, float maxDistance, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); -DO_APP_FUNC(0x02DBB000, bool, Rigidbody_SweepTest_2, (Rigidbody * __this, Vector3 direction, RaycastHit hitInfo, float maxDistance, MethodInfo * method)); -DO_APP_FUNC(0x02DBB030, bool, Rigidbody_SweepTest_3, (Rigidbody * __this, Vector3 direction, RaycastHit hitInfo, MethodInfo * method)); +DO_APP_FUNC(0x02DBAE00, RaycastHit, Rigidbody_SweepTest, (Rigidbody * __this, Vector3 direction, float maxDistance, QueryTriggerInteraction__Enum queryTriggerInteraction, bool * hasHit, MethodInfo * method)); +DO_APP_FUNC(0x02DBAEB0, bool, Rigidbody_SweepTest_1, (Rigidbody * __this, Vector3 direction, RaycastHit * hitInfo, float maxDistance, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); +DO_APP_FUNC(0x02DBB000, bool, Rigidbody_SweepTest_2, (Rigidbody * __this, Vector3 direction, RaycastHit * hitInfo, float maxDistance, MethodInfo * method)); +DO_APP_FUNC(0x02DBB030, bool, Rigidbody_SweepTest_3, (Rigidbody * __this, Vector3 direction, RaycastHit * hitInfo, MethodInfo * method)); DO_APP_FUNC(0x02DBB070, RaycastHit__Array *, Rigidbody_Internal_SweepTestAll, (Rigidbody * __this, Vector3 direction, float maxDistance, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); DO_APP_FUNC(0x02DBB0F0, RaycastHit__Array *, Rigidbody_SweepTestAll, (Rigidbody * __this, Vector3 direction, float maxDistance, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); DO_APP_FUNC(0x02DBB1E0, RaycastHit__Array *, Rigidbody_SweepTestAll_1, (Rigidbody * __this, Vector3 direction, float maxDistance, MethodInfo * method)); @@ -113466,34 +125958,34 @@ DO_APP_FUNC(0x02DB9CF0, void, Rigidbody_set_solverIterationCount, (Rigidbody * _ DO_APP_FUNC(0x02DBA200, int32_t, Rigidbody_get_solverVelocityIterationCount, (Rigidbody * __this, MethodInfo * method)); DO_APP_FUNC(0x02DBA250, void, Rigidbody_set_solverVelocityIterationCount, (Rigidbody * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, Rigidbody__ctor, (Rigidbody * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DBB250, void, Rigidbody_get_velocity_Injected, (Rigidbody * __this, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02DBB2B0, void, Rigidbody_set_velocity_Injected, (Rigidbody * __this, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x02DBB310, void, Rigidbody_get_angularVelocity_Injected, (Rigidbody * __this, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02DBB370, void, Rigidbody_set_angularVelocity_Injected, (Rigidbody * __this, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x02DBB3D0, void, Rigidbody_get_centerOfMass_Injected, (Rigidbody * __this, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02DBB430, void, Rigidbody_set_centerOfMass_Injected, (Rigidbody * __this, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x02DBB490, void, Rigidbody_get_worldCenterOfMass_Injected, (Rigidbody * __this, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02DBB4F0, void, Rigidbody_get_inertiaTensorRotation_Injected, (Rigidbody * __this, Quaternion ret, MethodInfo * method)); -DO_APP_FUNC(0x02DBB550, void, Rigidbody_set_inertiaTensorRotation_Injected, (Rigidbody * __this, Quaternion value, MethodInfo * method)); -DO_APP_FUNC(0x02DBB5B0, void, Rigidbody_get_inertiaTensor_Injected, (Rigidbody * __this, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02DBB610, void, Rigidbody_set_inertiaTensor_Injected, (Rigidbody * __this, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x02DBB670, void, Rigidbody_get_position_Injected, (Rigidbody * __this, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02DBB6D0, void, Rigidbody_set_position_Injected, (Rigidbody * __this, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x02DBB730, void, Rigidbody_get_rotation_Injected, (Rigidbody * __this, Quaternion ret, MethodInfo * method)); -DO_APP_FUNC(0x02DBB790, void, Rigidbody_set_rotation_Injected, (Rigidbody * __this, Quaternion value, MethodInfo * method)); -DO_APP_FUNC(0x02DBB7F0, void, Rigidbody_MovePosition_Injected, (Rigidbody * __this, Vector3 position, MethodInfo * method)); -DO_APP_FUNC(0x02DBB850, void, Rigidbody_MoveRotation_Injected, (Rigidbody * __this, Quaternion rot, MethodInfo * method)); -DO_APP_FUNC(0x02DBB8B0, void, Rigidbody_GetRelativePointVelocity_Injected, (Rigidbody * __this, Vector3 relativePoint, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02DBB920, void, Rigidbody_GetPointVelocity_Injected, (Rigidbody * __this, Vector3 worldPoint, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02DBB990, void, Rigidbody_AddForce_Injected, (Rigidbody * __this, Vector3 force, ForceMode__Enum mode, MethodInfo * method)); -DO_APP_FUNC(0x02DBBA00, void, Rigidbody_AddRelativeForce_Injected, (Rigidbody * __this, Vector3 force, ForceMode__Enum mode, MethodInfo * method)); -DO_APP_FUNC(0x02DBBA70, void, Rigidbody_AddTorque_Injected, (Rigidbody * __this, Vector3 torque, ForceMode__Enum mode, MethodInfo * method)); -DO_APP_FUNC(0x02DBBAE0, void, Rigidbody_AddRelativeTorque_Injected, (Rigidbody * __this, Vector3 torque, ForceMode__Enum mode, MethodInfo * method)); -DO_APP_FUNC(0x02DBBB50, void, Rigidbody_AddForceAtPosition_Injected, (Rigidbody * __this, Vector3 force, Vector3 position, ForceMode__Enum mode, MethodInfo * method)); -DO_APP_FUNC(0x02DBBBD0, void, Rigidbody_AddExplosionForce_Injected, (Rigidbody * __this, float explosionForce, Vector3 explosionPosition, float explosionRadius, float upwardsModifier, ForceMode__Enum mode, MethodInfo * method)); -DO_APP_FUNC(0x02DBBC60, void, Rigidbody_Internal_ClosestPointOnBounds_Injected, (Rigidbody * __this, Vector3 point, Vector3 outPos, float distance, MethodInfo * method)); -DO_APP_FUNC(0x02DBBCE0, void, Rigidbody_SweepTest_Injected, (Rigidbody * __this, Vector3 direction, float maxDistance, QueryTriggerInteraction__Enum queryTriggerInteraction, bool hasHit, RaycastHit ret, MethodInfo * method)); -DO_APP_FUNC(0x02DBBD70, RaycastHit__Array *, Rigidbody_Internal_SweepTestAll_Injected, (Rigidbody * __this, Vector3 direction, float maxDistance, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); +DO_APP_FUNC(0x02DBB250, void, Rigidbody_get_velocity_Injected, (Rigidbody * __this, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DBB2B0, void, Rigidbody_set_velocity_Injected, (Rigidbody * __this, Vector3 * value, MethodInfo * method)); +DO_APP_FUNC(0x02DBB310, void, Rigidbody_get_angularVelocity_Injected, (Rigidbody * __this, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DBB370, void, Rigidbody_set_angularVelocity_Injected, (Rigidbody * __this, Vector3 * value, MethodInfo * method)); +DO_APP_FUNC(0x02DBB3D0, void, Rigidbody_get_centerOfMass_Injected, (Rigidbody * __this, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DBB430, void, Rigidbody_set_centerOfMass_Injected, (Rigidbody * __this, Vector3 * value, MethodInfo * method)); +DO_APP_FUNC(0x02DBB490, void, Rigidbody_get_worldCenterOfMass_Injected, (Rigidbody * __this, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DBB4F0, void, Rigidbody_get_inertiaTensorRotation_Injected, (Rigidbody * __this, Quaternion * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DBB550, void, Rigidbody_set_inertiaTensorRotation_Injected, (Rigidbody * __this, Quaternion * value, MethodInfo * method)); +DO_APP_FUNC(0x02DBB5B0, void, Rigidbody_get_inertiaTensor_Injected, (Rigidbody * __this, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DBB610, void, Rigidbody_set_inertiaTensor_Injected, (Rigidbody * __this, Vector3 * value, MethodInfo * method)); +DO_APP_FUNC(0x02DBB670, void, Rigidbody_get_position_Injected, (Rigidbody * __this, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DBB6D0, void, Rigidbody_set_position_Injected, (Rigidbody * __this, Vector3 * value, MethodInfo * method)); +DO_APP_FUNC(0x02DBB730, void, Rigidbody_get_rotation_Injected, (Rigidbody * __this, Quaternion * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DBB790, void, Rigidbody_set_rotation_Injected, (Rigidbody * __this, Quaternion * value, MethodInfo * method)); +DO_APP_FUNC(0x02DBB7F0, void, Rigidbody_MovePosition_Injected, (Rigidbody * __this, Vector3 * position, MethodInfo * method)); +DO_APP_FUNC(0x02DBB850, void, Rigidbody_MoveRotation_Injected, (Rigidbody * __this, Quaternion * rot, MethodInfo * method)); +DO_APP_FUNC(0x02DBB8B0, void, Rigidbody_GetRelativePointVelocity_Injected, (Rigidbody * __this, Vector3 * relativePoint, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DBB920, void, Rigidbody_GetPointVelocity_Injected, (Rigidbody * __this, Vector3 * worldPoint, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DBB990, void, Rigidbody_AddForce_Injected, (Rigidbody * __this, Vector3 * force, ForceMode__Enum mode, MethodInfo * method)); +DO_APP_FUNC(0x02DBBA00, void, Rigidbody_AddRelativeForce_Injected, (Rigidbody * __this, Vector3 * force, ForceMode__Enum mode, MethodInfo * method)); +DO_APP_FUNC(0x02DBBA70, void, Rigidbody_AddTorque_Injected, (Rigidbody * __this, Vector3 * torque, ForceMode__Enum mode, MethodInfo * method)); +DO_APP_FUNC(0x02DBBAE0, void, Rigidbody_AddRelativeTorque_Injected, (Rigidbody * __this, Vector3 * torque, ForceMode__Enum mode, MethodInfo * method)); +DO_APP_FUNC(0x02DBBB50, void, Rigidbody_AddForceAtPosition_Injected, (Rigidbody * __this, Vector3 * force, Vector3 * position, ForceMode__Enum mode, MethodInfo * method)); +DO_APP_FUNC(0x02DBBBD0, void, Rigidbody_AddExplosionForce_Injected, (Rigidbody * __this, float explosionForce, Vector3 * explosionPosition, float explosionRadius, float upwardsModifier, ForceMode__Enum mode, MethodInfo * method)); +DO_APP_FUNC(0x02DBBC60, void, Rigidbody_Internal_ClosestPointOnBounds_Injected, (Rigidbody * __this, Vector3 * point, Vector3 * outPos, float * distance, MethodInfo * method)); +DO_APP_FUNC(0x02DBBCE0, void, Rigidbody_SweepTest_Injected, (Rigidbody * __this, Vector3 * direction, float maxDistance, QueryTriggerInteraction__Enum queryTriggerInteraction, bool * hasHit, RaycastHit * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DBBD70, RaycastHit__Array *, Rigidbody_Internal_SweepTestAll_Injected, (Rigidbody * __this, Vector3 * direction, float maxDistance, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); DO_APP_FUNC(0x02DBBDF0, bool, Collider_get_enabled, (Collider * __this, MethodInfo * method)); DO_APP_FUNC(0x02DBBE40, void, Collider_set_enabled, (Collider * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x02DBBEA0, Rigidbody *, Collider_get_attachedRigidbody, (Collider * __this, MethodInfo * method)); @@ -113505,15 +125997,15 @@ DO_APP_FUNC(0x02DBC090, PhysicMaterial *, Collider_get_sharedMaterial, (Collider DO_APP_FUNC(0x02DBC0E0, void, Collider_set_sharedMaterial, (Collider * __this, PhysicMaterial * value, MethodInfo * method)); DO_APP_FUNC(0x02DBC140, PhysicMaterial *, Collider_get_material, (Collider * __this, MethodInfo * method)); DO_APP_FUNC(0x02DBC190, void, Collider_set_material, (Collider * __this, PhysicMaterial * value, MethodInfo * method)); -DO_APP_FUNC(0x02DBC1F0, RaycastHit, Collider_Raycast, (Collider * __this, Ray ray, float maxDistance, bool hasHit, MethodInfo * method)); -DO_APP_FUNC(0x02DBC290, bool, Collider_Raycast_1, (Collider * __this, Ray ray, RaycastHit hitInfo, float maxDistance, MethodInfo * method)); -DO_APP_FUNC(0x02DBC380, void, Collider_Internal_ClosestPointOnBounds, (Collider * __this, Vector3 point, Vector3 outPos, float distance, MethodInfo * method)); +DO_APP_FUNC(0x02DBC1F0, RaycastHit, Collider_Raycast, (Collider * __this, Ray ray, float maxDistance, bool * hasHit, MethodInfo * method)); +DO_APP_FUNC(0x02DBC290, bool, Collider_Raycast_1, (Collider * __this, Ray ray, RaycastHit * hitInfo, float maxDistance, MethodInfo * method)); +DO_APP_FUNC(0x02DBC380, void, Collider_Internal_ClosestPointOnBounds, (Collider * __this, Vector3 point, Vector3 * outPos, float * distance, MethodInfo * method)); DO_APP_FUNC(0x02DBC400, Vector3, Collider_ClosestPointOnBounds, (Collider * __this, Vector3 position, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, Collider__ctor, (Collider * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DBC4F0, void, Collider_ClosestPoint_Injected, (Collider * __this, Vector3 position, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02DBC560, void, Collider_get_bounds_Injected, (Collider * __this, Bounds ret, MethodInfo * method)); -DO_APP_FUNC(0x02DBC5C0, void, Collider_Raycast_Injected, (Collider * __this, Ray ray, float maxDistance, bool hasHit, RaycastHit ret, MethodInfo * method)); -DO_APP_FUNC(0x02DBC650, void, Collider_Internal_ClosestPointOnBounds_Injected, (Collider * __this, Vector3 point, Vector3 outPos, float distance, MethodInfo * method)); +DO_APP_FUNC(0x02DBC4F0, void, Collider_ClosestPoint_Injected, (Collider * __this, Vector3 * position, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DBC560, void, Collider_get_bounds_Injected, (Collider * __this, Bounds * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DBC5C0, void, Collider_Raycast_Injected, (Collider * __this, Ray * ray, float maxDistance, bool * hasHit, RaycastHit * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DBC650, void, Collider_Internal_ClosestPointOnBounds_Injected, (Collider * __this, Vector3 * point, Vector3 * outPos, float * distance, MethodInfo * method)); DO_APP_FUNC(0x02DBC6D0, bool, CharacterController_SimpleMove, (CharacterController * __this, Vector3 speed, MethodInfo * method)); DO_APP_FUNC(0x02DBC730, CollisionFlags__Enum, CharacterController_Move, (CharacterController * __this, Vector3 motion, MethodInfo * method)); DO_APP_FUNC(0x02DBC790, Vector3, CharacterController_get_velocity, (CharacterController * __this, MethodInfo * method)); @@ -113528,11 +126020,11 @@ DO_APP_FUNC(0x02DBCA80, float, CharacterController_get_slopeLimit, (CharacterCon DO_APP_FUNC(0x02DBCAD0, void, CharacterController_set_slopeLimit, (CharacterController * __this, float value, MethodInfo * method)); DO_APP_FUNC(0x02DBCB30, float, CharacterController_get_stepOffset, (CharacterController * __this, MethodInfo * method)); DO_APP_FUNC(0x02DBCB80, void, CharacterController_set_stepOffset, (CharacterController * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02DBCBE0, bool, CharacterController_SimpleMove_Injected, (CharacterController * __this, Vector3 speed, MethodInfo * method)); -DO_APP_FUNC(0x02DBCC40, CollisionFlags__Enum, CharacterController_Move_Injected, (CharacterController * __this, Vector3 motion, MethodInfo * method)); -DO_APP_FUNC(0x02DBCCA0, void, CharacterController_get_velocity_Injected, (CharacterController * __this, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02DBCD00, void, CharacterController_get_center_Injected, (CharacterController * __this, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02DBCD60, void, CharacterController_set_center_Injected, (CharacterController * __this, Vector3 value, MethodInfo * method)); +DO_APP_FUNC(0x02DBCBE0, bool, CharacterController_SimpleMove_Injected, (CharacterController * __this, Vector3 * speed, MethodInfo * method)); +DO_APP_FUNC(0x02DBCC40, CollisionFlags__Enum, CharacterController_Move_Injected, (CharacterController * __this, Vector3 * motion, MethodInfo * method)); +DO_APP_FUNC(0x02DBCCA0, void, CharacterController_get_velocity_Injected, (CharacterController * __this, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DBCD00, void, CharacterController_get_center_Injected, (CharacterController * __this, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DBCD60, void, CharacterController_set_center_Injected, (CharacterController * __this, Vector3 * value, MethodInfo * method)); DO_APP_FUNC(0x02DBCDC0, Mesh *, MeshCollider_get_sharedMesh, (MeshCollider * __this, MethodInfo * method)); DO_APP_FUNC(0x02DBCE10, void, MeshCollider_set_sharedMesh, (MeshCollider * __this, Mesh * value, MethodInfo * method)); DO_APP_FUNC(0x02DBCE70, bool, MeshCollider_get_convex, (MeshCollider * __this, MethodInfo * method)); @@ -113555,8 +126047,8 @@ DO_APP_FUNC(0x02DBD1A0, void, CapsuleCollider_set_height, (CapsuleCollider * __t DO_APP_FUNC(0x02DBD200, int32_t, CapsuleCollider_get_direction, (CapsuleCollider * __this, MethodInfo * method)); DO_APP_FUNC(0x02DBD250, void, CapsuleCollider_set_direction, (CapsuleCollider * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, CapsuleCollider__ctor, (CapsuleCollider * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DBD2B0, void, CapsuleCollider_get_center_Injected, (CapsuleCollider * __this, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02DBD310, void, CapsuleCollider_set_center_Injected, (CapsuleCollider * __this, Vector3 value, MethodInfo * method)); +DO_APP_FUNC(0x02DBD2B0, void, CapsuleCollider_get_center_Injected, (CapsuleCollider * __this, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DBD310, void, CapsuleCollider_set_center_Injected, (CapsuleCollider * __this, Vector3 * value, MethodInfo * method)); DO_APP_FUNC(0x02DBD370, Vector3, BoxCollider_get_center, (BoxCollider * __this, MethodInfo * method)); DO_APP_FUNC(0x02DBD3E0, void, BoxCollider_set_center, (BoxCollider * __this, Vector3 value, MethodInfo * method)); DO_APP_FUNC(0x02DBD440, Vector3, BoxCollider_get_size, (BoxCollider * __this, MethodInfo * method)); @@ -113564,19 +126056,19 @@ DO_APP_FUNC(0x02DBD4B0, void, BoxCollider_set_size, (BoxCollider * __this, Vecto DO_APP_FUNC(0x02DBD510, Vector3, BoxCollider_get_extents, (BoxCollider * __this, MethodInfo * method)); DO_APP_FUNC(0x02DBD5C0, void, BoxCollider_set_extents, (BoxCollider * __this, Vector3 value, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, BoxCollider__ctor, (BoxCollider * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DBD660, void, BoxCollider_get_center_Injected, (BoxCollider * __this, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02DBD6C0, void, BoxCollider_set_center_Injected, (BoxCollider * __this, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x02DBD720, void, BoxCollider_get_size_Injected, (BoxCollider * __this, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02DBD780, void, BoxCollider_set_size_Injected, (BoxCollider * __this, Vector3 value, MethodInfo * method)); +DO_APP_FUNC(0x02DBD660, void, BoxCollider_get_center_Injected, (BoxCollider * __this, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DBD6C0, void, BoxCollider_set_center_Injected, (BoxCollider * __this, Vector3 * value, MethodInfo * method)); +DO_APP_FUNC(0x02DBD720, void, BoxCollider_get_size_Injected, (BoxCollider * __this, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DBD780, void, BoxCollider_set_size_Injected, (BoxCollider * __this, Vector3 * value, MethodInfo * method)); DO_APP_FUNC(0x02DBD7E0, Vector3, SphereCollider_get_center, (SphereCollider * __this, MethodInfo * method)); DO_APP_FUNC(0x02DBD850, void, SphereCollider_set_center, (SphereCollider * __this, Vector3 value, MethodInfo * method)); DO_APP_FUNC(0x02DBD8B0, float, SphereCollider_get_radius, (SphereCollider * __this, MethodInfo * method)); DO_APP_FUNC(0x02DBD900, void, SphereCollider_set_radius, (SphereCollider * __this, float value, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, SphereCollider__ctor, (SphereCollider * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DBD960, void, SphereCollider_get_center_Injected, (SphereCollider * __this, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02DBD9C0, void, SphereCollider_set_center_Injected, (SphereCollider * __this, Vector3 value, MethodInfo * method)); +DO_APP_FUNC(0x02DBD960, void, SphereCollider_get_center_Injected, (SphereCollider * __this, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DBD9C0, void, SphereCollider_set_center_Injected, (SphereCollider * __this, Vector3 * value, MethodInfo * method)); DO_APP_FUNC(0x02DBDA20, void, ConstantForce_set_force, (ConstantForce * __this, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x02DBDA80, void, ConstantForce_set_force_Injected, (ConstantForce * __this, Vector3 value, MethodInfo * method)); +DO_APP_FUNC(0x02DBDA80, void, ConstantForce_set_force_Injected, (ConstantForce * __this, Vector3 * value, MethodInfo * method)); DO_APP_FUNC(0x02DBDAE0, Rigidbody *, Joint_get_connectedBody, (Joint * __this, MethodInfo * method)); DO_APP_FUNC(0x02DBDB30, void, Joint_set_connectedBody, (Joint * __this, Rigidbody * value, MethodInfo * method)); DO_APP_FUNC(0x02DBDB90, Vector3, Joint_get_axis, (Joint * __this, MethodInfo * method)); @@ -113593,19 +126085,19 @@ DO_APP_FUNC(0x02DBDF60, float, Joint_get_breakTorque, (Joint * __this, MethodInf DO_APP_FUNC(0x02DBDFB0, void, Joint_set_breakTorque, (Joint * __this, float value, MethodInfo * method)); DO_APP_FUNC(0x02DBE010, bool, Joint_get_enableCollision, (Joint * __this, MethodInfo * method)); DO_APP_FUNC(0x02DBE060, void, Joint_set_enableCollision, (Joint * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02DBE0C0, void, Joint_get_axis_Injected, (Joint * __this, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02DBE120, void, Joint_set_axis_Injected, (Joint * __this, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x02DBE180, void, Joint_get_anchor_Injected, (Joint * __this, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02DBE1E0, void, Joint_set_anchor_Injected, (Joint * __this, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x02DBE240, void, Joint_get_connectedAnchor_Injected, (Joint * __this, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02DBE2A0, void, Joint_set_connectedAnchor_Injected, (Joint * __this, Vector3 value, MethodInfo * method)); +DO_APP_FUNC(0x02DBE0C0, void, Joint_get_axis_Injected, (Joint * __this, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DBE120, void, Joint_set_axis_Injected, (Joint * __this, Vector3 * value, MethodInfo * method)); +DO_APP_FUNC(0x02DBE180, void, Joint_get_anchor_Injected, (Joint * __this, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DBE1E0, void, Joint_set_anchor_Injected, (Joint * __this, Vector3 * value, MethodInfo * method)); +DO_APP_FUNC(0x02DBE240, void, Joint_get_connectedAnchor_Injected, (Joint * __this, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DBE2A0, void, Joint_set_connectedAnchor_Injected, (Joint * __this, Vector3 * value, MethodInfo * method)); DO_APP_FUNC(0x02DBE300, JointLimits, HingeJoint_get_limits, (HingeJoint * __this, MethodInfo * method)); DO_APP_FUNC(0x02DBE370, JointSpring, HingeJoint_get_spring, (HingeJoint * __this, MethodInfo * method)); DO_APP_FUNC(0x02DBE3E0, bool, HingeJoint_get_useMotor, (HingeJoint * __this, MethodInfo * method)); DO_APP_FUNC(0x02DBE430, bool, HingeJoint_get_useLimits, (HingeJoint * __this, MethodInfo * method)); DO_APP_FUNC(0x02DBE480, bool, HingeJoint_get_useSpring, (HingeJoint * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DBE4D0, void, HingeJoint_get_limits_Injected, (HingeJoint * __this, JointLimits ret, MethodInfo * method)); -DO_APP_FUNC(0x02DBE530, void, HingeJoint_get_spring_Injected, (HingeJoint * __this, JointSpring ret, MethodInfo * method)); +DO_APP_FUNC(0x02DBE4D0, void, HingeJoint_get_limits_Injected, (HingeJoint * __this, JointLimits * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DBE530, void, HingeJoint_get_spring_Injected, (HingeJoint * __this, JointSpring * ret, MethodInfo * method)); DO_APP_FUNC(0x02DBE590, float, SpringJoint_get_spring, (SpringJoint * __this, MethodInfo * method)); DO_APP_FUNC(0x02DBE5E0, float, SpringJoint_get_damper, (SpringJoint * __this, MethodInfo * method)); DO_APP_FUNC(0x02DBE630, float, SpringJoint_get_maxDistance, (SpringJoint * __this, MethodInfo * method)); @@ -113624,18 +126116,18 @@ DO_APP_FUNC(0x02DBEAF0, void, CharacterJoint_set_swing2Limit, (CharacterJoint * DO_APP_FUNC(0x02DBEB50, bool, CharacterJoint_get_enableProjection, (CharacterJoint * __this, MethodInfo * method)); DO_APP_FUNC(0x02DBEBA0, float, CharacterJoint_get_projectionDistance, (CharacterJoint * __this, MethodInfo * method)); DO_APP_FUNC(0x02DBEBF0, float, CharacterJoint_get_projectionAngle, (CharacterJoint * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DBEC40, void, CharacterJoint_get_swingAxis_Injected, (CharacterJoint * __this, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02DBECA0, void, CharacterJoint_set_swingAxis_Injected, (CharacterJoint * __this, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x02DBED00, void, CharacterJoint_get_twistLimitSpring_Injected, (CharacterJoint * __this, SoftJointLimitSpring ret, MethodInfo * method)); -DO_APP_FUNC(0x02DBED60, void, CharacterJoint_get_swingLimitSpring_Injected, (CharacterJoint * __this, SoftJointLimitSpring ret, MethodInfo * method)); -DO_APP_FUNC(0x02DBEDC0, void, CharacterJoint_get_lowTwistLimit_Injected, (CharacterJoint * __this, SoftJointLimit ret, MethodInfo * method)); -DO_APP_FUNC(0x02DBEE20, void, CharacterJoint_set_lowTwistLimit_Injected, (CharacterJoint * __this, SoftJointLimit value, MethodInfo * method)); -DO_APP_FUNC(0x02DBEE80, void, CharacterJoint_get_highTwistLimit_Injected, (CharacterJoint * __this, SoftJointLimit ret, MethodInfo * method)); -DO_APP_FUNC(0x02DBEEE0, void, CharacterJoint_set_highTwistLimit_Injected, (CharacterJoint * __this, SoftJointLimit value, MethodInfo * method)); -DO_APP_FUNC(0x02DBEF40, void, CharacterJoint_get_swing1Limit_Injected, (CharacterJoint * __this, SoftJointLimit ret, MethodInfo * method)); -DO_APP_FUNC(0x02DBEFA0, void, CharacterJoint_set_swing1Limit_Injected, (CharacterJoint * __this, SoftJointLimit value, MethodInfo * method)); -DO_APP_FUNC(0x02DBF000, void, CharacterJoint_get_swing2Limit_Injected, (CharacterJoint * __this, SoftJointLimit ret, MethodInfo * method)); -DO_APP_FUNC(0x02DBF060, void, CharacterJoint_set_swing2Limit_Injected, (CharacterJoint * __this, SoftJointLimit value, MethodInfo * method)); +DO_APP_FUNC(0x02DBEC40, void, CharacterJoint_get_swingAxis_Injected, (CharacterJoint * __this, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DBECA0, void, CharacterJoint_set_swingAxis_Injected, (CharacterJoint * __this, Vector3 * value, MethodInfo * method)); +DO_APP_FUNC(0x02DBED00, void, CharacterJoint_get_twistLimitSpring_Injected, (CharacterJoint * __this, SoftJointLimitSpring * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DBED60, void, CharacterJoint_get_swingLimitSpring_Injected, (CharacterJoint * __this, SoftJointLimitSpring * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DBEDC0, void, CharacterJoint_get_lowTwistLimit_Injected, (CharacterJoint * __this, SoftJointLimit * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DBEE20, void, CharacterJoint_set_lowTwistLimit_Injected, (CharacterJoint * __this, SoftJointLimit * value, MethodInfo * method)); +DO_APP_FUNC(0x02DBEE80, void, CharacterJoint_get_highTwistLimit_Injected, (CharacterJoint * __this, SoftJointLimit * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DBEEE0, void, CharacterJoint_set_highTwistLimit_Injected, (CharacterJoint * __this, SoftJointLimit * value, MethodInfo * method)); +DO_APP_FUNC(0x02DBEF40, void, CharacterJoint_get_swing1Limit_Injected, (CharacterJoint * __this, SoftJointLimit * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DBEFA0, void, CharacterJoint_set_swing1Limit_Injected, (CharacterJoint * __this, SoftJointLimit * value, MethodInfo * method)); +DO_APP_FUNC(0x02DBF000, void, CharacterJoint_get_swing2Limit_Injected, (CharacterJoint * __this, SoftJointLimit * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DBF060, void, CharacterJoint_set_swing2Limit_Injected, (CharacterJoint * __this, SoftJointLimit * value, MethodInfo * method)); DO_APP_FUNC(0x02DBF0C0, Vector3, ConfigurableJoint_get_secondaryAxis, (ConfigurableJoint * __this, MethodInfo * method)); DO_APP_FUNC(0x02DBF130, void, ConfigurableJoint_set_secondaryAxis, (ConfigurableJoint * __this, Vector3 value, MethodInfo * method)); DO_APP_FUNC(0x02DBF190, ConfigurableJointMotion__Enum, ConfigurableJoint_get_xMotion, (ConfigurableJoint * __this, MethodInfo * method)); @@ -113666,61 +126158,61 @@ DO_APP_FUNC(0x02DBFA30, void, ConfigurableJoint_set_projectionMode, (Configurabl DO_APP_FUNC(0x02DBFA90, void, ConfigurableJoint_set_projectionDistance, (ConfigurableJoint * __this, float value, MethodInfo * method)); DO_APP_FUNC(0x02DBFAF0, void, ConfigurableJoint_set_projectionAngle, (ConfigurableJoint * __this, float value, MethodInfo * method)); DO_APP_FUNC(0x02DBFB50, void, ConfigurableJoint_set_configuredInWorldSpace, (ConfigurableJoint * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02DBFBB0, void, ConfigurableJoint_get_secondaryAxis_Injected, (ConfigurableJoint * __this, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02DBFC10, void, ConfigurableJoint_set_secondaryAxis_Injected, (ConfigurableJoint * __this, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x02DBFC70, void, ConfigurableJoint_set_linearLimitSpring_Injected, (ConfigurableJoint * __this, SoftJointLimitSpring value, MethodInfo * method)); -DO_APP_FUNC(0x02DBFCD0, void, ConfigurableJoint_set_angularXLimitSpring_Injected, (ConfigurableJoint * __this, SoftJointLimitSpring value, MethodInfo * method)); -DO_APP_FUNC(0x02DBFD30, void, ConfigurableJoint_set_angularYZLimitSpring_Injected, (ConfigurableJoint * __this, SoftJointLimitSpring value, MethodInfo * method)); -DO_APP_FUNC(0x02DBFD90, void, ConfigurableJoint_set_linearLimit_Injected, (ConfigurableJoint * __this, SoftJointLimit value, MethodInfo * method)); -DO_APP_FUNC(0x02DBFDF0, void, ConfigurableJoint_set_lowAngularXLimit_Injected, (ConfigurableJoint * __this, SoftJointLimit value, MethodInfo * method)); -DO_APP_FUNC(0x02DBFE50, void, ConfigurableJoint_set_highAngularXLimit_Injected, (ConfigurableJoint * __this, SoftJointLimit value, MethodInfo * method)); -DO_APP_FUNC(0x02DBFEB0, void, ConfigurableJoint_set_angularYLimit_Injected, (ConfigurableJoint * __this, SoftJointLimit value, MethodInfo * method)); -DO_APP_FUNC(0x02DBFF10, void, ConfigurableJoint_set_angularZLimit_Injected, (ConfigurableJoint * __this, SoftJointLimit value, MethodInfo * method)); -DO_APP_FUNC(0x02DBFF70, void, ConfigurableJoint_set_targetRotation_Injected, (ConfigurableJoint * __this, Quaternion value, MethodInfo * method)); -DO_APP_FUNC(0x02DBFFD0, void, ConfigurableJoint_set_targetAngularVelocity_Injected, (ConfigurableJoint * __this, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x02DC0030, void, ConfigurableJoint_set_slerpDrive_Injected, (ConfigurableJoint * __this, JointDrive value, MethodInfo * method)); -DO_APP_FUNC(0x02CB9C50, Vector3, ContactPoint_get_point, (ContactPoint__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CEB1F0, Vector3, ContactPoint_get_normal, (ContactPoint__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DC0090, String *, PhysicsScene_ToString, (PhysicsScene__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B78450, int32_t, PhysicsScene_GetHashCode, (PhysicsScene__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DC0170, bool, PhysicsScene_Equals, (PhysicsScene__Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x02CE4450, bool, PhysicsScene_Equals_1, (PhysicsScene__Boxed * __this, PhysicsScene other, MethodInfo * method)); -DO_APP_FUNC(0x02DC0200, bool, PhysicsScene_Raycast, (PhysicsScene__Boxed * __this, Vector3 origin, Vector3 direction, float maxDistance, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); +DO_APP_FUNC(0x02DBFBB0, void, ConfigurableJoint_get_secondaryAxis_Injected, (ConfigurableJoint * __this, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DBFC10, void, ConfigurableJoint_set_secondaryAxis_Injected, (ConfigurableJoint * __this, Vector3 * value, MethodInfo * method)); +DO_APP_FUNC(0x02DBFC70, void, ConfigurableJoint_set_linearLimitSpring_Injected, (ConfigurableJoint * __this, SoftJointLimitSpring * value, MethodInfo * method)); +DO_APP_FUNC(0x02DBFCD0, void, ConfigurableJoint_set_angularXLimitSpring_Injected, (ConfigurableJoint * __this, SoftJointLimitSpring * value, MethodInfo * method)); +DO_APP_FUNC(0x02DBFD30, void, ConfigurableJoint_set_angularYZLimitSpring_Injected, (ConfigurableJoint * __this, SoftJointLimitSpring * value, MethodInfo * method)); +DO_APP_FUNC(0x02DBFD90, void, ConfigurableJoint_set_linearLimit_Injected, (ConfigurableJoint * __this, SoftJointLimit * value, MethodInfo * method)); +DO_APP_FUNC(0x02DBFDF0, void, ConfigurableJoint_set_lowAngularXLimit_Injected, (ConfigurableJoint * __this, SoftJointLimit * value, MethodInfo * method)); +DO_APP_FUNC(0x02DBFE50, void, ConfigurableJoint_set_highAngularXLimit_Injected, (ConfigurableJoint * __this, SoftJointLimit * value, MethodInfo * method)); +DO_APP_FUNC(0x02DBFEB0, void, ConfigurableJoint_set_angularYLimit_Injected, (ConfigurableJoint * __this, SoftJointLimit * value, MethodInfo * method)); +DO_APP_FUNC(0x02DBFF10, void, ConfigurableJoint_set_angularZLimit_Injected, (ConfigurableJoint * __this, SoftJointLimit * value, MethodInfo * method)); +DO_APP_FUNC(0x02DBFF70, void, ConfigurableJoint_set_targetRotation_Injected, (ConfigurableJoint * __this, Quaternion * value, MethodInfo * method)); +DO_APP_FUNC(0x02DBFFD0, void, ConfigurableJoint_set_targetAngularVelocity_Injected, (ConfigurableJoint * __this, Vector3 * value, MethodInfo * method)); +DO_APP_FUNC(0x02DC0030, void, ConfigurableJoint_set_slerpDrive_Injected, (ConfigurableJoint * __this, JointDrive * value, MethodInfo * method)); +DO_APP_FUNC(0x02CB9C50, Vector3, ContactPoint_get_point, (ContactPoint * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CEB1F0, Vector3, ContactPoint_get_normal, (ContactPoint * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DC0090, String *, PhysicsScene_ToString, (PhysicsScene * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B78450, int32_t, PhysicsScene_GetHashCode, (PhysicsScene * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DC0170, bool, PhysicsScene_Equals, (PhysicsScene * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x02CE4450, bool, PhysicsScene_Equals_1, (PhysicsScene * __this, PhysicsScene other, MethodInfo * method)); +DO_APP_FUNC(0x02DC0200, bool, PhysicsScene_Raycast, (PhysicsScene * __this, Vector3 origin, Vector3 direction, float maxDistance, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); DO_APP_FUNC(0x02DC03F0, bool, PhysicsScene_Internal_RaycastTest, (PhysicsScene physicsScene, Ray ray, float maxDistance, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); -DO_APP_FUNC(0x02DC0480, bool, PhysicsScene_Raycast_1, (PhysicsScene__Boxed * __this, Vector3 origin, Vector3 direction, RaycastHit hitInfo, float maxDistance, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); -DO_APP_FUNC(0x02DC0690, bool, PhysicsScene_Internal_Raycast, (PhysicsScene physicsScene, Ray ray, float maxDistance, RaycastHit hit, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); -DO_APP_FUNC(0x02DC0720, int32_t, PhysicsScene_Raycast_2, (PhysicsScene__Boxed * __this, Vector3 origin, Vector3 direction, RaycastHit__Array * raycastHits, float maxDistance, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); +DO_APP_FUNC(0x02DC0480, bool, PhysicsScene_Raycast_1, (PhysicsScene * __this, Vector3 origin, Vector3 direction, RaycastHit * hitInfo, float maxDistance, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); +DO_APP_FUNC(0x02DC0690, bool, PhysicsScene_Internal_Raycast, (PhysicsScene physicsScene, Ray ray, float maxDistance, RaycastHit * hit, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); +DO_APP_FUNC(0x02DC0720, int32_t, PhysicsScene_Raycast_2, (PhysicsScene * __this, Vector3 origin, Vector3 direction, RaycastHit__Array * raycastHits, float maxDistance, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); DO_APP_FUNC(0x02DC08F0, int32_t, PhysicsScene_Internal_RaycastNonAlloc, (PhysicsScene physicsScene, Ray ray, RaycastHit__Array * raycastHits, float maxDistance, int32_t mask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); -DO_APP_FUNC(0x02DC0980, bool, PhysicsScene_Query_CapsuleCast, (PhysicsScene physicsScene, Vector3 point1, Vector3 point2, float radius, Vector3 direction, float maxDistance, RaycastHit hitInfo, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); -DO_APP_FUNC(0x02DC0A40, bool, PhysicsScene_Internal_CapsuleCast, (PhysicsScene physicsScene, Vector3 point1, Vector3 point2, float radius, Vector3 direction, RaycastHit hitInfo, float maxDistance, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); -DO_APP_FUNC(0x02DC0BC0, bool, PhysicsScene_CapsuleCast, (PhysicsScene__Boxed * __this, Vector3 point1, Vector3 point2, float radius, Vector3 direction, RaycastHit hitInfo, float maxDistance, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); +DO_APP_FUNC(0x02DC0980, bool, PhysicsScene_Query_CapsuleCast, (PhysicsScene physicsScene, Vector3 point1, Vector3 point2, float radius, Vector3 direction, float maxDistance, RaycastHit * hitInfo, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); +DO_APP_FUNC(0x02DC0A40, bool, PhysicsScene_Internal_CapsuleCast, (PhysicsScene physicsScene, Vector3 point1, Vector3 point2, float radius, Vector3 direction, RaycastHit * hitInfo, float maxDistance, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); +DO_APP_FUNC(0x02DC0BC0, bool, PhysicsScene_CapsuleCast, (PhysicsScene * __this, Vector3 point1, Vector3 point2, float radius, Vector3 direction, RaycastHit * hitInfo, float maxDistance, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); DO_APP_FUNC(0x02DC0D40, int32_t, PhysicsScene_Internal_CapsuleCastNonAlloc, (PhysicsScene physicsScene, Vector3 p0, Vector3 p1, float radius, Vector3 direction, RaycastHit__Array * raycastHits, float maxDistance, int32_t mask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); -DO_APP_FUNC(0x02DC0E00, int32_t, PhysicsScene_CapsuleCast_1, (PhysicsScene__Boxed * __this, Vector3 point1, Vector3 point2, float radius, Vector3 direction, RaycastHit__Array * results, float maxDistance, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); +DO_APP_FUNC(0x02DC0E00, int32_t, PhysicsScene_CapsuleCast_1, (PhysicsScene * __this, Vector3 point1, Vector3 point2, float radius, Vector3 direction, RaycastHit__Array * results, float maxDistance, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); DO_APP_FUNC(0x02DC0F40, int32_t, PhysicsScene_OverlapCapsuleNonAlloc_Internal, (PhysicsScene physicsScene, Vector3 point0, Vector3 point1, float radius, Collider__Array * results, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); -DO_APP_FUNC(0x02DC0FE0, int32_t, PhysicsScene_OverlapCapsule, (PhysicsScene__Boxed * __this, Vector3 point0, Vector3 point1, float radius, Collider__Array * results, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); -DO_APP_FUNC(0x02DC10A0, bool, PhysicsScene_Query_SphereCast, (PhysicsScene physicsScene, Vector3 origin, float radius, Vector3 direction, float maxDistance, RaycastHit hitInfo, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); -DO_APP_FUNC(0x02DC1150, bool, PhysicsScene_Internal_SphereCast, (PhysicsScene physicsScene, Vector3 origin, float radius, Vector3 direction, RaycastHit hitInfo, float maxDistance, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); -DO_APP_FUNC(0x02DC12A0, bool, PhysicsScene_SphereCast, (PhysicsScene__Boxed * __this, Vector3 origin, float radius, Vector3 direction, RaycastHit hitInfo, float maxDistance, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); +DO_APP_FUNC(0x02DC0FE0, int32_t, PhysicsScene_OverlapCapsule, (PhysicsScene * __this, Vector3 point0, Vector3 point1, float radius, Collider__Array * results, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); +DO_APP_FUNC(0x02DC10A0, bool, PhysicsScene_Query_SphereCast, (PhysicsScene physicsScene, Vector3 origin, float radius, Vector3 direction, float maxDistance, RaycastHit * hitInfo, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); +DO_APP_FUNC(0x02DC1150, bool, PhysicsScene_Internal_SphereCast, (PhysicsScene physicsScene, Vector3 origin, float radius, Vector3 direction, RaycastHit * hitInfo, float maxDistance, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); +DO_APP_FUNC(0x02DC12A0, bool, PhysicsScene_SphereCast, (PhysicsScene * __this, Vector3 origin, float radius, Vector3 direction, RaycastHit * hitInfo, float maxDistance, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); DO_APP_FUNC(0x02DC1400, int32_t, PhysicsScene_Internal_SphereCastNonAlloc, (PhysicsScene physicsScene, Vector3 origin, float radius, Vector3 direction, RaycastHit__Array * raycastHits, float maxDistance, int32_t mask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); -DO_APP_FUNC(0x02DC14B0, int32_t, PhysicsScene_SphereCast_1, (PhysicsScene__Boxed * __this, Vector3 origin, float radius, Vector3 direction, RaycastHit__Array * results, float maxDistance, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); +DO_APP_FUNC(0x02DC14B0, int32_t, PhysicsScene_SphereCast_1, (PhysicsScene * __this, Vector3 origin, float radius, Vector3 direction, RaycastHit__Array * results, float maxDistance, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); DO_APP_FUNC(0x02DC15C0, int32_t, PhysicsScene_OverlapSphereNonAlloc_Internal, (PhysicsScene physicsScene, Vector3 position, float radius, Collider__Array * results, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); -DO_APP_FUNC(0x02DC1650, int32_t, PhysicsScene_OverlapSphere, (PhysicsScene__Boxed * __this, Vector3 position, float radius, Collider__Array * results, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); -DO_APP_FUNC(0x02DC16F0, bool, PhysicsScene_Query_BoxCast, (PhysicsScene physicsScene, Vector3 center, Vector3 halfExtents, Vector3 direction, Quaternion orientation, float maxDistance, RaycastHit outHit, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); -DO_APP_FUNC(0x02DC17B0, bool, PhysicsScene_Internal_BoxCast, (PhysicsScene physicsScene, Vector3 center, Vector3 halfExtents, Quaternion orientation, Vector3 direction, RaycastHit hitInfo, float maxDistance, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); -DO_APP_FUNC(0x02DC1930, bool, PhysicsScene_BoxCast, (PhysicsScene__Boxed * __this, Vector3 center, Vector3 halfExtents, Vector3 direction, RaycastHit hitInfo, Quaternion orientation, float maxDistance, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); +DO_APP_FUNC(0x02DC1650, int32_t, PhysicsScene_OverlapSphere, (PhysicsScene * __this, Vector3 position, float radius, Collider__Array * results, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); +DO_APP_FUNC(0x02DC16F0, bool, PhysicsScene_Query_BoxCast, (PhysicsScene physicsScene, Vector3 center, Vector3 halfExtents, Vector3 direction, Quaternion orientation, float maxDistance, RaycastHit * outHit, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); +DO_APP_FUNC(0x02DC17B0, bool, PhysicsScene_Internal_BoxCast, (PhysicsScene physicsScene, Vector3 center, Vector3 halfExtents, Quaternion orientation, Vector3 direction, RaycastHit * hitInfo, float maxDistance, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); +DO_APP_FUNC(0x02DC1930, bool, PhysicsScene_BoxCast, (PhysicsScene * __this, Vector3 center, Vector3 halfExtents, Vector3 direction, RaycastHit * hitInfo, Quaternion orientation, float maxDistance, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); DO_APP_FUNC(0x02DC1AC0, int32_t, PhysicsScene_OverlapBoxNonAlloc_Internal, (PhysicsScene physicsScene, Vector3 center, Vector3 halfExtents, Collider__Array * results, Quaternion orientation, int32_t mask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); -DO_APP_FUNC(0x02DC1B60, int32_t, PhysicsScene_OverlapBox, (PhysicsScene__Boxed * __this, Vector3 center, Vector3 halfExtents, Collider__Array * results, Quaternion orientation, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); -DO_APP_FUNC(0x02DC1C30, bool, PhysicsScene_Internal_RaycastTest_Injected, (PhysicsScene physicsScene, Ray ray, float maxDistance, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); -DO_APP_FUNC(0x02DC1CC0, bool, PhysicsScene_Internal_Raycast_Injected, (PhysicsScene physicsScene, Ray ray, float maxDistance, RaycastHit hit, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); -DO_APP_FUNC(0x02DC1D50, int32_t, PhysicsScene_Internal_RaycastNonAlloc_Injected, (PhysicsScene physicsScene, Ray ray, RaycastHit__Array * raycastHits, float maxDistance, int32_t mask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); -DO_APP_FUNC(0x02DC1DE0, bool, PhysicsScene_Query_CapsuleCast_Injected, (PhysicsScene physicsScene, Vector3 point1, Vector3 point2, float radius, Vector3 direction, float maxDistance, RaycastHit hitInfo, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); -DO_APP_FUNC(0x02DC1E70, int32_t, PhysicsScene_Internal_CapsuleCastNonAlloc_Injected, (PhysicsScene physicsScene, Vector3 p0, Vector3 p1, float radius, Vector3 direction, RaycastHit__Array * raycastHits, float maxDistance, int32_t mask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); -DO_APP_FUNC(0x02DC1F00, int32_t, PhysicsScene_OverlapCapsuleNonAlloc_Internal_Injected, (PhysicsScene physicsScene, Vector3 point0, Vector3 point1, float radius, Collider__Array * results, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); -DO_APP_FUNC(0x02DC1F90, bool, PhysicsScene_Query_SphereCast_Injected, (PhysicsScene physicsScene, Vector3 origin, float radius, Vector3 direction, float maxDistance, RaycastHit hitInfo, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); -DO_APP_FUNC(0x02DC2020, int32_t, PhysicsScene_Internal_SphereCastNonAlloc_Injected, (PhysicsScene physicsScene, Vector3 origin, float radius, Vector3 direction, RaycastHit__Array * raycastHits, float maxDistance, int32_t mask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); -DO_APP_FUNC(0x02DC20B0, int32_t, PhysicsScene_OverlapSphereNonAlloc_Internal_Injected, (PhysicsScene physicsScene, Vector3 position, float radius, Collider__Array * results, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); -DO_APP_FUNC(0x02DC2140, bool, PhysicsScene_Query_BoxCast_Injected, (PhysicsScene physicsScene, Vector3 center, Vector3 halfExtents, Vector3 direction, Quaternion orientation, float maxDistance, RaycastHit outHit, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); -DO_APP_FUNC(0x02DC21D0, int32_t, PhysicsScene_OverlapBoxNonAlloc_Internal_Injected, (PhysicsScene physicsScene, Vector3 center, Vector3 halfExtents, Collider__Array * results, Quaternion orientation, int32_t mask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); +DO_APP_FUNC(0x02DC1B60, int32_t, PhysicsScene_OverlapBox, (PhysicsScene * __this, Vector3 center, Vector3 halfExtents, Collider__Array * results, Quaternion orientation, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); +DO_APP_FUNC(0x02DC1C30, bool, PhysicsScene_Internal_RaycastTest_Injected, (PhysicsScene * physicsScene, Ray * ray, float maxDistance, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); +DO_APP_FUNC(0x02DC1CC0, bool, PhysicsScene_Internal_Raycast_Injected, (PhysicsScene * physicsScene, Ray * ray, float maxDistance, RaycastHit * hit, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); +DO_APP_FUNC(0x02DC1D50, int32_t, PhysicsScene_Internal_RaycastNonAlloc_Injected, (PhysicsScene * physicsScene, Ray * ray, RaycastHit__Array * raycastHits, float maxDistance, int32_t mask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); +DO_APP_FUNC(0x02DC1DE0, bool, PhysicsScene_Query_CapsuleCast_Injected, (PhysicsScene * physicsScene, Vector3 * point1, Vector3 * point2, float radius, Vector3 * direction, float maxDistance, RaycastHit * hitInfo, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); +DO_APP_FUNC(0x02DC1E70, int32_t, PhysicsScene_Internal_CapsuleCastNonAlloc_Injected, (PhysicsScene * physicsScene, Vector3 * p0, Vector3 * p1, float radius, Vector3 * direction, RaycastHit__Array * raycastHits, float maxDistance, int32_t mask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); +DO_APP_FUNC(0x02DC1F00, int32_t, PhysicsScene_OverlapCapsuleNonAlloc_Internal_Injected, (PhysicsScene * physicsScene, Vector3 * point0, Vector3 * point1, float radius, Collider__Array * results, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); +DO_APP_FUNC(0x02DC1F90, bool, PhysicsScene_Query_SphereCast_Injected, (PhysicsScene * physicsScene, Vector3 * origin, float radius, Vector3 * direction, float maxDistance, RaycastHit * hitInfo, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); +DO_APP_FUNC(0x02DC2020, int32_t, PhysicsScene_Internal_SphereCastNonAlloc_Injected, (PhysicsScene * physicsScene, Vector3 * origin, float radius, Vector3 * direction, RaycastHit__Array * raycastHits, float maxDistance, int32_t mask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); +DO_APP_FUNC(0x02DC20B0, int32_t, PhysicsScene_OverlapSphereNonAlloc_Internal_Injected, (PhysicsScene * physicsScene, Vector3 * position, float radius, Collider__Array * results, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); +DO_APP_FUNC(0x02DC2140, bool, PhysicsScene_Query_BoxCast_Injected, (PhysicsScene * physicsScene, Vector3 * center, Vector3 * halfExtents, Vector3 * direction, Quaternion * orientation, float maxDistance, RaycastHit * outHit, int32_t layerMask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); +DO_APP_FUNC(0x02DC21D0, int32_t, PhysicsScene_OverlapBoxNonAlloc_Internal_Injected, (PhysicsScene * physicsScene, Vector3 * center, Vector3 * halfExtents, Collider__Array * results, Quaternion * orientation, int32_t mask, QueryTriggerInteraction__Enum queryTriggerInteraction, MethodInfo * method)); DO_APP_FUNC(0x003F7AE0, void, AndroidJavaRunnable__ctor, (AndroidJavaRunnable * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003CB0B0, void, AndroidJavaRunnable_Invoke, (AndroidJavaRunnable * __this, MethodInfo * method)); DO_APP_FUNC(0x02CBA070, void, AndroidJavaException__ctor, (AndroidJavaException * __this, String * message, String * javaStackTrace, MethodInfo * method)); @@ -113734,6 +126226,7 @@ DO_APP_FUNC(0x02CBA4E0, void, AndroidJavaProxy__ctor, (AndroidJavaProxy * __this DO_APP_FUNC(0x02CBA5E0, void, AndroidJavaProxy__ctor_1, (AndroidJavaProxy * __this, AndroidJavaClass * javaInterface, MethodInfo * method)); DO_APP_FUNC(0x02CBA680, void, AndroidJavaProxy_Finalize, (AndroidJavaProxy * __this, MethodInfo * method)); DO_APP_FUNC(0x02CBA740, AndroidJavaObject *, AndroidJavaProxy_Invoke, (AndroidJavaProxy * __this, String * methodName, Object__Array * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC0D8, AndroidJavaProxy_Invoke__MethodInfo); DO_APP_FUNC(0x02CBB320, AndroidJavaObject *, AndroidJavaProxy_Invoke_1, (AndroidJavaProxy * __this, String * methodName, AndroidJavaObject__Array * javaArgs, MethodInfo * method)); DO_APP_FUNC(0x02CBB500, bool, AndroidJavaProxy_equals, (AndroidJavaProxy * __this, AndroidJavaObject * obj, MethodInfo * method)); DO_APP_FUNC(0x02CBB5D0, int32_t, AndroidJavaProxy_hashCode, (AndroidJavaProxy * __this, MethodInfo * method)); @@ -113748,6 +126241,7 @@ DO_APP_FUNC(0x02475950, void *, AndroidJavaObject_GetRawClass, (AndroidJavaObjec DO_APP_FUNC(0x02CBBAE0, void, AndroidJavaObject_DebugPrint, (AndroidJavaObject * __this, String * msg, MethodInfo * method)); DO_APP_FUNC(0x02CBBB60, void, AndroidJavaObject__AndroidJavaObject, (AndroidJavaObject * __this, String * className, Object__Array * args, MethodInfo * method)); DO_APP_FUNC(0x02CBBF40, void, AndroidJavaObject__ctor_1, (AndroidJavaObject * __this, void * jobject, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC120, AndroidJavaObject__ctor_1__MethodInfo); DO_APP_FUNC(0x003AE050, void, AndroidJavaObject__ctor_2, (AndroidJavaObject * __this, MethodInfo * method)); DO_APP_FUNC(0x0190D730, void, AndroidJavaObject_Finalize, (AndroidJavaObject * __this, MethodInfo * method)); DO_APP_FUNC(0x02CBC110, void, AndroidJavaObject_Dispose_1, (AndroidJavaObject * __this, bool disposing, MethodInfo * method)); @@ -113758,6 +126252,7 @@ DO_APP_FUNC(0x02475950, void *, AndroidJavaObject__GetRawClass, (AndroidJavaObje DO_APP_FUNC(0x02CBC380, void, AndroidJavaClass__ctor, (AndroidJavaClass * __this, String * className, MethodInfo * method)); DO_APP_FUNC(0x02CBC380, void, AndroidJavaClass__AndroidJavaClass, (AndroidJavaClass * __this, String * className, MethodInfo * method)); DO_APP_FUNC(0x02CBC500, void, AndroidJavaClass__ctor_1, (AndroidJavaClass * __this, void * jclass, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC0A8, AndroidJavaClass__ctor_1__MethodInfo); DO_APP_FUNC(0x02016220, bool, AndroidReflection_IsPrimitive, (Type * t, MethodInfo * method)); DO_APP_FUNC(0x02CBC690, bool, AndroidReflection_IsAssignableFrom, (Type * t, Type * from, MethodInfo * method)); DO_APP_FUNC(0x02CBC6C0, void *, AndroidReflection_GetStaticMethodID, (String * clazz, String * methodName, String * signature, MethodInfo * method)); @@ -113774,17 +126269,25 @@ DO_APP_FUNC(0x02CBD400, void *, _AndroidJNIHelper_CreateJavaProxy, (void * playe DO_APP_FUNC(0x02CBD550, void *, _AndroidJNIHelper_CreateJavaRunnable, (AndroidJavaRunnable * jrunnable, MethodInfo * method)); DO_APP_FUNC(0x02CBD740, void *, _AndroidJNIHelper_InvokeJavaProxyMethod, (AndroidJavaProxy * proxy, void * jmethodName, void * jargs, MethodInfo * method)); DO_APP_FUNC(0x02CBDAD0, jvalue__Array *, _AndroidJNIHelper_CreateJNIArgArray, (Object__Array * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC098, _AndroidJNIHelper_CreateJNIArgArray__MethodInfo); DO_APP_FUNC(0x02CBE3D0, Object *, _AndroidJNIHelper_UnboxArray, (AndroidJavaObject * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFBF58, _AndroidJNIHelper_UnboxArray__MethodInfo); DO_APP_FUNC(0x02CBEDE0, Object *, _AndroidJNIHelper_Unbox, (AndroidJavaObject * obj, MethodInfo * method)); DO_APP_FUNC(0x02CBF910, AndroidJavaObject *, _AndroidJNIHelper_Box, (Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFBEC0, _AndroidJNIHelper_Box__MethodInfo); DO_APP_FUNC(0x02CC0840, void, _AndroidJNIHelper_DeleteJNIArgArray, (Object__Array * args, jvalue__Array * jniArgs, MethodInfo * method)); DO_APP_FUNC(0x02CC09C0, void *, _AndroidJNIHelper_ConvertToJNIArray, (Array * array, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFBED0, _AndroidJNIHelper_ConvertToJNIArray__MethodInfo); DO_APP_FUNC(0x02CC1750, void *, _AndroidJNIHelper_GetConstructorID, (void * jclass, Object__Array * args, MethodInfo * method)); DO_APP_FUNC(0x02CC18B0, void *, _AndroidJNIHelper_GetConstructorID_1, (void * jclass, String * signature, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFBF00, _AndroidJNIHelper_GetConstructorID_1__MethodInfo); DO_APP_FUNC(0x02CC1A20, void *, _AndroidJNIHelper_GetMethodID, (void * jclass, String * methodName, String * signature, bool isStatic, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFBEF8, _AndroidJNIHelper_GetMethodID__MethodInfo); DO_APP_FUNC(0x02CC1BA0, void *, _AndroidJNIHelper_GetMethodIDFallback, (void * jclass, String * methodName, String * signature, bool isStatic, MethodInfo * method)); DO_APP_FUNC(0x02CC1C30, void *, _AndroidJNIHelper_GetFieldID, (void * jclass, String * fieldName, String * signature, bool isStatic, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFBE00, _AndroidJNIHelper_GetFieldID__MethodInfo); DO_APP_FUNC(0x02CC1FF0, String *, _AndroidJNIHelper_GetSignature, (Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFBE18, _AndroidJNIHelper_GetSignature__MethodInfo); DO_APP_FUNC(0x02CC2F30, String *, _AndroidJNIHelper_GetSignature_1, (Object__Array * args, MethodInfo * method)); DO_APP_FUNC(0x02CC3070, void *, AndroidJNIHelper_GetConstructorID, (void * javaClass, String * signature, MethodInfo * method)); DO_APP_FUNC(0x02CC3080, void *, AndroidJNIHelper_GetMethodID, (void * javaClass, String * methodName, String * signature, bool isStatic, MethodInfo * method)); @@ -113881,6 +126384,7 @@ DO_APP_FUNC(0x02CC5160, void *, AndroidJNI_NewObjectArray, (int32_t size, void * DO_APP_FUNC(0x02CC51D0, void *, AndroidJNI_GetObjectArrayElement, (void * array, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x02CC5230, void, AndroidJNI_SetObjectArrayElement, (void * array, int32_t index, void * obj, MethodInfo * method)); DO_APP_FUNC(0x02CC52A0, void, AndroidJNISafe_CheckException, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFBC68, AndroidJNISafe_CheckException__MethodInfo); DO_APP_FUNC(0x02CC5550, void, AndroidJNISafe_DeleteGlobalRef, (void * globalref, MethodInfo * method)); DO_APP_FUNC(0x02CC55E0, void, AndroidJNISafe_DeleteWeakGlobalRef, (void * globalref, MethodInfo * method)); DO_APP_FUNC(0x02CC5670, void, AndroidJNISafe_DeleteLocalRef, (void * localref, MethodInfo * method)); @@ -113985,15 +126489,15 @@ DO_APP_FUNC(0x00C01210, String *, SteamFriends_GetPersonaName, (MethodInfo * met DO_APP_FUNC(0x00C012D0, void, SteamFriends_ActivateGameOverlayToUser, (String * pchDialog, CSteamID steamID, MethodInfo * method)); DO_APP_FUNC(0x00C014D0, void, SteamFriends_ActivateGameOverlayInviteDialog, (CSteamID steamIDLobby, MethodInfo * method)); DO_APP_FUNC(0x00C01590, EResult__Enum, SteamInventory_GetResultStatus, (SteamInventoryResult_t resultHandle, MethodInfo * method)); -DO_APP_FUNC(0x00C01650, bool, SteamInventory_GetResultItems, (SteamInventoryResult_t resultHandle, SteamItemDetails_t__Array * pOutItemsArray, uint32_t punOutItemsArraySize, MethodInfo * method)); +DO_APP_FUNC(0x00C01650, bool, SteamInventory_GetResultItems, (SteamInventoryResult_t resultHandle, SteamItemDetails_t__Array * pOutItemsArray, uint32_t * punOutItemsArraySize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8C4F8, SteamInventory_GetResultItems__MethodInfo); DO_APP_FUNC(0x00C017B0, bool, SteamInventory_CheckResultSteamID, (SteamInventoryResult_t resultHandle, CSteamID steamIDExpected, MethodInfo * method)); DO_APP_FUNC(0x00C01890, void, SteamInventory_DestroyResult, (SteamInventoryResult_t resultHandle, MethodInfo * method)); -DO_APP_FUNC(0x00C01950, bool, SteamInventory_GetAllItems, (SteamInventoryResult_t pResultHandle, MethodInfo * method)); -DO_APP_FUNC(0x00C01A20, bool, SteamInventory_SerializeResult, (SteamInventoryResult_t resultHandle, Byte__Array * pOutBuffer, uint32_t punOutBufferSize, MethodInfo * method)); -DO_APP_FUNC(0x00C01B10, bool, SteamInventory_DeserializeResult, (SteamInventoryResult_t pOutResultHandle, Byte__Array * pBuffer, uint32_t unBufferSize, bool bRESERVED_MUST_BE_FALSE, MethodInfo * method)); -DO_APP_FUNC(0x00C01C20, bool, SteamInventory_GrantPromoItems, (SteamInventoryResult_t pResultHandle, MethodInfo * method)); -DO_APP_FUNC(0x00C01CF0, bool, SteamInventory_AddPromoItem, (SteamInventoryResult_t pResultHandle, SteamItemDef_t itemDef, MethodInfo * method)); +DO_APP_FUNC(0x00C01950, bool, SteamInventory_GetAllItems, (SteamInventoryResult_t * pResultHandle, MethodInfo * method)); +DO_APP_FUNC(0x00C01A20, bool, SteamInventory_SerializeResult, (SteamInventoryResult_t resultHandle, Byte__Array * pOutBuffer, uint32_t * punOutBufferSize, MethodInfo * method)); +DO_APP_FUNC(0x00C01B10, bool, SteamInventory_DeserializeResult, (SteamInventoryResult_t * pOutResultHandle, Byte__Array * pBuffer, uint32_t unBufferSize, bool bRESERVED_MUST_BE_FALSE, MethodInfo * method)); +DO_APP_FUNC(0x00C01C20, bool, SteamInventory_GrantPromoItems, (SteamInventoryResult_t * pResultHandle, MethodInfo * method)); +DO_APP_FUNC(0x00C01CF0, bool, SteamInventory_AddPromoItem, (SteamInventoryResult_t * pResultHandle, SteamItemDef_t itemDef, MethodInfo * method)); DO_APP_FUNC(0x00C01DD0, SteamAPICall_t, SteamInventory_StartPurchase, (SteamItemDef_t__Array * pArrayItemDefs, UInt32__Array * punArrayQuantity, uint32_t unArrayLength, MethodInfo * method)); DO_APP_FUNC(0x00C01F00, SteamAPICall_t, SteamInventory_RequestPrices, (MethodInfo * method)); DO_APP_FUNC(0x00C01FF0, uint32_t, SteamInventory_GetNumItemsWithPrices, (MethodInfo * method)); @@ -114012,14 +126516,14 @@ DO_APP_FUNC(0x00C03140, bool, SteamRemoteStorage_FileDelete, (String * pchFile, DO_APP_FUNC(0x00C03350, bool, SteamRemoteStorage_FileExists, (String * pchFile, MethodInfo * method)); DO_APP_FUNC(0x00C03560, int32_t, SteamRemoteStorage_GetFileSize, (String * pchFile, MethodInfo * method)); DO_APP_FUNC(0x00C03760, CSteamID, SteamUser_GetSteamID, (MethodInfo * method)); -DO_APP_FUNC(0x00C03850, HAuthTicket, SteamUser_GetAuthSessionTicket, (Byte__Array * pTicket, int32_t cbMaxTicket, uint32_t pcbTicket, SteamNetworkingIdentity pSteamNetworkingIdentity, MethodInfo * method)); +DO_APP_FUNC(0x00C03850, HAuthTicket, SteamUser_GetAuthSessionTicket, (Byte__Array * pTicket, int32_t cbMaxTicket, uint32_t * pcbTicket, SteamNetworkingIdentity * pSteamNetworkingIdentity, MethodInfo * method)); DO_APP_FUNC(0x00C03A30, void, SteamUser_CancelAuthTicket, (HAuthTicket hAuthTicket, MethodInfo * method)); DO_APP_FUNC(0x00C03AF0, bool, SteamUserStats_RequestCurrentStats, (MethodInfo * method)); -DO_APP_FUNC(0x00C03BB0, bool, SteamUserStats_GetStat, (String * pchName, int32_t pData, MethodInfo * method)); -DO_APP_FUNC(0x00C03DC0, bool, SteamUserStats_GetStat_1, (String * pchName, float pData, MethodInfo * method)); +DO_APP_FUNC(0x00C03BB0, bool, SteamUserStats_GetStat, (String * pchName, int32_t * pData, MethodInfo * method)); +DO_APP_FUNC(0x00C03DC0, bool, SteamUserStats_GetStat_1, (String * pchName, float * pData, MethodInfo * method)); DO_APP_FUNC(0x00C03FD0, bool, SteamUserStats_SetStat, (String * pchName, int32_t nData, MethodInfo * method)); DO_APP_FUNC(0x00C041E0, bool, SteamUserStats_SetStat_1, (String * pchName, float fData, MethodInfo * method)); -DO_APP_FUNC(0x00C043F0, bool, SteamUserStats_GetAchievement, (String * pchName, bool pbAchieved, MethodInfo * method)); +DO_APP_FUNC(0x00C043F0, bool, SteamUserStats_GetAchievement, (String * pchName, bool * pbAchieved, MethodInfo * method)); DO_APP_FUNC(0x00C04610, bool, SteamUserStats_SetAchievement, (String * pchName, MethodInfo * method)); DO_APP_FUNC(0x00C04820, bool, SteamUserStats_ClearAchievement, (String * pchName, MethodInfo * method)); DO_APP_FUNC(0x00C04A30, bool, SteamUserStats_StoreStats, (MethodInfo * method)); @@ -114027,7 +126531,7 @@ DO_APP_FUNC(0x00C04AF0, bool, SteamUserStats_ResetAllStats, (bool bAchievementsT DO_APP_FUNC(0x00C04BC0, AppId_t, SteamUtils_GetAppID, (MethodInfo * method)); DO_APP_FUNC(0x00C04CB0, bool, SteamUtils_IsOverlayEnabled, (MethodInfo * method)); DO_APP_FUNC(0x00C04D70, bool, SteamUtils_ShowGamepadTextInput, (EGamepadTextInputMode__Enum eInputMode, EGamepadTextInputLineMode__Enum eLineInputMode, String * pchDescription, uint32_t unCharMax, String * pchExistingText, MethodInfo * method)); -DO_APP_FUNC(0x00C05090, bool, SteamUtils_GetEnteredGamepadTextInput, (String * pchText, uint32_t cchText, MethodInfo * method)); +DO_APP_FUNC(0x00C05090, bool, SteamUtils_GetEnteredGamepadTextInput, (String * * pchText, uint32_t cchText, MethodInfo * method)); DO_APP_FUNC(0x00C05270, bool, SteamUtils_IsSteamInBigPictureMode, (MethodInfo * method)); DO_APP_FUNC(0x00C05330, bool, SteamUtils_IsSteamRunningOnSteamDeck, (MethodInfo * method)); DO_APP_FUNC(0x00C053F0, bool, SteamUtils_ShowFloatingGamepadTextInput, (EFloatingGamepadTextInputMode__Enum eKeyboardMode, int32_t nTextFieldXPosition, int32_t nTextFieldYPosition, int32_t nTextFieldWidth, int32_t nTextFieldHeight, MethodInfo * method)); @@ -114044,9 +126548,9 @@ DO_APP_FUNC(0x00C05A30, void, NativeMethods_2_SteamAPI_ManualDispatch_Init, (Met DO_APP_FUNC(0x00C05AA0, void, NativeMethods_2_SteamAPI_ManualDispatch_RunFrame, (HSteamPipe hSteamPipe, MethodInfo * method)); DO_APP_FUNC(0x00C05B20, bool, NativeMethods_2_SteamAPI_ManualDispatch_GetNextCallback, (HSteamPipe hSteamPipe, void * pCallbackMsg, MethodInfo * method)); DO_APP_FUNC(0x00C05BB0, void, NativeMethods_2_SteamAPI_ManualDispatch_FreeLastCallback, (HSteamPipe hSteamPipe, MethodInfo * method)); -DO_APP_FUNC(0x00C05C30, bool, NativeMethods_2_SteamAPI_ManualDispatch_GetAPICallResult, (HSteamPipe hSteamPipe, SteamAPICall_t hSteamAPICall, void * pCallback, int32_t cubCallback, int32_t iCallbackExpected, bool pbFailed, MethodInfo * method)); +DO_APP_FUNC(0x00C05C30, bool, NativeMethods_2_SteamAPI_ManualDispatch_GetAPICallResult, (HSteamPipe hSteamPipe, SteamAPICall_t hSteamAPICall, void * pCallback, int32_t cubCallback, int32_t iCallbackExpected, bool * pbFailed, MethodInfo * method)); DO_APP_FUNC(0x00C05D10, int32_t, NativeMethods_2_SteamGameServer_GetHSteamPipe, (MethodInfo * method)); -DO_APP_FUNC(0x00C05D80, bool, NativeMethods_2_SteamAPI_SteamNetworkingIdentity_IsEqualTo, (SteamNetworkingIdentity self, SteamNetworkingIdentity x, MethodInfo * method)); +DO_APP_FUNC(0x00C05D80, bool, NativeMethods_2_SteamAPI_SteamNetworkingIdentity_IsEqualTo, (SteamNetworkingIdentity * self, SteamNetworkingIdentity * x, MethodInfo * method)); DO_APP_FUNC(0x00C05F90, void *, NativeMethods_2_ISteamClient_GetISteamUser, (void * instancePtr, HSteamUser hSteamUser, HSteamPipe hSteamPipe, InteropHelp_UTF8StringHandle * pchVersion, MethodInfo * method)); DO_APP_FUNC(0x00C06080, void *, NativeMethods_2_ISteamClient_GetISteamFriends, (void * instancePtr, HSteamUser hSteamUser, HSteamPipe hSteamPipe, InteropHelp_UTF8StringHandle * pchVersion, MethodInfo * method)); DO_APP_FUNC(0x00C06170, void *, NativeMethods_2_ISteamClient_GetISteamUtils, (void * instancePtr, HSteamPipe hSteamPipe, InteropHelp_UTF8StringHandle * pchVersion, MethodInfo * method)); @@ -114075,14 +126579,14 @@ DO_APP_FUNC(0x00C075B0, void *, NativeMethods_2_ISteamFriends_GetPersonaName, (v DO_APP_FUNC(0x00C07630, void, NativeMethods_2_ISteamFriends_ActivateGameOverlayToUser, (void * instancePtr, InteropHelp_UTF8StringHandle * pchDialog, CSteamID steamID, MethodInfo * method)); DO_APP_FUNC(0x00C07710, void, NativeMethods_2_ISteamFriends_ActivateGameOverlayInviteDialog, (void * instancePtr, CSteamID steamIDLobby, MethodInfo * method)); DO_APP_FUNC(0x00C077A0, EResult__Enum, NativeMethods_2_ISteamInventory_GetResultStatus, (void * instancePtr, SteamInventoryResult_t resultHandle, MethodInfo * method)); -DO_APP_FUNC(0x00C07830, bool, NativeMethods_2_ISteamInventory_GetResultItems, (void * instancePtr, SteamInventoryResult_t resultHandle, SteamItemDetails_t__Array * pOutItemsArray, uint32_t punOutItemsArraySize, MethodInfo * method)); +DO_APP_FUNC(0x00C07830, bool, NativeMethods_2_ISteamInventory_GetResultItems, (void * instancePtr, SteamInventoryResult_t resultHandle, SteamItemDetails_t__Array * pOutItemsArray, uint32_t * punOutItemsArraySize, MethodInfo * method)); DO_APP_FUNC(0x00C078E0, bool, NativeMethods_2_ISteamInventory_CheckResultSteamID, (void * instancePtr, SteamInventoryResult_t resultHandle, CSteamID steamIDExpected, MethodInfo * method)); DO_APP_FUNC(0x00C07980, void, NativeMethods_2_ISteamInventory_DestroyResult, (void * instancePtr, SteamInventoryResult_t resultHandle, MethodInfo * method)); -DO_APP_FUNC(0x00C07A10, bool, NativeMethods_2_ISteamInventory_GetAllItems, (void * instancePtr, SteamInventoryResult_t pResultHandle, MethodInfo * method)); -DO_APP_FUNC(0x00C07AA0, bool, NativeMethods_2_ISteamInventory_SerializeResult, (void * instancePtr, SteamInventoryResult_t resultHandle, Byte__Array * pOutBuffer, uint32_t punOutBufferSize, MethodInfo * method)); -DO_APP_FUNC(0x00C07B50, bool, NativeMethods_2_ISteamInventory_DeserializeResult, (void * instancePtr, SteamInventoryResult_t pOutResultHandle, Byte__Array * pBuffer, uint32_t unBufferSize, bool bRESERVED_MUST_BE_FALSE, MethodInfo * method)); -DO_APP_FUNC(0x00C07C10, bool, NativeMethods_2_ISteamInventory_GrantPromoItems, (void * instancePtr, SteamInventoryResult_t pResultHandle, MethodInfo * method)); -DO_APP_FUNC(0x00C07CA0, bool, NativeMethods_2_ISteamInventory_AddPromoItem, (void * instancePtr, SteamInventoryResult_t pResultHandle, SteamItemDef_t itemDef, MethodInfo * method)); +DO_APP_FUNC(0x00C07A10, bool, NativeMethods_2_ISteamInventory_GetAllItems, (void * instancePtr, SteamInventoryResult_t * pResultHandle, MethodInfo * method)); +DO_APP_FUNC(0x00C07AA0, bool, NativeMethods_2_ISteamInventory_SerializeResult, (void * instancePtr, SteamInventoryResult_t resultHandle, Byte__Array * pOutBuffer, uint32_t * punOutBufferSize, MethodInfo * method)); +DO_APP_FUNC(0x00C07B50, bool, NativeMethods_2_ISteamInventory_DeserializeResult, (void * instancePtr, SteamInventoryResult_t * pOutResultHandle, Byte__Array * pBuffer, uint32_t unBufferSize, bool bRESERVED_MUST_BE_FALSE, MethodInfo * method)); +DO_APP_FUNC(0x00C07C10, bool, NativeMethods_2_ISteamInventory_GrantPromoItems, (void * instancePtr, SteamInventoryResult_t * pResultHandle, MethodInfo * method)); +DO_APP_FUNC(0x00C07CA0, bool, NativeMethods_2_ISteamInventory_AddPromoItem, (void * instancePtr, SteamInventoryResult_t * pResultHandle, SteamItemDef_t itemDef, MethodInfo * method)); DO_APP_FUNC(0x00C07D40, uint64_t, NativeMethods_2_ISteamInventory_StartPurchase, (void * instancePtr, SteamItemDef_t__Array * pArrayItemDefs, UInt32__Array * punArrayQuantity, uint32_t unArrayLength, MethodInfo * method)); DO_APP_FUNC(0x00C07E00, uint64_t, NativeMethods_2_ISteamInventory_RequestPrices, (void * instancePtr, MethodInfo * method)); DO_APP_FUNC(0x00C07E80, uint32_t, NativeMethods_2_ISteamInventory_GetNumItemsWithPrices, (void * instancePtr, MethodInfo * method)); @@ -114100,14 +126604,14 @@ DO_APP_FUNC(0x00C08730, bool, NativeMethods_2_ISteamRemoteStorage_FileDelete, (v DO_APP_FUNC(0x00C08810, bool, NativeMethods_2_ISteamRemoteStorage_FileExists, (void * instancePtr, InteropHelp_UTF8StringHandle * pchFile, MethodInfo * method)); DO_APP_FUNC(0x00C088F0, int32_t, NativeMethods_2_ISteamRemoteStorage_GetFileSize, (void * instancePtr, InteropHelp_UTF8StringHandle * pchFile, MethodInfo * method)); DO_APP_FUNC(0x00C089D0, uint64_t, NativeMethods_2_ISteamUser_GetSteamID, (void * instancePtr, MethodInfo * method)); -DO_APP_FUNC(0x00C08A50, uint32_t, NativeMethods_2_ISteamUser_GetAuthSessionTicket, (void * instancePtr, Byte__Array * pTicket, int32_t cbMaxTicket, uint32_t pcbTicket, SteamNetworkingIdentity pSteamNetworkingIdentity, MethodInfo * method)); +DO_APP_FUNC(0x00C08A50, uint32_t, NativeMethods_2_ISteamUser_GetAuthSessionTicket, (void * instancePtr, Byte__Array * pTicket, int32_t cbMaxTicket, uint32_t * pcbTicket, SteamNetworkingIdentity * pSteamNetworkingIdentity, MethodInfo * method)); DO_APP_FUNC(0x00C08BC0, void, NativeMethods_2_ISteamUser_CancelAuthTicket, (void * instancePtr, HAuthTicket hAuthTicket, MethodInfo * method)); DO_APP_FUNC(0x00C08C50, bool, NativeMethods_2_ISteamUserStats_RequestCurrentStats, (void * instancePtr, MethodInfo * method)); -DO_APP_FUNC(0x00C08CD0, bool, NativeMethods_2_ISteamUserStats_GetStatInt32, (void * instancePtr, InteropHelp_UTF8StringHandle * pchName, int32_t pData, MethodInfo * method)); -DO_APP_FUNC(0x00C08DC0, bool, NativeMethods_2_ISteamUserStats_GetStatFloat, (void * instancePtr, InteropHelp_UTF8StringHandle * pchName, float pData, MethodInfo * method)); +DO_APP_FUNC(0x00C08CD0, bool, NativeMethods_2_ISteamUserStats_GetStatInt32, (void * instancePtr, InteropHelp_UTF8StringHandle * pchName, int32_t * pData, MethodInfo * method)); +DO_APP_FUNC(0x00C08DC0, bool, NativeMethods_2_ISteamUserStats_GetStatFloat, (void * instancePtr, InteropHelp_UTF8StringHandle * pchName, float * pData, MethodInfo * method)); DO_APP_FUNC(0x00C08EB0, bool, NativeMethods_2_ISteamUserStats_SetStatInt32, (void * instancePtr, InteropHelp_UTF8StringHandle * pchName, int32_t nData, MethodInfo * method)); DO_APP_FUNC(0x00C08FA0, bool, NativeMethods_2_ISteamUserStats_SetStatFloat, (void * instancePtr, InteropHelp_UTF8StringHandle * pchName, float fData, MethodInfo * method)); -DO_APP_FUNC(0x00C09090, bool, NativeMethods_2_ISteamUserStats_GetAchievement, (void * instancePtr, InteropHelp_UTF8StringHandle * pchName, bool pbAchieved, MethodInfo * method)); +DO_APP_FUNC(0x00C09090, bool, NativeMethods_2_ISteamUserStats_GetAchievement, (void * instancePtr, InteropHelp_UTF8StringHandle * pchName, bool * pbAchieved, MethodInfo * method)); DO_APP_FUNC(0x00C09190, bool, NativeMethods_2_ISteamUserStats_SetAchievement, (void * instancePtr, InteropHelp_UTF8StringHandle * pchName, MethodInfo * method)); DO_APP_FUNC(0x00C09270, bool, NativeMethods_2_ISteamUserStats_ClearAchievement, (void * instancePtr, InteropHelp_UTF8StringHandle * pchName, MethodInfo * method)); DO_APP_FUNC(0x00C09350, bool, NativeMethods_2_ISteamUserStats_StoreStats, (void * instancePtr, MethodInfo * method)); @@ -114119,8 +126623,8 @@ DO_APP_FUNC(0x00C096F0, bool, NativeMethods_2_ISteamUtils_GetEnteredGamepadTextI DO_APP_FUNC(0x00C09790, bool, NativeMethods_2_ISteamUtils_IsSteamInBigPictureMode, (void * instancePtr, MethodInfo * method)); DO_APP_FUNC(0x00C09810, bool, NativeMethods_2_ISteamUtils_IsSteamRunningOnSteamDeck, (void * instancePtr, MethodInfo * method)); DO_APP_FUNC(0x00C09890, bool, NativeMethods_2_ISteamUtils_ShowFloatingGamepadTextInput, (void * instancePtr, EFloatingGamepadTextInputMode__Enum eKeyboardMode, int32_t nTextFieldXPosition, int32_t nTextFieldYPosition, int32_t nTextFieldWidth, int32_t nTextFieldHeight, MethodInfo * method)); -DO_APP_FUNC(0x00C09950, String *, SteamInventoryRequestPricesResult_t_get_m_rgchCurrency, (SteamInventoryRequestPricesResult_t__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C099D0, String *, UserAchievementStored_t_get_m_rgchAchievementName, (UserAchievementStored_t__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C09950, String *, SteamInventoryRequestPricesResult_t_get_m_rgchCurrency, (SteamInventoryRequestPricesResult_t * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C099D0, String *, UserAchievementStored_t_get_m_rgchAchievementName, (UserAchievementStored_t * __this, MethodInfo * method)); DO_APP_FUNC(0x00C09A50, void, CallbackDispatcher_ExceptionHandler, (Exception * e, MethodInfo * method)); DO_APP_FUNC(0x00C09AA0, bool, CallbackDispatcher_get_IsInitialized, (MethodInfo * method)); DO_APP_FUNC(0x00C09B00, void, CallbackDispatcher_Initialize, (MethodInfo * method)); @@ -114168,123 +126672,123 @@ DO_APP_FUNC(0x00C0EC20, void *, CSteamAPIContext_GetSteamRemoteStorage, (MethodI DO_APP_FUNC(0x00C0EC60, void *, CSteamAPIContext_GetSteamInventory, (MethodInfo * method)); DO_APP_FUNC(0x003F4EB0, void, SteamAPIWarningMessageHook_t__ctor, (SteamAPIWarningMessageHook_t * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EC2D0, void, SteamAPIWarningMessageHook_t_Invoke, (SteamAPIWarningMessageHook_t * __this, int32_t nSeverity, StringBuilder * pchDebugText, MethodInfo * method)); -DO_APP_FUNC(0x00C0ECA0, void, CGameID__ctor, (CGameID__Boxed * __this, AppId_t nAppID, MethodInfo * method)); -DO_APP_FUNC(0x00C0ECB0, void, CGameID_SetAppID, (CGameID__Boxed * __this, AppId_t other, MethodInfo * method)); -DO_APP_FUNC(0x00C0ED20, String *, CGameID_ToString, (CGameID__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C0ED30, bool, CGameID_Equals, (CGameID__Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x00A9A680, int32_t, CGameID_GetHashCode, (CGameID__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C0ECA0, void, CGameID__ctor, (CGameID * __this, AppId_t nAppID, MethodInfo * method)); +DO_APP_FUNC(0x00C0ECB0, void, CGameID_SetAppID, (CGameID * __this, AppId_t other, MethodInfo * method)); +DO_APP_FUNC(0x00C0ED20, String *, CGameID_ToString, (CGameID * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C0ED30, bool, CGameID_Equals, (CGameID * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x00A9A680, int32_t, CGameID_GetHashCode, (CGameID * __this, MethodInfo * method)); DO_APP_FUNC(0x00A89090, bool, CGameID_op_Equality, (CGameID x, CGameID y, MethodInfo * method)); DO_APP_FUNC(0x00A1B820, uint64_t, CGameID_op_Explicit, (CGameID that, MethodInfo * method)); -DO_APP_FUNC(0x00A9A720, bool, CGameID_Equals_1, (CGameID__Boxed * __this, CGameID other, MethodInfo * method)); -DO_APP_FUNC(0x00C0EDC0, int32_t, CGameID_CompareTo, (CGameID__Boxed * __this, CGameID other, MethodInfo * method)); -DO_APP_FUNC(0x00C0EDE0, void, CSteamID__ctor, (CSteamID__Boxed * __this, AccountID_t unAccountID, uint32_t unAccountInstance, EUniverse__Enum eUniverse, EAccountType__Enum eAccountType, MethodInfo * method)); -DO_APP_FUNC(0x00A9A2A0, void, CSteamID__ctor_1, (CSteamID__Boxed * __this, uint64_t ulSteamID, MethodInfo * method)); -DO_APP_FUNC(0x00C0EE70, void, CSteamID_InstancedSet, (CSteamID__Boxed * __this, AccountID_t unAccountID, uint32_t unInstance, EUniverse__Enum eUniverse, EAccountType__Enum eAccountType, MethodInfo * method)); -DO_APP_FUNC(0x00C0EF30, void, CSteamID_Clear, (CSteamID__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C0EF40, void, CSteamID_SetAccountID, (CSteamID__Boxed * __this, AccountID_t other, MethodInfo * method)); -DO_APP_FUNC(0x00C0EF60, void, CSteamID_SetAccountInstance, (CSteamID__Boxed * __this, uint32_t other, MethodInfo * method)); -DO_APP_FUNC(0x00C0EF90, void, CSteamID_SetEAccountType, (CSteamID__Boxed * __this, EAccountType__Enum other, MethodInfo * method)); -DO_APP_FUNC(0x00C0EFC0, void, CSteamID_SetEUniverse, (CSteamID__Boxed * __this, EUniverse__Enum other, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, AccountID_t, CSteamID_GetAccountID, (CSteamID__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C0EFE0, uint32_t, CSteamID_GetUnAccountInstance, (CSteamID__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C0EFF0, EAccountType__Enum, CSteamID_GetEAccountType, (CSteamID__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C0F000, EUniverse__Enum, CSteamID_GetEUniverse, (CSteamID__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C0F010, bool, CSteamID_IsValid, (CSteamID__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C0ED20, String *, CSteamID_ToString, (CSteamID__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C0F1E0, bool, CSteamID_Equals, (CSteamID__Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x00A9A680, int32_t, CSteamID_GetHashCode, (CSteamID__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9A720, bool, CGameID_Equals_1, (CGameID * __this, CGameID other, MethodInfo * method)); +DO_APP_FUNC(0x00C0EDC0, int32_t, CGameID_CompareTo, (CGameID * __this, CGameID other, MethodInfo * method)); +DO_APP_FUNC(0x00C0EDE0, void, CSteamID__ctor, (CSteamID * __this, AccountID_t unAccountID, uint32_t unAccountInstance, EUniverse__Enum eUniverse, EAccountType__Enum eAccountType, MethodInfo * method)); +DO_APP_FUNC(0x00A9A2A0, void, CSteamID__ctor_1, (CSteamID * __this, uint64_t ulSteamID, MethodInfo * method)); +DO_APP_FUNC(0x00C0EE70, void, CSteamID_InstancedSet, (CSteamID * __this, AccountID_t unAccountID, uint32_t unInstance, EUniverse__Enum eUniverse, EAccountType__Enum eAccountType, MethodInfo * method)); +DO_APP_FUNC(0x00C0EF30, void, CSteamID_Clear, (CSteamID * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C0EF40, void, CSteamID_SetAccountID, (CSteamID * __this, AccountID_t other, MethodInfo * method)); +DO_APP_FUNC(0x00C0EF60, void, CSteamID_SetAccountInstance, (CSteamID * __this, uint32_t other, MethodInfo * method)); +DO_APP_FUNC(0x00C0EF90, void, CSteamID_SetEAccountType, (CSteamID * __this, EAccountType__Enum other, MethodInfo * method)); +DO_APP_FUNC(0x00C0EFC0, void, CSteamID_SetEUniverse, (CSteamID * __this, EUniverse__Enum other, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, AccountID_t, CSteamID_GetAccountID, (CSteamID * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C0EFE0, uint32_t, CSteamID_GetUnAccountInstance, (CSteamID * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C0EFF0, EAccountType__Enum, CSteamID_GetEAccountType, (CSteamID * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C0F000, EUniverse__Enum, CSteamID_GetEUniverse, (CSteamID * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C0F010, bool, CSteamID_IsValid, (CSteamID * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C0ED20, String *, CSteamID_ToString, (CSteamID * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C0F1E0, bool, CSteamID_Equals, (CSteamID * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x00A9A680, int32_t, CSteamID_GetHashCode, (CSteamID * __this, MethodInfo * method)); DO_APP_FUNC(0x00A89090, bool, CSteamID_op_Equality, (CSteamID x, CSteamID y, MethodInfo * method)); DO_APP_FUNC(0x00A1B820, CSteamID, CSteamID_op_Explicit, (uint64_t value, MethodInfo * method)); -DO_APP_FUNC(0x00A9A720, bool, CSteamID_Equals_1, (CSteamID__Boxed * __this, CSteamID other, MethodInfo * method)); -DO_APP_FUNC(0x00C0EDC0, int32_t, CSteamID_CompareTo, (CSteamID__Boxed * __this, CSteamID other, MethodInfo * method)); +DO_APP_FUNC(0x00A9A720, bool, CSteamID_Equals_1, (CSteamID * __this, CSteamID other, MethodInfo * method)); +DO_APP_FUNC(0x00C0EDC0, int32_t, CSteamID_CompareTo, (CSteamID * __this, CSteamID other, MethodInfo * method)); DO_APP_FUNC(0x00C0F280, void, CSteamID__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x00959BA0, void, HAuthTicket__ctor, (HAuthTicket__Boxed * __this, uint32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00C0F480, String *, HAuthTicket_ToString, (HAuthTicket__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C0F490, bool, HAuthTicket_Equals, (HAuthTicket__Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, HAuthTicket_GetHashCode, (HAuthTicket__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00959BA0, void, HAuthTicket__ctor, (HAuthTicket * __this, uint32_t value, MethodInfo * method)); +DO_APP_FUNC(0x00C0F480, String *, HAuthTicket_ToString, (HAuthTicket * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C0F490, bool, HAuthTicket_Equals, (HAuthTicket * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, HAuthTicket_GetHashCode, (HAuthTicket * __this, MethodInfo * method)); DO_APP_FUNC(0x00AFE200, bool, HAuthTicket_op_Equality, (HAuthTicket x, HAuthTicket y, MethodInfo * method)); DO_APP_FUNC(0x00C0F530, bool, HAuthTicket_op_Inequality, (HAuthTicket x, HAuthTicket y, MethodInfo * method)); DO_APP_FUNC(0x00959BB0, HAuthTicket, HAuthTicket_op_Explicit, (uint32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00C0F590, bool, HAuthTicket_Equals_1, (HAuthTicket__Boxed * __this, HAuthTicket other, MethodInfo * method)); -DO_APP_FUNC(0x00C0F5A0, int32_t, HAuthTicket_CompareTo, (HAuthTicket__Boxed * __this, HAuthTicket other, MethodInfo * method)); +DO_APP_FUNC(0x00C0F590, bool, HAuthTicket_Equals_1, (HAuthTicket * __this, HAuthTicket other, MethodInfo * method)); +DO_APP_FUNC(0x00C0F5A0, int32_t, HAuthTicket_CompareTo, (HAuthTicket * __this, HAuthTicket other, MethodInfo * method)); DO_APP_FUNC(0x00C0F5C0, void, HAuthTicket__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x00959BA0, void, SteamInventoryResult_t__ctor, (SteamInventoryResult_t__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00959C30, String *, SteamInventoryResult_t_ToString, (SteamInventoryResult_t__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C0F600, bool, SteamInventoryResult_t_Equals, (SteamInventoryResult_t__Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, SteamInventoryResult_t_GetHashCode, (SteamInventoryResult_t__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00959BA0, void, SteamInventoryResult_t__ctor, (SteamInventoryResult_t * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x00959C30, String *, SteamInventoryResult_t_ToString, (SteamInventoryResult_t * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C0F600, bool, SteamInventoryResult_t_Equals, (SteamInventoryResult_t * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, SteamInventoryResult_t_GetHashCode, (SteamInventoryResult_t * __this, MethodInfo * method)); DO_APP_FUNC(0x00AFE200, bool, SteamInventoryResult_t_op_Equality, (SteamInventoryResult_t x, SteamInventoryResult_t y, MethodInfo * method)); DO_APP_FUNC(0x00C0F6A0, bool, SteamInventoryResult_t_op_Inequality, (SteamInventoryResult_t x, SteamInventoryResult_t y, MethodInfo * method)); -DO_APP_FUNC(0x00C0F590, bool, SteamInventoryResult_t_Equals_1, (SteamInventoryResult_t__Boxed * __this, SteamInventoryResult_t other, MethodInfo * method)); -DO_APP_FUNC(0x00C0F700, int32_t, SteamInventoryResult_t_CompareTo, (SteamInventoryResult_t__Boxed * __this, SteamInventoryResult_t other, MethodInfo * method)); +DO_APP_FUNC(0x00C0F590, bool, SteamInventoryResult_t_Equals_1, (SteamInventoryResult_t * __this, SteamInventoryResult_t other, MethodInfo * method)); +DO_APP_FUNC(0x00C0F700, int32_t, SteamInventoryResult_t_CompareTo, (SteamInventoryResult_t * __this, SteamInventoryResult_t other, MethodInfo * method)); DO_APP_FUNC(0x00C0F720, void, SteamInventoryResult_t__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x00959C30, String *, SteamItemDef_t_ToString, (SteamItemDef_t__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C0F760, bool, SteamItemDef_t_Equals, (SteamItemDef_t__Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, SteamItemDef_t_GetHashCode, (SteamItemDef_t__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00959C30, String *, SteamItemDef_t_ToString, (SteamItemDef_t * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C0F760, bool, SteamItemDef_t_Equals, (SteamItemDef_t * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, SteamItemDef_t_GetHashCode, (SteamItemDef_t * __this, MethodInfo * method)); DO_APP_FUNC(0x00AFE200, bool, SteamItemDef_t_op_Equality, (SteamItemDef_t x, SteamItemDef_t y, MethodInfo * method)); -DO_APP_FUNC(0x00C0F590, bool, SteamItemDef_t_Equals_1, (SteamItemDef_t__Boxed * __this, SteamItemDef_t other, MethodInfo * method)); -DO_APP_FUNC(0x00C0F700, int32_t, SteamItemDef_t_CompareTo, (SteamItemDef_t__Boxed * __this, SteamItemDef_t other, MethodInfo * method)); -DO_APP_FUNC(0x00A9A2A0, void, SteamItemInstanceID_t__ctor, (SteamItemInstanceID_t__Boxed * __this, uint64_t value, MethodInfo * method)); -DO_APP_FUNC(0x00C0ED20, String *, SteamItemInstanceID_t_ToString, (SteamItemInstanceID_t__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C0F7F0, bool, SteamItemInstanceID_t_Equals, (SteamItemInstanceID_t__Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x00A9A680, int32_t, SteamItemInstanceID_t_GetHashCode, (SteamItemInstanceID_t__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C0F590, bool, SteamItemDef_t_Equals_1, (SteamItemDef_t * __this, SteamItemDef_t other, MethodInfo * method)); +DO_APP_FUNC(0x00C0F700, int32_t, SteamItemDef_t_CompareTo, (SteamItemDef_t * __this, SteamItemDef_t other, MethodInfo * method)); +DO_APP_FUNC(0x00A9A2A0, void, SteamItemInstanceID_t__ctor, (SteamItemInstanceID_t * __this, uint64_t value, MethodInfo * method)); +DO_APP_FUNC(0x00C0ED20, String *, SteamItemInstanceID_t_ToString, (SteamItemInstanceID_t * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C0F7F0, bool, SteamItemInstanceID_t_Equals, (SteamItemInstanceID_t * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x00A9A680, int32_t, SteamItemInstanceID_t_GetHashCode, (SteamItemInstanceID_t * __this, MethodInfo * method)); DO_APP_FUNC(0x00A89090, bool, SteamItemInstanceID_t_op_Equality, (SteamItemInstanceID_t x, SteamItemInstanceID_t y, MethodInfo * method)); -DO_APP_FUNC(0x00A9A720, bool, SteamItemInstanceID_t_Equals_1, (SteamItemInstanceID_t__Boxed * __this, SteamItemInstanceID_t other, MethodInfo * method)); -DO_APP_FUNC(0x00C0EDC0, int32_t, SteamItemInstanceID_t_CompareTo, (SteamItemInstanceID_t__Boxed * __this, SteamItemInstanceID_t other, MethodInfo * method)); +DO_APP_FUNC(0x00A9A720, bool, SteamItemInstanceID_t_Equals_1, (SteamItemInstanceID_t * __this, SteamItemInstanceID_t other, MethodInfo * method)); +DO_APP_FUNC(0x00C0EDC0, int32_t, SteamItemInstanceID_t_CompareTo, (SteamItemInstanceID_t * __this, SteamItemInstanceID_t other, MethodInfo * method)); DO_APP_FUNC(0x00C0F890, void, SteamItemInstanceID_t__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x00C05D80, bool, SteamNetworkingIdentity_Equals, (SteamNetworkingIdentity__Boxed * __this, SteamNetworkingIdentity x, MethodInfo * method)); -DO_APP_FUNC(0x00A9A2A0, void, PublishedFileId_t__ctor, (PublishedFileId_t__Boxed * __this, uint64_t value, MethodInfo * method)); -DO_APP_FUNC(0x00C0ED20, String *, PublishedFileId_t_ToString, (PublishedFileId_t__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C0F8D0, bool, PublishedFileId_t_Equals, (PublishedFileId_t__Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x00A9A680, int32_t, PublishedFileId_t_GetHashCode, (PublishedFileId_t__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C05D80, bool, SteamNetworkingIdentity_Equals, (SteamNetworkingIdentity * __this, SteamNetworkingIdentity x, MethodInfo * method)); +DO_APP_FUNC(0x00A9A2A0, void, PublishedFileId_t__ctor, (PublishedFileId_t * __this, uint64_t value, MethodInfo * method)); +DO_APP_FUNC(0x00C0ED20, String *, PublishedFileId_t_ToString, (PublishedFileId_t * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C0F8D0, bool, PublishedFileId_t_Equals, (PublishedFileId_t * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x00A9A680, int32_t, PublishedFileId_t_GetHashCode, (PublishedFileId_t * __this, MethodInfo * method)); DO_APP_FUNC(0x00A89090, bool, PublishedFileId_t_op_Equality, (PublishedFileId_t x, PublishedFileId_t y, MethodInfo * method)); -DO_APP_FUNC(0x00A9A720, bool, PublishedFileId_t_Equals_1, (PublishedFileId_t__Boxed * __this, PublishedFileId_t other, MethodInfo * method)); -DO_APP_FUNC(0x00C0EDC0, int32_t, PublishedFileId_t_CompareTo, (PublishedFileId_t__Boxed * __this, PublishedFileId_t other, MethodInfo * method)); +DO_APP_FUNC(0x00A9A720, bool, PublishedFileId_t_Equals_1, (PublishedFileId_t * __this, PublishedFileId_t other, MethodInfo * method)); +DO_APP_FUNC(0x00C0EDC0, int32_t, PublishedFileId_t_CompareTo, (PublishedFileId_t * __this, PublishedFileId_t other, MethodInfo * method)); DO_APP_FUNC(0x00C0F970, void, PublishedFileId_t__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x00959BA0, void, AccountID_t__ctor, (AccountID_t__Boxed * __this, uint32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00C0F480, String *, AccountID_t_ToString, (AccountID_t__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C0F9B0, bool, AccountID_t_Equals, (AccountID_t__Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, AccountID_t_GetHashCode, (AccountID_t__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00959BA0, void, AccountID_t__ctor, (AccountID_t * __this, uint32_t value, MethodInfo * method)); +DO_APP_FUNC(0x00C0F480, String *, AccountID_t_ToString, (AccountID_t * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C0F9B0, bool, AccountID_t_Equals, (AccountID_t * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, AccountID_t_GetHashCode, (AccountID_t * __this, MethodInfo * method)); DO_APP_FUNC(0x00AFE200, bool, AccountID_t_op_Equality, (AccountID_t x, AccountID_t y, MethodInfo * method)); DO_APP_FUNC(0x00959BB0, uint32_t, AccountID_t_op_Explicit, (AccountID_t that, MethodInfo * method)); -DO_APP_FUNC(0x00C0F590, bool, AccountID_t_Equals_1, (AccountID_t__Boxed * __this, AccountID_t other, MethodInfo * method)); -DO_APP_FUNC(0x00C0F5A0, int32_t, AccountID_t_CompareTo, (AccountID_t__Boxed * __this, AccountID_t other, MethodInfo * method)); -DO_APP_FUNC(0x00959BA0, void, AppId_t__ctor, (AppId_t__Boxed * __this, uint32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00C0F480, String *, AppId_t_ToString, (AppId_t__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C0FA40, bool, AppId_t_Equals, (AppId_t__Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, AppId_t_GetHashCode, (AppId_t__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C0F590, bool, AccountID_t_Equals_1, (AccountID_t * __this, AccountID_t other, MethodInfo * method)); +DO_APP_FUNC(0x00C0F5A0, int32_t, AccountID_t_CompareTo, (AccountID_t * __this, AccountID_t other, MethodInfo * method)); +DO_APP_FUNC(0x00959BA0, void, AppId_t__ctor, (AppId_t * __this, uint32_t value, MethodInfo * method)); +DO_APP_FUNC(0x00C0F480, String *, AppId_t_ToString, (AppId_t * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C0FA40, bool, AppId_t_Equals, (AppId_t * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, AppId_t_GetHashCode, (AppId_t * __this, MethodInfo * method)); DO_APP_FUNC(0x00AFE200, bool, AppId_t_op_Equality, (AppId_t x, AppId_t y, MethodInfo * method)); DO_APP_FUNC(0x00959BB0, AppId_t, AppId_t_op_Explicit, (uint32_t value, MethodInfo * method)); DO_APP_FUNC(0x00959BB0, uint32_t, AppId_t_op_Explicit_1, (AppId_t that, MethodInfo * method)); -DO_APP_FUNC(0x00C0F590, bool, AppId_t_Equals_1, (AppId_t__Boxed * __this, AppId_t other, MethodInfo * method)); -DO_APP_FUNC(0x00C0F5A0, int32_t, AppId_t_CompareTo, (AppId_t__Boxed * __this, AppId_t other, MethodInfo * method)); +DO_APP_FUNC(0x00C0F590, bool, AppId_t_Equals_1, (AppId_t * __this, AppId_t other, MethodInfo * method)); +DO_APP_FUNC(0x00C0F5A0, int32_t, AppId_t_CompareTo, (AppId_t * __this, AppId_t other, MethodInfo * method)); DO_APP_FUNC(0x00C0FAE0, void, AppId_t__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x00A9A2A0, void, SteamAPICall_t__ctor, (SteamAPICall_t__Boxed * __this, uint64_t value, MethodInfo * method)); -DO_APP_FUNC(0x00C0ED20, String *, SteamAPICall_t_ToString, (SteamAPICall_t__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C0FB20, bool, SteamAPICall_t_Equals, (SteamAPICall_t__Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x00A9A680, int32_t, SteamAPICall_t_GetHashCode, (SteamAPICall_t__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9A2A0, void, SteamAPICall_t__ctor, (SteamAPICall_t * __this, uint64_t value, MethodInfo * method)); +DO_APP_FUNC(0x00C0ED20, String *, SteamAPICall_t_ToString, (SteamAPICall_t * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C0FB20, bool, SteamAPICall_t_Equals, (SteamAPICall_t * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x00A9A680, int32_t, SteamAPICall_t_GetHashCode, (SteamAPICall_t * __this, MethodInfo * method)); DO_APP_FUNC(0x00A89090, bool, SteamAPICall_t_op_Equality, (SteamAPICall_t x, SteamAPICall_t y, MethodInfo * method)); DO_APP_FUNC(0x00C0FBC0, bool, SteamAPICall_t_op_Inequality, (SteamAPICall_t x, SteamAPICall_t y, MethodInfo * method)); DO_APP_FUNC(0x00A1B820, SteamAPICall_t, SteamAPICall_t_op_Explicit, (uint64_t value, MethodInfo * method)); DO_APP_FUNC(0x00A1B820, uint64_t, SteamAPICall_t_op_Explicit_1, (SteamAPICall_t that, MethodInfo * method)); -DO_APP_FUNC(0x00A9A720, bool, SteamAPICall_t_Equals_1, (SteamAPICall_t__Boxed * __this, SteamAPICall_t other, MethodInfo * method)); -DO_APP_FUNC(0x00C0EDC0, int32_t, SteamAPICall_t_CompareTo, (SteamAPICall_t__Boxed * __this, SteamAPICall_t other, MethodInfo * method)); +DO_APP_FUNC(0x00A9A720, bool, SteamAPICall_t_Equals_1, (SteamAPICall_t * __this, SteamAPICall_t other, MethodInfo * method)); +DO_APP_FUNC(0x00C0EDC0, int32_t, SteamAPICall_t_CompareTo, (SteamAPICall_t * __this, SteamAPICall_t other, MethodInfo * method)); DO_APP_FUNC(0x00C0FC20, void, SteamAPICall_t__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x00959BA0, void, HSteamPipe__ctor, (HSteamPipe__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00959C30, String *, HSteamPipe_ToString, (HSteamPipe__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C0FC60, bool, HSteamPipe_Equals, (HSteamPipe__Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, HSteamPipe_GetHashCode, (HSteamPipe__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00959BA0, void, HSteamPipe__ctor, (HSteamPipe * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x00959C30, String *, HSteamPipe_ToString, (HSteamPipe * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C0FC60, bool, HSteamPipe_Equals, (HSteamPipe * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, HSteamPipe_GetHashCode, (HSteamPipe * __this, MethodInfo * method)); DO_APP_FUNC(0x00AFE200, bool, HSteamPipe_op_Equality, (HSteamPipe x, HSteamPipe y, MethodInfo * method)); DO_APP_FUNC(0x00959BB0, HSteamPipe, HSteamPipe_op_Explicit, (int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00C0F590, bool, HSteamPipe_Equals_1, (HSteamPipe__Boxed * __this, HSteamPipe other, MethodInfo * method)); -DO_APP_FUNC(0x00C0F700, int32_t, HSteamPipe_CompareTo, (HSteamPipe__Boxed * __this, HSteamPipe other, MethodInfo * method)); -DO_APP_FUNC(0x00959BA0, void, HSteamUser__ctor, (HSteamUser__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00959C30, String *, HSteamUser_ToString, (HSteamUser__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C0FCF0, bool, HSteamUser_Equals, (HSteamUser__Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, HSteamUser_GetHashCode, (HSteamUser__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C0F590, bool, HSteamPipe_Equals_1, (HSteamPipe * __this, HSteamPipe other, MethodInfo * method)); +DO_APP_FUNC(0x00C0F700, int32_t, HSteamPipe_CompareTo, (HSteamPipe * __this, HSteamPipe other, MethodInfo * method)); +DO_APP_FUNC(0x00959BA0, void, HSteamUser__ctor, (HSteamUser * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x00959C30, String *, HSteamUser_ToString, (HSteamUser * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C0FCF0, bool, HSteamUser_Equals, (HSteamUser * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, HSteamUser_GetHashCode, (HSteamUser * __this, MethodInfo * method)); DO_APP_FUNC(0x00AFE200, bool, HSteamUser_op_Equality, (HSteamUser x, HSteamUser y, MethodInfo * method)); DO_APP_FUNC(0x00959BB0, HSteamUser, HSteamUser_op_Explicit, (int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00C0F590, bool, HSteamUser_Equals_1, (HSteamUser__Boxed * __this, HSteamUser other, MethodInfo * method)); -DO_APP_FUNC(0x00C0F700, int32_t, HSteamUser_CompareTo, (HSteamUser__Boxed * __this, HSteamUser other, MethodInfo * method)); +DO_APP_FUNC(0x00C0F590, bool, HSteamUser_Equals_1, (HSteamUser * __this, HSteamUser other, MethodInfo * method)); +DO_APP_FUNC(0x00C0F700, int32_t, HSteamUser_CompareTo, (HSteamUser * __this, HSteamUser other, MethodInfo * method)); DO_APP_FUNC(0x01E006F0, void, PolyTree__ctor, (PolyTree * __this, MethodInfo * method)); DO_APP_FUNC(0x01E007C0, void, PolyTree_Finalize, (PolyTree * __this, MethodInfo * method)); DO_APP_FUNC(0x01E00800, void, PolyTree_Clear, (PolyTree * __this, MethodInfo * method)); @@ -114294,10 +126798,10 @@ DO_APP_FUNC(0x003BB3D0, List_1_Pathfinding_ClipperLib_IntPoint_ *, PolyNode_get_ DO_APP_FUNC(0x01E00B90, void, PolyNode_AddChild, (PolyNode * __this, PolyNode * Child, MethodInfo * method)); DO_APP_FUNC(0x003BB3B0, List_1_Pathfinding_ClipperLib_PolyNode_ *, PolyNode_get_Childs, (PolyNode * __this, MethodInfo * method)); DO_APP_FUNC(0x00A474A0, void, PolyNode_set_IsOpen, (PolyNode * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x00BDC700, void, Int128__ctor, (Int128__Boxed * __this, int64_t _lo, MethodInfo * method)); -DO_APP_FUNC(0x00BDC710, void, Int128__ctor_1, (Int128__Boxed * __this, int64_t _hi, uint64_t _lo, MethodInfo * method)); -DO_APP_FUNC(0x01E00C60, bool, Int128_Equals, (Int128__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x00BDC940, int32_t, Int128_GetHashCode, (Int128__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00BDC700, void, Int128__ctor, (Int128 * __this, int64_t _lo, MethodInfo * method)); +DO_APP_FUNC(0x00BDC710, void, Int128__ctor_1, (Int128 * __this, int64_t _hi, uint64_t _lo, MethodInfo * method)); +DO_APP_FUNC(0x01E00C60, bool, Int128_Equals, (Int128 * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x00BDC940, int32_t, Int128_GetHashCode, (Int128 * __this, MethodInfo * method)); DO_APP_FUNC(0x01E00D00, Int128, Int128_Int128Mul, (int64_t lhs, int64_t rhs, MethodInfo * method)); DO_APP_FUNC(0x01E00DD0, bool, Int128_op_Equality, (Int128 val1, Int128 val2, MethodInfo * method)); DO_APP_FUNC(0x00BDC960, bool, Int128_op_GreaterThan, (Int128 val1, Int128 val2, MethodInfo * method)); @@ -114306,10 +126810,11 @@ DO_APP_FUNC(0x01E00E90, Int128, Int128_op_Addition, (Int128 lhs, Int128 rhs, Met DO_APP_FUNC(0x01E00EC0, Int128, Int128_op_Subtraction, (Int128 lhs, Int128 rhs, MethodInfo * method)); DO_APP_FUNC(0x00BDCA40, Int128, Int128_op_UnaryNegation, (Int128 val, MethodInfo * method)); DO_APP_FUNC(0x01E00F20, Int128, Int128_op_Division, (Int128 lhs, Int128 rhs, MethodInfo * method)); -DO_APP_FUNC(0x00BDCC10, void, IntPoint__ctor, (IntPoint__Boxed * __this, int64_t X, int64_t Y, MethodInfo * method)); -DO_APP_FUNC(0x00BDBF90, void, IntPoint__ctor_1, (IntPoint__Boxed * __this, IntPoint pt, MethodInfo * method)); -DO_APP_FUNC(0x01E012D0, bool, IntPoint_Equals, (IntPoint__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x01E01370, int32_t, IntPoint_GetHashCode, (IntPoint__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC328, Int128_op_Division__MethodInfo); +DO_APP_FUNC(0x00BDCC10, void, IntPoint__ctor, (IntPoint * __this, int64_t X, int64_t Y, MethodInfo * method)); +DO_APP_FUNC(0x00BDBF90, void, IntPoint__ctor_1, (IntPoint * __this, IntPoint pt, MethodInfo * method)); +DO_APP_FUNC(0x01E012D0, bool, IntPoint_Equals, (IntPoint * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x01E01370, int32_t, IntPoint_GetHashCode, (IntPoint * __this, MethodInfo * method)); DO_APP_FUNC(0x01E013D0, bool, IntPoint_op_Equality, (IntPoint a, IntPoint b, MethodInfo * method)); DO_APP_FUNC(0x01E013F0, bool, IntPoint_op_Inequality, (IntPoint a, IntPoint b, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TEdge__ctor, (TEdge * __this, MethodInfo * method)); @@ -114330,10 +126835,12 @@ DO_APP_FUNC(0x01E01B90, bool, ClipperBase_SlopesEqual, (TEdge * e1, TEdge * e2, DO_APP_FUNC(0x01E01D00, bool, ClipperBase_SlopesEqual_1, (IntPoint pt1, IntPoint pt2, IntPoint pt3, bool UseFullRange, MethodInfo * method)); DO_APP_FUNC(0x01E01E40, void, ClipperBase_Clear, (ClipperBase * __this, MethodInfo * method)); DO_APP_FUNC(0x00BDDA90, void, ClipperBase_DisposeLocalMinimaList, (ClipperBase * __this, MethodInfo * method)); -DO_APP_FUNC(0x01E02140, void, ClipperBase_RangeTest, (ClipperBase * __this, IntPoint Pt, bool useFullRange, MethodInfo * method)); +DO_APP_FUNC(0x01E02140, void, ClipperBase_RangeTest, (ClipperBase * __this, IntPoint Pt, bool * useFullRange, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC360, ClipperBase_RangeTest__MethodInfo); DO_APP_FUNC(0x00BDDCB0, void, ClipperBase_InitEdge, (ClipperBase * __this, TEdge * e, TEdge * eNext, TEdge * ePrev, IntPoint pt, MethodInfo * method)); DO_APP_FUNC(0x00BDDD90, void, ClipperBase_InitEdge2, (ClipperBase * __this, TEdge * e, PolyType__Enum polyType, MethodInfo * method)); DO_APP_FUNC(0x01E02220, bool, ClipperBase_AddPath, (ClipperBase * __this, List_1_Pathfinding_ClipperLib_IntPoint_ * pg, PolyType__Enum polyType, bool Closed, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC278, ClipperBase_AddPath__MethodInfo); DO_APP_FUNC(0x01E031C0, bool, ClipperBase_AddPolygon, (ClipperBase * __this, List_1_Pathfinding_ClipperLib_IntPoint_ * pg, PolyType__Enum polyType, MethodInfo * method)); DO_APP_FUNC(0x01E031E0, bool, ClipperBase_Pt2IsBetweenPt1AndPt3, (ClipperBase * __this, IntPoint pt1, IntPoint pt2, IntPoint pt3, MethodInfo * method)); DO_APP_FUNC(0x00BDF9B0, TEdge *, ClipperBase_RemoveEdge, (ClipperBase * __this, TEdge * e, MethodInfo * method)); @@ -114346,8 +126853,8 @@ DO_APP_FUNC(0x01E036E0, bool, ClipperBase_MoreAbove, (ClipperBase * __this, TEdg DO_APP_FUNC(0x01E037A0, bool, ClipperBase_AllHorizontal, (ClipperBase * __this, TEdge * Edge, MethodInfo * method)); DO_APP_FUNC(0x00BDFB00, void, ClipperBase_SetDx, (ClipperBase * __this, TEdge * e, MethodInfo * method)); DO_APP_FUNC(0x01E037F0, void, ClipperBase_DoMinimaLML, (ClipperBase * __this, TEdge * E1, TEdge * E2, bool IsClosed, MethodInfo * method)); -DO_APP_FUNC(0x01E03BB0, TEdge *, ClipperBase_DescendToMin, (ClipperBase * __this, TEdge * E, MethodInfo * method)); -DO_APP_FUNC(0x01E03E90, void, ClipperBase_AscendToMax, (ClipperBase * __this, TEdge * E, bool Appending, bool IsClosed, MethodInfo * method)); +DO_APP_FUNC(0x01E03BB0, TEdge *, ClipperBase_DescendToMin, (ClipperBase * __this, TEdge * * E, MethodInfo * method)); +DO_APP_FUNC(0x01E03E90, void, ClipperBase_AscendToMax, (ClipperBase * __this, TEdge * * E, bool Appending, bool IsClosed, MethodInfo * method)); DO_APP_FUNC(0x01E040E0, TEdge *, ClipperBase_AddBoundsToLML, (ClipperBase * __this, TEdge * E, bool Closed, MethodInfo * method)); DO_APP_FUNC(0x00BDFB60, void, ClipperBase_InsertLocalMinima, (ClipperBase * __this, LocalMinima * newLm, MethodInfo * method)); DO_APP_FUNC(0x01E04380, void, ClipperBase_PopLocalMinima, (ClipperBase * __this, MethodInfo * method)); @@ -114362,6 +126869,7 @@ DO_APP_FUNC(0x005D9100, bool, Clipper_get_StrictlySimple, (Clipper * __this, Met DO_APP_FUNC(0x005D9110, void, Clipper_set_StrictlySimple, (Clipper * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x01E04F30, void, Clipper_InsertScanbeam, (Clipper * __this, int64_t Y, MethodInfo * method)); DO_APP_FUNC(0x01E05240, bool, Clipper_Execute, (Clipper * __this, ClipType__Enum clipType, List_1_List_1_Pathfinding_ClipperLib_IntPoint_ * solution, PolyFillType__Enum subjFillType, PolyFillType__Enum clipFillType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC2D8, Clipper_Execute__MethodInfo); DO_APP_FUNC(0x01E05370, bool, Clipper_Execute_1, (Clipper * __this, ClipType__Enum clipType, PolyTree * polytree, PolyFillType__Enum subjFillType, PolyFillType__Enum clipFillType, MethodInfo * method)); DO_APP_FUNC(0x00BE24E0, void, Clipper_FixHoleLinkage, (Clipper * __this, OutRec * outRec, MethodInfo * method)); DO_APP_FUNC(0x01E053F0, bool, Clipper_ExecuteInternal, (Clipper * __this, MethodInfo * method)); @@ -114401,17 +126909,21 @@ DO_APP_FUNC(0x00BE6D60, void, Clipper_SwapPolyIndexes, (TEdge * edge1, TEdge * e DO_APP_FUNC(0x01E09A20, void, Clipper_IntersectEdges, (Clipper * __this, TEdge * e1, TEdge * e2, IntPoint pt, bool protect, MethodInfo * method)); DO_APP_FUNC(0x01E09FD0, void, Clipper_DeleteFromAEL, (Clipper * __this, TEdge * e, MethodInfo * method)); DO_APP_FUNC(0x01E0A1F0, void, Clipper_DeleteFromSEL, (Clipper * __this, TEdge * e, MethodInfo * method)); -DO_APP_FUNC(0x01E0A410, void, Clipper_UpdateEdgeIntoAEL, (Clipper * __this, TEdge * e, MethodInfo * method)); +DO_APP_FUNC(0x01E0A410, void, Clipper_UpdateEdgeIntoAEL, (Clipper * __this, TEdge * * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC040, Clipper_UpdateEdgeIntoAEL__MethodInfo); DO_APP_FUNC(0x01E0A7F0, void, Clipper_ProcessHorizontals, (Clipper * __this, bool isTopOfScanbeam, MethodInfo * method)); -DO_APP_FUNC(0x00BE7810, void, Clipper_GetHorzDirection, (Clipper * __this, TEdge * HorzEdge, Direction__Enum Dir, int64_t Left, int64_t Right, MethodInfo * method)); +DO_APP_FUNC(0x00BE7810, void, Clipper_GetHorzDirection, (Clipper * __this, TEdge * HorzEdge, Direction__Enum * Dir, int64_t * Left, int64_t * Right, MethodInfo * method)); DO_APP_FUNC(0x01E0AA50, void, Clipper_PrepareHorzJoins, (Clipper * __this, TEdge * horzEdge, bool isTopOfScanbeam, MethodInfo * method)); DO_APP_FUNC(0x01E0ACA0, void, Clipper_ProcessHorizontal, (Clipper * __this, TEdge * horzEdge, bool isTopOfScanbeam, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC018, Clipper_ProcessHorizontal__MethodInfo); DO_APP_FUNC(0x01E0B2D0, TEdge *, Clipper_GetNextInAEL, (Clipper * __this, TEdge * e, Direction__Enum Direction, MethodInfo * method)); DO_APP_FUNC(0x01E0B300, bool, Clipper_IsMaxima, (Clipper * __this, TEdge * e, double Y, MethodInfo * method)); DO_APP_FUNC(0x01E0B330, bool, Clipper_IsIntermediate, (Clipper * __this, TEdge * e, double Y, MethodInfo * method)); DO_APP_FUNC(0x01E0B370, TEdge *, Clipper_GetMaximaPair, (Clipper * __this, TEdge * e, MethodInfo * method)); DO_APP_FUNC(0x01E0B430, bool, Clipper_ProcessIntersections, (Clipper * __this, int64_t botY, int64_t topY, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDBFF0, Clipper_ProcessIntersections__MethodInfo); DO_APP_FUNC(0x01E0B670, void, Clipper_BuildIntersectList, (Clipper * __this, int64_t botY, int64_t topY, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDBFC0, Clipper_BuildIntersectList__MethodInfo); DO_APP_FUNC(0x01E0BB00, bool, Clipper_EdgesAdjacent, (Clipper * __this, IntersectNode * inode, MethodInfo * method)); DO_APP_FUNC(0x01E0BB50, bool, Clipper_FixupIntersectionOrder, (Clipper * __this, MethodInfo * method)); DO_APP_FUNC(0x01E0BD40, void, Clipper_ProcessIntersectList, (Clipper * __this, MethodInfo * method)); @@ -114419,19 +126931,20 @@ DO_APP_FUNC(0x01E0BEB0, int64_t, Clipper_Round, (double value, MethodInfo * meth DO_APP_FUNC(0x01E0BEE0, int64_t, Clipper_TopX, (TEdge * edge, int64_t currentY, MethodInfo * method)); DO_APP_FUNC(0x01E0BF50, void, Clipper_InsertIntersectNode, (Clipper * __this, TEdge * e1, TEdge * e2, IntPoint pt, MethodInfo * method)); DO_APP_FUNC(0x01E0C2B0, void, Clipper_SwapIntersectNodes, (Clipper * __this, IntersectNode * int1, IntersectNode * int2, MethodInfo * method)); -DO_APP_FUNC(0x01E0C460, bool, Clipper_IntersectPoint, (Clipper * __this, TEdge * edge1, TEdge * edge2, IntPoint ip, MethodInfo * method)); +DO_APP_FUNC(0x01E0C460, bool, Clipper_IntersectPoint, (Clipper * __this, TEdge * edge1, TEdge * edge2, IntPoint * ip, MethodInfo * method)); DO_APP_FUNC(0x01E0C820, void, Clipper_DisposeIntersectNodes, (Clipper * __this, MethodInfo * method)); DO_APP_FUNC(0x01E0C910, void, Clipper_ProcessEdgesAtTopOfScanbeam, (Clipper * __this, int64_t topY, MethodInfo * method)); DO_APP_FUNC(0x01E0CDB0, void, Clipper_DoMaxima, (Clipper * __this, TEdge * e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC0C8, Clipper_DoMaxima__MethodInfo); DO_APP_FUNC(0x01E0CF60, bool, Clipper_Orientation, (List_1_Pathfinding_ClipperLib_IntPoint_ * poly, MethodInfo * method)); DO_APP_FUNC(0x00BE9F70, int32_t, Clipper_PointCount, (Clipper * __this, OutPt * pts, MethodInfo * method)); DO_APP_FUNC(0x01E0CF80, void, Clipper_BuildResult, (Clipper * __this, List_1_List_1_Pathfinding_ClipperLib_IntPoint_ * polyg, MethodInfo * method)); DO_APP_FUNC(0x01E0D1D0, void, Clipper_BuildResult2, (Clipper * __this, PolyTree * polytree, MethodInfo * method)); DO_APP_FUNC(0x01E0D540, void, Clipper_FixupOutPolygon, (Clipper * __this, OutRec * outRec, MethodInfo * method)); DO_APP_FUNC(0x01E0D830, OutPt *, Clipper_DupOutPt, (Clipper * __this, OutPt * outPt, bool InsertAfter, MethodInfo * method)); -DO_APP_FUNC(0x01E0DB70, bool, Clipper_GetOverlap, (Clipper * __this, int64_t a1, int64_t a2, int64_t b1, int64_t b2, int64_t Left, int64_t Right, MethodInfo * method)); +DO_APP_FUNC(0x01E0DB70, bool, Clipper_GetOverlap, (Clipper * __this, int64_t a1, int64_t a2, int64_t b1, int64_t b2, int64_t * Left, int64_t * Right, MethodInfo * method)); DO_APP_FUNC(0x01E0DC90, bool, Clipper_JoinHorz, (Clipper * __this, OutPt * op1, OutPt * op1b, OutPt * op2, OutPt * op2b, IntPoint Pt, bool DiscardLeft, MethodInfo * method)); -DO_APP_FUNC(0x01E0E2C0, bool, Clipper_JoinPoints, (Clipper * __this, Join * j, OutPt * p1, OutPt * p2, MethodInfo * method)); +DO_APP_FUNC(0x01E0E2C0, bool, Clipper_JoinPoints, (Clipper * __this, Join * j, OutPt * * p1, OutPt * * p2, MethodInfo * method)); DO_APP_FUNC(0x01E0F850, bool, Clipper_Poly2ContainsPoly1, (Clipper * __this, OutPt * outPt1, OutPt * outPt2, bool UseFullRange, MethodInfo * method)); DO_APP_FUNC(0x01E0F930, void, Clipper_FixupFirstLefts1, (Clipper * __this, OutRec * OldOutRec, OutRec * NewOutRec, MethodInfo * method)); DO_APP_FUNC(0x01E0FA60, void, Clipper_FixupFirstLefts2, (Clipper * __this, OutRec * OldOutRec, OutRec * NewOutRec, MethodInfo * method)); @@ -114462,14 +126975,14 @@ DO_APP_FUNC_METHODINFO(0x03C92A90, CubicBezierCurve_GetSampleAtDistance__MethodI DO_APP_FUNC(0x0227F6F0, void, CubicBezierCurve_AssertTimeInBounds, (float time, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C92AA8, CubicBezierCurve_AssertTimeInBounds__MethodInfo); DO_APP_FUNC(0x0227F7B0, CurveSample, CubicBezierCurve_GetProjectionSample, (CubicBezierCurve * __this, Vector3 pointToProject, MethodInfo * method)); -DO_APP_FUNC(0x02280050, Quaternion, CurveSample_get_Rotation, (CurveSample__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x022803D0, void, CurveSample__ctor, (CurveSample__Boxed * __this, Vector3 location, Vector3 tangent, Vector3 up, Vector2 scale, float roll, float distanceInCurve, float timeInCurve, MethodInfo * method)); -DO_APP_FUNC(0x02280480, bool, CurveSample_Equals, (CurveSample__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x022806F0, int32_t, CurveSample_GetHashCode, (CurveSample__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02280050, Quaternion, CurveSample_get_Rotation, (CurveSample * __this, MethodInfo * method)); +DO_APP_FUNC(0x022803D0, void, CurveSample__ctor, (CurveSample * __this, Vector3 location, Vector3 tangent, Vector3 up, Vector2 scale, float roll, float distanceInCurve, float timeInCurve, MethodInfo * method)); +DO_APP_FUNC(0x02280480, bool, CurveSample_Equals, (CurveSample * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x022806F0, int32_t, CurveSample_GetHashCode, (CurveSample * __this, MethodInfo * method)); DO_APP_FUNC(0x02280770, bool, CurveSample_op_Equality, (CurveSample cs1, CurveSample cs2, MethodInfo * method)); DO_APP_FUNC(0x02280800, bool, CurveSample_op_Inequality, (CurveSample cs1, CurveSample cs2, MethodInfo * method)); DO_APP_FUNC(0x02280890, CurveSample, CurveSample_Lerp, (CurveSample a, CurveSample b, float t, MethodInfo * method)); -DO_APP_FUNC(0x02280CA0, MeshVertex *, CurveSample_GetBent, (CurveSample__Boxed * __this, MeshVertex * vert, MethodInfo * method)); +DO_APP_FUNC(0x02280CA0, MeshVertex *, CurveSample_GetBent, (CurveSample * __this, MeshVertex * vert, MethodInfo * method)); DO_APP_FUNC(0x00421700, bool, Spline_1_get_IsLoop, (Spline_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02281640, void, Spline_1_set_IsLoop, (Spline_1 * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x02281650, void, Spline_1_add_NodeListChanged, (Spline_1 * __this, ListChangeHandler_1_SplineNode_ * value, MethodInfo * method)); @@ -114644,22 +127157,22 @@ DO_APP_FUNC(0x0228E8D0, Vector3, MeshBender_c__FillStretch_b__27_1, (MeshBender_ DO_APP_FUNC_METHODINFO(0x03C920D0, MeshBender_c__FillStretch_b__27_1__MethodInfo); DO_APP_FUNC(0x022919D0, void, MeshVertex__ctor, (MeshVertex * __this, Vector3 position, Vector3 normal, Vector2 uv, MethodInfo * method)); DO_APP_FUNC(0x02291A00, void, MeshVertex__ctor_1, (MeshVertex * __this, Vector3 position, Vector3 normal, MethodInfo * method)); -DO_APP_FUNC(0x003BB3B0, Mesh *, SourceMesh_get_Mesh, (SourceMesh__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02291A90, List_1_SplineMesh_MeshVertex_ *, SourceMesh_get_Vertices, (SourceMesh__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02291AC0, Int32__Array *, SourceMesh_get_Triangles, (SourceMesh__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02291AF0, float, SourceMesh_get_MinX, (SourceMesh__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02291B20, float, SourceMesh_get_Length, (SourceMesh__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02291B50, void, SourceMesh__ctor, (SourceMesh__Boxed * __this, Mesh * mesh, MethodInfo * method)); -DO_APP_FUNC(0x02291C70, void, SourceMesh__ctor_1, (SourceMesh__Boxed * __this, SourceMesh other, MethodInfo * method)); +DO_APP_FUNC(0x003BB3B0, Mesh *, SourceMesh_get_Mesh, (SourceMesh * __this, MethodInfo * method)); +DO_APP_FUNC(0x02291A90, List_1_SplineMesh_MeshVertex_ *, SourceMesh_get_Vertices, (SourceMesh * __this, MethodInfo * method)); +DO_APP_FUNC(0x02291AC0, Int32__Array *, SourceMesh_get_Triangles, (SourceMesh * __this, MethodInfo * method)); +DO_APP_FUNC(0x02291AF0, float, SourceMesh_get_MinX, (SourceMesh * __this, MethodInfo * method)); +DO_APP_FUNC(0x02291B20, float, SourceMesh_get_Length, (SourceMesh * __this, MethodInfo * method)); +DO_APP_FUNC(0x02291B50, void, SourceMesh__ctor, (SourceMesh * __this, Mesh * mesh, MethodInfo * method)); +DO_APP_FUNC(0x02291C70, void, SourceMesh__ctor_1, (SourceMesh * __this, SourceMesh other, MethodInfo * method)); DO_APP_FUNC(0x02291DB0, SourceMesh, SourceMesh_Build, (Mesh * mesh, MethodInfo * method)); -DO_APP_FUNC(0x02291DF0, SourceMesh, SourceMesh_Translate, (SourceMesh__Boxed * __this, Vector3 translation, MethodInfo * method)); -DO_APP_FUNC(0x02291E80, SourceMesh, SourceMesh_Translate_1, (SourceMesh__Boxed * __this, float x, float y, float z, MethodInfo * method)); -DO_APP_FUNC(0x02291F70, SourceMesh, SourceMesh_Rotate, (SourceMesh__Boxed * __this, Quaternion rotation, MethodInfo * method)); -DO_APP_FUNC(0x02291FF0, SourceMesh, SourceMesh_Scale, (SourceMesh__Boxed * __this, Vector3 scale, MethodInfo * method)); -DO_APP_FUNC(0x02292080, SourceMesh, SourceMesh_Scale_1, (SourceMesh__Boxed * __this, float x, float y, float z, MethodInfo * method)); -DO_APP_FUNC(0x02292170, void, SourceMesh_BuildData, (SourceMesh__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02292BF0, bool, SourceMesh_Equals, (SourceMesh__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02292F70, int32_t, SourceMesh_GetHashCode, (SourceMesh__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02291DF0, SourceMesh, SourceMesh_Translate, (SourceMesh * __this, Vector3 translation, MethodInfo * method)); +DO_APP_FUNC(0x02291E80, SourceMesh, SourceMesh_Translate_1, (SourceMesh * __this, float x, float y, float z, MethodInfo * method)); +DO_APP_FUNC(0x02291F70, SourceMesh, SourceMesh_Rotate, (SourceMesh * __this, Quaternion rotation, MethodInfo * method)); +DO_APP_FUNC(0x02291FF0, SourceMesh, SourceMesh_Scale, (SourceMesh * __this, Vector3 scale, MethodInfo * method)); +DO_APP_FUNC(0x02292080, SourceMesh, SourceMesh_Scale_1, (SourceMesh * __this, float x, float y, float z, MethodInfo * method)); +DO_APP_FUNC(0x02292170, void, SourceMesh_BuildData, (SourceMesh * __this, MethodInfo * method)); +DO_APP_FUNC(0x02292BF0, bool, SourceMesh_Equals, (SourceMesh * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02292F70, int32_t, SourceMesh_GetHashCode, (SourceMesh * __this, MethodInfo * method)); DO_APP_FUNC(0x02292FF0, bool, SourceMesh_op_Equality, (SourceMesh sm1, SourceMesh sm2, MethodInfo * method)); DO_APP_FUNC(0x02293080, bool, SourceMesh_op_Inequality, (SourceMesh sm1, SourceMesh sm2, MethodInfo * method)); DO_APP_FUNC(0x02293110, void, SplineExtrusion_Reset, (SplineExtrusion * __this, MethodInfo * method)); @@ -114712,7 +127225,9 @@ DO_APP_FUNC(0x028D4200, void, BaseMaterialEffect__cctor, (MethodInfo * method)); DO_APP_FUNC(0x028D43B0, void, BaseMaterialEffect_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BaseMaterialEffect_c__ctor, (BaseMaterialEffect_c * __this, MethodInfo * method)); DO_APP_FUNC(0x028D4460, bool, BaseMaterialEffect_c__SetShaderVariants_b__15_0, (BaseMaterialEffect_c * __this, Object * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBAE60, BaseMaterialEffect_c__SetShaderVariants_b__15_0__MethodInfo); DO_APP_FUNC(0x028D44C0, String *, BaseMaterialEffect_c__SetShaderVariants_b__15_1, (BaseMaterialEffect_c * __this, Object * x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBAE58, BaseMaterialEffect_c__SetShaderVariants_b__15_1__MethodInfo); DO_APP_FUNC(0x028D4500, GraphicConnector *, BaseMeshEffect_get_connector, (BaseMeshEffect * __this, MethodInfo * method)); DO_APP_FUNC(0x028D45D0, Graphic *, BaseMeshEffect_get_graphic, (BaseMeshEffect * __this, MethodInfo * method)); DO_APP_FUNC(0x028D46B0, RectTransform *, BaseMeshEffect_get_rectTransform, (BaseMeshEffect * __this, MethodInfo * method)); @@ -114730,10 +127245,12 @@ DO_APP_FUNC(0x028D4F90, void, EffectPlayer_OnDisable, (EffectPlayer * __this, Me DO_APP_FUNC(0x028D50B0, void, EffectPlayer_Play, (EffectPlayer * __this, bool reset, Action_1_Single_ * callback, MethodInfo * method)); DO_APP_FUNC(0x028D5120, void, EffectPlayer_Stop, (EffectPlayer * __this, bool reset, MethodInfo * method)); DO_APP_FUNC(0x028D5170, void, EffectPlayer_OnWillRenderCanvases, (EffectPlayer * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBADD0, EffectPlayer_OnWillRenderCanvases__MethodInfo); DO_APP_FUNC(0x01C7AA00, void, EffectPlayer__ctor, (EffectPlayer * __this, MethodInfo * method)); DO_APP_FUNC(0x028D5250, void, EffectPlayer_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, EffectPlayer_c__ctor, (EffectPlayer_c * __this, MethodInfo * method)); DO_APP_FUNC(0x028D5300, void, EffectPlayer_c__OnEnable_b__7_0, (EffectPlayer_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBAD40, EffectPlayer_c__OnEnable_b__7_0__MethodInfo); DO_APP_FUNC(0x028D53E0, void, GraphicConnector_Init, (MethodInfo * method)); DO_APP_FUNC(0x028D5450, void, GraphicConnector_AddConnector, (GraphicConnector * connector, MethodInfo * method)); DO_APP_FUNC(0x028D5680, GraphicConnector *, GraphicConnector_FindConnector, (Graphic * graphic, MethodInfo * method)); @@ -114745,22 +127262,23 @@ DO_APP_FUNC(0x003AE050, void, GraphicConnector_OnEnable, (GraphicConnector * __t DO_APP_FUNC(0x003AE050, void, GraphicConnector_OnDisable, (GraphicConnector * __this, Graphic * graphic, MethodInfo * method)); DO_APP_FUNC(0x028D5A10, void, GraphicConnector_SetVerticesDirty, (GraphicConnector * __this, Graphic * graphic, MethodInfo * method)); DO_APP_FUNC(0x028D5A90, void, GraphicConnector_SetMaterialDirty, (GraphicConnector * __this, Graphic * graphic, MethodInfo * method)); -DO_APP_FUNC(0x028D5B10, void, GraphicConnector_GetPositionFactor, (GraphicConnector * __this, EffectArea__Enum area, int32_t index, Rect rect, Vector2 position, float x, float y, MethodInfo * method)); +DO_APP_FUNC(0x028D5B10, void, GraphicConnector_GetPositionFactor, (GraphicConnector * __this, EffectArea__Enum area, int32_t index, Rect rect, Vector2 position, float * x, float * y, MethodInfo * method)); DO_APP_FUNC(0x028D5BD0, bool, GraphicConnector_IsText, (GraphicConnector * __this, Graphic * graphic, MethodInfo * method)); -DO_APP_FUNC(0x028D5C90, void, GraphicConnector_SetExtraChannel, (GraphicConnector * __this, UIVertex vertex, Vector2 value, MethodInfo * method)); -DO_APP_FUNC(0x028D5CD0, void, GraphicConnector_GetNormalizedFactor, (GraphicConnector * __this, EffectArea__Enum area, int32_t index, Matrix2x3 matrix, Vector2 position, Vector2 normalizedPos, MethodInfo * method)); +DO_APP_FUNC(0x028D5C90, void, GraphicConnector_SetExtraChannel, (GraphicConnector * __this, UIVertex * vertex, Vector2 value, MethodInfo * method)); +DO_APP_FUNC(0x028D5CD0, void, GraphicConnector_GetNormalizedFactor, (GraphicConnector * __this, EffectArea__Enum area, int32_t index, Matrix2x3 matrix, Vector2 position, Vector2 * normalizedPos, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GraphicConnector__ctor, (GraphicConnector * __this, MethodInfo * method)); DO_APP_FUNC(0x028D5D70, void, GraphicConnector__cctor, (MethodInfo * method)); DO_APP_FUNC(0x028D5FC0, void, GraphicConnector_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GraphicConnector_c__ctor, (GraphicConnector_c * __this, MethodInfo * method)); DO_APP_FUNC(0x028D6070, int32_t, GraphicConnector_c__AddConnector_b__4_0, (GraphicConnector_c * __this, GraphicConnector * x, GraphicConnector * y, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBAC10, GraphicConnector_c__AddConnector_b__4_0__MethodInfo); DO_APP_FUNC(0x028D60D0, Material *, MaterialCache_Register, (Material * baseMaterial, Hash128 hash, Action_2_UnityEngine_Material_UnityEngine_UI_Graphic_ * onModifyMaterial, Graphic * graphic, MethodInfo * method)); DO_APP_FUNC(0x028D63F0, void, MaterialCache_Unregister, (Hash128 hash, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, MaterialCache__ctor, (MaterialCache * __this, MethodInfo * method)); DO_APP_FUNC(0x028D66E0, void, MaterialCache__cctor, (MethodInfo * method)); DO_APP_FUNC(0x028D67D0, void, MaterialCache_MaterialEntry_Release, (MaterialCache_MaterialEntry * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, MaterialCache_MaterialEntry__ctor, (MaterialCache_MaterialEntry * __this, MethodInfo * method)); -DO_APP_FUNC(0x028D68F0, void, Matrix2x3__ctor, (Matrix2x3__Boxed * __this, Rect rect, float cos, float sin, MethodInfo * method)); +DO_APP_FUNC(0x028D68F0, void, Matrix2x3__ctor, (Matrix2x3 * __this, Rect rect, float cos, float sin, MethodInfo * method)); DO_APP_FUNC(0x028D69C0, Vector2, Matrix2x3_op_Multiply, (Matrix2x3 m, Vector2 v, MethodInfo * method)); DO_APP_FUNC(0x028D6A10, void, ParameterTexture__ctor, (ParameterTexture * __this, int32_t channels, int32_t instanceLimit, String * propertyName, MethodInfo * method)); DO_APP_FUNC(0x028D6C70, void, ParameterTexture_Register, (ParameterTexture * __this, IParameterTexture * target, MethodInfo * method)); @@ -114771,12 +127289,14 @@ DO_APP_FUNC(0x028D6EE0, void, ParameterTexture_RegisterMaterial, (ParameterTextu DO_APP_FUNC(0x028D6FC0, float, ParameterTexture_GetNormalizedIndex, (ParameterTexture * __this, IParameterTexture * target, MethodInfo * method)); DO_APP_FUNC(0x028D7040, void, ParameterTexture_Initialize, (ParameterTexture * __this, MethodInfo * method)); DO_APP_FUNC(0x028D7500, void, ParameterTexture_UpdateParameterTexture, (ParameterTexture * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBAA68, ParameterTexture_UpdateParameterTexture__MethodInfo); DO_APP_FUNC(0x028D75B0, void, ParameterTexture_c__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ParameterTexture_c__ctor, (ParameterTexture_c * __this, MethodInfo * method)); DO_APP_FUNC(0x028D7660, void, ParameterTexture_c__Initialize_b__16_0, (ParameterTexture_c * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBAA70, ParameterTexture_c__Initialize_b__16_0__MethodInfo); DO_APP_FUNC(0x028D7740, Rect, EffectAreaExtensions_GetEffectArea, (EffectArea__Enum area, VertexHelper * vh, Rect rectangle, float aspectRatio, MethodInfo * method)); -DO_APP_FUNC(0x028D7970, void, EffectAreaExtensions_GetPositionFactor, (EffectArea__Enum area, int32_t index, Rect rect, Vector2 position, bool isText, bool isTMPro, float x, float y, MethodInfo * method)); -DO_APP_FUNC(0x028D7B30, void, EffectAreaExtensions_GetNormalizedFactor, (EffectArea__Enum area, int32_t index, Matrix2x3 matrix, Vector2 position, bool isText, Vector2 nomalizedPos, MethodInfo * method)); +DO_APP_FUNC(0x028D7970, void, EffectAreaExtensions_GetPositionFactor, (EffectArea__Enum area, int32_t index, Rect rect, Vector2 position, bool isText, bool isTMPro, float * x, float * y, MethodInfo * method)); +DO_APP_FUNC(0x028D7B30, void, EffectAreaExtensions_GetNormalizedFactor, (EffectArea__Enum area, int32_t index, Matrix2x3 matrix, Vector2 position, bool isText, Vector2 * nomalizedPos, MethodInfo * method)); DO_APP_FUNC(0x028D7CF0, void, EffectAreaExtensions__cctor, (MethodInfo * method)); DO_APP_FUNC(0x00A79C40, float, UIDissolve_get_effectFactor, (UIDissolve * __this, MethodInfo * method)); DO_APP_FUNC(0x028D7F10, void, UIDissolve_set_effectFactor, (UIDissolve * __this, float value, MethodInfo * method)); @@ -114810,6 +127330,7 @@ DO_APP_FUNC(0x028D9680, void, UIDissolve_OnDisable, (UIDissolve * __this, Method DO_APP_FUNC(0x028D96C0, void, UIDissolve__ctor, (UIDissolve * __this, MethodInfo * method)); DO_APP_FUNC(0x028D9740, void, UIDissolve__cctor, (MethodInfo * method)); DO_APP_FUNC(0x028D98A0, void, UIDissolve__OnEnable_b__54_0, (UIDissolve * __this, float f, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBAA10, UIDissolve__OnEnable_b__54_0__MethodInfo); DO_APP_FUNC(0x028D9920, AdditionalCanvasShaderChannels__Enum, UIEffect_get_uvMaskChannel, (UIEffect * __this, MethodInfo * method)); DO_APP_FUNC(0x00C50D10, float, UIEffect_get_effectFactor, (UIEffect * __this, MethodInfo * method)); DO_APP_FUNC(0x028D9960, void, UIEffect_set_effectFactor, (UIEffect * __this, float value, MethodInfo * method)); @@ -114830,7 +127351,7 @@ DO_APP_FUNC(0x028D9B10, Hash128, UIEffect_GetMaterialHash, (UIEffect * __this, M DO_APP_FUNC(0x028D9D00, void, UIEffect_ModifyMaterial, (UIEffect * __this, Material * newMaterial, Graphic * graphic, MethodInfo * method)); DO_APP_FUNC(0x028DA0A0, void, UIEffect_ModifyMesh, (UIEffect * __this, VertexHelper * vh, Graphic * graphic, MethodInfo * method)); DO_APP_FUNC(0x028DAF80, void, UIEffect_SetEffectParamsDirty, (UIEffect * __this, MethodInfo * method)); -DO_APP_FUNC(0x028DB0D0, void, UIEffect_GetBounds, (List_1_UnityEngine_UIVertex_ * verts, int32_t start, int32_t count, Rect posBounds, Rect uvBounds, bool global, MethodInfo * method)); +DO_APP_FUNC(0x028DB0D0, void, UIEffect_GetBounds, (List_1_UnityEngine_UIVertex_ * verts, int32_t start, int32_t count, Rect * posBounds, Rect * uvBounds, bool global, MethodInfo * method)); DO_APP_FUNC(0x028DB2D0, void, UIEffect__ctor, (UIEffect * __this, MethodInfo * method)); DO_APP_FUNC(0x028DB340, void, UIEffect__cctor, (MethodInfo * method)); DO_APP_FUNC(0x00424C90, bool, UIFlip_get_horizontal, (UIFlip * __this, MethodInfo * method)); @@ -114898,8 +127419,8 @@ DO_APP_FUNC(0x00A030D0, void, UIShadow_set_paramTex, (UIShadow * __this, Paramet DO_APP_FUNC(0x028DD580, void, UIShadow_OnEnable, (UIShadow * __this, MethodInfo * method)); DO_APP_FUNC(0x028DD740, void, UIShadow_OnDisable, (UIShadow * __this, MethodInfo * method)); DO_APP_FUNC(0x028DD870, void, UIShadow_ModifyMesh, (UIShadow * __this, VertexHelper * vh, Graphic * graphic, MethodInfo * method)); -DO_APP_FUNC(0x028DE160, void, UIShadow_ApplyShadow, (UIShadow * __this, List_1_UnityEngine_UIVertex_ * verts, Color color, int32_t start, int32_t end, Vector2 distance, ShadowStyle__Enum style, bool alpha, MethodInfo * method)); -DO_APP_FUNC(0x028DE4B0, void, UIShadow_ApplyShadowZeroAlloc, (UIShadow * __this, List_1_UnityEngine_UIVertex_ * verts, Color color, int32_t start, int32_t end, float x, float y, bool alpha, MethodInfo * method)); +DO_APP_FUNC(0x028DE160, void, UIShadow_ApplyShadow, (UIShadow * __this, List_1_UnityEngine_UIVertex_ * verts, Color color, int32_t * start, int32_t * end, Vector2 distance, ShadowStyle__Enum style, bool alpha, MethodInfo * method)); +DO_APP_FUNC(0x028DE4B0, void, UIShadow_ApplyShadowZeroAlloc, (UIShadow * __this, List_1_UnityEngine_UIVertex_ * verts, Color color, int32_t * start, int32_t * end, float x, float y, bool alpha, MethodInfo * method)); DO_APP_FUNC(0x028DEB00, void, UIShadow__ctor, (UIShadow * __this, MethodInfo * method)); DO_APP_FUNC(0x028DEB40, void, UIShadow__cctor, (MethodInfo * method)); DO_APP_FUNC(0x00A79C40, float, UIShiny_get_effectFactor, (UIShiny * __this, MethodInfo * method)); @@ -114931,6 +127452,7 @@ DO_APP_FUNC(0x028DFD10, void, UIShiny_OnDidApplyAnimationProperties, (UIShiny * DO_APP_FUNC(0x028DFD60, void, UIShiny__ctor, (UIShiny * __this, MethodInfo * method)); DO_APP_FUNC(0x028DFDE0, void, UIShiny__cctor, (MethodInfo * method)); DO_APP_FUNC(0x028D7F10, void, UIShiny__OnEnable_b__37_0, (UIShiny * __this, float f, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA7E0, UIShiny__OnEnable_b__37_0__MethodInfo); DO_APP_FUNC(0x028DFED0, BaseMeshEffect *, UISyncEffect_get_targetEffect, (UISyncEffect * __this, MethodInfo * method)); DO_APP_FUNC(0x028E0000, void, UISyncEffect_set_targetEffect, (UISyncEffect * __this, BaseMeshEffect * value, MethodInfo * method)); DO_APP_FUNC(0x028E0210, void, UISyncEffect_OnEnable, (UISyncEffect * __this, MethodInfo * method)); @@ -114971,7 +127493,9 @@ DO_APP_FUNC(0x028E2230, void, UITransitionEffect_OnDidApplyAnimationProperties, DO_APP_FUNC(0x028E2270, void, UITransitionEffect__ctor, (UITransitionEffect * __this, MethodInfo * method)); DO_APP_FUNC(0x028E22F0, void, UITransitionEffect__cctor, (MethodInfo * method)); DO_APP_FUNC(0x028D7F10, void, UITransitionEffect__Show_b__46_0, (UITransitionEffect * __this, float f, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA7A0, UITransitionEffect__Show_b__46_0__MethodInfo); DO_APP_FUNC(0x028E2460, void, UITransitionEffect__Hide_b__47_0, (UITransitionEffect * __this, float f, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA7A8, UITransitionEffect__Hide_b__47_0__MethodInfo); DO_APP_FUNC(0x02CD7400, int32_t, AudioSettings_GetSampleRate, (MethodInfo * method)); DO_APP_FUNC(0x02CD7400, int32_t, AudioSettings_get_outputSampleRate, (MethodInfo * method)); DO_APP_FUNC(0x02CD7450, AudioConfiguration, AudioSettings_GetConfiguration, (MethodInfo * method)); @@ -114980,7 +127504,7 @@ DO_APP_FUNC(0x02CD75C0, void, AudioSettings_remove_OnAudioConfigurationChanged, DO_APP_FUNC(0x02CD76D0, void, AudioSettings_InvokeOnAudioConfigurationChanged, (bool deviceWasChanged, MethodInfo * method)); DO_APP_FUNC(0x02CD7730, void, AudioSettings_InvokeOnAudioSystemShuttingDown, (MethodInfo * method)); DO_APP_FUNC(0x02CD7790, void, AudioSettings_InvokeOnAudioSystemStartedUp, (MethodInfo * method)); -DO_APP_FUNC(0x02CD77F0, void, AudioSettings_GetConfiguration_Injected, (AudioConfiguration ret, MethodInfo * method)); +DO_APP_FUNC(0x02CD77F0, void, AudioSettings_GetConfiguration_Injected, (AudioConfiguration * ret, MethodInfo * method)); DO_APP_FUNC(0x0040DD50, void, AudioSettings_AudioConfigurationChangeHandler__ctor, (AudioSettings_AudioConfigurationChangeHandler * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EE650, void, AudioSettings_AudioConfigurationChangeHandler_Invoke, (AudioSettings_AudioConfigurationChangeHandler * __this, bool deviceWasChanged, MethodInfo * method)); DO_APP_FUNC(0x02CD7840, void, AudioClip__ctor, (AudioClip * __this, MethodInfo * method)); @@ -115003,12 +127527,14 @@ DO_APP_FUNC(0x02CD7E90, bool, AudioClip_get_loadInBackground, (AudioClip * __thi DO_APP_FUNC(0x02CD7EE0, AudioDataLoadState__Enum, AudioClip_get_loadState, (AudioClip * __this, MethodInfo * method)); DO_APP_FUNC(0x02CD7F30, bool, AudioClip_GetData_1, (AudioClip * __this, Single__Array * data, int32_t offsetSamples, MethodInfo * method)); DO_APP_FUNC(0x02CD8120, bool, AudioClip_SetData_1, (AudioClip * __this, Single__Array * data, int32_t offsetSamples, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE8E8, AudioClip_SetData_1__MethodInfo); DO_APP_FUNC(0x02CD83D0, AudioClip *, AudioClip_Create, (String * name, int32_t lengthSamples, int32_t channels, int32_t frequency, bool _3D, bool stream, MethodInfo * method)); DO_APP_FUNC(0x02CD8400, AudioClip *, AudioClip_Create_1, (String * name, int32_t lengthSamples, int32_t channels, int32_t frequency, bool _3D, bool stream, AudioClip_PCMReaderCallback * pcmreadercallback, MethodInfo * method)); DO_APP_FUNC(0x02CD8430, AudioClip *, AudioClip_Create_2, (String * name, int32_t lengthSamples, int32_t channels, int32_t frequency, bool _3D, bool stream, AudioClip_PCMReaderCallback * pcmreadercallback, AudioClip_PCMSetPositionCallback * pcmsetpositioncallback, MethodInfo * method)); DO_APP_FUNC(0x02CD8470, AudioClip *, AudioClip_Create_3, (String * name, int32_t lengthSamples, int32_t channels, int32_t frequency, bool stream, MethodInfo * method)); DO_APP_FUNC(0x02CD84A0, AudioClip *, AudioClip_Create_4, (String * name, int32_t lengthSamples, int32_t channels, int32_t frequency, bool stream, AudioClip_PCMReaderCallback * pcmreadercallback, MethodInfo * method)); DO_APP_FUNC(0x02CD84D0, AudioClip *, AudioClip_Create_5, (String * name, int32_t lengthSamples, int32_t channels, int32_t frequency, bool stream, AudioClip_PCMReaderCallback * pcmreadercallback, AudioClip_PCMSetPositionCallback * pcmsetpositioncallback, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE8D8, AudioClip_Create_5__MethodInfo); DO_APP_FUNC(0x02CD8900, void, AudioClip_add_m_PCMReaderCallback, (AudioClip * __this, AudioClip_PCMReaderCallback * value, MethodInfo * method)); DO_APP_FUNC(0x02CD89F0, void, AudioClip_remove_m_PCMReaderCallback, (AudioClip * __this, AudioClip_PCMReaderCallback * value, MethodInfo * method)); DO_APP_FUNC(0x02CD8AE0, void, AudioClip_add_m_PCMSetPositionCallback, (AudioClip * __this, AudioClip_PCMSetPositionCallback * value, MethodInfo * method)); @@ -115112,8 +127638,8 @@ DO_APP_FUNC(0x02CDAF90, void, AudioSource_set_maxVolume, (AudioSource * __this, DO_APP_FUNC(0x02CDAFF0, float, AudioSource_get_rolloffFactor, (AudioSource * __this, MethodInfo * method)); DO_APP_FUNC(0x02CDB060, void, AudioSource_set_rolloffFactor, (AudioSource * __this, float value, MethodInfo * method)); DO_APP_FUNC(0x02CDB0C0, bool, AudioSource_SetSpatializerFloat, (AudioSource * __this, int32_t index, float value, MethodInfo * method)); -DO_APP_FUNC(0x02CDB130, bool, AudioSource_GetSpatializerFloat, (AudioSource * __this, int32_t index, float value, MethodInfo * method)); -DO_APP_FUNC(0x02CDB1A0, bool, AudioSource_GetAmbisonicDecoderFloat, (AudioSource * __this, int32_t index, float value, MethodInfo * method)); +DO_APP_FUNC(0x02CDB130, bool, AudioSource_GetSpatializerFloat, (AudioSource * __this, int32_t index, float * value, MethodInfo * method)); +DO_APP_FUNC(0x02CDB1A0, bool, AudioSource_GetAmbisonicDecoderFloat, (AudioSource * __this, int32_t index, float * value, MethodInfo * method)); DO_APP_FUNC(0x02CDB210, bool, AudioSource_SetAmbisonicDecoderFloat, (AudioSource * __this, int32_t index, float value, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, AudioSource__ctor, (AudioSource * __this, MethodInfo * method)); DO_APP_FUNC(0x02CDB280, float, AudioLowPassFilter_get_cutoffFrequency, (AudioLowPassFilter * __this, MethodInfo * method)); @@ -115152,102 +127678,111 @@ DO_APP_FUNC(0x02CDBD80, AudioClip *, Microphone_StartRecord, (int32_t deviceID, DO_APP_FUNC(0x02CDBE00, void, Microphone_EndRecord, (int32_t deviceID, MethodInfo * method)); DO_APP_FUNC(0x02CDBE50, bool, Microphone_IsRecording, (int32_t deviceID, MethodInfo * method)); DO_APP_FUNC(0x02CDBEA0, int32_t, Microphone_GetRecordPosition, (int32_t deviceID, MethodInfo * method)); -DO_APP_FUNC(0x02CDBEF0, void, Microphone_GetDeviceCaps, (int32_t deviceID, int32_t minFreq, int32_t maxFreq, MethodInfo * method)); +DO_APP_FUNC(0x02CDBEF0, void, Microphone_GetDeviceCaps, (int32_t deviceID, int32_t * minFreq, int32_t * maxFreq, MethodInfo * method)); DO_APP_FUNC(0x02CDBF60, AudioClip *, Microphone_Start, (String * deviceName, bool loop, int32_t lengthSec, int32_t frequency, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE758, Microphone_Start__MethodInfo); DO_APP_FUNC(0x02CDC240, void, Microphone_End, (String * deviceName, MethodInfo * method)); DO_APP_FUNC(0x02CDC2E0, String__Array *, Microphone_get_devices, (MethodInfo * method)); DO_APP_FUNC(0x02CDC330, bool, Microphone_IsRecording_1, (String * deviceName, MethodInfo * method)); DO_APP_FUNC(0x02CDC3D0, int32_t, Microphone_GetPosition, (String * deviceName, MethodInfo * method)); -DO_APP_FUNC(0x02CDC470, void, Microphone_GetDeviceCaps_1, (String * deviceName, int32_t minFreq, int32_t maxFreq, MethodInfo * method)); +DO_APP_FUNC(0x02CDC470, void, Microphone_GetDeviceCaps_1, (String * deviceName, int32_t * minFreq, int32_t * maxFreq, MethodInfo * method)); DO_APP_FUNC(0x02CDC530, AudioClipPlayable, AudioClipPlayable_Create, (PlayableGraph graph, AudioClip * clip, bool looping, MethodInfo * method)); DO_APP_FUNC(0x02CDC910, PlayableHandle, AudioClipPlayable_CreateHandle, (PlayableGraph graph, AudioClip * clip, bool looping, MethodInfo * method)); -DO_APP_FUNC(0x02CDCAA0, void, AudioClipPlayable__ctor, (AudioClipPlayable__Boxed * __this, PlayableHandle handle, MethodInfo * method)); -DO_APP_FUNC(0x0104C5D0, PlayableHandle, AudioClipPlayable_GetHandle, (AudioClipPlayable__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CDCAA0, void, AudioClipPlayable__ctor, (AudioClipPlayable * __this, PlayableHandle handle, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE7B0, AudioClipPlayable__ctor__MethodInfo); +DO_APP_FUNC(0x0104C5D0, PlayableHandle, AudioClipPlayable_GetHandle, (AudioClipPlayable * __this, MethodInfo * method)); DO_APP_FUNC(0x02CD2C80, Playable, AudioClipPlayable_op_Implicit, (AudioClipPlayable playable, MethodInfo * method)); DO_APP_FUNC(0x02CDCB90, AudioClipPlayable, AudioClipPlayable_op_Explicit, (Playable playable, MethodInfo * method)); -DO_APP_FUNC(0x02CDCC20, bool, AudioClipPlayable_Equals, (AudioClipPlayable__Boxed * __this, AudioClipPlayable other, MethodInfo * method)); -DO_APP_FUNC(0x02CDCCE0, void, AudioClipPlayable_SetVolume, (AudioClipPlayable__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02CDCDE0, void, AudioClipPlayable_SetStereoPan, (AudioClipPlayable__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02CDCEE0, void, AudioClipPlayable_SetSpatialBlend, (AudioClipPlayable__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02CDCFE0, void, AudioClipPlayable_Seek, (AudioClipPlayable__Boxed * __this, double startTime, double startDelay, double duration, MethodInfo * method)); -DO_APP_FUNC(0x02CDD1D0, void, AudioClipPlayable_SetVolumeInternal, (PlayableHandle hdl, float volume, MethodInfo * method)); -DO_APP_FUNC(0x02CDD230, void, AudioClipPlayable_SetStereoPanInternal, (PlayableHandle hdl, float stereoPan, MethodInfo * method)); -DO_APP_FUNC(0x02CDD290, void, AudioClipPlayable_SetSpatialBlendInternal, (PlayableHandle hdl, float spatialBlend, MethodInfo * method)); -DO_APP_FUNC(0x02CDD2F0, void, AudioClipPlayable_SetStartDelayInternal, (PlayableHandle hdl, double delay, MethodInfo * method)); -DO_APP_FUNC(0x02CDD350, void, AudioClipPlayable_SetPauseDelayInternal, (PlayableHandle hdl, double delay, MethodInfo * method)); -DO_APP_FUNC(0x02CDD3B0, bool, AudioClipPlayable_InternalCreateAudioClipPlayable, (PlayableGraph graph, AudioClip * clip, bool looping, PlayableHandle handle, MethodInfo * method)); +DO_APP_FUNC(0x02CDCC20, bool, AudioClipPlayable_Equals, (AudioClipPlayable * __this, AudioClipPlayable other, MethodInfo * method)); +DO_APP_FUNC(0x02CDCCE0, void, AudioClipPlayable_SetVolume, (AudioClipPlayable * __this, float value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE6C8, AudioClipPlayable_SetVolume__MethodInfo); +DO_APP_FUNC(0x02CDCDE0, void, AudioClipPlayable_SetStereoPan, (AudioClipPlayable * __this, float value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE6B0, AudioClipPlayable_SetStereoPan__MethodInfo); +DO_APP_FUNC(0x02CDCEE0, void, AudioClipPlayable_SetSpatialBlend, (AudioClipPlayable * __this, float value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE698, AudioClipPlayable_SetSpatialBlend__MethodInfo); +DO_APP_FUNC(0x02CDCFE0, void, AudioClipPlayable_Seek, (AudioClipPlayable * __this, double startTime, double startDelay, double duration, MethodInfo * method)); +DO_APP_FUNC(0x02CDD1D0, void, AudioClipPlayable_SetVolumeInternal, (PlayableHandle * hdl, float volume, MethodInfo * method)); +DO_APP_FUNC(0x02CDD230, void, AudioClipPlayable_SetStereoPanInternal, (PlayableHandle * hdl, float stereoPan, MethodInfo * method)); +DO_APP_FUNC(0x02CDD290, void, AudioClipPlayable_SetSpatialBlendInternal, (PlayableHandle * hdl, float spatialBlend, MethodInfo * method)); +DO_APP_FUNC(0x02CDD2F0, void, AudioClipPlayable_SetStartDelayInternal, (PlayableHandle * hdl, double delay, MethodInfo * method)); +DO_APP_FUNC(0x02CDD350, void, AudioClipPlayable_SetPauseDelayInternal, (PlayableHandle * hdl, double delay, MethodInfo * method)); +DO_APP_FUNC(0x02CDD3B0, bool, AudioClipPlayable_InternalCreateAudioClipPlayable, (PlayableGraph * graph, AudioClip * clip, bool looping, PlayableHandle * handle, MethodInfo * method)); DO_APP_FUNC(0x02CDD430, void, AudioMixer__ctor, (AudioMixer * __this, MethodInfo * method)); DO_APP_FUNC(0x02CDD480, AudioMixerGroup *, AudioMixer_get_outputAudioMixerGroup, (AudioMixer * __this, MethodInfo * method)); DO_APP_FUNC(0x02CDD4D0, void, AudioMixer_set_outputAudioMixerGroup, (AudioMixer * __this, AudioMixerGroup * value, MethodInfo * method)); DO_APP_FUNC(0x02CDD530, AudioMixerSnapshot *, AudioMixer_FindSnapshot, (AudioMixer * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x02CDD590, AudioMixerGroup__Array *, AudioMixer_FindMatchingGroups, (AudioMixer * __this, String * subPath, MethodInfo * method)); DO_APP_FUNC(0x02CDD5F0, void, AudioMixer_TransitionToSnapshot, (AudioMixer * __this, AudioMixerSnapshot * snapshot, float timeToReach, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE640, AudioMixer_TransitionToSnapshot__MethodInfo); DO_APP_FUNC(0x02CDDAF0, void, AudioMixer_TransitionToSnapshotInternal, (AudioMixer * __this, AudioMixerSnapshot * snapshot, float timeToReach, MethodInfo * method)); DO_APP_FUNC(0x02CDDB60, void, AudioMixer_TransitionToSnapshots, (AudioMixer * __this, AudioMixerSnapshot__Array * snapshots, Single__Array * weights, float timeToReach, MethodInfo * method)); DO_APP_FUNC(0x02CDDBE0, AudioMixerUpdateMode__Enum, AudioMixer_get_updateMode, (AudioMixer * __this, MethodInfo * method)); DO_APP_FUNC(0x02CDDC30, void, AudioMixer_set_updateMode, (AudioMixer * __this, AudioMixerUpdateMode__Enum value, MethodInfo * method)); DO_APP_FUNC(0x02CDDC90, bool, AudioMixer_SetFloat, (AudioMixer * __this, String * name, float value, MethodInfo * method)); DO_APP_FUNC(0x02CDDD00, bool, AudioMixer_ClearFloat, (AudioMixer * __this, String * name, MethodInfo * method)); -DO_APP_FUNC(0x02CDDD60, bool, AudioMixer_GetFloat, (AudioMixer * __this, String * name, float value, MethodInfo * method)); +DO_APP_FUNC(0x02CDDD60, bool, AudioMixer_GetFloat, (AudioMixer * __this, String * name, float * value, MethodInfo * method)); DO_APP_FUNC(0x02CDDDD0, bool, AudioMixer_HasValidSnapshots, (AudioMixer * __this, MethodInfo * method)); DO_APP_FUNC(0x02CDDE20, void, AudioMixerGroup__ctor, (AudioMixerGroup * __this, MethodInfo * method)); DO_APP_FUNC(0x02CDDE70, AudioMixer *, AudioMixerGroup_get_audioMixer, (AudioMixerGroup * __this, MethodInfo * method)); DO_APP_FUNC(0x02CDDEC0, AudioMixerPlayable, AudioMixerPlayable_Create, (PlayableGraph graph, int32_t inputCount, bool normalizeInputVolumes, MethodInfo * method)); DO_APP_FUNC(0x02CDDF30, PlayableHandle, AudioMixerPlayable_CreateHandle, (PlayableGraph graph, int32_t inputCount, bool normalizeInputVolumes, MethodInfo * method)); -DO_APP_FUNC(0x02CDE140, void, AudioMixerPlayable__ctor, (AudioMixerPlayable__Boxed * __this, PlayableHandle handle, MethodInfo * method)); -DO_APP_FUNC(0x0104C5D0, PlayableHandle, AudioMixerPlayable_GetHandle, (AudioMixerPlayable__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CDE140, void, AudioMixerPlayable__ctor, (AudioMixerPlayable * __this, PlayableHandle handle, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE678, AudioMixerPlayable__ctor__MethodInfo); +DO_APP_FUNC(0x0104C5D0, PlayableHandle, AudioMixerPlayable_GetHandle, (AudioMixerPlayable * __this, MethodInfo * method)); DO_APP_FUNC(0x02CD2C80, Playable, AudioMixerPlayable_op_Implicit, (AudioMixerPlayable playable, MethodInfo * method)); -DO_APP_FUNC(0x02CDE230, bool, AudioMixerPlayable_Equals, (AudioMixerPlayable__Boxed * __this, AudioMixerPlayable other, MethodInfo * method)); -DO_APP_FUNC(0x02CDE2F0, bool, AudioMixerPlayable_CreateAudioMixerPlayableInternal, (PlayableGraph graph, bool normalizeInputVolumes, PlayableHandle handle, MethodInfo * method)); +DO_APP_FUNC(0x02CDE230, bool, AudioMixerPlayable_Equals, (AudioMixerPlayable * __this, AudioMixerPlayable other, MethodInfo * method)); +DO_APP_FUNC(0x02CDE2F0, bool, AudioMixerPlayable_CreateAudioMixerPlayableInternal, (PlayableGraph * graph, bool normalizeInputVolumes, PlayableHandle * handle, MethodInfo * method)); DO_APP_FUNC(0x02CDE360, void, AudioMixerSnapshot__ctor, (AudioMixerSnapshot * __this, MethodInfo * method)); DO_APP_FUNC(0x02CDE3B0, AudioMixer *, AudioMixerSnapshot_get_audioMixer, (AudioMixerSnapshot * __this, MethodInfo * method)); DO_APP_FUNC(0x02CDE400, PlayableBinding, AudioPlayableBinding_Create, (String * name, Object_1 * key, MethodInfo * method)); DO_APP_FUNC(0x02CDE550, PlayableOutput, AudioPlayableBinding_CreateAudioOutput, (PlayableGraph graph, String * name, MethodInfo * method)); -DO_APP_FUNC(0x02CDE700, bool, AudioPlayableGraphExtensions_InternalCreateAudioOutput, (PlayableGraph graph, String * name, PlayableOutputHandle handle, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE5C0, AudioPlayableBinding_CreateAudioOutput__MethodInfo); +DO_APP_FUNC(0x02CDE700, bool, AudioPlayableGraphExtensions_InternalCreateAudioOutput, (PlayableGraph * graph, String * name, PlayableOutputHandle * handle, MethodInfo * method)); DO_APP_FUNC(0x02CDE770, AudioPlayableOutput, AudioPlayableOutput_Create, (PlayableGraph graph, String * name, AudioSource * target, MethodInfo * method)); -DO_APP_FUNC(0x02CDE930, void, AudioPlayableOutput__ctor, (AudioPlayableOutput__Boxed * __this, PlayableOutputHandle handle, MethodInfo * method)); +DO_APP_FUNC(0x02CDE930, void, AudioPlayableOutput__ctor, (AudioPlayableOutput * __this, PlayableOutputHandle handle, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE5E0, AudioPlayableOutput__ctor__MethodInfo); DO_APP_FUNC(0x02CDEA20, AudioPlayableOutput, AudioPlayableOutput_get_Null, (MethodInfo * method)); -DO_APP_FUNC(0x0104C5D0, PlayableOutputHandle, AudioPlayableOutput_GetHandle, (AudioPlayableOutput__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0104C5D0, PlayableOutputHandle, AudioPlayableOutput_GetHandle, (AudioPlayableOutput * __this, MethodInfo * method)); DO_APP_FUNC(0x02CD2C80, PlayableOutput, AudioPlayableOutput_op_Implicit, (AudioPlayableOutput output, MethodInfo * method)); DO_APP_FUNC(0x02CDEAE0, AudioPlayableOutput, AudioPlayableOutput_op_Explicit, (PlayableOutput output, MethodInfo * method)); -DO_APP_FUNC(0x02CDEB70, void, AudioPlayableOutput_SetTarget, (AudioPlayableOutput__Boxed * __this, AudioSource * value, MethodInfo * method)); -DO_APP_FUNC(0x02CDEBD0, void, AudioPlayableOutput_SetEvaluateOnSeek, (AudioPlayableOutput__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02CDEB70, void, AudioPlayableOutput_InternalSetTarget, (PlayableOutputHandle output, AudioSource * target, MethodInfo * method)); -DO_APP_FUNC(0x02CDEBD0, void, AudioPlayableOutput_InternalSetEvaluateOnSeek, (PlayableOutputHandle output, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02CDEB70, void, AudioPlayableOutput_SetTarget, (AudioPlayableOutput * __this, AudioSource * value, MethodInfo * method)); +DO_APP_FUNC(0x02CDEBD0, void, AudioPlayableOutput_SetEvaluateOnSeek, (AudioPlayableOutput * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02CDEB70, void, AudioPlayableOutput_InternalSetTarget, (PlayableOutputHandle * output, AudioSource * target, MethodInfo * method)); +DO_APP_FUNC(0x02CDEBD0, void, AudioPlayableOutput_InternalSetEvaluateOnSeek, (PlayableOutputHandle * output, bool value, MethodInfo * method)); DO_APP_FUNC(0x02CDEC30, void, AudioSampleProvider_InvokeSampleFramesAvailable, (AudioSampleProvider * __this, int32_t sampleFrameCount, MethodInfo * method)); DO_APP_FUNC(0x02CDEC50, void, AudioSampleProvider_InvokeSampleFramesOverflow, (AudioSampleProvider * __this, int32_t droppedSampleFrameCount, MethodInfo * method)); DO_APP_FUNC(0x01113800, void, AudioSampleProvider_SampleFramesHandler__ctor, (AudioSampleProvider_SampleFramesHandler * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EC2D0, void, AudioSampleProvider_SampleFramesHandler_Invoke, (AudioSampleProvider_SampleFramesHandler * __this, AudioSampleProvider * provider, uint32_t sampleFrameCount, MethodInfo * method)); -DO_APP_FUNC(0x0234F570, void, BigInteger_1__ctor, (BigInteger_1__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x0234F6B0, void, BigInteger_1__ctor_1, (BigInteger_1__Boxed * __this, int64_t value, MethodInfo * method)); -DO_APP_FUNC(0x0234F990, void, BigInteger_1__ctor_2, (BigInteger_1__Boxed * __this, Byte__Array * value, MethodInfo * method)); +DO_APP_FUNC(0x0234F570, void, BigInteger_1__ctor, (BigInteger_1 * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x0234F6B0, void, BigInteger_1__ctor_1, (BigInteger_1 * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC(0x0234F990, void, BigInteger_1__ctor_2, (BigInteger_1 * __this, Byte__Array * value, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA25A8, BigInteger_1__ctor_2__MethodInfo); -DO_APP_FUNC(0x0234FA90, void, BigInteger_1__ctor_3, (BigInteger_1__Boxed * __this, ReadOnlySpan_1_Byte_ value, bool isUnsigned, bool isBigEndian, MethodInfo * method)); -DO_APP_FUNC(0x0114D850, void, BigInteger_1__ctor_4, (BigInteger_1__Boxed * __this, int32_t n, UInt32__Array * rgu, MethodInfo * method)); -DO_APP_FUNC(0x023504E0, void, BigInteger_1__ctor_5, (BigInteger_1__Boxed * __this, UInt32__Array * value, bool negative, MethodInfo * method)); +DO_APP_FUNC(0x0234FA90, void, BigInteger_1__ctor_3, (BigInteger_1 * __this, ReadOnlySpan_1_Byte_ value, bool isUnsigned, bool isBigEndian, MethodInfo * method)); +DO_APP_FUNC(0x0114D850, void, BigInteger_1__ctor_4, (BigInteger_1 * __this, int32_t n, UInt32__Array * rgu, MethodInfo * method)); +DO_APP_FUNC(0x023504E0, void, BigInteger_1__ctor_5, (BigInteger_1 * __this, UInt32__Array * value, bool negative, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA2598, BigInteger_1__ctor_5__MethodInfo); DO_APP_FUNC(0x02350830, BigInteger_1, BigInteger_1_get_Zero, (MethodInfo * method)); DO_APP_FUNC(0x02350890, BigInteger_1, BigInteger_1_get_MinusOne, (MethodInfo * method)); -DO_APP_FUNC(0x023508F0, bool, BigInteger_1_get_IsEven, (BigInteger_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02350930, int32_t, BigInteger_1_get_Sign, (BigInteger_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02350940, BigInteger_1, BigInteger_1_DivRem, (BigInteger_1 dividend, BigInteger_1 divisor, BigInteger_1 remainder, MethodInfo * method)); +DO_APP_FUNC(0x023508F0, bool, BigInteger_1_get_IsEven, (BigInteger_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02350930, int32_t, BigInteger_1_get_Sign, (BigInteger_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02350940, BigInteger_1, BigInteger_1_DivRem, (BigInteger_1 dividend, BigInteger_1 divisor, BigInteger_1 * remainder, MethodInfo * method)); DO_APP_FUNC(0x02351190, BigInteger_1, BigInteger_1_ModPow, (BigInteger_1 value, BigInteger_1 exponent, BigInteger_1 modulus, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA25C8, BigInteger_1_ModPow__MethodInfo); -DO_APP_FUNC(0x02351980, int32_t, BigInteger_1_GetHashCode, (BigInteger_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x023519D0, bool, BigInteger_1_Equals, (BigInteger_1__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02351A80, bool, BigInteger_1_Equals_1, (BigInteger_1__Boxed * __this, BigInteger_1 other, MethodInfo * method)); -DO_APP_FUNC(0x02351B90, int32_t, BigInteger_1_CompareTo, (BigInteger_1__Boxed * __this, int64_t other, MethodInfo * method)); -DO_APP_FUNC(0x02351C40, int32_t, BigInteger_1_CompareTo_1, (BigInteger_1__Boxed * __this, BigInteger_1 other, MethodInfo * method)); -DO_APP_FUNC(0x02351E00, int32_t, BigInteger_1_CompareTo_2, (BigInteger_1__Boxed * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02351980, int32_t, BigInteger_1_GetHashCode, (BigInteger_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x023519D0, bool, BigInteger_1_Equals, (BigInteger_1 * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02351A80, bool, BigInteger_1_Equals_1, (BigInteger_1 * __this, BigInteger_1 other, MethodInfo * method)); +DO_APP_FUNC(0x02351B90, int32_t, BigInteger_1_CompareTo, (BigInteger_1 * __this, int64_t other, MethodInfo * method)); +DO_APP_FUNC(0x02351C40, int32_t, BigInteger_1_CompareTo_1, (BigInteger_1 * __this, BigInteger_1 other, MethodInfo * method)); +DO_APP_FUNC(0x02351E00, int32_t, BigInteger_1_CompareTo_2, (BigInteger_1 * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA25B8, BigInteger_1_CompareTo_2__MethodInfo); -DO_APP_FUNC(0x02351F10, Byte__Array *, BigInteger_1_ToByteArray, (BigInteger_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02351F70, Byte__Array *, BigInteger_1_ToByteArray_1, (BigInteger_1__Boxed * __this, bool isUnsigned, bool isBigEndian, MethodInfo * method)); -DO_APP_FUNC(0x02352020, bool, BigInteger_1_TryWriteBytes, (BigInteger_1__Boxed * __this, Span_1_Byte_ destination, int32_t bytesWritten, bool isUnsigned, bool isBigEndian, MethodInfo * method)); -DO_APP_FUNC(0x023520E0, bool, BigInteger_1_TryWriteOrCountBytes, (BigInteger_1__Boxed * __this, Span_1_Byte_ destination, int32_t bytesWritten, bool isUnsigned, bool isBigEndian, MethodInfo * method)); -DO_APP_FUNC(0x02352190, Byte__Array *, BigInteger_1_TryGetBytes, (BigInteger_1__Boxed * __this, BigInteger_GetBytesMode__Enum mode, Span_1_Byte_ destination, bool isUnsigned, bool isBigEndian, int32_t bytesWritten, MethodInfo * method)); +DO_APP_FUNC(0x02351F10, Byte__Array *, BigInteger_1_ToByteArray, (BigInteger_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02351F70, Byte__Array *, BigInteger_1_ToByteArray_1, (BigInteger_1 * __this, bool isUnsigned, bool isBigEndian, MethodInfo * method)); +DO_APP_FUNC(0x02352020, bool, BigInteger_1_TryWriteBytes, (BigInteger_1 * __this, Span_1_Byte_ destination, int32_t * bytesWritten, bool isUnsigned, bool isBigEndian, MethodInfo * method)); +DO_APP_FUNC(0x023520E0, bool, BigInteger_1_TryWriteOrCountBytes, (BigInteger_1 * __this, Span_1_Byte_ destination, int32_t * bytesWritten, bool isUnsigned, bool isBigEndian, MethodInfo * method)); +DO_APP_FUNC(0x02352190, Byte__Array *, BigInteger_1_TryGetBytes, (BigInteger_1 * __this, BigInteger_GetBytesMode__Enum mode, Span_1_Byte_ destination, bool isUnsigned, bool isBigEndian, int32_t * bytesWritten, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA2578, BigInteger_1_TryGetBytes__MethodInfo); -DO_APP_FUNC(0x02352720, String *, BigInteger_1_ToString, (BigInteger_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x023527F0, String *, BigInteger_1_ToString_1, (BigInteger_1__Boxed * __this, String * format, IFormatProvider * provider, MethodInfo * method)); +DO_APP_FUNC(0x02352720, String *, BigInteger_1_ToString, (BigInteger_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x023527F0, String *, BigInteger_1_ToString_1, (BigInteger_1 * __this, String * format, IFormatProvider * provider, MethodInfo * method)); DO_APP_FUNC(0x023528F0, BigInteger_1, BigInteger_1_Add, (UInt32__Array * leftBits, int32_t leftSign, UInt32__Array * rightBits, int32_t rightSign, MethodInfo * method)); DO_APP_FUNC(0x02352AB0, BigInteger_1, BigInteger_1_op_Subtraction, (BigInteger_1 left, BigInteger_1 right, MethodInfo * method)); DO_APP_FUNC(0x02352CD0, BigInteger_1, BigInteger_1_Subtract, (UInt32__Array * leftBits, int32_t leftSign, UInt32__Array * rightBits, int32_t rightSign, MethodInfo * method)); @@ -115265,7 +127800,7 @@ DO_APP_FUNC(0x02353A90, BigInteger_1, BigInteger_1_op_Multiply, (BigInteger_1 le DO_APP_FUNC(0x02353DB0, bool, BigInteger_1_op_GreaterThanOrEqual, (BigInteger_1 left, BigInteger_1 right, MethodInfo * method)); DO_APP_FUNC(0x02353E20, bool, BigInteger_1_op_Inequality, (BigInteger_1 left, BigInteger_1 right, MethodInfo * method)); DO_APP_FUNC(0x02353E90, bool, BigInteger_1_op_LessThan, (BigInteger_1 left, int64_t right, MethodInfo * method)); -DO_APP_FUNC(0x02353F00, bool, BigInteger_1_GetPartsForBitManipulation, (BigInteger_1 x, UInt32__Array * xd, int32_t xl, MethodInfo * method)); +DO_APP_FUNC(0x02353F00, bool, BigInteger_1_GetPartsForBitManipulation, (BigInteger_1 * x, UInt32__Array * * xd, int32_t * xl, MethodInfo * method)); DO_APP_FUNC(0x023540E0, int32_t, BigInteger_1_GetDiffLength, (UInt32__Array * rgu1, UInt32__Array * rgu2, int32_t cu, MethodInfo * method)); DO_APP_FUNC(0x02354140, void, BigInteger_1__cctor, (MethodInfo * method)); DO_APP_FUNC(0x023545F0, UInt32__Array *, BigIntegerCalculator_Add, (UInt32__Array * left, uint32_t right, MethodInfo * method)); @@ -115278,9 +127813,9 @@ DO_APP_FUNC(0x02354B50, void, BigIntegerCalculator_Subtract_2, (uint32_t * left, DO_APP_FUNC(0x02354C00, void, BigIntegerCalculator_SubtractSelf, (uint32_t * left, int32_t leftLength, uint32_t * right, int32_t rightLength, MethodInfo * method)); DO_APP_FUNC(0x02354C70, int32_t, BigIntegerCalculator_Compare, (UInt32__Array * left, UInt32__Array * right, MethodInfo * method)); DO_APP_FUNC(0x02354D00, int32_t, BigIntegerCalculator_Compare_1, (uint32_t * left, int32_t leftLength, uint32_t * right, int32_t rightLength, MethodInfo * method)); -DO_APP_FUNC(0x02354D50, UInt32__Array *, BigIntegerCalculator_Divide, (UInt32__Array * left, uint32_t right, uint32_t remainder, MethodInfo * method)); +DO_APP_FUNC(0x02354D50, UInt32__Array *, BigIntegerCalculator_Divide, (UInt32__Array * left, uint32_t right, uint32_t * remainder, MethodInfo * method)); DO_APP_FUNC(0x02354E10, uint32_t, BigIntegerCalculator_Remainder, (UInt32__Array * left, uint32_t right, MethodInfo * method)); -DO_APP_FUNC(0x02354E70, UInt32__Array *, BigIntegerCalculator_Divide_1, (UInt32__Array * left, UInt32__Array * right, UInt32__Array * remainder, MethodInfo * method)); +DO_APP_FUNC(0x02354E70, UInt32__Array *, BigIntegerCalculator_Divide_1, (UInt32__Array * left, UInt32__Array * right, UInt32__Array * * remainder, MethodInfo * method)); DO_APP_FUNC(0x02355020, UInt32__Array *, BigIntegerCalculator_Divide_2, (UInt32__Array * left, UInt32__Array * right, MethodInfo * method)); DO_APP_FUNC(0x02355160, UInt32__Array *, BigIntegerCalculator_Remainder_1, (UInt32__Array * left, UInt32__Array * right, MethodInfo * method)); DO_APP_FUNC(0x02355260, void, BigIntegerCalculator_Divide_3, (uint32_t * left, int32_t leftLength, uint32_t * right, int32_t rightLength, uint32_t * bits, int32_t bitsLength, MethodInfo * method)); @@ -115299,12 +127834,12 @@ DO_APP_FUNC(0x02355CD0, UInt32__Array *, BigIntegerCalculator_Pow_4, (uint32_t v DO_APP_FUNC(0x02355D70, UInt32__Array *, BigIntegerCalculator_Pow_5, (UInt32__Array * value, uint32_t power, UInt32__Array * modulus, MethodInfo * method)); DO_APP_FUNC(0x02355E40, UInt32__Array *, BigIntegerCalculator_Pow_6, (uint32_t value, UInt32__Array * power, UInt32__Array * modulus, MethodInfo * method)); DO_APP_FUNC(0x02355EE0, UInt32__Array *, BigIntegerCalculator_Pow_7, (UInt32__Array * value, UInt32__Array * power, UInt32__Array * modulus, MethodInfo * method)); -DO_APP_FUNC(0x02355FB0, UInt32__Array *, BigIntegerCalculator_PowCore_2, (UInt32__Array * power, UInt32__Array * modulus, BigIntegerCalculator_BitsBuffer value, MethodInfo * method)); -DO_APP_FUNC(0x02356430, UInt32__Array *, BigIntegerCalculator_PowCore_3, (uint32_t power, UInt32__Array * modulus, BigIntegerCalculator_BitsBuffer value, MethodInfo * method)); -DO_APP_FUNC(0x02356760, void, BigIntegerCalculator_PowCore_4, (UInt32__Array * power, UInt32__Array * modulus, BigIntegerCalculator_BitsBuffer value, BigIntegerCalculator_BitsBuffer result, BigIntegerCalculator_BitsBuffer temp, MethodInfo * method)); -DO_APP_FUNC(0x023568B0, void, BigIntegerCalculator_PowCore_5, (uint32_t power, UInt32__Array * modulus, BigIntegerCalculator_BitsBuffer value, BigIntegerCalculator_BitsBuffer result, BigIntegerCalculator_BitsBuffer temp, MethodInfo * method)); -DO_APP_FUNC(0x02356950, void, BigIntegerCalculator_PowCore_6, (UInt32__Array * power, BigIntegerCalculator_FastReducer reducer, BigIntegerCalculator_BitsBuffer value, BigIntegerCalculator_BitsBuffer result, BigIntegerCalculator_BitsBuffer temp, MethodInfo * method)); -DO_APP_FUNC(0x02356AA0, void, BigIntegerCalculator_PowCore_7, (uint32_t power, BigIntegerCalculator_FastReducer reducer, BigIntegerCalculator_BitsBuffer value, BigIntegerCalculator_BitsBuffer result, BigIntegerCalculator_BitsBuffer temp, MethodInfo * method)); +DO_APP_FUNC(0x02355FB0, UInt32__Array *, BigIntegerCalculator_PowCore_2, (UInt32__Array * power, UInt32__Array * modulus, BigIntegerCalculator_BitsBuffer * value, MethodInfo * method)); +DO_APP_FUNC(0x02356430, UInt32__Array *, BigIntegerCalculator_PowCore_3, (uint32_t power, UInt32__Array * modulus, BigIntegerCalculator_BitsBuffer * value, MethodInfo * method)); +DO_APP_FUNC(0x02356760, void, BigIntegerCalculator_PowCore_4, (UInt32__Array * power, UInt32__Array * modulus, BigIntegerCalculator_BitsBuffer * value, BigIntegerCalculator_BitsBuffer * result, BigIntegerCalculator_BitsBuffer * temp, MethodInfo * method)); +DO_APP_FUNC(0x023568B0, void, BigIntegerCalculator_PowCore_5, (uint32_t power, UInt32__Array * modulus, BigIntegerCalculator_BitsBuffer * value, BigIntegerCalculator_BitsBuffer * result, BigIntegerCalculator_BitsBuffer * temp, MethodInfo * method)); +DO_APP_FUNC(0x02356950, void, BigIntegerCalculator_PowCore_6, (UInt32__Array * power, BigIntegerCalculator_FastReducer * reducer, BigIntegerCalculator_BitsBuffer * value, BigIntegerCalculator_BitsBuffer * result, BigIntegerCalculator_BitsBuffer * temp, MethodInfo * method)); +DO_APP_FUNC(0x02356AA0, void, BigIntegerCalculator_PowCore_7, (uint32_t power, BigIntegerCalculator_FastReducer * reducer, BigIntegerCalculator_BitsBuffer * value, BigIntegerCalculator_BitsBuffer * result, BigIntegerCalculator_BitsBuffer * temp, MethodInfo * method)); DO_APP_FUNC(0x02356B50, int32_t, BigIntegerCalculator_ActualLength, (UInt32__Array * value, MethodInfo * method)); DO_APP_FUNC(0x02356BD0, int32_t, BigIntegerCalculator_ActualLength_1, (UInt32__Array * value, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x02356C10, UInt32__Array *, BigIntegerCalculator_Square, (UInt32__Array * value, MethodInfo * method)); @@ -115316,162 +127851,169 @@ DO_APP_FUNC(0x02357320, void, BigIntegerCalculator_Multiply_2, (uint32_t * left, DO_APP_FUNC_METHODINFO(0x03CA2568, BigIntegerCalculator_Multiply_2__MethodInfo); DO_APP_FUNC(0x02357880, void, BigIntegerCalculator_SubtractCore, (uint32_t * left, int32_t leftLength, uint32_t * right, int32_t rightLength, uint32_t * core, int32_t coreLength, MethodInfo * method)); DO_APP_FUNC(0x02357990, void, BigIntegerCalculator__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02357A10, void, BigIntegerCalculator_BitsBuffer__ctor, (BigIntegerCalculator_BitsBuffer__Boxed * __this, int32_t size, uint32_t value, MethodInfo * method)); -DO_APP_FUNC(0x02357AE0, void, BigIntegerCalculator_BitsBuffer__ctor_1, (BigIntegerCalculator_BitsBuffer__Boxed * __this, int32_t size, UInt32__Array * value, MethodInfo * method)); -DO_APP_FUNC(0x02357C40, void, BigIntegerCalculator_BitsBuffer_MultiplySelf, (BigIntegerCalculator_BitsBuffer__Boxed * __this, BigIntegerCalculator_BitsBuffer value, BigIntegerCalculator_BitsBuffer temp, MethodInfo * method)); -DO_APP_FUNC(0x02357DC0, void, BigIntegerCalculator_BitsBuffer_SquareSelf, (BigIntegerCalculator_BitsBuffer__Boxed * __this, BigIntegerCalculator_BitsBuffer temp, MethodInfo * method)); -DO_APP_FUNC(0x02357EB0, void, BigIntegerCalculator_BitsBuffer_Reduce, (BigIntegerCalculator_BitsBuffer__Boxed * __this, BigIntegerCalculator_FastReducer reducer, MethodInfo * method)); -DO_APP_FUNC(0x02357EE0, void, BigIntegerCalculator_BitsBuffer_Reduce_1, (BigIntegerCalculator_BitsBuffer__Boxed * __this, UInt32__Array * modulus, MethodInfo * method)); -DO_APP_FUNC(0x00471910, UInt32__Array *, BigIntegerCalculator_BitsBuffer_GetBits, (BigIntegerCalculator_BitsBuffer__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0144C360, int32_t, BigIntegerCalculator_BitsBuffer_GetSize, (BigIntegerCalculator_BitsBuffer__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02358000, void, BigIntegerCalculator_BitsBuffer_Apply, (BigIntegerCalculator_BitsBuffer__Boxed * __this, BigIntegerCalculator_BitsBuffer temp, int32_t maxLength, MethodInfo * method)); -DO_APP_FUNC(0x02358150, void, BigIntegerCalculator_FastReducer__ctor, (BigIntegerCalculator_FastReducer__Boxed * __this, UInt32__Array * modulus, MethodInfo * method)); -DO_APP_FUNC(0x02358500, int32_t, BigIntegerCalculator_FastReducer_Reduce, (BigIntegerCalculator_FastReducer__Boxed * __this, UInt32__Array * value, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x02357A10, void, BigIntegerCalculator_BitsBuffer__ctor, (BigIntegerCalculator_BitsBuffer * __this, int32_t size, uint32_t value, MethodInfo * method)); +DO_APP_FUNC(0x02357AE0, void, BigIntegerCalculator_BitsBuffer__ctor_1, (BigIntegerCalculator_BitsBuffer * __this, int32_t size, UInt32__Array * value, MethodInfo * method)); +DO_APP_FUNC(0x02357C40, void, BigIntegerCalculator_BitsBuffer_MultiplySelf, (BigIntegerCalculator_BitsBuffer * __this, BigIntegerCalculator_BitsBuffer * value, BigIntegerCalculator_BitsBuffer * temp, MethodInfo * method)); +DO_APP_FUNC(0x02357DC0, void, BigIntegerCalculator_BitsBuffer_SquareSelf, (BigIntegerCalculator_BitsBuffer * __this, BigIntegerCalculator_BitsBuffer * temp, MethodInfo * method)); +DO_APP_FUNC(0x02357EB0, void, BigIntegerCalculator_BitsBuffer_Reduce, (BigIntegerCalculator_BitsBuffer * __this, BigIntegerCalculator_FastReducer * reducer, MethodInfo * method)); +DO_APP_FUNC(0x02357EE0, void, BigIntegerCalculator_BitsBuffer_Reduce_1, (BigIntegerCalculator_BitsBuffer * __this, UInt32__Array * modulus, MethodInfo * method)); +DO_APP_FUNC(0x00471910, UInt32__Array *, BigIntegerCalculator_BitsBuffer_GetBits, (BigIntegerCalculator_BitsBuffer * __this, MethodInfo * method)); +DO_APP_FUNC(0x0144C360, int32_t, BigIntegerCalculator_BitsBuffer_GetSize, (BigIntegerCalculator_BitsBuffer * __this, MethodInfo * method)); +DO_APP_FUNC(0x02358000, void, BigIntegerCalculator_BitsBuffer_Apply, (BigIntegerCalculator_BitsBuffer * __this, BigIntegerCalculator_BitsBuffer * temp, int32_t maxLength, MethodInfo * method)); +DO_APP_FUNC(0x02358150, void, BigIntegerCalculator_FastReducer__ctor, (BigIntegerCalculator_FastReducer * __this, UInt32__Array * modulus, MethodInfo * method)); +DO_APP_FUNC(0x02358500, int32_t, BigIntegerCalculator_FastReducer_Reduce, (BigIntegerCalculator_FastReducer * __this, UInt32__Array * value, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x02358600, int32_t, BigIntegerCalculator_FastReducer_DivMul, (UInt32__Array * left, int32_t leftLength, UInt32__Array * right, int32_t rightLength, UInt32__Array * bits, int32_t k, MethodInfo * method)); DO_APP_FUNC(0x02358790, int32_t, BigIntegerCalculator_FastReducer_SubMod, (UInt32__Array * left, int32_t leftLength, UInt32__Array * right, int32_t rightLength, UInt32__Array * modulus, int32_t k, MethodInfo * method)); -DO_APP_FUNC(0x02358A00, uint16_t, BigNumber_ParseFormatSpecifier, (ReadOnlySpan_1_Char_ format, int32_t digits, MethodInfo * method)); -DO_APP_FUNC(0x02358B50, String *, BigNumber_FormatBigIntegerToHex, (bool targetSpan, BigInteger_1 value, uint16_t format, int32_t digits, NumberFormatInfo * info, Span_1_Char_ destination, int32_t charsWritten, bool spanSuccess, MethodInfo * method)); +DO_APP_FUNC(0x02358A00, uint16_t, BigNumber_ParseFormatSpecifier, (ReadOnlySpan_1_Char_ format, int32_t * digits, MethodInfo * method)); +DO_APP_FUNC(0x02358B50, String *, BigNumber_FormatBigIntegerToHex, (bool targetSpan, BigInteger_1 value, uint16_t format, int32_t digits, NumberFormatInfo * info, Span_1_Char_ destination, int32_t * charsWritten, bool * spanSuccess, MethodInfo * method)); DO_APP_FUNC(0x02359220, String *, BigNumber_FormatBigInteger, (BigInteger_1 value, String * format, NumberFormatInfo * info, MethodInfo * method)); -DO_APP_FUNC(0x02359310, String *, BigNumber_FormatBigInteger_1, (bool targetSpan, BigInteger_1 value, String * formatString, ReadOnlySpan_1_Char_ formatSpan, NumberFormatInfo * info, Span_1_Char_ destination, int32_t charsWritten, bool spanSuccess, MethodInfo * method)); +DO_APP_FUNC(0x02359310, String *, BigNumber_FormatBigInteger_1, (bool targetSpan, BigInteger_1 value, String * formatString, ReadOnlySpan_1_Char_ formatSpan, NumberFormatInfo * info, Span_1_Char_ destination, int32_t * charsWritten, bool * spanSuccess, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA2538, BigNumber_FormatBigInteger_1__MethodInfo); DO_APP_FUNC(0x0235A0E0, void, NumericsHelpers_DangerousMakeTwosComplement, (UInt32__Array * d, MethodInfo * method)); DO_APP_FUNC(0x0235A170, uint64_t, NumericsHelpers_MakeUlong, (uint32_t uHi, uint32_t uLo, MethodInfo * method)); DO_APP_FUNC(0x0235A180, uint32_t, NumericsHelpers_Abs, (int32_t a, MethodInfo * method)); DO_APP_FUNC(0x0235A190, uint32_t, NumericsHelpers_CombineHash, (uint32_t u1, uint32_t u2, MethodInfo * method)); DO_APP_FUNC(0x0235A190, int32_t, NumericsHelpers_CombineHash_1, (int32_t n1, int32_t n2, MethodInfo * method)); -DO_APP_FUNC(0x0235A1A0, void, FormatProvider_FormatBigInteger, (ValueStringBuilder_1 sb, int32_t precision, int32_t scale, bool sign, ReadOnlySpan_1_Char_ format, NumberFormatInfo * numberFormatInfo, Char__Array * digits, int32_t startIndex, MethodInfo * method)); -DO_APP_FUNC(0x0235A320, void, FormatProvider_Number_Int32ToDecChars, (uint16_t * buffer, int32_t index, uint32_t value, int32_t digits, MethodInfo * method)); -DO_APP_FUNC(0x0235A390, uint16_t, FormatProvider_Number_ParseFormatSpecifier, (ReadOnlySpan_1_Char_ format, int32_t digits, MethodInfo * method)); -DO_APP_FUNC(0x0235A530, void, FormatProvider_Number_NumberToString, (ValueStringBuilder_1 sb, FormatProvider_Number_NumberBuffer number, uint16_t format, int32_t nMaxDigits, NumberFormatInfo * info, bool isDecimal, MethodInfo * method)); +DO_APP_FUNC(0x0235A1A0, void, FormatProvider_FormatBigInteger, (ValueStringBuilder_1 * sb, int32_t precision, int32_t scale, bool sign, ReadOnlySpan_1_Char_ format, NumberFormatInfo * numberFormatInfo, Char__Array * digits, int32_t startIndex, MethodInfo * method)); +DO_APP_FUNC(0x0235A320, void, FormatProvider_Number_Int32ToDecChars, (uint16_t * buffer, int32_t * index, uint32_t value, int32_t digits, MethodInfo * method)); +DO_APP_FUNC(0x0235A390, uint16_t, FormatProvider_Number_ParseFormatSpecifier, (ReadOnlySpan_1_Char_ format, int32_t * digits, MethodInfo * method)); +DO_APP_FUNC(0x0235A530, void, FormatProvider_Number_NumberToString, (ValueStringBuilder_1 * sb, FormatProvider_Number_NumberBuffer * number, uint16_t format, int32_t nMaxDigits, NumberFormatInfo * info, bool isDecimal, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA2560, FormatProvider_Number_NumberToString__MethodInfo); -DO_APP_FUNC(0x0235ABE0, void, FormatProvider_Number_FormatCurrency, (ValueStringBuilder_1 sb, FormatProvider_Number_NumberBuffer number, int32_t nMinDigits, int32_t nMaxDigits, NumberFormatInfo * info, MethodInfo * method)); +DO_APP_FUNC(0x0235ABE0, void, FormatProvider_Number_FormatCurrency, (ValueStringBuilder_1 * sb, FormatProvider_Number_NumberBuffer * number, int32_t nMinDigits, int32_t nMaxDigits, NumberFormatInfo * info, MethodInfo * method)); DO_APP_FUNC(0x0235AE30, int32_t, FormatProvider_Number_wcslen, (uint16_t * s, MethodInfo * method)); -DO_APP_FUNC(0x0235AE50, void, FormatProvider_Number_FormatFixed, (ValueStringBuilder_1 sb, FormatProvider_Number_NumberBuffer number, int32_t nMinDigits, int32_t nMaxDigits, NumberFormatInfo * info, Int32__Array * groupDigits, String * sDecimal, String * sGroup, MethodInfo * method)); +DO_APP_FUNC(0x0235AE50, void, FormatProvider_Number_FormatFixed, (ValueStringBuilder_1 * sb, FormatProvider_Number_NumberBuffer * number, int32_t nMinDigits, int32_t nMaxDigits, NumberFormatInfo * info, Int32__Array * groupDigits, String * sDecimal, String * sGroup, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA2558, FormatProvider_Number_FormatFixed__MethodInfo); -DO_APP_FUNC(0x0235B250, void, FormatProvider_Number_FormatNumber, (ValueStringBuilder_1 sb, FormatProvider_Number_NumberBuffer number, int32_t nMinDigits, int32_t nMaxDigits, NumberFormatInfo * info, MethodInfo * method)); -DO_APP_FUNC(0x0235B450, void, FormatProvider_Number_FormatScientific, (ValueStringBuilder_1 sb, FormatProvider_Number_NumberBuffer number, int32_t nMinDigits, int32_t nMaxDigits, NumberFormatInfo * info, uint16_t expChar, MethodInfo * method)); -DO_APP_FUNC(0x0235B580, void, FormatProvider_Number_FormatExponent, (ValueStringBuilder_1 sb, NumberFormatInfo * info, int32_t value, uint16_t expChar, int32_t minDigits, bool positiveSign, MethodInfo * method)); -DO_APP_FUNC(0x0235B720, void, FormatProvider_Number_FormatGeneral, (ValueStringBuilder_1 sb, FormatProvider_Number_NumberBuffer number, int32_t nMinDigits, int32_t nMaxDigits, NumberFormatInfo * info, uint16_t expChar, bool bSuppressScientific, MethodInfo * method)); -DO_APP_FUNC(0x0235B990, void, FormatProvider_Number_FormatPercent, (ValueStringBuilder_1 sb, FormatProvider_Number_NumberBuffer number, int32_t nMinDigits, int32_t nMaxDigits, NumberFormatInfo * info, MethodInfo * method)); -DO_APP_FUNC(0x0235BBE0, void, FormatProvider_Number_RoundNumber, (FormatProvider_Number_NumberBuffer number, int32_t pos, MethodInfo * method)); +DO_APP_FUNC(0x0235B250, void, FormatProvider_Number_FormatNumber, (ValueStringBuilder_1 * sb, FormatProvider_Number_NumberBuffer * number, int32_t nMinDigits, int32_t nMaxDigits, NumberFormatInfo * info, MethodInfo * method)); +DO_APP_FUNC(0x0235B450, void, FormatProvider_Number_FormatScientific, (ValueStringBuilder_1 * sb, FormatProvider_Number_NumberBuffer * number, int32_t nMinDigits, int32_t nMaxDigits, NumberFormatInfo * info, uint16_t expChar, MethodInfo * method)); +DO_APP_FUNC(0x0235B580, void, FormatProvider_Number_FormatExponent, (ValueStringBuilder_1 * sb, NumberFormatInfo * info, int32_t value, uint16_t expChar, int32_t minDigits, bool positiveSign, MethodInfo * method)); +DO_APP_FUNC(0x0235B720, void, FormatProvider_Number_FormatGeneral, (ValueStringBuilder_1 * sb, FormatProvider_Number_NumberBuffer * number, int32_t nMinDigits, int32_t nMaxDigits, NumberFormatInfo * info, uint16_t expChar, bool bSuppressScientific, MethodInfo * method)); +DO_APP_FUNC(0x0235B990, void, FormatProvider_Number_FormatPercent, (ValueStringBuilder_1 * sb, FormatProvider_Number_NumberBuffer * number, int32_t nMinDigits, int32_t nMaxDigits, NumberFormatInfo * info, MethodInfo * method)); +DO_APP_FUNC(0x0235BBE0, void, FormatProvider_Number_RoundNumber, (FormatProvider_Number_NumberBuffer * number, int32_t pos, MethodInfo * method)); DO_APP_FUNC(0x0235BCC0, int32_t, FormatProvider_Number_FindSection, (ReadOnlySpan_1_Char_ format, int32_t section, MethodInfo * method)); -DO_APP_FUNC(0x0235BDF0, void, FormatProvider_Number_NumberToStringFormat, (ValueStringBuilder_1 sb, FormatProvider_Number_NumberBuffer number, ReadOnlySpan_1_Char_ format, NumberFormatInfo * info, MethodInfo * method)); +DO_APP_FUNC(0x0235BDF0, void, FormatProvider_Number_NumberToStringFormat, (ValueStringBuilder_1 * sb, FormatProvider_Number_NumberBuffer * number, ReadOnlySpan_1_Char_ format, NumberFormatInfo * info, MethodInfo * method)); DO_APP_FUNC(0x0235CB70, void, FormatProvider_Number__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, uint16_t *, FormatProvider_Number_NumberBuffer_get_digits, (FormatProvider_Number_NumberBuffer__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x019766D0, void, ValueStringBuilder_1__ctor, (ValueStringBuilder_1__Boxed * __this, Span_1_Char_ initialBuffer, MethodInfo * method)); -DO_APP_FUNC(0x003BC2E0, int32_t, ValueStringBuilder_1_get_Length, (ValueStringBuilder_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0235DD30, String *, ValueStringBuilder_1_ToString, (ValueStringBuilder_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0235DE10, bool, ValueStringBuilder_1_TryCopyTo, (ValueStringBuilder_1__Boxed * __this, Span_1_Char_ destination, int32_t charsWritten, MethodInfo * method)); -DO_APP_FUNC(0x0235DF70, void, ValueStringBuilder_1_Insert, (ValueStringBuilder_1__Boxed * __this, int32_t index, uint16_t value, int32_t count, MethodInfo * method)); -DO_APP_FUNC(0x0235E230, void, ValueStringBuilder_1_Append, (ValueStringBuilder_1__Boxed * __this, uint16_t c, MethodInfo * method)); -DO_APP_FUNC(0x0235E2B0, void, ValueStringBuilder_1_Append_1, (ValueStringBuilder_1__Boxed * __this, String * s, MethodInfo * method)); -DO_APP_FUNC(0x0235E350, void, ValueStringBuilder_1_AppendSlow, (ValueStringBuilder_1__Boxed * __this, String * s, MethodInfo * method)); -DO_APP_FUNC(0x0235E4F0, void, ValueStringBuilder_1_Append_2, (ValueStringBuilder_1__Boxed * __this, uint16_t c, int32_t count, MethodInfo * method)); -DO_APP_FUNC(0x0235E5D0, void, ValueStringBuilder_1_Append_3, (ValueStringBuilder_1__Boxed * __this, uint16_t * value, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x0235E6B0, Span_1_Char_, ValueStringBuilder_1_AppendSpan, (ValueStringBuilder_1__Boxed * __this, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x0235E790, void, ValueStringBuilder_1_GrowAndAppend, (ValueStringBuilder_1__Boxed * __this, uint16_t c, MethodInfo * method)); -DO_APP_FUNC(0x0235E7D0, void, ValueStringBuilder_1_Grow, (ValueStringBuilder_1__Boxed * __this, int32_t requiredAdditionalCapacity, MethodInfo * method)); -DO_APP_FUNC(0x0235EA10, void, ValueStringBuilder_1_Dispose, (ValueStringBuilder_1__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, uint16_t *, FormatProvider_Number_NumberBuffer_get_digits, (FormatProvider_Number_NumberBuffer * __this, MethodInfo * method)); +DO_APP_FUNC(0x019766D0, void, ValueStringBuilder_1__ctor, (ValueStringBuilder_1 * __this, Span_1_Char_ initialBuffer, MethodInfo * method)); +DO_APP_FUNC(0x003BC2E0, int32_t, ValueStringBuilder_1_get_Length, (ValueStringBuilder_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0235DD30, String *, ValueStringBuilder_1_ToString, (ValueStringBuilder_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0235DE10, bool, ValueStringBuilder_1_TryCopyTo, (ValueStringBuilder_1 * __this, Span_1_Char_ destination, int32_t * charsWritten, MethodInfo * method)); +DO_APP_FUNC(0x0235DF70, void, ValueStringBuilder_1_Insert, (ValueStringBuilder_1 * __this, int32_t index, uint16_t value, int32_t count, MethodInfo * method)); +DO_APP_FUNC(0x0235E230, void, ValueStringBuilder_1_Append, (ValueStringBuilder_1 * __this, uint16_t c, MethodInfo * method)); +DO_APP_FUNC(0x0235E2B0, void, ValueStringBuilder_1_Append_1, (ValueStringBuilder_1 * __this, String * s, MethodInfo * method)); +DO_APP_FUNC(0x0235E350, void, ValueStringBuilder_1_AppendSlow, (ValueStringBuilder_1 * __this, String * s, MethodInfo * method)); +DO_APP_FUNC(0x0235E4F0, void, ValueStringBuilder_1_Append_2, (ValueStringBuilder_1 * __this, uint16_t c, int32_t count, MethodInfo * method)); +DO_APP_FUNC(0x0235E5D0, void, ValueStringBuilder_1_Append_3, (ValueStringBuilder_1 * __this, uint16_t * value, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x0235E6B0, Span_1_Char_, ValueStringBuilder_1_AppendSpan, (ValueStringBuilder_1 * __this, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x0235E790, void, ValueStringBuilder_1_GrowAndAppend, (ValueStringBuilder_1 * __this, uint16_t c, MethodInfo * method)); +DO_APP_FUNC(0x0235E7D0, void, ValueStringBuilder_1_Grow, (ValueStringBuilder_1 * __this, int32_t requiredAdditionalCapacity, MethodInfo * method)); +DO_APP_FUNC(0x0235EA10, void, ValueStringBuilder_1_Dispose, (ValueStringBuilder_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02887A40, void, UdpAssert_Assert, (bool condition, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6728, UdpAssert_Assert__MethodInfo); DO_APP_FUNC(0x02887AB0, void, UdpAssert_Assert_1, (bool condition, String * message, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6738, UdpAssert_Assert_1__MethodInfo); DO_APP_FUNC(0x02887B30, void, UdpAssert_Assert_2, (bool condition, String * message, Object__Array * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6748, UdpAssert_Assert_2__MethodInfo); DO_APP_FUNC(0x02887BD0, void, Blit_Clear, (Byte__Array * bytes, MethodInfo * method)); -DO_APP_FUNC(0x02887C00, bool, Blit_PackBool, (Byte__Array * bytes, int32_t offset, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02887C30, bool, Blit_ReadBool, (Byte__Array * bytes, int32_t offset, MethodInfo * method)); -DO_APP_FUNC(0x02887C60, void, Blit_PackByte, (Byte__Array * bytes, int32_t offset, uint8_t value, MethodInfo * method)); -DO_APP_FUNC(0x02887C90, uint8_t, Blit_ReadByte, (Byte__Array * bytes, int32_t offset, MethodInfo * method)); +DO_APP_FUNC(0x02887C00, bool, Blit_PackBool, (Byte__Array * bytes, int32_t * offset, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02887C30, bool, Blit_ReadBool, (Byte__Array * bytes, int32_t * offset, MethodInfo * method)); +DO_APP_FUNC(0x02887C60, void, Blit_PackByte, (Byte__Array * bytes, int32_t * offset, uint8_t value, MethodInfo * method)); +DO_APP_FUNC(0x02887C90, uint8_t, Blit_ReadByte, (Byte__Array * bytes, int32_t * offset, MethodInfo * method)); DO_APP_FUNC(0x02887CC0, int32_t, Blit_GetBytesPrefixSize, (Byte__Array * bytes, MethodInfo * method)); -DO_APP_FUNC(0x02887CE0, void, Blit_PackBytesPrefix, (Byte__Array * bytes, int32_t offset, Byte__Array * from, MethodInfo * method)); -DO_APP_FUNC(0x02887DB0, Byte__Array *, Blit_ReadBytesPrefix, (Byte__Array * bytes, int32_t offset, MethodInfo * method)); +DO_APP_FUNC(0x02887CE0, void, Blit_PackBytesPrefix, (Byte__Array * bytes, int32_t * offset, Byte__Array * from, MethodInfo * method)); +DO_APP_FUNC(0x02887DB0, Byte__Array *, Blit_ReadBytesPrefix, (Byte__Array * bytes, int32_t * offset, MethodInfo * method)); DO_APP_FUNC(0x02887ED0, void, Blit_PackBytes, (Byte__Array * bytes, int32_t offset, Byte__Array * from, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x02887F00, void, Blit_ReadBytes, (Byte__Array * bytes, int32_t offset, Byte__Array * into, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x02887F20, void, Blit_PackBytes_1, (Byte__Array * bytes, int32_t bytesOffset, Byte__Array * from, int32_t fromOffset, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x02887F70, void, Blit_ReadBytes_1, (Byte__Array * bytes, int32_t bytesOffset, Byte__Array * into, int32_t intoOffset, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x02887FB0, void, Blit_PackU16, (Byte__Array * bytes, int32_t offset, uint16_t value, MethodInfo * method)); -DO_APP_FUNC(0x02888000, uint16_t, Blit_ReadU16, (Byte__Array * bytes, int32_t offset, MethodInfo * method)); -DO_APP_FUNC(0x02888060, void, Blit_PackI32, (Byte__Array * bytes, int32_t offset, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x028880E0, int32_t, Blit_ReadI32, (Byte__Array * bytes, int32_t offset, MethodInfo * method)); -DO_APP_FUNC(0x02888160, void, Blit_PackU32, (Byte__Array * bytes, int32_t offset, uint32_t value, MethodInfo * method)); -DO_APP_FUNC(0x02888180, void, Blit_PackU32_1, (Byte__Array * bytes, int32_t offset, uint32_t value, int32_t byteCount, MethodInfo * method)); -DO_APP_FUNC(0x028882C0, uint32_t, Blit_ReadU32, (Byte__Array * bytes, int32_t offset, MethodInfo * method)); -DO_APP_FUNC(0x028882D0, uint32_t, Blit_ReadU32_1, (Byte__Array * bytes, int32_t offset, int32_t byteCount, MethodInfo * method)); +DO_APP_FUNC(0x02887F20, void, Blit_PackBytes_1, (Byte__Array * bytes, int32_t * bytesOffset, Byte__Array * from, int32_t fromOffset, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x02887F70, void, Blit_ReadBytes_1, (Byte__Array * bytes, int32_t * bytesOffset, Byte__Array * into, int32_t intoOffset, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x02887FB0, void, Blit_PackU16, (Byte__Array * bytes, int32_t * offset, uint16_t value, MethodInfo * method)); +DO_APP_FUNC(0x02888000, uint16_t, Blit_ReadU16, (Byte__Array * bytes, int32_t * offset, MethodInfo * method)); +DO_APP_FUNC(0x02888060, void, Blit_PackI32, (Byte__Array * bytes, int32_t * offset, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x028880E0, int32_t, Blit_ReadI32, (Byte__Array * bytes, int32_t * offset, MethodInfo * method)); +DO_APP_FUNC(0x02888160, void, Blit_PackU32, (Byte__Array * bytes, int32_t * offset, uint32_t value, MethodInfo * method)); +DO_APP_FUNC(0x02888180, void, Blit_PackU32_1, (Byte__Array * bytes, int32_t * offset, uint32_t value, int32_t byteCount, MethodInfo * method)); +DO_APP_FUNC(0x028882C0, uint32_t, Blit_ReadU32, (Byte__Array * bytes, int32_t * offset, MethodInfo * method)); +DO_APP_FUNC(0x028882D0, uint32_t, Blit_ReadU32_1, (Byte__Array * bytes, int32_t * offset, int32_t byteCount, MethodInfo * method)); DO_APP_FUNC(0x02888450, void, Blit_PackF32, (Byte__Array * bytes, int32_t offset, float value, MethodInfo * method)); DO_APP_FUNC(0x028884D0, float, Blit_ReadF32, (Byte__Array * bytes, int32_t offset, MethodInfo * method)); -DO_APP_FUNC(0x02888550, void, Blit_PackU64, (Byte__Array * bytes, int32_t offset, uint64_t value, MethodInfo * method)); -DO_APP_FUNC(0x02888630, uint64_t, Blit_ReadU64, (Byte__Array * bytes, int32_t offset, MethodInfo * method)); +DO_APP_FUNC(0x02888550, void, Blit_PackU64, (Byte__Array * bytes, int32_t * offset, uint64_t value, MethodInfo * method)); +DO_APP_FUNC(0x02888630, uint64_t, Blit_ReadU64, (Byte__Array * bytes, int32_t * offset, MethodInfo * method)); DO_APP_FUNC(0x02888710, int32_t, Blit_GetStringSize, (String * value, MethodInfo * method)); -DO_APP_FUNC(0x02888770, void, Blit_PackString, (Byte__Array * bytes, int32_t offset, String * value, MethodInfo * method)); -DO_APP_FUNC(0x02888870, String *, Blit_ReadString, (Byte__Array * bytes, int32_t offset, MethodInfo * method)); -DO_APP_FUNC(0x02888970, UdpEndPoint, Blit_ReadEndPoint, (Byte__Array * bytes, int32_t offset, MethodInfo * method)); -DO_APP_FUNC(0x02888A50, void, Blit_PackEndPoint, (Byte__Array * bytes, int32_t offset, UdpEndPoint endpoint, MethodInfo * method)); -DO_APP_FUNC(0x02888B20, void, Blit_PackGuid, (Byte__Array * bytes, int32_t offset, Guid value, MethodInfo * method)); -DO_APP_FUNC(0x02888D60, Guid, Blit_ReadGuid, (Byte__Array * bytes, int32_t offset, MethodInfo * method)); -DO_APP_FUNC(0x02888F10, bool, UdpEndPoint_get_IsWan, (UdpEndPoint__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02888FC0, bool, UdpEndPoint_get_IsLan, (UdpEndPoint__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02889090, UdpEndPoint_Native, UdpEndPoint_get_AsNative, (UdpEndPoint__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02889110, void, UdpEndPoint__ctor, (UdpEndPoint__Boxed * __this, UdpIPv4Address address, uint16_t port, MethodInfo * method)); -DO_APP_FUNC(0x02889130, void, UdpEndPoint__ctor_1, (UdpEndPoint__Boxed * __this, UdpIPv6Address address, uint16_t port, MethodInfo * method)); -DO_APP_FUNC(0x02889150, void, UdpEndPoint__ctor_2, (UdpEndPoint__Boxed * __this, UdpSteamID steamId, MethodInfo * method)); -DO_APP_FUNC(0x02889160, void, UdpEndPoint__ctor_3, (UdpEndPoint__Boxed * __this, uint64_t id, MethodInfo * method)); -DO_APP_FUNC(0x028891C0, int32_t, UdpEndPoint_CompareTo, (UdpEndPoint__Boxed * __this, UdpEndPoint other, MethodInfo * method)); -DO_APP_FUNC(0x02889280, bool, UdpEndPoint_Equals, (UdpEndPoint__Boxed * __this, UdpEndPoint other, MethodInfo * method)); -DO_APP_FUNC(0x02889340, int32_t, UdpEndPoint_GetHashCode, (UdpEndPoint__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02889350, bool, UdpEndPoint_Equals_1, (UdpEndPoint__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02889480, String *, UdpEndPoint_ToString, (UdpEndPoint__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02888770, void, Blit_PackString, (Byte__Array * bytes, int32_t * offset, String * value, MethodInfo * method)); +DO_APP_FUNC(0x02888870, String *, Blit_ReadString, (Byte__Array * bytes, int32_t * offset, MethodInfo * method)); +DO_APP_FUNC(0x02888970, UdpEndPoint, Blit_ReadEndPoint, (Byte__Array * bytes, int32_t * offset, MethodInfo * method)); +DO_APP_FUNC(0x02888A50, void, Blit_PackEndPoint, (Byte__Array * bytes, int32_t * offset, UdpEndPoint endpoint, MethodInfo * method)); +DO_APP_FUNC(0x02888B20, void, Blit_PackGuid, (Byte__Array * bytes, int32_t * offset, Guid value, MethodInfo * method)); +DO_APP_FUNC(0x02888D60, Guid, Blit_ReadGuid, (Byte__Array * bytes, int32_t * offset, MethodInfo * method)); +DO_APP_FUNC(0x02888F10, bool, UdpEndPoint_get_IsWan, (UdpEndPoint * __this, MethodInfo * method)); +DO_APP_FUNC(0x02888FC0, bool, UdpEndPoint_get_IsLan, (UdpEndPoint * __this, MethodInfo * method)); +DO_APP_FUNC(0x02889090, UdpEndPoint_Native, UdpEndPoint_get_AsNative, (UdpEndPoint * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB66E8, UdpEndPoint_get_AsNative__MethodInfo); +DO_APP_FUNC(0x02889110, void, UdpEndPoint__ctor, (UdpEndPoint * __this, UdpIPv4Address address, uint16_t port, MethodInfo * method)); +DO_APP_FUNC(0x02889130, void, UdpEndPoint__ctor_1, (UdpEndPoint * __this, UdpIPv6Address address, uint16_t port, MethodInfo * method)); +DO_APP_FUNC(0x02889150, void, UdpEndPoint__ctor_2, (UdpEndPoint * __this, UdpSteamID steamId, MethodInfo * method)); +DO_APP_FUNC(0x02889160, void, UdpEndPoint__ctor_3, (UdpEndPoint * __this, uint64_t id, MethodInfo * method)); +DO_APP_FUNC(0x028891C0, int32_t, UdpEndPoint_CompareTo, (UdpEndPoint * __this, UdpEndPoint other, MethodInfo * method)); +DO_APP_FUNC(0x02889280, bool, UdpEndPoint_Equals, (UdpEndPoint * __this, UdpEndPoint other, MethodInfo * method)); +DO_APP_FUNC(0x02889340, int32_t, UdpEndPoint_GetHashCode, (UdpEndPoint * __this, MethodInfo * method)); +DO_APP_FUNC(0x02889350, bool, UdpEndPoint_Equals_1, (UdpEndPoint * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02889480, String *, UdpEndPoint_ToString, (UdpEndPoint * __this, MethodInfo * method)); DO_APP_FUNC(0x02889760, UdpEndPoint, UdpEndPoint_Parse, (String * endpoint, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6718, UdpEndPoint_Parse__MethodInfo); DO_APP_FUNC(0x02889C40, bool, UdpEndPoint_op_Equality, (UdpEndPoint x, UdpEndPoint y, MethodInfo * method)); DO_APP_FUNC(0x02889CE0, bool, UdpEndPoint_op_Inequality, (UdpEndPoint x, UdpEndPoint y, MethodInfo * method)); DO_APP_FUNC(0x02889D80, UdpEndPoint, UdpEndPoint_op_BitwiseAnd, (UdpEndPoint a, UdpEndPoint b, MethodInfo * method)); DO_APP_FUNC(0x02889E40, int32_t, UdpEndPoint_Compare, (UdpEndPoint x, UdpEndPoint y, MethodInfo * method)); DO_APP_FUNC(0x0288A150, void, UdpEndPoint__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x0288A280, UdpEndPoint, UdpEndPoint_Native_get_AsManaged, (UdpEndPoint_Native__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0288A280, UdpEndPoint, UdpEndPoint_Native_get_AsManaged, (UdpEndPoint_Native * __this, MethodInfo * method)); DO_APP_FUNC(0x0288A2B0, bool, UdpEndPoint_Comparer_System_Collections_Generic_IEqualityComparer_UdpKit_UdpEndPoint__Equals, (UdpEndPoint_Comparer * __this, UdpEndPoint x, UdpEndPoint y, MethodInfo * method)); DO_APP_FUNC(0x0288A350, int32_t, UdpEndPoint_Comparer_System_Collections_Generic_IEqualityComparer_UdpKit_UdpEndPoint__GetHashCode, (UdpEndPoint_Comparer * __this, UdpEndPoint obj, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, UdpEndPoint_Comparer__ctor, (UdpEndPoint_Comparer * __this, MethodInfo * method)); DO_APP_FUNC(0x0288A3A0, void, UdpException__ctor, (UdpException * __this, MethodInfo * method)); DO_APP_FUNC(0x0288A3F0, void, UdpException__ctor_1, (UdpException * __this, String * fmt, Object__Array * args, MethodInfo * method)); DO_APP_FUNC(0x0288A4D0, void, UdpException__ctor_2, (UdpException * __this, String * msg, MethodInfo * method)); -DO_APP_FUNC(0x00959BA0, void, UdpIPv4Address__ctor, (UdpIPv4Address__Boxed * __this, uint32_t packed, MethodInfo * method)); -DO_APP_FUNC(0x0288A590, void, UdpIPv4Address__ctor_1, (UdpIPv4Address__Boxed * __this, int64_t addr, MethodInfo * method)); -DO_APP_FUNC(0x0288A670, void, UdpIPv4Address__ctor_2, (UdpIPv4Address__Boxed * __this, uint8_t a, uint8_t b, uint8_t c, uint8_t d, MethodInfo * method)); -DO_APP_FUNC(0x0288A690, bool, UdpIPv4Address_Equals, (UdpIPv4Address__Boxed * __this, UdpIPv4Address other, MethodInfo * method)); -DO_APP_FUNC(0x0288A710, int32_t, UdpIPv4Address_CompareTo, (UdpIPv4Address__Boxed * __this, UdpIPv4Address other, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, UdpIPv4Address_GetHashCode, (UdpIPv4Address__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0288A780, bool, UdpIPv4Address_Equals_1, (UdpIPv4Address__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0288A830, String *, UdpIPv4Address_ToString, (UdpIPv4Address__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0288AA70, bool, UdpIPv4Address_get_IsAny, (UdpIPv4Address__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0288AA90, bool, UdpIPv4Address_get_IsLocalHost, (UdpIPv4Address__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0288AAB0, bool, UdpIPv4Address_get_IsBroadcast, (UdpIPv4Address__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0288AAD0, bool, UdpIPv4Address_get_IsPrivate, (UdpIPv4Address__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0288AB00, bool, UdpIPv4Address_get_IsWan, (UdpIPv4Address__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00959BA0, void, UdpIPv4Address__ctor, (UdpIPv4Address * __this, uint32_t packed, MethodInfo * method)); +DO_APP_FUNC(0x0288A590, void, UdpIPv4Address__ctor_1, (UdpIPv4Address * __this, int64_t addr, MethodInfo * method)); +DO_APP_FUNC(0x0288A670, void, UdpIPv4Address__ctor_2, (UdpIPv4Address * __this, uint8_t a, uint8_t b, uint8_t c, uint8_t d, MethodInfo * method)); +DO_APP_FUNC(0x0288A690, bool, UdpIPv4Address_Equals, (UdpIPv4Address * __this, UdpIPv4Address other, MethodInfo * method)); +DO_APP_FUNC(0x0288A710, int32_t, UdpIPv4Address_CompareTo, (UdpIPv4Address * __this, UdpIPv4Address other, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, UdpIPv4Address_GetHashCode, (UdpIPv4Address * __this, MethodInfo * method)); +DO_APP_FUNC(0x0288A780, bool, UdpIPv4Address_Equals_1, (UdpIPv4Address * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x0288A830, String *, UdpIPv4Address_ToString, (UdpIPv4Address * __this, MethodInfo * method)); +DO_APP_FUNC(0x0288AA70, bool, UdpIPv4Address_get_IsAny, (UdpIPv4Address * __this, MethodInfo * method)); +DO_APP_FUNC(0x0288AA90, bool, UdpIPv4Address_get_IsLocalHost, (UdpIPv4Address * __this, MethodInfo * method)); +DO_APP_FUNC(0x0288AAB0, bool, UdpIPv4Address_get_IsBroadcast, (UdpIPv4Address * __this, MethodInfo * method)); +DO_APP_FUNC(0x0288AAD0, bool, UdpIPv4Address_get_IsPrivate, (UdpIPv4Address * __this, MethodInfo * method)); +DO_APP_FUNC(0x0288AB00, bool, UdpIPv4Address_get_IsWan, (UdpIPv4Address * __this, MethodInfo * method)); DO_APP_FUNC(0x0288AC00, bool, UdpIPv4Address_op_Equality, (UdpIPv4Address x, UdpIPv4Address y, MethodInfo * method)); DO_APP_FUNC(0x0288AC70, bool, UdpIPv4Address_op_Inequality, (UdpIPv4Address x, UdpIPv4Address y, MethodInfo * method)); DO_APP_FUNC(0x00959BC0, UdpIPv4Address, UdpIPv4Address_op_BitwiseAnd, (UdpIPv4Address a, UdpIPv4Address b, MethodInfo * method)); DO_APP_FUNC(0x0288ACE0, int32_t, UdpIPv4Address_CompareOrder, (UdpIPv4Address x, UdpIPv4Address y, MethodInfo * method)); DO_APP_FUNC(0x0288ACF0, UdpIPv4Address, UdpIPv4Address_Parse, (String * address, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB66D0, UdpIPv4Address_Parse__MethodInfo); DO_APP_FUNC(0x0288B060, void, UdpIPv4Address__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, UdpIPv4Address_Comparer__ctor, (UdpIPv4Address_Comparer * __this, MethodInfo * method)); DO_APP_FUNC(0x0288B0E0, int32_t, UdpIPv4Address_Comparer_System_Collections_Generic_IComparer_UdpKit_UdpIPv4Address__Compare, (UdpIPv4Address_Comparer * __this, UdpIPv4Address x, UdpIPv4Address y, MethodInfo * method)); DO_APP_FUNC(0x0288B150, bool, UdpIPv4Address_Comparer_System_Collections_Generic_IEqualityComparer_UdpKit_UdpIPv4Address__Equals, (UdpIPv4Address_Comparer * __this, UdpIPv4Address x, UdpIPv4Address y, MethodInfo * method)); DO_APP_FUNC(0x003DA110, int32_t, UdpIPv4Address_Comparer_System_Collections_Generic_IEqualityComparer_UdpKit_UdpIPv4Address__GetHashCode, (UdpIPv4Address_Comparer * __this, UdpIPv4Address obj, MethodInfo * method)); DO_APP_FUNC(0x0288B1C0, void, UdpIPv4Address_Comparer__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x0288B270, bool, UdpIPv6Address_get_IsAny, (UdpIPv6Address__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0288B290, bool, UdpIPv6Address_get_IsLocalHost, (UdpIPv6Address__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0041AF00, bool, UdpIPv6Address_get_IsBroadcast, (UdpIPv6Address__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0288B390, bool, UdpIPv6Address_get_IsWan, (UdpIPv6Address__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0288B450, bool, UdpIPv6Address_get_IsPrivate, (UdpIPv6Address__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0288B830, Byte__Array *, UdpIPv6Address_get_Bytes, (UdpIPv6Address__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0288B980, void, UdpIPv6Address__ctor, (UdpIPv6Address__Boxed * __this, Byte__Array * address, MethodInfo * method)); -DO_APP_FUNC(0x00BDCC10, void, UdpIPv6Address__ctor_1, (UdpIPv6Address__Boxed * __this, uint64_t packed0, uint64_t packed1, MethodInfo * method)); -DO_APP_FUNC(0x0288BAA0, bool, UdpIPv6Address_Equals, (UdpIPv6Address__Boxed * __this, UdpIPv6Address other, MethodInfo * method)); -DO_APP_FUNC(0x0288BB50, int32_t, UdpIPv6Address_CompareTo, (UdpIPv6Address__Boxed * __this, UdpIPv6Address other, MethodInfo * method)); -DO_APP_FUNC(0x0288BBF0, int32_t, UdpIPv6Address_GetHashCode, (UdpIPv6Address__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0288BC00, bool, UdpIPv6Address_Equals_1, (UdpIPv6Address__Boxed * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x0288B270, bool, UdpIPv6Address_get_IsAny, (UdpIPv6Address * __this, MethodInfo * method)); +DO_APP_FUNC(0x0288B290, bool, UdpIPv6Address_get_IsLocalHost, (UdpIPv6Address * __this, MethodInfo * method)); +DO_APP_FUNC(0x0041AF00, bool, UdpIPv6Address_get_IsBroadcast, (UdpIPv6Address * __this, MethodInfo * method)); +DO_APP_FUNC(0x0288B390, bool, UdpIPv6Address_get_IsWan, (UdpIPv6Address * __this, MethodInfo * method)); +DO_APP_FUNC(0x0288B450, bool, UdpIPv6Address_get_IsPrivate, (UdpIPv6Address * __this, MethodInfo * method)); +DO_APP_FUNC(0x0288B830, Byte__Array *, UdpIPv6Address_get_Bytes, (UdpIPv6Address * __this, MethodInfo * method)); +DO_APP_FUNC(0x0288B980, void, UdpIPv6Address__ctor, (UdpIPv6Address * __this, Byte__Array * address, MethodInfo * method)); +DO_APP_FUNC(0x00BDCC10, void, UdpIPv6Address__ctor_1, (UdpIPv6Address * __this, uint64_t packed0, uint64_t packed1, MethodInfo * method)); +DO_APP_FUNC(0x0288BAA0, bool, UdpIPv6Address_Equals, (UdpIPv6Address * __this, UdpIPv6Address other, MethodInfo * method)); +DO_APP_FUNC(0x0288BB50, int32_t, UdpIPv6Address_CompareTo, (UdpIPv6Address * __this, UdpIPv6Address other, MethodInfo * method)); +DO_APP_FUNC(0x0288BBF0, int32_t, UdpIPv6Address_GetHashCode, (UdpIPv6Address * __this, MethodInfo * method)); +DO_APP_FUNC(0x0288BC00, bool, UdpIPv6Address_Equals_1, (UdpIPv6Address * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x0288BD10, bool, UdpIPv6Address_op_Equality, (UdpIPv6Address x, UdpIPv6Address y, MethodInfo * method)); DO_APP_FUNC(0x0288BDB0, bool, UdpIPv6Address_op_Inequality, (UdpIPv6Address x, UdpIPv6Address y, MethodInfo * method)); DO_APP_FUNC(0x0288BE50, UdpIPv6Address, UdpIPv6Address_Parse, (String * address, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6690, UdpIPv6Address_Parse__MethodInfo); DO_APP_FUNC(0x0288BFE0, UdpIPv6Address, UdpIPv6Address_op_BitwiseAnd, (UdpIPv6Address a, UdpIPv6Address b, MethodInfo * method)); -DO_APP_FUNC(0x0288C000, String *, UdpIPv6Address_ToString, (UdpIPv6Address__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0288C000, String *, UdpIPv6Address_ToString, (UdpIPv6Address * __this, MethodInfo * method)); DO_APP_FUNC(0x0288C120, int32_t, UdpIPv6Address_CompareOrder, (UdpIPv6Address x, UdpIPv6Address y, MethodInfo * method)); DO_APP_FUNC(0x0288C150, void, UdpIPv6Address__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, UdpIPv6Address_Comparer__ctor, (UdpIPv6Address_Comparer * __this, MethodInfo * method)); @@ -115550,15 +128092,18 @@ DO_APP_FUNC(0x0288D7B0, void, UdpSessionFilter_set_Item, (UdpSessionFilter * __t DO_APP_FUNC(0x0288D920, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Object_, UdpSessionFilter_GetEnumerator, (UdpSessionFilter * __this, MethodInfo * method)); DO_APP_FUNC(0x0288DA10, String *, UdpSessionFilter_ToString, (UdpSessionFilter * __this, MethodInfo * method)); DO_APP_FUNC(0x0288DA60, bool, UdpSessionFilter_IsValid, (Object * value, MethodInfo * method)); -DO_APP_FUNC(0x00A9A2A0, void, UdpSteamID__ctor, (UdpSteamID__Boxed * __this, uint64_t id, MethodInfo * method)); +DO_APP_FUNC(0x00A9A2A0, void, UdpSteamID__ctor, (UdpSteamID * __this, uint64_t id, MethodInfo * method)); DO_APP_FUNC(0x0288DD20, IPAddress *, IPAddressExtensions_GetBroadcastAddress, (IPAddress * address, IPAddress * subnetMask, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6610, IPAddressExtensions_GetBroadcastAddress__MethodInfo); DO_APP_FUNC(0x0288DF00, IPAddress *, IPAddressExtensions_GetNetworkAddress, (IPAddress * address, IPAddress * subnetMask, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6620, IPAddressExtensions_GetNetworkAddress__MethodInfo); DO_APP_FUNC(0x0288E0D0, bool, IPAddressExtensions_IsInSameSubnet, (IPAddress * address2, IPAddress * address, IPAddress * subnetMask, MethodInfo * method)); DO_APP_FUNC(0x0288E140, bool, IPAddressExtensions_IsInSameSubnet_1, (IPAddress * address2, IPAddress * address, MethodInfo * method)); DO_APP_FUNC(0x0288E290, bool, IPAddressExtensions_IsPrivate, (IPAddress * address, MethodInfo * method)); DO_APP_FUNC(0x0288E300, int64_t, IPAddressExtensions_ToLong, (IPAddress * address, MethodInfo * method)); DO_APP_FUNC(0x0288E360, IPAddress *, IPAddressExtensions_FromLongAddr, (int64_t addr, MethodInfo * method)); DO_APP_FUNC(0x0288E3D0, IPAddress *, SubnetMask_CreateByHostBitLength, (int32_t hostpartLength, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6600, SubnetMask_CreateByHostBitLength__MethodInfo); DO_APP_FUNC(0x0288E650, IPAddress *, SubnetMask_CreateByNetBitLength, (int32_t netpartLength, MethodInfo * method)); DO_APP_FUNC(0x0288E6B0, IPAddress *, SubnetMask_CreateByHostNumber, (int32_t numberOfHosts, MethodInfo * method)); DO_APP_FUNC(0x0288E750, void, SubnetMask__cctor, (MethodInfo * method)); @@ -115578,9 +128123,10 @@ DO_APP_FUNC(0x0288FCB0, void, Context_1__ctor, (Context_1 * __this, Guid game, M DO_APP_FUNC(0x025233B0, void, Context_1__ctor_1, (Context_1 * __this, Guid game, Guid peer, MethodInfo * method)); DO_APP_FUNC(0x0288FD20, void, Context_1__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02890050, Message *, Context_1_CreateMessage, (Context_1 * __this, uint8_t type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6560, Context_1_CreateMessage__MethodInfo); DO_APP_FUNC(0x028902A0, int32_t, Context_1_WriteMessage, (Context_1 * __this, Message * msg, Byte__Array * buffer, MethodInfo * method)); DO_APP_FUNC(0x02890450, Message *, Context_1_ParseMessage, (Context_1 * __this, Byte__Array * bytes, MethodInfo * method)); -DO_APP_FUNC(0x02890470, Message *, Context_1_ParseMessage_1, (Context_1 * __this, Byte__Array * bytes, int32_t offset, MethodInfo * method)); +DO_APP_FUNC(0x02890470, Message *, Context_1_ParseMessage_1, (Context_1 * __this, Byte__Array * bytes, int32_t * offset, MethodInfo * method)); DO_APP_FUNC(0x028906A0, bool, Message_get_Read, (Message * __this, MethodInfo * method)); DO_APP_FUNC(0x005F7530, bool, Message_get_Pack, (Message * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD39D0, void, Message__ctor, (Message * __this, MethodInfo * method)); @@ -115589,16 +128135,16 @@ DO_APP_FUNC(0x028906B0, void, Message_InitBuffer, (Message * __this, int32_t ptr DO_APP_FUNC(0x02890710, int32_t, Message_Serialize, (Message * __this, int32_t ptr, Byte__Array * buffer, bool pack, MethodInfo * method)); DO_APP_FUNC(0x02890770, int32_t, Message_Serialize_1, (Message * __this, MethodInfo * method)); DO_APP_FUNC(0x02343380, String *, Message_ToString, (Message * __this, MethodInfo * method)); -DO_APP_FUNC(0x028908A0, void, Message_Serialize_2, (Message * __this, UdpSession * session, MethodInfo * method)); -DO_APP_FUNC(0x02890BC0, void, Message_Serialize_3, (Message * __this, NatFeatures * features, MethodInfo * method)); -DO_APP_FUNC(0x02890CB0, void, Message_Serialize_4, (Message * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02890D40, void, Message_Serialize_5, (Message * __this, uint8_t value, MethodInfo * method)); -DO_APP_FUNC(0x02890DD0, void, Message_Serialize_6, (Message * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x02890F10, void, Message_Serialize_7, (Message * __this, uint32_t value, MethodInfo * method)); -DO_APP_FUNC(0x02890F90, void, Message_Serialize_8, (Message * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x02891230, void, Message_Serialize_9, (Message * __this, Byte__Array * value, MethodInfo * method)); -DO_APP_FUNC(0x028913C0, void, Message_Serialize_10, (Message * __this, Guid value, MethodInfo * method)); -DO_APP_FUNC(0x02891440, void, Message_Serialize_11, (Message * __this, UdpEndPoint value, MethodInfo * method)); +DO_APP_FUNC(0x028908A0, void, Message_Serialize_2, (Message * __this, UdpSession * * session, MethodInfo * method)); +DO_APP_FUNC(0x02890BC0, void, Message_Serialize_3, (Message * __this, NatFeatures * * features, MethodInfo * method)); +DO_APP_FUNC(0x02890CB0, void, Message_Serialize_4, (Message * __this, bool * value, MethodInfo * method)); +DO_APP_FUNC(0x02890D40, void, Message_Serialize_5, (Message * __this, uint8_t * value, MethodInfo * method)); +DO_APP_FUNC(0x02890DD0, void, Message_Serialize_6, (Message * __this, int32_t * value, MethodInfo * method)); +DO_APP_FUNC(0x02890F10, void, Message_Serialize_7, (Message * __this, uint32_t * value, MethodInfo * method)); +DO_APP_FUNC(0x02890F90, void, Message_Serialize_8, (Message * __this, String * * value, MethodInfo * method)); +DO_APP_FUNC(0x02891230, void, Message_Serialize_9, (Message * __this, Byte__Array * * value, MethodInfo * method)); +DO_APP_FUNC(0x028913C0, void, Message_Serialize_10, (Message * __this, Guid * value, MethodInfo * method)); +DO_APP_FUNC(0x02891440, void, Message_Serialize_11, (Message * __this, UdpEndPoint * value, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Message_OnSerialize, (Message * __this, MethodInfo * method)); DO_APP_FUNC(0x02891660, bool, Message_HasSpace, (Message * __this, int32_t bytes, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BroadcastSearch_OnSerialize, (BroadcastSearch * __this, MethodInfo * method)); @@ -115664,6 +128210,7 @@ DO_APP_FUNC(0x02FABE90, void, MeasureFunction__ctor, (MeasureFunction * __this, DO_APP_FUNC(0x02FAC050, YogaSize, MeasureFunction_Invoke, (MeasureFunction * __this, YogaNode * node, float width, YogaMeasureMode__Enum widthMode, float height, YogaMeasureMode__Enum heightMode, MethodInfo * method)); DO_APP_FUNC(0x02FAC070, YogaSize, MeasureOutput_Make, (float width, float height, MethodInfo * method)); DO_APP_FUNC(0x02FAC080, void, YogaConfig__ctor, (YogaConfig * __this, void * ygConfig, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC9F8, YogaConfig__ctor__MethodInfo); DO_APP_FUNC(0x02FAC130, void, YogaConfig__ctor_1, (YogaConfig * __this, MethodInfo * method)); DO_APP_FUNC(0x02FAC190, void, YogaConfig_Finalize, (YogaConfig * __this, MethodInfo * method)); DO_APP_FUNC(0x015C0B20, void *, YogaConfig_get_Handle, (YogaConfig * __this, MethodInfo * method)); @@ -115744,6 +128291,7 @@ DO_APP_FUNC(0x02FADEB0, float, Native_YGNodeLayoutGetMargin, (void * node, YogaE DO_APP_FUNC(0x02FADF10, float, Native_YGNodeLayoutGetPadding, (void * node, YogaEdge__Enum edge, MethodInfo * method)); DO_APP_FUNC(0x02FADF70, float, Native_YGNodeLayoutGetBorder, (void * node, YogaEdge__Enum edge, MethodInfo * method)); DO_APP_FUNC(0x02FADFD0, void, YogaNode__ctor, (YogaNode * __this, YogaConfig * config, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC798, YogaNode__ctor__MethodInfo); DO_APP_FUNC(0x02FAE160, void, YogaNode_Finalize, (YogaNode * __this, MethodInfo * method)); DO_APP_FUNC(0x02FAE220, void, YogaNode_set_Config, (YogaNode * __this, YogaConfig * value, MethodInfo * method)); DO_APP_FUNC(0x02FAE340, bool, YogaNode_get_IsDirty, (YogaNode * __this, MethodInfo * method)); @@ -115785,7 +128333,9 @@ DO_APP_FUNC(0x02FAF5B0, void, YogaNode_Clear, (YogaNode * __this, MethodInfo * m DO_APP_FUNC(0x02FAF620, void, YogaNode_SetMeasureFunction, (YogaNode * __this, MeasureFunction * measureFunction, MethodInfo * method)); DO_APP_FUNC(0x02FAF780, void, YogaNode_CalculateLayout, (YogaNode * __this, float width, float height, MethodInfo * method)); DO_APP_FUNC(0x02FAF840, YogaSize, YogaNode_MeasureInternal, (YogaNode * node, float width, YogaMeasureMode__Enum widthMode, float height, YogaMeasureMode__Enum heightMode, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC7F0, YogaNode_MeasureInternal__MethodInfo); DO_APP_FUNC(0x02FAF8E0, float, YogaNode_BaselineInternal, (YogaNode * node, float width, float height, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC6D8, YogaNode_BaselineInternal__MethodInfo); DO_APP_FUNC(0x02FAF970, IEnumerator_1_UnityEngine_Yoga_YogaNode_ *, YogaNode_GetEnumerator, (YogaNode * __this, MethodInfo * method)); DO_APP_FUNC(0x02FAF9E0, IEnumerator *, YogaNode_System_Collections_IEnumerable_GetEnumerator, (YogaNode * __this, MethodInfo * method)); DO_APP_FUNC(0x02FAFA50, void, YogaNode_set_Left, (YogaNode * __this, YogaValue value, MethodInfo * method)); @@ -115819,12 +128369,12 @@ DO_APP_FUNC(0x02FB0240, float, YogaNode_get_LayoutBorderLeft, (YogaNode * __this DO_APP_FUNC(0x02FB02A0, float, YogaNode_get_LayoutBorderTop, (YogaNode * __this, MethodInfo * method)); DO_APP_FUNC(0x02FB0300, float, YogaNode_get_LayoutBorderRight, (YogaNode * __this, MethodInfo * method)); DO_APP_FUNC(0x02FB0360, float, YogaNode_get_LayoutBorderBottom, (YogaNode * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C4B40, YogaUnit__Enum, YogaValue_get_Unit, (YogaValue__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CE2130, float, YogaValue_get_Value, (YogaValue__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C4B40, YogaUnit__Enum, YogaValue_get_Unit, (YogaValue * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CE2130, float, YogaValue_get_Value, (YogaValue * __this, MethodInfo * method)); DO_APP_FUNC(0x02FB03C0, YogaValue, YogaValue_Point, (float value, MethodInfo * method)); -DO_APP_FUNC(0x02FB03F0, bool, YogaValue_Equals, (YogaValue__Boxed * __this, YogaValue other, MethodInfo * method)); -DO_APP_FUNC(0x02FB0460, bool, YogaValue_Equals_1, (YogaValue__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02FB04F0, int32_t, YogaValue_GetHashCode, (YogaValue__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02FB03F0, bool, YogaValue_Equals, (YogaValue * __this, YogaValue other, MethodInfo * method)); +DO_APP_FUNC(0x02FB0460, bool, YogaValue_Equals_1, (YogaValue * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02FB04F0, int32_t, YogaValue_GetHashCode, (YogaValue * __this, MethodInfo * method)); DO_APP_FUNC(0x02FB0570, YogaValue, YogaValue_Auto, (MethodInfo * method)); DO_APP_FUNC(0x02FB0590, YogaValue, YogaValue_Percent, (float value, MethodInfo * method)); DO_APP_FUNC(0x02FB03C0, YogaValue, YogaValue_op_Implicit, (float pointValue, MethodInfo * method)); @@ -115837,13 +128387,13 @@ DO_APP_FUNC(0x02F81760, float, TextNative_ComputeTextScaling, (Matrix4x4 worldMa DO_APP_FUNC(0x02FB1090, float, TextNative_DoComputeTextWidth, (TextNativeSettings settings, MethodInfo * method)); DO_APP_FUNC(0x02FB10E0, float, TextNative_DoComputeTextHeight, (TextNativeSettings settings, MethodInfo * method)); DO_APP_FUNC(0x02FB1130, Vector2, TextNative_DoGetCursorPosition, (TextNativeSettings settings, Rect rect, int32_t cursorPosition, MethodInfo * method)); -DO_APP_FUNC(0x02FB11B0, void, TextNative_GetVertices_1, (TextNativeSettings settings, void * buffer, int32_t vertexSize, int32_t vertexCount, MethodInfo * method)); +DO_APP_FUNC(0x02FB11B0, void, TextNative_GetVertices_1, (TextNativeSettings settings, void * buffer, int32_t vertexSize, int32_t * vertexCount, MethodInfo * method)); DO_APP_FUNC(0x02FB1230, Vector2, TextNative_DoGetOffset, (TextNativeSettings settings, Rect rect, MethodInfo * method)); -DO_APP_FUNC(0x02FB12A0, float, TextNative_DoComputeTextWidth_Injected, (TextNativeSettings settings, MethodInfo * method)); -DO_APP_FUNC(0x02FB12F0, float, TextNative_DoComputeTextHeight_Injected, (TextNativeSettings settings, MethodInfo * method)); -DO_APP_FUNC(0x02FB1340, void, TextNative_DoGetCursorPosition_Injected, (TextNativeSettings settings, Rect rect, int32_t cursorPosition, Vector2 ret, MethodInfo * method)); -DO_APP_FUNC(0x02FB13C0, void, TextNative_GetVertices_Injected, (TextNativeSettings settings, void * buffer, int32_t vertexSize, int32_t vertexCount, MethodInfo * method)); -DO_APP_FUNC(0x02FB1440, void, TextNative_DoGetOffset_Injected, (TextNativeSettings settings, Rect rect, Vector2 ret, MethodInfo * method)); +DO_APP_FUNC(0x02FB12A0, float, TextNative_DoComputeTextWidth_Injected, (TextNativeSettings * settings, MethodInfo * method)); +DO_APP_FUNC(0x02FB12F0, float, TextNative_DoComputeTextHeight_Injected, (TextNativeSettings * settings, MethodInfo * method)); +DO_APP_FUNC(0x02FB1340, void, TextNative_DoGetCursorPosition_Injected, (TextNativeSettings * settings, Rect * rect, int32_t cursorPosition, Vector2 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02FB13C0, void, TextNative_GetVertices_Injected, (TextNativeSettings * settings, void * buffer, int32_t vertexSize, int32_t * vertexCount, MethodInfo * method)); +DO_APP_FUNC(0x02FB1440, void, TextNative_DoGetOffset_Injected, (TextNativeSettings * settings, Rect * rect, Vector2 * ret, MethodInfo * method)); DO_APP_FUNC(0x02FB14B0, void, UIElementsRuntimeUtilityNative_RepaintOverlayPanels, (MethodInfo * method)); DO_APP_FUNC(0x02FB1500, void, UIElementsRuntimeUtilityNative_UpdateRuntimePanels, (MethodInfo * method)); DO_APP_FUNC(0x02FB1560, void, UIElementsRuntimeUtilityNative_RepaintOffscreenPanels, (MethodInfo * method)); @@ -115890,11 +128440,11 @@ DO_APP_FUNC(0x02FB3050, void, Utility_1_ProfileDrawChainEnd, (MethodInfo * metho DO_APP_FUNC(0x02FB30A0, void, Utility_1_NotifyOfUIREvents, (bool subscribe, MethodInfo * method)); DO_APP_FUNC(0x02FB30F0, Matrix4x4, Utility_1_GetUnityProjectionMatrix, (MethodInfo * method)); DO_APP_FUNC(0x02FB3190, void, Utility_1__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02FB3240, void, Utility_1_RegisterIntermediateRenderer_Injected, (Camera * camera, Material * material, Matrix4x4 transform, Bounds aabb, int32_t renderLayer, int32_t shadowCasting, bool receiveShadows, int32_t sameDistanceSortPriority, uint64_t sceneCullingMask, int32_t rendererCallbackFlags, void * userData, int32_t userDataSize, MethodInfo * method)); -DO_APP_FUNC(0x02FB32E0, void, Utility_1_SetScissorRect_Injected, (RectInt scissorRect, MethodInfo * method)); -DO_APP_FUNC(0x02FB3330, void *, Utility_1_CreateStencilState_Injected, (StencilState stencilState, MethodInfo * method)); -DO_APP_FUNC(0x02FB3380, void, Utility_1_GetActiveViewport_Injected, (RectInt ret, MethodInfo * method)); -DO_APP_FUNC(0x02FB33D0, void, Utility_1_GetUnityProjectionMatrix_Injected, (Matrix4x4 ret, MethodInfo * method)); +DO_APP_FUNC(0x02FB3240, void, Utility_1_RegisterIntermediateRenderer_Injected, (Camera * camera, Material * material, Matrix4x4 * transform, Bounds * aabb, int32_t renderLayer, int32_t shadowCasting, bool receiveShadows, int32_t sameDistanceSortPriority, uint64_t sceneCullingMask, int32_t rendererCallbackFlags, void * userData, int32_t userDataSize, MethodInfo * method)); +DO_APP_FUNC(0x02FB32E0, void, Utility_1_SetScissorRect_Injected, (RectInt * scissorRect, MethodInfo * method)); +DO_APP_FUNC(0x02FB3330, void *, Utility_1_CreateStencilState_Injected, (StencilState * stencilState, MethodInfo * method)); +DO_APP_FUNC(0x02FB3380, void, Utility_1_GetActiveViewport_Injected, (RectInt * ret, MethodInfo * method)); +DO_APP_FUNC(0x02FB33D0, void, Utility_1_GetUnityProjectionMatrix_Injected, (Matrix4x4 * ret, MethodInfo * method)); DO_APP_FUNC(0x02373020, String *, SR_3_Format, (String * resourceFormat, Object * p1, MethodInfo * method)); DO_APP_FUNC(0x02373110, String *, SR_3_Format_1, (String * resourceFormat, Object * p1, Object * p2, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, BaseUriAnnotation__ctor, (BaseUriAnnotation * __this, String * baseUri, MethodInfo * method)); @@ -116017,20 +128567,20 @@ DO_APP_FUNC_METHODINFO(0x03CA5AD0, XElement_ReadElementFromImpl__MethodInfo); DO_APP_FUNC(0x0237B280, void, XElement_SetEndElementLineInfo, (XElement * __this, int32_t lineNumber, int32_t linePosition, MethodInfo * method)); DO_APP_FUNC(0x0237B300, void, XElement_ValidateNode, (XElement * __this, XNode * node, XNode * previous, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA5A68, XElement_ValidateNode__MethodInfo); -DO_APP_FUNC(0x0237B4C0, XNamespace *, NamespaceCache_Get, (NamespaceCache__Boxed * __this, String * namespaceName, MethodInfo * method)); -DO_APP_FUNC(0x0237B610, void, ElementWriter__ctor, (ElementWriter__Boxed * __this, XmlWriter * writer, MethodInfo * method)); -DO_APP_FUNC(0x0237B670, void, ElementWriter_WriteElement, (ElementWriter__Boxed * __this, XElement * e, MethodInfo * method)); -DO_APP_FUNC(0x0237B880, String *, ElementWriter_GetPrefixOfNamespace, (ElementWriter__Boxed * __this, XNamespace * ns, bool allowDefaultNamespace, MethodInfo * method)); -DO_APP_FUNC(0x0237B990, void, ElementWriter_PushAncestors, (ElementWriter__Boxed * __this, XElement * e, MethodInfo * method)); -DO_APP_FUNC(0x0237BB60, void, ElementWriter_PushElement, (ElementWriter__Boxed * __this, XElement * e, MethodInfo * method)); -DO_APP_FUNC(0x0237BCC0, void, ElementWriter_WriteEndElement, (ElementWriter__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0237BD00, void, ElementWriter_WriteFullEndElement, (ElementWriter__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0237BD40, void, ElementWriter_WriteStartElement, (ElementWriter__Boxed * __this, XElement * e, MethodInfo * method)); -DO_APP_FUNC(0x0237BF50, void, NamespaceResolver_PushScope, (NamespaceResolver__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0237BF60, void, NamespaceResolver_PopScope, (NamespaceResolver__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0237C0D0, void, NamespaceResolver_Add, (NamespaceResolver__Boxed * __this, String * prefix, XNamespace * ns, MethodInfo * method)); -DO_APP_FUNC(0x0237C350, void, NamespaceResolver_AddFirst, (NamespaceResolver__Boxed * __this, String * prefix, XNamespace * ns, MethodInfo * method)); -DO_APP_FUNC(0x0237C620, String *, NamespaceResolver_GetPrefixOfNamespace, (NamespaceResolver__Boxed * __this, XNamespace * ns, bool allowDefaultNamespace, MethodInfo * method)); +DO_APP_FUNC(0x0237B4C0, XNamespace *, NamespaceCache_Get, (NamespaceCache * __this, String * namespaceName, MethodInfo * method)); +DO_APP_FUNC(0x0237B610, void, ElementWriter__ctor, (ElementWriter * __this, XmlWriter * writer, MethodInfo * method)); +DO_APP_FUNC(0x0237B670, void, ElementWriter_WriteElement, (ElementWriter * __this, XElement * e, MethodInfo * method)); +DO_APP_FUNC(0x0237B880, String *, ElementWriter_GetPrefixOfNamespace, (ElementWriter * __this, XNamespace * ns, bool allowDefaultNamespace, MethodInfo * method)); +DO_APP_FUNC(0x0237B990, void, ElementWriter_PushAncestors, (ElementWriter * __this, XElement * e, MethodInfo * method)); +DO_APP_FUNC(0x0237BB60, void, ElementWriter_PushElement, (ElementWriter * __this, XElement * e, MethodInfo * method)); +DO_APP_FUNC(0x0237BCC0, void, ElementWriter_WriteEndElement, (ElementWriter * __this, MethodInfo * method)); +DO_APP_FUNC(0x0237BD00, void, ElementWriter_WriteFullEndElement, (ElementWriter * __this, MethodInfo * method)); +DO_APP_FUNC(0x0237BD40, void, ElementWriter_WriteStartElement, (ElementWriter * __this, XElement * e, MethodInfo * method)); +DO_APP_FUNC(0x0237BF50, void, NamespaceResolver_PushScope, (NamespaceResolver * __this, MethodInfo * method)); +DO_APP_FUNC(0x0237BF60, void, NamespaceResolver_PopScope, (NamespaceResolver * __this, MethodInfo * method)); +DO_APP_FUNC(0x0237C0D0, void, NamespaceResolver_Add, (NamespaceResolver * __this, String * prefix, XNamespace * ns, MethodInfo * method)); +DO_APP_FUNC(0x0237C350, void, NamespaceResolver_AddFirst, (NamespaceResolver * __this, String * prefix, XNamespace * ns, MethodInfo * method)); +DO_APP_FUNC(0x0237C620, String *, NamespaceResolver_GetPrefixOfNamespace, (NamespaceResolver * __this, XNamespace * ns, bool allowDefaultNamespace, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NamespaceResolver_NamespaceDeclaration__ctor, (NamespaceResolver_NamespaceDeclaration * __this, MethodInfo * method)); DO_APP_FUNC(0x0237C7B0, void, XName__ctor, (XName * __this, XNamespace * ns, String * localName, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, String *, XName_get_LocalName, (XName * __this, MethodInfo * method)); @@ -116068,7 +128618,7 @@ DO_APP_FUNC(0x011C4410, String *, XNamespace_ExtractLocalName, (XName * n, Metho DO_APP_FUNC_METHODINFO(0x03CA5A08, XNamespace_ExtractLocalName__MethodInfo); DO_APP_FUNC(0x0237D720, String *, XNamespace_ExtractNamespace, (WeakReference * r, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA5A28, XNamespace_ExtractNamespace__MethodInfo); -DO_APP_FUNC(0x0237D7A0, XNamespace *, XNamespace_EnsureNamespace, (WeakReference * refNmsp, String * namespaceName, MethodInfo * method)); +DO_APP_FUNC(0x0237D7A0, XNamespace *, XNamespace_EnsureNamespace, (WeakReference * * refNmsp, String * namespaceName, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, XNode__ctor, (XNode * __this, MethodInfo * method)); DO_APP_FUNC(0x0237D900, String *, XNode_ToString, (XNode * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, XNode_AppendText, (XNode * __this, StringBuilder * sb, MethodInfo * method)); @@ -116112,54 +128662,55 @@ DO_APP_FUNC(0x0237F450, String *, StringBuilderCache_1_GetStringAndRelease, (Str DO_APP_FUNC(0x0237F5A0, void, ThrowStub_2_ThrowNotSupportedException, (MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA5990, ThrowStub_2_ThrowNotSupportedException__MethodInfo); DO_APP_FUNC(0x02C74AE0, XRAnchor, XRAnchor_get_defaultValue, (MethodInfo * method)); -DO_APP_FUNC(0x02C74B70, void, XRAnchor__ctor, (XRAnchor__Boxed * __this, TrackableId trackableId, Pose pose, TrackingState__Enum trackingState, void * nativePtr, MethodInfo * method)); -DO_APP_FUNC(0x00C2FFD0, TrackableId, XRAnchor_get_trackableId, (XRAnchor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01446510, Pose, XRAnchor_get_pose, (XRAnchor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0098C870, TrackingState__Enum, XRAnchor_get_trackingState, (XRAnchor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB330, void *, XRAnchor_get_nativePtr, (XRAnchor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0127BA60, Guid, XRAnchor_get_sessionId, (XRAnchor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02C74C10, int32_t, XRAnchor_GetHashCode, (XRAnchor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02C74CF0, bool, XRAnchor_Equals, (XRAnchor__Boxed * __this, XRAnchor other, MethodInfo * method)); -DO_APP_FUNC(0x02C74E70, bool, XRAnchor_Equals_1, (XRAnchor__Boxed * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02C74B70, void, XRAnchor__ctor, (XRAnchor * __this, TrackableId trackableId, Pose pose, TrackingState__Enum trackingState, void * nativePtr, MethodInfo * method)); +DO_APP_FUNC(0x00C2FFD0, TrackableId, XRAnchor_get_trackableId, (XRAnchor * __this, MethodInfo * method)); +DO_APP_FUNC(0x01446510, Pose, XRAnchor_get_pose, (XRAnchor * __this, MethodInfo * method)); +DO_APP_FUNC(0x0098C870, TrackingState__Enum, XRAnchor_get_trackingState, (XRAnchor * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB330, void *, XRAnchor_get_nativePtr, (XRAnchor * __this, MethodInfo * method)); +DO_APP_FUNC(0x0127BA60, Guid, XRAnchor_get_sessionId, (XRAnchor * __this, MethodInfo * method)); +DO_APP_FUNC(0x02C74C10, int32_t, XRAnchor_GetHashCode, (XRAnchor * __this, MethodInfo * method)); +DO_APP_FUNC(0x02C74CF0, bool, XRAnchor_Equals, (XRAnchor * __this, XRAnchor other, MethodInfo * method)); +DO_APP_FUNC(0x02C74E70, bool, XRAnchor_Equals_1, (XRAnchor * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x02C74F50, void, XRAnchor__cctor, (MethodInfo * method)); DO_APP_FUNC(0x018D2B90, void, XRAnchorSubsystem__ctor, (XRAnchorSubsystem * __this, MethodInfo * method)); DO_APP_FUNC(0x02C75100, TrackableChanges_1_XRAnchor_, XRAnchorSubsystem_GetChanges, (XRAnchorSubsystem * __this, Allocator__Enum allocator, MethodInfo * method)); -DO_APP_FUNC(0x02C752B0, bool, XRAnchorSubsystem_TryAddAnchor, (XRAnchorSubsystem * __this, Pose pose, XRAnchor anchor, MethodInfo * method)); -DO_APP_FUNC(0x02C75340, bool, XRAnchorSubsystem_TryAttachAnchor, (XRAnchorSubsystem * __this, TrackableId trackableToAffix, Pose pose, XRAnchor anchor, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD4B8, XRAnchorSubsystem_GetChanges__MethodInfo); +DO_APP_FUNC(0x02C752B0, bool, XRAnchorSubsystem_TryAddAnchor, (XRAnchorSubsystem * __this, Pose pose, XRAnchor * anchor, MethodInfo * method)); +DO_APP_FUNC(0x02C75340, bool, XRAnchorSubsystem_TryAttachAnchor, (XRAnchorSubsystem * __this, TrackableId trackableToAffix, Pose pose, XRAnchor * anchor, MethodInfo * method)); DO_APP_FUNC(0x02C75400, bool, XRAnchorSubsystem_TryRemoveAnchor, (XRAnchorSubsystem * __this, TrackableId anchorId, MethodInfo * method)); -DO_APP_FUNC(0x02C75470, bool, XRAnchorSubsystem_Provider_TryAddAnchor, (XRAnchorSubsystem_Provider * __this, Pose pose, XRAnchor anchor, MethodInfo * method)); -DO_APP_FUNC(0x02C75490, bool, XRAnchorSubsystem_Provider_TryAttachAnchor, (XRAnchorSubsystem_Provider * __this, TrackableId trackableToAffix, Pose pose, XRAnchor anchor, MethodInfo * method)); +DO_APP_FUNC(0x02C75470, bool, XRAnchorSubsystem_Provider_TryAddAnchor, (XRAnchorSubsystem_Provider * __this, Pose pose, XRAnchor * anchor, MethodInfo * method)); +DO_APP_FUNC(0x02C75490, bool, XRAnchorSubsystem_Provider_TryAttachAnchor, (XRAnchorSubsystem_Provider * __this, TrackableId trackableToAffix, Pose pose, XRAnchor * anchor, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, XRAnchorSubsystem_Provider_TryRemoveAnchor, (XRAnchorSubsystem_Provider * __this, TrackableId anchorId, MethodInfo * method)); DO_APP_FUNC(0x02C754B0, void, XRAnchorSubsystem_Provider__ctor, (XRAnchorSubsystem_Provider * __this, MethodInfo * method)); DO_APP_FUNC(0x00424C20, void, XRAnchorSubsystemDescriptor_set_supportsTrackableAttachments, (XRAnchorSubsystemDescriptor * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x02C754E0, void, XRAnchorSubsystemDescriptor_Create, (XRAnchorSubsystemDescriptor_Cinfo cinfo, MethodInfo * method)); DO_APP_FUNC(0x02C75730, void, XRAnchorSubsystemDescriptor__ctor, (XRAnchorSubsystemDescriptor * __this, XRAnchorSubsystemDescriptor_Cinfo cinfo, MethodInfo * method)); -DO_APP_FUNC(0x00471910, String *, XRAnchorSubsystemDescriptor_Cinfo_get_id, (XRAnchorSubsystemDescriptor_Cinfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, XRAnchorSubsystemDescriptor_Cinfo_set_id, (XRAnchorSubsystemDescriptor_Cinfo__Boxed * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, Type *, XRAnchorSubsystemDescriptor_Cinfo_get_providerType, (XRAnchorSubsystemDescriptor_Cinfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x005F25C0, void, XRAnchorSubsystemDescriptor_Cinfo_set_providerType, (XRAnchorSubsystemDescriptor_Cinfo__Boxed * __this, Type * value, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Type *, XRAnchorSubsystemDescriptor_Cinfo_get_subsystemTypeOverride, (XRAnchorSubsystemDescriptor_Cinfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCBE0, void, XRAnchorSubsystemDescriptor_Cinfo_set_subsystemTypeOverride, (XRAnchorSubsystemDescriptor_Cinfo__Boxed * __this, Type * value, MethodInfo * method)); -DO_APP_FUNC(0x005F7520, bool, XRAnchorSubsystemDescriptor_Cinfo_get_supportsTrackableAttachments, (XRAnchorSubsystemDescriptor_Cinfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00715340, void, XRAnchorSubsystemDescriptor_Cinfo_set_supportsTrackableAttachments, (XRAnchorSubsystemDescriptor_Cinfo__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02C75870, int32_t, XRAnchorSubsystemDescriptor_Cinfo_GetHashCode, (XRAnchorSubsystemDescriptor_Cinfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02C75950, bool, XRAnchorSubsystemDescriptor_Cinfo_Equals, (XRAnchorSubsystemDescriptor_Cinfo__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02C75A70, bool, XRAnchorSubsystemDescriptor_Cinfo_Equals_1, (XRAnchorSubsystemDescriptor_Cinfo__Boxed * __this, XRAnchorSubsystemDescriptor_Cinfo other, MethodInfo * method)); -DO_APP_FUNC(0x0171AEA0, ConfigurationDescriptor, Configuration_1_get_descriptor, (Configuration_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3D0, Feature__Enum, Configuration_1_get_features, (Configuration_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02C75AF0, int32_t, Configuration_1_GetHashCode, (Configuration_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02C75B50, bool, Configuration_1_Equals, (Configuration_1__Boxed * __this, Configuration_1 other, MethodInfo * method)); -DO_APP_FUNC(0x02C75BB0, bool, Configuration_1_Equals_1, (Configuration_1__Boxed * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x00471910, String *, XRAnchorSubsystemDescriptor_Cinfo_get_id, (XRAnchorSubsystemDescriptor_Cinfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, XRAnchorSubsystemDescriptor_Cinfo_set_id, (XRAnchorSubsystemDescriptor_Cinfo * __this, String * value, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, Type *, XRAnchorSubsystemDescriptor_Cinfo_get_providerType, (XRAnchorSubsystemDescriptor_Cinfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x005F25C0, void, XRAnchorSubsystemDescriptor_Cinfo_set_providerType, (XRAnchorSubsystemDescriptor_Cinfo * __this, Type * value, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Type *, XRAnchorSubsystemDescriptor_Cinfo_get_subsystemTypeOverride, (XRAnchorSubsystemDescriptor_Cinfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCBE0, void, XRAnchorSubsystemDescriptor_Cinfo_set_subsystemTypeOverride, (XRAnchorSubsystemDescriptor_Cinfo * __this, Type * value, MethodInfo * method)); +DO_APP_FUNC(0x005F7520, bool, XRAnchorSubsystemDescriptor_Cinfo_get_supportsTrackableAttachments, (XRAnchorSubsystemDescriptor_Cinfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x00715340, void, XRAnchorSubsystemDescriptor_Cinfo_set_supportsTrackableAttachments, (XRAnchorSubsystemDescriptor_Cinfo * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02C75870, int32_t, XRAnchorSubsystemDescriptor_Cinfo_GetHashCode, (XRAnchorSubsystemDescriptor_Cinfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x02C75950, bool, XRAnchorSubsystemDescriptor_Cinfo_Equals, (XRAnchorSubsystemDescriptor_Cinfo * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02C75A70, bool, XRAnchorSubsystemDescriptor_Cinfo_Equals_1, (XRAnchorSubsystemDescriptor_Cinfo * __this, XRAnchorSubsystemDescriptor_Cinfo other, MethodInfo * method)); +DO_APP_FUNC(0x0171AEA0, ConfigurationDescriptor, Configuration_1_get_descriptor, (Configuration_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3D0, Feature__Enum, Configuration_1_get_features, (Configuration_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02C75AF0, int32_t, Configuration_1_GetHashCode, (Configuration_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x02C75B50, bool, Configuration_1_Equals, (Configuration_1 * __this, Configuration_1 other, MethodInfo * method)); +DO_APP_FUNC(0x02C75BB0, bool, Configuration_1_Equals_1, (Configuration_1 * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ConfigurationChooser__ctor, (ConfigurationChooser * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, void *, ConfigurationDescriptor_get_identifier, (ConfigurationDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, Feature__Enum, ConfigurationDescriptor_get_capabilities, (ConfigurationDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, int32_t, ConfigurationDescriptor_get_rank, (ConfigurationDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02C75C60, void, ConfigurationDescriptor__ctor, (ConfigurationDescriptor__Boxed * __this, void * identifier, Feature__Enum capabilities, int32_t rank, MethodInfo * method)); -DO_APP_FUNC(0x02C75C70, String *, ConfigurationDescriptor_HexString, (ConfigurationDescriptor__Boxed * __this, void * ptr, MethodInfo * method)); -DO_APP_FUNC(0x02C75D30, String *, ConfigurationDescriptor_ToString, (ConfigurationDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02C75E40, int32_t, ConfigurationDescriptor_GetHashCode, (ConfigurationDescriptor__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02C75E60, bool, ConfigurationDescriptor_Equals, (ConfigurationDescriptor__Boxed * __this, ConfigurationDescriptor other, MethodInfo * method)); -DO_APP_FUNC(0x02C75EA0, bool, ConfigurationDescriptor_Equals_1, (ConfigurationDescriptor__Boxed * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x00471910, void *, ConfigurationDescriptor_get_identifier, (ConfigurationDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, Feature__Enum, ConfigurationDescriptor_get_capabilities, (ConfigurationDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, int32_t, ConfigurationDescriptor_get_rank, (ConfigurationDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC(0x02C75C60, void, ConfigurationDescriptor__ctor, (ConfigurationDescriptor * __this, void * identifier, Feature__Enum capabilities, int32_t rank, MethodInfo * method)); +DO_APP_FUNC(0x02C75C70, String *, ConfigurationDescriptor_HexString, (ConfigurationDescriptor * __this, void * ptr, MethodInfo * method)); +DO_APP_FUNC(0x02C75D30, String *, ConfigurationDescriptor_ToString, (ConfigurationDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC(0x02C75E40, int32_t, ConfigurationDescriptor_GetHashCode, (ConfigurationDescriptor * __this, MethodInfo * method)); +DO_APP_FUNC(0x02C75E60, bool, ConfigurationDescriptor_Equals, (ConfigurationDescriptor * __this, ConfigurationDescriptor other, MethodInfo * method)); +DO_APP_FUNC(0x02C75EA0, bool, ConfigurationDescriptor_Equals_1, (ConfigurationDescriptor * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, DefaultConfigurationChooser__ctor, (DefaultConfigurationChooser * __this, MethodInfo * method)); DO_APP_FUNC(0x02C75F50, Feature__Enum, FeatureExtensions_LowestBit, (Feature__Enum self, MethodInfo * method)); DO_APP_FUNC(0x02C75F60, String *, FeatureExtensions_ToStringList, (Feature__Enum features, String * separator, MethodInfo * method)); @@ -116177,28 +128728,31 @@ DO_APP_FUNC(0x006BEA70, void, HandheldARInputDevice_set_deviceRotation, (Handhel DO_APP_FUNC(0x02C765C0, void, HandheldARInputDevice_FinishSetup, (HandheldARInputDevice * __this, MethodInfo * method)); DO_APP_FUNC(0x018BD410, void, HandheldARInputDevice__ctor, (HandheldARInputDevice * __this, MethodInfo * method)); DO_APP_FUNC(0x02C76720, BoundedPlane, BoundedPlane_get_defaultValue, (MethodInfo * method)); -DO_APP_FUNC(0x02C767C0, void, BoundedPlane__ctor, (BoundedPlane__Boxed * __this, TrackableId trackableId, TrackableId subsumedBy, Pose pose, Vector2 center, Vector2 size, PlaneAlignment__Enum alignment, TrackingState__Enum trackingState, void * nativePtr, PlaneClassification__Enum classification, MethodInfo * method)); -DO_APP_FUNC(0x00C2FFD0, TrackableId, BoundedPlane_get_trackableId, (BoundedPlane__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, TrackableId, BoundedPlane_get_subsumedById, (BoundedPlane__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02C76820, Pose, BoundedPlane_get_pose, (BoundedPlane__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01ED3340, Vector2, BoundedPlane_get_center, (BoundedPlane__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02C76840, Vector2, BoundedPlane_get_extents, (BoundedPlane__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02C76870, Vector2, BoundedPlane_get_size, (BoundedPlane__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A113B0, PlaneAlignment__Enum, BoundedPlane_get_alignment, (BoundedPlane__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C8F60, TrackingState__Enum, BoundedPlane_get_trackingState, (BoundedPlane__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003C7490, void *, BoundedPlane_get_nativePtr, (BoundedPlane__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0071AD80, PlaneClassification__Enum, BoundedPlane_get_classification, (BoundedPlane__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02C76890, String *, BoundedPlane_ToString, (BoundedPlane__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02C76D20, bool, BoundedPlane_Equals, (BoundedPlane__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02C76E90, int32_t, BoundedPlane_GetHashCode, (BoundedPlane__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02C77010, bool, BoundedPlane_Equals_1, (BoundedPlane__Boxed * __this, BoundedPlane other, MethodInfo * method)); +DO_APP_FUNC(0x02C767C0, void, BoundedPlane__ctor, (BoundedPlane * __this, TrackableId trackableId, TrackableId subsumedBy, Pose pose, Vector2 center, Vector2 size, PlaneAlignment__Enum alignment, TrackingState__Enum trackingState, void * nativePtr, PlaneClassification__Enum classification, MethodInfo * method)); +DO_APP_FUNC(0x00C2FFD0, TrackableId, BoundedPlane_get_trackableId, (BoundedPlane * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, TrackableId, BoundedPlane_get_subsumedById, (BoundedPlane * __this, MethodInfo * method)); +DO_APP_FUNC(0x02C76820, Pose, BoundedPlane_get_pose, (BoundedPlane * __this, MethodInfo * method)); +DO_APP_FUNC(0x01ED3340, Vector2, BoundedPlane_get_center, (BoundedPlane * __this, MethodInfo * method)); +DO_APP_FUNC(0x02C76840, Vector2, BoundedPlane_get_extents, (BoundedPlane * __this, MethodInfo * method)); +DO_APP_FUNC(0x02C76870, Vector2, BoundedPlane_get_size, (BoundedPlane * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A113B0, PlaneAlignment__Enum, BoundedPlane_get_alignment, (BoundedPlane * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C8F60, TrackingState__Enum, BoundedPlane_get_trackingState, (BoundedPlane * __this, MethodInfo * method)); +DO_APP_FUNC(0x003C7490, void *, BoundedPlane_get_nativePtr, (BoundedPlane * __this, MethodInfo * method)); +DO_APP_FUNC(0x0071AD80, PlaneClassification__Enum, BoundedPlane_get_classification, (BoundedPlane * __this, MethodInfo * method)); +DO_APP_FUNC(0x02C76890, String *, BoundedPlane_ToString, (BoundedPlane * __this, MethodInfo * method)); +DO_APP_FUNC(0x02C76D20, bool, BoundedPlane_Equals, (BoundedPlane * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02C76E90, int32_t, BoundedPlane_GetHashCode, (BoundedPlane * __this, MethodInfo * method)); +DO_APP_FUNC(0x02C77010, bool, BoundedPlane_Equals_1, (BoundedPlane * __this, BoundedPlane other, MethodInfo * method)); DO_APP_FUNC(0x02C77230, void, BoundedPlane__cctor, (MethodInfo * method)); DO_APP_FUNC(0x018D7710, void, XRPlaneSubsystem__ctor, (XRPlaneSubsystem * __this, MethodInfo * method)); DO_APP_FUNC(0x02C77500, TrackableChanges_1_BoundedPlane_, XRPlaneSubsystem_GetChanges, (XRPlaneSubsystem * __this, Allocator__Enum allocator, MethodInfo * method)); -DO_APP_FUNC(0x02C77670, void, XRPlaneSubsystem_GetBoundary, (XRPlaneSubsystem * __this, TrackableId trackableId, Allocator__Enum allocator, NativeArray_1_UnityEngine_Vector2_ boundary, MethodInfo * method)); -DO_APP_FUNC(0x02C777C0, void, XRPlaneSubsystem_Provider_GetBoundary, (XRPlaneSubsystem_Provider * __this, TrackableId trackableId, Allocator__Enum allocator, NativeArray_1_UnityEngine_Vector2_ boundary, MethodInfo * method)); +DO_APP_FUNC(0x02C77670, void, XRPlaneSubsystem_GetBoundary, (XRPlaneSubsystem * __this, TrackableId trackableId, Allocator__Enum allocator, NativeArray_1_UnityEngine_Vector2_ * boundary, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD1E8, XRPlaneSubsystem_GetBoundary__MethodInfo); +DO_APP_FUNC(0x02C777C0, void, XRPlaneSubsystem_Provider_GetBoundary, (XRPlaneSubsystem_Provider * __this, TrackableId trackableId, Allocator__Enum allocator, NativeArray_1_UnityEngine_Vector2_ * boundary, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD148, XRPlaneSubsystem_Provider_GetBoundary__MethodInfo); DO_APP_FUNC(0x003CB690, PlaneDetectionMode__Enum, XRPlaneSubsystem_Provider_get_requestedPlaneDetectionMode, (XRPlaneSubsystem_Provider * __this, MethodInfo * method)); DO_APP_FUNC(0x02C77820, void, XRPlaneSubsystem_Provider_set_requestedPlaneDetectionMode, (XRPlaneSubsystem_Provider * __this, PlaneDetectionMode__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD168, XRPlaneSubsystem_Provider_set_requestedPlaneDetectionMode__MethodInfo); DO_APP_FUNC(0x003CB690, PlaneDetectionMode__Enum, XRPlaneSubsystem_Provider_get_currentPlaneDetectionMode, (XRPlaneSubsystem_Provider * __this, MethodInfo * method)); DO_APP_FUNC(0x02C77890, void, XRPlaneSubsystem_Provider__ctor, (XRPlaneSubsystem_Provider * __this, MethodInfo * method)); DO_APP_FUNC(0x00424C20, void, XRPlaneSubsystemDescriptor_set_supportsHorizontalPlaneDetection, (XRPlaneSubsystemDescriptor * __this, bool value, MethodInfo * method)); @@ -116209,41 +128763,41 @@ DO_APP_FUNC(0x02C778C0, void, XRPlaneSubsystemDescriptor_set_supportsBoundaryVer DO_APP_FUNC(0x00421710, void, XRPlaneSubsystemDescriptor_set_supportsClassification, (XRPlaneSubsystemDescriptor * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x02C778D0, void, XRPlaneSubsystemDescriptor_Create, (XRPlaneSubsystemDescriptor_Cinfo cinfo, MethodInfo * method)); DO_APP_FUNC(0x02C77B40, void, XRPlaneSubsystemDescriptor__ctor, (XRPlaneSubsystemDescriptor * __this, XRPlaneSubsystemDescriptor_Cinfo cinfo, MethodInfo * method)); -DO_APP_FUNC(0x00471910, String *, XRPlaneSubsystemDescriptor_Cinfo_get_id, (XRPlaneSubsystemDescriptor_Cinfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, XRPlaneSubsystemDescriptor_Cinfo_set_id, (XRPlaneSubsystemDescriptor_Cinfo__Boxed * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, Type *, XRPlaneSubsystemDescriptor_Cinfo_get_providerType, (XRPlaneSubsystemDescriptor_Cinfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x005F25C0, void, XRPlaneSubsystemDescriptor_Cinfo_set_providerType, (XRPlaneSubsystemDescriptor_Cinfo__Boxed * __this, Type * value, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Type *, XRPlaneSubsystemDescriptor_Cinfo_get_subsystemTypeOverride, (XRPlaneSubsystemDescriptor_Cinfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCBE0, void, XRPlaneSubsystemDescriptor_Cinfo_set_subsystemTypeOverride, (XRPlaneSubsystemDescriptor_Cinfo__Boxed * __this, Type * value, MethodInfo * method)); -DO_APP_FUNC(0x005F7520, bool, XRPlaneSubsystemDescriptor_Cinfo_get_supportsHorizontalPlaneDetection, (XRPlaneSubsystemDescriptor_Cinfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00715340, void, XRPlaneSubsystemDescriptor_Cinfo_set_supportsHorizontalPlaneDetection, (XRPlaneSubsystemDescriptor_Cinfo__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x005F7530, bool, XRPlaneSubsystemDescriptor_Cinfo_get_supportsVerticalPlaneDetection, (XRPlaneSubsystemDescriptor_Cinfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0197ACF0, void, XRPlaneSubsystemDescriptor_Cinfo_set_supportsVerticalPlaneDetection, (XRPlaneSubsystemDescriptor_Cinfo__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x024EE610, bool, XRPlaneSubsystemDescriptor_Cinfo_get_supportsArbitraryPlaneDetection, (XRPlaneSubsystemDescriptor_Cinfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02AE88D0, void, XRPlaneSubsystemDescriptor_Cinfo_set_supportsArbitraryPlaneDetection, (XRPlaneSubsystemDescriptor_Cinfo__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02AE88E0, bool, XRPlaneSubsystemDescriptor_Cinfo_get_supportsBoundaryVertices, (XRPlaneSubsystemDescriptor_Cinfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02AE88F0, void, XRPlaneSubsystemDescriptor_Cinfo_set_supportsBoundaryVertices, (XRPlaneSubsystemDescriptor_Cinfo__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x00945280, bool, XRPlaneSubsystemDescriptor_Cinfo_get_supportsClassification, (XRPlaneSubsystemDescriptor_Cinfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00945290, void, XRPlaneSubsystemDescriptor_Cinfo_set_supportsClassification, (XRPlaneSubsystemDescriptor_Cinfo__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02C77CA0, bool, XRPlaneSubsystemDescriptor_Cinfo_Equals, (XRPlaneSubsystemDescriptor_Cinfo__Boxed * __this, XRPlaneSubsystemDescriptor_Cinfo other, MethodInfo * method)); -DO_APP_FUNC(0x02C77CF0, bool, XRPlaneSubsystemDescriptor_Cinfo_Equals_1, (XRPlaneSubsystemDescriptor_Cinfo__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02C77DD0, int32_t, XRPlaneSubsystemDescriptor_Cinfo_GetHashCode, (XRPlaneSubsystemDescriptor_Cinfo__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, String *, XRPlaneSubsystemDescriptor_Cinfo_get_id, (XRPlaneSubsystemDescriptor_Cinfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, XRPlaneSubsystemDescriptor_Cinfo_set_id, (XRPlaneSubsystemDescriptor_Cinfo * __this, String * value, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, Type *, XRPlaneSubsystemDescriptor_Cinfo_get_providerType, (XRPlaneSubsystemDescriptor_Cinfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x005F25C0, void, XRPlaneSubsystemDescriptor_Cinfo_set_providerType, (XRPlaneSubsystemDescriptor_Cinfo * __this, Type * value, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Type *, XRPlaneSubsystemDescriptor_Cinfo_get_subsystemTypeOverride, (XRPlaneSubsystemDescriptor_Cinfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCBE0, void, XRPlaneSubsystemDescriptor_Cinfo_set_subsystemTypeOverride, (XRPlaneSubsystemDescriptor_Cinfo * __this, Type * value, MethodInfo * method)); +DO_APP_FUNC(0x005F7520, bool, XRPlaneSubsystemDescriptor_Cinfo_get_supportsHorizontalPlaneDetection, (XRPlaneSubsystemDescriptor_Cinfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x00715340, void, XRPlaneSubsystemDescriptor_Cinfo_set_supportsHorizontalPlaneDetection, (XRPlaneSubsystemDescriptor_Cinfo * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x005F7530, bool, XRPlaneSubsystemDescriptor_Cinfo_get_supportsVerticalPlaneDetection, (XRPlaneSubsystemDescriptor_Cinfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x0197ACF0, void, XRPlaneSubsystemDescriptor_Cinfo_set_supportsVerticalPlaneDetection, (XRPlaneSubsystemDescriptor_Cinfo * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x024EE610, bool, XRPlaneSubsystemDescriptor_Cinfo_get_supportsArbitraryPlaneDetection, (XRPlaneSubsystemDescriptor_Cinfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x02AE88D0, void, XRPlaneSubsystemDescriptor_Cinfo_set_supportsArbitraryPlaneDetection, (XRPlaneSubsystemDescriptor_Cinfo * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02AE88E0, bool, XRPlaneSubsystemDescriptor_Cinfo_get_supportsBoundaryVertices, (XRPlaneSubsystemDescriptor_Cinfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x02AE88F0, void, XRPlaneSubsystemDescriptor_Cinfo_set_supportsBoundaryVertices, (XRPlaneSubsystemDescriptor_Cinfo * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x00945280, bool, XRPlaneSubsystemDescriptor_Cinfo_get_supportsClassification, (XRPlaneSubsystemDescriptor_Cinfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x00945290, void, XRPlaneSubsystemDescriptor_Cinfo_set_supportsClassification, (XRPlaneSubsystemDescriptor_Cinfo * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02C77CA0, bool, XRPlaneSubsystemDescriptor_Cinfo_Equals, (XRPlaneSubsystemDescriptor_Cinfo * __this, XRPlaneSubsystemDescriptor_Cinfo other, MethodInfo * method)); +DO_APP_FUNC(0x02C77CF0, bool, XRPlaneSubsystemDescriptor_Cinfo_Equals_1, (XRPlaneSubsystemDescriptor_Cinfo * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02C77DD0, int32_t, XRPlaneSubsystemDescriptor_Cinfo_GetHashCode, (XRPlaneSubsystemDescriptor_Cinfo * __this, MethodInfo * method)); DO_APP_FUNC(0x02C77F10, XRRaycast, XRRaycast_get_defaultValue, (MethodInfo * method)); -DO_APP_FUNC(0x00C2FFD0, TrackableId, XRRaycast_get_trackableId, (XRRaycast__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01446510, Pose, XRRaycast_get_pose, (XRRaycast__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0098C870, TrackingState__Enum, XRRaycast_get_trackingState, (XRRaycast__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02C77F90, void, XRRaycast__ctor, (XRRaycast__Boxed * __this, TrackableId trackableId, Pose pose, TrackingState__Enum trackingState, void * nativePtr, float distance, TrackableId hitTrackableId, MethodInfo * method)); -DO_APP_FUNC(0x02C77FE0, int32_t, XRRaycast_GetHashCode, (XRRaycast__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02C78100, bool, XRRaycast_Equals, (XRRaycast__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02C781E0, bool, XRRaycast_Equals_1, (XRRaycast__Boxed * __this, XRRaycast other, MethodInfo * method)); +DO_APP_FUNC(0x00C2FFD0, TrackableId, XRRaycast_get_trackableId, (XRRaycast * __this, MethodInfo * method)); +DO_APP_FUNC(0x01446510, Pose, XRRaycast_get_pose, (XRRaycast * __this, MethodInfo * method)); +DO_APP_FUNC(0x0098C870, TrackingState__Enum, XRRaycast_get_trackingState, (XRRaycast * __this, MethodInfo * method)); +DO_APP_FUNC(0x02C77F90, void, XRRaycast__ctor, (XRRaycast * __this, TrackableId trackableId, Pose pose, TrackingState__Enum trackingState, void * nativePtr, float distance, TrackableId hitTrackableId, MethodInfo * method)); +DO_APP_FUNC(0x02C77FE0, int32_t, XRRaycast_GetHashCode, (XRRaycast * __this, MethodInfo * method)); +DO_APP_FUNC(0x02C78100, bool, XRRaycast_Equals, (XRRaycast * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02C781E0, bool, XRRaycast_Equals_1, (XRRaycast * __this, XRRaycast other, MethodInfo * method)); DO_APP_FUNC(0x02C78350, void, XRRaycast__cctor, (MethodInfo * method)); DO_APP_FUNC(0x018D8C40, void, XRRaycastSubsystem__ctor, (XRRaycastSubsystem * __this, MethodInfo * method)); DO_APP_FUNC(0x02C78580, TrackableChanges_1_XRRaycast_, XRRaycastSubsystem_GetChanges, (XRRaycastSubsystem * __this, Allocator__Enum allocator, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, XRRaycastSubsystem_Provider_Start, (XRRaycastSubsystem_Provider * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, XRRaycastSubsystem_Provider_Stop, (XRRaycastSubsystem_Provider * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, XRRaycastSubsystem_Provider_Destroy, (XRRaycastSubsystem_Provider * __this, MethodInfo * method)); -DO_APP_FUNC(0x02C786D0, bool, XRRaycastSubsystem_Provider_TryAddRaycast, (XRRaycastSubsystem_Provider * __this, Vector2 screenPoint, float estimatedDistance, XRRaycast raycast, MethodInfo * method)); -DO_APP_FUNC(0x02C78790, bool, XRRaycastSubsystem_Provider_TryAddRaycast_1, (XRRaycastSubsystem_Provider * __this, Ray ray, float estimatedDistance, XRRaycast raycast, MethodInfo * method)); +DO_APP_FUNC(0x02C786D0, bool, XRRaycastSubsystem_Provider_TryAddRaycast, (XRRaycastSubsystem_Provider * __this, Vector2 screenPoint, float estimatedDistance, XRRaycast * raycast, MethodInfo * method)); +DO_APP_FUNC(0x02C78790, bool, XRRaycastSubsystem_Provider_TryAddRaycast_1, (XRRaycastSubsystem_Provider * __this, Ray ray, float estimatedDistance, XRRaycast * raycast, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, XRRaycastSubsystem_Provider_RemoveRaycast, (XRRaycastSubsystem_Provider * __this, TrackableId trackableId, MethodInfo * method)); DO_APP_FUNC(0x02C78850, TrackableChanges_1_XRRaycast_, XRRaycastSubsystem_Provider_GetChanges, (XRRaycastSubsystem_Provider * __this, XRRaycast defaultRaycast, Allocator__Enum allocator, MethodInfo * method)); DO_APP_FUNC(0x018D8DF0, void, XRRaycastSubsystem_Provider__ctor, (XRRaycastSubsystem_Provider * __this, MethodInfo * method)); @@ -116253,26 +128807,26 @@ DO_APP_FUNC(0x0098C880, void, XRRaycastSubsystemDescriptor_set_supportedTrackabl DO_APP_FUNC(0x00A474A0, void, XRRaycastSubsystemDescriptor_set_supportsTrackedRaycasts, (XRRaycastSubsystemDescriptor * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x02C78870, void, XRRaycastSubsystemDescriptor_RegisterDescriptor, (XRRaycastSubsystemDescriptor_Cinfo cinfo, MethodInfo * method)); DO_APP_FUNC(0x02C78AD0, void, XRRaycastSubsystemDescriptor__ctor, (XRRaycastSubsystemDescriptor * __this, XRRaycastSubsystemDescriptor_Cinfo cinfo, MethodInfo * method)); -DO_APP_FUNC(0x00471910, String *, XRRaycastSubsystemDescriptor_Cinfo_get_id, (XRRaycastSubsystemDescriptor_Cinfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, XRRaycastSubsystemDescriptor_Cinfo_set_id, (XRRaycastSubsystemDescriptor_Cinfo__Boxed * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, Type *, XRRaycastSubsystemDescriptor_Cinfo_get_providerType, (XRRaycastSubsystemDescriptor_Cinfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x005F25C0, void, XRRaycastSubsystemDescriptor_Cinfo_set_providerType, (XRRaycastSubsystemDescriptor_Cinfo__Boxed * __this, Type * value, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Type *, XRRaycastSubsystemDescriptor_Cinfo_get_subsystemTypeOverride, (XRRaycastSubsystemDescriptor_Cinfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCBE0, void, XRRaycastSubsystemDescriptor_Cinfo_set_subsystemTypeOverride, (XRRaycastSubsystemDescriptor_Cinfo__Boxed * __this, Type * value, MethodInfo * method)); -DO_APP_FUNC(0x005F7520, bool, XRRaycastSubsystemDescriptor_Cinfo_get_supportsViewportBasedRaycast, (XRRaycastSubsystemDescriptor_Cinfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00715340, void, XRRaycastSubsystemDescriptor_Cinfo_set_supportsViewportBasedRaycast, (XRRaycastSubsystemDescriptor_Cinfo__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x005F7530, bool, XRRaycastSubsystemDescriptor_Cinfo_get_supportsWorldBasedRaycast, (XRRaycastSubsystemDescriptor_Cinfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0197ACF0, void, XRRaycastSubsystemDescriptor_Cinfo_set_supportsWorldBasedRaycast, (XRRaycastSubsystemDescriptor_Cinfo__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x003CD280, TrackableType__Enum, XRRaycastSubsystemDescriptor_Cinfo_get_supportedTrackableTypes, (XRRaycastSubsystemDescriptor_Cinfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x006D8950, void, XRRaycastSubsystemDescriptor_Cinfo_set_supportedTrackableTypes, (XRRaycastSubsystemDescriptor_Cinfo__Boxed * __this, TrackableType__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x00424C10, bool, XRRaycastSubsystemDescriptor_Cinfo_get_supportsTrackedRaycasts, (XRRaycastSubsystemDescriptor_Cinfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00424C20, void, XRRaycastSubsystemDescriptor_Cinfo_set_supportsTrackedRaycasts, (XRRaycastSubsystemDescriptor_Cinfo__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x02C78C20, int32_t, XRRaycastSubsystemDescriptor_Cinfo_GetHashCode, (XRRaycastSubsystemDescriptor_Cinfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02C78D40, bool, XRRaycastSubsystemDescriptor_Cinfo_Equals, (XRRaycastSubsystemDescriptor_Cinfo__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02C78E80, String *, XRRaycastSubsystemDescriptor_Cinfo_ToString, (XRRaycastSubsystemDescriptor_Cinfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02C78F50, bool, XRRaycastSubsystemDescriptor_Cinfo_Equals_1, (XRRaycastSubsystemDescriptor_Cinfo__Boxed * __this, XRRaycastSubsystemDescriptor_Cinfo other, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, ScopedProfiler__ctor, (ScopedProfiler__Boxed * __this, String * name, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, ScopedProfiler_Dispose, (ScopedProfiler__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, String *, XRRaycastSubsystemDescriptor_Cinfo_get_id, (XRRaycastSubsystemDescriptor_Cinfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, XRRaycastSubsystemDescriptor_Cinfo_set_id, (XRRaycastSubsystemDescriptor_Cinfo * __this, String * value, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, Type *, XRRaycastSubsystemDescriptor_Cinfo_get_providerType, (XRRaycastSubsystemDescriptor_Cinfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x005F25C0, void, XRRaycastSubsystemDescriptor_Cinfo_set_providerType, (XRRaycastSubsystemDescriptor_Cinfo * __this, Type * value, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Type *, XRRaycastSubsystemDescriptor_Cinfo_get_subsystemTypeOverride, (XRRaycastSubsystemDescriptor_Cinfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCBE0, void, XRRaycastSubsystemDescriptor_Cinfo_set_subsystemTypeOverride, (XRRaycastSubsystemDescriptor_Cinfo * __this, Type * value, MethodInfo * method)); +DO_APP_FUNC(0x005F7520, bool, XRRaycastSubsystemDescriptor_Cinfo_get_supportsViewportBasedRaycast, (XRRaycastSubsystemDescriptor_Cinfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x00715340, void, XRRaycastSubsystemDescriptor_Cinfo_set_supportsViewportBasedRaycast, (XRRaycastSubsystemDescriptor_Cinfo * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x005F7530, bool, XRRaycastSubsystemDescriptor_Cinfo_get_supportsWorldBasedRaycast, (XRRaycastSubsystemDescriptor_Cinfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x0197ACF0, void, XRRaycastSubsystemDescriptor_Cinfo_set_supportsWorldBasedRaycast, (XRRaycastSubsystemDescriptor_Cinfo * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x003CD280, TrackableType__Enum, XRRaycastSubsystemDescriptor_Cinfo_get_supportedTrackableTypes, (XRRaycastSubsystemDescriptor_Cinfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x006D8950, void, XRRaycastSubsystemDescriptor_Cinfo_set_supportedTrackableTypes, (XRRaycastSubsystemDescriptor_Cinfo * __this, TrackableType__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x00424C10, bool, XRRaycastSubsystemDescriptor_Cinfo_get_supportsTrackedRaycasts, (XRRaycastSubsystemDescriptor_Cinfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x00424C20, void, XRRaycastSubsystemDescriptor_Cinfo_set_supportsTrackedRaycasts, (XRRaycastSubsystemDescriptor_Cinfo * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x02C78C20, int32_t, XRRaycastSubsystemDescriptor_Cinfo_GetHashCode, (XRRaycastSubsystemDescriptor_Cinfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x02C78D40, bool, XRRaycastSubsystemDescriptor_Cinfo_Equals, (XRRaycastSubsystemDescriptor_Cinfo * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02C78E80, String *, XRRaycastSubsystemDescriptor_Cinfo_ToString, (XRRaycastSubsystemDescriptor_Cinfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x02C78F50, bool, XRRaycastSubsystemDescriptor_Cinfo_Equals_1, (XRRaycastSubsystemDescriptor_Cinfo * __this, XRRaycastSubsystemDescriptor_Cinfo other, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, ScopedProfiler__ctor, (ScopedProfiler * __this, String * name, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, ScopedProfiler_Dispose, (ScopedProfiler * __this, MethodInfo * method)); DO_APP_FUNC(0x018D92A0, void, XRSessionSubsystem__ctor, (XRSessionSubsystem * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, XRSessionSubsystem_Provider_Start, (XRSessionSubsystem_Provider * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, XRSessionSubsystem_Provider_Stop, (XRSessionSubsystem_Provider * __this, MethodInfo * method)); @@ -116294,95 +128848,99 @@ DO_APP_FUNC(0x02C79050, Guid, XRSessionSubsystem_Provider_get_sessionId, (XRSess DO_APP_FUNC(0x0041AF00, bool, XRSessionSubsystem_Provider_get_matchFrameRateEnabled, (XRSessionSubsystem_Provider * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, XRSessionSubsystem_Provider_get_matchFrameRateRequested, (XRSessionSubsystem_Provider * __this, MethodInfo * method)); DO_APP_FUNC(0x02C790A0, int32_t, XRSessionSubsystem_Provider_get_frameRate, (XRSessionSubsystem_Provider * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACFF8, XRSessionSubsystem_Provider_get_frameRate__MethodInfo); DO_APP_FUNC(0x02C79100, void, XRSessionSubsystem_Provider__ctor, (XRSessionSubsystem_Provider * __this, MethodInfo * method)); DO_APP_FUNC(0x00424C20, void, XRSessionSubsystemDescriptor_set_supportsInstall, (XRSessionSubsystemDescriptor * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x01CBB9F0, void, XRSessionSubsystemDescriptor_set_supportsMatchFrameRate, (XRSessionSubsystemDescriptor * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x02C79130, void, XRSessionSubsystemDescriptor_RegisterDescriptor, (XRSessionSubsystemDescriptor_Cinfo cinfo, MethodInfo * method)); DO_APP_FUNC(0x02C79380, void, XRSessionSubsystemDescriptor__ctor, (XRSessionSubsystemDescriptor * __this, XRSessionSubsystemDescriptor_Cinfo cinfo, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, XRSessionSubsystemDescriptor_Cinfo_get_supportsInstall, (XRSessionSubsystemDescriptor_Cinfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C3C200, void, XRSessionSubsystemDescriptor_Cinfo_set_supportsInstall, (XRSessionSubsystemDescriptor_Cinfo__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x01819930, bool, XRSessionSubsystemDescriptor_Cinfo_get_supportsMatchFrameRate, (XRSessionSubsystemDescriptor_Cinfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01EC7BF0, void, XRSessionSubsystemDescriptor_Cinfo_set_supportsMatchFrameRate, (XRSessionSubsystemDescriptor_Cinfo__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, String *, XRSessionSubsystemDescriptor_Cinfo_get_id, (XRSessionSubsystemDescriptor_Cinfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x005F25C0, void, XRSessionSubsystemDescriptor_Cinfo_set_id, (XRSessionSubsystemDescriptor_Cinfo__Boxed * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Type *, XRSessionSubsystemDescriptor_Cinfo_get_providerType, (XRSessionSubsystemDescriptor_Cinfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCBE0, void, XRSessionSubsystemDescriptor_Cinfo_set_providerType, (XRSessionSubsystemDescriptor_Cinfo__Boxed * __this, Type * value, MethodInfo * method)); -DO_APP_FUNC(0x003BB3D0, Type *, XRSessionSubsystemDescriptor_Cinfo_get_subsystemTypeOverride, (XRSessionSubsystemDescriptor_Cinfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003AE960, void, XRSessionSubsystemDescriptor_Cinfo_set_subsystemTypeOverride, (XRSessionSubsystemDescriptor_Cinfo__Boxed * __this, Type * value, MethodInfo * method)); -DO_APP_FUNC(0x02C794D0, int32_t, XRSessionSubsystemDescriptor_Cinfo_GetHashCode, (XRSessionSubsystemDescriptor_Cinfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02C795E0, bool, XRSessionSubsystemDescriptor_Cinfo_Equals, (XRSessionSubsystemDescriptor_Cinfo__Boxed * __this, XRSessionSubsystemDescriptor_Cinfo other, MethodInfo * method)); -DO_APP_FUNC(0x02C79670, bool, XRSessionSubsystemDescriptor_Cinfo_Equals_1, (XRSessionSubsystemDescriptor_Cinfo__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, ScreenOrientation__Enum, XRSessionUpdateParams_get_screenOrientation, (XRSessionUpdateParams__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171B200, Vector2Int, XRSessionUpdateParams_get_screenDimensions, (XRSessionUpdateParams__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02C79790, int32_t, XRSessionUpdateParams_GetHashCode, (XRSessionUpdateParams__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02C797B0, bool, XRSessionUpdateParams_Equals, (XRSessionUpdateParams__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02C79870, String *, XRSessionUpdateParams_ToString, (XRSessionUpdateParams__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02C79950, bool, XRSessionUpdateParams_Equals_1, (XRSessionUpdateParams__Boxed * __this, XRSessionUpdateParams other, MethodInfo * method)); +DO_APP_FUNC(0x00C173D0, bool, XRSessionSubsystemDescriptor_Cinfo_get_supportsInstall, (XRSessionSubsystemDescriptor_Cinfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C3C200, void, XRSessionSubsystemDescriptor_Cinfo_set_supportsInstall, (XRSessionSubsystemDescriptor_Cinfo * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x01819930, bool, XRSessionSubsystemDescriptor_Cinfo_get_supportsMatchFrameRate, (XRSessionSubsystemDescriptor_Cinfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x01EC7BF0, void, XRSessionSubsystemDescriptor_Cinfo_set_supportsMatchFrameRate, (XRSessionSubsystemDescriptor_Cinfo * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, String *, XRSessionSubsystemDescriptor_Cinfo_get_id, (XRSessionSubsystemDescriptor_Cinfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x005F25C0, void, XRSessionSubsystemDescriptor_Cinfo_set_id, (XRSessionSubsystemDescriptor_Cinfo * __this, String * value, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Type *, XRSessionSubsystemDescriptor_Cinfo_get_providerType, (XRSessionSubsystemDescriptor_Cinfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCBE0, void, XRSessionSubsystemDescriptor_Cinfo_set_providerType, (XRSessionSubsystemDescriptor_Cinfo * __this, Type * value, MethodInfo * method)); +DO_APP_FUNC(0x003BB3D0, Type *, XRSessionSubsystemDescriptor_Cinfo_get_subsystemTypeOverride, (XRSessionSubsystemDescriptor_Cinfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x003AE960, void, XRSessionSubsystemDescriptor_Cinfo_set_subsystemTypeOverride, (XRSessionSubsystemDescriptor_Cinfo * __this, Type * value, MethodInfo * method)); +DO_APP_FUNC(0x02C794D0, int32_t, XRSessionSubsystemDescriptor_Cinfo_GetHashCode, (XRSessionSubsystemDescriptor_Cinfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x02C795E0, bool, XRSessionSubsystemDescriptor_Cinfo_Equals, (XRSessionSubsystemDescriptor_Cinfo * __this, XRSessionSubsystemDescriptor_Cinfo other, MethodInfo * method)); +DO_APP_FUNC(0x02C79670, bool, XRSessionSubsystemDescriptor_Cinfo_Equals_1, (XRSessionSubsystemDescriptor_Cinfo * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, ScreenOrientation__Enum, XRSessionUpdateParams_get_screenOrientation, (XRSessionUpdateParams * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171B200, Vector2Int, XRSessionUpdateParams_get_screenDimensions, (XRSessionUpdateParams * __this, MethodInfo * method)); +DO_APP_FUNC(0x02C79790, int32_t, XRSessionUpdateParams_GetHashCode, (XRSessionUpdateParams * __this, MethodInfo * method)); +DO_APP_FUNC(0x02C797B0, bool, XRSessionUpdateParams_Equals, (XRSessionUpdateParams * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02C79870, String *, XRSessionUpdateParams_ToString, (XRSessionUpdateParams * __this, MethodInfo * method)); +DO_APP_FUNC(0x02C79950, bool, XRSessionUpdateParams_Equals_1, (XRSessionUpdateParams * __this, XRSessionUpdateParams other, MethodInfo * method)); DO_APP_FUNC(0x02C79980, TrackableId, TrackableId_get_invalidId, (MethodInfo * method)); -DO_APP_FUNC(0x00471910, uint64_t, TrackableId_get_subId1, (TrackableId__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, uint64_t, TrackableId_get_subId2, (TrackableId__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BDCC10, void, TrackableId__ctor, (TrackableId__Boxed * __this, uint64_t subId1, uint64_t subId2, MethodInfo * method)); -DO_APP_FUNC(0x02C799E0, String *, TrackableId_ToString, (TrackableId__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02C79AA0, int32_t, TrackableId_GetHashCode, (TrackableId__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02C79AC0, bool, TrackableId_Equals, (TrackableId__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x00A2BE50, bool, TrackableId_Equals_1, (TrackableId__Boxed * __this, TrackableId other, MethodInfo * method)); +DO_APP_FUNC(0x00471910, uint64_t, TrackableId_get_subId1, (TrackableId * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, uint64_t, TrackableId_get_subId2, (TrackableId * __this, MethodInfo * method)); +DO_APP_FUNC(0x00BDCC10, void, TrackableId__ctor, (TrackableId * __this, uint64_t subId1, uint64_t subId2, MethodInfo * method)); +DO_APP_FUNC(0x02C799E0, String *, TrackableId_ToString, (TrackableId * __this, MethodInfo * method)); +DO_APP_FUNC(0x02C79AA0, int32_t, TrackableId_GetHashCode, (TrackableId * __this, MethodInfo * method)); +DO_APP_FUNC(0x02C79AC0, bool, TrackableId_Equals, (TrackableId * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x00A2BE50, bool, TrackableId_Equals_1, (TrackableId * __this, TrackableId other, MethodInfo * method)); DO_APP_FUNC(0x00A2BE70, bool, TrackableId_op_Inequality, (TrackableId lhs, TrackableId rhs, MethodInfo * method)); DO_APP_FUNC(0x02C79B70, void, TrackableId__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, EmbeddedAttribute_5__ctor, (EmbeddedAttribute_5 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, IsReadOnlyAttribute_5__ctor, (IsReadOnlyAttribute_5 * __this, MethodInfo * method)); DO_APP_FUNC(0x03017140, void, InputTracking_InvokeTrackingEvent, (InputTracking_TrackingStateEventType__Enum eventType, XRNode__Enum nodeType, int64_t uniqueID, bool tracked, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4718, InputTracking_InvokeTrackingEvent__MethodInfo); DO_APP_FUNC(0x03017300, void, InputTracking_GetNodeStates, (List_1_UnityEngine_XR_XRNodeState_ * nodeStates, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF46F8, InputTracking_GetNodeStates__MethodInfo); DO_APP_FUNC(0x030173D0, void, InputTracking_GetNodeStates_Internal, (List_1_UnityEngine_XR_XRNodeState_ * nodeStates, MethodInfo * method)); -DO_APP_FUNC(0x00AF1D50, void, XRNodeState_set_uniqueID, (XRNodeState__Boxed * __this, uint64_t value, MethodInfo * method)); -DO_APP_FUNC(0x02B78450, XRNode__Enum, XRNodeState_get_nodeType, (XRNodeState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00959BA0, void, XRNodeState_set_nodeType, (XRNodeState__Boxed * __this, XRNode__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x03017420, bool, XRNodeState_get_tracked, (XRNodeState__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x03017430, void, XRNodeState_set_tracked, (XRNodeState__Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x03017440, bool, XRNodeState_TryGetPosition, (XRNodeState__Boxed * __this, Vector3 position, MethodInfo * method)); -DO_APP_FUNC(0x030174B0, bool, XRNodeState_TryGetRotation, (XRNodeState__Boxed * __this, Quaternion rotation, MethodInfo * method)); -DO_APP_FUNC(0x03017510, bool, XRNodeState_TryGetVelocity, (XRNodeState__Boxed * __this, Vector3 velocity, MethodInfo * method)); -DO_APP_FUNC(0x03017580, bool, XRNodeState_TryGet, (XRNodeState__Boxed * __this, Vector3 inValue, AvailableTrackingData__Enum availabilityFlag, Vector3 outValue, MethodInfo * method)); -DO_APP_FUNC(0x030175F0, bool, XRNodeState_TryGet_1, (XRNodeState__Boxed * __this, Quaternion inValue, AvailableTrackingData__Enum availabilityFlag, Quaternion outValue, MethodInfo * method)); -DO_APP_FUNC(0x00E5B640, String *, InputFeatureUsage_get_name, (InputFeatureUsage__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01809D80, InputFeatureType__Enum, InputFeatureUsage_get_internalType, (InputFeatureUsage__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x03017650, bool, InputFeatureUsage_Equals, (InputFeatureUsage__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x03017750, bool, InputFeatureUsage_Equals_1, (InputFeatureUsage__Boxed * __this, InputFeatureUsage other, MethodInfo * method)); -DO_APP_FUNC(0x030177C0, int32_t, InputFeatureUsage_GetHashCode, (InputFeatureUsage__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00AF1D50, void, XRNodeState_set_uniqueID, (XRNodeState * __this, uint64_t value, MethodInfo * method)); +DO_APP_FUNC(0x02B78450, XRNode__Enum, XRNodeState_get_nodeType, (XRNodeState * __this, MethodInfo * method)); +DO_APP_FUNC(0x00959BA0, void, XRNodeState_set_nodeType, (XRNodeState * __this, XRNode__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x03017420, bool, XRNodeState_get_tracked, (XRNodeState * __this, MethodInfo * method)); +DO_APP_FUNC(0x03017430, void, XRNodeState_set_tracked, (XRNodeState * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x03017440, bool, XRNodeState_TryGetPosition, (XRNodeState * __this, Vector3 * position, MethodInfo * method)); +DO_APP_FUNC(0x030174B0, bool, XRNodeState_TryGetRotation, (XRNodeState * __this, Quaternion * rotation, MethodInfo * method)); +DO_APP_FUNC(0x03017510, bool, XRNodeState_TryGetVelocity, (XRNodeState * __this, Vector3 * velocity, MethodInfo * method)); +DO_APP_FUNC(0x03017580, bool, XRNodeState_TryGet, (XRNodeState * __this, Vector3 inValue, AvailableTrackingData__Enum availabilityFlag, Vector3 * outValue, MethodInfo * method)); +DO_APP_FUNC(0x030175F0, bool, XRNodeState_TryGet_1, (XRNodeState * __this, Quaternion inValue, AvailableTrackingData__Enum availabilityFlag, Quaternion * outValue, MethodInfo * method)); +DO_APP_FUNC(0x00E5B640, String *, InputFeatureUsage_get_name, (InputFeatureUsage * __this, MethodInfo * method)); +DO_APP_FUNC(0x01809D80, InputFeatureType__Enum, InputFeatureUsage_get_internalType, (InputFeatureUsage * __this, MethodInfo * method)); +DO_APP_FUNC(0x03017650, bool, InputFeatureUsage_Equals, (InputFeatureUsage * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x03017750, bool, InputFeatureUsage_Equals_1, (InputFeatureUsage * __this, InputFeatureUsage other, MethodInfo * method)); +DO_APP_FUNC(0x030177C0, int32_t, InputFeatureUsage_GetHashCode, (InputFeatureUsage * __this, MethodInfo * method)); DO_APP_FUNC(0x03017800, void, CommonUsages_1__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x03019840, void, InputDevice_1__ctor, (InputDevice_1__Boxed * __this, uint64_t deviceId, MethodInfo * method)); -DO_APP_FUNC(0x03019850, uint64_t, InputDevice_1_get_deviceId, (InputDevice_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x03019870, String *, InputDevice_1_get_name, (InputDevice_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x030198E0, InputDeviceCharacteristics__Enum, InputDevice_1_get_characteristics, (InputDevice_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x03019950, bool, InputDevice_1_IsValidId, (InputDevice_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x03019970, bool, InputDevice_1_TryGetFeatureValue, (InputDevice_1__Boxed * __this, InputFeatureUsage_1_UnityEngine_Vector3_ usage, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x03019A30, bool, InputDevice_1_TryGetFeatureValue_1, (InputDevice_1__Boxed * __this, InputFeatureUsage_1_UnityEngine_Quaternion_ usage, Quaternion value, MethodInfo * method)); -DO_APP_FUNC(0x03019B00, bool, InputDevice_1_Equals, (InputDevice_1__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x03019BB0, bool, InputDevice_1_Equals_1, (InputDevice_1__Boxed * __this, InputDevice_1 other, MethodInfo * method)); -DO_APP_FUNC(0x03019BE0, int32_t, InputDevice_1_GetHashCode, (InputDevice_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E5B640, uint64_t, Hand_1_get_deviceId, (Hand_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01809D80, uint32_t, Hand_1_get_featureIndex, (Hand_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x03019C10, bool, Hand_1_Equals, (Hand_1__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x03019CB0, bool, Hand_1_Equals_1, (Hand_1__Boxed * __this, Hand_1 other, MethodInfo * method)); -DO_APP_FUNC(0x03019CD0, int32_t, Hand_1_GetHashCode, (Hand_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E5B640, uint64_t, Eyes_1_get_deviceId, (Eyes_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01809D80, uint32_t, Eyes_1_get_featureIndex, (Eyes_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x03019CF0, bool, Eyes_1_Equals, (Eyes_1__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x03019CB0, bool, Eyes_1_Equals_1, (Eyes_1__Boxed * __this, Eyes_1 other, MethodInfo * method)); -DO_APP_FUNC(0x03019CD0, int32_t, Eyes_1_GetHashCode, (Eyes_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E5B640, uint64_t, Bone_1_get_deviceId, (Bone_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01809D80, uint32_t, Bone_1_get_featureIndex, (Bone_1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x03019D90, bool, Bone_1_Equals, (Bone_1__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x03019CB0, bool, Bone_1_Equals_1, (Bone_1__Boxed * __this, Bone_1 other, MethodInfo * method)); -DO_APP_FUNC(0x03019CD0, int32_t, Bone_1_GetHashCode, (Bone_1__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x03019840, void, InputDevice_1__ctor, (InputDevice_1 * __this, uint64_t deviceId, MethodInfo * method)); +DO_APP_FUNC(0x03019850, uint64_t, InputDevice_1_get_deviceId, (InputDevice_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x03019870, String *, InputDevice_1_get_name, (InputDevice_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x030198E0, InputDeviceCharacteristics__Enum, InputDevice_1_get_characteristics, (InputDevice_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x03019950, bool, InputDevice_1_IsValidId, (InputDevice_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x03019970, bool, InputDevice_1_TryGetFeatureValue, (InputDevice_1 * __this, InputFeatureUsage_1_UnityEngine_Vector3_ usage, Vector3 * value, MethodInfo * method)); +DO_APP_FUNC(0x03019A30, bool, InputDevice_1_TryGetFeatureValue_1, (InputDevice_1 * __this, InputFeatureUsage_1_UnityEngine_Quaternion_ usage, Quaternion * value, MethodInfo * method)); +DO_APP_FUNC(0x03019B00, bool, InputDevice_1_Equals, (InputDevice_1 * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x03019BB0, bool, InputDevice_1_Equals_1, (InputDevice_1 * __this, InputDevice_1 other, MethodInfo * method)); +DO_APP_FUNC(0x03019BE0, int32_t, InputDevice_1_GetHashCode, (InputDevice_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E5B640, uint64_t, Hand_1_get_deviceId, (Hand_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01809D80, uint32_t, Hand_1_get_featureIndex, (Hand_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x03019C10, bool, Hand_1_Equals, (Hand_1 * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x03019CB0, bool, Hand_1_Equals_1, (Hand_1 * __this, Hand_1 other, MethodInfo * method)); +DO_APP_FUNC(0x03019CD0, int32_t, Hand_1_GetHashCode, (Hand_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E5B640, uint64_t, Eyes_1_get_deviceId, (Eyes_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01809D80, uint32_t, Eyes_1_get_featureIndex, (Eyes_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x03019CF0, bool, Eyes_1_Equals, (Eyes_1 * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x03019CB0, bool, Eyes_1_Equals_1, (Eyes_1 * __this, Eyes_1 other, MethodInfo * method)); +DO_APP_FUNC(0x03019CD0, int32_t, Eyes_1_GetHashCode, (Eyes_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E5B640, uint64_t, Bone_1_get_deviceId, (Bone_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01809D80, uint32_t, Bone_1_get_featureIndex, (Bone_1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x03019D90, bool, Bone_1_Equals, (Bone_1 * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x03019CB0, bool, Bone_1_Equals_1, (Bone_1 * __this, Bone_1 other, MethodInfo * method)); +DO_APP_FUNC(0x03019CD0, int32_t, Bone_1_GetHashCode, (Bone_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x03019E30, void, InputDevices_GetDevicesWithCharacteristics, (InputDeviceCharacteristics__Enum desiredCharacteristics, List_1_UnityEngine_XR_InputDevice_ * inputDevices, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4580, InputDevices_GetDevicesWithCharacteristics__MethodInfo); DO_APP_FUNC(0x0301A2A0, void, InputDevices_add_deviceConnected, (Action_1_UnityEngine_XR_InputDevice_ * value, MethodInfo * method)); DO_APP_FUNC(0x0301A3E0, void, InputDevices_remove_deviceConnected, (Action_1_UnityEngine_XR_InputDevice_ * value, MethodInfo * method)); DO_APP_FUNC(0x0301A520, void, InputDevices_add_deviceDisconnected, (Action_1_UnityEngine_XR_InputDevice_ * value, MethodInfo * method)); DO_APP_FUNC(0x0301A660, void, InputDevices_remove_deviceDisconnected, (Action_1_UnityEngine_XR_InputDevice_ * value, MethodInfo * method)); DO_APP_FUNC(0x0301A7A0, void, InputDevices_InvokeConnectionEvent, (uint64_t deviceId, ConnectionChangeType__Enum change, MethodInfo * method)); DO_APP_FUNC(0x0301A870, void, InputDevices_GetDevices_Internal, (List_1_UnityEngine_XR_InputDevice_ * inputDevices, MethodInfo * method)); -DO_APP_FUNC(0x0301A8C0, bool, InputDevices_TryGetFeatureValue_Vector3f, (uint64_t deviceId, String * usage, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x0301A930, bool, InputDevices_TryGetFeatureValue_Quaternionf, (uint64_t deviceId, String * usage, Quaternion value, MethodInfo * method)); +DO_APP_FUNC(0x0301A8C0, bool, InputDevices_TryGetFeatureValue_Vector3f, (uint64_t deviceId, String * usage, Vector3 * value, MethodInfo * method)); +DO_APP_FUNC(0x0301A930, bool, InputDevices_TryGetFeatureValue_Quaternionf, (uint64_t deviceId, String * usage, Quaternion * value, MethodInfo * method)); DO_APP_FUNC(0x0301A9A0, String *, InputDevices_GetDeviceName, (uint64_t deviceId, MethodInfo * method)); DO_APP_FUNC(0x0301A9F0, InputDeviceCharacteristics__Enum, InputDevices_GetDeviceCharacteristics, (uint64_t deviceId, MethodInfo * method)); DO_APP_FUNC(0x02CD8CE0, void, XRDisplaySubsystem_InvokeDisplayFocusChanged, (XRDisplaySubsystem * __this, bool focus, MethodInfo * method)); @@ -116398,10 +128956,10 @@ DO_APP_FUNC(0x0301AE10, void, XRInputSubsystem_InvokeTrackingOriginUpdatedEvent, DO_APP_FUNC(0x0301AED0, void, XRInputSubsystem_InvokeBoundaryChangedEvent, (void * internalPtr, MethodInfo * method)); DO_APP_FUNC(0x0301AF90, void, XRInputSubsystem__ctor, (XRInputSubsystem * __this, MethodInfo * method)); DO_APP_FUNC(0x0301AFC0, void, XRInputSubsystemDescriptor__ctor, (XRInputSubsystemDescriptor * __this, MethodInfo * method)); -DO_APP_FUNC(0x0301AFF0, String *, MeshId_ToString, (MeshId__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D23750, int32_t, MeshId_GetHashCode, (MeshId__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0301B0B0, bool, MeshId_Equals, (MeshId__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x01E013D0, bool, MeshId_Equals_1, (MeshId__Boxed * __this, MeshId other, MethodInfo * method)); +DO_APP_FUNC(0x0301AFF0, String *, MeshId_ToString, (MeshId * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D23750, int32_t, MeshId_GetHashCode, (MeshId * __this, MethodInfo * method)); +DO_APP_FUNC(0x0301B0B0, bool, MeshId_Equals, (MeshId * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x01E013D0, bool, MeshId_Equals_1, (MeshId * __this, MeshId other, MethodInfo * method)); DO_APP_FUNC(0x0301B160, void, MeshId__cctor, (MethodInfo * method)); DO_APP_FUNC(0x0301B1A0, int32_t, HashCodeHelper_Combine, (int32_t hash1, int32_t hash2, MethodInfo * method)); DO_APP_FUNC(0x0301B1B0, int32_t, HashCodeHelper_Combine_1, (int32_t hash1, int32_t hash2, int32_t hash3, MethodInfo * method)); @@ -116410,20 +128968,20 @@ DO_APP_FUNC(0x0301B1F0, int32_t, HashCodeHelper_Combine_3, (int32_t hash1, int32 DO_APP_FUNC(0x0301B220, int32_t, HashCodeHelper_Combine_4, (int32_t hash1, int32_t hash2, int32_t hash3, int32_t hash4, int32_t hash5, int32_t hash6, MethodInfo * method)); DO_APP_FUNC(0x0301B260, int32_t, HashCodeHelper_Combine_5, (int32_t hash1, int32_t hash2, int32_t hash3, int32_t hash4, int32_t hash5, int32_t hash6, int32_t hash7, MethodInfo * method)); DO_APP_FUNC(0x0301B2A0, int32_t, HashCodeHelper_Combine_6, (int32_t hash1, int32_t hash2, int32_t hash3, int32_t hash4, int32_t hash5, int32_t hash6, int32_t hash7, int32_t hash8, MethodInfo * method)); -DO_APP_FUNC(0x00C2FFD0, MeshId, MeshGenerationResult_get_MeshId, (MeshGenerationResult__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Mesh *, MeshGenerationResult_get_Mesh, (MeshGenerationResult__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3D0, MeshCollider *, MeshGenerationResult_get_MeshCollider, (MeshGenerationResult__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003CC980, MeshGenerationStatus__Enum, MeshGenerationResult_get_Status, (MeshGenerationResult__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003CD280, MeshVertexAttributes__Enum, MeshGenerationResult_get_Attributes, (MeshGenerationResult__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0094F9F0, Vector3, MeshGenerationResult_get_Position, (MeshGenerationResult__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x028DB670, Quaternion, MeshGenerationResult_get_Rotation, (MeshGenerationResult__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01CF1190, Vector3, MeshGenerationResult_get_Scale, (MeshGenerationResult__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0301B2F0, bool, MeshGenerationResult_Equals, (MeshGenerationResult__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0301B3C0, bool, MeshGenerationResult_Equals_1, (MeshGenerationResult__Boxed * __this, MeshGenerationResult other, MethodInfo * method)); -DO_APP_FUNC(0x0301B570, int32_t, MeshGenerationResult_GetHashCode, (MeshGenerationResult__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C2FFD0, MeshId, MeshGenerationResult_get_MeshId, (MeshGenerationResult * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Mesh *, MeshGenerationResult_get_Mesh, (MeshGenerationResult * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3D0, MeshCollider *, MeshGenerationResult_get_MeshCollider, (MeshGenerationResult * __this, MethodInfo * method)); +DO_APP_FUNC(0x003CC980, MeshGenerationStatus__Enum, MeshGenerationResult_get_Status, (MeshGenerationResult * __this, MethodInfo * method)); +DO_APP_FUNC(0x003CD280, MeshVertexAttributes__Enum, MeshGenerationResult_get_Attributes, (MeshGenerationResult * __this, MethodInfo * method)); +DO_APP_FUNC(0x0094F9F0, Vector3, MeshGenerationResult_get_Position, (MeshGenerationResult * __this, MethodInfo * method)); +DO_APP_FUNC(0x028DB670, Quaternion, MeshGenerationResult_get_Rotation, (MeshGenerationResult * __this, MethodInfo * method)); +DO_APP_FUNC(0x01CF1190, Vector3, MeshGenerationResult_get_Scale, (MeshGenerationResult * __this, MethodInfo * method)); +DO_APP_FUNC(0x0301B2F0, bool, MeshGenerationResult_Equals, (MeshGenerationResult * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x0301B3C0, bool, MeshGenerationResult_Equals_1, (MeshGenerationResult * __this, MeshGenerationResult other, MethodInfo * method)); +DO_APP_FUNC(0x0301B570, int32_t, MeshGenerationResult_GetHashCode, (MeshGenerationResult * __this, MethodInfo * method)); DO_APP_FUNC(0x0301B7E0, void, XRMeshSubsystem_InvokeMeshReadyDelegate, (XRMeshSubsystem * __this, MeshGenerationResult result, Action_1_UnityEngine_XR_MeshGenerationResult_ * onMeshGenerationComplete, MethodInfo * method)); DO_APP_FUNC(0x0301B840, void, XRMeshSubsystem__ctor, (XRMeshSubsystem * __this, MethodInfo * method)); -DO_APP_FUNC(0x0301B870, void, XRMeshSubsystem_MeshTransformList_Dispose, (XRMeshSubsystem_MeshTransformList__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0301B870, void, XRMeshSubsystem_MeshTransformList_Dispose, (XRMeshSubsystem_MeshTransformList * __this, MethodInfo * method)); DO_APP_FUNC(0x0301B8C0, void, XRMeshSubsystem_MeshTransformList_Dispose_1, (void * self, MethodInfo * method)); DO_APP_FUNC(0x0301B910, void, XRMeshSubsystemDescriptor__ctor, (XRMeshSubsystemDescriptor * __this, MethodInfo * method)); DO_APP_FUNC(0x02C6D400, void *, ARAnchor_get_nativePtr, (ARAnchor * __this, MethodInfo * method)); @@ -116437,26 +128995,30 @@ DO_APP_FUNC(0x003C7330, void, ARAnchorManager_set_anchorPrefab, (ARAnchorManager DO_APP_FUNC(0x02C6D810, void, ARAnchorManager_add_anchorsChanged, (ARAnchorManager * __this, Action_1_UnityEngine_XR_ARFoundation_ARAnchorsChangedEventArgs_ * value, MethodInfo * method)); DO_APP_FUNC(0x02C6D920, void, ARAnchorManager_remove_anchorsChanged, (ARAnchorManager * __this, Action_1_UnityEngine_XR_ARFoundation_ARAnchorsChangedEventArgs_ * value, MethodInfo * method)); DO_APP_FUNC(0x02C6DA30, ARAnchor *, ARAnchorManager_AddAnchor, (ARAnchorManager * __this, Pose pose, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC8B0, ARAnchorManager_AddAnchor__MethodInfo); DO_APP_FUNC(0x02C6DCD0, bool, ARAnchorManager_TryAddAnchor, (ARAnchorManager * __this, ARAnchor * anchor, MethodInfo * method)); DO_APP_FUNC(0x02C6E1A0, ARAnchor *, ARAnchorManager_AttachAnchor, (ARAnchorManager * __this, ARPlane * plane, Pose pose, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC948, ARAnchorManager_AttachAnchor__MethodInfo); DO_APP_FUNC(0x02C6E5E0, bool, ARAnchorManager_RemoveAnchor, (ARAnchorManager * __this, ARAnchor * anchor, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC8F0, ARAnchorManager_RemoveAnchor__MethodInfo); DO_APP_FUNC(0x02C6E9F0, bool, ARAnchorManager_TryRemoveAnchor, (ARAnchorManager * __this, ARAnchor * anchor, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC7D8, ARAnchorManager_TryRemoveAnchor__MethodInfo); DO_APP_FUNC(0x02C6ED20, ARAnchor *, ARAnchorManager_GetAnchor, (ARAnchorManager * __this, TrackableId trackableId, MethodInfo * method)); DO_APP_FUNC(0x003C7320, GameObject *, ARAnchorManager_GetPrefab, (ARAnchorManager * __this, MethodInfo * method)); DO_APP_FUNC(0x02C6EE30, String *, ARAnchorManager_get_gameObjectName, (ARAnchorManager * __this, MethodInfo * method)); DO_APP_FUNC(0x02C6EE70, void, ARAnchorManager_OnTrackablesChanged, (ARAnchorManager * __this, List_1_UnityEngine_XR_ARFoundation_ARAnchor_ * added, List_1_UnityEngine_XR_ARFoundation_ARAnchor_ * updated, List_1_UnityEngine_XR_ARFoundation_ARAnchor_ * removed, MethodInfo * method)); DO_APP_FUNC(0x02C6EF70, void, ARAnchorManager__ctor, (ARAnchorManager * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, List_1_UnityEngine_XR_ARFoundation_ARAnchor_ *, ARAnchorsChangedEventArgs_get_added, (ARAnchorsChangedEventArgs__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, ARAnchorsChangedEventArgs_set_added, (ARAnchorsChangedEventArgs__Boxed * __this, List_1_UnityEngine_XR_ARFoundation_ARAnchor_ * value, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, List_1_UnityEngine_XR_ARFoundation_ARAnchor_ *, ARAnchorsChangedEventArgs_get_updated, (ARAnchorsChangedEventArgs__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x005F25C0, void, ARAnchorsChangedEventArgs_set_updated, (ARAnchorsChangedEventArgs__Boxed * __this, List_1_UnityEngine_XR_ARFoundation_ARAnchor_ * value, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, List_1_UnityEngine_XR_ARFoundation_ARAnchor_ *, ARAnchorsChangedEventArgs_get_removed, (ARAnchorsChangedEventArgs__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCBE0, void, ARAnchorsChangedEventArgs_set_removed, (ARAnchorsChangedEventArgs__Boxed * __this, List_1_UnityEngine_XR_ARFoundation_ARAnchor_ * value, MethodInfo * method)); -DO_APP_FUNC(0x0096DD20, void, ARAnchorsChangedEventArgs__ctor, (ARAnchorsChangedEventArgs__Boxed * __this, List_1_UnityEngine_XR_ARFoundation_ARAnchor_ * added, List_1_UnityEngine_XR_ARFoundation_ARAnchor_ * updated, List_1_UnityEngine_XR_ARFoundation_ARAnchor_ * removed, MethodInfo * method)); -DO_APP_FUNC(0x02C6EFE0, int32_t, ARAnchorsChangedEventArgs_GetHashCode, (ARAnchorsChangedEventArgs__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02C6F080, bool, ARAnchorsChangedEventArgs_Equals, (ARAnchorsChangedEventArgs__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02C6F130, String *, ARAnchorsChangedEventArgs_ToString, (ARAnchorsChangedEventArgs__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02C6F290, bool, ARAnchorsChangedEventArgs_Equals_1, (ARAnchorsChangedEventArgs__Boxed * __this, ARAnchorsChangedEventArgs other, MethodInfo * method)); +DO_APP_FUNC(0x00471910, List_1_UnityEngine_XR_ARFoundation_ARAnchor_ *, ARAnchorsChangedEventArgs_get_added, (ARAnchorsChangedEventArgs * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, ARAnchorsChangedEventArgs_set_added, (ARAnchorsChangedEventArgs * __this, List_1_UnityEngine_XR_ARFoundation_ARAnchor_ * value, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, List_1_UnityEngine_XR_ARFoundation_ARAnchor_ *, ARAnchorsChangedEventArgs_get_updated, (ARAnchorsChangedEventArgs * __this, MethodInfo * method)); +DO_APP_FUNC(0x005F25C0, void, ARAnchorsChangedEventArgs_set_updated, (ARAnchorsChangedEventArgs * __this, List_1_UnityEngine_XR_ARFoundation_ARAnchor_ * value, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, List_1_UnityEngine_XR_ARFoundation_ARAnchor_ *, ARAnchorsChangedEventArgs_get_removed, (ARAnchorsChangedEventArgs * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCBE0, void, ARAnchorsChangedEventArgs_set_removed, (ARAnchorsChangedEventArgs * __this, List_1_UnityEngine_XR_ARFoundation_ARAnchor_ * value, MethodInfo * method)); +DO_APP_FUNC(0x0096DD20, void, ARAnchorsChangedEventArgs__ctor, (ARAnchorsChangedEventArgs * __this, List_1_UnityEngine_XR_ARFoundation_ARAnchor_ * added, List_1_UnityEngine_XR_ARFoundation_ARAnchor_ * updated, List_1_UnityEngine_XR_ARFoundation_ARAnchor_ * removed, MethodInfo * method)); +DO_APP_FUNC(0x02C6EFE0, int32_t, ARAnchorsChangedEventArgs_GetHashCode, (ARAnchorsChangedEventArgs * __this, MethodInfo * method)); +DO_APP_FUNC(0x02C6F080, bool, ARAnchorsChangedEventArgs_Equals, (ARAnchorsChangedEventArgs * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02C6F130, String *, ARAnchorsChangedEventArgs_ToString, (ARAnchorsChangedEventArgs * __this, MethodInfo * method)); +DO_APP_FUNC(0x02C6F290, bool, ARAnchorsChangedEventArgs_Equals_1, (ARAnchorsChangedEventArgs * __this, ARAnchorsChangedEventArgs other, MethodInfo * method)); DO_APP_FUNC(0x003CB6A0, float, ARPlane_get_vertexChangedThreshold, (ARPlane * __this, MethodInfo * method)); DO_APP_FUNC(0x02C6F2C0, void, ARPlane_set_vertexChangedThreshold, (ARPlane * __this, float value, MethodInfo * method)); DO_APP_FUNC(0x02C6F2E0, void, ARPlane_add_boundaryChanged, (ARPlane * __this, Action_1_UnityEngine_XR_ARFoundation_ARPlaneBoundaryChangedEventArgs_ * value, MethodInfo * method)); @@ -116480,19 +129042,22 @@ DO_APP_FUNC(0x02C70000, void, ARPlane_CheckForBoundaryChanges, (ARPlane * __this DO_APP_FUNC(0x02C70090, void, ARPlane_CopyBoundaryAndSetChangedFlag, (ARPlane * __this, MethodInfo * method)); DO_APP_FUNC(0x02C70200, void, ARPlane_Update, (ARPlane * __this, MethodInfo * method)); DO_APP_FUNC(0x02C70270, void, ARPlane__ctor, (ARPlane * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, ARPlane *, ARPlaneBoundaryChangedEventArgs_get_plane, (ARPlaneBoundaryChangedEventArgs__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, ARPlaneBoundaryChangedEventArgs_set_plane, (ARPlaneBoundaryChangedEventArgs__Boxed * __this, ARPlane * value, MethodInfo * method)); -DO_APP_FUNC(0x02C702F0, void, ARPlaneBoundaryChangedEventArgs__ctor, (ARPlaneBoundaryChangedEventArgs__Boxed * __this, ARPlane * plane, MethodInfo * method)); -DO_APP_FUNC(0x011495F0, int32_t, ARPlaneBoundaryChangedEventArgs_GetHashCode, (ARPlaneBoundaryChangedEventArgs__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02C70480, bool, ARPlaneBoundaryChangedEventArgs_Equals, (ARPlaneBoundaryChangedEventArgs__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02C70510, String *, ARPlaneBoundaryChangedEventArgs_ToString, (ARPlaneBoundaryChangedEventArgs__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02C70630, bool, ARPlaneBoundaryChangedEventArgs_Equals_1, (ARPlaneBoundaryChangedEventArgs__Boxed * __this, ARPlaneBoundaryChangedEventArgs other, MethodInfo * method)); +DO_APP_FUNC(0x00471910, ARPlane *, ARPlaneBoundaryChangedEventArgs_get_plane, (ARPlaneBoundaryChangedEventArgs * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, ARPlaneBoundaryChangedEventArgs_set_plane, (ARPlaneBoundaryChangedEventArgs * __this, ARPlane * value, MethodInfo * method)); +DO_APP_FUNC(0x02C702F0, void, ARPlaneBoundaryChangedEventArgs__ctor, (ARPlaneBoundaryChangedEventArgs * __this, ARPlane * plane, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC730, ARPlaneBoundaryChangedEventArgs__ctor__MethodInfo); +DO_APP_FUNC(0x011495F0, int32_t, ARPlaneBoundaryChangedEventArgs_GetHashCode, (ARPlaneBoundaryChangedEventArgs * __this, MethodInfo * method)); +DO_APP_FUNC(0x02C70480, bool, ARPlaneBoundaryChangedEventArgs_Equals, (ARPlaneBoundaryChangedEventArgs * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02C70510, String *, ARPlaneBoundaryChangedEventArgs_ToString, (ARPlaneBoundaryChangedEventArgs * __this, MethodInfo * method)); +DO_APP_FUNC(0x02C70630, bool, ARPlaneBoundaryChangedEventArgs_Equals_1, (ARPlaneBoundaryChangedEventArgs * __this, ARPlaneBoundaryChangedEventArgs other, MethodInfo * method)); DO_APP_FUNC(0x02C707D0, void, ARPoseDriver_OnEnable, (ARPoseDriver * __this, MethodInfo * method)); DO_APP_FUNC(0x02C70BA0, void, ARPoseDriver_OnDisable, (ARPoseDriver * __this, MethodInfo * method)); DO_APP_FUNC(0x02C70CB0, void, ARPoseDriver_Update, (ARPoseDriver * __this, MethodInfo * method)); DO_APP_FUNC(0x02C70CB0, void, ARPoseDriver_OnBeforeRender, (ARPoseDriver * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC590, ARPoseDriver_OnBeforeRender__MethodInfo); DO_APP_FUNC(0x02C70CC0, void, ARPoseDriver_PerformUpdate, (ARPoseDriver * __this, MethodInfo * method)); DO_APP_FUNC(0x02C70F40, void, ARPoseDriver_OnInputDeviceConnected, (ARPoseDriver * __this, InputDevice_1 device, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC5A0, ARPoseDriver_OnInputDeviceConnected__MethodInfo); DO_APP_FUNC(0x02C70F70, void, ARPoseDriver_CheckConnectedDevice, (ARPoseDriver * __this, InputDevice_1 device, bool displayWarning, MethodInfo * method)); DO_APP_FUNC(0x02C713E0, ARPoseDriver_NullablePose, ARPoseDriver_GetPoseData, (MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, ARPoseDriver__ctor, (ARPoseDriver * __this, MethodInfo * method)); @@ -116505,25 +129070,30 @@ DO_APP_FUNC(0x02C71820, void, ARSessionOrigin_remove_trackablesParentTransformCh DO_APP_FUNC(0x02C71930, Transform *, ARSessionOrigin_get_contentOffsetTransform, (ARSessionOrigin * __this, MethodInfo * method)); DO_APP_FUNC(0x02C71EE0, void, ARSessionOrigin_MakeContentAppearAt, (ARSessionOrigin * __this, Transform * content, Vector3 position, Quaternion rotation, MethodInfo * method)); DO_APP_FUNC(0x02C71F50, void, ARSessionOrigin_MakeContentAppearAt_1, (ARSessionOrigin * __this, Transform * content, Vector3 position, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC558, ARSessionOrigin_MakeContentAppearAt_1__MethodInfo); DO_APP_FUNC(0x02C72380, void, ARSessionOrigin_MakeContentAppearAt_2, (ARSessionOrigin * __this, Transform * content, Quaternion rotation, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC568, ARSessionOrigin_MakeContentAppearAt_2__MethodInfo); DO_APP_FUNC(0x02C727B0, void, ARSessionOrigin_Awake, (ARSessionOrigin * __this, MethodInfo * method)); DO_APP_FUNC(0x02C73810, Pose, ARSessionOrigin_GetCameraOriginPose, (ARSessionOrigin * __this, MethodInfo * method)); DO_APP_FUNC(0x02C73AE0, void, ARSessionOrigin_OnEnable, (ARSessionOrigin * __this, MethodInfo * method)); DO_APP_FUNC(0x02C73BA0, void, ARSessionOrigin_OnDisable, (ARSessionOrigin * __this, MethodInfo * method)); DO_APP_FUNC(0x02C73C60, void, ARSessionOrigin_OnBeforeRender, (ARSessionOrigin * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC458, ARSessionOrigin_OnBeforeRender__MethodInfo); DO_APP_FUNC(0x003AE000, void, ARSessionOrigin__ctor, (ARSessionOrigin * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, ARTrackable__ctor, (ARTrackable * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, ARSessionOrigin *, ARTrackablesParentTransformChangedEventArgs_get_sessionOrigin, (ARTrackablesParentTransformChangedEventArgs__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, Transform *, ARTrackablesParentTransformChangedEventArgs_get_trackablesParent, (ARTrackablesParentTransformChangedEventArgs__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02C73EC0, void, ARTrackablesParentTransformChangedEventArgs__ctor, (ARTrackablesParentTransformChangedEventArgs__Boxed * __this, ARSessionOrigin * sessionOrigin, Transform * trackablesParent, MethodInfo * method)); -DO_APP_FUNC(0x02C741E0, bool, ARTrackablesParentTransformChangedEventArgs_Equals, (ARTrackablesParentTransformChangedEventArgs__Boxed * __this, ARTrackablesParentTransformChangedEventArgs other, MethodInfo * method)); -DO_APP_FUNC(0x02C744D0, bool, ARTrackablesParentTransformChangedEventArgs_Equals_1, (ARTrackablesParentTransformChangedEventArgs__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02C74570, int32_t, ARTrackablesParentTransformChangedEventArgs_GetHashCode, (ARTrackablesParentTransformChangedEventArgs__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, ARSessionOrigin *, ARTrackablesParentTransformChangedEventArgs_get_sessionOrigin, (ARTrackablesParentTransformChangedEventArgs * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, Transform *, ARTrackablesParentTransformChangedEventArgs_get_trackablesParent, (ARTrackablesParentTransformChangedEventArgs * __this, MethodInfo * method)); +DO_APP_FUNC(0x02C73EC0, void, ARTrackablesParentTransformChangedEventArgs__ctor, (ARTrackablesParentTransformChangedEventArgs * __this, ARSessionOrigin * sessionOrigin, Transform * trackablesParent, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC428, ARTrackablesParentTransformChangedEventArgs__ctor__MethodInfo); +DO_APP_FUNC(0x02C741E0, bool, ARTrackablesParentTransformChangedEventArgs_Equals, (ARTrackablesParentTransformChangedEventArgs * __this, ARTrackablesParentTransformChangedEventArgs other, MethodInfo * method)); +DO_APP_FUNC(0x02C744D0, bool, ARTrackablesParentTransformChangedEventArgs_Equals_1, (ARTrackablesParentTransformChangedEventArgs * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02C74570, int32_t, ARTrackablesParentTransformChangedEventArgs_GetHashCode, (ARTrackablesParentTransformChangedEventArgs * __this, MethodInfo * method)); DO_APP_FUNC(0x02C745E0, int32_t, HashCodeUtil_1_Combine, (int32_t hash1, int32_t hash2, MethodInfo * method)); DO_APP_FUNC(0x02857620, int32_t, HashCodeUtil_1_ReferenceHash, (Object * obj, MethodInfo * method)); DO_APP_FUNC(0x02C745F0, int32_t, HashCodeUtil_1_Combine_1, (int32_t hash1, int32_t hash2, int32_t hash3, MethodInfo * method)); DO_APP_FUNC(0x02C74610, Pose, TransformExtensions_1_TransformPose, (Transform * transform, Pose pose, MethodInfo * method)); DO_APP_FUNC(0x02C746A0, Pose, TransformExtensions_1_InverseTransformPose, (Transform * transform, Pose pose, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC460, TransformExtensions_1_InverseTransformPose__MethodInfo); DO_APP_FUNC(0x018C0920, bool, SceneUnderstanding_OpenXR_API_OnInstanceCreate, (SceneUnderstanding_OpenXR_API * __this, uint64_t xrInstance, MethodInfo * method)); DO_APP_FUNC(0x018C0A20, void, SceneUnderstanding_OpenXR_API_OnInstanceDestroy, (SceneUnderstanding_OpenXR_API * __this, uint64_t xrInstance, MethodInfo * method)); DO_APP_FUNC(0x018C0B00, void, SceneUnderstanding_OpenXR_API_OnSessionCreate, (SceneUnderstanding_OpenXR_API * __this, uint64_t xrSession, MethodInfo * method)); @@ -116531,86 +129101,87 @@ DO_APP_FUNC(0x018C0D70, void, SceneUnderstanding_OpenXR_API_OnSystemChange, (Sce DO_APP_FUNC(0x018C0E70, void, SceneUnderstanding_OpenXR_API_OnSessionDestroy, (SceneUnderstanding_OpenXR_API * __this, uint64_t xrSession, MethodInfo * method)); DO_APP_FUNC(0x018BDAF0, bool, SceneUnderstanding_OpenXR_API_CheckResult, (SceneUnderstanding_OpenXR_API * __this, XrResult__Enum result, MethodInfo * method)); DO_APP_FUNC(0x018C0F50, bool, SceneUnderstanding_OpenXR_API_GetXrFunctionDelegates, (SceneUnderstanding_OpenXR_API * __this, uint64_t xrInstance, MethodInfo * method)); -DO_APP_FUNC(0x018C2220, int32_t, SceneUnderstanding_OpenXR_API_xrGetSystemProperties, (SceneUnderstanding_OpenXR_API * __this, XrSystemProperties properties, MethodInfo * method)); -DO_APP_FUNC(0x018C2260, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrEnumerateReferenceSpaces, (SceneUnderstanding_OpenXR_API * __this, uint32_t spaceCapacityInput, int32_t spaceCountOutput, void * spaces, MethodInfo * method)); -DO_APP_FUNC(0x018C22A0, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrCreateReferenceSpace, (SceneUnderstanding_OpenXR_API * __this, XrReferenceSpaceCreateInfo createInfo, uint64_t space, MethodInfo * method)); +DO_APP_FUNC(0x018C2220, int32_t, SceneUnderstanding_OpenXR_API_xrGetSystemProperties, (SceneUnderstanding_OpenXR_API * __this, XrSystemProperties * properties, MethodInfo * method)); +DO_APP_FUNC(0x018C2260, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrEnumerateReferenceSpaces, (SceneUnderstanding_OpenXR_API * __this, uint32_t spaceCapacityInput, int32_t * spaceCountOutput, void * spaces, MethodInfo * method)); +DO_APP_FUNC(0x018C22A0, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrCreateReferenceSpace, (SceneUnderstanding_OpenXR_API * __this, XrReferenceSpaceCreateInfo * createInfo, uint64_t * space, MethodInfo * method)); DO_APP_FUNC(0x018C22E0, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrDestroySpace, (SceneUnderstanding_OpenXR_API * __this, uint64_t space, MethodInfo * method)); -DO_APP_FUNC(0x018C2310, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrEnumerateSceneComputeFeaturesMSFT, (SceneUnderstanding_OpenXR_API * __this, uint64_t systemId, uint32_t featureCapacityInput, uint32_t featureCountOutput, void * features, MethodInfo * method)); -DO_APP_FUNC(0x018BFF60, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrCreateSceneObserverMSFT, (SceneUnderstanding_OpenXR_API * __this, XrSceneObserverCreateInfoMSFT createInfo, uint64_t sceneObserver, MethodInfo * method)); +DO_APP_FUNC(0x018C2310, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrEnumerateSceneComputeFeaturesMSFT, (SceneUnderstanding_OpenXR_API * __this, uint64_t systemId, uint32_t featureCapacityInput, uint32_t * featureCountOutput, void * features, MethodInfo * method)); +DO_APP_FUNC(0x018BFF60, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrCreateSceneObserverMSFT, (SceneUnderstanding_OpenXR_API * __this, XrSceneObserverCreateInfoMSFT * createInfo, uint64_t * sceneObserver, MethodInfo * method)); DO_APP_FUNC(0x018BFFA0, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrDestroySceneObserverMSFT, (SceneUnderstanding_OpenXR_API * __this, uint64_t sceneObserver, MethodInfo * method)); -DO_APP_FUNC(0x018C2360, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrCreateSceneMSFT, (SceneUnderstanding_OpenXR_API * __this, uint64_t sceneObserver, XrSceneCreateInfoMSFT createInfo, uint64_t scene, MethodInfo * method)); +DO_APP_FUNC(0x018C2360, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrCreateSceneMSFT, (SceneUnderstanding_OpenXR_API * __this, uint64_t sceneObserver, XrSceneCreateInfoMSFT * createInfo, uint64_t * scene, MethodInfo * method)); DO_APP_FUNC(0x018C0020, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrDestroySceneMSFT, (SceneUnderstanding_OpenXR_API * __this, uint64_t scene, MethodInfo * method)); -DO_APP_FUNC(0x018C2390, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrComputeNewSceneMSFT, (SceneUnderstanding_OpenXR_API * __this, uint64_t sceneObserver, XrNewSceneComputeInfoMSFT computeInfo, MethodInfo * method)); -DO_APP_FUNC(0x018C23C0, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrGetSceneComputeStateMSFT, (SceneUnderstanding_OpenXR_API * __this, uint64_t sceneObserver, XrSceneComputeStateMSFT__Enum state, MethodInfo * method)); -DO_APP_FUNC(0x018C23F0, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrGetSceneComponentsMSFT, (SceneUnderstanding_OpenXR_API * __this, uint64_t scene, XrSceneComponentsGetInfoMSFT getInfo, XrSceneComponentsMSFT components, MethodInfo * method)); -DO_APP_FUNC(0x018C2420, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrLocateSceneComponentsMSFT, (SceneUnderstanding_OpenXR_API * __this, uint64_t scene, XrSceneComponentsLocateInfoMSFT locateInfo, XrSceneComponentLocationsMSFT locations, MethodInfo * method)); -DO_APP_FUNC(0x018C2450, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrGetSceneMeshBuffersMSFT, (SceneUnderstanding_OpenXR_API * __this, uint64_t scene, XrSceneMeshBuffersGetInfoMSFT getInfo, XrSceneMeshBuffersMSFT buffers, MethodInfo * method)); +DO_APP_FUNC(0x018C2390, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrComputeNewSceneMSFT, (SceneUnderstanding_OpenXR_API * __this, uint64_t sceneObserver, XrNewSceneComputeInfoMSFT * computeInfo, MethodInfo * method)); +DO_APP_FUNC(0x018C23C0, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrGetSceneComputeStateMSFT, (SceneUnderstanding_OpenXR_API * __this, uint64_t sceneObserver, XrSceneComputeStateMSFT__Enum * state, MethodInfo * method)); +DO_APP_FUNC(0x018C23F0, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrGetSceneComponentsMSFT, (SceneUnderstanding_OpenXR_API * __this, uint64_t scene, XrSceneComponentsGetInfoMSFT * getInfo, XrSceneComponentsMSFT * components, MethodInfo * method)); +DO_APP_FUNC(0x018C2420, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrLocateSceneComponentsMSFT, (SceneUnderstanding_OpenXR_API * __this, uint64_t scene, XrSceneComponentsLocateInfoMSFT * locateInfo, XrSceneComponentLocationsMSFT * locations, MethodInfo * method)); +DO_APP_FUNC(0x018C2450, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrGetSceneMeshBuffersMSFT, (SceneUnderstanding_OpenXR_API * __this, uint64_t scene, XrSceneMeshBuffersGetInfoMSFT * getInfo, XrSceneMeshBuffersMSFT * buffers, MethodInfo * method)); DO_APP_FUNC(0x003BA2A0, void, SceneUnderstanding_OpenXR_API__ctor, (SceneUnderstanding_OpenXR_API * __this, MethodInfo * method)); DO_APP_FUNC(0x003EF890, void, SceneUnderstanding_OpenXR_API_XrGetInstanceProcAddrDelegate__ctor, (SceneUnderstanding_OpenXR_API_XrGetInstanceProcAddrDelegate * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EF9C0, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrGetInstanceProcAddrDelegate_Invoke, (SceneUnderstanding_OpenXR_API_XrGetInstanceProcAddrDelegate * __this, uint64_t instance, String * name, void * function, MethodInfo * method)); -DO_APP_FUNC(0x018C2480, IAsyncResult *, SceneUnderstanding_OpenXR_API_XrGetInstanceProcAddrDelegate_BeginInvoke, (SceneUnderstanding_OpenXR_API_XrGetInstanceProcAddrDelegate * __this, uint64_t instance, String * name, void * function, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003F75B0, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrGetInstanceProcAddrDelegate_EndInvoke, (SceneUnderstanding_OpenXR_API_XrGetInstanceProcAddrDelegate * __this, void * function, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EF9C0, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrGetInstanceProcAddrDelegate_Invoke, (SceneUnderstanding_OpenXR_API_XrGetInstanceProcAddrDelegate * __this, uint64_t instance, String * name, void * * function, MethodInfo * method)); +DO_APP_FUNC(0x018C2480, IAsyncResult *, SceneUnderstanding_OpenXR_API_XrGetInstanceProcAddrDelegate_BeginInvoke, (SceneUnderstanding_OpenXR_API_XrGetInstanceProcAddrDelegate * __this, uint64_t instance, String * name, void * * function, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003F75B0, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrGetInstanceProcAddrDelegate_EndInvoke, (SceneUnderstanding_OpenXR_API_XrGetInstanceProcAddrDelegate * __this, void * * function, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003FABF0, void, SceneUnderstanding_OpenXR_API_xrGetSystemPropertiesDelegate__ctor, (SceneUnderstanding_OpenXR_API_xrGetSystemPropertiesDelegate * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EF9C0, int32_t, SceneUnderstanding_OpenXR_API_xrGetSystemPropertiesDelegate_Invoke, (SceneUnderstanding_OpenXR_API_xrGetSystemPropertiesDelegate * __this, uint64_t instance, uint64_t systemId, XrSystemProperties properties, MethodInfo * method)); -DO_APP_FUNC(0x018C2530, IAsyncResult *, SceneUnderstanding_OpenXR_API_xrGetSystemPropertiesDelegate_BeginInvoke, (SceneUnderstanding_OpenXR_API_xrGetSystemPropertiesDelegate * __this, uint64_t instance, uint64_t systemId, XrSystemProperties properties, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003F75B0, int32_t, SceneUnderstanding_OpenXR_API_xrGetSystemPropertiesDelegate_EndInvoke, (SceneUnderstanding_OpenXR_API_xrGetSystemPropertiesDelegate * __this, XrSystemProperties properties, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EF9C0, int32_t, SceneUnderstanding_OpenXR_API_xrGetSystemPropertiesDelegate_Invoke, (SceneUnderstanding_OpenXR_API_xrGetSystemPropertiesDelegate * __this, uint64_t instance, uint64_t systemId, XrSystemProperties * properties, MethodInfo * method)); +DO_APP_FUNC(0x018C2530, IAsyncResult *, SceneUnderstanding_OpenXR_API_xrGetSystemPropertiesDelegate_BeginInvoke, (SceneUnderstanding_OpenXR_API_xrGetSystemPropertiesDelegate * __this, uint64_t instance, uint64_t systemId, XrSystemProperties * properties, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003F75B0, int32_t, SceneUnderstanding_OpenXR_API_xrGetSystemPropertiesDelegate_EndInvoke, (SceneUnderstanding_OpenXR_API_xrGetSystemPropertiesDelegate * __this, XrSystemProperties * properties, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x018C25F0, void, SceneUnderstanding_OpenXR_API_XrEnumerateReferenceSpacesDelegate__ctor, (SceneUnderstanding_OpenXR_API_XrEnumerateReferenceSpacesDelegate * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003F09C0, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrEnumerateReferenceSpacesDelegate_Invoke, (SceneUnderstanding_OpenXR_API_XrEnumerateReferenceSpacesDelegate * __this, uint64_t session, uint32_t spaceCapacityInput, int32_t spaceCountOutput, void * spaces, MethodInfo * method)); -DO_APP_FUNC(0x018C2720, IAsyncResult *, SceneUnderstanding_OpenXR_API_XrEnumerateReferenceSpacesDelegate_BeginInvoke, (SceneUnderstanding_OpenXR_API_XrEnumerateReferenceSpacesDelegate * __this, uint64_t session, uint32_t spaceCapacityInput, int32_t spaceCountOutput, void * spaces, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003F75B0, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrEnumerateReferenceSpacesDelegate_EndInvoke, (SceneUnderstanding_OpenXR_API_XrEnumerateReferenceSpacesDelegate * __this, int32_t spaceCountOutput, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003F09C0, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrEnumerateReferenceSpacesDelegate_Invoke, (SceneUnderstanding_OpenXR_API_XrEnumerateReferenceSpacesDelegate * __this, uint64_t session, uint32_t spaceCapacityInput, int32_t * spaceCountOutput, void * spaces, MethodInfo * method)); +DO_APP_FUNC(0x018C2720, IAsyncResult *, SceneUnderstanding_OpenXR_API_XrEnumerateReferenceSpacesDelegate_BeginInvoke, (SceneUnderstanding_OpenXR_API_XrEnumerateReferenceSpacesDelegate * __this, uint64_t session, uint32_t spaceCapacityInput, int32_t * spaceCountOutput, void * spaces, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003F75B0, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrEnumerateReferenceSpacesDelegate_EndInvoke, (SceneUnderstanding_OpenXR_API_XrEnumerateReferenceSpacesDelegate * __this, int32_t * spaceCountOutput, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003EF890, void, SceneUnderstanding_OpenXR_API_XrCreateReferenceSpaceDelegate__ctor, (SceneUnderstanding_OpenXR_API_XrCreateReferenceSpaceDelegate * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EF9C0, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrCreateReferenceSpaceDelegate_Invoke, (SceneUnderstanding_OpenXR_API_XrCreateReferenceSpaceDelegate * __this, uint64_t session, XrReferenceSpaceCreateInfo createInfo, uint64_t space, MethodInfo * method)); -DO_APP_FUNC(0x018C2820, IAsyncResult *, SceneUnderstanding_OpenXR_API_XrCreateReferenceSpaceDelegate_BeginInvoke, (SceneUnderstanding_OpenXR_API_XrCreateReferenceSpaceDelegate * __this, uint64_t session, XrReferenceSpaceCreateInfo createInfo, uint64_t space, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x018C0430, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrCreateReferenceSpaceDelegate_EndInvoke, (SceneUnderstanding_OpenXR_API_XrCreateReferenceSpaceDelegate * __this, XrReferenceSpaceCreateInfo createInfo, uint64_t space, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EF9C0, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrCreateReferenceSpaceDelegate_Invoke, (SceneUnderstanding_OpenXR_API_XrCreateReferenceSpaceDelegate * __this, uint64_t session, XrReferenceSpaceCreateInfo * createInfo, uint64_t * space, MethodInfo * method)); +DO_APP_FUNC(0x018C2820, IAsyncResult *, SceneUnderstanding_OpenXR_API_XrCreateReferenceSpaceDelegate_BeginInvoke, (SceneUnderstanding_OpenXR_API_XrCreateReferenceSpaceDelegate * __this, uint64_t session, XrReferenceSpaceCreateInfo * createInfo, uint64_t * space, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x018C0430, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrCreateReferenceSpaceDelegate_EndInvoke, (SceneUnderstanding_OpenXR_API_XrCreateReferenceSpaceDelegate * __this, XrReferenceSpaceCreateInfo * createInfo, uint64_t * space, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003F41A0, void, SceneUnderstanding_OpenXR_API_XrDestroySpaceDelegate__ctor, (SceneUnderstanding_OpenXR_API_XrDestroySpaceDelegate * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003F42D0, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrDestroySpaceDelegate_Invoke, (SceneUnderstanding_OpenXR_API_XrDestroySpaceDelegate * __this, uint64_t space, MethodInfo * method)); DO_APP_FUNC(0x018C28E0, IAsyncResult *, SceneUnderstanding_OpenXR_API_XrDestroySpaceDelegate_BeginInvoke, (SceneUnderstanding_OpenXR_API_XrDestroySpaceDelegate * __this, uint64_t space, AsyncCallback * callback, Object * object, MethodInfo * method)); DO_APP_FUNC(0x003ED3D0, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrDestroySpaceDelegate_EndInvoke, (SceneUnderstanding_OpenXR_API_XrDestroySpaceDelegate * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x018C2960, void, SceneUnderstanding_OpenXR_API_XrEnumerateSceneComputeFeaturesMSFTDelegate__ctor, (SceneUnderstanding_OpenXR_API_XrEnumerateSceneComputeFeaturesMSFTDelegate * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003F0780, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrEnumerateSceneComputeFeaturesMSFTDelegate_Invoke, (SceneUnderstanding_OpenXR_API_XrEnumerateSceneComputeFeaturesMSFTDelegate * __this, uint64_t instance, uint64_t systemId, uint32_t featureCapacityInput, uint32_t featureCountOutput, void * features, MethodInfo * method)); -DO_APP_FUNC(0x018C2A90, IAsyncResult *, SceneUnderstanding_OpenXR_API_XrEnumerateSceneComputeFeaturesMSFTDelegate_BeginInvoke, (SceneUnderstanding_OpenXR_API_XrEnumerateSceneComputeFeaturesMSFTDelegate * __this, uint64_t instance, uint64_t systemId, uint32_t featureCapacityInput, uint32_t featureCountOutput, void * features, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003F75B0, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrEnumerateSceneComputeFeaturesMSFTDelegate_EndInvoke, (SceneUnderstanding_OpenXR_API_XrEnumerateSceneComputeFeaturesMSFTDelegate * __this, uint32_t featureCountOutput, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003F0780, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrEnumerateSceneComputeFeaturesMSFTDelegate_Invoke, (SceneUnderstanding_OpenXR_API_XrEnumerateSceneComputeFeaturesMSFTDelegate * __this, uint64_t instance, uint64_t systemId, uint32_t featureCapacityInput, uint32_t * featureCountOutput, void * features, MethodInfo * method)); +DO_APP_FUNC(0x018C2A90, IAsyncResult *, SceneUnderstanding_OpenXR_API_XrEnumerateSceneComputeFeaturesMSFTDelegate_BeginInvoke, (SceneUnderstanding_OpenXR_API_XrEnumerateSceneComputeFeaturesMSFTDelegate * __this, uint64_t instance, uint64_t systemId, uint32_t featureCapacityInput, uint32_t * featureCountOutput, void * features, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003F75B0, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrEnumerateSceneComputeFeaturesMSFTDelegate_EndInvoke, (SceneUnderstanding_OpenXR_API_XrEnumerateSceneComputeFeaturesMSFTDelegate * __this, uint32_t * featureCountOutput, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003EF890, void, SceneUnderstanding_OpenXR_API_XrCreateSceneObserverMSFTDelegate__ctor, (SceneUnderstanding_OpenXR_API_XrCreateSceneObserverMSFTDelegate * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EF9C0, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrCreateSceneObserverMSFTDelegate_Invoke, (SceneUnderstanding_OpenXR_API_XrCreateSceneObserverMSFTDelegate * __this, uint64_t session, XrSceneObserverCreateInfoMSFT createInfo, uint64_t sceneObserver, MethodInfo * method)); -DO_APP_FUNC(0x018C2B90, IAsyncResult *, SceneUnderstanding_OpenXR_API_XrCreateSceneObserverMSFTDelegate_BeginInvoke, (SceneUnderstanding_OpenXR_API_XrCreateSceneObserverMSFTDelegate * __this, uint64_t session, XrSceneObserverCreateInfoMSFT createInfo, uint64_t sceneObserver, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x018C0430, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrCreateSceneObserverMSFTDelegate_EndInvoke, (SceneUnderstanding_OpenXR_API_XrCreateSceneObserverMSFTDelegate * __this, XrSceneObserverCreateInfoMSFT createInfo, uint64_t sceneObserver, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EF9C0, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrCreateSceneObserverMSFTDelegate_Invoke, (SceneUnderstanding_OpenXR_API_XrCreateSceneObserverMSFTDelegate * __this, uint64_t session, XrSceneObserverCreateInfoMSFT * createInfo, uint64_t * sceneObserver, MethodInfo * method)); +DO_APP_FUNC(0x018C2B90, IAsyncResult *, SceneUnderstanding_OpenXR_API_XrCreateSceneObserverMSFTDelegate_BeginInvoke, (SceneUnderstanding_OpenXR_API_XrCreateSceneObserverMSFTDelegate * __this, uint64_t session, XrSceneObserverCreateInfoMSFT * createInfo, uint64_t * sceneObserver, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x018C0430, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrCreateSceneObserverMSFTDelegate_EndInvoke, (SceneUnderstanding_OpenXR_API_XrCreateSceneObserverMSFTDelegate * __this, XrSceneObserverCreateInfoMSFT * createInfo, uint64_t * sceneObserver, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003F41A0, void, SceneUnderstanding_OpenXR_API_XrDestroySceneObserverMSFTDelegate__ctor, (SceneUnderstanding_OpenXR_API_XrDestroySceneObserverMSFTDelegate * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003F42D0, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrDestroySceneObserverMSFTDelegate_Invoke, (SceneUnderstanding_OpenXR_API_XrDestroySceneObserverMSFTDelegate * __this, uint64_t sceneObserver, MethodInfo * method)); DO_APP_FUNC(0x018C2C50, IAsyncResult *, SceneUnderstanding_OpenXR_API_XrDestroySceneObserverMSFTDelegate_BeginInvoke, (SceneUnderstanding_OpenXR_API_XrDestroySceneObserverMSFTDelegate * __this, uint64_t sceneObserver, AsyncCallback * callback, Object * object, MethodInfo * method)); DO_APP_FUNC(0x003ED3D0, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrDestroySceneObserverMSFTDelegate_EndInvoke, (SceneUnderstanding_OpenXR_API_XrDestroySceneObserverMSFTDelegate * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003EF890, void, SceneUnderstanding_OpenXR_API_XrCreateSceneMSFTDelegate__ctor, (SceneUnderstanding_OpenXR_API_XrCreateSceneMSFTDelegate * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EF9C0, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrCreateSceneMSFTDelegate_Invoke, (SceneUnderstanding_OpenXR_API_XrCreateSceneMSFTDelegate * __this, uint64_t sceneObserver, XrSceneCreateInfoMSFT createInfo, uint64_t scene, MethodInfo * method)); -DO_APP_FUNC(0x018C2CD0, IAsyncResult *, SceneUnderstanding_OpenXR_API_XrCreateSceneMSFTDelegate_BeginInvoke, (SceneUnderstanding_OpenXR_API_XrCreateSceneMSFTDelegate * __this, uint64_t sceneObserver, XrSceneCreateInfoMSFT createInfo, uint64_t scene, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x018C0430, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrCreateSceneMSFTDelegate_EndInvoke, (SceneUnderstanding_OpenXR_API_XrCreateSceneMSFTDelegate * __this, XrSceneCreateInfoMSFT createInfo, uint64_t scene, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EF9C0, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrCreateSceneMSFTDelegate_Invoke, (SceneUnderstanding_OpenXR_API_XrCreateSceneMSFTDelegate * __this, uint64_t sceneObserver, XrSceneCreateInfoMSFT * createInfo, uint64_t * scene, MethodInfo * method)); +DO_APP_FUNC(0x018C2CD0, IAsyncResult *, SceneUnderstanding_OpenXR_API_XrCreateSceneMSFTDelegate_BeginInvoke, (SceneUnderstanding_OpenXR_API_XrCreateSceneMSFTDelegate * __this, uint64_t sceneObserver, XrSceneCreateInfoMSFT * createInfo, uint64_t * scene, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x018C0430, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrCreateSceneMSFTDelegate_EndInvoke, (SceneUnderstanding_OpenXR_API_XrCreateSceneMSFTDelegate * __this, XrSceneCreateInfoMSFT * createInfo, uint64_t * scene, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003F41A0, void, SceneUnderstanding_OpenXR_API_XrDestroySceneMSFTDelegate__ctor, (SceneUnderstanding_OpenXR_API_XrDestroySceneMSFTDelegate * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003F42D0, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrDestroySceneMSFTDelegate_Invoke, (SceneUnderstanding_OpenXR_API_XrDestroySceneMSFTDelegate * __this, uint64_t scene, MethodInfo * method)); DO_APP_FUNC(0x018C2D90, IAsyncResult *, SceneUnderstanding_OpenXR_API_XrDestroySceneMSFTDelegate_BeginInvoke, (SceneUnderstanding_OpenXR_API_XrDestroySceneMSFTDelegate * __this, uint64_t scene, AsyncCallback * callback, Object * object, MethodInfo * method)); DO_APP_FUNC(0x003ED3D0, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrDestroySceneMSFTDelegate_EndInvoke, (SceneUnderstanding_OpenXR_API_XrDestroySceneMSFTDelegate * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003ED200, void, SceneUnderstanding_OpenXR_API_XrComputeNewSceneMSFTDelegate__ctor, (SceneUnderstanding_OpenXR_API_XrComputeNewSceneMSFTDelegate * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003ED330, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrComputeNewSceneMSFTDelegate_Invoke, (SceneUnderstanding_OpenXR_API_XrComputeNewSceneMSFTDelegate * __this, uint64_t sceneObserver, XrNewSceneComputeInfoMSFT computeInfo, MethodInfo * method)); -DO_APP_FUNC(0x018C2E10, IAsyncResult *, SceneUnderstanding_OpenXR_API_XrComputeNewSceneMSFTDelegate_BeginInvoke, (SceneUnderstanding_OpenXR_API_XrComputeNewSceneMSFTDelegate * __this, uint64_t sceneObserver, XrNewSceneComputeInfoMSFT computeInfo, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003F75B0, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrComputeNewSceneMSFTDelegate_EndInvoke, (SceneUnderstanding_OpenXR_API_XrComputeNewSceneMSFTDelegate * __this, XrNewSceneComputeInfoMSFT computeInfo, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003ED330, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrComputeNewSceneMSFTDelegate_Invoke, (SceneUnderstanding_OpenXR_API_XrComputeNewSceneMSFTDelegate * __this, uint64_t sceneObserver, XrNewSceneComputeInfoMSFT * computeInfo, MethodInfo * method)); +DO_APP_FUNC(0x018C2E10, IAsyncResult *, SceneUnderstanding_OpenXR_API_XrComputeNewSceneMSFTDelegate_BeginInvoke, (SceneUnderstanding_OpenXR_API_XrComputeNewSceneMSFTDelegate * __this, uint64_t sceneObserver, XrNewSceneComputeInfoMSFT * computeInfo, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003F75B0, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrComputeNewSceneMSFTDelegate_EndInvoke, (SceneUnderstanding_OpenXR_API_XrComputeNewSceneMSFTDelegate * __this, XrNewSceneComputeInfoMSFT * computeInfo, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003ED200, void, SceneUnderstanding_OpenXR_API_XrGetSceneComputeStateMSFTDelegate__ctor, (SceneUnderstanding_OpenXR_API_XrGetSceneComputeStateMSFTDelegate * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003ED330, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrGetSceneComputeStateMSFTDelegate_Invoke, (SceneUnderstanding_OpenXR_API_XrGetSceneComputeStateMSFTDelegate * __this, uint64_t sceneObserver, XrSceneComputeStateMSFT__Enum state, MethodInfo * method)); -DO_APP_FUNC(0x018C2EC0, IAsyncResult *, SceneUnderstanding_OpenXR_API_XrGetSceneComputeStateMSFTDelegate_BeginInvoke, (SceneUnderstanding_OpenXR_API_XrGetSceneComputeStateMSFTDelegate * __this, uint64_t sceneObserver, XrSceneComputeStateMSFT__Enum state, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003F75B0, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrGetSceneComputeStateMSFTDelegate_EndInvoke, (SceneUnderstanding_OpenXR_API_XrGetSceneComputeStateMSFTDelegate * __this, XrSceneComputeStateMSFT__Enum state, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003ED330, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrGetSceneComputeStateMSFTDelegate_Invoke, (SceneUnderstanding_OpenXR_API_XrGetSceneComputeStateMSFTDelegate * __this, uint64_t sceneObserver, XrSceneComputeStateMSFT__Enum * state, MethodInfo * method)); +DO_APP_FUNC(0x018C2EC0, IAsyncResult *, SceneUnderstanding_OpenXR_API_XrGetSceneComputeStateMSFTDelegate_BeginInvoke, (SceneUnderstanding_OpenXR_API_XrGetSceneComputeStateMSFTDelegate * __this, uint64_t sceneObserver, XrSceneComputeStateMSFT__Enum * state, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003F75B0, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrGetSceneComputeStateMSFTDelegate_EndInvoke, (SceneUnderstanding_OpenXR_API_XrGetSceneComputeStateMSFTDelegate * __this, XrSceneComputeStateMSFT__Enum * state, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003EF890, void, SceneUnderstanding_OpenXR_API_XrGetSceneComponentsMSFTDelegate__ctor, (SceneUnderstanding_OpenXR_API_XrGetSceneComponentsMSFTDelegate * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EF9C0, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrGetSceneComponentsMSFTDelegate_Invoke, (SceneUnderstanding_OpenXR_API_XrGetSceneComponentsMSFTDelegate * __this, uint64_t scene, XrSceneComponentsGetInfoMSFT getInfo, XrSceneComponentsMSFT components, MethodInfo * method)); -DO_APP_FUNC(0x018C2F70, IAsyncResult *, SceneUnderstanding_OpenXR_API_XrGetSceneComponentsMSFTDelegate_BeginInvoke, (SceneUnderstanding_OpenXR_API_XrGetSceneComponentsMSFTDelegate * __this, uint64_t scene, XrSceneComponentsGetInfoMSFT getInfo, XrSceneComponentsMSFT components, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x018C0430, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrGetSceneComponentsMSFTDelegate_EndInvoke, (SceneUnderstanding_OpenXR_API_XrGetSceneComponentsMSFTDelegate * __this, XrSceneComponentsGetInfoMSFT getInfo, XrSceneComponentsMSFT components, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EF9C0, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrGetSceneComponentsMSFTDelegate_Invoke, (SceneUnderstanding_OpenXR_API_XrGetSceneComponentsMSFTDelegate * __this, uint64_t scene, XrSceneComponentsGetInfoMSFT * getInfo, XrSceneComponentsMSFT * components, MethodInfo * method)); +DO_APP_FUNC(0x018C2F70, IAsyncResult *, SceneUnderstanding_OpenXR_API_XrGetSceneComponentsMSFTDelegate_BeginInvoke, (SceneUnderstanding_OpenXR_API_XrGetSceneComponentsMSFTDelegate * __this, uint64_t scene, XrSceneComponentsGetInfoMSFT * getInfo, XrSceneComponentsMSFT * components, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x018C0430, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrGetSceneComponentsMSFTDelegate_EndInvoke, (SceneUnderstanding_OpenXR_API_XrGetSceneComponentsMSFTDelegate * __this, XrSceneComponentsGetInfoMSFT * getInfo, XrSceneComponentsMSFT * components, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003EF890, void, SceneUnderstanding_OpenXR_API_XrLocateSceneComponentsMSFTDelegate__ctor, (SceneUnderstanding_OpenXR_API_XrLocateSceneComponentsMSFTDelegate * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EF9C0, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrLocateSceneComponentsMSFTDelegate_Invoke, (SceneUnderstanding_OpenXR_API_XrLocateSceneComponentsMSFTDelegate * __this, uint64_t scene, XrSceneComponentsLocateInfoMSFT locateInfo, XrSceneComponentLocationsMSFT locations, MethodInfo * method)); -DO_APP_FUNC(0x018C3040, IAsyncResult *, SceneUnderstanding_OpenXR_API_XrLocateSceneComponentsMSFTDelegate_BeginInvoke, (SceneUnderstanding_OpenXR_API_XrLocateSceneComponentsMSFTDelegate * __this, uint64_t scene, XrSceneComponentsLocateInfoMSFT locateInfo, XrSceneComponentLocationsMSFT locations, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x018C0430, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrLocateSceneComponentsMSFTDelegate_EndInvoke, (SceneUnderstanding_OpenXR_API_XrLocateSceneComponentsMSFTDelegate * __this, XrSceneComponentsLocateInfoMSFT locateInfo, XrSceneComponentLocationsMSFT locations, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EF9C0, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrLocateSceneComponentsMSFTDelegate_Invoke, (SceneUnderstanding_OpenXR_API_XrLocateSceneComponentsMSFTDelegate * __this, uint64_t scene, XrSceneComponentsLocateInfoMSFT * locateInfo, XrSceneComponentLocationsMSFT * locations, MethodInfo * method)); +DO_APP_FUNC(0x018C3040, IAsyncResult *, SceneUnderstanding_OpenXR_API_XrLocateSceneComponentsMSFTDelegate_BeginInvoke, (SceneUnderstanding_OpenXR_API_XrLocateSceneComponentsMSFTDelegate * __this, uint64_t scene, XrSceneComponentsLocateInfoMSFT * locateInfo, XrSceneComponentLocationsMSFT * locations, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x018C0430, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrLocateSceneComponentsMSFTDelegate_EndInvoke, (SceneUnderstanding_OpenXR_API_XrLocateSceneComponentsMSFTDelegate * __this, XrSceneComponentsLocateInfoMSFT * locateInfo, XrSceneComponentLocationsMSFT * locations, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003EF890, void, SceneUnderstanding_OpenXR_API_XrGetSceneMeshBuffersMSFTDelegate__ctor, (SceneUnderstanding_OpenXR_API_XrGetSceneMeshBuffersMSFTDelegate * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EF9C0, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrGetSceneMeshBuffersMSFTDelegate_Invoke, (SceneUnderstanding_OpenXR_API_XrGetSceneMeshBuffersMSFTDelegate * __this, uint64_t scene, XrSceneMeshBuffersGetInfoMSFT getInfo, XrSceneMeshBuffersMSFT buffers, MethodInfo * method)); -DO_APP_FUNC(0x018C3110, IAsyncResult *, SceneUnderstanding_OpenXR_API_XrGetSceneMeshBuffersMSFTDelegate_BeginInvoke, (SceneUnderstanding_OpenXR_API_XrGetSceneMeshBuffersMSFTDelegate * __this, uint64_t scene, XrSceneMeshBuffersGetInfoMSFT getInfo, XrSceneMeshBuffersMSFT buffers, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x018C0430, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrGetSceneMeshBuffersMSFTDelegate_EndInvoke, (SceneUnderstanding_OpenXR_API_XrGetSceneMeshBuffersMSFTDelegate * __this, XrSceneMeshBuffersGetInfoMSFT getInfo, XrSceneMeshBuffersMSFT buffers, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EF9C0, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrGetSceneMeshBuffersMSFTDelegate_Invoke, (SceneUnderstanding_OpenXR_API_XrGetSceneMeshBuffersMSFTDelegate * __this, uint64_t scene, XrSceneMeshBuffersGetInfoMSFT * getInfo, XrSceneMeshBuffersMSFT * buffers, MethodInfo * method)); +DO_APP_FUNC(0x018C3110, IAsyncResult *, SceneUnderstanding_OpenXR_API_XrGetSceneMeshBuffersMSFTDelegate_BeginInvoke, (SceneUnderstanding_OpenXR_API_XrGetSceneMeshBuffersMSFTDelegate * __this, uint64_t scene, XrSceneMeshBuffersGetInfoMSFT * getInfo, XrSceneMeshBuffersMSFT * buffers, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x018C0430, XrResult__Enum, SceneUnderstanding_OpenXR_API_XrGetSceneMeshBuffersMSFTDelegate_EndInvoke, (SceneUnderstanding_OpenXR_API_XrGetSceneMeshBuffersMSFTDelegate * __this, XrSceneMeshBuffersGetInfoMSFT * getInfo, XrSceneMeshBuffersMSFT * buffers, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x01E43D20, void, P2T_Triangulate, (Polygon_1 * p, MethodInfo * method)); DO_APP_FUNC(0x01E43E30, TriangulationContext *, P2T_CreateContext, (TriangulationAlgorithm__Enum algorithm, MethodInfo * method)); DO_APP_FUNC(0x01E43E90, void, P2T_Triangulate_1, (TriangulationAlgorithm__Enum algorithm, Triangulatable * t, MethodInfo * method)); DO_APP_FUNC(0x01E43F80, void, P2T_Triangulate_2, (TriangulationContext * tcx, MethodInfo * method)); DO_APP_FUNC(0x01E44010, void, Polygon_1__ctor, (Polygon_1 * __this, IList_1_Pathfinding_Poly2Tri_PolygonPoint_ * points, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDF150, Polygon_1__ctor__MethodInfo); DO_APP_FUNC(0x0072BFF0, TriangulationMode__Enum, Polygon_1_get_TriangulationMode, (Polygon_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x01E44460, void, Polygon_1_AddHole, (Polygon_1 * __this, Polygon_1 * poly, MethodInfo * method)); DO_APP_FUNC(0x01E445B0, void, Polygon_1_AddPoints, (Polygon_1 * __this, IEnumerable_1_Pathfinding_Poly2Tri_PolygonPoint_ * list, MethodInfo * method)); @@ -116629,10 +129200,13 @@ DO_APP_FUNC(0x01E45090, void, DelaunayTriangle__ctor, (DelaunayTriangle * __this DO_APP_FUNC(0x012594C0, bool, DelaunayTriangle_get_IsInterior, (DelaunayTriangle * __this, MethodInfo * method)); DO_APP_FUNC(0x01E451E0, void, DelaunayTriangle_set_IsInterior, (DelaunayTriangle * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x01E451F0, int32_t, DelaunayTriangle_IndexOf, (DelaunayTriangle * __this, TriangulationPoint * p, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDF018, DelaunayTriangle_IndexOf__MethodInfo); DO_APP_FUNC(0x01E452A0, int32_t, DelaunayTriangle_IndexCCWFrom, (DelaunayTriangle * __this, TriangulationPoint * p, MethodInfo * method)); DO_APP_FUNC(0x01E452D0, bool, DelaunayTriangle_Contains, (DelaunayTriangle * __this, TriangulationPoint * p, MethodInfo * method)); DO_APP_FUNC(0x01E45320, void, DelaunayTriangle_MarkNeighbor, (DelaunayTriangle * __this, TriangulationPoint * p1, TriangulationPoint * p2, DelaunayTriangle * t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDEFD0, DelaunayTriangle_MarkNeighbor__MethodInfo); DO_APP_FUNC(0x01E45400, void, DelaunayTriangle_MarkNeighbor_1, (DelaunayTriangle * __this, DelaunayTriangle * t, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDF090, DelaunayTriangle_MarkNeighbor_1__MethodInfo); DO_APP_FUNC(0x01E45700, TriangulationPoint *, DelaunayTriangle_OppositePoint, (DelaunayTriangle * __this, DelaunayTriangle * t, TriangulationPoint * p, MethodInfo * method)); DO_APP_FUNC(0x01E45740, DelaunayTriangle *, DelaunayTriangle_NeighborCWFrom, (DelaunayTriangle * __this, TriangulationPoint * point, MethodInfo * method)); DO_APP_FUNC(0x01E457D0, DelaunayTriangle *, DelaunayTriangle_NeighborCCWFrom, (DelaunayTriangle * __this, TriangulationPoint * point, MethodInfo * method)); @@ -116661,6 +129235,7 @@ DO_APP_FUNC(0x003BB3E0, AdvancingFrontNode *, AdvancingFront_FindSearchNode, (Ad DO_APP_FUNC(0x01E46470, AdvancingFrontNode *, AdvancingFront_LocateNode, (AdvancingFront * __this, TriangulationPoint * point, MethodInfo * method)); DO_APP_FUNC(0x01E46520, AdvancingFrontNode *, AdvancingFront_LocateNode_1, (AdvancingFront * __this, double x, MethodInfo * method)); DO_APP_FUNC(0x01E465B0, AdvancingFrontNode *, AdvancingFront_LocatePoint, (AdvancingFront * __this, TriangulationPoint * point, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDEEF8, AdvancingFront_LocatePoint__MethodInfo); DO_APP_FUNC(0x01E46700, void, AdvancingFrontNode__ctor, (AdvancingFrontNode * __this, TriangulationPoint * point, MethodInfo * method)); DO_APP_FUNC(0x01E46770, bool, AdvancingFrontNode_get_HasNext, (AdvancingFrontNode * __this, MethodInfo * method)); DO_APP_FUNC(0x01E27EC0, bool, AdvancingFrontNode_get_HasPrev, (AdvancingFrontNode * __this, MethodInfo * method)); @@ -116683,8 +129258,10 @@ DO_APP_FUNC(0x01E48A30, void, DTSweep_FillLeftBelowEdgeEvent, (DTSweepContext * DO_APP_FUNC(0x01E48C50, void, DTSweep_FillLeftAboveEdgeEvent, (DTSweepContext * tcx, DTSweepConstraint * edge, AdvancingFrontNode * node, MethodInfo * method)); DO_APP_FUNC(0x01E48DB0, bool, DTSweep_IsEdgeSideOfTriangle, (DelaunayTriangle * triangle, TriangulationPoint * ep, TriangulationPoint * eq, MethodInfo * method)); DO_APP_FUNC(0x01E48E90, void, DTSweep_EdgeEvent_1, (DTSweepContext * tcx, TriangulationPoint * ep, TriangulationPoint * eq, DelaunayTriangle * triangle, TriangulationPoint * point, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDEE80, DTSweep_EdgeEvent_1__MethodInfo); DO_APP_FUNC(0x01E49100, void, DTSweep_FlipEdgeEvent, (DTSweepContext * tcx, TriangulationPoint * ep, TriangulationPoint * eq, DelaunayTriangle * t, TriangulationPoint * p, MethodInfo * method)); DO_APP_FUNC(0x01E494E0, TriangulationPoint *, DTSweep_NextFlipPoint, (TriangulationPoint * ep, TriangulationPoint * eq, DelaunayTriangle * ot, TriangulationPoint * op, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDEEA8, DTSweep_NextFlipPoint__MethodInfo); DO_APP_FUNC(0x01E49660, DelaunayTriangle *, DTSweep_NextFlipTriangle, (DTSweepContext * tcx, Orientation__Enum o, DelaunayTriangle * t, DelaunayTriangle * ot, TriangulationPoint * p, TriangulationPoint * op, MethodInfo * method)); DO_APP_FUNC(0x01E49740, void, DTSweep_FlipScanEdgeEvent, (DTSweepContext * tcx, TriangulationPoint * ep, TriangulationPoint * eq, DelaunayTriangle * flipTriangle, DelaunayTriangle * t, TriangulationPoint * p, MethodInfo * method)); DO_APP_FUNC(0x01E49990, void, DTSweep_FillAdvancingFront, (DTSweepContext * tcx, AdvancingFrontNode * n, MethodInfo * method)); @@ -116752,12 +129329,14 @@ DO_APP_FUNC(0x01E4D670, void, TriangulationUtil__cctor, (MethodInfo * method)); DO_APP_FUNC(0x01E4D6C0, bool, TriangulationUtil_SmartIncircle, (TriangulationPoint * pa, TriangulationPoint * pb, TriangulationPoint * pc, TriangulationPoint * pd, MethodInfo * method)); DO_APP_FUNC(0x01E4D800, bool, TriangulationUtil_InScanArea, (TriangulationPoint * pa, TriangulationPoint * pb, TriangulationPoint * pc, TriangulationPoint * pd, MethodInfo * method)); DO_APP_FUNC(0x01E4D8C0, Orientation__Enum, TriangulationUtil_Orient2d, (TriangulationPoint * pa, TriangulationPoint * pb, TriangulationPoint * pc, MethodInfo * method)); -DO_APP_FUNC(0x01E4D9E0, IEnumerator *, FixedBitArray3_System_Collections_IEnumerable_GetEnumerator, (FixedBitArray3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01E4D9F0, bool, FixedBitArray3_get_Item, (FixedBitArray3__Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01E4DA70, void, FixedBitArray3_set_Item, (FixedBitArray3__Boxed * __this, int32_t index, bool value, MethodInfo * method)); -DO_APP_FUNC(0x01E4DAF0, void, FixedBitArray3_Clear, (FixedBitArray3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01E4DB00, IEnumerable_1_System_Boolean_ *, FixedBitArray3_Enumerate, (FixedBitArray3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01E4DB60, IEnumerator_1_System_Boolean_ *, FixedBitArray3_GetEnumerator, (FixedBitArray3__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01E4D9E0, IEnumerator *, FixedBitArray3_System_Collections_IEnumerable_GetEnumerator, (FixedBitArray3 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01E4D9F0, bool, FixedBitArray3_get_Item, (FixedBitArray3 * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDED30, FixedBitArray3_get_Item__MethodInfo); +DO_APP_FUNC(0x01E4DA70, void, FixedBitArray3_set_Item, (FixedBitArray3 * __this, int32_t index, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDED28, FixedBitArray3_set_Item__MethodInfo); +DO_APP_FUNC(0x01E4DAF0, void, FixedBitArray3_Clear, (FixedBitArray3 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01E4DB00, IEnumerable_1_System_Boolean_ *, FixedBitArray3_Enumerate, (FixedBitArray3 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01E4DB60, IEnumerator_1_System_Boolean_ *, FixedBitArray3_GetEnumerator, (FixedBitArray3 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, FixedBitArray3_Enumerate_c_Iterator1__ctor, (FixedBitArray3_Enumerate_c_Iterator1 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCC40, bool, FixedBitArray3_Enumerate_c_Iterator1_System_Collections_Generic_IEnumerator_bool__get_Current, (FixedBitArray3_Enumerate_c_Iterator1 * __this, MethodInfo * method)); DO_APP_FUNC(0x01E4DBF0, Object *, FixedBitArray3_Enumerate_c_Iterator1_System_Collections_IEnumerator_get_Current, (FixedBitArray3_Enumerate_c_Iterator1 * __this, MethodInfo * method)); @@ -116766,9 +129345,10 @@ DO_APP_FUNC(0x01E4DCC0, IEnumerator_1_System_Boolean_ *, FixedBitArray3_Enumerat DO_APP_FUNC(0x01E4DD30, bool, FixedBitArray3_Enumerate_c_Iterator1_MoveNext, (FixedBitArray3_Enumerate_c_Iterator1 * __this, MethodInfo * method)); DO_APP_FUNC(0x00F930F0, void, FixedBitArray3_Enumerate_c_Iterator1_Dispose, (FixedBitArray3_Enumerate_c_Iterator1 * __this, MethodInfo * method)); DO_APP_FUNC(0x01E4DE00, void, FixedBitArray3_Enumerate_c_Iterator1_Reset, (FixedBitArray3_Enumerate_c_Iterator1 * __this, MethodInfo * method)); -DO_APP_FUNC(0x018BE6C0, void, XrHandJointsLocateInfoEXT__ctor, (XrHandJointsLocateInfoEXT__Boxed * __this, XrStructureType__Enum_1 type_, void * next_, uint64_t baseSpace_, int64_t time_, MethodInfo * method)); -DO_APP_FUNC(0x018BE6E0, void, XrHandJointLocationsEXT__ctor, (XrHandJointLocationsEXT__Boxed * __this, XrStructureType__Enum_1 type_, void * next_, uint32_t isActive_, int32_t jointCount_, void * jointLocations_, MethodInfo * method)); -DO_APP_FUNC(0x018BE700, void, XrHandTrackerCreateInfoEXT__ctor, (XrHandTrackerCreateInfoEXT__Boxed * __this, XrStructureType__Enum_1 type_, void * next_, XrHandEXT__Enum hand_, XrHandJointSetEXT__Enum handJointSet_, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDECF8, FixedBitArray3_Enumerate_c_Iterator1_Reset__MethodInfo); +DO_APP_FUNC(0x018BE6C0, void, XrHandJointsLocateInfoEXT__ctor, (XrHandJointsLocateInfoEXT * __this, XrStructureType__Enum_1 type_, void * next_, uint64_t baseSpace_, int64_t time_, MethodInfo * method)); +DO_APP_FUNC(0x018BE6E0, void, XrHandJointLocationsEXT__ctor, (XrHandJointLocationsEXT * __this, XrStructureType__Enum_1 type_, void * next_, uint32_t isActive_, int32_t jointCount_, void * jointLocations_, MethodInfo * method)); +DO_APP_FUNC(0x018BE700, void, XrHandTrackerCreateInfoEXT__ctor, (XrHandTrackerCreateInfoEXT * __this, XrStructureType__Enum_1 type_, void * next_, XrHandEXT__Enum hand_, XrHandJointSetEXT__Enum handJointSet_, MethodInfo * method)); DO_APP_FUNC(0x018BE720, bool, HandTracking_OpenXR_API_OnInstanceCreate, (HandTracking_OpenXR_API * __this, uint64_t xrInstance, MethodInfo * method)); DO_APP_FUNC(0x018BE820, void, HandTracking_OpenXR_API_OnInstanceDestroy, (HandTracking_OpenXR_API * __this, uint64_t xrInstance, MethodInfo * method)); DO_APP_FUNC(0x018BE960, void, HandTracking_OpenXR_API_OnSessionCreate, (HandTracking_OpenXR_API * __this, uint64_t xrSession, MethodInfo * method)); @@ -116776,105 +129356,105 @@ DO_APP_FUNC(0x018BF0A0, void, HandTracking_OpenXR_API_OnSystemChange, (HandTrack DO_APP_FUNC(0x018BF1A0, void, HandTracking_OpenXR_API_OnSessionDestroy, (HandTracking_OpenXR_API * __this, uint64_t xrSession, MethodInfo * method)); DO_APP_FUNC(0x018BDAF0, bool, HandTracking_OpenXR_API_CheckXrResult, (HandTracking_OpenXR_API * __this, int32_t xrResult, MethodInfo * method)); DO_APP_FUNC(0x018BF3C0, bool, HandTracking_OpenXR_API_GetXrFunctionDelegates, (HandTracking_OpenXR_API * __this, uint64_t xrInstance, MethodInfo * method)); -DO_APP_FUNC(0x018BFEE0, int32_t, HandTracking_OpenXR_API_xrGetSystemProperties, (HandTracking_OpenXR_API * __this, XrSystemProperties_1 properties, MethodInfo * method)); -DO_APP_FUNC(0x018BFF20, int32_t, HandTracking_OpenXR_API_xrEnumerateReferenceSpaces, (HandTracking_OpenXR_API * __this, int32_t spaceCapacityInput, int32_t spaceCountOutput, XrReferenceSpaceType__Enum_1 spaces, MethodInfo * method)); -DO_APP_FUNC(0x018BFF60, int32_t, HandTracking_OpenXR_API_xrCreateReferenceSpace, (HandTracking_OpenXR_API * __this, XrReferenceSpaceCreateInfo_1 createInfo, uint64_t space, MethodInfo * method)); +DO_APP_FUNC(0x018BFEE0, int32_t, HandTracking_OpenXR_API_xrGetSystemProperties, (HandTracking_OpenXR_API * __this, XrSystemProperties_1 * properties, MethodInfo * method)); +DO_APP_FUNC(0x018BFF20, int32_t, HandTracking_OpenXR_API_xrEnumerateReferenceSpaces, (HandTracking_OpenXR_API * __this, int32_t spaceCapacityInput, int32_t * spaceCountOutput, XrReferenceSpaceType__Enum_1 * spaces, MethodInfo * method)); +DO_APP_FUNC(0x018BFF60, int32_t, HandTracking_OpenXR_API_xrCreateReferenceSpace, (HandTracking_OpenXR_API * __this, XrReferenceSpaceCreateInfo_1 * createInfo, uint64_t * space, MethodInfo * method)); DO_APP_FUNC(0x018BFFA0, int32_t, HandTracking_OpenXR_API_xrDestroySpace, (HandTracking_OpenXR_API * __this, uint64_t space, MethodInfo * method)); -DO_APP_FUNC(0x018BFFD0, int32_t, HandTracking_OpenXR_API_xrCreateHandTrackerEXT, (HandTracking_OpenXR_API * __this, XrHandTrackerCreateInfoEXT createInfo, uint64_t handle, MethodInfo * method)); +DO_APP_FUNC(0x018BFFD0, int32_t, HandTracking_OpenXR_API_xrCreateHandTrackerEXT, (HandTracking_OpenXR_API * __this, XrHandTrackerCreateInfoEXT createInfo, uint64_t * handle, MethodInfo * method)); DO_APP_FUNC(0x018C0020, int32_t, HandTracking_OpenXR_API_xrDestroyHandTrackerEXT, (HandTracking_OpenXR_API * __this, uint64_t handle, MethodInfo * method)); -DO_APP_FUNC(0x018C0050, int32_t, HandTracking_OpenXR_API_xrLocateHandJointsEXT, (HandTracking_OpenXR_API * __this, uint64_t handTracker, XrHandJointsLocateInfoEXT locateInfo, XrHandJointLocationsEXT locations, MethodInfo * method)); +DO_APP_FUNC(0x018C0050, int32_t, HandTracking_OpenXR_API_xrLocateHandJointsEXT, (HandTracking_OpenXR_API * __this, uint64_t handTracker, XrHandJointsLocateInfoEXT locateInfo, XrHandJointLocationsEXT * locations, MethodInfo * method)); DO_APP_FUNC(0x003BA2A0, void, HandTracking_OpenXR_API__ctor, (HandTracking_OpenXR_API * __this, MethodInfo * method)); DO_APP_FUNC(0x003EF890, void, HandTracking_OpenXR_API_XrGetInstanceProcAddrDelegate__ctor, (HandTracking_OpenXR_API_XrGetInstanceProcAddrDelegate * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EF9C0, int32_t, HandTracking_OpenXR_API_XrGetInstanceProcAddrDelegate_Invoke, (HandTracking_OpenXR_API_XrGetInstanceProcAddrDelegate * __this, uint64_t instance, String * name, void * function, MethodInfo * method)); -DO_APP_FUNC(0x018C00A0, IAsyncResult *, HandTracking_OpenXR_API_XrGetInstanceProcAddrDelegate_BeginInvoke, (HandTracking_OpenXR_API_XrGetInstanceProcAddrDelegate * __this, uint64_t instance, String * name, void * function, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003F75B0, int32_t, HandTracking_OpenXR_API_XrGetInstanceProcAddrDelegate_EndInvoke, (HandTracking_OpenXR_API_XrGetInstanceProcAddrDelegate * __this, void * function, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EF9C0, int32_t, HandTracking_OpenXR_API_XrGetInstanceProcAddrDelegate_Invoke, (HandTracking_OpenXR_API_XrGetInstanceProcAddrDelegate * __this, uint64_t instance, String * name, void * * function, MethodInfo * method)); +DO_APP_FUNC(0x018C00A0, IAsyncResult *, HandTracking_OpenXR_API_XrGetInstanceProcAddrDelegate_BeginInvoke, (HandTracking_OpenXR_API_XrGetInstanceProcAddrDelegate * __this, uint64_t instance, String * name, void * * function, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003F75B0, int32_t, HandTracking_OpenXR_API_XrGetInstanceProcAddrDelegate_EndInvoke, (HandTracking_OpenXR_API_XrGetInstanceProcAddrDelegate * __this, void * * function, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003FABF0, void, HandTracking_OpenXR_API_xrGetSystemPropertiesDelegate__ctor, (HandTracking_OpenXR_API_xrGetSystemPropertiesDelegate * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EF9C0, int32_t, HandTracking_OpenXR_API_xrGetSystemPropertiesDelegate_Invoke, (HandTracking_OpenXR_API_xrGetSystemPropertiesDelegate * __this, uint64_t instance, uint64_t systemId, XrSystemProperties_1 properties, MethodInfo * method)); -DO_APP_FUNC(0x018C0150, IAsyncResult *, HandTracking_OpenXR_API_xrGetSystemPropertiesDelegate_BeginInvoke, (HandTracking_OpenXR_API_xrGetSystemPropertiesDelegate * __this, uint64_t instance, uint64_t systemId, XrSystemProperties_1 properties, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003F75B0, int32_t, HandTracking_OpenXR_API_xrGetSystemPropertiesDelegate_EndInvoke, (HandTracking_OpenXR_API_xrGetSystemPropertiesDelegate * __this, XrSystemProperties_1 properties, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EF9C0, int32_t, HandTracking_OpenXR_API_xrGetSystemPropertiesDelegate_Invoke, (HandTracking_OpenXR_API_xrGetSystemPropertiesDelegate * __this, uint64_t instance, uint64_t systemId, XrSystemProperties_1 * properties, MethodInfo * method)); +DO_APP_FUNC(0x018C0150, IAsyncResult *, HandTracking_OpenXR_API_xrGetSystemPropertiesDelegate_BeginInvoke, (HandTracking_OpenXR_API_xrGetSystemPropertiesDelegate * __this, uint64_t instance, uint64_t systemId, XrSystemProperties_1 * properties, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003F75B0, int32_t, HandTracking_OpenXR_API_xrGetSystemPropertiesDelegate_EndInvoke, (HandTracking_OpenXR_API_xrGetSystemPropertiesDelegate * __this, XrSystemProperties_1 * properties, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x018C0210, void, HandTracking_OpenXR_API_xrEnumerateReferenceSpacesDelegate__ctor, (HandTracking_OpenXR_API_xrEnumerateReferenceSpacesDelegate * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003F09C0, int32_t, HandTracking_OpenXR_API_xrEnumerateReferenceSpacesDelegate_Invoke, (HandTracking_OpenXR_API_xrEnumerateReferenceSpacesDelegate * __this, uint64_t session, int32_t spaceCapacityInput, int32_t spaceCountOutput, XrReferenceSpaceType__Enum_1 spaces, MethodInfo * method)); -DO_APP_FUNC(0x018C0340, IAsyncResult *, HandTracking_OpenXR_API_xrEnumerateReferenceSpacesDelegate_BeginInvoke, (HandTracking_OpenXR_API_xrEnumerateReferenceSpacesDelegate * __this, uint64_t session, int32_t spaceCapacityInput, int32_t spaceCountOutput, XrReferenceSpaceType__Enum_1 spaces, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x018C0430, int32_t, HandTracking_OpenXR_API_xrEnumerateReferenceSpacesDelegate_EndInvoke, (HandTracking_OpenXR_API_xrEnumerateReferenceSpacesDelegate * __this, int32_t spaceCountOutput, XrReferenceSpaceType__Enum_1 spaces, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003F09C0, int32_t, HandTracking_OpenXR_API_xrEnumerateReferenceSpacesDelegate_Invoke, (HandTracking_OpenXR_API_xrEnumerateReferenceSpacesDelegate * __this, uint64_t session, int32_t spaceCapacityInput, int32_t * spaceCountOutput, XrReferenceSpaceType__Enum_1 * spaces, MethodInfo * method)); +DO_APP_FUNC(0x018C0340, IAsyncResult *, HandTracking_OpenXR_API_xrEnumerateReferenceSpacesDelegate_BeginInvoke, (HandTracking_OpenXR_API_xrEnumerateReferenceSpacesDelegate * __this, uint64_t session, int32_t spaceCapacityInput, int32_t * spaceCountOutput, XrReferenceSpaceType__Enum_1 * spaces, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x018C0430, int32_t, HandTracking_OpenXR_API_xrEnumerateReferenceSpacesDelegate_EndInvoke, (HandTracking_OpenXR_API_xrEnumerateReferenceSpacesDelegate * __this, int32_t * spaceCountOutput, XrReferenceSpaceType__Enum_1 * spaces, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003EF890, void, HandTracking_OpenXR_API_xrCreateReferenceSpaceDelegate__ctor, (HandTracking_OpenXR_API_xrCreateReferenceSpaceDelegate * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EF9C0, int32_t, HandTracking_OpenXR_API_xrCreateReferenceSpaceDelegate_Invoke, (HandTracking_OpenXR_API_xrCreateReferenceSpaceDelegate * __this, uint64_t session, XrReferenceSpaceCreateInfo_1 createInfo, uint64_t space, MethodInfo * method)); -DO_APP_FUNC(0x018C0460, IAsyncResult *, HandTracking_OpenXR_API_xrCreateReferenceSpaceDelegate_BeginInvoke, (HandTracking_OpenXR_API_xrCreateReferenceSpaceDelegate * __this, uint64_t session, XrReferenceSpaceCreateInfo_1 createInfo, uint64_t space, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x018C0430, int32_t, HandTracking_OpenXR_API_xrCreateReferenceSpaceDelegate_EndInvoke, (HandTracking_OpenXR_API_xrCreateReferenceSpaceDelegate * __this, XrReferenceSpaceCreateInfo_1 createInfo, uint64_t space, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EF9C0, int32_t, HandTracking_OpenXR_API_xrCreateReferenceSpaceDelegate_Invoke, (HandTracking_OpenXR_API_xrCreateReferenceSpaceDelegate * __this, uint64_t session, XrReferenceSpaceCreateInfo_1 * createInfo, uint64_t * space, MethodInfo * method)); +DO_APP_FUNC(0x018C0460, IAsyncResult *, HandTracking_OpenXR_API_xrCreateReferenceSpaceDelegate_BeginInvoke, (HandTracking_OpenXR_API_xrCreateReferenceSpaceDelegate * __this, uint64_t session, XrReferenceSpaceCreateInfo_1 * createInfo, uint64_t * space, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x018C0430, int32_t, HandTracking_OpenXR_API_xrCreateReferenceSpaceDelegate_EndInvoke, (HandTracking_OpenXR_API_xrCreateReferenceSpaceDelegate * __this, XrReferenceSpaceCreateInfo_1 * createInfo, uint64_t * space, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003F41A0, void, HandTracking_OpenXR_API_xrDestroySpaceDelegate__ctor, (HandTracking_OpenXR_API_xrDestroySpaceDelegate * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003F42D0, int32_t, HandTracking_OpenXR_API_xrDestroySpaceDelegate_Invoke, (HandTracking_OpenXR_API_xrDestroySpaceDelegate * __this, uint64_t space, MethodInfo * method)); DO_APP_FUNC(0x018C0520, IAsyncResult *, HandTracking_OpenXR_API_xrDestroySpaceDelegate_BeginInvoke, (HandTracking_OpenXR_API_xrDestroySpaceDelegate * __this, uint64_t space, AsyncCallback * callback, Object * object, MethodInfo * method)); DO_APP_FUNC(0x003ED3D0, int32_t, HandTracking_OpenXR_API_xrDestroySpaceDelegate_EndInvoke, (HandTracking_OpenXR_API_xrDestroySpaceDelegate * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003F8E20, void, HandTracking_OpenXR_API_xrCreateHandTrackerEXTDelegate__ctor, (HandTracking_OpenXR_API_xrCreateHandTrackerEXTDelegate * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003F8F50, int32_t, HandTracking_OpenXR_API_xrCreateHandTrackerEXTDelegate_Invoke, (HandTracking_OpenXR_API_xrCreateHandTrackerEXTDelegate * __this, uint64_t session, XrHandTrackerCreateInfoEXT createInfo, uint64_t handTracker, MethodInfo * method)); -DO_APP_FUNC(0x018C05A0, IAsyncResult *, HandTracking_OpenXR_API_xrCreateHandTrackerEXTDelegate_BeginInvoke, (HandTracking_OpenXR_API_xrCreateHandTrackerEXTDelegate * __this, uint64_t session, XrHandTrackerCreateInfoEXT createInfo, uint64_t handTracker, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003F75B0, int32_t, HandTracking_OpenXR_API_xrCreateHandTrackerEXTDelegate_EndInvoke, (HandTracking_OpenXR_API_xrCreateHandTrackerEXTDelegate * __this, uint64_t handTracker, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003F8F50, int32_t, HandTracking_OpenXR_API_xrCreateHandTrackerEXTDelegate_Invoke, (HandTracking_OpenXR_API_xrCreateHandTrackerEXTDelegate * __this, uint64_t session, XrHandTrackerCreateInfoEXT createInfo, uint64_t * handTracker, MethodInfo * method)); +DO_APP_FUNC(0x018C05A0, IAsyncResult *, HandTracking_OpenXR_API_xrCreateHandTrackerEXTDelegate_BeginInvoke, (HandTracking_OpenXR_API_xrCreateHandTrackerEXTDelegate * __this, uint64_t session, XrHandTrackerCreateInfoEXT createInfo, uint64_t * handTracker, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003F75B0, int32_t, HandTracking_OpenXR_API_xrCreateHandTrackerEXTDelegate_EndInvoke, (HandTracking_OpenXR_API_xrCreateHandTrackerEXTDelegate * __this, uint64_t * handTracker, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003F41A0, void, HandTracking_OpenXR_API_xrDestroyHandTrackerEXTDelegate__ctor, (HandTracking_OpenXR_API_xrDestroyHandTrackerEXTDelegate * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003F42D0, int32_t, HandTracking_OpenXR_API_xrDestroyHandTrackerEXTDelegate_Invoke, (HandTracking_OpenXR_API_xrDestroyHandTrackerEXTDelegate * __this, uint64_t handTracker, MethodInfo * method)); DO_APP_FUNC(0x018C0660, IAsyncResult *, HandTracking_OpenXR_API_xrDestroyHandTrackerEXTDelegate_BeginInvoke, (HandTracking_OpenXR_API_xrDestroyHandTrackerEXTDelegate * __this, uint64_t handTracker, AsyncCallback * callback, Object * object, MethodInfo * method)); DO_APP_FUNC(0x003ED3D0, int32_t, HandTracking_OpenXR_API_xrDestroyHandTrackerEXTDelegate_EndInvoke, (HandTracking_OpenXR_API_xrDestroyHandTrackerEXTDelegate * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x018C06E0, void, HandTracking_OpenXR_API_xrLocateHandJointsEXTDelegate__ctor, (HandTracking_OpenXR_API_xrLocateHandJointsEXTDelegate * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x018C0810, int32_t, HandTracking_OpenXR_API_xrLocateHandJointsEXTDelegate_Invoke, (HandTracking_OpenXR_API_xrLocateHandJointsEXTDelegate * __this, uint64_t handTracker, XrHandJointsLocateInfoEXT locateInfo, XrHandJointLocationsEXT locations, MethodInfo * method)); -DO_APP_FUNC(0x018C0850, IAsyncResult *, HandTracking_OpenXR_API_xrLocateHandJointsEXTDelegate_BeginInvoke, (HandTracking_OpenXR_API_xrLocateHandJointsEXTDelegate * __this, uint64_t handTracker, XrHandJointsLocateInfoEXT locateInfo, XrHandJointLocationsEXT locations, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003F75B0, int32_t, HandTracking_OpenXR_API_xrLocateHandJointsEXTDelegate_EndInvoke, (HandTracking_OpenXR_API_xrLocateHandJointsEXTDelegate * __this, XrHandJointLocationsEXT locations, IAsyncResult * result, MethodInfo * method)); -DO_APP_FUNC(0x003CAFD0, void, XrVector3f_2__ctor, (XrVector3f_2__Boxed * __this, float x_, float y_, float z_, MethodInfo * method)); -DO_APP_FUNC(0x003CAFE0, void, XrQuaternionf_2__ctor, (XrQuaternionf_2__Boxed * __this, float x_, float y_, float z_, float w_, MethodInfo * method)); -DO_APP_FUNC(0x02B78450, int32_t, FaceInfo_get_faceIndex, (FaceInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D66790, String *, FaceInfo_get_familyName, (FaceInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x005F25C0, void, FaceInfo_set_familyName, (FaceInfo__Boxed * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x015C0B20, String *, FaceInfo_get_styleName, (FaceInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCBE0, void, FaceInfo_set_styleName, (FaceInfo__Boxed * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x011227E0, int32_t, FaceInfo_get_pointSize, (FaceInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCDD0, void, FaceInfo_set_pointSize, (FaceInfo__Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x02DA1C10, float, FaceInfo_get_scale, (FaceInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003CCB90, void, FaceInfo_set_scale, (FaceInfo__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02D4E460, float, FaceInfo_get_lineHeight, (FaceInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003CC910, void, FaceInfo_set_lineHeight, (FaceInfo__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02DD6AD0, float, FaceInfo_get_ascentLine, (FaceInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00945270, void, FaceInfo_set_ascentLine, (FaceInfo__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02DA1C20, float, FaceInfo_get_capLine, (FaceInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C58F50, void, FaceInfo_set_capLine, (FaceInfo__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02BA0910, float, FaceInfo_get_meanLine, (FaceInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00948340, void, FaceInfo_set_meanLine, (FaceInfo__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02BA0970, float, FaceInfo_get_baseline, (FaceInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594F50, void, FaceInfo_set_baseline, (FaceInfo__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02DA1C50, float, FaceInfo_get_descentLine, (FaceInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003D0490, void, FaceInfo_set_descentLine, (FaceInfo__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02DA1C30, float, FaceInfo_get_superscriptOffset, (FaceInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C596D0, void, FaceInfo_set_superscriptOffset, (FaceInfo__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02DA1C40, float, FaceInfo_get_superscriptSize, (FaceInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0110DB60, void, FaceInfo_set_superscriptSize, (FaceInfo__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02DD6AE0, float, FaceInfo_get_subscriptOffset, (FaceInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C56C00, void, FaceInfo_set_subscriptOffset, (FaceInfo__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02DD6AF0, float, FaceInfo_get_subscriptSize, (FaceInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01C96CC0, void, FaceInfo_set_subscriptSize, (FaceInfo__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02DD6B00, float, FaceInfo_get_underlineOffset, (FaceInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01CCC800, void, FaceInfo_set_underlineOffset, (FaceInfo__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02DD6B10, float, FaceInfo_get_underlineThickness, (FaceInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01D31F90, void, FaceInfo_set_underlineThickness, (FaceInfo__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02DD6B20, float, FaceInfo_get_strikethroughOffset, (FaceInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C61FF0, void, FaceInfo_set_strikethroughOffset, (FaceInfo__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x00A79C50, void, FaceInfo_set_strikethroughThickness, (FaceInfo__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02DD6B30, float, FaceInfo_get_tabWidth, (FaceInfo__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A79C70, void, FaceInfo_set_tabWidth, (FaceInfo__Boxed * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x02B78450, int32_t, GlyphRect_get_x, (GlyphRect__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C4B40, int32_t, GlyphRect_get_y, (GlyphRect__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01809D80, int32_t, GlyphRect_get_width, (GlyphRect__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01810C10, int32_t, GlyphRect_get_height, (GlyphRect__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x018C0810, int32_t, HandTracking_OpenXR_API_xrLocateHandJointsEXTDelegate_Invoke, (HandTracking_OpenXR_API_xrLocateHandJointsEXTDelegate * __this, uint64_t handTracker, XrHandJointsLocateInfoEXT locateInfo, XrHandJointLocationsEXT * locations, MethodInfo * method)); +DO_APP_FUNC(0x018C0850, IAsyncResult *, HandTracking_OpenXR_API_xrLocateHandJointsEXTDelegate_BeginInvoke, (HandTracking_OpenXR_API_xrLocateHandJointsEXTDelegate * __this, uint64_t handTracker, XrHandJointsLocateInfoEXT locateInfo, XrHandJointLocationsEXT * locations, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003F75B0, int32_t, HandTracking_OpenXR_API_xrLocateHandJointsEXTDelegate_EndInvoke, (HandTracking_OpenXR_API_xrLocateHandJointsEXTDelegate * __this, XrHandJointLocationsEXT * locations, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003CAFD0, void, XrVector3f_2__ctor, (XrVector3f_2 * __this, float x_, float y_, float z_, MethodInfo * method)); +DO_APP_FUNC(0x003CAFE0, void, XrQuaternionf_2__ctor, (XrQuaternionf_2 * __this, float x_, float y_, float z_, float w_, MethodInfo * method)); +DO_APP_FUNC(0x02B78450, int32_t, FaceInfo_get_faceIndex, (FaceInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x02D66790, String *, FaceInfo_get_familyName, (FaceInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x005F25C0, void, FaceInfo_set_familyName, (FaceInfo * __this, String * value, MethodInfo * method)); +DO_APP_FUNC(0x015C0B20, String *, FaceInfo_get_styleName, (FaceInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCBE0, void, FaceInfo_set_styleName, (FaceInfo * __this, String * value, MethodInfo * method)); +DO_APP_FUNC(0x011227E0, int32_t, FaceInfo_get_pointSize, (FaceInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCDD0, void, FaceInfo_set_pointSize, (FaceInfo * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x02DA1C10, float, FaceInfo_get_scale, (FaceInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x003CCB90, void, FaceInfo_set_scale, (FaceInfo * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02D4E460, float, FaceInfo_get_lineHeight, (FaceInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x003CC910, void, FaceInfo_set_lineHeight, (FaceInfo * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02DD6AD0, float, FaceInfo_get_ascentLine, (FaceInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x00945270, void, FaceInfo_set_ascentLine, (FaceInfo * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02DA1C20, float, FaceInfo_get_capLine, (FaceInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C58F50, void, FaceInfo_set_capLine, (FaceInfo * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02BA0910, float, FaceInfo_get_meanLine, (FaceInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x00948340, void, FaceInfo_set_meanLine, (FaceInfo * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02BA0970, float, FaceInfo_get_baseline, (FaceInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594F50, void, FaceInfo_set_baseline, (FaceInfo * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02DA1C50, float, FaceInfo_get_descentLine, (FaceInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x003D0490, void, FaceInfo_set_descentLine, (FaceInfo * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02DA1C30, float, FaceInfo_get_superscriptOffset, (FaceInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C596D0, void, FaceInfo_set_superscriptOffset, (FaceInfo * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02DA1C40, float, FaceInfo_get_superscriptSize, (FaceInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x0110DB60, void, FaceInfo_set_superscriptSize, (FaceInfo * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02DD6AE0, float, FaceInfo_get_subscriptOffset, (FaceInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C56C00, void, FaceInfo_set_subscriptOffset, (FaceInfo * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02DD6AF0, float, FaceInfo_get_subscriptSize, (FaceInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x01C96CC0, void, FaceInfo_set_subscriptSize, (FaceInfo * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02DD6B00, float, FaceInfo_get_underlineOffset, (FaceInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x01CCC800, void, FaceInfo_set_underlineOffset, (FaceInfo * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02DD6B10, float, FaceInfo_get_underlineThickness, (FaceInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x01D31F90, void, FaceInfo_set_underlineThickness, (FaceInfo * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02DD6B20, float, FaceInfo_get_strikethroughOffset, (FaceInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C61FF0, void, FaceInfo_set_strikethroughOffset, (FaceInfo * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x00A79C50, void, FaceInfo_set_strikethroughThickness, (FaceInfo * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02DD6B30, float, FaceInfo_get_tabWidth, (FaceInfo * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A79C70, void, FaceInfo_set_tabWidth, (FaceInfo * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x02B78450, int32_t, GlyphRect_get_x, (GlyphRect * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C4B40, int32_t, GlyphRect_get_y, (GlyphRect * __this, MethodInfo * method)); +DO_APP_FUNC(0x01809D80, int32_t, GlyphRect_get_width, (GlyphRect * __this, MethodInfo * method)); +DO_APP_FUNC(0x01810C10, int32_t, GlyphRect_get_height, (GlyphRect * __this, MethodInfo * method)); DO_APP_FUNC(0x02DD6B40, GlyphRect, GlyphRect_get_zero, (MethodInfo * method)); -DO_APP_FUNC(0x01ECBC60, void, GlyphRect__ctor, (GlyphRect__Boxed * __this, int32_t x, int32_t y, int32_t width, int32_t height, MethodInfo * method)); -DO_APP_FUNC(0x02DD6BB0, int32_t, GlyphRect_GetHashCode, (GlyphRect__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DD6C10, bool, GlyphRect_Equals, (GlyphRect__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02DD6C80, bool, GlyphRect_Equals_1, (GlyphRect__Boxed * __this, GlyphRect other, MethodInfo * method)); +DO_APP_FUNC(0x01ECBC60, void, GlyphRect__ctor, (GlyphRect * __this, int32_t x, int32_t y, int32_t width, int32_t height, MethodInfo * method)); +DO_APP_FUNC(0x02DD6BB0, int32_t, GlyphRect_GetHashCode, (GlyphRect * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DD6C10, bool, GlyphRect_Equals, (GlyphRect * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02DD6C80, bool, GlyphRect_Equals_1, (GlyphRect * __this, GlyphRect other, MethodInfo * method)); DO_APP_FUNC(0x02DD6D00, void, GlyphRect__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02CE2130, float, GlyphMetrics_get_width, (GlyphMetrics__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CCAAD0, float, GlyphMetrics_get_height, (GlyphMetrics__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CE2140, float, GlyphMetrics_get_horizontalBearingX, (GlyphMetrics__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CCABB0, float, GlyphMetrics_get_horizontalBearingY, (GlyphMetrics__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DD6D40, float, GlyphMetrics_get_horizontalAdvance, (GlyphMetrics__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DD6D50, void, GlyphMetrics__ctor, (GlyphMetrics__Boxed * __this, float width, float height, float bearingX, float bearingY, float advance, MethodInfo * method)); -DO_APP_FUNC(0x02DD6D80, int32_t, GlyphMetrics_GetHashCode, (GlyphMetrics__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DD6DE0, bool, GlyphMetrics_Equals, (GlyphMetrics__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02DD6E50, bool, GlyphMetrics_Equals_1, (GlyphMetrics__Boxed * __this, GlyphMetrics other, MethodInfo * method)); +DO_APP_FUNC(0x02CE2130, float, GlyphMetrics_get_width, (GlyphMetrics * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CCAAD0, float, GlyphMetrics_get_height, (GlyphMetrics * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CE2140, float, GlyphMetrics_get_horizontalBearingX, (GlyphMetrics * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CCABB0, float, GlyphMetrics_get_horizontalBearingY, (GlyphMetrics * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DD6D40, float, GlyphMetrics_get_horizontalAdvance, (GlyphMetrics * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DD6D50, void, GlyphMetrics__ctor, (GlyphMetrics * __this, float width, float height, float bearingX, float bearingY, float advance, MethodInfo * method)); +DO_APP_FUNC(0x02DD6D80, int32_t, GlyphMetrics_GetHashCode, (GlyphMetrics * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DD6DE0, bool, GlyphMetrics_Equals, (GlyphMetrics * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02DD6E50, bool, GlyphMetrics_Equals_1, (GlyphMetrics * __this, GlyphMetrics other, MethodInfo * method)); DO_APP_FUNC(0x01E8EBD0, uint32_t, Glyph_get_index, (Glyph * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, Glyph_set_index, (Glyph * __this, uint32_t value, MethodInfo * method)); DO_APP_FUNC(0x02DD6EE0, GlyphMetrics, Glyph_get_metrics, (Glyph * __this, MethodInfo * method)); @@ -116898,80 +129478,80 @@ DO_APP_FUNC(0x02DD7240, FontEngineError__Enum, FontEngine_LoadFontFace_2, (Font DO_APP_FUNC(0x02DD72F0, int32_t, FontEngine_LoadFontFace_With_Size_and_FaceIndex_FromFont_Internal, (Font * font, int32_t pointSize, int32_t faceIndex, MethodInfo * method)); DO_APP_FUNC(0x02DD7360, FontEngineError__Enum, FontEngine_LoadFontFace_3, (String * familyName, String * styleName, int32_t pointSize, MethodInfo * method)); DO_APP_FUNC(0x02DD7410, int32_t, FontEngine_LoadFontFace_With_Size_by_FamilyName_and_StyleName_Internal, (String * familyName, String * styleName, int32_t pointSize, MethodInfo * method)); -DO_APP_FUNC(0x02DD7480, bool, FontEngine_TryGetSystemFontReference, (String * familyName, String * styleName, FontReference fontRef, MethodInfo * method)); -DO_APP_FUNC(0x02DD7530, bool, FontEngine_TryGetSystemFontReference_Internal, (String * familyName, String * styleName, FontReference fontRef, MethodInfo * method)); +DO_APP_FUNC(0x02DD7480, bool, FontEngine_TryGetSystemFontReference, (String * familyName, String * styleName, FontReference * fontRef, MethodInfo * method)); +DO_APP_FUNC(0x02DD7530, bool, FontEngine_TryGetSystemFontReference_Internal, (String * familyName, String * styleName, FontReference * fontRef, MethodInfo * method)); DO_APP_FUNC(0x02DD75A0, FaceInfo, FontEngine_GetFaceInfo, (MethodInfo * method)); -DO_APP_FUNC(0x02DD76A0, int32_t, FontEngine_GetFaceInfo_Internal, (FaceInfo faceInfo, MethodInfo * method)); +DO_APP_FUNC(0x02DD76A0, int32_t, FontEngine_GetFaceInfo_Internal, (FaceInfo * faceInfo, MethodInfo * method)); DO_APP_FUNC(0x02DD76F0, uint32_t, FontEngine_GetGlyphIndex, (uint32_t unicode, MethodInfo * method)); -DO_APP_FUNC(0x02DD7740, bool, FontEngine_TryGetGlyphWithUnicodeValue, (uint32_t unicode, GlyphLoadFlags__Enum flags, Glyph * glyph, MethodInfo * method)); -DO_APP_FUNC(0x02DD7970, bool, FontEngine_TryGetGlyphWithUnicodeValue_Internal, (uint32_t unicode, GlyphLoadFlags__Enum loadFlags, GlyphMarshallingStruct glyphStruct, MethodInfo * method)); -DO_APP_FUNC(0x02DD79E0, bool, FontEngine_TryGetGlyphWithIndexValue, (uint32_t glyphIndex, GlyphLoadFlags__Enum flags, Glyph * glyph, MethodInfo * method)); -DO_APP_FUNC(0x02DD7C10, bool, FontEngine_TryGetGlyphWithIndexValue_Internal, (uint32_t glyphIndex, GlyphLoadFlags__Enum loadFlags, GlyphMarshallingStruct glyphStruct, MethodInfo * method)); +DO_APP_FUNC(0x02DD7740, bool, FontEngine_TryGetGlyphWithUnicodeValue, (uint32_t unicode, GlyphLoadFlags__Enum flags, Glyph * * glyph, MethodInfo * method)); +DO_APP_FUNC(0x02DD7970, bool, FontEngine_TryGetGlyphWithUnicodeValue_Internal, (uint32_t unicode, GlyphLoadFlags__Enum loadFlags, GlyphMarshallingStruct * glyphStruct, MethodInfo * method)); +DO_APP_FUNC(0x02DD79E0, bool, FontEngine_TryGetGlyphWithIndexValue, (uint32_t glyphIndex, GlyphLoadFlags__Enum flags, Glyph * * glyph, MethodInfo * method)); +DO_APP_FUNC(0x02DD7C10, bool, FontEngine_TryGetGlyphWithIndexValue_Internal, (uint32_t glyphIndex, GlyphLoadFlags__Enum loadFlags, GlyphMarshallingStruct * glyphStruct, MethodInfo * method)); DO_APP_FUNC(0x02DD7C80, void, FontEngine_SetTextureUploadMode, (bool shouldUploadImmediately, MethodInfo * method)); -DO_APP_FUNC(0x02DD7CD0, bool, FontEngine_TryAddGlyphToTexture, (uint32_t glyphIndex, int32_t padding, GlyphPackingMode__Enum packingMode, List_1_UnityEngine_TextCore_GlyphRect_ * freeGlyphRects, List_1_UnityEngine_TextCore_GlyphRect_ * usedGlyphRects, GlyphRenderMode__Enum renderMode, Texture2D * texture, Glyph * glyph, MethodInfo * method)); -DO_APP_FUNC(0x02DD8400, bool, FontEngine_TryAddGlyphToTexture_Internal, (uint32_t glyphIndex, int32_t padding, GlyphPackingMode__Enum packingMode, GlyphRect__Array * freeGlyphRects, int32_t freeGlyphRectCount, GlyphRect__Array * usedGlyphRects, int32_t usedGlyphRectCount, GlyphRenderMode__Enum renderMode, Texture2D * texture, GlyphMarshallingStruct glyph, MethodInfo * method)); -DO_APP_FUNC(0x02DD8480, bool, FontEngine_TryAddGlyphsToTexture, (List_1_System_UInt32_ * glyphIndexes, int32_t padding, GlyphPackingMode__Enum packingMode, List_1_UnityEngine_TextCore_GlyphRect_ * freeGlyphRects, List_1_UnityEngine_TextCore_GlyphRect_ * usedGlyphRects, GlyphRenderMode__Enum renderMode, Texture2D * texture, Glyph__Array * glyphs, MethodInfo * method)); -DO_APP_FUNC(0x02DD9120, bool, FontEngine_TryAddGlyphsToTexture_Internal, (UInt32__Array * glyphIndex, int32_t padding, GlyphPackingMode__Enum packingMode, GlyphRect__Array * freeGlyphRects, int32_t freeGlyphRectCount, GlyphRect__Array * usedGlyphRects, int32_t usedGlyphRectCount, GlyphRenderMode__Enum renderMode, Texture2D * texture, GlyphMarshallingStruct__Array * glyphs, int32_t glyphCount, MethodInfo * method)); +DO_APP_FUNC(0x02DD7CD0, bool, FontEngine_TryAddGlyphToTexture, (uint32_t glyphIndex, int32_t padding, GlyphPackingMode__Enum packingMode, List_1_UnityEngine_TextCore_GlyphRect_ * freeGlyphRects, List_1_UnityEngine_TextCore_GlyphRect_ * usedGlyphRects, GlyphRenderMode__Enum renderMode, Texture2D * texture, Glyph * * glyph, MethodInfo * method)); +DO_APP_FUNC(0x02DD8400, bool, FontEngine_TryAddGlyphToTexture_Internal, (uint32_t glyphIndex, int32_t padding, GlyphPackingMode__Enum packingMode, GlyphRect__Array * freeGlyphRects, int32_t * freeGlyphRectCount, GlyphRect__Array * usedGlyphRects, int32_t * usedGlyphRectCount, GlyphRenderMode__Enum renderMode, Texture2D * texture, GlyphMarshallingStruct * glyph, MethodInfo * method)); +DO_APP_FUNC(0x02DD8480, bool, FontEngine_TryAddGlyphsToTexture, (List_1_System_UInt32_ * glyphIndexes, int32_t padding, GlyphPackingMode__Enum packingMode, List_1_UnityEngine_TextCore_GlyphRect_ * freeGlyphRects, List_1_UnityEngine_TextCore_GlyphRect_ * usedGlyphRects, GlyphRenderMode__Enum renderMode, Texture2D * texture, Glyph__Array * * glyphs, MethodInfo * method)); +DO_APP_FUNC(0x02DD9120, bool, FontEngine_TryAddGlyphsToTexture_Internal, (UInt32__Array * glyphIndex, int32_t padding, GlyphPackingMode__Enum packingMode, GlyphRect__Array * freeGlyphRects, int32_t * freeGlyphRectCount, GlyphRect__Array * usedGlyphRects, int32_t * usedGlyphRectCount, GlyphRenderMode__Enum renderMode, Texture2D * texture, GlyphMarshallingStruct__Array * glyphs, int32_t * glyphCount, MethodInfo * method)); DO_APP_FUNC(0x02DD91B0, GlyphPairAdjustmentRecord__Array *, FontEngine_GetGlyphPairAdjustmentTable, (UInt32__Array * glyphIndexes, MethodInfo * method)); -DO_APP_FUNC(0x02DD9360, GlyphPairAdjustmentRecord__Array *, FontEngine_GetGlyphPairAdjustmentRecords, (List_1_System_UInt32_ * glyphIndexes, int32_t recordCount, MethodInfo * method)); -DO_APP_FUNC(0x02DD9560, int32_t, FontEngine_PopulatePairAdjustmentRecordMarshallingArray_from_KernTable, (UInt32__Array * glyphIndexes, int32_t recordCount, MethodInfo * method)); +DO_APP_FUNC(0x02DD9360, GlyphPairAdjustmentRecord__Array *, FontEngine_GetGlyphPairAdjustmentRecords, (List_1_System_UInt32_ * glyphIndexes, int32_t * recordCount, MethodInfo * method)); +DO_APP_FUNC(0x02DD9560, int32_t, FontEngine_PopulatePairAdjustmentRecordMarshallingArray_from_KernTable, (UInt32__Array * glyphIndexes, int32_t * recordCount, MethodInfo * method)); DO_APP_FUNC(0x02DD95C0, int32_t, FontEngine_GetPairAdjustmentRecordsFromMarshallingArray, (GlyphPairAdjustmentRecord__Array * glyphPairAdjustmentRecords, MethodInfo * method)); DO_APP_FUNC(0x02DD9610, void, FontEngine_ResetAtlasTexture, (Texture2D * texture, MethodInfo * method)); DO_APP_FUNC(0x02DD9660, void, FontEngine__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02DD9A20, int32_t, FontEngineUtilities_MaxValue, (int32_t a, int32_t b, int32_t c, MethodInfo * method)); -DO_APP_FUNC(0x02CE2130, float, GlyphValueRecord_get_xPlacement, (GlyphValueRecord__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CCAAD0, float, GlyphValueRecord_get_yPlacement, (GlyphValueRecord__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CE2140, float, GlyphValueRecord_get_xAdvance, (GlyphValueRecord__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CCABB0, float, GlyphValueRecord_get_yAdvance, (GlyphValueRecord__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CE2130, float, GlyphValueRecord_get_xPlacement, (GlyphValueRecord * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CCAAD0, float, GlyphValueRecord_get_yPlacement, (GlyphValueRecord * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CE2140, float, GlyphValueRecord_get_xAdvance, (GlyphValueRecord * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CCABB0, float, GlyphValueRecord_get_yAdvance, (GlyphValueRecord * __this, MethodInfo * method)); DO_APP_FUNC(0x02D265D0, GlyphValueRecord, GlyphValueRecord_op_Addition, (GlyphValueRecord a, GlyphValueRecord b, MethodInfo * method)); -DO_APP_FUNC(0x02DD9A40, int32_t, GlyphValueRecord_GetHashCode, (GlyphValueRecord__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DD9AA0, bool, GlyphValueRecord_Equals, (GlyphValueRecord__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02DD9B10, bool, GlyphValueRecord_Equals_1, (GlyphValueRecord__Boxed * __this, GlyphValueRecord other, MethodInfo * method)); -DO_APP_FUNC(0x02B78450, uint32_t, GlyphAdjustmentRecord_get_glyphIndex, (GlyphAdjustmentRecord__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DD9B90, GlyphValueRecord, GlyphAdjustmentRecord_get_glyphValueRecord, (GlyphAdjustmentRecord__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DD9BA0, int32_t, GlyphAdjustmentRecord_GetHashCode, (GlyphAdjustmentRecord__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DD9C00, bool, GlyphAdjustmentRecord_Equals, (GlyphAdjustmentRecord__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02DD9C70, bool, GlyphAdjustmentRecord_Equals_1, (GlyphAdjustmentRecord__Boxed * __this, GlyphAdjustmentRecord other, MethodInfo * method)); -DO_APP_FUNC(0x02DD9D00, GlyphAdjustmentRecord, GlyphPairAdjustmentRecord_get_firstAdjustmentRecord, (GlyphPairAdjustmentRecord__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DD6EE0, GlyphAdjustmentRecord, GlyphPairAdjustmentRecord_get_secondAdjustmentRecord, (GlyphPairAdjustmentRecord__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DD9D10, int32_t, GlyphPairAdjustmentRecord_GetHashCode, (GlyphPairAdjustmentRecord__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DD9D80, bool, GlyphPairAdjustmentRecord_Equals, (GlyphPairAdjustmentRecord__Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x02DD9E00, bool, GlyphPairAdjustmentRecord_Equals_1, (GlyphPairAdjustmentRecord__Boxed * __this, GlyphPairAdjustmentRecord other, MethodInfo * method)); -DO_APP_FUNC(0x02DAEB00, String *, PhysicsScene2D_ToString, (PhysicsScene2D__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B78450, int32_t, PhysicsScene2D_GetHashCode, (PhysicsScene2D__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DAEBE0, bool, PhysicsScene2D_Equals, (PhysicsScene2D__Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x02CE4450, bool, PhysicsScene2D_Equals_1, (PhysicsScene2D__Boxed * __this, PhysicsScene2D other, MethodInfo * method)); -DO_APP_FUNC(0x02DAEC70, RaycastHit2D, PhysicsScene2D_Linecast, (PhysicsScene2D__Boxed * __this, Vector2 start, Vector2 end, ContactFilter2D contactFilter, MethodInfo * method)); +DO_APP_FUNC(0x02DD9A40, int32_t, GlyphValueRecord_GetHashCode, (GlyphValueRecord * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DD9AA0, bool, GlyphValueRecord_Equals, (GlyphValueRecord * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02DD9B10, bool, GlyphValueRecord_Equals_1, (GlyphValueRecord * __this, GlyphValueRecord other, MethodInfo * method)); +DO_APP_FUNC(0x02B78450, uint32_t, GlyphAdjustmentRecord_get_glyphIndex, (GlyphAdjustmentRecord * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DD9B90, GlyphValueRecord, GlyphAdjustmentRecord_get_glyphValueRecord, (GlyphAdjustmentRecord * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DD9BA0, int32_t, GlyphAdjustmentRecord_GetHashCode, (GlyphAdjustmentRecord * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DD9C00, bool, GlyphAdjustmentRecord_Equals, (GlyphAdjustmentRecord * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02DD9C70, bool, GlyphAdjustmentRecord_Equals_1, (GlyphAdjustmentRecord * __this, GlyphAdjustmentRecord other, MethodInfo * method)); +DO_APP_FUNC(0x02DD9D00, GlyphAdjustmentRecord, GlyphPairAdjustmentRecord_get_firstAdjustmentRecord, (GlyphPairAdjustmentRecord * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DD6EE0, GlyphAdjustmentRecord, GlyphPairAdjustmentRecord_get_secondAdjustmentRecord, (GlyphPairAdjustmentRecord * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DD9D10, int32_t, GlyphPairAdjustmentRecord_GetHashCode, (GlyphPairAdjustmentRecord * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DD9D80, bool, GlyphPairAdjustmentRecord_Equals, (GlyphPairAdjustmentRecord * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x02DD9E00, bool, GlyphPairAdjustmentRecord_Equals_1, (GlyphPairAdjustmentRecord * __this, GlyphPairAdjustmentRecord other, MethodInfo * method)); +DO_APP_FUNC(0x02DAEB00, String *, PhysicsScene2D_ToString, (PhysicsScene2D * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B78450, int32_t, PhysicsScene2D_GetHashCode, (PhysicsScene2D * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DAEBE0, bool, PhysicsScene2D_Equals, (PhysicsScene2D * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x02CE4450, bool, PhysicsScene2D_Equals_1, (PhysicsScene2D * __this, PhysicsScene2D other, MethodInfo * method)); +DO_APP_FUNC(0x02DAEC70, RaycastHit2D, PhysicsScene2D_Linecast, (PhysicsScene2D * __this, Vector2 start, Vector2 end, ContactFilter2D contactFilter, MethodInfo * method)); DO_APP_FUNC(0x02DAED60, RaycastHit2D, PhysicsScene2D_Linecast_Internal, (PhysicsScene2D physicsScene, Vector2 start, Vector2 end, ContactFilter2D contactFilter, MethodInfo * method)); -DO_APP_FUNC(0x02DAEDF0, RaycastHit2D, PhysicsScene2D_Raycast, (PhysicsScene2D__Boxed * __this, Vector2 origin, Vector2 direction, float distance, int32_t layerMask, MethodInfo * method)); -DO_APP_FUNC(0x02DAEF50, RaycastHit2D, PhysicsScene2D_Raycast_1, (PhysicsScene2D__Boxed * __this, Vector2 origin, Vector2 direction, float distance, ContactFilter2D contactFilter, MethodInfo * method)); +DO_APP_FUNC(0x02DAEDF0, RaycastHit2D, PhysicsScene2D_Raycast, (PhysicsScene2D * __this, Vector2 origin, Vector2 direction, float distance, int32_t layerMask, MethodInfo * method)); +DO_APP_FUNC(0x02DAEF50, RaycastHit2D, PhysicsScene2D_Raycast_1, (PhysicsScene2D * __this, Vector2 origin, Vector2 direction, float distance, ContactFilter2D contactFilter, MethodInfo * method)); DO_APP_FUNC(0x02DAF050, RaycastHit2D, PhysicsScene2D_Raycast_Internal, (PhysicsScene2D physicsScene, Vector2 origin, Vector2 direction, float distance, ContactFilter2D contactFilter, MethodInfo * method)); -DO_APP_FUNC(0x02DAF0F0, int32_t, PhysicsScene2D_Raycast_2, (PhysicsScene2D__Boxed * __this, Vector2 origin, Vector2 direction, float distance, ContactFilter2D contactFilter, RaycastHit2D__Array * results, MethodInfo * method)); +DO_APP_FUNC(0x02DAF0F0, int32_t, PhysicsScene2D_Raycast_2, (PhysicsScene2D * __this, Vector2 origin, Vector2 direction, float distance, ContactFilter2D contactFilter, RaycastHit2D__Array * results, MethodInfo * method)); DO_APP_FUNC(0x02DAF1B0, int32_t, PhysicsScene2D_RaycastArray_Internal, (PhysicsScene2D physicsScene, Vector2 origin, Vector2 direction, float distance, ContactFilter2D contactFilter, RaycastHit2D__Array * results, MethodInfo * method)); -DO_APP_FUNC(0x02DAF250, int32_t, PhysicsScene2D_Raycast_3, (PhysicsScene2D__Boxed * __this, Vector2 origin, Vector2 direction, float distance, ContactFilter2D contactFilter, List_1_UnityEngine_RaycastHit2D_ * results, MethodInfo * method)); +DO_APP_FUNC(0x02DAF250, int32_t, PhysicsScene2D_Raycast_3, (PhysicsScene2D * __this, Vector2 origin, Vector2 direction, float distance, ContactFilter2D contactFilter, List_1_UnityEngine_RaycastHit2D_ * results, MethodInfo * method)); DO_APP_FUNC(0x02DAF310, int32_t, PhysicsScene2D_RaycastList_Internal, (PhysicsScene2D physicsScene, Vector2 origin, Vector2 direction, float distance, ContactFilter2D contactFilter, List_1_UnityEngine_RaycastHit2D_ * results, MethodInfo * method)); -DO_APP_FUNC(0x02DAF3B0, RaycastHit2D, PhysicsScene2D_CircleCast, (PhysicsScene2D__Boxed * __this, Vector2 origin, float radius, Vector2 direction, float distance, ContactFilter2D contactFilter, MethodInfo * method)); +DO_APP_FUNC(0x02DAF3B0, RaycastHit2D, PhysicsScene2D_CircleCast, (PhysicsScene2D * __this, Vector2 origin, float radius, Vector2 direction, float distance, ContactFilter2D contactFilter, MethodInfo * method)); DO_APP_FUNC(0x02DAF4D0, RaycastHit2D, PhysicsScene2D_CircleCast_Internal, (PhysicsScene2D physicsScene, Vector2 origin, float radius, Vector2 direction, float distance, ContactFilter2D contactFilter, MethodInfo * method)); -DO_APP_FUNC(0x02DAF580, RaycastHit2D, PhysicsScene2D_GetRayIntersection, (PhysicsScene2D__Boxed * __this, Ray ray, float distance, int32_t layerMask, MethodInfo * method)); +DO_APP_FUNC(0x02DAF580, RaycastHit2D, PhysicsScene2D_GetRayIntersection, (PhysicsScene2D * __this, Ray ray, float distance, int32_t layerMask, MethodInfo * method)); DO_APP_FUNC(0x02DAF680, RaycastHit2D, PhysicsScene2D_GetRayIntersection_Internal, (PhysicsScene2D physicsScene, Vector3 origin, Vector3 direction, float distance, int32_t layerMask, MethodInfo * method)); -DO_APP_FUNC(0x02DAF720, int32_t, PhysicsScene2D_GetRayIntersection_1, (PhysicsScene2D__Boxed * __this, Ray ray, float distance, RaycastHit2D__Array * results, int32_t layerMask, MethodInfo * method)); +DO_APP_FUNC(0x02DAF720, int32_t, PhysicsScene2D_GetRayIntersection_1, (PhysicsScene2D * __this, Ray ray, float distance, RaycastHit2D__Array * results, int32_t layerMask, MethodInfo * method)); DO_APP_FUNC(0x02DAF7D0, int32_t, PhysicsScene2D_GetRayIntersectionArray_Internal, (PhysicsScene2D physicsScene, Vector3 origin, Vector3 direction, float distance, int32_t layerMask, RaycastHit2D__Array * results, MethodInfo * method)); -DO_APP_FUNC(0x02DAF860, Collider2D *, PhysicsScene2D_OverlapPoint, (PhysicsScene2D__Boxed * __this, Vector2 point, ContactFilter2D contactFilter, MethodInfo * method)); +DO_APP_FUNC(0x02DAF860, Collider2D *, PhysicsScene2D_OverlapPoint, (PhysicsScene2D * __this, Vector2 point, ContactFilter2D contactFilter, MethodInfo * method)); DO_APP_FUNC(0x02DAF8E0, Collider2D *, PhysicsScene2D_OverlapPoint_Internal, (PhysicsScene2D physicsScene, Vector2 point, ContactFilter2D contactFilter, MethodInfo * method)); -DO_APP_FUNC(0x02DAF950, Collider2D *, PhysicsScene2D_OverlapCircle, (PhysicsScene2D__Boxed * __this, Vector2 point, float radius, ContactFilter2D contactFilter, MethodInfo * method)); +DO_APP_FUNC(0x02DAF950, Collider2D *, PhysicsScene2D_OverlapCircle, (PhysicsScene2D * __this, Vector2 point, float radius, ContactFilter2D contactFilter, MethodInfo * method)); DO_APP_FUNC(0x02DAF9E0, Collider2D *, PhysicsScene2D_OverlapCircle_Internal, (PhysicsScene2D physicsScene, Vector2 point, float radius, ContactFilter2D contactFilter, MethodInfo * method)); -DO_APP_FUNC(0x02DAFA60, int32_t, PhysicsScene2D_OverlapCircle_1, (PhysicsScene2D__Boxed * __this, Vector2 point, float radius, ContactFilter2D contactFilter, Collider2D__Array * results, MethodInfo * method)); +DO_APP_FUNC(0x02DAFA60, int32_t, PhysicsScene2D_OverlapCircle_1, (PhysicsScene2D * __this, Vector2 point, float radius, ContactFilter2D contactFilter, Collider2D__Array * results, MethodInfo * method)); DO_APP_FUNC(0x02DAFB10, int32_t, PhysicsScene2D_OverlapCircleArray_Internal, (PhysicsScene2D physicsScene, Vector2 point, float radius, ContactFilter2D contactFilter, Collider2D__Array * results, MethodInfo * method)); -DO_APP_FUNC(0x02DAFBA0, void, PhysicsScene2D_Linecast_Internal_Injected, (PhysicsScene2D physicsScene, Vector2 start, Vector2 end, ContactFilter2D contactFilter, RaycastHit2D ret, MethodInfo * method)); -DO_APP_FUNC(0x02DAFC30, void, PhysicsScene2D_Raycast_Internal_Injected, (PhysicsScene2D physicsScene, Vector2 origin, Vector2 direction, float distance, ContactFilter2D contactFilter, RaycastHit2D ret, MethodInfo * method)); -DO_APP_FUNC(0x02DAFCC0, int32_t, PhysicsScene2D_RaycastArray_Internal_Injected, (PhysicsScene2D physicsScene, Vector2 origin, Vector2 direction, float distance, ContactFilter2D contactFilter, RaycastHit2D__Array * results, MethodInfo * method)); -DO_APP_FUNC(0x02DAFD50, int32_t, PhysicsScene2D_RaycastList_Internal_Injected, (PhysicsScene2D physicsScene, Vector2 origin, Vector2 direction, float distance, ContactFilter2D contactFilter, List_1_UnityEngine_RaycastHit2D_ * results, MethodInfo * method)); -DO_APP_FUNC(0x02DAFDE0, void, PhysicsScene2D_CircleCast_Internal_Injected, (PhysicsScene2D physicsScene, Vector2 origin, float radius, Vector2 direction, float distance, ContactFilter2D contactFilter, RaycastHit2D ret, MethodInfo * method)); -DO_APP_FUNC(0x02DAFE70, void, PhysicsScene2D_GetRayIntersection_Internal_Injected, (PhysicsScene2D physicsScene, Vector3 origin, Vector3 direction, float distance, int32_t layerMask, RaycastHit2D ret, MethodInfo * method)); -DO_APP_FUNC(0x02DAFF00, int32_t, PhysicsScene2D_GetRayIntersectionArray_Internal_Injected, (PhysicsScene2D physicsScene, Vector3 origin, Vector3 direction, float distance, int32_t layerMask, RaycastHit2D__Array * results, MethodInfo * method)); -DO_APP_FUNC(0x02DAFF90, Collider2D *, PhysicsScene2D_OverlapPoint_Internal_Injected, (PhysicsScene2D physicsScene, Vector2 point, ContactFilter2D contactFilter, MethodInfo * method)); -DO_APP_FUNC(0x02DB0000, Collider2D *, PhysicsScene2D_OverlapCircle_Internal_Injected, (PhysicsScene2D physicsScene, Vector2 point, float radius, ContactFilter2D contactFilter, MethodInfo * method)); -DO_APP_FUNC(0x02DB0080, int32_t, PhysicsScene2D_OverlapCircleArray_Internal_Injected, (PhysicsScene2D physicsScene, Vector2 point, float radius, ContactFilter2D contactFilter, Collider2D__Array * results, MethodInfo * method)); +DO_APP_FUNC(0x02DAFBA0, void, PhysicsScene2D_Linecast_Internal_Injected, (PhysicsScene2D * physicsScene, Vector2 * start, Vector2 * end, ContactFilter2D * contactFilter, RaycastHit2D * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DAFC30, void, PhysicsScene2D_Raycast_Internal_Injected, (PhysicsScene2D * physicsScene, Vector2 * origin, Vector2 * direction, float distance, ContactFilter2D * contactFilter, RaycastHit2D * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DAFCC0, int32_t, PhysicsScene2D_RaycastArray_Internal_Injected, (PhysicsScene2D * physicsScene, Vector2 * origin, Vector2 * direction, float distance, ContactFilter2D * contactFilter, RaycastHit2D__Array * results, MethodInfo * method)); +DO_APP_FUNC(0x02DAFD50, int32_t, PhysicsScene2D_RaycastList_Internal_Injected, (PhysicsScene2D * physicsScene, Vector2 * origin, Vector2 * direction, float distance, ContactFilter2D * contactFilter, List_1_UnityEngine_RaycastHit2D_ * results, MethodInfo * method)); +DO_APP_FUNC(0x02DAFDE0, void, PhysicsScene2D_CircleCast_Internal_Injected, (PhysicsScene2D * physicsScene, Vector2 * origin, float radius, Vector2 * direction, float distance, ContactFilter2D * contactFilter, RaycastHit2D * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DAFE70, void, PhysicsScene2D_GetRayIntersection_Internal_Injected, (PhysicsScene2D * physicsScene, Vector3 * origin, Vector3 * direction, float distance, int32_t layerMask, RaycastHit2D * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DAFF00, int32_t, PhysicsScene2D_GetRayIntersectionArray_Internal_Injected, (PhysicsScene2D * physicsScene, Vector3 * origin, Vector3 * direction, float distance, int32_t layerMask, RaycastHit2D__Array * results, MethodInfo * method)); +DO_APP_FUNC(0x02DAFF90, Collider2D *, PhysicsScene2D_OverlapPoint_Internal_Injected, (PhysicsScene2D * physicsScene, Vector2 * point, ContactFilter2D * contactFilter, MethodInfo * method)); +DO_APP_FUNC(0x02DB0000, Collider2D *, PhysicsScene2D_OverlapCircle_Internal_Injected, (PhysicsScene2D * physicsScene, Vector2 * point, float radius, ContactFilter2D * contactFilter, MethodInfo * method)); +DO_APP_FUNC(0x02DB0080, int32_t, PhysicsScene2D_OverlapCircleArray_Internal_Injected, (PhysicsScene2D * physicsScene, Vector2 * point, float radius, ContactFilter2D * contactFilter, Collider2D__Array * results, MethodInfo * method)); DO_APP_FUNC(0x00A35CC0, PhysicsScene2D, Physics2D_get_defaultPhysicsScene, (MethodInfo * method)); DO_APP_FUNC(0x02DB0110, bool, Physics2D_get_queriesHitTriggers, (MethodInfo * method)); DO_APP_FUNC(0x02DB0160, RaycastHit2D, Physics2D_Linecast, (Vector2 start, Vector2 end, int32_t layerMask, MethodInfo * method)); @@ -116998,23 +129578,23 @@ DO_APP_FUNC(0x02DB1A10, Collider2D__Array *, Physics2D_OverlapCircleAll, (Vector DO_APP_FUNC(0x02DB1B80, Collider2D__Array *, Physics2D_OverlapCircleAll_Internal, (PhysicsScene2D physicsScene, Vector2 point, float radius, ContactFilter2D contactFilter, MethodInfo * method)); DO_APP_FUNC(0x02DB1C30, int32_t, Physics2D_OverlapCircleNonAlloc, (Vector2 point, float radius, Collider2D__Array * results, int32_t layerMask, MethodInfo * method)); DO_APP_FUNC(0x02DB1D70, void, Physics2D__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02DB1E50, RaycastHit2D__Array *, Physics2D_GetRayIntersectionAll_Internal_Injected, (PhysicsScene2D physicsScene, Vector3 origin, Vector3 direction, float distance, int32_t layerMask, MethodInfo * method)); -DO_APP_FUNC(0x02DB1EE0, Collider2D__Array *, Physics2D_OverlapCircleAll_Internal_Injected, (PhysicsScene2D physicsScene, Vector2 point, float radius, ContactFilter2D contactFilter, MethodInfo * method)); -DO_APP_FUNC(0x02DB1F60, void, ContactFilter2D_CheckConsistency, (ContactFilter2D__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DB1FB0, void, ContactFilter2D_SetLayerMask, (ContactFilter2D__Boxed * __this, LayerMask layerMask, MethodInfo * method)); -DO_APP_FUNC(0x02DB1FC0, void, ContactFilter2D_SetDepth, (ContactFilter2D__Boxed * __this, float minDepth, float maxDepth, MethodInfo * method)); +DO_APP_FUNC(0x02DB1E50, RaycastHit2D__Array *, Physics2D_GetRayIntersectionAll_Internal_Injected, (PhysicsScene2D * physicsScene, Vector3 * origin, Vector3 * direction, float distance, int32_t layerMask, MethodInfo * method)); +DO_APP_FUNC(0x02DB1EE0, Collider2D__Array *, Physics2D_OverlapCircleAll_Internal_Injected, (PhysicsScene2D * physicsScene, Vector2 * point, float radius, ContactFilter2D * contactFilter, MethodInfo * method)); +DO_APP_FUNC(0x02DB1F60, void, ContactFilter2D_CheckConsistency, (ContactFilter2D * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DB1FB0, void, ContactFilter2D_SetLayerMask, (ContactFilter2D * __this, LayerMask layerMask, MethodInfo * method)); +DO_APP_FUNC(0x02DB1FC0, void, ContactFilter2D_SetDepth, (ContactFilter2D * __this, float minDepth, float maxDepth, MethodInfo * method)); DO_APP_FUNC(0x02DB2020, ContactFilter2D, ContactFilter2D_CreateLegacyFilter, (int32_t layerMask, float minDepth, float maxDepth, MethodInfo * method)); -DO_APP_FUNC(0x02DB1F60, void, ContactFilter2D_CheckConsistency_Injected, (ContactFilter2D _unity_self, MethodInfo * method)); +DO_APP_FUNC(0x02DB1F60, void, ContactFilter2D_CheckConsistency_Injected, (ContactFilter2D * _unity_self, MethodInfo * method)); DO_APP_FUNC(0x02DB2160, Collider2D *, Collision2D_get_collider, (Collision2D * __this, MethodInfo * method)); DO_APP_FUNC(0x02DB2250, Rigidbody2D *, Collision2D_get_rigidbody, (Collision2D * __this, MethodInfo * method)); DO_APP_FUNC(0x02DB2310, GameObject *, Collision2D_get_gameObject, (Collision2D * __this, MethodInfo * method)); DO_APP_FUNC(0x01ED3340, Vector2, Collision2D_get_relativeVelocity, (Collision2D * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171D170, Vector2, RaycastHit2D_get_point, (RaycastHit2D__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01447170, Vector2, RaycastHit2D_get_normal, (RaycastHit2D__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DB24C0, float, RaycastHit2D_get_distance, (RaycastHit2D__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DB24D0, Collider2D *, RaycastHit2D_get_collider, (RaycastHit2D__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DB25C0, Rigidbody2D *, RaycastHit2D_get_rigidbody, (RaycastHit2D__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DB2730, Transform *, RaycastHit2D_get_transform, (RaycastHit2D__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171D170, Vector2, RaycastHit2D_get_point, (RaycastHit2D * __this, MethodInfo * method)); +DO_APP_FUNC(0x01447170, Vector2, RaycastHit2D_get_normal, (RaycastHit2D * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DB24C0, float, RaycastHit2D_get_distance, (RaycastHit2D * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DB24D0, Collider2D *, RaycastHit2D_get_collider, (RaycastHit2D * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DB25C0, Rigidbody2D *, RaycastHit2D_get_rigidbody, (RaycastHit2D * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DB2730, Transform *, RaycastHit2D_get_transform, (RaycastHit2D * __this, MethodInfo * method)); DO_APP_FUNC(0x02DB29B0, bool, RaycastHit2D_op_Implicit, (RaycastHit2D hit, MethodInfo * method)); DO_APP_FUNC(0x02DB2AC0, Vector2, Rigidbody2D_get_position, (Rigidbody2D * __this, MethodInfo * method)); DO_APP_FUNC(0x02DB2B20, float, Rigidbody2D_get_rotation, (Rigidbody2D * __this, MethodInfo * method)); @@ -117047,39 +129627,42 @@ DO_APP_FUNC(0x02DB3410, void, Rigidbody2D_AddForceAtPosition_1, (Rigidbody2D * _ DO_APP_FUNC(0x02DB3490, void, Rigidbody2D_AddTorque, (Rigidbody2D * __this, float torque, MethodInfo * method)); DO_APP_FUNC(0x02DB3500, void, Rigidbody2D_AddTorque_1, (Rigidbody2D * __this, float torque, ForceMode2D__Enum mode, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, Rigidbody2D__ctor, (Rigidbody2D * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DB3570, void, Rigidbody2D_get_position_Injected, (Rigidbody2D * __this, Vector2 ret, MethodInfo * method)); -DO_APP_FUNC(0x02DB35D0, void, Rigidbody2D_MovePosition_Injected, (Rigidbody2D * __this, Vector2 position, MethodInfo * method)); -DO_APP_FUNC(0x02DB3630, void, Rigidbody2D_get_velocity_Injected, (Rigidbody2D * __this, Vector2 ret, MethodInfo * method)); -DO_APP_FUNC(0x02DB3690, void, Rigidbody2D_set_velocity_Injected, (Rigidbody2D * __this, Vector2 value, MethodInfo * method)); -DO_APP_FUNC(0x02DB36F0, void, Rigidbody2D_AddForce_Injected, (Rigidbody2D * __this, Vector2 force, ForceMode2D__Enum mode, MethodInfo * method)); -DO_APP_FUNC(0x02DB3760, void, Rigidbody2D_AddForceAtPosition_Injected, (Rigidbody2D * __this, Vector2 force, Vector2 position, ForceMode2D__Enum mode, MethodInfo * method)); +DO_APP_FUNC(0x02DB3570, void, Rigidbody2D_get_position_Injected, (Rigidbody2D * __this, Vector2 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DB35D0, void, Rigidbody2D_MovePosition_Injected, (Rigidbody2D * __this, Vector2 * position, MethodInfo * method)); +DO_APP_FUNC(0x02DB3630, void, Rigidbody2D_get_velocity_Injected, (Rigidbody2D * __this, Vector2 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DB3690, void, Rigidbody2D_set_velocity_Injected, (Rigidbody2D * __this, Vector2 * value, MethodInfo * method)); +DO_APP_FUNC(0x02DB36F0, void, Rigidbody2D_AddForce_Injected, (Rigidbody2D * __this, Vector2 * force, ForceMode2D__Enum mode, MethodInfo * method)); +DO_APP_FUNC(0x02DB3760, void, Rigidbody2D_AddForceAtPosition_Injected, (Rigidbody2D * __this, Vector2 * force, Vector2 * position, ForceMode2D__Enum mode, MethodInfo * method)); DO_APP_FUNC(0x02DB37E0, Vector2, Collider2D_get_offset, (Collider2D * __this, MethodInfo * method)); DO_APP_FUNC(0x02DB3840, void, Collider2D_set_offset, (Collider2D * __this, Vector2 value, MethodInfo * method)); DO_APP_FUNC(0x02DB38A0, Rigidbody2D *, Collider2D_get_attachedRigidbody, (Collider2D * __this, MethodInfo * method)); DO_APP_FUNC(0x02DB38F0, Bounds, Collider2D_get_bounds, (Collider2D * __this, MethodInfo * method)); DO_APP_FUNC(0x02DB3960, bool, Collider2D_OverlapPoint, (Collider2D * __this, Vector2 point, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, Collider2D__ctor, (Collider2D * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DB39C0, void, Collider2D_get_offset_Injected, (Collider2D * __this, Vector2 ret, MethodInfo * method)); -DO_APP_FUNC(0x02DB3A20, void, Collider2D_set_offset_Injected, (Collider2D * __this, Vector2 value, MethodInfo * method)); -DO_APP_FUNC(0x02DB3A80, void, Collider2D_get_bounds_Injected, (Collider2D * __this, Bounds ret, MethodInfo * method)); -DO_APP_FUNC(0x02DB3AE0, bool, Collider2D_OverlapPoint_Injected, (Collider2D * __this, Vector2 point, MethodInfo * method)); +DO_APP_FUNC(0x02DB39C0, void, Collider2D_get_offset_Injected, (Collider2D * __this, Vector2 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DB3A20, void, Collider2D_set_offset_Injected, (Collider2D * __this, Vector2 * value, MethodInfo * method)); +DO_APP_FUNC(0x02DB3A80, void, Collider2D_get_bounds_Injected, (Collider2D * __this, Bounds * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DB3AE0, bool, Collider2D_OverlapPoint_Injected, (Collider2D * __this, Vector2 * point, MethodInfo * method)); DO_APP_FUNC(0x02DB3B40, float, CircleCollider2D_get_radius, (CircleCollider2D * __this, MethodInfo * method)); DO_APP_FUNC(0x02DB3B90, void, CircleCollider2D_set_radius, (CircleCollider2D * __this, float value, MethodInfo * method)); DO_APP_FUNC(0x02DB3BF0, Vector2, BoxCollider2D_get_size, (BoxCollider2D * __this, MethodInfo * method)); DO_APP_FUNC(0x02DB3C50, void, BoxCollider2D_set_size, (BoxCollider2D * __this, Vector2 value, MethodInfo * method)); -DO_APP_FUNC(0x02DB3CB0, void, BoxCollider2D_get_size_Injected, (BoxCollider2D * __this, Vector2 ret, MethodInfo * method)); -DO_APP_FUNC(0x02DB3D10, void, BoxCollider2D_set_size_Injected, (BoxCollider2D * __this, Vector2 value, MethodInfo * method)); +DO_APP_FUNC(0x02DB3CB0, void, BoxCollider2D_get_size_Injected, (BoxCollider2D * __this, Vector2 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DB3D10, void, BoxCollider2D_set_size_Injected, (BoxCollider2D * __this, Vector2 * value, MethodInfo * method)); DO_APP_FUNC(0x02DB3D70, int32_t, PolygonCollider2D_GetTotalPointCount, (PolygonCollider2D * __this, MethodInfo * method)); DO_APP_FUNC(0x02DB3DC0, Vector2__Array *, PolygonCollider2D_get_points, (PolygonCollider2D * __this, MethodInfo * method)); DO_APP_FUNC(0x02DB3E10, int32_t, PolygonCollider2D_get_pathCount, (PolygonCollider2D * __this, MethodInfo * method)); DO_APP_FUNC(0x02DB3E60, Vector2__Array *, PolygonCollider2D_GetPath, (PolygonCollider2D * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19A10, PolygonCollider2D_GetPath__MethodInfo); DO_APP_FUNC(0x02DB4020, Vector2__Array *, PolygonCollider2D_GetPath_Internal, (PolygonCollider2D * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x02DB4080, int32_t, CompositeCollider2D_get_pathCount, (CompositeCollider2D * __this, MethodInfo * method)); DO_APP_FUNC(0x02DB40D0, int32_t, CompositeCollider2D_get_pointCount, (CompositeCollider2D * __this, MethodInfo * method)); DO_APP_FUNC(0x02DB4120, int32_t, CompositeCollider2D_GetPath, (CompositeCollider2D * __this, int32_t index, Vector2__Array * points, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19A68, CompositeCollider2D_GetPath__MethodInfo); DO_APP_FUNC(0x02DB4300, int32_t, CompositeCollider2D_GetPathArray_Internal, (CompositeCollider2D * __this, int32_t index, Vector2__Array * points, MethodInfo * method)); DO_APP_FUNC(0x030101B0, String *, WebRequestUtils_RedirectTo, (String * baseUri, String * redirectUri, MethodInfo * method)); DO_APP_FUNC(0x03010340, String *, WebRequestUtils_MakeInitialUrl, (String * targetUrl, String * localUrl, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF38E0, WebRequestUtils_MakeInitialUrl__MethodInfo); DO_APP_FUNC(0x03010800, String *, WebRequestUtils_MakeUriString, (Uri * targetUri, String * targetUrl, bool prependProtocol, MethodInfo * method)); DO_APP_FUNC(0x03010C20, String *, WebRequestUtils_URLDecode, (String * encoded, MethodInfo * method)); DO_APP_FUNC(0x03010D20, void, WebRequestUtils__cctor, (MethodInfo * method)); @@ -117115,20 +129698,25 @@ DO_APP_FUNC(0x03012570, UnityWebRequestAsyncOperation *, UnityWebRequest_SendWeb DO_APP_FUNC(0x03012620, void, UnityWebRequest_Abort, (UnityWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x03012670, UnityWebRequest_UnityWebRequestError__Enum, UnityWebRequest_SetMethod, (UnityWebRequest * __this, UnityWebRequest_UnityWebRequestMethod__Enum methodType, MethodInfo * method)); DO_APP_FUNC(0x030126D0, void, UnityWebRequest_InternalSetMethod, (UnityWebRequest * __this, UnityWebRequest_UnityWebRequestMethod__Enum methodType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3738, UnityWebRequest_InternalSetMethod__MethodInfo); DO_APP_FUNC(0x03012820, UnityWebRequest_UnityWebRequestError__Enum, UnityWebRequest_SetCustomMethod, (UnityWebRequest * __this, String * customMethodName, MethodInfo * method)); DO_APP_FUNC(0x03012880, void, UnityWebRequest_InternalSetCustomMethod, (UnityWebRequest * __this, String * customMethodName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3730, UnityWebRequest_InternalSetCustomMethod__MethodInfo); DO_APP_FUNC(0x030129D0, UnityWebRequest_UnityWebRequestMethod__Enum, UnityWebRequest_GetMethod, (UnityWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x03012A20, String *, UnityWebRequest_GetCustomMethod, (UnityWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x03012A70, String *, UnityWebRequest_get_method, (UnityWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x03012BA0, void, UnityWebRequest_set_method, (UnityWebRequest * __this, String * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3790, UnityWebRequest_set_method__MethodInfo); DO_APP_FUNC(0x03012F00, UnityWebRequest_UnityWebRequestError__Enum, UnityWebRequest_GetError, (UnityWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x03012F50, String *, UnityWebRequest_get_error, (UnityWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x030131D0, String *, UnityWebRequest_get_url, (UnityWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x03013220, void, UnityWebRequest_set_url, (UnityWebRequest * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x030132B0, void, UnityWebRequest_set_uri, (UnityWebRequest * __this, Uri * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF37B8, UnityWebRequest_set_uri__MethodInfo); DO_APP_FUNC(0x030131D0, String *, UnityWebRequest_GetUrl, (UnityWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x03013440, UnityWebRequest_UnityWebRequestError__Enum, UnityWebRequest_SetUrl, (UnityWebRequest * __this, String * url, MethodInfo * method)); DO_APP_FUNC(0x030134A0, void, UnityWebRequest_InternalSetUrl, (UnityWebRequest * __this, String * url, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3680, UnityWebRequest_InternalSetUrl__MethodInfo); DO_APP_FUNC(0x030135F0, int64_t, UnityWebRequest_get_responseCode, (UnityWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x03013640, bool, UnityWebRequest_get_isModifiable, (UnityWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x03013690, bool, UnityWebRequest_get_isDone, (UnityWebRequest * __this, MethodInfo * method)); @@ -117139,14 +129727,18 @@ DO_APP_FUNC(0x03013790, void, UnityWebRequest_set_redirectLimit, (UnityWebReques DO_APP_FUNC(0x030137F0, UnityWebRequest_UnityWebRequestError__Enum, UnityWebRequest_SetUploadHandler, (UnityWebRequest * __this, UploadHandler * uh, MethodInfo * method)); DO_APP_FUNC(0x0244BAA0, UploadHandler *, UnityWebRequest_get_uploadHandler, (UnityWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x03013850, void, UnityWebRequest_set_uploadHandler, (UnityWebRequest * __this, UploadHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF36F0, UnityWebRequest_set_uploadHandler__MethodInfo); DO_APP_FUNC(0x030139F0, UnityWebRequest_UnityWebRequestError__Enum, UnityWebRequest_SetDownloadHandler, (UnityWebRequest * __this, DownloadHandler * dh, MethodInfo * method)); DO_APP_FUNC(0x014462E0, DownloadHandler *, UnityWebRequest_get_downloadHandler, (UnityWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x03013A50, void, UnityWebRequest_set_downloadHandler, (UnityWebRequest * __this, DownloadHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF36D8, UnityWebRequest_set_downloadHandler__MethodInfo); DO_APP_FUNC(0x03013BF0, UnityWebRequest_UnityWebRequestError__Enum, UnityWebRequest_SetCertificateHandler, (UnityWebRequest * __this, CertificateHandler * ch, MethodInfo * method)); DO_APP_FUNC(0x02D4E470, CertificateHandler *, UnityWebRequest_get_certificateHandler, (UnityWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x03013C50, void, UnityWebRequest_set_certificateHandler, (UnityWebRequest * __this, CertificateHandler * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3718, UnityWebRequest_set_certificateHandler__MethodInfo); DO_APP_FUNC(0x03013DF0, UnityWebRequest_UnityWebRequestError__Enum, UnityWebRequest_SetTimeoutMsec, (UnityWebRequest * __this, int32_t timeout, MethodInfo * method)); DO_APP_FUNC(0x03013E50, void, UnityWebRequest_set_timeout, (UnityWebRequest * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3700, UnityWebRequest_set_timeout__MethodInfo); DO_APP_FUNC(0x03013FE0, UnityWebRequest *, UnityWebRequest_Get, (String * uri, MethodInfo * method)); DO_APP_FUNC(0x030140E0, UnityWebRequest *, UnityWebRequest_Get_1, (Uri * uri, MethodInfo * method)); DO_APP_FUNC(0x030141E0, void, CertificateHandler_Release, (CertificateHandler * __this, MethodInfo * method)); @@ -117171,11 +129763,11 @@ DO_APP_FUNC(0x03014A90, void, DownloadHandler_ReceiveContentLengthHeader, (Downl DO_APP_FUNC(0x003AE050, void, DownloadHandler_ReceiveContentLength, (DownloadHandler * __this, int32_t contentLength, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, DownloadHandler_CompleteContent, (DownloadHandler * __this, MethodInfo * method)); DO_APP_FUNC(0x02D06DB0, float, DownloadHandler_GetProgress, (DownloadHandler * __this, MethodInfo * method)); -DO_APP_FUNC(0x03014AB0, uint8_t *, DownloadHandler_InternalGetByteArray, (DownloadHandler * dh, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x03014AB0, uint8_t *, DownloadHandler_InternalGetByteArray, (DownloadHandler * dh, int32_t * length, MethodInfo * method)); DO_APP_FUNC(0x03014480, Byte__Array *, DownloadHandler_InternalGetByteArray_1, (DownloadHandler * dh, MethodInfo * method)); -DO_APP_FUNC(0x03014B10, NativeArray_1_System_Byte_, DownloadHandler_InternalGetNativeArray, (DownloadHandler * dh, NativeArray_1_System_Byte_ nativeArray, MethodInfo * method)); -DO_APP_FUNC(0x03014C50, void, DownloadHandler_DisposeNativeArray, (NativeArray_1_System_Byte_ data, MethodInfo * method)); -DO_APP_FUNC(0x03014C90, void, DownloadHandler_CreateNativeArrayForNativeData, (NativeArray_1_System_Byte_ data, uint8_t * bytes, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x03014B10, NativeArray_1_System_Byte_, DownloadHandler_InternalGetNativeArray, (DownloadHandler * dh, NativeArray_1_System_Byte_ * nativeArray, MethodInfo * method)); +DO_APP_FUNC(0x03014C50, void, DownloadHandler_DisposeNativeArray, (NativeArray_1_System_Byte_ * data, MethodInfo * method)); +DO_APP_FUNC(0x03014C90, void, DownloadHandler_CreateNativeArrayForNativeData, (NativeArray_1_System_Byte_ * data, uint8_t * bytes, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x03014D00, void *, DownloadHandlerBuffer_Create, (DownloadHandlerBuffer * obj, MethodInfo * method)); DO_APP_FUNC(0x03014D50, void, DownloadHandlerBuffer_InternalCreateBuffer, (DownloadHandlerBuffer * __this, MethodInfo * method)); DO_APP_FUNC(0x03014D50, void, DownloadHandlerBuffer__ctor, (DownloadHandlerBuffer * __this, MethodInfo * method)); @@ -117197,21 +129789,21 @@ DO_APP_FUNC(0x003BB3E0, Int32__Array *, Serialization_get_ValuePositions, (Seria DO_APP_FUNC(0x003BB330, Object_1__Array *, Serialization_get_UnityObjects, (Serialization * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7320, String *, Serialization_get_Version, (Serialization * __this, MethodInfo * method)); DO_APP_FUNC(0x01C47A80, void, Serialization_Serialize, (Serialization * __this, Object * obj, bool useFields, MemberVisibility__Enum visibility, MethodInfo * method)); -DO_APP_FUNC(0x01C48160, void, Serialization_SerializeFields, (Object * obj, int32_t hashPrefix, List_1_System_Int32_ * valueHashes, List_1_System_Int32_ * valuePositions, List_1_System_Byte_ * values, Object_1__Array * unityObjects, MemberVisibility__Enum visibility, MethodInfo * method)); -DO_APP_FUNC(0x01C48300, void, Serialization_SerializeProperties, (Object * obj, int32_t hashPrefix, List_1_System_Int32_ * valueHashes, List_1_System_Int32_ * valuePositions, List_1_System_Byte_ * values, Object_1__Array * unityObjects, MemberVisibility__Enum visibility, MethodInfo * method)); +DO_APP_FUNC(0x01C48160, void, Serialization_SerializeFields, (Object * obj, int32_t hashPrefix, List_1_System_Int32_ * * valueHashes, List_1_System_Int32_ * * valuePositions, List_1_System_Byte_ * * values, Object_1__Array * * unityObjects, MemberVisibility__Enum visibility, MethodInfo * method)); +DO_APP_FUNC(0x01C48300, void, Serialization_SerializeProperties, (Object * obj, int32_t hashPrefix, List_1_System_Int32_ * * valueHashes, List_1_System_Int32_ * * valuePositions, List_1_System_Byte_ * * values, Object_1__Array * * unityObjects, MemberVisibility__Enum visibility, MethodInfo * method)); DO_APP_FUNC(0x01C484B0, MethodInfo_1 *, Serialization_GetValidGetMethod, (PropertyInfo_1 * property, MemberVisibility__Enum visibility, MethodInfo * method)); DO_APP_FUNC(0x01C487D0, Object *, Serialization_DeserializeFields, (Serialization * __this, MemberVisibility__Enum visibility, Func_3_Type_Object_Object_ * onValidateCallback, MethodInfo * method)); DO_APP_FUNC(0x01C48C50, Object *, Serialization_DeserializeFields_1, (Object * obj, int32_t hashPrefix, Dictionary_2_System_Int32_System_Int32_ * valuePositionMap, Int32__Array * valuePositions, Byte__Array * values, Object_1__Array * unityObjects, MemberVisibility__Enum visibility, bool bitwiseHash, Func_3_Type_Object_Object_ * onValidateCallback, MethodInfo * method)); DO_APP_FUNC(0x01C48F00, Object *, Serialization_DeserializeProperties, (Object * obj, int32_t hashPrefix, Dictionary_2_System_Int32_System_Int32_ * valuePositionMap, Int32__Array * valuePositions, Byte__Array * values, Object_1__Array * unityObjects, MemberVisibility__Enum visibility, bool bitwiseHash, Func_3_Type_Object_Object_ * onValidateCallback, MethodInfo * method)); DO_APP_FUNC(0x01C491D0, FieldInfo_1__Array *, Serialization_GetSerializedFields, (Type * type, MemberVisibility__Enum visibility, MethodInfo * method)); -DO_APP_FUNC(0x01C49560, void, Serialization_GetSerializedFields_1, (Type * type, List_1_System_Reflection_FieldInfo_ * fieldList, BindingFlags__Enum flags, MemberVisibility__Enum visibility, MethodInfo * method)); +DO_APP_FUNC(0x01C49560, void, Serialization_GetSerializedFields_1, (Type * type, List_1_System_Reflection_FieldInfo_ * * fieldList, BindingFlags__Enum flags, MemberVisibility__Enum visibility, MethodInfo * method)); DO_APP_FUNC(0x01C49970, PropertyInfo_1__Array *, Serialization_GetSerializedProperties, (Type * type, MemberVisibility__Enum visibility, MethodInfo * method)); -DO_APP_FUNC(0x01C4A1C0, void, Serialization_AddByteValue, (ICollection_1_System_Byte__1 * bytes, int32_t hash, List_1_System_Int32_ * valueHashes, List_1_System_Int32_ * valuePositions, List_1_System_Byte_ * values, MethodInfo * method)); +DO_APP_FUNC(0x01C4A1C0, void, Serialization_AddByteValue, (ICollection_1_System_Byte__1 * bytes, int32_t hash, List_1_System_Int32_ * * valueHashes, List_1_System_Int32_ * * valuePositions, List_1_System_Byte_ * * values, MethodInfo * method)); DO_APP_FUNC(0x01C4A340, int32_t, Serialization_GetValueSize, (int32_t index, Byte__Array * values, Int32__Array * valuePositions, MethodInfo * method)); DO_APP_FUNC(0x01C4A3B0, int32_t, Serialization_StringHash, (String * value, MethodInfo * method)); DO_APP_FUNC(0x01C4A610, Byte__Array *, Serializer_get_BigEndianFourByteArray, (MethodInfo * method)); DO_APP_FUNC(0x01C4A6F0, Byte__Array *, Serializer_get_BigEndianEightByteArray, (MethodInfo * method)); -DO_APP_FUNC(0x01C4A7D0, void, Serializer_SerializeValue, (Type * type, Object * value, List_1_System_Int32_ * valueHashes, List_1_System_Int32_ * valuePositions, List_1_System_Byte_ * values, Object_1__Array * unityObjects, int32_t hashPrefix, String * name, bool serializeFields, MemberVisibility__Enum visibility, MethodInfo * method)); +DO_APP_FUNC(0x01C4A7D0, void, Serializer_SerializeValue, (Type * type, Object * value, List_1_System_Int32_ * * valueHashes, List_1_System_Int32_ * * valuePositions, List_1_System_Byte_ * * values, Object_1__Array * * unityObjects, int32_t hashPrefix, String * name, bool serializeFields, MemberVisibility__Enum visibility, MethodInfo * method)); DO_APP_FUNC(0x01C4C250, Object *, Serializer_BytesToValue, (Type * type, String * name, Dictionary_2_System_Int32_System_Int32_ * valuePositionMap, int32_t hashPrefix, Byte__Array * values, Int32__Array * valuePositions, Object_1__Array * unityObjects, bool useFields, MemberVisibility__Enum visibility, bool bitwiseHash, Func_3_Type_Object_Object_ * onValidateCallback, MethodInfo * method)); DO_APP_FUNC(0x01C4E020, Byte__Array *, Serializer_IntToBytes, (int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01C4E0B0, int32_t, Serializer_BytesToInt, (Byte__Array * values, int32_t valuePosition, MethodInfo * method)); @@ -117260,18 +129852,19 @@ DO_APP_FUNC(0x01C52510, AnimationCurve *, Serializer_BytesToAnimationCurve, (Byt DO_APP_FUNC(0x01C527D0, ICollection_1_System_Byte__1 *, Serializer_LayerMaskToBytes, (LayerMask value, MethodInfo * method)); DO_APP_FUNC(0x01C527E0, LayerMask, Serializer_BytesToLayerMask, (Byte__Array * values, int32_t valuePosition, MethodInfo * method)); DO_APP_FUNC(0x01C527F0, Guid, Serializer_BytesToGuid, (Byte__Array * values, int32_t valuePosition, MethodInfo * method)); -DO_APP_FUNC(0x01C52930, ICollection_1_System_Byte__1 *, Serializer_UnityObjectToBytes, (Object_1 * unityObject, Object_1__Array * unityObjects, MethodInfo * method)); +DO_APP_FUNC(0x01C52930, ICollection_1_System_Byte__1 *, Serializer_UnityObjectToBytes, (Object_1 * unityObject, Object_1__Array * * unityObjects, MethodInfo * method)); DO_APP_FUNC(0x01C52BD0, Object_1 *, Serializer_BytesToUnityObject, (Byte__Array * values, int32_t valuePosition, Object_1__Array * unityObjects, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NonSerialized__ctor, (NonSerialized * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Snapshot__ctor, (Snapshot * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ForceSerialized__ctor, (ForceSerialized * __this, MethodInfo * method)); DO_APP_FUNC(0x01C52C10, Type *, TypeUtility_GetType, (String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12778, TypeUtility_GetType__MethodInfo); DO_APP_FUNC(0x01C530D0, bool, TypeUtility_HasAttribute, (FieldInfo_1 * field, Type * attribute, MethodInfo * method)); DO_APP_FUNC(0x01C53480, bool, TypeUtility_HasAttribute_1, (PropertyInfo_1 * property, Type * attribute, MethodInfo * method)); DO_APP_FUNC(0x01C53830, void, TypeUtility__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Xrnum__ctor, (Xrnum * __this, MethodInfo * method)); DO_APP_FUNC(0x018BD420, void, Xrnum__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x018BD460, void, XrFacialTrackerCreateInfoHTC__ctor, (XrFacialTrackerCreateInfoHTC__Boxed * __this, XrStructureType__Enum_2 type_, void * next_, XrFacialTrackingTypeHTC__Enum expressionType_, MethodInfo * method)); +DO_APP_FUNC(0x018BD460, void, XrFacialTrackerCreateInfoHTC__ctor, (XrFacialTrackerCreateInfoHTC * __this, XrStructureType__Enum_2 type_, void * next_, XrFacialTrackingTypeHTC__Enum expressionType_, MethodInfo * method)); DO_APP_FUNC(0x018BD470, bool, VIVE_FacialTracking_OpenXR_API_OnInstanceCreate, (VIVE_FacialTracking_OpenXR_API * __this, uint64_t xrInstance, MethodInfo * method)); DO_APP_FUNC(0x018BD570, void, VIVE_FacialTracking_OpenXR_API_OnInstanceDestroy, (VIVE_FacialTracking_OpenXR_API * __this, uint64_t xrInstance, MethodInfo * method)); DO_APP_FUNC(0x018BD650, void, VIVE_FacialTracking_OpenXR_API_OnSessionCreate, (VIVE_FacialTracking_OpenXR_API * __this, uint64_t xrSession, MethodInfo * method)); @@ -117279,31 +129872,31 @@ DO_APP_FUNC(0x018BD910, void, VIVE_FacialTracking_OpenXR_API_OnSystemChange, (VI DO_APP_FUNC(0x018BDA10, void, VIVE_FacialTracking_OpenXR_API_OnSessionDestroy, (VIVE_FacialTracking_OpenXR_API * __this, uint64_t xrSession, MethodInfo * method)); DO_APP_FUNC(0x018BDAF0, bool, VIVE_FacialTracking_OpenXR_API_CheckXrResult, (VIVE_FacialTracking_OpenXR_API * __this, int32_t xrResult, MethodInfo * method)); DO_APP_FUNC(0x018BDB00, bool, VIVE_FacialTracking_OpenXR_API_GetXrFunctionDelegates, (VIVE_FacialTracking_OpenXR_API * __this, uint64_t xrInstance, MethodInfo * method)); -DO_APP_FUNC(0x018BE270, int32_t, VIVE_FacialTracking_OpenXR_API_xrGetSystemProperties, (VIVE_FacialTracking_OpenXR_API * __this, XrSystemProperties_2 properties, MethodInfo * method)); -DO_APP_FUNC(0x018BE2B0, int32_t, VIVE_FacialTracking_OpenXR_API_xrCreateFacialTrackerHTC, (VIVE_FacialTracking_OpenXR_API * __this, XrFacialTrackerCreateInfoHTC createInfo, uint64_t handle, MethodInfo * method)); +DO_APP_FUNC(0x018BE270, int32_t, VIVE_FacialTracking_OpenXR_API_xrGetSystemProperties, (VIVE_FacialTracking_OpenXR_API * __this, XrSystemProperties_2 * properties, MethodInfo * method)); +DO_APP_FUNC(0x018BE2B0, int32_t, VIVE_FacialTracking_OpenXR_API_xrCreateFacialTrackerHTC, (VIVE_FacialTracking_OpenXR_API * __this, XrFacialTrackerCreateInfoHTC createInfo, uint64_t * handle, MethodInfo * method)); DO_APP_FUNC(0x018BE300, int32_t, VIVE_FacialTracking_OpenXR_API_xrDestroyFacialTrackerHTC, (VIVE_FacialTracking_OpenXR_API * __this, uint64_t handle, MethodInfo * method)); -DO_APP_FUNC(0x018BE330, int32_t, VIVE_FacialTracking_OpenXR_API_xrGetFacialExpressionsHTC, (VIVE_FacialTracking_OpenXR_API * __this, uint64_t handle, XrFacialExpressionsHTC eyeExpressionData, MethodInfo * method)); +DO_APP_FUNC(0x018BE330, int32_t, VIVE_FacialTracking_OpenXR_API_xrGetFacialExpressionsHTC, (VIVE_FacialTracking_OpenXR_API * __this, uint64_t handle, XrFacialExpressionsHTC * eyeExpressionData, MethodInfo * method)); DO_APP_FUNC(0x003BA2A0, void, VIVE_FacialTracking_OpenXR_API__ctor, (VIVE_FacialTracking_OpenXR_API * __this, MethodInfo * method)); DO_APP_FUNC(0x003EF890, void, VIVE_FacialTracking_OpenXR_API_XrGetInstanceProcAddrDelegate__ctor, (VIVE_FacialTracking_OpenXR_API_XrGetInstanceProcAddrDelegate * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EF9C0, int32_t, VIVE_FacialTracking_OpenXR_API_XrGetInstanceProcAddrDelegate_Invoke, (VIVE_FacialTracking_OpenXR_API_XrGetInstanceProcAddrDelegate * __this, uint64_t instance, String * name, void * function, MethodInfo * method)); -DO_APP_FUNC(0x018BE360, IAsyncResult *, VIVE_FacialTracking_OpenXR_API_XrGetInstanceProcAddrDelegate_BeginInvoke, (VIVE_FacialTracking_OpenXR_API_XrGetInstanceProcAddrDelegate * __this, uint64_t instance, String * name, void * function, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003F75B0, int32_t, VIVE_FacialTracking_OpenXR_API_XrGetInstanceProcAddrDelegate_EndInvoke, (VIVE_FacialTracking_OpenXR_API_XrGetInstanceProcAddrDelegate * __this, void * function, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EF9C0, int32_t, VIVE_FacialTracking_OpenXR_API_XrGetInstanceProcAddrDelegate_Invoke, (VIVE_FacialTracking_OpenXR_API_XrGetInstanceProcAddrDelegate * __this, uint64_t instance, String * name, void * * function, MethodInfo * method)); +DO_APP_FUNC(0x018BE360, IAsyncResult *, VIVE_FacialTracking_OpenXR_API_XrGetInstanceProcAddrDelegate_BeginInvoke, (VIVE_FacialTracking_OpenXR_API_XrGetInstanceProcAddrDelegate * __this, uint64_t instance, String * name, void * * function, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003F75B0, int32_t, VIVE_FacialTracking_OpenXR_API_XrGetInstanceProcAddrDelegate_EndInvoke, (VIVE_FacialTracking_OpenXR_API_XrGetInstanceProcAddrDelegate * __this, void * * function, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003FABF0, void, VIVE_FacialTracking_OpenXR_API_xrGetSystemPropertiesDelegate__ctor, (VIVE_FacialTracking_OpenXR_API_xrGetSystemPropertiesDelegate * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003EF9C0, int32_t, VIVE_FacialTracking_OpenXR_API_xrGetSystemPropertiesDelegate_Invoke, (VIVE_FacialTracking_OpenXR_API_xrGetSystemPropertiesDelegate * __this, uint64_t instance, uint64_t systemId, XrSystemProperties_2 properties, MethodInfo * method)); -DO_APP_FUNC(0x018BE410, IAsyncResult *, VIVE_FacialTracking_OpenXR_API_xrGetSystemPropertiesDelegate_BeginInvoke, (VIVE_FacialTracking_OpenXR_API_xrGetSystemPropertiesDelegate * __this, uint64_t instance, uint64_t systemId, XrSystemProperties_2 properties, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003F75B0, int32_t, VIVE_FacialTracking_OpenXR_API_xrGetSystemPropertiesDelegate_EndInvoke, (VIVE_FacialTracking_OpenXR_API_xrGetSystemPropertiesDelegate * __this, XrSystemProperties_2 properties, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EF9C0, int32_t, VIVE_FacialTracking_OpenXR_API_xrGetSystemPropertiesDelegate_Invoke, (VIVE_FacialTracking_OpenXR_API_xrGetSystemPropertiesDelegate * __this, uint64_t instance, uint64_t systemId, XrSystemProperties_2 * properties, MethodInfo * method)); +DO_APP_FUNC(0x018BE410, IAsyncResult *, VIVE_FacialTracking_OpenXR_API_xrGetSystemPropertiesDelegate_BeginInvoke, (VIVE_FacialTracking_OpenXR_API_xrGetSystemPropertiesDelegate * __this, uint64_t instance, uint64_t systemId, XrSystemProperties_2 * properties, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003F75B0, int32_t, VIVE_FacialTracking_OpenXR_API_xrGetSystemPropertiesDelegate_EndInvoke, (VIVE_FacialTracking_OpenXR_API_xrGetSystemPropertiesDelegate * __this, XrSystemProperties_2 * properties, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003F8E20, void, VIVE_FacialTracking_OpenXR_API_xrCreateFacialTrackerHTCDelegate__ctor, (VIVE_FacialTracking_OpenXR_API_xrCreateFacialTrackerHTCDelegate * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003F8F50, int32_t, VIVE_FacialTracking_OpenXR_API_xrCreateFacialTrackerHTCDelegate_Invoke, (VIVE_FacialTracking_OpenXR_API_xrCreateFacialTrackerHTCDelegate * __this, uint64_t session, XrFacialTrackerCreateInfoHTC createInfo, uint64_t expression, MethodInfo * method)); -DO_APP_FUNC(0x018BE4D0, IAsyncResult *, VIVE_FacialTracking_OpenXR_API_xrCreateFacialTrackerHTCDelegate_BeginInvoke, (VIVE_FacialTracking_OpenXR_API_xrCreateFacialTrackerHTCDelegate * __this, uint64_t session, XrFacialTrackerCreateInfoHTC createInfo, uint64_t expression, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003F75B0, int32_t, VIVE_FacialTracking_OpenXR_API_xrCreateFacialTrackerHTCDelegate_EndInvoke, (VIVE_FacialTracking_OpenXR_API_xrCreateFacialTrackerHTCDelegate * __this, uint64_t expression, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003F8F50, int32_t, VIVE_FacialTracking_OpenXR_API_xrCreateFacialTrackerHTCDelegate_Invoke, (VIVE_FacialTracking_OpenXR_API_xrCreateFacialTrackerHTCDelegate * __this, uint64_t session, XrFacialTrackerCreateInfoHTC createInfo, uint64_t * expression, MethodInfo * method)); +DO_APP_FUNC(0x018BE4D0, IAsyncResult *, VIVE_FacialTracking_OpenXR_API_xrCreateFacialTrackerHTCDelegate_BeginInvoke, (VIVE_FacialTracking_OpenXR_API_xrCreateFacialTrackerHTCDelegate * __this, uint64_t session, XrFacialTrackerCreateInfoHTC createInfo, uint64_t * expression, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003F75B0, int32_t, VIVE_FacialTracking_OpenXR_API_xrCreateFacialTrackerHTCDelegate_EndInvoke, (VIVE_FacialTracking_OpenXR_API_xrCreateFacialTrackerHTCDelegate * __this, uint64_t * expression, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003F41A0, void, VIVE_FacialTracking_OpenXR_API_xrDestroyFacialTrackerHTCDelegate__ctor, (VIVE_FacialTracking_OpenXR_API_xrDestroyFacialTrackerHTCDelegate * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003F42D0, int32_t, VIVE_FacialTracking_OpenXR_API_xrDestroyFacialTrackerHTCDelegate_Invoke, (VIVE_FacialTracking_OpenXR_API_xrDestroyFacialTrackerHTCDelegate * __this, uint64_t facialTracker, MethodInfo * method)); DO_APP_FUNC(0x018BE590, IAsyncResult *, VIVE_FacialTracking_OpenXR_API_xrDestroyFacialTrackerHTCDelegate_BeginInvoke, (VIVE_FacialTracking_OpenXR_API_xrDestroyFacialTrackerHTCDelegate * __this, uint64_t facialTracker, AsyncCallback * callback, Object * object, MethodInfo * method)); DO_APP_FUNC(0x003ED3D0, int32_t, VIVE_FacialTracking_OpenXR_API_xrDestroyFacialTrackerHTCDelegate_EndInvoke, (VIVE_FacialTracking_OpenXR_API_xrDestroyFacialTrackerHTCDelegate * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x003ED200, void, VIVE_FacialTracking_OpenXR_API_xrGetFacialExpressionsHTCDelegate__ctor, (VIVE_FacialTracking_OpenXR_API_xrGetFacialExpressionsHTCDelegate * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003ED330, int32_t, VIVE_FacialTracking_OpenXR_API_xrGetFacialExpressionsHTCDelegate_Invoke, (VIVE_FacialTracking_OpenXR_API_xrGetFacialExpressionsHTCDelegate * __this, uint64_t facialTracker, XrFacialExpressionsHTC eyeExpressionData, MethodInfo * method)); -DO_APP_FUNC(0x018BE610, IAsyncResult *, VIVE_FacialTracking_OpenXR_API_xrGetFacialExpressionsHTCDelegate_BeginInvoke, (VIVE_FacialTracking_OpenXR_API_xrGetFacialExpressionsHTCDelegate * __this, uint64_t facialTracker, XrFacialExpressionsHTC eyeExpressionData, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003F75B0, int32_t, VIVE_FacialTracking_OpenXR_API_xrGetFacialExpressionsHTCDelegate_EndInvoke, (VIVE_FacialTracking_OpenXR_API_xrGetFacialExpressionsHTCDelegate * __this, XrFacialExpressionsHTC eyeExpressionData, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003ED330, int32_t, VIVE_FacialTracking_OpenXR_API_xrGetFacialExpressionsHTCDelegate_Invoke, (VIVE_FacialTracking_OpenXR_API_xrGetFacialExpressionsHTCDelegate * __this, uint64_t facialTracker, XrFacialExpressionsHTC * eyeExpressionData, MethodInfo * method)); +DO_APP_FUNC(0x018BE610, IAsyncResult *, VIVE_FacialTracking_OpenXR_API_xrGetFacialExpressionsHTCDelegate_BeginInvoke, (VIVE_FacialTracking_OpenXR_API_xrGetFacialExpressionsHTCDelegate * __this, uint64_t facialTracker, XrFacialExpressionsHTC * eyeExpressionData, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003F75B0, int32_t, VIVE_FacialTracking_OpenXR_API_xrGetFacialExpressionsHTCDelegate_EndInvoke, (VIVE_FacialTracking_OpenXR_API_xrGetFacialExpressionsHTCDelegate * __this, XrFacialExpressionsHTC * eyeExpressionData, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x02FB3420, float, CanvasGroup_get_alpha, (CanvasGroup * __this, MethodInfo * method)); DO_APP_FUNC(0x02FB3470, void, CanvasGroup_set_alpha, (CanvasGroup * __this, float value, MethodInfo * method)); DO_APP_FUNC(0x02FB34D0, bool, CanvasGroup_get_interactable, (CanvasGroup * __this, MethodInfo * method)); @@ -117324,6 +129917,7 @@ DO_APP_FUNC(0x02FB3940, void, CanvasRenderer_set_cullTransparentMesh, (CanvasRen DO_APP_FUNC(0x02FB39A0, bool, CanvasRenderer_get_cull, (CanvasRenderer * __this, MethodInfo * method)); DO_APP_FUNC(0x02FB39F0, void, CanvasRenderer_set_cull, (CanvasRenderer * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x02FB3A50, void, CanvasRenderer_SetColor, (CanvasRenderer * __this, Color color, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23648, CanvasRenderer_SetColor__MethodInfo); DO_APP_FUNC(0x02FB3AB0, Color, CanvasRenderer_GetColor, (CanvasRenderer * __this, MethodInfo * method)); DO_APP_FUNC(0x02FB3B20, void, CanvasRenderer_EnableRectClipping, (CanvasRenderer * __this, Rect rect, MethodInfo * method)); DO_APP_FUNC(0x02FB3B80, void, CanvasRenderer_set_clippingSoftness, (CanvasRenderer * __this, Vector2 value, MethodInfo * method)); @@ -117343,26 +129937,26 @@ DO_APP_FUNC(0x02FB4270, void, CanvasRenderer_AddUIVertexStream, (List_1_UnityEng DO_APP_FUNC(0x02FB4300, void, CanvasRenderer_SplitIndicesStreamsInternal, (Object * verts, Object * indices, MethodInfo * method)); DO_APP_FUNC(0x02FB4270, void, CanvasRenderer_SplitUIVertexStreamsInternal, (Object * verts, Object * positions, Object * colors, Object * uv0S, Object * uv1S, Object * uv2S, Object * uv3S, Object * normals, Object * tangents, MethodInfo * method)); DO_APP_FUNC(0x02FB41E0, void, CanvasRenderer_CreateUIVertexStreamInternal, (Object * verts, Object * positions, Object * colors, Object * uv0S, Object * uv1S, Object * uv2S, Object * uv3S, Object * normals, Object * tangents, Object * indices, MethodInfo * method)); -DO_APP_FUNC(0x02FB4360, void, CanvasRenderer_SetColor_Injected, (CanvasRenderer * __this, Color color, MethodInfo * method)); -DO_APP_FUNC(0x02FB43C0, void, CanvasRenderer_GetColor_Injected, (CanvasRenderer * __this, Color ret, MethodInfo * method)); -DO_APP_FUNC(0x02FB4420, void, CanvasRenderer_EnableRectClipping_Injected, (CanvasRenderer * __this, Rect rect, MethodInfo * method)); -DO_APP_FUNC(0x02FB4480, void, CanvasRenderer_set_clippingSoftness_Injected, (CanvasRenderer * __this, Vector2 value, MethodInfo * method)); +DO_APP_FUNC(0x02FB4360, void, CanvasRenderer_SetColor_Injected, (CanvasRenderer * __this, Color * color, MethodInfo * method)); +DO_APP_FUNC(0x02FB43C0, void, CanvasRenderer_GetColor_Injected, (CanvasRenderer * __this, Color * ret, MethodInfo * method)); +DO_APP_FUNC(0x02FB4420, void, CanvasRenderer_EnableRectClipping_Injected, (CanvasRenderer * __this, Rect * rect, MethodInfo * method)); +DO_APP_FUNC(0x02FB4480, void, CanvasRenderer_set_clippingSoftness_Injected, (CanvasRenderer * __this, Vector2 * value, MethodInfo * method)); DO_APP_FUNC(0x02FB44E0, Vector2, RectTransformUtility_PixelAdjustPoint, (Vector2 point, Transform * elementTransform, Canvas * canvas, MethodInfo * method)); DO_APP_FUNC(0x02FB4590, Rect, RectTransformUtility_PixelAdjustRect, (RectTransform * rectTransform, Canvas * canvas, MethodInfo * method)); DO_APP_FUNC(0x02FB4640, bool, RectTransformUtility_PointInRectangle, (Vector2 screenPoint, RectTransform * rect, Camera * cam, Vector4 offset, MethodInfo * method)); DO_APP_FUNC(0x02FB46F0, bool, RectTransformUtility_RectangleContainsScreenPoint, (RectTransform * rect, Vector2 screenPoint, Camera * cam, MethodInfo * method)); DO_APP_FUNC(0x02FB47B0, bool, RectTransformUtility_RectangleContainsScreenPoint_1, (RectTransform * rect, Vector2 screenPoint, Camera * cam, Vector4 offset, MethodInfo * method)); -DO_APP_FUNC(0x02FB48B0, bool, RectTransformUtility_ScreenPointToWorldPointInRectangle, (RectTransform * rect, Vector2 screenPoint, Camera * cam, Vector3 worldPoint, MethodInfo * method)); -DO_APP_FUNC(0x02FB4FE0, bool, RectTransformUtility_ScreenPointToLocalPointInRectangle, (RectTransform * rect, Vector2 screenPoint, Camera * cam, Vector2 localPoint, MethodInfo * method)); +DO_APP_FUNC(0x02FB48B0, bool, RectTransformUtility_ScreenPointToWorldPointInRectangle, (RectTransform * rect, Vector2 screenPoint, Camera * cam, Vector3 * worldPoint, MethodInfo * method)); +DO_APP_FUNC(0x02FB4FE0, bool, RectTransformUtility_ScreenPointToLocalPointInRectangle, (RectTransform * rect, Vector2 screenPoint, Camera * cam, Vector2 * localPoint, MethodInfo * method)); DO_APP_FUNC(0x02FB5150, Ray, RectTransformUtility_ScreenPointToRay, (Camera * cam, Vector2 screenPos, MethodInfo * method)); DO_APP_FUNC(0x02FB5410, Vector2, RectTransformUtility_WorldToScreenPoint, (Camera * cam, Vector3 worldPoint, MethodInfo * method)); DO_APP_FUNC(0x02FB55B0, void, RectTransformUtility_FlipLayoutOnAxis, (RectTransform * rect, int32_t axis, bool keepPositioning, bool recursive, MethodInfo * method)); DO_APP_FUNC(0x02FB5D20, void, RectTransformUtility_FlipLayoutAxes, (RectTransform * rect, bool keepPositioning, bool recursive, MethodInfo * method)); DO_APP_FUNC(0x02FB6390, Vector2, RectTransformUtility_GetTransposed, (Vector2 input, MethodInfo * method)); DO_APP_FUNC(0x02FB63B0, void, RectTransformUtility__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02FB6470, void, RectTransformUtility_PixelAdjustPoint_Injected, (Vector2 point, Transform * elementTransform, Canvas * canvas, Vector2 ret, MethodInfo * method)); -DO_APP_FUNC(0x02FB64F0, void, RectTransformUtility_PixelAdjustRect_Injected, (RectTransform * rectTransform, Canvas * canvas, Rect ret, MethodInfo * method)); -DO_APP_FUNC(0x02FB6560, bool, RectTransformUtility_PointInRectangle_Injected, (Vector2 screenPoint, RectTransform * rect, Camera * cam, Vector4 offset, MethodInfo * method)); +DO_APP_FUNC(0x02FB6470, void, RectTransformUtility_PixelAdjustPoint_Injected, (Vector2 * point, Transform * elementTransform, Canvas * canvas, Vector2 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02FB64F0, void, RectTransformUtility_PixelAdjustRect_Injected, (RectTransform * rectTransform, Canvas * canvas, Rect * ret, MethodInfo * method)); +DO_APP_FUNC(0x02FB6560, bool, RectTransformUtility_PointInRectangle_Injected, (Vector2 * screenPoint, RectTransform * rect, Camera * cam, Vector4 * offset, MethodInfo * method)); DO_APP_FUNC(0x02FB65E0, void, Canvas_add_preWillRenderCanvases, (Canvas_WillRenderCanvases * value, MethodInfo * method)); DO_APP_FUNC(0x02FB66F0, void, Canvas_remove_preWillRenderCanvases, (Canvas_WillRenderCanvases * value, MethodInfo * method)); DO_APP_FUNC(0x02FB6800, void, Canvas_add_willRenderCanvases, (Canvas_WillRenderCanvases * value, MethodInfo * method)); @@ -117408,8 +130002,8 @@ DO_APP_FUNC(0x02FB7790, void, Canvas_BeginRenderExtraOverlays, (int32_t displayI DO_APP_FUNC(0x02FB77F0, void, Canvas_RenderExtraOverlaysBefore, (int32_t displayIndex, int32_t sortingOrder, MethodInfo * method)); DO_APP_FUNC(0x02FB7860, void, Canvas_EndRenderExtraOverlays, (int32_t displayIndex, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, Canvas__ctor, (Canvas * __this, MethodInfo * method)); -DO_APP_FUNC(0x02FB78C0, void, Canvas_get_pixelRect_Injected, (Canvas * __this, Rect ret, MethodInfo * method)); -DO_APP_FUNC(0x02FB7920, void, Canvas_get_renderingDisplaySize_Injected, (Canvas * __this, Vector2 ret, MethodInfo * method)); +DO_APP_FUNC(0x02FB78C0, void, Canvas_get_pixelRect_Injected, (Canvas * __this, Rect * ret, MethodInfo * method)); +DO_APP_FUNC(0x02FB7920, void, Canvas_get_renderingDisplaySize_Injected, (Canvas * __this, Vector2 * ret, MethodInfo * method)); DO_APP_FUNC(0x003F7AE0, void, Canvas_WillRenderCanvases__ctor, (Canvas_WillRenderCanvases * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003CB0B0, void, Canvas_WillRenderCanvases_Invoke, (Canvas_WillRenderCanvases * __this, MethodInfo * method)); DO_APP_FUNC(0x02FB7980, void, UISystemProfilerApi_BeginSample, (UISystemProfilerApi_SampleType__Enum type, MethodInfo * method)); @@ -117435,9 +130029,9 @@ DO_APP_FUNC(0x00B42C00, void, HeightFogOverride_GetCamera, (HeightFogOverride * DO_APP_FUNC(0x00B42D90, void, HeightFogOverride_GetDirectional, (HeightFogOverride * __this, MethodInfo * method)); DO_APP_FUNC(0x00B42FB0, void, HeightFogOverride_SetLocalMaterial, (HeightFogOverride * __this, MethodInfo * method)); DO_APP_FUNC(0x00B437C0, void, HeightFogOverride__ctor, (HeightFogOverride * __this, MethodInfo * method)); -DO_APP_FUNC(0x02E16220, bool, TextGenerationSettings_CompareColors, (TextGenerationSettings__Boxed * __this, Color left, Color right, MethodInfo * method)); -DO_APP_FUNC(0x02E16290, bool, TextGenerationSettings_CompareVector2, (TextGenerationSettings__Boxed * __this, Vector2 left, Vector2 right, MethodInfo * method)); -DO_APP_FUNC(0x02E162D0, bool, TextGenerationSettings_Equals, (TextGenerationSettings__Boxed * __this, TextGenerationSettings other, MethodInfo * method)); +DO_APP_FUNC(0x02E16220, bool, TextGenerationSettings_CompareColors, (TextGenerationSettings * __this, Color left, Color right, MethodInfo * method)); +DO_APP_FUNC(0x02E16290, bool, TextGenerationSettings_CompareVector2, (TextGenerationSettings * __this, Vector2 left, Vector2 right, MethodInfo * method)); +DO_APP_FUNC(0x02E162D0, bool, TextGenerationSettings_Equals, (TextGenerationSettings * __this, TextGenerationSettings other, MethodInfo * method)); DO_APP_FUNC(0x02E16670, void, TextGenerator__ctor, (TextGenerator * __this, MethodInfo * method)); DO_APP_FUNC(0x02E16680, void, TextGenerator__ctor_1, (TextGenerator * __this, int32_t initialCapacity, MethodInfo * method)); DO_APP_FUNC(0x02E16AB0, void, TextGenerator_Finalize, (TextGenerator * __this, MethodInfo * method)); @@ -117463,15 +130057,15 @@ DO_APP_FUNC(0x02E17EB0, int32_t, TextGenerator_get_lineCount, (TextGenerator * _ DO_APP_FUNC(0x02E17F00, int32_t, TextGenerator_get_fontSizeUsedForBestFit, (TextGenerator * __this, MethodInfo * method)); DO_APP_FUNC(0x02E17F50, void *, TextGenerator_Internal_Create, (MethodInfo * method)); DO_APP_FUNC(0x02E17FA0, void, TextGenerator_Internal_Destroy, (void * ptr, MethodInfo * method)); -DO_APP_FUNC(0x02E17FF0, bool, TextGenerator_Populate_Internal, (TextGenerator * __this, String * str, Font * font, Color color, int32_t fontSize, float scaleFactor, float lineSpacing, FontStyle__Enum style, bool richText, bool resizeTextForBestFit, int32_t resizeTextMinSize, int32_t resizeTextMaxSize, int32_t verticalOverFlow, int32_t horizontalOverflow, bool updateBounds, TextAnchor__Enum anchor, float extentsX, float extentsY, float pivotX, float pivotY, bool generateOutOfBounds, bool alignByGeometry, uint32_t error, MethodInfo * method)); -DO_APP_FUNC(0x02E18190, bool, TextGenerator_Populate_Internal_1, (TextGenerator * __this, String * str, Font * font, Color color, int32_t fontSize, float scaleFactor, float lineSpacing, FontStyle__Enum style, bool richText, bool resizeTextForBestFit, int32_t resizeTextMinSize, int32_t resizeTextMaxSize, VerticalWrapMode__Enum verticalOverFlow, HorizontalWrapMode__Enum horizontalOverflow, bool updateBounds, TextAnchor__Enum anchor, Vector2 extents, Vector2 pivot, bool generateOutOfBounds, bool alignByGeometry, TextGenerationError__Enum error, MethodInfo * method)); +DO_APP_FUNC(0x02E17FF0, bool, TextGenerator_Populate_Internal, (TextGenerator * __this, String * str, Font * font, Color color, int32_t fontSize, float scaleFactor, float lineSpacing, FontStyle__Enum style, bool richText, bool resizeTextForBestFit, int32_t resizeTextMinSize, int32_t resizeTextMaxSize, int32_t verticalOverFlow, int32_t horizontalOverflow, bool updateBounds, TextAnchor__Enum anchor, float extentsX, float extentsY, float pivotX, float pivotY, bool generateOutOfBounds, bool alignByGeometry, uint32_t * error, MethodInfo * method)); +DO_APP_FUNC(0x02E18190, bool, TextGenerator_Populate_Internal_1, (TextGenerator * __this, String * str, Font * font, Color color, int32_t fontSize, float scaleFactor, float lineSpacing, FontStyle__Enum style, bool richText, bool resizeTextForBestFit, int32_t resizeTextMinSize, int32_t resizeTextMaxSize, VerticalWrapMode__Enum verticalOverFlow, HorizontalWrapMode__Enum horizontalOverflow, bool updateBounds, TextAnchor__Enum anchor, Vector2 extents, Vector2 pivot, bool generateOutOfBounds, bool alignByGeometry, TextGenerationError__Enum * error, MethodInfo * method)); DO_APP_FUNC(0x02E17220, void, TextGenerator_GetVerticesInternal, (TextGenerator * __this, Object * vertices, MethodInfo * method)); DO_APP_FUNC(0x02E17160, void, TextGenerator_GetCharactersInternal, (TextGenerator * __this, Object * characters, MethodInfo * method)); DO_APP_FUNC(0x02E171C0, void, TextGenerator_GetLinesInternal, (TextGenerator * __this, Object * lines, MethodInfo * method)); -DO_APP_FUNC(0x02E18450, void, TextGenerator_get_rectExtents_Injected, (TextGenerator * __this, Rect ret, MethodInfo * method)); -DO_APP_FUNC(0x02E184B0, bool, TextGenerator_Populate_Internal_Injected, (TextGenerator * __this, String * str, Font * font, Color color, int32_t fontSize, float scaleFactor, float lineSpacing, FontStyle__Enum style, bool richText, bool resizeTextForBestFit, int32_t resizeTextMinSize, int32_t resizeTextMaxSize, int32_t verticalOverFlow, int32_t horizontalOverflow, bool updateBounds, TextAnchor__Enum anchor, float extentsX, float extentsY, float pivotX, float pivotY, bool generateOutOfBounds, bool alignByGeometry, uint32_t error, MethodInfo * method)); +DO_APP_FUNC(0x02E18450, void, TextGenerator_get_rectExtents_Injected, (TextGenerator * __this, Rect * ret, MethodInfo * method)); +DO_APP_FUNC(0x02E184B0, bool, TextGenerator_Populate_Internal_Injected, (TextGenerator * __this, String * str, Font * font, Color * color, int32_t fontSize, float scaleFactor, float lineSpacing, FontStyle__Enum style, bool richText, bool resizeTextForBestFit, int32_t resizeTextMinSize, int32_t resizeTextMaxSize, int32_t verticalOverFlow, int32_t horizontalOverflow, bool updateBounds, TextAnchor__Enum anchor, float extentsX, float extentsY, float pivotX, float pivotY, bool generateOutOfBounds, bool alignByGeometry, uint32_t * error, MethodInfo * method)); DO_APP_FUNC(0x02E18590, void, TextMesh_set_text, (TextMesh * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x02E185F0, int32_t, CharacterInfo_get_advance, (CharacterInfo__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02E185F0, int32_t, CharacterInfo_get_advance, (CharacterInfo * __this, MethodInfo * method)); DO_APP_FUNC(0x02E18650, void, UIVertex__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02E188A0, void, Font_add_textureRebuilt, (Action_1_UnityEngine_Font_ * value, MethodInfo * method)); DO_APP_FUNC(0x02E189D0, void, Font_remove_textureRebuilt, (Action_1_UnityEngine_Font_ * value, MethodInfo * method)); @@ -117484,8 +130078,8 @@ DO_APP_FUNC(0x02E18CD0, void, Font_InvokeTextureRebuilt_Internal, (Font * font, DO_APP_FUNC(0x02E18D50, bool, Font_HasCharacter, (Font * __this, uint16_t c, MethodInfo * method)); DO_APP_FUNC(0x02E18DB0, bool, Font_HasCharacter_1, (Font * __this, int32_t c, MethodInfo * method)); DO_APP_FUNC(0x02E18E10, void, Font_Internal_CreateFont, (Font * self, String * name, MethodInfo * method)); -DO_APP_FUNC(0x02E18E70, bool, Font_GetCharacterInfo, (Font * __this, uint16_t ch, CharacterInfo info, int32_t size, FontStyle__Enum style, MethodInfo * method)); -DO_APP_FUNC(0x02E18F00, bool, Font_GetCharacterInfo_1, (Font * __this, uint16_t ch, CharacterInfo info, int32_t size, MethodInfo * method)); +DO_APP_FUNC(0x02E18E70, bool, Font_GetCharacterInfo, (Font * __this, uint16_t ch, CharacterInfo * info, int32_t size, FontStyle__Enum style, MethodInfo * method)); +DO_APP_FUNC(0x02E18F00, bool, Font_GetCharacterInfo_1, (Font * __this, uint16_t ch, CharacterInfo * info, int32_t size, MethodInfo * method)); DO_APP_FUNC(0x02E18F90, void, Font_RequestCharactersInTexture, (Font * __this, String * characters, int32_t size, FontStyle__Enum style, MethodInfo * method)); DO_APP_FUNC(0x003F7AE0, void, Font_FontTextureRebuildCallback__ctor, (Font_FontTextureRebuildCallback * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003CB0B0, void, Font_FontTextureRebuildCallback_Invoke, (Font_FontTextureRebuildCallback * __this, MethodInfo * method)); @@ -117510,7 +130104,7 @@ DO_APP_FUNC(0x00B65890, void, EasyCombine_SetActiveAll, (IList_1_UnityEngine_Gam DO_APP_FUNC(0x00B65C60, Dictionary_2_UnityEngine_Material_IList_1_UnityEngine_GameObject_ *, EasyCombine_GetObjectsByMaterial, (IList_1_UnityEngine_GameObject_ * gameObjects, MethodInfo * method)); DO_APP_FUNC(0x00B65DF0, Dictionary_2_UnityEngine_Shader_IList_1_UnityEngine_GameObject_ *, EasyCombine_GetObjectsByShader, (IList_1_UnityEngine_GameObject_ * gameObjects, MethodInfo * method)); DO_APP_FUNC(0x00B65F80, Dictionary_2_UnityEngine_Material_ch_sycoforge_Combine_MeshTransform_ *, EasyCombine_CollapseMaterials, (Dictionary_2_UnityEngine_Material_List_1_ch_sycoforge_Combine_MeshTransform_ * mappings, UV2Mode__Enum uv2Mode, MethodInfo * method)); -DO_APP_FUNC(0x00B66890, Dictionary_2_UnityEngine_Material_List_1_ch_sycoforge_Combine_MeshTransform_ *, EasyCombine_GetMaterialMeshes, (IList_1_UnityEngine_GameObject_ * gameObjects, int32_t count, MethodInfo * method)); +DO_APP_FUNC(0x00B66890, Dictionary_2_UnityEngine_Material_List_1_ch_sycoforge_Combine_MeshTransform_ *, EasyCombine_GetMaterialMeshes, (IList_1_UnityEngine_GameObject_ * gameObjects, int32_t * count, MethodInfo * method)); DO_APP_FUNC(0x00B67130, Mesh *, EasyCombine_MeshFromSubMesh, (Mesh * source, int32_t subMesh, MethodInfo * method)); DO_APP_FUNC(0x00B679A0, Int32__Array *, EasyCombine_GetTriangleData, (Int32__Array * triangles, MethodInfo * method)); DO_APP_FUNC(0x00B67A20, Int32__Array *, EasyCombine_GetUniqueIndices, (Int32__Array * triangles, MethodInfo * method)); @@ -117519,7 +130113,9 @@ DO_APP_FUNC(0x00B680B0, void, EasyCombine_InitializeProgressReport, (int32_t ove DO_APP_FUNC(0x00B68120, void, EasyCombine_ForceProcessCompleted, (MethodInfo * method)); DO_APP_FUNC(0x00B681D0, void, EasyCombine_CallProcessStepCompleted, (bool combining, MethodInfo * method)); DO_APP_FUNC(0x00B682F0, Material *, EasyCombine__GetObjectsByMaterial_b__0, (Renderer * renderer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCF20, EasyCombine__GetObjectsByMaterial_b__0__MethodInfo); DO_APP_FUNC(0x00B68350, Shader *, EasyCombine__GetObjectsByShader_b__2, (Renderer * renderer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCEE0, EasyCombine__GetObjectsByShader_b__2__MethodInfo); DO_APP_FUNC(0x00B68400, void, EasyCombine__cctor, (MethodInfo * method)); DO_APP_FUNC(0x00B68460, void, EasyCombine_UnwrapMethod__ctor, (EasyCombine_UnwrapMethod * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x00B685A0, void, EasyCombine_UnwrapMethod_Invoke, (EasyCombine_UnwrapMethod * __this, Mesh * mesh, float hardAngle, float margin, MethodInfo * method)); @@ -117614,6 +130210,7 @@ DO_APP_FUNC(0x003BA2A0, void, ftGlobalStorage__ctor, (ftGlobalStorage * __this, DO_APP_FUNC(0x00A42D20, void, ftLightmaps__cctor, (MethodInfo * method)); DO_APP_FUNC(0x00A42DF0, void, ftLightmaps_SetDirectionalMode, (MethodInfo * method)); DO_APP_FUNC(0x00A42EC0, void, ftLightmaps_OnSceneChangedPlay, (Scene prev, Scene next, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBCC08, ftLightmaps_OnSceneChangedPlay__MethodInfo); DO_APP_FUNC(0x00A42F10, void, ftLightmaps_RefreshFull, (MethodInfo * method)); DO_APP_FUNC(0x00A43190, GameObject *, ftLightmaps_FindInScene, (String * nm, Scene scn, MethodInfo * method)); DO_APP_FUNC(0x00A43400, Texture2D *, ftLightmaps_GetEmptyDirectionTex, (ftLightmapsStorage * storage, MethodInfo * method)); @@ -117626,31 +130223,32 @@ DO_APP_FUNC(0x00A45FC0, void, ftLightmapsStorage_Start, (ftLightmapsStorage * __ DO_APP_FUNC(0x00A460C0, void, ftLightmapsStorage_OnDestroy, (ftLightmapsStorage * __this, MethodInfo * method)); DO_APP_FUNC(0x00A46110, void, ftLightmapsStorage__ctor, (ftLightmapsStorage * __this, MethodInfo * method)); DO_APP_FUNC(0x00A46B60, void, ftLocalStorage__ctor, (ftLocalStorage * __this, MethodInfo * method)); -DO_APP_FUNC(0x02B78450, int32_t, Touch_get_fingerId, (Touch__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171BF20, Vector2, Touch_get_position, (Touch__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DA1BC0, void, Touch_set_position, (Touch__Boxed * __this, Vector2 value, MethodInfo * method)); -DO_APP_FUNC(0x02DA1BD0, Vector2, Touch_get_rawPosition, (Touch__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DA1BF0, void, Touch_set_rawPosition, (Touch__Boxed * __this, Vector2 value, MethodInfo * method)); -DO_APP_FUNC(0x00F9BE30, Vector2, Touch_get_deltaPosition, (Touch__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DA1C00, void, Touch_set_deltaPosition, (Touch__Boxed * __this, Vector2 value, MethodInfo * method)); -DO_APP_FUNC(0x02DA1C10, float, Touch_get_deltaTime, (Touch__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01E5E700, int32_t, Touch_get_tapCount, (Touch__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01E5E710, TouchPhase__Enum, Touch_get_phase, (Touch__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DA1C20, float, Touch_get_pressure, (Touch__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02BA0910, float, Touch_get_maximumPossiblePressure, (Touch__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01E5E720, TouchType__Enum, Touch_get_type, (Touch__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DA1C30, float, Touch_get_altitudeAngle, (Touch__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DA1C40, float, Touch_get_azimuthAngle, (Touch__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02BA0970, float, Touch_get_radius, (Touch__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DA1C50, float, Touch_get_radiusVariance, (Touch__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02B78450, int32_t, Touch_get_fingerId, (Touch * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171BF20, Vector2, Touch_get_position, (Touch * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DA1BC0, void, Touch_set_position, (Touch * __this, Vector2 value, MethodInfo * method)); +DO_APP_FUNC(0x02DA1BD0, Vector2, Touch_get_rawPosition, (Touch * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DA1BF0, void, Touch_set_rawPosition, (Touch * __this, Vector2 value, MethodInfo * method)); +DO_APP_FUNC(0x00F9BE30, Vector2, Touch_get_deltaPosition, (Touch * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DA1C00, void, Touch_set_deltaPosition, (Touch * __this, Vector2 value, MethodInfo * method)); +DO_APP_FUNC(0x02DA1C10, float, Touch_get_deltaTime, (Touch * __this, MethodInfo * method)); +DO_APP_FUNC(0x01E5E700, int32_t, Touch_get_tapCount, (Touch * __this, MethodInfo * method)); +DO_APP_FUNC(0x01E5E710, TouchPhase__Enum, Touch_get_phase, (Touch * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DA1C20, float, Touch_get_pressure, (Touch * __this, MethodInfo * method)); +DO_APP_FUNC(0x02BA0910, float, Touch_get_maximumPossiblePressure, (Touch * __this, MethodInfo * method)); +DO_APP_FUNC(0x01E5E720, TouchType__Enum, Touch_get_type, (Touch * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DA1C30, float, Touch_get_altitudeAngle, (Touch * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DA1C40, float, Touch_get_azimuthAngle, (Touch * __this, MethodInfo * method)); +DO_APP_FUNC(0x02BA0970, float, Touch_get_radius, (Touch * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DA1C50, float, Touch_get_radiusVariance, (Touch * __this, MethodInfo * method)); DO_APP_FUNC(0x02DA1C60, GameObject *, CameraRaycastHelper_RaycastTry, (Camera * cam, Ray ray, float distance, int32_t layerMask, MethodInfo * method)); DO_APP_FUNC(0x02DA1CE0, GameObject *, CameraRaycastHelper_RaycastTry2D, (Camera * cam, Ray ray, float distance, int32_t layerMask, MethodInfo * method)); -DO_APP_FUNC(0x02DA1D60, GameObject *, CameraRaycastHelper_RaycastTry_Injected, (Camera * cam, Ray ray, float distance, int32_t layerMask, MethodInfo * method)); -DO_APP_FUNC(0x02DA1DE0, GameObject *, CameraRaycastHelper_RaycastTry2D_Injected, (Camera * cam, Ray ray, float distance, int32_t layerMask, MethodInfo * method)); +DO_APP_FUNC(0x02DA1D60, GameObject *, CameraRaycastHelper_RaycastTry_Injected, (Camera * cam, Ray * ray, float distance, int32_t layerMask, MethodInfo * method)); +DO_APP_FUNC(0x02DA1DE0, GameObject *, CameraRaycastHelper_RaycastTry2D_Injected, (Camera * cam, Ray * ray, float distance, int32_t layerMask, MethodInfo * method)); DO_APP_FUNC(0x02DA1E60, bool, Input_1_GetKeyInt, (KeyCode__Enum key, MethodInfo * method)); DO_APP_FUNC(0x02DA1EB0, bool, Input_1_GetKeyUpInt, (KeyCode__Enum key, MethodInfo * method)); DO_APP_FUNC(0x02DA1F00, bool, Input_1_GetKeyDownInt, (KeyCode__Enum key, MethodInfo * method)); DO_APP_FUNC(0x02DA1F50, float, Input_1_GetAxis, (String * axisName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD03E0, Input_1_GetAxis__MethodInfo); DO_APP_FUNC(0x02DA1FA0, float, Input_1_GetAxisRaw, (String * axisName, MethodInfo * method)); DO_APP_FUNC(0x02DA1FF0, bool, Input_1_GetButton, (String * buttonName, MethodInfo * method)); DO_APP_FUNC(0x02DA2040, bool, Input_1_GetButtonDown, (String * buttonName, MethodInfo * method)); @@ -117682,18 +130280,18 @@ DO_APP_FUNC(0x02DA2640, void, Input_1_set_multiTouchEnabled, (bool value, Method DO_APP_FUNC(0x02DA2690, Vector3, Input_1_get_acceleration, (MethodInfo * method)); DO_APP_FUNC(0x02DA26F0, Touch__Array *, Input_1_get_touches, (MethodInfo * method)); DO_APP_FUNC(0x02DA2880, bool, Input_1_CheckDisabled, (MethodInfo * method)); -DO_APP_FUNC(0x02DA28D0, void, Input_1_GetTouch_Injected, (int32_t index, Touch ret, MethodInfo * method)); -DO_APP_FUNC(0x02DA2930, void, Input_1_get_mousePosition_Injected, (Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02DA2980, void, Input_1_get_mouseScrollDelta_Injected, (Vector2 ret, MethodInfo * method)); -DO_APP_FUNC(0x02DA29D0, void, Input_1_get_compositionCursorPos_Injected, (Vector2 ret, MethodInfo * method)); -DO_APP_FUNC(0x02DA2A20, void, Input_1_set_compositionCursorPos_Injected, (Vector2 value, MethodInfo * method)); -DO_APP_FUNC(0x02DA2A70, void, Input_1_get_acceleration_Injected, (Vector3 ret, MethodInfo * method)); +DO_APP_FUNC(0x02DA28D0, void, Input_1_GetTouch_Injected, (int32_t index, Touch * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DA2930, void, Input_1_get_mousePosition_Injected, (Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DA2980, void, Input_1_get_mouseScrollDelta_Injected, (Vector2 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DA29D0, void, Input_1_get_compositionCursorPos_Injected, (Vector2 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02DA2A20, void, Input_1_set_compositionCursorPos_Injected, (Vector2 * value, MethodInfo * method)); +DO_APP_FUNC(0x02DA2A70, void, Input_1_get_acceleration_Injected, (Vector3 * ret, MethodInfo * method)); DO_APP_FUNC(0x02DA2AC0, void, SendMouseEvents_UpdateMouse, (MethodInfo * method)); DO_APP_FUNC(0x02DA2DC0, void, SendMouseEvents_SetMouseMoved, (MethodInfo * method)); DO_APP_FUNC(0x02DA2E20, void, SendMouseEvents_DoSendMouseEvents, (int32_t skipRTCameras, MethodInfo * method)); DO_APP_FUNC(0x02DA3D80, void, SendMouseEvents_SendEvents, (int32_t i, SendMouseEvents_HitInfo hit, MethodInfo * method)); DO_APP_FUNC(0x02DA44A0, void, SendMouseEvents__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02DA4670, void, SendMouseEvents_HitInfo_SendMessage, (SendMouseEvents_HitInfo__Boxed * __this, String * name, MethodInfo * method)); +DO_APP_FUNC(0x02DA4670, void, SendMouseEvents_HitInfo_SendMessage, (SendMouseEvents_HitInfo * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x02DA46A0, bool, SendMouseEvents_HitInfo_op_Implicit, (SendMouseEvents_HitInfo exists, MethodInfo * method)); DO_APP_FUNC(0x02DA4880, bool, SendMouseEvents_HitInfo_Compare, (SendMouseEvents_HitInfo lhs, SendMouseEvents_HitInfo rhs, MethodInfo * method)); DO_APP_FUNC(0x003BCE40, void, AssetFileNameExtensionAttribute__ctor, (AssetFileNameExtensionAttribute * __this, String * preferredExtension, String__Array * otherExtensions, MethodInfo * method)); @@ -117714,8 +130312,10 @@ DO_APP_FUNC(0x02DC2670, void, NativeConditionalAttribute__ctor, (NativeCondition DO_APP_FUNC(0x02DC26D0, void, NativeConditionalAttribute__ctor_1, (NativeConditionalAttribute * __this, String * condition, String * stubReturnStatement, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, NativeHeaderAttribute_set_Header, (NativeHeaderAttribute * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x02DC2780, void, NativeHeaderAttribute__ctor, (NativeHeaderAttribute * __this, String * header, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B058, NativeHeaderAttribute__ctor__MethodInfo); DO_APP_FUNC(0x003BCBE0, void, NativeNameAttribute_set_Name, (NativeNameAttribute * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x02DC2900, void, NativeNameAttribute__ctor, (NativeNameAttribute * __this, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B078, NativeNameAttribute__ctor__MethodInfo); DO_APP_FUNC(0x003BCD30, void, NativeWritableSelfAttribute_set_WritableSelf, (NativeWritableSelfAttribute * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x003BCD40, void, NativeWritableSelfAttribute__ctor, (NativeWritableSelfAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, NativeMethodAttribute_set_Name, (NativeMethodAttribute * __this, String * value, MethodInfo * method)); @@ -117725,6 +130325,7 @@ DO_APP_FUNC(0x006B5740, void, NativeMethodAttribute_set_ThrowsException, (Native DO_APP_FUNC(0x006B5760, void, NativeMethodAttribute_set_HasExplicitThis, (NativeMethodAttribute * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NativeMethodAttribute__ctor, (NativeMethodAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x02DC2A80, void, NativeMethodAttribute__ctor_1, (NativeMethodAttribute * __this, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B068, NativeMethodAttribute__ctor_1__MethodInfo); DO_APP_FUNC(0x02DC2C00, void, NativeMethodAttribute__ctor_2, (NativeMethodAttribute * __this, String * name, bool isFreeFunction, MethodInfo * method)); DO_APP_FUNC(0x02DC2C30, void, NativeMethodAttribute__ctor_3, (NativeMethodAttribute * __this, String * name, bool isFreeFunction, bool isThreadSafe, MethodInfo * method)); DO_APP_FUNC(0x003CC990, void, NativePropertyAttribute_set_TargetType, (NativePropertyAttribute * __this, TargetType__Enum value, MethodInfo * method)); @@ -117739,6 +130340,7 @@ DO_APP_FUNC(0x003CC990, void, NativeTypeAttribute_set_CodegenOptions, (NativeTyp DO_APP_FUNC(0x005CFCC0, void, NativeTypeAttribute__ctor, (NativeTypeAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x003CC990, void, NativeTypeAttribute__ctor_1, (NativeTypeAttribute * __this, CodegenOptions__Enum codegenOptions, MethodInfo * method)); DO_APP_FUNC(0x02DC2D00, void, NativeTypeAttribute__ctor_2, (NativeTypeAttribute * __this, String * header, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B080, NativeTypeAttribute__ctor_2__MethodInfo); DO_APP_FUNC(0x02DC2E90, void, NativeTypeAttribute__ctor_3, (NativeTypeAttribute * __this, CodegenOptions__Enum codegenOptions, String * intermediateStructName, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, NotNullAttribute_2_set_Exception, (NotNullAttribute_2 * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, NotNullAttribute_2__ctor, (NotNullAttribute_2 * __this, String * exception, MethodInfo * method)); @@ -117781,29 +130383,30 @@ DO_APP_FUNC(0x02D9A850, TileFlags__Enum, Tile_get_flags, (Tile * __this, MethodI DO_APP_FUNC(0x00A863B0, void, Tile_set_flags, (Tile * __this, TileFlags__Enum value, MethodInfo * method)); DO_APP_FUNC(0x02E199C0, Tile_ColliderType__Enum, Tile_get_colliderType, (Tile * __this, MethodInfo * method)); DO_APP_FUNC(0x01DB9900, void, Tile_set_colliderType, (Tile * __this, Tile_ColliderType__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x02E199D0, void, Tile_GetTileData, (Tile * __this, Vector3Int position, ITilemap * tilemap, TileData tileData, MethodInfo * method)); +DO_APP_FUNC(0x02E199D0, void, Tile_GetTileData, (Tile * __this, Vector3Int position, ITilemap * tilemap, TileData * tileData, MethodInfo * method)); DO_APP_FUNC(0x02E19A80, void, Tile__ctor, (Tile * __this, MethodInfo * method)); DO_APP_FUNC(0x02E19B10, void, TileBase_RefreshTile, (TileBase * __this, Vector3Int position, ITilemap * tilemap, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, TileBase_GetTileData, (TileBase * __this, Vector3Int position, ITilemap * tilemap, TileData tileData, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, TileBase_GetTileData, (TileBase * __this, Vector3Int position, ITilemap * tilemap, TileData * tileData, MethodInfo * method)); DO_APP_FUNC(0x02E19B50, TileData, TileBase_GetTileDataNoRef, (TileBase * __this, Vector3Int position, ITilemap * tilemap, MethodInfo * method)); -DO_APP_FUNC(0x01BD8C20, bool, TileBase_GetTileAnimationData, (TileBase * __this, Vector3Int position, ITilemap * tilemap, TileAnimationData tileAnimationData, MethodInfo * method)); +DO_APP_FUNC(0x01BD8C20, bool, TileBase_GetTileAnimationData, (TileBase * __this, Vector3Int position, ITilemap * tilemap, TileAnimationData * tileAnimationData, MethodInfo * method)); DO_APP_FUNC(0x02E19C30, TileAnimationData, TileBase_GetTileAnimationDataNoRef, (TileBase * __this, Vector3Int position, ITilemap * tilemap, MethodInfo * method)); -DO_APP_FUNC(0x02E19CA0, void, TileBase_GetTileAnimationDataRef, (TileBase * __this, Vector3Int position, ITilemap * tilemap, TileAnimationData tileAnimationData, bool hasAnimation, MethodInfo * method)); +DO_APP_FUNC(0x02E19CA0, void, TileBase_GetTileAnimationDataRef, (TileBase * __this, Vector3Int position, ITilemap * tilemap, TileAnimationData * tileAnimationData, bool * hasAnimation, MethodInfo * method)); DO_APP_FUNC(0x01BD8C20, bool, TileBase_StartUp, (TileBase * __this, Vector3Int position, ITilemap * tilemap, GameObject * go, MethodInfo * method)); -DO_APP_FUNC(0x02E19CE0, void, TileBase_StartUpRef, (TileBase * __this, Vector3Int position, ITilemap * tilemap, GameObject * go, bool startUpInvokedByUser, MethodInfo * method)); +DO_APP_FUNC(0x02E19CE0, void, TileBase_StartUpRef, (TileBase * __this, Vector3Int position, ITilemap * tilemap, GameObject * go, bool * startUpInvokedByUser, MethodInfo * method)); DO_APP_FUNC(0x003BA2A0, void, TileBase__ctor, (TileBase * __this, MethodInfo * method)); DO_APP_FUNC(0x02E19D20, void, Tilemap_RefreshTile, (Tilemap * __this, Vector3Int position, MethodInfo * method)); DO_APP_FUNC(0x02E19D80, void, Tilemap_RefreshTilesNative, (Tilemap * __this, Void * positions, int32_t count, MethodInfo * method)); -DO_APP_FUNC(0x02E19DF0, void, Tilemap_RefreshTile_Injected, (Tilemap * __this, Vector3Int position, MethodInfo * method)); +DO_APP_FUNC(0x02E19DF0, void, Tilemap_RefreshTile_Injected, (Tilemap * __this, Vector3Int * position, MethodInfo * method)); DO_APP_FUNC(0x02E19E50, void, TilemapRenderer_RegisterSpriteAtlasRegistered, (TilemapRenderer * __this, MethodInfo * method)); DO_APP_FUNC(0x02E19EE0, void, TilemapRenderer_UnregisterSpriteAtlasRegistered, (TilemapRenderer * __this, MethodInfo * method)); DO_APP_FUNC(0x02E1A080, void, TilemapRenderer_OnSpriteAtlasRegistered, (TilemapRenderer * __this, SpriteAtlas * atlas, MethodInfo * method)); -DO_APP_FUNC(0x02E1A0E0, void, TileData_set_sprite, (TileData__Boxed * __this, Sprite * value, MethodInfo * method)); -DO_APP_FUNC(0x02BD9C50, void, TileData_set_color, (TileData__Boxed * __this, Color value, MethodInfo * method)); -DO_APP_FUNC(0x02E1A200, void, TileData_set_transform, (TileData__Boxed * __this, Matrix4x4 value, MethodInfo * method)); -DO_APP_FUNC(0x02E1A220, void, TileData_set_gameObject, (TileData__Boxed * __this, GameObject * value, MethodInfo * method)); -DO_APP_FUNC(0x00720A40, void, TileData_set_flags, (TileData__Boxed * __this, TileFlags__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x00720950, void, TileData_set_colliderType, (TileData__Boxed * __this, Tile_ColliderType__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21AA8, TilemapRenderer_OnSpriteAtlasRegistered__MethodInfo); +DO_APP_FUNC(0x02E1A0E0, void, TileData_set_sprite, (TileData * __this, Sprite * value, MethodInfo * method)); +DO_APP_FUNC(0x02BD9C50, void, TileData_set_color, (TileData * __this, Color value, MethodInfo * method)); +DO_APP_FUNC(0x02E1A200, void, TileData_set_transform, (TileData * __this, Matrix4x4 value, MethodInfo * method)); +DO_APP_FUNC(0x02E1A220, void, TileData_set_gameObject, (TileData * __this, GameObject * value, MethodInfo * method)); +DO_APP_FUNC(0x00720A40, void, TileData_set_flags, (TileData * __this, TileFlags__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x00720950, void, TileData_set_colliderType, (TileData * __this, Tile_ColliderType__Enum value, MethodInfo * method)); DO_APP_FUNC(0x02E1A340, TileData, TileData_CreateDefault, (MethodInfo * method)); DO_APP_FUNC(0x02E1A480, void, TileData__cctor, (MethodInfo * method)); DO_APP_FUNC(0x018B9A40, void, HtcViveCosmosInputFeature_RegisterDeviceLayout, (HtcViveCosmosInputFeature * __this, MethodInfo * method)); @@ -117876,9 +130479,10 @@ DO_APP_FUNC(0x01C45C40, bool, ObjectPoolBase_IsPooledObjectInternal, (ObjectPool DO_APP_FUNC(0x01C45CD0, GameObject *, ObjectPoolBase_GetOriginalObject, (GameObject * instantiatedObject, MethodInfo * method)); DO_APP_FUNC(0x01C45EE0, GameObject *, ObjectPoolBase_GetOriginalObjectInternal, (ObjectPoolBase * __this, GameObject * instantiatedObject, MethodInfo * method)); DO_APP_FUNC(0x01C45FF0, void, ObjectPoolBase_SceneUnloaded, (ObjectPoolBase * __this, Scene scene, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12728, ObjectPoolBase_SceneUnloaded__MethodInfo); DO_APP_FUNC(0x01C46130, void, ObjectPoolBase_OnDisable, (ObjectPoolBase * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, GameObject *, ObjectPoolBase_PreloadedPrefab_get_Prefab, (ObjectPoolBase_PreloadedPrefab__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471920, int32_t, ObjectPoolBase_PreloadedPrefab_get_Count, (ObjectPoolBase_PreloadedPrefab__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, GameObject *, ObjectPoolBase_PreloadedPrefab_get_Prefab, (ObjectPoolBase_PreloadedPrefab * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471920, int32_t, ObjectPoolBase_PreloadedPrefab_get_Count, (ObjectPoolBase_PreloadedPrefab * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ScheduledEventBase__ctor, (ScheduledEventBase * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC3C0, float, ScheduledEventBase_get_EndTime, (ScheduledEventBase * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD70, ScheduledEventBase_InvokeLocation__Enum, ScheduledEventBase_get_Location, (ScheduledEventBase * __this, MethodInfo * method)); @@ -117907,6 +130511,7 @@ DO_APP_FUNC(0x01C47180, void, SchedulerBase_CancelEventInternal, (SchedulerBase DO_APP_FUNC(0x01C472A0, void, SchedulerBase_Invoke, (SchedulerBase * __this, ScheduledEventBase * scheduledEvent, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01C47370, void, SchedulerBase_RemoveActiveEvent, (SchedulerBase * __this, int32_t index, ScheduledEventBase_InvokeLocation__Enum location, MethodInfo * method)); DO_APP_FUNC(0x01C475F0, void, SchedulerBase_SceneUnloaded, (SchedulerBase * __this, Scene scene, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D126A8, SchedulerBase_SceneUnloaded__MethodInfo); DO_APP_FUNC(0x01C47730, void, SchedulerBase_OnDisable, (SchedulerBase * __this, MethodInfo * method)); DO_APP_FUNC(0x01C6D470, void, EyeRaycast_Awake, (EyeRaycast * __this, MethodInfo * method)); DO_APP_FUNC(0x01C6D580, void, EyeRaycast_Update, (EyeRaycast * __this, MethodInfo * method)); @@ -117926,6 +130531,7 @@ DO_APP_FUNC(0x00663F50, void, Menu_2_Quit, (Menu_2 * __this, MethodInfo * method DO_APP_FUNC(0x003AE000, void, Menu_2__ctor, (Menu_2 * __this, MethodInfo * method)); DO_APP_FUNC(0x01C6F660, void, MovementStateMonitor_Awake, (MovementStateMonitor * __this, MethodInfo * method)); DO_APP_FUNC(0x01C6F830, void, MovementStateMonitor_OnStateChange, (MovementStateMonitor * __this, GameObject * gameObject, String * stateName, bool active, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D14720, MovementStateMonitor_OnStateChange__MethodInfo); DO_APP_FUNC(0x01C6FBC0, void, MovementStateMonitor_OnDestroy, (MovementStateMonitor * __this, MethodInfo * method)); DO_APP_FUNC(0x01C6FCA0, void, MovementStateMonitor__ctor, (MovementStateMonitor * __this, MethodInfo * method)); DO_APP_FUNC(0x01C70010, void, StateSwitcher_Start, (StateSwitcher * __this, MethodInfo * method)); @@ -117955,6 +130561,7 @@ DO_APP_FUNC(0x003BB3D0, XRManagerSettings *, XRGeneralSettings_get_AssignedSetti DO_APP_FUNC(0x005F7520, bool, XRGeneralSettings_get_InitManagerOnStart, (XRGeneralSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x02C79CE0, void, XRGeneralSettings_Awake, (XRGeneralSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x02C79EB0, void, XRGeneralSettings_Quit, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD790, XRGeneralSettings_Quit__MethodInfo); DO_APP_FUNC(0x02C7A020, void, XRGeneralSettings_Start, (XRGeneralSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x02C7A030, void, XRGeneralSettings_OnDestroy, (XRGeneralSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x02C7A040, void, XRGeneralSettings_AttemptInitializeXRSDKOnLoad, (MethodInfo * method)); @@ -118006,6 +130613,7 @@ DO_APP_FUNC(0x02C7C530, bool, XRManagerSettings_InitializeLoader_d_24_MoveNext, DO_APP_FUNC(0x02C7CA70, void, XRManagerSettings_InitializeLoader_d_24___m__Finally1, (XRManagerSettings_InitializeLoader_d_24 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, XRManagerSettings_InitializeLoader_d_24_System_Collections_Generic_IEnumerator_System_Object__get_Current, (XRManagerSettings_InitializeLoader_d_24 * __this, MethodInfo * method)); DO_APP_FUNC(0x02C7CAC0, void, XRManagerSettings_InitializeLoader_d_24_System_Collections_IEnumerator_Reset, (XRManagerSettings_InitializeLoader_d_24 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD658, XRManagerSettings_InitializeLoader_d_24_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, XRManagerSettings_InitializeLoader_d_24_System_Collections_IEnumerator_get_Current, (XRManagerSettings_InitializeLoader_d_24 * __this, MethodInfo * method)); DO_APP_FUNC(0x02CB87C0, void, NavMeshPath__ctor, (NavMeshPath * __this, MethodInfo * method)); DO_APP_FUNC(0x02CB8810, void, NavMeshPath_Finalize, (NavMeshPath * __this, MethodInfo * method)); @@ -118050,34 +130658,34 @@ DO_APP_FUNC(0x02CB9700, void, NavMeshAgent_set_updateRotation, (NavMeshAgent * _ DO_APP_FUNC(0x02CB9760, void, NavMeshAgent_set_updateUpAxis, (NavMeshAgent * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x02CB97C0, float, NavMeshAgent_get_height, (NavMeshAgent * __this, MethodInfo * method)); DO_APP_FUNC(0x02CB9810, bool, NavMeshAgent_get_isOnNavMesh, (NavMeshAgent * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CB9860, bool, NavMeshAgent_SetDestination_Injected, (NavMeshAgent * __this, Vector3 target, MethodInfo * method)); -DO_APP_FUNC(0x02CB98C0, void, NavMeshAgent_get_destination_Injected, (NavMeshAgent * __this, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02CB9920, void, NavMeshAgent_get_velocity_Injected, (NavMeshAgent * __this, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02CB9980, void, NavMeshAgent_set_nextPosition_Injected, (NavMeshAgent * __this, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x02CB99E0, void, NavMeshAgent_get_desiredVelocity_Injected, (NavMeshAgent * __this, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02CB9A40, void, NavMeshAgent_GetCurrentOffMeshLinkDataInternal_Injected, (NavMeshAgent * __this, OffMeshLinkData ret, MethodInfo * method)); -DO_APP_FUNC(0x02CB9AA0, bool, NavMeshAgent_Warp_Injected, (NavMeshAgent * __this, Vector3 newPosition, MethodInfo * method)); -DO_APP_FUNC(0x02CB9B00, void, NavMeshAgent_Move_Injected, (NavMeshAgent * __this, Vector3 offset, MethodInfo * method)); -DO_APP_FUNC(0x00E57F20, OffMeshLinkType__Enum, OffMeshLinkData_get_linkType, (OffMeshLinkData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02283FD0, Vector3, OffMeshLinkData_get_endPos, (OffMeshLinkData__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CB9B60, OffMeshLink *, OffMeshLinkData_get_offMeshLink, (OffMeshLinkData__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CB9860, bool, NavMeshAgent_SetDestination_Injected, (NavMeshAgent * __this, Vector3 * target, MethodInfo * method)); +DO_APP_FUNC(0x02CB98C0, void, NavMeshAgent_get_destination_Injected, (NavMeshAgent * __this, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02CB9920, void, NavMeshAgent_get_velocity_Injected, (NavMeshAgent * __this, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02CB9980, void, NavMeshAgent_set_nextPosition_Injected, (NavMeshAgent * __this, Vector3 * value, MethodInfo * method)); +DO_APP_FUNC(0x02CB99E0, void, NavMeshAgent_get_desiredVelocity_Injected, (NavMeshAgent * __this, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02CB9A40, void, NavMeshAgent_GetCurrentOffMeshLinkDataInternal_Injected, (NavMeshAgent * __this, OffMeshLinkData * ret, MethodInfo * method)); +DO_APP_FUNC(0x02CB9AA0, bool, NavMeshAgent_Warp_Injected, (NavMeshAgent * __this, Vector3 * newPosition, MethodInfo * method)); +DO_APP_FUNC(0x02CB9B00, void, NavMeshAgent_Move_Injected, (NavMeshAgent * __this, Vector3 * offset, MethodInfo * method)); +DO_APP_FUNC(0x00E57F20, OffMeshLinkType__Enum, OffMeshLinkData_get_linkType, (OffMeshLinkData * __this, MethodInfo * method)); +DO_APP_FUNC(0x02283FD0, Vector3, OffMeshLinkData_get_endPos, (OffMeshLinkData * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CB9B60, OffMeshLink *, OffMeshLinkData_get_offMeshLink, (OffMeshLinkData * __this, MethodInfo * method)); DO_APP_FUNC(0x02CB9BB0, OffMeshLink *, OffMeshLinkData_GetOffMeshLinkInternal, (int32_t instanceID, MethodInfo * method)); DO_APP_FUNC(0x02CB9C00, int32_t, OffMeshLink_get_area, (OffMeshLink * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, OffMeshLink__ctor, (OffMeshLink * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CB9C50, Vector3, NavMeshHit_get_position, (NavMeshHit__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x02CB9C50, Vector3, NavMeshHit_get_position, (NavMeshHit * __this, MethodInfo * method)); DO_APP_FUNC(0x02CB9C70, void, NavMesh_Internal_CallOnNavMeshPreUpdate, (MethodInfo * method)); DO_APP_FUNC(0x02CB9CD0, bool, NavMesh_CalculatePath, (Vector3 sourcePosition, Vector3 targetPosition, int32_t areaMask, NavMeshPath * path, MethodInfo * method)); DO_APP_FUNC(0x02CB9E20, bool, NavMesh_CalculatePathInternal, (Vector3 sourcePosition, Vector3 targetPosition, int32_t areaMask, NavMeshPath * path, MethodInfo * method)); -DO_APP_FUNC(0x02CB9EA0, bool, NavMesh_SamplePosition, (Vector3 sourcePosition, NavMeshHit hit, float maxDistance, int32_t areaMask, MethodInfo * method)); +DO_APP_FUNC(0x02CB9EA0, bool, NavMesh_SamplePosition, (Vector3 sourcePosition, NavMeshHit * hit, float maxDistance, int32_t areaMask, MethodInfo * method)); DO_APP_FUNC(0x02CB9F20, int32_t, NavMesh_GetAreaFromName, (String * areaName, MethodInfo * method)); -DO_APP_FUNC(0x02CB9F70, bool, NavMesh_CalculatePathInternal_Injected, (Vector3 sourcePosition, Vector3 targetPosition, int32_t areaMask, NavMeshPath * path, MethodInfo * method)); -DO_APP_FUNC(0x02CB9FF0, bool, NavMesh_SamplePosition_Injected, (Vector3 sourcePosition, NavMeshHit hit, float maxDistance, int32_t areaMask, MethodInfo * method)); +DO_APP_FUNC(0x02CB9F70, bool, NavMesh_CalculatePathInternal_Injected, (Vector3 * sourcePosition, Vector3 * targetPosition, int32_t areaMask, NavMeshPath * path, MethodInfo * method)); +DO_APP_FUNC(0x02CB9FF0, bool, NavMesh_SamplePosition_Injected, (Vector3 * sourcePosition, NavMeshHit * hit, float maxDistance, int32_t areaMask, MethodInfo * method)); DO_APP_FUNC(0x003F7AE0, void, NavMesh_OnNavMeshPreUpdate__ctor, (NavMesh_OnNavMeshPreUpdate * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003CB0B0, void, NavMesh_OnNavMeshPreUpdate_Invoke, (NavMesh_OnNavMeshPreUpdate * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, EmbeddedAttribute_6__ctor, (EmbeddedAttribute_6 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, IsReadOnlyAttribute_6__ctor, (IsReadOnlyAttribute_6 * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, SphereCollider *, ClothSphereColliderPair_get_first, (ClothSphereColliderPair__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, SphereCollider *, ClothSphereColliderPair_get_second, (ClothSphereColliderPair__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, SphereCollider *, ClothSphereColliderPair_get_first, (ClothSphereColliderPair * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, SphereCollider *, ClothSphereColliderPair_get_second, (ClothSphereColliderPair * __this, MethodInfo * method)); DO_APP_FUNC(0x02CDEC70, Vector3__Array *, Cloth_get_vertices, (Cloth * __this, MethodInfo * method)); DO_APP_FUNC(0x02CDECC0, Vector3__Array *, Cloth_get_normals, (Cloth * __this, MethodInfo * method)); DO_APP_FUNC(0x02CDED10, ClothSkinningCoefficient__Array *, Cloth_get_coefficients, (Cloth * __this, MethodInfo * method)); @@ -118138,16 +130746,17 @@ DO_APP_FUNC(0x003CB2B0, void, Cloth_set_useContinuousCollision, (Cloth * __this, DO_APP_FUNC(0x006B5770, bool, Cloth_get_selfCollision, (Cloth * __this, MethodInfo * method)); DO_APP_FUNC(0x02CDFFE0, void, Cloth_SetEnabledFading, (Cloth * __this, bool enabled, float interpolationTime, MethodInfo * method)); DO_APP_FUNC(0x02CE0050, void, Cloth_SetEnabledFading_1, (Cloth * __this, bool enabled, MethodInfo * method)); -DO_APP_FUNC(0x02CE00C0, RaycastHit, Cloth_Raycast, (Cloth * __this, Ray ray, float maxDistance, bool hasHit, MethodInfo * method)); +DO_APP_FUNC(0x02CE00C0, RaycastHit, Cloth_Raycast, (Cloth * __this, Ray ray, float maxDistance, bool * hasHit, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, Cloth__ctor, (Cloth * __this, MethodInfo * method)); -DO_APP_FUNC(0x02CE0160, void, Cloth_get_externalAcceleration_Injected, (Cloth * __this, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02CE01C0, void, Cloth_set_externalAcceleration_Injected, (Cloth * __this, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x02CE0220, void, Cloth_get_randomAcceleration_Injected, (Cloth * __this, Vector3 ret, MethodInfo * method)); -DO_APP_FUNC(0x02CE0280, void, Cloth_set_randomAcceleration_Injected, (Cloth * __this, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x02CE02E0, void, Cloth_Raycast_Injected, (Cloth * __this, Ray ray, float maxDistance, bool hasHit, RaycastHit ret, MethodInfo * method)); +DO_APP_FUNC(0x02CE0160, void, Cloth_get_externalAcceleration_Injected, (Cloth * __this, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02CE01C0, void, Cloth_set_externalAcceleration_Injected, (Cloth * __this, Vector3 * value, MethodInfo * method)); +DO_APP_FUNC(0x02CE0220, void, Cloth_get_randomAcceleration_Injected, (Cloth * __this, Vector3 * ret, MethodInfo * method)); +DO_APP_FUNC(0x02CE0280, void, Cloth_set_randomAcceleration_Injected, (Cloth * __this, Vector3 * value, MethodInfo * method)); +DO_APP_FUNC(0x02CE02E0, void, Cloth_Raycast_Injected, (Cloth * __this, Ray * ray, float maxDistance, bool * hasHit, RaycastHit * ret, MethodInfo * method)); DO_APP_FUNC(0x030152F0, void, VFXEventAttribute__ctor, (VFXEventAttribute * __this, void * ptr, bool owner, VisualEffectAsset * vfxAsset, MethodInfo * method)); DO_APP_FUNC(0x03015350, VFXEventAttribute *, VFXEventAttribute_CreateEventAttributeWrapper, (MethodInfo * method)); DO_APP_FUNC(0x03015410, void, VFXEventAttribute_SetWrapValue, (VFXEventAttribute * __this, void * ptrToEventAttribute, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3DD0, VFXEventAttribute_SetWrapValue__MethodInfo); DO_APP_FUNC(0x03015480, void *, VFXEventAttribute_Internal_Create, (MethodInfo * method)); DO_APP_FUNC(0x030154D0, VFXEventAttribute *, VFXEventAttribute_Internal_InstanciateVFXEventAttribute, (VisualEffectAsset * vfxAsset, MethodInfo * method)); DO_APP_FUNC(0x03015620, void, VFXEventAttribute_Internal_InitFromAsset, (VFXEventAttribute * __this, VisualEffectAsset * vfxAsset, MethodInfo * method)); @@ -118162,7 +130771,9 @@ DO_APP_FUNC(0x003BA2A0, void, VFXSpawnerCallbacks__ctor, (VFXSpawnerCallbacks * DO_APP_FUNC(0x03015930, void, VFXSpawnerState__ctor, (VFXSpawnerState * __this, void * ptr, bool owner, MethodInfo * method)); DO_APP_FUNC(0x03015940, VFXSpawnerState *, VFXSpawnerState_CreateSpawnerStateWrapper, (MethodInfo * method)); DO_APP_FUNC(0x030159D0, void, VFXSpawnerState_PrepareWrapper, (VFXSpawnerState * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3D30, VFXSpawnerState_PrepareWrapper__MethodInfo); DO_APP_FUNC(0x03015BC0, void, VFXSpawnerState_SetWrapValue, (VFXSpawnerState * __this, void * ptrToSpawnerState, void * ptrToEventAttribute, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3D18, VFXSpawnerState_SetWrapValue__MethodInfo); DO_APP_FUNC(0x03015D00, void, VFXSpawnerState_Release, (VFXSpawnerState * __this, MethodInfo * method)); DO_APP_FUNC(0x03015E10, void, VFXSpawnerState_Finalize, (VFXSpawnerState * __this, MethodInfo * method)); DO_APP_FUNC(0x03015E50, void, VFXSpawnerState_Dispose, (VFXSpawnerState * __this, MethodInfo * method)); @@ -118170,7 +130781,7 @@ DO_APP_FUNC(0x03015EB0, void, VFXSpawnerState_Internal_Destroy, (void * ptr, Met DO_APP_FUNC(0x03015F00, void, VisualEffectObject__ctor, (VisualEffectObject * __this, MethodInfo * method)); DO_APP_FUNC(0x03015F00, void, VisualEffectAsset__ctor, (VisualEffectAsset * __this, MethodInfo * method)); DO_APP_FUNC(0x03015F50, void, VisualEffectAsset__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x0114D850, void, VFXOutputEventArgs__ctor, (VFXOutputEventArgs__Boxed * __this, int32_t nameId, VFXEventAttribute * eventAttribute, MethodInfo * method)); +DO_APP_FUNC(0x0114D850, void, VFXOutputEventArgs__ctor, (VFXOutputEventArgs * __this, int32_t nameId, VFXEventAttribute * eventAttribute, MethodInfo * method)); DO_APP_FUNC(0x03016050, VisualEffectAsset *, VisualEffect_get_visualEffectAsset, (VisualEffect * __this, MethodInfo * method)); DO_APP_FUNC(0x030160A0, VFXEventAttribute *, VisualEffect_CreateVFXEventAttribute, (VisualEffect * __this, MethodInfo * method)); DO_APP_FUNC(0x03016370, VFXEventAttribute *, VisualEffect_InvokeGetCachedEventAttributeForOutputEvent_Internal, (VisualEffect * source, MethodInfo * method)); @@ -118197,10 +130808,11 @@ DO_APP_FUNC(0x028B4150, void, DotNetSocket_Close, (DotNetSocket * __this, Method DO_APP_FUNC(0x028B41F0, void, DotNetSocket_Bind, (DotNetSocket * __this, UdpEndPoint ep, MethodInfo * method)); DO_APP_FUNC(0x02742F50, bool, DotNetSocket_RecvPoll, (DotNetSocket * __this, MethodInfo * method)); DO_APP_FUNC(0x028B44F0, bool, DotNetSocket_RecvPoll_1, (DotNetSocket * __this, int32_t timeout, MethodInfo * method)); -DO_APP_FUNC(0x028B4540, int32_t, DotNetSocket_RecvFrom, (DotNetSocket * __this, Byte__Array * buffer, int32_t bufferSize, UdpEndPoint remoteEndpoint, MethodInfo * method)); +DO_APP_FUNC(0x028B4540, int32_t, DotNetSocket_RecvFrom, (DotNetSocket * __this, Byte__Array * buffer, int32_t bufferSize, UdpEndPoint * remoteEndpoint, MethodInfo * method)); DO_APP_FUNC(0x028B46C0, int32_t, DotNetSocket_SendTo, (DotNetSocket * __this, Byte__Array * buffer, int32_t bytesToSend, UdpEndPoint endpoint, MethodInfo * method)); DO_APP_FUNC(0x028B47A0, void, DotNetSocket_HandleSocketException, (DotNetSocket * __this, SocketException * exn, MethodInfo * method)); DO_APP_FUNC(0x028B49C0, void, DotNetSocket_VerifyIsBound, (DotNetSocket * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8D48, DotNetSocket_VerifyIsBound__MethodInfo); DO_APP_FUNC(0x028B4A30, void, DotNetSocket__cctor, (MethodInfo * method)); DO_APP_FUNC(0x028B4B90, void, DotNetInterface__ctor, (DotNetInterface * __this, NetworkInterface * n, UdpIPv4Address__Array * gw, UdpIPv4Address__Array * uni, UdpIPv4Address__Array * multi, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, String *, DotNetInterface_get_Name, (DotNetInterface * __this, MethodInfo * method)); @@ -118218,6 +130830,7 @@ DO_APP_FUNC(0x028B5AF0, bool, DotNetPlatformUtils_ValidType, (NetworkInterface * DO_APP_FUNC(0x028B5B60, HashSet_1_System_String_ *, DotNetPlatformUtils_GetIpsFromNetworkInterface, (NetworkInterface * n, bool ipv6, MethodInfo * method)); DO_APP_FUNC(0x028B5F20, DotNetInterface *, DotNetPlatformUtils_ParseInterface, (NetworkInterface * n, MethodInfo * method)); DO_APP_FUNC(0x028B6CE0, HashSet_1_UdpKit_UdpIPv4Address_ *, DotNetPlatformUtils_FindBroadcastAddress, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8CB0, DotNetPlatformUtils_FindBroadcastAddress__MethodInfo); DO_APP_FUNC(0x028B7680, bool, DotNetPlatformUtils_IsValidInterface, (IPInterfaceProperties * p, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, EventHandler_1__ctor, (EventHandler_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x01C420E0, void, EventHandler_1_RegisterEvent, (String * eventName, InvokableActionBase * invokableAction, MethodInfo * method)); @@ -118260,9 +130873,11 @@ DO_APP_FUNC(0x0300F450, AnalyticsResult__Enum, Analytics_RegisterEventWithLimit, DO_APP_FUNC(0x0300F4E0, AnalyticsResult__Enum, Analytics_SendEventWithLimit, (String * eventName, Object * parameters, int32_t ver, String * prefix, MethodInfo * method)); DO_APP_FUNC(0x0300F560, AnalyticsResult__Enum, Analytics_RegisterEvent, (String * eventName, int32_t maxEventPerHour, int32_t maxItems, String * vendorKey, String * prefix, MethodInfo * method)); DO_APP_FUNC(0x0300F710, AnalyticsResult__Enum, Analytics_RegisterEvent_1, (String * eventName, int32_t maxEventPerHour, int32_t maxItems, String * vendorKey, int32_t ver, String * prefix, String * assemblyInfo, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF32A8, Analytics_RegisterEvent_1__MethodInfo); DO_APP_FUNC(0x0300F870, AnalyticsResult__Enum, Analytics_SendEvent, (String * eventName, Object * parameters, int32_t ver, String * prefix, MethodInfo * method)); -DO_APP_FUNC(0x0104C5D0, PlayableHandle, VideoClipPlayable_GetHandle, (VideoClipPlayable__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x030164A0, bool, VideoClipPlayable_Equals, (VideoClipPlayable__Boxed * __this, VideoClipPlayable other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3290, Analytics_SendEvent__MethodInfo); +DO_APP_FUNC(0x0104C5D0, PlayableHandle, VideoClipPlayable_GetHandle, (VideoClipPlayable * __this, MethodInfo * method)); +DO_APP_FUNC(0x030164A0, bool, VideoClipPlayable_Equals, (VideoClipPlayable * __this, VideoClipPlayable other, MethodInfo * method)); DO_APP_FUNC(0x03016560, void, VideoPlayer_InvokePrepareCompletedCallback_Internal, (VideoPlayer * source, MethodInfo * method)); DO_APP_FUNC(0x030165A0, void, VideoPlayer_InvokeFrameReadyCallback_Internal, (VideoPlayer * source, int64_t frameIdx, MethodInfo * method)); DO_APP_FUNC(0x030165E0, void, VideoPlayer_InvokeLoopPointReachedCallback_Internal, (VideoPlayer * source, MethodInfo * method)); @@ -118297,16 +130912,18 @@ DO_APP_FUNC(0x003AE050, void, BoltDebugStart_DelayClientConnect_d_4_System_IDisp DO_APP_FUNC(0x01E9E770, bool, BoltDebugStart_DelayClientConnect_d_4_MoveNext, (BoltDebugStart_DelayClientConnect_d_4 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, BoltDebugStart_DelayClientConnect_d_4_System_Collections_Generic_IEnumerator_System_Object__get_Current, (BoltDebugStart_DelayClientConnect_d_4 * __this, MethodInfo * method)); DO_APP_FUNC(0x01E9E930, void, BoltDebugStart_DelayClientConnect_d_4_System_Collections_IEnumerator_Reset, (BoltDebugStart_DelayClientConnect_d_4 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4560, BoltDebugStart_DelayClientConnect_d_4_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, BoltDebugStart_DelayClientConnect_d_4_System_Collections_IEnumerator_get_Current, (BoltDebugStart_DelayClientConnect_d_4 * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, BoltDebugStartSettings_get_DebugStartIsSinglePlayer, (MethodInfo * method)); DO_APP_FUNC(0x01E9E980, bool, BoltDebugStartSettings_get_DebugStartIsServer, (MethodInfo * method)); DO_APP_FUNC(0x01E9E9E0, bool, BoltDebugStartSettings_get_DebugStartIsClient, (MethodInfo * method)); DO_APP_FUNC(0x01E9EA40, int32_t, BoltDebugStartSettings_get_WindowIndex, (MethodInfo * method)); -DO_APP_FUNC(0x01E9EB20, int32_t, BoltDebugStartSettings_GetWindowThreadProcessId, (HandleRef handle, int32_t processId, MethodInfo * method)); +DO_APP_FUNC(0x01E9EB20, int32_t, BoltDebugStartSettings_GetWindowThreadProcessId, (HandleRef handle, int32_t * processId, MethodInfo * method)); DO_APP_FUNC(0x01E9EBC0, bool, BoltDebugStartSettings_EnumWindows, (BoltDebugStartSettings_EnumWindowsProc * callback, void * extraData, MethodInfo * method)); DO_APP_FUNC(0x01E9EC60, int32_t, BoltDebugStartSettings_GetSystemMetrics, (int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01E9ECE0, bool, BoltDebugStartSettings_SetWindowPos, (void * hWnd, void * hWndInsertAfter, int32_t X, int32_t Y, int32_t cx, int32_t cy, int32_t uFlags, MethodInfo * method)); DO_APP_FUNC(0x01E9EDB0, bool, BoltDebugStartSettings_Window, (void * hWnd, void * lParam, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4530, BoltDebugStartSettings_Window__MethodInfo); DO_APP_FUNC(0x01E9F080, void, BoltDebugStartSettings_PositionWindow, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BoltDebugStartSettings__ctor, (BoltDebugStartSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x01E9F6E0, void, BoltDebugStartSettings__cctor, (MethodInfo * method)); @@ -118318,11 +130935,16 @@ DO_APP_FUNC(0x01E9FAF0, IAsyncResult *, BoltDebugStartSettings_EnumWindowsProc_B DO_APP_FUNC(0x0040D6F0, bool, BoltDebugStartSettings_EnumWindowsProc_EndInvoke, (BoltDebugStartSettings_EnumWindowsProc * __this, IAsyncResult * result, MethodInfo * method)); DO_APP_FUNC(0x01E9FB80, void, BoltDynamicData_Setup, (MethodInfo * method)); DO_APP_FUNC(0x01EA0150, int32_t, BoltDynamicData_GetActiveSceneIndex, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4438, BoltDynamicData_GetActiveSceneIndex__MethodInfo); DO_APP_FUNC(0x01EA01F0, int32_t, BoltDynamicData_GetSceneIndex, (String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4428, BoltDynamicData_GetSceneIndex__MethodInfo); DO_APP_FUNC(0x01EA0280, String *, BoltDynamicData_GetSceneName, (int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4430, BoltDynamicData_GetSceneName__MethodInfo); DO_APP_FUNC(0x01EA0310, List_1_Photon_Bolt_Collections_STuple_2_ *, BoltDynamicData_GetGlobalBehaviourTypes, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4440, BoltDynamicData_GetGlobalBehaviourTypes__MethodInfo); DO_APP_FUNC(0x003AE050, void, BoltDynamicData_c_DisplayClass4_0__ctor, (BoltDynamicData_c_DisplayClass4_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x01EA0810, bool, BoltDynamicData_c_DisplayClass4_0__GetGlobalBehaviourTypes_b__0, (BoltDynamicData_c_DisplayClass4_0 * __this, Assembly * assembly, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4498, BoltDynamicData_c_DisplayClass4_0__GetGlobalBehaviourTypes_b__0__MethodInfo); DO_APP_FUNC(0x003BCD60, void, BoltExecutionOrderAttribute__ctor, (BoltExecutionOrderAttribute * __this, int32_t order, MethodInfo * method)); DO_APP_FUNC(0x003BCD50, int32_t, BoltExecutionOrderAttribute_get_executionOrder, (BoltExecutionOrderAttribute * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD30, void, UnityDebugDrawer_Photon_Bolt_Internal_IDebugDrawer_IsEditor, (UnityDebugDrawer * __this, bool isEditor, MethodInfo * method)); @@ -118340,9 +130962,12 @@ DO_APP_FUNC(0x02CD6C50, AssetBundleCreateRequest *, AssetBundle_LoadFromFileAsyn DO_APP_FUNC(0x02CD6CC0, AssetBundleCreateRequest *, AssetBundle_LoadFromFileAsync, (String * path, MethodInfo * method)); DO_APP_FUNC(0x02CD6D20, AssetBundleCreateRequest *, AssetBundle_LoadFromFileAsync_1, (String * path, uint32_t crc, MethodInfo * method)); DO_APP_FUNC(0x02CD6D80, AssetBundleRequest *, AssetBundle_LoadAssetAsync, (AssetBundle * __this, String * name, Type * type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFDA58, AssetBundle_LoadAssetAsync__MethodInfo); DO_APP_FUNC(0x02CD6F00, AssetBundleRequest *, AssetBundle_LoadAssetWithSubAssetsAsync, (AssetBundle * __this, String * name, Type * type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFDA40, AssetBundle_LoadAssetWithSubAssetsAsync__MethodInfo); DO_APP_FUNC(0x02CD7020, AssetBundleRequest *, AssetBundle_LoadAllAssetsAsync, (AssetBundle * __this, MethodInfo * method)); DO_APP_FUNC(0x02CD7120, AssetBundleRequest *, AssetBundle_LoadAllAssetsAsync_1, (AssetBundle * __this, Type * type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFDA68, AssetBundle_LoadAllAssetsAsync_1__MethodInfo); DO_APP_FUNC(0x02CD71D0, AssetBundleRequest *, AssetBundle_LoadAssetAsync_Internal, (AssetBundle * __this, String * name, Type * type, MethodInfo * method)); DO_APP_FUNC(0x02CD7240, void, AssetBundle_Unload, (AssetBundle * __this, bool unloadAllLoadedObjects, MethodInfo * method)); DO_APP_FUNC(0x02CD72A0, AssetBundleRequest *, AssetBundle_LoadAssetWithSubAssetsAsync_Internal, (AssetBundle * __this, String * name, Type * type, MethodInfo * method)); @@ -118361,7 +130986,9 @@ DO_APP_FUNC(0x02D728C0, PlayableGraph, PlayableDirector_get_playableGraph, (Play DO_APP_FUNC(0x02D72940, bool, PlayableDirector_get_playOnAwake, (PlayableDirector * __this, MethodInfo * method)); DO_APP_FUNC(0x02D72990, void, PlayableDirector_Play, (PlayableDirector * __this, FrameRate frameRate, MethodInfo * method)); DO_APP_FUNC(0x02D729F0, void, PlayableDirector_Play_1, (PlayableDirector * __this, PlayableAsset * asset, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D125A8, PlayableDirector_Play_1__MethodInfo); DO_APP_FUNC(0x02D72B90, void, PlayableDirector_Play_2, (PlayableDirector * __this, PlayableAsset * asset, DirectorWrapMode__Enum mode, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D125C0, PlayableDirector_Play_2__MethodInfo); DO_APP_FUNC(0x02D72DD0, void, PlayableDirector_SetGenericBinding, (PlayableDirector * __this, Object_1 * key, Object_1 * value, MethodInfo * method)); DO_APP_FUNC(0x02D72E40, void, PlayableDirector_set_time, (PlayableDirector * __this, double value, MethodInfo * method)); DO_APP_FUNC(0x02D72EA0, double, PlayableDirector_get_time, (PlayableDirector * __this, MethodInfo * method)); @@ -118373,7 +131000,7 @@ DO_APP_FUNC(0x02D73040, void, PlayableDirector_Stop, (PlayableDirector * __this, DO_APP_FUNC(0x02D73090, void, PlayableDirector_Pause, (PlayableDirector * __this, MethodInfo * method)); DO_APP_FUNC(0x02D730E0, void, PlayableDirector_Resume, (PlayableDirector * __this, MethodInfo * method)); DO_APP_FUNC(0x02D73130, void, PlayableDirector_RebuildGraph, (PlayableDirector * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D73180, Object_1 *, PlayableDirector_GetReferenceValue, (PlayableDirector * __this, PropertyName id, bool idValid, MethodInfo * method)); +DO_APP_FUNC(0x02D73180, Object_1 *, PlayableDirector_GetReferenceValue, (PlayableDirector * __this, PropertyName id, bool * idValid, MethodInfo * method)); DO_APP_FUNC(0x02D731F0, Object_1 *, PlayableDirector_GetGenericBinding, (PlayableDirector * __this, Object_1 * key, MethodInfo * method)); DO_APP_FUNC(0x02D72690, PlayState__Enum, PlayableDirector_GetPlayState, (PlayableDirector * __this, MethodInfo * method)); DO_APP_FUNC(0x02D726E0, void, PlayableDirector_SetWrapMode, (PlayableDirector * __this, DirectorWrapMode__Enum mode, MethodInfo * method)); @@ -118390,9 +131017,9 @@ DO_APP_FUNC(0x02D73640, void, PlayableDirector_remove_stopped, (PlayableDirector DO_APP_FUNC(0x02D73750, void, PlayableDirector_SendOnPlayableDirectorPlay, (PlayableDirector * __this, MethodInfo * method)); DO_APP_FUNC(0x02D73770, void, PlayableDirector_SendOnPlayableDirectorPause, (PlayableDirector * __this, MethodInfo * method)); DO_APP_FUNC(0x02D73790, void, PlayableDirector_SendOnPlayableDirectorStop, (PlayableDirector * __this, MethodInfo * method)); -DO_APP_FUNC(0x02D737B0, void, PlayableDirector_PlayOnFrame_Injected, (PlayableDirector * __this, FrameRate frameRate, MethodInfo * method)); -DO_APP_FUNC(0x02D73810, Object_1 *, PlayableDirector_GetReferenceValue_Injected, (PlayableDirector * __this, PropertyName id, bool idValid, MethodInfo * method)); -DO_APP_FUNC(0x02D73880, void, PlayableDirector_GetGraphHandle_Injected, (PlayableDirector * __this, PlayableGraph ret, MethodInfo * method)); +DO_APP_FUNC(0x02D737B0, void, PlayableDirector_PlayOnFrame_Injected, (PlayableDirector * __this, FrameRate * frameRate, MethodInfo * method)); +DO_APP_FUNC(0x02D73810, Object_1 *, PlayableDirector_GetReferenceValue_Injected, (PlayableDirector * __this, PropertyName * id, bool * idValid, MethodInfo * method)); +DO_APP_FUNC(0x02D73880, void, PlayableDirector_GetGraphHandle_Injected, (PlayableDirector * __this, PlayableGraph * ret, MethodInfo * method)); DO_APP_FUNC(0x003F4EB0, void, NativeUpdateCallback__ctor, (NativeUpdateCallback * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EC2D0, void, NativeUpdateCallback_Invoke, (NativeUpdateCallback * __this, NativeInputUpdateType__Enum updateType, NativeInputEventBuffer * buffer, MethodInfo * method)); DO_APP_FUNC(0x02DA4B70, Action_2_Int32_String_ *, NativeInputSystem_get_onDeviceDiscovered, (MethodInfo * method)); @@ -118401,7 +131028,7 @@ DO_APP_FUNC(0x02DA4CE0, void, NativeInputSystem__cctor, (MethodInfo * method)); DO_APP_FUNC(0x02DA4D30, void, NativeInputSystem_NotifyBeforeUpdate, (NativeInputUpdateType__Enum updateType, MethodInfo * method)); DO_APP_FUNC(0x02DA4DB0, void, NativeInputSystem_NotifyUpdate, (NativeInputUpdateType__Enum updateType, void * eventBuffer, MethodInfo * method)); DO_APP_FUNC(0x02DA4E50, void, NativeInputSystem_NotifyDeviceDiscovered, (int32_t deviceId, String * deviceDescriptor, MethodInfo * method)); -DO_APP_FUNC(0x02DA4ED0, void, NativeInputSystem_ShouldRunUpdate, (NativeInputUpdateType__Enum updateType, bool retval, MethodInfo * method)); +DO_APP_FUNC(0x02DA4ED0, void, NativeInputSystem_ShouldRunUpdate, (NativeInputUpdateType__Enum updateType, bool * retval, MethodInfo * method)); DO_APP_FUNC(0x02DA4F60, void, NativeInputSystem_set_hasDeviceDiscoveredCallback, (bool value, MethodInfo * method)); DO_APP_FUNC(0x02DA4FB0, double, NativeInputSystem_get_currentTime, (MethodInfo * method)); DO_APP_FUNC(0x02DA5000, double, NativeInputSystem_get_currentTimeOffsetToRealtimeSinceStartup, (MethodInfo * method)); @@ -118422,15 +131049,18 @@ DO_APP_FUNC(0x03016B90, float, XRSettings_get_renderViewportScaleInternal, (Meth DO_APP_FUNC(0x03016BE0, String *, XRSettings_get_loadedDeviceName, (MethodInfo * method)); DO_APP_FUNC(0x03016C30, String__Array *, XRSettings_get_supportedDevices, (MethodInfo * method)); DO_APP_FUNC(0x03016C80, XRSettings_StereoRenderingMode__Enum, XRSettings_get_stereoRenderingMode, (MethodInfo * method)); -DO_APP_FUNC(0x03016CD0, void, XRSettings_get_eyeTextureDesc_Injected, (RenderTextureDescriptor ret, MethodInfo * method)); +DO_APP_FUNC(0x03016CD0, void, XRSettings_get_eyeTextureDesc_Injected, (RenderTextureDescriptor * ret, MethodInfo * method)); DO_APP_FUNC(0x03016D20, void, XRDevice_DisableAutoXRCameraTracking, (Camera * camera, bool disabled, MethodInfo * method)); DO_APP_FUNC(0x03016D80, void, XRDevice_InvokeDeviceLoaded, (String * loadedDeviceName, MethodInfo * method)); DO_APP_FUNC(0x02DA5220, String *, JsonUtility_ToJsonInternal, (Object * obj, bool prettyPrint, MethodInfo * method)); DO_APP_FUNC(0x02DA5280, Object *, JsonUtility_FromJsonInternal, (String * json, Object * objectToOverwrite, Type * type, MethodInfo * method)); DO_APP_FUNC(0x02A21E70, String *, JsonUtility_ToJson, (Object * obj, MethodInfo * method)); DO_APP_FUNC(0x02DA52F0, String *, JsonUtility_ToJson_1, (Object * obj, bool prettyPrint, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D160F8, JsonUtility_ToJson_1__MethodInfo); DO_APP_FUNC(0x02DA54B0, Object *, JsonUtility_FromJson, (String * json, Type * type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16120, JsonUtility_FromJson__MethodInfo); DO_APP_FUNC(0x02DA5690, void, JsonUtility_FromJsonOverwrite, (String * json, Object * objectToOverwrite, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16130, JsonUtility_FromJsonOverwrite__MethodInfo); DO_APP_FUNC(0x0300FA00, UnityWebRequest *, UnityWebRequestAssetBundle_GetAssetBundle, (String * uri, MethodInfo * method)); DO_APP_FUNC(0x0300FA10, UnityWebRequest *, UnityWebRequestAssetBundle_GetAssetBundle_1, (String * uri, uint32_t crc, MethodInfo * method)); DO_APP_FUNC(0x0300FB20, UnityWebRequest *, UnityWebRequestAssetBundle_GetAssetBundle_2, (String * uri, CachedAssetBundle cachedAssetBundle, uint32_t crc, MethodInfo * method)); @@ -118441,31 +131071,33 @@ DO_APP_FUNC(0x0300FDE0, void, DownloadHandlerAssetBundle_InternalCreateAssetBund DO_APP_FUNC(0x0300FD60, void, DownloadHandlerAssetBundle__ctor, (DownloadHandlerAssetBundle * __this, String * url, uint32_t crc, MethodInfo * method)); DO_APP_FUNC(0x0300FE70, void, DownloadHandlerAssetBundle__ctor_1, (DownloadHandlerAssetBundle * __this, String * url, CachedAssetBundle cachedBundle, uint32_t crc, MethodInfo * method)); DO_APP_FUNC(0x0300FF10, Byte__Array *, DownloadHandlerAssetBundle_GetData, (DownloadHandlerAssetBundle * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF32D8, DownloadHandlerAssetBundle_GetData__MethodInfo); DO_APP_FUNC(0x0300FF70, String *, DownloadHandlerAssetBundle_GetText, (DownloadHandlerAssetBundle * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF32C8, DownloadHandlerAssetBundle_GetText__MethodInfo); DO_APP_FUNC(0x0300FFD0, AssetBundle *, DownloadHandlerAssetBundle_get_assetBundle, (DownloadHandlerAssetBundle * __this, MethodInfo * method)); DO_APP_FUNC(0x03010020, bool, DownloadHandlerAssetBundle_get_autoLoadAssetBundle, (DownloadHandlerAssetBundle * __this, MethodInfo * method)); DO_APP_FUNC(0x03010070, void, DownloadHandlerAssetBundle_set_autoLoadAssetBundle, (DownloadHandlerAssetBundle * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x030100D0, bool, DownloadHandlerAssetBundle_get_isDownloadComplete, (DownloadHandlerAssetBundle * __this, MethodInfo * method)); -DO_APP_FUNC(0x03010120, void *, DownloadHandlerAssetBundle_CreateCached_Injected, (DownloadHandlerAssetBundle * obj, String * url, String * name, Hash128 hash, uint32_t crc, MethodInfo * method)); -DO_APP_FUNC(0x02CEB1F0, Vector3, WheelHit_get_normal, (WheelHit__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02BA0970, float, WheelHit_get_forwardSlip, (WheelHit__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DA1C50, float, WheelHit_get_sidewaysSlip, (WheelHit__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x03010120, void *, DownloadHandlerAssetBundle_CreateCached_Injected, (DownloadHandlerAssetBundle * obj, String * url, String * name, Hash128 * hash, uint32_t crc, MethodInfo * method)); +DO_APP_FUNC(0x02CEB1F0, Vector3, WheelHit_get_normal, (WheelHit * __this, MethodInfo * method)); +DO_APP_FUNC(0x02BA0970, float, WheelHit_get_forwardSlip, (WheelHit * __this, MethodInfo * method)); +DO_APP_FUNC(0x02DA1C50, float, WheelHit_get_sidewaysSlip, (WheelHit * __this, MethodInfo * method)); DO_APP_FUNC(0x030150B0, float, WheelCollider_get_radius, (WheelCollider * __this, MethodInfo * method)); DO_APP_FUNC(0x03015100, void, WheelCollider_set_motorTorque, (WheelCollider * __this, float value, MethodInfo * method)); DO_APP_FUNC(0x03015160, void, WheelCollider_set_brakeTorque, (WheelCollider * __this, float value, MethodInfo * method)); DO_APP_FUNC(0x030151C0, void, WheelCollider_set_steerAngle, (WheelCollider * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x03015220, void, WheelCollider_GetWorldPose, (WheelCollider * __this, Vector3 pos, Quaternion quat, MethodInfo * method)); -DO_APP_FUNC(0x03015290, bool, WheelCollider_GetGroundHit, (WheelCollider * __this, WheelHit hit, MethodInfo * method)); +DO_APP_FUNC(0x03015220, void, WheelCollider_GetWorldPose, (WheelCollider * __this, Vector3 * pos, Quaternion * quat, MethodInfo * method)); +DO_APP_FUNC(0x03015290, bool, WheelCollider_GetGroundHit, (WheelCollider * __this, WheelHit * hit, MethodInfo * method)); DO_APP_FUNC(0x02DC2260, void, ScreenCapture_CaptureScreenshot, (String * filename, int32_t superSize, MethodInfo * method)); DO_APP_FUNC(0x02DC22D0, Texture2D *, ScreenCapture_CaptureScreenshotAsTexture, (MethodInfo * method)); DO_APP_FUNC(0x02DC2320, void, ScreenCapture_CaptureScreenshot_1, (String * filename, int32_t superSize, ScreenCapture_StereoScreenCaptureMode__Enum CaptureMode, MethodInfo * method)); DO_APP_FUNC(0x02DC2390, Texture2D *, ScreenCapture_CaptureScreenshotAsTexture_1, (int32_t superSize, ScreenCapture_StereoScreenCaptureMode__Enum stereoScreenCaptureMode, MethodInfo * method)); DO_APP_FUNC(0x02DD67E0, TerrainData *, TerrainCollider_get_terrainData, (TerrainCollider * __this, MethodInfo * method)); DO_APP_FUNC(0x02DD6830, void, TerrainCollider_set_terrainData, (TerrainCollider * __this, TerrainData * value, MethodInfo * method)); -DO_APP_FUNC(0x02DD6890, RaycastHit, TerrainCollider_Raycast, (TerrainCollider * __this, Ray ray, float maxDistance, bool hitHoles, bool hasHit, MethodInfo * method)); -DO_APP_FUNC(0x02DD6940, bool, TerrainCollider_Raycast_1, (TerrainCollider * __this, Ray ray, RaycastHit hitInfo, float maxDistance, bool hitHoles, MethodInfo * method)); +DO_APP_FUNC(0x02DD6890, RaycastHit, TerrainCollider_Raycast, (TerrainCollider * __this, Ray ray, float maxDistance, bool hitHoles, bool * hasHit, MethodInfo * method)); +DO_APP_FUNC(0x02DD6940, bool, TerrainCollider_Raycast_1, (TerrainCollider * __this, Ray ray, RaycastHit * hitInfo, float maxDistance, bool hitHoles, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, TerrainCollider__ctor, (TerrainCollider * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DD6A40, void, TerrainCollider_Raycast_Injected, (TerrainCollider * __this, Ray ray, float maxDistance, bool hitHoles, bool hasHit, RaycastHit ret, MethodInfo * method)); +DO_APP_FUNC(0x02DD6A40, void, TerrainCollider_Raycast_Injected, (TerrainCollider * __this, Ray * ray, float maxDistance, bool hitHoles, bool * hasHit, RaycastHit * ret, MethodInfo * method)); DO_APP_FUNC(0x03016DE0, WindZoneMode__Enum, WindZone_get_mode, (WindZone * __this, MethodInfo * method)); DO_APP_FUNC(0x03016E30, float, WindZone_get_radius, (WindZone * __this, MethodInfo * method)); DO_APP_FUNC(0x03016E80, float, WindZone_get_windMain, (WindZone * __this, MethodInfo * method)); @@ -118479,8 +131111,8 @@ DO_APP_FUNC(0x030170E0, void, WindZone_set_windPulseFrequency, (WindZone * __thi DO_APP_FUNC(0x02D72630, void, CrashReportHandler_SetUserMetadata, (String * key, String * value, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, GridLayout_DoNothing, (GridLayout * __this, MethodInfo * method)); DO_APP_FUNC(0x02DC2F40, void, TrackedPoseDriverDataDescription__cctor, (MethodInfo * method)); -DO_APP_FUNC(0x02DC3A90, PoseDataFlags__Enum, PoseDataSource_GetNodePoseData, (XRNode__Enum node, Pose resultPose, MethodInfo * method)); -DO_APP_FUNC(0x02DC3F40, PoseDataFlags__Enum, PoseDataSource_GetDataFromSource, (TrackedPoseDriver_TrackedPose__Enum poseSource, Pose resultPose, MethodInfo * method)); +DO_APP_FUNC(0x02DC3A90, PoseDataFlags__Enum, PoseDataSource_GetNodePoseData, (XRNode__Enum node, Pose * resultPose, MethodInfo * method)); +DO_APP_FUNC(0x02DC3F40, PoseDataFlags__Enum, PoseDataSource_GetDataFromSource, (TrackedPoseDriver_TrackedPose__Enum poseSource, Pose * resultPose, MethodInfo * method)); DO_APP_FUNC(0x02DC42B0, void, PoseDataSource__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, TrackedPoseDriver_DeviceType__Enum, TrackedPoseDriver_1_get_deviceType, (TrackedPoseDriver_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCDD0, void, TrackedPoseDriver_1_set_deviceType, (TrackedPoseDriver_1 * __this, TrackedPoseDriver_DeviceType__Enum value, MethodInfo * method)); @@ -118489,7 +131121,7 @@ DO_APP_FUNC(0x006D8870, void, TrackedPoseDriver_1_set_poseSource, (TrackedPoseDr DO_APP_FUNC(0x02DC4380, bool, TrackedPoseDriver_1_SetPoseSource, (TrackedPoseDriver_1 * __this, TrackedPoseDriver_DeviceType__Enum deviceType, TrackedPoseDriver_TrackedPose__Enum pose, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, BasePoseProvider *, TrackedPoseDriver_1_get_poseProviderComponent, (TrackedPoseDriver_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCDE0, void, TrackedPoseDriver_1_set_poseProviderComponent, (TrackedPoseDriver_1 * __this, BasePoseProvider * value, MethodInfo * method)); -DO_APP_FUNC(0x02DC4500, PoseDataFlags__Enum, TrackedPoseDriver_1_GetPoseData, (TrackedPoseDriver_1 * __this, TrackedPoseDriver_DeviceType__Enum device, TrackedPoseDriver_TrackedPose__Enum poseSource, Pose resultPose, MethodInfo * method)); +DO_APP_FUNC(0x02DC4500, PoseDataFlags__Enum, TrackedPoseDriver_1_GetPoseData, (TrackedPoseDriver_1 * __this, TrackedPoseDriver_DeviceType__Enum device, TrackedPoseDriver_TrackedPose__Enum poseSource, Pose * resultPose, MethodInfo * method)); DO_APP_FUNC(0x00421680, TrackedPoseDriver_TrackingType__Enum_1, TrackedPoseDriver_1_get_trackingType, (TrackedPoseDriver_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x00421690, void, TrackedPoseDriver_1_set_trackingType, (TrackedPoseDriver_1 * __this, TrackedPoseDriver_TrackingType__Enum_1 value, MethodInfo * method)); DO_APP_FUNC(0x0098C870, TrackedPoseDriver_UpdateType__Enum_1, TrackedPoseDriver_1_get_updateType, (TrackedPoseDriver_1 * __this, MethodInfo * method)); @@ -118512,8 +131144,8 @@ DO_APP_FUNC(0x02DC4C20, Pose, TrackedPoseDriver_1_TransformPoseByOriginIfNeeded, DO_APP_FUNC(0x02DC4D00, bool, TrackedPoseDriver_1_HasStereoCamera, (TrackedPoseDriver_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02DC4E60, void, TrackedPoseDriver_1_PerformUpdate, (TrackedPoseDriver_1 * __this, MethodInfo * method)); DO_APP_FUNC(0x02DC5160, void, TrackedPoseDriver_1__ctor, (TrackedPoseDriver_1 * __this, MethodInfo * method)); -DO_APP_FUNC(0x02DC51B0, PoseDataFlags__Enum, BasePoseProvider_GetPoseFromProvider, (BasePoseProvider * __this, Pose output, MethodInfo * method)); -DO_APP_FUNC(0x02DC51E0, bool, BasePoseProvider_TryGetPoseFromProvider, (BasePoseProvider * __this, Pose output, MethodInfo * method)); +DO_APP_FUNC(0x02DC51B0, PoseDataFlags__Enum, BasePoseProvider_GetPoseFromProvider, (BasePoseProvider * __this, Pose * output, MethodInfo * method)); +DO_APP_FUNC(0x02DC51E0, bool, BasePoseProvider_TryGetPoseFromProvider, (BasePoseProvider * __this, Pose * output, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, BasePoseProvider__ctor, (BasePoseProvider * __this, MethodInfo * method)); DO_APP_FUNC(0x00B600F0, void, BlendShapesPresetControllerBase_Init, (BlendShapesPresetControllerBase * __this, MethodInfo * method)); DO_APP_FUNC(0x00B60720, void, BlendShapesPresetControllerBase_Start, (BlendShapesPresetControllerBase * __this, MethodInfo * method)); @@ -118542,7 +131174,9 @@ DO_APP_FUNC(0x02CA7790, MockRuntime *, MockRuntime_get_Instance, (MethodInfo * m DO_APP_FUNC(0x02CA77E0, void, MockRuntime_ReceiveScriptEvent, (MockRuntime_ScriptEvent__Enum evt, uint64_t param, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA5520, MockRuntime_ReceiveScriptEvent__MethodInfo); DO_APP_FUNC(0x02CA7850, XrResult__Enum_1, MockRuntime_BeforeFunctionCallback, (String * function, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1188, MockRuntime_BeforeFunctionCallback__MethodInfo); DO_APP_FUNC(0x02CA7890, void, MockRuntime_AfterFunctionCallback, (String * function, XrResult__Enum_1 result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1180, MockRuntime_AfterFunctionCallback__MethodInfo); DO_APP_FUNC(0x02CA78D0, void, MockRuntime_SetFunctionCallback, (String * function, MockRuntime_BeforeFunctionDelegate * beforeCallback, MockRuntime_AfterFunctionDelegate * afterCallback, MethodInfo * method)); DO_APP_FUNC(0x02CA8000, void, MockRuntime_SetFunctionCallback_1, (String * function, MockRuntime_BeforeFunctionDelegate * beforeCallback, MethodInfo * method)); DO_APP_FUNC(0x02CA8040, void, MockRuntime_SetFunctionCallback_2, (String * function, MockRuntime_AfterFunctionDelegate * afterCallback, MethodInfo * method)); @@ -118563,7 +131197,7 @@ DO_APP_FUNC(0x02CA8870, XrSessionState__Enum_1, MockRuntime_Internal_GetSessionS DO_APP_FUNC(0x02CA88E0, void, MockRuntime_RequestExitSession, (MethodInfo * method)); DO_APP_FUNC(0x02CA8950, void, MockRuntime_CauseInstanceLoss, (MethodInfo * method)); DO_APP_FUNC(0x02CA89C0, void, MockRuntime_SetReferenceSpaceBounds, (XrReferenceSpaceType__Enum_2 referenceSpace, Vector2 bounds, MethodInfo * method)); -DO_APP_FUNC(0x02CA8A50, void, MockRuntime_GetEndFrameStats, (int32_t primaryLayerCount, int32_t secondaryLayerCount, MethodInfo * method)); +DO_APP_FUNC(0x02CA8A50, void, MockRuntime_GetEndFrameStats, (int32_t * primaryLayerCount, int32_t * secondaryLayerCount, MethodInfo * method)); DO_APP_FUNC(0x02CA8AE0, void, MockRuntime_ActivateSecondaryView, (XrViewConfigurationType__Enum viewConfigurationType, bool activate, MethodInfo * method)); DO_APP_FUNC(0x02CA8B70, void, MockRuntime_MockRuntime_RegisterFunctionCallbacks, (MockRuntime_BeforeFunctionDelegate * hookBefore, MockRuntime_AfterFunctionDelegate * hookAfter, MethodInfo * method)); DO_APP_FUNC(0x02CA8C10, void, MockRuntime_MetaPerformanceMetrics_SeedCounterOnce_Float, (String * xrPathString, float value, uint32_t unit, MethodInfo * method)); @@ -118684,7 +131318,7 @@ DO_APP_FUNC(0x028B7A50, UdpEndPoint, NullSocket_get_EndPoint, (NullSocket * __th DO_APP_FUNC(0x028B7AC0, String *, NullSocket_get_Error, (NullSocket * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, NullSocket_get_IsBound, (NullSocket * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, UdpPlatform *, NullSocket_get_Platform, (NullSocket * __this, MethodInfo * method)); -DO_APP_FUNC(0x003CB690, int32_t, NullSocket_RecvFrom, (NullSocket * __this, Byte__Array * buffer, int32_t bufferSize, UdpEndPoint remoteEndpoint, MethodInfo * method)); +DO_APP_FUNC(0x003CB690, int32_t, NullSocket_RecvFrom, (NullSocket * __this, Byte__Array * buffer, int32_t bufferSize, UdpEndPoint * remoteEndpoint, MethodInfo * method)); DO_APP_FUNC(0x028B7B00, bool, NullSocket_RecvPoll, (NullSocket * __this, int32_t timeout, MethodInfo * method)); DO_APP_FUNC(0x02742F50, bool, NullSocket_RecvPoll_1, (NullSocket * __this, MethodInfo * method)); DO_APP_FUNC(0x01960D40, int32_t, NullSocket_SendTo, (NullSocket * __this, Byte__Array * buffer, int32_t bytesToSend, UdpEndPoint endpoint, MethodInfo * method)); @@ -118694,6 +131328,7 @@ DO_APP_FUNC(0x028E2970, void, UIEffect_Demo_ColorControl__ctor, (UIEffect_Demo_C DO_APP_FUNC(0x028E2A80, void, UIEffect_Demo_ColorControl_ColorEvent__ctor, (UIEffect_Demo_ColorControl_ColorEvent * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, UIEffect_Demo_ColorControl_c_DisplayClass3_0__ctor, (UIEffect_Demo_ColorControl_c_DisplayClass3_0 * __this, MethodInfo * method)); DO_APP_FUNC(0x028E2AC0, void, UIEffect_Demo_ColorControl_c_DisplayClass3_0__Start_b__0, (UIEffect_Demo_ColorControl_c_DisplayClass3_0 * __this, float value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB058, UIEffect_Demo_ColorControl_c_DisplayClass3_0__Start_b__0__MethodInfo); DO_APP_FUNC(0x028E2BD0, void, UIEffect_Demo_PropertyControl_ChangeValue, (UIEffect_Demo_PropertyControl * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, UIEffect_Demo_PropertyControl__ctor, (UIEffect_Demo_PropertyControl * __this, MethodInfo * method)); DO_APP_FUNC(0x028E2F90, void, UIEffect_Demo_Start, (UIEffect_Demo * __this, MethodInfo * method)); @@ -118724,15 +131359,16 @@ DO_APP_FUNC(0x02CA7460, bool, ConformanceAutomationFeature_xrSetInputDeviceVeloc DO_APP_FUNC(0x003BA2A0, void, ConformanceAutomationFeature__ctor, (ConformanceAutomationFeature * __this, MethodInfo * method)); DO_APP_FUNC(0x02CA8E00, void *, RuntimeDebuggerOpenXRFeature_HookGetInstanceProcAddr, (RuntimeDebuggerOpenXRFeature * __this, void * func, MethodInfo * method)); DO_APP_FUNC(0x02CA8F90, void, RuntimeDebuggerOpenXRFeature_RecvMsg, (RuntimeDebuggerOpenXRFeature * __this, MessageEventArgs * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB11E0, RuntimeDebuggerOpenXRFeature_RecvMsg__MethodInfo); DO_APP_FUNC(0x02CA92F0, void *, RuntimeDebuggerOpenXRFeature_Native_HookGetInstanceProcAddr, (void * func, uint32_t cacheSize, uint32_t perThreadCacheSize, MethodInfo * method)); -DO_APP_FUNC(0x02CA9390, bool, RuntimeDebuggerOpenXRFeature_Native_GetDataForRead, (void * ptr, uint32_t size, MethodInfo * method)); -DO_APP_FUNC(0x02CA9420, void, RuntimeDebuggerOpenXRFeature_Native_GetLUTData, (void * ptr, uint32_t size, uint32_t offset, MethodInfo * method)); +DO_APP_FUNC(0x02CA9390, bool, RuntimeDebuggerOpenXRFeature_Native_GetDataForRead, (void * * ptr, uint32_t * size, MethodInfo * method)); +DO_APP_FUNC(0x02CA9420, void, RuntimeDebuggerOpenXRFeature_Native_GetLUTData, (void * * ptr, uint32_t * size, uint32_t offset, MethodInfo * method)); DO_APP_FUNC(0x02CA94C0, void, RuntimeDebuggerOpenXRFeature_Native_StartDataAccess, (MethodInfo * method)); DO_APP_FUNC(0x02CA9530, void, RuntimeDebuggerOpenXRFeature_Native_EndDataAccess, (MethodInfo * method)); DO_APP_FUNC(0x02CA95A0, void, RuntimeDebuggerOpenXRFeature__ctor, (RuntimeDebuggerOpenXRFeature * __this, MethodInfo * method)); DO_APP_FUNC(0x02CA95C0, void, RuntimeDebuggerOpenXRFeature__cctor, (MethodInfo * method)); DO_APP_FUNC(0x00C0FE40, uint32_t, Process_1_GetCurrentProcessId, (MethodInfo * method)); -DO_APP_FUNC(0x00C0FEC0, bool, Process_1_EnumProcessModules, (void * hProcess, IntPtr__Array * lphModule, uint32_t cb, uint32_t lpcbNeeded, MethodInfo * method)); +DO_APP_FUNC(0x00C0FEC0, bool, Process_1_EnumProcessModules, (void * hProcess, IntPtr__Array * lphModule, uint32_t cb, uint32_t * lpcbNeeded, MethodInfo * method)); DO_APP_FUNC(0x00C0FF80, void *, Process_1_OpenProcess, (uint32_t processAccess, bool bInheritHandle, uint32_t processId, MethodInfo * method)); DO_APP_FUNC(0x00C10020, uint32_t, Process_1_GetModuleBaseName, (void * hProcess, void * hModule, StringBuilder * lpBaseName, uint32_t nSize, MethodInfo * method)); DO_APP_FUNC(0x00C10100, String__Array *, Process_1_GetModuleNames, (MethodInfo * method)); @@ -119498,6 +132134,7 @@ DO_APP_FUNC(0x00F8E780, IEnumerator_1_System_Object_ *, Enumerable_AppendIterato DO_APP_FUNC(0x003BB3D0, Object *, Enumerable_AppendIterator_d_61_1_System_Object__System_Collections_Generic_IEnumerator_TSource__get_Current, (Enumerable_AppendIterator_d_61_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F8E8E0, IEnumerator *, Enumerable_AppendIterator_d_61_1_System_Object__System_Collections_IEnumerable_GetEnumerator, (Enumerable_AppendIterator_d_61_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F8E730, void, Enumerable_AppendIterator_d_61_1_System_Object__System_Collections_IEnumerator_Reset, (Enumerable_AppendIterator_d_61_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D448, Enumerable_AppendIterator_d_61_1_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Enumerable_AppendIterator_d_61_1_System_Object__System_Collections_IEnumerator_get_Current, (Enumerable_AppendIterator_d_61_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F8E250, void, Enumerable_AppendIterator_d_61_1_System_Object__System_IDisposable_Dispose, (Enumerable_AppendIterator_d_61_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F8E910, void, Enumerable_CastIterator_d_99_1_System_Int32Enum___ctor, (Enumerable_CastIterator_d_99_1_System_Int32Enum_ * __this, int32_t __1__state, MethodInfo * method)); @@ -119507,6 +132144,7 @@ DO_APP_FUNC(0x00F8ED30, IEnumerator_1_System_Int32Enum_ *, Enumerable_CastIterat DO_APP_FUNC(0x003BCD70, Int32Enum__Enum, Enumerable_CastIterator_d_99_1_System_Int32Enum__System_Collections_Generic_IEnumerator_TResult__get_Current, (Enumerable_CastIterator_d_99_1_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F8EE30, IEnumerator *, Enumerable_CastIterator_d_99_1_System_Int32Enum__System_Collections_IEnumerable_GetEnumerator, (Enumerable_CastIterator_d_99_1_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F8ECA0, void, Enumerable_CastIterator_d_99_1_System_Int32Enum__System_Collections_IEnumerator_Reset, (Enumerable_CastIterator_d_99_1_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D438, Enumerable_CastIterator_d_99_1_System_Int32Enum__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x00F8ECF0, Object *, Enumerable_CastIterator_d_99_1_System_Int32Enum__System_Collections_IEnumerator_get_Current, (Enumerable_CastIterator_d_99_1_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F8E250, void, Enumerable_CastIterator_d_99_1_System_Int32Enum__System_IDisposable_Dispose, (Enumerable_CastIterator_d_99_1_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0095DC40, void, Enumerable_CastIterator_d_99_1_System_Object___ctor, (Enumerable_CastIterator_d_99_1_System_Object_ * __this, int32_t __1__state, MethodInfo * method)); @@ -119516,6 +132154,7 @@ DO_APP_FUNC(0x00F8F290, IEnumerator_1_System_Object_ *, Enumerable_CastIterator_ DO_APP_FUNC(0x003BB3D0, Object *, Enumerable_CastIterator_d_99_1_System_Object__System_Collections_Generic_IEnumerator_TResult__get_Current, (Enumerable_CastIterator_d_99_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F8EE30, IEnumerator *, Enumerable_CastIterator_d_99_1_System_Object__System_Collections_IEnumerable_GetEnumerator, (Enumerable_CastIterator_d_99_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F8F240, void, Enumerable_CastIterator_d_99_1_System_Object__System_Collections_IEnumerator_Reset, (Enumerable_CastIterator_d_99_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D428, Enumerable_CastIterator_d_99_1_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Enumerable_CastIterator_d_99_1_System_Object__System_Collections_IEnumerator_get_Current, (Enumerable_CastIterator_d_99_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F8E250, void, Enumerable_CastIterator_d_99_1_System_Object__System_IDisposable_Dispose, (Enumerable_CastIterator_d_99_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F8E910, void, Enumerable_CastIterator_d_99_1_System_Single___ctor, (Enumerable_CastIterator_d_99_1_System_Single_ * __this, int32_t __1__state, MethodInfo * method)); @@ -119525,6 +132164,7 @@ DO_APP_FUNC(0x00F8ED30, IEnumerator_1_System_Single_ *, Enumerable_CastIterator_ DO_APP_FUNC(0x003BC310, float, Enumerable_CastIterator_d_99_1_System_Single__System_Collections_Generic_IEnumerator_TResult__get_Current, (Enumerable_CastIterator_d_99_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F8EE30, IEnumerator *, Enumerable_CastIterator_d_99_1_System_Single__System_Collections_IEnumerable_GetEnumerator, (Enumerable_CastIterator_d_99_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F8F6D0, void, Enumerable_CastIterator_d_99_1_System_Single__System_Collections_IEnumerator_Reset, (Enumerable_CastIterator_d_99_1_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D430, Enumerable_CastIterator_d_99_1_System_Single__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x00F8F720, Object *, Enumerable_CastIterator_d_99_1_System_Single__System_Collections_IEnumerator_get_Current, (Enumerable_CastIterator_d_99_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F8E250, void, Enumerable_CastIterator_d_99_1_System_Single__System_IDisposable_Dispose, (Enumerable_CastIterator_d_99_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F8F770, void, Enumerable_ConcatIterator_d_59_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___ctor, (Enumerable_ConcatIterator_d_59_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, int32_t __1__state, MethodInfo * method)); @@ -119535,6 +132175,7 @@ DO_APP_FUNC(0x00F900D0, IEnumerator_1_UnityEngine_ResourceManagement_Diagnostics DO_APP_FUNC(0x00F90000, DiagnosticEvent, Enumerable_ConcatIterator_d_59_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__System_Collections_Generic_IEnumerator_TSource__get_Current, (Enumerable_ConcatIterator_d_59_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F90230, IEnumerator *, Enumerable_ConcatIterator_d_59_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__System_Collections_IEnumerable_GetEnumerator, (Enumerable_ConcatIterator_d_59_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F90020, void, Enumerable_ConcatIterator_d_59_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__System_Collections_IEnumerator_Reset, (Enumerable_ConcatIterator_d_59_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D420, Enumerable_ConcatIterator_d_59_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x00F90070, Object *, Enumerable_ConcatIterator_d_59_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__System_Collections_IEnumerator_get_Current, (Enumerable_ConcatIterator_d_59_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F8F790, void, Enumerable_ConcatIterator_d_59_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__System_IDisposable_Dispose, (Enumerable_ConcatIterator_d_59_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F8E910, void, Enumerable_ConcatIterator_d_59_1_System_Int32___ctor, (Enumerable_ConcatIterator_d_59_1_System_Int32_ * __this, int32_t __1__state, MethodInfo * method)); @@ -119545,6 +132186,7 @@ DO_APP_FUNC(0x00F90840, IEnumerator_1_System_Int32_ *, Enumerable_ConcatIterator DO_APP_FUNC(0x003BCD70, int32_t, Enumerable_ConcatIterator_d_59_1_System_Int32__System_Collections_Generic_IEnumerator_TSource__get_Current, (Enumerable_ConcatIterator_d_59_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F90230, IEnumerator *, Enumerable_ConcatIterator_d_59_1_System_Int32__System_Collections_IEnumerable_GetEnumerator, (Enumerable_ConcatIterator_d_59_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F907B0, void, Enumerable_ConcatIterator_d_59_1_System_Int32__System_Collections_IEnumerator_Reset, (Enumerable_ConcatIterator_d_59_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D418, Enumerable_ConcatIterator_d_59_1_System_Int32__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x00F90800, Object *, Enumerable_ConcatIterator_d_59_1_System_Int32__System_Collections_IEnumerator_get_Current, (Enumerable_ConcatIterator_d_59_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F8F790, void, Enumerable_ConcatIterator_d_59_1_System_Int32__System_IDisposable_Dispose, (Enumerable_ConcatIterator_d_59_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0095DC40, void, Enumerable_ConcatIterator_d_59_1_System_Object___ctor, (Enumerable_ConcatIterator_d_59_1_System_Object_ * __this, int32_t __1__state, MethodInfo * method)); @@ -119555,6 +132197,7 @@ DO_APP_FUNC(0x00F90FE0, IEnumerator_1_System_Object_ *, Enumerable_ConcatIterato DO_APP_FUNC(0x003BB3D0, Object *, Enumerable_ConcatIterator_d_59_1_System_Object__System_Collections_Generic_IEnumerator_TSource__get_Current, (Enumerable_ConcatIterator_d_59_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F90230, IEnumerator *, Enumerable_ConcatIterator_d_59_1_System_Object__System_Collections_IEnumerable_GetEnumerator, (Enumerable_ConcatIterator_d_59_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F90F90, void, Enumerable_ConcatIterator_d_59_1_System_Object__System_Collections_IEnumerator_Reset, (Enumerable_ConcatIterator_d_59_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D408, Enumerable_ConcatIterator_d_59_1_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Enumerable_ConcatIterator_d_59_1_System_Object__System_Collections_IEnumerator_get_Current, (Enumerable_ConcatIterator_d_59_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F8F790, void, Enumerable_ConcatIterator_d_59_1_System_Object__System_IDisposable_Dispose, (Enumerable_ConcatIterator_d_59_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0095DC40, void, IEnumerableExtensions_ConcatUnsafe_d_1_1_System_Object___ctor, (IEnumerableExtensions_ConcatUnsafe_d_1_1_System_Object_ * __this, int32_t __1__state, MethodInfo * method)); @@ -119564,6 +132207,7 @@ DO_APP_FUNC(0x00F8E780, IEnumerator_1_System_Object_ *, IEnumerableExtensions_Co DO_APP_FUNC(0x003BB3D0, Object *, IEnumerableExtensions_ConcatUnsafe_d_1_1_System_Object__System_Collections_Generic_IEnumerator_T__get_Current, (IEnumerableExtensions_ConcatUnsafe_d_1_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F8E8E0, IEnumerator *, IEnumerableExtensions_ConcatUnsafe_d_1_1_System_Object__System_Collections_IEnumerable_GetEnumerator, (IEnumerableExtensions_ConcatUnsafe_d_1_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F91510, void, IEnumerableExtensions_ConcatUnsafe_d_1_1_System_Object__System_Collections_IEnumerator_Reset, (IEnumerableExtensions_ConcatUnsafe_d_1_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D410, IEnumerableExtensions_ConcatUnsafe_d_1_1_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, IEnumerableExtensions_ConcatUnsafe_d_1_1_System_Object__System_Collections_IEnumerator_get_Current, (IEnumerableExtensions_ConcatUnsafe_d_1_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F8E250, void, IEnumerableExtensions_ConcatUnsafe_d_1_1_System_Object__System_IDisposable_Dispose, (IEnumerableExtensions_ConcatUnsafe_d_1_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0095DC40, void, LinqExtensions_DistinctBy_d_0_2_System_Object_System_Object___ctor, (LinqExtensions_DistinctBy_d_0_2_System_Object_System_Object_ * __this, int32_t __1__state, MethodInfo * method)); @@ -119573,6 +132217,7 @@ DO_APP_FUNC(0x00F91A60, IEnumerator_1_System_Object_ *, LinqExtensions_DistinctB DO_APP_FUNC(0x003BB3D0, Object *, LinqExtensions_DistinctBy_d_0_2_System_Object_System_Object__System_Collections_Generic_IEnumerator_TSource__get_Current, (LinqExtensions_DistinctBy_d_0_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F91BC0, IEnumerator *, LinqExtensions_DistinctBy_d_0_2_System_Object_System_Object__System_Collections_IEnumerable_GetEnumerator, (LinqExtensions_DistinctBy_d_0_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F91A10, void, LinqExtensions_DistinctBy_d_0_2_System_Object_System_Object__System_Collections_IEnumerator_Reset, (LinqExtensions_DistinctBy_d_0_2_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D400, LinqExtensions_DistinctBy_d_0_2_System_Object_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, LinqExtensions_DistinctBy_d_0_2_System_Object_System_Object__System_Collections_IEnumerator_get_Current, (LinqExtensions_DistinctBy_d_0_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F8E250, void, LinqExtensions_DistinctBy_d_0_2_System_Object_System_Object__System_IDisposable_Dispose, (LinqExtensions_DistinctBy_d_0_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F8E910, void, LinqExtensions_DistinctBy_d_0_2_Steamworks_SteamItemDef_t_System_Int32___ctor, (LinqExtensions_DistinctBy_d_0_2_Steamworks_SteamItemDef_t_System_Int32_ * __this, int32_t __1__state, MethodInfo * method)); @@ -119582,6 +132227,7 @@ DO_APP_FUNC(0x00F920E0, IEnumerator_1_Steamworks_SteamItemDef_t_ *, LinqExtensio DO_APP_FUNC(0x003BCD70, SteamItemDef_t, LinqExtensions_DistinctBy_d_0_2_Steamworks_SteamItemDef_t_System_Int32__System_Collections_Generic_IEnumerator_TSource__get_Current, (LinqExtensions_DistinctBy_d_0_2_Steamworks_SteamItemDef_t_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F91BC0, IEnumerator *, LinqExtensions_DistinctBy_d_0_2_Steamworks_SteamItemDef_t_System_Int32__System_Collections_IEnumerable_GetEnumerator, (LinqExtensions_DistinctBy_d_0_2_Steamworks_SteamItemDef_t_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F92050, void, LinqExtensions_DistinctBy_d_0_2_Steamworks_SteamItemDef_t_System_Int32__System_Collections_IEnumerator_Reset, (LinqExtensions_DistinctBy_d_0_2_Steamworks_SteamItemDef_t_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D3F0, LinqExtensions_DistinctBy_d_0_2_Steamworks_SteamItemDef_t_System_Int32__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x00F920A0, Object *, LinqExtensions_DistinctBy_d_0_2_Steamworks_SteamItemDef_t_System_Int32__System_Collections_IEnumerator_get_Current, (LinqExtensions_DistinctBy_d_0_2_Steamworks_SteamItemDef_t_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F8E250, void, LinqExtensions_DistinctBy_d_0_2_Steamworks_SteamItemDef_t_System_Int32__System_IDisposable_Dispose, (LinqExtensions_DistinctBy_d_0_2_Steamworks_SteamItemDef_t_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F8E910, void, Enumerable_DistinctIterator_d_68_1_System_Int32___ctor, (Enumerable_DistinctIterator_d_68_1_System_Int32_ * __this, int32_t __1__state, MethodInfo * method)); @@ -119591,6 +132237,7 @@ DO_APP_FUNC(0x00F92740, IEnumerator_1_System_Int32_ *, Enumerable_DistinctIterat DO_APP_FUNC(0x003BCD70, int32_t, Enumerable_DistinctIterator_d_68_1_System_Int32__System_Collections_Generic_IEnumerator_TSource__get_Current, (Enumerable_DistinctIterator_d_68_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F928A0, IEnumerator *, Enumerable_DistinctIterator_d_68_1_System_Int32__System_Collections_IEnumerable_GetEnumerator, (Enumerable_DistinctIterator_d_68_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F926B0, void, Enumerable_DistinctIterator_d_68_1_System_Int32__System_Collections_IEnumerator_Reset, (Enumerable_DistinctIterator_d_68_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D3F8, Enumerable_DistinctIterator_d_68_1_System_Int32__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x00F92700, Object *, Enumerable_DistinctIterator_d_68_1_System_Int32__System_Collections_IEnumerator_get_Current, (Enumerable_DistinctIterator_d_68_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F8E250, void, Enumerable_DistinctIterator_d_68_1_System_Int32__System_IDisposable_Dispose, (Enumerable_DistinctIterator_d_68_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0095DC40, void, Enumerable_DistinctIterator_d_68_1_System_Object___ctor, (Enumerable_DistinctIterator_d_68_1_System_Object_ * __this, int32_t __1__state, MethodInfo * method)); @@ -119600,12 +132247,14 @@ DO_APP_FUNC(0x00F92D60, IEnumerator_1_System_Object_ *, Enumerable_DistinctItera DO_APP_FUNC(0x003BB3D0, Object *, Enumerable_DistinctIterator_d_68_1_System_Object__System_Collections_Generic_IEnumerator_TSource__get_Current, (Enumerable_DistinctIterator_d_68_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F928A0, IEnumerator *, Enumerable_DistinctIterator_d_68_1_System_Object__System_Collections_IEnumerable_GetEnumerator, (Enumerable_DistinctIterator_d_68_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F92D10, void, Enumerable_DistinctIterator_d_68_1_System_Object__System_Collections_IEnumerator_Reset, (Enumerable_DistinctIterator_d_68_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D3D8, Enumerable_DistinctIterator_d_68_1_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Enumerable_DistinctIterator_d_68_1_System_Object__System_Collections_IEnumerator_get_Current, (Enumerable_DistinctIterator_d_68_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F8E250, void, Enumerable_DistinctIterator_d_68_1_System_Object__System_IDisposable_Dispose, (Enumerable_DistinctIterator_d_68_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, FixedArray3_1_T_Enumerate_c_Iterator0_System_Object___ctor, (FixedArray3_1_T_Enumerate_c_Iterator0_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F930F0, void, FixedArray3_1_T_Enumerate_c_Iterator0_System_Object__Dispose, (FixedArray3_1_T_Enumerate_c_Iterator0_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F92FF0, bool, FixedArray3_1_T_Enumerate_c_Iterator0_System_Object__MoveNext, (FixedArray3_1_T_Enumerate_c_Iterator0_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F93100, void, FixedArray3_1_T_Enumerate_c_Iterator0_System_Object__Reset, (FixedArray3_1_T_Enumerate_c_Iterator0_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D3E8, FixedArray3_1_T_Enumerate_c_Iterator0_System_Object__Reset__MethodInfo); DO_APP_FUNC(0x00F92EF0, IEnumerator_1_System_Object_ *, FixedArray3_1_T_Enumerate_c_Iterator0_System_Object__System_Collections_Generic_IEnumerable_T__GetEnumerator, (FixedArray3_1_T_Enumerate_c_Iterator0_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, FixedArray3_1_T_Enumerate_c_Iterator0_System_Object__System_Collections_Generic_IEnumerator_T__get_Current, (FixedArray3_1_T_Enumerate_c_Iterator0_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F92EC0, IEnumerator *, FixedArray3_1_T_Enumerate_c_Iterator0_System_Object__System_Collections_IEnumerable_GetEnumerator, (FixedArray3_1_T_Enumerate_c_Iterator0_System_Object_ * __this, MethodInfo * method)); @@ -119614,6 +132263,7 @@ DO_APP_FUNC(0x003BCD60, void, ConcurrentQueue_1_T_Enumerate_d_28_System_Object__ DO_APP_FUNC(0x00F93150, bool, ConcurrentQueue_1_T_Enumerate_d_28_System_Object__MoveNext, (ConcurrentQueue_1_T_Enumerate_d_28_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, ConcurrentQueue_1_T_Enumerate_d_28_System_Object__System_Collections_Generic_IEnumerator_T__get_Current, (ConcurrentQueue_1_T_Enumerate_d_28_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F935C0, void, ConcurrentQueue_1_T_Enumerate_d_28_System_Object__System_Collections_IEnumerator_Reset, (ConcurrentQueue_1_T_Enumerate_d_28_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D3E0, ConcurrentQueue_1_T_Enumerate_d_28_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, ConcurrentQueue_1_T_Enumerate_d_28_System_Object__System_Collections_IEnumerator_get_Current, (ConcurrentQueue_1_T_Enumerate_d_28_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ConcurrentQueue_1_T_Enumerate_d_28_System_Object__System_IDisposable_Dispose, (ConcurrentQueue_1_T_Enumerate_d_28_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0095DC40, void, MiscHelpers_EveryNth_d_1_1_System_Object___ctor, (MiscHelpers_EveryNth_d_1_1_System_Object_ * __this, int32_t __1__state, MethodInfo * method)); @@ -119623,6 +132273,7 @@ DO_APP_FUNC(0x00F93A10, IEnumerator_1_System_Object_ *, MiscHelpers_EveryNth_d_1 DO_APP_FUNC(0x003BB3D0, Object *, MiscHelpers_EveryNth_d_1_1_System_Object__System_Collections_Generic_IEnumerator_TValue__get_Current, (MiscHelpers_EveryNth_d_1_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F8E8E0, IEnumerator *, MiscHelpers_EveryNth_d_1_1_System_Object__System_Collections_IEnumerable_GetEnumerator, (MiscHelpers_EveryNth_d_1_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F939C0, void, MiscHelpers_EveryNth_d_1_1_System_Object__System_Collections_IEnumerator_Reset, (MiscHelpers_EveryNth_d_1_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D3D0, MiscHelpers_EveryNth_d_1_1_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, MiscHelpers_EveryNth_d_1_1_System_Object__System_Collections_IEnumerator_get_Current, (MiscHelpers_EveryNth_d_1_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F8E250, void, MiscHelpers_EveryNth_d_1_1_System_Object__System_IDisposable_Dispose, (MiscHelpers_EveryNth_d_1_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0095DC40, void, Enumerable_ExceptIterator_d_77_1_System_Object___ctor, (Enumerable_ExceptIterator_d_77_1_System_Object_ * __this, int32_t __1__state, MethodInfo * method)); @@ -119632,6 +132283,7 @@ DO_APP_FUNC(0x00F942D0, IEnumerator_1_System_Object_ *, Enumerable_ExceptIterato DO_APP_FUNC(0x003BB3D0, Object *, Enumerable_ExceptIterator_d_77_1_System_Object__System_Collections_Generic_IEnumerator_TSource__get_Current, (Enumerable_ExceptIterator_d_77_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F928A0, IEnumerator *, Enumerable_ExceptIterator_d_77_1_System_Object__System_Collections_IEnumerable_GetEnumerator, (Enumerable_ExceptIterator_d_77_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F94280, void, Enumerable_ExceptIterator_d_77_1_System_Object__System_Collections_IEnumerator_Reset, (Enumerable_ExceptIterator_d_77_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D3A8, Enumerable_ExceptIterator_d_77_1_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Enumerable_ExceptIterator_d_77_1_System_Object__System_Collections_IEnumerator_get_Current, (Enumerable_ExceptIterator_d_77_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F8E250, void, Enumerable_ExceptIterator_d_77_1_System_Object__System_IDisposable_Dispose, (Enumerable_ExceptIterator_d_77_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0095DC40, void, RuntimeUtilities_GetAllSceneObjects_d_86_1_System_Object___ctor, (RuntimeUtilities_GetAllSceneObjects_d_86_1_System_Object_ * __this, int32_t __1__state, MethodInfo * method)); @@ -119641,6 +132293,7 @@ DO_APP_FUNC(0x00F94D80, IEnumerator_1_System_Object_ *, RuntimeUtilities_GetAllS DO_APP_FUNC(0x003BB3D0, Object *, RuntimeUtilities_GetAllSceneObjects_d_86_1_System_Object__System_Collections_Generic_IEnumerator_T__get_Current, (RuntimeUtilities_GetAllSceneObjects_d_86_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F94E30, IEnumerator *, RuntimeUtilities_GetAllSceneObjects_d_86_1_System_Object__System_Collections_IEnumerable_GetEnumerator, (RuntimeUtilities_GetAllSceneObjects_d_86_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F94D30, void, RuntimeUtilities_GetAllSceneObjects_d_86_1_System_Object__System_Collections_IEnumerator_Reset, (RuntimeUtilities_GetAllSceneObjects_d_86_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D390, RuntimeUtilities_GetAllSceneObjects_d_86_1_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, RuntimeUtilities_GetAllSceneObjects_d_86_1_System_Object__System_Collections_IEnumerator_get_Current, (RuntimeUtilities_GetAllSceneObjects_d_86_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F94480, void, RuntimeUtilities_GetAllSceneObjects_d_86_1_System_Object__System_IDisposable_Dispose, (RuntimeUtilities_GetAllSceneObjects_d_86_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0095DC40, void, BlockingCollection_1_T_GetConsumingEnumerable_d_68_System_Object___ctor, (BlockingCollection_1_T_GetConsumingEnumerable_d_68_System_Object_ * __this, int32_t __1__state, MethodInfo * method)); @@ -119650,198 +132303,231 @@ DO_APP_FUNC(0x00F95200, IEnumerator_1_System_Object_ *, BlockingCollection_1_T_G DO_APP_FUNC(0x003BB3D0, Object *, BlockingCollection_1_T_GetConsumingEnumerable_d_68_System_Object__System_Collections_Generic_IEnumerator_T__get_Current, (BlockingCollection_1_T_GetConsumingEnumerable_d_68_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F94E30, IEnumerator *, BlockingCollection_1_T_GetConsumingEnumerable_d_68_System_Object__System_Collections_IEnumerable_GetEnumerator, (BlockingCollection_1_T_GetConsumingEnumerable_d_68_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F951B0, void, BlockingCollection_1_T_GetConsumingEnumerable_d_68_System_Object__System_Collections_IEnumerator_Reset, (BlockingCollection_1_T_GetConsumingEnumerable_d_68_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D398, BlockingCollection_1_T_GetConsumingEnumerable_d_68_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, BlockingCollection_1_T_GetConsumingEnumerable_d_68_System_Object__System_Collections_IEnumerator_get_Current, (BlockingCollection_1_T_GetConsumingEnumerable_d_68_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F8E250, void, BlockingCollection_1_T_GetConsumingEnumerable_d_68_System_Object__System_IDisposable_Dispose, (BlockingCollection_1_T_GetConsumingEnumerable_d_68_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, OrderedEnumerable_1_TElement_GetEnumerator_d_1_System_Collections_Generic_KeyValuePair_2___ctor, (OrderedEnumerable_1_TElement_GetEnumerator_d_1_System_Collections_Generic_KeyValuePair_2_ * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x00F95380, bool, OrderedEnumerable_1_TElement_GetEnumerator_d_1_System_Collections_Generic_KeyValuePair_2__MoveNext, (OrderedEnumerable_1_TElement_GetEnumerator_d_1_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0093E890, KeyValuePair_2_System_Object_System_Object_, OrderedEnumerable_1_TElement_GetEnumerator_d_1_System_Collections_Generic_KeyValuePair_2__System_Collections_Generic_IEnumerator_TElement__get_Current, (OrderedEnumerable_1_TElement_GetEnumerator_d_1_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F95660, void, OrderedEnumerable_1_TElement_GetEnumerator_d_1_System_Collections_Generic_KeyValuePair_2__System_Collections_IEnumerator_Reset, (OrderedEnumerable_1_TElement_GetEnumerator_d_1_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D368, OrderedEnumerable_1_TElement_GetEnumerator_d_1_System_Collections_Generic_KeyValuePair_2__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x00F956B0, Object *, OrderedEnumerable_1_TElement_GetEnumerator_d_1_System_Collections_Generic_KeyValuePair_2__System_Collections_IEnumerator_get_Current, (OrderedEnumerable_1_TElement_GetEnumerator_d_1_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, OrderedEnumerable_1_TElement_GetEnumerator_d_1_System_Collections_Generic_KeyValuePair_2__System_IDisposable_Dispose, (OrderedEnumerable_1_TElement_GetEnumerator_d_1_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, OrderedEnumerable_1_TElement_GetEnumerator_d_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___ctor, (OrderedEnumerable_1_TElement_GetEnumerator_d_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x00F956F0, bool, OrderedEnumerable_1_TElement_GetEnumerator_d_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__MoveNext, (OrderedEnumerable_1_TElement_GetEnumerator_d_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F90000, DiagnosticEvent, OrderedEnumerable_1_TElement_GetEnumerator_d_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__System_Collections_Generic_IEnumerator_TElement__get_Current, (OrderedEnumerable_1_TElement_GetEnumerator_d_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F959E0, void, OrderedEnumerable_1_TElement_GetEnumerator_d_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__System_Collections_IEnumerator_Reset, (OrderedEnumerable_1_TElement_GetEnumerator_d_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D360, OrderedEnumerable_1_TElement_GetEnumerator_d_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x00F95A30, Object *, OrderedEnumerable_1_TElement_GetEnumerator_d_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__System_Collections_IEnumerator_get_Current, (OrderedEnumerable_1_TElement_GetEnumerator_d_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, OrderedEnumerable_1_TElement_GetEnumerator_d_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__System_IDisposable_Dispose, (OrderedEnumerable_1_TElement_GetEnumerator_d_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, OrderedEnumerable_1_TElement_GetEnumerator_d_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___ctor, (OrderedEnumerable_1_TElement_GetEnumerator_d_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x00F95A90, bool, OrderedEnumerable_1_TElement_GetEnumerator_d_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__MoveNext, (OrderedEnumerable_1_TElement_GetEnumerator_d_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F95D10, GlyphPairAdjustmentRecord, OrderedEnumerable_1_TElement_GetEnumerator_d_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__System_Collections_Generic_IEnumerator_TElement__get_Current, (OrderedEnumerable_1_TElement_GetEnumerator_d_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F95D40, void, OrderedEnumerable_1_TElement_GetEnumerator_d_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__System_Collections_IEnumerator_Reset, (OrderedEnumerable_1_TElement_GetEnumerator_d_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D358, OrderedEnumerable_1_TElement_GetEnumerator_d_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x00F95D90, Object *, OrderedEnumerable_1_TElement_GetEnumerator_d_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__System_Collections_IEnumerator_get_Current, (OrderedEnumerable_1_TElement_GetEnumerator_d_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, OrderedEnumerable_1_TElement_GetEnumerator_d_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__System_IDisposable_Dispose, (OrderedEnumerable_1_TElement_GetEnumerator_d_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, OrderedEnumerable_1_TElement_GetEnumerator_d_1_System_Object___ctor, (OrderedEnumerable_1_TElement_GetEnumerator_d_1_System_Object_ * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x00F95DF0, bool, OrderedEnumerable_1_TElement_GetEnumerator_d_1_System_Object__MoveNext, (OrderedEnumerable_1_TElement_GetEnumerator_d_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, OrderedEnumerable_1_TElement_GetEnumerator_d_1_System_Object__System_Collections_Generic_IEnumerator_TElement__get_Current, (OrderedEnumerable_1_TElement_GetEnumerator_d_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F960C0, void, OrderedEnumerable_1_TElement_GetEnumerator_d_1_System_Object__System_Collections_IEnumerator_Reset, (OrderedEnumerable_1_TElement_GetEnumerator_d_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D350, OrderedEnumerable_1_TElement_GetEnumerator_d_1_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, OrderedEnumerable_1_TElement_GetEnumerator_d_1_System_Object__System_Collections_IEnumerator_get_Current, (OrderedEnumerable_1_TElement_GetEnumerator_d_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, OrderedEnumerable_1_TElement_GetEnumerator_d_1_System_Object__System_IDisposable_Dispose, (OrderedEnumerable_1_TElement_GetEnumerator_d_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, NetworkArray_Values_1_T_GetEnumerator_d_12_System_Int32___ctor, (NetworkArray_Values_1_T_GetEnumerator_d_12_System_Int32_ * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x00F96110, bool, NetworkArray_Values_1_T_GetEnumerator_d_12_System_Int32__MoveNext, (NetworkArray_Values_1_T_GetEnumerator_d_12_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD70, int32_t, NetworkArray_Values_1_T_GetEnumerator_d_12_System_Int32__System_Collections_Generic_IEnumerator_T__get_Current, (NetworkArray_Values_1_T_GetEnumerator_d_12_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F96190, void, NetworkArray_Values_1_T_GetEnumerator_d_12_System_Int32__System_Collections_IEnumerator_Reset, (NetworkArray_Values_1_T_GetEnumerator_d_12_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D388, NetworkArray_Values_1_T_GetEnumerator_d_12_System_Int32__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x00F8ECF0, Object *, NetworkArray_Values_1_T_GetEnumerator_d_12_System_Int32__System_Collections_IEnumerator_get_Current, (NetworkArray_Values_1_T_GetEnumerator_d_12_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NetworkArray_Values_1_T_GetEnumerator_d_12_System_Int32__System_IDisposable_Dispose, (NetworkArray_Values_1_T_GetEnumerator_d_12_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, NetworkArray_Values_1_T_GetEnumerator_d_12_System_Object___ctor, (NetworkArray_Values_1_T_GetEnumerator_d_12_System_Object_ * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x00F961E0, bool, NetworkArray_Values_1_T_GetEnumerator_d_12_System_Object__MoveNext, (NetworkArray_Values_1_T_GetEnumerator_d_12_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, NetworkArray_Values_1_T_GetEnumerator_d_12_System_Object__System_Collections_Generic_IEnumerator_T__get_Current, (NetworkArray_Values_1_T_GetEnumerator_d_12_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F962B0, void, NetworkArray_Values_1_T_GetEnumerator_d_12_System_Object__System_Collections_IEnumerator_Reset, (NetworkArray_Values_1_T_GetEnumerator_d_12_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D380, NetworkArray_Values_1_T_GetEnumerator_d_12_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, NetworkArray_Values_1_T_GetEnumerator_d_12_System_Object__System_Collections_IEnumerator_get_Current, (NetworkArray_Values_1_T_GetEnumerator_d_12_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NetworkArray_Values_1_T_GetEnumerator_d_12_System_Object__System_IDisposable_Dispose, (NetworkArray_Values_1_T_GetEnumerator_d_12_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, NetworkArray_Values_1_T_GetEnumerator_d_12_PrefabId___ctor, (NetworkArray_Values_1_T_GetEnumerator_d_12_PrefabId_ * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x00F96110, bool, NetworkArray_Values_1_T_GetEnumerator_d_12_PrefabId__MoveNext, (NetworkArray_Values_1_T_GetEnumerator_d_12_PrefabId_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD70, PrefabId, NetworkArray_Values_1_T_GetEnumerator_d_12_PrefabId__System_Collections_Generic_IEnumerator_T__get_Current, (NetworkArray_Values_1_T_GetEnumerator_d_12_PrefabId_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F96300, void, NetworkArray_Values_1_T_GetEnumerator_d_12_PrefabId__System_Collections_IEnumerator_Reset, (NetworkArray_Values_1_T_GetEnumerator_d_12_PrefabId_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D378, NetworkArray_Values_1_T_GetEnumerator_d_12_PrefabId__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x00F8ECF0, Object *, NetworkArray_Values_1_T_GetEnumerator_d_12_PrefabId__System_Collections_IEnumerator_get_Current, (NetworkArray_Values_1_T_GetEnumerator_d_12_PrefabId_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NetworkArray_Values_1_T_GetEnumerator_d_12_PrefabId__System_IDisposable_Dispose, (NetworkArray_Values_1_T_GetEnumerator_d_12_PrefabId_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, NetworkArray_Values_1_T_GetEnumerator_d_12_UnityEngine_Quaternion___ctor, (NetworkArray_Values_1_T_GetEnumerator_d_12_UnityEngine_Quaternion_ * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x00F96350, bool, NetworkArray_Values_1_T_GetEnumerator_d_12_UnityEngine_Quaternion__MoveNext, (NetworkArray_Values_1_T_GetEnumerator_d_12_UnityEngine_Quaternion_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F963E0, Quaternion, NetworkArray_Values_1_T_GetEnumerator_d_12_UnityEngine_Quaternion__System_Collections_Generic_IEnumerator_T__get_Current, (NetworkArray_Values_1_T_GetEnumerator_d_12_UnityEngine_Quaternion_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F963F0, void, NetworkArray_Values_1_T_GetEnumerator_d_12_UnityEngine_Quaternion__System_Collections_IEnumerator_Reset, (NetworkArray_Values_1_T_GetEnumerator_d_12_UnityEngine_Quaternion_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D370, NetworkArray_Values_1_T_GetEnumerator_d_12_UnityEngine_Quaternion__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x00F96440, Object *, NetworkArray_Values_1_T_GetEnumerator_d_12_UnityEngine_Quaternion__System_Collections_IEnumerator_get_Current, (NetworkArray_Values_1_T_GetEnumerator_d_12_UnityEngine_Quaternion_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NetworkArray_Values_1_T_GetEnumerator_d_12_UnityEngine_Quaternion__System_IDisposable_Dispose, (NetworkArray_Values_1_T_GetEnumerator_d_12_UnityEngine_Quaternion_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, NetworkArray_Values_1_T_GetEnumerator_d_12_System_Single___ctor, (NetworkArray_Values_1_T_GetEnumerator_d_12_System_Single_ * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x00F96480, bool, NetworkArray_Values_1_T_GetEnumerator_d_12_System_Single__MoveNext, (NetworkArray_Values_1_T_GetEnumerator_d_12_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC310, float, NetworkArray_Values_1_T_GetEnumerator_d_12_System_Single__System_Collections_Generic_IEnumerator_T__get_Current, (NetworkArray_Values_1_T_GetEnumerator_d_12_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F96500, void, NetworkArray_Values_1_T_GetEnumerator_d_12_System_Single__System_Collections_IEnumerator_Reset, (NetworkArray_Values_1_T_GetEnumerator_d_12_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D328, NetworkArray_Values_1_T_GetEnumerator_d_12_System_Single__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x00F8F720, Object *, NetworkArray_Values_1_T_GetEnumerator_d_12_System_Single__System_Collections_IEnumerator_get_Current, (NetworkArray_Values_1_T_GetEnumerator_d_12_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NetworkArray_Values_1_T_GetEnumerator_d_12_System_Single__System_IDisposable_Dispose, (NetworkArray_Values_1_T_GetEnumerator_d_12_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, NetworkArray_Values_1_T_GetEnumerator_d_12_UnityEngine_Vector3___ctor, (NetworkArray_Values_1_T_GetEnumerator_d_12_UnityEngine_Vector3_ * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x00F96550, bool, NetworkArray_Values_1_T_GetEnumerator_d_12_UnityEngine_Vector3__MoveNext, (NetworkArray_Values_1_T_GetEnumerator_d_12_UnityEngine_Vector3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003CC8D0, Vector3, NetworkArray_Values_1_T_GetEnumerator_d_12_UnityEngine_Vector3__System_Collections_Generic_IEnumerator_T__get_Current, (NetworkArray_Values_1_T_GetEnumerator_d_12_UnityEngine_Vector3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F965E0, void, NetworkArray_Values_1_T_GetEnumerator_d_12_UnityEngine_Vector3__System_Collections_IEnumerator_Reset, (NetworkArray_Values_1_T_GetEnumerator_d_12_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D320, NetworkArray_Values_1_T_GetEnumerator_d_12_UnityEngine_Vector3__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x00F96630, Object *, NetworkArray_Values_1_T_GetEnumerator_d_12_UnityEngine_Vector3__System_Collections_IEnumerator_get_Current, (NetworkArray_Values_1_T_GetEnumerator_d_12_UnityEngine_Vector3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NetworkArray_Values_1_T_GetEnumerator_d_12_UnityEngine_Vector3__System_IDisposable_Dispose, (NetworkArray_Values_1_T_GetEnumerator_d_12_UnityEngine_Vector3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, Lookup_2_TKey_TElement_GetEnumerator_d_12_System_Int32_System_Object___ctor, (Lookup_2_TKey_TElement_GetEnumerator_d_12_System_Int32_System_Object_ * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x00F96680, bool, Lookup_2_TKey_TElement_GetEnumerator_d_12_System_Int32_System_Object__MoveNext, (Lookup_2_TKey_TElement_GetEnumerator_d_12_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, IGrouping_2_System_Int32_System_Object_ *, Lookup_2_TKey_TElement_GetEnumerator_d_12_System_Int32_System_Object__System_Collections_Generic_IEnumerator_System_Linq_IGrouping_TKey_TElement___get_Current, (Lookup_2_TKey_TElement_GetEnumerator_d_12_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F967F0, void, Lookup_2_TKey_TElement_GetEnumerator_d_12_System_Int32_System_Object__System_Collections_IEnumerator_Reset, (Lookup_2_TKey_TElement_GetEnumerator_d_12_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D318, Lookup_2_TKey_TElement_GetEnumerator_d_12_System_Int32_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Lookup_2_TKey_TElement_GetEnumerator_d_12_System_Int32_System_Object__System_Collections_IEnumerator_get_Current, (Lookup_2_TKey_TElement_GetEnumerator_d_12_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Lookup_2_TKey_TElement_GetEnumerator_d_12_System_Int32_System_Object__System_IDisposable_Dispose, (Lookup_2_TKey_TElement_GetEnumerator_d_12_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, Lookup_2_TKey_TElement_GetEnumerator_d_12_System_Object_System_Object___ctor, (Lookup_2_TKey_TElement_GetEnumerator_d_12_System_Object_System_Object_ * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x00F96840, bool, Lookup_2_TKey_TElement_GetEnumerator_d_12_System_Object_System_Object__MoveNext, (Lookup_2_TKey_TElement_GetEnumerator_d_12_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, IGrouping_2_System_Object_System_Object_ *, Lookup_2_TKey_TElement_GetEnumerator_d_12_System_Object_System_Object__System_Collections_Generic_IEnumerator_System_Linq_IGrouping_TKey_TElement___get_Current, (Lookup_2_TKey_TElement_GetEnumerator_d_12_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F969B0, void, Lookup_2_TKey_TElement_GetEnumerator_d_12_System_Object_System_Object__System_Collections_IEnumerator_Reset, (Lookup_2_TKey_TElement_GetEnumerator_d_12_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D310, Lookup_2_TKey_TElement_GetEnumerator_d_12_System_Object_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Lookup_2_TKey_TElement_GetEnumerator_d_12_System_Object_System_Object__System_Collections_IEnumerator_get_Current, (Lookup_2_TKey_TElement_GetEnumerator_d_12_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Lookup_2_TKey_TElement_GetEnumerator_d_12_System_Object_System_Object__System_IDisposable_Dispose, (Lookup_2_TKey_TElement_GetEnumerator_d_12_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, Lookup_2_TKey_TElement_GetEnumerator_d_12_System_Object_UnityEngine_Resolution___ctor, (Lookup_2_TKey_TElement_GetEnumerator_d_12_System_Object_UnityEngine_Resolution_ * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x00F96840, bool, Lookup_2_TKey_TElement_GetEnumerator_d_12_System_Object_UnityEngine_Resolution__MoveNext, (Lookup_2_TKey_TElement_GetEnumerator_d_12_System_Object_UnityEngine_Resolution_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, IGrouping_2_System_Object_UnityEngine_Resolution_ *, Lookup_2_TKey_TElement_GetEnumerator_d_12_System_Object_UnityEngine_Resolution__System_Collections_Generic_IEnumerator_System_Linq_IGrouping_TKey_TElement___get_Current, (Lookup_2_TKey_TElement_GetEnumerator_d_12_System_Object_UnityEngine_Resolution_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F96A00, void, Lookup_2_TKey_TElement_GetEnumerator_d_12_System_Object_UnityEngine_Resolution__System_Collections_IEnumerator_Reset, (Lookup_2_TKey_TElement_GetEnumerator_d_12_System_Object_UnityEngine_Resolution_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D348, Lookup_2_TKey_TElement_GetEnumerator_d_12_System_Object_UnityEngine_Resolution__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Lookup_2_TKey_TElement_GetEnumerator_d_12_System_Object_UnityEngine_Resolution__System_Collections_IEnumerator_get_Current, (Lookup_2_TKey_TElement_GetEnumerator_d_12_System_Object_UnityEngine_Resolution_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Lookup_2_TKey_TElement_GetEnumerator_d_12_System_Object_UnityEngine_Resolution__System_IDisposable_Dispose, (Lookup_2_TKey_TElement_GetEnumerator_d_12_System_Object_UnityEngine_Resolution_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, Lookup_2_TKey_TElement_GetEnumerator_d_12_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2___ctor, (Lookup_2_TKey_TElement_GetEnumerator_d_12_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2_ * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x00F96840, bool, Lookup_2_TKey_TElement_GetEnumerator_d_12_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2__MoveNext, (Lookup_2_TKey_TElement_GetEnumerator_d_12_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, IGrouping_2_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2_ *, Lookup_2_TKey_TElement_GetEnumerator_d_12_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2__System_Collections_Generic_IEnumerator_System_Linq_IGrouping_TKey_TElement___get_Current, (Lookup_2_TKey_TElement_GetEnumerator_d_12_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F96A50, void, Lookup_2_TKey_TElement_GetEnumerator_d_12_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2__System_Collections_IEnumerator_Reset, (Lookup_2_TKey_TElement_GetEnumerator_d_12_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D340, Lookup_2_TKey_TElement_GetEnumerator_d_12_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Lookup_2_TKey_TElement_GetEnumerator_d_12_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2__System_Collections_IEnumerator_get_Current, (Lookup_2_TKey_TElement_GetEnumerator_d_12_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Lookup_2_TKey_TElement_GetEnumerator_d_12_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2__System_IDisposable_Dispose, (Lookup_2_TKey_TElement_GetEnumerator_d_12_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, BoltSingleList_1_T_GetEnumerator_d_16_System_Object___ctor, (BoltSingleList_1_T_GetEnumerator_d_16_System_Object_ * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x00F96AA0, bool, BoltSingleList_1_T_GetEnumerator_d_16_System_Object__MoveNext, (BoltSingleList_1_T_GetEnumerator_d_16_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, BoltSingleList_1_T_GetEnumerator_d_16_System_Object__System_Collections_Generic_IEnumerator_T__get_Current, (BoltSingleList_1_T_GetEnumerator_d_16_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F96C60, void, BoltSingleList_1_T_GetEnumerator_d_16_System_Object__System_Collections_IEnumerator_Reset, (BoltSingleList_1_T_GetEnumerator_d_16_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D338, BoltSingleList_1_T_GetEnumerator_d_16_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, BoltSingleList_1_T_GetEnumerator_d_16_System_Object__System_Collections_IEnumerator_get_Current, (BoltSingleList_1_T_GetEnumerator_d_16_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BoltSingleList_1_T_GetEnumerator_d_16_System_Object__System_IDisposable_Dispose, (BoltSingleList_1_T_GetEnumerator_d_16_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, BoltRingBuffer_1_T_GetEnumerator_d_30_System_Int32___ctor, (BoltRingBuffer_1_T_GetEnumerator_d_30_System_Int32_ * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x00F96CB0, bool, BoltRingBuffer_1_T_GetEnumerator_d_30_System_Int32__MoveNext, (BoltRingBuffer_1_T_GetEnumerator_d_30_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD70, int32_t, BoltRingBuffer_1_T_GetEnumerator_d_30_System_Int32__System_Collections_Generic_IEnumerator_T__get_Current, (BoltRingBuffer_1_T_GetEnumerator_d_30_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F96D30, void, BoltRingBuffer_1_T_GetEnumerator_d_30_System_Int32__System_Collections_IEnumerator_Reset, (BoltRingBuffer_1_T_GetEnumerator_d_30_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D330, BoltRingBuffer_1_T_GetEnumerator_d_30_System_Int32__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x00F8ECF0, Object *, BoltRingBuffer_1_T_GetEnumerator_d_30_System_Int32__System_Collections_IEnumerator_get_Current, (BoltRingBuffer_1_T_GetEnumerator_d_30_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BoltRingBuffer_1_T_GetEnumerator_d_30_System_Int32__System_IDisposable_Dispose, (BoltRingBuffer_1_T_GetEnumerator_d_30_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, BoltRingBuffer_1_T_GetEnumerator_d_30_System_Object___ctor, (BoltRingBuffer_1_T_GetEnumerator_d_30_System_Object_ * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x00F96D80, bool, BoltRingBuffer_1_T_GetEnumerator_d_30_System_Object__MoveNext, (BoltRingBuffer_1_T_GetEnumerator_d_30_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, BoltRingBuffer_1_T_GetEnumerator_d_30_System_Object__System_Collections_Generic_IEnumerator_T__get_Current, (BoltRingBuffer_1_T_GetEnumerator_d_30_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F96E50, void, BoltRingBuffer_1_T_GetEnumerator_d_30_System_Object__System_Collections_IEnumerator_Reset, (BoltRingBuffer_1_T_GetEnumerator_d_30_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D2E8, BoltRingBuffer_1_T_GetEnumerator_d_30_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, BoltRingBuffer_1_T_GetEnumerator_d_30_System_Object__System_Collections_IEnumerator_get_Current, (BoltRingBuffer_1_T_GetEnumerator_d_30_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BoltRingBuffer_1_T_GetEnumerator_d_30_System_Object__System_IDisposable_Dispose, (BoltRingBuffer_1_T_GetEnumerator_d_30_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, BoltRingBuffer_1_T_GetEnumerator_d_30_Photon_Bolt_Internal_PacketStats___ctor, (BoltRingBuffer_1_T_GetEnumerator_d_30_Photon_Bolt_Internal_PacketStats_ * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x00F96EA0, bool, BoltRingBuffer_1_T_GetEnumerator_d_30_Photon_Bolt_Internal_PacketStats__MoveNext, (BoltRingBuffer_1_T_GetEnumerator_d_30_Photon_Bolt_Internal_PacketStats_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003CC8D0, PacketStats, BoltRingBuffer_1_T_GetEnumerator_d_30_Photon_Bolt_Internal_PacketStats__System_Collections_Generic_IEnumerator_T__get_Current, (BoltRingBuffer_1_T_GetEnumerator_d_30_Photon_Bolt_Internal_PacketStats_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F96F30, void, BoltRingBuffer_1_T_GetEnumerator_d_30_Photon_Bolt_Internal_PacketStats__System_Collections_IEnumerator_Reset, (BoltRingBuffer_1_T_GetEnumerator_d_30_Photon_Bolt_Internal_PacketStats_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D2E0, BoltRingBuffer_1_T_GetEnumerator_d_30_Photon_Bolt_Internal_PacketStats__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x00F96630, Object *, BoltRingBuffer_1_T_GetEnumerator_d_30_Photon_Bolt_Internal_PacketStats__System_Collections_IEnumerator_get_Current, (BoltRingBuffer_1_T_GetEnumerator_d_30_Photon_Bolt_Internal_PacketStats_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BoltRingBuffer_1_T_GetEnumerator_d_30_Photon_Bolt_Internal_PacketStats__System_IDisposable_Dispose, (BoltRingBuffer_1_T_GetEnumerator_d_30_Photon_Bolt_Internal_PacketStats_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, BoltRingBuffer_1_T_GetEnumerator_d_30_Photon_Bolt_Utils_BoltConsole_Line___ctor, (BoltRingBuffer_1_T_GetEnumerator_d_30_Photon_Bolt_Utils_BoltConsole_Line_ * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x00F96F80, bool, BoltRingBuffer_1_T_GetEnumerator_d_30_Photon_Bolt_Utils_BoltConsole_Line__MoveNext, (BoltRingBuffer_1_T_GetEnumerator_d_30_Photon_Bolt_Utils_BoltConsole_Line_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F97060, BoltConsole_Line, BoltRingBuffer_1_T_GetEnumerator_d_30_Photon_Bolt_Utils_BoltConsole_Line__System_Collections_Generic_IEnumerator_T__get_Current, (BoltRingBuffer_1_T_GetEnumerator_d_30_Photon_Bolt_Utils_BoltConsole_Line_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F97080, void, BoltRingBuffer_1_T_GetEnumerator_d_30_Photon_Bolt_Utils_BoltConsole_Line__System_Collections_IEnumerator_Reset, (BoltRingBuffer_1_T_GetEnumerator_d_30_Photon_Bolt_Utils_BoltConsole_Line_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D2D8, BoltRingBuffer_1_T_GetEnumerator_d_30_Photon_Bolt_Utils_BoltConsole_Line__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x00F970D0, Object *, BoltRingBuffer_1_T_GetEnumerator_d_30_Photon_Bolt_Utils_BoltConsole_Line__System_Collections_IEnumerator_get_Current, (BoltRingBuffer_1_T_GetEnumerator_d_30_Photon_Bolt_Utils_BoltConsole_Line_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BoltRingBuffer_1_T_GetEnumerator_d_30_Photon_Bolt_Utils_BoltConsole_Line__System_IDisposable_Dispose, (BoltRingBuffer_1_T_GetEnumerator_d_30_Photon_Bolt_Utils_BoltConsole_Line_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, Map_2_K_V_GetEnumerator_d_30_System_Guid_System_Object___ctor, (Map_2_K_V_GetEnumerator_d_30_System_Guid_System_Object_ * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x00F97120, bool, Map_2_K_V_GetEnumerator_d_30_System_Guid_System_Object__MoveNext, (Map_2_K_V_GetEnumerator_d_30_System_Guid_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F97060, KeyValuePair_2_System_Guid_System_Object_, Map_2_K_V_GetEnumerator_d_30_System_Guid_System_Object__System_Collections_Generic_IEnumerator_System_Collections_Generic_KeyValuePair_K_V___get_Current, (Map_2_K_V_GetEnumerator_d_30_System_Guid_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F976C0, void, Map_2_K_V_GetEnumerator_d_30_System_Guid_System_Object__System_Collections_IEnumerator_Reset, (Map_2_K_V_GetEnumerator_d_30_System_Guid_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D2D0, Map_2_K_V_GetEnumerator_d_30_System_Guid_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x00F97710, Object *, Map_2_K_V_GetEnumerator_d_30_System_Guid_System_Object__System_Collections_IEnumerator_get_Current, (Map_2_K_V_GetEnumerator_d_30_System_Guid_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Map_2_K_V_GetEnumerator_d_30_System_Guid_System_Object__System_IDisposable_Dispose, (Map_2_K_V_GetEnumerator_d_30_System_Guid_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, Map_2_K_V_GetEnumerator_d_30_System_Object_System_Object___ctor, (Map_2_K_V_GetEnumerator_d_30_System_Object_System_Object_ * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x00F97760, bool, Map_2_K_V_GetEnumerator_d_30_System_Object_System_Object__MoveNext, (Map_2_K_V_GetEnumerator_d_30_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0093E890, KeyValuePair_2_System_Object_System_Object_, Map_2_K_V_GetEnumerator_d_30_System_Object_System_Object__System_Collections_Generic_IEnumerator_System_Collections_Generic_KeyValuePair_K_V___get_Current, (Map_2_K_V_GetEnumerator_d_30_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F97CE0, void, Map_2_K_V_GetEnumerator_d_30_System_Object_System_Object__System_Collections_IEnumerator_Reset, (Map_2_K_V_GetEnumerator_d_30_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D308, Map_2_K_V_GetEnumerator_d_30_System_Object_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x00F97D30, Object *, Map_2_K_V_GetEnumerator_d_30_System_Object_System_Object__System_Collections_IEnumerator_get_Current, (Map_2_K_V_GetEnumerator_d_30_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Map_2_K_V_GetEnumerator_d_30_System_Object_System_Object__System_IDisposable_Dispose, (Map_2_K_V_GetEnumerator_d_30_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, BoltDoubleList_1_T_GetEnumerator_d_32_System_Object___ctor, (BoltDoubleList_1_T_GetEnumerator_d_32_System_Object_ * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x00F97D70, bool, BoltDoubleList_1_T_GetEnumerator_d_32_System_Object__MoveNext, (BoltDoubleList_1_T_GetEnumerator_d_32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, BoltDoubleList_1_T_GetEnumerator_d_32_System_Object__System_Collections_Generic_IEnumerator_T__get_Current, (BoltDoubleList_1_T_GetEnumerator_d_32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F97F50, void, BoltDoubleList_1_T_GetEnumerator_d_32_System_Object__System_Collections_IEnumerator_Reset, (BoltDoubleList_1_T_GetEnumerator_d_32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D300, BoltDoubleList_1_T_GetEnumerator_d_32_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, BoltDoubleList_1_T_GetEnumerator_d_32_System_Object__System_Collections_IEnumerator_get_Current, (BoltDoubleList_1_T_GetEnumerator_d_32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BoltDoubleList_1_T_GetEnumerator_d_32_System_Object__System_IDisposable_Dispose, (BoltDoubleList_1_T_GetEnumerator_d_32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, ConcurrentDictionary_2_TKey_TValue_GetEnumerator_d_35_System_Object_System_Object___ctor, (ConcurrentDictionary_2_TKey_TValue_GetEnumerator_d_35_System_Object_System_Object_ * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x00F97FA0, bool, ConcurrentDictionary_2_TKey_TValue_GetEnumerator_d_35_System_Object_System_Object__MoveNext, (ConcurrentDictionary_2_TKey_TValue_GetEnumerator_d_35_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0093E890, KeyValuePair_2_System_Object_System_Object_, ConcurrentDictionary_2_TKey_TValue_GetEnumerator_d_35_System_Object_System_Object__System_Collections_Generic_IEnumerator_System_Collections_Generic_KeyValuePair_TKey_TValue___get_Current, (ConcurrentDictionary_2_TKey_TValue_GetEnumerator_d_35_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F98220, void, ConcurrentDictionary_2_TKey_TValue_GetEnumerator_d_35_System_Object_System_Object__System_Collections_IEnumerator_Reset, (ConcurrentDictionary_2_TKey_TValue_GetEnumerator_d_35_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D2F8, ConcurrentDictionary_2_TKey_TValue_GetEnumerator_d_35_System_Object_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x00F98270, Object *, ConcurrentDictionary_2_TKey_TValue_GetEnumerator_d_35_System_Object_System_Object__System_Collections_IEnumerator_get_Current, (ConcurrentDictionary_2_TKey_TValue_GetEnumerator_d_35_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ConcurrentDictionary_2_TKey_TValue_GetEnumerator_d_35_System_Object_System_Object__System_IDisposable_Dispose, (ConcurrentDictionary_2_TKey_TValue_GetEnumerator_d_35_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, UdpRingBuffer_1_T_GetEnumerator_d_36_System_Object___ctor, (UdpRingBuffer_1_T_GetEnumerator_d_36_System_Object_ * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x00F96D80, bool, UdpRingBuffer_1_T_GetEnumerator_d_36_System_Object__MoveNext, (UdpRingBuffer_1_T_GetEnumerator_d_36_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, UdpRingBuffer_1_T_GetEnumerator_d_36_System_Object__System_Collections_Generic_IEnumerator_T__get_Current, (UdpRingBuffer_1_T_GetEnumerator_d_36_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F982B0, void, UdpRingBuffer_1_T_GetEnumerator_d_36_System_Object__System_Collections_IEnumerator_Reset, (UdpRingBuffer_1_T_GetEnumerator_d_36_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D2F0, UdpRingBuffer_1_T_GetEnumerator_d_36_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, UdpRingBuffer_1_T_GetEnumerator_d_36_System_Object__System_Collections_IEnumerator_get_Current, (UdpRingBuffer_1_T_GetEnumerator_d_36_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, UdpRingBuffer_1_T_GetEnumerator_d_36_System_Object__System_IDisposable_Dispose, (UdpRingBuffer_1_T_GetEnumerator_d_36_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, UdpRingBuffer_1_T_GetEnumerator_d_36_UdpPipeHandle___ctor, (UdpRingBuffer_1_T_GetEnumerator_d_36_UdpPipeHandle_ * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x00F98300, bool, UdpRingBuffer_1_T_GetEnumerator_d_36_UdpPipeHandle__MoveNext, (UdpRingBuffer_1_T_GetEnumerator_d_36_UdpPipeHandle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0093E890, UdpPipeHandle, UdpRingBuffer_1_T_GetEnumerator_d_36_UdpPipeHandle__System_Collections_Generic_IEnumerator_T__get_Current, (UdpRingBuffer_1_T_GetEnumerator_d_36_UdpPipeHandle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F983E0, void, UdpRingBuffer_1_T_GetEnumerator_d_36_UdpPipeHandle__System_Collections_IEnumerator_Reset, (UdpRingBuffer_1_T_GetEnumerator_d_36_UdpPipeHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D2C8, UdpRingBuffer_1_T_GetEnumerator_d_36_UdpPipeHandle__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x00F98430, Object *, UdpRingBuffer_1_T_GetEnumerator_d_36_UdpPipeHandle__System_Collections_IEnumerator_get_Current, (UdpRingBuffer_1_T_GetEnumerator_d_36_UdpPipeHandle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, UdpRingBuffer_1_T_GetEnumerator_d_36_UdpPipeHandle__System_IDisposable_Dispose, (UdpRingBuffer_1_T_GetEnumerator_d_36_UdpPipeHandle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, UdpRingBuffer_1_T_GetEnumerator_d_36_UdpPipe_Ack___ctor, (UdpRingBuffer_1_T_GetEnumerator_d_36_UdpPipe_Ack_ * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x00F96EA0, bool, UdpRingBuffer_1_T_GetEnumerator_d_36_UdpPipe_Ack__MoveNext, (UdpRingBuffer_1_T_GetEnumerator_d_36_UdpPipe_Ack_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003CC8D0, UdpPipe_Ack, UdpRingBuffer_1_T_GetEnumerator_d_36_UdpPipe_Ack__System_Collections_Generic_IEnumerator_T__get_Current, (UdpRingBuffer_1_T_GetEnumerator_d_36_UdpPipe_Ack_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F98470, void, UdpRingBuffer_1_T_GetEnumerator_d_36_UdpPipe_Ack__System_Collections_IEnumerator_Reset, (UdpRingBuffer_1_T_GetEnumerator_d_36_UdpPipe_Ack_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FBD0, UdpRingBuffer_1_T_GetEnumerator_d_36_UdpPipe_Ack__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x00F96630, Object *, UdpRingBuffer_1_T_GetEnumerator_d_36_UdpPipe_Ack__System_Collections_IEnumerator_get_Current, (UdpRingBuffer_1_T_GetEnumerator_d_36_UdpPipe_Ack_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, UdpRingBuffer_1_T_GetEnumerator_d_36_UdpPipe_Ack__System_IDisposable_Dispose, (UdpRingBuffer_1_T_GetEnumerator_d_36_UdpPipe_Ack_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, Lookup_2_TKey_TElement_Grouping_TKey_TElement_GetEnumerator_d_7_System_Int32_System_Object___ctor, (Lookup_2_TKey_TElement_Grouping_TKey_TElement_GetEnumerator_d_7_System_Int32_System_Object_ * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x00F984C0, bool, Lookup_2_TKey_TElement_Grouping_TKey_TElement_GetEnumerator_d_7_System_Int32_System_Object__MoveNext, (Lookup_2_TKey_TElement_Grouping_TKey_TElement_GetEnumerator_d_7_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, Lookup_2_TKey_TElement_Grouping_TKey_TElement_GetEnumerator_d_7_System_Int32_System_Object__System_Collections_Generic_IEnumerator_TElement__get_Current, (Lookup_2_TKey_TElement_Grouping_TKey_TElement_GetEnumerator_d_7_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F98590, void, Lookup_2_TKey_TElement_Grouping_TKey_TElement_GetEnumerator_d_7_System_Int32_System_Object__System_Collections_IEnumerator_Reset, (Lookup_2_TKey_TElement_Grouping_TKey_TElement_GetEnumerator_d_7_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FBF0, Lookup_2_TKey_TElement_Grouping_TKey_TElement_GetEnumerator_d_7_System_Int32_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Lookup_2_TKey_TElement_Grouping_TKey_TElement_GetEnumerator_d_7_System_Int32_System_Object__System_Collections_IEnumerator_get_Current, (Lookup_2_TKey_TElement_Grouping_TKey_TElement_GetEnumerator_d_7_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Lookup_2_TKey_TElement_Grouping_TKey_TElement_GetEnumerator_d_7_System_Int32_System_Object__System_IDisposable_Dispose, (Lookup_2_TKey_TElement_Grouping_TKey_TElement_GetEnumerator_d_7_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, Lookup_2_TKey_TElement_Grouping_TKey_TElement_GetEnumerator_d_7_System_Object_System_Object___ctor, (Lookup_2_TKey_TElement_Grouping_TKey_TElement_GetEnumerator_d_7_System_Object_System_Object_ * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x00F985E0, bool, Lookup_2_TKey_TElement_Grouping_TKey_TElement_GetEnumerator_d_7_System_Object_System_Object__MoveNext, (Lookup_2_TKey_TElement_Grouping_TKey_TElement_GetEnumerator_d_7_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, Lookup_2_TKey_TElement_Grouping_TKey_TElement_GetEnumerator_d_7_System_Object_System_Object__System_Collections_Generic_IEnumerator_TElement__get_Current, (Lookup_2_TKey_TElement_Grouping_TKey_TElement_GetEnumerator_d_7_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F986B0, void, Lookup_2_TKey_TElement_Grouping_TKey_TElement_GetEnumerator_d_7_System_Object_System_Object__System_Collections_IEnumerator_Reset, (Lookup_2_TKey_TElement_Grouping_TKey_TElement_GetEnumerator_d_7_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FBE8, Lookup_2_TKey_TElement_Grouping_TKey_TElement_GetEnumerator_d_7_System_Object_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Lookup_2_TKey_TElement_Grouping_TKey_TElement_GetEnumerator_d_7_System_Object_System_Object__System_Collections_IEnumerator_get_Current, (Lookup_2_TKey_TElement_Grouping_TKey_TElement_GetEnumerator_d_7_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Lookup_2_TKey_TElement_Grouping_TKey_TElement_GetEnumerator_d_7_System_Object_System_Object__System_IDisposable_Dispose, (Lookup_2_TKey_TElement_Grouping_TKey_TElement_GetEnumerator_d_7_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, Lookup_2_TKey_TElement_Grouping_TKey_TElement_GetEnumerator_d_7_System_Object_UnityEngine_Resolution___ctor, (Lookup_2_TKey_TElement_Grouping_TKey_TElement_GetEnumerator_d_7_System_Object_UnityEngine_Resolution_ * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x00F98700, bool, Lookup_2_TKey_TElement_Grouping_TKey_TElement_GetEnumerator_d_7_System_Object_UnityEngine_Resolution__MoveNext, (Lookup_2_TKey_TElement_Grouping_TKey_TElement_GetEnumerator_d_7_System_Object_UnityEngine_Resolution_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003CC8D0, Resolution, Lookup_2_TKey_TElement_Grouping_TKey_TElement_GetEnumerator_d_7_System_Object_UnityEngine_Resolution__System_Collections_Generic_IEnumerator_TElement__get_Current, (Lookup_2_TKey_TElement_Grouping_TKey_TElement_GetEnumerator_d_7_System_Object_UnityEngine_Resolution_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F98780, void, Lookup_2_TKey_TElement_Grouping_TKey_TElement_GetEnumerator_d_7_System_Object_UnityEngine_Resolution__System_Collections_IEnumerator_Reset, (Lookup_2_TKey_TElement_Grouping_TKey_TElement_GetEnumerator_d_7_System_Object_UnityEngine_Resolution_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FBE0, Lookup_2_TKey_TElement_Grouping_TKey_TElement_GetEnumerator_d_7_System_Object_UnityEngine_Resolution__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x00F987D0, Object *, Lookup_2_TKey_TElement_Grouping_TKey_TElement_GetEnumerator_d_7_System_Object_UnityEngine_Resolution__System_Collections_IEnumerator_get_Current, (Lookup_2_TKey_TElement_Grouping_TKey_TElement_GetEnumerator_d_7_System_Object_UnityEngine_Resolution_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Lookup_2_TKey_TElement_Grouping_TKey_TElement_GetEnumerator_d_7_System_Object_UnityEngine_Resolution__System_IDisposable_Dispose, (Lookup_2_TKey_TElement_Grouping_TKey_TElement_GetEnumerator_d_7_System_Object_UnityEngine_Resolution_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, Lookup_2_TKey_TElement_Grouping_TKey_TElement_GetEnumerator_d_7_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2___ctor, (Lookup_2_TKey_TElement_Grouping_TKey_TElement_GetEnumerator_d_7_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2_ * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x00F98820, bool, Lookup_2_TKey_TElement_Grouping_TKey_TElement_GetEnumerator_d_7_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2__MoveNext, (Lookup_2_TKey_TElement_Grouping_TKey_TElement_GetEnumerator_d_7_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F963E0, KeyValuePair_2_UnityEngine_Vector3_System_Int32_, Lookup_2_TKey_TElement_Grouping_TKey_TElement_GetEnumerator_d_7_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2__System_Collections_Generic_IEnumerator_TElement__get_Current, (Lookup_2_TKey_TElement_Grouping_TKey_TElement_GetEnumerator_d_7_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F988A0, void, Lookup_2_TKey_TElement_Grouping_TKey_TElement_GetEnumerator_d_7_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2__System_Collections_IEnumerator_Reset, (Lookup_2_TKey_TElement_Grouping_TKey_TElement_GetEnumerator_d_7_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FBD8, Lookup_2_TKey_TElement_Grouping_TKey_TElement_GetEnumerator_d_7_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x00F988F0, Object *, Lookup_2_TKey_TElement_Grouping_TKey_TElement_GetEnumerator_d_7_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2__System_Collections_IEnumerator_get_Current, (Lookup_2_TKey_TElement_Grouping_TKey_TElement_GetEnumerator_d_7_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Lookup_2_TKey_TElement_Grouping_TKey_TElement_GetEnumerator_d_7_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2__System_IDisposable_Dispose, (Lookup_2_TKey_TElement_Grouping_TKey_TElement_GetEnumerator_d_7_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, NetworkArray_Objects_1_T_GetEnumerator_d_9_System_Object___ctor, (NetworkArray_Objects_1_T_GetEnumerator_d_9_System_Object_ * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x00F961E0, bool, NetworkArray_Objects_1_T_GetEnumerator_d_9_System_Object__MoveNext, (NetworkArray_Objects_1_T_GetEnumerator_d_9_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, NetworkArray_Objects_1_T_GetEnumerator_d_9_System_Object__System_Collections_Generic_IEnumerator_T__get_Current, (NetworkArray_Objects_1_T_GetEnumerator_d_9_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F98930, void, NetworkArray_Objects_1_T_GetEnumerator_d_9_System_Object__System_Collections_IEnumerator_Reset, (NetworkArray_Objects_1_T_GetEnumerator_d_9_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FBC0, NetworkArray_Objects_1_T_GetEnumerator_d_9_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, NetworkArray_Objects_1_T_GetEnumerator_d_9_System_Object__System_Collections_IEnumerator_get_Current, (NetworkArray_Objects_1_T_GetEnumerator_d_9_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, NetworkArray_Objects_1_T_GetEnumerator_d_9_System_Object__System_IDisposable_Dispose, (NetworkArray_Objects_1_T_GetEnumerator_d_9_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, HybridReferenceDictionary_2_TKey_TValue_GetEnumeratorWorker_d_7_System_Object_System_Object___ctor, (HybridReferenceDictionary_2_TKey_TValue_GetEnumeratorWorker_d_7_System_Object_System_Object_ * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x00F98980, bool, HybridReferenceDictionary_2_TKey_TValue_GetEnumeratorWorker_d_7_System_Object_System_Object__MoveNext, (HybridReferenceDictionary_2_TKey_TValue_GetEnumeratorWorker_d_7_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0093E890, KeyValuePair_2_System_Object_System_Object_, HybridReferenceDictionary_2_TKey_TValue_GetEnumeratorWorker_d_7_System_Object_System_Object__System_Collections_Generic_IEnumerator_System_Collections_Generic_KeyValuePair_TKey_TValue___get_Current, (HybridReferenceDictionary_2_TKey_TValue_GetEnumeratorWorker_d_7_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F98A40, void, HybridReferenceDictionary_2_TKey_TValue_GetEnumeratorWorker_d_7_System_Object_System_Object__System_Collections_IEnumerator_Reset, (HybridReferenceDictionary_2_TKey_TValue_GetEnumeratorWorker_d_7_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FBB8, HybridReferenceDictionary_2_TKey_TValue_GetEnumeratorWorker_d_7_System_Object_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x00F98A90, Object *, HybridReferenceDictionary_2_TKey_TValue_GetEnumeratorWorker_d_7_System_Object_System_Object__System_Collections_IEnumerator_get_Current, (HybridReferenceDictionary_2_TKey_TValue_GetEnumeratorWorker_d_7_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HybridReferenceDictionary_2_TKey_TValue_GetEnumeratorWorker_d_7_System_Object_System_Object__System_IDisposable_Dispose, (HybridReferenceDictionary_2_TKey_TValue_GetEnumeratorWorker_d_7_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0095DC40, void, Enumerable_OfTypeIterator_d_97_1_System_Object___ctor, (Enumerable_OfTypeIterator_d_97_1_System_Object_ * __this, int32_t __1__state, MethodInfo * method)); @@ -119851,16 +132537,19 @@ DO_APP_FUNC(0x00F8F290, IEnumerator_1_System_Object_ *, Enumerable_OfTypeIterato DO_APP_FUNC(0x003BB3D0, Object *, Enumerable_OfTypeIterator_d_97_1_System_Object__System_Collections_Generic_IEnumerator_TResult__get_Current, (Enumerable_OfTypeIterator_d_97_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F8EE30, IEnumerator *, Enumerable_OfTypeIterator_d_97_1_System_Object__System_Collections_IEnumerable_GetEnumerator, (Enumerable_OfTypeIterator_d_97_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F98EB0, void, Enumerable_OfTypeIterator_d_97_1_System_Object__System_Collections_IEnumerator_Reset, (Enumerable_OfTypeIterator_d_97_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FBC8, Enumerable_OfTypeIterator_d_97_1_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Enumerable_OfTypeIterator_d_97_1_System_Object__System_Collections_IEnumerator_get_Current, (Enumerable_OfTypeIterator_d_97_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F8E250, void, Enumerable_OfTypeIterator_d_97_1_System_Object__System_IDisposable_Dispose, (Enumerable_OfTypeIterator_d_97_1_System_Object_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x00F98F00, void, ManagedWebSocket_ReceiveAsyncPrivate_d_61_2_ManagedWebSocket_WebSocketReceiveResultGetter_System_Object__MoveNext, (ManagedWebSocket_ReceiveAsyncPrivate_d_61_2_ManagedWebSocket_WebSocketReceiveResultGetter_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00F9AF30, void, ManagedWebSocket_ReceiveAsyncPrivate_d_61_2_ManagedWebSocket_WebSocketReceiveResultGetter_System_Object__SetStateMachine, (ManagedWebSocket_ReceiveAsyncPrivate_d_61_2_ManagedWebSocket_WebSocketReceiveResultGetter_System_Object___Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00F98F00, void, ManagedWebSocket_ReceiveAsyncPrivate_d_61_2_ManagedWebSocket_WebSocketReceiveResultGetter_System_Object__MoveNext, (ManagedWebSocket_ReceiveAsyncPrivate_d_61_2_ManagedWebSocket_WebSocketReceiveResultGetter_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FB58, ManagedWebSocket_ReceiveAsyncPrivate_d_61_2_ManagedWebSocket_WebSocketReceiveResultGetter_System_Object__MoveNext__MethodInfo); +DO_APP_FUNC(0x00F9AF30, void, ManagedWebSocket_ReceiveAsyncPrivate_d_61_2_ManagedWebSocket_WebSocketReceiveResultGetter_System_Object__SetStateMachine, (ManagedWebSocket_ReceiveAsyncPrivate_d_61_2_ManagedWebSocket_WebSocketReceiveResultGetter_System_Object_ * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); DO_APP_FUNC(0x0093D960, void, SortedSet_1_T_Reverse_d_94_KeyValuePair_2_System_Object_System_Char___ctor, (SortedSet_1_T_Reverse_d_94_KeyValuePair_2_System_Object_System_Char_ * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x00F9AF80, bool, SortedSet_1_T_Reverse_d_94_KeyValuePair_2_System_Object_System_Char__MoveNext, (SortedSet_1_T_Reverse_d_94_KeyValuePair_2_System_Object_System_Char_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F9B220, IEnumerator_1_KeyValuePair_2_System_Object_System_Char_ *, SortedSet_1_T_Reverse_d_94_KeyValuePair_2_System_Object_System_Char__System_Collections_Generic_IEnumerable_T__GetEnumerator, (SortedSet_1_T_Reverse_d_94_KeyValuePair_2_System_Object_System_Char_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0093E890, KeyValuePair_2_System_Object_System_Char_, SortedSet_1_T_Reverse_d_94_KeyValuePair_2_System_Object_System_Char__System_Collections_Generic_IEnumerator_T__get_Current, (SortedSet_1_T_Reverse_d_94_KeyValuePair_2_System_Object_System_Char_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F9B320, IEnumerator *, SortedSet_1_T_Reverse_d_94_KeyValuePair_2_System_Object_System_Char__System_Collections_IEnumerable_GetEnumerator, (SortedSet_1_T_Reverse_d_94_KeyValuePair_2_System_Object_System_Char_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F9B190, void, SortedSet_1_T_Reverse_d_94_KeyValuePair_2_System_Object_System_Char__System_Collections_IEnumerator_Reset, (SortedSet_1_T_Reverse_d_94_KeyValuePair_2_System_Object_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FB60, SortedSet_1_T_Reverse_d_94_KeyValuePair_2_System_Object_System_Char__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x00F9B1E0, Object *, SortedSet_1_T_Reverse_d_94_KeyValuePair_2_System_Object_System_Char__System_Collections_IEnumerator_get_Current, (SortedSet_1_T_Reverse_d_94_KeyValuePair_2_System_Object_System_Char_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SortedSet_1_T_Reverse_d_94_KeyValuePair_2_System_Object_System_Char__System_IDisposable_Dispose, (SortedSet_1_T_Reverse_d_94_KeyValuePair_2_System_Object_System_Char_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0093D960, void, SortedSet_1_T_Reverse_d_94_KeyValuePair_2_System_Object_System_Object___ctor, (SortedSet_1_T_Reverse_d_94_KeyValuePair_2_System_Object_System_Object_ * __this, int32_t __1__state, MethodInfo * method)); @@ -119869,6 +132558,7 @@ DO_APP_FUNC(0x00F9B220, IEnumerator_1_KeyValuePair_2_System_Object_System_Object DO_APP_FUNC(0x0093E890, KeyValuePair_2_System_Object_System_Object_, SortedSet_1_T_Reverse_d_94_KeyValuePair_2_System_Object_System_Object__System_Collections_Generic_IEnumerator_T__get_Current, (SortedSet_1_T_Reverse_d_94_KeyValuePair_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F9B320, IEnumerator *, SortedSet_1_T_Reverse_d_94_KeyValuePair_2_System_Object_System_Object__System_Collections_IEnumerable_GetEnumerator, (SortedSet_1_T_Reverse_d_94_KeyValuePair_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F9B560, void, SortedSet_1_T_Reverse_d_94_KeyValuePair_2_System_Object_System_Object__System_Collections_IEnumerator_Reset, (SortedSet_1_T_Reverse_d_94_KeyValuePair_2_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FB38, SortedSet_1_T_Reverse_d_94_KeyValuePair_2_System_Object_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x00F9B1E0, Object *, SortedSet_1_T_Reverse_d_94_KeyValuePair_2_System_Object_System_Object__System_Collections_IEnumerator_get_Current, (SortedSet_1_T_Reverse_d_94_KeyValuePair_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SortedSet_1_T_Reverse_d_94_KeyValuePair_2_System_Object_System_Object__System_IDisposable_Dispose, (SortedSet_1_T_Reverse_d_94_KeyValuePair_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0093D960, void, SortedSet_1_T_Reverse_d_94_KeyValuePair_2_System_UInt64_System_Object___ctor, (SortedSet_1_T_Reverse_d_94_KeyValuePair_2_System_UInt64_System_Object_ * __this, int32_t __1__state, MethodInfo * method)); @@ -119877,6 +132567,7 @@ DO_APP_FUNC(0x00F9B220, IEnumerator_1_KeyValuePair_2_System_UInt64_System_Object DO_APP_FUNC(0x0093E890, KeyValuePair_2_System_UInt64_System_Object_, SortedSet_1_T_Reverse_d_94_KeyValuePair_2_System_UInt64_System_Object__System_Collections_Generic_IEnumerator_T__get_Current, (SortedSet_1_T_Reverse_d_94_KeyValuePair_2_System_UInt64_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F9B320, IEnumerator *, SortedSet_1_T_Reverse_d_94_KeyValuePair_2_System_UInt64_System_Object__System_Collections_IEnumerable_GetEnumerator, (SortedSet_1_T_Reverse_d_94_KeyValuePair_2_System_UInt64_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F9B7C0, void, SortedSet_1_T_Reverse_d_94_KeyValuePair_2_System_UInt64_System_Object__System_Collections_IEnumerator_Reset, (SortedSet_1_T_Reverse_d_94_KeyValuePair_2_System_UInt64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FB30, SortedSet_1_T_Reverse_d_94_KeyValuePair_2_System_UInt64_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x00F9B1E0, Object *, SortedSet_1_T_Reverse_d_94_KeyValuePair_2_System_UInt64_System_Object__System_Collections_IEnumerator_get_Current, (SortedSet_1_T_Reverse_d_94_KeyValuePair_2_System_UInt64_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SortedSet_1_T_Reverse_d_94_KeyValuePair_2_System_UInt64_System_Object__System_IDisposable_Dispose, (SortedSet_1_T_Reverse_d_94_KeyValuePair_2_System_UInt64_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0095DC40, void, SortedSet_1_T_Reverse_d_94_System_Object___ctor, (SortedSet_1_T_Reverse_d_94_System_Object_ * __this, int32_t __1__state, MethodInfo * method)); @@ -119885,6 +132576,7 @@ DO_APP_FUNC(0x00F9BA60, IEnumerator_1_System_Object_ *, SortedSet_1_T_Reverse_d_ DO_APP_FUNC(0x003BB3D0, Object *, SortedSet_1_T_Reverse_d_94_System_Object__System_Collections_Generic_IEnumerator_T__get_Current, (SortedSet_1_T_Reverse_d_94_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F9B320, IEnumerator *, SortedSet_1_T_Reverse_d_94_System_Object__System_Collections_IEnumerable_GetEnumerator, (SortedSet_1_T_Reverse_d_94_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F9BA10, void, SortedSet_1_T_Reverse_d_94_System_Object__System_Collections_IEnumerator_Reset, (SortedSet_1_T_Reverse_d_94_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FB28, SortedSet_1_T_Reverse_d_94_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, SortedSet_1_T_Reverse_d_94_System_Object__System_Collections_IEnumerator_get_Current, (SortedSet_1_T_Reverse_d_94_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SortedSet_1_T_Reverse_d_94_System_Object__System_IDisposable_Dispose, (SortedSet_1_T_Reverse_d_94_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0095DC40, void, Enumerable_ReverseIterator_d_79_1_System_Object___ctor, (Enumerable_ReverseIterator_d_79_1_System_Object_ * __this, int32_t __1__state, MethodInfo * method)); @@ -119893,6 +132585,7 @@ DO_APP_FUNC(0x00F8F290, IEnumerator_1_System_Object_ *, Enumerable_ReverseIterat DO_APP_FUNC(0x003BB3D0, Object *, Enumerable_ReverseIterator_d_79_1_System_Object__System_Collections_Generic_IEnumerator_TSource__get_Current, (Enumerable_ReverseIterator_d_79_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F8EE30, IEnumerator *, Enumerable_ReverseIterator_d_79_1_System_Object__System_Collections_IEnumerable_GetEnumerator, (Enumerable_ReverseIterator_d_79_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F9BCC0, void, Enumerable_ReverseIterator_d_79_1_System_Object__System_Collections_IEnumerator_Reset, (Enumerable_ReverseIterator_d_79_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FB20, Enumerable_ReverseIterator_d_79_1_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Enumerable_ReverseIterator_d_79_1_System_Object__System_Collections_IEnumerator_get_Current, (Enumerable_ReverseIterator_d_79_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Enumerable_ReverseIterator_d_79_1_System_Object__System_IDisposable_Dispose, (Enumerable_ReverseIterator_d_79_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F9BD10, void, Enumerable_ReverseIterator_d_79_1_UnityEngine_Vector2___ctor, (Enumerable_ReverseIterator_d_79_1_UnityEngine_Vector2_ * __this, int32_t __1__state, MethodInfo * method)); @@ -119901,62 +132594,77 @@ DO_APP_FUNC(0x00F9BEF0, IEnumerator_1_UnityEngine_Vector2_ *, Enumerable_Reverse DO_APP_FUNC(0x00F9BE30, Vector2, Enumerable_ReverseIterator_d_79_1_UnityEngine_Vector2__System_Collections_Generic_IEnumerator_TSource__get_Current, (Enumerable_ReverseIterator_d_79_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F8EE30, IEnumerator *, Enumerable_ReverseIterator_d_79_1_UnityEngine_Vector2__System_Collections_IEnumerable_GetEnumerator, (Enumerable_ReverseIterator_d_79_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F9BE50, void, Enumerable_ReverseIterator_d_79_1_UnityEngine_Vector2__System_Collections_IEnumerator_Reset, (Enumerable_ReverseIterator_d_79_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FB48, Enumerable_ReverseIterator_d_79_1_UnityEngine_Vector2__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x00F9BEA0, Object *, Enumerable_ReverseIterator_d_79_1_UnityEngine_Vector2__System_Collections_IEnumerator_get_Current, (Enumerable_ReverseIterator_d_79_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Enumerable_ReverseIterator_d_79_1_UnityEngine_Vector2__System_IDisposable_Dispose, (Enumerable_ReverseIterator_d_79_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F8E910, void, ParallelWorkQueue_1_T_Run_d_7_Pathfinding_Int2___ctor, (ParallelWorkQueue_1_T_Run_d_7_Pathfinding_Int2_ * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x00F9BFF0, bool, ParallelWorkQueue_1_T_Run_d_7_Pathfinding_Int2__MoveNext, (ParallelWorkQueue_1_T_Run_d_7_Pathfinding_Int2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FAF8, ParallelWorkQueue_1_T_Run_d_7_Pathfinding_Int2__MoveNext__MethodInfo); DO_APP_FUNC(0x00F9C560, IEnumerator_1_System_Int32_ *, ParallelWorkQueue_1_T_Run_d_7_Pathfinding_Int2__System_Collections_Generic_IEnumerable_System_Int32__GetEnumerator, (ParallelWorkQueue_1_T_Run_d_7_Pathfinding_Int2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD70, int32_t, ParallelWorkQueue_1_T_Run_d_7_Pathfinding_Int2__System_Collections_Generic_IEnumerator_System_Int32__get_Current, (ParallelWorkQueue_1_T_Run_d_7_Pathfinding_Int2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F8EE30, IEnumerator *, ParallelWorkQueue_1_T_Run_d_7_Pathfinding_Int2__System_Collections_IEnumerable_GetEnumerator, (ParallelWorkQueue_1_T_Run_d_7_Pathfinding_Int2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F9C4C0, void, ParallelWorkQueue_1_T_Run_d_7_Pathfinding_Int2__System_Collections_IEnumerator_Reset, (ParallelWorkQueue_1_T_Run_d_7_Pathfinding_Int2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FB18, ParallelWorkQueue_1_T_Run_d_7_Pathfinding_Int2__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x00F9C510, Object *, ParallelWorkQueue_1_T_Run_d_7_Pathfinding_Int2__System_Collections_IEnumerator_get_Current, (ParallelWorkQueue_1_T_Run_d_7_Pathfinding_Int2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ParallelWorkQueue_1_T_Run_d_7_Pathfinding_Int2__System_IDisposable_Dispose, (ParallelWorkQueue_1_T_Run_d_7_Pathfinding_Int2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F8E910, void, ParallelWorkQueue_1_T_Run_d_7_System_Object___ctor, (ParallelWorkQueue_1_T_Run_d_7_System_Object_ * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x00F9C660, bool, ParallelWorkQueue_1_T_Run_d_7_System_Object__MoveNext, (ParallelWorkQueue_1_T_Run_d_7_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FAE8, ParallelWorkQueue_1_T_Run_d_7_System_Object__MoveNext__MethodInfo); DO_APP_FUNC(0x00F9C560, IEnumerator_1_System_Int32_ *, ParallelWorkQueue_1_T_Run_d_7_System_Object__System_Collections_Generic_IEnumerable_System_Int32__GetEnumerator, (ParallelWorkQueue_1_T_Run_d_7_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD70, int32_t, ParallelWorkQueue_1_T_Run_d_7_System_Object__System_Collections_Generic_IEnumerator_System_Int32__get_Current, (ParallelWorkQueue_1_T_Run_d_7_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F8EE30, IEnumerator *, ParallelWorkQueue_1_T_Run_d_7_System_Object__System_Collections_IEnumerable_GetEnumerator, (ParallelWorkQueue_1_T_Run_d_7_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F9CB30, void, ParallelWorkQueue_1_T_Run_d_7_System_Object__System_Collections_IEnumerator_Reset, (ParallelWorkQueue_1_T_Run_d_7_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FAE0, ParallelWorkQueue_1_T_Run_d_7_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x00F9CB80, Object *, ParallelWorkQueue_1_T_Run_d_7_System_Object__System_Collections_IEnumerator_get_Current, (ParallelWorkQueue_1_T_Run_d_7_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ParallelWorkQueue_1_T_Run_d_7_System_Object__System_IDisposable_Dispose, (ParallelWorkQueue_1_T_Run_d_7_System_Object_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x00F9CBD0, void, HttpWebRequest_RunWithTimeoutWorker_d_241_1_System_Int32__MoveNext, (HttpWebRequest_RunWithTimeoutWorker_d_241_1_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00F9D3F0, void, HttpWebRequest_RunWithTimeoutWorker_d_241_1_System_Int32__SetStateMachine, (HttpWebRequest_RunWithTimeoutWorker_d_241_1_System_Int32___Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00F9D480, void, HttpWebRequest_RunWithTimeoutWorker_d_241_1_System_Object__MoveNext, (HttpWebRequest_RunWithTimeoutWorker_d_241_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00F9D3F0, void, HttpWebRequest_RunWithTimeoutWorker_d_241_1_System_Object__SetStateMachine, (HttpWebRequest_RunWithTimeoutWorker_d_241_1_System_Object___Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00F9CBD0, void, HttpWebRequest_RunWithTimeoutWorker_d_241_1_System_Int32__MoveNext, (HttpWebRequest_RunWithTimeoutWorker_d_241_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FAC8, HttpWebRequest_RunWithTimeoutWorker_d_241_1_System_Int32__MoveNext__MethodInfo); +DO_APP_FUNC(0x00F9D3F0, void, HttpWebRequest_RunWithTimeoutWorker_d_241_1_System_Int32__SetStateMachine, (HttpWebRequest_RunWithTimeoutWorker_d_241_1_System_Int32_ * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00F9D480, void, HttpWebRequest_RunWithTimeoutWorker_d_241_1_System_Object__MoveNext, (HttpWebRequest_RunWithTimeoutWorker_d_241_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FA88, HttpWebRequest_RunWithTimeoutWorker_d_241_1_System_Object__MoveNext__MethodInfo); +DO_APP_FUNC(0x00F9D3F0, void, HttpWebRequest_RunWithTimeoutWorker_d_241_1_System_Object__SetStateMachine, (HttpWebRequest_RunWithTimeoutWorker_d_241_1_System_Object_ * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); DO_APP_FUNC(0x0093D960, void, Enumerable_SelectIterator_d_5_2_System_Object_System_Collections_Generic_KeyValuePair_2___ctor, (Enumerable_SelectIterator_d_5_2_System_Object_System_Collections_Generic_KeyValuePair_2_ * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x00F9E040, void, Enumerable_SelectIterator_d_5_2_System_Object_System_Collections_Generic_KeyValuePair_2____m__Finally1, (Enumerable_SelectIterator_d_5_2_System_Object_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F9DC60, bool, Enumerable_SelectIterator_d_5_2_System_Object_System_Collections_Generic_KeyValuePair_2__MoveNext, (Enumerable_SelectIterator_d_5_2_System_Object_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FAA0, Enumerable_SelectIterator_d_5_2_System_Object_System_Collections_Generic_KeyValuePair_2__MoveNext__MethodInfo); DO_APP_FUNC(0x00F9E130, IEnumerator_1_KeyValuePair_2_System_UInt16_System_Object_ *, Enumerable_SelectIterator_d_5_2_System_Object_System_Collections_Generic_KeyValuePair_2__System_Collections_Generic_IEnumerable_TResult__GetEnumerator, (Enumerable_SelectIterator_d_5_2_System_Object_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0093E890, KeyValuePair_2_System_UInt16_System_Object_, Enumerable_SelectIterator_d_5_2_System_Object_System_Collections_Generic_KeyValuePair_2__System_Collections_Generic_IEnumerator_TResult__get_Current, (Enumerable_SelectIterator_d_5_2_System_Object_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F9E290, IEnumerator *, Enumerable_SelectIterator_d_5_2_System_Object_System_Collections_Generic_KeyValuePair_2__System_Collections_IEnumerable_GetEnumerator, (Enumerable_SelectIterator_d_5_2_System_Object_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F9E0A0, void, Enumerable_SelectIterator_d_5_2_System_Object_System_Collections_Generic_KeyValuePair_2__System_Collections_IEnumerator_Reset, (Enumerable_SelectIterator_d_5_2_System_Object_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FA60, Enumerable_SelectIterator_d_5_2_System_Object_System_Collections_Generic_KeyValuePair_2__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x00F9E0F0, Object *, Enumerable_SelectIterator_d_5_2_System_Object_System_Collections_Generic_KeyValuePair_2__System_Collections_IEnumerator_get_Current, (Enumerable_SelectIterator_d_5_2_System_Object_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F8E250, void, Enumerable_SelectIterator_d_5_2_System_Object_System_Collections_Generic_KeyValuePair_2__System_IDisposable_Dispose, (Enumerable_SelectIterator_d_5_2_System_Object_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0093D960, void, Enumerable_SelectIterator_d_5_2_System_Object_System_ValueTuple_2___ctor, (Enumerable_SelectIterator_d_5_2_System_Object_System_ValueTuple_2_ * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x00F9E660, void, Enumerable_SelectIterator_d_5_2_System_Object_System_ValueTuple_2____m__Finally1, (Enumerable_SelectIterator_d_5_2_System_Object_System_ValueTuple_2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F9E2C0, bool, Enumerable_SelectIterator_d_5_2_System_Object_System_ValueTuple_2__MoveNext, (Enumerable_SelectIterator_d_5_2_System_Object_System_ValueTuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FA78, Enumerable_SelectIterator_d_5_2_System_Object_System_ValueTuple_2__MoveNext__MethodInfo); DO_APP_FUNC(0x00F9E130, IEnumerator_1_System_ValueTuple_2__11 *, Enumerable_SelectIterator_d_5_2_System_Object_System_ValueTuple_2__System_Collections_Generic_IEnumerable_TResult__GetEnumerator, (Enumerable_SelectIterator_d_5_2_System_Object_System_ValueTuple_2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0093E890, ValueTuple_2_Object_Int32_, Enumerable_SelectIterator_d_5_2_System_Object_System_ValueTuple_2__System_Collections_Generic_IEnumerator_TResult__get_Current, (Enumerable_SelectIterator_d_5_2_System_Object_System_ValueTuple_2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F9E290, IEnumerator *, Enumerable_SelectIterator_d_5_2_System_Object_System_ValueTuple_2__System_Collections_IEnumerable_GetEnumerator, (Enumerable_SelectIterator_d_5_2_System_Object_System_ValueTuple_2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F9E6C0, void, Enumerable_SelectIterator_d_5_2_System_Object_System_ValueTuple_2__System_Collections_IEnumerator_Reset, (Enumerable_SelectIterator_d_5_2_System_Object_System_ValueTuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FA68, Enumerable_SelectIterator_d_5_2_System_Object_System_ValueTuple_2__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x00F9E0F0, Object *, Enumerable_SelectIterator_d_5_2_System_Object_System_ValueTuple_2__System_Collections_IEnumerator_get_Current, (Enumerable_SelectIterator_d_5_2_System_Object_System_ValueTuple_2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F8E250, void, Enumerable_SelectIterator_d_5_2_System_Object_System_ValueTuple_2__System_IDisposable_Dispose, (Enumerable_SelectIterator_d_5_2_System_Object_System_ValueTuple_2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0095DC40, void, Enumerable_SelectIterator_d_5_2_System_Object_System_Object___ctor, (Enumerable_SelectIterator_d_5_2_System_Object_System_Object_ * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x00F9EA50, void, Enumerable_SelectIterator_d_5_2_System_Object_System_Object____m__Finally1, (Enumerable_SelectIterator_d_5_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F9E710, bool, Enumerable_SelectIterator_d_5_2_System_Object_System_Object__MoveNext, (Enumerable_SelectIterator_d_5_2_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FA30, Enumerable_SelectIterator_d_5_2_System_Object_System_Object__MoveNext__MethodInfo); DO_APP_FUNC(0x00F9EB00, IEnumerator_1_System_Object_ *, Enumerable_SelectIterator_d_5_2_System_Object_System_Object__System_Collections_Generic_IEnumerable_TResult__GetEnumerator, (Enumerable_SelectIterator_d_5_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, Enumerable_SelectIterator_d_5_2_System_Object_System_Object__System_Collections_Generic_IEnumerator_TResult__get_Current, (Enumerable_SelectIterator_d_5_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F9E290, IEnumerator *, Enumerable_SelectIterator_d_5_2_System_Object_System_Object__System_Collections_IEnumerable_GetEnumerator, (Enumerable_SelectIterator_d_5_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F9EAB0, void, Enumerable_SelectIterator_d_5_2_System_Object_System_Object__System_Collections_IEnumerator_Reset, (Enumerable_SelectIterator_d_5_2_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FA48, Enumerable_SelectIterator_d_5_2_System_Object_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Enumerable_SelectIterator_d_5_2_System_Object_System_Object__System_Collections_IEnumerator_get_Current, (Enumerable_SelectIterator_d_5_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F8E250, void, Enumerable_SelectIterator_d_5_2_System_Object_System_Object__System_IDisposable_Dispose, (Enumerable_SelectIterator_d_5_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F9EC60, void, Enumerable_SelectIterator_d_5_2_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2___ctor, (Enumerable_SelectIterator_d_5_2_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2_ * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x00F9F040, void, Enumerable_SelectIterator_d_5_2_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2____m__Finally1, (Enumerable_SelectIterator_d_5_2_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F9EC80, bool, Enumerable_SelectIterator_d_5_2_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2__MoveNext, (Enumerable_SelectIterator_d_5_2_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FA08, Enumerable_SelectIterator_d_5_2_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2__MoveNext__MethodInfo); DO_APP_FUNC(0x00F9F130, IEnumerator_1_KeyValuePair_2_UnityEngine_Vector3_System_Int32_ *, Enumerable_SelectIterator_d_5_2_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2__System_Collections_Generic_IEnumerable_TResult__GetEnumerator, (Enumerable_SelectIterator_d_5_2_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F963E0, KeyValuePair_2_UnityEngine_Vector3_System_Int32_, Enumerable_SelectIterator_d_5_2_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2__System_Collections_Generic_IEnumerator_TResult__get_Current, (Enumerable_SelectIterator_d_5_2_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F9E290, IEnumerator *, Enumerable_SelectIterator_d_5_2_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2__System_Collections_IEnumerable_GetEnumerator, (Enumerable_SelectIterator_d_5_2_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F9F0A0, void, Enumerable_SelectIterator_d_5_2_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2__System_Collections_IEnumerator_Reset, (Enumerable_SelectIterator_d_5_2_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F9F0, Enumerable_SelectIterator_d_5_2_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x00F9F0F0, Object *, Enumerable_SelectIterator_d_5_2_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2__System_Collections_IEnumerator_get_Current, (Enumerable_SelectIterator_d_5_2_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F8E250, void, Enumerable_SelectIterator_d_5_2_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2__System_IDisposable_Dispose, (Enumerable_SelectIterator_d_5_2_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0095DC40, void, Enumerable_SelectManyIterator_d_17_2_System_Object_System_Object___ctor, (Enumerable_SelectManyIterator_d_17_2_System_Object_System_Object_ * __this, int32_t __1__state, MethodInfo * method)); @@ -119967,6 +132675,7 @@ DO_APP_FUNC(0x00F9FA30, IEnumerator_1_System_Object_ *, Enumerable_SelectManyIte DO_APP_FUNC(0x003BB3D0, Object *, Enumerable_SelectManyIterator_d_17_2_System_Object_System_Object__System_Collections_Generic_IEnumerator_TResult__get_Current, (Enumerable_SelectManyIterator_d_17_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F9FB90, IEnumerator *, Enumerable_SelectManyIterator_d_17_2_System_Object_System_Object__System_Collections_IEnumerable_GetEnumerator, (Enumerable_SelectManyIterator_d_17_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F9F9E0, void, Enumerable_SelectManyIterator_d_17_2_System_Object_System_Object__System_Collections_IEnumerator_Reset, (Enumerable_SelectManyIterator_d_17_2_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F9E8, Enumerable_SelectManyIterator_d_17_2_System_Object_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Enumerable_SelectManyIterator_d_17_2_System_Object_System_Object__System_Collections_IEnumerator_get_Current, (Enumerable_SelectManyIterator_d_17_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F9F290, void, Enumerable_SelectManyIterator_d_17_2_System_Object_System_Object__System_IDisposable_Dispose, (Enumerable_SelectManyIterator_d_17_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0095DC40, void, Enumerable_SelectManyIterator_d_23_3_System_Object_System_Object_System_Object___ctor, (Enumerable_SelectManyIterator_d_23_3_System_Object_System_Object_System_Object_ * __this, int32_t __1__state, MethodInfo * method)); @@ -119977,30 +132686,35 @@ DO_APP_FUNC(0x00FA02B0, IEnumerator_1_System_Object_ *, Enumerable_SelectManyIte DO_APP_FUNC(0x003BB3D0, Object *, Enumerable_SelectManyIterator_d_23_3_System_Object_System_Object_System_Object__System_Collections_Generic_IEnumerator_TResult__get_Current, (Enumerable_SelectManyIterator_d_23_3_System_Object_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FA0460, IEnumerator *, Enumerable_SelectManyIterator_d_23_3_System_Object_System_Object_System_Object__System_Collections_IEnumerable_GetEnumerator, (Enumerable_SelectManyIterator_d_23_3_System_Object_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FA0260, void, Enumerable_SelectManyIterator_d_23_3_System_Object_System_Object_System_Object__System_Collections_IEnumerator_Reset, (Enumerable_SelectManyIterator_d_23_3_System_Object_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F9C8, Enumerable_SelectManyIterator_d_23_3_System_Object_System_Object_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Enumerable_SelectManyIterator_d_23_3_System_Object_System_Object_System_Object__System_Collections_IEnumerator_get_Current, (Enumerable_SelectManyIterator_d_23_3_System_Object_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F9F290, void, Enumerable_SelectManyIterator_d_23_3_System_Object_System_Object_System_Object__System_IDisposable_Dispose, (Enumerable_SelectManyIterator_d_23_3_System_Object_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, TweenRunner_1_T_Start_d_2_ColorTween___ctor, (TweenRunner_1_T_Start_d_2_ColorTween_ * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x00FA0490, bool, TweenRunner_1_T_Start_d_2_ColorTween__MoveNext, (TweenRunner_1_T_Start_d_2_ColorTween_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, TweenRunner_1_T_Start_d_2_ColorTween__System_Collections_Generic_IEnumerator_System_Object__get_Current, (TweenRunner_1_T_Start_d_2_ColorTween_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FA05E0, void, TweenRunner_1_T_Start_d_2_ColorTween__System_Collections_IEnumerator_Reset, (TweenRunner_1_T_Start_d_2_ColorTween_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F9E0, TweenRunner_1_T_Start_d_2_ColorTween__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, TweenRunner_1_T_Start_d_2_ColorTween__System_Collections_IEnumerator_get_Current, (TweenRunner_1_T_Start_d_2_ColorTween_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TweenRunner_1_T_Start_d_2_ColorTween__System_IDisposable_Dispose, (TweenRunner_1_T_Start_d_2_ColorTween_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, TweenRunner_1_T_Start_d_2_FloatTween___ctor, (TweenRunner_1_T_Start_d_2_FloatTween_ * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x00FA0630, bool, TweenRunner_1_T_Start_d_2_FloatTween__MoveNext, (TweenRunner_1_T_Start_d_2_FloatTween_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, TweenRunner_1_T_Start_d_2_FloatTween__System_Collections_Generic_IEnumerator_System_Object__get_Current, (TweenRunner_1_T_Start_d_2_FloatTween_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FA0780, void, TweenRunner_1_T_Start_d_2_FloatTween__System_Collections_IEnumerator_Reset, (TweenRunner_1_T_Start_d_2_FloatTween_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F9D8, TweenRunner_1_T_Start_d_2_FloatTween__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, TweenRunner_1_T_Start_d_2_FloatTween__System_Collections_IEnumerator_get_Current, (TweenRunner_1_T_Start_d_2_FloatTween_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TweenRunner_1_T_Start_d_2_FloatTween__System_IDisposable_Dispose, (TweenRunner_1_T_Start_d_2_FloatTween_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, TweenRunner_1_T_Start_d_2_FloatTween__1__ctor, (TweenRunner_1_T_Start_d_2_FloatTween__1 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x00FA07D0, bool, TweenRunner_1_T_Start_d_2_FloatTween__1_MoveNext, (TweenRunner_1_T_Start_d_2_FloatTween__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, TweenRunner_1_T_Start_d_2_FloatTween__1_System_Collections_Generic_IEnumerator_System_Object__get_Current, (TweenRunner_1_T_Start_d_2_FloatTween__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x00FA0920, void, TweenRunner_1_T_Start_d_2_FloatTween__1_System_Collections_IEnumerator_Reset, (TweenRunner_1_T_Start_d_2_FloatTween__1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F988, TweenRunner_1_T_Start_d_2_FloatTween__1_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, TweenRunner_1_T_Start_d_2_FloatTween__1_System_Collections_IEnumerator_get_Current, (TweenRunner_1_T_Start_d_2_FloatTween__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TweenRunner_1_T_Start_d_2_FloatTween__1_System_IDisposable_Dispose, (TweenRunner_1_T_Start_d_2_FloatTween__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, TweenRunner_1_T_Start_d_2_FloatTween__2__ctor, (TweenRunner_1_T_Start_d_2_FloatTween__2 * __this, int32_t __1__state, MethodInfo * method)); DO_APP_FUNC(0x00FA0970, bool, TweenRunner_1_T_Start_d_2_FloatTween__2_MoveNext, (TweenRunner_1_T_Start_d_2_FloatTween__2 * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, TweenRunner_1_T_Start_d_2_FloatTween__2_System_Collections_Generic_IEnumerator_System_Object__get_Current, (TweenRunner_1_T_Start_d_2_FloatTween__2 * __this, MethodInfo * method)); DO_APP_FUNC(0x00FA0AD0, void, TweenRunner_1_T_Start_d_2_FloatTween__2_System_Collections_IEnumerator_Reset, (TweenRunner_1_T_Start_d_2_FloatTween__2 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F9A0, TweenRunner_1_T_Start_d_2_FloatTween__2_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, TweenRunner_1_T_Start_d_2_FloatTween__2_System_Collections_IEnumerator_get_Current, (TweenRunner_1_T_Start_d_2_FloatTween__2 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TweenRunner_1_T_Start_d_2_FloatTween__2_System_IDisposable_Dispose, (TweenRunner_1_T_Start_d_2_FloatTween__2 * __this, MethodInfo * method)); DO_APP_FUNC(0x0095DC40, void, Enumerable_TakeIterator_d_25_1_System_Object___ctor, (Enumerable_TakeIterator_d_25_1_System_Object_ * __this, int32_t __1__state, MethodInfo * method)); @@ -120010,6 +132724,7 @@ DO_APP_FUNC(0x00FA0EF0, IEnumerator_1_System_Object_ *, Enumerable_TakeIterator_ DO_APP_FUNC(0x003BB3D0, Object *, Enumerable_TakeIterator_d_25_1_System_Object__System_Collections_Generic_IEnumerator_TSource__get_Current, (Enumerable_TakeIterator_d_25_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F8E8E0, IEnumerator *, Enumerable_TakeIterator_d_25_1_System_Object__System_Collections_IEnumerable_GetEnumerator, (Enumerable_TakeIterator_d_25_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FA0EA0, void, Enumerable_TakeIterator_d_25_1_System_Object__System_Collections_IEnumerator_Reset, (Enumerable_TakeIterator_d_25_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F958, Enumerable_TakeIterator_d_25_1_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Enumerable_TakeIterator_d_25_1_System_Object__System_Collections_IEnumerator_get_Current, (Enumerable_TakeIterator_d_25_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F8E250, void, Enumerable_TakeIterator_d_25_1_System_Object__System_IDisposable_Dispose, (Enumerable_TakeIterator_d_25_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0095DC40, void, Enumerable_UnionIterator_d_71_1_System_Object___ctor, (Enumerable_UnionIterator_d_71_1_System_Object_ * __this, int32_t __1__state, MethodInfo * method)); @@ -120020,12 +132735,13 @@ DO_APP_FUNC(0x00FA1780, IEnumerator_1_System_Object_ *, Enumerable_UnionIterator DO_APP_FUNC(0x003BB3D0, Object *, Enumerable_UnionIterator_d_71_1_System_Object__System_Collections_Generic_IEnumerator_TSource__get_Current, (Enumerable_UnionIterator_d_71_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FA1930, IEnumerator *, Enumerable_UnionIterator_d_71_1_System_Object__System_Collections_IEnumerable_GetEnumerator, (Enumerable_UnionIterator_d_71_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FA1730, void, Enumerable_UnionIterator_d_71_1_System_Object__System_Collections_IEnumerator_Reset, (Enumerable_UnionIterator_d_71_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F938, Enumerable_UnionIterator_d_71_1_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Enumerable_UnionIterator_d_71_1_System_Object__System_Collections_IEnumerator_get_Current, (Enumerable_UnionIterator_d_71_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F8F790, void, Enumerable_UnionIterator_d_71_1_System_Object__System_IDisposable_Dispose, (Enumerable_UnionIterator_d_71_1_System_Object_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FA1960, void, WebCompletionSource_1_T_WaitForCompletion_d_15_System_ValueTuple_2__MoveNext, (WebCompletionSource_1_T_WaitForCompletion_d_15_System_ValueTuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FA1E50, void, WebCompletionSource_1_T_WaitForCompletion_d_15_System_ValueTuple_2__SetStateMachine, (WebCompletionSource_1_T_WaitForCompletion_d_15_System_ValueTuple_2___Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00FA1EE0, void, WebCompletionSource_1_T_WaitForCompletion_d_15_System_Object__MoveNext, (WebCompletionSource_1_T_WaitForCompletion_d_15_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FA1E50, void, WebCompletionSource_1_T_WaitForCompletion_d_15_System_Object__SetStateMachine, (WebCompletionSource_1_T_WaitForCompletion_d_15_System_Object___Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00FA1960, void, WebCompletionSource_1_T_WaitForCompletion_d_15_System_ValueTuple_2__MoveNext, (WebCompletionSource_1_T_WaitForCompletion_d_15_System_ValueTuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00FA1E50, void, WebCompletionSource_1_T_WaitForCompletion_d_15_System_ValueTuple_2__SetStateMachine, (WebCompletionSource_1_T_WaitForCompletion_d_15_System_ValueTuple_2_ * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00FA1EE0, void, WebCompletionSource_1_T_WaitForCompletion_d_15_System_Object__MoveNext, (WebCompletionSource_1_T_WaitForCompletion_d_15_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00FA1E50, void, WebCompletionSource_1_T_WaitForCompletion_d_15_System_Object__SetStateMachine, (WebCompletionSource_1_T_WaitForCompletion_d_15_System_Object_ * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); DO_APP_FUNC(0x00C67E70, void, ADictionary_2_System_Int32_System_Int32__AoRSVrhVZVojMyCPSJVQbMSwlsoA, (Object * param_0000c5fc, String * param_0000c5fd, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C98640, ADictionary_2_System_Int32_System_Int32__AoRSVrhVZVojMyCPSJVQbMSwlsoA__MethodInfo); DO_APP_FUNC(0x00FA6010, void, ADictionary_2_System_Int32_System_Int32___cctor, (MethodInfo * method)); @@ -120037,26 +132753,32 @@ DO_APP_FUNC(0x00FA2B40, void, ADictionary_2_System_Int32_System_Int32___ctor_4, DO_APP_FUNC(0x00FA2830, void, ADictionary_2_System_Int32_System_Int32___ctor_5, (ADictionary_2_System_Int32_System_Int32_ * __this, IEqualityComparer_1_System_Int32_ * param_0000c5b2, IEqualityComparer_1_System_Int32_ * param_0000c5b3, MethodInfo * method)); DO_APP_FUNC(0x00FA2890, void, ADictionary_2_System_Int32_System_Int32___ctor_6, (ADictionary_2_System_Int32_System_Int32_ * __this, int32_t param_0000c5b5, IEqualityComparer_1_System_Int32_ * param_0000c5b6, MethodInfo * method)); DO_APP_FUNC(0x00FA2B70, void, ADictionary_2_System_Int32_System_Int32___ctor_7, (ADictionary_2_System_Int32_System_Int32_ * __this, IDictionary_2_System_Int32_System_Int32_ * param_0000c5bd, IEqualityComparer_1_System_Int32_ * param_0000c5be, IEqualityComparer_1_System_Int32_ * param_0000c5bf, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F8E0, ADictionary_2_System_Int32_System_Int32___ctor_7__MethodInfo); DO_APP_FUNC(0x00FA28C0, void, ADictionary_2_System_Int32_System_Int32___ctor_8, (ADictionary_2_System_Int32_System_Int32_ * __this, int32_t param_0000c5b7, IEqualityComparer_1_System_Int32_ * param_0000c5b8, IEqualityComparer_1_System_Int32_ * param_0000c5b9, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F920, ADictionary_2_System_Int32_System_Int32___ctor_8__MethodInfo); DO_APP_FUNC(0x00FA2E40, void, ADictionary_2_System_Int32_System_Int32__Add, (ADictionary_2_System_Int32_System_Int32_ * __this, int32_t key, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x00FA2E70, void, ADictionary_2_System_Int32_System_Int32__Clear, (ADictionary_2_System_Int32_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FA2F00, bool, ADictionary_2_System_Int32_System_Int32__ContainsKey, (ADictionary_2_System_Int32_System_Int32_ * __this, int32_t key, MethodInfo * method)); DO_APP_FUNC(0x00FA2F40, bool, ADictionary_2_System_Int32_System_Int32__ContainsValue, (ADictionary_2_System_Int32_System_Int32_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x00FA41A0, void, ADictionary_2_System_Int32_System_Int32__CopyTo, (ADictionary_2_System_Int32_System_Int32_ * __this, KeyValuePair_2_System_Int32_System_Int32___Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F8B8, ADictionary_2_System_Int32_System_Int32__CopyTo__MethodInfo); DO_APP_FUNC(0x00FA39B0, KeyValuePair_2_System_Int32_System_Int32_, ADictionary_2_System_Int32_System_Int32__GetEntryAt, (ADictionary_2_System_Int32_System_Int32_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F8F0, ADictionary_2_System_Int32_System_Int32__GetEntryAt__MethodInfo); DO_APP_FUNC(0x00FA2F80, ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32_, ADictionary_2_System_Int32_System_Int32__GetEnumerator, (ADictionary_2_System_Int32_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FA37B0, int32_t, ADictionary_2_System_Int32_System_Int32__GetKeyAt, (ADictionary_2_System_Int32_System_Int32_ * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00FA3DD0, bool, ADictionary_2_System_Int32_System_Int32__GetNextEntry, (ADictionary_2_System_Int32_System_Int32_ * __this, int32_t index, KeyValuePair_2_System_Int32_System_Int32_ entry, MethodInfo * method)); -DO_APP_FUNC(0x00FA3C10, bool, ADictionary_2_System_Int32_System_Int32__GetNextIndex, (ADictionary_2_System_Int32_System_Int32_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F908, ADictionary_2_System_Int32_System_Int32__GetKeyAt__MethodInfo); +DO_APP_FUNC(0x00FA3DD0, bool, ADictionary_2_System_Int32_System_Int32__GetNextEntry, (ADictionary_2_System_Int32_System_Int32_ * __this, int32_t * index, KeyValuePair_2_System_Int32_System_Int32_ * entry, MethodInfo * method)); +DO_APP_FUNC(0x00FA3C10, bool, ADictionary_2_System_Int32_System_Int32__GetNextIndex, (ADictionary_2_System_Int32_System_Int32_ * __this, int32_t * index, MethodInfo * method)); DO_APP_FUNC(0x00FA3C70, int32_t, ADictionary_2_System_Int32_System_Int32__GetNextIndex_1, (ADictionary_2_System_Int32_System_Int32_ * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00FA3CD0, bool, ADictionary_2_System_Int32_System_Int32__GetNextKey, (ADictionary_2_System_Int32_System_Int32_ * __this, int32_t index, int32_t key, MethodInfo * method)); -DO_APP_FUNC(0x00FA3D50, bool, ADictionary_2_System_Int32_System_Int32__GetNextValue, (ADictionary_2_System_Int32_System_Int32_ * __this, int32_t index, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00FA4020, bool, ADictionary_2_System_Int32_System_Int32__GetPreviousEntry, (ADictionary_2_System_Int32_System_Int32_ * __this, int32_t index, KeyValuePair_2_System_Int32_System_Int32_ entry, MethodInfo * method)); -DO_APP_FUNC(0x00FA3E70, bool, ADictionary_2_System_Int32_System_Int32__GetPreviousIndex, (ADictionary_2_System_Int32_System_Int32_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00FA3CD0, bool, ADictionary_2_System_Int32_System_Int32__GetNextKey, (ADictionary_2_System_Int32_System_Int32_ * __this, int32_t * index, int32_t * key, MethodInfo * method)); +DO_APP_FUNC(0x00FA3D50, bool, ADictionary_2_System_Int32_System_Int32__GetNextValue, (ADictionary_2_System_Int32_System_Int32_ * __this, int32_t * index, int32_t * value, MethodInfo * method)); +DO_APP_FUNC(0x00FA4020, bool, ADictionary_2_System_Int32_System_Int32__GetPreviousEntry, (ADictionary_2_System_Int32_System_Int32_ * __this, int32_t * index, KeyValuePair_2_System_Int32_System_Int32_ * entry, MethodInfo * method)); +DO_APP_FUNC(0x00FA3E70, bool, ADictionary_2_System_Int32_System_Int32__GetPreviousIndex, (ADictionary_2_System_Int32_System_Int32_ * __this, int32_t * index, MethodInfo * method)); DO_APP_FUNC(0x00FA3ED0, int32_t, ADictionary_2_System_Int32_System_Int32__GetPreviousIndex_1, (ADictionary_2_System_Int32_System_Int32_ * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00FA3F20, bool, ADictionary_2_System_Int32_System_Int32__GetPreviousKey, (ADictionary_2_System_Int32_System_Int32_ * __this, int32_t index, int32_t key, MethodInfo * method)); -DO_APP_FUNC(0x00FA3FA0, bool, ADictionary_2_System_Int32_System_Int32__GetPreviousValue, (ADictionary_2_System_Int32_System_Int32_ * __this, int32_t index, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x00FA3F20, bool, ADictionary_2_System_Int32_System_Int32__GetPreviousKey, (ADictionary_2_System_Int32_System_Int32_ * __this, int32_t * index, int32_t * key, MethodInfo * method)); +DO_APP_FUNC(0x00FA3FA0, bool, ADictionary_2_System_Int32_System_Int32__GetPreviousValue, (ADictionary_2_System_Int32_System_Int32_ * __this, int32_t * index, int32_t * value, MethodInfo * method)); DO_APP_FUNC(0x00FA38B0, int32_t, ADictionary_2_System_Int32_System_Int32__GetValueAt, (ADictionary_2_System_Int32_System_Int32_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F8F8, ADictionary_2_System_Int32_System_Int32__GetValueAt__MethodInfo); DO_APP_FUNC(0x00FA3350, int32_t, ADictionary_2_System_Int32_System_Int32__GetValueSafe, (ADictionary_2_System_Int32_System_Int32_ * __this, int32_t key, MethodInfo * method)); DO_APP_FUNC(0x00FA3450, int32_t, ADictionary_2_System_Int32_System_Int32__IndexOfKey, (ADictionary_2_System_Int32_System_Int32_ * __this, int32_t key, MethodInfo * method)); DO_APP_FUNC(0x00FA3620, int32_t, ADictionary_2_System_Int32_System_Int32__IndexOfValue, (ADictionary_2_System_Int32_System_Int32_ * __this, int32_t value, MethodInfo * method)); @@ -120066,7 +132788,9 @@ DO_APP_FUNC(0x00FA4930, void, ADictionary_2_System_Int32_System_Int32__RXshytQnl DO_APP_FUNC(0x00FA49C0, void, ADictionary_2_System_Int32_System_Int32__RXshytQnlmeNgZUJYfJIoXnXfthe_1, (ADictionary_2_System_Int32_System_Int32_ * __this, int32_t param_0000c5eb, bool param_0000c5ec, MethodInfo * method)); DO_APP_FUNC(0x00FA3010, bool, ADictionary_2_System_Int32_System_Int32__Remove, (ADictionary_2_System_Int32_System_Int32_ * __this, int32_t key, MethodInfo * method)); DO_APP_FUNC(0x00FA40C0, bool, ADictionary_2_System_Int32_System_Int32__RemoveAt, (ADictionary_2_System_Int32_System_Int32_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F8C0, ADictionary_2_System_Int32_System_Int32__RemoveAt__MethodInfo); DO_APP_FUNC(0x00FA5F60, bool, ADictionary_2_System_Int32_System_Int32__SEWwbgHBQLAROdofEOGHCOsIuokPA, (Object * param_0000c5fb, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F850, ADictionary_2_System_Int32_System_Int32__SEWwbgHBQLAROdofEOGHCOsIuokPA__MethodInfo); DO_APP_FUNC(0x00FA4DA0, void, ADictionary_2_System_Int32_System_Int32__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add, (ADictionary_2_System_Int32_System_Int32_ * __this, KeyValuePair_2_System_Int32_System_Int32_ param_0000c5ed, MethodInfo * method)); DO_APP_FUNC(0x00FA4DC0, bool, ADictionary_2_System_Int32_System_Int32__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains, (ADictionary_2_System_Int32_System_Int32_ * __this, KeyValuePair_2_System_Int32_System_Int32_ param_0000c5ee, MethodInfo * method)); DO_APP_FUNC(0x00FA4F70, void, ADictionary_2_System_Int32_System_Int32__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo, (ADictionary_2_System_Int32_System_Int32_ * __this, KeyValuePair_2_System_Int32_System_Int32___Array * param_0000c5f0, int32_t param_0000c5f1, MethodInfo * method)); @@ -120076,9 +132800,11 @@ DO_APP_FUNC(0x00FA23D0, ICollection_1_System_Int32_ *, ADictionary_2_System_Int3 DO_APP_FUNC(0x00FA24A0, ICollection_1_System_Int32_ *, ADictionary_2_System_Int32_System_Int32__System_Collections_Generic_IDictionary_TKey_TValue__get_Values, (ADictionary_2_System_Int32_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FA4CB0, IEnumerator_1_KeyValuePair_2_System_Int32_System_Int32_ *, ADictionary_2_System_Int32_System_Int32__System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator, (ADictionary_2_System_Int32_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FA4F90, void, ADictionary_2_System_Int32_System_Int32__System_Collections_ICollection_CopyTo, (ADictionary_2_System_Int32_System_Int32_ * __this, Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F880, ADictionary_2_System_Int32_System_Int32__System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, ADictionary_2_System_Int32_System_Int32__System_Collections_ICollection_get_IsSynchronized, (ADictionary_2_System_Int32_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7490, Object *, ADictionary_2_System_Int32_System_Int32__System_Collections_ICollection_get_SyncRoot, (ADictionary_2_System_Int32_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FA59C0, void, ADictionary_2_System_Int32_System_Int32__System_Collections_IDictionary_Add, (ADictionary_2_System_Int32_System_Int32_ * __this, Object * key, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F858, ADictionary_2_System_Int32_System_Int32__System_Collections_IDictionary_Add__MethodInfo); DO_APP_FUNC(0x00FA5C30, bool, ADictionary_2_System_Int32_System_Int32__System_Collections_IDictionary_Contains, (ADictionary_2_System_Int32_System_Int32_ * __this, Object * key, MethodInfo * method)); DO_APP_FUNC(0x00FA5D60, IDictionaryEnumerator *, ADictionary_2_System_Int32_System_Int32__System_Collections_IDictionary_GetEnumerator, (ADictionary_2_System_Int32_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FA5E50, void, ADictionary_2_System_Int32_System_Int32__System_Collections_IDictionary_Remove, (ADictionary_2_System_Int32_System_Int32_ * __this, Object * key, MethodInfo * method)); @@ -120088,15 +132814,17 @@ DO_APP_FUNC(0x00FA55F0, Object *, ADictionary_2_System_Int32_System_Int32__Syste DO_APP_FUNC(0x00FA5590, ICollection *, ADictionary_2_System_Int32_System_Int32__System_Collections_IDictionary_get_Keys, (ADictionary_2_System_Int32_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FA55C0, ICollection *, ADictionary_2_System_Int32_System_Int32__System_Collections_IDictionary_get_Values, (ADictionary_2_System_Int32_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FA5750, void, ADictionary_2_System_Int32_System_Int32__System_Collections_IDictionary_set_Item, (ADictionary_2_System_Int32_System_Int32_ * __this, Object * key, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F890, ADictionary_2_System_Int32_System_Int32__System_Collections_IDictionary_set_Item__MethodInfo); DO_APP_FUNC(0x00FA4CB0, IEnumerator *, ADictionary_2_System_Int32_System_Int32__System_Collections_IEnumerable_GetEnumerator, (ADictionary_2_System_Int32_System_Int32_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FA3B90, bool, ADictionary_2_System_Int32_System_Int32__TryGetEntryAt, (ADictionary_2_System_Int32_System_Int32_ * __this, int32_t index, KeyValuePair_2_System_Int32_System_Int32_ entry, MethodInfo * method)); -DO_APP_FUNC(0x00FA3AD0, bool, ADictionary_2_System_Int32_System_Int32__TryGetKeyAt, (ADictionary_2_System_Int32_System_Int32_ * __this, int32_t index, int32_t key, MethodInfo * method)); -DO_APP_FUNC(0x00FA32E0, bool, ADictionary_2_System_Int32_System_Int32__TryGetValue, (ADictionary_2_System_Int32_System_Int32_ * __this, int32_t key, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00FA3B30, bool, ADictionary_2_System_Int32_System_Int32__TryGetValueAt, (ADictionary_2_System_Int32_System_Int32_ * __this, int32_t index, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x00FA3B90, bool, ADictionary_2_System_Int32_System_Int32__TryGetEntryAt, (ADictionary_2_System_Int32_System_Int32_ * __this, int32_t index, KeyValuePair_2_System_Int32_System_Int32_ * entry, MethodInfo * method)); +DO_APP_FUNC(0x00FA3AD0, bool, ADictionary_2_System_Int32_System_Int32__TryGetKeyAt, (ADictionary_2_System_Int32_System_Int32_ * __this, int32_t index, int32_t * key, MethodInfo * method)); +DO_APP_FUNC(0x00FA32E0, bool, ADictionary_2_System_Int32_System_Int32__TryGetValue, (ADictionary_2_System_Int32_System_Int32_ * __this, int32_t key, int32_t * value, MethodInfo * method)); +DO_APP_FUNC(0x00FA3B30, bool, ADictionary_2_System_Int32_System_Int32__TryGetValueAt, (ADictionary_2_System_Int32_System_Int32_ * __this, int32_t index, int32_t * value, MethodInfo * method)); DO_APP_FUNC(0x00FA23C0, int32_t, ADictionary_2_System_Int32_System_Int32__get_Count, (ADictionary_2_System_Int32_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FA33B0, int32_t, ADictionary_2_System_Int32_System_Int32__get_IndexOfFirst, (ADictionary_2_System_Int32_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FA3400, int32_t, ADictionary_2_System_Int32_System_Int32__get_IndexOfLast, (ADictionary_2_System_Int32_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FA2690, int32_t, ADictionary_2_System_Int32_System_Int32__get_Item, (ADictionary_2_System_Int32_System_Int32_ * __this, int32_t key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F910, ADictionary_2_System_Int32_System_Int32__get_Item__MethodInfo); DO_APP_FUNC(0x003C7320, IEqualityComparer_1_System_Int32_ *, ADictionary_2_System_Int32_System_Int32__get_KeyComparer, (ADictionary_2_System_Int32_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FA23D0, ADictionary_2_TKey_TValue_KeyCollection_System_Int32_System_Int32_ *, ADictionary_2_System_Int32_System_Int32__get_Keys, (ADictionary_2_System_Int32_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003CC980, int32_t, ADictionary_2_System_Int32_System_Int32__get_TotalCount, (ADictionary_2_System_Int32_System_Int32_ * __this, MethodInfo * method)); @@ -120106,6 +132834,7 @@ DO_APP_FUNC(0x00FA27A0, void, ADictionary_2_System_Int32_System_Int32__set_Item, DO_APP_FUNC(0x00FA2570, void, ADictionary_2_System_Int32_System_Int32__set_KeyComparer, (ADictionary_2_System_Int32_System_Int32_ * __this, IEqualityComparer_1_System_Int32_ * value, MethodInfo * method)); DO_APP_FUNC(0x00FA2600, void, ADictionary_2_System_Int32_System_Int32__set_ValueComparer, (ADictionary_2_System_Int32_System_Int32_ * __this, IEqualityComparer_1_System_Int32_ * value, MethodInfo * method)); DO_APP_FUNC(0x00FA4560, void, ADictionary_2_System_Int32_System_Int32__xWtHrTSuscpEZQwphRXafQBqQlMJ, (ADictionary_2_System_Int32_System_Int32_ * __this, int32_t param_0000c5e8, int32_t param_0000c5e9, bool param_0000c5ea, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F8D0, ADictionary_2_System_Int32_System_Int32__xWtHrTSuscpEZQwphRXafQBqQlMJ__MethodInfo); DO_APP_FUNC(0x00A8C430, void, ADictionary_2_System_Int32_System_Object__AoRSVrhVZVojMyCPSJVQbMSwlsoA, (Object * param_0000c5fc, String * param_0000c5fd, MethodInfo * method)); DO_APP_FUNC(0x00FA98C0, void, ADictionary_2_System_Int32_System_Object___cctor, (MethodInfo * method)); DO_APP_FUNC(0x00FA27D0, void, ADictionary_2_System_Int32_System_Object___ctor, (ADictionary_2_System_Int32_System_Object_ * __this, MethodInfo * method)); @@ -120116,26 +132845,32 @@ DO_APP_FUNC(0x00FA2B40, void, ADictionary_2_System_Int32_System_Object___ctor_4, DO_APP_FUNC(0x00FA2830, void, ADictionary_2_System_Int32_System_Object___ctor_5, (ADictionary_2_System_Int32_System_Object_ * __this, IEqualityComparer_1_System_Int32_ * param_0000c5b2, IEqualityComparer_1_System_Object_ * param_0000c5b3, MethodInfo * method)); DO_APP_FUNC(0x00FA2890, void, ADictionary_2_System_Int32_System_Object___ctor_6, (ADictionary_2_System_Int32_System_Object_ * __this, int32_t param_0000c5b5, IEqualityComparer_1_System_Int32_ * param_0000c5b6, MethodInfo * method)); DO_APP_FUNC(0x00FA64E0, void, ADictionary_2_System_Int32_System_Object___ctor_7, (ADictionary_2_System_Int32_System_Object_ * __this, IDictionary_2_System_Int32_System_Object_ * param_0000c5bd, IEqualityComparer_1_System_Int32_ * param_0000c5be, IEqualityComparer_1_System_Object_ * param_0000c5bf, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F840, ADictionary_2_System_Int32_System_Object___ctor_7__MethodInfo); DO_APP_FUNC(0x00FA6290, void, ADictionary_2_System_Int32_System_Object___ctor_8, (ADictionary_2_System_Int32_System_Object_ * __this, int32_t param_0000c5b7, IEqualityComparer_1_System_Int32_ * param_0000c5b8, IEqualityComparer_1_System_Object_ * param_0000c5b9, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F820, ADictionary_2_System_Int32_System_Object___ctor_8__MethodInfo); DO_APP_FUNC(0x00FA2E40, void, ADictionary_2_System_Int32_System_Object__Add, (ADictionary_2_System_Int32_System_Object_ * __this, int32_t key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x00FA2E70, void, ADictionary_2_System_Int32_System_Object__Clear, (ADictionary_2_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FA2F00, bool, ADictionary_2_System_Int32_System_Object__ContainsKey, (ADictionary_2_System_Int32_System_Object_ * __this, int32_t key, MethodInfo * method)); DO_APP_FUNC(0x00FA2F40, bool, ADictionary_2_System_Int32_System_Object__ContainsValue, (ADictionary_2_System_Int32_System_Object_ * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x00FA7C40, void, ADictionary_2_System_Int32_System_Object__CopyTo, (ADictionary_2_System_Int32_System_Object_ * __this, KeyValuePair_2_System_Int32_System_Object___Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F7E8, ADictionary_2_System_Int32_System_Object__CopyTo__MethodInfo); DO_APP_FUNC(0x00FA72A0, KeyValuePair_2_System_Int32_System_Object_, ADictionary_2_System_Int32_System_Object__GetEntryAt, (ADictionary_2_System_Int32_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F7F8, ADictionary_2_System_Int32_System_Object__GetEntryAt__MethodInfo); DO_APP_FUNC(0x00FA67D0, ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object_, ADictionary_2_System_Int32_System_Object__GetEnumerator, (ADictionary_2_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FA70B0, int32_t, ADictionary_2_System_Int32_System_Object__GetKeyAt, (ADictionary_2_System_Int32_System_Object_ * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00FA7800, bool, ADictionary_2_System_Int32_System_Object__GetNextEntry, (ADictionary_2_System_Int32_System_Object_ * __this, int32_t index, KeyValuePair_2_System_Int32_System_Object_ entry, MethodInfo * method)); -DO_APP_FUNC(0x00FA7630, bool, ADictionary_2_System_Int32_System_Object__GetNextIndex, (ADictionary_2_System_Int32_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F830, ADictionary_2_System_Int32_System_Object__GetKeyAt__MethodInfo); +DO_APP_FUNC(0x00FA7800, bool, ADictionary_2_System_Int32_System_Object__GetNextEntry, (ADictionary_2_System_Int32_System_Object_ * __this, int32_t * index, KeyValuePair_2_System_Int32_System_Object_ * entry, MethodInfo * method)); +DO_APP_FUNC(0x00FA7630, bool, ADictionary_2_System_Int32_System_Object__GetNextIndex, (ADictionary_2_System_Int32_System_Object_ * __this, int32_t * index, MethodInfo * method)); DO_APP_FUNC(0x00FA7690, int32_t, ADictionary_2_System_Int32_System_Object__GetNextIndex_1, (ADictionary_2_System_Int32_System_Object_ * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00FA76F0, bool, ADictionary_2_System_Int32_System_Object__GetNextKey, (ADictionary_2_System_Int32_System_Object_ * __this, int32_t index, int32_t key, MethodInfo * method)); -DO_APP_FUNC(0x00FA7770, bool, ADictionary_2_System_Int32_System_Object__GetNextValue, (ADictionary_2_System_Int32_System_Object_ * __this, int32_t index, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x00FA7AA0, bool, ADictionary_2_System_Int32_System_Object__GetPreviousEntry, (ADictionary_2_System_Int32_System_Object_ * __this, int32_t index, KeyValuePair_2_System_Int32_System_Object_ entry, MethodInfo * method)); -DO_APP_FUNC(0x00FA78E0, bool, ADictionary_2_System_Int32_System_Object__GetPreviousIndex, (ADictionary_2_System_Int32_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00FA76F0, bool, ADictionary_2_System_Int32_System_Object__GetNextKey, (ADictionary_2_System_Int32_System_Object_ * __this, int32_t * index, int32_t * key, MethodInfo * method)); +DO_APP_FUNC(0x00FA7770, bool, ADictionary_2_System_Int32_System_Object__GetNextValue, (ADictionary_2_System_Int32_System_Object_ * __this, int32_t * index, Object * * value, MethodInfo * method)); +DO_APP_FUNC(0x00FA7AA0, bool, ADictionary_2_System_Int32_System_Object__GetPreviousEntry, (ADictionary_2_System_Int32_System_Object_ * __this, int32_t * index, KeyValuePair_2_System_Int32_System_Object_ * entry, MethodInfo * method)); +DO_APP_FUNC(0x00FA78E0, bool, ADictionary_2_System_Int32_System_Object__GetPreviousIndex, (ADictionary_2_System_Int32_System_Object_ * __this, int32_t * index, MethodInfo * method)); DO_APP_FUNC(0x00FA7940, int32_t, ADictionary_2_System_Int32_System_Object__GetPreviousIndex_1, (ADictionary_2_System_Int32_System_Object_ * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00FA7990, bool, ADictionary_2_System_Int32_System_Object__GetPreviousKey, (ADictionary_2_System_Int32_System_Object_ * __this, int32_t index, int32_t key, MethodInfo * method)); -DO_APP_FUNC(0x00FA7A10, bool, ADictionary_2_System_Int32_System_Object__GetPreviousValue, (ADictionary_2_System_Int32_System_Object_ * __this, int32_t index, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x00FA7990, bool, ADictionary_2_System_Int32_System_Object__GetPreviousKey, (ADictionary_2_System_Int32_System_Object_ * __this, int32_t * index, int32_t * key, MethodInfo * method)); +DO_APP_FUNC(0x00FA7A10, bool, ADictionary_2_System_Int32_System_Object__GetPreviousValue, (ADictionary_2_System_Int32_System_Object_ * __this, int32_t * index, Object * * value, MethodInfo * method)); DO_APP_FUNC(0x00FA71A0, Object *, ADictionary_2_System_Int32_System_Object__GetValueAt, (ADictionary_2_System_Int32_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F800, ADictionary_2_System_Int32_System_Object__GetValueAt__MethodInfo); DO_APP_FUNC(0x00FA6BF0, Object *, ADictionary_2_System_Int32_System_Object__GetValueSafe, (ADictionary_2_System_Int32_System_Object_ * __this, int32_t key, MethodInfo * method)); DO_APP_FUNC(0x00FA6CF0, int32_t, ADictionary_2_System_Int32_System_Object__IndexOfKey, (ADictionary_2_System_Int32_System_Object_ * __this, int32_t key, MethodInfo * method)); DO_APP_FUNC(0x00FA6EC0, int32_t, ADictionary_2_System_Int32_System_Object__IndexOfValue, (ADictionary_2_System_Int32_System_Object_ * __this, Object * value, MethodInfo * method)); @@ -120145,7 +132880,9 @@ DO_APP_FUNC(0x00FA84B0, void, ADictionary_2_System_Int32_System_Object__RXshytQn DO_APP_FUNC(0x00FA8540, void, ADictionary_2_System_Int32_System_Object__RXshytQnlmeNgZUJYfJIoXnXfthe_1, (ADictionary_2_System_Int32_System_Object_ * __this, int32_t param_0000c5eb, bool param_0000c5ec, MethodInfo * method)); DO_APP_FUNC(0x00FA6860, bool, ADictionary_2_System_Int32_System_Object__Remove, (ADictionary_2_System_Int32_System_Object_ * __this, int32_t key, MethodInfo * method)); DO_APP_FUNC(0x00FA7B70, bool, ADictionary_2_System_Int32_System_Object__RemoveAt, (ADictionary_2_System_Int32_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F7F0, ADictionary_2_System_Int32_System_Object__RemoveAt__MethodInfo); DO_APP_FUNC(0x00FA9810, bool, ADictionary_2_System_Int32_System_Object__SEWwbgHBQLAROdofEOGHCOsIuokPA, (Object * param_0000c5fb, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F7C8, ADictionary_2_System_Int32_System_Object__SEWwbgHBQLAROdofEOGHCOsIuokPA__MethodInfo); DO_APP_FUNC(0x00FA8910, void, ADictionary_2_System_Int32_System_Object__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add, (ADictionary_2_System_Int32_System_Object_ * __this, KeyValuePair_2_System_Int32_System_Object_ param_0000c5ed, MethodInfo * method)); DO_APP_FUNC(0x00FA8930, bool, ADictionary_2_System_Int32_System_Object__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains, (ADictionary_2_System_Int32_System_Object_ * __this, KeyValuePair_2_System_Int32_System_Object_ param_0000c5ee, MethodInfo * method)); DO_APP_FUNC(0x00FA4F70, void, ADictionary_2_System_Int32_System_Object__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo, (ADictionary_2_System_Int32_System_Object_ * __this, KeyValuePair_2_System_Int32_System_Object___Array * param_0000c5f0, int32_t param_0000c5f1, MethodInfo * method)); @@ -120155,9 +132892,11 @@ DO_APP_FUNC(0x00FA23D0, ICollection_1_System_Int32_ *, ADictionary_2_System_Int3 DO_APP_FUNC(0x00FA24A0, ICollection_1_System_Object_ *, ADictionary_2_System_Int32_System_Object__System_Collections_Generic_IDictionary_TKey_TValue__get_Values, (ADictionary_2_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FA8820, IEnumerator_1_KeyValuePair_2_System_Int32_System_Object_ *, ADictionary_2_System_Int32_System_Object__System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator, (ADictionary_2_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FA8B10, void, ADictionary_2_System_Int32_System_Object__System_Collections_ICollection_CopyTo, (ADictionary_2_System_Int32_System_Object_ * __this, Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F7E0, ADictionary_2_System_Int32_System_Object__System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, ADictionary_2_System_Int32_System_Object__System_Collections_ICollection_get_IsSynchronized, (ADictionary_2_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7490, Object *, ADictionary_2_System_Int32_System_Object__System_Collections_ICollection_get_SyncRoot, (ADictionary_2_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FA94A0, void, ADictionary_2_System_Int32_System_Object__System_Collections_IDictionary_Add, (ADictionary_2_System_Int32_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F7A0, ADictionary_2_System_Int32_System_Object__System_Collections_IDictionary_Add__MethodInfo); DO_APP_FUNC(0x00FA5C30, bool, ADictionary_2_System_Int32_System_Object__System_Collections_IDictionary_Contains, (ADictionary_2_System_Int32_System_Object_ * __this, Object * key, MethodInfo * method)); DO_APP_FUNC(0x00FA9720, IDictionaryEnumerator *, ADictionary_2_System_Int32_System_Object__System_Collections_IDictionary_GetEnumerator, (ADictionary_2_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FA5E50, void, ADictionary_2_System_Int32_System_Object__System_Collections_IDictionary_Remove, (ADictionary_2_System_Int32_System_Object_ * __this, Object * key, MethodInfo * method)); @@ -120167,15 +132906,17 @@ DO_APP_FUNC(0x00FA90E0, Object *, ADictionary_2_System_Int32_System_Object__Syst DO_APP_FUNC(0x00FA5590, ICollection *, ADictionary_2_System_Int32_System_Object__System_Collections_IDictionary_get_Keys, (ADictionary_2_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FA55C0, ICollection *, ADictionary_2_System_Int32_System_Object__System_Collections_IDictionary_get_Values, (ADictionary_2_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FA9220, void, ADictionary_2_System_Int32_System_Object__System_Collections_IDictionary_set_Item, (ADictionary_2_System_Int32_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F7B0, ADictionary_2_System_Int32_System_Object__System_Collections_IDictionary_set_Item__MethodInfo); DO_APP_FUNC(0x00FA8820, IEnumerator *, ADictionary_2_System_Int32_System_Object__System_Collections_IEnumerable_GetEnumerator, (ADictionary_2_System_Int32_System_Object_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FA74D0, bool, ADictionary_2_System_Int32_System_Object__TryGetEntryAt, (ADictionary_2_System_Int32_System_Object_ * __this, int32_t index, KeyValuePair_2_System_Int32_System_Object_ entry, MethodInfo * method)); -DO_APP_FUNC(0x00FA73D0, bool, ADictionary_2_System_Int32_System_Object__TryGetKeyAt, (ADictionary_2_System_Int32_System_Object_ * __this, int32_t index, int32_t key, MethodInfo * method)); -DO_APP_FUNC(0x00FA6B40, bool, ADictionary_2_System_Int32_System_Object__TryGetValue, (ADictionary_2_System_Int32_System_Object_ * __this, int32_t key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x00FA7430, bool, ADictionary_2_System_Int32_System_Object__TryGetValueAt, (ADictionary_2_System_Int32_System_Object_ * __this, int32_t index, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x00FA74D0, bool, ADictionary_2_System_Int32_System_Object__TryGetEntryAt, (ADictionary_2_System_Int32_System_Object_ * __this, int32_t index, KeyValuePair_2_System_Int32_System_Object_ * entry, MethodInfo * method)); +DO_APP_FUNC(0x00FA73D0, bool, ADictionary_2_System_Int32_System_Object__TryGetKeyAt, (ADictionary_2_System_Int32_System_Object_ * __this, int32_t index, int32_t * key, MethodInfo * method)); +DO_APP_FUNC(0x00FA6B40, bool, ADictionary_2_System_Int32_System_Object__TryGetValue, (ADictionary_2_System_Int32_System_Object_ * __this, int32_t key, Object * * value, MethodInfo * method)); +DO_APP_FUNC(0x00FA7430, bool, ADictionary_2_System_Int32_System_Object__TryGetValueAt, (ADictionary_2_System_Int32_System_Object_ * __this, int32_t index, Object * * value, MethodInfo * method)); DO_APP_FUNC(0x00FA23C0, int32_t, ADictionary_2_System_Int32_System_Object__get_Count, (ADictionary_2_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FA6C50, int32_t, ADictionary_2_System_Int32_System_Object__get_IndexOfFirst, (ADictionary_2_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FA6CA0, int32_t, ADictionary_2_System_Int32_System_Object__get_IndexOfLast, (ADictionary_2_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FA6180, Object *, ADictionary_2_System_Int32_System_Object__get_Item, (ADictionary_2_System_Int32_System_Object_ * __this, int32_t key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F870, ADictionary_2_System_Int32_System_Object__get_Item__MethodInfo); DO_APP_FUNC(0x003C7320, IEqualityComparer_1_System_Int32_ *, ADictionary_2_System_Int32_System_Object__get_KeyComparer, (ADictionary_2_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FA23D0, ADictionary_2_TKey_TValue_KeyCollection_System_Int32_System_Object_ *, ADictionary_2_System_Int32_System_Object__get_Keys, (ADictionary_2_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003CC980, int32_t, ADictionary_2_System_Int32_System_Object__get_TotalCount, (ADictionary_2_System_Int32_System_Object_ * __this, MethodInfo * method)); @@ -120185,6 +132926,7 @@ DO_APP_FUNC(0x00FA27A0, void, ADictionary_2_System_Int32_System_Object__set_Item DO_APP_FUNC(0x00FA2570, void, ADictionary_2_System_Int32_System_Object__set_KeyComparer, (ADictionary_2_System_Int32_System_Object_ * __this, IEqualityComparer_1_System_Int32_ * value, MethodInfo * method)); DO_APP_FUNC(0x00FA2600, void, ADictionary_2_System_Int32_System_Object__set_ValueComparer, (ADictionary_2_System_Int32_System_Object_ * __this, IEqualityComparer_1_System_Object_ * value, MethodInfo * method)); DO_APP_FUNC(0x00FA8060, void, ADictionary_2_System_Int32_System_Object__xWtHrTSuscpEZQwphRXafQBqQlMJ, (ADictionary_2_System_Int32_System_Object_ * __this, int32_t param_0000c5e8, Object * param_0000c5e9, bool param_0000c5ea, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F810, ADictionary_2_System_Int32_System_Object__xWtHrTSuscpEZQwphRXafQBqQlMJ__MethodInfo); DO_APP_FUNC(0x00C67ED0, void, ADictionary_2_System_Object_System_Int32__AoRSVrhVZVojMyCPSJVQbMSwlsoA, (Object * param_0000c5fc, String * param_0000c5fd, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C98630, ADictionary_2_System_Object_System_Int32__AoRSVrhVZVojMyCPSJVQbMSwlsoA__MethodInfo); DO_APP_FUNC(0x00FACFD0, void, ADictionary_2_System_Object_System_Int32___cctor, (MethodInfo * method)); @@ -120196,36 +132938,46 @@ DO_APP_FUNC(0x00FA2B40, void, ADictionary_2_System_Object_System_Int32___ctor_4, DO_APP_FUNC(0x00FA2830, void, ADictionary_2_System_Object_System_Int32___ctor_5, (ADictionary_2_System_Object_System_Int32_ * __this, IEqualityComparer_1_System_Object_ * param_0000c5b2, IEqualityComparer_1_System_Int32_ * param_0000c5b3, MethodInfo * method)); DO_APP_FUNC(0x00FA2890, void, ADictionary_2_System_Object_System_Int32___ctor_6, (ADictionary_2_System_Object_System_Int32_ * __this, int32_t param_0000c5b5, IEqualityComparer_1_System_Object_ * param_0000c5b6, MethodInfo * method)); DO_APP_FUNC(0x00FA9D90, void, ADictionary_2_System_Object_System_Int32___ctor_7, (ADictionary_2_System_Object_System_Int32_ * __this, IDictionary_2_System_Object_System_Int32_ * param_0000c5bd, IEqualityComparer_1_System_Object_ * param_0000c5be, IEqualityComparer_1_System_Int32_ * param_0000c5bf, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F790, ADictionary_2_System_Object_System_Int32___ctor_7__MethodInfo); DO_APP_FUNC(0x00FA9B40, void, ADictionary_2_System_Object_System_Int32___ctor_8, (ADictionary_2_System_Object_System_Int32_ * __this, int32_t param_0000c5b7, IEqualityComparer_1_System_Object_ * param_0000c5b8, IEqualityComparer_1_System_Int32_ * param_0000c5b9, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F778, ADictionary_2_System_Object_System_Int32___ctor_8__MethodInfo); DO_APP_FUNC(0x00FA2E40, void, ADictionary_2_System_Object_System_Int32__Add, (ADictionary_2_System_Object_System_Int32_ * __this, Object * key, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x00FA2E70, void, ADictionary_2_System_Object_System_Int32__Clear, (ADictionary_2_System_Object_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FA2F00, bool, ADictionary_2_System_Object_System_Int32__ContainsKey, (ADictionary_2_System_Object_System_Int32_ * __this, Object * key, MethodInfo * method)); DO_APP_FUNC(0x00FA2F40, bool, ADictionary_2_System_Object_System_Int32__ContainsValue, (ADictionary_2_System_Object_System_Int32_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x00FAB250, void, ADictionary_2_System_Object_System_Int32__CopyTo, (ADictionary_2_System_Object_System_Int32_ * __this, KeyValuePair_2_System_Object_System_Int32___Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F770, ADictionary_2_System_Object_System_Int32__CopyTo__MethodInfo); DO_APP_FUNC(0x00FAAA20, KeyValuePair_2_System_Object_System_Int32_, ADictionary_2_System_Object_System_Int32__GetEntryAt, (ADictionary_2_System_Object_System_Int32_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F728, ADictionary_2_System_Object_System_Int32__GetEntryAt__MethodInfo); DO_APP_FUNC(0x00FA67D0, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32_, ADictionary_2_System_Object_System_Int32__GetEnumerator, (ADictionary_2_System_Object_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FAA830, Object *, ADictionary_2_System_Object_System_Int32__GetKeyAt, (ADictionary_2_System_Object_System_Int32_ * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00FAAEC0, bool, ADictionary_2_System_Object_System_Int32__GetNextEntry, (ADictionary_2_System_Object_System_Int32_ * __this, int32_t index, KeyValuePair_2_System_Object_System_Int32_ entry, MethodInfo * method)); -DO_APP_FUNC(0x00FA7630, bool, ADictionary_2_System_Object_System_Int32__GetNextIndex, (ADictionary_2_System_Object_System_Int32_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F738, ADictionary_2_System_Object_System_Int32__GetKeyAt__MethodInfo); +DO_APP_FUNC(0x00FAAEC0, bool, ADictionary_2_System_Object_System_Int32__GetNextEntry, (ADictionary_2_System_Object_System_Int32_ * __this, int32_t * index, KeyValuePair_2_System_Object_System_Int32_ * entry, MethodInfo * method)); +DO_APP_FUNC(0x00FA7630, bool, ADictionary_2_System_Object_System_Int32__GetNextIndex, (ADictionary_2_System_Object_System_Int32_ * __this, int32_t * index, MethodInfo * method)); DO_APP_FUNC(0x00FA7690, int32_t, ADictionary_2_System_Object_System_Int32__GetNextIndex_1, (ADictionary_2_System_Object_System_Int32_ * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00FAADA0, bool, ADictionary_2_System_Object_System_Int32__GetNextKey, (ADictionary_2_System_Object_System_Int32_ * __this, int32_t index, Object * key, MethodInfo * method)); -DO_APP_FUNC(0x00FAAE30, bool, ADictionary_2_System_Object_System_Int32__GetNextValue, (ADictionary_2_System_Object_System_Int32_ * __this, int32_t index, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00FAB0B0, bool, ADictionary_2_System_Object_System_Int32__GetPreviousEntry, (ADictionary_2_System_Object_System_Int32_ * __this, int32_t index, KeyValuePair_2_System_Object_System_Int32_ entry, MethodInfo * method)); -DO_APP_FUNC(0x00FA78E0, bool, ADictionary_2_System_Object_System_Int32__GetPreviousIndex, (ADictionary_2_System_Object_System_Int32_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00FAADA0, bool, ADictionary_2_System_Object_System_Int32__GetNextKey, (ADictionary_2_System_Object_System_Int32_ * __this, int32_t * index, Object * * key, MethodInfo * method)); +DO_APP_FUNC(0x00FAAE30, bool, ADictionary_2_System_Object_System_Int32__GetNextValue, (ADictionary_2_System_Object_System_Int32_ * __this, int32_t * index, int32_t * value, MethodInfo * method)); +DO_APP_FUNC(0x00FAB0B0, bool, ADictionary_2_System_Object_System_Int32__GetPreviousEntry, (ADictionary_2_System_Object_System_Int32_ * __this, int32_t * index, KeyValuePair_2_System_Object_System_Int32_ * entry, MethodInfo * method)); +DO_APP_FUNC(0x00FA78E0, bool, ADictionary_2_System_Object_System_Int32__GetPreviousIndex, (ADictionary_2_System_Object_System_Int32_ * __this, int32_t * index, MethodInfo * method)); DO_APP_FUNC(0x00FA7940, int32_t, ADictionary_2_System_Object_System_Int32__GetPreviousIndex_1, (ADictionary_2_System_Object_System_Int32_ * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00FAAFA0, bool, ADictionary_2_System_Object_System_Int32__GetPreviousKey, (ADictionary_2_System_Object_System_Int32_ * __this, int32_t index, Object * key, MethodInfo * method)); -DO_APP_FUNC(0x00FAB030, bool, ADictionary_2_System_Object_System_Int32__GetPreviousValue, (ADictionary_2_System_Object_System_Int32_ * __this, int32_t index, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x00FAAFA0, bool, ADictionary_2_System_Object_System_Int32__GetPreviousKey, (ADictionary_2_System_Object_System_Int32_ * __this, int32_t * index, Object * * key, MethodInfo * method)); +DO_APP_FUNC(0x00FAB030, bool, ADictionary_2_System_Object_System_Int32__GetPreviousValue, (ADictionary_2_System_Object_System_Int32_ * __this, int32_t * index, int32_t * value, MethodInfo * method)); DO_APP_FUNC(0x00FAA920, int32_t, ADictionary_2_System_Object_System_Int32__GetValueAt, (ADictionary_2_System_Object_System_Int32_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F730, ADictionary_2_System_Object_System_Int32__GetValueAt__MethodInfo); DO_APP_FUNC(0x00FAA450, int32_t, ADictionary_2_System_Object_System_Int32__GetValueSafe, (ADictionary_2_System_Object_System_Int32_ * __this, Object * key, MethodInfo * method)); DO_APP_FUNC(0x00FAA4B0, int32_t, ADictionary_2_System_Object_System_Int32__IndexOfKey, (ADictionary_2_System_Object_System_Int32_ * __this, Object * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F780, ADictionary_2_System_Object_System_Int32__IndexOfKey__MethodInfo); DO_APP_FUNC(0x00FAA6F0, int32_t, ADictionary_2_System_Object_System_Int32__IndexOfValue, (ADictionary_2_System_Object_System_Int32_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x00FA7060, bool, ADictionary_2_System_Object_System_Int32__IsValidAt, (ADictionary_2_System_Object_System_Int32_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x00FAB480, void, ADictionary_2_System_Object_System_Int32__LIeljCbdoWdgBAecluMnblrpCnHu, (ADictionary_2_System_Object_System_Int32_ * __this, int32_t param_0000c5e7, MethodInfo * method)); DO_APP_FUNC(0x00FABB10, void, ADictionary_2_System_Object_System_Int32__RXshytQnlmeNgZUJYfJIoXnXfthe, (ADictionary_2_System_Object_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FABBA0, void, ADictionary_2_System_Object_System_Int32__RXshytQnlmeNgZUJYfJIoXnXfthe_1, (ADictionary_2_System_Object_System_Int32_ * __this, int32_t param_0000c5eb, bool param_0000c5ec, MethodInfo * method)); DO_APP_FUNC(0x00FAA080, bool, ADictionary_2_System_Object_System_Int32__Remove, (ADictionary_2_System_Object_System_Int32_ * __this, Object * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F788, ADictionary_2_System_Object_System_Int32__Remove__MethodInfo); DO_APP_FUNC(0x00FAB180, bool, ADictionary_2_System_Object_System_Int32__RemoveAt, (ADictionary_2_System_Object_System_Int32_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F720, ADictionary_2_System_Object_System_Int32__RemoveAt__MethodInfo); DO_APP_FUNC(0x00FACF20, bool, ADictionary_2_System_Object_System_Int32__SEWwbgHBQLAROdofEOGHCOsIuokPA, (Object * param_0000c5fb, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F6F8, ADictionary_2_System_Object_System_Int32__SEWwbgHBQLAROdofEOGHCOsIuokPA__MethodInfo); DO_APP_FUNC(0x00FABE80, void, ADictionary_2_System_Object_System_Int32__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add, (ADictionary_2_System_Object_System_Int32_ * __this, KeyValuePair_2_System_Object_System_Int32_ param_0000c5ed, MethodInfo * method)); DO_APP_FUNC(0x00FABEA0, bool, ADictionary_2_System_Object_System_Int32__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains, (ADictionary_2_System_Object_System_Int32_ * __this, KeyValuePair_2_System_Object_System_Int32_ param_0000c5ee, MethodInfo * method)); DO_APP_FUNC(0x00FA4F70, void, ADictionary_2_System_Object_System_Int32__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo, (ADictionary_2_System_Object_System_Int32_ * __this, KeyValuePair_2_System_Object_System_Int32___Array * param_0000c5f0, int32_t param_0000c5f1, MethodInfo * method)); @@ -120235,9 +132987,11 @@ DO_APP_FUNC(0x00FA23D0, ICollection_1_System_Object_ *, ADictionary_2_System_Obj DO_APP_FUNC(0x00FA24A0, ICollection_1_System_Int32_ *, ADictionary_2_System_Object_System_Int32__System_Collections_Generic_IDictionary_TKey_TValue__get_Values, (ADictionary_2_System_Object_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FA8820, IEnumerator_1_KeyValuePair_2_System_Object_System_Int32_ *, ADictionary_2_System_Object_System_Int32__System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator, (ADictionary_2_System_Object_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FAC080, void, ADictionary_2_System_Object_System_Int32__System_Collections_ICollection_CopyTo, (ADictionary_2_System_Object_System_Int32_ * __this, Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F710, ADictionary_2_System_Object_System_Int32__System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, ADictionary_2_System_Object_System_Int32__System_Collections_ICollection_get_IsSynchronized, (ADictionary_2_System_Object_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7490, Object *, ADictionary_2_System_Object_System_Int32__System_Collections_ICollection_get_SyncRoot, (ADictionary_2_System_Object_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FACA50, void, ADictionary_2_System_Object_System_Int32__System_Collections_IDictionary_Add, (ADictionary_2_System_Object_System_Int32_ * __this, Object * key, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F708, ADictionary_2_System_Object_System_Int32__System_Collections_IDictionary_Add__MethodInfo); DO_APP_FUNC(0x00FACCD0, bool, ADictionary_2_System_Object_System_Int32__System_Collections_IDictionary_Contains, (ADictionary_2_System_Object_System_Int32_ * __this, Object * key, MethodInfo * method)); DO_APP_FUNC(0x00FA9720, IDictionaryEnumerator *, ADictionary_2_System_Object_System_Int32__System_Collections_IDictionary_GetEnumerator, (ADictionary_2_System_Object_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FACE00, void, ADictionary_2_System_Object_System_Int32__System_Collections_IDictionary_Remove, (ADictionary_2_System_Object_System_Int32_ * __this, Object * key, MethodInfo * method)); @@ -120247,15 +133001,17 @@ DO_APP_FUNC(0x00FAC650, Object *, ADictionary_2_System_Object_System_Int32__Syst DO_APP_FUNC(0x00FA5590, ICollection *, ADictionary_2_System_Object_System_Int32__System_Collections_IDictionary_get_Keys, (ADictionary_2_System_Object_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FA55C0, ICollection *, ADictionary_2_System_Object_System_Int32__System_Collections_IDictionary_get_Values, (ADictionary_2_System_Object_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FAC7D0, void, ADictionary_2_System_Object_System_Int32__System_Collections_IDictionary_set_Item, (ADictionary_2_System_Object_System_Int32_ * __this, Object * key, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F6D8, ADictionary_2_System_Object_System_Int32__System_Collections_IDictionary_set_Item__MethodInfo); DO_APP_FUNC(0x00FA8820, IEnumerator *, ADictionary_2_System_Object_System_Int32__System_Collections_IEnumerable_GetEnumerator, (ADictionary_2_System_Object_System_Int32_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FAAC50, bool, ADictionary_2_System_Object_System_Int32__TryGetEntryAt, (ADictionary_2_System_Object_System_Int32_ * __this, int32_t index, KeyValuePair_2_System_Object_System_Int32_ entry, MethodInfo * method)); -DO_APP_FUNC(0x00FAAB50, bool, ADictionary_2_System_Object_System_Int32__TryGetKeyAt, (ADictionary_2_System_Object_System_Int32_ * __this, int32_t index, Object * key, MethodInfo * method)); -DO_APP_FUNC(0x00FAA3E0, bool, ADictionary_2_System_Object_System_Int32__TryGetValue, (ADictionary_2_System_Object_System_Int32_ * __this, Object * key, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00FAABF0, bool, ADictionary_2_System_Object_System_Int32__TryGetValueAt, (ADictionary_2_System_Object_System_Int32_ * __this, int32_t index, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x00FAAC50, bool, ADictionary_2_System_Object_System_Int32__TryGetEntryAt, (ADictionary_2_System_Object_System_Int32_ * __this, int32_t index, KeyValuePair_2_System_Object_System_Int32_ * entry, MethodInfo * method)); +DO_APP_FUNC(0x00FAAB50, bool, ADictionary_2_System_Object_System_Int32__TryGetKeyAt, (ADictionary_2_System_Object_System_Int32_ * __this, int32_t index, Object * * key, MethodInfo * method)); +DO_APP_FUNC(0x00FAA3E0, bool, ADictionary_2_System_Object_System_Int32__TryGetValue, (ADictionary_2_System_Object_System_Int32_ * __this, Object * key, int32_t * value, MethodInfo * method)); +DO_APP_FUNC(0x00FAABF0, bool, ADictionary_2_System_Object_System_Int32__TryGetValueAt, (ADictionary_2_System_Object_System_Int32_ * __this, int32_t index, int32_t * value, MethodInfo * method)); DO_APP_FUNC(0x00FA23C0, int32_t, ADictionary_2_System_Object_System_Int32__get_Count, (ADictionary_2_System_Object_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FA6C50, int32_t, ADictionary_2_System_Object_System_Int32__get_IndexOfFirst, (ADictionary_2_System_Object_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FA6CA0, int32_t, ADictionary_2_System_Object_System_Int32__get_IndexOfLast, (ADictionary_2_System_Object_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FA9A30, int32_t, ADictionary_2_System_Object_System_Int32__get_Item, (ADictionary_2_System_Object_System_Int32_ * __this, Object * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F7B8, ADictionary_2_System_Object_System_Int32__get_Item__MethodInfo); DO_APP_FUNC(0x003C7320, IEqualityComparer_1_System_Object_ *, ADictionary_2_System_Object_System_Int32__get_KeyComparer, (ADictionary_2_System_Object_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FA23D0, ADictionary_2_TKey_TValue_KeyCollection_System_Object_System_Int32_ *, ADictionary_2_System_Object_System_Int32__get_Keys, (ADictionary_2_System_Object_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003CC980, int32_t, ADictionary_2_System_Object_System_Int32__get_TotalCount, (ADictionary_2_System_Object_System_Int32_ * __this, MethodInfo * method)); @@ -120265,6 +133021,7 @@ DO_APP_FUNC(0x00FA27A0, void, ADictionary_2_System_Object_System_Int32__set_Item DO_APP_FUNC(0x00FA2570, void, ADictionary_2_System_Object_System_Int32__set_KeyComparer, (ADictionary_2_System_Object_System_Int32_ * __this, IEqualityComparer_1_System_Object_ * value, MethodInfo * method)); DO_APP_FUNC(0x00FA2600, void, ADictionary_2_System_Object_System_Int32__set_ValueComparer, (ADictionary_2_System_Object_System_Int32_ * __this, IEqualityComparer_1_System_Int32_ * value, MethodInfo * method)); DO_APP_FUNC(0x00FAB660, void, ADictionary_2_System_Object_System_Int32__xWtHrTSuscpEZQwphRXafQBqQlMJ, (ADictionary_2_System_Object_System_Int32_ * __this, Object * param_0000c5e8, int32_t param_0000c5e9, bool param_0000c5ea, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F750, ADictionary_2_System_Object_System_Int32__xWtHrTSuscpEZQwphRXafQBqQlMJ__MethodInfo); DO_APP_FUNC(0x00C67F30, void, ADictionary_2_System_Object_System_Int32Enum__AoRSVrhVZVojMyCPSJVQbMSwlsoA, (Object * param_0000c5fc, String * param_0000c5fd, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C98638, ADictionary_2_System_Object_System_Int32Enum__AoRSVrhVZVojMyCPSJVQbMSwlsoA__MethodInfo); DO_APP_FUNC(0x00FAF8D0, void, ADictionary_2_System_Object_System_Int32Enum___cctor, (MethodInfo * method)); @@ -120276,36 +133033,46 @@ DO_APP_FUNC(0x00FA2B40, void, ADictionary_2_System_Object_System_Int32Enum___cto DO_APP_FUNC(0x00FA2830, void, ADictionary_2_System_Object_System_Int32Enum___ctor_5, (ADictionary_2_System_Object_System_Int32Enum_ * __this, IEqualityComparer_1_System_Object_ * param_0000c5b2, IEqualityComparer_1_System_Int32Enum_ * param_0000c5b3, MethodInfo * method)); DO_APP_FUNC(0x00FA2890, void, ADictionary_2_System_Object_System_Int32Enum___ctor_6, (ADictionary_2_System_Object_System_Int32Enum_ * __this, int32_t param_0000c5b5, IEqualityComparer_1_System_Object_ * param_0000c5b6, MethodInfo * method)); DO_APP_FUNC(0x00FAD4A0, void, ADictionary_2_System_Object_System_Int32Enum___ctor_7, (ADictionary_2_System_Object_System_Int32Enum_ * __this, IDictionary_2_System_Object_System_Int32Enum_ * param_0000c5bd, IEqualityComparer_1_System_Object_ * param_0000c5be, IEqualityComparer_1_System_Int32Enum_ * param_0000c5bf, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F6B0, ADictionary_2_System_Object_System_Int32Enum___ctor_7__MethodInfo); DO_APP_FUNC(0x00FAD250, void, ADictionary_2_System_Object_System_Int32Enum___ctor_8, (ADictionary_2_System_Object_System_Int32Enum_ * __this, int32_t param_0000c5b7, IEqualityComparer_1_System_Object_ * param_0000c5b8, IEqualityComparer_1_System_Int32Enum_ * param_0000c5b9, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F660, ADictionary_2_System_Object_System_Int32Enum___ctor_8__MethodInfo); DO_APP_FUNC(0x00FA2E40, void, ADictionary_2_System_Object_System_Int32Enum__Add, (ADictionary_2_System_Object_System_Int32Enum_ * __this, Object * key, Int32Enum__Enum value, MethodInfo * method)); DO_APP_FUNC(0x00FA2E70, void, ADictionary_2_System_Object_System_Int32Enum__Clear, (ADictionary_2_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FA2F00, bool, ADictionary_2_System_Object_System_Int32Enum__ContainsKey, (ADictionary_2_System_Object_System_Int32Enum_ * __this, Object * key, MethodInfo * method)); DO_APP_FUNC(0x00FA2F40, bool, ADictionary_2_System_Object_System_Int32Enum__ContainsValue, (ADictionary_2_System_Object_System_Int32Enum_ * __this, Int32Enum__Enum value, MethodInfo * method)); DO_APP_FUNC(0x00FAE120, void, ADictionary_2_System_Object_System_Int32Enum__CopyTo, (ADictionary_2_System_Object_System_Int32Enum_ * __this, KeyValuePair_2_System_Object_System_Int32Enum___Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F650, ADictionary_2_System_Object_System_Int32Enum__CopyTo__MethodInfo); DO_APP_FUNC(0x00FADF20, KeyValuePair_2_System_Object_System_Int32Enum_, ADictionary_2_System_Object_System_Int32Enum__GetEntryAt, (ADictionary_2_System_Object_System_Int32Enum_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F618, ADictionary_2_System_Object_System_Int32Enum__GetEntryAt__MethodInfo); DO_APP_FUNC(0x00FA67D0, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum_, ADictionary_2_System_Object_System_Int32Enum__GetEnumerator, (ADictionary_2_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FADD30, Object *, ADictionary_2_System_Object_System_Int32Enum__GetKeyAt, (ADictionary_2_System_Object_System_Int32Enum_ * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00FAAEC0, bool, ADictionary_2_System_Object_System_Int32Enum__GetNextEntry, (ADictionary_2_System_Object_System_Int32Enum_ * __this, int32_t index, KeyValuePair_2_System_Object_System_Int32Enum_ entry, MethodInfo * method)); -DO_APP_FUNC(0x00FA7630, bool, ADictionary_2_System_Object_System_Int32Enum__GetNextIndex, (ADictionary_2_System_Object_System_Int32Enum_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F638, ADictionary_2_System_Object_System_Int32Enum__GetKeyAt__MethodInfo); +DO_APP_FUNC(0x00FAAEC0, bool, ADictionary_2_System_Object_System_Int32Enum__GetNextEntry, (ADictionary_2_System_Object_System_Int32Enum_ * __this, int32_t * index, KeyValuePair_2_System_Object_System_Int32Enum_ * entry, MethodInfo * method)); +DO_APP_FUNC(0x00FA7630, bool, ADictionary_2_System_Object_System_Int32Enum__GetNextIndex, (ADictionary_2_System_Object_System_Int32Enum_ * __this, int32_t * index, MethodInfo * method)); DO_APP_FUNC(0x00FA7690, int32_t, ADictionary_2_System_Object_System_Int32Enum__GetNextIndex_1, (ADictionary_2_System_Object_System_Int32Enum_ * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00FAADA0, bool, ADictionary_2_System_Object_System_Int32Enum__GetNextKey, (ADictionary_2_System_Object_System_Int32Enum_ * __this, int32_t index, Object * key, MethodInfo * method)); -DO_APP_FUNC(0x00FAAE30, bool, ADictionary_2_System_Object_System_Int32Enum__GetNextValue, (ADictionary_2_System_Object_System_Int32Enum_ * __this, int32_t index, Int32Enum__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x00FAB0B0, bool, ADictionary_2_System_Object_System_Int32Enum__GetPreviousEntry, (ADictionary_2_System_Object_System_Int32Enum_ * __this, int32_t index, KeyValuePair_2_System_Object_System_Int32Enum_ entry, MethodInfo * method)); -DO_APP_FUNC(0x00FA78E0, bool, ADictionary_2_System_Object_System_Int32Enum__GetPreviousIndex, (ADictionary_2_System_Object_System_Int32Enum_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00FAADA0, bool, ADictionary_2_System_Object_System_Int32Enum__GetNextKey, (ADictionary_2_System_Object_System_Int32Enum_ * __this, int32_t * index, Object * * key, MethodInfo * method)); +DO_APP_FUNC(0x00FAAE30, bool, ADictionary_2_System_Object_System_Int32Enum__GetNextValue, (ADictionary_2_System_Object_System_Int32Enum_ * __this, int32_t * index, Int32Enum__Enum * value, MethodInfo * method)); +DO_APP_FUNC(0x00FAB0B0, bool, ADictionary_2_System_Object_System_Int32Enum__GetPreviousEntry, (ADictionary_2_System_Object_System_Int32Enum_ * __this, int32_t * index, KeyValuePair_2_System_Object_System_Int32Enum_ * entry, MethodInfo * method)); +DO_APP_FUNC(0x00FA78E0, bool, ADictionary_2_System_Object_System_Int32Enum__GetPreviousIndex, (ADictionary_2_System_Object_System_Int32Enum_ * __this, int32_t * index, MethodInfo * method)); DO_APP_FUNC(0x00FA7940, int32_t, ADictionary_2_System_Object_System_Int32Enum__GetPreviousIndex_1, (ADictionary_2_System_Object_System_Int32Enum_ * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00FAAFA0, bool, ADictionary_2_System_Object_System_Int32Enum__GetPreviousKey, (ADictionary_2_System_Object_System_Int32Enum_ * __this, int32_t index, Object * key, MethodInfo * method)); -DO_APP_FUNC(0x00FAB030, bool, ADictionary_2_System_Object_System_Int32Enum__GetPreviousValue, (ADictionary_2_System_Object_System_Int32Enum_ * __this, int32_t index, Int32Enum__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x00FAAFA0, bool, ADictionary_2_System_Object_System_Int32Enum__GetPreviousKey, (ADictionary_2_System_Object_System_Int32Enum_ * __this, int32_t * index, Object * * key, MethodInfo * method)); +DO_APP_FUNC(0x00FAB030, bool, ADictionary_2_System_Object_System_Int32Enum__GetPreviousValue, (ADictionary_2_System_Object_System_Int32Enum_ * __this, int32_t * index, Int32Enum__Enum * value, MethodInfo * method)); DO_APP_FUNC(0x00FADE20, Int32Enum__Enum, ADictionary_2_System_Object_System_Int32Enum__GetValueAt, (ADictionary_2_System_Object_System_Int32Enum_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F628, ADictionary_2_System_Object_System_Int32Enum__GetValueAt__MethodInfo); DO_APP_FUNC(0x00FAA450, Int32Enum__Enum, ADictionary_2_System_Object_System_Int32Enum__GetValueSafe, (ADictionary_2_System_Object_System_Int32Enum_ * __this, Object * key, MethodInfo * method)); DO_APP_FUNC(0x00FADAF0, int32_t, ADictionary_2_System_Object_System_Int32Enum__IndexOfKey, (ADictionary_2_System_Object_System_Int32Enum_ * __this, Object * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F648, ADictionary_2_System_Object_System_Int32Enum__IndexOfKey__MethodInfo); DO_APP_FUNC(0x00FAA6F0, int32_t, ADictionary_2_System_Object_System_Int32Enum__IndexOfValue, (ADictionary_2_System_Object_System_Int32Enum_ * __this, Int32Enum__Enum value, MethodInfo * method)); DO_APP_FUNC(0x00FA7060, bool, ADictionary_2_System_Object_System_Int32Enum__IsValidAt, (ADictionary_2_System_Object_System_Int32Enum_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x00FAE350, void, ADictionary_2_System_Object_System_Int32Enum__LIeljCbdoWdgBAecluMnblrpCnHu, (ADictionary_2_System_Object_System_Int32Enum_ * __this, int32_t param_0000c5e7, MethodInfo * method)); DO_APP_FUNC(0x00FAE9E0, void, ADictionary_2_System_Object_System_Int32Enum__RXshytQnlmeNgZUJYfJIoXnXfthe, (ADictionary_2_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FAEA70, void, ADictionary_2_System_Object_System_Int32Enum__RXshytQnlmeNgZUJYfJIoXnXfthe_1, (ADictionary_2_System_Object_System_Int32Enum_ * __this, int32_t param_0000c5eb, bool param_0000c5ec, MethodInfo * method)); DO_APP_FUNC(0x00FAD790, bool, ADictionary_2_System_Object_System_Int32Enum__Remove, (ADictionary_2_System_Object_System_Int32Enum_ * __this, Object * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F6A0, ADictionary_2_System_Object_System_Int32Enum__Remove__MethodInfo); DO_APP_FUNC(0x00FAE050, bool, ADictionary_2_System_Object_System_Int32Enum__RemoveAt, (ADictionary_2_System_Object_System_Int32Enum_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F658, ADictionary_2_System_Object_System_Int32Enum__RemoveAt__MethodInfo); DO_APP_FUNC(0x00FAF820, bool, ADictionary_2_System_Object_System_Int32Enum__SEWwbgHBQLAROdofEOGHCOsIuokPA, (Object * param_0000c5fb, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F5D0, ADictionary_2_System_Object_System_Int32Enum__SEWwbgHBQLAROdofEOGHCOsIuokPA__MethodInfo); DO_APP_FUNC(0x00FABE80, void, ADictionary_2_System_Object_System_Int32Enum__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add, (ADictionary_2_System_Object_System_Int32Enum_ * __this, KeyValuePair_2_System_Object_System_Int32Enum_ param_0000c5ed, MethodInfo * method)); DO_APP_FUNC(0x00FABEA0, bool, ADictionary_2_System_Object_System_Int32Enum__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains, (ADictionary_2_System_Object_System_Int32Enum_ * __this, KeyValuePair_2_System_Object_System_Int32Enum_ param_0000c5ee, MethodInfo * method)); DO_APP_FUNC(0x00FA4F70, void, ADictionary_2_System_Object_System_Int32Enum__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo, (ADictionary_2_System_Object_System_Int32Enum_ * __this, KeyValuePair_2_System_Object_System_Int32Enum___Array * param_0000c5f0, int32_t param_0000c5f1, MethodInfo * method)); @@ -120315,9 +133082,11 @@ DO_APP_FUNC(0x00FA23D0, ICollection_1_System_Object_ *, ADictionary_2_System_Obj DO_APP_FUNC(0x00FA24A0, ICollection_1_System_Int32Enum_ *, ADictionary_2_System_Object_System_Int32Enum__System_Collections_Generic_IDictionary_TKey_TValue__get_Values, (ADictionary_2_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FA8820, IEnumerator_1_KeyValuePair_2_System_Object_System_Int32Enum_ *, ADictionary_2_System_Object_System_Int32Enum__System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator, (ADictionary_2_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FAED50, void, ADictionary_2_System_Object_System_Int32Enum__System_Collections_ICollection_CopyTo, (ADictionary_2_System_Object_System_Int32Enum_ * __this, Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F608, ADictionary_2_System_Object_System_Int32Enum__System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, ADictionary_2_System_Object_System_Int32Enum__System_Collections_ICollection_get_IsSynchronized, (ADictionary_2_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7490, Object *, ADictionary_2_System_Object_System_Int32Enum__System_Collections_ICollection_get_SyncRoot, (ADictionary_2_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FAF5A0, void, ADictionary_2_System_Object_System_Int32Enum__System_Collections_IDictionary_Add, (ADictionary_2_System_Object_System_Int32Enum_ * __this, Object * key, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F5E8, ADictionary_2_System_Object_System_Int32Enum__System_Collections_IDictionary_Add__MethodInfo); DO_APP_FUNC(0x00FACCD0, bool, ADictionary_2_System_Object_System_Int32Enum__System_Collections_IDictionary_Contains, (ADictionary_2_System_Object_System_Int32Enum_ * __this, Object * key, MethodInfo * method)); DO_APP_FUNC(0x00FA9720, IDictionaryEnumerator *, ADictionary_2_System_Object_System_Int32Enum__System_Collections_IDictionary_GetEnumerator, (ADictionary_2_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FACE00, void, ADictionary_2_System_Object_System_Int32Enum__System_Collections_IDictionary_Remove, (ADictionary_2_System_Object_System_Int32Enum_ * __this, Object * key, MethodInfo * method)); @@ -120327,15 +133096,17 @@ DO_APP_FUNC(0x00FAC650, Object *, ADictionary_2_System_Object_System_Int32Enum__ DO_APP_FUNC(0x00FA5590, ICollection *, ADictionary_2_System_Object_System_Int32Enum__System_Collections_IDictionary_get_Keys, (ADictionary_2_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FA55C0, ICollection *, ADictionary_2_System_Object_System_Int32Enum__System_Collections_IDictionary_get_Values, (ADictionary_2_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FAF320, void, ADictionary_2_System_Object_System_Int32Enum__System_Collections_IDictionary_set_Item, (ADictionary_2_System_Object_System_Int32Enum_ * __this, Object * key, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F5A0, ADictionary_2_System_Object_System_Int32Enum__System_Collections_IDictionary_set_Item__MethodInfo); DO_APP_FUNC(0x00FA8820, IEnumerator *, ADictionary_2_System_Object_System_Int32Enum__System_Collections_IEnumerable_GetEnumerator, (ADictionary_2_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FAAC50, bool, ADictionary_2_System_Object_System_Int32Enum__TryGetEntryAt, (ADictionary_2_System_Object_System_Int32Enum_ * __this, int32_t index, KeyValuePair_2_System_Object_System_Int32Enum_ entry, MethodInfo * method)); -DO_APP_FUNC(0x00FAAB50, bool, ADictionary_2_System_Object_System_Int32Enum__TryGetKeyAt, (ADictionary_2_System_Object_System_Int32Enum_ * __this, int32_t index, Object * key, MethodInfo * method)); -DO_APP_FUNC(0x00FAA3E0, bool, ADictionary_2_System_Object_System_Int32Enum__TryGetValue, (ADictionary_2_System_Object_System_Int32Enum_ * __this, Object * key, Int32Enum__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x00FAABF0, bool, ADictionary_2_System_Object_System_Int32Enum__TryGetValueAt, (ADictionary_2_System_Object_System_Int32Enum_ * __this, int32_t index, Int32Enum__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x00FAAC50, bool, ADictionary_2_System_Object_System_Int32Enum__TryGetEntryAt, (ADictionary_2_System_Object_System_Int32Enum_ * __this, int32_t index, KeyValuePair_2_System_Object_System_Int32Enum_ * entry, MethodInfo * method)); +DO_APP_FUNC(0x00FAAB50, bool, ADictionary_2_System_Object_System_Int32Enum__TryGetKeyAt, (ADictionary_2_System_Object_System_Int32Enum_ * __this, int32_t index, Object * * key, MethodInfo * method)); +DO_APP_FUNC(0x00FAA3E0, bool, ADictionary_2_System_Object_System_Int32Enum__TryGetValue, (ADictionary_2_System_Object_System_Int32Enum_ * __this, Object * key, Int32Enum__Enum * value, MethodInfo * method)); +DO_APP_FUNC(0x00FAABF0, bool, ADictionary_2_System_Object_System_Int32Enum__TryGetValueAt, (ADictionary_2_System_Object_System_Int32Enum_ * __this, int32_t index, Int32Enum__Enum * value, MethodInfo * method)); DO_APP_FUNC(0x00FA23C0, int32_t, ADictionary_2_System_Object_System_Int32Enum__get_Count, (ADictionary_2_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FA6C50, int32_t, ADictionary_2_System_Object_System_Int32Enum__get_IndexOfFirst, (ADictionary_2_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FA6CA0, int32_t, ADictionary_2_System_Object_System_Int32Enum__get_IndexOfLast, (ADictionary_2_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FAD140, Int32Enum__Enum, ADictionary_2_System_Object_System_Int32Enum__get_Item, (ADictionary_2_System_Object_System_Int32Enum_ * __this, Object * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F698, ADictionary_2_System_Object_System_Int32Enum__get_Item__MethodInfo); DO_APP_FUNC(0x003C7320, IEqualityComparer_1_System_Object_ *, ADictionary_2_System_Object_System_Int32Enum__get_KeyComparer, (ADictionary_2_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FA23D0, ADictionary_2_TKey_TValue_KeyCollection_System_Object_System_Int32Enum_ *, ADictionary_2_System_Object_System_Int32Enum__get_Keys, (ADictionary_2_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003CC980, int32_t, ADictionary_2_System_Object_System_Int32Enum__get_TotalCount, (ADictionary_2_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); @@ -120345,6 +133116,7 @@ DO_APP_FUNC(0x00FA27A0, void, ADictionary_2_System_Object_System_Int32Enum__set_ DO_APP_FUNC(0x00FA2570, void, ADictionary_2_System_Object_System_Int32Enum__set_KeyComparer, (ADictionary_2_System_Object_System_Int32Enum_ * __this, IEqualityComparer_1_System_Object_ * value, MethodInfo * method)); DO_APP_FUNC(0x00FA2600, void, ADictionary_2_System_Object_System_Int32Enum__set_ValueComparer, (ADictionary_2_System_Object_System_Int32Enum_ * __this, IEqualityComparer_1_System_Int32Enum_ * value, MethodInfo * method)); DO_APP_FUNC(0x00FAE530, void, ADictionary_2_System_Object_System_Int32Enum__xWtHrTSuscpEZQwphRXafQBqQlMJ, (ADictionary_2_System_Object_System_Int32Enum_ * __this, Object * param_0000c5e8, Int32Enum__Enum param_0000c5e9, bool param_0000c5ea, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F600, ADictionary_2_System_Object_System_Int32Enum__xWtHrTSuscpEZQwphRXafQBqQlMJ__MethodInfo); DO_APP_FUNC(0x00A8C430, void, ADictionary_2_System_Object_System_Object__AoRSVrhVZVojMyCPSJVQbMSwlsoA, (Object * param_0000c5fc, String * param_0000c5fd, MethodInfo * method)); DO_APP_FUNC(0x012EFEF0, void, ADictionary_2_System_Object_System_Object___cctor, (MethodInfo * method)); DO_APP_FUNC(0x00FA27D0, void, ADictionary_2_System_Object_System_Object___ctor, (ADictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); @@ -120369,16 +133141,16 @@ DO_APP_FUNC_METHODINFO(0x03C918E8, ADictionary_2_System_Object_System_Object__Ge DO_APP_FUNC(0x00FA67D0, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Object_, ADictionary_2_System_Object_System_Object__GetEnumerator, (ADictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012EDCC0, Object *, ADictionary_2_System_Object_System_Object__GetKeyAt, (ADictionary_2_System_Object_System_Object_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C918C8, ADictionary_2_System_Object_System_Object__GetKeyAt__MethodInfo); -DO_APP_FUNC(0x012EE110, bool, ADictionary_2_System_Object_System_Object__GetNextEntry, (ADictionary_2_System_Object_System_Object_ * __this, int32_t index, KeyValuePair_2_System_Object_System_Object_ entry, MethodInfo * method)); -DO_APP_FUNC(0x00FA7630, bool, ADictionary_2_System_Object_System_Object__GetNextIndex, (ADictionary_2_System_Object_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x012EE110, bool, ADictionary_2_System_Object_System_Object__GetNextEntry, (ADictionary_2_System_Object_System_Object_ * __this, int32_t * index, KeyValuePair_2_System_Object_System_Object_ * entry, MethodInfo * method)); +DO_APP_FUNC(0x00FA7630, bool, ADictionary_2_System_Object_System_Object__GetNextIndex, (ADictionary_2_System_Object_System_Object_ * __this, int32_t * index, MethodInfo * method)); DO_APP_FUNC(0x00FA7690, int32_t, ADictionary_2_System_Object_System_Object__GetNextIndex_1, (ADictionary_2_System_Object_System_Object_ * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00FAADA0, bool, ADictionary_2_System_Object_System_Object__GetNextKey, (ADictionary_2_System_Object_System_Object_ * __this, int32_t index, Object * key, MethodInfo * method)); -DO_APP_FUNC(0x00FA7770, bool, ADictionary_2_System_Object_System_Object__GetNextValue, (ADictionary_2_System_Object_System_Object_ * __this, int32_t index, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x012EE1F0, bool, ADictionary_2_System_Object_System_Object__GetPreviousEntry, (ADictionary_2_System_Object_System_Object_ * __this, int32_t index, KeyValuePair_2_System_Object_System_Object_ entry, MethodInfo * method)); -DO_APP_FUNC(0x00FA78E0, bool, ADictionary_2_System_Object_System_Object__GetPreviousIndex, (ADictionary_2_System_Object_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00FAADA0, bool, ADictionary_2_System_Object_System_Object__GetNextKey, (ADictionary_2_System_Object_System_Object_ * __this, int32_t * index, Object * * key, MethodInfo * method)); +DO_APP_FUNC(0x00FA7770, bool, ADictionary_2_System_Object_System_Object__GetNextValue, (ADictionary_2_System_Object_System_Object_ * __this, int32_t * index, Object * * value, MethodInfo * method)); +DO_APP_FUNC(0x012EE1F0, bool, ADictionary_2_System_Object_System_Object__GetPreviousEntry, (ADictionary_2_System_Object_System_Object_ * __this, int32_t * index, KeyValuePair_2_System_Object_System_Object_ * entry, MethodInfo * method)); +DO_APP_FUNC(0x00FA78E0, bool, ADictionary_2_System_Object_System_Object__GetPreviousIndex, (ADictionary_2_System_Object_System_Object_ * __this, int32_t * index, MethodInfo * method)); DO_APP_FUNC(0x00FA7940, int32_t, ADictionary_2_System_Object_System_Object__GetPreviousIndex_1, (ADictionary_2_System_Object_System_Object_ * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00FAAFA0, bool, ADictionary_2_System_Object_System_Object__GetPreviousKey, (ADictionary_2_System_Object_System_Object_ * __this, int32_t index, Object * key, MethodInfo * method)); -DO_APP_FUNC(0x00FA7A10, bool, ADictionary_2_System_Object_System_Object__GetPreviousValue, (ADictionary_2_System_Object_System_Object_ * __this, int32_t index, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x00FAAFA0, bool, ADictionary_2_System_Object_System_Object__GetPreviousKey, (ADictionary_2_System_Object_System_Object_ * __this, int32_t * index, Object * * key, MethodInfo * method)); +DO_APP_FUNC(0x00FA7A10, bool, ADictionary_2_System_Object_System_Object__GetPreviousValue, (ADictionary_2_System_Object_System_Object_ * __this, int32_t * index, Object * * value, MethodInfo * method)); DO_APP_FUNC(0x012EDDB0, Object *, ADictionary_2_System_Object_System_Object__GetValueAt, (ADictionary_2_System_Object_System_Object_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C918D8, ADictionary_2_System_Object_System_Object__GetValueAt__MethodInfo); DO_APP_FUNC(0x00FA6BF0, Object *, ADictionary_2_System_Object_System_Object__GetValueSafe, (ADictionary_2_System_Object_System_Object_ * __this, Object * key, MethodInfo * method)); @@ -120420,10 +133192,10 @@ DO_APP_FUNC(0x00FA55C0, ICollection *, ADictionary_2_System_Object_System_Object DO_APP_FUNC(0x012EF940, void, ADictionary_2_System_Object_System_Object__System_Collections_IDictionary_set_Item, (ADictionary_2_System_Object_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C91818, ADictionary_2_System_Object_System_Object__System_Collections_IDictionary_set_Item__MethodInfo); DO_APP_FUNC(0x00FA8820, IEnumerator *, ADictionary_2_System_Object_System_Object__System_Collections_IEnumerable_GetEnumerator, (ADictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x012EDFF0, bool, ADictionary_2_System_Object_System_Object__TryGetEntryAt, (ADictionary_2_System_Object_System_Object_ * __this, int32_t index, KeyValuePair_2_System_Object_System_Object_ entry, MethodInfo * method)); -DO_APP_FUNC(0x00FAAB50, bool, ADictionary_2_System_Object_System_Object__TryGetKeyAt, (ADictionary_2_System_Object_System_Object_ * __this, int32_t index, Object * key, MethodInfo * method)); -DO_APP_FUNC(0x00FA6B40, bool, ADictionary_2_System_Object_System_Object__TryGetValue, (ADictionary_2_System_Object_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x00FA7430, bool, ADictionary_2_System_Object_System_Object__TryGetValueAt, (ADictionary_2_System_Object_System_Object_ * __this, int32_t index, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x012EDFF0, bool, ADictionary_2_System_Object_System_Object__TryGetEntryAt, (ADictionary_2_System_Object_System_Object_ * __this, int32_t index, KeyValuePair_2_System_Object_System_Object_ * entry, MethodInfo * method)); +DO_APP_FUNC(0x00FAAB50, bool, ADictionary_2_System_Object_System_Object__TryGetKeyAt, (ADictionary_2_System_Object_System_Object_ * __this, int32_t index, Object * * key, MethodInfo * method)); +DO_APP_FUNC(0x00FA6B40, bool, ADictionary_2_System_Object_System_Object__TryGetValue, (ADictionary_2_System_Object_System_Object_ * __this, Object * key, Object * * value, MethodInfo * method)); +DO_APP_FUNC(0x00FA7430, bool, ADictionary_2_System_Object_System_Object__TryGetValueAt, (ADictionary_2_System_Object_System_Object_ * __this, int32_t index, Object * * value, MethodInfo * method)); DO_APP_FUNC(0x00FA23C0, int32_t, ADictionary_2_System_Object_System_Object__get_Count, (ADictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FA6C50, int32_t, ADictionary_2_System_Object_System_Object__get_IndexOfFirst, (ADictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FA6CA0, int32_t, ADictionary_2_System_Object_System_Object__get_IndexOfLast, (ADictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); @@ -120921,6 +133693,7 @@ DO_APP_FUNC(0x012FDC90, void, AList_1_System_Object__set_Item, (AList_1_System_O DO_APP_FUNC_METHODINFO(0x03C91240, AList_1_System_Object__set_Item__MethodInfo); DO_APP_FUNC(0x012F4F00, void, AList_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy___cctor, (MethodInfo * method)); DO_APP_FUNC(0x012F0270, void, AList_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy___ctor, (AList_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF838, AList_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy___ctor__MethodInfo); DO_APP_FUNC(0x012F05C0, void, AList_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy___ctor_1, (AList_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * __this, IEnumerable_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * param_0000c697, MethodInfo * method)); DO_APP_FUNC(0x012F02A0, void, AList_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy___ctor_2, (AList_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * __this, int32_t param_0000c691, MethodInfo * method)); DO_APP_FUNC(0x012F02D0, void, AList_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy___ctor_3, (AList_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * __this, int32_t param_0000c692, int32_t param_0000c693, MethodInfo * method)); @@ -120929,6 +133702,7 @@ DO_APP_FUNC_METHODINFO(0x03C91058, AList_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKO DO_APP_FUNC(0x01301C70, void, AList_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy___ctor_5, (AList_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * __this, int32_t param_0000c694, int32_t param_0000c695, int32_t param_0000c696, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C91040, AList_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy___ctor_5__MethodInfo); DO_APP_FUNC(0x01302650, int32_t, AList_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__Add, (AList_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * __this, gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF738, AList_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__Add__MethodInfo); DO_APP_FUNC(0x01302930, bool, AList_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__Add_1, (AList_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * __this, AList_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * items, int32_t count, int32_t startIndex, bool allowPartialAdd, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C91008, AList_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__Add_1__MethodInfo); DO_APP_FUNC(0x013026E0, bool, AList_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__Add_2, (AList_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * __this, gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__Array * items, int32_t count, int32_t startIndex, bool allowPartialAdd, MethodInfo * method)); @@ -120938,6 +133712,7 @@ DO_APP_FUNC(0x01302C10, int32_t, AList_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGf DO_APP_FUNC(0x01302D40, int32_t, AList_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__AddToFirstOpenSpace_1, (AList_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * __this, gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy item, gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy openSpaceEquals, MethodInfo * method)); DO_APP_FUNC(0x012F2970, ReadOnlyCollection_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ *, AList_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__AsReadOnly, (AList_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012F3CE0, void, AList_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__Clear, (AList_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF730, AList_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__Clear__MethodInfo); DO_APP_FUNC(0x012FF1F0, bool, AList_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__Contains, (AList_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * __this, gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy item, MethodInfo * method)); DO_APP_FUNC(0x01303040, bool, AList_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__Contains_1, (AList_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * __this, gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy item, IEqualityComparer_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * comparer, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C91020, AList_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__Contains_1__MethodInfo); @@ -121269,6 +134044,7 @@ DO_APP_FUNC(0x01113100, void, Action_1_Pathfinding_Int3___ctor, (Action_1_Pathfi DO_APP_FUNC(0x01113230, void, Action_1_Pathfinding_Int3__Invoke, (Action_1_Pathfinding_Int3_ * __this, Int3 obj, MethodInfo * method)); DO_APP_FUNC(0x003EE520, void, Action_1_Int32___ctor, (Action_1_Int32_ * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EE650, void, Action_1_Int32__Invoke, (Action_1_Int32_ * __this, int32_t obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE13B0, Action_1_Int32__Invoke__MethodInfo); DO_APP_FUNC(0x003EE520, void, Action_1_Int32Enum___ctor, (Action_1_Int32Enum_ * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EE650, void, Action_1_Int32Enum__Invoke, (Action_1_Int32Enum_ * __this, Int32Enum__Enum obj, MethodInfo * method)); DO_APP_FUNC(0x003F3FF0, void, Action_1_Int64___ctor, (Action_1_Int64_ * __this, Object * object, void * method_1, MethodInfo * method)); @@ -121797,334 +134573,357 @@ DO_APP_FUNC(0x0144BF50, void, Action_8_Object_Object_Object_Object_Object_Object DO_APP_FUNC(0x0144C110, void, Action_8_Object_Object_Object_Object_Object_Object_Object_Object__Invoke, (Action_8_Object_Object_Object_Object_Object_Object_Object_Object_ * __this, Object * arg1, Object * arg2, Object * arg3, Object * arg4, Object * arg5, Object * arg6, Object * arg7, Object * arg8, MethodInfo * method)); DO_APP_FUNC(0x0144C130, void, Action_9_Object_Object_Object_Object_Object_Object_Object_Object_Object___ctor, (Action_9_Object_Object_Object_Object_Object_Object_Object_Object_Object_ * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x0144C2F0, void, Action_9_Object_Object_Object_Object_Object_Object_Object_Object_Object__Invoke, (Action_9_Object_Object_Object_Object_Object_Object_Object_Object_Object_ * __this, Object * arg1, Object * arg2, Object * arg3, Object * arg4, Object * arg5, Object * arg6, Object * arg7, Object * arg8, Object * arg9, MethodInfo * method)); -DO_APP_FUNC(0x0144C9E0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Background_Background__Add, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Background_Background___Boxed * __this, VisualElement * owner, StylePropertyId__Enum prop, StylePropertyAnimationSystem_Values_1_T_EmptyData_Background_ timingData, Background styleData, MethodInfo * method)); +DO_APP_FUNC(0x0144C9E0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Background_Background__Add, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Background_Background_ * __this, VisualElement * owner, StylePropertyId__Enum prop, StylePropertyAnimationSystem_Values_1_T_EmptyData_Background_ timingData, Background styleData, MethodInfo * method)); DO_APP_FUNC(0x0144C810, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Background_Background_, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Background_Background__Create, (MethodInfo * method)); -DO_APP_FUNC(0x0144D360, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Background_Background__GetActivePropertiesForElement, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Background_Background___Boxed * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outProperties, MethodInfo * method)); -DO_APP_FUNC(0x0144C890, bool, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Background_Background__IndexOf, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Background_Background___Boxed * __this, VisualElement * ve, StylePropertyId__Enum prop, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x0144C4B0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Background_Background__LocalInit, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Background_Background___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0144CC90, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Background_Background__Remove, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Background_Background___Boxed * __this, int32_t cancelledIndex, MethodInfo * method)); -DO_APP_FUNC(0x0144D260, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Background_Background__RemoveAll, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Background_Background___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0144D1D0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Background_Background__RemoveAll_1, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Background_Background___Boxed * __this, VisualElement * ve, MethodInfo * method)); -DO_APP_FUNC(0x0144D110, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Background_Background__Replace, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Background_Background___Boxed * __this, int32_t index, StylePropertyAnimationSystem_Values_1_T_EmptyData_Background_ timingData, Background styleData, MethodInfo * method)); -DO_APP_FUNC(0x0144C360, int32_t, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Background_Background__get_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Background_Background___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0144C380, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Background_Background__set_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Background_Background___Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x0144DA70, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color_UnityEngine_Color__Add, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color_UnityEngine_Color___Boxed * __this, VisualElement * owner, StylePropertyId__Enum prop, StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color_ timingData, Color styleData, MethodInfo * method)); +DO_APP_FUNC(0x0144D360, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Background_Background__GetActivePropertiesForElement, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Background_Background_ * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outProperties, MethodInfo * method)); +DO_APP_FUNC(0x0144C890, bool, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Background_Background__IndexOf, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Background_Background_ * __this, VisualElement * ve, StylePropertyId__Enum prop, int32_t * index, MethodInfo * method)); +DO_APP_FUNC(0x0144C4B0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Background_Background__LocalInit, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Background_Background_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0144CC90, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Background_Background__Remove, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Background_Background_ * __this, int32_t cancelledIndex, MethodInfo * method)); +DO_APP_FUNC(0x0144D260, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Background_Background__RemoveAll, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Background_Background_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0144D1D0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Background_Background__RemoveAll_1, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Background_Background_ * __this, VisualElement * ve, MethodInfo * method)); +DO_APP_FUNC(0x0144D110, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Background_Background__Replace, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Background_Background_ * __this, int32_t index, StylePropertyAnimationSystem_Values_1_T_EmptyData_Background_ timingData, Background styleData, MethodInfo * method)); +DO_APP_FUNC(0x0144C360, int32_t, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Background_Background__get_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Background_Background_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0144C380, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Background_Background__set_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Background_Background_ * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x0144DA70, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color_UnityEngine_Color__Add, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color_UnityEngine_Color_ * __this, VisualElement * owner, StylePropertyId__Enum prop, StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color_ timingData, Color styleData, MethodInfo * method)); DO_APP_FUNC(0x0144D8A0, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color_UnityEngine_Color_, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color_UnityEngine_Color__Create, (MethodInfo * method)); -DO_APP_FUNC(0x0144E230, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color_UnityEngine_Color__GetActivePropertiesForElement, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color_UnityEngine_Color___Boxed * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outProperties, MethodInfo * method)); -DO_APP_FUNC(0x0144D920, bool, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color_UnityEngine_Color__IndexOf, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color_UnityEngine_Color___Boxed * __this, VisualElement * ve, StylePropertyId__Enum prop, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x0144D540, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color_UnityEngine_Color__LocalInit, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color_UnityEngine_Color___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0144DCC0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color_UnityEngine_Color__Remove, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color_UnityEngine_Color___Boxed * __this, int32_t cancelledIndex, MethodInfo * method)); -DO_APP_FUNC(0x0144E130, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color_UnityEngine_Color__RemoveAll, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color_UnityEngine_Color___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0144E0A0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color_UnityEngine_Color__RemoveAll_1, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color_UnityEngine_Color___Boxed * __this, VisualElement * ve, MethodInfo * method)); -DO_APP_FUNC(0x0144E050, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color_UnityEngine_Color__Replace, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color_UnityEngine_Color___Boxed * __this, int32_t index, StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color_ timingData, Color styleData, MethodInfo * method)); -DO_APP_FUNC(0x0144C360, int32_t, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color_UnityEngine_Color__get_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color_UnityEngine_Color___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0144D410, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color_UnityEngine_Color__set_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color_UnityEngine_Color___Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x0144E940, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition_FontDefinition__Add, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition_FontDefinition___Boxed * __this, VisualElement * owner, StylePropertyId__Enum prop, StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition_ timingData, FontDefinition styleData, MethodInfo * method)); +DO_APP_FUNC(0x0144E230, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color_UnityEngine_Color__GetActivePropertiesForElement, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color_UnityEngine_Color_ * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outProperties, MethodInfo * method)); +DO_APP_FUNC(0x0144D920, bool, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color_UnityEngine_Color__IndexOf, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color_UnityEngine_Color_ * __this, VisualElement * ve, StylePropertyId__Enum prop, int32_t * index, MethodInfo * method)); +DO_APP_FUNC(0x0144D540, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color_UnityEngine_Color__LocalInit, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0144DCC0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color_UnityEngine_Color__Remove, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color_UnityEngine_Color_ * __this, int32_t cancelledIndex, MethodInfo * method)); +DO_APP_FUNC(0x0144E130, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color_UnityEngine_Color__RemoveAll, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0144E0A0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color_UnityEngine_Color__RemoveAll_1, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color_UnityEngine_Color_ * __this, VisualElement * ve, MethodInfo * method)); +DO_APP_FUNC(0x0144E050, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color_UnityEngine_Color__Replace, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color_UnityEngine_Color_ * __this, int32_t index, StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color_ timingData, Color styleData, MethodInfo * method)); +DO_APP_FUNC(0x0144C360, int32_t, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color_UnityEngine_Color__get_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0144D410, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color_UnityEngine_Color__set_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color_UnityEngine_Color_ * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x0144E940, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition_FontDefinition__Add, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition_FontDefinition_ * __this, VisualElement * owner, StylePropertyId__Enum prop, StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition_ timingData, FontDefinition styleData, MethodInfo * method)); DO_APP_FUNC(0x0144E770, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition_FontDefinition_, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition_FontDefinition__Create, (MethodInfo * method)); -DO_APP_FUNC(0x0144F290, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition_FontDefinition__GetActivePropertiesForElement, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition_FontDefinition___Boxed * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outProperties, MethodInfo * method)); -DO_APP_FUNC(0x0144E7F0, bool, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition_FontDefinition__IndexOf, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition_FontDefinition___Boxed * __this, VisualElement * ve, StylePropertyId__Enum prop, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x0144E410, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition_FontDefinition__LocalInit, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition_FontDefinition___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0144EBF0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition_FontDefinition__Remove, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition_FontDefinition___Boxed * __this, int32_t cancelledIndex, MethodInfo * method)); -DO_APP_FUNC(0x0144F190, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition_FontDefinition__RemoveAll, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition_FontDefinition___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0144F100, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition_FontDefinition__RemoveAll_1, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition_FontDefinition___Boxed * __this, VisualElement * ve, MethodInfo * method)); -DO_APP_FUNC(0x0144F050, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition_FontDefinition__Replace, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition_FontDefinition___Boxed * __this, int32_t index, StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition_ timingData, FontDefinition styleData, MethodInfo * method)); -DO_APP_FUNC(0x0144C360, int32_t, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition_FontDefinition__get_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition_FontDefinition___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0144E2E0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition_FontDefinition__set_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition_FontDefinition___Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x0144F9A0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32_System_Int32__Add, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32_System_Int32___Boxed * __this, VisualElement * owner, StylePropertyId__Enum prop, StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32_ timingData, int32_t styleData, MethodInfo * method)); +DO_APP_FUNC(0x0144F290, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition_FontDefinition__GetActivePropertiesForElement, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition_FontDefinition_ * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outProperties, MethodInfo * method)); +DO_APP_FUNC(0x0144E7F0, bool, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition_FontDefinition__IndexOf, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition_FontDefinition_ * __this, VisualElement * ve, StylePropertyId__Enum prop, int32_t * index, MethodInfo * method)); +DO_APP_FUNC(0x0144E410, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition_FontDefinition__LocalInit, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition_FontDefinition_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0144EBF0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition_FontDefinition__Remove, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition_FontDefinition_ * __this, int32_t cancelledIndex, MethodInfo * method)); +DO_APP_FUNC(0x0144F190, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition_FontDefinition__RemoveAll, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition_FontDefinition_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0144F100, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition_FontDefinition__RemoveAll_1, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition_FontDefinition_ * __this, VisualElement * ve, MethodInfo * method)); +DO_APP_FUNC(0x0144F050, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition_FontDefinition__Replace, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition_FontDefinition_ * __this, int32_t index, StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition_ timingData, FontDefinition styleData, MethodInfo * method)); +DO_APP_FUNC(0x0144C360, int32_t, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition_FontDefinition__get_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition_FontDefinition_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0144E2E0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition_FontDefinition__set_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition_FontDefinition_ * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x0144F9A0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32_System_Int32__Add, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32_System_Int32_ * __this, VisualElement * owner, StylePropertyId__Enum prop, StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32_ timingData, int32_t styleData, MethodInfo * method)); DO_APP_FUNC(0x0144F7D0, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32_System_Int32_, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32_System_Int32__Create, (MethodInfo * method)); -DO_APP_FUNC(0x01450120, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32_System_Int32__GetActivePropertiesForElement, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32_System_Int32___Boxed * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outProperties, MethodInfo * method)); -DO_APP_FUNC(0x0144F850, bool, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32_System_Int32__IndexOf, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32_System_Int32___Boxed * __this, VisualElement * ve, StylePropertyId__Enum prop, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x0144F470, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32_System_Int32__LocalInit, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0144FBE0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32_System_Int32__Remove, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32_System_Int32___Boxed * __this, int32_t cancelledIndex, MethodInfo * method)); -DO_APP_FUNC(0x01450020, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32_System_Int32__RemoveAll, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0144FF90, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32_System_Int32__RemoveAll_1, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32_System_Int32___Boxed * __this, VisualElement * ve, MethodInfo * method)); -DO_APP_FUNC(0x0144FF40, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32_System_Int32__Replace, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32_System_Int32___Boxed * __this, int32_t index, StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32_ timingData, int32_t styleData, MethodInfo * method)); -DO_APP_FUNC(0x0144C360, int32_t, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32_System_Int32__get_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0144F340, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32_System_Int32__set_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32_System_Int32___Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x01450830, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Length_Length__Add, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Length_Length___Boxed * __this, VisualElement * owner, StylePropertyId__Enum prop, StylePropertyAnimationSystem_Values_1_T_EmptyData_Length_ timingData, Length styleData, MethodInfo * method)); +DO_APP_FUNC(0x01450120, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32_System_Int32__GetActivePropertiesForElement, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32_System_Int32_ * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outProperties, MethodInfo * method)); +DO_APP_FUNC(0x0144F850, bool, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32_System_Int32__IndexOf, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32_System_Int32_ * __this, VisualElement * ve, StylePropertyId__Enum prop, int32_t * index, MethodInfo * method)); +DO_APP_FUNC(0x0144F470, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32_System_Int32__LocalInit, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0144FBE0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32_System_Int32__Remove, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32_System_Int32_ * __this, int32_t cancelledIndex, MethodInfo * method)); +DO_APP_FUNC(0x01450020, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32_System_Int32__RemoveAll, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0144FF90, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32_System_Int32__RemoveAll_1, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32_System_Int32_ * __this, VisualElement * ve, MethodInfo * method)); +DO_APP_FUNC(0x0144FF40, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32_System_Int32__Replace, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32_System_Int32_ * __this, int32_t index, StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32_ timingData, int32_t styleData, MethodInfo * method)); +DO_APP_FUNC(0x0144C360, int32_t, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32_System_Int32__get_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0144F340, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32_System_Int32__set_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32_System_Int32_ * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x01450830, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Length_Length__Add, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Length_Length_ * __this, VisualElement * owner, StylePropertyId__Enum prop, StylePropertyAnimationSystem_Values_1_T_EmptyData_Length_ timingData, Length styleData, MethodInfo * method)); DO_APP_FUNC(0x01450660, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Length_Length_, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Length_Length__Create, (MethodInfo * method)); -DO_APP_FUNC(0x01450FB0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Length_Length__GetActivePropertiesForElement, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Length_Length___Boxed * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outProperties, MethodInfo * method)); -DO_APP_FUNC(0x014506E0, bool, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Length_Length__IndexOf, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Length_Length___Boxed * __this, VisualElement * ve, StylePropertyId__Enum prop, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01450300, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Length_Length__LocalInit, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Length_Length___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01450A70, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Length_Length__Remove, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Length_Length___Boxed * __this, int32_t cancelledIndex, MethodInfo * method)); -DO_APP_FUNC(0x01450EB0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Length_Length__RemoveAll, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Length_Length___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01450E20, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Length_Length__RemoveAll_1, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Length_Length___Boxed * __this, VisualElement * ve, MethodInfo * method)); -DO_APP_FUNC(0x01450DD0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Length_Length__Replace, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Length_Length___Boxed * __this, int32_t index, StylePropertyAnimationSystem_Values_1_T_EmptyData_Length_ timingData, Length styleData, MethodInfo * method)); -DO_APP_FUNC(0x0144C360, int32_t, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Length_Length__get_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Length_Length___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014501D0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Length_Length__set_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Length_Length___Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x014516C0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_System_Object__Add, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_System_Object___Boxed * __this, VisualElement * owner, StylePropertyId__Enum prop, StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_ timingData, Object * styleData, MethodInfo * method)); +DO_APP_FUNC(0x01450FB0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Length_Length__GetActivePropertiesForElement, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Length_Length_ * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outProperties, MethodInfo * method)); +DO_APP_FUNC(0x014506E0, bool, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Length_Length__IndexOf, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Length_Length_ * __this, VisualElement * ve, StylePropertyId__Enum prop, int32_t * index, MethodInfo * method)); +DO_APP_FUNC(0x01450300, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Length_Length__LocalInit, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Length_Length_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01450A70, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Length_Length__Remove, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Length_Length_ * __this, int32_t cancelledIndex, MethodInfo * method)); +DO_APP_FUNC(0x01450EB0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Length_Length__RemoveAll, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Length_Length_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01450E20, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Length_Length__RemoveAll_1, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Length_Length_ * __this, VisualElement * ve, MethodInfo * method)); +DO_APP_FUNC(0x01450DD0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Length_Length__Replace, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Length_Length_ * __this, int32_t index, StylePropertyAnimationSystem_Values_1_T_EmptyData_Length_ timingData, Length styleData, MethodInfo * method)); +DO_APP_FUNC(0x0144C360, int32_t, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Length_Length__get_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Length_Length_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014501D0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Length_Length__set_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Length_Length_ * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x014516C0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_System_Object__Add, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_System_Object_ * __this, VisualElement * owner, StylePropertyId__Enum prop, StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_ timingData, Object * styleData, MethodInfo * method)); DO_APP_FUNC(0x014514F0, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_System_Object_, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_System_Object__Create, (MethodInfo * method)); -DO_APP_FUNC(0x01451E40, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_System_Object__GetActivePropertiesForElement, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_System_Object___Boxed * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outProperties, MethodInfo * method)); -DO_APP_FUNC(0x01451570, bool, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_System_Object__IndexOf, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_System_Object___Boxed * __this, VisualElement * ve, StylePropertyId__Enum prop, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01451190, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_System_Object__LocalInit, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01451900, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_System_Object__Remove, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_System_Object___Boxed * __this, int32_t cancelledIndex, MethodInfo * method)); -DO_APP_FUNC(0x01451D40, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_System_Object__RemoveAll, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01451CB0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_System_Object__RemoveAll_1, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_System_Object___Boxed * __this, VisualElement * ve, MethodInfo * method)); -DO_APP_FUNC(0x01451C70, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_System_Object__Replace, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_System_Object___Boxed * __this, int32_t index, StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_ timingData, Object * styleData, MethodInfo * method)); -DO_APP_FUNC(0x0144C360, int32_t, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_System_Object__get_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01451060, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_System_Object__set_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_System_Object___Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x01452550, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate_Rotate__Add, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate_Rotate___Boxed * __this, VisualElement * owner, StylePropertyId__Enum prop, StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate_ timingData, Rotate_1 styleData, MethodInfo * method)); +DO_APP_FUNC(0x01451E40, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_System_Object__GetActivePropertiesForElement, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_System_Object_ * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outProperties, MethodInfo * method)); +DO_APP_FUNC(0x01451570, bool, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_System_Object__IndexOf, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_System_Object_ * __this, VisualElement * ve, StylePropertyId__Enum prop, int32_t * index, MethodInfo * method)); +DO_APP_FUNC(0x01451190, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_System_Object__LocalInit, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01451900, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_System_Object__Remove, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_System_Object_ * __this, int32_t cancelledIndex, MethodInfo * method)); +DO_APP_FUNC(0x01451D40, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_System_Object__RemoveAll, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01451CB0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_System_Object__RemoveAll_1, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_System_Object_ * __this, VisualElement * ve, MethodInfo * method)); +DO_APP_FUNC(0x01451C70, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_System_Object__Replace, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_System_Object_ * __this, int32_t index, StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_ timingData, Object * styleData, MethodInfo * method)); +DO_APP_FUNC(0x0144C360, int32_t, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_System_Object__get_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01451060, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_System_Object__set_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_System_Object_ * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x01452550, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate_Rotate__Add, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate_Rotate_ * __this, VisualElement * owner, StylePropertyId__Enum prop, StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate_ timingData, Rotate_1 styleData, MethodInfo * method)); DO_APP_FUNC(0x01452380, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate_Rotate_, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate_Rotate__Create, (MethodInfo * method)); -DO_APP_FUNC(0x01452D60, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate_Rotate__GetActivePropertiesForElement, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate_Rotate___Boxed * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outProperties, MethodInfo * method)); -DO_APP_FUNC(0x01452400, bool, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate_Rotate__IndexOf, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate_Rotate___Boxed * __this, VisualElement * ve, StylePropertyId__Enum prop, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01452020, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate_Rotate__LocalInit, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate_Rotate___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014527B0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate_Rotate__Remove, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate_Rotate___Boxed * __this, int32_t cancelledIndex, MethodInfo * method)); -DO_APP_FUNC(0x01452C60, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate_Rotate__RemoveAll, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate_Rotate___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01452BD0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate_Rotate__RemoveAll_1, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate_Rotate___Boxed * __this, VisualElement * ve, MethodInfo * method)); -DO_APP_FUNC(0x01452B70, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate_Rotate__Replace, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate_Rotate___Boxed * __this, int32_t index, StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate_ timingData, Rotate_1 styleData, MethodInfo * method)); -DO_APP_FUNC(0x0144C360, int32_t, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate_Rotate__get_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate_Rotate___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01451EF0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate_Rotate__set_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate_Rotate___Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x01453470, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale_Scale__Add, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale_Scale___Boxed * __this, VisualElement * owner, StylePropertyId__Enum prop, StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale_ timingData, Scale styleData, MethodInfo * method)); +DO_APP_FUNC(0x01452D60, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate_Rotate__GetActivePropertiesForElement, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate_Rotate_ * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outProperties, MethodInfo * method)); +DO_APP_FUNC(0x01452400, bool, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate_Rotate__IndexOf, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate_Rotate_ * __this, VisualElement * ve, StylePropertyId__Enum prop, int32_t * index, MethodInfo * method)); +DO_APP_FUNC(0x01452020, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate_Rotate__LocalInit, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate_Rotate_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014527B0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate_Rotate__Remove, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate_Rotate_ * __this, int32_t cancelledIndex, MethodInfo * method)); +DO_APP_FUNC(0x01452C60, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate_Rotate__RemoveAll, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate_Rotate_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01452BD0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate_Rotate__RemoveAll_1, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate_Rotate_ * __this, VisualElement * ve, MethodInfo * method)); +DO_APP_FUNC(0x01452B70, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate_Rotate__Replace, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate_Rotate_ * __this, int32_t index, StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate_ timingData, Rotate_1 styleData, MethodInfo * method)); +DO_APP_FUNC(0x0144C360, int32_t, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate_Rotate__get_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate_Rotate_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01451EF0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate_Rotate__set_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate_Rotate_ * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x01453470, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale_Scale__Add, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale_Scale_ * __this, VisualElement * owner, StylePropertyId__Enum prop, StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale_ timingData, Scale styleData, MethodInfo * method)); DO_APP_FUNC(0x014532A0, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale_Scale_, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale_Scale__Create, (MethodInfo * method)); -DO_APP_FUNC(0x01453BE0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale_Scale__GetActivePropertiesForElement, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale_Scale___Boxed * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outProperties, MethodInfo * method)); -DO_APP_FUNC(0x01453320, bool, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale_Scale__IndexOf, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale_Scale___Boxed * __this, VisualElement * ve, StylePropertyId__Enum prop, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01452F40, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale_Scale__LocalInit, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale_Scale___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014536C0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale_Scale__Remove, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale_Scale___Boxed * __this, int32_t cancelledIndex, MethodInfo * method)); -DO_APP_FUNC(0x01453AE0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale_Scale__RemoveAll, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale_Scale___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01453A50, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale_Scale__RemoveAll_1, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale_Scale___Boxed * __this, VisualElement * ve, MethodInfo * method)); -DO_APP_FUNC(0x0144E050, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale_Scale__Replace, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale_Scale___Boxed * __this, int32_t index, StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale_ timingData, Scale styleData, MethodInfo * method)); -DO_APP_FUNC(0x0144C360, int32_t, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale_Scale__get_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale_Scale___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01452E10, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale_Scale__set_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale_Scale___Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x014542F0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single_System_Single__Add, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single_System_Single___Boxed * __this, VisualElement * owner, StylePropertyId__Enum prop, StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single_ timingData, float styleData, MethodInfo * method)); +DO_APP_FUNC(0x01453BE0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale_Scale__GetActivePropertiesForElement, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale_Scale_ * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outProperties, MethodInfo * method)); +DO_APP_FUNC(0x01453320, bool, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale_Scale__IndexOf, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale_Scale_ * __this, VisualElement * ve, StylePropertyId__Enum prop, int32_t * index, MethodInfo * method)); +DO_APP_FUNC(0x01452F40, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale_Scale__LocalInit, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale_Scale_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014536C0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale_Scale__Remove, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale_Scale_ * __this, int32_t cancelledIndex, MethodInfo * method)); +DO_APP_FUNC(0x01453AE0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale_Scale__RemoveAll, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale_Scale_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01453A50, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale_Scale__RemoveAll_1, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale_Scale_ * __this, VisualElement * ve, MethodInfo * method)); +DO_APP_FUNC(0x0144E050, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale_Scale__Replace, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale_Scale_ * __this, int32_t index, StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale_ timingData, Scale styleData, MethodInfo * method)); +DO_APP_FUNC(0x0144C360, int32_t, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale_Scale__get_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale_Scale_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01452E10, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale_Scale__set_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale_Scale_ * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x014542F0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single_System_Single__Add, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single_System_Single_ * __this, VisualElement * owner, StylePropertyId__Enum prop, StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single_ timingData, float styleData, MethodInfo * method)); DO_APP_FUNC(0x01454120, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single_System_Single_, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single_System_Single__Create, (MethodInfo * method)); -DO_APP_FUNC(0x01454A70, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single_System_Single__GetActivePropertiesForElement, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single_System_Single___Boxed * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outProperties, MethodInfo * method)); -DO_APP_FUNC(0x014541A0, bool, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single_System_Single__IndexOf, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single_System_Single___Boxed * __this, VisualElement * ve, StylePropertyId__Enum prop, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01453DC0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single_System_Single__LocalInit, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01454530, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single_System_Single__Remove, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single_System_Single___Boxed * __this, int32_t cancelledIndex, MethodInfo * method)); -DO_APP_FUNC(0x01454970, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single_System_Single__RemoveAll, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014548E0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single_System_Single__RemoveAll_1, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single_System_Single___Boxed * __this, VisualElement * ve, MethodInfo * method)); -DO_APP_FUNC(0x01454890, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single_System_Single__Replace, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single_System_Single___Boxed * __this, int32_t index, StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single_ timingData, float styleData, MethodInfo * method)); -DO_APP_FUNC(0x0144C360, int32_t, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single_System_Single__get_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01453C90, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single_System_Single__set_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single_System_Single___Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x01455180, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow_TextShadow__Add, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow_TextShadow___Boxed * __this, VisualElement * owner, StylePropertyId__Enum prop, StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow_ timingData, TextShadow styleData, MethodInfo * method)); +DO_APP_FUNC(0x01454A70, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single_System_Single__GetActivePropertiesForElement, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single_System_Single_ * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outProperties, MethodInfo * method)); +DO_APP_FUNC(0x014541A0, bool, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single_System_Single__IndexOf, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single_System_Single_ * __this, VisualElement * ve, StylePropertyId__Enum prop, int32_t * index, MethodInfo * method)); +DO_APP_FUNC(0x01453DC0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single_System_Single__LocalInit, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01454530, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single_System_Single__Remove, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single_System_Single_ * __this, int32_t cancelledIndex, MethodInfo * method)); +DO_APP_FUNC(0x01454970, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single_System_Single__RemoveAll, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014548E0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single_System_Single__RemoveAll_1, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single_System_Single_ * __this, VisualElement * ve, MethodInfo * method)); +DO_APP_FUNC(0x01454890, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single_System_Single__Replace, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single_System_Single_ * __this, int32_t index, StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single_ timingData, float styleData, MethodInfo * method)); +DO_APP_FUNC(0x0144C360, int32_t, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single_System_Single__get_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01453C90, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single_System_Single__set_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single_System_Single_ * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x01455180, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow_TextShadow__Add, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow_TextShadow_ * __this, VisualElement * owner, StylePropertyId__Enum prop, StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow_ timingData, TextShadow styleData, MethodInfo * method)); DO_APP_FUNC(0x01454FB0, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow_TextShadow_, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow_TextShadow__Create, (MethodInfo * method)); -DO_APP_FUNC(0x014559B0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow_TextShadow__GetActivePropertiesForElement, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow_TextShadow___Boxed * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outProperties, MethodInfo * method)); -DO_APP_FUNC(0x01455030, bool, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow_TextShadow__IndexOf, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow_TextShadow___Boxed * __this, VisualElement * ve, StylePropertyId__Enum prop, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01454C50, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow_TextShadow__LocalInit, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow_TextShadow___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014553E0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow_TextShadow__Remove, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow_TextShadow___Boxed * __this, int32_t cancelledIndex, MethodInfo * method)); -DO_APP_FUNC(0x014558B0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow_TextShadow__RemoveAll, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow_TextShadow___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01455820, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow_TextShadow__RemoveAll_1, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow_TextShadow___Boxed * __this, VisualElement * ve, MethodInfo * method)); -DO_APP_FUNC(0x014557B0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow_TextShadow__Replace, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow_TextShadow___Boxed * __this, int32_t index, StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow_ timingData, TextShadow styleData, MethodInfo * method)); -DO_APP_FUNC(0x0144C360, int32_t, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow_TextShadow__get_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow_TextShadow___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01454B20, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow_TextShadow__set_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow_TextShadow___Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x014560C0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin_TransformOrigin__Add, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin_TransformOrigin___Boxed * __this, VisualElement * owner, StylePropertyId__Enum prop, StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin_ timingData, TransformOrigin styleData, MethodInfo * method)); +DO_APP_FUNC(0x014559B0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow_TextShadow__GetActivePropertiesForElement, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow_TextShadow_ * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outProperties, MethodInfo * method)); +DO_APP_FUNC(0x01455030, bool, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow_TextShadow__IndexOf, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow_TextShadow_ * __this, VisualElement * ve, StylePropertyId__Enum prop, int32_t * index, MethodInfo * method)); +DO_APP_FUNC(0x01454C50, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow_TextShadow__LocalInit, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow_TextShadow_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014553E0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow_TextShadow__Remove, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow_TextShadow_ * __this, int32_t cancelledIndex, MethodInfo * method)); +DO_APP_FUNC(0x014558B0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow_TextShadow__RemoveAll, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow_TextShadow_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01455820, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow_TextShadow__RemoveAll_1, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow_TextShadow_ * __this, VisualElement * ve, MethodInfo * method)); +DO_APP_FUNC(0x014557B0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow_TextShadow__Replace, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow_TextShadow_ * __this, int32_t index, StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow_ timingData, TextShadow styleData, MethodInfo * method)); +DO_APP_FUNC(0x0144C360, int32_t, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow_TextShadow__get_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow_TextShadow_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01454B20, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow_TextShadow__set_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow_TextShadow_ * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x014560C0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin_TransformOrigin__Add, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin_TransformOrigin_ * __this, VisualElement * owner, StylePropertyId__Enum prop, StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin_ timingData, TransformOrigin styleData, MethodInfo * method)); DO_APP_FUNC(0x01455EF0, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin_TransformOrigin_, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin_TransformOrigin__Create, (MethodInfo * method)); -DO_APP_FUNC(0x014568B0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin_TransformOrigin__GetActivePropertiesForElement, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin_TransformOrigin___Boxed * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outProperties, MethodInfo * method)); -DO_APP_FUNC(0x01455F70, bool, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin_TransformOrigin__IndexOf, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin_TransformOrigin___Boxed * __this, VisualElement * ve, StylePropertyId__Enum prop, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01455B90, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin_TransformOrigin__LocalInit, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin_TransformOrigin___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01456320, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin_TransformOrigin__Remove, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin_TransformOrigin___Boxed * __this, int32_t cancelledIndex, MethodInfo * method)); -DO_APP_FUNC(0x014567B0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin_TransformOrigin__RemoveAll, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin_TransformOrigin___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01456720, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin_TransformOrigin__RemoveAll_1, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin_TransformOrigin___Boxed * __this, VisualElement * ve, MethodInfo * method)); -DO_APP_FUNC(0x014566C0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin_TransformOrigin__Replace, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin_TransformOrigin___Boxed * __this, int32_t index, StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin_ timingData, TransformOrigin styleData, MethodInfo * method)); -DO_APP_FUNC(0x0144C360, int32_t, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin_TransformOrigin__get_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin_TransformOrigin___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01455A60, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin_TransformOrigin__set_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin_TransformOrigin___Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x01456FC0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate_Translate__Add, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate_Translate___Boxed * __this, VisualElement * owner, StylePropertyId__Enum prop, StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate_ timingData, Translate_1 styleData, MethodInfo * method)); +DO_APP_FUNC(0x014568B0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin_TransformOrigin__GetActivePropertiesForElement, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin_TransformOrigin_ * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outProperties, MethodInfo * method)); +DO_APP_FUNC(0x01455F70, bool, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin_TransformOrigin__IndexOf, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin_TransformOrigin_ * __this, VisualElement * ve, StylePropertyId__Enum prop, int32_t * index, MethodInfo * method)); +DO_APP_FUNC(0x01455B90, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin_TransformOrigin__LocalInit, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin_TransformOrigin_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01456320, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin_TransformOrigin__Remove, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin_TransformOrigin_ * __this, int32_t cancelledIndex, MethodInfo * method)); +DO_APP_FUNC(0x014567B0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin_TransformOrigin__RemoveAll, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin_TransformOrigin_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01456720, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin_TransformOrigin__RemoveAll_1, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin_TransformOrigin_ * __this, VisualElement * ve, MethodInfo * method)); +DO_APP_FUNC(0x014566C0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin_TransformOrigin__Replace, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin_TransformOrigin_ * __this, int32_t index, StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin_ timingData, TransformOrigin styleData, MethodInfo * method)); +DO_APP_FUNC(0x0144C360, int32_t, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin_TransformOrigin__get_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin_TransformOrigin_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01455A60, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin_TransformOrigin__set_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin_TransformOrigin_ * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x01456FC0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate_Translate__Add, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate_Translate_ * __this, VisualElement * owner, StylePropertyId__Enum prop, StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate_ timingData, Translate_1 styleData, MethodInfo * method)); DO_APP_FUNC(0x01456DF0, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate_Translate_, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate_Translate__Create, (MethodInfo * method)); -DO_APP_FUNC(0x01457770, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate_Translate__GetActivePropertiesForElement, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate_Translate___Boxed * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outProperties, MethodInfo * method)); -DO_APP_FUNC(0x01456E70, bool, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate_Translate__IndexOf, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate_Translate___Boxed * __this, VisualElement * ve, StylePropertyId__Enum prop, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01456A90, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate_Translate__LocalInit, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate_Translate___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01457220, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate_Translate__Remove, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate_Translate___Boxed * __this, int32_t cancelledIndex, MethodInfo * method)); -DO_APP_FUNC(0x01457670, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate_Translate__RemoveAll, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate_Translate___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014575E0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate_Translate__RemoveAll_1, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate_Translate___Boxed * __this, VisualElement * ve, MethodInfo * method)); -DO_APP_FUNC(0x01452B70, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate_Translate__Replace, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate_Translate___Boxed * __this, int32_t index, StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate_ timingData, Translate_1 styleData, MethodInfo * method)); -DO_APP_FUNC(0x0144C360, int32_t, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate_Translate__get_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate_Translate___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01456960, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate_Translate__set_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate_Translate___Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x01457E80, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Background_StylePropertyAnimationSystem_Values_1_T_StyleData_Background__Add, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Background_StylePropertyAnimationSystem_Values_1_T_StyleData_Background___Boxed * __this, VisualElement * owner, StylePropertyId__Enum prop, StylePropertyAnimationSystem_Values_1_T_TimingData_Background_ timingData, StylePropertyAnimationSystem_Values_1_T_StyleData_Background_ styleData, MethodInfo * method)); +DO_APP_FUNC(0x01457770, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate_Translate__GetActivePropertiesForElement, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate_Translate_ * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outProperties, MethodInfo * method)); +DO_APP_FUNC(0x01456E70, bool, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate_Translate__IndexOf, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate_Translate_ * __this, VisualElement * ve, StylePropertyId__Enum prop, int32_t * index, MethodInfo * method)); +DO_APP_FUNC(0x01456A90, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate_Translate__LocalInit, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate_Translate_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01457220, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate_Translate__Remove, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate_Translate_ * __this, int32_t cancelledIndex, MethodInfo * method)); +DO_APP_FUNC(0x01457670, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate_Translate__RemoveAll, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate_Translate_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014575E0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate_Translate__RemoveAll_1, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate_Translate_ * __this, VisualElement * ve, MethodInfo * method)); +DO_APP_FUNC(0x01452B70, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate_Translate__Replace, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate_Translate_ * __this, int32_t index, StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate_ timingData, Translate_1 styleData, MethodInfo * method)); +DO_APP_FUNC(0x0144C360, int32_t, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate_Translate__get_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate_Translate_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01456960, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate_Translate__set_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate_Translate_ * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x01457E80, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Background_StylePropertyAnimationSystem_Values_1_T_StyleData_Background__Add, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Background_StylePropertyAnimationSystem_Values_1_T_StyleData_Background_ * __this, VisualElement * owner, StylePropertyId__Enum prop, StylePropertyAnimationSystem_Values_1_T_TimingData_Background_ timingData, StylePropertyAnimationSystem_Values_1_T_StyleData_Background_ styleData, MethodInfo * method)); DO_APP_FUNC(0x01457CB0, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Background_StylePropertyAnimationSystem_Values_1_T_StyleData_Background_, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Background_StylePropertyAnimationSystem_Values_1_T_StyleData_Background__Create, (MethodInfo * method)); -DO_APP_FUNC(0x01458970, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Background_StylePropertyAnimationSystem_Values_1_T_StyleData_Background__GetActivePropertiesForElement, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Background_StylePropertyAnimationSystem_Values_1_T_StyleData_Background___Boxed * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outProperties, MethodInfo * method)); -DO_APP_FUNC(0x01457D30, bool, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Background_StylePropertyAnimationSystem_Values_1_T_StyleData_Background__IndexOf, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Background_StylePropertyAnimationSystem_Values_1_T_StyleData_Background___Boxed * __this, VisualElement * ve, StylePropertyId__Enum prop, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01457950, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Background_StylePropertyAnimationSystem_Values_1_T_StyleData_Background__LocalInit, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Background_StylePropertyAnimationSystem_Values_1_T_StyleData_Background___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01458190, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Background_StylePropertyAnimationSystem_Values_1_T_StyleData_Background__Remove, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Background_StylePropertyAnimationSystem_Values_1_T_StyleData_Background___Boxed * __this, int32_t cancelledIndex, MethodInfo * method)); -DO_APP_FUNC(0x01458870, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Background_StylePropertyAnimationSystem_Values_1_T_StyleData_Background__RemoveAll, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Background_StylePropertyAnimationSystem_Values_1_T_StyleData_Background___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014587E0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Background_StylePropertyAnimationSystem_Values_1_T_StyleData_Background__RemoveAll_1, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Background_StylePropertyAnimationSystem_Values_1_T_StyleData_Background___Boxed * __this, VisualElement * ve, MethodInfo * method)); -DO_APP_FUNC(0x014586B0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Background_StylePropertyAnimationSystem_Values_1_T_StyleData_Background__Replace, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Background_StylePropertyAnimationSystem_Values_1_T_StyleData_Background___Boxed * __this, int32_t index, StylePropertyAnimationSystem_Values_1_T_TimingData_Background_ timingData, StylePropertyAnimationSystem_Values_1_T_StyleData_Background_ styleData, MethodInfo * method)); -DO_APP_FUNC(0x0144C360, int32_t, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Background_StylePropertyAnimationSystem_Values_1_T_StyleData_Background__get_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Background_StylePropertyAnimationSystem_Values_1_T_StyleData_Background___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01457820, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Background_StylePropertyAnimationSystem_Values_1_T_StyleData_Background__set_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Background_StylePropertyAnimationSystem_Values_1_T_StyleData_Background___Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x01459080, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color_StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color__Add, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color_StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color___Boxed * __this, VisualElement * owner, StylePropertyId__Enum prop, StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color_ timingData, StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color_ styleData, MethodInfo * method)); +DO_APP_FUNC(0x01458970, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Background_StylePropertyAnimationSystem_Values_1_T_StyleData_Background__GetActivePropertiesForElement, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Background_StylePropertyAnimationSystem_Values_1_T_StyleData_Background_ * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outProperties, MethodInfo * method)); +DO_APP_FUNC(0x01457D30, bool, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Background_StylePropertyAnimationSystem_Values_1_T_StyleData_Background__IndexOf, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Background_StylePropertyAnimationSystem_Values_1_T_StyleData_Background_ * __this, VisualElement * ve, StylePropertyId__Enum prop, int32_t * index, MethodInfo * method)); +DO_APP_FUNC(0x01457950, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Background_StylePropertyAnimationSystem_Values_1_T_StyleData_Background__LocalInit, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Background_StylePropertyAnimationSystem_Values_1_T_StyleData_Background_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01458190, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Background_StylePropertyAnimationSystem_Values_1_T_StyleData_Background__Remove, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Background_StylePropertyAnimationSystem_Values_1_T_StyleData_Background_ * __this, int32_t cancelledIndex, MethodInfo * method)); +DO_APP_FUNC(0x01458870, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Background_StylePropertyAnimationSystem_Values_1_T_StyleData_Background__RemoveAll, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Background_StylePropertyAnimationSystem_Values_1_T_StyleData_Background_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014587E0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Background_StylePropertyAnimationSystem_Values_1_T_StyleData_Background__RemoveAll_1, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Background_StylePropertyAnimationSystem_Values_1_T_StyleData_Background_ * __this, VisualElement * ve, MethodInfo * method)); +DO_APP_FUNC(0x014586B0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Background_StylePropertyAnimationSystem_Values_1_T_StyleData_Background__Replace, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Background_StylePropertyAnimationSystem_Values_1_T_StyleData_Background_ * __this, int32_t index, StylePropertyAnimationSystem_Values_1_T_TimingData_Background_ timingData, StylePropertyAnimationSystem_Values_1_T_StyleData_Background_ styleData, MethodInfo * method)); +DO_APP_FUNC(0x0144C360, int32_t, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Background_StylePropertyAnimationSystem_Values_1_T_StyleData_Background__get_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Background_StylePropertyAnimationSystem_Values_1_T_StyleData_Background_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01457820, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Background_StylePropertyAnimationSystem_Values_1_T_StyleData_Background__set_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Background_StylePropertyAnimationSystem_Values_1_T_StyleData_Background_ * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x01459080, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color_StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color__Add, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color_StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color_ * __this, VisualElement * owner, StylePropertyId__Enum prop, StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color_ timingData, StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color_ styleData, MethodInfo * method)); DO_APP_FUNC(0x01458EB0, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color_StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color_, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color_StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color__Create, (MethodInfo * method)); -DO_APP_FUNC(0x01459AE0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color_StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color__GetActivePropertiesForElement, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color_StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color___Boxed * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outProperties, MethodInfo * method)); -DO_APP_FUNC(0x01458F30, bool, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color_StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color__IndexOf, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color_StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color___Boxed * __this, VisualElement * ve, StylePropertyId__Enum prop, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01458B50, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color_StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color__LocalInit, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color_StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01459370, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color_StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color__Remove, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color_StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color___Boxed * __this, int32_t cancelledIndex, MethodInfo * method)); -DO_APP_FUNC(0x014599E0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color_StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color__RemoveAll, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color_StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01459950, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color_StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color__RemoveAll_1, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color_StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color___Boxed * __this, VisualElement * ve, MethodInfo * method)); -DO_APP_FUNC(0x01459860, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color_StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color__Replace, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color_StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color___Boxed * __this, int32_t index, StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color_ timingData, StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color_ styleData, MethodInfo * method)); -DO_APP_FUNC(0x0144C360, int32_t, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color_StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color__get_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color_StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01458A20, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color_StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color__set_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color_StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color___Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x0145A1F0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition_StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition__Add, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition_StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition___Boxed * __this, VisualElement * owner, StylePropertyId__Enum prop, StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition_ timingData, StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition_ styleData, MethodInfo * method)); +DO_APP_FUNC(0x01459AE0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color_StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color__GetActivePropertiesForElement, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color_StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color_ * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outProperties, MethodInfo * method)); +DO_APP_FUNC(0x01458F30, bool, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color_StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color__IndexOf, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color_StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color_ * __this, VisualElement * ve, StylePropertyId__Enum prop, int32_t * index, MethodInfo * method)); +DO_APP_FUNC(0x01458B50, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color_StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color__LocalInit, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color_StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01459370, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color_StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color__Remove, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color_StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color_ * __this, int32_t cancelledIndex, MethodInfo * method)); +DO_APP_FUNC(0x014599E0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color_StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color__RemoveAll, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color_StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01459950, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color_StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color__RemoveAll_1, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color_StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color_ * __this, VisualElement * ve, MethodInfo * method)); +DO_APP_FUNC(0x01459860, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color_StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color__Replace, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color_StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color_ * __this, int32_t index, StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color_ timingData, StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color_ styleData, MethodInfo * method)); +DO_APP_FUNC(0x0144C360, int32_t, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color_StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color__get_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color_StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01458A20, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color_StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color__set_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color_StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color_ * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x0145A1F0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition_StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition__Add, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition_StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition_ * __this, VisualElement * owner, StylePropertyId__Enum prop, StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition_ timingData, StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition_ styleData, MethodInfo * method)); DO_APP_FUNC(0x0145A020, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition_StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition_, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition_StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition__Create, (MethodInfo * method)); -DO_APP_FUNC(0x0145ADF0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition_StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition__GetActivePropertiesForElement, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition_StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition___Boxed * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outProperties, MethodInfo * method)); -DO_APP_FUNC(0x0145A0A0, bool, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition_StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition__IndexOf, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition_StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition___Boxed * __this, VisualElement * ve, StylePropertyId__Enum prop, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01459CC0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition_StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition__LocalInit, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition_StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0145A530, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition_StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition__Remove, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition_StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition___Boxed * __this, int32_t cancelledIndex, MethodInfo * method)); -DO_APP_FUNC(0x0145ACF0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition_StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition__RemoveAll, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition_StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0145AC60, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition_StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition__RemoveAll_1, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition_StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition___Boxed * __this, VisualElement * ve, MethodInfo * method)); -DO_APP_FUNC(0x0145AB00, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition_StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition__Replace, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition_StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition___Boxed * __this, int32_t index, StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition_ timingData, StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition_ styleData, MethodInfo * method)); -DO_APP_FUNC(0x0144C360, int32_t, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition_StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition__get_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition_StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01459B90, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition_StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition__set_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition_StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition___Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x0145B500, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32__Add, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32___Boxed * __this, VisualElement * owner, StylePropertyId__Enum prop, StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32_ timingData, StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32_ styleData, MethodInfo * method)); +DO_APP_FUNC(0x0145ADF0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition_StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition__GetActivePropertiesForElement, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition_StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition_ * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outProperties, MethodInfo * method)); +DO_APP_FUNC(0x0145A0A0, bool, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition_StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition__IndexOf, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition_StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition_ * __this, VisualElement * ve, StylePropertyId__Enum prop, int32_t * index, MethodInfo * method)); +DO_APP_FUNC(0x01459CC0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition_StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition__LocalInit, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition_StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0145A530, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition_StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition__Remove, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition_StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition_ * __this, int32_t cancelledIndex, MethodInfo * method)); +DO_APP_FUNC(0x0145ACF0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition_StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition__RemoveAll, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition_StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0145AC60, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition_StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition__RemoveAll_1, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition_StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition_ * __this, VisualElement * ve, MethodInfo * method)); +DO_APP_FUNC(0x0145AB00, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition_StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition__Replace, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition_StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition_ * __this, int32_t index, StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition_ timingData, StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition_ styleData, MethodInfo * method)); +DO_APP_FUNC(0x0144C360, int32_t, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition_StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition__get_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition_StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01459B90, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition_StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition__set_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition_StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition_ * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x0145B500, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32__Add, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32_ * __this, VisualElement * owner, StylePropertyId__Enum prop, StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32_ timingData, StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32_ styleData, MethodInfo * method)); DO_APP_FUNC(0x0145B330, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32_, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32__Create, (MethodInfo * method)); -DO_APP_FUNC(0x0145BF00, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32__GetActivePropertiesForElement, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32___Boxed * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outProperties, MethodInfo * method)); -DO_APP_FUNC(0x0145B3B0, bool, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32__IndexOf, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32___Boxed * __this, VisualElement * ve, StylePropertyId__Enum prop, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x0145AFD0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32__LocalInit, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0145B7D0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32__Remove, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32___Boxed * __this, int32_t cancelledIndex, MethodInfo * method)); -DO_APP_FUNC(0x0145BE00, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32__RemoveAll, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0145BD70, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32__RemoveAll_1, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32___Boxed * __this, VisualElement * ve, MethodInfo * method)); -DO_APP_FUNC(0x0145BC90, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32__Replace, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32___Boxed * __this, int32_t index, StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32_ timingData, StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32_ styleData, MethodInfo * method)); -DO_APP_FUNC(0x0144C360, int32_t, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32__get_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0145AEA0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32__set_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32___Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x0145C610, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Length_StylePropertyAnimationSystem_Values_1_T_StyleData_Length__Add, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Length_StylePropertyAnimationSystem_Values_1_T_StyleData_Length___Boxed * __this, VisualElement * owner, StylePropertyId__Enum prop, StylePropertyAnimationSystem_Values_1_T_TimingData_Length_ timingData, StylePropertyAnimationSystem_Values_1_T_StyleData_Length_ styleData, MethodInfo * method)); +DO_APP_FUNC(0x0145BF00, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32__GetActivePropertiesForElement, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32_ * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outProperties, MethodInfo * method)); +DO_APP_FUNC(0x0145B3B0, bool, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32__IndexOf, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32_ * __this, VisualElement * ve, StylePropertyId__Enum prop, int32_t * index, MethodInfo * method)); +DO_APP_FUNC(0x0145AFD0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32__LocalInit, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0145B7D0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32__Remove, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32_ * __this, int32_t cancelledIndex, MethodInfo * method)); +DO_APP_FUNC(0x0145BE00, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32__RemoveAll, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0145BD70, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32__RemoveAll_1, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32_ * __this, VisualElement * ve, MethodInfo * method)); +DO_APP_FUNC(0x0145BC90, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32__Replace, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32_ * __this, int32_t index, StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32_ timingData, StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32_ styleData, MethodInfo * method)); +DO_APP_FUNC(0x0144C360, int32_t, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32__get_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0145AEA0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32__set_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32_ * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x0145C610, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Length_StylePropertyAnimationSystem_Values_1_T_StyleData_Length__Add, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Length_StylePropertyAnimationSystem_Values_1_T_StyleData_Length_ * __this, VisualElement * owner, StylePropertyId__Enum prop, StylePropertyAnimationSystem_Values_1_T_TimingData_Length_ timingData, StylePropertyAnimationSystem_Values_1_T_StyleData_Length_ styleData, MethodInfo * method)); DO_APP_FUNC(0x0145C440, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Length_StylePropertyAnimationSystem_Values_1_T_StyleData_Length_, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Length_StylePropertyAnimationSystem_Values_1_T_StyleData_Length__Create, (MethodInfo * method)); -DO_APP_FUNC(0x0145D030, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Length_StylePropertyAnimationSystem_Values_1_T_StyleData_Length__GetActivePropertiesForElement, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Length_StylePropertyAnimationSystem_Values_1_T_StyleData_Length___Boxed * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outProperties, MethodInfo * method)); -DO_APP_FUNC(0x0145C4C0, bool, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Length_StylePropertyAnimationSystem_Values_1_T_StyleData_Length__IndexOf, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Length_StylePropertyAnimationSystem_Values_1_T_StyleData_Length___Boxed * __this, VisualElement * ve, StylePropertyId__Enum prop, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x0145C0E0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Length_StylePropertyAnimationSystem_Values_1_T_StyleData_Length__LocalInit, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Length_StylePropertyAnimationSystem_Values_1_T_StyleData_Length___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0145C8F0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Length_StylePropertyAnimationSystem_Values_1_T_StyleData_Length__Remove, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Length_StylePropertyAnimationSystem_Values_1_T_StyleData_Length___Boxed * __this, int32_t cancelledIndex, MethodInfo * method)); -DO_APP_FUNC(0x0145CF30, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Length_StylePropertyAnimationSystem_Values_1_T_StyleData_Length__RemoveAll, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Length_StylePropertyAnimationSystem_Values_1_T_StyleData_Length___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0145CEA0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Length_StylePropertyAnimationSystem_Values_1_T_StyleData_Length__RemoveAll_1, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Length_StylePropertyAnimationSystem_Values_1_T_StyleData_Length___Boxed * __this, VisualElement * ve, MethodInfo * method)); -DO_APP_FUNC(0x0145CDC0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Length_StylePropertyAnimationSystem_Values_1_T_StyleData_Length__Replace, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Length_StylePropertyAnimationSystem_Values_1_T_StyleData_Length___Boxed * __this, int32_t index, StylePropertyAnimationSystem_Values_1_T_TimingData_Length_ timingData, StylePropertyAnimationSystem_Values_1_T_StyleData_Length_ styleData, MethodInfo * method)); -DO_APP_FUNC(0x0144C360, int32_t, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Length_StylePropertyAnimationSystem_Values_1_T_StyleData_Length__get_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Length_StylePropertyAnimationSystem_Values_1_T_StyleData_Length___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0145BFB0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Length_StylePropertyAnimationSystem_Values_1_T_StyleData_Length__set_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Length_StylePropertyAnimationSystem_Values_1_T_StyleData_Length___Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x0145D740, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object__Add, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object___Boxed * __this, VisualElement * owner, StylePropertyId__Enum prop, StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_ timingData, StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object_ styleData, MethodInfo * method)); +DO_APP_FUNC(0x0145D030, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Length_StylePropertyAnimationSystem_Values_1_T_StyleData_Length__GetActivePropertiesForElement, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Length_StylePropertyAnimationSystem_Values_1_T_StyleData_Length_ * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outProperties, MethodInfo * method)); +DO_APP_FUNC(0x0145C4C0, bool, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Length_StylePropertyAnimationSystem_Values_1_T_StyleData_Length__IndexOf, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Length_StylePropertyAnimationSystem_Values_1_T_StyleData_Length_ * __this, VisualElement * ve, StylePropertyId__Enum prop, int32_t * index, MethodInfo * method)); +DO_APP_FUNC(0x0145C0E0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Length_StylePropertyAnimationSystem_Values_1_T_StyleData_Length__LocalInit, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Length_StylePropertyAnimationSystem_Values_1_T_StyleData_Length_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0145C8F0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Length_StylePropertyAnimationSystem_Values_1_T_StyleData_Length__Remove, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Length_StylePropertyAnimationSystem_Values_1_T_StyleData_Length_ * __this, int32_t cancelledIndex, MethodInfo * method)); +DO_APP_FUNC(0x0145CF30, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Length_StylePropertyAnimationSystem_Values_1_T_StyleData_Length__RemoveAll, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Length_StylePropertyAnimationSystem_Values_1_T_StyleData_Length_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0145CEA0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Length_StylePropertyAnimationSystem_Values_1_T_StyleData_Length__RemoveAll_1, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Length_StylePropertyAnimationSystem_Values_1_T_StyleData_Length_ * __this, VisualElement * ve, MethodInfo * method)); +DO_APP_FUNC(0x0145CDC0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Length_StylePropertyAnimationSystem_Values_1_T_StyleData_Length__Replace, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Length_StylePropertyAnimationSystem_Values_1_T_StyleData_Length_ * __this, int32_t index, StylePropertyAnimationSystem_Values_1_T_TimingData_Length_ timingData, StylePropertyAnimationSystem_Values_1_T_StyleData_Length_ styleData, MethodInfo * method)); +DO_APP_FUNC(0x0144C360, int32_t, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Length_StylePropertyAnimationSystem_Values_1_T_StyleData_Length__get_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Length_StylePropertyAnimationSystem_Values_1_T_StyleData_Length_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0145BFB0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Length_StylePropertyAnimationSystem_Values_1_T_StyleData_Length__set_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Length_StylePropertyAnimationSystem_Values_1_T_StyleData_Length_ * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x0145D740, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object__Add, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object_ * __this, VisualElement * owner, StylePropertyId__Enum prop, StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_ timingData, StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object_ styleData, MethodInfo * method)); DO_APP_FUNC(0x0145D570, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object_, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object__Create, (MethodInfo * method)); -DO_APP_FUNC(0x0145E2D0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object__GetActivePropertiesForElement, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object___Boxed * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outProperties, MethodInfo * method)); -DO_APP_FUNC(0x0145D5F0, bool, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object__IndexOf, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object___Boxed * __this, VisualElement * ve, StylePropertyId__Enum prop, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x0145D210, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object__LocalInit, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0145DA70, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object__Remove, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object___Boxed * __this, int32_t cancelledIndex, MethodInfo * method)); -DO_APP_FUNC(0x0145E1D0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object__RemoveAll, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0145E140, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object__RemoveAll_1, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object___Boxed * __this, VisualElement * ve, MethodInfo * method)); -DO_APP_FUNC(0x0145E000, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object__Replace, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object___Boxed * __this, int32_t index, StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_ timingData, StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object_ styleData, MethodInfo * method)); -DO_APP_FUNC(0x0144C360, int32_t, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object__get_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0145D0E0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object__set_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object___Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x0145E9E0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate_StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate__Add, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate_StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate___Boxed * __this, VisualElement * owner, StylePropertyId__Enum prop, StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate_ timingData, StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate_ styleData, MethodInfo * method)); +DO_APP_FUNC(0x0145E2D0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object__GetActivePropertiesForElement, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object_ * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outProperties, MethodInfo * method)); +DO_APP_FUNC(0x0145D5F0, bool, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object__IndexOf, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object_ * __this, VisualElement * ve, StylePropertyId__Enum prop, int32_t * index, MethodInfo * method)); +DO_APP_FUNC(0x0145D210, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object__LocalInit, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0145DA70, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object__Remove, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object_ * __this, int32_t cancelledIndex, MethodInfo * method)); +DO_APP_FUNC(0x0145E1D0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object__RemoveAll, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0145E140, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object__RemoveAll_1, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object_ * __this, VisualElement * ve, MethodInfo * method)); +DO_APP_FUNC(0x0145E000, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object__Replace, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object_ * __this, int32_t index, StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_ timingData, StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object_ styleData, MethodInfo * method)); +DO_APP_FUNC(0x0144C360, int32_t, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object__get_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0145D0E0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object__set_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object_ * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x0145E9E0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate_StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate__Add, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate_StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate_ * __this, VisualElement * owner, StylePropertyId__Enum prop, StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate_ timingData, StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate_ styleData, MethodInfo * method)); DO_APP_FUNC(0x0145E810, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate_StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate_, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate_StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate__Create, (MethodInfo * method)); -DO_APP_FUNC(0x0145F490, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate_StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate__GetActivePropertiesForElement, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate_StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate___Boxed * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outProperties, MethodInfo * method)); -DO_APP_FUNC(0x0145E890, bool, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate_StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate__IndexOf, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate_StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate___Boxed * __this, VisualElement * ve, StylePropertyId__Enum prop, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x0145E4B0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate_StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate__LocalInit, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate_StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0145ECE0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate_StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate__Remove, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate_StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate___Boxed * __this, int32_t cancelledIndex, MethodInfo * method)); -DO_APP_FUNC(0x0145F390, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate_StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate__RemoveAll, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate_StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0145F300, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate_StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate__RemoveAll_1, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate_StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate___Boxed * __this, VisualElement * ve, MethodInfo * method)); -DO_APP_FUNC(0x0145F1F0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate_StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate__Replace, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate_StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate___Boxed * __this, int32_t index, StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate_ timingData, StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate_ styleData, MethodInfo * method)); -DO_APP_FUNC(0x0144C360, int32_t, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate_StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate__get_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate_StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0145E380, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate_StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate__set_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate_StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate___Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x0145FBA0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Scale_StylePropertyAnimationSystem_Values_1_T_StyleData_Scale__Add, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Scale_StylePropertyAnimationSystem_Values_1_T_StyleData_Scale___Boxed * __this, VisualElement * owner, StylePropertyId__Enum prop, StylePropertyAnimationSystem_Values_1_T_TimingData_Scale_ timingData, StylePropertyAnimationSystem_Values_1_T_StyleData_Scale_ styleData, MethodInfo * method)); +DO_APP_FUNC(0x0145F490, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate_StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate__GetActivePropertiesForElement, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate_StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate_ * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outProperties, MethodInfo * method)); +DO_APP_FUNC(0x0145E890, bool, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate_StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate__IndexOf, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate_StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate_ * __this, VisualElement * ve, StylePropertyId__Enum prop, int32_t * index, MethodInfo * method)); +DO_APP_FUNC(0x0145E4B0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate_StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate__LocalInit, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate_StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0145ECE0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate_StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate__Remove, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate_StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate_ * __this, int32_t cancelledIndex, MethodInfo * method)); +DO_APP_FUNC(0x0145F390, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate_StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate__RemoveAll, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate_StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0145F300, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate_StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate__RemoveAll_1, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate_StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate_ * __this, VisualElement * ve, MethodInfo * method)); +DO_APP_FUNC(0x0145F1F0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate_StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate__Replace, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate_StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate_ * __this, int32_t index, StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate_ timingData, StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate_ styleData, MethodInfo * method)); +DO_APP_FUNC(0x0144C360, int32_t, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate_StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate__get_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate_StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0145E380, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate_StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate__set_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate_StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate_ * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x0145FBA0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Scale_StylePropertyAnimationSystem_Values_1_T_StyleData_Scale__Add, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Scale_StylePropertyAnimationSystem_Values_1_T_StyleData_Scale_ * __this, VisualElement * owner, StylePropertyId__Enum prop, StylePropertyAnimationSystem_Values_1_T_TimingData_Scale_ timingData, StylePropertyAnimationSystem_Values_1_T_StyleData_Scale_ styleData, MethodInfo * method)); DO_APP_FUNC(0x0145F9D0, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Scale_StylePropertyAnimationSystem_Values_1_T_StyleData_Scale_, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Scale_StylePropertyAnimationSystem_Values_1_T_StyleData_Scale__Create, (MethodInfo * method)); -DO_APP_FUNC(0x01460510, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Scale_StylePropertyAnimationSystem_Values_1_T_StyleData_Scale__GetActivePropertiesForElement, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Scale_StylePropertyAnimationSystem_Values_1_T_StyleData_Scale___Boxed * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outProperties, MethodInfo * method)); -DO_APP_FUNC(0x0145FA50, bool, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Scale_StylePropertyAnimationSystem_Values_1_T_StyleData_Scale__IndexOf, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Scale_StylePropertyAnimationSystem_Values_1_T_StyleData_Scale___Boxed * __this, VisualElement * ve, StylePropertyId__Enum prop, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x0145F670, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Scale_StylePropertyAnimationSystem_Values_1_T_StyleData_Scale__LocalInit, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Scale_StylePropertyAnimationSystem_Values_1_T_StyleData_Scale___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0145FE90, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Scale_StylePropertyAnimationSystem_Values_1_T_StyleData_Scale__Remove, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Scale_StylePropertyAnimationSystem_Values_1_T_StyleData_Scale___Boxed * __this, int32_t cancelledIndex, MethodInfo * method)); -DO_APP_FUNC(0x01460410, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Scale_StylePropertyAnimationSystem_Values_1_T_StyleData_Scale__RemoveAll, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Scale_StylePropertyAnimationSystem_Values_1_T_StyleData_Scale___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01460380, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Scale_StylePropertyAnimationSystem_Values_1_T_StyleData_Scale__RemoveAll_1, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Scale_StylePropertyAnimationSystem_Values_1_T_StyleData_Scale___Boxed * __this, VisualElement * ve, MethodInfo * method)); -DO_APP_FUNC(0x01459860, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Scale_StylePropertyAnimationSystem_Values_1_T_StyleData_Scale__Replace, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Scale_StylePropertyAnimationSystem_Values_1_T_StyleData_Scale___Boxed * __this, int32_t index, StylePropertyAnimationSystem_Values_1_T_TimingData_Scale_ timingData, StylePropertyAnimationSystem_Values_1_T_StyleData_Scale_ styleData, MethodInfo * method)); -DO_APP_FUNC(0x0144C360, int32_t, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Scale_StylePropertyAnimationSystem_Values_1_T_StyleData_Scale__get_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Scale_StylePropertyAnimationSystem_Values_1_T_StyleData_Scale___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0145F540, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Scale_StylePropertyAnimationSystem_Values_1_T_StyleData_Scale__set_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Scale_StylePropertyAnimationSystem_Values_1_T_StyleData_Scale___Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x01460C20, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single__Add, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single___Boxed * __this, VisualElement * owner, StylePropertyId__Enum prop, StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single_ timingData, StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single_ styleData, MethodInfo * method)); +DO_APP_FUNC(0x01460510, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Scale_StylePropertyAnimationSystem_Values_1_T_StyleData_Scale__GetActivePropertiesForElement, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Scale_StylePropertyAnimationSystem_Values_1_T_StyleData_Scale_ * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outProperties, MethodInfo * method)); +DO_APP_FUNC(0x0145FA50, bool, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Scale_StylePropertyAnimationSystem_Values_1_T_StyleData_Scale__IndexOf, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Scale_StylePropertyAnimationSystem_Values_1_T_StyleData_Scale_ * __this, VisualElement * ve, StylePropertyId__Enum prop, int32_t * index, MethodInfo * method)); +DO_APP_FUNC(0x0145F670, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Scale_StylePropertyAnimationSystem_Values_1_T_StyleData_Scale__LocalInit, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Scale_StylePropertyAnimationSystem_Values_1_T_StyleData_Scale_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0145FE90, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Scale_StylePropertyAnimationSystem_Values_1_T_StyleData_Scale__Remove, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Scale_StylePropertyAnimationSystem_Values_1_T_StyleData_Scale_ * __this, int32_t cancelledIndex, MethodInfo * method)); +DO_APP_FUNC(0x01460410, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Scale_StylePropertyAnimationSystem_Values_1_T_StyleData_Scale__RemoveAll, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Scale_StylePropertyAnimationSystem_Values_1_T_StyleData_Scale_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01460380, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Scale_StylePropertyAnimationSystem_Values_1_T_StyleData_Scale__RemoveAll_1, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Scale_StylePropertyAnimationSystem_Values_1_T_StyleData_Scale_ * __this, VisualElement * ve, MethodInfo * method)); +DO_APP_FUNC(0x01459860, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Scale_StylePropertyAnimationSystem_Values_1_T_StyleData_Scale__Replace, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Scale_StylePropertyAnimationSystem_Values_1_T_StyleData_Scale_ * __this, int32_t index, StylePropertyAnimationSystem_Values_1_T_TimingData_Scale_ timingData, StylePropertyAnimationSystem_Values_1_T_StyleData_Scale_ styleData, MethodInfo * method)); +DO_APP_FUNC(0x0144C360, int32_t, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Scale_StylePropertyAnimationSystem_Values_1_T_StyleData_Scale__get_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Scale_StylePropertyAnimationSystem_Values_1_T_StyleData_Scale_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0145F540, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Scale_StylePropertyAnimationSystem_Values_1_T_StyleData_Scale__set_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Scale_StylePropertyAnimationSystem_Values_1_T_StyleData_Scale_ * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x01460C20, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single__Add, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single_ * __this, VisualElement * owner, StylePropertyId__Enum prop, StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single_ timingData, StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single_ styleData, MethodInfo * method)); DO_APP_FUNC(0x01460A50, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single_, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single__Create, (MethodInfo * method)); -DO_APP_FUNC(0x01461540, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single__GetActivePropertiesForElement, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single___Boxed * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outProperties, MethodInfo * method)); -DO_APP_FUNC(0x01460AD0, bool, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single__IndexOf, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single___Boxed * __this, VisualElement * ve, StylePropertyId__Enum prop, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x014606F0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single__LocalInit, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01460EF0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single__Remove, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single___Boxed * __this, int32_t cancelledIndex, MethodInfo * method)); -DO_APP_FUNC(0x01461440, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single__RemoveAll, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014613B0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single__RemoveAll_1, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single___Boxed * __this, VisualElement * ve, MethodInfo * method)); -DO_APP_FUNC(0x0145BC90, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single__Replace, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single___Boxed * __this, int32_t index, StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single_ timingData, StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single_ styleData, MethodInfo * method)); -DO_APP_FUNC(0x0144C360, int32_t, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single__get_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014605C0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single__set_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single___Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x01461C50, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow_StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow__Add, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow_StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow___Boxed * __this, VisualElement * owner, StylePropertyId__Enum prop, StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow_ timingData, StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow_ styleData, MethodInfo * method)); +DO_APP_FUNC(0x01461540, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single__GetActivePropertiesForElement, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single_ * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outProperties, MethodInfo * method)); +DO_APP_FUNC(0x01460AD0, bool, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single__IndexOf, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single_ * __this, VisualElement * ve, StylePropertyId__Enum prop, int32_t * index, MethodInfo * method)); +DO_APP_FUNC(0x014606F0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single__LocalInit, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01460EF0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single__Remove, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single_ * __this, int32_t cancelledIndex, MethodInfo * method)); +DO_APP_FUNC(0x01461440, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single__RemoveAll, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014613B0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single__RemoveAll_1, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single_ * __this, VisualElement * ve, MethodInfo * method)); +DO_APP_FUNC(0x0145BC90, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single__Replace, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single_ * __this, int32_t index, StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single_ timingData, StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single_ styleData, MethodInfo * method)); +DO_APP_FUNC(0x0144C360, int32_t, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single__get_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014605C0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single__set_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single_ * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x01461C50, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow_StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow__Add, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow_StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow_ * __this, VisualElement * owner, StylePropertyId__Enum prop, StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow_ timingData, StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow_ styleData, MethodInfo * method)); DO_APP_FUNC(0x01461A80, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow_StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow_, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow_StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow__Create, (MethodInfo * method)); -DO_APP_FUNC(0x01462700, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow_StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow__GetActivePropertiesForElement, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow_StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow___Boxed * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outProperties, MethodInfo * method)); -DO_APP_FUNC(0x01461B00, bool, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow_StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow__IndexOf, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow_StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow___Boxed * __this, VisualElement * ve, StylePropertyId__Enum prop, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01461720, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow_StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow__LocalInit, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow_StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01461F50, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow_StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow__Remove, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow_StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow___Boxed * __this, int32_t cancelledIndex, MethodInfo * method)); -DO_APP_FUNC(0x01462600, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow_StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow__RemoveAll, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow_StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01462570, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow_StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow__RemoveAll_1, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow_StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow___Boxed * __this, VisualElement * ve, MethodInfo * method)); -DO_APP_FUNC(0x01462460, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow_StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow__Replace, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow_StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow___Boxed * __this, int32_t index, StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow_ timingData, StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow_ styleData, MethodInfo * method)); -DO_APP_FUNC(0x0144C360, int32_t, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow_StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow__get_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow_StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014615F0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow_StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow__set_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow_StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow___Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x01462E10, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin_StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin__Add, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin_StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin___Boxed * __this, VisualElement * owner, StylePropertyId__Enum prop, StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin_ timingData, StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin_ styleData, MethodInfo * method)); +DO_APP_FUNC(0x01462700, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow_StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow__GetActivePropertiesForElement, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow_StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow_ * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outProperties, MethodInfo * method)); +DO_APP_FUNC(0x01461B00, bool, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow_StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow__IndexOf, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow_StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow_ * __this, VisualElement * ve, StylePropertyId__Enum prop, int32_t * index, MethodInfo * method)); +DO_APP_FUNC(0x01461720, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow_StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow__LocalInit, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow_StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01461F50, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow_StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow__Remove, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow_StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow_ * __this, int32_t cancelledIndex, MethodInfo * method)); +DO_APP_FUNC(0x01462600, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow_StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow__RemoveAll, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow_StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01462570, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow_StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow__RemoveAll_1, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow_StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow_ * __this, VisualElement * ve, MethodInfo * method)); +DO_APP_FUNC(0x01462460, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow_StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow__Replace, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow_StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow_ * __this, int32_t index, StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow_ timingData, StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow_ styleData, MethodInfo * method)); +DO_APP_FUNC(0x0144C360, int32_t, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow_StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow__get_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow_StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014615F0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow_StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow__set_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow_StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow_ * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x01462E10, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin_StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin__Add, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin_StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin_ * __this, VisualElement * owner, StylePropertyId__Enum prop, StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin_ timingData, StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin_ styleData, MethodInfo * method)); DO_APP_FUNC(0x01462C40, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin_StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin_, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin_StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin__Create, (MethodInfo * method)); -DO_APP_FUNC(0x01463890, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin_StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin__GetActivePropertiesForElement, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin_StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin___Boxed * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outProperties, MethodInfo * method)); -DO_APP_FUNC(0x01462CC0, bool, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin_StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin__IndexOf, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin_StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin___Boxed * __this, VisualElement * ve, StylePropertyId__Enum prop, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x014628E0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin_StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin__LocalInit, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin_StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01463100, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin_StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin__Remove, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin_StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin___Boxed * __this, int32_t cancelledIndex, MethodInfo * method)); -DO_APP_FUNC(0x01463790, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin_StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin__RemoveAll, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin_StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01463700, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin_StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin__RemoveAll_1, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin_StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin___Boxed * __this, VisualElement * ve, MethodInfo * method)); -DO_APP_FUNC(0x01463600, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin_StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin__Replace, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin_StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin___Boxed * __this, int32_t index, StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin_ timingData, StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin_ styleData, MethodInfo * method)); -DO_APP_FUNC(0x0144C360, int32_t, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin_StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin__get_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin_StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014627B0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin_StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin__set_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin_StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin___Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x01463FA0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Translate_StylePropertyAnimationSystem_Values_1_T_StyleData_Translate__Add, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Translate_StylePropertyAnimationSystem_Values_1_T_StyleData_Translate___Boxed * __this, VisualElement * owner, StylePropertyId__Enum prop, StylePropertyAnimationSystem_Values_1_T_TimingData_Translate_ timingData, StylePropertyAnimationSystem_Values_1_T_StyleData_Translate_ styleData, MethodInfo * method)); +DO_APP_FUNC(0x01463890, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin_StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin__GetActivePropertiesForElement, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin_StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin_ * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outProperties, MethodInfo * method)); +DO_APP_FUNC(0x01462CC0, bool, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin_StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin__IndexOf, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin_StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin_ * __this, VisualElement * ve, StylePropertyId__Enum prop, int32_t * index, MethodInfo * method)); +DO_APP_FUNC(0x014628E0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin_StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin__LocalInit, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin_StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01463100, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin_StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin__Remove, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin_StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin_ * __this, int32_t cancelledIndex, MethodInfo * method)); +DO_APP_FUNC(0x01463790, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin_StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin__RemoveAll, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin_StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01463700, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin_StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin__RemoveAll_1, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin_StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin_ * __this, VisualElement * ve, MethodInfo * method)); +DO_APP_FUNC(0x01463600, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin_StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin__Replace, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin_StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin_ * __this, int32_t index, StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin_ timingData, StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin_ styleData, MethodInfo * method)); +DO_APP_FUNC(0x0144C360, int32_t, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin_StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin__get_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin_StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014627B0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin_StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin__set_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin_StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin_ * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x01463FA0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Translate_StylePropertyAnimationSystem_Values_1_T_StyleData_Translate__Add, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Translate_StylePropertyAnimationSystem_Values_1_T_StyleData_Translate_ * __this, VisualElement * owner, StylePropertyId__Enum prop, StylePropertyAnimationSystem_Values_1_T_TimingData_Translate_ timingData, StylePropertyAnimationSystem_Values_1_T_StyleData_Translate_ styleData, MethodInfo * method)); DO_APP_FUNC(0x01463DD0, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Translate_StylePropertyAnimationSystem_Values_1_T_StyleData_Translate_, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Translate_StylePropertyAnimationSystem_Values_1_T_StyleData_Translate__Create, (MethodInfo * method)); -DO_APP_FUNC(0x01464940, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Translate_StylePropertyAnimationSystem_Values_1_T_StyleData_Translate__GetActivePropertiesForElement, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Translate_StylePropertyAnimationSystem_Values_1_T_StyleData_Translate___Boxed * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outProperties, MethodInfo * method)); -DO_APP_FUNC(0x01463E50, bool, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Translate_StylePropertyAnimationSystem_Values_1_T_StyleData_Translate__IndexOf, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Translate_StylePropertyAnimationSystem_Values_1_T_StyleData_Translate___Boxed * __this, VisualElement * ve, StylePropertyId__Enum prop, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01463A70, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Translate_StylePropertyAnimationSystem_Values_1_T_StyleData_Translate__LocalInit, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Translate_StylePropertyAnimationSystem_Values_1_T_StyleData_Translate___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014642A0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Translate_StylePropertyAnimationSystem_Values_1_T_StyleData_Translate__Remove, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Translate_StylePropertyAnimationSystem_Values_1_T_StyleData_Translate___Boxed * __this, int32_t cancelledIndex, MethodInfo * method)); -DO_APP_FUNC(0x01464840, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Translate_StylePropertyAnimationSystem_Values_1_T_StyleData_Translate__RemoveAll, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Translate_StylePropertyAnimationSystem_Values_1_T_StyleData_Translate___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014647B0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Translate_StylePropertyAnimationSystem_Values_1_T_StyleData_Translate__RemoveAll_1, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Translate_StylePropertyAnimationSystem_Values_1_T_StyleData_Translate___Boxed * __this, VisualElement * ve, MethodInfo * method)); -DO_APP_FUNC(0x0145F1F0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Translate_StylePropertyAnimationSystem_Values_1_T_StyleData_Translate__Replace, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Translate_StylePropertyAnimationSystem_Values_1_T_StyleData_Translate___Boxed * __this, int32_t index, StylePropertyAnimationSystem_Values_1_T_TimingData_Translate_ timingData, StylePropertyAnimationSystem_Values_1_T_StyleData_Translate_ styleData, MethodInfo * method)); -DO_APP_FUNC(0x0144C360, int32_t, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Translate_StylePropertyAnimationSystem_Values_1_T_StyleData_Translate__get_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Translate_StylePropertyAnimationSystem_Values_1_T_StyleData_Translate___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01463940, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Translate_StylePropertyAnimationSystem_Values_1_T_StyleData_Translate__set_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Translate_StylePropertyAnimationSystem_Values_1_T_StyleData_Translate___Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x01465050, void, StylePropertyAnimationSystem_AnimationDataSet_2_System_Object_System_Object__Add, (StylePropertyAnimationSystem_AnimationDataSet_2_System_Object_System_Object___Boxed * __this, VisualElement * owner, StylePropertyId__Enum prop, Object * timingData, Object * styleData, MethodInfo * method)); +DO_APP_FUNC(0x01464940, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Translate_StylePropertyAnimationSystem_Values_1_T_StyleData_Translate__GetActivePropertiesForElement, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Translate_StylePropertyAnimationSystem_Values_1_T_StyleData_Translate_ * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outProperties, MethodInfo * method)); +DO_APP_FUNC(0x01463E50, bool, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Translate_StylePropertyAnimationSystem_Values_1_T_StyleData_Translate__IndexOf, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Translate_StylePropertyAnimationSystem_Values_1_T_StyleData_Translate_ * __this, VisualElement * ve, StylePropertyId__Enum prop, int32_t * index, MethodInfo * method)); +DO_APP_FUNC(0x01463A70, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Translate_StylePropertyAnimationSystem_Values_1_T_StyleData_Translate__LocalInit, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Translate_StylePropertyAnimationSystem_Values_1_T_StyleData_Translate_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014642A0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Translate_StylePropertyAnimationSystem_Values_1_T_StyleData_Translate__Remove, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Translate_StylePropertyAnimationSystem_Values_1_T_StyleData_Translate_ * __this, int32_t cancelledIndex, MethodInfo * method)); +DO_APP_FUNC(0x01464840, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Translate_StylePropertyAnimationSystem_Values_1_T_StyleData_Translate__RemoveAll, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Translate_StylePropertyAnimationSystem_Values_1_T_StyleData_Translate_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014647B0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Translate_StylePropertyAnimationSystem_Values_1_T_StyleData_Translate__RemoveAll_1, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Translate_StylePropertyAnimationSystem_Values_1_T_StyleData_Translate_ * __this, VisualElement * ve, MethodInfo * method)); +DO_APP_FUNC(0x0145F1F0, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Translate_StylePropertyAnimationSystem_Values_1_T_StyleData_Translate__Replace, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Translate_StylePropertyAnimationSystem_Values_1_T_StyleData_Translate_ * __this, int32_t index, StylePropertyAnimationSystem_Values_1_T_TimingData_Translate_ timingData, StylePropertyAnimationSystem_Values_1_T_StyleData_Translate_ styleData, MethodInfo * method)); +DO_APP_FUNC(0x0144C360, int32_t, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Translate_StylePropertyAnimationSystem_Values_1_T_StyleData_Translate__get_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Translate_StylePropertyAnimationSystem_Values_1_T_StyleData_Translate_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01463940, void, StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Translate_StylePropertyAnimationSystem_Values_1_T_StyleData_Translate__set_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Translate_StylePropertyAnimationSystem_Values_1_T_StyleData_Translate_ * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x01465050, void, StylePropertyAnimationSystem_AnimationDataSet_2_System_Object_System_Object__Add, (StylePropertyAnimationSystem_AnimationDataSet_2_System_Object_System_Object_ * __this, VisualElement * owner, StylePropertyId__Enum prop, Object * timingData, Object * styleData, MethodInfo * method)); DO_APP_FUNC(0x01464E80, StylePropertyAnimationSystem_AnimationDataSet_2_System_Object_System_Object_, StylePropertyAnimationSystem_AnimationDataSet_2_System_Object_System_Object__Create, (MethodInfo * method)); -DO_APP_FUNC(0x014657F0, void, StylePropertyAnimationSystem_AnimationDataSet_2_System_Object_System_Object__GetActivePropertiesForElement, (StylePropertyAnimationSystem_AnimationDataSet_2_System_Object_System_Object___Boxed * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outProperties, MethodInfo * method)); -DO_APP_FUNC(0x01464F00, bool, StylePropertyAnimationSystem_AnimationDataSet_2_System_Object_System_Object__IndexOf, (StylePropertyAnimationSystem_AnimationDataSet_2_System_Object_System_Object___Boxed * __this, VisualElement * ve, StylePropertyId__Enum prop, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01464B20, void, StylePropertyAnimationSystem_AnimationDataSet_2_System_Object_System_Object__LocalInit, (StylePropertyAnimationSystem_AnimationDataSet_2_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01465290, void, StylePropertyAnimationSystem_AnimationDataSet_2_System_Object_System_Object__Remove, (StylePropertyAnimationSystem_AnimationDataSet_2_System_Object_System_Object___Boxed * __this, int32_t cancelledIndex, MethodInfo * method)); -DO_APP_FUNC(0x014656F0, void, StylePropertyAnimationSystem_AnimationDataSet_2_System_Object_System_Object__RemoveAll, (StylePropertyAnimationSystem_AnimationDataSet_2_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01465660, void, StylePropertyAnimationSystem_AnimationDataSet_2_System_Object_System_Object__RemoveAll_1, (StylePropertyAnimationSystem_AnimationDataSet_2_System_Object_System_Object___Boxed * __this, VisualElement * ve, MethodInfo * method)); -DO_APP_FUNC(0x01465600, void, StylePropertyAnimationSystem_AnimationDataSet_2_System_Object_System_Object__Replace, (StylePropertyAnimationSystem_AnimationDataSet_2_System_Object_System_Object___Boxed * __this, int32_t index, Object * timingData, Object * styleData, MethodInfo * method)); -DO_APP_FUNC(0x0144C360, int32_t, StylePropertyAnimationSystem_AnimationDataSet_2_System_Object_System_Object__get_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014649F0, void, StylePropertyAnimationSystem_AnimationDataSet_2_System_Object_System_Object__set_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_System_Object_System_Object___Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x014658A0, void, ArrayBuilder_1_System_Object___ctor, (ArrayBuilder_1_System_Object___Boxed * __this, int32_t capacity, MethodInfo * method)); -DO_APP_FUNC(0x01465940, Object__Array *, ArrayBuilder_1_System_Object__ToArray, (ArrayBuilder_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01465A50, void, ArrayBuilder_1_System_Object__UncheckedAdd, (ArrayBuilder_1_System_Object___Boxed * __this, Object * item, MethodInfo * method)); -DO_APP_FUNC(0x01465AA0, void, ArrayBuilder_1_System_Object__1_Add, (ArrayBuilder_1_System_Object__1__Boxed * __this, Object * item, MethodInfo * method)); -DO_APP_FUNC(0x01465B60, void, ArrayBuilder_1_System_Object__1_EnsureCapacity, (ArrayBuilder_1_System_Object__1__Boxed * __this, int32_t minimum, MethodInfo * method)); -DO_APP_FUNC(0x01465A50, void, ArrayBuilder_1_System_Object__1_UncheckedAdd, (ArrayBuilder_1_System_Object__1__Boxed * __this, Object * item, MethodInfo * method)); -DO_APP_FUNC(0x01465A90, int32_t, ArrayBuilder_1_System_Object__1_get_Capacity, (ArrayBuilder_1_System_Object__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471920, int32_t, ArrayBuilder_1_System_Object__1_get_Count, (ArrayBuilder_1_System_Object__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FDBD20, Object *, ArrayBuilder_1_System_Object__1_get_Item, (ArrayBuilder_1_System_Object__1__Boxed * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x014657F0, void, StylePropertyAnimationSystem_AnimationDataSet_2_System_Object_System_Object__GetActivePropertiesForElement, (StylePropertyAnimationSystem_AnimationDataSet_2_System_Object_System_Object_ * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outProperties, MethodInfo * method)); +DO_APP_FUNC(0x01464F00, bool, StylePropertyAnimationSystem_AnimationDataSet_2_System_Object_System_Object__IndexOf, (StylePropertyAnimationSystem_AnimationDataSet_2_System_Object_System_Object_ * __this, VisualElement * ve, StylePropertyId__Enum prop, int32_t * index, MethodInfo * method)); +DO_APP_FUNC(0x01464B20, void, StylePropertyAnimationSystem_AnimationDataSet_2_System_Object_System_Object__LocalInit, (StylePropertyAnimationSystem_AnimationDataSet_2_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01465290, void, StylePropertyAnimationSystem_AnimationDataSet_2_System_Object_System_Object__Remove, (StylePropertyAnimationSystem_AnimationDataSet_2_System_Object_System_Object_ * __this, int32_t cancelledIndex, MethodInfo * method)); +DO_APP_FUNC(0x014656F0, void, StylePropertyAnimationSystem_AnimationDataSet_2_System_Object_System_Object__RemoveAll, (StylePropertyAnimationSystem_AnimationDataSet_2_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01465660, void, StylePropertyAnimationSystem_AnimationDataSet_2_System_Object_System_Object__RemoveAll_1, (StylePropertyAnimationSystem_AnimationDataSet_2_System_Object_System_Object_ * __this, VisualElement * ve, MethodInfo * method)); +DO_APP_FUNC(0x01465600, void, StylePropertyAnimationSystem_AnimationDataSet_2_System_Object_System_Object__Replace, (StylePropertyAnimationSystem_AnimationDataSet_2_System_Object_System_Object_ * __this, int32_t index, Object * timingData, Object * styleData, MethodInfo * method)); +DO_APP_FUNC(0x0144C360, int32_t, StylePropertyAnimationSystem_AnimationDataSet_2_System_Object_System_Object__get_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014649F0, void, StylePropertyAnimationSystem_AnimationDataSet_2_System_Object_System_Object__set_capacity, (StylePropertyAnimationSystem_AnimationDataSet_2_System_Object_System_Object_ * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x014658A0, void, ArrayBuilder_1_System_Object___ctor, (ArrayBuilder_1_System_Object_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC(0x01465940, Object__Array *, ArrayBuilder_1_System_Object__ToArray, (ArrayBuilder_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01465A50, void, ArrayBuilder_1_System_Object__UncheckedAdd, (ArrayBuilder_1_System_Object_ * __this, Object * item, MethodInfo * method)); +DO_APP_FUNC(0x01465AA0, void, ArrayBuilder_1_System_Object__1_Add, (ArrayBuilder_1_System_Object__1 * __this, Object * item, MethodInfo * method)); +DO_APP_FUNC(0x01465B60, void, ArrayBuilder_1_System_Object__1_EnsureCapacity, (ArrayBuilder_1_System_Object__1 * __this, int32_t minimum, MethodInfo * method)); +DO_APP_FUNC(0x01465A50, void, ArrayBuilder_1_System_Object__1_UncheckedAdd, (ArrayBuilder_1_System_Object__1 * __this, Object * item, MethodInfo * method)); +DO_APP_FUNC(0x01465A90, int32_t, ArrayBuilder_1_System_Object__1_get_Capacity, (ArrayBuilder_1_System_Object__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471920, int32_t, ArrayBuilder_1_System_Object__1_get_Count, (ArrayBuilder_1_System_Object__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x00FDBD20, Object *, ArrayBuilder_1_System_Object__1_get_Item, (ArrayBuilder_1_System_Object__1 * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01467440, void, ArrayPool_1_System_Boolean___cctor, (MethodInfo * method)); DO_APP_FUNC(0x01465CE0, Boolean__Array *, ArrayPool_1_System_Boolean__Claim, (int32_t minimumLength, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA788, ArrayPool_1_System_Boolean__Claim__MethodInfo); DO_APP_FUNC(0x01466490, Boolean__Array *, ArrayPool_1_System_Boolean__ClaimWithExactLength, (int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01466900, void, ArrayPool_1_System_Boolean__Release, (Boolean__Array * array, bool allowNonPowerOfTwo, MethodInfo * method)); +DO_APP_FUNC(0x01466900, void, ArrayPool_1_System_Boolean__Release, (Boolean__Array * * array, bool allowNonPowerOfTwo, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA770, ArrayPool_1_System_Boolean__Release__MethodInfo); DO_APP_FUNC(0x01467440, void, ArrayPool_1_UnityEngine_Color___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0152E2E0, Color__Array *, ArrayPool_1_UnityEngine_Color__Claim, (int32_t minimumLength, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6798, ArrayPool_1_UnityEngine_Color__Claim__MethodInfo); DO_APP_FUNC(0x01466490, Color__Array *, ArrayPool_1_UnityEngine_Color__ClaimWithExactLength, (int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x0152EA90, void, ArrayPool_1_UnityEngine_Color__Release, (Color__Array * array, bool allowNonPowerOfTwo, MethodInfo * method)); +DO_APP_FUNC(0x0152EA90, void, ArrayPool_1_UnityEngine_Color__Release, (Color__Array * * array, bool allowNonPowerOfTwo, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6790, ArrayPool_1_UnityEngine_Color__Release__MethodInfo); DO_APP_FUNC(0x01467440, void, ArrayPool_1_Pathfinding_Connection___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0152F5D0, Connection__Array *, ArrayPool_1_Pathfinding_Connection__Claim, (int32_t minimumLength, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4D28, ArrayPool_1_Pathfinding_Connection__Claim__MethodInfo); DO_APP_FUNC(0x01466490, Connection__Array *, ArrayPool_1_Pathfinding_Connection__ClaimWithExactLength, (int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x0152FD80, void, ArrayPool_1_Pathfinding_Connection__Release, (Connection__Array * array, bool allowNonPowerOfTwo, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6BA8, ArrayPool_1_Pathfinding_Connection__ClaimWithExactLength__MethodInfo); +DO_APP_FUNC(0x0152FD80, void, ArrayPool_1_Pathfinding_Connection__Release, (Connection__Array * * array, bool allowNonPowerOfTwo, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6BC0, ArrayPool_1_Pathfinding_Connection__Release__MethodInfo); DO_APP_FUNC(0x01467440, void, ArrayPool_1_Pathfinding_Int3___cctor, (MethodInfo * method)); DO_APP_FUNC(0x015308C0, Int3__Array *, ArrayPool_1_Pathfinding_Int3__Claim, (int32_t minimumLength, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA648, ArrayPool_1_Pathfinding_Int3__Claim__MethodInfo); DO_APP_FUNC(0x01466490, Int3__Array *, ArrayPool_1_Pathfinding_Int3__ClaimWithExactLength, (int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01531070, void, ArrayPool_1_Pathfinding_Int3__Release, (Int3__Array * array, bool allowNonPowerOfTwo, MethodInfo * method)); +DO_APP_FUNC(0x01531070, void, ArrayPool_1_Pathfinding_Int3__Release, (Int3__Array * * array, bool allowNonPowerOfTwo, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA658, ArrayPool_1_Pathfinding_Int3__Release__MethodInfo); DO_APP_FUNC(0x01467440, void, ArrayPool_1_System_Int32___cctor, (MethodInfo * method)); DO_APP_FUNC(0x01531BB0, Int32__Array *, ArrayPool_1_System_Int32__Claim, (int32_t minimumLength, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5A88, ArrayPool_1_System_Int32__Claim__MethodInfo); DO_APP_FUNC(0x01466490, Int32__Array *, ArrayPool_1_System_Int32__ClaimWithExactLength, (int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01532360, void, ArrayPool_1_System_Int32__Release, (Int32__Array * array, bool allowNonPowerOfTwo, MethodInfo * method)); +DO_APP_FUNC(0x01532360, void, ArrayPool_1_System_Int32__Release, (Int32__Array * * array, bool allowNonPowerOfTwo, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5A80, ArrayPool_1_System_Int32__Release__MethodInfo); DO_APP_FUNC(0x01467440, void, ArrayPool_1_Pathfinding_IntRect___cctor, (MethodInfo * method)); DO_APP_FUNC(0x01532EA0, IntRect__Array *, ArrayPool_1_Pathfinding_IntRect__Claim, (int32_t minimumLength, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB93B8, ArrayPool_1_Pathfinding_IntRect__Claim__MethodInfo); DO_APP_FUNC(0x01466490, IntRect__Array *, ArrayPool_1_Pathfinding_IntRect__ClaimWithExactLength, (int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01533650, void, ArrayPool_1_Pathfinding_IntRect__Release, (IntRect__Array * array, bool allowNonPowerOfTwo, MethodInfo * method)); +DO_APP_FUNC(0x01533650, void, ArrayPool_1_Pathfinding_IntRect__Release, (IntRect__Array * * array, bool allowNonPowerOfTwo, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB93B0, ArrayPool_1_Pathfinding_IntRect__Release__MethodInfo); DO_APP_FUNC(0x01467440, void, ArrayPool_1_System_Object___cctor, (MethodInfo * method)); DO_APP_FUNC(0x01534190, Object__Array *, ArrayPool_1_System_Object__Claim, (int32_t minimumLength, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4D48, ArrayPool_1_System_Object__Claim__MethodInfo); DO_APP_FUNC(0x01466490, Object__Array *, ArrayPool_1_System_Object__ClaimWithExactLength, (int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01534940, void, ArrayPool_1_System_Object__Release, (Object__Array * array, bool allowNonPowerOfTwo, MethodInfo * method)); +DO_APP_FUNC(0x01534940, void, ArrayPool_1_System_Object__Release, (Object__Array * * array, bool allowNonPowerOfTwo, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4D00, ArrayPool_1_System_Object__Release__MethodInfo); DO_APP_FUNC(0x01467440, void, ArrayPool_1_System_UInt16___cctor, (MethodInfo * method)); DO_APP_FUNC(0x01535480, UInt16__Array *, ArrayPool_1_System_UInt16__Claim, (int32_t minimumLength, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA798, ArrayPool_1_System_UInt16__Claim__MethodInfo); DO_APP_FUNC(0x01466490, UInt16__Array *, ArrayPool_1_System_UInt16__ClaimWithExactLength, (int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01535C30, void, ArrayPool_1_System_UInt16__Release, (UInt16__Array * array, bool allowNonPowerOfTwo, MethodInfo * method)); +DO_APP_FUNC(0x01535C30, void, ArrayPool_1_System_UInt16__Release, (UInt16__Array * * array, bool allowNonPowerOfTwo, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA790, ArrayPool_1_System_UInt16__Release__MethodInfo); DO_APP_FUNC(0x01467440, void, ArrayPool_1_UnityEngine_Vector2___cctor, (MethodInfo * method)); DO_APP_FUNC(0x01536770, Vector2__Array *, ArrayPool_1_UnityEngine_Vector2__Claim, (int32_t minimumLength, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBAC48, ArrayPool_1_UnityEngine_Vector2__Claim__MethodInfo); DO_APP_FUNC(0x01466490, Vector2__Array *, ArrayPool_1_UnityEngine_Vector2__ClaimWithExactLength, (int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01536F20, void, ArrayPool_1_UnityEngine_Vector2__Release, (Vector2__Array * array, bool allowNonPowerOfTwo, MethodInfo * method)); +DO_APP_FUNC(0x01536F20, void, ArrayPool_1_UnityEngine_Vector2__Release, (Vector2__Array * * array, bool allowNonPowerOfTwo, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBAC38, ArrayPool_1_UnityEngine_Vector2__Release__MethodInfo); DO_APP_FUNC(0x01467440, void, ArrayPool_1_UnityEngine_Vector3___cctor, (MethodInfo * method)); DO_APP_FUNC(0x01537A60, Vector3__Array *, ArrayPool_1_UnityEngine_Vector3__Claim, (int32_t minimumLength, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB70E8, ArrayPool_1_UnityEngine_Vector3__Claim__MethodInfo); DO_APP_FUNC(0x01466490, Vector3__Array *, ArrayPool_1_UnityEngine_Vector3__ClaimWithExactLength, (int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01538210, void, ArrayPool_1_UnityEngine_Vector3__Release, (Vector3__Array * array, bool allowNonPowerOfTwo, MethodInfo * method)); +DO_APP_FUNC(0x01538210, void, ArrayPool_1_UnityEngine_Vector3__Release, (Vector3__Array * * array, bool allowNonPowerOfTwo, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB67A8, ArrayPool_1_UnityEngine_Vector3__Release__MethodInfo); DO_APP_FUNC(0x01467440, void, ArrayPool_1_Pathfinding_BBTree_BBTreeBox___cctor, (MethodInfo * method)); DO_APP_FUNC(0x01538D50, BBTree_BBTreeBox__Array *, ArrayPool_1_Pathfinding_BBTree_BBTreeBox__Claim, (int32_t minimumLength, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB93D0, ArrayPool_1_Pathfinding_BBTree_BBTreeBox__Claim__MethodInfo); DO_APP_FUNC(0x01466490, BBTree_BBTreeBox__Array *, ArrayPool_1_Pathfinding_BBTree_BBTreeBox__ClaimWithExactLength, (int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01539500, void, ArrayPool_1_Pathfinding_BBTree_BBTreeBox__Release, (BBTree_BBTreeBox__Array * array, bool allowNonPowerOfTwo, MethodInfo * method)); +DO_APP_FUNC(0x01539500, void, ArrayPool_1_Pathfinding_BBTree_BBTreeBox__Release, (BBTree_BBTreeBox__Array * * array, bool allowNonPowerOfTwo, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB93C8, ArrayPool_1_Pathfinding_BBTree_BBTreeBox__Release__MethodInfo); DO_APP_FUNC(0x0153A040, void, ArrayPool_1_System_Byte___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArrayPool_1_System_Byte___ctor, (ArrayPool_1_System_Byte_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013AEFC0, ArrayPool_1_System_Byte_ *, ArrayPool_1_System_Byte__get_Shared, (MethodInfo * method)); @@ -122140,177 +134939,186 @@ DO_APP_FUNC(0x0153A040, void, ArrayPool_1_System_Object__1__cctor, (MethodInfo * DO_APP_FUNC(0x003AE050, void, ArrayPool_1_System_Object__1__ctor, (ArrayPool_1_System_Object__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x013AEFC0, ArrayPool_1_System_Object__1 *, ArrayPool_1_System_Object__1_get_Shared, (MethodInfo * method)); DO_APP_FUNC(0x0153AD80, void, ArraySegment_1_Byte___cctor, (MethodInfo * method)); -DO_APP_FUNC(0x0153A260, void, ArraySegment_1_Byte___ctor, (ArraySegment_1_Byte___Boxed * __this, Byte__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x0153A2F0, void, ArraySegment_1_Byte___ctor_1, (ArraySegment_1_Byte___Boxed * __this, Byte__Array * array, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC(0x0153A260, void, ArraySegment_1_Byte___ctor, (ArraySegment_1_Byte_ * __this, Byte__Array * array, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE34F8, ArraySegment_1_Byte___ctor__MethodInfo); +DO_APP_FUNC(0x0153A2F0, void, ArraySegment_1_Byte___ctor_1, (ArraySegment_1_Byte_ * __this, Byte__Array * array, int32_t offset, int32_t count, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8E760, ArraySegment_1_Byte___ctor_1__MethodInfo); -DO_APP_FUNC(0x0153A4E0, void, ArraySegment_1_Byte__CopyTo, (ArraySegment_1_Byte___Boxed * __this, Byte__Array * destination, int32_t destinationIndex, MethodInfo * method)); -DO_APP_FUNC(0x0153A6F0, bool, ArraySegment_1_Byte__Equals, (ArraySegment_1_Byte___Boxed * __this, ArraySegment_1_Byte_ obj, MethodInfo * method)); -DO_APP_FUNC(0x0153A5A0, bool, ArraySegment_1_Byte__Equals_1, (ArraySegment_1_Byte___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0153A350, ArraySegment_1_T_Enumerator_Byte_, ArraySegment_1_Byte__GetEnumerator, (ArraySegment_1_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0153A430, int32_t, ArraySegment_1_Byte__GetHashCode, (ArraySegment_1_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0153AB60, void, ArraySegment_1_Byte__System_Collections_Generic_ICollection_T__Add, (ArraySegment_1_Byte___Boxed * __this, uint8_t item, MethodInfo * method)); -DO_APP_FUNC(0x0153AB60, void, ArraySegment_1_Byte__System_Collections_Generic_ICollection_T__Clear, (ArraySegment_1_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0153AB70, bool, ArraySegment_1_Byte__System_Collections_Generic_ICollection_T__Contains, (ArraySegment_1_Byte___Boxed * __this, uint8_t item, MethodInfo * method)); -DO_APP_FUNC(0x0153AB60, bool, ArraySegment_1_Byte__System_Collections_Generic_ICollection_T__Remove, (ArraySegment_1_Byte___Boxed * __this, uint8_t item, MethodInfo * method)); -DO_APP_FUNC(0x0041AEF0, bool, ArraySegment_1_Byte__System_Collections_Generic_ICollection_T__get_IsReadOnly, (ArraySegment_1_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0153AC80, IEnumerator_1_System_Byte_ *, ArraySegment_1_Byte__System_Collections_Generic_IEnumerable_T__GetEnumerator, (ArraySegment_1_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0153AA30, int32_t, ArraySegment_1_Byte__System_Collections_Generic_IList_T__IndexOf, (ArraySegment_1_Byte___Boxed * __this, uint8_t item, MethodInfo * method)); -DO_APP_FUNC(0x0153AB60, void, ArraySegment_1_Byte__System_Collections_Generic_IList_T__Insert, (ArraySegment_1_Byte___Boxed * __this, int32_t index, uint8_t item, MethodInfo * method)); -DO_APP_FUNC(0x0153AB60, void, ArraySegment_1_Byte__System_Collections_Generic_IList_T__RemoveAt, (ArraySegment_1_Byte___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x0153A8A0, uint8_t, ArraySegment_1_Byte__System_Collections_Generic_IList_T__get_Item, (ArraySegment_1_Byte___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x0153A960, void, ArraySegment_1_Byte__System_Collections_Generic_IList_T__set_Item, (ArraySegment_1_Byte___Boxed * __this, int32_t index, uint8_t value, MethodInfo * method)); -DO_APP_FUNC(0x0153A8A0, uint8_t, ArraySegment_1_Byte__System_Collections_Generic_IReadOnlyList_T__get_Item, (ArraySegment_1_Byte___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x0153AC80, IEnumerator *, ArraySegment_1_Byte__System_Collections_IEnumerable_GetEnumerator, (ArraySegment_1_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0153AD60, void, ArraySegment_1_Byte__ThrowInvalidOperationIfDefault, (ArraySegment_1_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0153A710, Byte__Array *, ArraySegment_1_Byte__ToArray, (ArraySegment_1_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, Byte__Array *, ArraySegment_1_Byte__get_Array, (ArraySegment_1_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E57F20, int32_t, ArraySegment_1_Byte__get_Count, (ArraySegment_1_Byte___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0153A4E0, void, ArraySegment_1_Byte__CopyTo, (ArraySegment_1_Byte_ * __this, Byte__Array * destination, int32_t destinationIndex, MethodInfo * method)); +DO_APP_FUNC(0x0153A6F0, bool, ArraySegment_1_Byte__Equals, (ArraySegment_1_Byte_ * __this, ArraySegment_1_Byte_ obj, MethodInfo * method)); +DO_APP_FUNC(0x0153A5A0, bool, ArraySegment_1_Byte__Equals_1, (ArraySegment_1_Byte_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x0153A350, ArraySegment_1_T_Enumerator_Byte_, ArraySegment_1_Byte__GetEnumerator, (ArraySegment_1_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0153A430, int32_t, ArraySegment_1_Byte__GetHashCode, (ArraySegment_1_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0153AB60, void, ArraySegment_1_Byte__System_Collections_Generic_ICollection_T__Add, (ArraySegment_1_Byte_ * __this, uint8_t item, MethodInfo * method)); +DO_APP_FUNC(0x0153AB60, void, ArraySegment_1_Byte__System_Collections_Generic_ICollection_T__Clear, (ArraySegment_1_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0153AB70, bool, ArraySegment_1_Byte__System_Collections_Generic_ICollection_T__Contains, (ArraySegment_1_Byte_ * __this, uint8_t item, MethodInfo * method)); +DO_APP_FUNC(0x0153AB60, bool, ArraySegment_1_Byte__System_Collections_Generic_ICollection_T__Remove, (ArraySegment_1_Byte_ * __this, uint8_t item, MethodInfo * method)); +DO_APP_FUNC(0x0041AEF0, bool, ArraySegment_1_Byte__System_Collections_Generic_ICollection_T__get_IsReadOnly, (ArraySegment_1_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0153AC80, IEnumerator_1_System_Byte_ *, ArraySegment_1_Byte__System_Collections_Generic_IEnumerable_T__GetEnumerator, (ArraySegment_1_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0153AA30, int32_t, ArraySegment_1_Byte__System_Collections_Generic_IList_T__IndexOf, (ArraySegment_1_Byte_ * __this, uint8_t item, MethodInfo * method)); +DO_APP_FUNC(0x0153AB60, void, ArraySegment_1_Byte__System_Collections_Generic_IList_T__Insert, (ArraySegment_1_Byte_ * __this, int32_t index, uint8_t item, MethodInfo * method)); +DO_APP_FUNC(0x0153AB60, void, ArraySegment_1_Byte__System_Collections_Generic_IList_T__RemoveAt, (ArraySegment_1_Byte_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x0153A8A0, uint8_t, ArraySegment_1_Byte__System_Collections_Generic_IList_T__get_Item, (ArraySegment_1_Byte_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x0153A960, void, ArraySegment_1_Byte__System_Collections_Generic_IList_T__set_Item, (ArraySegment_1_Byte_ * __this, int32_t index, uint8_t value, MethodInfo * method)); +DO_APP_FUNC(0x0153A8A0, uint8_t, ArraySegment_1_Byte__System_Collections_Generic_IReadOnlyList_T__get_Item, (ArraySegment_1_Byte_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x0153AC80, IEnumerator *, ArraySegment_1_Byte__System_Collections_IEnumerable_GetEnumerator, (ArraySegment_1_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0153AD60, void, ArraySegment_1_Byte__ThrowInvalidOperationIfDefault, (ArraySegment_1_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0153A710, Byte__Array *, ArraySegment_1_Byte__ToArray, (ArraySegment_1_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD1E8, ArraySegment_1_Byte__ToArray__MethodInfo); +DO_APP_FUNC(0x00471910, Byte__Array *, ArraySegment_1_Byte__get_Array, (ArraySegment_1_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE34B8, ArraySegment_1_Byte__get_Array__MethodInfo); +DO_APP_FUNC(0x00E57F20, int32_t, ArraySegment_1_Byte__get_Count, (ArraySegment_1_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE34A8, ArraySegment_1_Byte__get_Count__MethodInfo); DO_APP_FUNC(0x0153A1C0, ArraySegment_1_Byte_, ArraySegment_1_Byte__get_Empty, (MethodInfo * method)); -DO_APP_FUNC(0x00471920, int32_t, ArraySegment_1_Byte__get_Offset, (ArraySegment_1_Byte___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471920, int32_t, ArraySegment_1_Byte__get_Offset, (ArraySegment_1_Byte_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8E718, ArraySegment_1_Byte__get_Offset__MethodInfo); DO_APP_FUNC(0x0153AD80, void, ArraySegment_1_Int32___cctor, (MethodInfo * method)); -DO_APP_FUNC(0x0153A260, void, ArraySegment_1_Int32___ctor, (ArraySegment_1_Int32___Boxed * __this, Int32__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x0153A2F0, void, ArraySegment_1_Int32___ctor_1, (ArraySegment_1_Int32___Boxed * __this, Int32__Array * array, int32_t offset, int32_t count, MethodInfo * method)); -DO_APP_FUNC(0x0153A4E0, void, ArraySegment_1_Int32__CopyTo, (ArraySegment_1_Int32___Boxed * __this, Int32__Array * destination, int32_t destinationIndex, MethodInfo * method)); -DO_APP_FUNC(0x0153A6F0, bool, ArraySegment_1_Int32__Equals, (ArraySegment_1_Int32___Boxed * __this, ArraySegment_1_Int32_ obj, MethodInfo * method)); -DO_APP_FUNC(0x0153A5A0, bool, ArraySegment_1_Int32__Equals_1, (ArraySegment_1_Int32___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0153A350, ArraySegment_1_T_Enumerator_Int32_, ArraySegment_1_Int32__GetEnumerator, (ArraySegment_1_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0153AF60, int32_t, ArraySegment_1_Int32__GetHashCode, (ArraySegment_1_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0153AB60, void, ArraySegment_1_Int32__System_Collections_Generic_ICollection_T__Add, (ArraySegment_1_Int32___Boxed * __this, int32_t item, MethodInfo * method)); -DO_APP_FUNC(0x0153AB60, void, ArraySegment_1_Int32__System_Collections_Generic_ICollection_T__Clear, (ArraySegment_1_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0153B2D0, bool, ArraySegment_1_Int32__System_Collections_Generic_ICollection_T__Contains, (ArraySegment_1_Int32___Boxed * __this, int32_t item, MethodInfo * method)); -DO_APP_FUNC(0x0153AB60, bool, ArraySegment_1_Int32__System_Collections_Generic_ICollection_T__Remove, (ArraySegment_1_Int32___Boxed * __this, int32_t item, MethodInfo * method)); -DO_APP_FUNC(0x0041AEF0, bool, ArraySegment_1_Int32__System_Collections_Generic_ICollection_T__get_IsReadOnly, (ArraySegment_1_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0153AC80, IEnumerator_1_System_Int32_ *, ArraySegment_1_Int32__System_Collections_Generic_IEnumerable_T__GetEnumerator, (ArraySegment_1_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0153B1A0, int32_t, ArraySegment_1_Int32__System_Collections_Generic_IList_T__IndexOf, (ArraySegment_1_Int32___Boxed * __this, int32_t item, MethodInfo * method)); -DO_APP_FUNC(0x0153AB60, void, ArraySegment_1_Int32__System_Collections_Generic_IList_T__Insert, (ArraySegment_1_Int32___Boxed * __this, int32_t index, int32_t item, MethodInfo * method)); -DO_APP_FUNC(0x0153AB60, void, ArraySegment_1_Int32__System_Collections_Generic_IList_T__RemoveAt, (ArraySegment_1_Int32___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x0153B010, int32_t, ArraySegment_1_Int32__System_Collections_Generic_IList_T__get_Item, (ArraySegment_1_Int32___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x0153B0D0, void, ArraySegment_1_Int32__System_Collections_Generic_IList_T__set_Item, (ArraySegment_1_Int32___Boxed * __this, int32_t index, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x0153B010, int32_t, ArraySegment_1_Int32__System_Collections_Generic_IReadOnlyList_T__get_Item, (ArraySegment_1_Int32___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x0153AC80, IEnumerator *, ArraySegment_1_Int32__System_Collections_IEnumerable_GetEnumerator, (ArraySegment_1_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0153AD60, void, ArraySegment_1_Int32__ThrowInvalidOperationIfDefault, (ArraySegment_1_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0153A710, Int32__Array *, ArraySegment_1_Int32__ToArray, (ArraySegment_1_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, Int32__Array *, ArraySegment_1_Int32__get_Array, (ArraySegment_1_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E57F20, int32_t, ArraySegment_1_Int32__get_Count, (ArraySegment_1_Int32___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0153A260, void, ArraySegment_1_Int32___ctor, (ArraySegment_1_Int32_ * __this, Int32__Array * array, MethodInfo * method)); +DO_APP_FUNC(0x0153A2F0, void, ArraySegment_1_Int32___ctor_1, (ArraySegment_1_Int32_ * __this, Int32__Array * array, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFD6B8, ArraySegment_1_Int32___ctor_1__MethodInfo); +DO_APP_FUNC(0x0153A4E0, void, ArraySegment_1_Int32__CopyTo, (ArraySegment_1_Int32_ * __this, Int32__Array * destination, int32_t destinationIndex, MethodInfo * method)); +DO_APP_FUNC(0x0153A6F0, bool, ArraySegment_1_Int32__Equals, (ArraySegment_1_Int32_ * __this, ArraySegment_1_Int32_ obj, MethodInfo * method)); +DO_APP_FUNC(0x0153A5A0, bool, ArraySegment_1_Int32__Equals_1, (ArraySegment_1_Int32_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x0153A350, ArraySegment_1_T_Enumerator_Int32_, ArraySegment_1_Int32__GetEnumerator, (ArraySegment_1_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0153AF60, int32_t, ArraySegment_1_Int32__GetHashCode, (ArraySegment_1_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0153AB60, void, ArraySegment_1_Int32__System_Collections_Generic_ICollection_T__Add, (ArraySegment_1_Int32_ * __this, int32_t item, MethodInfo * method)); +DO_APP_FUNC(0x0153AB60, void, ArraySegment_1_Int32__System_Collections_Generic_ICollection_T__Clear, (ArraySegment_1_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0153B2D0, bool, ArraySegment_1_Int32__System_Collections_Generic_ICollection_T__Contains, (ArraySegment_1_Int32_ * __this, int32_t item, MethodInfo * method)); +DO_APP_FUNC(0x0153AB60, bool, ArraySegment_1_Int32__System_Collections_Generic_ICollection_T__Remove, (ArraySegment_1_Int32_ * __this, int32_t item, MethodInfo * method)); +DO_APP_FUNC(0x0041AEF0, bool, ArraySegment_1_Int32__System_Collections_Generic_ICollection_T__get_IsReadOnly, (ArraySegment_1_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0153AC80, IEnumerator_1_System_Int32_ *, ArraySegment_1_Int32__System_Collections_Generic_IEnumerable_T__GetEnumerator, (ArraySegment_1_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0153B1A0, int32_t, ArraySegment_1_Int32__System_Collections_Generic_IList_T__IndexOf, (ArraySegment_1_Int32_ * __this, int32_t item, MethodInfo * method)); +DO_APP_FUNC(0x0153AB60, void, ArraySegment_1_Int32__System_Collections_Generic_IList_T__Insert, (ArraySegment_1_Int32_ * __this, int32_t index, int32_t item, MethodInfo * method)); +DO_APP_FUNC(0x0153AB60, void, ArraySegment_1_Int32__System_Collections_Generic_IList_T__RemoveAt, (ArraySegment_1_Int32_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x0153B010, int32_t, ArraySegment_1_Int32__System_Collections_Generic_IList_T__get_Item, (ArraySegment_1_Int32_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x0153B0D0, void, ArraySegment_1_Int32__System_Collections_Generic_IList_T__set_Item, (ArraySegment_1_Int32_ * __this, int32_t index, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x0153B010, int32_t, ArraySegment_1_Int32__System_Collections_Generic_IReadOnlyList_T__get_Item, (ArraySegment_1_Int32_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x0153AC80, IEnumerator *, ArraySegment_1_Int32__System_Collections_IEnumerable_GetEnumerator, (ArraySegment_1_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0153AD60, void, ArraySegment_1_Int32__ThrowInvalidOperationIfDefault, (ArraySegment_1_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0153A710, Int32__Array *, ArraySegment_1_Int32__ToArray, (ArraySegment_1_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Int32__Array *, ArraySegment_1_Int32__get_Array, (ArraySegment_1_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFD3D8, ArraySegment_1_Int32__get_Array__MethodInfo); +DO_APP_FUNC(0x00E57F20, int32_t, ArraySegment_1_Int32__get_Count, (ArraySegment_1_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFD3D0, ArraySegment_1_Int32__get_Count__MethodInfo); DO_APP_FUNC(0x0153A1C0, ArraySegment_1_Int32_, ArraySegment_1_Int32__get_Empty, (MethodInfo * method)); -DO_APP_FUNC(0x00471920, int32_t, ArraySegment_1_Int32__get_Offset, (ArraySegment_1_Int32___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471920, int32_t, ArraySegment_1_Int32__get_Offset, (ArraySegment_1_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFD3C8, ArraySegment_1_Int32__get_Offset__MethodInfo); DO_APP_FUNC(0x0153AD80, void, ArraySegment_1_Object___cctor, (MethodInfo * method)); -DO_APP_FUNC(0x0153A260, void, ArraySegment_1_Object___ctor, (ArraySegment_1_Object___Boxed * __this, Object__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x0153A2F0, void, ArraySegment_1_Object___ctor_1, (ArraySegment_1_Object___Boxed * __this, Object__Array * array, int32_t offset, int32_t count, MethodInfo * method)); -DO_APP_FUNC(0x0153A4E0, void, ArraySegment_1_Object__CopyTo, (ArraySegment_1_Object___Boxed * __this, Object__Array * destination, int32_t destinationIndex, MethodInfo * method)); -DO_APP_FUNC(0x0153A6F0, bool, ArraySegment_1_Object__Equals, (ArraySegment_1_Object___Boxed * __this, ArraySegment_1_Object_ obj, MethodInfo * method)); -DO_APP_FUNC(0x0153A5A0, bool, ArraySegment_1_Object__Equals_1, (ArraySegment_1_Object___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0153A350, ArraySegment_1_T_Enumerator_Object_, ArraySegment_1_Object__GetEnumerator, (ArraySegment_1_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0153B3E0, int32_t, ArraySegment_1_Object__GetHashCode, (ArraySegment_1_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0153AB60, void, ArraySegment_1_Object__System_Collections_Generic_ICollection_T__Add, (ArraySegment_1_Object___Boxed * __this, Object * item, MethodInfo * method)); -DO_APP_FUNC(0x0153AB60, void, ArraySegment_1_Object__System_Collections_Generic_ICollection_T__Clear, (ArraySegment_1_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0153B740, bool, ArraySegment_1_Object__System_Collections_Generic_ICollection_T__Contains, (ArraySegment_1_Object___Boxed * __this, Object * item, MethodInfo * method)); -DO_APP_FUNC(0x0153AB60, bool, ArraySegment_1_Object__System_Collections_Generic_ICollection_T__Remove, (ArraySegment_1_Object___Boxed * __this, Object * item, MethodInfo * method)); -DO_APP_FUNC(0x0041AEF0, bool, ArraySegment_1_Object__System_Collections_Generic_ICollection_T__get_IsReadOnly, (ArraySegment_1_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0153AC80, IEnumerator_1_System_Object_ *, ArraySegment_1_Object__System_Collections_Generic_IEnumerable_T__GetEnumerator, (ArraySegment_1_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0153B610, int32_t, ArraySegment_1_Object__System_Collections_Generic_IList_T__IndexOf, (ArraySegment_1_Object___Boxed * __this, Object * item, MethodInfo * method)); -DO_APP_FUNC(0x0153AB60, void, ArraySegment_1_Object__System_Collections_Generic_IList_T__Insert, (ArraySegment_1_Object___Boxed * __this, int32_t index, Object * item, MethodInfo * method)); -DO_APP_FUNC(0x0153AB60, void, ArraySegment_1_Object__System_Collections_Generic_IList_T__RemoveAt, (ArraySegment_1_Object___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x0153B490, Object *, ArraySegment_1_Object__System_Collections_Generic_IList_T__get_Item, (ArraySegment_1_Object___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x0153B550, void, ArraySegment_1_Object__System_Collections_Generic_IList_T__set_Item, (ArraySegment_1_Object___Boxed * __this, int32_t index, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x0153B490, Object *, ArraySegment_1_Object__System_Collections_Generic_IReadOnlyList_T__get_Item, (ArraySegment_1_Object___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x0153AC80, IEnumerator *, ArraySegment_1_Object__System_Collections_IEnumerable_GetEnumerator, (ArraySegment_1_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0153AD60, void, ArraySegment_1_Object__ThrowInvalidOperationIfDefault, (ArraySegment_1_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0153A710, Object__Array *, ArraySegment_1_Object__ToArray, (ArraySegment_1_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, Object__Array *, ArraySegment_1_Object__get_Array, (ArraySegment_1_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E57F20, int32_t, ArraySegment_1_Object__get_Count, (ArraySegment_1_Object___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0153A260, void, ArraySegment_1_Object___ctor, (ArraySegment_1_Object_ * __this, Object__Array * array, MethodInfo * method)); +DO_APP_FUNC(0x0153A2F0, void, ArraySegment_1_Object___ctor_1, (ArraySegment_1_Object_ * __this, Object__Array * array, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC(0x0153A4E0, void, ArraySegment_1_Object__CopyTo, (ArraySegment_1_Object_ * __this, Object__Array * destination, int32_t destinationIndex, MethodInfo * method)); +DO_APP_FUNC(0x0153A6F0, bool, ArraySegment_1_Object__Equals, (ArraySegment_1_Object_ * __this, ArraySegment_1_Object_ obj, MethodInfo * method)); +DO_APP_FUNC(0x0153A5A0, bool, ArraySegment_1_Object__Equals_1, (ArraySegment_1_Object_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x0153A350, ArraySegment_1_T_Enumerator_Object_, ArraySegment_1_Object__GetEnumerator, (ArraySegment_1_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0153B3E0, int32_t, ArraySegment_1_Object__GetHashCode, (ArraySegment_1_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0153AB60, void, ArraySegment_1_Object__System_Collections_Generic_ICollection_T__Add, (ArraySegment_1_Object_ * __this, Object * item, MethodInfo * method)); +DO_APP_FUNC(0x0153AB60, void, ArraySegment_1_Object__System_Collections_Generic_ICollection_T__Clear, (ArraySegment_1_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0153B740, bool, ArraySegment_1_Object__System_Collections_Generic_ICollection_T__Contains, (ArraySegment_1_Object_ * __this, Object * item, MethodInfo * method)); +DO_APP_FUNC(0x0153AB60, bool, ArraySegment_1_Object__System_Collections_Generic_ICollection_T__Remove, (ArraySegment_1_Object_ * __this, Object * item, MethodInfo * method)); +DO_APP_FUNC(0x0041AEF0, bool, ArraySegment_1_Object__System_Collections_Generic_ICollection_T__get_IsReadOnly, (ArraySegment_1_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0153AC80, IEnumerator_1_System_Object_ *, ArraySegment_1_Object__System_Collections_Generic_IEnumerable_T__GetEnumerator, (ArraySegment_1_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0153B610, int32_t, ArraySegment_1_Object__System_Collections_Generic_IList_T__IndexOf, (ArraySegment_1_Object_ * __this, Object * item, MethodInfo * method)); +DO_APP_FUNC(0x0153AB60, void, ArraySegment_1_Object__System_Collections_Generic_IList_T__Insert, (ArraySegment_1_Object_ * __this, int32_t index, Object * item, MethodInfo * method)); +DO_APP_FUNC(0x0153AB60, void, ArraySegment_1_Object__System_Collections_Generic_IList_T__RemoveAt, (ArraySegment_1_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x0153B490, Object *, ArraySegment_1_Object__System_Collections_Generic_IList_T__get_Item, (ArraySegment_1_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x0153B550, void, ArraySegment_1_Object__System_Collections_Generic_IList_T__set_Item, (ArraySegment_1_Object_ * __this, int32_t index, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0153B490, Object *, ArraySegment_1_Object__System_Collections_Generic_IReadOnlyList_T__get_Item, (ArraySegment_1_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x0153AC80, IEnumerator *, ArraySegment_1_Object__System_Collections_IEnumerable_GetEnumerator, (ArraySegment_1_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0153AD60, void, ArraySegment_1_Object__ThrowInvalidOperationIfDefault, (ArraySegment_1_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0153A710, Object__Array *, ArraySegment_1_Object__ToArray, (ArraySegment_1_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Object__Array *, ArraySegment_1_Object__get_Array, (ArraySegment_1_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E57F20, int32_t, ArraySegment_1_Object__get_Count, (ArraySegment_1_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0153A1C0, ArraySegment_1_Object_, ArraySegment_1_Object__get_Empty, (MethodInfo * method)); -DO_APP_FUNC(0x00471920, int32_t, ArraySegment_1_Object__get_Offset, (ArraySegment_1_Object___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471920, int32_t, ArraySegment_1_Object__get_Offset, (ArraySegment_1_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0153AD80, void, ArraySegment_1_Single___cctor, (MethodInfo * method)); -DO_APP_FUNC(0x0153A260, void, ArraySegment_1_Single___ctor, (ArraySegment_1_Single___Boxed * __this, Single__Array * array, MethodInfo * method)); +DO_APP_FUNC(0x0153A260, void, ArraySegment_1_Single___ctor, (ArraySegment_1_Single_ * __this, Single__Array * array, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8FB70, ArraySegment_1_Single___ctor__MethodInfo); -DO_APP_FUNC(0x0153A2F0, void, ArraySegment_1_Single___ctor_1, (ArraySegment_1_Single___Boxed * __this, Single__Array * array, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC(0x0153A2F0, void, ArraySegment_1_Single___ctor_1, (ArraySegment_1_Single_ * __this, Single__Array * array, int32_t offset, int32_t count, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8FB68, ArraySegment_1_Single___ctor_1__MethodInfo); -DO_APP_FUNC(0x0153A4E0, void, ArraySegment_1_Single__CopyTo, (ArraySegment_1_Single___Boxed * __this, Single__Array * destination, int32_t destinationIndex, MethodInfo * method)); -DO_APP_FUNC(0x0153A6F0, bool, ArraySegment_1_Single__Equals, (ArraySegment_1_Single___Boxed * __this, ArraySegment_1_Single_ obj, MethodInfo * method)); -DO_APP_FUNC(0x0153A5A0, bool, ArraySegment_1_Single__Equals_1, (ArraySegment_1_Single___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0153A350, ArraySegment_1_T_Enumerator_Single_, ArraySegment_1_Single__GetEnumerator, (ArraySegment_1_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0153B850, int32_t, ArraySegment_1_Single__GetHashCode, (ArraySegment_1_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0153AB60, void, ArraySegment_1_Single__System_Collections_Generic_ICollection_T__Add, (ArraySegment_1_Single___Boxed * __this, float item, MethodInfo * method)); -DO_APP_FUNC(0x0153AB60, void, ArraySegment_1_Single__System_Collections_Generic_ICollection_T__Clear, (ArraySegment_1_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0153BBC0, bool, ArraySegment_1_Single__System_Collections_Generic_ICollection_T__Contains, (ArraySegment_1_Single___Boxed * __this, float item, MethodInfo * method)); -DO_APP_FUNC(0x0153AB60, bool, ArraySegment_1_Single__System_Collections_Generic_ICollection_T__Remove, (ArraySegment_1_Single___Boxed * __this, float item, MethodInfo * method)); -DO_APP_FUNC(0x0041AEF0, bool, ArraySegment_1_Single__System_Collections_Generic_ICollection_T__get_IsReadOnly, (ArraySegment_1_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0153AC80, IEnumerator_1_System_Single_ *, ArraySegment_1_Single__System_Collections_Generic_IEnumerable_T__GetEnumerator, (ArraySegment_1_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0153BA90, int32_t, ArraySegment_1_Single__System_Collections_Generic_IList_T__IndexOf, (ArraySegment_1_Single___Boxed * __this, float item, MethodInfo * method)); -DO_APP_FUNC(0x0153AB60, void, ArraySegment_1_Single__System_Collections_Generic_IList_T__Insert, (ArraySegment_1_Single___Boxed * __this, int32_t index, float item, MethodInfo * method)); -DO_APP_FUNC(0x0153AB60, void, ArraySegment_1_Single__System_Collections_Generic_IList_T__RemoveAt, (ArraySegment_1_Single___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x0153B900, float, ArraySegment_1_Single__System_Collections_Generic_IList_T__get_Item, (ArraySegment_1_Single___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x0153B9C0, void, ArraySegment_1_Single__System_Collections_Generic_IList_T__set_Item, (ArraySegment_1_Single___Boxed * __this, int32_t index, float value, MethodInfo * method)); -DO_APP_FUNC(0x0153B900, float, ArraySegment_1_Single__System_Collections_Generic_IReadOnlyList_T__get_Item, (ArraySegment_1_Single___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x0153AC80, IEnumerator *, ArraySegment_1_Single__System_Collections_IEnumerable_GetEnumerator, (ArraySegment_1_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0153AD60, void, ArraySegment_1_Single__ThrowInvalidOperationIfDefault, (ArraySegment_1_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0153A710, Single__Array *, ArraySegment_1_Single__ToArray, (ArraySegment_1_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, Single__Array *, ArraySegment_1_Single__get_Array, (ArraySegment_1_Single___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0153A4E0, void, ArraySegment_1_Single__CopyTo, (ArraySegment_1_Single_ * __this, Single__Array * destination, int32_t destinationIndex, MethodInfo * method)); +DO_APP_FUNC(0x0153A6F0, bool, ArraySegment_1_Single__Equals, (ArraySegment_1_Single_ * __this, ArraySegment_1_Single_ obj, MethodInfo * method)); +DO_APP_FUNC(0x0153A5A0, bool, ArraySegment_1_Single__Equals_1, (ArraySegment_1_Single_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x0153A350, ArraySegment_1_T_Enumerator_Single_, ArraySegment_1_Single__GetEnumerator, (ArraySegment_1_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0153B850, int32_t, ArraySegment_1_Single__GetHashCode, (ArraySegment_1_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0153AB60, void, ArraySegment_1_Single__System_Collections_Generic_ICollection_T__Add, (ArraySegment_1_Single_ * __this, float item, MethodInfo * method)); +DO_APP_FUNC(0x0153AB60, void, ArraySegment_1_Single__System_Collections_Generic_ICollection_T__Clear, (ArraySegment_1_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0153BBC0, bool, ArraySegment_1_Single__System_Collections_Generic_ICollection_T__Contains, (ArraySegment_1_Single_ * __this, float item, MethodInfo * method)); +DO_APP_FUNC(0x0153AB60, bool, ArraySegment_1_Single__System_Collections_Generic_ICollection_T__Remove, (ArraySegment_1_Single_ * __this, float item, MethodInfo * method)); +DO_APP_FUNC(0x0041AEF0, bool, ArraySegment_1_Single__System_Collections_Generic_ICollection_T__get_IsReadOnly, (ArraySegment_1_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0153AC80, IEnumerator_1_System_Single_ *, ArraySegment_1_Single__System_Collections_Generic_IEnumerable_T__GetEnumerator, (ArraySegment_1_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0153BA90, int32_t, ArraySegment_1_Single__System_Collections_Generic_IList_T__IndexOf, (ArraySegment_1_Single_ * __this, float item, MethodInfo * method)); +DO_APP_FUNC(0x0153AB60, void, ArraySegment_1_Single__System_Collections_Generic_IList_T__Insert, (ArraySegment_1_Single_ * __this, int32_t index, float item, MethodInfo * method)); +DO_APP_FUNC(0x0153AB60, void, ArraySegment_1_Single__System_Collections_Generic_IList_T__RemoveAt, (ArraySegment_1_Single_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x0153B900, float, ArraySegment_1_Single__System_Collections_Generic_IList_T__get_Item, (ArraySegment_1_Single_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x0153B9C0, void, ArraySegment_1_Single__System_Collections_Generic_IList_T__set_Item, (ArraySegment_1_Single_ * __this, int32_t index, float value, MethodInfo * method)); +DO_APP_FUNC(0x0153B900, float, ArraySegment_1_Single__System_Collections_Generic_IReadOnlyList_T__get_Item, (ArraySegment_1_Single_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x0153AC80, IEnumerator *, ArraySegment_1_Single__System_Collections_IEnumerable_GetEnumerator, (ArraySegment_1_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0153AD60, void, ArraySegment_1_Single__ThrowInvalidOperationIfDefault, (ArraySegment_1_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0153A710, Single__Array *, ArraySegment_1_Single__ToArray, (ArraySegment_1_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Single__Array *, ArraySegment_1_Single__get_Array, (ArraySegment_1_Single_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C93B60, ArraySegment_1_Single__get_Array__MethodInfo); -DO_APP_FUNC(0x00E57F20, int32_t, ArraySegment_1_Single__get_Count, (ArraySegment_1_Single___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E57F20, int32_t, ArraySegment_1_Single__get_Count, (ArraySegment_1_Single_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8FB88, ArraySegment_1_Single__get_Count__MethodInfo); DO_APP_FUNC(0x0153A1C0, ArraySegment_1_Single_, ArraySegment_1_Single__get_Empty, (MethodInfo * method)); -DO_APP_FUNC(0x00471920, int32_t, ArraySegment_1_Single__get_Offset, (ArraySegment_1_Single___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471920, int32_t, ArraySegment_1_Single__get_Offset, (ArraySegment_1_Single_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C93B68, ArraySegment_1_Single__get_Offset__MethodInfo); DO_APP_FUNC(0x0153AD80, void, ArraySegment_1_Dissonance_Networking_VoicePacket___cctor, (MethodInfo * method)); -DO_APP_FUNC(0x0153A260, void, ArraySegment_1_Dissonance_Networking_VoicePacket___ctor, (ArraySegment_1_Dissonance_Networking_VoicePacket___Boxed * __this, VoicePacket__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x0153A2F0, void, ArraySegment_1_Dissonance_Networking_VoicePacket___ctor_1, (ArraySegment_1_Dissonance_Networking_VoicePacket___Boxed * __this, VoicePacket__Array * array, int32_t offset, int32_t count, MethodInfo * method)); -DO_APP_FUNC(0x0153A4E0, void, ArraySegment_1_Dissonance_Networking_VoicePacket__CopyTo, (ArraySegment_1_Dissonance_Networking_VoicePacket___Boxed * __this, VoicePacket__Array * destination, int32_t destinationIndex, MethodInfo * method)); -DO_APP_FUNC(0x0153A6F0, bool, ArraySegment_1_Dissonance_Networking_VoicePacket__Equals, (ArraySegment_1_Dissonance_Networking_VoicePacket___Boxed * __this, ArraySegment_1_Dissonance_Networking_VoicePacket_ obj, MethodInfo * method)); -DO_APP_FUNC(0x0153A5A0, bool, ArraySegment_1_Dissonance_Networking_VoicePacket__Equals_1, (ArraySegment_1_Dissonance_Networking_VoicePacket___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0153A350, ArraySegment_1_T_Enumerator_Dissonance_Networking_VoicePacket_, ArraySegment_1_Dissonance_Networking_VoicePacket__GetEnumerator, (ArraySegment_1_Dissonance_Networking_VoicePacket___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0153BCE0, int32_t, ArraySegment_1_Dissonance_Networking_VoicePacket__GetHashCode, (ArraySegment_1_Dissonance_Networking_VoicePacket___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0153AB60, void, ArraySegment_1_Dissonance_Networking_VoicePacket__System_Collections_Generic_ICollection_T__Add, (ArraySegment_1_Dissonance_Networking_VoicePacket___Boxed * __this, VoicePacket item, MethodInfo * method)); -DO_APP_FUNC(0x0153AB60, void, ArraySegment_1_Dissonance_Networking_VoicePacket__System_Collections_Generic_ICollection_T__Clear, (ArraySegment_1_Dissonance_Networking_VoicePacket___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0153C0D0, bool, ArraySegment_1_Dissonance_Networking_VoicePacket__System_Collections_Generic_ICollection_T__Contains, (ArraySegment_1_Dissonance_Networking_VoicePacket___Boxed * __this, VoicePacket item, MethodInfo * method)); -DO_APP_FUNC(0x0153AB60, bool, ArraySegment_1_Dissonance_Networking_VoicePacket__System_Collections_Generic_ICollection_T__Remove, (ArraySegment_1_Dissonance_Networking_VoicePacket___Boxed * __this, VoicePacket item, MethodInfo * method)); -DO_APP_FUNC(0x0041AEF0, bool, ArraySegment_1_Dissonance_Networking_VoicePacket__System_Collections_Generic_ICollection_T__get_IsReadOnly, (ArraySegment_1_Dissonance_Networking_VoicePacket___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0153AC80, IEnumerator_1_Dissonance_Networking_VoicePacket_ *, ArraySegment_1_Dissonance_Networking_VoicePacket__System_Collections_Generic_IEnumerable_T__GetEnumerator, (ArraySegment_1_Dissonance_Networking_VoicePacket___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0153BF70, int32_t, ArraySegment_1_Dissonance_Networking_VoicePacket__System_Collections_Generic_IList_T__IndexOf, (ArraySegment_1_Dissonance_Networking_VoicePacket___Boxed * __this, VoicePacket item, MethodInfo * method)); -DO_APP_FUNC(0x0153AB60, void, ArraySegment_1_Dissonance_Networking_VoicePacket__System_Collections_Generic_IList_T__Insert, (ArraySegment_1_Dissonance_Networking_VoicePacket___Boxed * __this, int32_t index, VoicePacket item, MethodInfo * method)); -DO_APP_FUNC(0x0153AB60, void, ArraySegment_1_Dissonance_Networking_VoicePacket__System_Collections_Generic_IList_T__RemoveAt, (ArraySegment_1_Dissonance_Networking_VoicePacket___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x0153BD90, VoicePacket, ArraySegment_1_Dissonance_Networking_VoicePacket__System_Collections_Generic_IList_T__get_Item, (ArraySegment_1_Dissonance_Networking_VoicePacket___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x0153BE80, void, ArraySegment_1_Dissonance_Networking_VoicePacket__System_Collections_Generic_IList_T__set_Item, (ArraySegment_1_Dissonance_Networking_VoicePacket___Boxed * __this, int32_t index, VoicePacket value, MethodInfo * method)); -DO_APP_FUNC(0x0153BD90, VoicePacket, ArraySegment_1_Dissonance_Networking_VoicePacket__System_Collections_Generic_IReadOnlyList_T__get_Item, (ArraySegment_1_Dissonance_Networking_VoicePacket___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x0153AC80, IEnumerator *, ArraySegment_1_Dissonance_Networking_VoicePacket__System_Collections_IEnumerable_GetEnumerator, (ArraySegment_1_Dissonance_Networking_VoicePacket___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0153AD60, void, ArraySegment_1_Dissonance_Networking_VoicePacket__ThrowInvalidOperationIfDefault, (ArraySegment_1_Dissonance_Networking_VoicePacket___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0153A710, VoicePacket__Array *, ArraySegment_1_Dissonance_Networking_VoicePacket__ToArray, (ArraySegment_1_Dissonance_Networking_VoicePacket___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, VoicePacket__Array *, ArraySegment_1_Dissonance_Networking_VoicePacket__get_Array, (ArraySegment_1_Dissonance_Networking_VoicePacket___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E57F20, int32_t, ArraySegment_1_Dissonance_Networking_VoicePacket__get_Count, (ArraySegment_1_Dissonance_Networking_VoicePacket___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0153A260, void, ArraySegment_1_Dissonance_Networking_VoicePacket___ctor, (ArraySegment_1_Dissonance_Networking_VoicePacket_ * __this, VoicePacket__Array * array, MethodInfo * method)); +DO_APP_FUNC(0x0153A2F0, void, ArraySegment_1_Dissonance_Networking_VoicePacket___ctor_1, (ArraySegment_1_Dissonance_Networking_VoicePacket_ * __this, VoicePacket__Array * array, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC(0x0153A4E0, void, ArraySegment_1_Dissonance_Networking_VoicePacket__CopyTo, (ArraySegment_1_Dissonance_Networking_VoicePacket_ * __this, VoicePacket__Array * destination, int32_t destinationIndex, MethodInfo * method)); +DO_APP_FUNC(0x0153A6F0, bool, ArraySegment_1_Dissonance_Networking_VoicePacket__Equals, (ArraySegment_1_Dissonance_Networking_VoicePacket_ * __this, ArraySegment_1_Dissonance_Networking_VoicePacket_ obj, MethodInfo * method)); +DO_APP_FUNC(0x0153A5A0, bool, ArraySegment_1_Dissonance_Networking_VoicePacket__Equals_1, (ArraySegment_1_Dissonance_Networking_VoicePacket_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x0153A350, ArraySegment_1_T_Enumerator_Dissonance_Networking_VoicePacket_, ArraySegment_1_Dissonance_Networking_VoicePacket__GetEnumerator, (ArraySegment_1_Dissonance_Networking_VoicePacket_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0153BCE0, int32_t, ArraySegment_1_Dissonance_Networking_VoicePacket__GetHashCode, (ArraySegment_1_Dissonance_Networking_VoicePacket_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0153AB60, void, ArraySegment_1_Dissonance_Networking_VoicePacket__System_Collections_Generic_ICollection_T__Add, (ArraySegment_1_Dissonance_Networking_VoicePacket_ * __this, VoicePacket item, MethodInfo * method)); +DO_APP_FUNC(0x0153AB60, void, ArraySegment_1_Dissonance_Networking_VoicePacket__System_Collections_Generic_ICollection_T__Clear, (ArraySegment_1_Dissonance_Networking_VoicePacket_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0153C0D0, bool, ArraySegment_1_Dissonance_Networking_VoicePacket__System_Collections_Generic_ICollection_T__Contains, (ArraySegment_1_Dissonance_Networking_VoicePacket_ * __this, VoicePacket item, MethodInfo * method)); +DO_APP_FUNC(0x0153AB60, bool, ArraySegment_1_Dissonance_Networking_VoicePacket__System_Collections_Generic_ICollection_T__Remove, (ArraySegment_1_Dissonance_Networking_VoicePacket_ * __this, VoicePacket item, MethodInfo * method)); +DO_APP_FUNC(0x0041AEF0, bool, ArraySegment_1_Dissonance_Networking_VoicePacket__System_Collections_Generic_ICollection_T__get_IsReadOnly, (ArraySegment_1_Dissonance_Networking_VoicePacket_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0153AC80, IEnumerator_1_Dissonance_Networking_VoicePacket_ *, ArraySegment_1_Dissonance_Networking_VoicePacket__System_Collections_Generic_IEnumerable_T__GetEnumerator, (ArraySegment_1_Dissonance_Networking_VoicePacket_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0153BF70, int32_t, ArraySegment_1_Dissonance_Networking_VoicePacket__System_Collections_Generic_IList_T__IndexOf, (ArraySegment_1_Dissonance_Networking_VoicePacket_ * __this, VoicePacket item, MethodInfo * method)); +DO_APP_FUNC(0x0153AB60, void, ArraySegment_1_Dissonance_Networking_VoicePacket__System_Collections_Generic_IList_T__Insert, (ArraySegment_1_Dissonance_Networking_VoicePacket_ * __this, int32_t index, VoicePacket item, MethodInfo * method)); +DO_APP_FUNC(0x0153AB60, void, ArraySegment_1_Dissonance_Networking_VoicePacket__System_Collections_Generic_IList_T__RemoveAt, (ArraySegment_1_Dissonance_Networking_VoicePacket_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x0153BD90, VoicePacket, ArraySegment_1_Dissonance_Networking_VoicePacket__System_Collections_Generic_IList_T__get_Item, (ArraySegment_1_Dissonance_Networking_VoicePacket_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x0153BE80, void, ArraySegment_1_Dissonance_Networking_VoicePacket__System_Collections_Generic_IList_T__set_Item, (ArraySegment_1_Dissonance_Networking_VoicePacket_ * __this, int32_t index, VoicePacket value, MethodInfo * method)); +DO_APP_FUNC(0x0153BD90, VoicePacket, ArraySegment_1_Dissonance_Networking_VoicePacket__System_Collections_Generic_IReadOnlyList_T__get_Item, (ArraySegment_1_Dissonance_Networking_VoicePacket_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x0153AC80, IEnumerator *, ArraySegment_1_Dissonance_Networking_VoicePacket__System_Collections_IEnumerable_GetEnumerator, (ArraySegment_1_Dissonance_Networking_VoicePacket_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0153AD60, void, ArraySegment_1_Dissonance_Networking_VoicePacket__ThrowInvalidOperationIfDefault, (ArraySegment_1_Dissonance_Networking_VoicePacket_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0153A710, VoicePacket__Array *, ArraySegment_1_Dissonance_Networking_VoicePacket__ToArray, (ArraySegment_1_Dissonance_Networking_VoicePacket_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, VoicePacket__Array *, ArraySegment_1_Dissonance_Networking_VoicePacket__get_Array, (ArraySegment_1_Dissonance_Networking_VoicePacket_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E57F20, int32_t, ArraySegment_1_Dissonance_Networking_VoicePacket__get_Count, (ArraySegment_1_Dissonance_Networking_VoicePacket_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0153A1C0, ArraySegment_1_Dissonance_Networking_VoicePacket_, ArraySegment_1_Dissonance_Networking_VoicePacket__get_Empty, (MethodInfo * method)); -DO_APP_FUNC(0x00471920, int32_t, ArraySegment_1_Dissonance_Networking_VoicePacket__get_Offset, (ArraySegment_1_Dissonance_Networking_VoicePacket___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471920, int32_t, ArraySegment_1_Dissonance_Networking_VoicePacket__get_Offset, (ArraySegment_1_Dissonance_Networking_VoicePacket_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0153AD80, void, ArraySegment_1_Dissonance_Logs_LogMessage___cctor, (MethodInfo * method)); -DO_APP_FUNC(0x0153A260, void, ArraySegment_1_Dissonance_Logs_LogMessage___ctor, (ArraySegment_1_Dissonance_Logs_LogMessage___Boxed * __this, Logs_LogMessage_1__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x0153A2F0, void, ArraySegment_1_Dissonance_Logs_LogMessage___ctor_1, (ArraySegment_1_Dissonance_Logs_LogMessage___Boxed * __this, Logs_LogMessage_1__Array * array, int32_t offset, int32_t count, MethodInfo * method)); -DO_APP_FUNC(0x0153A4E0, void, ArraySegment_1_Dissonance_Logs_LogMessage__CopyTo, (ArraySegment_1_Dissonance_Logs_LogMessage___Boxed * __this, Logs_LogMessage_1__Array * destination, int32_t destinationIndex, MethodInfo * method)); -DO_APP_FUNC(0x0153A6F0, bool, ArraySegment_1_Dissonance_Logs_LogMessage__Equals, (ArraySegment_1_Dissonance_Logs_LogMessage___Boxed * __this, ArraySegment_1_Dissonance_Logs_LogMessage_ obj, MethodInfo * method)); -DO_APP_FUNC(0x0153A5A0, bool, ArraySegment_1_Dissonance_Logs_LogMessage__Equals_1, (ArraySegment_1_Dissonance_Logs_LogMessage___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0153A350, ArraySegment_1_T_Enumerator_Dissonance_Logs_LogMessage_, ArraySegment_1_Dissonance_Logs_LogMessage__GetEnumerator, (ArraySegment_1_Dissonance_Logs_LogMessage___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0153C210, int32_t, ArraySegment_1_Dissonance_Logs_LogMessage__GetHashCode, (ArraySegment_1_Dissonance_Logs_LogMessage___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0153AB60, void, ArraySegment_1_Dissonance_Logs_LogMessage__System_Collections_Generic_ICollection_T__Add, (ArraySegment_1_Dissonance_Logs_LogMessage___Boxed * __this, Logs_LogMessage_1 item, MethodInfo * method)); -DO_APP_FUNC(0x0153AB60, void, ArraySegment_1_Dissonance_Logs_LogMessage__System_Collections_Generic_ICollection_T__Clear, (ArraySegment_1_Dissonance_Logs_LogMessage___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0153C600, bool, ArraySegment_1_Dissonance_Logs_LogMessage__System_Collections_Generic_ICollection_T__Contains, (ArraySegment_1_Dissonance_Logs_LogMessage___Boxed * __this, Logs_LogMessage_1 item, MethodInfo * method)); -DO_APP_FUNC(0x0153AB60, bool, ArraySegment_1_Dissonance_Logs_LogMessage__System_Collections_Generic_ICollection_T__Remove, (ArraySegment_1_Dissonance_Logs_LogMessage___Boxed * __this, Logs_LogMessage_1 item, MethodInfo * method)); -DO_APP_FUNC(0x0041AEF0, bool, ArraySegment_1_Dissonance_Logs_LogMessage__System_Collections_Generic_ICollection_T__get_IsReadOnly, (ArraySegment_1_Dissonance_Logs_LogMessage___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0153AC80, IEnumerator_1_Dissonance_Logs_LogMessage_ *, ArraySegment_1_Dissonance_Logs_LogMessage__System_Collections_Generic_IEnumerable_T__GetEnumerator, (ArraySegment_1_Dissonance_Logs_LogMessage___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0153C4D0, int32_t, ArraySegment_1_Dissonance_Logs_LogMessage__System_Collections_Generic_IList_T__IndexOf, (ArraySegment_1_Dissonance_Logs_LogMessage___Boxed * __this, Logs_LogMessage_1 item, MethodInfo * method)); -DO_APP_FUNC(0x0153AB60, void, ArraySegment_1_Dissonance_Logs_LogMessage__System_Collections_Generic_IList_T__Insert, (ArraySegment_1_Dissonance_Logs_LogMessage___Boxed * __this, int32_t index, Logs_LogMessage_1 item, MethodInfo * method)); -DO_APP_FUNC(0x0153AB60, void, ArraySegment_1_Dissonance_Logs_LogMessage__System_Collections_Generic_IList_T__RemoveAt, (ArraySegment_1_Dissonance_Logs_LogMessage___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x0153C2C0, Logs_LogMessage_1, ArraySegment_1_Dissonance_Logs_LogMessage__System_Collections_Generic_IList_T__get_Item, (ArraySegment_1_Dissonance_Logs_LogMessage___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x0153C3A0, void, ArraySegment_1_Dissonance_Logs_LogMessage__System_Collections_Generic_IList_T__set_Item, (ArraySegment_1_Dissonance_Logs_LogMessage___Boxed * __this, int32_t index, Logs_LogMessage_1 value, MethodInfo * method)); -DO_APP_FUNC(0x0153C2C0, Logs_LogMessage_1, ArraySegment_1_Dissonance_Logs_LogMessage__System_Collections_Generic_IReadOnlyList_T__get_Item, (ArraySegment_1_Dissonance_Logs_LogMessage___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x0153AC80, IEnumerator *, ArraySegment_1_Dissonance_Logs_LogMessage__System_Collections_IEnumerable_GetEnumerator, (ArraySegment_1_Dissonance_Logs_LogMessage___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0153AD60, void, ArraySegment_1_Dissonance_Logs_LogMessage__ThrowInvalidOperationIfDefault, (ArraySegment_1_Dissonance_Logs_LogMessage___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0153A710, Logs_LogMessage_1__Array *, ArraySegment_1_Dissonance_Logs_LogMessage__ToArray, (ArraySegment_1_Dissonance_Logs_LogMessage___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, Logs_LogMessage_1__Array *, ArraySegment_1_Dissonance_Logs_LogMessage__get_Array, (ArraySegment_1_Dissonance_Logs_LogMessage___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E57F20, int32_t, ArraySegment_1_Dissonance_Logs_LogMessage__get_Count, (ArraySegment_1_Dissonance_Logs_LogMessage___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0153A260, void, ArraySegment_1_Dissonance_Logs_LogMessage___ctor, (ArraySegment_1_Dissonance_Logs_LogMessage_ * __this, Logs_LogMessage_1__Array * array, MethodInfo * method)); +DO_APP_FUNC(0x0153A2F0, void, ArraySegment_1_Dissonance_Logs_LogMessage___ctor_1, (ArraySegment_1_Dissonance_Logs_LogMessage_ * __this, Logs_LogMessage_1__Array * array, int32_t offset, int32_t count, MethodInfo * method)); +DO_APP_FUNC(0x0153A4E0, void, ArraySegment_1_Dissonance_Logs_LogMessage__CopyTo, (ArraySegment_1_Dissonance_Logs_LogMessage_ * __this, Logs_LogMessage_1__Array * destination, int32_t destinationIndex, MethodInfo * method)); +DO_APP_FUNC(0x0153A6F0, bool, ArraySegment_1_Dissonance_Logs_LogMessage__Equals, (ArraySegment_1_Dissonance_Logs_LogMessage_ * __this, ArraySegment_1_Dissonance_Logs_LogMessage_ obj, MethodInfo * method)); +DO_APP_FUNC(0x0153A5A0, bool, ArraySegment_1_Dissonance_Logs_LogMessage__Equals_1, (ArraySegment_1_Dissonance_Logs_LogMessage_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x0153A350, ArraySegment_1_T_Enumerator_Dissonance_Logs_LogMessage_, ArraySegment_1_Dissonance_Logs_LogMessage__GetEnumerator, (ArraySegment_1_Dissonance_Logs_LogMessage_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0153C210, int32_t, ArraySegment_1_Dissonance_Logs_LogMessage__GetHashCode, (ArraySegment_1_Dissonance_Logs_LogMessage_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0153AB60, void, ArraySegment_1_Dissonance_Logs_LogMessage__System_Collections_Generic_ICollection_T__Add, (ArraySegment_1_Dissonance_Logs_LogMessage_ * __this, Logs_LogMessage_1 item, MethodInfo * method)); +DO_APP_FUNC(0x0153AB60, void, ArraySegment_1_Dissonance_Logs_LogMessage__System_Collections_Generic_ICollection_T__Clear, (ArraySegment_1_Dissonance_Logs_LogMessage_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0153C600, bool, ArraySegment_1_Dissonance_Logs_LogMessage__System_Collections_Generic_ICollection_T__Contains, (ArraySegment_1_Dissonance_Logs_LogMessage_ * __this, Logs_LogMessage_1 item, MethodInfo * method)); +DO_APP_FUNC(0x0153AB60, bool, ArraySegment_1_Dissonance_Logs_LogMessage__System_Collections_Generic_ICollection_T__Remove, (ArraySegment_1_Dissonance_Logs_LogMessage_ * __this, Logs_LogMessage_1 item, MethodInfo * method)); +DO_APP_FUNC(0x0041AEF0, bool, ArraySegment_1_Dissonance_Logs_LogMessage__System_Collections_Generic_ICollection_T__get_IsReadOnly, (ArraySegment_1_Dissonance_Logs_LogMessage_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0153AC80, IEnumerator_1_Dissonance_Logs_LogMessage_ *, ArraySegment_1_Dissonance_Logs_LogMessage__System_Collections_Generic_IEnumerable_T__GetEnumerator, (ArraySegment_1_Dissonance_Logs_LogMessage_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0153C4D0, int32_t, ArraySegment_1_Dissonance_Logs_LogMessage__System_Collections_Generic_IList_T__IndexOf, (ArraySegment_1_Dissonance_Logs_LogMessage_ * __this, Logs_LogMessage_1 item, MethodInfo * method)); +DO_APP_FUNC(0x0153AB60, void, ArraySegment_1_Dissonance_Logs_LogMessage__System_Collections_Generic_IList_T__Insert, (ArraySegment_1_Dissonance_Logs_LogMessage_ * __this, int32_t index, Logs_LogMessage_1 item, MethodInfo * method)); +DO_APP_FUNC(0x0153AB60, void, ArraySegment_1_Dissonance_Logs_LogMessage__System_Collections_Generic_IList_T__RemoveAt, (ArraySegment_1_Dissonance_Logs_LogMessage_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x0153C2C0, Logs_LogMessage_1, ArraySegment_1_Dissonance_Logs_LogMessage__System_Collections_Generic_IList_T__get_Item, (ArraySegment_1_Dissonance_Logs_LogMessage_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x0153C3A0, void, ArraySegment_1_Dissonance_Logs_LogMessage__System_Collections_Generic_IList_T__set_Item, (ArraySegment_1_Dissonance_Logs_LogMessage_ * __this, int32_t index, Logs_LogMessage_1 value, MethodInfo * method)); +DO_APP_FUNC(0x0153C2C0, Logs_LogMessage_1, ArraySegment_1_Dissonance_Logs_LogMessage__System_Collections_Generic_IReadOnlyList_T__get_Item, (ArraySegment_1_Dissonance_Logs_LogMessage_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x0153AC80, IEnumerator *, ArraySegment_1_Dissonance_Logs_LogMessage__System_Collections_IEnumerable_GetEnumerator, (ArraySegment_1_Dissonance_Logs_LogMessage_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0153AD60, void, ArraySegment_1_Dissonance_Logs_LogMessage__ThrowInvalidOperationIfDefault, (ArraySegment_1_Dissonance_Logs_LogMessage_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0153A710, Logs_LogMessage_1__Array *, ArraySegment_1_Dissonance_Logs_LogMessage__ToArray, (ArraySegment_1_Dissonance_Logs_LogMessage_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Logs_LogMessage_1__Array *, ArraySegment_1_Dissonance_Logs_LogMessage__get_Array, (ArraySegment_1_Dissonance_Logs_LogMessage_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E57F20, int32_t, ArraySegment_1_Dissonance_Logs_LogMessage__get_Count, (ArraySegment_1_Dissonance_Logs_LogMessage_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0153A1C0, ArraySegment_1_Dissonance_Logs_LogMessage_, ArraySegment_1_Dissonance_Logs_LogMessage__get_Empty, (MethodInfo * method)); -DO_APP_FUNC(0x00471920, int32_t, ArraySegment_1_Dissonance_Logs_LogMessage__get_Offset, (ArraySegment_1_Dissonance_Logs_LogMessage___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471920, int32_t, ArraySegment_1_Dissonance_Logs_LogMessage__get_Offset, (ArraySegment_1_Dissonance_Logs_LogMessage_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_System_ArraySegment_1___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_System_ArraySegment_1___ctor, (ArraySortHelper_1_System_ArraySegment_1_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0153C990, int32_t, ArraySortHelper_1_System_ArraySegment_1__BinarySearch, (ArraySortHelper_1_System_ArraySegment_1_ * __this, ArraySegment_1_Byte___Array * array, int32_t index, int32_t length, ArraySegment_1_Byte_ value, IComparer_1_System_ArraySegment_1_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4CE0, ArraySortHelper_1_System_ArraySegment_1__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FC5BC0, void, ArraySortHelper_1_System_ArraySegment_1__DownHeap, (ArraySegment_1_Byte___Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_ArraySegment_1_Byte_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_System_ArraySegment_1__Heapsort, (ArraySegment_1_Byte___Array * keys, int32_t lo, int32_t hi, Comparison_1_ArraySegment_1_Byte_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC5E90, void, ArraySortHelper_1_System_ArraySegment_1__InsertionSort, (ArraySegment_1_Byte___Array * keys, int32_t lo, int32_t hi, Comparison_1_ArraySegment_1_Byte_ * comparer, MethodInfo * method)); @@ -122319,13 +135127,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_System_ArraySegment_1__IntroSort DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_System_ArraySegment_1__IntrospectiveSort, (ArraySegment_1_Byte___Array * keys, int32_t left, int32_t length, Comparison_1_ArraySegment_1_Byte_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5FD0, int32_t, ArraySortHelper_1_System_ArraySegment_1__PickPivotAndPartition, (ArraySegment_1_Byte___Array * keys, int32_t lo, int32_t hi, Comparison_1_ArraySegment_1_Byte_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0153CB10, void, ArraySortHelper_1_System_ArraySegment_1__Sort, (ArraySegment_1_Byte___Array * keys, int32_t index, int32_t length, Comparison_1_ArraySegment_1_Byte_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4CE8, ArraySortHelper_1_System_ArraySegment_1__Sort__MethodInfo); DO_APP_FUNC(0x0153C720, void, ArraySortHelper_1_System_ArraySegment_1__Sort_1, (ArraySortHelper_1_System_ArraySegment_1_ * __this, ArraySegment_1_Byte___Array * keys, int32_t index, int32_t length, IComparer_1_System_ArraySegment_1_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4C90, ArraySortHelper_1_System_ArraySegment_1__Sort_1__MethodInfo); DO_APP_FUNC(0x00FC5A80, void, ArraySortHelper_1_System_ArraySegment_1__Swap, (ArraySegment_1_Byte___Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FC5860, void, ArraySortHelper_1_System_ArraySegment_1__SwapIfGreater, (ArraySegment_1_Byte___Array * keys, Comparison_1_ArraySegment_1_Byte_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_System_ArraySegment_1_ *, ArraySortHelper_1_System_ArraySegment_1__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___ctor, (ArraySortHelper_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0153CF00, int32_t, ArraySortHelper_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__BinarySearch, (ArraySortHelper_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * __this, AsyncOperationHandle_1_System_Object___Array * array, int32_t index, int32_t length, AsyncOperationHandle_1_System_Object_ value, IComparer_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4CD8, ArraySortHelper_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__BinarySearch__MethodInfo); DO_APP_FUNC(0x010AF5E0, void, ArraySortHelper_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__DownHeap, (AsyncOperationHandle_1_System_Object___Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__Heapsort, (AsyncOperationHandle_1_System_Object___Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010AF930, void, ArraySortHelper_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__InsertionSort, (AsyncOperationHandle_1_System_Object___Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * comparer, MethodInfo * method)); @@ -122334,13 +135145,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_ResourceManagement_A DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__IntrospectiveSort, (AsyncOperationHandle_1_System_Object___Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB9EF0, int32_t, ArraySortHelper_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__PickPivotAndPartition, (AsyncOperationHandle_1_System_Object___Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0153D080, void, ArraySortHelper_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__Sort, (AsyncOperationHandle_1_System_Object___Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4CB0, ArraySortHelper_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__Sort__MethodInfo); DO_APP_FUNC(0x0153CC90, void, ArraySortHelper_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__Sort_1, (ArraySortHelper_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * __this, AsyncOperationHandle_1_System_Object___Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4CD0, ArraySortHelper_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__Sort_1__MethodInfo); DO_APP_FUNC(0x010AF480, void, ArraySortHelper_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__Swap, (AsyncOperationHandle_1_System_Object___Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x010AF200, void, ArraySortHelper_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__SwapIfGreater, (AsyncOperationHandle_1_System_Object___Array * keys, Comparison_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ *, ArraySortHelper_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta___ctor, (ArraySortHelper_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0153D470, int32_t, ArraySortHelper_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta__BinarySearch, (ArraySortHelper_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta_ * __this, VoiceSender_1_TPeer_ChannelDelta_Dissonance_Integrations_PhotonBolt_BoltPeer___Array * array, int32_t index, int32_t length, VoiceSender_1_TPeer_ChannelDelta_Dissonance_Integrations_PhotonBolt_BoltPeer_ value, IComparer_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4C98, ArraySortHelper_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FBA3F0, void, ArraySortHelper_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta__DownHeap, (VoiceSender_1_TPeer_ChannelDelta_Dissonance_Integrations_PhotonBolt_BoltPeer___Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta__Heapsort, (VoiceSender_1_TPeer_ChannelDelta_Dissonance_Integrations_PhotonBolt_BoltPeer___Array * keys, int32_t lo, int32_t hi, Comparison_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FBA740, void, ArraySortHelper_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta__InsertionSort, (VoiceSender_1_TPeer_ChannelDelta_Dissonance_Integrations_PhotonBolt_BoltPeer___Array * keys, int32_t lo, int32_t hi, Comparison_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta_ * comparer, MethodInfo * method)); @@ -122349,13 +135163,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_Dissonance_Networking_Client_Voi DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta__IntrospectiveSort, (VoiceSender_1_TPeer_ChannelDelta_Dissonance_Integrations_PhotonBolt_BoltPeer___Array * keys, int32_t left, int32_t length, Comparison_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB9EF0, int32_t, ArraySortHelper_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta__PickPivotAndPartition, (VoiceSender_1_TPeer_ChannelDelta_Dissonance_Integrations_PhotonBolt_BoltPeer___Array * keys, int32_t lo, int32_t hi, Comparison_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0153D5F0, void, ArraySortHelper_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta__Sort, (VoiceSender_1_TPeer_ChannelDelta_Dissonance_Integrations_PhotonBolt_BoltPeer___Array * keys, int32_t index, int32_t length, Comparison_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4CA8, ArraySortHelper_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta__Sort__MethodInfo); DO_APP_FUNC(0x0153D200, void, ArraySortHelper_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta__Sort_1, (ArraySortHelper_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta_ * __this, VoiceSender_1_TPeer_ChannelDelta_Dissonance_Integrations_PhotonBolt_BoltPeer___Array * keys, int32_t index, int32_t length, IComparer_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4CC0, ArraySortHelper_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta__Sort_1__MethodInfo); DO_APP_FUNC(0x00FB9D90, void, ArraySortHelper_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta__Swap, (VoiceSender_1_TPeer_ChannelDelta_Dissonance_Integrations_PhotonBolt_BoltPeer___Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FB9B10, void, ArraySortHelper_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta__SwapIfGreater, (VoiceSender_1_TPeer_ChannelDelta_Dissonance_Integrations_PhotonBolt_BoltPeer___Array * keys, Comparison_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta_ *, ArraySortHelper_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_Timeline_IntervalTree_1_Entry___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_Timeline_IntervalTree_1_Entry___ctor, (ArraySortHelper_1_UnityEngine_Timeline_IntervalTree_1_Entry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0153D9E0, int32_t, ArraySortHelper_1_UnityEngine_Timeline_IntervalTree_1_Entry__BinarySearch, (ArraySortHelper_1_UnityEngine_Timeline_IntervalTree_1_Entry_ * __this, IntervalTree_1_T_Entry_System_Object___Array * array, int32_t index, int32_t length, IntervalTree_1_T_Entry_System_Object_ value, IComparer_1_UnityEngine_Timeline_IntervalTree_1_Entry_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4C38, ArraySortHelper_1_UnityEngine_Timeline_IntervalTree_1_Entry__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FB76D0, void, ArraySortHelper_1_UnityEngine_Timeline_IntervalTree_1_Entry__DownHeap, (IntervalTree_1_T_Entry_System_Object___Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_Timeline_IntervalTree_1_Entry_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_Timeline_IntervalTree_1_Entry__Heapsort, (IntervalTree_1_T_Entry_System_Object___Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Timeline_IntervalTree_1_Entry_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB7A30, void, ArraySortHelper_1_UnityEngine_Timeline_IntervalTree_1_Entry__InsertionSort, (IntervalTree_1_T_Entry_System_Object___Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Timeline_IntervalTree_1_Entry_ * comparer, MethodInfo * method)); @@ -122364,13 +135181,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_Timeline_IntervalTre DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_Timeline_IntervalTree_1_Entry__IntrospectiveSort, (IntervalTree_1_T_Entry_System_Object___Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_Timeline_IntervalTree_1_Entry_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB71C0, int32_t, ArraySortHelper_1_UnityEngine_Timeline_IntervalTree_1_Entry__PickPivotAndPartition, (IntervalTree_1_T_Entry_System_Object___Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Timeline_IntervalTree_1_Entry_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0153DB60, void, ArraySortHelper_1_UnityEngine_Timeline_IntervalTree_1_Entry__Sort, (IntervalTree_1_T_Entry_System_Object___Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_Timeline_IntervalTree_1_Entry_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4C18, ArraySortHelper_1_UnityEngine_Timeline_IntervalTree_1_Entry__Sort__MethodInfo); DO_APP_FUNC(0x0153D770, void, ArraySortHelper_1_UnityEngine_Timeline_IntervalTree_1_Entry__Sort_1, (ArraySortHelper_1_UnityEngine_Timeline_IntervalTree_1_Entry_ * __this, IntervalTree_1_T_Entry_System_Object___Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_Timeline_IntervalTree_1_Entry_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4C28, ArraySortHelper_1_UnityEngine_Timeline_IntervalTree_1_Entry__Sort_1__MethodInfo); DO_APP_FUNC(0x00FB7060, void, ArraySortHelper_1_UnityEngine_Timeline_IntervalTree_1_Entry__Swap, (IntervalTree_1_T_Entry_System_Object___Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FB6E00, void, ArraySortHelper_1_UnityEngine_Timeline_IntervalTree_1_Entry__SwapIfGreater, (IntervalTree_1_T_Entry_System_Object___Array * keys, Comparison_1_UnityEngine_Timeline_IntervalTree_1_Entry_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_Timeline_IntervalTree_1_Entry_ *, ArraySortHelper_1_UnityEngine_Timeline_IntervalTree_1_Entry__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb___ctor, (ArraySortHelper_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0153DF50, int32_t, ArraySortHelper_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__BinarySearch, (ArraySortHelper_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb_ * __this, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object___Array * array, int32_t index, int32_t length, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object_ value, IComparer_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4C08, ArraySortHelper_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FBEF30, void, ArraySortHelper_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__DownHeap, (IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object___Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__Heapsort, (IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object___Array * keys, int32_t lo, int32_t hi, Comparison_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FBF200, void, ArraySortHelper_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__InsertionSort, (IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object___Array * keys, int32_t lo, int32_t hi, Comparison_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb_ * comparer, MethodInfo * method)); @@ -122379,13 +135199,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_Rewired_Utils_Classes_Data_Index DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__IntrospectiveSort, (IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object___Array * keys, int32_t left, int32_t length, Comparison_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5FD0, int32_t, ArraySortHelper_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__PickPivotAndPartition, (IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object___Array * keys, int32_t lo, int32_t hi, Comparison_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0153E0D0, void, ArraySortHelper_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__Sort, (IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object___Array * keys, int32_t index, int32_t length, Comparison_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4C10, ArraySortHelper_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__Sort__MethodInfo); DO_APP_FUNC(0x0153DCE0, void, ArraySortHelper_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__Sort_1, (ArraySortHelper_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb_ * __this, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object___Array * keys, int32_t index, int32_t length, IComparer_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4C20, ArraySortHelper_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__Sort_1__MethodInfo); DO_APP_FUNC(0x00FBEDF0, void, ArraySortHelper_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__Swap, (IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object___Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FBEBD0, void, ArraySortHelper_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__SwapIfGreater, (IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object___Array * keys, Comparison_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb_ *, ArraySortHelper_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1__ctor, (ArraySortHelper_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x0153E4C0, int32_t, ArraySortHelper_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1_BinarySearch, (ArraySortHelper_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1 * __this, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object___Array * array, int32_t index, int32_t length, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object_ value, IComparer_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1 * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4C00, ArraySortHelper_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1_BinarySearch__MethodInfo); DO_APP_FUNC(0x00FC5BC0, void, ArraySortHelper_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1_DownHeap, (IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object___Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1 * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1_Heapsort, (IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object___Array * keys, int32_t lo, int32_t hi, Comparison_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1 * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC5E90, void, ArraySortHelper_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1_InsertionSort, (IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object___Array * keys, int32_t lo, int32_t hi, Comparison_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1 * comparer, MethodInfo * method)); @@ -122394,13 +135217,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_Rewired_Utils_Classes_Data_Index DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1_IntrospectiveSort, (IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object___Array * keys, int32_t left, int32_t length, Comparison_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1 * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5FD0, int32_t, ArraySortHelper_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1_PickPivotAndPartition, (IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object___Array * keys, int32_t lo, int32_t hi, Comparison_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1 * comparer, MethodInfo * method)); DO_APP_FUNC(0x0153E640, void, ArraySortHelper_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1_Sort, (IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object___Array * keys, int32_t index, int32_t length, Comparison_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1 * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4C80, ArraySortHelper_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1_Sort__MethodInfo); DO_APP_FUNC(0x0153E250, void, ArraySortHelper_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1_Sort_1, (ArraySortHelper_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1 * __this, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object___Array * keys, int32_t index, int32_t length, IComparer_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1 * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4BF8, ArraySortHelper_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1_Sort_1__MethodInfo); DO_APP_FUNC(0x00FC5A80, void, ArraySortHelper_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1_Swap, (IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object___Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FC5860, void, ArraySortHelper_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1_SwapIfGreater, (IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object___Array * keys, Comparison_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1 * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1 *, ArraySortHelper_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1_get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2__ctor, (ArraySortHelper_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2 * __this, MethodInfo * method)); DO_APP_FUNC(0x0153EA30, int32_t, ArraySortHelper_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2_BinarySearch, (ArraySortHelper_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2 * __this, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Array * array, int32_t index, int32_t length, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ value, IComparer_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2 * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4C70, ArraySortHelper_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2_BinarySearch__MethodInfo); DO_APP_FUNC(0x010AF5E0, void, ArraySortHelper_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2_DownHeap, (IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2 * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2_Heapsort, (IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Array * keys, int32_t lo, int32_t hi, Comparison_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2 * comparer, MethodInfo * method)); DO_APP_FUNC(0x010AF930, void, ArraySortHelper_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2_InsertionSort, (IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Array * keys, int32_t lo, int32_t hi, Comparison_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2 * comparer, MethodInfo * method)); @@ -122409,13 +135235,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_Rewired_Utils_Classes_Data_Index DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2_IntrospectiveSort, (IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Array * keys, int32_t left, int32_t length, Comparison_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2 * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB9EF0, int32_t, ArraySortHelper_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2_PickPivotAndPartition, (IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Array * keys, int32_t lo, int32_t hi, Comparison_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2 * comparer, MethodInfo * method)); DO_APP_FUNC(0x0153EBB0, void, ArraySortHelper_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2_Sort, (IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Array * keys, int32_t index, int32_t length, Comparison_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2 * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4C78, ArraySortHelper_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2_Sort__MethodInfo); DO_APP_FUNC(0x0153E7C0, void, ArraySortHelper_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2_Sort_1, (ArraySortHelper_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2 * __this, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Array * keys, int32_t index, int32_t length, IComparer_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2 * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4C88, ArraySortHelper_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2_Sort_1__MethodInfo); DO_APP_FUNC(0x010AF480, void, ArraySortHelper_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2_Swap, (IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x010AF200, void, ArraySortHelper_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2_SwapIfGreater, (IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Array * keys, Comparison_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2 * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2 *, ArraySortHelper_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2_get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_KeyValuePair_2_System_Guid_System_Object___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_KeyValuePair_2_System_Guid_System_Object___ctor, (ArraySortHelper_1_KeyValuePair_2_System_Guid_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0153EFA0, int32_t, ArraySortHelper_1_KeyValuePair_2_System_Guid_System_Object__BinarySearch, (ArraySortHelper_1_KeyValuePair_2_System_Guid_System_Object_ * __this, KeyValuePair_2_System_Guid_System_Object___Array * array, int32_t index, int32_t length, KeyValuePair_2_System_Guid_System_Object_ value, IComparer_1_KeyValuePair_2_System_Guid_System_Object_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4C68, ArraySortHelper_1_KeyValuePair_2_System_Guid_System_Object__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FB76D0, void, ArraySortHelper_1_KeyValuePair_2_System_Guid_System_Object__DownHeap, (KeyValuePair_2_System_Guid_System_Object___Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_System_Collections_Generic_KeyValuePair_2_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_KeyValuePair_2_System_Guid_System_Object__Heapsort, (KeyValuePair_2_System_Guid_System_Object___Array * keys, int32_t lo, int32_t hi, Comparison_1_System_Collections_Generic_KeyValuePair_2_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB7A30, void, ArraySortHelper_1_KeyValuePair_2_System_Guid_System_Object__InsertionSort, (KeyValuePair_2_System_Guid_System_Object___Array * keys, int32_t lo, int32_t hi, Comparison_1_System_Collections_Generic_KeyValuePair_2_ * comparer, MethodInfo * method)); @@ -122424,13 +135253,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_KeyValuePair_2_System_Guid_Syste DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_KeyValuePair_2_System_Guid_System_Object__IntrospectiveSort, (KeyValuePair_2_System_Guid_System_Object___Array * keys, int32_t left, int32_t length, Comparison_1_System_Collections_Generic_KeyValuePair_2_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB71C0, int32_t, ArraySortHelper_1_KeyValuePair_2_System_Guid_System_Object__PickPivotAndPartition, (KeyValuePair_2_System_Guid_System_Object___Array * keys, int32_t lo, int32_t hi, Comparison_1_System_Collections_Generic_KeyValuePair_2_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0153F120, void, ArraySortHelper_1_KeyValuePair_2_System_Guid_System_Object__Sort, (KeyValuePair_2_System_Guid_System_Object___Array * keys, int32_t index, int32_t length, Comparison_1_System_Collections_Generic_KeyValuePair_2_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4C40, ArraySortHelper_1_KeyValuePair_2_System_Guid_System_Object__Sort__MethodInfo); DO_APP_FUNC(0x0153ED30, void, ArraySortHelper_1_KeyValuePair_2_System_Guid_System_Object__Sort_1, (ArraySortHelper_1_KeyValuePair_2_System_Guid_System_Object_ * __this, KeyValuePair_2_System_Guid_System_Object___Array * keys, int32_t index, int32_t length, IComparer_1_KeyValuePair_2_System_Guid_System_Object_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4C58, ArraySortHelper_1_KeyValuePair_2_System_Guid_System_Object__Sort_1__MethodInfo); DO_APP_FUNC(0x00FB7060, void, ArraySortHelper_1_KeyValuePair_2_System_Guid_System_Object__Swap, (KeyValuePair_2_System_Guid_System_Object___Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FB6E00, void, ArraySortHelper_1_KeyValuePair_2_System_Guid_System_Object__SwapIfGreater, (KeyValuePair_2_System_Guid_System_Object___Array * keys, Comparison_1_System_Collections_Generic_KeyValuePair_2_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_KeyValuePair_2_System_Guid_System_Object_ *, ArraySortHelper_1_KeyValuePair_2_System_Guid_System_Object__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_KeyValuePair_2_System_Int32_System_Int32___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_KeyValuePair_2_System_Int32_System_Int32___ctor, (ArraySortHelper_1_KeyValuePair_2_System_Int32_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0153F510, int32_t, ArraySortHelper_1_KeyValuePair_2_System_Int32_System_Int32__BinarySearch, (ArraySortHelper_1_KeyValuePair_2_System_Int32_System_Int32_ * __this, KeyValuePair_2_System_Int32_System_Int32___Array * array, int32_t index, int32_t length, KeyValuePair_2_System_Int32_System_Int32_ value, IComparer_1_KeyValuePair_2_System_Int32_System_Int32_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4BA0, ArraySortHelper_1_KeyValuePair_2_System_Int32_System_Int32__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FC40D0, void, ArraySortHelper_1_KeyValuePair_2_System_Int32_System_Int32__DownHeap, (KeyValuePair_2_System_Int32_System_Int32___Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_System_Collections_Generic_KeyValuePair_2__1 * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_KeyValuePair_2_System_Int32_System_Int32__Heapsort, (KeyValuePair_2_System_Int32_System_Int32___Array * keys, int32_t lo, int32_t hi, Comparison_1_System_Collections_Generic_KeyValuePair_2__1 * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC42E0, void, ArraySortHelper_1_KeyValuePair_2_System_Int32_System_Int32__InsertionSort, (KeyValuePair_2_System_Int32_System_Int32___Array * keys, int32_t lo, int32_t hi, Comparison_1_System_Collections_Generic_KeyValuePair_2__1 * comparer, MethodInfo * method)); @@ -122439,13 +135271,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_KeyValuePair_2_System_Int32_Syst DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_KeyValuePair_2_System_Int32_System_Int32__IntrospectiveSort, (KeyValuePair_2_System_Int32_System_Int32___Array * keys, int32_t left, int32_t length, Comparison_1_System_Collections_Generic_KeyValuePair_2__1 * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC3C80, int32_t, ArraySortHelper_1_KeyValuePair_2_System_Int32_System_Int32__PickPivotAndPartition, (KeyValuePair_2_System_Int32_System_Int32___Array * keys, int32_t lo, int32_t hi, Comparison_1_System_Collections_Generic_KeyValuePair_2__1 * comparer, MethodInfo * method)); DO_APP_FUNC(0x0153F680, void, ArraySortHelper_1_KeyValuePair_2_System_Int32_System_Int32__Sort, (KeyValuePair_2_System_Int32_System_Int32___Array * keys, int32_t index, int32_t length, Comparison_1_System_Collections_Generic_KeyValuePair_2__1 * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4BA8, ArraySortHelper_1_KeyValuePair_2_System_Int32_System_Int32__Sort__MethodInfo); DO_APP_FUNC(0x0153F2A0, void, ArraySortHelper_1_KeyValuePair_2_System_Int32_System_Int32__Sort_1, (ArraySortHelper_1_KeyValuePair_2_System_Int32_System_Int32_ * __this, KeyValuePair_2_System_Int32_System_Int32___Array * keys, int32_t index, int32_t length, IComparer_1_KeyValuePair_2_System_Int32_System_Int32_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4C48, ArraySortHelper_1_KeyValuePair_2_System_Int32_System_Int32__Sort_1__MethodInfo); DO_APP_FUNC(0x00FC3C30, void, ArraySortHelper_1_KeyValuePair_2_System_Int32_System_Int32__Swap, (KeyValuePair_2_System_Int32_System_Int32___Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FC3B20, void, ArraySortHelper_1_KeyValuePair_2_System_Int32_System_Int32__SwapIfGreater, (KeyValuePair_2_System_Int32_System_Int32___Array * keys, Comparison_1_System_Collections_Generic_KeyValuePair_2__1 * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_KeyValuePair_2_System_Int32_System_Int32_ *, ArraySortHelper_1_KeyValuePair_2_System_Int32_System_Int32__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_KeyValuePair_2_System_Int32_System_Object___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_KeyValuePair_2_System_Int32_System_Object___ctor, (ArraySortHelper_1_KeyValuePair_2_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0153FA70, int32_t, ArraySortHelper_1_KeyValuePair_2_System_Int32_System_Object__BinarySearch, (ArraySortHelper_1_KeyValuePair_2_System_Int32_System_Object_ * __this, KeyValuePair_2_System_Int32_System_Object___Array * array, int32_t index, int32_t length, KeyValuePair_2_System_Int32_System_Object_ value, IComparer_1_KeyValuePair_2_System_Int32_System_Object_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4B98, ArraySortHelper_1_KeyValuePair_2_System_Int32_System_Object__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FBEF30, void, ArraySortHelper_1_KeyValuePair_2_System_Int32_System_Object__DownHeap, (KeyValuePair_2_System_Int32_System_Object___Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_System_Collections_Generic_KeyValuePair_2__2 * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_KeyValuePair_2_System_Int32_System_Object__Heapsort, (KeyValuePair_2_System_Int32_System_Object___Array * keys, int32_t lo, int32_t hi, Comparison_1_System_Collections_Generic_KeyValuePair_2__2 * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FBF200, void, ArraySortHelper_1_KeyValuePair_2_System_Int32_System_Object__InsertionSort, (KeyValuePair_2_System_Int32_System_Object___Array * keys, int32_t lo, int32_t hi, Comparison_1_System_Collections_Generic_KeyValuePair_2__2 * comparer, MethodInfo * method)); @@ -122454,13 +135289,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_KeyValuePair_2_System_Int32_Syst DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_KeyValuePair_2_System_Int32_System_Object__IntrospectiveSort, (KeyValuePair_2_System_Int32_System_Object___Array * keys, int32_t left, int32_t length, Comparison_1_System_Collections_Generic_KeyValuePair_2__2 * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5FD0, int32_t, ArraySortHelper_1_KeyValuePair_2_System_Int32_System_Object__PickPivotAndPartition, (KeyValuePair_2_System_Int32_System_Object___Array * keys, int32_t lo, int32_t hi, Comparison_1_System_Collections_Generic_KeyValuePair_2__2 * comparer, MethodInfo * method)); DO_APP_FUNC(0x0153FBF0, void, ArraySortHelper_1_KeyValuePair_2_System_Int32_System_Object__Sort, (KeyValuePair_2_System_Int32_System_Object___Array * keys, int32_t index, int32_t length, Comparison_1_System_Collections_Generic_KeyValuePair_2__2 * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4B80, ArraySortHelper_1_KeyValuePair_2_System_Int32_System_Object__Sort__MethodInfo); DO_APP_FUNC(0x0153F800, void, ArraySortHelper_1_KeyValuePair_2_System_Int32_System_Object__Sort_1, (ArraySortHelper_1_KeyValuePair_2_System_Int32_System_Object_ * __this, KeyValuePair_2_System_Int32_System_Object___Array * keys, int32_t index, int32_t length, IComparer_1_KeyValuePair_2_System_Int32_System_Object_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4B90, ArraySortHelper_1_KeyValuePair_2_System_Int32_System_Object__Sort_1__MethodInfo); DO_APP_FUNC(0x00FBEDF0, void, ArraySortHelper_1_KeyValuePair_2_System_Int32_System_Object__Swap, (KeyValuePair_2_System_Int32_System_Object___Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FBEBD0, void, ArraySortHelper_1_KeyValuePair_2_System_Int32_System_Object__SwapIfGreater, (KeyValuePair_2_System_Int32_System_Object___Array * keys, Comparison_1_System_Collections_Generic_KeyValuePair_2__2 * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_KeyValuePair_2_System_Int32_System_Object_ *, ArraySortHelper_1_KeyValuePair_2_System_Int32_System_Object__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_KeyValuePair_2_System_Int32Enum_System_Object___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_KeyValuePair_2_System_Int32Enum_System_Object___ctor, (ArraySortHelper_1_KeyValuePair_2_System_Int32Enum_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0153FFE0, int32_t, ArraySortHelper_1_KeyValuePair_2_System_Int32Enum_System_Object__BinarySearch, (ArraySortHelper_1_KeyValuePair_2_System_Int32Enum_System_Object_ * __this, KeyValuePair_2_System_Int32Enum_System_Object___Array * array, int32_t index, int32_t length, KeyValuePair_2_System_Int32Enum_System_Object_ value, IComparer_1_KeyValuePair_2_System_Int32Enum_System_Object_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4B70, ArraySortHelper_1_KeyValuePair_2_System_Int32Enum_System_Object__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FBEF30, void, ArraySortHelper_1_KeyValuePair_2_System_Int32Enum_System_Object__DownHeap, (KeyValuePair_2_System_Int32Enum_System_Object___Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_System_Collections_Generic_KeyValuePair_2__3 * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_KeyValuePair_2_System_Int32Enum_System_Object__Heapsort, (KeyValuePair_2_System_Int32Enum_System_Object___Array * keys, int32_t lo, int32_t hi, Comparison_1_System_Collections_Generic_KeyValuePair_2__3 * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FBF200, void, ArraySortHelper_1_KeyValuePair_2_System_Int32Enum_System_Object__InsertionSort, (KeyValuePair_2_System_Int32Enum_System_Object___Array * keys, int32_t lo, int32_t hi, Comparison_1_System_Collections_Generic_KeyValuePair_2__3 * comparer, MethodInfo * method)); @@ -122469,13 +135307,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_KeyValuePair_2_System_Int32Enum_ DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_KeyValuePair_2_System_Int32Enum_System_Object__IntrospectiveSort, (KeyValuePair_2_System_Int32Enum_System_Object___Array * keys, int32_t left, int32_t length, Comparison_1_System_Collections_Generic_KeyValuePair_2__3 * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5FD0, int32_t, ArraySortHelper_1_KeyValuePair_2_System_Int32Enum_System_Object__PickPivotAndPartition, (KeyValuePair_2_System_Int32Enum_System_Object___Array * keys, int32_t lo, int32_t hi, Comparison_1_System_Collections_Generic_KeyValuePair_2__3 * comparer, MethodInfo * method)); DO_APP_FUNC(0x01540160, void, ArraySortHelper_1_KeyValuePair_2_System_Int32Enum_System_Object__Sort, (KeyValuePair_2_System_Int32Enum_System_Object___Array * keys, int32_t index, int32_t length, Comparison_1_System_Collections_Generic_KeyValuePair_2__3 * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4B78, ArraySortHelper_1_KeyValuePair_2_System_Int32Enum_System_Object__Sort__MethodInfo); DO_APP_FUNC(0x0153FD70, void, ArraySortHelper_1_KeyValuePair_2_System_Int32Enum_System_Object__Sort_1, (ArraySortHelper_1_KeyValuePair_2_System_Int32Enum_System_Object_ * __this, KeyValuePair_2_System_Int32Enum_System_Object___Array * keys, int32_t index, int32_t length, IComparer_1_KeyValuePair_2_System_Int32Enum_System_Object_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4B88, ArraySortHelper_1_KeyValuePair_2_System_Int32Enum_System_Object__Sort_1__MethodInfo); DO_APP_FUNC(0x00FBEDF0, void, ArraySortHelper_1_KeyValuePair_2_System_Int32Enum_System_Object__Swap, (KeyValuePair_2_System_Int32Enum_System_Object___Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FBEBD0, void, ArraySortHelper_1_KeyValuePair_2_System_Int32Enum_System_Object__SwapIfGreater, (KeyValuePair_2_System_Int32Enum_System_Object___Array * keys, Comparison_1_System_Collections_Generic_KeyValuePair_2__3 * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_KeyValuePair_2_System_Int32Enum_System_Object_ *, ArraySortHelper_1_KeyValuePair_2_System_Int32Enum_System_Object__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_KeyValuePair_2_System_Object_System_ArraySegment_1___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_KeyValuePair_2_System_Object_System_ArraySegment_1___ctor, (ArraySortHelper_1_KeyValuePair_2_System_Object_System_ArraySegment_1_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01540550, int32_t, ArraySortHelper_1_KeyValuePair_2_System_Object_System_ArraySegment_1__BinarySearch, (ArraySortHelper_1_KeyValuePair_2_System_Object_System_ArraySegment_1_ * __this, KeyValuePair_2_System_Object_System_ArraySegment_1___Array * array, int32_t index, int32_t length, KeyValuePair_2_System_Object_System_ArraySegment_1_ value, IComparer_1_KeyValuePair_2_System_Object_System_ArraySegment_1_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4BF0, ArraySortHelper_1_KeyValuePair_2_System_Object_System_ArraySegment_1__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FBFCE0, void, ArraySortHelper_1_KeyValuePair_2_System_Object_System_ArraySegment_1__DownHeap, (KeyValuePair_2_System_Object_System_ArraySegment_1___Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_System_Collections_Generic_KeyValuePair_2__4 * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_KeyValuePair_2_System_Object_System_ArraySegment_1__Heapsort, (KeyValuePair_2_System_Object_System_ArraySegment_1___Array * keys, int32_t lo, int32_t hi, Comparison_1_System_Collections_Generic_KeyValuePair_2__4 * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC0040, void, ArraySortHelper_1_KeyValuePair_2_System_Object_System_ArraySegment_1__InsertionSort, (KeyValuePair_2_System_Object_System_ArraySegment_1___Array * keys, int32_t lo, int32_t hi, Comparison_1_System_Collections_Generic_KeyValuePair_2__4 * comparer, MethodInfo * method)); @@ -122484,13 +135325,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_KeyValuePair_2_System_Object_Sys DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_KeyValuePair_2_System_Object_System_ArraySegment_1__IntrospectiveSort, (KeyValuePair_2_System_Object_System_ArraySegment_1___Array * keys, int32_t left, int32_t length, Comparison_1_System_Collections_Generic_KeyValuePair_2__4 * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB71C0, int32_t, ArraySortHelper_1_KeyValuePair_2_System_Object_System_ArraySegment_1__PickPivotAndPartition, (KeyValuePair_2_System_Object_System_ArraySegment_1___Array * keys, int32_t lo, int32_t hi, Comparison_1_System_Collections_Generic_KeyValuePair_2__4 * comparer, MethodInfo * method)); DO_APP_FUNC(0x015406D0, void, ArraySortHelper_1_KeyValuePair_2_System_Object_System_ArraySegment_1__Sort, (KeyValuePair_2_System_Object_System_ArraySegment_1___Array * keys, int32_t index, int32_t length, Comparison_1_System_Collections_Generic_KeyValuePair_2__4 * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4BD8, ArraySortHelper_1_KeyValuePair_2_System_Object_System_ArraySegment_1__Sort__MethodInfo); DO_APP_FUNC(0x015402E0, void, ArraySortHelper_1_KeyValuePair_2_System_Object_System_ArraySegment_1__Sort_1, (ArraySortHelper_1_KeyValuePair_2_System_Object_System_ArraySegment_1_ * __this, KeyValuePair_2_System_Object_System_ArraySegment_1___Array * keys, int32_t index, int32_t length, IComparer_1_KeyValuePair_2_System_Object_System_ArraySegment_1_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4BE8, ArraySortHelper_1_KeyValuePair_2_System_Object_System_ArraySegment_1__Sort_1__MethodInfo); DO_APP_FUNC(0x00FBFB80, void, ArraySortHelper_1_KeyValuePair_2_System_Object_System_ArraySegment_1__Swap, (KeyValuePair_2_System_Object_System_ArraySegment_1___Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FBF920, void, ArraySortHelper_1_KeyValuePair_2_System_Object_System_ArraySegment_1__SwapIfGreater, (KeyValuePair_2_System_Object_System_ArraySegment_1___Array * keys, Comparison_1_System_Collections_Generic_KeyValuePair_2__4 * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_KeyValuePair_2_System_Object_System_ArraySegment_1_ *, ArraySortHelper_1_KeyValuePair_2_System_Object_System_ArraySegment_1__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_KeyValuePair_2_System_Object_System_Char___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_KeyValuePair_2_System_Object_System_Char___ctor, (ArraySortHelper_1_KeyValuePair_2_System_Object_System_Char_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01540AC0, int32_t, ArraySortHelper_1_KeyValuePair_2_System_Object_System_Char__BinarySearch, (ArraySortHelper_1_KeyValuePair_2_System_Object_System_Char_ * __this, KeyValuePair_2_System_Object_System_Char___Array * array, int32_t index, int32_t length, KeyValuePair_2_System_Object_System_Char_ value, IComparer_1_KeyValuePair_2_System_Object_System_Char_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4BC8, ArraySortHelper_1_KeyValuePair_2_System_Object_System_Char__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FC5BC0, void, ArraySortHelper_1_KeyValuePair_2_System_Object_System_Char__DownHeap, (KeyValuePair_2_System_Object_System_Char___Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_System_Collections_Generic_KeyValuePair_2__5 * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_KeyValuePair_2_System_Object_System_Char__Heapsort, (KeyValuePair_2_System_Object_System_Char___Array * keys, int32_t lo, int32_t hi, Comparison_1_System_Collections_Generic_KeyValuePair_2__5 * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC5E90, void, ArraySortHelper_1_KeyValuePair_2_System_Object_System_Char__InsertionSort, (KeyValuePair_2_System_Object_System_Char___Array * keys, int32_t lo, int32_t hi, Comparison_1_System_Collections_Generic_KeyValuePair_2__5 * comparer, MethodInfo * method)); @@ -122499,13 +135343,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_KeyValuePair_2_System_Object_Sys DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_KeyValuePair_2_System_Object_System_Char__IntrospectiveSort, (KeyValuePair_2_System_Object_System_Char___Array * keys, int32_t left, int32_t length, Comparison_1_System_Collections_Generic_KeyValuePair_2__5 * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5FD0, int32_t, ArraySortHelper_1_KeyValuePair_2_System_Object_System_Char__PickPivotAndPartition, (KeyValuePair_2_System_Object_System_Char___Array * keys, int32_t lo, int32_t hi, Comparison_1_System_Collections_Generic_KeyValuePair_2__5 * comparer, MethodInfo * method)); DO_APP_FUNC(0x01540C40, void, ArraySortHelper_1_KeyValuePair_2_System_Object_System_Char__Sort, (KeyValuePair_2_System_Object_System_Char___Array * keys, int32_t index, int32_t length, Comparison_1_System_Collections_Generic_KeyValuePair_2__5 * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4BD0, ArraySortHelper_1_KeyValuePair_2_System_Object_System_Char__Sort__MethodInfo); DO_APP_FUNC(0x01540850, void, ArraySortHelper_1_KeyValuePair_2_System_Object_System_Char__Sort_1, (ArraySortHelper_1_KeyValuePair_2_System_Object_System_Char_ * __this, KeyValuePair_2_System_Object_System_Char___Array * keys, int32_t index, int32_t length, IComparer_1_KeyValuePair_2_System_Object_System_Char_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4BE0, ArraySortHelper_1_KeyValuePair_2_System_Object_System_Char__Sort_1__MethodInfo); DO_APP_FUNC(0x00FC5A80, void, ArraySortHelper_1_KeyValuePair_2_System_Object_System_Char__Swap, (KeyValuePair_2_System_Object_System_Char___Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FC5860, void, ArraySortHelper_1_KeyValuePair_2_System_Object_System_Char__SwapIfGreater, (KeyValuePair_2_System_Object_System_Char___Array * keys, Comparison_1_System_Collections_Generic_KeyValuePair_2__5 * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_KeyValuePair_2_System_Object_System_Char_ *, ArraySortHelper_1_KeyValuePair_2_System_Object_System_Char__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_KeyValuePair_2_System_Object_System_Object___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_KeyValuePair_2_System_Object_System_Object___ctor, (ArraySortHelper_1_KeyValuePair_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01541030, int32_t, ArraySortHelper_1_KeyValuePair_2_System_Object_System_Object__BinarySearch, (ArraySortHelper_1_KeyValuePair_2_System_Object_System_Object_ * __this, KeyValuePair_2_System_Object_System_Object___Array * array, int32_t index, int32_t length, KeyValuePair_2_System_Object_System_Object_ value, IComparer_1_KeyValuePair_2_System_Object_System_Object_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4BC0, ArraySortHelper_1_KeyValuePair_2_System_Object_System_Object__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FC5BC0, void, ArraySortHelper_1_KeyValuePair_2_System_Object_System_Object__DownHeap, (KeyValuePair_2_System_Object_System_Object___Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_System_Collections_Generic_KeyValuePair_2__6 * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_KeyValuePair_2_System_Object_System_Object__Heapsort, (KeyValuePair_2_System_Object_System_Object___Array * keys, int32_t lo, int32_t hi, Comparison_1_System_Collections_Generic_KeyValuePair_2__6 * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC5E90, void, ArraySortHelper_1_KeyValuePair_2_System_Object_System_Object__InsertionSort, (KeyValuePair_2_System_Object_System_Object___Array * keys, int32_t lo, int32_t hi, Comparison_1_System_Collections_Generic_KeyValuePair_2__6 * comparer, MethodInfo * method)); @@ -122514,13 +135361,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_KeyValuePair_2_System_Object_Sys DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_KeyValuePair_2_System_Object_System_Object__IntrospectiveSort, (KeyValuePair_2_System_Object_System_Object___Array * keys, int32_t left, int32_t length, Comparison_1_System_Collections_Generic_KeyValuePair_2__6 * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5FD0, int32_t, ArraySortHelper_1_KeyValuePair_2_System_Object_System_Object__PickPivotAndPartition, (KeyValuePair_2_System_Object_System_Object___Array * keys, int32_t lo, int32_t hi, Comparison_1_System_Collections_Generic_KeyValuePair_2__6 * comparer, MethodInfo * method)); DO_APP_FUNC(0x015411B0, void, ArraySortHelper_1_KeyValuePair_2_System_Object_System_Object__Sort, (KeyValuePair_2_System_Object_System_Object___Array * keys, int32_t index, int32_t length, Comparison_1_System_Collections_Generic_KeyValuePair_2__6 * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4B08, ArraySortHelper_1_KeyValuePair_2_System_Object_System_Object__Sort__MethodInfo); DO_APP_FUNC(0x01540DC0, void, ArraySortHelper_1_KeyValuePair_2_System_Object_System_Object__Sort_1, (ArraySortHelper_1_KeyValuePair_2_System_Object_System_Object_ * __this, KeyValuePair_2_System_Object_System_Object___Array * keys, int32_t index, int32_t length, IComparer_1_KeyValuePair_2_System_Object_System_Object_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4BB0, ArraySortHelper_1_KeyValuePair_2_System_Object_System_Object__Sort_1__MethodInfo); DO_APP_FUNC(0x00FC5A80, void, ArraySortHelper_1_KeyValuePair_2_System_Object_System_Object__Swap, (KeyValuePair_2_System_Object_System_Object___Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FC5860, void, ArraySortHelper_1_KeyValuePair_2_System_Object_System_Object__SwapIfGreater, (KeyValuePair_2_System_Object_System_Object___Array * keys, Comparison_1_System_Collections_Generic_KeyValuePair_2__6 * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_KeyValuePair_2_System_Object_System_Object_ *, ArraySortHelper_1_KeyValuePair_2_System_Object_System_Object__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___ctor, (ArraySortHelper_1_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015415A0, int32_t, ArraySortHelper_1_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__BinarySearch, (ArraySortHelper_1_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Array * array, int32_t index, int32_t length, KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ value, IComparer_1_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4AF0, ArraySortHelper_1_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__BinarySearch__MethodInfo); DO_APP_FUNC(0x01541C90, void, ArraySortHelper_1_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__DownHeap, (KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_System_Collections_Generic_KeyValuePair_2__7 * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__Heapsort, (KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Array * keys, int32_t lo, int32_t hi, Comparison_1_System_Collections_Generic_KeyValuePair_2__7 * comparer, MethodInfo * method)); DO_APP_FUNC(0x01542080, void, ArraySortHelper_1_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__InsertionSort, (KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Array * keys, int32_t lo, int32_t hi, Comparison_1_System_Collections_Generic_KeyValuePair_2__7 * comparer, MethodInfo * method)); @@ -122529,13 +135379,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_KeyValuePair_2_System_Object_Uni DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__IntrospectiveSort, (KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Array * keys, int32_t left, int32_t length, Comparison_1_System_Collections_Generic_KeyValuePair_2__7 * comparer, MethodInfo * method)); DO_APP_FUNC(0x011A89E0, int32_t, ArraySortHelper_1_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__PickPivotAndPartition, (KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Array * keys, int32_t lo, int32_t hi, Comparison_1_System_Collections_Generic_KeyValuePair_2__7 * comparer, MethodInfo * method)); DO_APP_FUNC(0x01541750, void, ArraySortHelper_1_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__Sort, (KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Array * keys, int32_t index, int32_t length, Comparison_1_System_Collections_Generic_KeyValuePair_2__7 * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4B00, ArraySortHelper_1_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__Sort__MethodInfo); DO_APP_FUNC(0x01541330, void, ArraySortHelper_1_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__Sort_1, (ArraySortHelper_1_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Array * keys, int32_t index, int32_t length, IComparer_1_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4B10, ArraySortHelper_1_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__Sort_1__MethodInfo); DO_APP_FUNC(0x01541B60, void, ArraySortHelper_1_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__Swap, (KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x015418D0, void, ArraySortHelper_1_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__SwapIfGreater, (KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Array * keys, Comparison_1_System_Collections_Generic_KeyValuePair_2__7 * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ *, ArraySortHelper_1_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object___ctor, (ArraySortHelper_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01542570, int32_t, ArraySortHelper_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object__BinarySearch, (ArraySortHelper_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object_ * __this, KeyValuePair_2_UnityEngine_PropertyName_System_Object___Array * array, int32_t index, int32_t length, KeyValuePair_2_UnityEngine_PropertyName_System_Object_ value, IComparer_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4AE8, ArraySortHelper_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FBEF30, void, ArraySortHelper_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object__DownHeap, (KeyValuePair_2_UnityEngine_PropertyName_System_Object___Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_System_Collections_Generic_KeyValuePair_2__8 * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object__Heapsort, (KeyValuePair_2_UnityEngine_PropertyName_System_Object___Array * keys, int32_t lo, int32_t hi, Comparison_1_System_Collections_Generic_KeyValuePair_2__8 * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FBF200, void, ArraySortHelper_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object__InsertionSort, (KeyValuePair_2_UnityEngine_PropertyName_System_Object___Array * keys, int32_t lo, int32_t hi, Comparison_1_System_Collections_Generic_KeyValuePair_2__8 * comparer, MethodInfo * method)); @@ -122544,13 +135397,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_KeyValuePair_2_UnityEngine_Prope DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object__IntrospectiveSort, (KeyValuePair_2_UnityEngine_PropertyName_System_Object___Array * keys, int32_t left, int32_t length, Comparison_1_System_Collections_Generic_KeyValuePair_2__8 * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5FD0, int32_t, ArraySortHelper_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object__PickPivotAndPartition, (KeyValuePair_2_UnityEngine_PropertyName_System_Object___Array * keys, int32_t lo, int32_t hi, Comparison_1_System_Collections_Generic_KeyValuePair_2__8 * comparer, MethodInfo * method)); DO_APP_FUNC(0x015426F0, void, ArraySortHelper_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object__Sort, (KeyValuePair_2_UnityEngine_PropertyName_System_Object___Array * keys, int32_t index, int32_t length, Comparison_1_System_Collections_Generic_KeyValuePair_2__8 * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4AC8, ArraySortHelper_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object__Sort__MethodInfo); DO_APP_FUNC(0x01542300, void, ArraySortHelper_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object__Sort_1, (ArraySortHelper_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object_ * __this, KeyValuePair_2_UnityEngine_PropertyName_System_Object___Array * keys, int32_t index, int32_t length, IComparer_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4AE0, ArraySortHelper_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object__Sort_1__MethodInfo); DO_APP_FUNC(0x00FBEDF0, void, ArraySortHelper_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object__Swap, (KeyValuePair_2_UnityEngine_PropertyName_System_Object___Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FBEBD0, void, ArraySortHelper_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object__SwapIfGreater, (KeyValuePair_2_UnityEngine_PropertyName_System_Object___Array * keys, Comparison_1_System_Collections_Generic_KeyValuePair_2__8 * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object_ *, ArraySortHelper_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer___ctor, (ArraySortHelper_1_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01542AE0, int32_t, ArraySortHelper_1_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer__BinarySearch, (ArraySortHelper_1_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer___Array * array, int32_t index, int32_t length, KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer_ value, IComparer_1_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4B58, ArraySortHelper_1_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FBEF30, void, ArraySortHelper_1_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer__DownHeap, (KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer___Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_System_Collections_Generic_KeyValuePair_2__9 * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer__Heapsort, (KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer___Array * keys, int32_t lo, int32_t hi, Comparison_1_System_Collections_Generic_KeyValuePair_2__9 * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FBF200, void, ArraySortHelper_1_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer__InsertionSort, (KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer___Array * keys, int32_t lo, int32_t hi, Comparison_1_System_Collections_Generic_KeyValuePair_2__9 * comparer, MethodInfo * method)); @@ -122559,13 +135415,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_KeyValuePair_2_System_UInt16_Dis DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer__IntrospectiveSort, (KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer___Array * keys, int32_t left, int32_t length, Comparison_1_System_Collections_Generic_KeyValuePair_2__9 * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5FD0, int32_t, ArraySortHelper_1_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer__PickPivotAndPartition, (KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer___Array * keys, int32_t lo, int32_t hi, Comparison_1_System_Collections_Generic_KeyValuePair_2__9 * comparer, MethodInfo * method)); DO_APP_FUNC(0x01542C60, void, ArraySortHelper_1_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer__Sort, (KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer___Array * keys, int32_t index, int32_t length, Comparison_1_System_Collections_Generic_KeyValuePair_2__9 * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4B60, ArraySortHelper_1_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer__Sort__MethodInfo); DO_APP_FUNC(0x01542870, void, ArraySortHelper_1_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer__Sort_1, (ArraySortHelper_1_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer___Array * keys, int32_t index, int32_t length, IComparer_1_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4AD0, ArraySortHelper_1_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer__Sort_1__MethodInfo); DO_APP_FUNC(0x00FBEDF0, void, ArraySortHelper_1_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer__Swap, (KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer___Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FBEBD0, void, ArraySortHelper_1_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer__SwapIfGreater, (KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer___Array * keys, Comparison_1_System_Collections_Generic_KeyValuePair_2__9 * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer_ *, ArraySortHelper_1_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_KeyValuePair_2_System_UInt16_System_Object___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_KeyValuePair_2_System_UInt16_System_Object___ctor, (ArraySortHelper_1_KeyValuePair_2_System_UInt16_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01543050, int32_t, ArraySortHelper_1_KeyValuePair_2_System_UInt16_System_Object__BinarySearch, (ArraySortHelper_1_KeyValuePair_2_System_UInt16_System_Object_ * __this, KeyValuePair_2_System_UInt16_System_Object___Array * array, int32_t index, int32_t length, KeyValuePair_2_System_UInt16_System_Object_ value, IComparer_1_KeyValuePair_2_System_UInt16_System_Object_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4B50, ArraySortHelper_1_KeyValuePair_2_System_UInt16_System_Object__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FBEF30, void, ArraySortHelper_1_KeyValuePair_2_System_UInt16_System_Object__DownHeap, (KeyValuePair_2_System_UInt16_System_Object___Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_System_Collections_Generic_KeyValuePair_2__10 * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_KeyValuePair_2_System_UInt16_System_Object__Heapsort, (KeyValuePair_2_System_UInt16_System_Object___Array * keys, int32_t lo, int32_t hi, Comparison_1_System_Collections_Generic_KeyValuePair_2__10 * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FBF200, void, ArraySortHelper_1_KeyValuePair_2_System_UInt16_System_Object__InsertionSort, (KeyValuePair_2_System_UInt16_System_Object___Array * keys, int32_t lo, int32_t hi, Comparison_1_System_Collections_Generic_KeyValuePair_2__10 * comparer, MethodInfo * method)); @@ -122574,13 +135433,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_KeyValuePair_2_System_UInt16_Sys DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_KeyValuePair_2_System_UInt16_System_Object__IntrospectiveSort, (KeyValuePair_2_System_UInt16_System_Object___Array * keys, int32_t left, int32_t length, Comparison_1_System_Collections_Generic_KeyValuePair_2__10 * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5FD0, int32_t, ArraySortHelper_1_KeyValuePair_2_System_UInt16_System_Object__PickPivotAndPartition, (KeyValuePair_2_System_UInt16_System_Object___Array * keys, int32_t lo, int32_t hi, Comparison_1_System_Collections_Generic_KeyValuePair_2__10 * comparer, MethodInfo * method)); DO_APP_FUNC(0x015431D0, void, ArraySortHelper_1_KeyValuePair_2_System_UInt16_System_Object__Sort, (KeyValuePair_2_System_UInt16_System_Object___Array * keys, int32_t index, int32_t length, Comparison_1_System_Collections_Generic_KeyValuePair_2__10 * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4B30, ArraySortHelper_1_KeyValuePair_2_System_UInt16_System_Object__Sort__MethodInfo); DO_APP_FUNC(0x01542DE0, void, ArraySortHelper_1_KeyValuePair_2_System_UInt16_System_Object__Sort_1, (ArraySortHelper_1_KeyValuePair_2_System_UInt16_System_Object_ * __this, KeyValuePair_2_System_UInt16_System_Object___Array * keys, int32_t index, int32_t length, IComparer_1_KeyValuePair_2_System_UInt16_System_Object_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4B48, ArraySortHelper_1_KeyValuePair_2_System_UInt16_System_Object__Sort_1__MethodInfo); DO_APP_FUNC(0x00FBEDF0, void, ArraySortHelper_1_KeyValuePair_2_System_UInt16_System_Object__Swap, (KeyValuePair_2_System_UInt16_System_Object___Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FBEBD0, void, ArraySortHelper_1_KeyValuePair_2_System_UInt16_System_Object__SwapIfGreater, (KeyValuePair_2_System_UInt16_System_Object___Array * keys, Comparison_1_System_Collections_Generic_KeyValuePair_2__10 * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_KeyValuePair_2_System_UInt16_System_Object_ *, ArraySortHelper_1_KeyValuePair_2_System_UInt16_System_Object__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_KeyValuePair_2_System_UInt64_System_Object___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_KeyValuePair_2_System_UInt64_System_Object___ctor, (ArraySortHelper_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015435C0, int32_t, ArraySortHelper_1_KeyValuePair_2_System_UInt64_System_Object__BinarySearch, (ArraySortHelper_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, KeyValuePair_2_System_UInt64_System_Object___Array * array, int32_t index, int32_t length, KeyValuePair_2_System_UInt64_System_Object_ value, IComparer_1_KeyValuePair_2_System_UInt64_System_Object_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4B18, ArraySortHelper_1_KeyValuePair_2_System_UInt64_System_Object__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FBEF30, void, ArraySortHelper_1_KeyValuePair_2_System_UInt64_System_Object__DownHeap, (KeyValuePair_2_System_UInt64_System_Object___Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_System_Collections_Generic_KeyValuePair_2__11 * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_KeyValuePair_2_System_UInt64_System_Object__Heapsort, (KeyValuePair_2_System_UInt64_System_Object___Array * keys, int32_t lo, int32_t hi, Comparison_1_System_Collections_Generic_KeyValuePair_2__11 * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FBF200, void, ArraySortHelper_1_KeyValuePair_2_System_UInt64_System_Object__InsertionSort, (KeyValuePair_2_System_UInt64_System_Object___Array * keys, int32_t lo, int32_t hi, Comparison_1_System_Collections_Generic_KeyValuePair_2__11 * comparer, MethodInfo * method)); @@ -122589,13 +135451,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_KeyValuePair_2_System_UInt64_Sys DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_KeyValuePair_2_System_UInt64_System_Object__IntrospectiveSort, (KeyValuePair_2_System_UInt64_System_Object___Array * keys, int32_t left, int32_t length, Comparison_1_System_Collections_Generic_KeyValuePair_2__11 * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5FD0, int32_t, ArraySortHelper_1_KeyValuePair_2_System_UInt64_System_Object__PickPivotAndPartition, (KeyValuePair_2_System_UInt64_System_Object___Array * keys, int32_t lo, int32_t hi, Comparison_1_System_Collections_Generic_KeyValuePair_2__11 * comparer, MethodInfo * method)); DO_APP_FUNC(0x01543740, void, ArraySortHelper_1_KeyValuePair_2_System_UInt64_System_Object__Sort, (KeyValuePair_2_System_UInt64_System_Object___Array * keys, int32_t index, int32_t length, Comparison_1_System_Collections_Generic_KeyValuePair_2__11 * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4B20, ArraySortHelper_1_KeyValuePair_2_System_UInt64_System_Object__Sort__MethodInfo); DO_APP_FUNC(0x01543350, void, ArraySortHelper_1_KeyValuePair_2_System_UInt64_System_Object__Sort_1, (ArraySortHelper_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, KeyValuePair_2_System_UInt64_System_Object___Array * keys, int32_t index, int32_t length, IComparer_1_KeyValuePair_2_System_UInt64_System_Object_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4B40, ArraySortHelper_1_KeyValuePair_2_System_UInt64_System_Object__Sort_1__MethodInfo); DO_APP_FUNC(0x00FBEDF0, void, ArraySortHelper_1_KeyValuePair_2_System_UInt64_System_Object__Swap, (KeyValuePair_2_System_UInt64_System_Object___Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FBEBD0, void, ArraySortHelper_1_KeyValuePair_2_System_UInt64_System_Object__SwapIfGreater, (KeyValuePair_2_System_UInt64_System_Object___Array * keys, Comparison_1_System_Collections_Generic_KeyValuePair_2__11 * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_KeyValuePair_2_System_UInt64_System_Object_ *, ArraySortHelper_1_KeyValuePair_2_System_UInt64_System_Object__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_Unity_Collections_NativeArray_1___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_Unity_Collections_NativeArray_1___ctor, (ArraySortHelper_1_Unity_Collections_NativeArray_1_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01659380, int32_t, ArraySortHelper_1_Unity_Collections_NativeArray_1__BinarySearch, (ArraySortHelper_1_Unity_Collections_NativeArray_1_ * __this, NativeArray_1_System_UInt16___Array * array, int32_t index, int32_t length, NativeArray_1_System_UInt16_ value, IComparer_1_Unity_Collections_NativeArray_1_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5FC8, ArraySortHelper_1_Unity_Collections_NativeArray_1__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FB6460, void, ArraySortHelper_1_Unity_Collections_NativeArray_1__DownHeap, (NativeArray_1_System_UInt16___Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_Unity_Collections_NativeArray_1_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_Unity_Collections_NativeArray_1__Heapsort, (NativeArray_1_System_UInt16___Array * keys, int32_t lo, int32_t hi, Comparison_1_Unity_Collections_NativeArray_1_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5730, void, ArraySortHelper_1_Unity_Collections_NativeArray_1__InsertionSort, (NativeArray_1_System_UInt16___Array * keys, int32_t lo, int32_t hi, Comparison_1_Unity_Collections_NativeArray_1_ * comparer, MethodInfo * method)); @@ -122604,13 +135469,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_Unity_Collections_NativeArray_1_ DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_Unity_Collections_NativeArray_1__IntrospectiveSort, (NativeArray_1_System_UInt16___Array * keys, int32_t left, int32_t length, Comparison_1_Unity_Collections_NativeArray_1_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5FD0, int32_t, ArraySortHelper_1_Unity_Collections_NativeArray_1__PickPivotAndPartition, (NativeArray_1_System_UInt16___Array * keys, int32_t lo, int32_t hi, Comparison_1_Unity_Collections_NativeArray_1_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01659500, void, ArraySortHelper_1_Unity_Collections_NativeArray_1__Sort, (NativeArray_1_System_UInt16___Array * keys, int32_t index, int32_t length, Comparison_1_Unity_Collections_NativeArray_1_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5FC0, ArraySortHelper_1_Unity_Collections_NativeArray_1__Sort__MethodInfo); DO_APP_FUNC(0x01659110, void, ArraySortHelper_1_Unity_Collections_NativeArray_1__Sort_1, (ArraySortHelper_1_Unity_Collections_NativeArray_1_ * __this, NativeArray_1_System_UInt16___Array * keys, int32_t index, int32_t length, IComparer_1_Unity_Collections_NativeArray_1_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6020, ArraySortHelper_1_Unity_Collections_NativeArray_1__Sort_1__MethodInfo); DO_APP_FUNC(0x00FB4FC0, void, ArraySortHelper_1_Unity_Collections_NativeArray_1__Swap, (NativeArray_1_System_UInt16___Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FB4E70, void, ArraySortHelper_1_Unity_Collections_NativeArray_1__SwapIfGreater, (NativeArray_1_System_UInt16___Array * keys, Comparison_1_Unity_Collections_NativeArray_1_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_Unity_Collections_NativeArray_1_ *, ArraySortHelper_1_Unity_Collections_NativeArray_1__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_Unity_Collections_NativeArray_1__1__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_Unity_Collections_NativeArray_1__1__ctor, (ArraySortHelper_1_Unity_Collections_NativeArray_1__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x016598F0, int32_t, ArraySortHelper_1_Unity_Collections_NativeArray_1__1_BinarySearch, (ArraySortHelper_1_Unity_Collections_NativeArray_1__1 * __this, NativeArray_1_UnityEngine_UIElements_Vertex___Array * array, int32_t index, int32_t length, NativeArray_1_UnityEngine_UIElements_Vertex_ value, IComparer_1_Unity_Collections_NativeArray_1__1 * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5FD0, ArraySortHelper_1_Unity_Collections_NativeArray_1__1_BinarySearch__MethodInfo); DO_APP_FUNC(0x00FB6460, void, ArraySortHelper_1_Unity_Collections_NativeArray_1__1_DownHeap, (NativeArray_1_UnityEngine_UIElements_Vertex___Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_Unity_Collections_NativeArray_1__1 * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_Unity_Collections_NativeArray_1__1_Heapsort, (NativeArray_1_UnityEngine_UIElements_Vertex___Array * keys, int32_t lo, int32_t hi, Comparison_1_Unity_Collections_NativeArray_1__1 * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5730, void, ArraySortHelper_1_Unity_Collections_NativeArray_1__1_InsertionSort, (NativeArray_1_UnityEngine_UIElements_Vertex___Array * keys, int32_t lo, int32_t hi, Comparison_1_Unity_Collections_NativeArray_1__1 * comparer, MethodInfo * method)); @@ -122619,13 +135487,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_Unity_Collections_NativeArray_1_ DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_Unity_Collections_NativeArray_1__1_IntrospectiveSort, (NativeArray_1_UnityEngine_UIElements_Vertex___Array * keys, int32_t left, int32_t length, Comparison_1_Unity_Collections_NativeArray_1__1 * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5FD0, int32_t, ArraySortHelper_1_Unity_Collections_NativeArray_1__1_PickPivotAndPartition, (NativeArray_1_UnityEngine_UIElements_Vertex___Array * keys, int32_t lo, int32_t hi, Comparison_1_Unity_Collections_NativeArray_1__1 * comparer, MethodInfo * method)); DO_APP_FUNC(0x01659A70, void, ArraySortHelper_1_Unity_Collections_NativeArray_1__1_Sort, (NativeArray_1_UnityEngine_UIElements_Vertex___Array * keys, int32_t index, int32_t length, Comparison_1_Unity_Collections_NativeArray_1__1 * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5FA8, ArraySortHelper_1_Unity_Collections_NativeArray_1__1_Sort__MethodInfo); DO_APP_FUNC(0x01659680, void, ArraySortHelper_1_Unity_Collections_NativeArray_1__1_Sort_1, (ArraySortHelper_1_Unity_Collections_NativeArray_1__1 * __this, NativeArray_1_UnityEngine_UIElements_Vertex___Array * keys, int32_t index, int32_t length, IComparer_1_Unity_Collections_NativeArray_1__1 * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5FD8, ArraySortHelper_1_Unity_Collections_NativeArray_1__1_Sort_1__MethodInfo); DO_APP_FUNC(0x00FB4FC0, void, ArraySortHelper_1_Unity_Collections_NativeArray_1__1_Swap, (NativeArray_1_UnityEngine_UIElements_Vertex___Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FB4E70, void, ArraySortHelper_1_Unity_Collections_NativeArray_1__1_SwapIfGreater, (NativeArray_1_UnityEngine_UIElements_Vertex___Array * keys, Comparison_1_Unity_Collections_NativeArray_1__1 * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_Unity_Collections_NativeArray_1__1 *, ArraySortHelper_1_Unity_Collections_NativeArray_1__1_get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo___ctor, (ArraySortHelper_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01659E60, int32_t, ArraySortHelper_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo__BinarySearch, (ArraySortHelper_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo_ * __this, RenderGraphResourcePool_1_Type_ResourceLogInfo_System_Object___Array * array, int32_t index, int32_t length, RenderGraphResourcePool_1_Type_ResourceLogInfo_System_Object_ value, IComparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5FB8, ArraySortHelper_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FC5BC0, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo__DownHeap, (RenderGraphResourcePool_1_Type_ResourceLogInfo_System_Object___Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo__Heapsort, (RenderGraphResourcePool_1_Type_ResourceLogInfo_System_Object___Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC5E90, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo__InsertionSort, (RenderGraphResourcePool_1_Type_ResourceLogInfo_System_Object___Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo_ * comparer, MethodInfo * method)); @@ -122634,13 +135505,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_Experimental_Renderi DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo__IntrospectiveSort, (RenderGraphResourcePool_1_Type_ResourceLogInfo_System_Object___Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5FD0, int32_t, ArraySortHelper_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo__PickPivotAndPartition, (RenderGraphResourcePool_1_Type_ResourceLogInfo_System_Object___Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01659FE0, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo__Sort, (RenderGraphResourcePool_1_Type_ResourceLogInfo_System_Object___Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5FB0, ArraySortHelper_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo__Sort__MethodInfo); DO_APP_FUNC(0x01659BF0, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo__Sort_1, (ArraySortHelper_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo_ * __this, RenderGraphResourcePool_1_Type_ResourceLogInfo_System_Object___Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5FA0, ArraySortHelper_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo__Sort_1__MethodInfo); DO_APP_FUNC(0x00FC5A80, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo__Swap, (RenderGraphResourcePool_1_Type_ResourceLogInfo_System_Object___Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FC5860, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo__SwapIfGreater, (RenderGraphResourcePool_1_Type_ResourceLogInfo_System_Object___Array * keys, Comparison_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo_ *, ArraySortHelper_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_Photon_Bolt_Collections_STuple_2___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_Photon_Bolt_Collections_STuple_2___ctor, (ArraySortHelper_1_Photon_Bolt_Collections_STuple_2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0165A3D0, int32_t, ArraySortHelper_1_Photon_Bolt_Collections_STuple_2__BinarySearch, (ArraySortHelper_1_Photon_Bolt_Collections_STuple_2_ * __this, STuple_2_System_Object_System_Object___Array * array, int32_t index, int32_t length, STuple_2_System_Object_System_Object_ value, IComparer_1_Photon_Bolt_Collections_STuple_2_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6000, ArraySortHelper_1_Photon_Bolt_Collections_STuple_2__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FC5BC0, void, ArraySortHelper_1_Photon_Bolt_Collections_STuple_2__DownHeap, (STuple_2_System_Object_System_Object___Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_Photon_Bolt_Collections_STuple_2_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_Photon_Bolt_Collections_STuple_2__Heapsort, (STuple_2_System_Object_System_Object___Array * keys, int32_t lo, int32_t hi, Comparison_1_Photon_Bolt_Collections_STuple_2_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC5E90, void, ArraySortHelper_1_Photon_Bolt_Collections_STuple_2__InsertionSort, (STuple_2_System_Object_System_Object___Array * keys, int32_t lo, int32_t hi, Comparison_1_Photon_Bolt_Collections_STuple_2_ * comparer, MethodInfo * method)); @@ -122649,13 +135523,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_Photon_Bolt_Collections_STuple_2 DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_Photon_Bolt_Collections_STuple_2__IntrospectiveSort, (STuple_2_System_Object_System_Object___Array * keys, int32_t left, int32_t length, Comparison_1_Photon_Bolt_Collections_STuple_2_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5FD0, int32_t, ArraySortHelper_1_Photon_Bolt_Collections_STuple_2__PickPivotAndPartition, (STuple_2_System_Object_System_Object___Array * keys, int32_t lo, int32_t hi, Comparison_1_Photon_Bolt_Collections_STuple_2_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0165A550, void, ArraySortHelper_1_Photon_Bolt_Collections_STuple_2__Sort, (STuple_2_System_Object_System_Object___Array * keys, int32_t index, int32_t length, Comparison_1_Photon_Bolt_Collections_STuple_2_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6018, ArraySortHelper_1_Photon_Bolt_Collections_STuple_2__Sort__MethodInfo); DO_APP_FUNC(0x0165A160, void, ArraySortHelper_1_Photon_Bolt_Collections_STuple_2__Sort_1, (ArraySortHelper_1_Photon_Bolt_Collections_STuple_2_ * __this, STuple_2_System_Object_System_Object___Array * keys, int32_t index, int32_t length, IComparer_1_Photon_Bolt_Collections_STuple_2_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6008, ArraySortHelper_1_Photon_Bolt_Collections_STuple_2__Sort_1__MethodInfo); DO_APP_FUNC(0x00FC5A80, void, ArraySortHelper_1_Photon_Bolt_Collections_STuple_2__Swap, (STuple_2_System_Object_System_Object___Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FC5860, void, ArraySortHelper_1_Photon_Bolt_Collections_STuple_2__SwapIfGreater, (STuple_2_System_Object_System_Object___Array * keys, Comparison_1_Photon_Bolt_Collections_STuple_2_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_Photon_Bolt_Collections_STuple_2_ *, ArraySortHelper_1_Photon_Bolt_Collections_STuple_2__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_System_ValueTuple_2___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_System_ValueTuple_2___ctor, (ArraySortHelper_1_System_ValueTuple_2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0165A940, int32_t, ArraySortHelper_1_System_ValueTuple_2__BinarySearch, (ArraySortHelper_1_System_ValueTuple_2_ * __this, ValueTuple_2_Int32_Object___Array * array, int32_t index, int32_t length, ValueTuple_2_Int32_Object_ value, IComparer_1_System_ValueTuple_2_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5FE8, ArraySortHelper_1_System_ValueTuple_2__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FBEF30, void, ArraySortHelper_1_System_ValueTuple_2__DownHeap, (ValueTuple_2_Int32_Object___Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_ValueTuple_2_Int32_Object_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_System_ValueTuple_2__Heapsort, (ValueTuple_2_Int32_Object___Array * keys, int32_t lo, int32_t hi, Comparison_1_ValueTuple_2_Int32_Object_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FBF200, void, ArraySortHelper_1_System_ValueTuple_2__InsertionSort, (ValueTuple_2_Int32_Object___Array * keys, int32_t lo, int32_t hi, Comparison_1_ValueTuple_2_Int32_Object_ * comparer, MethodInfo * method)); @@ -122664,13 +135541,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_System_ValueTuple_2__IntroSort, DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_System_ValueTuple_2__IntrospectiveSort, (ValueTuple_2_Int32_Object___Array * keys, int32_t left, int32_t length, Comparison_1_ValueTuple_2_Int32_Object_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5FD0, int32_t, ArraySortHelper_1_System_ValueTuple_2__PickPivotAndPartition, (ValueTuple_2_Int32_Object___Array * keys, int32_t lo, int32_t hi, Comparison_1_ValueTuple_2_Int32_Object_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0165AAC0, void, ArraySortHelper_1_System_ValueTuple_2__Sort, (ValueTuple_2_Int32_Object___Array * keys, int32_t index, int32_t length, Comparison_1_ValueTuple_2_Int32_Object_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5FE0, ArraySortHelper_1_System_ValueTuple_2__Sort__MethodInfo); DO_APP_FUNC(0x0165A6D0, void, ArraySortHelper_1_System_ValueTuple_2__Sort_1, (ArraySortHelper_1_System_ValueTuple_2_ * __this, ValueTuple_2_Int32_Object___Array * keys, int32_t index, int32_t length, IComparer_1_System_ValueTuple_2_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6010, ArraySortHelper_1_System_ValueTuple_2__Sort_1__MethodInfo); DO_APP_FUNC(0x00FBEDF0, void, ArraySortHelper_1_System_ValueTuple_2__Swap, (ValueTuple_2_Int32_Object___Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FBEBD0, void, ArraySortHelper_1_System_ValueTuple_2__SwapIfGreater, (ValueTuple_2_Int32_Object___Array * keys, Comparison_1_ValueTuple_2_Int32_Object_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_System_ValueTuple_2_ *, ArraySortHelper_1_System_ValueTuple_2__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_System_ValueTuple_2__1__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_System_ValueTuple_2__1__ctor, (ArraySortHelper_1_System_ValueTuple_2__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x0165AEB0, int32_t, ArraySortHelper_1_System_ValueTuple_2__1_BinarySearch, (ArraySortHelper_1_System_ValueTuple_2__1 * __this, ValueTuple_2_Int32_UnityEngine_Vector2Int___Array * array, int32_t index, int32_t length, ValueTuple_2_Int32_UnityEngine_Vector2Int_ value, IComparer_1_System_ValueTuple_2__1 * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5FF0, ArraySortHelper_1_System_ValueTuple_2__1_BinarySearch__MethodInfo); DO_APP_FUNC(0x00FB42A0, void, ArraySortHelper_1_System_ValueTuple_2__1_DownHeap, (ValueTuple_2_Int32_UnityEngine_Vector2Int___Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_ValueTuple_2_Int32_UnityEngine_Vector2Int_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_System_ValueTuple_2__1_Heapsort, (ValueTuple_2_Int32_UnityEngine_Vector2Int___Array * keys, int32_t lo, int32_t hi, Comparison_1_ValueTuple_2_Int32_UnityEngine_Vector2Int_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB4580, void, ArraySortHelper_1_System_ValueTuple_2__1_InsertionSort, (ValueTuple_2_Int32_UnityEngine_Vector2Int___Array * keys, int32_t lo, int32_t hi, Comparison_1_ValueTuple_2_Int32_UnityEngine_Vector2Int_ * comparer, MethodInfo * method)); @@ -122679,13 +135559,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_System_ValueTuple_2__1_IntroSort DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_System_ValueTuple_2__1_IntrospectiveSort, (ValueTuple_2_Int32_UnityEngine_Vector2Int___Array * keys, int32_t left, int32_t length, Comparison_1_ValueTuple_2_Int32_UnityEngine_Vector2Int_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB3DC0, int32_t, ArraySortHelper_1_System_ValueTuple_2__1_PickPivotAndPartition, (ValueTuple_2_Int32_UnityEngine_Vector2Int___Array * keys, int32_t lo, int32_t hi, Comparison_1_ValueTuple_2_Int32_UnityEngine_Vector2Int_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0165B030, void, ArraySortHelper_1_System_ValueTuple_2__1_Sort, (ValueTuple_2_Int32_UnityEngine_Vector2Int___Array * keys, int32_t index, int32_t length, Comparison_1_ValueTuple_2_Int32_UnityEngine_Vector2Int_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5F48, ArraySortHelper_1_System_ValueTuple_2__1_Sort__MethodInfo); DO_APP_FUNC(0x0165AC40, void, ArraySortHelper_1_System_ValueTuple_2__1_Sort_1, (ArraySortHelper_1_System_ValueTuple_2__1 * __this, ValueTuple_2_Int32_UnityEngine_Vector2Int___Array * keys, int32_t index, int32_t length, IComparer_1_System_ValueTuple_2__1 * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5FF8, ArraySortHelper_1_System_ValueTuple_2__1_Sort_1__MethodInfo); DO_APP_FUNC(0x00FB3D40, void, ArraySortHelper_1_System_ValueTuple_2__1_Swap, (ValueTuple_2_Int32_UnityEngine_Vector2Int___Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FB3BC0, void, ArraySortHelper_1_System_ValueTuple_2__1_SwapIfGreater, (ValueTuple_2_Int32_UnityEngine_Vector2Int___Array * keys, Comparison_1_ValueTuple_2_Int32_UnityEngine_Vector2Int_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_System_ValueTuple_2__1 *, ArraySortHelper_1_System_ValueTuple_2__1_get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_System_ValueTuple_2__2__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_System_ValueTuple_2__2__ctor, (ArraySortHelper_1_System_ValueTuple_2__2 * __this, MethodInfo * method)); DO_APP_FUNC(0x0165B420, int32_t, ArraySortHelper_1_System_ValueTuple_2__2_BinarySearch, (ArraySortHelper_1_System_ValueTuple_2__2 * __this, ValueTuple_2_Object_ValueTuple_2_Object_Int32___Array * array, int32_t index, int32_t length, ValueTuple_2_Object_ValueTuple_2_Object_Int32_ value, IComparer_1_System_ValueTuple_2__2 * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5F58, ArraySortHelper_1_System_ValueTuple_2__2_BinarySearch__MethodInfo); DO_APP_FUNC(0x00FBFCE0, void, ArraySortHelper_1_System_ValueTuple_2__2_DownHeap, (ValueTuple_2_Object_ValueTuple_2_Object_Int32___Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_ValueTuple_2_Object_ValueTuple_2_Object_Int32_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_System_ValueTuple_2__2_Heapsort, (ValueTuple_2_Object_ValueTuple_2_Object_Int32___Array * keys, int32_t lo, int32_t hi, Comparison_1_ValueTuple_2_Object_ValueTuple_2_Object_Int32_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC0040, void, ArraySortHelper_1_System_ValueTuple_2__2_InsertionSort, (ValueTuple_2_Object_ValueTuple_2_Object_Int32___Array * keys, int32_t lo, int32_t hi, Comparison_1_ValueTuple_2_Object_ValueTuple_2_Object_Int32_ * comparer, MethodInfo * method)); @@ -122694,13 +135577,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_System_ValueTuple_2__2_IntroSort DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_System_ValueTuple_2__2_IntrospectiveSort, (ValueTuple_2_Object_ValueTuple_2_Object_Int32___Array * keys, int32_t left, int32_t length, Comparison_1_ValueTuple_2_Object_ValueTuple_2_Object_Int32_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB71C0, int32_t, ArraySortHelper_1_System_ValueTuple_2__2_PickPivotAndPartition, (ValueTuple_2_Object_ValueTuple_2_Object_Int32___Array * keys, int32_t lo, int32_t hi, Comparison_1_ValueTuple_2_Object_ValueTuple_2_Object_Int32_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0165B5A0, void, ArraySortHelper_1_System_ValueTuple_2__2_Sort, (ValueTuple_2_Object_ValueTuple_2_Object_Int32___Array * keys, int32_t index, int32_t length, Comparison_1_ValueTuple_2_Object_ValueTuple_2_Object_Int32_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5F50, ArraySortHelper_1_System_ValueTuple_2__2_Sort__MethodInfo); DO_APP_FUNC(0x0165B1B0, void, ArraySortHelper_1_System_ValueTuple_2__2_Sort_1, (ArraySortHelper_1_System_ValueTuple_2__2 * __this, ValueTuple_2_Object_ValueTuple_2_Object_Int32___Array * keys, int32_t index, int32_t length, IComparer_1_System_ValueTuple_2__2 * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5F40, ArraySortHelper_1_System_ValueTuple_2__2_Sort_1__MethodInfo); DO_APP_FUNC(0x00FBFB80, void, ArraySortHelper_1_System_ValueTuple_2__2_Swap, (ValueTuple_2_Object_ValueTuple_2_Object_Int32___Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FBF920, void, ArraySortHelper_1_System_ValueTuple_2__2_SwapIfGreater, (ValueTuple_2_Object_ValueTuple_2_Object_Int32___Array * keys, Comparison_1_ValueTuple_2_Object_ValueTuple_2_Object_Int32_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_System_ValueTuple_2__2 *, ArraySortHelper_1_System_ValueTuple_2__2_get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_System_ValueTuple_2__3__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_System_ValueTuple_2__3__ctor, (ArraySortHelper_1_System_ValueTuple_2__3 * __this, MethodInfo * method)); DO_APP_FUNC(0x0165B990, int32_t, ArraySortHelper_1_System_ValueTuple_2__3_BinarySearch, (ArraySortHelper_1_System_ValueTuple_2__3 * __this, ValueTuple_2_Object_Object___Array * array, int32_t index, int32_t length, ValueTuple_2_Object_Object_ value, IComparer_1_System_ValueTuple_2__3 * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5F20, ArraySortHelper_1_System_ValueTuple_2__3_BinarySearch__MethodInfo); DO_APP_FUNC(0x00FC5BC0, void, ArraySortHelper_1_System_ValueTuple_2__3_DownHeap, (ValueTuple_2_Object_Object___Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_ValueTuple_2_Object_Object_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_System_ValueTuple_2__3_Heapsort, (ValueTuple_2_Object_Object___Array * keys, int32_t lo, int32_t hi, Comparison_1_ValueTuple_2_Object_Object_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC5E90, void, ArraySortHelper_1_System_ValueTuple_2__3_InsertionSort, (ValueTuple_2_Object_Object___Array * keys, int32_t lo, int32_t hi, Comparison_1_ValueTuple_2_Object_Object_ * comparer, MethodInfo * method)); @@ -122709,13 +135595,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_System_ValueTuple_2__3_IntroSort DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_System_ValueTuple_2__3_IntrospectiveSort, (ValueTuple_2_Object_Object___Array * keys, int32_t left, int32_t length, Comparison_1_ValueTuple_2_Object_Object_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5FD0, int32_t, ArraySortHelper_1_System_ValueTuple_2__3_PickPivotAndPartition, (ValueTuple_2_Object_Object___Array * keys, int32_t lo, int32_t hi, Comparison_1_ValueTuple_2_Object_Object_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0165BB10, void, ArraySortHelper_1_System_ValueTuple_2__3_Sort, (ValueTuple_2_Object_Object___Array * keys, int32_t index, int32_t length, Comparison_1_ValueTuple_2_Object_Object_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5F38, ArraySortHelper_1_System_ValueTuple_2__3_Sort__MethodInfo); DO_APP_FUNC(0x0165B720, void, ArraySortHelper_1_System_ValueTuple_2__3_Sort_1, (ArraySortHelper_1_System_ValueTuple_2__3 * __this, ValueTuple_2_Object_Object___Array * keys, int32_t index, int32_t length, IComparer_1_System_ValueTuple_2__3 * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5F28, ArraySortHelper_1_System_ValueTuple_2__3_Sort_1__MethodInfo); DO_APP_FUNC(0x00FC5A80, void, ArraySortHelper_1_System_ValueTuple_2__3_Swap, (ValueTuple_2_Object_Object___Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FC5860, void, ArraySortHelper_1_System_ValueTuple_2__3_SwapIfGreater, (ValueTuple_2_Object_Object___Array * keys, Comparison_1_ValueTuple_2_Object_Object_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_System_ValueTuple_2__3 *, ArraySortHelper_1_System_ValueTuple_2__3_get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_System_ValueTuple_2__4__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_System_ValueTuple_2__4__ctor, (ArraySortHelper_1_System_ValueTuple_2__4 * __this, MethodInfo * method)); DO_APP_FUNC(0x0165BF00, int32_t, ArraySortHelper_1_System_ValueTuple_2__4_BinarySearch, (ArraySortHelper_1_System_ValueTuple_2__4 * __this, ValueTuple_2_UnityEngine_Vector3Int_Object___Array * array, int32_t index, int32_t length, ValueTuple_2_UnityEngine_Vector3Int_Object_ value, IComparer_1_System_ValueTuple_2__4 * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5F88, ArraySortHelper_1_System_ValueTuple_2__4_BinarySearch__MethodInfo); DO_APP_FUNC(0x00FB76D0, void, ArraySortHelper_1_System_ValueTuple_2__4_DownHeap, (ValueTuple_2_UnityEngine_Vector3Int_Object___Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_ValueTuple_2_UnityEngine_Vector3Int_Object_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_System_ValueTuple_2__4_Heapsort, (ValueTuple_2_UnityEngine_Vector3Int_Object___Array * keys, int32_t lo, int32_t hi, Comparison_1_ValueTuple_2_UnityEngine_Vector3Int_Object_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB7A30, void, ArraySortHelper_1_System_ValueTuple_2__4_InsertionSort, (ValueTuple_2_UnityEngine_Vector3Int_Object___Array * keys, int32_t lo, int32_t hi, Comparison_1_ValueTuple_2_UnityEngine_Vector3Int_Object_ * comparer, MethodInfo * method)); @@ -122724,13 +135613,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_System_ValueTuple_2__4_IntroSort DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_System_ValueTuple_2__4_IntrospectiveSort, (ValueTuple_2_UnityEngine_Vector3Int_Object___Array * keys, int32_t left, int32_t length, Comparison_1_ValueTuple_2_UnityEngine_Vector3Int_Object_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB71C0, int32_t, ArraySortHelper_1_System_ValueTuple_2__4_PickPivotAndPartition, (ValueTuple_2_UnityEngine_Vector3Int_Object___Array * keys, int32_t lo, int32_t hi, Comparison_1_ValueTuple_2_UnityEngine_Vector3Int_Object_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0165C080, void, ArraySortHelper_1_System_ValueTuple_2__4_Sort, (ValueTuple_2_UnityEngine_Vector3Int_Object___Array * keys, int32_t index, int32_t length, Comparison_1_ValueTuple_2_UnityEngine_Vector3Int_Object_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5F80, ArraySortHelper_1_System_ValueTuple_2__4_Sort__MethodInfo); DO_APP_FUNC(0x0165BC90, void, ArraySortHelper_1_System_ValueTuple_2__4_Sort_1, (ArraySortHelper_1_System_ValueTuple_2__4 * __this, ValueTuple_2_UnityEngine_Vector3Int_Object___Array * keys, int32_t index, int32_t length, IComparer_1_System_ValueTuple_2__4 * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5F30, ArraySortHelper_1_System_ValueTuple_2__4_Sort_1__MethodInfo); DO_APP_FUNC(0x00FB7060, void, ArraySortHelper_1_System_ValueTuple_2__4_Swap, (ValueTuple_2_UnityEngine_Vector3Int_Object___Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FB6E00, void, ArraySortHelper_1_System_ValueTuple_2__4_SwapIfGreater, (ValueTuple_2_UnityEngine_Vector3Int_Object___Array * keys, Comparison_1_ValueTuple_2_UnityEngine_Vector3Int_Object_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_System_ValueTuple_2__4 *, ArraySortHelper_1_System_ValueTuple_2__4_get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_System_ValueTuple_2__5__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_System_ValueTuple_2__5__ctor, (ArraySortHelper_1_System_ValueTuple_2__5 * __this, MethodInfo * method)); DO_APP_FUNC(0x0165C470, int32_t, ArraySortHelper_1_System_ValueTuple_2__5_BinarySearch, (ArraySortHelper_1_System_ValueTuple_2__5 * __this, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel___Array * array, int32_t index, int32_t length, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_ value, IComparer_1_System_ValueTuple_2__5 * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5F90, ArraySortHelper_1_System_ValueTuple_2__5_BinarySearch__MethodInfo); DO_APP_FUNC(0x0165CBB0, void, ArraySortHelper_1_System_ValueTuple_2__5_DownHeap, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel___Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_System_ValueTuple_2__5_Heapsort, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel___Array * keys, int32_t lo, int32_t hi, Comparison_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0165CFD0, void, ArraySortHelper_1_System_ValueTuple_2__5_InsertionSort, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel___Array * keys, int32_t lo, int32_t hi, Comparison_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_ * comparer, MethodInfo * method)); @@ -122739,13 +135631,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_System_ValueTuple_2__5_IntroSort DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_System_ValueTuple_2__5_IntrospectiveSort, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel___Array * keys, int32_t left, int32_t length, Comparison_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB8770, int32_t, ArraySortHelper_1_System_ValueTuple_2__5_PickPivotAndPartition, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel___Array * keys, int32_t lo, int32_t hi, Comparison_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0165C610, void, ArraySortHelper_1_System_ValueTuple_2__5_Sort, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel___Array * keys, int32_t index, int32_t length, Comparison_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5F68, ArraySortHelper_1_System_ValueTuple_2__5_Sort__MethodInfo); DO_APP_FUNC(0x0165C200, void, ArraySortHelper_1_System_ValueTuple_2__5_Sort_1, (ArraySortHelper_1_System_ValueTuple_2__5 * __this, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel___Array * keys, int32_t index, int32_t length, IComparer_1_System_ValueTuple_2__5 * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5F98, ArraySortHelper_1_System_ValueTuple_2__5_Sort_1__MethodInfo); DO_APP_FUNC(0x0165CA10, void, ArraySortHelper_1_System_ValueTuple_2__5_Swap, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel___Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x0165C790, void, ArraySortHelper_1_System_ValueTuple_2__5_SwapIfGreater, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel___Array * keys, Comparison_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_System_ValueTuple_2__5 *, ArraySortHelper_1_System_ValueTuple_2__5_get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_System_ValueTuple_2__6__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_System_ValueTuple_2__6__ctor, (ArraySortHelper_1_System_ValueTuple_2__6 * __this, MethodInfo * method)); DO_APP_FUNC(0x0165D4D0, int32_t, ArraySortHelper_1_System_ValueTuple_2__6_BinarySearch, (ArraySortHelper_1_System_ValueTuple_2__6 * __this, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership___Array * array, int32_t index, int32_t length, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_ value, IComparer_1_System_ValueTuple_2__6 * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5F78, ArraySortHelper_1_System_ValueTuple_2__6_BinarySearch__MethodInfo); DO_APP_FUNC(0x0165DB80, void, ArraySortHelper_1_System_ValueTuple_2__6_DownHeap, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership___Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_System_ValueTuple_2__6_Heapsort, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership___Array * keys, int32_t lo, int32_t hi, Comparison_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0165DF70, void, ArraySortHelper_1_System_ValueTuple_2__6_InsertionSort, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership___Array * keys, int32_t lo, int32_t hi, Comparison_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_ * comparer, MethodInfo * method)); @@ -122754,13 +135649,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_System_ValueTuple_2__6_IntroSort DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_System_ValueTuple_2__6_IntrospectiveSort, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership___Array * keys, int32_t left, int32_t length, Comparison_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB1280, int32_t, ArraySortHelper_1_System_ValueTuple_2__6_PickPivotAndPartition, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership___Array * keys, int32_t lo, int32_t hi, Comparison_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0165D660, void, ArraySortHelper_1_System_ValueTuple_2__6_Sort, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership___Array * keys, int32_t index, int32_t length, Comparison_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5F70, ArraySortHelper_1_System_ValueTuple_2__6_Sort__MethodInfo); DO_APP_FUNC(0x0165D260, void, ArraySortHelper_1_System_ValueTuple_2__6_Sort_1, (ArraySortHelper_1_System_ValueTuple_2__6 * __this, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership___Array * keys, int32_t index, int32_t length, IComparer_1_System_ValueTuple_2__6 * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5F60, ArraySortHelper_1_System_ValueTuple_2__6_Sort_1__MethodInfo); DO_APP_FUNC(0x0165DA00, void, ArraySortHelper_1_System_ValueTuple_2__6_Swap, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership___Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x0165D7E0, void, ArraySortHelper_1_System_ValueTuple_2__6_SwapIfGreater, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership___Array * keys, Comparison_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_System_ValueTuple_2__6 *, ArraySortHelper_1_System_ValueTuple_2__6_get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_AnimatorClipInfo___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_AnimatorClipInfo___ctor, (ArraySortHelper_1_UnityEngine_AnimatorClipInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0165E420, int32_t, ArraySortHelper_1_UnityEngine_AnimatorClipInfo__BinarySearch, (ArraySortHelper_1_UnityEngine_AnimatorClipInfo_ * __this, AnimatorClipInfo__Array * array, int32_t index, int32_t length, AnimatorClipInfo value, IComparer_1_UnityEngine_AnimatorClipInfo_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5EC0, ArraySortHelper_1_UnityEngine_AnimatorClipInfo__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FC40D0, void, ArraySortHelper_1_UnityEngine_AnimatorClipInfo__DownHeap, (AnimatorClipInfo__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_AnimatorClipInfo_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_AnimatorClipInfo__Heapsort, (AnimatorClipInfo__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_AnimatorClipInfo_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC42E0, void, ArraySortHelper_1_UnityEngine_AnimatorClipInfo__InsertionSort, (AnimatorClipInfo__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_AnimatorClipInfo_ * comparer, MethodInfo * method)); @@ -122769,13 +135667,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_AnimatorClipInfo__In DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_AnimatorClipInfo__IntrospectiveSort, (AnimatorClipInfo__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_AnimatorClipInfo_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC3C80, int32_t, ArraySortHelper_1_UnityEngine_AnimatorClipInfo__PickPivotAndPartition, (AnimatorClipInfo__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_AnimatorClipInfo_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0165E590, void, ArraySortHelper_1_UnityEngine_AnimatorClipInfo__Sort, (AnimatorClipInfo__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_AnimatorClipInfo_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5ED8, ArraySortHelper_1_UnityEngine_AnimatorClipInfo__Sort__MethodInfo); DO_APP_FUNC(0x0165E1B0, void, ArraySortHelper_1_UnityEngine_AnimatorClipInfo__Sort_1, (ArraySortHelper_1_UnityEngine_AnimatorClipInfo_ * __this, AnimatorClipInfo__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_AnimatorClipInfo_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5EC8, ArraySortHelper_1_UnityEngine_AnimatorClipInfo__Sort_1__MethodInfo); DO_APP_FUNC(0x00FC3C30, void, ArraySortHelper_1_UnityEngine_AnimatorClipInfo__Swap, (AnimatorClipInfo__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FC3B20, void, ArraySortHelper_1_UnityEngine_AnimatorClipInfo__SwapIfGreater, (AnimatorClipInfo__Array * keys, Comparison_1_UnityEngine_AnimatorClipInfo_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_AnimatorClipInfo_ *, ArraySortHelper_1_UnityEngine_AnimatorClipInfo__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___ctor, (ArraySortHelper_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0165E980, int32_t, ArraySortHelper_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__BinarySearch, (ArraySortHelper_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, AsyncOperationHandle__Array * array, int32_t index, int32_t length, AsyncOperationHandle value, IComparer_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5EA0, ArraySortHelper_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FBFCE0, void, ArraySortHelper_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__DownHeap, (AsyncOperationHandle__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__Heapsort, (AsyncOperationHandle__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC0040, void, ArraySortHelper_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__InsertionSort, (AsyncOperationHandle__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * comparer, MethodInfo * method)); @@ -122784,13 +135685,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_ResourceManagement_A DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__IntrospectiveSort, (AsyncOperationHandle__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB71C0, int32_t, ArraySortHelper_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__PickPivotAndPartition, (AsyncOperationHandle__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0165EB00, void, ArraySortHelper_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__Sort, (AsyncOperationHandle__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5E98, ArraySortHelper_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__Sort__MethodInfo); DO_APP_FUNC(0x0165E710, void, ArraySortHelper_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__Sort_1, (ArraySortHelper_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, AsyncOperationHandle__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5ED0, ArraySortHelper_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__Sort_1__MethodInfo); DO_APP_FUNC(0x00FBFB80, void, ArraySortHelper_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__Swap, (AsyncOperationHandle__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FBF920, void, ArraySortHelper_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__SwapIfGreater, (AsyncOperationHandle__Array * keys, Comparison_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ *, ArraySortHelper_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_Dissonance_Integrations_PhotonBolt_BoltPeer___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_Dissonance_Integrations_PhotonBolt_BoltPeer___ctor, (ArraySortHelper_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0165EEF0, int32_t, ArraySortHelper_1_Dissonance_Integrations_PhotonBolt_BoltPeer__BinarySearch, (ArraySortHelper_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, BoltPeer__Array * array, int32_t index, int32_t length, BoltPeer value, IComparer_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5EA8, ArraySortHelper_1_Dissonance_Integrations_PhotonBolt_BoltPeer__BinarySearch__MethodInfo); DO_APP_FUNC(0x0165F370, void, ArraySortHelper_1_Dissonance_Integrations_PhotonBolt_BoltPeer__DownHeap, (BoltPeer__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_Dissonance_Integrations_PhotonBolt_BoltPeer__Heapsort, (BoltPeer__Array * keys, int32_t lo, int32_t hi, Comparison_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0165F580, void, ArraySortHelper_1_Dissonance_Integrations_PhotonBolt_BoltPeer__InsertionSort, (BoltPeer__Array * keys, int32_t lo, int32_t hi, Comparison_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * comparer, MethodInfo * method)); @@ -122799,13 +135703,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_Dissonance_Integrations_PhotonBo DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_Dissonance_Integrations_PhotonBolt_BoltPeer__IntrospectiveSort, (BoltPeer__Array * keys, int32_t left, int32_t length, Comparison_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC3C80, int32_t, ArraySortHelper_1_Dissonance_Integrations_PhotonBolt_BoltPeer__PickPivotAndPartition, (BoltPeer__Array * keys, int32_t lo, int32_t hi, Comparison_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0165F060, void, ArraySortHelper_1_Dissonance_Integrations_PhotonBolt_BoltPeer__Sort, (BoltPeer__Array * keys, int32_t index, int32_t length, Comparison_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5F08, ArraySortHelper_1_Dissonance_Integrations_PhotonBolt_BoltPeer__Sort__MethodInfo); DO_APP_FUNC(0x0165EC80, void, ArraySortHelper_1_Dissonance_Integrations_PhotonBolt_BoltPeer__Sort_1, (ArraySortHelper_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, BoltPeer__Array * keys, int32_t index, int32_t length, IComparer_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5EB0, ArraySortHelper_1_Dissonance_Integrations_PhotonBolt_BoltPeer__Sort_1__MethodInfo); DO_APP_FUNC(0x0165F300, void, ArraySortHelper_1_Dissonance_Integrations_PhotonBolt_BoltPeer__Swap, (BoltPeer__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x0165F1E0, void, ArraySortHelper_1_Dissonance_Integrations_PhotonBolt_BoltPeer__SwapIfGreater, (BoltPeer__Array * keys, Comparison_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ *, ArraySortHelper_1_Dissonance_Integrations_PhotonBolt_BoltPeer__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_Photon_Bolt_LagCompensation_BoltPhysicsHit___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_Photon_Bolt_LagCompensation_BoltPhysicsHit___ctor, (ArraySortHelper_1_Photon_Bolt_LagCompensation_BoltPhysicsHit_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0165F960, int32_t, ArraySortHelper_1_Photon_Bolt_LagCompensation_BoltPhysicsHit__BinarySearch, (ArraySortHelper_1_Photon_Bolt_LagCompensation_BoltPhysicsHit_ * __this, BoltPhysicsHit__Array * array, int32_t index, int32_t length, BoltPhysicsHit value, IComparer_1_Photon_Bolt_LagCompensation_BoltPhysicsHit_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5F18, ArraySortHelper_1_Photon_Bolt_LagCompensation_BoltPhysicsHit__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FC4DB0, void, ArraySortHelper_1_Photon_Bolt_LagCompensation_BoltPhysicsHit__DownHeap, (BoltPhysicsHit__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_Photon_Bolt_LagCompensation_BoltPhysicsHit_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_Photon_Bolt_LagCompensation_BoltPhysicsHit__Heapsort, (BoltPhysicsHit__Array * keys, int32_t lo, int32_t hi, Comparison_1_Photon_Bolt_LagCompensation_BoltPhysicsHit_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC5110, void, ArraySortHelper_1_Photon_Bolt_LagCompensation_BoltPhysicsHit__InsertionSort, (BoltPhysicsHit__Array * keys, int32_t lo, int32_t hi, Comparison_1_Photon_Bolt_LagCompensation_BoltPhysicsHit_ * comparer, MethodInfo * method)); @@ -122814,13 +135721,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_Photon_Bolt_LagCompensation_Bolt DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_Photon_Bolt_LagCompensation_BoltPhysicsHit__IntrospectiveSort, (BoltPhysicsHit__Array * keys, int32_t left, int32_t length, Comparison_1_Photon_Bolt_LagCompensation_BoltPhysicsHit_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB71C0, int32_t, ArraySortHelper_1_Photon_Bolt_LagCompensation_BoltPhysicsHit__PickPivotAndPartition, (BoltPhysicsHit__Array * keys, int32_t lo, int32_t hi, Comparison_1_Photon_Bolt_LagCompensation_BoltPhysicsHit_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0165FAE0, void, ArraySortHelper_1_Photon_Bolt_LagCompensation_BoltPhysicsHit__Sort, (BoltPhysicsHit__Array * keys, int32_t index, int32_t length, Comparison_1_Photon_Bolt_LagCompensation_BoltPhysicsHit_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5F10, ArraySortHelper_1_Photon_Bolt_LagCompensation_BoltPhysicsHit__Sort__MethodInfo); DO_APP_FUNC(0x0165F6F0, void, ArraySortHelper_1_Photon_Bolt_LagCompensation_BoltPhysicsHit__Sort_1, (ArraySortHelper_1_Photon_Bolt_LagCompensation_BoltPhysicsHit_ * __this, BoltPhysicsHit__Array * keys, int32_t index, int32_t length, IComparer_1_Photon_Bolt_LagCompensation_BoltPhysicsHit_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5F00, ArraySortHelper_1_Photon_Bolt_LagCompensation_BoltPhysicsHit__Sort_1__MethodInfo); DO_APP_FUNC(0x00FC4C40, void, ArraySortHelper_1_Photon_Bolt_LagCompensation_BoltPhysicsHit__Swap, (BoltPhysicsHit__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FC49C0, void, ArraySortHelper_1_Photon_Bolt_LagCompensation_BoltPhysicsHit__SwapIfGreater, (BoltPhysicsHit__Array * keys, Comparison_1_Photon_Bolt_LagCompensation_BoltPhysicsHit_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_Photon_Bolt_LagCompensation_BoltPhysicsHit_ *, ArraySortHelper_1_Photon_Bolt_LagCompensation_BoltPhysicsHit__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_BoneWeight___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_BoneWeight___ctor, (ArraySortHelper_1_UnityEngine_BoneWeight_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0165FED0, int32_t, ArraySortHelper_1_UnityEngine_BoneWeight__BinarySearch, (ArraySortHelper_1_UnityEngine_BoneWeight_ * __this, BoneWeight__Array * array, int32_t index, int32_t length, BoneWeight value, IComparer_1_UnityEngine_BoneWeight_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5EE0, ArraySortHelper_1_UnityEngine_BoneWeight__BinarySearch__MethodInfo); DO_APP_FUNC(0x01660400, void, ArraySortHelper_1_UnityEngine_BoneWeight__DownHeap, (BoneWeight__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_BoneWeight_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_BoneWeight__Heapsort, (BoneWeight__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_BoneWeight_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x016606F0, void, ArraySortHelper_1_UnityEngine_BoneWeight__InsertionSort, (BoneWeight__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_BoneWeight_ * comparer, MethodInfo * method)); @@ -122829,13 +135739,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_BoneWeight__IntroSor DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_BoneWeight__IntrospectiveSort, (BoneWeight__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_BoneWeight_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB9EF0, int32_t, ArraySortHelper_1_UnityEngine_BoneWeight__PickPivotAndPartition, (BoneWeight__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_BoneWeight_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01660050, void, ArraySortHelper_1_UnityEngine_BoneWeight__Sort, (BoneWeight__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_BoneWeight_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5EF8, ArraySortHelper_1_UnityEngine_BoneWeight__Sort__MethodInfo); DO_APP_FUNC(0x0165FC60, void, ArraySortHelper_1_UnityEngine_BoneWeight__Sort_1, (ArraySortHelper_1_UnityEngine_BoneWeight_ * __this, BoneWeight__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_BoneWeight_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5EE8, ArraySortHelper_1_UnityEngine_BoneWeight__Sort_1__MethodInfo); DO_APP_FUNC(0x01660370, void, ArraySortHelper_1_UnityEngine_BoneWeight__Swap, (BoneWeight__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x016601D0, void, ArraySortHelper_1_UnityEngine_BoneWeight__SwapIfGreater, (BoneWeight__Array * keys, Comparison_1_UnityEngine_BoneWeight_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_BoneWeight_ *, ArraySortHelper_1_UnityEngine_BoneWeight__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_System_Boolean___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_System_Boolean___ctor, (ArraySortHelper_1_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01660B40, int32_t, ArraySortHelper_1_System_Boolean__BinarySearch, (ArraySortHelper_1_System_Boolean_ * __this, Boolean__Array * array, int32_t index, int32_t length, bool value, IComparer_1_System_Boolean_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5E40, ArraySortHelper_1_System_Boolean__BinarySearch__MethodInfo); DO_APP_FUNC(0x01661500, void, ArraySortHelper_1_System_Boolean__DownHeap, (Boolean__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_Boolean_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_System_Boolean__Heapsort, (Boolean__Array * keys, int32_t lo, int32_t hi, Comparison_1_Boolean_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01661700, void, ArraySortHelper_1_System_Boolean__InsertionSort, (Boolean__Array * keys, int32_t lo, int32_t hi, Comparison_1_Boolean_ * comparer, MethodInfo * method)); @@ -122844,13 +135757,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_System_Boolean__IntroSort, (Bool DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_System_Boolean__IntrospectiveSort, (Boolean__Array * keys, int32_t left, int32_t length, Comparison_1_Boolean_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x016610B0, int32_t, ArraySortHelper_1_System_Boolean__PickPivotAndPartition, (Boolean__Array * keys, int32_t lo, int32_t hi, Comparison_1_Boolean_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01660CB0, void, ArraySortHelper_1_System_Boolean__Sort, (Boolean__Array * keys, int32_t index, int32_t length, Comparison_1_Boolean_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5E38, ArraySortHelper_1_System_Boolean__Sort__MethodInfo); DO_APP_FUNC(0x016608D0, void, ArraySortHelper_1_System_Boolean__Sort_1, (ArraySortHelper_1_System_Boolean_ * __this, Boolean__Array * keys, int32_t index, int32_t length, IComparer_1_System_Boolean_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5EF0, ArraySortHelper_1_System_Boolean__Sort_1__MethodInfo); DO_APP_FUNC(0x01661050, void, ArraySortHelper_1_System_Boolean__Swap, (Boolean__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x01660F40, void, ArraySortHelper_1_System_Boolean__SwapIfGreater, (Boolean__Array * keys, Comparison_1_Boolean_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_System_Boolean_ *, ArraySortHelper_1_System_Boolean__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_System_Byte___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_System_Byte___ctor, (ArraySortHelper_1_System_Byte_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01661AD0, int32_t, ArraySortHelper_1_System_Byte__BinarySearch, (ArraySortHelper_1_System_Byte_ * __this, Byte__Array * array, int32_t index, int32_t length, uint8_t value, IComparer_1_System_Byte_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5E48, ArraySortHelper_1_System_Byte__BinarySearch__MethodInfo); DO_APP_FUNC(0x01661500, void, ArraySortHelper_1_System_Byte__DownHeap, (Byte__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_Byte_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_System_Byte__Heapsort, (Byte__Array * keys, int32_t lo, int32_t hi, Comparison_1_Byte_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01661700, void, ArraySortHelper_1_System_Byte__InsertionSort, (Byte__Array * keys, int32_t lo, int32_t hi, Comparison_1_Byte_ * comparer, MethodInfo * method)); @@ -122859,13 +135775,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_System_Byte__IntroSort, (Byte__A DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_System_Byte__IntrospectiveSort, (Byte__Array * keys, int32_t left, int32_t length, Comparison_1_Byte_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x016610B0, int32_t, ArraySortHelper_1_System_Byte__PickPivotAndPartition, (Byte__Array * keys, int32_t lo, int32_t hi, Comparison_1_Byte_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01661C40, void, ArraySortHelper_1_System_Byte__Sort, (Byte__Array * keys, int32_t index, int32_t length, Comparison_1_Byte_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5E20, ArraySortHelper_1_System_Byte__Sort__MethodInfo); DO_APP_FUNC(0x01661860, void, ArraySortHelper_1_System_Byte__Sort_1, (ArraySortHelper_1_System_Byte_ * __this, Byte__Array * keys, int32_t index, int32_t length, IComparer_1_System_Byte_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5E50, ArraySortHelper_1_System_Byte__Sort_1__MethodInfo); DO_APP_FUNC(0x01661050, void, ArraySortHelper_1_System_Byte__Swap, (Byte__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x01660F40, void, ArraySortHelper_1_System_Byte__SwapIfGreater, (Byte__Array * keys, Comparison_1_Byte_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_System_Byte_ *, ArraySortHelper_1_System_Byte__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_System_Threading_CancellationToken___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_System_Threading_CancellationToken___ctor, (ArraySortHelper_1_System_Threading_CancellationToken_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016621A0, int32_t, ArraySortHelper_1_System_Threading_CancellationToken__BinarySearch, (ArraySortHelper_1_System_Threading_CancellationToken_ * __this, CancellationToken__Array * array, int32_t index, int32_t length, CancellationToken value, IComparer_1_System_Threading_CancellationToken_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5E30, ArraySortHelper_1_System_Threading_CancellationToken__BinarySearch__MethodInfo); DO_APP_FUNC(0x0165F370, void, ArraySortHelper_1_System_Threading_CancellationToken__DownHeap, (CancellationToken__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_System_Threading_CancellationToken_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_System_Threading_CancellationToken__Heapsort, (CancellationToken__Array * keys, int32_t lo, int32_t hi, Comparison_1_System_Threading_CancellationToken_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0165F580, void, ArraySortHelper_1_System_Threading_CancellationToken__InsertionSort, (CancellationToken__Array * keys, int32_t lo, int32_t hi, Comparison_1_System_Threading_CancellationToken_ * comparer, MethodInfo * method)); @@ -122874,13 +135793,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_System_Threading_CancellationTok DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_System_Threading_CancellationToken__IntrospectiveSort, (CancellationToken__Array * keys, int32_t left, int32_t length, Comparison_1_System_Threading_CancellationToken_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC3C80, int32_t, ArraySortHelper_1_System_Threading_CancellationToken__PickPivotAndPartition, (CancellationToken__Array * keys, int32_t lo, int32_t hi, Comparison_1_System_Threading_CancellationToken_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01662310, void, ArraySortHelper_1_System_Threading_CancellationToken__Sort, (CancellationToken__Array * keys, int32_t index, int32_t length, Comparison_1_System_Threading_CancellationToken_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5E28, ArraySortHelper_1_System_Threading_CancellationToken__Sort__MethodInfo); DO_APP_FUNC(0x01661F30, void, ArraySortHelper_1_System_Threading_CancellationToken__Sort_1, (ArraySortHelper_1_System_Threading_CancellationToken_ * __this, CancellationToken__Array * keys, int32_t index, int32_t length, IComparer_1_System_Threading_CancellationToken_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5E18, ArraySortHelper_1_System_Threading_CancellationToken__Sort_1__MethodInfo); DO_APP_FUNC(0x0165F300, void, ArraySortHelper_1_System_Threading_CancellationToken__Swap, (CancellationToken__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x0165F1E0, void, ArraySortHelper_1_System_Threading_CancellationToken__SwapIfGreater, (CancellationToken__Array * keys, Comparison_1_System_Threading_CancellationToken_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_System_Threading_CancellationToken_ *, ArraySortHelper_1_System_Threading_CancellationToken__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_System_Char___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_System_Char___ctor, (ArraySortHelper_1_System_Char_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01662700, int32_t, ArraySortHelper_1_System_Char__BinarySearch, (ArraySortHelper_1_System_Char_ * __this, Char__Array * array, int32_t index, int32_t length, uint16_t value, IComparer_1_System_Char_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5E78, ArraySortHelper_1_System_Char__BinarySearch__MethodInfo); DO_APP_FUNC(0x01663120, void, ArraySortHelper_1_System_Char__DownHeap, (Char__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_Char_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_System_Char__Heapsort, (Char__Array * keys, int32_t lo, int32_t hi, Comparison_1_Char_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01663320, void, ArraySortHelper_1_System_Char__InsertionSort, (Char__Array * keys, int32_t lo, int32_t hi, Comparison_1_Char_ * comparer, MethodInfo * method)); @@ -122889,13 +135811,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_System_Char__IntroSort, (Char__A DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_System_Char__IntrospectiveSort, (Char__Array * keys, int32_t left, int32_t length, Comparison_1_Char_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01662CD0, int32_t, ArraySortHelper_1_System_Char__PickPivotAndPartition, (Char__Array * keys, int32_t lo, int32_t hi, Comparison_1_Char_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01662870, void, ArraySortHelper_1_System_Char__Sort, (Char__Array * keys, int32_t index, int32_t length, Comparison_1_Char_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5E90, ArraySortHelper_1_System_Char__Sort__MethodInfo); DO_APP_FUNC(0x01662490, void, ArraySortHelper_1_System_Char__Sort_1, (ArraySortHelper_1_System_Char_ * __this, Char__Array * keys, int32_t index, int32_t length, IComparer_1_System_Char_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5E80, ArraySortHelper_1_System_Char__Sort_1__MethodInfo); DO_APP_FUNC(0x01662C70, void, ArraySortHelper_1_System_Char__Swap, (Char__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x01662B60, void, ArraySortHelper_1_System_Char__SwapIfGreater, (Char__Array * keys, Comparison_1_Char_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_System_Char_ *, ArraySortHelper_1_System_Char__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_Dissonance_Networking_ClientInfo___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_Dissonance_Networking_ClientInfo___ctor, (ArraySortHelper_1_Dissonance_Networking_ClientInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016636F0, int32_t, ArraySortHelper_1_Dissonance_Networking_ClientInfo__BinarySearch, (ArraySortHelper_1_Dissonance_Networking_ClientInfo_ * __this, ClientInfo__Array * array, int32_t index, int32_t length, ClientInfo value, IComparer_1_Dissonance_Networking_ClientInfo_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5E60, ArraySortHelper_1_Dissonance_Networking_ClientInfo__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FBFCE0, void, ArraySortHelper_1_Dissonance_Networking_ClientInfo__DownHeap, (ClientInfo__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_Dissonance_Networking_ClientInfo_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_Dissonance_Networking_ClientInfo__Heapsort, (ClientInfo__Array * keys, int32_t lo, int32_t hi, Comparison_1_Dissonance_Networking_ClientInfo_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC0040, void, ArraySortHelper_1_Dissonance_Networking_ClientInfo__InsertionSort, (ClientInfo__Array * keys, int32_t lo, int32_t hi, Comparison_1_Dissonance_Networking_ClientInfo_ * comparer, MethodInfo * method)); @@ -122904,13 +135829,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_Dissonance_Networking_ClientInfo DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_Dissonance_Networking_ClientInfo__IntrospectiveSort, (ClientInfo__Array * keys, int32_t left, int32_t length, Comparison_1_Dissonance_Networking_ClientInfo_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB71C0, int32_t, ArraySortHelper_1_Dissonance_Networking_ClientInfo__PickPivotAndPartition, (ClientInfo__Array * keys, int32_t lo, int32_t hi, Comparison_1_Dissonance_Networking_ClientInfo_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01663870, void, ArraySortHelper_1_Dissonance_Networking_ClientInfo__Sort, (ClientInfo__Array * keys, int32_t index, int32_t length, Comparison_1_Dissonance_Networking_ClientInfo_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5E58, ArraySortHelper_1_Dissonance_Networking_ClientInfo__Sort__MethodInfo); DO_APP_FUNC(0x01663480, void, ArraySortHelper_1_Dissonance_Networking_ClientInfo__Sort_1, (ArraySortHelper_1_Dissonance_Networking_ClientInfo_ * __this, ClientInfo__Array * keys, int32_t index, int32_t length, IComparer_1_Dissonance_Networking_ClientInfo_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5E88, ArraySortHelper_1_Dissonance_Networking_ClientInfo__Sort_1__MethodInfo); DO_APP_FUNC(0x00FBFB80, void, ArraySortHelper_1_Dissonance_Networking_ClientInfo__Swap, (ClientInfo__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FBF920, void, ArraySortHelper_1_Dissonance_Networking_ClientInfo__SwapIfGreater, (ClientInfo__Array * keys, Comparison_1_Dissonance_Networking_ClientInfo_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_Dissonance_Networking_ClientInfo_ *, ArraySortHelper_1_Dissonance_Networking_ClientInfo__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_Color___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_Color___ctor, (ArraySortHelper_1_UnityEngine_Color_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01663C60, int32_t, ArraySortHelper_1_UnityEngine_Color__BinarySearch, (ArraySortHelper_1_UnityEngine_Color_ * __this, Color__Array * array, int32_t index, int32_t length, Color value, IComparer_1_UnityEngine_Color_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5E68, ArraySortHelper_1_UnityEngine_Color__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FB54C0, void, ArraySortHelper_1_UnityEngine_Color__DownHeap, (Color__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_Color_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_Color__Heapsort, (Color__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Color_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5730, void, ArraySortHelper_1_UnityEngine_Color__InsertionSort, (Color__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Color_ * comparer, MethodInfo * method)); @@ -122919,13 +135847,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_Color__IntroSort, (C DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_Color__IntrospectiveSort, (Color__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_Color_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5030, int32_t, ArraySortHelper_1_UnityEngine_Color__PickPivotAndPartition, (Color__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Color_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01663DE0, void, ArraySortHelper_1_UnityEngine_Color__Sort, (Color__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_Color_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5DC0, ArraySortHelper_1_UnityEngine_Color__Sort__MethodInfo); DO_APP_FUNC(0x016639F0, void, ArraySortHelper_1_UnityEngine_Color__Sort_1, (ArraySortHelper_1_UnityEngine_Color_ * __this, Color__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_Color_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5E70, ArraySortHelper_1_UnityEngine_Color__Sort_1__MethodInfo); DO_APP_FUNC(0x00FB4FC0, void, ArraySortHelper_1_UnityEngine_Color__Swap, (Color__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FB4E70, void, ArraySortHelper_1_UnityEngine_Color__SwapIfGreater, (Color__Array * keys, Comparison_1_UnityEngine_Color_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_Color_ *, ArraySortHelper_1_UnityEngine_Color__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_Color32___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_Color32___ctor, (ArraySortHelper_1_UnityEngine_Color32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016641D0, int32_t, ArraySortHelper_1_UnityEngine_Color32__BinarySearch, (ArraySortHelper_1_UnityEngine_Color32_ * __this, Color32__Array * array, int32_t index, int32_t length, Color32 value, IComparer_1_UnityEngine_Color32_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5DD0, ArraySortHelper_1_UnityEngine_Color32__BinarySearch__MethodInfo); DO_APP_FUNC(0x010B17F0, void, ArraySortHelper_1_UnityEngine_Color32__DownHeap, (Color32__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_Color32_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_Color32__Heapsort, (Color32__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Color32_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010B1A00, void, ArraySortHelper_1_UnityEngine_Color32__InsertionSort, (Color32__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Color32_ * comparer, MethodInfo * method)); @@ -122934,13 +135865,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_Color32__IntroSort, DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_Color32__IntrospectiveSort, (Color32__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_Color32_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010B13A0, int32_t, ArraySortHelper_1_UnityEngine_Color32__PickPivotAndPartition, (Color32__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Color32_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01664340, void, ArraySortHelper_1_UnityEngine_Color32__Sort, (Color32__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_Color32_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5DC8, ArraySortHelper_1_UnityEngine_Color32__Sort__MethodInfo); DO_APP_FUNC(0x01663F60, void, ArraySortHelper_1_UnityEngine_Color32__Sort_1, (ArraySortHelper_1_UnityEngine_Color32_ * __this, Color32__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_Color32_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5DB8, ArraySortHelper_1_UnityEngine_Color32__Sort_1__MethodInfo); DO_APP_FUNC(0x010B1350, void, ArraySortHelper_1_UnityEngine_Color32__Swap, (Color32__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x010B1240, void, ArraySortHelper_1_UnityEngine_Color32__SwapIfGreater, (Color32__Array * keys, Comparison_1_UnityEngine_Color32_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_Color32_ *, ArraySortHelper_1_UnityEngine_Color32__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_CombineInstance___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_CombineInstance___ctor, (ArraySortHelper_1_UnityEngine_CombineInstance_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01664730, int32_t, ArraySortHelper_1_UnityEngine_CombineInstance__BinarySearch, (ArraySortHelper_1_UnityEngine_CombineInstance_ * __this, CombineInstance__Array * array, int32_t index, int32_t length, CombineInstance value, IComparer_1_UnityEngine_CombineInstance_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5D98, ArraySortHelper_1_UnityEngine_CombineInstance__BinarySearch__MethodInfo); DO_APP_FUNC(0x016657E0, void, ArraySortHelper_1_UnityEngine_CombineInstance__DownHeap, (CombineInstance__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_CombineInstance_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_CombineInstance__Heapsort, (CombineInstance__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_CombineInstance_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01665CD0, void, ArraySortHelper_1_UnityEngine_CombineInstance__InsertionSort, (CombineInstance__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_CombineInstance_ * comparer, MethodInfo * method)); @@ -122949,13 +135883,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_CombineInstance__Int DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_CombineInstance__IntrospectiveSort, (CombineInstance__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_CombineInstance_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01665190, int32_t, ArraySortHelper_1_UnityEngine_CombineInstance__PickPivotAndPartition, (CombineInstance__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_CombineInstance_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x016648F0, void, ArraySortHelper_1_UnityEngine_CombineInstance__Sort, (CombineInstance__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_CombineInstance_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5DB0, ArraySortHelper_1_UnityEngine_CombineInstance__Sort__MethodInfo); DO_APP_FUNC(0x016644C0, void, ArraySortHelper_1_UnityEngine_CombineInstance__Sort_1, (ArraySortHelper_1_UnityEngine_CombineInstance_ * __this, CombineInstance__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_CombineInstance_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5DA0, ArraySortHelper_1_UnityEngine_CombineInstance__Sort_1__MethodInfo); DO_APP_FUNC(0x01665060, void, ArraySortHelper_1_UnityEngine_CombineInstance__Swap, (CombineInstance__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x01664D00, void, ArraySortHelper_1_UnityEngine_CombineInstance__SwapIfGreater, (CombineInstance__Array * keys, Comparison_1_UnityEngine_CombineInstance_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_CombineInstance_ *, ArraySortHelper_1_UnityEngine_CombineInstance__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_UIElements_ComputedTransitionProperty___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_UIElements_ComputedTransitionProperty___ctor, (ArraySortHelper_1_UnityEngine_UIElements_ComputedTransitionProperty_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016662D0, int32_t, ArraySortHelper_1_UnityEngine_UIElements_ComputedTransitionProperty__BinarySearch, (ArraySortHelper_1_UnityEngine_UIElements_ComputedTransitionProperty_ * __this, ComputedTransitionProperty__Array * array, int32_t index, int32_t length, ComputedTransitionProperty value, IComparer_1_UnityEngine_UIElements_ComputedTransitionProperty_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5E00, ArraySortHelper_1_UnityEngine_UIElements_ComputedTransitionProperty__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FB76D0, void, ArraySortHelper_1_UnityEngine_UIElements_ComputedTransitionProperty__DownHeap, (ComputedTransitionProperty__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_UIElements_ComputedTransitionProperty_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_UIElements_ComputedTransitionProperty__Heapsort, (ComputedTransitionProperty__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_ComputedTransitionProperty_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB7A30, void, ArraySortHelper_1_UnityEngine_UIElements_ComputedTransitionProperty__InsertionSort, (ComputedTransitionProperty__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_ComputedTransitionProperty_ * comparer, MethodInfo * method)); @@ -122964,13 +135901,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_UIElements_ComputedT DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_UIElements_ComputedTransitionProperty__IntrospectiveSort, (ComputedTransitionProperty__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_UIElements_ComputedTransitionProperty_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB71C0, int32_t, ArraySortHelper_1_UnityEngine_UIElements_ComputedTransitionProperty__PickPivotAndPartition, (ComputedTransitionProperty__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_ComputedTransitionProperty_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01666450, void, ArraySortHelper_1_UnityEngine_UIElements_ComputedTransitionProperty__Sort, (ComputedTransitionProperty__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_UIElements_ComputedTransitionProperty_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5DF8, ArraySortHelper_1_UnityEngine_UIElements_ComputedTransitionProperty__Sort__MethodInfo); DO_APP_FUNC(0x01666060, void, ArraySortHelper_1_UnityEngine_UIElements_ComputedTransitionProperty__Sort_1, (ArraySortHelper_1_UnityEngine_UIElements_ComputedTransitionProperty_ * __this, ComputedTransitionProperty__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_UIElements_ComputedTransitionProperty_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5DA8, ArraySortHelper_1_UnityEngine_UIElements_ComputedTransitionProperty__Sort_1__MethodInfo); DO_APP_FUNC(0x00FB7060, void, ArraySortHelper_1_UnityEngine_UIElements_ComputedTransitionProperty__Swap, (ComputedTransitionProperty__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FB6E00, void, ArraySortHelper_1_UnityEngine_UIElements_ComputedTransitionProperty__SwapIfGreater, (ComputedTransitionProperty__Array * keys, Comparison_1_UnityEngine_UIElements_ComputedTransitionProperty_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_UIElements_ComputedTransitionProperty_ *, ArraySortHelper_1_UnityEngine_UIElements_ComputedTransitionProperty__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_Pathfinding_Connection___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_Pathfinding_Connection___ctor, (ArraySortHelper_1_Pathfinding_Connection_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01666840, int32_t, ArraySortHelper_1_Pathfinding_Connection__BinarySearch, (ArraySortHelper_1_Pathfinding_Connection_ * __this, Connection__Array * array, int32_t index, int32_t length, Connection value, IComparer_1_Pathfinding_Connection_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5E08, ArraySortHelper_1_Pathfinding_Connection__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FC5BC0, void, ArraySortHelper_1_Pathfinding_Connection__DownHeap, (Connection__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_Pathfinding_Connection_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_Pathfinding_Connection__Heapsort, (Connection__Array * keys, int32_t lo, int32_t hi, Comparison_1_Pathfinding_Connection_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC5E90, void, ArraySortHelper_1_Pathfinding_Connection__InsertionSort, (Connection__Array * keys, int32_t lo, int32_t hi, Comparison_1_Pathfinding_Connection_ * comparer, MethodInfo * method)); @@ -122979,13 +135919,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_Pathfinding_Connection__IntroSor DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_Pathfinding_Connection__IntrospectiveSort, (Connection__Array * keys, int32_t left, int32_t length, Comparison_1_Pathfinding_Connection_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5FD0, int32_t, ArraySortHelper_1_Pathfinding_Connection__PickPivotAndPartition, (Connection__Array * keys, int32_t lo, int32_t hi, Comparison_1_Pathfinding_Connection_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x016669C0, void, ArraySortHelper_1_Pathfinding_Connection__Sort, (Connection__Array * keys, int32_t index, int32_t length, Comparison_1_Pathfinding_Connection_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5DE0, ArraySortHelper_1_Pathfinding_Connection__Sort__MethodInfo); DO_APP_FUNC(0x016665D0, void, ArraySortHelper_1_Pathfinding_Connection__Sort_1, (ArraySortHelper_1_Pathfinding_Connection_ * __this, Connection__Array * keys, int32_t index, int32_t length, IComparer_1_Pathfinding_Connection_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5E10, ArraySortHelper_1_Pathfinding_Connection__Sort_1__MethodInfo); DO_APP_FUNC(0x00FC5A80, void, ArraySortHelper_1_Pathfinding_Connection__Swap, (Connection__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FC5860, void, ArraySortHelper_1_Pathfinding_Connection__SwapIfGreater, (Connection__Array * keys, Comparison_1_Pathfinding_Connection_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_Pathfinding_Connection_ *, ArraySortHelper_1_Pathfinding_Connection__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_Rewired_ControllerPollingInfo___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_Rewired_ControllerPollingInfo___ctor, (ArraySortHelper_1_Rewired_ControllerPollingInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01666DB0, int32_t, ArraySortHelper_1_Rewired_ControllerPollingInfo__BinarySearch, (ArraySortHelper_1_Rewired_ControllerPollingInfo_ * __this, ControllerPollingInfo__Array * array, int32_t index, int32_t length, ControllerPollingInfo value, IComparer_1_Rewired_ControllerPollingInfo_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5DF0, ArraySortHelper_1_Rewired_ControllerPollingInfo__BinarySearch__MethodInfo); DO_APP_FUNC(0x016674F0, void, ArraySortHelper_1_Rewired_ControllerPollingInfo__DownHeap, (ControllerPollingInfo__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_Rewired_ControllerPollingInfo_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_Rewired_ControllerPollingInfo__Heapsort, (ControllerPollingInfo__Array * keys, int32_t lo, int32_t hi, Comparison_1_Rewired_ControllerPollingInfo_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01667910, void, ArraySortHelper_1_Rewired_ControllerPollingInfo__InsertionSort, (ControllerPollingInfo__Array * keys, int32_t lo, int32_t hi, Comparison_1_Rewired_ControllerPollingInfo_ * comparer, MethodInfo * method)); @@ -122994,13 +135937,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_Rewired_ControllerPollingInfo__I DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_Rewired_ControllerPollingInfo__IntrospectiveSort, (ControllerPollingInfo__Array * keys, int32_t left, int32_t length, Comparison_1_Rewired_ControllerPollingInfo_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB8770, int32_t, ArraySortHelper_1_Rewired_ControllerPollingInfo__PickPivotAndPartition, (ControllerPollingInfo__Array * keys, int32_t lo, int32_t hi, Comparison_1_Rewired_ControllerPollingInfo_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01666F50, void, ArraySortHelper_1_Rewired_ControllerPollingInfo__Sort, (ControllerPollingInfo__Array * keys, int32_t index, int32_t length, Comparison_1_Rewired_ControllerPollingInfo_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5DE8, ArraySortHelper_1_Rewired_ControllerPollingInfo__Sort__MethodInfo); DO_APP_FUNC(0x01666B40, void, ArraySortHelper_1_Rewired_ControllerPollingInfo__Sort_1, (ArraySortHelper_1_Rewired_ControllerPollingInfo_ * __this, ControllerPollingInfo__Array * keys, int32_t index, int32_t length, IComparer_1_Rewired_ControllerPollingInfo_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5DD8, ArraySortHelper_1_Rewired_ControllerPollingInfo__Sort_1__MethodInfo); DO_APP_FUNC(0x01667350, void, ArraySortHelper_1_Rewired_ControllerPollingInfo__Swap, (ControllerPollingInfo__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x016670D0, void, ArraySortHelper_1_Rewired_ControllerPollingInfo__SwapIfGreater, (ControllerPollingInfo__Array * keys, Comparison_1_Rewired_ControllerPollingInfo_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_Rewired_ControllerPollingInfo_ *, ArraySortHelper_1_Rewired_ControllerPollingInfo__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_Rewired_ControllerTemplateElementTarget___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_Rewired_ControllerTemplateElementTarget___ctor, (ArraySortHelper_1_Rewired_ControllerTemplateElementTarget_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01667E10, int32_t, ArraySortHelper_1_Rewired_ControllerTemplateElementTarget__BinarySearch, (ArraySortHelper_1_Rewired_ControllerTemplateElementTarget_ * __this, ControllerTemplateElementTarget__Array * array, int32_t index, int32_t length, ControllerTemplateElementTarget value, IComparer_1_Rewired_ControllerTemplateElementTarget_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5D70, ArraySortHelper_1_Rewired_ControllerTemplateElementTarget__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FC5BC0, void, ArraySortHelper_1_Rewired_ControllerTemplateElementTarget__DownHeap, (ControllerTemplateElementTarget__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_Rewired_ControllerTemplateElementTarget_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_Rewired_ControllerTemplateElementTarget__Heapsort, (ControllerTemplateElementTarget__Array * keys, int32_t lo, int32_t hi, Comparison_1_Rewired_ControllerTemplateElementTarget_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC5E90, void, ArraySortHelper_1_Rewired_ControllerTemplateElementTarget__InsertionSort, (ControllerTemplateElementTarget__Array * keys, int32_t lo, int32_t hi, Comparison_1_Rewired_ControllerTemplateElementTarget_ * comparer, MethodInfo * method)); @@ -123009,13 +135955,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_Rewired_ControllerTemplateElemen DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_Rewired_ControllerTemplateElementTarget__IntrospectiveSort, (ControllerTemplateElementTarget__Array * keys, int32_t left, int32_t length, Comparison_1_Rewired_ControllerTemplateElementTarget_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5FD0, int32_t, ArraySortHelper_1_Rewired_ControllerTemplateElementTarget__PickPivotAndPartition, (ControllerTemplateElementTarget__Array * keys, int32_t lo, int32_t hi, Comparison_1_Rewired_ControllerTemplateElementTarget_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01667F90, void, ArraySortHelper_1_Rewired_ControllerTemplateElementTarget__Sort, (ControllerTemplateElementTarget__Array * keys, int32_t index, int32_t length, Comparison_1_Rewired_ControllerTemplateElementTarget_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5D88, ArraySortHelper_1_Rewired_ControllerTemplateElementTarget__Sort__MethodInfo); DO_APP_FUNC(0x01667BA0, void, ArraySortHelper_1_Rewired_ControllerTemplateElementTarget__Sort_1, (ArraySortHelper_1_Rewired_ControllerTemplateElementTarget_ * __this, ControllerTemplateElementTarget__Array * keys, int32_t index, int32_t length, IComparer_1_Rewired_ControllerTemplateElementTarget_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5D78, ArraySortHelper_1_Rewired_ControllerTemplateElementTarget__Sort_1__MethodInfo); DO_APP_FUNC(0x00FC5A80, void, ArraySortHelper_1_Rewired_ControllerTemplateElementTarget__Swap, (ControllerTemplateElementTarget__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FC5860, void, ArraySortHelper_1_Rewired_ControllerTemplateElementTarget__SwapIfGreater, (ControllerTemplateElementTarget__Array * keys, Comparison_1_Rewired_ControllerTemplateElementTarget_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_Rewired_ControllerTemplateElementTarget_ *, ArraySortHelper_1_Rewired_ControllerTemplateElementTarget__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_SplineMesh_CurveSample___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_SplineMesh_CurveSample___ctor, (ArraySortHelper_1_SplineMesh_CurveSample_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01668380, int32_t, ArraySortHelper_1_SplineMesh_CurveSample__BinarySearch, (ArraySortHelper_1_SplineMesh_CurveSample_ * __this, CurveSample__Array * array, int32_t index, int32_t length, CurveSample value, IComparer_1_SplineMesh_CurveSample_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5D58, ArraySortHelper_1_SplineMesh_CurveSample__BinarySearch__MethodInfo); DO_APP_FUNC(0x010A03F0, void, ArraySortHelper_1_SplineMesh_CurveSample__DownHeap, (CurveSample__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_SplineMesh_CurveSample_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_SplineMesh_CurveSample__Heapsort, (CurveSample__Array * keys, int32_t lo, int32_t hi, Comparison_1_SplineMesh_CurveSample_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010A07E0, void, ArraySortHelper_1_SplineMesh_CurveSample__InsertionSort, (CurveSample__Array * keys, int32_t lo, int32_t hi, Comparison_1_SplineMesh_CurveSample_ * comparer, MethodInfo * method)); @@ -123024,13 +135973,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_SplineMesh_CurveSample__IntroSor DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_SplineMesh_CurveSample__IntrospectiveSort, (CurveSample__Array * keys, int32_t left, int32_t length, Comparison_1_SplineMesh_CurveSample_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0109FE30, int32_t, ArraySortHelper_1_SplineMesh_CurveSample__PickPivotAndPartition, (CurveSample__Array * keys, int32_t lo, int32_t hi, Comparison_1_SplineMesh_CurveSample_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01668530, void, ArraySortHelper_1_SplineMesh_CurveSample__Sort, (CurveSample__Array * keys, int32_t index, int32_t length, Comparison_1_SplineMesh_CurveSample_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5D50, ArraySortHelper_1_SplineMesh_CurveSample__Sort__MethodInfo); DO_APP_FUNC(0x01668110, void, ArraySortHelper_1_SplineMesh_CurveSample__Sort_1, (ArraySortHelper_1_SplineMesh_CurveSample_ * __this, CurveSample__Array * keys, int32_t index, int32_t length, IComparer_1_SplineMesh_CurveSample_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5D80, ArraySortHelper_1_SplineMesh_CurveSample__Sort_1__MethodInfo); DO_APP_FUNC(0x0109FD50, void, ArraySortHelper_1_SplineMesh_CurveSample__Swap, (CurveSample__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x0109FAC0, void, ArraySortHelper_1_SplineMesh_CurveSample__SwapIfGreater, (CurveSample__Array * keys, Comparison_1_SplineMesh_CurveSample_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_SplineMesh_CurveSample_ *, ArraySortHelper_1_SplineMesh_CurveSample__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_System_DateTime___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_System_DateTime___ctor, (ArraySortHelper_1_System_DateTime_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01668920, int32_t, ArraySortHelper_1_System_DateTime__BinarySearch, (ArraySortHelper_1_System_DateTime_ * __this, DateTime__Array * array, int32_t index, int32_t length, DateTime value, IComparer_1_System_DateTime_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5D60, ArraySortHelper_1_System_DateTime__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FC40D0, void, ArraySortHelper_1_System_DateTime__DownHeap, (DateTime__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_DateTime_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_System_DateTime__Heapsort, (DateTime__Array * keys, int32_t lo, int32_t hi, Comparison_1_DateTime_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC42E0, void, ArraySortHelper_1_System_DateTime__InsertionSort, (DateTime__Array * keys, int32_t lo, int32_t hi, Comparison_1_DateTime_ * comparer, MethodInfo * method)); @@ -123039,7 +135991,9 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_System_DateTime__IntroSort, (Dat DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_System_DateTime__IntrospectiveSort, (DateTime__Array * keys, int32_t left, int32_t length, Comparison_1_DateTime_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC3C80, int32_t, ArraySortHelper_1_System_DateTime__PickPivotAndPartition, (DateTime__Array * keys, int32_t lo, int32_t hi, Comparison_1_DateTime_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01668A90, void, ArraySortHelper_1_System_DateTime__Sort, (DateTime__Array * keys, int32_t index, int32_t length, Comparison_1_DateTime_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5D90, ArraySortHelper_1_System_DateTime__Sort__MethodInfo); DO_APP_FUNC(0x016686B0, void, ArraySortHelper_1_System_DateTime__Sort_1, (ArraySortHelper_1_System_DateTime_ * __this, DateTime__Array * keys, int32_t index, int32_t length, IComparer_1_System_DateTime_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5D68, ArraySortHelper_1_System_DateTime__Sort_1__MethodInfo); DO_APP_FUNC(0x00FC3C30, void, ArraySortHelper_1_System_DateTime__Swap, (DateTime__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FC3B20, void, ArraySortHelper_1_System_DateTime__SwapIfGreater, (DateTime__Array * keys, Comparison_1_DateTime_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_System_DateTime_ *, ArraySortHelper_1_System_DateTime__get_Default, (MethodInfo * method)); @@ -124126,6 +137080,7 @@ DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_UIElements_RuleMatcher_ *, DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_System_SByte___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_System_SByte___ctor, (ArraySortHelper_1_System_SByte_ * __this, MethodInfo * method)); DO_APP_FUNC(0x017DC4B0, int32_t, ArraySortHelper_1_System_SByte__BinarySearch, (ArraySortHelper_1_System_SByte_ * __this, SByte__Array * array, int32_t index, int32_t length, int8_t value, IComparer_1_System_SByte_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02E28, ArraySortHelper_1_System_SByte__BinarySearch__MethodInfo); DO_APP_FUNC(0x01661500, void, ArraySortHelper_1_System_SByte__DownHeap, (SByte__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_SByte_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_System_SByte__Heapsort, (SByte__Array * keys, int32_t lo, int32_t hi, Comparison_1_SByte_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01661700, void, ArraySortHelper_1_System_SByte__InsertionSort, (SByte__Array * keys, int32_t lo, int32_t hi, Comparison_1_SByte_ * comparer, MethodInfo * method)); @@ -124134,13 +137089,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_System_SByte__IntroSort, (SByte_ DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_System_SByte__IntrospectiveSort, (SByte__Array * keys, int32_t left, int32_t length, Comparison_1_SByte_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x016610B0, int32_t, ArraySortHelper_1_System_SByte__PickPivotAndPartition, (SByte__Array * keys, int32_t lo, int32_t hi, Comparison_1_SByte_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x017DC620, void, ArraySortHelper_1_System_SByte__Sort, (SByte__Array * keys, int32_t index, int32_t length, Comparison_1_SByte_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02E50, ArraySortHelper_1_System_SByte__Sort__MethodInfo); DO_APP_FUNC(0x017DC240, void, ArraySortHelper_1_System_SByte__Sort_1, (ArraySortHelper_1_System_SByte_ * __this, SByte__Array * keys, int32_t index, int32_t length, IComparer_1_System_SByte_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02E30, ArraySortHelper_1_System_SByte__Sort_1__MethodInfo); DO_APP_FUNC(0x01661050, void, ArraySortHelper_1_System_SByte__Swap, (SByte__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x01660F40, void, ArraySortHelper_1_System_SByte__SwapIfGreater, (SByte__Array * keys, Comparison_1_SByte_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_System_SByte_ *, ArraySortHelper_1_System_SByte__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord___ctor, (ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * __this, MethodInfo * method)); DO_APP_FUNC(0x017DCA10, int32_t, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__BinarySearch, (ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * __this, SelectorMatchRecord__Array * array, int32_t index, int32_t length, SelectorMatchRecord value, IComparer_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02E40, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FBFCE0, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__DownHeap, (SelectorMatchRecord__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__Heapsort, (SelectorMatchRecord__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC0040, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__InsertionSort, (SelectorMatchRecord__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * comparer, MethodInfo * method)); @@ -124149,13 +137107,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_UIElements_StyleShee DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__IntrospectiveSort, (SelectorMatchRecord__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB71C0, int32_t, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__PickPivotAndPartition, (SelectorMatchRecord__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x017DCB90, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__Sort, (SelectorMatchRecord__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02E38, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__Sort__MethodInfo); DO_APP_FUNC(0x017DC7A0, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__Sort_1, (ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * __this, SelectorMatchRecord__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02E48, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__Sort_1__MethodInfo); DO_APP_FUNC(0x00FBFB80, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__Swap, (SelectorMatchRecord__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FBF920, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__SwapIfGreater, (SelectorMatchRecord__Array * keys, Comparison_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ *, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_System_Single___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_System_Single___ctor, (ArraySortHelper_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x017DCF80, int32_t, ArraySortHelper_1_System_Single__BinarySearch, (ArraySortHelper_1_System_Single_ * __this, Single__Array * array, int32_t index, int32_t length, float value, IComparer_1_System_Single_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02E68, ArraySortHelper_1_System_Single__BinarySearch__MethodInfo); DO_APP_FUNC(0x017DD910, void, ArraySortHelper_1_System_Single__DownHeap, (Single__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_Single_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_System_Single__Heapsort, (Single__Array * keys, int32_t lo, int32_t hi, Comparison_1_Single_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x017DDB30, void, ArraySortHelper_1_System_Single__InsertionSort, (Single__Array * keys, int32_t lo, int32_t hi, Comparison_1_Single_ * comparer, MethodInfo * method)); @@ -124164,13 +137125,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_System_Single__IntroSort, (Singl DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_System_Single__IntrospectiveSort, (Single__Array * keys, int32_t left, int32_t length, Comparison_1_Single_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x017DD4B0, int32_t, ArraySortHelper_1_System_Single__PickPivotAndPartition, (Single__Array * keys, int32_t lo, int32_t hi, Comparison_1_Single_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x017DD0F0, void, ArraySortHelper_1_System_Single__Sort, (Single__Array * keys, int32_t index, int32_t length, Comparison_1_Single_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02E60, ArraySortHelper_1_System_Single__Sort__MethodInfo); DO_APP_FUNC(0x017DCD10, void, ArraySortHelper_1_System_Single__Sort_1, (ArraySortHelper_1_System_Single_ * __this, Single__Array * keys, int32_t index, int32_t length, IComparer_1_System_Single_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02E70, ArraySortHelper_1_System_Single__Sort_1__MethodInfo); DO_APP_FUNC(0x010A1840, void, ArraySortHelper_1_System_Single__Swap, (Single__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x017DD390, void, ArraySortHelper_1_System_Single__SwapIfGreater, (Single__Array * keys, Comparison_1_Single_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_System_Single_ *, ArraySortHelper_1_System_Single__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_Discord_Sku___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_Discord_Sku___ctor, (ArraySortHelper_1_Discord_Sku_ * __this, MethodInfo * method)); DO_APP_FUNC(0x017DDF00, int32_t, ArraySortHelper_1_Discord_Sku__BinarySearch, (ArraySortHelper_1_Discord_Sku_ * __this, Sku__Array * array, int32_t index, int32_t length, Sku value, IComparer_1_Discord_Sku_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02E90, ArraySortHelper_1_Discord_Sku__BinarySearch__MethodInfo); DO_APP_FUNC(0x0165DB80, void, ArraySortHelper_1_Discord_Sku__DownHeap, (Sku__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_Discord_Sku_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_Discord_Sku__Heapsort, (Sku__Array * keys, int32_t lo, int32_t hi, Comparison_1_Discord_Sku_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0165DF70, void, ArraySortHelper_1_Discord_Sku__InsertionSort, (Sku__Array * keys, int32_t lo, int32_t hi, Comparison_1_Discord_Sku_ * comparer, MethodInfo * method)); @@ -124179,13 +137143,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_Discord_Sku__IntroSort, (Sku__Ar DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_Discord_Sku__IntrospectiveSort, (Sku__Array * keys, int32_t left, int32_t length, Comparison_1_Discord_Sku_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB1280, int32_t, ArraySortHelper_1_Discord_Sku__PickPivotAndPartition, (Sku__Array * keys, int32_t lo, int32_t hi, Comparison_1_Discord_Sku_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x017DE090, void, ArraySortHelper_1_Discord_Sku__Sort, (Sku__Array * keys, int32_t index, int32_t length, Comparison_1_Discord_Sku_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02E88, ArraySortHelper_1_Discord_Sku__Sort__MethodInfo); DO_APP_FUNC(0x017DDC90, void, ArraySortHelper_1_Discord_Sku__Sort_1, (ArraySortHelper_1_Discord_Sku_ * __this, Sku__Array * keys, int32_t index, int32_t length, IComparer_1_Discord_Sku_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02E58, ArraySortHelper_1_Discord_Sku__Sort_1__MethodInfo); DO_APP_FUNC(0x0165DA00, void, ArraySortHelper_1_Discord_Sku__Swap, (Sku__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x0165D7E0, void, ArraySortHelper_1_Discord_Sku__SwapIfGreater, (Sku__Array * keys, Comparison_1_Discord_Sku_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_Discord_Sku_ *, ArraySortHelper_1_Discord_Sku__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_System_Net_Security_SslApplicationProtocol___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_System_Net_Security_SslApplicationProtocol___ctor, (ArraySortHelper_1_System_Net_Security_SslApplicationProtocol_ * __this, MethodInfo * method)); DO_APP_FUNC(0x017DE480, int32_t, ArraySortHelper_1_System_Net_Security_SslApplicationProtocol__BinarySearch, (ArraySortHelper_1_System_Net_Security_SslApplicationProtocol_ * __this, SslApplicationProtocol__Array * array, int32_t index, int32_t length, SslApplicationProtocol value, IComparer_1_System_Net_Security_SslApplicationProtocol_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02E78, ArraySortHelper_1_System_Net_Security_SslApplicationProtocol__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FC5BC0, void, ArraySortHelper_1_System_Net_Security_SslApplicationProtocol__DownHeap, (SslApplicationProtocol__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_System_Net_Security_SslApplicationProtocol_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_System_Net_Security_SslApplicationProtocol__Heapsort, (SslApplicationProtocol__Array * keys, int32_t lo, int32_t hi, Comparison_1_System_Net_Security_SslApplicationProtocol_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC5E90, void, ArraySortHelper_1_System_Net_Security_SslApplicationProtocol__InsertionSort, (SslApplicationProtocol__Array * keys, int32_t lo, int32_t hi, Comparison_1_System_Net_Security_SslApplicationProtocol_ * comparer, MethodInfo * method)); @@ -124194,13 +137161,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_System_Net_Security_SslApplicati DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_System_Net_Security_SslApplicationProtocol__IntrospectiveSort, (SslApplicationProtocol__Array * keys, int32_t left, int32_t length, Comparison_1_System_Net_Security_SslApplicationProtocol_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5FD0, int32_t, ArraySortHelper_1_System_Net_Security_SslApplicationProtocol__PickPivotAndPartition, (SslApplicationProtocol__Array * keys, int32_t lo, int32_t hi, Comparison_1_System_Net_Security_SslApplicationProtocol_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x017DE600, void, ArraySortHelper_1_System_Net_Security_SslApplicationProtocol__Sort, (SslApplicationProtocol__Array * keys, int32_t index, int32_t length, Comparison_1_System_Net_Security_SslApplicationProtocol_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02DC0, ArraySortHelper_1_System_Net_Security_SslApplicationProtocol__Sort__MethodInfo); DO_APP_FUNC(0x017DE210, void, ArraySortHelper_1_System_Net_Security_SslApplicationProtocol__Sort_1, (ArraySortHelper_1_System_Net_Security_SslApplicationProtocol_ * __this, SslApplicationProtocol__Array * keys, int32_t index, int32_t length, IComparer_1_System_Net_Security_SslApplicationProtocol_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02E80, ArraySortHelper_1_System_Net_Security_SslApplicationProtocol__Sort_1__MethodInfo); DO_APP_FUNC(0x00FC5A80, void, ArraySortHelper_1_System_Net_Security_SslApplicationProtocol__Swap, (SslApplicationProtocol__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FC5860, void, ArraySortHelper_1_System_Net_Security_SslApplicationProtocol__SwapIfGreater, (SslApplicationProtocol__Array * keys, Comparison_1_System_Net_Security_SslApplicationProtocol_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_System_Net_Security_SslApplicationProtocol_ *, ArraySortHelper_1_System_Net_Security_SslApplicationProtocol__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_Steamworks_SteamItemDef_t___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_Steamworks_SteamItemDef_t___ctor, (ArraySortHelper_1_Steamworks_SteamItemDef_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x017DE9F0, int32_t, ArraySortHelper_1_Steamworks_SteamItemDef_t__BinarySearch, (ArraySortHelper_1_Steamworks_SteamItemDef_t_ * __this, SteamItemDef_t__Array * array, int32_t index, int32_t length, SteamItemDef_t value, IComparer_1_Steamworks_SteamItemDef_t_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02DB0, ArraySortHelper_1_Steamworks_SteamItemDef_t__BinarySearch__MethodInfo); DO_APP_FUNC(0x010B17F0, void, ArraySortHelper_1_Steamworks_SteamItemDef_t__DownHeap, (SteamItemDef_t__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_Steamworks_SteamItemDef_t_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_Steamworks_SteamItemDef_t__Heapsort, (SteamItemDef_t__Array * keys, int32_t lo, int32_t hi, Comparison_1_Steamworks_SteamItemDef_t_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010B1A00, void, ArraySortHelper_1_Steamworks_SteamItemDef_t__InsertionSort, (SteamItemDef_t__Array * keys, int32_t lo, int32_t hi, Comparison_1_Steamworks_SteamItemDef_t_ * comparer, MethodInfo * method)); @@ -124209,13 +137179,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_Steamworks_SteamItemDef_t__Intro DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_Steamworks_SteamItemDef_t__IntrospectiveSort, (SteamItemDef_t__Array * keys, int32_t left, int32_t length, Comparison_1_Steamworks_SteamItemDef_t_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010B13A0, int32_t, ArraySortHelper_1_Steamworks_SteamItemDef_t__PickPivotAndPartition, (SteamItemDef_t__Array * keys, int32_t lo, int32_t hi, Comparison_1_Steamworks_SteamItemDef_t_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x017DEB60, void, ArraySortHelper_1_Steamworks_SteamItemDef_t__Sort, (SteamItemDef_t__Array * keys, int32_t index, int32_t length, Comparison_1_Steamworks_SteamItemDef_t_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02DA8, ArraySortHelper_1_Steamworks_SteamItemDef_t__Sort__MethodInfo); DO_APP_FUNC(0x017DE780, void, ArraySortHelper_1_Steamworks_SteamItemDef_t__Sort_1, (ArraySortHelper_1_Steamworks_SteamItemDef_t_ * __this, SteamItemDef_t__Array * keys, int32_t index, int32_t length, IComparer_1_Steamworks_SteamItemDef_t_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02DB8, ArraySortHelper_1_Steamworks_SteamItemDef_t__Sort_1__MethodInfo); DO_APP_FUNC(0x010B1350, void, ArraySortHelper_1_Steamworks_SteamItemDef_t__Swap, (SteamItemDef_t__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x010B1240, void, ArraySortHelper_1_Steamworks_SteamItemDef_t__SwapIfGreater, (SteamItemDef_t__Array * keys, Comparison_1_Steamworks_SteamItemDef_t_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_Steamworks_SteamItemDef_t_ *, ArraySortHelper_1_Steamworks_SteamItemDef_t__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_Steamworks_SteamItemDetails_t___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_Steamworks_SteamItemDetails_t___ctor, (ArraySortHelper_1_Steamworks_SteamItemDetails_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x017DEF50, int32_t, ArraySortHelper_1_Steamworks_SteamItemDetails_t__BinarySearch, (ArraySortHelper_1_Steamworks_SteamItemDetails_t_ * __this, SteamItemDetails_t__Array * array, int32_t index, int32_t length, SteamItemDetails_t value, IComparer_1_Steamworks_SteamItemDetails_t_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02DD8, ArraySortHelper_1_Steamworks_SteamItemDetails_t__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FB6460, void, ArraySortHelper_1_Steamworks_SteamItemDetails_t__DownHeap, (SteamItemDetails_t__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_Steamworks_SteamItemDetails_t_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_Steamworks_SteamItemDetails_t__Heapsort, (SteamItemDetails_t__Array * keys, int32_t lo, int32_t hi, Comparison_1_Steamworks_SteamItemDetails_t_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5730, void, ArraySortHelper_1_Steamworks_SteamItemDetails_t__InsertionSort, (SteamItemDetails_t__Array * keys, int32_t lo, int32_t hi, Comparison_1_Steamworks_SteamItemDetails_t_ * comparer, MethodInfo * method)); @@ -124224,13 +137197,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_Steamworks_SteamItemDetails_t__I DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_Steamworks_SteamItemDetails_t__IntrospectiveSort, (SteamItemDetails_t__Array * keys, int32_t left, int32_t length, Comparison_1_Steamworks_SteamItemDetails_t_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5FD0, int32_t, ArraySortHelper_1_Steamworks_SteamItemDetails_t__PickPivotAndPartition, (SteamItemDetails_t__Array * keys, int32_t lo, int32_t hi, Comparison_1_Steamworks_SteamItemDetails_t_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x017DF0D0, void, ArraySortHelper_1_Steamworks_SteamItemDetails_t__Sort, (SteamItemDetails_t__Array * keys, int32_t index, int32_t length, Comparison_1_Steamworks_SteamItemDetails_t_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02DD0, ArraySortHelper_1_Steamworks_SteamItemDetails_t__Sort__MethodInfo); DO_APP_FUNC(0x017DECE0, void, ArraySortHelper_1_Steamworks_SteamItemDetails_t__Sort_1, (ArraySortHelper_1_Steamworks_SteamItemDetails_t_ * __this, SteamItemDetails_t__Array * keys, int32_t index, int32_t length, IComparer_1_Steamworks_SteamItemDetails_t_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02DE0, ArraySortHelper_1_Steamworks_SteamItemDetails_t__Sort_1__MethodInfo); DO_APP_FUNC(0x00FB4FC0, void, ArraySortHelper_1_Steamworks_SteamItemDetails_t__Swap, (SteamItemDetails_t__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FB4E70, void, ArraySortHelper_1_Steamworks_SteamItemDetails_t__SwapIfGreater, (SteamItemDetails_t__Array * keys, Comparison_1_Steamworks_SteamItemDetails_t_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_Steamworks_SteamItemDetails_t_ *, ArraySortHelper_1_Steamworks_SteamItemDetails_t__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_UIElements_StylePropertyName___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_UIElements_StylePropertyName___ctor, (ArraySortHelper_1_UnityEngine_UIElements_StylePropertyName_ * __this, MethodInfo * method)); DO_APP_FUNC(0x017DF4C0, int32_t, ArraySortHelper_1_UnityEngine_UIElements_StylePropertyName__BinarySearch, (ArraySortHelper_1_UnityEngine_UIElements_StylePropertyName_ * __this, StylePropertyName__Array * array, int32_t index, int32_t length, StylePropertyName value, IComparer_1_UnityEngine_UIElements_StylePropertyName_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02E00, ArraySortHelper_1_UnityEngine_UIElements_StylePropertyName__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FBEF30, void, ArraySortHelper_1_UnityEngine_UIElements_StylePropertyName__DownHeap, (StylePropertyName__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_UIElements_StylePropertyName_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_UIElements_StylePropertyName__Heapsort, (StylePropertyName__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_StylePropertyName_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FBF200, void, ArraySortHelper_1_UnityEngine_UIElements_StylePropertyName__InsertionSort, (StylePropertyName__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_StylePropertyName_ * comparer, MethodInfo * method)); @@ -124239,13 +137215,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_UIElements_StyleProp DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_UIElements_StylePropertyName__IntrospectiveSort, (StylePropertyName__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_UIElements_StylePropertyName_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5FD0, int32_t, ArraySortHelper_1_UnityEngine_UIElements_StylePropertyName__PickPivotAndPartition, (StylePropertyName__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_StylePropertyName_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x017DF640, void, ArraySortHelper_1_UnityEngine_UIElements_StylePropertyName__Sort, (StylePropertyName__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_UIElements_StylePropertyName_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02DF8, ArraySortHelper_1_UnityEngine_UIElements_StylePropertyName__Sort__MethodInfo); DO_APP_FUNC(0x017DF250, void, ArraySortHelper_1_UnityEngine_UIElements_StylePropertyName__Sort_1, (ArraySortHelper_1_UnityEngine_UIElements_StylePropertyName_ * __this, StylePropertyName__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_UIElements_StylePropertyName_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02DC8, ArraySortHelper_1_UnityEngine_UIElements_StylePropertyName__Sort_1__MethodInfo); DO_APP_FUNC(0x00FBEDF0, void, ArraySortHelper_1_UnityEngine_UIElements_StylePropertyName__Swap, (StylePropertyName__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FBEBD0, void, ArraySortHelper_1_UnityEngine_UIElements_StylePropertyName__SwapIfGreater, (StylePropertyName__Array * keys, Comparison_1_UnityEngine_UIElements_StylePropertyName_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_UIElements_StylePropertyName_ *, ArraySortHelper_1_UnityEngine_UIElements_StylePropertyName__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue___ctor, (ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x017DFA30, int32_t, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue__BinarySearch, (ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, StylePropertyValue__Array * array, int32_t index, int32_t length, StylePropertyValue value, IComparer_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02DE8, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FC5BC0, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue__DownHeap, (StylePropertyValue__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue__Heapsort, (StylePropertyValue__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC5E90, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue__InsertionSort, (StylePropertyValue__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * comparer, MethodInfo * method)); @@ -124254,13 +137233,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_UIElements_StyleShee DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue__IntrospectiveSort, (StylePropertyValue__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5FD0, int32_t, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue__PickPivotAndPartition, (StylePropertyValue__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x017DFBB0, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue__Sort, (StylePropertyValue__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02E20, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue__Sort__MethodInfo); DO_APP_FUNC(0x017DF7C0, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue__Sort_1, (ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, StylePropertyValue__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02DF0, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue__Sort_1__MethodInfo); DO_APP_FUNC(0x00FC5A80, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue__Swap, (StylePropertyValue__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FC5860, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue__SwapIfGreater, (StylePropertyValue__Array * keys, Comparison_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ *, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSelectorPart___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSelectorPart___ctor, (ArraySortHelper_1_UnityEngine_UIElements_StyleSelectorPart_ * __this, MethodInfo * method)); DO_APP_FUNC(0x017DFFA0, int32_t, ArraySortHelper_1_UnityEngine_UIElements_StyleSelectorPart__BinarySearch, (ArraySortHelper_1_UnityEngine_UIElements_StyleSelectorPart_ * __this, StyleSelectorPart__Array * array, int32_t index, int32_t length, StyleSelectorPart value, IComparer_1_UnityEngine_UIElements_StyleSelectorPart_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02E10, ArraySortHelper_1_UnityEngine_UIElements_StyleSelectorPart__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FBFCE0, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSelectorPart__DownHeap, (StyleSelectorPart__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_UIElements_StyleSelectorPart_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSelectorPart__Heapsort, (StyleSelectorPart__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_StyleSelectorPart_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC0040, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSelectorPart__InsertionSort, (StyleSelectorPart__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_StyleSelectorPart_ * comparer, MethodInfo * method)); @@ -124269,13 +137251,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSele DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSelectorPart__IntrospectiveSort, (StyleSelectorPart__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_UIElements_StyleSelectorPart_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB71C0, int32_t, ArraySortHelper_1_UnityEngine_UIElements_StyleSelectorPart__PickPivotAndPartition, (StyleSelectorPart__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_StyleSelectorPart_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x017E0120, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSelectorPart__Sort, (StyleSelectorPart__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_UIElements_StyleSelectorPart_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02E08, ArraySortHelper_1_UnityEngine_UIElements_StyleSelectorPart__Sort__MethodInfo); DO_APP_FUNC(0x017DFD30, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSelectorPart__Sort_1, (ArraySortHelper_1_UnityEngine_UIElements_StyleSelectorPart_ * __this, StyleSelectorPart__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_UIElements_StyleSelectorPart_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02E18, ArraySortHelper_1_UnityEngine_UIElements_StyleSelectorPart__Sort_1__MethodInfo); DO_APP_FUNC(0x00FBFB80, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSelectorPart__Swap, (StyleSelectorPart__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FBF920, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSelectorPart__SwapIfGreater, (StyleSelectorPart__Array * keys, Comparison_1_UnityEngine_UIElements_StyleSelectorPart_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_UIElements_StyleSelectorPart_ *, ArraySortHelper_1_UnityEngine_UIElements_StyleSelectorPart__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken___ctor, (ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ * __this, MethodInfo * method)); DO_APP_FUNC(0x017E0510, int32_t, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__BinarySearch, (ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ * __this, StyleSyntaxToken__Array * array, int32_t index, int32_t length, StyleSyntaxToken value, IComparer_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02D38, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FC4DB0, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__DownHeap, (StyleSyntaxToken__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__Heapsort, (StyleSyntaxToken__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC5110, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__InsertionSort, (StyleSyntaxToken__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ * comparer, MethodInfo * method)); @@ -124284,13 +137269,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_UIElements_StyleShee DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__IntrospectiveSort, (StyleSyntaxToken__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB71C0, int32_t, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__PickPivotAndPartition, (StyleSyntaxToken__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x017E0690, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__Sort, (StyleSyntaxToken__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02D30, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__Sort__MethodInfo); DO_APP_FUNC(0x017E02A0, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__Sort_1, (ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ * __this, StyleSyntaxToken__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02D40, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__Sort_1__MethodInfo); DO_APP_FUNC(0x00FC4C40, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__Swap, (StyleSyntaxToken__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FC49C0, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__SwapIfGreater, (StyleSyntaxToken__Array * keys, Comparison_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ *, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_StyleValue___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_StyleValue___ctor, (ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x017E0A80, int32_t, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_StyleValue__BinarySearch, (ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * __this, StyleValue__Array * array, int32_t index, int32_t length, StyleValue value, IComparer_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02D60, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_StyleValue__BinarySearch__MethodInfo); DO_APP_FUNC(0x0109EE20, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_StyleValue__DownHeap, (StyleValue__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_StyleValue__Heapsort, (StyleValue__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0109F100, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_StyleValue__InsertionSort, (StyleValue__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * comparer, MethodInfo * method)); @@ -124299,13 +137287,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_UIElements_StyleShee DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_StyleValue__IntrospectiveSort, (StyleValue__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB71C0, int32_t, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_StyleValue__PickPivotAndPartition, (StyleValue__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x017E0C00, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_StyleValue__Sort, (StyleValue__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02D58, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_StyleValue__Sort__MethodInfo); DO_APP_FUNC(0x017E0810, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_StyleValue__Sort_1, (ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * __this, StyleValue__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02D28, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_StyleValue__Sort_1__MethodInfo); DO_APP_FUNC(0x0109EDA0, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_StyleValue__Swap, (StyleValue__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x0109EC10, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_StyleValue__SwapIfGreater, (StyleValue__Array * keys, Comparison_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_StyleValue_ *, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_StyleValue__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged___ctor, (ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged_ * __this, MethodInfo * method)); DO_APP_FUNC(0x017E0FF0, int32_t, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged__BinarySearch, (ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged_ * __this, StyleValueManaged__Array * array, int32_t index, int32_t length, StyleValueManaged value, IComparer_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02D48, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FBEF30, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged__DownHeap, (StyleValueManaged__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged__Heapsort, (StyleValueManaged__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FBF200, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged__InsertionSort, (StyleValueManaged__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged_ * comparer, MethodInfo * method)); @@ -124314,13 +137305,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_UIElements_StyleShee DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged__IntrospectiveSort, (StyleValueManaged__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5FD0, int32_t, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged__PickPivotAndPartition, (StyleValueManaged__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x017E1170, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged__Sort, (StyleValueManaged__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02D80, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged__Sort__MethodInfo); DO_APP_FUNC(0x017E0D80, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged__Sort_1, (ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged_ * __this, StyleValueManaged__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02D50, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged__Sort_1__MethodInfo); DO_APP_FUNC(0x00FBEDF0, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged__Swap, (StyleValueManaged__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FBEBD0, void, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged__SwapIfGreater, (StyleValueManaged__Array * keys, Comparison_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged_ *, ArraySortHelper_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_UIElements_StyleVariable___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_UIElements_StyleVariable___ctor, (ArraySortHelper_1_UnityEngine_UIElements_StyleVariable_ * __this, MethodInfo * method)); DO_APP_FUNC(0x017E1560, int32_t, ArraySortHelper_1_UnityEngine_UIElements_StyleVariable__BinarySearch, (ArraySortHelper_1_UnityEngine_UIElements_StyleVariable_ * __this, StyleVariable__Array * array, int32_t index, int32_t length, StyleVariable value, IComparer_1_UnityEngine_UIElements_StyleVariable_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02D70, ArraySortHelper_1_UnityEngine_UIElements_StyleVariable__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FBFCE0, void, ArraySortHelper_1_UnityEngine_UIElements_StyleVariable__DownHeap, (StyleVariable__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_UIElements_StyleVariable_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_UIElements_StyleVariable__Heapsort, (StyleVariable__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_StyleVariable_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC0040, void, ArraySortHelper_1_UnityEngine_UIElements_StyleVariable__InsertionSort, (StyleVariable__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_StyleVariable_ * comparer, MethodInfo * method)); @@ -124329,13 +137323,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_UIElements_StyleVari DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_UIElements_StyleVariable__IntrospectiveSort, (StyleVariable__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_UIElements_StyleVariable_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB71C0, int32_t, ArraySortHelper_1_UnityEngine_UIElements_StyleVariable__PickPivotAndPartition, (StyleVariable__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_StyleVariable_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x017E16E0, void, ArraySortHelper_1_UnityEngine_UIElements_StyleVariable__Sort, (StyleVariable__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_UIElements_StyleVariable_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02D68, ArraySortHelper_1_UnityEngine_UIElements_StyleVariable__Sort__MethodInfo); DO_APP_FUNC(0x017E12F0, void, ArraySortHelper_1_UnityEngine_UIElements_StyleVariable__Sort_1, (ArraySortHelper_1_UnityEngine_UIElements_StyleVariable_ * __this, StyleVariable__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_UIElements_StyleVariable_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02D78, ArraySortHelper_1_UnityEngine_UIElements_StyleVariable__Sort_1__MethodInfo); DO_APP_FUNC(0x00FBFB80, void, ArraySortHelper_1_UnityEngine_UIElements_StyleVariable__Swap, (StyleVariable__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FBF920, void, ArraySortHelper_1_UnityEngine_UIElements_StyleVariable__SwapIfGreater, (StyleVariable__Array * keys, Comparison_1_UnityEngine_UIElements_StyleVariable_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_UIElements_StyleVariable_ *, ArraySortHelper_1_UnityEngine_UIElements_StyleVariable__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_Rendering_SubMeshDescriptor___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_Rendering_SubMeshDescriptor___ctor, (ArraySortHelper_1_UnityEngine_Rendering_SubMeshDescriptor_ * __this, MethodInfo * method)); DO_APP_FUNC(0x017E1AD0, int32_t, ArraySortHelper_1_UnityEngine_Rendering_SubMeshDescriptor__BinarySearch, (ArraySortHelper_1_UnityEngine_Rendering_SubMeshDescriptor_ * __this, SubMeshDescriptor__Array * array, int32_t index, int32_t length, SubMeshDescriptor value, IComparer_1_UnityEngine_Rendering_SubMeshDescriptor_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02D98, ArraySortHelper_1_UnityEngine_Rendering_SubMeshDescriptor__BinarySearch__MethodInfo); DO_APP_FUNC(0x017E2070, void, ArraySortHelper_1_UnityEngine_Rendering_SubMeshDescriptor__DownHeap, (SubMeshDescriptor__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_Rendering_SubMeshDescriptor_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_Rendering_SubMeshDescriptor__Heapsort, (SubMeshDescriptor__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Rendering_SubMeshDescriptor_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x017E2400, void, ArraySortHelper_1_UnityEngine_Rendering_SubMeshDescriptor__InsertionSort, (SubMeshDescriptor__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Rendering_SubMeshDescriptor_ * comparer, MethodInfo * method)); @@ -124344,13 +137341,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_Rendering_SubMeshDes DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_Rendering_SubMeshDescriptor__IntrospectiveSort, (SubMeshDescriptor__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_Rendering_SubMeshDescriptor_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01733AE0, int32_t, ArraySortHelper_1_UnityEngine_Rendering_SubMeshDescriptor__PickPivotAndPartition, (SubMeshDescriptor__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Rendering_SubMeshDescriptor_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x017E1C60, void, ArraySortHelper_1_UnityEngine_Rendering_SubMeshDescriptor__Sort, (SubMeshDescriptor__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_Rendering_SubMeshDescriptor_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02D90, ArraySortHelper_1_UnityEngine_Rendering_SubMeshDescriptor__Sort__MethodInfo); DO_APP_FUNC(0x017E1860, void, ArraySortHelper_1_UnityEngine_Rendering_SubMeshDescriptor__Sort_1, (ArraySortHelper_1_UnityEngine_Rendering_SubMeshDescriptor_ * __this, SubMeshDescriptor__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_Rendering_SubMeshDescriptor_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02DA0, ArraySortHelper_1_UnityEngine_Rendering_SubMeshDescriptor__Sort_1__MethodInfo); DO_APP_FUNC(0x017E1FD0, void, ArraySortHelper_1_UnityEngine_Rendering_SubMeshDescriptor__Swap, (SubMeshDescriptor__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x017E1DE0, void, ArraySortHelper_1_UnityEngine_Rendering_SubMeshDescriptor__SwapIfGreater, (SubMeshDescriptor__Array * keys, Comparison_1_UnityEngine_Rendering_SubMeshDescriptor_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_Rendering_SubMeshDescriptor_ *, ArraySortHelper_1_UnityEngine_Rendering_SubMeshDescriptor__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_InputSystem_Utilities_Substring___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_InputSystem_Utilities_Substring___ctor, (ArraySortHelper_1_UnityEngine_InputSystem_Utilities_Substring_ * __this, MethodInfo * method)); DO_APP_FUNC(0x017E28B0, int32_t, ArraySortHelper_1_UnityEngine_InputSystem_Utilities_Substring__BinarySearch, (ArraySortHelper_1_UnityEngine_InputSystem_Utilities_Substring_ * __this, Substring__Array * array, int32_t index, int32_t length, Substring value, IComparer_1_UnityEngine_InputSystem_Utilities_Substring_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02CC0, ArraySortHelper_1_UnityEngine_InputSystem_Utilities_Substring__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FC5BC0, void, ArraySortHelper_1_UnityEngine_InputSystem_Utilities_Substring__DownHeap, (Substring__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_InputSystem_Utilities_Substring_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_InputSystem_Utilities_Substring__Heapsort, (Substring__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_InputSystem_Utilities_Substring_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC5E90, void, ArraySortHelper_1_UnityEngine_InputSystem_Utilities_Substring__InsertionSort, (Substring__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_InputSystem_Utilities_Substring_ * comparer, MethodInfo * method)); @@ -124359,13 +137359,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_InputSystem_Utilitie DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_InputSystem_Utilities_Substring__IntrospectiveSort, (Substring__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_InputSystem_Utilities_Substring_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5FD0, int32_t, ArraySortHelper_1_UnityEngine_InputSystem_Utilities_Substring__PickPivotAndPartition, (Substring__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_InputSystem_Utilities_Substring_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x017E2A30, void, ArraySortHelper_1_UnityEngine_InputSystem_Utilities_Substring__Sort, (Substring__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_InputSystem_Utilities_Substring_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02CB8, ArraySortHelper_1_UnityEngine_InputSystem_Utilities_Substring__Sort__MethodInfo); DO_APP_FUNC(0x017E2640, void, ArraySortHelper_1_UnityEngine_InputSystem_Utilities_Substring__Sort_1, (ArraySortHelper_1_UnityEngine_InputSystem_Utilities_Substring_ * __this, Substring__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_InputSystem_Utilities_Substring_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02D88, ArraySortHelper_1_UnityEngine_InputSystem_Utilities_Substring__Sort_1__MethodInfo); DO_APP_FUNC(0x00FC5A80, void, ArraySortHelper_1_UnityEngine_InputSystem_Utilities_Substring__Swap, (Substring__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FC5860, void, ArraySortHelper_1_UnityEngine_InputSystem_Utilities_Substring__SwapIfGreater, (Substring__Array * keys, Comparison_1_UnityEngine_InputSystem_Utilities_Substring_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_InputSystem_Utilities_Substring_ *, ArraySortHelper_1_UnityEngine_InputSystem_Utilities_Substring__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_System_TimeSpan___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_System_TimeSpan___ctor, (ArraySortHelper_1_System_TimeSpan_ * __this, MethodInfo * method)); DO_APP_FUNC(0x017E2E20, int32_t, ArraySortHelper_1_System_TimeSpan__BinarySearch, (ArraySortHelper_1_System_TimeSpan_ * __this, TimeSpan__Array * array, int32_t index, int32_t length, TimeSpan value, IComparer_1_System_TimeSpan_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02CA8, ArraySortHelper_1_System_TimeSpan__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FC40D0, void, ArraySortHelper_1_System_TimeSpan__DownHeap, (TimeSpan__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_TimeSpan_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_System_TimeSpan__Heapsort, (TimeSpan__Array * keys, int32_t lo, int32_t hi, Comparison_1_TimeSpan_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC42E0, void, ArraySortHelper_1_System_TimeSpan__InsertionSort, (TimeSpan__Array * keys, int32_t lo, int32_t hi, Comparison_1_TimeSpan_ * comparer, MethodInfo * method)); @@ -124374,13 +137377,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_System_TimeSpan__IntroSort, (Tim DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_System_TimeSpan__IntrospectiveSort, (TimeSpan__Array * keys, int32_t left, int32_t length, Comparison_1_TimeSpan_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC3C80, int32_t, ArraySortHelper_1_System_TimeSpan__PickPivotAndPartition, (TimeSpan__Array * keys, int32_t lo, int32_t hi, Comparison_1_TimeSpan_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x017E2F90, void, ArraySortHelper_1_System_TimeSpan__Sort, (TimeSpan__Array * keys, int32_t index, int32_t length, Comparison_1_TimeSpan_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02CE0, ArraySortHelper_1_System_TimeSpan__Sort__MethodInfo); DO_APP_FUNC(0x017E2BB0, void, ArraySortHelper_1_System_TimeSpan__Sort_1, (ArraySortHelper_1_System_TimeSpan_ * __this, TimeSpan__Array * keys, int32_t index, int32_t length, IComparer_1_System_TimeSpan_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02CB0, ArraySortHelper_1_System_TimeSpan__Sort_1__MethodInfo); DO_APP_FUNC(0x00FC3C30, void, ArraySortHelper_1_System_TimeSpan__Swap, (TimeSpan__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FC3B20, void, ArraySortHelper_1_System_TimeSpan__SwapIfGreater, (TimeSpan__Array * keys, Comparison_1_TimeSpan_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_System_TimeSpan_ *, ArraySortHelper_1_System_TimeSpan__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_UIElements_TimeValue___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_UIElements_TimeValue___ctor, (ArraySortHelper_1_UnityEngine_UIElements_TimeValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x017E3380, int32_t, ArraySortHelper_1_UnityEngine_UIElements_TimeValue__BinarySearch, (ArraySortHelper_1_UnityEngine_UIElements_TimeValue_ * __this, TimeValue__Array * array, int32_t index, int32_t length, TimeValue value, IComparer_1_UnityEngine_UIElements_TimeValue_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02CD0, ArraySortHelper_1_UnityEngine_UIElements_TimeValue__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FC40D0, void, ArraySortHelper_1_UnityEngine_UIElements_TimeValue__DownHeap, (TimeValue__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_UIElements_TimeValue_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_UIElements_TimeValue__Heapsort, (TimeValue__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_TimeValue_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC42E0, void, ArraySortHelper_1_UnityEngine_UIElements_TimeValue__InsertionSort, (TimeValue__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_TimeValue_ * comparer, MethodInfo * method)); @@ -124389,13 +137395,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_UIElements_TimeValue DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_UIElements_TimeValue__IntrospectiveSort, (TimeValue__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_UIElements_TimeValue_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC3C80, int32_t, ArraySortHelper_1_UnityEngine_UIElements_TimeValue__PickPivotAndPartition, (TimeValue__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_TimeValue_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x017E34F0, void, ArraySortHelper_1_UnityEngine_UIElements_TimeValue__Sort, (TimeValue__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_UIElements_TimeValue_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02CC8, ArraySortHelper_1_UnityEngine_UIElements_TimeValue__Sort__MethodInfo); DO_APP_FUNC(0x017E3110, void, ArraySortHelper_1_UnityEngine_UIElements_TimeValue__Sort_1, (ArraySortHelper_1_UnityEngine_UIElements_TimeValue_ * __this, TimeValue__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_UIElements_TimeValue_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02CD8, ArraySortHelper_1_UnityEngine_UIElements_TimeValue__Sort_1__MethodInfo); DO_APP_FUNC(0x00FC3C30, void, ArraySortHelper_1_UnityEngine_UIElements_TimeValue__Swap, (TimeValue__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FC3B20, void, ArraySortHelper_1_UnityEngine_UIElements_TimeValue__SwapIfGreater, (TimeValue__Array * keys, Comparison_1_UnityEngine_UIElements_TimeValue_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_UIElements_TimeValue_ *, ArraySortHelper_1_UnityEngine_UIElements_TimeValue__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_UIElements_TreeViewItemWrapper___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_UIElements_TreeViewItemWrapper___ctor, (ArraySortHelper_1_UnityEngine_UIElements_TreeViewItemWrapper_ * __this, MethodInfo * method)); DO_APP_FUNC(0x017E38E0, int32_t, ArraySortHelper_1_UnityEngine_UIElements_TreeViewItemWrapper__BinarySearch, (ArraySortHelper_1_UnityEngine_UIElements_TreeViewItemWrapper_ * __this, TreeViewItemWrapper__Array * array, int32_t index, int32_t length, TreeViewItemWrapper value, IComparer_1_UnityEngine_UIElements_TreeViewItemWrapper_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02CF8, ArraySortHelper_1_UnityEngine_UIElements_TreeViewItemWrapper__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FC4DB0, void, ArraySortHelper_1_UnityEngine_UIElements_TreeViewItemWrapper__DownHeap, (TreeViewItemWrapper__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_UIElements_TreeViewItemWrapper_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_UIElements_TreeViewItemWrapper__Heapsort, (TreeViewItemWrapper__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_TreeViewItemWrapper_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC5110, void, ArraySortHelper_1_UnityEngine_UIElements_TreeViewItemWrapper__InsertionSort, (TreeViewItemWrapper__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_TreeViewItemWrapper_ * comparer, MethodInfo * method)); @@ -124404,13 +137413,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_UIElements_TreeViewI DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_UIElements_TreeViewItemWrapper__IntrospectiveSort, (TreeViewItemWrapper__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_UIElements_TreeViewItemWrapper_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB71C0, int32_t, ArraySortHelper_1_UnityEngine_UIElements_TreeViewItemWrapper__PickPivotAndPartition, (TreeViewItemWrapper__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_TreeViewItemWrapper_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x017E3A60, void, ArraySortHelper_1_UnityEngine_UIElements_TreeViewItemWrapper__Sort, (TreeViewItemWrapper__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_UIElements_TreeViewItemWrapper_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02CF0, ArraySortHelper_1_UnityEngine_UIElements_TreeViewItemWrapper__Sort__MethodInfo); DO_APP_FUNC(0x017E3670, void, ArraySortHelper_1_UnityEngine_UIElements_TreeViewItemWrapper__Sort_1, (ArraySortHelper_1_UnityEngine_UIElements_TreeViewItemWrapper_ * __this, TreeViewItemWrapper__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_UIElements_TreeViewItemWrapper_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02D00, ArraySortHelper_1_UnityEngine_UIElements_TreeViewItemWrapper__Sort_1__MethodInfo); DO_APP_FUNC(0x00FC4C40, void, ArraySortHelper_1_UnityEngine_UIElements_TreeViewItemWrapper__Swap, (TreeViewItemWrapper__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FC49C0, void, ArraySortHelper_1_UnityEngine_UIElements_TreeViewItemWrapper__SwapIfGreater, (TreeViewItemWrapper__Array * keys, Comparison_1_UnityEngine_UIElements_TreeViewItemWrapper_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_UIElements_TreeViewItemWrapper_ *, ArraySortHelper_1_UnityEngine_UIElements_TreeViewItemWrapper__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_Rewired_Utils_Classes_Data_TypeWrapper___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_Rewired_Utils_Classes_Data_TypeWrapper___ctor, (ArraySortHelper_1_Rewired_Utils_Classes_Data_TypeWrapper_ * __this, MethodInfo * method)); DO_APP_FUNC(0x017E3E50, int32_t, ArraySortHelper_1_Rewired_Utils_Classes_Data_TypeWrapper__BinarySearch, (ArraySortHelper_1_Rewired_Utils_Classes_Data_TypeWrapper_ * __this, TypeWrapper__Array * array, int32_t index, int32_t length, TypeWrapper value, IComparer_1_Rewired_Utils_Classes_Data_TypeWrapper_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02D20, ArraySortHelper_1_Rewired_Utils_Classes_Data_TypeWrapper__BinarySearch__MethodInfo); DO_APP_FUNC(0x011AD020, void, ArraySortHelper_1_Rewired_Utils_Classes_Data_TypeWrapper__DownHeap, (TypeWrapper__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_Rewired_Utils_Classes_Data_TypeWrapper_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_Rewired_Utils_Classes_Data_TypeWrapper__Heapsort, (TypeWrapper__Array * keys, int32_t lo, int32_t hi, Comparison_1_Rewired_Utils_Classes_Data_TypeWrapper_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x011AD370, void, ArraySortHelper_1_Rewired_Utils_Classes_Data_TypeWrapper__InsertionSort, (TypeWrapper__Array * keys, int32_t lo, int32_t hi, Comparison_1_Rewired_Utils_Classes_Data_TypeWrapper_ * comparer, MethodInfo * method)); @@ -124419,13 +137431,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_Rewired_Utils_Classes_Data_TypeW DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_Rewired_Utils_Classes_Data_TypeWrapper__IntrospectiveSort, (TypeWrapper__Array * keys, int32_t left, int32_t length, Comparison_1_Rewired_Utils_Classes_Data_TypeWrapper_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB9EF0, int32_t, ArraySortHelper_1_Rewired_Utils_Classes_Data_TypeWrapper__PickPivotAndPartition, (TypeWrapper__Array * keys, int32_t lo, int32_t hi, Comparison_1_Rewired_Utils_Classes_Data_TypeWrapper_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x017E3FD0, void, ArraySortHelper_1_Rewired_Utils_Classes_Data_TypeWrapper__Sort, (TypeWrapper__Array * keys, int32_t index, int32_t length, Comparison_1_Rewired_Utils_Classes_Data_TypeWrapper_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02D18, ArraySortHelper_1_Rewired_Utils_Classes_Data_TypeWrapper__Sort__MethodInfo); DO_APP_FUNC(0x017E3BE0, void, ArraySortHelper_1_Rewired_Utils_Classes_Data_TypeWrapper__Sort_1, (ArraySortHelper_1_Rewired_Utils_Classes_Data_TypeWrapper_ * __this, TypeWrapper__Array * keys, int32_t index, int32_t length, IComparer_1_Rewired_Utils_Classes_Data_TypeWrapper_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02CE8, ArraySortHelper_1_Rewired_Utils_Classes_Data_TypeWrapper__Sort_1__MethodInfo); DO_APP_FUNC(0x011ACEC0, void, ArraySortHelper_1_Rewired_Utils_Classes_Data_TypeWrapper__Swap, (TypeWrapper__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x011ACC40, void, ArraySortHelper_1_Rewired_Utils_Classes_Data_TypeWrapper__SwapIfGreater, (TypeWrapper__Array * keys, Comparison_1_Rewired_Utils_Classes_Data_TypeWrapper_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_Rewired_Utils_Classes_Data_TypeWrapper_ *, ArraySortHelper_1_Rewired_Utils_Classes_Data_TypeWrapper__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_UICharInfo___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_UICharInfo___ctor, (ArraySortHelper_1_UnityEngine_UICharInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x017E43C0, int32_t, ArraySortHelper_1_UnityEngine_UICharInfo__BinarySearch, (ArraySortHelper_1_UnityEngine_UICharInfo_ * __this, UICharInfo__Array * array, int32_t index, int32_t length, UICharInfo value, IComparer_1_UnityEngine_UICharInfo_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02D08, ArraySortHelper_1_UnityEngine_UICharInfo__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FB42A0, void, ArraySortHelper_1_UnityEngine_UICharInfo__DownHeap, (UICharInfo__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_UICharInfo_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_UICharInfo__Heapsort, (UICharInfo__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UICharInfo_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB4580, void, ArraySortHelper_1_UnityEngine_UICharInfo__InsertionSort, (UICharInfo__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UICharInfo_ * comparer, MethodInfo * method)); @@ -124434,13 +137449,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_UICharInfo__IntroSor DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_UICharInfo__IntrospectiveSort, (UICharInfo__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_UICharInfo_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB3DC0, int32_t, ArraySortHelper_1_UnityEngine_UICharInfo__PickPivotAndPartition, (UICharInfo__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UICharInfo_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x017E4540, void, ArraySortHelper_1_UnityEngine_UICharInfo__Sort, (UICharInfo__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_UICharInfo_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02C40, ArraySortHelper_1_UnityEngine_UICharInfo__Sort__MethodInfo); DO_APP_FUNC(0x017E4150, void, ArraySortHelper_1_UnityEngine_UICharInfo__Sort_1, (ArraySortHelper_1_UnityEngine_UICharInfo_ * __this, UICharInfo__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_UICharInfo_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02D10, ArraySortHelper_1_UnityEngine_UICharInfo__Sort_1__MethodInfo); DO_APP_FUNC(0x00FB3D40, void, ArraySortHelper_1_UnityEngine_UICharInfo__Swap, (UICharInfo__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FB3BC0, void, ArraySortHelper_1_UnityEngine_UICharInfo__SwapIfGreater, (UICharInfo__Array * keys, Comparison_1_UnityEngine_UICharInfo_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_UICharInfo_ *, ArraySortHelper_1_UnityEngine_UICharInfo__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_UILineInfo___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_UILineInfo___ctor, (ArraySortHelper_1_UnityEngine_UILineInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x017E4930, int32_t, ArraySortHelper_1_UnityEngine_UILineInfo__BinarySearch, (ArraySortHelper_1_UnityEngine_UILineInfo_ * __this, UILineInfo__Array * array, int32_t index, int32_t length, UILineInfo value, IComparer_1_UnityEngine_UILineInfo_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02C30, ArraySortHelper_1_UnityEngine_UILineInfo__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FB6460, void, ArraySortHelper_1_UnityEngine_UILineInfo__DownHeap, (UILineInfo__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_UILineInfo_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_UILineInfo__Heapsort, (UILineInfo__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UILineInfo_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5730, void, ArraySortHelper_1_UnityEngine_UILineInfo__InsertionSort, (UILineInfo__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UILineInfo_ * comparer, MethodInfo * method)); @@ -124449,13 +137467,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_UILineInfo__IntroSor DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_UILineInfo__IntrospectiveSort, (UILineInfo__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_UILineInfo_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5FD0, int32_t, ArraySortHelper_1_UnityEngine_UILineInfo__PickPivotAndPartition, (UILineInfo__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UILineInfo_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x017E4AB0, void, ArraySortHelper_1_UnityEngine_UILineInfo__Sort, (UILineInfo__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_UILineInfo_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02C28, ArraySortHelper_1_UnityEngine_UILineInfo__Sort__MethodInfo); DO_APP_FUNC(0x017E46C0, void, ArraySortHelper_1_UnityEngine_UILineInfo__Sort_1, (ArraySortHelper_1_UnityEngine_UILineInfo_ * __this, UILineInfo__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_UILineInfo_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02C38, ArraySortHelper_1_UnityEngine_UILineInfo__Sort_1__MethodInfo); DO_APP_FUNC(0x00FB4FC0, void, ArraySortHelper_1_UnityEngine_UILineInfo__Swap, (UILineInfo__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FB4E70, void, ArraySortHelper_1_UnityEngine_UILineInfo__SwapIfGreater, (UILineInfo__Array * keys, Comparison_1_UnityEngine_UILineInfo_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_UILineInfo_ *, ArraySortHelper_1_UnityEngine_UILineInfo__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_UIVertex___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_UIVertex___ctor, (ArraySortHelper_1_UnityEngine_UIVertex_ * __this, MethodInfo * method)); DO_APP_FUNC(0x017E4EA0, int32_t, ArraySortHelper_1_UnityEngine_UIVertex__BinarySearch, (ArraySortHelper_1_UnityEngine_UIVertex_ * __this, UIVertex__Array * array, int32_t index, int32_t length, UIVertex value, IComparer_1_UnityEngine_UIVertex_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02C58, ArraySortHelper_1_UnityEngine_UIVertex__BinarySearch__MethodInfo); DO_APP_FUNC(0x017E6030, void, ArraySortHelper_1_UnityEngine_UIVertex__DownHeap, (UIVertex__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_UIVertex_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_UIVertex__Heapsort, (UIVertex__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIVertex_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x017E65A0, void, ArraySortHelper_1_UnityEngine_UIVertex__InsertionSort, (UIVertex__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIVertex_ * comparer, MethodInfo * method)); @@ -124464,13 +137485,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_UIVertex__IntroSort, DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_UIVertex__IntrospectiveSort, (UIVertex__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_UIVertex_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x017E5990, int32_t, ArraySortHelper_1_UnityEngine_UIVertex__PickPivotAndPartition, (UIVertex__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIVertex_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x017E5070, void, ArraySortHelper_1_UnityEngine_UIVertex__Sort, (UIVertex__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_UIVertex_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02C50, ArraySortHelper_1_UnityEngine_UIVertex__Sort__MethodInfo); DO_APP_FUNC(0x017E4C30, void, ArraySortHelper_1_UnityEngine_UIVertex__Sort_1, (ArraySortHelper_1_UnityEngine_UIVertex_ * __this, UIVertex__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_UIVertex_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02C60, ArraySortHelper_1_UnityEngine_UIVertex__Sort_1__MethodInfo); DO_APP_FUNC(0x017E5840, void, ArraySortHelper_1_UnityEngine_UIVertex__Swap, (UIVertex__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x017E54A0, void, ArraySortHelper_1_UnityEngine_UIVertex__SwapIfGreater, (UIVertex__Array * keys, Comparison_1_UnityEngine_UIVertex_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_UIVertex_ *, ArraySortHelper_1_UnityEngine_UIVertex__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_System_UInt16___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_System_UInt16___ctor, (ArraySortHelper_1_System_UInt16_ * __this, MethodInfo * method)); DO_APP_FUNC(0x017E6BF0, int32_t, ArraySortHelper_1_System_UInt16__BinarySearch, (ArraySortHelper_1_System_UInt16_ * __this, UInt16__Array * array, int32_t index, int32_t length, uint16_t value, IComparer_1_System_UInt16_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02C80, ArraySortHelper_1_System_UInt16__BinarySearch__MethodInfo); DO_APP_FUNC(0x01663120, void, ArraySortHelper_1_System_UInt16__DownHeap, (UInt16__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UInt16_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_System_UInt16__Heapsort, (UInt16__Array * keys, int32_t lo, int32_t hi, Comparison_1_UInt16_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01663320, void, ArraySortHelper_1_System_UInt16__InsertionSort, (UInt16__Array * keys, int32_t lo, int32_t hi, Comparison_1_UInt16_ * comparer, MethodInfo * method)); @@ -124479,13 +137503,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_System_UInt16__IntroSort, (UInt1 DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_System_UInt16__IntrospectiveSort, (UInt16__Array * keys, int32_t left, int32_t length, Comparison_1_UInt16_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01662CD0, int32_t, ArraySortHelper_1_System_UInt16__PickPivotAndPartition, (UInt16__Array * keys, int32_t lo, int32_t hi, Comparison_1_UInt16_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x017E6D60, void, ArraySortHelper_1_System_UInt16__Sort, (UInt16__Array * keys, int32_t index, int32_t length, Comparison_1_UInt16_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02C78, ArraySortHelper_1_System_UInt16__Sort__MethodInfo); DO_APP_FUNC(0x017E6980, void, ArraySortHelper_1_System_UInt16__Sort_1, (ArraySortHelper_1_System_UInt16_ * __this, UInt16__Array * keys, int32_t index, int32_t length, IComparer_1_System_UInt16_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02C48, ArraySortHelper_1_System_UInt16__Sort_1__MethodInfo); DO_APP_FUNC(0x01662C70, void, ArraySortHelper_1_System_UInt16__Swap, (UInt16__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x01662B60, void, ArraySortHelper_1_System_UInt16__SwapIfGreater, (UInt16__Array * keys, Comparison_1_UInt16_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_System_UInt16_ *, ArraySortHelper_1_System_UInt16__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_System_UInt32___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_System_UInt32___ctor, (ArraySortHelper_1_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x017E7150, int32_t, ArraySortHelper_1_System_UInt32__BinarySearch, (ArraySortHelper_1_System_UInt32_ * __this, UInt32__Array * array, int32_t index, int32_t length, uint32_t value, IComparer_1_System_UInt32_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02C68, ArraySortHelper_1_System_UInt32__BinarySearch__MethodInfo); DO_APP_FUNC(0x0173DEF0, void, ArraySortHelper_1_System_UInt32__DownHeap, (UInt32__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UInt32_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_System_UInt32__Heapsort, (UInt32__Array * keys, int32_t lo, int32_t hi, Comparison_1_UInt32_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0173E0F0, void, ArraySortHelper_1_System_UInt32__InsertionSort, (UInt32__Array * keys, int32_t lo, int32_t hi, Comparison_1_UInt32_ * comparer, MethodInfo * method)); @@ -124494,13 +137521,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_System_UInt32__IntroSort, (UInt3 DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_System_UInt32__IntrospectiveSort, (UInt32__Array * keys, int32_t left, int32_t length, Comparison_1_UInt32_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0173DAB0, int32_t, ArraySortHelper_1_System_UInt32__PickPivotAndPartition, (UInt32__Array * keys, int32_t lo, int32_t hi, Comparison_1_UInt32_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x017E72C0, void, ArraySortHelper_1_System_UInt32__Sort, (UInt32__Array * keys, int32_t index, int32_t length, Comparison_1_UInt32_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02CA0, ArraySortHelper_1_System_UInt32__Sort__MethodInfo); DO_APP_FUNC(0x017E6EE0, void, ArraySortHelper_1_System_UInt32__Sort_1, (ArraySortHelper_1_System_UInt32_ * __this, UInt32__Array * keys, int32_t index, int32_t length, IComparer_1_System_UInt32_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02C70, ArraySortHelper_1_System_UInt32__Sort_1__MethodInfo); DO_APP_FUNC(0x0173DA50, void, ArraySortHelper_1_System_UInt32__Swap, (UInt32__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x0173D940, void, ArraySortHelper_1_System_UInt32__SwapIfGreater, (UInt32__Array * keys, Comparison_1_UInt32_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_System_UInt32_ *, ArraySortHelper_1_System_UInt32__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_System_UInt64___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_System_UInt64___ctor, (ArraySortHelper_1_System_UInt64_ * __this, MethodInfo * method)); DO_APP_FUNC(0x017E76B0, int32_t, ArraySortHelper_1_System_UInt64__BinarySearch, (ArraySortHelper_1_System_UInt64_ * __this, UInt64__Array * array, int32_t index, int32_t length, uint64_t value, IComparer_1_System_UInt64_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02C90, ArraySortHelper_1_System_UInt64__BinarySearch__MethodInfo); DO_APP_FUNC(0x0173F430, void, ArraySortHelper_1_System_UInt64__DownHeap, (UInt64__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UInt64_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_System_UInt64__Heapsort, (UInt64__Array * keys, int32_t lo, int32_t hi, Comparison_1_UInt64_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0173F630, void, ArraySortHelper_1_System_UInt64__InsertionSort, (UInt64__Array * keys, int32_t lo, int32_t hi, Comparison_1_UInt64_ * comparer, MethodInfo * method)); @@ -124509,13 +137539,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_System_UInt64__IntroSort, (UInt6 DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_System_UInt64__IntrospectiveSort, (UInt64__Array * keys, int32_t left, int32_t length, Comparison_1_UInt64_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0173EFF0, int32_t, ArraySortHelper_1_System_UInt64__PickPivotAndPartition, (UInt64__Array * keys, int32_t lo, int32_t hi, Comparison_1_UInt64_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x017E7820, void, ArraySortHelper_1_System_UInt64__Sort, (UInt64__Array * keys, int32_t index, int32_t length, Comparison_1_UInt64_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02C88, ArraySortHelper_1_System_UInt64__Sort__MethodInfo); DO_APP_FUNC(0x017E7440, void, ArraySortHelper_1_System_UInt64__Sort_1, (ArraySortHelper_1_System_UInt64_ * __this, UInt64__Array * keys, int32_t index, int32_t length, IComparer_1_System_UInt64_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02C98, ArraySortHelper_1_System_UInt64__Sort_1__MethodInfo); DO_APP_FUNC(0x0173EF90, void, ArraySortHelper_1_System_UInt64__Swap, (UInt64__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x0173EE80, void, ArraySortHelper_1_System_UInt64__SwapIfGreater, (UInt64__Array * keys, Comparison_1_UInt64_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_System_UInt64_ *, ArraySortHelper_1_System_UInt64__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture___ctor, (ArraySortHelper_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ * __this, MethodInfo * method)); DO_APP_FUNC(0x017E7C10, int32_t, ArraySortHelper_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__BinarySearch, (ArraySortHelper_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ * __this, UVTexture__Array * array, int32_t index, int32_t length, UVTexture value, IComparer_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02BD8, ArraySortHelper_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FBFCE0, void, ArraySortHelper_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__DownHeap, (UVTexture__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__Heapsort, (UVTexture__Array * keys, int32_t lo, int32_t hi, Comparison_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC0040, void, ArraySortHelper_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__InsertionSort, (UVTexture__Array * keys, int32_t lo, int32_t hi, Comparison_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ * comparer, MethodInfo * method)); @@ -124524,13 +137557,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_Opsive_UltimateCharacterControll DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__IntrospectiveSort, (UVTexture__Array * keys, int32_t left, int32_t length, Comparison_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB71C0, int32_t, ArraySortHelper_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__PickPivotAndPartition, (UVTexture__Array * keys, int32_t lo, int32_t hi, Comparison_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x017E7D90, void, ArraySortHelper_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__Sort, (UVTexture__Array * keys, int32_t index, int32_t length, Comparison_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02BD0, ArraySortHelper_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__Sort__MethodInfo); DO_APP_FUNC(0x017E79A0, void, ArraySortHelper_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__Sort_1, (ArraySortHelper_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ * __this, UVTexture__Array * keys, int32_t index, int32_t length, IComparer_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02BE0, ArraySortHelper_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__Sort_1__MethodInfo); DO_APP_FUNC(0x00FBFB80, void, ArraySortHelper_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__Swap, (UVTexture__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FBF920, void, ArraySortHelper_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__SwapIfGreater, (UVTexture__Array * keys, Comparison_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ *, ArraySortHelper_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UdpKit_UdpEndPoint___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UdpKit_UdpEndPoint___ctor, (ArraySortHelper_1_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); DO_APP_FUNC(0x017E8180, int32_t, ArraySortHelper_1_UdpKit_UdpEndPoint__BinarySearch, (ArraySortHelper_1_UdpKit_UdpEndPoint_ * __this, UdpEndPoint__Array * array, int32_t index, int32_t length, UdpEndPoint value, IComparer_1_UdpKit_UdpEndPoint_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02C00, ArraySortHelper_1_UdpKit_UdpEndPoint__BinarySearch__MethodInfo); DO_APP_FUNC(0x010A9190, void, ArraySortHelper_1_UdpKit_UdpEndPoint__DownHeap, (UdpEndPoint__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UdpKit_UdpEndPoint_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UdpKit_UdpEndPoint__Heapsort, (UdpEndPoint__Array * keys, int32_t lo, int32_t hi, Comparison_1_UdpKit_UdpEndPoint_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010A94D0, void, ArraySortHelper_1_UdpKit_UdpEndPoint__InsertionSort, (UdpEndPoint__Array * keys, int32_t lo, int32_t hi, Comparison_1_UdpKit_UdpEndPoint_ * comparer, MethodInfo * method)); @@ -124539,13 +137575,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UdpKit_UdpEndPoint__IntroSort, ( DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UdpKit_UdpEndPoint__IntrospectiveSort, (UdpEndPoint__Array * keys, int32_t left, int32_t length, Comparison_1_UdpKit_UdpEndPoint_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010A8C60, int32_t, ArraySortHelper_1_UdpKit_UdpEndPoint__PickPivotAndPartition, (UdpEndPoint__Array * keys, int32_t lo, int32_t hi, Comparison_1_UdpKit_UdpEndPoint_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x017E8310, void, ArraySortHelper_1_UdpKit_UdpEndPoint__Sort, (UdpEndPoint__Array * keys, int32_t index, int32_t length, Comparison_1_UdpKit_UdpEndPoint_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02BF8, ArraySortHelper_1_UdpKit_UdpEndPoint__Sort__MethodInfo); DO_APP_FUNC(0x017E7F10, void, ArraySortHelper_1_UdpKit_UdpEndPoint__Sort_1, (ArraySortHelper_1_UdpKit_UdpEndPoint_ * __this, UdpEndPoint__Array * keys, int32_t index, int32_t length, IComparer_1_UdpKit_UdpEndPoint_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02BC8, ArraySortHelper_1_UdpKit_UdpEndPoint__Sort_1__MethodInfo); DO_APP_FUNC(0x010A8BC0, void, ArraySortHelper_1_UdpKit_UdpEndPoint__Swap, (UdpEndPoint__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x010A8A00, void, ArraySortHelper_1_UdpKit_UdpEndPoint__SwapIfGreater, (UdpEndPoint__Array * keys, Comparison_1_UdpKit_UdpEndPoint_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UdpKit_UdpEndPoint_ *, ArraySortHelper_1_UdpKit_UdpEndPoint__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UdpKit_UdpIPv4Address___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UdpKit_UdpIPv4Address___ctor, (ArraySortHelper_1_UdpKit_UdpIPv4Address_ * __this, MethodInfo * method)); DO_APP_FUNC(0x017E8700, int32_t, ArraySortHelper_1_UdpKit_UdpIPv4Address__BinarySearch, (ArraySortHelper_1_UdpKit_UdpIPv4Address_ * __this, UdpIPv4Address__Array * array, int32_t index, int32_t length, UdpIPv4Address value, IComparer_1_UdpKit_UdpIPv4Address_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02BE8, ArraySortHelper_1_UdpKit_UdpIPv4Address__BinarySearch__MethodInfo); DO_APP_FUNC(0x010B17F0, void, ArraySortHelper_1_UdpKit_UdpIPv4Address__DownHeap, (UdpIPv4Address__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UdpKit_UdpIPv4Address_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UdpKit_UdpIPv4Address__Heapsort, (UdpIPv4Address__Array * keys, int32_t lo, int32_t hi, Comparison_1_UdpKit_UdpIPv4Address_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010B1A00, void, ArraySortHelper_1_UdpKit_UdpIPv4Address__InsertionSort, (UdpIPv4Address__Array * keys, int32_t lo, int32_t hi, Comparison_1_UdpKit_UdpIPv4Address_ * comparer, MethodInfo * method)); @@ -124554,13 +137593,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UdpKit_UdpIPv4Address__IntroSort DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UdpKit_UdpIPv4Address__IntrospectiveSort, (UdpIPv4Address__Array * keys, int32_t left, int32_t length, Comparison_1_UdpKit_UdpIPv4Address_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010B13A0, int32_t, ArraySortHelper_1_UdpKit_UdpIPv4Address__PickPivotAndPartition, (UdpIPv4Address__Array * keys, int32_t lo, int32_t hi, Comparison_1_UdpKit_UdpIPv4Address_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x017E8870, void, ArraySortHelper_1_UdpKit_UdpIPv4Address__Sort, (UdpIPv4Address__Array * keys, int32_t index, int32_t length, Comparison_1_UdpKit_UdpIPv4Address_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02C20, ArraySortHelper_1_UdpKit_UdpIPv4Address__Sort__MethodInfo); DO_APP_FUNC(0x017E8490, void, ArraySortHelper_1_UdpKit_UdpIPv4Address__Sort_1, (ArraySortHelper_1_UdpKit_UdpIPv4Address_ * __this, UdpIPv4Address__Array * keys, int32_t index, int32_t length, IComparer_1_UdpKit_UdpIPv4Address_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02BF0, ArraySortHelper_1_UdpKit_UdpIPv4Address__Sort_1__MethodInfo); DO_APP_FUNC(0x010B1350, void, ArraySortHelper_1_UdpKit_UdpIPv4Address__Swap, (UdpIPv4Address__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x010B1240, void, ArraySortHelper_1_UdpKit_UdpIPv4Address__SwapIfGreater, (UdpIPv4Address__Array * keys, Comparison_1_UdpKit_UdpIPv4Address_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UdpKit_UdpIPv4Address_ *, ArraySortHelper_1_UdpKit_UdpIPv4Address__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_InputSystem_XR_UsageHint___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_InputSystem_XR_UsageHint___ctor, (ArraySortHelper_1_UnityEngine_InputSystem_XR_UsageHint_ * __this, MethodInfo * method)); DO_APP_FUNC(0x017E8C60, int32_t, ArraySortHelper_1_UnityEngine_InputSystem_XR_UsageHint__BinarySearch, (ArraySortHelper_1_UnityEngine_InputSystem_XR_UsageHint_ * __this, UsageHint__Array * array, int32_t index, int32_t length, UsageHint value, IComparer_1_UnityEngine_InputSystem_XR_UsageHint_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02C10, ArraySortHelper_1_UnityEngine_InputSystem_XR_UsageHint__BinarySearch__MethodInfo); DO_APP_FUNC(0x0165F370, void, ArraySortHelper_1_UnityEngine_InputSystem_XR_UsageHint__DownHeap, (UsageHint__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_InputSystem_XR_UsageHint_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_InputSystem_XR_UsageHint__Heapsort, (UsageHint__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_InputSystem_XR_UsageHint_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0165F580, void, ArraySortHelper_1_UnityEngine_InputSystem_XR_UsageHint__InsertionSort, (UsageHint__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_InputSystem_XR_UsageHint_ * comparer, MethodInfo * method)); @@ -124569,13 +137611,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_InputSystem_XR_Usage DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_InputSystem_XR_UsageHint__IntrospectiveSort, (UsageHint__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_InputSystem_XR_UsageHint_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC3C80, int32_t, ArraySortHelper_1_UnityEngine_InputSystem_XR_UsageHint__PickPivotAndPartition, (UsageHint__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_InputSystem_XR_UsageHint_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x017E8DD0, void, ArraySortHelper_1_UnityEngine_InputSystem_XR_UsageHint__Sort, (UsageHint__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_InputSystem_XR_UsageHint_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02C08, ArraySortHelper_1_UnityEngine_InputSystem_XR_UsageHint__Sort__MethodInfo); DO_APP_FUNC(0x017E89F0, void, ArraySortHelper_1_UnityEngine_InputSystem_XR_UsageHint__Sort_1, (ArraySortHelper_1_UnityEngine_InputSystem_XR_UsageHint_ * __this, UsageHint__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_InputSystem_XR_UsageHint_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02C18, ArraySortHelper_1_UnityEngine_InputSystem_XR_UsageHint__Sort_1__MethodInfo); DO_APP_FUNC(0x0165F300, void, ArraySortHelper_1_UnityEngine_InputSystem_XR_UsageHint__Swap, (UsageHint__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x0165F1E0, void, ArraySortHelper_1_UnityEngine_InputSystem_XR_UsageHint__SwapIfGreater, (UsageHint__Array * keys, Comparison_1_UnityEngine_InputSystem_XR_UsageHint_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_InputSystem_XR_UsageHint_ *, ArraySortHelper_1_UnityEngine_InputSystem_XR_UsageHint__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_Discord_User___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_Discord_User___ctor, (ArraySortHelper_1_Discord_User_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FB0410, int32_t, ArraySortHelper_1_Discord_User__BinarySearch, (ArraySortHelper_1_Discord_User_ * __this, User__Array * array, int32_t index, int32_t length, User value, IComparer_1_Discord_User_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21A48, ArraySortHelper_1_Discord_User__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FB1A30, void, ArraySortHelper_1_Discord_User__DownHeap, (User__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_Discord_User_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_Discord_User__Heapsort, (User__Array * keys, int32_t lo, int32_t hi, Comparison_1_Discord_User_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB1E20, void, ArraySortHelper_1_Discord_User__InsertionSort, (User__Array * keys, int32_t lo, int32_t hi, Comparison_1_Discord_User_ * comparer, MethodInfo * method)); @@ -124584,13 +137629,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_Discord_User__IntroSort, (User__ DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_Discord_User__IntrospectiveSort, (User__Array * keys, int32_t left, int32_t length, Comparison_1_Discord_User_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB1280, int32_t, ArraySortHelper_1_Discord_User__PickPivotAndPartition, (User__Array * keys, int32_t lo, int32_t hi, Comparison_1_Discord_User_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB05A0, void, ArraySortHelper_1_Discord_User__Sort, (User__Array * keys, int32_t index, int32_t length, Comparison_1_Discord_User_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21A70, ArraySortHelper_1_Discord_User__Sort__MethodInfo); DO_APP_FUNC(0x00FB01A0, void, ArraySortHelper_1_Discord_User__Sort_1, (ArraySortHelper_1_Discord_User_ * __this, User__Array * keys, int32_t index, int32_t length, IComparer_1_Discord_User_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21A50, ArraySortHelper_1_Discord_User__Sort_1__MethodInfo); DO_APP_FUNC(0x00FB0B30, void, ArraySortHelper_1_Discord_User__Swap, (User__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FB0910, void, ArraySortHelper_1_Discord_User__SwapIfGreater, (User__Array * keys, Comparison_1_Discord_User_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_Discord_User_ *, ArraySortHelper_1_Discord_User__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_Vector2___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_Vector2___ctor, (ArraySortHelper_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FB24F0, int32_t, ArraySortHelper_1_UnityEngine_Vector2__BinarySearch, (ArraySortHelper_1_UnityEngine_Vector2_ * __this, Vector2__Array * array, int32_t index, int32_t length, Vector2 value, IComparer_1_UnityEngine_Vector2_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21A60, ArraySortHelper_1_UnityEngine_Vector2__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FB3030, void, ArraySortHelper_1_UnityEngine_Vector2__DownHeap, (Vector2__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_Vector2_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_Vector2__Heapsort, (Vector2__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Vector2_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB32E0, void, ArraySortHelper_1_UnityEngine_Vector2__InsertionSort, (Vector2__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Vector2_ * comparer, MethodInfo * method)); @@ -124599,13 +137647,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_Vector2__IntroSort, DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_Vector2__IntrospectiveSort, (Vector2__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_Vector2_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB2B80, int32_t, ArraySortHelper_1_UnityEngine_Vector2__PickPivotAndPartition, (Vector2__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Vector2_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB2660, void, ArraySortHelper_1_UnityEngine_Vector2__Sort, (Vector2__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_Vector2_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21A20, ArraySortHelper_1_UnityEngine_Vector2__Sort__MethodInfo); DO_APP_FUNC(0x00FB2280, void, ArraySortHelper_1_UnityEngine_Vector2__Sort_1, (ArraySortHelper_1_UnityEngine_Vector2_ * __this, Vector2__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_Vector2_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21A68, ArraySortHelper_1_UnityEngine_Vector2__Sort_1__MethodInfo); DO_APP_FUNC(0x00FB2B00, void, ArraySortHelper_1_UnityEngine_Vector2__Swap, (Vector2__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FB2990, void, ArraySortHelper_1_UnityEngine_Vector2__SwapIfGreater, (Vector2__Array * keys, Comparison_1_UnityEngine_Vector2_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_Vector2_ *, ArraySortHelper_1_UnityEngine_Vector2__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_Vector3___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_Vector3___ctor, (ArraySortHelper_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FB3710, int32_t, ArraySortHelper_1_UnityEngine_Vector3__BinarySearch, (ArraySortHelper_1_UnityEngine_Vector3_ * __this, Vector3__Array * array, int32_t index, int32_t length, Vector3 value, IComparer_1_UnityEngine_Vector3_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21A10, ArraySortHelper_1_UnityEngine_Vector3__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FB42A0, void, ArraySortHelper_1_UnityEngine_Vector3__DownHeap, (Vector3__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_Vector3_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_Vector3__Heapsort, (Vector3__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Vector3_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB4580, void, ArraySortHelper_1_UnityEngine_Vector3__InsertionSort, (Vector3__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Vector3_ * comparer, MethodInfo * method)); @@ -124614,13 +137665,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_Vector3__IntroSort, DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_Vector3__IntrospectiveSort, (Vector3__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_Vector3_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB3DC0, int32_t, ArraySortHelper_1_UnityEngine_Vector3__PickPivotAndPartition, (Vector3__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Vector3_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB3890, void, ArraySortHelper_1_UnityEngine_Vector3__Sort, (Vector3__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_Vector3_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21A08, ArraySortHelper_1_UnityEngine_Vector3__Sort__MethodInfo); DO_APP_FUNC(0x00FB34A0, void, ArraySortHelper_1_UnityEngine_Vector3__Sort_1, (ArraySortHelper_1_UnityEngine_Vector3_ * __this, Vector3__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_Vector3_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21A18, ArraySortHelper_1_UnityEngine_Vector3__Sort_1__MethodInfo); DO_APP_FUNC(0x00FB3D40, void, ArraySortHelper_1_UnityEngine_Vector3__Swap, (Vector3__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FB3BC0, void, ArraySortHelper_1_UnityEngine_Vector3__SwapIfGreater, (Vector3__Array * keys, Comparison_1_UnityEngine_Vector3_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_Vector3_ *, ArraySortHelper_1_UnityEngine_Vector3__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_Vector4___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_Vector4___ctor, (ArraySortHelper_1_UnityEngine_Vector4_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FB49D0, int32_t, ArraySortHelper_1_UnityEngine_Vector4__BinarySearch, (ArraySortHelper_1_UnityEngine_Vector4_ * __this, Vector4__Array * array, int32_t index, int32_t length, Vector4 value, IComparer_1_UnityEngine_Vector4_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21A38, ArraySortHelper_1_UnityEngine_Vector4__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FB54C0, void, ArraySortHelper_1_UnityEngine_Vector4__DownHeap, (Vector4__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_Vector4_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_Vector4__Heapsort, (Vector4__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Vector4_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5730, void, ArraySortHelper_1_UnityEngine_Vector4__InsertionSort, (Vector4__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Vector4_ * comparer, MethodInfo * method)); @@ -124629,13 +137683,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_Vector4__IntroSort, DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_Vector4__IntrospectiveSort, (Vector4__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_Vector4_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5030, int32_t, ArraySortHelper_1_UnityEngine_Vector4__PickPivotAndPartition, (Vector4__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Vector4_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB4B50, void, ArraySortHelper_1_UnityEngine_Vector4__Sort, (Vector4__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_Vector4_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21A30, ArraySortHelper_1_UnityEngine_Vector4__Sort__MethodInfo); DO_APP_FUNC(0x00FB4760, void, ArraySortHelper_1_UnityEngine_Vector4__Sort_1, (ArraySortHelper_1_UnityEngine_Vector4_ * __this, Vector4__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_Vector4_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21A40, ArraySortHelper_1_UnityEngine_Vector4__Sort_1__MethodInfo); DO_APP_FUNC(0x00FB4FC0, void, ArraySortHelper_1_UnityEngine_Vector4__Swap, (Vector4__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FB4E70, void, ArraySortHelper_1_UnityEngine_Vector4__SwapIfGreater, (Vector4__Array * keys, Comparison_1_UnityEngine_Vector4_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_Vector4_ *, ArraySortHelper_1_UnityEngine_Vector4__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_Rendering_VertexAttributeDescriptor___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_Rendering_VertexAttributeDescriptor___ctor, (ArraySortHelper_1_UnityEngine_Rendering_VertexAttributeDescriptor_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FB5B30, int32_t, ArraySortHelper_1_UnityEngine_Rendering_VertexAttributeDescriptor__BinarySearch, (ArraySortHelper_1_UnityEngine_Rendering_VertexAttributeDescriptor_ * __this, VertexAttributeDescriptor__Array * array, int32_t index, int32_t length, VertexAttributeDescriptor value, IComparer_1_UnityEngine_Rendering_VertexAttributeDescriptor_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D219E0, ArraySortHelper_1_UnityEngine_Rendering_VertexAttributeDescriptor__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FB6460, void, ArraySortHelper_1_UnityEngine_Rendering_VertexAttributeDescriptor__DownHeap, (VertexAttributeDescriptor__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_Rendering_VertexAttributeDescriptor_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_Rendering_VertexAttributeDescriptor__Heapsort, (VertexAttributeDescriptor__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Rendering_VertexAttributeDescriptor_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5730, void, ArraySortHelper_1_UnityEngine_Rendering_VertexAttributeDescriptor__InsertionSort, (VertexAttributeDescriptor__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Rendering_VertexAttributeDescriptor_ * comparer, MethodInfo * method)); @@ -124644,13 +137701,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_Rendering_VertexAttr DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_Rendering_VertexAttributeDescriptor__IntrospectiveSort, (VertexAttributeDescriptor__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_Rendering_VertexAttributeDescriptor_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5FD0, int32_t, ArraySortHelper_1_UnityEngine_Rendering_VertexAttributeDescriptor__PickPivotAndPartition, (VertexAttributeDescriptor__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Rendering_VertexAttributeDescriptor_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5CB0, void, ArraySortHelper_1_UnityEngine_Rendering_VertexAttributeDescriptor__Sort, (VertexAttributeDescriptor__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_Rendering_VertexAttributeDescriptor_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D219D8, ArraySortHelper_1_UnityEngine_Rendering_VertexAttributeDescriptor__Sort__MethodInfo); DO_APP_FUNC(0x00FB58C0, void, ArraySortHelper_1_UnityEngine_Rendering_VertexAttributeDescriptor__Sort_1, (ArraySortHelper_1_UnityEngine_Rendering_VertexAttributeDescriptor_ * __this, VertexAttributeDescriptor__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_Rendering_VertexAttributeDescriptor_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21A28, ArraySortHelper_1_UnityEngine_Rendering_VertexAttributeDescriptor__Sort_1__MethodInfo); DO_APP_FUNC(0x00FB4FC0, void, ArraySortHelper_1_UnityEngine_Rendering_VertexAttributeDescriptor__Swap, (VertexAttributeDescriptor__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FB4E70, void, ArraySortHelper_1_UnityEngine_Rendering_VertexAttributeDescriptor__SwapIfGreater, (VertexAttributeDescriptor__Array * keys, Comparison_1_UnityEngine_Rendering_VertexAttributeDescriptor_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_Rendering_VertexAttributeDescriptor_ *, ArraySortHelper_1_UnityEngine_Rendering_VertexAttributeDescriptor__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_Microsoft_MixedReality_OpenXR_ViewConfiguration___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_Microsoft_MixedReality_OpenXR_ViewConfiguration___ctor, (ArraySortHelper_1_Microsoft_MixedReality_OpenXR_ViewConfiguration_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FB6940, int32_t, ArraySortHelper_1_Microsoft_MixedReality_OpenXR_ViewConfiguration__BinarySearch, (ArraySortHelper_1_Microsoft_MixedReality_OpenXR_ViewConfiguration_ * __this, ViewConfiguration__Array * array, int32_t index, int32_t length, ViewConfiguration value, IComparer_1_Microsoft_MixedReality_OpenXR_ViewConfiguration_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D219C8, ArraySortHelper_1_Microsoft_MixedReality_OpenXR_ViewConfiguration__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FB76D0, void, ArraySortHelper_1_Microsoft_MixedReality_OpenXR_ViewConfiguration__DownHeap, (ViewConfiguration__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_Microsoft_MixedReality_OpenXR_ViewConfiguration_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_Microsoft_MixedReality_OpenXR_ViewConfiguration__Heapsort, (ViewConfiguration__Array * keys, int32_t lo, int32_t hi, Comparison_1_Microsoft_MixedReality_OpenXR_ViewConfiguration_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB7A30, void, ArraySortHelper_1_Microsoft_MixedReality_OpenXR_ViewConfiguration__InsertionSort, (ViewConfiguration__Array * keys, int32_t lo, int32_t hi, Comparison_1_Microsoft_MixedReality_OpenXR_ViewConfiguration_ * comparer, MethodInfo * method)); @@ -124659,13 +137719,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_Microsoft_MixedReality_OpenXR_Vi DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_Microsoft_MixedReality_OpenXR_ViewConfiguration__IntrospectiveSort, (ViewConfiguration__Array * keys, int32_t left, int32_t length, Comparison_1_Microsoft_MixedReality_OpenXR_ViewConfiguration_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB71C0, int32_t, ArraySortHelper_1_Microsoft_MixedReality_OpenXR_ViewConfiguration__PickPivotAndPartition, (ViewConfiguration__Array * keys, int32_t lo, int32_t hi, Comparison_1_Microsoft_MixedReality_OpenXR_ViewConfiguration_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB6AC0, void, ArraySortHelper_1_Microsoft_MixedReality_OpenXR_ViewConfiguration__Sort, (ViewConfiguration__Array * keys, int32_t index, int32_t length, Comparison_1_Microsoft_MixedReality_OpenXR_ViewConfiguration_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21A00, ArraySortHelper_1_Microsoft_MixedReality_OpenXR_ViewConfiguration__Sort__MethodInfo); DO_APP_FUNC(0x00FB66D0, void, ArraySortHelper_1_Microsoft_MixedReality_OpenXR_ViewConfiguration__Sort_1, (ArraySortHelper_1_Microsoft_MixedReality_OpenXR_ViewConfiguration_ * __this, ViewConfiguration__Array * keys, int32_t index, int32_t length, IComparer_1_Microsoft_MixedReality_OpenXR_ViewConfiguration_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D219D0, ArraySortHelper_1_Microsoft_MixedReality_OpenXR_ViewConfiguration__Sort_1__MethodInfo); DO_APP_FUNC(0x00FB7060, void, ArraySortHelper_1_Microsoft_MixedReality_OpenXR_ViewConfiguration__Swap, (ViewConfiguration__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FB6E00, void, ArraySortHelper_1_Microsoft_MixedReality_OpenXR_ViewConfiguration__SwapIfGreater, (ViewConfiguration__Array * keys, Comparison_1_Microsoft_MixedReality_OpenXR_ViewConfiguration_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_Microsoft_MixedReality_OpenXR_ViewConfiguration_ *, ArraySortHelper_1_Microsoft_MixedReality_OpenXR_ViewConfiguration__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_Dissonance_Networking_VoicePacket___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_Dissonance_Networking_VoicePacket___ctor, (ArraySortHelper_1_Dissonance_Networking_VoicePacket_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FB7E80, int32_t, ArraySortHelper_1_Dissonance_Networking_VoicePacket__BinarySearch, (ArraySortHelper_1_Dissonance_Networking_VoicePacket_ * __this, VoicePacket__Array * array, int32_t index, int32_t length, VoicePacket value, IComparer_1_Dissonance_Networking_VoicePacket_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D219F0, ArraySortHelper_1_Dissonance_Networking_VoicePacket__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FB8D30, void, ArraySortHelper_1_Dissonance_Networking_VoicePacket__DownHeap, (VoicePacket__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_Dissonance_Networking_VoicePacket_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_Dissonance_Networking_VoicePacket__Heapsort, (VoicePacket__Array * keys, int32_t lo, int32_t hi, Comparison_1_Dissonance_Networking_VoicePacket_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB9150, void, ArraySortHelper_1_Dissonance_Networking_VoicePacket__InsertionSort, (VoicePacket__Array * keys, int32_t lo, int32_t hi, Comparison_1_Dissonance_Networking_VoicePacket_ * comparer, MethodInfo * method)); @@ -124674,13 +137737,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_Dissonance_Networking_VoicePacke DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_Dissonance_Networking_VoicePacket__IntrospectiveSort, (VoicePacket__Array * keys, int32_t left, int32_t length, Comparison_1_Dissonance_Networking_VoicePacket_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB8770, int32_t, ArraySortHelper_1_Dissonance_Networking_VoicePacket__PickPivotAndPartition, (VoicePacket__Array * keys, int32_t lo, int32_t hi, Comparison_1_Dissonance_Networking_VoicePacket_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB8020, void, ArraySortHelper_1_Dissonance_Networking_VoicePacket__Sort, (VoicePacket__Array * keys, int32_t index, int32_t length, Comparison_1_Dissonance_Networking_VoicePacket_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D219E8, ArraySortHelper_1_Dissonance_Networking_VoicePacket__Sort__MethodInfo); DO_APP_FUNC(0x00FB7C10, void, ArraySortHelper_1_Dissonance_Networking_VoicePacket__Sort_1, (ArraySortHelper_1_Dissonance_Networking_VoicePacket_ * __this, VoicePacket__Array * keys, int32_t index, int32_t length, IComparer_1_Dissonance_Networking_VoicePacket_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D219F8, ArraySortHelper_1_Dissonance_Networking_VoicePacket__Sort_1__MethodInfo); DO_APP_FUNC(0x00FB85D0, void, ArraySortHelper_1_Dissonance_Networking_VoicePacket__Swap, (VoicePacket__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FB8350, void, ArraySortHelper_1_Dissonance_Networking_VoicePacket__SwapIfGreater, (VoicePacket__Array * keys, Comparison_1_Dissonance_Networking_VoicePacket_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_Dissonance_Networking_VoicePacket_ *, ArraySortHelper_1_Dissonance_Networking_VoicePacket__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_Pathfinding_Voxels_VoxelContour___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_Pathfinding_Voxels_VoxelContour___ctor, (ArraySortHelper_1_Pathfinding_Voxels_VoxelContour_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FB9650, int32_t, ArraySortHelper_1_Pathfinding_Voxels_VoxelContour__BinarySearch, (ArraySortHelper_1_Pathfinding_Voxels_VoxelContour_ * __this, VoxelContour__Array * array, int32_t index, int32_t length, VoxelContour value, IComparer_1_Pathfinding_Voxels_VoxelContour_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21998, ArraySortHelper_1_Pathfinding_Voxels_VoxelContour__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FBA3F0, void, ArraySortHelper_1_Pathfinding_Voxels_VoxelContour__DownHeap, (VoxelContour__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_Pathfinding_Voxels_VoxelContour_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_Pathfinding_Voxels_VoxelContour__Heapsort, (VoxelContour__Array * keys, int32_t lo, int32_t hi, Comparison_1_Pathfinding_Voxels_VoxelContour_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FBA740, void, ArraySortHelper_1_Pathfinding_Voxels_VoxelContour__InsertionSort, (VoxelContour__Array * keys, int32_t lo, int32_t hi, Comparison_1_Pathfinding_Voxels_VoxelContour_ * comparer, MethodInfo * method)); @@ -124689,13 +137755,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_Pathfinding_Voxels_VoxelContour_ DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_Pathfinding_Voxels_VoxelContour__IntrospectiveSort, (VoxelContour__Array * keys, int32_t left, int32_t length, Comparison_1_Pathfinding_Voxels_VoxelContour_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB9EF0, int32_t, ArraySortHelper_1_Pathfinding_Voxels_VoxelContour__PickPivotAndPartition, (VoxelContour__Array * keys, int32_t lo, int32_t hi, Comparison_1_Pathfinding_Voxels_VoxelContour_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB97D0, void, ArraySortHelper_1_Pathfinding_Voxels_VoxelContour__Sort, (VoxelContour__Array * keys, int32_t index, int32_t length, Comparison_1_Pathfinding_Voxels_VoxelContour_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21990, ArraySortHelper_1_Pathfinding_Voxels_VoxelContour__Sort__MethodInfo); DO_APP_FUNC(0x00FB93E0, void, ArraySortHelper_1_Pathfinding_Voxels_VoxelContour__Sort_1, (ArraySortHelper_1_Pathfinding_Voxels_VoxelContour_ * __this, VoxelContour__Array * keys, int32_t index, int32_t length, IComparer_1_Pathfinding_Voxels_VoxelContour_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D219A0, ArraySortHelper_1_Pathfinding_Voxels_VoxelContour__Sort_1__MethodInfo); DO_APP_FUNC(0x00FB9D90, void, ArraySortHelper_1_Pathfinding_Voxels_VoxelContour__Swap, (VoxelContour__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FB9B10, void, ArraySortHelper_1_Pathfinding_Voxels_VoxelContour__SwapIfGreater, (VoxelContour__Array * keys, Comparison_1_Pathfinding_Voxels_VoxelContour_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_Pathfinding_Voxels_VoxelContour_ *, ArraySortHelper_1_Pathfinding_Voxels_VoxelContour__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES___ctor, (ArraySortHelper_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FBAB90, int32_t, ArraySortHelper_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES__BinarySearch, (ArraySortHelper_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES_ * __this, Win32_IP_ADAPTER_ADDRESSES__Array * array, int32_t index, int32_t length, Win32_IP_ADAPTER_ADDRESSES value, IComparer_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D219C0, ArraySortHelper_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FBBF50, void, ArraySortHelper_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES__DownHeap, (Win32_IP_ADAPTER_ADDRESSES__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES__Heapsort, (Win32_IP_ADAPTER_ADDRESSES__Array * keys, int32_t lo, int32_t hi, Comparison_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FBC480, void, ArraySortHelper_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES__InsertionSort, (Win32_IP_ADAPTER_ADDRESSES__Array * keys, int32_t lo, int32_t hi, Comparison_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES_ * comparer, MethodInfo * method)); @@ -124704,13 +137773,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_System_Net_NetworkInformation_Wi DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES__IntrospectiveSort, (Win32_IP_ADAPTER_ADDRESSES__Array * keys, int32_t left, int32_t length, Comparison_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FBB830, int32_t, ArraySortHelper_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES__PickPivotAndPartition, (Win32_IP_ADAPTER_ADDRESSES__Array * keys, int32_t lo, int32_t hi, Comparison_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FBAD70, void, ArraySortHelper_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES__Sort, (Win32_IP_ADAPTER_ADDRESSES__Array * keys, int32_t index, int32_t length, Comparison_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D219B8, ArraySortHelper_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES__Sort__MethodInfo); DO_APP_FUNC(0x00FBA920, void, ArraySortHelper_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES__Sort_1, (ArraySortHelper_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES_ * __this, Win32_IP_ADAPTER_ADDRESSES__Array * keys, int32_t index, int32_t length, IComparer_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21988, ArraySortHelper_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES__Sort_1__MethodInfo); DO_APP_FUNC(0x00FBB640, void, ArraySortHelper_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES__Swap, (Win32_IP_ADAPTER_ADDRESSES__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FBB1D0, void, ArraySortHelper_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES__SwapIfGreater, (Win32_IP_ADAPTER_ADDRESSES__Array * keys, Comparison_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES_ *, ArraySortHelper_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO___ctor, (ArraySortHelper_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FBCAA0, int32_t, ArraySortHelper_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO__BinarySearch, (ArraySortHelper_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO_ * __this, Win32_IP_ADAPTER_INFO__Array * array, int32_t index, int32_t length, Win32_IP_ADAPTER_INFO value, IComparer_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D219A8, ArraySortHelper_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FBDDB0, void, ArraySortHelper_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO__DownHeap, (Win32_IP_ADAPTER_INFO__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO__Heapsort, (Win32_IP_ADAPTER_INFO__Array * keys, int32_t lo, int32_t hi, Comparison_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FBE2C0, void, ArraySortHelper_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO__InsertionSort, (Win32_IP_ADAPTER_INFO__Array * keys, int32_t lo, int32_t hi, Comparison_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO_ * comparer, MethodInfo * method)); @@ -124719,13 +137791,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_System_Net_NetworkInformation_Wi DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO__IntrospectiveSort, (Win32_IP_ADAPTER_INFO__Array * keys, int32_t left, int32_t length, Comparison_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FBD6A0, int32_t, ArraySortHelper_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO__PickPivotAndPartition, (Win32_IP_ADAPTER_INFO__Array * keys, int32_t lo, int32_t hi, Comparison_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FBCC70, void, ArraySortHelper_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO__Sort, (Win32_IP_ADAPTER_INFO__Array * keys, int32_t index, int32_t length, Comparison_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21960, ArraySortHelper_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO__Sort__MethodInfo); DO_APP_FUNC(0x00FBC830, void, ArraySortHelper_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO__Sort_1, (ArraySortHelper_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO_ * __this, Win32_IP_ADAPTER_INFO__Array * keys, int32_t index, int32_t length, IComparer_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D219B0, ArraySortHelper_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO__Sort_1__MethodInfo); DO_APP_FUNC(0x00FBD4C0, void, ArraySortHelper_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO__Swap, (Win32_IP_ADAPTER_INFO__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FBD0D0, void, ArraySortHelper_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO__SwapIfGreater, (Win32_IP_ADAPTER_INFO__Array * keys, Comparison_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO_ *, ArraySortHelper_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_System_Security_Cryptography_X509Certificates_X509ChainStatus___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_System_Security_Cryptography_X509Certificates_X509ChainStatus___ctor, (ArraySortHelper_1_System_Security_Cryptography_X509Certificates_X509ChainStatus_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FBE8D0, int32_t, ArraySortHelper_1_System_Security_Cryptography_X509Certificates_X509ChainStatus__BinarySearch, (ArraySortHelper_1_System_Security_Cryptography_X509Certificates_X509ChainStatus_ * __this, X509ChainStatus__Array * array, int32_t index, int32_t length, X509ChainStatus value, IComparer_1_System_Security_Cryptography_X509Certificates_X509ChainStatus_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21950, ArraySortHelper_1_System_Security_Cryptography_X509Certificates_X509ChainStatus__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FBEF30, void, ArraySortHelper_1_System_Security_Cryptography_X509Certificates_X509ChainStatus__DownHeap, (X509ChainStatus__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_System_Security_Cryptography_X509Certificates_X509ChainStatus_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_System_Security_Cryptography_X509Certificates_X509ChainStatus__Heapsort, (X509ChainStatus__Array * keys, int32_t lo, int32_t hi, Comparison_1_System_Security_Cryptography_X509Certificates_X509ChainStatus_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FBF200, void, ArraySortHelper_1_System_Security_Cryptography_X509Certificates_X509ChainStatus__InsertionSort, (X509ChainStatus__Array * keys, int32_t lo, int32_t hi, Comparison_1_System_Security_Cryptography_X509Certificates_X509ChainStatus_ * comparer, MethodInfo * method)); @@ -124734,13 +137809,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_System_Security_Cryptography_X50 DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_System_Security_Cryptography_X509Certificates_X509ChainStatus__IntrospectiveSort, (X509ChainStatus__Array * keys, int32_t left, int32_t length, Comparison_1_System_Security_Cryptography_X509Certificates_X509ChainStatus_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5FD0, int32_t, ArraySortHelper_1_System_Security_Cryptography_X509Certificates_X509ChainStatus__PickPivotAndPartition, (X509ChainStatus__Array * keys, int32_t lo, int32_t hi, Comparison_1_System_Security_Cryptography_X509Certificates_X509ChainStatus_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FBEA50, void, ArraySortHelper_1_System_Security_Cryptography_X509Certificates_X509ChainStatus__Sort, (X509ChainStatus__Array * keys, int32_t index, int32_t length, Comparison_1_System_Security_Cryptography_X509Certificates_X509ChainStatus_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21948, ArraySortHelper_1_System_Security_Cryptography_X509Certificates_X509ChainStatus__Sort__MethodInfo); DO_APP_FUNC(0x00FBE660, void, ArraySortHelper_1_System_Security_Cryptography_X509Certificates_X509ChainStatus__Sort_1, (ArraySortHelper_1_System_Security_Cryptography_X509Certificates_X509ChainStatus_ * __this, X509ChainStatus__Array * keys, int32_t index, int32_t length, IComparer_1_System_Security_Cryptography_X509Certificates_X509ChainStatus_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21958, ArraySortHelper_1_System_Security_Cryptography_X509Certificates_X509ChainStatus__Sort_1__MethodInfo); DO_APP_FUNC(0x00FBEDF0, void, ArraySortHelper_1_System_Security_Cryptography_X509Certificates_X509ChainStatus__Swap, (X509ChainStatus__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FBEBD0, void, ArraySortHelper_1_System_Security_Cryptography_X509Certificates_X509ChainStatus__SwapIfGreater, (X509ChainStatus__Array * keys, Comparison_1_System_Security_Cryptography_X509Certificates_X509ChainStatus_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_System_Security_Cryptography_X509Certificates_X509ChainStatus_ *, ArraySortHelper_1_System_Security_Cryptography_X509Certificates_X509ChainStatus__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor___ctor, (ArraySortHelper_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FBF620, int32_t, ArraySortHelper_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor__BinarySearch, (ArraySortHelper_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor_ * __this, XRFeatureDescriptor__Array * array, int32_t index, int32_t length, XRFeatureDescriptor value, IComparer_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21978, ArraySortHelper_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FBFCE0, void, ArraySortHelper_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor__DownHeap, (XRFeatureDescriptor__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor__Heapsort, (XRFeatureDescriptor__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC0040, void, ArraySortHelper_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor__InsertionSort, (XRFeatureDescriptor__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor_ * comparer, MethodInfo * method)); @@ -124749,13 +137827,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_InputSystem_XR_XRFea DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor__IntrospectiveSort, (XRFeatureDescriptor__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB71C0, int32_t, ArraySortHelper_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor__PickPivotAndPartition, (XRFeatureDescriptor__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FBF7A0, void, ArraySortHelper_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor__Sort, (XRFeatureDescriptor__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21970, ArraySortHelper_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor__Sort__MethodInfo); DO_APP_FUNC(0x00FBF3B0, void, ArraySortHelper_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor__Sort_1, (ArraySortHelper_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor_ * __this, XRFeatureDescriptor__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21980, ArraySortHelper_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor__Sort_1__MethodInfo); DO_APP_FUNC(0x00FBFB80, void, ArraySortHelper_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor__Swap, (XRFeatureDescriptor__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FBF920, void, ArraySortHelper_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor__SwapIfGreater, (XRFeatureDescriptor__Array * keys, Comparison_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor_ *, ArraySortHelper_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_XR_XRNodeState___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_XR_XRNodeState___ctor, (ArraySortHelper_1_UnityEngine_XR_XRNodeState_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FC0490, int32_t, ArraySortHelper_1_UnityEngine_XR_XRNodeState__BinarySearch, (ArraySortHelper_1_UnityEngine_XR_XRNodeState_ * __this, XRNodeState__Array * array, int32_t index, int32_t length, XRNodeState value, IComparer_1_UnityEngine_XR_XRNodeState_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21920, ArraySortHelper_1_UnityEngine_XR_XRNodeState__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FC1430, void, ArraySortHelper_1_UnityEngine_XR_XRNodeState__DownHeap, (XRNodeState__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_XR_XRNodeState_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_XR_XRNodeState__Heapsort, (XRNodeState__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_XR_XRNodeState_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC18A0, void, ArraySortHelper_1_UnityEngine_XR_XRNodeState__InsertionSort, (XRNodeState__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_XR_XRNodeState_ * comparer, MethodInfo * method)); @@ -124764,13 +137845,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_XR_XRNodeState__Intr DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_XR_XRNodeState__IntrospectiveSort, (XRNodeState__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_XR_XRNodeState_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC0E30, int32_t, ArraySortHelper_1_UnityEngine_XR_XRNodeState__PickPivotAndPartition, (XRNodeState__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_XR_XRNodeState_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC0640, void, ArraySortHelper_1_UnityEngine_XR_XRNodeState__Sort, (XRNodeState__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_XR_XRNodeState_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21918, ArraySortHelper_1_UnityEngine_XR_XRNodeState__Sort__MethodInfo); DO_APP_FUNC(0x00FC0220, void, ArraySortHelper_1_UnityEngine_XR_XRNodeState__Sort_1, (ArraySortHelper_1_UnityEngine_XR_XRNodeState_ * __this, XRNodeState__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_XR_XRNodeState_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21968, ArraySortHelper_1_UnityEngine_XR_XRNodeState__Sort_1__MethodInfo); DO_APP_FUNC(0x00FC0D20, void, ArraySortHelper_1_UnityEngine_XR_XRNodeState__Swap, (XRNodeState__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FC0A20, void, ArraySortHelper_1_UnityEngine_XR_XRNodeState__SwapIfGreater, (XRNodeState__Array * keys, Comparison_1_UnityEngine_XR_XRNodeState_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_XR_XRNodeState_ *, ArraySortHelper_1_UnityEngine_XR_XRNodeState__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_Pathfinding_AdvancedSmooth_Turn___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_Pathfinding_AdvancedSmooth_Turn___ctor, (ArraySortHelper_1_Pathfinding_AdvancedSmooth_Turn_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FC1E40, int32_t, ArraySortHelper_1_Pathfinding_AdvancedSmooth_Turn__BinarySearch, (ArraySortHelper_1_Pathfinding_AdvancedSmooth_Turn_ * __this, AdvancedSmooth_Turn__Array * array, int32_t index, int32_t length, AdvancedSmooth_Turn value, IComparer_1_Pathfinding_AdvancedSmooth_Turn_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21908, ArraySortHelper_1_Pathfinding_AdvancedSmooth_Turn__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FBEF30, void, ArraySortHelper_1_Pathfinding_AdvancedSmooth_Turn__DownHeap, (AdvancedSmooth_Turn__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_Pathfinding_AdvancedSmooth_Turn_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_Pathfinding_AdvancedSmooth_Turn__Heapsort, (AdvancedSmooth_Turn__Array * keys, int32_t lo, int32_t hi, Comparison_1_Pathfinding_AdvancedSmooth_Turn_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FBF200, void, ArraySortHelper_1_Pathfinding_AdvancedSmooth_Turn__InsertionSort, (AdvancedSmooth_Turn__Array * keys, int32_t lo, int32_t hi, Comparison_1_Pathfinding_AdvancedSmooth_Turn_ * comparer, MethodInfo * method)); @@ -124779,13 +137863,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_Pathfinding_AdvancedSmooth_Turn_ DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_Pathfinding_AdvancedSmooth_Turn__IntrospectiveSort, (AdvancedSmooth_Turn__Array * keys, int32_t left, int32_t length, Comparison_1_Pathfinding_AdvancedSmooth_Turn_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5FD0, int32_t, ArraySortHelper_1_Pathfinding_AdvancedSmooth_Turn__PickPivotAndPartition, (AdvancedSmooth_Turn__Array * keys, int32_t lo, int32_t hi, Comparison_1_Pathfinding_AdvancedSmooth_Turn_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC1FC0, void, ArraySortHelper_1_Pathfinding_AdvancedSmooth_Turn__Sort, (AdvancedSmooth_Turn__Array * keys, int32_t index, int32_t length, Comparison_1_Pathfinding_AdvancedSmooth_Turn_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21940, ArraySortHelper_1_Pathfinding_AdvancedSmooth_Turn__Sort__MethodInfo); DO_APP_FUNC(0x00FC1BD0, void, ArraySortHelper_1_Pathfinding_AdvancedSmooth_Turn__Sort_1, (ArraySortHelper_1_Pathfinding_AdvancedSmooth_Turn_ * __this, AdvancedSmooth_Turn__Array * keys, int32_t index, int32_t length, IComparer_1_Pathfinding_AdvancedSmooth_Turn_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21910, ArraySortHelper_1_Pathfinding_AdvancedSmooth_Turn__Sort_1__MethodInfo); DO_APP_FUNC(0x00FBEDF0, void, ArraySortHelper_1_Pathfinding_AdvancedSmooth_Turn__Swap, (AdvancedSmooth_Turn__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FBEBD0, void, ArraySortHelper_1_Pathfinding_AdvancedSmooth_Turn__SwapIfGreater, (AdvancedSmooth_Turn__Array * keys, Comparison_1_Pathfinding_AdvancedSmooth_Turn_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_Pathfinding_AdvancedSmooth_Turn_ *, ArraySortHelper_1_Pathfinding_AdvancedSmooth_Turn__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo___ctor, (ArraySortHelper_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FC23B0, int32_t, ArraySortHelper_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo__BinarySearch, (ArraySortHelper_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo_ * __this, AnimationOutputWeightProcessor_WeightInfo__Array * array, int32_t index, int32_t length, AnimationOutputWeightProcessor_WeightInfo value, IComparer_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21930, ArraySortHelper_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FC2940, void, ArraySortHelper_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo__DownHeap, (AnimationOutputWeightProcessor_WeightInfo__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo__Heapsort, (AnimationOutputWeightProcessor_WeightInfo__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC2CB0, void, ArraySortHelper_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo__InsertionSort, (AnimationOutputWeightProcessor_WeightInfo__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo_ * comparer, MethodInfo * method)); @@ -124794,13 +137881,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_Timeline_AnimationOu DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo__IntrospectiveSort, (AnimationOutputWeightProcessor_WeightInfo__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB1280, int32_t, ArraySortHelper_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo__PickPivotAndPartition, (AnimationOutputWeightProcessor_WeightInfo__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC2540, void, ArraySortHelper_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo__Sort, (AnimationOutputWeightProcessor_WeightInfo__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21928, ArraySortHelper_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo__Sort__MethodInfo); DO_APP_FUNC(0x00FC2140, void, ArraySortHelper_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo__Sort_1, (ArraySortHelper_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo_ * __this, AnimationOutputWeightProcessor_WeightInfo__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21938, ArraySortHelper_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo__Sort_1__MethodInfo); DO_APP_FUNC(0x00FC28A0, void, ArraySortHelper_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo__Swap, (AnimationOutputWeightProcessor_WeightInfo__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FC26C0, void, ArraySortHelper_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo__SwapIfGreater, (AnimationOutputWeightProcessor_WeightInfo__Array * keys, Comparison_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo_ *, ArraySortHelper_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_BeforeRenderHelper_OrderBlock___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_BeforeRenderHelper_OrderBlock___ctor, (ArraySortHelper_1_UnityEngine_BeforeRenderHelper_OrderBlock_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FC3150, int32_t, ArraySortHelper_1_UnityEngine_BeforeRenderHelper_OrderBlock__BinarySearch, (ArraySortHelper_1_UnityEngine_BeforeRenderHelper_OrderBlock_ * __this, BeforeRenderHelper_OrderBlock__Array * array, int32_t index, int32_t length, BeforeRenderHelper_OrderBlock value, IComparer_1_UnityEngine_BeforeRenderHelper_OrderBlock_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D218D8, ArraySortHelper_1_UnityEngine_BeforeRenderHelper_OrderBlock__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FBEF30, void, ArraySortHelper_1_UnityEngine_BeforeRenderHelper_OrderBlock__DownHeap, (BeforeRenderHelper_OrderBlock__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_BeforeRenderHelper_OrderBlock_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_BeforeRenderHelper_OrderBlock__Heapsort, (BeforeRenderHelper_OrderBlock__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_BeforeRenderHelper_OrderBlock_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FBF200, void, ArraySortHelper_1_UnityEngine_BeforeRenderHelper_OrderBlock__InsertionSort, (BeforeRenderHelper_OrderBlock__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_BeforeRenderHelper_OrderBlock_ * comparer, MethodInfo * method)); @@ -124809,13 +137899,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_BeforeRenderHelper_O DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_BeforeRenderHelper_OrderBlock__IntrospectiveSort, (BeforeRenderHelper_OrderBlock__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_BeforeRenderHelper_OrderBlock_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5FD0, int32_t, ArraySortHelper_1_UnityEngine_BeforeRenderHelper_OrderBlock__PickPivotAndPartition, (BeforeRenderHelper_OrderBlock__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_BeforeRenderHelper_OrderBlock_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC32D0, void, ArraySortHelper_1_UnityEngine_BeforeRenderHelper_OrderBlock__Sort, (BeforeRenderHelper_OrderBlock__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_BeforeRenderHelper_OrderBlock_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D218D0, ArraySortHelper_1_UnityEngine_BeforeRenderHelper_OrderBlock__Sort__MethodInfo); DO_APP_FUNC(0x00FC2EE0, void, ArraySortHelper_1_UnityEngine_BeforeRenderHelper_OrderBlock__Sort_1, (ArraySortHelper_1_UnityEngine_BeforeRenderHelper_OrderBlock_ * __this, BeforeRenderHelper_OrderBlock__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_BeforeRenderHelper_OrderBlock_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D218E0, ArraySortHelper_1_UnityEngine_BeforeRenderHelper_OrderBlock__Sort_1__MethodInfo); DO_APP_FUNC(0x00FBEDF0, void, ArraySortHelper_1_UnityEngine_BeforeRenderHelper_OrderBlock__Swap, (BeforeRenderHelper_OrderBlock__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FBEBD0, void, ArraySortHelper_1_UnityEngine_BeforeRenderHelper_OrderBlock__SwapIfGreater, (BeforeRenderHelper_OrderBlock__Array * keys, Comparison_1_UnityEngine_BeforeRenderHelper_OrderBlock_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_BeforeRenderHelper_OrderBlock_ *, ArraySortHelper_1_UnityEngine_BeforeRenderHelper_OrderBlock__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page___ctor, (ArraySortHelper_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FC36C0, int32_t, ArraySortHelper_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__BinarySearch, (ArraySortHelper_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page_ * __this, BitmapAllocator32_Page__Array * array, int32_t index, int32_t length, BitmapAllocator32_Page value, IComparer_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21900, ArraySortHelper_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FC40D0, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__DownHeap, (BitmapAllocator32_Page__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__Heapsort, (BitmapAllocator32_Page__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC42E0, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__InsertionSort, (BitmapAllocator32_Page__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page_ * comparer, MethodInfo * method)); @@ -124824,13 +137917,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_Bitma DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__IntrospectiveSort, (BitmapAllocator32_Page__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC3C80, int32_t, ArraySortHelper_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__PickPivotAndPartition, (BitmapAllocator32_Page__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC3830, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__Sort, (BitmapAllocator32_Page__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D218F8, ArraySortHelper_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__Sort__MethodInfo); DO_APP_FUNC(0x00FC3450, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__Sort_1, (ArraySortHelper_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page_ * __this, BitmapAllocator32_Page__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D218C8, ArraySortHelper_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__Sort_1__MethodInfo); DO_APP_FUNC(0x00FC3C30, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__Swap, (BitmapAllocator32_Page__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FC3B20, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__SwapIfGreater, (BitmapAllocator32_Page__Array * keys, Comparison_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page_ *, ArraySortHelper_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_Camera_RenderRequest___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_Camera_RenderRequest___ctor, (ArraySortHelper_1_UnityEngine_Camera_RenderRequest_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FC46C0, int32_t, ArraySortHelper_1_UnityEngine_Camera_RenderRequest__BinarySearch, (ArraySortHelper_1_UnityEngine_Camera_RenderRequest_ * __this, Camera_RenderRequest__Array * array, int32_t index, int32_t length, Camera_RenderRequest value, IComparer_1_UnityEngine_Camera_RenderRequest_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D218E8, ArraySortHelper_1_UnityEngine_Camera_RenderRequest__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FC4DB0, void, ArraySortHelper_1_UnityEngine_Camera_RenderRequest__DownHeap, (Camera_RenderRequest__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_Camera_RenderRequest_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_Camera_RenderRequest__Heapsort, (Camera_RenderRequest__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Camera_RenderRequest_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC5110, void, ArraySortHelper_1_UnityEngine_Camera_RenderRequest__InsertionSort, (Camera_RenderRequest__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Camera_RenderRequest_ * comparer, MethodInfo * method)); @@ -124839,13 +137935,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_Camera_RenderRequest DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_Camera_RenderRequest__IntrospectiveSort, (Camera_RenderRequest__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_Camera_RenderRequest_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB71C0, int32_t, ArraySortHelper_1_UnityEngine_Camera_RenderRequest__PickPivotAndPartition, (Camera_RenderRequest__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Camera_RenderRequest_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC4840, void, ArraySortHelper_1_UnityEngine_Camera_RenderRequest__Sort, (Camera_RenderRequest__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_Camera_RenderRequest_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D218A0, ArraySortHelper_1_UnityEngine_Camera_RenderRequest__Sort__MethodInfo); DO_APP_FUNC(0x00FC4450, void, ArraySortHelper_1_UnityEngine_Camera_RenderRequest__Sort_1, (ArraySortHelper_1_UnityEngine_Camera_RenderRequest_ * __this, Camera_RenderRequest__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_Camera_RenderRequest_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D218F0, ArraySortHelper_1_UnityEngine_Camera_RenderRequest__Sort_1__MethodInfo); DO_APP_FUNC(0x00FC4C40, void, ArraySortHelper_1_UnityEngine_Camera_RenderRequest__Swap, (Camera_RenderRequest__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FC49C0, void, ArraySortHelper_1_UnityEngine_Camera_RenderRequest__SwapIfGreater, (Camera_RenderRequest__Array * keys, Comparison_1_UnityEngine_Camera_RenderRequest_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_Camera_RenderRequest_ *, ArraySortHelper_1_UnityEngine_Camera_RenderRequest__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_Cinemachine_CameraState_CustomBlendable___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_Cinemachine_CameraState_CustomBlendable___ctor, (ArraySortHelper_1_Cinemachine_CameraState_CustomBlendable_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FC5560, int32_t, ArraySortHelper_1_Cinemachine_CameraState_CustomBlendable__BinarySearch, (ArraySortHelper_1_Cinemachine_CameraState_CustomBlendable_ * __this, CameraState_CustomBlendable__Array * array, int32_t index, int32_t length, CameraState_CustomBlendable value, IComparer_1_Cinemachine_CameraState_CustomBlendable_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21890, ArraySortHelper_1_Cinemachine_CameraState_CustomBlendable__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FC5BC0, void, ArraySortHelper_1_Cinemachine_CameraState_CustomBlendable__DownHeap, (CameraState_CustomBlendable__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_Cinemachine_CameraState_CustomBlendable_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_Cinemachine_CameraState_CustomBlendable__Heapsort, (CameraState_CustomBlendable__Array * keys, int32_t lo, int32_t hi, Comparison_1_Cinemachine_CameraState_CustomBlendable_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC5E90, void, ArraySortHelper_1_Cinemachine_CameraState_CustomBlendable__InsertionSort, (CameraState_CustomBlendable__Array * keys, int32_t lo, int32_t hi, Comparison_1_Cinemachine_CameraState_CustomBlendable_ * comparer, MethodInfo * method)); @@ -124854,13 +137953,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_Cinemachine_CameraState_CustomBl DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_Cinemachine_CameraState_CustomBlendable__IntrospectiveSort, (CameraState_CustomBlendable__Array * keys, int32_t left, int32_t length, Comparison_1_Cinemachine_CameraState_CustomBlendable_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5FD0, int32_t, ArraySortHelper_1_Cinemachine_CameraState_CustomBlendable__PickPivotAndPartition, (CameraState_CustomBlendable__Array * keys, int32_t lo, int32_t hi, Comparison_1_Cinemachine_CameraState_CustomBlendable_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC56E0, void, ArraySortHelper_1_Cinemachine_CameraState_CustomBlendable__Sort, (CameraState_CustomBlendable__Array * keys, int32_t index, int32_t length, Comparison_1_Cinemachine_CameraState_CustomBlendable_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21888, ArraySortHelper_1_Cinemachine_CameraState_CustomBlendable__Sort__MethodInfo); DO_APP_FUNC(0x00FC52F0, void, ArraySortHelper_1_Cinemachine_CameraState_CustomBlendable__Sort_1, (ArraySortHelper_1_Cinemachine_CameraState_CustomBlendable_ * __this, CameraState_CustomBlendable__Array * keys, int32_t index, int32_t length, IComparer_1_Cinemachine_CameraState_CustomBlendable_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21898, ArraySortHelper_1_Cinemachine_CameraState_CustomBlendable__Sort_1__MethodInfo); DO_APP_FUNC(0x00FC5A80, void, ArraySortHelper_1_Cinemachine_CameraState_CustomBlendable__Swap, (CameraState_CustomBlendable__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FC5860, void, ArraySortHelper_1_Cinemachine_CameraState_CustomBlendable__SwapIfGreater, (CameraState_CustomBlendable__Array * keys, Comparison_1_Cinemachine_CameraState_CustomBlendable_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_Cinemachine_CameraState_CustomBlendable_ *, ArraySortHelper_1_Cinemachine_CameraState_CustomBlendable__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_Cinemachine_CinemachineClearShot_Pair___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_Cinemachine_CinemachineClearShot_Pair___ctor, (ArraySortHelper_1_Cinemachine_CinemachineClearShot_Pair_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FC62B0, int32_t, ArraySortHelper_1_Cinemachine_CinemachineClearShot_Pair__BinarySearch, (ArraySortHelper_1_Cinemachine_CinemachineClearShot_Pair_ * __this, CinemachineClearShot_Pair__Array * array, int32_t index, int32_t length, CinemachineClearShot_Pair value, IComparer_1_Cinemachine_CinemachineClearShot_Pair_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D218B8, ArraySortHelper_1_Cinemachine_CinemachineClearShot_Pair__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FC40D0, void, ArraySortHelper_1_Cinemachine_CinemachineClearShot_Pair__DownHeap, (CinemachineClearShot_Pair__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_Cinemachine_CinemachineClearShot_Pair_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_Cinemachine_CinemachineClearShot_Pair__Heapsort, (CinemachineClearShot_Pair__Array * keys, int32_t lo, int32_t hi, Comparison_1_Cinemachine_CinemachineClearShot_Pair_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC42E0, void, ArraySortHelper_1_Cinemachine_CinemachineClearShot_Pair__InsertionSort, (CinemachineClearShot_Pair__Array * keys, int32_t lo, int32_t hi, Comparison_1_Cinemachine_CinemachineClearShot_Pair_ * comparer, MethodInfo * method)); @@ -124869,13 +137971,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_Cinemachine_CinemachineClearShot DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_Cinemachine_CinemachineClearShot_Pair__IntrospectiveSort, (CinemachineClearShot_Pair__Array * keys, int32_t left, int32_t length, Comparison_1_Cinemachine_CinemachineClearShot_Pair_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC3C80, int32_t, ArraySortHelper_1_Cinemachine_CinemachineClearShot_Pair__PickPivotAndPartition, (CinemachineClearShot_Pair__Array * keys, int32_t lo, int32_t hi, Comparison_1_Cinemachine_CinemachineClearShot_Pair_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC6420, void, ArraySortHelper_1_Cinemachine_CinemachineClearShot_Pair__Sort, (CinemachineClearShot_Pair__Array * keys, int32_t index, int32_t length, Comparison_1_Cinemachine_CinemachineClearShot_Pair_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D218B0, ArraySortHelper_1_Cinemachine_CinemachineClearShot_Pair__Sort__MethodInfo); DO_APP_FUNC(0x00FC6040, void, ArraySortHelper_1_Cinemachine_CinemachineClearShot_Pair__Sort_1, (ArraySortHelper_1_Cinemachine_CinemachineClearShot_Pair_ * __this, CinemachineClearShot_Pair__Array * keys, int32_t index, int32_t length, IComparer_1_Cinemachine_CinemachineClearShot_Pair_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D218C0, ArraySortHelper_1_Cinemachine_CinemachineClearShot_Pair__Sort_1__MethodInfo); DO_APP_FUNC(0x00FC3C30, void, ArraySortHelper_1_Cinemachine_CinemachineClearShot_Pair__Swap, (CinemachineClearShot_Pair__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FC3B20, void, ArraySortHelper_1_Cinemachine_CinemachineClearShot_Pair__SwapIfGreater, (CinemachineClearShot_Pair__Array * keys, Comparison_1_Cinemachine_CinemachineClearShot_Pair_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_Cinemachine_CinemachineClearShot_Pair_ *, ArraySortHelper_1_Cinemachine_CinemachineClearShot_Pair__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_Cinemachine_CinemachineStateDrivenCamera_HashPair___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_Cinemachine_CinemachineStateDrivenCamera_HashPair___ctor, (ArraySortHelper_1_Cinemachine_CinemachineStateDrivenCamera_HashPair_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FC6810, int32_t, ArraySortHelper_1_Cinemachine_CinemachineStateDrivenCamera_HashPair__BinarySearch, (ArraySortHelper_1_Cinemachine_CinemachineStateDrivenCamera_HashPair_ * __this, CinemachineStateDrivenCamera_HashPair__Array * array, int32_t index, int32_t length, CinemachineStateDrivenCamera_HashPair value, IComparer_1_Cinemachine_CinemachineStateDrivenCamera_HashPair_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21860, ArraySortHelper_1_Cinemachine_CinemachineStateDrivenCamera_HashPair__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FC40D0, void, ArraySortHelper_1_Cinemachine_CinemachineStateDrivenCamera_HashPair__DownHeap, (CinemachineStateDrivenCamera_HashPair__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_Cinemachine_CinemachineStateDrivenCamera_HashPair_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_Cinemachine_CinemachineStateDrivenCamera_HashPair__Heapsort, (CinemachineStateDrivenCamera_HashPair__Array * keys, int32_t lo, int32_t hi, Comparison_1_Cinemachine_CinemachineStateDrivenCamera_HashPair_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC42E0, void, ArraySortHelper_1_Cinemachine_CinemachineStateDrivenCamera_HashPair__InsertionSort, (CinemachineStateDrivenCamera_HashPair__Array * keys, int32_t lo, int32_t hi, Comparison_1_Cinemachine_CinemachineStateDrivenCamera_HashPair_ * comparer, MethodInfo * method)); @@ -124884,13 +137989,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_Cinemachine_CinemachineStateDriv DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_Cinemachine_CinemachineStateDrivenCamera_HashPair__IntrospectiveSort, (CinemachineStateDrivenCamera_HashPair__Array * keys, int32_t left, int32_t length, Comparison_1_Cinemachine_CinemachineStateDrivenCamera_HashPair_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC3C80, int32_t, ArraySortHelper_1_Cinemachine_CinemachineStateDrivenCamera_HashPair__PickPivotAndPartition, (CinemachineStateDrivenCamera_HashPair__Array * keys, int32_t lo, int32_t hi, Comparison_1_Cinemachine_CinemachineStateDrivenCamera_HashPair_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC6980, void, ArraySortHelper_1_Cinemachine_CinemachineStateDrivenCamera_HashPair__Sort, (CinemachineStateDrivenCamera_HashPair__Array * keys, int32_t index, int32_t length, Comparison_1_Cinemachine_CinemachineStateDrivenCamera_HashPair_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21858, ArraySortHelper_1_Cinemachine_CinemachineStateDrivenCamera_HashPair__Sort__MethodInfo); DO_APP_FUNC(0x00FC65A0, void, ArraySortHelper_1_Cinemachine_CinemachineStateDrivenCamera_HashPair__Sort_1, (ArraySortHelper_1_Cinemachine_CinemachineStateDrivenCamera_HashPair_ * __this, CinemachineStateDrivenCamera_HashPair__Array * keys, int32_t index, int32_t length, IComparer_1_Cinemachine_CinemachineStateDrivenCamera_HashPair_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D218A8, ArraySortHelper_1_Cinemachine_CinemachineStateDrivenCamera_HashPair__Sort_1__MethodInfo); DO_APP_FUNC(0x00FC3C30, void, ArraySortHelper_1_Cinemachine_CinemachineStateDrivenCamera_HashPair__Swap, (CinemachineStateDrivenCamera_HashPair__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FC3B20, void, ArraySortHelper_1_Cinemachine_CinemachineStateDrivenCamera_HashPair__SwapIfGreater, (CinemachineStateDrivenCamera_HashPair__Array * keys, Comparison_1_Cinemachine_CinemachineStateDrivenCamera_HashPair_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_Cinemachine_CinemachineStateDrivenCamera_HashPair_ *, ArraySortHelper_1_Cinemachine_CinemachineStateDrivenCamera_HashPair__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_Cinemachine_ClipperLib_DoublePoint___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_Cinemachine_ClipperLib_DoublePoint___ctor, (ArraySortHelper_1_Cinemachine_ClipperLib_DoublePoint_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FC6D70, int32_t, ArraySortHelper_1_Cinemachine_ClipperLib_DoublePoint__BinarySearch, (ArraySortHelper_1_Cinemachine_ClipperLib_DoublePoint_ * __this, ClipperLib_DoublePoint__Array * array, int32_t index, int32_t length, ClipperLib_DoublePoint value, IComparer_1_Cinemachine_ClipperLib_DoublePoint_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21848, ArraySortHelper_1_Cinemachine_ClipperLib_DoublePoint__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FC7930, void, ArraySortHelper_1_Cinemachine_ClipperLib_DoublePoint__DownHeap, (ClipperLib_DoublePoint__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_Cinemachine_ClipperLib_DoublePoint_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_Cinemachine_ClipperLib_DoublePoint__Heapsort, (ClipperLib_DoublePoint__Array * keys, int32_t lo, int32_t hi, Comparison_1_Cinemachine_ClipperLib_DoublePoint_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC7C20, void, ArraySortHelper_1_Cinemachine_ClipperLib_DoublePoint__InsertionSort, (ClipperLib_DoublePoint__Array * keys, int32_t lo, int32_t hi, Comparison_1_Cinemachine_ClipperLib_DoublePoint_ * comparer, MethodInfo * method)); @@ -124899,13 +138007,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_Cinemachine_ClipperLib_DoublePoi DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_Cinemachine_ClipperLib_DoublePoint__IntrospectiveSort, (ClipperLib_DoublePoint__Array * keys, int32_t left, int32_t length, Comparison_1_Cinemachine_ClipperLib_DoublePoint_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC7460, int32_t, ArraySortHelper_1_Cinemachine_ClipperLib_DoublePoint__PickPivotAndPartition, (ClipperLib_DoublePoint__Array * keys, int32_t lo, int32_t hi, Comparison_1_Cinemachine_ClipperLib_DoublePoint_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC6EF0, void, ArraySortHelper_1_Cinemachine_ClipperLib_DoublePoint__Sort, (ClipperLib_DoublePoint__Array * keys, int32_t index, int32_t length, Comparison_1_Cinemachine_ClipperLib_DoublePoint_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21880, ArraySortHelper_1_Cinemachine_ClipperLib_DoublePoint__Sort__MethodInfo); DO_APP_FUNC(0x00FC6B00, void, ArraySortHelper_1_Cinemachine_ClipperLib_DoublePoint__Sort_1, (ArraySortHelper_1_Cinemachine_ClipperLib_DoublePoint_ * __this, ClipperLib_DoublePoint__Array * keys, int32_t index, int32_t length, IComparer_1_Cinemachine_ClipperLib_DoublePoint_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21850, ArraySortHelper_1_Cinemachine_ClipperLib_DoublePoint__Sort_1__MethodInfo); DO_APP_FUNC(0x00FC73D0, void, ArraySortHelper_1_Cinemachine_ClipperLib_DoublePoint__Swap, (ClipperLib_DoublePoint__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FC7220, void, ArraySortHelper_1_Cinemachine_ClipperLib_DoublePoint__SwapIfGreater, (ClipperLib_DoublePoint__Array * keys, Comparison_1_Cinemachine_ClipperLib_DoublePoint_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_Cinemachine_ClipperLib_DoublePoint_ *, ArraySortHelper_1_Cinemachine_ClipperLib_DoublePoint__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_Cinemachine_ClipperLib_IntPoint___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_Cinemachine_ClipperLib_IntPoint___ctor, (ArraySortHelper_1_Cinemachine_ClipperLib_IntPoint_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FC8080, int32_t, ArraySortHelper_1_Cinemachine_ClipperLib_IntPoint__BinarySearch, (ArraySortHelper_1_Cinemachine_ClipperLib_IntPoint_ * __this, ClipperLib_IntPoint__Array * array, int32_t index, int32_t length, ClipperLib_IntPoint value, IComparer_1_Cinemachine_ClipperLib_IntPoint_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21870, ArraySortHelper_1_Cinemachine_ClipperLib_IntPoint__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FB6460, void, ArraySortHelper_1_Cinemachine_ClipperLib_IntPoint__DownHeap, (ClipperLib_IntPoint__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_Cinemachine_ClipperLib_IntPoint_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_Cinemachine_ClipperLib_IntPoint__Heapsort, (ClipperLib_IntPoint__Array * keys, int32_t lo, int32_t hi, Comparison_1_Cinemachine_ClipperLib_IntPoint_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5730, void, ArraySortHelper_1_Cinemachine_ClipperLib_IntPoint__InsertionSort, (ClipperLib_IntPoint__Array * keys, int32_t lo, int32_t hi, Comparison_1_Cinemachine_ClipperLib_IntPoint_ * comparer, MethodInfo * method)); @@ -124914,13 +138025,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_Cinemachine_ClipperLib_IntPoint_ DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_Cinemachine_ClipperLib_IntPoint__IntrospectiveSort, (ClipperLib_IntPoint__Array * keys, int32_t left, int32_t length, Comparison_1_Cinemachine_ClipperLib_IntPoint_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5FD0, int32_t, ArraySortHelper_1_Cinemachine_ClipperLib_IntPoint__PickPivotAndPartition, (ClipperLib_IntPoint__Array * keys, int32_t lo, int32_t hi, Comparison_1_Cinemachine_ClipperLib_IntPoint_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC8200, void, ArraySortHelper_1_Cinemachine_ClipperLib_IntPoint__Sort, (ClipperLib_IntPoint__Array * keys, int32_t index, int32_t length, Comparison_1_Cinemachine_ClipperLib_IntPoint_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21868, ArraySortHelper_1_Cinemachine_ClipperLib_IntPoint__Sort__MethodInfo); DO_APP_FUNC(0x00FC7E10, void, ArraySortHelper_1_Cinemachine_ClipperLib_IntPoint__Sort_1, (ArraySortHelper_1_Cinemachine_ClipperLib_IntPoint_ * __this, ClipperLib_IntPoint__Array * keys, int32_t index, int32_t length, IComparer_1_Cinemachine_ClipperLib_IntPoint_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21878, ArraySortHelper_1_Cinemachine_ClipperLib_IntPoint__Sort_1__MethodInfo); DO_APP_FUNC(0x00FB4FC0, void, ArraySortHelper_1_Cinemachine_ClipperLib_IntPoint__Swap, (ClipperLib_IntPoint__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FB4E70, void, ArraySortHelper_1_Cinemachine_ClipperLib_IntPoint__SwapIfGreater, (ClipperLib_IntPoint__Array * keys, Comparison_1_Cinemachine_ClipperLib_IntPoint_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_Cinemachine_ClipperLib_IntPoint_ *, ArraySortHelper_1_Cinemachine_ClipperLib_IntPoint__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_Cinemachine_ConfinerOven_PolygonSolution___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_Cinemachine_ConfinerOven_PolygonSolution___ctor, (ArraySortHelper_1_Cinemachine_ConfinerOven_PolygonSolution_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FC85F0, int32_t, ArraySortHelper_1_Cinemachine_ConfinerOven_PolygonSolution__BinarySearch, (ArraySortHelper_1_Cinemachine_ConfinerOven_PolygonSolution_ * __this, ConfinerOven_PolygonSolution__Array * array, int32_t index, int32_t length, ConfinerOven_PolygonSolution value, IComparer_1_Cinemachine_ConfinerOven_PolygonSolution_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21818, ArraySortHelper_1_Cinemachine_ConfinerOven_PolygonSolution__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FC5BC0, void, ArraySortHelper_1_Cinemachine_ConfinerOven_PolygonSolution__DownHeap, (ConfinerOven_PolygonSolution__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_Cinemachine_ConfinerOven_PolygonSolution_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_Cinemachine_ConfinerOven_PolygonSolution__Heapsort, (ConfinerOven_PolygonSolution__Array * keys, int32_t lo, int32_t hi, Comparison_1_Cinemachine_ConfinerOven_PolygonSolution_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC5E90, void, ArraySortHelper_1_Cinemachine_ConfinerOven_PolygonSolution__InsertionSort, (ConfinerOven_PolygonSolution__Array * keys, int32_t lo, int32_t hi, Comparison_1_Cinemachine_ConfinerOven_PolygonSolution_ * comparer, MethodInfo * method)); @@ -124929,13 +138043,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_Cinemachine_ConfinerOven_Polygon DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_Cinemachine_ConfinerOven_PolygonSolution__IntrospectiveSort, (ConfinerOven_PolygonSolution__Array * keys, int32_t left, int32_t length, Comparison_1_Cinemachine_ConfinerOven_PolygonSolution_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5FD0, int32_t, ArraySortHelper_1_Cinemachine_ConfinerOven_PolygonSolution__PickPivotAndPartition, (ConfinerOven_PolygonSolution__Array * keys, int32_t lo, int32_t hi, Comparison_1_Cinemachine_ConfinerOven_PolygonSolution_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC8770, void, ArraySortHelper_1_Cinemachine_ConfinerOven_PolygonSolution__Sort, (ConfinerOven_PolygonSolution__Array * keys, int32_t index, int32_t length, Comparison_1_Cinemachine_ConfinerOven_PolygonSolution_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21810, ArraySortHelper_1_Cinemachine_ConfinerOven_PolygonSolution__Sort__MethodInfo); DO_APP_FUNC(0x00FC8380, void, ArraySortHelper_1_Cinemachine_ConfinerOven_PolygonSolution__Sort_1, (ArraySortHelper_1_Cinemachine_ConfinerOven_PolygonSolution_ * __this, ConfinerOven_PolygonSolution__Array * keys, int32_t index, int32_t length, IComparer_1_Cinemachine_ConfinerOven_PolygonSolution_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21820, ArraySortHelper_1_Cinemachine_ConfinerOven_PolygonSolution__Sort_1__MethodInfo); DO_APP_FUNC(0x00FC5A80, void, ArraySortHelper_1_Cinemachine_ConfinerOven_PolygonSolution__Swap, (ConfinerOven_PolygonSolution__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FC5860, void, ArraySortHelper_1_Cinemachine_ConfinerOven_PolygonSolution__SwapIfGreater, (ConfinerOven_PolygonSolution__Array * keys, Comparison_1_Cinemachine_ConfinerOven_PolygonSolution_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_Cinemachine_ConfinerOven_PolygonSolution_ *, ArraySortHelper_1_Cinemachine_ConfinerOven_PolygonSolution__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB___ctor, (ArraySortHelper_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FC8B60, int32_t, ArraySortHelper_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__BinarySearch, (ArraySortHelper_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * __this, CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__Array * array, int32_t index, int32_t length, CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB value, IComparer_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21840, ArraySortHelper_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FB42A0, void, ArraySortHelper_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__DownHeap, (CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__Heapsort, (CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__Array * keys, int32_t lo, int32_t hi, Comparison_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB4580, void, ArraySortHelper_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__InsertionSort, (CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__Array * keys, int32_t lo, int32_t hi, Comparison_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * comparer, MethodInfo * method)); @@ -124944,13 +138061,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_Rewired_ComponentControls_Custom DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__IntrospectiveSort, (CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__Array * keys, int32_t left, int32_t length, Comparison_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB3DC0, int32_t, ArraySortHelper_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__PickPivotAndPartition, (CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__Array * keys, int32_t lo, int32_t hi, Comparison_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC8CE0, void, ArraySortHelper_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__Sort, (CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__Array * keys, int32_t index, int32_t length, Comparison_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21838, ArraySortHelper_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__Sort__MethodInfo); DO_APP_FUNC(0x00FC88F0, void, ArraySortHelper_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__Sort_1, (ArraySortHelper_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * __this, CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__Array * keys, int32_t index, int32_t length, IComparer_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21808, ArraySortHelper_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__Sort_1__MethodInfo); DO_APP_FUNC(0x00FB3D40, void, ArraySortHelper_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__Swap, (CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FB3BC0, void, ArraySortHelper_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__SwapIfGreater, (CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__Array * keys, Comparison_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ *, ArraySortHelper_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo___ctor, (ArraySortHelper_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FC90D0, int32_t, ArraySortHelper_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__BinarySearch, (ArraySortHelper_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ * __this, DelayedActionManager_DelegateInfo__Array * array, int32_t index, int32_t length, DelayedActionManager_DelegateInfo value, IComparer_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21828, ArraySortHelper_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FBA3F0, void, ArraySortHelper_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__DownHeap, (DelayedActionManager_DelegateInfo__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__Heapsort, (DelayedActionManager_DelegateInfo__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FBA740, void, ArraySortHelper_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__InsertionSort, (DelayedActionManager_DelegateInfo__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ * comparer, MethodInfo * method)); @@ -124959,13 +138079,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_ResourceManagement_U DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__IntrospectiveSort, (DelayedActionManager_DelegateInfo__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB9EF0, int32_t, ArraySortHelper_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__PickPivotAndPartition, (DelayedActionManager_DelegateInfo__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC9250, void, ArraySortHelper_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__Sort, (DelayedActionManager_DelegateInfo__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D217E0, ArraySortHelper_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__Sort__MethodInfo); DO_APP_FUNC(0x00FC8E60, void, ArraySortHelper_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__Sort_1, (ArraySortHelper_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ * __this, DelayedActionManager_DelegateInfo__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21830, ArraySortHelper_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__Sort_1__MethodInfo); DO_APP_FUNC(0x00FB9D90, void, ArraySortHelper_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__Swap, (DelayedActionManager_DelegateInfo__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FB9B10, void, ArraySortHelper_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__SwapIfGreater, (DelayedActionManager_DelegateInfo__Array * keys, Comparison_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ *, ArraySortHelper_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_Photon_Bolt_EventDispatcher_CallbackWrapper___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_Photon_Bolt_EventDispatcher_CallbackWrapper___ctor, (ArraySortHelper_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FC9640, int32_t, ArraySortHelper_1_Photon_Bolt_EventDispatcher_CallbackWrapper__BinarySearch, (ArraySortHelper_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ * __this, EventDispatcher_CallbackWrapper__Array * array, int32_t index, int32_t length, EventDispatcher_CallbackWrapper value, IComparer_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D217D0, ArraySortHelper_1_Photon_Bolt_EventDispatcher_CallbackWrapper__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FC5BC0, void, ArraySortHelper_1_Photon_Bolt_EventDispatcher_CallbackWrapper__DownHeap, (EventDispatcher_CallbackWrapper__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_Photon_Bolt_EventDispatcher_CallbackWrapper__Heapsort, (EventDispatcher_CallbackWrapper__Array * keys, int32_t lo, int32_t hi, Comparison_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC5E90, void, ArraySortHelper_1_Photon_Bolt_EventDispatcher_CallbackWrapper__InsertionSort, (EventDispatcher_CallbackWrapper__Array * keys, int32_t lo, int32_t hi, Comparison_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ * comparer, MethodInfo * method)); @@ -124974,13 +138097,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_Photon_Bolt_EventDispatcher_Call DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_Photon_Bolt_EventDispatcher_CallbackWrapper__IntrospectiveSort, (EventDispatcher_CallbackWrapper__Array * keys, int32_t left, int32_t length, Comparison_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5FD0, int32_t, ArraySortHelper_1_Photon_Bolt_EventDispatcher_CallbackWrapper__PickPivotAndPartition, (EventDispatcher_CallbackWrapper__Array * keys, int32_t lo, int32_t hi, Comparison_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC97C0, void, ArraySortHelper_1_Photon_Bolt_EventDispatcher_CallbackWrapper__Sort, (EventDispatcher_CallbackWrapper__Array * keys, int32_t index, int32_t length, Comparison_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D217C8, ArraySortHelper_1_Photon_Bolt_EventDispatcher_CallbackWrapper__Sort__MethodInfo); DO_APP_FUNC(0x00FC93D0, void, ArraySortHelper_1_Photon_Bolt_EventDispatcher_CallbackWrapper__Sort_1, (ArraySortHelper_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ * __this, EventDispatcher_CallbackWrapper__Array * keys, int32_t index, int32_t length, IComparer_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D217D8, ArraySortHelper_1_Photon_Bolt_EventDispatcher_CallbackWrapper__Sort_1__MethodInfo); DO_APP_FUNC(0x00FC5A80, void, ArraySortHelper_1_Photon_Bolt_EventDispatcher_CallbackWrapper__Swap, (EventDispatcher_CallbackWrapper__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FC5860, void, ArraySortHelper_1_Photon_Bolt_EventDispatcher_CallbackWrapper__SwapIfGreater, (EventDispatcher_CallbackWrapper__Array * keys, Comparison_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ *, ArraySortHelper_1_Photon_Bolt_EventDispatcher_CallbackWrapper__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_Photon_Bolt_EventDispatcher_EventListener___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_Photon_Bolt_EventDispatcher_EventListener___ctor, (ArraySortHelper_1_Photon_Bolt_EventDispatcher_EventListener_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FC9BB0, int32_t, ArraySortHelper_1_Photon_Bolt_EventDispatcher_EventListener__BinarySearch, (ArraySortHelper_1_Photon_Bolt_EventDispatcher_EventListener_ * __this, EventDispatcher_EventListener__Array * array, int32_t index, int32_t length, EventDispatcher_EventListener value, IComparer_1_Photon_Bolt_EventDispatcher_EventListener_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D217F8, ArraySortHelper_1_Photon_Bolt_EventDispatcher_EventListener__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FBFCE0, void, ArraySortHelper_1_Photon_Bolt_EventDispatcher_EventListener__DownHeap, (EventDispatcher_EventListener__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_Photon_Bolt_EventDispatcher_EventListener_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_Photon_Bolt_EventDispatcher_EventListener__Heapsort, (EventDispatcher_EventListener__Array * keys, int32_t lo, int32_t hi, Comparison_1_Photon_Bolt_EventDispatcher_EventListener_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC0040, void, ArraySortHelper_1_Photon_Bolt_EventDispatcher_EventListener__InsertionSort, (EventDispatcher_EventListener__Array * keys, int32_t lo, int32_t hi, Comparison_1_Photon_Bolt_EventDispatcher_EventListener_ * comparer, MethodInfo * method)); @@ -124989,13 +138115,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_Photon_Bolt_EventDispatcher_Even DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_Photon_Bolt_EventDispatcher_EventListener__IntrospectiveSort, (EventDispatcher_EventListener__Array * keys, int32_t left, int32_t length, Comparison_1_Photon_Bolt_EventDispatcher_EventListener_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB71C0, int32_t, ArraySortHelper_1_Photon_Bolt_EventDispatcher_EventListener__PickPivotAndPartition, (EventDispatcher_EventListener__Array * keys, int32_t lo, int32_t hi, Comparison_1_Photon_Bolt_EventDispatcher_EventListener_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC9D30, void, ArraySortHelper_1_Photon_Bolt_EventDispatcher_EventListener__Sort, (EventDispatcher_EventListener__Array * keys, int32_t index, int32_t length, Comparison_1_Photon_Bolt_EventDispatcher_EventListener_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D217F0, ArraySortHelper_1_Photon_Bolt_EventDispatcher_EventListener__Sort__MethodInfo); DO_APP_FUNC(0x00FC9940, void, ArraySortHelper_1_Photon_Bolt_EventDispatcher_EventListener__Sort_1, (ArraySortHelper_1_Photon_Bolt_EventDispatcher_EventListener_ * __this, EventDispatcher_EventListener__Array * keys, int32_t index, int32_t length, IComparer_1_Photon_Bolt_EventDispatcher_EventListener_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21800, ArraySortHelper_1_Photon_Bolt_EventDispatcher_EventListener__Sort_1__MethodInfo); DO_APP_FUNC(0x00FBFB80, void, ArraySortHelper_1_Photon_Bolt_EventDispatcher_EventListener__Swap, (EventDispatcher_EventListener__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FBF920, void, ArraySortHelper_1_Photon_Bolt_EventDispatcher_EventListener__SwapIfGreater, (EventDispatcher_EventListener__Array * keys, Comparison_1_Photon_Bolt_EventDispatcher_EventListener_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_Photon_Bolt_EventDispatcher_EventListener_ *, ArraySortHelper_1_Photon_Bolt_EventDispatcher_EventListener__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_Dissonance_Networking_Client_EventQueue_NetworkEvent___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_Dissonance_Networking_Client_EventQueue_NetworkEvent___ctor, (ArraySortHelper_1_Dissonance_Networking_Client_EventQueue_NetworkEvent_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FCA120, int32_t, ArraySortHelper_1_Dissonance_Networking_Client_EventQueue_NetworkEvent__BinarySearch, (ArraySortHelper_1_Dissonance_Networking_Client_EventQueue_NetworkEvent_ * __this, EventQueue_NetworkEvent__Array * array, int32_t index, int32_t length, EventQueue_NetworkEvent value, IComparer_1_Dissonance_Networking_Client_EventQueue_NetworkEvent_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D217B8, ArraySortHelper_1_Dissonance_Networking_Client_EventQueue_NetworkEvent__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FCB400, void, ArraySortHelper_1_Dissonance_Networking_Client_EventQueue_NetworkEvent__DownHeap, (EventQueue_NetworkEvent__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_Dissonance_Networking_Client_EventQueue_NetworkEvent_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_Dissonance_Networking_Client_EventQueue_NetworkEvent__Heapsort, (EventQueue_NetworkEvent__Array * keys, int32_t lo, int32_t hi, Comparison_1_Dissonance_Networking_Client_EventQueue_NetworkEvent_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FCB8A0, void, ArraySortHelper_1_Dissonance_Networking_Client_EventQueue_NetworkEvent__InsertionSort, (EventQueue_NetworkEvent__Array * keys, int32_t lo, int32_t hi, Comparison_1_Dissonance_Networking_Client_EventQueue_NetworkEvent_ * comparer, MethodInfo * method)); @@ -125004,13 +138133,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_Dissonance_Networking_Client_Eve DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_Dissonance_Networking_Client_EventQueue_NetworkEvent__IntrospectiveSort, (EventQueue_NetworkEvent__Array * keys, int32_t left, int32_t length, Comparison_1_Dissonance_Networking_Client_EventQueue_NetworkEvent_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FCAD50, int32_t, ArraySortHelper_1_Dissonance_Networking_Client_EventQueue_NetworkEvent__PickPivotAndPartition, (EventQueue_NetworkEvent__Array * keys, int32_t lo, int32_t hi, Comparison_1_Dissonance_Networking_Client_EventQueue_NetworkEvent_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FCA300, void, ArraySortHelper_1_Dissonance_Networking_Client_EventQueue_NetworkEvent__Sort, (EventQueue_NetworkEvent__Array * keys, int32_t index, int32_t length, Comparison_1_Dissonance_Networking_Client_EventQueue_NetworkEvent_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D217B0, ArraySortHelper_1_Dissonance_Networking_Client_EventQueue_NetworkEvent__Sort__MethodInfo); DO_APP_FUNC(0x00FC9EB0, void, ArraySortHelper_1_Dissonance_Networking_Client_EventQueue_NetworkEvent__Sort_1, (ArraySortHelper_1_Dissonance_Networking_Client_EventQueue_NetworkEvent_ * __this, EventQueue_NetworkEvent__Array * keys, int32_t index, int32_t length, IComparer_1_Dissonance_Networking_Client_EventQueue_NetworkEvent_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D217E8, ArraySortHelper_1_Dissonance_Networking_Client_EventQueue_NetworkEvent__Sort_1__MethodInfo); DO_APP_FUNC(0x00FCAB60, void, ArraySortHelper_1_Dissonance_Networking_Client_EventQueue_NetworkEvent__Swap, (EventQueue_NetworkEvent__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FCA770, void, ArraySortHelper_1_Dissonance_Networking_Client_EventQueue_NetworkEvent__SwapIfGreater, (EventQueue_NetworkEvent__Array * keys, Comparison_1_Dissonance_Networking_Client_EventQueue_NetworkEvent_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_Dissonance_Networking_Client_EventQueue_NetworkEvent_ *, ArraySortHelper_1_Dissonance_Networking_Client_EventQueue_NetworkEvent__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_UIElements_FocusController_FocusedElement___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_UIElements_FocusController_FocusedElement___ctor, (ArraySortHelper_1_UnityEngine_UIElements_FocusController_FocusedElement_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FCBE50, int32_t, ArraySortHelper_1_UnityEngine_UIElements_FocusController_FocusedElement__BinarySearch, (ArraySortHelper_1_UnityEngine_UIElements_FocusController_FocusedElement_ * __this, FocusController_FocusedElement__Array * array, int32_t index, int32_t length, FocusController_FocusedElement value, IComparer_1_UnityEngine_UIElements_FocusController_FocusedElement_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D217A0, ArraySortHelper_1_UnityEngine_UIElements_FocusController_FocusedElement__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FC5BC0, void, ArraySortHelper_1_UnityEngine_UIElements_FocusController_FocusedElement__DownHeap, (FocusController_FocusedElement__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_UIElements_FocusController_FocusedElement_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_UIElements_FocusController_FocusedElement__Heapsort, (FocusController_FocusedElement__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_FocusController_FocusedElement_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC5E90, void, ArraySortHelper_1_UnityEngine_UIElements_FocusController_FocusedElement__InsertionSort, (FocusController_FocusedElement__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_FocusController_FocusedElement_ * comparer, MethodInfo * method)); @@ -125019,13 +138151,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_UIElements_FocusCont DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_UIElements_FocusController_FocusedElement__IntrospectiveSort, (FocusController_FocusedElement__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_UIElements_FocusController_FocusedElement_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5FD0, int32_t, ArraySortHelper_1_UnityEngine_UIElements_FocusController_FocusedElement__PickPivotAndPartition, (FocusController_FocusedElement__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_FocusController_FocusedElement_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FCBFD0, void, ArraySortHelper_1_UnityEngine_UIElements_FocusController_FocusedElement__Sort, (FocusController_FocusedElement__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_UIElements_FocusController_FocusedElement_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D217C0, ArraySortHelper_1_UnityEngine_UIElements_FocusController_FocusedElement__Sort__MethodInfo); DO_APP_FUNC(0x00FCBBE0, void, ArraySortHelper_1_UnityEngine_UIElements_FocusController_FocusedElement__Sort_1, (ArraySortHelper_1_UnityEngine_UIElements_FocusController_FocusedElement_ * __this, FocusController_FocusedElement__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_UIElements_FocusController_FocusedElement_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D217A8, ArraySortHelper_1_UnityEngine_UIElements_FocusController_FocusedElement__Sort_1__MethodInfo); DO_APP_FUNC(0x00FC5A80, void, ArraySortHelper_1_UnityEngine_UIElements_FocusController_FocusedElement__Swap, (FocusController_FocusedElement__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FC5860, void, ArraySortHelper_1_UnityEngine_UIElements_FocusController_FocusedElement__SwapIfGreater, (FocusController_FocusedElement__Array * keys, Comparison_1_UnityEngine_UIElements_FocusController_FocusedElement_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_UIElements_FocusController_FocusedElement_ *, ArraySortHelper_1_UnityEngine_UIElements_FocusController_FocusedElement__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_Pathfinding_Funnel_PathPart___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_Pathfinding_Funnel_PathPart___ctor, (ArraySortHelper_1_Pathfinding_Funnel_PathPart_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0109D490, int32_t, ArraySortHelper_1_Pathfinding_Funnel_PathPart__BinarySearch, (ArraySortHelper_1_Pathfinding_Funnel_PathPart_ * __this, Funnel_PathPart__Array * array, int32_t index, int32_t length, Funnel_PathPart value, IComparer_1_Pathfinding_Funnel_PathPart_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF44C8, ArraySortHelper_1_Pathfinding_Funnel_PathPart__BinarySearch__MethodInfo); DO_APP_FUNC(0x0109E120, void, ArraySortHelper_1_Pathfinding_Funnel_PathPart__DownHeap, (Funnel_PathPart__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_Pathfinding_Funnel_PathPart_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_Pathfinding_Funnel_PathPart__Heapsort, (Funnel_PathPart__Array * keys, int32_t lo, int32_t hi, Comparison_1_Pathfinding_Funnel_PathPart_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0109E470, void, ArraySortHelper_1_Pathfinding_Funnel_PathPart__InsertionSort, (Funnel_PathPart__Array * keys, int32_t lo, int32_t hi, Comparison_1_Pathfinding_Funnel_PathPart_ * comparer, MethodInfo * method)); @@ -125034,13 +138169,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_Pathfinding_Funnel_PathPart__Int DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_Pathfinding_Funnel_PathPart__IntrospectiveSort, (Funnel_PathPart__Array * keys, int32_t left, int32_t length, Comparison_1_Pathfinding_Funnel_PathPart_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0109DBD0, int32_t, ArraySortHelper_1_Pathfinding_Funnel_PathPart__PickPivotAndPartition, (Funnel_PathPart__Array * keys, int32_t lo, int32_t hi, Comparison_1_Pathfinding_Funnel_PathPart_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0109D620, void, ArraySortHelper_1_Pathfinding_Funnel_PathPart__Sort, (Funnel_PathPart__Array * keys, int32_t index, int32_t length, Comparison_1_Pathfinding_Funnel_PathPart_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4460, ArraySortHelper_1_Pathfinding_Funnel_PathPart__Sort__MethodInfo); DO_APP_FUNC(0x0109D220, void, ArraySortHelper_1_Pathfinding_Funnel_PathPart__Sort_1, (ArraySortHelper_1_Pathfinding_Funnel_PathPart_ * __this, Funnel_PathPart__Array * keys, int32_t index, int32_t length, IComparer_1_Pathfinding_Funnel_PathPart_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF44B8, ArraySortHelper_1_Pathfinding_Funnel_PathPart__Sort_1__MethodInfo); DO_APP_FUNC(0x0109DB40, void, ArraySortHelper_1_Pathfinding_Funnel_PathPart__Swap, (Funnel_PathPart__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x0109D970, void, ArraySortHelper_1_Pathfinding_Funnel_PathPart__SwapIfGreater, (Funnel_PathPart__Array * keys, Comparison_1_Pathfinding_Funnel_PathPart_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_Pathfinding_Funnel_PathPart_ *, ArraySortHelper_1_Pathfinding_Funnel_PathPart__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor___ctor, (ArraySortHelper_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0109E910, int32_t, ArraySortHelper_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__BinarySearch, (ArraySortHelper_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * __this, HID_HIDCollectionDescriptor__Array * array, int32_t index, int32_t length, HID_HIDCollectionDescriptor value, IComparer_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4440, ArraySortHelper_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__BinarySearch__MethodInfo); DO_APP_FUNC(0x0109EE20, void, ArraySortHelper_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__DownHeap, (HID_HIDCollectionDescriptor__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__Heapsort, (HID_HIDCollectionDescriptor__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0109F100, void, ArraySortHelper_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__InsertionSort, (HID_HIDCollectionDescriptor__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * comparer, MethodInfo * method)); @@ -125049,13 +138187,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_InputSystem_HID_HID_ DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__IntrospectiveSort, (HID_HIDCollectionDescriptor__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB71C0, int32_t, ArraySortHelper_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__PickPivotAndPartition, (HID_HIDCollectionDescriptor__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0109EA90, void, ArraySortHelper_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__Sort, (HID_HIDCollectionDescriptor__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4450, ArraySortHelper_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__Sort__MethodInfo); DO_APP_FUNC(0x0109E6A0, void, ArraySortHelper_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__Sort_1, (ArraySortHelper_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * __this, HID_HIDCollectionDescriptor__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4468, ArraySortHelper_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__Sort_1__MethodInfo); DO_APP_FUNC(0x0109EDA0, void, ArraySortHelper_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__Swap, (HID_HIDCollectionDescriptor__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x0109EC10, void, ArraySortHelper_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__SwapIfGreater, (HID_HIDCollectionDescriptor__Array * keys, Comparison_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ *, ArraySortHelper_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor___ctor, (ArraySortHelper_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0109F550, int32_t, ArraySortHelper_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__BinarySearch, (ArraySortHelper_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * __this, HID_HIDElementDescriptor__Array * array, int32_t index, int32_t length, HID_HIDElementDescriptor value, IComparer_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4490, ArraySortHelper_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__BinarySearch__MethodInfo); DO_APP_FUNC(0x010A03F0, void, ArraySortHelper_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__DownHeap, (HID_HIDElementDescriptor__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__Heapsort, (HID_HIDElementDescriptor__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010A07E0, void, ArraySortHelper_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__InsertionSort, (HID_HIDElementDescriptor__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * comparer, MethodInfo * method)); @@ -125064,13 +138205,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_InputSystem_HID_HID_ DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__IntrospectiveSort, (HID_HIDElementDescriptor__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0109FE30, int32_t, ArraySortHelper_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__PickPivotAndPartition, (HID_HIDElementDescriptor__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0109F700, void, ArraySortHelper_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__Sort, (HID_HIDElementDescriptor__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4470, ArraySortHelper_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__Sort__MethodInfo); DO_APP_FUNC(0x0109F2E0, void, ArraySortHelper_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__Sort_1, (ArraySortHelper_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * __this, HID_HIDElementDescriptor__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4488, ArraySortHelper_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__Sort_1__MethodInfo); DO_APP_FUNC(0x0109FD50, void, ArraySortHelper_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__Swap, (HID_HIDElementDescriptor__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x0109FAC0, void, ArraySortHelper_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__SwapIfGreater, (HID_HIDElementDescriptor__Array * keys, Comparison_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ *, ArraySortHelper_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData___ctor, (ArraySortHelper_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010A0D20, int32_t, ArraySortHelper_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__BinarySearch, (ArraySortHelper_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_ * __this, HIDParser_HIDReportData__Array * array, int32_t index, int32_t length, HIDParser_HIDReportData value, IComparer_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4400, ArraySortHelper_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FB42A0, void, ArraySortHelper_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__DownHeap, (HIDParser_HIDReportData__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__Heapsort, (HIDParser_HIDReportData__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB4580, void, ArraySortHelper_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__InsertionSort, (HIDParser_HIDReportData__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_ * comparer, MethodInfo * method)); @@ -125079,13 +138223,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_InputSystem_HID_HIDP DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__IntrospectiveSort, (HIDParser_HIDReportData__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB3DC0, int32_t, ArraySortHelper_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__PickPivotAndPartition, (HIDParser_HIDReportData__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010A0EA0, void, ArraySortHelper_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__Sort, (HIDParser_HIDReportData__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4408, ArraySortHelper_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__Sort__MethodInfo); DO_APP_FUNC(0x010A0AB0, void, ArraySortHelper_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__Sort_1, (ArraySortHelper_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_ * __this, HIDParser_HIDReportData__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4480, ArraySortHelper_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__Sort_1__MethodInfo); DO_APP_FUNC(0x00FB3D40, void, ArraySortHelper_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__Swap, (HIDParser_HIDReportData__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FB3BC0, void, ArraySortHelper_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__SwapIfGreater, (HIDParser_HIDReportData__Array * keys, Comparison_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_ *, ArraySortHelper_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData___ctor, (ArraySortHelper_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010A1290, int32_t, ArraySortHelper_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__BinarySearch, (ArraySortHelper_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * __this, HairDesignerGeneratorFurShellBase_BufferData__Array * array, int32_t index, int32_t length, HairDesignerGeneratorFurShellBase_BufferData value, IComparer_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF43F8, ArraySortHelper_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__BinarySearch__MethodInfo); DO_APP_FUNC(0x010A1D10, void, ArraySortHelper_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__DownHeap, (HairDesignerGeneratorFurShellBase_BufferData__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__Heapsort, (HairDesignerGeneratorFurShellBase_BufferData__Array * keys, int32_t lo, int32_t hi, Comparison_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010A1F30, void, ArraySortHelper_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__InsertionSort, (HairDesignerGeneratorFurShellBase_BufferData__Array * keys, int32_t lo, int32_t hi, Comparison_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * comparer, MethodInfo * method)); @@ -125094,13 +138241,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_Kalagaan_HairDesignerExtension_H DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__IntrospectiveSort, (HairDesignerGeneratorFurShellBase_BufferData__Array * keys, int32_t left, int32_t length, Comparison_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010A18A0, int32_t, ArraySortHelper_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__PickPivotAndPartition, (HairDesignerGeneratorFurShellBase_BufferData__Array * keys, int32_t lo, int32_t hi, Comparison_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010A1400, void, ArraySortHelper_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__Sort, (HairDesignerGeneratorFurShellBase_BufferData__Array * keys, int32_t index, int32_t length, Comparison_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4430, ArraySortHelper_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__Sort__MethodInfo); DO_APP_FUNC(0x010A1020, void, ArraySortHelper_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__Sort_1, (ArraySortHelper_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * __this, HairDesignerGeneratorFurShellBase_BufferData__Array * keys, int32_t index, int32_t length, IComparer_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF43F0, ArraySortHelper_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__Sort_1__MethodInfo); DO_APP_FUNC(0x010A1840, void, ArraySortHelper_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__Swap, (HairDesignerGeneratorFurShellBase_BufferData__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x010A1720, void, ArraySortHelper_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__SwapIfGreater, (HairDesignerGeneratorFurShellBase_BufferData__Array * keys, Comparison_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ *, ArraySortHelper_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson___ctor, (ArraySortHelper_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010A2300, int32_t, ArraySortHelper_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__BinarySearch, (ArraySortHelper_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * __this, InputActionMap_BindingOverrideJson__Array * array, int32_t index, int32_t length, InputActionMap_BindingOverrideJson value, IComparer_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4410, ArraySortHelper_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__BinarySearch__MethodInfo); DO_APP_FUNC(0x010A29B0, void, ArraySortHelper_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__DownHeap, (InputActionMap_BindingOverrideJson__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__Heapsort, (InputActionMap_BindingOverrideJson__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010A2DA0, void, ArraySortHelper_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__InsertionSort, (InputActionMap_BindingOverrideJson__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * comparer, MethodInfo * method)); @@ -125109,13 +138259,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_InputSystem_InputAct DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__IntrospectiveSort, (InputActionMap_BindingOverrideJson__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB1280, int32_t, ArraySortHelper_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__PickPivotAndPartition, (InputActionMap_BindingOverrideJson__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010A2490, void, ArraySortHelper_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__Sort, (InputActionMap_BindingOverrideJson__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4420, ArraySortHelper_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__Sort__MethodInfo); DO_APP_FUNC(0x010A2090, void, ArraySortHelper_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__Sort_1, (ArraySortHelper_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * __this, InputActionMap_BindingOverrideJson__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4438, ArraySortHelper_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__Sort_1__MethodInfo); DO_APP_FUNC(0x010A2830, void, ArraySortHelper_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__Swap, (InputActionMap_BindingOverrideJson__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x010A2610, void, ArraySortHelper_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__SwapIfGreater, (InputActionMap_BindingOverrideJson__Array * keys, Comparison_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ *, ArraySortHelper_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___ctor, (ArraySortHelper_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010A3250, int32_t, ArraySortHelper_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__BinarySearch, (ArraySortHelper_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, InputControlLayout_ControlItem__Array * array, int32_t index, int32_t length, InputControlLayout_ControlItem value, IComparer_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF43C0, ArraySortHelper_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__BinarySearch__MethodInfo); DO_APP_FUNC(0x010A4430, void, ArraySortHelper_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__DownHeap, (InputControlLayout_ControlItem__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__Heapsort, (InputControlLayout_ControlItem__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010A4980, void, ArraySortHelper_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__InsertionSort, (InputControlLayout_ControlItem__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * comparer, MethodInfo * method)); @@ -125124,13 +138277,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_InputSystem_Layouts_ DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__IntrospectiveSort, (InputControlLayout_ControlItem__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010A3D90, int32_t, ArraySortHelper_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__PickPivotAndPartition, (InputControlLayout_ControlItem__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010A3450, void, ArraySortHelper_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__Sort, (InputControlLayout_ControlItem__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF43A8, ArraySortHelper_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__Sort__MethodInfo); DO_APP_FUNC(0x010A2FE0, void, ArraySortHelper_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__Sort_1, (ArraySortHelper_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, InputControlLayout_ControlItem__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF43B8, ArraySortHelper_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__Sort_1__MethodInfo); DO_APP_FUNC(0x010A3BF0, void, ArraySortHelper_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__Swap, (InputControlLayout_ControlItem__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x010A3880, void, ArraySortHelper_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__SwapIfGreater, (InputControlLayout_ControlItem__Array * keys, Comparison_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ *, ArraySortHelper_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper___ctor, (ArraySortHelper_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010A4F80, int32_t, ArraySortHelper_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__BinarySearch, (ArraySortHelper_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * __this, InternalTreeView_TreeViewItemWrapper__Array * array, int32_t index, int32_t length, InternalTreeView_TreeViewItemWrapper value, IComparer_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF43D8, ArraySortHelper_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FBEF30, void, ArraySortHelper_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__DownHeap, (InternalTreeView_TreeViewItemWrapper__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__Heapsort, (InternalTreeView_TreeViewItemWrapper__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FBF200, void, ArraySortHelper_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__InsertionSort, (InternalTreeView_TreeViewItemWrapper__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * comparer, MethodInfo * method)); @@ -125139,13 +138295,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_UIElements_InternalT DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__IntrospectiveSort, (InternalTreeView_TreeViewItemWrapper__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5FD0, int32_t, ArraySortHelper_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__PickPivotAndPartition, (InternalTreeView_TreeViewItemWrapper__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010A5100, void, ArraySortHelper_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__Sort, (InternalTreeView_TreeViewItemWrapper__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF43E0, ArraySortHelper_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__Sort__MethodInfo); DO_APP_FUNC(0x010A4D10, void, ArraySortHelper_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__Sort_1, (ArraySortHelper_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * __this, InternalTreeView_TreeViewItemWrapper__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF43B0, ArraySortHelper_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__Sort_1__MethodInfo); DO_APP_FUNC(0x00FBEDF0, void, ArraySortHelper_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__Swap, (InternalTreeView_TreeViewItemWrapper__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FBEBD0, void, ArraySortHelper_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__SwapIfGreater, (InternalTreeView_TreeViewItemWrapper__Array * keys, Comparison_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ *, ArraySortHelper_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV___ctor, (ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010A54F0, int32_t, ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__BinarySearch, (ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV_ * __this, JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__Array * array, int32_t index, int32_t length, JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV value, IComparer_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF43D0, ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FBEF30, void, ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__DownHeap, (JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__Heapsort, (JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__Array * keys, int32_t lo, int32_t hi, Comparison_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FBF200, void, ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__InsertionSort, (JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__Array * keys, int32_t lo, int32_t hi, Comparison_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV_ * comparer, MethodInfo * method)); @@ -125154,13 +138313,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aA DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__IntrospectiveSort, (JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__Array * keys, int32_t left, int32_t length, Comparison_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5FD0, int32_t, ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__PickPivotAndPartition, (JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__Array * keys, int32_t lo, int32_t hi, Comparison_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010A5670, void, ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__Sort, (JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__Array * keys, int32_t index, int32_t length, Comparison_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4378, ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__Sort__MethodInfo); DO_APP_FUNC(0x010A5280, void, ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__Sort_1, (ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV_ * __this, JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__Array * keys, int32_t index, int32_t length, IComparer_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF43C8, ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__Sort_1__MethodInfo); DO_APP_FUNC(0x00FBEDF0, void, ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__Swap, (JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FBEBD0, void, ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__SwapIfGreater, (JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__Array * keys, Comparison_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV_ *, ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb___ctor, (ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010A5A60, int32_t, ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__BinarySearch, (ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ * __this, JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__Array * array, int32_t index, int32_t length, JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb value, IComparer_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4368, ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__BinarySearch__MethodInfo); DO_APP_FUNC(0x010A6150, void, ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__DownHeap, (JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__Heapsort, (JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__Array * keys, int32_t lo, int32_t hi, Comparison_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010A6550, void, ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__InsertionSort, (JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__Array * keys, int32_t lo, int32_t hi, Comparison_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ * comparer, MethodInfo * method)); @@ -125169,13 +138331,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_ei DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__IntrospectiveSort, (JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__Array * keys, int32_t left, int32_t length, Comparison_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0109FE30, int32_t, ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__PickPivotAndPartition, (JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__Array * keys, int32_t lo, int32_t hi, Comparison_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010A5C10, void, ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__Sort, (JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__Array * keys, int32_t index, int32_t length, Comparison_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4370, ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__Sort__MethodInfo); DO_APP_FUNC(0x010A57F0, void, ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__Sort_1, (ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ * __this, JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__Array * keys, int32_t index, int32_t length, IComparer_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4380, ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__Sort_1__MethodInfo); DO_APP_FUNC(0x010A6020, void, ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__Swap, (JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x010A5D90, void, ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__SwapIfGreater, (JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__Array * keys, Comparison_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ *, ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux___ctor, (ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010A6A50, int32_t, ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__BinarySearch, (ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux_ * __this, JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__Array * array, int32_t index, int32_t length, JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux value, IComparer_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF43A0, ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FBEF30, void, ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__DownHeap, (JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__Heapsort, (JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__Array * keys, int32_t lo, int32_t hi, Comparison_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FBF200, void, ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__InsertionSort, (JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__Array * keys, int32_t lo, int32_t hi, Comparison_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux_ * comparer, MethodInfo * method)); @@ -125184,13 +138349,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lb DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__IntrospectiveSort, (JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__Array * keys, int32_t left, int32_t length, Comparison_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5FD0, int32_t, ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__PickPivotAndPartition, (JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__Array * keys, int32_t lo, int32_t hi, Comparison_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010A6BD0, void, ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__Sort, (JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__Array * keys, int32_t index, int32_t length, Comparison_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4388, ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__Sort__MethodInfo); DO_APP_FUNC(0x010A67E0, void, ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__Sort_1, (ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux_ * __this, JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__Array * keys, int32_t index, int32_t length, IComparer_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4398, ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__Sort_1__MethodInfo); DO_APP_FUNC(0x00FBEDF0, void, ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__Swap, (JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FBEBD0, void, ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__SwapIfGreater, (JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__Array * keys, Comparison_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux_ *, ArraySortHelper_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___ctor, (ArraySortHelper_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010A6FC0, int32_t, ArraySortHelper_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__BinarySearch, (ArraySortHelper_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, JsonParser_JsonValue__Array * array, int32_t index, int32_t length, JsonParser_JsonValue value, IComparer_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4328, ArraySortHelper_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__BinarySearch__MethodInfo); DO_APP_FUNC(0x010A76B0, void, ArraySortHelper_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__DownHeap, (JsonParser_JsonValue__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__Heapsort, (JsonParser_JsonValue__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010A7AB0, void, ArraySortHelper_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__InsertionSort, (JsonParser_JsonValue__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * comparer, MethodInfo * method)); @@ -125199,13 +138367,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_InputSystem_Utilitie DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__IntrospectiveSort, (JsonParser_JsonValue__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0109FE30, int32_t, ArraySortHelper_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__PickPivotAndPartition, (JsonParser_JsonValue__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010A7170, void, ArraySortHelper_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__Sort, (JsonParser_JsonValue__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4338, ArraySortHelper_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__Sort__MethodInfo); DO_APP_FUNC(0x010A6D50, void, ArraySortHelper_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__Sort_1, (ArraySortHelper_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, JsonParser_JsonValue__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4390, ArraySortHelper_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__Sort_1__MethodInfo); DO_APP_FUNC(0x010A7580, void, ArraySortHelper_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__Swap, (JsonParser_JsonValue__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x010A72F0, void, ArraySortHelper_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__SwapIfGreater, (JsonParser_JsonValue__Array * keys, Comparison_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ *, ArraySortHelper_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage___ctor, (ArraySortHelper_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010A7FB0, int32_t, ArraySortHelper_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__BinarySearch, (ArraySortHelper_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * __this, Logs_LogMessage__Array * array, int32_t index, int32_t length, Logs_LogMessage value, IComparer_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4318, ArraySortHelper_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FBEF30, void, ArraySortHelper_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__DownHeap, (Logs_LogMessage__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__Heapsort, (Logs_LogMessage__Array * keys, int32_t lo, int32_t hi, Comparison_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FBF200, void, ArraySortHelper_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__InsertionSort, (Logs_LogMessage__Array * keys, int32_t lo, int32_t hi, Comparison_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * comparer, MethodInfo * method)); @@ -125214,13 +138385,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_PlaceholderSoftware_WetStuff_Deb DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__IntrospectiveSort, (Logs_LogMessage__Array * keys, int32_t left, int32_t length, Comparison_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5FD0, int32_t, ArraySortHelper_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__PickPivotAndPartition, (Logs_LogMessage__Array * keys, int32_t lo, int32_t hi, Comparison_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010A8130, void, ArraySortHelper_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__Sort, (Logs_LogMessage__Array * keys, int32_t index, int32_t length, Comparison_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4358, ArraySortHelper_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__Sort__MethodInfo); DO_APP_FUNC(0x010A7D40, void, ArraySortHelper_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__Sort_1, (ArraySortHelper_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * __this, Logs_LogMessage__Array * keys, int32_t index, int32_t length, IComparer_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4310, ArraySortHelper_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__Sort_1__MethodInfo); DO_APP_FUNC(0x00FBEDF0, void, ArraySortHelper_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__Swap, (Logs_LogMessage__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FBEBD0, void, ArraySortHelper_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__SwapIfGreater, (Logs_LogMessage__Array * keys, Comparison_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ *, ArraySortHelper_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_MagicLightProbes_MagicLightProbes_VolumeParameters___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_MagicLightProbes_MagicLightProbes_VolumeParameters___ctor, (ArraySortHelper_1_MagicLightProbes_MagicLightProbes_VolumeParameters_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010A8520, int32_t, ArraySortHelper_1_MagicLightProbes_MagicLightProbes_VolumeParameters__BinarySearch, (ArraySortHelper_1_MagicLightProbes_MagicLightProbes_VolumeParameters_ * __this, MagicLightProbes_VolumeParameters__Array * array, int32_t index, int32_t length, MagicLightProbes_VolumeParameters value, IComparer_1_MagicLightProbes_MagicLightProbes_VolumeParameters_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4340, ArraySortHelper_1_MagicLightProbes_MagicLightProbes_VolumeParameters__BinarySearch__MethodInfo); DO_APP_FUNC(0x010A9190, void, ArraySortHelper_1_MagicLightProbes_MagicLightProbes_VolumeParameters__DownHeap, (MagicLightProbes_VolumeParameters__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_MagicLightProbes_MagicLightProbes_VolumeParameters_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_MagicLightProbes_MagicLightProbes_VolumeParameters__Heapsort, (MagicLightProbes_VolumeParameters__Array * keys, int32_t lo, int32_t hi, Comparison_1_MagicLightProbes_MagicLightProbes_VolumeParameters_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010A94D0, void, ArraySortHelper_1_MagicLightProbes_MagicLightProbes_VolumeParameters__InsertionSort, (MagicLightProbes_VolumeParameters__Array * keys, int32_t lo, int32_t hi, Comparison_1_MagicLightProbes_MagicLightProbes_VolumeParameters_ * comparer, MethodInfo * method)); @@ -125229,13 +138403,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_MagicLightProbes_MagicLightProbe DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_MagicLightProbes_MagicLightProbes_VolumeParameters__IntrospectiveSort, (MagicLightProbes_VolumeParameters__Array * keys, int32_t left, int32_t length, Comparison_1_MagicLightProbes_MagicLightProbes_VolumeParameters_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010A8C60, int32_t, ArraySortHelper_1_MagicLightProbes_MagicLightProbes_VolumeParameters__PickPivotAndPartition, (MagicLightProbes_VolumeParameters__Array * keys, int32_t lo, int32_t hi, Comparison_1_MagicLightProbes_MagicLightProbes_VolumeParameters_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010A86B0, void, ArraySortHelper_1_MagicLightProbes_MagicLightProbes_VolumeParameters__Sort, (MagicLightProbes_VolumeParameters__Array * keys, int32_t index, int32_t length, Comparison_1_MagicLightProbes_MagicLightProbes_VolumeParameters_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4350, ArraySortHelper_1_MagicLightProbes_MagicLightProbes_VolumeParameters__Sort__MethodInfo); DO_APP_FUNC(0x010A82B0, void, ArraySortHelper_1_MagicLightProbes_MagicLightProbes_VolumeParameters__Sort_1, (ArraySortHelper_1_MagicLightProbes_MagicLightProbes_VolumeParameters_ * __this, MagicLightProbes_VolumeParameters__Array * keys, int32_t index, int32_t length, IComparer_1_MagicLightProbes_MagicLightProbes_VolumeParameters_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4360, ArraySortHelper_1_MagicLightProbes_MagicLightProbes_VolumeParameters__Sort_1__MethodInfo); DO_APP_FUNC(0x010A8BC0, void, ArraySortHelper_1_MagicLightProbes_MagicLightProbes_VolumeParameters__Swap, (MagicLightProbes_VolumeParameters__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x010A8A00, void, ArraySortHelper_1_MagicLightProbes_MagicLightProbes_VolumeParameters__SwapIfGreater, (MagicLightProbes_VolumeParameters__Array * keys, Comparison_1_MagicLightProbes_MagicLightProbes_VolumeParameters_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_MagicLightProbes_MagicLightProbes_VolumeParameters_ *, ArraySortHelper_1_MagicLightProbes_MagicLightProbes_VolumeParameters__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_NolanBehaviour_OverlappedCollider___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_NolanBehaviour_OverlappedCollider___ctor, (ArraySortHelper_1_NolanBehaviour_OverlappedCollider_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010A9970, int32_t, ArraySortHelper_1_NolanBehaviour_OverlappedCollider__BinarySearch, (ArraySortHelper_1_NolanBehaviour_OverlappedCollider_ * __this, NolanBehaviour_OverlappedCollider__Array * array, int32_t index, int32_t length, NolanBehaviour_OverlappedCollider value, IComparer_1_NolanBehaviour_OverlappedCollider_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF42C8, ArraySortHelper_1_NolanBehaviour_OverlappedCollider__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FC5BC0, void, ArraySortHelper_1_NolanBehaviour_OverlappedCollider__DownHeap, (NolanBehaviour_OverlappedCollider__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_NolanBehaviour_OverlappedCollider_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_NolanBehaviour_OverlappedCollider__Heapsort, (NolanBehaviour_OverlappedCollider__Array * keys, int32_t lo, int32_t hi, Comparison_1_NolanBehaviour_OverlappedCollider_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC5E90, void, ArraySortHelper_1_NolanBehaviour_OverlappedCollider__InsertionSort, (NolanBehaviour_OverlappedCollider__Array * keys, int32_t lo, int32_t hi, Comparison_1_NolanBehaviour_OverlappedCollider_ * comparer, MethodInfo * method)); @@ -125244,13 +138421,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_NolanBehaviour_OverlappedCollide DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_NolanBehaviour_OverlappedCollider__IntrospectiveSort, (NolanBehaviour_OverlappedCollider__Array * keys, int32_t left, int32_t length, Comparison_1_NolanBehaviour_OverlappedCollider_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5FD0, int32_t, ArraySortHelper_1_NolanBehaviour_OverlappedCollider__PickPivotAndPartition, (NolanBehaviour_OverlappedCollider__Array * keys, int32_t lo, int32_t hi, Comparison_1_NolanBehaviour_OverlappedCollider_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010A9AF0, void, ArraySortHelper_1_NolanBehaviour_OverlappedCollider__Sort, (NolanBehaviour_OverlappedCollider__Array * keys, int32_t index, int32_t length, Comparison_1_NolanBehaviour_OverlappedCollider_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF42A0, ArraySortHelper_1_NolanBehaviour_OverlappedCollider__Sort__MethodInfo); DO_APP_FUNC(0x010A9700, void, ArraySortHelper_1_NolanBehaviour_OverlappedCollider__Sort_1, (ArraySortHelper_1_NolanBehaviour_OverlappedCollider_ * __this, NolanBehaviour_OverlappedCollider__Array * keys, int32_t index, int32_t length, IComparer_1_NolanBehaviour_OverlappedCollider_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF42B8, ArraySortHelper_1_NolanBehaviour_OverlappedCollider__Sort_1__MethodInfo); DO_APP_FUNC(0x00FC5A80, void, ArraySortHelper_1_NolanBehaviour_OverlappedCollider__Swap, (NolanBehaviour_OverlappedCollider__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FC5860, void, ArraySortHelper_1_NolanBehaviour_OverlappedCollider__SwapIfGreater, (NolanBehaviour_OverlappedCollider__Array * keys, Comparison_1_NolanBehaviour_OverlappedCollider_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_NolanBehaviour_OverlappedCollider_ *, ArraySortHelper_1_NolanBehaviour_OverlappedCollider__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding___ctor, (ArraySortHelper_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010A9EE0, int32_t, ArraySortHelper_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__BinarySearch, (ArraySortHelper_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ * __this, OpenXRInput_SerializedBinding__Array * array, int32_t index, int32_t length, OpenXRInput_SerializedBinding value, IComparer_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF42F8, ArraySortHelper_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FBEF30, void, ArraySortHelper_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__DownHeap, (OpenXRInput_SerializedBinding__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__Heapsort, (OpenXRInput_SerializedBinding__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FBF200, void, ArraySortHelper_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__InsertionSort, (OpenXRInput_SerializedBinding__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ * comparer, MethodInfo * method)); @@ -125259,13 +138439,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_XR_OpenXR_Input_Open DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__IntrospectiveSort, (OpenXRInput_SerializedBinding__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5FD0, int32_t, ArraySortHelper_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__PickPivotAndPartition, (OpenXRInput_SerializedBinding__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010AA060, void, ArraySortHelper_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__Sort, (OpenXRInput_SerializedBinding__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4308, ArraySortHelper_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__Sort__MethodInfo); DO_APP_FUNC(0x010A9C70, void, ArraySortHelper_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__Sort_1, (ArraySortHelper_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ * __this, OpenXRInput_SerializedBinding__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF42A8, ArraySortHelper_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__Sort_1__MethodInfo); DO_APP_FUNC(0x00FBEDF0, void, ArraySortHelper_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__Swap, (OpenXRInput_SerializedBinding__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FBEBD0, void, ArraySortHelper_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__SwapIfGreater, (OpenXRInput_SerializedBinding__Array * keys, Comparison_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ *, ArraySortHelper_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_PackedPlayModeBuildLogs_RuntimeBuildLog___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_PackedPlayModeBuildLogs_RuntimeBuildLog___ctor, (ArraySortHelper_1_PackedPlayModeBuildLogs_RuntimeBuildLog_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010AA450, int32_t, ArraySortHelper_1_PackedPlayModeBuildLogs_RuntimeBuildLog__BinarySearch, (ArraySortHelper_1_PackedPlayModeBuildLogs_RuntimeBuildLog_ * __this, PackedPlayModeBuildLogs_RuntimeBuildLog__Array * array, int32_t index, int32_t length, PackedPlayModeBuildLogs_RuntimeBuildLog value, IComparer_1_PackedPlayModeBuildLogs_RuntimeBuildLog_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF42E8, ArraySortHelper_1_PackedPlayModeBuildLogs_RuntimeBuildLog__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FBEF30, void, ArraySortHelper_1_PackedPlayModeBuildLogs_RuntimeBuildLog__DownHeap, (PackedPlayModeBuildLogs_RuntimeBuildLog__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_PackedPlayModeBuildLogs_RuntimeBuildLog_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_PackedPlayModeBuildLogs_RuntimeBuildLog__Heapsort, (PackedPlayModeBuildLogs_RuntimeBuildLog__Array * keys, int32_t lo, int32_t hi, Comparison_1_PackedPlayModeBuildLogs_RuntimeBuildLog_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FBF200, void, ArraySortHelper_1_PackedPlayModeBuildLogs_RuntimeBuildLog__InsertionSort, (PackedPlayModeBuildLogs_RuntimeBuildLog__Array * keys, int32_t lo, int32_t hi, Comparison_1_PackedPlayModeBuildLogs_RuntimeBuildLog_ * comparer, MethodInfo * method)); @@ -125274,13 +138457,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_PackedPlayModeBuildLogs_RuntimeB DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_PackedPlayModeBuildLogs_RuntimeBuildLog__IntrospectiveSort, (PackedPlayModeBuildLogs_RuntimeBuildLog__Array * keys, int32_t left, int32_t length, Comparison_1_PackedPlayModeBuildLogs_RuntimeBuildLog_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5FD0, int32_t, ArraySortHelper_1_PackedPlayModeBuildLogs_RuntimeBuildLog__PickPivotAndPartition, (PackedPlayModeBuildLogs_RuntimeBuildLog__Array * keys, int32_t lo, int32_t hi, Comparison_1_PackedPlayModeBuildLogs_RuntimeBuildLog_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010AA5D0, void, ArraySortHelper_1_PackedPlayModeBuildLogs_RuntimeBuildLog__Sort, (PackedPlayModeBuildLogs_RuntimeBuildLog__Array * keys, int32_t index, int32_t length, Comparison_1_PackedPlayModeBuildLogs_RuntimeBuildLog_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4268, ArraySortHelper_1_PackedPlayModeBuildLogs_RuntimeBuildLog__Sort__MethodInfo); DO_APP_FUNC(0x010AA1E0, void, ArraySortHelper_1_PackedPlayModeBuildLogs_RuntimeBuildLog__Sort_1, (ArraySortHelper_1_PackedPlayModeBuildLogs_RuntimeBuildLog_ * __this, PackedPlayModeBuildLogs_RuntimeBuildLog__Array * keys, int32_t index, int32_t length, IComparer_1_PackedPlayModeBuildLogs_RuntimeBuildLog_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF42D8, ArraySortHelper_1_PackedPlayModeBuildLogs_RuntimeBuildLog__Sort_1__MethodInfo); DO_APP_FUNC(0x00FBEDF0, void, ArraySortHelper_1_PackedPlayModeBuildLogs_RuntimeBuildLog__Swap, (PackedPlayModeBuildLogs_RuntimeBuildLog__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FBEBD0, void, ArraySortHelper_1_PackedPlayModeBuildLogs_RuntimeBuildLog__SwapIfGreater, (PackedPlayModeBuildLogs_RuntimeBuildLog__Array * keys, Comparison_1_PackedPlayModeBuildLogs_RuntimeBuildLog_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_PackedPlayModeBuildLogs_RuntimeBuildLog_ *, ArraySortHelper_1_PackedPlayModeBuildLogs_RuntimeBuildLog__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_ParticleSystem_Particle___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_ParticleSystem_Particle___ctor, (ArraySortHelper_1_UnityEngine_ParticleSystem_Particle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010AA9C0, int32_t, ArraySortHelper_1_UnityEngine_ParticleSystem_Particle__BinarySearch, (ArraySortHelper_1_UnityEngine_ParticleSystem_Particle_ * __this, ParticleSystem_Particle__Array * array, int32_t index, int32_t length, ParticleSystem_Particle value, IComparer_1_UnityEngine_ParticleSystem_Particle_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4258, ArraySortHelper_1_UnityEngine_ParticleSystem_Particle__BinarySearch__MethodInfo); DO_APP_FUNC(0x010ABC50, void, ArraySortHelper_1_UnityEngine_ParticleSystem_Particle__DownHeap, (ParticleSystem_Particle__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_ParticleSystem_Particle_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_ParticleSystem_Particle__Heapsort, (ParticleSystem_Particle__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_ParticleSystem_Particle_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010AC100, void, ArraySortHelper_1_UnityEngine_ParticleSystem_Particle__InsertionSort, (ParticleSystem_Particle__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_ParticleSystem_Particle_ * comparer, MethodInfo * method)); @@ -125289,13 +138475,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_ParticleSystem_Parti DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_ParticleSystem_Particle__IntrospectiveSort, (ParticleSystem_Particle__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_ParticleSystem_Particle_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010AB5A0, int32_t, ArraySortHelper_1_UnityEngine_ParticleSystem_Particle__PickPivotAndPartition, (ParticleSystem_Particle__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_ParticleSystem_Particle_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010AABA0, void, ArraySortHelper_1_UnityEngine_ParticleSystem_Particle__Sort, (ParticleSystem_Particle__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_ParticleSystem_Particle_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4260, ArraySortHelper_1_UnityEngine_ParticleSystem_Particle__Sort__MethodInfo); DO_APP_FUNC(0x010AA750, void, ArraySortHelper_1_UnityEngine_ParticleSystem_Particle__Sort_1, (ArraySortHelper_1_UnityEngine_ParticleSystem_Particle_ * __this, ParticleSystem_Particle__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_ParticleSystem_Particle_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4270, ArraySortHelper_1_UnityEngine_ParticleSystem_Particle__Sort_1__MethodInfo); DO_APP_FUNC(0x010AB410, void, ArraySortHelper_1_UnityEngine_ParticleSystem_Particle__Swap, (ParticleSystem_Particle__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x010AAFF0, void, ArraySortHelper_1_UnityEngine_ParticleSystem_Particle__SwapIfGreater, (ParticleSystem_Particle__Array * keys, Comparison_1_UnityEngine_ParticleSystem_Particle_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_ParticleSystem_Particle_ *, ArraySortHelper_1_UnityEngine_ParticleSystem_Particle__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick___ctor, (ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010AC6A0, int32_t, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick__BinarySearch, (ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick_ * __this, ProbeBrickIndex_Brick__Array * array, int32_t index, int32_t length, ProbeBrickIndex_Brick value, IComparer_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4290, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FB6460, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick__DownHeap, (ProbeBrickIndex_Brick__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick__Heapsort, (ProbeBrickIndex_Brick__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5730, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick__InsertionSort, (ProbeBrickIndex_Brick__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick_ * comparer, MethodInfo * method)); @@ -125304,13 +138493,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_Experimental_Renderi DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick__IntrospectiveSort, (ProbeBrickIndex_Brick__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5FD0, int32_t, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick__PickPivotAndPartition, (ProbeBrickIndex_Brick__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010AC820, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick__Sort, (ProbeBrickIndex_Brick__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4278, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick__Sort__MethodInfo); DO_APP_FUNC(0x010AC430, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick__Sort_1, (ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick_ * __this, ProbeBrickIndex_Brick__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4288, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick__Sort_1__MethodInfo); DO_APP_FUNC(0x00FB4FC0, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick__Swap, (ProbeBrickIndex_Brick__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FB4E70, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick__SwapIfGreater, (ProbeBrickIndex_Brick__Array * keys, Comparison_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick_ *, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick___ctor, (ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010ACC10, int32_t, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick__BinarySearch, (ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick_ * __this, ProbeBrickIndex_ReservedBrick__Array * array, int32_t index, int32_t length, ProbeBrickIndex_ReservedBrick value, IComparer_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4228, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick__BinarySearch__MethodInfo); DO_APP_FUNC(0x010AD780, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick__DownHeap, (ProbeBrickIndex_ReservedBrick__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick__Heapsort, (ProbeBrickIndex_ReservedBrick__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010ADA60, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick__InsertionSort, (ProbeBrickIndex_ReservedBrick__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick_ * comparer, MethodInfo * method)); @@ -125319,13 +138511,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_Experimental_Renderi DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick__IntrospectiveSort, (ProbeBrickIndex_ReservedBrick__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010AD2A0, int32_t, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick__PickPivotAndPartition, (ProbeBrickIndex_ReservedBrick__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010ACD90, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick__Sort, (ProbeBrickIndex_ReservedBrick__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4230, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick__Sort__MethodInfo); DO_APP_FUNC(0x010AC9A0, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick__Sort_1, (ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick_ * __this, ProbeBrickIndex_ReservedBrick__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4280, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick__Sort_1__MethodInfo); DO_APP_FUNC(0x010AD220, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick__Swap, (ProbeBrickIndex_ReservedBrick__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x010AD0B0, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick__SwapIfGreater, (ProbeBrickIndex_ReservedBrick__Array * keys, Comparison_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick_ *, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta___ctor, (ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010ADEB0, int32_t, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta__BinarySearch, (ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta_ * __this, ProbeBrickIndex_VoxelMeta__Array * array, int32_t index, int32_t length, ProbeBrickIndex_VoxelMeta value, IComparer_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4220, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FBEF30, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta__DownHeap, (ProbeBrickIndex_VoxelMeta__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta__Heapsort, (ProbeBrickIndex_VoxelMeta__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FBF200, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta__InsertionSort, (ProbeBrickIndex_VoxelMeta__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta_ * comparer, MethodInfo * method)); @@ -125334,13 +138529,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_Experimental_Renderi DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta__IntrospectiveSort, (ProbeBrickIndex_VoxelMeta__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5FD0, int32_t, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta__PickPivotAndPartition, (ProbeBrickIndex_VoxelMeta__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010AE030, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta__Sort, (ProbeBrickIndex_VoxelMeta__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4248, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta__Sort__MethodInfo); DO_APP_FUNC(0x010ADC40, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta__Sort_1, (ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta_ * __this, ProbeBrickIndex_VoxelMeta__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4218, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta__Sort_1__MethodInfo); DO_APP_FUNC(0x00FBEDF0, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta__Swap, (ProbeBrickIndex_VoxelMeta__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FBEBD0, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta__SwapIfGreater, (ProbeBrickIndex_VoxelMeta__Array * keys, Comparison_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta_ *, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc___ctor, (ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010AE420, int32_t, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__BinarySearch, (ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * __this, ProbeBrickPool_BrickChunkAlloc__Array * array, int32_t index, int32_t length, ProbeBrickPool_BrickChunkAlloc value, IComparer_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4238, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FB42A0, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__DownHeap, (ProbeBrickPool_BrickChunkAlloc__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__Heapsort, (ProbeBrickPool_BrickChunkAlloc__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB4580, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__InsertionSort, (ProbeBrickPool_BrickChunkAlloc__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * comparer, MethodInfo * method)); @@ -125349,13 +138547,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_Experimental_Renderi DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__IntrospectiveSort, (ProbeBrickPool_BrickChunkAlloc__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB3DC0, int32_t, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__PickPivotAndPartition, (ProbeBrickPool_BrickChunkAlloc__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010AE5A0, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__Sort, (ProbeBrickPool_BrickChunkAlloc__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4240, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__Sort__MethodInfo); DO_APP_FUNC(0x010AE1B0, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__Sort_1, (ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * __this, ProbeBrickPool_BrickChunkAlloc__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4250, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__Sort_1__MethodInfo); DO_APP_FUNC(0x00FB3D40, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__Swap, (ProbeBrickPool_BrickChunkAlloc__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FB3BC0, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__SwapIfGreater, (ProbeBrickPool_BrickChunkAlloc__Array * keys, Comparison_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ *, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem___ctor, (ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010AE990, int32_t, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem__BinarySearch, (ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem_ * __this, ProbeVolumePerSceneData_SerializableAssetItem__Array * array, int32_t index, int32_t length, ProbeVolumePerSceneData_SerializableAssetItem value, IComparer_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF41F0, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FBEF30, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem__DownHeap, (ProbeVolumePerSceneData_SerializableAssetItem__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem__Heapsort, (ProbeVolumePerSceneData_SerializableAssetItem__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FBF200, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem__InsertionSort, (ProbeVolumePerSceneData_SerializableAssetItem__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem_ * comparer, MethodInfo * method)); @@ -125364,13 +138565,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_Experimental_Renderi DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem__IntrospectiveSort, (ProbeVolumePerSceneData_SerializableAssetItem__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5FD0, int32_t, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem__PickPivotAndPartition, (ProbeVolumePerSceneData_SerializableAssetItem__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010AEB10, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem__Sort, (ProbeVolumePerSceneData_SerializableAssetItem__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF41D8, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem__Sort__MethodInfo); DO_APP_FUNC(0x010AE720, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem__Sort_1, (ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem_ * __this, ProbeVolumePerSceneData_SerializableAssetItem__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF41E8, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem__Sort_1__MethodInfo); DO_APP_FUNC(0x00FBEDF0, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem__Swap, (ProbeVolumePerSceneData_SerializableAssetItem__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FBEBD0, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem__SwapIfGreater, (ProbeVolumePerSceneData_SerializableAssetItem__Array * keys, Comparison_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem_ *, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem___ctor, (ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010AEF00, int32_t, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem__BinarySearch, (ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem_ * __this, ProbeVolumeSceneData_SerializableBoundItem__Array * array, int32_t index, int32_t length, ProbeVolumeSceneData_SerializableBoundItem value, IComparer_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4208, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem__BinarySearch__MethodInfo); DO_APP_FUNC(0x010AF5E0, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem__DownHeap, (ProbeVolumeSceneData_SerializableBoundItem__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem__Heapsort, (ProbeVolumeSceneData_SerializableBoundItem__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010AF930, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem__InsertionSort, (ProbeVolumeSceneData_SerializableBoundItem__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem_ * comparer, MethodInfo * method)); @@ -125379,13 +138583,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_Experimental_Renderi DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem__IntrospectiveSort, (ProbeVolumeSceneData_SerializableBoundItem__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB9EF0, int32_t, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem__PickPivotAndPartition, (ProbeVolumeSceneData_SerializableBoundItem__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010AF080, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem__Sort, (ProbeVolumeSceneData_SerializableBoundItem__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4210, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem__Sort__MethodInfo); DO_APP_FUNC(0x010AEC90, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem__Sort_1, (ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem_ * __this, ProbeVolumeSceneData_SerializableBoundItem__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF41E0, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem__Sort_1__MethodInfo); DO_APP_FUNC(0x010AF480, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem__Swap, (ProbeVolumeSceneData_SerializableBoundItem__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x010AF200, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem__SwapIfGreater, (ProbeVolumeSceneData_SerializableBoundItem__Array * keys, Comparison_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem_ *, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem___ctor, (ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010AFD80, int32_t, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem__BinarySearch, (ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem_ * __this, ProbeVolumeSceneData_SerializableHasPVItem__Array * array, int32_t index, int32_t length, ProbeVolumeSceneData_SerializableHasPVItem value, IComparer_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4200, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FC5BC0, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem__DownHeap, (ProbeVolumeSceneData_SerializableHasPVItem__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem__Heapsort, (ProbeVolumeSceneData_SerializableHasPVItem__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC5E90, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem__InsertionSort, (ProbeVolumeSceneData_SerializableHasPVItem__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem_ * comparer, MethodInfo * method)); @@ -125394,13 +138601,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_Experimental_Renderi DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem__IntrospectiveSort, (ProbeVolumeSceneData_SerializableHasPVItem__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5FD0, int32_t, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem__PickPivotAndPartition, (ProbeVolumeSceneData_SerializableHasPVItem__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010AFF00, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem__Sort, (ProbeVolumeSceneData_SerializableHasPVItem__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF41A0, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem__Sort__MethodInfo); DO_APP_FUNC(0x010AFB10, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem__Sort_1, (ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem_ * __this, ProbeVolumeSceneData_SerializableHasPVItem__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF41F8, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem__Sort_1__MethodInfo); DO_APP_FUNC(0x00FC5A80, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem__Swap, (ProbeVolumeSceneData_SerializableHasPVItem__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FC5860, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem__SwapIfGreater, (ProbeVolumeSceneData_SerializableHasPVItem__Array * keys, Comparison_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem_ *, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings___ctor, (ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010B02F0, int32_t, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings__BinarySearch, (ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings_ * __this, ProbeVolumeSceneData_SerializablePVBakeSettings__Array * array, int32_t index, int32_t length, ProbeVolumeSceneData_SerializablePVBakeSettings value, IComparer_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4190, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings__BinarySearch__MethodInfo); DO_APP_FUNC(0x010A29B0, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings__DownHeap, (ProbeVolumeSceneData_SerializablePVBakeSettings__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings__Heapsort, (ProbeVolumeSceneData_SerializablePVBakeSettings__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010A2DA0, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings__InsertionSort, (ProbeVolumeSceneData_SerializablePVBakeSettings__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings_ * comparer, MethodInfo * method)); @@ -125409,13 +138619,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_Experimental_Renderi DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings__IntrospectiveSort, (ProbeVolumeSceneData_SerializablePVBakeSettings__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB1280, int32_t, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings__PickPivotAndPartition, (ProbeVolumeSceneData_SerializablePVBakeSettings__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010B0480, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings__Sort, (ProbeVolumeSceneData_SerializablePVBakeSettings__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4198, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings__Sort__MethodInfo); DO_APP_FUNC(0x010B0080, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings__Sort_1, (ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings_ * __this, ProbeVolumeSceneData_SerializablePVBakeSettings__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF41B0, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings__Sort_1__MethodInfo); DO_APP_FUNC(0x010A2830, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings__Swap, (ProbeVolumeSceneData_SerializablePVBakeSettings__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x010A2610, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings__SwapIfGreater, (ProbeVolumeSceneData_SerializablePVBakeSettings__Array * keys, Comparison_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings_ *, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile___ctor, (ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010B0870, int32_t, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile__BinarySearch, (ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile_ * __this, ProbeVolumeSceneData_SerializablePVProfile__Array * array, int32_t index, int32_t length, ProbeVolumeSceneData_SerializablePVProfile value, IComparer_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF41D0, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FC5BC0, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile__DownHeap, (ProbeVolumeSceneData_SerializablePVProfile__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile__Heapsort, (ProbeVolumeSceneData_SerializablePVProfile__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC5E90, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile__InsertionSort, (ProbeVolumeSceneData_SerializablePVProfile__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile_ * comparer, MethodInfo * method)); @@ -125424,13 +138637,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_Experimental_Renderi DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile__IntrospectiveSort, (ProbeVolumeSceneData_SerializablePVProfile__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5FD0, int32_t, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile__PickPivotAndPartition, (ProbeVolumeSceneData_SerializablePVProfile__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010B09F0, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile__Sort, (ProbeVolumeSceneData_SerializablePVProfile__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF41B8, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile__Sort__MethodInfo); DO_APP_FUNC(0x010B0600, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile__Sort_1, (ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile_ * __this, ProbeVolumeSceneData_SerializablePVProfile__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF41C8, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile__Sort_1__MethodInfo); DO_APP_FUNC(0x00FC5A80, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile__Swap, (ProbeVolumeSceneData_SerializablePVProfile__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FC5860, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile__SwapIfGreater, (ProbeVolumeSceneData_SerializablePVProfile__Array * keys, Comparison_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile_ *, ArraySortHelper_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_System_Text_RegularExpressions_RegexCharClass_SingleRange___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_System_Text_RegularExpressions_RegexCharClass_SingleRange___ctor, (ArraySortHelper_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010B0DE0, int32_t, ArraySortHelper_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__BinarySearch, (ArraySortHelper_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * __this, RegexCharClass_SingleRange__Array * array, int32_t index, int32_t length, RegexCharClass_SingleRange value, IComparer_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4148, ArraySortHelper_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__BinarySearch__MethodInfo); DO_APP_FUNC(0x010B17F0, void, ArraySortHelper_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__DownHeap, (RegexCharClass_SingleRange__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__Heapsort, (RegexCharClass_SingleRange__Array * keys, int32_t lo, int32_t hi, Comparison_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010B1A00, void, ArraySortHelper_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__InsertionSort, (RegexCharClass_SingleRange__Array * keys, int32_t lo, int32_t hi, Comparison_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * comparer, MethodInfo * method)); @@ -125439,13 +138655,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_System_Text_RegularExpressions_R DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__IntrospectiveSort, (RegexCharClass_SingleRange__Array * keys, int32_t left, int32_t length, Comparison_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010B13A0, int32_t, ArraySortHelper_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__PickPivotAndPartition, (RegexCharClass_SingleRange__Array * keys, int32_t lo, int32_t hi, Comparison_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010B0F50, void, ArraySortHelper_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__Sort, (RegexCharClass_SingleRange__Array * keys, int32_t index, int32_t length, Comparison_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4158, ArraySortHelper_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__Sort__MethodInfo); DO_APP_FUNC(0x010B0B70, void, ArraySortHelper_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__Sort_1, (ArraySortHelper_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * __this, RegexCharClass_SingleRange__Array * keys, int32_t index, int32_t length, IComparer_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF41C0, ArraySortHelper_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__Sort_1__MethodInfo); DO_APP_FUNC(0x010B1350, void, ArraySortHelper_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__Swap, (RegexCharClass_SingleRange__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x010B1240, void, ArraySortHelper_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__SwapIfGreater, (RegexCharClass_SingleRange__Array * keys, Comparison_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ *, ArraySortHelper_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData___ctor, (ArraySortHelper_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010B1DE0, int32_t, ArraySortHelper_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__BinarySearch, (ArraySortHelper_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * __this, RenderChain_RenderNodeData__Array * array, int32_t index, int32_t length, RenderChain_RenderNodeData value, IComparer_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4138, ArraySortHelper_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__BinarySearch__MethodInfo); DO_APP_FUNC(0x010B2540, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__DownHeap, (RenderChain_RenderNodeData__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__Heapsort, (RenderChain_RenderNodeData__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010B29B0, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__InsertionSort, (RenderChain_RenderNodeData__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * comparer, MethodInfo * method)); @@ -125454,13 +138673,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_Rende DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__IntrospectiveSort, (RenderChain_RenderNodeData__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC0E30, int32_t, ArraySortHelper_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__PickPivotAndPartition, (RenderChain_RenderNodeData__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010B1F90, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__Sort, (RenderChain_RenderNodeData__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4170, ArraySortHelper_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__Sort__MethodInfo); DO_APP_FUNC(0x010B1B70, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__Sort_1, (ArraySortHelper_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * __this, RenderChain_RenderNodeData__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4130, ArraySortHelper_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__Sort_1__MethodInfo); DO_APP_FUNC(0x010B23E0, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__Swap, (RenderChain_RenderNodeData__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x010B2110, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__SwapIfGreater, (RenderChain_RenderNodeData__Array * keys, Comparison_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ *, ArraySortHelper_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData___ctor, (ArraySortHelper_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010B2EF0, int32_t, ArraySortHelper_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData__BinarySearch, (ArraySortHelper_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData_ * __this, RenderGraphDebugData_PassDebugData__Array * array, int32_t index, int32_t length, RenderGraphDebugData_PassDebugData value, IComparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4160, ArraySortHelper_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData__BinarySearch__MethodInfo); DO_APP_FUNC(0x010AF5E0, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData__DownHeap, (RenderGraphDebugData_PassDebugData__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData__Heapsort, (RenderGraphDebugData_PassDebugData__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010AF930, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData__InsertionSort, (RenderGraphDebugData_PassDebugData__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData_ * comparer, MethodInfo * method)); @@ -125469,13 +138691,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_Experimental_Renderi DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData__IntrospectiveSort, (RenderGraphDebugData_PassDebugData__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB9EF0, int32_t, ArraySortHelper_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData__PickPivotAndPartition, (RenderGraphDebugData_PassDebugData__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010B3070, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData__Sort, (RenderGraphDebugData_PassDebugData__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4168, ArraySortHelper_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData__Sort__MethodInfo); DO_APP_FUNC(0x010B2C80, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData__Sort_1, (ArraySortHelper_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData_ * __this, RenderGraphDebugData_PassDebugData__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4180, ArraySortHelper_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData__Sort_1__MethodInfo); DO_APP_FUNC(0x010AF480, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData__Swap, (RenderGraphDebugData_PassDebugData__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x010AF200, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData__SwapIfGreater, (RenderGraphDebugData_PassDebugData__Array * keys, Comparison_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData_ *, ArraySortHelper_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData___ctor, (ArraySortHelper_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011A0E80, int32_t, ArraySortHelper_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData__BinarySearch, (ArraySortHelper_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData_ * __this, RenderGraphDebugData_ResourceDebugData__Array * array, int32_t index, int32_t length, RenderGraphDebugData_ResourceDebugData value, IComparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3320, ArraySortHelper_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData__BinarySearch__MethodInfo); DO_APP_FUNC(0x010A29B0, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData__DownHeap, (RenderGraphDebugData_ResourceDebugData__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData__Heapsort, (RenderGraphDebugData_ResourceDebugData__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010A2DA0, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData__InsertionSort, (RenderGraphDebugData_ResourceDebugData__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData_ * comparer, MethodInfo * method)); @@ -125484,13 +138709,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_Experimental_Renderi DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData__IntrospectiveSort, (RenderGraphDebugData_ResourceDebugData__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB1280, int32_t, ArraySortHelper_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData__PickPivotAndPartition, (RenderGraphDebugData_ResourceDebugData__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x011A1010, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData__Sort, (RenderGraphDebugData_ResourceDebugData__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3318, ArraySortHelper_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData__Sort__MethodInfo); DO_APP_FUNC(0x011A0C10, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData__Sort_1, (ArraySortHelper_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData_ * __this, RenderGraphDebugData_ResourceDebugData__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3308, ArraySortHelper_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData__Sort_1__MethodInfo); DO_APP_FUNC(0x010A2830, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData__Swap, (RenderGraphDebugData_ResourceDebugData__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x010A2610, void, ArraySortHelper_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData__SwapIfGreater, (RenderGraphDebugData_ResourceDebugData__Array * keys, Comparison_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData_ *, ArraySortHelper_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest___ctor, (ArraySortHelper_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011A1400, int32_t, ArraySortHelper_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest__BinarySearch, (ArraySortHelper_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest_ * __this, ResourceManager_DeferredCallbackRegisterRequest__Array * array, int32_t index, int32_t length, ResourceManager_DeferredCallbackRegisterRequest value, IComparer_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3328, ArraySortHelper_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FC5BC0, void, ArraySortHelper_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest__DownHeap, (ResourceManager_DeferredCallbackRegisterRequest__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest__Heapsort, (ResourceManager_DeferredCallbackRegisterRequest__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC5E90, void, ArraySortHelper_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest__InsertionSort, (ResourceManager_DeferredCallbackRegisterRequest__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest_ * comparer, MethodInfo * method)); @@ -125499,13 +138727,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_ResourceManagement_R DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest__IntrospectiveSort, (ResourceManager_DeferredCallbackRegisterRequest__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5FD0, int32_t, ArraySortHelper_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest__PickPivotAndPartition, (ResourceManager_DeferredCallbackRegisterRequest__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x011A1580, void, ArraySortHelper_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest__Sort, (ResourceManager_DeferredCallbackRegisterRequest__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3278, ArraySortHelper_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest__Sort__MethodInfo); DO_APP_FUNC(0x011A1190, void, ArraySortHelper_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest__Sort_1, (ArraySortHelper_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest_ * __this, ResourceManager_DeferredCallbackRegisterRequest__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3338, ArraySortHelper_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest__Sort_1__MethodInfo); DO_APP_FUNC(0x00FC5A80, void, ArraySortHelper_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest__Swap, (ResourceManager_DeferredCallbackRegisterRequest__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FC5860, void, ArraySortHelper_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest__SwapIfGreater, (ResourceManager_DeferredCallbackRegisterRequest__Array * keys, Comparison_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest_ *, ArraySortHelper_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_Pathfinding_Util_RetainedGizmos_MeshWithHash___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_Pathfinding_Util_RetainedGizmos_MeshWithHash___ctor, (ArraySortHelper_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011A1970, int32_t, ArraySortHelper_1_Pathfinding_Util_RetainedGizmos_MeshWithHash__BinarySearch, (ArraySortHelper_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * __this, RetainedGizmos_MeshWithHash__Array * array, int32_t index, int32_t length, RetainedGizmos_MeshWithHash value, IComparer_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3298, ArraySortHelper_1_Pathfinding_Util_RetainedGizmos_MeshWithHash__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FC4DB0, void, ArraySortHelper_1_Pathfinding_Util_RetainedGizmos_MeshWithHash__DownHeap, (RetainedGizmos_MeshWithHash__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_Pathfinding_Util_RetainedGizmos_MeshWithHash__Heapsort, (RetainedGizmos_MeshWithHash__Array * keys, int32_t lo, int32_t hi, Comparison_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC5110, void, ArraySortHelper_1_Pathfinding_Util_RetainedGizmos_MeshWithHash__InsertionSort, (RetainedGizmos_MeshWithHash__Array * keys, int32_t lo, int32_t hi, Comparison_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * comparer, MethodInfo * method)); @@ -125514,13 +138745,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_Pathfinding_Util_RetainedGizmos_ DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_Pathfinding_Util_RetainedGizmos_MeshWithHash__IntrospectiveSort, (RetainedGizmos_MeshWithHash__Array * keys, int32_t left, int32_t length, Comparison_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB71C0, int32_t, ArraySortHelper_1_Pathfinding_Util_RetainedGizmos_MeshWithHash__PickPivotAndPartition, (RetainedGizmos_MeshWithHash__Array * keys, int32_t lo, int32_t hi, Comparison_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x011A1AF0, void, ArraySortHelper_1_Pathfinding_Util_RetainedGizmos_MeshWithHash__Sort, (RetainedGizmos_MeshWithHash__Array * keys, int32_t index, int32_t length, Comparison_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3288, ArraySortHelper_1_Pathfinding_Util_RetainedGizmos_MeshWithHash__Sort__MethodInfo); DO_APP_FUNC(0x011A1700, void, ArraySortHelper_1_Pathfinding_Util_RetainedGizmos_MeshWithHash__Sort_1, (ArraySortHelper_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * __this, RetainedGizmos_MeshWithHash__Array * keys, int32_t index, int32_t length, IComparer_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3268, ArraySortHelper_1_Pathfinding_Util_RetainedGizmos_MeshWithHash__Sort_1__MethodInfo); DO_APP_FUNC(0x00FC4C40, void, ArraySortHelper_1_Pathfinding_Util_RetainedGizmos_MeshWithHash__Swap, (RetainedGizmos_MeshWithHash__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FC49C0, void, ArraySortHelper_1_Pathfinding_Util_RetainedGizmos_MeshWithHash__SwapIfGreater, (RetainedGizmos_MeshWithHash__Array * keys, Comparison_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_ *, ArraySortHelper_1_Pathfinding_Util_RetainedGizmos_MeshWithHash__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride___ctor, (ArraySortHelper_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011A1EE0, int32_t, ArraySortHelper_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride__BinarySearch, (ArraySortHelper_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ * __this, TemplateAsset_AttributeOverride__Array * array, int32_t index, int32_t length, TemplateAsset_AttributeOverride value, IComparer_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC32B0, ArraySortHelper_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FBFCE0, void, ArraySortHelper_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride__DownHeap, (TemplateAsset_AttributeOverride__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride__Heapsort, (TemplateAsset_AttributeOverride__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC0040, void, ArraySortHelper_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride__InsertionSort, (TemplateAsset_AttributeOverride__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ * comparer, MethodInfo * method)); @@ -125529,13 +138763,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_UIElements_TemplateA DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride__IntrospectiveSort, (TemplateAsset_AttributeOverride__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB71C0, int32_t, ArraySortHelper_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride__PickPivotAndPartition, (TemplateAsset_AttributeOverride__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x011A2060, void, ArraySortHelper_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride__Sort, (TemplateAsset_AttributeOverride__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC32E8, ArraySortHelper_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride__Sort__MethodInfo); DO_APP_FUNC(0x011A1C70, void, ArraySortHelper_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride__Sort_1, (ArraySortHelper_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ * __this, TemplateAsset_AttributeOverride__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC32C8, ArraySortHelper_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride__Sort_1__MethodInfo); DO_APP_FUNC(0x00FBFB80, void, ArraySortHelper_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride__Swap, (TemplateAsset_AttributeOverride__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FBF920, void, ArraySortHelper_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride__SwapIfGreater, (TemplateAsset_AttributeOverride__Array * keys, Comparison_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ *, ArraySortHelper_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap___ctor, (ArraySortHelper_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011A2450, int32_t, ArraySortHelper_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__BinarySearch, (ArraySortHelper_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ * __this, TextSettings_FontReferenceMap__Array * array, int32_t index, int32_t length, TextSettings_FontReferenceMap value, IComparer_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3210, ArraySortHelper_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FC5BC0, void, ArraySortHelper_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__DownHeap, (TextSettings_FontReferenceMap__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__Heapsort, (TextSettings_FontReferenceMap__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC5E90, void, ArraySortHelper_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__InsertionSort, (TextSettings_FontReferenceMap__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ * comparer, MethodInfo * method)); @@ -125544,13 +138781,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_TextCore_Text_TextSe DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__IntrospectiveSort, (TextSettings_FontReferenceMap__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5FD0, int32_t, ArraySortHelper_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__PickPivotAndPartition, (TextSettings_FontReferenceMap__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x011A25D0, void, ArraySortHelper_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__Sort, (TextSettings_FontReferenceMap__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3208, ArraySortHelper_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__Sort__MethodInfo); DO_APP_FUNC(0x011A21E0, void, ArraySortHelper_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__Sort_1, (ArraySortHelper_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ * __this, TextSettings_FontReferenceMap__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC32D8, ArraySortHelper_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__Sort_1__MethodInfo); DO_APP_FUNC(0x00FC5A80, void, ArraySortHelper_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__Swap, (TextSettings_FontReferenceMap__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FC5860, void, ArraySortHelper_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__SwapIfGreater, (TextSettings_FontReferenceMap__Array * keys, Comparison_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ *, ArraySortHelper_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo___ctor, (ArraySortHelper_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011A29C0, int32_t, ArraySortHelper_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__BinarySearch, (ArraySortHelper_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * __this, TextureBlitter_BlitInfo__Array * array, int32_t index, int32_t length, TextureBlitter_BlitInfo value, IComparer_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3218, ArraySortHelper_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FB8D30, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__DownHeap, (TextureBlitter_BlitInfo__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__Heapsort, (TextureBlitter_BlitInfo__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB9150, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__InsertionSort, (TextureBlitter_BlitInfo__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * comparer, MethodInfo * method)); @@ -125559,13 +138799,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_Textu DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__IntrospectiveSort, (TextureBlitter_BlitInfo__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB8770, int32_t, ArraySortHelper_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__PickPivotAndPartition, (TextureBlitter_BlitInfo__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x011A2B60, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__Sort, (TextureBlitter_BlitInfo__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3248, ArraySortHelper_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__Sort__MethodInfo); DO_APP_FUNC(0x011A2750, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__Sort_1, (ArraySortHelper_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * __this, TextureBlitter_BlitInfo__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3228, ArraySortHelper_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__Sort_1__MethodInfo); DO_APP_FUNC(0x00FB85D0, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__Swap, (TextureBlitter_BlitInfo__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FB8350, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__SwapIfGreater, (TextureBlitter_BlitInfo__Array * keys, Comparison_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ *, ArraySortHelper_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame___ctor, (ArraySortHelper_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011A3170, int32_t, ArraySortHelper_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame__BinarySearch, (ArraySortHelper_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame_ * __this, TexturePacker_JsonArray_Frame__Array * array, int32_t index, int32_t length, TexturePacker_JsonArray_Frame value, IComparer_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3260, ArraySortHelper_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame__BinarySearch__MethodInfo); DO_APP_FUNC(0x011A4090, void, ArraySortHelper_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame__DownHeap, (TexturePacker_JsonArray_Frame__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame__Heapsort, (TexturePacker_JsonArray_Frame__Array * keys, int32_t lo, int32_t hi, Comparison_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x011A44A0, void, ArraySortHelper_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame__InsertionSort, (TexturePacker_JsonArray_Frame__Array * keys, int32_t lo, int32_t hi, Comparison_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame_ * comparer, MethodInfo * method)); @@ -125574,13 +138817,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_TMPro_SpriteAssetUtilities_Textu DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame__IntrospectiveSort, (TexturePacker_JsonArray_Frame__Array * keys, int32_t left, int32_t length, Comparison_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x011A3AD0, int32_t, ArraySortHelper_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame__PickPivotAndPartition, (TexturePacker_JsonArray_Frame__Array * keys, int32_t lo, int32_t hi, Comparison_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x011A3310, void, ArraySortHelper_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame__Sort, (TexturePacker_JsonArray_Frame__Array * keys, int32_t index, int32_t length, Comparison_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3258, ArraySortHelper_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame__Sort__MethodInfo); DO_APP_FUNC(0x011A2F00, void, ArraySortHelper_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame__Sort_1, (ArraySortHelper_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame_ * __this, TexturePacker_JsonArray_Frame__Array * keys, int32_t index, int32_t length, IComparer_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3238, ArraySortHelper_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame__Sort_1__MethodInfo); DO_APP_FUNC(0x011A3930, void, ArraySortHelper_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame__Swap, (TexturePacker_JsonArray_Frame__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x011A36B0, void, ArraySortHelper_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame__SwapIfGreater, (TexturePacker_JsonArray_Frame__Array * keys, Comparison_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame_ *, ArraySortHelper_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_UIElements_TextureRegistry_TextureInfo___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_UIElements_TextureRegistry_TextureInfo___ctor, (ArraySortHelper_1_UnityEngine_UIElements_TextureRegistry_TextureInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011A49A0, int32_t, ArraySortHelper_1_UnityEngine_UIElements_TextureRegistry_TextureInfo__BinarySearch, (ArraySortHelper_1_UnityEngine_UIElements_TextureRegistry_TextureInfo_ * __this, TextureRegistry_TextureInfo__Array * array, int32_t index, int32_t length, TextureRegistry_TextureInfo value, IComparer_1_UnityEngine_UIElements_TextureRegistry_TextureInfo_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3198, ArraySortHelper_1_UnityEngine_UIElements_TextureRegistry_TextureInfo__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FC5BC0, void, ArraySortHelper_1_UnityEngine_UIElements_TextureRegistry_TextureInfo__DownHeap, (TextureRegistry_TextureInfo__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_UIElements_TextureRegistry_TextureInfo_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_UIElements_TextureRegistry_TextureInfo__Heapsort, (TextureRegistry_TextureInfo__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_TextureRegistry_TextureInfo_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC5E90, void, ArraySortHelper_1_UnityEngine_UIElements_TextureRegistry_TextureInfo__InsertionSort, (TextureRegistry_TextureInfo__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_TextureRegistry_TextureInfo_ * comparer, MethodInfo * method)); @@ -125589,13 +138835,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_UIElements_TextureRe DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_UIElements_TextureRegistry_TextureInfo__IntrospectiveSort, (TextureRegistry_TextureInfo__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_UIElements_TextureRegistry_TextureInfo_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5FD0, int32_t, ArraySortHelper_1_UnityEngine_UIElements_TextureRegistry_TextureInfo__PickPivotAndPartition, (TextureRegistry_TextureInfo__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_TextureRegistry_TextureInfo_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x011A4B20, void, ArraySortHelper_1_UnityEngine_UIElements_TextureRegistry_TextureInfo__Sort, (TextureRegistry_TextureInfo__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_UIElements_TextureRegistry_TextureInfo_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC31B8, ArraySortHelper_1_UnityEngine_UIElements_TextureRegistry_TextureInfo__Sort__MethodInfo); DO_APP_FUNC(0x011A4730, void, ArraySortHelper_1_UnityEngine_UIElements_TextureRegistry_TextureInfo__Sort_1, (ArraySortHelper_1_UnityEngine_UIElements_TextureRegistry_TextureInfo_ * __this, TextureRegistry_TextureInfo__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_UIElements_TextureRegistry_TextureInfo_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC31A0, ArraySortHelper_1_UnityEngine_UIElements_TextureRegistry_TextureInfo__Sort_1__MethodInfo); DO_APP_FUNC(0x00FC5A80, void, ArraySortHelper_1_UnityEngine_UIElements_TextureRegistry_TextureInfo__Swap, (TextureRegistry_TextureInfo__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FC5860, void, ArraySortHelper_1_UnityEngine_UIElements_TextureRegistry_TextureInfo__SwapIfGreater, (TextureRegistry_TextureInfo__Array * keys, Comparison_1_UnityEngine_UIElements_TextureRegistry_TextureInfo_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_UIElements_TextureRegistry_TextureInfo_ *, ArraySortHelper_1_UnityEngine_UIElements_TextureRegistry_TextureInfo__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry___ctor, (ArraySortHelper_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011A4F10, int32_t, ArraySortHelper_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry__BinarySearch, (ArraySortHelper_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry_ * __this, TimeNotificationBehaviour_NotificationEntry__Array * array, int32_t index, int32_t length, TimeNotificationBehaviour_NotificationEntry value, IComparer_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC31D8, ArraySortHelper_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FC4DB0, void, ArraySortHelper_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry__DownHeap, (TimeNotificationBehaviour_NotificationEntry__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry__Heapsort, (TimeNotificationBehaviour_NotificationEntry__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC5110, void, ArraySortHelper_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry__InsertionSort, (TimeNotificationBehaviour_NotificationEntry__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry_ * comparer, MethodInfo * method)); @@ -125604,13 +138853,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_Timeline_TimeNotific DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry__IntrospectiveSort, (TimeNotificationBehaviour_NotificationEntry__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB71C0, int32_t, ArraySortHelper_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry__PickPivotAndPartition, (TimeNotificationBehaviour_NotificationEntry__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x011A5090, void, ArraySortHelper_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry__Sort, (TimeNotificationBehaviour_NotificationEntry__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC31C8, ArraySortHelper_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry__Sort__MethodInfo); DO_APP_FUNC(0x011A4CA0, void, ArraySortHelper_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry__Sort_1, (ArraySortHelper_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry_ * __this, TimeNotificationBehaviour_NotificationEntry__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC31B0, ArraySortHelper_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry__Sort_1__MethodInfo); DO_APP_FUNC(0x00FC4C40, void, ArraySortHelper_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry__Swap, (TimeNotificationBehaviour_NotificationEntry__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FC49C0, void, ArraySortHelper_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry__SwapIfGreater, (TimeNotificationBehaviour_NotificationEntry__Array * keys, Comparison_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry_ *, ArraySortHelper_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData___ctor, (ArraySortHelper_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011A5480, int32_t, ArraySortHelper_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__BinarySearch, (ArraySortHelper_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * __this, TrackedDeviceRaycaster_RaycastHitData__Array * array, int32_t index, int32_t length, TrackedDeviceRaycaster_RaycastHitData value, IComparer_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC31E0, ArraySortHelper_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__BinarySearch__MethodInfo); DO_APP_FUNC(0x010AF5E0, void, ArraySortHelper_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__DownHeap, (TrackedDeviceRaycaster_RaycastHitData__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__Heapsort, (TrackedDeviceRaycaster_RaycastHitData__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010AF930, void, ArraySortHelper_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__InsertionSort, (TrackedDeviceRaycaster_RaycastHitData__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * comparer, MethodInfo * method)); @@ -125619,13 +138871,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_InputSystem_UI_Track DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__IntrospectiveSort, (TrackedDeviceRaycaster_RaycastHitData__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB9EF0, int32_t, ArraySortHelper_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__PickPivotAndPartition, (TrackedDeviceRaycaster_RaycastHitData__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x011A5600, void, ArraySortHelper_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__Sort, (TrackedDeviceRaycaster_RaycastHitData__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3138, ArraySortHelper_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__Sort__MethodInfo); DO_APP_FUNC(0x011A5210, void, ArraySortHelper_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__Sort_1, (ArraySortHelper_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * __this, TrackedDeviceRaycaster_RaycastHitData__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC31F8, ArraySortHelper_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__Sort_1__MethodInfo); DO_APP_FUNC(0x010AF480, void, ArraySortHelper_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__Swap, (TrackedDeviceRaycaster_RaycastHitData__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x010AF200, void, ArraySortHelper_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__SwapIfGreater, (TrackedDeviceRaycaster_RaycastHitData__Array * keys, Comparison_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ *, ArraySortHelper_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData___ctor, (ArraySortHelper_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011A59F0, int32_t, ArraySortHelper_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData__BinarySearch, (ArraySortHelper_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData_ * __this, TrackedPoseDriverDataDescription_PoseData__Array * array, int32_t index, int32_t length, TrackedPoseDriverDataDescription_PoseData value, IComparer_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3158, ArraySortHelper_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FC5BC0, void, ArraySortHelper_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData__DownHeap, (TrackedPoseDriverDataDescription_PoseData__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData__Heapsort, (TrackedPoseDriverDataDescription_PoseData__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC5E90, void, ArraySortHelper_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData__InsertionSort, (TrackedPoseDriverDataDescription_PoseData__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData_ * comparer, MethodInfo * method)); @@ -125634,13 +138889,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_SpatialTracking_Trac DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData__IntrospectiveSort, (TrackedPoseDriverDataDescription_PoseData__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5FD0, int32_t, ArraySortHelper_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData__PickPivotAndPartition, (TrackedPoseDriverDataDescription_PoseData__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x011A5B70, void, ArraySortHelper_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData__Sort, (TrackedPoseDriverDataDescription_PoseData__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3150, ArraySortHelper_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData__Sort__MethodInfo); DO_APP_FUNC(0x011A5780, void, ArraySortHelper_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData__Sort_1, (ArraySortHelper_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData_ * __this, TrackedPoseDriverDataDescription_PoseData__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3120, ArraySortHelper_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData__Sort_1__MethodInfo); DO_APP_FUNC(0x00FC5A80, void, ArraySortHelper_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData__Swap, (TrackedPoseDriverDataDescription_PoseData__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FC5860, void, ArraySortHelper_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData__SwapIfGreater, (TrackedPoseDriverDataDescription_PoseData__Array * keys, Comparison_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData_ *, ArraySortHelper_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper___ctor, (ArraySortHelper_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011A5F60, int32_t, ArraySortHelper_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__BinarySearch, (ArraySortHelper_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * __this, TreeView_TreeViewItemWrapper__Array * array, int32_t index, int32_t length, TreeView_TreeViewItemWrapper value, IComparer_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3168, ArraySortHelper_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FBEF30, void, ArraySortHelper_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__DownHeap, (TreeView_TreeViewItemWrapper__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__Heapsort, (TreeView_TreeViewItemWrapper__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FBF200, void, ArraySortHelper_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__InsertionSort, (TreeView_TreeViewItemWrapper__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * comparer, MethodInfo * method)); @@ -125649,13 +138907,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_UIElements_TreeView_ DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__IntrospectiveSort, (TreeView_TreeViewItemWrapper__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5FD0, int32_t, ArraySortHelper_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__PickPivotAndPartition, (TreeView_TreeViewItemWrapper__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x011A60E0, void, ArraySortHelper_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__Sort, (TreeView_TreeViewItemWrapper__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3190, ArraySortHelper_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__Sort__MethodInfo); DO_APP_FUNC(0x011A5CF0, void, ArraySortHelper_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__Sort_1, (ArraySortHelper_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * __this, TreeView_TreeViewItemWrapper__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3170, ArraySortHelper_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__Sort_1__MethodInfo); DO_APP_FUNC(0x00FBEDF0, void, ArraySortHelper_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__Swap, (TreeView_TreeViewItemWrapper__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FBEBD0, void, ArraySortHelper_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__SwapIfGreater, (TreeView_TreeViewItemWrapper__Array * keys, Comparison_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ *, ArraySortHelper_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState___ctor, (ArraySortHelper_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011A64D0, int32_t, ArraySortHelper_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__BinarySearch, (ArraySortHelper_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ * __this, TreeViewReorderableDragAndDropController_TreeItemState__Array * array, int32_t index, int32_t length, TreeViewReorderableDragAndDropController_TreeItemState value, IComparer_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC30B8, ArraySortHelper_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FC40D0, void, ArraySortHelper_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__DownHeap, (TreeViewReorderableDragAndDropController_TreeItemState__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__Heapsort, (TreeViewReorderableDragAndDropController_TreeItemState__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC42E0, void, ArraySortHelper_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__InsertionSort, (TreeViewReorderableDragAndDropController_TreeItemState__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ * comparer, MethodInfo * method)); @@ -125664,13 +138925,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_UIElements_TreeViewR DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__IntrospectiveSort, (TreeViewReorderableDragAndDropController_TreeItemState__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC3C80, int32_t, ArraySortHelper_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__PickPivotAndPartition, (TreeViewReorderableDragAndDropController_TreeItemState__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x011A6640, void, ArraySortHelper_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__Sort, (TreeViewReorderableDragAndDropController_TreeItemState__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC30A8, ArraySortHelper_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__Sort__MethodInfo); DO_APP_FUNC(0x011A6260, void, ArraySortHelper_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__Sort_1, (ArraySortHelper_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ * __this, TreeViewReorderableDragAndDropController_TreeItemState__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3180, ArraySortHelper_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__Sort_1__MethodInfo); DO_APP_FUNC(0x00FC3C30, void, ArraySortHelper_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__Swap, (TreeViewReorderableDragAndDropController_TreeItemState__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FC3B20, void, ArraySortHelper_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__SwapIfGreater, (TreeViewReorderableDragAndDropController_TreeItemState__Array * keys, Comparison_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ *, ArraySortHelper_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry___ctor, (ArraySortHelper_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011A6A30, int32_t, ArraySortHelper_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__BinarySearch, (ArraySortHelper_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * __this, UIRStylePainter_Entry__Array * array, int32_t index, int32_t length, UIRStylePainter_Entry value, IComparer_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC30C8, ArraySortHelper_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__BinarySearch__MethodInfo); DO_APP_FUNC(0x011A7190, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__DownHeap, (UIRStylePainter_Entry__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__Heapsort, (UIRStylePainter_Entry__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x011A7600, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__InsertionSort, (UIRStylePainter_Entry__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * comparer, MethodInfo * method)); @@ -125679,13 +138943,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_Imple DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__IntrospectiveSort, (UIRStylePainter_Entry__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC0E30, int32_t, ArraySortHelper_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__PickPivotAndPartition, (UIRStylePainter_Entry__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x011A6BE0, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__Sort, (UIRStylePainter_Entry__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC30F0, ArraySortHelper_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__Sort__MethodInfo); DO_APP_FUNC(0x011A67C0, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__Sort_1, (ArraySortHelper_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * __this, UIRStylePainter_Entry__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC30D8, ArraySortHelper_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__Sort_1__MethodInfo); DO_APP_FUNC(0x011A7030, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__Swap, (UIRStylePainter_Entry__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x011A6D60, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__SwapIfGreater, (UIRStylePainter_Entry__Array * keys, Comparison_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ *, ArraySortHelper_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree___ctor, (ArraySortHelper_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011A7B40, int32_t, ArraySortHelper_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__BinarySearch, (ArraySortHelper_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * __this, UIRenderDevice_AllocToFree__Array * array, int32_t index, int32_t length, UIRenderDevice_AllocToFree value, IComparer_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3110, ArraySortHelper_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FB1A30, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__DownHeap, (UIRenderDevice_AllocToFree__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__Heapsort, (UIRenderDevice_AllocToFree__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB1E20, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__InsertionSort, (UIRenderDevice_AllocToFree__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * comparer, MethodInfo * method)); @@ -125694,13 +138961,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_UIRen DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__IntrospectiveSort, (UIRenderDevice_AllocToFree__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB1280, int32_t, ArraySortHelper_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__PickPivotAndPartition, (UIRenderDevice_AllocToFree__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x011A7CD0, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__Sort, (UIRenderDevice_AllocToFree__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC30F8, ArraySortHelper_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__Sort__MethodInfo); DO_APP_FUNC(0x011A78D0, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__Sort_1, (ArraySortHelper_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * __this, UIRenderDevice_AllocToFree__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC30E8, ArraySortHelper_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__Sort_1__MethodInfo); DO_APP_FUNC(0x00FB0B30, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__Swap, (UIRenderDevice_AllocToFree__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FB0910, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__SwapIfGreater, (UIRenderDevice_AllocToFree__Array * keys, Comparison_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ *, ArraySortHelper_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate___ctor, (ArraySortHelper_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011A80C0, int32_t, ArraySortHelper_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__BinarySearch, (ArraySortHelper_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * __this, UIRenderDevice_AllocToUpdate__Array * array, int32_t index, int32_t length, UIRenderDevice_AllocToUpdate value, IComparer_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3020, ArraySortHelper_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__BinarySearch__MethodInfo); DO_APP_FUNC(0x011A8F80, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__DownHeap, (UIRenderDevice_AllocToUpdate__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__Heapsort, (UIRenderDevice_AllocToUpdate__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x011A9370, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__InsertionSort, (UIRenderDevice_AllocToUpdate__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * comparer, MethodInfo * method)); @@ -125709,13 +138979,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_UIRen DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__IntrospectiveSort, (UIRenderDevice_AllocToUpdate__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x011A89E0, int32_t, ArraySortHelper_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__PickPivotAndPartition, (UIRenderDevice_AllocToUpdate__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x011A8270, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__Sort, (UIRenderDevice_AllocToUpdate__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3050, ArraySortHelper_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__Sort__MethodInfo); DO_APP_FUNC(0x011A7E50, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__Sort_1, (ArraySortHelper_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * __this, UIRenderDevice_AllocToUpdate__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3030, ArraySortHelper_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__Sort_1__MethodInfo); DO_APP_FUNC(0x011A88B0, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__Swap, (UIRenderDevice_AllocToUpdate__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x011A8620, void, ArraySortHelper_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__SwapIfGreater, (UIRenderDevice_AllocToUpdate__Array * keys, Comparison_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ *, ArraySortHelper_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_UnitySynchronizationContext_WorkRequest___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_UnitySynchronizationContext_WorkRequest___ctor, (ArraySortHelper_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011A9860, int32_t, ArraySortHelper_1_UnityEngine_UnitySynchronizationContext_WorkRequest__BinarySearch, (ArraySortHelper_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * __this, UnitySynchronizationContext_WorkRequest__Array * array, int32_t index, int32_t length, UnitySynchronizationContext_WorkRequest value, IComparer_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3070, ArraySortHelper_1_UnityEngine_UnitySynchronizationContext_WorkRequest__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FBFCE0, void, ArraySortHelper_1_UnityEngine_UnitySynchronizationContext_WorkRequest__DownHeap, (UnitySynchronizationContext_WorkRequest__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_UnitySynchronizationContext_WorkRequest__Heapsort, (UnitySynchronizationContext_WorkRequest__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC0040, void, ArraySortHelper_1_UnityEngine_UnitySynchronizationContext_WorkRequest__InsertionSort, (UnitySynchronizationContext_WorkRequest__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * comparer, MethodInfo * method)); @@ -125724,13 +138997,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_UnitySynchronization DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_UnitySynchronizationContext_WorkRequest__IntrospectiveSort, (UnitySynchronizationContext_WorkRequest__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB71C0, int32_t, ArraySortHelper_1_UnityEngine_UnitySynchronizationContext_WorkRequest__PickPivotAndPartition, (UnitySynchronizationContext_WorkRequest__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x011A99E0, void, ArraySortHelper_1_UnityEngine_UnitySynchronizationContext_WorkRequest__Sort, (UnitySynchronizationContext_WorkRequest__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3060, ArraySortHelper_1_UnityEngine_UnitySynchronizationContext_WorkRequest__Sort__MethodInfo); DO_APP_FUNC(0x011A95F0, void, ArraySortHelper_1_UnityEngine_UnitySynchronizationContext_WorkRequest__Sort_1, (ArraySortHelper_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * __this, UnitySynchronizationContext_WorkRequest__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3040, ArraySortHelper_1_UnityEngine_UnitySynchronizationContext_WorkRequest__Sort_1__MethodInfo); DO_APP_FUNC(0x00FBFB80, void, ArraySortHelper_1_UnityEngine_UnitySynchronizationContext_WorkRequest__Swap, (UnitySynchronizationContext_WorkRequest__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FBF920, void, ArraySortHelper_1_UnityEngine_UnitySynchronizationContext_WorkRequest__SwapIfGreater, (UnitySynchronizationContext_WorkRequest__Array * keys, Comparison_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ *, ArraySortHelper_1_UnityEngine_UnitySynchronizationContext_WorkRequest__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition___ctor, (ArraySortHelper_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011A9DD0, int32_t, ArraySortHelper_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition__BinarySearch, (ArraySortHelper_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition_ * __this, VisualTreeAsset_SlotDefinition__Array * array, int32_t index, int32_t length, VisualTreeAsset_SlotDefinition value, IComparer_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3088, ArraySortHelper_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FC5BC0, void, ArraySortHelper_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition__DownHeap, (VisualTreeAsset_SlotDefinition__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition__Heapsort, (VisualTreeAsset_SlotDefinition__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC5E90, void, ArraySortHelper_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition__InsertionSort, (VisualTreeAsset_SlotDefinition__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition_ * comparer, MethodInfo * method)); @@ -125739,13 +139015,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_UIElements_VisualTre DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition__IntrospectiveSort, (VisualTreeAsset_SlotDefinition__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5FD0, int32_t, ArraySortHelper_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition__PickPivotAndPartition, (VisualTreeAsset_SlotDefinition__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x011A9F50, void, ArraySortHelper_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition__Sort, (VisualTreeAsset_SlotDefinition__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2FD8, ArraySortHelper_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition__Sort__MethodInfo); DO_APP_FUNC(0x011A9B60, void, ArraySortHelper_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition__Sort_1, (ArraySortHelper_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition_ * __this, VisualTreeAsset_SlotDefinition__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3098, ArraySortHelper_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition__Sort_1__MethodInfo); DO_APP_FUNC(0x00FC5A80, void, ArraySortHelper_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition__Swap, (VisualTreeAsset_SlotDefinition__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FC5860, void, ArraySortHelper_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition__SwapIfGreater, (VisualTreeAsset_SlotDefinition__Array * keys, Comparison_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition_ *, ArraySortHelper_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry___ctor, (ArraySortHelper_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011AA340, int32_t, ArraySortHelper_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry__BinarySearch, (ArraySortHelper_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_ * __this, VisualTreeAsset_SlotUsageEntry__Array * array, int32_t index, int32_t length, VisualTreeAsset_SlotUsageEntry value, IComparer_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2FF0, ArraySortHelper_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FC5BC0, void, ArraySortHelper_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry__DownHeap, (VisualTreeAsset_SlotUsageEntry__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry__Heapsort, (VisualTreeAsset_SlotUsageEntry__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC5E90, void, ArraySortHelper_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry__InsertionSort, (VisualTreeAsset_SlotUsageEntry__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_ * comparer, MethodInfo * method)); @@ -125754,13 +139033,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_UIElements_VisualTre DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry__IntrospectiveSort, (VisualTreeAsset_SlotUsageEntry__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5FD0, int32_t, ArraySortHelper_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry__PickPivotAndPartition, (VisualTreeAsset_SlotUsageEntry__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x011AA4C0, void, ArraySortHelper_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry__Sort, (VisualTreeAsset_SlotUsageEntry__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2FE0, ArraySortHelper_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry__Sort__MethodInfo); DO_APP_FUNC(0x011AA0D0, void, ArraySortHelper_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry__Sort_1, (ArraySortHelper_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_ * __this, VisualTreeAsset_SlotUsageEntry__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2FD0, ArraySortHelper_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry__Sort_1__MethodInfo); DO_APP_FUNC(0x00FC5A80, void, ArraySortHelper_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry__Swap, (VisualTreeAsset_SlotUsageEntry__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FC5860, void, ArraySortHelper_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry__SwapIfGreater, (VisualTreeAsset_SlotUsageEntry__Array * keys, Comparison_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_ *, ArraySortHelper_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry___ctor, (ArraySortHelper_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011AA8B0, int32_t, ArraySortHelper_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__BinarySearch, (ArraySortHelper_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ * __this, VisualTreeAsset_UsingEntry__Array * array, int32_t index, int32_t length, VisualTreeAsset_UsingEntry value, IComparer_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2FF8, ArraySortHelper_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FBFCE0, void, ArraySortHelper_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__DownHeap, (VisualTreeAsset_UsingEntry__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__Heapsort, (VisualTreeAsset_UsingEntry__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC0040, void, ArraySortHelper_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__InsertionSort, (VisualTreeAsset_UsingEntry__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ * comparer, MethodInfo * method)); @@ -125769,13 +139051,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_UIElements_VisualTre DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__IntrospectiveSort, (VisualTreeAsset_UsingEntry__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB71C0, int32_t, ArraySortHelper_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__PickPivotAndPartition, (VisualTreeAsset_UsingEntry__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x011AAA30, void, ArraySortHelper_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__Sort, (VisualTreeAsset_UsingEntry__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3010, ArraySortHelper_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__Sort__MethodInfo); DO_APP_FUNC(0x011AA640, void, ArraySortHelper_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__Sort_1, (ArraySortHelper_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ * __this, VisualTreeAsset_UsingEntry__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3000, ArraySortHelper_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__Sort_1__MethodInfo); DO_APP_FUNC(0x00FBFB80, void, ArraySortHelper_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__Swap, (VisualTreeAsset_UsingEntry__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FBF920, void, ArraySortHelper_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__SwapIfGreater, (VisualTreeAsset_UsingEntry__Array * keys, Comparison_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ *, ArraySortHelper_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry___ctor, (ArraySortHelper_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011AAE20, int32_t, ArraySortHelper_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry__BinarySearch, (ArraySortHelper_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry_ * __this, XmlSchemaObjectTable_XmlSchemaObjectEntry__Array * array, int32_t index, int32_t length, XmlSchemaObjectTable_XmlSchemaObjectEntry value, IComparer_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2F68, ArraySortHelper_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FC5BC0, void, ArraySortHelper_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry__DownHeap, (XmlSchemaObjectTable_XmlSchemaObjectEntry__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry__Heapsort, (XmlSchemaObjectTable_XmlSchemaObjectEntry__Array * keys, int32_t lo, int32_t hi, Comparison_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC5E90, void, ArraySortHelper_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry__InsertionSort, (XmlSchemaObjectTable_XmlSchemaObjectEntry__Array * keys, int32_t lo, int32_t hi, Comparison_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry_ * comparer, MethodInfo * method)); @@ -125784,13 +139069,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_System_Xml_Schema_XmlSchemaObjec DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry__IntrospectiveSort, (XmlSchemaObjectTable_XmlSchemaObjectEntry__Array * keys, int32_t left, int32_t length, Comparison_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5FD0, int32_t, ArraySortHelper_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry__PickPivotAndPartition, (XmlSchemaObjectTable_XmlSchemaObjectEntry__Array * keys, int32_t lo, int32_t hi, Comparison_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x011AAFA0, void, ArraySortHelper_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry__Sort, (XmlSchemaObjectTable_XmlSchemaObjectEntry__Array * keys, int32_t index, int32_t length, Comparison_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2F58, ArraySortHelper_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry__Sort__MethodInfo); DO_APP_FUNC(0x011AABB0, void, ArraySortHelper_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry__Sort_1, (ArraySortHelper_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry_ * __this, XmlSchemaObjectTable_XmlSchemaObjectEntry__Array * keys, int32_t index, int32_t length, IComparer_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3008, ArraySortHelper_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry__Sort_1__MethodInfo); DO_APP_FUNC(0x00FC5A80, void, ArraySortHelper_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry__Swap, (XmlSchemaObjectTable_XmlSchemaObjectEntry__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FC5860, void, ArraySortHelper_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry__SwapIfGreater, (XmlSchemaObjectTable_XmlSchemaObjectEntry__Array * keys, Comparison_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry_ *, ArraySortHelper_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_ftLightmaps_LightmapAdditionalData___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_ftLightmaps_LightmapAdditionalData___ctor, (ArraySortHelper_1_ftLightmaps_LightmapAdditionalData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011AB390, int32_t, ArraySortHelper_1_ftLightmaps_LightmapAdditionalData__BinarySearch, (ArraySortHelper_1_ftLightmaps_LightmapAdditionalData_ * __this, ftLightmaps_LightmapAdditionalData__Array * array, int32_t index, int32_t length, ftLightmaps_LightmapAdditionalData value, IComparer_1_ftLightmaps_LightmapAdditionalData_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2F78, ArraySortHelper_1_ftLightmaps_LightmapAdditionalData__BinarySearch__MethodInfo); DO_APP_FUNC(0x010AF5E0, void, ArraySortHelper_1_ftLightmaps_LightmapAdditionalData__DownHeap, (ftLightmaps_LightmapAdditionalData__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_ftLightmaps_LightmapAdditionalData_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_ftLightmaps_LightmapAdditionalData__Heapsort, (ftLightmaps_LightmapAdditionalData__Array * keys, int32_t lo, int32_t hi, Comparison_1_ftLightmaps_LightmapAdditionalData_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010AF930, void, ArraySortHelper_1_ftLightmaps_LightmapAdditionalData__InsertionSort, (ftLightmaps_LightmapAdditionalData__Array * keys, int32_t lo, int32_t hi, Comparison_1_ftLightmaps_LightmapAdditionalData_ * comparer, MethodInfo * method)); @@ -125799,13 +139087,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_ftLightmaps_LightmapAdditionalDa DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_ftLightmaps_LightmapAdditionalData__IntrospectiveSort, (ftLightmaps_LightmapAdditionalData__Array * keys, int32_t left, int32_t length, Comparison_1_ftLightmaps_LightmapAdditionalData_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB9EF0, int32_t, ArraySortHelper_1_ftLightmaps_LightmapAdditionalData__PickPivotAndPartition, (ftLightmaps_LightmapAdditionalData__Array * keys, int32_t lo, int32_t hi, Comparison_1_ftLightmaps_LightmapAdditionalData_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x011AB510, void, ArraySortHelper_1_ftLightmaps_LightmapAdditionalData__Sort, (ftLightmaps_LightmapAdditionalData__Array * keys, int32_t index, int32_t length, Comparison_1_ftLightmaps_LightmapAdditionalData_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2FA0, ArraySortHelper_1_ftLightmaps_LightmapAdditionalData__Sort__MethodInfo); DO_APP_FUNC(0x011AB120, void, ArraySortHelper_1_ftLightmaps_LightmapAdditionalData__Sort_1, (ArraySortHelper_1_ftLightmaps_LightmapAdditionalData_ * __this, ftLightmaps_LightmapAdditionalData__Array * keys, int32_t index, int32_t length, IComparer_1_ftLightmaps_LightmapAdditionalData_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2F88, ArraySortHelper_1_ftLightmaps_LightmapAdditionalData__Sort_1__MethodInfo); DO_APP_FUNC(0x010AF480, void, ArraySortHelper_1_ftLightmaps_LightmapAdditionalData__Swap, (ftLightmaps_LightmapAdditionalData__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x010AF200, void, ArraySortHelper_1_ftLightmaps_LightmapAdditionalData__SwapIfGreater, (ftLightmaps_LightmapAdditionalData__Array * keys, Comparison_1_ftLightmaps_LightmapAdditionalData_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_ftLightmaps_LightmapAdditionalData_ *, ArraySortHelper_1_ftLightmaps_LightmapAdditionalData__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy___ctor, (ArraySortHelper_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011AB900, int32_t, ArraySortHelper_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__BinarySearch, (ArraySortHelper_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * __this, gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__Array * array, int32_t index, int32_t length, gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy value, IComparer_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2FC0, ArraySortHelper_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FC40D0, void, ArraySortHelper_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__DownHeap, (gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__Heapsort, (gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__Array * keys, int32_t lo, int32_t hi, Comparison_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC42E0, void, ArraySortHelper_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__InsertionSort, (gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__Array * keys, int32_t lo, int32_t hi, Comparison_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * comparer, MethodInfo * method)); @@ -125814,13 +139105,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGq DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__IntrospectiveSort, (gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__Array * keys, int32_t left, int32_t length, Comparison_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC3C80, int32_t, ArraySortHelper_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__PickPivotAndPartition, (gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__Array * keys, int32_t lo, int32_t hi, Comparison_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x011ABA70, void, ArraySortHelper_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__Sort, (gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__Array * keys, int32_t index, int32_t length, Comparison_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2FB0, ArraySortHelper_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__Sort__MethodInfo); DO_APP_FUNC(0x011AB690, void, ArraySortHelper_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__Sort_1, (ArraySortHelper_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * __this, gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__Array * keys, int32_t index, int32_t length, IComparer_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2F98, ArraySortHelper_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__Sort_1__MethodInfo); DO_APP_FUNC(0x00FC3C30, void, ArraySortHelper_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__Swap, (gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FC3B20, void, ArraySortHelper_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__SwapIfGreater, (gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__Array * keys, Comparison_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ *, ArraySortHelper_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem___ctor, (ArraySortHelper_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011ABE60, int32_t, ArraySortHelper_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem__BinarySearch, (ArraySortHelper_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem_ * __this, DebugUI_Foldout_ContextMenuItem__Array * array, int32_t index, int32_t length, DebugUI_Foldout_ContextMenuItem value, IComparer_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2E98, ArraySortHelper_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FC5BC0, void, ArraySortHelper_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem__DownHeap, (DebugUI_Foldout_ContextMenuItem__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem__Heapsort, (DebugUI_Foldout_ContextMenuItem__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC5E90, void, ArraySortHelper_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem__InsertionSort, (DebugUI_Foldout_ContextMenuItem__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem_ * comparer, MethodInfo * method)); @@ -125829,13 +139123,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_Rendering_DebugUI_Fo DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem__IntrospectiveSort, (DebugUI_Foldout_ContextMenuItem__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB5FD0, int32_t, ArraySortHelper_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem__PickPivotAndPartition, (DebugUI_Foldout_ContextMenuItem__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x011ABFE0, void, ArraySortHelper_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem__Sort, (DebugUI_Foldout_ContextMenuItem__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2EE0, ArraySortHelper_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem__Sort__MethodInfo); DO_APP_FUNC(0x011ABBF0, void, ArraySortHelper_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem__Sort_1, (ArraySortHelper_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem_ * __this, DebugUI_Foldout_ContextMenuItem__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2EB0, ArraySortHelper_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem__Sort_1__MethodInfo); DO_APP_FUNC(0x00FC5A80, void, ArraySortHelper_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem__Swap, (DebugUI_Foldout_ContextMenuItem__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FC5860, void, ArraySortHelper_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem__SwapIfGreater, (DebugUI_Foldout_ContextMenuItem__Array * keys, Comparison_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem_ *, ArraySortHelper_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher___ctor, (ArraySortHelper_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011AC3D0, int32_t, ArraySortHelper_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher__BinarySearch, (ArraySortHelper_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher_ * __this, InputControlLayout_Collection_LayoutMatcher__Array * array, int32_t index, int32_t length, InputControlLayout_Collection_LayoutMatcher value, IComparer_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2F10, ArraySortHelper_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FBFCE0, void, ArraySortHelper_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher__DownHeap, (InputControlLayout_Collection_LayoutMatcher__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher__Heapsort, (InputControlLayout_Collection_LayoutMatcher__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FC0040, void, ArraySortHelper_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher__InsertionSort, (InputControlLayout_Collection_LayoutMatcher__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher_ * comparer, MethodInfo * method)); @@ -125844,13 +139141,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_UnityEngine_InputSystem_Layouts_ DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher__IntrospectiveSort, (InputControlLayout_Collection_LayoutMatcher__Array * keys, int32_t left, int32_t length, Comparison_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB71C0, int32_t, ArraySortHelper_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher__PickPivotAndPartition, (InputControlLayout_Collection_LayoutMatcher__Array * keys, int32_t lo, int32_t hi, Comparison_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x011AC550, void, ArraySortHelper_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher__Sort, (InputControlLayout_Collection_LayoutMatcher__Array * keys, int32_t index, int32_t length, Comparison_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2EF8, ArraySortHelper_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher__Sort__MethodInfo); DO_APP_FUNC(0x011AC160, void, ArraySortHelper_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher__Sort_1, (ArraySortHelper_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher_ * __this, InputControlLayout_Collection_LayoutMatcher__Array * keys, int32_t index, int32_t length, IComparer_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2EC8, ArraySortHelper_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher__Sort_1__MethodInfo); DO_APP_FUNC(0x00FBFB80, void, ArraySortHelper_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher__Swap, (InputControlLayout_Collection_LayoutMatcher__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FBF920, void, ArraySortHelper_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher__SwapIfGreater, (InputControlLayout_Collection_LayoutMatcher__Array * keys, Comparison_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher_ *, ArraySortHelper_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView___ctor, (ArraySortHelper_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011AC940, int32_t, ArraySortHelper_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView__BinarySearch, (ArraySortHelper_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView_ * __this, InstructionList_DebugView_InstructionView__Array * array, int32_t index, int32_t length, InstructionList_DebugView_InstructionView value, IComparer_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2F28, ArraySortHelper_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView__BinarySearch__MethodInfo); DO_APP_FUNC(0x011AD020, void, ArraySortHelper_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView__DownHeap, (InstructionList_DebugView_InstructionView__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView__Heapsort, (InstructionList_DebugView_InstructionView__Array * keys, int32_t lo, int32_t hi, Comparison_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x011AD370, void, ArraySortHelper_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView__InsertionSort, (InstructionList_DebugView_InstructionView__Array * keys, int32_t lo, int32_t hi, Comparison_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView_ * comparer, MethodInfo * method)); @@ -125859,13 +139159,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_System_Linq_Expressions_Interpre DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView__IntrospectiveSort, (InstructionList_DebugView_InstructionView__Array * keys, int32_t left, int32_t length, Comparison_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB9EF0, int32_t, ArraySortHelper_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView__PickPivotAndPartition, (InstructionList_DebugView_InstructionView__Array * keys, int32_t lo, int32_t hi, Comparison_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x011ACAC0, void, ArraySortHelper_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView__Sort, (InstructionList_DebugView_InstructionView__Array * keys, int32_t index, int32_t length, Comparison_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2E48, ArraySortHelper_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView__Sort__MethodInfo); DO_APP_FUNC(0x011AC6D0, void, ArraySortHelper_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView__Sort_1, (ArraySortHelper_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView_ * __this, InstructionList_DebugView_InstructionView__Array * keys, int32_t index, int32_t length, IComparer_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2F40, ArraySortHelper_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView__Sort_1__MethodInfo); DO_APP_FUNC(0x011ACEC0, void, ArraySortHelper_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView__Swap, (InstructionList_DebugView_InstructionView__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x011ACC40, void, ArraySortHelper_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView__SwapIfGreater, (InstructionList_DebugView_InstructionView__Array * keys, Comparison_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView_ *, ArraySortHelper_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb___ctor, (ArraySortHelper_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011AD7C0, int32_t, ArraySortHelper_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__BinarySearch, (ArraySortHelper_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * __this, PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__Array * array, int32_t index, int32_t length, PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb value, IComparer_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2E60, ArraySortHelper_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__BinarySearch__MethodInfo); DO_APP_FUNC(0x00FB42A0, void, ArraySortHelper_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__DownHeap, (PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__Heapsort, (PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__Array * keys, int32_t lo, int32_t hi, Comparison_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB4580, void, ArraySortHelper_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__InsertionSort, (PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__Array * keys, int32_t lo, int32_t hi, Comparison_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * comparer, MethodInfo * method)); @@ -125874,13 +139177,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_Rewired_PlayerController_Element DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__IntrospectiveSort, (PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__Array * keys, int32_t left, int32_t length, Comparison_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB3DC0, int32_t, ArraySortHelper_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__PickPivotAndPartition, (PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__Array * keys, int32_t lo, int32_t hi, Comparison_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x011AD940, void, ArraySortHelper_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__Sort, (PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__Array * keys, int32_t index, int32_t length, Comparison_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2E58, ArraySortHelper_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__Sort__MethodInfo); DO_APP_FUNC(0x011AD550, void, ArraySortHelper_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__Sort_1, (ArraySortHelper_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * __this, PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__Array * keys, int32_t index, int32_t length, IComparer_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2E38, ArraySortHelper_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__Sort_1__MethodInfo); DO_APP_FUNC(0x00FB3D40, void, ArraySortHelper_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__Swap, (PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x00FB3BC0, void, ArraySortHelper_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__SwapIfGreater, (PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__Array * keys, Comparison_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ *, ArraySortHelper_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_Cinemachine_TargetPositionCache_CacheCurve_Item___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_Cinemachine_TargetPositionCache_CacheCurve_Item___ctor, (ArraySortHelper_1_Cinemachine_TargetPositionCache_CacheCurve_Item_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011ADD30, int32_t, ArraySortHelper_1_Cinemachine_TargetPositionCache_CacheCurve_Item__BinarySearch, (ArraySortHelper_1_Cinemachine_TargetPositionCache_CacheCurve_Item_ * __this, TargetPositionCache_CacheCurve_Item__Array * array, int32_t index, int32_t length, TargetPositionCache_CacheCurve_Item value, IComparer_1_Cinemachine_TargetPositionCache_CacheCurve_Item_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2E68, ArraySortHelper_1_Cinemachine_TargetPositionCache_CacheCurve_Item__BinarySearch__MethodInfo); DO_APP_FUNC(0x010A9190, void, ArraySortHelper_1_Cinemachine_TargetPositionCache_CacheCurve_Item__DownHeap, (TargetPositionCache_CacheCurve_Item__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_Cinemachine_TargetPositionCache_CacheCurve_Item_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_Cinemachine_TargetPositionCache_CacheCurve_Item__Heapsort, (TargetPositionCache_CacheCurve_Item__Array * keys, int32_t lo, int32_t hi, Comparison_1_Cinemachine_TargetPositionCache_CacheCurve_Item_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010A94D0, void, ArraySortHelper_1_Cinemachine_TargetPositionCache_CacheCurve_Item__InsertionSort, (TargetPositionCache_CacheCurve_Item__Array * keys, int32_t lo, int32_t hi, Comparison_1_Cinemachine_TargetPositionCache_CacheCurve_Item_ * comparer, MethodInfo * method)); @@ -125889,13 +139195,16 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_Cinemachine_TargetPositionCache_ DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_Cinemachine_TargetPositionCache_CacheCurve_Item__IntrospectiveSort, (TargetPositionCache_CacheCurve_Item__Array * keys, int32_t left, int32_t length, Comparison_1_Cinemachine_TargetPositionCache_CacheCurve_Item_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010A8C60, int32_t, ArraySortHelper_1_Cinemachine_TargetPositionCache_CacheCurve_Item__PickPivotAndPartition, (TargetPositionCache_CacheCurve_Item__Array * keys, int32_t lo, int32_t hi, Comparison_1_Cinemachine_TargetPositionCache_CacheCurve_Item_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x011ADEC0, void, ArraySortHelper_1_Cinemachine_TargetPositionCache_CacheCurve_Item__Sort, (TargetPositionCache_CacheCurve_Item__Array * keys, int32_t index, int32_t length, Comparison_1_Cinemachine_TargetPositionCache_CacheCurve_Item_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2E88, ArraySortHelper_1_Cinemachine_TargetPositionCache_CacheCurve_Item__Sort__MethodInfo); DO_APP_FUNC(0x011ADAC0, void, ArraySortHelper_1_Cinemachine_TargetPositionCache_CacheCurve_Item__Sort_1, (ArraySortHelper_1_Cinemachine_TargetPositionCache_CacheCurve_Item_ * __this, TargetPositionCache_CacheCurve_Item__Array * keys, int32_t index, int32_t length, IComparer_1_Cinemachine_TargetPositionCache_CacheCurve_Item_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2E70, ArraySortHelper_1_Cinemachine_TargetPositionCache_CacheCurve_Item__Sort_1__MethodInfo); DO_APP_FUNC(0x010A8BC0, void, ArraySortHelper_1_Cinemachine_TargetPositionCache_CacheCurve_Item__Swap, (TargetPositionCache_CacheCurve_Item__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x010A8A00, void, ArraySortHelper_1_Cinemachine_TargetPositionCache_CacheCurve_Item__SwapIfGreater, (TargetPositionCache_CacheCurve_Item__Array * keys, Comparison_1_Cinemachine_TargetPositionCache_CacheCurve_Item_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_Cinemachine_TargetPositionCache_CacheCurve_Item_ *, ArraySortHelper_1_Cinemachine_TargetPositionCache_CacheCurve_Item__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x00FB2100, void, ArraySortHelper_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ArraySortHelper_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem___ctor, (ArraySortHelper_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011AE2B0, int32_t, ArraySortHelper_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__BinarySearch, (ArraySortHelper_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * __this, TargetPositionCache_CacheEntry_RecordingItem__Array * array, int32_t index, int32_t length, TargetPositionCache_CacheEntry_RecordingItem value, IComparer_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2E08, ArraySortHelper_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__BinarySearch__MethodInfo); DO_APP_FUNC(0x0109E120, void, ArraySortHelper_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__DownHeap, (TargetPositionCache_CacheEntry_RecordingItem__Array * keys, int32_t i, int32_t n, int32_t lo, Comparison_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00FB17F0, void, ArraySortHelper_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__Heapsort, (TargetPositionCache_CacheEntry_RecordingItem__Array * keys, int32_t lo, int32_t hi, Comparison_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0109E470, void, ArraySortHelper_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__InsertionSort, (TargetPositionCache_CacheEntry_RecordingItem__Array * keys, int32_t lo, int32_t hi, Comparison_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * comparer, MethodInfo * method)); @@ -125904,7 +139213,9 @@ DO_APP_FUNC(0x00FB0DD0, void, ArraySortHelper_1_Cinemachine_TargetPositionCache_ DO_APP_FUNC(0x00FB0CB0, void, ArraySortHelper_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__IntrospectiveSort, (TargetPositionCache_CacheEntry_RecordingItem__Array * keys, int32_t left, int32_t length, Comparison_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0109DBD0, int32_t, ArraySortHelper_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__PickPivotAndPartition, (TargetPositionCache_CacheEntry_RecordingItem__Array * keys, int32_t lo, int32_t hi, Comparison_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x011AE440, void, ArraySortHelper_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__Sort, (TargetPositionCache_CacheEntry_RecordingItem__Array * keys, int32_t index, int32_t length, Comparison_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2E00, ArraySortHelper_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__Sort__MethodInfo); DO_APP_FUNC(0x011AE040, void, ArraySortHelper_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__Sort_1, (ArraySortHelper_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * __this, TargetPositionCache_CacheEntry_RecordingItem__Array * keys, int32_t index, int32_t length, IComparer_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2E78, ArraySortHelper_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__Sort_1__MethodInfo); DO_APP_FUNC(0x0109DB40, void, ArraySortHelper_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__Swap, (TargetPositionCache_CacheEntry_RecordingItem__Array * a, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x0109D970, void, ArraySortHelper_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__SwapIfGreater, (TargetPositionCache_CacheEntry_RecordingItem__Array * keys, Comparison_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x00FB2060, ArraySortHelper_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ *, ArraySortHelper_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__get_Default, (MethodInfo * method)); @@ -125917,6 +139228,7 @@ DO_APP_FUNC(0x011AEC60, void, ArraySortHelper_2_System_Int32_System_ValueTuple_2 DO_APP_FUNC(0x011AEB30, void, ArraySortHelper_2_System_Int32_System_ValueTuple_2__IntrospectiveSort, (Int32__Array * keys, ValueTuple_2_Object_Int32___Array * values, int32_t left, int32_t length, IComparer_1_System_Int32_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x011AF140, int32_t, ArraySortHelper_2_System_Int32_System_ValueTuple_2__PickPivotAndPartition, (Int32__Array * keys, ValueTuple_2_Object_Int32___Array * values, int32_t lo, int32_t hi, IComparer_1_System_Int32_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x011AE5C0, void, ArraySortHelper_2_System_Int32_System_ValueTuple_2__Sort, (ArraySortHelper_2_System_Int32_System_ValueTuple_2_ * __this, Int32__Array * keys, ValueTuple_2_Object_Int32___Array * values, int32_t index, int32_t length, IComparer_1_System_Int32_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2E20, ArraySortHelper_2_System_Int32_System_ValueTuple_2__Sort__MethodInfo); DO_APP_FUNC(0x011AE9A0, void, ArraySortHelper_2_System_Int32_System_ValueTuple_2__Swap, (Int32__Array * keys, ValueTuple_2_Object_Int32___Array * values, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x011AE770, void, ArraySortHelper_2_System_Int32_System_ValueTuple_2__SwapIfGreaterWithItems, (Int32__Array * keys, ValueTuple_2_Object_Int32___Array * values, IComparer_1_System_Int32_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x011AFCF0, ArraySortHelper_2_System_Int32_System_ValueTuple_2_ *, ArraySortHelper_2_System_Int32_System_ValueTuple_2__get_Default, (MethodInfo * method)); @@ -125929,6 +139241,7 @@ DO_APP_FUNC(0x011AEC60, void, ArraySortHelper_2_System_Object_System_Object__Int DO_APP_FUNC(0x011AEB30, void, ArraySortHelper_2_System_Object_System_Object__IntrospectiveSort, (Object__Array * keys, Object__Array * values, int32_t left, int32_t length, IComparer_1_System_Object_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01208E60, int32_t, ArraySortHelper_2_System_Object_System_Object__PickPivotAndPartition, (Object__Array * keys, Object__Array * values, int32_t lo, int32_t hi, IComparer_1_System_Object_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01208AC0, void, ArraySortHelper_2_System_Object_System_Object__Sort, (ArraySortHelper_2_System_Object_System_Object_ * __this, Object__Array * keys, Object__Array * values, int32_t index, int32_t length, IComparer_1_System_Object_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB568, ArraySortHelper_2_System_Object_System_Object__Sort__MethodInfo); DO_APP_FUNC(0x01208DB0, void, ArraySortHelper_2_System_Object_System_Object__Swap, (Object__Array * keys, Object__Array * values, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x01208C70, void, ArraySortHelper_2_System_Object_System_Object__SwapIfGreaterWithItems, (Object__Array * keys, Object__Array * values, IComparer_1_System_Object_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x011AFCF0, ArraySortHelper_2_System_Object_System_Object_ *, ArraySortHelper_2_System_Object_System_Object__get_Default, (MethodInfo * method)); @@ -125941,6 +139254,7 @@ DO_APP_FUNC(0x011AEC60, void, ArraySortHelper_2_System_Single_System_Object__Int DO_APP_FUNC(0x011AEB30, void, ArraySortHelper_2_System_Single_System_Object__IntrospectiveSort, (Single__Array * keys, Object__Array * values, int32_t left, int32_t length, IComparer_1_System_Single_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01209A90, int32_t, ArraySortHelper_2_System_Single_System_Object__PickPivotAndPartition, (Single__Array * keys, Object__Array * values, int32_t lo, int32_t hi, IComparer_1_System_Single_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x012096F0, void, ArraySortHelper_2_System_Single_System_Object__Sort, (ArraySortHelper_2_System_Single_System_Object_ * __this, Single__Array * keys, Object__Array * values, int32_t index, int32_t length, IComparer_1_System_Single_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB560, ArraySortHelper_2_System_Single_System_Object__Sort__MethodInfo); DO_APP_FUNC(0x012099F0, void, ArraySortHelper_2_System_Single_System_Object__Swap, (Single__Array * keys, Object__Array * values, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x012098A0, void, ArraySortHelper_2_System_Single_System_Object__SwapIfGreaterWithItems, (Single__Array * keys, Object__Array * values, IComparer_1_System_Single_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x011AFCF0, ArraySortHelper_2_System_Single_System_Object_ *, ArraySortHelper_2_System_Single_System_Object__get_Default, (MethodInfo * method)); @@ -125953,6 +139267,7 @@ DO_APP_FUNC(0x011AEC60, void, ArraySortHelper_2_System_UInt64_System_Object__Int DO_APP_FUNC(0x011AEB30, void, ArraySortHelper_2_System_UInt64_System_Object__IntrospectiveSort, (UInt64__Array * keys, Object__Array * values, int32_t left, int32_t length, IComparer_1_System_UInt64_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01208E60, int32_t, ArraySortHelper_2_System_UInt64_System_Object__PickPivotAndPartition, (UInt64__Array * keys, Object__Array * values, int32_t lo, int32_t hi, IComparer_1_System_UInt64_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0120A350, void, ArraySortHelper_2_System_UInt64_System_Object__Sort, (ArraySortHelper_2_System_UInt64_System_Object_ * __this, UInt64__Array * keys, Object__Array * values, int32_t index, int32_t length, IComparer_1_System_UInt64_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB570, ArraySortHelper_2_System_UInt64_System_Object__Sort__MethodInfo); DO_APP_FUNC(0x0120A630, void, ArraySortHelper_2_System_UInt64_System_Object__Swap, (UInt64__Array * keys, Object__Array * values, int32_t i, int32_t j, MethodInfo * method)); DO_APP_FUNC(0x0120A500, void, ArraySortHelper_2_System_UInt64_System_Object__SwapIfGreaterWithItems, (UInt64__Array * keys, Object__Array * values, IComparer_1_System_UInt64_ * comparer, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x011AFCF0, ArraySortHelper_2_System_UInt64_System_Object_ *, ArraySortHelper_2_System_UInt64_System_Object__get_Default, (MethodInfo * method)); @@ -125961,23 +139276,28 @@ DO_APP_FUNC(0x0120ABE0, AsyncOperationHandle_1_System_Object_, AssetReferenceT_1 DO_APP_FUNC(0x0120AC20, AsyncOperationHandle_1_System_Object_, AssetReferenceT_1_System_Object__LoadAssetAsync, (AssetReferenceT_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0120ACA0, bool, AssetReferenceT_1_System_Object__ValidateAsset, (AssetReferenceT_1_System_Object_ * __this, Object_1 * obj, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, AssetReferenceT_1_System_Object__ValidateAsset_1, (AssetReferenceT_1_System_Object_ * __this, String * mainAssetPath, MethodInfo * method)); -DO_APP_FUNC(0x0120AD50, void, AsyncLocalValueChangedArgs_1_System_Object___ctor, (AsyncLocalValueChangedArgs_1_System_Object___Boxed * __this, Object * previousValue, Object * currentValue, bool contextChanged, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, Object *, AsyncLocalValueChangedArgs_1_System_Object__get_CurrentValue, (AsyncLocalValueChangedArgs_1_System_Object___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0120AD50, void, AsyncLocalValueChangedArgs_1_System_Object___ctor, (AsyncLocalValueChangedArgs_1_System_Object_ * __this, Object * previousValue, Object * currentValue, bool contextChanged, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, Object *, AsyncLocalValueChangedArgs_1_System_Object__get_CurrentValue, (AsyncLocalValueChangedArgs_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, AsyncLocal_1_System_Object___ctor, (AsyncLocal_1_System_Object_ * __this, Action_1_System_Threading_AsyncLocalValueChangedArgs_1__1 * valueChangedHandler, MethodInfo * method)); DO_APP_FUNC(0x0120AEA0, void, AsyncLocal_1_System_Object__System_Threading_IAsyncLocal_OnValueChanged, (AsyncLocal_1_System_Object_ * __this, Object * previousValueObj, Object * currentValueObj, bool contextChanged, MethodInfo * method)); DO_APP_FUNC(0x0120AE20, void, AsyncLocal_1_System_Object__set_Value, (AsyncLocal_1_System_Object_ * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x0120B100, void, AsyncOperationBase_1_System_Boolean___ctor, (AsyncOperationBase_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEB30, AsyncOperationBase_1_System_Boolean___ctor__MethodInfo); DO_APP_FUNC(0x0120DC70, void, AsyncOperationBase_1_System_Boolean____ctor_b__35_0, (AsyncOperationBase_1_System_Boolean_ * __this, AsyncOperationHandle o, MethodInfo * method)); DO_APP_FUNC(0x0120CCD0, void, AsyncOperationBase_1_System_Boolean__Complete, (AsyncOperationBase_1_System_Boolean_ * __this, bool result, bool success, String * errorMsg, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEC38, AsyncOperationBase_1_System_Boolean__Complete__MethodInfo); DO_APP_FUNC(0x0120CE20, void, AsyncOperationBase_1_System_Boolean__Complete_1, (AsyncOperationBase_1_System_Boolean_ * __this, bool result, bool success, Exception * exception, bool releaseDependenciesOnFailure, MethodInfo * method)); DO_APP_FUNC(0x0120CD00, void, AsyncOperationBase_1_System_Boolean__Complete_2, (AsyncOperationBase_1_System_Boolean_ * __this, bool result, bool success, String * errorMsg, bool releaseDependenciesOnFailure, MethodInfo * method)); DO_APP_FUNC(0x0120B600, void, AsyncOperationBase_1_System_Boolean__DecrementReferenceCount, (AsyncOperationBase_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB530, AsyncOperationBase_1_System_Boolean__DecrementReferenceCount__MethodInfo); DO_APP_FUNC(0x003AE050, void, AsyncOperationBase_1_System_Boolean__Destroy, (AsyncOperationBase_1_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AsyncOperationBase_1_System_Boolean__GetDependencies, (AsyncOperationBase_1_System_Boolean_ * __this, List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * dependencies, MethodInfo * method)); DO_APP_FUNC(0x0120DBA0, DownloadStatus, AsyncOperationBase_1_System_Boolean__GetDownloadStatus, (AsyncOperationBase_1_System_Boolean_ * __this, HashSet_1_System_Object_ * visited, MethodInfo * method)); DO_APP_FUNC(0x0120B330, void, AsyncOperationBase_1_System_Boolean__IncrementReferenceCount, (AsyncOperationBase_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB538, AsyncOperationBase_1_System_Boolean__IncrementReferenceCount__MethodInfo); DO_APP_FUNC(0x0120CA50, void, AsyncOperationBase_1_System_Boolean__InvokeCompletionEvent, (AsyncOperationBase_1_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0120D700, void, AsyncOperationBase_1_System_Boolean__InvokeExecute, (AsyncOperationBase_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEC60, AsyncOperationBase_1_System_Boolean__InvokeExecute__MethodInfo); DO_APP_FUNC(0x0041AEF0, bool, AsyncOperationBase_1_System_Boolean__InvokeWaitForCompletion, (AsyncOperationBase_1_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0120C940, bool, AsyncOperationBase_1_System_Boolean__MoveNext, (AsyncOperationBase_1_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0120C2A0, void, AsyncOperationBase_1_System_Boolean__RegisterForDeferredCallbackEvent, (AsyncOperationBase_1_System_Boolean_ * __this, bool incrementReferenceCount, MethodInfo * method)); @@ -126010,6 +139330,7 @@ DO_APP_FUNC(0x0120D7D0, void, AsyncOperationBase_1_System_Boolean__UnityEngine_R DO_APP_FUNC(0x0120D980, void, AsyncOperationBase_1_System_Boolean__UnityEngine_ResourceManagement_AsyncOperations_IAsyncOperation_set_OnDestroy, (AsyncOperationBase_1_System_Boolean_ * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_IAsyncOperation_ * value, MethodInfo * method)); DO_APP_FUNC(0x0120CC50, void, AsyncOperationBase_1_System_Boolean__UpdateCallback, (AsyncOperationBase_1_System_Boolean_ * __this, float unscaledDeltaTime, MethodInfo * method)); DO_APP_FUNC(0x0120B4C0, void, AsyncOperationBase_1_System_Boolean__WaitForCompletion, (AsyncOperationBase_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB510, AsyncOperationBase_1_System_Boolean__WaitForCompletion__MethodInfo); DO_APP_FUNC(0x0120C310, void, AsyncOperationBase_1_System_Boolean__add_Completed, (AsyncOperationBase_1_System_Boolean_ * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__5 * value, MethodInfo * method)); DO_APP_FUNC(0x0120C550, void, AsyncOperationBase_1_System_Boolean__add_CompletedTypeless, (AsyncOperationBase_1_System_Boolean_ * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * value, MethodInfo * method)); DO_APP_FUNC(0x0120C430, void, AsyncOperationBase_1_System_Boolean__add_Destroyed, (AsyncOperationBase_1_System_Boolean_ * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * value, MethodInfo * method)); @@ -126019,6 +139340,7 @@ DO_APP_FUNC(0x0120AFF0, String *, AsyncOperationBase_1_System_Boolean__get_Debug DO_APP_FUNC(0x0120B070, bool, AsyncOperationBase_1_System_Boolean__get_DestroyedEventHasListeners, (AsyncOperationBase_1_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0120CC20, AsyncOperationHandle_1_System_Boolean_, AsyncOperationBase_1_System_Boolean__get_Handle, (AsyncOperationBase_1_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0120C980, bool, AsyncOperationBase_1_System_Boolean__get_IsDone, (AsyncOperationBase_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEC70, AsyncOperationBase_1_System_Boolean__get_IsDone__MethodInfo); DO_APP_FUNC(0x005C4010, bool, AsyncOperationBase_1_System_Boolean__get_IsRunning, (AsyncOperationBase_1_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, Exception *, AsyncOperationBase_1_System_Boolean__get_OperationException, (AsyncOperationBase_1_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0120CA10, float, AsyncOperationBase_1_System_Boolean__get_PercentComplete, (AsyncOperationBase_1_System_Boolean_ * __this, MethodInfo * method)); @@ -126041,10 +139363,12 @@ DO_APP_FUNC(0x0120CCD0, void, AsyncOperationBase_1_System_Int64__Complete, (Asyn DO_APP_FUNC(0x0120F440, void, AsyncOperationBase_1_System_Int64__Complete_1, (AsyncOperationBase_1_System_Int64_ * __this, int64_t result, bool success, Exception * exception, bool releaseDependenciesOnFailure, MethodInfo * method)); DO_APP_FUNC(0x0120F320, void, AsyncOperationBase_1_System_Int64__Complete_2, (AsyncOperationBase_1_System_Int64_ * __this, int64_t result, bool success, String * errorMsg, bool releaseDependenciesOnFailure, MethodInfo * method)); DO_APP_FUNC(0x0120E1A0, void, AsyncOperationBase_1_System_Int64__DecrementReferenceCount, (AsyncOperationBase_1_System_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB448, AsyncOperationBase_1_System_Int64__DecrementReferenceCount__MethodInfo); DO_APP_FUNC(0x003AE050, void, AsyncOperationBase_1_System_Int64__Destroy, (AsyncOperationBase_1_System_Int64_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AsyncOperationBase_1_System_Int64__GetDependencies, (AsyncOperationBase_1_System_Int64_ * __this, List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * dependencies, MethodInfo * method)); DO_APP_FUNC(0x0120FB10, DownloadStatus, AsyncOperationBase_1_System_Int64__GetDownloadStatus, (AsyncOperationBase_1_System_Int64_ * __this, HashSet_1_System_Object_ * visited, MethodInfo * method)); DO_APP_FUNC(0x0120DED0, void, AsyncOperationBase_1_System_Int64__IncrementReferenceCount, (AsyncOperationBase_1_System_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB478, AsyncOperationBase_1_System_Int64__IncrementReferenceCount__MethodInfo); DO_APP_FUNC(0x0120F0D0, void, AsyncOperationBase_1_System_Int64__InvokeCompletionEvent, (AsyncOperationBase_1_System_Int64_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0120F9B0, void, AsyncOperationBase_1_System_Int64__InvokeExecute, (AsyncOperationBase_1_System_Int64_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, AsyncOperationBase_1_System_Int64__InvokeWaitForCompletion, (AsyncOperationBase_1_System_Int64_ * __this, MethodInfo * method)); @@ -126079,6 +139403,7 @@ DO_APP_FUNC(0x0120D7D0, void, AsyncOperationBase_1_System_Int64__UnityEngine_Res DO_APP_FUNC(0x0120D980, void, AsyncOperationBase_1_System_Int64__UnityEngine_ResourceManagement_AsyncOperations_IAsyncOperation_set_OnDestroy, (AsyncOperationBase_1_System_Int64_ * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_IAsyncOperation_ * value, MethodInfo * method)); DO_APP_FUNC(0x0120F2A0, void, AsyncOperationBase_1_System_Int64__UpdateCallback, (AsyncOperationBase_1_System_Int64_ * __this, float unscaledDeltaTime, MethodInfo * method)); DO_APP_FUNC(0x0120E060, void, AsyncOperationBase_1_System_Int64__WaitForCompletion, (AsyncOperationBase_1_System_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB498, AsyncOperationBase_1_System_Int64__WaitForCompletion__MethodInfo); DO_APP_FUNC(0x0120C310, void, AsyncOperationBase_1_System_Int64__add_Completed, (AsyncOperationBase_1_System_Int64_ * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__11 * value, MethodInfo * method)); DO_APP_FUNC(0x0120C550, void, AsyncOperationBase_1_System_Int64__add_CompletedTypeless, (AsyncOperationBase_1_System_Int64_ * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * value, MethodInfo * method)); DO_APP_FUNC(0x0120EE40, void, AsyncOperationBase_1_System_Int64__add_Destroyed, (AsyncOperationBase_1_System_Int64_ * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * value, MethodInfo * method)); @@ -126110,10 +139435,12 @@ DO_APP_FUNC(0x0120CCD0, void, AsyncOperationBase_1_System_Object__Complete, (Asy DO_APP_FUNC(0x012110D0, void, AsyncOperationBase_1_System_Object__Complete_1, (AsyncOperationBase_1_System_Object_ * __this, Object * result, bool success, Exception * exception, bool releaseDependenciesOnFailure, MethodInfo * method)); DO_APP_FUNC(0x01210FB0, void, AsyncOperationBase_1_System_Object__Complete_2, (AsyncOperationBase_1_System_Object_ * __this, Object * result, bool success, String * errorMsg, bool releaseDependenciesOnFailure, MethodInfo * method)); DO_APP_FUNC(0x012100E0, void, AsyncOperationBase_1_System_Object__DecrementReferenceCount, (AsyncOperationBase_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB3A0, AsyncOperationBase_1_System_Object__DecrementReferenceCount__MethodInfo); DO_APP_FUNC(0x003AE050, void, AsyncOperationBase_1_System_Object__Destroy, (AsyncOperationBase_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, AsyncOperationBase_1_System_Object__GetDependencies, (AsyncOperationBase_1_System_Object_ * __this, List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * dependencies, MethodInfo * method)); DO_APP_FUNC(0x01211730, DownloadStatus, AsyncOperationBase_1_System_Object__GetDownloadStatus, (AsyncOperationBase_1_System_Object_ * __this, HashSet_1_System_Object_ * visited, MethodInfo * method)); DO_APP_FUNC(0x0120FE10, void, AsyncOperationBase_1_System_Object__IncrementReferenceCount, (AsyncOperationBase_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB3E8, AsyncOperationBase_1_System_Object__IncrementReferenceCount__MethodInfo); DO_APP_FUNC(0x01210DA0, void, AsyncOperationBase_1_System_Object__InvokeCompletionEvent, (AsyncOperationBase_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01211640, void, AsyncOperationBase_1_System_Object__InvokeExecute, (AsyncOperationBase_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, AsyncOperationBase_1_System_Object__InvokeWaitForCompletion, (AsyncOperationBase_1_System_Object_ * __this, MethodInfo * method)); @@ -126149,6 +139476,7 @@ DO_APP_FUNC(0x0120D7D0, void, AsyncOperationBase_1_System_Object__UnityEngine_Re DO_APP_FUNC(0x0120D980, void, AsyncOperationBase_1_System_Object__UnityEngine_ResourceManagement_AsyncOperations_IAsyncOperation_set_OnDestroy, (AsyncOperationBase_1_System_Object_ * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_IAsyncOperation_ * value, MethodInfo * method)); DO_APP_FUNC(0x01210F30, void, AsyncOperationBase_1_System_Object__UpdateCallback, (AsyncOperationBase_1_System_Object_ * __this, float unscaledDeltaTime, MethodInfo * method)); DO_APP_FUNC(0x0120FFA0, void, AsyncOperationBase_1_System_Object__WaitForCompletion, (AsyncOperationBase_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB3D8, AsyncOperationBase_1_System_Object__WaitForCompletion__MethodInfo); DO_APP_FUNC(0x0120C310, void, AsyncOperationBase_1_System_Object__add_Completed, (AsyncOperationBase_1_System_Object_ * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__18 * value, MethodInfo * method)); DO_APP_FUNC(0x0120C550, void, AsyncOperationBase_1_System_Object__add_CompletedTypeless, (AsyncOperationBase_1_System_Object_ * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * value, MethodInfo * method)); DO_APP_FUNC(0x01210B50, void, AsyncOperationBase_1_System_Object__add_Destroyed, (AsyncOperationBase_1_System_Object_ * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * value, MethodInfo * method)); @@ -126183,11 +139511,13 @@ DO_APP_FUNC(0x01213280, void, AsyncOperationBase_1_UnityEngine_ResourceManagemen DO_APP_FUNC_METHODINFO(0x03C9E118, AsyncOperationBase_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__Complete_1__MethodInfo); DO_APP_FUNC(0x01213160, void, AsyncOperationBase_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__Complete_2, (AsyncOperationBase_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, SceneInstance result, bool success, String * errorMsg, bool releaseDependenciesOnFailure, MethodInfo * method)); DO_APP_FUNC(0x01211DB0, void, AsyncOperationBase_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__DecrementReferenceCount, (AsyncOperationBase_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB2B8, AsyncOperationBase_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__DecrementReferenceCount__MethodInfo); DO_APP_FUNC(0x003AE050, void, AsyncOperationBase_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__Destroy, (AsyncOperationBase_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9E0B8, AsyncOperationBase_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__Destroy__MethodInfo); DO_APP_FUNC(0x003AE050, void, AsyncOperationBase_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__GetDependencies, (AsyncOperationBase_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * dependencies, MethodInfo * method)); DO_APP_FUNC(0x01213CE0, DownloadStatus, AsyncOperationBase_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__GetDownloadStatus, (AsyncOperationBase_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, HashSet_1_System_Object_ * visited, MethodInfo * method)); DO_APP_FUNC(0x01211AE0, void, AsyncOperationBase_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__IncrementReferenceCount, (AsyncOperationBase_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB300, AsyncOperationBase_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__IncrementReferenceCount__MethodInfo); DO_APP_FUNC(0x01212EB0, void, AsyncOperationBase_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__InvokeCompletionEvent, (AsyncOperationBase_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01213B70, void, AsyncOperationBase_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__InvokeExecute, (AsyncOperationBase_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9E0F0, AsyncOperationBase_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__InvokeExecute__MethodInfo); @@ -126224,6 +139554,7 @@ DO_APP_FUNC(0x0120D7D0, void, AsyncOperationBase_1_UnityEngine_ResourceManagemen DO_APP_FUNC(0x0120D980, void, AsyncOperationBase_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__UnityEngine_ResourceManagement_AsyncOperations_IAsyncOperation_set_OnDestroy, (AsyncOperationBase_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_IAsyncOperation_ * value, MethodInfo * method)); DO_APP_FUNC(0x012130A0, void, AsyncOperationBase_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__UpdateCallback, (AsyncOperationBase_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, float unscaledDeltaTime, MethodInfo * method)); DO_APP_FUNC(0x01211C70, void, AsyncOperationBase_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__WaitForCompletion, (AsyncOperationBase_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB2A8, AsyncOperationBase_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__WaitForCompletion__MethodInfo); DO_APP_FUNC(0x01212B00, void, AsyncOperationBase_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__add_Completed, (AsyncOperationBase_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__4 * value, MethodInfo * method)); DO_APP_FUNC(0x0120C550, void, AsyncOperationBase_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__add_CompletedTypeless, (AsyncOperationBase_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * value, MethodInfo * method)); DO_APP_FUNC(0x01212C20, void, AsyncOperationBase_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__add_Destroyed, (AsyncOperationBase_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * value, MethodInfo * method)); @@ -126235,6 +139566,7 @@ DO_APP_FUNC(0x0120CC20, AsyncOperationHandle_1_UnityEngine_ResourceManagement_Re DO_APP_FUNC(0x0120C980, bool, AsyncOperationBase_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__get_IsDone, (AsyncOperationBase_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9E0E8, AsyncOperationBase_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__get_IsDone__MethodInfo); DO_APP_FUNC(0x005C4280, bool, AsyncOperationBase_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__get_IsRunning, (AsyncOperationBase_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE310, AsyncOperationBase_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__get_IsRunning__MethodInfo); DO_APP_FUNC(0x003BB3B0, Exception *, AsyncOperationBase_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__get_OperationException, (AsyncOperationBase_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01212E70, float, AsyncOperationBase_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__get_PercentComplete, (AsyncOperationBase_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00945260, float, AsyncOperationBase_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__get_Progress, (AsyncOperationBase_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, MethodInfo * method)); @@ -126251,453 +139583,519 @@ DO_APP_FUNC(0x003C7430, void, AsyncOperationBase_1_UnityEngine_ResourceManagemen DO_APP_FUNC(0x01212D40, void, AsyncOperationBase_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__set_OperationException, (AsyncOperationBase_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, Exception * value, MethodInfo * method)); DO_APP_FUNC(0x01211800, void, AsyncOperationBase_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__set_Result, (AsyncOperationBase_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, SceneInstance value, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9E120, AsyncOperationBase_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__set_Result__MethodInfo); -DO_APP_FUNC(0x01213DF0, void, AsyncOperationHandle_1_System_Boolean___ctor, (AsyncOperationHandle_1_System_Boolean___Boxed * __this, AsyncOperationBase_1_System_Boolean_ * op, MethodInfo * method)); -DO_APP_FUNC(0x012141C0, void, AsyncOperationHandle_1_System_Boolean___ctor_1, (AsyncOperationHandle_1_System_Boolean___Boxed * __this, IAsyncOperation * op, MethodInfo * method)); -DO_APP_FUNC(0x012143C0, void, AsyncOperationHandle_1_System_Boolean___ctor_2, (AsyncOperationHandle_1_System_Boolean___Boxed * __this, IAsyncOperation * op, int32_t version, MethodInfo * method)); -DO_APP_FUNC(0x012145A0, void, AsyncOperationHandle_1_System_Boolean___ctor_3, (AsyncOperationHandle_1_System_Boolean___Boxed * __this, IAsyncOperation * op, String * locationName, MethodInfo * method)); -DO_APP_FUNC(0x012147C0, void, AsyncOperationHandle_1_System_Boolean___ctor_4, (AsyncOperationHandle_1_System_Boolean___Boxed * __this, IAsyncOperation * op, int32_t version, String * locationName, MethodInfo * method)); -DO_APP_FUNC(0x01214990, AsyncOperationHandle_1_System_Boolean_, AsyncOperationHandle_1_System_Boolean__Acquire, (AsyncOperationHandle_1_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01215030, bool, AsyncOperationHandle_1_System_Boolean__Equals, (AsyncOperationHandle_1_System_Boolean___Boxed * __this, AsyncOperationHandle_1_System_Boolean_ other, MethodInfo * method)); -DO_APP_FUNC(0x01214E40, void, AsyncOperationHandle_1_System_Boolean__GetDependencies, (AsyncOperationHandle_1_System_Boolean___Boxed * __this, List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * deps, MethodInfo * method)); -DO_APP_FUNC(0x01213F40, DownloadStatus, AsyncOperationHandle_1_System_Boolean__GetDownloadStatus, (AsyncOperationHandle_1_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01215060, int32_t, AsyncOperationHandle_1_System_Boolean__GetHashCode, (AsyncOperationHandle_1_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01214010, DownloadStatus, AsyncOperationHandle_1_System_Boolean__InternalGetDownloadStatus, (AsyncOperationHandle_1_System_Boolean___Boxed * __this, HashSet_1_System_Object_ * visited, MethodInfo * method)); -DO_APP_FUNC(0x012154A0, bool, AsyncOperationHandle_1_System_Boolean__IsValid, (AsyncOperationHandle_1_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01215750, void, AsyncOperationHandle_1_System_Boolean__Release, (AsyncOperationHandle_1_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01215B00, bool, AsyncOperationHandle_1_System_Boolean__System_Collections_IEnumerator_MoveNext, (AsyncOperationHandle_1_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, AsyncOperationHandle_1_System_Boolean__System_Collections_IEnumerator_Reset, (AsyncOperationHandle_1_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01215A70, Object *, AsyncOperationHandle_1_System_Boolean__System_Collections_IEnumerator_get_Current, (AsyncOperationHandle_1_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x012150A0, bool, AsyncOperationHandle_1_System_Boolean__WaitForCompletion, (AsyncOperationHandle_1_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01214A60, void, AsyncOperationHandle_1_System_Boolean__add_Completed, (AsyncOperationHandle_1_System_Boolean___Boxed * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__5 * value, MethodInfo * method)); -DO_APP_FUNC(0x01214BE0, void, AsyncOperationHandle_1_System_Boolean__add_CompletedTypeless, (AsyncOperationHandle_1_System_Boolean___Boxed * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * value, MethodInfo * method)); -DO_APP_FUNC(0x01214EB0, void, AsyncOperationHandle_1_System_Boolean__add_Destroyed, (AsyncOperationHandle_1_System_Boolean___Boxed * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * value, MethodInfo * method)); -DO_APP_FUNC(0x01214D60, String *, AsyncOperationHandle_1_System_Boolean__get_DebugName, (AsyncOperationHandle_1_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x012152D0, AsyncOperationBase_1_System_Boolean_ *, AsyncOperationHandle_1_System_Boolean__get_InternalOp, (AsyncOperationHandle_1_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x012153B0, bool, AsyncOperationHandle_1_System_Boolean__get_IsDone, (AsyncOperationHandle_1_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, String *, AsyncOperationHandle_1_System_Boolean__get_LocationName, (AsyncOperationHandle_1_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01215540, Exception *, AsyncOperationHandle_1_System_Boolean__get_OperationException, (AsyncOperationHandle_1_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x012155F0, float, AsyncOperationHandle_1_System_Boolean__get_PercentComplete, (AsyncOperationHandle_1_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x012156A0, int32_t, AsyncOperationHandle_1_System_Boolean__get_ReferenceCount, (AsyncOperationHandle_1_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01215860, bool, AsyncOperationHandle_1_System_Boolean__get_Result, (AsyncOperationHandle_1_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01215910, AsyncOperationStatus__Enum, AsyncOperationHandle_1_System_Boolean__get_Status, (AsyncOperationHandle_1_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x012159C0, Task_1_System_Boolean_ *, AsyncOperationHandle_1_System_Boolean__get_Task, (AsyncOperationHandle_1_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCC40, bool, AsyncOperationHandle_1_System_Boolean__get_UnloadSceneOpExcludeReleaseCallback, (AsyncOperationHandle_1_System_Boolean___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01213DF0, void, AsyncOperationHandle_1_System_Boolean___ctor, (AsyncOperationHandle_1_System_Boolean_ * __this, AsyncOperationBase_1_System_Boolean_ * op, MethodInfo * method)); +DO_APP_FUNC(0x012141C0, void, AsyncOperationHandle_1_System_Boolean___ctor_1, (AsyncOperationHandle_1_System_Boolean_ * __this, IAsyncOperation * op, MethodInfo * method)); +DO_APP_FUNC(0x012143C0, void, AsyncOperationHandle_1_System_Boolean___ctor_2, (AsyncOperationHandle_1_System_Boolean_ * __this, IAsyncOperation * op, int32_t version, MethodInfo * method)); +DO_APP_FUNC(0x012145A0, void, AsyncOperationHandle_1_System_Boolean___ctor_3, (AsyncOperationHandle_1_System_Boolean_ * __this, IAsyncOperation * op, String * locationName, MethodInfo * method)); +DO_APP_FUNC(0x012147C0, void, AsyncOperationHandle_1_System_Boolean___ctor_4, (AsyncOperationHandle_1_System_Boolean_ * __this, IAsyncOperation * op, int32_t version, String * locationName, MethodInfo * method)); +DO_APP_FUNC(0x01214990, AsyncOperationHandle_1_System_Boolean_, AsyncOperationHandle_1_System_Boolean__Acquire, (AsyncOperationHandle_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01215030, bool, AsyncOperationHandle_1_System_Boolean__Equals, (AsyncOperationHandle_1_System_Boolean_ * __this, AsyncOperationHandle_1_System_Boolean_ other, MethodInfo * method)); +DO_APP_FUNC(0x01214E40, void, AsyncOperationHandle_1_System_Boolean__GetDependencies, (AsyncOperationHandle_1_System_Boolean_ * __this, List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * deps, MethodInfo * method)); +DO_APP_FUNC(0x01213F40, DownloadStatus, AsyncOperationHandle_1_System_Boolean__GetDownloadStatus, (AsyncOperationHandle_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01215060, int32_t, AsyncOperationHandle_1_System_Boolean__GetHashCode, (AsyncOperationHandle_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01214010, DownloadStatus, AsyncOperationHandle_1_System_Boolean__InternalGetDownloadStatus, (AsyncOperationHandle_1_System_Boolean_ * __this, HashSet_1_System_Object_ * visited, MethodInfo * method)); +DO_APP_FUNC(0x012154A0, bool, AsyncOperationHandle_1_System_Boolean__IsValid, (AsyncOperationHandle_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE058, AsyncOperationHandle_1_System_Boolean__IsValid__MethodInfo); +DO_APP_FUNC(0x01215750, void, AsyncOperationHandle_1_System_Boolean__Release, (AsyncOperationHandle_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01215B00, bool, AsyncOperationHandle_1_System_Boolean__System_Collections_IEnumerator_MoveNext, (AsyncOperationHandle_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, AsyncOperationHandle_1_System_Boolean__System_Collections_IEnumerator_Reset, (AsyncOperationHandle_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01215A70, Object *, AsyncOperationHandle_1_System_Boolean__System_Collections_IEnumerator_get_Current, (AsyncOperationHandle_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x012150A0, bool, AsyncOperationHandle_1_System_Boolean__WaitForCompletion, (AsyncOperationHandle_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDAF0, AsyncOperationHandle_1_System_Boolean__WaitForCompletion__MethodInfo); +DO_APP_FUNC(0x01214A60, void, AsyncOperationHandle_1_System_Boolean__add_Completed, (AsyncOperationHandle_1_System_Boolean_ * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__5 * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDB20, AsyncOperationHandle_1_System_Boolean__add_Completed__MethodInfo); +DO_APP_FUNC(0x01214BE0, void, AsyncOperationHandle_1_System_Boolean__add_CompletedTypeless, (AsyncOperationHandle_1_System_Boolean_ * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * value, MethodInfo * method)); +DO_APP_FUNC(0x01214EB0, void, AsyncOperationHandle_1_System_Boolean__add_Destroyed, (AsyncOperationHandle_1_System_Boolean_ * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * value, MethodInfo * method)); +DO_APP_FUNC(0x01214D60, String *, AsyncOperationHandle_1_System_Boolean__get_DebugName, (AsyncOperationHandle_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDB08, AsyncOperationHandle_1_System_Boolean__get_DebugName__MethodInfo); +DO_APP_FUNC(0x012152D0, AsyncOperationBase_1_System_Boolean_ *, AsyncOperationHandle_1_System_Boolean__get_InternalOp, (AsyncOperationHandle_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB188, AsyncOperationHandle_1_System_Boolean__get_InternalOp__MethodInfo); +DO_APP_FUNC(0x012153B0, bool, AsyncOperationHandle_1_System_Boolean__get_IsDone, (AsyncOperationHandle_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE048, AsyncOperationHandle_1_System_Boolean__get_IsDone__MethodInfo); +DO_APP_FUNC(0x003BB3C0, String *, AsyncOperationHandle_1_System_Boolean__get_LocationName, (AsyncOperationHandle_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01215540, Exception *, AsyncOperationHandle_1_System_Boolean__get_OperationException, (AsyncOperationHandle_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x012155F0, float, AsyncOperationHandle_1_System_Boolean__get_PercentComplete, (AsyncOperationHandle_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x012156A0, int32_t, AsyncOperationHandle_1_System_Boolean__get_ReferenceCount, (AsyncOperationHandle_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01215860, bool, AsyncOperationHandle_1_System_Boolean__get_Result, (AsyncOperationHandle_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDB00, AsyncOperationHandle_1_System_Boolean__get_Result__MethodInfo); +DO_APP_FUNC(0x01215910, AsyncOperationStatus__Enum, AsyncOperationHandle_1_System_Boolean__get_Status, (AsyncOperationHandle_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDB18, AsyncOperationHandle_1_System_Boolean__get_Status__MethodInfo); +DO_APP_FUNC(0x012159C0, Task_1_System_Boolean_ *, AsyncOperationHandle_1_System_Boolean__get_Task, (AsyncOperationHandle_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCC40, bool, AsyncOperationHandle_1_System_Boolean__get_UnloadSceneOpExcludeReleaseCallback, (AsyncOperationHandle_1_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01213DB0, AsyncOperationHandle, AsyncOperationHandle_1_System_Boolean__op_Implicit, (AsyncOperationHandle_1_System_Boolean_ obj, MethodInfo * method)); -DO_APP_FUNC(0x01214B20, void, AsyncOperationHandle_1_System_Boolean__remove_Completed, (AsyncOperationHandle_1_System_Boolean___Boxed * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__5 * value, MethodInfo * method)); -DO_APP_FUNC(0x01214CA0, void, AsyncOperationHandle_1_System_Boolean__remove_CompletedTypeless, (AsyncOperationHandle_1_System_Boolean___Boxed * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * value, MethodInfo * method)); -DO_APP_FUNC(0x01214F70, void, AsyncOperationHandle_1_System_Boolean__remove_Destroyed, (AsyncOperationHandle_1_System_Boolean___Boxed * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * value, MethodInfo * method)); -DO_APP_FUNC(0x003BCBE0, void, AsyncOperationHandle_1_System_Boolean__set_LocationName, (AsyncOperationHandle_1_System_Boolean___Boxed * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x003BCC50, void, AsyncOperationHandle_1_System_Boolean__set_UnloadSceneOpExcludeReleaseCallback, (AsyncOperationHandle_1_System_Boolean___Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x01213DF0, void, AsyncOperationHandle_1_System_Int64___ctor, (AsyncOperationHandle_1_System_Int64___Boxed * __this, AsyncOperationBase_1_System_Int64_ * op, MethodInfo * method)); -DO_APP_FUNC(0x01215DC0, void, AsyncOperationHandle_1_System_Int64___ctor_1, (AsyncOperationHandle_1_System_Int64___Boxed * __this, IAsyncOperation * op, MethodInfo * method)); -DO_APP_FUNC(0x012143C0, void, AsyncOperationHandle_1_System_Int64___ctor_2, (AsyncOperationHandle_1_System_Int64___Boxed * __this, IAsyncOperation * op, int32_t version, MethodInfo * method)); -DO_APP_FUNC(0x01215FC0, void, AsyncOperationHandle_1_System_Int64___ctor_3, (AsyncOperationHandle_1_System_Int64___Boxed * __this, IAsyncOperation * op, String * locationName, MethodInfo * method)); -DO_APP_FUNC(0x012147C0, void, AsyncOperationHandle_1_System_Int64___ctor_4, (AsyncOperationHandle_1_System_Int64___Boxed * __this, IAsyncOperation * op, int32_t version, String * locationName, MethodInfo * method)); -DO_APP_FUNC(0x012161E0, AsyncOperationHandle_1_System_Int64_, AsyncOperationHandle_1_System_Int64__Acquire, (AsyncOperationHandle_1_System_Int64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01215030, bool, AsyncOperationHandle_1_System_Int64__Equals, (AsyncOperationHandle_1_System_Int64___Boxed * __this, AsyncOperationHandle_1_System_Int64_ other, MethodInfo * method)); -DO_APP_FUNC(0x01216690, void, AsyncOperationHandle_1_System_Int64__GetDependencies, (AsyncOperationHandle_1_System_Int64___Boxed * __this, List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * deps, MethodInfo * method)); -DO_APP_FUNC(0x01215B40, DownloadStatus, AsyncOperationHandle_1_System_Int64__GetDownloadStatus, (AsyncOperationHandle_1_System_Int64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01215060, int32_t, AsyncOperationHandle_1_System_Int64__GetHashCode, (AsyncOperationHandle_1_System_Int64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01215C10, DownloadStatus, AsyncOperationHandle_1_System_Int64__InternalGetDownloadStatus, (AsyncOperationHandle_1_System_Int64___Boxed * __this, HashSet_1_System_Object_ * visited, MethodInfo * method)); -DO_APP_FUNC(0x012154A0, bool, AsyncOperationHandle_1_System_Int64__IsValid, (AsyncOperationHandle_1_System_Int64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01216E90, void, AsyncOperationHandle_1_System_Int64__Release, (AsyncOperationHandle_1_System_Int64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01217240, bool, AsyncOperationHandle_1_System_Int64__System_Collections_IEnumerator_MoveNext, (AsyncOperationHandle_1_System_Int64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, AsyncOperationHandle_1_System_Int64__System_Collections_IEnumerator_Reset, (AsyncOperationHandle_1_System_Int64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x012171B0, Object *, AsyncOperationHandle_1_System_Int64__System_Collections_IEnumerator_get_Current, (AsyncOperationHandle_1_System_Int64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01216880, int64_t, AsyncOperationHandle_1_System_Int64__WaitForCompletion, (AsyncOperationHandle_1_System_Int64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x012162B0, void, AsyncOperationHandle_1_System_Int64__add_Completed, (AsyncOperationHandle_1_System_Int64___Boxed * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__11 * value, MethodInfo * method)); -DO_APP_FUNC(0x01216430, void, AsyncOperationHandle_1_System_Int64__add_CompletedTypeless, (AsyncOperationHandle_1_System_Int64___Boxed * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * value, MethodInfo * method)); -DO_APP_FUNC(0x01216700, void, AsyncOperationHandle_1_System_Int64__add_Destroyed, (AsyncOperationHandle_1_System_Int64___Boxed * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * value, MethodInfo * method)); -DO_APP_FUNC(0x012165B0, String *, AsyncOperationHandle_1_System_Int64__get_DebugName, (AsyncOperationHandle_1_System_Int64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01216AB0, AsyncOperationBase_1_System_Int64_ *, AsyncOperationHandle_1_System_Int64__get_InternalOp, (AsyncOperationHandle_1_System_Int64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01216B90, bool, AsyncOperationHandle_1_System_Int64__get_IsDone, (AsyncOperationHandle_1_System_Int64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, String *, AsyncOperationHandle_1_System_Int64__get_LocationName, (AsyncOperationHandle_1_System_Int64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01216C80, Exception *, AsyncOperationHandle_1_System_Int64__get_OperationException, (AsyncOperationHandle_1_System_Int64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01216D30, float, AsyncOperationHandle_1_System_Int64__get_PercentComplete, (AsyncOperationHandle_1_System_Int64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01216DE0, int32_t, AsyncOperationHandle_1_System_Int64__get_ReferenceCount, (AsyncOperationHandle_1_System_Int64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01216FA0, int64_t, AsyncOperationHandle_1_System_Int64__get_Result, (AsyncOperationHandle_1_System_Int64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01217050, AsyncOperationStatus__Enum, AsyncOperationHandle_1_System_Int64__get_Status, (AsyncOperationHandle_1_System_Int64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01217100, Task_1_System_Int64_ *, AsyncOperationHandle_1_System_Int64__get_Task, (AsyncOperationHandle_1_System_Int64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCC40, bool, AsyncOperationHandle_1_System_Int64__get_UnloadSceneOpExcludeReleaseCallback, (AsyncOperationHandle_1_System_Int64___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD060, AsyncOperationHandle_1_System_Boolean__op_Implicit__MethodInfo); +DO_APP_FUNC(0x01214B20, void, AsyncOperationHandle_1_System_Boolean__remove_Completed, (AsyncOperationHandle_1_System_Boolean_ * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__5 * value, MethodInfo * method)); +DO_APP_FUNC(0x01214CA0, void, AsyncOperationHandle_1_System_Boolean__remove_CompletedTypeless, (AsyncOperationHandle_1_System_Boolean_ * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * value, MethodInfo * method)); +DO_APP_FUNC(0x01214F70, void, AsyncOperationHandle_1_System_Boolean__remove_Destroyed, (AsyncOperationHandle_1_System_Boolean_ * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * value, MethodInfo * method)); +DO_APP_FUNC(0x003BCBE0, void, AsyncOperationHandle_1_System_Boolean__set_LocationName, (AsyncOperationHandle_1_System_Boolean_ * __this, String * value, MethodInfo * method)); +DO_APP_FUNC(0x003BCC50, void, AsyncOperationHandle_1_System_Boolean__set_UnloadSceneOpExcludeReleaseCallback, (AsyncOperationHandle_1_System_Boolean_ * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x01213DF0, void, AsyncOperationHandle_1_System_Int64___ctor, (AsyncOperationHandle_1_System_Int64_ * __this, AsyncOperationBase_1_System_Int64_ * op, MethodInfo * method)); +DO_APP_FUNC(0x01215DC0, void, AsyncOperationHandle_1_System_Int64___ctor_1, (AsyncOperationHandle_1_System_Int64_ * __this, IAsyncOperation * op, MethodInfo * method)); +DO_APP_FUNC(0x012143C0, void, AsyncOperationHandle_1_System_Int64___ctor_2, (AsyncOperationHandle_1_System_Int64_ * __this, IAsyncOperation * op, int32_t version, MethodInfo * method)); +DO_APP_FUNC(0x01215FC0, void, AsyncOperationHandle_1_System_Int64___ctor_3, (AsyncOperationHandle_1_System_Int64_ * __this, IAsyncOperation * op, String * locationName, MethodInfo * method)); +DO_APP_FUNC(0x012147C0, void, AsyncOperationHandle_1_System_Int64___ctor_4, (AsyncOperationHandle_1_System_Int64_ * __this, IAsyncOperation * op, int32_t version, String * locationName, MethodInfo * method)); +DO_APP_FUNC(0x012161E0, AsyncOperationHandle_1_System_Int64_, AsyncOperationHandle_1_System_Int64__Acquire, (AsyncOperationHandle_1_System_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01215030, bool, AsyncOperationHandle_1_System_Int64__Equals, (AsyncOperationHandle_1_System_Int64_ * __this, AsyncOperationHandle_1_System_Int64_ other, MethodInfo * method)); +DO_APP_FUNC(0x01216690, void, AsyncOperationHandle_1_System_Int64__GetDependencies, (AsyncOperationHandle_1_System_Int64_ * __this, List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * deps, MethodInfo * method)); +DO_APP_FUNC(0x01215B40, DownloadStatus, AsyncOperationHandle_1_System_Int64__GetDownloadStatus, (AsyncOperationHandle_1_System_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01215060, int32_t, AsyncOperationHandle_1_System_Int64__GetHashCode, (AsyncOperationHandle_1_System_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01215C10, DownloadStatus, AsyncOperationHandle_1_System_Int64__InternalGetDownloadStatus, (AsyncOperationHandle_1_System_Int64_ * __this, HashSet_1_System_Object_ * visited, MethodInfo * method)); +DO_APP_FUNC(0x012154A0, bool, AsyncOperationHandle_1_System_Int64__IsValid, (AsyncOperationHandle_1_System_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01216E90, void, AsyncOperationHandle_1_System_Int64__Release, (AsyncOperationHandle_1_System_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01217240, bool, AsyncOperationHandle_1_System_Int64__System_Collections_IEnumerator_MoveNext, (AsyncOperationHandle_1_System_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, AsyncOperationHandle_1_System_Int64__System_Collections_IEnumerator_Reset, (AsyncOperationHandle_1_System_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x012171B0, Object *, AsyncOperationHandle_1_System_Int64__System_Collections_IEnumerator_get_Current, (AsyncOperationHandle_1_System_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01216880, int64_t, AsyncOperationHandle_1_System_Int64__WaitForCompletion, (AsyncOperationHandle_1_System_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x012162B0, void, AsyncOperationHandle_1_System_Int64__add_Completed, (AsyncOperationHandle_1_System_Int64_ * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__11 * value, MethodInfo * method)); +DO_APP_FUNC(0x01216430, void, AsyncOperationHandle_1_System_Int64__add_CompletedTypeless, (AsyncOperationHandle_1_System_Int64_ * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * value, MethodInfo * method)); +DO_APP_FUNC(0x01216700, void, AsyncOperationHandle_1_System_Int64__add_Destroyed, (AsyncOperationHandle_1_System_Int64_ * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * value, MethodInfo * method)); +DO_APP_FUNC(0x012165B0, String *, AsyncOperationHandle_1_System_Int64__get_DebugName, (AsyncOperationHandle_1_System_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01216AB0, AsyncOperationBase_1_System_Int64_ *, AsyncOperationHandle_1_System_Int64__get_InternalOp, (AsyncOperationHandle_1_System_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB168, AsyncOperationHandle_1_System_Int64__get_InternalOp__MethodInfo); +DO_APP_FUNC(0x01216B90, bool, AsyncOperationHandle_1_System_Int64__get_IsDone, (AsyncOperationHandle_1_System_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, String *, AsyncOperationHandle_1_System_Int64__get_LocationName, (AsyncOperationHandle_1_System_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01216C80, Exception *, AsyncOperationHandle_1_System_Int64__get_OperationException, (AsyncOperationHandle_1_System_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01216D30, float, AsyncOperationHandle_1_System_Int64__get_PercentComplete, (AsyncOperationHandle_1_System_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01216DE0, int32_t, AsyncOperationHandle_1_System_Int64__get_ReferenceCount, (AsyncOperationHandle_1_System_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01216FA0, int64_t, AsyncOperationHandle_1_System_Int64__get_Result, (AsyncOperationHandle_1_System_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01217050, AsyncOperationStatus__Enum, AsyncOperationHandle_1_System_Int64__get_Status, (AsyncOperationHandle_1_System_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01217100, Task_1_System_Int64_ *, AsyncOperationHandle_1_System_Int64__get_Task, (AsyncOperationHandle_1_System_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCC40, bool, AsyncOperationHandle_1_System_Int64__get_UnloadSceneOpExcludeReleaseCallback, (AsyncOperationHandle_1_System_Int64_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01213DB0, AsyncOperationHandle, AsyncOperationHandle_1_System_Int64__op_Implicit, (AsyncOperationHandle_1_System_Int64_ obj, MethodInfo * method)); -DO_APP_FUNC(0x01216370, void, AsyncOperationHandle_1_System_Int64__remove_Completed, (AsyncOperationHandle_1_System_Int64___Boxed * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__11 * value, MethodInfo * method)); -DO_APP_FUNC(0x012164F0, void, AsyncOperationHandle_1_System_Int64__remove_CompletedTypeless, (AsyncOperationHandle_1_System_Int64___Boxed * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * value, MethodInfo * method)); -DO_APP_FUNC(0x012167C0, void, AsyncOperationHandle_1_System_Int64__remove_Destroyed, (AsyncOperationHandle_1_System_Int64___Boxed * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * value, MethodInfo * method)); -DO_APP_FUNC(0x003BCBE0, void, AsyncOperationHandle_1_System_Int64__set_LocationName, (AsyncOperationHandle_1_System_Int64___Boxed * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x003BCC50, void, AsyncOperationHandle_1_System_Int64__set_UnloadSceneOpExcludeReleaseCallback, (AsyncOperationHandle_1_System_Int64___Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x01213DF0, void, AsyncOperationHandle_1_System_Object___ctor, (AsyncOperationHandle_1_System_Object___Boxed * __this, AsyncOperationBase_1_System_Object_ * op, MethodInfo * method)); -DO_APP_FUNC(0x01217500, void, AsyncOperationHandle_1_System_Object___ctor_1, (AsyncOperationHandle_1_System_Object___Boxed * __this, IAsyncOperation * op, MethodInfo * method)); -DO_APP_FUNC(0x012143C0, void, AsyncOperationHandle_1_System_Object___ctor_2, (AsyncOperationHandle_1_System_Object___Boxed * __this, IAsyncOperation * op, int32_t version, MethodInfo * method)); -DO_APP_FUNC(0x01217700, void, AsyncOperationHandle_1_System_Object___ctor_3, (AsyncOperationHandle_1_System_Object___Boxed * __this, IAsyncOperation * op, String * locationName, MethodInfo * method)); -DO_APP_FUNC(0x012147C0, void, AsyncOperationHandle_1_System_Object___ctor_4, (AsyncOperationHandle_1_System_Object___Boxed * __this, IAsyncOperation * op, int32_t version, String * locationName, MethodInfo * method)); -DO_APP_FUNC(0x01217920, AsyncOperationHandle_1_System_Object_, AsyncOperationHandle_1_System_Object__Acquire, (AsyncOperationHandle_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01215030, bool, AsyncOperationHandle_1_System_Object__Equals, (AsyncOperationHandle_1_System_Object___Boxed * __this, AsyncOperationHandle_1_System_Object_ other, MethodInfo * method)); -DO_APP_FUNC(0x01217DD0, void, AsyncOperationHandle_1_System_Object__GetDependencies, (AsyncOperationHandle_1_System_Object___Boxed * __this, List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * deps, MethodInfo * method)); -DO_APP_FUNC(0x01217280, DownloadStatus, AsyncOperationHandle_1_System_Object__GetDownloadStatus, (AsyncOperationHandle_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01215060, int32_t, AsyncOperationHandle_1_System_Object__GetHashCode, (AsyncOperationHandle_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01217350, DownloadStatus, AsyncOperationHandle_1_System_Object__InternalGetDownloadStatus, (AsyncOperationHandle_1_System_Object___Boxed * __this, HashSet_1_System_Object_ * visited, MethodInfo * method)); -DO_APP_FUNC(0x012154A0, bool, AsyncOperationHandle_1_System_Object__IsValid, (AsyncOperationHandle_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x012185D0, void, AsyncOperationHandle_1_System_Object__Release, (AsyncOperationHandle_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01218930, bool, AsyncOperationHandle_1_System_Object__System_Collections_IEnumerator_MoveNext, (AsyncOperationHandle_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, AsyncOperationHandle_1_System_Object__System_Collections_IEnumerator_Reset, (AsyncOperationHandle_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x012188F0, Object *, AsyncOperationHandle_1_System_Object__System_Collections_IEnumerator_get_Current, (AsyncOperationHandle_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01217FC0, Object *, AsyncOperationHandle_1_System_Object__WaitForCompletion, (AsyncOperationHandle_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x012179F0, void, AsyncOperationHandle_1_System_Object__add_Completed, (AsyncOperationHandle_1_System_Object___Boxed * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__18 * value, MethodInfo * method)); -DO_APP_FUNC(0x01217B70, void, AsyncOperationHandle_1_System_Object__add_CompletedTypeless, (AsyncOperationHandle_1_System_Object___Boxed * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * value, MethodInfo * method)); -DO_APP_FUNC(0x01217E40, void, AsyncOperationHandle_1_System_Object__add_Destroyed, (AsyncOperationHandle_1_System_Object___Boxed * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * value, MethodInfo * method)); -DO_APP_FUNC(0x01217CF0, String *, AsyncOperationHandle_1_System_Object__get_DebugName, (AsyncOperationHandle_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x012181F0, AsyncOperationBase_1_System_Object_ *, AsyncOperationHandle_1_System_Object__get_InternalOp, (AsyncOperationHandle_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x012182D0, bool, AsyncOperationHandle_1_System_Object__get_IsDone, (AsyncOperationHandle_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, String *, AsyncOperationHandle_1_System_Object__get_LocationName, (AsyncOperationHandle_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x012183C0, Exception *, AsyncOperationHandle_1_System_Object__get_OperationException, (AsyncOperationHandle_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01218470, float, AsyncOperationHandle_1_System_Object__get_PercentComplete, (AsyncOperationHandle_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01218520, int32_t, AsyncOperationHandle_1_System_Object__get_ReferenceCount, (AsyncOperationHandle_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x012186E0, Object *, AsyncOperationHandle_1_System_Object__get_Result, (AsyncOperationHandle_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01218790, AsyncOperationStatus__Enum, AsyncOperationHandle_1_System_Object__get_Status, (AsyncOperationHandle_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01218840, Task_1_System_Object_ *, AsyncOperationHandle_1_System_Object__get_Task, (AsyncOperationHandle_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCC40, bool, AsyncOperationHandle_1_System_Object__get_UnloadSceneOpExcludeReleaseCallback, (AsyncOperationHandle_1_System_Object___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01216370, void, AsyncOperationHandle_1_System_Int64__remove_Completed, (AsyncOperationHandle_1_System_Int64_ * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__11 * value, MethodInfo * method)); +DO_APP_FUNC(0x012164F0, void, AsyncOperationHandle_1_System_Int64__remove_CompletedTypeless, (AsyncOperationHandle_1_System_Int64_ * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * value, MethodInfo * method)); +DO_APP_FUNC(0x012167C0, void, AsyncOperationHandle_1_System_Int64__remove_Destroyed, (AsyncOperationHandle_1_System_Int64_ * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * value, MethodInfo * method)); +DO_APP_FUNC(0x003BCBE0, void, AsyncOperationHandle_1_System_Int64__set_LocationName, (AsyncOperationHandle_1_System_Int64_ * __this, String * value, MethodInfo * method)); +DO_APP_FUNC(0x003BCC50, void, AsyncOperationHandle_1_System_Int64__set_UnloadSceneOpExcludeReleaseCallback, (AsyncOperationHandle_1_System_Int64_ * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x01213DF0, void, AsyncOperationHandle_1_System_Object___ctor, (AsyncOperationHandle_1_System_Object_ * __this, AsyncOperationBase_1_System_Object_ * op, MethodInfo * method)); +DO_APP_FUNC(0x01217500, void, AsyncOperationHandle_1_System_Object___ctor_1, (AsyncOperationHandle_1_System_Object_ * __this, IAsyncOperation * op, MethodInfo * method)); +DO_APP_FUNC(0x012143C0, void, AsyncOperationHandle_1_System_Object___ctor_2, (AsyncOperationHandle_1_System_Object_ * __this, IAsyncOperation * op, int32_t version, MethodInfo * method)); +DO_APP_FUNC(0x01217700, void, AsyncOperationHandle_1_System_Object___ctor_3, (AsyncOperationHandle_1_System_Object_ * __this, IAsyncOperation * op, String * locationName, MethodInfo * method)); +DO_APP_FUNC(0x012147C0, void, AsyncOperationHandle_1_System_Object___ctor_4, (AsyncOperationHandle_1_System_Object_ * __this, IAsyncOperation * op, int32_t version, String * locationName, MethodInfo * method)); +DO_APP_FUNC(0x01217920, AsyncOperationHandle_1_System_Object_, AsyncOperationHandle_1_System_Object__Acquire, (AsyncOperationHandle_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01215030, bool, AsyncOperationHandle_1_System_Object__Equals, (AsyncOperationHandle_1_System_Object_ * __this, AsyncOperationHandle_1_System_Object_ other, MethodInfo * method)); +DO_APP_FUNC(0x01217DD0, void, AsyncOperationHandle_1_System_Object__GetDependencies, (AsyncOperationHandle_1_System_Object_ * __this, List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * deps, MethodInfo * method)); +DO_APP_FUNC(0x01217280, DownloadStatus, AsyncOperationHandle_1_System_Object__GetDownloadStatus, (AsyncOperationHandle_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01215060, int32_t, AsyncOperationHandle_1_System_Object__GetHashCode, (AsyncOperationHandle_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01217350, DownloadStatus, AsyncOperationHandle_1_System_Object__InternalGetDownloadStatus, (AsyncOperationHandle_1_System_Object_ * __this, HashSet_1_System_Object_ * visited, MethodInfo * method)); +DO_APP_FUNC(0x012154A0, bool, AsyncOperationHandle_1_System_Object__IsValid, (AsyncOperationHandle_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x012185D0, void, AsyncOperationHandle_1_System_Object__Release, (AsyncOperationHandle_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01218930, bool, AsyncOperationHandle_1_System_Object__System_Collections_IEnumerator_MoveNext, (AsyncOperationHandle_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, AsyncOperationHandle_1_System_Object__System_Collections_IEnumerator_Reset, (AsyncOperationHandle_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x012188F0, Object *, AsyncOperationHandle_1_System_Object__System_Collections_IEnumerator_get_Current, (AsyncOperationHandle_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01217FC0, Object *, AsyncOperationHandle_1_System_Object__WaitForCompletion, (AsyncOperationHandle_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x012179F0, void, AsyncOperationHandle_1_System_Object__add_Completed, (AsyncOperationHandle_1_System_Object_ * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__18 * value, MethodInfo * method)); +DO_APP_FUNC(0x01217B70, void, AsyncOperationHandle_1_System_Object__add_CompletedTypeless, (AsyncOperationHandle_1_System_Object_ * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * value, MethodInfo * method)); +DO_APP_FUNC(0x01217E40, void, AsyncOperationHandle_1_System_Object__add_Destroyed, (AsyncOperationHandle_1_System_Object_ * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * value, MethodInfo * method)); +DO_APP_FUNC(0x01217CF0, String *, AsyncOperationHandle_1_System_Object__get_DebugName, (AsyncOperationHandle_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x012181F0, AsyncOperationBase_1_System_Object_ *, AsyncOperationHandle_1_System_Object__get_InternalOp, (AsyncOperationHandle_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB128, AsyncOperationHandle_1_System_Object__get_InternalOp__MethodInfo); +DO_APP_FUNC(0x012182D0, bool, AsyncOperationHandle_1_System_Object__get_IsDone, (AsyncOperationHandle_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, String *, AsyncOperationHandle_1_System_Object__get_LocationName, (AsyncOperationHandle_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x012183C0, Exception *, AsyncOperationHandle_1_System_Object__get_OperationException, (AsyncOperationHandle_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01218470, float, AsyncOperationHandle_1_System_Object__get_PercentComplete, (AsyncOperationHandle_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01218520, int32_t, AsyncOperationHandle_1_System_Object__get_ReferenceCount, (AsyncOperationHandle_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x012186E0, Object *, AsyncOperationHandle_1_System_Object__get_Result, (AsyncOperationHandle_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01218790, AsyncOperationStatus__Enum, AsyncOperationHandle_1_System_Object__get_Status, (AsyncOperationHandle_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01218840, Task_1_System_Object_ *, AsyncOperationHandle_1_System_Object__get_Task, (AsyncOperationHandle_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCC40, bool, AsyncOperationHandle_1_System_Object__get_UnloadSceneOpExcludeReleaseCallback, (AsyncOperationHandle_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01213DB0, AsyncOperationHandle, AsyncOperationHandle_1_System_Object__op_Implicit, (AsyncOperationHandle_1_System_Object_ obj, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9E8D8, AsyncOperationHandle_1_System_Object__op_Implicit__MethodInfo); -DO_APP_FUNC(0x01217AB0, void, AsyncOperationHandle_1_System_Object__remove_Completed, (AsyncOperationHandle_1_System_Object___Boxed * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__18 * value, MethodInfo * method)); -DO_APP_FUNC(0x01217C30, void, AsyncOperationHandle_1_System_Object__remove_CompletedTypeless, (AsyncOperationHandle_1_System_Object___Boxed * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * value, MethodInfo * method)); -DO_APP_FUNC(0x01217F00, void, AsyncOperationHandle_1_System_Object__remove_Destroyed, (AsyncOperationHandle_1_System_Object___Boxed * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * value, MethodInfo * method)); -DO_APP_FUNC(0x003BCBE0, void, AsyncOperationHandle_1_System_Object__set_LocationName, (AsyncOperationHandle_1_System_Object___Boxed * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x003BCC50, void, AsyncOperationHandle_1_System_Object__set_UnloadSceneOpExcludeReleaseCallback, (AsyncOperationHandle_1_System_Object___Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x01213DF0, void, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___ctor, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___Boxed * __this, AsyncOperationBase_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * op, MethodInfo * method)); -DO_APP_FUNC(0x01218BF0, void, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___ctor_1, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___Boxed * __this, IAsyncOperation * op, MethodInfo * method)); -DO_APP_FUNC(0x012143C0, void, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___ctor_2, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___Boxed * __this, IAsyncOperation * op, int32_t version, MethodInfo * method)); -DO_APP_FUNC(0x01218DF0, void, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___ctor_3, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___Boxed * __this, IAsyncOperation * op, String * locationName, MethodInfo * method)); -DO_APP_FUNC(0x012147C0, void, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___ctor_4, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___Boxed * __this, IAsyncOperation * op, int32_t version, String * locationName, MethodInfo * method)); -DO_APP_FUNC(0x01219010, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__Acquire, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01215030, bool, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__Equals, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___Boxed * __this, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ other, MethodInfo * method)); -DO_APP_FUNC(0x012194C0, void, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__GetDependencies, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___Boxed * __this, List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * deps, MethodInfo * method)); -DO_APP_FUNC(0x01218970, DownloadStatus, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__GetDownloadStatus, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01215060, int32_t, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__GetHashCode, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01218A40, DownloadStatus, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__InternalGetDownloadStatus, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___Boxed * __this, HashSet_1_System_Object_ * visited, MethodInfo * method)); -DO_APP_FUNC(0x012154A0, bool, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__IsValid, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01217AB0, void, AsyncOperationHandle_1_System_Object__remove_Completed, (AsyncOperationHandle_1_System_Object_ * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__18 * value, MethodInfo * method)); +DO_APP_FUNC(0x01217C30, void, AsyncOperationHandle_1_System_Object__remove_CompletedTypeless, (AsyncOperationHandle_1_System_Object_ * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * value, MethodInfo * method)); +DO_APP_FUNC(0x01217F00, void, AsyncOperationHandle_1_System_Object__remove_Destroyed, (AsyncOperationHandle_1_System_Object_ * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * value, MethodInfo * method)); +DO_APP_FUNC(0x003BCBE0, void, AsyncOperationHandle_1_System_Object__set_LocationName, (AsyncOperationHandle_1_System_Object_ * __this, String * value, MethodInfo * method)); +DO_APP_FUNC(0x003BCC50, void, AsyncOperationHandle_1_System_Object__set_UnloadSceneOpExcludeReleaseCallback, (AsyncOperationHandle_1_System_Object_ * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x01213DF0, void, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___ctor, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, AsyncOperationBase_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * op, MethodInfo * method)); +DO_APP_FUNC(0x01218BF0, void, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___ctor_1, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, IAsyncOperation * op, MethodInfo * method)); +DO_APP_FUNC(0x012143C0, void, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___ctor_2, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, IAsyncOperation * op, int32_t version, MethodInfo * method)); +DO_APP_FUNC(0x01218DF0, void, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___ctor_3, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, IAsyncOperation * op, String * locationName, MethodInfo * method)); +DO_APP_FUNC(0x012147C0, void, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___ctor_4, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, IAsyncOperation * op, int32_t version, String * locationName, MethodInfo * method)); +DO_APP_FUNC(0x01219010, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__Acquire, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01215030, bool, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__Equals, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ other, MethodInfo * method)); +DO_APP_FUNC(0x012194C0, void, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__GetDependencies, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * deps, MethodInfo * method)); +DO_APP_FUNC(0x01218970, DownloadStatus, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__GetDownloadStatus, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01215060, int32_t, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__GetHashCode, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01218A40, DownloadStatus, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__InternalGetDownloadStatus, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, HashSet_1_System_Object_ * visited, MethodInfo * method)); +DO_APP_FUNC(0x012154A0, bool, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__IsValid, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9E0D0, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__IsValid__MethodInfo); -DO_APP_FUNC(0x01219CE0, void, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__Release, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01219CE0, void, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__Release, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9E0C0, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__Release__MethodInfo); -DO_APP_FUNC(0x0121A0C0, bool, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__System_Collections_IEnumerator_MoveNext, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__System_Collections_IEnumerator_Reset, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0121A020, Object *, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__System_Collections_IEnumerator_get_Current, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x012196B0, SceneInstance, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__WaitForCompletion, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x012190E0, void, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__add_Completed, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___Boxed * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__4 * value, MethodInfo * method)); -DO_APP_FUNC(0x01219260, void, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__add_CompletedTypeless, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___Boxed * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * value, MethodInfo * method)); -DO_APP_FUNC(0x01219530, void, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__add_Destroyed, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___Boxed * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * value, MethodInfo * method)); -DO_APP_FUNC(0x012193E0, String *, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__get_DebugName, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01219900, AsyncOperationBase_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ *, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__get_InternalOp, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x012199E0, bool, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__get_IsDone, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, String *, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__get_LocationName, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01219AD0, Exception *, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__get_OperationException, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01219B80, float, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__get_PercentComplete, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0121A0C0, bool, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__System_Collections_IEnumerator_MoveNext, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__System_Collections_IEnumerator_Reset, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0121A020, Object *, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__System_Collections_IEnumerator_get_Current, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x012196B0, SceneInstance, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__WaitForCompletion, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x012190E0, void, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__add_Completed, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__4 * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE5B8, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__add_Completed__MethodInfo); +DO_APP_FUNC(0x01219260, void, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__add_CompletedTypeless, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * value, MethodInfo * method)); +DO_APP_FUNC(0x01219530, void, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__add_Destroyed, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * value, MethodInfo * method)); +DO_APP_FUNC(0x012193E0, String *, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__get_DebugName, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01219900, AsyncOperationBase_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ *, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__get_InternalOp, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB0C8, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__get_InternalOp__MethodInfo); +DO_APP_FUNC(0x012199E0, bool, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__get_IsDone, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, String *, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__get_LocationName, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01219AD0, Exception *, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__get_OperationException, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01219B80, float, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__get_PercentComplete, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9E0C8, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__get_PercentComplete__MethodInfo); -DO_APP_FUNC(0x01219C30, int32_t, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__get_ReferenceCount, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01219C30, int32_t, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__get_ReferenceCount, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9E0B0, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__get_ReferenceCount__MethodInfo); -DO_APP_FUNC(0x01219DF0, SceneInstance, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__get_Result, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01219EC0, AsyncOperationStatus__Enum, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__get_Status, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01219F70, Task_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ *, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__get_Task, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCC40, bool, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__get_UnloadSceneOpExcludeReleaseCallback, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01219DF0, SceneInstance, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__get_Result, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE780, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__get_Result__MethodInfo); +DO_APP_FUNC(0x01219EC0, AsyncOperationStatus__Enum, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__get_Status, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01219F70, Task_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ *, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__get_Task, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCC40, bool, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__get_UnloadSceneOpExcludeReleaseCallback, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01213DB0, AsyncOperationHandle, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__op_Implicit, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ obj, MethodInfo * method)); -DO_APP_FUNC(0x012191A0, void, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__remove_Completed, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___Boxed * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__4 * value, MethodInfo * method)); -DO_APP_FUNC(0x01219320, void, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__remove_CompletedTypeless, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___Boxed * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * value, MethodInfo * method)); -DO_APP_FUNC(0x012195F0, void, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__remove_Destroyed, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___Boxed * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * value, MethodInfo * method)); -DO_APP_FUNC(0x003BCBE0, void, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__set_LocationName, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___Boxed * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x003BCC50, void, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__set_UnloadSceneOpExcludeReleaseCallback, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x00C67F90, void, AsyncTaskMethodBuilder_1_System_Nullable_1__AwaitUnsafeOnCompleted, (AsyncTaskMethodBuilder_1_System_Nullable_1___Boxed * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32_ awaiter, AsyncProtocolRequest_InnerRead_d_25 stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE8C8, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__op_Implicit__MethodInfo); +DO_APP_FUNC(0x012191A0, void, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__remove_Completed, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__4 * value, MethodInfo * method)); +DO_APP_FUNC(0x01219320, void, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__remove_CompletedTypeless, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * value, MethodInfo * method)); +DO_APP_FUNC(0x012195F0, void, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__remove_Destroyed, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * value, MethodInfo * method)); +DO_APP_FUNC(0x003BCBE0, void, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__set_LocationName, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, String * value, MethodInfo * method)); +DO_APP_FUNC(0x003BCC50, void, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__set_UnloadSceneOpExcludeReleaseCallback, (AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x00C67F90, void, AsyncTaskMethodBuilder_1_System_Nullable_1__AwaitUnsafeOnCompleted, (AsyncTaskMethodBuilder_1_System_Nullable_1_ * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32_ * awaiter, AsyncProtocolRequest_InnerRead_d_25 * stateMachine, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA1E78, AsyncTaskMethodBuilder_1_System_Nullable_1__AwaitUnsafeOnCompleted__MethodInfo); -DO_APP_FUNC(0x00C681A0, void, AsyncTaskMethodBuilder_1_System_Nullable_1__Start, (AsyncTaskMethodBuilder_1_System_Nullable_1___Boxed * __this, AsyncProtocolRequest_InnerRead_d_25 stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C681A0, void, AsyncTaskMethodBuilder_1_System_Nullable_1__Start, (AsyncTaskMethodBuilder_1_System_Nullable_1_ * __this, AsyncProtocolRequest_InnerRead_d_25 * stateMachine, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C98620, AsyncTaskMethodBuilder_1_System_Nullable_1__Start__MethodInfo); DO_APP_FUNC(0x0121AA80, void, AsyncTaskMethodBuilder_1_System_Nullable_1___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0121A100, AsyncTaskMethodBuilder_1_System_Nullable_1_, AsyncTaskMethodBuilder_1_System_Nullable_1__Create, (MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA1EF8, AsyncTaskMethodBuilder_1_System_Nullable_1__Create__MethodInfo); DO_APP_FUNC(0x0121A760, Task_1_System_Nullable_1_ *, AsyncTaskMethodBuilder_1_System_Nullable_1__GetTaskForResult, (Nullable_1_Int32_ result, MethodInfo * method)); -DO_APP_FUNC(0x0121A580, void, AsyncTaskMethodBuilder_1_System_Nullable_1__SetException, (AsyncTaskMethodBuilder_1_System_Nullable_1___Boxed * __this, Exception * exception, MethodInfo * method)); -DO_APP_FUNC(0x0121A240, void, AsyncTaskMethodBuilder_1_System_Nullable_1__SetResult, (AsyncTaskMethodBuilder_1_System_Nullable_1___Boxed * __this, Nullable_1_Int32_ result, MethodInfo * method)); -DO_APP_FUNC(0x0121A490, void, AsyncTaskMethodBuilder_1_System_Nullable_1__SetResult_1, (AsyncTaskMethodBuilder_1_System_Nullable_1___Boxed * __this, Task_1_System_Nullable_1_ * completedTask, MethodInfo * method)); -DO_APP_FUNC(0x0121A110, void, AsyncTaskMethodBuilder_1_System_Nullable_1__SetStateMachine, (AsyncTaskMethodBuilder_1_System_Nullable_1___Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x0121A580, void, AsyncTaskMethodBuilder_1_System_Nullable_1__SetException, (AsyncTaskMethodBuilder_1_System_Nullable_1_ * __this, Exception * exception, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB0A0, AsyncTaskMethodBuilder_1_System_Nullable_1__SetException__MethodInfo); +DO_APP_FUNC(0x0121A240, void, AsyncTaskMethodBuilder_1_System_Nullable_1__SetResult, (AsyncTaskMethodBuilder_1_System_Nullable_1_ * __this, Nullable_1_Int32_ result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB088, AsyncTaskMethodBuilder_1_System_Nullable_1__SetResult__MethodInfo); +DO_APP_FUNC(0x0121A490, void, AsyncTaskMethodBuilder_1_System_Nullable_1__SetResult_1, (AsyncTaskMethodBuilder_1_System_Nullable_1_ * __this, Task_1_System_Nullable_1_ * completedTask, MethodInfo * method)); +DO_APP_FUNC(0x0121A110, void, AsyncTaskMethodBuilder_1_System_Nullable_1__SetStateMachine, (AsyncTaskMethodBuilder_1_System_Nullable_1_ * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA1E70, AsyncTaskMethodBuilder_1_System_Nullable_1__SetStateMachine__MethodInfo); -DO_APP_FUNC(0x0121A120, Task_1_System_Nullable_1_ *, AsyncTaskMethodBuilder_1_System_Nullable_1__get_Task, (AsyncTaskMethodBuilder_1_System_Nullable_1___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0121A120, Task_1_System_Nullable_1_ *, AsyncTaskMethodBuilder_1_System_Nullable_1__get_Task, (AsyncTaskMethodBuilder_1_System_Nullable_1_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA1EE8, AsyncTaskMethodBuilder_1_System_Nullable_1__get_Task__MethodInfo); -DO_APP_FUNC(0x00C682B0, void, AsyncTaskMethodBuilder_1_System_ValueTuple_2__AwaitUnsafeOnCompleted, (AsyncTaskMethodBuilder_1_System_ValueTuple_2___Boxed * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ awaiter, WebCompletionSource_1_T_WaitForCompletion_d_15_System_ValueTuple_2_ stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C684B0, void, AsyncTaskMethodBuilder_1_System_ValueTuple_2__Start, (AsyncTaskMethodBuilder_1_System_ValueTuple_2___Boxed * __this, WebCompletionSource_1_T_WaitForCompletion_d_15_System_ValueTuple_2_ stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C682B0, void, AsyncTaskMethodBuilder_1_System_ValueTuple_2__AwaitUnsafeOnCompleted, (AsyncTaskMethodBuilder_1_System_ValueTuple_2_ * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ * awaiter, WebCompletionSource_1_T_WaitForCompletion_d_15_System_ValueTuple_2_ * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C684B0, void, AsyncTaskMethodBuilder_1_System_ValueTuple_2__Start, (AsyncTaskMethodBuilder_1_System_ValueTuple_2_ * __this, WebCompletionSource_1_T_WaitForCompletion_d_15_System_ValueTuple_2_ * stateMachine, MethodInfo * method)); DO_APP_FUNC(0x0121BF60, void, AsyncTaskMethodBuilder_1_System_ValueTuple_2___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0121A100, AsyncTaskMethodBuilder_1_System_ValueTuple_2_, AsyncTaskMethodBuilder_1_System_ValueTuple_2__Create, (MethodInfo * method)); DO_APP_FUNC(0x0121B110, Task_1_System_ValueTuple_2_ *, AsyncTaskMethodBuilder_1_System_ValueTuple_2__GetTaskForResult, (ValueTuple_2_Boolean_Object_ result, MethodInfo * method)); -DO_APP_FUNC(0x0121AF30, void, AsyncTaskMethodBuilder_1_System_ValueTuple_2__SetException, (AsyncTaskMethodBuilder_1_System_ValueTuple_2___Boxed * __this, Exception * exception, MethodInfo * method)); -DO_APP_FUNC(0x0121ABD0, void, AsyncTaskMethodBuilder_1_System_ValueTuple_2__SetResult, (AsyncTaskMethodBuilder_1_System_ValueTuple_2___Boxed * __this, ValueTuple_2_Boolean_Object_ result, MethodInfo * method)); -DO_APP_FUNC(0x0121AE30, void, AsyncTaskMethodBuilder_1_System_ValueTuple_2__SetResult_1, (AsyncTaskMethodBuilder_1_System_ValueTuple_2___Boxed * __this, Task_1_System_ValueTuple_2_ * completedTask, MethodInfo * method)); -DO_APP_FUNC(0x0121A110, void, AsyncTaskMethodBuilder_1_System_ValueTuple_2__SetStateMachine, (AsyncTaskMethodBuilder_1_System_ValueTuple_2___Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x0121A120, Task_1_System_ValueTuple_2_ *, AsyncTaskMethodBuilder_1_System_ValueTuple_2__get_Task, (AsyncTaskMethodBuilder_1_System_ValueTuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C685C0, void, AsyncTaskMethodBuilder_1_System_ValueTuple_3__1_AwaitUnsafeOnCompleted, (AsyncTaskMethodBuilder_1_System_ValueTuple_3__1__Boxed * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32_ awaiter, WebConnectionTunnel_ReadHeaders_d_43 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C687E0, void, AsyncTaskMethodBuilder_1_System_ValueTuple_3__1_Start, (AsyncTaskMethodBuilder_1_System_ValueTuple_3__1__Boxed * __this, WebConnectionTunnel_ReadHeaders_d_43 stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x0121AF30, void, AsyncTaskMethodBuilder_1_System_ValueTuple_2__SetException, (AsyncTaskMethodBuilder_1_System_ValueTuple_2_ * __this, Exception * exception, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB038, AsyncTaskMethodBuilder_1_System_ValueTuple_2__SetException__MethodInfo); +DO_APP_FUNC(0x0121ABD0, void, AsyncTaskMethodBuilder_1_System_ValueTuple_2__SetResult, (AsyncTaskMethodBuilder_1_System_ValueTuple_2_ * __this, ValueTuple_2_Boolean_Object_ result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB030, AsyncTaskMethodBuilder_1_System_ValueTuple_2__SetResult__MethodInfo); +DO_APP_FUNC(0x0121AE30, void, AsyncTaskMethodBuilder_1_System_ValueTuple_2__SetResult_1, (AsyncTaskMethodBuilder_1_System_ValueTuple_2_ * __this, Task_1_System_ValueTuple_2_ * completedTask, MethodInfo * method)); +DO_APP_FUNC(0x0121A110, void, AsyncTaskMethodBuilder_1_System_ValueTuple_2__SetStateMachine, (AsyncTaskMethodBuilder_1_System_ValueTuple_2_ * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x0121A120, Task_1_System_ValueTuple_2_ *, AsyncTaskMethodBuilder_1_System_ValueTuple_2__get_Task, (AsyncTaskMethodBuilder_1_System_ValueTuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C685C0, void, AsyncTaskMethodBuilder_1_System_ValueTuple_3__1_AwaitUnsafeOnCompleted, (AsyncTaskMethodBuilder_1_System_ValueTuple_3__1 * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32_ * awaiter, WebConnectionTunnel_ReadHeaders_d_43 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C687E0, void, AsyncTaskMethodBuilder_1_System_ValueTuple_3__1_Start, (AsyncTaskMethodBuilder_1_System_ValueTuple_3__1 * __this, WebConnectionTunnel_ReadHeaders_d_43 * stateMachine, MethodInfo * method)); DO_APP_FUNC(0x0121D520, void, AsyncTaskMethodBuilder_1_System_ValueTuple_3__1__cctor, (MethodInfo * method)); DO_APP_FUNC(0x0121A100, AsyncTaskMethodBuilder_1_System_ValueTuple_3__1, AsyncTaskMethodBuilder_1_System_ValueTuple_3__1_Create, (MethodInfo * method)); DO_APP_FUNC(0x0121C650, Task_1_System_ValueTuple_3__1 *, AsyncTaskMethodBuilder_1_System_ValueTuple_3__1_GetTaskForResult, (ValueTuple_3_Object_Object_Int32_ result, MethodInfo * method)); -DO_APP_FUNC(0x0121C470, void, AsyncTaskMethodBuilder_1_System_ValueTuple_3__1_SetException, (AsyncTaskMethodBuilder_1_System_ValueTuple_3__1__Boxed * __this, Exception * exception, MethodInfo * method)); -DO_APP_FUNC(0x0121C0E0, void, AsyncTaskMethodBuilder_1_System_ValueTuple_3__1_SetResult, (AsyncTaskMethodBuilder_1_System_ValueTuple_3__1__Boxed * __this, ValueTuple_3_Object_Object_Int32_ result, MethodInfo * method)); -DO_APP_FUNC(0x0121C360, void, AsyncTaskMethodBuilder_1_System_ValueTuple_3__1_SetResult_1, (AsyncTaskMethodBuilder_1_System_ValueTuple_3__1__Boxed * __this, Task_1_System_ValueTuple_3__1 * completedTask, MethodInfo * method)); -DO_APP_FUNC(0x0121A110, void, AsyncTaskMethodBuilder_1_System_ValueTuple_3__1_SetStateMachine, (AsyncTaskMethodBuilder_1_System_ValueTuple_3__1__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x0121A120, Task_1_System_ValueTuple_3__1 *, AsyncTaskMethodBuilder_1_System_ValueTuple_3__1_get_Task, (AsyncTaskMethodBuilder_1_System_ValueTuple_3__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C688F0, void, AsyncTaskMethodBuilder_1_System_ValueTuple_5__1_AwaitUnsafeOnCompleted, (AsyncTaskMethodBuilder_1_System_ValueTuple_5__1__Boxed * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ awaiter, HttpWebRequest_GetResponseFromData_d_244 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C688F0, void, AsyncTaskMethodBuilder_1_System_ValueTuple_5__1_AwaitUnsafeOnCompleted_1, (AsyncTaskMethodBuilder_1_System_ValueTuple_5__1__Boxed * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter awaiter, HttpWebRequest_GetResponseFromData_d_244 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C68B10, void, AsyncTaskMethodBuilder_1_System_ValueTuple_5__1_Start, (AsyncTaskMethodBuilder_1_System_ValueTuple_5__1__Boxed * __this, HttpWebRequest_GetResponseFromData_d_244 stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x0121C470, void, AsyncTaskMethodBuilder_1_System_ValueTuple_3__1_SetException, (AsyncTaskMethodBuilder_1_System_ValueTuple_3__1 * __this, Exception * exception, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB018, AsyncTaskMethodBuilder_1_System_ValueTuple_3__1_SetException__MethodInfo); +DO_APP_FUNC(0x0121C0E0, void, AsyncTaskMethodBuilder_1_System_ValueTuple_3__1_SetResult, (AsyncTaskMethodBuilder_1_System_ValueTuple_3__1 * __this, ValueTuple_3_Object_Object_Int32_ result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB010, AsyncTaskMethodBuilder_1_System_ValueTuple_3__1_SetResult__MethodInfo); +DO_APP_FUNC(0x0121C360, void, AsyncTaskMethodBuilder_1_System_ValueTuple_3__1_SetResult_1, (AsyncTaskMethodBuilder_1_System_ValueTuple_3__1 * __this, Task_1_System_ValueTuple_3__1 * completedTask, MethodInfo * method)); +DO_APP_FUNC(0x0121A110, void, AsyncTaskMethodBuilder_1_System_ValueTuple_3__1_SetStateMachine, (AsyncTaskMethodBuilder_1_System_ValueTuple_3__1 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x0121A120, Task_1_System_ValueTuple_3__1 *, AsyncTaskMethodBuilder_1_System_ValueTuple_3__1_get_Task, (AsyncTaskMethodBuilder_1_System_ValueTuple_3__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C688F0, void, AsyncTaskMethodBuilder_1_System_ValueTuple_5__1_AwaitUnsafeOnCompleted, (AsyncTaskMethodBuilder_1_System_ValueTuple_5__1 * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ * awaiter, HttpWebRequest_GetResponseFromData_d_244 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C688F0, void, AsyncTaskMethodBuilder_1_System_ValueTuple_5__1_AwaitUnsafeOnCompleted_1, (AsyncTaskMethodBuilder_1_System_ValueTuple_5__1 * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * awaiter, HttpWebRequest_GetResponseFromData_d_244 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C68B10, void, AsyncTaskMethodBuilder_1_System_ValueTuple_5__1_Start, (AsyncTaskMethodBuilder_1_System_ValueTuple_5__1 * __this, HttpWebRequest_GetResponseFromData_d_244 * stateMachine, MethodInfo * method)); DO_APP_FUNC(0x0121EAC0, void, AsyncTaskMethodBuilder_1_System_ValueTuple_5__1__cctor, (MethodInfo * method)); DO_APP_FUNC(0x0121A100, AsyncTaskMethodBuilder_1_System_ValueTuple_5__1, AsyncTaskMethodBuilder_1_System_ValueTuple_5__1_Create, (MethodInfo * method)); DO_APP_FUNC(0x0121DC00, Task_1_System_ValueTuple_5__1 *, AsyncTaskMethodBuilder_1_System_ValueTuple_5__1_GetTaskForResult, (ValueTuple_5_Object_Boolean_Boolean_Object_Object_ result, MethodInfo * method)); -DO_APP_FUNC(0x0121DA20, void, AsyncTaskMethodBuilder_1_System_ValueTuple_5__1_SetException, (AsyncTaskMethodBuilder_1_System_ValueTuple_5__1__Boxed * __this, Exception * exception, MethodInfo * method)); -DO_APP_FUNC(0x0121D6A0, void, AsyncTaskMethodBuilder_1_System_ValueTuple_5__1_SetResult, (AsyncTaskMethodBuilder_1_System_ValueTuple_5__1__Boxed * __this, ValueTuple_5_Object_Boolean_Boolean_Object_Object_ result, MethodInfo * method)); -DO_APP_FUNC(0x0121D920, void, AsyncTaskMethodBuilder_1_System_ValueTuple_5__1_SetResult_1, (AsyncTaskMethodBuilder_1_System_ValueTuple_5__1__Boxed * __this, Task_1_System_ValueTuple_5__1 * completedTask, MethodInfo * method)); -DO_APP_FUNC(0x0121A110, void, AsyncTaskMethodBuilder_1_System_ValueTuple_5__1_SetStateMachine, (AsyncTaskMethodBuilder_1_System_ValueTuple_5__1__Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x0121A120, Task_1_System_ValueTuple_5__1 *, AsyncTaskMethodBuilder_1_System_ValueTuple_5__1_get_Task, (AsyncTaskMethodBuilder_1_System_ValueTuple_5__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C68C20, void, AsyncTaskMethodBuilder_1_System_Boolean__AwaitUnsafeOnCompleted, (AsyncTaskMethodBuilder_1_System_Boolean___Boxed * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Boolean_ awaiter, SemaphoreSlim_WaitUntilCountOrTimeoutAsync_d_32 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C68C20, void, AsyncTaskMethodBuilder_1_System_Boolean__AwaitUnsafeOnCompleted_1, (AsyncTaskMethodBuilder_1_System_Boolean___Boxed * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ awaiter, SemaphoreSlim_WaitUntilCountOrTimeoutAsync_d_32 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C67F90, void, AsyncTaskMethodBuilder_1_System_Boolean__AwaitUnsafeOnCompleted_2, (AsyncTaskMethodBuilder_1_System_Boolean___Boxed * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ awaiter, ServicePointScheduler_WaitAsync_d_46 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C68E40, void, AsyncTaskMethodBuilder_1_System_Boolean__AwaitUnsafeOnCompleted_3, (AsyncTaskMethodBuilder_1_System_Boolean___Boxed * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ awaiter, WebConnection_CreateStream_d_18 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C68E40, void, AsyncTaskMethodBuilder_1_System_Boolean__AwaitUnsafeOnCompleted_4, (AsyncTaskMethodBuilder_1_System_Boolean___Boxed * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter awaiter, WebConnection_CreateStream_d_18 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C69060, void, AsyncTaskMethodBuilder_1_System_Boolean__Start, (AsyncTaskMethodBuilder_1_System_Boolean___Boxed * __this, SemaphoreSlim_WaitUntilCountOrTimeoutAsync_d_32 stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x0121DA20, void, AsyncTaskMethodBuilder_1_System_ValueTuple_5__1_SetException, (AsyncTaskMethodBuilder_1_System_ValueTuple_5__1 * __this, Exception * exception, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCAFF8, AsyncTaskMethodBuilder_1_System_ValueTuple_5__1_SetException__MethodInfo); +DO_APP_FUNC(0x0121D6A0, void, AsyncTaskMethodBuilder_1_System_ValueTuple_5__1_SetResult, (AsyncTaskMethodBuilder_1_System_ValueTuple_5__1 * __this, ValueTuple_5_Object_Boolean_Boolean_Object_Object_ result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCAFF0, AsyncTaskMethodBuilder_1_System_ValueTuple_5__1_SetResult__MethodInfo); +DO_APP_FUNC(0x0121D920, void, AsyncTaskMethodBuilder_1_System_ValueTuple_5__1_SetResult_1, (AsyncTaskMethodBuilder_1_System_ValueTuple_5__1 * __this, Task_1_System_ValueTuple_5__1 * completedTask, MethodInfo * method)); +DO_APP_FUNC(0x0121A110, void, AsyncTaskMethodBuilder_1_System_ValueTuple_5__1_SetStateMachine, (AsyncTaskMethodBuilder_1_System_ValueTuple_5__1 * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x0121A120, Task_1_System_ValueTuple_5__1 *, AsyncTaskMethodBuilder_1_System_ValueTuple_5__1_get_Task, (AsyncTaskMethodBuilder_1_System_ValueTuple_5__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C68C20, void, AsyncTaskMethodBuilder_1_System_Boolean__AwaitUnsafeOnCompleted, (AsyncTaskMethodBuilder_1_System_Boolean_ * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Boolean_ * awaiter, SemaphoreSlim_WaitUntilCountOrTimeoutAsync_d_32 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CC38, AsyncTaskMethodBuilder_1_System_Boolean__AwaitUnsafeOnCompleted__MethodInfo); +DO_APP_FUNC(0x00C68C20, void, AsyncTaskMethodBuilder_1_System_Boolean__AwaitUnsafeOnCompleted_1, (AsyncTaskMethodBuilder_1_System_Boolean_ * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ * awaiter, SemaphoreSlim_WaitUntilCountOrTimeoutAsync_d_32 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C67F90, void, AsyncTaskMethodBuilder_1_System_Boolean__AwaitUnsafeOnCompleted_2, (AsyncTaskMethodBuilder_1_System_Boolean_ * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ * awaiter, ServicePointScheduler_WaitAsync_d_46 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C68E40, void, AsyncTaskMethodBuilder_1_System_Boolean__AwaitUnsafeOnCompleted_3, (AsyncTaskMethodBuilder_1_System_Boolean_ * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ * awaiter, WebConnection_CreateStream_d_18 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C68E40, void, AsyncTaskMethodBuilder_1_System_Boolean__AwaitUnsafeOnCompleted_4, (AsyncTaskMethodBuilder_1_System_Boolean_ * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * awaiter, WebConnection_CreateStream_d_18 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1ADB8, AsyncTaskMethodBuilder_1_System_Boolean__AwaitUnsafeOnCompleted_4__MethodInfo); +DO_APP_FUNC(0x00C69060, void, AsyncTaskMethodBuilder_1_System_Boolean__Start, (AsyncTaskMethodBuilder_1_System_Boolean_ * __this, SemaphoreSlim_WaitUntilCountOrTimeoutAsync_d_32 * stateMachine, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C98610, AsyncTaskMethodBuilder_1_System_Boolean__Start__MethodInfo); -DO_APP_FUNC(0x00C69170, void, AsyncTaskMethodBuilder_1_System_Boolean__Start_1, (AsyncTaskMethodBuilder_1_System_Boolean___Boxed * __this, ServicePointScheduler_WaitAsync_d_46 stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C69170, void, AsyncTaskMethodBuilder_1_System_Boolean__Start_1, (AsyncTaskMethodBuilder_1_System_Boolean_ * __this, ServicePointScheduler_WaitAsync_d_46 * stateMachine, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C98608, AsyncTaskMethodBuilder_1_System_Boolean__Start_1__MethodInfo); -DO_APP_FUNC(0x00C69280, void, AsyncTaskMethodBuilder_1_System_Boolean__Start_2, (AsyncTaskMethodBuilder_1_System_Boolean___Boxed * __this, WebConnection_CreateStream_d_18 stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C69280, void, AsyncTaskMethodBuilder_1_System_Boolean__Start_2, (AsyncTaskMethodBuilder_1_System_Boolean_ * __this, WebConnection_CreateStream_d_18 * stateMachine, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C985F0, AsyncTaskMethodBuilder_1_System_Boolean__Start_2__MethodInfo); DO_APP_FUNC(0x0121FF80, void, AsyncTaskMethodBuilder_1_System_Boolean___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0121A100, AsyncTaskMethodBuilder_1_System_Boolean_, AsyncTaskMethodBuilder_1_System_Boolean__Create, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CCE0, AsyncTaskMethodBuilder_1_System_Boolean__Create__MethodInfo); DO_APP_FUNC(0x0121F150, Task_1_System_Boolean_ *, AsyncTaskMethodBuilder_1_System_Boolean__GetTaskForResult, (bool result, MethodInfo * method)); -DO_APP_FUNC(0x0121EF70, void, AsyncTaskMethodBuilder_1_System_Boolean__SetException, (AsyncTaskMethodBuilder_1_System_Boolean___Boxed * __this, Exception * exception, MethodInfo * method)); -DO_APP_FUNC(0x0121EC30, void, AsyncTaskMethodBuilder_1_System_Boolean__SetResult, (AsyncTaskMethodBuilder_1_System_Boolean___Boxed * __this, bool result, MethodInfo * method)); -DO_APP_FUNC(0x0121EE80, void, AsyncTaskMethodBuilder_1_System_Boolean__SetResult_1, (AsyncTaskMethodBuilder_1_System_Boolean___Boxed * __this, Task_1_System_Boolean_ * completedTask, MethodInfo * method)); -DO_APP_FUNC(0x0121A110, void, AsyncTaskMethodBuilder_1_System_Boolean__SetStateMachine, (AsyncTaskMethodBuilder_1_System_Boolean___Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x0121A120, Task_1_System_Boolean_ *, AsyncTaskMethodBuilder_1_System_Boolean__get_Task, (AsyncTaskMethodBuilder_1_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C69390, void, AsyncTaskMethodBuilder_1_System_Int32__AwaitUnsafeOnCompleted, (AsyncTaskMethodBuilder_1_System_Int32___Boxed * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Boolean_ awaiter, HttpWebRequest_RunWithTimeoutWorker_d_241_1_System_Int32_ stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C69390, void, AsyncTaskMethodBuilder_1_System_Int32__AwaitUnsafeOnCompleted_1, (AsyncTaskMethodBuilder_1_System_Int32___Boxed * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32_ awaiter, BufferedReadStream_ProcessReadAsync_d_2 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C69390, void, AsyncTaskMethodBuilder_1_System_Int32__AwaitUnsafeOnCompleted_2, (AsyncTaskMethodBuilder_1_System_Int32___Boxed * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32_ awaiter, FixedSizeReadStream_ProcessReadAsync_d_5 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C695B0, void, AsyncTaskMethodBuilder_1_System_Int32__AwaitUnsafeOnCompleted_3, (AsyncTaskMethodBuilder_1_System_Int32___Boxed * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32_ awaiter, MobileAuthenticatedStream_InnerRead_d_66 stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x0121EF70, void, AsyncTaskMethodBuilder_1_System_Boolean__SetException, (AsyncTaskMethodBuilder_1_System_Boolean_ * __this, Exception * exception, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCAF48, AsyncTaskMethodBuilder_1_System_Boolean__SetException__MethodInfo); +DO_APP_FUNC(0x0121EC30, void, AsyncTaskMethodBuilder_1_System_Boolean__SetResult, (AsyncTaskMethodBuilder_1_System_Boolean_ * __this, bool result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCAFC8, AsyncTaskMethodBuilder_1_System_Boolean__SetResult__MethodInfo); +DO_APP_FUNC(0x0121EE80, void, AsyncTaskMethodBuilder_1_System_Boolean__SetResult_1, (AsyncTaskMethodBuilder_1_System_Boolean_ * __this, Task_1_System_Boolean_ * completedTask, MethodInfo * method)); +DO_APP_FUNC(0x0121A110, void, AsyncTaskMethodBuilder_1_System_Boolean__SetStateMachine, (AsyncTaskMethodBuilder_1_System_Boolean_ * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CC00, AsyncTaskMethodBuilder_1_System_Boolean__SetStateMachine__MethodInfo); +DO_APP_FUNC(0x0121A120, Task_1_System_Boolean_ *, AsyncTaskMethodBuilder_1_System_Boolean__get_Task, (AsyncTaskMethodBuilder_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CCD0, AsyncTaskMethodBuilder_1_System_Boolean__get_Task__MethodInfo); +DO_APP_FUNC(0x00C69390, void, AsyncTaskMethodBuilder_1_System_Int32__AwaitUnsafeOnCompleted, (AsyncTaskMethodBuilder_1_System_Int32_ * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Boolean_ * awaiter, HttpWebRequest_RunWithTimeoutWorker_d_241_1_System_Int32_ * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C69390, void, AsyncTaskMethodBuilder_1_System_Int32__AwaitUnsafeOnCompleted_1, (AsyncTaskMethodBuilder_1_System_Int32_ * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32_ * awaiter, BufferedReadStream_ProcessReadAsync_d_2 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13928, AsyncTaskMethodBuilder_1_System_Int32__AwaitUnsafeOnCompleted_1__MethodInfo); +DO_APP_FUNC(0x00C69390, void, AsyncTaskMethodBuilder_1_System_Int32__AwaitUnsafeOnCompleted_2, (AsyncTaskMethodBuilder_1_System_Int32_ * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32_ * awaiter, FixedSizeReadStream_ProcessReadAsync_d_5 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D135C0, AsyncTaskMethodBuilder_1_System_Int32__AwaitUnsafeOnCompleted_2__MethodInfo); +DO_APP_FUNC(0x00C695B0, void, AsyncTaskMethodBuilder_1_System_Int32__AwaitUnsafeOnCompleted_3, (AsyncTaskMethodBuilder_1_System_Int32_ * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32_ * awaiter, MobileAuthenticatedStream_InnerRead_d_66 * stateMachine, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA17C0, AsyncTaskMethodBuilder_1_System_Int32__AwaitUnsafeOnCompleted_3__MethodInfo); -DO_APP_FUNC(0x00C69390, void, AsyncTaskMethodBuilder_1_System_Int32__AwaitUnsafeOnCompleted_4, (AsyncTaskMethodBuilder_1_System_Int32___Boxed * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32_ awaiter, MonoChunkStream_ProcessReadAsync_d_7 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C69390, void, AsyncTaskMethodBuilder_1_System_Int32__AwaitUnsafeOnCompleted_5, (AsyncTaskMethodBuilder_1_System_Int32___Boxed * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32_ awaiter, Stream_ReadAsync_g_FinishReadAsync_44_0_d stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C697C0, void, AsyncTaskMethodBuilder_1_System_Int32__AwaitUnsafeOnCompleted_6, (AsyncTaskMethodBuilder_1_System_Int32___Boxed * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32_ awaiter, WebReadStream_ReadAsync_d_28 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C699D0, void, AsyncTaskMethodBuilder_1_System_Int32__AwaitUnsafeOnCompleted_7, (AsyncTaskMethodBuilder_1_System_Int32___Boxed * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32_ awaiter, WebResponseStream_ReadAsync_d_40 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C67F90, void, AsyncTaskMethodBuilder_1_System_Int32__AwaitUnsafeOnCompleted_8, (AsyncTaskMethodBuilder_1_System_Int32___Boxed * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ awaiter, MobileAuthenticatedStream_StartOperation_d_57 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C699D0, void, AsyncTaskMethodBuilder_1_System_Int32__AwaitUnsafeOnCompleted_9, (AsyncTaskMethodBuilder_1_System_Int32___Boxed * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ awaiter, WebResponseStream_ReadAsync_d_40 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C69C00, void, AsyncTaskMethodBuilder_1_System_Int32__AwaitUnsafeOnCompleted_10, (AsyncTaskMethodBuilder_1_System_Int32___Boxed * __this, TaskAwaiter_1_System_Int32_ awaiter, CryptoStream_ReadAsyncInternal_d_37 stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C69390, void, AsyncTaskMethodBuilder_1_System_Int32__AwaitUnsafeOnCompleted_4, (AsyncTaskMethodBuilder_1_System_Int32_ * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32_ * awaiter, MonoChunkStream_ProcessReadAsync_d_7 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D168E8, AsyncTaskMethodBuilder_1_System_Int32__AwaitUnsafeOnCompleted_4__MethodInfo); +DO_APP_FUNC(0x00C69390, void, AsyncTaskMethodBuilder_1_System_Int32__AwaitUnsafeOnCompleted_5, (AsyncTaskMethodBuilder_1_System_Int32_ * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32_ * awaiter, Stream_ReadAsync_g_FinishReadAsync_44_0_d * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C697C0, void, AsyncTaskMethodBuilder_1_System_Int32__AwaitUnsafeOnCompleted_6, (AsyncTaskMethodBuilder_1_System_Int32_ * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32_ * awaiter, WebReadStream_ReadAsync_d_28 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1AB08, AsyncTaskMethodBuilder_1_System_Int32__AwaitUnsafeOnCompleted_6__MethodInfo); +DO_APP_FUNC(0x00C699D0, void, AsyncTaskMethodBuilder_1_System_Int32__AwaitUnsafeOnCompleted_7, (AsyncTaskMethodBuilder_1_System_Int32_ * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32_ * awaiter, WebResponseStream_ReadAsync_d_40 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A968, AsyncTaskMethodBuilder_1_System_Int32__AwaitUnsafeOnCompleted_7__MethodInfo); +DO_APP_FUNC(0x00C67F90, void, AsyncTaskMethodBuilder_1_System_Int32__AwaitUnsafeOnCompleted_8, (AsyncTaskMethodBuilder_1_System_Int32_ * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ * awaiter, MobileAuthenticatedStream_StartOperation_d_57 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C699D0, void, AsyncTaskMethodBuilder_1_System_Int32__AwaitUnsafeOnCompleted_9, (AsyncTaskMethodBuilder_1_System_Int32_ * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ * awaiter, WebResponseStream_ReadAsync_d_40 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A970, AsyncTaskMethodBuilder_1_System_Int32__AwaitUnsafeOnCompleted_9__MethodInfo); +DO_APP_FUNC(0x00C69C00, void, AsyncTaskMethodBuilder_1_System_Int32__AwaitUnsafeOnCompleted_10, (AsyncTaskMethodBuilder_1_System_Int32_ * __this, TaskAwaiter_1_System_Int32_ * awaiter, CryptoStream_ReadAsyncInternal_d_37 * stateMachine, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C98770, AsyncTaskMethodBuilder_1_System_Int32__AwaitUnsafeOnCompleted_10__MethodInfo); -DO_APP_FUNC(0x00C69E10, void, AsyncTaskMethodBuilder_1_System_Int32__AwaitUnsafeOnCompleted_11, (AsyncTaskMethodBuilder_1_System_Int32___Boxed * __this, ValueTaskAwaiter_1_System_Int32_ awaiter, CryptoStream_ReadAsyncCore_d_42 stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C69E10, void, AsyncTaskMethodBuilder_1_System_Int32__AwaitUnsafeOnCompleted_11, (AsyncTaskMethodBuilder_1_System_Int32_ * __this, ValueTaskAwaiter_1_System_Int32_ * awaiter, CryptoStream_ReadAsyncCore_d_42 * stateMachine, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C99958, AsyncTaskMethodBuilder_1_System_Int32__AwaitUnsafeOnCompleted_11__MethodInfo); -DO_APP_FUNC(0x00C69FB0, void, AsyncTaskMethodBuilder_1_System_Int32__AwaitUnsafeOnCompleted_12, (AsyncTaskMethodBuilder_1_System_Int32___Boxed * __this, ForceAsyncAwaiter awaiter, CryptoStream_ReadAsyncInternal_d_37 stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C69FB0, void, AsyncTaskMethodBuilder_1_System_Int32__AwaitUnsafeOnCompleted_12, (AsyncTaskMethodBuilder_1_System_Int32_ * __this, ForceAsyncAwaiter * awaiter, CryptoStream_ReadAsyncInternal_d_37 * stateMachine, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C98768, AsyncTaskMethodBuilder_1_System_Int32__AwaitUnsafeOnCompleted_12__MethodInfo); -DO_APP_FUNC(0x00C697C0, void, AsyncTaskMethodBuilder_1_System_Int32__AwaitUnsafeOnCompleted_13, (AsyncTaskMethodBuilder_1_System_Int32___Boxed * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter awaiter, WebReadStream_ReadAsync_d_28 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6A1F0, void, AsyncTaskMethodBuilder_1_System_Int32__Start, (AsyncTaskMethodBuilder_1_System_Int32___Boxed * __this, HttpWebRequest_RunWithTimeoutWorker_d_241_1_System_Int32_ stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6A300, void, AsyncTaskMethodBuilder_1_System_Int32__Start_1, (AsyncTaskMethodBuilder_1_System_Int32___Boxed * __this, BufferedReadStream_ProcessReadAsync_d_2 stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C697C0, void, AsyncTaskMethodBuilder_1_System_Int32__AwaitUnsafeOnCompleted_13, (AsyncTaskMethodBuilder_1_System_Int32_ * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * awaiter, WebReadStream_ReadAsync_d_28 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1AB10, AsyncTaskMethodBuilder_1_System_Int32__AwaitUnsafeOnCompleted_13__MethodInfo); +DO_APP_FUNC(0x00C6A1F0, void, AsyncTaskMethodBuilder_1_System_Int32__Start, (AsyncTaskMethodBuilder_1_System_Int32_ * __this, HttpWebRequest_RunWithTimeoutWorker_d_241_1_System_Int32_ * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6A300, void, AsyncTaskMethodBuilder_1_System_Int32__Start_1, (AsyncTaskMethodBuilder_1_System_Int32_ * __this, BufferedReadStream_ProcessReadAsync_d_2 * stateMachine, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C985C8, AsyncTaskMethodBuilder_1_System_Int32__Start_1__MethodInfo); -DO_APP_FUNC(0x00C6A410, void, AsyncTaskMethodBuilder_1_System_Int32__Start_2, (AsyncTaskMethodBuilder_1_System_Int32___Boxed * __this, CryptoStream_ReadAsyncCore_d_42 stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6A410, void, AsyncTaskMethodBuilder_1_System_Int32__Start_2, (AsyncTaskMethodBuilder_1_System_Int32_ * __this, CryptoStream_ReadAsyncCore_d_42 * stateMachine, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C985B8, AsyncTaskMethodBuilder_1_System_Int32__Start_2__MethodInfo); -DO_APP_FUNC(0x00C6A520, void, AsyncTaskMethodBuilder_1_System_Int32__Start_3, (AsyncTaskMethodBuilder_1_System_Int32___Boxed * __this, CryptoStream_ReadAsyncInternal_d_37 stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6A520, void, AsyncTaskMethodBuilder_1_System_Int32__Start_3, (AsyncTaskMethodBuilder_1_System_Int32_ * __this, CryptoStream_ReadAsyncInternal_d_37 * stateMachine, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C985A0, AsyncTaskMethodBuilder_1_System_Int32__Start_3__MethodInfo); -DO_APP_FUNC(0x00C6A630, void, AsyncTaskMethodBuilder_1_System_Int32__Start_4, (AsyncTaskMethodBuilder_1_System_Int32___Boxed * __this, FixedSizeReadStream_ProcessReadAsync_d_5 stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6A630, void, AsyncTaskMethodBuilder_1_System_Int32__Start_4, (AsyncTaskMethodBuilder_1_System_Int32_ * __this, FixedSizeReadStream_ProcessReadAsync_d_5 * stateMachine, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C98580, AsyncTaskMethodBuilder_1_System_Int32__Start_4__MethodInfo); -DO_APP_FUNC(0x00C6A740, void, AsyncTaskMethodBuilder_1_System_Int32__Start_5, (AsyncTaskMethodBuilder_1_System_Int32___Boxed * __this, MobileAuthenticatedStream_InnerRead_d_66 stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6A740, void, AsyncTaskMethodBuilder_1_System_Int32__Start_5, (AsyncTaskMethodBuilder_1_System_Int32_ * __this, MobileAuthenticatedStream_InnerRead_d_66 * stateMachine, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C98568, AsyncTaskMethodBuilder_1_System_Int32__Start_5__MethodInfo); -DO_APP_FUNC(0x00C6A850, void, AsyncTaskMethodBuilder_1_System_Int32__Start_6, (AsyncTaskMethodBuilder_1_System_Int32___Boxed * __this, MobileAuthenticatedStream_StartOperation_d_57 stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6A850, void, AsyncTaskMethodBuilder_1_System_Int32__Start_6, (AsyncTaskMethodBuilder_1_System_Int32_ * __this, MobileAuthenticatedStream_StartOperation_d_57 * stateMachine, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C98560, AsyncTaskMethodBuilder_1_System_Int32__Start_6__MethodInfo); -DO_APP_FUNC(0x00C6A960, void, AsyncTaskMethodBuilder_1_System_Int32__Start_7, (AsyncTaskMethodBuilder_1_System_Int32___Boxed * __this, MonoChunkStream_ProcessReadAsync_d_7 stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6A960, void, AsyncTaskMethodBuilder_1_System_Int32__Start_7, (AsyncTaskMethodBuilder_1_System_Int32_ * __this, MonoChunkStream_ProcessReadAsync_d_7 * stateMachine, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C98550, AsyncTaskMethodBuilder_1_System_Int32__Start_7__MethodInfo); -DO_APP_FUNC(0x00C6AA70, void, AsyncTaskMethodBuilder_1_System_Int32__Start_8, (AsyncTaskMethodBuilder_1_System_Int32___Boxed * __this, Stream_ReadAsync_g_FinishReadAsync_44_0_d stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6AB80, void, AsyncTaskMethodBuilder_1_System_Int32__Start_9, (AsyncTaskMethodBuilder_1_System_Int32___Boxed * __this, WebReadStream_ReadAsync_d_28 stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6AA70, void, AsyncTaskMethodBuilder_1_System_Int32__Start_8, (AsyncTaskMethodBuilder_1_System_Int32_ * __this, Stream_ReadAsync_g_FinishReadAsync_44_0_d * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6AB80, void, AsyncTaskMethodBuilder_1_System_Int32__Start_9, (AsyncTaskMethodBuilder_1_System_Int32_ * __this, WebReadStream_ReadAsync_d_28 * stateMachine, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C98538, AsyncTaskMethodBuilder_1_System_Int32__Start_9__MethodInfo); -DO_APP_FUNC(0x00C6AC90, void, AsyncTaskMethodBuilder_1_System_Int32__Start_10, (AsyncTaskMethodBuilder_1_System_Int32___Boxed * __this, WebResponseStream_ReadAsync_d_40 stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6AC90, void, AsyncTaskMethodBuilder_1_System_Int32__Start_10, (AsyncTaskMethodBuilder_1_System_Int32_ * __this, WebResponseStream_ReadAsync_d_40 * stateMachine, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C98528, AsyncTaskMethodBuilder_1_System_Int32__Start_10__MethodInfo); DO_APP_FUNC(0x01221410, void, AsyncTaskMethodBuilder_1_System_Int32___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0121A100, AsyncTaskMethodBuilder_1_System_Int32_, AsyncTaskMethodBuilder_1_System_Int32__Create, (MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C987A0, AsyncTaskMethodBuilder_1_System_Int32__Create__MethodInfo); DO_APP_FUNC(0x012205F0, Task_1_System_Int32_ *, AsyncTaskMethodBuilder_1_System_Int32__GetTaskForResult, (int32_t result, MethodInfo * method)); -DO_APP_FUNC(0x01220410, void, AsyncTaskMethodBuilder_1_System_Int32__SetException, (AsyncTaskMethodBuilder_1_System_Int32___Boxed * __this, Exception * exception, MethodInfo * method)); -DO_APP_FUNC(0x012200D0, void, AsyncTaskMethodBuilder_1_System_Int32__SetResult, (AsyncTaskMethodBuilder_1_System_Int32___Boxed * __this, int32_t result, MethodInfo * method)); -DO_APP_FUNC(0x01220320, void, AsyncTaskMethodBuilder_1_System_Int32__SetResult_1, (AsyncTaskMethodBuilder_1_System_Int32___Boxed * __this, Task_1_System_Int32_ * completedTask, MethodInfo * method)); -DO_APP_FUNC(0x0121A110, void, AsyncTaskMethodBuilder_1_System_Int32__SetStateMachine, (AsyncTaskMethodBuilder_1_System_Int32___Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x01220410, void, AsyncTaskMethodBuilder_1_System_Int32__SetException, (AsyncTaskMethodBuilder_1_System_Int32_ * __this, Exception * exception, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCAF20, AsyncTaskMethodBuilder_1_System_Int32__SetException__MethodInfo); +DO_APP_FUNC(0x012200D0, void, AsyncTaskMethodBuilder_1_System_Int32__SetResult, (AsyncTaskMethodBuilder_1_System_Int32_ * __this, int32_t result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCAF10, AsyncTaskMethodBuilder_1_System_Int32__SetResult__MethodInfo); +DO_APP_FUNC(0x01220320, void, AsyncTaskMethodBuilder_1_System_Int32__SetResult_1, (AsyncTaskMethodBuilder_1_System_Int32_ * __this, Task_1_System_Int32_ * completedTask, MethodInfo * method)); +DO_APP_FUNC(0x0121A110, void, AsyncTaskMethodBuilder_1_System_Int32__SetStateMachine, (AsyncTaskMethodBuilder_1_System_Int32_ * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C98740, AsyncTaskMethodBuilder_1_System_Int32__SetStateMachine__MethodInfo); -DO_APP_FUNC(0x0121A120, Task_1_System_Int32_ *, AsyncTaskMethodBuilder_1_System_Int32__get_Task, (AsyncTaskMethodBuilder_1_System_Int32___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0121A120, Task_1_System_Int32_ *, AsyncTaskMethodBuilder_1_System_Int32__get_Task, (AsyncTaskMethodBuilder_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C987A8, AsyncTaskMethodBuilder_1_System_Int32__get_Task__MethodInfo); -DO_APP_FUNC(0x00C6ADA0, void, AsyncTaskMethodBuilder_1_System_Int32Enum__AwaitUnsafeOnCompleted, (AsyncTaskMethodBuilder_1_System_Int32Enum___Boxed * __this, TaskAwaiter awaiter, AnchorTransferBatch_ExportAsync_d_7 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6ADA0, void, AsyncTaskMethodBuilder_1_System_Int32Enum__AwaitUnsafeOnCompleted_1, (AsyncTaskMethodBuilder_1_System_Int32Enum___Boxed * __this, TaskAwaiter awaiter, AnchorTransferBatch_ImportAsync_d_8 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6AF80, void, AsyncTaskMethodBuilder_1_System_Int32Enum__Start, (AsyncTaskMethodBuilder_1_System_Int32Enum___Boxed * __this, AnchorTransferBatch_ExportAsync_d_7 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6B090, void, AsyncTaskMethodBuilder_1_System_Int32Enum__Start_1, (AsyncTaskMethodBuilder_1_System_Int32Enum___Boxed * __this, AnchorTransferBatch_ImportAsync_d_8 stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6ADA0, void, AsyncTaskMethodBuilder_1_System_Int32Enum__AwaitUnsafeOnCompleted, (AsyncTaskMethodBuilder_1_System_Int32Enum_ * __this, TaskAwaiter * awaiter, AnchorTransferBatch_ExportAsync_d_7 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6ADA0, void, AsyncTaskMethodBuilder_1_System_Int32Enum__AwaitUnsafeOnCompleted_1, (AsyncTaskMethodBuilder_1_System_Int32Enum_ * __this, TaskAwaiter * awaiter, AnchorTransferBatch_ImportAsync_d_8 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6AF80, void, AsyncTaskMethodBuilder_1_System_Int32Enum__Start, (AsyncTaskMethodBuilder_1_System_Int32Enum_ * __this, AnchorTransferBatch_ExportAsync_d_7 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6B090, void, AsyncTaskMethodBuilder_1_System_Int32Enum__Start_1, (AsyncTaskMethodBuilder_1_System_Int32Enum_ * __this, AnchorTransferBatch_ImportAsync_d_8 * stateMachine, MethodInfo * method)); DO_APP_FUNC(0x012228A0, void, AsyncTaskMethodBuilder_1_System_Int32Enum___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0121A100, AsyncTaskMethodBuilder_1_System_Int32Enum_, AsyncTaskMethodBuilder_1_System_Int32Enum__Create, (MethodInfo * method)); DO_APP_FUNC(0x01221A80, Task_1_System_Int32Enum_ *, AsyncTaskMethodBuilder_1_System_Int32Enum__GetTaskForResult, (Int32Enum__Enum result, MethodInfo * method)); -DO_APP_FUNC(0x012218A0, void, AsyncTaskMethodBuilder_1_System_Int32Enum__SetException, (AsyncTaskMethodBuilder_1_System_Int32Enum___Boxed * __this, Exception * exception, MethodInfo * method)); -DO_APP_FUNC(0x01221560, void, AsyncTaskMethodBuilder_1_System_Int32Enum__SetResult, (AsyncTaskMethodBuilder_1_System_Int32Enum___Boxed * __this, Int32Enum__Enum result, MethodInfo * method)); -DO_APP_FUNC(0x012217B0, void, AsyncTaskMethodBuilder_1_System_Int32Enum__SetResult_1, (AsyncTaskMethodBuilder_1_System_Int32Enum___Boxed * __this, Task_1_System_Int32Enum_ * completedTask, MethodInfo * method)); -DO_APP_FUNC(0x0121A110, void, AsyncTaskMethodBuilder_1_System_Int32Enum__SetStateMachine, (AsyncTaskMethodBuilder_1_System_Int32Enum___Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x0121A120, Task_1_System_Int32Enum_ *, AsyncTaskMethodBuilder_1_System_Int32Enum__get_Task, (AsyncTaskMethodBuilder_1_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C6B1A0, void, AsyncTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted, (AsyncTaskMethodBuilder_1_System_Object___Boxed * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_5__1 awaiter, HttpWebRequest_MyGetResponseAsync_d_243 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6B3E0, void, AsyncTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted_1, (AsyncTaskMethodBuilder_1_System_Object___Boxed * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Boolean_ awaiter, HttpWebRequest_RunWithTimeoutWorker_d_241_1_System_Object_ stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6B600, void, AsyncTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted_2, (AsyncTaskMethodBuilder_1_System_Object___Boxed * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Boolean_ awaiter, WebConnection_InitConnection_d_19 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6B3E0, void, AsyncTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted_3, (AsyncTaskMethodBuilder_1_System_Object___Boxed * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32_ awaiter, WebResponseStream_ReadAllAsyncInner_d_47 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6B3E0, void, AsyncTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted_4, (AsyncTaskMethodBuilder_1_System_Object___Boxed * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32_ awaiter, WebSocketHandle_ReadResponseHeaderLineAsync_d_32 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6B810, void, AsyncTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted_5, (AsyncTaskMethodBuilder_1_System_Object___Boxed * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ awaiter, WebCompletionSource_1_T_WaitForCompletion_d_15_System_Object_ stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6B1A0, void, AsyncTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted_6, (AsyncTaskMethodBuilder_1_System_Object___Boxed * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ awaiter, HttpWebRequest_MyGetResponseAsync_d_243 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6B810, void, AsyncTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted_7, (AsyncTaskMethodBuilder_1_System_Object___Boxed * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ awaiter, WebOperation_GetRequestStream_d_50 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6B1A0, void, AsyncTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted_8, (AsyncTaskMethodBuilder_1_System_Object___Boxed * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ awaiter, WebSocketHandle_ConnectSocketAsync_d_27 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6B600, void, AsyncTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted_9, (AsyncTaskMethodBuilder_1_System_Object___Boxed * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ awaiter, WebSocketHandle_ParseAndValidateConnectResponseAsync_d_30 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6B600, void, AsyncTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted_10, (AsyncTaskMethodBuilder_1_System_Object___Boxed * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ awaiter, XmlDownloadManager_GetNonFileStreamAsync_d_5 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6BA10, void, AsyncTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted_11, (AsyncTaskMethodBuilder_1_System_Object___Boxed * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ awaiter, XmlUrlResolver_GetEntityAsync_d_15 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6BC20, void, AsyncTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted_12, (AsyncTaskMethodBuilder_1_System_Object___Boxed * __this, ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Int32_ awaiter, ManagedWebSocket_ReceiveAsyncPrivate_d_61_2_ManagedWebSocket_WebSocketReceiveResultGetter_System_Object_ stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6BDD0, void, AsyncTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted_13, (AsyncTaskMethodBuilder_1_System_Object___Boxed * __this, TaskAwaiter_1_System_Int32Enum_ awaiter, XRAnchorTransferBatch_ExportAsync_d_10 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6BDD0, void, AsyncTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted_14, (AsyncTaskMethodBuilder_1_System_Object___Boxed * __this, TaskAwaiter_1_System_Int32Enum_ awaiter, XRAnchorTransferBatch_ImportAsync_d_11 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6BFC0, void, AsyncTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted_15, (AsyncTaskMethodBuilder_1_System_Object___Boxed * __this, TaskAwaiter_1_System_Object_ awaiter, HttpWebRequest_MyGetResponseAsync_d_243 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6C200, void, AsyncTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted_16, (AsyncTaskMethodBuilder_1_System_Object___Boxed * __this, TaskAwaiter_1_System_Object_ awaiter, XRAnchorStore_LoadAnchorStoreAsync_d_7 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6C200, void, AsyncTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted_17, (AsyncTaskMethodBuilder_1_System_Object___Boxed * __this, TaskAwaiter_1_System_Object_ awaiter, XRAnchorStore_LoadAsync_d_6 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6C3F0, void, AsyncTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted_18, (AsyncTaskMethodBuilder_1_System_Object___Boxed * __this, Object * awaiter, Object * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6C530, void, AsyncTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted_19, (AsyncTaskMethodBuilder_1_System_Object___Boxed * __this, Object * awaiter, WebClient_GetWebResponseTaskAsync_d_112 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6C6E0, void, AsyncTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted_20, (AsyncTaskMethodBuilder_1_System_Object___Boxed * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter awaiter, ManagedWebSocket_ReceiveAsyncPrivate_d_61_2_ManagedWebSocket_WebSocketReceiveResultGetter_System_Object_ stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6C920, void, AsyncTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted_21, (AsyncTaskMethodBuilder_1_System_Object___Boxed * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter awaiter, AsyncProtocolRequest_StartOperation_d_23 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6C920, void, AsyncTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted_22, (AsyncTaskMethodBuilder_1_System_Object___Boxed * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter awaiter, HttpWebRequest_GetRewriteHandler_b_271_0_d stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6B1A0, void, AsyncTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted_23, (AsyncTaskMethodBuilder_1_System_Object___Boxed * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter awaiter, HttpWebRequest_MyGetResponseAsync_d_243 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6CB20, void, AsyncTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted_24, (AsyncTaskMethodBuilder_1_System_Object___Boxed * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter awaiter, MonoTlsStream_CreateStream_d_18 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6B600, void, AsyncTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted_25, (AsyncTaskMethodBuilder_1_System_Object___Boxed * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter awaiter, WebConnection_InitConnection_d_19 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6B1A0, void, AsyncTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted_26, (AsyncTaskMethodBuilder_1_System_Object___Boxed * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter awaiter, WebSocketHandle_ConnectSocketAsync_d_27 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6CD30, void, AsyncTaskMethodBuilder_1_System_Object__Start, (AsyncTaskMethodBuilder_1_System_Object___Boxed * __this, ManagedWebSocket_ReceiveAsyncPrivate_d_61_2_ManagedWebSocket_WebSocketReceiveResultGetter_System_Object_ stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6CE40, void, AsyncTaskMethodBuilder_1_System_Object__Start_1, (AsyncTaskMethodBuilder_1_System_Object___Boxed * __this, HttpWebRequest_RunWithTimeoutWorker_d_241_1_System_Object_ stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6CF50, void, AsyncTaskMethodBuilder_1_System_Object__Start_2, (AsyncTaskMethodBuilder_1_System_Object___Boxed * __this, WebCompletionSource_1_T_WaitForCompletion_d_15_System_Object_ stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6D060, void, AsyncTaskMethodBuilder_1_System_Object__Start_3, (AsyncTaskMethodBuilder_1_System_Object___Boxed * __this, Object * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x012218A0, void, AsyncTaskMethodBuilder_1_System_Int32Enum__SetException, (AsyncTaskMethodBuilder_1_System_Int32Enum_ * __this, Exception * exception, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCAEF8, AsyncTaskMethodBuilder_1_System_Int32Enum__SetException__MethodInfo); +DO_APP_FUNC(0x01221560, void, AsyncTaskMethodBuilder_1_System_Int32Enum__SetResult, (AsyncTaskMethodBuilder_1_System_Int32Enum_ * __this, Int32Enum__Enum result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCAEE8, AsyncTaskMethodBuilder_1_System_Int32Enum__SetResult__MethodInfo); +DO_APP_FUNC(0x012217B0, void, AsyncTaskMethodBuilder_1_System_Int32Enum__SetResult_1, (AsyncTaskMethodBuilder_1_System_Int32Enum_ * __this, Task_1_System_Int32Enum_ * completedTask, MethodInfo * method)); +DO_APP_FUNC(0x0121A110, void, AsyncTaskMethodBuilder_1_System_Int32Enum__SetStateMachine, (AsyncTaskMethodBuilder_1_System_Int32Enum_ * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x0121A120, Task_1_System_Int32Enum_ *, AsyncTaskMethodBuilder_1_System_Int32Enum__get_Task, (AsyncTaskMethodBuilder_1_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C6B1A0, void, AsyncTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted, (AsyncTaskMethodBuilder_1_System_Object_ * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_5__1 * awaiter, HttpWebRequest_MyGetResponseAsync_d_243 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6B3E0, void, AsyncTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted_1, (AsyncTaskMethodBuilder_1_System_Object_ * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Boolean_ * awaiter, HttpWebRequest_RunWithTimeoutWorker_d_241_1_System_Object_ * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6B600, void, AsyncTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted_2, (AsyncTaskMethodBuilder_1_System_Object_ * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Boolean_ * awaiter, WebConnection_InitConnection_d_19 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6B3E0, void, AsyncTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted_3, (AsyncTaskMethodBuilder_1_System_Object_ * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32_ * awaiter, WebResponseStream_ReadAllAsyncInner_d_47 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6B3E0, void, AsyncTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted_4, (AsyncTaskMethodBuilder_1_System_Object_ * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32_ * awaiter, WebSocketHandle_ReadResponseHeaderLineAsync_d_32 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6B810, void, AsyncTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted_5, (AsyncTaskMethodBuilder_1_System_Object_ * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ * awaiter, WebCompletionSource_1_T_WaitForCompletion_d_15_System_Object_ * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6B1A0, void, AsyncTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted_6, (AsyncTaskMethodBuilder_1_System_Object_ * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ * awaiter, HttpWebRequest_MyGetResponseAsync_d_243 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6B810, void, AsyncTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted_7, (AsyncTaskMethodBuilder_1_System_Object_ * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ * awaiter, WebOperation_GetRequestStream_d_50 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6B1A0, void, AsyncTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted_8, (AsyncTaskMethodBuilder_1_System_Object_ * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ * awaiter, WebSocketHandle_ConnectSocketAsync_d_27 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6B600, void, AsyncTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted_9, (AsyncTaskMethodBuilder_1_System_Object_ * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ * awaiter, WebSocketHandle_ParseAndValidateConnectResponseAsync_d_30 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6B600, void, AsyncTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted_10, (AsyncTaskMethodBuilder_1_System_Object_ * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ * awaiter, XmlDownloadManager_GetNonFileStreamAsync_d_5 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6BA10, void, AsyncTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted_11, (AsyncTaskMethodBuilder_1_System_Object_ * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ * awaiter, XmlUrlResolver_GetEntityAsync_d_15 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6BC20, void, AsyncTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted_12, (AsyncTaskMethodBuilder_1_System_Object_ * __this, ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Int32_ * awaiter, ManagedWebSocket_ReceiveAsyncPrivate_d_61_2_ManagedWebSocket_WebSocketReceiveResultGetter_System_Object_ * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6BDD0, void, AsyncTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted_13, (AsyncTaskMethodBuilder_1_System_Object_ * __this, TaskAwaiter_1_System_Int32Enum_ * awaiter, XRAnchorTransferBatch_ExportAsync_d_10 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6BDD0, void, AsyncTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted_14, (AsyncTaskMethodBuilder_1_System_Object_ * __this, TaskAwaiter_1_System_Int32Enum_ * awaiter, XRAnchorTransferBatch_ImportAsync_d_11 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6BFC0, void, AsyncTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted_15, (AsyncTaskMethodBuilder_1_System_Object_ * __this, TaskAwaiter_1_System_Object_ * awaiter, HttpWebRequest_MyGetResponseAsync_d_243 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6C200, void, AsyncTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted_16, (AsyncTaskMethodBuilder_1_System_Object_ * __this, TaskAwaiter_1_System_Object_ * awaiter, XRAnchorStore_LoadAnchorStoreAsync_d_7 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6C200, void, AsyncTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted_17, (AsyncTaskMethodBuilder_1_System_Object_ * __this, TaskAwaiter_1_System_Object_ * awaiter, XRAnchorStore_LoadAsync_d_6 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6C3F0, void, AsyncTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted_18, (AsyncTaskMethodBuilder_1_System_Object_ * __this, Object * * awaiter, Object * * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6C530, void, AsyncTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted_19, (AsyncTaskMethodBuilder_1_System_Object_ * __this, Object * * awaiter, WebClient_GetWebResponseTaskAsync_d_112 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6C6E0, void, AsyncTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted_20, (AsyncTaskMethodBuilder_1_System_Object_ * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * awaiter, ManagedWebSocket_ReceiveAsyncPrivate_d_61_2_ManagedWebSocket_WebSocketReceiveResultGetter_System_Object_ * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6C920, void, AsyncTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted_21, (AsyncTaskMethodBuilder_1_System_Object_ * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * awaiter, AsyncProtocolRequest_StartOperation_d_23 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6C920, void, AsyncTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted_22, (AsyncTaskMethodBuilder_1_System_Object_ * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * awaiter, HttpWebRequest_GetRewriteHandler_b_271_0_d * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6B1A0, void, AsyncTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted_23, (AsyncTaskMethodBuilder_1_System_Object_ * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * awaiter, HttpWebRequest_MyGetResponseAsync_d_243 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6CB20, void, AsyncTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted_24, (AsyncTaskMethodBuilder_1_System_Object_ * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * awaiter, MonoTlsStream_CreateStream_d_18 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6B600, void, AsyncTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted_25, (AsyncTaskMethodBuilder_1_System_Object_ * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * awaiter, WebConnection_InitConnection_d_19 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6B1A0, void, AsyncTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted_26, (AsyncTaskMethodBuilder_1_System_Object_ * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * awaiter, WebSocketHandle_ConnectSocketAsync_d_27 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6CD30, void, AsyncTaskMethodBuilder_1_System_Object__Start, (AsyncTaskMethodBuilder_1_System_Object_ * __this, ManagedWebSocket_ReceiveAsyncPrivate_d_61_2_ManagedWebSocket_WebSocketReceiveResultGetter_System_Object_ * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6CE40, void, AsyncTaskMethodBuilder_1_System_Object__Start_1, (AsyncTaskMethodBuilder_1_System_Object_ * __this, HttpWebRequest_RunWithTimeoutWorker_d_241_1_System_Object_ * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6CF50, void, AsyncTaskMethodBuilder_1_System_Object__Start_2, (AsyncTaskMethodBuilder_1_System_Object_ * __this, WebCompletionSource_1_T_WaitForCompletion_d_15_System_Object_ * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6D060, void, AsyncTaskMethodBuilder_1_System_Object__Start_3, (AsyncTaskMethodBuilder_1_System_Object_ * __this, Object * * stateMachine, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C984C8, AsyncTaskMethodBuilder_1_System_Object__Start_3__MethodInfo); -DO_APP_FUNC(0x00C6D1E0, void, AsyncTaskMethodBuilder_1_System_Object__Start_4, (AsyncTaskMethodBuilder_1_System_Object___Boxed * __this, AsyncProtocolRequest_StartOperation_d_23 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6D2F0, void, AsyncTaskMethodBuilder_1_System_Object__Start_5, (AsyncTaskMethodBuilder_1_System_Object___Boxed * __this, HttpWebRequest_GetRewriteHandler_b_271_0_d stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6D400, void, AsyncTaskMethodBuilder_1_System_Object__Start_6, (AsyncTaskMethodBuilder_1_System_Object___Boxed * __this, HttpWebRequest_MyGetResponseAsync_d_243 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6D510, void, AsyncTaskMethodBuilder_1_System_Object__Start_7, (AsyncTaskMethodBuilder_1_System_Object___Boxed * __this, MonoTlsStream_CreateStream_d_18 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6D620, void, AsyncTaskMethodBuilder_1_System_Object__Start_8, (AsyncTaskMethodBuilder_1_System_Object___Boxed * __this, WebClient_GetWebResponseTaskAsync_d_112 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6D730, void, AsyncTaskMethodBuilder_1_System_Object__Start_9, (AsyncTaskMethodBuilder_1_System_Object___Boxed * __this, WebConnection_InitConnection_d_19 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6D840, void, AsyncTaskMethodBuilder_1_System_Object__Start_10, (AsyncTaskMethodBuilder_1_System_Object___Boxed * __this, WebOperation_GetRequestStream_d_50 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6D950, void, AsyncTaskMethodBuilder_1_System_Object__Start_11, (AsyncTaskMethodBuilder_1_System_Object___Boxed * __this, WebResponseStream_ReadAllAsyncInner_d_47 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6DA60, void, AsyncTaskMethodBuilder_1_System_Object__Start_12, (AsyncTaskMethodBuilder_1_System_Object___Boxed * __this, WebSocketHandle_ConnectSocketAsync_d_27 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6DB70, void, AsyncTaskMethodBuilder_1_System_Object__Start_13, (AsyncTaskMethodBuilder_1_System_Object___Boxed * __this, WebSocketHandle_ParseAndValidateConnectResponseAsync_d_30 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6DC80, void, AsyncTaskMethodBuilder_1_System_Object__Start_14, (AsyncTaskMethodBuilder_1_System_Object___Boxed * __this, WebSocketHandle_ReadResponseHeaderLineAsync_d_32 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6DD90, void, AsyncTaskMethodBuilder_1_System_Object__Start_15, (AsyncTaskMethodBuilder_1_System_Object___Boxed * __this, XRAnchorStore_LoadAnchorStoreAsync_d_7 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6DEA0, void, AsyncTaskMethodBuilder_1_System_Object__Start_16, (AsyncTaskMethodBuilder_1_System_Object___Boxed * __this, XRAnchorStore_LoadAsync_d_6 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6DFB0, void, AsyncTaskMethodBuilder_1_System_Object__Start_17, (AsyncTaskMethodBuilder_1_System_Object___Boxed * __this, XRAnchorTransferBatch_ExportAsync_d_10 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6E0C0, void, AsyncTaskMethodBuilder_1_System_Object__Start_18, (AsyncTaskMethodBuilder_1_System_Object___Boxed * __this, XRAnchorTransferBatch_ImportAsync_d_11 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6E1D0, void, AsyncTaskMethodBuilder_1_System_Object__Start_19, (AsyncTaskMethodBuilder_1_System_Object___Boxed * __this, XmlDownloadManager_GetNonFileStreamAsync_d_5 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6E2E0, void, AsyncTaskMethodBuilder_1_System_Object__Start_20, (AsyncTaskMethodBuilder_1_System_Object___Boxed * __this, XmlUrlResolver_GetEntityAsync_d_15 stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6D1E0, void, AsyncTaskMethodBuilder_1_System_Object__Start_4, (AsyncTaskMethodBuilder_1_System_Object_ * __this, AsyncProtocolRequest_StartOperation_d_23 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6D2F0, void, AsyncTaskMethodBuilder_1_System_Object__Start_5, (AsyncTaskMethodBuilder_1_System_Object_ * __this, HttpWebRequest_GetRewriteHandler_b_271_0_d * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6D400, void, AsyncTaskMethodBuilder_1_System_Object__Start_6, (AsyncTaskMethodBuilder_1_System_Object_ * __this, HttpWebRequest_MyGetResponseAsync_d_243 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6D510, void, AsyncTaskMethodBuilder_1_System_Object__Start_7, (AsyncTaskMethodBuilder_1_System_Object_ * __this, MonoTlsStream_CreateStream_d_18 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6D620, void, AsyncTaskMethodBuilder_1_System_Object__Start_8, (AsyncTaskMethodBuilder_1_System_Object_ * __this, WebClient_GetWebResponseTaskAsync_d_112 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6D730, void, AsyncTaskMethodBuilder_1_System_Object__Start_9, (AsyncTaskMethodBuilder_1_System_Object_ * __this, WebConnection_InitConnection_d_19 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6D840, void, AsyncTaskMethodBuilder_1_System_Object__Start_10, (AsyncTaskMethodBuilder_1_System_Object_ * __this, WebOperation_GetRequestStream_d_50 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6D950, void, AsyncTaskMethodBuilder_1_System_Object__Start_11, (AsyncTaskMethodBuilder_1_System_Object_ * __this, WebResponseStream_ReadAllAsyncInner_d_47 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6DA60, void, AsyncTaskMethodBuilder_1_System_Object__Start_12, (AsyncTaskMethodBuilder_1_System_Object_ * __this, WebSocketHandle_ConnectSocketAsync_d_27 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6DB70, void, AsyncTaskMethodBuilder_1_System_Object__Start_13, (AsyncTaskMethodBuilder_1_System_Object_ * __this, WebSocketHandle_ParseAndValidateConnectResponseAsync_d_30 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6DC80, void, AsyncTaskMethodBuilder_1_System_Object__Start_14, (AsyncTaskMethodBuilder_1_System_Object_ * __this, WebSocketHandle_ReadResponseHeaderLineAsync_d_32 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6DD90, void, AsyncTaskMethodBuilder_1_System_Object__Start_15, (AsyncTaskMethodBuilder_1_System_Object_ * __this, XRAnchorStore_LoadAnchorStoreAsync_d_7 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6DEA0, void, AsyncTaskMethodBuilder_1_System_Object__Start_16, (AsyncTaskMethodBuilder_1_System_Object_ * __this, XRAnchorStore_LoadAsync_d_6 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6DFB0, void, AsyncTaskMethodBuilder_1_System_Object__Start_17, (AsyncTaskMethodBuilder_1_System_Object_ * __this, XRAnchorTransferBatch_ExportAsync_d_10 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6E0C0, void, AsyncTaskMethodBuilder_1_System_Object__Start_18, (AsyncTaskMethodBuilder_1_System_Object_ * __this, XRAnchorTransferBatch_ImportAsync_d_11 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6E1D0, void, AsyncTaskMethodBuilder_1_System_Object__Start_19, (AsyncTaskMethodBuilder_1_System_Object_ * __this, XmlDownloadManager_GetNonFileStreamAsync_d_5 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6E2E0, void, AsyncTaskMethodBuilder_1_System_Object__Start_20, (AsyncTaskMethodBuilder_1_System_Object_ * __this, XmlUrlResolver_GetEntityAsync_d_15 * stateMachine, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C98310, AsyncTaskMethodBuilder_1_System_Object__Start_20__MethodInfo); DO_APP_FUNC(0x01223230, void, AsyncTaskMethodBuilder_1_System_Object___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0121A100, AsyncTaskMethodBuilder_1_System_Object_, AsyncTaskMethodBuilder_1_System_Object__Create, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE018, AsyncTaskMethodBuilder_1_System_Object__Create__MethodInfo); DO_APP_FUNC(0x01222F10, Task_1_System_Object_ *, AsyncTaskMethodBuilder_1_System_Object__GetTaskForResult, (Object * result, MethodInfo * method)); -DO_APP_FUNC(0x01222D30, void, AsyncTaskMethodBuilder_1_System_Object__SetException, (AsyncTaskMethodBuilder_1_System_Object___Boxed * __this, Exception * exception, MethodInfo * method)); -DO_APP_FUNC(0x012229F0, void, AsyncTaskMethodBuilder_1_System_Object__SetResult, (AsyncTaskMethodBuilder_1_System_Object___Boxed * __this, Object * result, MethodInfo * method)); -DO_APP_FUNC(0x01222C40, void, AsyncTaskMethodBuilder_1_System_Object__SetResult_1, (AsyncTaskMethodBuilder_1_System_Object___Boxed * __this, Task_1_System_Object_ * completedTask, MethodInfo * method)); -DO_APP_FUNC(0x0121A110, void, AsyncTaskMethodBuilder_1_System_Object__SetStateMachine, (AsyncTaskMethodBuilder_1_System_Object___Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x0121A120, Task_1_System_Object_ *, AsyncTaskMethodBuilder_1_System_Object__get_Task, (AsyncTaskMethodBuilder_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C68E40, void, AsyncTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult__AwaitUnsafeOnCompleted, (AsyncTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult___Boxed * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ awaiter, WebSocket_ReceiveAsync_d_14 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6E3F0, void, AsyncTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult__Start, (AsyncTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult___Boxed * __this, WebSocket_ReceiveAsync_d_14 stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x01222D30, void, AsyncTaskMethodBuilder_1_System_Object__SetException, (AsyncTaskMethodBuilder_1_System_Object_ * __this, Exception * exception, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCAEB0, AsyncTaskMethodBuilder_1_System_Object__SetException__MethodInfo); +DO_APP_FUNC(0x012229F0, void, AsyncTaskMethodBuilder_1_System_Object__SetResult, (AsyncTaskMethodBuilder_1_System_Object_ * __this, Object * result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCAE98, AsyncTaskMethodBuilder_1_System_Object__SetResult__MethodInfo); +DO_APP_FUNC(0x01222C40, void, AsyncTaskMethodBuilder_1_System_Object__SetResult_1, (AsyncTaskMethodBuilder_1_System_Object_ * __this, Task_1_System_Object_ * completedTask, MethodInfo * method)); +DO_APP_FUNC(0x0121A110, void, AsyncTaskMethodBuilder_1_System_Object__SetStateMachine, (AsyncTaskMethodBuilder_1_System_Object_ * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE048, AsyncTaskMethodBuilder_1_System_Object__SetStateMachine__MethodInfo); +DO_APP_FUNC(0x0121A120, Task_1_System_Object_ *, AsyncTaskMethodBuilder_1_System_Object__get_Task, (AsyncTaskMethodBuilder_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE030, AsyncTaskMethodBuilder_1_System_Object__get_Task__MethodInfo); +DO_APP_FUNC(0x00C68E40, void, AsyncTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult__AwaitUnsafeOnCompleted, (AsyncTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ * awaiter, WebSocket_ReceiveAsync_d_14 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6E3F0, void, AsyncTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult__Start, (AsyncTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, WebSocket_ReceiveAsync_d_14 * stateMachine, MethodInfo * method)); DO_APP_FUNC(0x012246D0, void, AsyncTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0121A100, AsyncTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult_, AsyncTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult__Create, (MethodInfo * method)); DO_APP_FUNC(0x012238A0, Task_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ *, AsyncTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult__GetTaskForResult, (ValueWebSocketReceiveResult result, MethodInfo * method)); -DO_APP_FUNC(0x012236C0, void, AsyncTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult__SetException, (AsyncTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult___Boxed * __this, Exception * exception, MethodInfo * method)); -DO_APP_FUNC(0x01223380, void, AsyncTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult__SetResult, (AsyncTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult___Boxed * __this, ValueWebSocketReceiveResult result, MethodInfo * method)); -DO_APP_FUNC(0x012235D0, void, AsyncTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult__SetResult_1, (AsyncTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult___Boxed * __this, Task_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * completedTask, MethodInfo * method)); -DO_APP_FUNC(0x0121A110, void, AsyncTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult__SetStateMachine, (AsyncTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult___Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x0121A120, Task_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ *, AsyncTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult__get_Task, (AsyncTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C69390, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult___Boxed * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Nullable_1_ awaiter, AsyncProtocolRequest_ProcessOperation_d_24 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C697C0, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_1, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult___Boxed * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_3__1 awaiter, WebConnectionTunnel_Initialize_d_42 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C69390, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_2, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult___Boxed * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32_ awaiter, MonoChunkStream_FinishReading_d_8 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C67F90, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_3, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult___Boxed * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32_ awaiter, WebResponseStream_InitReadAsync_d_52 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C67F90, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_4, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult___Boxed * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ awaiter, MobileAuthenticatedStream_ProcessAuthentication_d_48 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C697C0, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_5, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult___Boxed * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ awaiter, ServicePointScheduler_RunScheduler_d_32 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C69390, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_6, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult___Boxed * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ awaiter, WebRequestStream_WriteChunkTrailer_d_40 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C68C20, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_7, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult___Boxed * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ awaiter, WebResponseStream_ReadAllAsync_d_48 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6E500, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_8, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult___Boxed * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ awaiter, WebSocketHandle_ConnectAsyncCore_d_26 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6E740, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_9, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult___Boxed * __this, ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Int32_ awaiter, ManagedWebSocket_EnsureBufferContainsAsync_d_71 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6E8B0, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_10, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult___Boxed * __this, ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Int32_ awaiter, ManagedWebSocket_WaitForServerToCloseConnectionAsync_d_63 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6EA30, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_11, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult___Boxed * __this, ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Int32_ awaiter, Stream_CopyToAsyncInternal_d_28 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C69FB0, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_12, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult___Boxed * __this, ForceAsyncAwaiter awaiter, CryptoStream_WriteAsyncInternal_d_46 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6EBC0, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_13, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult___Boxed * __this, Object * awaiter, Object * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6ED00, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_14, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult___Boxed * __this, TaskAwaiter awaiter, BoltCore_ShutdownProcedure_d_107 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C69C00, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_15, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult___Boxed * __this, TaskAwaiter awaiter, CryptoStream_WriteAsyncInternal_d_46 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6ED00, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_16, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult___Boxed * __this, TaskAwaiter awaiter, WebRequestStream_Initialize_d_36 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6EF00, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_17, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult___Boxed * __this, TaskAwaiter awaiter, WebRequestStream_WriteAsyncInner_d_33 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6F110, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_18, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult___Boxed * __this, TaskAwaiter awaiter, WebRequestStream_WriteRequestAsync_d_38 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6F310, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_19, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult___Boxed * __this, ValueTaskAwaiter awaiter, CryptoStream_WriteAsyncCore_d_49 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C69390, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_20, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult___Boxed * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter awaiter, AsyncProtocolRequest_ProcessOperation_d_24 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C695B0, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_21, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult___Boxed * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter awaiter, ClientWebSocket_ConnectAsyncCore_d_16 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C69390, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_22, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult___Boxed * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter awaiter, ManagedWebSocket_CloseAsyncPrivate_d_68 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C695B0, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_23, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult___Boxed * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter awaiter, ManagedWebSocket_CloseWithReceiveErrorAndThrowAsync_d_66 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C68E40, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_24, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult___Boxed * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter awaiter, ManagedWebSocket_HandleReceivedCloseAsync_d_62 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C68E40, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_25, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult___Boxed * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter awaiter, ManagedWebSocket_HandleReceivedPingPongAsync_d_64 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C68E40, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_26, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult___Boxed * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter awaiter, ManagedWebSocket_SendCloseFrameAsync_d_69 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6F4F0, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_27, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult___Boxed * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter awaiter, ManagedWebSocket_SendFrameFallbackAsync_d_56 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C695B0, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_28, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult___Boxed * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter awaiter, MobileAuthenticatedStream_InnerWrite_d_67 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C69390, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_29, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult___Boxed * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter awaiter, MonoChunkStream_FinishReading_d_8 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6F720, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_30, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult___Boxed * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter awaiter, Stream_FinishWriteAsync_d_57 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C697C0, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_31, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult___Boxed * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter awaiter, WebConnection_Connect_d_16 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C697C0, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_32, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult___Boxed * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter awaiter, WebConnectionTunnel_Initialize_d_42 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6F720, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_33, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult___Boxed * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter awaiter, WebRequestStream_FinishWriting_d_31 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C695B0, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_34, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult___Boxed * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter awaiter, WebRequestStream_Initialize_d_36 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C69390, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_35, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult___Boxed * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter awaiter, WebRequestStream_ProcessWrite_d_34 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C695B0, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_36, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult___Boxed * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter awaiter, WebRequestStream_SetHeadersAsync_d_37 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C697C0, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_37, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult___Boxed * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter awaiter, WebRequestStream_WriteAsyncInner_d_33 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C69390, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_38, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult___Boxed * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter awaiter, WebRequestStream_WriteChunkTrailer_d_40 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6F720, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_39, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult___Boxed * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter awaiter, WebRequestStream_WriteChunkTrailer_inner_d_39 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C67F90, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_40, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult___Boxed * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter awaiter, WebRequestStream_WriteRequestAsync_d_38 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C697C0, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_41, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult___Boxed * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter awaiter, WebSocket_SendWithArrayPoolAsync_d_16 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6E500, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_42, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult___Boxed * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter awaiter, WebSocketHandle_ConnectAsyncCore_d_26 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6F920, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_43, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult___Boxed * __this, ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter awaiter, ManagedWebSocket_HandleReceivedPingPongAsync_d_64 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6F920, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_44, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult___Boxed * __this, ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter awaiter, ManagedWebSocket_SendCloseFrameAsync_d_69 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6FAB0, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_45, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult___Boxed * __this, ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter awaiter, ManagedWebSocket_SendFrameFallbackAsync_d_56 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6FC50, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_46, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult___Boxed * __this, ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter awaiter, ManagedWebSocket_WaitForWriteTaskAsync_d_55 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6F920, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_47, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult___Boxed * __this, ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter awaiter, Stream_CopyToAsyncInternal_d_28 stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x012236C0, void, AsyncTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult__SetException, (AsyncTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, Exception * exception, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCADA0, AsyncTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult__SetException__MethodInfo); +DO_APP_FUNC(0x01223380, void, AsyncTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult__SetResult, (AsyncTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, ValueWebSocketReceiveResult result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCAE50, AsyncTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult__SetResult__MethodInfo); +DO_APP_FUNC(0x012235D0, void, AsyncTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult__SetResult_1, (AsyncTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, Task_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * completedTask, MethodInfo * method)); +DO_APP_FUNC(0x0121A110, void, AsyncTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult__SetStateMachine, (AsyncTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x0121A120, Task_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ *, AsyncTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult__get_Task, (AsyncTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C69390, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult_ * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Nullable_1_ * awaiter, AsyncProtocolRequest_ProcessOperation_d_24 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C697C0, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_1, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult_ * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_3__1 * awaiter, WebConnectionTunnel_Initialize_d_42 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C69390, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_2, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult_ * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32_ * awaiter, MonoChunkStream_FinishReading_d_8 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C67F90, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_3, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult_ * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32_ * awaiter, WebResponseStream_InitReadAsync_d_52 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C67F90, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_4, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult_ * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ * awaiter, MobileAuthenticatedStream_ProcessAuthentication_d_48 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C697C0, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_5, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult_ * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ * awaiter, ServicePointScheduler_RunScheduler_d_32 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C69390, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_6, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult_ * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ * awaiter, WebRequestStream_WriteChunkTrailer_d_40 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C68C20, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_7, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult_ * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ * awaiter, WebResponseStream_ReadAllAsync_d_48 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6E500, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_8, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult_ * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ * awaiter, WebSocketHandle_ConnectAsyncCore_d_26 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6E740, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_9, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult_ * __this, ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Int32_ * awaiter, ManagedWebSocket_EnsureBufferContainsAsync_d_71 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6E8B0, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_10, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult_ * __this, ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Int32_ * awaiter, ManagedWebSocket_WaitForServerToCloseConnectionAsync_d_63 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6EA30, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_11, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult_ * __this, ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Int32_ * awaiter, Stream_CopyToAsyncInternal_d_28 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C69FB0, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_12, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult_ * __this, ForceAsyncAwaiter * awaiter, CryptoStream_WriteAsyncInternal_d_46 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6EBC0, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_13, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult_ * __this, Object * * awaiter, Object * * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6ED00, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_14, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult_ * __this, TaskAwaiter * awaiter, BoltCore_ShutdownProcedure_d_107 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C69C00, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_15, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult_ * __this, TaskAwaiter * awaiter, CryptoStream_WriteAsyncInternal_d_46 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6ED00, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_16, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult_ * __this, TaskAwaiter * awaiter, WebRequestStream_Initialize_d_36 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6EF00, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_17, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult_ * __this, TaskAwaiter * awaiter, WebRequestStream_WriteAsyncInner_d_33 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6F110, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_18, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult_ * __this, TaskAwaiter * awaiter, WebRequestStream_WriteRequestAsync_d_38 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6F310, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_19, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult_ * __this, ValueTaskAwaiter * awaiter, CryptoStream_WriteAsyncCore_d_49 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C69390, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_20, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult_ * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * awaiter, AsyncProtocolRequest_ProcessOperation_d_24 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C695B0, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_21, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult_ * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * awaiter, ClientWebSocket_ConnectAsyncCore_d_16 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C69390, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_22, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult_ * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * awaiter, ManagedWebSocket_CloseAsyncPrivate_d_68 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C695B0, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_23, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult_ * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * awaiter, ManagedWebSocket_CloseWithReceiveErrorAndThrowAsync_d_66 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C68E40, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_24, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult_ * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * awaiter, ManagedWebSocket_HandleReceivedCloseAsync_d_62 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C68E40, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_25, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult_ * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * awaiter, ManagedWebSocket_HandleReceivedPingPongAsync_d_64 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C68E40, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_26, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult_ * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * awaiter, ManagedWebSocket_SendCloseFrameAsync_d_69 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6F4F0, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_27, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult_ * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * awaiter, ManagedWebSocket_SendFrameFallbackAsync_d_56 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C695B0, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_28, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult_ * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * awaiter, MobileAuthenticatedStream_InnerWrite_d_67 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C69390, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_29, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult_ * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * awaiter, MonoChunkStream_FinishReading_d_8 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6F720, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_30, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult_ * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * awaiter, Stream_FinishWriteAsync_d_57 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C697C0, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_31, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult_ * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * awaiter, WebConnection_Connect_d_16 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C697C0, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_32, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult_ * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * awaiter, WebConnectionTunnel_Initialize_d_42 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6F720, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_33, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult_ * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * awaiter, WebRequestStream_FinishWriting_d_31 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C695B0, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_34, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult_ * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * awaiter, WebRequestStream_Initialize_d_36 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C69390, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_35, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult_ * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * awaiter, WebRequestStream_ProcessWrite_d_34 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C695B0, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_36, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult_ * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * awaiter, WebRequestStream_SetHeadersAsync_d_37 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C697C0, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_37, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult_ * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * awaiter, WebRequestStream_WriteAsyncInner_d_33 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C69390, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_38, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult_ * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * awaiter, WebRequestStream_WriteChunkTrailer_d_40 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6F720, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_39, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult_ * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * awaiter, WebRequestStream_WriteChunkTrailer_inner_d_39 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C67F90, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_40, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult_ * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * awaiter, WebRequestStream_WriteRequestAsync_d_38 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C697C0, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_41, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult_ * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * awaiter, WebSocket_SendWithArrayPoolAsync_d_16 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6E500, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_42, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult_ * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * awaiter, WebSocketHandle_ConnectAsyncCore_d_26 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6F920, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_43, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult_ * __this, ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter * awaiter, ManagedWebSocket_HandleReceivedPingPongAsync_d_64 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6F920, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_44, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult_ * __this, ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter * awaiter, ManagedWebSocket_SendCloseFrameAsync_d_69 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6FAB0, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_45, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult_ * __this, ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter * awaiter, ManagedWebSocket_SendFrameFallbackAsync_d_56 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6FC50, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_46, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult_ * __this, ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter * awaiter, ManagedWebSocket_WaitForWriteTaskAsync_d_55 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6F920, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__AwaitUnsafeOnCompleted_47, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult_ * __this, ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter * awaiter, Stream_CopyToAsyncInternal_d_28 * stateMachine, MethodInfo * method)); DO_APP_FUNC(0x01225B60, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0121A100, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult_, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__Create, (MethodInfo * method)); DO_APP_FUNC(0x01224D40, Task_1_VoidTaskResult_ *, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__GetTaskForResult, (VoidTaskResult result, MethodInfo * method)); -DO_APP_FUNC(0x01224B60, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__SetException, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult___Boxed * __this, Exception * exception, MethodInfo * method)); -DO_APP_FUNC(0x01224820, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__SetResult, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult___Boxed * __this, VoidTaskResult result, MethodInfo * method)); -DO_APP_FUNC(0x01224A70, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__SetResult_1, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult___Boxed * __this, Task_1_VoidTaskResult_ * completedTask, MethodInfo * method)); +DO_APP_FUNC(0x01224B60, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__SetException, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult_ * __this, Exception * exception, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCAD88, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__SetException__MethodInfo); +DO_APP_FUNC(0x01224820, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__SetResult, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult_ * __this, VoidTaskResult result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCAD80, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__SetResult__MethodInfo); +DO_APP_FUNC(0x01224A70, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__SetResult_1, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult_ * __this, Task_1_VoidTaskResult_ * completedTask, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA8798, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__SetResult_1__MethodInfo); -DO_APP_FUNC(0x0121A110, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__SetStateMachine, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult___Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x0121A110, void, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__SetStateMachine, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult_ * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA8778, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__SetStateMachine__MethodInfo); -DO_APP_FUNC(0x0121A120, Task_1_VoidTaskResult_ *, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__get_Task, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0121A120, Task_1_VoidTaskResult_ *, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__get_Task, (AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA8788, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult__get_Task__MethodInfo); -DO_APP_FUNC(0x00C6FDD0, void, AsyncValueTaskMethodBuilder_1_System_Int32__AwaitUnsafeOnCompleted, (AsyncValueTaskMethodBuilder_1_System_Int32___Boxed * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32_ awaiter, Stream_ReadAsync_g_FinishReadAsync_44_0_d stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6FE60, void, AsyncValueTaskMethodBuilder_1_System_Int32__Start, (AsyncValueTaskMethodBuilder_1_System_Int32___Boxed * __this, Stream_ReadAsync_g_FinishReadAsync_44_0_d stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6FDD0, void, AsyncValueTaskMethodBuilder_1_System_Int32__AwaitUnsafeOnCompleted, (AsyncValueTaskMethodBuilder_1_System_Int32_ * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32_ * awaiter, Stream_ReadAsync_g_FinishReadAsync_44_0_d * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEA40, AsyncValueTaskMethodBuilder_1_System_Int32__AwaitUnsafeOnCompleted__MethodInfo); +DO_APP_FUNC(0x00C6FE60, void, AsyncValueTaskMethodBuilder_1_System_Int32__Start, (AsyncValueTaskMethodBuilder_1_System_Int32_ * __this, Stream_ReadAsync_g_FinishReadAsync_44_0_d * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEAD0, AsyncValueTaskMethodBuilder_1_System_Int32__Start__MethodInfo); DO_APP_FUNC(0x01225CB0, AsyncValueTaskMethodBuilder_1_System_Int32_, AsyncValueTaskMethodBuilder_1_System_Int32__Create, (MethodInfo * method)); -DO_APP_FUNC(0x01225E00, void, AsyncValueTaskMethodBuilder_1_System_Int32__SetException, (AsyncValueTaskMethodBuilder_1_System_Int32___Boxed * __this, Exception * exception, MethodInfo * method)); -DO_APP_FUNC(0x01225D50, void, AsyncValueTaskMethodBuilder_1_System_Int32__SetResult, (AsyncValueTaskMethodBuilder_1_System_Int32___Boxed * __this, int32_t result, MethodInfo * method)); -DO_APP_FUNC(0x01225CC0, void, AsyncValueTaskMethodBuilder_1_System_Int32__SetStateMachine, (AsyncValueTaskMethodBuilder_1_System_Int32___Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x01225EA0, ValueTask_1_System_Int32_, AsyncValueTaskMethodBuilder_1_System_Int32__get_Task, (AsyncValueTaskMethodBuilder_1_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C6FEE0, void, AsyncValueTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted, (AsyncValueTaskMethodBuilder_1_System_Object___Boxed * __this, ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Int32_ awaiter, ManagedWebSocket_ReceiveAsyncPrivate_d_61_2_ManagedWebSocket_WebSocketReceiveResultGetter_System_Object_ stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C6FF70, void, AsyncValueTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted_1, (AsyncValueTaskMethodBuilder_1_System_Object___Boxed * __this, Object * awaiter, Object * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C70000, void, AsyncValueTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted_2, (AsyncValueTaskMethodBuilder_1_System_Object___Boxed * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter awaiter, ManagedWebSocket_ReceiveAsyncPrivate_d_61_2_ManagedWebSocket_WebSocketReceiveResultGetter_System_Object_ stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C70090, void, AsyncValueTaskMethodBuilder_1_System_Object__Start, (AsyncValueTaskMethodBuilder_1_System_Object___Boxed * __this, ManagedWebSocket_ReceiveAsyncPrivate_d_61_2_ManagedWebSocket_WebSocketReceiveResultGetter_System_Object_ stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C70110, void, AsyncValueTaskMethodBuilder_1_System_Object__Start_1, (AsyncValueTaskMethodBuilder_1_System_Object___Boxed * __this, Object * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEAD8, AsyncValueTaskMethodBuilder_1_System_Int32__Create__MethodInfo); +DO_APP_FUNC(0x01225E00, void, AsyncValueTaskMethodBuilder_1_System_Int32__SetException, (AsyncValueTaskMethodBuilder_1_System_Int32_ * __this, Exception * exception, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE9D0, AsyncValueTaskMethodBuilder_1_System_Int32__SetException__MethodInfo); +DO_APP_FUNC(0x01225D50, void, AsyncValueTaskMethodBuilder_1_System_Int32__SetResult, (AsyncValueTaskMethodBuilder_1_System_Int32_ * __this, int32_t result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEA38, AsyncValueTaskMethodBuilder_1_System_Int32__SetResult__MethodInfo); +DO_APP_FUNC(0x01225CC0, void, AsyncValueTaskMethodBuilder_1_System_Int32__SetStateMachine, (AsyncValueTaskMethodBuilder_1_System_Int32_ * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE9C8, AsyncValueTaskMethodBuilder_1_System_Int32__SetStateMachine__MethodInfo); +DO_APP_FUNC(0x01225EA0, ValueTask_1_System_Int32_, AsyncValueTaskMethodBuilder_1_System_Int32__get_Task, (AsyncValueTaskMethodBuilder_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEAC8, AsyncValueTaskMethodBuilder_1_System_Int32__get_Task__MethodInfo); +DO_APP_FUNC(0x00C6FEE0, void, AsyncValueTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted, (AsyncValueTaskMethodBuilder_1_System_Object_ * __this, ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Int32_ * awaiter, ManagedWebSocket_ReceiveAsyncPrivate_d_61_2_ManagedWebSocket_WebSocketReceiveResultGetter_System_Object_ * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C6FF70, void, AsyncValueTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted_1, (AsyncValueTaskMethodBuilder_1_System_Object_ * __this, Object * * awaiter, Object * * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C70000, void, AsyncValueTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted_2, (AsyncValueTaskMethodBuilder_1_System_Object_ * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * awaiter, ManagedWebSocket_ReceiveAsyncPrivate_d_61_2_ManagedWebSocket_WebSocketReceiveResultGetter_System_Object_ * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C70090, void, AsyncValueTaskMethodBuilder_1_System_Object__Start, (AsyncValueTaskMethodBuilder_1_System_Object_ * __this, ManagedWebSocket_ReceiveAsyncPrivate_d_61_2_ManagedWebSocket_WebSocketReceiveResultGetter_System_Object_ * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C70110, void, AsyncValueTaskMethodBuilder_1_System_Object__Start_1, (AsyncValueTaskMethodBuilder_1_System_Object_ * __this, Object * * stateMachine, MethodInfo * method)); DO_APP_FUNC(0x01226010, AsyncValueTaskMethodBuilder_1_System_Object_, AsyncValueTaskMethodBuilder_1_System_Object__Create, (MethodInfo * method)); -DO_APP_FUNC(0x01226130, void, AsyncValueTaskMethodBuilder_1_System_Object__SetException, (AsyncValueTaskMethodBuilder_1_System_Object___Boxed * __this, Exception * exception, MethodInfo * method)); -DO_APP_FUNC(0x01226030, void, AsyncValueTaskMethodBuilder_1_System_Object__SetResult, (AsyncValueTaskMethodBuilder_1_System_Object___Boxed * __this, Object * result, MethodInfo * method)); -DO_APP_FUNC(0x01225CC0, void, AsyncValueTaskMethodBuilder_1_System_Object__SetStateMachine, (AsyncValueTaskMethodBuilder_1_System_Object___Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x012261D0, ValueTask_1_System_Object_, AsyncValueTaskMethodBuilder_1_System_Object__get_Task, (AsyncValueTaskMethodBuilder_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C70190, void, AsyncValueTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult__AwaitUnsafeOnCompleted, (AsyncValueTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult___Boxed * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ awaiter, WebSocket_ReceiveAsync_d_14 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00C70220, void, AsyncValueTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult__Start, (AsyncValueTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult___Boxed * __this, WebSocket_ReceiveAsync_d_14 stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x01226130, void, AsyncValueTaskMethodBuilder_1_System_Object__SetException, (AsyncValueTaskMethodBuilder_1_System_Object_ * __this, Exception * exception, MethodInfo * method)); +DO_APP_FUNC(0x01226030, void, AsyncValueTaskMethodBuilder_1_System_Object__SetResult, (AsyncValueTaskMethodBuilder_1_System_Object_ * __this, Object * result, MethodInfo * method)); +DO_APP_FUNC(0x01225CC0, void, AsyncValueTaskMethodBuilder_1_System_Object__SetStateMachine, (AsyncValueTaskMethodBuilder_1_System_Object_ * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x012261D0, ValueTask_1_System_Object_, AsyncValueTaskMethodBuilder_1_System_Object__get_Task, (AsyncValueTaskMethodBuilder_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C70190, void, AsyncValueTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult__AwaitUnsafeOnCompleted, (AsyncValueTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ * awaiter, WebSocket_ReceiveAsync_d_14 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00C70220, void, AsyncValueTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult__Start, (AsyncValueTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, WebSocket_ReceiveAsync_d_14 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25240, AsyncValueTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult__Start__MethodInfo); DO_APP_FUNC(0x01226010, AsyncValueTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult_, AsyncValueTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult__Create, (MethodInfo * method)); -DO_APP_FUNC(0x01226400, void, AsyncValueTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult__SetException, (AsyncValueTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult___Boxed * __this, Exception * exception, MethodInfo * method)); -DO_APP_FUNC(0x01226340, void, AsyncValueTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult__SetResult, (AsyncValueTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult___Boxed * __this, ValueWebSocketReceiveResult result, MethodInfo * method)); -DO_APP_FUNC(0x01225CC0, void, AsyncValueTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult__SetStateMachine, (AsyncValueTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult___Boxed * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x012264A0, ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult_, AsyncValueTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult__get_Task, (AsyncValueTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25248, AsyncValueTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult__Create__MethodInfo); +DO_APP_FUNC(0x01226400, void, AsyncValueTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult__SetException, (AsyncValueTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, Exception * exception, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D251B8, AsyncValueTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult__SetException__MethodInfo); +DO_APP_FUNC(0x01226340, void, AsyncValueTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult__SetResult, (AsyncValueTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, ValueWebSocketReceiveResult result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D251D0, AsyncValueTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult__SetResult__MethodInfo); +DO_APP_FUNC(0x01225CC0, void, AsyncValueTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult__SetStateMachine, (AsyncValueTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, IAsyncStateMachine * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D251B0, AsyncValueTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult__SetStateMachine__MethodInfo); +DO_APP_FUNC(0x012264A0, ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult_, AsyncValueTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult__get_Task, (AsyncValueTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25238, AsyncValueTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult__get_Task__MethodInfo); DO_APP_FUNC(0x01226E90, void, BaseClientCollection_1_System_Nullable_1___ctor, (BaseClientCollection_1_System_Nullable_1_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012282E0, void, BaseClientCollection_1_System_Nullable_1__ClearRooms, (BaseClientCollection_1_System_Nullable_1_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01227E30, void, BaseClientCollection_1_System_Nullable_1__GetClients, (BaseClientCollection_1_System_Nullable_1_ * __this, List_1_Dissonance_Networking_ClientInfo_1_ * output, MethodInfo * method)); DO_APP_FUNC(0x012277B0, ClientInfo_1_System_Nullable_1_ *, BaseClientCollection_1_System_Nullable_1__GetOrCreateClientInfo, (BaseClientCollection_1_System_Nullable_1_ * __this, uint16_t id, String * name, CodecSettings codecSettings, Nullable_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ connection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCACD0, BaseClientCollection_1_System_Nullable_1__GetOrCreateClientInfo__MethodInfo); DO_APP_FUNC(0x01228370, void, BaseClientCollection_1_System_Nullable_1__JoinRoom, (BaseClientCollection_1_System_Nullable_1_ * __this, String * room, ClientInfo_1_System_Nullable_1_ * client, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCAD08, BaseClientCollection_1_System_Nullable_1__JoinRoom__MethodInfo); DO_APP_FUNC(0x012284E0, void, BaseClientCollection_1_System_Nullable_1__LeaveRoom, (BaseClientCollection_1_System_Nullable_1_ * __this, String * room, ClientInfo_1_System_Nullable_1_ * client, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCAC98, BaseClientCollection_1_System_Nullable_1__LeaveRoom__MethodInfo); DO_APP_FUNC(0x01227750, void, BaseClientCollection_1_System_Nullable_1__OnAddedClient, (BaseClientCollection_1_System_Nullable_1_ * __this, ClientInfo_1_System_Nullable_1_ * client, MethodInfo * method)); DO_APP_FUNC(0x01228310, void, BaseClientCollection_1_System_Nullable_1__OnClientEnteredRoom, (BaseClientCollection_1_System_Nullable_1_ * __this, ClientInfo_1_System_Nullable_1_ * client, String * room, MethodInfo * method)); DO_APP_FUNC(0x01228340, void, BaseClientCollection_1_System_Nullable_1__OnClientExitedRoom, (BaseClientCollection_1_System_Nullable_1_ * __this, ClientInfo_1_System_Nullable_1_ * client, String * room, MethodInfo * method)); DO_APP_FUNC(0x01227780, void, BaseClientCollection_1_System_Nullable_1__OnRemovedClient, (BaseClientCollection_1_System_Nullable_1_ * __this, ClientInfo_1_System_Nullable_1_ * client, MethodInfo * method)); -DO_APP_FUNC(0x01228650, void, BaseClientCollection_1_System_Nullable_1__ProcessClientState, (BaseClientCollection_1_System_Nullable_1_ * __this, Nullable_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ source, PacketReader reader, MethodInfo * method)); -DO_APP_FUNC(0x01228A60, void, BaseClientCollection_1_System_Nullable_1__ProcessDeltaChannelState, (BaseClientCollection_1_System_Nullable_1_ * __this, PacketReader reader, MethodInfo * method)); +DO_APP_FUNC(0x01228650, void, BaseClientCollection_1_System_Nullable_1__ProcessClientState, (BaseClientCollection_1_System_Nullable_1_ * __this, Nullable_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ source, PacketReader * reader, MethodInfo * method)); +DO_APP_FUNC(0x01228A60, void, BaseClientCollection_1_System_Nullable_1__ProcessDeltaChannelState, (BaseClientCollection_1_System_Nullable_1_ * __this, PacketReader * reader, MethodInfo * method)); DO_APP_FUNC(0x012279C0, void, BaseClientCollection_1_System_Nullable_1__RemoveClient, (BaseClientCollection_1_System_Nullable_1_ * __this, ClientInfo_1_System_Nullable_1_ * client, MethodInfo * method)); DO_APP_FUNC(0x012272B0, void, BaseClientCollection_1_System_Nullable_1__Stop, (BaseClientCollection_1_System_Nullable_1_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x01228010, bool, BaseClientCollection_1_System_Nullable_1__TryFindClientByConnection, (BaseClientCollection_1_System_Nullable_1_ * __this, Nullable_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ connection, ClientInfo_1_System_Nullable_1_ * info, MethodInfo * method)); -DO_APP_FUNC(0x01227CA0, bool, BaseClientCollection_1_System_Nullable_1__TryGetClientInfoById, (BaseClientCollection_1_System_Nullable_1_ * __this, uint16_t player, ClientInfo_1_System_Nullable_1_ * info, MethodInfo * method)); -DO_APP_FUNC(0x01227CF0, bool, BaseClientCollection_1_System_Nullable_1__TryGetClientInfoByName, (BaseClientCollection_1_System_Nullable_1_ * __this, String * name, ClientInfo_1_System_Nullable_1_ * info, MethodInfo * method)); +DO_APP_FUNC(0x01228010, bool, BaseClientCollection_1_System_Nullable_1__TryFindClientByConnection, (BaseClientCollection_1_System_Nullable_1_ * __this, Nullable_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ connection, ClientInfo_1_System_Nullable_1_ * * info, MethodInfo * method)); +DO_APP_FUNC(0x01227CA0, bool, BaseClientCollection_1_System_Nullable_1__TryGetClientInfoById, (BaseClientCollection_1_System_Nullable_1_ * __this, uint16_t player, ClientInfo_1_System_Nullable_1_ * * info, MethodInfo * method)); +DO_APP_FUNC(0x01227CF0, bool, BaseClientCollection_1_System_Nullable_1__TryGetClientInfoByName, (BaseClientCollection_1_System_Nullable_1_ * __this, String * name, ClientInfo_1_System_Nullable_1_ * * info, MethodInfo * method)); DO_APP_FUNC(0x01227D90, bool, BaseClientCollection_1_System_Nullable_1__TryGetClientsInRoom, (BaseClientCollection_1_System_Nullable_1_ * __this, String * room, List_1_Dissonance_Networking_ClientInfo_1_ * output, MethodInfo * method)); DO_APP_FUNC(0x01227DE0, bool, BaseClientCollection_1_System_Nullable_1__TryGetClientsInRoom_1, (BaseClientCollection_1_System_Nullable_1_ * __this, uint16_t roomId, List_1_Dissonance_Networking_ClientInfo_1_ * output, MethodInfo * method)); DO_APP_FUNC(0x01226A50, void, BaseClientCollection_1_System_Nullable_1__add_OnClientEnteredRoomEvent, (BaseClientCollection_1_System_Nullable_1_ * __this, Action_2_Dissonance_Networking_ClientInfo_1_String_ * value, MethodInfo * method)); @@ -126710,23 +140108,26 @@ DO_APP_FUNC(0x01226720, void, BaseClientCollection_1_System_Nullable_1__remove_O DO_APP_FUNC(0x01226940, void, BaseClientCollection_1_System_Nullable_1__remove_OnClientLeft, (BaseClientCollection_1_System_Nullable_1_ * __this, Action_1_Dissonance_Networking_ClientInfo_1_ * value, MethodInfo * method)); DO_APP_FUNC(0x01228CD0, void, BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer___ctor, (BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012282E0, void, BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__ClearRooms, (BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x01227E30, void, BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__GetClients, (BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, List_1_Dissonance_Networking_ClientInfo_1__1 * output, MethodInfo * method)); +DO_APP_FUNC(0x01227E30, void, BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__GetClients, (BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, List_1_Dissonance_Networking_ClientInfo_1__2 * output, MethodInfo * method)); DO_APP_FUNC(0x01229590, ClientInfo_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ *, BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__GetOrCreateClientInfo, (BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, uint16_t id, String * name, CodecSettings codecSettings, BoltPeer connection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCAC68, BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__GetOrCreateClientInfo__MethodInfo); DO_APP_FUNC(0x01229D50, void, BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__JoinRoom, (BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, String * room, ClientInfo_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * client, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCAC78, BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__JoinRoom__MethodInfo); DO_APP_FUNC(0x01229EC0, void, BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__LeaveRoom, (BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, String * room, ClientInfo_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * client, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCAC88, BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__LeaveRoom__MethodInfo); DO_APP_FUNC(0x01227750, void, BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__OnAddedClient, (BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, ClientInfo_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * client, MethodInfo * method)); DO_APP_FUNC(0x01228310, void, BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__OnClientEnteredRoom, (BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, ClientInfo_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * client, String * room, MethodInfo * method)); DO_APP_FUNC(0x01228340, void, BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__OnClientExitedRoom, (BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, ClientInfo_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * client, String * room, MethodInfo * method)); DO_APP_FUNC(0x01227780, void, BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__OnRemovedClient, (BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, ClientInfo_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * client, MethodInfo * method)); -DO_APP_FUNC(0x0122A030, void, BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__ProcessClientState, (BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, BoltPeer source, PacketReader reader, MethodInfo * method)); -DO_APP_FUNC(0x0122A430, void, BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__ProcessDeltaChannelState, (BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, PacketReader reader, MethodInfo * method)); +DO_APP_FUNC(0x0122A030, void, BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__ProcessClientState, (BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, BoltPeer source, PacketReader * reader, MethodInfo * method)); +DO_APP_FUNC(0x0122A430, void, BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__ProcessDeltaChannelState, (BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, PacketReader * reader, MethodInfo * method)); DO_APP_FUNC(0x01229780, void, BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__RemoveClient, (BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, ClientInfo_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * client, MethodInfo * method)); DO_APP_FUNC(0x012290F0, void, BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__Stop, (BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x01229A60, bool, BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__TryFindClientByConnection, (BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, BoltPeer connection, ClientInfo_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * info, MethodInfo * method)); -DO_APP_FUNC(0x01227CA0, bool, BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__TryGetClientInfoById, (BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, uint16_t player, ClientInfo_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * info, MethodInfo * method)); -DO_APP_FUNC(0x01227CF0, bool, BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__TryGetClientInfoByName, (BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, String * name, ClientInfo_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * info, MethodInfo * method)); -DO_APP_FUNC(0x01227D90, bool, BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__TryGetClientsInRoom, (BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, String * room, List_1_Dissonance_Networking_ClientInfo_1__1 * output, MethodInfo * method)); -DO_APP_FUNC(0x01227DE0, bool, BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__TryGetClientsInRoom_1, (BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, uint16_t roomId, List_1_Dissonance_Networking_ClientInfo_1__1 * output, MethodInfo * method)); +DO_APP_FUNC(0x01229A60, bool, BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__TryFindClientByConnection, (BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, BoltPeer connection, ClientInfo_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * * info, MethodInfo * method)); +DO_APP_FUNC(0x01227CA0, bool, BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__TryGetClientInfoById, (BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, uint16_t player, ClientInfo_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * * info, MethodInfo * method)); +DO_APP_FUNC(0x01227CF0, bool, BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__TryGetClientInfoByName, (BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, String * name, ClientInfo_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * * info, MethodInfo * method)); +DO_APP_FUNC(0x01227D90, bool, BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__TryGetClientsInRoom, (BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, String * room, List_1_Dissonance_Networking_ClientInfo_1__2 * output, MethodInfo * method)); +DO_APP_FUNC(0x01227DE0, bool, BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__TryGetClientsInRoom_1, (BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, uint16_t roomId, List_1_Dissonance_Networking_ClientInfo_1__2 * output, MethodInfo * method)); DO_APP_FUNC(0x01226A50, void, BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__add_OnClientEnteredRoomEvent, (BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, Action_2_Dissonance_Networking_ClientInfo_1_String__1 * value, MethodInfo * method)); DO_APP_FUNC(0x01226C70, void, BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__add_OnClientExitedRoomEvent, (BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, Action_2_Dissonance_Networking_ClientInfo_1_String__1 * value, MethodInfo * method)); DO_APP_FUNC(0x01226610, void, BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__add_OnClientJoined, (BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, Action_1_Dissonance_Networking_ClientInfo_1__1 * value, MethodInfo * method)); @@ -126737,23 +140138,26 @@ DO_APP_FUNC(0x01226720, void, BaseClientCollection_1_Dissonance_Integrations_Pho DO_APP_FUNC(0x01226940, void, BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__remove_OnClientLeft, (BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, Action_1_Dissonance_Networking_ClientInfo_1__1 * value, MethodInfo * method)); DO_APP_FUNC(0x0122A700, void, BaseClientCollection_1_System_Object___ctor, (BaseClientCollection_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012282E0, void, BaseClientCollection_1_System_Object__ClearRooms, (BaseClientCollection_1_System_Object_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x01227E30, void, BaseClientCollection_1_System_Object__GetClients, (BaseClientCollection_1_System_Object_ * __this, List_1_Dissonance_Networking_ClientInfo_1__2 * output, MethodInfo * method)); +DO_APP_FUNC(0x01227E30, void, BaseClientCollection_1_System_Object__GetClients, (BaseClientCollection_1_System_Object_ * __this, List_1_Dissonance_Networking_ClientInfo_1__4 * output, MethodInfo * method)); DO_APP_FUNC(0x0122AFC0, ClientInfo_1_System_Object_ *, BaseClientCollection_1_System_Object__GetOrCreateClientInfo, (BaseClientCollection_1_System_Object_ * __this, uint16_t id, String * name, CodecSettings codecSettings, Object * connection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD2B8, BaseClientCollection_1_System_Object__GetOrCreateClientInfo__MethodInfo); DO_APP_FUNC(0x0122B730, void, BaseClientCollection_1_System_Object__JoinRoom, (BaseClientCollection_1_System_Object_ * __this, String * room, ClientInfo_1_System_Object_ * client, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD2B0, BaseClientCollection_1_System_Object__JoinRoom__MethodInfo); DO_APP_FUNC(0x0122B8A0, void, BaseClientCollection_1_System_Object__LeaveRoom, (BaseClientCollection_1_System_Object_ * __this, String * room, ClientInfo_1_System_Object_ * client, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD2A8, BaseClientCollection_1_System_Object__LeaveRoom__MethodInfo); DO_APP_FUNC(0x01227750, void, BaseClientCollection_1_System_Object__OnAddedClient, (BaseClientCollection_1_System_Object_ * __this, ClientInfo_1_System_Object_ * client, MethodInfo * method)); DO_APP_FUNC(0x01228310, void, BaseClientCollection_1_System_Object__OnClientEnteredRoom, (BaseClientCollection_1_System_Object_ * __this, ClientInfo_1_System_Object_ * client, String * room, MethodInfo * method)); DO_APP_FUNC(0x01228340, void, BaseClientCollection_1_System_Object__OnClientExitedRoom, (BaseClientCollection_1_System_Object_ * __this, ClientInfo_1_System_Object_ * client, String * room, MethodInfo * method)); DO_APP_FUNC(0x01227780, void, BaseClientCollection_1_System_Object__OnRemovedClient, (BaseClientCollection_1_System_Object_ * __this, ClientInfo_1_System_Object_ * client, MethodInfo * method)); -DO_APP_FUNC(0x0122BA10, void, BaseClientCollection_1_System_Object__ProcessClientState, (BaseClientCollection_1_System_Object_ * __this, Object * source, PacketReader reader, MethodInfo * method)); -DO_APP_FUNC(0x0122BE10, void, BaseClientCollection_1_System_Object__ProcessDeltaChannelState, (BaseClientCollection_1_System_Object_ * __this, PacketReader reader, MethodInfo * method)); +DO_APP_FUNC(0x0122BA10, void, BaseClientCollection_1_System_Object__ProcessClientState, (BaseClientCollection_1_System_Object_ * __this, Object * source, PacketReader * reader, MethodInfo * method)); +DO_APP_FUNC(0x0122BE10, void, BaseClientCollection_1_System_Object__ProcessDeltaChannelState, (BaseClientCollection_1_System_Object_ * __this, PacketReader * reader, MethodInfo * method)); DO_APP_FUNC(0x0122B1B0, void, BaseClientCollection_1_System_Object__RemoveClient, (BaseClientCollection_1_System_Object_ * __this, ClientInfo_1_System_Object_ * client, MethodInfo * method)); DO_APP_FUNC(0x0122AB20, void, BaseClientCollection_1_System_Object__Stop, (BaseClientCollection_1_System_Object_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x0122B490, bool, BaseClientCollection_1_System_Object__TryFindClientByConnection, (BaseClientCollection_1_System_Object_ * __this, Object * connection, ClientInfo_1_System_Object_ * info, MethodInfo * method)); -DO_APP_FUNC(0x01227CA0, bool, BaseClientCollection_1_System_Object__TryGetClientInfoById, (BaseClientCollection_1_System_Object_ * __this, uint16_t player, ClientInfo_1_System_Object_ * info, MethodInfo * method)); -DO_APP_FUNC(0x01227CF0, bool, BaseClientCollection_1_System_Object__TryGetClientInfoByName, (BaseClientCollection_1_System_Object_ * __this, String * name, ClientInfo_1_System_Object_ * info, MethodInfo * method)); -DO_APP_FUNC(0x01227D90, bool, BaseClientCollection_1_System_Object__TryGetClientsInRoom, (BaseClientCollection_1_System_Object_ * __this, String * room, List_1_Dissonance_Networking_ClientInfo_1__2 * output, MethodInfo * method)); -DO_APP_FUNC(0x01227DE0, bool, BaseClientCollection_1_System_Object__TryGetClientsInRoom_1, (BaseClientCollection_1_System_Object_ * __this, uint16_t roomId, List_1_Dissonance_Networking_ClientInfo_1__2 * output, MethodInfo * method)); +DO_APP_FUNC(0x0122B490, bool, BaseClientCollection_1_System_Object__TryFindClientByConnection, (BaseClientCollection_1_System_Object_ * __this, Object * connection, ClientInfo_1_System_Object_ * * info, MethodInfo * method)); +DO_APP_FUNC(0x01227CA0, bool, BaseClientCollection_1_System_Object__TryGetClientInfoById, (BaseClientCollection_1_System_Object_ * __this, uint16_t player, ClientInfo_1_System_Object_ * * info, MethodInfo * method)); +DO_APP_FUNC(0x01227CF0, bool, BaseClientCollection_1_System_Object__TryGetClientInfoByName, (BaseClientCollection_1_System_Object_ * __this, String * name, ClientInfo_1_System_Object_ * * info, MethodInfo * method)); +DO_APP_FUNC(0x01227D90, bool, BaseClientCollection_1_System_Object__TryGetClientsInRoom, (BaseClientCollection_1_System_Object_ * __this, String * room, List_1_Dissonance_Networking_ClientInfo_1__4 * output, MethodInfo * method)); +DO_APP_FUNC(0x01227DE0, bool, BaseClientCollection_1_System_Object__TryGetClientsInRoom_1, (BaseClientCollection_1_System_Object_ * __this, uint16_t roomId, List_1_Dissonance_Networking_ClientInfo_1__4 * output, MethodInfo * method)); DO_APP_FUNC(0x01226A50, void, BaseClientCollection_1_System_Object__add_OnClientEnteredRoomEvent, (BaseClientCollection_1_System_Object_ * __this, Action_2_Dissonance_Networking_ClientInfo_1_String__2 * value, MethodInfo * method)); DO_APP_FUNC(0x01226C70, void, BaseClientCollection_1_System_Object__add_OnClientExitedRoomEvent, (BaseClientCollection_1_System_Object_ * __this, Action_2_Dissonance_Networking_ClientInfo_1_String__2 * value, MethodInfo * method)); DO_APP_FUNC(0x01226610, void, BaseClientCollection_1_System_Object__add_OnClientJoined, (BaseClientCollection_1_System_Object_ * __this, Action_1_Dissonance_Networking_ClientInfo_1__2 * value, MethodInfo * method)); @@ -126763,7 +140167,8 @@ DO_APP_FUNC(0x01226D80, void, BaseClientCollection_1_System_Object__remove_OnCli DO_APP_FUNC(0x01226720, void, BaseClientCollection_1_System_Object__remove_OnClientJoined, (BaseClientCollection_1_System_Object_ * __this, Action_1_Dissonance_Networking_ClientInfo_1__2 * value, MethodInfo * method)); DO_APP_FUNC(0x01226940, void, BaseClientCollection_1_System_Object__remove_OnClientLeft, (BaseClientCollection_1_System_Object_ * __this, Action_1_Dissonance_Networking_ClientInfo_1__2 * value, MethodInfo * method)); DO_APP_FUNC(0x0122CEE0, void, BaseClient_3_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer___ctor, (BaseClient_3_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, ICommsNetworkState * network, MethodInfo * method)); -DO_APP_FUNC(0x0122F500, bool, BaseClient_3_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer__CheckSessionId, (BaseClient_3_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, PacketReader reader, MessageTypes__Enum type, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD298, BaseClient_3_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer___ctor__MethodInfo); +DO_APP_FUNC(0x0122F500, bool, BaseClient_3_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer__CheckSessionId, (BaseClient_3_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, PacketReader * reader, MessageTypes__Enum type, MethodInfo * method)); DO_APP_FUNC(0x0122E2F0, void, BaseClient_3_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer__Connected, (BaseClient_3_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0122E320, void, BaseClient_3_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer__Disconnect, (BaseClient_3_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01230550, void, BaseClient_3_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer__Dissonance_Networking_Client_IClient_TPeer__SendReliable, (BaseClient_3_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, ArraySegment_1_Byte_ packet, MethodInfo * method)); @@ -126821,6 +140226,7 @@ DO_APP_FUNC(0x01230610, Playable, TemplatedTimeline_6_TData_TClip_TMixer_TTrack_ DO_APP_FUNC(0x01231D70, void, BaseCommsNetwork_5_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit___ctor, (BaseCommsNetwork_5_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01232780, void, BaseCommsNetwork_5_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit__ChangeState, (BaseCommsNetwork_5_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit_ * __this, BaseCommsNetwork_5_TServer_TClient_TPeer_TClientParam_TServerParam_IState_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit_ * newState, MethodInfo * method)); DO_APP_FUNC(0x01232010, void, BaseCommsNetwork_5_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit__Dissonance_Networking_ICommsNetwork_Initialize, (BaseCommsNetwork_5_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit_ * __this, String * playerName, Rooms * rooms, PlayerChannels * playerChannels, RoomChannels * roomChannels, CodecSettings codecSettings, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD1B8, BaseCommsNetwork_5_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit__Dissonance_Networking_ICommsNetwork_Initialize__MethodInfo); DO_APP_FUNC(0x003AE050, void, BaseCommsNetwork_5_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit__Initialize, (BaseCommsNetwork_5_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01232340, void, BaseCommsNetwork_5_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit__LoadState, (BaseCommsNetwork_5_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01232410, void, BaseCommsNetwork_5_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit__OnDisable, (BaseCommsNetwork_5_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit_ * __this, MethodInfo * method)); @@ -126840,10 +140246,14 @@ DO_APP_FUNC(0x01232510, void, BaseCommsNetwork_5_System_Object_System_Object_Dis DO_APP_FUNC(0x01233760, void, BaseCommsNetwork_5_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit__SendText, (BaseCommsNetwork_5_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit_ * __this, String * data, ChannelType__Enum recipientType, String * recipientId, MethodInfo * method)); DO_APP_FUNC(0x012336E0, void, BaseCommsNetwork_5_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit__SendVoice, (BaseCommsNetwork_5_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit_ * __this, ArraySegment_1_Byte_ data, MethodInfo * method)); DO_APP_FUNC(0x01232B50, void, BaseCommsNetwork_5_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit__StartClient, (BaseCommsNetwork_5_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit_ * __this, Unit connectParams, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD1A8, BaseCommsNetwork_5_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit__StartClient__MethodInfo); DO_APP_FUNC(0x01232880, void, BaseCommsNetwork_5_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit__StartServer, (BaseCommsNetwork_5_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit_ * __this, Unit connectParams, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD1D8, BaseCommsNetwork_5_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit__StartServer__MethodInfo); DO_APP_FUNC(0x01232460, void, BaseCommsNetwork_5_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit__Stop, (BaseCommsNetwork_5_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01233180, void, BaseCommsNetwork_5_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit__StopClient, (BaseCommsNetwork_5_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD180, BaseCommsNetwork_5_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit__StopClient__MethodInfo); DO_APP_FUNC(0x012329B0, void, BaseCommsNetwork_5_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit__StopServer, (BaseCommsNetwork_5_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD188, BaseCommsNetwork_5_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit__StopServer__MethodInfo); DO_APP_FUNC(0x01232290, void, BaseCommsNetwork_5_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit__Update, (BaseCommsNetwork_5_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01230870, void, BaseCommsNetwork_5_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit__add_ModeChanged, (BaseCommsNetwork_5_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit_ * __this, Action_1_Dissonance_Networking_NetworkMode_ * value, MethodInfo * method)); DO_APP_FUNC(0x01231810, void, BaseCommsNetwork_5_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit__add_PlayerEnteredRoom, (BaseCommsNetwork_5_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit_ * __this, Action_1_Dissonance_Networking_RoomEvent_ * value, MethodInfo * method)); @@ -126897,6 +140307,7 @@ DO_APP_FUNC(0x01234260, void, BaseFieldTraits_2_System_Single_System_Object__Ini DO_APP_FUNC(0x012367C0, void, BaseField_1_System_Boolean___cctor, (MethodInfo * method)); DO_APP_FUNC(0x012353D0, void, BaseField_1_System_Boolean___ctor, (BaseField_1_System_Boolean_ * __this, String * label, MethodInfo * method)); DO_APP_FUNC(0x01235730, void, BaseField_1_System_Boolean___ctor_1, (BaseField_1_System_Boolean_ * __this, String * label, VisualElement * visualInput, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0790, BaseField_1_System_Boolean___ctor_1__MethodInfo); DO_APP_FUNC(0x01235D90, void, BaseField_1_System_Boolean__AlignLabel, (BaseField_1_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01236700, Rect, BaseField_1_System_Boolean__GetTooltipRect, (BaseField_1_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01235790, void, BaseField_1_System_Boolean__OnAttachToPanel, (BaseField_1_System_Boolean_ * __this, AttachToPanelEvent * e, MethodInfo * method)); @@ -126904,22 +140315,32 @@ DO_APP_FUNC(0x012359E0, void, BaseField_1_System_Boolean__OnCustomStyleResolved, DO_APP_FUNC(0x01235D70, void, BaseField_1_System_Boolean__OnInspectorFieldGeometryChanged, (BaseField_1_System_Boolean_ * __this, GeometryChangedEvent * e, MethodInfo * method)); DO_APP_FUNC(0x01236540, void, BaseField_1_System_Boolean__OnViewDataReady, (BaseField_1_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01236490, void, BaseField_1_System_Boolean__SetValueWithoutNotify, (BaseField_1_System_Boolean_ * __this, bool newValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE07A8, BaseField_1_System_Boolean__SetValueWithoutNotify__MethodInfo); DO_APP_FUNC(0x01236440, void, BaseField_1_System_Boolean__UpdateMixedValueContent, (BaseField_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD148, BaseField_1_System_Boolean__UpdateMixedValueContent__MethodInfo); DO_APP_FUNC(0x01234EA0, String *, BaseField_1_System_Boolean__get_label, (BaseField_1_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01234E30, Label *, BaseField_1_System_Boolean__get_labelElement, (BaseField_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE22F8, BaseField_1_System_Boolean__get_labelElement__MethodInfo); DO_APP_FUNC(0x01235200, Label *, BaseField_1_System_Boolean__get_mixedValueLabel, (BaseField_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0738, BaseField_1_System_Boolean__get_mixedValueLabel__MethodInfo); DO_APP_FUNC(0x01234C70, bool, BaseField_1_System_Boolean__get_rawValue, (BaseField_1_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012351F0, bool, BaseField_1_System_Boolean__get_showMixedValue, (BaseField_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0730, BaseField_1_System_Boolean__get_showMixedValue__MethodInfo); DO_APP_FUNC(0x01234C70, bool, BaseField_1_System_Boolean__get_value, (BaseField_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE22E0, BaseField_1_System_Boolean__get_value__MethodInfo); DO_APP_FUNC(0x01234540, VisualElement *, BaseField_1_System_Boolean__get_visualInput, (BaseField_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0778, BaseField_1_System_Boolean__get_visualInput__MethodInfo); DO_APP_FUNC(0x01234EF0, void, BaseField_1_System_Boolean__set_label, (BaseField_1_System_Boolean_ * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x01234E40, void, BaseField_1_System_Boolean__set_labelElement, (BaseField_1_System_Boolean_ * __this, Label * value, MethodInfo * method)); DO_APP_FUNC(0x0062C4B0, void, BaseField_1_System_Boolean__set_rawValue, (BaseField_1_System_Boolean_ * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x01234C80, void, BaseField_1_System_Boolean__set_value, (BaseField_1_System_Boolean_ * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2308, BaseField_1_System_Boolean__set_value__MethodInfo); DO_APP_FUNC(0x01234550, void, BaseField_1_System_Boolean__set_visualInput, (BaseField_1_System_Boolean_ * __this, VisualElement * value, MethodInfo * method)); DO_APP_FUNC(0x01239280, void, BaseField_1_System_Int32___cctor, (MethodInfo * method)); DO_APP_FUNC(0x01237FD0, void, BaseField_1_System_Int32___ctor, (BaseField_1_System_Int32_ * __this, String * label, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0568, BaseField_1_System_Int32___ctor__MethodInfo); DO_APP_FUNC(0x01235730, void, BaseField_1_System_Int32___ctor_1, (BaseField_1_System_Int32_ * __this, String * label, VisualElement * visualInput, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2130, BaseField_1_System_Int32___ctor_1__MethodInfo); DO_APP_FUNC(0x01238910, void, BaseField_1_System_Int32__AlignLabel, (BaseField_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01236700, Rect, BaseField_1_System_Int32__GetTooltipRect, (BaseField_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01238330, void, BaseField_1_System_Int32__OnAttachToPanel, (BaseField_1_System_Int32_ * __this, AttachToPanelEvent * e, MethodInfo * method)); @@ -126927,14 +140348,18 @@ DO_APP_FUNC(0x01238580, void, BaseField_1_System_Int32__OnCustomStyleResolved, ( DO_APP_FUNC(0x01235D70, void, BaseField_1_System_Int32__OnInspectorFieldGeometryChanged, (BaseField_1_System_Int32_ * __this, GeometryChangedEvent * e, MethodInfo * method)); DO_APP_FUNC(0x012390C0, void, BaseField_1_System_Int32__OnViewDataReady, (BaseField_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01239010, void, BaseField_1_System_Int32__SetValueWithoutNotify, (BaseField_1_System_Int32_ * __this, int32_t newValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE04A8, BaseField_1_System_Int32__SetValueWithoutNotify__MethodInfo); DO_APP_FUNC(0x01238FC0, void, BaseField_1_System_Int32__UpdateMixedValueContent, (BaseField_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD0E0, BaseField_1_System_Int32__UpdateMixedValueContent__MethodInfo); DO_APP_FUNC(0x01234EA0, String *, BaseField_1_System_Int32__get_label, (BaseField_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01234E30, Label *, BaseField_1_System_Int32__get_labelElement, (BaseField_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1A20, BaseField_1_System_Int32__get_labelElement__MethodInfo); DO_APP_FUNC(0x01237E00, Label *, BaseField_1_System_Int32__get_mixedValueLabel, (BaseField_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01237C40, int32_t, BaseField_1_System_Int32__get_rawValue, (BaseField_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012351F0, bool, BaseField_1_System_Int32__get_showMixedValue, (BaseField_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01237C40, int32_t, BaseField_1_System_Int32__get_value, (BaseField_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01234540, VisualElement *, BaseField_1_System_Int32__get_visualInput, (BaseField_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE21F0, BaseField_1_System_Int32__get_visualInput__MethodInfo); DO_APP_FUNC(0x01234EF0, void, BaseField_1_System_Int32__set_label, (BaseField_1_System_Int32_ * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x01234E40, void, BaseField_1_System_Int32__set_labelElement, (BaseField_1_System_Int32_ * __this, Label * value, MethodInfo * method)); DO_APP_FUNC(0x01237C50, void, BaseField_1_System_Int32__set_rawValue, (BaseField_1_System_Int32_ * __this, int32_t value, MethodInfo * method)); @@ -126951,6 +140376,7 @@ DO_APP_FUNC(0x01235D70, void, BaseField_1_System_Object__OnInspectorFieldGeometr DO_APP_FUNC(0x0123BC20, void, BaseField_1_System_Object__OnViewDataReady, (BaseField_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0123BB30, void, BaseField_1_System_Object__SetValueWithoutNotify, (BaseField_1_System_Object_ * __this, Object * newValue, MethodInfo * method)); DO_APP_FUNC(0x0123BAE0, void, BaseField_1_System_Object__UpdateMixedValueContent, (BaseField_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD0D8, BaseField_1_System_Object__UpdateMixedValueContent__MethodInfo); DO_APP_FUNC(0x01234EA0, String *, BaseField_1_System_Object__get_label, (BaseField_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01234E30, Label *, BaseField_1_System_Object__get_labelElement, (BaseField_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0123A920, Label *, BaseField_1_System_Object__get_mixedValueLabel, (BaseField_1_System_Object_ * __this, MethodInfo * method)); @@ -126974,13 +140400,16 @@ DO_APP_FUNC(0x01235D70, void, BaseField_1_System_Single__OnInspectorFieldGeometr DO_APP_FUNC(0x0123E6F0, void, BaseField_1_System_Single__OnViewDataReady, (BaseField_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0123E640, void, BaseField_1_System_Single__SetValueWithoutNotify, (BaseField_1_System_Single_ * __this, float newValue, MethodInfo * method)); DO_APP_FUNC(0x0123E5F0, void, BaseField_1_System_Single__UpdateMixedValueContent, (BaseField_1_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD0D0, BaseField_1_System_Single__UpdateMixedValueContent__MethodInfo); DO_APP_FUNC(0x01234EA0, String *, BaseField_1_System_Single__get_label, (BaseField_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01234E30, Label *, BaseField_1_System_Single__get_labelElement, (BaseField_1_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1B90, BaseField_1_System_Single__get_labelElement__MethodInfo); DO_APP_FUNC(0x0123D430, Label *, BaseField_1_System_Single__get_mixedValueLabel, (BaseField_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0123D260, float, BaseField_1_System_Single__get_rawValue, (BaseField_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012351F0, bool, BaseField_1_System_Single__get_showMixedValue, (BaseField_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0123D260, float, BaseField_1_System_Single__get_value, (BaseField_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01234540, VisualElement *, BaseField_1_System_Single__get_visualInput, (BaseField_1_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1B68, BaseField_1_System_Single__get_visualInput__MethodInfo); DO_APP_FUNC(0x01234EF0, void, BaseField_1_System_Single__set_label, (BaseField_1_System_Single_ * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x01234E40, void, BaseField_1_System_Single__set_labelElement, (BaseField_1_System_Single_ * __this, Label * value, MethodInfo * method)); DO_APP_FUNC(0x0123D270, void, BaseField_1_System_Single__set_rawValue, (BaseField_1_System_Single_ * __this, float value, MethodInfo * method)); @@ -126989,6 +140418,7 @@ DO_APP_FUNC(0x0123CB40, void, BaseField_1_System_Single__set_visualInput, (BaseF DO_APP_FUNC(0x01241410, void, BaseField_1_UnityEngine_Vector2___cctor, (MethodInfo * method)); DO_APP_FUNC(0x01240110, void, BaseField_1_UnityEngine_Vector2___ctor, (BaseField_1_UnityEngine_Vector2_ * __this, String * label, MethodInfo * method)); DO_APP_FUNC(0x01235730, void, BaseField_1_UnityEngine_Vector2___ctor_1, (BaseField_1_UnityEngine_Vector2_ * __this, String * label, VisualElement * visualInput, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFF78, BaseField_1_UnityEngine_Vector2___ctor_1__MethodInfo); DO_APP_FUNC(0x01240A50, void, BaseField_1_UnityEngine_Vector2__AlignLabel, (BaseField_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01236700, Rect, BaseField_1_UnityEngine_Vector2__GetTooltipRect, (BaseField_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01240470, void, BaseField_1_UnityEngine_Vector2__OnAttachToPanel, (BaseField_1_UnityEngine_Vector2_ * __this, AttachToPanelEvent * e, MethodInfo * method)); @@ -126996,18 +140426,26 @@ DO_APP_FUNC(0x012406C0, void, BaseField_1_UnityEngine_Vector2__OnCustomStyleReso DO_APP_FUNC(0x01235D70, void, BaseField_1_UnityEngine_Vector2__OnInspectorFieldGeometryChanged, (BaseField_1_UnityEngine_Vector2_ * __this, GeometryChangedEvent * e, MethodInfo * method)); DO_APP_FUNC(0x01241200, void, BaseField_1_UnityEngine_Vector2__OnViewDataReady, (BaseField_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01241150, void, BaseField_1_UnityEngine_Vector2__SetValueWithoutNotify, (BaseField_1_UnityEngine_Vector2_ * __this, Vector2 newValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFF68, BaseField_1_UnityEngine_Vector2__SetValueWithoutNotify__MethodInfo); DO_APP_FUNC(0x01241100, void, BaseField_1_UnityEngine_Vector2__UpdateMixedValueContent, (BaseField_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD090, BaseField_1_UnityEngine_Vector2__UpdateMixedValueContent__MethodInfo); DO_APP_FUNC(0x01234EA0, String *, BaseField_1_UnityEngine_Vector2__get_label, (BaseField_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01234E30, Label *, BaseField_1_UnityEngine_Vector2__get_labelElement, (BaseField_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFF80, BaseField_1_UnityEngine_Vector2__get_labelElement__MethodInfo); DO_APP_FUNC(0x0123FF40, Label *, BaseField_1_UnityEngine_Vector2__get_mixedValueLabel, (BaseField_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0123FD30, Vector2, BaseField_1_UnityEngine_Vector2__get_rawValue, (BaseField_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFEE8, BaseField_1_UnityEngine_Vector2__get_rawValue__MethodInfo); DO_APP_FUNC(0x012351F0, bool, BaseField_1_UnityEngine_Vector2__get_showMixedValue, (BaseField_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0123FD30, Vector2, BaseField_1_UnityEngine_Vector2__get_value, (BaseField_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFF30, BaseField_1_UnityEngine_Vector2__get_value__MethodInfo); DO_APP_FUNC(0x01234540, VisualElement *, BaseField_1_UnityEngine_Vector2__get_visualInput, (BaseField_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFE78, BaseField_1_UnityEngine_Vector2__get_visualInput__MethodInfo); DO_APP_FUNC(0x01234EF0, void, BaseField_1_UnityEngine_Vector2__set_label, (BaseField_1_UnityEngine_Vector2_ * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x01234E40, void, BaseField_1_UnityEngine_Vector2__set_labelElement, (BaseField_1_UnityEngine_Vector2_ * __this, Label * value, MethodInfo * method)); DO_APP_FUNC(0x0123FD50, void, BaseField_1_UnityEngine_Vector2__set_rawValue, (BaseField_1_UnityEngine_Vector2_ * __this, Vector2 value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFE80, BaseField_1_UnityEngine_Vector2__set_rawValue__MethodInfo); DO_APP_FUNC(0x0123FD60, void, BaseField_1_UnityEngine_Vector2__set_value, (BaseField_1_UnityEngine_Vector2_ * __this, Vector2 value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFF38, BaseField_1_UnityEngine_Vector2__set_value__MethodInfo); DO_APP_FUNC(0x0123F610, void, BaseField_1_UnityEngine_Vector2__set_visualInput, (BaseField_1_UnityEngine_Vector2_ * __this, VisualElement * value, MethodInfo * method)); DO_APP_FUNC(0x01242B10, void, BaseManager_2_System_Object_System_Object___ctor, (BaseManager_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BaseManager_2_System_Object_System_Object__Start, (BaseManager_2_System_Object_System_Object_ * __this, MethodInfo * method)); @@ -127044,33 +140482,59 @@ DO_APP_FUNC(0x003BCC40, bool, TemplatedTimeline_6_TData_TClip_TMixer_TTrack_TInt DO_APP_FUNC(0x01243440, void, TemplatedTimeline_6_TData_TClip_TMixer_TTrack_TIntermediate_TBinding_BaseMixer_System_Object_System_Object_System_Object_System_Object_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsDataContainer_DecalSettingsData_System_Object__set_Default, (TemplatedTimeline_6_TData_TClip_TMixer_TTrack_TIntermediate_TBinding_BaseMixer_System_Object_System_Object_System_Object_System_Object_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsDataContainer_DecalSettingsData_System_Object_ * __this, DecalSettingsDataContainer_DecalSettingsData value, MethodInfo * method)); DO_APP_FUNC(0x003BCC50, void, TemplatedTimeline_6_TData_TClip_TMixer_TTrack_TIntermediate_TBinding_BaseMixer_System_Object_System_Object_System_Object_System_Object_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsDataContainer_DecalSettingsData_System_Object__set_FirstFrameHappened, (TemplatedTimeline_6_TData_TClip_TMixer_TTrack_TIntermediate_TBinding_BaseMixer_System_Object_System_Object_System_Object_System_Object_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsDataContainer_DecalSettingsData_System_Object_ * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BaseMixer_1_System_Boolean___ctor, (BaseMixer_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D005D0, BaseMixer_1_System_Boolean___ctor__MethodInfo); DO_APP_FUNC(0x01243A90, void, BaseMixer_1_System_Boolean__Mix, (BaseMixer_1_System_Boolean_ * __this, float weight, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD018, BaseMixer_1_System_Boolean__Mix__MethodInfo); DO_APP_FUNC(0x01243B10, bool, BaseMixer_1_System_Boolean__Result, (BaseMixer_1_System_Boolean_ * __this, bool defaultValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCF98, BaseMixer_1_System_Boolean__Result__MethodInfo); DO_APP_FUNC(0x003BCD40, void, BaseMixer_1_System_Boolean__Start, (BaseMixer_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D005F0, BaseMixer_1_System_Boolean__Start__MethodInfo); DO_APP_FUNC(0x003AE050, void, BaseMixer_1_System_Object___ctor, (BaseMixer_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01243B90, void, BaseMixer_1_System_Object__Mix, (BaseMixer_1_System_Object_ * __this, float weight, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCF90, BaseMixer_1_System_Object__Mix__MethodInfo); DO_APP_FUNC(0x01243C10, Object *, BaseMixer_1_System_Object__Result, (BaseMixer_1_System_Object_ * __this, Object * defaultValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCFA8, BaseMixer_1_System_Object__Result__MethodInfo); DO_APP_FUNC(0x003BCD40, void, BaseMixer_1_System_Object__Start, (BaseMixer_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BaseMixer_1_System_Single___ctor, (BaseMixer_1_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00580, BaseMixer_1_System_Single___ctor__MethodInfo); DO_APP_FUNC(0x01243C90, void, BaseMixer_1_System_Single__Mix, (BaseMixer_1_System_Single_ * __this, float weight, float value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00808, BaseMixer_1_System_Single__Mix__MethodInfo); DO_APP_FUNC(0x01243D10, float, BaseMixer_1_System_Single__Result, (BaseMixer_1_System_Single_ * __this, float defaultValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D007E8, BaseMixer_1_System_Single__Result__MethodInfo); DO_APP_FUNC(0x003BCD40, void, BaseMixer_1_System_Single__Start, (BaseMixer_1_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D005C0, BaseMixer_1_System_Single__Start__MethodInfo); DO_APP_FUNC(0x003AE050, void, BaseMixer_1_UnityEngine_Vector2___ctor, (BaseMixer_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00548, BaseMixer_1_UnityEngine_Vector2___ctor__MethodInfo); DO_APP_FUNC(0x01243D90, void, BaseMixer_1_UnityEngine_Vector2__Mix, (BaseMixer_1_UnityEngine_Vector2_ * __this, float weight, Vector2 value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00710, BaseMixer_1_UnityEngine_Vector2__Mix__MethodInfo); DO_APP_FUNC(0x01243E10, Vector2, BaseMixer_1_UnityEngine_Vector2__Result, (BaseMixer_1_UnityEngine_Vector2_ * __this, Vector2 defaultValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D006F0, BaseMixer_1_UnityEngine_Vector2__Result__MethodInfo); DO_APP_FUNC(0x003BCD40, void, BaseMixer_1_UnityEngine_Vector2__Start, (BaseMixer_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00560, BaseMixer_1_UnityEngine_Vector2__Start__MethodInfo); DO_APP_FUNC(0x003AE050, void, BaseMixer_1_UnityEngine_Vector4___ctor, (BaseMixer_1_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00500, BaseMixer_1_UnityEngine_Vector4___ctor__MethodInfo); DO_APP_FUNC(0x01243E90, void, BaseMixer_1_UnityEngine_Vector4__Mix, (BaseMixer_1_UnityEngine_Vector4_ * __this, float weight, Vector4 value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCFA0, BaseMixer_1_UnityEngine_Vector4__Mix__MethodInfo); DO_APP_FUNC(0x01243F20, Vector4, BaseMixer_1_UnityEngine_Vector4__Result, (BaseMixer_1_UnityEngine_Vector4_ * __this, Vector4 defaultValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCFB8, BaseMixer_1_UnityEngine_Vector4__Result__MethodInfo); DO_APP_FUNC(0x003BCD40, void, BaseMixer_1_UnityEngine_Vector4__Start, (BaseMixer_1_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00538, BaseMixer_1_UnityEngine_Vector4__Start__MethodInfo); DO_APP_FUNC(0x003AE050, void, BaseMixer_1_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsDataContainer_DecalLayerChannelData___ctor, (BaseMixer_1_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsDataContainer_DecalLayerChannelData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D006D0, BaseMixer_1_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsDataContainer_DecalLayerChannelData___ctor__MethodInfo); DO_APP_FUNC(0x01243FC0, void, BaseMixer_1_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsDataContainer_DecalLayerChannelData__Mix, (BaseMixer_1_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsDataContainer_DecalLayerChannelData_ * __this, float weight, DecalSettingsDataContainer_DecalLayerChannelData value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00768, BaseMixer_1_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsDataContainer_DecalLayerChannelData__Mix__MethodInfo); DO_APP_FUNC(0x01244050, DecalSettingsDataContainer_DecalLayerChannelData, BaseMixer_1_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsDataContainer_DecalLayerChannelData__Result, (BaseMixer_1_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsDataContainer_DecalLayerChannelData_ * __this, DecalSettingsDataContainer_DecalLayerChannelData defaultValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00760, BaseMixer_1_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsDataContainer_DecalLayerChannelData__Result__MethodInfo); DO_APP_FUNC(0x003BCD40, void, BaseMixer_1_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsDataContainer_DecalLayerChannelData__Start, (BaseMixer_1_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsDataContainer_DecalLayerChannelData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00728, BaseMixer_1_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsDataContainer_DecalLayerChannelData__Start__MethodInfo); DO_APP_FUNC(0x003AE050, void, BaseMixer_1_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsDataContainer_DecalLayerData___ctor, (BaseMixer_1_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsDataContainer_DecalLayerData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00758, BaseMixer_1_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsDataContainer_DecalLayerData___ctor__MethodInfo); DO_APP_FUNC(0x012440F0, void, BaseMixer_1_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsDataContainer_DecalLayerData__Mix, (BaseMixer_1_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsDataContainer_DecalLayerData_ * __this, float weight, DecalSettingsDataContainer_DecalLayerData value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00800, BaseMixer_1_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsDataContainer_DecalLayerData__Mix__MethodInfo); DO_APP_FUNC(0x012441B0, DecalSettingsDataContainer_DecalLayerData, BaseMixer_1_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsDataContainer_DecalLayerData__Result, (BaseMixer_1_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsDataContainer_DecalLayerData_ * __this, DecalSettingsDataContainer_DecalLayerData defaultValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D007F0, BaseMixer_1_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsDataContainer_DecalLayerData__Result__MethodInfo); DO_APP_FUNC(0x003BCD40, void, BaseMixer_1_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsDataContainer_DecalLayerData__Start, (BaseMixer_1_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsDataContainer_DecalLayerData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00780, BaseMixer_1_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsDataContainer_DecalLayerData__Start__MethodInfo); DO_APP_FUNC(0x01245120, void, BaseProximityTrigger_1_System_Object___ctor, (BaseProximityTrigger_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012451B0, bool, BaseProximityTrigger_1_System_Object___OnValidate_b__21_0, (BaseProximityTrigger_1_System_Object_ * __this, VoiceProximityBroadcastTrigger * a, MethodInfo * method)); DO_APP_FUNC(0x01245290, bool, BaseProximityTrigger_1_System_Object___OnValidate_b__21_1, (BaseProximityTrigger_1_System_Object_ * __this, VoiceProximityReceiptTrigger * a, MethodInfo * method)); @@ -127119,9 +140583,11 @@ DO_APP_FUNC(0x01245370, bool, BaseProximityTrigger_1_RoomChannel__get_CanTrigger DO_APP_FUNC_METHODINFO(0x03C8EC78, BaseProximityTrigger_1_RoomChannel__get_CanTrigger__MethodInfo); DO_APP_FUNC(0x003C7400, int32_t, BaseProximityTrigger_1_RoomChannel__get_Range, (BaseProximityTrigger_1_RoomChannel_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7420, String *, BaseProximityTrigger_1_RoomChannel__get_RoomName, (BaseProximityTrigger_1_RoomChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCE78, BaseProximityTrigger_1_RoomChannel__get_RoomName__MethodInfo); DO_APP_FUNC(0x012442A0, float, BaseProximityTrigger_1_RoomChannel__get_Size, (BaseProximityTrigger_1_RoomChannel_ * __this, MethodInfo * method)); DO_APP_FUNC(0x004EC420, bool, BaseProximityTrigger_1_RoomChannel__get_UseColliderTrigger, (BaseProximityTrigger_1_RoomChannel_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012442B0, void, BaseProximityTrigger_1_RoomChannel__set_Range, (BaseProximityTrigger_1_RoomChannel_ * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCF68, BaseProximityTrigger_1_RoomChannel__set_Range__MethodInfo); DO_APP_FUNC(0x012442D0, void, BaseProximityTrigger_1_RoomChannel__set_RoomName, (BaseProximityTrigger_1_RoomChannel_ * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x004EC430, void, BaseProximityTrigger_1_RoomChannel__set_UseColliderTrigger, (BaseProximityTrigger_1_RoomChannel_ * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x01246AA0, void, BaseProximityTrigger_1_RoomMembership___ctor, (BaseProximityTrigger_1_RoomMembership_ * __this, MethodInfo * method)); @@ -127143,14 +140609,16 @@ DO_APP_FUNC(0x01244480, int32_t, BaseProximityTrigger_1_RoomMembership__get_Acti DO_APP_FUNC(0x01246030, bool, BaseProximityTrigger_1_RoomMembership__get_CanTrigger, (BaseProximityTrigger_1_RoomMembership_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7400, int32_t, BaseProximityTrigger_1_RoomMembership__get_Range, (BaseProximityTrigger_1_RoomMembership_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7420, String *, BaseProximityTrigger_1_RoomMembership__get_RoomName, (BaseProximityTrigger_1_RoomMembership_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCE88, BaseProximityTrigger_1_RoomMembership__get_RoomName__MethodInfo); DO_APP_FUNC(0x012442A0, float, BaseProximityTrigger_1_RoomMembership__get_Size, (BaseProximityTrigger_1_RoomMembership_ * __this, MethodInfo * method)); DO_APP_FUNC(0x004EC420, bool, BaseProximityTrigger_1_RoomMembership__get_UseColliderTrigger, (BaseProximityTrigger_1_RoomMembership_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012442B0, void, BaseProximityTrigger_1_RoomMembership__set_Range, (BaseProximityTrigger_1_RoomMembership_ * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCF78, BaseProximityTrigger_1_RoomMembership__set_Range__MethodInfo); DO_APP_FUNC(0x012442D0, void, BaseProximityTrigger_1_RoomMembership__set_RoomName, (BaseProximityTrigger_1_RoomMembership_ * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x004EC430, void, BaseProximityTrigger_1_RoomMembership__set_UseColliderTrigger, (BaseProximityTrigger_1_RoomMembership_ * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x01246CF0, void, BaseServer_3_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer___ctor, (BaseServer_3_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, BaseServer_3_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer__AddClient, (BaseServer_3_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, ClientInfo_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * client, MethodInfo * method)); -DO_APP_FUNC(0x01248510, bool, BaseServer_3_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer__CheckSessionId, (BaseServer_3_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, PacketReader reader, BoltPeer source, MethodInfo * method)); +DO_APP_FUNC(0x01248510, bool, BaseServer_3_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer__CheckSessionId, (BaseServer_3_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, PacketReader * reader, BoltPeer source, MethodInfo * method)); DO_APP_FUNC(0x01247770, void, BaseServer_3_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer__ClientDisconnected, (BaseServer_3_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, BoltPeer connection, MethodInfo * method)); DO_APP_FUNC(0x01247690, void, BaseServer_3_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer__Connect, (BaseServer_3_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012476F0, void, BaseServer_3_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer__Disconnect, (BaseServer_3_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); @@ -127162,7 +140630,9 @@ DO_APP_FUNC(0x0122E460, void, BaseServer_3_System_Object_System_Object_Dissonanc DO_APP_FUNC(0x01247E50, void, BaseServer_3_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer__NetworkReceivedPacket, (BaseServer_3_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, BoltPeer source, ArraySegment_1_Byte_ data, MethodInfo * method)); DO_APP_FUNC(0x01247880, bool, BaseServer_3_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer__RunUpdate, (BaseServer_3_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01247B50, void, BaseServer_3_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer__SendReliable, (BaseServer_3_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, List_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * connections, ArraySegment_1_Byte_ packet, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCD78, BaseServer_3_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer__SendReliable__MethodInfo); DO_APP_FUNC(0x01247950, void, BaseServer_3_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer__SendUnreliable, (BaseServer_3_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, List_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * connections, ArraySegment_1_Byte_ packet, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCDA0, BaseServer_3_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer__SendUnreliable__MethodInfo); DO_APP_FUNC(0x01247800, ServerState__Enum, BaseServer_3_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer__Update, (BaseServer_3_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3B0, TrafficCounter *, BaseServer_3_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer__get_RecvClientState, (BaseServer_3_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7320, TrafficCounter *, BaseServer_3_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer__get_RecvDeltaChannelState, (BaseServer_3_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); @@ -127173,19 +140643,23 @@ DO_APP_FUNC(0x003C91B0, IServerAdmin *, BaseServer_3_System_Object_System_Object DO_APP_FUNC(0x007209F0, uint32_t, BaseServer_3_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer__get_SessionId, (BaseServer_3_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0124CD70, void, BaseSlider_1_System_Int32___cctor, (MethodInfo * method)); DO_APP_FUNC(0x01249110, void, BaseSlider_1_System_Int32___ctor, (BaseSlider_1_System_Int32_ * __this, String * label, int32_t start, int32_t end, SliderDirection__Enum direction, float pageSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1A28, BaseSlider_1_System_Int32___ctor__MethodInfo); DO_APP_FUNC(0x0124B4C0, void, BaseSlider_1_System_Int32__AdjustDragElement, (BaseSlider_1_System_Int32_ * __this, float factor, MethodInfo * method)); DO_APP_FUNC(0x01248CA0, int32_t, BaseSlider_1_System_Int32__Clamp, (BaseSlider_1_System_Int32_ * __this, int32_t value, int32_t lowBound, int32_t highBound, MethodInfo * method)); DO_APP_FUNC(0x01249CB0, void, BaseSlider_1_System_Int32__ClampValue, (BaseSlider_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0124B060, void, BaseSlider_1_System_Int32__ComputeValueAndDirectionFromClick, (BaseSlider_1_System_Int32_ * __this, float sliderLength, float dragElementLength, float dragElementPos, float dragElementLastPos, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE18A0, BaseSlider_1_System_Int32__ComputeValueAndDirectionFromClick__MethodInfo); DO_APP_FUNC(0x0124A080, void, BaseSlider_1_System_Int32__ComputeValueAndDirectionFromDrag, (BaseSlider_1_System_Int32_ * __this, float sliderLength, float dragElementLength, float dragElementPos, MethodInfo * method)); DO_APP_FUNC(0x0124C1B0, void, BaseSlider_1_System_Int32__ExecuteDefaultAction, (BaseSlider_1_System_Int32_ * __this, EventBase * evt, MethodInfo * method)); DO_APP_FUNC(0x01248CC0, int32_t, BaseSlider_1_System_Int32__GetClampedValue, (BaseSlider_1_System_Int32_ * __this, int32_t newValue, MethodInfo * method)); DO_APP_FUNC(0x01249C40, float, BaseSlider_1_System_Int32__GetClosestPowerOfTen, (float positiveNumber, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE18D0, BaseSlider_1_System_Int32__GetClosestPowerOfTen__MethodInfo); DO_APP_FUNC(0x0124AD90, void, BaseSlider_1_System_Int32__OnKeyDown, (BaseSlider_1_System_Int32_ * __this, KeyDownEvent * evt, MethodInfo * method)); DO_APP_FUNC(0x0124CAE0, void, BaseSlider_1_System_Int32__OnTextFieldFocusOut, (BaseSlider_1_System_Int32_ * __this, FocusOutEvent * evt, MethodInfo * method)); DO_APP_FUNC(0x0124CB00, void, BaseSlider_1_System_Int32__OnTextFieldValueChange, (BaseSlider_1_System_Int32_ * __this, ChangeEvent_1_System_String_ * evt, MethodInfo * method)); DO_APP_FUNC(0x0124BA80, void, BaseSlider_1_System_Int32__OnViewDataReady, (BaseSlider_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01249C80, float, BaseSlider_1_System_Int32__RoundToMultipleOf, (float value, float roundingValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE18D8, BaseSlider_1_System_Int32__RoundToMultipleOf__MethodInfo); DO_APP_FUNC(0x0124BAE0, bool, BaseSlider_1_System_Int32__SameValues, (BaseSlider_1_System_Int32_ * __this, float a, float b, float epsilon, MethodInfo * method)); DO_APP_FUNC(0x01248AF0, void, BaseSlider_1_System_Int32__SetHighValueWithoutNotify, (BaseSlider_1_System_Int32_ * __this, int32_t newHighValue, MethodInfo * method)); DO_APP_FUNC(0x0124A1E0, void, BaseSlider_1_System_Int32__SetSliderValueFromClick, (BaseSlider_1_System_Int32_ * __this, MethodInfo * method)); @@ -127199,28 +140673,39 @@ DO_APP_FUNC(0x0124C8B0, void, BaseSlider_1_System_Int32__UpdateTextFieldValue, ( DO_APP_FUNC(0x0124C2F0, void, BaseSlider_1_System_Int32__UpdateTextFieldVisibility, (BaseSlider_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01248C20, bool, BaseSlider_1_System_Int32__get_clamped, (BaseSlider_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x004BBEC0, ClampedDragger_1_System_Int32_ *, BaseSlider_1_System_Int32__get_clampedDragger, (BaseSlider_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE18A8, BaseSlider_1_System_Int32__get_clampedDragger__MethodInfo); DO_APP_FUNC(0x01248F60, SliderDirection__Enum, BaseSlider_1_System_Int32__get_direction, (BaseSlider_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1880, BaseSlider_1_System_Int32__get_direction__MethodInfo); DO_APP_FUNC(0x012488D0, VisualElement *, BaseSlider_1_System_Int32__get_dragBorderElement, (BaseSlider_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01248800, VisualElement *, BaseSlider_1_System_Int32__get_dragContainer, (BaseSlider_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010EE670, VisualElement *, BaseSlider_1_System_Int32__get_dragElement, (BaseSlider_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01248A20, int32_t, BaseSlider_1_System_Int32__get_highValue, (BaseSlider_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1890, BaseSlider_1_System_Int32__get_highValue__MethodInfo); DO_APP_FUNC(0x012488E0, TextField *, BaseSlider_1_System_Int32__get_inputTextField, (BaseSlider_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012490D0, bool, BaseSlider_1_System_Int32__get_inverted, (BaseSlider_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1908, BaseSlider_1_System_Int32__get_inverted__MethodInfo); DO_APP_FUNC(0x01248950, int32_t, BaseSlider_1_System_Int32__get_lowValue, (BaseSlider_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1910, BaseSlider_1_System_Int32__get_lowValue__MethodInfo); DO_APP_FUNC(0x01248BC0, float, BaseSlider_1_System_Int32__get_pageSize, (BaseSlider_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE19D8, BaseSlider_1_System_Int32__get_pageSize__MethodInfo); DO_APP_FUNC(0x01248BE0, bool, BaseSlider_1_System_Int32__get_showInputField, (BaseSlider_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01248D90, int32_t, BaseSlider_1_System_Int32__get_value, (BaseSlider_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01248C30, void, BaseSlider_1_System_Int32__set_clamped, (BaseSlider_1_System_Int32_ * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x01248C40, void, BaseSlider_1_System_Int32__set_clampedDragger, (BaseSlider_1_System_Int32_ * __this, ClampedDragger_1_System_Int32_ * value, MethodInfo * method)); DO_APP_FUNC(0x01248F70, void, BaseSlider_1_System_Int32__set_direction, (BaseSlider_1_System_Int32_ * __this, SliderDirection__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1948, BaseSlider_1_System_Int32__set_direction__MethodInfo); DO_APP_FUNC(0x010EE680, void, BaseSlider_1_System_Int32__set_dragBorderElement, (BaseSlider_1_System_Int32_ * __this, VisualElement * value, MethodInfo * method)); DO_APP_FUNC(0x01248810, void, BaseSlider_1_System_Int32__set_dragContainer, (BaseSlider_1_System_Int32_ * __this, VisualElement * value, MethodInfo * method)); DO_APP_FUNC(0x01248870, void, BaseSlider_1_System_Int32__set_dragElement, (BaseSlider_1_System_Int32_ * __this, VisualElement * value, MethodInfo * method)); DO_APP_FUNC(0x01248A30, void, BaseSlider_1_System_Int32__set_highValue, (BaseSlider_1_System_Int32_ * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1950, BaseSlider_1_System_Int32__set_highValue__MethodInfo); DO_APP_FUNC(0x012488F0, void, BaseSlider_1_System_Int32__set_inputTextField, (BaseSlider_1_System_Int32_ * __this, TextField * value, MethodInfo * method)); DO_APP_FUNC(0x012490E0, void, BaseSlider_1_System_Int32__set_inverted, (BaseSlider_1_System_Int32_ * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1938, BaseSlider_1_System_Int32__set_inverted__MethodInfo); DO_APP_FUNC(0x01248960, void, BaseSlider_1_System_Int32__set_lowValue, (BaseSlider_1_System_Int32_ * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1940, BaseSlider_1_System_Int32__set_lowValue__MethodInfo); DO_APP_FUNC(0x01248BD0, void, BaseSlider_1_System_Int32__set_pageSize, (BaseSlider_1_System_Int32_ * __this, float value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE18C0, BaseSlider_1_System_Int32__set_pageSize__MethodInfo); DO_APP_FUNC(0x01248BF0, void, BaseSlider_1_System_Int32__set_showInputField, (BaseSlider_1_System_Int32_ * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x01248DD0, void, BaseSlider_1_System_Int32__set_value, (BaseSlider_1_System_Int32_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01251BD0, void, BaseSlider_1_System_Object___cctor, (MethodInfo * method)); @@ -127277,7 +140762,9 @@ DO_APP_FUNC(0x0124DC90, void, BaseSlider_1_System_Object__set_showInputField, (B DO_APP_FUNC(0x0124DF30, void, BaseSlider_1_System_Object__set_value, (BaseSlider_1_System_Object_ * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01256680, void, BaseSlider_1_System_Single___cctor, (MethodInfo * method)); DO_APP_FUNC(0x01252CF0, void, BaseSlider_1_System_Single___ctor, (BaseSlider_1_System_Single_ * __this, String * label, float start, float end, SliderDirection__Enum direction, float pageSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1B78, BaseSlider_1_System_Single___ctor__MethodInfo); DO_APP_FUNC(0x01255030, void, BaseSlider_1_System_Single__AdjustDragElement, (BaseSlider_1_System_Single_ * __this, float factor, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2048, BaseSlider_1_System_Single__AdjustDragElement__MethodInfo); DO_APP_FUNC(0x012529B0, float, BaseSlider_1_System_Single__Clamp, (BaseSlider_1_System_Single_ * __this, float value, float lowBound, float highBound, MethodInfo * method)); DO_APP_FUNC(0x01253830, void, BaseSlider_1_System_Single__ClampValue, (BaseSlider_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01254BE0, void, BaseSlider_1_System_Single__ComputeValueAndDirectionFromClick, (BaseSlider_1_System_Single_ * __this, float sliderLength, float dragElementLength, float dragElementPos, float dragElementLastPos, MethodInfo * method)); @@ -127285,13 +140772,16 @@ DO_APP_FUNC(0x01253C10, void, BaseSlider_1_System_Single__ComputeValueAndDirecti DO_APP_FUNC(0x01255C00, void, BaseSlider_1_System_Single__ExecuteDefaultAction, (BaseSlider_1_System_Single_ * __this, EventBase * evt, MethodInfo * method)); DO_APP_FUNC(0x01252A50, float, BaseSlider_1_System_Single__GetClampedValue, (BaseSlider_1_System_Single_ * __this, float newValue, MethodInfo * method)); DO_APP_FUNC(0x01249C40, float, BaseSlider_1_System_Single__GetClosestPowerOfTen, (float positiveNumber, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1958, BaseSlider_1_System_Single__GetClosestPowerOfTen__MethodInfo); DO_APP_FUNC(0x01254910, void, BaseSlider_1_System_Single__OnKeyDown, (BaseSlider_1_System_Single_ * __this, KeyDownEvent * evt, MethodInfo * method)); DO_APP_FUNC(0x0124CAE0, void, BaseSlider_1_System_Single__OnTextFieldFocusOut, (BaseSlider_1_System_Single_ * __this, FocusOutEvent * evt, MethodInfo * method)); DO_APP_FUNC(0x01256530, void, BaseSlider_1_System_Single__OnTextFieldValueChange, (BaseSlider_1_System_Single_ * __this, ChangeEvent_1_System_String_ * evt, MethodInfo * method)); DO_APP_FUNC(0x0124BA80, void, BaseSlider_1_System_Single__OnViewDataReady, (BaseSlider_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01249C80, float, BaseSlider_1_System_Single__RoundToMultipleOf, (float value, float roundingValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1960, BaseSlider_1_System_Single__RoundToMultipleOf__MethodInfo); DO_APP_FUNC(0x0124BAE0, bool, BaseSlider_1_System_Single__SameValues, (BaseSlider_1_System_Single_ * __this, float a, float b, float epsilon, MethodInfo * method)); DO_APP_FUNC(0x012528E0, void, BaseSlider_1_System_Single__SetHighValueWithoutNotify, (BaseSlider_1_System_Single_ * __this, float newHighValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB04B8, BaseSlider_1_System_Single__SetHighValueWithoutNotify__MethodInfo); DO_APP_FUNC(0x01253D60, void, BaseSlider_1_System_Single__SetSliderValueFromClick, (BaseSlider_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01253980, void, BaseSlider_1_System_Single__SetSliderValueFromDrag, (BaseSlider_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01252C10, void, BaseSlider_1_System_Single__SetValueWithoutNotify, (BaseSlider_1_System_Single_ * __this, float newValue, MethodInfo * method)); @@ -127303,27 +140793,37 @@ DO_APP_FUNC(0x01256300, void, BaseSlider_1_System_Single__UpdateTextFieldValue, DO_APP_FUNC(0x01255D40, void, BaseSlider_1_System_Single__UpdateTextFieldVisibility, (BaseSlider_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01248C20, bool, BaseSlider_1_System_Single__get_clamped, (BaseSlider_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x004BBEC0, ClampedDragger_1_System_Single_ *, BaseSlider_1_System_Single__get_clampedDragger, (BaseSlider_1_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1DA0, BaseSlider_1_System_Single__get_clampedDragger__MethodInfo); DO_APP_FUNC(0x01248F60, SliderDirection__Enum, BaseSlider_1_System_Single__get_direction, (BaseSlider_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012488D0, VisualElement *, BaseSlider_1_System_Single__get_dragBorderElement, (BaseSlider_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01248800, VisualElement *, BaseSlider_1_System_Single__get_dragContainer, (BaseSlider_1_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1978, BaseSlider_1_System_Single__get_dragContainer__MethodInfo); DO_APP_FUNC(0x010EE670, VisualElement *, BaseSlider_1_System_Single__get_dragElement, (BaseSlider_1_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1F78, BaseSlider_1_System_Single__get_dragElement__MethodInfo); DO_APP_FUNC(0x01252810, float, BaseSlider_1_System_Single__get_highValue, (BaseSlider_1_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2108, BaseSlider_1_System_Single__get_highValue__MethodInfo); DO_APP_FUNC(0x012488E0, TextField *, BaseSlider_1_System_Single__get_inputTextField, (BaseSlider_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012490D0, bool, BaseSlider_1_System_Single__get_inverted, (BaseSlider_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01252740, float, BaseSlider_1_System_Single__get_lowValue, (BaseSlider_1_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE20D0, BaseSlider_1_System_Single__get_lowValue__MethodInfo); DO_APP_FUNC(0x01248BC0, float, BaseSlider_1_System_Single__get_pageSize, (BaseSlider_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01248BE0, bool, BaseSlider_1_System_Single__get_showInputField, (BaseSlider_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01248D90, float, BaseSlider_1_System_Single__get_value, (BaseSlider_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01248C30, void, BaseSlider_1_System_Single__set_clamped, (BaseSlider_1_System_Single_ * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1F58, BaseSlider_1_System_Single__set_clamped__MethodInfo); DO_APP_FUNC(0x01248C40, void, BaseSlider_1_System_Single__set_clampedDragger, (BaseSlider_1_System_Single_ * __this, ClampedDragger_1_System_Single_ * value, MethodInfo * method)); DO_APP_FUNC(0x01248F70, void, BaseSlider_1_System_Single__set_direction, (BaseSlider_1_System_Single_ * __this, SliderDirection__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1FB0, BaseSlider_1_System_Single__set_direction__MethodInfo); DO_APP_FUNC(0x010EE680, void, BaseSlider_1_System_Single__set_dragBorderElement, (BaseSlider_1_System_Single_ * __this, VisualElement * value, MethodInfo * method)); DO_APP_FUNC(0x01248810, void, BaseSlider_1_System_Single__set_dragContainer, (BaseSlider_1_System_Single_ * __this, VisualElement * value, MethodInfo * method)); DO_APP_FUNC(0x01248870, void, BaseSlider_1_System_Single__set_dragElement, (BaseSlider_1_System_Single_ * __this, VisualElement * value, MethodInfo * method)); DO_APP_FUNC(0x01252820, void, BaseSlider_1_System_Single__set_highValue, (BaseSlider_1_System_Single_ * __this, float value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2100, BaseSlider_1_System_Single__set_highValue__MethodInfo); DO_APP_FUNC(0x012488F0, void, BaseSlider_1_System_Single__set_inputTextField, (BaseSlider_1_System_Single_ * __this, TextField * value, MethodInfo * method)); DO_APP_FUNC(0x012490E0, void, BaseSlider_1_System_Single__set_inverted, (BaseSlider_1_System_Single_ * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1F98, BaseSlider_1_System_Single__set_inverted__MethodInfo); DO_APP_FUNC(0x01252750, void, BaseSlider_1_System_Single__set_lowValue, (BaseSlider_1_System_Single_ * __this, float value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE20C0, BaseSlider_1_System_Single__set_lowValue__MethodInfo); DO_APP_FUNC(0x01248BD0, void, BaseSlider_1_System_Single__set_pageSize, (BaseSlider_1_System_Single_ * __this, float value, MethodInfo * method)); DO_APP_FUNC(0x01248BF0, void, BaseSlider_1_System_Single__set_showInputField, (BaseSlider_1_System_Single_ * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x01252B60, void, BaseSlider_1_System_Single__set_value, (BaseSlider_1_System_Single_ * __this, float value, MethodInfo * method)); @@ -127359,38 +140859,42 @@ DO_APP_FUNC(0x01257650, void, BasicNodePool_1_System_Object___ctor, (BasicNodePo DO_APP_FUNC(0x010C6C00, BasicNode_1_System_Object_ *, BasicNodePool_1_System_Object__Create, (MethodInfo * method)); DO_APP_FUNC(0x012575D0, void, BasicNodePool_1_System_Object__Reset, (BasicNode_1_System_Object_ * node, MethodInfo * method)); DO_APP_FUNC(0x01257650, void, BasicNodePool_1_TextureEntry___ctor, (BasicNodePool_1_TextureEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB670, BasicNodePool_1_TextureEntry___ctor__MethodInfo); DO_APP_FUNC(0x010C6C00, BasicNode_1_TextureEntry_ *, BasicNodePool_1_TextureEntry__Create, (MethodInfo * method)); DO_APP_FUNC(0x01257750, void, BasicNodePool_1_TextureEntry__Reset, (BasicNode_1_TextureEntry_ * node, MethodInfo * method)); DO_APP_FUNC(0x010470B0, void, BasicNode_1_System_Object___ctor, (BasicNode_1_System_Object_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x012577D0, void, BasicNode_1_System_Object__AppendTo, (BasicNode_1_System_Object_ * __this, BasicNode_1_System_Object_ * first, MethodInfo * method)); +DO_APP_FUNC(0x012577D0, void, BasicNode_1_System_Object__AppendTo, (BasicNode_1_System_Object_ * __this, BasicNode_1_System_Object_ * * first, MethodInfo * method)); DO_APP_FUNC(0x010470B0, void, BasicNode_1_TextureEntry___ctor, (BasicNode_1_TextureEntry_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x012577D0, void, BasicNode_1_TextureEntry__AppendTo, (BasicNode_1_TextureEntry_ * __this, BasicNode_1_TextureEntry_ * first, MethodInfo * method)); +DO_APP_FUNC(0x012577D0, void, BasicNode_1_TextureEntry__AppendTo, (BasicNode_1_TextureEntry_ * __this, BasicNode_1_TextureEntry_ * * first, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB4C0, BasicNode_1_TextureEntry__AppendTo__MethodInfo); DO_APP_FUNC(0x012578A0, void, BidirectionalDictionary_2_System_Int32Enum_System_Int32Enum___ctor, (BidirectionalDictionary_2_System_Int32Enum_System_Int32Enum_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x01257A70, void, BidirectionalDictionary_2_System_Int32Enum_System_Int32Enum__Add, (BidirectionalDictionary_2_System_Int32Enum_System_Int32Enum_ * __this, Int32Enum__Enum item1, Int32Enum__Enum item2, MethodInfo * method)); DO_APP_FUNC(0x01257B70, Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum_, BidirectionalDictionary_2_System_Int32Enum_System_Int32Enum__GetEnumerator, (BidirectionalDictionary_2_System_Int32Enum_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01257BD0, IEnumerator_1_KeyValuePair_2_System_Int32Enum_System_Int32Enum_ *, BidirectionalDictionary_2_System_Int32Enum_System_Int32Enum__System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_T1_T2___GetEnumerator, (BidirectionalDictionary_2_System_Int32Enum_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01257BD0, IEnumerator *, BidirectionalDictionary_2_System_Int32Enum_System_Int32Enum__System_Collections_IEnumerable_GetEnumerator, (BidirectionalDictionary_2_System_Int32Enum_System_Int32Enum_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x01257B30, bool, BidirectionalDictionary_2_System_Int32Enum_System_Int32Enum__TryGetBackward, (BidirectionalDictionary_2_System_Int32Enum_System_Int32Enum_ * __this, Int32Enum__Enum item2, Int32Enum__Enum item1, MethodInfo * method)); -DO_APP_FUNC(0x01257AF0, bool, BidirectionalDictionary_2_System_Int32Enum_System_Int32Enum__TryGetForward, (BidirectionalDictionary_2_System_Int32Enum_System_Int32Enum_ * __this, Int32Enum__Enum item1, Int32Enum__Enum item2, MethodInfo * method)); +DO_APP_FUNC(0x01257B30, bool, BidirectionalDictionary_2_System_Int32Enum_System_Int32Enum__TryGetBackward, (BidirectionalDictionary_2_System_Int32Enum_System_Int32Enum_ * __this, Int32Enum__Enum item2, Int32Enum__Enum * item1, MethodInfo * method)); +DO_APP_FUNC(0x01257AF0, bool, BidirectionalDictionary_2_System_Int32Enum_System_Int32Enum__TryGetForward, (BidirectionalDictionary_2_System_Int32Enum_System_Int32Enum_ * __this, Int32Enum__Enum item1, Int32Enum__Enum * item2, MethodInfo * method)); DO_APP_FUNC(0x01257A30, int32_t, BidirectionalDictionary_2_System_Int32Enum_System_Int32Enum__get_Count, (BidirectionalDictionary_2_System_Int32Enum_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012578A0, void, BidirectionalDictionary_2_System_Object_System_Object___ctor, (BidirectionalDictionary_2_System_Object_System_Object_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x01257C50, void, BidirectionalDictionary_2_System_Object_System_Object__Add, (BidirectionalDictionary_2_System_Object_System_Object_ * __this, Object * item1, Object * item2, MethodInfo * method)); DO_APP_FUNC(0x01257CD0, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Object_, BidirectionalDictionary_2_System_Object_System_Object__GetEnumerator, (BidirectionalDictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01257D40, IEnumerator_1_KeyValuePair_2_System_Object_System_Object_ *, BidirectionalDictionary_2_System_Object_System_Object__System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_T1_T2___GetEnumerator, (BidirectionalDictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01257D40, IEnumerator *, BidirectionalDictionary_2_System_Object_System_Object__System_Collections_IEnumerable_GetEnumerator, (BidirectionalDictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x01257B30, bool, BidirectionalDictionary_2_System_Object_System_Object__TryGetBackward, (BidirectionalDictionary_2_System_Object_System_Object_ * __this, Object * item2, Object * item1, MethodInfo * method)); -DO_APP_FUNC(0x01257AF0, bool, BidirectionalDictionary_2_System_Object_System_Object__TryGetForward, (BidirectionalDictionary_2_System_Object_System_Object_ * __this, Object * item1, Object * item2, MethodInfo * method)); +DO_APP_FUNC(0x01257B30, bool, BidirectionalDictionary_2_System_Object_System_Object__TryGetBackward, (BidirectionalDictionary_2_System_Object_System_Object_ * __this, Object * item2, Object * * item1, MethodInfo * method)); +DO_APP_FUNC(0x01257AF0, bool, BidirectionalDictionary_2_System_Object_System_Object__TryGetForward, (BidirectionalDictionary_2_System_Object_System_Object_ * __this, Object * item1, Object * * item2, MethodInfo * method)); DO_APP_FUNC(0x01257A30, int32_t, BidirectionalDictionary_2_System_Object_System_Object__get_Count, (BidirectionalDictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01257DD0, void, BindingList_1_System_Object___ctor, (BindingList_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01257E40, void, BindingList_1_System_Object___ctor_1, (BindingList_1_System_Object_ * __this, IList_1_System_Object_ * list, MethodInfo * method)); DO_APP_FUNC(0x01258FB0, Object *, BindingList_1_System_Object__AddNew, (BindingList_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01259180, Object *, BindingList_1_System_Object__AddNewCore, (BindingList_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01259610, void, BindingList_1_System_Object__ApplySortCore, (BindingList_1_System_Object_ * __this, PropertyDescriptor * prop, ListSortDirection__Enum direction, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF070, BindingList_1_System_Object__ApplySortCore__MethodInfo); DO_APP_FUNC(0x01258F50, void, BindingList_1_System_Object__CancelNew, (BindingList_1_System_Object_ * __this, int32_t itemIndex, MethodInfo * method)); DO_APP_FUNC(0x012598F0, void, BindingList_1_System_Object__Child_PropertyChanged, (BindingList_1_System_Object_ * __this, Object * sender, PropertyChangedEventArgs * e, MethodInfo * method)); DO_APP_FUNC(0x012589D0, void, BindingList_1_System_Object__ClearItems, (BindingList_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01258F90, void, BindingList_1_System_Object__EndNew, (BindingList_1_System_Object_ * __this, int32_t itemIndex, MethodInfo * method)); DO_APP_FUNC(0x012596F0, int32_t, BindingList_1_System_Object__FindCore, (BindingList_1_System_Object_ * __this, PropertyDescriptor * prop, Object * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF078, BindingList_1_System_Object__FindCore__MethodInfo); DO_APP_FUNC(0x012585F0, Object *, BindingList_1_System_Object__FireAddingNew, (BindingList_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01258930, void, BindingList_1_System_Object__FireListChanged, (BindingList_1_System_Object_ * __this, ListChangedType__Enum type, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01259740, void, BindingList_1_System_Object__HookPropertyChanged, (BindingList_1_System_Object_ * __this, Object * item, MethodInfo * method)); @@ -127399,7 +140903,9 @@ DO_APP_FUNC(0x01258C80, void, BindingList_1_System_Object__InsertItem, (BindingL DO_APP_FUNC(0x012585D0, void, BindingList_1_System_Object__OnAddingNew, (BindingList_1_System_Object_ * __this, AddingNewEventArgs * e, MethodInfo * method)); DO_APP_FUNC(0x012588D0, void, BindingList_1_System_Object__OnListChanged, (BindingList_1_System_Object_ * __this, ListChangedEventArgs * e, MethodInfo * method)); DO_APP_FUNC(0x01258D30, void, BindingList_1_System_Object__RemoveItem, (BindingList_1_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF090, BindingList_1_System_Object__RemoveItem__MethodInfo); DO_APP_FUNC(0x01259680, void, BindingList_1_System_Object__RemoveSortCore, (BindingList_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF080, BindingList_1_System_Object__RemoveSortCore__MethodInfo); DO_APP_FUNC(0x012588F0, void, BindingList_1_System_Object__ResetBindings, (BindingList_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01258910, void, BindingList_1_System_Object__ResetItem, (BindingList_1_System_Object_ * __this, int32_t position, MethodInfo * method)); DO_APP_FUNC(0x01258E60, void, BindingList_1_System_Object__SetItem, (BindingList_1_System_Object_ * __this, int32_t index, Object * item, MethodInfo * method)); @@ -127441,11 +140947,14 @@ DO_APP_FUNC(0x012593D0, void, BindingList_1_System_Object__set_AllowNew, (Bindin DO_APP_FUNC(0x012594D0, void, BindingList_1_System_Object__set_AllowRemove, (BindingList_1_System_Object_ * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x006B5780, void, BindingList_1_System_Object__set_RaiseListChangedEvents, (BindingList_1_System_Object_ * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x01259CF0, void, BlockingCollectionDebugView_1_System_Object___ctor, (BlockingCollectionDebugView_1_System_Object_ * __this, BlockingCollection_1_System_Object_ * collection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF040, BlockingCollectionDebugView_1_System_Object___ctor__MethodInfo); DO_APP_FUNC(0x01112B10, Object__Array *, BlockingCollectionDebugView_1_System_Object__get_Items, (BlockingCollectionDebugView_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01259F70, void, BlockingCollection_1_System_Object___ctor, (BlockingCollection_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0125A280, void, BlockingCollection_1_System_Object___ctor_1, (BlockingCollection_1_System_Object_ * __this, IProducerConsumerCollection_1_System_Object_ * collection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF038, BlockingCollection_1_System_Object___ctor_1__MethodInfo); DO_APP_FUNC(0x0125A000, void, BlockingCollection_1_System_Object___ctor_2, (BlockingCollection_1_System_Object_ * __this, int32_t boundedCapacity, MethodInfo * method)); DO_APP_FUNC(0x0125A0A0, void, BlockingCollection_1_System_Object___ctor_3, (BlockingCollection_1_System_Object_ * __this, IProducerConsumerCollection_1_System_Object_ * collection, int32_t boundedCapacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF020, BlockingCollection_1_System_Object___ctor_3__MethodInfo); DO_APP_FUNC(0x0125A680, void, BlockingCollection_1_System_Object__Add, (BlockingCollection_1_System_Object_ * __this, Object * item, MethodInfo * method)); DO_APP_FUNC(0x0125A6B0, void, BlockingCollection_1_System_Object__Add_1, (BlockingCollection_1_System_Object_ * __this, Object * item, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x0125BB50, int32_t, BlockingCollection_1_System_Object__AddToAny, (BlockingCollection_1_System_Object___Array * collections, Object * item, MethodInfo * method)); @@ -127453,23 +140962,28 @@ DO_APP_FUNC(0x0125BC20, int32_t, BlockingCollection_1_System_Object__AddToAny_1, DO_APP_FUNC(0x0125E030, void, BlockingCollection_1_System_Object__CancelWaitingConsumers, (BlockingCollection_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0125E0A0, void, BlockingCollection_1_System_Object__CancelWaitingProducers, (BlockingCollection_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0125EF00, void, BlockingCollection_1_System_Object__CheckDisposed, (BlockingCollection_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEE50, BlockingCollection_1_System_Object__CheckDisposed__MethodInfo); DO_APP_FUNC(0x0125DD70, void, BlockingCollection_1_System_Object__CompleteAdding, (BlockingCollection_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0125E240, void, BlockingCollection_1_System_Object__CopyTo, (BlockingCollection_1_System_Object_ * __this, Object__Array * array, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x0125E110, void, BlockingCollection_1_System_Object__Dispose, (BlockingCollection_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0125E180, void, BlockingCollection_1_System_Object__Dispose_1, (BlockingCollection_1_System_Object_ * __this, bool disposing, MethodInfo * method)); DO_APP_FUNC(0x0125E5F0, IEnumerable_1_System_Object_ *, BlockingCollection_1_System_Object__GetConsumingEnumerable, (BlockingCollection_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0125E670, IEnumerable_1_System_Object_ *, BlockingCollection_1_System_Object__GetConsumingEnumerable_1, (BlockingCollection_1_System_Object_ * __this, CancellationToken cancellationToken, MethodInfo * method)); -DO_APP_FUNC(0x0125C9B0, List_1_System_Threading_WaitHandle_ *, BlockingCollection_1_System_Object__GetHandles, (BlockingCollection_1_System_Object___Array * collections, CancellationToken externalCancellationToken, bool isAddOperation, CancellationToken__Array * cancellationTokens, MethodInfo * method)); +DO_APP_FUNC(0x0125C9B0, List_1_System_Threading_WaitHandle_ *, BlockingCollection_1_System_Object__GetHandles, (BlockingCollection_1_System_Object___Array * collections, CancellationToken externalCancellationToken, bool isAddOperation, CancellationToken__Array * * cancellationTokens, MethodInfo * method)); DO_APP_FUNC(0x0125A360, void, BlockingCollection_1_System_Object__Initialize, (BlockingCollection_1_System_Object_ * __this, IProducerConsumerCollection_1_System_Object_ * collection, int32_t boundedCapacity, int32_t collectionCount, MethodInfo * method)); DO_APP_FUNC(0x0125E7B0, IEnumerator_1_System_Object_ *, BlockingCollection_1_System_Object__System_Collections_Generic_IEnumerable_T__GetEnumerator, (BlockingCollection_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0125E2B0, void, BlockingCollection_1_System_Object__System_Collections_ICollection_CopyTo, (BlockingCollection_1_System_Object_ * __this, Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEEC8, BlockingCollection_1_System_Object__System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x01259EF0, bool, BlockingCollection_1_System_Object__System_Collections_ICollection_get_IsSynchronized, (BlockingCollection_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01259F10, Object *, BlockingCollection_1_System_Object__System_Collections_ICollection_get_SyncRoot, (BlockingCollection_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF050, BlockingCollection_1_System_Object__System_Collections_ICollection_get_SyncRoot__MethodInfo); DO_APP_FUNC(0x0125E820, IEnumerator *, BlockingCollection_1_System_Object__System_Collections_IEnumerable_GetEnumerator, (BlockingCollection_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0125B060, Object *, BlockingCollection_1_System_Object__Take, (BlockingCollection_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEFF0, BlockingCollection_1_System_Object__Take__MethodInfo); DO_APP_FUNC(0x0125B150, Object *, BlockingCollection_1_System_Object__Take_1, (BlockingCollection_1_System_Object_ * __this, CancellationToken cancellationToken, MethodInfo * method)); -DO_APP_FUNC(0x0125CF50, int32_t, BlockingCollection_1_System_Object__TakeFromAny, (BlockingCollection_1_System_Object___Array * collections, Object * item, MethodInfo * method)); -DO_APP_FUNC(0x0125D010, int32_t, BlockingCollection_1_System_Object__TakeFromAny_1, (BlockingCollection_1_System_Object___Array * collections, Object * item, CancellationToken cancellationToken, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEFE8, BlockingCollection_1_System_Object__Take_1__MethodInfo); +DO_APP_FUNC(0x0125CF50, int32_t, BlockingCollection_1_System_Object__TakeFromAny, (BlockingCollection_1_System_Object___Array * collections, Object * * item, MethodInfo * method)); +DO_APP_FUNC(0x0125D010, int32_t, BlockingCollection_1_System_Object__TakeFromAny_1, (BlockingCollection_1_System_Object___Array * collections, Object * * item, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x0125E1D0, Object__Array *, BlockingCollection_1_System_Object__ToArray, (BlockingCollection_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0125A6E0, bool, BlockingCollection_1_System_Object__TryAdd, (BlockingCollection_1_System_Object_ * __this, Object * item, MethodInfo * method)); DO_APP_FUNC(0x0125A810, bool, BlockingCollection_1_System_Object__TryAdd_1, (BlockingCollection_1_System_Object_ * __this, Object * item, int32_t millisecondsTimeout, MethodInfo * method)); @@ -127480,23 +140994,30 @@ DO_APP_FUNC(0x0125BF20, int32_t, BlockingCollection_1_System_Object__TryAddToAny DO_APP_FUNC(0x0125BDA0, int32_t, BlockingCollection_1_System_Object__TryAddToAny_2, (BlockingCollection_1_System_Object___Array * collections, Object * item, TimeSpan timeout, MethodInfo * method)); DO_APP_FUNC(0x0125C040, int32_t, BlockingCollection_1_System_Object__TryAddToAny_3, (BlockingCollection_1_System_Object___Array * collections, Object * item, int32_t millisecondsTimeout, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x0125C130, int32_t, BlockingCollection_1_System_Object__TryAddToAnyCore, (BlockingCollection_1_System_Object___Array * collections, Object * item, int32_t millisecondsTimeout, CancellationToken externalCancellationToken, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEF90, BlockingCollection_1_System_Object__TryAddToAnyCore__MethodInfo); DO_APP_FUNC(0x0125C8B0, int32_t, BlockingCollection_1_System_Object__TryAddToAnyFast, (BlockingCollection_1_System_Object___Array * collections, Object * item, MethodInfo * method)); DO_APP_FUNC(0x0125A940, bool, BlockingCollection_1_System_Object__TryAddWithNoTimeValidation, (BlockingCollection_1_System_Object_ * __this, Object * item, int32_t millisecondsTimeout, CancellationToken cancellationToken, MethodInfo * method)); -DO_APP_FUNC(0x0125B200, bool, BlockingCollection_1_System_Object__TryTake, (BlockingCollection_1_System_Object_ * __this, Object * item, MethodInfo * method)); -DO_APP_FUNC(0x0125B3D0, bool, BlockingCollection_1_System_Object__TryTake_1, (BlockingCollection_1_System_Object_ * __this, Object * item, int32_t millisecondsTimeout, MethodInfo * method)); -DO_APP_FUNC(0x0125B2A0, bool, BlockingCollection_1_System_Object__TryTake_2, (BlockingCollection_1_System_Object_ * __this, Object * item, TimeSpan timeout, MethodInfo * method)); -DO_APP_FUNC(0x0125B4A0, bool, BlockingCollection_1_System_Object__TryTake_3, (BlockingCollection_1_System_Object_ * __this, Object * item, int32_t millisecondsTimeout, CancellationToken cancellationToken, MethodInfo * method)); -DO_APP_FUNC(0x0125D0C0, int32_t, BlockingCollection_1_System_Object__TryTakeFromAny, (BlockingCollection_1_System_Object___Array * collections, Object * item, MethodInfo * method)); -DO_APP_FUNC(0x0125D2E0, int32_t, BlockingCollection_1_System_Object__TryTakeFromAny_1, (BlockingCollection_1_System_Object___Array * collections, Object * item, int32_t millisecondsTimeout, MethodInfo * method)); -DO_APP_FUNC(0x0125D150, int32_t, BlockingCollection_1_System_Object__TryTakeFromAny_2, (BlockingCollection_1_System_Object___Array * collections, Object * item, TimeSpan timeout, MethodInfo * method)); -DO_APP_FUNC(0x0125D410, int32_t, BlockingCollection_1_System_Object__TryTakeFromAny_3, (BlockingCollection_1_System_Object___Array * collections, Object * item, int32_t millisecondsTimeout, CancellationToken cancellationToken, MethodInfo * method)); -DO_APP_FUNC(0x0125D500, int32_t, BlockingCollection_1_System_Object__TryTakeFromAnyCore, (BlockingCollection_1_System_Object___Array * collections, Object * item, int32_t millisecondsTimeout, bool isTakeOperation, CancellationToken externalCancellationToken, MethodInfo * method)); -DO_APP_FUNC(0x0125D750, int32_t, BlockingCollection_1_System_Object__TryTakeFromAnyCoreSlow, (BlockingCollection_1_System_Object___Array * collections, Object * item, int32_t millisecondsTimeout, bool isTakeOperation, CancellationToken externalCancellationToken, MethodInfo * method)); -DO_APP_FUNC(0x0125B540, bool, BlockingCollection_1_System_Object__TryTakeWithNoTimeValidation, (BlockingCollection_1_System_Object_ * __this, Object * item, int32_t millisecondsTimeout, CancellationToken cancellationToken, CancellationTokenSource * combinedTokenSource, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF000, BlockingCollection_1_System_Object__TryAddWithNoTimeValidation__MethodInfo); +DO_APP_FUNC(0x0125B200, bool, BlockingCollection_1_System_Object__TryTake, (BlockingCollection_1_System_Object_ * __this, Object * * item, MethodInfo * method)); +DO_APP_FUNC(0x0125B3D0, bool, BlockingCollection_1_System_Object__TryTake_1, (BlockingCollection_1_System_Object_ * __this, Object * * item, int32_t millisecondsTimeout, MethodInfo * method)); +DO_APP_FUNC(0x0125B2A0, bool, BlockingCollection_1_System_Object__TryTake_2, (BlockingCollection_1_System_Object_ * __this, Object * * item, TimeSpan timeout, MethodInfo * method)); +DO_APP_FUNC(0x0125B4A0, bool, BlockingCollection_1_System_Object__TryTake_3, (BlockingCollection_1_System_Object_ * __this, Object * * item, int32_t millisecondsTimeout, CancellationToken cancellationToken, MethodInfo * method)); +DO_APP_FUNC(0x0125D0C0, int32_t, BlockingCollection_1_System_Object__TryTakeFromAny, (BlockingCollection_1_System_Object___Array * collections, Object * * item, MethodInfo * method)); +DO_APP_FUNC(0x0125D2E0, int32_t, BlockingCollection_1_System_Object__TryTakeFromAny_1, (BlockingCollection_1_System_Object___Array * collections, Object * * item, int32_t millisecondsTimeout, MethodInfo * method)); +DO_APP_FUNC(0x0125D150, int32_t, BlockingCollection_1_System_Object__TryTakeFromAny_2, (BlockingCollection_1_System_Object___Array * collections, Object * * item, TimeSpan timeout, MethodInfo * method)); +DO_APP_FUNC(0x0125D410, int32_t, BlockingCollection_1_System_Object__TryTakeFromAny_3, (BlockingCollection_1_System_Object___Array * collections, Object * * item, int32_t millisecondsTimeout, CancellationToken cancellationToken, MethodInfo * method)); +DO_APP_FUNC(0x0125D500, int32_t, BlockingCollection_1_System_Object__TryTakeFromAnyCore, (BlockingCollection_1_System_Object___Array * collections, Object * * item, int32_t millisecondsTimeout, bool isTakeOperation, CancellationToken externalCancellationToken, MethodInfo * method)); +DO_APP_FUNC(0x0125D750, int32_t, BlockingCollection_1_System_Object__TryTakeFromAnyCoreSlow, (BlockingCollection_1_System_Object___Array * collections, Object * * item, int32_t millisecondsTimeout, bool isTakeOperation, CancellationToken externalCancellationToken, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEEF0, BlockingCollection_1_System_Object__TryTakeFromAnyCoreSlow__MethodInfo); +DO_APP_FUNC(0x0125B540, bool, BlockingCollection_1_System_Object__TryTakeWithNoTimeValidation, (BlockingCollection_1_System_Object_ * __this, Object * * item, int32_t millisecondsTimeout, CancellationToken cancellationToken, CancellationTokenSource * combinedTokenSource, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEFD0, BlockingCollection_1_System_Object__TryTakeWithNoTimeValidation__MethodInfo); DO_APP_FUNC(0x0125CEE0, int32_t, BlockingCollection_1_System_Object__UpdateTimeOut, (uint32_t startTime, int32_t originalWaitMillisecondsTimeout, MethodInfo * method)); DO_APP_FUNC(0x0125E870, void, BlockingCollection_1_System_Object__ValidateCollectionsArray, (BlockingCollection_1_System_Object___Array * collections, bool isAddOperation, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEEE8, BlockingCollection_1_System_Object__ValidateCollectionsArray__MethodInfo); DO_APP_FUNC(0x0125EDF0, void, BlockingCollection_1_System_Object__ValidateMillisecondsTimeout, (int32_t millisecondsTimeout, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEE48, BlockingCollection_1_System_Object__ValidateMillisecondsTimeout__MethodInfo); DO_APP_FUNC(0x0125EC60, void, BlockingCollection_1_System_Object__ValidateTimeout, (TimeSpan timeout, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEE38, BlockingCollection_1_System_Object__ValidateTimeout__MethodInfo); DO_APP_FUNC(0x01259DB0, int32_t, BlockingCollection_1_System_Object__get_BoundedCapacity, (BlockingCollection_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01259EB0, int32_t, BlockingCollection_1_System_Object__get_Count, (BlockingCollection_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01259DE0, bool, BlockingCollection_1_System_Object__get_IsAddingCompleted, (BlockingCollection_1_System_Object_ * __this, MethodInfo * method)); @@ -127521,28 +141042,35 @@ DO_APP_FUNC(0x0125FE70, void, BoltDoubleList_1_System_Object__RemoveNode, (BoltD DO_APP_FUNC(0x0125F6A0, void, BoltDoubleList_1_System_Object__Replace, (BoltDoubleList_1_System_Object_ * __this, Object * node, Object * newNode, MethodInfo * method)); DO_APP_FUNC(0x01260210, IEnumerator *, BoltDoubleList_1_System_Object__System_Collections_IEnumerable_GetEnumerator, (BoltDoubleList_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0125F9F0, void, BoltDoubleList_1_System_Object__VerifyCanInsert, (BoltDoubleList_1_System_Object_ * __this, Object * node, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEDF8, BoltDoubleList_1_System_Object__VerifyCanInsert__MethodInfo); DO_APP_FUNC(0x0125FAA0, void, BoltDoubleList_1_System_Object__VerifyInList, (BoltDoubleList_1_System_Object_ * __this, Object * node, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEE08, BoltDoubleList_1_System_Object__VerifyInList__MethodInfo); DO_APP_FUNC(0x012600D0, void, BoltDoubleList_1_System_Object__VerifyNotEmpty, (BoltDoubleList_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEE18, BoltDoubleList_1_System_Object__VerifyNotEmpty__MethodInfo); DO_APP_FUNC(0x0125F130, Object *, BoltDoubleList_1_System_Object__get_Item, (BoltDoubleList_1_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEE78, BoltDoubleList_1_System_Object__get_Item__MethodInfo); DO_APP_FUNC(0x003BC2E0, int32_t, BoltDoubleList_1_System_Object__get_count, (BoltDoubleList_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0125EF90, Object *, BoltDoubleList_1_System_Object__get_first, (BoltDoubleList_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0125EFC0, Object *, BoltDoubleList_1_System_Object__get_firstOrDefault, (BoltDoubleList_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0125F000, Object *, BoltDoubleList_1_System_Object__get_last, (BoltDoubleList_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0125F070, Object *, BoltDoubleList_1_System_Object__get_lastOrDefault, (BoltDoubleList_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00A878D0, bool, BoltDoubleList_1_System_Object__op_Implicit, (BoltDoubleList_1_System_Object_ * list, MethodInfo * method)); -DO_APP_FUNC(0x01260240, void, BoltIterator_1_System_Object___ctor, (BoltIterator_1_System_Object___Boxed * __this, Object * node, int32_t count, MethodInfo * method)); -DO_APP_FUNC(0x012602B0, bool, BoltIterator_1_System_Object__Next, (BoltIterator_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01260300, bool, BoltIterator_1_System_Object__Next_1, (BoltIterator_1_System_Object___Boxed * __this, Object * item, MethodInfo * method)); +DO_APP_FUNC(0x01260240, void, BoltIterator_1_System_Object___ctor, (BoltIterator_1_System_Object_ * __this, Object * node, int32_t count, MethodInfo * method)); +DO_APP_FUNC(0x012602B0, bool, BoltIterator_1_System_Object__Next, (BoltIterator_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01260300, bool, BoltIterator_1_System_Object__Next_1, (BoltIterator_1_System_Object_ * __this, Object * * item, MethodInfo * method)); DO_APP_FUNC(0x01261520, void, BoltPlayer_1_System_Object___cctor, (MethodInfo * method)); DO_APP_FUNC(0x011CD560, void, BoltPlayer_1_System_Object___ctor, (BoltPlayer_1_System_Object_ * __this, String * idPropertyName, Func_2_Object_String_ * get, Action_2_Object_String_ * set, MethodInfo * method)); DO_APP_FUNC(0x012607A0, void, BoltPlayer_1_System_Object__Attached, (BoltPlayer_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEDC8, BoltPlayer_1_System_Object__Attached__MethodInfo); DO_APP_FUNC(0x01260FE0, void, BoltPlayer_1_System_Object__IdChanged, (BoltPlayer_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01260C40, void, BoltPlayer_1_System_Object__OnDestroy, (BoltPlayer_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01260F00, void, BoltPlayer_1_System_Object__OnDisable, (BoltPlayer_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01260EA0, void, BoltPlayer_1_System_Object__OnEnable, (BoltPlayer_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01260F60, void, BoltPlayer_1_System_Object__SetPlayerId, (BoltPlayer_1_System_Object_ * __this, String * playerId, MethodInfo * method)); DO_APP_FUNC(0x012610E0, void, BoltPlayer_1_System_Object__StartTracking, (BoltPlayer_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCED88, BoltPlayer_1_System_Object__StartTracking__MethodInfo); DO_APP_FUNC(0x01261300, void, BoltPlayer_1_System_Object__StopTracking, (BoltPlayer_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCED08, BoltPlayer_1_System_Object__StopTracking__MethodInfo); DO_APP_FUNC(0x00436BD0, bool, BoltPlayer_1_System_Object__get_IsTracking, (BoltPlayer_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7420, String *, BoltPlayer_1_System_Object__get_PlayerId, (BoltPlayer_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01260440, Vector3, BoltPlayer_1_System_Object__get_Position, (BoltPlayer_1_System_Object_ * __this, MethodInfo * method)); @@ -127551,34 +141079,47 @@ DO_APP_FUNC(0x01260730, NetworkPlayerType__Enum, BoltPlayer_1_System_Object__get DO_APP_FUNC(0x00A80AB0, void, BoltPlayer_1_System_Object__set_IsTracking, (BoltPlayer_1_System_Object_ * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x003C7430, void, BoltPlayer_1_System_Object__set_PlayerId, (BoltPlayer_1_System_Object_ * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x01261930, void, BoltRingBuffer_1_System_Int32___ctor, (BoltRingBuffer_1_System_Int32_ * __this, int32_t size, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC33E0, BoltRingBuffer_1_System_Int32___ctor__MethodInfo); DO_APP_FUNC(0x011116D0, void, BoltRingBuffer_1_System_Int32__Clear, (BoltRingBuffer_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3448, BoltRingBuffer_1_System_Int32__Clear__MethodInfo); DO_APP_FUNC(0x01261B70, void, BoltRingBuffer_1_System_Int32__CopyTo, (BoltRingBuffer_1_System_Int32_ * __this, BoltRingBuffer_1_System_Int32_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCED48, BoltRingBuffer_1_System_Int32__CopyTo__MethodInfo); DO_APP_FUNC(0x01261AA0, int32_t, BoltRingBuffer_1_System_Int32__Dequeue, (BoltRingBuffer_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012619C0, void, BoltRingBuffer_1_System_Int32__Enqueue, (BoltRingBuffer_1_System_Int32_ * __this, int32_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3600, BoltRingBuffer_1_System_Int32__Enqueue__MethodInfo); DO_APP_FUNC(0x01261CB0, IEnumerator_1_System_Int32_ *, BoltRingBuffer_1_System_Int32__GetEnumerator, (BoltRingBuffer_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01261B20, int32_t, BoltRingBuffer_1_System_Int32__Peek, (BoltRingBuffer_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F9B320, IEnumerator *, BoltRingBuffer_1_System_Int32__System_Collections_IEnumerable_GetEnumerator, (BoltRingBuffer_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01261C40, void, BoltRingBuffer_1_System_Int32__VerifyNotEmpty, (BoltRingBuffer_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCED40, BoltRingBuffer_1_System_Int32__VerifyNotEmpty__MethodInfo); DO_APP_FUNC(0x01261830, int32_t, BoltRingBuffer_1_System_Int32__get_Item, (BoltRingBuffer_1_System_Int32_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3630, BoltRingBuffer_1_System_Int32__get_Item__MethodInfo); DO_APP_FUNC(0x006B5770, bool, BoltRingBuffer_1_System_Int32__get_autofree, (BoltRingBuffer_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, BoltRingBuffer_1_System_Int32__get_count, (BoltRingBuffer_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3620, BoltRingBuffer_1_System_Int32__get_count__MethodInfo); DO_APP_FUNC(0x011110C0, bool, BoltRingBuffer_1_System_Int32__get_empty, (BoltRingBuffer_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01261770, int32_t, BoltRingBuffer_1_System_Int32__get_first, (BoltRingBuffer_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01111040, bool, BoltRingBuffer_1_System_Int32__get_full, (BoltRingBuffer_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3440, BoltRingBuffer_1_System_Int32__get_full__MethodInfo); DO_APP_FUNC(0x01261650, int32_t, BoltRingBuffer_1_System_Int32__get_last, (BoltRingBuffer_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01261890, void, BoltRingBuffer_1_System_Int32__set_Item, (BoltRingBuffer_1_System_Int32_ * __this, int32_t index, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCED20, BoltRingBuffer_1_System_Int32__set_Item__MethodInfo); DO_APP_FUNC(0x006B5780, void, BoltRingBuffer_1_System_Int32__set_autofree, (BoltRingBuffer_1_System_Int32_ * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC34A8, BoltRingBuffer_1_System_Int32__set_autofree__MethodInfo); DO_APP_FUNC(0x012617D0, void, BoltRingBuffer_1_System_Int32__set_first, (BoltRingBuffer_1_System_Int32_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x012616E0, void, BoltRingBuffer_1_System_Int32__set_last, (BoltRingBuffer_1_System_Int32_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01261930, void, BoltRingBuffer_1_System_Object___ctor, (BoltRingBuffer_1_System_Object_ * __this, int32_t size, MethodInfo * method)); DO_APP_FUNC(0x011116D0, void, BoltRingBuffer_1_System_Object__Clear, (BoltRingBuffer_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01261FD0, void, BoltRingBuffer_1_System_Object__CopyTo, (BoltRingBuffer_1_System_Object_ * __this, BoltRingBuffer_1_System_Object_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCECE0, BoltRingBuffer_1_System_Object__CopyTo__MethodInfo); DO_APP_FUNC(0x01111600, Object *, BoltRingBuffer_1_System_Object__Dequeue, (BoltRingBuffer_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01261F00, void, BoltRingBuffer_1_System_Object__Enqueue, (BoltRingBuffer_1_System_Object_ * __this, Object * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCECC8, BoltRingBuffer_1_System_Object__Enqueue__MethodInfo); DO_APP_FUNC(0x01262110, IEnumerator_1_System_Object_ *, BoltRingBuffer_1_System_Object__GetEnumerator, (BoltRingBuffer_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01111680, Object *, BoltRingBuffer_1_System_Object__Peek, (BoltRingBuffer_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F9B320, IEnumerator *, BoltRingBuffer_1_System_Object__System_Collections_IEnumerable_GetEnumerator, (BoltRingBuffer_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012620A0, void, BoltRingBuffer_1_System_Object__VerifyNotEmpty, (BoltRingBuffer_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCECD8, BoltRingBuffer_1_System_Object__VerifyNotEmpty__MethodInfo); DO_APP_FUNC(0x011113B0, Object *, BoltRingBuffer_1_System_Object__get_Item, (BoltRingBuffer_1_System_Object_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x006B5770, bool, BoltRingBuffer_1_System_Object__get_autofree, (BoltRingBuffer_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, BoltRingBuffer_1_System_Object__get_count, (BoltRingBuffer_1_System_Object_ * __this, MethodInfo * method)); @@ -127587,46 +141128,64 @@ DO_APP_FUNC(0x01261770, Object *, BoltRingBuffer_1_System_Object__get_first, (Bo DO_APP_FUNC(0x01111040, bool, BoltRingBuffer_1_System_Object__get_full, (BoltRingBuffer_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01261650, Object *, BoltRingBuffer_1_System_Object__get_last, (BoltRingBuffer_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01261E70, void, BoltRingBuffer_1_System_Object__set_Item, (BoltRingBuffer_1_System_Object_ * __this, int32_t index, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCECD0, BoltRingBuffer_1_System_Object__set_Item__MethodInfo); DO_APP_FUNC(0x006B5780, void, BoltRingBuffer_1_System_Object__set_autofree, (BoltRingBuffer_1_System_Object_ * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x01261E10, void, BoltRingBuffer_1_System_Object__set_first, (BoltRingBuffer_1_System_Object_ * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01261D80, void, BoltRingBuffer_1_System_Object__set_last, (BoltRingBuffer_1_System_Object_ * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01261930, void, BoltRingBuffer_1_Photon_Bolt_Internal_PacketStats___ctor, (BoltRingBuffer_1_Photon_Bolt_Internal_PacketStats_ * __this, int32_t size, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3AD0, BoltRingBuffer_1_Photon_Bolt_Internal_PacketStats___ctor__MethodInfo); DO_APP_FUNC(0x011116D0, void, BoltRingBuffer_1_Photon_Bolt_Internal_PacketStats__Clear, (BoltRingBuffer_1_Photon_Bolt_Internal_PacketStats_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012625D0, void, BoltRingBuffer_1_Photon_Bolt_Internal_PacketStats__CopyTo, (BoltRingBuffer_1_Photon_Bolt_Internal_PacketStats_ * __this, BoltRingBuffer_1_Photon_Bolt_Internal_PacketStats_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCECE8, BoltRingBuffer_1_Photon_Bolt_Internal_PacketStats__CopyTo__MethodInfo); DO_APP_FUNC(0x011128B0, PacketStats, BoltRingBuffer_1_Photon_Bolt_Internal_PacketStats__Dequeue, (BoltRingBuffer_1_Photon_Bolt_Internal_PacketStats_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012624E0, void, BoltRingBuffer_1_Photon_Bolt_Internal_PacketStats__Enqueue, (BoltRingBuffer_1_Photon_Bolt_Internal_PacketStats_ * __this, PacketStats item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3808, BoltRingBuffer_1_Photon_Bolt_Internal_PacketStats__Enqueue__MethodInfo); DO_APP_FUNC(0x01262110, IEnumerator_1_Photon_Bolt_Internal_PacketStats_ *, BoltRingBuffer_1_Photon_Bolt_Internal_PacketStats__GetEnumerator, (BoltRingBuffer_1_Photon_Bolt_Internal_PacketStats_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01112960, PacketStats, BoltRingBuffer_1_Photon_Bolt_Internal_PacketStats__Peek, (BoltRingBuffer_1_Photon_Bolt_Internal_PacketStats_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F9B320, IEnumerator *, BoltRingBuffer_1_Photon_Bolt_Internal_PacketStats__System_Collections_IEnumerable_GetEnumerator, (BoltRingBuffer_1_Photon_Bolt_Internal_PacketStats_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012626A0, void, BoltRingBuffer_1_Photon_Bolt_Internal_PacketStats__VerifyNotEmpty, (BoltRingBuffer_1_Photon_Bolt_Internal_PacketStats_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCED00, BoltRingBuffer_1_Photon_Bolt_Internal_PacketStats__VerifyNotEmpty__MethodInfo); DO_APP_FUNC(0x01112680, PacketStats, BoltRingBuffer_1_Photon_Bolt_Internal_PacketStats__get_Item, (BoltRingBuffer_1_Photon_Bolt_Internal_PacketStats_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x006B5770, bool, BoltRingBuffer_1_Photon_Bolt_Internal_PacketStats__get_autofree, (BoltRingBuffer_1_Photon_Bolt_Internal_PacketStats_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, BoltRingBuffer_1_Photon_Bolt_Internal_PacketStats__get_count, (BoltRingBuffer_1_Photon_Bolt_Internal_PacketStats_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA980, BoltRingBuffer_1_Photon_Bolt_Internal_PacketStats__get_count__MethodInfo); DO_APP_FUNC(0x011110C0, bool, BoltRingBuffer_1_Photon_Bolt_Internal_PacketStats__get_empty, (BoltRingBuffer_1_Photon_Bolt_Internal_PacketStats_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01262330, PacketStats, BoltRingBuffer_1_Photon_Bolt_Internal_PacketStats__get_first, (BoltRingBuffer_1_Photon_Bolt_Internal_PacketStats_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01111040, bool, BoltRingBuffer_1_Photon_Bolt_Internal_PacketStats__get_full, (BoltRingBuffer_1_Photon_Bolt_Internal_PacketStats_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012621E0, PacketStats, BoltRingBuffer_1_Photon_Bolt_Internal_PacketStats__get_last, (BoltRingBuffer_1_Photon_Bolt_Internal_PacketStats_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01262430, void, BoltRingBuffer_1_Photon_Bolt_Internal_PacketStats__set_Item, (BoltRingBuffer_1_Photon_Bolt_Internal_PacketStats_ * __this, int32_t index, PacketStats value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCECF0, BoltRingBuffer_1_Photon_Bolt_Internal_PacketStats__set_Item__MethodInfo); DO_APP_FUNC(0x006B5780, void, BoltRingBuffer_1_Photon_Bolt_Internal_PacketStats__set_autofree, (BoltRingBuffer_1_Photon_Bolt_Internal_PacketStats_ * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3A88, BoltRingBuffer_1_Photon_Bolt_Internal_PacketStats__set_autofree__MethodInfo); DO_APP_FUNC(0x012623C0, void, BoltRingBuffer_1_Photon_Bolt_Internal_PacketStats__set_first, (BoltRingBuffer_1_Photon_Bolt_Internal_PacketStats_ * __this, PacketStats value, MethodInfo * method)); DO_APP_FUNC(0x01262290, void, BoltRingBuffer_1_Photon_Bolt_Internal_PacketStats__set_last, (BoltRingBuffer_1_Photon_Bolt_Internal_PacketStats_ * __this, PacketStats value, MethodInfo * method)); DO_APP_FUNC(0x01261930, void, BoltRingBuffer_1_Photon_Bolt_Utils_BoltConsole_Line___ctor, (BoltRingBuffer_1_Photon_Bolt_Utils_BoltConsole_Line_ * __this, int32_t size, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB0E0, BoltRingBuffer_1_Photon_Bolt_Utils_BoltConsole_Line___ctor__MethodInfo); DO_APP_FUNC(0x011116D0, void, BoltRingBuffer_1_Photon_Bolt_Utils_BoltConsole_Line__Clear, (BoltRingBuffer_1_Photon_Bolt_Utils_BoltConsole_Line_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB178, BoltRingBuffer_1_Photon_Bolt_Utils_BoltConsole_Line__Clear__MethodInfo); DO_APP_FUNC(0x01262E00, void, BoltRingBuffer_1_Photon_Bolt_Utils_BoltConsole_Line__CopyTo, (BoltRingBuffer_1_Photon_Bolt_Utils_BoltConsole_Line_ * __this, BoltRingBuffer_1_Photon_Bolt_Utils_BoltConsole_Line_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB0F8, BoltRingBuffer_1_Photon_Bolt_Utils_BoltConsole_Line__CopyTo__MethodInfo); DO_APP_FUNC(0x01262C60, BoltConsole_Line, BoltRingBuffer_1_Photon_Bolt_Utils_BoltConsole_Line__Dequeue, (BoltRingBuffer_1_Photon_Bolt_Utils_BoltConsole_Line_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB190, BoltRingBuffer_1_Photon_Bolt_Utils_BoltConsole_Line__Dequeue__MethodInfo); DO_APP_FUNC(0x01262B00, void, BoltRingBuffer_1_Photon_Bolt_Utils_BoltConsole_Line__Enqueue, (BoltRingBuffer_1_Photon_Bolt_Utils_BoltConsole_Line_ * __this, BoltConsole_Line item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB1B8, BoltRingBuffer_1_Photon_Bolt_Utils_BoltConsole_Line__Enqueue__MethodInfo); DO_APP_FUNC(0x01262F40, IEnumerator_1_Photon_Bolt_Utils_BoltConsole_Line_ *, BoltRingBuffer_1_Photon_Bolt_Utils_BoltConsole_Line__GetEnumerator, (BoltRingBuffer_1_Photon_Bolt_Utils_BoltConsole_Line_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01262D90, BoltConsole_Line, BoltRingBuffer_1_Photon_Bolt_Utils_BoltConsole_Line__Peek, (BoltRingBuffer_1_Photon_Bolt_Utils_BoltConsole_Line_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F9B320, IEnumerator *, BoltRingBuffer_1_Photon_Bolt_Utils_BoltConsole_Line__System_Collections_IEnumerable_GetEnumerator, (BoltRingBuffer_1_Photon_Bolt_Utils_BoltConsole_Line_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01262ED0, void, BoltRingBuffer_1_Photon_Bolt_Utils_BoltConsole_Line__VerifyNotEmpty, (BoltRingBuffer_1_Photon_Bolt_Utils_BoltConsole_Line_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCECB0, BoltRingBuffer_1_Photon_Bolt_Utils_BoltConsole_Line__VerifyNotEmpty__MethodInfo); DO_APP_FUNC(0x01262960, BoltConsole_Line, BoltRingBuffer_1_Photon_Bolt_Utils_BoltConsole_Line__get_Item, (BoltRingBuffer_1_Photon_Bolt_Utils_BoltConsole_Line_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB150, BoltRingBuffer_1_Photon_Bolt_Utils_BoltConsole_Line__get_Item__MethodInfo); DO_APP_FUNC(0x006B5770, bool, BoltRingBuffer_1_Photon_Bolt_Utils_BoltConsole_Line__get_autofree, (BoltRingBuffer_1_Photon_Bolt_Utils_BoltConsole_Line_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, BoltRingBuffer_1_Photon_Bolt_Utils_BoltConsole_Line__get_count, (BoltRingBuffer_1_Photon_Bolt_Utils_BoltConsole_Line_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB1F0, BoltRingBuffer_1_Photon_Bolt_Utils_BoltConsole_Line__get_count__MethodInfo); DO_APP_FUNC(0x011110C0, bool, BoltRingBuffer_1_Photon_Bolt_Utils_BoltConsole_Line__get_empty, (BoltRingBuffer_1_Photon_Bolt_Utils_BoltConsole_Line_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01262860, BoltConsole_Line, BoltRingBuffer_1_Photon_Bolt_Utils_BoltConsole_Line__get_first, (BoltRingBuffer_1_Photon_Bolt_Utils_BoltConsole_Line_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01111040, bool, BoltRingBuffer_1_Photon_Bolt_Utils_BoltConsole_Line__get_full, (BoltRingBuffer_1_Photon_Bolt_Utils_BoltConsole_Line_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB1A8, BoltRingBuffer_1_Photon_Bolt_Utils_BoltConsole_Line__get_full__MethodInfo); DO_APP_FUNC(0x01262710, BoltConsole_Line, BoltRingBuffer_1_Photon_Bolt_Utils_BoltConsole_Line__get_last, (BoltRingBuffer_1_Photon_Bolt_Utils_BoltConsole_Line_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012629F0, void, BoltRingBuffer_1_Photon_Bolt_Utils_BoltConsole_Line__set_Item, (BoltRingBuffer_1_Photon_Bolt_Utils_BoltConsole_Line_ * __this, int32_t index, BoltConsole_Line value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCECF8, BoltRingBuffer_1_Photon_Bolt_Utils_BoltConsole_Line__set_Item__MethodInfo); DO_APP_FUNC(0x006B5780, void, BoltRingBuffer_1_Photon_Bolt_Utils_BoltConsole_Line__set_autofree, (BoltRingBuffer_1_Photon_Bolt_Utils_BoltConsole_Line_ * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x012628F0, void, BoltRingBuffer_1_Photon_Bolt_Utils_BoltConsole_Line__set_first, (BoltRingBuffer_1_Photon_Bolt_Utils_BoltConsole_Line_ * __this, BoltConsole_Line value, MethodInfo * method)); DO_APP_FUNC(0x012627C0, void, BoltRingBuffer_1_Photon_Bolt_Utils_BoltConsole_Line__set_last, (BoltRingBuffer_1_Photon_Bolt_Utils_BoltConsole_Line_ * __this, BoltConsole_Line value, MethodInfo * method)); @@ -127641,8 +141200,11 @@ DO_APP_FUNC(0x0125EF90, Object *, BoltSingleList_1_System_Object__PeekFirst, (Bo DO_APP_FUNC(0x01263480, Object *, BoltSingleList_1_System_Object__RemoveFirst, (BoltSingleList_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FA1930, IEnumerator *, BoltSingleList_1_System_Object__System_Collections_IEnumerable_GetEnumerator, (BoltSingleList_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01263820, void, BoltSingleList_1_System_Object__VerifyCanInsert, (BoltSingleList_1_System_Object_ * __this, Object * node, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCECC0, BoltSingleList_1_System_Object__VerifyCanInsert__MethodInfo); DO_APP_FUNC(0x012638D0, void, BoltSingleList_1_System_Object__VerifyInList, (BoltSingleList_1_System_Object_ * __this, Object * node, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCECB8, BoltSingleList_1_System_Object__VerifyInList__MethodInfo); DO_APP_FUNC(0x012637B0, void, BoltSingleList_1_System_Object__VerifyNotEmpty, (BoltSingleList_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCECA0, BoltSingleList_1_System_Object__VerifyNotEmpty__MethodInfo); DO_APP_FUNC(0x003CC980, int32_t, BoltSingleList_1_System_Object__get_count, (BoltSingleList_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0125EF90, Object *, BoltSingleList_1_System_Object__get_first, (BoltSingleList_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01263010, Object *, BoltSingleList_1_System_Object__get_last, (BoltSingleList_1_System_Object_ * __this, MethodInfo * method)); @@ -127654,77 +141216,107 @@ DO_APP_FUNC(0x01263F70, void, BroadcastingClientCollection_1_Dissonance_Integrat DO_APP_FUNC(0x01265150, void, BroadcastingClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__Broadcast, (BroadcastingClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, ArraySegment_1_Byte_ packet, MethodInfo * method)); DO_APP_FUNC(0x012644C0, void, BroadcastingClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__OnAddedClient, (BroadcastingClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, ClientInfo_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * client, MethodInfo * method)); DO_APP_FUNC(0x01264290, void, BroadcastingClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__OnRemovedClient, (BroadcastingClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, ClientInfo_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * client, MethodInfo * method)); -DO_APP_FUNC(0x01264FE0, void, BroadcastingClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__ProcessClientState, (BroadcastingClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, BoltPeer source, PacketReader reader, MethodInfo * method)); -DO_APP_FUNC(0x012650A0, void, BroadcastingClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__ProcessDeltaChannelState, (BroadcastingClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, PacketReader reader, MethodInfo * method)); -DO_APP_FUNC(0x012645B0, void, BroadcastingClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__ProcessHandshakeRequest, (BroadcastingClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, BoltPeer source, PacketReader reader, MethodInfo * method)); +DO_APP_FUNC(0x01264FE0, void, BroadcastingClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__ProcessClientState, (BroadcastingClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, BoltPeer source, PacketReader * reader, MethodInfo * method)); +DO_APP_FUNC(0x012650A0, void, BroadcastingClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__ProcessDeltaChannelState, (BroadcastingClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, PacketReader * reader, MethodInfo * method)); +DO_APP_FUNC(0x012645B0, void, BroadcastingClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__ProcessHandshakeRequest, (BroadcastingClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, BoltPeer source, PacketReader * reader, MethodInfo * method)); DO_APP_FUNC(0x01265400, void, BroadcastingClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__RemoveClient, (BroadcastingClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, BoltPeer connection, MethodInfo * method)); DO_APP_FUNC(0x01264C50, void, BroadcastingClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__SendFakeClientState, (BroadcastingClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, BoltPeer destination, ClientInfo_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * clientInfo, MethodInfo * method)); DO_APP_FUNC(0x01265480, void, BroadcastingClientCollection_1_System_Object___ctor, (BroadcastingClientCollection_1_System_Object_ * __this, IServer_1_System_Object_ * server, MethodInfo * method)); DO_APP_FUNC(0x01265150, void, BroadcastingClientCollection_1_System_Object__Broadcast, (BroadcastingClientCollection_1_System_Object_ * __this, ArraySegment_1_Byte_ packet, MethodInfo * method)); DO_APP_FUNC(0x012644C0, void, BroadcastingClientCollection_1_System_Object__OnAddedClient, (BroadcastingClientCollection_1_System_Object_ * __this, ClientInfo_1_System_Object_ * client, MethodInfo * method)); DO_APP_FUNC(0x012657A0, void, BroadcastingClientCollection_1_System_Object__OnRemovedClient, (BroadcastingClientCollection_1_System_Object_ * __this, ClientInfo_1_System_Object_ * client, MethodInfo * method)); -DO_APP_FUNC(0x012663A0, void, BroadcastingClientCollection_1_System_Object__ProcessClientState, (BroadcastingClientCollection_1_System_Object_ * __this, Object * source, PacketReader reader, MethodInfo * method)); -DO_APP_FUNC(0x01266460, void, BroadcastingClientCollection_1_System_Object__ProcessDeltaChannelState, (BroadcastingClientCollection_1_System_Object_ * __this, PacketReader reader, MethodInfo * method)); -DO_APP_FUNC(0x012659D0, void, BroadcastingClientCollection_1_System_Object__ProcessHandshakeRequest, (BroadcastingClientCollection_1_System_Object_ * __this, Object * source, PacketReader reader, MethodInfo * method)); +DO_APP_FUNC(0x012663A0, void, BroadcastingClientCollection_1_System_Object__ProcessClientState, (BroadcastingClientCollection_1_System_Object_ * __this, Object * source, PacketReader * reader, MethodInfo * method)); +DO_APP_FUNC(0x01266460, void, BroadcastingClientCollection_1_System_Object__ProcessDeltaChannelState, (BroadcastingClientCollection_1_System_Object_ * __this, PacketReader * reader, MethodInfo * method)); +DO_APP_FUNC(0x012659D0, void, BroadcastingClientCollection_1_System_Object__ProcessHandshakeRequest, (BroadcastingClientCollection_1_System_Object_ * __this, Object * source, PacketReader * reader, MethodInfo * method)); DO_APP_FUNC(0x01265400, void, BroadcastingClientCollection_1_System_Object__RemoveClient, (BroadcastingClientCollection_1_System_Object_ * __this, Object * connection, MethodInfo * method)); DO_APP_FUNC(0x01266010, void, BroadcastingClientCollection_1_System_Object__SendFakeClientState, (BroadcastingClientCollection_1_System_Object_ * __this, Object * destination, ClientInfo_1_System_Object_ * clientInfo, MethodInfo * method)); -DO_APP_FUNC(0x01266510, void, Buffer_1_System_Collections_Generic_KeyValuePair_2___ctor, (Buffer_1_System_Collections_Generic_KeyValuePair_2___Boxed * __this, IEnumerable_1_KeyValuePair_2_System_Object_System_Object_ * source, MethodInfo * method)); -DO_APP_FUNC(0x01266A30, KeyValuePair_2_System_Object_System_Object___Array *, Buffer_1_System_Collections_Generic_KeyValuePair_2__ToArray, (Buffer_1_System_Collections_Generic_KeyValuePair_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01266B20, void, Buffer_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___ctor, (Buffer_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___Boxed * __this, IEnumerable_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * source, MethodInfo * method)); -DO_APP_FUNC(0x01266A30, DiagnosticEvent__Array *, Buffer_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__ToArray, (Buffer_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01267000, void, Buffer_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___ctor, (Buffer_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___Boxed * __this, IEnumerable_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * source, MethodInfo * method)); -DO_APP_FUNC(0x01266A30, GlyphPairAdjustmentRecord__Array *, Buffer_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__ToArray, (Buffer_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x012674F0, void, Buffer_1_System_Int32___ctor, (Buffer_1_System_Int32___Boxed * __this, IEnumerable_1_System_Int32_ * source, MethodInfo * method)); -DO_APP_FUNC(0x01266A30, Int32__Array *, Buffer_1_System_Int32__ToArray, (Buffer_1_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01267970, void, Buffer_1_UnityEngine_InputSystem_Utilities_InternedString___ctor, (Buffer_1_UnityEngine_InputSystem_Utilities_InternedString___Boxed * __this, IEnumerable_1_UnityEngine_InputSystem_Utilities_InternedString_ * source, MethodInfo * method)); -DO_APP_FUNC(0x01266A30, InternedString__Array *, Buffer_1_UnityEngine_InputSystem_Utilities_InternedString__ToArray, (Buffer_1_UnityEngine_InputSystem_Utilities_InternedString___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01267E20, void, Buffer_1_UnityEngine_InputSystem_Utilities_NameAndParameters___ctor, (Buffer_1_UnityEngine_InputSystem_Utilities_NameAndParameters___Boxed * __this, IEnumerable_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ * source, MethodInfo * method)); -DO_APP_FUNC(0x01266A30, NameAndParameters__Array *, Buffer_1_UnityEngine_InputSystem_Utilities_NameAndParameters__ToArray, (Buffer_1_UnityEngine_InputSystem_Utilities_NameAndParameters___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01268350, void, Buffer_1_System_Object___ctor, (Buffer_1_System_Object___Boxed * __this, IEnumerable_1_System_Object_ * source, MethodInfo * method)); -DO_APP_FUNC(0x01266A30, Object__Array *, Buffer_1_System_Object__ToArray, (Buffer_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x012687C0, void, Buffer_1_System_UInt32___ctor, (Buffer_1_System_UInt32___Boxed * __this, IEnumerable_1_System_UInt32_ * source, MethodInfo * method)); -DO_APP_FUNC(0x01266A30, UInt32__Array *, Buffer_1_System_UInt32__ToArray, (Buffer_1_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01268C40, void, Buffer_1_UdpKit_UdpIPv4Address___ctor, (Buffer_1_UdpKit_UdpIPv4Address___Boxed * __this, IEnumerable_1_UdpKit_UdpIPv4Address_ * source, MethodInfo * method)); -DO_APP_FUNC(0x01266A30, UdpIPv4Address__Array *, Buffer_1_UdpKit_UdpIPv4Address__ToArray, (Buffer_1_UdpKit_UdpIPv4Address___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x012690C0, void, Buffer_1_UnityEngine_Vector2___ctor, (Buffer_1_UnityEngine_Vector2___Boxed * __this, IEnumerable_1_UnityEngine_Vector2_ * source, MethodInfo * method)); -DO_APP_FUNC(0x01266A30, Vector2__Array *, Buffer_1_UnityEngine_Vector2__ToArray, (Buffer_1_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01269550, void, Buffer_1_UnityEngine_Vector3___ctor, (Buffer_1_UnityEngine_Vector3___Boxed * __this, IEnumerable_1_UnityEngine_Vector3_ * source, MethodInfo * method)); -DO_APP_FUNC(0x01266A30, Vector3__Array *, Buffer_1_UnityEngine_Vector3__ToArray, (Buffer_1_UnityEngine_Vector3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x012699F0, void, Buffer_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere___ctor, (Buffer_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere___Boxed * __this, IEnumerable_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere_ * source, MethodInfo * method)); -DO_APP_FUNC(0x01266A30, HairDesignerColliderBase_DualSphere__Array *, Buffer_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere__ToArray, (Buffer_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01269F30, void, Buffer_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement___ctor, (Buffer_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement___Boxed * __this, IEnumerable_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement_ * source, MethodInfo * method)); -DO_APP_FUNC(0x01266A30, InputControlScheme_DeviceRequirement__Array *, Buffer_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement__ToArray, (Buffer_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0126A4B0, void, Buffer_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData___ctor, (Buffer_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData___Boxed * __this, IEnumerable_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData_ * source, MethodInfo * method)); -DO_APP_FUNC(0x01266A30, MotionSolver_GPUNodeData__Array *, Buffer_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData__ToArray, (Buffer_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0126A9F0, void, Buffer_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo___ctor, (Buffer_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo___Boxed * __this, IEnumerable_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo_ * source, MethodInfo * method)); -DO_APP_FUNC(0x01266A30, MotionSolver_GPUNodeInfo__Array *, Buffer_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo__ToArray, (Buffer_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0126AF50, void, ByReference_1_Byte___ctor, (ByReference_1_Byte___Boxed * __this, uint8_t value, MethodInfo * method)); -DO_APP_FUNC(0x0126AFA0, uint8_t, ByReference_1_Byte__get_Value, (ByReference_1_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0126AFF0, void, ByReference_1_Char___ctor, (ByReference_1_Char___Boxed * __this, uint16_t value, MethodInfo * method)); -DO_APP_FUNC(0x0126B040, uint16_t, ByReference_1_Char__get_Value, (ByReference_1_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0126B090, void, ByReference_1_Int32___ctor, (ByReference_1_Int32___Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x0126B0E0, int32_t, ByReference_1_Int32__get_Value, (ByReference_1_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0126B130, void, ByReference_1_Object___ctor, (ByReference_1_Object___Boxed * __this, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x0126B180, Object *, ByReference_1_Object__get_Value, (ByReference_1_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0126B1D0, void, ByReference_1_UInt16___ctor, (ByReference_1_UInt16___Boxed * __this, uint16_t value, MethodInfo * method)); -DO_APP_FUNC(0x0126B220, uint16_t, ByReference_1_UInt16__get_Value, (ByReference_1_UInt16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0126B270, void, ByReference_1_UInt32___ctor, (ByReference_1_UInt32___Boxed * __this, uint32_t value, MethodInfo * method)); -DO_APP_FUNC(0x0126B2C0, uint32_t, ByReference_1_UInt32__get_Value, (ByReference_1_UInt32___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01266510, void, Buffer_1_System_Collections_Generic_KeyValuePair_2___ctor, (Buffer_1_System_Collections_Generic_KeyValuePair_2_ * __this, IEnumerable_1_KeyValuePair_2_System_Object_System_Object_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEC68, Buffer_1_System_Collections_Generic_KeyValuePair_2___ctor__MethodInfo); +DO_APP_FUNC(0x01266A30, KeyValuePair_2_System_Object_System_Object___Array *, Buffer_1_System_Collections_Generic_KeyValuePair_2__ToArray, (Buffer_1_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01266B20, void, Buffer_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___ctor, (Buffer_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, IEnumerable_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEC70, Buffer_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___ctor__MethodInfo); +DO_APP_FUNC(0x01266A30, DiagnosticEvent__Array *, Buffer_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__ToArray, (Buffer_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01267000, void, Buffer_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___ctor, (Buffer_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, IEnumerable_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEC40, Buffer_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___ctor__MethodInfo); +DO_APP_FUNC(0x01266A30, GlyphPairAdjustmentRecord__Array *, Buffer_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__ToArray, (Buffer_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x012674F0, void, Buffer_1_System_Int32___ctor, (Buffer_1_System_Int32_ * __this, IEnumerable_1_System_Int32_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEC48, Buffer_1_System_Int32___ctor__MethodInfo); +DO_APP_FUNC(0x01266A30, Int32__Array *, Buffer_1_System_Int32__ToArray, (Buffer_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01267970, void, Buffer_1_UnityEngine_InputSystem_Utilities_InternedString___ctor, (Buffer_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, IEnumerable_1_UnityEngine_InputSystem_Utilities_InternedString_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEC60, Buffer_1_UnityEngine_InputSystem_Utilities_InternedString___ctor__MethodInfo); +DO_APP_FUNC(0x01266A30, InternedString__Array *, Buffer_1_UnityEngine_InputSystem_Utilities_InternedString__ToArray, (Buffer_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01267E20, void, Buffer_1_UnityEngine_InputSystem_Utilities_NameAndParameters___ctor, (Buffer_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ * __this, IEnumerable_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEC08, Buffer_1_UnityEngine_InputSystem_Utilities_NameAndParameters___ctor__MethodInfo); +DO_APP_FUNC(0x01266A30, NameAndParameters__Array *, Buffer_1_UnityEngine_InputSystem_Utilities_NameAndParameters__ToArray, (Buffer_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01268350, void, Buffer_1_System_Object___ctor, (Buffer_1_System_Object_ * __this, IEnumerable_1_System_Object_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEC20, Buffer_1_System_Object___ctor__MethodInfo); +DO_APP_FUNC(0x01266A30, Object__Array *, Buffer_1_System_Object__ToArray, (Buffer_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x012687C0, void, Buffer_1_System_UInt32___ctor, (Buffer_1_System_UInt32_ * __this, IEnumerable_1_System_UInt32_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEC28, Buffer_1_System_UInt32___ctor__MethodInfo); +DO_APP_FUNC(0x01266A30, UInt32__Array *, Buffer_1_System_UInt32__ToArray, (Buffer_1_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01268C40, void, Buffer_1_UdpKit_UdpIPv4Address___ctor, (Buffer_1_UdpKit_UdpIPv4Address_ * __this, IEnumerable_1_UdpKit_UdpIPv4Address_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEBD8, Buffer_1_UdpKit_UdpIPv4Address___ctor__MethodInfo); +DO_APP_FUNC(0x01266A30, UdpIPv4Address__Array *, Buffer_1_UdpKit_UdpIPv4Address__ToArray, (Buffer_1_UdpKit_UdpIPv4Address_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x012690C0, void, Buffer_1_UnityEngine_Vector2___ctor, (Buffer_1_UnityEngine_Vector2_ * __this, IEnumerable_1_UnityEngine_Vector2_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEBE8, Buffer_1_UnityEngine_Vector2___ctor__MethodInfo); +DO_APP_FUNC(0x01266A30, Vector2__Array *, Buffer_1_UnityEngine_Vector2__ToArray, (Buffer_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01269550, void, Buffer_1_UnityEngine_Vector3___ctor, (Buffer_1_UnityEngine_Vector3_ * __this, IEnumerable_1_UnityEngine_Vector3_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEB90, Buffer_1_UnityEngine_Vector3___ctor__MethodInfo); +DO_APP_FUNC(0x01266A30, Vector3__Array *, Buffer_1_UnityEngine_Vector3__ToArray, (Buffer_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x012699F0, void, Buffer_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere___ctor, (Buffer_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere_ * __this, IEnumerable_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEB98, Buffer_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere___ctor__MethodInfo); +DO_APP_FUNC(0x01266A30, HairDesignerColliderBase_DualSphere__Array *, Buffer_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere__ToArray, (Buffer_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01269F30, void, Buffer_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement___ctor, (Buffer_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement_ * __this, IEnumerable_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEBB8, Buffer_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement___ctor__MethodInfo); +DO_APP_FUNC(0x01266A30, InputControlScheme_DeviceRequirement__Array *, Buffer_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement__ToArray, (Buffer_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0126A4B0, void, Buffer_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData___ctor, (Buffer_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData_ * __this, IEnumerable_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEB58, Buffer_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData___ctor__MethodInfo); +DO_APP_FUNC(0x01266A30, MotionSolver_GPUNodeData__Array *, Buffer_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData__ToArray, (Buffer_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0126A9F0, void, Buffer_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo___ctor, (Buffer_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo_ * __this, IEnumerable_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEB78, Buffer_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo___ctor__MethodInfo); +DO_APP_FUNC(0x01266A30, MotionSolver_GPUNodeInfo__Array *, Buffer_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo__ToArray, (Buffer_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0126AF50, void, ByReference_1_Byte___ctor, (ByReference_1_Byte_ * __this, uint8_t * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEB70, ByReference_1_Byte___ctor__MethodInfo); +DO_APP_FUNC(0x0126AFA0, uint8_t *, ByReference_1_Byte__get_Value, (ByReference_1_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEB88, ByReference_1_Byte__get_Value__MethodInfo); +DO_APP_FUNC(0x0126AFF0, void, ByReference_1_Char___ctor, (ByReference_1_Char_ * __this, uint16_t * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEB80, ByReference_1_Char___ctor__MethodInfo); +DO_APP_FUNC(0x0126B040, uint16_t *, ByReference_1_Char__get_Value, (ByReference_1_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEB18, ByReference_1_Char__get_Value__MethodInfo); +DO_APP_FUNC(0x0126B090, void, ByReference_1_Int32___ctor, (ByReference_1_Int32_ * __this, int32_t * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEB10, ByReference_1_Int32___ctor__MethodInfo); +DO_APP_FUNC(0x0126B0E0, int32_t *, ByReference_1_Int32__get_Value, (ByReference_1_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEB28, ByReference_1_Int32__get_Value__MethodInfo); +DO_APP_FUNC(0x0126B130, void, ByReference_1_Object___ctor, (ByReference_1_Object_ * __this, Object * * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEB20, ByReference_1_Object___ctor__MethodInfo); +DO_APP_FUNC(0x0126B180, Object * *, ByReference_1_Object__get_Value, (ByReference_1_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEB38, ByReference_1_Object__get_Value__MethodInfo); +DO_APP_FUNC(0x0126B1D0, void, ByReference_1_UInt16___ctor, (ByReference_1_UInt16_ * __this, uint16_t * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEB30, ByReference_1_UInt16___ctor__MethodInfo); +DO_APP_FUNC(0x0126B220, uint16_t *, ByReference_1_UInt16__get_Value, (ByReference_1_UInt16_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEB50, ByReference_1_UInt16__get_Value__MethodInfo); +DO_APP_FUNC(0x0126B270, void, ByReference_1_UInt32___ctor, (ByReference_1_UInt32_ * __this, uint32_t * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEB48, ByReference_1_UInt32___ctor__MethodInfo); +DO_APP_FUNC(0x0126B2C0, uint32_t *, ByReference_1_UInt32__get_Value, (ByReference_1_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEB00, ByReference_1_UInt32__get_Value__MethodInfo); DO_APP_FUNC(0x0126B310, void, CacheDict_2_System_Object_System_Object___ctor, (CacheDict_2_System_Object_System_Object_ * __this, int32_t size, MethodInfo * method)); DO_APP_FUNC(0x0126B4E0, void, CacheDict_2_System_Object_System_Object__Add, (CacheDict_2_System_Object_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x0126B3E0, int32_t, CacheDict_2_System_Object_System_Object__AlignSize, (int32_t size, MethodInfo * method)); -DO_APP_FUNC(0x0126B410, bool, CacheDict_2_System_Object_System_Object__TryGetValue, (CacheDict_2_System_Object_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0126B410, bool, CacheDict_2_System_Object_System_Object__TryGetValue, (CacheDict_2_System_Object_System_Object_ * __this, Object * key, Object * * value, MethodInfo * method)); DO_APP_FUNC(0x0126B680, void, CacheDict_2_System_Object_System_Object__set_Item, (CacheDict_2_System_Object_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x0126B6A0, void, CachedInvokableCall_1_System_Boolean___ctor, (CachedInvokableCall_1_System_Boolean_ * __this, Object_1 * target, MethodInfo_1 * theFunction, bool argument, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11F58, CachedInvokableCall_1_System_Boolean___ctor__MethodInfo); DO_APP_FUNC(0x0126B6F0, void, CachedInvokableCall_1_System_Boolean__Invoke, (CachedInvokableCall_1_System_Boolean_ * __this, bool arg0, MethodInfo * method)); DO_APP_FUNC(0x0126B6F0, void, CachedInvokableCall_1_System_Boolean__Invoke_1, (CachedInvokableCall_1_System_Boolean_ * __this, Object__Array * args, MethodInfo * method)); DO_APP_FUNC(0x0126B720, void, CachedInvokableCall_1_System_Int32___ctor, (CachedInvokableCall_1_System_Int32_ * __this, Object_1 * target, MethodInfo_1 * theFunction, int32_t argument, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11F40, CachedInvokableCall_1_System_Int32___ctor__MethodInfo); DO_APP_FUNC(0x0126B760, void, CachedInvokableCall_1_System_Int32__Invoke, (CachedInvokableCall_1_System_Int32_ * __this, int32_t arg0, MethodInfo * method)); DO_APP_FUNC(0x0126B760, void, CachedInvokableCall_1_System_Int32__Invoke_1, (CachedInvokableCall_1_System_Int32_ * __this, Object__Array * args, MethodInfo * method)); DO_APP_FUNC(0x0126B790, void, CachedInvokableCall_1_System_Object___ctor, (CachedInvokableCall_1_System_Object_ * __this, Object_1 * target, MethodInfo_1 * theFunction, Object * argument, MethodInfo * method)); DO_APP_FUNC(0x0126B820, void, CachedInvokableCall_1_System_Object__Invoke, (CachedInvokableCall_1_System_Object_ * __this, Object * arg0, MethodInfo * method)); DO_APP_FUNC(0x0126B820, void, CachedInvokableCall_1_System_Object__Invoke_1, (CachedInvokableCall_1_System_Object_ * __this, Object__Array * args, MethodInfo * method)); DO_APP_FUNC(0x0126B850, void, CachedInvokableCall_1_System_Single___ctor, (CachedInvokableCall_1_System_Single_ * __this, Object_1 * target, MethodInfo_1 * theFunction, float argument, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11F48, CachedInvokableCall_1_System_Single___ctor__MethodInfo); DO_APP_FUNC(0x0126B890, void, CachedInvokableCall_1_System_Single__Invoke, (CachedInvokableCall_1_System_Single_ * __this, float arg0, MethodInfo * method)); DO_APP_FUNC(0x0126B890, void, CachedInvokableCall_1_System_Single__Invoke_1, (CachedInvokableCall_1_System_Single_ * __this, Object__Array * args, MethodInfo * method)); DO_APP_FUNC(0x0126B990, void, CallResult_1_System_Object___ctor, (CallResult_1_System_Object_ * __this, CallResult_1_T_APIDispatchDelegate_System_Object_ * func, MethodInfo * method)); @@ -127735,97 +141327,121 @@ DO_APP_FUNC(0x0126BA50, void, CallResult_1_System_Object__Finalize, (CallResult_ DO_APP_FUNC(0x0126BD80, bool, CallResult_1_System_Object__IsActive, (CallResult_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0126BEB0, void, CallResult_1_System_Object__OnRunCallResult, (CallResult_1_System_Object_ * __this, void * pvParam, bool bFailed, uint64_t hSteamAPICall_, MethodInfo * method)); DO_APP_FUNC(0x0126BB50, void, CallResult_1_System_Object__Set, (CallResult_1_System_Object_ * __this, SteamAPICall_t hAPICall, CallResult_1_T_APIDispatchDelegate_System_Object_ * func, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEAF8, CallResult_1_System_Object__Set__MethodInfo); DO_APP_FUNC(0x0126C060, void, CallResult_1_System_Object__SetUnregistered, (CallResult_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0126C0C0, void, CallResult_1_RemoteStorageFileReadAsyncComplete_t___ctor, (CallResult_1_RemoteStorageFileReadAsyncComplete_t_ * __this, CallResult_1_T_APIDispatchDelegate_RemoteStorageFileReadAsyncComplete_t_ * func, MethodInfo * method)); DO_APP_FUNC(0x0126C4D0, void, CallResult_1_RemoteStorageFileReadAsyncComplete_t__Cancel, (CallResult_1_RemoteStorageFileReadAsyncComplete_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0126B8C0, CallResult_1_RemoteStorageFileReadAsyncComplete_t_ *, CallResult_1_RemoteStorageFileReadAsyncComplete_t__Create, (CallResult_1_T_APIDispatchDelegate_RemoteStorageFileReadAsyncComplete_t_ * func, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6600, CallResult_1_RemoteStorageFileReadAsyncComplete_t__Create__MethodInfo); DO_APP_FUNC(0x0126C180, void, CallResult_1_RemoteStorageFileReadAsyncComplete_t__Dispose, (CallResult_1_RemoteStorageFileReadAsyncComplete_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0126BA50, void, CallResult_1_RemoteStorageFileReadAsyncComplete_t__Finalize, (CallResult_1_RemoteStorageFileReadAsyncComplete_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0126C430, bool, CallResult_1_RemoteStorageFileReadAsyncComplete_t__IsActive, (CallResult_1_RemoteStorageFileReadAsyncComplete_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0126C560, void, CallResult_1_RemoteStorageFileReadAsyncComplete_t__OnRunCallResult, (CallResult_1_RemoteStorageFileReadAsyncComplete_t_ * __this, void * pvParam, bool bFailed, uint64_t hSteamAPICall_, MethodInfo * method)); DO_APP_FUNC(0x0126C200, void, CallResult_1_RemoteStorageFileReadAsyncComplete_t__Set, (CallResult_1_RemoteStorageFileReadAsyncComplete_t_ * __this, SteamAPICall_t hAPICall, CallResult_1_T_APIDispatchDelegate_RemoteStorageFileReadAsyncComplete_t_ * func, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6528, CallResult_1_RemoteStorageFileReadAsyncComplete_t__Set__MethodInfo); DO_APP_FUNC(0x0126C730, void, CallResult_1_RemoteStorageFileReadAsyncComplete_t__SetUnregistered, (CallResult_1_RemoteStorageFileReadAsyncComplete_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0126C790, void, CallResult_1_RemoteStorageFileWriteAsyncComplete_t___ctor, (CallResult_1_RemoteStorageFileWriteAsyncComplete_t_ * __this, CallResult_1_T_APIDispatchDelegate_RemoteStorageFileWriteAsyncComplete_t_ * func, MethodInfo * method)); DO_APP_FUNC(0x0126CBA0, void, CallResult_1_RemoteStorageFileWriteAsyncComplete_t__Cancel, (CallResult_1_RemoteStorageFileWriteAsyncComplete_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0126B8C0, CallResult_1_RemoteStorageFileWriteAsyncComplete_t_ *, CallResult_1_RemoteStorageFileWriteAsyncComplete_t__Create, (CallResult_1_T_APIDispatchDelegate_RemoteStorageFileWriteAsyncComplete_t_ * func, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD65E8, CallResult_1_RemoteStorageFileWriteAsyncComplete_t__Create__MethodInfo); DO_APP_FUNC(0x0126C850, void, CallResult_1_RemoteStorageFileWriteAsyncComplete_t__Dispose, (CallResult_1_RemoteStorageFileWriteAsyncComplete_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0126BA50, void, CallResult_1_RemoteStorageFileWriteAsyncComplete_t__Finalize, (CallResult_1_RemoteStorageFileWriteAsyncComplete_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0126CB00, bool, CallResult_1_RemoteStorageFileWriteAsyncComplete_t__IsActive, (CallResult_1_RemoteStorageFileWriteAsyncComplete_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0126CC30, void, CallResult_1_RemoteStorageFileWriteAsyncComplete_t__OnRunCallResult, (CallResult_1_RemoteStorageFileWriteAsyncComplete_t_ * __this, void * pvParam, bool bFailed, uint64_t hSteamAPICall_, MethodInfo * method)); DO_APP_FUNC(0x0126C8D0, void, CallResult_1_RemoteStorageFileWriteAsyncComplete_t__Set, (CallResult_1_RemoteStorageFileWriteAsyncComplete_t_ * __this, SteamAPICall_t hAPICall, CallResult_1_T_APIDispatchDelegate_RemoteStorageFileWriteAsyncComplete_t_ * func, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6500, CallResult_1_RemoteStorageFileWriteAsyncComplete_t__Set__MethodInfo); DO_APP_FUNC(0x0126CDE0, void, CallResult_1_RemoteStorageFileWriteAsyncComplete_t__SetUnregistered, (CallResult_1_RemoteStorageFileWriteAsyncComplete_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0126CE40, void, CallResult_1_SteamInventoryRequestPricesResult_t___ctor, (CallResult_1_SteamInventoryRequestPricesResult_t_ * __this, CallResult_1_T_APIDispatchDelegate_SteamInventoryRequestPricesResult_t_ * func, MethodInfo * method)); DO_APP_FUNC(0x0126D250, void, CallResult_1_SteamInventoryRequestPricesResult_t__Cancel, (CallResult_1_SteamInventoryRequestPricesResult_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0126B8C0, CallResult_1_SteamInventoryRequestPricesResult_t_ *, CallResult_1_SteamInventoryRequestPricesResult_t__Create, (CallResult_1_T_APIDispatchDelegate_SteamInventoryRequestPricesResult_t_ * func, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1BF68, CallResult_1_SteamInventoryRequestPricesResult_t__Create__MethodInfo); DO_APP_FUNC(0x0126CF00, void, CallResult_1_SteamInventoryRequestPricesResult_t__Dispose, (CallResult_1_SteamInventoryRequestPricesResult_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0126BA50, void, CallResult_1_SteamInventoryRequestPricesResult_t__Finalize, (CallResult_1_SteamInventoryRequestPricesResult_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0126D1B0, bool, CallResult_1_SteamInventoryRequestPricesResult_t__IsActive, (CallResult_1_SteamInventoryRequestPricesResult_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0126D2E0, void, CallResult_1_SteamInventoryRequestPricesResult_t__OnRunCallResult, (CallResult_1_SteamInventoryRequestPricesResult_t_ * __this, void * pvParam, bool bFailed, uint64_t hSteamAPICall_, MethodInfo * method)); DO_APP_FUNC(0x0126CF80, void, CallResult_1_SteamInventoryRequestPricesResult_t__Set, (CallResult_1_SteamInventoryRequestPricesResult_t_ * __this, SteamAPICall_t hAPICall, CallResult_1_T_APIDispatchDelegate_SteamInventoryRequestPricesResult_t_ * func, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1BEC0, CallResult_1_SteamInventoryRequestPricesResult_t__Set__MethodInfo); DO_APP_FUNC(0x0126D4A0, void, CallResult_1_SteamInventoryRequestPricesResult_t__SetUnregistered, (CallResult_1_SteamInventoryRequestPricesResult_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0126D500, void, CallResult_1_SteamInventoryStartPurchaseResult_t___ctor, (CallResult_1_SteamInventoryStartPurchaseResult_t_ * __this, CallResult_1_T_APIDispatchDelegate_SteamInventoryStartPurchaseResult_t_ * func, MethodInfo * method)); DO_APP_FUNC(0x0126D910, void, CallResult_1_SteamInventoryStartPurchaseResult_t__Cancel, (CallResult_1_SteamInventoryStartPurchaseResult_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0126B8C0, CallResult_1_SteamInventoryStartPurchaseResult_t_ *, CallResult_1_SteamInventoryStartPurchaseResult_t__Create, (CallResult_1_T_APIDispatchDelegate_SteamInventoryStartPurchaseResult_t_ * func, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1BF78, CallResult_1_SteamInventoryStartPurchaseResult_t__Create__MethodInfo); DO_APP_FUNC(0x0126D5C0, void, CallResult_1_SteamInventoryStartPurchaseResult_t__Dispose, (CallResult_1_SteamInventoryStartPurchaseResult_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0126BA50, void, CallResult_1_SteamInventoryStartPurchaseResult_t__Finalize, (CallResult_1_SteamInventoryStartPurchaseResult_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0126D870, bool, CallResult_1_SteamInventoryStartPurchaseResult_t__IsActive, (CallResult_1_SteamInventoryStartPurchaseResult_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0126D9A0, void, CallResult_1_SteamInventoryStartPurchaseResult_t__OnRunCallResult, (CallResult_1_SteamInventoryStartPurchaseResult_t_ * __this, void * pvParam, bool bFailed, uint64_t hSteamAPICall_, MethodInfo * method)); DO_APP_FUNC(0x0126D640, void, CallResult_1_SteamInventoryStartPurchaseResult_t__Set, (CallResult_1_SteamInventoryStartPurchaseResult_t_ * __this, SteamAPICall_t hAPICall, CallResult_1_T_APIDispatchDelegate_SteamInventoryStartPurchaseResult_t_ * func, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1BC28, CallResult_1_SteamInventoryStartPurchaseResult_t__Set__MethodInfo); DO_APP_FUNC(0x0126DB70, void, CallResult_1_SteamInventoryStartPurchaseResult_t__SetUnregistered, (CallResult_1_SteamInventoryStartPurchaseResult_t_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x0126DDB0, void, CallbackArray_1_System_Object__AddCallback, (CallbackArray_1_System_Object___Boxed * __this, Object * dlg, MethodInfo * method)); -DO_APP_FUNC(0x0126DC20, void, CallbackArray_1_System_Object__Clear, (CallbackArray_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0126E150, void, CallbackArray_1_System_Object__LockForChanges, (CallbackArray_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0126DFA0, void, CallbackArray_1_System_Object__RemoveCallback, (CallbackArray_1_System_Object___Boxed * __this, Object * dlg, MethodInfo * method)); -DO_APP_FUNC(0x0126E160, void, CallbackArray_1_System_Object__UnlockForChanges, (CallbackArray_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0126DBD0, Object *, CallbackArray_1_System_Object__get_Item, (CallbackArray_1_System_Object___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00471920, int32_t, CallbackArray_1_System_Object__get_length, (CallbackArray_1_System_Object___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0126DDB0, void, CallbackArray_1_System_Object__AddCallback, (CallbackArray_1_System_Object_ * __this, Object * dlg, MethodInfo * method)); +DO_APP_FUNC(0x0126DC20, void, CallbackArray_1_System_Object__Clear, (CallbackArray_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0126E150, void, CallbackArray_1_System_Object__LockForChanges, (CallbackArray_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0126DFA0, void, CallbackArray_1_System_Object__RemoveCallback, (CallbackArray_1_System_Object_ * __this, Object * dlg, MethodInfo * method)); +DO_APP_FUNC(0x0126E160, void, CallbackArray_1_System_Object__UnlockForChanges, (CallbackArray_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0126DBD0, Object *, CallbackArray_1_System_Object__get_Item, (CallbackArray_1_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00471920, int32_t, CallbackArray_1_System_Object__get_length, (CallbackArray_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0126E7E0, void, Callback_1_FloatingGamepadTextInputDismissed_t___ctor, (Callback_1_FloatingGamepadTextInputDismissed_t_ * __this, Callback_1_T_DispatchDelegate_FloatingGamepadTextInputDismissed_t_ * func, bool bGameServer, MethodInfo * method)); DO_APP_FUNC(0x0126E710, Callback_1_FloatingGamepadTextInputDismissed_t_ *, Callback_1_FloatingGamepadTextInputDismissed_t__Create, (Callback_1_T_DispatchDelegate_FloatingGamepadTextInputDismissed_t_ * func, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB980, Callback_1_FloatingGamepadTextInputDismissed_t__Create__MethodInfo); DO_APP_FUNC(0x0126E880, void, Callback_1_FloatingGamepadTextInputDismissed_t__Dispose, (Callback_1_FloatingGamepadTextInputDismissed_t_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA7E8, Callback_1_FloatingGamepadTextInputDismissed_t__Dispose__MethodInfo); DO_APP_FUNC(0x0126E800, void, Callback_1_FloatingGamepadTextInputDismissed_t__Finalize, (Callback_1_FloatingGamepadTextInputDismissed_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0126EAB0, Type *, Callback_1_FloatingGamepadTextInputDismissed_t__GetCallbackType, (Callback_1_FloatingGamepadTextInputDismissed_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0126EB10, void, Callback_1_FloatingGamepadTextInputDismissed_t__OnRunCallback, (Callback_1_FloatingGamepadTextInputDismissed_t_ * __this, void * pvParam, MethodInfo * method)); DO_APP_FUNC(0x0126E910, void, Callback_1_FloatingGamepadTextInputDismissed_t__Register, (Callback_1_FloatingGamepadTextInputDismissed_t_ * __this, Callback_1_T_DispatchDelegate_FloatingGamepadTextInputDismissed_t_ * func, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEAE0, Callback_1_FloatingGamepadTextInputDismissed_t__Register__MethodInfo); DO_APP_FUNC(0x006DAEF0, void, Callback_1_FloatingGamepadTextInputDismissed_t__SetUnregistered, (Callback_1_FloatingGamepadTextInputDismissed_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0126EA50, void, Callback_1_FloatingGamepadTextInputDismissed_t__Unregister, (Callback_1_FloatingGamepadTextInputDismissed_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCC40, bool, Callback_1_FloatingGamepadTextInputDismissed_t__get_IsGameServer, (Callback_1_FloatingGamepadTextInputDismissed_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0126E7E0, void, Callback_1_GameLobbyJoinRequested_t___ctor, (Callback_1_GameLobbyJoinRequested_t_ * __this, Callback_1_T_DispatchDelegate_GameLobbyJoinRequested_t_ * func, bool bGameServer, MethodInfo * method)); DO_APP_FUNC(0x0126E710, Callback_1_GameLobbyJoinRequested_t_ *, Callback_1_GameLobbyJoinRequested_t__Create, (Callback_1_T_DispatchDelegate_GameLobbyJoinRequested_t_ * func, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB978, Callback_1_GameLobbyJoinRequested_t__Create__MethodInfo); DO_APP_FUNC(0x0126EC70, void, Callback_1_GameLobbyJoinRequested_t__Dispose, (Callback_1_GameLobbyJoinRequested_t_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA800, Callback_1_GameLobbyJoinRequested_t__Dispose__MethodInfo); DO_APP_FUNC(0x0126E800, void, Callback_1_GameLobbyJoinRequested_t__Finalize, (Callback_1_GameLobbyJoinRequested_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0126EEA0, Type *, Callback_1_GameLobbyJoinRequested_t__GetCallbackType, (Callback_1_GameLobbyJoinRequested_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0126EF00, void, Callback_1_GameLobbyJoinRequested_t__OnRunCallback, (Callback_1_GameLobbyJoinRequested_t_ * __this, void * pvParam, MethodInfo * method)); DO_APP_FUNC(0x0126ED00, void, Callback_1_GameLobbyJoinRequested_t__Register, (Callback_1_GameLobbyJoinRequested_t_ * __this, Callback_1_T_DispatchDelegate_GameLobbyJoinRequested_t_ * func, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEAD0, Callback_1_GameLobbyJoinRequested_t__Register__MethodInfo); DO_APP_FUNC(0x006DAEF0, void, Callback_1_GameLobbyJoinRequested_t__SetUnregistered, (Callback_1_GameLobbyJoinRequested_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0126EE40, void, Callback_1_GameLobbyJoinRequested_t__Unregister, (Callback_1_GameLobbyJoinRequested_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCC40, bool, Callback_1_GameLobbyJoinRequested_t__get_IsGameServer, (Callback_1_GameLobbyJoinRequested_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0126E7E0, void, Callback_1_GamepadTextInputDismissed_t___ctor, (Callback_1_GamepadTextInputDismissed_t_ * __this, Callback_1_T_DispatchDelegate_GamepadTextInputDismissed_t_ * func, bool bGameServer, MethodInfo * method)); DO_APP_FUNC(0x0126E710, Callback_1_GamepadTextInputDismissed_t_ *, Callback_1_GamepadTextInputDismissed_t__Create, (Callback_1_T_DispatchDelegate_GamepadTextInputDismissed_t_ * func, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB988, Callback_1_GamepadTextInputDismissed_t__Create__MethodInfo); DO_APP_FUNC(0x0126F070, void, Callback_1_GamepadTextInputDismissed_t__Dispose, (Callback_1_GamepadTextInputDismissed_t_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA818, Callback_1_GamepadTextInputDismissed_t__Dispose__MethodInfo); DO_APP_FUNC(0x0126E800, void, Callback_1_GamepadTextInputDismissed_t__Finalize, (Callback_1_GamepadTextInputDismissed_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0126F2A0, Type *, Callback_1_GamepadTextInputDismissed_t__GetCallbackType, (Callback_1_GamepadTextInputDismissed_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0126F300, void, Callback_1_GamepadTextInputDismissed_t__OnRunCallback, (Callback_1_GamepadTextInputDismissed_t_ * __this, void * pvParam, MethodInfo * method)); DO_APP_FUNC(0x0126F100, void, Callback_1_GamepadTextInputDismissed_t__Register, (Callback_1_GamepadTextInputDismissed_t_ * __this, Callback_1_T_DispatchDelegate_GamepadTextInputDismissed_t_ * func, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEAC8, Callback_1_GamepadTextInputDismissed_t__Register__MethodInfo); DO_APP_FUNC(0x006DAEF0, void, Callback_1_GamepadTextInputDismissed_t__SetUnregistered, (Callback_1_GamepadTextInputDismissed_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0126F240, void, Callback_1_GamepadTextInputDismissed_t__Unregister, (Callback_1_GamepadTextInputDismissed_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCC40, bool, Callback_1_GamepadTextInputDismissed_t__get_IsGameServer, (Callback_1_GamepadTextInputDismissed_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0126E7E0, void, Callback_1_LobbyCreated_t___ctor, (Callback_1_LobbyCreated_t_ * __this, Callback_1_T_DispatchDelegate_LobbyCreated_t_ * func, bool bGameServer, MethodInfo * method)); DO_APP_FUNC(0x0126E710, Callback_1_LobbyCreated_t_ *, Callback_1_LobbyCreated_t__Create, (Callback_1_T_DispatchDelegate_LobbyCreated_t_ * func, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB990, Callback_1_LobbyCreated_t__Create__MethodInfo); DO_APP_FUNC(0x0126F480, void, Callback_1_LobbyCreated_t__Dispose, (Callback_1_LobbyCreated_t_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA7F0, Callback_1_LobbyCreated_t__Dispose__MethodInfo); DO_APP_FUNC(0x0126E800, void, Callback_1_LobbyCreated_t__Finalize, (Callback_1_LobbyCreated_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0126F6B0, Type *, Callback_1_LobbyCreated_t__GetCallbackType, (Callback_1_LobbyCreated_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0126F710, void, Callback_1_LobbyCreated_t__OnRunCallback, (Callback_1_LobbyCreated_t_ * __this, void * pvParam, MethodInfo * method)); DO_APP_FUNC(0x0126F510, void, Callback_1_LobbyCreated_t__Register, (Callback_1_LobbyCreated_t_ * __this, Callback_1_T_DispatchDelegate_LobbyCreated_t_ * func, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEAC0, Callback_1_LobbyCreated_t__Register__MethodInfo); DO_APP_FUNC(0x006DAEF0, void, Callback_1_LobbyCreated_t__SetUnregistered, (Callback_1_LobbyCreated_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0126F650, void, Callback_1_LobbyCreated_t__Unregister, (Callback_1_LobbyCreated_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCC40, bool, Callback_1_LobbyCreated_t__get_IsGameServer, (Callback_1_LobbyCreated_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0126E7E0, void, Callback_1_LobbyEnter_t___ctor, (Callback_1_LobbyEnter_t_ * __this, Callback_1_T_DispatchDelegate_LobbyEnter_t_ * func, bool bGameServer, MethodInfo * method)); DO_APP_FUNC(0x0126E710, Callback_1_LobbyEnter_t_ *, Callback_1_LobbyEnter_t__Create, (Callback_1_T_DispatchDelegate_LobbyEnter_t_ * func, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB970, Callback_1_LobbyEnter_t__Create__MethodInfo); DO_APP_FUNC(0x0126F880, void, Callback_1_LobbyEnter_t__Dispose, (Callback_1_LobbyEnter_t_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA7F8, Callback_1_LobbyEnter_t__Dispose__MethodInfo); DO_APP_FUNC(0x0126E800, void, Callback_1_LobbyEnter_t__Finalize, (Callback_1_LobbyEnter_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0126FAB0, Type *, Callback_1_LobbyEnter_t__GetCallbackType, (Callback_1_LobbyEnter_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0126FB10, void, Callback_1_LobbyEnter_t__OnRunCallback, (Callback_1_LobbyEnter_t_ * __this, void * pvParam, MethodInfo * method)); DO_APP_FUNC(0x0126F910, void, Callback_1_LobbyEnter_t__Register, (Callback_1_LobbyEnter_t_ * __this, Callback_1_T_DispatchDelegate_LobbyEnter_t_ * func, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEAA0, Callback_1_LobbyEnter_t__Register__MethodInfo); DO_APP_FUNC(0x006DAEF0, void, Callback_1_LobbyEnter_t__SetUnregistered, (Callback_1_LobbyEnter_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0126FA50, void, Callback_1_LobbyEnter_t__Unregister, (Callback_1_LobbyEnter_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCC40, bool, Callback_1_LobbyEnter_t__get_IsGameServer, (Callback_1_LobbyEnter_t_ * __this, MethodInfo * method)); @@ -127836,56 +141452,67 @@ DO_APP_FUNC(0x0126E800, void, Callback_1_System_Object__Finalize, (Callback_1_Sy DO_APP_FUNC(0x0126FEC0, Type *, Callback_1_System_Object__GetCallbackType, (Callback_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0126FF20, void, Callback_1_System_Object__OnRunCallback, (Callback_1_System_Object_ * __this, void * pvParam, MethodInfo * method)); DO_APP_FUNC(0x0126FD20, void, Callback_1_System_Object__Register, (Callback_1_System_Object_ * __this, Callback_1_T_DispatchDelegate_System_Object_ * func, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEA98, Callback_1_System_Object__Register__MethodInfo); DO_APP_FUNC(0x006DAEF0, void, Callback_1_System_Object__SetUnregistered, (Callback_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0126FE60, void, Callback_1_System_Object__Unregister, (Callback_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCC40, bool, Callback_1_System_Object__get_IsGameServer, (Callback_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0126E7E0, void, Callback_1_SteamInventoryDefinitionUpdate_t___ctor, (Callback_1_SteamInventoryDefinitionUpdate_t_ * __this, Callback_1_T_DispatchDelegate_SteamInventoryDefinitionUpdate_t_ * func, bool bGameServer, MethodInfo * method)); DO_APP_FUNC(0x0126E710, Callback_1_SteamInventoryDefinitionUpdate_t_ *, Callback_1_SteamInventoryDefinitionUpdate_t__Create, (Callback_1_T_DispatchDelegate_SteamInventoryDefinitionUpdate_t_ * func, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1BF48, Callback_1_SteamInventoryDefinitionUpdate_t__Create__MethodInfo); DO_APP_FUNC(0x01270090, void, Callback_1_SteamInventoryDefinitionUpdate_t__Dispose, (Callback_1_SteamInventoryDefinitionUpdate_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0126E800, void, Callback_1_SteamInventoryDefinitionUpdate_t__Finalize, (Callback_1_SteamInventoryDefinitionUpdate_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012702C0, Type *, Callback_1_SteamInventoryDefinitionUpdate_t__GetCallbackType, (Callback_1_SteamInventoryDefinitionUpdate_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01270320, void, Callback_1_SteamInventoryDefinitionUpdate_t__OnRunCallback, (Callback_1_SteamInventoryDefinitionUpdate_t_ * __this, void * pvParam, MethodInfo * method)); DO_APP_FUNC(0x01270120, void, Callback_1_SteamInventoryDefinitionUpdate_t__Register, (Callback_1_SteamInventoryDefinitionUpdate_t_ * __this, Callback_1_T_DispatchDelegate_SteamInventoryDefinitionUpdate_t_ * func, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEA90, Callback_1_SteamInventoryDefinitionUpdate_t__Register__MethodInfo); DO_APP_FUNC(0x006DAEF0, void, Callback_1_SteamInventoryDefinitionUpdate_t__SetUnregistered, (Callback_1_SteamInventoryDefinitionUpdate_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01270260, void, Callback_1_SteamInventoryDefinitionUpdate_t__Unregister, (Callback_1_SteamInventoryDefinitionUpdate_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCC40, bool, Callback_1_SteamInventoryDefinitionUpdate_t__get_IsGameServer, (Callback_1_SteamInventoryDefinitionUpdate_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0126E7E0, void, Callback_1_SteamInventoryFullUpdate_t___ctor, (Callback_1_SteamInventoryFullUpdate_t_ * __this, Callback_1_T_DispatchDelegate_SteamInventoryFullUpdate_t_ * func, bool bGameServer, MethodInfo * method)); DO_APP_FUNC(0x0126E710, Callback_1_SteamInventoryFullUpdate_t_ *, Callback_1_SteamInventoryFullUpdate_t__Create, (Callback_1_T_DispatchDelegate_SteamInventoryFullUpdate_t_ * func, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1BF50, Callback_1_SteamInventoryFullUpdate_t__Create__MethodInfo); DO_APP_FUNC(0x01270480, void, Callback_1_SteamInventoryFullUpdate_t__Dispose, (Callback_1_SteamInventoryFullUpdate_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0126E800, void, Callback_1_SteamInventoryFullUpdate_t__Finalize, (Callback_1_SteamInventoryFullUpdate_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012706B0, Type *, Callback_1_SteamInventoryFullUpdate_t__GetCallbackType, (Callback_1_SteamInventoryFullUpdate_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01270710, void, Callback_1_SteamInventoryFullUpdate_t__OnRunCallback, (Callback_1_SteamInventoryFullUpdate_t_ * __this, void * pvParam, MethodInfo * method)); DO_APP_FUNC(0x01270510, void, Callback_1_SteamInventoryFullUpdate_t__Register, (Callback_1_SteamInventoryFullUpdate_t_ * __this, Callback_1_T_DispatchDelegate_SteamInventoryFullUpdate_t_ * func, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEA88, Callback_1_SteamInventoryFullUpdate_t__Register__MethodInfo); DO_APP_FUNC(0x006DAEF0, void, Callback_1_SteamInventoryFullUpdate_t__SetUnregistered, (Callback_1_SteamInventoryFullUpdate_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01270650, void, Callback_1_SteamInventoryFullUpdate_t__Unregister, (Callback_1_SteamInventoryFullUpdate_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCC40, bool, Callback_1_SteamInventoryFullUpdate_t__get_IsGameServer, (Callback_1_SteamInventoryFullUpdate_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0126E7E0, void, Callback_1_SteamInventoryResultReady_t___ctor, (Callback_1_SteamInventoryResultReady_t_ * __this, Callback_1_T_DispatchDelegate_SteamInventoryResultReady_t_ * func, bool bGameServer, MethodInfo * method)); DO_APP_FUNC(0x0126E710, Callback_1_SteamInventoryResultReady_t_ *, Callback_1_SteamInventoryResultReady_t__Create, (Callback_1_T_DispatchDelegate_SteamInventoryResultReady_t_ * func, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1BF58, Callback_1_SteamInventoryResultReady_t__Create__MethodInfo); DO_APP_FUNC(0x01270870, void, Callback_1_SteamInventoryResultReady_t__Dispose, (Callback_1_SteamInventoryResultReady_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0126E800, void, Callback_1_SteamInventoryResultReady_t__Finalize, (Callback_1_SteamInventoryResultReady_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01270AA0, Type *, Callback_1_SteamInventoryResultReady_t__GetCallbackType, (Callback_1_SteamInventoryResultReady_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01270B00, void, Callback_1_SteamInventoryResultReady_t__OnRunCallback, (Callback_1_SteamInventoryResultReady_t_ * __this, void * pvParam, MethodInfo * method)); DO_APP_FUNC(0x01270900, void, Callback_1_SteamInventoryResultReady_t__Register, (Callback_1_SteamInventoryResultReady_t_ * __this, Callback_1_T_DispatchDelegate_SteamInventoryResultReady_t_ * func, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEA78, Callback_1_SteamInventoryResultReady_t__Register__MethodInfo); DO_APP_FUNC(0x006DAEF0, void, Callback_1_SteamInventoryResultReady_t__SetUnregistered, (Callback_1_SteamInventoryResultReady_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01270A40, void, Callback_1_SteamInventoryResultReady_t__Unregister, (Callback_1_SteamInventoryResultReady_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCC40, bool, Callback_1_SteamInventoryResultReady_t__get_IsGameServer, (Callback_1_SteamInventoryResultReady_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0126E7E0, void, Callback_1_UserAchievementStored_t___ctor, (Callback_1_UserAchievementStored_t_ * __this, Callback_1_T_DispatchDelegate_UserAchievementStored_t_ * func, bool bGameServer, MethodInfo * method)); DO_APP_FUNC(0x0126E710, Callback_1_UserAchievementStored_t_ *, Callback_1_UserAchievementStored_t__Create, (Callback_1_T_DispatchDelegate_UserAchievementStored_t_ * func, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24A80, Callback_1_UserAchievementStored_t__Create__MethodInfo); DO_APP_FUNC(0x01270C60, void, Callback_1_UserAchievementStored_t__Dispose, (Callback_1_UserAchievementStored_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0126E800, void, Callback_1_UserAchievementStored_t__Finalize, (Callback_1_UserAchievementStored_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01270E90, Type *, Callback_1_UserAchievementStored_t__GetCallbackType, (Callback_1_UserAchievementStored_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01270EF0, void, Callback_1_UserAchievementStored_t__OnRunCallback, (Callback_1_UserAchievementStored_t_ * __this, void * pvParam, MethodInfo * method)); DO_APP_FUNC(0x01270CF0, void, Callback_1_UserAchievementStored_t__Register, (Callback_1_UserAchievementStored_t_ * __this, Callback_1_T_DispatchDelegate_UserAchievementStored_t_ * func, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEA50, Callback_1_UserAchievementStored_t__Register__MethodInfo); DO_APP_FUNC(0x006DAEF0, void, Callback_1_UserAchievementStored_t__SetUnregistered, (Callback_1_UserAchievementStored_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01270E30, void, Callback_1_UserAchievementStored_t__Unregister, (Callback_1_UserAchievementStored_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCC40, bool, Callback_1_UserAchievementStored_t__get_IsGameServer, (Callback_1_UserAchievementStored_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0126E7E0, void, Callback_1_UserStatsReceived_t___ctor, (Callback_1_UserStatsReceived_t_ * __this, Callback_1_T_DispatchDelegate_UserStatsReceived_t_ * func, bool bGameServer, MethodInfo * method)); DO_APP_FUNC(0x0126E710, Callback_1_UserStatsReceived_t_ *, Callback_1_UserStatsReceived_t__Create, (Callback_1_T_DispatchDelegate_UserStatsReceived_t_ * func, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24A70, Callback_1_UserStatsReceived_t__Create__MethodInfo); DO_APP_FUNC(0x01271070, void, Callback_1_UserStatsReceived_t__Dispose, (Callback_1_UserStatsReceived_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0126E800, void, Callback_1_UserStatsReceived_t__Finalize, (Callback_1_UserStatsReceived_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012712A0, Type *, Callback_1_UserStatsReceived_t__GetCallbackType, (Callback_1_UserStatsReceived_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01271300, void, Callback_1_UserStatsReceived_t__OnRunCallback, (Callback_1_UserStatsReceived_t_ * __this, void * pvParam, MethodInfo * method)); DO_APP_FUNC(0x01271100, void, Callback_1_UserStatsReceived_t__Register, (Callback_1_UserStatsReceived_t_ * __this, Callback_1_T_DispatchDelegate_UserStatsReceived_t_ * func, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEA48, Callback_1_UserStatsReceived_t__Register__MethodInfo); DO_APP_FUNC(0x006DAEF0, void, Callback_1_UserStatsReceived_t__SetUnregistered, (Callback_1_UserStatsReceived_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01271240, void, Callback_1_UserStatsReceived_t__Unregister, (Callback_1_UserStatsReceived_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCC40, bool, Callback_1_UserStatsReceived_t__get_IsGameServer, (Callback_1_UserStatsReceived_t_ * __this, MethodInfo * method)); @@ -128007,9 +141634,11 @@ DO_APP_FUNC(0x01275C90, String *, ChainOperation_2_UnityEngine_ResourceManagemen DO_APP_FUNC(0x01276930, float, ChainOperation_2_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__get_Progress, (ChainOperation_2_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01276D10, void, ChangeEvent_1_System_Boolean___ctor, (ChangeEvent_1_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01276B90, ChangeEvent_1_System_Boolean_ *, ChangeEvent_1_System_Boolean__GetPooled, (bool previousValue, bool newValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0410, ChangeEvent_1_System_Boolean__GetPooled__MethodInfo); DO_APP_FUNC(0x01276AD0, void, ChangeEvent_1_System_Boolean__Init, (ChangeEvent_1_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01276B30, void, ChangeEvent_1_System_Boolean__LocalInit, (ChangeEvent_1_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x005D90E0, bool, ChangeEvent_1_System_Boolean__get_newValue, (ChangeEvent_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2110, ChangeEvent_1_System_Boolean__get_newValue__MethodInfo); DO_APP_FUNC(0x005D90C0, bool, ChangeEvent_1_System_Boolean__get_previousValue, (ChangeEvent_1_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x005D90F0, void, ChangeEvent_1_System_Boolean__set_newValue, (ChangeEvent_1_System_Boolean_ * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x005D90D0, void, ChangeEvent_1_System_Boolean__set_previousValue, (ChangeEvent_1_System_Boolean_ * __this, bool value, MethodInfo * method)); @@ -128031,9 +141660,11 @@ DO_APP_FUNC(0x00548980, void, ChangeEvent_1_System_Object__set_newValue, (Change DO_APP_FUNC(0x00A86420, void, ChangeEvent_1_System_Object__set_previousValue, (ChangeEvent_1_System_Object_ * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01276D10, void, ChangeEvent_1_System_Single___ctor, (ChangeEvent_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01277140, ChangeEvent_1_System_Single_ *, ChangeEvent_1_System_Single__GetPooled, (float previousValue, float newValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE23C0, ChangeEvent_1_System_Single__GetPooled__MethodInfo); DO_APP_FUNC(0x01276AD0, void, ChangeEvent_1_System_Single__Init, (ChangeEvent_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012770D0, void, ChangeEvent_1_System_Single__LocalInit, (ChangeEvent_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012770B0, float, ChangeEvent_1_System_Single__get_newValue, (ChangeEvent_1_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2028, ChangeEvent_1_System_Single__get_newValue__MethodInfo); DO_APP_FUNC(0x00A3BBB0, float, ChangeEvent_1_System_Single__get_previousValue, (ChangeEvent_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012770C0, void, ChangeEvent_1_System_Single__set_newValue, (ChangeEvent_1_System_Single_ * __this, float value, MethodInfo * method)); DO_APP_FUNC(0x00A3BBC0, void, ChangeEvent_1_System_Single__set_previousValue, (ChangeEvent_1_System_Single_ * __this, float value, MethodInfo * method)); @@ -128045,12 +141676,15 @@ DO_APP_FUNC(0x012772E0, Vector2, ChangeEvent_1_UnityEngine_Vector2__get_newValue DO_APP_FUNC(0x012772C0, Vector2, ChangeEvent_1_UnityEngine_Vector2__get_previousValue, (ChangeEvent_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01277300, void, ChangeEvent_1_UnityEngine_Vector2__set_newValue, (ChangeEvent_1_UnityEngine_Vector2_ * __this, Vector2 value, MethodInfo * method)); DO_APP_FUNC(0x010534B0, void, ChangeEvent_1_UnityEngine_Vector2__set_previousValue, (ChangeEvent_1_UnityEngine_Vector2_ * __this, Vector2 value, MethodInfo * method)); -DO_APP_FUNC(0x01277510, void, VoiceSender_1_TPeer_ChannelDelta_Dissonance_Integrations_PhotonBolt_BoltPeer___ctor, (VoiceSender_1_TPeer_ChannelDelta_Dissonance_Integrations_PhotonBolt_BoltPeer___Boxed * __this, bool open, ChannelType__Enum type, ChannelProperties * properties, uint16_t recipientId, String * recipientName, MethodInfo * method)); +DO_APP_FUNC(0x01277510, void, VoiceSender_1_TPeer_ChannelDelta_Dissonance_Integrations_PhotonBolt_BoltPeer___ctor, (VoiceSender_1_TPeer_ChannelDelta_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, bool open, ChannelType__Enum type, ChannelProperties * properties, uint16_t recipientId, String * recipientName, MethodInfo * method)); DO_APP_FUNC(0x01277840, void, Channels_2_System_Object_System_Object___ctor, (Channels_2_System_Object_System_Object_ * __this, IChannelPriorityProvider * priorityProvider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0298, Channels_2_System_Object_System_Object___ctor__MethodInfo); DO_APP_FUNC(0x01278010, bool, Channels_2_System_Object_System_Object__Close, (Channels_2_System_Object_System_Object_ * __this, Object * channel, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0218, Channels_2_System_Object_System_Object__Close__MethodInfo); DO_APP_FUNC(0x01277BD0, bool, Channels_2_System_Object_System_Object__Contains, (Channels_2_System_Object_System_Object_ * __this, Object * item, MethodInfo * method)); DO_APP_FUNC(0x01278740, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_System_Object_, Channels_2_System_Object_System_Object__GetEnumerator, (Channels_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01277C70, Object *, Channels_2_System_Object_System_Object__Open, (Channels_2_System_Object_System_Object_ * __this, Object * id, bool positional, ChannelPriority__Enum priority, float amplitudeMultiplier, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0248, Channels_2_System_Object_System_Object__Open__MethodInfo); DO_APP_FUNC(0x012782C0, void, Channels_2_System_Object_System_Object__Refresh, (Channels_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012775E0, void, Channels_2_System_Object_System_Object__add_ClosedChannel, (Channels_2_System_Object_System_Object_ * __this, Action_2_Object_Dissonance_ChannelProperties_ * value, MethodInfo * method)); DO_APP_FUNC(0x01055450, void, Channels_2_System_Object_System_Object__add_OpenedChannel, (Channels_2_System_Object_System_Object_ * __this, Action_2_Object_Dissonance_ChannelProperties_ * value, MethodInfo * method)); @@ -128058,10 +141692,13 @@ DO_APP_FUNC(0x01277800, int32_t, Channels_2_System_Object_System_Object__get_Cou DO_APP_FUNC(0x012776F0, void, Channels_2_System_Object_System_Object__remove_ClosedChannel, (Channels_2_System_Object_System_Object_ * __this, Action_2_Object_Dissonance_ChannelProperties_ * value, MethodInfo * method)); DO_APP_FUNC(0x01055560, void, Channels_2_System_Object_System_Object__remove_OpenedChannel, (Channels_2_System_Object_System_Object_ * __this, Action_2_Object_Dissonance_ChannelProperties_ * value, MethodInfo * method)); DO_APP_FUNC(0x012787B0, void, Channels_2_PlayerChannel_System_Object___ctor, (Channels_2_PlayerChannel_System_Object_ * __this, IChannelPriorityProvider * priorityProvider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD01D8, Channels_2_PlayerChannel_System_Object___ctor__MethodInfo); DO_APP_FUNC(0x01278EB0, bool, Channels_2_PlayerChannel_System_Object__Close, (Channels_2_PlayerChannel_System_Object_ * __this, PlayerChannel channel, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD01D0, Channels_2_PlayerChannel_System_Object__Close__MethodInfo); DO_APP_FUNC(0x01278B40, bool, Channels_2_PlayerChannel_System_Object__Contains, (Channels_2_PlayerChannel_System_Object_ * __this, PlayerChannel item, MethodInfo * method)); DO_APP_FUNC(0x01279480, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel_, Channels_2_PlayerChannel_System_Object__GetEnumerator, (Channels_2_PlayerChannel_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01278B80, PlayerChannel, Channels_2_PlayerChannel_System_Object__Open, (Channels_2_PlayerChannel_System_Object_ * __this, Object * id, bool positional, ChannelPriority__Enum priority, float amplitudeMultiplier, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD01E0, Channels_2_PlayerChannel_System_Object__Open__MethodInfo); DO_APP_FUNC(0x01279080, void, Channels_2_PlayerChannel_System_Object__Refresh, (Channels_2_PlayerChannel_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012775E0, void, Channels_2_PlayerChannel_System_Object__add_ClosedChannel, (Channels_2_PlayerChannel_System_Object_ * __this, Action_2_Object_Dissonance_ChannelProperties_ * value, MethodInfo * method)); DO_APP_FUNC(0x01055450, void, Channels_2_PlayerChannel_System_Object__add_OpenedChannel, (Channels_2_PlayerChannel_System_Object_ * __this, Action_2_Object_Dissonance_ChannelProperties_ * value, MethodInfo * method)); @@ -128087,7 +141724,9 @@ DO_APP_FUNC_METHODINFO(0x03C8FA70, Channels_2_RoomChannel_RoomName__add_OpenedCh DO_APP_FUNC(0x01277800, int32_t, Channels_2_RoomChannel_RoomName__get_Count, (Channels_2_RoomChannel_RoomName_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8F068, Channels_2_RoomChannel_RoomName__get_Count__MethodInfo); DO_APP_FUNC(0x012776F0, void, Channels_2_RoomChannel_RoomName__remove_ClosedChannel, (Channels_2_RoomChannel_RoomName_ * __this, Action_2_Dissonance_RoomName_Dissonance_ChannelProperties_ * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC4260, Channels_2_RoomChannel_RoomName__remove_ClosedChannel__MethodInfo); DO_APP_FUNC(0x01055560, void, Channels_2_RoomChannel_RoomName__remove_OpenedChannel, (Channels_2_RoomChannel_RoomName_ * __this, Action_2_Dissonance_RoomName_Dissonance_ChannelProperties_ * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC4278, Channels_2_RoomChannel_RoomName__remove_OpenedChannel__MethodInfo); DO_APP_FUNC(0x0127A980, void, ClampedDragger_1_System_Int32___ctor, (ClampedDragger_1_System_Int32_ * __this, BaseSlider_1_System_Int32_ * slider, Action * clickHandler, Action * dragHandler, MethodInfo * method)); DO_APP_FUNC(0x0127AA30, void, ClampedDragger_1_System_Int32__ProcessDownEvent, (ClampedDragger_1_System_Int32_ * __this, EventBase * evt, Vector2 localPosition, int32_t pointerId, MethodInfo * method)); DO_APP_FUNC(0x0127AB30, void, ClampedDragger_1_System_Int32__ProcessMoveEvent, (ClampedDragger_1_System_Int32_ * __this, EventBase * evt, Vector2 localPosition, MethodInfo * method)); @@ -128096,10 +141735,12 @@ DO_APP_FUNC(0x0127A500, void, ClampedDragger_1_System_Int32__add_dragging, (Clam DO_APP_FUNC(0x0127A6E0, void, ClampedDragger_1_System_Int32__add_draggingEnded, (ClampedDragger_1_System_Int32_ * __this, Action * value, MethodInfo * method)); DO_APP_FUNC(0x0127A910, Vector2, ClampedDragger_1_System_Int32__get_delta, (ClampedDragger_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00C2C4C0, ClampedDragger_1_T_DragDirection_System_Int32_ *, ClampedDragger_1_System_Int32__get_dragDirection, (ClampedDragger_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE18F0, ClampedDragger_1_System_Int32__get_dragDirection__MethodInfo); DO_APP_FUNC(0x0127A8E0, Vector2, ClampedDragger_1_System_Int32__get_startMousePosition, (ClampedDragger_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0127A5F0, void, ClampedDragger_1_System_Int32__remove_dragging, (ClampedDragger_1_System_Int32_ * __this, Action * value, MethodInfo * method)); DO_APP_FUNC(0x0127A7E0, void, ClampedDragger_1_System_Int32__remove_draggingEnded, (ClampedDragger_1_System_Int32_ * __this, Action * value, MethodInfo * method)); DO_APP_FUNC(0x00C2C4D0, void, ClampedDragger_1_System_Int32__set_dragDirection, (ClampedDragger_1_System_Int32_ * __this, ClampedDragger_1_T_DragDirection_System_Int32_ * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE18F8, ClampedDragger_1_System_Int32__set_dragDirection__MethodInfo); DO_APP_FUNC(0x00A4F070, void, ClampedDragger_1_System_Int32__set_slider, (ClampedDragger_1_System_Int32_ * __this, BaseSlider_1_System_Int32_ * value, MethodInfo * method)); DO_APP_FUNC(0x0127A900, void, ClampedDragger_1_System_Int32__set_startMousePosition, (ClampedDragger_1_System_Int32_ * __this, Vector2 value, MethodInfo * method)); DO_APP_FUNC(0x0127A980, void, ClampedDragger_1_System_Object___ctor, (ClampedDragger_1_System_Object_ * __this, BaseSlider_1_System_Object_ * slider, Action * clickHandler, Action * dragHandler, MethodInfo * method)); @@ -128117,17 +141758,23 @@ DO_APP_FUNC(0x00C2C4D0, void, ClampedDragger_1_System_Object__set_dragDirection, DO_APP_FUNC(0x00A4F070, void, ClampedDragger_1_System_Object__set_slider, (ClampedDragger_1_System_Object_ * __this, BaseSlider_1_System_Object_ * value, MethodInfo * method)); DO_APP_FUNC(0x0127A900, void, ClampedDragger_1_System_Object__set_startMousePosition, (ClampedDragger_1_System_Object_ * __this, Vector2 value, MethodInfo * method)); DO_APP_FUNC(0x0127A980, void, ClampedDragger_1_System_Single___ctor, (ClampedDragger_1_System_Single_ * __this, BaseSlider_1_System_Single_ * slider, Action * clickHandler, Action * dragHandler, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFE70, ClampedDragger_1_System_Single___ctor__MethodInfo); DO_APP_FUNC(0x0127AA30, void, ClampedDragger_1_System_Single__ProcessDownEvent, (ClampedDragger_1_System_Single_ * __this, EventBase * evt, Vector2 localPosition, int32_t pointerId, MethodInfo * method)); DO_APP_FUNC(0x0127B750, void, ClampedDragger_1_System_Single__ProcessMoveEvent, (ClampedDragger_1_System_Single_ * __this, EventBase * evt, Vector2 localPosition, MethodInfo * method)); DO_APP_FUNC(0x0127AAE0, void, ClampedDragger_1_System_Single__ProcessUpEvent, (ClampedDragger_1_System_Single_ * __this, EventBase * evt, Vector2 localPosition, int32_t pointerId, MethodInfo * method)); DO_APP_FUNC(0x0127B370, void, ClampedDragger_1_System_Single__add_dragging, (ClampedDragger_1_System_Single_ * __this, Action * value, MethodInfo * method)); DO_APP_FUNC(0x0127B550, void, ClampedDragger_1_System_Single__add_draggingEnded, (ClampedDragger_1_System_Single_ * __this, Action * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1E20, ClampedDragger_1_System_Single__add_draggingEnded__MethodInfo); DO_APP_FUNC(0x0127A910, Vector2, ClampedDragger_1_System_Single__get_delta, (ClampedDragger_1_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFEB0, ClampedDragger_1_System_Single__get_delta__MethodInfo); DO_APP_FUNC(0x00C2C4C0, ClampedDragger_1_T_DragDirection_System_Single_ *, ClampedDragger_1_System_Single__get_dragDirection, (ClampedDragger_1_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFEA8, ClampedDragger_1_System_Single__get_dragDirection__MethodInfo); DO_APP_FUNC(0x0127A8E0, Vector2, ClampedDragger_1_System_Single__get_startMousePosition, (ClampedDragger_1_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFEA0, ClampedDragger_1_System_Single__get_startMousePosition__MethodInfo); DO_APP_FUNC(0x0127B460, void, ClampedDragger_1_System_Single__remove_dragging, (ClampedDragger_1_System_Single_ * __this, Action * value, MethodInfo * method)); DO_APP_FUNC(0x0127B650, void, ClampedDragger_1_System_Single__remove_draggingEnded, (ClampedDragger_1_System_Single_ * __this, Action * value, MethodInfo * method)); DO_APP_FUNC(0x00C2C4D0, void, ClampedDragger_1_System_Single__set_dragDirection, (ClampedDragger_1_System_Single_ * __this, ClampedDragger_1_T_DragDirection_System_Single_ * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFED8, ClampedDragger_1_System_Single__set_dragDirection__MethodInfo); DO_APP_FUNC(0x00A4F070, void, ClampedDragger_1_System_Single__set_slider, (ClampedDragger_1_System_Single_ * __this, BaseSlider_1_System_Single_ * value, MethodInfo * method)); DO_APP_FUNC(0x0127A900, void, ClampedDragger_1_System_Single__set_startMousePosition, (ClampedDragger_1_System_Single_ * __this, Vector2 value, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, RoomClientsCollection_1_T_ClientIdComparer_System_Nullable_1___ctor, (RoomClientsCollection_1_T_ClientIdComparer_System_Nullable_1_ * __this, MethodInfo * method)); @@ -128139,10 +141786,12 @@ DO_APP_FUNC(0x0127B980, int32_t, RoomClientsCollection_1_T_ClientIdComparer_Syst DO_APP_FUNC(0x0127C430, void, ClientInfo_1_System_Nullable_1___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0127BAD0, void, ClientInfo_1_System_Nullable_1___ctor, (ClientInfo_1_System_Nullable_1_ * __this, String * playerName, uint16_t playerId, CodecSettings codecSettings, Nullable_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ connection, MethodInfo * method)); DO_APP_FUNC(0x0127C250, bool, ClientInfo_1_System_Nullable_1__AddRoom, (ClientInfo_1_System_Nullable_1_ * __this, String * roomName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0110, ClientInfo_1_System_Nullable_1__AddRoom__MethodInfo); DO_APP_FUNC(0x0127BEF0, bool, ClientInfo_1_System_Nullable_1__Equals, (ClientInfo_1_System_Nullable_1_ * __this, ClientInfo_1_System_Nullable_1_ * other, MethodInfo * method)); DO_APP_FUNC(0x0127C040, bool, ClientInfo_1_System_Nullable_1__Equals_1, (ClientInfo_1_System_Nullable_1_ * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x0127C180, int32_t, ClientInfo_1_System_Nullable_1__GetHashCode, (ClientInfo_1_System_Nullable_1_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0127C340, bool, ClientInfo_1_System_Nullable_1__RemoveRoom, (ClientInfo_1_System_Nullable_1_ * __this, String * roomName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0130, ClientInfo_1_System_Nullable_1__RemoveRoom__MethodInfo); DO_APP_FUNC(0x0127BD60, String *, ClientInfo_1_System_Nullable_1__ToString, (ClientInfo_1_System_Nullable_1_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0127BA40, CodecSettings, ClientInfo_1_System_Nullable_1__get_CodecSettings, (ClientInfo_1_System_Nullable_1_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0127BA60, Nullable_1_Dissonance_Integrations_PhotonBolt_BoltPeer_, ClientInfo_1_System_Nullable_1__get_Connection, (ClientInfo_1_System_Nullable_1_ * __this, MethodInfo * method)); @@ -128157,10 +141806,12 @@ DO_APP_FUNC(0x003C7430, void, ClientInfo_1_System_Nullable_1__set_VoiceReceiver, DO_APP_FUNC(0x0127CD10, void, ClientInfo_1_Dissonance_Integrations_PhotonBolt_BoltPeer___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0127C5D0, void, ClientInfo_1_Dissonance_Integrations_PhotonBolt_BoltPeer___ctor, (ClientInfo_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, String * playerName, uint16_t playerId, CodecSettings codecSettings, BoltPeer connection, MethodInfo * method)); DO_APP_FUNC(0x0127CB30, bool, ClientInfo_1_Dissonance_Integrations_PhotonBolt_BoltPeer__AddRoom, (ClientInfo_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, String * roomName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD00C8, ClientInfo_1_Dissonance_Integrations_PhotonBolt_BoltPeer__AddRoom__MethodInfo); DO_APP_FUNC(0x0127BEF0, bool, ClientInfo_1_Dissonance_Integrations_PhotonBolt_BoltPeer__Equals, (ClientInfo_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, ClientInfo_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * other, MethodInfo * method)); DO_APP_FUNC(0x0127C9F0, bool, ClientInfo_1_Dissonance_Integrations_PhotonBolt_BoltPeer__Equals_1, (ClientInfo_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x0127C180, int32_t, ClientInfo_1_Dissonance_Integrations_PhotonBolt_BoltPeer__GetHashCode, (ClientInfo_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0127CC20, bool, ClientInfo_1_Dissonance_Integrations_PhotonBolt_BoltPeer__RemoveRoom, (ClientInfo_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, String * roomName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD00E8, ClientInfo_1_Dissonance_Integrations_PhotonBolt_BoltPeer__RemoveRoom__MethodInfo); DO_APP_FUNC(0x0127C860, String *, ClientInfo_1_Dissonance_Integrations_PhotonBolt_BoltPeer__ToString, (ClientInfo_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0127BA40, CodecSettings, ClientInfo_1_Dissonance_Integrations_PhotonBolt_BoltPeer__get_CodecSettings, (ClientInfo_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7320, BoltPeer, ClientInfo_1_Dissonance_Integrations_PhotonBolt_BoltPeer__get_Connection, (ClientInfo_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); @@ -128175,10 +141826,12 @@ DO_APP_FUNC(0x00421740, void, ClientInfo_1_Dissonance_Integrations_PhotonBolt_Bo DO_APP_FUNC(0x0127D5C0, void, ClientInfo_1_System_Object___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0127CEB0, void, ClientInfo_1_System_Object___ctor, (ClientInfo_1_System_Object_ * __this, String * playerName, uint16_t playerId, CodecSettings codecSettings, Object * connection, MethodInfo * method)); DO_APP_FUNC(0x0127D3E0, bool, ClientInfo_1_System_Object__AddRoom, (ClientInfo_1_System_Object_ * __this, String * roomName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD00B8, ClientInfo_1_System_Object__AddRoom__MethodInfo); DO_APP_FUNC(0x0127BEF0, bool, ClientInfo_1_System_Object__Equals, (ClientInfo_1_System_Object_ * __this, ClientInfo_1_System_Object_ * other, MethodInfo * method)); DO_APP_FUNC(0x0127D2A0, bool, ClientInfo_1_System_Object__Equals_1, (ClientInfo_1_System_Object_ * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x0127C180, int32_t, ClientInfo_1_System_Object__GetHashCode, (ClientInfo_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0127D4D0, bool, ClientInfo_1_System_Object__RemoveRoom, (ClientInfo_1_System_Object_ * __this, String * roomName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0078, ClientInfo_1_System_Object__RemoveRoom__MethodInfo); DO_APP_FUNC(0x0127D140, String *, ClientInfo_1_System_Object__ToString, (ClientInfo_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0127BA40, CodecSettings, ClientInfo_1_System_Object__get_CodecSettings, (ClientInfo_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7320, Object *, ClientInfo_1_System_Object__get_Connection, (ClientInfo_1_System_Object_ * __this, MethodInfo * method)); @@ -128191,40 +141844,42 @@ DO_APP_FUNC(0x003C7330, void, ClientInfo_1_System_Object__set_Connection, (Clien DO_APP_FUNC(0x00944AF0, void, ClientInfo_1_System_Object__set_IsConnected, (ClientInfo_1_System_Object_ * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x00421740, void, ClientInfo_1_System_Object__set_VoiceReceiver, (ClientInfo_1_System_Object_ * __this, PeerVoiceReceiver * value, MethodInfo * method)); DO_APP_FUNC(0x0127D760, void, CollectionDebugView_1_System_Object___ctor, (CollectionDebugView_1_System_Object_ * __this, ICollection_1_System_Object_ * collection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0088, CollectionDebugView_1_System_Object___ctor__MethodInfo); DO_APP_FUNC(0x0127D820, Object__Array *, CollectionDebugView_1_System_Object__get_Items, (CollectionDebugView_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0127D900, void, CollectionDebuggerProxy_1_System_Object___ctor, (CollectionDebuggerProxy_1_System_Object_ * __this, ICollection_1_System_Object_ * collection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0098, CollectionDebuggerProxy_1_System_Object___ctor__MethodInfo); DO_APP_FUNC(0x0127D820, Object__Array *, CollectionDebuggerProxy_1_System_Object__get_Items, (CollectionDebuggerProxy_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0127D9D0, void, CollectionPool_2_System_Object_UnityEngine_Color32___cctor, (MethodInfo * method)); DO_APP_FUNC(0x010C6F80, Object *, CollectionPool_2_System_Object_UnityEngine_Color32__Get, (MethodInfo * method)); -DO_APP_FUNC(0x0111D2B0, PooledObject_1_System_Object_, CollectionPool_2_System_Object_UnityEngine_Color32__Get_1, (Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0111D2B0, PooledObject_1_System_Object_, CollectionPool_2_System_Object_UnityEngine_Color32__Get_1, (Object * * value, MethodInfo * method)); DO_APP_FUNC(0x0111D3D0, void, CollectionPool_2_System_Object_UnityEngine_Color32__Release, (Object * toRelease, MethodInfo * method)); DO_APP_FUNC(0x0127D9D0, void, CollectionPool_2_System_Object_System_Int32___cctor, (MethodInfo * method)); DO_APP_FUNC(0x010C6F80, Object *, CollectionPool_2_System_Object_System_Int32__Get, (MethodInfo * method)); -DO_APP_FUNC(0x0111D2B0, PooledObject_1_System_Object_, CollectionPool_2_System_Object_System_Int32__Get_1, (Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0111D2B0, PooledObject_1_System_Object_, CollectionPool_2_System_Object_System_Int32__Get_1, (Object * * value, MethodInfo * method)); DO_APP_FUNC(0x0111D3D0, void, CollectionPool_2_System_Object_System_Int32__Release, (Object * toRelease, MethodInfo * method)); DO_APP_FUNC(0x0127D9D0, void, CollectionPool_2_System_Object_System_Object___cctor, (MethodInfo * method)); DO_APP_FUNC(0x010C6F80, Object *, CollectionPool_2_System_Object_System_Object__Get, (MethodInfo * method)); -DO_APP_FUNC(0x0111D2B0, PooledObject_1_System_Object_, CollectionPool_2_System_Object_System_Object__Get_1, (Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0111D2B0, PooledObject_1_System_Object_, CollectionPool_2_System_Object_System_Object__Get_1, (Object * * value, MethodInfo * method)); DO_APP_FUNC(0x0111D3D0, void, CollectionPool_2_System_Object_System_Object__Release, (Object * toRelease, MethodInfo * method)); DO_APP_FUNC(0x0127D9D0, void, CollectionPool_2_System_Object_UnityEngine_UIVertex___cctor, (MethodInfo * method)); DO_APP_FUNC(0x010C6F80, Object *, CollectionPool_2_System_Object_UnityEngine_UIVertex__Get, (MethodInfo * method)); -DO_APP_FUNC(0x0111D2B0, PooledObject_1_System_Object_, CollectionPool_2_System_Object_UnityEngine_UIVertex__Get_1, (Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0111D2B0, PooledObject_1_System_Object_, CollectionPool_2_System_Object_UnityEngine_UIVertex__Get_1, (Object * * value, MethodInfo * method)); DO_APP_FUNC(0x0111D3D0, void, CollectionPool_2_System_Object_UnityEngine_UIVertex__Release, (Object * toRelease, MethodInfo * method)); DO_APP_FUNC(0x0127D9D0, void, CollectionPool_2_System_Object_UnityEngine_Vector3___cctor, (MethodInfo * method)); DO_APP_FUNC(0x010C6F80, Object *, CollectionPool_2_System_Object_UnityEngine_Vector3__Get, (MethodInfo * method)); -DO_APP_FUNC(0x0111D2B0, PooledObject_1_System_Object_, CollectionPool_2_System_Object_UnityEngine_Vector3__Get_1, (Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0111D2B0, PooledObject_1_System_Object_, CollectionPool_2_System_Object_UnityEngine_Vector3__Get_1, (Object * * value, MethodInfo * method)); DO_APP_FUNC(0x0111D3D0, void, CollectionPool_2_System_Object_UnityEngine_Vector3__Release, (Object * toRelease, MethodInfo * method)); DO_APP_FUNC(0x0127D9D0, void, CollectionPool_2_System_Object_UnityEngine_Vector4___cctor, (MethodInfo * method)); DO_APP_FUNC(0x010C6F80, Object *, CollectionPool_2_System_Object_UnityEngine_Vector4__Get, (MethodInfo * method)); -DO_APP_FUNC(0x0111D2B0, PooledObject_1_System_Object_, CollectionPool_2_System_Object_UnityEngine_Vector4__Get_1, (Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0111D2B0, PooledObject_1_System_Object_, CollectionPool_2_System_Object_UnityEngine_Vector4__Get_1, (Object * * value, MethodInfo * method)); DO_APP_FUNC(0x0111D3D0, void, CollectionPool_2_System_Object_UnityEngine_Vector4__Release, (Object * toRelease, MethodInfo * method)); DO_APP_FUNC(0x0127D9D0, void, CollectionPool_2_System_Object_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor___cctor, (MethodInfo * method)); DO_APP_FUNC(0x010C6F80, Object *, CollectionPool_2_System_Object_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__Get, (MethodInfo * method)); -DO_APP_FUNC(0x0111D2B0, PooledObject_1_System_Object_, CollectionPool_2_System_Object_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__Get_1, (Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0111D2B0, PooledObject_1_System_Object_, CollectionPool_2_System_Object_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__Get_1, (Object * * value, MethodInfo * method)); DO_APP_FUNC(0x0111D3D0, void, CollectionPool_2_System_Object_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__Release, (Object * toRelease, MethodInfo * method)); DO_APP_FUNC(0x0127D9D0, void, CollectionPool_2_System_Object_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState___cctor, (MethodInfo * method)); DO_APP_FUNC(0x010C6F80, Object *, CollectionPool_2_System_Object_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__Get, (MethodInfo * method)); -DO_APP_FUNC(0x0111D2B0, PooledObject_1_System_Object_, CollectionPool_2_System_Object_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__Get_1, (Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0111D2B0, PooledObject_1_System_Object_, CollectionPool_2_System_Object_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__Get_1, (Object * * value, MethodInfo * method)); DO_APP_FUNC(0x0111D3D0, void, CollectionPool_2_System_Object_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__Release, (Object * toRelease, MethodInfo * method)); DO_APP_FUNC(0x010CC480, void, Collection_1_System_Object___ctor, (Collection_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FDF0C0, void, Collection_1_System_Object___ctor_1, (Collection_1_System_Object_ * __this, IList_1_System_Object_ * list, MethodInfo * method)); @@ -128269,1172 +141924,1408 @@ DO_APP_FUNC(0x0127F400, String *, CommandEventBase_1_System_Object__get_commandN DO_APP_FUNC(0x00A86420, void, CommandEventBase_1_System_Object__set_commandName, (CommandEventBase_1_System_Object_ * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_System_ArraySegment_1___ctor, (Comparer_1_System_ArraySegment_1_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0127F740, Comparer_1_System_ArraySegment_1_ *, Comparer_1_System_ArraySegment_1__Create, (Comparison_1_ArraySegment_1_Byte_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0020, Comparer_1_System_ArraySegment_1__Create__MethodInfo); DO_APP_FUNC(0x0127F870, Comparer_1_System_ArraySegment_1_ *, Comparer_1_System_ArraySegment_1__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_System_ArraySegment_1__System_Collections_IComparer_Compare, (Comparer_1_System_ArraySegment_1_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_System_ArraySegment_1_ *, Comparer_1_System_ArraySegment_1__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___ctor, (Comparer_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0127FF60, Comparer_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ *, Comparer_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__Create, (Comparison_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFFF8, Comparer_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__Create__MethodInfo); DO_APP_FUNC(0x01280090, Comparer_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ *, Comparer_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x01280600, int32_t, Comparer_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ *, Comparer_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta___ctor, (Comparer_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012807A0, Comparer_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta_ *, Comparer_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta__Create, (Comparison_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0000, Comparer_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta__Create__MethodInfo); DO_APP_FUNC(0x012808D0, Comparer_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta_ *, Comparer_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x01280600, int32_t, Comparer_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta__System_Collections_IComparer_Compare, (Comparer_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta_ *, Comparer_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_Timeline_IntervalTree_1_Entry___ctor, (Comparer_1_UnityEngine_Timeline_IntervalTree_1_Entry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01280E40, Comparer_1_UnityEngine_Timeline_IntervalTree_1_Entry_ *, Comparer_1_UnityEngine_Timeline_IntervalTree_1_Entry__Create, (Comparison_1_UnityEngine_Timeline_IntervalTree_1_Entry_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFFB0, Comparer_1_UnityEngine_Timeline_IntervalTree_1_Entry__Create__MethodInfo); DO_APP_FUNC(0x01280F70, Comparer_1_UnityEngine_Timeline_IntervalTree_1_Entry_ *, Comparer_1_UnityEngine_Timeline_IntervalTree_1_Entry__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012814E0, int32_t, Comparer_1_UnityEngine_Timeline_IntervalTree_1_Entry__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_Timeline_IntervalTree_1_Entry_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_Timeline_IntervalTree_1_Entry_ *, Comparer_1_UnityEngine_Timeline_IntervalTree_1_Entry__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb___ctor, (Comparer_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01281680, Comparer_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb_ *, Comparer_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__Create, (Comparison_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFFC8, Comparer_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__Create__MethodInfo); DO_APP_FUNC(0x012817B0, Comparer_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb_ *, Comparer_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__System_Collections_IComparer_Compare, (Comparer_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb_ *, Comparer_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1__ctor, (Comparer_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x01281D20, Comparer_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1 *, Comparer_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1_Create, (Comparison_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1 * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFFD0, Comparer_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1_Create__MethodInfo); DO_APP_FUNC(0x01281E50, Comparer_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1 *, Comparer_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1_CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1_System_Collections_IComparer_Compare, (Comparer_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1 * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1 *, Comparer_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1_get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2__ctor, (Comparer_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2 * __this, MethodInfo * method)); DO_APP_FUNC(0x012823C0, Comparer_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2 *, Comparer_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2_Create, (Comparison_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2 * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFF90, Comparer_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2_Create__MethodInfo); DO_APP_FUNC(0x012824F0, Comparer_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2 *, Comparer_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2_CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x01280600, int32_t, Comparer_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2_System_Collections_IComparer_Compare, (Comparer_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2 * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2 *, Comparer_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2_get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_KeyValuePair_2_System_Guid_System_Object___ctor, (Comparer_1_KeyValuePair_2_System_Guid_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01282A60, Comparer_1_KeyValuePair_2_System_Guid_System_Object_ *, Comparer_1_KeyValuePair_2_System_Guid_System_Object__Create, (Comparison_1_System_Collections_Generic_KeyValuePair_2_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFF98, Comparer_1_KeyValuePair_2_System_Guid_System_Object__Create__MethodInfo); DO_APP_FUNC(0x01282B90, Comparer_1_KeyValuePair_2_System_Guid_System_Object_ *, Comparer_1_KeyValuePair_2_System_Guid_System_Object__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012814E0, int32_t, Comparer_1_KeyValuePair_2_System_Guid_System_Object__System_Collections_IComparer_Compare, (Comparer_1_KeyValuePair_2_System_Guid_System_Object_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_KeyValuePair_2_System_Guid_System_Object_ *, Comparer_1_KeyValuePair_2_System_Guid_System_Object__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_KeyValuePair_2_System_Int32_System_Int32___ctor, (Comparer_1_KeyValuePair_2_System_Int32_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01283100, Comparer_1_KeyValuePair_2_System_Int32_System_Int32_ *, Comparer_1_KeyValuePair_2_System_Int32_System_Int32__Create, (Comparison_1_System_Collections_Generic_KeyValuePair_2__1 * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFF50, Comparer_1_KeyValuePair_2_System_Int32_System_Int32__Create__MethodInfo); DO_APP_FUNC(0x01283230, Comparer_1_KeyValuePair_2_System_Int32_System_Int32_ *, Comparer_1_KeyValuePair_2_System_Int32_System_Int32__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012837A0, int32_t, Comparer_1_KeyValuePair_2_System_Int32_System_Int32__System_Collections_IComparer_Compare, (Comparer_1_KeyValuePair_2_System_Int32_System_Int32_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_KeyValuePair_2_System_Int32_System_Int32_ *, Comparer_1_KeyValuePair_2_System_Int32_System_Int32__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_KeyValuePair_2_System_Int32_System_Object___ctor, (Comparer_1_KeyValuePair_2_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01283900, Comparer_1_KeyValuePair_2_System_Int32_System_Object_ *, Comparer_1_KeyValuePair_2_System_Int32_System_Object__Create, (Comparison_1_System_Collections_Generic_KeyValuePair_2__2 * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFF58, Comparer_1_KeyValuePair_2_System_Int32_System_Object__Create__MethodInfo); DO_APP_FUNC(0x01283A30, Comparer_1_KeyValuePair_2_System_Int32_System_Object_ *, Comparer_1_KeyValuePair_2_System_Int32_System_Object__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_KeyValuePair_2_System_Int32_System_Object__System_Collections_IComparer_Compare, (Comparer_1_KeyValuePair_2_System_Int32_System_Object_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_KeyValuePair_2_System_Int32_System_Object_ *, Comparer_1_KeyValuePair_2_System_Int32_System_Object__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_KeyValuePair_2_System_Int32Enum_System_Object___ctor, (Comparer_1_KeyValuePair_2_System_Int32Enum_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01283FA0, Comparer_1_KeyValuePair_2_System_Int32Enum_System_Object_ *, Comparer_1_KeyValuePair_2_System_Int32Enum_System_Object__Create, (Comparison_1_System_Collections_Generic_KeyValuePair_2__3 * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFF78, Comparer_1_KeyValuePair_2_System_Int32Enum_System_Object__Create__MethodInfo); DO_APP_FUNC(0x012840D0, Comparer_1_KeyValuePair_2_System_Int32Enum_System_Object_ *, Comparer_1_KeyValuePair_2_System_Int32Enum_System_Object__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_KeyValuePair_2_System_Int32Enum_System_Object__System_Collections_IComparer_Compare, (Comparer_1_KeyValuePair_2_System_Int32Enum_System_Object_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_KeyValuePair_2_System_Int32Enum_System_Object_ *, Comparer_1_KeyValuePair_2_System_Int32Enum_System_Object__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_KeyValuePair_2_System_Object_System_ArraySegment_1___ctor, (Comparer_1_KeyValuePair_2_System_Object_System_ArraySegment_1_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01284640, Comparer_1_KeyValuePair_2_System_Object_System_ArraySegment_1_ *, Comparer_1_KeyValuePair_2_System_Object_System_ArraySegment_1__Create, (Comparison_1_System_Collections_Generic_KeyValuePair_2__4 * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFF20, Comparer_1_KeyValuePair_2_System_Object_System_ArraySegment_1__Create__MethodInfo); DO_APP_FUNC(0x01284770, Comparer_1_KeyValuePair_2_System_Object_System_ArraySegment_1_ *, Comparer_1_KeyValuePair_2_System_Object_System_ArraySegment_1__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012814E0, int32_t, Comparer_1_KeyValuePair_2_System_Object_System_ArraySegment_1__System_Collections_IComparer_Compare, (Comparer_1_KeyValuePair_2_System_Object_System_ArraySegment_1_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_KeyValuePair_2_System_Object_System_ArraySegment_1_ *, Comparer_1_KeyValuePair_2_System_Object_System_ArraySegment_1__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_KeyValuePair_2_System_Object_System_Char___ctor, (Comparer_1_KeyValuePair_2_System_Object_System_Char_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01284CE0, Comparer_1_KeyValuePair_2_System_Object_System_Char_ *, Comparer_1_KeyValuePair_2_System_Object_System_Char__Create, (Comparison_1_System_Collections_Generic_KeyValuePair_2__5 * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFF30, Comparer_1_KeyValuePair_2_System_Object_System_Char__Create__MethodInfo); DO_APP_FUNC(0x01284E10, Comparer_1_KeyValuePair_2_System_Object_System_Char_ *, Comparer_1_KeyValuePair_2_System_Object_System_Char__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_KeyValuePair_2_System_Object_System_Char__System_Collections_IComparer_Compare, (Comparer_1_KeyValuePair_2_System_Object_System_Char_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_KeyValuePair_2_System_Object_System_Char_ *, Comparer_1_KeyValuePair_2_System_Object_System_Char__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_KeyValuePair_2_System_Object_System_Object___ctor, (Comparer_1_KeyValuePair_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01285380, Comparer_1_KeyValuePair_2_System_Object_System_Object_ *, Comparer_1_KeyValuePair_2_System_Object_System_Object__Create, (Comparison_1_System_Collections_Generic_KeyValuePair_2__6 * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFF38, Comparer_1_KeyValuePair_2_System_Object_System_Object__Create__MethodInfo); DO_APP_FUNC(0x012854B0, Comparer_1_KeyValuePair_2_System_Object_System_Object_ *, Comparer_1_KeyValuePair_2_System_Object_System_Object__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_KeyValuePair_2_System_Object_System_Object__System_Collections_IComparer_Compare, (Comparer_1_KeyValuePair_2_System_Object_System_Object_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_KeyValuePair_2_System_Object_System_Object_ *, Comparer_1_KeyValuePair_2_System_Object_System_Object__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___ctor, (Comparer_1_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01285A20, Comparer_1_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ *, Comparer_1_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__Create, (Comparison_1_System_Collections_Generic_KeyValuePair_2__7 * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFF10, Comparer_1_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__Create__MethodInfo); DO_APP_FUNC(0x01285B50, Comparer_1_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ *, Comparer_1_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012860C0, int32_t, Comparer_1_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__System_Collections_IComparer_Compare, (Comparer_1_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ *, Comparer_1_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object___ctor, (Comparer_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012862E0, Comparer_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object_ *, Comparer_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object__Create, (Comparison_1_System_Collections_Generic_KeyValuePair_2__8 * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFF18, Comparer_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object__Create__MethodInfo); DO_APP_FUNC(0x01286410, Comparer_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object_ *, Comparer_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object__System_Collections_IComparer_Compare, (Comparer_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object_ *, Comparer_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer___ctor, (Comparer_1_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01286980, Comparer_1_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer_ *, Comparer_1_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer__Create, (Comparison_1_System_Collections_Generic_KeyValuePair_2__9 * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFEF0, Comparer_1_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer__Create__MethodInfo); DO_APP_FUNC(0x01286AB0, Comparer_1_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer_ *, Comparer_1_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer__System_Collections_IComparer_Compare, (Comparer_1_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer_ *, Comparer_1_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_KeyValuePair_2_System_UInt16_System_Object___ctor, (Comparer_1_KeyValuePair_2_System_UInt16_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01287020, Comparer_1_KeyValuePair_2_System_UInt16_System_Object_ *, Comparer_1_KeyValuePair_2_System_UInt16_System_Object__Create, (Comparison_1_System_Collections_Generic_KeyValuePair_2__10 * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFEF8, Comparer_1_KeyValuePair_2_System_UInt16_System_Object__Create__MethodInfo); DO_APP_FUNC(0x01287150, Comparer_1_KeyValuePair_2_System_UInt16_System_Object_ *, Comparer_1_KeyValuePair_2_System_UInt16_System_Object__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_KeyValuePair_2_System_UInt16_System_Object__System_Collections_IComparer_Compare, (Comparer_1_KeyValuePair_2_System_UInt16_System_Object_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_KeyValuePair_2_System_UInt16_System_Object_ *, Comparer_1_KeyValuePair_2_System_UInt16_System_Object__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_KeyValuePair_2_System_UInt64_System_Object___ctor, (Comparer_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012876C0, Comparer_1_KeyValuePair_2_System_UInt64_System_Object_ *, Comparer_1_KeyValuePair_2_System_UInt64_System_Object__Create, (Comparison_1_System_Collections_Generic_KeyValuePair_2__11 * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFF08, Comparer_1_KeyValuePair_2_System_UInt64_System_Object__Create__MethodInfo); DO_APP_FUNC(0x012877F0, Comparer_1_KeyValuePair_2_System_UInt64_System_Object_ *, Comparer_1_KeyValuePair_2_System_UInt64_System_Object__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_KeyValuePair_2_System_UInt64_System_Object__System_Collections_IComparer_Compare, (Comparer_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_KeyValuePair_2_System_UInt64_System_Object_ *, Comparer_1_KeyValuePair_2_System_UInt64_System_Object__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_Unity_Collections_NativeArray_1___ctor, (Comparer_1_Unity_Collections_NativeArray_1_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01287D60, Comparer_1_Unity_Collections_NativeArray_1_ *, Comparer_1_Unity_Collections_NativeArray_1__Create, (Comparison_1_Unity_Collections_NativeArray_1_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFEB0, Comparer_1_Unity_Collections_NativeArray_1__Create__MethodInfo); DO_APP_FUNC(0x01287E90, Comparer_1_Unity_Collections_NativeArray_1_ *, Comparer_1_Unity_Collections_NativeArray_1__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_Unity_Collections_NativeArray_1__System_Collections_IComparer_Compare, (Comparer_1_Unity_Collections_NativeArray_1_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_Unity_Collections_NativeArray_1_ *, Comparer_1_Unity_Collections_NativeArray_1__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_Unity_Collections_NativeArray_1__1__ctor, (Comparer_1_Unity_Collections_NativeArray_1__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x01288400, Comparer_1_Unity_Collections_NativeArray_1__1 *, Comparer_1_Unity_Collections_NativeArray_1__1_Create, (Comparison_1_Unity_Collections_NativeArray_1__1 * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFED8, Comparer_1_Unity_Collections_NativeArray_1__1_Create__MethodInfo); DO_APP_FUNC(0x01288530, Comparer_1_Unity_Collections_NativeArray_1__1 *, Comparer_1_Unity_Collections_NativeArray_1__1_CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_Unity_Collections_NativeArray_1__1_System_Collections_IComparer_Compare, (Comparer_1_Unity_Collections_NativeArray_1__1 * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_Unity_Collections_NativeArray_1__1 *, Comparer_1_Unity_Collections_NativeArray_1__1_get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo___ctor, (Comparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01288AA0, Comparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo_ *, Comparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo__Create, (Comparison_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFEE8, Comparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo__Create__MethodInfo); DO_APP_FUNC(0x01288BD0, Comparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo_ *, Comparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo_ *, Comparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_Photon_Bolt_Collections_STuple_2___ctor, (Comparer_1_Photon_Bolt_Collections_STuple_2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01289140, Comparer_1_Photon_Bolt_Collections_STuple_2_ *, Comparer_1_Photon_Bolt_Collections_STuple_2__Create, (Comparison_1_Photon_Bolt_Collections_STuple_2_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFE88, Comparer_1_Photon_Bolt_Collections_STuple_2__Create__MethodInfo); DO_APP_FUNC(0x01289270, Comparer_1_Photon_Bolt_Collections_STuple_2_ *, Comparer_1_Photon_Bolt_Collections_STuple_2__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_Photon_Bolt_Collections_STuple_2__System_Collections_IComparer_Compare, (Comparer_1_Photon_Bolt_Collections_STuple_2_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_Photon_Bolt_Collections_STuple_2_ *, Comparer_1_Photon_Bolt_Collections_STuple_2__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_System_ValueTuple_1___ctor, (Comparer_1_System_ValueTuple_1_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012897E0, Comparer_1_System_ValueTuple_1_ *, Comparer_1_System_ValueTuple_1__Create, (Comparison_1_ValueTuple_1_Boolean_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFE98, Comparer_1_System_ValueTuple_1__Create__MethodInfo); DO_APP_FUNC(0x01289910, Comparer_1_System_ValueTuple_1_ *, Comparer_1_System_ValueTuple_1__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x01289E80, int32_t, Comparer_1_System_ValueTuple_1__System_Collections_IComparer_Compare, (Comparer_1_System_ValueTuple_1_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_System_ValueTuple_1_ *, Comparer_1_System_ValueTuple_1__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_System_ValueTuple_2___ctor, (Comparer_1_System_ValueTuple_2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01289FE0, Comparer_1_System_ValueTuple_2_ *, Comparer_1_System_ValueTuple_2__Create, (Comparison_1_ValueTuple_2_Int32_Object_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFE48, Comparer_1_System_ValueTuple_2__Create__MethodInfo); DO_APP_FUNC(0x0128A110, Comparer_1_System_ValueTuple_2_ *, Comparer_1_System_ValueTuple_2__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_System_ValueTuple_2__System_Collections_IComparer_Compare, (Comparer_1_System_ValueTuple_2_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_System_ValueTuple_2_ *, Comparer_1_System_ValueTuple_2__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_System_ValueTuple_2__1__ctor, (Comparer_1_System_ValueTuple_2__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x0128A680, Comparer_1_System_ValueTuple_2__1 *, Comparer_1_System_ValueTuple_2__1_Create, (Comparison_1_ValueTuple_2_Int32_UnityEngine_Vector2Int_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFE50, Comparer_1_System_ValueTuple_2__1_Create__MethodInfo); DO_APP_FUNC(0x0128A7B0, Comparer_1_System_ValueTuple_2__1 *, Comparer_1_System_ValueTuple_2__1_CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0128AD20, int32_t, Comparer_1_System_ValueTuple_2__1_System_Collections_IComparer_Compare, (Comparer_1_System_ValueTuple_2__1 * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_System_ValueTuple_2__1 *, Comparer_1_System_ValueTuple_2__1_get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_System_ValueTuple_2__2__ctor, (Comparer_1_System_ValueTuple_2__2 * __this, MethodInfo * method)); DO_APP_FUNC(0x0128AEC0, Comparer_1_System_ValueTuple_2__2 *, Comparer_1_System_ValueTuple_2__2_Create, (Comparison_1_ValueTuple_2_Object_ValueTuple_2_Object_Int32_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFE70, Comparer_1_System_ValueTuple_2__2_Create__MethodInfo); DO_APP_FUNC(0x0128AFF0, Comparer_1_System_ValueTuple_2__2 *, Comparer_1_System_ValueTuple_2__2_CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012814E0, int32_t, Comparer_1_System_ValueTuple_2__2_System_Collections_IComparer_Compare, (Comparer_1_System_ValueTuple_2__2 * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_System_ValueTuple_2__2 *, Comparer_1_System_ValueTuple_2__2_get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_System_ValueTuple_2__3__ctor, (Comparer_1_System_ValueTuple_2__3 * __this, MethodInfo * method)); DO_APP_FUNC(0x0128B560, Comparer_1_System_ValueTuple_2__3 *, Comparer_1_System_ValueTuple_2__3_Create, (Comparison_1_ValueTuple_2_Object_Int32_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFE30, Comparer_1_System_ValueTuple_2__3_Create__MethodInfo); DO_APP_FUNC(0x0128B690, Comparer_1_System_ValueTuple_2__3 *, Comparer_1_System_ValueTuple_2__3_CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_System_ValueTuple_2__3_System_Collections_IComparer_Compare, (Comparer_1_System_ValueTuple_2__3 * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_System_ValueTuple_2__3 *, Comparer_1_System_ValueTuple_2__3_get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_System_ValueTuple_2__4__ctor, (Comparer_1_System_ValueTuple_2__4 * __this, MethodInfo * method)); DO_APP_FUNC(0x0128BC00, Comparer_1_System_ValueTuple_2__4 *, Comparer_1_System_ValueTuple_2__4_Create, (Comparison_1_ValueTuple_2_Object_Object_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFE38, Comparer_1_System_ValueTuple_2__4_Create__MethodInfo); DO_APP_FUNC(0x0128BD30, Comparer_1_System_ValueTuple_2__4 *, Comparer_1_System_ValueTuple_2__4_CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_System_ValueTuple_2__4_System_Collections_IComparer_Compare, (Comparer_1_System_ValueTuple_2__4 * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_System_ValueTuple_2__4 *, Comparer_1_System_ValueTuple_2__4_get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_System_ValueTuple_2__5__ctor, (Comparer_1_System_ValueTuple_2__5 * __this, MethodInfo * method)); DO_APP_FUNC(0x0128C2A0, Comparer_1_System_ValueTuple_2__5 *, Comparer_1_System_ValueTuple_2__5_Create, (Comparison_1_ValueTuple_2_UnityEngine_Vector3Int_Object_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFE40, Comparer_1_System_ValueTuple_2__5_Create__MethodInfo); DO_APP_FUNC(0x0128C3D0, Comparer_1_System_ValueTuple_2__5 *, Comparer_1_System_ValueTuple_2__5_CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012814E0, int32_t, Comparer_1_System_ValueTuple_2__5_System_Collections_IComparer_Compare, (Comparer_1_System_ValueTuple_2__5 * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_System_ValueTuple_2__5 *, Comparer_1_System_ValueTuple_2__5_get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_System_ValueTuple_2__6__ctor, (Comparer_1_System_ValueTuple_2__6 * __this, MethodInfo * method)); DO_APP_FUNC(0x0128C940, Comparer_1_System_ValueTuple_2__6 *, Comparer_1_System_ValueTuple_2__6_Create, (Comparison_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFE18, Comparer_1_System_ValueTuple_2__6_Create__MethodInfo); DO_APP_FUNC(0x0128CA70, Comparer_1_System_ValueTuple_2__6 *, Comparer_1_System_ValueTuple_2__6_CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0128CFE0, int32_t, Comparer_1_System_ValueTuple_2__6_System_Collections_IComparer_Compare, (Comparer_1_System_ValueTuple_2__6 * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_System_ValueTuple_2__6 *, Comparer_1_System_ValueTuple_2__6_get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_System_ValueTuple_2__7__ctor, (Comparer_1_System_ValueTuple_2__7 * __this, MethodInfo * method)); DO_APP_FUNC(0x0128D1E0, Comparer_1_System_ValueTuple_2__7 *, Comparer_1_System_ValueTuple_2__7_Create, (Comparison_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFE20, Comparer_1_System_ValueTuple_2__7_Create__MethodInfo); DO_APP_FUNC(0x0128D310, Comparer_1_System_ValueTuple_2__7 *, Comparer_1_System_ValueTuple_2__7_CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0128D880, int32_t, Comparer_1_System_ValueTuple_2__7_System_Collections_IComparer_Compare, (Comparer_1_System_ValueTuple_2__7 * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_System_ValueTuple_2__7 *, Comparer_1_System_ValueTuple_2__7_get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_AnimatorClipInfo___ctor, (Comparer_1_UnityEngine_AnimatorClipInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0128DA50, Comparer_1_UnityEngine_AnimatorClipInfo_ *, Comparer_1_UnityEngine_AnimatorClipInfo__Create, (Comparison_1_UnityEngine_AnimatorClipInfo_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFDF8, Comparer_1_UnityEngine_AnimatorClipInfo__Create__MethodInfo); DO_APP_FUNC(0x0128DB80, Comparer_1_UnityEngine_AnimatorClipInfo_ *, Comparer_1_UnityEngine_AnimatorClipInfo__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012837A0, int32_t, Comparer_1_UnityEngine_AnimatorClipInfo__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_AnimatorClipInfo_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_AnimatorClipInfo_ *, Comparer_1_UnityEngine_AnimatorClipInfo__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___ctor, (Comparer_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0128E0F0, Comparer_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ *, Comparer_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__Create, (Comparison_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFE00, Comparer_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__Create__MethodInfo); DO_APP_FUNC(0x0128E220, Comparer_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ *, Comparer_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012814E0, int32_t, Comparer_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ *, Comparer_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_Dissonance_Integrations_PhotonBolt_BoltPeer___ctor, (Comparer_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0128E790, Comparer_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ *, Comparer_1_Dissonance_Integrations_PhotonBolt_BoltPeer__Create, (Comparison_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFE10, Comparer_1_Dissonance_Integrations_PhotonBolt_BoltPeer__Create__MethodInfo); DO_APP_FUNC(0x0128E8C0, Comparer_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ *, Comparer_1_Dissonance_Integrations_PhotonBolt_BoltPeer__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012837A0, int32_t, Comparer_1_Dissonance_Integrations_PhotonBolt_BoltPeer__System_Collections_IComparer_Compare, (Comparer_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ *, Comparer_1_Dissonance_Integrations_PhotonBolt_BoltPeer__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_Photon_Bolt_LagCompensation_BoltPhysicsHit___ctor, (Comparer_1_Photon_Bolt_LagCompensation_BoltPhysicsHit_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0128EE30, Comparer_1_Photon_Bolt_LagCompensation_BoltPhysicsHit_ *, Comparer_1_Photon_Bolt_LagCompensation_BoltPhysicsHit__Create, (Comparison_1_Photon_Bolt_LagCompensation_BoltPhysicsHit_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFDC0, Comparer_1_Photon_Bolt_LagCompensation_BoltPhysicsHit__Create__MethodInfo); DO_APP_FUNC(0x0128EF60, Comparer_1_Photon_Bolt_LagCompensation_BoltPhysicsHit_ *, Comparer_1_Photon_Bolt_LagCompensation_BoltPhysicsHit__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012814E0, int32_t, Comparer_1_Photon_Bolt_LagCompensation_BoltPhysicsHit__System_Collections_IComparer_Compare, (Comparer_1_Photon_Bolt_LagCompensation_BoltPhysicsHit_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_Photon_Bolt_LagCompensation_BoltPhysicsHit_ *, Comparer_1_Photon_Bolt_LagCompensation_BoltPhysicsHit__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_BoneWeight___ctor, (Comparer_1_UnityEngine_BoneWeight_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0128F4D0, Comparer_1_UnityEngine_BoneWeight_ *, Comparer_1_UnityEngine_BoneWeight__Create, (Comparison_1_UnityEngine_BoneWeight_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFDE0, Comparer_1_UnityEngine_BoneWeight__Create__MethodInfo); DO_APP_FUNC(0x0128F600, Comparer_1_UnityEngine_BoneWeight_ *, Comparer_1_UnityEngine_BoneWeight__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x01280600, int32_t, Comparer_1_UnityEngine_BoneWeight__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_BoneWeight_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_BoneWeight_ *, Comparer_1_UnityEngine_BoneWeight__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_System_Boolean___ctor, (Comparer_1_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0128FB70, Comparer_1_System_Boolean_ *, Comparer_1_System_Boolean__Create, (Comparison_1_Boolean_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFDF0, Comparer_1_System_Boolean__Create__MethodInfo); DO_APP_FUNC(0x0128FCA0, Comparer_1_System_Boolean_ *, Comparer_1_System_Boolean__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x01289E80, int32_t, Comparer_1_System_Boolean__System_Collections_IComparer_Compare, (Comparer_1_System_Boolean_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_System_Boolean_ *, Comparer_1_System_Boolean__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_System_Byte___ctor, (Comparer_1_System_Byte_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01290210, Comparer_1_System_Byte_ *, Comparer_1_System_Byte__Create, (Comparison_1_Byte_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFDA0, Comparer_1_System_Byte__Create__MethodInfo); DO_APP_FUNC(0x01290340, Comparer_1_System_Byte_ *, Comparer_1_System_Byte__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x01289E80, int32_t, Comparer_1_System_Byte__System_Collections_IComparer_Compare, (Comparer_1_System_Byte_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_System_Byte_ *, Comparer_1_System_Byte__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_System_Threading_CancellationToken___ctor, (Comparer_1_System_Threading_CancellationToken_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012908B0, Comparer_1_System_Threading_CancellationToken_ *, Comparer_1_System_Threading_CancellationToken__Create, (Comparison_1_System_Threading_CancellationToken_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFDA8, Comparer_1_System_Threading_CancellationToken__Create__MethodInfo); DO_APP_FUNC(0x012909E0, Comparer_1_System_Threading_CancellationToken_ *, Comparer_1_System_Threading_CancellationToken__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012837A0, int32_t, Comparer_1_System_Threading_CancellationToken__System_Collections_IComparer_Compare, (Comparer_1_System_Threading_CancellationToken_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_System_Threading_CancellationToken_ *, Comparer_1_System_Threading_CancellationToken__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_System_Char___ctor, (Comparer_1_System_Char_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01290F50, Comparer_1_System_Char_ *, Comparer_1_System_Char__Create, (Comparison_1_Char_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFD68, Comparer_1_System_Char__Create__MethodInfo); DO_APP_FUNC(0x01291080, Comparer_1_System_Char_ *, Comparer_1_System_Char__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012915F0, int32_t, Comparer_1_System_Char__System_Collections_IComparer_Compare, (Comparer_1_System_Char_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_System_Char_ *, Comparer_1_System_Char__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_Dissonance_Networking_ClientInfo___ctor, (Comparer_1_Dissonance_Networking_ClientInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01291750, Comparer_1_Dissonance_Networking_ClientInfo_ *, Comparer_1_Dissonance_Networking_ClientInfo__Create, (Comparison_1_Dissonance_Networking_ClientInfo_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFD78, Comparer_1_Dissonance_Networking_ClientInfo__Create__MethodInfo); DO_APP_FUNC(0x01291880, Comparer_1_Dissonance_Networking_ClientInfo_ *, Comparer_1_Dissonance_Networking_ClientInfo__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012814E0, int32_t, Comparer_1_Dissonance_Networking_ClientInfo__System_Collections_IComparer_Compare, (Comparer_1_Dissonance_Networking_ClientInfo_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_Dissonance_Networking_ClientInfo_ *, Comparer_1_Dissonance_Networking_ClientInfo__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_Color___ctor, (Comparer_1_UnityEngine_Color_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01291DF0, Comparer_1_UnityEngine_Color_ *, Comparer_1_UnityEngine_Color__Create, (Comparison_1_UnityEngine_Color_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFD98, Comparer_1_UnityEngine_Color__Create__MethodInfo); DO_APP_FUNC(0x01291F20, Comparer_1_UnityEngine_Color_ *, Comparer_1_UnityEngine_Color__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x01292490, int32_t, Comparer_1_UnityEngine_Color__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_Color_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_Color_ *, Comparer_1_UnityEngine_Color__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_Color32___ctor, (Comparer_1_UnityEngine_Color32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01292610, Comparer_1_UnityEngine_Color32_ *, Comparer_1_UnityEngine_Color32__Create, (Comparison_1_UnityEngine_Color32_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFD28, Comparer_1_UnityEngine_Color32__Create__MethodInfo); DO_APP_FUNC(0x01292740, Comparer_1_UnityEngine_Color32_ *, Comparer_1_UnityEngine_Color32__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x01292CB0, int32_t, Comparer_1_UnityEngine_Color32__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_Color32_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_Color32_ *, Comparer_1_UnityEngine_Color32__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_CombineInstance___ctor, (Comparer_1_UnityEngine_CombineInstance_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01292E10, Comparer_1_UnityEngine_CombineInstance_ *, Comparer_1_UnityEngine_CombineInstance__Create, (Comparison_1_UnityEngine_CombineInstance_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFD40, Comparer_1_UnityEngine_CombineInstance__Create__MethodInfo); DO_APP_FUNC(0x01292F40, Comparer_1_UnityEngine_CombineInstance_ *, Comparer_1_UnityEngine_CombineInstance__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012934B0, int32_t, Comparer_1_UnityEngine_CombineInstance__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_CombineInstance_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_CombineInstance_ *, Comparer_1_UnityEngine_CombineInstance__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_UIElements_ComputedTransitionProperty___ctor, (Comparer_1_UnityEngine_UIElements_ComputedTransitionProperty_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01293730, Comparer_1_UnityEngine_UIElements_ComputedTransitionProperty_ *, Comparer_1_UnityEngine_UIElements_ComputedTransitionProperty__Create, (Comparison_1_UnityEngine_UIElements_ComputedTransitionProperty_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFD50, Comparer_1_UnityEngine_UIElements_ComputedTransitionProperty__Create__MethodInfo); DO_APP_FUNC(0x01293860, Comparer_1_UnityEngine_UIElements_ComputedTransitionProperty_ *, Comparer_1_UnityEngine_UIElements_ComputedTransitionProperty__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012814E0, int32_t, Comparer_1_UnityEngine_UIElements_ComputedTransitionProperty__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_UIElements_ComputedTransitionProperty_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_UIElements_ComputedTransitionProperty_ *, Comparer_1_UnityEngine_UIElements_ComputedTransitionProperty__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_Pathfinding_Connection___ctor, (Comparer_1_Pathfinding_Connection_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01293DD0, Comparer_1_Pathfinding_Connection_ *, Comparer_1_Pathfinding_Connection__Create, (Comparison_1_Pathfinding_Connection_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFD00, Comparer_1_Pathfinding_Connection__Create__MethodInfo); DO_APP_FUNC(0x01293F00, Comparer_1_Pathfinding_Connection_ *, Comparer_1_Pathfinding_Connection__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_Pathfinding_Connection__System_Collections_IComparer_Compare, (Comparer_1_Pathfinding_Connection_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_Pathfinding_Connection_ *, Comparer_1_Pathfinding_Connection__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_Rewired_ControllerPollingInfo___ctor, (Comparer_1_Rewired_ControllerPollingInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01294470, Comparer_1_Rewired_ControllerPollingInfo_ *, Comparer_1_Rewired_ControllerPollingInfo__Create, (Comparison_1_Rewired_ControllerPollingInfo_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFD10, Comparer_1_Rewired_ControllerPollingInfo__Create__MethodInfo); DO_APP_FUNC(0x012945A0, Comparer_1_Rewired_ControllerPollingInfo_ *, Comparer_1_Rewired_ControllerPollingInfo__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0128CFE0, int32_t, Comparer_1_Rewired_ControllerPollingInfo__System_Collections_IComparer_Compare, (Comparer_1_Rewired_ControllerPollingInfo_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_Rewired_ControllerPollingInfo_ *, Comparer_1_Rewired_ControllerPollingInfo__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_Rewired_ControllerTemplateElementTarget___ctor, (Comparer_1_Rewired_ControllerTemplateElementTarget_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01294B10, Comparer_1_Rewired_ControllerTemplateElementTarget_ *, Comparer_1_Rewired_ControllerTemplateElementTarget__Create, (Comparison_1_Rewired_ControllerTemplateElementTarget_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFCD0, Comparer_1_Rewired_ControllerTemplateElementTarget__Create__MethodInfo); DO_APP_FUNC(0x01294C40, Comparer_1_Rewired_ControllerTemplateElementTarget_ *, Comparer_1_Rewired_ControllerTemplateElementTarget__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_Rewired_ControllerTemplateElementTarget__System_Collections_IComparer_Compare, (Comparer_1_Rewired_ControllerTemplateElementTarget_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_Rewired_ControllerTemplateElementTarget_ *, Comparer_1_Rewired_ControllerTemplateElementTarget__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_SplineMesh_CurveSample___ctor, (Comparer_1_SplineMesh_CurveSample_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012951B0, Comparer_1_SplineMesh_CurveSample_ *, Comparer_1_SplineMesh_CurveSample__Create, (Comparison_1_SplineMesh_CurveSample_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFCE0, Comparer_1_SplineMesh_CurveSample__Create__MethodInfo); DO_APP_FUNC(0x012952E0, Comparer_1_SplineMesh_CurveSample_ *, Comparer_1_SplineMesh_CurveSample__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x01295850, int32_t, Comparer_1_SplineMesh_CurveSample__System_Collections_IComparer_Compare, (Comparer_1_SplineMesh_CurveSample_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_SplineMesh_CurveSample_ *, Comparer_1_SplineMesh_CurveSample__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_System_DateTime___ctor, (Comparer_1_System_DateTime_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01295A70, Comparer_1_System_DateTime_ *, Comparer_1_System_DateTime__Create, (Comparison_1_DateTime_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFCF0, Comparer_1_System_DateTime__Create__MethodInfo); DO_APP_FUNC(0x01295BA0, Comparer_1_System_DateTime_ *, Comparer_1_System_DateTime__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012837A0, int32_t, Comparer_1_System_DateTime__System_Collections_IComparer_Compare, (Comparer_1_System_DateTime_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_System_DateTime_ *, Comparer_1_System_DateTime__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_System_DateTimeOffset___ctor, (Comparer_1_System_DateTimeOffset_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01296110, Comparer_1_System_DateTimeOffset_ *, Comparer_1_System_DateTimeOffset__Create, (Comparison_1_DateTimeOffset_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFC88, Comparer_1_System_DateTimeOffset__Create__MethodInfo); DO_APP_FUNC(0x01296240, Comparer_1_System_DateTimeOffset_ *, Comparer_1_System_DateTimeOffset__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_System_DateTimeOffset__System_Collections_IComparer_Compare, (Comparer_1_System_DateTimeOffset_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_System_DateTimeOffset_ *, Comparer_1_System_DateTimeOffset__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_System_Decimal___ctor, (Comparer_1_System_Decimal_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012967B0, Comparer_1_System_Decimal_ *, Comparer_1_System_Decimal__Create, (Comparison_1_Decimal_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFCB8, Comparer_1_System_Decimal__Create__MethodInfo); DO_APP_FUNC(0x012968E0, Comparer_1_System_Decimal_ *, Comparer_1_System_Decimal__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_System_Decimal__System_Collections_IComparer_Compare, (Comparer_1_System_Decimal_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_System_Decimal_ *, Comparer_1_System_Decimal__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___ctor, (Comparer_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01296E50, Comparer_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ *, Comparer_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__Create, (Comparison_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD11A8, Comparer_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__Create__MethodInfo); DO_APP_FUNC(0x01296F80, Comparer_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ *, Comparer_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012974F0, int32_t, Comparer_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ *, Comparer_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_System_Double___ctor, (Comparer_1_System_Double_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012976C0, Comparer_1_System_Double_ *, Comparer_1_System_Double__Create, (Comparison_1_Double_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1148, Comparer_1_System_Double__Create__MethodInfo); DO_APP_FUNC(0x012977F0, Comparer_1_System_Double_ *, Comparer_1_System_Double__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x01297D60, int32_t, Comparer_1_System_Double__System_Collections_IComparer_Compare, (Comparer_1_System_Double_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_System_Double_ *, Comparer_1_System_Double__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_UIElements_EasingFunction___ctor, (Comparer_1_UnityEngine_UIElements_EasingFunction_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01297ED0, Comparer_1_UnityEngine_UIElements_EasingFunction_ *, Comparer_1_UnityEngine_UIElements_EasingFunction__Create, (Comparison_1_UnityEngine_UIElements_EasingFunction_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1168, Comparer_1_UnityEngine_UIElements_EasingFunction__Create__MethodInfo); DO_APP_FUNC(0x01298000, Comparer_1_UnityEngine_UIElements_EasingFunction_ *, Comparer_1_UnityEngine_UIElements_EasingFunction__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x01292CB0, int32_t, Comparer_1_UnityEngine_UIElements_EasingFunction__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_UIElements_EasingFunction_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_UIElements_EasingFunction_ *, Comparer_1_UnityEngine_UIElements_EasingFunction__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_Rewired_ElementAssignmentConflictInfo___ctor, (Comparer_1_Rewired_ElementAssignmentConflictInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01298570, Comparer_1_Rewired_ElementAssignmentConflictInfo_ *, Comparer_1_Rewired_ElementAssignmentConflictInfo__Create, (Comparison_1_Rewired_ElementAssignmentConflictInfo_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1170, Comparer_1_Rewired_ElementAssignmentConflictInfo__Create__MethodInfo); DO_APP_FUNC(0x012986A0, Comparer_1_Rewired_ElementAssignmentConflictInfo_ *, Comparer_1_Rewired_ElementAssignmentConflictInfo__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x01298C10, int32_t, Comparer_1_Rewired_ElementAssignmentConflictInfo__System_Collections_IComparer_Compare, (Comparer_1_Rewired_ElementAssignmentConflictInfo_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_Rewired_ElementAssignmentConflictInfo_ *, Comparer_1_Rewired_ElementAssignmentConflictInfo__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_Discord_Entitlement___ctor, (Comparer_1_Discord_Entitlement_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01298E00, Comparer_1_Discord_Entitlement_ *, Comparer_1_Discord_Entitlement__Create, (Comparison_1_Discord_Entitlement_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1120, Comparer_1_Discord_Entitlement__Create__MethodInfo); DO_APP_FUNC(0x01298F30, Comparer_1_Discord_Entitlement_ *, Comparer_1_Discord_Entitlement__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012814E0, int32_t, Comparer_1_Discord_Entitlement__System_Collections_IComparer_Compare, (Comparer_1_Discord_Entitlement_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_Discord_Entitlement_ *, Comparer_1_Discord_Entitlement__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_Photon_Bolt_EventReliable___ctor, (Comparer_1_Photon_Bolt_EventReliable_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012994A0, Comparer_1_Photon_Bolt_EventReliable_ *, Comparer_1_Photon_Bolt_EventReliable__Create, (Comparison_1_Photon_Bolt_EventReliable_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1128, Comparer_1_Photon_Bolt_EventReliable__Create__MethodInfo); DO_APP_FUNC(0x012995D0, Comparer_1_Photon_Bolt_EventReliable_ *, Comparer_1_Photon_Bolt_EventReliable__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_Photon_Bolt_EventReliable__System_Collections_IComparer_Compare, (Comparer_1_Photon_Bolt_EventReliable_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_Photon_Bolt_EventReliable_ *, Comparer_1_Photon_Bolt_EventReliable__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_Photon_Bolt_EventUnreliable___ctor, (Comparer_1_Photon_Bolt_EventUnreliable_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01299B40, Comparer_1_Photon_Bolt_EventUnreliable_ *, Comparer_1_Photon_Bolt_EventUnreliable__Create, (Comparison_1_Photon_Bolt_EventUnreliable_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD10D0, Comparer_1_Photon_Bolt_EventUnreliable__Create__MethodInfo); DO_APP_FUNC(0x01299C70, Comparer_1_Photon_Bolt_EventUnreliable_ *, Comparer_1_Photon_Bolt_EventUnreliable__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012814E0, int32_t, Comparer_1_Photon_Bolt_EventUnreliable__System_Collections_IComparer_Compare, (Comparer_1_Photon_Bolt_EventUnreliable_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_Photon_Bolt_EventUnreliable_ *, Comparer_1_Photon_Bolt_EventUnreliable__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_Discord_FileStat___ctor, (Comparer_1_Discord_FileStat_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0129A1E0, Comparer_1_Discord_FileStat_ *, Comparer_1_Discord_FileStat__Create, (Comparison_1_Discord_FileStat_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD10E0, Comparer_1_Discord_FileStat__Create__MethodInfo); DO_APP_FUNC(0x0129A310, Comparer_1_Discord_FileStat_ *, Comparer_1_Discord_FileStat__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012814E0, int32_t, Comparer_1_Discord_FileStat__System_Collections_IComparer_Compare, (Comparer_1_Discord_FileStat_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_Discord_FileStat_ *, Comparer_1_Discord_FileStat__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___ctor, (Comparer_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0129A880, Comparer_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ *, Comparer_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__Create, (Comparison_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1110, Comparer_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__Create__MethodInfo); DO_APP_FUNC(0x0129A9B0, Comparer_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ *, Comparer_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x01298C10, int32_t, Comparer_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ *, Comparer_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_TextCore_GlyphRect___ctor, (Comparer_1_UnityEngine_TextCore_GlyphRect_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0129AF20, Comparer_1_UnityEngine_TextCore_GlyphRect_ *, Comparer_1_UnityEngine_TextCore_GlyphRect__Create, (Comparison_1_UnityEngine_TextCore_GlyphRect_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD10A0, Comparer_1_UnityEngine_TextCore_GlyphRect__Create__MethodInfo); DO_APP_FUNC(0x0129B050, Comparer_1_UnityEngine_TextCore_GlyphRect_ *, Comparer_1_UnityEngine_TextCore_GlyphRect__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_UnityEngine_TextCore_GlyphRect__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_TextCore_GlyphRect_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_TextCore_GlyphRect_ *, Comparer_1_UnityEngine_TextCore_GlyphRect__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_System_Guid___ctor, (Comparer_1_System_Guid_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0129B5C0, Comparer_1_System_Guid_ *, Comparer_1_System_Guid__Create, (Comparison_1_Guid_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD10A8, Comparer_1_System_Guid__Create__MethodInfo); DO_APP_FUNC(0x0129B6F0, Comparer_1_System_Guid_ *, Comparer_1_System_Guid__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_System_Guid__System_Collections_IComparer_Compare, (Comparer_1_System_Guid_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_System_Guid_ *, Comparer_1_System_Guid__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_Rewired_InputActionSourceData___ctor, (Comparer_1_Rewired_InputActionSourceData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0129BC60, Comparer_1_Rewired_InputActionSourceData_ *, Comparer_1_Rewired_InputActionSourceData__Create, (Comparison_1_Rewired_InputActionSourceData_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD10B0, Comparer_1_Rewired_InputActionSourceData__Create__MethodInfo); DO_APP_FUNC(0x0129BD90, Comparer_1_Rewired_InputActionSourceData_ *, Comparer_1_Rewired_InputActionSourceData__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012814E0, int32_t, Comparer_1_Rewired_InputActionSourceData__System_Collections_IComparer_Compare, (Comparer_1_Rewired_InputActionSourceData_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_Rewired_InputActionSourceData_ *, Comparer_1_Rewired_InputActionSourceData__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_InputSystem_InputBinding___ctor, (Comparer_1_UnityEngine_InputSystem_InputBinding_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0129C300, Comparer_1_UnityEngine_InputSystem_InputBinding_ *, Comparer_1_UnityEngine_InputSystem_InputBinding__Create, (Comparison_1_UnityEngine_InputSystem_InputBinding_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1070, Comparer_1_UnityEngine_InputSystem_InputBinding__Create__MethodInfo); DO_APP_FUNC(0x0129C430, Comparer_1_UnityEngine_InputSystem_InputBinding_ *, Comparer_1_UnityEngine_InputSystem_InputBinding__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0129C9A0, int32_t, Comparer_1_UnityEngine_InputSystem_InputBinding__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_InputSystem_InputBinding_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_InputSystem_InputBinding_ *, Comparer_1_UnityEngine_InputSystem_InputBinding__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_XR_InputDevice___ctor, (Comparer_1_UnityEngine_XR_InputDevice_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0129CBF0, Comparer_1_UnityEngine_XR_InputDevice_ *, Comparer_1_UnityEngine_XR_InputDevice__Create, (Comparison_1_UnityEngine_XR_InputDevice_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1080, Comparer_1_UnityEngine_XR_InputDevice__Create__MethodInfo); DO_APP_FUNC(0x0129CD20, Comparer_1_UnityEngine_XR_InputDevice_ *, Comparer_1_UnityEngine_XR_InputDevice__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_UnityEngine_XR_InputDevice__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_XR_InputDevice_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_XR_InputDevice_ *, Comparer_1_UnityEngine_XR_InputDevice__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription___ctor, (Comparer_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0129D290, Comparer_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription_ *, Comparer_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription__Create, (Comparison_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1040, Comparer_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription__Create__MethodInfo); DO_APP_FUNC(0x0129D3C0, Comparer_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription_ *, Comparer_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0128CFE0, int32_t, Comparer_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription_ *, Comparer_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_InputSystem_LowLevel_InputEventPtr___ctor, (Comparer_1_UnityEngine_InputSystem_LowLevel_InputEventPtr_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0129D930, Comparer_1_UnityEngine_InputSystem_LowLevel_InputEventPtr_ *, Comparer_1_UnityEngine_InputSystem_LowLevel_InputEventPtr__Create, (Comparison_1_UnityEngine_InputSystem_LowLevel_InputEventPtr_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1048, Comparer_1_UnityEngine_InputSystem_LowLevel_InputEventPtr__Create__MethodInfo); DO_APP_FUNC(0x0129DA60, Comparer_1_UnityEngine_InputSystem_LowLevel_InputEventPtr_ *, Comparer_1_UnityEngine_InputSystem_LowLevel_InputEventPtr__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012837A0, int32_t, Comparer_1_UnityEngine_InputSystem_LowLevel_InputEventPtr__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_InputSystem_LowLevel_InputEventPtr_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_InputSystem_LowLevel_InputEventPtr_ *, Comparer_1_UnityEngine_InputSystem_LowLevel_InputEventPtr__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_System_Int16___ctor, (Comparer_1_System_Int16_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0129DFD0, Comparer_1_System_Int16_ *, Comparer_1_System_Int16__Create, (Comparison_1_Int16_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1060, Comparer_1_System_Int16__Create__MethodInfo); DO_APP_FUNC(0x0129E100, Comparer_1_System_Int16_ *, Comparer_1_System_Int16__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012915F0, int32_t, Comparer_1_System_Int16__System_Collections_IComparer_Compare, (Comparer_1_System_Int16_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_System_Int16_ *, Comparer_1_System_Int16__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_Pathfinding_Int3___ctor, (Comparer_1_Pathfinding_Int3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0129E670, Comparer_1_Pathfinding_Int3_ *, Comparer_1_Pathfinding_Int3__Create, (Comparison_1_Pathfinding_Int3_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1018, Comparer_1_Pathfinding_Int3__Create__MethodInfo); DO_APP_FUNC(0x0129E7A0, Comparer_1_Pathfinding_Int3_ *, Comparer_1_Pathfinding_Int3__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0128AD20, int32_t, Comparer_1_Pathfinding_Int3__System_Collections_IComparer_Compare, (Comparer_1_Pathfinding_Int3_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_Pathfinding_Int3_ *, Comparer_1_Pathfinding_Int3__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_System_Int32___ctor, (Comparer_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0129ED10, Comparer_1_System_Int32_ *, Comparer_1_System_Int32__Create, (Comparison_1_Int32_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1030, Comparer_1_System_Int32__Create__MethodInfo); DO_APP_FUNC(0x0129EE40, Comparer_1_System_Int32_ *, Comparer_1_System_Int32__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x01292CB0, int32_t, Comparer_1_System_Int32__System_Collections_IComparer_Compare, (Comparer_1_System_Int32_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_System_Int32_ *, Comparer_1_System_Int32__get_Default, (MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C94390, Comparer_1_System_Int32__get_Default__MethodInfo); DO_APP_FUNC(0x003AE050, void, Comparer_1_System_Int32Enum___ctor, (Comparer_1_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0129F3B0, Comparer_1_System_Int32Enum_ *, Comparer_1_System_Int32Enum__Create, (Comparison_1_Int32Enum_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1038, Comparer_1_System_Int32Enum__Create__MethodInfo); DO_APP_FUNC(0x0129F4E0, Comparer_1_System_Int32Enum_ *, Comparer_1_System_Int32Enum__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x01292CB0, int32_t, Comparer_1_System_Int32Enum__System_Collections_IComparer_Compare, (Comparer_1_System_Int32Enum_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_System_Int32Enum_ *, Comparer_1_System_Int32Enum__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_System_Int64___ctor, (Comparer_1_System_Int64_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0129FA50, Comparer_1_System_Int64_ *, Comparer_1_System_Int64__Create, (Comparison_1_Int64_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0FF8, Comparer_1_System_Int64__Create__MethodInfo); DO_APP_FUNC(0x0129FB80, Comparer_1_System_Int64_ *, Comparer_1_System_Int64__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012837A0, int32_t, Comparer_1_System_Int64__System_Collections_IComparer_Compare, (Comparer_1_System_Int64_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_System_Int64_ *, Comparer_1_System_Int64__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_Pathfinding_ClipperLib_IntPoint___ctor, (Comparer_1_Pathfinding_ClipperLib_IntPoint_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012A00F0, Comparer_1_Pathfinding_ClipperLib_IntPoint_ *, Comparer_1_Pathfinding_ClipperLib_IntPoint__Create, (Comparison_1_Pathfinding_ClipperLib_IntPoint_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1000, Comparer_1_Pathfinding_ClipperLib_IntPoint__Create__MethodInfo); DO_APP_FUNC(0x012A0220, Comparer_1_Pathfinding_ClipperLib_IntPoint_ *, Comparer_1_Pathfinding_ClipperLib_IntPoint__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_Pathfinding_ClipperLib_IntPoint__System_Collections_IComparer_Compare, (Comparer_1_Pathfinding_ClipperLib_IntPoint_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_Pathfinding_ClipperLib_IntPoint_ *, Comparer_1_Pathfinding_ClipperLib_IntPoint__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_System_IntPtr___ctor, (Comparer_1_System_IntPtr_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012A0790, Comparer_1_System_IntPtr_ *, Comparer_1_System_IntPtr__Create, (Comparison_1_IntPtr_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0FD0, Comparer_1_System_IntPtr__Create__MethodInfo); DO_APP_FUNC(0x012A08C0, Comparer_1_System_IntPtr_ *, Comparer_1_System_IntPtr__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012837A0, int32_t, Comparer_1_System_IntPtr__System_Collections_IComparer_Compare, (Comparer_1_System_IntPtr_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_System_IntPtr_ *, Comparer_1_System_IntPtr__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_Pathfinding_IntRect___ctor, (Comparer_1_Pathfinding_IntRect_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012A0E30, Comparer_1_Pathfinding_IntRect_ *, Comparer_1_Pathfinding_IntRect__Create, (Comparison_1_Pathfinding_IntRect_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0FD8, Comparer_1_Pathfinding_IntRect__Create__MethodInfo); DO_APP_FUNC(0x012A0F60, Comparer_1_Pathfinding_IntRect_ *, Comparer_1_Pathfinding_IntRect__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_Pathfinding_IntRect__System_Collections_IComparer_Compare, (Comparer_1_Pathfinding_IntRect_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_Pathfinding_IntRect_ *, Comparer_1_Pathfinding_IntRect__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_InputSystem_Utilities_InternedString___ctor, (Comparer_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012A14D0, Comparer_1_UnityEngine_InputSystem_Utilities_InternedString_ *, Comparer_1_UnityEngine_InputSystem_Utilities_InternedString__Create, (Comparison_1_UnityEngine_InputSystem_Utilities_InternedString_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0FE0, Comparer_1_UnityEngine_InputSystem_Utilities_InternedString__Create__MethodInfo); DO_APP_FUNC(0x012A1600, Comparer_1_UnityEngine_InputSystem_Utilities_InternedString_ *, Comparer_1_UnityEngine_InputSystem_Utilities_InternedString__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_UnityEngine_InputSystem_Utilities_InternedString__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_InputSystem_Utilities_InternedString_ *, Comparer_1_UnityEngine_InputSystem_Utilities_InternedString__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_System_Linq_Expressions_Interpreter_InterpretedFrameInfo___ctor, (Comparer_1_System_Linq_Expressions_Interpreter_InterpretedFrameInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012A1B70, Comparer_1_System_Linq_Expressions_Interpreter_InterpretedFrameInfo_ *, Comparer_1_System_Linq_Expressions_Interpreter_InterpretedFrameInfo__Create, (Comparison_1_System_Linq_Expressions_Interpreter_InterpretedFrameInfo_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0F98, Comparer_1_System_Linq_Expressions_Interpreter_InterpretedFrameInfo__Create__MethodInfo); DO_APP_FUNC(0x012A1CA0, Comparer_1_System_Linq_Expressions_Interpreter_InterpretedFrameInfo_ *, Comparer_1_System_Linq_Expressions_Interpreter_InterpretedFrameInfo__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_System_Linq_Expressions_Interpreter_InterpretedFrameInfo__System_Collections_IComparer_Compare, (Comparer_1_System_Linq_Expressions_Interpreter_InterpretedFrameInfo_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_System_Linq_Expressions_Interpreter_InterpretedFrameInfo_ *, Comparer_1_System_Linq_Expressions_Interpreter_InterpretedFrameInfo__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_Timeline_IntervalTreeNode___ctor, (Comparer_1_UnityEngine_Timeline_IntervalTreeNode_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012A2210, Comparer_1_UnityEngine_Timeline_IntervalTreeNode_ *, Comparer_1_UnityEngine_Timeline_IntervalTreeNode__Create, (Comparison_1_UnityEngine_Timeline_IntervalTreeNode_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0FB0, Comparer_1_UnityEngine_Timeline_IntervalTreeNode__Create__MethodInfo); DO_APP_FUNC(0x012A2340, Comparer_1_UnityEngine_Timeline_IntervalTreeNode_ *, Comparer_1_UnityEngine_Timeline_IntervalTreeNode__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012814E0, int32_t, Comparer_1_UnityEngine_Timeline_IntervalTreeNode__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_Timeline_IntervalTreeNode_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_Timeline_IntervalTreeNode_ *, Comparer_1_UnityEngine_Timeline_IntervalTreeNode__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount___ctor, (Comparer_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012A28B0, Comparer_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount_ *, Comparer_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount__Create, (Comparison_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0FC0, Comparer_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount__Create__MethodInfo); DO_APP_FUNC(0x012A29E0, Comparer_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount_ *, Comparer_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012814E0, int32_t, Comparer_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount__System_Collections_IComparer_Compare, (Comparer_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount_ *, Comparer_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_KickedPlayer___ctor, (Comparer_1_KickedPlayer_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012A2F50, Comparer_1_KickedPlayer_ *, Comparer_1_KickedPlayer__Create, (Comparison_1_KickedPlayer_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0F78, Comparer_1_KickedPlayer__Create__MethodInfo); DO_APP_FUNC(0x012A3080, Comparer_1_KickedPlayer_ *, Comparer_1_KickedPlayer__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_KickedPlayer__System_Collections_IComparer_Compare, (Comparer_1_KickedPlayer_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_KickedPlayer_ *, Comparer_1_KickedPlayer__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_LayerMask___ctor, (Comparer_1_UnityEngine_LayerMask_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012A35F0, Comparer_1_UnityEngine_LayerMask_ *, Comparer_1_UnityEngine_LayerMask__Create, (Comparison_1_UnityEngine_LayerMask_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0F80, Comparer_1_UnityEngine_LayerMask__Create__MethodInfo); DO_APP_FUNC(0x012A3720, Comparer_1_UnityEngine_LayerMask_ *, Comparer_1_UnityEngine_LayerMask__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x01292CB0, int32_t, Comparer_1_UnityEngine_LayerMask__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_LayerMask_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_LayerMask_ *, Comparer_1_UnityEngine_LayerMask__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_UIElements_ManipulatorActivationFilter___ctor, (Comparer_1_UnityEngine_UIElements_ManipulatorActivationFilter_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012A3C90, Comparer_1_UnityEngine_UIElements_ManipulatorActivationFilter_ *, Comparer_1_UnityEngine_UIElements_ManipulatorActivationFilter__Create, (Comparison_1_UnityEngine_UIElements_ManipulatorActivationFilter_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0F38, Comparer_1_UnityEngine_UIElements_ManipulatorActivationFilter__Create__MethodInfo); DO_APP_FUNC(0x012A3DC0, Comparer_1_UnityEngine_UIElements_ManipulatorActivationFilter_ *, Comparer_1_UnityEngine_UIElements_ManipulatorActivationFilter__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0128AD20, int32_t, Comparer_1_UnityEngine_UIElements_ManipulatorActivationFilter__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_UIElements_ManipulatorActivationFilter_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_UIElements_ManipulatorActivationFilter_ *, Comparer_1_UnityEngine_UIElements_ManipulatorActivationFilter__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_Matrix4x4___ctor, (Comparer_1_UnityEngine_Matrix4x4_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012A4330, Comparer_1_UnityEngine_Matrix4x4_ *, Comparer_1_UnityEngine_Matrix4x4__Create, (Comparison_1_UnityEngine_Matrix4x4_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0F48, Comparer_1_UnityEngine_Matrix4x4__Create__MethodInfo); DO_APP_FUNC(0x012A4460, Comparer_1_UnityEngine_Matrix4x4_ *, Comparer_1_UnityEngine_Matrix4x4__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012A49D0, int32_t, Comparer_1_UnityEngine_Matrix4x4__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_Matrix4x4_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_Matrix4x4_ *, Comparer_1_UnityEngine_Matrix4x4__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_InputSystem_Utilities_NameAndParameters___ctor, (Comparer_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012A4BC0, Comparer_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ *, Comparer_1_UnityEngine_InputSystem_Utilities_NameAndParameters__Create, (Comparison_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0F60, Comparer_1_UnityEngine_InputSystem_Utilities_NameAndParameters__Create__MethodInfo); DO_APP_FUNC(0x012A4CF0, Comparer_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ *, Comparer_1_UnityEngine_InputSystem_Utilities_NameAndParameters__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012814E0, int32_t, Comparer_1_UnityEngine_InputSystem_Utilities_NameAndParameters__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ *, Comparer_1_UnityEngine_InputSystem_Utilities_NameAndParameters__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_InputSystem_Utilities_NamedValue___ctor, (Comparer_1_UnityEngine_InputSystem_Utilities_NamedValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012A5260, Comparer_1_UnityEngine_InputSystem_Utilities_NamedValue_ *, Comparer_1_UnityEngine_InputSystem_Utilities_NamedValue__Create, (Comparison_1_UnityEngine_InputSystem_Utilities_NamedValue_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0EE8, Comparer_1_UnityEngine_InputSystem_Utilities_NamedValue__Create__MethodInfo); DO_APP_FUNC(0x012A5390, Comparer_1_UnityEngine_InputSystem_Utilities_NamedValue_ *, Comparer_1_UnityEngine_InputSystem_Utilities_NamedValue__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012814E0, int32_t, Comparer_1_UnityEngine_InputSystem_Utilities_NamedValue__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_InputSystem_Utilities_NamedValue_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_InputSystem_Utilities_NamedValue_ *, Comparer_1_UnityEngine_InputSystem_Utilities_NamedValue__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_Photon_Bolt_NetworkPropertyInfo___ctor, (Comparer_1_Photon_Bolt_NetworkPropertyInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012A5900, Comparer_1_Photon_Bolt_NetworkPropertyInfo_ *, Comparer_1_Photon_Bolt_NetworkPropertyInfo__Create, (Comparison_1_Photon_Bolt_NetworkPropertyInfo_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0F10, Comparer_1_Photon_Bolt_NetworkPropertyInfo__Create__MethodInfo); DO_APP_FUNC(0x012A5A30, Comparer_1_Photon_Bolt_NetworkPropertyInfo_ *, Comparer_1_Photon_Bolt_NetworkPropertyInfo__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x01280600, int32_t, Comparer_1_Photon_Bolt_NetworkPropertyInfo__System_Collections_IComparer_Compare, (Comparer_1_Photon_Bolt_NetworkPropertyInfo_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_Photon_Bolt_NetworkPropertyInfo_ *, Comparer_1_Photon_Bolt_NetworkPropertyInfo__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_System_Object___ctor, (Comparer_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012A5FA0, Comparer_1_System_Object_ *, Comparer_1_System_Object__Create, (Comparison_1_Object_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0F20, Comparer_1_System_Object__Create__MethodInfo); DO_APP_FUNC(0x012A60D0, Comparer_1_System_Object_ *, Comparer_1_System_Object__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012A6640, int32_t, Comparer_1_System_Object__System_Collections_IComparer_Compare, (Comparer_1_System_Object_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_System_Object_ *, Comparer_1_System_Object__get_Default, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6C10, Comparer_1_System_Object__get_Default__MethodInfo); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData___ctor, (Comparer_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012A67D0, Comparer_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData_ *, Comparer_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData__Create, (Comparison_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0EC0, Comparer_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData__Create__MethodInfo); DO_APP_FUNC(0x012A6900, Comparer_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData_ *, Comparer_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012974F0, int32_t, Comparer_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData_ *, Comparer_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_Dissonance_Networking_Client_OpenChannel___ctor, (Comparer_1_Dissonance_Networking_Client_OpenChannel_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012A6E70, Comparer_1_Dissonance_Networking_Client_OpenChannel_ *, Comparer_1_Dissonance_Networking_Client_OpenChannel__Create, (Comparison_1_Dissonance_Networking_Client_OpenChannel_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0ED0, Comparer_1_Dissonance_Networking_Client_OpenChannel__Create__MethodInfo); DO_APP_FUNC(0x012A6FA0, Comparer_1_Dissonance_Networking_Client_OpenChannel_ *, Comparer_1_Dissonance_Networking_Client_OpenChannel__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x01280600, int32_t, Comparer_1_Dissonance_Networking_Client_OpenChannel__System_Collections_IComparer_Compare, (Comparer_1_Dissonance_Networking_Client_OpenChannel_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_Dissonance_Networking_Client_OpenChannel_ *, Comparer_1_Dissonance_Networking_Client_OpenChannel__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_Photon_Bolt_Internal_PacketStats___ctor, (Comparer_1_Photon_Bolt_Internal_PacketStats_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012A7510, Comparer_1_Photon_Bolt_Internal_PacketStats_ *, Comparer_1_Photon_Bolt_Internal_PacketStats__Create, (Comparison_1_Photon_Bolt_Internal_PacketStats_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0EA0, Comparer_1_Photon_Bolt_Internal_PacketStats__Create__MethodInfo); DO_APP_FUNC(0x012A7640, Comparer_1_Photon_Bolt_Internal_PacketStats_ *, Comparer_1_Photon_Bolt_Internal_PacketStats__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0128AD20, int32_t, Comparer_1_Photon_Bolt_Internal_PacketStats__System_Collections_IComparer_Compare, (Comparer_1_Photon_Bolt_Internal_PacketStats_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_Photon_Bolt_Internal_PacketStats_ *, Comparer_1_Photon_Bolt_Internal_PacketStats__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_ParticleCollisionEvent___ctor, (Comparer_1_UnityEngine_ParticleCollisionEvent_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012A7BB0, Comparer_1_UnityEngine_ParticleCollisionEvent_ *, Comparer_1_UnityEngine_ParticleCollisionEvent__Create, (Comparison_1_UnityEngine_ParticleCollisionEvent_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0EA8, Comparer_1_UnityEngine_ParticleCollisionEvent__Create__MethodInfo); DO_APP_FUNC(0x012A7CE0, Comparer_1_UnityEngine_ParticleCollisionEvent_ *, Comparer_1_UnityEngine_ParticleCollisionEvent__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0128D880, int32_t, Comparer_1_UnityEngine_ParticleCollisionEvent__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_ParticleCollisionEvent_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_ParticleCollisionEvent_ *, Comparer_1_UnityEngine_ParticleCollisionEvent__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_Playables_Playable___ctor, (Comparer_1_UnityEngine_Playables_Playable_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012A8250, Comparer_1_UnityEngine_Playables_Playable_ *, Comparer_1_UnityEngine_Playables_Playable__Create, (Comparison_1_UnityEngine_Playables_Playable_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0EB0, Comparer_1_UnityEngine_Playables_Playable__Create__MethodInfo); DO_APP_FUNC(0x012A8380, Comparer_1_UnityEngine_Playables_Playable_ *, Comparer_1_UnityEngine_Playables_Playable__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_UnityEngine_Playables_Playable__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_Playables_Playable_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_Playables_Playable_ *, Comparer_1_UnityEngine_Playables_Playable__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_Playables_PlayableBinding___ctor, (Comparer_1_UnityEngine_Playables_PlayableBinding_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012A88F0, Comparer_1_UnityEngine_Playables_PlayableBinding_ *, Comparer_1_UnityEngine_Playables_PlayableBinding__Create, (Comparison_1_UnityEngine_Playables_PlayableBinding_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0E60, Comparer_1_UnityEngine_Playables_PlayableBinding__Create__MethodInfo); DO_APP_FUNC(0x012A8A20, Comparer_1_UnityEngine_Playables_PlayableBinding_ *, Comparer_1_UnityEngine_Playables_PlayableBinding__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x01280600, int32_t, Comparer_1_UnityEngine_Playables_PlayableBinding__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_Playables_PlayableBinding_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_Playables_PlayableBinding_ *, Comparer_1_UnityEngine_Playables_PlayableBinding__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_Photon_Bolt_Priority___ctor, (Comparer_1_Photon_Bolt_Priority_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012A8F90, Comparer_1_Photon_Bolt_Priority_ *, Comparer_1_Photon_Bolt_Priority__Create, (Comparison_1_Photon_Bolt_Priority_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0E80, Comparer_1_Photon_Bolt_Priority__Create__MethodInfo); DO_APP_FUNC(0x012A90C0, Comparer_1_Photon_Bolt_Priority_ *, Comparer_1_Photon_Bolt_Priority__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0128AD20, int32_t, Comparer_1_Photon_Bolt_Priority__System_Collections_IComparer_Compare, (Comparer_1_Photon_Bolt_Priority_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_Photon_Bolt_Priority_ *, Comparer_1_Photon_Bolt_Priority__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_Quaternion___ctor, (Comparer_1_UnityEngine_Quaternion_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012A9630, Comparer_1_UnityEngine_Quaternion_ *, Comparer_1_UnityEngine_Quaternion__Create, (Comparison_1_UnityEngine_Quaternion_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0E88, Comparer_1_UnityEngine_Quaternion__Create__MethodInfo); DO_APP_FUNC(0x012A9760, Comparer_1_UnityEngine_Quaternion_ *, Comparer_1_UnityEngine_Quaternion__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x01292490, int32_t, Comparer_1_UnityEngine_Quaternion__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_Quaternion_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_Quaternion_ *, Comparer_1_UnityEngine_Quaternion__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_System_Xml_Schema_RangePositionInfo___ctor, (Comparer_1_System_Xml_Schema_RangePositionInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012A9CD0, Comparer_1_System_Xml_Schema_RangePositionInfo_ *, Comparer_1_System_Xml_Schema_RangePositionInfo__Create, (Comparison_1_System_Xml_Schema_RangePositionInfo_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0E48, Comparer_1_System_Xml_Schema_RangePositionInfo__Create__MethodInfo); DO_APP_FUNC(0x012A9E00, Comparer_1_System_Xml_Schema_RangePositionInfo_ *, Comparer_1_System_Xml_Schema_RangePositionInfo__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_System_Xml_Schema_RangePositionInfo__System_Collections_IComparer_Compare, (Comparer_1_System_Xml_Schema_RangePositionInfo_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_System_Xml_Schema_RangePositionInfo_ *, Comparer_1_System_Xml_Schema_RangePositionInfo__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_RaycastHit___ctor, (Comparer_1_UnityEngine_RaycastHit_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012AA370, Comparer_1_UnityEngine_RaycastHit_ *, Comparer_1_UnityEngine_RaycastHit__Create, (Comparison_1_UnityEngine_RaycastHit_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D158B8, Comparer_1_UnityEngine_RaycastHit__Create__MethodInfo); DO_APP_FUNC(0x012AA4A0, Comparer_1_UnityEngine_RaycastHit_ *, Comparer_1_UnityEngine_RaycastHit__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x01298C10, int32_t, Comparer_1_UnityEngine_RaycastHit__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_RaycastHit_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_RaycastHit_ *, Comparer_1_UnityEngine_RaycastHit__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_RaycastHit2D___ctor, (Comparer_1_UnityEngine_RaycastHit2D_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012AAA10, Comparer_1_UnityEngine_RaycastHit2D_ *, Comparer_1_UnityEngine_RaycastHit2D__Create, (Comparison_1_UnityEngine_RaycastHit2D_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0E50, Comparer_1_UnityEngine_RaycastHit2D__Create__MethodInfo); DO_APP_FUNC(0x012AAB40, Comparer_1_UnityEngine_RaycastHit2D_ *, Comparer_1_UnityEngine_RaycastHit2D__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012AB0B0, int32_t, Comparer_1_UnityEngine_RaycastHit2D__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_RaycastHit2D_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_RaycastHit2D_ *, Comparer_1_UnityEngine_RaycastHit2D__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_EventSystems_RaycastResult___ctor, (Comparer_1_UnityEngine_EventSystems_RaycastResult_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012AB270, Comparer_1_UnityEngine_EventSystems_RaycastResult_ *, Comparer_1_UnityEngine_EventSystems_RaycastResult__Create, (Comparison_1_UnityEngine_EventSystems_RaycastResult_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0E30, Comparer_1_UnityEngine_EventSystems_RaycastResult__Create__MethodInfo); DO_APP_FUNC(0x012AB3A0, Comparer_1_UnityEngine_EventSystems_RaycastResult_ *, Comparer_1_UnityEngine_EventSystems_RaycastResult__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012860C0, int32_t, Comparer_1_UnityEngine_EventSystems_RaycastResult__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_EventSystems_RaycastResult_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_EventSystems_RaycastResult_ *, Comparer_1_UnityEngine_EventSystems_RaycastResult__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_Rect___ctor, (Comparer_1_UnityEngine_Rect_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012AB910, Comparer_1_UnityEngine_Rect_ *, Comparer_1_UnityEngine_Rect__Create, (Comparison_1_UnityEngine_Rect_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0E38, Comparer_1_UnityEngine_Rect__Create__MethodInfo); DO_APP_FUNC(0x012ABA40, Comparer_1_UnityEngine_Rect_ *, Comparer_1_UnityEngine_Rect__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x01292490, int32_t, Comparer_1_UnityEngine_Rect__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_Rect_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_Rect_ *, Comparer_1_UnityEngine_Rect__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_Rendering_ReflectionProbeBlendInfo___ctor, (Comparer_1_UnityEngine_Rendering_ReflectionProbeBlendInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012ABFB0, Comparer_1_UnityEngine_Rendering_ReflectionProbeBlendInfo_ *, Comparer_1_UnityEngine_Rendering_ReflectionProbeBlendInfo__Create, (Comparison_1_UnityEngine_Rendering_ReflectionProbeBlendInfo_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0E18, Comparer_1_UnityEngine_Rendering_ReflectionProbeBlendInfo__Create__MethodInfo); DO_APP_FUNC(0x012AC0E0, Comparer_1_UnityEngine_Rendering_ReflectionProbeBlendInfo_ *, Comparer_1_UnityEngine_Rendering_ReflectionProbeBlendInfo__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_UnityEngine_Rendering_ReflectionProbeBlendInfo__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_Rendering_ReflectionProbeBlendInfo_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_Rendering_ReflectionProbeBlendInfo_ *, Comparer_1_UnityEngine_Rendering_ReflectionProbeBlendInfo__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_Dissonance_RemoteChannel___ctor, (Comparer_1_Dissonance_RemoteChannel_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012AC650, Comparer_1_Dissonance_RemoteChannel_ *, Comparer_1_Dissonance_RemoteChannel__Create, (Comparison_1_Dissonance_RemoteChannel_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0E20, Comparer_1_Dissonance_RemoteChannel__Create__MethodInfo); DO_APP_FUNC(0x012AC780, Comparer_1_Dissonance_RemoteChannel_ *, Comparer_1_Dissonance_RemoteChannel__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012814E0, int32_t, Comparer_1_Dissonance_RemoteChannel__System_Collections_IComparer_Compare, (Comparer_1_Dissonance_RemoteChannel_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_Dissonance_RemoteChannel_ *, Comparer_1_Dissonance_RemoteChannel__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_UIElements_UIR_RenderChainTextEntry___ctor, (Comparer_1_UnityEngine_UIElements_UIR_RenderChainTextEntry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012ACCF0, Comparer_1_UnityEngine_UIElements_UIR_RenderChainTextEntry_ *, Comparer_1_UnityEngine_UIElements_UIR_RenderChainTextEntry__Create, (Comparison_1_UnityEngine_UIElements_UIR_RenderChainTextEntry_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0E28, Comparer_1_UnityEngine_UIElements_UIR_RenderChainTextEntry__Create__MethodInfo); DO_APP_FUNC(0x012ACE20, Comparer_1_UnityEngine_UIElements_UIR_RenderChainTextEntry_ *, Comparer_1_UnityEngine_UIElements_UIR_RenderChainTextEntry__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_UnityEngine_UIElements_UIR_RenderChainTextEntry__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_UIElements_UIR_RenderChainTextEntry_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_UIElements_UIR_RenderChainTextEntry_ *, Comparer_1_UnityEngine_UIElements_UIR_RenderChainTextEntry__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_Rendering_RenderTargetIdentifier___ctor, (Comparer_1_UnityEngine_Rendering_RenderTargetIdentifier_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012AD390, Comparer_1_UnityEngine_Rendering_RenderTargetIdentifier_ *, Comparer_1_UnityEngine_Rendering_RenderTargetIdentifier__Create, (Comparison_1_UnityEngine_Rendering_RenderTargetIdentifier_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0E00, Comparer_1_UnityEngine_Rendering_RenderTargetIdentifier__Create__MethodInfo); DO_APP_FUNC(0x012AD4C0, Comparer_1_UnityEngine_Rendering_RenderTargetIdentifier_ *, Comparer_1_UnityEngine_Rendering_RenderTargetIdentifier__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0128D880, int32_t, Comparer_1_UnityEngine_Rendering_RenderTargetIdentifier__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_Rendering_RenderTargetIdentifier_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_Rendering_RenderTargetIdentifier_ *, Comparer_1_UnityEngine_Rendering_RenderTargetIdentifier__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_Rendering_RendererUtils_RendererList___ctor, (Comparer_1_UnityEngine_Rendering_RendererUtils_RendererList_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012ADA30, Comparer_1_UnityEngine_Rendering_RendererUtils_RendererList_ *, Comparer_1_UnityEngine_Rendering_RendererUtils_RendererList__Create, (Comparison_1_UnityEngine_Rendering_RendererUtils_RendererList_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0E08, Comparer_1_UnityEngine_Rendering_RendererUtils_RendererList__Create__MethodInfo); DO_APP_FUNC(0x012ADB60, Comparer_1_UnityEngine_Rendering_RendererUtils_RendererList_ *, Comparer_1_UnityEngine_Rendering_RendererUtils_RendererList__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_UnityEngine_Rendering_RendererUtils_RendererList__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_Rendering_RendererUtils_RendererList_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_Rendering_RendererUtils_RendererList_ *, Comparer_1_UnityEngine_Rendering_RendererUtils_RendererList__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle___ctor, (Comparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012AE0D0, Comparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle_ *, Comparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle__Create, (Comparison_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0E10, Comparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle__Create__MethodInfo); DO_APP_FUNC(0x012AE200, Comparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle_ *, Comparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012837A0, int32_t, Comparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle_ *, Comparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_Resolution___ctor, (Comparer_1_UnityEngine_Resolution_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012AE770, Comparer_1_UnityEngine_Resolution_ *, Comparer_1_UnityEngine_Resolution__Create, (Comparison_1_UnityEngine_Resolution_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0DF0, Comparer_1_UnityEngine_Resolution__Create__MethodInfo); DO_APP_FUNC(0x012AE8A0, Comparer_1_UnityEngine_Resolution_ *, Comparer_1_UnityEngine_Resolution__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0128AD20, int32_t, Comparer_1_UnityEngine_Resolution__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_Resolution_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_Resolution_ *, Comparer_1_UnityEngine_Resolution__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle___ctor, (Comparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012AEE10, Comparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle_ *, Comparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle__Create, (Comparison_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0DF8, Comparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle__Create__MethodInfo); DO_APP_FUNC(0x012AEF40, Comparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle_ *, Comparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012837A0, int32_t, Comparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle_ *, Comparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_Dissonance_RoomChannel___ctor, (Comparer_1_Dissonance_RoomChannel_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012AF4B0, Comparer_1_Dissonance_RoomChannel_ *, Comparer_1_Dissonance_RoomChannel__Create, (Comparison_1_Dissonance_RoomChannel_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0DD8, Comparer_1_Dissonance_RoomChannel__Create__MethodInfo); DO_APP_FUNC(0x012AF5E0, Comparer_1_Dissonance_RoomChannel_ *, Comparer_1_Dissonance_RoomChannel__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0128D880, int32_t, Comparer_1_Dissonance_RoomChannel__System_Collections_IComparer_Compare, (Comparer_1_Dissonance_RoomChannel_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_Dissonance_RoomChannel_ *, Comparer_1_Dissonance_RoomChannel__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_Dissonance_RoomMembership___ctor, (Comparer_1_Dissonance_RoomMembership_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012AFB50, Comparer_1_Dissonance_RoomMembership_ *, Comparer_1_Dissonance_RoomMembership__Create, (Comparison_1_Dissonance_RoomMembership_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0DE0, Comparer_1_Dissonance_RoomMembership__Create__MethodInfo); DO_APP_FUNC(0x012AFC80, Comparer_1_Dissonance_RoomMembership_ *, Comparer_1_Dissonance_RoomMembership__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012814E0, int32_t, Comparer_1_Dissonance_RoomMembership__System_Collections_IComparer_Compare, (Comparer_1_Dissonance_RoomMembership_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_Dissonance_RoomMembership_ *, Comparer_1_Dissonance_RoomMembership__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_UIElements_RuleMatcher___ctor, (Comparer_1_UnityEngine_UIElements_RuleMatcher_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012B01F0, Comparer_1_UnityEngine_UIElements_RuleMatcher_ *, Comparer_1_UnityEngine_UIElements_RuleMatcher__Create, (Comparison_1_UnityEngine_UIElements_RuleMatcher_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0DE8, Comparer_1_UnityEngine_UIElements_RuleMatcher__Create__MethodInfo); DO_APP_FUNC(0x012B0320, Comparer_1_UnityEngine_UIElements_RuleMatcher_ *, Comparer_1_UnityEngine_UIElements_RuleMatcher__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_UnityEngine_UIElements_RuleMatcher__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_UIElements_RuleMatcher_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_UIElements_RuleMatcher_ *, Comparer_1_UnityEngine_UIElements_RuleMatcher__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_System_SByte___ctor, (Comparer_1_System_SByte_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012B0890, Comparer_1_System_SByte_ *, Comparer_1_System_SByte__Create, (Comparison_1_SByte_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0DC0, Comparer_1_System_SByte__Create__MethodInfo); DO_APP_FUNC(0x012B09C0, Comparer_1_System_SByte_ *, Comparer_1_System_SByte__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x01289E80, int32_t, Comparer_1_System_SByte__System_Collections_IComparer_Compare, (Comparer_1_System_SByte_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_System_SByte_ *, Comparer_1_System_SByte__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord___ctor, (Comparer_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012B0F30, Comparer_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ *, Comparer_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__Create, (Comparison_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0DC8, Comparer_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__Create__MethodInfo); DO_APP_FUNC(0x012B1060, Comparer_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ *, Comparer_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012814E0, int32_t, Comparer_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ *, Comparer_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_System_Single___ctor, (Comparer_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012B15D0, Comparer_1_System_Single_ *, Comparer_1_System_Single__Create, (Comparison_1_Single_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0DD0, Comparer_1_System_Single__Create__MethodInfo); DO_APP_FUNC(0x012B1700, Comparer_1_System_Single_ *, Comparer_1_System_Single__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012B1C70, int32_t, Comparer_1_System_Single__System_Collections_IComparer_Compare, (Comparer_1_System_Single_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_System_Single_ *, Comparer_1_System_Single__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_Discord_Sku___ctor, (Comparer_1_Discord_Sku_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012B1DE0, Comparer_1_Discord_Sku_ *, Comparer_1_Discord_Sku__Create, (Comparison_1_Discord_Sku_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0DB0, Comparer_1_Discord_Sku__Create__MethodInfo); DO_APP_FUNC(0x012B1F10, Comparer_1_Discord_Sku_ *, Comparer_1_Discord_Sku__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0128D880, int32_t, Comparer_1_Discord_Sku__System_Collections_IComparer_Compare, (Comparer_1_Discord_Sku_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_Discord_Sku_ *, Comparer_1_Discord_Sku__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_System_Net_Security_SslApplicationProtocol___ctor, (Comparer_1_System_Net_Security_SslApplicationProtocol_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012B2480, Comparer_1_System_Net_Security_SslApplicationProtocol_ *, Comparer_1_System_Net_Security_SslApplicationProtocol__Create, (Comparison_1_System_Net_Security_SslApplicationProtocol_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0DB8, Comparer_1_System_Net_Security_SslApplicationProtocol__Create__MethodInfo); DO_APP_FUNC(0x012B25B0, Comparer_1_System_Net_Security_SslApplicationProtocol_ *, Comparer_1_System_Net_Security_SslApplicationProtocol__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_System_Net_Security_SslApplicationProtocol__System_Collections_IComparer_Compare, (Comparer_1_System_Net_Security_SslApplicationProtocol_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_System_Net_Security_SslApplicationProtocol_ *, Comparer_1_System_Net_Security_SslApplicationProtocol__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_Steamworks_SteamItemDef_t___ctor, (Comparer_1_Steamworks_SteamItemDef_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012B2B20, Comparer_1_Steamworks_SteamItemDef_t_ *, Comparer_1_Steamworks_SteamItemDef_t__Create, (Comparison_1_Steamworks_SteamItemDef_t_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0D98, Comparer_1_Steamworks_SteamItemDef_t__Create__MethodInfo); DO_APP_FUNC(0x012B2C50, Comparer_1_Steamworks_SteamItemDef_t_ *, Comparer_1_Steamworks_SteamItemDef_t__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x01292CB0, int32_t, Comparer_1_Steamworks_SteamItemDef_t__System_Collections_IComparer_Compare, (Comparer_1_Steamworks_SteamItemDef_t_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_Steamworks_SteamItemDef_t_ *, Comparer_1_Steamworks_SteamItemDef_t__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_Steamworks_SteamItemDetails_t___ctor, (Comparer_1_Steamworks_SteamItemDetails_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012B31C0, Comparer_1_Steamworks_SteamItemDetails_t_ *, Comparer_1_Steamworks_SteamItemDetails_t__Create, (Comparison_1_Steamworks_SteamItemDetails_t_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0DA0, Comparer_1_Steamworks_SteamItemDetails_t__Create__MethodInfo); DO_APP_FUNC(0x012B32F0, Comparer_1_Steamworks_SteamItemDetails_t_ *, Comparer_1_Steamworks_SteamItemDetails_t__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_Steamworks_SteamItemDetails_t__System_Collections_IComparer_Compare, (Comparer_1_Steamworks_SteamItemDetails_t_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_Steamworks_SteamItemDetails_t_ *, Comparer_1_Steamworks_SteamItemDetails_t__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_UIElements_StylePropertyName___ctor, (Comparer_1_UnityEngine_UIElements_StylePropertyName_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012B3860, Comparer_1_UnityEngine_UIElements_StylePropertyName_ *, Comparer_1_UnityEngine_UIElements_StylePropertyName__Create, (Comparison_1_UnityEngine_UIElements_StylePropertyName_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0DA8, Comparer_1_UnityEngine_UIElements_StylePropertyName__Create__MethodInfo); DO_APP_FUNC(0x012B3990, Comparer_1_UnityEngine_UIElements_StylePropertyName_ *, Comparer_1_UnityEngine_UIElements_StylePropertyName__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_UnityEngine_UIElements_StylePropertyName__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_UIElements_StylePropertyName_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_UIElements_StylePropertyName_ *, Comparer_1_UnityEngine_UIElements_StylePropertyName__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue___ctor, (Comparer_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012B3F00, Comparer_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ *, Comparer_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue__Create, (Comparison_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0D80, Comparer_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue__Create__MethodInfo); DO_APP_FUNC(0x012B4030, Comparer_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ *, Comparer_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ *, Comparer_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_UIElements_StyleSelectorPart___ctor, (Comparer_1_UnityEngine_UIElements_StyleSelectorPart_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012B45A0, Comparer_1_UnityEngine_UIElements_StyleSelectorPart_ *, Comparer_1_UnityEngine_UIElements_StyleSelectorPart__Create, (Comparison_1_UnityEngine_UIElements_StyleSelectorPart_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0D88, Comparer_1_UnityEngine_UIElements_StyleSelectorPart__Create__MethodInfo); DO_APP_FUNC(0x012B46D0, Comparer_1_UnityEngine_UIElements_StyleSelectorPart_ *, Comparer_1_UnityEngine_UIElements_StyleSelectorPart__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012814E0, int32_t, Comparer_1_UnityEngine_UIElements_StyleSelectorPart__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_UIElements_StyleSelectorPart_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_UIElements_StyleSelectorPart_ *, Comparer_1_UnityEngine_UIElements_StyleSelectorPart__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken___ctor, (Comparer_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012B4C40, Comparer_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ *, Comparer_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__Create, (Comparison_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0D90, Comparer_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__Create__MethodInfo); DO_APP_FUNC(0x012B4D70, Comparer_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ *, Comparer_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012814E0, int32_t, Comparer_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ *, Comparer_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_UIElements_StyleSheets_StyleValue___ctor, (Comparer_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012B52E0, Comparer_1_UnityEngine_UIElements_StyleSheets_StyleValue_ *, Comparer_1_UnityEngine_UIElements_StyleSheets_StyleValue__Create, (Comparison_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0D70, Comparer_1_UnityEngine_UIElements_StyleSheets_StyleValue__Create__MethodInfo); DO_APP_FUNC(0x012B5410, Comparer_1_UnityEngine_UIElements_StyleSheets_StyleValue_ *, Comparer_1_UnityEngine_UIElements_StyleSheets_StyleValue__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012814E0, int32_t, Comparer_1_UnityEngine_UIElements_StyleSheets_StyleValue__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_UIElements_StyleSheets_StyleValue_ *, Comparer_1_UnityEngine_UIElements_StyleSheets_StyleValue__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged___ctor, (Comparer_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012B5980, Comparer_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged_ *, Comparer_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged__Create, (Comparison_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0D78, Comparer_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged__Create__MethodInfo); DO_APP_FUNC(0x012B5AB0, Comparer_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged_ *, Comparer_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged_ *, Comparer_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_UIElements_StyleVariable___ctor, (Comparer_1_UnityEngine_UIElements_StyleVariable_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012B6020, Comparer_1_UnityEngine_UIElements_StyleVariable_ *, Comparer_1_UnityEngine_UIElements_StyleVariable__Create, (Comparison_1_UnityEngine_UIElements_StyleVariable_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0D58, Comparer_1_UnityEngine_UIElements_StyleVariable__Create__MethodInfo); DO_APP_FUNC(0x012B6150, Comparer_1_UnityEngine_UIElements_StyleVariable_ *, Comparer_1_UnityEngine_UIElements_StyleVariable__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012814E0, int32_t, Comparer_1_UnityEngine_UIElements_StyleVariable__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_UIElements_StyleVariable_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_UIElements_StyleVariable_ *, Comparer_1_UnityEngine_UIElements_StyleVariable__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_Rendering_SubMeshDescriptor___ctor, (Comparer_1_UnityEngine_Rendering_SubMeshDescriptor_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012B66C0, Comparer_1_UnityEngine_Rendering_SubMeshDescriptor_ *, Comparer_1_UnityEngine_Rendering_SubMeshDescriptor__Create, (Comparison_1_UnityEngine_Rendering_SubMeshDescriptor_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0D60, Comparer_1_UnityEngine_Rendering_SubMeshDescriptor__Create__MethodInfo); DO_APP_FUNC(0x012B67F0, Comparer_1_UnityEngine_Rendering_SubMeshDescriptor_ *, Comparer_1_UnityEngine_Rendering_SubMeshDescriptor__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012974F0, int32_t, Comparer_1_UnityEngine_Rendering_SubMeshDescriptor__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_Rendering_SubMeshDescriptor_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_Rendering_SubMeshDescriptor_ *, Comparer_1_UnityEngine_Rendering_SubMeshDescriptor__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_InputSystem_Utilities_Substring___ctor, (Comparer_1_UnityEngine_InputSystem_Utilities_Substring_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012B6D60, Comparer_1_UnityEngine_InputSystem_Utilities_Substring_ *, Comparer_1_UnityEngine_InputSystem_Utilities_Substring__Create, (Comparison_1_UnityEngine_InputSystem_Utilities_Substring_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0D68, Comparer_1_UnityEngine_InputSystem_Utilities_Substring__Create__MethodInfo); DO_APP_FUNC(0x012B6E90, Comparer_1_UnityEngine_InputSystem_Utilities_Substring_ *, Comparer_1_UnityEngine_InputSystem_Utilities_Substring__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_UnityEngine_InputSystem_Utilities_Substring__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_InputSystem_Utilities_Substring_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_InputSystem_Utilities_Substring_ *, Comparer_1_UnityEngine_InputSystem_Utilities_Substring__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_System_TimeSpan___ctor, (Comparer_1_System_TimeSpan_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012B7400, Comparer_1_System_TimeSpan_ *, Comparer_1_System_TimeSpan__Create, (Comparison_1_TimeSpan_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0D40, Comparer_1_System_TimeSpan__Create__MethodInfo); DO_APP_FUNC(0x012B7530, Comparer_1_System_TimeSpan_ *, Comparer_1_System_TimeSpan__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012837A0, int32_t, Comparer_1_System_TimeSpan__System_Collections_IComparer_Compare, (Comparer_1_System_TimeSpan_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_System_TimeSpan_ *, Comparer_1_System_TimeSpan__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_UIElements_TimeValue___ctor, (Comparer_1_UnityEngine_UIElements_TimeValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012B7AA0, Comparer_1_UnityEngine_UIElements_TimeValue_ *, Comparer_1_UnityEngine_UIElements_TimeValue__Create, (Comparison_1_UnityEngine_UIElements_TimeValue_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0D48, Comparer_1_UnityEngine_UIElements_TimeValue__Create__MethodInfo); DO_APP_FUNC(0x012B7BD0, Comparer_1_UnityEngine_UIElements_TimeValue_ *, Comparer_1_UnityEngine_UIElements_TimeValue__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012837A0, int32_t, Comparer_1_UnityEngine_UIElements_TimeValue__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_UIElements_TimeValue_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_UIElements_TimeValue_ *, Comparer_1_UnityEngine_UIElements_TimeValue__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_UIElements_TreeViewItemWrapper___ctor, (Comparer_1_UnityEngine_UIElements_TreeViewItemWrapper_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012B8140, Comparer_1_UnityEngine_UIElements_TreeViewItemWrapper_ *, Comparer_1_UnityEngine_UIElements_TreeViewItemWrapper__Create, (Comparison_1_UnityEngine_UIElements_TreeViewItemWrapper_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0D50, Comparer_1_UnityEngine_UIElements_TreeViewItemWrapper__Create__MethodInfo); DO_APP_FUNC(0x012B8270, Comparer_1_UnityEngine_UIElements_TreeViewItemWrapper_ *, Comparer_1_UnityEngine_UIElements_TreeViewItemWrapper__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012814E0, int32_t, Comparer_1_UnityEngine_UIElements_TreeViewItemWrapper__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_UIElements_TreeViewItemWrapper_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_UIElements_TreeViewItemWrapper_ *, Comparer_1_UnityEngine_UIElements_TreeViewItemWrapper__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_Rewired_Utils_Classes_Data_TypeWrapper___ctor, (Comparer_1_Rewired_Utils_Classes_Data_TypeWrapper_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012B87E0, Comparer_1_Rewired_Utils_Classes_Data_TypeWrapper_ *, Comparer_1_Rewired_Utils_Classes_Data_TypeWrapper__Create, (Comparison_1_Rewired_Utils_Classes_Data_TypeWrapper_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0D30, Comparer_1_Rewired_Utils_Classes_Data_TypeWrapper__Create__MethodInfo); DO_APP_FUNC(0x012B8910, Comparer_1_Rewired_Utils_Classes_Data_TypeWrapper_ *, Comparer_1_Rewired_Utils_Classes_Data_TypeWrapper__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x01280600, int32_t, Comparer_1_Rewired_Utils_Classes_Data_TypeWrapper__System_Collections_IComparer_Compare, (Comparer_1_Rewired_Utils_Classes_Data_TypeWrapper_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_Rewired_Utils_Classes_Data_TypeWrapper_ *, Comparer_1_Rewired_Utils_Classes_Data_TypeWrapper__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_UICharInfo___ctor, (Comparer_1_UnityEngine_UICharInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012B8E80, Comparer_1_UnityEngine_UICharInfo_ *, Comparer_1_UnityEngine_UICharInfo__Create, (Comparison_1_UnityEngine_UICharInfo_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0D38, Comparer_1_UnityEngine_UICharInfo__Create__MethodInfo); DO_APP_FUNC(0x012B8FB0, Comparer_1_UnityEngine_UICharInfo_ *, Comparer_1_UnityEngine_UICharInfo__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0128AD20, int32_t, Comparer_1_UnityEngine_UICharInfo__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_UICharInfo_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_UICharInfo_ *, Comparer_1_UnityEngine_UICharInfo__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_UILineInfo___ctor, (Comparer_1_UnityEngine_UILineInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012B9520, Comparer_1_UnityEngine_UILineInfo_ *, Comparer_1_UnityEngine_UILineInfo__Create, (Comparison_1_UnityEngine_UILineInfo_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0D18, Comparer_1_UnityEngine_UILineInfo__Create__MethodInfo); DO_APP_FUNC(0x012B9650, Comparer_1_UnityEngine_UILineInfo_ *, Comparer_1_UnityEngine_UILineInfo__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_UnityEngine_UILineInfo__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_UILineInfo_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_UILineInfo_ *, Comparer_1_UnityEngine_UILineInfo__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_UIVertex___ctor, (Comparer_1_UnityEngine_UIVertex_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012B9BC0, Comparer_1_UnityEngine_UIVertex_ *, Comparer_1_UnityEngine_UIVertex__Create, (Comparison_1_UnityEngine_UIVertex_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0D20, Comparer_1_UnityEngine_UIVertex__Create__MethodInfo); DO_APP_FUNC(0x012B9CF0, Comparer_1_UnityEngine_UIVertex_ *, Comparer_1_UnityEngine_UIVertex__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012BA260, int32_t, Comparer_1_UnityEngine_UIVertex__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_UIVertex_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_UIVertex_ *, Comparer_1_UnityEngine_UIVertex__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_System_UInt16___ctor, (Comparer_1_System_UInt16_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012BA4F0, Comparer_1_System_UInt16_ *, Comparer_1_System_UInt16__Create, (Comparison_1_UInt16_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0D28, Comparer_1_System_UInt16__Create__MethodInfo); DO_APP_FUNC(0x012BA620, Comparer_1_System_UInt16_ *, Comparer_1_System_UInt16__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012915F0, int32_t, Comparer_1_System_UInt16__System_Collections_IComparer_Compare, (Comparer_1_System_UInt16_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_System_UInt16_ *, Comparer_1_System_UInt16__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_System_UInt32___ctor, (Comparer_1_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012BAB90, Comparer_1_System_UInt32_ *, Comparer_1_System_UInt32__Create, (Comparison_1_UInt32_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0D00, Comparer_1_System_UInt32__Create__MethodInfo); DO_APP_FUNC(0x012BACC0, Comparer_1_System_UInt32_ *, Comparer_1_System_UInt32__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x01292CB0, int32_t, Comparer_1_System_UInt32__System_Collections_IComparer_Compare, (Comparer_1_System_UInt32_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_System_UInt32_ *, Comparer_1_System_UInt32__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_System_UInt64___ctor, (Comparer_1_System_UInt64_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012BB230, Comparer_1_System_UInt64_ *, Comparer_1_System_UInt64__Create, (Comparison_1_UInt64_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0D08, Comparer_1_System_UInt64__Create__MethodInfo); DO_APP_FUNC(0x012BB360, Comparer_1_System_UInt64_ *, Comparer_1_System_UInt64__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012837A0, int32_t, Comparer_1_System_UInt64__System_Collections_IComparer_Compare, (Comparer_1_System_UInt64_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_System_UInt64_ *, Comparer_1_System_UInt64__get_Default, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07818, Comparer_1_System_UInt64__get_Default__MethodInfo); DO_APP_FUNC(0x003AE050, void, Comparer_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture___ctor, (Comparer_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012BB8D0, Comparer_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ *, Comparer_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__Create, (Comparison_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0D10, Comparer_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__Create__MethodInfo); DO_APP_FUNC(0x012BBA00, Comparer_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ *, Comparer_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012814E0, int32_t, Comparer_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__System_Collections_IComparer_Compare, (Comparer_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ *, Comparer_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UdpKit_UdpEndPoint___ctor, (Comparer_1_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012BBF70, Comparer_1_UdpKit_UdpEndPoint_ *, Comparer_1_UdpKit_UdpEndPoint__Create, (Comparison_1_UdpKit_UdpEndPoint_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0CF0, Comparer_1_UdpKit_UdpEndPoint__Create__MethodInfo); DO_APP_FUNC(0x012BC0A0, Comparer_1_UdpKit_UdpEndPoint_ *, Comparer_1_UdpKit_UdpEndPoint__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012BC610, int32_t, Comparer_1_UdpKit_UdpEndPoint__System_Collections_IComparer_Compare, (Comparer_1_UdpKit_UdpEndPoint_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UdpKit_UdpEndPoint_ *, Comparer_1_UdpKit_UdpEndPoint__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UdpKit_UdpIPv4Address___ctor, (Comparer_1_UdpKit_UdpIPv4Address_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012BC7C0, Comparer_1_UdpKit_UdpIPv4Address_ *, Comparer_1_UdpKit_UdpIPv4Address__Create, (Comparison_1_UdpKit_UdpIPv4Address_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0CF8, Comparer_1_UdpKit_UdpIPv4Address__Create__MethodInfo); DO_APP_FUNC(0x012BC8F0, Comparer_1_UdpKit_UdpIPv4Address_ *, Comparer_1_UdpKit_UdpIPv4Address__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x01292CB0, int32_t, Comparer_1_UdpKit_UdpIPv4Address__System_Collections_IComparer_Compare, (Comparer_1_UdpKit_UdpIPv4Address_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UdpKit_UdpIPv4Address_ *, Comparer_1_UdpKit_UdpIPv4Address__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_InputSystem_XR_UsageHint___ctor, (Comparer_1_UnityEngine_InputSystem_XR_UsageHint_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012BCE60, Comparer_1_UnityEngine_InputSystem_XR_UsageHint_ *, Comparer_1_UnityEngine_InputSystem_XR_UsageHint__Create, (Comparison_1_UnityEngine_InputSystem_XR_UsageHint_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0CD8, Comparer_1_UnityEngine_InputSystem_XR_UsageHint__Create__MethodInfo); DO_APP_FUNC(0x012BCF90, Comparer_1_UnityEngine_InputSystem_XR_UsageHint_ *, Comparer_1_UnityEngine_InputSystem_XR_UsageHint__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012837A0, int32_t, Comparer_1_UnityEngine_InputSystem_XR_UsageHint__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_InputSystem_XR_UsageHint_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_InputSystem_XR_UsageHint_ *, Comparer_1_UnityEngine_InputSystem_XR_UsageHint__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_Discord_User___ctor, (Comparer_1_Discord_User_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012BD500, Comparer_1_Discord_User_ *, Comparer_1_Discord_User__Create, (Comparison_1_Discord_User_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0CE0, Comparer_1_Discord_User__Create__MethodInfo); DO_APP_FUNC(0x012BD630, Comparer_1_Discord_User_ *, Comparer_1_Discord_User__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0128D880, int32_t, Comparer_1_Discord_User__System_Collections_IComparer_Compare, (Comparer_1_Discord_User_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_Discord_User_ *, Comparer_1_Discord_User__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_Vector2___ctor, (Comparer_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012BDBA0, Comparer_1_UnityEngine_Vector2_ *, Comparer_1_UnityEngine_Vector2__Create, (Comparison_1_UnityEngine_Vector2_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0CE8, Comparer_1_UnityEngine_Vector2__Create__MethodInfo); DO_APP_FUNC(0x012BDCD0, Comparer_1_UnityEngine_Vector2_ *, Comparer_1_UnityEngine_Vector2__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012BE240, int32_t, Comparer_1_UnityEngine_Vector2__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_Vector2_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_Vector2_ *, Comparer_1_UnityEngine_Vector2__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_Vector2Int___ctor, (Comparer_1_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012BE3E0, Comparer_1_UnityEngine_Vector2Int_ *, Comparer_1_UnityEngine_Vector2Int__Create, (Comparison_1_UnityEngine_Vector2Int_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0CC0, Comparer_1_UnityEngine_Vector2Int__Create__MethodInfo); DO_APP_FUNC(0x012BE510, Comparer_1_UnityEngine_Vector2Int_ *, Comparer_1_UnityEngine_Vector2Int__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012837A0, int32_t, Comparer_1_UnityEngine_Vector2Int__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_Vector2Int_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_Vector2Int_ *, Comparer_1_UnityEngine_Vector2Int__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_Vector3___ctor, (Comparer_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012BEA80, Comparer_1_UnityEngine_Vector3_ *, Comparer_1_UnityEngine_Vector3__Create, (Comparison_1_UnityEngine_Vector3_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0CC8, Comparer_1_UnityEngine_Vector3__Create__MethodInfo); DO_APP_FUNC(0x012BEBB0, Comparer_1_UnityEngine_Vector3_ *, Comparer_1_UnityEngine_Vector3__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0128AD20, int32_t, Comparer_1_UnityEngine_Vector3__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_Vector3_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_Vector3_ *, Comparer_1_UnityEngine_Vector3__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_Vector3Int___ctor, (Comparer_1_UnityEngine_Vector3Int_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012BF120, Comparer_1_UnityEngine_Vector3Int_ *, Comparer_1_UnityEngine_Vector3Int__Create, (Comparison_1_UnityEngine_Vector3Int_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0CD0, Comparer_1_UnityEngine_Vector3Int__Create__MethodInfo); DO_APP_FUNC(0x012BF250, Comparer_1_UnityEngine_Vector3Int_ *, Comparer_1_UnityEngine_Vector3Int__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0128AD20, int32_t, Comparer_1_UnityEngine_Vector3Int__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_Vector3Int_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_Vector3Int_ *, Comparer_1_UnityEngine_Vector3Int__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_Vector4___ctor, (Comparer_1_UnityEngine_Vector4_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012BF7C0, Comparer_1_UnityEngine_Vector4_ *, Comparer_1_UnityEngine_Vector4__Create, (Comparison_1_UnityEngine_Vector4_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2438, Comparer_1_UnityEngine_Vector4__Create__MethodInfo); DO_APP_FUNC(0x012BF8F0, Comparer_1_UnityEngine_Vector4_ *, Comparer_1_UnityEngine_Vector4__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x01292490, int32_t, Comparer_1_UnityEngine_Vector4__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_Vector4_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_Vector4_ *, Comparer_1_UnityEngine_Vector4__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_Rendering_VertexAttributeDescriptor___ctor, (Comparer_1_UnityEngine_Rendering_VertexAttributeDescriptor_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012BFE60, Comparer_1_UnityEngine_Rendering_VertexAttributeDescriptor_ *, Comparer_1_UnityEngine_Rendering_VertexAttributeDescriptor__Create, (Comparison_1_UnityEngine_Rendering_VertexAttributeDescriptor_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2440, Comparer_1_UnityEngine_Rendering_VertexAttributeDescriptor__Create__MethodInfo); DO_APP_FUNC(0x012BFF90, Comparer_1_UnityEngine_Rendering_VertexAttributeDescriptor_ *, Comparer_1_UnityEngine_Rendering_VertexAttributeDescriptor__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_UnityEngine_Rendering_VertexAttributeDescriptor__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_Rendering_VertexAttributeDescriptor_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_Rendering_VertexAttributeDescriptor_ *, Comparer_1_UnityEngine_Rendering_VertexAttributeDescriptor__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_Microsoft_MixedReality_OpenXR_ViewConfiguration___ctor, (Comparer_1_Microsoft_MixedReality_OpenXR_ViewConfiguration_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012C0500, Comparer_1_Microsoft_MixedReality_OpenXR_ViewConfiguration_ *, Comparer_1_Microsoft_MixedReality_OpenXR_ViewConfiguration__Create, (Comparison_1_Microsoft_MixedReality_OpenXR_ViewConfiguration_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2448, Comparer_1_Microsoft_MixedReality_OpenXR_ViewConfiguration__Create__MethodInfo); DO_APP_FUNC(0x012C0630, Comparer_1_Microsoft_MixedReality_OpenXR_ViewConfiguration_ *, Comparer_1_Microsoft_MixedReality_OpenXR_ViewConfiguration__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012814E0, int32_t, Comparer_1_Microsoft_MixedReality_OpenXR_ViewConfiguration__System_Collections_IComparer_Compare, (Comparer_1_Microsoft_MixedReality_OpenXR_ViewConfiguration_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_Microsoft_MixedReality_OpenXR_ViewConfiguration_ *, Comparer_1_Microsoft_MixedReality_OpenXR_ViewConfiguration__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_Dissonance_Networking_VoicePacket___ctor, (Comparer_1_Dissonance_Networking_VoicePacket_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012C0BA0, Comparer_1_Dissonance_Networking_VoicePacket_ *, Comparer_1_Dissonance_Networking_VoicePacket__Create, (Comparison_1_Dissonance_Networking_VoicePacket_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2420, Comparer_1_Dissonance_Networking_VoicePacket__Create__MethodInfo); DO_APP_FUNC(0x012C0CD0, Comparer_1_Dissonance_Networking_VoicePacket_ *, Comparer_1_Dissonance_Networking_VoicePacket__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0128CFE0, int32_t, Comparer_1_Dissonance_Networking_VoicePacket__System_Collections_IComparer_Compare, (Comparer_1_Dissonance_Networking_VoicePacket_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_Dissonance_Networking_VoicePacket_ *, Comparer_1_Dissonance_Networking_VoicePacket__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_Pathfinding_Voxels_VoxelContour___ctor, (Comparer_1_Pathfinding_Voxels_VoxelContour_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012C1240, Comparer_1_Pathfinding_Voxels_VoxelContour_ *, Comparer_1_Pathfinding_Voxels_VoxelContour__Create, (Comparison_1_Pathfinding_Voxels_VoxelContour_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2428, Comparer_1_Pathfinding_Voxels_VoxelContour__Create__MethodInfo); DO_APP_FUNC(0x012C1370, Comparer_1_Pathfinding_Voxels_VoxelContour_ *, Comparer_1_Pathfinding_Voxels_VoxelContour__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x01280600, int32_t, Comparer_1_Pathfinding_Voxels_VoxelContour__System_Collections_IComparer_Compare, (Comparer_1_Pathfinding_Voxels_VoxelContour_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_Pathfinding_Voxels_VoxelContour_ *, Comparer_1_Pathfinding_Voxels_VoxelContour__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES___ctor, (Comparer_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012C18E0, Comparer_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES_ *, Comparer_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES__Create, (Comparison_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2430, Comparer_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES__Create__MethodInfo); DO_APP_FUNC(0x012C1A10, Comparer_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES_ *, Comparer_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012C1F80, int32_t, Comparer_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES__System_Collections_IComparer_Compare, (Comparer_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES_ *, Comparer_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO___ctor, (Comparer_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012C2250, Comparer_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO_ *, Comparer_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO__Create, (Comparison_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2410, Comparer_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO__Create__MethodInfo); DO_APP_FUNC(0x012C2380, Comparer_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO_ *, Comparer_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012C28F0, int32_t, Comparer_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO__System_Collections_IComparer_Compare, (Comparer_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO_ *, Comparer_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_System_Security_Cryptography_X509Certificates_X509ChainStatus___ctor, (Comparer_1_System_Security_Cryptography_X509Certificates_X509ChainStatus_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012C2B90, Comparer_1_System_Security_Cryptography_X509Certificates_X509ChainStatus_ *, Comparer_1_System_Security_Cryptography_X509Certificates_X509ChainStatus__Create, (Comparison_1_System_Security_Cryptography_X509Certificates_X509ChainStatus_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2418, Comparer_1_System_Security_Cryptography_X509Certificates_X509ChainStatus__Create__MethodInfo); DO_APP_FUNC(0x012C2CC0, Comparer_1_System_Security_Cryptography_X509Certificates_X509ChainStatus_ *, Comparer_1_System_Security_Cryptography_X509Certificates_X509ChainStatus__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_System_Security_Cryptography_X509Certificates_X509ChainStatus__System_Collections_IComparer_Compare, (Comparer_1_System_Security_Cryptography_X509Certificates_X509ChainStatus_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_System_Security_Cryptography_X509Certificates_X509ChainStatus_ *, Comparer_1_System_Security_Cryptography_X509Certificates_X509ChainStatus__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor___ctor, (Comparer_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012C3230, Comparer_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor_ *, Comparer_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor__Create, (Comparison_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD23F8, Comparer_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor__Create__MethodInfo); DO_APP_FUNC(0x012C3360, Comparer_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor_ *, Comparer_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012814E0, int32_t, Comparer_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor_ *, Comparer_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_XR_XRNodeState___ctor, (Comparer_1_UnityEngine_XR_XRNodeState_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012C38D0, Comparer_1_UnityEngine_XR_XRNodeState_ *, Comparer_1_UnityEngine_XR_XRNodeState__Create, (Comparison_1_UnityEngine_XR_XRNodeState_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2400, Comparer_1_UnityEngine_XR_XRNodeState__Create__MethodInfo); DO_APP_FUNC(0x012C3A00, Comparer_1_UnityEngine_XR_XRNodeState_ *, Comparer_1_UnityEngine_XR_XRNodeState__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012C3F70, int32_t, Comparer_1_UnityEngine_XR_XRNodeState__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_XR_XRNodeState_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_XR_XRNodeState_ *, Comparer_1_UnityEngine_XR_XRNodeState__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_Pathfinding_AdvancedSmooth_Turn___ctor, (Comparer_1_Pathfinding_AdvancedSmooth_Turn_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012C41B0, Comparer_1_Pathfinding_AdvancedSmooth_Turn_ *, Comparer_1_Pathfinding_AdvancedSmooth_Turn__Create, (Comparison_1_Pathfinding_AdvancedSmooth_Turn_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2408, Comparer_1_Pathfinding_AdvancedSmooth_Turn__Create__MethodInfo); DO_APP_FUNC(0x012C42E0, Comparer_1_Pathfinding_AdvancedSmooth_Turn_ *, Comparer_1_Pathfinding_AdvancedSmooth_Turn__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_Pathfinding_AdvancedSmooth_Turn__System_Collections_IComparer_Compare, (Comparer_1_Pathfinding_AdvancedSmooth_Turn_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_Pathfinding_AdvancedSmooth_Turn_ *, Comparer_1_Pathfinding_AdvancedSmooth_Turn__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo___ctor, (Comparer_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012C4850, Comparer_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo_ *, Comparer_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo__Create, (Comparison_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD23E0, Comparer_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo__Create__MethodInfo); DO_APP_FUNC(0x012C4980, Comparer_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo_ *, Comparer_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0128D880, int32_t, Comparer_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo_ *, Comparer_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_BeforeRenderHelper_OrderBlock___ctor, (Comparer_1_UnityEngine_BeforeRenderHelper_OrderBlock_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012C4EF0, Comparer_1_UnityEngine_BeforeRenderHelper_OrderBlock_ *, Comparer_1_UnityEngine_BeforeRenderHelper_OrderBlock__Create, (Comparison_1_UnityEngine_BeforeRenderHelper_OrderBlock_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD23E8, Comparer_1_UnityEngine_BeforeRenderHelper_OrderBlock__Create__MethodInfo); DO_APP_FUNC(0x012C5020, Comparer_1_UnityEngine_BeforeRenderHelper_OrderBlock_ *, Comparer_1_UnityEngine_BeforeRenderHelper_OrderBlock__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_UnityEngine_BeforeRenderHelper_OrderBlock__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_BeforeRenderHelper_OrderBlock_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_BeforeRenderHelper_OrderBlock_ *, Comparer_1_UnityEngine_BeforeRenderHelper_OrderBlock__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page___ctor, (Comparer_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012C5590, Comparer_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page_ *, Comparer_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__Create, (Comparison_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD23F0, Comparer_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__Create__MethodInfo); DO_APP_FUNC(0x012C56C0, Comparer_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page_ *, Comparer_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012837A0, int32_t, Comparer_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page_ *, Comparer_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_Camera_RenderRequest___ctor, (Comparer_1_UnityEngine_Camera_RenderRequest_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012C5C30, Comparer_1_UnityEngine_Camera_RenderRequest_ *, Comparer_1_UnityEngine_Camera_RenderRequest__Create, (Comparison_1_UnityEngine_Camera_RenderRequest_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD23D0, Comparer_1_UnityEngine_Camera_RenderRequest__Create__MethodInfo); DO_APP_FUNC(0x012C5D60, Comparer_1_UnityEngine_Camera_RenderRequest_ *, Comparer_1_UnityEngine_Camera_RenderRequest__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012814E0, int32_t, Comparer_1_UnityEngine_Camera_RenderRequest__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_Camera_RenderRequest_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_Camera_RenderRequest_ *, Comparer_1_UnityEngine_Camera_RenderRequest__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_Cinemachine_CameraState_CustomBlendable___ctor, (Comparer_1_Cinemachine_CameraState_CustomBlendable_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012C62D0, Comparer_1_Cinemachine_CameraState_CustomBlendable_ *, Comparer_1_Cinemachine_CameraState_CustomBlendable__Create, (Comparison_1_Cinemachine_CameraState_CustomBlendable_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD23D8, Comparer_1_Cinemachine_CameraState_CustomBlendable__Create__MethodInfo); DO_APP_FUNC(0x012C6400, Comparer_1_Cinemachine_CameraState_CustomBlendable_ *, Comparer_1_Cinemachine_CameraState_CustomBlendable__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_Cinemachine_CameraState_CustomBlendable__System_Collections_IComparer_Compare, (Comparer_1_Cinemachine_CameraState_CustomBlendable_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_Cinemachine_CameraState_CustomBlendable_ *, Comparer_1_Cinemachine_CameraState_CustomBlendable__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_Cinemachine_CinemachineClearShot_Pair___ctor, (Comparer_1_Cinemachine_CinemachineClearShot_Pair_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012C6970, Comparer_1_Cinemachine_CinemachineClearShot_Pair_ *, Comparer_1_Cinemachine_CinemachineClearShot_Pair__Create, (Comparison_1_Cinemachine_CinemachineClearShot_Pair_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD23B8, Comparer_1_Cinemachine_CinemachineClearShot_Pair__Create__MethodInfo); DO_APP_FUNC(0x012C6AA0, Comparer_1_Cinemachine_CinemachineClearShot_Pair_ *, Comparer_1_Cinemachine_CinemachineClearShot_Pair__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012837A0, int32_t, Comparer_1_Cinemachine_CinemachineClearShot_Pair__System_Collections_IComparer_Compare, (Comparer_1_Cinemachine_CinemachineClearShot_Pair_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_Cinemachine_CinemachineClearShot_Pair_ *, Comparer_1_Cinemachine_CinemachineClearShot_Pair__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_Cinemachine_CinemachineStateDrivenCamera_HashPair___ctor, (Comparer_1_Cinemachine_CinemachineStateDrivenCamera_HashPair_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012C7010, Comparer_1_Cinemachine_CinemachineStateDrivenCamera_HashPair_ *, Comparer_1_Cinemachine_CinemachineStateDrivenCamera_HashPair__Create, (Comparison_1_Cinemachine_CinemachineStateDrivenCamera_HashPair_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD23C0, Comparer_1_Cinemachine_CinemachineStateDrivenCamera_HashPair__Create__MethodInfo); DO_APP_FUNC(0x012C7140, Comparer_1_Cinemachine_CinemachineStateDrivenCamera_HashPair_ *, Comparer_1_Cinemachine_CinemachineStateDrivenCamera_HashPair__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012837A0, int32_t, Comparer_1_Cinemachine_CinemachineStateDrivenCamera_HashPair__System_Collections_IComparer_Compare, (Comparer_1_Cinemachine_CinemachineStateDrivenCamera_HashPair_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_Cinemachine_CinemachineStateDrivenCamera_HashPair_ *, Comparer_1_Cinemachine_CinemachineStateDrivenCamera_HashPair__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_Cinemachine_ClipperLib_DoublePoint___ctor, (Comparer_1_Cinemachine_ClipperLib_DoublePoint_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012C76B0, Comparer_1_Cinemachine_ClipperLib_DoublePoint_ *, Comparer_1_Cinemachine_ClipperLib_DoublePoint__Create, (Comparison_1_Cinemachine_ClipperLib_DoublePoint_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD23C8, Comparer_1_Cinemachine_ClipperLib_DoublePoint__Create__MethodInfo); DO_APP_FUNC(0x012C77E0, Comparer_1_Cinemachine_ClipperLib_DoublePoint_ *, Comparer_1_Cinemachine_ClipperLib_DoublePoint__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012C7D50, int32_t, Comparer_1_Cinemachine_ClipperLib_DoublePoint__System_Collections_IComparer_Compare, (Comparer_1_Cinemachine_ClipperLib_DoublePoint_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_Cinemachine_ClipperLib_DoublePoint_ *, Comparer_1_Cinemachine_ClipperLib_DoublePoint__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_Cinemachine_ClipperLib_IntPoint___ctor, (Comparer_1_Cinemachine_ClipperLib_IntPoint_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012C7EF0, Comparer_1_Cinemachine_ClipperLib_IntPoint_ *, Comparer_1_Cinemachine_ClipperLib_IntPoint__Create, (Comparison_1_Cinemachine_ClipperLib_IntPoint_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD23A0, Comparer_1_Cinemachine_ClipperLib_IntPoint__Create__MethodInfo); DO_APP_FUNC(0x012C8020, Comparer_1_Cinemachine_ClipperLib_IntPoint_ *, Comparer_1_Cinemachine_ClipperLib_IntPoint__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_Cinemachine_ClipperLib_IntPoint__System_Collections_IComparer_Compare, (Comparer_1_Cinemachine_ClipperLib_IntPoint_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_Cinemachine_ClipperLib_IntPoint_ *, Comparer_1_Cinemachine_ClipperLib_IntPoint__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_Cinemachine_ConfinerOven_PolygonSolution___ctor, (Comparer_1_Cinemachine_ConfinerOven_PolygonSolution_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012C8590, Comparer_1_Cinemachine_ConfinerOven_PolygonSolution_ *, Comparer_1_Cinemachine_ConfinerOven_PolygonSolution__Create, (Comparison_1_Cinemachine_ConfinerOven_PolygonSolution_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD23A8, Comparer_1_Cinemachine_ConfinerOven_PolygonSolution__Create__MethodInfo); DO_APP_FUNC(0x012C86C0, Comparer_1_Cinemachine_ConfinerOven_PolygonSolution_ *, Comparer_1_Cinemachine_ConfinerOven_PolygonSolution__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_Cinemachine_ConfinerOven_PolygonSolution__System_Collections_IComparer_Compare, (Comparer_1_Cinemachine_ConfinerOven_PolygonSolution_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_Cinemachine_ConfinerOven_PolygonSolution_ *, Comparer_1_Cinemachine_ConfinerOven_PolygonSolution__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB___ctor, (Comparer_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012C8C30, Comparer_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ *, Comparer_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__Create, (Comparison_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD23B0, Comparer_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__Create__MethodInfo); DO_APP_FUNC(0x012C8D60, Comparer_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ *, Comparer_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0128AD20, int32_t, Comparer_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__System_Collections_IComparer_Compare, (Comparer_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ *, Comparer_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo___ctor, (Comparer_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012C92D0, Comparer_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ *, Comparer_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__Create, (Comparison_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2390, Comparer_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__Create__MethodInfo); DO_APP_FUNC(0x012C9400, Comparer_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ *, Comparer_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x01280600, int32_t, Comparer_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ *, Comparer_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_Photon_Bolt_EventDispatcher_CallbackWrapper___ctor, (Comparer_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012C9970, Comparer_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ *, Comparer_1_Photon_Bolt_EventDispatcher_CallbackWrapper__Create, (Comparison_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2398, Comparer_1_Photon_Bolt_EventDispatcher_CallbackWrapper__Create__MethodInfo); DO_APP_FUNC(0x012C9AA0, Comparer_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ *, Comparer_1_Photon_Bolt_EventDispatcher_CallbackWrapper__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_Photon_Bolt_EventDispatcher_CallbackWrapper__System_Collections_IComparer_Compare, (Comparer_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ *, Comparer_1_Photon_Bolt_EventDispatcher_CallbackWrapper__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_Photon_Bolt_EventDispatcher_EventListener___ctor, (Comparer_1_Photon_Bolt_EventDispatcher_EventListener_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012CA010, Comparer_1_Photon_Bolt_EventDispatcher_EventListener_ *, Comparer_1_Photon_Bolt_EventDispatcher_EventListener__Create, (Comparison_1_Photon_Bolt_EventDispatcher_EventListener_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2378, Comparer_1_Photon_Bolt_EventDispatcher_EventListener__Create__MethodInfo); DO_APP_FUNC(0x012CA140, Comparer_1_Photon_Bolt_EventDispatcher_EventListener_ *, Comparer_1_Photon_Bolt_EventDispatcher_EventListener__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012814E0, int32_t, Comparer_1_Photon_Bolt_EventDispatcher_EventListener__System_Collections_IComparer_Compare, (Comparer_1_Photon_Bolt_EventDispatcher_EventListener_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_Photon_Bolt_EventDispatcher_EventListener_ *, Comparer_1_Photon_Bolt_EventDispatcher_EventListener__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_Dissonance_Networking_Client_EventQueue_NetworkEvent___ctor, (Comparer_1_Dissonance_Networking_Client_EventQueue_NetworkEvent_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012CA6B0, Comparer_1_Dissonance_Networking_Client_EventQueue_NetworkEvent_ *, Comparer_1_Dissonance_Networking_Client_EventQueue_NetworkEvent__Create, (Comparison_1_Dissonance_Networking_Client_EventQueue_NetworkEvent_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2380, Comparer_1_Dissonance_Networking_Client_EventQueue_NetworkEvent__Create__MethodInfo); DO_APP_FUNC(0x012CA7E0, Comparer_1_Dissonance_Networking_Client_EventQueue_NetworkEvent_ *, Comparer_1_Dissonance_Networking_Client_EventQueue_NetworkEvent__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012CAD50, int32_t, Comparer_1_Dissonance_Networking_Client_EventQueue_NetworkEvent__System_Collections_IComparer_Compare, (Comparer_1_Dissonance_Networking_Client_EventQueue_NetworkEvent_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_Dissonance_Networking_Client_EventQueue_NetworkEvent_ *, Comparer_1_Dissonance_Networking_Client_EventQueue_NetworkEvent__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_UIElements_FocusController_FocusedElement___ctor, (Comparer_1_UnityEngine_UIElements_FocusController_FocusedElement_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012CB050, Comparer_1_UnityEngine_UIElements_FocusController_FocusedElement_ *, Comparer_1_UnityEngine_UIElements_FocusController_FocusedElement__Create, (Comparison_1_UnityEngine_UIElements_FocusController_FocusedElement_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2388, Comparer_1_UnityEngine_UIElements_FocusController_FocusedElement__Create__MethodInfo); DO_APP_FUNC(0x012CB180, Comparer_1_UnityEngine_UIElements_FocusController_FocusedElement_ *, Comparer_1_UnityEngine_UIElements_FocusController_FocusedElement__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_UnityEngine_UIElements_FocusController_FocusedElement__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_UIElements_FocusController_FocusedElement_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_UIElements_FocusController_FocusedElement_ *, Comparer_1_UnityEngine_UIElements_FocusController_FocusedElement__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_Pathfinding_Funnel_PathPart___ctor, (Comparer_1_Pathfinding_Funnel_PathPart_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012CB6F0, Comparer_1_Pathfinding_Funnel_PathPart_ *, Comparer_1_Pathfinding_Funnel_PathPart__Create, (Comparison_1_Pathfinding_Funnel_PathPart_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2360, Comparer_1_Pathfinding_Funnel_PathPart__Create__MethodInfo); DO_APP_FUNC(0x012CB820, Comparer_1_Pathfinding_Funnel_PathPart_ *, Comparer_1_Pathfinding_Funnel_PathPart__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012AB0B0, int32_t, Comparer_1_Pathfinding_Funnel_PathPart__System_Collections_IComparer_Compare, (Comparer_1_Pathfinding_Funnel_PathPart_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_Pathfinding_Funnel_PathPart_ *, Comparer_1_Pathfinding_Funnel_PathPart__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor___ctor, (Comparer_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012CBD90, Comparer_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ *, Comparer_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__Create, (Comparison_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2368, Comparer_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__Create__MethodInfo); DO_APP_FUNC(0x012CBEC0, Comparer_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ *, Comparer_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012814E0, int32_t, Comparer_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ *, Comparer_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor___ctor, (Comparer_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012CC430, Comparer_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ *, Comparer_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__Create, (Comparison_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2370, Comparer_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__Create__MethodInfo); DO_APP_FUNC(0x012CC560, Comparer_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ *, Comparer_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x01295850, int32_t, Comparer_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ *, Comparer_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData___ctor, (Comparer_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012CCAD0, Comparer_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_ *, Comparer_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__Create, (Comparison_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2350, Comparer_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__Create__MethodInfo); DO_APP_FUNC(0x012CCC00, Comparer_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_ *, Comparer_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0128AD20, int32_t, Comparer_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_ *, Comparer_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData___ctor, (Comparer_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012CD170, Comparer_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ *, Comparer_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__Create, (Comparison_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2358, Comparer_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__Create__MethodInfo); DO_APP_FUNC(0x012CD2A0, Comparer_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ *, Comparer_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012CD810, int32_t, Comparer_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__System_Collections_IComparer_Compare, (Comparer_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ *, Comparer_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson___ctor, (Comparer_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012CD980, Comparer_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ *, Comparer_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__Create, (Comparison_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2338, Comparer_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__Create__MethodInfo); DO_APP_FUNC(0x012CDAB0, Comparer_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ *, Comparer_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0128D880, int32_t, Comparer_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ *, Comparer_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___ctor, (Comparer_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012CE020, Comparer_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ *, Comparer_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__Create, (Comparison_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2340, Comparer_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__Create__MethodInfo); DO_APP_FUNC(0x012CE150, Comparer_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ *, Comparer_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012CE6C0, int32_t, Comparer_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ *, Comparer_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper___ctor, (Comparer_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012CE9D0, Comparer_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ *, Comparer_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__Create, (Comparison_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2348, Comparer_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__Create__MethodInfo); DO_APP_FUNC(0x012CEB00, Comparer_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ *, Comparer_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ *, Comparer_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV___ctor, (Comparer_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012CF070, Comparer_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV_ *, Comparer_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__Create, (Comparison_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2320, Comparer_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__Create__MethodInfo); DO_APP_FUNC(0x012CF1A0, Comparer_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV_ *, Comparer_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__System_Collections_IComparer_Compare, (Comparer_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV_ *, Comparer_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb___ctor, (Comparer_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012CF710, Comparer_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ *, Comparer_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__Create, (Comparison_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2328, Comparer_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__Create__MethodInfo); DO_APP_FUNC(0x012CF840, Comparer_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ *, Comparer_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x01295850, int32_t, Comparer_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__System_Collections_IComparer_Compare, (Comparer_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ *, Comparer_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux___ctor, (Comparer_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012CFDB0, Comparer_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux_ *, Comparer_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__Create, (Comparison_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2330, Comparer_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__Create__MethodInfo); DO_APP_FUNC(0x012CFEE0, Comparer_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux_ *, Comparer_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__System_Collections_IComparer_Compare, (Comparer_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux_ *, Comparer_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___ctor, (Comparer_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012D0450, Comparer_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ *, Comparer_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__Create, (Comparison_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2310, Comparer_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__Create__MethodInfo); DO_APP_FUNC(0x012D0580, Comparer_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ *, Comparer_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x01295850, int32_t, Comparer_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ *, Comparer_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage___ctor, (Comparer_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012D0AF0, Comparer_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ *, Comparer_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__Create, (Comparison_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2318, Comparer_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__Create__MethodInfo); DO_APP_FUNC(0x012D0C20, Comparer_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ *, Comparer_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__System_Collections_IComparer_Compare, (Comparer_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ *, Comparer_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_MagicLightProbes_MagicLightProbes_VolumeParameters___ctor, (Comparer_1_MagicLightProbes_MagicLightProbes_VolumeParameters_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012D1190, Comparer_1_MagicLightProbes_MagicLightProbes_VolumeParameters_ *, Comparer_1_MagicLightProbes_MagicLightProbes_VolumeParameters__Create, (Comparison_1_MagicLightProbes_MagicLightProbes_VolumeParameters_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD22F8, Comparer_1_MagicLightProbes_MagicLightProbes_VolumeParameters__Create__MethodInfo); DO_APP_FUNC(0x012D12C0, Comparer_1_MagicLightProbes_MagicLightProbes_VolumeParameters_ *, Comparer_1_MagicLightProbes_MagicLightProbes_VolumeParameters__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012BC610, int32_t, Comparer_1_MagicLightProbes_MagicLightProbes_VolumeParameters__System_Collections_IComparer_Compare, (Comparer_1_MagicLightProbes_MagicLightProbes_VolumeParameters_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_MagicLightProbes_MagicLightProbes_VolumeParameters_ *, Comparer_1_MagicLightProbes_MagicLightProbes_VolumeParameters__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_NolanBehaviour_OverlappedCollider___ctor, (Comparer_1_NolanBehaviour_OverlappedCollider_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012D1830, Comparer_1_NolanBehaviour_OverlappedCollider_ *, Comparer_1_NolanBehaviour_OverlappedCollider__Create, (Comparison_1_NolanBehaviour_OverlappedCollider_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2300, Comparer_1_NolanBehaviour_OverlappedCollider__Create__MethodInfo); DO_APP_FUNC(0x012D1960, Comparer_1_NolanBehaviour_OverlappedCollider_ *, Comparer_1_NolanBehaviour_OverlappedCollider__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_NolanBehaviour_OverlappedCollider__System_Collections_IComparer_Compare, (Comparer_1_NolanBehaviour_OverlappedCollider_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_NolanBehaviour_OverlappedCollider_ *, Comparer_1_NolanBehaviour_OverlappedCollider__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding___ctor, (Comparer_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012D1ED0, Comparer_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ *, Comparer_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__Create, (Comparison_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2308, Comparer_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__Create__MethodInfo); DO_APP_FUNC(0x012D2000, Comparer_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ *, Comparer_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ *, Comparer_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_PackedPlayModeBuildLogs_RuntimeBuildLog___ctor, (Comparer_1_PackedPlayModeBuildLogs_RuntimeBuildLog_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012D2570, Comparer_1_PackedPlayModeBuildLogs_RuntimeBuildLog_ *, Comparer_1_PackedPlayModeBuildLogs_RuntimeBuildLog__Create, (Comparison_1_PackedPlayModeBuildLogs_RuntimeBuildLog_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD22E0, Comparer_1_PackedPlayModeBuildLogs_RuntimeBuildLog__Create__MethodInfo); DO_APP_FUNC(0x012D26A0, Comparer_1_PackedPlayModeBuildLogs_RuntimeBuildLog_ *, Comparer_1_PackedPlayModeBuildLogs_RuntimeBuildLog__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_PackedPlayModeBuildLogs_RuntimeBuildLog__System_Collections_IComparer_Compare, (Comparer_1_PackedPlayModeBuildLogs_RuntimeBuildLog_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_PackedPlayModeBuildLogs_RuntimeBuildLog_ *, Comparer_1_PackedPlayModeBuildLogs_RuntimeBuildLog__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_ParticleSystem_Particle___ctor, (Comparer_1_UnityEngine_ParticleSystem_Particle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012D2C10, Comparer_1_UnityEngine_ParticleSystem_Particle_ *, Comparer_1_UnityEngine_ParticleSystem_Particle__Create, (Comparison_1_UnityEngine_ParticleSystem_Particle_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD22E8, Comparer_1_UnityEngine_ParticleSystem_Particle__Create__MethodInfo); DO_APP_FUNC(0x012D2D40, Comparer_1_UnityEngine_ParticleSystem_Particle_ *, Comparer_1_UnityEngine_ParticleSystem_Particle__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012D32B0, int32_t, Comparer_1_UnityEngine_ParticleSystem_Particle__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_ParticleSystem_Particle_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_ParticleSystem_Particle_ *, Comparer_1_UnityEngine_ParticleSystem_Particle__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick___ctor, (Comparer_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012D3580, Comparer_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick_ *, Comparer_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick__Create, (Comparison_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD22F0, Comparer_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick__Create__MethodInfo); DO_APP_FUNC(0x012D36B0, Comparer_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick_ *, Comparer_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick_ *, Comparer_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick___ctor, (Comparer_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012D3C20, Comparer_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick_ *, Comparer_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick__Create, (Comparison_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD22D0, Comparer_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick__Create__MethodInfo); DO_APP_FUNC(0x012D3D50, Comparer_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick_ *, Comparer_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012D42C0, int32_t, Comparer_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick_ *, Comparer_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta___ctor, (Comparer_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012D4450, Comparer_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta_ *, Comparer_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta__Create, (Comparison_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD22D8, Comparer_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta__Create__MethodInfo); DO_APP_FUNC(0x012D4580, Comparer_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta_ *, Comparer_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta_ *, Comparer_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc___ctor, (Comparer_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012D4AF0, Comparer_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ *, Comparer_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__Create, (Comparison_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD22B8, Comparer_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__Create__MethodInfo); DO_APP_FUNC(0x012D4C20, Comparer_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ *, Comparer_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0128AD20, int32_t, Comparer_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ *, Comparer_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem___ctor, (Comparer_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012D5190, Comparer_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem_ *, Comparer_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem__Create, (Comparison_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD22C0, Comparer_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem__Create__MethodInfo); DO_APP_FUNC(0x012D52C0, Comparer_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem_ *, Comparer_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem_ *, Comparer_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem___ctor, (Comparer_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012D5830, Comparer_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem_ *, Comparer_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem__Create, (Comparison_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD22C8, Comparer_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem__Create__MethodInfo); DO_APP_FUNC(0x012D5960, Comparer_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem_ *, Comparer_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x01280600, int32_t, Comparer_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem_ *, Comparer_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem___ctor, (Comparer_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012D5ED0, Comparer_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem_ *, Comparer_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem__Create, (Comparison_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD22A0, Comparer_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem__Create__MethodInfo); DO_APP_FUNC(0x012D6000, Comparer_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem_ *, Comparer_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem_ *, Comparer_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings___ctor, (Comparer_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012D6570, Comparer_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings_ *, Comparer_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings__Create, (Comparison_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD22A8, Comparer_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings__Create__MethodInfo); DO_APP_FUNC(0x012D66A0, Comparer_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings_ *, Comparer_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0128D880, int32_t, Comparer_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings_ *, Comparer_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile___ctor, (Comparer_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012D6C10, Comparer_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile_ *, Comparer_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile__Create, (Comparison_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD22B0, Comparer_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile__Create__MethodInfo); DO_APP_FUNC(0x012D6D40, Comparer_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile_ *, Comparer_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile_ *, Comparer_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_System_Text_RegularExpressions_RegexCharClass_SingleRange___ctor, (Comparer_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012D72B0, Comparer_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ *, Comparer_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__Create, (Comparison_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2290, Comparer_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__Create__MethodInfo); DO_APP_FUNC(0x012D73E0, Comparer_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ *, Comparer_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x01292CB0, int32_t, Comparer_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__System_Collections_IComparer_Compare, (Comparer_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ *, Comparer_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData___ctor, (Comparer_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012D7950, Comparer_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ *, Comparer_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__Create, (Comparison_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2298, Comparer_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__Create__MethodInfo); DO_APP_FUNC(0x012D7A80, Comparer_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ *, Comparer_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012C3F70, int32_t, Comparer_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ *, Comparer_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData___ctor, (Comparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012D7FF0, Comparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData_ *, Comparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData__Create, (Comparison_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2278, Comparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData__Create__MethodInfo); DO_APP_FUNC(0x012D8120, Comparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData_ *, Comparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x01280600, int32_t, Comparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData_ *, Comparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData___ctor, (Comparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012D8690, Comparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData_ *, Comparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData__Create, (Comparison_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2280, Comparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData__Create__MethodInfo); DO_APP_FUNC(0x012D87C0, Comparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData_ *, Comparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0128D880, int32_t, Comparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData_ *, Comparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest___ctor, (Comparer_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012D8D30, Comparer_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest_ *, Comparer_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest__Create, (Comparison_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2288, Comparer_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest__Create__MethodInfo); DO_APP_FUNC(0x012D8E60, Comparer_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest_ *, Comparer_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest_ *, Comparer_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_Pathfinding_Util_RetainedGizmos_MeshWithHash___ctor, (Comparer_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012D93D0, Comparer_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_ *, Comparer_1_Pathfinding_Util_RetainedGizmos_MeshWithHash__Create, (Comparison_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2260, Comparer_1_Pathfinding_Util_RetainedGizmos_MeshWithHash__Create__MethodInfo); DO_APP_FUNC(0x012D9500, Comparer_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_ *, Comparer_1_Pathfinding_Util_RetainedGizmos_MeshWithHash__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012814E0, int32_t, Comparer_1_Pathfinding_Util_RetainedGizmos_MeshWithHash__System_Collections_IComparer_Compare, (Comparer_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_ *, Comparer_1_Pathfinding_Util_RetainedGizmos_MeshWithHash__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride___ctor, (Comparer_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012D9A70, Comparer_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ *, Comparer_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride__Create, (Comparison_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2268, Comparer_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride__Create__MethodInfo); DO_APP_FUNC(0x012D9BA0, Comparer_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ *, Comparer_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012814E0, int32_t, Comparer_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ *, Comparer_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap___ctor, (Comparer_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012DA110, Comparer_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ *, Comparer_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__Create, (Comparison_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2270, Comparer_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__Create__MethodInfo); DO_APP_FUNC(0x012DA240, Comparer_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ *, Comparer_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ *, Comparer_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo___ctor, (Comparer_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012DA7B0, Comparer_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ *, Comparer_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__Create, (Comparison_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2250, Comparer_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__Create__MethodInfo); DO_APP_FUNC(0x012DA8E0, Comparer_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ *, Comparer_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0128CFE0, int32_t, Comparer_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ *, Comparer_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame___ctor, (Comparer_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012DAE50, Comparer_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame_ *, Comparer_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame__Create, (Comparison_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2258, Comparer_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame__Create__MethodInfo); DO_APP_FUNC(0x012DAF80, Comparer_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame_ *, Comparer_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012A49D0, int32_t, Comparer_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame__System_Collections_IComparer_Compare, (Comparer_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame_ *, Comparer_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_UIElements_TextureRegistry_TextureInfo___ctor, (Comparer_1_UnityEngine_UIElements_TextureRegistry_TextureInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012DB4F0, Comparer_1_UnityEngine_UIElements_TextureRegistry_TextureInfo_ *, Comparer_1_UnityEngine_UIElements_TextureRegistry_TextureInfo__Create, (Comparison_1_UnityEngine_UIElements_TextureRegistry_TextureInfo_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2238, Comparer_1_UnityEngine_UIElements_TextureRegistry_TextureInfo__Create__MethodInfo); DO_APP_FUNC(0x012DB620, Comparer_1_UnityEngine_UIElements_TextureRegistry_TextureInfo_ *, Comparer_1_UnityEngine_UIElements_TextureRegistry_TextureInfo__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_UnityEngine_UIElements_TextureRegistry_TextureInfo__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_UIElements_TextureRegistry_TextureInfo_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_UIElements_TextureRegistry_TextureInfo_ *, Comparer_1_UnityEngine_UIElements_TextureRegistry_TextureInfo__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry___ctor, (Comparer_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012DBB90, Comparer_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry_ *, Comparer_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry__Create, (Comparison_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2240, Comparer_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry__Create__MethodInfo); DO_APP_FUNC(0x012DBCC0, Comparer_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry_ *, Comparer_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012814E0, int32_t, Comparer_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry_ *, Comparer_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData___ctor, (Comparer_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012DC230, Comparer_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ *, Comparer_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__Create, (Comparison_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2248, Comparer_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__Create__MethodInfo); DO_APP_FUNC(0x012DC360, Comparer_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ *, Comparer_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x01280600, int32_t, Comparer_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ *, Comparer_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData___ctor, (Comparer_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012DC8D0, Comparer_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData_ *, Comparer_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData__Create, (Comparison_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2220, Comparer_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData__Create__MethodInfo); DO_APP_FUNC(0x012DCA00, Comparer_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData_ *, Comparer_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData_ *, Comparer_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper___ctor, (Comparer_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012DCF70, Comparer_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ *, Comparer_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__Create, (Comparison_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2228, Comparer_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__Create__MethodInfo); DO_APP_FUNC(0x012DD0A0, Comparer_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ *, Comparer_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ *, Comparer_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState___ctor, (Comparer_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012DD610, Comparer_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ *, Comparer_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__Create, (Comparison_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2230, Comparer_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__Create__MethodInfo); DO_APP_FUNC(0x012DD740, Comparer_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ *, Comparer_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012837A0, int32_t, Comparer_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ *, Comparer_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry___ctor, (Comparer_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012DDCB0, Comparer_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ *, Comparer_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__Create, (Comparison_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2210, Comparer_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__Create__MethodInfo); DO_APP_FUNC(0x012DDDE0, Comparer_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ *, Comparer_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012C3F70, int32_t, Comparer_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ *, Comparer_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree___ctor, (Comparer_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012DE350, Comparer_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ *, Comparer_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__Create, (Comparison_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2218, Comparer_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__Create__MethodInfo); DO_APP_FUNC(0x012DE480, Comparer_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ *, Comparer_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0128D880, int32_t, Comparer_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ *, Comparer_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate___ctor, (Comparer_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012DE9F0, Comparer_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ *, Comparer_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__Create, (Comparison_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD21F8, Comparer_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__Create__MethodInfo); DO_APP_FUNC(0x012DEB20, Comparer_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ *, Comparer_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012860C0, int32_t, Comparer_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ *, Comparer_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_UnitySynchronizationContext_WorkRequest___ctor, (Comparer_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012DF090, Comparer_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ *, Comparer_1_UnityEngine_UnitySynchronizationContext_WorkRequest__Create, (Comparison_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2200, Comparer_1_UnityEngine_UnitySynchronizationContext_WorkRequest__Create__MethodInfo); DO_APP_FUNC(0x012DF1C0, Comparer_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ *, Comparer_1_UnityEngine_UnitySynchronizationContext_WorkRequest__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012814E0, int32_t, Comparer_1_UnityEngine_UnitySynchronizationContext_WorkRequest__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ *, Comparer_1_UnityEngine_UnitySynchronizationContext_WorkRequest__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition___ctor, (Comparer_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012DF730, Comparer_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition_ *, Comparer_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition__Create, (Comparison_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2208, Comparer_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition__Create__MethodInfo); DO_APP_FUNC(0x012DF860, Comparer_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition_ *, Comparer_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition_ *, Comparer_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry___ctor, (Comparer_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012DFDD0, Comparer_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_ *, Comparer_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry__Create, (Comparison_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD21E0, Comparer_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry__Create__MethodInfo); DO_APP_FUNC(0x012DFF00, Comparer_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_ *, Comparer_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_ *, Comparer_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry___ctor, (Comparer_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012E0470, Comparer_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ *, Comparer_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__Create, (Comparison_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD21E8, Comparer_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__Create__MethodInfo); DO_APP_FUNC(0x012E05A0, Comparer_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ *, Comparer_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012814E0, int32_t, Comparer_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ *, Comparer_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry___ctor, (Comparer_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012E0B10, Comparer_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry_ *, Comparer_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry__Create, (Comparison_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD21F0, Comparer_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry__Create__MethodInfo); DO_APP_FUNC(0x012E0C40, Comparer_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry_ *, Comparer_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry__System_Collections_IComparer_Compare, (Comparer_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry_ *, Comparer_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_ftLightmaps_LightmapAdditionalData___ctor, (Comparer_1_ftLightmaps_LightmapAdditionalData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012E11B0, Comparer_1_ftLightmaps_LightmapAdditionalData_ *, Comparer_1_ftLightmaps_LightmapAdditionalData__Create, (Comparison_1_ftLightmaps_LightmapAdditionalData_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD21D0, Comparer_1_ftLightmaps_LightmapAdditionalData__Create__MethodInfo); DO_APP_FUNC(0x012E12E0, Comparer_1_ftLightmaps_LightmapAdditionalData_ *, Comparer_1_ftLightmaps_LightmapAdditionalData__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x01280600, int32_t, Comparer_1_ftLightmaps_LightmapAdditionalData__System_Collections_IComparer_Compare, (Comparer_1_ftLightmaps_LightmapAdditionalData_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_ftLightmaps_LightmapAdditionalData_ *, Comparer_1_ftLightmaps_LightmapAdditionalData__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy___ctor, (Comparer_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012E1850, Comparer_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ *, Comparer_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__Create, (Comparison_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD21D8, Comparer_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__Create__MethodInfo); DO_APP_FUNC(0x012E1980, Comparer_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ *, Comparer_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012837A0, int32_t, Comparer_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__System_Collections_IComparer_Compare, (Comparer_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ *, Comparer_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem___ctor, (Comparer_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012E1EF0, Comparer_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem_ *, Comparer_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem__Create, (Comparison_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD21B8, Comparer_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem__Create__MethodInfo); DO_APP_FUNC(0x012E2020, Comparer_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem_ *, Comparer_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0127FDE0, int32_t, Comparer_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem_ *, Comparer_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher___ctor, (Comparer_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012E2590, Comparer_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher_ *, Comparer_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher__Create, (Comparison_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD21C0, Comparer_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher__Create__MethodInfo); DO_APP_FUNC(0x012E26C0, Comparer_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher_ *, Comparer_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012814E0, int32_t, Comparer_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher__System_Collections_IComparer_Compare, (Comparer_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher_ *, Comparer_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView___ctor, (Comparer_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012E2C30, Comparer_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView_ *, Comparer_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView__Create, (Comparison_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD21C8, Comparer_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView__Create__MethodInfo); DO_APP_FUNC(0x012E2D60, Comparer_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView_ *, Comparer_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x01280600, int32_t, Comparer_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView__System_Collections_IComparer_Compare, (Comparer_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView_ *, Comparer_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb___ctor, (Comparer_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012E32D0, Comparer_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ *, Comparer_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__Create, (Comparison_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD21A0, Comparer_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__Create__MethodInfo); DO_APP_FUNC(0x012E3400, Comparer_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ *, Comparer_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0128AD20, int32_t, Comparer_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__System_Collections_IComparer_Compare, (Comparer_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ *, Comparer_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_Cinemachine_TargetPositionCache_CacheCurve_Item___ctor, (Comparer_1_Cinemachine_TargetPositionCache_CacheCurve_Item_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012E3970, Comparer_1_Cinemachine_TargetPositionCache_CacheCurve_Item_ *, Comparer_1_Cinemachine_TargetPositionCache_CacheCurve_Item__Create, (Comparison_1_Cinemachine_TargetPositionCache_CacheCurve_Item_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD21A8, Comparer_1_Cinemachine_TargetPositionCache_CacheCurve_Item__Create__MethodInfo); DO_APP_FUNC(0x012E3AA0, Comparer_1_Cinemachine_TargetPositionCache_CacheCurve_Item_ *, Comparer_1_Cinemachine_TargetPositionCache_CacheCurve_Item__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012BC610, int32_t, Comparer_1_Cinemachine_TargetPositionCache_CacheCurve_Item__System_Collections_IComparer_Compare, (Comparer_1_Cinemachine_TargetPositionCache_CacheCurve_Item_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_Cinemachine_TargetPositionCache_CacheCurve_Item_ *, Comparer_1_Cinemachine_TargetPositionCache_CacheCurve_Item__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Comparer_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem___ctor, (Comparer_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012E4010, Comparer_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ *, Comparer_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__Create, (Comparison_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD21B0, Comparer_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__Create__MethodInfo); DO_APP_FUNC(0x012E4140, Comparer_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ *, Comparer_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x012AB0B0, int32_t, Comparer_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__System_Collections_IComparer_Compare, (Comparer_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, Comparer_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ *, Comparer_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__get_Default, (MethodInfo * method)); @@ -130443,7 +144334,7 @@ DO_APP_FUNC(0x012EC2F0, int32_t, ConcurrentBag_1_System_Object__CopyFromEachQueu DO_APP_FUNC(0x012EBF60, void, ConcurrentBag_1_System_Object__CopyTo, (ConcurrentBag_1_System_Object_ * __this, Object__Array * array, int32_t index, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C90480, ConcurrentBag_1_System_Object__CopyTo__MethodInfo); DO_APP_FUNC(0x012EB9E0, ConcurrentBag_1_T_WorkStealingQueue_System_Object_ *, ConcurrentBag_1_System_Object__CreateWorkStealingQueueForCurrentThread, (ConcurrentBag_1_System_Object_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x012ECE40, void, ConcurrentBag_1_System_Object__FreezeBag, (ConcurrentBag_1_System_Object_ * __this, bool lockTaken, MethodInfo * method)); +DO_APP_FUNC(0x012ECE40, void, ConcurrentBag_1_System_Object__FreezeBag, (ConcurrentBag_1_System_Object_ * __this, bool * lockTaken, MethodInfo * method)); DO_APP_FUNC(0x012EB940, ConcurrentBag_1_T_WorkStealingQueue_System_Object_ *, ConcurrentBag_1_System_Object__GetCurrentThreadWorkStealingQueue, (ConcurrentBag_1_System_Object_ * __this, bool forceCreate, MethodInfo * method)); DO_APP_FUNC(0x012EC900, IEnumerator_1_System_Object_ *, ConcurrentBag_1_System_Object__GetEnumerator, (ConcurrentBag_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012EBCB0, ConcurrentBag_1_T_WorkStealingQueue_System_Object_ *, ConcurrentBag_1_System_Object__GetUnownedWorkStealingQueue, (ConcurrentBag_1_System_Object_ * __this, MethodInfo * method)); @@ -130455,10 +144346,10 @@ DO_APP_FUNC(0x012ECDE0, Object *, ConcurrentBag_1_System_Object__System_Collecti DO_APP_FUNC_METHODINFO(0x03C90460, ConcurrentBag_1_System_Object__System_Collections_ICollection_get_SyncRoot__MethodInfo); DO_APP_FUNC(0x0106DB90, IEnumerator *, ConcurrentBag_1_System_Object__System_Collections_IEnumerable_GetEnumerator, (ConcurrentBag_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012EC4E0, Object__Array *, ConcurrentBag_1_System_Object__ToArray, (ConcurrentBag_1_System_Object_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x012EB870, bool, ConcurrentBag_1_System_Object__TryPeek, (ConcurrentBag_1_System_Object_ * __this, Object * result, MethodInfo * method)); -DO_APP_FUNC(0x012EBCF0, bool, ConcurrentBag_1_System_Object__TrySteal, (ConcurrentBag_1_System_Object_ * __this, Object * result, bool take, MethodInfo * method)); -DO_APP_FUNC(0x012EBEB0, bool, ConcurrentBag_1_System_Object__TryStealFromTo, (ConcurrentBag_1_System_Object_ * __this, ConcurrentBag_1_T_WorkStealingQueue_System_Object_ * startInclusive, ConcurrentBag_1_T_WorkStealingQueue_System_Object_ * endExclusive, Object * result, bool take, MethodInfo * method)); -DO_APP_FUNC(0x012EB7A0, bool, ConcurrentBag_1_System_Object__TryTake, (ConcurrentBag_1_System_Object_ * __this, Object * result, MethodInfo * method)); +DO_APP_FUNC(0x012EB870, bool, ConcurrentBag_1_System_Object__TryPeek, (ConcurrentBag_1_System_Object_ * __this, Object * * result, MethodInfo * method)); +DO_APP_FUNC(0x012EBCF0, bool, ConcurrentBag_1_System_Object__TrySteal, (ConcurrentBag_1_System_Object_ * __this, Object * * result, bool take, MethodInfo * method)); +DO_APP_FUNC(0x012EBEB0, bool, ConcurrentBag_1_System_Object__TryStealFromTo, (ConcurrentBag_1_System_Object_ * __this, ConcurrentBag_1_T_WorkStealingQueue_System_Object_ * startInclusive, ConcurrentBag_1_T_WorkStealingQueue_System_Object_ * endExclusive, Object * * result, bool take, MethodInfo * method)); +DO_APP_FUNC(0x012EB7A0, bool, ConcurrentBag_1_System_Object__TryTake, (ConcurrentBag_1_System_Object_ * __this, Object * * result, MethodInfo * method)); DO_APP_FUNC(0x012ED010, void, ConcurrentBag_1_System_Object__UnfreezeBag, (ConcurrentBag_1_System_Object_ * __this, bool lockTaken, MethodInfo * method)); DO_APP_FUNC(0x012EC9B0, int32_t, ConcurrentBag_1_System_Object__get_Count, (ConcurrentBag_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012ECB00, int32_t, ConcurrentBag_1_System_Object__get_DangerousCount, (ConcurrentBag_1_System_Object_ * __this, MethodInfo * method)); @@ -130470,15 +144361,15 @@ DO_APP_FUNC(0x01305D30, void, ConcurrentDictionary_2_System_Object_System_Object DO_APP_FUNC(0x01305DD0, void, ConcurrentDictionary_2_System_Object_System_Object___ctor_1, (ConcurrentDictionary_2_System_Object_System_Object_ * __this, IEqualityComparer_1_System_Object_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01306210, void, ConcurrentDictionary_2_System_Object_System_Object___ctor_2, (ConcurrentDictionary_2_System_Object_System_Object_ * __this, int32_t concurrencyLevel, int32_t capacity, bool growLockArray, IEqualityComparer_1_System_Object_ * comparer, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C95698, ConcurrentDictionary_2_System_Object_System_Object___ctor_2__MethodInfo); -DO_APP_FUNC(0x0130AA20, void, ConcurrentDictionary_2_System_Object_System_Object__AcquireAllLocks, (ConcurrentDictionary_2_System_Object_System_Object_ * __this, int32_t locksAcquired, MethodInfo * method)); -DO_APP_FUNC(0x0130AB10, void, ConcurrentDictionary_2_System_Object_System_Object__AcquireLocks, (ConcurrentDictionary_2_System_Object_System_Object_ * __this, int32_t fromInclusive, int32_t toExclusive, int32_t locksAcquired, MethodInfo * method)); +DO_APP_FUNC(0x0130AA20, void, ConcurrentDictionary_2_System_Object_System_Object__AcquireAllLocks, (ConcurrentDictionary_2_System_Object_System_Object_ * __this, int32_t * locksAcquired, MethodInfo * method)); +DO_APP_FUNC(0x0130AB10, void, ConcurrentDictionary_2_System_Object_System_Object__AcquireLocks, (ConcurrentDictionary_2_System_Object_System_Object_ * __this, int32_t fromInclusive, int32_t toExclusive, int32_t * locksAcquired, MethodInfo * method)); DO_APP_FUNC(0x01307090, void, ConcurrentDictionary_2_System_Object_System_Object__Clear, (ConcurrentDictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01306750, bool, ConcurrentDictionary_2_System_Object_System_Object__ContainsKey, (ConcurrentDictionary_2_System_Object_System_Object_ * __this, Object * key, MethodInfo * method)); DO_APP_FUNC(0x01307B60, void, ConcurrentDictionary_2_System_Object_System_Object__CopyToEntries, (ConcurrentDictionary_2_System_Object_System_Object_ * __this, DictionaryEntry__Array * array, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01307C60, void, ConcurrentDictionary_2_System_Object_System_Object__CopyToObjects, (ConcurrentDictionary_2_System_Object_System_Object_ * __this, Object__Array * array, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01307A40, void, ConcurrentDictionary_2_System_Object_System_Object__CopyToPairs, (ConcurrentDictionary_2_System_Object_System_Object_ * __this, KeyValuePair_2_System_Object_System_Object___Array * array, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x0130A9A0, int32_t, ConcurrentDictionary_2_System_Object_System_Object__GetBucket, (int32_t hashcode, int32_t bucketCount, MethodInfo * method)); -DO_APP_FUNC(0x0130A9B0, void, ConcurrentDictionary_2_System_Object_System_Object__GetBucketAndLockNo, (int32_t hashcode, int32_t bucketNo, int32_t lockNo, int32_t bucketCount, int32_t lockCount, MethodInfo * method)); +DO_APP_FUNC(0x0130A9B0, void, ConcurrentDictionary_2_System_Object_System_Object__GetBucketAndLockNo, (int32_t hashcode, int32_t * bucketNo, int32_t * lockNo, int32_t bucketCount, int32_t lockCount, MethodInfo * method)); DO_APP_FUNC(0x01308A80, int32_t, ConcurrentDictionary_2_System_Object_System_Object__GetCountInternal, (ConcurrentDictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01307DE0, IEnumerator_1_KeyValuePair_2_System_Object_System_Object_ *, ConcurrentDictionary_2_System_Object_System_Object__GetEnumerator, (ConcurrentDictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0130AD10, ReadOnlyCollection_1_System_Object_ *, ConcurrentDictionary_2_System_Object_System_Object__GetKeys, (ConcurrentDictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); @@ -130534,12 +144425,12 @@ DO_APP_FUNC_METHODINFO(0x03C95638, ConcurrentDictionary_2_System_Object_System_O DO_APP_FUNC(0x01307710, KeyValuePair_2_System_Object_System_Object___Array *, ConcurrentDictionary_2_System_Object_System_Object__ToArray, (ConcurrentDictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C95680, ConcurrentDictionary_2_System_Object_System_Object__ToArray__MethodInfo); DO_APP_FUNC(0x01306630, bool, ConcurrentDictionary_2_System_Object_System_Object__TryAdd, (ConcurrentDictionary_2_System_Object_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x01307EB0, bool, ConcurrentDictionary_2_System_Object_System_Object__TryAddInternal, (ConcurrentDictionary_2_System_Object_System_Object_ * __this, Object * key, int32_t hashcode, Object * value, bool updateIfExists, bool acquireLock, Object * resultingValue, MethodInfo * method)); +DO_APP_FUNC(0x01307EB0, bool, ConcurrentDictionary_2_System_Object_System_Object__TryAddInternal, (ConcurrentDictionary_2_System_Object_System_Object_ * __this, Object * key, int32_t hashcode, Object * value, bool updateIfExists, bool acquireLock, Object * * resultingValue, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C95628, ConcurrentDictionary_2_System_Object_System_Object__TryAddInternal__MethodInfo); -DO_APP_FUNC(0x01306E10, bool, ConcurrentDictionary_2_System_Object_System_Object__TryGetValue, (ConcurrentDictionary_2_System_Object_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x01306F20, bool, ConcurrentDictionary_2_System_Object_System_Object__TryGetValueInternal, (ConcurrentDictionary_2_System_Object_System_Object_ * __this, Object * key, int32_t hashcode, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x01306810, bool, ConcurrentDictionary_2_System_Object_System_Object__TryRemove, (ConcurrentDictionary_2_System_Object_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x013068E0, bool, ConcurrentDictionary_2_System_Object_System_Object__TryRemoveInternal, (ConcurrentDictionary_2_System_Object_System_Object_ * __this, Object * key, Object * value, bool matchValue, Object * oldValue, MethodInfo * method)); +DO_APP_FUNC(0x01306E10, bool, ConcurrentDictionary_2_System_Object_System_Object__TryGetValue, (ConcurrentDictionary_2_System_Object_System_Object_ * __this, Object * key, Object * * value, MethodInfo * method)); +DO_APP_FUNC(0x01306F20, bool, ConcurrentDictionary_2_System_Object_System_Object__TryGetValueInternal, (ConcurrentDictionary_2_System_Object_System_Object_ * __this, Object * key, int32_t hashcode, Object * * value, MethodInfo * method)); +DO_APP_FUNC(0x01306810, bool, ConcurrentDictionary_2_System_Object_System_Object__TryRemove, (ConcurrentDictionary_2_System_Object_System_Object_ * __this, Object * key, Object * * value, MethodInfo * method)); +DO_APP_FUNC(0x013068E0, bool, ConcurrentDictionary_2_System_Object_System_Object__TryRemoveInternal, (ConcurrentDictionary_2_System_Object_System_Object_ * __this, Object * key, Object * * value, bool matchValue, Object * oldValue, MethodInfo * method)); DO_APP_FUNC(0x01308950, int32_t, ConcurrentDictionary_2_System_Object_System_Object__get_Count, (ConcurrentDictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0130A9D0, int32_t, ConcurrentDictionary_2_System_Object_System_Object__get_DefaultConcurrencyLevel, (MethodInfo * method)); DO_APP_FUNC(0x013086B0, Object *, ConcurrentDictionary_2_System_Object_System_Object__get_Item, (ConcurrentDictionary_2_System_Object_System_Object_ * __this, Object * key, MethodInfo * method)); @@ -130561,9 +144452,9 @@ DO_APP_FUNC(0x0130C940, int32_t, ConcurrentQueue_1_System_Object__GetCount, (Con DO_APP_FUNC(0x0130CA20, int64_t, ConcurrentQueue_1_System_Object__GetCount_1, (ConcurrentQueue_1_T_Segment_System_Object_ * head, int32_t headHead, ConcurrentQueue_1_T_Segment_System_Object_ * tail, int32_t tailTail, MethodInfo * method)); DO_APP_FUNC(0x0130CF70, IEnumerator_1_System_Object_ *, ConcurrentQueue_1_System_Object__GetEnumerator, (ConcurrentQueue_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0130D2E0, Object *, ConcurrentQueue_1_System_Object__GetItemWhenAvailable, (ConcurrentQueue_1_System_Object_ * __this, ConcurrentQueue_1_T_Segment_System_Object_ * segment, int32_t i, MethodInfo * method)); -DO_APP_FUNC(0x0130D010, void, ConcurrentQueue_1_System_Object__SnapForObservation, (ConcurrentQueue_1_System_Object_ * __this, ConcurrentQueue_1_T_Segment_System_Object_ * head, int32_t headHead, ConcurrentQueue_1_T_Segment_System_Object_ * tail, int32_t tailTail, MethodInfo * method)); +DO_APP_FUNC(0x0130D010, void, ConcurrentQueue_1_System_Object__SnapForObservation, (ConcurrentQueue_1_System_Object_ * __this, ConcurrentQueue_1_T_Segment_System_Object_ * * head, int32_t * headHead, ConcurrentQueue_1_T_Segment_System_Object_ * * tail, int32_t * tailTail, MethodInfo * method)); DO_APP_FUNC(0x0130C1D0, bool, ConcurrentQueue_1_System_Object__System_Collections_Concurrent_IProducerConsumerCollection_T__TryAdd, (ConcurrentQueue_1_System_Object_ * __this, Object * item, MethodInfo * method)); -DO_APP_FUNC(0x0130C200, bool, ConcurrentQueue_1_System_Object__System_Collections_Concurrent_IProducerConsumerCollection_T__TryTake, (ConcurrentQueue_1_System_Object_ * __this, Object * item, MethodInfo * method)); +DO_APP_FUNC(0x0130C200, bool, ConcurrentQueue_1_System_Object__System_Collections_Concurrent_IProducerConsumerCollection_T__TryTake, (ConcurrentQueue_1_System_Object_ * __this, Object * * item, MethodInfo * method)); DO_APP_FUNC(0x0130C000, void, ConcurrentQueue_1_System_Object__System_Collections_ICollection_CopyTo, (ConcurrentQueue_1_System_Object_ * __this, Array * array, int32_t index, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C95578, ConcurrentQueue_1_System_Object__System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, ConcurrentQueue_1_System_Object__System_Collections_ICollection_get_IsSynchronized, (ConcurrentQueue_1_System_Object_ * __this, MethodInfo * method)); @@ -130572,8 +144463,8 @@ DO_APP_FUNC_METHODINFO(0x03C95580, ConcurrentQueue_1_System_Object__System_Colle DO_APP_FUNC(0x0130C180, IEnumerator *, ConcurrentQueue_1_System_Object__System_Collections_IEnumerable_GetEnumerator, (ConcurrentQueue_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0130C230, Object__Array *, ConcurrentQueue_1_System_Object__ToArray, (ConcurrentQueue_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C95588, ConcurrentQueue_1_System_Object__ToArray__MethodInfo); -DO_APP_FUNC(0x0130DA60, bool, ConcurrentQueue_1_System_Object__TryDequeue, (ConcurrentQueue_1_System_Object_ * __this, Object * result, MethodInfo * method)); -DO_APP_FUNC(0x0130DB20, bool, ConcurrentQueue_1_System_Object__TryDequeueSlow, (ConcurrentQueue_1_System_Object_ * __this, Object * item, MethodInfo * method)); +DO_APP_FUNC(0x0130DA60, bool, ConcurrentQueue_1_System_Object__TryDequeue, (ConcurrentQueue_1_System_Object_ * __this, Object * * result, MethodInfo * method)); +DO_APP_FUNC(0x0130DB20, bool, ConcurrentQueue_1_System_Object__TryDequeueSlow, (ConcurrentQueue_1_System_Object_ * __this, Object * * item, MethodInfo * method)); DO_APP_FUNC(0x0130C580, int32_t, ConcurrentQueue_1_System_Object__get_Count, (ConcurrentQueue_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0130DD80, void, ConditionalWeakTable_2_System_Object_System_Object__1__ctor, (ConditionalWeakTable_2_System_Object_System_Object__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x0130E5A0, void, ConditionalWeakTable_2_System_Object_System_Object__1_Add, (ConditionalWeakTable_2_System_Object_System_Object__1 * __this, Object * key, Object * value, MethodInfo * method)); @@ -130588,128 +144479,140 @@ DO_APP_FUNC(0x0130EA70, bool, ConditionalWeakTable_2_System_Object_System_Object DO_APP_FUNC_METHODINFO(0x03C95520, ConditionalWeakTable_2_System_Object_System_Object__1_Remove__MethodInfo); DO_APP_FUNC(0x0130F4F0, IEnumerator_1_KeyValuePair_2_System_Object_System_Object_ *, ConditionalWeakTable_2_System_Object_System_Object__1_System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator, (ConditionalWeakTable_2_System_Object_System_Object__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x0130F710, IEnumerator *, ConditionalWeakTable_2_System_Object_System_Object__1_System_Collections_IEnumerable_GetEnumerator, (ConditionalWeakTable_2_System_Object_System_Object__1 * __this, MethodInfo * method)); -DO_APP_FUNC(0x0130EE80, bool, ConditionalWeakTable_2_System_Object_System_Object__1_TryGetValue, (ConditionalWeakTable_2_System_Object_System_Object__1 * __this, Object * key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0130EE80, bool, ConditionalWeakTable_2_System_Object_System_Object__1_TryGetValue, (ConditionalWeakTable_2_System_Object_System_Object__1 * __this, Object * key, Object * * value, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C95528, ConditionalWeakTable_2_System_Object_System_Object__1_TryGetValue__MethodInfo); -DO_APP_FUNC(0x0130F760, void, ConfiguredTaskAwaitable_1_System_Nullable_1___ctor, (ConfiguredTaskAwaitable_1_System_Nullable_1___Boxed * __this, Task_1_System_Nullable_1_ * task, bool continueOnCapturedContext, MethodInfo * method)); -DO_APP_FUNC(0x00C2FFD0, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Nullable_1_, ConfiguredTaskAwaitable_1_System_Nullable_1__GetAwaiter, (ConfiguredTaskAwaitable_1_System_Nullable_1___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0130F760, void, ConfiguredTaskAwaitable_1_System_Nullable_1___ctor, (ConfiguredTaskAwaitable_1_System_Nullable_1_ * __this, Task_1_System_Nullable_1_ * task, bool continueOnCapturedContext, MethodInfo * method)); +DO_APP_FUNC(0x00C2FFD0, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Nullable_1_, ConfiguredTaskAwaitable_1_System_Nullable_1__GetAwaiter, (ConfiguredTaskAwaitable_1_System_Nullable_1_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA1F38, ConfiguredTaskAwaitable_1_System_Nullable_1__GetAwaiter__MethodInfo); -DO_APP_FUNC(0x0130F760, void, ConfiguredTaskAwaitable_1_System_ValueTuple_2___ctor, (ConfiguredTaskAwaitable_1_System_ValueTuple_2___Boxed * __this, Task_1_System_ValueTuple_2_ * task, bool continueOnCapturedContext, MethodInfo * method)); -DO_APP_FUNC(0x00C2FFD0, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_2_, ConfiguredTaskAwaitable_1_System_ValueTuple_2__GetAwaiter, (ConfiguredTaskAwaitable_1_System_ValueTuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0130F760, void, ConfiguredTaskAwaitable_1_System_ValueTuple_3___ctor, (ConfiguredTaskAwaitable_1_System_ValueTuple_3___Boxed * __this, Task_1_System_ValueTuple_3__1 * task, bool continueOnCapturedContext, MethodInfo * method)); -DO_APP_FUNC(0x00C2FFD0, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_3__1, ConfiguredTaskAwaitable_1_System_ValueTuple_3__GetAwaiter, (ConfiguredTaskAwaitable_1_System_ValueTuple_3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0130F760, void, ConfiguredTaskAwaitable_1_System_ValueTuple_5___ctor, (ConfiguredTaskAwaitable_1_System_ValueTuple_5___Boxed * __this, Task_1_System_ValueTuple_5__1 * task, bool continueOnCapturedContext, MethodInfo * method)); -DO_APP_FUNC(0x00C2FFD0, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_5__1, ConfiguredTaskAwaitable_1_System_ValueTuple_5__GetAwaiter, (ConfiguredTaskAwaitable_1_System_ValueTuple_5___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0130F760, void, ConfiguredTaskAwaitable_1_System_Boolean___ctor, (ConfiguredTaskAwaitable_1_System_Boolean___Boxed * __this, Task_1_System_Boolean_ * task, bool continueOnCapturedContext, MethodInfo * method)); -DO_APP_FUNC(0x00C2FFD0, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Boolean_, ConfiguredTaskAwaitable_1_System_Boolean__GetAwaiter, (ConfiguredTaskAwaitable_1_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0130F760, void, ConfiguredTaskAwaitable_1_System_Int32___ctor, (ConfiguredTaskAwaitable_1_System_Int32___Boxed * __this, Task_1_System_Int32_ * task, bool continueOnCapturedContext, MethodInfo * method)); -DO_APP_FUNC(0x00C2FFD0, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32_, ConfiguredTaskAwaitable_1_System_Int32__GetAwaiter, (ConfiguredTaskAwaitable_1_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0130F760, void, ConfiguredTaskAwaitable_1_System_Int32Enum___ctor, (ConfiguredTaskAwaitable_1_System_Int32Enum___Boxed * __this, Task_1_System_Int32Enum_ * task, bool continueOnCapturedContext, MethodInfo * method)); -DO_APP_FUNC(0x00C2FFD0, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32Enum_, ConfiguredTaskAwaitable_1_System_Int32Enum__GetAwaiter, (ConfiguredTaskAwaitable_1_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0130F760, void, ConfiguredTaskAwaitable_1_System_Int64___ctor, (ConfiguredTaskAwaitable_1_System_Int64___Boxed * __this, Task_1_System_Int64_ * task, bool continueOnCapturedContext, MethodInfo * method)); -DO_APP_FUNC(0x00C2FFD0, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int64_, ConfiguredTaskAwaitable_1_System_Int64__GetAwaiter, (ConfiguredTaskAwaitable_1_System_Int64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0130F760, void, ConfiguredTaskAwaitable_1_System_Object___ctor, (ConfiguredTaskAwaitable_1_System_Object___Boxed * __this, Task_1_System_Object_ * task, bool continueOnCapturedContext, MethodInfo * method)); -DO_APP_FUNC(0x00C2FFD0, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_, ConfiguredTaskAwaitable_1_System_Object__GetAwaiter, (ConfiguredTaskAwaitable_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0130F760, void, ConfiguredTaskAwaitable_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___ctor, (ConfiguredTaskAwaitable_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___Boxed * __this, Task_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * task, bool continueOnCapturedContext, MethodInfo * method)); -DO_APP_FUNC(0x00C2FFD0, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_, ConfiguredTaskAwaitable_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__GetAwaiter, (ConfiguredTaskAwaitable_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0130F760, void, ConfiguredTaskAwaitable_1_System_Net_Sockets_SocketReceiveFromResult___ctor, (ConfiguredTaskAwaitable_1_System_Net_Sockets_SocketReceiveFromResult___Boxed * __this, Task_1_System_Net_Sockets_SocketReceiveFromResult_ * task, bool continueOnCapturedContext, MethodInfo * method)); -DO_APP_FUNC(0x00C2FFD0, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_SocketReceiveFromResult_, ConfiguredTaskAwaitable_1_System_Net_Sockets_SocketReceiveFromResult__GetAwaiter, (ConfiguredTaskAwaitable_1_System_Net_Sockets_SocketReceiveFromResult___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0130F760, void, ConfiguredTaskAwaitable_1_System_Net_Sockets_SocketReceiveMessageFromResult___ctor, (ConfiguredTaskAwaitable_1_System_Net_Sockets_SocketReceiveMessageFromResult___Boxed * __this, Task_1_System_Net_Sockets_SocketReceiveMessageFromResult_ * task, bool continueOnCapturedContext, MethodInfo * method)); -DO_APP_FUNC(0x00C2FFD0, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_SocketReceiveMessageFromResult_, ConfiguredTaskAwaitable_1_System_Net_Sockets_SocketReceiveMessageFromResult__GetAwaiter, (ConfiguredTaskAwaitable_1_System_Net_Sockets_SocketReceiveMessageFromResult___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0130F760, void, ConfiguredTaskAwaitable_1_System_Net_Sockets_UdpReceiveResult___ctor, (ConfiguredTaskAwaitable_1_System_Net_Sockets_UdpReceiveResult___Boxed * __this, Task_1_System_Net_Sockets_UdpReceiveResult_ * task, bool continueOnCapturedContext, MethodInfo * method)); -DO_APP_FUNC(0x00C2FFD0, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_UdpReceiveResult_, ConfiguredTaskAwaitable_1_System_Net_Sockets_UdpReceiveResult__GetAwaiter, (ConfiguredTaskAwaitable_1_System_Net_Sockets_UdpReceiveResult___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0130F760, void, ConfiguredTaskAwaitable_1_System_Net_WebSockets_ValueWebSocketReceiveResult___ctor, (ConfiguredTaskAwaitable_1_System_Net_WebSockets_ValueWebSocketReceiveResult___Boxed * __this, Task_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * task, bool continueOnCapturedContext, MethodInfo * method)); -DO_APP_FUNC(0x00C2FFD0, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_WebSockets_ValueWebSocketReceiveResult_, ConfiguredTaskAwaitable_1_System_Net_WebSockets_ValueWebSocketReceiveResult__GetAwaiter, (ConfiguredTaskAwaitable_1_System_Net_WebSockets_ValueWebSocketReceiveResult___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0130F760, void, ConfiguredTaskAwaitable_1_System_Threading_Tasks_VoidTaskResult___ctor, (ConfiguredTaskAwaitable_1_System_Threading_Tasks_VoidTaskResult___Boxed * __this, Task_1_VoidTaskResult_ * task, bool continueOnCapturedContext, MethodInfo * method)); -DO_APP_FUNC(0x00C2FFD0, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Threading_Tasks_VoidTaskResult_, ConfiguredTaskAwaitable_1_System_Threading_Tasks_VoidTaskResult__GetAwaiter, (ConfiguredTaskAwaitable_1_System_Threading_Tasks_VoidTaskResult___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0130F760, void, ConfiguredTaskAwaitable_1_System_IO_WaitForChangedResult___ctor, (ConfiguredTaskAwaitable_1_System_IO_WaitForChangedResult___Boxed * __this, Task_1_System_IO_WaitForChangedResult_ * task, bool continueOnCapturedContext, MethodInfo * method)); -DO_APP_FUNC(0x00C2FFD0, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_IO_WaitForChangedResult_, ConfiguredTaskAwaitable_1_System_IO_WaitForChangedResult__GetAwaiter, (ConfiguredTaskAwaitable_1_System_IO_WaitForChangedResult___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x011512A0, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Nullable_1___ctor, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Nullable_1___Boxed * __this, Task_1_System_Nullable_1_ * task, bool continueOnCapturedContext, MethodInfo * method)); -DO_APP_FUNC(0x010CC170, Nullable_1_Int32_, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Nullable_1__GetResult, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Nullable_1___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0130F760, void, ConfiguredTaskAwaitable_1_System_ValueTuple_2___ctor, (ConfiguredTaskAwaitable_1_System_ValueTuple_2_ * __this, Task_1_System_ValueTuple_2_ * task, bool continueOnCapturedContext, MethodInfo * method)); +DO_APP_FUNC(0x00C2FFD0, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_2_, ConfiguredTaskAwaitable_1_System_ValueTuple_2__GetAwaiter, (ConfiguredTaskAwaitable_1_System_ValueTuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0130F760, void, ConfiguredTaskAwaitable_1_System_ValueTuple_3___ctor, (ConfiguredTaskAwaitable_1_System_ValueTuple_3_ * __this, Task_1_System_ValueTuple_3__1 * task, bool continueOnCapturedContext, MethodInfo * method)); +DO_APP_FUNC(0x00C2FFD0, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_3__1, ConfiguredTaskAwaitable_1_System_ValueTuple_3__GetAwaiter, (ConfiguredTaskAwaitable_1_System_ValueTuple_3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0130F760, void, ConfiguredTaskAwaitable_1_System_ValueTuple_5___ctor, (ConfiguredTaskAwaitable_1_System_ValueTuple_5_ * __this, Task_1_System_ValueTuple_5__1 * task, bool continueOnCapturedContext, MethodInfo * method)); +DO_APP_FUNC(0x00C2FFD0, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_5__1, ConfiguredTaskAwaitable_1_System_ValueTuple_5__GetAwaiter, (ConfiguredTaskAwaitable_1_System_ValueTuple_5_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0130F760, void, ConfiguredTaskAwaitable_1_System_Boolean___ctor, (ConfiguredTaskAwaitable_1_System_Boolean_ * __this, Task_1_System_Boolean_ * task, bool continueOnCapturedContext, MethodInfo * method)); +DO_APP_FUNC(0x00C2FFD0, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Boolean_, ConfiguredTaskAwaitable_1_System_Boolean__GetAwaiter, (ConfiguredTaskAwaitable_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FAF0, ConfiguredTaskAwaitable_1_System_Boolean__GetAwaiter__MethodInfo); +DO_APP_FUNC(0x0130F760, void, ConfiguredTaskAwaitable_1_System_Int32___ctor, (ConfiguredTaskAwaitable_1_System_Int32_ * __this, Task_1_System_Int32_ * task, bool continueOnCapturedContext, MethodInfo * method)); +DO_APP_FUNC(0x00C2FFD0, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32_, ConfiguredTaskAwaitable_1_System_Int32__GetAwaiter, (ConfiguredTaskAwaitable_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEA30, ConfiguredTaskAwaitable_1_System_Int32__GetAwaiter__MethodInfo); +DO_APP_FUNC(0x0130F760, void, ConfiguredTaskAwaitable_1_System_Int32Enum___ctor, (ConfiguredTaskAwaitable_1_System_Int32Enum_ * __this, Task_1_System_Int32Enum_ * task, bool continueOnCapturedContext, MethodInfo * method)); +DO_APP_FUNC(0x00C2FFD0, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32Enum_, ConfiguredTaskAwaitable_1_System_Int32Enum__GetAwaiter, (ConfiguredTaskAwaitable_1_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0130F760, void, ConfiguredTaskAwaitable_1_System_Int64___ctor, (ConfiguredTaskAwaitable_1_System_Int64_ * __this, Task_1_System_Int64_ * task, bool continueOnCapturedContext, MethodInfo * method)); +DO_APP_FUNC(0x00C2FFD0, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int64_, ConfiguredTaskAwaitable_1_System_Int64__GetAwaiter, (ConfiguredTaskAwaitable_1_System_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0130F760, void, ConfiguredTaskAwaitable_1_System_Object___ctor, (ConfiguredTaskAwaitable_1_System_Object_ * __this, Task_1_System_Object_ * task, bool continueOnCapturedContext, MethodInfo * method)); +DO_APP_FUNC(0x00C2FFD0, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_, ConfiguredTaskAwaitable_1_System_Object__GetAwaiter, (ConfiguredTaskAwaitable_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A960, ConfiguredTaskAwaitable_1_System_Object__GetAwaiter__MethodInfo); +DO_APP_FUNC(0x0130F760, void, ConfiguredTaskAwaitable_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___ctor, (ConfiguredTaskAwaitable_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, Task_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * task, bool continueOnCapturedContext, MethodInfo * method)); +DO_APP_FUNC(0x00C2FFD0, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_, ConfiguredTaskAwaitable_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__GetAwaiter, (ConfiguredTaskAwaitable_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0130F760, void, ConfiguredTaskAwaitable_1_System_Net_Sockets_SocketReceiveFromResult___ctor, (ConfiguredTaskAwaitable_1_System_Net_Sockets_SocketReceiveFromResult_ * __this, Task_1_System_Net_Sockets_SocketReceiveFromResult_ * task, bool continueOnCapturedContext, MethodInfo * method)); +DO_APP_FUNC(0x00C2FFD0, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_SocketReceiveFromResult_, ConfiguredTaskAwaitable_1_System_Net_Sockets_SocketReceiveFromResult__GetAwaiter, (ConfiguredTaskAwaitable_1_System_Net_Sockets_SocketReceiveFromResult_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0130F760, void, ConfiguredTaskAwaitable_1_System_Net_Sockets_SocketReceiveMessageFromResult___ctor, (ConfiguredTaskAwaitable_1_System_Net_Sockets_SocketReceiveMessageFromResult_ * __this, Task_1_System_Net_Sockets_SocketReceiveMessageFromResult_ * task, bool continueOnCapturedContext, MethodInfo * method)); +DO_APP_FUNC(0x00C2FFD0, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_SocketReceiveMessageFromResult_, ConfiguredTaskAwaitable_1_System_Net_Sockets_SocketReceiveMessageFromResult__GetAwaiter, (ConfiguredTaskAwaitable_1_System_Net_Sockets_SocketReceiveMessageFromResult_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0130F760, void, ConfiguredTaskAwaitable_1_System_Net_Sockets_UdpReceiveResult___ctor, (ConfiguredTaskAwaitable_1_System_Net_Sockets_UdpReceiveResult_ * __this, Task_1_System_Net_Sockets_UdpReceiveResult_ * task, bool continueOnCapturedContext, MethodInfo * method)); +DO_APP_FUNC(0x00C2FFD0, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_UdpReceiveResult_, ConfiguredTaskAwaitable_1_System_Net_Sockets_UdpReceiveResult__GetAwaiter, (ConfiguredTaskAwaitable_1_System_Net_Sockets_UdpReceiveResult_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0130F760, void, ConfiguredTaskAwaitable_1_System_Net_WebSockets_ValueWebSocketReceiveResult___ctor, (ConfiguredTaskAwaitable_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, Task_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * task, bool continueOnCapturedContext, MethodInfo * method)); +DO_APP_FUNC(0x00C2FFD0, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_WebSockets_ValueWebSocketReceiveResult_, ConfiguredTaskAwaitable_1_System_Net_WebSockets_ValueWebSocketReceiveResult__GetAwaiter, (ConfiguredTaskAwaitable_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0130F760, void, ConfiguredTaskAwaitable_1_System_Threading_Tasks_VoidTaskResult___ctor, (ConfiguredTaskAwaitable_1_System_Threading_Tasks_VoidTaskResult_ * __this, Task_1_VoidTaskResult_ * task, bool continueOnCapturedContext, MethodInfo * method)); +DO_APP_FUNC(0x00C2FFD0, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Threading_Tasks_VoidTaskResult_, ConfiguredTaskAwaitable_1_System_Threading_Tasks_VoidTaskResult__GetAwaiter, (ConfiguredTaskAwaitable_1_System_Threading_Tasks_VoidTaskResult_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0130F760, void, ConfiguredTaskAwaitable_1_System_IO_WaitForChangedResult___ctor, (ConfiguredTaskAwaitable_1_System_IO_WaitForChangedResult_ * __this, Task_1_System_IO_WaitForChangedResult_ * task, bool continueOnCapturedContext, MethodInfo * method)); +DO_APP_FUNC(0x00C2FFD0, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_IO_WaitForChangedResult_, ConfiguredTaskAwaitable_1_System_IO_WaitForChangedResult__GetAwaiter, (ConfiguredTaskAwaitable_1_System_IO_WaitForChangedResult_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x011512A0, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Nullable_1___ctor, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Nullable_1_ * __this, Task_1_System_Nullable_1_ * task, bool continueOnCapturedContext, MethodInfo * method)); +DO_APP_FUNC(0x010CC170, Nullable_1_Int32_, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Nullable_1__GetResult, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Nullable_1_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA1F08, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Nullable_1__GetResult__MethodInfo); -DO_APP_FUNC(0x0130F850, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Nullable_1__UnsafeOnCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Nullable_1___Boxed * __this, Action * continuation, MethodInfo * method)); -DO_APP_FUNC(0x010CC040, bool, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Nullable_1__get_IsCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Nullable_1___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0130F850, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Nullable_1__UnsafeOnCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Nullable_1_ * __this, Action * continuation, MethodInfo * method)); +DO_APP_FUNC(0x010CC040, bool, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Nullable_1__get_IsCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Nullable_1_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA1F10, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Nullable_1__get_IsCompleted__MethodInfo); -DO_APP_FUNC(0x011512A0, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_2___ctor, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_2___Boxed * __this, Task_1_System_ValueTuple_2_ * task, bool continueOnCapturedContext, MethodInfo * method)); -DO_APP_FUNC(0x010CC220, ValueTuple_2_Boolean_Object_, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_2__GetResult, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0130F850, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_2__UnsafeOnCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_2___Boxed * __this, Action * continuation, MethodInfo * method)); -DO_APP_FUNC(0x010CC040, bool, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_2__get_IsCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x011512A0, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_3__1__ctor, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_3__1__Boxed * __this, Task_1_System_ValueTuple_3__1 * task, bool continueOnCapturedContext, MethodInfo * method)); -DO_APP_FUNC(0x010CC2E0, ValueTuple_3_Object_Object_Int32_, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_3__1_GetResult, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_3__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0130F850, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_3__1_UnsafeOnCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_3__1__Boxed * __this, Action * continuation, MethodInfo * method)); -DO_APP_FUNC(0x010CC040, bool, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_3__1_get_IsCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_3__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x011512A0, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_5__1__ctor, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_5__1__Boxed * __this, Task_1_System_ValueTuple_5__1 * task, bool continueOnCapturedContext, MethodInfo * method)); -DO_APP_FUNC(0x010CC3B0, ValueTuple_5_Object_Boolean_Boolean_Object_Object_, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_5__1_GetResult, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_5__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0130F850, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_5__1_UnsafeOnCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_5__1__Boxed * __this, Action * continuation, MethodInfo * method)); -DO_APP_FUNC(0x010CC040, bool, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_5__1_get_IsCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_5__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x011512A0, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Boolean___ctor, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Boolean___Boxed * __this, Task_1_System_Boolean_ * task, bool continueOnCapturedContext, MethodInfo * method)); -DO_APP_FUNC(0x010CC170, bool, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Boolean__GetResult, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0130F850, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Boolean__UnsafeOnCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Boolean___Boxed * __this, Action * continuation, MethodInfo * method)); -DO_APP_FUNC(0x010CC040, bool, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Boolean__get_IsCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x011512A0, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32___ctor, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32___Boxed * __this, Task_1_System_Int32_ * task, bool continueOnCapturedContext, MethodInfo * method)); -DO_APP_FUNC(0x010CC170, int32_t, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32__GetResult, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0130F850, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32__UnsafeOnCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32___Boxed * __this, Action * continuation, MethodInfo * method)); -DO_APP_FUNC(0x010CC040, bool, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32__get_IsCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x011512A0, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32Enum___ctor, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32Enum___Boxed * __this, Task_1_System_Int32Enum_ * task, bool continueOnCapturedContext, MethodInfo * method)); -DO_APP_FUNC(0x010CC170, Int32Enum__Enum, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32Enum__GetResult, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0130F850, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32Enum__UnsafeOnCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32Enum___Boxed * __this, Action * continuation, MethodInfo * method)); -DO_APP_FUNC(0x010CC040, bool, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32Enum__get_IsCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x011512A0, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int64___ctor, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int64___Boxed * __this, Task_1_System_Int64_ * task, bool continueOnCapturedContext, MethodInfo * method)); -DO_APP_FUNC(0x010CC170, int64_t, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int64__GetResult, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0130F850, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int64__UnsafeOnCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int64___Boxed * __this, Action * continuation, MethodInfo * method)); -DO_APP_FUNC(0x010CC040, bool, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int64__get_IsCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x011512A0, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object___ctor, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object___Boxed * __this, Task_1_System_Object_ * task, bool continueOnCapturedContext, MethodInfo * method)); -DO_APP_FUNC(0x010CC170, Object *, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object__GetResult, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0130F850, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object__UnsafeOnCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object___Boxed * __this, Action * continuation, MethodInfo * method)); -DO_APP_FUNC(0x010CC040, bool, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object__get_IsCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x011512A0, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___ctor, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___Boxed * __this, Task_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * task, bool continueOnCapturedContext, MethodInfo * method)); -DO_APP_FUNC(0x010CC220, SceneInstance, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__GetResult, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0130F850, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__UnsafeOnCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___Boxed * __this, Action * continuation, MethodInfo * method)); -DO_APP_FUNC(0x010CC040, bool, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__get_IsCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x011512A0, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_SocketReceiveFromResult___ctor, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_SocketReceiveFromResult___Boxed * __this, Task_1_System_Net_Sockets_SocketReceiveFromResult_ * task, bool continueOnCapturedContext, MethodInfo * method)); -DO_APP_FUNC(0x010CC220, SocketReceiveFromResult, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_SocketReceiveFromResult__GetResult, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_SocketReceiveFromResult___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0130F850, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_SocketReceiveFromResult__UnsafeOnCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_SocketReceiveFromResult___Boxed * __this, Action * continuation, MethodInfo * method)); -DO_APP_FUNC(0x010CC040, bool, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_SocketReceiveFromResult__get_IsCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_SocketReceiveFromResult___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x011512A0, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_SocketReceiveMessageFromResult___ctor, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_SocketReceiveMessageFromResult___Boxed * __this, Task_1_System_Net_Sockets_SocketReceiveMessageFromResult_ * task, bool continueOnCapturedContext, MethodInfo * method)); -DO_APP_FUNC(0x010CC3B0, SocketReceiveMessageFromResult, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_SocketReceiveMessageFromResult__GetResult, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_SocketReceiveMessageFromResult___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0130F850, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_SocketReceiveMessageFromResult__UnsafeOnCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_SocketReceiveMessageFromResult___Boxed * __this, Action * continuation, MethodInfo * method)); -DO_APP_FUNC(0x010CC040, bool, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_SocketReceiveMessageFromResult__get_IsCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_SocketReceiveMessageFromResult___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x011512A0, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_UdpReceiveResult___ctor, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_UdpReceiveResult___Boxed * __this, Task_1_System_Net_Sockets_UdpReceiveResult_ * task, bool continueOnCapturedContext, MethodInfo * method)); -DO_APP_FUNC(0x010CC220, UdpReceiveResult, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_UdpReceiveResult__GetResult, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_UdpReceiveResult___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0130F850, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_UdpReceiveResult__UnsafeOnCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_UdpReceiveResult___Boxed * __this, Action * continuation, MethodInfo * method)); -DO_APP_FUNC(0x010CC040, bool, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_UdpReceiveResult__get_IsCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_UdpReceiveResult___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x011512A0, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_WebSockets_ValueWebSocketReceiveResult___ctor, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_WebSockets_ValueWebSocketReceiveResult___Boxed * __this, Task_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * task, bool continueOnCapturedContext, MethodInfo * method)); -DO_APP_FUNC(0x010CC170, ValueWebSocketReceiveResult, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_WebSockets_ValueWebSocketReceiveResult__GetResult, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_WebSockets_ValueWebSocketReceiveResult___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0130F850, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_WebSockets_ValueWebSocketReceiveResult__UnsafeOnCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_WebSockets_ValueWebSocketReceiveResult___Boxed * __this, Action * continuation, MethodInfo * method)); -DO_APP_FUNC(0x010CC040, bool, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_WebSockets_ValueWebSocketReceiveResult__get_IsCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_WebSockets_ValueWebSocketReceiveResult___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x011512A0, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Threading_Tasks_VoidTaskResult___ctor, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Threading_Tasks_VoidTaskResult___Boxed * __this, Task_1_VoidTaskResult_ * task, bool continueOnCapturedContext, MethodInfo * method)); -DO_APP_FUNC(0x010CC170, VoidTaskResult, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Threading_Tasks_VoidTaskResult__GetResult, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Threading_Tasks_VoidTaskResult___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0130F850, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Threading_Tasks_VoidTaskResult__UnsafeOnCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Threading_Tasks_VoidTaskResult___Boxed * __this, Action * continuation, MethodInfo * method)); -DO_APP_FUNC(0x010CC040, bool, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Threading_Tasks_VoidTaskResult__get_IsCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Threading_Tasks_VoidTaskResult___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x011512A0, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_IO_WaitForChangedResult___ctor, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_IO_WaitForChangedResult___Boxed * __this, Task_1_System_IO_WaitForChangedResult_ * task, bool continueOnCapturedContext, MethodInfo * method)); -DO_APP_FUNC(0x010CC3B0, WaitForChangedResult, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_IO_WaitForChangedResult__GetResult, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_IO_WaitForChangedResult___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0130F850, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_IO_WaitForChangedResult__UnsafeOnCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_IO_WaitForChangedResult___Boxed * __this, Action * continuation, MethodInfo * method)); -DO_APP_FUNC(0x010CC040, bool, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_IO_WaitForChangedResult__get_IsCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_IO_WaitForChangedResult___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01143B90, void, ConfiguredValueTaskAwaitable_1_System_Int32___ctor, (ConfiguredValueTaskAwaitable_1_System_Int32___Boxed * __this, ValueTask_1_System_Int32_ value, MethodInfo * method)); -DO_APP_FUNC(0x01145A50, ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Int32_, ConfiguredValueTaskAwaitable_1_System_Int32__GetAwaiter, (ConfiguredValueTaskAwaitable_1_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01143F60, void, ConfiguredValueTaskAwaitable_1_System_Object___ctor, (ConfiguredValueTaskAwaitable_1_System_Object___Boxed * __this, ValueTask_1_System_Object_ value, MethodInfo * method)); -DO_APP_FUNC(0x01146EE0, ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Object_, ConfiguredValueTaskAwaitable_1_System_Object__GetAwaiter, (ConfiguredValueTaskAwaitable_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01143F60, void, ConfiguredValueTaskAwaitable_1_System_Net_WebSockets_ValueWebSocketReceiveResult___ctor, (ConfiguredValueTaskAwaitable_1_System_Net_WebSockets_ValueWebSocketReceiveResult___Boxed * __this, ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ value, MethodInfo * method)); -DO_APP_FUNC(0x01146EE0, ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Net_WebSockets_ValueWebSocketReceiveResult_, ConfiguredValueTaskAwaitable_1_System_Net_WebSockets_ValueWebSocketReceiveResult__GetAwaiter, (ConfiguredValueTaskAwaitable_1_System_Net_WebSockets_ValueWebSocketReceiveResult___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01143B90, void, ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Int32___ctor, (ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Int32___Boxed * __this, ValueTask_1_System_Int32_ value, MethodInfo * method)); -DO_APP_FUNC(0x01143C30, int32_t, ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Int32__GetResult, (ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0130F920, void, ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Int32__UnsafeOnCompleted, (ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Int32___Boxed * __this, Action * continuation, MethodInfo * method)); -DO_APP_FUNC(0x01143BF0, bool, ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Int32__get_IsCompleted, (ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01143F60, void, ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Object___ctor, (ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Object___Boxed * __this, ValueTask_1_System_Object_ value, MethodInfo * method)); -DO_APP_FUNC(0x01144000, Object *, ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Object__GetResult, (ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0130FCA0, void, ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Object__UnsafeOnCompleted, (ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Object___Boxed * __this, Action * continuation, MethodInfo * method)); -DO_APP_FUNC(0x01143FC0, bool, ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Object__get_IsCompleted, (ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01143F60, void, ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Net_WebSockets_ValueWebSocketReceiveResult___ctor, (ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Net_WebSockets_ValueWebSocketReceiveResult___Boxed * __this, ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ value, MethodInfo * method)); -DO_APP_FUNC(0x01144330, ValueWebSocketReceiveResult, ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Net_WebSockets_ValueWebSocketReceiveResult__GetResult, (ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Net_WebSockets_ValueWebSocketReceiveResult___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01310020, void, ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Net_WebSockets_ValueWebSocketReceiveResult__UnsafeOnCompleted, (ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Net_WebSockets_ValueWebSocketReceiveResult___Boxed * __this, Action * continuation, MethodInfo * method)); -DO_APP_FUNC(0x01143FC0, bool, ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Net_WebSockets_ValueWebSocketReceiveResult__get_IsCompleted, (ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Net_WebSockets_ValueWebSocketReceiveResult___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x011512A0, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_2___ctor, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_2_ * __this, Task_1_System_ValueTuple_2_ * task, bool continueOnCapturedContext, MethodInfo * method)); +DO_APP_FUNC(0x010CC220, ValueTuple_2_Boolean_Object_, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_2__GetResult, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0130F850, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_2__UnsafeOnCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_2_ * __this, Action * continuation, MethodInfo * method)); +DO_APP_FUNC(0x010CC040, bool, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_2__get_IsCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x011512A0, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_3__1__ctor, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_3__1 * __this, Task_1_System_ValueTuple_3__1 * task, bool continueOnCapturedContext, MethodInfo * method)); +DO_APP_FUNC(0x010CC2E0, ValueTuple_3_Object_Object_Int32_, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_3__1_GetResult, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_3__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0130F850, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_3__1_UnsafeOnCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_3__1 * __this, Action * continuation, MethodInfo * method)); +DO_APP_FUNC(0x010CC040, bool, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_3__1_get_IsCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_3__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x011512A0, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_5__1__ctor, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_5__1 * __this, Task_1_System_ValueTuple_5__1 * task, bool continueOnCapturedContext, MethodInfo * method)); +DO_APP_FUNC(0x010CC3B0, ValueTuple_5_Object_Boolean_Boolean_Object_Object_, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_5__1_GetResult, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_5__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0130F850, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_5__1_UnsafeOnCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_5__1 * __this, Action * continuation, MethodInfo * method)); +DO_APP_FUNC(0x010CC040, bool, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_5__1_get_IsCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_5__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x011512A0, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Boolean___ctor, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Boolean_ * __this, Task_1_System_Boolean_ * task, bool continueOnCapturedContext, MethodInfo * method)); +DO_APP_FUNC(0x010CC170, bool, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Boolean__GetResult, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FAC0, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Boolean__GetResult__MethodInfo); +DO_APP_FUNC(0x0130F850, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Boolean__UnsafeOnCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Boolean_ * __this, Action * continuation, MethodInfo * method)); +DO_APP_FUNC(0x010CC040, bool, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Boolean__get_IsCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FAB8, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Boolean__get_IsCompleted__MethodInfo); +DO_APP_FUNC(0x011512A0, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32___ctor, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32_ * __this, Task_1_System_Int32_ * task, bool continueOnCapturedContext, MethodInfo * method)); +DO_APP_FUNC(0x010CC170, int32_t, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32__GetResult, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE9E8, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32__GetResult__MethodInfo); +DO_APP_FUNC(0x0130F850, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32__UnsafeOnCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32_ * __this, Action * continuation, MethodInfo * method)); +DO_APP_FUNC(0x010CC040, bool, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32__get_IsCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE9E0, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32__get_IsCompleted__MethodInfo); +DO_APP_FUNC(0x011512A0, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32Enum___ctor, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32Enum_ * __this, Task_1_System_Int32Enum_ * task, bool continueOnCapturedContext, MethodInfo * method)); +DO_APP_FUNC(0x010CC170, Int32Enum__Enum, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32Enum__GetResult, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0130F850, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32Enum__UnsafeOnCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32Enum_ * __this, Action * continuation, MethodInfo * method)); +DO_APP_FUNC(0x010CC040, bool, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32Enum__get_IsCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x011512A0, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int64___ctor, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int64_ * __this, Task_1_System_Int64_ * task, bool continueOnCapturedContext, MethodInfo * method)); +DO_APP_FUNC(0x010CC170, int64_t, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int64__GetResult, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0130F850, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int64__UnsafeOnCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int64_ * __this, Action * continuation, MethodInfo * method)); +DO_APP_FUNC(0x010CC040, bool, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int64__get_IsCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x011512A0, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object___ctor, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ * __this, Task_1_System_Object_ * task, bool continueOnCapturedContext, MethodInfo * method)); +DO_APP_FUNC(0x010CC170, Object *, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object__GetResult, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A958, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object__GetResult__MethodInfo); +DO_APP_FUNC(0x0130F850, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object__UnsafeOnCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ * __this, Action * continuation, MethodInfo * method)); +DO_APP_FUNC(0x010CC040, bool, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object__get_IsCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A990, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object__get_IsCompleted__MethodInfo); +DO_APP_FUNC(0x011512A0, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___ctor, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, Task_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * task, bool continueOnCapturedContext, MethodInfo * method)); +DO_APP_FUNC(0x010CC220, SceneInstance, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__GetResult, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0130F850, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__UnsafeOnCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, Action * continuation, MethodInfo * method)); +DO_APP_FUNC(0x010CC040, bool, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__get_IsCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x011512A0, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_SocketReceiveFromResult___ctor, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_SocketReceiveFromResult_ * __this, Task_1_System_Net_Sockets_SocketReceiveFromResult_ * task, bool continueOnCapturedContext, MethodInfo * method)); +DO_APP_FUNC(0x010CC220, SocketReceiveFromResult, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_SocketReceiveFromResult__GetResult, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_SocketReceiveFromResult_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0130F850, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_SocketReceiveFromResult__UnsafeOnCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_SocketReceiveFromResult_ * __this, Action * continuation, MethodInfo * method)); +DO_APP_FUNC(0x010CC040, bool, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_SocketReceiveFromResult__get_IsCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_SocketReceiveFromResult_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x011512A0, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_SocketReceiveMessageFromResult___ctor, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_SocketReceiveMessageFromResult_ * __this, Task_1_System_Net_Sockets_SocketReceiveMessageFromResult_ * task, bool continueOnCapturedContext, MethodInfo * method)); +DO_APP_FUNC(0x010CC3B0, SocketReceiveMessageFromResult, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_SocketReceiveMessageFromResult__GetResult, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_SocketReceiveMessageFromResult_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0130F850, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_SocketReceiveMessageFromResult__UnsafeOnCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_SocketReceiveMessageFromResult_ * __this, Action * continuation, MethodInfo * method)); +DO_APP_FUNC(0x010CC040, bool, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_SocketReceiveMessageFromResult__get_IsCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_SocketReceiveMessageFromResult_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x011512A0, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_UdpReceiveResult___ctor, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_UdpReceiveResult_ * __this, Task_1_System_Net_Sockets_UdpReceiveResult_ * task, bool continueOnCapturedContext, MethodInfo * method)); +DO_APP_FUNC(0x010CC220, UdpReceiveResult, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_UdpReceiveResult__GetResult, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_UdpReceiveResult_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0130F850, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_UdpReceiveResult__UnsafeOnCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_UdpReceiveResult_ * __this, Action * continuation, MethodInfo * method)); +DO_APP_FUNC(0x010CC040, bool, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_UdpReceiveResult__get_IsCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_UdpReceiveResult_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x011512A0, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_WebSockets_ValueWebSocketReceiveResult___ctor, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, Task_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * task, bool continueOnCapturedContext, MethodInfo * method)); +DO_APP_FUNC(0x010CC170, ValueWebSocketReceiveResult, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_WebSockets_ValueWebSocketReceiveResult__GetResult, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0130F850, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_WebSockets_ValueWebSocketReceiveResult__UnsafeOnCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, Action * continuation, MethodInfo * method)); +DO_APP_FUNC(0x010CC040, bool, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_WebSockets_ValueWebSocketReceiveResult__get_IsCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x011512A0, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Threading_Tasks_VoidTaskResult___ctor, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Threading_Tasks_VoidTaskResult_ * __this, Task_1_VoidTaskResult_ * task, bool continueOnCapturedContext, MethodInfo * method)); +DO_APP_FUNC(0x010CC170, VoidTaskResult, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Threading_Tasks_VoidTaskResult__GetResult, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Threading_Tasks_VoidTaskResult_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0130F850, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Threading_Tasks_VoidTaskResult__UnsafeOnCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Threading_Tasks_VoidTaskResult_ * __this, Action * continuation, MethodInfo * method)); +DO_APP_FUNC(0x010CC040, bool, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Threading_Tasks_VoidTaskResult__get_IsCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Threading_Tasks_VoidTaskResult_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x011512A0, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_IO_WaitForChangedResult___ctor, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_IO_WaitForChangedResult_ * __this, Task_1_System_IO_WaitForChangedResult_ * task, bool continueOnCapturedContext, MethodInfo * method)); +DO_APP_FUNC(0x010CC3B0, WaitForChangedResult, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_IO_WaitForChangedResult__GetResult, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_IO_WaitForChangedResult_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0130F850, void, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_IO_WaitForChangedResult__UnsafeOnCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_IO_WaitForChangedResult_ * __this, Action * continuation, MethodInfo * method)); +DO_APP_FUNC(0x010CC040, bool, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_IO_WaitForChangedResult__get_IsCompleted, (ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_IO_WaitForChangedResult_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01143B90, void, ConfiguredValueTaskAwaitable_1_System_Int32___ctor, (ConfiguredValueTaskAwaitable_1_System_Int32_ * __this, ValueTask_1_System_Int32_ value, MethodInfo * method)); +DO_APP_FUNC(0x01145A50, ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Int32_, ConfiguredValueTaskAwaitable_1_System_Int32__GetAwaiter, (ConfiguredValueTaskAwaitable_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FB90, ConfiguredValueTaskAwaitable_1_System_Int32__GetAwaiter__MethodInfo); +DO_APP_FUNC(0x01143F60, void, ConfiguredValueTaskAwaitable_1_System_Object___ctor, (ConfiguredValueTaskAwaitable_1_System_Object_ * __this, ValueTask_1_System_Object_ value, MethodInfo * method)); +DO_APP_FUNC(0x01146EE0, ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Object_, ConfiguredValueTaskAwaitable_1_System_Object__GetAwaiter, (ConfiguredValueTaskAwaitable_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01143F60, void, ConfiguredValueTaskAwaitable_1_System_Net_WebSockets_ValueWebSocketReceiveResult___ctor, (ConfiguredValueTaskAwaitable_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ value, MethodInfo * method)); +DO_APP_FUNC(0x01146EE0, ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Net_WebSockets_ValueWebSocketReceiveResult_, ConfiguredValueTaskAwaitable_1_System_Net_WebSockets_ValueWebSocketReceiveResult__GetAwaiter, (ConfiguredValueTaskAwaitable_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01143B90, void, ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Int32___ctor, (ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Int32_ * __this, ValueTask_1_System_Int32_ value, MethodInfo * method)); +DO_APP_FUNC(0x01143C30, int32_t, ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Int32__GetResult, (ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FB88, ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Int32__GetResult__MethodInfo); +DO_APP_FUNC(0x0130F920, void, ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Int32__UnsafeOnCompleted, (ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Int32_ * __this, Action * continuation, MethodInfo * method)); +DO_APP_FUNC(0x01143BF0, bool, ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Int32__get_IsCompleted, (ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FBB0, ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Int32__get_IsCompleted__MethodInfo); +DO_APP_FUNC(0x01143F60, void, ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Object___ctor, (ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Object_ * __this, ValueTask_1_System_Object_ value, MethodInfo * method)); +DO_APP_FUNC(0x01144000, Object *, ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Object__GetResult, (ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0130FCA0, void, ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Object__UnsafeOnCompleted, (ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Object_ * __this, Action * continuation, MethodInfo * method)); +DO_APP_FUNC(0x01143FC0, bool, ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Object__get_IsCompleted, (ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01143F60, void, ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Net_WebSockets_ValueWebSocketReceiveResult___ctor, (ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ value, MethodInfo * method)); +DO_APP_FUNC(0x01144330, ValueWebSocketReceiveResult, ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Net_WebSockets_ValueWebSocketReceiveResult__GetResult, (ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01310020, void, ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Net_WebSockets_ValueWebSocketReceiveResult__UnsafeOnCompleted, (ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, Action * continuation, MethodInfo * method)); +DO_APP_FUNC(0x01143FC0, bool, ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Net_WebSockets_ValueWebSocketReceiveResult__get_IsCompleted, (ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01310DB0, void, ConnectionNegotiator_1_Dissonance_Integrations_PhotonBolt_BoltPeer___cctor, (MethodInfo * method)); DO_APP_FUNC(0x013103B0, void, ConnectionNegotiator_1_Dissonance_Integrations_PhotonBolt_BoltPeer___ctor, (ConnectionNegotiator_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, ISendQueue_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * sender, String * playerName, CodecSettings codecSettings, MethodInfo * method)); -DO_APP_FUNC(0x013104F0, void, ConnectionNegotiator_1_Dissonance_Integrations_PhotonBolt_BoltPeer__ReceiveHandshakeResponseHeader, (ConnectionNegotiator_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, PacketReader reader, MethodInfo * method)); +DO_APP_FUNC(0x013104F0, void, ConnectionNegotiator_1_Dissonance_Integrations_PhotonBolt_BoltPeer__ReceiveHandshakeResponseHeader, (ConnectionNegotiator_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, PacketReader * reader, MethodInfo * method)); DO_APP_FUNC(0x01310990, void, ConnectionNegotiator_1_Dissonance_Integrations_PhotonBolt_BoltPeer__SendHandshake, (ConnectionNegotiator_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, DateTime utcNow, MethodInfo * method)); DO_APP_FUNC(0x013106F0, void, ConnectionNegotiator_1_Dissonance_Integrations_PhotonBolt_BoltPeer__Start, (ConnectionNegotiator_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C95508, ConnectionNegotiator_1_Dissonance_Integrations_PhotonBolt_BoltPeer__Start__MethodInfo); @@ -130742,61 +144645,61 @@ DO_APP_FUNC(0x01311340, void, ConstantBufferSingleton_1_Hammersley_Hammersley2dS DO_APP_FUNC(0x01311B60, ConstantBufferSingleton_1_Hammersley_Hammersley2dSeq64_ *, ConstantBufferSingleton_1_Hammersley_Hammersley2dSeq64__get_instance, (MethodInfo * method)); DO_APP_FUNC(0x01311270, void, ConstantBufferSingleton_1_Hammersley_Hammersley2dSeq64__set_instance, (ConstantBufferSingleton_1_Hammersley_Hammersley2dSeq64_ * value, MethodInfo * method)); DO_APP_FUNC(0x01311DD0, void, ConstantBuffer_1_ShaderVariablesProbeVolumes___ctor, (ConstantBuffer_1_ShaderVariablesProbeVolumes_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x01312560, void, ConstantBuffer_1_ShaderVariablesProbeVolumes__PushGlobal, (ConstantBuffer_1_ShaderVariablesProbeVolumes_ * __this, ShaderVariablesProbeVolumes data, int32_t shaderId, MethodInfo * method)); -DO_APP_FUNC(0x013124F0, void, ConstantBuffer_1_ShaderVariablesProbeVolumes__PushGlobal_1, (ConstantBuffer_1_ShaderVariablesProbeVolumes_ * __this, CommandBuffer * cmd, ShaderVariablesProbeVolumes data, int32_t shaderId, MethodInfo * method)); +DO_APP_FUNC(0x01312560, void, ConstantBuffer_1_ShaderVariablesProbeVolumes__PushGlobal, (ConstantBuffer_1_ShaderVariablesProbeVolumes_ * __this, ShaderVariablesProbeVolumes * data, int32_t shaderId, MethodInfo * method)); +DO_APP_FUNC(0x013124F0, void, ConstantBuffer_1_ShaderVariablesProbeVolumes__PushGlobal_1, (ConstantBuffer_1_ShaderVariablesProbeVolumes_ * __this, CommandBuffer * cmd, ShaderVariablesProbeVolumes * data, int32_t shaderId, MethodInfo * method)); DO_APP_FUNC(0x013125C0, void, ConstantBuffer_1_ShaderVariablesProbeVolumes__Release, (ConstantBuffer_1_ShaderVariablesProbeVolumes_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013123B0, void, ConstantBuffer_1_ShaderVariablesProbeVolumes__Set, (ConstantBuffer_1_ShaderVariablesProbeVolumes_ * __this, ComputeShader * cs, int32_t shaderId, MethodInfo * method)); DO_APP_FUNC(0x01312450, void, ConstantBuffer_1_ShaderVariablesProbeVolumes__Set_1, (ConstantBuffer_1_ShaderVariablesProbeVolumes_ * __this, Material * mat, int32_t shaderId, MethodInfo * method)); DO_APP_FUNC(0x013122C0, void, ConstantBuffer_1_ShaderVariablesProbeVolumes__Set_2, (ConstantBuffer_1_ShaderVariablesProbeVolumes_ * __this, CommandBuffer * cmd, ComputeShader * cs, int32_t shaderId, MethodInfo * method)); DO_APP_FUNC(0x013121E0, void, ConstantBuffer_1_ShaderVariablesProbeVolumes__SetGlobal, (ConstantBuffer_1_ShaderVariablesProbeVolumes_ * __this, int32_t shaderId, MethodInfo * method)); DO_APP_FUNC(0x013120E0, void, ConstantBuffer_1_ShaderVariablesProbeVolumes__SetGlobal_1, (ConstantBuffer_1_ShaderVariablesProbeVolumes_ * __this, CommandBuffer * cmd, int32_t shaderId, MethodInfo * method)); -DO_APP_FUNC(0x01312080, void, ConstantBuffer_1_ShaderVariablesProbeVolumes__UpdateData, (ConstantBuffer_1_ShaderVariablesProbeVolumes_ * __this, ShaderVariablesProbeVolumes data, MethodInfo * method)); -DO_APP_FUNC(0x01312010, void, ConstantBuffer_1_ShaderVariablesProbeVolumes__UpdateData_1, (ConstantBuffer_1_ShaderVariablesProbeVolumes_ * __this, CommandBuffer * cmd, ShaderVariablesProbeVolumes data, MethodInfo * method)); +DO_APP_FUNC(0x01312080, void, ConstantBuffer_1_ShaderVariablesProbeVolumes__UpdateData, (ConstantBuffer_1_ShaderVariablesProbeVolumes_ * __this, ShaderVariablesProbeVolumes * data, MethodInfo * method)); +DO_APP_FUNC(0x01312010, void, ConstantBuffer_1_ShaderVariablesProbeVolumes__UpdateData_1, (ConstantBuffer_1_ShaderVariablesProbeVolumes_ * __this, CommandBuffer * cmd, ShaderVariablesProbeVolumes * data, MethodInfo * method)); DO_APP_FUNC(0x013127D0, void, ConstantBuffer_1_Hammersley_Hammersley2dSeq16___ctor, (ConstantBuffer_1_Hammersley_Hammersley2dSeq16_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x01312560, void, ConstantBuffer_1_Hammersley_Hammersley2dSeq16__PushGlobal, (ConstantBuffer_1_Hammersley_Hammersley2dSeq16_ * __this, Hammersley_Hammersley2dSeq16 data, int32_t shaderId, MethodInfo * method)); -DO_APP_FUNC(0x013124F0, void, ConstantBuffer_1_Hammersley_Hammersley2dSeq16__PushGlobal_1, (ConstantBuffer_1_Hammersley_Hammersley2dSeq16_ * __this, CommandBuffer * cmd, Hammersley_Hammersley2dSeq16 data, int32_t shaderId, MethodInfo * method)); +DO_APP_FUNC(0x01312560, void, ConstantBuffer_1_Hammersley_Hammersley2dSeq16__PushGlobal, (ConstantBuffer_1_Hammersley_Hammersley2dSeq16_ * __this, Hammersley_Hammersley2dSeq16 * data, int32_t shaderId, MethodInfo * method)); +DO_APP_FUNC(0x013124F0, void, ConstantBuffer_1_Hammersley_Hammersley2dSeq16__PushGlobal_1, (ConstantBuffer_1_Hammersley_Hammersley2dSeq16_ * __this, CommandBuffer * cmd, Hammersley_Hammersley2dSeq16 * data, int32_t shaderId, MethodInfo * method)); DO_APP_FUNC(0x01312D50, void, ConstantBuffer_1_Hammersley_Hammersley2dSeq16__Release, (ConstantBuffer_1_Hammersley_Hammersley2dSeq16_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013123B0, void, ConstantBuffer_1_Hammersley_Hammersley2dSeq16__Set, (ConstantBuffer_1_Hammersley_Hammersley2dSeq16_ * __this, ComputeShader * cs, int32_t shaderId, MethodInfo * method)); DO_APP_FUNC(0x01312450, void, ConstantBuffer_1_Hammersley_Hammersley2dSeq16__Set_1, (ConstantBuffer_1_Hammersley_Hammersley2dSeq16_ * __this, Material * mat, int32_t shaderId, MethodInfo * method)); DO_APP_FUNC(0x013122C0, void, ConstantBuffer_1_Hammersley_Hammersley2dSeq16__Set_2, (ConstantBuffer_1_Hammersley_Hammersley2dSeq16_ * __this, CommandBuffer * cmd, ComputeShader * cs, int32_t shaderId, MethodInfo * method)); DO_APP_FUNC(0x01312C70, void, ConstantBuffer_1_Hammersley_Hammersley2dSeq16__SetGlobal, (ConstantBuffer_1_Hammersley_Hammersley2dSeq16_ * __this, int32_t shaderId, MethodInfo * method)); DO_APP_FUNC(0x01312B70, void, ConstantBuffer_1_Hammersley_Hammersley2dSeq16__SetGlobal_1, (ConstantBuffer_1_Hammersley_Hammersley2dSeq16_ * __this, CommandBuffer * cmd, int32_t shaderId, MethodInfo * method)); -DO_APP_FUNC(0x01312AD0, void, ConstantBuffer_1_Hammersley_Hammersley2dSeq16__UpdateData, (ConstantBuffer_1_Hammersley_Hammersley2dSeq16_ * __this, Hammersley_Hammersley2dSeq16 data, MethodInfo * method)); -DO_APP_FUNC(0x01312A10, void, ConstantBuffer_1_Hammersley_Hammersley2dSeq16__UpdateData_1, (ConstantBuffer_1_Hammersley_Hammersley2dSeq16_ * __this, CommandBuffer * cmd, Hammersley_Hammersley2dSeq16 data, MethodInfo * method)); +DO_APP_FUNC(0x01312AD0, void, ConstantBuffer_1_Hammersley_Hammersley2dSeq16__UpdateData, (ConstantBuffer_1_Hammersley_Hammersley2dSeq16_ * __this, Hammersley_Hammersley2dSeq16 * data, MethodInfo * method)); +DO_APP_FUNC(0x01312A10, void, ConstantBuffer_1_Hammersley_Hammersley2dSeq16__UpdateData_1, (ConstantBuffer_1_Hammersley_Hammersley2dSeq16_ * __this, CommandBuffer * cmd, Hammersley_Hammersley2dSeq16 * data, MethodInfo * method)); DO_APP_FUNC(0x01312F60, void, ConstantBuffer_1_Hammersley_Hammersley2dSeq256___ctor, (ConstantBuffer_1_Hammersley_Hammersley2dSeq256_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x01312560, void, ConstantBuffer_1_Hammersley_Hammersley2dSeq256__PushGlobal, (ConstantBuffer_1_Hammersley_Hammersley2dSeq256_ * __this, Hammersley_Hammersley2dSeq256 data, int32_t shaderId, MethodInfo * method)); -DO_APP_FUNC(0x013124F0, void, ConstantBuffer_1_Hammersley_Hammersley2dSeq256__PushGlobal_1, (ConstantBuffer_1_Hammersley_Hammersley2dSeq256_ * __this, CommandBuffer * cmd, Hammersley_Hammersley2dSeq256 data, int32_t shaderId, MethodInfo * method)); +DO_APP_FUNC(0x01312560, void, ConstantBuffer_1_Hammersley_Hammersley2dSeq256__PushGlobal, (ConstantBuffer_1_Hammersley_Hammersley2dSeq256_ * __this, Hammersley_Hammersley2dSeq256 * data, int32_t shaderId, MethodInfo * method)); +DO_APP_FUNC(0x013124F0, void, ConstantBuffer_1_Hammersley_Hammersley2dSeq256__PushGlobal_1, (ConstantBuffer_1_Hammersley_Hammersley2dSeq256_ * __this, CommandBuffer * cmd, Hammersley_Hammersley2dSeq256 * data, int32_t shaderId, MethodInfo * method)); DO_APP_FUNC(0x01313500, void, ConstantBuffer_1_Hammersley_Hammersley2dSeq256__Release, (ConstantBuffer_1_Hammersley_Hammersley2dSeq256_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013123B0, void, ConstantBuffer_1_Hammersley_Hammersley2dSeq256__Set, (ConstantBuffer_1_Hammersley_Hammersley2dSeq256_ * __this, ComputeShader * cs, int32_t shaderId, MethodInfo * method)); DO_APP_FUNC(0x01312450, void, ConstantBuffer_1_Hammersley_Hammersley2dSeq256__Set_1, (ConstantBuffer_1_Hammersley_Hammersley2dSeq256_ * __this, Material * mat, int32_t shaderId, MethodInfo * method)); DO_APP_FUNC(0x013122C0, void, ConstantBuffer_1_Hammersley_Hammersley2dSeq256__Set_2, (ConstantBuffer_1_Hammersley_Hammersley2dSeq256_ * __this, CommandBuffer * cmd, ComputeShader * cs, int32_t shaderId, MethodInfo * method)); DO_APP_FUNC(0x01313420, void, ConstantBuffer_1_Hammersley_Hammersley2dSeq256__SetGlobal, (ConstantBuffer_1_Hammersley_Hammersley2dSeq256_ * __this, int32_t shaderId, MethodInfo * method)); DO_APP_FUNC(0x01313320, void, ConstantBuffer_1_Hammersley_Hammersley2dSeq256__SetGlobal_1, (ConstantBuffer_1_Hammersley_Hammersley2dSeq256_ * __this, CommandBuffer * cmd, int32_t shaderId, MethodInfo * method)); -DO_APP_FUNC(0x01313270, void, ConstantBuffer_1_Hammersley_Hammersley2dSeq256__UpdateData, (ConstantBuffer_1_Hammersley_Hammersley2dSeq256_ * __this, Hammersley_Hammersley2dSeq256 data, MethodInfo * method)); -DO_APP_FUNC(0x013131A0, void, ConstantBuffer_1_Hammersley_Hammersley2dSeq256__UpdateData_1, (ConstantBuffer_1_Hammersley_Hammersley2dSeq256_ * __this, CommandBuffer * cmd, Hammersley_Hammersley2dSeq256 data, MethodInfo * method)); +DO_APP_FUNC(0x01313270, void, ConstantBuffer_1_Hammersley_Hammersley2dSeq256__UpdateData, (ConstantBuffer_1_Hammersley_Hammersley2dSeq256_ * __this, Hammersley_Hammersley2dSeq256 * data, MethodInfo * method)); +DO_APP_FUNC(0x013131A0, void, ConstantBuffer_1_Hammersley_Hammersley2dSeq256__UpdateData_1, (ConstantBuffer_1_Hammersley_Hammersley2dSeq256_ * __this, CommandBuffer * cmd, Hammersley_Hammersley2dSeq256 * data, MethodInfo * method)); DO_APP_FUNC(0x01313710, void, ConstantBuffer_1_Hammersley_Hammersley2dSeq32___ctor, (ConstantBuffer_1_Hammersley_Hammersley2dSeq32_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x01312560, void, ConstantBuffer_1_Hammersley_Hammersley2dSeq32__PushGlobal, (ConstantBuffer_1_Hammersley_Hammersley2dSeq32_ * __this, Hammersley_Hammersley2dSeq32 data, int32_t shaderId, MethodInfo * method)); -DO_APP_FUNC(0x013124F0, void, ConstantBuffer_1_Hammersley_Hammersley2dSeq32__PushGlobal_1, (ConstantBuffer_1_Hammersley_Hammersley2dSeq32_ * __this, CommandBuffer * cmd, Hammersley_Hammersley2dSeq32 data, int32_t shaderId, MethodInfo * method)); +DO_APP_FUNC(0x01312560, void, ConstantBuffer_1_Hammersley_Hammersley2dSeq32__PushGlobal, (ConstantBuffer_1_Hammersley_Hammersley2dSeq32_ * __this, Hammersley_Hammersley2dSeq32 * data, int32_t shaderId, MethodInfo * method)); +DO_APP_FUNC(0x013124F0, void, ConstantBuffer_1_Hammersley_Hammersley2dSeq32__PushGlobal_1, (ConstantBuffer_1_Hammersley_Hammersley2dSeq32_ * __this, CommandBuffer * cmd, Hammersley_Hammersley2dSeq32 * data, int32_t shaderId, MethodInfo * method)); DO_APP_FUNC(0x01313C90, void, ConstantBuffer_1_Hammersley_Hammersley2dSeq32__Release, (ConstantBuffer_1_Hammersley_Hammersley2dSeq32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013123B0, void, ConstantBuffer_1_Hammersley_Hammersley2dSeq32__Set, (ConstantBuffer_1_Hammersley_Hammersley2dSeq32_ * __this, ComputeShader * cs, int32_t shaderId, MethodInfo * method)); DO_APP_FUNC(0x01312450, void, ConstantBuffer_1_Hammersley_Hammersley2dSeq32__Set_1, (ConstantBuffer_1_Hammersley_Hammersley2dSeq32_ * __this, Material * mat, int32_t shaderId, MethodInfo * method)); DO_APP_FUNC(0x013122C0, void, ConstantBuffer_1_Hammersley_Hammersley2dSeq32__Set_2, (ConstantBuffer_1_Hammersley_Hammersley2dSeq32_ * __this, CommandBuffer * cmd, ComputeShader * cs, int32_t shaderId, MethodInfo * method)); DO_APP_FUNC(0x01313BB0, void, ConstantBuffer_1_Hammersley_Hammersley2dSeq32__SetGlobal, (ConstantBuffer_1_Hammersley_Hammersley2dSeq32_ * __this, int32_t shaderId, MethodInfo * method)); DO_APP_FUNC(0x01313AB0, void, ConstantBuffer_1_Hammersley_Hammersley2dSeq32__SetGlobal_1, (ConstantBuffer_1_Hammersley_Hammersley2dSeq32_ * __this, CommandBuffer * cmd, int32_t shaderId, MethodInfo * method)); -DO_APP_FUNC(0x01313A10, void, ConstantBuffer_1_Hammersley_Hammersley2dSeq32__UpdateData, (ConstantBuffer_1_Hammersley_Hammersley2dSeq32_ * __this, Hammersley_Hammersley2dSeq32 data, MethodInfo * method)); -DO_APP_FUNC(0x01313950, void, ConstantBuffer_1_Hammersley_Hammersley2dSeq32__UpdateData_1, (ConstantBuffer_1_Hammersley_Hammersley2dSeq32_ * __this, CommandBuffer * cmd, Hammersley_Hammersley2dSeq32 data, MethodInfo * method)); +DO_APP_FUNC(0x01313A10, void, ConstantBuffer_1_Hammersley_Hammersley2dSeq32__UpdateData, (ConstantBuffer_1_Hammersley_Hammersley2dSeq32_ * __this, Hammersley_Hammersley2dSeq32 * data, MethodInfo * method)); +DO_APP_FUNC(0x01313950, void, ConstantBuffer_1_Hammersley_Hammersley2dSeq32__UpdateData_1, (ConstantBuffer_1_Hammersley_Hammersley2dSeq32_ * __this, CommandBuffer * cmd, Hammersley_Hammersley2dSeq32 * data, MethodInfo * method)); DO_APP_FUNC(0x01313EA0, void, ConstantBuffer_1_Hammersley_Hammersley2dSeq64___ctor, (ConstantBuffer_1_Hammersley_Hammersley2dSeq64_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x01312560, void, ConstantBuffer_1_Hammersley_Hammersley2dSeq64__PushGlobal, (ConstantBuffer_1_Hammersley_Hammersley2dSeq64_ * __this, Hammersley_Hammersley2dSeq64 data, int32_t shaderId, MethodInfo * method)); -DO_APP_FUNC(0x013124F0, void, ConstantBuffer_1_Hammersley_Hammersley2dSeq64__PushGlobal_1, (ConstantBuffer_1_Hammersley_Hammersley2dSeq64_ * __this, CommandBuffer * cmd, Hammersley_Hammersley2dSeq64 data, int32_t shaderId, MethodInfo * method)); +DO_APP_FUNC(0x01312560, void, ConstantBuffer_1_Hammersley_Hammersley2dSeq64__PushGlobal, (ConstantBuffer_1_Hammersley_Hammersley2dSeq64_ * __this, Hammersley_Hammersley2dSeq64 * data, int32_t shaderId, MethodInfo * method)); +DO_APP_FUNC(0x013124F0, void, ConstantBuffer_1_Hammersley_Hammersley2dSeq64__PushGlobal_1, (ConstantBuffer_1_Hammersley_Hammersley2dSeq64_ * __this, CommandBuffer * cmd, Hammersley_Hammersley2dSeq64 * data, int32_t shaderId, MethodInfo * method)); DO_APP_FUNC(0x01314420, void, ConstantBuffer_1_Hammersley_Hammersley2dSeq64__Release, (ConstantBuffer_1_Hammersley_Hammersley2dSeq64_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013123B0, void, ConstantBuffer_1_Hammersley_Hammersley2dSeq64__Set, (ConstantBuffer_1_Hammersley_Hammersley2dSeq64_ * __this, ComputeShader * cs, int32_t shaderId, MethodInfo * method)); DO_APP_FUNC(0x01312450, void, ConstantBuffer_1_Hammersley_Hammersley2dSeq64__Set_1, (ConstantBuffer_1_Hammersley_Hammersley2dSeq64_ * __this, Material * mat, int32_t shaderId, MethodInfo * method)); DO_APP_FUNC(0x013122C0, void, ConstantBuffer_1_Hammersley_Hammersley2dSeq64__Set_2, (ConstantBuffer_1_Hammersley_Hammersley2dSeq64_ * __this, CommandBuffer * cmd, ComputeShader * cs, int32_t shaderId, MethodInfo * method)); DO_APP_FUNC(0x01314340, void, ConstantBuffer_1_Hammersley_Hammersley2dSeq64__SetGlobal, (ConstantBuffer_1_Hammersley_Hammersley2dSeq64_ * __this, int32_t shaderId, MethodInfo * method)); DO_APP_FUNC(0x01314240, void, ConstantBuffer_1_Hammersley_Hammersley2dSeq64__SetGlobal_1, (ConstantBuffer_1_Hammersley_Hammersley2dSeq64_ * __this, CommandBuffer * cmd, int32_t shaderId, MethodInfo * method)); -DO_APP_FUNC(0x013141A0, void, ConstantBuffer_1_Hammersley_Hammersley2dSeq64__UpdateData, (ConstantBuffer_1_Hammersley_Hammersley2dSeq64_ * __this, Hammersley_Hammersley2dSeq64 data, MethodInfo * method)); -DO_APP_FUNC(0x013140E0, void, ConstantBuffer_1_Hammersley_Hammersley2dSeq64__UpdateData_1, (ConstantBuffer_1_Hammersley_Hammersley2dSeq64_ * __this, CommandBuffer * cmd, Hammersley_Hammersley2dSeq64 data, MethodInfo * method)); -DO_APP_FUNC(0x01314630, void, DynamicHeightVirtualizationController_1_T_ContentHeightCacheInfo_System_Object___ctor, (DynamicHeightVirtualizationController_1_T_ContentHeightCacheInfo_System_Object___Boxed * __this, float sum, int32_t count, MethodInfo * method)); +DO_APP_FUNC(0x013141A0, void, ConstantBuffer_1_Hammersley_Hammersley2dSeq64__UpdateData, (ConstantBuffer_1_Hammersley_Hammersley2dSeq64_ * __this, Hammersley_Hammersley2dSeq64 * data, MethodInfo * method)); +DO_APP_FUNC(0x013140E0, void, ConstantBuffer_1_Hammersley_Hammersley2dSeq64__UpdateData_1, (ConstantBuffer_1_Hammersley_Hammersley2dSeq64_ * __this, CommandBuffer * cmd, Hammersley_Hammersley2dSeq64 * data, MethodInfo * method)); +DO_APP_FUNC(0x01314630, void, DynamicHeightVirtualizationController_1_T_ContentHeightCacheInfo_System_Object___ctor, (DynamicHeightVirtualizationController_1_T_ContentHeightCacheInfo_System_Object_ * __this, float sum, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x01314640, void, ContinuationResultTaskFromResultTask_2_System_Int32_System_Nullable_1___ctor, (ContinuationResultTaskFromResultTask_2_System_Int32_System_Nullable_1_ * __this, Task_1_System_Int32_ * antecedent, Delegate * function, Object * state, TaskCreationOptions__Enum creationOptions, InternalTaskOptions__Enum internalOptions, MethodInfo * method)); DO_APP_FUNC(0x013147A0, void, ContinuationResultTaskFromResultTask_2_System_Int32_System_Nullable_1__InnerInvoke, (ContinuationResultTaskFromResultTask_2_System_Int32_System_Nullable_1_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01314930, void, ContinuationResultTaskFromResultTask_2_System_Object_System_Nullable_1___ctor, (ContinuationResultTaskFromResultTask_2_System_Object_System_Nullable_1_ * __this, Task_1_System_Object_ * antecedent, Delegate * function, Object * state, TaskCreationOptions__Enum creationOptions, InternalTaskOptions__Enum internalOptions, MethodInfo * method)); @@ -130843,70 +144746,83 @@ DO_APP_FUNC(0x01040480, void, Converter_2_Object_Object___ctor, (Converter_2_Obj DO_APP_FUNC(0x003F42D0, Object *, Converter_2_Object_Object__Invoke, (Converter_2_Object_Object_ * __this, Object * input, MethodInfo * method)); DO_APP_FUNC(0x01040480, void, ConditionalWeakTable_2_TKey_TValue_CreateValueCallback_System_Object_System_Object___ctor, (ConditionalWeakTable_2_TKey_TValue_CreateValueCallback_System_Object_System_Object_ * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003F42D0, Object *, ConditionalWeakTable_2_TKey_TValue_CreateValueCallback_System_Object_System_Object__Invoke, (ConditionalWeakTable_2_TKey_TValue_CreateValueCallback_System_Object_System_Object_ * __this, Object * key, MethodInfo * method)); -DO_APP_FUNC(0x013174D0, void, CustomStyleProperty_1_UnityEngine_Color___ctor, (CustomStyleProperty_1_UnityEngine_Color___Boxed * __this, String * propertyName, MethodInfo * method)); -DO_APP_FUNC(0x01317710, bool, CustomStyleProperty_1_UnityEngine_Color__Equals, (CustomStyleProperty_1_UnityEngine_Color___Boxed * __this, CustomStyleProperty_1_UnityEngine_Color_ other, MethodInfo * method)); -DO_APP_FUNC(0x01317610, bool, CustomStyleProperty_1_UnityEngine_Color__Equals_1, (CustomStyleProperty_1_UnityEngine_Color___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x013177C0, int32_t, CustomStyleProperty_1_UnityEngine_Color__GetHashCode, (CustomStyleProperty_1_UnityEngine_Color___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, String *, CustomStyleProperty_1_UnityEngine_Color__get_name, (CustomStyleProperty_1_UnityEngine_Color___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, CustomStyleProperty_1_UnityEngine_Color__set_name, (CustomStyleProperty_1_UnityEngine_Color___Boxed * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x01317810, void, CustomStyleProperty_1_System_Int32___ctor, (CustomStyleProperty_1_System_Int32___Boxed * __this, String * propertyName, MethodInfo * method)); +DO_APP_FUNC(0x013174D0, void, CustomStyleProperty_1_UnityEngine_Color___ctor, (CustomStyleProperty_1_UnityEngine_Color_ * __this, String * propertyName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4768, CustomStyleProperty_1_UnityEngine_Color___ctor__MethodInfo); +DO_APP_FUNC(0x01317710, bool, CustomStyleProperty_1_UnityEngine_Color__Equals, (CustomStyleProperty_1_UnityEngine_Color_ * __this, CustomStyleProperty_1_UnityEngine_Color_ other, MethodInfo * method)); +DO_APP_FUNC(0x01317610, bool, CustomStyleProperty_1_UnityEngine_Color__Equals_1, (CustomStyleProperty_1_UnityEngine_Color_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x013177C0, int32_t, CustomStyleProperty_1_UnityEngine_Color__GetHashCode, (CustomStyleProperty_1_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, String *, CustomStyleProperty_1_UnityEngine_Color__get_name, (CustomStyleProperty_1_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD68A8, CustomStyleProperty_1_UnityEngine_Color__get_name__MethodInfo); +DO_APP_FUNC(0x003BC280, void, CustomStyleProperty_1_UnityEngine_Color__set_name, (CustomStyleProperty_1_UnityEngine_Color_ * __this, String * value, MethodInfo * method)); +DO_APP_FUNC(0x01317810, void, CustomStyleProperty_1_System_Int32___ctor, (CustomStyleProperty_1_System_Int32_ * __this, String * propertyName, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C954A8, CustomStyleProperty_1_System_Int32___ctor__MethodInfo); -DO_APP_FUNC(0x01317710, bool, CustomStyleProperty_1_System_Int32__Equals, (CustomStyleProperty_1_System_Int32___Boxed * __this, CustomStyleProperty_1_System_Int32_ other, MethodInfo * method)); -DO_APP_FUNC(0x01317610, bool, CustomStyleProperty_1_System_Int32__Equals_1, (CustomStyleProperty_1_System_Int32___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x013177C0, int32_t, CustomStyleProperty_1_System_Int32__GetHashCode, (CustomStyleProperty_1_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, String *, CustomStyleProperty_1_System_Int32__get_name, (CustomStyleProperty_1_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, CustomStyleProperty_1_System_Int32__set_name, (CustomStyleProperty_1_System_Int32___Boxed * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x01317950, void, CustomStyleProperty_1_System_Object___ctor, (CustomStyleProperty_1_System_Object___Boxed * __this, String * propertyName, MethodInfo * method)); +DO_APP_FUNC(0x01317710, bool, CustomStyleProperty_1_System_Int32__Equals, (CustomStyleProperty_1_System_Int32_ * __this, CustomStyleProperty_1_System_Int32_ other, MethodInfo * method)); +DO_APP_FUNC(0x01317610, bool, CustomStyleProperty_1_System_Int32__Equals_1, (CustomStyleProperty_1_System_Int32_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x013177C0, int32_t, CustomStyleProperty_1_System_Int32__GetHashCode, (CustomStyleProperty_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, String *, CustomStyleProperty_1_System_Int32__get_name, (CustomStyleProperty_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD68B0, CustomStyleProperty_1_System_Int32__get_name__MethodInfo); +DO_APP_FUNC(0x003BC280, void, CustomStyleProperty_1_System_Int32__set_name, (CustomStyleProperty_1_System_Int32_ * __this, String * value, MethodInfo * method)); +DO_APP_FUNC(0x01317950, void, CustomStyleProperty_1_System_Object___ctor, (CustomStyleProperty_1_System_Object_ * __this, String * propertyName, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C954B0, CustomStyleProperty_1_System_Object___ctor__MethodInfo); -DO_APP_FUNC(0x01317710, bool, CustomStyleProperty_1_System_Object__Equals, (CustomStyleProperty_1_System_Object___Boxed * __this, CustomStyleProperty_1_System_Object_ other, MethodInfo * method)); -DO_APP_FUNC(0x01317610, bool, CustomStyleProperty_1_System_Object__Equals_1, (CustomStyleProperty_1_System_Object___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x013177C0, int32_t, CustomStyleProperty_1_System_Object__GetHashCode, (CustomStyleProperty_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, String *, CustomStyleProperty_1_System_Object__get_name, (CustomStyleProperty_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, CustomStyleProperty_1_System_Object__set_name, (CustomStyleProperty_1_System_Object___Boxed * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x01317A90, void, CustomStyleProperty_1_System_Single___ctor, (CustomStyleProperty_1_System_Single___Boxed * __this, String * propertyName, MethodInfo * method)); -DO_APP_FUNC(0x01317710, bool, CustomStyleProperty_1_System_Single__Equals, (CustomStyleProperty_1_System_Single___Boxed * __this, CustomStyleProperty_1_System_Single_ other, MethodInfo * method)); -DO_APP_FUNC(0x01317610, bool, CustomStyleProperty_1_System_Single__Equals_1, (CustomStyleProperty_1_System_Single___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x013177C0, int32_t, CustomStyleProperty_1_System_Single__GetHashCode, (CustomStyleProperty_1_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, String *, CustomStyleProperty_1_System_Single__get_name, (CustomStyleProperty_1_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, CustomStyleProperty_1_System_Single__set_name, (CustomStyleProperty_1_System_Single___Boxed * __this, String * value, MethodInfo * method)); +DO_APP_FUNC(0x01317710, bool, CustomStyleProperty_1_System_Object__Equals, (CustomStyleProperty_1_System_Object_ * __this, CustomStyleProperty_1_System_Object_ other, MethodInfo * method)); +DO_APP_FUNC(0x01317610, bool, CustomStyleProperty_1_System_Object__Equals_1, (CustomStyleProperty_1_System_Object_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x013177C0, int32_t, CustomStyleProperty_1_System_Object__GetHashCode, (CustomStyleProperty_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, String *, CustomStyleProperty_1_System_Object__get_name, (CustomStyleProperty_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, CustomStyleProperty_1_System_Object__set_name, (CustomStyleProperty_1_System_Object_ * __this, String * value, MethodInfo * method)); +DO_APP_FUNC(0x01317A90, void, CustomStyleProperty_1_System_Single___ctor, (CustomStyleProperty_1_System_Single_ * __this, String * propertyName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD130, CustomStyleProperty_1_System_Single___ctor__MethodInfo); +DO_APP_FUNC(0x01317710, bool, CustomStyleProperty_1_System_Single__Equals, (CustomStyleProperty_1_System_Single_ * __this, CustomStyleProperty_1_System_Single_ other, MethodInfo * method)); +DO_APP_FUNC(0x01317610, bool, CustomStyleProperty_1_System_Single__Equals_1, (CustomStyleProperty_1_System_Single_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x013177C0, int32_t, CustomStyleProperty_1_System_Single__GetHashCode, (CustomStyleProperty_1_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, String *, CustomStyleProperty_1_System_Single__get_name, (CustomStyleProperty_1_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6908, CustomStyleProperty_1_System_Single__get_name__MethodInfo); +DO_APP_FUNC(0x003BC280, void, CustomStyleProperty_1_System_Single__set_name, (CustomStyleProperty_1_System_Single_ * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x01317BD0, void, Page_DataSet_1_System_UInt16___ctor, (Page_DataSet_1_System_UInt16_ * __this, Utility_GPUBufferType__Enum bufferType, uint32_t totalCount, uint32_t maxQueuedFrameCount, uint32_t updateRangePoolSize, bool mockBuffer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7938, Page_DataSet_1_System_UInt16___ctor__MethodInfo); DO_APP_FUNC(0x01317E70, void, Page_DataSet_1_System_UInt16__Dispose, (Page_DataSet_1_System_UInt16_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7998, Page_DataSet_1_System_UInt16__Dispose__MethodInfo); DO_APP_FUNC(0x01317EF0, void, Page_DataSet_1_System_UInt16__Dispose_1, (Page_DataSet_1_System_UInt16_ * __this, bool disposing, MethodInfo * method)); DO_APP_FUNC(0x01318210, bool, Page_DataSet_1_System_UInt16__HasMappedBufferRange, (Page_DataSet_1_System_UInt16_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01317FC0, void, Page_DataSet_1_System_UInt16__RegisterUpdate, (Page_DataSet_1_System_UInt16_ * __this, uint32_t start, uint32_t size, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7C78, Page_DataSet_1_System_UInt16__RegisterUpdate__MethodInfo); DO_APP_FUNC(0x01318790, void, Page_DataSet_1_System_UInt16__ResetUpdateState, (Page_DataSet_1_System_UInt16_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01318310, void, Page_DataSet_1_System_UInt16__SendFullRange, (Page_DataSet_1_System_UInt16_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013184D0, void, Page_DataSet_1_System_UInt16__SendPartialRanges, (Page_DataSet_1_System_UInt16_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01318290, void, Page_DataSet_1_System_UInt16__SendUpdates, (Page_DataSet_1_System_UInt16_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7B30, Page_DataSet_1_System_UInt16__SendUpdates__MethodInfo); DO_APP_FUNC(0x003BCD20, bool, Page_DataSet_1_System_UInt16__get_disposed, (Page_DataSet_1_System_UInt16_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD30, void, Page_DataSet_1_System_UInt16__set_disposed, (Page_DataSet_1_System_UInt16_ * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x013187C0, void, Page_DataSet_1_UnityEngine_UIElements_Vertex___ctor, (Page_DataSet_1_UnityEngine_UIElements_Vertex_ * __this, Utility_GPUBufferType__Enum bufferType, uint32_t totalCount, uint32_t maxQueuedFrameCount, uint32_t updateRangePoolSize, bool mockBuffer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7948, Page_DataSet_1_UnityEngine_UIElements_Vertex___ctor__MethodInfo); DO_APP_FUNC(0x01318A60, void, Page_DataSet_1_UnityEngine_UIElements_Vertex__Dispose, (Page_DataSet_1_UnityEngine_UIElements_Vertex_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7988, Page_DataSet_1_UnityEngine_UIElements_Vertex__Dispose__MethodInfo); DO_APP_FUNC(0x01318AE0, void, Page_DataSet_1_UnityEngine_UIElements_Vertex__Dispose_1, (Page_DataSet_1_UnityEngine_UIElements_Vertex_ * __this, bool disposing, MethodInfo * method)); DO_APP_FUNC(0x01318E00, bool, Page_DataSet_1_UnityEngine_UIElements_Vertex__HasMappedBufferRange, (Page_DataSet_1_UnityEngine_UIElements_Vertex_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01318BB0, void, Page_DataSet_1_UnityEngine_UIElements_Vertex__RegisterUpdate, (Page_DataSet_1_UnityEngine_UIElements_Vertex_ * __this, uint32_t start, uint32_t size, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7C68, Page_DataSet_1_UnityEngine_UIElements_Vertex__RegisterUpdate__MethodInfo); DO_APP_FUNC(0x01318790, void, Page_DataSet_1_UnityEngine_UIElements_Vertex__ResetUpdateState, (Page_DataSet_1_UnityEngine_UIElements_Vertex_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01318E80, void, Page_DataSet_1_UnityEngine_UIElements_Vertex__SendFullRange, (Page_DataSet_1_UnityEngine_UIElements_Vertex_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01319040, void, Page_DataSet_1_UnityEngine_UIElements_Vertex__SendPartialRanges, (Page_DataSet_1_UnityEngine_UIElements_Vertex_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01318290, void, Page_DataSet_1_UnityEngine_UIElements_Vertex__SendUpdates, (Page_DataSet_1_UnityEngine_UIElements_Vertex_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7B28, Page_DataSet_1_UnityEngine_UIElements_Vertex__SendUpdates__MethodInfo); DO_APP_FUNC(0x003BCD20, bool, Page_DataSet_1_UnityEngine_UIElements_Vertex__get_disposed, (Page_DataSet_1_UnityEngine_UIElements_Vertex_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD30, void, Page_DataSet_1_UnityEngine_UIElements_Vertex__set_disposed, (Page_DataSet_1_UnityEngine_UIElements_Vertex_ * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x010470B0, void, FancyGridView_2_TItemData_TContext_DefaultCellGroup_System_Object_System_Object___ctor, (FancyGridView_2_TItemData_TContext_DefaultCellGroup_System_Object_System_Object_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x01319300, int32_t, InputBindingCompositeContext_DefaultComparer_1_System_Object__Compare, (InputBindingCompositeContext_DefaultComparer_1_System_Object___Boxed * __this, Object * x, Object * y, MethodInfo * method)); -DO_APP_FUNC(0x01319370, int32_t, InputBindingCompositeContext_DefaultComparer_1_System_Single__Compare, (InputBindingCompositeContext_DefaultComparer_1_System_Single___Boxed * __this, float x, float y, MethodInfo * method)); +DO_APP_FUNC(0x01319300, int32_t, InputBindingCompositeContext_DefaultComparer_1_System_Object__Compare, (InputBindingCompositeContext_DefaultComparer_1_System_Object_ * __this, Object * x, Object * y, MethodInfo * method)); +DO_APP_FUNC(0x01319370, int32_t, InputBindingCompositeContext_DefaultComparer_1_System_Single__Compare, (InputBindingCompositeContext_DefaultComparer_1_System_Single_ * __this, float x, float y, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, LowLevelDictionary_2_TKey_TValue_DefaultComparer_1_System_Int32_System_Object_System_Int32___ctor, (LowLevelDictionary_2_TKey_TValue_DefaultComparer_1_System_Int32_System_Object_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01319410, bool, LowLevelDictionary_2_TKey_TValue_DefaultComparer_1_System_Int32_System_Object_System_Int32__Equals, (LowLevelDictionary_2_TKey_TValue_DefaultComparer_1_System_Int32_System_Object_System_Int32_ * __this, int32_t x, int32_t y, MethodInfo * method)); DO_APP_FUNC(0x01319520, int32_t, LowLevelDictionary_2_TKey_TValue_DefaultComparer_1_System_Int32_System_Object_System_Int32__GetHashCode, (LowLevelDictionary_2_TKey_TValue_DefaultComparer_1_System_Int32_System_Object_System_Int32_ * __this, int32_t obj, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, LowLevelDictionary_2_TKey_TValue_DefaultComparer_1_System_Object_System_Object_System_Object___ctor, (LowLevelDictionary_2_TKey_TValue_DefaultComparer_1_System_Object_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01319570, bool, LowLevelDictionary_2_TKey_TValue_DefaultComparer_1_System_Object_System_Object_System_Object__Equals, (LowLevelDictionary_2_TKey_TValue_DefaultComparer_1_System_Object_System_Object_System_Object_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x01319640, int32_t, LowLevelDictionary_2_TKey_TValue_DefaultComparer_1_System_Object_System_Object_System_Object__GetHashCode, (LowLevelDictionary_2_TKey_TValue_DefaultComparer_1_System_Object_System_Object_System_Object_ * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x00F83EB0, Hash128, CoreUnsafeUtils_DefaultKeyGetter_1_UnityEngine_Hash128__Get, (CoreUnsafeUtils_DefaultKeyGetter_1_UnityEngine_Hash128___Boxed * __this, Hash128 v, MethodInfo * method)); -DO_APP_FUNC(0x00A8A8A0, int32_t, CoreUnsafeUtils_DefaultKeyGetter_1_System_Int32__Get, (CoreUnsafeUtils_DefaultKeyGetter_1_System_Int32___Boxed * __this, int32_t v, MethodInfo * method)); -DO_APP_FUNC(0x00F84FF0, Object *, CoreUnsafeUtils_DefaultKeyGetter_1_System_Object__Get, (CoreUnsafeUtils_DefaultKeyGetter_1_System_Object___Boxed * __this, Object * v, MethodInfo * method)); +DO_APP_FUNC(0x00F83EB0, Hash128, CoreUnsafeUtils_DefaultKeyGetter_1_UnityEngine_Hash128__Get, (CoreUnsafeUtils_DefaultKeyGetter_1_UnityEngine_Hash128_ * __this, Hash128 * v, MethodInfo * method)); +DO_APP_FUNC(0x00A8A8A0, int32_t, CoreUnsafeUtils_DefaultKeyGetter_1_System_Int32__Get, (CoreUnsafeUtils_DefaultKeyGetter_1_System_Int32_ * __this, int32_t * v, MethodInfo * method)); +DO_APP_FUNC(0x00F84FF0, Object *, CoreUnsafeUtils_DefaultKeyGetter_1_System_Object__Get, (CoreUnsafeUtils_DefaultKeyGetter_1_System_Object_ * __this, Object * * v, MethodInfo * method)); DO_APP_FUNC(0x01319670, void, FileSystemEnumerable_1_TResult_DelegateEnumerator_System_Object___ctor, (FileSystemEnumerable_1_TResult_DelegateEnumerator_System_Object_ * __this, FileSystemEnumerable_1_System_Object_ * enumerable, MethodInfo * method)); -DO_APP_FUNC(0x013197F0, bool, FileSystemEnumerable_1_TResult_DelegateEnumerator_System_Object__ShouldIncludeEntry, (FileSystemEnumerable_1_TResult_DelegateEnumerator_System_Object_ * __this, FileSystemEntry entry, MethodInfo * method)); -DO_APP_FUNC(0x01319760, bool, FileSystemEnumerable_1_TResult_DelegateEnumerator_System_Object__ShouldRecurseIntoEntry, (FileSystemEnumerable_1_TResult_DelegateEnumerator_System_Object_ * __this, FileSystemEntry entry, MethodInfo * method)); -DO_APP_FUNC(0x01319710, Object *, FileSystemEnumerable_1_TResult_DelegateEnumerator_System_Object__TransformEntry, (FileSystemEnumerable_1_TResult_DelegateEnumerator_System_Object_ * __this, FileSystemEntry entry, MethodInfo * method)); +DO_APP_FUNC(0x013197F0, bool, FileSystemEnumerable_1_TResult_DelegateEnumerator_System_Object__ShouldIncludeEntry, (FileSystemEnumerable_1_TResult_DelegateEnumerator_System_Object_ * __this, FileSystemEntry * entry, MethodInfo * method)); +DO_APP_FUNC(0x01319760, bool, FileSystemEnumerable_1_TResult_DelegateEnumerator_System_Object__ShouldRecurseIntoEntry, (FileSystemEnumerable_1_TResult_DelegateEnumerator_System_Object_ * __this, FileSystemEntry * entry, MethodInfo * method)); +DO_APP_FUNC(0x01319710, Object *, FileSystemEnumerable_1_TResult_DelegateEnumerator_System_Object__TransformEntry, (FileSystemEnumerable_1_TResult_DelegateEnumerator_System_Object_ * __this, FileSystemEntry * entry, MethodInfo * method)); DO_APP_FUNC(0x01319880, void, DelegateList_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__5__ctor, (DelegateList_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__5 * __this, Func_2_Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_System_Collections_Generic_LinkedListNode_1__5 * acquireFunc, Action_1_System_Collections_Generic_LinkedListNode_1__7 * releaseFunc, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C95460, DelegateList_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__5__ctor__MethodInfo); DO_APP_FUNC(0x01319A40, void, DelegateList_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__5_Add, (DelegateList_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__5 * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__5 * action, MethodInfo * method)); @@ -130942,11 +144858,17 @@ DO_APP_FUNC(0x01319A00, int32_t, DelegateList_1_UnityEngine_ResourceManagement_A DO_APP_FUNC(0x0131A770, void, DelegateList_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___ctor, (DelegateList_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, Func_2_Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_System_Collections_Generic_LinkedListNode_1_ * acquireFunc, Action_1_System_Collections_Generic_LinkedListNode_1__1 * releaseFunc, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C95430, DelegateList_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___ctor__MethodInfo); DO_APP_FUNC(0x01319A40, void, DelegateList_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__Add, (DelegateList_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * action, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB4D8, DelegateList_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__Add__MethodInfo); DO_APP_FUNC(0x01319F90, void, DelegateList_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__Clear, (DelegateList_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB518, DelegateList_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__Clear__MethodInfo); DO_APP_FUNC(0x0131A090, DelegateList_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ *, DelegateList_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__CreateWithGlobalCache, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB4E0, DelegateList_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__CreateWithGlobalCache__MethodInfo); DO_APP_FUNC(0x0131A8F0, void, DelegateList_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__Invoke, (DelegateList_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, AsyncOperationHandle res, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB528, DelegateList_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__Invoke__MethodInfo); DO_APP_FUNC(0x01319B70, void, DelegateList_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__Remove, (DelegateList_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * action, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB4E8, DelegateList_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__Remove__MethodInfo); DO_APP_FUNC(0x01319A00, int32_t, DelegateList_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__get_Count, (DelegateList_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB558, DelegateList_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__get_Count__MethodInfo); DO_APP_FUNC(0x0131ABA0, void, DelegateList_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___ctor, (DelegateList_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, Func_2_Action_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_System_Collections_Generic_LinkedListNode_1_ * acquireFunc, Action_1_System_Collections_Generic_LinkedListNode_1__8 * releaseFunc, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C95438, DelegateList_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___ctor__MethodInfo); DO_APP_FUNC(0x01319A40, void, DelegateList_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__Add, (DelegateList_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, Action_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * action, MethodInfo * method)); @@ -130971,12 +144893,14 @@ DO_APP_FUNC(0x01319A00, int32_t, DelegateList_1_System_Object__get_Count, (Deleg DO_APP_FUNC(0x0131B3F0, void, DelegateList_1_System_Single___ctor, (DelegateList_1_System_Single_ * __this, Func_2_Action_1_Single_System_Collections_Generic_LinkedListNode_1_ * acquireFunc, Action_1_System_Collections_Generic_LinkedListNode_1_ * releaseFunc, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C95448, DelegateList_1_System_Single___ctor__MethodInfo); DO_APP_FUNC(0x01319A40, void, DelegateList_1_System_Single__Add, (DelegateList_1_System_Single_ * __this, Action_1_Single_ * action, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB4A8, DelegateList_1_System_Single__Add__MethodInfo); DO_APP_FUNC(0x01319F90, void, DelegateList_1_System_Single__Clear, (DelegateList_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131A090, DelegateList_1_System_Single_ *, DelegateList_1_System_Single__CreateWithGlobalCache, (MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9E978, DelegateList_1_System_Single__CreateWithGlobalCache__MethodInfo); DO_APP_FUNC(0x0131B570, void, DelegateList_1_System_Single__Invoke, (DelegateList_1_System_Single_ * __this, float res, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9E708, DelegateList_1_System_Single__Invoke__MethodInfo); DO_APP_FUNC(0x01319B70, void, DelegateList_1_System_Single__Remove, (DelegateList_1_System_Single_ * __this, Action_1_Single_ * action, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB4C0, DelegateList_1_System_Single__Remove__MethodInfo); DO_APP_FUNC(0x01319A00, int32_t, DelegateList_1_System_Single__get_Count, (DelegateList_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131B830, void, DictionaryDebugView_2_System_Object_System_Object___ctor, (DictionaryDebugView_2_System_Object_System_Object_ * __this, IDictionary_2_System_Object_System_Object_ * dictionary, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C95450, DictionaryDebugView_2_System_Object_System_Object___ctor__MethodInfo); @@ -130993,7 +144917,7 @@ DO_APP_FUNC_METHODINFO(0x03C95418, DictionaryKeyCollectionDebugView_2_System_Obj DO_APP_FUNC(0x0127D820, Object__Array *, DictionaryKeyCollectionDebugView_2_System_Object_System_Object__get_Items, (DictionaryKeyCollectionDebugView_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131BE80, void, DictionaryPool_2_System_Object_System_Object___cctor, (MethodInfo * method)); DO_APP_FUNC(0x010C6F80, Dictionary_2_System_Object_System_Object_ *, DictionaryPool_2_System_Object_System_Object__Get, (MethodInfo * method)); -DO_APP_FUNC(0x0111D2B0, ObjectPool_1_T_PooledObject_System_Collections_Generic_Dictionary_2_, DictionaryPool_2_System_Object_System_Object__Get_1, (Dictionary_2_System_Object_System_Object_ * value, MethodInfo * method)); +DO_APP_FUNC(0x0111D2B0, ObjectPool_1_T_PooledObject_System_Collections_Generic_Dictionary_2_, DictionaryPool_2_System_Object_System_Object__Get_1, (Dictionary_2_System_Object_System_Object_ * * value, MethodInfo * method)); DO_APP_FUNC(0x0111D3D0, void, DictionaryPool_2_System_Object_System_Object__Release, (Dictionary_2_System_Object_System_Object_ * toRelease, MethodInfo * method)); DO_APP_FUNC(0x0131C150, void, DictionaryValueCollectionDebugView_2_System_Object_System_Object___ctor, (DictionaryValueCollectionDebugView_2_System_Object_System_Object_ * __this, ICollection_1_System_Object_ * collection, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C95420, DictionaryValueCollectionDebugView_2_System_Object_System_Object___ctor__MethodInfo); @@ -131044,7 +144968,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_ValueTuple_2_System_O DO_APP_FUNC(0x0131F100, void, Dictionary_2_System_ValueTuple_2_System_Object__System_Collections_IDictionary_set_Item, (Dictionary_2_System_ValueTuple_2_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x0131D0B0, IEnumerator *, Dictionary_2_System_ValueTuple_2_System_Object__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_ValueTuple_2_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131EA60, bool, Dictionary_2_System_ValueTuple_2_System_Object__TryAdd, (Dictionary_2_System_ValueTuple_2_System_Object_ * __this, ValueTuple_2_Object_Int32_ key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x0131E9A0, bool, Dictionary_2_System_ValueTuple_2_System_Object__TryGetValue, (Dictionary_2_System_ValueTuple_2_System_Object_ * __this, ValueTuple_2_Object_Int32_ key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0131E9A0, bool, Dictionary_2_System_ValueTuple_2_System_Object__TryGetValue, (Dictionary_2_System_ValueTuple_2_System_Object_ * __this, ValueTuple_2_Object_Int32_ key, Object * * value, MethodInfo * method)); DO_APP_FUNC(0x0131D9B0, bool, Dictionary_2_System_ValueTuple_2_System_Object__TryInsert, (Dictionary_2_System_ValueTuple_2_System_Object_ * __this, ValueTuple_2_Object_Int32_ key, Object * value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_ValueTuple_2_System_Object__get_Count, (Dictionary_2_System_ValueTuple_2_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131C940, Object *, Dictionary_2_System_ValueTuple_2_System_Object__get_Item, (Dictionary_2_System_ValueTuple_2_System_Object_ * __this, ValueTuple_2_Object_Int32_ key, MethodInfo * method)); @@ -131097,7 +145021,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_ValueTuple_2_System_O DO_APP_FUNC(0x0131F100, void, Dictionary_2_System_ValueTuple_2_System_Object__1_System_Collections_IDictionary_set_Item, (Dictionary_2_System_ValueTuple_2_System_Object__1 * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x0131D0B0, IEnumerator *, Dictionary_2_System_ValueTuple_2_System_Object__1_System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_ValueTuple_2_System_Object__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x0131EA60, bool, Dictionary_2_System_ValueTuple_2_System_Object__1_TryAdd, (Dictionary_2_System_ValueTuple_2_System_Object__1 * __this, ValueTuple_2_Object_Object_ key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x0131E9A0, bool, Dictionary_2_System_ValueTuple_2_System_Object__1_TryGetValue, (Dictionary_2_System_ValueTuple_2_System_Object__1 * __this, ValueTuple_2_Object_Object_ key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0131E9A0, bool, Dictionary_2_System_ValueTuple_2_System_Object__1_TryGetValue, (Dictionary_2_System_ValueTuple_2_System_Object__1 * __this, ValueTuple_2_Object_Object_ key, Object * * value, MethodInfo * method)); DO_APP_FUNC(0x013204D0, bool, Dictionary_2_System_ValueTuple_2_System_Object__1_TryInsert, (Dictionary_2_System_ValueTuple_2_System_Object__1 * __this, ValueTuple_2_Object_Object_ key, Object * value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_ValueTuple_2_System_Object__1_get_Count, (Dictionary_2_System_ValueTuple_2_System_Object__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x0131C940, Object *, Dictionary_2_System_ValueTuple_2_System_Object__1_get_Item, (Dictionary_2_System_ValueTuple_2_System_Object__1 * __this, ValueTuple_2_Object_Object_ key, MethodInfo * method)); @@ -131105,19 +145029,23 @@ DO_APP_FUNC(0x0131C780, Dictionary_2_TKey_TValue_KeyCollection_System_ValueTuple DO_APP_FUNC(0x0131C860, Dictionary_2_TKey_TValue_ValueCollection_System_ValueTuple_2_System_Object__1 *, Dictionary_2_System_ValueTuple_2_System_Object__1_get_Values, (Dictionary_2_System_ValueTuple_2_System_Object__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x0131C9F0, void, Dictionary_2_System_ValueTuple_2_System_Object__1_set_Item, (Dictionary_2_System_ValueTuple_2_System_Object__1 * __this, ValueTuple_2_Object_Object_ key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x011C1C90, void, Dictionary_2_System_Byte_System_Object___ctor, (Dictionary_2_System_Byte_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0988, Dictionary_2_System_Byte_System_Object___ctor__MethodInfo); DO_APP_FUNC(0x0131C2E0, void, Dictionary_2_System_Byte_System_Object___ctor_1, (Dictionary_2_System_Byte_System_Object_ * __this, IDictionary_2_System_Byte_System_Object_ * dictionary, MethodInfo * method)); DO_APP_FUNC(0x010786D0, void, Dictionary_2_System_Byte_System_Object___ctor_2, (Dictionary_2_System_Byte_System_Object_ * __this, IEqualityComparer_1_System_Byte_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010B5EC0, void, Dictionary_2_System_Byte_System_Object___ctor_3, (Dictionary_2_System_Byte_System_Object_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0848, Dictionary_2_System_Byte_System_Object___ctor_3__MethodInfo); DO_APP_FUNC(0x01321A00, void, Dictionary_2_System_Byte_System_Object___ctor_4, (Dictionary_2_System_Byte_System_Object_ * __this, IDictionary_2_System_Byte_System_Object_ * dictionary, IEqualityComparer_1_System_Byte_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0131C210, void, Dictionary_2_System_Byte_System_Object___ctor_5, (Dictionary_2_System_Byte_System_Object_ * __this, int32_t capacity, IEqualityComparer_1_System_Byte_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01321DB0, void, Dictionary_2_System_Byte_System_Object___ctor_6, (Dictionary_2_System_Byte_System_Object_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x01321F10, void, Dictionary_2_System_Byte_System_Object__Add, (Dictionary_2_System_Byte_System_Object_ * __this, uint8_t key, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0980, Dictionary_2_System_Byte_System_Object__Add__MethodInfo); DO_APP_FUNC(0x0131CC90, void, Dictionary_2_System_Byte_System_Object__Clear, (Dictionary_2_System_Byte_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01322140, bool, Dictionary_2_System_Byte_System_Object__ContainsKey, (Dictionary_2_System_Byte_System_Object_ * __this, uint8_t key, MethodInfo * method)); DO_APP_FUNC(0x01322180, bool, Dictionary_2_System_Byte_System_Object__ContainsValue, (Dictionary_2_System_Byte_System_Object_ * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x013222B0, void, Dictionary_2_System_Byte_System_Object__CopyTo, (Dictionary_2_System_Byte_System_Object_ * __this, KeyValuePair_2_System_Byte_System_Object___Array * array, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01322940, int32_t, Dictionary_2_System_Byte_System_Object__FindEntry, (Dictionary_2_System_Byte_System_Object_ * __this, uint8_t key, MethodInfo * method)); DO_APP_FUNC(0x01322410, Dictionary_2_TKey_TValue_Enumerator_System_Byte_System_Object_, Dictionary_2_System_Byte_System_Object__GetEnumerator, (Dictionary_2_System_Byte_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2E88, Dictionary_2_System_Byte_System_Object__GetEnumerator__MethodInfo); DO_APP_FUNC(0x01322590, void, Dictionary_2_System_Byte_System_Object__GetObjectData, (Dictionary_2_System_Byte_System_Object_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x01322BD0, int32_t, Dictionary_2_System_Byte_System_Object__Initialize, (Dictionary_2_System_Byte_System_Object_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x0131F300, bool, Dictionary_2_System_Byte_System_Object__IsCompatibleKey, (Object * key, MethodInfo * method)); @@ -131150,13 +145078,16 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_Byte_System_Object__S DO_APP_FUNC(0x01324260, void, Dictionary_2_System_Byte_System_Object__System_Collections_IDictionary_set_Item, (Dictionary_2_System_Byte_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x013224A0, IEnumerator *, Dictionary_2_System_Byte_System_Object__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_Byte_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01323C60, bool, Dictionary_2_System_Byte_System_Object__TryAdd, (Dictionary_2_System_Byte_System_Object_ * __this, uint8_t key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x01323BB0, bool, Dictionary_2_System_Byte_System_Object__TryGetValue, (Dictionary_2_System_Byte_System_Object_ * __this, uint8_t key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x01323BB0, bool, Dictionary_2_System_Byte_System_Object__TryGetValue, (Dictionary_2_System_Byte_System_Object_ * __this, uint8_t key, Object * * value, MethodInfo * method)); DO_APP_FUNC(0x01322D50, bool, Dictionary_2_System_Byte_System_Object__TryInsert, (Dictionary_2_System_Byte_System_Object_ * __this, uint8_t key, Object * value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_Byte_System_Object__get_Count, (Dictionary_2_System_Byte_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2E78, Dictionary_2_System_Byte_System_Object__get_Count__MethodInfo); DO_APP_FUNC(0x01321E40, Object *, Dictionary_2_System_Byte_System_Object__get_Item, (Dictionary_2_System_Byte_System_Object_ * __this, uint8_t key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE58E8, Dictionary_2_System_Byte_System_Object__get_Item__MethodInfo); DO_APP_FUNC(0x0131C780, Dictionary_2_TKey_TValue_KeyCollection_System_Byte_System_Object_ *, Dictionary_2_System_Byte_System_Object__get_Keys, (Dictionary_2_System_Byte_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131C860, Dictionary_2_TKey_TValue_ValueCollection_System_Byte_System_Object_ *, Dictionary_2_System_Byte_System_Object__get_Values, (Dictionary_2_System_Byte_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01321EE0, void, Dictionary_2_System_Byte_System_Object__set_Item, (Dictionary_2_System_Byte_System_Object_ * __this, uint8_t key, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0850, Dictionary_2_System_Byte_System_Object__set_Item__MethodInfo); DO_APP_FUNC(0x011C1C90, void, Dictionary_2_System_ByteEnum_System_Int32___ctor, (Dictionary_2_System_ByteEnum_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131C2E0, void, Dictionary_2_System_ByteEnum_System_Int32___ctor_1, (Dictionary_2_System_ByteEnum_System_Int32_ * __this, IDictionary_2_System_ByteEnum_System_Int32_ * dictionary, MethodInfo * method)); DO_APP_FUNC(0x010786D0, void, Dictionary_2_System_ByteEnum_System_Int32___ctor_2, (Dictionary_2_System_ByteEnum_System_Int32_ * __this, IEqualityComparer_1_System_ByteEnum_ * comparer, MethodInfo * method)); @@ -131203,7 +145134,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_ByteEnum_System_Int32 DO_APP_FUNC(0x01326F90, void, Dictionary_2_System_ByteEnum_System_Int32__System_Collections_IDictionary_set_Item, (Dictionary_2_System_ByteEnum_System_Int32_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01325270, IEnumerator *, Dictionary_2_System_ByteEnum_System_Int32__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_ByteEnum_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01323C60, bool, Dictionary_2_System_ByteEnum_System_Int32__TryAdd, (Dictionary_2_System_ByteEnum_System_Int32_ * __this, ByteEnum__Enum key, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x013268E0, bool, Dictionary_2_System_ByteEnum_System_Int32__TryGetValue, (Dictionary_2_System_ByteEnum_System_Int32_ * __this, ByteEnum__Enum key, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x013268E0, bool, Dictionary_2_System_ByteEnum_System_Int32__TryGetValue, (Dictionary_2_System_ByteEnum_System_Int32_ * __this, ByteEnum__Enum key, int32_t * value, MethodInfo * method)); DO_APP_FUNC(0x01325B10, bool, Dictionary_2_System_ByteEnum_System_Int32__TryInsert, (Dictionary_2_System_ByteEnum_System_Int32_ * __this, ByteEnum__Enum key, int32_t value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_ByteEnum_System_Int32__get_Count, (Dictionary_2_System_ByteEnum_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01324D40, int32_t, Dictionary_2_System_ByteEnum_System_Int32__get_Item, (Dictionary_2_System_ByteEnum_System_Int32_ * __this, ByteEnum__Enum key, MethodInfo * method)); @@ -131256,7 +145187,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_ByteEnum_System_Objec DO_APP_FUNC(0x01324260, void, Dictionary_2_System_ByteEnum_System_Object__System_Collections_IDictionary_set_Item, (Dictionary_2_System_ByteEnum_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x013224A0, IEnumerator *, Dictionary_2_System_ByteEnum_System_Object__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_ByteEnum_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01323C60, bool, Dictionary_2_System_ByteEnum_System_Object__TryAdd, (Dictionary_2_System_ByteEnum_System_Object_ * __this, ByteEnum__Enum key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x01323BB0, bool, Dictionary_2_System_ByteEnum_System_Object__TryGetValue, (Dictionary_2_System_ByteEnum_System_Object_ * __this, ByteEnum__Enum key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x01323BB0, bool, Dictionary_2_System_ByteEnum_System_Object__TryGetValue, (Dictionary_2_System_ByteEnum_System_Object_ * __this, ByteEnum__Enum key, Object * * value, MethodInfo * method)); DO_APP_FUNC(0x01322D50, bool, Dictionary_2_System_ByteEnum_System_Object__TryInsert, (Dictionary_2_System_ByteEnum_System_Object_ * __this, ByteEnum__Enum key, Object * value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_ByteEnum_System_Object__get_Count, (Dictionary_2_System_ByteEnum_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01321E40, Object *, Dictionary_2_System_ByteEnum_System_Object__get_Item, (Dictionary_2_System_ByteEnum_System_Object_ * __this, ByteEnum__Enum key, MethodInfo * method)); @@ -131309,7 +145240,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_Dissonance_Audio_Playback_Fr DO_APP_FUNC(0x0132B7B0, void, Dictionary_2_Dissonance_Audio_Playback_FrameFormat_System_Object__System_Collections_IDictionary_set_Item, (Dictionary_2_Dissonance_Audio_Playback_FrameFormat_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01329620, IEnumerator *, Dictionary_2_Dissonance_Audio_Playback_FrameFormat_System_Object__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_Dissonance_Audio_Playback_FrameFormat_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0132B130, bool, Dictionary_2_Dissonance_Audio_Playback_FrameFormat_System_Object__TryAdd, (Dictionary_2_Dissonance_Audio_Playback_FrameFormat_System_Object_ * __this, FrameFormat key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x0132B060, bool, Dictionary_2_Dissonance_Audio_Playback_FrameFormat_System_Object__TryGetValue, (Dictionary_2_Dissonance_Audio_Playback_FrameFormat_System_Object_ * __this, FrameFormat key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0132B060, bool, Dictionary_2_Dissonance_Audio_Playback_FrameFormat_System_Object__TryGetValue, (Dictionary_2_Dissonance_Audio_Playback_FrameFormat_System_Object_ * __this, FrameFormat key, Object * * value, MethodInfo * method)); DO_APP_FUNC(0x01329F80, bool, Dictionary_2_Dissonance_Audio_Playback_FrameFormat_System_Object__TryInsert, (Dictionary_2_Dissonance_Audio_Playback_FrameFormat_System_Object_ * __this, FrameFormat key, Object * value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_Dissonance_Audio_Playback_FrameFormat_System_Object__get_Count, (Dictionary_2_Dissonance_Audio_Playback_FrameFormat_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01328E90, Object *, Dictionary_2_Dissonance_Audio_Playback_FrameFormat_System_Object__get_Item, (Dictionary_2_Dissonance_Audio_Playback_FrameFormat_System_Object_ * __this, FrameFormat key, MethodInfo * method)); @@ -131362,7 +145293,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_Guid_System_Object__S DO_APP_FUNC(0x0131F100, void, Dictionary_2_System_Guid_System_Object__System_Collections_IDictionary_set_Item, (Dictionary_2_System_Guid_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x0131D0B0, IEnumerator *, Dictionary_2_System_Guid_System_Object__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_Guid_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131EA60, bool, Dictionary_2_System_Guid_System_Object__TryAdd, (Dictionary_2_System_Guid_System_Object_ * __this, Guid key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x0131E9A0, bool, Dictionary_2_System_Guid_System_Object__TryGetValue, (Dictionary_2_System_Guid_System_Object_ * __this, Guid key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0131E9A0, bool, Dictionary_2_System_Guid_System_Object__TryGetValue, (Dictionary_2_System_Guid_System_Object_ * __this, Guid key, Object * * value, MethodInfo * method)); DO_APP_FUNC(0x0132CCD0, bool, Dictionary_2_System_Guid_System_Object__TryInsert, (Dictionary_2_System_Guid_System_Object_ * __this, Guid key, Object * value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_Guid_System_Object__get_Count, (Dictionary_2_System_Guid_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131C940, Object *, Dictionary_2_System_Guid_System_Object__get_Item, (Dictionary_2_System_Guid_System_Object_ * __this, Guid key, MethodInfo * method)); @@ -131370,6 +145301,7 @@ DO_APP_FUNC(0x0131C780, Dictionary_2_TKey_TValue_KeyCollection_System_Guid_Syste DO_APP_FUNC(0x0131C860, Dictionary_2_TKey_TValue_ValueCollection_System_Guid_System_Object_ *, Dictionary_2_System_Guid_System_Object__get_Values, (Dictionary_2_System_Guid_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131C9F0, void, Dictionary_2_System_Guid_System_Object__set_Item, (Dictionary_2_System_Guid_System_Object_ * __this, Guid key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x011C1C90, void, Dictionary_2_System_Guid_System_UInt32___ctor, (Dictionary_2_System_Guid_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3CE8, Dictionary_2_System_Guid_System_UInt32___ctor__MethodInfo); DO_APP_FUNC(0x0131C2E0, void, Dictionary_2_System_Guid_System_UInt32___ctor_1, (Dictionary_2_System_Guid_System_UInt32_ * __this, IDictionary_2_System_Guid_System_UInt32_ * dictionary, MethodInfo * method)); DO_APP_FUNC(0x010786D0, void, Dictionary_2_System_Guid_System_UInt32___ctor_2, (Dictionary_2_System_Guid_System_UInt32_ * __this, IEqualityComparer_1_System_Guid_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010B5EC0, void, Dictionary_2_System_Guid_System_UInt32___ctor_3, (Dictionary_2_System_Guid_System_UInt32_ * __this, int32_t capacity, MethodInfo * method)); @@ -131379,6 +145311,7 @@ DO_APP_FUNC(0x0132E550, void, Dictionary_2_System_Guid_System_UInt32___ctor_6, ( DO_APP_FUNC(0x0131CA30, void, Dictionary_2_System_Guid_System_UInt32__Add, (Dictionary_2_System_Guid_System_UInt32_ * __this, Guid key, uint32_t value, MethodInfo * method)); DO_APP_FUNC(0x0131CC90, void, Dictionary_2_System_Guid_System_UInt32__Clear, (Dictionary_2_System_Guid_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131CD00, bool, Dictionary_2_System_Guid_System_UInt32__ContainsKey, (Dictionary_2_System_Guid_System_UInt32_ * __this, Guid key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3E00, Dictionary_2_System_Guid_System_UInt32__ContainsKey__MethodInfo); DO_APP_FUNC(0x0132E8B0, bool, Dictionary_2_System_Guid_System_UInt32__ContainsValue, (Dictionary_2_System_Guid_System_UInt32_ * __this, uint32_t value, MethodInfo * method)); DO_APP_FUNC(0x0132E9A0, void, Dictionary_2_System_Guid_System_UInt32__CopyTo, (Dictionary_2_System_Guid_System_UInt32_ * __this, KeyValuePair_2_System_Guid_System_UInt32___Array * array, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x0132F010, int32_t, Dictionary_2_System_Guid_System_UInt32__FindEntry, (Dictionary_2_System_Guid_System_UInt32_ * __this, Guid key, MethodInfo * method)); @@ -131388,6 +145321,7 @@ DO_APP_FUNC(0x0132F2E0, int32_t, Dictionary_2_System_Guid_System_UInt32__Initial DO_APP_FUNC(0x0131F300, bool, Dictionary_2_System_Guid_System_UInt32__IsCompatibleKey, (Object * key, MethodInfo * method)); DO_APP_FUNC(0x0132F960, void, Dictionary_2_System_Guid_System_UInt32__OnDeserialization, (Dictionary_2_System_Guid_System_UInt32_ * __this, Object * sender, MethodInfo * method)); DO_APP_FUNC(0x01330110, bool, Dictionary_2_System_Guid_System_UInt32__Remove, (Dictionary_2_System_Guid_System_UInt32_ * __this, Guid key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3E20, Dictionary_2_System_Guid_System_UInt32__Remove__MethodInfo); DO_APP_FUNC(0x0132FDD0, void, Dictionary_2_System_Guid_System_UInt32__Resize, (Dictionary_2_System_Guid_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0132FE60, void, Dictionary_2_System_Guid_System_UInt32__Resize_1, (Dictionary_2_System_Guid_System_UInt32_ * __this, int32_t newSize, bool forceNewHashCodes, MethodInfo * method)); DO_APP_FUNC(0x0132E690, void, Dictionary_2_System_Guid_System_UInt32__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add, (Dictionary_2_System_Guid_System_UInt32_ * __this, KeyValuePair_2_System_Guid_System_UInt32_ keyValuePair, MethodInfo * method)); @@ -131415,13 +145349,15 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_Guid_System_UInt32__S DO_APP_FUNC(0x01330A80, void, Dictionary_2_System_Guid_System_UInt32__System_Collections_IDictionary_set_Item, (Dictionary_2_System_Guid_System_UInt32_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x0132EB60, IEnumerator *, Dictionary_2_System_Guid_System_UInt32__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_Guid_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131EA60, bool, Dictionary_2_System_Guid_System_UInt32__TryAdd, (Dictionary_2_System_Guid_System_UInt32_ * __this, Guid key, uint32_t value, MethodInfo * method)); -DO_APP_FUNC(0x013303C0, bool, Dictionary_2_System_Guid_System_UInt32__TryGetValue, (Dictionary_2_System_Guid_System_UInt32_ * __this, Guid key, uint32_t value, MethodInfo * method)); +DO_APP_FUNC(0x013303C0, bool, Dictionary_2_System_Guid_System_UInt32__TryGetValue, (Dictionary_2_System_Guid_System_UInt32_ * __this, Guid key, uint32_t * value, MethodInfo * method)); DO_APP_FUNC(0x0132F460, bool, Dictionary_2_System_Guid_System_UInt32__TryInsert, (Dictionary_2_System_Guid_System_UInt32_ * __this, Guid key, uint32_t value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_Guid_System_UInt32__get_Count, (Dictionary_2_System_Guid_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0132E5E0, uint32_t, Dictionary_2_System_Guid_System_UInt32__get_Item, (Dictionary_2_System_Guid_System_UInt32_ * __this, Guid key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3E18, Dictionary_2_System_Guid_System_UInt32__get_Item__MethodInfo); DO_APP_FUNC(0x0131C780, Dictionary_2_TKey_TValue_KeyCollection_System_Guid_System_UInt32_ *, Dictionary_2_System_Guid_System_UInt32__get_Keys, (Dictionary_2_System_Guid_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131C860, Dictionary_2_TKey_TValue_ValueCollection_System_Guid_System_UInt32_ *, Dictionary_2_System_Guid_System_UInt32__get_Values, (Dictionary_2_System_Guid_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131C9F0, void, Dictionary_2_System_Guid_System_UInt32__set_Item, (Dictionary_2_System_Guid_System_UInt32_ * __this, Guid key, uint32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3DC8, Dictionary_2_System_Guid_System_UInt32__set_Item__MethodInfo); DO_APP_FUNC(0x011C1C90, void, Dictionary_2_UnityEngine_Hash128_System_Object___ctor, (Dictionary_2_UnityEngine_Hash128_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131C2E0, void, Dictionary_2_UnityEngine_Hash128_System_Object___ctor_1, (Dictionary_2_UnityEngine_Hash128_System_Object_ * __this, IDictionary_2_UnityEngine_Hash128_System_Object_ * dictionary, MethodInfo * method)); DO_APP_FUNC(0x010786D0, void, Dictionary_2_UnityEngine_Hash128_System_Object___ctor_2, (Dictionary_2_UnityEngine_Hash128_System_Object_ * __this, IEqualityComparer_1_UnityEngine_Hash128_ * comparer, MethodInfo * method)); @@ -131468,7 +145404,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_UnityEngine_Hash128_System_O DO_APP_FUNC(0x0131F100, void, Dictionary_2_UnityEngine_Hash128_System_Object__System_Collections_IDictionary_set_Item, (Dictionary_2_UnityEngine_Hash128_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x0131D0B0, IEnumerator *, Dictionary_2_UnityEngine_Hash128_System_Object__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_UnityEngine_Hash128_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131EA60, bool, Dictionary_2_UnityEngine_Hash128_System_Object__TryAdd, (Dictionary_2_UnityEngine_Hash128_System_Object_ * __this, Hash128 key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x0131E9A0, bool, Dictionary_2_UnityEngine_Hash128_System_Object__TryGetValue, (Dictionary_2_UnityEngine_Hash128_System_Object_ * __this, Hash128 key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0131E9A0, bool, Dictionary_2_UnityEngine_Hash128_System_Object__TryGetValue, (Dictionary_2_UnityEngine_Hash128_System_Object_ * __this, Hash128 key, Object * * value, MethodInfo * method)); DO_APP_FUNC(0x01331D50, bool, Dictionary_2_UnityEngine_Hash128_System_Object__TryInsert, (Dictionary_2_UnityEngine_Hash128_System_Object_ * __this, Hash128 key, Object * value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_UnityEngine_Hash128_System_Object__get_Count, (Dictionary_2_UnityEngine_Hash128_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131C940, Object *, Dictionary_2_UnityEngine_Hash128_System_Object__get_Item, (Dictionary_2_UnityEngine_Hash128_System_Object_ * __this, Hash128 key, MethodInfo * method)); @@ -131476,6 +145412,7 @@ DO_APP_FUNC(0x0131C780, Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_Hash1 DO_APP_FUNC(0x0131C860, Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_Hash128_System_Object_ *, Dictionary_2_UnityEngine_Hash128_System_Object__get_Values, (Dictionary_2_UnityEngine_Hash128_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131C9F0, void, Dictionary_2_UnityEngine_Hash128_System_Object__set_Item, (Dictionary_2_UnityEngine_Hash128_System_Object_ * __this, Hash128 key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x011C1C90, void, Dictionary_2_Pathfinding_Int2_System_Int32___ctor, (Dictionary_2_Pathfinding_Int2_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA520, Dictionary_2_Pathfinding_Int2_System_Int32___ctor__MethodInfo); DO_APP_FUNC(0x0131C2E0, void, Dictionary_2_Pathfinding_Int2_System_Int32___ctor_1, (Dictionary_2_Pathfinding_Int2_System_Int32_ * __this, IDictionary_2_Pathfinding_Int2_System_Int32_ * dictionary, MethodInfo * method)); DO_APP_FUNC(0x010786D0, void, Dictionary_2_Pathfinding_Int2_System_Int32___ctor_2, (Dictionary_2_Pathfinding_Int2_System_Int32_ * __this, IEqualityComparer_1_Pathfinding_Int2_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010B5EC0, void, Dictionary_2_Pathfinding_Int2_System_Int32___ctor_3, (Dictionary_2_Pathfinding_Int2_System_Int32_ * __this, int32_t capacity, MethodInfo * method)); @@ -131483,8 +145420,11 @@ DO_APP_FUNC(0x013331A0, void, Dictionary_2_Pathfinding_Int2_System_Int32___ctor_ DO_APP_FUNC(0x0131C210, void, Dictionary_2_Pathfinding_Int2_System_Int32___ctor_5, (Dictionary_2_Pathfinding_Int2_System_Int32_ * __this, int32_t capacity, IEqualityComparer_1_Pathfinding_Int2_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01333560, void, Dictionary_2_Pathfinding_Int2_System_Int32___ctor_6, (Dictionary_2_Pathfinding_Int2_System_Int32_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x01321F10, void, Dictionary_2_Pathfinding_Int2_System_Int32__Add, (Dictionary_2_Pathfinding_Int2_System_Int32_ * __this, Int2 key, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB81C0, Dictionary_2_Pathfinding_Int2_System_Int32__Add__MethodInfo); DO_APP_FUNC(0x0131CC90, void, Dictionary_2_Pathfinding_Int2_System_Int32__Clear, (Dictionary_2_Pathfinding_Int2_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB81B0, Dictionary_2_Pathfinding_Int2_System_Int32__Clear__MethodInfo); DO_APP_FUNC(0x01322140, bool, Dictionary_2_Pathfinding_Int2_System_Int32__ContainsKey, (Dictionary_2_Pathfinding_Int2_System_Int32_ * __this, Int2 key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB81D0, Dictionary_2_Pathfinding_Int2_System_Int32__ContainsKey__MethodInfo); DO_APP_FUNC(0x01333880, bool, Dictionary_2_Pathfinding_Int2_System_Int32__ContainsValue, (Dictionary_2_Pathfinding_Int2_System_Int32_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01333970, void, Dictionary_2_Pathfinding_Int2_System_Int32__CopyTo, (Dictionary_2_Pathfinding_Int2_System_Int32_ * __this, KeyValuePair_2_Pathfinding_Int2_System_Int32___Array * array, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01333FD0, int32_t, Dictionary_2_Pathfinding_Int2_System_Int32__FindEntry, (Dictionary_2_Pathfinding_Int2_System_Int32_ * __this, Int2 key, MethodInfo * method)); @@ -131521,14 +145461,17 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_Pathfinding_Int2_System_Int3 DO_APP_FUNC(0x013358C0, void, Dictionary_2_Pathfinding_Int2_System_Int32__System_Collections_IDictionary_set_Item, (Dictionary_2_Pathfinding_Int2_System_Int32_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01333B30, IEnumerator *, Dictionary_2_Pathfinding_Int2_System_Int32__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_Pathfinding_Int2_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01323C60, bool, Dictionary_2_Pathfinding_Int2_System_Int32__TryAdd, (Dictionary_2_Pathfinding_Int2_System_Int32_ * __this, Int2 key, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x01335230, bool, Dictionary_2_Pathfinding_Int2_System_Int32__TryGetValue, (Dictionary_2_Pathfinding_Int2_System_Int32_ * __this, Int2 key, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x01335230, bool, Dictionary_2_Pathfinding_Int2_System_Int32__TryGetValue, (Dictionary_2_Pathfinding_Int2_System_Int32_ * __this, Int2 key, int32_t * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB81C8, Dictionary_2_Pathfinding_Int2_System_Int32__TryGetValue__MethodInfo); DO_APP_FUNC(0x01334400, bool, Dictionary_2_Pathfinding_Int2_System_Int32__TryInsert, (Dictionary_2_Pathfinding_Int2_System_Int32_ * __this, Int2 key, int32_t value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_Pathfinding_Int2_System_Int32__get_Count, (Dictionary_2_Pathfinding_Int2_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013335F0, int32_t, Dictionary_2_Pathfinding_Int2_System_Int32__get_Item, (Dictionary_2_Pathfinding_Int2_System_Int32_ * __this, Int2 key, MethodInfo * method)); DO_APP_FUNC(0x0131C780, Dictionary_2_TKey_TValue_KeyCollection_Pathfinding_Int2_System_Int32_ *, Dictionary_2_Pathfinding_Int2_System_Int32__get_Keys, (Dictionary_2_Pathfinding_Int2_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131C860, Dictionary_2_TKey_TValue_ValueCollection_Pathfinding_Int2_System_Int32_ *, Dictionary_2_Pathfinding_Int2_System_Int32__get_Values, (Dictionary_2_Pathfinding_Int2_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01321EE0, void, Dictionary_2_Pathfinding_Int2_System_Int32__set_Item, (Dictionary_2_Pathfinding_Int2_System_Int32_ * __this, Int2 key, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA5C0, Dictionary_2_Pathfinding_Int2_System_Int32__set_Item__MethodInfo); DO_APP_FUNC(0x011C1C90, void, Dictionary_2_Pathfinding_Int3_System_Int32___ctor, (Dictionary_2_Pathfinding_Int3_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5A00, Dictionary_2_Pathfinding_Int3_System_Int32___ctor__MethodInfo); DO_APP_FUNC(0x0131C2E0, void, Dictionary_2_Pathfinding_Int3_System_Int32___ctor_1, (Dictionary_2_Pathfinding_Int3_System_Int32_ * __this, IDictionary_2_Pathfinding_Int3_System_Int32_ * dictionary, MethodInfo * method)); DO_APP_FUNC(0x010786D0, void, Dictionary_2_Pathfinding_Int3_System_Int32___ctor_2, (Dictionary_2_Pathfinding_Int3_System_Int32_ * __this, IEqualityComparer_1_Pathfinding_Int3_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010B5EC0, void, Dictionary_2_Pathfinding_Int3_System_Int32___ctor_3, (Dictionary_2_Pathfinding_Int3_System_Int32_ * __this, int32_t capacity, MethodInfo * method)); @@ -131536,8 +145479,11 @@ DO_APP_FUNC(0x01335F70, void, Dictionary_2_Pathfinding_Int3_System_Int32___ctor_ DO_APP_FUNC(0x0131C210, void, Dictionary_2_Pathfinding_Int3_System_Int32___ctor_5, (Dictionary_2_Pathfinding_Int3_System_Int32_ * __this, int32_t capacity, IEqualityComparer_1_Pathfinding_Int3_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01336350, void, Dictionary_2_Pathfinding_Int3_System_Int32___ctor_6, (Dictionary_2_Pathfinding_Int3_System_Int32_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x013364E0, void, Dictionary_2_Pathfinding_Int3_System_Int32__Add, (Dictionary_2_Pathfinding_Int3_System_Int32_ * __this, Int3 key, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5A60, Dictionary_2_Pathfinding_Int3_System_Int32__Add__MethodInfo); DO_APP_FUNC(0x0131CC90, void, Dictionary_2_Pathfinding_Int3_System_Int32__Clear, (Dictionary_2_Pathfinding_Int3_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5A78, Dictionary_2_Pathfinding_Int3_System_Int32__Clear__MethodInfo); DO_APP_FUNC(0x01336760, bool, Dictionary_2_Pathfinding_Int3_System_Int32__ContainsKey, (Dictionary_2_Pathfinding_Int3_System_Int32_ * __this, Int3 key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC248, Dictionary_2_Pathfinding_Int3_System_Int32__ContainsKey__MethodInfo); DO_APP_FUNC(0x013367B0, bool, Dictionary_2_Pathfinding_Int3_System_Int32__ContainsValue, (Dictionary_2_Pathfinding_Int3_System_Int32_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x013368A0, void, Dictionary_2_Pathfinding_Int3_System_Int32__CopyTo, (Dictionary_2_Pathfinding_Int3_System_Int32_ * __this, KeyValuePair_2_Pathfinding_Int3_System_Int32___Array * array, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01336D80, int32_t, Dictionary_2_Pathfinding_Int3_System_Int32__FindEntry, (Dictionary_2_Pathfinding_Int3_System_Int32_ * __this, Int3 key, MethodInfo * method)); @@ -131574,10 +145520,12 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_Pathfinding_Int3_System_Int3 DO_APP_FUNC(0x013389B0, void, Dictionary_2_Pathfinding_Int3_System_Int32__System_Collections_IDictionary_set_Item, (Dictionary_2_Pathfinding_Int3_System_Int32_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x013224A0, IEnumerator *, Dictionary_2_Pathfinding_Int3_System_Int32__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_Pathfinding_Int3_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01338310, bool, Dictionary_2_Pathfinding_Int3_System_Int32__TryAdd, (Dictionary_2_Pathfinding_Int3_System_Int32_ * __this, Int3 key, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x01338280, bool, Dictionary_2_Pathfinding_Int3_System_Int32__TryGetValue, (Dictionary_2_Pathfinding_Int3_System_Int32_ * __this, Int3 key, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x01338280, bool, Dictionary_2_Pathfinding_Int3_System_Int32__TryGetValue, (Dictionary_2_Pathfinding_Int3_System_Int32_ * __this, Int3 key, int32_t * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5A70, Dictionary_2_Pathfinding_Int3_System_Int32__TryGetValue__MethodInfo); DO_APP_FUNC(0x01337230, bool, Dictionary_2_Pathfinding_Int3_System_Int32__TryInsert, (Dictionary_2_Pathfinding_Int3_System_Int32_ * __this, Int3 key, int32_t value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_Pathfinding_Int3_System_Int32__get_Count, (Dictionary_2_Pathfinding_Int3_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013363E0, int32_t, Dictionary_2_Pathfinding_Int3_System_Int32__get_Item, (Dictionary_2_Pathfinding_Int3_System_Int32_ * __this, Int3 key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC240, Dictionary_2_Pathfinding_Int3_System_Int32__get_Item__MethodInfo); DO_APP_FUNC(0x0131C780, Dictionary_2_TKey_TValue_KeyCollection_Pathfinding_Int3_System_Int32_ *, Dictionary_2_Pathfinding_Int3_System_Int32__get_Keys, (Dictionary_2_Pathfinding_Int3_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131C860, Dictionary_2_TKey_TValue_ValueCollection_Pathfinding_Int3_System_Int32_ *, Dictionary_2_Pathfinding_Int3_System_Int32__get_Values, (Dictionary_2_Pathfinding_Int3_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013364A0, void, Dictionary_2_Pathfinding_Int3_System_Int32__set_Item, (Dictionary_2_Pathfinding_Int3_System_Int32_ * __this, Int3 key, int32_t value, MethodInfo * method)); @@ -131627,7 +145575,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_Int32_UnityEngine_UIE DO_APP_FUNC(0x0133B500, void, Dictionary_2_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__System_Collections_IDictionary_set_Item, (Dictionary_2_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01333B30, IEnumerator *, Dictionary_2_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01323C60, bool, Dictionary_2_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__TryAdd, (Dictionary_2_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ * __this, int32_t key, DynamicHeightVirtualizationController_1_T_ContentHeightCacheInfo_System_Object_ value, MethodInfo * method)); -DO_APP_FUNC(0x0133AE60, bool, Dictionary_2_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__TryGetValue, (Dictionary_2_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ * __this, int32_t key, DynamicHeightVirtualizationController_1_T_ContentHeightCacheInfo_System_Object_ value, MethodInfo * method)); +DO_APP_FUNC(0x0133AE60, bool, Dictionary_2_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__TryGetValue, (Dictionary_2_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ * __this, int32_t key, DynamicHeightVirtualizationController_1_T_ContentHeightCacheInfo_System_Object_ * value, MethodInfo * method)); DO_APP_FUNC(0x0133A080, bool, Dictionary_2_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__TryInsert, (Dictionary_2_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ * __this, int32_t key, DynamicHeightVirtualizationController_1_T_ContentHeightCacheInfo_System_Object_ value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__get_Count, (Dictionary_2_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01339430, DynamicHeightVirtualizationController_1_T_ContentHeightCacheInfo_System_Object_, Dictionary_2_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__get_Item, (Dictionary_2_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ * __this, int32_t key, MethodInfo * method)); @@ -131683,7 +145631,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_Int32_System_ValueTup DO_APP_FUNC(0x0133E4D0, void, Dictionary_2_System_Int32_System_ValueTuple_2__System_Collections_IDictionary_set_Item, (Dictionary_2_System_Int32_System_ValueTuple_2_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x0133C670, IEnumerator *, Dictionary_2_System_Int32_System_ValueTuple_2__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_Int32_System_ValueTuple_2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0133DDD0, bool, Dictionary_2_System_Int32_System_ValueTuple_2__TryAdd, (Dictionary_2_System_Int32_System_ValueTuple_2_ * __this, int32_t key, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int_ value, MethodInfo * method)); -DO_APP_FUNC(0x0133DD40, bool, Dictionary_2_System_Int32_System_ValueTuple_2__TryGetValue, (Dictionary_2_System_Int32_System_ValueTuple_2_ * __this, int32_t key, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int_ value, MethodInfo * method)); +DO_APP_FUNC(0x0133DD40, bool, Dictionary_2_System_Int32_System_ValueTuple_2__TryGetValue, (Dictionary_2_System_Int32_System_ValueTuple_2_ * __this, int32_t key, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int_ * value, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C97988, Dictionary_2_System_Int32_System_ValueTuple_2__TryGetValue__MethodInfo); DO_APP_FUNC(0x0133CF20, bool, Dictionary_2_System_Int32_System_ValueTuple_2__TryInsert, (Dictionary_2_System_Int32_System_ValueTuple_2_ * __this, int32_t key, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int_ value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_Int32_System_ValueTuple_2__get_Count, (Dictionary_2_System_Int32_System_ValueTuple_2_ * __this, MethodInfo * method)); @@ -131743,7 +145691,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_Int32_System_Boolean_ DO_APP_FUNC(0x01340EB0, void, Dictionary_2_System_Int32_System_Boolean__System_Collections_IDictionary_set_Item, (Dictionary_2_System_Int32_System_Boolean_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01325270, IEnumerator *, Dictionary_2_System_Int32_System_Boolean__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_Int32_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01323C60, bool, Dictionary_2_System_Int32_System_Boolean__TryAdd, (Dictionary_2_System_Int32_System_Boolean_ * __this, int32_t key, bool value, MethodInfo * method)); -DO_APP_FUNC(0x01340800, bool, Dictionary_2_System_Int32_System_Boolean__TryGetValue, (Dictionary_2_System_Int32_System_Boolean_ * __this, int32_t key, bool value, MethodInfo * method)); +DO_APP_FUNC(0x01340800, bool, Dictionary_2_System_Int32_System_Boolean__TryGetValue, (Dictionary_2_System_Int32_System_Boolean_ * __this, int32_t key, bool * value, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8E080, Dictionary_2_System_Int32_System_Boolean__TryGetValue__MethodInfo); DO_APP_FUNC(0x0133FA40, bool, Dictionary_2_System_Int32_System_Boolean__TryInsert, (Dictionary_2_System_Int32_System_Boolean_ * __this, int32_t key, bool value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_Int32_System_Boolean__get_Count, (Dictionary_2_System_Int32_System_Boolean_ * __this, MethodInfo * method)); @@ -131798,7 +145746,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_Int32_System_ByteEnum DO_APP_FUNC(0x01340EB0, void, Dictionary_2_System_Int32_System_ByteEnum__System_Collections_IDictionary_set_Item, (Dictionary_2_System_Int32_System_ByteEnum_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01325270, IEnumerator *, Dictionary_2_System_Int32_System_ByteEnum__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_Int32_System_ByteEnum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01323C60, bool, Dictionary_2_System_Int32_System_ByteEnum__TryAdd, (Dictionary_2_System_Int32_System_ByteEnum_ * __this, int32_t key, ByteEnum__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x01340800, bool, Dictionary_2_System_Int32_System_ByteEnum__TryGetValue, (Dictionary_2_System_Int32_System_ByteEnum_ * __this, int32_t key, ByteEnum__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x01340800, bool, Dictionary_2_System_Int32_System_ByteEnum__TryGetValue, (Dictionary_2_System_Int32_System_ByteEnum_ * __this, int32_t key, ByteEnum__Enum * value, MethodInfo * method)); DO_APP_FUNC(0x0133FA40, bool, Dictionary_2_System_Int32_System_ByteEnum__TryInsert, (Dictionary_2_System_Int32_System_ByteEnum_ * __this, int32_t key, ByteEnum__Enum value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_Int32_System_ByteEnum__get_Count, (Dictionary_2_System_Int32_System_ByteEnum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0133EE10, ByteEnum__Enum, Dictionary_2_System_Int32_System_ByteEnum__get_Item, (Dictionary_2_System_Int32_System_ByteEnum_ * __this, int32_t key, MethodInfo * method)); @@ -131854,7 +145802,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_Int32_System_Char__Sy DO_APP_FUNC(0x013449D0, void, Dictionary_2_System_Int32_System_Char__System_Collections_IDictionary_set_Item, (Dictionary_2_System_Int32_System_Char_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01325270, IEnumerator *, Dictionary_2_System_Int32_System_Char__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_Int32_System_Char_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01323C60, bool, Dictionary_2_System_Int32_System_Char__TryAdd, (Dictionary_2_System_Int32_System_Char_ * __this, int32_t key, uint16_t value, MethodInfo * method)); -DO_APP_FUNC(0x01344310, bool, Dictionary_2_System_Int32_System_Char__TryGetValue, (Dictionary_2_System_Int32_System_Char_ * __this, int32_t key, uint16_t value, MethodInfo * method)); +DO_APP_FUNC(0x01344310, bool, Dictionary_2_System_Int32_System_Char__TryGetValue, (Dictionary_2_System_Int32_System_Char_ * __this, int32_t key, uint16_t * value, MethodInfo * method)); DO_APP_FUNC(0x01343760, bool, Dictionary_2_System_Int32_System_Char__TryInsert, (Dictionary_2_System_Int32_System_Char_ * __this, int32_t key, uint16_t value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_Int32_System_Char__get_Count, (Dictionary_2_System_Int32_System_Char_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01342DA0, uint16_t, Dictionary_2_System_Int32_System_Char__get_Item, (Dictionary_2_System_Int32_System_Char_ * __this, int32_t key, MethodInfo * method)); @@ -131911,7 +145859,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_Int32_UnityEngine_Res DO_APP_FUNC(0x01347A10, void, Dictionary_2_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__System_Collections_IDictionary_set_Item, (Dictionary_2_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01345A70, IEnumerator *, Dictionary_2_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013472E0, bool, Dictionary_2_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__TryAdd, (Dictionary_2_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, int32_t key, DiagnosticEvent value, MethodInfo * method)); -DO_APP_FUNC(0x01347210, bool, Dictionary_2_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__TryGetValue, (Dictionary_2_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, int32_t key, DiagnosticEvent value, MethodInfo * method)); +DO_APP_FUNC(0x01347210, bool, Dictionary_2_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__TryGetValue, (Dictionary_2_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, int32_t key, DiagnosticEvent * value, MethodInfo * method)); DO_APP_FUNC(0x01346350, bool, Dictionary_2_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__TryInsert, (Dictionary_2_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, int32_t key, DiagnosticEvent value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__get_Count, (Dictionary_2_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01345290, DiagnosticEvent, Dictionary_2_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__get_Item, (Dictionary_2_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, int32_t key, MethodInfo * method)); @@ -131969,7 +145917,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_Int32_System_Int16__S DO_APP_FUNC(0x013449D0, void, Dictionary_2_System_Int32_System_Int16__System_Collections_IDictionary_set_Item, (Dictionary_2_System_Int32_System_Int16_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01325270, IEnumerator *, Dictionary_2_System_Int32_System_Int16__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_Int32_System_Int16_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01323C60, bool, Dictionary_2_System_Int32_System_Int16__TryAdd, (Dictionary_2_System_Int32_System_Int16_ * __this, int32_t key, int16_t value, MethodInfo * method)); -DO_APP_FUNC(0x01344310, bool, Dictionary_2_System_Int32_System_Int16__TryGetValue, (Dictionary_2_System_Int32_System_Int16_ * __this, int32_t key, int16_t value, MethodInfo * method)); +DO_APP_FUNC(0x01344310, bool, Dictionary_2_System_Int32_System_Int16__TryGetValue, (Dictionary_2_System_Int32_System_Int16_ * __this, int32_t key, int16_t * value, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C97940, Dictionary_2_System_Int32_System_Int16__TryGetValue__MethodInfo); DO_APP_FUNC(0x01343760, bool, Dictionary_2_System_Int32_System_Int16__TryInsert, (Dictionary_2_System_Int32_System_Int16_ * __this, int32_t key, int16_t value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_Int32_System_Int16__get_Count, (Dictionary_2_System_Int32_System_Int16_ * __this, MethodInfo * method)); @@ -131978,6 +145926,7 @@ DO_APP_FUNC(0x0131C780, Dictionary_2_TKey_TValue_KeyCollection_System_Int32_Syst DO_APP_FUNC(0x0131C860, Dictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Int16_ *, Dictionary_2_System_Int32_System_Int16__get_Values, (Dictionary_2_System_Int32_System_Int16_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01321EE0, void, Dictionary_2_System_Int32_System_Int16__set_Item, (Dictionary_2_System_Int32_System_Int16_ * __this, int32_t key, int16_t value, MethodInfo * method)); DO_APP_FUNC(0x011C1C90, void, Dictionary_2_System_Int32_Pathfinding_Int3___ctor, (Dictionary_2_System_Int32_Pathfinding_Int3_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB71E0, Dictionary_2_System_Int32_Pathfinding_Int3___ctor__MethodInfo); DO_APP_FUNC(0x0131C2E0, void, Dictionary_2_System_Int32_Pathfinding_Int3___ctor_1, (Dictionary_2_System_Int32_Pathfinding_Int3_ * __this, IDictionary_2_System_Int32_Pathfinding_Int3_ * dictionary, MethodInfo * method)); DO_APP_FUNC(0x010786D0, void, Dictionary_2_System_Int32_Pathfinding_Int3___ctor_2, (Dictionary_2_System_Int32_Pathfinding_Int3_ * __this, IEqualityComparer_1_System_Int32_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010B5EC0, void, Dictionary_2_System_Int32_Pathfinding_Int3___ctor_3, (Dictionary_2_System_Int32_Pathfinding_Int3_ * __this, int32_t capacity, MethodInfo * method)); @@ -132023,32 +145972,41 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_Int32_Pathfinding_Int DO_APP_FUNC(0x0134BCC0, void, Dictionary_2_System_Int32_Pathfinding_Int3__System_Collections_IDictionary_set_Item, (Dictionary_2_System_Int32_Pathfinding_Int3_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x013224A0, IEnumerator *, Dictionary_2_System_Int32_Pathfinding_Int3__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_Int32_Pathfinding_Int3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0134B610, bool, Dictionary_2_System_Int32_Pathfinding_Int3__TryAdd, (Dictionary_2_System_Int32_Pathfinding_Int3_ * __this, int32_t key, Int3 value, MethodInfo * method)); -DO_APP_FUNC(0x0134B590, bool, Dictionary_2_System_Int32_Pathfinding_Int3__TryGetValue, (Dictionary_2_System_Int32_Pathfinding_Int3_ * __this, int32_t key, Int3 value, MethodInfo * method)); +DO_APP_FUNC(0x0134B590, bool, Dictionary_2_System_Int32_Pathfinding_Int3__TryGetValue, (Dictionary_2_System_Int32_Pathfinding_Int3_ * __this, int32_t key, Int3 * value, MethodInfo * method)); DO_APP_FUNC(0x0134A790, bool, Dictionary_2_System_Int32_Pathfinding_Int3__TryInsert, (Dictionary_2_System_Int32_Pathfinding_Int3_ * __this, int32_t key, Int3 value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_Int32_Pathfinding_Int3__get_Count, (Dictionary_2_System_Int32_Pathfinding_Int3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013499D0, Int3, Dictionary_2_System_Int32_Pathfinding_Int3__get_Item, (Dictionary_2_System_Int32_Pathfinding_Int3_ * __this, int32_t key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7150, Dictionary_2_System_Int32_Pathfinding_Int3__get_Item__MethodInfo); DO_APP_FUNC(0x0131C780, Dictionary_2_TKey_TValue_KeyCollection_System_Int32_Pathfinding_Int3_ *, Dictionary_2_System_Int32_Pathfinding_Int3__get_Keys, (Dictionary_2_System_Int32_Pathfinding_Int3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131C860, Dictionary_2_TKey_TValue_ValueCollection_System_Int32_Pathfinding_Int3_ *, Dictionary_2_System_Int32_Pathfinding_Int3__get_Values, (Dictionary_2_System_Int32_Pathfinding_Int3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01349A90, void, Dictionary_2_System_Int32_Pathfinding_Int3__set_Item, (Dictionary_2_System_Int32_Pathfinding_Int3_ * __this, int32_t key, Int3 value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7160, Dictionary_2_System_Int32_Pathfinding_Int3__set_Item__MethodInfo); DO_APP_FUNC(0x011C1C90, void, Dictionary_2_System_Int32_System_Int32___ctor, (Dictionary_2_System_Int32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11A60, Dictionary_2_System_Int32_System_Int32___ctor__MethodInfo); DO_APP_FUNC(0x0131C2E0, void, Dictionary_2_System_Int32_System_Int32___ctor_1, (Dictionary_2_System_Int32_System_Int32_ * __this, IDictionary_2_System_Int32_System_Int32_ * dictionary, MethodInfo * method)); DO_APP_FUNC(0x010786D0, void, Dictionary_2_System_Int32_System_Int32___ctor_2, (Dictionary_2_System_Int32_System_Int32_ * __this, IEqualityComparer_1_System_Int32_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010B5EC0, void, Dictionary_2_System_Int32_System_Int32___ctor_3, (Dictionary_2_System_Int32_System_Int32_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C188, Dictionary_2_System_Int32_System_Int32___ctor_3__MethodInfo); DO_APP_FUNC(0x0134C0C0, void, Dictionary_2_System_Int32_System_Int32___ctor_4, (Dictionary_2_System_Int32_System_Int32_ * __this, IDictionary_2_System_Int32_System_Int32_ * dictionary, IEqualityComparer_1_System_Int32_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0131C210, void, Dictionary_2_System_Int32_System_Int32___ctor_5, (Dictionary_2_System_Int32_System_Int32_ * __this, int32_t capacity, IEqualityComparer_1_System_Int32_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0134C460, void, Dictionary_2_System_Int32_System_Int32___ctor_6, (Dictionary_2_System_Int32_System_Int32_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x01321F10, void, Dictionary_2_System_Int32_System_Int32__Add, (Dictionary_2_System_Int32_System_Int32_ * __this, int32_t key, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11C70, Dictionary_2_System_Int32_System_Int32__Add__MethodInfo); DO_APP_FUNC(0x0131CC90, void, Dictionary_2_System_Int32_System_Int32__Clear, (Dictionary_2_System_Int32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7FA8, Dictionary_2_System_Int32_System_Int32__Clear__MethodInfo); DO_APP_FUNC(0x01322140, bool, Dictionary_2_System_Int32_System_Int32__ContainsKey, (Dictionary_2_System_Int32_System_Int32_ * __this, int32_t key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11C08, Dictionary_2_System_Int32_System_Int32__ContainsKey__MethodInfo); DO_APP_FUNC(0x01324FE0, bool, Dictionary_2_System_Int32_System_Int32__ContainsValue, (Dictionary_2_System_Int32_System_Int32_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x0134C690, void, Dictionary_2_System_Int32_System_Int32__CopyTo, (Dictionary_2_System_Int32_System_Int32_ * __this, KeyValuePair_2_System_Int32_System_Int32___Array * array, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x0133F640, int32_t, Dictionary_2_System_Int32_System_Int32__FindEntry, (Dictionary_2_System_Int32_System_Int32_ * __this, int32_t key, MethodInfo * method)); DO_APP_FUNC(0x013251E0, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32_, Dictionary_2_System_Int32_System_Int32__GetEnumerator, (Dictionary_2_System_Int32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB910, Dictionary_2_System_Int32_System_Int32__GetEnumerator__MethodInfo); DO_APP_FUNC(0x0134C7A0, void, Dictionary_2_System_Int32_System_Int32__GetObjectData, (Dictionary_2_System_Int32_System_Int32_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x0134CB50, int32_t, Dictionary_2_System_Int32_System_Int32__Initialize, (Dictionary_2_System_Int32_System_Int32_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x0131F300, bool, Dictionary_2_System_Int32_System_Int32__IsCompatibleKey, (Object * key, MethodInfo * method)); DO_APP_FUNC(0x0134D0F0, void, Dictionary_2_System_Int32_System_Int32__OnDeserialization, (Dictionary_2_System_Int32_System_Int32_ * __this, Object * sender, MethodInfo * method)); DO_APP_FUNC(0x013405F0, bool, Dictionary_2_System_Int32_System_Int32__Remove, (Dictionary_2_System_Int32_System_Int32_ * __this, int32_t key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11B88, Dictionary_2_System_Int32_System_Int32__Remove__MethodInfo); DO_APP_FUNC(0x0134D550, void, Dictionary_2_System_Int32_System_Int32__Resize, (Dictionary_2_System_Int32_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0134D5E0, void, Dictionary_2_System_Int32_System_Int32__Resize_1, (Dictionary_2_System_Int32_System_Int32_ * __this, int32_t newSize, bool forceNewHashCodes, MethodInfo * method)); DO_APP_FUNC(0x01324DE0, void, Dictionary_2_System_Int32_System_Int32__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add, (Dictionary_2_System_Int32_System_Int32_ * __this, KeyValuePair_2_System_Int32_System_Int32_ keyValuePair, MethodInfo * method)); @@ -132076,13 +146034,18 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_Int32_System_Int32__S DO_APP_FUNC(0x0134DE90, void, Dictionary_2_System_Int32_System_Int32__System_Collections_IDictionary_set_Item, (Dictionary_2_System_Int32_System_Int32_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01325270, IEnumerator *, Dictionary_2_System_Int32_System_Int32__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_Int32_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01323C60, bool, Dictionary_2_System_Int32_System_Int32__TryAdd, (Dictionary_2_System_Int32_System_Int32_ * __this, int32_t key, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x013268E0, bool, Dictionary_2_System_Int32_System_Int32__TryGetValue, (Dictionary_2_System_Int32_System_Int32_ * __this, int32_t key, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x013268E0, bool, Dictionary_2_System_Int32_System_Int32__TryGetValue, (Dictionary_2_System_Int32_System_Int32_ * __this, int32_t key, int32_t * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11BE8, Dictionary_2_System_Int32_System_Int32__TryGetValue__MethodInfo); DO_APP_FUNC(0x0134CCD0, bool, Dictionary_2_System_Int32_System_Int32__TryInsert, (Dictionary_2_System_Int32_System_Int32_ * __this, int32_t key, int32_t value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_Int32_System_Int32__get_Count, (Dictionary_2_System_Int32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0E40, Dictionary_2_System_Int32_System_Int32__get_Count__MethodInfo); DO_APP_FUNC(0x0134C4F0, int32_t, Dictionary_2_System_Int32_System_Int32__get_Item, (Dictionary_2_System_Int32_System_Int32_ * __this, int32_t key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5A28, Dictionary_2_System_Int32_System_Int32__get_Item__MethodInfo); DO_APP_FUNC(0x0131C780, Dictionary_2_TKey_TValue_KeyCollection_System_Int32_System_Int32_ *, Dictionary_2_System_Int32_System_Int32__get_Keys, (Dictionary_2_System_Int32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5A20, Dictionary_2_System_Int32_System_Int32__get_Keys__MethodInfo); DO_APP_FUNC(0x0131C860, Dictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Int32_ *, Dictionary_2_System_Int32_System_Int32__get_Values, (Dictionary_2_System_Int32_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01321EE0, void, Dictionary_2_System_Int32_System_Int32__set_Item, (Dictionary_2_System_Int32_System_Int32_ * __this, int32_t key, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7168, Dictionary_2_System_Int32_System_Int32__set_Item__MethodInfo); DO_APP_FUNC(0x011C1C90, void, Dictionary_2_System_Int32_System_Int32Enum___ctor, (Dictionary_2_System_Int32_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131C2E0, void, Dictionary_2_System_Int32_System_Int32Enum___ctor_1, (Dictionary_2_System_Int32_System_Int32Enum_ * __this, IDictionary_2_System_Int32_System_Int32Enum_ * dictionary, MethodInfo * method)); DO_APP_FUNC(0x010786D0, void, Dictionary_2_System_Int32_System_Int32Enum___ctor_2, (Dictionary_2_System_Int32_System_Int32Enum_ * __this, IEqualityComparer_1_System_Int32_ * comparer, MethodInfo * method)); @@ -132129,7 +146092,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_Int32_System_Int32Enu DO_APP_FUNC(0x0134DE90, void, Dictionary_2_System_Int32_System_Int32Enum__System_Collections_IDictionary_set_Item, (Dictionary_2_System_Int32_System_Int32Enum_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01325270, IEnumerator *, Dictionary_2_System_Int32_System_Int32Enum__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_Int32_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01323C60, bool, Dictionary_2_System_Int32_System_Int32Enum__TryAdd, (Dictionary_2_System_Int32_System_Int32Enum_ * __this, int32_t key, Int32Enum__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x013268E0, bool, Dictionary_2_System_Int32_System_Int32Enum__TryGetValue, (Dictionary_2_System_Int32_System_Int32Enum_ * __this, int32_t key, Int32Enum__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x013268E0, bool, Dictionary_2_System_Int32_System_Int32Enum__TryGetValue, (Dictionary_2_System_Int32_System_Int32Enum_ * __this, int32_t key, Int32Enum__Enum * value, MethodInfo * method)); DO_APP_FUNC(0x0134CCD0, bool, Dictionary_2_System_Int32_System_Int32Enum__TryInsert, (Dictionary_2_System_Int32_System_Int32Enum_ * __this, int32_t key, Int32Enum__Enum value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_Int32_System_Int32Enum__get_Count, (Dictionary_2_System_Int32_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0134C4F0, Int32Enum__Enum, Dictionary_2_System_Int32_System_Int32Enum__get_Item, (Dictionary_2_System_Int32_System_Int32Enum_ * __this, int32_t key, MethodInfo * method)); @@ -132185,7 +146148,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_Int32_System_Int64__S DO_APP_FUNC(0x0133B500, void, Dictionary_2_System_Int32_System_Int64__System_Collections_IDictionary_set_Item, (Dictionary_2_System_Int32_System_Int64_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x013224A0, IEnumerator *, Dictionary_2_System_Int32_System_Int64__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_Int32_System_Int64_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01323C60, bool, Dictionary_2_System_Int32_System_Int64__TryAdd, (Dictionary_2_System_Int32_System_Int64_ * __this, int32_t key, int64_t value, MethodInfo * method)); -DO_APP_FUNC(0x01351220, bool, Dictionary_2_System_Int32_System_Int64__TryGetValue, (Dictionary_2_System_Int32_System_Int64_ * __this, int32_t key, int64_t value, MethodInfo * method)); +DO_APP_FUNC(0x01351220, bool, Dictionary_2_System_Int32_System_Int64__TryGetValue, (Dictionary_2_System_Int32_System_Int64_ * __this, int32_t key, int64_t * value, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7228, Dictionary_2_System_Int32_System_Int64__TryGetValue__MethodInfo); DO_APP_FUNC(0x01350660, bool, Dictionary_2_System_Int32_System_Int64__TryInsert, (Dictionary_2_System_Int32_System_Int64_ * __this, int32_t key, int64_t value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_Int32_System_Int64__get_Count, (Dictionary_2_System_Int32_System_Int64_ * __this, MethodInfo * method)); @@ -132194,6 +146157,7 @@ DO_APP_FUNC(0x0131C780, Dictionary_2_TKey_TValue_KeyCollection_System_Int32_Syst DO_APP_FUNC(0x0131C860, Dictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Int64_ *, Dictionary_2_System_Int32_System_Int64__get_Values, (Dictionary_2_System_Int32_System_Int64_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01321EE0, void, Dictionary_2_System_Int32_System_Int64__set_Item, (Dictionary_2_System_Int32_System_Int64_ * __this, int32_t key, int64_t value, MethodInfo * method)); DO_APP_FUNC(0x011C1C90, void, Dictionary_2_System_Int32_System_Object___ctor, (Dictionary_2_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13C78, Dictionary_2_System_Int32_System_Object___ctor__MethodInfo); DO_APP_FUNC(0x0131C2E0, void, Dictionary_2_System_Int32_System_Object___ctor_1, (Dictionary_2_System_Int32_System_Object_ * __this, IDictionary_2_System_Int32_System_Object_ * dictionary, MethodInfo * method)); DO_APP_FUNC(0x010786D0, void, Dictionary_2_System_Int32_System_Object___ctor_2, (Dictionary_2_System_Int32_System_Object_ * __this, IEqualityComparer_1_System_Int32_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010B5EC0, void, Dictionary_2_System_Int32_System_Object___ctor_3, (Dictionary_2_System_Int32_System_Object_ * __this, int32_t capacity, MethodInfo * method)); @@ -132239,14 +146203,17 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_Int32_System_Object__ DO_APP_FUNC(0x013537B0, void, Dictionary_2_System_Int32_System_Object__System_Collections_IDictionary_set_Item, (Dictionary_2_System_Int32_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x013224A0, IEnumerator *, Dictionary_2_System_Int32_System_Object__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01323C60, bool, Dictionary_2_System_Int32_System_Object__TryAdd, (Dictionary_2_System_Int32_System_Object_ * __this, int32_t key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x01323BB0, bool, Dictionary_2_System_Int32_System_Object__TryGetValue, (Dictionary_2_System_Int32_System_Object_ * __this, int32_t key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x01323BB0, bool, Dictionary_2_System_Int32_System_Object__TryGetValue, (Dictionary_2_System_Int32_System_Object_ * __this, int32_t key, Object * * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13C38, Dictionary_2_System_Int32_System_Object__TryGetValue__MethodInfo); DO_APP_FUNC(0x013523A0, bool, Dictionary_2_System_Int32_System_Object__TryInsert, (Dictionary_2_System_Int32_System_Object_ * __this, int32_t key, Object * value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_Int32_System_Object__get_Count, (Dictionary_2_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0134FC80, Object *, Dictionary_2_System_Int32_System_Object__get_Item, (Dictionary_2_System_Int32_System_Object_ * __this, int32_t key, MethodInfo * method)); DO_APP_FUNC(0x0131C780, Dictionary_2_TKey_TValue_KeyCollection_System_Int32_System_Object_ *, Dictionary_2_System_Int32_System_Object__get_Keys, (Dictionary_2_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131C860, Dictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object_ *, Dictionary_2_System_Int32_System_Object__get_Values, (Dictionary_2_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01321EE0, void, Dictionary_2_System_Int32_System_Object__set_Item, (Dictionary_2_System_Int32_System_Object_ * __this, int32_t key, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13C30, Dictionary_2_System_Int32_System_Object__set_Item__MethodInfo); DO_APP_FUNC(0x011C1C90, void, Dictionary_2_System_Int32_PlayerFlashlightBeam___ctor, (Dictionary_2_System_Int32_PlayerFlashlightBeam_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF60A8, Dictionary_2_System_Int32_PlayerFlashlightBeam___ctor__MethodInfo); DO_APP_FUNC(0x0131C2E0, void, Dictionary_2_System_Int32_PlayerFlashlightBeam___ctor_1, (Dictionary_2_System_Int32_PlayerFlashlightBeam_ * __this, IDictionary_2_System_Int32_PlayerFlashlightBeam_ * dictionary, MethodInfo * method)); DO_APP_FUNC(0x010786D0, void, Dictionary_2_System_Int32_PlayerFlashlightBeam___ctor_2, (Dictionary_2_System_Int32_PlayerFlashlightBeam_ * __this, IEqualityComparer_1_System_Int32_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010B5EC0, void, Dictionary_2_System_Int32_PlayerFlashlightBeam___ctor_3, (Dictionary_2_System_Int32_PlayerFlashlightBeam_ * __this, int32_t capacity, MethodInfo * method)); @@ -132254,8 +146221,10 @@ DO_APP_FUNC(0x01353B90, void, Dictionary_2_System_Int32_PlayerFlashlightBeam___c DO_APP_FUNC(0x0131C210, void, Dictionary_2_System_Int32_PlayerFlashlightBeam___ctor_5, (Dictionary_2_System_Int32_PlayerFlashlightBeam_ * __this, int32_t capacity, IEqualityComparer_1_System_Int32_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01353F80, void, Dictionary_2_System_Int32_PlayerFlashlightBeam___ctor_6, (Dictionary_2_System_Int32_PlayerFlashlightBeam_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x01354110, void, Dictionary_2_System_Int32_PlayerFlashlightBeam__Add, (Dictionary_2_System_Int32_PlayerFlashlightBeam_ * __this, int32_t key, PlayerFlashlightBeam value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6100, Dictionary_2_System_Int32_PlayerFlashlightBeam__Add__MethodInfo); DO_APP_FUNC(0x0131CC90, void, Dictionary_2_System_Int32_PlayerFlashlightBeam__Clear, (Dictionary_2_System_Int32_PlayerFlashlightBeam_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01322140, bool, Dictionary_2_System_Int32_PlayerFlashlightBeam__ContainsKey, (Dictionary_2_System_Int32_PlayerFlashlightBeam_ * __this, int32_t key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6108, Dictionary_2_System_Int32_PlayerFlashlightBeam__ContainsKey__MethodInfo); DO_APP_FUNC(0x01354380, bool, Dictionary_2_System_Int32_PlayerFlashlightBeam__ContainsValue, (Dictionary_2_System_Int32_PlayerFlashlightBeam_ * __this, PlayerFlashlightBeam value, MethodInfo * method)); DO_APP_FUNC(0x01354490, void, Dictionary_2_System_Int32_PlayerFlashlightBeam__CopyTo, (Dictionary_2_System_Int32_PlayerFlashlightBeam_ * __this, KeyValuePair_2_System_Int32_PlayerFlashlightBeam___Array * array, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x013549B0, int32_t, Dictionary_2_System_Int32_PlayerFlashlightBeam__FindEntry, (Dictionary_2_System_Int32_PlayerFlashlightBeam_ * __this, int32_t key, MethodInfo * method)); @@ -132292,14 +146261,17 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_Int32_PlayerFlashligh DO_APP_FUNC(0x01356360, void, Dictionary_2_System_Int32_PlayerFlashlightBeam__System_Collections_IDictionary_set_Item, (Dictionary_2_System_Int32_PlayerFlashlightBeam_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x0131D0B0, IEnumerator *, Dictionary_2_System_Int32_PlayerFlashlightBeam__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_Int32_PlayerFlashlightBeam_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01355CC0, bool, Dictionary_2_System_Int32_PlayerFlashlightBeam__TryAdd, (Dictionary_2_System_Int32_PlayerFlashlightBeam_ * __this, int32_t key, PlayerFlashlightBeam value, MethodInfo * method)); -DO_APP_FUNC(0x01355C00, bool, Dictionary_2_System_Int32_PlayerFlashlightBeam__TryGetValue, (Dictionary_2_System_Int32_PlayerFlashlightBeam_ * __this, int32_t key, PlayerFlashlightBeam value, MethodInfo * method)); +DO_APP_FUNC(0x01355C00, bool, Dictionary_2_System_Int32_PlayerFlashlightBeam__TryGetValue, (Dictionary_2_System_Int32_PlayerFlashlightBeam_ * __this, int32_t key, PlayerFlashlightBeam * value, MethodInfo * method)); DO_APP_FUNC(0x01354DB0, bool, Dictionary_2_System_Int32_PlayerFlashlightBeam__TryInsert, (Dictionary_2_System_Int32_PlayerFlashlightBeam_ * __this, int32_t key, PlayerFlashlightBeam value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_Int32_PlayerFlashlightBeam__get_Count, (Dictionary_2_System_Int32_PlayerFlashlightBeam_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01354010, PlayerFlashlightBeam, Dictionary_2_System_Int32_PlayerFlashlightBeam__get_Item, (Dictionary_2_System_Int32_PlayerFlashlightBeam_ * __this, int32_t key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF60E8, Dictionary_2_System_Int32_PlayerFlashlightBeam__get_Item__MethodInfo); DO_APP_FUNC(0x0131C780, Dictionary_2_TKey_TValue_KeyCollection_System_Int32_PlayerFlashlightBeam_ *, Dictionary_2_System_Int32_PlayerFlashlightBeam__get_Keys, (Dictionary_2_System_Int32_PlayerFlashlightBeam_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131C860, Dictionary_2_TKey_TValue_ValueCollection_System_Int32_PlayerFlashlightBeam_ *, Dictionary_2_System_Int32_PlayerFlashlightBeam__get_Values, (Dictionary_2_System_Int32_PlayerFlashlightBeam_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013540D0, void, Dictionary_2_System_Int32_PlayerFlashlightBeam__set_Item, (Dictionary_2_System_Int32_PlayerFlashlightBeam_ * __this, int32_t key, PlayerFlashlightBeam value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF60F8, Dictionary_2_System_Int32_PlayerFlashlightBeam__set_Item__MethodInfo); DO_APP_FUNC(0x011C1C90, void, Dictionary_2_System_Int32_UnityEngine_RenderInstancedDataLayout___ctor, (Dictionary_2_System_Int32_UnityEngine_RenderInstancedDataLayout_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D040A0, Dictionary_2_System_Int32_UnityEngine_RenderInstancedDataLayout___ctor__MethodInfo); DO_APP_FUNC(0x0131C2E0, void, Dictionary_2_System_Int32_UnityEngine_RenderInstancedDataLayout___ctor_1, (Dictionary_2_System_Int32_UnityEngine_RenderInstancedDataLayout_ * __this, IDictionary_2_System_Int32_UnityEngine_RenderInstancedDataLayout_ * dictionary, MethodInfo * method)); DO_APP_FUNC(0x010786D0, void, Dictionary_2_System_Int32_UnityEngine_RenderInstancedDataLayout___ctor_2, (Dictionary_2_System_Int32_UnityEngine_RenderInstancedDataLayout_ * __this, IEqualityComparer_1_System_Int32_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010B5EC0, void, Dictionary_2_System_Int32_UnityEngine_RenderInstancedDataLayout___ctor_3, (Dictionary_2_System_Int32_UnityEngine_RenderInstancedDataLayout_ * __this, int32_t capacity, MethodInfo * method)); @@ -132345,7 +146317,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_Int32_UnityEngine_Ren DO_APP_FUNC(0x01356360, void, Dictionary_2_System_Int32_UnityEngine_RenderInstancedDataLayout__System_Collections_IDictionary_set_Item, (Dictionary_2_System_Int32_UnityEngine_RenderInstancedDataLayout_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x0132EB60, IEnumerator *, Dictionary_2_System_Int32_UnityEngine_RenderInstancedDataLayout__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_Int32_UnityEngine_RenderInstancedDataLayout_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01355CC0, bool, Dictionary_2_System_Int32_UnityEngine_RenderInstancedDataLayout__TryAdd, (Dictionary_2_System_Int32_UnityEngine_RenderInstancedDataLayout_ * __this, int32_t key, RenderInstancedDataLayout value, MethodInfo * method)); -DO_APP_FUNC(0x01358680, bool, Dictionary_2_System_Int32_UnityEngine_RenderInstancedDataLayout__TryGetValue, (Dictionary_2_System_Int32_UnityEngine_RenderInstancedDataLayout_ * __this, int32_t key, RenderInstancedDataLayout value, MethodInfo * method)); +DO_APP_FUNC(0x01358680, bool, Dictionary_2_System_Int32_UnityEngine_RenderInstancedDataLayout__TryGetValue, (Dictionary_2_System_Int32_UnityEngine_RenderInstancedDataLayout_ * __this, int32_t key, RenderInstancedDataLayout * value, MethodInfo * method)); DO_APP_FUNC(0x013578A0, bool, Dictionary_2_System_Int32_UnityEngine_RenderInstancedDataLayout__TryInsert, (Dictionary_2_System_Int32_UnityEngine_RenderInstancedDataLayout_ * __this, int32_t key, RenderInstancedDataLayout value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_Int32_UnityEngine_RenderInstancedDataLayout__get_Count, (Dictionary_2_System_Int32_UnityEngine_RenderInstancedDataLayout_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01356BC0, RenderInstancedDataLayout, Dictionary_2_System_Int32_UnityEngine_RenderInstancedDataLayout__get_Item, (Dictionary_2_System_Int32_UnityEngine_RenderInstancedDataLayout_ * __this, int32_t key, MethodInfo * method)); @@ -132356,6 +146328,7 @@ DO_APP_FUNC(0x011C1C90, void, Dictionary_2_System_Int32_System_Single___ctor, (D DO_APP_FUNC(0x0131C2E0, void, Dictionary_2_System_Int32_System_Single___ctor_1, (Dictionary_2_System_Int32_System_Single_ * __this, IDictionary_2_System_Int32_System_Single_ * dictionary, MethodInfo * method)); DO_APP_FUNC(0x010786D0, void, Dictionary_2_System_Int32_System_Single___ctor_2, (Dictionary_2_System_Int32_System_Single_ * __this, IEqualityComparer_1_System_Int32_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010B5EC0, void, Dictionary_2_System_Int32_System_Single___ctor_3, (Dictionary_2_System_Int32_System_Single_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0500, Dictionary_2_System_Int32_System_Single___ctor_3__MethodInfo); DO_APP_FUNC(0x01358D40, void, Dictionary_2_System_Int32_System_Single___ctor_4, (Dictionary_2_System_Int32_System_Single_ * __this, IDictionary_2_System_Int32_System_Single_ * dictionary, IEqualityComparer_1_System_Int32_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0131C210, void, Dictionary_2_System_Int32_System_Single___ctor_5, (Dictionary_2_System_Int32_System_Single_ * __this, int32_t capacity, IEqualityComparer_1_System_Int32_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x013590D0, void, Dictionary_2_System_Int32_System_Single___ctor_6, (Dictionary_2_System_Int32_System_Single_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); @@ -132366,11 +146339,13 @@ DO_APP_FUNC(0x01359470, bool, Dictionary_2_System_Int32_System_Single__ContainsV DO_APP_FUNC(0x01359560, void, Dictionary_2_System_Int32_System_Single__CopyTo, (Dictionary_2_System_Int32_System_Single_ * __this, KeyValuePair_2_System_Int32_System_Single___Array * array, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x0133F640, int32_t, Dictionary_2_System_Int32_System_Single__FindEntry, (Dictionary_2_System_Int32_System_Single_ * __this, int32_t key, MethodInfo * method)); DO_APP_FUNC(0x013251E0, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Single_, Dictionary_2_System_Int32_System_Single__GetEnumerator, (Dictionary_2_System_Int32_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0358, Dictionary_2_System_Int32_System_Single__GetEnumerator__MethodInfo); DO_APP_FUNC(0x01359670, void, Dictionary_2_System_Int32_System_Single__GetObjectData, (Dictionary_2_System_Int32_System_Single_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x01359A20, int32_t, Dictionary_2_System_Int32_System_Single__Initialize, (Dictionary_2_System_Int32_System_Single_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x0131F300, bool, Dictionary_2_System_Int32_System_Single__IsCompatibleKey, (Object * key, MethodInfo * method)); DO_APP_FUNC(0x01359FC0, void, Dictionary_2_System_Int32_System_Single__OnDeserialization, (Dictionary_2_System_Int32_System_Single_ * __this, Object * sender, MethodInfo * method)); DO_APP_FUNC(0x013405F0, bool, Dictionary_2_System_Int32_System_Single__Remove, (Dictionary_2_System_Int32_System_Single_ * __this, int32_t key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB02F8, Dictionary_2_System_Int32_System_Single__Remove__MethodInfo); DO_APP_FUNC(0x0135A420, void, Dictionary_2_System_Int32_System_Single__Resize, (Dictionary_2_System_Int32_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0135A4B0, void, Dictionary_2_System_Int32_System_Single__Resize_1, (Dictionary_2_System_Int32_System_Single_ * __this, int32_t newSize, bool forceNewHashCodes, MethodInfo * method)); DO_APP_FUNC(0x01359260, void, Dictionary_2_System_Int32_System_Single__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add, (Dictionary_2_System_Int32_System_Single_ * __this, KeyValuePair_2_System_Int32_System_Single_ keyValuePair, MethodInfo * method)); @@ -132398,13 +146373,17 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_Int32_System_Single__ DO_APP_FUNC(0x0135ADC0, void, Dictionary_2_System_Int32_System_Single__System_Collections_IDictionary_set_Item, (Dictionary_2_System_Int32_System_Single_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01325270, IEnumerator *, Dictionary_2_System_Int32_System_Single__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_Int32_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0135A750, bool, Dictionary_2_System_Int32_System_Single__TryAdd, (Dictionary_2_System_Int32_System_Single_ * __this, int32_t key, float value, MethodInfo * method)); -DO_APP_FUNC(0x013268E0, bool, Dictionary_2_System_Int32_System_Single__TryGetValue, (Dictionary_2_System_Int32_System_Single_ * __this, int32_t key, float value, MethodInfo * method)); +DO_APP_FUNC(0x013268E0, bool, Dictionary_2_System_Int32_System_Single__TryGetValue, (Dictionary_2_System_Int32_System_Single_ * __this, int32_t key, float * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB03D8, Dictionary_2_System_Int32_System_Single__TryGetValue__MethodInfo); DO_APP_FUNC(0x01359BA0, bool, Dictionary_2_System_Int32_System_Single__TryInsert, (Dictionary_2_System_Int32_System_Single_ * __this, int32_t key, float value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_Int32_System_Single__get_Count, (Dictionary_2_System_Int32_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB03F8, Dictionary_2_System_Int32_System_Single__get_Count__MethodInfo); DO_APP_FUNC(0x01359160, float, Dictionary_2_System_Int32_System_Single__get_Item, (Dictionary_2_System_Int32_System_Single_ * __this, int32_t key, MethodInfo * method)); DO_APP_FUNC(0x0131C780, Dictionary_2_TKey_TValue_KeyCollection_System_Int32_System_Single_ *, Dictionary_2_System_Int32_System_Single__get_Keys, (Dictionary_2_System_Int32_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0298, Dictionary_2_System_Int32_System_Single__get_Keys__MethodInfo); DO_APP_FUNC(0x0131C860, Dictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Single_ *, Dictionary_2_System_Int32_System_Single__get_Values, (Dictionary_2_System_Int32_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01359200, void, Dictionary_2_System_Int32_System_Single__set_Item, (Dictionary_2_System_Int32_System_Single_ * __this, int32_t key, float value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0370, Dictionary_2_System_Int32_System_Single__set_Item__MethodInfo); DO_APP_FUNC(0x011C1C90, void, Dictionary_2_System_Int32_UnityEngine_UIElements_TreeItem___ctor, (Dictionary_2_System_Int32_UnityEngine_UIElements_TreeItem_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131C2E0, void, Dictionary_2_System_Int32_UnityEngine_UIElements_TreeItem___ctor_1, (Dictionary_2_System_Int32_UnityEngine_UIElements_TreeItem_ * __this, IDictionary_2_System_Int32_UnityEngine_UIElements_TreeItem_ * dictionary, MethodInfo * method)); DO_APP_FUNC(0x010786D0, void, Dictionary_2_System_Int32_UnityEngine_UIElements_TreeItem___ctor_2, (Dictionary_2_System_Int32_UnityEngine_UIElements_TreeItem_ * __this, IEqualityComparer_1_System_Int32_ * comparer, MethodInfo * method)); @@ -132413,7 +146392,9 @@ DO_APP_FUNC(0x0135B1A0, void, Dictionary_2_System_Int32_UnityEngine_UIElements_T DO_APP_FUNC(0x0131C210, void, Dictionary_2_System_Int32_UnityEngine_UIElements_TreeItem___ctor_5, (Dictionary_2_System_Int32_UnityEngine_UIElements_TreeItem_ * __this, int32_t capacity, IEqualityComparer_1_System_Int32_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0135B590, void, Dictionary_2_System_Int32_UnityEngine_UIElements_TreeItem___ctor_6, (Dictionary_2_System_Int32_UnityEngine_UIElements_TreeItem_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x01354110, void, Dictionary_2_System_Int32_UnityEngine_UIElements_TreeItem__Add, (Dictionary_2_System_Int32_UnityEngine_UIElements_TreeItem_ * __this, int32_t key, TreeItem value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDF88, Dictionary_2_System_Int32_UnityEngine_UIElements_TreeItem__Add__MethodInfo); DO_APP_FUNC(0x0131CC90, void, Dictionary_2_System_Int32_UnityEngine_UIElements_TreeItem__Clear, (Dictionary_2_System_Int32_UnityEngine_UIElements_TreeItem_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDF90, Dictionary_2_System_Int32_UnityEngine_UIElements_TreeItem__Clear__MethodInfo); DO_APP_FUNC(0x01322140, bool, Dictionary_2_System_Int32_UnityEngine_UIElements_TreeItem__ContainsKey, (Dictionary_2_System_Int32_UnityEngine_UIElements_TreeItem_ * __this, int32_t key, MethodInfo * method)); DO_APP_FUNC(0x01354380, bool, Dictionary_2_System_Int32_UnityEngine_UIElements_TreeItem__ContainsValue, (Dictionary_2_System_Int32_UnityEngine_UIElements_TreeItem_ * __this, TreeItem value, MethodInfo * method)); DO_APP_FUNC(0x01354490, void, Dictionary_2_System_Int32_UnityEngine_UIElements_TreeItem__CopyTo, (Dictionary_2_System_Int32_UnityEngine_UIElements_TreeItem_ * __this, KeyValuePair_2_System_Int32_UnityEngine_UIElements_TreeItem___Array * array, int32_t index, MethodInfo * method)); @@ -132451,7 +146432,8 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_Int32_UnityEngine_UIE DO_APP_FUNC(0x01356360, void, Dictionary_2_System_Int32_UnityEngine_UIElements_TreeItem__System_Collections_IDictionary_set_Item, (Dictionary_2_System_Int32_UnityEngine_UIElements_TreeItem_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x0131D0B0, IEnumerator *, Dictionary_2_System_Int32_UnityEngine_UIElements_TreeItem__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_Int32_UnityEngine_UIElements_TreeItem_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01355CC0, bool, Dictionary_2_System_Int32_UnityEngine_UIElements_TreeItem__TryAdd, (Dictionary_2_System_Int32_UnityEngine_UIElements_TreeItem_ * __this, int32_t key, TreeItem value, MethodInfo * method)); -DO_APP_FUNC(0x01355C00, bool, Dictionary_2_System_Int32_UnityEngine_UIElements_TreeItem__TryGetValue, (Dictionary_2_System_Int32_UnityEngine_UIElements_TreeItem_ * __this, int32_t key, TreeItem value, MethodInfo * method)); +DO_APP_FUNC(0x01355C00, bool, Dictionary_2_System_Int32_UnityEngine_UIElements_TreeItem__TryGetValue, (Dictionary_2_System_Int32_UnityEngine_UIElements_TreeItem_ * __this, int32_t key, TreeItem * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDF80, Dictionary_2_System_Int32_UnityEngine_UIElements_TreeItem__TryGetValue__MethodInfo); DO_APP_FUNC(0x01354DB0, bool, Dictionary_2_System_Int32_UnityEngine_UIElements_TreeItem__TryInsert, (Dictionary_2_System_Int32_UnityEngine_UIElements_TreeItem_ * __this, int32_t key, TreeItem value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_Int32_UnityEngine_UIElements_TreeItem__get_Count, (Dictionary_2_System_Int32_UnityEngine_UIElements_TreeItem_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01354010, TreeItem, Dictionary_2_System_Int32_UnityEngine_UIElements_TreeItem__get_Item, (Dictionary_2_System_Int32_UnityEngine_UIElements_TreeItem_ * __this, int32_t key, MethodInfo * method)); @@ -132507,7 +146489,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_Int32_UnityEngine_Vec DO_APP_FUNC(0x0133B500, void, Dictionary_2_System_Int32_UnityEngine_Vector2Int__System_Collections_IDictionary_set_Item, (Dictionary_2_System_Int32_UnityEngine_Vector2Int_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01333B30, IEnumerator *, Dictionary_2_System_Int32_UnityEngine_Vector2Int__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_Int32_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01323C60, bool, Dictionary_2_System_Int32_UnityEngine_Vector2Int__TryAdd, (Dictionary_2_System_Int32_UnityEngine_Vector2Int_ * __this, int32_t key, Vector2Int value, MethodInfo * method)); -DO_APP_FUNC(0x0133AE60, bool, Dictionary_2_System_Int32_UnityEngine_Vector2Int__TryGetValue, (Dictionary_2_System_Int32_UnityEngine_Vector2Int_ * __this, int32_t key, Vector2Int value, MethodInfo * method)); +DO_APP_FUNC(0x0133AE60, bool, Dictionary_2_System_Int32_UnityEngine_Vector2Int__TryGetValue, (Dictionary_2_System_Int32_UnityEngine_Vector2Int_ * __this, int32_t key, Vector2Int * value, MethodInfo * method)); DO_APP_FUNC(0x0133A080, bool, Dictionary_2_System_Int32_UnityEngine_Vector2Int__TryInsert, (Dictionary_2_System_Int32_UnityEngine_Vector2Int_ * __this, int32_t key, Vector2Int value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_Int32_UnityEngine_Vector2Int__get_Count, (Dictionary_2_System_Int32_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01339430, Vector2Int, Dictionary_2_System_Int32_UnityEngine_Vector2Int__get_Item, (Dictionary_2_System_Int32_UnityEngine_Vector2Int_ * __this, int32_t key, MethodInfo * method)); @@ -132565,7 +146547,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_Int32_UnityEngine_Vec DO_APP_FUNC(0x01356360, void, Dictionary_2_System_Int32_UnityEngine_Vector4__System_Collections_IDictionary_set_Item, (Dictionary_2_System_Int32_UnityEngine_Vector4_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x0132EB60, IEnumerator *, Dictionary_2_System_Int32_UnityEngine_Vector4__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_Int32_UnityEngine_Vector4_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01355CC0, bool, Dictionary_2_System_Int32_UnityEngine_Vector4__TryAdd, (Dictionary_2_System_Int32_UnityEngine_Vector4_ * __this, int32_t key, Vector4 value, MethodInfo * method)); -DO_APP_FUNC(0x01358680, bool, Dictionary_2_System_Int32_UnityEngine_Vector4__TryGetValue, (Dictionary_2_System_Int32_UnityEngine_Vector4_ * __this, int32_t key, Vector4 value, MethodInfo * method)); +DO_APP_FUNC(0x01358680, bool, Dictionary_2_System_Int32_UnityEngine_Vector4__TryGetValue, (Dictionary_2_System_Int32_UnityEngine_Vector4_ * __this, int32_t key, Vector4 * value, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9A1A8, Dictionary_2_System_Int32_UnityEngine_Vector4__TryGetValue__MethodInfo); DO_APP_FUNC(0x013578A0, bool, Dictionary_2_System_Int32_UnityEngine_Vector4__TryInsert, (Dictionary_2_System_Int32_UnityEngine_Vector4_ * __this, int32_t key, Vector4 value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_Int32_UnityEngine_Vector4__get_Count, (Dictionary_2_System_Int32_UnityEngine_Vector4_ * __this, MethodInfo * method)); @@ -132574,6 +146556,7 @@ DO_APP_FUNC(0x0131C780, Dictionary_2_TKey_TValue_KeyCollection_System_Int32_Unit DO_APP_FUNC(0x0131C860, Dictionary_2_TKey_TValue_ValueCollection_System_Int32_UnityEngine_Vector4_ *, Dictionary_2_System_Int32_UnityEngine_Vector4__get_Values, (Dictionary_2_System_Int32_UnityEngine_Vector4_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013540D0, void, Dictionary_2_System_Int32_UnityEngine_Vector4__set_Item, (Dictionary_2_System_Int32_UnityEngine_Vector4_ * __this, int32_t key, Vector4 value, MethodInfo * method)); DO_APP_FUNC(0x011C1C90, void, Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___ctor, (Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D20FB8, Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___ctor__MethodInfo); DO_APP_FUNC(0x0131C2E0, void, Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___ctor_1, (Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * __this, IDictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * dictionary, MethodInfo * method)); DO_APP_FUNC(0x010786D0, void, Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___ctor_2, (Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * __this, IEqualityComparer_1_System_Int32_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010B5EC0, void, Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___ctor_3, (Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * __this, int32_t capacity, MethodInfo * method)); @@ -132581,8 +146564,10 @@ DO_APP_FUNC(0x0135F430, void, Dictionary_2_System_Int32_UnityEngine_TextCore_Tex DO_APP_FUNC(0x0131C210, void, Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___ctor_5, (Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * __this, int32_t capacity, IEqualityComparer_1_System_Int32_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0135F860, void, Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___ctor_6, (Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x0135FA00, void, Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__Add, (Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * __this, int32_t key, TextResourceManager_FontAssetRef value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D20FA0, Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__Add__MethodInfo); DO_APP_FUNC(0x0131CC90, void, Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__Clear, (Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01322140, bool, Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__ContainsKey, (Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * __this, int32_t key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D20F90, Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__ContainsKey__MethodInfo); DO_APP_FUNC(0x0135FCD0, bool, Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__ContainsValue, (Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * __this, TextResourceManager_FontAssetRef value, MethodInfo * method)); DO_APP_FUNC(0x0135FE00, void, Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__CopyTo, (Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * __this, KeyValuePair_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___Array * array, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01360520, int32_t, Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__FindEntry, (Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * __this, int32_t key, MethodInfo * method)); @@ -132619,13 +146604,15 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_Int32_UnityEngine_Tex DO_APP_FUNC(0x01361FF0, void, Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__System_Collections_IDictionary_set_Item, (Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01360050, IEnumerator *, Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013618D0, bool, Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__TryAdd, (Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * __this, int32_t key, TextResourceManager_FontAssetRef value, MethodInfo * method)); -DO_APP_FUNC(0x01361800, bool, Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__TryGetValue, (Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * __this, int32_t key, TextResourceManager_FontAssetRef value, MethodInfo * method)); +DO_APP_FUNC(0x01361800, bool, Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__TryGetValue, (Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * __this, int32_t key, TextResourceManager_FontAssetRef * value, MethodInfo * method)); DO_APP_FUNC(0x01360940, bool, Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__TryInsert, (Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * __this, int32_t key, TextResourceManager_FontAssetRef value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__get_Count, (Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0135F8F0, TextResourceManager_FontAssetRef, Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__get_Item, (Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * __this, int32_t key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D20FC8, Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__get_Item__MethodInfo); DO_APP_FUNC(0x0131C780, Dictionary_2_TKey_TValue_KeyCollection_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ *, Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__get_Keys, (Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131C860, Dictionary_2_TKey_TValue_ValueCollection_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ *, Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__get_Values, (Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0135F9C0, void, Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__set_Item, (Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * __this, int32_t key, TextResourceManager_FontAssetRef value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D20FC0, Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__set_Item__MethodInfo); DO_APP_FUNC(0x011C1C90, void, Dictionary_2_System_Int32Enum_System_Int32Enum___ctor, (Dictionary_2_System_Int32Enum_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131C2E0, void, Dictionary_2_System_Int32Enum_System_Int32Enum___ctor_1, (Dictionary_2_System_Int32Enum_System_Int32Enum_ * __this, IDictionary_2_System_Int32Enum_System_Int32Enum_ * dictionary, MethodInfo * method)); DO_APP_FUNC(0x010786D0, void, Dictionary_2_System_Int32Enum_System_Int32Enum___ctor_2, (Dictionary_2_System_Int32Enum_System_Int32Enum_ * __this, IEqualityComparer_1_System_Int32Enum_ * comparer, MethodInfo * method)); @@ -132672,7 +146659,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_Int32Enum_System_Int3 DO_APP_FUNC(0x0134DE90, void, Dictionary_2_System_Int32Enum_System_Int32Enum__System_Collections_IDictionary_set_Item, (Dictionary_2_System_Int32Enum_System_Int32Enum_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01325270, IEnumerator *, Dictionary_2_System_Int32Enum_System_Int32Enum__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_Int32Enum_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01323C60, bool, Dictionary_2_System_Int32Enum_System_Int32Enum__TryAdd, (Dictionary_2_System_Int32Enum_System_Int32Enum_ * __this, Int32Enum__Enum key, Int32Enum__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x013268E0, bool, Dictionary_2_System_Int32Enum_System_Int32Enum__TryGetValue, (Dictionary_2_System_Int32Enum_System_Int32Enum_ * __this, Int32Enum__Enum key, Int32Enum__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x013268E0, bool, Dictionary_2_System_Int32Enum_System_Int32Enum__TryGetValue, (Dictionary_2_System_Int32Enum_System_Int32Enum_ * __this, Int32Enum__Enum key, Int32Enum__Enum * value, MethodInfo * method)); DO_APP_FUNC(0x0134CCD0, bool, Dictionary_2_System_Int32Enum_System_Int32Enum__TryInsert, (Dictionary_2_System_Int32Enum_System_Int32Enum_ * __this, Int32Enum__Enum key, Int32Enum__Enum value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_Int32Enum_System_Int32Enum__get_Count, (Dictionary_2_System_Int32Enum_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0134C4F0, Int32Enum__Enum, Dictionary_2_System_Int32Enum_System_Int32Enum__get_Item, (Dictionary_2_System_Int32Enum_System_Int32Enum_ * __this, Int32Enum__Enum key, MethodInfo * method)); @@ -132725,7 +146712,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_Int32Enum_System_Obje DO_APP_FUNC(0x013537B0, void, Dictionary_2_System_Int32Enum_System_Object__System_Collections_IDictionary_set_Item, (Dictionary_2_System_Int32Enum_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x013224A0, IEnumerator *, Dictionary_2_System_Int32Enum_System_Object__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_Int32Enum_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01323C60, bool, Dictionary_2_System_Int32Enum_System_Object__TryAdd, (Dictionary_2_System_Int32Enum_System_Object_ * __this, Int32Enum__Enum key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x01323BB0, bool, Dictionary_2_System_Int32Enum_System_Object__TryGetValue, (Dictionary_2_System_Int32Enum_System_Object_ * __this, Int32Enum__Enum key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x01323BB0, bool, Dictionary_2_System_Int32Enum_System_Object__TryGetValue, (Dictionary_2_System_Int32Enum_System_Object_ * __this, Int32Enum__Enum key, Object * * value, MethodInfo * method)); DO_APP_FUNC(0x013523A0, bool, Dictionary_2_System_Int32Enum_System_Object__TryInsert, (Dictionary_2_System_Int32Enum_System_Object_ * __this, Int32Enum__Enum key, Object * value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_Int32Enum_System_Object__get_Count, (Dictionary_2_System_Int32Enum_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0134FC80, Object *, Dictionary_2_System_Int32Enum_System_Object__get_Item, (Dictionary_2_System_Int32Enum_System_Object_ * __this, Int32Enum__Enum key, MethodInfo * method)); @@ -132733,6 +146720,7 @@ DO_APP_FUNC(0x0131C780, Dictionary_2_TKey_TValue_KeyCollection_System_Int32Enum_ DO_APP_FUNC(0x0131C860, Dictionary_2_TKey_TValue_ValueCollection_System_Int32Enum_System_Object_ *, Dictionary_2_System_Int32Enum_System_Object__get_Values, (Dictionary_2_System_Int32Enum_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01321EE0, void, Dictionary_2_System_Int32Enum_System_Object__set_Item, (Dictionary_2_System_Int32Enum_System_Object_ * __this, Int32Enum__Enum key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x011C1C90, void, Dictionary_2_System_Int64_UnityEngine_UIElements_ComputedStyle___ctor, (Dictionary_2_System_Int64_UnityEngine_UIElements_ComputedStyle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE2D0, Dictionary_2_System_Int64_UnityEngine_UIElements_ComputedStyle___ctor__MethodInfo); DO_APP_FUNC(0x0131C2E0, void, Dictionary_2_System_Int64_UnityEngine_UIElements_ComputedStyle___ctor_1, (Dictionary_2_System_Int64_UnityEngine_UIElements_ComputedStyle_ * __this, IDictionary_2_System_Int64_UnityEngine_UIElements_ComputedStyle_ * dictionary, MethodInfo * method)); DO_APP_FUNC(0x010786D0, void, Dictionary_2_System_Int64_UnityEngine_UIElements_ComputedStyle___ctor_2, (Dictionary_2_System_Int64_UnityEngine_UIElements_ComputedStyle_ * __this, IEqualityComparer_1_System_Int64_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010B5EC0, void, Dictionary_2_System_Int64_UnityEngine_UIElements_ComputedStyle___ctor_3, (Dictionary_2_System_Int64_UnityEngine_UIElements_ComputedStyle_ * __this, int32_t capacity, MethodInfo * method)); @@ -132778,13 +146766,15 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_Int64_UnityEngine_UIE DO_APP_FUNC(0x01368130, void, Dictionary_2_System_Int64_UnityEngine_UIElements_ComputedStyle__System_Collections_IDictionary_set_Item, (Dictionary_2_System_Int64_UnityEngine_UIElements_ComputedStyle_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01365FB0, IEnumerator *, Dictionary_2_System_Int64_UnityEngine_UIElements_ComputedStyle__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_Int64_UnityEngine_UIElements_ComputedStyle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01367920, bool, Dictionary_2_System_Int64_UnityEngine_UIElements_ComputedStyle__TryAdd, (Dictionary_2_System_Int64_UnityEngine_UIElements_ComputedStyle_ * __this, int64_t key, ComputedStyle value, MethodInfo * method)); -DO_APP_FUNC(0x01367810, bool, Dictionary_2_System_Int64_UnityEngine_UIElements_ComputedStyle__TryGetValue, (Dictionary_2_System_Int64_UnityEngine_UIElements_ComputedStyle_ * __this, int64_t key, ComputedStyle value, MethodInfo * method)); +DO_APP_FUNC(0x01367810, bool, Dictionary_2_System_Int64_UnityEngine_UIElements_ComputedStyle__TryGetValue, (Dictionary_2_System_Int64_UnityEngine_UIElements_ComputedStyle_ * __this, int64_t key, ComputedStyle * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE2B8, Dictionary_2_System_Int64_UnityEngine_UIElements_ComputedStyle__TryGetValue__MethodInfo); DO_APP_FUNC(0x013668A0, bool, Dictionary_2_System_Int64_UnityEngine_UIElements_ComputedStyle__TryInsert, (Dictionary_2_System_Int64_UnityEngine_UIElements_ComputedStyle_ * __this, int64_t key, ComputedStyle value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_Int64_UnityEngine_UIElements_ComputedStyle__get_Count, (Dictionary_2_System_Int64_UnityEngine_UIElements_ComputedStyle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013655F0, ComputedStyle, Dictionary_2_System_Int64_UnityEngine_UIElements_ComputedStyle__get_Item, (Dictionary_2_System_Int64_UnityEngine_UIElements_ComputedStyle_ * __this, int64_t key, MethodInfo * method)); DO_APP_FUNC(0x0131C780, Dictionary_2_TKey_TValue_KeyCollection_System_Int64_UnityEngine_UIElements_ComputedStyle_ *, Dictionary_2_System_Int64_UnityEngine_UIElements_ComputedStyle__get_Keys, (Dictionary_2_System_Int64_UnityEngine_UIElements_ComputedStyle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131C860, Dictionary_2_TKey_TValue_ValueCollection_System_Int64_UnityEngine_UIElements_ComputedStyle_ *, Dictionary_2_System_Int64_UnityEngine_UIElements_ComputedStyle__get_Values, (Dictionary_2_System_Int64_UnityEngine_UIElements_ComputedStyle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013656E0, void, Dictionary_2_System_Int64_UnityEngine_UIElements_ComputedStyle__set_Item, (Dictionary_2_System_Int64_UnityEngine_UIElements_ComputedStyle_ * __this, int64_t key, ComputedStyle value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE2A8, Dictionary_2_System_Int64_UnityEngine_UIElements_ComputedStyle__set_Item__MethodInfo); DO_APP_FUNC(0x011C1C90, void, Dictionary_2_System_Int64_System_Object___ctor, (Dictionary_2_System_Int64_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131C2E0, void, Dictionary_2_System_Int64_System_Object___ctor_1, (Dictionary_2_System_Int64_System_Object_ * __this, IDictionary_2_System_Int64_System_Object_ * dictionary, MethodInfo * method)); DO_APP_FUNC(0x010786D0, void, Dictionary_2_System_Int64_System_Object___ctor_2, (Dictionary_2_System_Int64_System_Object_ * __this, IEqualityComparer_1_System_Int64_ * comparer, MethodInfo * method)); @@ -132831,7 +146821,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_Int64_System_Object__ DO_APP_FUNC(0x0136AAF0, void, Dictionary_2_System_Int64_System_Object__System_Collections_IDictionary_set_Item, (Dictionary_2_System_Int64_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x013224A0, IEnumerator *, Dictionary_2_System_Int64_System_Object__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_Int64_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01323C60, bool, Dictionary_2_System_Int64_System_Object__TryAdd, (Dictionary_2_System_Int64_System_Object_ * __this, int64_t key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x01323BB0, bool, Dictionary_2_System_Int64_System_Object__TryGetValue, (Dictionary_2_System_Int64_System_Object_ * __this, int64_t key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x01323BB0, bool, Dictionary_2_System_Int64_System_Object__TryGetValue, (Dictionary_2_System_Int64_System_Object_ * __this, int64_t key, Object * * value, MethodInfo * method)); DO_APP_FUNC(0x013696E0, bool, Dictionary_2_System_Int64_System_Object__TryInsert, (Dictionary_2_System_Int64_System_Object_ * __this, int64_t key, Object * value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_Int64_System_Object__get_Count, (Dictionary_2_System_Int64_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01368B20, Object *, Dictionary_2_System_Int64_System_Object__get_Item, (Dictionary_2_System_Int64_System_Object_ * __this, int64_t key, MethodInfo * method)); @@ -132884,7 +146874,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_IntPtr_System_Object_ DO_APP_FUNC(0x0136AAF0, void, Dictionary_2_System_IntPtr_System_Object__System_Collections_IDictionary_set_Item, (Dictionary_2_System_IntPtr_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x013224A0, IEnumerator *, Dictionary_2_System_IntPtr_System_Object__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_IntPtr_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01323C60, bool, Dictionary_2_System_IntPtr_System_Object__TryAdd, (Dictionary_2_System_IntPtr_System_Object_ * __this, void * key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x01323BB0, bool, Dictionary_2_System_IntPtr_System_Object__TryGetValue, (Dictionary_2_System_IntPtr_System_Object_ * __this, void * key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x01323BB0, bool, Dictionary_2_System_IntPtr_System_Object__TryGetValue, (Dictionary_2_System_IntPtr_System_Object_ * __this, void * key, Object * * value, MethodInfo * method)); DO_APP_FUNC(0x0136BAC0, bool, Dictionary_2_System_IntPtr_System_Object__TryInsert, (Dictionary_2_System_IntPtr_System_Object_ * __this, void * key, Object * value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_IntPtr_System_Object__get_Count, (Dictionary_2_System_IntPtr_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01368B20, Object *, Dictionary_2_System_IntPtr_System_Object__get_Item, (Dictionary_2_System_IntPtr_System_Object_ * __this, void * key, MethodInfo * method)); @@ -132911,6 +146901,7 @@ DO_APP_FUNC(0x0136DF30, int32_t, Dictionary_2_UnityEngine_InputSystem_Utilities_ DO_APP_FUNC(0x0131F300, bool, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__IsCompatibleKey, (Object * key, MethodInfo * method)); DO_APP_FUNC(0x0136E6A0, void, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__OnDeserialization, (Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_ * __this, Object * sender, MethodInfo * method)); DO_APP_FUNC(0x0136EEB0, bool, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__Remove, (Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_ * __this, InternedString key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA818, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__Remove__MethodInfo); DO_APP_FUNC(0x0136EB40, void, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__Resize, (Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0136EBD0, void, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__Resize_1, (Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_ * __this, int32_t newSize, bool forceNewHashCodes, MethodInfo * method)); DO_APP_FUNC(0x0136D390, void, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add, (Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_ * __this, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_ keyValuePair, MethodInfo * method)); @@ -132938,13 +146929,15 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_UnityEngine_InputSystem_Util DO_APP_FUNC(0x0136F910, void, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__System_Collections_IDictionary_set_Item, (Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01329620, IEnumerator *, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0136F240, bool, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__TryAdd, (Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_ * __this, InternedString key, InternedString value, MethodInfo * method)); -DO_APP_FUNC(0x0136F180, bool, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__TryGetValue, (Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_ * __this, InternedString key, InternedString value, MethodInfo * method)); +DO_APP_FUNC(0x0136F180, bool, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__TryGetValue, (Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_ * __this, InternedString key, InternedString * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2590, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__TryGetValue__MethodInfo); DO_APP_FUNC(0x0136E0B0, bool, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__TryInsert, (Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_ * __this, InternedString key, InternedString value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__get_Count, (Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0136D220, InternedString, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__get_Item, (Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_ * __this, InternedString key, MethodInfo * method)); DO_APP_FUNC(0x0131C780, Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_ *, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__get_Keys, (Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131C860, Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_ *, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__get_Values, (Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0136D2F0, void, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__set_Item, (Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_ * __this, InternedString key, InternedString value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA9B0, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__set_Item__MethodInfo); DO_APP_FUNC(0x011C1C90, void, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object___ctor, (Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131C2E0, void, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object___ctor_1, (Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object_ * __this, IDictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object_ * dictionary, MethodInfo * method)); DO_APP_FUNC(0x010786D0, void, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object___ctor_2, (Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object_ * __this, IEqualityComparer_1_UnityEngine_InputSystem_Utilities_InternedString_ * comparer, MethodInfo * method)); @@ -132991,7 +146984,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_UnityEngine_InputSystem_Util DO_APP_FUNC(0x0131F100, void, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object__System_Collections_IDictionary_set_Item, (Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x0131D0B0, IEnumerator *, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131EA60, bool, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object__TryAdd, (Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object_ * __this, InternedString key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x0131E9A0, bool, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object__TryGetValue, (Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object_ * __this, InternedString key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0131E9A0, bool, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object__TryGetValue, (Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object_ * __this, InternedString key, Object * * value, MethodInfo * method)); DO_APP_FUNC(0x01370B30, bool, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object__TryInsert, (Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object_ * __this, InternedString key, Object * value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object__get_Count, (Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131C940, Object *, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object__get_Item, (Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object_ * __this, InternedString key, MethodInfo * method)); @@ -133018,6 +147011,7 @@ DO_APP_FUNC(0x013728C0, int32_t, Dictionary_2_UnityEngine_InputSystem_Utilities_ DO_APP_FUNC(0x0131F300, bool, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__IsCompatibleKey, (Object * key, MethodInfo * method)); DO_APP_FUNC(0x01372A40, void, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__OnDeserialization, (Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ * __this, Object * sender, MethodInfo * method)); DO_APP_FUNC(0x0136EEB0, bool, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__Remove, (Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ * __this, InternedString key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7E80, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__Remove__MethodInfo); DO_APP_FUNC(0x01372EE0, void, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__Resize, (Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01372F70, void, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__Resize_1, (Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ * __this, int32_t newSize, bool forceNewHashCodes, MethodInfo * method)); DO_APP_FUNC(0x0136D390, void, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add, (Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ * __this, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ keyValuePair, MethodInfo * method)); @@ -133045,13 +147039,18 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_UnityEngine_InputSystem_Util DO_APP_FUNC(0x0136F910, void, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__System_Collections_IDictionary_set_Item, (Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01329620, IEnumerator *, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0136F240, bool, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__TryAdd, (Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ * __this, InternedString key, InputControlLayout_Collection_PrecompiledLayout value, MethodInfo * method)); -DO_APP_FUNC(0x0136F180, bool, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__TryGetValue, (Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ * __this, InternedString key, InputControlLayout_Collection_PrecompiledLayout value, MethodInfo * method)); +DO_APP_FUNC(0x0136F180, bool, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__TryGetValue, (Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ * __this, InternedString key, InputControlLayout_Collection_PrecompiledLayout * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC3B8, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__TryGetValue__MethodInfo); DO_APP_FUNC(0x0136E0B0, bool, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__TryInsert, (Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ * __this, InternedString key, InputControlLayout_Collection_PrecompiledLayout value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__get_Count, (Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA9B8, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__get_Count__MethodInfo); DO_APP_FUNC(0x0136D220, InputControlLayout_Collection_PrecompiledLayout, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__get_Item, (Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ * __this, InternedString key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7E78, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__get_Item__MethodInfo); DO_APP_FUNC(0x0131C780, Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ *, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__get_Keys, (Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7E20, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__get_Keys__MethodInfo); DO_APP_FUNC(0x0131C860, Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ *, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__get_Values, (Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0136D2F0, void, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__set_Item, (Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ * __this, InternedString key, InputControlLayout_Collection_PrecompiledLayout value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC340, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__set_Item__MethodInfo); DO_APP_FUNC(0x011C1C90, void, Dictionary_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object___ctor, (Dictionary_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131C2E0, void, Dictionary_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object___ctor_1, (Dictionary_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_ * __this, IDictionary_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_ * dictionary, MethodInfo * method)); DO_APP_FUNC(0x010786D0, void, Dictionary_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object___ctor_2, (Dictionary_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_ * __this, IEqualityComparer_1_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_ * comparer, MethodInfo * method)); @@ -133098,7 +147097,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK DO_APP_FUNC(0x01375860, void, Dictionary_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object__System_Collections_IDictionary_set_Item, (Dictionary_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x013224A0, IEnumerator *, Dictionary_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01323C60, bool, Dictionary_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object__TryAdd, (Dictionary_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_ * __this, IpQCkqlgJLyrFpAOyBfUxXQpJsWK key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x01323BB0, bool, Dictionary_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object__TryGetValue, (Dictionary_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_ * __this, IpQCkqlgJLyrFpAOyBfUxXQpJsWK key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x01323BB0, bool, Dictionary_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object__TryGetValue, (Dictionary_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_ * __this, IpQCkqlgJLyrFpAOyBfUxXQpJsWK key, Object * * value, MethodInfo * method)); DO_APP_FUNC(0x01374440, bool, Dictionary_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object__TryInsert, (Dictionary_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_ * __this, IpQCkqlgJLyrFpAOyBfUxXQpJsWK key, Object * value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object__get_Count, (Dictionary_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01373BB0, Object *, Dictionary_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object__get_Item, (Dictionary_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_ * __this, IpQCkqlgJLyrFpAOyBfUxXQpJsWK key, MethodInfo * method)); @@ -133151,7 +147150,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_Photon_Bolt_NetworkId_System DO_APP_FUNC(0x01377C20, void, Dictionary_2_Photon_Bolt_NetworkId_System_Object__System_Collections_IDictionary_set_Item, (Dictionary_2_Photon_Bolt_NetworkId_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x013224A0, IEnumerator *, Dictionary_2_Photon_Bolt_NetworkId_System_Object__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_Photon_Bolt_NetworkId_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01323C60, bool, Dictionary_2_Photon_Bolt_NetworkId_System_Object__TryAdd, (Dictionary_2_Photon_Bolt_NetworkId_System_Object_ * __this, NetworkId key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x01323BB0, bool, Dictionary_2_Photon_Bolt_NetworkId_System_Object__TryGetValue, (Dictionary_2_Photon_Bolt_NetworkId_System_Object_ * __this, NetworkId key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x01323BB0, bool, Dictionary_2_Photon_Bolt_NetworkId_System_Object__TryGetValue, (Dictionary_2_Photon_Bolt_NetworkId_System_Object_ * __this, NetworkId key, Object * * value, MethodInfo * method)); DO_APP_FUNC(0x01376900, bool, Dictionary_2_Photon_Bolt_NetworkId_System_Object__TryInsert, (Dictionary_2_Photon_Bolt_NetworkId_System_Object_ * __this, NetworkId key, Object * value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_Photon_Bolt_NetworkId_System_Object__get_Count, (Dictionary_2_Photon_Bolt_NetworkId_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01376080, Object *, Dictionary_2_Photon_Bolt_NetworkId_System_Object__get_Item, (Dictionary_2_Photon_Bolt_NetworkId_System_Object_ * __this, NetworkId key, MethodInfo * method)); @@ -133204,7 +147203,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_Object_UnityEngine_Re DO_APP_FUNC(0x0137A7C0, void, Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__System_Collections_IDictionary_set_Item, (Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01360050, IEnumerator *, Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013618D0, bool, Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__TryAdd, (Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * __this, Object * key, AsyncOperationHandle_1_System_Object_ value, MethodInfo * method)); -DO_APP_FUNC(0x0137A060, bool, Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__TryGetValue, (Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * __this, Object * key, AsyncOperationHandle_1_System_Object_ value, MethodInfo * method)); +DO_APP_FUNC(0x0137A060, bool, Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__TryGetValue, (Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * __this, Object * key, AsyncOperationHandle_1_System_Object_ * value, MethodInfo * method)); DO_APP_FUNC(0x01379150, bool, Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__TryInsert, (Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * __this, Object * key, AsyncOperationHandle_1_System_Object_ value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__get_Count, (Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013784C0, AsyncOperationHandle_1_System_Object_, Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__get_Item, (Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * __this, Object * key, MethodInfo * method)); @@ -133212,6 +147211,7 @@ DO_APP_FUNC(0x0131C780, Dictionary_2_TKey_TValue_KeyCollection_System_Object_Uni DO_APP_FUNC(0x0131C860, Dictionary_2_TKey_TValue_ValueCollection_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ *, Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__get_Values, (Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0135F9C0, void, Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__set_Item, (Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * __this, Object * key, AsyncOperationHandle_1_System_Object_ value, MethodInfo * method)); DO_APP_FUNC(0x011C1C90, void, Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___ctor, (Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE7A8, Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___ctor__MethodInfo); DO_APP_FUNC(0x0131C2E0, void, Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___ctor_1, (Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, IDictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * dictionary, MethodInfo * method)); DO_APP_FUNC(0x010786D0, void, Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___ctor_2, (Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, IEqualityComparer_1_System_Object_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010B5EC0, void, Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___ctor_3, (Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, int32_t capacity, MethodInfo * method)); @@ -133219,8 +147219,11 @@ DO_APP_FUNC(0x0137ADD0, void, Dictionary_2_System_Object_UnityEngine_ResourceMan DO_APP_FUNC(0x0131C210, void, Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___ctor_5, (Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, int32_t capacity, IEqualityComparer_1_System_Object_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0137B1E0, void, Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___ctor_6, (Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x0133C070, void, Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__Add, (Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, Object * key, AsyncOperationHandle value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE528, Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__Add__MethodInfo); DO_APP_FUNC(0x0131CC90, void, Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__Clear, (Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE5F0, Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__Clear__MethodInfo); DO_APP_FUNC(0x01322140, bool, Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__ContainsKey, (Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, Object * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE520, Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__ContainsKey__MethodInfo); DO_APP_FUNC(0x0137B580, bool, Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__ContainsValue, (Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, AsyncOperationHandle value, MethodInfo * method)); DO_APP_FUNC(0x0137B6B0, void, Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__CopyTo, (Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, KeyValuePair_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Array * array, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x0137BC10, int32_t, Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__FindEntry, (Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, Object * key, MethodInfo * method)); @@ -133230,6 +147233,7 @@ DO_APP_FUNC(0x0137BE70, int32_t, Dictionary_2_System_Object_UnityEngine_Resource DO_APP_FUNC(0x0131F300, bool, Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__IsCompatibleKey, (Object * key, MethodInfo * method)); DO_APP_FUNC(0x0137C480, void, Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__OnDeserialization, (Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, Object * sender, MethodInfo * method)); DO_APP_FUNC(0x0137CC60, bool, Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__Remove, (Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, Object * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE790, Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__Remove__MethodInfo); DO_APP_FUNC(0x0137C940, void, Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__Resize, (Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0137C9D0, void, Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__Resize_1, (Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, int32_t newSize, bool forceNewHashCodes, MethodInfo * method)); DO_APP_FUNC(0x0137B300, void, Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add, (Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, KeyValuePair_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ keyValuePair, MethodInfo * method)); @@ -133257,10 +147261,11 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_Object_UnityEngine_Re DO_APP_FUNC(0x0137D5F0, void, Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__System_Collections_IDictionary_set_Item, (Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01329620, IEnumerator *, Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0133DDD0, bool, Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__TryAdd, (Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, Object * key, AsyncOperationHandle value, MethodInfo * method)); -DO_APP_FUNC(0x0137CED0, bool, Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__TryGetValue, (Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, Object * key, AsyncOperationHandle value, MethodInfo * method)); +DO_APP_FUNC(0x0137CED0, bool, Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__TryGetValue, (Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, Object * key, AsyncOperationHandle * value, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C98F80, Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__TryGetValue__MethodInfo); DO_APP_FUNC(0x0137BFF0, bool, Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__TryInsert, (Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, Object * key, AsyncOperationHandle value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__get_Count, (Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE7E0, Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__get_Count__MethodInfo); DO_APP_FUNC(0x0137B270, AsyncOperationHandle, Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__get_Item, (Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, Object * key, MethodInfo * method)); DO_APP_FUNC(0x0131C780, Dictionary_2_TKey_TValue_KeyCollection_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ *, Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__get_Keys, (Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131C860, Dictionary_2_TKey_TValue_ValueCollection_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ *, Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__get_Values, (Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); @@ -133311,7 +147316,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_Object_System_Boolean DO_APP_FUNC(0x0137FF50, void, Dictionary_2_System_Object_System_Boolean__System_Collections_IDictionary_set_Item, (Dictionary_2_System_Object_System_Boolean_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x013224A0, IEnumerator *, Dictionary_2_System_Object_System_Boolean__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_Object_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01323C60, bool, Dictionary_2_System_Object_System_Boolean__TryAdd, (Dictionary_2_System_Object_System_Boolean_ * __this, Object * key, bool value, MethodInfo * method)); -DO_APP_FUNC(0x0137F8C0, bool, Dictionary_2_System_Object_System_Boolean__TryGetValue, (Dictionary_2_System_Object_System_Boolean_ * __this, Object * key, bool value, MethodInfo * method)); +DO_APP_FUNC(0x0137F8C0, bool, Dictionary_2_System_Object_System_Boolean__TryGetValue, (Dictionary_2_System_Object_System_Boolean_ * __this, Object * key, bool * value, MethodInfo * method)); DO_APP_FUNC(0x0137EAA0, bool, Dictionary_2_System_Object_System_Boolean__TryInsert, (Dictionary_2_System_Object_System_Boolean_ * __this, Object * key, bool value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_Object_System_Boolean__get_Count, (Dictionary_2_System_Object_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0137DE50, bool, Dictionary_2_System_Object_System_Boolean__get_Item, (Dictionary_2_System_Object_System_Boolean_ * __this, Object * key, MethodInfo * method)); @@ -133364,7 +147369,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_Object_UnityEngine_Bo DO_APP_FUNC(0x0137D5F0, void, Dictionary_2_System_Object_UnityEngine_Bounds__System_Collections_IDictionary_set_Item, (Dictionary_2_System_Object_UnityEngine_Bounds_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01329620, IEnumerator *, Dictionary_2_System_Object_UnityEngine_Bounds__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_Object_UnityEngine_Bounds_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0133DDD0, bool, Dictionary_2_System_Object_UnityEngine_Bounds__TryAdd, (Dictionary_2_System_Object_UnityEngine_Bounds_ * __this, Object * key, Bounds value, MethodInfo * method)); -DO_APP_FUNC(0x01381D20, bool, Dictionary_2_System_Object_UnityEngine_Bounds__TryGetValue, (Dictionary_2_System_Object_UnityEngine_Bounds_ * __this, Object * key, Bounds value, MethodInfo * method)); +DO_APP_FUNC(0x01381D20, bool, Dictionary_2_System_Object_UnityEngine_Bounds__TryGetValue, (Dictionary_2_System_Object_UnityEngine_Bounds_ * __this, Object * key, Bounds * value, MethodInfo * method)); DO_APP_FUNC(0x01380EB0, bool, Dictionary_2_System_Object_UnityEngine_Bounds__TryInsert, (Dictionary_2_System_Object_UnityEngine_Bounds_ * __this, Object * key, Bounds value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_Object_UnityEngine_Bounds__get_Count, (Dictionary_2_System_Object_UnityEngine_Bounds_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0137B270, Bounds, Dictionary_2_System_Object_UnityEngine_Bounds__get_Item, (Dictionary_2_System_Object_UnityEngine_Bounds_ * __this, Object * key, MethodInfo * method)); @@ -133417,7 +147422,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_Object_System_Byte__S DO_APP_FUNC(0x0137FF50, void, Dictionary_2_System_Object_System_Byte__System_Collections_IDictionary_set_Item, (Dictionary_2_System_Object_System_Byte_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x013224A0, IEnumerator *, Dictionary_2_System_Object_System_Byte__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_Object_System_Byte_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01323C60, bool, Dictionary_2_System_Object_System_Byte__TryAdd, (Dictionary_2_System_Object_System_Byte_ * __this, Object * key, uint8_t value, MethodInfo * method)); -DO_APP_FUNC(0x0137F8C0, bool, Dictionary_2_System_Object_System_Byte__TryGetValue, (Dictionary_2_System_Object_System_Byte_ * __this, Object * key, uint8_t value, MethodInfo * method)); +DO_APP_FUNC(0x0137F8C0, bool, Dictionary_2_System_Object_System_Byte__TryGetValue, (Dictionary_2_System_Object_System_Byte_ * __this, Object * key, uint8_t * value, MethodInfo * method)); DO_APP_FUNC(0x0137EAA0, bool, Dictionary_2_System_Object_System_Byte__TryInsert, (Dictionary_2_System_Object_System_Byte_ * __this, Object * key, uint8_t value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_Object_System_Byte__get_Count, (Dictionary_2_System_Object_System_Byte_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0137DE50, uint8_t, Dictionary_2_System_Object_System_Byte__get_Item, (Dictionary_2_System_Object_System_Byte_ * __this, Object * key, MethodInfo * method)); @@ -133470,7 +147475,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_Object_UnityEngine_Co DO_APP_FUNC(0x01385EC0, void, Dictionary_2_System_Object_UnityEngine_Color__System_Collections_IDictionary_set_Item, (Dictionary_2_System_Object_UnityEngine_Color_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x0131D0B0, IEnumerator *, Dictionary_2_System_Object_UnityEngine_Color__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_Object_UnityEngine_Color_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01355CC0, bool, Dictionary_2_System_Object_UnityEngine_Color__TryAdd, (Dictionary_2_System_Object_UnityEngine_Color_ * __this, Object * key, Color value, MethodInfo * method)); -DO_APP_FUNC(0x01385810, bool, Dictionary_2_System_Object_UnityEngine_Color__TryGetValue, (Dictionary_2_System_Object_UnityEngine_Color_ * __this, Object * key, Color value, MethodInfo * method)); +DO_APP_FUNC(0x01385810, bool, Dictionary_2_System_Object_UnityEngine_Color__TryGetValue, (Dictionary_2_System_Object_UnityEngine_Color_ * __this, Object * key, Color * value, MethodInfo * method)); DO_APP_FUNC(0x013849D0, bool, Dictionary_2_System_Object_UnityEngine_Color__TryInsert, (Dictionary_2_System_Object_UnityEngine_Color_ * __this, Object * key, Color value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_Object_UnityEngine_Color__get_Count, (Dictionary_2_System_Object_UnityEngine_Color_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01383E00, Color, Dictionary_2_System_Object_UnityEngine_Color__get_Item, (Dictionary_2_System_Object_UnityEngine_Color_ * __this, Object * key, MethodInfo * method)); @@ -133523,7 +147528,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_Object_UnityEngine_Co DO_APP_FUNC(0x01388340, void, Dictionary_2_System_Object_UnityEngine_Color32__System_Collections_IDictionary_set_Item, (Dictionary_2_System_Object_UnityEngine_Color32_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x013224A0, IEnumerator *, Dictionary_2_System_Object_UnityEngine_Color32__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_Object_UnityEngine_Color32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01323C60, bool, Dictionary_2_System_Object_UnityEngine_Color32__TryAdd, (Dictionary_2_System_Object_UnityEngine_Color32_ * __this, Object * key, Color32 value, MethodInfo * method)); -DO_APP_FUNC(0x01387CC0, bool, Dictionary_2_System_Object_UnityEngine_Color32__TryGetValue, (Dictionary_2_System_Object_UnityEngine_Color32_ * __this, Object * key, Color32 value, MethodInfo * method)); +DO_APP_FUNC(0x01387CC0, bool, Dictionary_2_System_Object_UnityEngine_Color32__TryGetValue, (Dictionary_2_System_Object_UnityEngine_Color32_ * __this, Object * key, Color32 * value, MethodInfo * method)); DO_APP_FUNC(0x013870E0, bool, Dictionary_2_System_Object_UnityEngine_Color32__TryInsert, (Dictionary_2_System_Object_UnityEngine_Color32_ * __this, Object * key, Color32 value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_Object_UnityEngine_Color32__get_Count, (Dictionary_2_System_Object_UnityEngine_Color32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01386710, Color32, Dictionary_2_System_Object_UnityEngine_Color32__get_Item, (Dictionary_2_System_Object_UnityEngine_Color32_ * __this, Object * key, MethodInfo * method)); @@ -133578,7 +147583,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_Object_System_Int32__ DO_APP_FUNC(0x01388340, void, Dictionary_2_System_Object_System_Int32__System_Collections_IDictionary_set_Item, (Dictionary_2_System_Object_System_Int32_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x013224A0, IEnumerator *, Dictionary_2_System_Object_System_Int32__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_Object_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01323C60, bool, Dictionary_2_System_Object_System_Int32__TryAdd, (Dictionary_2_System_Object_System_Int32_ * __this, Object * key, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x01387CC0, bool, Dictionary_2_System_Object_System_Int32__TryGetValue, (Dictionary_2_System_Object_System_Int32_ * __this, Object * key, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x01387CC0, bool, Dictionary_2_System_Object_System_Int32__TryGetValue, (Dictionary_2_System_Object_System_Int32_ * __this, Object * key, int32_t * value, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C983D0, Dictionary_2_System_Object_System_Int32__TryGetValue__MethodInfo); DO_APP_FUNC(0x01389520, bool, Dictionary_2_System_Object_System_Int32__TryInsert, (Dictionary_2_System_Object_System_Int32_ * __this, Object * key, int32_t value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_Object_System_Int32__get_Count, (Dictionary_2_System_Object_System_Int32_ * __this, MethodInfo * method)); @@ -133633,7 +147638,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_Object_System_Int32En DO_APP_FUNC(0x01388340, void, Dictionary_2_System_Object_System_Int32Enum__System_Collections_IDictionary_set_Item, (Dictionary_2_System_Object_System_Int32Enum_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x013224A0, IEnumerator *, Dictionary_2_System_Object_System_Int32Enum__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01323C60, bool, Dictionary_2_System_Object_System_Int32Enum__TryAdd, (Dictionary_2_System_Object_System_Int32Enum_ * __this, Object * key, Int32Enum__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x01387CC0, bool, Dictionary_2_System_Object_System_Int32Enum__TryGetValue, (Dictionary_2_System_Object_System_Int32Enum_ * __this, Object * key, Int32Enum__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x01387CC0, bool, Dictionary_2_System_Object_System_Int32Enum__TryGetValue, (Dictionary_2_System_Object_System_Int32Enum_ * __this, Object * key, Int32Enum__Enum * value, MethodInfo * method)); DO_APP_FUNC(0x01389520, bool, Dictionary_2_System_Object_System_Int32Enum__TryInsert, (Dictionary_2_System_Object_System_Int32Enum_ * __this, Object * key, Int32Enum__Enum value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_Object_System_Int32Enum__get_Count, (Dictionary_2_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01388B60, Int32Enum__Enum, Dictionary_2_System_Object_System_Int32Enum__get_Item, (Dictionary_2_System_Object_System_Int32Enum_ * __this, Object * key, MethodInfo * method)); @@ -133641,24 +147646,31 @@ DO_APP_FUNC(0x0131C780, Dictionary_2_TKey_TValue_KeyCollection_System_Object_Sys DO_APP_FUNC(0x0131C860, Dictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32Enum_ *, Dictionary_2_System_Object_System_Int32Enum__get_Values, (Dictionary_2_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01321EE0, void, Dictionary_2_System_Object_System_Int32Enum__set_Item, (Dictionary_2_System_Object_System_Int32Enum_ * __this, Object * key, Int32Enum__Enum value, MethodInfo * method)); DO_APP_FUNC(0x011C1C90, void, Dictionary_2_System_Object_System_Object___ctor, (Dictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2A90, Dictionary_2_System_Object_System_Object___ctor__MethodInfo); DO_APP_FUNC(0x0131C2E0, void, Dictionary_2_System_Object_System_Object___ctor_1, (Dictionary_2_System_Object_System_Object_ * __this, IDictionary_2_System_Object_System_Object_ * dictionary, MethodInfo * method)); DO_APP_FUNC(0x010786D0, void, Dictionary_2_System_Object_System_Object___ctor_2, (Dictionary_2_System_Object_System_Object_ * __this, IEqualityComparer_1_System_Object_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010B5EC0, void, Dictionary_2_System_Object_System_Object___ctor_3, (Dictionary_2_System_Object_System_Object_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0F38, Dictionary_2_System_Object_System_Object___ctor_3__MethodInfo); DO_APP_FUNC(0x0138BB50, void, Dictionary_2_System_Object_System_Object___ctor_4, (Dictionary_2_System_Object_System_Object_ * __this, IDictionary_2_System_Object_System_Object_ * dictionary, IEqualityComparer_1_System_Object_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0131C210, void, Dictionary_2_System_Object_System_Object___ctor_5, (Dictionary_2_System_Object_System_Object_ * __this, int32_t capacity, IEqualityComparer_1_System_Object_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0138BF00, void, Dictionary_2_System_Object_System_Object___ctor_6, (Dictionary_2_System_Object_System_Object_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x01321F10, void, Dictionary_2_System_Object_System_Object__Add, (Dictionary_2_System_Object_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0F28, Dictionary_2_System_Object_System_Object__Add__MethodInfo); DO_APP_FUNC(0x0131CC90, void, Dictionary_2_System_Object_System_Object__Clear, (Dictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE0A8, Dictionary_2_System_Object_System_Object__Clear__MethodInfo); DO_APP_FUNC(0x01322140, bool, Dictionary_2_System_Object_System_Object__ContainsKey, (Dictionary_2_System_Object_System_Object_ * __this, Object * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC29F8, Dictionary_2_System_Object_System_Object__ContainsKey__MethodInfo); DO_APP_FUNC(0x01322180, bool, Dictionary_2_System_Object_System_Object__ContainsValue, (Dictionary_2_System_Object_System_Object_ * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x0138C000, void, Dictionary_2_System_Object_System_Object__CopyTo, (Dictionary_2_System_Object_System_Object_ * __this, KeyValuePair_2_System_Object_System_Object___Array * array, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x0137E6C0, int32_t, Dictionary_2_System_Object_System_Object__FindEntry, (Dictionary_2_System_Object_System_Object_ * __this, Object * key, MethodInfo * method)); DO_APP_FUNC(0x01322410, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Object_, Dictionary_2_System_Object_System_Object__GetEnumerator, (Dictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0E98, Dictionary_2_System_Object_System_Object__GetEnumerator__MethodInfo); DO_APP_FUNC(0x0138C180, void, Dictionary_2_System_Object_System_Object__GetObjectData, (Dictionary_2_System_Object_System_Object_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x0138C530, int32_t, Dictionary_2_System_Object_System_Object__Initialize, (Dictionary_2_System_Object_System_Object_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x0131F300, bool, Dictionary_2_System_Object_System_Object__IsCompatibleKey, (Object * key, MethodInfo * method)); DO_APP_FUNC(0x0138CAE0, void, Dictionary_2_System_Object_System_Object__OnDeserialization, (Dictionary_2_System_Object_System_Object_ * __this, Object * sender, MethodInfo * method)); DO_APP_FUNC(0x0138D290, bool, Dictionary_2_System_Object_System_Object__Remove, (Dictionary_2_System_Object_System_Object_ * __this, Object * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2A18, Dictionary_2_System_Object_System_Object__Remove__MethodInfo); DO_APP_FUNC(0x0138CF70, void, Dictionary_2_System_Object_System_Object__Resize, (Dictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0138D000, void, Dictionary_2_System_Object_System_Object__Resize_1, (Dictionary_2_System_Object_System_Object_ * __this, int32_t newSize, bool forceNewHashCodes, MethodInfo * method)); DO_APP_FUNC(0x01368BC0, void, Dictionary_2_System_Object_System_Object__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add, (Dictionary_2_System_Object_System_Object_ * __this, KeyValuePair_2_System_Object_System_Object_ keyValuePair, MethodInfo * method)); @@ -133687,13 +147699,18 @@ DO_APP_FUNC(0x0138DA90, void, Dictionary_2_System_Object_System_Object__System_C DO_APP_FUNC(0x013224A0, IEnumerator *, Dictionary_2_System_Object_System_Object__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01323C60, bool, Dictionary_2_System_Object_System_Object__TryAdd, (Dictionary_2_System_Object_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA3390, Dictionary_2_System_Object_System_Object__TryAdd__MethodInfo); -DO_APP_FUNC(0x01323BB0, bool, Dictionary_2_System_Object_System_Object__TryGetValue, (Dictionary_2_System_Object_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x01323BB0, bool, Dictionary_2_System_Object_System_Object__TryGetValue, (Dictionary_2_System_Object_System_Object_ * __this, Object * key, Object * * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0F30, Dictionary_2_System_Object_System_Object__TryGetValue__MethodInfo); DO_APP_FUNC(0x0138C6B0, bool, Dictionary_2_System_Object_System_Object__TryInsert, (Dictionary_2_System_Object_System_Object_ * __this, Object * key, Object * value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_Object_System_Object__get_Count, (Dictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2D18, Dictionary_2_System_Object_System_Object__get_Count__MethodInfo); DO_APP_FUNC(0x0138BF90, Object *, Dictionary_2_System_Object_System_Object__get_Item, (Dictionary_2_System_Object_System_Object_ * __this, Object * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC29E8, Dictionary_2_System_Object_System_Object__get_Item__MethodInfo); DO_APP_FUNC(0x0131C780, Dictionary_2_TKey_TValue_KeyCollection_System_Object_System_Object_ *, Dictionary_2_System_Object_System_Object__get_Keys, (Dictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0E88, Dictionary_2_System_Object_System_Object__get_Keys__MethodInfo); DO_APP_FUNC(0x0131C860, Dictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object_ *, Dictionary_2_System_Object_System_Object__get_Values, (Dictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01321EE0, void, Dictionary_2_System_Object_System_Object__set_Item, (Dictionary_2_System_Object_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2A28, Dictionary_2_System_Object_System_Object__set_Item__MethodInfo); DO_APP_FUNC(0x011C1C90, void, Dictionary_2_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___ctor, (Dictionary_2_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131C2E0, void, Dictionary_2_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___ctor_1, (Dictionary_2_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, IDictionary_2_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * dictionary, MethodInfo * method)); DO_APP_FUNC(0x010786D0, void, Dictionary_2_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___ctor_2, (Dictionary_2_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, IEqualityComparer_1_System_Object_ * comparer, MethodInfo * method)); @@ -133740,7 +147757,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_Object_Opsive_Ultimat DO_APP_FUNC(0x01385EC0, void, Dictionary_2_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__System_Collections_IDictionary_set_Item, (Dictionary_2_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x0131D0B0, IEnumerator *, Dictionary_2_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01355CC0, bool, Dictionary_2_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__TryAdd, (Dictionary_2_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, Object * key, ObjectSurface value, MethodInfo * method)); -DO_APP_FUNC(0x0138F870, bool, Dictionary_2_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__TryGetValue, (Dictionary_2_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, Object * key, ObjectSurface value, MethodInfo * method)); +DO_APP_FUNC(0x0138F870, bool, Dictionary_2_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__TryGetValue, (Dictionary_2_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, Object * key, ObjectSurface * value, MethodInfo * method)); DO_APP_FUNC(0x0138E9B0, bool, Dictionary_2_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__TryInsert, (Dictionary_2_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, Object * key, ObjectSurface value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__get_Count, (Dictionary_2_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01383E00, ObjectSurface, Dictionary_2_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__get_Item, (Dictionary_2_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, Object * key, MethodInfo * method)); @@ -133793,7 +147810,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_Object_Opsive_Ultimat DO_APP_FUNC(0x013929B0, void, Dictionary_2_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__System_Collections_IDictionary_set_Item, (Dictionary_2_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01390AB0, IEnumerator *, Dictionary_2_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01392290, bool, Dictionary_2_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__TryAdd, (Dictionary_2_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, Object * key, OriginalMaterialValue value, MethodInfo * method)); -DO_APP_FUNC(0x013921F0, bool, Dictionary_2_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__TryGetValue, (Dictionary_2_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, Object * key, OriginalMaterialValue value, MethodInfo * method)); +DO_APP_FUNC(0x013921F0, bool, Dictionary_2_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__TryGetValue, (Dictionary_2_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, Object * key, OriginalMaterialValue * value, MethodInfo * method)); DO_APP_FUNC(0x01391370, bool, Dictionary_2_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__TryInsert, (Dictionary_2_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, Object * key, OriginalMaterialValue value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__get_Count, (Dictionary_2_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013902E0, OriginalMaterialValue, Dictionary_2_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__get_Item, (Dictionary_2_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, Object * key, MethodInfo * method)); @@ -133846,7 +147863,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_Object_UnityEngine_Pl DO_APP_FUNC(0x01385EC0, void, Dictionary_2_System_Object_UnityEngine_Playables_Playable__System_Collections_IDictionary_set_Item, (Dictionary_2_System_Object_UnityEngine_Playables_Playable_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x0131D0B0, IEnumerator *, Dictionary_2_System_Object_UnityEngine_Playables_Playable__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_Object_UnityEngine_Playables_Playable_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01355CC0, bool, Dictionary_2_System_Object_UnityEngine_Playables_Playable__TryAdd, (Dictionary_2_System_Object_UnityEngine_Playables_Playable_ * __this, Object * key, Playable value, MethodInfo * method)); -DO_APP_FUNC(0x01385810, bool, Dictionary_2_System_Object_UnityEngine_Playables_Playable__TryGetValue, (Dictionary_2_System_Object_UnityEngine_Playables_Playable_ * __this, Object * key, Playable value, MethodInfo * method)); +DO_APP_FUNC(0x01385810, bool, Dictionary_2_System_Object_UnityEngine_Playables_Playable__TryGetValue, (Dictionary_2_System_Object_UnityEngine_Playables_Playable_ * __this, Object * key, Playable * value, MethodInfo * method)); DO_APP_FUNC(0x013849D0, bool, Dictionary_2_System_Object_UnityEngine_Playables_Playable__TryInsert, (Dictionary_2_System_Object_UnityEngine_Playables_Playable_ * __this, Object * key, Playable value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_Object_UnityEngine_Playables_Playable__get_Count, (Dictionary_2_System_Object_UnityEngine_Playables_Playable_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01383E00, Playable, Dictionary_2_System_Object_UnityEngine_Playables_Playable__get_Item, (Dictionary_2_System_Object_UnityEngine_Playables_Playable_ * __this, Object * key, MethodInfo * method)); @@ -133899,7 +147916,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_Object_UnityEngine_Ex DO_APP_FUNC(0x0137A7C0, void, Dictionary_2_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__System_Collections_IDictionary_set_Item, (Dictionary_2_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01360050, IEnumerator *, Dictionary_2_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013618D0, bool, Dictionary_2_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__TryAdd, (Dictionary_2_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ * __this, Object * key, ProbeVolumeBakingProcessSettings value, MethodInfo * method)); -DO_APP_FUNC(0x01395FC0, bool, Dictionary_2_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__TryGetValue, (Dictionary_2_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ * __this, Object * key, ProbeVolumeBakingProcessSettings value, MethodInfo * method)); +DO_APP_FUNC(0x01395FC0, bool, Dictionary_2_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__TryGetValue, (Dictionary_2_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ * __this, Object * key, ProbeVolumeBakingProcessSettings * value, MethodInfo * method)); DO_APP_FUNC(0x01395130, bool, Dictionary_2_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__TryInsert, (Dictionary_2_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ * __this, Object * key, ProbeVolumeBakingProcessSettings value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__get_Count, (Dictionary_2_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013784C0, ProbeVolumeBakingProcessSettings, Dictionary_2_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__get_Item, (Dictionary_2_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ * __this, Object * key, MethodInfo * method)); @@ -133952,7 +147969,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_Object_System_Resourc DO_APP_FUNC(0x01385EC0, void, Dictionary_2_System_Object_System_Resources_ResourceLocator__System_Collections_IDictionary_set_Item, (Dictionary_2_System_Object_System_Resources_ResourceLocator_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x0131D0B0, IEnumerator *, Dictionary_2_System_Object_System_Resources_ResourceLocator__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_Object_System_Resources_ResourceLocator_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01355CC0, bool, Dictionary_2_System_Object_System_Resources_ResourceLocator__TryAdd, (Dictionary_2_System_Object_System_Resources_ResourceLocator_ * __this, Object * key, ResourceLocator value, MethodInfo * method)); -DO_APP_FUNC(0x0138F870, bool, Dictionary_2_System_Object_System_Resources_ResourceLocator__TryGetValue, (Dictionary_2_System_Object_System_Resources_ResourceLocator_ * __this, Object * key, ResourceLocator value, MethodInfo * method)); +DO_APP_FUNC(0x0138F870, bool, Dictionary_2_System_Object_System_Resources_ResourceLocator__TryGetValue, (Dictionary_2_System_Object_System_Resources_ResourceLocator_ * __this, Object * key, ResourceLocator * value, MethodInfo * method)); DO_APP_FUNC(0x0138E9B0, bool, Dictionary_2_System_Object_System_Resources_ResourceLocator__TryInsert, (Dictionary_2_System_Object_System_Resources_ResourceLocator_ * __this, Object * key, ResourceLocator value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_Object_System_Resources_ResourceLocator__get_Count, (Dictionary_2_System_Object_System_Resources_ResourceLocator_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01383E00, ResourceLocator, Dictionary_2_System_Object_System_Resources_ResourceLocator__get_Item, (Dictionary_2_System_Object_System_Resources_ResourceLocator_ * __this, Object * key, MethodInfo * method)); @@ -134005,7 +148022,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_Object_System_Single_ DO_APP_FUNC(0x01399C40, void, Dictionary_2_System_Object_System_Single__System_Collections_IDictionary_set_Item, (Dictionary_2_System_Object_System_Single_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x013224A0, IEnumerator *, Dictionary_2_System_Object_System_Single__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_Object_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0135A750, bool, Dictionary_2_System_Object_System_Single__TryAdd, (Dictionary_2_System_Object_System_Single_ * __this, Object * key, float value, MethodInfo * method)); -DO_APP_FUNC(0x01387CC0, bool, Dictionary_2_System_Object_System_Single__TryGetValue, (Dictionary_2_System_Object_System_Single_ * __this, Object * key, float value, MethodInfo * method)); +DO_APP_FUNC(0x01387CC0, bool, Dictionary_2_System_Object_System_Single__TryGetValue, (Dictionary_2_System_Object_System_Single_ * __this, Object * key, float * value, MethodInfo * method)); DO_APP_FUNC(0x01398A50, bool, Dictionary_2_System_Object_System_Single__TryInsert, (Dictionary_2_System_Object_System_Single_ * __this, Object * key, float value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_Object_System_Single__get_Count, (Dictionary_2_System_Object_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01398030, float, Dictionary_2_System_Object_System_Single__get_Item, (Dictionary_2_System_Object_System_Single_ * __this, Object * key, MethodInfo * method)); @@ -134058,7 +148075,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_Object_UnityEngine_UI DO_APP_FUNC(0x01385EC0, void, Dictionary_2_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue__System_Collections_IDictionary_set_Item, (Dictionary_2_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x0131D0B0, IEnumerator *, Dictionary_2_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01355CC0, bool, Dictionary_2_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue__TryAdd, (Dictionary_2_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, Object * key, StylePropertyValue value, MethodInfo * method)); -DO_APP_FUNC(0x0138F870, bool, Dictionary_2_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue__TryGetValue, (Dictionary_2_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, Object * key, StylePropertyValue value, MethodInfo * method)); +DO_APP_FUNC(0x0138F870, bool, Dictionary_2_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue__TryGetValue, (Dictionary_2_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, Object * key, StylePropertyValue * value, MethodInfo * method)); DO_APP_FUNC(0x0138E9B0, bool, Dictionary_2_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue__TryInsert, (Dictionary_2_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, Object * key, StylePropertyValue value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue__get_Count, (Dictionary_2_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01383E00, StylePropertyValue, Dictionary_2_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue__get_Item, (Dictionary_2_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, Object * key, MethodInfo * method)); @@ -134111,7 +148128,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_Object_UnityEngine_UI DO_APP_FUNC(0x01388340, void, Dictionary_2_System_Object_UnityEngine_UIElements_TextureId__System_Collections_IDictionary_set_Item, (Dictionary_2_System_Object_UnityEngine_UIElements_TextureId_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x013224A0, IEnumerator *, Dictionary_2_System_Object_UnityEngine_UIElements_TextureId__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_Object_UnityEngine_UIElements_TextureId_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01323C60, bool, Dictionary_2_System_Object_UnityEngine_UIElements_TextureId__TryAdd, (Dictionary_2_System_Object_UnityEngine_UIElements_TextureId_ * __this, Object * key, TextureId value, MethodInfo * method)); -DO_APP_FUNC(0x01387CC0, bool, Dictionary_2_System_Object_UnityEngine_UIElements_TextureId__TryGetValue, (Dictionary_2_System_Object_UnityEngine_UIElements_TextureId_ * __this, Object * key, TextureId value, MethodInfo * method)); +DO_APP_FUNC(0x01387CC0, bool, Dictionary_2_System_Object_UnityEngine_UIElements_TextureId__TryGetValue, (Dictionary_2_System_Object_UnityEngine_UIElements_TextureId_ * __this, Object * key, TextureId * value, MethodInfo * method)); DO_APP_FUNC(0x013870E0, bool, Dictionary_2_System_Object_UnityEngine_UIElements_TextureId__TryInsert, (Dictionary_2_System_Object_UnityEngine_UIElements_TextureId_ * __this, Object * key, TextureId value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_Object_UnityEngine_UIElements_TextureId__get_Count, (Dictionary_2_System_Object_UnityEngine_UIElements_TextureId_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01386710, TextureId, Dictionary_2_System_Object_UnityEngine_UIElements_TextureId__get_Item, (Dictionary_2_System_Object_UnityEngine_UIElements_TextureId_ * __this, Object * key, MethodInfo * method)); @@ -134164,7 +148181,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_Object_System_TimeSpa DO_APP_FUNC(0x0139EC80, void, Dictionary_2_System_Object_System_TimeSpan__System_Collections_IDictionary_set_Item, (Dictionary_2_System_Object_System_TimeSpan_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x013224A0, IEnumerator *, Dictionary_2_System_Object_System_TimeSpan__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_Object_System_TimeSpan_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01323C60, bool, Dictionary_2_System_Object_System_TimeSpan__TryAdd, (Dictionary_2_System_Object_System_TimeSpan_ * __this, Object * key, TimeSpan value, MethodInfo * method)); -DO_APP_FUNC(0x01351220, bool, Dictionary_2_System_Object_System_TimeSpan__TryGetValue, (Dictionary_2_System_Object_System_TimeSpan_ * __this, Object * key, TimeSpan value, MethodInfo * method)); +DO_APP_FUNC(0x01351220, bool, Dictionary_2_System_Object_System_TimeSpan__TryGetValue, (Dictionary_2_System_Object_System_TimeSpan_ * __this, Object * key, TimeSpan * value, MethodInfo * method)); DO_APP_FUNC(0x0139DAA0, bool, Dictionary_2_System_Object_System_TimeSpan__TryInsert, (Dictionary_2_System_Object_System_TimeSpan_ * __this, Object * key, TimeSpan value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_Object_System_TimeSpan__get_Count, (Dictionary_2_System_Object_System_TimeSpan_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0139D0D0, TimeSpan, Dictionary_2_System_Object_System_TimeSpan__get_Item, (Dictionary_2_System_Object_System_TimeSpan_ * __this, Object * key, MethodInfo * method)); @@ -134217,7 +148234,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_Object_UdpKit_UdpEndP DO_APP_FUNC(0x013A1580, void, Dictionary_2_System_Object_UdpKit_UdpEndPoint__System_Collections_IDictionary_set_Item, (Dictionary_2_System_Object_UdpKit_UdpEndPoint_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01360050, IEnumerator *, Dictionary_2_System_Object_UdpKit_UdpEndPoint__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_Object_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013A0E70, bool, Dictionary_2_System_Object_UdpKit_UdpEndPoint__TryAdd, (Dictionary_2_System_Object_UdpKit_UdpEndPoint_ * __this, Object * key, UdpEndPoint value, MethodInfo * method)); -DO_APP_FUNC(0x013A0DD0, bool, Dictionary_2_System_Object_UdpKit_UdpEndPoint__TryGetValue, (Dictionary_2_System_Object_UdpKit_UdpEndPoint_ * __this, Object * key, UdpEndPoint value, MethodInfo * method)); +DO_APP_FUNC(0x013A0DD0, bool, Dictionary_2_System_Object_UdpKit_UdpEndPoint__TryGetValue, (Dictionary_2_System_Object_UdpKit_UdpEndPoint_ * __this, Object * key, UdpEndPoint * value, MethodInfo * method)); DO_APP_FUNC(0x013A01A0, bool, Dictionary_2_System_Object_UdpKit_UdpEndPoint__TryInsert, (Dictionary_2_System_Object_UdpKit_UdpEndPoint_ * __this, Object * key, UdpEndPoint value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_Object_UdpKit_UdpEndPoint__get_Count, (Dictionary_2_System_Object_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0139F540, UdpEndPoint, Dictionary_2_System_Object_UdpKit_UdpEndPoint__get_Item, (Dictionary_2_System_Object_UdpKit_UdpEndPoint_ * __this, Object * key, MethodInfo * method)); @@ -134270,7 +148287,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_Object_UnityEngine_Ve DO_APP_FUNC(0x013A3BF0, void, Dictionary_2_System_Object_UnityEngine_Vector2__System_Collections_IDictionary_set_Item, (Dictionary_2_System_Object_UnityEngine_Vector2_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x013224A0, IEnumerator *, Dictionary_2_System_Object_UnityEngine_Vector2__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_Object_UnityEngine_Vector2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013A3580, bool, Dictionary_2_System_Object_UnityEngine_Vector2__TryAdd, (Dictionary_2_System_Object_UnityEngine_Vector2_ * __this, Object * key, Vector2 value, MethodInfo * method)); -DO_APP_FUNC(0x013A3500, bool, Dictionary_2_System_Object_UnityEngine_Vector2__TryGetValue, (Dictionary_2_System_Object_UnityEngine_Vector2_ * __this, Object * key, Vector2 value, MethodInfo * method)); +DO_APP_FUNC(0x013A3500, bool, Dictionary_2_System_Object_UnityEngine_Vector2__TryGetValue, (Dictionary_2_System_Object_UnityEngine_Vector2_ * __this, Object * key, Vector2 * value, MethodInfo * method)); DO_APP_FUNC(0x013A2910, bool, Dictionary_2_System_Object_UnityEngine_Vector2__TryInsert, (Dictionary_2_System_Object_UnityEngine_Vector2_ * __this, Object * key, Vector2 value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_Object_UnityEngine_Vector2__get_Count, (Dictionary_2_System_Object_UnityEngine_Vector2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013A1E10, Vector2, Dictionary_2_System_Object_UnityEngine_Vector2__get_Item, (Dictionary_2_System_Object_UnityEngine_Vector2_ * __this, Object * key, MethodInfo * method)); @@ -134323,7 +148340,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_Object_UnityEngine_Ve DO_APP_FUNC(0x013A6250, void, Dictionary_2_System_Object_UnityEngine_Vector3__System_Collections_IDictionary_set_Item, (Dictionary_2_System_Object_UnityEngine_Vector3_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x0131D0B0, IEnumerator *, Dictionary_2_System_Object_UnityEngine_Vector3__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_Object_UnityEngine_Vector3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0134B610, bool, Dictionary_2_System_Object_UnityEngine_Vector3__TryAdd, (Dictionary_2_System_Object_UnityEngine_Vector3_ * __this, Object * key, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x013A5B80, bool, Dictionary_2_System_Object_UnityEngine_Vector3__TryGetValue, (Dictionary_2_System_Object_UnityEngine_Vector3_ * __this, Object * key, Vector3 value, MethodInfo * method)); +DO_APP_FUNC(0x013A5B80, bool, Dictionary_2_System_Object_UnityEngine_Vector3__TryGetValue, (Dictionary_2_System_Object_UnityEngine_Vector3_ * __this, Object * key, Vector3 * value, MethodInfo * method)); DO_APP_FUNC(0x013A4F90, bool, Dictionary_2_System_Object_UnityEngine_Vector3__TryInsert, (Dictionary_2_System_Object_UnityEngine_Vector3_ * __this, Object * key, Vector3 value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_Object_UnityEngine_Vector3__get_Count, (Dictionary_2_System_Object_UnityEngine_Vector3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013A4490, Vector3, Dictionary_2_System_Object_UnityEngine_Vector3__get_Item, (Dictionary_2_System_Object_UnityEngine_Vector3_ * __this, Object * key, MethodInfo * method)); @@ -134376,7 +148393,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_Object_UnityEngine_In DO_APP_FUNC(0x013A9ED0, void, Dictionary_2_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__System_Collections_IDictionary_set_Item, (Dictionary_2_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x013A79B0, IEnumerator *, Dictionary_2_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013A9580, bool, Dictionary_2_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__TryAdd, (Dictionary_2_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, Object * key, InputControlLayout_ControlItem value, MethodInfo * method)); -DO_APP_FUNC(0x013A9390, bool, Dictionary_2_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__TryGetValue, (Dictionary_2_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, Object * key, InputControlLayout_ControlItem value, MethodInfo * method)); +DO_APP_FUNC(0x013A9390, bool, Dictionary_2_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__TryGetValue, (Dictionary_2_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, Object * key, InputControlLayout_ControlItem * value, MethodInfo * method)); DO_APP_FUNC(0x013A82E0, bool, Dictionary_2_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__TryInsert, (Dictionary_2_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, Object * key, InputControlLayout_ControlItem value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__get_Count, (Dictionary_2_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013A6C70, InputControlLayout_ControlItem, Dictionary_2_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__get_Item, (Dictionary_2_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, Object * key, MethodInfo * method)); @@ -134429,7 +148446,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_Object_UnityEngine_In DO_APP_FUNC(0x0139EC80, void, Dictionary_2_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__System_Collections_IDictionary_set_Item, (Dictionary_2_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x013224A0, IEnumerator *, Dictionary_2_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01323C60, bool, Dictionary_2_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__TryAdd, (Dictionary_2_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ * __this, Object * key, InputSystemUIInputModule_InputActionReferenceState value, MethodInfo * method)); -DO_APP_FUNC(0x01351220, bool, Dictionary_2_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__TryGetValue, (Dictionary_2_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ * __this, Object * key, InputSystemUIInputModule_InputActionReferenceState value, MethodInfo * method)); +DO_APP_FUNC(0x01351220, bool, Dictionary_2_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__TryGetValue, (Dictionary_2_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ * __this, Object * key, InputSystemUIInputModule_InputActionReferenceState * value, MethodInfo * method)); DO_APP_FUNC(0x0139DAA0, bool, Dictionary_2_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__TryInsert, (Dictionary_2_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ * __this, Object * key, InputSystemUIInputModule_InputActionReferenceState value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__get_Count, (Dictionary_2_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0139D0D0, InputSystemUIInputModule_InputActionReferenceState, Dictionary_2_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__get_Item, (Dictionary_2_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ * __this, Object * key, MethodInfo * method)); @@ -134482,7 +148499,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_Object_UnityEngine_In DO_APP_FUNC(0x013AEA40, void, Dictionary_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__System_Collections_IDictionary_set_Item, (Dictionary_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x013AC970, IEnumerator *, Dictionary_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013AE290, bool, Dictionary_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__TryAdd, (Dictionary_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, Object * key, JsonParser_JsonValue value, MethodInfo * method)); -DO_APP_FUNC(0x013AE190, bool, Dictionary_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__TryGetValue, (Dictionary_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, Object * key, JsonParser_JsonValue value, MethodInfo * method)); +DO_APP_FUNC(0x013AE190, bool, Dictionary_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__TryGetValue, (Dictionary_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, Object * key, JsonParser_JsonValue * value, MethodInfo * method)); DO_APP_FUNC(0x013AD220, bool, Dictionary_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__TryInsert, (Dictionary_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, Object * key, JsonParser_JsonValue value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__get_Count, (Dictionary_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013AC060, JsonParser_JsonValue, Dictionary_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__get_Item, (Dictionary_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, Object * key, MethodInfo * method)); @@ -134535,7 +148552,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_Object_UnityEngine_Ex DO_APP_FUNC(0x01388340, void, Dictionary_2_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__System_Collections_IDictionary_set_Item, (Dictionary_2_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x013224A0, IEnumerator *, Dictionary_2_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01323C60, bool, Dictionary_2_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__TryAdd, (Dictionary_2_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ * __this, Object * key, ProbeReferenceVolume_RegId value, MethodInfo * method)); -DO_APP_FUNC(0x01387CC0, bool, Dictionary_2_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__TryGetValue, (Dictionary_2_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ * __this, Object * key, ProbeReferenceVolume_RegId value, MethodInfo * method)); +DO_APP_FUNC(0x01387CC0, bool, Dictionary_2_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__TryGetValue, (Dictionary_2_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ * __this, Object * key, ProbeReferenceVolume_RegId * value, MethodInfo * method)); DO_APP_FUNC(0x013870E0, bool, Dictionary_2_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__TryInsert, (Dictionary_2_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ * __this, Object * key, ProbeReferenceVolume_RegId value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__get_Count, (Dictionary_2_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01386710, ProbeReferenceVolume_RegId, Dictionary_2_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__get_Item, (Dictionary_2_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ * __this, Object * key, MethodInfo * method)); @@ -134588,7 +148605,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_Object_UdpKit_Protoco DO_APP_FUNC(0x013929B0, void, Dictionary_2_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback__System_Collections_IDictionary_set_Item, (Dictionary_2_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01390AB0, IEnumerator *, Dictionary_2_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01392290, bool, Dictionary_2_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback__TryAdd, (Dictionary_2_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback_ * __this, Object * key, ProtocolClient_AckCallback value, MethodInfo * method)); -DO_APP_FUNC(0x013BA8E0, bool, Dictionary_2_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback__TryGetValue, (Dictionary_2_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback_ * __this, Object * key, ProtocolClient_AckCallback value, MethodInfo * method)); +DO_APP_FUNC(0x013BA8E0, bool, Dictionary_2_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback__TryGetValue, (Dictionary_2_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback_ * __this, Object * key, ProtocolClient_AckCallback * value, MethodInfo * method)); DO_APP_FUNC(0x013B99E0, bool, Dictionary_2_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback__TryInsert, (Dictionary_2_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback_ * __this, Object * key, ProtocolClient_AckCallback value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback__get_Count, (Dictionary_2_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013902E0, ProtocolClient_AckCallback, Dictionary_2_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback__get_Item, (Dictionary_2_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback_ * __this, Object * key, MethodInfo * method)); @@ -134641,7 +148658,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_Object_UdpKit_Protoco DO_APP_FUNC(0x013929B0, void, Dictionary_2_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler__System_Collections_IDictionary_set_Item, (Dictionary_2_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01390AB0, IEnumerator *, Dictionary_2_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01392290, bool, Dictionary_2_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler__TryAdd, (Dictionary_2_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_ * __this, Object * key, ProtocolClient_MsgHandler value, MethodInfo * method)); -DO_APP_FUNC(0x013BA8E0, bool, Dictionary_2_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler__TryGetValue, (Dictionary_2_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_ * __this, Object * key, ProtocolClient_MsgHandler value, MethodInfo * method)); +DO_APP_FUNC(0x013BA8E0, bool, Dictionary_2_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler__TryGetValue, (Dictionary_2_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_ * __this, Object * key, ProtocolClient_MsgHandler * value, MethodInfo * method)); DO_APP_FUNC(0x013B99E0, bool, Dictionary_2_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler__TryInsert, (Dictionary_2_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_ * __this, Object * key, ProtocolClient_MsgHandler value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler__get_Count, (Dictionary_2_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013902E0, ProtocolClient_MsgHandler, Dictionary_2_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler__get_Item, (Dictionary_2_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_ * __this, Object * key, MethodInfo * method)); @@ -134694,7 +148711,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_Object_UnityEngine_UI DO_APP_FUNC(0x0139EC80, void, Dictionary_2_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__System_Collections_IDictionary_set_Item, (Dictionary_2_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x013224A0, IEnumerator *, Dictionary_2_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01323C60, bool, Dictionary_2_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__TryAdd, (Dictionary_2_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ * __this, Object * key, StyleComplexSelector_PseudoStateData value, MethodInfo * method)); -DO_APP_FUNC(0x01351220, bool, Dictionary_2_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__TryGetValue, (Dictionary_2_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ * __this, Object * key, StyleComplexSelector_PseudoStateData value, MethodInfo * method)); +DO_APP_FUNC(0x01351220, bool, Dictionary_2_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__TryGetValue, (Dictionary_2_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ * __this, Object * key, StyleComplexSelector_PseudoStateData * value, MethodInfo * method)); DO_APP_FUNC(0x0139DAA0, bool, Dictionary_2_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__TryInsert, (Dictionary_2_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ * __this, Object * key, StyleComplexSelector_PseudoStateData value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__get_Count, (Dictionary_2_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0139D0D0, StyleComplexSelector_PseudoStateData, Dictionary_2_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__get_Item, (Dictionary_2_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ * __this, Object * key, MethodInfo * method)); @@ -134747,7 +148764,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_Photon_Bolt_PrefabId_System_ DO_APP_FUNC(0x01375860, void, Dictionary_2_Photon_Bolt_PrefabId_System_Object__System_Collections_IDictionary_set_Item, (Dictionary_2_Photon_Bolt_PrefabId_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x013224A0, IEnumerator *, Dictionary_2_Photon_Bolt_PrefabId_System_Object__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_Photon_Bolt_PrefabId_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01323C60, bool, Dictionary_2_Photon_Bolt_PrefabId_System_Object__TryAdd, (Dictionary_2_Photon_Bolt_PrefabId_System_Object_ * __this, PrefabId key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x01323BB0, bool, Dictionary_2_Photon_Bolt_PrefabId_System_Object__TryGetValue, (Dictionary_2_Photon_Bolt_PrefabId_System_Object_ * __this, PrefabId key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x01323BB0, bool, Dictionary_2_Photon_Bolt_PrefabId_System_Object__TryGetValue, (Dictionary_2_Photon_Bolt_PrefabId_System_Object_ * __this, PrefabId key, Object * * value, MethodInfo * method)); DO_APP_FUNC(0x013BE7F0, bool, Dictionary_2_Photon_Bolt_PrefabId_System_Object__TryInsert, (Dictionary_2_Photon_Bolt_PrefabId_System_Object_ * __this, PrefabId key, Object * value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_Photon_Bolt_PrefabId_System_Object__get_Count, (Dictionary_2_Photon_Bolt_PrefabId_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01373BB0, Object *, Dictionary_2_Photon_Bolt_PrefabId_System_Object__get_Item, (Dictionary_2_Photon_Bolt_PrefabId_System_Object_ * __this, PrefabId key, MethodInfo * method)); @@ -134755,15 +148772,20 @@ DO_APP_FUNC(0x0131C780, Dictionary_2_TKey_TValue_KeyCollection_Photon_Bolt_Prefa DO_APP_FUNC(0x0131C860, Dictionary_2_TKey_TValue_ValueCollection_Photon_Bolt_PrefabId_System_Object_ *, Dictionary_2_Photon_Bolt_PrefabId_System_Object__get_Values, (Dictionary_2_Photon_Bolt_PrefabId_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01321EE0, void, Dictionary_2_Photon_Bolt_PrefabId_System_Object__set_Item, (Dictionary_2_Photon_Bolt_PrefabId_System_Object_ * __this, PrefabId key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x011C1C90, void, Dictionary_2_UnityEngine_RaycastHit_System_Int32___ctor, (Dictionary_2_UnityEngine_RaycastHit_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6E30, Dictionary_2_UnityEngine_RaycastHit_System_Int32___ctor__MethodInfo); DO_APP_FUNC(0x0131C2E0, void, Dictionary_2_UnityEngine_RaycastHit_System_Int32___ctor_1, (Dictionary_2_UnityEngine_RaycastHit_System_Int32_ * __this, IDictionary_2_UnityEngine_RaycastHit_System_Int32_ * dictionary, MethodInfo * method)); DO_APP_FUNC(0x010786D0, void, Dictionary_2_UnityEngine_RaycastHit_System_Int32___ctor_2, (Dictionary_2_UnityEngine_RaycastHit_System_Int32_ * __this, IEqualityComparer_1_UnityEngine_RaycastHit_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5778, Dictionary_2_UnityEngine_RaycastHit_System_Int32___ctor_2__MethodInfo); DO_APP_FUNC(0x010B5EC0, void, Dictionary_2_UnityEngine_RaycastHit_System_Int32___ctor_3, (Dictionary_2_UnityEngine_RaycastHit_System_Int32_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x013BFAF0, void, Dictionary_2_UnityEngine_RaycastHit_System_Int32___ctor_4, (Dictionary_2_UnityEngine_RaycastHit_System_Int32_ * __this, IDictionary_2_UnityEngine_RaycastHit_System_Int32_ * dictionary, IEqualityComparer_1_UnityEngine_RaycastHit_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0131C210, void, Dictionary_2_UnityEngine_RaycastHit_System_Int32___ctor_5, (Dictionary_2_UnityEngine_RaycastHit_System_Int32_ * __this, int32_t capacity, IEqualityComparer_1_UnityEngine_RaycastHit_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x013BFF10, void, Dictionary_2_UnityEngine_RaycastHit_System_Int32___ctor_6, (Dictionary_2_UnityEngine_RaycastHit_System_Int32_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x013C00E0, void, Dictionary_2_UnityEngine_RaycastHit_System_Int32__Add, (Dictionary_2_UnityEngine_RaycastHit_System_Int32_ * __this, RaycastHit key, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5518, Dictionary_2_UnityEngine_RaycastHit_System_Int32__Add__MethodInfo); DO_APP_FUNC(0x0131CC90, void, Dictionary_2_UnityEngine_RaycastHit_System_Int32__Clear, (Dictionary_2_UnityEngine_RaycastHit_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD55E0, Dictionary_2_UnityEngine_RaycastHit_System_Int32__Clear__MethodInfo); DO_APP_FUNC(0x013C03C0, bool, Dictionary_2_UnityEngine_RaycastHit_System_Int32__ContainsKey, (Dictionary_2_UnityEngine_RaycastHit_System_Int32_ * __this, RaycastHit key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5528, Dictionary_2_UnityEngine_RaycastHit_System_Int32__ContainsKey__MethodInfo); DO_APP_FUNC(0x013C0430, bool, Dictionary_2_UnityEngine_RaycastHit_System_Int32__ContainsValue, (Dictionary_2_UnityEngine_RaycastHit_System_Int32_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x013C0520, void, Dictionary_2_UnityEngine_RaycastHit_System_Int32__CopyTo, (Dictionary_2_UnityEngine_RaycastHit_System_Int32_ * __this, KeyValuePair_2_UnityEngine_RaycastHit_System_Int32___Array * array, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x013C0A30, int32_t, Dictionary_2_UnityEngine_RaycastHit_System_Int32__FindEntry, (Dictionary_2_UnityEngine_RaycastHit_System_Int32_ * __this, RaycastHit key, MethodInfo * method)); @@ -134800,10 +148822,11 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_UnityEngine_RaycastHit_Syste DO_APP_FUNC(0x013C2A80, void, Dictionary_2_UnityEngine_RaycastHit_System_Int32__System_Collections_IDictionary_set_Item, (Dictionary_2_UnityEngine_RaycastHit_System_Int32_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01390AB0, IEnumerator *, Dictionary_2_UnityEngine_RaycastHit_System_Int32__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_UnityEngine_RaycastHit_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013C2360, bool, Dictionary_2_UnityEngine_RaycastHit_System_Int32__TryAdd, (Dictionary_2_UnityEngine_RaycastHit_System_Int32_ * __this, RaycastHit key, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x013C22C0, bool, Dictionary_2_UnityEngine_RaycastHit_System_Int32__TryGetValue, (Dictionary_2_UnityEngine_RaycastHit_System_Int32_ * __this, RaycastHit key, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x013C22C0, bool, Dictionary_2_UnityEngine_RaycastHit_System_Int32__TryGetValue, (Dictionary_2_UnityEngine_RaycastHit_System_Int32_ * __this, RaycastHit key, int32_t * value, MethodInfo * method)); DO_APP_FUNC(0x013C1000, bool, Dictionary_2_UnityEngine_RaycastHit_System_Int32__TryInsert, (Dictionary_2_UnityEngine_RaycastHit_System_Int32_ * __this, RaycastHit key, int32_t value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_UnityEngine_RaycastHit_System_Int32__get_Count, (Dictionary_2_UnityEngine_RaycastHit_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013BFFA0, int32_t, Dictionary_2_UnityEngine_RaycastHit_System_Int32__get_Item, (Dictionary_2_UnityEngine_RaycastHit_System_Int32_ * __this, RaycastHit key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD56B8, Dictionary_2_UnityEngine_RaycastHit_System_Int32__get_Item__MethodInfo); DO_APP_FUNC(0x0131C780, Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_RaycastHit_System_Int32_ *, Dictionary_2_UnityEngine_RaycastHit_System_Int32__get_Keys, (Dictionary_2_UnityEngine_RaycastHit_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131C860, Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_RaycastHit_System_Int32_ *, Dictionary_2_UnityEngine_RaycastHit_System_Int32__get_Values, (Dictionary_2_UnityEngine_RaycastHit_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013C0090, void, Dictionary_2_UnityEngine_RaycastHit_System_Int32__set_Item, (Dictionary_2_UnityEngine_RaycastHit_System_Int32_ * __this, RaycastHit key, int32_t value, MethodInfo * method)); @@ -134855,7 +148878,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_Single_SplineMesh_Cur DO_APP_FUNC(0x013C6030, void, Dictionary_2_System_Single_SplineMesh_CurveSample__System_Collections_IDictionary_set_Item, (Dictionary_2_System_Single_SplineMesh_CurveSample_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x013C3F80, IEnumerator *, Dictionary_2_System_Single_SplineMesh_CurveSample__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_Single_SplineMesh_CurveSample_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013C5870, bool, Dictionary_2_System_Single_SplineMesh_CurveSample__TryAdd, (Dictionary_2_System_Single_SplineMesh_CurveSample_ * __this, float key, CurveSample value, MethodInfo * method)); -DO_APP_FUNC(0x013C57C0, bool, Dictionary_2_System_Single_SplineMesh_CurveSample__TryGetValue, (Dictionary_2_System_Single_SplineMesh_CurveSample_ * __this, float key, CurveSample value, MethodInfo * method)); +DO_APP_FUNC(0x013C57C0, bool, Dictionary_2_System_Single_SplineMesh_CurveSample__TryGetValue, (Dictionary_2_System_Single_SplineMesh_CurveSample_ * __this, float key, CurveSample * value, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C921C8, Dictionary_2_System_Single_SplineMesh_CurveSample__TryGetValue__MethodInfo); DO_APP_FUNC(0x013C4890, bool, Dictionary_2_System_Single_SplineMesh_CurveSample__TryInsert, (Dictionary_2_System_Single_SplineMesh_CurveSample_ * __this, float key, CurveSample value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_Single_SplineMesh_CurveSample__get_Count, (Dictionary_2_System_Single_SplineMesh_CurveSample_ * __this, MethodInfo * method)); @@ -134910,7 +148933,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_UnityEngine_TerrainUtils_Ter DO_APP_FUNC(0x01377C20, void, Dictionary_2_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object__System_Collections_IDictionary_set_Item, (Dictionary_2_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x013224A0, IEnumerator *, Dictionary_2_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01323C60, bool, Dictionary_2_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object__TryAdd, (Dictionary_2_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object_ * __this, TerrainTileCoord key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x01323BB0, bool, Dictionary_2_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object__TryGetValue, (Dictionary_2_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object_ * __this, TerrainTileCoord key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x01323BB0, bool, Dictionary_2_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object__TryGetValue, (Dictionary_2_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object_ * __this, TerrainTileCoord key, Object * * value, MethodInfo * method)); DO_APP_FUNC(0x013C7470, bool, Dictionary_2_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object__TryInsert, (Dictionary_2_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object_ * __this, TerrainTileCoord key, Object * value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object__get_Count, (Dictionary_2_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01376080, Object *, Dictionary_2_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object__get_Item, (Dictionary_2_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object_ * __this, TerrainTileCoord key, MethodInfo * method)); @@ -134963,7 +148986,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_UnityEngine_XR_ARSubsystems_ DO_APP_FUNC(0x0131F100, void, Dictionary_2_UnityEngine_XR_ARSubsystems_TrackableId_System_Object__System_Collections_IDictionary_set_Item, (Dictionary_2_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x0131D0B0, IEnumerator *, Dictionary_2_UnityEngine_XR_ARSubsystems_TrackableId_System_Object__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131EA60, bool, Dictionary_2_UnityEngine_XR_ARSubsystems_TrackableId_System_Object__TryAdd, (Dictionary_2_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_ * __this, TrackableId key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x0131E9A0, bool, Dictionary_2_UnityEngine_XR_ARSubsystems_TrackableId_System_Object__TryGetValue, (Dictionary_2_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_ * __this, TrackableId key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0131E9A0, bool, Dictionary_2_UnityEngine_XR_ARSubsystems_TrackableId_System_Object__TryGetValue, (Dictionary_2_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_ * __this, TrackableId key, Object * * value, MethodInfo * method)); DO_APP_FUNC(0x013C9650, bool, Dictionary_2_UnityEngine_XR_ARSubsystems_TrackableId_System_Object__TryInsert, (Dictionary_2_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_ * __this, TrackableId key, Object * value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_UnityEngine_XR_ARSubsystems_TrackableId_System_Object__get_Count, (Dictionary_2_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131C940, Object *, Dictionary_2_UnityEngine_XR_ARSubsystems_TrackableId_System_Object__get_Item, (Dictionary_2_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_ * __this, TrackableId key, MethodInfo * method)); @@ -135016,7 +149039,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_Photon_Bolt_TypeId_System_Ob DO_APP_FUNC(0x01375860, void, Dictionary_2_Photon_Bolt_TypeId_System_Object__System_Collections_IDictionary_set_Item, (Dictionary_2_Photon_Bolt_TypeId_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x013224A0, IEnumerator *, Dictionary_2_Photon_Bolt_TypeId_System_Object__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_Photon_Bolt_TypeId_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01323C60, bool, Dictionary_2_Photon_Bolt_TypeId_System_Object__TryAdd, (Dictionary_2_Photon_Bolt_TypeId_System_Object_ * __this, TypeId key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x01323BB0, bool, Dictionary_2_Photon_Bolt_TypeId_System_Object__TryGetValue, (Dictionary_2_Photon_Bolt_TypeId_System_Object_ * __this, TypeId key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x01323BB0, bool, Dictionary_2_Photon_Bolt_TypeId_System_Object__TryGetValue, (Dictionary_2_Photon_Bolt_TypeId_System_Object_ * __this, TypeId key, Object * * value, MethodInfo * method)); DO_APP_FUNC(0x013BE7F0, bool, Dictionary_2_Photon_Bolt_TypeId_System_Object__TryInsert, (Dictionary_2_Photon_Bolt_TypeId_System_Object_ * __this, TypeId key, Object * value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_Photon_Bolt_TypeId_System_Object__get_Count, (Dictionary_2_Photon_Bolt_TypeId_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01373BB0, Object *, Dictionary_2_Photon_Bolt_TypeId_System_Object__get_Item, (Dictionary_2_Photon_Bolt_TypeId_System_Object_ * __this, TypeId key, MethodInfo * method)); @@ -135069,7 +149092,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_UInt16_System_Object_ DO_APP_FUNC(0x013CE570, void, Dictionary_2_System_UInt16_System_Object__System_Collections_IDictionary_set_Item, (Dictionary_2_System_UInt16_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x013224A0, IEnumerator *, Dictionary_2_System_UInt16_System_Object__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_UInt16_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01323C60, bool, Dictionary_2_System_UInt16_System_Object__TryAdd, (Dictionary_2_System_UInt16_System_Object_ * __this, uint16_t key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x01323BB0, bool, Dictionary_2_System_UInt16_System_Object__TryGetValue, (Dictionary_2_System_UInt16_System_Object_ * __this, uint16_t key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x01323BB0, bool, Dictionary_2_System_UInt16_System_Object__TryGetValue, (Dictionary_2_System_UInt16_System_Object_ * __this, uint16_t key, Object * * value, MethodInfo * method)); DO_APP_FUNC(0x013CD150, bool, Dictionary_2_System_UInt16_System_Object__TryInsert, (Dictionary_2_System_UInt16_System_Object_ * __this, uint16_t key, Object * value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_UInt16_System_Object__get_Count, (Dictionary_2_System_UInt16_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013CC590, Object *, Dictionary_2_System_UInt16_System_Object__get_Item, (Dictionary_2_System_UInt16_System_Object_ * __this, uint16_t key, MethodInfo * method)); @@ -135122,7 +149145,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_UInt16_Dissonance_Pla DO_APP_FUNC(0x013D1330, void, Dictionary_2_System_UInt16_Dissonance_PlayerChannel__System_Collections_IDictionary_set_Item, (Dictionary_2_System_UInt16_Dissonance_PlayerChannel_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01360050, IEnumerator *, Dictionary_2_System_UInt16_Dissonance_PlayerChannel__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_UInt16_Dissonance_PlayerChannel_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013618D0, bool, Dictionary_2_System_UInt16_Dissonance_PlayerChannel__TryAdd, (Dictionary_2_System_UInt16_Dissonance_PlayerChannel_ * __this, uint16_t key, PlayerChannel value, MethodInfo * method)); -DO_APP_FUNC(0x013D0B90, bool, Dictionary_2_System_UInt16_Dissonance_PlayerChannel__TryGetValue, (Dictionary_2_System_UInt16_Dissonance_PlayerChannel_ * __this, uint16_t key, PlayerChannel value, MethodInfo * method)); +DO_APP_FUNC(0x013D0B90, bool, Dictionary_2_System_UInt16_Dissonance_PlayerChannel__TryGetValue, (Dictionary_2_System_UInt16_Dissonance_PlayerChannel_ * __this, uint16_t key, PlayerChannel * value, MethodInfo * method)); DO_APP_FUNC(0x013CFCC0, bool, Dictionary_2_System_UInt16_Dissonance_PlayerChannel__TryInsert, (Dictionary_2_System_UInt16_Dissonance_PlayerChannel_ * __this, uint16_t key, PlayerChannel value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_UInt16_Dissonance_PlayerChannel__get_Count, (Dictionary_2_System_UInt16_Dissonance_PlayerChannel_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013CEFF0, PlayerChannel, Dictionary_2_System_UInt16_Dissonance_PlayerChannel__get_Item, (Dictionary_2_System_UInt16_Dissonance_PlayerChannel_ * __this, uint16_t key, MethodInfo * method)); @@ -135175,7 +149198,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_UInt16_Dissonance_Roo DO_APP_FUNC(0x013D3FA0, void, Dictionary_2_System_UInt16_Dissonance_RoomChannel__System_Collections_IDictionary_set_Item, (Dictionary_2_System_UInt16_Dissonance_RoomChannel_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01390AB0, IEnumerator *, Dictionary_2_System_UInt16_Dissonance_RoomChannel__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_UInt16_Dissonance_RoomChannel_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01392290, bool, Dictionary_2_System_UInt16_Dissonance_RoomChannel__TryAdd, (Dictionary_2_System_UInt16_Dissonance_RoomChannel_ * __this, uint16_t key, RoomChannel value, MethodInfo * method)); -DO_APP_FUNC(0x013D37F0, bool, Dictionary_2_System_UInt16_Dissonance_RoomChannel__TryGetValue, (Dictionary_2_System_UInt16_Dissonance_RoomChannel_ * __this, uint16_t key, RoomChannel value, MethodInfo * method)); +DO_APP_FUNC(0x013D37F0, bool, Dictionary_2_System_UInt16_Dissonance_RoomChannel__TryGetValue, (Dictionary_2_System_UInt16_Dissonance_RoomChannel_ * __this, uint16_t key, RoomChannel * value, MethodInfo * method)); DO_APP_FUNC(0x013D2900, bool, Dictionary_2_System_UInt16_Dissonance_RoomChannel__TryInsert, (Dictionary_2_System_UInt16_Dissonance_RoomChannel_ * __this, uint16_t key, RoomChannel value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_UInt16_Dissonance_RoomChannel__get_Count, (Dictionary_2_System_UInt16_Dissonance_RoomChannel_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013D1C00, RoomChannel, Dictionary_2_System_UInt16_Dissonance_RoomChannel__get_Item, (Dictionary_2_System_UInt16_Dissonance_RoomChannel_ * __this, uint16_t key, MethodInfo * method)); @@ -135183,6 +149206,7 @@ DO_APP_FUNC(0x0131C780, Dictionary_2_TKey_TValue_KeyCollection_System_UInt16_Dis DO_APP_FUNC(0x0131C860, Dictionary_2_TKey_TValue_ValueCollection_System_UInt16_Dissonance_RoomChannel_ *, Dictionary_2_System_UInt16_Dissonance_RoomChannel__get_Values, (Dictionary_2_System_UInt16_Dissonance_RoomChannel_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01390380, void, Dictionary_2_System_UInt16_Dissonance_RoomChannel__set_Item, (Dictionary_2_System_UInt16_Dissonance_RoomChannel_ * __this, uint16_t key, RoomChannel value, MethodInfo * method)); DO_APP_FUNC(0x011C1C90, void, Dictionary_2_System_UInt32_System_Boolean___ctor, (Dictionary_2_System_UInt32_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5560, Dictionary_2_System_UInt32_System_Boolean___ctor__MethodInfo); DO_APP_FUNC(0x0131C2E0, void, Dictionary_2_System_UInt32_System_Boolean___ctor_1, (Dictionary_2_System_UInt32_System_Boolean_ * __this, IDictionary_2_System_UInt32_System_Boolean_ * dictionary, MethodInfo * method)); DO_APP_FUNC(0x010786D0, void, Dictionary_2_System_UInt32_System_Boolean___ctor_2, (Dictionary_2_System_UInt32_System_Boolean_ * __this, IEqualityComparer_1_System_UInt32_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010B5EC0, void, Dictionary_2_System_UInt32_System_Boolean___ctor_3, (Dictionary_2_System_UInt32_System_Boolean_ * __this, int32_t capacity, MethodInfo * method)); @@ -135190,12 +149214,15 @@ DO_APP_FUNC(0x013D43D0, void, Dictionary_2_System_UInt32_System_Boolean___ctor_4 DO_APP_FUNC(0x0131C210, void, Dictionary_2_System_UInt32_System_Boolean___ctor_5, (Dictionary_2_System_UInt32_System_Boolean_ * __this, int32_t capacity, IEqualityComparer_1_System_UInt32_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x013D4770, void, Dictionary_2_System_UInt32_System_Boolean___ctor_6, (Dictionary_2_System_UInt32_System_Boolean_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x01321F10, void, Dictionary_2_System_UInt32_System_Boolean__Add, (Dictionary_2_System_UInt32_System_Boolean_ * __this, uint32_t key, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5970, Dictionary_2_System_UInt32_System_Boolean__Add__MethodInfo); DO_APP_FUNC(0x0131CC90, void, Dictionary_2_System_UInt32_System_Boolean__Clear, (Dictionary_2_System_UInt32_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5968, Dictionary_2_System_UInt32_System_Boolean__Clear__MethodInfo); DO_APP_FUNC(0x01322140, bool, Dictionary_2_System_UInt32_System_Boolean__ContainsKey, (Dictionary_2_System_UInt32_System_Boolean_ * __this, uint32_t key, MethodInfo * method)); DO_APP_FUNC(0x0133F090, bool, Dictionary_2_System_UInt32_System_Boolean__ContainsValue, (Dictionary_2_System_UInt32_System_Boolean_ * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x0133F180, void, Dictionary_2_System_UInt32_System_Boolean__CopyTo, (Dictionary_2_System_UInt32_System_Boolean_ * __this, KeyValuePair_2_System_UInt32_System_Boolean___Array * array, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x0133F640, int32_t, Dictionary_2_System_UInt32_System_Boolean__FindEntry, (Dictionary_2_System_UInt32_System_Boolean_ * __this, uint32_t key, MethodInfo * method)); DO_APP_FUNC(0x013251E0, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Boolean_, Dictionary_2_System_UInt32_System_Boolean__GetEnumerator, (Dictionary_2_System_UInt32_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8018, Dictionary_2_System_UInt32_System_Boolean__GetEnumerator__MethodInfo); DO_APP_FUNC(0x013D4800, void, Dictionary_2_System_UInt32_System_Boolean__GetObjectData, (Dictionary_2_System_UInt32_System_Boolean_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x013D4BB0, int32_t, Dictionary_2_System_UInt32_System_Boolean__Initialize, (Dictionary_2_System_UInt32_System_Boolean_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x0131F300, bool, Dictionary_2_System_UInt32_System_Boolean__IsCompatibleKey, (Object * key, MethodInfo * method)); @@ -135228,14 +149255,16 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_UInt32_System_Boolean DO_APP_FUNC(0x01340EB0, void, Dictionary_2_System_UInt32_System_Boolean__System_Collections_IDictionary_set_Item, (Dictionary_2_System_UInt32_System_Boolean_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01325270, IEnumerator *, Dictionary_2_System_UInt32_System_Boolean__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_UInt32_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01323C60, bool, Dictionary_2_System_UInt32_System_Boolean__TryAdd, (Dictionary_2_System_UInt32_System_Boolean_ * __this, uint32_t key, bool value, MethodInfo * method)); -DO_APP_FUNC(0x01340800, bool, Dictionary_2_System_UInt32_System_Boolean__TryGetValue, (Dictionary_2_System_UInt32_System_Boolean_ * __this, uint32_t key, bool value, MethodInfo * method)); +DO_APP_FUNC(0x01340800, bool, Dictionary_2_System_UInt32_System_Boolean__TryGetValue, (Dictionary_2_System_UInt32_System_Boolean_ * __this, uint32_t key, bool * value, MethodInfo * method)); DO_APP_FUNC(0x0133FA40, bool, Dictionary_2_System_UInt32_System_Boolean__TryInsert, (Dictionary_2_System_UInt32_System_Boolean_ * __this, uint32_t key, bool value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_UInt32_System_Boolean__get_Count, (Dictionary_2_System_UInt32_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8008, Dictionary_2_System_UInt32_System_Boolean__get_Count__MethodInfo); DO_APP_FUNC(0x0133EE10, bool, Dictionary_2_System_UInt32_System_Boolean__get_Item, (Dictionary_2_System_UInt32_System_Boolean_ * __this, uint32_t key, MethodInfo * method)); DO_APP_FUNC(0x0131C780, Dictionary_2_TKey_TValue_KeyCollection_System_UInt32_System_Boolean_ *, Dictionary_2_System_UInt32_System_Boolean__get_Keys, (Dictionary_2_System_UInt32_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131C860, Dictionary_2_TKey_TValue_ValueCollection_System_UInt32_System_Boolean_ *, Dictionary_2_System_UInt32_System_Boolean__get_Values, (Dictionary_2_System_UInt32_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01321EE0, void, Dictionary_2_System_UInt32_System_Boolean__set_Item, (Dictionary_2_System_UInt32_System_Boolean_ * __this, uint32_t key, bool value, MethodInfo * method)); DO_APP_FUNC(0x011C1C90, void, Dictionary_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___ctor, (Dictionary_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D20BD8, Dictionary_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___ctor__MethodInfo); DO_APP_FUNC(0x0131C2E0, void, Dictionary_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___ctor_1, (Dictionary_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, IDictionary_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * dictionary, MethodInfo * method)); DO_APP_FUNC(0x010786D0, void, Dictionary_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___ctor_2, (Dictionary_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, IEqualityComparer_1_System_UInt32_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010B5EC0, void, Dictionary_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___ctor_3, (Dictionary_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, int32_t capacity, MethodInfo * method)); @@ -135243,8 +149272,11 @@ DO_APP_FUNC(0x013D59C0, void, Dictionary_2_System_UInt32_UnityEngine_TextCore_Lo DO_APP_FUNC(0x0131C210, void, Dictionary_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___ctor_5, (Dictionary_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, int32_t capacity, IEqualityComparer_1_System_UInt32_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x013D5E00, void, Dictionary_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___ctor_6, (Dictionary_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x013D5FC0, void, Dictionary_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__Add, (Dictionary_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, uint32_t key, GlyphPairAdjustmentRecord value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D20BF8, Dictionary_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__Add__MethodInfo); DO_APP_FUNC(0x0131CC90, void, Dictionary_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__Clear, (Dictionary_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D20BF0, Dictionary_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__Clear__MethodInfo); DO_APP_FUNC(0x01322140, bool, Dictionary_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__ContainsKey, (Dictionary_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, uint32_t key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D20BE0, Dictionary_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__ContainsKey__MethodInfo); DO_APP_FUNC(0x013D6310, bool, Dictionary_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__ContainsValue, (Dictionary_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, GlyphPairAdjustmentRecord value, MethodInfo * method)); DO_APP_FUNC(0x013D6460, void, Dictionary_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__CopyTo, (Dictionary_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, KeyValuePair_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___Array * array, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x013D6990, int32_t, Dictionary_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__FindEntry, (Dictionary_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, uint32_t key, MethodInfo * method)); @@ -135281,7 +149313,8 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_UInt32_UnityEngine_Te DO_APP_FUNC(0x013D8400, void, Dictionary_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__System_Collections_IDictionary_set_Item, (Dictionary_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01390AB0, IEnumerator *, Dictionary_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013D7CC0, bool, Dictionary_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__TryAdd, (Dictionary_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, uint32_t key, GlyphPairAdjustmentRecord value, MethodInfo * method)); -DO_APP_FUNC(0x013D7C20, bool, Dictionary_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__TryGetValue, (Dictionary_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, uint32_t key, GlyphPairAdjustmentRecord value, MethodInfo * method)); +DO_APP_FUNC(0x013D7C20, bool, Dictionary_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__TryGetValue, (Dictionary_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, uint32_t key, GlyphPairAdjustmentRecord * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E488, Dictionary_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__TryGetValue__MethodInfo); DO_APP_FUNC(0x013D6D90, bool, Dictionary_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__TryInsert, (Dictionary_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, uint32_t key, GlyphPairAdjustmentRecord value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__get_Count, (Dictionary_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013D5E90, GlyphPairAdjustmentRecord, Dictionary_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__get_Item, (Dictionary_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, uint32_t key, MethodInfo * method)); @@ -135289,6 +149322,7 @@ DO_APP_FUNC(0x0131C780, Dictionary_2_TKey_TValue_KeyCollection_System_UInt32_Uni DO_APP_FUNC(0x0131C860, Dictionary_2_TKey_TValue_ValueCollection_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ *, Dictionary_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__get_Values, (Dictionary_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013D5F60, void, Dictionary_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__set_Item, (Dictionary_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, uint32_t key, GlyphPairAdjustmentRecord value, MethodInfo * method)); DO_APP_FUNC(0x011C1C90, void, Dictionary_2_System_UInt32_System_Int32___ctor, (Dictionary_2_System_UInt32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24190, Dictionary_2_System_UInt32_System_Int32___ctor__MethodInfo); DO_APP_FUNC(0x0131C2E0, void, Dictionary_2_System_UInt32_System_Int32___ctor_1, (Dictionary_2_System_UInt32_System_Int32_ * __this, IDictionary_2_System_UInt32_System_Int32_ * dictionary, MethodInfo * method)); DO_APP_FUNC(0x010786D0, void, Dictionary_2_System_UInt32_System_Int32___ctor_2, (Dictionary_2_System_UInt32_System_Int32_ * __this, IEqualityComparer_1_System_UInt32_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010B5EC0, void, Dictionary_2_System_UInt32_System_Int32___ctor_3, (Dictionary_2_System_UInt32_System_Int32_ * __this, int32_t capacity, MethodInfo * method)); @@ -135296,9 +149330,11 @@ DO_APP_FUNC(0x013D8840, void, Dictionary_2_System_UInt32_System_Int32___ctor_4, DO_APP_FUNC(0x0131C210, void, Dictionary_2_System_UInt32_System_Int32___ctor_5, (Dictionary_2_System_UInt32_System_Int32_ * __this, int32_t capacity, IEqualityComparer_1_System_UInt32_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x013D8BE0, void, Dictionary_2_System_UInt32_System_Int32___ctor_6, (Dictionary_2_System_UInt32_System_Int32_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x01321F10, void, Dictionary_2_System_UInt32_System_Int32__Add, (Dictionary_2_System_UInt32_System_Int32_ * __this, uint32_t key, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24210, Dictionary_2_System_UInt32_System_Int32__Add__MethodInfo); DO_APP_FUNC(0x0131CC90, void, Dictionary_2_System_UInt32_System_Int32__Clear, (Dictionary_2_System_UInt32_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA6B08, Dictionary_2_System_UInt32_System_Int32__Clear__MethodInfo); DO_APP_FUNC(0x01322140, bool, Dictionary_2_System_UInt32_System_Int32__ContainsKey, (Dictionary_2_System_UInt32_System_Int32_ * __this, uint32_t key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24198, Dictionary_2_System_UInt32_System_Int32__ContainsKey__MethodInfo); DO_APP_FUNC(0x01324FE0, bool, Dictionary_2_System_UInt32_System_Int32__ContainsValue, (Dictionary_2_System_UInt32_System_Int32_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x0134C690, void, Dictionary_2_System_UInt32_System_Int32__CopyTo, (Dictionary_2_System_UInt32_System_Int32_ * __this, KeyValuePair_2_System_UInt32_System_Int32___Array * array, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x0133F640, int32_t, Dictionary_2_System_UInt32_System_Int32__FindEntry, (Dictionary_2_System_UInt32_System_Int32_ * __this, uint32_t key, MethodInfo * method)); @@ -135335,14 +149371,17 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_UInt32_System_Int32__ DO_APP_FUNC(0x0134DE90, void, Dictionary_2_System_UInt32_System_Int32__System_Collections_IDictionary_set_Item, (Dictionary_2_System_UInt32_System_Int32_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01325270, IEnumerator *, Dictionary_2_System_UInt32_System_Int32__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_UInt32_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01323C60, bool, Dictionary_2_System_UInt32_System_Int32__TryAdd, (Dictionary_2_System_UInt32_System_Int32_ * __this, uint32_t key, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x013268E0, bool, Dictionary_2_System_UInt32_System_Int32__TryGetValue, (Dictionary_2_System_UInt32_System_Int32_ * __this, uint32_t key, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x013268E0, bool, Dictionary_2_System_UInt32_System_Int32__TryGetValue, (Dictionary_2_System_UInt32_System_Int32_ * __this, uint32_t key, int32_t * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24208, Dictionary_2_System_UInt32_System_Int32__TryGetValue__MethodInfo); DO_APP_FUNC(0x0134CCD0, bool, Dictionary_2_System_UInt32_System_Int32__TryInsert, (Dictionary_2_System_UInt32_System_Int32_ * __this, uint32_t key, int32_t value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_UInt32_System_Int32__get_Count, (Dictionary_2_System_UInt32_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0134C4F0, int32_t, Dictionary_2_System_UInt32_System_Int32__get_Item, (Dictionary_2_System_UInt32_System_Int32_ * __this, uint32_t key, MethodInfo * method)); DO_APP_FUNC(0x0131C780, Dictionary_2_TKey_TValue_KeyCollection_System_UInt32_System_Int32_ *, Dictionary_2_System_UInt32_System_Int32__get_Keys, (Dictionary_2_System_UInt32_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131C860, Dictionary_2_TKey_TValue_ValueCollection_System_UInt32_System_Int32_ *, Dictionary_2_System_UInt32_System_Int32__get_Values, (Dictionary_2_System_UInt32_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01321EE0, void, Dictionary_2_System_UInt32_System_Int32__set_Item, (Dictionary_2_System_UInt32_System_Int32_ * __this, uint32_t key, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D241A0, Dictionary_2_System_UInt32_System_Int32__set_Item__MethodInfo); DO_APP_FUNC(0x011C1C90, void, Dictionary_2_System_UInt32_System_Object___ctor, (Dictionary_2_System_UInt32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0748, Dictionary_2_System_UInt32_System_Object___ctor__MethodInfo); DO_APP_FUNC(0x0131C2E0, void, Dictionary_2_System_UInt32_System_Object___ctor_1, (Dictionary_2_System_UInt32_System_Object_ * __this, IDictionary_2_System_UInt32_System_Object_ * dictionary, MethodInfo * method)); DO_APP_FUNC(0x010786D0, void, Dictionary_2_System_UInt32_System_Object___ctor_2, (Dictionary_2_System_UInt32_System_Object_ * __this, IEqualityComparer_1_System_UInt32_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010B5EC0, void, Dictionary_2_System_UInt32_System_Object___ctor_3, (Dictionary_2_System_UInt32_System_Object_ * __this, int32_t capacity, MethodInfo * method)); @@ -135350,6 +149389,7 @@ DO_APP_FUNC(0x013D9E10, void, Dictionary_2_System_UInt32_System_Object___ctor_4, DO_APP_FUNC(0x0131C210, void, Dictionary_2_System_UInt32_System_Object___ctor_5, (Dictionary_2_System_UInt32_System_Object_ * __this, int32_t capacity, IEqualityComparer_1_System_UInt32_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x013DA1C0, void, Dictionary_2_System_UInt32_System_Object___ctor_6, (Dictionary_2_System_UInt32_System_Object_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x01321F10, void, Dictionary_2_System_UInt32_System_Object__Add, (Dictionary_2_System_UInt32_System_Object_ * __this, uint32_t key, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0768, Dictionary_2_System_UInt32_System_Object__Add__MethodInfo); DO_APP_FUNC(0x0131CC90, void, Dictionary_2_System_UInt32_System_Object__Clear, (Dictionary_2_System_UInt32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01322140, bool, Dictionary_2_System_UInt32_System_Object__ContainsKey, (Dictionary_2_System_UInt32_System_Object_ * __this, uint32_t key, MethodInfo * method)); DO_APP_FUNC(0x01322180, bool, Dictionary_2_System_UInt32_System_Object__ContainsValue, (Dictionary_2_System_UInt32_System_Object_ * __this, Object * value, MethodInfo * method)); @@ -135361,6 +149401,7 @@ DO_APP_FUNC(0x013DA600, int32_t, Dictionary_2_System_UInt32_System_Object__Initi DO_APP_FUNC(0x0131F300, bool, Dictionary_2_System_UInt32_System_Object__IsCompatibleKey, (Object * key, MethodInfo * method)); DO_APP_FUNC(0x013DA780, void, Dictionary_2_System_UInt32_System_Object__OnDeserialization, (Dictionary_2_System_UInt32_System_Object_ * __this, Object * sender, MethodInfo * method)); DO_APP_FUNC(0x01352FE0, bool, Dictionary_2_System_UInt32_System_Object__Remove, (Dictionary_2_System_UInt32_System_Object_ * __this, uint32_t key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0758, Dictionary_2_System_UInt32_System_Object__Remove__MethodInfo); DO_APP_FUNC(0x013DABF0, void, Dictionary_2_System_UInt32_System_Object__Resize, (Dictionary_2_System_UInt32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013DAC80, void, Dictionary_2_System_UInt32_System_Object__Resize_1, (Dictionary_2_System_UInt32_System_Object_ * __this, int32_t newSize, bool forceNewHashCodes, MethodInfo * method)); DO_APP_FUNC(0x0134FD20, void, Dictionary_2_System_UInt32_System_Object__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add, (Dictionary_2_System_UInt32_System_Object_ * __this, KeyValuePair_2_System_UInt32_System_Object_ keyValuePair, MethodInfo * method)); @@ -135388,7 +149429,8 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_UInt32_System_Object_ DO_APP_FUNC(0x013537B0, void, Dictionary_2_System_UInt32_System_Object__System_Collections_IDictionary_set_Item, (Dictionary_2_System_UInt32_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x013224A0, IEnumerator *, Dictionary_2_System_UInt32_System_Object__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_UInt32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01323C60, bool, Dictionary_2_System_UInt32_System_Object__TryAdd, (Dictionary_2_System_UInt32_System_Object_ * __this, uint32_t key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x01323BB0, bool, Dictionary_2_System_UInt32_System_Object__TryGetValue, (Dictionary_2_System_UInt32_System_Object_ * __this, uint32_t key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x01323BB0, bool, Dictionary_2_System_UInt32_System_Object__TryGetValue, (Dictionary_2_System_UInt32_System_Object_ * __this, uint32_t key, Object * * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE658, Dictionary_2_System_UInt32_System_Object__TryGetValue__MethodInfo); DO_APP_FUNC(0x013523A0, bool, Dictionary_2_System_UInt32_System_Object__TryInsert, (Dictionary_2_System_UInt32_System_Object_ * __this, uint32_t key, Object * value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_UInt32_System_Object__get_Count, (Dictionary_2_System_UInt32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0134FC80, Object *, Dictionary_2_System_UInt32_System_Object__get_Item, (Dictionary_2_System_UInt32_System_Object_ * __this, uint32_t key, MethodInfo * method)); @@ -135396,6 +149438,7 @@ DO_APP_FUNC(0x0131C780, Dictionary_2_TKey_TValue_KeyCollection_System_UInt32_Sys DO_APP_FUNC(0x0131C860, Dictionary_2_TKey_TValue_ValueCollection_System_UInt32_System_Object_ *, Dictionary_2_System_UInt32_System_Object__get_Values, (Dictionary_2_System_UInt32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01321EE0, void, Dictionary_2_System_UInt32_System_Object__set_Item, (Dictionary_2_System_UInt32_System_Object_ * __this, uint32_t key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x011C1C90, void, Dictionary_2_System_UInt32_SessionClient___ctor, (Dictionary_2_System_UInt32_SessionClient_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD63A8, Dictionary_2_System_UInt32_SessionClient___ctor__MethodInfo); DO_APP_FUNC(0x0131C2E0, void, Dictionary_2_System_UInt32_SessionClient___ctor_1, (Dictionary_2_System_UInt32_SessionClient_ * __this, IDictionary_2_System_UInt32_SessionClient_ * dictionary, MethodInfo * method)); DO_APP_FUNC(0x010786D0, void, Dictionary_2_System_UInt32_SessionClient___ctor_2, (Dictionary_2_System_UInt32_SessionClient_ * __this, IEqualityComparer_1_System_UInt32_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010B5EC0, void, Dictionary_2_System_UInt32_SessionClient___ctor_3, (Dictionary_2_System_UInt32_SessionClient_ * __this, int32_t capacity, MethodInfo * method)); @@ -135403,8 +149446,11 @@ DO_APP_FUNC(0x013DB3D0, void, Dictionary_2_System_UInt32_SessionClient___ctor_4, DO_APP_FUNC(0x0131C210, void, Dictionary_2_System_UInt32_SessionClient___ctor_5, (Dictionary_2_System_UInt32_SessionClient_ * __this, int32_t capacity, IEqualityComparer_1_System_UInt32_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x013DB840, void, Dictionary_2_System_UInt32_SessionClient___ctor_6, (Dictionary_2_System_UInt32_SessionClient_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x013DBA00, void, Dictionary_2_System_UInt32_SessionClient__Add, (Dictionary_2_System_UInt32_SessionClient_ * __this, uint32_t key, SessionClient value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6378, Dictionary_2_System_UInt32_SessionClient__Add__MethodInfo); DO_APP_FUNC(0x0131CC90, void, Dictionary_2_System_UInt32_SessionClient__Clear, (Dictionary_2_System_UInt32_SessionClient_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6388, Dictionary_2_System_UInt32_SessionClient__Clear__MethodInfo); DO_APP_FUNC(0x01322140, bool, Dictionary_2_System_UInt32_SessionClient__ContainsKey, (Dictionary_2_System_UInt32_SessionClient_ * __this, uint32_t key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6358, Dictionary_2_System_UInt32_SessionClient__ContainsKey__MethodInfo); DO_APP_FUNC(0x013DBD50, bool, Dictionary_2_System_UInt32_SessionClient__ContainsValue, (Dictionary_2_System_UInt32_SessionClient_ * __this, SessionClient value, MethodInfo * method)); DO_APP_FUNC(0x013DBEB0, void, Dictionary_2_System_UInt32_SessionClient__CopyTo, (Dictionary_2_System_UInt32_SessionClient_ * __this, KeyValuePair_2_System_UInt32_SessionClient___Array * array, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x013DC610, int32_t, Dictionary_2_System_UInt32_SessionClient__FindEntry, (Dictionary_2_System_UInt32_SessionClient_ * __this, uint32_t key, MethodInfo * method)); @@ -135414,6 +149460,7 @@ DO_APP_FUNC(0x013DC890, int32_t, Dictionary_2_System_UInt32_SessionClient__Initi DO_APP_FUNC(0x0131F300, bool, Dictionary_2_System_UInt32_SessionClient__IsCompatibleKey, (Object * key, MethodInfo * method)); DO_APP_FUNC(0x013DCF20, void, Dictionary_2_System_UInt32_SessionClient__OnDeserialization, (Dictionary_2_System_UInt32_SessionClient_ * __this, Object * sender, MethodInfo * method)); DO_APP_FUNC(0x013DD700, bool, Dictionary_2_System_UInt32_SessionClient__Remove, (Dictionary_2_System_UInt32_SessionClient_ * __this, uint32_t key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6348, Dictionary_2_System_UInt32_SessionClient__Remove__MethodInfo); DO_APP_FUNC(0x013DD3D0, void, Dictionary_2_System_UInt32_SessionClient__Resize, (Dictionary_2_System_UInt32_SessionClient_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013DD460, void, Dictionary_2_System_UInt32_SessionClient__Resize_1, (Dictionary_2_System_UInt32_SessionClient_ * __this, int32_t newSize, bool forceNewHashCodes, MethodInfo * method)); DO_APP_FUNC(0x013DBA60, void, Dictionary_2_System_UInt32_SessionClient__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add, (Dictionary_2_System_UInt32_SessionClient_ * __this, KeyValuePair_2_System_UInt32_SessionClient_ keyValuePair, MethodInfo * method)); @@ -135441,13 +149488,16 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_UInt32_SessionClient_ DO_APP_FUNC(0x013DE170, void, Dictionary_2_System_UInt32_SessionClient__System_Collections_IDictionary_set_Item, (Dictionary_2_System_UInt32_SessionClient_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x013DC130, IEnumerator *, Dictionary_2_System_UInt32_SessionClient__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_UInt32_SessionClient_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013DDA10, bool, Dictionary_2_System_UInt32_SessionClient__TryAdd, (Dictionary_2_System_UInt32_SessionClient_ * __this, uint32_t key, SessionClient value, MethodInfo * method)); -DO_APP_FUNC(0x013DD930, bool, Dictionary_2_System_UInt32_SessionClient__TryGetValue, (Dictionary_2_System_UInt32_SessionClient_ * __this, uint32_t key, SessionClient value, MethodInfo * method)); +DO_APP_FUNC(0x013DD930, bool, Dictionary_2_System_UInt32_SessionClient__TryGetValue, (Dictionary_2_System_UInt32_SessionClient_ * __this, uint32_t key, SessionClient * value, MethodInfo * method)); DO_APP_FUNC(0x013DCA10, bool, Dictionary_2_System_UInt32_SessionClient__TryInsert, (Dictionary_2_System_UInt32_SessionClient_ * __this, uint32_t key, SessionClient value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_UInt32_SessionClient__get_Count, (Dictionary_2_System_UInt32_SessionClient_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013DB8D0, SessionClient, Dictionary_2_System_UInt32_SessionClient__get_Item, (Dictionary_2_System_UInt32_SessionClient_ * __this, uint32_t key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6368, Dictionary_2_System_UInt32_SessionClient__get_Item__MethodInfo); DO_APP_FUNC(0x0131C780, Dictionary_2_TKey_TValue_KeyCollection_System_UInt32_SessionClient_ *, Dictionary_2_System_UInt32_SessionClient__get_Keys, (Dictionary_2_System_UInt32_SessionClient_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6370, Dictionary_2_System_UInt32_SessionClient__get_Keys__MethodInfo); DO_APP_FUNC(0x0131C860, Dictionary_2_TKey_TValue_ValueCollection_System_UInt32_SessionClient_ *, Dictionary_2_System_UInt32_SessionClient__get_Values, (Dictionary_2_System_UInt32_SessionClient_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013DB9A0, void, Dictionary_2_System_UInt32_SessionClient__set_Item, (Dictionary_2_System_UInt32_SessionClient_ * __this, uint32_t key, SessionClient value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6360, Dictionary_2_System_UInt32_SessionClient__set_Item__MethodInfo); DO_APP_FUNC(0x011C1C90, void, Dictionary_2_System_UInt64_System_Object___ctor, (Dictionary_2_System_UInt64_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131C2E0, void, Dictionary_2_System_UInt64_System_Object___ctor_1, (Dictionary_2_System_UInt64_System_Object_ * __this, IDictionary_2_System_UInt64_System_Object_ * dictionary, MethodInfo * method)); DO_APP_FUNC(0x010786D0, void, Dictionary_2_System_UInt64_System_Object___ctor_2, (Dictionary_2_System_UInt64_System_Object_ * __this, IEqualityComparer_1_System_UInt64_ * comparer, MethodInfo * method)); @@ -135494,7 +149544,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_UInt64_System_Object_ DO_APP_FUNC(0x0136AAF0, void, Dictionary_2_System_UInt64_System_Object__System_Collections_IDictionary_set_Item, (Dictionary_2_System_UInt64_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x013224A0, IEnumerator *, Dictionary_2_System_UInt64_System_Object__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_UInt64_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01323C60, bool, Dictionary_2_System_UInt64_System_Object__TryAdd, (Dictionary_2_System_UInt64_System_Object_ * __this, uint64_t key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x01323BB0, bool, Dictionary_2_System_UInt64_System_Object__TryGetValue, (Dictionary_2_System_UInt64_System_Object_ * __this, uint64_t key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x01323BB0, bool, Dictionary_2_System_UInt64_System_Object__TryGetValue, (Dictionary_2_System_UInt64_System_Object_ * __this, uint64_t key, Object * * value, MethodInfo * method)); DO_APP_FUNC(0x013DF2E0, bool, Dictionary_2_System_UInt64_System_Object__TryInsert, (Dictionary_2_System_UInt64_System_Object_ * __this, uint64_t key, Object * value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_UInt64_System_Object__get_Count, (Dictionary_2_System_UInt64_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01368B20, Object *, Dictionary_2_System_UInt64_System_Object__get_Item, (Dictionary_2_System_UInt64_System_Object_ * __this, uint64_t key, MethodInfo * method)); @@ -135502,6 +149552,7 @@ DO_APP_FUNC(0x0131C780, Dictionary_2_TKey_TValue_KeyCollection_System_UInt64_Sys DO_APP_FUNC(0x0131C860, Dictionary_2_TKey_TValue_ValueCollection_System_UInt64_System_Object_ *, Dictionary_2_System_UInt64_System_Object__get_Values, (Dictionary_2_System_UInt64_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01321EE0, void, Dictionary_2_System_UInt64_System_Object__set_Item, (Dictionary_2_System_UInt64_System_Object_ * __this, uint64_t key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x011C1C90, void, Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___ctor, (Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1CE18, Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___ctor__MethodInfo); DO_APP_FUNC(0x0131C2E0, void, Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___ctor_1, (Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, IDictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * dictionary, MethodInfo * method)); DO_APP_FUNC(0x010786D0, void, Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___ctor_2, (Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, IEqualityComparer_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010B5EC0, void, Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___ctor_3, (Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, int32_t capacity, MethodInfo * method)); @@ -135509,8 +149560,10 @@ DO_APP_FUNC(0x013E05E0, void, Dictionary_2_Opsive_UltimateCharacterController_Su DO_APP_FUNC(0x0131C210, void, Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___ctor_5, (Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, int32_t capacity, IEqualityComparer_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x013E0A20, void, Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___ctor_6, (Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x013E0BE0, void, Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__Add, (Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, UVTexture key, ObjectSurface value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D020, Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__Add__MethodInfo); DO_APP_FUNC(0x0131CC90, void, Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__Clear, (Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01329230, bool, Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__ContainsKey, (Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, UVTexture key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D000, Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__ContainsKey__MethodInfo); DO_APP_FUNC(0x013E0EC0, bool, Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__ContainsValue, (Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, ObjectSurface value, MethodInfo * method)); DO_APP_FUNC(0x013E0FD0, void, Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__CopyTo, (Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, KeyValuePair_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Array * array, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x013E1520, int32_t, Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__FindEntry, (Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, UVTexture key, MethodInfo * method)); @@ -135547,7 +149600,8 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_Opsive_UltimateCharacterCont DO_APP_FUNC(0x013E35F0, void, Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__System_Collections_IDictionary_set_Item, (Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01360050, IEnumerator *, Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013E2EA0, bool, Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__TryAdd, (Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, UVTexture key, ObjectSurface value, MethodInfo * method)); -DO_APP_FUNC(0x013E2DD0, bool, Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__TryGetValue, (Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, UVTexture key, ObjectSurface value, MethodInfo * method)); +DO_APP_FUNC(0x013E2DD0, bool, Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__TryGetValue, (Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, UVTexture key, ObjectSurface * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1CF40, Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__TryGetValue__MethodInfo); DO_APP_FUNC(0x013E1A80, bool, Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__TryInsert, (Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, UVTexture key, ObjectSurface value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__get_Count, (Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013E0AB0, ObjectSurface, Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__get_Item, (Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, UVTexture key, MethodInfo * method)); @@ -135600,7 +149654,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_UdpKit_UdpChannelName_System DO_APP_FUNC(0x0131F100, void, Dictionary_2_UdpKit_UdpChannelName_System_Object__System_Collections_IDictionary_set_Item, (Dictionary_2_UdpKit_UdpChannelName_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x0131D0B0, IEnumerator *, Dictionary_2_UdpKit_UdpChannelName_System_Object__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_UdpKit_UdpChannelName_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131EA60, bool, Dictionary_2_UdpKit_UdpChannelName_System_Object__TryAdd, (Dictionary_2_UdpKit_UdpChannelName_System_Object_ * __this, UdpChannelName key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x0131E9A0, bool, Dictionary_2_UdpKit_UdpChannelName_System_Object__TryGetValue, (Dictionary_2_UdpKit_UdpChannelName_System_Object_ * __this, UdpChannelName key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0131E9A0, bool, Dictionary_2_UdpKit_UdpChannelName_System_Object__TryGetValue, (Dictionary_2_UdpKit_UdpChannelName_System_Object_ * __this, UdpChannelName key, Object * * value, MethodInfo * method)); DO_APP_FUNC(0x013E48D0, bool, Dictionary_2_UdpKit_UdpChannelName_System_Object__TryInsert, (Dictionary_2_UdpKit_UdpChannelName_System_Object_ * __this, UdpChannelName key, Object * value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_UdpKit_UdpChannelName_System_Object__get_Count, (Dictionary_2_UdpKit_UdpChannelName_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131C940, Object *, Dictionary_2_UdpKit_UdpChannelName_System_Object__get_Item, (Dictionary_2_UdpKit_UdpChannelName_System_Object_ * __this, UdpChannelName key, MethodInfo * method)); @@ -135653,7 +149707,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_UdpKit_UdpEndPoint_System_Ob DO_APP_FUNC(0x013E8D10, void, Dictionary_2_UdpKit_UdpEndPoint_System_Object__System_Collections_IDictionary_set_Item, (Dictionary_2_UdpKit_UdpEndPoint_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01360050, IEnumerator *, Dictionary_2_UdpKit_UdpEndPoint_System_Object__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_UdpKit_UdpEndPoint_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013E8640, bool, Dictionary_2_UdpKit_UdpEndPoint_System_Object__TryAdd, (Dictionary_2_UdpKit_UdpEndPoint_System_Object_ * __this, UdpEndPoint key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x013E8570, bool, Dictionary_2_UdpKit_UdpEndPoint_System_Object__TryGetValue, (Dictionary_2_UdpKit_UdpEndPoint_System_Object_ * __this, UdpEndPoint key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x013E8570, bool, Dictionary_2_UdpKit_UdpEndPoint_System_Object__TryGetValue, (Dictionary_2_UdpKit_UdpEndPoint_System_Object_ * __this, UdpEndPoint key, Object * * value, MethodInfo * method)); DO_APP_FUNC(0x013E7430, bool, Dictionary_2_UdpKit_UdpEndPoint_System_Object__TryInsert, (Dictionary_2_UdpKit_UdpEndPoint_System_Object_ * __this, UdpEndPoint key, Object * value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_UdpKit_UdpEndPoint_System_Object__get_Count, (Dictionary_2_UdpKit_UdpEndPoint_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013E6400, Object *, Dictionary_2_UdpKit_UdpEndPoint_System_Object__get_Item, (Dictionary_2_UdpKit_UdpEndPoint_System_Object_ * __this, UdpEndPoint key, MethodInfo * method)); @@ -135661,6 +149715,7 @@ DO_APP_FUNC(0x0131C780, Dictionary_2_TKey_TValue_KeyCollection_UdpKit_UdpEndPoin DO_APP_FUNC(0x0131C860, Dictionary_2_TKey_TValue_ValueCollection_UdpKit_UdpEndPoint_System_Object_ *, Dictionary_2_UdpKit_UdpEndPoint_System_Object__get_Values, (Dictionary_2_UdpKit_UdpEndPoint_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013E64E0, void, Dictionary_2_UdpKit_UdpEndPoint_System_Object__set_Item, (Dictionary_2_UdpKit_UdpEndPoint_System_Object_ * __this, UdpEndPoint key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x011C1C90, void, Dictionary_2_UdpKit_UdpEndPoint_System_UInt32___ctor, (Dictionary_2_UdpKit_UdpEndPoint_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7838, Dictionary_2_UdpKit_UdpEndPoint_System_UInt32___ctor__MethodInfo); DO_APP_FUNC(0x0131C2E0, void, Dictionary_2_UdpKit_UdpEndPoint_System_UInt32___ctor_1, (Dictionary_2_UdpKit_UdpEndPoint_System_UInt32_ * __this, IDictionary_2_UdpKit_UdpEndPoint_System_UInt32_ * dictionary, MethodInfo * method)); DO_APP_FUNC(0x010786D0, void, Dictionary_2_UdpKit_UdpEndPoint_System_UInt32___ctor_2, (Dictionary_2_UdpKit_UdpEndPoint_System_UInt32_ * __this, IEqualityComparer_1_UdpKit_UdpEndPoint_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010B5EC0, void, Dictionary_2_UdpKit_UdpEndPoint_System_UInt32___ctor_3, (Dictionary_2_UdpKit_UdpEndPoint_System_UInt32_ * __this, int32_t capacity, MethodInfo * method)); @@ -135669,6 +149724,7 @@ DO_APP_FUNC(0x0131C210, void, Dictionary_2_UdpKit_UdpEndPoint_System_UInt32___ct DO_APP_FUNC(0x013E9780, void, Dictionary_2_UdpKit_UdpEndPoint_System_UInt32___ctor_6, (Dictionary_2_UdpKit_UdpEndPoint_System_UInt32_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x013E6530, void, Dictionary_2_UdpKit_UdpEndPoint_System_UInt32__Add, (Dictionary_2_UdpKit_UdpEndPoint_System_UInt32_ * __this, UdpEndPoint key, uint32_t value, MethodInfo * method)); DO_APP_FUNC(0x0131CC90, void, Dictionary_2_UdpKit_UdpEndPoint_System_UInt32__Clear, (Dictionary_2_UdpKit_UdpEndPoint_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7740, Dictionary_2_UdpKit_UdpEndPoint_System_UInt32__Clear__MethodInfo); DO_APP_FUNC(0x013E6800, bool, Dictionary_2_UdpKit_UdpEndPoint_System_UInt32__ContainsKey, (Dictionary_2_UdpKit_UdpEndPoint_System_UInt32_ * __this, UdpEndPoint key, MethodInfo * method)); DO_APP_FUNC(0x013E9B60, bool, Dictionary_2_UdpKit_UdpEndPoint_System_UInt32__ContainsValue, (Dictionary_2_UdpKit_UdpEndPoint_System_UInt32_ * __this, uint32_t value, MethodInfo * method)); DO_APP_FUNC(0x013E9C50, void, Dictionary_2_UdpKit_UdpEndPoint_System_UInt32__CopyTo, (Dictionary_2_UdpKit_UdpEndPoint_System_UInt32_ * __this, KeyValuePair_2_UdpKit_UdpEndPoint_System_UInt32___Array * array, int32_t index, MethodInfo * method)); @@ -135679,6 +149735,7 @@ DO_APP_FUNC(0x013EA4F0, int32_t, Dictionary_2_UdpKit_UdpEndPoint_System_UInt32__ DO_APP_FUNC(0x0131F300, bool, Dictionary_2_UdpKit_UdpEndPoint_System_UInt32__IsCompatibleKey, (Object * key, MethodInfo * method)); DO_APP_FUNC(0x013EABC0, void, Dictionary_2_UdpKit_UdpEndPoint_System_UInt32__OnDeserialization, (Dictionary_2_UdpKit_UdpEndPoint_System_UInt32_ * __this, Object * sender, MethodInfo * method)); DO_APP_FUNC(0x013EB400, bool, Dictionary_2_UdpKit_UdpEndPoint_System_UInt32__Remove, (Dictionary_2_UdpKit_UdpEndPoint_System_UInt32_ * __this, UdpEndPoint key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7700, Dictionary_2_UdpKit_UdpEndPoint_System_UInt32__Remove__MethodInfo); DO_APP_FUNC(0x013EB070, void, Dictionary_2_UdpKit_UdpEndPoint_System_UInt32__Resize, (Dictionary_2_UdpKit_UdpEndPoint_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013EB100, void, Dictionary_2_UdpKit_UdpEndPoint_System_UInt32__Resize_1, (Dictionary_2_UdpKit_UdpEndPoint_System_UInt32_ * __this, int32_t newSize, bool forceNewHashCodes, MethodInfo * method)); DO_APP_FUNC(0x013E98E0, void, Dictionary_2_UdpKit_UdpEndPoint_System_UInt32__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add, (Dictionary_2_UdpKit_UdpEndPoint_System_UInt32_ * __this, KeyValuePair_2_UdpKit_UdpEndPoint_System_UInt32_ keyValuePair, MethodInfo * method)); @@ -135706,13 +149763,15 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_UdpKit_UdpEndPoint_System_UI DO_APP_FUNC(0x013EBE30, void, Dictionary_2_UdpKit_UdpEndPoint_System_UInt32__System_Collections_IDictionary_set_Item, (Dictionary_2_UdpKit_UdpEndPoint_System_UInt32_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01329620, IEnumerator *, Dictionary_2_UdpKit_UdpEndPoint_System_UInt32__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_UdpKit_UdpEndPoint_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013E8640, bool, Dictionary_2_UdpKit_UdpEndPoint_System_UInt32__TryAdd, (Dictionary_2_UdpKit_UdpEndPoint_System_UInt32_ * __this, UdpEndPoint key, uint32_t value, MethodInfo * method)); -DO_APP_FUNC(0x013EB710, bool, Dictionary_2_UdpKit_UdpEndPoint_System_UInt32__TryGetValue, (Dictionary_2_UdpKit_UdpEndPoint_System_UInt32_ * __this, UdpEndPoint key, uint32_t value, MethodInfo * method)); +DO_APP_FUNC(0x013EB710, bool, Dictionary_2_UdpKit_UdpEndPoint_System_UInt32__TryGetValue, (Dictionary_2_UdpKit_UdpEndPoint_System_UInt32_ * __this, UdpEndPoint key, uint32_t * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7730, Dictionary_2_UdpKit_UdpEndPoint_System_UInt32__TryGetValue__MethodInfo); DO_APP_FUNC(0x013EA670, bool, Dictionary_2_UdpKit_UdpEndPoint_System_UInt32__TryInsert, (Dictionary_2_UdpKit_UdpEndPoint_System_UInt32_ * __this, UdpEndPoint key, uint32_t value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_UdpKit_UdpEndPoint_System_UInt32__get_Count, (Dictionary_2_UdpKit_UdpEndPoint_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013E9810, uint32_t, Dictionary_2_UdpKit_UdpEndPoint_System_UInt32__get_Item, (Dictionary_2_UdpKit_UdpEndPoint_System_UInt32_ * __this, UdpEndPoint key, MethodInfo * method)); DO_APP_FUNC(0x0131C780, Dictionary_2_TKey_TValue_KeyCollection_UdpKit_UdpEndPoint_System_UInt32_ *, Dictionary_2_UdpKit_UdpEndPoint_System_UInt32__get_Keys, (Dictionary_2_UdpKit_UdpEndPoint_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131C860, Dictionary_2_TKey_TValue_ValueCollection_UdpKit_UdpEndPoint_System_UInt32_ *, Dictionary_2_UdpKit_UdpEndPoint_System_UInt32__get_Values, (Dictionary_2_UdpKit_UdpEndPoint_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013E64E0, void, Dictionary_2_UdpKit_UdpEndPoint_System_UInt32__set_Item, (Dictionary_2_UdpKit_UdpEndPoint_System_UInt32_ * __this, UdpEndPoint key, uint32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7738, Dictionary_2_UdpKit_UdpEndPoint_System_UInt32__set_Item__MethodInfo); DO_APP_FUNC(0x011C1C90, void, Dictionary_2_Photon_Bolt_UniqueId_System_Object___ctor, (Dictionary_2_Photon_Bolt_UniqueId_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131C2E0, void, Dictionary_2_Photon_Bolt_UniqueId_System_Object___ctor_1, (Dictionary_2_Photon_Bolt_UniqueId_System_Object_ * __this, IDictionary_2_Photon_Bolt_UniqueId_System_Object_ * dictionary, MethodInfo * method)); DO_APP_FUNC(0x010786D0, void, Dictionary_2_Photon_Bolt_UniqueId_System_Object___ctor_2, (Dictionary_2_Photon_Bolt_UniqueId_System_Object_ * __this, IEqualityComparer_1_Photon_Bolt_UniqueId_ * comparer, MethodInfo * method)); @@ -135759,7 +149818,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_Photon_Bolt_UniqueId_System_ DO_APP_FUNC(0x0131F100, void, Dictionary_2_Photon_Bolt_UniqueId_System_Object__System_Collections_IDictionary_set_Item, (Dictionary_2_Photon_Bolt_UniqueId_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x0131D0B0, IEnumerator *, Dictionary_2_Photon_Bolt_UniqueId_System_Object__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_Photon_Bolt_UniqueId_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131EA60, bool, Dictionary_2_Photon_Bolt_UniqueId_System_Object__TryAdd, (Dictionary_2_Photon_Bolt_UniqueId_System_Object_ * __this, UniqueId key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x0131E9A0, bool, Dictionary_2_Photon_Bolt_UniqueId_System_Object__TryGetValue, (Dictionary_2_Photon_Bolt_UniqueId_System_Object_ * __this, UniqueId key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0131E9A0, bool, Dictionary_2_Photon_Bolt_UniqueId_System_Object__TryGetValue, (Dictionary_2_Photon_Bolt_UniqueId_System_Object_ * __this, UniqueId key, Object * * value, MethodInfo * method)); DO_APP_FUNC(0x013ECEE0, bool, Dictionary_2_Photon_Bolt_UniqueId_System_Object__TryInsert, (Dictionary_2_Photon_Bolt_UniqueId_System_Object_ * __this, UniqueId key, Object * value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_Photon_Bolt_UniqueId_System_Object__get_Count, (Dictionary_2_Photon_Bolt_UniqueId_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131C940, Object *, Dictionary_2_Photon_Bolt_UniqueId_System_Object__get_Item, (Dictionary_2_Photon_Bolt_UniqueId_System_Object_ * __this, UniqueId key, MethodInfo * method)); @@ -135767,15 +149826,19 @@ DO_APP_FUNC(0x0131C780, Dictionary_2_TKey_TValue_KeyCollection_Photon_Bolt_Uniqu DO_APP_FUNC(0x0131C860, Dictionary_2_TKey_TValue_ValueCollection_Photon_Bolt_UniqueId_System_Object_ *, Dictionary_2_Photon_Bolt_UniqueId_System_Object__get_Values, (Dictionary_2_Photon_Bolt_UniqueId_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131C9F0, void, Dictionary_2_Photon_Bolt_UniqueId_System_Object__set_Item, (Dictionary_2_Photon_Bolt_UniqueId_System_Object_ * __this, UniqueId key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x011C1C90, void, Dictionary_2_UnityEngine_Vector3_System_Int32___ctor, (Dictionary_2_UnityEngine_Vector3_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB920, Dictionary_2_UnityEngine_Vector3_System_Int32___ctor__MethodInfo); DO_APP_FUNC(0x0131C2E0, void, Dictionary_2_UnityEngine_Vector3_System_Int32___ctor_1, (Dictionary_2_UnityEngine_Vector3_System_Int32_ * __this, IDictionary_2_UnityEngine_Vector3_System_Int32_ * dictionary, MethodInfo * method)); DO_APP_FUNC(0x010786D0, void, Dictionary_2_UnityEngine_Vector3_System_Int32___ctor_2, (Dictionary_2_UnityEngine_Vector3_System_Int32_ * __this, IEqualityComparer_1_UnityEngine_Vector3_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF8D0, Dictionary_2_UnityEngine_Vector3_System_Int32___ctor_2__MethodInfo); DO_APP_FUNC(0x010B5EC0, void, Dictionary_2_UnityEngine_Vector3_System_Int32___ctor_3, (Dictionary_2_UnityEngine_Vector3_System_Int32_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x013EE310, void, Dictionary_2_UnityEngine_Vector3_System_Int32___ctor_4, (Dictionary_2_UnityEngine_Vector3_System_Int32_ * __this, IDictionary_2_UnityEngine_Vector3_System_Int32_ * dictionary, IEqualityComparer_1_UnityEngine_Vector3_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0131C210, void, Dictionary_2_UnityEngine_Vector3_System_Int32___ctor_5, (Dictionary_2_UnityEngine_Vector3_System_Int32_ * __this, int32_t capacity, IEqualityComparer_1_UnityEngine_Vector3_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x013EE6F0, void, Dictionary_2_UnityEngine_Vector3_System_Int32___ctor_6, (Dictionary_2_UnityEngine_Vector3_System_Int32_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x013364E0, void, Dictionary_2_UnityEngine_Vector3_System_Int32__Add, (Dictionary_2_UnityEngine_Vector3_System_Int32_ * __this, Vector3 key, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF8F0, Dictionary_2_UnityEngine_Vector3_System_Int32__Add__MethodInfo); DO_APP_FUNC(0x0131CC90, void, Dictionary_2_UnityEngine_Vector3_System_Int32__Clear, (Dictionary_2_UnityEngine_Vector3_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01336760, bool, Dictionary_2_UnityEngine_Vector3_System_Int32__ContainsKey, (Dictionary_2_UnityEngine_Vector3_System_Int32_ * __this, Vector3 key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF8E0, Dictionary_2_UnityEngine_Vector3_System_Int32__ContainsKey__MethodInfo); DO_APP_FUNC(0x013367B0, bool, Dictionary_2_UnityEngine_Vector3_System_Int32__ContainsValue, (Dictionary_2_UnityEngine_Vector3_System_Int32_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x013368A0, void, Dictionary_2_UnityEngine_Vector3_System_Int32__CopyTo, (Dictionary_2_UnityEngine_Vector3_System_Int32_ * __this, KeyValuePair_2_UnityEngine_Vector3_System_Int32___Array * array, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x013EEB30, int32_t, Dictionary_2_UnityEngine_Vector3_System_Int32__FindEntry, (Dictionary_2_UnityEngine_Vector3_System_Int32_ * __this, Vector3 key, MethodInfo * method)); @@ -135812,13 +149875,15 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_UnityEngine_Vector3_System_I DO_APP_FUNC(0x013389B0, void, Dictionary_2_UnityEngine_Vector3_System_Int32__System_Collections_IDictionary_set_Item, (Dictionary_2_UnityEngine_Vector3_System_Int32_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x013224A0, IEnumerator *, Dictionary_2_UnityEngine_Vector3_System_Int32__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_UnityEngine_Vector3_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01338310, bool, Dictionary_2_UnityEngine_Vector3_System_Int32__TryAdd, (Dictionary_2_UnityEngine_Vector3_System_Int32_ * __this, Vector3 key, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x01338280, bool, Dictionary_2_UnityEngine_Vector3_System_Int32__TryGetValue, (Dictionary_2_UnityEngine_Vector3_System_Int32_ * __this, Vector3 key, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x01338280, bool, Dictionary_2_UnityEngine_Vector3_System_Int32__TryGetValue, (Dictionary_2_UnityEngine_Vector3_System_Int32_ * __this, Vector3 key, int32_t * value, MethodInfo * method)); DO_APP_FUNC(0x013EEFD0, bool, Dictionary_2_UnityEngine_Vector3_System_Int32__TryInsert, (Dictionary_2_UnityEngine_Vector3_System_Int32_ * __this, Vector3 key, int32_t value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_UnityEngine_Vector3_System_Int32__get_Count, (Dictionary_2_UnityEngine_Vector3_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013363E0, int32_t, Dictionary_2_UnityEngine_Vector3_System_Int32__get_Item, (Dictionary_2_UnityEngine_Vector3_System_Int32_ * __this, Vector3 key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF8B8, Dictionary_2_UnityEngine_Vector3_System_Int32__get_Item__MethodInfo); DO_APP_FUNC(0x0131C780, Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_Vector3_System_Int32_ *, Dictionary_2_UnityEngine_Vector3_System_Int32__get_Keys, (Dictionary_2_UnityEngine_Vector3_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131C860, Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_Vector3_System_Int32_ *, Dictionary_2_UnityEngine_Vector3_System_Int32__get_Values, (Dictionary_2_UnityEngine_Vector3_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013364A0, void, Dictionary_2_UnityEngine_Vector3_System_Int32__set_Item, (Dictionary_2_UnityEngine_Vector3_System_Int32_ * __this, Vector3 key, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB918, Dictionary_2_UnityEngine_Vector3_System_Int32__set_Item__MethodInfo); DO_APP_FUNC(0x011C1C90, void, Dictionary_2_UnityEngine_Vector3Int_System_Object___ctor, (Dictionary_2_UnityEngine_Vector3Int_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131C2E0, void, Dictionary_2_UnityEngine_Vector3Int_System_Object___ctor_1, (Dictionary_2_UnityEngine_Vector3Int_System_Object_ * __this, IDictionary_2_UnityEngine_Vector3Int_System_Object_ * dictionary, MethodInfo * method)); DO_APP_FUNC(0x010786D0, void, Dictionary_2_UnityEngine_Vector3Int_System_Object___ctor_2, (Dictionary_2_UnityEngine_Vector3Int_System_Object_ * __this, IEqualityComparer_1_UnityEngine_Vector3Int_ * comparer, MethodInfo * method)); @@ -135865,7 +149930,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_UnityEngine_Vector3Int_Syste DO_APP_FUNC(0x013F2D00, void, Dictionary_2_UnityEngine_Vector3Int_System_Object__System_Collections_IDictionary_set_Item, (Dictionary_2_UnityEngine_Vector3Int_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x0131D0B0, IEnumerator *, Dictionary_2_UnityEngine_Vector3Int_System_Object__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_UnityEngine_Vector3Int_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01338310, bool, Dictionary_2_UnityEngine_Vector3Int_System_Object__TryAdd, (Dictionary_2_UnityEngine_Vector3Int_System_Object_ * __this, Vector3Int key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x013F2630, bool, Dictionary_2_UnityEngine_Vector3Int_System_Object__TryGetValue, (Dictionary_2_UnityEngine_Vector3Int_System_Object_ * __this, Vector3Int key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x013F2630, bool, Dictionary_2_UnityEngine_Vector3Int_System_Object__TryGetValue, (Dictionary_2_UnityEngine_Vector3Int_System_Object_ * __this, Vector3Int key, Object * * value, MethodInfo * method)); DO_APP_FUNC(0x013F1620, bool, Dictionary_2_UnityEngine_Vector3Int_System_Object__TryInsert, (Dictionary_2_UnityEngine_Vector3Int_System_Object_ * __this, Vector3Int key, Object * value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_UnityEngine_Vector3Int_System_Object__get_Count, (Dictionary_2_UnityEngine_Vector3Int_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013F0930, Object *, Dictionary_2_UnityEngine_Vector3Int_System_Object__get_Item, (Dictionary_2_UnityEngine_Vector3Int_System_Object_ * __this, Vector3Int key, MethodInfo * method)); @@ -135882,6 +149947,7 @@ DO_APP_FUNC(0x013F34F0, void, Dictionary_2_MS_Internal_Xml_Cache_XPathNodeRef_MS DO_APP_FUNC(0x0136D340, void, Dictionary_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__Add, (Dictionary_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ * __this, XPathNodeRef key, XPathNodeRef value, MethodInfo * method)); DO_APP_FUNC(0x0131CC90, void, Dictionary_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__Clear, (Dictionary_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131CD00, bool, Dictionary_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__ContainsKey, (Dictionary_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ * __this, XPathNodeRef key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE040, Dictionary_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__ContainsKey__MethodInfo); DO_APP_FUNC(0x0136D5F0, bool, Dictionary_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__ContainsValue, (Dictionary_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ * __this, XPathNodeRef value, MethodInfo * method)); DO_APP_FUNC(0x0136D700, void, Dictionary_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__CopyTo, (Dictionary_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ * __this, KeyValuePair_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef___Array * array, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x013F3930, int32_t, Dictionary_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__FindEntry, (Dictionary_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ * __this, XPathNodeRef key, MethodInfo * method)); @@ -135918,10 +149984,11 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_MS_Internal_Xml_Cache_XPathN DO_APP_FUNC(0x0136F910, void, Dictionary_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__System_Collections_IDictionary_set_Item, (Dictionary_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01329620, IEnumerator *, Dictionary_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0136F240, bool, Dictionary_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__TryAdd, (Dictionary_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ * __this, XPathNodeRef key, XPathNodeRef value, MethodInfo * method)); -DO_APP_FUNC(0x0136F180, bool, Dictionary_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__TryGetValue, (Dictionary_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ * __this, XPathNodeRef key, XPathNodeRef value, MethodInfo * method)); +DO_APP_FUNC(0x0136F180, bool, Dictionary_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__TryGetValue, (Dictionary_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ * __this, XPathNodeRef key, XPathNodeRef * value, MethodInfo * method)); DO_APP_FUNC(0x013F3DB0, bool, Dictionary_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__TryInsert, (Dictionary_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ * __this, XPathNodeRef key, XPathNodeRef value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__get_Count, (Dictionary_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0136D220, XPathNodeRef, Dictionary_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__get_Item, (Dictionary_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ * __this, XPathNodeRef key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE050, Dictionary_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__get_Item__MethodInfo); DO_APP_FUNC(0x0131C780, Dictionary_2_TKey_TValue_KeyCollection_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ *, Dictionary_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__get_Keys, (Dictionary_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131C860, Dictionary_2_TKey_TValue_ValueCollection_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ *, Dictionary_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__get_Values, (Dictionary_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0136D2F0, void, Dictionary_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__set_Item, (Dictionary_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ * __this, XPathNodeRef key, XPathNodeRef value, MethodInfo * method)); @@ -135971,7 +150038,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_BehaviorDesigner_Runtime_JSO DO_APP_FUNC(0x0131F100, void, Dictionary_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object__System_Collections_IDictionary_set_Item, (Dictionary_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x0131D0B0, IEnumerator *, Dictionary_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131EA60, bool, Dictionary_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object__TryAdd, (Dictionary_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_ * __this, JSONDeserialization_TaskField key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x0131E9A0, bool, Dictionary_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object__TryGetValue, (Dictionary_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_ * __this, JSONDeserialization_TaskField key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0131E9A0, bool, Dictionary_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object__TryGetValue, (Dictionary_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_ * __this, JSONDeserialization_TaskField key, Object * * value, MethodInfo * method)); DO_APP_FUNC(0x013F5CE0, bool, Dictionary_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object__TryInsert, (Dictionary_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_ * __this, JSONDeserialization_TaskField key, Object * value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object__get_Count, (Dictionary_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131C940, Object *, Dictionary_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object__get_Item, (Dictionary_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_ * __this, JSONDeserialization_TaskField key, MethodInfo * method)); @@ -135979,6 +150046,7 @@ DO_APP_FUNC(0x0131C780, Dictionary_2_TKey_TValue_KeyCollection_BehaviorDesigner_ DO_APP_FUNC(0x0131C860, Dictionary_2_TKey_TValue_ValueCollection_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_ *, Dictionary_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object__get_Values, (Dictionary_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131C9F0, void, Dictionary_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object__set_Item, (Dictionary_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_ * __this, JSONDeserialization_TaskField key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x011C1C90, void, Dictionary_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___ctor, (Dictionary_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE24D8, Dictionary_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___ctor__MethodInfo); DO_APP_FUNC(0x0131C2E0, void, Dictionary_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___ctor_1, (Dictionary_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ * __this, IDictionary_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ * dictionary, MethodInfo * method)); DO_APP_FUNC(0x010786D0, void, Dictionary_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___ctor_2, (Dictionary_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ * __this, IEqualityComparer_1_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010B5EC0, void, Dictionary_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___ctor_3, (Dictionary_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ * __this, int32_t capacity, MethodInfo * method)); @@ -136024,13 +150092,15 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_ComponentModel_Design DO_APP_FUNC(0x013F9D80, void, Dictionary_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__System_Collections_IDictionary_set_Item, (Dictionary_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01390AB0, IEnumerator *, Dictionary_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013F9630, bool, Dictionary_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__TryAdd, (Dictionary_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ * __this, MemberRelationshipService_RelationshipEntry key, MemberRelationshipService_RelationshipEntry value, MethodInfo * method)); -DO_APP_FUNC(0x013F9550, bool, Dictionary_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__TryGetValue, (Dictionary_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ * __this, MemberRelationshipService_RelationshipEntry key, MemberRelationshipService_RelationshipEntry value, MethodInfo * method)); +DO_APP_FUNC(0x013F9550, bool, Dictionary_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__TryGetValue, (Dictionary_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ * __this, MemberRelationshipService_RelationshipEntry key, MemberRelationshipService_RelationshipEntry * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE24C8, Dictionary_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__TryGetValue__MethodInfo); DO_APP_FUNC(0x013F8470, bool, Dictionary_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__TryInsert, (Dictionary_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ * __this, MemberRelationshipService_RelationshipEntry key, MemberRelationshipService_RelationshipEntry value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__get_Count, (Dictionary_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013F74B0, MemberRelationshipService_RelationshipEntry, Dictionary_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__get_Item, (Dictionary_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ * __this, MemberRelationshipService_RelationshipEntry key, MethodInfo * method)); DO_APP_FUNC(0x0131C780, Dictionary_2_TKey_TValue_KeyCollection_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ *, Dictionary_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__get_Keys, (Dictionary_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131C860, Dictionary_2_TKey_TValue_ValueCollection_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ *, Dictionary_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__get_Values, (Dictionary_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013F75A0, void, Dictionary_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__set_Item, (Dictionary_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ * __this, MemberRelationshipService_RelationshipEntry key, MemberRelationshipService_RelationshipEntry value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE24E0, Dictionary_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__set_Item__MethodInfo); DO_APP_FUNC(0x011C1C90, void, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object___ctor, (Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131C2E0, void, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object___ctor_1, (Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_ * __this, IDictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_ * dictionary, MethodInfo * method)); DO_APP_FUNC(0x010786D0, void, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object___ctor_2, (Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_ * __this, IEqualityComparer_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ * comparer, MethodInfo * method)); @@ -136077,7 +150147,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_UnityEngine_Experimental_Ren DO_APP_FUNC(0x01375860, void, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object__System_Collections_IDictionary_set_Item, (Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x013224A0, IEnumerator *, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01323C60, bool, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object__TryAdd, (Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_ * __this, ProbeReferenceVolume_RegId key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x01323BB0, bool, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object__TryGetValue, (Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_ * __this, ProbeReferenceVolume_RegId key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x01323BB0, bool, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object__TryGetValue, (Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_ * __this, ProbeReferenceVolume_RegId key, Object * * value, MethodInfo * method)); DO_APP_FUNC(0x013BE7F0, bool, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object__TryInsert, (Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_ * __this, ProbeReferenceVolume_RegId key, Object * value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object__get_Count, (Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01373BB0, Object *, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object__get_Item, (Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_ * __this, ProbeReferenceVolume_RegId key, MethodInfo * method)); @@ -136135,7 +150205,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_UnityEngine_Experimental_Ren DO_APP_FUNC(0x01356360, void, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__System_Collections_IDictionary_set_Item, (Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x0131D0B0, IEnumerator *, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01355CC0, bool, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__TryAdd, (Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ * __this, ProbeReferenceVolume_RegId key, ProbeBrickIndex_BrickMeta value, MethodInfo * method)); -DO_APP_FUNC(0x0138F870, bool, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__TryGetValue, (Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ * __this, ProbeReferenceVolume_RegId key, ProbeBrickIndex_BrickMeta value, MethodInfo * method)); +DO_APP_FUNC(0x0138F870, bool, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__TryGetValue, (Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ * __this, ProbeReferenceVolume_RegId key, ProbeBrickIndex_BrickMeta * value, MethodInfo * method)); DO_APP_FUNC(0x013FC640, bool, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__TryInsert, (Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ * __this, ProbeReferenceVolume_RegId key, ProbeBrickIndex_BrickMeta value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__get_Count, (Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013FBC20, ProbeBrickIndex_BrickMeta, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__get_Item, (Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ * __this, ProbeReferenceVolume_RegId key, MethodInfo * method)); @@ -136192,7 +150262,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_UnityEngine_Experimental_Ren DO_APP_FUNC(0x014003C0, void, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__System_Collections_IDictionary_set_Item, (Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x013FE550, IEnumerator *, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013472E0, bool, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__TryAdd, (Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_ * __this, ProbeReferenceVolume_RegId key, ProbeBrickIndex_CellIndexUpdateInfo value, MethodInfo * method)); -DO_APP_FUNC(0x013FFC80, bool, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__TryGetValue, (Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_ * __this, ProbeReferenceVolume_RegId key, ProbeBrickIndex_CellIndexUpdateInfo value, MethodInfo * method)); +DO_APP_FUNC(0x013FFC80, bool, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__TryGetValue, (Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_ * __this, ProbeReferenceVolume_RegId key, ProbeBrickIndex_CellIndexUpdateInfo * value, MethodInfo * method)); DO_APP_FUNC(0x013FEE30, bool, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__TryInsert, (Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_ * __this, ProbeReferenceVolume_RegId key, ProbeBrickIndex_CellIndexUpdateInfo value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__get_Count, (Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x013FDE60, ProbeBrickIndex_CellIndexUpdateInfo, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__get_Item, (Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_ * __this, ProbeReferenceVolume_RegId key, MethodInfo * method)); @@ -136246,7 +150316,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_UnityEngine_Experimental_Ren DO_APP_FUNC(0x01403A10, void, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object__System_Collections_IDictionary_set_Item, (Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x013DC130, IEnumerator *, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01403330, bool, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object__TryAdd, (Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object_ * __this, ProbeReferenceVolume_Volume key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x01403250, bool, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object__TryGetValue, (Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object_ * __this, ProbeReferenceVolume_Volume key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x01403250, bool, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object__TryGetValue, (Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object_ * __this, ProbeReferenceVolume_Volume key, Object * * value, MethodInfo * method)); DO_APP_FUNC(0x01401F00, bool, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object__TryInsert, (Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object_ * __this, ProbeReferenceVolume_Volume key, Object * value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object__get_Count, (Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01400DD0, Object *, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object__get_Item, (Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object_ * __this, ProbeReferenceVolume_Volume key, MethodInfo * method)); @@ -136299,7 +150369,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_System_Text_RegularExpressio DO_APP_FUNC(0x0132B7B0, void, Dictionary_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object__System_Collections_IDictionary_set_Item, (Dictionary_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01329620, IEnumerator *, Dictionary_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0132B130, bool, Dictionary_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object__TryAdd, (Dictionary_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object_ * __this, Regex_CachedCodeEntryKey key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x0132B060, bool, Dictionary_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object__TryGetValue, (Dictionary_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object_ * __this, Regex_CachedCodeEntryKey key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0132B060, bool, Dictionary_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object__TryGetValue, (Dictionary_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object_ * __this, Regex_CachedCodeEntryKey key, Object * * value, MethodInfo * method)); DO_APP_FUNC(0x01404DB0, bool, Dictionary_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object__TryInsert, (Dictionary_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object_ * __this, Regex_CachedCodeEntryKey key, Object * value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object__get_Count, (Dictionary_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01328E90, Object *, Dictionary_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object__get_Item, (Dictionary_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object_ * __this, Regex_CachedCodeEntryKey key, MethodInfo * method)); @@ -136309,12 +150379,15 @@ DO_APP_FUNC(0x01328F60, void, Dictionary_2_System_Text_RegularExpressions_Regex_ DO_APP_FUNC(0x011C1C90, void, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32___ctor, (Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131C2E0, void, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32___ctor_1, (Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * __this, IDictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * dictionary, MethodInfo * method)); DO_APP_FUNC(0x010786D0, void, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32___ctor_2, (Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * __this, IEqualityComparer_1_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16C98, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32___ctor_2__MethodInfo); DO_APP_FUNC(0x010B5EC0, void, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32___ctor_3, (Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x01406380, void, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32___ctor_4, (Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * __this, IDictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * dictionary, IEqualityComparer_1_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0131C210, void, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32___ctor_5, (Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * __this, int32_t capacity, IEqualityComparer_1_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01406760, void, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32___ctor_6, (Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x0131CA30, void, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__Add, (Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * __this, StylePropertyAnimationSystem_ElementPropertyPair key, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16CD8, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__Add__MethodInfo); DO_APP_FUNC(0x0131CC90, void, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__Clear, (Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16BF0, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__Clear__MethodInfo); DO_APP_FUNC(0x0131CD00, bool, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__ContainsKey, (Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * __this, StylePropertyAnimationSystem_ElementPropertyPair key, MethodInfo * method)); DO_APP_FUNC(0x01406A90, bool, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__ContainsValue, (Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01406B80, void, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__CopyTo, (Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * __this, KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32___Array * array, int32_t index, MethodInfo * method)); @@ -136325,6 +150398,7 @@ DO_APP_FUNC(0x014070B0, int32_t, Dictionary_2_UnityEngine_UIElements_StyleProper DO_APP_FUNC(0x0131F300, bool, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__IsCompatibleKey, (Object * key, MethodInfo * method)); DO_APP_FUNC(0x014077B0, void, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__OnDeserialization, (Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * __this, Object * sender, MethodInfo * method)); DO_APP_FUNC(0x01407FD0, bool, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__Remove, (Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * __this, StylePropertyAnimationSystem_ElementPropertyPair key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16CB8, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__Remove__MethodInfo); DO_APP_FUNC(0x01407C20, void, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__Resize, (Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01407CB0, void, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__Resize_1, (Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * __this, int32_t newSize, bool forceNewHashCodes, MethodInfo * method)); DO_APP_FUNC(0x0132E690, void, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add, (Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * __this, KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ keyValuePair, MethodInfo * method)); @@ -136352,13 +150426,15 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_UnityEngine_UIElements_Style DO_APP_FUNC(0x01330A80, void, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__System_Collections_IDictionary_set_Item, (Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x0131D0B0, IEnumerator *, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131EA60, bool, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__TryAdd, (Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * __this, StylePropertyAnimationSystem_ElementPropertyPair key, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x01408340, bool, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__TryGetValue, (Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * __this, StylePropertyAnimationSystem_ElementPropertyPair key, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x01408340, bool, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__TryGetValue, (Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * __this, StylePropertyAnimationSystem_ElementPropertyPair key, int32_t * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16C38, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__TryGetValue__MethodInfo); DO_APP_FUNC(0x01407230, bool, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__TryInsert, (Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * __this, StylePropertyAnimationSystem_ElementPropertyPair key, int32_t value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__get_Count, (Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014067F0, int32_t, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__get_Item, (Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * __this, StylePropertyAnimationSystem_ElementPropertyPair key, MethodInfo * method)); DO_APP_FUNC(0x0131C780, Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ *, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__get_Keys, (Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131C860, Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ *, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__get_Values, (Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131C9F0, void, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__set_Item, (Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * __this, StylePropertyAnimationSystem_ElementPropertyPair key, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16CB0, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__set_Item__MethodInfo); DO_APP_FUNC(0x011C1C90, void, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum___ctor, (Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131C2E0, void, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum___ctor_1, (Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_ * __this, IDictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_ * dictionary, MethodInfo * method)); DO_APP_FUNC(0x010786D0, void, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum___ctor_2, (Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_ * __this, IEqualityComparer_1_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_ * comparer, MethodInfo * method)); @@ -136405,7 +150481,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_UnityEngine_UIElements_Style DO_APP_FUNC(0x01330A80, void, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum__System_Collections_IDictionary_set_Item, (Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x0131D0B0, IEnumerator *, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131EA60, bool, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum__TryAdd, (Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_ * __this, StylePropertyAnimationSystem_ElementPropertyPair key, Int32Enum__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x01408340, bool, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum__TryGetValue, (Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_ * __this, StylePropertyAnimationSystem_ElementPropertyPair key, Int32Enum__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x01408340, bool, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum__TryGetValue, (Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_ * __this, StylePropertyAnimationSystem_ElementPropertyPair key, Int32Enum__Enum * value, MethodInfo * method)); DO_APP_FUNC(0x01407230, bool, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum__TryInsert, (Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_ * __this, StylePropertyAnimationSystem_ElementPropertyPair key, Int32Enum__Enum value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum__get_Count, (Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014067F0, Int32Enum__Enum, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum__get_Item, (Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_ * __this, StylePropertyAnimationSystem_ElementPropertyPair key, MethodInfo * method)); @@ -136458,7 +150534,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_UnityEngine_UIElements_Style DO_APP_FUNC(0x0131F100, void, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object__System_Collections_IDictionary_set_Item, (Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x0131D0B0, IEnumerator *, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131EA60, bool, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object__TryAdd, (Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object_ * __this, StylePropertyAnimationSystem_ElementPropertyPair key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x0131E9A0, bool, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object__TryGetValue, (Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object_ * __this, StylePropertyAnimationSystem_ElementPropertyPair key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0131E9A0, bool, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object__TryGetValue, (Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object_ * __this, StylePropertyAnimationSystem_ElementPropertyPair key, Object * * value, MethodInfo * method)); DO_APP_FUNC(0x013F5CE0, bool, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object__TryInsert, (Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object_ * __this, StylePropertyAnimationSystem_ElementPropertyPair key, Object * value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object__get_Count, (Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131C940, Object *, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object__get_Item, (Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object_ * __this, StylePropertyAnimationSystem_ElementPropertyPair key, MethodInfo * method)); @@ -136511,7 +150587,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_UnityEngine_UIElements_Style DO_APP_FUNC(0x01377C20, void, Dictionary_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object__System_Collections_IDictionary_set_Item, (Dictionary_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x013224A0, IEnumerator *, Dictionary_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01323C60, bool, Dictionary_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object__TryAdd, (Dictionary_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object_ * __this, StyleSheetCache_SheetHandleKey key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x01323BB0, bool, Dictionary_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object__TryGetValue, (Dictionary_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object_ * __this, StyleSheetCache_SheetHandleKey key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x01323BB0, bool, Dictionary_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object__TryGetValue, (Dictionary_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object_ * __this, StyleSheetCache_SheetHandleKey key, Object * * value, MethodInfo * method)); DO_APP_FUNC(0x013C7470, bool, Dictionary_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object__TryInsert, (Dictionary_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object_ * __this, StyleSheetCache_SheetHandleKey key, Object * value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object__get_Count, (Dictionary_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01376080, Object *, Dictionary_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object__get_Item, (Dictionary_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object_ * __this, StyleSheetCache_SheetHandleKey key, MethodInfo * method)); @@ -136564,7 +150640,7 @@ DO_APP_FUNC(0x01308F30, ICollection *, Dictionary_2_PlaceholderSoftware_WetStuff DO_APP_FUNC(0x01410730, void, Dictionary_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object__System_Collections_IDictionary_set_Item, (Dictionary_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x0140DD70, IEnumerator *, Dictionary_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0140FEC0, bool, Dictionary_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object__TryAdd, (Dictionary_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_ * __this, WetDecalSystem_MaterialBatchId key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x0140FDA0, bool, Dictionary_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object__TryGetValue, (Dictionary_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_ * __this, WetDecalSystem_MaterialBatchId key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0140FDA0, bool, Dictionary_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object__TryGetValue, (Dictionary_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_ * __this, WetDecalSystem_MaterialBatchId key, Object * * value, MethodInfo * method)); DO_APP_FUNC(0x0140E8A0, bool, Dictionary_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object__TryInsert, (Dictionary_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_ * __this, WetDecalSystem_MaterialBatchId key, Object * value, InsertionBehavior__Enum behavior, MethodInfo * method)); DO_APP_FUNC(0x0131C770, int32_t, Dictionary_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object__get_Count, (Dictionary_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0140D2E0, Object *, Dictionary_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object__get_Item, (Dictionary_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_ * __this, WetDecalSystem_MaterialBatchId key, MethodInfo * method)); @@ -136594,12 +150670,16 @@ DO_APP_FUNC(0x013B3A50, void, Callback_1_T_DispatchDelegate_UserAchievementStore DO_APP_FUNC(0x013B37C0, void, Callback_1_T_DispatchDelegate_UserStatsReceived_t___ctor, (Callback_1_T_DispatchDelegate_UserStatsReceived_t_ * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x013B38F0, void, Callback_1_T_DispatchDelegate_UserStatsReceived_t__Invoke, (Callback_1_T_DispatchDelegate_UserStatsReceived_t_ * __this, UserStatsReceived_t param, MethodInfo * method)); DO_APP_FUNC(0x014110E0, DoubleBuffer_1_UnityEngine_Quaternion_, DoubleBuffer_1_UnityEngine_Quaternion__InitBuffer, (Quaternion value, MethodInfo * method)); -DO_APP_FUNC(0x014110C0, DoubleBuffer_1_UnityEngine_Quaternion_, DoubleBuffer_1_UnityEngine_Quaternion__Shift, (DoubleBuffer_1_UnityEngine_Quaternion___Boxed * __this, Quaternion value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC83A0, DoubleBuffer_1_UnityEngine_Quaternion__InitBuffer__MethodInfo); +DO_APP_FUNC(0x014110C0, DoubleBuffer_1_UnityEngine_Quaternion_, DoubleBuffer_1_UnityEngine_Quaternion__Shift, (DoubleBuffer_1_UnityEngine_Quaternion_ * __this, Quaternion value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8340, DoubleBuffer_1_UnityEngine_Quaternion__Shift__MethodInfo); DO_APP_FUNC(0x01411120, DoubleBuffer_1_UnityEngine_Vector3_, DoubleBuffer_1_UnityEngine_Vector3__InitBuffer, (Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x014110F0, DoubleBuffer_1_UnityEngine_Vector3_, DoubleBuffer_1_UnityEngine_Vector3__Shift, (DoubleBuffer_1_UnityEngine_Vector3___Boxed * __this, Vector3 value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC83B0, DoubleBuffer_1_UnityEngine_Vector3__InitBuffer__MethodInfo); +DO_APP_FUNC(0x014110F0, DoubleBuffer_1_UnityEngine_Vector3_, DoubleBuffer_1_UnityEngine_Vector3__Shift, (DoubleBuffer_1_UnityEngine_Vector3_ * __this, Vector3 value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8338, DoubleBuffer_1_UnityEngine_Vector3__Shift__MethodInfo); DO_APP_FUNC(0x01411140, void, DynamicArray_1_System_Object___ctor, (DynamicArray_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014111F0, void, DynamicArray_1_System_Object___ctor_1, (DynamicArray_1_System_Object_ * __this, int32_t size, MethodInfo * method)); -DO_APP_FUNC(0x01411310, int32_t, DynamicArray_1_System_Object__Add, (DynamicArray_1_System_Object_ * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x01411310, int32_t, DynamicArray_1_System_Object__Add, (DynamicArray_1_System_Object_ * __this, Object * * value, MethodInfo * method)); DO_APP_FUNC(0x01411560, void, DynamicArray_1_System_Object__AddRange, (DynamicArray_1_System_Object_ * __this, DynamicArray_1_System_Object_ * array, MethodInfo * method)); DO_APP_FUNC(0x014112B0, void, DynamicArray_1_System_Object__Clear, (DynamicArray_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014112D0, bool, DynamicArray_1_System_Object__Contains, (DynamicArray_1_System_Object_ * __this, Object * item, MethodInfo * method)); @@ -136609,10 +150689,12 @@ DO_APP_FUNC(0x01411CC0, int32_t, DynamicArray_1_System_Object__IndexOf_1, (Dynam DO_APP_FUNC(0x01411BC0, int32_t, DynamicArray_1_System_Object__IndexOf_2, (DynamicArray_1_System_Object_ * __this, Object * item, int32_t index, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x01411740, bool, DynamicArray_1_System_Object__Remove, (DynamicArray_1_System_Object_ * __this, Object * item, MethodInfo * method)); DO_APP_FUNC(0x014117B0, void, DynamicArray_1_System_Object__RemoveAt, (DynamicArray_1_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0540, DynamicArray_1_System_Object__RemoveAt__MethodInfo); DO_APP_FUNC(0x01411930, void, DynamicArray_1_System_Object__RemoveRange, (DynamicArray_1_System_Object_ * __this, int32_t index, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0550, DynamicArray_1_System_Object__RemoveRange__MethodInfo); DO_APP_FUNC(0x01411E40, void, DynamicArray_1_System_Object__Reserve, (DynamicArray_1_System_Object_ * __this, int32_t newCapacity, bool keepContent, MethodInfo * method)); DO_APP_FUNC(0x01411DE0, void, DynamicArray_1_System_Object__Resize, (DynamicArray_1_System_Object_ * __this, int32_t newSize, bool keepContent, MethodInfo * method)); -DO_APP_FUNC(0x01412070, Object *, DynamicArray_1_System_Object__get_Item, (DynamicArray_1_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x01412070, Object * *, DynamicArray_1_System_Object__get_Item, (DynamicArray_1_System_Object_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, DynamicArray_1_System_Object__get_capacity, (DynamicArray_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, DynamicArray_1_System_Object__get_size, (DynamicArray_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014120A0, Object__Array *, DynamicArray_1_System_Object__op_Implicit, (DynamicArray_1_System_Object_ * array, MethodInfo * method)); @@ -136620,7 +150702,7 @@ DO_APP_FUNC(0x003BCDD0, void, DynamicArray_1_System_Object__set_size, (DynamicAr DO_APP_FUNC(0x01411140, void, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource___ctor, (DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C962A0, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource___ctor__MethodInfo); DO_APP_FUNC(0x014111F0, void, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource___ctor_1, (DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource_ * __this, int32_t size, MethodInfo * method)); -DO_APP_FUNC(0x01412180, int32_t, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource__Add, (DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource_ * __this, RendererListResource value, MethodInfo * method)); +DO_APP_FUNC(0x01412180, int32_t, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource__Add, (DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource_ * __this, RendererListResource * value, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C96130, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource__Add__MethodInfo); DO_APP_FUNC(0x01412450, void, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource__AddRange, (DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource_ * __this, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource_ * array, MethodInfo * method)); DO_APP_FUNC(0x014112B0, void, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource__Clear, (DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource_ * __this, MethodInfo * method)); @@ -136632,10 +150714,12 @@ DO_APP_FUNC(0x01412F40, int32_t, DynamicArray_1_UnityEngine_Experimental_Renderi DO_APP_FUNC(0x01412CA0, int32_t, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource__IndexOf_2, (DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource_ * __this, RendererListResource item, int32_t index, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x014126C0, bool, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource__Remove, (DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource_ * __this, RendererListResource item, MethodInfo * method)); DO_APP_FUNC(0x014127D0, void, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource__RemoveAt, (DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0558, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource__RemoveAt__MethodInfo); DO_APP_FUNC(0x01412950, void, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource__RemoveRange, (DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource_ * __this, int32_t index, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0560, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource__RemoveRange__MethodInfo); DO_APP_FUNC(0x01411E40, void, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource__Reserve, (DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource_ * __this, int32_t newCapacity, bool keepContent, MethodInfo * method)); DO_APP_FUNC(0x01411DE0, void, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource__Resize, (DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource_ * __this, int32_t newSize, bool keepContent, MethodInfo * method)); -DO_APP_FUNC(0x01413280, RendererListResource, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource__get_Item, (DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x01413280, RendererListResource *, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource__get_Item, (DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C96210, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource__get_Item__MethodInfo); DO_APP_FUNC(0x00BF9D80, int32_t, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource__get_capacity, (DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource__get_size, (DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource_ * __this, MethodInfo * method)); @@ -136645,7 +150729,7 @@ DO_APP_FUNC(0x003BCDD0, void, DynamicArray_1_UnityEngine_Experimental_Rendering_ DO_APP_FUNC(0x01411140, void, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo___ctor, (DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C91D78, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo___ctor__MethodInfo); DO_APP_FUNC(0x014111F0, void, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo___ctor_1, (DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo_ * __this, int32_t size, MethodInfo * method)); -DO_APP_FUNC(0x01413330, int32_t, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo__Add, (DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo_ * __this, RenderGraph_CompiledPassInfo value, MethodInfo * method)); +DO_APP_FUNC(0x01413330, int32_t, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo__Add, (DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo_ * __this, RenderGraph_CompiledPassInfo * value, MethodInfo * method)); DO_APP_FUNC(0x014135C0, void, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo__AddRange, (DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo_ * __this, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo_ * array, MethodInfo * method)); DO_APP_FUNC(0x014112B0, void, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo__Clear, (DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C91B68, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo__Clear__MethodInfo); @@ -136656,11 +150740,13 @@ DO_APP_FUNC(0x01413EB0, int32_t, DynamicArray_1_UnityEngine_Experimental_Renderi DO_APP_FUNC(0x01413CD0, int32_t, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo__IndexOf_2, (DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo_ * __this, RenderGraph_CompiledPassInfo item, int32_t index, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x014137D0, bool, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo__Remove, (DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo_ * __this, RenderGraph_CompiledPassInfo item, MethodInfo * method)); DO_APP_FUNC(0x01413880, void, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo__RemoveAt, (DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0510, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo__RemoveAt__MethodInfo); DO_APP_FUNC(0x01413A00, void, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo__RemoveRange, (DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo_ * __this, int32_t index, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0518, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo__RemoveRange__MethodInfo); DO_APP_FUNC(0x01411E40, void, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo__Reserve, (DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo_ * __this, int32_t newCapacity, bool keepContent, MethodInfo * method)); DO_APP_FUNC(0x01411DE0, void, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo__Resize, (DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo_ * __this, int32_t newSize, bool keepContent, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C91BE8, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo__Resize__MethodInfo); -DO_APP_FUNC(0x014140F0, RenderGraph_CompiledPassInfo, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo__get_Item, (DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x014140F0, RenderGraph_CompiledPassInfo *, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo__get_Item, (DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C91B20, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo__get_Item__MethodInfo); DO_APP_FUNC(0x00BF9D80, int32_t, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo__get_capacity, (DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C91BF0, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo__get_capacity__MethodInfo); @@ -136671,7 +150757,7 @@ DO_APP_FUNC(0x003BCDD0, void, DynamicArray_1_UnityEngine_Experimental_Rendering_ DO_APP_FUNC(0x01411140, void, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo___ctor, (DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C91D70, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo___ctor__MethodInfo); DO_APP_FUNC(0x014111F0, void, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo___ctor_1, (DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo_ * __this, int32_t size, MethodInfo * method)); -DO_APP_FUNC(0x01414180, int32_t, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo__Add, (DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo_ * __this, RenderGraph_CompiledResourceInfo value, MethodInfo * method)); +DO_APP_FUNC(0x01414180, int32_t, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo__Add, (DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo_ * __this, RenderGraph_CompiledResourceInfo * value, MethodInfo * method)); DO_APP_FUNC(0x01414440, void, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo__AddRange, (DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo_ * __this, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo_ * array, MethodInfo * method)); DO_APP_FUNC(0x014112B0, void, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo__Clear, (DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C91B60, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo__Clear__MethodInfo); @@ -136682,11 +150768,13 @@ DO_APP_FUNC(0x01414C90, int32_t, DynamicArray_1_UnityEngine_Experimental_Renderi DO_APP_FUNC(0x01414B00, int32_t, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo__IndexOf_2, (DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo_ * __this, RenderGraph_CompiledResourceInfo item, int32_t index, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x01414640, bool, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo__Remove, (DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo_ * __this, RenderGraph_CompiledResourceInfo item, MethodInfo * method)); DO_APP_FUNC(0x014146D0, void, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo__RemoveAt, (DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0528, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo__RemoveAt__MethodInfo); DO_APP_FUNC(0x01414850, void, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo__RemoveRange, (DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo_ * __this, int32_t index, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0530, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo__RemoveRange__MethodInfo); DO_APP_FUNC(0x01411E40, void, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo__Reserve, (DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo_ * __this, int32_t newCapacity, bool keepContent, MethodInfo * method)); DO_APP_FUNC(0x01411DE0, void, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo__Resize, (DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo_ * __this, int32_t newSize, bool keepContent, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C91B00, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo__Resize__MethodInfo); -DO_APP_FUNC(0x01414E50, RenderGraph_CompiledResourceInfo, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo__get_Item, (DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x01414E50, RenderGraph_CompiledResourceInfo *, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo__get_Item, (DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C91B08, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo__get_Item__MethodInfo); DO_APP_FUNC(0x00BF9D80, int32_t, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo__get_capacity, (DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo__get_size, (DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo_ * __this, MethodInfo * method)); @@ -136803,6 +150891,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_ArraySegment_1_Byt DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_ArraySegment_1_Byte__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_ArraySegment_1_Byte_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_ArraySegment_1_Byte__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_ArraySegment_1_Byte_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B860, ArraySegment_1_Byte_, Array_EmptyInternalEnumerator_1_ArraySegment_1_Byte__get_Current, (Array_EmptyInternalEnumerator_1_ArraySegment_1_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01BE8, Array_EmptyInternalEnumerator_1_ArraySegment_1_Byte__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * __this, MethodInfo * method)); @@ -136810,6 +150899,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Resour DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BAB0, AsyncOperationHandle_1_System_Object_, Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01BE0, Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta___ctor, (Array_EmptyInternalEnumerator_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta__Dispose, (Array_EmptyInternalEnumerator_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta_ * __this, MethodInfo * method)); @@ -136817,6 +150907,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Dissonance_Network DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB90, VoiceSender_1_TPeer_ChannelDelta_Dissonance_Integrations_PhotonBolt_BoltPeer_, Array_EmptyInternalEnumerator_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta__get_Current, (Array_EmptyInternalEnumerator_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01C30, Array_EmptyInternalEnumerator_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ * __this, MethodInfo * method)); @@ -136824,6 +150915,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BC50, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BBF0, DynamicHeightVirtualizationController_1_T_ContentHeightCacheInfo_System_Object_, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01C28, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData_ * __this, MethodInfo * method)); @@ -136831,6 +150923,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BD20, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BCC0, StylePropertyAnimationSystem_Values_1_T_EmptyData_Background_, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01C20, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__1__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__1__ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__1_Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__1 * __this, MethodInfo * method)); @@ -136838,6 +150931,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__1_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BD20, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__1_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BD90, StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color_, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__1_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01C18, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__1_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__2__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__2__ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__2 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__2_Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__2 * __this, MethodInfo * method)); @@ -136845,6 +150939,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__2_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__2 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BD20, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__2_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__2 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BDF0, StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition_, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__2_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__2 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01C10, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__2_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__3__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__3__ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__3 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__3_Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__3 * __this, MethodInfo * method)); @@ -136852,6 +150947,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__3_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__3 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BD20, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__3_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__3 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BE50, StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32_, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__3_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__3 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01C08, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__3_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__4__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__4__ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__4 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__4_Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__4 * __this, MethodInfo * method)); @@ -136859,6 +150955,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__4_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__4 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BD20, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__4_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__4 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BEB0, StylePropertyAnimationSystem_Values_1_T_EmptyData_Length_, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__4_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__4 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01C00, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__4_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__5__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__5__ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__5 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__5_Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__5 * __this, MethodInfo * method)); @@ -136866,6 +150963,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__5_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__5 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BD20, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__5_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__5 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BF10, StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__5_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__5 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01BF8, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__5_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__6__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__6__ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__6 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__6_Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__6 * __this, MethodInfo * method)); @@ -136873,6 +150971,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__6_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__6 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BD20, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__6_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__6 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BF70, StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate_, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__6_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__6 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01B98, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__6_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__7__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__7__ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__7 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__7_Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__7 * __this, MethodInfo * method)); @@ -136880,6 +150979,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__7_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__7 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BD20, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__7_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__7 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BFD0, StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale_, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__7_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__7 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01B90, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__7_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__8__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__8__ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__8 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__8_Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__8 * __this, MethodInfo * method)); @@ -136887,6 +150987,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__8_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__8 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BD20, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__8_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__8 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C030, StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single_, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__8_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__8 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01B88, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__8_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__9__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__9__ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__9 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__9_Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__9 * __this, MethodInfo * method)); @@ -136894,6 +150995,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__9_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__9 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BD20, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__9_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__9 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C090, StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow_, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__9_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__9 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01B80, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__9_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__10__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__10__ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__10 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__10_Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__10 * __this, MethodInfo * method)); @@ -136901,6 +151003,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__10_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__10 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BD20, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__10_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__10 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C0F0, StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin_, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__10_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__10 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01B78, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__10_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__11__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__11__ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__11 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__11_Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__11 * __this, MethodInfo * method)); @@ -136908,6 +151011,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__11_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__11 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BD20, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__11_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__11 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C150, StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate_, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__11_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__11 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01B70, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__11_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Timeline_IntervalTree_1_Entry___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Timeline_IntervalTree_1_Entry___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Timeline_IntervalTree_1_Entry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Timeline_IntervalTree_1_Entry__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Timeline_IntervalTree_1_Entry_ * __this, MethodInfo * method)); @@ -136915,6 +151019,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Timeli DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Timeline_IntervalTree_1_Entry__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Timeline_IntervalTree_1_Entry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Timeline_IntervalTree_1_Entry__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Timeline_IntervalTree_1_Entry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C1B0, IntervalTree_1_T_Entry_System_Object_, Array_EmptyInternalEnumerator_1_UnityEngine_Timeline_IntervalTree_1_Entry__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Timeline_IntervalTree_1_Entry_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01B68, Array_EmptyInternalEnumerator_1_UnityEngine_Timeline_IntervalTree_1_Entry__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Xml_Linq_XHashtable_1_XHashtableState_Entry___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Xml_Linq_XHashtable_1_XHashtableState_Entry___ctor, (Array_EmptyInternalEnumerator_1_System_Xml_Linq_XHashtable_1_XHashtableState_Entry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Xml_Linq_XHashtable_1_XHashtableState_Entry__Dispose, (Array_EmptyInternalEnumerator_1_System_Xml_Linq_XHashtable_1_XHashtableState_Entry_ * __this, MethodInfo * method)); @@ -136922,6 +151027,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Xml_Linq_XH DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Xml_Linq_XHashtable_1_XHashtableState_Entry__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Xml_Linq_XHashtable_1_XHashtableState_Entry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Xml_Linq_XHashtable_1_XHashtableState_Entry__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Xml_Linq_XHashtable_1_XHashtableState_Entry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C290, XHashtable_1_TValue_XHashtableState_TValue_Entry_System_Object_, Array_EmptyInternalEnumerator_1_System_Xml_Linq_XHashtable_1_XHashtableState_Entry__get_Current, (Array_EmptyInternalEnumerator_1_System_Xml_Linq_XHashtable_1_XHashtableState_Entry_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01B60, Array_EmptyInternalEnumerator_1_System_Xml_Linq_XHashtable_1_XHashtableState_Entry__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry___ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry_ * __this, MethodInfo * method)); @@ -136929,6 +151035,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C2F0, Dictionary_2_TKey_TValue_Entry_System_ValueTuple_2_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01BD8, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__1__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__1__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__1_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__1 * __this, MethodInfo * method)); @@ -136936,6 +151043,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__1_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__1_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C350, Dictionary_2_TKey_TValue_Entry_System_ValueTuple_2_System_Object__1, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__1_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01BD0, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__1_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__2__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__2__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__2 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__2_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__2 * __this, MethodInfo * method)); @@ -136943,6 +151051,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__2_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__2 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__2_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__2 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C3B0, Dictionary_2_TKey_TValue_Entry_System_Byte_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__2_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__2 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01BC8, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__2_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__3__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__3__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__3 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__3_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__3 * __this, MethodInfo * method)); @@ -136950,6 +151059,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__3_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__3 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__3_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__3 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C410, Dictionary_2_TKey_TValue_Entry_System_ByteEnum_System_Int32_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__3_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__3 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01BC0, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__3_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__4__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__4__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__4 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__4_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__4 * __this, MethodInfo * method)); @@ -136957,6 +151067,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__4_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__4 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__4_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__4 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C470, Dictionary_2_TKey_TValue_Entry_System_ByteEnum_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__4_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__4 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01BB8, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__4_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__5__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__5__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__5 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__5_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__5 * __this, MethodInfo * method)); @@ -136964,6 +151075,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__5_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__5 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C530, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__5_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__5 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C4D0, Dictionary_2_TKey_TValue_Entry_Dissonance_Audio_Playback_FrameFormat_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__5_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__5 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01BB0, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__5_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__6__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__6__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__6 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__6_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__6 * __this, MethodInfo * method)); @@ -136971,6 +151083,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__6_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__6 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__6_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__6 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C5C0, Dictionary_2_TKey_TValue_Entry_System_Guid_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__6_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__6 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01BA8, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__6_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__7__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__7__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__7 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__7_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__7 * __this, MethodInfo * method)); @@ -136978,6 +151091,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__7_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__7 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C680, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__7_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__7 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C620, Dictionary_2_TKey_TValue_Entry_System_Guid_System_UInt32_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__7_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__7 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01BA0, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__7_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__8__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__8__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__8 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__8_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__8 * __this, MethodInfo * method)); @@ -136985,6 +151099,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__8_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__8 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__8_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__8 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C710, Dictionary_2_TKey_TValue_Entry_UnityEngine_Hash128_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__8_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__8 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01B18, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__8_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__9__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__9__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__9 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__9_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__9 * __this, MethodInfo * method)); @@ -136992,6 +151107,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__9_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__9 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C7D0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__9_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__9 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C770, Dictionary_2_TKey_TValue_Entry_Pathfinding_Int2_System_Int32_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__9_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__9 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01B10, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__9_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__10__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__10__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__10 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__10_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__10 * __this, MethodInfo * method)); @@ -136999,6 +151115,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__10_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__10 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__10_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__10 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C850, Dictionary_2_TKey_TValue_Entry_Pathfinding_Int3_System_Int32_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__10_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__10 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01B08, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__10_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__11__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__11__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__11 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__11_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__11 * __this, MethodInfo * method)); @@ -137006,6 +151123,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__11_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__11 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C7D0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__11_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__11 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C8B0, Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__11_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__11 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01B00, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__11_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__12__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__12__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__12 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__12_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__12 * __this, MethodInfo * method)); @@ -137013,6 +151131,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__12_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__12 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C970, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__12_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__12 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C910, Dictionary_2_TKey_TValue_Entry_System_Int32_System_ValueTuple_2_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__12_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__12 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01AF8, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__12_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__13__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__13__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__13 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__13_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__13 * __this, MethodInfo * method)); @@ -137020,6 +151139,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__13_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__13 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__13_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__13 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C9F0, Dictionary_2_TKey_TValue_Entry_System_Int32_System_Boolean_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__13_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__13 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01AF0, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__13_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__14__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__14__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__14 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__14_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__14 * __this, MethodInfo * method)); @@ -137027,6 +151147,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__14_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__14 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__14_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__14 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141CA50, Dictionary_2_TKey_TValue_Entry_System_Int32_System_ByteEnum_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__14_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__14 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01AE8, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__14_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__15__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__15__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__15 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__15_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__15 * __this, MethodInfo * method)); @@ -137034,6 +151155,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__15_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__15 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__15_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__15 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141CAB0, Dictionary_2_TKey_TValue_Entry_System_Int32_System_Char_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__15_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__15 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01AE0, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__15_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__16__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__16__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__16 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__16_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__16 * __this, MethodInfo * method)); @@ -137041,6 +151163,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__16_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__16 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141CB70, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__16_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__16 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141CB10, Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__16_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__16 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01B58, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__16_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__17__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__17__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__17 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__17_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__17 * __this, MethodInfo * method)); @@ -137048,6 +151171,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__17_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__17 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__17_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__17 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141CC00, Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int16_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__17_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__17 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01B50, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__17_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__18__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__18__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__18 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__18_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__18 * __this, MethodInfo * method)); @@ -137055,6 +151179,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__18_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__18 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__18_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__18 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141CC60, Dictionary_2_TKey_TValue_Entry_System_Int32_Pathfinding_Int3_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__18_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__18 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01B48, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__18_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry___ctor, (Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__Dispose, (Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry_ * __this, MethodInfo * method)); @@ -137062,6 +151187,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Rewired_Utils_Clas DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141CCC0, ADictionary_2_TKey_TValue_Entry_System_Int32_System_Int32_, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__get_Current, (Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01B40, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__19__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__19__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__19 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__19_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__19 * __this, MethodInfo * method)); @@ -137069,6 +151195,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__19_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__19 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__19_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__19 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141CD20, Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int32_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__19_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__19 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01B38, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__19_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__20__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__20__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__20 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__20_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__20 * __this, MethodInfo * method)); @@ -137076,6 +151203,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__20_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__20 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__20_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__20 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141CD80, Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int32Enum_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__20_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__20 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01B30, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__20_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__21__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__21__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__21 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__21_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__21 * __this, MethodInfo * method)); @@ -137083,6 +151211,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__21_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__21 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__21_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__21 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141CDE0, Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int64_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__21_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__21 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01B28, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__21_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__1__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__1__ctor, (Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__1_Dispose, (Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__1 * __this, MethodInfo * method)); @@ -137090,6 +151219,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Rewired_Utils_Clas DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__1_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__1_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141CE40, ADictionary_2_TKey_TValue_Entry_System_Int32_System_Object_, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__1_get_Current, (Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01B20, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__1_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__22__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__22__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__22 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__22_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__22 * __this, MethodInfo * method)); @@ -137097,6 +151227,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__22_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__22 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__22_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__22 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141CEA0, Dictionary_2_TKey_TValue_Entry_System_Int32_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__22_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__22 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01A98, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__22_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__23__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__23__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__23 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__23_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__23 * __this, MethodInfo * method)); @@ -137104,6 +151235,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__23_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__23 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__23_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__23 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141CF00, Dictionary_2_TKey_TValue_Entry_System_Int32_PlayerFlashlightBeam_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__23_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__23 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01A90, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__23_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__24__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__24__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__24 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__24_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__24 * __this, MethodInfo * method)); @@ -137111,6 +151243,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__24_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__24 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C680, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__24_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__24 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141CF60, Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_RenderInstancedDataLayout_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__24_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__24 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01A88, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__24_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__25__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__25__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__25 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__25_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__25 * __this, MethodInfo * method)); @@ -137118,6 +151251,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__25_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__25 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__25_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__25 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141CFC0, Dictionary_2_TKey_TValue_Entry_System_Int32_System_Single_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__25_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__25 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01A80, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__25_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__26__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__26__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__26 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__26_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__26 * __this, MethodInfo * method)); @@ -137125,6 +151259,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__26_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__26 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__26_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__26 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141D020, Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_TreeItem_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__26_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__26 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01A78, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__26_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__27__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__27__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__27 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__27_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__27 * __this, MethodInfo * method)); @@ -137132,6 +151267,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__27_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__27 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C7D0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__27_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__27 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141D080, Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Vector2Int_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__27_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__27 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01A70, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__27_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__28__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__28__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__28 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__28_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__28 * __this, MethodInfo * method)); @@ -137139,6 +151275,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__28_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__28 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C680, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__28_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__28 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141D0E0, Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Vector4_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__28_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__28 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01A68, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__28_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__29__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__29__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__29 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__29_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__29 * __this, MethodInfo * method)); @@ -137146,6 +151283,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__29_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__29 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141D1A0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__29_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__29 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141D140, Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__29_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__29 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01A60, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__29_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__30__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__30__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__30 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__30_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__30 * __this, MethodInfo * method)); @@ -137153,6 +151291,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__30_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__30 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__30_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__30 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141D230, Dictionary_2_TKey_TValue_Entry_System_Int32Enum_System_Int32Enum_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__30_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__30 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01AD8, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__30_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__31__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__31__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__31 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__31_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__31 * __this, MethodInfo * method)); @@ -137160,6 +151299,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__31_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__31 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__31_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__31 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141D290, Dictionary_2_TKey_TValue_Entry_System_Int32Enum_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__31_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__31 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01AD0, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__31_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__32__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__32__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__32 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__32_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__32 * __this, MethodInfo * method)); @@ -137167,6 +151307,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__32_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__32 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141D350, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__32_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__32 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141D2F0, Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_UIElements_ComputedStyle_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__32_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__32 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01AC8, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__32_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__33__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__33__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__33 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__33_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__33 * __this, MethodInfo * method)); @@ -137174,6 +151315,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__33_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__33 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__33_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__33 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141D410, Dictionary_2_TKey_TValue_Entry_System_Int64_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__33_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__33 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01AC0, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__33_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__34__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__34__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__34 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__34_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__34 * __this, MethodInfo * method)); @@ -137181,6 +151323,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__34_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__34 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__34_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__34 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141D470, Dictionary_2_TKey_TValue_Entry_System_IntPtr_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__34_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__34 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01AB8, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__34_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__35__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__35__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__35 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__35_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__35 * __this, MethodInfo * method)); @@ -137188,6 +151331,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__35_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__35 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C530, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__35_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__35 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141D4D0, Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__35_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__35 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01AB0, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__35_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__36__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__36__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__36 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__36_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__36 * __this, MethodInfo * method)); @@ -137195,6 +151339,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__36_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__36 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__36_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__36 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141D530, Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__36_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__36 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01AA8, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__36_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__37__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__37__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__37 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__37_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__37 * __this, MethodInfo * method)); @@ -137202,6 +151347,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__37_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__37 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C530, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__37_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__37 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141D590, Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__37_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__37 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01AA0, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__37_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__38__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__38__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__38 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__38_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__38 * __this, MethodInfo * method)); @@ -137209,6 +151355,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__38_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__38 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__38_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__38 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141D5F0, Dictionary_2_TKey_TValue_Entry_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__38_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__38 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01A18, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__38_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__39__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__39__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__39 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__39_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__39 * __this, MethodInfo * method)); @@ -137216,6 +151363,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__39_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__39 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__39_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__39 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141D650, Dictionary_2_TKey_TValue_Entry_Photon_Bolt_NetworkId_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__39_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__39 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01A10, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__39_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__40__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__40__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__40 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__40_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__40 * __this, MethodInfo * method)); @@ -137223,6 +151371,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__40_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__40 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141D1A0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__40_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__40 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141D6B0, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__40_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__40 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01A08, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__40_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__41__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__41__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__41 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__41_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__41 * __this, MethodInfo * method)); @@ -137230,6 +151379,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__41_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__41 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C530, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__41_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__41 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141D710, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__41_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__41 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01A00, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__41_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__42__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__42__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__42 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__42_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__42 * __this, MethodInfo * method)); @@ -137237,6 +151387,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__42_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__42 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__42_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__42 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141D770, Dictionary_2_TKey_TValue_Entry_System_Object_System_Boolean_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__42_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__42 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D019F8, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__42_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__43__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__43__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__43 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__43_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__43 * __this, MethodInfo * method)); @@ -137244,6 +151395,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__43_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__43 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C530, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__43_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__43 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141D7D0, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Bounds_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__43_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__43 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D019F0, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__43_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__44__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__44__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__44 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__44_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__44 * __this, MethodInfo * method)); @@ -137251,6 +151403,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__44_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__44 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__44_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__44 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141D830, Dictionary_2_TKey_TValue_Entry_System_Object_System_Byte_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__44_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__44 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D019E8, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__44_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__45__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__45__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__45 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__45_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__45 * __this, MethodInfo * method)); @@ -137258,6 +151411,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__45_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__45 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__45_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__45 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141D890, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Color_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__45_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__45 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D019E0, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__45_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__46__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__46__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__46 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__46_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__46 * __this, MethodInfo * method)); @@ -137265,6 +151419,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__46_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__46 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__46_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__46 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141D8F0, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Color32_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__46_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__46 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01A58, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__46_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__2__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__2__ctor, (Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__2 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__2_Dispose, (Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__2 * __this, MethodInfo * method)); @@ -137272,6 +151427,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Rewired_Utils_Clas DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__2_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__2 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__2_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__2 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141D950, ADictionary_2_TKey_TValue_Entry_System_Object_System_Int32_, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__2_get_Current, (Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__2 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01A50, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__2_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__47__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__47__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__47 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__47_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__47 * __this, MethodInfo * method)); @@ -137279,6 +151435,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__47_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__47 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__47_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__47 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141D9B0, Dictionary_2_TKey_TValue_Entry_System_Object_System_Int32_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__47_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__47 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01A48, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__47_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__3__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__3__ctor, (Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__3 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__3_Dispose, (Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__3 * __this, MethodInfo * method)); @@ -137286,6 +151443,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Rewired_Utils_Clas DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__3_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__3 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__3_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__3 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141DA10, ADictionary_2_TKey_TValue_Entry_System_Object_System_Int32Enum_, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__3_get_Current, (Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__3 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01A40, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__3_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__48__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__48__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__48 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__48_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__48 * __this, MethodInfo * method)); @@ -137293,6 +151451,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__48_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__48 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__48_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__48 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141DA70, Dictionary_2_TKey_TValue_Entry_System_Object_System_Int32Enum_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__48_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__48 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01A38, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__48_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__4__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__4__ctor, (Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__4 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__4_Dispose, (Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__4 * __this, MethodInfo * method)); @@ -137300,6 +151459,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Rewired_Utils_Clas DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__4_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__4 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__4_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__4 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141DAD0, ADictionary_2_TKey_TValue_Entry_System_Object_System_Object_, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__4_get_Current, (Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__4 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01A30, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__4_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__49__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__49__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__49 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__49_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__49 * __this, MethodInfo * method)); @@ -137307,6 +151467,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__49_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__49 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__49_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__49 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141DB30, Dictionary_2_TKey_TValue_Entry_System_Object_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__49_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__49 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01A28, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__49_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__50__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__50__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__50 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__50_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__50 * __this, MethodInfo * method)); @@ -137314,6 +151475,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__50_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__50 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__50_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__50 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141DB90, Dictionary_2_TKey_TValue_Entry_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__50_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__50 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01A20, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__50_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__51__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__51__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__51 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__51_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__51 * __this, MethodInfo * method)); @@ -137321,6 +151483,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__51_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__51 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141DC50, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__51_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__51 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141DBF0, Dictionary_2_TKey_TValue_Entry_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__51_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__51 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01998, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__51_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__52__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__52__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__52 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__52_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__52 * __this, MethodInfo * method)); @@ -137328,6 +151491,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__52_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__52 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__52_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__52 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141DCF0, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Playables_Playable_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__52_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__52 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01990, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__52_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__53__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__53__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__53 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__53_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__53 * __this, MethodInfo * method)); @@ -137335,6 +151499,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__53_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__53 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141D1A0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__53_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__53 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141DD50, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__53_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__53 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01988, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__53_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__54__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__54__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__54 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__54_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__54 * __this, MethodInfo * method)); @@ -137342,6 +151507,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__54_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__54 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__54_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__54 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141DDB0, Dictionary_2_TKey_TValue_Entry_System_Object_System_Resources_ResourceLocator_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__54_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__54 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01980, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__54_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__55__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__55__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__55 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__55_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__55 * __this, MethodInfo * method)); @@ -137349,6 +151515,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__55_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__55 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__55_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__55 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141DE10, Dictionary_2_TKey_TValue_Entry_System_Object_System_Single_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__55_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__55 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01978, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__55_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__56__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__56__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__56 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__56_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__56 * __this, MethodInfo * method)); @@ -137356,6 +151523,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__56_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__56 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__56_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__56 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141DE70, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__56_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__56 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01970, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__56_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__57__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__57__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__57 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__57_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__57 * __this, MethodInfo * method)); @@ -137363,6 +151531,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__57_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__57 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__57_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__57 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141DED0, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_UIElements_TextureId_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__57_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__57 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01968, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__57_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__58__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__58__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__58 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__58_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__58 * __this, MethodInfo * method)); @@ -137370,6 +151539,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__58_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__58 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__58_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__58 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141DF30, Dictionary_2_TKey_TValue_Entry_System_Object_System_TimeSpan_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__58_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__58 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01960, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__58_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__59__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__59__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__59 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__59_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__59 * __this, MethodInfo * method)); @@ -137377,6 +151547,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__59_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__59 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141D1A0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__59_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__59 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141DF90, Dictionary_2_TKey_TValue_Entry_System_Object_UdpKit_UdpEndPoint_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__59_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__59 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D019D8, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__59_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__60__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__60__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__60 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__60_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__60 * __this, MethodInfo * method)); @@ -137384,6 +151555,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__60_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__60 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__60_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__60 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141DFF0, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Vector2_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__60_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__60 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D019D0, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__60_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__61__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__61__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__61 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__61_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__61 * __this, MethodInfo * method)); @@ -137391,6 +151563,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__61_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__61 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__61_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__61 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141E050, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Vector3_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__61_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__61 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D019C8, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__61_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__62__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__62__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__62 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__62_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__62 * __this, MethodInfo * method)); @@ -137398,6 +151571,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__62_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__62 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141E110, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__62_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__62 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141E0B0, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__62_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__62 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D019C0, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__62_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__63__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__63__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__63 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__63_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__63 * __this, MethodInfo * method)); @@ -137405,6 +151579,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__63_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__63 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__63_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__63 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141E200, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__63_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__63 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D019B8, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__63_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__64__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__64__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__64 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__64_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__64 * __this, MethodInfo * method)); @@ -137412,6 +151587,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__64_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__64 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141E2C0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__64_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__64 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141E260, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__64_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__64 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D019B0, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__64_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__65__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__65__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__65 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__65_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__65 * __this, MethodInfo * method)); @@ -137419,6 +151595,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__65_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__65 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__65_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__65 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141E370, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__65_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__65 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D019A8, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__65_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__66__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__66__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__66 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__66_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__66 * __this, MethodInfo * method)); @@ -137426,6 +151603,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__66_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__66 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141DC50, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__66_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__66 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141E3D0, Dictionary_2_TKey_TValue_Entry_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__66_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__66 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D019A0, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__66_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__67__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__67__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__67 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__67_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__67 * __this, MethodInfo * method)); @@ -137433,6 +151611,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__67_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__67 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141DC50, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__67_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__67 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141E430, Dictionary_2_TKey_TValue_Entry_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__67_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__67 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01918, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__67_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__68__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__68__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__68 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__68_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__68 * __this, MethodInfo * method)); @@ -137440,6 +151619,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__68_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__68 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__68_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__68 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141E490, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__68_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__68 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01910, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__68_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__69__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__69__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__69 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__69_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__69 * __this, MethodInfo * method)); @@ -137447,6 +151627,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__69_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__69 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__69_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__69 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141E4F0, Dictionary_2_TKey_TValue_Entry_Photon_Bolt_PrefabId_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__69_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__69 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01908, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__69_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__70__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__70__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__70 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__70_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__70 * __this, MethodInfo * method)); @@ -137454,6 +151635,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__70_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__70 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141DC50, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__70_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__70 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141E550, Dictionary_2_TKey_TValue_Entry_UnityEngine_RaycastHit_System_Int32_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__70_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__70 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01900, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__70_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__71__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__71__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__71 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__71_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__71 * __this, MethodInfo * method)); @@ -137461,6 +151643,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__71_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__71 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141E610, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__71_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__71 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141E5B0, Dictionary_2_TKey_TValue_Entry_System_Single_SplineMesh_CurveSample_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__71_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__71 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D018F8, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__71_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__72__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__72__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__72 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__72_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__72 * __this, MethodInfo * method)); @@ -137468,6 +151651,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__72_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__72 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__72_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__72 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141E6C0, Dictionary_2_TKey_TValue_Entry_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__72_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__72 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D018F0, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__72_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__73__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__73__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__73 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__73_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__73 * __this, MethodInfo * method)); @@ -137475,6 +151659,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__73_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__73 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__73_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__73 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141E720, Dictionary_2_TKey_TValue_Entry_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__73_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__73 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D018E8, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__73_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__74__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__74__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__74 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__74_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__74 * __this, MethodInfo * method)); @@ -137482,6 +151667,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__74_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__74 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__74_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__74 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141E780, Dictionary_2_TKey_TValue_Entry_Photon_Bolt_TypeId_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__74_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__74 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D018E0, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__74_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__75__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__75__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__75 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__75_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__75 * __this, MethodInfo * method)); @@ -137489,6 +151675,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__75_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__75 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__75_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__75 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141E7E0, Dictionary_2_TKey_TValue_Entry_System_UInt16_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__75_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__75 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01958, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__75_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__76__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__76__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__76 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__76_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__76 * __this, MethodInfo * method)); @@ -137496,6 +151683,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__76_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__76 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141D1A0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__76_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__76 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141E840, Dictionary_2_TKey_TValue_Entry_System_UInt16_Dissonance_PlayerChannel_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__76_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__76 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01950, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__76_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__77__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__77__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__77 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__77_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__77 * __this, MethodInfo * method)); @@ -137503,6 +151691,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__77_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__77 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141DC50, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__77_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__77 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141E8A0, Dictionary_2_TKey_TValue_Entry_System_UInt16_Dissonance_RoomChannel_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__77_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__77 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01948, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__77_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__78__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__78__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__78 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__78_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__78 * __this, MethodInfo * method)); @@ -137510,6 +151699,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__78_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__78 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__78_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__78 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141E900, Dictionary_2_TKey_TValue_Entry_System_UInt32_System_Boolean_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__78_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__78 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01940, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__78_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__79__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__79__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__79 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__79_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__79 * __this, MethodInfo * method)); @@ -137517,6 +151707,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__79_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__79 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141DC50, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__79_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__79 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141E960, Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__79_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__79 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01938, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__79_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__80__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__80__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__80 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__80_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__80 * __this, MethodInfo * method)); @@ -137524,6 +151715,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__80_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__80 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__80_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__80 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141E9C0, Dictionary_2_TKey_TValue_Entry_System_UInt32_System_Int32_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__80_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__80 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01930, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__80_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__81__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__81__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__81 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__81_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__81 * __this, MethodInfo * method)); @@ -137531,6 +151723,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__81_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__81 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__81_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__81 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141EA20, Dictionary_2_TKey_TValue_Entry_System_UInt32_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__81_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__81 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01928, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__81_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__82__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__82__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__82 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__82_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__82 * __this, MethodInfo * method)); @@ -137538,6 +151731,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__82_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__82 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141EAE0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__82_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__82 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141EA80, Dictionary_2_TKey_TValue_Entry_System_UInt32_SessionClient_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__82_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__82 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01920, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__82_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__83__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__83__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__83 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__83_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__83 * __this, MethodInfo * method)); @@ -137545,6 +151739,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__83_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__83 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__83_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__83 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141EB80, Dictionary_2_TKey_TValue_Entry_System_UInt64_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__83_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__83 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01898, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__83_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__84__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__84__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__84 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__84_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__84 * __this, MethodInfo * method)); @@ -137552,6 +151747,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__84_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__84 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141D1A0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__84_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__84 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141EBE0, Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__84_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__84 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01890, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__84_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__85__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__85__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__85 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__85_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__85 * __this, MethodInfo * method)); @@ -137559,6 +151755,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__85_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__85 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__85_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__85 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141EC40, Dictionary_2_TKey_TValue_Entry_UdpKit_UdpChannelName_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__85_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__85 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01888, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__85_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__86__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__86__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__86 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__86_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__86 * __this, MethodInfo * method)); @@ -137566,6 +151763,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__86_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__86 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141D1A0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__86_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__86 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141ECA0, Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__86_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__86 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01880, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__86_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__87__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__87__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__87 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__87_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__87 * __this, MethodInfo * method)); @@ -137573,6 +151771,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__87_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__87 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C530, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__87_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__87 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141ED00, Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_UInt32_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__87_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__87 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01878, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__87_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__88__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__88__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__88 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__88_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__88 * __this, MethodInfo * method)); @@ -137580,6 +151779,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__88_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__88 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__88_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__88 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141ED60, Dictionary_2_TKey_TValue_Entry_Photon_Bolt_UniqueId_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__88_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__88 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01870, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__88_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__89__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__89__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__89 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__89_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__89 * __this, MethodInfo * method)); @@ -137587,6 +151787,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__89_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__89 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__89_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__89 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141EDC0, Dictionary_2_TKey_TValue_Entry_UnityEngine_Vector3_System_Int32_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__89_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__89 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01868, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__89_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__90__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__90__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__90 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__90_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__90 * __this, MethodInfo * method)); @@ -137594,6 +151795,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__90_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__90 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__90_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__90 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141EE20, Dictionary_2_TKey_TValue_Entry_UnityEngine_Vector3Int_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__90_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__90 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01860, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__90_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__91__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__91__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__91 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__91_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__91 * __this, MethodInfo * method)); @@ -137601,6 +151803,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__91_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__91 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C530, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__91_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__91 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141EE80, Dictionary_2_TKey_TValue_Entry_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__91_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__91 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D018D8, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__91_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__92__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__92__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__92 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__92_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__92 * __this, MethodInfo * method)); @@ -137608,6 +151811,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__92_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__92 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__92_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__92 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141EEE0, Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__92_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__92 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D018D0, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__92_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__93__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__93__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__93 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__93_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__93 * __this, MethodInfo * method)); @@ -137615,6 +151819,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__93_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__93 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141DC50, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__93_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__93 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141EF40, Dictionary_2_TKey_TValue_Entry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__93_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__93 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D018C8, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__93_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__94__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__94__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__94 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__94_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__94 * __this, MethodInfo * method)); @@ -137622,6 +151827,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__94_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__94 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__94_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__94 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141EFA0, Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__94_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__94 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D018C0, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__94_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__95__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__95__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__95 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__95_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__95 * __this, MethodInfo * method)); @@ -137629,6 +151835,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__95_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__95 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__95_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__95 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141F000, Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__95_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__95 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D018B8, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__95_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__96__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__96__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__96 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__96_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__96 * __this, MethodInfo * method)); @@ -137636,6 +151843,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__96_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__96 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141F0C0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__96_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__96 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141F060, Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__96_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__96 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D018B0, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__96_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__97__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__97__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__97 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__97_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__97 * __this, MethodInfo * method)); @@ -137643,6 +151851,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__97_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__97 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141EAE0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__97_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__97 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141F160, Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__97_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__97 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D018A8, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__97_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__98__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__98__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__98 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__98_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__98 * __this, MethodInfo * method)); @@ -137650,6 +151859,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__98_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__98 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C530, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__98_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__98 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141F1C0, Dictionary_2_TKey_TValue_Entry_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__98_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__98 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D018A0, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__98_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__99__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__99__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__99 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__99_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__99 * __this, MethodInfo * method)); @@ -137657,6 +151867,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__99_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__99 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__99_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__99 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141F220, Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__99_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__99 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01818, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__99_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__100__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__100__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__100 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__100_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__100 * __this, MethodInfo * method)); @@ -137664,6 +151875,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__100_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__100 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__100_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__100 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141F280, Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__100_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__100 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01810, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__100_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__101__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__101__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__101 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__101_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__101 * __this, MethodInfo * method)); @@ -137671,6 +151883,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__101_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__101 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__101_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__101 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141F2E0, Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__101_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__101 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01808, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__101_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__102__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__102__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__102 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__102_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__102 * __this, MethodInfo * method)); @@ -137678,6 +151891,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__102_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__102 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__102_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__102 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141F340, Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__102_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__102 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01800, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__102_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__103__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__103__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__103 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__103_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__103 * __this, MethodInfo * method)); @@ -137685,6 +151899,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__103_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__103 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141F400, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__103_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__103 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141F3A0, Dictionary_2_TKey_TValue_Entry_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__103_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__103 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D017F8, Array_EmptyInternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__103_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb___ctor, (Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__Dispose, (Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb_ * __this, MethodInfo * method)); @@ -137692,6 +151907,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Rewired_Utils_Clas DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141F4D0, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object_, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__get_Current, (Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D017F0, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1__ctor, (Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1_Dispose, (Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1 * __this, MethodInfo * method)); @@ -137699,6 +151915,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Rewired_Utils_Clas DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141F530, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object_, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1_get_Current, (Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D017E8, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2__ctor, (Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2_Dispose, (Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2 * __this, MethodInfo * method)); @@ -137706,6 +151923,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Rewired_Utils_Clas DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141F590, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2_get_Current, (Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D017E0, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2___ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); @@ -137713,6 +151931,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141F5F0, KeyValuePair_2_System_ValueTuple_2_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01858, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__1__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__1__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__1_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__1 * __this, MethodInfo * method)); @@ -137720,6 +151939,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__1_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__1_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141F650, KeyValuePair_2_System_ValueTuple_2_System_Object__1, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__1_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01850, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__1_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__2__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__2__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__2 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__2_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__2 * __this, MethodInfo * method)); @@ -137727,6 +151947,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__2_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__2 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__2_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__2 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141F6B0, KeyValuePair_2_System_Byte_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__2_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__2 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01848, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__2_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__3__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__3__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__3 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__3_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__3 * __this, MethodInfo * method)); @@ -137734,6 +151955,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__3_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__3 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BC50, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__3_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__3 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141F710, KeyValuePair_2_System_ByteEnum_System_Int32_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__3_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__3 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01840, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__3_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__4__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__4__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__4 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__4_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__4 * __this, MethodInfo * method)); @@ -137741,6 +151963,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__4_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__4 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__4_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__4 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141F770, KeyValuePair_2_System_ByteEnum_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__4_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__4 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01838, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__4_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__5__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__5__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__5 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__5_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__5 * __this, MethodInfo * method)); @@ -137748,6 +151971,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__5_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__5 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__5_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__5 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141F7D0, KeyValuePair_2_System_DateTime_System_UInt32_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__5_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__5 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01830, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__5_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__6__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__6__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__6 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__6_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__6 * __this, MethodInfo * method)); @@ -137755,6 +151979,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__6_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__6 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__6_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__6 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141F830, KeyValuePair_2_Dissonance_Audio_Playback_FrameFormat_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__6_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__6 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01828, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__6_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__7__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__7__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__7 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__7_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__7 * __this, MethodInfo * method)); @@ -137762,6 +151987,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__7_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__7 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__7_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__7 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141F890, KeyValuePair_2_System_Guid_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__7_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__7 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01820, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__7_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__8__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__8__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__8 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__8_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__8 * __this, MethodInfo * method)); @@ -137769,6 +151995,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__8_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__8 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C7D0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__8_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__8 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141F8F0, KeyValuePair_2_System_Guid_System_UInt32_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__8_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__8 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01798, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__8_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__9__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__9__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__9 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__9_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__9 * __this, MethodInfo * method)); @@ -137776,6 +152003,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__9_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__9 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__9_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__9 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141F950, KeyValuePair_2_UnityEngine_Hash128_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__9_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__9 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01790, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__9_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__10__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__10__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__10 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__10_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__10 * __this, MethodInfo * method)); @@ -137783,6 +152011,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__10_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__10 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141FA10, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__10_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__10 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141F9B0, KeyValuePair_2_Pathfinding_Int2_System_Int32_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__10_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__10 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01788, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__10_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__11__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__11__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__11 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__11_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__11 * __this, MethodInfo * method)); @@ -137790,6 +152019,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__11_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__11 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__11_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__11 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141FA90, KeyValuePair_2_Pathfinding_Int3_System_Int32_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__11_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__11 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01780, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__11_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__12__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__12__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__12 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__12_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__12 * __this, MethodInfo * method)); @@ -137797,6 +152027,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__12_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__12 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141FA10, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__12_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__12 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141FAF0, KeyValuePair_2_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__12_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__12 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01778, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__12_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__13__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__13__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__13 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__13_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__13 * __this, MethodInfo * method)); @@ -137804,6 +152035,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__13_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__13 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__13_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__13 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141FB50, KeyValuePair_2_System_Int32_System_ValueTuple_2__3, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__13_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__13 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01770, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__13_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__14__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__14__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__14 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__14_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__14 * __this, MethodInfo * method)); @@ -137811,6 +152043,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__14_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__14 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C680, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__14_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__14 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141FBB0, KeyValuePair_2_System_Int32_System_ValueTuple_2__2, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__14_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__14 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01768, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__14_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__15__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__15__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__15 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__15_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__15 * __this, MethodInfo * method)); @@ -137818,6 +152051,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__15_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__15 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BC50, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__15_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__15 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141FC10, KeyValuePair_2_System_Int32_System_Boolean_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__15_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__15 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01760, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__15_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__16__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__16__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__16 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__16_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__16 * __this, MethodInfo * method)); @@ -137825,6 +152059,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__16_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__16 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BC50, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__16_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__16 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141FC70, KeyValuePair_2_System_Int32_System_ByteEnum_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__16_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__16 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D017D8, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__16_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__17__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__17__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__17 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__17_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__17 * __this, MethodInfo * method)); @@ -137832,6 +152067,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__17_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__17 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BC50, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__17_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__17 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141FCD0, KeyValuePair_2_System_Int32_System_Char_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__17_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__17 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D017D0, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__17_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__18__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__18__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__18 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__18_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__18 * __this, MethodInfo * method)); @@ -137839,6 +152075,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__18_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__18 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141DC50, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__18_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__18 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141FD30, KeyValuePair_2_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__18_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__18 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D017C8, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__18_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__19__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__19__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__19 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__19_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__19 * __this, MethodInfo * method)); @@ -137846,6 +152083,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__19_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__19 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BC50, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__19_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__19 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141FD90, KeyValuePair_2_System_Int32_System_Int16_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__19_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__19 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D017C0, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__19_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__20__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__20__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__20 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__20_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__20 * __this, MethodInfo * method)); @@ -137853,6 +152091,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__20_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__20 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__20_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__20 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141FDF0, KeyValuePair_2_System_Int32_Pathfinding_Int3_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__20_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__20 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D017B8, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__20_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__21__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__21__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__21 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__21_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__21 * __this, MethodInfo * method)); @@ -137860,6 +152099,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__21_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__21 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BC50, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__21_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__21 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141FE50, KeyValuePair_2_System_Int32_System_Int32_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__21_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__21 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D017B0, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__21_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__22__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__22__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__22 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__22_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__22 * __this, MethodInfo * method)); @@ -137867,6 +152107,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__22_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__22 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BC50, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__22_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__22 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141FEB0, KeyValuePair_2_System_Int32_System_Int32Enum_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__22_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__22 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D017A8, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__22_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__23__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__23__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__23 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__23_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__23 * __this, MethodInfo * method)); @@ -137874,6 +152115,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__23_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__23 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__23_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__23 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141FF10, KeyValuePair_2_System_Int32_System_Int64_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__23_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__23 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D017A0, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__23_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__24__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__24__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__24 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__24_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__24 * __this, MethodInfo * method)); @@ -137881,6 +152123,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__24_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__24 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__24_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__24 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141FF70, KeyValuePair_2_System_Int32_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__24_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__24 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01718, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__24_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__25__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__25__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__25 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__25_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__25 * __this, MethodInfo * method)); @@ -137888,6 +152131,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__25_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__25 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__25_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__25 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141FFD0, KeyValuePair_2_System_Int32_PlayerFlashlightBeam_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__25_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__25 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01710, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__25_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__26__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__26__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__26 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__26_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__26 * __this, MethodInfo * method)); @@ -137895,6 +152139,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__26_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__26 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C7D0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__26_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__26 * __this, MethodInfo * method)); DO_APP_FUNC(0x01420030, KeyValuePair_2_System_Int32_UnityEngine_RenderInstancedDataLayout_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__26_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__26 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01708, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__26_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__27__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__27__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__27 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__27_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__27 * __this, MethodInfo * method)); @@ -137902,6 +152147,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__27_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__27 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BC50, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__27_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__27 * __this, MethodInfo * method)); DO_APP_FUNC(0x01420090, KeyValuePair_2_System_Int32_System_Single_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__27_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__27 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01700, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__27_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__28__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__28__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__28 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__28_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__28 * __this, MethodInfo * method)); @@ -137909,6 +152155,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__28_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__28 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__28_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__28 * __this, MethodInfo * method)); DO_APP_FUNC(0x014200F0, KeyValuePair_2_System_Int32_UnityEngine_UIElements_TreeItem_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__28_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__28 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D016F8, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__28_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__29__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__29__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__29 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__29_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__29 * __this, MethodInfo * method)); @@ -137916,6 +152163,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__29_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__29 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141FA10, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__29_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__29 * __this, MethodInfo * method)); DO_APP_FUNC(0x01420150, KeyValuePair_2_System_Int32_UnityEngine_Vector2Int_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__29_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__29 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D016F0, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__29_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__30__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__30__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__30 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__30_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__30 * __this, MethodInfo * method)); @@ -137923,6 +152171,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__30_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__30 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C7D0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__30_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__30 * __this, MethodInfo * method)); DO_APP_FUNC(0x014201B0, KeyValuePair_2_System_Int32_UnityEngine_Vector4_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__30_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__30 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D016E8, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__30_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__31__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__31__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__31 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__31_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__31 * __this, MethodInfo * method)); @@ -137930,6 +152179,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__31_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__31 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C530, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__31_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__31 * __this, MethodInfo * method)); DO_APP_FUNC(0x01420210, KeyValuePair_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__31_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__31 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D016E0, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__31_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__32__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__32__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__32 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__32_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__32 * __this, MethodInfo * method)); @@ -137937,6 +152187,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__32_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__32 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BC50, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__32_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__32 * __this, MethodInfo * method)); DO_APP_FUNC(0x01420270, KeyValuePair_2_System_Int32Enum_System_Int32Enum_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__32_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__32 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01758, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__32_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__33__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__33__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__33 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__33_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__33 * __this, MethodInfo * method)); @@ -137944,6 +152195,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__33_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__33 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__33_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__33 * __this, MethodInfo * method)); DO_APP_FUNC(0x014202D0, KeyValuePair_2_System_Int32Enum_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__33_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__33 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01750, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__33_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__34__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__34__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__34 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__34_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__34 * __this, MethodInfo * method)); @@ -137951,6 +152203,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__34_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__34 * __this, MethodInfo * method)); DO_APP_FUNC(0x01420390, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__34_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__34 * __this, MethodInfo * method)); DO_APP_FUNC(0x01420330, KeyValuePair_2_System_Int64_UnityEngine_UIElements_ComputedStyle_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__34_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__34 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01748, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__34_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__35__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__35__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__35 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__35_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__35 * __this, MethodInfo * method)); @@ -137958,6 +152211,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__35_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__35 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__35_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__35 * __this, MethodInfo * method)); DO_APP_FUNC(0x01420440, KeyValuePair_2_System_Int64_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__35_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__35 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01740, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__35_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__36__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__36__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__36 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__36_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__36 * __this, MethodInfo * method)); @@ -137965,6 +152219,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__36_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__36 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__36_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__36 * __this, MethodInfo * method)); DO_APP_FUNC(0x014204A0, KeyValuePair_2_System_IntPtr_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__36_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__36 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01738, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__36_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__37__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__37__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__37 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__37_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__37 * __this, MethodInfo * method)); @@ -137972,6 +152227,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__37_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__37 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__37_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__37 * __this, MethodInfo * method)); DO_APP_FUNC(0x01420500, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__37_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__37 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01730, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__37_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__38__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__38__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__38 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__38_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__38 * __this, MethodInfo * method)); @@ -137979,6 +152235,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__38_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__38 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__38_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__38 * __this, MethodInfo * method)); DO_APP_FUNC(0x01420560, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__38_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__38 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01728, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__38_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__39__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__39__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__39 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__39_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__39 * __this, MethodInfo * method)); @@ -137986,6 +152243,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__39_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__39 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__39_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__39 * __this, MethodInfo * method)); DO_APP_FUNC(0x014205C0, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__39_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__39 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01720, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__39_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__40__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__40__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__40 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__40_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__40 * __this, MethodInfo * method)); @@ -137993,6 +152251,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__40_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__40 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__40_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__40 * __this, MethodInfo * method)); DO_APP_FUNC(0x01420620, KeyValuePair_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__40_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__40 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01698, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__40_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__41__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__41__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__41 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__41_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__41 * __this, MethodInfo * method)); @@ -138000,6 +152259,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__41_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__41 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__41_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__41 * __this, MethodInfo * method)); DO_APP_FUNC(0x01420680, KeyValuePair_2_Photon_Bolt_NetworkId_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__41_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__41 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01690, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__41_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__42__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__42__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__42 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__42_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__42 * __this, MethodInfo * method)); @@ -138007,6 +152267,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__42_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__42 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__42_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__42 * __this, MethodInfo * method)); DO_APP_FUNC(0x014206E0, KeyValuePair_2_System_Object_System_ArraySegment_1_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__42_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__42 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01688, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__42_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__43__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__43__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__43 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__43_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__43 * __this, MethodInfo * method)); @@ -138014,6 +152275,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__43_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__43 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C530, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__43_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__43 * __this, MethodInfo * method)); DO_APP_FUNC(0x01420740, KeyValuePair_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__43_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__43 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01680, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__43_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__44__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__44__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__44 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__44_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__44 * __this, MethodInfo * method)); @@ -138021,6 +152283,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__44_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__44 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__44_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__44 * __this, MethodInfo * method)); DO_APP_FUNC(0x014207A0, KeyValuePair_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__44_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__44 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01678, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__44_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__45__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__45__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__45 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__45_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__45 * __this, MethodInfo * method)); @@ -138028,6 +152291,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__45_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__45 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__45_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__45 * __this, MethodInfo * method)); DO_APP_FUNC(0x01420800, KeyValuePair_2_System_Object_System_Boolean_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__45_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__45 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01670, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__45_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__46__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__46__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__46 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__46_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__46 * __this, MethodInfo * method)); @@ -138035,6 +152299,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__46_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__46 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__46_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__46 * __this, MethodInfo * method)); DO_APP_FUNC(0x01420860, KeyValuePair_2_System_Object_UnityEngine_Bounds_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__46_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__46 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01668, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__46_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__47__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__47__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__47 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__47_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__47 * __this, MethodInfo * method)); @@ -138042,6 +152307,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__47_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__47 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__47_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__47 * __this, MethodInfo * method)); DO_APP_FUNC(0x014208C0, KeyValuePair_2_System_Object_System_Byte_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__47_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__47 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01660, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__47_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__48__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__48__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__48 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__48_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__48 * __this, MethodInfo * method)); @@ -138049,6 +152315,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__48_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__48 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__48_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__48 * __this, MethodInfo * method)); DO_APP_FUNC(0x01420920, KeyValuePair_2_System_Object_System_Char_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__48_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__48 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D016D8, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__48_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__49__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__49__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__49 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__49_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__49 * __this, MethodInfo * method)); @@ -138056,6 +152323,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__49_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__49 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__49_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__49 * __this, MethodInfo * method)); DO_APP_FUNC(0x01420980, KeyValuePair_2_System_Object_UnityEngine_Color_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__49_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__49 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D016D0, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__49_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__50__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__50__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__50 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__50_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__50 * __this, MethodInfo * method)); @@ -138063,6 +152331,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__50_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__50 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__50_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__50 * __this, MethodInfo * method)); DO_APP_FUNC(0x014209E0, KeyValuePair_2_System_Object_UnityEngine_Color32_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__50_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__50 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D016C8, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__50_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__51__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__51__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__51 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__51_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__51 * __this, MethodInfo * method)); @@ -138070,6 +152339,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__51_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__51 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__51_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__51 * __this, MethodInfo * method)); DO_APP_FUNC(0x01420A40, KeyValuePair_2_System_Object_System_Int32_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__51_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__51 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D016C0, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__51_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__52__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__52__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__52 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__52_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__52 * __this, MethodInfo * method)); @@ -138077,6 +152347,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__52_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__52 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__52_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__52 * __this, MethodInfo * method)); DO_APP_FUNC(0x01420AA0, KeyValuePair_2_System_Object_System_Int32Enum_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__52_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__52 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D016B8, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__52_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__53__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__53__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__53 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__53_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__53 * __this, MethodInfo * method)); @@ -138084,6 +152355,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__53_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__53 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__53_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__53 * __this, MethodInfo * method)); DO_APP_FUNC(0x01420B00, KeyValuePair_2_System_Object_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__53_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__53 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D016B0, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__53_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__54__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__54__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__54 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__54_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__54 * __this, MethodInfo * method)); @@ -138091,6 +152363,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__54_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__54 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__54_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__54 * __this, MethodInfo * method)); DO_APP_FUNC(0x01420B60, KeyValuePair_2_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__54_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__54 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D016A8, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__54_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__55__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__55__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__55 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__55_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__55 * __this, MethodInfo * method)); @@ -138098,6 +152371,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__55_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__55 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141D1A0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__55_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__55 * __this, MethodInfo * method)); DO_APP_FUNC(0x01420BC0, KeyValuePair_2_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__55_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__55 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D016A0, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__55_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__56__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__56__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__56 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__56_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__56 * __this, MethodInfo * method)); @@ -138105,6 +152379,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__56_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__56 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__56_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__56 * __this, MethodInfo * method)); DO_APP_FUNC(0x01420C20, KeyValuePair_2_System_Object_UnityEngine_Playables_Playable_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__56_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__56 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01618, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__56_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__57__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__57__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__57 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__57_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__57 * __this, MethodInfo * method)); @@ -138112,6 +152387,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__57_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__57 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C530, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__57_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__57 * __this, MethodInfo * method)); DO_APP_FUNC(0x01420C80, KeyValuePair_2_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__57_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__57 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01610, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__57_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__58__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__58__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__58 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__58_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__58 * __this, MethodInfo * method)); @@ -138119,6 +152395,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__58_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__58 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__58_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__58 * __this, MethodInfo * method)); DO_APP_FUNC(0x01420CE0, KeyValuePair_2_System_Object_System_Resources_ResourceLocator_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__58_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__58 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01608, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__58_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__59__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__59__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__59 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__59_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__59 * __this, MethodInfo * method)); @@ -138126,6 +152403,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__59_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__59 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__59_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__59 * __this, MethodInfo * method)); DO_APP_FUNC(0x01420D40, KeyValuePair_2_System_Object_System_Single_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__59_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__59 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01600, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__59_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__60__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__60__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__60 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__60_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__60 * __this, MethodInfo * method)); @@ -138133,6 +152411,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__60_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__60 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__60_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__60 * __this, MethodInfo * method)); DO_APP_FUNC(0x01420DA0, KeyValuePair_2_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__60_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__60 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D015F8, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__60_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__61__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__61__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__61 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__61_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__61 * __this, MethodInfo * method)); @@ -138140,6 +152419,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__61_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__61 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__61_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__61 * __this, MethodInfo * method)); DO_APP_FUNC(0x01420E00, KeyValuePair_2_System_Object_UnityEngine_UIElements_TextureId_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__61_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__61 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D015F0, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__61_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__62__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__62__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__62 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__62_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__62 * __this, MethodInfo * method)); @@ -138147,6 +152427,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__62_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__62 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__62_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__62 * __this, MethodInfo * method)); DO_APP_FUNC(0x01420E60, KeyValuePair_2_System_Object_System_TimeSpan_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__62_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__62 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D015E8, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__62_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__63__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__63__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__63 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__63_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__63 * __this, MethodInfo * method)); @@ -138154,6 +152435,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__63_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__63 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C530, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__63_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__63 * __this, MethodInfo * method)); DO_APP_FUNC(0x01420EC0, KeyValuePair_2_System_Object_UdpKit_UdpEndPoint_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__63_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__63 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D015E0, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__63_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__64__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__64__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__64 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__64_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__64 * __this, MethodInfo * method)); @@ -138161,6 +152443,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__64_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__64 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__64_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__64 * __this, MethodInfo * method)); DO_APP_FUNC(0x01420F20, KeyValuePair_2_System_Object_UnityEngine_Vector2_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__64_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__64 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01658, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__64_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__65__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__65__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__65 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__65_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__65 * __this, MethodInfo * method)); @@ -138168,6 +152451,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__65_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__65 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__65_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__65 * __this, MethodInfo * method)); DO_APP_FUNC(0x01420F80, KeyValuePair_2_System_Object_UnityEngine_Vector3_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__65_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__65 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01650, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__65_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__66__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__66__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__66 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__66_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__66 * __this, MethodInfo * method)); @@ -138175,6 +152459,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__66_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__66 * __this, MethodInfo * method)); DO_APP_FUNC(0x01421040, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__66_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__66 * __this, MethodInfo * method)); DO_APP_FUNC(0x01420FE0, KeyValuePair_2_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__66_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__66 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01648, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__66_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__67__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__67__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__67 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__67_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__67 * __this, MethodInfo * method)); @@ -138182,6 +152467,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__67_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__67 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__67_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__67 * __this, MethodInfo * method)); DO_APP_FUNC(0x01421130, KeyValuePair_2_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__67_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__67 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01640, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__67_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__68__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__68__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__68 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__68_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__68 * __this, MethodInfo * method)); @@ -138189,6 +152475,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__68_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__68 * __this, MethodInfo * method)); DO_APP_FUNC(0x014211F0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__68_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__68 * __this, MethodInfo * method)); DO_APP_FUNC(0x01421190, KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__68_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__68 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01638, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__68_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__69__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__69__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__69 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__69_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__69 * __this, MethodInfo * method)); @@ -138196,6 +152483,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__69_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__69 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__69_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__69 * __this, MethodInfo * method)); DO_APP_FUNC(0x01421290, KeyValuePair_2_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__69_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__69 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01630, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__69_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__70__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__70__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__70 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__70_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__70 * __this, MethodInfo * method)); @@ -138203,6 +152491,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__70_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__70 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141D1A0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__70_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__70 * __this, MethodInfo * method)); DO_APP_FUNC(0x014212F0, KeyValuePair_2_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__70_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__70 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01628, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__70_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__71__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__71__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__71 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__71_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__71 * __this, MethodInfo * method)); @@ -138210,6 +152499,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__71_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__71 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141D1A0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__71_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__71 * __this, MethodInfo * method)); DO_APP_FUNC(0x01421350, KeyValuePair_2_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__71_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__71 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01620, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__71_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__72__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__72__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__72 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__72_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__72 * __this, MethodInfo * method)); @@ -138217,6 +152507,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__72_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__72 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__72_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__72 * __this, MethodInfo * method)); DO_APP_FUNC(0x014213B0, KeyValuePair_2_System_Object_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__72_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__72 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01598, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__72_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__73__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__73__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__73 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__73_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__73 * __this, MethodInfo * method)); @@ -138224,6 +152515,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__73_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__73 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__73_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__73 * __this, MethodInfo * method)); DO_APP_FUNC(0x01421410, KeyValuePair_2_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__73_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__73 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01590, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__73_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__74__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__74__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__74 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__74_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__74 * __this, MethodInfo * method)); @@ -138231,6 +152523,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__74_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__74 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__74_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__74 * __this, MethodInfo * method)); DO_APP_FUNC(0x01421470, KeyValuePair_2_Photon_Bolt_PrefabId_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__74_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__74 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01588, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__74_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__75__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__75__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__75 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__75_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__75 * __this, MethodInfo * method)); @@ -138238,6 +152531,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__75_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__75 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__75_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__75 * __this, MethodInfo * method)); DO_APP_FUNC(0x014214D0, KeyValuePair_2_UnityEngine_PropertyName_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__75_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__75 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01580, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__75_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__76__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__76__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__76 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__76_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__76 * __this, MethodInfo * method)); @@ -138245,6 +152539,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__76_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__76 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141D1A0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__76_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__76 * __this, MethodInfo * method)); DO_APP_FUNC(0x01421530, KeyValuePair_2_UnityEngine_RaycastHit_System_Int32_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__76_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__76 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01578, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__76_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__77__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__77__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__77 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__77_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__77 * __this, MethodInfo * method)); @@ -138252,6 +152547,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__77_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__77 * __this, MethodInfo * method)); DO_APP_FUNC(0x014215F0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__77_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__77 * __this, MethodInfo * method)); DO_APP_FUNC(0x01421590, KeyValuePair_2_System_Single_SplineMesh_CurveSample_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__77_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__77 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01570, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__77_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__78__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__78__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__78 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__78_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__78 * __this, MethodInfo * method)); @@ -138259,6 +152555,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__78_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__78 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__78_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__78 * __this, MethodInfo * method)); DO_APP_FUNC(0x014216A0, KeyValuePair_2_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__78_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__78 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01568, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__78_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__79__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__79__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__79 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__79_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__79 * __this, MethodInfo * method)); @@ -138266,6 +152563,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__79_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__79 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__79_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__79 * __this, MethodInfo * method)); DO_APP_FUNC(0x01421700, KeyValuePair_2_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__79_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__79 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01560, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__79_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__80__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__80__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__80 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__80_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__80 * __this, MethodInfo * method)); @@ -138273,6 +152571,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__80_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__80 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__80_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__80 * __this, MethodInfo * method)); DO_APP_FUNC(0x01421760, KeyValuePair_2_Photon_Bolt_TypeId_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__80_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__80 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D015D8, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__80_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__81__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__81__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__81 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__81_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__81 * __this, MethodInfo * method)); @@ -138280,6 +152579,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__81_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__81 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__81_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__81 * __this, MethodInfo * method)); DO_APP_FUNC(0x014217C0, KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__81_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__81 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D015D0, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__81_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__82__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__82__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__82 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__82_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__82 * __this, MethodInfo * method)); @@ -138287,6 +152587,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__82_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__82 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__82_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__82 * __this, MethodInfo * method)); DO_APP_FUNC(0x01421820, KeyValuePair_2_System_UInt16_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__82_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__82 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D015C8, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__82_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__83__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__83__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__83 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__83_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__83 * __this, MethodInfo * method)); @@ -138294,6 +152595,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__83_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__83 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C530, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__83_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__83 * __this, MethodInfo * method)); DO_APP_FUNC(0x01421880, KeyValuePair_2_System_UInt16_Dissonance_PlayerChannel_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__83_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__83 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D015C0, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__83_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__84__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__84__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__84 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__84_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__84 * __this, MethodInfo * method)); @@ -138301,6 +152603,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__84_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__84 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141D1A0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__84_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__84 * __this, MethodInfo * method)); DO_APP_FUNC(0x014218E0, KeyValuePair_2_System_UInt16_Dissonance_RoomChannel_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__84_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__84 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D015B8, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__84_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__85__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__85__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__85 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__85_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__85 * __this, MethodInfo * method)); @@ -138308,6 +152611,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__85_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__85 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BC50, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__85_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__85 * __this, MethodInfo * method)); DO_APP_FUNC(0x01421940, KeyValuePair_2_System_UInt32_System_Boolean_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__85_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__85 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D015B0, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__85_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__86__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__86__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__86 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__86_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__86 * __this, MethodInfo * method)); @@ -138315,6 +152619,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__86_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__86 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141D1A0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__86_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__86 * __this, MethodInfo * method)); DO_APP_FUNC(0x014219A0, KeyValuePair_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__86_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__86 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D015A8, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__86_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__87__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__87__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__87 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__87_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__87 * __this, MethodInfo * method)); @@ -138322,6 +152627,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__87_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__87 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BC50, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__87_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__87 * __this, MethodInfo * method)); DO_APP_FUNC(0x01421A00, KeyValuePair_2_System_UInt32_System_Int32_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__87_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__87 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D015A0, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__87_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__88__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__88__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__88 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__88_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__88 * __this, MethodInfo * method)); @@ -138329,6 +152635,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__88_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__88 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__88_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__88 * __this, MethodInfo * method)); DO_APP_FUNC(0x01421A60, KeyValuePair_2_System_UInt32_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__88_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__88 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01518, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__88_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__89__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__89__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__89 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__89_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__89 * __this, MethodInfo * method)); @@ -138336,6 +152643,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__89_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__89 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141CB70, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__89_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__89 * __this, MethodInfo * method)); DO_APP_FUNC(0x01421AC0, KeyValuePair_2_System_UInt32_SessionClient_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__89_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__89 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01510, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__89_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__90__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__90__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__90 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__90_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__90 * __this, MethodInfo * method)); @@ -138343,6 +152651,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__90_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__90 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__90_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__90 * __this, MethodInfo * method)); DO_APP_FUNC(0x01421B20, KeyValuePair_2_System_UInt64_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__90_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__90 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01508, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__90_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__91__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__91__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__91 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__91_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__91 * __this, MethodInfo * method)); @@ -138350,6 +152659,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__91_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__91 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C530, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__91_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__91 * __this, MethodInfo * method)); DO_APP_FUNC(0x01421B80, KeyValuePair_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__91_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__91 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01500, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__91_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__92__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__92__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__92 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__92_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__92 * __this, MethodInfo * method)); @@ -138357,6 +152667,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__92_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__92 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__92_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__92 * __this, MethodInfo * method)); DO_APP_FUNC(0x01421BE0, KeyValuePair_2_UdpKit_UdpChannelName_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__92_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__92 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D014F8, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__92_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__93__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__93__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__93 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__93_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__93 * __this, MethodInfo * method)); @@ -138364,6 +152675,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__93_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__93 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C530, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__93_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__93 * __this, MethodInfo * method)); DO_APP_FUNC(0x01421C40, KeyValuePair_2_UdpKit_UdpEndPoint_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__93_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__93 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D014F0, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__93_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__94__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__94__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__94 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__94_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__94 * __this, MethodInfo * method)); @@ -138371,6 +152683,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__94_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__94 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__94_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__94 * __this, MethodInfo * method)); DO_APP_FUNC(0x01421CA0, KeyValuePair_2_UdpKit_UdpEndPoint_System_UInt32_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__94_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__94 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D014E8, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__94_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__95__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__95__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__95 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__95_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__95 * __this, MethodInfo * method)); @@ -138378,6 +152691,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__95_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__95 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__95_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__95 * __this, MethodInfo * method)); DO_APP_FUNC(0x01421D00, KeyValuePair_2_Photon_Bolt_UniqueId_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__95_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__95 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D014E0, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__95_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__96__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__96__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__96 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__96_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__96 * __this, MethodInfo * method)); @@ -138385,6 +152699,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__96_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__96 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__96_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__96 * __this, MethodInfo * method)); DO_APP_FUNC(0x01421D60, KeyValuePair_2_UnityEngine_Vector3_System_Int32_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__96_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__96 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01558, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__96_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__97__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__97__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__97 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__97_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__97 * __this, MethodInfo * method)); @@ -138392,6 +152707,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__97_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__97 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__97_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__97 * __this, MethodInfo * method)); DO_APP_FUNC(0x01421DC0, KeyValuePair_2_UnityEngine_Vector3Int_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__97_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__97 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01550, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__97_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__98__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__98__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__98 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__98_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__98 * __this, MethodInfo * method)); @@ -138399,6 +152715,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__98_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__98 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__98_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__98 * __this, MethodInfo * method)); DO_APP_FUNC(0x01421E20, KeyValuePair_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__98_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__98 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01548, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__98_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__99__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__99__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__99 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__99_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__99 * __this, MethodInfo * method)); @@ -138406,6 +152723,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__99_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__99 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__99_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__99 * __this, MethodInfo * method)); DO_APP_FUNC(0x01421E80, KeyValuePair_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__99_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__99 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01540, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__99_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__100__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__100__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__100 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__100_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__100 * __this, MethodInfo * method)); @@ -138413,6 +152731,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__100_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__100 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141D1A0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__100_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__100 * __this, MethodInfo * method)); DO_APP_FUNC(0x01421EE0, KeyValuePair_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__100_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__100 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01538, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__100_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__101__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__101__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__101 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__101_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__101 * __this, MethodInfo * method)); @@ -138420,6 +152739,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__101_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__101 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__101_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__101 * __this, MethodInfo * method)); DO_APP_FUNC(0x01421F40, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__101_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__101 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01530, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__101_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__102__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__102__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__102 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__102_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__102 * __this, MethodInfo * method)); @@ -138427,6 +152747,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__102_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__102 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__102_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__102 * __this, MethodInfo * method)); DO_APP_FUNC(0x01421FA0, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__102_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__102 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01528, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__102_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__103__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__103__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__103 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__103_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__103 * __this, MethodInfo * method)); @@ -138434,6 +152755,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__103_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__103 * __this, MethodInfo * method)); DO_APP_FUNC(0x01422060, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__103_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__103 * __this, MethodInfo * method)); DO_APP_FUNC(0x01422000, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__103_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__103 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01520, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__103_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__104__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__104__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__104 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__104_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__104 * __this, MethodInfo * method)); @@ -138441,6 +152763,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__104_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__104 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141CB70, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__104_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__104 * __this, MethodInfo * method)); DO_APP_FUNC(0x014220F0, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__104_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__104 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01498, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__104_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__105__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__105__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__105 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__105_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__105 * __this, MethodInfo * method)); @@ -138448,6 +152771,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__105_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__105 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__105_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__105 * __this, MethodInfo * method)); DO_APP_FUNC(0x01422150, KeyValuePair_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__105_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__105 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01490, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__105_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__106__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__106__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__106 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__106_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__106 * __this, MethodInfo * method)); @@ -138455,6 +152779,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__106_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__106 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__106_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__106 * __this, MethodInfo * method)); DO_APP_FUNC(0x014221B0, KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__106_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__106 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01488, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__106_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__107__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__107__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__107 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__107_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__107 * __this, MethodInfo * method)); @@ -138462,6 +152787,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__107_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__107 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__107_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__107 * __this, MethodInfo * method)); DO_APP_FUNC(0x01422210, KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__107_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__107 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01480, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__107_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__108__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__108__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__108 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__108_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__108 * __this, MethodInfo * method)); @@ -138469,6 +152795,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__108_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__108 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__108_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__108 * __this, MethodInfo * method)); DO_APP_FUNC(0x01422270, KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__108_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__108 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01478, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__108_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__109__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__109__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__109 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__109_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__109 * __this, MethodInfo * method)); @@ -138476,6 +152803,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__109_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__109 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__109_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__109 * __this, MethodInfo * method)); DO_APP_FUNC(0x014222D0, KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__109_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__109 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01470, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__109_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__110__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__110__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__110 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__110_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__110 * __this, MethodInfo * method)); @@ -138483,6 +152811,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__110_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__110 * __this, MethodInfo * method)); DO_APP_FUNC(0x01422390, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__110_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__110 * __this, MethodInfo * method)); DO_APP_FUNC(0x01422330, KeyValuePair_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__110_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__110 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01468, Array_EmptyInternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__110_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Threading_ThreadLocal_1_LinkedSlotVolatile___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Threading_ThreadLocal_1_LinkedSlotVolatile___ctor, (Array_EmptyInternalEnumerator_1_System_Threading_ThreadLocal_1_LinkedSlotVolatile_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Threading_ThreadLocal_1_LinkedSlotVolatile__Dispose, (Array_EmptyInternalEnumerator_1_System_Threading_ThreadLocal_1_LinkedSlotVolatile_ * __this, MethodInfo * method)); @@ -138490,6 +152819,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Threading_T DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Threading_ThreadLocal_1_LinkedSlotVolatile__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Threading_ThreadLocal_1_LinkedSlotVolatile_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BC50, Object *, Array_EmptyInternalEnumerator_1_System_Threading_ThreadLocal_1_LinkedSlotVolatile__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Threading_ThreadLocal_1_LinkedSlotVolatile_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01422450, ThreadLocal_1_T_LinkedSlotVolatile_System_Object_, Array_EmptyInternalEnumerator_1_System_Threading_ThreadLocal_1_LinkedSlotVolatile__get_Current, (Array_EmptyInternalEnumerator_1_System_Threading_ThreadLocal_1_LinkedSlotVolatile_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01460, Array_EmptyInternalEnumerator_1_System_Threading_ThreadLocal_1_LinkedSlotVolatile__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Unity_Collections_NativeArray_1___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Unity_Collections_NativeArray_1___ctor, (Array_EmptyInternalEnumerator_1_Unity_Collections_NativeArray_1_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Unity_Collections_NativeArray_1__Dispose, (Array_EmptyInternalEnumerator_1_Unity_Collections_NativeArray_1_ * __this, MethodInfo * method)); @@ -138497,6 +152827,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Unity_Collections_ DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Unity_Collections_NativeArray_1__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Unity_Collections_NativeArray_1_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_Unity_Collections_NativeArray_1__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Unity_Collections_NativeArray_1_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014224B0, NativeArray_1_System_UInt16_, Array_EmptyInternalEnumerator_1_Unity_Collections_NativeArray_1__get_Current, (Array_EmptyInternalEnumerator_1_Unity_Collections_NativeArray_1_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D014D8, Array_EmptyInternalEnumerator_1_Unity_Collections_NativeArray_1__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Unity_Collections_NativeArray_1__1__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Unity_Collections_NativeArray_1__1__ctor, (Array_EmptyInternalEnumerator_1_Unity_Collections_NativeArray_1__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Unity_Collections_NativeArray_1__1_Dispose, (Array_EmptyInternalEnumerator_1_Unity_Collections_NativeArray_1__1 * __this, MethodInfo * method)); @@ -138504,6 +152835,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Unity_Collections_ DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Unity_Collections_NativeArray_1__1_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Unity_Collections_NativeArray_1__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_Unity_Collections_NativeArray_1__1_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Unity_Collections_NativeArray_1__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x01422510, NativeArray_1_UnityEngine_UIElements_Vertex_, Array_EmptyInternalEnumerator_1_Unity_Collections_NativeArray_1__1_get_Current, (Array_EmptyInternalEnumerator_1_Unity_Collections_NativeArray_1__1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D014D0, Array_EmptyInternalEnumerator_1_Unity_Collections_NativeArray_1__1_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node___ctor, (Array_EmptyInternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__Dispose, (Array_EmptyInternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node_ * __this, MethodInfo * method)); @@ -138511,6 +152843,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_ExitGames_Client_P DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01422570, NonAllocDictionary_2_K_V_Node_System_Byte_System_Object_, Array_EmptyInternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__get_Current, (Array_EmptyInternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D014C8, Array_EmptyInternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__1__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__1__ctor, (Array_EmptyInternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__1_Dispose, (Array_EmptyInternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__1 * __this, MethodInfo * method)); @@ -138518,6 +152851,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_ExitGames_Client_P DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__1_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__1_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x014225D0, NonAllocDictionary_2_K_V_Node_System_Int32_System_Object_, Array_EmptyInternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__1_get_Current, (Array_EmptyInternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D014C0, Array_EmptyInternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__1_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__2__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__2__ctor, (Array_EmptyInternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__2 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__2_Dispose, (Array_EmptyInternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__2 * __this, MethodInfo * method)); @@ -138525,6 +152859,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_ExitGames_Client_P DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__2_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__2 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__2_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__2 * __this, MethodInfo * method)); DO_APP_FUNC(0x01422630, NonAllocDictionary_2_K_V_Node_System_Object_System_Object_, Array_EmptyInternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__2_get_Current, (Array_EmptyInternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__2 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D014B8, Array_EmptyInternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__2_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_1_Record___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_1_Record___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_1_Record_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_1_Record__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_1_Record_ * __this, MethodInfo * method)); @@ -138532,6 +152867,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_InputS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_1_Record__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_1_Record_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_1_Record__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_1_Record_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01422690, InputStateHistory_1_TValue_Record_TouchState_, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_1_Record__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_1_Record_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D014B0, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_1_Record__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo_ * __this, MethodInfo * method)); @@ -138539,6 +152875,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Experi DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014226F0, RenderGraphResourcePool_1_Type_ResourceLogInfo_System_Object_, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D014A8, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_Collections_STuple_2___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_Collections_STuple_2___ctor, (Array_EmptyInternalEnumerator_1_Photon_Bolt_Collections_STuple_2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_Collections_STuple_2__Dispose, (Array_EmptyInternalEnumerator_1_Photon_Bolt_Collections_STuple_2_ * __this, MethodInfo * method)); @@ -138546,6 +152883,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Photon_Bolt_Collec DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_Collections_STuple_2__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Photon_Bolt_Collections_STuple_2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_Photon_Bolt_Collections_STuple_2__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Photon_Bolt_Collections_STuple_2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01422750, STuple_2_System_Object_System_Object_, Array_EmptyInternalEnumerator_1_Photon_Bolt_Collections_STuple_2__get_Current, (Array_EmptyInternalEnumerator_1_Photon_Bolt_Collections_STuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D014A0, Array_EmptyInternalEnumerator_1_Photon_Bolt_Collections_STuple_2__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot___ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot_ * __this, MethodInfo * method)); @@ -138553,6 +152891,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014227B0, HashSet_1_T_Slot_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01418, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__1__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__1__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__1_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__1 * __this, MethodInfo * method)); @@ -138560,6 +152899,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__1_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141FA10, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__1_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x01422810, HashSet_1_T_Slot_System_Int32_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__1_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01410, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__1_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Linq_Set_1_Slot___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Linq_Set_1_Slot___ctor, (Array_EmptyInternalEnumerator_1_System_Linq_Set_1_Slot_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Linq_Set_1_Slot__Dispose, (Array_EmptyInternalEnumerator_1_System_Linq_Set_1_Slot_ * __this, MethodInfo * method)); @@ -138567,6 +152907,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Linq_Set_1_ DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Linq_Set_1_Slot__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Linq_Set_1_Slot_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141FA10, Object *, Array_EmptyInternalEnumerator_1_System_Linq_Set_1_Slot__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Linq_Set_1_Slot_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01422870, Set_1_TElement_Slot_System_Int32_, Array_EmptyInternalEnumerator_1_System_Linq_Set_1_Slot__get_Current, (Array_EmptyInternalEnumerator_1_System_Linq_Set_1_Slot_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01408, Array_EmptyInternalEnumerator_1_System_Linq_Set_1_Slot__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__2__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__2__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__2 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__2_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__2 * __this, MethodInfo * method)); @@ -138574,6 +152915,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__2_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__2 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141FA10, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__2_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__2 * __this, MethodInfo * method)); DO_APP_FUNC(0x014228D0, HashSet_1_T_Slot_System_Int32Enum_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__2_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__2 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01400, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__2_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__3__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__3__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__3 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__3_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__3 * __this, MethodInfo * method)); @@ -138581,6 +152923,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__3_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__3 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__3_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__3 * __this, MethodInfo * method)); DO_APP_FUNC(0x01422930, HashSet_1_T_Slot_UnityEngine_InputSystem_Utilities_InternedString_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__3_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__3 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D013F8, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__3_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__4__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__4__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__4 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__4_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__4 * __this, MethodInfo * method)); @@ -138588,6 +152931,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__4_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__4 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__4_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__4 * __this, MethodInfo * method)); DO_APP_FUNC(0x01422990, HashSet_1_T_Slot_Photon_Bolt_NetworkId_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__4_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__4 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D013F0, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__4_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__5__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__5__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__5 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__5_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__5 * __this, MethodInfo * method)); @@ -138595,6 +152939,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__5_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__5 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__5_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__5 * __this, MethodInfo * method)); DO_APP_FUNC(0x014229F0, HashSet_1_T_Slot_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__5_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__5 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D013E8, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__5_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Linq_Set_1_Slot__1__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Linq_Set_1_Slot__1__ctor, (Array_EmptyInternalEnumerator_1_System_Linq_Set_1_Slot__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Linq_Set_1_Slot__1_Dispose, (Array_EmptyInternalEnumerator_1_System_Linq_Set_1_Slot__1 * __this, MethodInfo * method)); @@ -138602,6 +152947,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Linq_Set_1_ DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Linq_Set_1_Slot__1_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Linq_Set_1_Slot__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Linq_Set_1_Slot__1_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Linq_Set_1_Slot__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x01422A50, Set_1_TElement_Slot_System_Object_, Array_EmptyInternalEnumerator_1_System_Linq_Set_1_Slot__1_get_Current, (Array_EmptyInternalEnumerator_1_System_Linq_Set_1_Slot__1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D013E0, Array_EmptyInternalEnumerator_1_System_Linq_Set_1_Slot__1_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Concurrent_ConcurrentQueue_1_Segment_Slot___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Concurrent_ConcurrentQueue_1_Segment_Slot___ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Concurrent_ConcurrentQueue_1_Segment_Slot_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Concurrent_ConcurrentQueue_1_Segment_Slot__Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Concurrent_ConcurrentQueue_1_Segment_Slot_ * __this, MethodInfo * method)); @@ -138609,6 +152955,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Concurrent_ConcurrentQueue_1_Segment_Slot__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Concurrent_ConcurrentQueue_1_Segment_Slot_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Concurrent_ConcurrentQueue_1_Segment_Slot__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Concurrent_ConcurrentQueue_1_Segment_Slot_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01422AB0, ConcurrentQueue_1_T_Segment_T_Slot_System_Object_, Array_EmptyInternalEnumerator_1_System_Collections_Concurrent_ConcurrentQueue_1_Segment_Slot__get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Concurrent_ConcurrentQueue_1_Segment_Slot_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01458, Array_EmptyInternalEnumerator_1_System_Collections_Concurrent_ConcurrentQueue_1_Segment_Slot__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__6__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__6__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__6 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__6_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__6 * __this, MethodInfo * method)); @@ -138616,6 +152963,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__6_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__6 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141FA10, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__6_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__6 * __this, MethodInfo * method)); DO_APP_FUNC(0x01422B10, HashSet_1_T_Slot_System_UInt32_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__6_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__6 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01450, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__6_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__7__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__7__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__7 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__7_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__7 * __this, MethodInfo * method)); @@ -138623,6 +152971,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__7_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__7 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__7_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__7 * __this, MethodInfo * method)); DO_APP_FUNC(0x01422B70, HashSet_1_T_Slot_System_UInt64_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__7_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__7 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01448, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__7_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__8__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__8__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__8 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__8_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__8 * __this, MethodInfo * method)); @@ -138630,6 +152979,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__8_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__8 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C970, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__8_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__8 * __this, MethodInfo * method)); DO_APP_FUNC(0x01422BD0, HashSet_1_T_Slot_UdpKit_UdpEndPoint_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__8_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__8 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01440, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__8_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__9__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__9__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__9 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__9_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__9 * __this, MethodInfo * method)); @@ -138637,6 +152987,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__9_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__9 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141FA10, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__9_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__9 * __this, MethodInfo * method)); DO_APP_FUNC(0x01422C30, HashSet_1_T_Slot_UdpKit_UdpIPv4Address_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__9_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__9 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01438, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__9_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__10__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__10__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__10 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__10_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__10 * __this, MethodInfo * method)); @@ -138644,6 +152995,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__10_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__10 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C7D0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__10_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__10 * __this, MethodInfo * method)); DO_APP_FUNC(0x01422C90, HashSet_1_T_Slot_UnityEngine_Vector3_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__10_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__10 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01430, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__10_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__11__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__11__ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__11 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__11_Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__11 * __this, MethodInfo * method)); @@ -138651,6 +153003,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__11_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__11 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C7D0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__11_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__11 * __this, MethodInfo * method)); DO_APP_FUNC(0x01422CF0, HashSet_1_T_Slot_UnityEngine_Vector3Int_, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__11_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__11 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01428, Array_EmptyInternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__11_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData_ * __this, MethodInfo * method)); @@ -138658,6 +153011,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01422390, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01422D50, StylePropertyAnimationSystem_Values_1_T_StyleData_Background_, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01420, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__1__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__1__ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__1_Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__1 * __this, MethodInfo * method)); @@ -138665,6 +153019,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__1_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141CB70, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__1_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x01422DB0, StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color_, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__1_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01398, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__1_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__2__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__2__ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__2 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__2_Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__2 * __this, MethodInfo * method)); @@ -138672,6 +153027,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__2_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__2 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141CB70, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__2_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__2 * __this, MethodInfo * method)); DO_APP_FUNC(0x01422E10, StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition_, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__2_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__2 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01390, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__2_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__3__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__3__ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__3 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__3_Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__3 * __this, MethodInfo * method)); @@ -138679,6 +153035,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__3_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__3 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__3_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__3 * __this, MethodInfo * method)); DO_APP_FUNC(0x01422E70, StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32_, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__3_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__3 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01388, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__3_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__4__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__4__ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__4 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__4_Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__4 * __this, MethodInfo * method)); @@ -138686,6 +153043,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__4_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__4 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__4_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__4 * __this, MethodInfo * method)); DO_APP_FUNC(0x01422ED0, StylePropertyAnimationSystem_Values_1_T_StyleData_Length_, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__4_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__4 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01380, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__4_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__5__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__5__ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__5 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__5_Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__5 * __this, MethodInfo * method)); @@ -138693,6 +153051,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__5_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__5 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__5_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__5 * __this, MethodInfo * method)); DO_APP_FUNC(0x01422F30, StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object_, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__5_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__5 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01378, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__5_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__6__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__6__ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__6 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__6_Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__6 * __this, MethodInfo * method)); @@ -138700,6 +153059,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__6_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__6 * __this, MethodInfo * method)); DO_APP_FUNC(0x01420390, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__6_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__6 * __this, MethodInfo * method)); DO_APP_FUNC(0x01422F90, StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate_, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__6_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__6 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01370, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__6_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__7__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__7__ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__7 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__7_Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__7 * __this, MethodInfo * method)); @@ -138707,6 +153067,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__7_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__7 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141CB70, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__7_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__7 * __this, MethodInfo * method)); DO_APP_FUNC(0x01422FF0, StylePropertyAnimationSystem_Values_1_T_StyleData_Scale_, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__7_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__7 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01368, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__7_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__8__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__8__ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__8 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__8_Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__8 * __this, MethodInfo * method)); @@ -138714,6 +153075,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__8_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__8 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__8_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__8 * __this, MethodInfo * method)); DO_APP_FUNC(0x01423050, StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single_, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__8_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__8 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01360, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__8_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__9__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__9__ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__9 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__9_Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__9 * __this, MethodInfo * method)); @@ -138721,6 +153083,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__9_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__9 * __this, MethodInfo * method)); DO_APP_FUNC(0x01423110, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__9_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__9 * __this, MethodInfo * method)); DO_APP_FUNC(0x014230B0, StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow_, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__9_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__9 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D013D8, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__9_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__10__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__10__ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__10 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__10_Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__10 * __this, MethodInfo * method)); @@ -138728,6 +153091,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__10_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__10 * __this, MethodInfo * method)); DO_APP_FUNC(0x014211F0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__10_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__10 * __this, MethodInfo * method)); DO_APP_FUNC(0x014231D0, StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin_, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__10_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__10 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D013D0, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__10_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__11__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__11__ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__11 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__11_Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__11 * __this, MethodInfo * method)); @@ -138735,6 +153099,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__11_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__11 * __this, MethodInfo * method)); DO_APP_FUNC(0x01420390, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__11_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__11 * __this, MethodInfo * method)); DO_APP_FUNC(0x01423230, StylePropertyAnimationSystem_Values_1_T_StyleData_Translate_, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__11_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__11 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D013C8, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__11_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1___ctor, (Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__Dispose, (Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1_ * __this, MethodInfo * method)); @@ -138742,6 +153107,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProc DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01423290, TMP_TextProcessingStack_1_UnityEngine_Color32_, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__get_Current, (Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D013C0, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__1__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__1__ctor, (Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__1_Dispose, (Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__1 * __this, MethodInfo * method)); @@ -138749,6 +153115,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProc DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__1_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141D1A0, Object *, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__1_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x014232F0, TMP_TextProcessingStack_1_HighlightState_, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__1_get_Current, (Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D013B8, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__1_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__2__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__2__ctor, (Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__2 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__2_Dispose, (Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__2 * __this, MethodInfo * method)); @@ -138756,6 +153123,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProc DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__2_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__2 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__2_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__2 * __this, MethodInfo * method)); DO_APP_FUNC(0x01423350, TMP_TextProcessingStack_1_System_Int32_, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__2_get_Current, (Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__2 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D013B0, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__2_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__3__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__3__ctor, (Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__3 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__3_Dispose, (Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__3 * __this, MethodInfo * method)); @@ -138763,6 +153131,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProc DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__3_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__3 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__3_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__3 * __this, MethodInfo * method)); DO_APP_FUNC(0x014233B0, TMP_TextProcessingStack_1_System_Int32Enum_, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__3_get_Current, (Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__3 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D013A8, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__3_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__4__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__4__ctor, (Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__4 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__4_Dispose, (Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__4 * __this, MethodInfo * method)); @@ -138770,6 +153139,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProc DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__4_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__4 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141E2C0, Object *, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__4_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__4 * __this, MethodInfo * method)); DO_APP_FUNC(0x01423410, TMP_TextProcessingStack_1_MaterialReference_, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__4_get_Current, (Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__4 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D013A0, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__4_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__5__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__5__ctor, (Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__5 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__5_Dispose, (Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__5 * __this, MethodInfo * method)); @@ -138777,6 +153147,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProc DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__5_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__5 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C530, Object *, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__5_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__5 * __this, MethodInfo * method)); DO_APP_FUNC(0x01423470, TMP_TextProcessingStack_1_System_Object_, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__5_get_Current, (Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__5 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01318, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__5_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__6__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__6__ctor, (Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__6 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__6_Dispose, (Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__6 * __this, MethodInfo * method)); @@ -138784,6 +153155,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProc DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__6_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__6 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__6_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__6 * __this, MethodInfo * method)); DO_APP_FUNC(0x014234D0, TMP_TextProcessingStack_1_System_Single_, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__6_get_Current, (Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__6 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01310, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__6_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__7__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__7__ctor, (Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__7 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__7_Dispose, (Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__7 * __this, MethodInfo * method)); @@ -138791,6 +153163,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProc DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__7_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__7 * __this, MethodInfo * method)); DO_APP_FUNC(0x01423590, Object *, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__7_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__7 * __this, MethodInfo * method)); DO_APP_FUNC(0x01423530, TMP_TextProcessingStack_1_WordWrapState_, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__7_get_Current, (Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__7 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01308, Array_EmptyInternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__7_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData_ * __this, MethodInfo * method)); @@ -138798,6 +153171,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C530, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01423680, StylePropertyAnimationSystem_Values_1_T_TimingData_Background_, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01300, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__1__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__1__ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__1_Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__1 * __this, MethodInfo * method)); @@ -138805,6 +153179,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__1_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C530, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__1_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x014236E0, StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color_, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__1_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D012F8, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__1_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__2__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__2__ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__2 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__2_Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__2 * __this, MethodInfo * method)); @@ -138812,6 +153187,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__2_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__2 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C530, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__2_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__2 * __this, MethodInfo * method)); DO_APP_FUNC(0x01423740, StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition_, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__2_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__2 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D012F0, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__2_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__3__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__3__ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__3 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__3_Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__3 * __this, MethodInfo * method)); @@ -138819,6 +153195,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__3_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__3 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C530, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__3_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__3 * __this, MethodInfo * method)); DO_APP_FUNC(0x014237A0, StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32_, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__3_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__3 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D012E8, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__3_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__4__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__4__ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__4 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__4_Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__4 * __this, MethodInfo * method)); @@ -138826,6 +153203,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__4_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__4 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C530, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__4_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__4 * __this, MethodInfo * method)); DO_APP_FUNC(0x01423800, StylePropertyAnimationSystem_Values_1_T_TimingData_Length_, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__4_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__4 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D012E0, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__4_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__5__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__5__ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__5 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__5_Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__5 * __this, MethodInfo * method)); @@ -138833,6 +153211,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__5_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__5 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C530, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__5_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__5 * __this, MethodInfo * method)); DO_APP_FUNC(0x01423860, StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__5_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__5 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01358, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__5_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__6__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__6__ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__6 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__6_Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__6 * __this, MethodInfo * method)); @@ -138840,6 +153219,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__6_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__6 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C530, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__6_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__6 * __this, MethodInfo * method)); DO_APP_FUNC(0x014238C0, StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate_, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__6_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__6 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01350, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__6_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__7__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__7__ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__7 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__7_Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__7 * __this, MethodInfo * method)); @@ -138847,6 +153227,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__7_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__7 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C530, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__7_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__7 * __this, MethodInfo * method)); DO_APP_FUNC(0x01423920, StylePropertyAnimationSystem_Values_1_T_TimingData_Scale_, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__7_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__7 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01348, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__7_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__8__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__8__ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__8 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__8_Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__8 * __this, MethodInfo * method)); @@ -138854,6 +153235,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__8_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__8 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C530, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__8_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__8 * __this, MethodInfo * method)); DO_APP_FUNC(0x01423980, StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single_, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__8_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__8 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01340, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__8_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__9__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__9__ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__9 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__9_Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__9 * __this, MethodInfo * method)); @@ -138861,6 +153243,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__9_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__9 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C530, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__9_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__9 * __this, MethodInfo * method)); DO_APP_FUNC(0x014239E0, StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow_, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__9_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__9 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01338, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__9_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__10__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__10__ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__10 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__10_Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__10 * __this, MethodInfo * method)); @@ -138868,6 +153251,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__10_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__10 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C530, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__10_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__10 * __this, MethodInfo * method)); DO_APP_FUNC(0x01423A40, StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin_, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__10_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__10 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01330, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__10_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__11__cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__11__ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__11 * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__11_Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__11 * __this, MethodInfo * method)); @@ -138875,6 +153259,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__11_System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__11 * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C530, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__11_System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__11 * __this, MethodInfo * method)); DO_APP_FUNC(0x01423AA0, StylePropertyAnimationSystem_Values_1_T_TimingData_Translate_, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__11_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__11 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01328, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__11_get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_ValueTuple_1_Boolean___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_ValueTuple_1_Boolean___ctor, (Array_EmptyInternalEnumerator_1_ValueTuple_1_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_ValueTuple_1_Boolean__Dispose, (Array_EmptyInternalEnumerator_1_ValueTuple_1_Boolean_ * __this, MethodInfo * method)); @@ -138882,6 +153267,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_ValueTuple_1_Boole DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_ValueTuple_1_Boolean__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_ValueTuple_1_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BD20, Object *, Array_EmptyInternalEnumerator_1_ValueTuple_1_Boolean__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_ValueTuple_1_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01423B00, ValueTuple_1_Boolean_, Array_EmptyInternalEnumerator_1_ValueTuple_1_Boolean__get_Current, (Array_EmptyInternalEnumerator_1_ValueTuple_1_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01320, Array_EmptyInternalEnumerator_1_ValueTuple_1_Boolean__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_ValueTuple_2_Int32_Object___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_ValueTuple_2_Int32_Object___ctor, (Array_EmptyInternalEnumerator_1_ValueTuple_2_Int32_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_ValueTuple_2_Int32_Object__Dispose, (Array_EmptyInternalEnumerator_1_ValueTuple_2_Int32_Object_ * __this, MethodInfo * method)); @@ -138889,6 +153275,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_ValueTuple_2_Int32 DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_ValueTuple_2_Int32_Object__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_ValueTuple_2_Int32_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_ValueTuple_2_Int32_Object__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_ValueTuple_2_Int32_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01423B60, ValueTuple_2_Int32_Object_, Array_EmptyInternalEnumerator_1_ValueTuple_2_Int32_Object__get_Current, (Array_EmptyInternalEnumerator_1_ValueTuple_2_Int32_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01298, Array_EmptyInternalEnumerator_1_ValueTuple_2_Int32_Object__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_ValueTuple_2_Int32_UnityEngine_Vector2Int___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_ValueTuple_2_Int32_UnityEngine_Vector2Int___ctor, (Array_EmptyInternalEnumerator_1_ValueTuple_2_Int32_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_ValueTuple_2_Int32_UnityEngine_Vector2Int__Dispose, (Array_EmptyInternalEnumerator_1_ValueTuple_2_Int32_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); @@ -138896,6 +153283,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_ValueTuple_2_Int32 DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_ValueTuple_2_Int32_UnityEngine_Vector2Int__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_ValueTuple_2_Int32_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141FA10, Object *, Array_EmptyInternalEnumerator_1_ValueTuple_2_Int32_UnityEngine_Vector2Int__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_ValueTuple_2_Int32_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01423BC0, ValueTuple_2_Int32_UnityEngine_Vector2Int_, Array_EmptyInternalEnumerator_1_ValueTuple_2_Int32_UnityEngine_Vector2Int__get_Current, (Array_EmptyInternalEnumerator_1_ValueTuple_2_Int32_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01290, Array_EmptyInternalEnumerator_1_ValueTuple_2_Int32_UnityEngine_Vector2Int__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_ValueTuple_2_IntPtr_Object___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_ValueTuple_2_IntPtr_Object___ctor, (Array_EmptyInternalEnumerator_1_ValueTuple_2_IntPtr_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_ValueTuple_2_IntPtr_Object__Dispose, (Array_EmptyInternalEnumerator_1_ValueTuple_2_IntPtr_Object_ * __this, MethodInfo * method)); @@ -138903,6 +153291,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_ValueTuple_2_IntPt DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_ValueTuple_2_IntPtr_Object__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_ValueTuple_2_IntPtr_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_ValueTuple_2_IntPtr_Object__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_ValueTuple_2_IntPtr_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01423C20, ValueTuple_2_IntPtr_Object_, Array_EmptyInternalEnumerator_1_ValueTuple_2_IntPtr_Object__get_Current, (Array_EmptyInternalEnumerator_1_ValueTuple_2_IntPtr_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01288, Array_EmptyInternalEnumerator_1_ValueTuple_2_IntPtr_Object__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_ValueTuple_2_Object_ValueTuple_2_Object_Int32___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_ValueTuple_2_Object_ValueTuple_2_Object_Int32___ctor, (Array_EmptyInternalEnumerator_1_ValueTuple_2_Object_ValueTuple_2_Object_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_ValueTuple_2_Object_ValueTuple_2_Object_Int32__Dispose, (Array_EmptyInternalEnumerator_1_ValueTuple_2_Object_ValueTuple_2_Object_Int32_ * __this, MethodInfo * method)); @@ -138910,6 +153299,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_ValueTuple_2_Objec DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_ValueTuple_2_Object_ValueTuple_2_Object_Int32__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_ValueTuple_2_Object_ValueTuple_2_Object_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_ValueTuple_2_Object_ValueTuple_2_Object_Int32__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_ValueTuple_2_Object_ValueTuple_2_Object_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01423C80, ValueTuple_2_Object_ValueTuple_2_Object_Int32_, Array_EmptyInternalEnumerator_1_ValueTuple_2_Object_ValueTuple_2_Object_Int32__get_Current, (Array_EmptyInternalEnumerator_1_ValueTuple_2_Object_ValueTuple_2_Object_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01280, Array_EmptyInternalEnumerator_1_ValueTuple_2_Object_ValueTuple_2_Object_Int32__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_ValueTuple_2_Object_Int32___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_ValueTuple_2_Object_Int32___ctor, (Array_EmptyInternalEnumerator_1_ValueTuple_2_Object_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_ValueTuple_2_Object_Int32__Dispose, (Array_EmptyInternalEnumerator_1_ValueTuple_2_Object_Int32_ * __this, MethodInfo * method)); @@ -138917,6 +153307,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_ValueTuple_2_Objec DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_ValueTuple_2_Object_Int32__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_ValueTuple_2_Object_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_ValueTuple_2_Object_Int32__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_ValueTuple_2_Object_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01423CE0, ValueTuple_2_Object_Int32_, Array_EmptyInternalEnumerator_1_ValueTuple_2_Object_Int32__get_Current, (Array_EmptyInternalEnumerator_1_ValueTuple_2_Object_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01278, Array_EmptyInternalEnumerator_1_ValueTuple_2_Object_Int32__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_ValueTuple_2_Object_Object___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_ValueTuple_2_Object_Object___ctor, (Array_EmptyInternalEnumerator_1_ValueTuple_2_Object_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_ValueTuple_2_Object_Object__Dispose, (Array_EmptyInternalEnumerator_1_ValueTuple_2_Object_Object_ * __this, MethodInfo * method)); @@ -138924,6 +153315,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_ValueTuple_2_Objec DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_ValueTuple_2_Object_Object__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_ValueTuple_2_Object_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_ValueTuple_2_Object_Object__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_ValueTuple_2_Object_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01423D40, ValueTuple_2_Object_Object_, Array_EmptyInternalEnumerator_1_ValueTuple_2_Object_Object__get_Current, (Array_EmptyInternalEnumerator_1_ValueTuple_2_Object_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01270, Array_EmptyInternalEnumerator_1_ValueTuple_2_Object_Object__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Object___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Object___ctor, (Array_EmptyInternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Object__Dispose, (Array_EmptyInternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Object_ * __this, MethodInfo * method)); @@ -138931,6 +153323,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_ValueTuple_2_Unity DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Object__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Object__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01423DA0, ValueTuple_2_UnityEngine_Vector3Int_Object_, Array_EmptyInternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Object__get_Current, (Array_EmptyInternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01268, Array_EmptyInternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Object__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel___ctor, (Array_EmptyInternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel__Dispose, (Array_EmptyInternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_ * __this, MethodInfo * method)); @@ -138938,6 +153331,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_ValueTuple_2_Unity DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141DC50, Object *, Array_EmptyInternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01423E00, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_, Array_EmptyInternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel__get_Current, (Array_EmptyInternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01260, Array_EmptyInternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership___ctor, (Array_EmptyInternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership__Dispose, (Array_EmptyInternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_ * __this, MethodInfo * method)); @@ -138945,6 +153339,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_ValueTuple_2_Unity DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C530, Object *, Array_EmptyInternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01423E60, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_, Array_EmptyInternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership__get_Current, (Array_EmptyInternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D012D8, Array_EmptyInternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int___ctor, (Array_EmptyInternalEnumerator_1_ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int__Dispose, (Array_EmptyInternalEnumerator_1_ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); @@ -138952,6 +153347,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_ValueTuple_2_Unity DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01423EC0, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int_, Array_EmptyInternalEnumerator_1_ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int__get_Current, (Array_EmptyInternalEnumerator_1_ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D012D0, Array_EmptyInternalEnumerator_1_ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_ValueTuple_3_Object_Object_Object___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_ValueTuple_3_Object_Object_Object___ctor, (Array_EmptyInternalEnumerator_1_ValueTuple_3_Object_Object_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_ValueTuple_3_Object_Object_Object__Dispose, (Array_EmptyInternalEnumerator_1_ValueTuple_3_Object_Object_Object_ * __this, MethodInfo * method)); @@ -138959,6 +153355,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_ValueTuple_3_Objec DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_ValueTuple_3_Object_Object_Object__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_ValueTuple_3_Object_Object_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_ValueTuple_3_Object_Object_Object__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_ValueTuple_3_Object_Object_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01423F20, ValueTuple_3_Object_Object_Object_, Array_EmptyInternalEnumerator_1_ValueTuple_3_Object_Object_Object__get_Current, (Array_EmptyInternalEnumerator_1_ValueTuple_3_Object_Object_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D012C8, Array_EmptyInternalEnumerator_1_ValueTuple_3_Object_Object_Object__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_AnimatorClipInfo___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_AnimatorClipInfo___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_AnimatorClipInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_AnimatorClipInfo__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_AnimatorClipInfo_ * __this, MethodInfo * method)); @@ -138966,6 +153363,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Animat DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_AnimatorClipInfo__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_AnimatorClipInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BC50, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_AnimatorClipInfo__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_AnimatorClipInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01423F80, AnimatorClipInfo, Array_EmptyInternalEnumerator_1_UnityEngine_AnimatorClipInfo__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_AnimatorClipInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D012C0, Array_EmptyInternalEnumerator_1_UnityEngine_AnimatorClipInfo__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Pathfinding_AstarWorkItem___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_AstarWorkItem___ctor, (Array_EmptyInternalEnumerator_1_Pathfinding_AstarWorkItem_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_AstarWorkItem__Dispose, (Array_EmptyInternalEnumerator_1_Pathfinding_AstarWorkItem_ * __this, MethodInfo * method)); @@ -138973,6 +153371,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Pathfinding_AstarW DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_AstarWorkItem__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Pathfinding_AstarWorkItem_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_Pathfinding_AstarWorkItem__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Pathfinding_AstarWorkItem_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01423FE0, AstarWorkItem, Array_EmptyInternalEnumerator_1_Pathfinding_AstarWorkItem__get_Current, (Array_EmptyInternalEnumerator_1_Pathfinding_AstarWorkItem_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D012B8, Array_EmptyInternalEnumerator_1_Pathfinding_AstarWorkItem__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); @@ -138980,6 +153379,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Resour DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01424040, AsyncOperationHandle, Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D012B0, Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Rewired_AxisCalibrationData___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_AxisCalibrationData___ctor, (Array_EmptyInternalEnumerator_1_Rewired_AxisCalibrationData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_AxisCalibrationData__Dispose, (Array_EmptyInternalEnumerator_1_Rewired_AxisCalibrationData_ * __this, MethodInfo * method)); @@ -138987,6 +153387,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Rewired_AxisCalibr DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_AxisCalibrationData__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Rewired_AxisCalibrationData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141DC50, Object *, Array_EmptyInternalEnumerator_1_Rewired_AxisCalibrationData__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Rewired_AxisCalibrationData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014240A0, AxisCalibrationData, Array_EmptyInternalEnumerator_1_Rewired_AxisCalibrationData__get_Current, (Array_EmptyInternalEnumerator_1_Rewired_AxisCalibrationData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D012A8, Array_EmptyInternalEnumerator_1_Rewired_AxisCalibrationData__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Background___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Background___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Background_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Background__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Background_ * __this, MethodInfo * method)); @@ -138994,6 +153395,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Background__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Background_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Background__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Background_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01424100, Background, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Background__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Background_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D012A0, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Background__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_BatchVisibility___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_BatchVisibility___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_BatchVisibility_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_BatchVisibility__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_BatchVisibility_ * __this, MethodInfo * method)); @@ -139001,6 +153403,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Render DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_BatchVisibility__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_BatchVisibility_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141FA10, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_BatchVisibility__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_BatchVisibility_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01424160, BatchVisibility, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_BatchVisibility__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_BatchVisibility_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01218, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_BatchVisibility__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Dissonance_Integrations_PhotonBolt_BoltPeer___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Dissonance_Integrations_PhotonBolt_BoltPeer___ctor, (Array_EmptyInternalEnumerator_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Dissonance_Integrations_PhotonBolt_BoltPeer__Dispose, (Array_EmptyInternalEnumerator_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); @@ -139008,6 +153411,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Dissonance_Integra DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Dissonance_Integrations_PhotonBolt_BoltPeer__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BC50, Object *, Array_EmptyInternalEnumerator_1_Dissonance_Integrations_PhotonBolt_BoltPeer__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014241C0, BoltPeer, Array_EmptyInternalEnumerator_1_Dissonance_Integrations_PhotonBolt_BoltPeer__get_Current, (Array_EmptyInternalEnumerator_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01210, Array_EmptyInternalEnumerator_1_Dissonance_Integrations_PhotonBolt_BoltPeer__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_LagCompensation_BoltPhysicsHit___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_LagCompensation_BoltPhysicsHit___ctor, (Array_EmptyInternalEnumerator_1_Photon_Bolt_LagCompensation_BoltPhysicsHit_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_LagCompensation_BoltPhysicsHit__Dispose, (Array_EmptyInternalEnumerator_1_Photon_Bolt_LagCompensation_BoltPhysicsHit_ * __this, MethodInfo * method)); @@ -139015,6 +153419,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Photon_Bolt_LagCom DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_LagCompensation_BoltPhysicsHit__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Photon_Bolt_LagCompensation_BoltPhysicsHit_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_Photon_Bolt_LagCompensation_BoltPhysicsHit__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Photon_Bolt_LagCompensation_BoltPhysicsHit_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01424220, BoltPhysicsHit, Array_EmptyInternalEnumerator_1_Photon_Bolt_LagCompensation_BoltPhysicsHit__get_Current, (Array_EmptyInternalEnumerator_1_Photon_Bolt_LagCompensation_BoltPhysicsHit_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01208, Array_EmptyInternalEnumerator_1_Photon_Bolt_LagCompensation_BoltPhysicsHit__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_BoneWeight___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_BoneWeight___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_BoneWeight_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_BoneWeight__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_BoneWeight_ * __this, MethodInfo * method)); @@ -139022,6 +153427,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_BoneWe DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_BoneWeight__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_BoneWeight_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_BoneWeight__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_BoneWeight_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01424280, BoneWeight, Array_EmptyInternalEnumerator_1_UnityEngine_BoneWeight__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_BoneWeight_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01200, Array_EmptyInternalEnumerator_1_UnityEngine_BoneWeight__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_BoneWeight1___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_BoneWeight1___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_BoneWeight1_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_BoneWeight1__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_BoneWeight1_ * __this, MethodInfo * method)); @@ -139029,6 +153435,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_BoneWe DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_BoneWeight1__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_BoneWeight1_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BC50, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_BoneWeight1__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_BoneWeight1_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014242E0, BoneWeight1, Array_EmptyInternalEnumerator_1_UnityEngine_BoneWeight1__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_BoneWeight1_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D011F8, Array_EmptyInternalEnumerator_1_UnityEngine_BoneWeight1__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Boolean___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Boolean___ctor, (Array_EmptyInternalEnumerator_1_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Boolean__Dispose, (Array_EmptyInternalEnumerator_1_Boolean_ * __this, MethodInfo * method)); @@ -139036,6 +153443,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Boolean__MoveNext, DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Boolean__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BD20, Object *, Array_EmptyInternalEnumerator_1_Boolean__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01424340, bool, Array_EmptyInternalEnumerator_1_Boolean__get_Current, (Array_EmptyInternalEnumerator_1_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D011F0, Array_EmptyInternalEnumerator_1_Boolean__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARSubsystems_BoundedPlane___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARSubsystems_BoundedPlane___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARSubsystems_BoundedPlane_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARSubsystems_BoundedPlane__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARSubsystems_BoundedPlane_ * __this, MethodInfo * method)); @@ -139043,6 +153451,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARSubsystems_BoundedPlane__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARSubsystems_BoundedPlane_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141D350, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARSubsystems_BoundedPlane__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARSubsystems_BoundedPlane_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014243A0, BoundedPlane, Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARSubsystems_BoundedPlane__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARSubsystems_BoundedPlane_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D011E8, Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARSubsystems_BoundedPlane__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_BoundingSphere___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_BoundingSphere___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_BoundingSphere_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_BoundingSphere__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_BoundingSphere_ * __this, MethodInfo * method)); @@ -139050,6 +153459,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Boundi DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_BoundingSphere__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_BoundingSphere_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_BoundingSphere__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_BoundingSphere_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01424400, BoundingSphere, Array_EmptyInternalEnumerator_1_UnityEngine_BoundingSphere__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_BoundingSphere_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D011E0, Array_EmptyInternalEnumerator_1_UnityEngine_BoundingSphere__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Bounds___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Bounds___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Bounds_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Bounds__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Bounds_ * __this, MethodInfo * method)); @@ -139057,6 +153467,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Bounds DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Bounds__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Bounds_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Bounds__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Bounds_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01424460, Bounds, Array_EmptyInternalEnumerator_1_UnityEngine_Bounds__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Bounds_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01258, Array_EmptyInternalEnumerator_1_UnityEngine_Bounds__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Byte___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Byte___ctor, (Array_EmptyInternalEnumerator_1_Byte_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Byte__Dispose, (Array_EmptyInternalEnumerator_1_Byte_ * __this, MethodInfo * method)); @@ -139064,6 +153475,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Byte__MoveNext, (A DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Byte__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Byte_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BD20, Object *, Array_EmptyInternalEnumerator_1_Byte__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Byte_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014244C0, uint8_t, Array_EmptyInternalEnumerator_1_Byte__get_Current, (Array_EmptyInternalEnumerator_1_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01250, Array_EmptyInternalEnumerator_1_Byte__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_ByteEnum___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_ByteEnum___ctor, (Array_EmptyInternalEnumerator_1_ByteEnum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_ByteEnum__Dispose, (Array_EmptyInternalEnumerator_1_ByteEnum_ * __this, MethodInfo * method)); @@ -139071,6 +153483,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_ByteEnum__MoveNext DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_ByteEnum__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_ByteEnum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BD20, Object *, Array_EmptyInternalEnumerator_1_ByteEnum__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_ByteEnum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01424520, ByteEnum__Enum, Array_EmptyInternalEnumerator_1_ByteEnum__get_Current, (Array_EmptyInternalEnumerator_1_ByteEnum_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01248, Array_EmptyInternalEnumerator_1_ByteEnum__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Threading_CancellationToken___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Threading_CancellationToken___ctor, (Array_EmptyInternalEnumerator_1_System_Threading_CancellationToken_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Threading_CancellationToken__Dispose, (Array_EmptyInternalEnumerator_1_System_Threading_CancellationToken_ * __this, MethodInfo * method)); @@ -139078,6 +153491,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Threading_C DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Threading_CancellationToken__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Threading_CancellationToken_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BC50, Object *, Array_EmptyInternalEnumerator_1_System_Threading_CancellationToken__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Threading_CancellationToken_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01424580, CancellationToken, Array_EmptyInternalEnumerator_1_System_Threading_CancellationToken__get_Current, (Array_EmptyInternalEnumerator_1_System_Threading_CancellationToken_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01240, Array_EmptyInternalEnumerator_1_System_Threading_CancellationToken__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Threading_CancellationTokenRegistration___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Threading_CancellationTokenRegistration___ctor, (Array_EmptyInternalEnumerator_1_System_Threading_CancellationTokenRegistration_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Threading_CancellationTokenRegistration__Dispose, (Array_EmptyInternalEnumerator_1_System_Threading_CancellationTokenRegistration_ * __this, MethodInfo * method)); @@ -139085,6 +153499,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Threading_C DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Threading_CancellationTokenRegistration__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Threading_CancellationTokenRegistration_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Threading_CancellationTokenRegistration__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Threading_CancellationTokenRegistration_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014245E0, CancellationTokenRegistration, Array_EmptyInternalEnumerator_1_System_Threading_CancellationTokenRegistration__get_Current, (Array_EmptyInternalEnumerator_1_System_Threading_CancellationTokenRegistration_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01238, Array_EmptyInternalEnumerator_1_System_Threading_CancellationTokenRegistration__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Char___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Char___ctor, (Array_EmptyInternalEnumerator_1_Char_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Char__Dispose, (Array_EmptyInternalEnumerator_1_Char_ * __this, MethodInfo * method)); @@ -139092,6 +153507,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Char__MoveNext, (A DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Char__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Char_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014246A0, Object *, Array_EmptyInternalEnumerator_1_Char__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Char_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01424640, uint16_t, Array_EmptyInternalEnumerator_1_Char__get_Current, (Array_EmptyInternalEnumerator_1_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01230, Array_EmptyInternalEnumerator_1_Char__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Dissonance_Networking_ClientInfo___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Dissonance_Networking_ClientInfo___ctor, (Array_EmptyInternalEnumerator_1_Dissonance_Networking_ClientInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Dissonance_Networking_ClientInfo__Dispose, (Array_EmptyInternalEnumerator_1_Dissonance_Networking_ClientInfo_ * __this, MethodInfo * method)); @@ -139099,6 +153515,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Dissonance_Network DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Dissonance_Networking_ClientInfo__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Dissonance_Networking_ClientInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_Dissonance_Networking_ClientInfo__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Dissonance_Networking_ClientInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01424710, ClientInfo, Array_EmptyInternalEnumerator_1_Dissonance_Networking_ClientInfo__get_Current, (Array_EmptyInternalEnumerator_1_Dissonance_Networking_ClientInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01228, Array_EmptyInternalEnumerator_1_Dissonance_Networking_ClientInfo__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_ClothSkinningCoefficient___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_ClothSkinningCoefficient___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_ClothSkinningCoefficient_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_ClothSkinningCoefficient__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_ClothSkinningCoefficient_ * __this, MethodInfo * method)); @@ -139106,6 +153523,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_ClothS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_ClothSkinningCoefficient__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_ClothSkinningCoefficient_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014247D0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_ClothSkinningCoefficient__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_ClothSkinningCoefficient_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01424770, ClothSkinningCoefficient, Array_EmptyInternalEnumerator_1_UnityEngine_ClothSkinningCoefficient__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_ClothSkinningCoefficient_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01220, Array_EmptyInternalEnumerator_1_UnityEngine_ClothSkinningCoefficient__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_ClothSphereColliderPair___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_ClothSphereColliderPair___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_ClothSphereColliderPair_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_ClothSphereColliderPair__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_ClothSphereColliderPair_ * __this, MethodInfo * method)); @@ -139113,6 +153531,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_ClothS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_ClothSphereColliderPair__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_ClothSphereColliderPair_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_ClothSphereColliderPair__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_ClothSphereColliderPair_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01424830, ClothSphereColliderPair, Array_EmptyInternalEnumerator_1_UnityEngine_ClothSphereColliderPair__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_ClothSphereColliderPair_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01198, Array_EmptyInternalEnumerator_1_UnityEngine_ClothSphereColliderPair__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Color___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Color___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Color_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Color__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Color_ * __this, MethodInfo * method)); @@ -139120,6 +153539,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Color_ DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Color__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Color_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Color__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Color_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01424890, Color, Array_EmptyInternalEnumerator_1_UnityEngine_Color__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01190, Array_EmptyInternalEnumerator_1_UnityEngine_Color__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Color32___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Color32___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Color32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Color32__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Color32_ * __this, MethodInfo * method)); @@ -139127,6 +153547,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Color3 DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Color32__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Color32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01424950, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Color32__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Color32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014248F0, Color32, Array_EmptyInternalEnumerator_1_UnityEngine_Color32__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01188, Array_EmptyInternalEnumerator_1_UnityEngine_Color32__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UI_ColorBlock___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UI_ColorBlock___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UI_ColorBlock_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UI_ColorBlock__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UI_ColorBlock_ * __this, MethodInfo * method)); @@ -139134,6 +153555,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UI_Col DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UI_ColorBlock__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UI_ColorBlock_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141E2C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UI_ColorBlock__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UI_ColorBlock_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014249C0, ColorBlock, Array_EmptyInternalEnumerator_1_UnityEngine_UI_ColorBlock__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UI_ColorBlock_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01180, Array_EmptyInternalEnumerator_1_UnityEngine_UI_ColorBlock__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_CombineInstance___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_CombineInstance___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_CombineInstance_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_CombineInstance__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_CombineInstance_ * __this, MethodInfo * method)); @@ -139141,6 +153563,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Combin DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_CombineInstance__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_CombineInstance_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141D350, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_CombineInstance__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_CombineInstance_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01424A20, CombineInstance, Array_EmptyInternalEnumerator_1_UnityEngine_CombineInstance__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_CombineInstance_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01178, Array_EmptyInternalEnumerator_1_UnityEngine_CombineInstance__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Pathfinding_Voxels_CompactVoxelCell___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_Voxels_CompactVoxelCell___ctor, (Array_EmptyInternalEnumerator_1_Pathfinding_Voxels_CompactVoxelCell_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_Voxels_CompactVoxelCell__Dispose, (Array_EmptyInternalEnumerator_1_Pathfinding_Voxels_CompactVoxelCell_ * __this, MethodInfo * method)); @@ -139148,6 +153571,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Pathfinding_Voxels DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_Voxels_CompactVoxelCell__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Pathfinding_Voxels_CompactVoxelCell_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BC50, Object *, Array_EmptyInternalEnumerator_1_Pathfinding_Voxels_CompactVoxelCell__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Pathfinding_Voxels_CompactVoxelCell_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01424A80, CompactVoxelCell, Array_EmptyInternalEnumerator_1_Pathfinding_Voxels_CompactVoxelCell__get_Current, (Array_EmptyInternalEnumerator_1_Pathfinding_Voxels_CompactVoxelCell_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01170, Array_EmptyInternalEnumerator_1_Pathfinding_Voxels_CompactVoxelCell__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Pathfinding_Voxels_CompactVoxelSpan___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_Voxels_CompactVoxelSpan___ctor, (Array_EmptyInternalEnumerator_1_Pathfinding_Voxels_CompactVoxelSpan_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_Voxels_CompactVoxelSpan__Dispose, (Array_EmptyInternalEnumerator_1_Pathfinding_Voxels_CompactVoxelSpan_ * __this, MethodInfo * method)); @@ -139155,6 +153579,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Pathfinding_Voxels DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_Voxels_CompactVoxelSpan__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Pathfinding_Voxels_CompactVoxelSpan_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_Pathfinding_Voxels_CompactVoxelSpan__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Pathfinding_Voxels_CompactVoxelSpan_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01424AE0, CompactVoxelSpan, Array_EmptyInternalEnumerator_1_Pathfinding_Voxels_CompactVoxelSpan__get_Current, (Array_EmptyInternalEnumerator_1_Pathfinding_Voxels_CompactVoxelSpan_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01168, Array_EmptyInternalEnumerator_1_Pathfinding_Voxels_CompactVoxelSpan__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_ComputedStyle___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_ComputedStyle___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_ComputedStyle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_ComputedStyle__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_ComputedStyle_ * __this, MethodInfo * method)); @@ -139162,6 +153587,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_ComputedStyle__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_ComputedStyle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141E2C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_ComputedStyle__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_ComputedStyle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01424B40, ComputedStyle, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_ComputedStyle__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_ComputedStyle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01160, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_ComputedStyle__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_ComputedTransitionProperty___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_ComputedTransitionProperty___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_ComputedTransitionProperty_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_ComputedTransitionProperty__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_ComputedTransitionProperty_ * __this, MethodInfo * method)); @@ -139169,6 +153595,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_ComputedTransitionProperty__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_ComputedTransitionProperty_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_ComputedTransitionProperty__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_ComputedTransitionProperty_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01424BA0, ComputedTransitionProperty, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_ComputedTransitionProperty__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_ComputedTransitionProperty_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D011D8, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_ComputedTransitionProperty__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor_ * __this, MethodInfo * method)); @@ -139176,6 +153603,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01424C00, ConfigurationDescriptor, Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D011D0, Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Pathfinding_Connection___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_Connection___ctor, (Array_EmptyInternalEnumerator_1_Pathfinding_Connection_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_Connection__Dispose, (Array_EmptyInternalEnumerator_1_Pathfinding_Connection_ * __this, MethodInfo * method)); @@ -139183,6 +153611,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Pathfinding_Connec DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_Connection__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Pathfinding_Connection_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_Pathfinding_Connection__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Pathfinding_Connection_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01424C60, Connection, Array_EmptyInternalEnumerator_1_Pathfinding_Connection__get_Current, (Array_EmptyInternalEnumerator_1_Pathfinding_Connection_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D011C8, Array_EmptyInternalEnumerator_1_Pathfinding_Connection__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_ContactPoint___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_ContactPoint___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_ContactPoint_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_ContactPoint__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_ContactPoint_ * __this, MethodInfo * method)); @@ -139190,6 +153619,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Contac DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_ContactPoint__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_ContactPoint_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C970, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_ContactPoint__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_ContactPoint_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01424CC0, ContactPoint, Array_EmptyInternalEnumerator_1_UnityEngine_ContactPoint__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_ContactPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D011C0, Array_EmptyInternalEnumerator_1_UnityEngine_ContactPoint__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_ContactPoint2D___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_ContactPoint2D___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_ContactPoint2D_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_ContactPoint2D__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_ContactPoint2D_ * __this, MethodInfo * method)); @@ -139197,6 +153627,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Contac DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_ContactPoint2D__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_ContactPoint2D_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141DC50, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_ContactPoint2D__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_ContactPoint2D_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01424D20, ContactPoint2D, Array_EmptyInternalEnumerator_1_UnityEngine_ContactPoint2D__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_ContactPoint2D_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D011B8, Array_EmptyInternalEnumerator_1_UnityEngine_ContactPoint2D__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Rewired_ControllerPollingInfo___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_ControllerPollingInfo___ctor, (Array_EmptyInternalEnumerator_1_Rewired_ControllerPollingInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_ControllerPollingInfo__Dispose, (Array_EmptyInternalEnumerator_1_Rewired_ControllerPollingInfo_ * __this, MethodInfo * method)); @@ -139204,6 +153635,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Rewired_Controller DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_ControllerPollingInfo__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Rewired_ControllerPollingInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141DC50, Object *, Array_EmptyInternalEnumerator_1_Rewired_ControllerPollingInfo__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Rewired_ControllerPollingInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01424D80, ControllerPollingInfo, Array_EmptyInternalEnumerator_1_Rewired_ControllerPollingInfo__get_Current, (Array_EmptyInternalEnumerator_1_Rewired_ControllerPollingInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D011B0, Array_EmptyInternalEnumerator_1_Rewired_ControllerPollingInfo__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Rewired_ControllerTemplateElementTarget___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_ControllerTemplateElementTarget___ctor, (Array_EmptyInternalEnumerator_1_Rewired_ControllerTemplateElementTarget_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_ControllerTemplateElementTarget__Dispose, (Array_EmptyInternalEnumerator_1_Rewired_ControllerTemplateElementTarget_ * __this, MethodInfo * method)); @@ -139211,6 +153643,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Rewired_Controller DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_ControllerTemplateElementTarget__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Rewired_ControllerTemplateElementTarget_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_Rewired_ControllerTemplateElementTarget__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Rewired_ControllerTemplateElementTarget_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01424DE0, ControllerTemplateElementTarget, Array_EmptyInternalEnumerator_1_Rewired_ControllerTemplateElementTarget__get_Current, (Array_EmptyInternalEnumerator_1_Rewired_ControllerTemplateElementTarget_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D011A8, Array_EmptyInternalEnumerator_1_Rewired_ControllerTemplateElementTarget__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_SplineMesh_CurveSample___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_SplineMesh_CurveSample___ctor, (Array_EmptyInternalEnumerator_1_SplineMesh_CurveSample_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_SplineMesh_CurveSample__Dispose, (Array_EmptyInternalEnumerator_1_SplineMesh_CurveSample_ * __this, MethodInfo * method)); @@ -139218,6 +153651,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_SplineMesh_CurveSa DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_SplineMesh_CurveSample__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_SplineMesh_CurveSample_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141EAE0, Object *, Array_EmptyInternalEnumerator_1_SplineMesh_CurveSample__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_SplineMesh_CurveSample_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01424E40, CurveSample, Array_EmptyInternalEnumerator_1_SplineMesh_CurveSample__get_Current, (Array_EmptyInternalEnumerator_1_SplineMesh_CurveSample_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D011A0, Array_EmptyInternalEnumerator_1_SplineMesh_CurveSample__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Reflection_CustomAttributeNamedArgument___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Reflection_CustomAttributeNamedArgument___ctor, (Array_EmptyInternalEnumerator_1_System_Reflection_CustomAttributeNamedArgument_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Reflection_CustomAttributeNamedArgument__Dispose, (Array_EmptyInternalEnumerator_1_System_Reflection_CustomAttributeNamedArgument_ * __this, MethodInfo * method)); @@ -139225,6 +153659,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Reflection_ DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Reflection_CustomAttributeNamedArgument__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Reflection_CustomAttributeNamedArgument_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141D1A0, Object *, Array_EmptyInternalEnumerator_1_System_Reflection_CustomAttributeNamedArgument__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Reflection_CustomAttributeNamedArgument_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01424EA0, CustomAttributeNamedArgument, Array_EmptyInternalEnumerator_1_System_Reflection_CustomAttributeNamedArgument__get_Current, (Array_EmptyInternalEnumerator_1_System_Reflection_CustomAttributeNamedArgument_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01118, Array_EmptyInternalEnumerator_1_System_Reflection_CustomAttributeNamedArgument__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Reflection_CustomAttributeTypedArgument___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Reflection_CustomAttributeTypedArgument___ctor, (Array_EmptyInternalEnumerator_1_System_Reflection_CustomAttributeTypedArgument_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Reflection_CustomAttributeTypedArgument__Dispose, (Array_EmptyInternalEnumerator_1_System_Reflection_CustomAttributeTypedArgument_ * __this, MethodInfo * method)); @@ -139232,6 +153667,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Reflection_ DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Reflection_CustomAttributeTypedArgument__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Reflection_CustomAttributeTypedArgument_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Reflection_CustomAttributeTypedArgument__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Reflection_CustomAttributeTypedArgument_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01424F00, CustomAttributeTypedArgument, Array_EmptyInternalEnumerator_1_System_Reflection_CustomAttributeTypedArgument__get_Current, (Array_EmptyInternalEnumerator_1_System_Reflection_CustomAttributeTypedArgument_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01110, Array_EmptyInternalEnumerator_1_System_Reflection_CustomAttributeTypedArgument__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_DateTime___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_DateTime___ctor, (Array_EmptyInternalEnumerator_1_DateTime_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_DateTime__Dispose, (Array_EmptyInternalEnumerator_1_DateTime_ * __this, MethodInfo * method)); @@ -139239,6 +153675,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_DateTime__MoveNext DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_DateTime__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_DateTime_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BC50, Object *, Array_EmptyInternalEnumerator_1_DateTime__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_DateTime_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01424F60, DateTime, Array_EmptyInternalEnumerator_1_DateTime__get_Current, (Array_EmptyInternalEnumerator_1_DateTime_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01108, Array_EmptyInternalEnumerator_1_DateTime__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_DateTimeOffset___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_DateTimeOffset___ctor, (Array_EmptyInternalEnumerator_1_DateTimeOffset_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_DateTimeOffset__Dispose, (Array_EmptyInternalEnumerator_1_DateTimeOffset_ * __this, MethodInfo * method)); @@ -139246,6 +153683,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_DateTimeOffset__Mo DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_DateTimeOffset__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_DateTimeOffset_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_DateTimeOffset__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_DateTimeOffset_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01424FC0, DateTimeOffset, Array_EmptyInternalEnumerator_1_DateTimeOffset__get_Current, (Array_EmptyInternalEnumerator_1_DateTimeOffset_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01100, Array_EmptyInternalEnumerator_1_DateTimeOffset__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Decimal___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Decimal___ctor, (Array_EmptyInternalEnumerator_1_Decimal_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Decimal__Dispose, (Array_EmptyInternalEnumerator_1_Decimal_ * __this, MethodInfo * method)); @@ -139253,6 +153691,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Decimal__MoveNext, DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Decimal__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Decimal_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_Decimal__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Decimal_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01425020, Decimal, Array_EmptyInternalEnumerator_1_Decimal__get_Current, (Array_EmptyInternalEnumerator_1_Decimal_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D010F8, Array_EmptyInternalEnumerator_1_Decimal__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_DetailInstanceTransform___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_DetailInstanceTransform___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_DetailInstanceTransform_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_DetailInstanceTransform__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_DetailInstanceTransform_ * __this, MethodInfo * method)); @@ -139260,6 +153699,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Detail DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_DetailInstanceTransform__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_DetailInstanceTransform_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_DetailInstanceTransform__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_DetailInstanceTransform_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01425080, DetailInstanceTransform, Array_EmptyInternalEnumerator_1_UnityEngine_DetailInstanceTransform__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_DetailInstanceTransform_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D010F0, Array_EmptyInternalEnumerator_1_UnityEngine_DetailInstanceTransform__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, MethodInfo * method)); @@ -139267,6 +153707,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Resour DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141D1A0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014250E0, DiagnosticEvent, Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D010E8, Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_DictionaryEntry___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_DictionaryEntry___ctor, (Array_EmptyInternalEnumerator_1_System_Collections_DictionaryEntry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_DictionaryEntry__Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_DictionaryEntry_ * __this, MethodInfo * method)); @@ -139274,6 +153715,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_DictionaryEntry__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_DictionaryEntry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Collections_DictionaryEntry__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_DictionaryEntry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01425140, DictionaryEntry, Array_EmptyInternalEnumerator_1_System_Collections_DictionaryEntry__get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_DictionaryEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D010E0, Array_EmptyInternalEnumerator_1_System_Collections_DictionaryEntry__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Dimension___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Dimension___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Dimension_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Dimension__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Dimension_ * __this, MethodInfo * method)); @@ -139281,6 +153723,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Dimension__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Dimension_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BC50, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Dimension__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Dimension_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014251A0, Dimension, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Dimension__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Dimension_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01158, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Dimension__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Double___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Double___ctor, (Array_EmptyInternalEnumerator_1_Double_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Double__Dispose, (Array_EmptyInternalEnumerator_1_Double_ * __this, MethodInfo * method)); @@ -139288,6 +153731,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Double__MoveNext, DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Double__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Double_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01425260, Object *, Array_EmptyInternalEnumerator_1_Double__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Double_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01425200, double, Array_EmptyInternalEnumerator_1_Double__get_Current, (Array_EmptyInternalEnumerator_1_Double_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01150, Array_EmptyInternalEnumerator_1_Double__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_DrawBufferRange___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_DrawBufferRange___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_DrawBufferRange_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_DrawBufferRange__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_DrawBufferRange_ * __this, MethodInfo * method)); @@ -139295,6 +153739,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_DrawBufferRange__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_DrawBufferRange_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_DrawBufferRange__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_DrawBufferRange_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014252D0, DrawBufferRange, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_DrawBufferRange__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_DrawBufferRange_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01148, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_DrawBufferRange__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_EasingFunction___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_EasingFunction___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_EasingFunction_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_EasingFunction__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_EasingFunction_ * __this, MethodInfo * method)); @@ -139302,6 +153747,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_EasingFunction__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_EasingFunction_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01424950, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_EasingFunction__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_EasingFunction_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01425330, EasingFunction, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_EasingFunction__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_EasingFunction_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01140, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_EasingFunction__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Rewired_ElementAssignmentConflictInfo___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_ElementAssignmentConflictInfo___ctor, (Array_EmptyInternalEnumerator_1_Rewired_ElementAssignmentConflictInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_ElementAssignmentConflictInfo__Dispose, (Array_EmptyInternalEnumerator_1_Rewired_ElementAssignmentConflictInfo_ * __this, MethodInfo * method)); @@ -139309,6 +153755,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Rewired_ElementAss DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_ElementAssignmentConflictInfo__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Rewired_ElementAssignmentConflictInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014253F0, Object *, Array_EmptyInternalEnumerator_1_Rewired_ElementAssignmentConflictInfo__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Rewired_ElementAssignmentConflictInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01425390, ElementAssignmentConflictInfo, Array_EmptyInternalEnumerator_1_Rewired_ElementAssignmentConflictInfo__get_Current, (Array_EmptyInternalEnumerator_1_Rewired_ElementAssignmentConflictInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01138, Array_EmptyInternalEnumerator_1_Rewired_ElementAssignmentConflictInfo__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Discord_Entitlement___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Discord_Entitlement___ctor, (Array_EmptyInternalEnumerator_1_Discord_Entitlement_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Discord_Entitlement__Dispose, (Array_EmptyInternalEnumerator_1_Discord_Entitlement_ * __this, MethodInfo * method)); @@ -139316,6 +153763,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Discord_Entitlemen DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Discord_Entitlement__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Discord_Entitlement_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_Discord_Entitlement__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Discord_Entitlement_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01425480, Entitlement, Array_EmptyInternalEnumerator_1_Discord_Entitlement__get_Current, (Array_EmptyInternalEnumerator_1_Discord_Entitlement_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01130, Array_EmptyInternalEnumerator_1_Discord_Entitlement__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Runtime_CompilerServices_Ephemeron___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Runtime_CompilerServices_Ephemeron___ctor, (Array_EmptyInternalEnumerator_1_System_Runtime_CompilerServices_Ephemeron_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Runtime_CompilerServices_Ephemeron__Dispose, (Array_EmptyInternalEnumerator_1_System_Runtime_CompilerServices_Ephemeron_ * __this, MethodInfo * method)); @@ -139323,6 +153771,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Runtime_Com DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Runtime_CompilerServices_Ephemeron__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Runtime_CompilerServices_Ephemeron_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Runtime_CompilerServices_Ephemeron__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Runtime_CompilerServices_Ephemeron_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014254E0, Ephemeron, Array_EmptyInternalEnumerator_1_System_Runtime_CompilerServices_Ephemeron__get_Current, (Array_EmptyInternalEnumerator_1_System_Runtime_CompilerServices_Ephemeron_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01128, Array_EmptyInternalEnumerator_1_System_Runtime_CompilerServices_Ephemeron__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_EventReliable___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_EventReliable___ctor, (Array_EmptyInternalEnumerator_1_Photon_Bolt_EventReliable_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_EventReliable__Dispose, (Array_EmptyInternalEnumerator_1_Photon_Bolt_EventReliable_ * __this, MethodInfo * method)); @@ -139330,6 +153779,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Photon_Bolt_EventR DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_EventReliable__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Photon_Bolt_EventReliable_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_Photon_Bolt_EventReliable__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Photon_Bolt_EventReliable_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01425540, EventReliable, Array_EmptyInternalEnumerator_1_Photon_Bolt_EventReliable__get_Current, (Array_EmptyInternalEnumerator_1_Photon_Bolt_EventReliable_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01120, Array_EmptyInternalEnumerator_1_Photon_Bolt_EventReliable__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_EventUnreliable___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_EventUnreliable___ctor, (Array_EmptyInternalEnumerator_1_Photon_Bolt_EventUnreliable_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_EventUnreliable__Dispose, (Array_EmptyInternalEnumerator_1_Photon_Bolt_EventUnreliable_ * __this, MethodInfo * method)); @@ -139337,6 +153787,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Photon_Bolt_EventU DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_EventUnreliable__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Photon_Bolt_EventUnreliable_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_Photon_Bolt_EventUnreliable__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Photon_Bolt_EventUnreliable_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014255A0, EventUnreliable, Array_EmptyInternalEnumerator_1_Photon_Bolt_EventUnreliable__get_Current, (Array_EmptyInternalEnumerator_1_Photon_Bolt_EventUnreliable_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01098, Array_EmptyInternalEnumerator_1_Photon_Bolt_EventUnreliable__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Runtime_InteropServices_ComTypes_FORMATETC___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Runtime_InteropServices_ComTypes_FORMATETC___ctor, (Array_EmptyInternalEnumerator_1_System_Runtime_InteropServices_ComTypes_FORMATETC_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Runtime_InteropServices_ComTypes_FORMATETC__Dispose, (Array_EmptyInternalEnumerator_1_System_Runtime_InteropServices_ComTypes_FORMATETC_ * __this, MethodInfo * method)); @@ -139344,6 +153795,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Runtime_Int DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Runtime_InteropServices_ComTypes_FORMATETC__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Runtime_InteropServices_ComTypes_FORMATETC_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_System_Runtime_InteropServices_ComTypes_FORMATETC__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Runtime_InteropServices_ComTypes_FORMATETC_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01425600, FORMATETC, Array_EmptyInternalEnumerator_1_System_Runtime_InteropServices_ComTypes_FORMATETC__get_Current, (Array_EmptyInternalEnumerator_1_System_Runtime_InteropServices_ComTypes_FORMATETC_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01090, Array_EmptyInternalEnumerator_1_System_Runtime_InteropServices_ComTypes_FORMATETC__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Discord_FileStat___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Discord_FileStat___ctor, (Array_EmptyInternalEnumerator_1_Discord_FileStat_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Discord_FileStat__Dispose, (Array_EmptyInternalEnumerator_1_Discord_FileStat_ * __this, MethodInfo * method)); @@ -139351,6 +153803,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Discord_FileStat__ DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Discord_FileStat__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Discord_FileStat_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_Discord_FileStat__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Discord_FileStat_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01425660, FileStat, Array_EmptyInternalEnumerator_1_Discord_FileStat__get_Current, (Array_EmptyInternalEnumerator_1_Discord_FileStat_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01088, Array_EmptyInternalEnumerator_1_Discord_FileStat__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_FontDefinition___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_FontDefinition___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_FontDefinition_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_FontDefinition__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_FontDefinition_ * __this, MethodInfo * method)); @@ -139358,6 +153811,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_FontDefinition__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_FontDefinition_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_FontDefinition__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_FontDefinition_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014256C0, FontDefinition, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_FontDefinition__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_FontDefinition_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01080, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_FontDefinition__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_FontWeightPair___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_FontWeightPair___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_FontWeightPair_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_FontWeightPair__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_FontWeightPair_ * __this, MethodInfo * method)); @@ -139365,6 +153819,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_TextCo DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_FontWeightPair__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_FontWeightPair_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_FontWeightPair__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_FontWeightPair_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01425720, FontWeightPair, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_FontWeightPair__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_FontWeightPair_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01078, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_FontWeightPair__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Dissonance_Audio_Playback_FrameFormat___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Dissonance_Audio_Playback_FrameFormat___ctor, (Array_EmptyInternalEnumerator_1_Dissonance_Audio_Playback_FrameFormat_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Dissonance_Audio_Playback_FrameFormat__Dispose, (Array_EmptyInternalEnumerator_1_Dissonance_Audio_Playback_FrameFormat_ * __this, MethodInfo * method)); @@ -139372,6 +153827,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Dissonance_Audio_P DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Dissonance_Audio_Playback_FrameFormat__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Dissonance_Audio_Playback_FrameFormat_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_Dissonance_Audio_Playback_FrameFormat__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Dissonance_Audio_Playback_FrameFormat_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01425780, FrameFormat, Array_EmptyInternalEnumerator_1_Dissonance_Audio_Playback_FrameFormat__get_Current, (Array_EmptyInternalEnumerator_1_Dissonance_Audio_Playback_FrameFormat_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01070, Array_EmptyInternalEnumerator_1_Dissonance_Audio_Playback_FrameFormat__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Runtime_InteropServices_GCHandle___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Runtime_InteropServices_GCHandle___ctor, (Array_EmptyInternalEnumerator_1_System_Runtime_InteropServices_GCHandle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Runtime_InteropServices_GCHandle__Dispose, (Array_EmptyInternalEnumerator_1_System_Runtime_InteropServices_GCHandle_ * __this, MethodInfo * method)); @@ -139379,6 +153835,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Runtime_Int DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Runtime_InteropServices_GCHandle__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Runtime_InteropServices_GCHandle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BC50, Object *, Array_EmptyInternalEnumerator_1_System_Runtime_InteropServices_GCHandle__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Runtime_InteropServices_GCHandle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014257E0, GCHandle, Array_EmptyInternalEnumerator_1_System_Runtime_InteropServices_GCHandle__get_Current, (Array_EmptyInternalEnumerator_1_System_Runtime_InteropServices_GCHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01068, Array_EmptyInternalEnumerator_1_System_Runtime_InteropServices_GCHandle__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ * __this, MethodInfo * method)); @@ -139386,6 +153843,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01425840, GfxUpdateBufferRange, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01060, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_GlobalKeyword___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_GlobalKeyword___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_GlobalKeyword_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_GlobalKeyword__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_GlobalKeyword_ * __this, MethodInfo * method)); @@ -139393,6 +153851,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Render DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_GlobalKeyword__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_GlobalKeyword_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_GlobalKeyword__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_GlobalKeyword_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014258A0, GlobalKeyword, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_GlobalKeyword__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_GlobalKeyword_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D010D8, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_GlobalKeyword__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphMarshallingStruct___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphMarshallingStruct___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphMarshallingStruct_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphMarshallingStruct__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphMarshallingStruct_ * __this, MethodInfo * method)); @@ -139400,6 +153859,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_TextCo DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphMarshallingStruct__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphMarshallingStruct_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01422060, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphMarshallingStruct__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphMarshallingStruct_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01425900, GlyphMarshallingStruct, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphMarshallingStruct__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphMarshallingStruct_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D010D0, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphMarshallingStruct__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, MethodInfo * method)); @@ -139407,6 +153867,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_TextCo DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014253F0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01425960, GlyphPairAdjustmentRecord, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D010C8, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_GlyphRect___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_GlyphRect___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_GlyphRect_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_GlyphRect__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_GlyphRect_ * __this, MethodInfo * method)); @@ -139414,6 +153875,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_TextCo DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_GlyphRect__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_GlyphRect_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_GlyphRect__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_GlyphRect_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014259C0, GlyphRect, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_GlyphRect__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_GlyphRect_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D010C0, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_GlyphRect__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_GradientAlphaKey___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_GradientAlphaKey___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_GradientAlphaKey_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_GradientAlphaKey__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_GradientAlphaKey_ * __this, MethodInfo * method)); @@ -139421,6 +153883,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Gradie DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_GradientAlphaKey__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_GradientAlphaKey_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014247D0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_GradientAlphaKey__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_GradientAlphaKey_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01425A20, GradientAlphaKey, Array_EmptyInternalEnumerator_1_UnityEngine_GradientAlphaKey__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_GradientAlphaKey_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D010B8, Array_EmptyInternalEnumerator_1_UnityEngine_GradientAlphaKey__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_GradientColorKey___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_GradientColorKey___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_GradientColorKey_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_GradientColorKey__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_GradientColorKey_ * __this, MethodInfo * method)); @@ -139428,6 +153891,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Gradie DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_GradientColorKey__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_GradientColorKey_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C7D0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_GradientColorKey__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_GradientColorKey_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01425A80, GradientColorKey, Array_EmptyInternalEnumerator_1_UnityEngine_GradientColorKey__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_GradientColorKey_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D010B0, Array_EmptyInternalEnumerator_1_UnityEngine_GradientColorKey__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_GradientSettings___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_GradientSettings___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_GradientSettings_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_GradientSettings__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_GradientSettings_ * __this, MethodInfo * method)); @@ -139435,6 +153899,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_GradientSettings__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_GradientSettings_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_GradientSettings__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_GradientSettings_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01425AE0, GradientSettings, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_GradientSettings__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_GradientSettings_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D010A8, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_GradientSettings__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Guid___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Guid___ctor, (Array_EmptyInternalEnumerator_1_Guid_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Guid__Dispose, (Array_EmptyInternalEnumerator_1_Guid_ * __this, MethodInfo * method)); @@ -139442,6 +153907,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Guid__MoveNext, (A DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Guid__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Guid_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_Guid__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Guid_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01425B40, Guid, Array_EmptyInternalEnumerator_1_Guid__get_Current, (Array_EmptyInternalEnumerator_1_Guid_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D010A0, Array_EmptyInternalEnumerator_1_Guid__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Microsoft_MixedReality_OpenXR_HandJointLocation___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Microsoft_MixedReality_OpenXR_HandJointLocation___ctor, (Array_EmptyInternalEnumerator_1_Microsoft_MixedReality_OpenXR_HandJointLocation_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Microsoft_MixedReality_OpenXR_HandJointLocation__Dispose, (Array_EmptyInternalEnumerator_1_Microsoft_MixedReality_OpenXR_HandJointLocation_ * __this, MethodInfo * method)); @@ -139449,6 +153915,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Microsoft_MixedRea DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Microsoft_MixedReality_OpenXR_HandJointLocation__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Microsoft_MixedReality_OpenXR_HandJointLocation_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C970, Object *, Array_EmptyInternalEnumerator_1_Microsoft_MixedReality_OpenXR_HandJointLocation__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Microsoft_MixedReality_OpenXR_HandJointLocation_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01425BA0, HandJointLocation, Array_EmptyInternalEnumerator_1_Microsoft_MixedReality_OpenXR_HandJointLocation__get_Current, (Array_EmptyInternalEnumerator_1_Microsoft_MixedReality_OpenXR_HandJointLocation_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01018, Array_EmptyInternalEnumerator_1_Microsoft_MixedReality_OpenXR_HandJointLocation__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Hash128___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Hash128___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Hash128_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Hash128__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Hash128_ * __this, MethodInfo * method)); @@ -139456,6 +153923,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Hash12 DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Hash128__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Hash128_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Hash128__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Hash128_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01425C00, Hash128, Array_EmptyInternalEnumerator_1_UnityEngine_Hash128__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Hash128_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01010, Array_EmptyInternalEnumerator_1_UnityEngine_Hash128__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Net_HeaderVariantInfo___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Net_HeaderVariantInfo___ctor, (Array_EmptyInternalEnumerator_1_System_Net_HeaderVariantInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Net_HeaderVariantInfo__Dispose, (Array_EmptyInternalEnumerator_1_System_Net_HeaderVariantInfo_ * __this, MethodInfo * method)); @@ -139463,6 +153931,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Net_HeaderV DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Net_HeaderVariantInfo__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Net_HeaderVariantInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Net_HeaderVariantInfo__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Net_HeaderVariantInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01425C60, HeaderVariantInfo, Array_EmptyInternalEnumerator_1_System_Net_HeaderVariantInfo__get_Current, (Array_EmptyInternalEnumerator_1_System_Net_HeaderVariantInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01008, Array_EmptyInternalEnumerator_1_System_Net_HeaderVariantInfo__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_TMPro_HighlightState___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_HighlightState___ctor, (Array_EmptyInternalEnumerator_1_TMPro_HighlightState_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_HighlightState__Dispose, (Array_EmptyInternalEnumerator_1_TMPro_HighlightState_ * __this, MethodInfo * method)); @@ -139470,6 +153939,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_TMPro_HighlightSta DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_HighlightState__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_TMPro_HighlightState_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C7D0, Object *, Array_EmptyInternalEnumerator_1_TMPro_HighlightState__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_TMPro_HighlightState_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01425CC0, HighlightState, Array_EmptyInternalEnumerator_1_TMPro_HighlightState__get_Current, (Array_EmptyInternalEnumerator_1_TMPro_HighlightState_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01000, Array_EmptyInternalEnumerator_1_TMPro_HighlightState__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_HumanBone___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_HumanBone___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_HumanBone_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_HumanBone__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_HumanBone_ * __this, MethodInfo * method)); @@ -139477,6 +153947,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_HumanB DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_HumanBone__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_HumanBone_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141CB70, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_HumanBone__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_HumanBone_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01425D20, HumanBone, Array_EmptyInternalEnumerator_1_UnityEngine_HumanBone__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_HumanBone_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00FF8, Array_EmptyInternalEnumerator_1_UnityEngine_HumanBone__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ImpactEffect___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ImpactEffect___ctor, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ImpactEffect_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ImpactEffect__Dispose, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ImpactEffect_ * __this, MethodInfo * method)); @@ -139484,6 +153955,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Opsive_UltimateCha DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ImpactEffect__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ImpactEffect_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ImpactEffect__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ImpactEffect_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01425D80, ImpactEffect, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ImpactEffect__get_Current, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ImpactEffect_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00FF0, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ImpactEffect__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Rewired_InputActionSourceData___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_InputActionSourceData___ctor, (Array_EmptyInternalEnumerator_1_Rewired_InputActionSourceData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_InputActionSourceData__Dispose, (Array_EmptyInternalEnumerator_1_Rewired_InputActionSourceData_ * __this, MethodInfo * method)); @@ -139491,6 +153963,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Rewired_InputActio DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_InputActionSourceData__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Rewired_InputActionSourceData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_Rewired_InputActionSourceData__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Rewired_InputActionSourceData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01425DE0, InputActionSourceData, Array_EmptyInternalEnumerator_1_Rewired_InputActionSourceData__get_Current, (Array_EmptyInternalEnumerator_1_Rewired_InputActionSourceData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00FE8, Array_EmptyInternalEnumerator_1_Rewired_InputActionSourceData__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputBinding___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputBinding___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputBinding_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputBinding__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputBinding_ * __this, MethodInfo * method)); @@ -139498,6 +153971,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_InputS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputBinding__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputBinding_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141E2C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputBinding__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputBinding_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01425E40, InputBinding, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputBinding__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00FE0, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputBinding__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_ * __this, MethodInfo * method)); @@ -139505,6 +153979,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_InputS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01425EA0, InputControlScheme, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01058, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_XR_InputDevice___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_XR_InputDevice___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_XR_InputDevice_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_XR_InputDevice__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_XR_InputDevice_ * __this, MethodInfo * method)); @@ -139512,6 +153987,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_XR_Inp DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_XR_InputDevice__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_XR_InputDevice_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_XR_InputDevice__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_XR_InputDevice_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01425F00, InputDevice_1, Array_EmptyInternalEnumerator_1_UnityEngine_XR_InputDevice__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_XR_InputDevice_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01050, Array_EmptyInternalEnumerator_1_UnityEngine_XR_InputDevice__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription_ * __this, MethodInfo * method)); @@ -139519,6 +153995,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_InputS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141DC50, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01425F60, InputDeviceDescription, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01048, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventPtr___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventPtr___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventPtr_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventPtr__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventPtr_ * __this, MethodInfo * method)); @@ -139526,6 +154003,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_InputS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventPtr__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventPtr_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BC50, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventPtr__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventPtr_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01425FC0, InputEventPtr, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventPtr__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventPtr_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01040, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventPtr__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_ * __this, MethodInfo * method)); @@ -139533,6 +154011,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_InputS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01424950, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01426020, InputUser, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01038, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Int16___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Int16___ctor, (Array_EmptyInternalEnumerator_1_Int16_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Int16__Dispose, (Array_EmptyInternalEnumerator_1_Int16_ * __this, MethodInfo * method)); @@ -139540,6 +154019,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Int16__MoveNext, ( DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Int16__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Int16_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014246A0, Object *, Array_EmptyInternalEnumerator_1_Int16__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Int16_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01426080, int16_t, Array_EmptyInternalEnumerator_1_Int16__get_Current, (Array_EmptyInternalEnumerator_1_Int16_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01030, Array_EmptyInternalEnumerator_1_Int16__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Pathfinding_Int2___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_Int2___ctor, (Array_EmptyInternalEnumerator_1_Pathfinding_Int2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_Int2__Dispose, (Array_EmptyInternalEnumerator_1_Pathfinding_Int2_ * __this, MethodInfo * method)); @@ -139547,6 +154027,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Pathfinding_Int2__ DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_Int2__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Pathfinding_Int2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BC50, Object *, Array_EmptyInternalEnumerator_1_Pathfinding_Int2__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Pathfinding_Int2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014260E0, Int2, Array_EmptyInternalEnumerator_1_Pathfinding_Int2__get_Current, (Array_EmptyInternalEnumerator_1_Pathfinding_Int2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01028, Array_EmptyInternalEnumerator_1_Pathfinding_Int2__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Pathfinding_Int3___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_Int3___ctor, (Array_EmptyInternalEnumerator_1_Pathfinding_Int3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_Int3__Dispose, (Array_EmptyInternalEnumerator_1_Pathfinding_Int3_ * __this, MethodInfo * method)); @@ -139554,6 +154035,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Pathfinding_Int3__ DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_Int3__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Pathfinding_Int3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141FA10, Object *, Array_EmptyInternalEnumerator_1_Pathfinding_Int3__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Pathfinding_Int3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01426140, Int3, Array_EmptyInternalEnumerator_1_Pathfinding_Int3__get_Current, (Array_EmptyInternalEnumerator_1_Pathfinding_Int3_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01020, Array_EmptyInternalEnumerator_1_Pathfinding_Int3__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Int32___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Int32___ctor, (Array_EmptyInternalEnumerator_1_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Int32__Dispose, (Array_EmptyInternalEnumerator_1_Int32_ * __this, MethodInfo * method)); @@ -139561,6 +154043,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Int32__MoveNext, ( DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Int32__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01424950, Object *, Array_EmptyInternalEnumerator_1_Int32__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014261A0, int32_t, Array_EmptyInternalEnumerator_1_Int32__get_Current, (Array_EmptyInternalEnumerator_1_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00F98, Array_EmptyInternalEnumerator_1_Int32__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Int32Enum___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Int32Enum___ctor, (Array_EmptyInternalEnumerator_1_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Int32Enum__Dispose, (Array_EmptyInternalEnumerator_1_Int32Enum_ * __this, MethodInfo * method)); @@ -139568,6 +154051,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Int32Enum__MoveNex DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Int32Enum__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01424950, Object *, Array_EmptyInternalEnumerator_1_Int32Enum__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01426200, Int32Enum__Enum, Array_EmptyInternalEnumerator_1_Int32Enum__get_Current, (Array_EmptyInternalEnumerator_1_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00F90, Array_EmptyInternalEnumerator_1_Int32Enum__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Int64___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Int64___ctor, (Array_EmptyInternalEnumerator_1_Int64_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Int64__Dispose, (Array_EmptyInternalEnumerator_1_Int64_ * __this, MethodInfo * method)); @@ -139575,6 +154059,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Int64__MoveNext, ( DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Int64__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Int64_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BC50, Object *, Array_EmptyInternalEnumerator_1_Int64__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Int64_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01426260, int64_t, Array_EmptyInternalEnumerator_1_Int64__get_Current, (Array_EmptyInternalEnumerator_1_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00F88, Array_EmptyInternalEnumerator_1_Int64__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Pathfinding_ClipperLib_IntPoint___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_ClipperLib_IntPoint___ctor, (Array_EmptyInternalEnumerator_1_Pathfinding_ClipperLib_IntPoint_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_ClipperLib_IntPoint__Dispose, (Array_EmptyInternalEnumerator_1_Pathfinding_ClipperLib_IntPoint_ * __this, MethodInfo * method)); @@ -139582,6 +154067,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Pathfinding_Clippe DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_ClipperLib_IntPoint__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Pathfinding_ClipperLib_IntPoint_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_Pathfinding_ClipperLib_IntPoint__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Pathfinding_ClipperLib_IntPoint_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014262C0, IntPoint, Array_EmptyInternalEnumerator_1_Pathfinding_ClipperLib_IntPoint__get_Current, (Array_EmptyInternalEnumerator_1_Pathfinding_ClipperLib_IntPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00F80, Array_EmptyInternalEnumerator_1_Pathfinding_ClipperLib_IntPoint__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_IntPtr___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_IntPtr___ctor, (Array_EmptyInternalEnumerator_1_IntPtr_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_IntPtr__Dispose, (Array_EmptyInternalEnumerator_1_IntPtr_ * __this, MethodInfo * method)); @@ -139589,6 +154075,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_IntPtr__MoveNext, DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_IntPtr__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_IntPtr_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BC50, Object *, Array_EmptyInternalEnumerator_1_IntPtr__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_IntPtr_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01426320, void *, Array_EmptyInternalEnumerator_1_IntPtr__get_Current, (Array_EmptyInternalEnumerator_1_IntPtr_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00F78, Array_EmptyInternalEnumerator_1_IntPtr__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Pathfinding_IntRect___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_IntRect___ctor, (Array_EmptyInternalEnumerator_1_Pathfinding_IntRect_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_IntRect__Dispose, (Array_EmptyInternalEnumerator_1_Pathfinding_IntRect_ * __this, MethodInfo * method)); @@ -139596,6 +154083,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Pathfinding_IntRec DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_IntRect__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Pathfinding_IntRect_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_Pathfinding_IntRect__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Pathfinding_IntRect_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01426380, IntRect, Array_EmptyInternalEnumerator_1_Pathfinding_IntRect__get_Current, (Array_EmptyInternalEnumerator_1_Pathfinding_IntRect_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00F70, Array_EmptyInternalEnumerator_1_Pathfinding_IntRect__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Globalization_InternalCodePageDataItem___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Globalization_InternalCodePageDataItem___ctor, (Array_EmptyInternalEnumerator_1_System_Globalization_InternalCodePageDataItem_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Globalization_InternalCodePageDataItem__Dispose, (Array_EmptyInternalEnumerator_1_System_Globalization_InternalCodePageDataItem_ * __this, MethodInfo * method)); @@ -139603,6 +154091,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Globalizati DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Globalization_InternalCodePageDataItem__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Globalization_InternalCodePageDataItem_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Globalization_InternalCodePageDataItem__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Globalization_InternalCodePageDataItem_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014263E0, InternalCodePageDataItem, Array_EmptyInternalEnumerator_1_System_Globalization_InternalCodePageDataItem__get_Current, (Array_EmptyInternalEnumerator_1_System_Globalization_InternalCodePageDataItem_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00F68, Array_EmptyInternalEnumerator_1_System_Globalization_InternalCodePageDataItem__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Globalization_InternalEncodingDataItem___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Globalization_InternalEncodingDataItem___ctor, (Array_EmptyInternalEnumerator_1_System_Globalization_InternalEncodingDataItem_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Globalization_InternalEncodingDataItem__Dispose, (Array_EmptyInternalEnumerator_1_System_Globalization_InternalEncodingDataItem_ * __this, MethodInfo * method)); @@ -139610,6 +154099,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Globalizati DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Globalization_InternalEncodingDataItem__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Globalization_InternalEncodingDataItem_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Globalization_InternalEncodingDataItem__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Globalization_InternalEncodingDataItem_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01426440, InternalEncodingDataItem, Array_EmptyInternalEnumerator_1_System_Globalization_InternalEncodingDataItem__get_Current, (Array_EmptyInternalEnumerator_1_System_Globalization_InternalEncodingDataItem_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00F60, Array_EmptyInternalEnumerator_1_System_Globalization_InternalEncodingDataItem__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_InternedString___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_InternedString___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_InternedString__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); @@ -139617,6 +154107,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_InputS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_InternedString__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_InternedString__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014264A0, InternedString, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_InternedString__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00FD8, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_InternedString__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Linq_Expressions_Interpreter_InterpretedFrameInfo___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Linq_Expressions_Interpreter_InterpretedFrameInfo___ctor, (Array_EmptyInternalEnumerator_1_System_Linq_Expressions_Interpreter_InterpretedFrameInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Linq_Expressions_Interpreter_InterpretedFrameInfo__Dispose, (Array_EmptyInternalEnumerator_1_System_Linq_Expressions_Interpreter_InterpretedFrameInfo_ * __this, MethodInfo * method)); @@ -139624,6 +154115,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Linq_Expres DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Linq_Expressions_Interpreter_InterpretedFrameInfo__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Linq_Expressions_Interpreter_InterpretedFrameInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Linq_Expressions_Interpreter_InterpretedFrameInfo__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Linq_Expressions_Interpreter_InterpretedFrameInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01426500, InterpretedFrameInfo, Array_EmptyInternalEnumerator_1_System_Linq_Expressions_Interpreter_InterpretedFrameInfo__get_Current, (Array_EmptyInternalEnumerator_1_System_Linq_Expressions_Interpreter_InterpretedFrameInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00FD0, Array_EmptyInternalEnumerator_1_System_Linq_Expressions_Interpreter_InterpretedFrameInfo__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Timeline_IntervalTreeNode___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Timeline_IntervalTreeNode___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Timeline_IntervalTreeNode_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Timeline_IntervalTreeNode__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Timeline_IntervalTreeNode_ * __this, MethodInfo * method)); @@ -139631,6 +154123,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Timeli DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Timeline_IntervalTreeNode__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Timeline_IntervalTreeNode_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Timeline_IntervalTreeNode__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Timeline_IntervalTreeNode_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01426560, IntervalTreeNode, Array_EmptyInternalEnumerator_1_UnityEngine_Timeline_IntervalTreeNode__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Timeline_IntervalTreeNode_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00FC8, Array_EmptyInternalEnumerator_1_UnityEngine_Timeline_IntervalTreeNode__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_IpQCkqlgJLyrFpAOyBfUxXQpJsWK___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_IpQCkqlgJLyrFpAOyBfUxXQpJsWK___ctor, (Array_EmptyInternalEnumerator_1_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_IpQCkqlgJLyrFpAOyBfUxXQpJsWK__Dispose, (Array_EmptyInternalEnumerator_1_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_ * __this, MethodInfo * method)); @@ -139638,6 +154131,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_IpQCkqlgJLyrFpAOyB DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_IpQCkqlgJLyrFpAOyBfUxXQpJsWK__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01424950, Object *, Array_EmptyInternalEnumerator_1_IpQCkqlgJLyrFpAOyBfUxXQpJsWK__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014265C0, IpQCkqlgJLyrFpAOyBfUxXQpJsWK, Array_EmptyInternalEnumerator_1_IpQCkqlgJLyrFpAOyBfUxXQpJsWK__get_Current, (Array_EmptyInternalEnumerator_1_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00FC0, Array_EmptyInternalEnumerator_1_IpQCkqlgJLyrFpAOyBfUxXQpJsWK__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount___ctor, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount__Dispose, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount_ * __this, MethodInfo * method)); @@ -139645,6 +154139,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Opsive_UltimateCha DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01426620, ItemDefinitionAmount, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount__get_Current, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00FB8, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Keyframe___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Keyframe___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Keyframe_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Keyframe__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Keyframe_ * __this, MethodInfo * method)); @@ -139652,6 +154147,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Keyfra DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Keyframe__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Keyframe_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C680, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Keyframe__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Keyframe_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01426680, Keyframe, Array_EmptyInternalEnumerator_1_UnityEngine_Keyframe__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Keyframe_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00FB0, Array_EmptyInternalEnumerator_1_UnityEngine_Keyframe__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_KickedPlayer___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_KickedPlayer___ctor, (Array_EmptyInternalEnumerator_1_KickedPlayer_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_KickedPlayer__Dispose, (Array_EmptyInternalEnumerator_1_KickedPlayer_ * __this, MethodInfo * method)); @@ -139659,6 +154155,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_KickedPlayer__Move DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_KickedPlayer__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_KickedPlayer_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_KickedPlayer__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_KickedPlayer_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014266E0, KickedPlayer, Array_EmptyInternalEnumerator_1_KickedPlayer__get_Current, (Array_EmptyInternalEnumerator_1_KickedPlayer_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00FA8, Array_EmptyInternalEnumerator_1_KickedPlayer__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_LOD___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_LOD___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_LOD_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_LOD__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_LOD_ * __this, MethodInfo * method)); @@ -139666,6 +154163,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_LOD__M DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_LOD__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_LOD_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_LOD__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_LOD_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01426740, LOD, Array_EmptyInternalEnumerator_1_UnityEngine_LOD__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_LOD_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00FA0, Array_EmptyInternalEnumerator_1_UnityEngine_LOD__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_LayerMask___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_LayerMask___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_LayerMask_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_LayerMask__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_LayerMask_ * __this, MethodInfo * method)); @@ -139673,6 +154171,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_LayerM DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_LayerMask__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_LayerMask_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01424950, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_LayerMask__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_LayerMask_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014267A0, LayerMask, Array_EmptyInternalEnumerator_1_UnityEngine_LayerMask__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_LayerMask_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00F18, Array_EmptyInternalEnumerator_1_UnityEngine_LayerMask__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Length___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Length___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Length_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Length__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Length_ * __this, MethodInfo * method)); @@ -139680,6 +154179,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Length__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Length_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BC50, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Length__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Length_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01426800, Length, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Length__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Length_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00F10, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Length__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI_ * __this, MethodInfo * method)); @@ -139687,6 +154187,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Experi DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01420390, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01426860, LightDataGI, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00F08, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_LineInfo___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_LineInfo___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_LineInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_LineInfo__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_LineInfo_ * __this, MethodInfo * method)); @@ -139694,6 +154195,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_TextCo DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_LineInfo__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_LineInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01420390, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_LineInfo__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_LineInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014268C0, LineInfo_1, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_LineInfo__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_LineInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00F00, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_LineInfo__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_LinkInfo___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_LinkInfo___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_LinkInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_LinkInfo__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_LinkInfo_ * __this, MethodInfo * method)); @@ -139701,6 +154203,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_TextCo DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_LinkInfo__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_LinkInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_LinkInfo__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_LinkInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01426920, LinkInfo, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_LinkInfo__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_LinkInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00EF8, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_LinkInfo__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Linq_Expressions_Interpreter_LocalDefinition___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Linq_Expressions_Interpreter_LocalDefinition___ctor, (Array_EmptyInternalEnumerator_1_System_Linq_Expressions_Interpreter_LocalDefinition_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Linq_Expressions_Interpreter_LocalDefinition__Dispose, (Array_EmptyInternalEnumerator_1_System_Linq_Expressions_Interpreter_LocalDefinition_ * __this, MethodInfo * method)); @@ -139708,6 +154211,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Linq_Expres DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Linq_Expressions_Interpreter_LocalDefinition__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Linq_Expressions_Interpreter_LocalDefinition_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Linq_Expressions_Interpreter_LocalDefinition__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Linq_Expressions_Interpreter_LocalDefinition_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01426980, LocalDefinition, Array_EmptyInternalEnumerator_1_System_Linq_Expressions_Interpreter_LocalDefinition__get_Current, (Array_EmptyInternalEnumerator_1_System_Linq_Expressions_Interpreter_LocalDefinition_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00EF0, Array_EmptyInternalEnumerator_1_System_Linq_Expressions_Interpreter_LocalDefinition__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_LocalKeyword___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_LocalKeyword___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_LocalKeyword_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_LocalKeyword__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_LocalKeyword_ * __this, MethodInfo * method)); @@ -139715,6 +154219,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Render DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_LocalKeyword__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_LocalKeyword_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_LocalKeyword__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_LocalKeyword_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014269E0, LocalKeyword, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_LocalKeyword__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_LocalKeyword_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00EE8, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_LocalKeyword__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_ManipulatorActivationFilter___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_ManipulatorActivationFilter___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_ManipulatorActivationFilter_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_ManipulatorActivationFilter__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_ManipulatorActivationFilter_ * __this, MethodInfo * method)); @@ -139722,6 +154227,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_ManipulatorActivationFilter__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_ManipulatorActivationFilter_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141FA10, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_ManipulatorActivationFilter__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_ManipulatorActivationFilter_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01426A40, ManipulatorActivationFilter, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_ManipulatorActivationFilter__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_ManipulatorActivationFilter_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00EE0, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_ManipulatorActivationFilter__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_TMPro_MaterialReference___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_MaterialReference___ctor, (Array_EmptyInternalEnumerator_1_TMPro_MaterialReference_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_MaterialReference__Dispose, (Array_EmptyInternalEnumerator_1_TMPro_MaterialReference_ * __this, MethodInfo * method)); @@ -139729,6 +154235,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_TMPro_MaterialRefe DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_MaterialReference__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_TMPro_MaterialReference_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141DC50, Object *, Array_EmptyInternalEnumerator_1_TMPro_MaterialReference__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_TMPro_MaterialReference_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01426AA0, MaterialReference, Array_EmptyInternalEnumerator_1_TMPro_MaterialReference__get_Current, (Array_EmptyInternalEnumerator_1_TMPro_MaterialReference_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00F58, Array_EmptyInternalEnumerator_1_TMPro_MaterialReference__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_MaterialReference___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_MaterialReference___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_MaterialReference_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_MaterialReference__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_MaterialReference_ * __this, MethodInfo * method)); @@ -139736,6 +154243,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_TextCo DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_MaterialReference__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_MaterialReference_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141DC50, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_MaterialReference__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_MaterialReference_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01426B00, MaterialReference_1, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_MaterialReference__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_MaterialReference_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00F50, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_MaterialReference__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Matrix4x4___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Matrix4x4___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Matrix4x4_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Matrix4x4__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Matrix4x4_ * __this, MethodInfo * method)); @@ -139743,6 +154251,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Matrix DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Matrix4x4__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Matrix4x4_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141CB70, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Matrix4x4__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Matrix4x4_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01426B60, Matrix4x4, Array_EmptyInternalEnumerator_1_UnityEngine_Matrix4x4__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Matrix4x4_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00F48, Array_EmptyInternalEnumerator_1_UnityEngine_Matrix4x4__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_MeshInfo___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_MeshInfo___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_MeshInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_MeshInfo__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_MeshInfo_ * __this, MethodInfo * method)); @@ -139750,6 +154259,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_TextCo DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_MeshInfo__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_MeshInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141DC50, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_MeshInfo__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_MeshInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01426BC0, MeshInfo, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_MeshInfo__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_MeshInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00F40, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_MeshInfo__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxFloat___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxFloat___ctor, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxFloat_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxFloat__Dispose, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxFloat_ * __this, MethodInfo * method)); @@ -139757,6 +154267,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Opsive_UltimateCha DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxFloat__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxFloat_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014247D0, Object *, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxFloat__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxFloat_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01426C20, MinMaxFloat, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxFloat__get_Current, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxFloat_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00F38, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxFloat__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxVector3___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxVector3___ctor, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxVector3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxVector3__Dispose, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxVector3_ * __this, MethodInfo * method)); @@ -139764,6 +154275,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Opsive_UltimateCha DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxVector3__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxVector3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C970, Object *, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxVector3__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxVector3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01426C80, MinMaxVector3, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxVector3__get_Current, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxVector3_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00F30, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxVector3__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_ModifiableContactPair___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_ModifiableContactPair___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_ModifiableContactPair_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_ModifiableContactPair__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_ModifiableContactPair_ * __this, MethodInfo * method)); @@ -139771,6 +154283,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Modifi DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_ModifiableContactPair__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_ModifiableContactPair_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141D350, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_ModifiableContactPair__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_ModifiableContactPair_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01426CE0, ModifiableContactPair, Array_EmptyInternalEnumerator_1_UnityEngine_ModifiableContactPair__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_ModifiableContactPair_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00F28, Array_EmptyInternalEnumerator_1_UnityEngine_ModifiableContactPair__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_NameAndParameters___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_NameAndParameters___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_NameAndParameters__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ * __this, MethodInfo * method)); @@ -139778,6 +154291,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_InputS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_NameAndParameters__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_NameAndParameters__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01426D40, NameAndParameters, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_NameAndParameters__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00F20, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_NameAndParameters__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_NamedValue___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_NamedValue___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_NamedValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_NamedValue__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_NamedValue_ * __this, MethodInfo * method)); @@ -139785,6 +154299,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_InputS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_NamedValue__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_NamedValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_NamedValue__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_NamedValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01426DA0, NamedValue, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_NamedValue__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_NamedValue_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00E98, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_NamedValue__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativeAnchor___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativeAnchor___ctor, (Array_EmptyInternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativeAnchor_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativeAnchor__Dispose, (Array_EmptyInternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativeAnchor_ * __this, MethodInfo * method)); @@ -139792,6 +154307,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Microsoft_MixedRea DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativeAnchor__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativeAnchor_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141DC50, Object *, Array_EmptyInternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativeAnchor__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativeAnchor_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01426E00, NativeAnchor, Array_EmptyInternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativeAnchor__get_Current, (Array_EmptyInternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativeAnchor_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00E90, Array_EmptyInternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativeAnchor__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativePlane___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativePlane___ctor, (Array_EmptyInternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativePlane_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativePlane__Dispose, (Array_EmptyInternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativePlane_ * __this, MethodInfo * method)); @@ -139799,6 +154315,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Microsoft_MixedRea DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativePlane__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativePlane_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141F0C0, Object *, Array_EmptyInternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativePlane__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativePlane_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01426E60, NativePlane, Array_EmptyInternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativePlane__get_Current, (Array_EmptyInternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativePlane_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00E88, Array_EmptyInternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativePlane__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UI_Navigation___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UI_Navigation___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UI_Navigation_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UI_Navigation__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UI_Navigation_ * __this, MethodInfo * method)); @@ -139806,6 +154323,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UI_Nav DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UI_Navigation__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UI_Navigation_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C530, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UI_Navigation__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UI_Navigation_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01426EC0, Navigation, Array_EmptyInternalEnumerator_1_UnityEngine_UI_Navigation__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UI_Navigation_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00E80, Array_EmptyInternalEnumerator_1_UnityEngine_UI_Navigation__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_NetworkId___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_NetworkId___ctor, (Array_EmptyInternalEnumerator_1_Photon_Bolt_NetworkId_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_NetworkId__Dispose, (Array_EmptyInternalEnumerator_1_Photon_Bolt_NetworkId_ * __this, MethodInfo * method)); @@ -139813,6 +154331,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Photon_Bolt_Networ DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_NetworkId__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Photon_Bolt_NetworkId_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BC50, Object *, Array_EmptyInternalEnumerator_1_Photon_Bolt_NetworkId__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Photon_Bolt_NetworkId_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01426F20, NetworkId, Array_EmptyInternalEnumerator_1_Photon_Bolt_NetworkId__get_Current, (Array_EmptyInternalEnumerator_1_Photon_Bolt_NetworkId_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00E78, Array_EmptyInternalEnumerator_1_Photon_Bolt_NetworkId__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_NetworkPropertyInfo___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_NetworkPropertyInfo___ctor, (Array_EmptyInternalEnumerator_1_Photon_Bolt_NetworkPropertyInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_NetworkPropertyInfo__Dispose, (Array_EmptyInternalEnumerator_1_Photon_Bolt_NetworkPropertyInfo_ * __this, MethodInfo * method)); @@ -139820,6 +154339,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Photon_Bolt_Networ DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_NetworkPropertyInfo__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Photon_Bolt_NetworkPropertyInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_Photon_Bolt_NetworkPropertyInfo__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Photon_Bolt_NetworkPropertyInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01426F80, NetworkPropertyInfo, Array_EmptyInternalEnumerator_1_Photon_Bolt_NetworkPropertyInfo__get_Current, (Array_EmptyInternalEnumerator_1_Photon_Bolt_NetworkPropertyInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00E70, Array_EmptyInternalEnumerator_1_Photon_Bolt_NetworkPropertyInfo__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_NetworkValue___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_NetworkValue___ctor, (Array_EmptyInternalEnumerator_1_Photon_Bolt_NetworkValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_NetworkValue__Dispose, (Array_EmptyInternalEnumerator_1_Photon_Bolt_NetworkValue_ * __this, MethodInfo * method)); @@ -139827,6 +154347,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Photon_Bolt_Networ DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_NetworkValue__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Photon_Bolt_NetworkValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_Photon_Bolt_NetworkValue__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Photon_Bolt_NetworkValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01426FE0, NetworkValue, Array_EmptyInternalEnumerator_1_Photon_Bolt_NetworkValue__get_Current, (Array_EmptyInternalEnumerator_1_Photon_Bolt_NetworkValue_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00E68, Array_EmptyInternalEnumerator_1_Photon_Bolt_NetworkValue__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Object___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Object___ctor, (Array_EmptyInternalEnumerator_1_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Object__Dispose, (Array_EmptyInternalEnumerator_1_Object_ * __this, MethodInfo * method)); @@ -139834,6 +154355,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Object__MoveNext, DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Object__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010C50A0, Object *, Array_EmptyInternalEnumerator_1_Object__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01427040, Object *, Array_EmptyInternalEnumerator_1_Object__get_Current, (Array_EmptyInternalEnumerator_1_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00E60, Array_EmptyInternalEnumerator_1_Object__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData_ * __this, MethodInfo * method)); @@ -139841,6 +154363,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Resour DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141D1A0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014270A0, ObjectInitializationData, Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00ED8, Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___ctor, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__Dispose, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); @@ -139848,6 +154371,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Opsive_UltimateCha DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01427100, ObjectSurface, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__get_Current, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00ED0, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Dissonance_Networking_Client_OpenChannel___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Dissonance_Networking_Client_OpenChannel___ctor, (Array_EmptyInternalEnumerator_1_Dissonance_Networking_Client_OpenChannel_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Dissonance_Networking_Client_OpenChannel__Dispose, (Array_EmptyInternalEnumerator_1_Dissonance_Networking_Client_OpenChannel_ * __this, MethodInfo * method)); @@ -139855,6 +154379,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Dissonance_Network DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Dissonance_Networking_Client_OpenChannel__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Dissonance_Networking_Client_OpenChannel_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_Dissonance_Networking_Client_OpenChannel__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Dissonance_Networking_Client_OpenChannel_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01427160, OpenChannel, Array_EmptyInternalEnumerator_1_Dissonance_Networking_Client_OpenChannel__get_Current, (Array_EmptyInternalEnumerator_1_Dissonance_Networking_Client_OpenChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00EC8, Array_EmptyInternalEnumerator_1_Dissonance_Networking_Client_OpenChannel__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___ctor, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__Dispose, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, MethodInfo * method)); @@ -139862,6 +154387,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Opsive_UltimateCha DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C530, Object *, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014271C0, OriginalMaterialValue, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__get_Current, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00EC0, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_Internal_PacketStats___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_Internal_PacketStats___ctor, (Array_EmptyInternalEnumerator_1_Photon_Bolt_Internal_PacketStats_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_Internal_PacketStats__Dispose, (Array_EmptyInternalEnumerator_1_Photon_Bolt_Internal_PacketStats_ * __this, MethodInfo * method)); @@ -139869,6 +154395,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Photon_Bolt_Intern DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_Internal_PacketStats__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Photon_Bolt_Internal_PacketStats_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141FA10, Object *, Array_EmptyInternalEnumerator_1_Photon_Bolt_Internal_PacketStats__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Photon_Bolt_Internal_PacketStats_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01427220, PacketStats, Array_EmptyInternalEnumerator_1_Photon_Bolt_Internal_PacketStats__get_Current, (Array_EmptyInternalEnumerator_1_Photon_Bolt_Internal_PacketStats_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00EB8, Array_EmptyInternalEnumerator_1_Photon_Bolt_Internal_PacketStats__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_PageInfo___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_PageInfo___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_PageInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_PageInfo__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_PageInfo_ * __this, MethodInfo * method)); @@ -139876,6 +154403,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_TextCo DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_PageInfo__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_PageInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C7D0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_PageInfo__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_PageInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01427280, PageInfo, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_PageInfo__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_PageInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00EB0, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_PageInfo__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Reflection_ParameterModifier___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Reflection_ParameterModifier___ctor, (Array_EmptyInternalEnumerator_1_System_Reflection_ParameterModifier_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Reflection_ParameterModifier__Dispose, (Array_EmptyInternalEnumerator_1_System_Reflection_ParameterModifier_ * __this, MethodInfo * method)); @@ -139883,6 +154411,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Reflection_ DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Reflection_ParameterModifier__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Reflection_ParameterModifier_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BC50, Object *, Array_EmptyInternalEnumerator_1_System_Reflection_ParameterModifier__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Reflection_ParameterModifier_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014272E0, ParameterModifier, Array_EmptyInternalEnumerator_1_System_Reflection_ParameterModifier__get_Current, (Array_EmptyInternalEnumerator_1_System_Reflection_ParameterModifier_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00EA8, Array_EmptyInternalEnumerator_1_System_Reflection_ParameterModifier__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_ParticleCollisionEvent___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_ParticleCollisionEvent___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_ParticleCollisionEvent_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_ParticleCollisionEvent__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_ParticleCollisionEvent_ * __this, MethodInfo * method)); @@ -139890,6 +154419,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Partic DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_ParticleCollisionEvent__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_ParticleCollisionEvent_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C530, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_ParticleCollisionEvent__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_ParticleCollisionEvent_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01427340, ParticleCollisionEvent, Array_EmptyInternalEnumerator_1_UnityEngine_ParticleCollisionEvent__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_ParticleCollisionEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00EA0, Array_EmptyInternalEnumerator_1_UnityEngine_ParticleCollisionEvent__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_PatchExtents___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_PatchExtents___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_PatchExtents_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_PatchExtents__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_PatchExtents_ * __this, MethodInfo * method)); @@ -139897,6 +154427,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_PatchE DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_PatchExtents__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_PatchExtents_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014247D0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_PatchExtents__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_PatchExtents_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014273A0, PatchExtents, Array_EmptyInternalEnumerator_1_UnityEngine_PatchExtents__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_PatchExtents_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00E18, Array_EmptyInternalEnumerator_1_UnityEngine_PatchExtents__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Rewired_PidVid___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_PidVid___ctor, (Array_EmptyInternalEnumerator_1_Rewired_PidVid_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_PidVid__Dispose, (Array_EmptyInternalEnumerator_1_Rewired_PidVid_ * __this, MethodInfo * method)); @@ -139904,6 +154435,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Rewired_PidVid__Mo DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_PidVid__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Rewired_PidVid_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01424950, Object *, Array_EmptyInternalEnumerator_1_Rewired_PidVid__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Rewired_PidVid_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01427400, PidVid, Array_EmptyInternalEnumerator_1_Rewired_PidVid__get_Current, (Array_EmptyInternalEnumerator_1_Rewired_PidVid_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00E10, Array_EmptyInternalEnumerator_1_Rewired_PidVid__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Plane___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Plane___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Plane_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Plane__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Plane_ * __this, MethodInfo * method)); @@ -139911,6 +154443,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Plane_ DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Plane__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Plane_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Plane__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Plane_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01427460, Plane, Array_EmptyInternalEnumerator_1_UnityEngine_Plane__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Plane_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00E08, Array_EmptyInternalEnumerator_1_UnityEngine_Plane__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Playables_Playable___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Playables_Playable___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Playables_Playable_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Playables_Playable__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Playables_Playable_ * __this, MethodInfo * method)); @@ -139918,6 +154451,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Playab DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Playables_Playable__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Playables_Playable_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Playables_Playable__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Playables_Playable_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014274C0, Playable, Array_EmptyInternalEnumerator_1_UnityEngine_Playables_Playable__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Playables_Playable_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00E00, Array_EmptyInternalEnumerator_1_UnityEngine_Playables_Playable__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Playables_PlayableBinding___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Playables_PlayableBinding___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Playables_PlayableBinding_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Playables_PlayableBinding__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Playables_PlayableBinding_ * __this, MethodInfo * method)); @@ -139925,6 +154459,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Playab DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Playables_PlayableBinding__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Playables_PlayableBinding_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Playables_PlayableBinding__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Playables_PlayableBinding_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01427520, PlayableBinding, Array_EmptyInternalEnumerator_1_UnityEngine_Playables_PlayableBinding__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Playables_PlayableBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00DF8, Array_EmptyInternalEnumerator_1_UnityEngine_Playables_PlayableBinding__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Dissonance_PlayerChannel___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Dissonance_PlayerChannel___ctor, (Array_EmptyInternalEnumerator_1_Dissonance_PlayerChannel_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Dissonance_PlayerChannel__Dispose, (Array_EmptyInternalEnumerator_1_Dissonance_PlayerChannel_ * __this, MethodInfo * method)); @@ -139932,6 +154467,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Dissonance_PlayerC DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Dissonance_PlayerChannel__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Dissonance_PlayerChannel_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_Dissonance_PlayerChannel__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Dissonance_PlayerChannel_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01427580, PlayerChannel, Array_EmptyInternalEnumerator_1_Dissonance_PlayerChannel__get_Current, (Array_EmptyInternalEnumerator_1_Dissonance_PlayerChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00DF0, Array_EmptyInternalEnumerator_1_Dissonance_PlayerChannel__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_PlayerFlashlightBeam___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_PlayerFlashlightBeam___ctor, (Array_EmptyInternalEnumerator_1_PlayerFlashlightBeam_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_PlayerFlashlightBeam__Dispose, (Array_EmptyInternalEnumerator_1_PlayerFlashlightBeam_ * __this, MethodInfo * method)); @@ -139939,6 +154475,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_PlayerFlashlightBe DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_PlayerFlashlightBeam__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_PlayerFlashlightBeam_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_PlayerFlashlightBeam__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_PlayerFlashlightBeam_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014275E0, PlayerFlashlightBeam, Array_EmptyInternalEnumerator_1_PlayerFlashlightBeam__get_Current, (Array_EmptyInternalEnumerator_1_PlayerFlashlightBeam_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00DE8, Array_EmptyInternalEnumerator_1_PlayerFlashlightBeam__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_LowLevel_PlayerLoopSystem___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_LowLevel_PlayerLoopSystem___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_LowLevel_PlayerLoopSystem_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_LowLevel_PlayerLoopSystem__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_LowLevel_PlayerLoopSystem_ * __this, MethodInfo * method)); @@ -139946,6 +154483,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_LowLev DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_LowLevel_PlayerLoopSystem__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_LowLevel_PlayerLoopSystem_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C530, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_LowLevel_PlayerLoopSystem__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_LowLevel_PlayerLoopSystem_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01427640, PlayerLoopSystem, Array_EmptyInternalEnumerator_1_UnityEngine_LowLevel_PlayerLoopSystem__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_LowLevel_PlayerLoopSystem_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00DE0, Array_EmptyInternalEnumerator_1_UnityEngine_LowLevel_PlayerLoopSystem__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_UI_PointerModel___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_UI_PointerModel___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_UI_PointerModel_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_UI_PointerModel__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_UI_PointerModel_ * __this, MethodInfo * method)); @@ -139953,6 +154491,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_InputS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_UI_PointerModel__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_UI_PointerModel_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01427700, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_UI_PointerModel__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_UI_PointerModel_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014276A0, PointerModel, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_UI_PointerModel__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_UI_PointerModel_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00E58, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_UI_PointerModel__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_PrefabId___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_PrefabId___ctor, (Array_EmptyInternalEnumerator_1_Photon_Bolt_PrefabId_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_PrefabId__Dispose, (Array_EmptyInternalEnumerator_1_Photon_Bolt_PrefabId_ * __this, MethodInfo * method)); @@ -139960,6 +154499,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Photon_Bolt_Prefab DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_PrefabId__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Photon_Bolt_PrefabId_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01424950, Object *, Array_EmptyInternalEnumerator_1_Photon_Bolt_PrefabId__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Photon_Bolt_PrefabId_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014277F0, PrefabId, Array_EmptyInternalEnumerator_1_Photon_Bolt_PrefabId__get_Current, (Array_EmptyInternalEnumerator_1_Photon_Bolt_PrefabId_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00E50, Array_EmptyInternalEnumerator_1_Photon_Bolt_PrefabId__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_Priority___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_Priority___ctor, (Array_EmptyInternalEnumerator_1_Photon_Bolt_Priority_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_Priority__Dispose, (Array_EmptyInternalEnumerator_1_Photon_Bolt_Priority_ * __this, MethodInfo * method)); @@ -139967,6 +154507,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Photon_Bolt_Priori DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_Priority__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Photon_Bolt_Priority_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141FA10, Object *, Array_EmptyInternalEnumerator_1_Photon_Bolt_Priority__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Photon_Bolt_Priority_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01427850, Priority, Array_EmptyInternalEnumerator_1_Photon_Bolt_Priority__get_Current, (Array_EmptyInternalEnumerator_1_Photon_Bolt_Priority_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00E48, Array_EmptyInternalEnumerator_1_Photon_Bolt_Priority__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ * __this, MethodInfo * method)); @@ -139974,6 +154515,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Experi DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014278B0, ProbeVolumeBakingProcessSettings, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00E40, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Pathfinding_Progress___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_Progress___ctor, (Array_EmptyInternalEnumerator_1_Pathfinding_Progress_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_Progress__Dispose, (Array_EmptyInternalEnumerator_1_Pathfinding_Progress_ * __this, MethodInfo * method)); @@ -139981,6 +154523,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Pathfinding_Progre DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_Progress__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Pathfinding_Progress_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_Pathfinding_Progress__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Pathfinding_Progress_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01427910, Progress, Array_EmptyInternalEnumerator_1_Pathfinding_Progress__get_Current, (Array_EmptyInternalEnumerator_1_Pathfinding_Progress_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00E38, Array_EmptyInternalEnumerator_1_Pathfinding_Progress__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Steamworks_PublishedFileId_t___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Steamworks_PublishedFileId_t___ctor, (Array_EmptyInternalEnumerator_1_Steamworks_PublishedFileId_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Steamworks_PublishedFileId_t__Dispose, (Array_EmptyInternalEnumerator_1_Steamworks_PublishedFileId_t_ * __this, MethodInfo * method)); @@ -139988,6 +154531,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Steamworks_Publish DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Steamworks_PublishedFileId_t__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Steamworks_PublishedFileId_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BC50, Object *, Array_EmptyInternalEnumerator_1_Steamworks_PublishedFileId_t__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Steamworks_PublishedFileId_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01427970, PublishedFileId_t, Array_EmptyInternalEnumerator_1_Steamworks_PublishedFileId_t__get_Current, (Array_EmptyInternalEnumerator_1_Steamworks_PublishedFileId_t_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00E30, Array_EmptyInternalEnumerator_1_Steamworks_PublishedFileId_t__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_QeeoSydAJKtvhuMHtIdMCGTRHBDhA___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_QeeoSydAJKtvhuMHtIdMCGTRHBDhA___ctor, (Array_EmptyInternalEnumerator_1_QeeoSydAJKtvhuMHtIdMCGTRHBDhA_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_QeeoSydAJKtvhuMHtIdMCGTRHBDhA__Dispose, (Array_EmptyInternalEnumerator_1_QeeoSydAJKtvhuMHtIdMCGTRHBDhA_ * __this, MethodInfo * method)); @@ -139995,6 +154539,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_QeeoSydAJKtvhuMHtI DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_QeeoSydAJKtvhuMHtIdMCGTRHBDhA__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_QeeoSydAJKtvhuMHtIdMCGTRHBDhA_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141FA10, Object *, Array_EmptyInternalEnumerator_1_QeeoSydAJKtvhuMHtIdMCGTRHBDhA__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_QeeoSydAJKtvhuMHtIdMCGTRHBDhA_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014279D0, QeeoSydAJKtvhuMHtIdMCGTRHBDhA, Array_EmptyInternalEnumerator_1_QeeoSydAJKtvhuMHtIdMCGTRHBDhA__get_Current, (Array_EmptyInternalEnumerator_1_QeeoSydAJKtvhuMHtIdMCGTRHBDhA_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00E28, Array_EmptyInternalEnumerator_1_QeeoSydAJKtvhuMHtIdMCGTRHBDhA__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Quaternion___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Quaternion___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Quaternion_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Quaternion__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Quaternion_ * __this, MethodInfo * method)); @@ -140002,6 +154547,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Quater DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Quaternion__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Quaternion_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Quaternion__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Quaternion_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01427A30, Quaternion, Array_EmptyInternalEnumerator_1_UnityEngine_Quaternion__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Quaternion_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00E20, Array_EmptyInternalEnumerator_1_UnityEngine_Quaternion__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Xml_Schema_RangePositionInfo___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Xml_Schema_RangePositionInfo___ctor, (Array_EmptyInternalEnumerator_1_System_Xml_Schema_RangePositionInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Xml_Schema_RangePositionInfo__Dispose, (Array_EmptyInternalEnumerator_1_System_Xml_Schema_RangePositionInfo_ * __this, MethodInfo * method)); @@ -140009,6 +154555,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Xml_Schema_ DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Xml_Schema_RangePositionInfo__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Xml_Schema_RangePositionInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Xml_Schema_RangePositionInfo__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Xml_Schema_RangePositionInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01427A90, RangePositionInfo, Array_EmptyInternalEnumerator_1_System_Xml_Schema_RangePositionInfo__get_Current, (Array_EmptyInternalEnumerator_1_System_Xml_Schema_RangePositionInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00D98, Array_EmptyInternalEnumerator_1_System_Xml_Schema_RangePositionInfo__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_RaycastHit___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_RaycastHit___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_RaycastHit_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_RaycastHit__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_RaycastHit_ * __this, MethodInfo * method)); @@ -140016,6 +154563,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Raycas DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_RaycastHit__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_RaycastHit_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014253F0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_RaycastHit__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_RaycastHit_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01427AF0, RaycastHit, Array_EmptyInternalEnumerator_1_UnityEngine_RaycastHit__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_RaycastHit_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00D90, Array_EmptyInternalEnumerator_1_UnityEngine_RaycastHit__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_RaycastHit2D___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_RaycastHit2D___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_RaycastHit2D_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_RaycastHit2D__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_RaycastHit2D_ * __this, MethodInfo * method)); @@ -140023,6 +154571,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Raycas DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_RaycastHit2D__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_RaycastHit2D_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C970, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_RaycastHit2D__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_RaycastHit2D_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01427B50, RaycastHit2D, Array_EmptyInternalEnumerator_1_UnityEngine_RaycastHit2D__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_RaycastHit2D_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00D88, Array_EmptyInternalEnumerator_1_UnityEngine_RaycastHit2D__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_EventSystems_RaycastResult___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_EventSystems_RaycastResult___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_EventSystems_RaycastResult_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_EventSystems_RaycastResult__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_EventSystems_RaycastResult_ * __this, MethodInfo * method)); @@ -140030,6 +154579,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_EventS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_EventSystems_RaycastResult__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_EventSystems_RaycastResult_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014211F0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_EventSystems_RaycastResult__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_EventSystems_RaycastResult_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01427BB0, RaycastResult, Array_EmptyInternalEnumerator_1_UnityEngine_EventSystems_RaycastResult__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_EventSystems_RaycastResult_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00D80, Array_EmptyInternalEnumerator_1_UnityEngine_EventSystems_RaycastResult__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rect___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rect___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Rect_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rect__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Rect_ * __this, MethodInfo * method)); @@ -140037,6 +154587,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Rect__ DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rect__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Rect_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Rect__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Rect_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01427C10, Rect, Array_EmptyInternalEnumerator_1_UnityEngine_Rect__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Rect_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00D78, Array_EmptyInternalEnumerator_1_UnityEngine_Rect__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_ReflectionProbeBlendInfo___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_ReflectionProbeBlendInfo___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_ReflectionProbeBlendInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_ReflectionProbeBlendInfo__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_ReflectionProbeBlendInfo_ * __this, MethodInfo * method)); @@ -140044,6 +154595,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Render DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_ReflectionProbeBlendInfo__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_ReflectionProbeBlendInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_ReflectionProbeBlendInfo__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_ReflectionProbeBlendInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01427C70, ReflectionProbeBlendInfo, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_ReflectionProbeBlendInfo__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_ReflectionProbeBlendInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00D70, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_ReflectionProbeBlendInfo__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Dissonance_RemoteChannel___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Dissonance_RemoteChannel___ctor, (Array_EmptyInternalEnumerator_1_Dissonance_RemoteChannel_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Dissonance_RemoteChannel__Dispose, (Array_EmptyInternalEnumerator_1_Dissonance_RemoteChannel_ * __this, MethodInfo * method)); @@ -140051,6 +154603,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Dissonance_RemoteC DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Dissonance_RemoteChannel__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Dissonance_RemoteChannel_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_Dissonance_RemoteChannel__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Dissonance_RemoteChannel_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01427CD0, RemoteChannel, Array_EmptyInternalEnumerator_1_Dissonance_RemoteChannel__get_Current, (Array_EmptyInternalEnumerator_1_Dissonance_RemoteChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00D68, Array_EmptyInternalEnumerator_1_Dissonance_RemoteChannel__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChainTextEntry___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChainTextEntry___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChainTextEntry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChainTextEntry__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChainTextEntry_ * __this, MethodInfo * method)); @@ -140058,6 +154611,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChainTextEntry__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChainTextEntry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChainTextEntry__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChainTextEntry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01427D30, RenderChainTextEntry, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChainTextEntry__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChainTextEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00D60, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChainTextEntry__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_RenderInstancedDataLayout___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_RenderInstancedDataLayout___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_RenderInstancedDataLayout_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_RenderInstancedDataLayout__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_RenderInstancedDataLayout_ * __this, MethodInfo * method)); @@ -140065,6 +154619,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Render DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_RenderInstancedDataLayout__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_RenderInstancedDataLayout_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_RenderInstancedDataLayout__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_RenderInstancedDataLayout_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01427D90, RenderInstancedDataLayout, Array_EmptyInternalEnumerator_1_UnityEngine_RenderInstancedDataLayout__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_RenderInstancedDataLayout_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00DD8, Array_EmptyInternalEnumerator_1_UnityEngine_RenderInstancedDataLayout__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_RenderTargetIdentifier___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_RenderTargetIdentifier___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_RenderTargetIdentifier_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_RenderTargetIdentifier__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_RenderTargetIdentifier_ * __this, MethodInfo * method)); @@ -140072,6 +154627,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Render DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_RenderTargetIdentifier__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_RenderTargetIdentifier_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C530, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_RenderTargetIdentifier__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_RenderTargetIdentifier_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01427DF0, RenderTargetIdentifier, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_RenderTargetIdentifier__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_RenderTargetIdentifier_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00DD0, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_RenderTargetIdentifier__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_RendererUtils_RendererList___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_RendererUtils_RendererList___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_RendererUtils_RendererList_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_RendererUtils_RendererList__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_RendererUtils_RendererList_ * __this, MethodInfo * method)); @@ -140079,6 +154635,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Render DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_RendererUtils_RendererList__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_RendererUtils_RendererList_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_RendererUtils_RendererList__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_RendererUtils_RendererList_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01427E50, RendererList, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_RendererUtils_RendererList__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_RendererUtils_RendererList_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00DC8, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_RendererUtils_RendererList__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle_ * __this, MethodInfo * method)); @@ -140086,6 +154643,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Experi DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BC50, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01427EB0, RendererListHandle, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00DC0, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource_ * __this, MethodInfo * method)); @@ -140093,6 +154651,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Experi DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01427F70, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01427F10, RendererListResource, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00DB8, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Resolution___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Resolution___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Resolution_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Resolution__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Resolution_ * __this, MethodInfo * method)); @@ -140100,6 +154659,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Resolu DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Resolution__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Resolution_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141FA10, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Resolution__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Resolution_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01428070, Resolution, Array_EmptyInternalEnumerator_1_UnityEngine_Resolution__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Resolution_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00DB0, Array_EmptyInternalEnumerator_1_UnityEngine_Resolution__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle_ * __this, MethodInfo * method)); @@ -140107,6 +154667,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Experi DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BC50, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014280D0, ResourceHandle, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00DA8, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Resources_ResourceLocator___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Resources_ResourceLocator___ctor, (Array_EmptyInternalEnumerator_1_System_Resources_ResourceLocator_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Resources_ResourceLocator__Dispose, (Array_EmptyInternalEnumerator_1_System_Resources_ResourceLocator_ * __this, MethodInfo * method)); @@ -140114,6 +154675,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Resources_R DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Resources_ResourceLocator__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Resources_ResourceLocator_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Resources_ResourceLocator__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Resources_ResourceLocator_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01428130, ResourceLocator, Array_EmptyInternalEnumerator_1_System_Resources_ResourceLocator__get_Current, (Array_EmptyInternalEnumerator_1_System_Resources_ResourceLocator_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00DA0, Array_EmptyInternalEnumerator_1_System_Resources_ResourceLocator__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_TMPro_RichTextTagAttribute___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_RichTextTagAttribute___ctor, (Array_EmptyInternalEnumerator_1_TMPro_RichTextTagAttribute_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_RichTextTagAttribute__Dispose, (Array_EmptyInternalEnumerator_1_TMPro_RichTextTagAttribute_ * __this, MethodInfo * method)); @@ -140121,6 +154683,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_TMPro_RichTextTagA DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_RichTextTagAttribute__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_TMPro_RichTextTagAttribute_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_TMPro_RichTextTagAttribute__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_TMPro_RichTextTagAttribute_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01428190, RichTextTagAttribute, Array_EmptyInternalEnumerator_1_TMPro_RichTextTagAttribute__get_Current, (Array_EmptyInternalEnumerator_1_TMPro_RichTextTagAttribute_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00D18, Array_EmptyInternalEnumerator_1_TMPro_RichTextTagAttribute__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_RichTextTagAttribute___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_RichTextTagAttribute___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_RichTextTagAttribute_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_RichTextTagAttribute__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_RichTextTagAttribute_ * __this, MethodInfo * method)); @@ -140128,6 +154691,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_TextCo DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_RichTextTagAttribute__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_RichTextTagAttribute_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C7D0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_RichTextTagAttribute__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_RichTextTagAttribute_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014281F0, RichTextTagAttribute_1, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_RichTextTagAttribute__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_RichTextTagAttribute_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00D10, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_RichTextTagAttribute__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Dissonance_RoomChannel___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Dissonance_RoomChannel___ctor, (Array_EmptyInternalEnumerator_1_Dissonance_RoomChannel_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Dissonance_RoomChannel__Dispose, (Array_EmptyInternalEnumerator_1_Dissonance_RoomChannel_ * __this, MethodInfo * method)); @@ -140135,6 +154699,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Dissonance_RoomCha DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Dissonance_RoomChannel__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Dissonance_RoomChannel_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C530, Object *, Array_EmptyInternalEnumerator_1_Dissonance_RoomChannel__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Dissonance_RoomChannel_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01428250, RoomChannel, Array_EmptyInternalEnumerator_1_Dissonance_RoomChannel__get_Current, (Array_EmptyInternalEnumerator_1_Dissonance_RoomChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00D08, Array_EmptyInternalEnumerator_1_Dissonance_RoomChannel__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Dissonance_RoomMembership___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Dissonance_RoomMembership___ctor, (Array_EmptyInternalEnumerator_1_Dissonance_RoomMembership_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Dissonance_RoomMembership__Dispose, (Array_EmptyInternalEnumerator_1_Dissonance_RoomMembership_ * __this, MethodInfo * method)); @@ -140142,6 +154707,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Dissonance_RoomMem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Dissonance_RoomMembership__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Dissonance_RoomMembership_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_Dissonance_RoomMembership__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Dissonance_RoomMembership_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014282B0, RoomMembership, Array_EmptyInternalEnumerator_1_Dissonance_RoomMembership__get_Current, (Array_EmptyInternalEnumerator_1_Dissonance_RoomMembership_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00D00, Array_EmptyInternalEnumerator_1_Dissonance_RoomMembership__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Dissonance_RoomName___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Dissonance_RoomName___ctor, (Array_EmptyInternalEnumerator_1_Dissonance_RoomName_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Dissonance_RoomName__Dispose, (Array_EmptyInternalEnumerator_1_Dissonance_RoomName_ * __this, MethodInfo * method)); @@ -140149,6 +154715,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Dissonance_RoomNam DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Dissonance_RoomName__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Dissonance_RoomName_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_Dissonance_RoomName__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Dissonance_RoomName_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01428310, RoomName, Array_EmptyInternalEnumerator_1_Dissonance_RoomName__get_Current, (Array_EmptyInternalEnumerator_1_Dissonance_RoomName_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00CF8, Array_EmptyInternalEnumerator_1_Dissonance_RoomName__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Rotate___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Rotate___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Rotate_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Rotate__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Rotate_ * __this, MethodInfo * method)); @@ -140156,6 +154723,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Rotate__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Rotate_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Rotate__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Rotate_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01428370, Rotate_1, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Rotate__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Rotate_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00CF0, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Rotate__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_RuleMatcher___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_RuleMatcher___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_RuleMatcher_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_RuleMatcher__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_RuleMatcher_ * __this, MethodInfo * method)); @@ -140163,6 +154731,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_RuleMatcher__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_RuleMatcher_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_RuleMatcher__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_RuleMatcher_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014283D0, RuleMatcher, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_RuleMatcher__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_RuleMatcher_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00CE8, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_RuleMatcher__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Linq_Expressions_Interpreter_RuntimeLabel___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Linq_Expressions_Interpreter_RuntimeLabel___ctor, (Array_EmptyInternalEnumerator_1_System_Linq_Expressions_Interpreter_RuntimeLabel_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Linq_Expressions_Interpreter_RuntimeLabel__Dispose, (Array_EmptyInternalEnumerator_1_System_Linq_Expressions_Interpreter_RuntimeLabel_ * __this, MethodInfo * method)); @@ -140170,6 +154739,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Linq_Expres DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Linq_Expressions_Interpreter_RuntimeLabel__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Linq_Expressions_Interpreter_RuntimeLabel_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141FA10, Object *, Array_EmptyInternalEnumerator_1_System_Linq_Expressions_Interpreter_RuntimeLabel__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Linq_Expressions_Interpreter_RuntimeLabel_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01428430, RuntimeLabel, Array_EmptyInternalEnumerator_1_System_Linq_Expressions_Interpreter_RuntimeLabel__get_Current, (Array_EmptyInternalEnumerator_1_System_Linq_Expressions_Interpreter_RuntimeLabel_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00CE0, Array_EmptyInternalEnumerator_1_System_Linq_Expressions_Interpreter_RuntimeLabel__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_SByte___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_SByte___ctor, (Array_EmptyInternalEnumerator_1_SByte_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_SByte__Dispose, (Array_EmptyInternalEnumerator_1_SByte_ * __this, MethodInfo * method)); @@ -140177,6 +154747,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_SByte__MoveNext, ( DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_SByte__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_SByte_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BD20, Object *, Array_EmptyInternalEnumerator_1_SByte__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_SByte_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01428490, int8_t, Array_EmptyInternalEnumerator_1_SByte__get_Current, (Array_EmptyInternalEnumerator_1_SByte_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00D58, Array_EmptyInternalEnumerator_1_SByte__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_SByteEnum___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_SByteEnum___ctor, (Array_EmptyInternalEnumerator_1_SByteEnum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_SByteEnum__Dispose, (Array_EmptyInternalEnumerator_1_SByteEnum_ * __this, MethodInfo * method)); @@ -140184,6 +154755,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_SByteEnum__MoveNex DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_SByteEnum__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_SByteEnum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BD20, Object *, Array_EmptyInternalEnumerator_1_SByteEnum__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_SByteEnum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014284F0, SByteEnum__Enum, Array_EmptyInternalEnumerator_1_SByteEnum__get_Current, (Array_EmptyInternalEnumerator_1_SByteEnum_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00D50, Array_EmptyInternalEnumerator_1_SByteEnum__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Runtime_InteropServices_ComTypes_STATDATA___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Runtime_InteropServices_ComTypes_STATDATA___ctor, (Array_EmptyInternalEnumerator_1_System_Runtime_InteropServices_ComTypes_STATDATA_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Runtime_InteropServices_ComTypes_STATDATA__Dispose, (Array_EmptyInternalEnumerator_1_System_Runtime_InteropServices_ComTypes_STATDATA_ * __this, MethodInfo * method)); @@ -140191,6 +154763,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Runtime_Int DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Runtime_InteropServices_ComTypes_STATDATA__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Runtime_InteropServices_ComTypes_STATDATA_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141DC50, Object *, Array_EmptyInternalEnumerator_1_System_Runtime_InteropServices_ComTypes_STATDATA__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Runtime_InteropServices_ComTypes_STATDATA_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01428550, STATDATA, Array_EmptyInternalEnumerator_1_System_Runtime_InteropServices_ComTypes_STATDATA__get_Current, (Array_EmptyInternalEnumerator_1_System_Runtime_InteropServices_ComTypes_STATDATA_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00D48, Array_EmptyInternalEnumerator_1_System_Runtime_InteropServices_ComTypes_STATDATA__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_ScalableImage___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_ScalableImage___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_ScalableImage_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_ScalableImage__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_ScalableImage_ * __this, MethodInfo * method)); @@ -140198,6 +154771,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_ScalableImage__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_ScalableImage_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_ScalableImage__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_ScalableImage_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014285B0, ScalableImage, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_ScalableImage__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_ScalableImage_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00D40, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_ScalableImage__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Scale___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Scale___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Scale_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Scale__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Scale_ * __this, MethodInfo * method)); @@ -140205,6 +154779,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Scale__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Scale_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Scale__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Scale_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01428610, Scale, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Scale__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Scale_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00D38, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Scale__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * __this, MethodInfo * method)); @@ -140212,6 +154787,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01428670, SelectorMatchRecord, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00D30, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Windows_Speech_SemanticMeaning___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Windows_Speech_SemanticMeaning___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Windows_Speech_SemanticMeaning_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Windows_Speech_SemanticMeaning__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Windows_Speech_SemanticMeaning_ * __this, MethodInfo * method)); @@ -140219,6 +154795,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Window DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Windows_Speech_SemanticMeaning__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Windows_Speech_SemanticMeaning_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Windows_Speech_SemanticMeaning__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Windows_Speech_SemanticMeaning_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014286D0, SemanticMeaning, Array_EmptyInternalEnumerator_1_UnityEngine_Windows_Speech_SemanticMeaning__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Windows_Speech_SemanticMeaning_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00D28, Array_EmptyInternalEnumerator_1_UnityEngine_Windows_Speech_SemanticMeaning__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_Util_SerializedType___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_Util_SerializedType___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_Util_SerializedType_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_Util_SerializedType__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_Util_SerializedType_ * __this, MethodInfo * method)); @@ -140226,6 +154803,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Resour DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_Util_SerializedType__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_Util_SerializedType_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_Util_SerializedType__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_Util_SerializedType_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01428730, SerializedType, Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_Util_SerializedType__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_Util_SerializedType_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00D20, Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_Util_SerializedType__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_SessionClient___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_SessionClient___ctor, (Array_EmptyInternalEnumerator_1_SessionClient_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_SessionClient__Dispose, (Array_EmptyInternalEnumerator_1_SessionClient_ * __this, MethodInfo * method)); @@ -140233,6 +154811,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_SessionClient__Mov DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_SessionClient__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_SessionClient_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141DC50, Object *, Array_EmptyInternalEnumerator_1_SessionClient__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_SessionClient_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01428790, SessionClient, Array_EmptyInternalEnumerator_1_SessionClient__get_Current, (Array_EmptyInternalEnumerator_1_SessionClient_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00C98, Array_EmptyInternalEnumerator_1_SessionClient__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_ShaderKeyword___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_ShaderKeyword___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_ShaderKeyword_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_ShaderKeyword__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_ShaderKeyword_ * __this, MethodInfo * method)); @@ -140240,6 +154819,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Render DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_ShaderKeyword__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_ShaderKeyword_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_ShaderKeyword__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_ShaderKeyword_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014287F0, ShaderKeyword, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_ShaderKeyword__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_ShaderKeyword_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00C90, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_ShaderKeyword__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_ShaderTagId___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_ShaderTagId___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_ShaderTagId_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_ShaderTagId__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_ShaderTagId_ * __this, MethodInfo * method)); @@ -140247,6 +154827,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Render DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_ShaderTagId__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_ShaderTagId_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01424950, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_ShaderTagId__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_ShaderTagId_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01428850, ShaderTagId, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_ShaderTagId__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_ShaderTagId_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00C88, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_ShaderTagId__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_ShaderVariablesProbeVolumes___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_ShaderVariablesProbeVolumes___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_ShaderVariablesProbeVolumes_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_ShaderVariablesProbeVolumes__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_ShaderVariablesProbeVolumes_ * __this, MethodInfo * method)); @@ -140254,6 +154835,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Render DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_ShaderVariablesProbeVolumes__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_ShaderVariablesProbeVolumes_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141CB70, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_ShaderVariablesProbeVolumes__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_ShaderVariablesProbeVolumes_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014288B0, ShaderVariablesProbeVolumes, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_ShaderVariablesProbeVolumes__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_ShaderVariablesProbeVolumes_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00C80, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_ShaderVariablesProbeVolumes__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Single___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Single___ctor, (Array_EmptyInternalEnumerator_1_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Single__Dispose, (Array_EmptyInternalEnumerator_1_Single_ * __this, MethodInfo * method)); @@ -140261,6 +154843,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Single__MoveNext, DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Single__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01428970, Object *, Array_EmptyInternalEnumerator_1_Single__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01428910, float, Array_EmptyInternalEnumerator_1_Single__get_Current, (Array_EmptyInternalEnumerator_1_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00C78, Array_EmptyInternalEnumerator_1_Single__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_SkeletonBone___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_SkeletonBone___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_SkeletonBone_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_SkeletonBone__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_SkeletonBone_ * __this, MethodInfo * method)); @@ -140268,6 +154851,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Skelet DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_SkeletonBone__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_SkeletonBone_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141DC50, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_SkeletonBone__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_SkeletonBone_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014289E0, SkeletonBone, Array_EmptyInternalEnumerator_1_UnityEngine_SkeletonBone__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_SkeletonBone_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00C70, Array_EmptyInternalEnumerator_1_UnityEngine_SkeletonBone__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Discord_Sku___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Discord_Sku___ctor, (Array_EmptyInternalEnumerator_1_Discord_Sku_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Discord_Sku__Dispose, (Array_EmptyInternalEnumerator_1_Discord_Sku_ * __this, MethodInfo * method)); @@ -140275,6 +154859,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Discord_Sku__MoveN DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Discord_Sku__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Discord_Sku_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C530, Object *, Array_EmptyInternalEnumerator_1_Discord_Sku__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Discord_Sku_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01428A40, Sku, Array_EmptyInternalEnumerator_1_Discord_Sku__get_Current, (Array_EmptyInternalEnumerator_1_Discord_Sku_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00C68, Array_EmptyInternalEnumerator_1_Discord_Sku__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Dissonance_Audio_Playback_SpeechSession___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Dissonance_Audio_Playback_SpeechSession___ctor, (Array_EmptyInternalEnumerator_1_Dissonance_Audio_Playback_SpeechSession_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Dissonance_Audio_Playback_SpeechSession__Dispose, (Array_EmptyInternalEnumerator_1_Dissonance_Audio_Playback_SpeechSession_ * __this, MethodInfo * method)); @@ -140282,6 +154867,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Dissonance_Audio_P DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Dissonance_Audio_Playback_SpeechSession__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Dissonance_Audio_Playback_SpeechSession_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141DC50, Object *, Array_EmptyInternalEnumerator_1_Dissonance_Audio_Playback_SpeechSession__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Dissonance_Audio_Playback_SpeechSession_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01428AA0, SpeechSession, Array_EmptyInternalEnumerator_1_Dissonance_Audio_Playback_SpeechSession__get_Current, (Array_EmptyInternalEnumerator_1_Dissonance_Audio_Playback_SpeechSession_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00C60, Array_EmptyInternalEnumerator_1_Dissonance_Audio_Playback_SpeechSession__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_SphericalHarmonicsL2___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_SphericalHarmonicsL2___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_SphericalHarmonicsL2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_SphericalHarmonicsL2__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_SphericalHarmonicsL2_ * __this, MethodInfo * method)); @@ -140289,6 +154875,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Render DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_SphericalHarmonicsL2__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_SphericalHarmonicsL2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01428B60, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_SphericalHarmonicsL2__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_SphericalHarmonicsL2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01428B00, SphericalHarmonicsL2, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_SphericalHarmonicsL2__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_SphericalHarmonicsL2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00CD8, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_SphericalHarmonicsL2__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UI_SpriteState___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UI_SpriteState___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UI_SpriteState_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UI_SpriteState__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UI_SpriteState_ * __this, MethodInfo * method)); @@ -140296,6 +154883,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UI_Spr DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UI_SpriteState__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UI_SpriteState_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UI_SpriteState__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UI_SpriteState_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01428C20, SpriteState, Array_EmptyInternalEnumerator_1_UnityEngine_UI_SpriteState__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UI_SpriteState_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00CD0, Array_EmptyInternalEnumerator_1_UnityEngine_UI_SpriteState__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Net_Security_SslApplicationProtocol___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Net_Security_SslApplicationProtocol___ctor, (Array_EmptyInternalEnumerator_1_System_Net_Security_SslApplicationProtocol_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Net_Security_SslApplicationProtocol__Dispose, (Array_EmptyInternalEnumerator_1_System_Net_Security_SslApplicationProtocol_ * __this, MethodInfo * method)); @@ -140303,6 +154891,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Net_Securit DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Net_Security_SslApplicationProtocol__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Net_Security_SslApplicationProtocol_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Net_Security_SslApplicationProtocol__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Net_Security_SslApplicationProtocol_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01428C80, SslApplicationProtocol, Array_EmptyInternalEnumerator_1_System_Net_Security_SslApplicationProtocol__get_Current, (Array_EmptyInternalEnumerator_1_System_Net_Security_SslApplicationProtocol_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00CC8, Array_EmptyInternalEnumerator_1_System_Net_Security_SslApplicationProtocol__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Steamworks_SteamItemDef_t___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Steamworks_SteamItemDef_t___ctor, (Array_EmptyInternalEnumerator_1_Steamworks_SteamItemDef_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Steamworks_SteamItemDef_t__Dispose, (Array_EmptyInternalEnumerator_1_Steamworks_SteamItemDef_t_ * __this, MethodInfo * method)); @@ -140310,6 +154899,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Steamworks_SteamIt DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Steamworks_SteamItemDef_t__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Steamworks_SteamItemDef_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01424950, Object *, Array_EmptyInternalEnumerator_1_Steamworks_SteamItemDef_t__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Steamworks_SteamItemDef_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01428CE0, SteamItemDef_t, Array_EmptyInternalEnumerator_1_Steamworks_SteamItemDef_t__get_Current, (Array_EmptyInternalEnumerator_1_Steamworks_SteamItemDef_t_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00CC0, Array_EmptyInternalEnumerator_1_Steamworks_SteamItemDef_t__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Steamworks_SteamItemDetails_t___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Steamworks_SteamItemDetails_t___ctor, (Array_EmptyInternalEnumerator_1_Steamworks_SteamItemDetails_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Steamworks_SteamItemDetails_t__Dispose, (Array_EmptyInternalEnumerator_1_Steamworks_SteamItemDetails_t_ * __this, MethodInfo * method)); @@ -140317,6 +154907,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Steamworks_SteamIt DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Steamworks_SteamItemDetails_t__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Steamworks_SteamItemDetails_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_Steamworks_SteamItemDetails_t__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Steamworks_SteamItemDetails_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01428D40, SteamItemDetails_t, Array_EmptyInternalEnumerator_1_Steamworks_SteamItemDetails_t__get_Current, (Array_EmptyInternalEnumerator_1_Steamworks_SteamItemDetails_t_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00CB8, Array_EmptyInternalEnumerator_1_Steamworks_SteamItemDetails_t__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyName___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyName___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyName_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyName__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyName_ * __this, MethodInfo * method)); @@ -140324,6 +154915,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyName__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyName_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyName__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyName_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01428DA0, StylePropertyName, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyName__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyName_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00CB0, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyName__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, MethodInfo * method)); @@ -140331,6 +154923,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01428E00, StylePropertyValue, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00CA8, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSelectorPart___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSelectorPart___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSelectorPart_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSelectorPart__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSelectorPart_ * __this, MethodInfo * method)); @@ -140338,6 +154931,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSelectorPart__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSelectorPart_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSelectorPart__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSelectorPart_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01428E60, StyleSelectorPart, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSelectorPart__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSelectorPart_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00CA0, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSelectorPart__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ * __this, MethodInfo * method)); @@ -140345,6 +154939,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01428EC0, StyleSyntaxToken, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00C18, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValue___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValue___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValue__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * __this, MethodInfo * method)); @@ -140352,6 +154947,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValue__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValue__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01428F20, StyleValue, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValue__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00C10, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValue__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleValueHandle___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleValueHandle___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleValueHandle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleValueHandle__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleValueHandle_ * __this, MethodInfo * method)); @@ -140359,6 +154955,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleValueHandle__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleValueHandle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BC50, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleValueHandle__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleValueHandle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01428F80, StyleValueHandle, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleValueHandle__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleValueHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00C08, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleValueHandle__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged_ * __this, MethodInfo * method)); @@ -140366,6 +154963,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01428FE0, StyleValueManaged, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00C00, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleVariable___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleVariable___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleVariable_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleVariable__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleVariable_ * __this, MethodInfo * method)); @@ -140373,6 +154971,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleVariable__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleVariable_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleVariable__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleVariable_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01429040, StyleVariable, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleVariable__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleVariable_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00BF8, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleVariable__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_SubMeshDescriptor___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_SubMeshDescriptor___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_SubMeshDescriptor_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_SubMeshDescriptor__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_SubMeshDescriptor_ * __this, MethodInfo * method)); @@ -140380,6 +154979,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Render DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_SubMeshDescriptor__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_SubMeshDescriptor_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141D1A0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_SubMeshDescriptor__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_SubMeshDescriptor_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014290A0, SubMeshDescriptor, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_SubMeshDescriptor__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_SubMeshDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00BF0, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_SubMeshDescriptor__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_Substring___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_Substring___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_Substring_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_Substring__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_Substring_ * __this, MethodInfo * method)); @@ -140387,6 +154987,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_InputS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_Substring__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_Substring_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_Substring__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_Substring_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01429100, Substring, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_Substring__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_Substring_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00BE8, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_Substring__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_CharacterInfo___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_CharacterInfo___ctor, (Array_EmptyInternalEnumerator_1_TMPro_TMP_CharacterInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_CharacterInfo__Dispose, (Array_EmptyInternalEnumerator_1_TMPro_TMP_CharacterInfo_ * __this, MethodInfo * method)); @@ -140394,6 +154995,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_TMPro_TMP_Characte DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_CharacterInfo__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_TMPro_TMP_CharacterInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014291C0, Object *, Array_EmptyInternalEnumerator_1_TMPro_TMP_CharacterInfo__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_TMPro_TMP_CharacterInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01429160, TMP_CharacterInfo, Array_EmptyInternalEnumerator_1_TMPro_TMP_CharacterInfo__get_Current, (Array_EmptyInternalEnumerator_1_TMPro_TMP_CharacterInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00BE0, Array_EmptyInternalEnumerator_1_TMPro_TMP_CharacterInfo__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_FontWeightPair___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_FontWeightPair___ctor, (Array_EmptyInternalEnumerator_1_TMPro_TMP_FontWeightPair_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_FontWeightPair__Dispose, (Array_EmptyInternalEnumerator_1_TMPro_TMP_FontWeightPair_ * __this, MethodInfo * method)); @@ -140401,6 +155003,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_TMPro_TMP_FontWeig DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_FontWeightPair__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_TMPro_TMP_FontWeightPair_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_TMPro_TMP_FontWeightPair__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_TMPro_TMP_FontWeightPair_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014292E0, TMP_FontWeightPair, Array_EmptyInternalEnumerator_1_TMPro_TMP_FontWeightPair__get_Current, (Array_EmptyInternalEnumerator_1_TMPro_TMP_FontWeightPair_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00C58, Array_EmptyInternalEnumerator_1_TMPro_TMP_FontWeightPair__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_LineInfo___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_LineInfo___ctor, (Array_EmptyInternalEnumerator_1_TMPro_TMP_LineInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_LineInfo__Dispose, (Array_EmptyInternalEnumerator_1_TMPro_TMP_LineInfo_ * __this, MethodInfo * method)); @@ -140408,6 +155011,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_TMPro_TMP_LineInfo DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_LineInfo__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_TMPro_TMP_LineInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014293A0, Object *, Array_EmptyInternalEnumerator_1_TMPro_TMP_LineInfo__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_TMPro_TMP_LineInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01429340, TMP_LineInfo, Array_EmptyInternalEnumerator_1_TMPro_TMP_LineInfo__get_Current, (Array_EmptyInternalEnumerator_1_TMPro_TMP_LineInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00C50, Array_EmptyInternalEnumerator_1_TMPro_TMP_LineInfo__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_LinkInfo___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_LinkInfo___ctor, (Array_EmptyInternalEnumerator_1_TMPro_TMP_LinkInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_LinkInfo__Dispose, (Array_EmptyInternalEnumerator_1_TMPro_TMP_LinkInfo_ * __this, MethodInfo * method)); @@ -140415,6 +155019,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_TMPro_TMP_LinkInfo DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_LinkInfo__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_TMPro_TMP_LinkInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C530, Object *, Array_EmptyInternalEnumerator_1_TMPro_TMP_LinkInfo__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_TMPro_TMP_LinkInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01429450, TMP_LinkInfo, Array_EmptyInternalEnumerator_1_TMPro_TMP_LinkInfo__get_Current, (Array_EmptyInternalEnumerator_1_TMPro_TMP_LinkInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00C48, Array_EmptyInternalEnumerator_1_TMPro_TMP_LinkInfo__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_MeshInfo___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_MeshInfo___ctor, (Array_EmptyInternalEnumerator_1_TMPro_TMP_MeshInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_MeshInfo__Dispose, (Array_EmptyInternalEnumerator_1_TMPro_TMP_MeshInfo_ * __this, MethodInfo * method)); @@ -140422,6 +155027,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_TMPro_TMP_MeshInfo DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_MeshInfo__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_TMPro_TMP_MeshInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014211F0, Object *, Array_EmptyInternalEnumerator_1_TMPro_TMP_MeshInfo__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_TMPro_TMP_MeshInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014294B0, TMP_MeshInfo, Array_EmptyInternalEnumerator_1_TMPro_TMP_MeshInfo__get_Current, (Array_EmptyInternalEnumerator_1_TMPro_TMP_MeshInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00C40, Array_EmptyInternalEnumerator_1_TMPro_TMP_MeshInfo__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_PageInfo___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_PageInfo___ctor, (Array_EmptyInternalEnumerator_1_TMPro_TMP_PageInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_PageInfo__Dispose, (Array_EmptyInternalEnumerator_1_TMPro_TMP_PageInfo_ * __this, MethodInfo * method)); @@ -140429,6 +155035,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_TMPro_TMP_PageInfo DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_PageInfo__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_TMPro_TMP_PageInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C7D0, Object *, Array_EmptyInternalEnumerator_1_TMPro_TMP_PageInfo__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_TMPro_TMP_PageInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01429510, TMP_PageInfo, Array_EmptyInternalEnumerator_1_TMPro_TMP_PageInfo__get_Current, (Array_EmptyInternalEnumerator_1_TMPro_TMP_PageInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00C38, Array_EmptyInternalEnumerator_1_TMPro_TMP_PageInfo__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_WordInfo___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_WordInfo___ctor, (Array_EmptyInternalEnumerator_1_TMPro_TMP_WordInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_WordInfo__Dispose, (Array_EmptyInternalEnumerator_1_TMPro_TMP_WordInfo_ * __this, MethodInfo * method)); @@ -140436,6 +155043,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_TMPro_TMP_WordInfo DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_WordInfo__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_TMPro_TMP_WordInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_TMPro_TMP_WordInfo__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_TMPro_TMP_WordInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01429570, TMP_WordInfo, Array_EmptyInternalEnumerator_1_TMPro_TMP_WordInfo__get_Current, (Array_EmptyInternalEnumerator_1_TMPro_TMP_WordInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00C30, Array_EmptyInternalEnumerator_1_TMPro_TMP_WordInfo__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_TerrainUtils_TerrainTileCoord___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_TerrainUtils_TerrainTileCoord___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_TerrainUtils_TerrainTileCoord_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_TerrainUtils_TerrainTileCoord__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_TerrainUtils_TerrainTileCoord_ * __this, MethodInfo * method)); @@ -140443,6 +155051,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Terrai DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_TerrainUtils_TerrainTileCoord__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_TerrainUtils_TerrainTileCoord_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BC50, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_TerrainUtils_TerrainTileCoord__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_TerrainUtils_TerrainTileCoord_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014295D0, TerrainTileCoord, Array_EmptyInternalEnumerator_1_UnityEngine_TerrainUtils_TerrainTileCoord__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_TerrainUtils_TerrainTileCoord_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00C28, Array_EmptyInternalEnumerator_1_UnityEngine_TerrainUtils_TerrainTileCoord__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_TextElementInfo___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_TextElementInfo___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_TextElementInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_TextElementInfo__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_TextElementInfo_ * __this, MethodInfo * method)); @@ -140450,6 +155059,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_TextCo DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_TextElementInfo__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_TextElementInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01429690, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_TextElementInfo__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_TextElementInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01429630, TextElementInfo, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_TextElementInfo__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_TextElementInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00C20, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_TextElementInfo__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TextShadow___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TextShadow___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TextShadow_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TextShadow__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TextShadow_ * __this, MethodInfo * method)); @@ -140457,6 +155067,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TextShadow__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TextShadow_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C680, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TextShadow__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TextShadow_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014297A0, TextShadow, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TextShadow__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TextShadow_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00B98, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TextShadow__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TextVertex___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TextVertex___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TextVertex_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TextVertex__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TextVertex_ * __this, MethodInfo * method)); @@ -140464,6 +155075,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TextVertex__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TextVertex_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TextVertex__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TextVertex_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01429800, TextVertex_1, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TextVertex__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TextVertex_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00B90, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TextVertex__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_TextureHandle___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_TextureHandle___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_TextureHandle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_TextureHandle__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_TextureHandle_ * __this, MethodInfo * method)); @@ -140471,6 +155083,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Experi DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_TextureHandle__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_TextureHandle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_TextureHandle__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_TextureHandle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01429860, TextureHandle, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_TextureHandle__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_TextureHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00B88, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_TextureHandle__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TextureId___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TextureId___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TextureId_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TextureId__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TextureId_ * __this, MethodInfo * method)); @@ -140478,6 +155091,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TextureId__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TextureId_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01424950, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TextureId__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TextureId_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014298C0, TextureId, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TextureId__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TextureId_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00B80, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TextureId__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Tilemaps_TileData___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Tilemaps_TileData___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Tilemaps_TileData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Tilemaps_TileData__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Tilemaps_TileData_ * __this, MethodInfo * method)); @@ -140485,6 +155099,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Tilema DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Tilemaps_TileData__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Tilemaps_TileData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01420390, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Tilemaps_TileData__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Tilemaps_TileData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01429920, TileData, Array_EmptyInternalEnumerator_1_UnityEngine_Tilemaps_TileData__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Tilemaps_TileData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00B78, Array_EmptyInternalEnumerator_1_UnityEngine_Tilemaps_TileData__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_TimeSpan___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TimeSpan___ctor, (Array_EmptyInternalEnumerator_1_TimeSpan_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TimeSpan__Dispose, (Array_EmptyInternalEnumerator_1_TimeSpan_ * __this, MethodInfo * method)); @@ -140492,6 +155107,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_TimeSpan__MoveNext DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TimeSpan__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_TimeSpan_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BC50, Object *, Array_EmptyInternalEnumerator_1_TimeSpan__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_TimeSpan_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01429980, TimeSpan, Array_EmptyInternalEnumerator_1_TimeSpan__get_Current, (Array_EmptyInternalEnumerator_1_TimeSpan_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00B70, Array_EmptyInternalEnumerator_1_TimeSpan__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TimeValue___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TimeValue___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TimeValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TimeValue__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TimeValue_ * __this, MethodInfo * method)); @@ -140499,6 +155115,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TimeValue__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TimeValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BC50, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TimeValue__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TimeValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014299E0, TimeValue, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TimeValue__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TimeValue_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00B68, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TimeValue__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Touch___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Touch___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Touch_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Touch__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Touch_ * __this, MethodInfo * method)); @@ -140506,6 +155123,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Touch_ DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Touch__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Touch_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01429AA0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Touch__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Touch_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01429A40, Touch, Array_EmptyInternalEnumerator_1_UnityEngine_Touch__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Touch_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00B60, Array_EmptyInternalEnumerator_1_UnityEngine_Touch__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_EnhancedTouch_Touch___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_EnhancedTouch_Touch___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_EnhancedTouch_Touch_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_EnhancedTouch_Touch__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_EnhancedTouch_Touch_ * __this, MethodInfo * method)); @@ -140513,6 +155131,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_InputS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_EnhancedTouch_Touch__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_EnhancedTouch_Touch_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_EnhancedTouch_Touch__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_EnhancedTouch_Touch_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01429B40, Touch_1, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_EnhancedTouch_Touch__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_EnhancedTouch_Touch_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00BD8, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_EnhancedTouch_Touch__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARSubsystems_TrackableId___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARSubsystems_TrackableId___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARSubsystems_TrackableId_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARSubsystems_TrackableId__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARSubsystems_TrackableId_ * __this, MethodInfo * method)); @@ -140520,6 +155139,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARSubsystems_TrackableId__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARSubsystems_TrackableId_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARSubsystems_TrackableId__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARSubsystems_TrackableId_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01429BA0, TrackableId, Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARSubsystems_TrackableId__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARSubsystems_TrackableId_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00BD0, Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARSubsystems_TrackableId__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_Transform3x4___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_Transform3x4___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_Transform3x4_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_Transform3x4__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_Transform3x4_ * __this, MethodInfo * method)); @@ -140527,6 +155147,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_Transform3x4__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_Transform3x4_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141D1A0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_Transform3x4__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_Transform3x4_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01429C00, Transform3x4, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_Transform3x4__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_Transform3x4_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00BC8, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_Transform3x4__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TransformOrigin___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TransformOrigin___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TransformOrigin_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TransformOrigin__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TransformOrigin_ * __this, MethodInfo * method)); @@ -140534,6 +155155,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TransformOrigin__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TransformOrigin_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C7D0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TransformOrigin__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TransformOrigin_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01429C60, TransformOrigin, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TransformOrigin__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TransformOrigin_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00BC0, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TransformOrigin__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Translate___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Translate___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Translate_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Translate__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Translate_ * __this, MethodInfo * method)); @@ -140541,6 +155163,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Translate__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Translate_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Translate__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Translate_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01429CC0, Translate_1, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Translate__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Translate_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00BB8, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Translate__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_TreeInstance___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_TreeInstance___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_TreeInstance_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_TreeInstance__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_TreeInstance_ * __this, MethodInfo * method)); @@ -140548,6 +155171,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_TreeIn DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_TreeInstance__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_TreeInstance_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C530, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_TreeInstance__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_TreeInstance_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01429D20, TreeInstance, Array_EmptyInternalEnumerator_1_UnityEngine_TreeInstance__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_TreeInstance_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00BB0, Array_EmptyInternalEnumerator_1_UnityEngine_TreeInstance__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TreeItem___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TreeItem___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TreeItem_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TreeItem__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TreeItem_ * __this, MethodInfo * method)); @@ -140555,6 +155179,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TreeItem__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TreeItem_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TreeItem__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TreeItem_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01429D80, TreeItem, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TreeItem__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TreeItem_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00BA8, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TreeItem__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TreeViewItemWrapper___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TreeViewItemWrapper___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TreeViewItemWrapper_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TreeViewItemWrapper__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TreeViewItemWrapper_ * __this, MethodInfo * method)); @@ -140562,6 +155187,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TreeViewItemWrapper__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TreeViewItemWrapper_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TreeViewItemWrapper__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TreeViewItemWrapper_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01429DE0, TreeViewItemWrapper, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TreeViewItemWrapper__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TreeViewItemWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00BA0, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TreeViewItemWrapper__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_TypeId___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_TypeId___ctor, (Array_EmptyInternalEnumerator_1_Photon_Bolt_TypeId_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_TypeId__Dispose, (Array_EmptyInternalEnumerator_1_Photon_Bolt_TypeId_ * __this, MethodInfo * method)); @@ -140569,6 +155195,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Photon_Bolt_TypeId DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_TypeId__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Photon_Bolt_TypeId_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01424950, Object *, Array_EmptyInternalEnumerator_1_Photon_Bolt_TypeId__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Photon_Bolt_TypeId_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01429E40, TypeId, Array_EmptyInternalEnumerator_1_Photon_Bolt_TypeId__get_Current, (Array_EmptyInternalEnumerator_1_Photon_Bolt_TypeId_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00B18, Array_EmptyInternalEnumerator_1_Photon_Bolt_TypeId__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_TypeWrapper___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_TypeWrapper___ctor, (Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_TypeWrapper_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_TypeWrapper__Dispose, (Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_TypeWrapper_ * __this, MethodInfo * method)); @@ -140576,6 +155203,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Rewired_Utils_Clas DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_TypeWrapper__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_TypeWrapper_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_TypeWrapper__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_TypeWrapper_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01429EA0, TypeWrapper, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_TypeWrapper__get_Current, (Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_TypeWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00B10, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_TypeWrapper__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UICharInfo___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UICharInfo___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UICharInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UICharInfo__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UICharInfo_ * __this, MethodInfo * method)); @@ -140583,6 +155211,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIChar DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UICharInfo__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UICharInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141FA10, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UICharInfo__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UICharInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01429F00, UICharInfo, Array_EmptyInternalEnumerator_1_UnityEngine_UICharInfo__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UICharInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00B08, Array_EmptyInternalEnumerator_1_UnityEngine_UICharInfo__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UILineInfo___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UILineInfo___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UILineInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UILineInfo__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UILineInfo_ * __this, MethodInfo * method)); @@ -140590,6 +155219,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UILine DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UILineInfo__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UILineInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UILineInfo__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UILineInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01429F60, UILineInfo, Array_EmptyInternalEnumerator_1_UnityEngine_UILineInfo__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UILineInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00B00, Array_EmptyInternalEnumerator_1_UnityEngine_UILineInfo__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIVertex___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIVertex___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIVertex_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIVertex__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIVertex_ * __this, MethodInfo * method)); @@ -140597,6 +155227,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIVert DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIVertex__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIVertex_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01428B60, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIVertex__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIVertex_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01429FC0, UIVertex, Array_EmptyInternalEnumerator_1_UnityEngine_UIVertex__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIVertex_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00AF8, Array_EmptyInternalEnumerator_1_UnityEngine_UIVertex__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UInt16___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UInt16___ctor, (Array_EmptyInternalEnumerator_1_UInt16_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UInt16__Dispose, (Array_EmptyInternalEnumerator_1_UInt16_ * __this, MethodInfo * method)); @@ -140604,6 +155235,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UInt16__MoveNext, DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UInt16__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UInt16_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014246A0, Object *, Array_EmptyInternalEnumerator_1_UInt16__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UInt16_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142A020, uint16_t, Array_EmptyInternalEnumerator_1_UInt16__get_Current, (Array_EmptyInternalEnumerator_1_UInt16_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00AF0, Array_EmptyInternalEnumerator_1_UInt16__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UInt16Enum___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UInt16Enum___ctor, (Array_EmptyInternalEnumerator_1_UInt16Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UInt16Enum__Dispose, (Array_EmptyInternalEnumerator_1_UInt16Enum_ * __this, MethodInfo * method)); @@ -140611,6 +155243,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UInt16Enum__MoveNe DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UInt16Enum__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UInt16Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014246A0, Object *, Array_EmptyInternalEnumerator_1_UInt16Enum__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UInt16Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142A080, UInt16Enum__Enum, Array_EmptyInternalEnumerator_1_UInt16Enum__get_Current, (Array_EmptyInternalEnumerator_1_UInt16Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00AE8, Array_EmptyInternalEnumerator_1_UInt16Enum__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UInt32___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UInt32___ctor, (Array_EmptyInternalEnumerator_1_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UInt32__Dispose, (Array_EmptyInternalEnumerator_1_UInt32_ * __this, MethodInfo * method)); @@ -140618,6 +155251,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UInt32__MoveNext, DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UInt32__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01424950, Object *, Array_EmptyInternalEnumerator_1_UInt32__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142A0E0, uint32_t, Array_EmptyInternalEnumerator_1_UInt32__get_Current, (Array_EmptyInternalEnumerator_1_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00AE0, Array_EmptyInternalEnumerator_1_UInt32__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UInt32Enum___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UInt32Enum___ctor, (Array_EmptyInternalEnumerator_1_UInt32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UInt32Enum__Dispose, (Array_EmptyInternalEnumerator_1_UInt32Enum_ * __this, MethodInfo * method)); @@ -140625,6 +155259,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UInt32Enum__MoveNe DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UInt32Enum__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UInt32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01424950, Object *, Array_EmptyInternalEnumerator_1_UInt32Enum__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UInt32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142A140, UInt32Enum__Enum, Array_EmptyInternalEnumerator_1_UInt32Enum__get_Current, (Array_EmptyInternalEnumerator_1_UInt32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00B58, Array_EmptyInternalEnumerator_1_UInt32Enum__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UInt64___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UInt64___ctor, (Array_EmptyInternalEnumerator_1_UInt64_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UInt64__Dispose, (Array_EmptyInternalEnumerator_1_UInt64_ * __this, MethodInfo * method)); @@ -140632,6 +155267,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UInt64__MoveNext, DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UInt64__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UInt64_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BC50, Object *, Array_EmptyInternalEnumerator_1_UInt64__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UInt64_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142A1A0, uint64_t, Array_EmptyInternalEnumerator_1_UInt64__get_Current, (Array_EmptyInternalEnumerator_1_UInt64_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00B50, Array_EmptyInternalEnumerator_1_UInt64__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture___ctor, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__Dispose, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ * __this, MethodInfo * method)); @@ -140639,6 +155275,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Opsive_UltimateCha DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142A200, UVTexture, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__get_Current, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00B48, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UdpKit_UdpChannelName___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UdpKit_UdpChannelName___ctor, (Array_EmptyInternalEnumerator_1_UdpKit_UdpChannelName_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UdpKit_UdpChannelName__Dispose, (Array_EmptyInternalEnumerator_1_UdpKit_UdpChannelName_ * __this, MethodInfo * method)); @@ -140646,6 +155283,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UdpKit_UdpChannelN DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UdpKit_UdpChannelName__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UdpKit_UdpChannelName_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UdpKit_UdpChannelName__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UdpKit_UdpChannelName_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142A260, UdpChannelName, Array_EmptyInternalEnumerator_1_UdpKit_UdpChannelName__get_Current, (Array_EmptyInternalEnumerator_1_UdpKit_UdpChannelName_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00B40, Array_EmptyInternalEnumerator_1_UdpKit_UdpChannelName__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UdpKit_UdpEndPoint___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UdpKit_UdpEndPoint___ctor, (Array_EmptyInternalEnumerator_1_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UdpKit_UdpEndPoint__Dispose, (Array_EmptyInternalEnumerator_1_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); @@ -140653,6 +155291,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UdpKit_UdpEndPoint DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UdpKit_UdpEndPoint__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C680, Object *, Array_EmptyInternalEnumerator_1_UdpKit_UdpEndPoint__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142A2C0, UdpEndPoint, Array_EmptyInternalEnumerator_1_UdpKit_UdpEndPoint__get_Current, (Array_EmptyInternalEnumerator_1_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00B38, Array_EmptyInternalEnumerator_1_UdpKit_UdpEndPoint__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UdpKit_UdpEvent___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UdpKit_UdpEvent___ctor, (Array_EmptyInternalEnumerator_1_UdpKit_UdpEvent_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UdpKit_UdpEvent__Dispose, (Array_EmptyInternalEnumerator_1_UdpKit_UdpEvent_ * __this, MethodInfo * method)); @@ -140660,6 +155299,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UdpKit_UdpEvent__M DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UdpKit_UdpEvent__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UdpKit_UdpEvent_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_UdpKit_UdpEvent__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UdpKit_UdpEvent_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142A320, UdpEvent, Array_EmptyInternalEnumerator_1_UdpKit_UdpEvent__get_Current, (Array_EmptyInternalEnumerator_1_UdpKit_UdpEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00B30, Array_EmptyInternalEnumerator_1_UdpKit_UdpEvent__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UdpKit_UdpIPv4Address___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UdpKit_UdpIPv4Address___ctor, (Array_EmptyInternalEnumerator_1_UdpKit_UdpIPv4Address_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UdpKit_UdpIPv4Address__Dispose, (Array_EmptyInternalEnumerator_1_UdpKit_UdpIPv4Address_ * __this, MethodInfo * method)); @@ -140667,6 +155307,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UdpKit_UdpIPv4Addr DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UdpKit_UdpIPv4Address__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UdpKit_UdpIPv4Address_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01424950, Object *, Array_EmptyInternalEnumerator_1_UdpKit_UdpIPv4Address__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UdpKit_UdpIPv4Address_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142A380, UdpIPv4Address, Array_EmptyInternalEnumerator_1_UdpKit_UdpIPv4Address__get_Current, (Array_EmptyInternalEnumerator_1_UdpKit_UdpIPv4Address_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00B28, Array_EmptyInternalEnumerator_1_UdpKit_UdpIPv4Address__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UdpKit_UdpPipeHandle___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UdpKit_UdpPipeHandle___ctor, (Array_EmptyInternalEnumerator_1_UdpKit_UdpPipeHandle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UdpKit_UdpPipeHandle__Dispose, (Array_EmptyInternalEnumerator_1_UdpKit_UdpPipeHandle_ * __this, MethodInfo * method)); @@ -140674,6 +155315,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UdpKit_UdpPipeHand DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UdpKit_UdpPipeHandle__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UdpKit_UdpPipeHandle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UdpKit_UdpPipeHandle__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UdpKit_UdpPipeHandle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142A3E0, UdpPipeHandle, Array_EmptyInternalEnumerator_1_UdpKit_UdpPipeHandle__get_Current, (Array_EmptyInternalEnumerator_1_UdpKit_UdpPipeHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00B20, Array_EmptyInternalEnumerator_1_UdpKit_UdpPipeHandle__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_UniqueId___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_UniqueId___ctor, (Array_EmptyInternalEnumerator_1_Photon_Bolt_UniqueId_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_UniqueId__Dispose, (Array_EmptyInternalEnumerator_1_Photon_Bolt_UniqueId_ * __this, MethodInfo * method)); @@ -140681,6 +155323,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Photon_Bolt_Unique DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_UniqueId__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Photon_Bolt_UniqueId_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_Photon_Bolt_UniqueId__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Photon_Bolt_UniqueId_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142A440, UniqueId, Array_EmptyInternalEnumerator_1_Photon_Bolt_UniqueId__get_Current, (Array_EmptyInternalEnumerator_1_Photon_Bolt_UniqueId_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00AD0, Array_EmptyInternalEnumerator_1_Photon_Bolt_UniqueId__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_XR_UsageHint___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_XR_UsageHint___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_XR_UsageHint_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_XR_UsageHint__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_XR_UsageHint_ * __this, MethodInfo * method)); @@ -140688,6 +155331,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_InputS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_XR_UsageHint__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_XR_UsageHint_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BC50, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_XR_UsageHint__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_XR_UsageHint_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142A4A0, UsageHint, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_XR_UsageHint__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_XR_UsageHint_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00AC8, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_XR_UsageHint__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Discord_User___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Discord_User___ctor, (Array_EmptyInternalEnumerator_1_Discord_User_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Discord_User__Dispose, (Array_EmptyInternalEnumerator_1_Discord_User_ * __this, MethodInfo * method)); @@ -140695,6 +155339,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Discord_User__Move DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Discord_User__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Discord_User_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C530, Object *, Array_EmptyInternalEnumerator_1_Discord_User__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Discord_User_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142A500, User, Array_EmptyInternalEnumerator_1_Discord_User__get_Current, (Array_EmptyInternalEnumerator_1_Discord_User_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00AC0, Array_EmptyInternalEnumerator_1_Discord_User__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Net_WebSockets_ValueWebSocketReceiveResult___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Net_WebSockets_ValueWebSocketReceiveResult___ctor, (Array_EmptyInternalEnumerator_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Net_WebSockets_ValueWebSocketReceiveResult__Dispose, (Array_EmptyInternalEnumerator_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, MethodInfo * method)); @@ -140702,6 +155347,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Net_WebSock DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Net_WebSockets_ValueWebSocketReceiveResult__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BC50, Object *, Array_EmptyInternalEnumerator_1_System_Net_WebSockets_ValueWebSocketReceiveResult__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142A560, ValueWebSocketReceiveResult, Array_EmptyInternalEnumerator_1_System_Net_WebSockets_ValueWebSocketReceiveResult__get_Current, (Array_EmptyInternalEnumerator_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00AB8, Array_EmptyInternalEnumerator_1_System_Net_WebSockets_ValueWebSocketReceiveResult__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Vector2___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Vector2___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Vector2__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); @@ -140709,6 +155355,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Vector DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Vector2__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014247D0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Vector2__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142A5C0, Vector2, Array_EmptyInternalEnumerator_1_UnityEngine_Vector2__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00AB0, Array_EmptyInternalEnumerator_1_UnityEngine_Vector2__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Vector2Int___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Vector2Int___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Vector2Int__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); @@ -140716,6 +155363,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Vector DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Vector2Int__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BC50, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Vector2Int__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142A620, Vector2Int, Array_EmptyInternalEnumerator_1_UnityEngine_Vector2Int__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00AA8, Array_EmptyInternalEnumerator_1_UnityEngine_Vector2Int__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Vector3___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Vector3___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Vector3__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); @@ -140723,6 +155371,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Vector DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Vector3__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141FA10, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Vector3__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142A680, Vector3, Array_EmptyInternalEnumerator_1_UnityEngine_Vector3__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00AA0, Array_EmptyInternalEnumerator_1_UnityEngine_Vector3__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Vector3Int___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Vector3Int___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Vector3Int_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Vector3Int__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Vector3Int_ * __this, MethodInfo * method)); @@ -140730,6 +155379,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Vector DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Vector3Int__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Vector3Int_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141FA10, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Vector3Int__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Vector3Int_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142A6E0, Vector3Int, Array_EmptyInternalEnumerator_1_UnityEngine_Vector3Int__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Vector3Int_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00A98, Array_EmptyInternalEnumerator_1_UnityEngine_Vector3Int__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UI_Extensions_Vector3_Array2D___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UI_Extensions_Vector3_Array2D___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UI_Extensions_Vector3_Array2D_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UI_Extensions_Vector3_Array2D__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UI_Extensions_Vector3_Array2D_ * __this, MethodInfo * method)); @@ -140737,6 +155387,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UI_Ext DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UI_Extensions_Vector3_Array2D__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UI_Extensions_Vector3_Array2D_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BC50, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UI_Extensions_Vector3_Array2D__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UI_Extensions_Vector3_Array2D_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142A740, Vector3_Array2D, Array_EmptyInternalEnumerator_1_UnityEngine_UI_Extensions_Vector3_Array2D__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UI_Extensions_Vector3_Array2D_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00AD8, Array_EmptyInternalEnumerator_1_UnityEngine_UI_Extensions_Vector3_Array2D__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Vector4___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Vector4___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Vector4_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Vector4__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Vector4_ * __this, MethodInfo * method)); @@ -140744,6 +155395,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Vector DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Vector4__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Vector4_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Vector4__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Vector4_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142A7A0, Vector4, Array_EmptyInternalEnumerator_1_UnityEngine_Vector4__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D060E0, Array_EmptyInternalEnumerator_1_UnityEngine_Vector4__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_VectorImageVertex___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_VectorImageVertex___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_VectorImageVertex_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_VectorImageVertex__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_VectorImageVertex_ * __this, MethodInfo * method)); @@ -140751,6 +155403,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_VectorImageVertex__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_VectorImageVertex_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C680, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_VectorImageVertex__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_VectorImageVertex_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142A800, VectorImageVertex, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_VectorImageVertex__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_VectorImageVertex_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D060D8, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_VectorImageVertex__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Vertex___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Vertex___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Vertex_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Vertex__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Vertex_ * __this, MethodInfo * method)); @@ -140758,6 +155411,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Vertex__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Vertex_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141F0C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Vertex__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Vertex_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142A860, Vertex, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Vertex__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Vertex_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06120, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_Vertex__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_VertexAttributeDescriptor___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_VertexAttributeDescriptor___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_VertexAttributeDescriptor_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_VertexAttributeDescriptor__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_VertexAttributeDescriptor_ * __this, MethodInfo * method)); @@ -140765,6 +155419,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Render DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_VertexAttributeDescriptor__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_VertexAttributeDescriptor_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_VertexAttributeDescriptor__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_VertexAttributeDescriptor_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142A8C0, VertexAttributeDescriptor, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_VertexAttributeDescriptor__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_VertexAttributeDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06118, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_VertexAttributeDescriptor__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Microsoft_MixedReality_OpenXR_ViewConfiguration___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Microsoft_MixedReality_OpenXR_ViewConfiguration___ctor, (Array_EmptyInternalEnumerator_1_Microsoft_MixedReality_OpenXR_ViewConfiguration_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Microsoft_MixedReality_OpenXR_ViewConfiguration__Dispose, (Array_EmptyInternalEnumerator_1_Microsoft_MixedReality_OpenXR_ViewConfiguration_ * __this, MethodInfo * method)); @@ -140772,6 +155427,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Microsoft_MixedRea DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Microsoft_MixedReality_OpenXR_ViewConfiguration__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Microsoft_MixedReality_OpenXR_ViewConfiguration_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_Microsoft_MixedReality_OpenXR_ViewConfiguration__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Microsoft_MixedReality_OpenXR_ViewConfiguration_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142A920, ViewConfiguration, Array_EmptyInternalEnumerator_1_Microsoft_MixedReality_OpenXR_ViewConfiguration__get_Current, (Array_EmptyInternalEnumerator_1_Microsoft_MixedReality_OpenXR_ViewConfiguration_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06110, Array_EmptyInternalEnumerator_1_Microsoft_MixedReality_OpenXR_ViewConfiguration__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Dissonance_Networking_VoicePacket___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Dissonance_Networking_VoicePacket___ctor, (Array_EmptyInternalEnumerator_1_Dissonance_Networking_VoicePacket_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Dissonance_Networking_VoicePacket__Dispose, (Array_EmptyInternalEnumerator_1_Dissonance_Networking_VoicePacket_ * __this, MethodInfo * method)); @@ -140779,6 +155435,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Dissonance_Network DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Dissonance_Networking_VoicePacket__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Dissonance_Networking_VoicePacket_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141DC50, Object *, Array_EmptyInternalEnumerator_1_Dissonance_Networking_VoicePacket__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Dissonance_Networking_VoicePacket_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142A980, VoicePacket, Array_EmptyInternalEnumerator_1_Dissonance_Networking_VoicePacket__get_Current, (Array_EmptyInternalEnumerator_1_Dissonance_Networking_VoicePacket_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06108, Array_EmptyInternalEnumerator_1_Dissonance_Networking_VoicePacket__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Pathfinding_Voxels_VoxelCell___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_Voxels_VoxelCell___ctor, (Array_EmptyInternalEnumerator_1_Pathfinding_Voxels_VoxelCell_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_Voxels_VoxelCell__Dispose, (Array_EmptyInternalEnumerator_1_Pathfinding_Voxels_VoxelCell_ * __this, MethodInfo * method)); @@ -140786,6 +155443,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Pathfinding_Voxels DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_Voxels_VoxelCell__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Pathfinding_Voxels_VoxelCell_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BC50, Object *, Array_EmptyInternalEnumerator_1_Pathfinding_Voxels_VoxelCell__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Pathfinding_Voxels_VoxelCell_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142A9E0, VoxelCell, Array_EmptyInternalEnumerator_1_Pathfinding_Voxels_VoxelCell__get_Current, (Array_EmptyInternalEnumerator_1_Pathfinding_Voxels_VoxelCell_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06100, Array_EmptyInternalEnumerator_1_Pathfinding_Voxels_VoxelCell__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Pathfinding_Voxels_VoxelContour___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_Voxels_VoxelContour___ctor, (Array_EmptyInternalEnumerator_1_Pathfinding_Voxels_VoxelContour_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_Voxels_VoxelContour__Dispose, (Array_EmptyInternalEnumerator_1_Pathfinding_Voxels_VoxelContour_ * __this, MethodInfo * method)); @@ -140793,6 +155451,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Pathfinding_Voxels DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_Voxels_VoxelContour__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Pathfinding_Voxels_VoxelContour_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_Pathfinding_Voxels_VoxelContour__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Pathfinding_Voxels_VoxelContour_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142AA40, VoxelContour, Array_EmptyInternalEnumerator_1_Pathfinding_Voxels_VoxelContour__get_Current, (Array_EmptyInternalEnumerator_1_Pathfinding_Voxels_VoxelContour_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D060F8, Array_EmptyInternalEnumerator_1_Pathfinding_Voxels_VoxelContour__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES___ctor, (Array_EmptyInternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES__Dispose, (Array_EmptyInternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES_ * __this, MethodInfo * method)); @@ -140800,6 +155459,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Net_Network DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142AB00, Object *, Array_EmptyInternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142AAA0, Win32_IP_ADAPTER_ADDRESSES, Array_EmptyInternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES__get_Current, (Array_EmptyInternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D060F0, Array_EmptyInternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO___ctor, (Array_EmptyInternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO__Dispose, (Array_EmptyInternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO_ * __this, MethodInfo * method)); @@ -140807,6 +155467,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Net_Network DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142AC40, Object *, Array_EmptyInternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142ABE0, Win32_IP_ADAPTER_INFO, Array_EmptyInternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO__get_Current, (Array_EmptyInternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D060E8, Array_EmptyInternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADDR_STRING___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADDR_STRING___ctor, (Array_EmptyInternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADDR_STRING_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADDR_STRING__Dispose, (Array_EmptyInternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADDR_STRING_ * __this, MethodInfo * method)); @@ -140814,6 +155475,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Net_Network DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADDR_STRING__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADDR_STRING_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADDR_STRING__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADDR_STRING_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142AD20, Win32_IP_ADDR_STRING, Array_EmptyInternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADDR_STRING__get_Current, (Array_EmptyInternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADDR_STRING_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06090, Array_EmptyInternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADDR_STRING__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_WordInfo___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_WordInfo___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_WordInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_WordInfo__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_WordInfo_ * __this, MethodInfo * method)); @@ -140821,6 +155483,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_TextCo DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_WordInfo__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_WordInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141FA10, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_WordInfo__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_WordInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142AD80, WordInfo, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_WordInfo__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_WordInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06088, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_WordInfo__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_TMPro_WordWrapState___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_WordWrapState___ctor, (Array_EmptyInternalEnumerator_1_TMPro_WordWrapState_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_WordWrapState__Dispose, (Array_EmptyInternalEnumerator_1_TMPro_WordWrapState_ * __this, MethodInfo * method)); @@ -140828,6 +155491,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_TMPro_WordWrapStat DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_WordWrapState__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_TMPro_WordWrapState_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142AE40, Object *, Array_EmptyInternalEnumerator_1_TMPro_WordWrapState__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_TMPro_WordWrapState_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142ADE0, WordWrapState, Array_EmptyInternalEnumerator_1_TMPro_WordWrapState__get_Current, (Array_EmptyInternalEnumerator_1_TMPro_WordWrapState_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06080, Array_EmptyInternalEnumerator_1_TMPro_WordWrapState__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Security_Cryptography_X509Certificates_X509ChainStatus___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Security_Cryptography_X509Certificates_X509ChainStatus___ctor, (Array_EmptyInternalEnumerator_1_System_Security_Cryptography_X509Certificates_X509ChainStatus_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Security_Cryptography_X509Certificates_X509ChainStatus__Dispose, (Array_EmptyInternalEnumerator_1_System_Security_Cryptography_X509Certificates_X509ChainStatus_ * __this, MethodInfo * method)); @@ -140835,6 +155499,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Security_Cr DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Security_Cryptography_X509Certificates_X509ChainStatus__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Security_Cryptography_X509Certificates_X509ChainStatus_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Security_Cryptography_X509Certificates_X509ChainStatus__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Security_Cryptography_X509Certificates_X509ChainStatus_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142AF60, X509ChainStatus, Array_EmptyInternalEnumerator_1_System_Security_Cryptography_X509Certificates_X509ChainStatus__get_Current, (Array_EmptyInternalEnumerator_1_System_Security_Cryptography_X509Certificates_X509ChainStatus_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06078, Array_EmptyInternalEnumerator_1_System_Security_Cryptography_X509Certificates_X509ChainStatus__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_MS_Internal_Xml_Cache_XPathNode___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_MS_Internal_Xml_Cache_XPathNode___ctor, (Array_EmptyInternalEnumerator_1_MS_Internal_Xml_Cache_XPathNode_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_MS_Internal_Xml_Cache_XPathNode__Dispose, (Array_EmptyInternalEnumerator_1_MS_Internal_Xml_Cache_XPathNode_ * __this, MethodInfo * method)); @@ -140842,6 +155507,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_MS_Internal_Xml_Ca DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_MS_Internal_Xml_Cache_XPathNode__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_MS_Internal_Xml_Cache_XPathNode_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_MS_Internal_Xml_Cache_XPathNode__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_MS_Internal_Xml_Cache_XPathNode_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142AFC0, XPathNode, Array_EmptyInternalEnumerator_1_MS_Internal_Xml_Cache_XPathNode__get_Current, (Array_EmptyInternalEnumerator_1_MS_Internal_Xml_Cache_XPathNode_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06070, Array_EmptyInternalEnumerator_1_MS_Internal_Xml_Cache_XPathNode__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_MS_Internal_Xml_Cache_XPathNodeRef___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_MS_Internal_Xml_Cache_XPathNodeRef___ctor, (Array_EmptyInternalEnumerator_1_MS_Internal_Xml_Cache_XPathNodeRef_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_MS_Internal_Xml_Cache_XPathNodeRef__Dispose, (Array_EmptyInternalEnumerator_1_MS_Internal_Xml_Cache_XPathNodeRef_ * __this, MethodInfo * method)); @@ -140849,6 +155515,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_MS_Internal_Xml_Ca DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_MS_Internal_Xml_Cache_XPathNodeRef__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_MS_Internal_Xml_Cache_XPathNodeRef_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_MS_Internal_Xml_Cache_XPathNodeRef__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_MS_Internal_Xml_Cache_XPathNodeRef_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142B020, XPathNodeRef, Array_EmptyInternalEnumerator_1_MS_Internal_Xml_Cache_XPathNodeRef__get_Current, (Array_EmptyInternalEnumerator_1_MS_Internal_Xml_Cache_XPathNodeRef_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06068, Array_EmptyInternalEnumerator_1_MS_Internal_Xml_Cache_XPathNodeRef__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRAnchor___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRAnchor___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRAnchor_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRAnchor__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRAnchor_ * __this, MethodInfo * method)); @@ -140856,6 +155523,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRAnchor__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRAnchor_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141EAE0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRAnchor__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRAnchor_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142B080, XRAnchor, Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRAnchor__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRAnchor_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06060, Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRAnchor__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor_ * __this, MethodInfo * method)); @@ -140863,6 +155531,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_InputS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142B0E0, XRFeatureDescriptor, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06058, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_XR_XRNodeState___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_XR_XRNodeState___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_XR_XRNodeState_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_XR_XRNodeState__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_XR_XRNodeState_ * __this, MethodInfo * method)); @@ -140870,6 +155539,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_XR_XRN DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_XR_XRNodeState__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_XR_XRNodeState_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01420390, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_XR_XRNodeState__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_XR_XRNodeState_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142B140, XRNodeState, Array_EmptyInternalEnumerator_1_UnityEngine_XR_XRNodeState__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_XR_XRNodeState_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D060D0, Array_EmptyInternalEnumerator_1_UnityEngine_XR_XRNodeState__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRRaycast___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRRaycast___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRRaycast_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRRaycast__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRRaycast_ * __this, MethodInfo * method)); @@ -140877,6 +155547,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRRaycast__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRRaycast_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014211F0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRRaycast__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRRaycast_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142B1A0, XRRaycast, Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRRaycast__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRRaycast_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D060C8, Array_EmptyInternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRRaycast__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_XmlTagAttribute___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_XmlTagAttribute___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_XmlTagAttribute_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_XmlTagAttribute__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_XmlTagAttribute_ * __this, MethodInfo * method)); @@ -140884,6 +155555,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_TextCo DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_XmlTagAttribute__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_XmlTagAttribute_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C7D0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_XmlTagAttribute__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_XmlTagAttribute_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142B200, XmlTagAttribute, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_XmlTagAttribute__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_XmlTagAttribute_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D060C0, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_XmlTagAttribute__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_aOHEnKCFymegycPegEXPFUjlaUPpA___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_aOHEnKCFymegycPegEXPFUjlaUPpA___ctor, (Array_EmptyInternalEnumerator_1_aOHEnKCFymegycPegEXPFUjlaUPpA_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_aOHEnKCFymegycPegEXPFUjlaUPpA__Dispose, (Array_EmptyInternalEnumerator_1_aOHEnKCFymegycPegEXPFUjlaUPpA_ * __this, MethodInfo * method)); @@ -140891,6 +155563,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_aOHEnKCFymegycPegE DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_aOHEnKCFymegycPegEXPFUjlaUPpA__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_aOHEnKCFymegycPegEXPFUjlaUPpA_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_aOHEnKCFymegycPegEXPFUjlaUPpA__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_aOHEnKCFymegycPegEXPFUjlaUPpA_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142B260, aOHEnKCFymegycPegEXPFUjlaUPpA, Array_EmptyInternalEnumerator_1_aOHEnKCFymegycPegEXPFUjlaUPpA__get_Current, (Array_EmptyInternalEnumerator_1_aOHEnKCFymegycPegEXPFUjlaUPpA_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D060B8, Array_EmptyInternalEnumerator_1_aOHEnKCFymegycPegEXPFUjlaUPpA__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_aQHgSHeigtcamfIWbNaiXaCiVwuq___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_aQHgSHeigtcamfIWbNaiXaCiVwuq___ctor, (Array_EmptyInternalEnumerator_1_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__Dispose, (Array_EmptyInternalEnumerator_1_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * __this, MethodInfo * method)); @@ -140898,6 +155571,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_aQHgSHeigtcamfIWbN DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01424950, Object *, Array_EmptyInternalEnumerator_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142B2C0, aQHgSHeigtcamfIWbNaiXaCiVwuq, Array_EmptyInternalEnumerator_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__get_Current, (Array_EmptyInternalEnumerator_1_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D060B0, Array_EmptyInternalEnumerator_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_jvalue___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_jvalue___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_jvalue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_jvalue__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_jvalue_ * __this, MethodInfo * method)); @@ -140905,6 +155579,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_jvalue DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_jvalue__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_jvalue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BC50, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_jvalue__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_jvalue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142B320, jvalue, Array_EmptyInternalEnumerator_1_UnityEngine_jvalue__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_jvalue_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D060A8, Array_EmptyInternalEnumerator_1_UnityEngine_jvalue__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_tSPvxZUJjzaTiAEejeAOLKctGpmKA___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_tSPvxZUJjzaTiAEejeAOLKctGpmKA___ctor, (Array_EmptyInternalEnumerator_1_tSPvxZUJjzaTiAEejeAOLKctGpmKA_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_tSPvxZUJjzaTiAEejeAOLKctGpmKA__Dispose, (Array_EmptyInternalEnumerator_1_tSPvxZUJjzaTiAEejeAOLKctGpmKA_ * __this, MethodInfo * method)); @@ -140912,6 +155587,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_tSPvxZUJjzaTiAEeje DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_tSPvxZUJjzaTiAEejeAOLKctGpmKA__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_tSPvxZUJjzaTiAEejeAOLKctGpmKA_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_tSPvxZUJjzaTiAEejeAOLKctGpmKA__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_tSPvxZUJjzaTiAEejeAOLKctGpmKA_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142B380, tSPvxZUJjzaTiAEejeAOLKctGpmKA, Array_EmptyInternalEnumerator_1_tSPvxZUJjzaTiAEejeAOLKctGpmKA__get_Current, (Array_EmptyInternalEnumerator_1_tSPvxZUJjzaTiAEejeAOLKctGpmKA_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D060A0, Array_EmptyInternalEnumerator_1_tSPvxZUJjzaTiAEejeAOLKctGpmKA__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_yUgrsNEvLzxrXGzkHTUPIBJYGDah___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_yUgrsNEvLzxrXGzkHTUPIBJYGDah___ctor, (Array_EmptyInternalEnumerator_1_yUgrsNEvLzxrXGzkHTUPIBJYGDah_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_yUgrsNEvLzxrXGzkHTUPIBJYGDah__Dispose, (Array_EmptyInternalEnumerator_1_yUgrsNEvLzxrXGzkHTUPIBJYGDah_ * __this, MethodInfo * method)); @@ -140919,6 +155595,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_yUgrsNEvLzxrXGzkHT DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_yUgrsNEvLzxrXGzkHTUPIBJYGDah__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_yUgrsNEvLzxrXGzkHTUPIBJYGDah_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_yUgrsNEvLzxrXGzkHTUPIBJYGDah__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_yUgrsNEvLzxrXGzkHTUPIBJYGDah_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142B3E0, yUgrsNEvLzxrXGzkHTUPIBJYGDah, Array_EmptyInternalEnumerator_1_yUgrsNEvLzxrXGzkHTUPIBJYGDah__get_Current, (Array_EmptyInternalEnumerator_1_yUgrsNEvLzxrXGzkHTUPIBJYGDah_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06098, Array_EmptyInternalEnumerator_1_yUgrsNEvLzxrXGzkHTUPIBJYGDah__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_AIObjectPool_PreloadedPrefab___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_AIObjectPool_PreloadedPrefab___ctor, (Array_EmptyInternalEnumerator_1_AIObjectPool_PreloadedPrefab_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_AIObjectPool_PreloadedPrefab__Dispose, (Array_EmptyInternalEnumerator_1_AIObjectPool_PreloadedPrefab_ * __this, MethodInfo * method)); @@ -140926,6 +155603,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_AIObjectPool_Prelo DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_AIObjectPool_PreloadedPrefab__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_AIObjectPool_PreloadedPrefab_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_AIObjectPool_PreloadedPrefab__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_AIObjectPool_PreloadedPrefab_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142B440, AIObjectPool_PreloadedPrefab, Array_EmptyInternalEnumerator_1_AIObjectPool_PreloadedPrefab__get_Current, (Array_EmptyInternalEnumerator_1_AIObjectPool_PreloadedPrefab_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06010, Array_EmptyInternalEnumerator_1_AIObjectPool_PreloadedPrefab__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Pathfinding_AdvancedSmooth_Turn___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_AdvancedSmooth_Turn___ctor, (Array_EmptyInternalEnumerator_1_Pathfinding_AdvancedSmooth_Turn_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_AdvancedSmooth_Turn__Dispose, (Array_EmptyInternalEnumerator_1_Pathfinding_AdvancedSmooth_Turn_ * __this, MethodInfo * method)); @@ -140933,6 +155611,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Pathfinding_Advanc DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_AdvancedSmooth_Turn__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Pathfinding_AdvancedSmooth_Turn_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_Pathfinding_AdvancedSmooth_Turn__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Pathfinding_AdvancedSmooth_Turn_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142B4A0, AdvancedSmooth_Turn, Array_EmptyInternalEnumerator_1_Pathfinding_AdvancedSmooth_Turn__get_Current, (Array_EmptyInternalEnumerator_1_Pathfinding_AdvancedSmooth_Turn_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06008, Array_EmptyInternalEnumerator_1_Pathfinding_AdvancedSmooth_Turn__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Pathfinding_RVO_Sampled_Agent_VO___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_RVO_Sampled_Agent_VO___ctor, (Array_EmptyInternalEnumerator_1_Pathfinding_RVO_Sampled_Agent_VO_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_RVO_Sampled_Agent_VO__Dispose, (Array_EmptyInternalEnumerator_1_Pathfinding_RVO_Sampled_Agent_VO_ * __this, MethodInfo * method)); @@ -140940,6 +155619,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Pathfinding_RVO_Sa DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_RVO_Sampled_Agent_VO__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Pathfinding_RVO_Sampled_Agent_VO_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014293A0, Object *, Array_EmptyInternalEnumerator_1_Pathfinding_RVO_Sampled_Agent_VO__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Pathfinding_RVO_Sampled_Agent_VO_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142B500, Agent_VO, Array_EmptyInternalEnumerator_1_Pathfinding_RVO_Sampled_Agent_VO__get_Current, (Array_EmptyInternalEnumerator_1_Pathfinding_RVO_Sampled_Agent_VO_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06000, Array_EmptyInternalEnumerator_1_Pathfinding_RVO_Sampled_Agent_VO__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo_ * __this, MethodInfo * method)); @@ -140947,6 +155627,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Timeli DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C530, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142B560, AnimationOutputWeightProcessor_WeightInfo, Array_EmptyInternalEnumerator_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05FF8, Array_EmptyInternalEnumerator_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Pathfinding_AstarDebugger_GraphPoint___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_AstarDebugger_GraphPoint___ctor, (Array_EmptyInternalEnumerator_1_Pathfinding_AstarDebugger_GraphPoint_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_AstarDebugger_GraphPoint__Dispose, (Array_EmptyInternalEnumerator_1_Pathfinding_AstarDebugger_GraphPoint_ * __this, MethodInfo * method)); @@ -140954,6 +155635,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Pathfinding_AstarD DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_AstarDebugger_GraphPoint__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Pathfinding_AstarDebugger_GraphPoint_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141FA10, Object *, Array_EmptyInternalEnumerator_1_Pathfinding_AstarDebugger_GraphPoint__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Pathfinding_AstarDebugger_GraphPoint_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142B5C0, AstarDebugger_GraphPoint, Array_EmptyInternalEnumerator_1_Pathfinding_AstarDebugger_GraphPoint__get_Current, (Array_EmptyInternalEnumerator_1_Pathfinding_AstarDebugger_GraphPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05FF0, Array_EmptyInternalEnumerator_1_Pathfinding_AstarDebugger_GraphPoint__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Pathfinding_AstarDebugger_PathTypeDebug___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_AstarDebugger_PathTypeDebug___ctor, (Array_EmptyInternalEnumerator_1_Pathfinding_AstarDebugger_PathTypeDebug_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_AstarDebugger_PathTypeDebug__Dispose, (Array_EmptyInternalEnumerator_1_Pathfinding_AstarDebugger_PathTypeDebug_ * __this, MethodInfo * method)); @@ -140961,6 +155643,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Pathfinding_AstarD DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_AstarDebugger_PathTypeDebug__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Pathfinding_AstarDebugger_PathTypeDebug_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_Pathfinding_AstarDebugger_PathTypeDebug__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Pathfinding_AstarDebugger_PathTypeDebug_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142B620, AstarDebugger_PathTypeDebug, Array_EmptyInternalEnumerator_1_Pathfinding_AstarDebugger_PathTypeDebug__get_Current, (Array_EmptyInternalEnumerator_1_Pathfinding_AstarDebugger_PathTypeDebug_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05FE8, Array_EmptyInternalEnumerator_1_Pathfinding_AstarDebugger_PathTypeDebug__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_AtlasAllocatorDynamic_AtlasNode___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_AtlasAllocatorDynamic_AtlasNode___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_AtlasAllocatorDynamic_AtlasNode_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_AtlasAllocatorDynamic_AtlasNode__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_AtlasAllocatorDynamic_AtlasNode_ * __this, MethodInfo * method)); @@ -140968,6 +155651,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Render DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_AtlasAllocatorDynamic_AtlasNode__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_AtlasAllocatorDynamic_AtlasNode_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_AtlasAllocatorDynamic_AtlasNode__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_AtlasAllocatorDynamic_AtlasNode_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142B680, AtlasAllocatorDynamic_AtlasNode, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_AtlasAllocatorDynamic_AtlasNode__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_AtlasAllocatorDynamic_AtlasNode_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05FE0, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_AtlasAllocatorDynamic_AtlasNode__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_ComponentModel_AttributeCollection_AttributeEntry___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_ComponentModel_AttributeCollection_AttributeEntry___ctor, (Array_EmptyInternalEnumerator_1_System_ComponentModel_AttributeCollection_AttributeEntry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_ComponentModel_AttributeCollection_AttributeEntry__Dispose, (Array_EmptyInternalEnumerator_1_System_ComponentModel_AttributeCollection_AttributeEntry_ * __this, MethodInfo * method)); @@ -140975,6 +155659,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_ComponentMo DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_ComponentModel_AttributeCollection_AttributeEntry__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_ComponentModel_AttributeCollection_AttributeEntry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_ComponentModel_AttributeCollection_AttributeEntry__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_ComponentModel_AttributeCollection_AttributeEntry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142B6E0, AttributeCollection_AttributeEntry, Array_EmptyInternalEnumerator_1_System_ComponentModel_AttributeCollection_AttributeEntry__get_Current, (Array_EmptyInternalEnumerator_1_System_ComponentModel_AttributeCollection_AttributeEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05FD8, Array_EmptyInternalEnumerator_1_System_ComponentModel_AttributeCollection_AttributeEntry__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Pathfinding_BBTree_BBTreeBox___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_BBTree_BBTreeBox___ctor, (Array_EmptyInternalEnumerator_1_Pathfinding_BBTree_BBTreeBox_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_BBTree_BBTreeBox__Dispose, (Array_EmptyInternalEnumerator_1_Pathfinding_BBTree_BBTreeBox_ * __this, MethodInfo * method)); @@ -140982,6 +155667,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Pathfinding_BBTree DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_BBTree_BBTreeBox__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Pathfinding_BBTree_BBTreeBox_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C680, Object *, Array_EmptyInternalEnumerator_1_Pathfinding_BBTree_BBTreeBox__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Pathfinding_BBTree_BBTreeBox_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142B740, BBTree_BBTreeBox, Array_EmptyInternalEnumerator_1_Pathfinding_BBTree_BBTreeBox__get_Current, (Array_EmptyInternalEnumerator_1_Pathfinding_BBTree_BBTreeBox_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06050, Array_EmptyInternalEnumerator_1_Pathfinding_BBTree_BBTreeBox__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext_ * __this, MethodInfo * method)); @@ -140989,6 +155675,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BC50, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142B7A0, BaseStyleMatcher_MatchContext, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06048, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_BeforeRenderHelper_OrderBlock___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_BeforeRenderHelper_OrderBlock___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_BeforeRenderHelper_OrderBlock_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_BeforeRenderHelper_OrderBlock__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_BeforeRenderHelper_OrderBlock_ * __this, MethodInfo * method)); @@ -140996,6 +155683,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Before DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_BeforeRenderHelper_OrderBlock__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_BeforeRenderHelper_OrderBlock_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_BeforeRenderHelper_OrderBlock__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_BeforeRenderHelper_OrderBlock_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142B800, BeforeRenderHelper_OrderBlock, Array_EmptyInternalEnumerator_1_UnityEngine_BeforeRenderHelper_OrderBlock__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_BeforeRenderHelper_OrderBlock_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06040, Array_EmptyInternalEnumerator_1_UnityEngine_BeforeRenderHelper_OrderBlock__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_CollisionResistanceMultiplier___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_CollisionResistanceMultiplier___ctor, (Array_EmptyInternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_CollisionResistanceMultiplier_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_CollisionResistanceMultiplier__Dispose, (Array_EmptyInternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_CollisionResistanceMultiplier_ * __this, MethodInfo * method)); @@ -141003,6 +155691,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_RootMotion_Dynamic DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_CollisionResistanceMultiplier__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_CollisionResistanceMultiplier_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141FA10, Object *, Array_EmptyInternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_CollisionResistanceMultiplier__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_CollisionResistanceMultiplier_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142B860, BehaviourPuppet_CollisionResistanceMultiplier, Array_EmptyInternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_CollisionResistanceMultiplier__get_Current, (Array_EmptyInternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_CollisionResistanceMultiplier_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06038, Array_EmptyInternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_CollisionResistanceMultiplier__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_MusclePropsGroup___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_MusclePropsGroup___ctor, (Array_EmptyInternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_MusclePropsGroup_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_MusclePropsGroup__Dispose, (Array_EmptyInternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_MusclePropsGroup_ * __this, MethodInfo * method)); @@ -141010,6 +155699,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_RootMotion_Dynamic DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_MusclePropsGroup__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_MusclePropsGroup_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141EAE0, Object *, Array_EmptyInternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_MusclePropsGroup__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_MusclePropsGroup_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142B8C0, BehaviourPuppet_MusclePropsGroup, Array_EmptyInternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_MusclePropsGroup__get_Current, (Array_EmptyInternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_MusclePropsGroup_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06030, Array_EmptyInternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_MusclePropsGroup__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Pathfinding_BinaryHeap_Tuple___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_BinaryHeap_Tuple___ctor, (Array_EmptyInternalEnumerator_1_Pathfinding_BinaryHeap_Tuple_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_BinaryHeap_Tuple__Dispose, (Array_EmptyInternalEnumerator_1_Pathfinding_BinaryHeap_Tuple_ * __this, MethodInfo * method)); @@ -141017,6 +155707,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Pathfinding_Binary DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_BinaryHeap_Tuple__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Pathfinding_BinaryHeap_Tuple_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_Pathfinding_BinaryHeap_Tuple__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Pathfinding_BinaryHeap_Tuple_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142B920, BinaryHeap_Tuple, Array_EmptyInternalEnumerator_1_Pathfinding_BinaryHeap_Tuple__get_Current, (Array_EmptyInternalEnumerator_1_Pathfinding_BinaryHeap_Tuple_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06028, Array_EmptyInternalEnumerator_1_Pathfinding_BinaryHeap_Tuple__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page_ * __this, MethodInfo * method)); @@ -141024,6 +155715,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BC50, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142B980, BitmapAllocator32_Page, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06020, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_PostProcessing_BloomRenderer_Level___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_PostProcessing_BloomRenderer_Level___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_PostProcessing_BloomRenderer_Level_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_PostProcessing_BloomRenderer_Level__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_PostProcessing_BloomRenderer_Level_ * __this, MethodInfo * method)); @@ -141031,6 +155723,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Render DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_PostProcessing_BloomRenderer_Level__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_PostProcessing_BloomRenderer_Level_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BC50, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_PostProcessing_BloomRenderer_Level__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_PostProcessing_BloomRenderer_Level_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142B9E0, BloomRenderer_Level, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_PostProcessing_BloomRenderer_Level__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_PostProcessing_BloomRenderer_Level_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06018, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_PostProcessing_BloomRenderer_Level__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_Utils_BoltConsole_Line___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_Utils_BoltConsole_Line___ctor, (Array_EmptyInternalEnumerator_1_Photon_Bolt_Utils_BoltConsole_Line_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_Utils_BoltConsole_Line__Dispose, (Array_EmptyInternalEnumerator_1_Photon_Bolt_Utils_BoltConsole_Line_ * __this, MethodInfo * method)); @@ -141038,6 +155731,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Photon_Bolt_Utils_ DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_Utils_BoltConsole_Line__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Photon_Bolt_Utils_BoltConsole_Line_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_Photon_Bolt_Utils_BoltConsole_Line__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Photon_Bolt_Utils_BoltConsole_Line_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142BA40, BoltConsole_Line, Array_EmptyInternalEnumerator_1_Photon_Bolt_Utils_BoltConsole_Line__get_Current, (Array_EmptyInternalEnumerator_1_Photon_Bolt_Utils_BoltConsole_Line_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05F90, Array_EmptyInternalEnumerator_1_Photon_Bolt_Utils_BoltConsole_Line__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_Tokens_BoltProtocolTokenRegistry_TokenRegistry___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_Tokens_BoltProtocolTokenRegistry_TokenRegistry___ctor, (Array_EmptyInternalEnumerator_1_Photon_Bolt_Tokens_BoltProtocolTokenRegistry_TokenRegistry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_Tokens_BoltProtocolTokenRegistry_TokenRegistry__Dispose, (Array_EmptyInternalEnumerator_1_Photon_Bolt_Tokens_BoltProtocolTokenRegistry_TokenRegistry_ * __this, MethodInfo * method)); @@ -141045,6 +155739,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Photon_Bolt_Tokens DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_Tokens_BoltProtocolTokenRegistry_TokenRegistry__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Photon_Bolt_Tokens_BoltProtocolTokenRegistry_TokenRegistry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_Photon_Bolt_Tokens_BoltProtocolTokenRegistry_TokenRegistry__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Photon_Bolt_Tokens_BoltProtocolTokenRegistry_TokenRegistry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142BAA0, BoltProtocolTokenRegistry_TokenRegistry, Array_EmptyInternalEnumerator_1_Photon_Bolt_Tokens_BoltProtocolTokenRegistry_TokenRegistry__get_Current, (Array_EmptyInternalEnumerator_1_Photon_Bolt_Tokens_BoltProtocolTokenRegistry_TokenRegistry_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05F88, Array_EmptyInternalEnumerator_1_Photon_Bolt_Tokens_BoltProtocolTokenRegistry_TokenRegistry__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Globalization_CalendricalCalculationsHelper_EphemerisCorrectionAlgorithmMap___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Globalization_CalendricalCalculationsHelper_EphemerisCorrectionAlgorithmMap___ctor, (Array_EmptyInternalEnumerator_1_System_Globalization_CalendricalCalculationsHelper_EphemerisCorrectionAlgorithmMap_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Globalization_CalendricalCalculationsHelper_EphemerisCorrectionAlgorithmMap__Dispose, (Array_EmptyInternalEnumerator_1_System_Globalization_CalendricalCalculationsHelper_EphemerisCorrectionAlgorithmMap_ * __this, MethodInfo * method)); @@ -141052,6 +155747,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Globalizati DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Globalization_CalendricalCalculationsHelper_EphemerisCorrectionAlgorithmMap__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Globalization_CalendricalCalculationsHelper_EphemerisCorrectionAlgorithmMap_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BC50, Object *, Array_EmptyInternalEnumerator_1_System_Globalization_CalendricalCalculationsHelper_EphemerisCorrectionAlgorithmMap__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Globalization_CalendricalCalculationsHelper_EphemerisCorrectionAlgorithmMap_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142BB00, CalendricalCalculationsHelper_EphemerisCorrectionAlgorithmMap, Array_EmptyInternalEnumerator_1_System_Globalization_CalendricalCalculationsHelper_EphemerisCorrectionAlgorithmMap__get_Current, (Array_EmptyInternalEnumerator_1_System_Globalization_CalendricalCalculationsHelper_EphemerisCorrectionAlgorithmMap_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05F80, Array_EmptyInternalEnumerator_1_System_Globalization_CalendricalCalculationsHelper_EphemerisCorrectionAlgorithmMap__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Camera_RenderRequest___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Camera_RenderRequest___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Camera_RenderRequest_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Camera_RenderRequest__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Camera_RenderRequest_ * __this, MethodInfo * method)); @@ -141059,6 +155755,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Camera DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Camera_RenderRequest__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Camera_RenderRequest_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Camera_RenderRequest__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Camera_RenderRequest_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142BB60, Camera_RenderRequest, Array_EmptyInternalEnumerator_1_UnityEngine_Camera_RenderRequest__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Camera_RenderRequest_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05F78, Array_EmptyInternalEnumerator_1_UnityEngine_Camera_RenderRequest__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Cinemachine_CameraState_CustomBlendable___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Cinemachine_CameraState_CustomBlendable___ctor, (Array_EmptyInternalEnumerator_1_Cinemachine_CameraState_CustomBlendable_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Cinemachine_CameraState_CustomBlendable__Dispose, (Array_EmptyInternalEnumerator_1_Cinemachine_CameraState_CustomBlendable_ * __this, MethodInfo * method)); @@ -141066,6 +155763,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Cinemachine_Camera DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Cinemachine_CameraState_CustomBlendable__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Cinemachine_CameraState_CustomBlendable_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_Cinemachine_CameraState_CustomBlendable__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Cinemachine_CameraState_CustomBlendable_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142BBC0, CameraState_CustomBlendable, Array_EmptyInternalEnumerator_1_Cinemachine_CameraState_CustomBlendable__get_Current, (Array_EmptyInternalEnumerator_1_Cinemachine_CameraState_CustomBlendable_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05F70, Array_EmptyInternalEnumerator_1_Cinemachine_CameraState_CustomBlendable__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_Foot___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_Foot___ctor, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_Foot_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_Foot__Dispose, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_Foot_ * __this, MethodInfo * method)); @@ -141073,6 +155771,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Opsive_UltimateCha DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_Foot__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_Foot_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_Foot__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_Foot_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142BC20, CharacterFootEffects_Foot, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_Foot__get_Current, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_Foot_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05F68, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_Foot__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineBlendListCamera_Instruction___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineBlendListCamera_Instruction___ctor, (Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineBlendListCamera_Instruction_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineBlendListCamera_Instruction__Dispose, (Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineBlendListCamera_Instruction_ * __this, MethodInfo * method)); @@ -141080,6 +155779,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Cinemachine_Cinema DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineBlendListCamera_Instruction__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineBlendListCamera_Instruction_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineBlendListCamera_Instruction__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineBlendListCamera_Instruction_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142BC80, CinemachineBlendListCamera_Instruction, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineBlendListCamera_Instruction__get_Current, (Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineBlendListCamera_Instruction_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05F60, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineBlendListCamera_Instruction__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineBlenderSettings_CustomBlend___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineBlenderSettings_CustomBlend___ctor, (Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineBlenderSettings_CustomBlend_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineBlenderSettings_CustomBlend__Dispose, (Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineBlenderSettings_CustomBlend_ * __this, MethodInfo * method)); @@ -141087,6 +155787,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Cinemachine_Cinema DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineBlenderSettings_CustomBlend__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineBlenderSettings_CustomBlend_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineBlenderSettings_CustomBlend__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineBlenderSettings_CustomBlend_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142BCE0, CinemachineBlenderSettings_CustomBlend, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineBlenderSettings_CustomBlend__get_Current, (Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineBlenderSettings_CustomBlend_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05F58, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineBlenderSettings_CustomBlend__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineClearShot_Pair___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineClearShot_Pair___ctor, (Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineClearShot_Pair_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineClearShot_Pair__Dispose, (Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineClearShot_Pair_ * __this, MethodInfo * method)); @@ -141094,6 +155795,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Cinemachine_Cinema DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineClearShot_Pair__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineClearShot_Pair_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BC50, Object *, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineClearShot_Pair__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineClearShot_Pair_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142BD40, CinemachineClearShot_Pair, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineClearShot_Pair__get_Current, (Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineClearShot_Pair_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05FD0, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineClearShot_Pair__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineFreeLook_Orbit___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineFreeLook_Orbit___ctor, (Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineFreeLook_Orbit_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineFreeLook_Orbit__Dispose, (Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineFreeLook_Orbit_ * __this, MethodInfo * method)); @@ -141101,6 +155803,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Cinemachine_Cinema DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineFreeLook_Orbit__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineFreeLook_Orbit_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014247D0, Object *, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineFreeLook_Orbit__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineFreeLook_Orbit_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142BDA0, CinemachineFreeLook_Orbit, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineFreeLook_Orbit__get_Current, (Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineFreeLook_Orbit_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05FC8, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineFreeLook_Orbit__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachinePath_Waypoint___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachinePath_Waypoint___ctor, (Array_EmptyInternalEnumerator_1_Cinemachine_CinemachinePath_Waypoint_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachinePath_Waypoint__Dispose, (Array_EmptyInternalEnumerator_1_Cinemachine_CinemachinePath_Waypoint_ * __this, MethodInfo * method)); @@ -141108,6 +155811,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Cinemachine_Cinema DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachinePath_Waypoint__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Cinemachine_CinemachinePath_Waypoint_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C680, Object *, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachinePath_Waypoint__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Cinemachine_CinemachinePath_Waypoint_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142BE00, CinemachinePath_Waypoint, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachinePath_Waypoint__get_Current, (Array_EmptyInternalEnumerator_1_Cinemachine_CinemachinePath_Waypoint_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05FC0, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachinePath_Waypoint__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineSmoothPath_Waypoint___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineSmoothPath_Waypoint___ctor, (Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineSmoothPath_Waypoint_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineSmoothPath_Waypoint__Dispose, (Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineSmoothPath_Waypoint_ * __this, MethodInfo * method)); @@ -141115,6 +155819,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Cinemachine_Cinema DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineSmoothPath_Waypoint__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineSmoothPath_Waypoint_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineSmoothPath_Waypoint__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineSmoothPath_Waypoint_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142BE60, CinemachineSmoothPath_Waypoint, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineSmoothPath_Waypoint__get_Current, (Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineSmoothPath_Waypoint_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05FB8, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineSmoothPath_Waypoint__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_HashPair___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_HashPair___ctor, (Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_HashPair_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_HashPair__Dispose, (Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_HashPair_ * __this, MethodInfo * method)); @@ -141122,6 +155827,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Cinemachine_Cinema DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_HashPair__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_HashPair_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BC50, Object *, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_HashPair__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_HashPair_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142BEC0, CinemachineStateDrivenCamera_HashPair, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_HashPair__get_Current, (Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_HashPair_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05FB0, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_HashPair__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_Instruction___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_Instruction___ctor, (Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_Instruction_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_Instruction__Dispose, (Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_Instruction_ * __this, MethodInfo * method)); @@ -141129,6 +155835,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Cinemachine_Cinema DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_Instruction__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_Instruction_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_Instruction__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_Instruction_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142BF20, CinemachineStateDrivenCamera_Instruction, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_Instruction__get_Current, (Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_Instruction_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05FA8, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_Instruction__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_ParentHash___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_ParentHash___ctor, (Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_ParentHash_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_ParentHash__Dispose, (Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_ParentHash_ * __this, MethodInfo * method)); @@ -141136,6 +155843,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Cinemachine_Cinema DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_ParentHash__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_ParentHash_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BC50, Object *, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_ParentHash__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_ParentHash_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142BF80, CinemachineStateDrivenCamera_ParentHash, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_ParentHash__get_Current, (Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_ParentHash_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05FA0, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_ParentHash__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineTargetGroup_Target___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineTargetGroup_Target___ctor, (Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineTargetGroup_Target_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineTargetGroup_Target__Dispose, (Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineTargetGroup_Target_ * __this, MethodInfo * method)); @@ -141143,6 +155851,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Cinemachine_Cinema DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineTargetGroup_Target__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineTargetGroup_Target_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineTargetGroup_Target__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineTargetGroup_Target_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142BFE0, CinemachineTargetGroup_Target, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineTargetGroup_Target__get_Current, (Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineTargetGroup_Target_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05F98, Array_EmptyInternalEnumerator_1_Cinemachine_CinemachineTargetGroup_Target__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Cinemachine_ClipperLib_DoublePoint___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Cinemachine_ClipperLib_DoublePoint___ctor, (Array_EmptyInternalEnumerator_1_Cinemachine_ClipperLib_DoublePoint_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Cinemachine_ClipperLib_DoublePoint__Dispose, (Array_EmptyInternalEnumerator_1_Cinemachine_ClipperLib_DoublePoint_ * __this, MethodInfo * method)); @@ -141150,6 +155859,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Cinemachine_Clippe DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Cinemachine_ClipperLib_DoublePoint__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Cinemachine_ClipperLib_DoublePoint_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_Cinemachine_ClipperLib_DoublePoint__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Cinemachine_ClipperLib_DoublePoint_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142C040, ClipperLib_DoublePoint, Array_EmptyInternalEnumerator_1_Cinemachine_ClipperLib_DoublePoint__get_Current, (Array_EmptyInternalEnumerator_1_Cinemachine_ClipperLib_DoublePoint_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05F10, Array_EmptyInternalEnumerator_1_Cinemachine_ClipperLib_DoublePoint__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Cinemachine_ClipperLib_IntPoint___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Cinemachine_ClipperLib_IntPoint___ctor, (Array_EmptyInternalEnumerator_1_Cinemachine_ClipperLib_IntPoint_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Cinemachine_ClipperLib_IntPoint__Dispose, (Array_EmptyInternalEnumerator_1_Cinemachine_ClipperLib_IntPoint_ * __this, MethodInfo * method)); @@ -141157,6 +155867,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Cinemachine_Clippe DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Cinemachine_ClipperLib_IntPoint__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Cinemachine_ClipperLib_IntPoint_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_Cinemachine_ClipperLib_IntPoint__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Cinemachine_ClipperLib_IntPoint_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142C0A0, ClipperLib_IntPoint, Array_EmptyInternalEnumerator_1_Cinemachine_ClipperLib_IntPoint__get_Current, (Array_EmptyInternalEnumerator_1_Cinemachine_ClipperLib_IntPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05F08, Array_EmptyInternalEnumerator_1_Cinemachine_ClipperLib_IntPoint__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Mono_Globalization_Unicode_CodePointIndexer_TableRange___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Mono_Globalization_Unicode_CodePointIndexer_TableRange___ctor, (Array_EmptyInternalEnumerator_1_Mono_Globalization_Unicode_CodePointIndexer_TableRange_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Mono_Globalization_Unicode_CodePointIndexer_TableRange__Dispose, (Array_EmptyInternalEnumerator_1_Mono_Globalization_Unicode_CodePointIndexer_TableRange_ * __this, MethodInfo * method)); @@ -141164,6 +155875,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Mono_Globalization DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Mono_Globalization_Unicode_CodePointIndexer_TableRange__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Mono_Globalization_Unicode_CodePointIndexer_TableRange_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C7D0, Object *, Array_EmptyInternalEnumerator_1_Mono_Globalization_Unicode_CodePointIndexer_TableRange__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Mono_Globalization_Unicode_CodePointIndexer_TableRange_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142C100, CodePointIndexer_TableRange, Array_EmptyInternalEnumerator_1_Mono_Globalization_Unicode_CodePointIndexer_TableRange__get_Current, (Array_EmptyInternalEnumerator_1_Mono_Globalization_Unicode_CodePointIndexer_TableRange_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05F00, Array_EmptyInternalEnumerator_1_Mono_Globalization_Unicode_CodePointIndexer_TableRange__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Character_Abilities_Starters_ComboTimeout_ComboInputElement___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Character_Abilities_Starters_ComboTimeout_ComboInputElement___ctor, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Character_Abilities_Starters_ComboTimeout_ComboInputElement_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Character_Abilities_Starters_ComboTimeout_ComboInputElement__Dispose, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Character_Abilities_Starters_ComboTimeout_ComboInputElement_ * __this, MethodInfo * method)); @@ -141171,6 +155883,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Opsive_UltimateCha DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Character_Abilities_Starters_ComboTimeout_ComboInputElement__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Character_Abilities_Starters_ComboTimeout_ComboInputElement_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Character_Abilities_Starters_ComboTimeout_ComboInputElement__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Character_Abilities_Starters_ComboTimeout_ComboInputElement_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142C160, ComboTimeout_ComboInputElement, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Character_Abilities_Starters_ComboTimeout_ComboInputElement__get_Current, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Character_Abilities_Starters_ComboTimeout_ComboInputElement_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05EF8, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Character_Abilities_Starters_ComboTimeout_ComboInputElement__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Cinemachine_ConfinerOven_PolygonSolution___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Cinemachine_ConfinerOven_PolygonSolution___ctor, (Array_EmptyInternalEnumerator_1_Cinemachine_ConfinerOven_PolygonSolution_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Cinemachine_ConfinerOven_PolygonSolution__Dispose, (Array_EmptyInternalEnumerator_1_Cinemachine_ConfinerOven_PolygonSolution_ * __this, MethodInfo * method)); @@ -141178,6 +155891,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Cinemachine_Confin DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Cinemachine_ConfinerOven_PolygonSolution__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Cinemachine_ConfinerOven_PolygonSolution_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_Cinemachine_ConfinerOven_PolygonSolution__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Cinemachine_ConfinerOven_PolygonSolution_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142C1C0, ConfinerOven_PolygonSolution, Array_EmptyInternalEnumerator_1_Cinemachine_ConfinerOven_PolygonSolution__get_Current, (Array_EmptyInternalEnumerator_1_Cinemachine_ConfinerOven_PolygonSolution_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05EF0, Array_EmptyInternalEnumerator_1_Cinemachine_ConfinerOven_PolygonSolution__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_AddressableAssets_ResourceLocators_ContentCatalogData_Bucket___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_AddressableAssets_ResourceLocators_ContentCatalogData_Bucket___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_AddressableAssets_ResourceLocators_ContentCatalogData_Bucket_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_AddressableAssets_ResourceLocators_ContentCatalogData_Bucket__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_AddressableAssets_ResourceLocators_ContentCatalogData_Bucket_ * __this, MethodInfo * method)); @@ -141185,6 +155899,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Addres DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_AddressableAssets_ResourceLocators_ContentCatalogData_Bucket__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_AddressableAssets_ResourceLocators_ContentCatalogData_Bucket_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_AddressableAssets_ResourceLocators_ContentCatalogData_Bucket__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_AddressableAssets_ResourceLocators_ContentCatalogData_Bucket_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142C220, ContentCatalogData_Bucket, Array_EmptyInternalEnumerator_1_UnityEngine_AddressableAssets_ResourceLocators_ContentCatalogData_Bucket__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_AddressableAssets_ResourceLocators_ContentCatalogData_Bucket_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05EE8, Array_EmptyInternalEnumerator_1_UnityEngine_AddressableAssets_ResourceLocators_ContentCatalogData_Bucket__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Net_ContextFlagsAdapterPal_ContextFlagMapping___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Net_ContextFlagsAdapterPal_ContextFlagMapping___ctor, (Array_EmptyInternalEnumerator_1_System_Net_ContextFlagsAdapterPal_ContextFlagMapping_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Net_ContextFlagsAdapterPal_ContextFlagMapping__Dispose, (Array_EmptyInternalEnumerator_1_System_Net_ContextFlagsAdapterPal_ContextFlagMapping_ * __this, MethodInfo * method)); @@ -141192,6 +155907,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Net_Context DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Net_ContextFlagsAdapterPal_ContextFlagMapping__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Net_ContextFlagsAdapterPal_ContextFlagMapping_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BC50, Object *, Array_EmptyInternalEnumerator_1_System_Net_ContextFlagsAdapterPal_ContextFlagMapping__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Net_ContextFlagsAdapterPal_ContextFlagMapping_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142C280, ContextFlagsAdapterPal_ContextFlagMapping, Array_EmptyInternalEnumerator_1_System_Net_ContextFlagsAdapterPal_ContextFlagMapping__get_Current, (Array_EmptyInternalEnumerator_1_System_Net_ContextFlagsAdapterPal_ContextFlagMapping_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05EE0, Array_EmptyInternalEnumerator_1_System_Net_ContextFlagsAdapterPal_ContextFlagMapping__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Net_CookieTokenizer_RecognizedAttribute___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Net_CookieTokenizer_RecognizedAttribute___ctor, (Array_EmptyInternalEnumerator_1_System_Net_CookieTokenizer_RecognizedAttribute_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Net_CookieTokenizer_RecognizedAttribute__Dispose, (Array_EmptyInternalEnumerator_1_System_Net_CookieTokenizer_RecognizedAttribute_ * __this, MethodInfo * method)); @@ -141199,6 +155915,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Net_CookieT DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Net_CookieTokenizer_RecognizedAttribute__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Net_CookieTokenizer_RecognizedAttribute_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Net_CookieTokenizer_RecognizedAttribute__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Net_CookieTokenizer_RecognizedAttribute_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142C2E0, CookieTokenizer_RecognizedAttribute, Array_EmptyInternalEnumerator_1_System_Net_CookieTokenizer_RecognizedAttribute__get_Current, (Array_EmptyInternalEnumerator_1_System_Net_CookieTokenizer_RecognizedAttribute_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05ED8, Array_EmptyInternalEnumerator_1_System_Net_CookieTokenizer_RecognizedAttribute__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB___ctor, (Array_EmptyInternalEnumerator_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__Dispose, (Array_EmptyInternalEnumerator_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * __this, MethodInfo * method)); @@ -141206,6 +155923,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Rewired_ComponentC DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141FA10, Object *, Array_EmptyInternalEnumerator_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142C340, CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB, Array_EmptyInternalEnumerator_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__get_Current, (Array_EmptyInternalEnumerator_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05F50, Array_EmptyInternalEnumerator_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator___ctor, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator__Dispose, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator_ * __this, MethodInfo * method)); @@ -141213,6 +155931,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Opsive_UltimateCha DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141DC50, Object *, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142C3A0, DamageIndicatorMonitor_DamageIndicator, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator__get_Current, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05F48, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ * __this, MethodInfo * method)); @@ -141220,6 +155939,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Resour DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142C400, DelayedActionManager_DelegateInfo, Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05F40, Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_DynamicResolutionHandler_ScalerContainer___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_DynamicResolutionHandler_ScalerContainer___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_DynamicResolutionHandler_ScalerContainer_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_DynamicResolutionHandler_ScalerContainer__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_DynamicResolutionHandler_ScalerContainer_ * __this, MethodInfo * method)); @@ -141227,6 +155947,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Render DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_DynamicResolutionHandler_ScalerContainer__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_DynamicResolutionHandler_ScalerContainer_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_DynamicResolutionHandler_ScalerContainer__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_DynamicResolutionHandler_ScalerContainer_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142C460, DynamicResolutionHandler_ScalerContainer, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_DynamicResolutionHandler_ScalerContainer__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_DynamicResolutionHandler_ScalerContainer_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05F38, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_DynamicResolutionHandler_ScalerContainer__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_EventDispatcher_CallbackWrapper___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_EventDispatcher_CallbackWrapper___ctor, (Array_EmptyInternalEnumerator_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_EventDispatcher_CallbackWrapper__Dispose, (Array_EmptyInternalEnumerator_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ * __this, MethodInfo * method)); @@ -141234,6 +155955,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Photon_Bolt_EventD DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_EventDispatcher_CallbackWrapper__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_Photon_Bolt_EventDispatcher_CallbackWrapper__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142C4C0, EventDispatcher_CallbackWrapper, Array_EmptyInternalEnumerator_1_Photon_Bolt_EventDispatcher_CallbackWrapper__get_Current, (Array_EmptyInternalEnumerator_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05F30, Array_EmptyInternalEnumerator_1_Photon_Bolt_EventDispatcher_CallbackWrapper__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_EventDispatcher_EventListener___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_EventDispatcher_EventListener___ctor, (Array_EmptyInternalEnumerator_1_Photon_Bolt_EventDispatcher_EventListener_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_EventDispatcher_EventListener__Dispose, (Array_EmptyInternalEnumerator_1_Photon_Bolt_EventDispatcher_EventListener_ * __this, MethodInfo * method)); @@ -141241,6 +155963,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Photon_Bolt_EventD DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_EventDispatcher_EventListener__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Photon_Bolt_EventDispatcher_EventListener_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_Photon_Bolt_EventDispatcher_EventListener__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Photon_Bolt_EventDispatcher_EventListener_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142C520, EventDispatcher_EventListener, Array_EmptyInternalEnumerator_1_Photon_Bolt_EventDispatcher_EventListener__get_Current, (Array_EmptyInternalEnumerator_1_Photon_Bolt_EventDispatcher_EventListener_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05F28, Array_EmptyInternalEnumerator_1_Photon_Bolt_EventDispatcher_EventListener__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_DispatchContext___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_DispatchContext___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_DispatchContext_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_DispatchContext__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_DispatchContext_ * __this, MethodInfo * method)); @@ -141248,6 +155971,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_DispatchContext__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_DispatchContext_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_DispatchContext__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_DispatchContext_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142C580, EventDispatcher_DispatchContext, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_DispatchContext__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_DispatchContext_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05F20, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_DispatchContext__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_EventRecord___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_EventRecord___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_EventRecord_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_EventRecord__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_EventRecord_ * __this, MethodInfo * method)); @@ -141255,6 +155979,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_EventRecord__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_EventRecord_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_EventRecord__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_EventRecord_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142C5E0, EventDispatcher_EventRecord, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_EventRecord__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_EventRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05F18, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_EventRecord__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Dissonance_Networking_Client_EventQueue_NetworkEvent___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Dissonance_Networking_Client_EventQueue_NetworkEvent___ctor, (Array_EmptyInternalEnumerator_1_Dissonance_Networking_Client_EventQueue_NetworkEvent_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Dissonance_Networking_Client_EventQueue_NetworkEvent__Dispose, (Array_EmptyInternalEnumerator_1_Dissonance_Networking_Client_EventQueue_NetworkEvent_ * __this, MethodInfo * method)); @@ -141262,6 +155987,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Dissonance_Network DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Dissonance_Networking_Client_EventQueue_NetworkEvent__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Dissonance_Networking_Client_EventQueue_NetworkEvent_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141F400, Object *, Array_EmptyInternalEnumerator_1_Dissonance_Networking_Client_EventQueue_NetworkEvent__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Dissonance_Networking_Client_EventQueue_NetworkEvent_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142C640, EventQueue_NetworkEvent, Array_EmptyInternalEnumerator_1_Dissonance_Networking_Client_EventQueue_NetworkEvent__get_Current, (Array_EmptyInternalEnumerator_1_Dissonance_Networking_Client_EventQueue_NetworkEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05E90, Array_EmptyInternalEnumerator_1_Dissonance_Networking_Client_EventQueue_NetworkEvent__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_EventReliableRecvBuffer_Node___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_EventReliableRecvBuffer_Node___ctor, (Array_EmptyInternalEnumerator_1_Photon_Bolt_EventReliableRecvBuffer_Node_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_EventReliableRecvBuffer_Node__Dispose, (Array_EmptyInternalEnumerator_1_Photon_Bolt_EventReliableRecvBuffer_Node_ * __this, MethodInfo * method)); @@ -141269,6 +155995,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Photon_Bolt_EventR DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_EventReliableRecvBuffer_Node__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Photon_Bolt_EventReliableRecvBuffer_Node_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_Photon_Bolt_EventReliableRecvBuffer_Node__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Photon_Bolt_EventReliableRecvBuffer_Node_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142C6A0, EventReliableRecvBuffer_Node, Array_EmptyInternalEnumerator_1_Photon_Bolt_EventReliableRecvBuffer_Node__get_Current, (Array_EmptyInternalEnumerator_1_Photon_Bolt_EventReliableRecvBuffer_Node_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05E88, Array_EmptyInternalEnumerator_1_Photon_Bolt_EventReliableRecvBuffer_Node__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_EventReliableSendBuffer_Node___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_EventReliableSendBuffer_Node___ctor, (Array_EmptyInternalEnumerator_1_Photon_Bolt_EventReliableSendBuffer_Node_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_EventReliableSendBuffer_Node__Dispose, (Array_EmptyInternalEnumerator_1_Photon_Bolt_EventReliableSendBuffer_Node_ * __this, MethodInfo * method)); @@ -141276,6 +156003,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Photon_Bolt_EventR DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Photon_Bolt_EventReliableSendBuffer_Node__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Photon_Bolt_EventReliableSendBuffer_Node_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_Photon_Bolt_EventReliableSendBuffer_Node__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Photon_Bolt_EventReliableSendBuffer_Node_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142C700, EventReliableSendBuffer_Node, Array_EmptyInternalEnumerator_1_Photon_Bolt_EventReliableSendBuffer_Node__get_Current, (Array_EmptyInternalEnumerator_1_Photon_Bolt_EventReliableSendBuffer_Node_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05E80, Array_EmptyInternalEnumerator_1_Photon_Bolt_EventReliableSendBuffer_Node__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_FocusController_FocusedElement___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_FocusController_FocusedElement___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_FocusController_FocusedElement_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_FocusController_FocusedElement__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_FocusController_FocusedElement_ * __this, MethodInfo * method)); @@ -141283,6 +156011,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_FocusController_FocusedElement__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_FocusController_FocusedElement_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_FocusController_FocusedElement__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_FocusController_FocusedElement_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142C760, FocusController_FocusedElement, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_FocusController_FocusedElement__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_FocusController_FocusedElement_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05E78, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_FocusController_FocusedElement__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Pathfinding_Funnel_PathPart___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_Funnel_PathPart___ctor, (Array_EmptyInternalEnumerator_1_Pathfinding_Funnel_PathPart_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_Funnel_PathPart__Dispose, (Array_EmptyInternalEnumerator_1_Pathfinding_Funnel_PathPart_ * __this, MethodInfo * method)); @@ -141290,6 +156019,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Pathfinding_Funnel DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_Funnel_PathPart__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Pathfinding_Funnel_PathPart_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C970, Object *, Array_EmptyInternalEnumerator_1_Pathfinding_Funnel_PathPart__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Pathfinding_Funnel_PathPart_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142C7C0, Funnel_PathPart, Array_EmptyInternalEnumerator_1_Pathfinding_Funnel_PathPart__get_Current, (Array_EmptyInternalEnumerator_1_Pathfinding_Funnel_PathPart_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05E70, Array_EmptyInternalEnumerator_1_Pathfinding_Funnel_PathPart__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Pathfinding_GraphUpdateProcessor_GUOSingle___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_GraphUpdateProcessor_GUOSingle___ctor, (Array_EmptyInternalEnumerator_1_Pathfinding_GraphUpdateProcessor_GUOSingle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_GraphUpdateProcessor_GUOSingle__Dispose, (Array_EmptyInternalEnumerator_1_Pathfinding_GraphUpdateProcessor_GUOSingle_ * __this, MethodInfo * method)); @@ -141297,6 +156027,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Pathfinding_GraphU DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_GraphUpdateProcessor_GUOSingle__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Pathfinding_GraphUpdateProcessor_GUOSingle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_Pathfinding_GraphUpdateProcessor_GUOSingle__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Pathfinding_GraphUpdateProcessor_GUOSingle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142C820, GraphUpdateProcessor_GUOSingle, Array_EmptyInternalEnumerator_1_Pathfinding_GraphUpdateProcessor_GUOSingle__get_Current, (Array_EmptyInternalEnumerator_1_Pathfinding_GraphUpdateProcessor_GUOSingle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05E68, Array_EmptyInternalEnumerator_1_Pathfinding_GraphUpdateProcessor_GUOSingle__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * __this, MethodInfo * method)); @@ -141304,6 +156035,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_InputS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142C880, HID_HIDCollectionDescriptor, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05E60, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * __this, MethodInfo * method)); @@ -141311,6 +156043,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_InputS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141EAE0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142C8E0, HID_HIDElementDescriptor, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05E58, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_ * __this, MethodInfo * method)); @@ -141318,6 +156051,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_InputS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141FA10, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142C940, HIDParser_HIDReportData, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05ED0, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage_ * __this, MethodInfo * method)); @@ -141325,6 +156059,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_InputS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BC50, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142C9A0, HIDSupport_HIDPageUsage, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05EC8, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Rewired_HID_HIDTouchpad_TouchData___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_HID_HIDTouchpad_TouchData___ctor, (Array_EmptyInternalEnumerator_1_Rewired_HID_HIDTouchpad_TouchData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_HID_HIDTouchpad_TouchData__Dispose, (Array_EmptyInternalEnumerator_1_Rewired_HID_HIDTouchpad_TouchData_ * __this, MethodInfo * method)); @@ -141332,6 +156067,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Rewired_HID_HIDTou DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_HID_HIDTouchpad_TouchData__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Rewired_HID_HIDTouchpad_TouchData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C970, Object *, Array_EmptyInternalEnumerator_1_Rewired_HID_HIDTouchpad_TouchData__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Rewired_HID_HIDTouchpad_TouchData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142CA00, HIDTouchpad_TouchData, Array_EmptyInternalEnumerator_1_Rewired_HID_HIDTouchpad_TouchData__get_Current, (Array_EmptyInternalEnumerator_1_Rewired_HID_HIDTouchpad_TouchData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05EC0, Array_EmptyInternalEnumerator_1_Rewired_HID_HIDTouchpad_TouchData__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere___ctor, (Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere__Dispose, (Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere_ * __this, MethodInfo * method)); @@ -141339,6 +156075,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesig DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C970, Object *, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142CA60, HairDesignerColliderBase_DualSphere, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere__get_Current, (Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05EB8, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_DualSphereCollider___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_DualSphereCollider___ctor, (Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_DualSphereCollider_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_DualSphereCollider__Dispose, (Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_DualSphereCollider_ * __this, MethodInfo * method)); @@ -141346,6 +156083,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesig DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_DualSphereCollider__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_DualSphereCollider_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_DualSphereCollider__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_DualSphereCollider_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142CAC0, HairDesignerGeneratorAdvancedFurBase_DualSphereCollider, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_DualSphereCollider__get_Current, (Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_DualSphereCollider_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05EB0, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_DualSphereCollider__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_SkinData___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_SkinData___ctor, (Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_SkinData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_SkinData__Dispose, (Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_SkinData_ * __this, MethodInfo * method)); @@ -141353,6 +156091,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesig DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_SkinData__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_SkinData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_SkinData__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_SkinData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142CB20, HairDesignerGeneratorAdvancedFurBase_SkinData, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_SkinData__get_Current, (Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_SkinData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05EA8, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_SkinData__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData___ctor, (Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__Dispose, (Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * __this, MethodInfo * method)); @@ -141360,6 +156099,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesig DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142CBE0, Object *, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142CB80, HairDesignerGeneratorFurShellBase_BufferData, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__get_Current, (Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05EA0, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_SkinData___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_SkinData___ctor, (Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_SkinData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_SkinData__Dispose, (Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_SkinData_ * __this, MethodInfo * method)); @@ -141367,6 +156107,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesig DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_SkinData__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_SkinData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_SkinData__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_SkinData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142CC40, HairDesignerGeneratorFurShellBase_SkinData, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_SkinData__get_Current, (Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_SkinData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05E98, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_SkinData__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq16___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq16___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq16_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq16__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq16_ * __this, MethodInfo * method)); @@ -141374,6 +156115,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Render DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq16__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq16_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142AC40, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq16__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq16_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142CCA0, Hammersley_Hammersley2dSeq16, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq16__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq16_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05E10, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq16__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq256___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq256___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq256_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq256__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq256_ * __this, MethodInfo * method)); @@ -141381,6 +156123,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Render DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq256__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq256_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142CD60, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq256__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq256_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142CD00, Hammersley_Hammersley2dSeq256, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq256__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq256_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05E08, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq256__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq32___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq32___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq32__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq32_ * __this, MethodInfo * method)); @@ -141388,6 +156131,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Render DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq32__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142CE80, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq32__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142CE20, Hammersley_Hammersley2dSeq32, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq32__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05E00, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq32__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq64___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq64___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq64_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq64__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq64_ * __this, MethodInfo * method)); @@ -141395,6 +156139,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Render DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq64__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq64_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142CFC0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq64__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq64_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142CF60, Hammersley_Hammersley2dSeq64, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq64__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq64_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05DF8, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq64__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Collections_Hashtable_bucket___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Hashtable_bucket___ctor, (Array_EmptyInternalEnumerator_1_System_Collections_Hashtable_bucket_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Hashtable_bucket__Dispose, (Array_EmptyInternalEnumerator_1_System_Collections_Hashtable_bucket_ * __this, MethodInfo * method)); @@ -141402,6 +156147,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Collections DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Collections_Hashtable_bucket__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Collections_Hashtable_bucket_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Collections_Hashtable_bucket__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Hashtable_bucket_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142D0A0, Hashtable_bucket, Array_EmptyInternalEnumerator_1_System_Collections_Hashtable_bucket__get_Current, (Array_EmptyInternalEnumerator_1_System_Collections_Hashtable_bucket_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05DF0, Array_EmptyInternalEnumerator_1_System_Collections_Hashtable_bucket__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Cinemachine_Utility_HeadingTracker_Item___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Cinemachine_Utility_HeadingTracker_Item___ctor, (Array_EmptyInternalEnumerator_1_Cinemachine_Utility_HeadingTracker_Item_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Cinemachine_Utility_HeadingTracker_Item__Dispose, (Array_EmptyInternalEnumerator_1_Cinemachine_Utility_HeadingTracker_Item_ * __this, MethodInfo * method)); @@ -141409,6 +156155,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Cinemachine_Utilit DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Cinemachine_Utility_HeadingTracker_Item__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Cinemachine_Utility_HeadingTracker_Item_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C7D0, Object *, Array_EmptyInternalEnumerator_1_Cinemachine_Utility_HeadingTracker_Item__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Cinemachine_Utility_HeadingTracker_Item_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142D100, HeadingTracker_Item, Array_EmptyInternalEnumerator_1_Cinemachine_Utility_HeadingTracker_Item__get_Current, (Array_EmptyInternalEnumerator_1_Cinemachine_Utility_HeadingTracker_Item_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05DE8, Array_EmptyInternalEnumerator_1_Cinemachine_Utility_HeadingTracker_Item__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_UI_HealthFlashMonitor_Flash___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_UI_HealthFlashMonitor_Flash___ctor, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_UI_HealthFlashMonitor_Flash_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_UI_HealthFlashMonitor_Flash__Dispose, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_UI_HealthFlashMonitor_Flash_ * __this, MethodInfo * method)); @@ -141416,6 +156163,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Opsive_UltimateCha DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_UI_HealthFlashMonitor_Flash__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_UI_HealthFlashMonitor_Flash_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C530, Object *, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_UI_HealthFlashMonitor_Flash__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_UI_HealthFlashMonitor_Flash_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142D160, HealthFlashMonitor_Flash, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_UI_HealthFlashMonitor_Flash__get_Current, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_UI_HealthFlashMonitor_Flash_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05DE0, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_UI_HealthFlashMonitor_Flash__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Globalization_HebrewNumber_HebrewValue___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Globalization_HebrewNumber_HebrewValue___ctor, (Array_EmptyInternalEnumerator_1_System_Globalization_HebrewNumber_HebrewValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Globalization_HebrewNumber_HebrewValue__Dispose, (Array_EmptyInternalEnumerator_1_System_Globalization_HebrewNumber_HebrewValue_ * __this, MethodInfo * method)); @@ -141423,6 +156171,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Globalizati DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Globalization_HebrewNumber_HebrewValue__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Globalization_HebrewNumber_HebrewValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01424950, Object *, Array_EmptyInternalEnumerator_1_System_Globalization_HebrewNumber_HebrewValue__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Globalization_HebrewNumber_HebrewValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142D1C0, HebrewNumber_HebrewValue, Array_EmptyInternalEnumerator_1_System_Globalization_HebrewNumber_HebrewValue__get_Current, (Array_EmptyInternalEnumerator_1_System_Globalization_HebrewNumber_HebrewValue_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05DD8, Array_EmptyInternalEnumerator_1_System_Globalization_HebrewNumber_HebrewValue__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingJson___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingJson___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingJson_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingJson__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingJson_ * __this, MethodInfo * method)); @@ -141430,6 +156179,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_InputS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingJson__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingJson_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141CB70, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingJson__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingJson_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142D220, InputActionMap_BindingJson, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingJson__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingJson_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05E50, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingJson__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * __this, MethodInfo * method)); @@ -141437,6 +156187,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_InputS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C530, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142D280, InputActionMap_BindingOverrideJson, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05E48, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadActionJson___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadActionJson___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadActionJson_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadActionJson__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadActionJson_ * __this, MethodInfo * method)); @@ -141444,6 +156195,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_InputS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadActionJson__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadActionJson_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141EAE0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadActionJson__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadActionJson_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142D2E0, InputActionMap_ReadActionJson, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadActionJson__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadActionJson_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05E40, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadActionJson__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadMapJson___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadMapJson___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadMapJson_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadMapJson__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadMapJson_ * __this, MethodInfo * method)); @@ -141451,6 +156203,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_InputS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadMapJson__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadMapJson_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadMapJson__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadMapJson_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142D340, InputActionMap_ReadMapJson, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadMapJson__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadMapJson_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05E38, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadMapJson__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteActionJson___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteActionJson___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteActionJson_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteActionJson__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteActionJson_ * __this, MethodInfo * method)); @@ -141458,6 +156211,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_InputS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteActionJson__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteActionJson_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141DC50, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteActionJson__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteActionJson_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142D3A0, InputActionMap_WriteActionJson, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteActionJson__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteActionJson_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05E30, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteActionJson__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteMapJson___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteMapJson___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteMapJson_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteMapJson__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteMapJson_ * __this, MethodInfo * method)); @@ -141465,6 +156219,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_InputS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteMapJson__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteMapJson_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteMapJson__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteMapJson_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142D400, InputActionMap_WriteMapJson, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteMapJson__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteMapJson_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05E28, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteMapJson__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_Parameter___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_Parameter___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_Parameter_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_Parameter__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_Parameter_ * __this, MethodInfo * method)); @@ -141472,6 +156227,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_InputS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_Parameter__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_Parameter_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_Parameter__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_Parameter_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142D460, InputActionRebindingExtensions_Parameter, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_Parameter__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_Parameter_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05E20, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_Parameter__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride_ * __this, MethodInfo * method)); @@ -141479,6 +156235,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_InputS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142D520, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142D4C0, InputActionRebindingExtensions_ParameterOverride, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05E18, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_InputActionTrace_ActionEventPtr___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_InputActionTrace_ActionEventPtr___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_InputActionTrace_ActionEventPtr_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_InputActionTrace_ActionEventPtr__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_InputActionTrace_ActionEventPtr_ * __this, MethodInfo * method)); @@ -141486,6 +156243,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_InputS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_InputActionTrace_ActionEventPtr__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_InputActionTrace_ActionEventPtr_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_InputActionTrace_ActionEventPtr__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_InputActionTrace_ActionEventPtr_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142D5E0, InputActionTrace_ActionEventPtr, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_InputActionTrace_ActionEventPtr__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_InputActionTrace_ActionEventPtr_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05D90, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_InputActionTrace_ActionEventPtr__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputBindingCompositeContext_PartBinding___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputBindingCompositeContext_PartBinding___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputBindingCompositeContext_PartBinding_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputBindingCompositeContext_PartBinding__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputBindingCompositeContext_PartBinding_ * __this, MethodInfo * method)); @@ -141493,6 +156251,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_InputS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputBindingCompositeContext_PartBinding__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputBindingCompositeContext_PartBinding_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputBindingCompositeContext_PartBinding__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputBindingCompositeContext_PartBinding_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142D640, InputBindingCompositeContext_PartBinding, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputBindingCompositeContext_PartBinding__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputBindingCompositeContext_PartBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05D88, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputBindingCompositeContext_PartBinding__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); @@ -141500,6 +156259,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_InputS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01427F70, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142D6A0, InputControlLayout_ControlItem, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05D80, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlPath_ParsedPathComponent___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlPath_ParsedPathComponent___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlPath_ParsedPathComponent_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlPath_ParsedPathComponent__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlPath_ParsedPathComponent_ * __this, MethodInfo * method)); @@ -141507,6 +156267,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_InputS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlPath_ParsedPathComponent__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlPath_ParsedPathComponent_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014211F0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlPath_ParsedPathComponent__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlPath_ParsedPathComponent_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142D700, InputControlPath_ParsedPathComponent, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlPath_ParsedPathComponent__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlPath_ParsedPathComponent_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05D78, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlPath_ParsedPathComponent__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement_ * __this, MethodInfo * method)); @@ -141514,6 +156275,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_InputS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142D760, InputControlScheme_DeviceRequirement, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05D70, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson_ * __this, MethodInfo * method)); @@ -141521,6 +156283,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_InputS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142D7C0, InputControlScheme_SchemeJson, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05D68, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputDevice_ControlBitRangeNode___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputDevice_ControlBitRangeNode___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputDevice_ControlBitRangeNode_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputDevice_ControlBitRangeNode__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputDevice_ControlBitRangeNode_ * __this, MethodInfo * method)); @@ -141528,6 +156291,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_InputS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputDevice_ControlBitRangeNode__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputDevice_ControlBitRangeNode_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142D880, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputDevice_ControlBitRangeNode__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputDevice_ControlBitRangeNode_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142D820, InputDevice_ControlBitRangeNode, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputDevice_ControlBitRangeNode__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputDevice_ControlBitRangeNode_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05D60, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputDevice_ControlBitRangeNode__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo_ * __this, MethodInfo * method)); @@ -141535,6 +156299,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_InputS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142D900, InputEventTrace_DeviceInfo, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05D58, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputManager_AvailableDevice___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputManager_AvailableDevice___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputManager_AvailableDevice_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputManager_AvailableDevice__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputManager_AvailableDevice_ * __this, MethodInfo * method)); @@ -141542,6 +156307,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_InputS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputManager_AvailableDevice__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputManager_AvailableDevice_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141CB70, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputManager_AvailableDevice__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputManager_AvailableDevice_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142D960, InputManager_AvailableDevice, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputManager_AvailableDevice__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputManager_AvailableDevice_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05DD0, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputManager_AvailableDevice__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorListener___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorListener___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorListener_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorListener__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorListener_ * __this, MethodInfo * method)); @@ -141549,6 +156315,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_InputS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorListener__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorListener_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorListener__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorListener_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142D9C0, InputManager_StateChangeMonitorListener, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorListener__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorListener_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05DC8, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorListener__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout_ * __this, MethodInfo * method)); @@ -141556,6 +156323,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_InputS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C530, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142DA20, InputManager_StateChangeMonitorTimeout, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05DC0, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorsForDevice___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorsForDevice___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorsForDevice_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorsForDevice__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorsForDevice_ * __this, MethodInfo * method)); @@ -141563,6 +156331,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_InputS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorsForDevice__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorsForDevice_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141DC50, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorsForDevice__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorsForDevice_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142DA80, InputManager_StateChangeMonitorsForDevice, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorsForDevice__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorsForDevice_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05DB8, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorsForDevice__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteInputDevice___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteInputDevice___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteInputDevice_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteInputDevice__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteInputDevice_ * __this, MethodInfo * method)); @@ -141570,6 +156339,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_InputS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteInputDevice__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteInputDevice_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141CB70, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteInputDevice__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteInputDevice_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142DAE0, InputRemoting_RemoteInputDevice, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteInputDevice__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteInputDevice_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05DB0, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteInputDevice__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteSender___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteSender___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteSender_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteSender__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteSender_ * __this, MethodInfo * method)); @@ -141577,6 +156347,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_InputS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteSender__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteSender_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteSender__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteSender_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142DB40, InputRemoting_RemoteSender, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteSender__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteSender_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05DA8, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteSender__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_Record___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_Record___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_Record_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_Record__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_Record_ * __this, MethodInfo * method)); @@ -141584,6 +156355,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_InputS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_Record__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_Record_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_Record__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_Record_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142DBA0, InputStateHistory_Record, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_Record__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_Record_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05DA0, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_Record__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ * __this, MethodInfo * method)); @@ -141591,6 +156363,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_InputS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BC50, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142DC00, InputSystemUIInputModule_InputActionReferenceState, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05D98, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_ * __this, MethodInfo * method)); @@ -141598,6 +156371,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_InputS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142DC60, InputUser_OngoingAccountSelection, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05D10, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_UserData___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_UserData___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_UserData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_UserData__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_UserData_ * __this, MethodInfo * method)); @@ -141605,6 +156379,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_InputS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_UserData__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_UserData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142DD20, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_UserData__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_UserData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142DCC0, InputUser_UserData, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_UserData__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_UserData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05D08, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_UserData__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * __this, MethodInfo * method)); @@ -141612,6 +156387,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142DE10, InternalTreeView_TreeViewItemWrapper, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05D00, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_BehaviorDesigner_Runtime_JSONDeserialization_TaskField___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_BehaviorDesigner_Runtime_JSONDeserialization_TaskField___ctor, (Array_EmptyInternalEnumerator_1_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_BehaviorDesigner_Runtime_JSONDeserialization_TaskField__Dispose, (Array_EmptyInternalEnumerator_1_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_ * __this, MethodInfo * method)); @@ -141619,6 +156395,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_BehaviorDesigner_R DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_BehaviorDesigner_Runtime_JSONDeserialization_TaskField__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_BehaviorDesigner_Runtime_JSONDeserialization_TaskField__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142DE70, JSONDeserialization_TaskField, Array_EmptyInternalEnumerator_1_BehaviorDesigner_Runtime_JSONDeserialization_TaskField__get_Current, (Array_EmptyInternalEnumerator_1_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05CF8, Array_EmptyInternalEnumerator_1_BehaviorDesigner_Runtime_JSONDeserialization_TaskField__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV___ctor, (Array_EmptyInternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__Dispose, (Array_EmptyInternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV_ * __this, MethodInfo * method)); @@ -141626,6 +156403,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_JijFgftvqSztIyGNBB DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142DED0, JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV, Array_EmptyInternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__get_Current, (Array_EmptyInternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05CF0, Array_EmptyInternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb___ctor, (Array_EmptyInternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__Dispose, (Array_EmptyInternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ * __this, MethodInfo * method)); @@ -141633,6 +156411,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_JijFgftvqSztIyGNBB DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141EAE0, Object *, Array_EmptyInternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142DF30, JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb, Array_EmptyInternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__get_Current, (Array_EmptyInternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05CE8, Array_EmptyInternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux___ctor, (Array_EmptyInternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__Dispose, (Array_EmptyInternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux_ * __this, MethodInfo * method)); @@ -141640,6 +156419,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_JijFgftvqSztIyGNBB DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142DF90, JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux, Array_EmptyInternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__get_Current, (Array_EmptyInternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05CE0, Array_EmptyInternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, MethodInfo * method)); @@ -141647,6 +156427,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_InputS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141EAE0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142DFF0, JsonParser_JsonValue, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05CD8, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Pathfinding_LayerGridGraph_HeightSample___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_LayerGridGraph_HeightSample___ctor, (Array_EmptyInternalEnumerator_1_Pathfinding_LayerGridGraph_HeightSample_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_LayerGridGraph_HeightSample__Dispose, (Array_EmptyInternalEnumerator_1_Pathfinding_LayerGridGraph_HeightSample_ * __this, MethodInfo * method)); @@ -141654,6 +156435,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Pathfinding_LayerG DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_LayerGridGraph_HeightSample__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Pathfinding_LayerGridGraph_HeightSample_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141CB70, Object *, Array_EmptyInternalEnumerator_1_Pathfinding_LayerGridGraph_HeightSample__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Pathfinding_LayerGridGraph_HeightSample_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142E050, LayerGridGraph_HeightSample, Array_EmptyInternalEnumerator_1_Pathfinding_LayerGridGraph_HeightSample__get_Current, (Array_EmptyInternalEnumerator_1_Pathfinding_LayerGridGraph_HeightSample_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05D50, Array_EmptyInternalEnumerator_1_Pathfinding_LayerGridGraph_HeightSample__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Dissonance_Logs_LogMessage___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Dissonance_Logs_LogMessage___ctor, (Array_EmptyInternalEnumerator_1_Dissonance_Logs_LogMessage_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Dissonance_Logs_LogMessage__Dispose, (Array_EmptyInternalEnumerator_1_Dissonance_Logs_LogMessage_ * __this, MethodInfo * method)); @@ -141661,6 +156443,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Dissonance_Logs_Lo DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Dissonance_Logs_LogMessage__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Dissonance_Logs_LogMessage_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_Dissonance_Logs_LogMessage__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Dissonance_Logs_LogMessage_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142E0B0, Logs_LogMessage_1, Array_EmptyInternalEnumerator_1_Dissonance_Logs_LogMessage__get_Current, (Array_EmptyInternalEnumerator_1_Dissonance_Logs_LogMessage_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05D48, Array_EmptyInternalEnumerator_1_Dissonance_Logs_LogMessage__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage___ctor, (Array_EmptyInternalEnumerator_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__Dispose, (Array_EmptyInternalEnumerator_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * __this, MethodInfo * method)); @@ -141668,6 +156451,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_PlaceholderSoftwar DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142E110, Logs_LogMessage, Array_EmptyInternalEnumerator_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__get_Current, (Array_EmptyInternalEnumerator_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05D40, Array_EmptyInternalEnumerator_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_MagicLightProbes_MagicLightProbes_VolumeParameters___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_MagicLightProbes_MagicLightProbes_VolumeParameters___ctor, (Array_EmptyInternalEnumerator_1_MagicLightProbes_MagicLightProbes_VolumeParameters_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_MagicLightProbes_MagicLightProbes_VolumeParameters__Dispose, (Array_EmptyInternalEnumerator_1_MagicLightProbes_MagicLightProbes_VolumeParameters_ * __this, MethodInfo * method)); @@ -141675,6 +156459,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_MagicLightProbes_M DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_MagicLightProbes_MagicLightProbes_VolumeParameters__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_MagicLightProbes_MagicLightProbes_VolumeParameters_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C680, Object *, Array_EmptyInternalEnumerator_1_MagicLightProbes_MagicLightProbes_VolumeParameters__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_MagicLightProbes_MagicLightProbes_VolumeParameters_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142E170, MagicLightProbes_VolumeParameters, Array_EmptyInternalEnumerator_1_MagicLightProbes_MagicLightProbes_VolumeParameters__get_Current, (Array_EmptyInternalEnumerator_1_MagicLightProbes_MagicLightProbes_VolumeParameters_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05D38, Array_EmptyInternalEnumerator_1_MagicLightProbes_MagicLightProbes_VolumeParameters__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Net_Mail_MailHeaderInfo_HeaderInfo___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Net_Mail_MailHeaderInfo_HeaderInfo___ctor, (Array_EmptyInternalEnumerator_1_System_Net_Mail_MailHeaderInfo_HeaderInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Net_Mail_MailHeaderInfo_HeaderInfo__Dispose, (Array_EmptyInternalEnumerator_1_System_Net_Mail_MailHeaderInfo_HeaderInfo_ * __this, MethodInfo * method)); @@ -141682,6 +156467,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Net_Mail_Ma DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Net_Mail_MailHeaderInfo_HeaderInfo__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Net_Mail_MailHeaderInfo_HeaderInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Net_Mail_MailHeaderInfo_HeaderInfo__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Net_Mail_MailHeaderInfo_HeaderInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142E1D0, MailHeaderInfo_HeaderInfo, Array_EmptyInternalEnumerator_1_System_Net_Mail_MailHeaderInfo_HeaderInfo__get_Current, (Array_EmptyInternalEnumerator_1_System_Net_Mail_MailHeaderInfo_HeaderInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05D30, Array_EmptyInternalEnumerator_1_System_Net_Mail_MailHeaderInfo_HeaderInfo__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___ctor, (Array_EmptyInternalEnumerator_1_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__Dispose, (Array_EmptyInternalEnumerator_1_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ * __this, MethodInfo * method)); @@ -141689,6 +156475,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_ComponentMo DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142E230, MemberRelationshipService_RelationshipEntry, Array_EmptyInternalEnumerator_1_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__get_Current, (Array_EmptyInternalEnumerator_1_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05D28, Array_EmptyInternalEnumerator_1_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_MemoryHelpers_BitRegion___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_MemoryHelpers_BitRegion___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_MemoryHelpers_BitRegion_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_MemoryHelpers_BitRegion__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_MemoryHelpers_BitRegion_ * __this, MethodInfo * method)); @@ -141696,6 +156483,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_InputS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_MemoryHelpers_BitRegion__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_MemoryHelpers_BitRegion_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BC50, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_MemoryHelpers_BitRegion__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_MemoryHelpers_BitRegion_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142E290, MemoryHelpers_BitRegion, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_MemoryHelpers_BitRegion__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_MemoryHelpers_BitRegion_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05D20, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Utilities_MemoryHelpers_BitRegion__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData___ctor, (Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData__Dispose, (Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData_ * __this, MethodInfo * method)); @@ -141703,6 +156491,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesig DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141D1A0, Object *, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142E2F0, MotionSolver_GPUNodeData, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData__get_Current, (Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05D18, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo___ctor, (Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo__Dispose, (Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo_ * __this, MethodInfo * method)); @@ -141710,6 +156499,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesig DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141CB70, Object *, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142E350, MotionSolver_GPUNodeInfo, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo__get_Current, (Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05C90, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPURootTransform___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPURootTransform___ctor, (Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPURootTransform_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPURootTransform__Dispose, (Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPURootTransform_ * __this, MethodInfo * method)); @@ -141717,6 +156507,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesig DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPURootTransform__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPURootTransform_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142E410, Object *, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPURootTransform__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPURootTransform_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142E3B0, MotionSolver_GPURootTransform, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPURootTransform__get_Current, (Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPURootTransform_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05C88, Array_EmptyInternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPURootTransform__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_Waypoint___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_Waypoint___ctor, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_Waypoint_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_Waypoint__Dispose, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_Waypoint_ * __this, MethodInfo * method)); @@ -141724,6 +156515,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Opsive_UltimateCha DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_Waypoint__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_Waypoint_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_Waypoint__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_Waypoint_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142E4F0, MovingPlatform_Waypoint, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_Waypoint__get_Current, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_Waypoint_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05C80, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_Waypoint__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_NightmareStyling_WallMaterial___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_NightmareStyling_WallMaterial___ctor, (Array_EmptyInternalEnumerator_1_NightmareStyling_WallMaterial_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_NightmareStyling_WallMaterial__Dispose, (Array_EmptyInternalEnumerator_1_NightmareStyling_WallMaterial_ * __this, MethodInfo * method)); @@ -141731,6 +156523,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_NightmareStyling_W DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_NightmareStyling_WallMaterial__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_NightmareStyling_WallMaterial_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_NightmareStyling_WallMaterial__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_NightmareStyling_WallMaterial_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142E550, NightmareStyling_WallMaterial, Array_EmptyInternalEnumerator_1_NightmareStyling_WallMaterial__get_Current, (Array_EmptyInternalEnumerator_1_NightmareStyling_WallMaterial_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05C78, Array_EmptyInternalEnumerator_1_NightmareStyling_WallMaterial__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Cinemachine_NoiseSettings_TransformNoiseParams___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Cinemachine_NoiseSettings_TransformNoiseParams___ctor, (Array_EmptyInternalEnumerator_1_Cinemachine_NoiseSettings_TransformNoiseParams_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Cinemachine_NoiseSettings_TransformNoiseParams__Dispose, (Array_EmptyInternalEnumerator_1_Cinemachine_NoiseSettings_TransformNoiseParams_ * __this, MethodInfo * method)); @@ -141738,6 +156531,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Cinemachine_NoiseS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Cinemachine_NoiseSettings_TransformNoiseParams__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Cinemachine_NoiseSettings_TransformNoiseParams_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C970, Object *, Array_EmptyInternalEnumerator_1_Cinemachine_NoiseSettings_TransformNoiseParams__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Cinemachine_NoiseSettings_TransformNoiseParams_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142E5B0, NoiseSettings_TransformNoiseParams, Array_EmptyInternalEnumerator_1_Cinemachine_NoiseSettings_TransformNoiseParams__get_Current, (Array_EmptyInternalEnumerator_1_Cinemachine_NoiseSettings_TransformNoiseParams_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05C70, Array_EmptyInternalEnumerator_1_Cinemachine_NoiseSettings_TransformNoiseParams__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_NolanBehaviour_OverlappedCollider___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_NolanBehaviour_OverlappedCollider___ctor, (Array_EmptyInternalEnumerator_1_NolanBehaviour_OverlappedCollider_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_NolanBehaviour_OverlappedCollider__Dispose, (Array_EmptyInternalEnumerator_1_NolanBehaviour_OverlappedCollider_ * __this, MethodInfo * method)); @@ -141745,6 +156539,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_NolanBehaviour_Ove DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_NolanBehaviour_OverlappedCollider__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_NolanBehaviour_OverlappedCollider_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_NolanBehaviour_OverlappedCollider__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_NolanBehaviour_OverlappedCollider_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142E610, NolanBehaviour_OverlappedCollider, Array_EmptyInternalEnumerator_1_NolanBehaviour_OverlappedCollider__get_Current, (Array_EmptyInternalEnumerator_1_NolanBehaviour_OverlappedCollider_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05C68, Array_EmptyInternalEnumerator_1_NolanBehaviour_OverlappedCollider__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Opsive_Shared_Game_ObjectPoolBase_PreloadedPrefab___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Opsive_Shared_Game_ObjectPoolBase_PreloadedPrefab___ctor, (Array_EmptyInternalEnumerator_1_Opsive_Shared_Game_ObjectPoolBase_PreloadedPrefab_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Opsive_Shared_Game_ObjectPoolBase_PreloadedPrefab__Dispose, (Array_EmptyInternalEnumerator_1_Opsive_Shared_Game_ObjectPoolBase_PreloadedPrefab_ * __this, MethodInfo * method)); @@ -141752,6 +156547,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Opsive_Shared_Game DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Opsive_Shared_Game_ObjectPoolBase_PreloadedPrefab__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Opsive_Shared_Game_ObjectPoolBase_PreloadedPrefab_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_Opsive_Shared_Game_ObjectPoolBase_PreloadedPrefab__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Opsive_Shared_Game_ObjectPoolBase_PreloadedPrefab_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142E670, ObjectPoolBase_PreloadedPrefab, Array_EmptyInternalEnumerator_1_Opsive_Shared_Game_ObjectPoolBase_PreloadedPrefab__get_Current, (Array_EmptyInternalEnumerator_1_Opsive_Shared_Game_ObjectPoolBase_PreloadedPrefab_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05C60, Array_EmptyInternalEnumerator_1_Opsive_Shared_Game_ObjectPoolBase_PreloadedPrefab__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo_ * __this, MethodInfo * method)); @@ -141759,6 +156555,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_InputS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C530, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142E6D0, OnScreenControl_OnScreenDeviceInfo, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05C58, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ * __this, MethodInfo * method)); @@ -141766,6 +156563,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_XR_Ope DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142E730, OpenXRInput_SerializedBinding, Array_EmptyInternalEnumerator_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05CD0, Array_EmptyInternalEnumerator_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_PackedPlayModeBuildLogs_RuntimeBuildLog___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_PackedPlayModeBuildLogs_RuntimeBuildLog___ctor, (Array_EmptyInternalEnumerator_1_PackedPlayModeBuildLogs_RuntimeBuildLog_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_PackedPlayModeBuildLogs_RuntimeBuildLog__Dispose, (Array_EmptyInternalEnumerator_1_PackedPlayModeBuildLogs_RuntimeBuildLog_ * __this, MethodInfo * method)); @@ -141773,6 +156571,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_PackedPlayModeBuil DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_PackedPlayModeBuildLogs_RuntimeBuildLog__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_PackedPlayModeBuildLogs_RuntimeBuildLog_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_PackedPlayModeBuildLogs_RuntimeBuildLog__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_PackedPlayModeBuildLogs_RuntimeBuildLog_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142E790, PackedPlayModeBuildLogs_RuntimeBuildLog, Array_EmptyInternalEnumerator_1_PackedPlayModeBuildLogs_RuntimeBuildLog__get_Current, (Array_EmptyInternalEnumerator_1_PackedPlayModeBuildLogs_RuntimeBuildLog_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05CC8, Array_EmptyInternalEnumerator_1_PackedPlayModeBuildLogs_RuntimeBuildLog__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_ParameterizedStrings_FormatParam___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_ParameterizedStrings_FormatParam___ctor, (Array_EmptyInternalEnumerator_1_ParameterizedStrings_FormatParam_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_ParameterizedStrings_FormatParam__Dispose, (Array_EmptyInternalEnumerator_1_ParameterizedStrings_FormatParam_ * __this, MethodInfo * method)); @@ -141780,6 +156579,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_ParameterizedStrin DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_ParameterizedStrings_FormatParam__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_ParameterizedStrings_FormatParam_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_ParameterizedStrings_FormatParam__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_ParameterizedStrings_FormatParam_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142E7F0, ParameterizedStrings_FormatParam, Array_EmptyInternalEnumerator_1_ParameterizedStrings_FormatParam__get_Current, (Array_EmptyInternalEnumerator_1_ParameterizedStrings_FormatParam_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05CC0, Array_EmptyInternalEnumerator_1_ParameterizedStrings_FormatParam__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_ParticleSystem_Particle___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_ParticleSystem_Particle___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_ParticleSystem_Particle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_ParticleSystem_Particle__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_ParticleSystem_Particle_ * __this, MethodInfo * method)); @@ -141787,6 +156587,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Partic DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_ParticleSystem_Particle__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_ParticleSystem_Particle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142E8B0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_ParticleSystem_Particle__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_ParticleSystem_Particle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142E850, ParticleSystem_Particle, Array_EmptyInternalEnumerator_1_UnityEngine_ParticleSystem_Particle__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_ParticleSystem_Particle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05CB8, Array_EmptyInternalEnumerator_1_UnityEngine_ParticleSystem_Particle__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_PlayerStatsController_Category___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_PlayerStatsController_Category___ctor, (Array_EmptyInternalEnumerator_1_PlayerStatsController_Category_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_PlayerStatsController_Category__Dispose, (Array_EmptyInternalEnumerator_1_PlayerStatsController_Category_ * __this, MethodInfo * method)); @@ -141794,6 +156595,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_PlayerStatsControl DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_PlayerStatsController_Category__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_PlayerStatsController_Category_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_PlayerStatsController_Category__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_PlayerStatsController_Category_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142E980, PlayerStatsController_Category, Array_EmptyInternalEnumerator_1_PlayerStatsController_Category__get_Current, (Array_EmptyInternalEnumerator_1_PlayerStatsController_Category_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05CB0, Array_EmptyInternalEnumerator_1_PlayerStatsController_Category__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Pathfinding_PointKDTree_Node___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_PointKDTree_Node___ctor, (Array_EmptyInternalEnumerator_1_Pathfinding_PointKDTree_Node_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_PointKDTree_Node__Dispose, (Array_EmptyInternalEnumerator_1_Pathfinding_PointKDTree_Node_ * __this, MethodInfo * method)); @@ -141801,6 +156603,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Pathfinding_PointK DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_PointKDTree_Node__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Pathfinding_PointKDTree_Node_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_Pathfinding_PointKDTree_Node__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Pathfinding_PointKDTree_Node_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142E9E0, PointKDTree_Node, Array_EmptyInternalEnumerator_1_Pathfinding_PointKDTree_Node__get_Current, (Array_EmptyInternalEnumerator_1_Pathfinding_PointKDTree_Node_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05CA8, Array_EmptyInternalEnumerator_1_Pathfinding_PointKDTree_Node__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_PointerDeviceState_PointerLocation___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_PointerDeviceState_PointerLocation___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_PointerDeviceState_PointerLocation_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_PointerDeviceState_PointerLocation__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_PointerDeviceState_PointerLocation_ * __this, MethodInfo * method)); @@ -141808,6 +156611,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_PointerDeviceState_PointerLocation__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_PointerDeviceState_PointerLocation_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_PointerDeviceState_PointerLocation__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_PointerDeviceState_PointerLocation_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142EA40, PointerDeviceState_PointerLocation, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_PointerDeviceState_PointerLocation__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_PointerDeviceState_PointerLocation_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05CA0, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_PointerDeviceState_PointerLocation__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick_ * __this, MethodInfo * method)); @@ -141815,6 +156619,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Experi DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142EAA0, ProbeBrickIndex_Brick, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05C98, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ * __this, MethodInfo * method)); @@ -141822,6 +156627,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Experi DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142EB00, ProbeBrickIndex_BrickMeta, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05C10, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_ * __this, MethodInfo * method)); @@ -141829,6 +156635,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Experi DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141D1A0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142EB60, ProbeBrickIndex_CellIndexUpdateInfo, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05C08, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick_ * __this, MethodInfo * method)); @@ -141836,6 +156643,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Experi DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C7D0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142EBC0, ProbeBrickIndex_ReservedBrick, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05C00, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta_ * __this, MethodInfo * method)); @@ -141843,6 +156651,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Experi DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142EC20, ProbeBrickIndex_VoxelMeta, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05BF8, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * __this, MethodInfo * method)); @@ -141850,6 +156659,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Experi DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141FA10, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142EC80, ProbeBrickPool_BrickChunkAlloc, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05BF0, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ * __this, MethodInfo * method)); @@ -141857,6 +156667,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Experi DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01424950, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142ECE0, ProbeReferenceVolume_RegId, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05BE8, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_ * __this, MethodInfo * method)); @@ -141864,6 +156675,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Experi DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141DC50, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142ED40, ProbeReferenceVolume_Volume, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05BE0, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem_ * __this, MethodInfo * method)); @@ -141871,6 +156683,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Experi DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142EDA0, ProbeVolumePerSceneData_SerializableAssetItem, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05BD8, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem_ * __this, MethodInfo * method)); @@ -141878,6 +156691,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Experi DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142EE00, ProbeVolumeSceneData_SerializableBoundItem, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05C50, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem_ * __this, MethodInfo * method)); @@ -141885,6 +156699,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Experi DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142EE60, ProbeVolumeSceneData_SerializableHasPVItem, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05C48, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings_ * __this, MethodInfo * method)); @@ -141892,6 +156707,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Experi DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C530, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142EEC0, ProbeVolumeSceneData_SerializablePVBakeSettings, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05C40, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile_ * __this, MethodInfo * method)); @@ -141899,6 +156715,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Experi DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142EF20, ProbeVolumeSceneData_SerializablePVProfile, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05C38, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UdpKit_Protocol_ProtocolClient_AckCallback___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UdpKit_Protocol_ProtocolClient_AckCallback___ctor, (Array_EmptyInternalEnumerator_1_UdpKit_Protocol_ProtocolClient_AckCallback_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UdpKit_Protocol_ProtocolClient_AckCallback__Dispose, (Array_EmptyInternalEnumerator_1_UdpKit_Protocol_ProtocolClient_AckCallback_ * __this, MethodInfo * method)); @@ -141906,6 +156723,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UdpKit_Protocol_Pr DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UdpKit_Protocol_ProtocolClient_AckCallback__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UdpKit_Protocol_ProtocolClient_AckCallback_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C530, Object *, Array_EmptyInternalEnumerator_1_UdpKit_Protocol_ProtocolClient_AckCallback__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UdpKit_Protocol_ProtocolClient_AckCallback_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142EF80, ProtocolClient_AckCallback, Array_EmptyInternalEnumerator_1_UdpKit_Protocol_ProtocolClient_AckCallback__get_Current, (Array_EmptyInternalEnumerator_1_UdpKit_Protocol_ProtocolClient_AckCallback_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05C30, Array_EmptyInternalEnumerator_1_UdpKit_Protocol_ProtocolClient_AckCallback__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UdpKit_Protocol_ProtocolClient_MsgHandler___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UdpKit_Protocol_ProtocolClient_MsgHandler___ctor, (Array_EmptyInternalEnumerator_1_UdpKit_Protocol_ProtocolClient_MsgHandler_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UdpKit_Protocol_ProtocolClient_MsgHandler__Dispose, (Array_EmptyInternalEnumerator_1_UdpKit_Protocol_ProtocolClient_MsgHandler_ * __this, MethodInfo * method)); @@ -141913,6 +156731,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UdpKit_Protocol_Pr DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UdpKit_Protocol_ProtocolClient_MsgHandler__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UdpKit_Protocol_ProtocolClient_MsgHandler_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C530, Object *, Array_EmptyInternalEnumerator_1_UdpKit_Protocol_ProtocolClient_MsgHandler__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UdpKit_Protocol_ProtocolClient_MsgHandler_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142EFE0, ProtocolClient_MsgHandler, Array_EmptyInternalEnumerator_1_UdpKit_Protocol_ProtocolClient_MsgHandler__get_Current, (Array_EmptyInternalEnumerator_1_UdpKit_Protocol_ProtocolClient_MsgHandler_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05C28, Array_EmptyInternalEnumerator_1_UdpKit_Protocol_ProtocolClient_MsgHandler__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Pathfinding_RVO_RVOQuadtree_Node___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_RVO_RVOQuadtree_Node___ctor, (Array_EmptyInternalEnumerator_1_Pathfinding_RVO_RVOQuadtree_Node_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_RVO_RVOQuadtree_Node__Dispose, (Array_EmptyInternalEnumerator_1_Pathfinding_RVO_RVOQuadtree_Node_ * __this, MethodInfo * method)); @@ -141920,6 +156739,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Pathfinding_RVO_RV DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_RVO_RVOQuadtree_Node__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Pathfinding_RVO_RVOQuadtree_Node_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_Pathfinding_RVO_RVOQuadtree_Node__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Pathfinding_RVO_RVOQuadtree_Node_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142F040, RVOQuadtree_Node, Array_EmptyInternalEnumerator_1_Pathfinding_RVO_RVOQuadtree_Node__get_Current, (Array_EmptyInternalEnumerator_1_Pathfinding_RVO_RVOQuadtree_Node_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05C20, Array_EmptyInternalEnumerator_1_Pathfinding_RVO_RVOQuadtree_Node__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Text_RegularExpressions_Regex_CachedCodeEntryKey___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Text_RegularExpressions_Regex_CachedCodeEntryKey___ctor, (Array_EmptyInternalEnumerator_1_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Text_RegularExpressions_Regex_CachedCodeEntryKey__Dispose, (Array_EmptyInternalEnumerator_1_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_ * __this, MethodInfo * method)); @@ -141927,6 +156747,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Text_Regula DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Text_RegularExpressions_Regex_CachedCodeEntryKey__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Text_RegularExpressions_Regex_CachedCodeEntryKey__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142F0A0, Regex_CachedCodeEntryKey, Array_EmptyInternalEnumerator_1_System_Text_RegularExpressions_Regex_CachedCodeEntryKey__get_Current, (Array_EmptyInternalEnumerator_1_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05C18, Array_EmptyInternalEnumerator_1_System_Text_RegularExpressions_Regex_CachedCodeEntryKey__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_LowerCaseMapping___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_LowerCaseMapping___ctor, (Array_EmptyInternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_LowerCaseMapping_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_LowerCaseMapping__Dispose, (Array_EmptyInternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_LowerCaseMapping_ * __this, MethodInfo * method)); @@ -141934,6 +156755,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Text_Regula DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_LowerCaseMapping__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_LowerCaseMapping_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141FA10, Object *, Array_EmptyInternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_LowerCaseMapping__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_LowerCaseMapping_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142F100, RegexCharClass_LowerCaseMapping, Array_EmptyInternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_LowerCaseMapping__get_Current, (Array_EmptyInternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_LowerCaseMapping_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05B90, Array_EmptyInternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_LowerCaseMapping__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_SingleRange___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_SingleRange___ctor, (Array_EmptyInternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__Dispose, (Array_EmptyInternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * __this, MethodInfo * method)); @@ -141941,6 +156763,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Text_Regula DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01424950, Object *, Array_EmptyInternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142F160, RegexCharClass_SingleRange, Array_EmptyInternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__get_Current, (Array_EmptyInternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05B88, Array_EmptyInternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * __this, MethodInfo * method)); @@ -141948,6 +156771,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01420390, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142F1C0, RenderChain_RenderNodeData, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05B80, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo_ * __this, MethodInfo * method)); @@ -141955,6 +156779,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Experi DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141EAE0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142F220, RenderGraph_CompiledPassInfo, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05B78, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo_ * __this, MethodInfo * method)); @@ -141962,6 +156787,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Experi DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142F280, RenderGraph_CompiledResourceInfo, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05B70, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData_ * __this, MethodInfo * method)); @@ -141969,6 +156795,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Experi DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142F2E0, RenderGraphDebugData_PassDebugData, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05B60, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData_ * __this, MethodInfo * method)); @@ -141976,6 +156803,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Experi DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C530, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142F340, RenderGraphDebugData_ResourceDebugData, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05B50, Array_EmptyInternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest_ * __this, MethodInfo * method)); @@ -141983,6 +156811,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Resour DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142F3A0, ResourceManager_DeferredCallbackRegisterRequest, Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05B40, Array_EmptyInternalEnumerator_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Pathfinding_Util_RetainedGizmos_MeshWithHash___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_Util_RetainedGizmos_MeshWithHash___ctor, (Array_EmptyInternalEnumerator_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_Util_RetainedGizmos_MeshWithHash__Dispose, (Array_EmptyInternalEnumerator_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * __this, MethodInfo * method)); @@ -141990,6 +156819,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Pathfinding_Util_R DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Pathfinding_Util_RetainedGizmos_MeshWithHash__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_Pathfinding_Util_RetainedGizmos_MeshWithHash__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142F400, RetainedGizmos_MeshWithHash, Array_EmptyInternalEnumerator_1_Pathfinding_Util_RetainedGizmos_MeshWithHash__get_Current, (Array_EmptyInternalEnumerator_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05BD0, Array_EmptyInternalEnumerator_1_Pathfinding_Util_RetainedGizmos_MeshWithHash__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_SendMouseEvents_HitInfo___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_SendMouseEvents_HitInfo___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_SendMouseEvents_HitInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_SendMouseEvents_HitInfo__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_SendMouseEvents_HitInfo_ * __this, MethodInfo * method)); @@ -141997,6 +156827,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_SendMo DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_SendMouseEvents_HitInfo__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_SendMouseEvents_HitInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_SendMouseEvents_HitInfo__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_SendMouseEvents_HitInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142F460, SendMouseEvents_HitInfo, Array_EmptyInternalEnumerator_1_UnityEngine_SendMouseEvents_HitInfo__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_SendMouseEvents_HitInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05BC8, Array_EmptyInternalEnumerator_1_UnityEngine_SendMouseEvents_HitInfo__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext___ctor, (Array_EmptyInternalEnumerator_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext__Dispose, (Array_EmptyInternalEnumerator_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext_ * __this, MethodInfo * method)); @@ -142004,6 +156835,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Xml_Schema_ DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C530, Object *, Array_EmptyInternalEnumerator_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142F4C0, SequenceNode_SequenceConstructPosContext, Array_EmptyInternalEnumerator_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext__get_Current, (Array_EmptyInternalEnumerator_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05BC0, Array_EmptyInternalEnumerator_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_Field___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_Field___ctor, (Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_Field_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_Field__Dispose, (Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_Field_ * __this, MethodInfo * method)); @@ -142011,6 +156843,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Rewired_Utils_Clas DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_Field__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_Field_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_Field__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_Field_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142F520, SerializedObject_Field, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_Field__get_Current, (Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_Field_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05BB8, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_Field__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___ctor, (Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__Dispose, (Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, MethodInfo * method)); @@ -142018,6 +156851,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Rewired_Utils_Clas DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142F580, SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__get_Current, (Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05BB0, Array_EmptyInternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_SlotEquip_ItemDefinitionStateName___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_SlotEquip_ItemDefinitionStateName___ctor, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_SlotEquip_ItemDefinitionStateName_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_SlotEquip_ItemDefinitionStateName__Dispose, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_SlotEquip_ItemDefinitionStateName_ * __this, MethodInfo * method)); @@ -142025,6 +156859,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Opsive_UltimateCha DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_SlotEquip_ItemDefinitionStateName__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_SlotEquip_ItemDefinitionStateName_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_SlotEquip_ItemDefinitionStateName__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_SlotEquip_ItemDefinitionStateName_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142F5E0, SlotEquip_ItemDefinitionStateName, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_SlotEquip_ItemDefinitionStateName__get_Current, (Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_SlotEquip_ItemDefinitionStateName_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05BA8, Array_EmptyInternalEnumerator_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_SlotEquip_ItemDefinitionStateName__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Net_Sockets_Socket_WSABUF___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Net_Sockets_Socket_WSABUF___ctor, (Array_EmptyInternalEnumerator_1_System_Net_Sockets_Socket_WSABUF_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Net_Sockets_Socket_WSABUF__Dispose, (Array_EmptyInternalEnumerator_1_System_Net_Sockets_Socket_WSABUF_ * __this, MethodInfo * method)); @@ -142032,6 +156867,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Net_Sockets DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Net_Sockets_Socket_WSABUF__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Net_Sockets_Socket_WSABUF_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Net_Sockets_Socket_WSABUF__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Net_Sockets_Socket_WSABUF_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142F640, Socket_WSABUF, Array_EmptyInternalEnumerator_1_System_Net_Sockets_Socket_WSABUF__get_Current, (Array_EmptyInternalEnumerator_1_System_Net_Sockets_Socket_WSABUF_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05BA0, Array_EmptyInternalEnumerator_1_System_Net_Sockets_Socket_WSABUF__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ * __this, MethodInfo * method)); @@ -142039,6 +156875,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BC50, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142F6A0, StyleComplexSelector_PseudoStateData, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05B98, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_ * __this, MethodInfo * method)); @@ -142046,6 +156883,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142F700, StylePropertyAnimationSystem_ElementPropertyPair, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05AD8, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheet_ImportStruct___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheet_ImportStruct___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheet_ImportStruct_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheet_ImportStruct__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheet_ImportStruct_ * __this, MethodInfo * method)); @@ -142053,6 +156891,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheet_ImportStruct__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheet_ImportStruct_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheet_ImportStruct__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheet_ImportStruct_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142F760, StyleSheet_ImportStruct, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheet_ImportStruct__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheet_ImportStruct_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05AD0, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheet_ImportStruct__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_ * __this, MethodInfo * method)); @@ -142060,6 +156899,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BC50, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142F7C0, StyleSheetCache_SheetHandleKey, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05AC8, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext_ * __this, MethodInfo * method)); @@ -142067,6 +156907,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142F820, StyleVariableResolver_ResolveContext, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05AC0, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_Text_UnicodeChar___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_Text_UnicodeChar___ctor, (Array_EmptyInternalEnumerator_1_TMPro_TMP_Text_UnicodeChar_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_Text_UnicodeChar__Dispose, (Array_EmptyInternalEnumerator_1_TMPro_TMP_Text_UnicodeChar_ * __this, MethodInfo * method)); @@ -142074,6 +156915,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_TMPro_TMP_Text_Uni DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_TMP_Text_UnicodeChar__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_TMPro_TMP_Text_UnicodeChar_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141FA10, Object *, Array_EmptyInternalEnumerator_1_TMPro_TMP_Text_UnicodeChar__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_TMPro_TMP_Text_UnicodeChar_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142F880, TMP_Text_UnicodeChar, Array_EmptyInternalEnumerator_1_TMPro_TMP_Text_UnicodeChar__get_Current, (Array_EmptyInternalEnumerator_1_TMPro_TMP_Text_UnicodeChar_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05AB8, Array_EmptyInternalEnumerator_1_TMPro_TMP_Text_UnicodeChar__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ * __this, MethodInfo * method)); @@ -142081,6 +156923,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142F8E0, TemplateAsset_AttributeOverride, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05AB0, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UI_Extensions_TextPic_IconName___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UI_Extensions_TextPic_IconName___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UI_Extensions_TextPic_IconName_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UI_Extensions_TextPic_IconName__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UI_Extensions_TextPic_IconName_ * __this, MethodInfo * method)); @@ -142088,6 +156931,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UI_Ext DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UI_Extensions_TextPic_IconName__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UI_Extensions_TextPic_IconName_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UI_Extensions_TextPic_IconName__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UI_Extensions_TextPic_IconName_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142F940, TextPic_IconName, Array_EmptyInternalEnumerator_1_UnityEngine_UI_Extensions_TextPic_IconName__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UI_Extensions_TextPic_IconName_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05AA0, Array_EmptyInternalEnumerator_1_UnityEngine_UI_Extensions_TextPic_IconName__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * __this, MethodInfo * method)); @@ -142095,6 +156939,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_TextCo DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142F9A0, TextResourceManager_FontAssetRef, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05A98, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ * __this, MethodInfo * method)); @@ -142102,6 +156947,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_TextCo DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142FA00, TextSettings_FontReferenceMap, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05B30, Array_EmptyInternalEnumerator_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * __this, MethodInfo * method)); @@ -142109,6 +156955,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141DC50, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142FA60, TextureBlitter_BlitInfo, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05B20, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame___ctor, (Array_EmptyInternalEnumerator_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame__Dispose, (Array_EmptyInternalEnumerator_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame_ * __this, MethodInfo * method)); @@ -142116,6 +156963,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_TMPro_SpriteAssetU DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141CB70, Object *, Array_EmptyInternalEnumerator_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142FAC0, TexturePacker_JsonArray_Frame, Array_EmptyInternalEnumerator_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame__get_Current, (Array_EmptyInternalEnumerator_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05B10, Array_EmptyInternalEnumerator_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TextureRegistry_TextureInfo___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TextureRegistry_TextureInfo___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TextureRegistry_TextureInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TextureRegistry_TextureInfo__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TextureRegistry_TextureInfo_ * __this, MethodInfo * method)); @@ -142123,6 +156971,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TextureRegistry_TextureInfo__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TextureRegistry_TextureInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TextureRegistry_TextureInfo__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TextureRegistry_TextureInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142FB20, TextureRegistry_TextureInfo, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TextureRegistry_TextureInfo__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TextureRegistry_TextureInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05B00, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TextureRegistry_TextureInfo__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry_ * __this, MethodInfo * method)); @@ -142130,6 +156979,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Timeli DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142FB80, TimeNotificationBehaviour_NotificationEntry, Array_EmptyInternalEnumerator_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05AF8, Array_EmptyInternalEnumerator_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * __this, MethodInfo * method)); @@ -142137,6 +156987,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_InputS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142FBE0, TrackedDeviceRaycaster_RaycastHitData, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05AF0, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData_ * __this, MethodInfo * method)); @@ -142144,6 +156995,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Spatia DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142FC40, TrackedPoseDriverDataDescription_PoseData, Array_EmptyInternalEnumerator_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05AE8, Array_EmptyInternalEnumerator_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * __this, MethodInfo * method)); @@ -142151,6 +157003,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142FCA0, TreeView_TreeViewItemWrapper, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05AE0, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ * __this, MethodInfo * method)); @@ -142158,6 +157011,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BC50, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142FD00, TreeViewReorderableDragAndDropController_TreeItemState, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05A48, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * __this, MethodInfo * method)); @@ -142165,6 +157019,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01420390, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142FD60, UIRStylePainter_Entry, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05A40, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * __this, MethodInfo * method)); @@ -142172,6 +157027,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C530, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142FDC0, UIRenderDevice_AllocToFree, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05A38, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * __this, MethodInfo * method)); @@ -142179,6 +157035,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014211F0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142FE20, UIRenderDevice_AllocToUpdate, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05A30, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree_ * __this, MethodInfo * method)); @@ -142186,6 +157043,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142FE80, UIRenderDevice_DeviceToFree, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05A20, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UdpKit_UdpPipe_Ack___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UdpKit_UdpPipe_Ack___ctor, (Array_EmptyInternalEnumerator_1_UdpKit_UdpPipe_Ack_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UdpKit_UdpPipe_Ack__Dispose, (Array_EmptyInternalEnumerator_1_UdpKit_UdpPipe_Ack_ * __this, MethodInfo * method)); @@ -142193,6 +157051,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UdpKit_UdpPipe_Ack DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UdpKit_UdpPipe_Ack__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UdpKit_UdpPipe_Ack_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141FA10, Object *, Array_EmptyInternalEnumerator_1_UdpKit_UdpPipe_Ack__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UdpKit_UdpPipe_Ack_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142FEE0, UdpPipe_Ack, Array_EmptyInternalEnumerator_1_UdpKit_UdpPipe_Ack__get_Current, (Array_EmptyInternalEnumerator_1_UdpKit_UdpPipe_Ack_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05A10, Array_EmptyInternalEnumerator_1_UdpKit_UdpPipe_Ack__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Globalization_UmAlQuraCalendar_DateMapping___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Globalization_UmAlQuraCalendar_DateMapping___ctor, (Array_EmptyInternalEnumerator_1_System_Globalization_UmAlQuraCalendar_DateMapping_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Globalization_UmAlQuraCalendar_DateMapping__Dispose, (Array_EmptyInternalEnumerator_1_System_Globalization_UmAlQuraCalendar_DateMapping_ * __this, MethodInfo * method)); @@ -142200,6 +157059,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Globalizati DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Globalization_UmAlQuraCalendar_DateMapping__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Globalization_UmAlQuraCalendar_DateMapping_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Globalization_UmAlQuraCalendar_DateMapping__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Globalization_UmAlQuraCalendar_DateMapping_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142FF40, UmAlQuraCalendar_DateMapping, Array_EmptyInternalEnumerator_1_System_Globalization_UmAlQuraCalendar_DateMapping__get_Current, (Array_EmptyInternalEnumerator_1_System_Globalization_UmAlQuraCalendar_DateMapping_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05A08, Array_EmptyInternalEnumerator_1_System_Globalization_UmAlQuraCalendar_DateMapping__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UnitySynchronizationContext_WorkRequest___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UnitySynchronizationContext_WorkRequest___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UnitySynchronizationContext_WorkRequest__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * __this, MethodInfo * method)); @@ -142207,6 +157067,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UnityS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UnitySynchronizationContext_WorkRequest__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UnitySynchronizationContext_WorkRequest__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142FFA0, UnitySynchronizationContext_WorkRequest, Array_EmptyInternalEnumerator_1_UnityEngine_UnitySynchronizationContext_WorkRequest__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05A00, Array_EmptyInternalEnumerator_1_UnityEngine_UnitySynchronizationContext_WorkRequest__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition_ * __this, MethodInfo * method)); @@ -142214,6 +157075,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01430000, VisualTreeAsset_SlotDefinition, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05A90, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_ * __this, MethodInfo * method)); @@ -142221,6 +157083,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01430060, VisualTreeAsset_SlotUsageEntry, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05A80, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ * __this, MethodInfo * method)); @@ -142228,6 +157091,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_UIElem DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014300C0, VisualTreeAsset_UsingEntry, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05A78, Array_EmptyInternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId___ctor, (Array_EmptyInternalEnumerator_1_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId__Dispose, (Array_EmptyInternalEnumerator_1_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_ * __this, MethodInfo * method)); @@ -142235,6 +157099,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_PlaceholderSoftwar DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142D520, Object *, Array_EmptyInternalEnumerator_1_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01430120, WetDecalSystem_MaterialBatchId, Array_EmptyInternalEnumerator_1_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId__get_Current, (Array_EmptyInternalEnumerator_1_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05A70, Array_EmptyInternalEnumerator_1_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK___ctor, (Array_EmptyInternalEnumerator_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__Dispose, (Array_EmptyInternalEnumerator_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK_ * __this, MethodInfo * method)); @@ -142242,6 +157107,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Rewired_Platforms_ DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BC50, Object *, Array_EmptyInternalEnumerator_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01430180, XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK, Array_EmptyInternalEnumerator_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__get_Current, (Array_EmptyInternalEnumerator_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05A68, Array_EmptyInternalEnumerator_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Xml_XmlEventCache_XmlEvent___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Xml_XmlEventCache_XmlEvent___ctor, (Array_EmptyInternalEnumerator_1_System_Xml_XmlEventCache_XmlEvent_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Xml_XmlEventCache_XmlEvent__Dispose, (Array_EmptyInternalEnumerator_1_System_Xml_XmlEventCache_XmlEvent_ * __this, MethodInfo * method)); @@ -142249,6 +157115,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Xml_XmlEven DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Xml_XmlEventCache_XmlEvent__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Xml_XmlEventCache_XmlEvent_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C530, Object *, Array_EmptyInternalEnumerator_1_System_Xml_XmlEventCache_XmlEvent__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Xml_XmlEventCache_XmlEvent_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014301E0, XmlEventCache_XmlEvent, Array_EmptyInternalEnumerator_1_System_Xml_XmlEventCache_XmlEvent__get_Current, (Array_EmptyInternalEnumerator_1_System_Xml_XmlEventCache_XmlEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05A60, Array_EmptyInternalEnumerator_1_System_Xml_XmlEventCache_XmlEvent__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Xml_XmlNamespaceManager_NamespaceDeclaration___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Xml_XmlNamespaceManager_NamespaceDeclaration___ctor, (Array_EmptyInternalEnumerator_1_System_Xml_XmlNamespaceManager_NamespaceDeclaration_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Xml_XmlNamespaceManager_NamespaceDeclaration__Dispose, (Array_EmptyInternalEnumerator_1_System_Xml_XmlNamespaceManager_NamespaceDeclaration_ * __this, MethodInfo * method)); @@ -142256,6 +157123,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Xml_XmlName DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Xml_XmlNamespaceManager_NamespaceDeclaration__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Xml_XmlNamespaceManager_NamespaceDeclaration_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Xml_XmlNamespaceManager_NamespaceDeclaration__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Xml_XmlNamespaceManager_NamespaceDeclaration_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01430240, XmlNamespaceManager_NamespaceDeclaration, Array_EmptyInternalEnumerator_1_System_Xml_XmlNamespaceManager_NamespaceDeclaration__get_Current, (Array_EmptyInternalEnumerator_1_System_Xml_XmlNamespaceManager_NamespaceDeclaration_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05A58, Array_EmptyInternalEnumerator_1_System_Xml_XmlNamespaceManager_NamespaceDeclaration__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry___ctor, (Array_EmptyInternalEnumerator_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry__Dispose, (Array_EmptyInternalEnumerator_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry_ * __this, MethodInfo * method)); @@ -142263,6 +157131,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Xml_Schema_ DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014302A0, XmlSchemaObjectTable_XmlSchemaObjectEntry, Array_EmptyInternalEnumerator_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry__get_Current, (Array_EmptyInternalEnumerator_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05A50, Array_EmptyInternalEnumerator_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Xml_XmlTextReaderImpl_ParsingState___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Xml_XmlTextReaderImpl_ParsingState___ctor, (Array_EmptyInternalEnumerator_1_System_Xml_XmlTextReaderImpl_ParsingState_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Xml_XmlTextReaderImpl_ParsingState__Dispose, (Array_EmptyInternalEnumerator_1_System_Xml_XmlTextReaderImpl_ParsingState_ * __this, MethodInfo * method)); @@ -142270,6 +157139,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Xml_XmlText DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Xml_XmlTextReaderImpl_ParsingState__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Xml_XmlTextReaderImpl_ParsingState_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0142D520, Object *, Array_EmptyInternalEnumerator_1_System_Xml_XmlTextReaderImpl_ParsingState__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Xml_XmlTextReaderImpl_ParsingState_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01430300, XmlTextReaderImpl_ParsingState, Array_EmptyInternalEnumerator_1_System_Xml_XmlTextReaderImpl_ParsingState__get_Current, (Array_EmptyInternalEnumerator_1_System_Xml_XmlTextReaderImpl_ParsingState_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D059B8, Array_EmptyInternalEnumerator_1_System_Xml_XmlTextReaderImpl_ParsingState__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Xml_XmlTextWriter_Namespace___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Xml_XmlTextWriter_Namespace___ctor, (Array_EmptyInternalEnumerator_1_System_Xml_XmlTextWriter_Namespace_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Xml_XmlTextWriter_Namespace__Dispose, (Array_EmptyInternalEnumerator_1_System_Xml_XmlTextWriter_Namespace_ * __this, MethodInfo * method)); @@ -142277,6 +157147,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Xml_XmlText DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Xml_XmlTextWriter_Namespace__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Xml_XmlTextWriter_Namespace_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Xml_XmlTextWriter_Namespace__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Xml_XmlTextWriter_Namespace_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01430360, XmlTextWriter_Namespace, Array_EmptyInternalEnumerator_1_System_Xml_XmlTextWriter_Namespace__get_Current, (Array_EmptyInternalEnumerator_1_System_Xml_XmlTextWriter_Namespace_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D059B0, Array_EmptyInternalEnumerator_1_System_Xml_XmlTextWriter_Namespace__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Xml_XmlTextWriter_TagInfo___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Xml_XmlTextWriter_TagInfo___ctor, (Array_EmptyInternalEnumerator_1_System_Xml_XmlTextWriter_TagInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Xml_XmlTextWriter_TagInfo__Dispose, (Array_EmptyInternalEnumerator_1_System_Xml_XmlTextWriter_TagInfo_ * __this, MethodInfo * method)); @@ -142284,6 +157155,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Xml_XmlText DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Xml_XmlTextWriter_TagInfo__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Xml_XmlTextWriter_TagInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141DC50, Object *, Array_EmptyInternalEnumerator_1_System_Xml_XmlTextWriter_TagInfo__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Xml_XmlTextWriter_TagInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014303C0, XmlTextWriter_TagInfo, Array_EmptyInternalEnumerator_1_System_Xml_XmlTextWriter_TagInfo__get_Current, (Array_EmptyInternalEnumerator_1_System_Xml_XmlTextWriter_TagInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D059A8, Array_EmptyInternalEnumerator_1_System_Xml_XmlTextWriter_TagInfo__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Xml_XmlWellFormedWriter_AttrName___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Xml_XmlWellFormedWriter_AttrName___ctor, (Array_EmptyInternalEnumerator_1_System_Xml_XmlWellFormedWriter_AttrName_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Xml_XmlWellFormedWriter_AttrName__Dispose, (Array_EmptyInternalEnumerator_1_System_Xml_XmlWellFormedWriter_AttrName_ * __this, MethodInfo * method)); @@ -142291,6 +157163,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Xml_XmlWell DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Xml_XmlWellFormedWriter_AttrName__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Xml_XmlWellFormedWriter_AttrName_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_System_Xml_XmlWellFormedWriter_AttrName__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Xml_XmlWellFormedWriter_AttrName_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01430420, XmlWellFormedWriter_AttrName, Array_EmptyInternalEnumerator_1_System_Xml_XmlWellFormedWriter_AttrName__get_Current, (Array_EmptyInternalEnumerator_1_System_Xml_XmlWellFormedWriter_AttrName_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D059A0, Array_EmptyInternalEnumerator_1_System_Xml_XmlWellFormedWriter_AttrName__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Xml_XmlWellFormedWriter_ElementScope___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Xml_XmlWellFormedWriter_ElementScope___ctor, (Array_EmptyInternalEnumerator_1_System_Xml_XmlWellFormedWriter_ElementScope_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Xml_XmlWellFormedWriter_ElementScope__Dispose, (Array_EmptyInternalEnumerator_1_System_Xml_XmlWellFormedWriter_ElementScope_ * __this, MethodInfo * method)); @@ -142298,6 +157171,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Xml_XmlWell DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Xml_XmlWellFormedWriter_ElementScope__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Xml_XmlWellFormedWriter_ElementScope_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141D1A0, Object *, Array_EmptyInternalEnumerator_1_System_Xml_XmlWellFormedWriter_ElementScope__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Xml_XmlWellFormedWriter_ElementScope_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01430480, XmlWellFormedWriter_ElementScope, Array_EmptyInternalEnumerator_1_System_Xml_XmlWellFormedWriter_ElementScope__get_Current, (Array_EmptyInternalEnumerator_1_System_Xml_XmlWellFormedWriter_ElementScope_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05998, Array_EmptyInternalEnumerator_1_System_Xml_XmlWellFormedWriter_ElementScope__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Xml_XmlWellFormedWriter_Namespace___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Xml_XmlWellFormedWriter_Namespace___ctor, (Array_EmptyInternalEnumerator_1_System_Xml_XmlWellFormedWriter_Namespace_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Xml_XmlWellFormedWriter_Namespace__Dispose, (Array_EmptyInternalEnumerator_1_System_Xml_XmlWellFormedWriter_Namespace_ * __this, MethodInfo * method)); @@ -142305,6 +157179,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Xml_XmlWell DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Xml_XmlWellFormedWriter_Namespace__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Xml_XmlWellFormedWriter_Namespace_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_System_Xml_XmlWellFormedWriter_Namespace__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Xml_XmlWellFormedWriter_Namespace_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014304E0, XmlWellFormedWriter_Namespace, Array_EmptyInternalEnumerator_1_System_Xml_XmlWellFormedWriter_Namespace__get_Current, (Array_EmptyInternalEnumerator_1_System_Xml_XmlWellFormedWriter_Namespace_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05990, Array_EmptyInternalEnumerator_1_System_Xml_XmlWellFormedWriter_Namespace__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_ftLightmaps_LightmapAdditionalData___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_ftLightmaps_LightmapAdditionalData___ctor, (Array_EmptyInternalEnumerator_1_ftLightmaps_LightmapAdditionalData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_ftLightmaps_LightmapAdditionalData__Dispose, (Array_EmptyInternalEnumerator_1_ftLightmaps_LightmapAdditionalData_ * __this, MethodInfo * method)); @@ -142312,6 +157187,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_ftLightmaps_Lightm DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_ftLightmaps_LightmapAdditionalData__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_ftLightmaps_LightmapAdditionalData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_ftLightmaps_LightmapAdditionalData__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_ftLightmaps_LightmapAdditionalData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01430540, ftLightmaps_LightmapAdditionalData, Array_EmptyInternalEnumerator_1_ftLightmaps_LightmapAdditionalData__get_Current, (Array_EmptyInternalEnumerator_1_ftLightmaps_LightmapAdditionalData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05988, Array_EmptyInternalEnumerator_1_ftLightmaps_LightmapAdditionalData__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy___ctor, (Array_EmptyInternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__Dispose, (Array_EmptyInternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * __this, MethodInfo * method)); @@ -142319,6 +157195,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_gWxrirpmIhQTmhziZn DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BC50, Object *, Array_EmptyInternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014305A0, gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy, Array_EmptyInternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__get_Current, (Array_EmptyInternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05980, Array_EmptyInternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_QpfrOmwHesfdZMwAoLXiDrdPqtqG___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_QpfrOmwHesfdZMwAoLXiDrdPqtqG___ctor, (Array_EmptyInternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_QpfrOmwHesfdZMwAoLXiDrdPqtqG_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_QpfrOmwHesfdZMwAoLXiDrdPqtqG__Dispose, (Array_EmptyInternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_QpfrOmwHesfdZMwAoLXiDrdPqtqG_ * __this, MethodInfo * method)); @@ -142326,6 +157203,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_gWxrirpmIhQTmhziZn DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_QpfrOmwHesfdZMwAoLXiDrdPqtqG__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_QpfrOmwHesfdZMwAoLXiDrdPqtqG_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141CB70, Object *, Array_EmptyInternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_QpfrOmwHesfdZMwAoLXiDrdPqtqG__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_QpfrOmwHesfdZMwAoLXiDrdPqtqG_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01430600, gWxrirpmIhQTmhziZnlXlEwmYtKB_QpfrOmwHesfdZMwAoLXiDrdPqtqG, Array_EmptyInternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_QpfrOmwHesfdZMwAoLXiDrdPqtqG__get_Current, (Array_EmptyInternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_QpfrOmwHesfdZMwAoLXiDrdPqtqG_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D059F8, Array_EmptyInternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_QpfrOmwHesfdZMwAoLXiDrdPqtqG__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_vEAqJCAedocGOpCIXmtvTuaaVKZ___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_vEAqJCAedocGOpCIXmtvTuaaVKZ___ctor, (Array_EmptyInternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_vEAqJCAedocGOpCIXmtvTuaaVKZ_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_vEAqJCAedocGOpCIXmtvTuaaVKZ__Dispose, (Array_EmptyInternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_vEAqJCAedocGOpCIXmtvTuaaVKZ_ * __this, MethodInfo * method)); @@ -142333,6 +157211,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_gWxrirpmIhQTmhziZn DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_vEAqJCAedocGOpCIXmtvTuaaVKZ__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_vEAqJCAedocGOpCIXmtvTuaaVKZ_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_vEAqJCAedocGOpCIXmtvTuaaVKZ__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_vEAqJCAedocGOpCIXmtvTuaaVKZ_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01430660, gWxrirpmIhQTmhziZnlXlEwmYtKB_vEAqJCAedocGOpCIXmtvTuaaVKZ, Array_EmptyInternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_vEAqJCAedocGOpCIXmtvTuaaVKZ__get_Current, (Array_EmptyInternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_vEAqJCAedocGOpCIXmtvTuaaVKZ_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D059F0, Array_EmptyInternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_vEAqJCAedocGOpCIXmtvTuaaVKZ__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_jlOcQLgjodoHrMnRTMaZoBnVTQkmA_UQNUjWDnDBJiFEZHZdfMIOPkNvdGb___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_jlOcQLgjodoHrMnRTMaZoBnVTQkmA_UQNUjWDnDBJiFEZHZdfMIOPkNvdGb___ctor, (Array_EmptyInternalEnumerator_1_jlOcQLgjodoHrMnRTMaZoBnVTQkmA_UQNUjWDnDBJiFEZHZdfMIOPkNvdGb_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_jlOcQLgjodoHrMnRTMaZoBnVTQkmA_UQNUjWDnDBJiFEZHZdfMIOPkNvdGb__Dispose, (Array_EmptyInternalEnumerator_1_jlOcQLgjodoHrMnRTMaZoBnVTQkmA_UQNUjWDnDBJiFEZHZdfMIOPkNvdGb_ * __this, MethodInfo * method)); @@ -142340,6 +157219,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_jlOcQLgjodoHrMnRTM DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_jlOcQLgjodoHrMnRTMaZoBnVTQkmA_UQNUjWDnDBJiFEZHZdfMIOPkNvdGb__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_jlOcQLgjodoHrMnRTMaZoBnVTQkmA_UQNUjWDnDBJiFEZHZdfMIOPkNvdGb_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_jlOcQLgjodoHrMnRTMaZoBnVTQkmA_UQNUjWDnDBJiFEZHZdfMIOPkNvdGb__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_jlOcQLgjodoHrMnRTMaZoBnVTQkmA_UQNUjWDnDBJiFEZHZdfMIOPkNvdGb_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014306C0, jlOcQLgjodoHrMnRTMaZoBnVTQkmA_UQNUjWDnDBJiFEZHZdfMIOPkNvdGb, Array_EmptyInternalEnumerator_1_jlOcQLgjodoHrMnRTMaZoBnVTQkmA_UQNUjWDnDBJiFEZHZdfMIOPkNvdGb__get_Current, (Array_EmptyInternalEnumerator_1_jlOcQLgjodoHrMnRTMaZoBnVTQkmA_UQNUjWDnDBJiFEZHZdfMIOPkNvdGb_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D059E8, Array_EmptyInternalEnumerator_1_jlOcQLgjodoHrMnRTMaZoBnVTQkmA_UQNUjWDnDBJiFEZHZdfMIOPkNvdGb__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem_ * __this, MethodInfo * method)); @@ -142347,6 +157227,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_Render DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01430720, DebugUI_Foldout_ContextMenuItem, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D059E0, Array_EmptyInternalEnumerator_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Decimal_DecCalc_PowerOvfl___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Decimal_DecCalc_PowerOvfl___ctor, (Array_EmptyInternalEnumerator_1_Decimal_DecCalc_PowerOvfl_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Decimal_DecCalc_PowerOvfl__Dispose, (Array_EmptyInternalEnumerator_1_Decimal_DecCalc_PowerOvfl_ * __this, MethodInfo * method)); @@ -142354,6 +157235,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Decimal_DecCalc_Po DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Decimal_DecCalc_PowerOvfl__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Decimal_DecCalc_PowerOvfl_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_Decimal_DecCalc_PowerOvfl__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Decimal_DecCalc_PowerOvfl_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01430780, Decimal_DecCalc_PowerOvfl, Array_EmptyInternalEnumerator_1_Decimal_DecCalc_PowerOvfl__get_Current, (Array_EmptyInternalEnumerator_1_Decimal_DecCalc_PowerOvfl_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D059D8, Array_EmptyInternalEnumerator_1_Decimal_DecCalc_PowerOvfl__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Xml_Schema_FacetsChecker_FacetsCompiler_Map___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Xml_Schema_FacetsChecker_FacetsCompiler_Map___ctor, (Array_EmptyInternalEnumerator_1_System_Xml_Schema_FacetsChecker_FacetsCompiler_Map_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Xml_Schema_FacetsChecker_FacetsCompiler_Map__Dispose, (Array_EmptyInternalEnumerator_1_System_Xml_Schema_FacetsChecker_FacetsCompiler_Map_ * __this, MethodInfo * method)); @@ -142361,6 +157243,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Xml_Schema_ DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Xml_Schema_FacetsChecker_FacetsCompiler_Map__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Xml_Schema_FacetsChecker_FacetsCompiler_Map_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_System_Xml_Schema_FacetsChecker_FacetsCompiler_Map__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Xml_Schema_FacetsChecker_FacetsCompiler_Map_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014307E0, FacetsChecker_FacetsCompiler_Map, Array_EmptyInternalEnumerator_1_System_Xml_Schema_FacetsChecker_FacetsCompiler_Map__get_Current, (Array_EmptyInternalEnumerator_1_System_Xml_Schema_FacetsChecker_FacetsCompiler_Map_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D059D0, Array_EmptyInternalEnumerator_1_System_Xml_Schema_FacetsChecker_FacetsCompiler_Map__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher_ * __this, MethodInfo * method)); @@ -142368,6 +157251,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_InputS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C210, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01430840, InputControlLayout_Collection_LayoutMatcher, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D059C8, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ * __this, MethodInfo * method)); @@ -142375,6 +157259,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_InputS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014308A0, InputControlLayout_Collection_PrecompiledLayout, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D059C0, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_MatchResult_Match___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_MatchResult_Match___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_MatchResult_Match_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_MatchResult_Match__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_MatchResult_Match_ * __this, MethodInfo * method)); @@ -142382,6 +157267,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_InputS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_MatchResult_Match__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_MatchResult_Match_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141D1A0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_MatchResult_Match__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_MatchResult_Match_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01430900, InputControlScheme_MatchResult_Match, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_MatchResult_Match__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_MatchResult_Match_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05970, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_MatchResult_Match__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson_DeviceJson___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson_DeviceJson___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson_DeviceJson_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson_DeviceJson__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson_DeviceJson_ * __this, MethodInfo * method)); @@ -142389,6 +157275,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_InputS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson_DeviceJson__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson_DeviceJson_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson_DeviceJson__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson_DeviceJson_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01430960, InputControlScheme_SchemeJson_DeviceJson, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson_DeviceJson__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson_DeviceJson_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05968, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson_DeviceJson__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher_MatcherJson_Capability___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher_MatcherJson_Capability___ctor, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher_MatcherJson_Capability_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher_MatcherJson_Capability__Dispose, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher_MatcherJson_Capability_ * __this, MethodInfo * method)); @@ -142396,6 +157283,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_UnityEngine_InputS DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher_MatcherJson_Capability__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher_MatcherJson_Capability_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher_MatcherJson_Capability__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher_MatcherJson_Capability_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014309C0, InputDeviceMatcher_MatcherJson_Capability, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher_MatcherJson_Capability__get_Current, (Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher_MatcherJson_Capability_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05960, Array_EmptyInternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher_MatcherJson_Capability__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView___ctor, (Array_EmptyInternalEnumerator_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView__Dispose, (Array_EmptyInternalEnumerator_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView_ * __this, MethodInfo * method)); @@ -142403,6 +157291,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_System_Linq_Expres DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141BB10, Object *, Array_EmptyInternalEnumerator_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01430A20, InstructionList_DebugView_InstructionView, Array_EmptyInternalEnumerator_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView__get_Current, (Array_EmptyInternalEnumerator_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05958, Array_EmptyInternalEnumerator_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Interop_SspiCli_SecBuffer___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Interop_SspiCli_SecBuffer___ctor, (Array_EmptyInternalEnumerator_1_Interop_SspiCli_SecBuffer_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Interop_SspiCli_SecBuffer__Dispose, (Array_EmptyInternalEnumerator_1_Interop_SspiCli_SecBuffer_ * __this, MethodInfo * method)); @@ -142410,6 +157299,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Interop_SspiCli_Se DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Interop_SspiCli_SecBuffer__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Interop_SspiCli_SecBuffer_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141B8C0, Object *, Array_EmptyInternalEnumerator_1_Interop_SspiCli_SecBuffer__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Interop_SspiCli_SecBuffer_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01430A80, Interop_SspiCli_SecBuffer, Array_EmptyInternalEnumerator_1_Interop_SspiCli_SecBuffer__get_Current, (Array_EmptyInternalEnumerator_1_Interop_SspiCli_SecBuffer_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05948, Array_EmptyInternalEnumerator_1_Interop_SspiCli_SecBuffer__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb___ctor, (Array_EmptyInternalEnumerator_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__Dispose, (Array_EmptyInternalEnumerator_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * __this, MethodInfo * method)); @@ -142417,6 +157307,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Rewired_PlayerCont DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141FA10, Object *, Array_EmptyInternalEnumerator_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01430AE0, PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb, Array_EmptyInternalEnumerator_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__get_Current, (Array_EmptyInternalEnumerator_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05940, Array_EmptyInternalEnumerator_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Cinemachine_TargetPositionCache_CacheCurve_Item___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Cinemachine_TargetPositionCache_CacheCurve_Item___ctor, (Array_EmptyInternalEnumerator_1_Cinemachine_TargetPositionCache_CacheCurve_Item_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Cinemachine_TargetPositionCache_CacheCurve_Item__Dispose, (Array_EmptyInternalEnumerator_1_Cinemachine_TargetPositionCache_CacheCurve_Item_ * __this, MethodInfo * method)); @@ -142424,6 +157315,7 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Cinemachine_Target DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Cinemachine_TargetPositionCache_CacheCurve_Item__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Cinemachine_TargetPositionCache_CacheCurve_Item_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C680, Object *, Array_EmptyInternalEnumerator_1_Cinemachine_TargetPositionCache_CacheCurve_Item__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Cinemachine_TargetPositionCache_CacheCurve_Item_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01430B40, TargetPositionCache_CacheCurve_Item, Array_EmptyInternalEnumerator_1_Cinemachine_TargetPositionCache_CacheCurve_Item__get_Current, (Array_EmptyInternalEnumerator_1_Cinemachine_TargetPositionCache_CacheCurve_Item_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05938, Array_EmptyInternalEnumerator_1_Cinemachine_TargetPositionCache_CacheCurve_Item__get_Current__MethodInfo); DO_APP_FUNC(0x0141B930, void, Array_EmptyInternalEnumerator_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem___ctor, (Array_EmptyInternalEnumerator_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__Dispose, (Array_EmptyInternalEnumerator_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * __this, MethodInfo * method)); @@ -142431,14 +157323,19 @@ DO_APP_FUNC(0x0041AF00, bool, Array_EmptyInternalEnumerator_1_Cinemachine_Target DO_APP_FUNC(0x003AE050, void, Array_EmptyInternalEnumerator_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__System_Collections_IEnumerator_Reset, (Array_EmptyInternalEnumerator_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0141C970, Object *, Array_EmptyInternalEnumerator_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__System_Collections_IEnumerator_get_Current, (Array_EmptyInternalEnumerator_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01430BA0, TargetPositionCache_CacheEntry_RecordingItem, Array_EmptyInternalEnumerator_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__get_Current, (Array_EmptyInternalEnumerator_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05930, Array_EmptyInternalEnumerator_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__get_Current__MethodInfo); DO_APP_FUNC(0x01430D50, IList_1_Rewired_ControllerPollingInfo_ *, EmptyObjects_1_Rewired_ControllerPollingInfo__get_EmptyReadOnlyIListT, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA560, EmptyObjects_1_Rewired_ControllerPollingInfo__get_EmptyReadOnlyIListT__MethodInfo); DO_APP_FUNC(0x01430C00, ControllerPollingInfo__Array *, EmptyObjects_1_Rewired_ControllerPollingInfo__get_array, (MethodInfo * method)); DO_APP_FUNC(0x01430D50, IList_1_Rewired_ElementAssignmentConflictInfo_ *, EmptyObjects_1_Rewired_ElementAssignmentConflictInfo__get_EmptyReadOnlyIListT, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8E50, EmptyObjects_1_Rewired_ElementAssignmentConflictInfo__get_EmptyReadOnlyIListT__MethodInfo); DO_APP_FUNC(0x01430C00, ElementAssignmentConflictInfo__Array *, EmptyObjects_1_Rewired_ElementAssignmentConflictInfo__get_array, (MethodInfo * method)); DO_APP_FUNC(0x01430D50, IList_1_Rewired_InputActionSourceData_ *, EmptyObjects_1_Rewired_InputActionSourceData__get_EmptyReadOnlyIListT, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC6B48, EmptyObjects_1_Rewired_InputActionSourceData__get_EmptyReadOnlyIListT__MethodInfo); DO_APP_FUNC(0x01430C00, InputActionSourceData__Array *, EmptyObjects_1_Rewired_InputActionSourceData__get_array, (MethodInfo * method)); DO_APP_FUNC(0x01430D50, IList_1_System_Int32_ *, EmptyObjects_1_System_Int32__get_EmptyReadOnlyIListT, (MethodInfo * method)); DO_APP_FUNC(0x01430C00, Int32__Array *, EmptyObjects_1_System_Int32__get_array, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF420, EmptyObjects_1_System_Int32__get_array__MethodInfo); DO_APP_FUNC(0x01430D50, IList_1_System_Int32Enum_ *, EmptyObjects_1_System_Int32Enum__get_EmptyReadOnlyIListT, (MethodInfo * method)); DO_APP_FUNC(0x01430C00, Int32Enum__Enum__Array *, EmptyObjects_1_System_Int32Enum__get_array, (MethodInfo * method)); DO_APP_FUNC(0x01430D50, IList_1_System_Object_ *, EmptyObjects_1_System_Object__get_EmptyReadOnlyIListT, (MethodInfo * method)); @@ -142469,20 +157366,25 @@ DO_APP_FUNC(0x01431530, int32_t, EnumEqualityComparer_1_System_Int32Enum__GetHas DO_APP_FUNC(0x01431610, int32_t, EnumEqualityComparer_1_System_Int32Enum__GetHashCode_1, (EnumEqualityComparer_1_System_Int32Enum_ * __this, Int32Enum__Enum obj, MethodInfo * method)); DO_APP_FUNC(0x01431640, void, EnumEqualityComparer_1_System_Int32Enum__GetObjectData, (EnumEqualityComparer_1_System_Int32Enum_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x01431920, void, EnumNameValueCache_1_System_Int32Enum___ctor, (EnumNameValueCache_1_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D058F8, EnumNameValueCache_1_System_Int32Enum___ctor__MethodInfo); DO_APP_FUNC(0x014323A0, bool, EnumNameValueCache_1_System_Int32Enum__Contains, (EnumNameValueCache_1_System_Int32Enum_ * __this, int64_t value, MethodInfo * method)); DO_APP_FUNC(0x01432360, bool, EnumNameValueCache_1_System_Int32Enum__Contains_1, (EnumNameValueCache_1_System_Int32Enum_ * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x01431830, void, EnumNameValueCache_1_System_Int32Enum__Free, (MethodInfo * method)); DO_APP_FUNC(0x01431E80, String *, EnumNameValueCache_1_System_Int32Enum__GetName, (EnumNameValueCache_1_System_Int32Enum_ * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D058E0, EnumNameValueCache_1_System_Int32Enum__GetName__MethodInfo); DO_APP_FUNC(0x01432140, String *, EnumNameValueCache_1_System_Int32Enum__GetNameAt, (EnumNameValueCache_1_System_Int32Enum_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05920, EnumNameValueCache_1_System_Int32Enum__GetNameAt__MethodInfo); DO_APP_FUNC(0x01431E00, Int32Enum__Enum, EnumNameValueCache_1_System_Int32Enum__GetValue, (EnumNameValueCache_1_System_Int32Enum_ * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x01432070, Int32Enum__Enum, EnumNameValueCache_1_System_Int32Enum__GetValueAt, (EnumNameValueCache_1_System_Int32Enum_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05928, EnumNameValueCache_1_System_Int32Enum__GetValueAt__MethodInfo); DO_APP_FUNC(0x014322A0, int32_t, EnumNameValueCache_1_System_Int32Enum__IndexOf, (EnumNameValueCache_1_System_Int32Enum_ * __this, int64_t value, MethodInfo * method)); DO_APP_FUNC(0x014321E0, int32_t, EnumNameValueCache_1_System_Int32Enum__IndexOf_1, (EnumNameValueCache_1_System_Int32Enum_ * __this, String * name, MethodInfo * method)); -DO_APP_FUNC(0x01431F20, bool, EnumNameValueCache_1_System_Int32Enum__TryGetName, (EnumNameValueCache_1_System_Int32Enum_ * __this, int64_t value, String * name, MethodInfo * method)); -DO_APP_FUNC(0x01431E40, bool, EnumNameValueCache_1_System_Int32Enum__TryGetValue, (EnumNameValueCache_1_System_Int32Enum_ * __this, String * name, Int32Enum__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x01431F20, bool, EnumNameValueCache_1_System_Int32Enum__TryGetName, (EnumNameValueCache_1_System_Int32Enum_ * __this, int64_t value, String * * name, MethodInfo * method)); +DO_APP_FUNC(0x01431E40, bool, EnumNameValueCache_1_System_Int32Enum__TryGetValue, (EnumNameValueCache_1_System_Int32Enum_ * __this, String * name, Int32Enum__Enum * value, MethodInfo * method)); DO_APP_FUNC(0x01431900, int32_t, EnumNameValueCache_1_System_Int32Enum__get_Count, (EnumNameValueCache_1_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD2310, EnumNameValueCache_1_System_Int32Enum_ *, EnumNameValueCache_1_System_Int32Enum__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x01432680, void, EnumValueHelper_1_System_Object___ctor, (EnumValueHelper_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05898, EnumValueHelper_1_System_Object___ctor__MethodInfo); DO_APP_FUNC(0x00FD2310, EnumValueHelper_1_System_Object_ *, EnumValueHelper_1_System_Object__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x014323E0, IList_1_System_String_ *, EnumValueHelper_1_System_Object__get_names, (EnumValueHelper_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, IList_1_System_Object_ *, EnumValueHelper_1_System_Object__get_values, (EnumValueHelper_1_System_Object_ * __this, MethodInfo * method)); @@ -142522,3629 +157424,4036 @@ DO_APP_FUNC(0x01433D00, void, EnumerableSorter_2_System_Object_System_Single__Co DO_APP_FUNC(0x01432F50, void, EnumerableSorter_2_System_Object_System_UInt32___ctor, (EnumerableSorter_2_System_Object_System_UInt32_ * __this, Func_2_Object_UInt32_ * keySelector, IComparer_1_System_UInt32_ * comparer, bool descending, EnumerableSorter_1_System_Object_ * next, MethodInfo * method)); DO_APP_FUNC(0x01433510, int32_t, EnumerableSorter_2_System_Object_System_UInt32__CompareKeys, (EnumerableSorter_2_System_Object_System_UInt32_ * __this, int32_t index1, int32_t index2, MethodInfo * method)); DO_APP_FUNC(0x014339D0, void, EnumerableSorter_2_System_Object_System_UInt32__ComputeKeys, (EnumerableSorter_2_System_Object_System_UInt32_ * __this, Object__Array * elements, int32_t count, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_System_ArraySegment_1___ctor, (List_1_T_Enumerator_System_ArraySegment_1___Boxed * __this, List_1_System_ArraySegment_1_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_ArraySegment_1__Dispose, (List_1_T_Enumerator_System_ArraySegment_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_System_ArraySegment_1__MoveNext, (List_1_T_Enumerator_System_ArraySegment_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_System_ArraySegment_1__MoveNextRare, (List_1_T_Enumerator_System_ArraySegment_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_System_ArraySegment_1__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_ArraySegment_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_System_ArraySegment_1__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_ArraySegment_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, ArraySegment_1_Byte_, List_1_T_Enumerator_System_ArraySegment_1__get_Current, (List_1_T_Enumerator_System_ArraySegment_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341F0, void, List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___ctor, (List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___Boxed * __this, List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__2 * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__Dispose, (List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434270, bool, List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__MoveNext, (List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434370, bool, List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__MoveNextRare, (List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434460, void, List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014343B0, Object *, List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01204560, AsyncOperationHandle_1_System_Object_, List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__get_Current, (List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341F0, void, List_1_T_Enumerator_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta___ctor, (List_1_T_Enumerator_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta___Boxed * __this, List_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta__Dispose, (List_1_T_Enumerator_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014344A0, bool, List_1_T_Enumerator_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta__MoveNext, (List_1_T_Enumerator_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434370, bool, List_1_T_Enumerator_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta__MoveNextRare, (List_1_T_Enumerator_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434460, void, List_1_T_Enumerator_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014343B0, Object *, List_1_T_Enumerator_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01204560, VoiceSender_1_TPeer_ChannelDelta_Dissonance_Integrations_PhotonBolt_BoltPeer_, List_1_T_Enumerator_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta__get_Current, (List_1_T_Enumerator_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_UnityEngine_Timeline_IntervalTree_1_Entry___ctor, (List_1_T_Enumerator_UnityEngine_Timeline_IntervalTree_1_Entry___Boxed * __this, List_1_UnityEngine_Timeline_IntervalTree_1_Entry__1 * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Timeline_IntervalTree_1_Entry__Dispose, (List_1_T_Enumerator_UnityEngine_Timeline_IntervalTree_1_Entry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434620, bool, List_1_T_Enumerator_UnityEngine_Timeline_IntervalTree_1_Entry__MoveNext, (List_1_T_Enumerator_UnityEngine_Timeline_IntervalTree_1_Entry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_UnityEngine_Timeline_IntervalTree_1_Entry__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Timeline_IntervalTree_1_Entry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_UnityEngine_Timeline_IntervalTree_1_Entry__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Timeline_IntervalTree_1_Entry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_UnityEngine_Timeline_IntervalTree_1_Entry__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Timeline_IntervalTree_1_Entry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, IntervalTree_1_T_Entry_System_Object_, List_1_T_Enumerator_UnityEngine_Timeline_IntervalTree_1_Entry__get_Current, (List_1_T_Enumerator_UnityEngine_Timeline_IntervalTree_1_Entry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb___ctor, (List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb___Boxed * __this, List_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__Dispose, (List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434850, bool, List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__MoveNext, (List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__MoveNextRare, (List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object_, List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__get_Current, (List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1__ctor, (List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1__Boxed * __this, List_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1 * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1_Dispose, (List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1_MoveNext, (List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1_MoveNextRare, (List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1_System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1_System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object_, List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1_get_Current, (List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341F0, void, List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2__ctor, (List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2__Boxed * __this, List_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2 * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2_Dispose, (List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434270, bool, List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2_MoveNext, (List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434370, bool, List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2_MoveNextRare, (List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434460, void, List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2_System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014343B0, Object *, List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2_System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01204560, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_, List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2_get_Current, (List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434950, void, Queue_1_T_Enumerator_KeyValuePair_2_System_DateTime_System_UInt32___ctor, (Queue_1_T_Enumerator_KeyValuePair_2_System_DateTime_System_UInt32___Boxed * __this, Queue_1_KeyValuePair_2_System_DateTime_System_UInt32_ * q, MethodInfo * method)); -DO_APP_FUNC(0x014349D0, void, Queue_1_T_Enumerator_KeyValuePair_2_System_DateTime_System_UInt32__Dispose, (Queue_1_T_Enumerator_KeyValuePair_2_System_DateTime_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014349E0, bool, Queue_1_T_Enumerator_KeyValuePair_2_System_DateTime_System_UInt32__MoveNext, (Queue_1_T_Enumerator_KeyValuePair_2_System_DateTime_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434C40, void, Queue_1_T_Enumerator_KeyValuePair_2_System_DateTime_System_UInt32__System_Collections_IEnumerator_Reset, (Queue_1_T_Enumerator_KeyValuePair_2_System_DateTime_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434B90, Object *, Queue_1_T_Enumerator_KeyValuePair_2_System_DateTime_System_UInt32__System_Collections_IEnumerator_get_Current, (Queue_1_T_Enumerator_KeyValuePair_2_System_DateTime_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434B20, void, Queue_1_T_Enumerator_KeyValuePair_2_System_DateTime_System_UInt32__ThrowEnumerationNotStartedOrEnded, (Queue_1_T_Enumerator_KeyValuePair_2_System_DateTime_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434AD0, KeyValuePair_2_System_DateTime_System_UInt32_, Queue_1_T_Enumerator_KeyValuePair_2_System_DateTime_System_UInt32__get_Current, (Queue_1_T_Enumerator_KeyValuePair_2_System_DateTime_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_KeyValuePair_2_System_Guid_System_Object___ctor, (List_1_T_Enumerator_KeyValuePair_2_System_Guid_System_Object___Boxed * __this, List_1_KeyValuePair_2_System_Guid_System_Object_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_KeyValuePair_2_System_Guid_System_Object__Dispose, (List_1_T_Enumerator_KeyValuePair_2_System_Guid_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434620, bool, List_1_T_Enumerator_KeyValuePair_2_System_Guid_System_Object__MoveNext, (List_1_T_Enumerator_KeyValuePair_2_System_Guid_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_KeyValuePair_2_System_Guid_System_Object__MoveNextRare, (List_1_T_Enumerator_KeyValuePair_2_System_Guid_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_KeyValuePair_2_System_Guid_System_Object__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_KeyValuePair_2_System_Guid_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_KeyValuePair_2_System_Guid_System_Object__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_KeyValuePair_2_System_Guid_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, KeyValuePair_2_System_Guid_System_Object_, List_1_T_Enumerator_KeyValuePair_2_System_Guid_System_Object__get_Current, (List_1_T_Enumerator_KeyValuePair_2_System_Guid_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, InlinedArray_1_TValue_Enumerator_System_Collections_Generic_KeyValuePair_2__Dispose, (InlinedArray_1_TValue_Enumerator_System_Collections_Generic_KeyValuePair_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434CD0, bool, InlinedArray_1_TValue_Enumerator_System_Collections_Generic_KeyValuePair_2__MoveNext, (InlinedArray_1_TValue_Enumerator_System_Collections_Generic_KeyValuePair_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x006DDC60, void, InlinedArray_1_TValue_Enumerator_System_Collections_Generic_KeyValuePair_2__Reset, (InlinedArray_1_TValue_Enumerator_System_Collections_Generic_KeyValuePair_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434D30, Object *, InlinedArray_1_TValue_Enumerator_System_Collections_Generic_KeyValuePair_2__System_Collections_IEnumerator_get_Current, (InlinedArray_1_TValue_Enumerator_System_Collections_Generic_KeyValuePair_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434CF0, KeyValuePair_2_System_Int32_System_Int32_, InlinedArray_1_TValue_Enumerator_System_Collections_Generic_KeyValuePair_2__get_Current, (InlinedArray_1_TValue_Enumerator_System_Collections_Generic_KeyValuePair_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434DE0, void, List_1_T_Enumerator_KeyValuePair_2_System_Int32_System_Int32___ctor, (List_1_T_Enumerator_KeyValuePair_2_System_Int32_System_Int32___Boxed * __this, List_1_KeyValuePair_2_System_Int32_System_Int32_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_KeyValuePair_2_System_Int32_System_Int32__Dispose, (List_1_T_Enumerator_KeyValuePair_2_System_Int32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434E60, bool, List_1_T_Enumerator_KeyValuePair_2_System_Int32_System_Int32__MoveNext, (List_1_T_Enumerator_KeyValuePair_2_System_Int32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434F00, bool, List_1_T_Enumerator_KeyValuePair_2_System_Int32_System_Int32__MoveNextRare, (List_1_T_Enumerator_KeyValuePair_2_System_Int32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434FE0, void, List_1_T_Enumerator_KeyValuePair_2_System_Int32_System_Int32__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_KeyValuePair_2_System_Int32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434F40, Object *, List_1_T_Enumerator_KeyValuePair_2_System_Int32_System_Int32__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_KeyValuePair_2_System_Int32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, KeyValuePair_2_System_Int32_System_Int32_, List_1_T_Enumerator_KeyValuePair_2_System_Int32_System_Int32__get_Current, (List_1_T_Enumerator_KeyValuePair_2_System_Int32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_KeyValuePair_2_System_Int32_System_Object___ctor, (List_1_T_Enumerator_KeyValuePair_2_System_Int32_System_Object___Boxed * __this, List_1_KeyValuePair_2_System_Int32_System_Object_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_KeyValuePair_2_System_Int32_System_Object__Dispose, (List_1_T_Enumerator_KeyValuePair_2_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434850, bool, List_1_T_Enumerator_KeyValuePair_2_System_Int32_System_Object__MoveNext, (List_1_T_Enumerator_KeyValuePair_2_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_KeyValuePair_2_System_Int32_System_Object__MoveNextRare, (List_1_T_Enumerator_KeyValuePair_2_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_KeyValuePair_2_System_Int32_System_Object__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_KeyValuePair_2_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_KeyValuePair_2_System_Int32_System_Object__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_KeyValuePair_2_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_Int32_System_Object_, List_1_T_Enumerator_KeyValuePair_2_System_Int32_System_Object__get_Current, (List_1_T_Enumerator_KeyValuePair_2_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_KeyValuePair_2_System_Int32Enum_System_Object___ctor, (List_1_T_Enumerator_KeyValuePair_2_System_Int32Enum_System_Object___Boxed * __this, List_1_KeyValuePair_2_System_Int32Enum_System_Object_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_KeyValuePair_2_System_Int32Enum_System_Object__Dispose, (List_1_T_Enumerator_KeyValuePair_2_System_Int32Enum_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434850, bool, List_1_T_Enumerator_KeyValuePair_2_System_Int32Enum_System_Object__MoveNext, (List_1_T_Enumerator_KeyValuePair_2_System_Int32Enum_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_KeyValuePair_2_System_Int32Enum_System_Object__MoveNextRare, (List_1_T_Enumerator_KeyValuePair_2_System_Int32Enum_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_KeyValuePair_2_System_Int32Enum_System_Object__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_KeyValuePair_2_System_Int32Enum_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_KeyValuePair_2_System_Int32Enum_System_Object__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_KeyValuePair_2_System_Int32Enum_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_Int32Enum_System_Object_, List_1_T_Enumerator_KeyValuePair_2_System_Int32Enum_System_Object__get_Current, (List_1_T_Enumerator_KeyValuePair_2_System_Int32Enum_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_KeyValuePair_2_System_Object_System_ArraySegment_1___ctor, (List_1_T_Enumerator_KeyValuePair_2_System_Object_System_ArraySegment_1___Boxed * __this, List_1_KeyValuePair_2_System_Object_System_ArraySegment_1_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_KeyValuePair_2_System_Object_System_ArraySegment_1__Dispose, (List_1_T_Enumerator_KeyValuePair_2_System_Object_System_ArraySegment_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01435020, bool, List_1_T_Enumerator_KeyValuePair_2_System_Object_System_ArraySegment_1__MoveNext, (List_1_T_Enumerator_KeyValuePair_2_System_Object_System_ArraySegment_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_KeyValuePair_2_System_Object_System_ArraySegment_1__MoveNextRare, (List_1_T_Enumerator_KeyValuePair_2_System_Object_System_ArraySegment_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_KeyValuePair_2_System_Object_System_ArraySegment_1__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_KeyValuePair_2_System_Object_System_ArraySegment_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_KeyValuePair_2_System_Object_System_ArraySegment_1__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_KeyValuePair_2_System_Object_System_ArraySegment_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, KeyValuePair_2_System_Object_System_ArraySegment_1_, List_1_T_Enumerator_KeyValuePair_2_System_Object_System_ArraySegment_1__get_Current, (List_1_T_Enumerator_KeyValuePair_2_System_Object_System_ArraySegment_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char___ctor, (List_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char___Boxed * __this, List_1_KeyValuePair_2_System_Object_System_Char_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char__Dispose, (List_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char__MoveNext, (List_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char__MoveNextRare, (List_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_Object_System_Char_, List_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char__get_Current, (List_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_System_ArraySegment_1___ctor, (List_1_T_Enumerator_System_ArraySegment_1_ * __this, List_1_System_ArraySegment_1_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_ArraySegment_1__Dispose, (List_1_T_Enumerator_System_ArraySegment_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_System_ArraySegment_1__MoveNext, (List_1_T_Enumerator_System_ArraySegment_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_System_ArraySegment_1__MoveNextRare, (List_1_T_Enumerator_System_ArraySegment_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_System_ArraySegment_1__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_ArraySegment_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_System_ArraySegment_1__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_ArraySegment_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, ArraySegment_1_Byte_, List_1_T_Enumerator_System_ArraySegment_1__get_Current, (List_1_T_Enumerator_System_ArraySegment_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341F0, void, List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___ctor, (List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * __this, List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__2 * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__Dispose, (List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434270, bool, List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__MoveNext, (List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434370, bool, List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__MoveNextRare, (List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434460, void, List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014343B0, Object *, List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01204560, AsyncOperationHandle_1_System_Object_, List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__get_Current, (List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341F0, void, List_1_T_Enumerator_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta___ctor, (List_1_T_Enumerator_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta_ * __this, List_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta__Dispose, (List_1_T_Enumerator_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014344A0, bool, List_1_T_Enumerator_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta__MoveNext, (List_1_T_Enumerator_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434370, bool, List_1_T_Enumerator_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta__MoveNextRare, (List_1_T_Enumerator_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434460, void, List_1_T_Enumerator_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014343B0, Object *, List_1_T_Enumerator_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01204560, VoiceSender_1_TPeer_ChannelDelta_Dissonance_Integrations_PhotonBolt_BoltPeer_, List_1_T_Enumerator_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta__get_Current, (List_1_T_Enumerator_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_UnityEngine_Timeline_IntervalTree_1_Entry___ctor, (List_1_T_Enumerator_UnityEngine_Timeline_IntervalTree_1_Entry_ * __this, List_1_UnityEngine_Timeline_IntervalTree_1_Entry__1 * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Timeline_IntervalTree_1_Entry__Dispose, (List_1_T_Enumerator_UnityEngine_Timeline_IntervalTree_1_Entry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434620, bool, List_1_T_Enumerator_UnityEngine_Timeline_IntervalTree_1_Entry__MoveNext, (List_1_T_Enumerator_UnityEngine_Timeline_IntervalTree_1_Entry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_UnityEngine_Timeline_IntervalTree_1_Entry__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Timeline_IntervalTree_1_Entry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_UnityEngine_Timeline_IntervalTree_1_Entry__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Timeline_IntervalTree_1_Entry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_UnityEngine_Timeline_IntervalTree_1_Entry__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Timeline_IntervalTree_1_Entry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, IntervalTree_1_T_Entry_System_Object_, List_1_T_Enumerator_UnityEngine_Timeline_IntervalTree_1_Entry__get_Current, (List_1_T_Enumerator_UnityEngine_Timeline_IntervalTree_1_Entry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb___ctor, (List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb_ * __this, List_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__Dispose, (List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434850, bool, List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__MoveNext, (List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__MoveNextRare, (List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object_, List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__get_Current, (List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1__ctor, (List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1 * __this, List_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1 * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1_Dispose, (List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1_MoveNext, (List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1_MoveNextRare, (List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1_System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1_System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object_, List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1_get_Current, (List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341F0, void, List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2__ctor, (List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2 * __this, List_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2 * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2_Dispose, (List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434270, bool, List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2_MoveNext, (List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434370, bool, List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2_MoveNextRare, (List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434460, void, List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2_System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x014343B0, Object *, List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2_System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01204560, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_, List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2_get_Current, (List_1_T_Enumerator_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434950, void, Queue_1_T_Enumerator_KeyValuePair_2_System_DateTime_System_UInt32___ctor, (Queue_1_T_Enumerator_KeyValuePair_2_System_DateTime_System_UInt32_ * __this, Queue_1_KeyValuePair_2_System_DateTime_System_UInt32_ * q, MethodInfo * method)); +DO_APP_FUNC(0x014349D0, void, Queue_1_T_Enumerator_KeyValuePair_2_System_DateTime_System_UInt32__Dispose, (Queue_1_T_Enumerator_KeyValuePair_2_System_DateTime_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014349E0, bool, Queue_1_T_Enumerator_KeyValuePair_2_System_DateTime_System_UInt32__MoveNext, (Queue_1_T_Enumerator_KeyValuePair_2_System_DateTime_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D058C0, Queue_1_T_Enumerator_KeyValuePair_2_System_DateTime_System_UInt32__MoveNext__MethodInfo); +DO_APP_FUNC(0x01434C40, void, Queue_1_T_Enumerator_KeyValuePair_2_System_DateTime_System_UInt32__System_Collections_IEnumerator_Reset, (Queue_1_T_Enumerator_KeyValuePair_2_System_DateTime_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05810, Queue_1_T_Enumerator_KeyValuePair_2_System_DateTime_System_UInt32__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x01434B90, Object *, Queue_1_T_Enumerator_KeyValuePair_2_System_DateTime_System_UInt32__System_Collections_IEnumerator_get_Current, (Queue_1_T_Enumerator_KeyValuePair_2_System_DateTime_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434B20, void, Queue_1_T_Enumerator_KeyValuePair_2_System_DateTime_System_UInt32__ThrowEnumerationNotStartedOrEnded, (Queue_1_T_Enumerator_KeyValuePair_2_System_DateTime_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05818, Queue_1_T_Enumerator_KeyValuePair_2_System_DateTime_System_UInt32__ThrowEnumerationNotStartedOrEnded__MethodInfo); +DO_APP_FUNC(0x01434AD0, KeyValuePair_2_System_DateTime_System_UInt32_, Queue_1_T_Enumerator_KeyValuePair_2_System_DateTime_System_UInt32__get_Current, (Queue_1_T_Enumerator_KeyValuePair_2_System_DateTime_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_KeyValuePair_2_System_Guid_System_Object___ctor, (List_1_T_Enumerator_KeyValuePair_2_System_Guid_System_Object_ * __this, List_1_KeyValuePair_2_System_Guid_System_Object_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_KeyValuePair_2_System_Guid_System_Object__Dispose, (List_1_T_Enumerator_KeyValuePair_2_System_Guid_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434620, bool, List_1_T_Enumerator_KeyValuePair_2_System_Guid_System_Object__MoveNext, (List_1_T_Enumerator_KeyValuePair_2_System_Guid_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_KeyValuePair_2_System_Guid_System_Object__MoveNextRare, (List_1_T_Enumerator_KeyValuePair_2_System_Guid_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_KeyValuePair_2_System_Guid_System_Object__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_KeyValuePair_2_System_Guid_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_KeyValuePair_2_System_Guid_System_Object__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_KeyValuePair_2_System_Guid_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, KeyValuePair_2_System_Guid_System_Object_, List_1_T_Enumerator_KeyValuePair_2_System_Guid_System_Object__get_Current, (List_1_T_Enumerator_KeyValuePair_2_System_Guid_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, InlinedArray_1_TValue_Enumerator_System_Collections_Generic_KeyValuePair_2__Dispose, (InlinedArray_1_TValue_Enumerator_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434CD0, bool, InlinedArray_1_TValue_Enumerator_System_Collections_Generic_KeyValuePair_2__MoveNext, (InlinedArray_1_TValue_Enumerator_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x006DDC60, void, InlinedArray_1_TValue_Enumerator_System_Collections_Generic_KeyValuePair_2__Reset, (InlinedArray_1_TValue_Enumerator_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434D30, Object *, InlinedArray_1_TValue_Enumerator_System_Collections_Generic_KeyValuePair_2__System_Collections_IEnumerator_get_Current, (InlinedArray_1_TValue_Enumerator_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434CF0, KeyValuePair_2_System_Int32_System_Int32_, InlinedArray_1_TValue_Enumerator_System_Collections_Generic_KeyValuePair_2__get_Current, (InlinedArray_1_TValue_Enumerator_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434DE0, void, List_1_T_Enumerator_KeyValuePair_2_System_Int32_System_Int32___ctor, (List_1_T_Enumerator_KeyValuePair_2_System_Int32_System_Int32_ * __this, List_1_KeyValuePair_2_System_Int32_System_Int32_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_KeyValuePair_2_System_Int32_System_Int32__Dispose, (List_1_T_Enumerator_KeyValuePair_2_System_Int32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF6F0, List_1_T_Enumerator_KeyValuePair_2_System_Int32_System_Int32__Dispose__MethodInfo); +DO_APP_FUNC(0x01434E60, bool, List_1_T_Enumerator_KeyValuePair_2_System_Int32_System_Int32__MoveNext, (List_1_T_Enumerator_KeyValuePair_2_System_Int32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF6E0, List_1_T_Enumerator_KeyValuePair_2_System_Int32_System_Int32__MoveNext__MethodInfo); +DO_APP_FUNC(0x01434F00, bool, List_1_T_Enumerator_KeyValuePair_2_System_Int32_System_Int32__MoveNextRare, (List_1_T_Enumerator_KeyValuePair_2_System_Int32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434FE0, void, List_1_T_Enumerator_KeyValuePair_2_System_Int32_System_Int32__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_KeyValuePair_2_System_Int32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434F40, Object *, List_1_T_Enumerator_KeyValuePair_2_System_Int32_System_Int32__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_KeyValuePair_2_System_Int32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, KeyValuePair_2_System_Int32_System_Int32_, List_1_T_Enumerator_KeyValuePair_2_System_Int32_System_Int32__get_Current, (List_1_T_Enumerator_KeyValuePair_2_System_Int32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF6C8, List_1_T_Enumerator_KeyValuePair_2_System_Int32_System_Int32__get_Current__MethodInfo); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_KeyValuePair_2_System_Int32_System_Object___ctor, (List_1_T_Enumerator_KeyValuePair_2_System_Int32_System_Object_ * __this, List_1_KeyValuePair_2_System_Int32_System_Object_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_KeyValuePair_2_System_Int32_System_Object__Dispose, (List_1_T_Enumerator_KeyValuePair_2_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434850, bool, List_1_T_Enumerator_KeyValuePair_2_System_Int32_System_Object__MoveNext, (List_1_T_Enumerator_KeyValuePair_2_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_KeyValuePair_2_System_Int32_System_Object__MoveNextRare, (List_1_T_Enumerator_KeyValuePair_2_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_KeyValuePair_2_System_Int32_System_Object__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_KeyValuePair_2_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_KeyValuePair_2_System_Int32_System_Object__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_KeyValuePair_2_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_Int32_System_Object_, List_1_T_Enumerator_KeyValuePair_2_System_Int32_System_Object__get_Current, (List_1_T_Enumerator_KeyValuePair_2_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_KeyValuePair_2_System_Int32Enum_System_Object___ctor, (List_1_T_Enumerator_KeyValuePair_2_System_Int32Enum_System_Object_ * __this, List_1_KeyValuePair_2_System_Int32Enum_System_Object_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_KeyValuePair_2_System_Int32Enum_System_Object__Dispose, (List_1_T_Enumerator_KeyValuePair_2_System_Int32Enum_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434850, bool, List_1_T_Enumerator_KeyValuePair_2_System_Int32Enum_System_Object__MoveNext, (List_1_T_Enumerator_KeyValuePair_2_System_Int32Enum_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_KeyValuePair_2_System_Int32Enum_System_Object__MoveNextRare, (List_1_T_Enumerator_KeyValuePair_2_System_Int32Enum_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_KeyValuePair_2_System_Int32Enum_System_Object__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_KeyValuePair_2_System_Int32Enum_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_KeyValuePair_2_System_Int32Enum_System_Object__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_KeyValuePair_2_System_Int32Enum_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_Int32Enum_System_Object_, List_1_T_Enumerator_KeyValuePair_2_System_Int32Enum_System_Object__get_Current, (List_1_T_Enumerator_KeyValuePair_2_System_Int32Enum_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_KeyValuePair_2_System_Object_System_ArraySegment_1___ctor, (List_1_T_Enumerator_KeyValuePair_2_System_Object_System_ArraySegment_1_ * __this, List_1_KeyValuePair_2_System_Object_System_ArraySegment_1_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_KeyValuePair_2_System_Object_System_ArraySegment_1__Dispose, (List_1_T_Enumerator_KeyValuePair_2_System_Object_System_ArraySegment_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01435020, bool, List_1_T_Enumerator_KeyValuePair_2_System_Object_System_ArraySegment_1__MoveNext, (List_1_T_Enumerator_KeyValuePair_2_System_Object_System_ArraySegment_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_KeyValuePair_2_System_Object_System_ArraySegment_1__MoveNextRare, (List_1_T_Enumerator_KeyValuePair_2_System_Object_System_ArraySegment_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_KeyValuePair_2_System_Object_System_ArraySegment_1__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_KeyValuePair_2_System_Object_System_ArraySegment_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_KeyValuePair_2_System_Object_System_ArraySegment_1__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_KeyValuePair_2_System_Object_System_ArraySegment_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, KeyValuePair_2_System_Object_System_ArraySegment_1_, List_1_T_Enumerator_KeyValuePair_2_System_Object_System_ArraySegment_1__get_Current, (List_1_T_Enumerator_KeyValuePair_2_System_Object_System_ArraySegment_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char___ctor, (List_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char_ * __this, List_1_KeyValuePair_2_System_Object_System_Char_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char__Dispose, (List_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char__MoveNext, (List_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char__MoveNextRare, (List_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_Object_System_Char_, List_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char__get_Current, (List_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01436280, void, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char___cctor, (MethodInfo * method)); -DO_APP_FUNC(0x01435120, void, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char___ctor, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char___Boxed * __this, SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * set, MethodInfo * method)); -DO_APP_FUNC(0x014351C0, void, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char___ctor_1, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char___Boxed * __this, SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * set, bool reverse, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char__Dispose, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01435560, void, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char__Initialize, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014358E0, bool, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char__MoveNext, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01436080, void, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char__Reset, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014361F0, void, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char__System_Collections_IEnumerator_Reset, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01435F50, Object *, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char__System_Collections_IEnumerator_get_Current, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01435510, void, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char__System_Runtime_Serialization_IDeserializationCallback_OnDeserialization, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char___Boxed * __this, Object * sender, MethodInfo * method)); -DO_APP_FUNC(0x014354C0, void, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char__System_Runtime_Serialization_ISerializable_GetObjectData, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char___Boxed * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); -DO_APP_FUNC(0x01435EA0, KeyValuePair_2_System_Object_System_Char_, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char__get_Current, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01436070, bool, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char__get_NotStartedOrEnded, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object___ctor, (List_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object___Boxed * __this, List_1_KeyValuePair_2_System_Object_System_Object_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object__Dispose, (List_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object__MoveNext, (List_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object__MoveNextRare, (List_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_Object_System_Object_, List_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object__get_Current, (List_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01435120, void, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char___ctor, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char_ * __this, SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * set, MethodInfo * method)); +DO_APP_FUNC(0x014351C0, void, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char___ctor_1, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char_ * __this, SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * set, bool reverse, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char__Dispose, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01435560, void, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char__Initialize, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014358E0, bool, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char__MoveNext, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D057F8, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char__MoveNext__MethodInfo); +DO_APP_FUNC(0x01436080, void, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char__Reset, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05870, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char__Reset__MethodInfo); +DO_APP_FUNC(0x014361F0, void, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char__System_Collections_IEnumerator_Reset, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01435F50, Object *, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char__System_Collections_IEnumerator_get_Current, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D057F0, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x01435510, void, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char__System_Runtime_Serialization_IDeserializationCallback_OnDeserialization, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char_ * __this, Object * sender, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05800, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char__System_Runtime_Serialization_IDeserializationCallback_OnDeserialization__MethodInfo); +DO_APP_FUNC(0x014354C0, void, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char__System_Runtime_Serialization_ISerializable_GetObjectData, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05808, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char__System_Runtime_Serialization_ISerializable_GetObjectData__MethodInfo); +DO_APP_FUNC(0x01435EA0, KeyValuePair_2_System_Object_System_Char_, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char__get_Current, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01436070, bool, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char__get_NotStartedOrEnded, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object___ctor, (List_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object_ * __this, List_1_KeyValuePair_2_System_Object_System_Object_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object__Dispose, (List_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object__MoveNext, (List_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object__MoveNextRare, (List_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_Object_System_Object_, List_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object__get_Current, (List_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01436280, void, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object___cctor, (MethodInfo * method)); -DO_APP_FUNC(0x01435120, void, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object___ctor, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object___Boxed * __this, SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * set, MethodInfo * method)); -DO_APP_FUNC(0x014351C0, void, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object___ctor_1, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object___Boxed * __this, SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * set, bool reverse, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object__Dispose, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01435560, void, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object__Initialize, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014364C0, bool, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object__MoveNext, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01436BA0, void, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object__Reset, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01436D10, void, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object__System_Collections_IEnumerator_Reset, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01436A80, Object *, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object__System_Collections_IEnumerator_get_Current, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01436470, void, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object__System_Runtime_Serialization_IDeserializationCallback_OnDeserialization, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object___Boxed * __this, Object * sender, MethodInfo * method)); -DO_APP_FUNC(0x01436420, void, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object__System_Runtime_Serialization_ISerializable_GetObjectData, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object___Boxed * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); -DO_APP_FUNC(0x01435EA0, KeyValuePair_2_System_Object_System_Object_, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object__get_Current, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01436070, bool, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object__get_NotStartedOrEnded, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01436DA0, void, Stack_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object___ctor, (Stack_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object___Boxed * __this, Stack_1_KeyValuePair_2_System_Object_System_Object_ * stack, MethodInfo * method)); -DO_APP_FUNC(0x01436E20, void, Stack_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object__Dispose, (Stack_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01436E30, bool, Stack_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object__MoveNext, (Stack_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014370E0, void, Stack_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object__System_Collections_IEnumerator_Reset, (Stack_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437030, Object *, Stack_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object__System_Collections_IEnumerator_get_Current, (Stack_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01436FC0, void, Stack_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object__ThrowEnumerationNotStartedOrEnded, (Stack_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01436F70, KeyValuePair_2_System_Object_System_Object_, Stack_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object__get_Current, (Stack_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437170, void, List_1_T_Enumerator_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___ctor, (List_1_T_Enumerator_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Boxed * __this, List_1_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__Dispose, (List_1_T_Enumerator_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437200, bool, List_1_T_Enumerator_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__MoveNext, (List_1_T_Enumerator_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437330, bool, List_1_T_Enumerator_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__MoveNextRare, (List_1_T_Enumerator_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437480, void, List_1_T_Enumerator_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014373B0, Object *, List_1_T_Enumerator_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437380, KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_, List_1_T_Enumerator_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__get_Current, (List_1_T_Enumerator_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_KeyValuePair_2_UnityEngine_PropertyName_System_Object___ctor, (List_1_T_Enumerator_KeyValuePair_2_UnityEngine_PropertyName_System_Object___Boxed * __this, List_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_KeyValuePair_2_UnityEngine_PropertyName_System_Object__Dispose, (List_1_T_Enumerator_KeyValuePair_2_UnityEngine_PropertyName_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434850, bool, List_1_T_Enumerator_KeyValuePair_2_UnityEngine_PropertyName_System_Object__MoveNext, (List_1_T_Enumerator_KeyValuePair_2_UnityEngine_PropertyName_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_KeyValuePair_2_UnityEngine_PropertyName_System_Object__MoveNextRare, (List_1_T_Enumerator_KeyValuePair_2_UnityEngine_PropertyName_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_KeyValuePair_2_UnityEngine_PropertyName_System_Object__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_KeyValuePair_2_UnityEngine_PropertyName_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_KeyValuePair_2_UnityEngine_PropertyName_System_Object__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_KeyValuePair_2_UnityEngine_PropertyName_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, KeyValuePair_2_UnityEngine_PropertyName_System_Object_, List_1_T_Enumerator_KeyValuePair_2_UnityEngine_PropertyName_System_Object__get_Current, (List_1_T_Enumerator_KeyValuePair_2_UnityEngine_PropertyName_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer___ctor, (List_1_T_Enumerator_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer___Boxed * __this, List_1_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer__Dispose, (List_1_T_Enumerator_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434850, bool, List_1_T_Enumerator_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer__MoveNext, (List_1_T_Enumerator_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer__MoveNextRare, (List_1_T_Enumerator_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer_, List_1_T_Enumerator_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer__get_Current, (List_1_T_Enumerator_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_KeyValuePair_2_System_UInt16_System_Object___ctor, (List_1_T_Enumerator_KeyValuePair_2_System_UInt16_System_Object___Boxed * __this, List_1_KeyValuePair_2_System_UInt16_System_Object_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_KeyValuePair_2_System_UInt16_System_Object__Dispose, (List_1_T_Enumerator_KeyValuePair_2_System_UInt16_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434850, bool, List_1_T_Enumerator_KeyValuePair_2_System_UInt16_System_Object__MoveNext, (List_1_T_Enumerator_KeyValuePair_2_System_UInt16_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_KeyValuePair_2_System_UInt16_System_Object__MoveNextRare, (List_1_T_Enumerator_KeyValuePair_2_System_UInt16_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_KeyValuePair_2_System_UInt16_System_Object__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_KeyValuePair_2_System_UInt16_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_KeyValuePair_2_System_UInt16_System_Object__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_KeyValuePair_2_System_UInt16_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_UInt16_System_Object_, List_1_T_Enumerator_KeyValuePair_2_System_UInt16_System_Object__get_Current, (List_1_T_Enumerator_KeyValuePair_2_System_UInt16_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object___ctor, (List_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object___Boxed * __this, List_1_KeyValuePair_2_System_UInt64_System_Object_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object__Dispose, (List_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434850, bool, List_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object__MoveNext, (List_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object__MoveNextRare, (List_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_UInt64_System_Object_, List_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object__get_Current, (List_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01435120, void, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object___ctor, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object_ * __this, SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * set, MethodInfo * method)); +DO_APP_FUNC(0x014351C0, void, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object___ctor_1, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object_ * __this, SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * set, bool reverse, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object__Dispose, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01435560, void, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object__Initialize, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014364C0, bool, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object__MoveNext, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05858, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object__MoveNext__MethodInfo); +DO_APP_FUNC(0x01436BA0, void, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object__Reset, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05840, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object__Reset__MethodInfo); +DO_APP_FUNC(0x01436D10, void, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object__System_Collections_IEnumerator_Reset, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01436A80, Object *, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object__System_Collections_IEnumerator_get_Current, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05850, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x01436470, void, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object__System_Runtime_Serialization_IDeserializationCallback_OnDeserialization, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object_ * __this, Object * sender, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05860, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object__System_Runtime_Serialization_IDeserializationCallback_OnDeserialization__MethodInfo); +DO_APP_FUNC(0x01436420, void, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object__System_Runtime_Serialization_ISerializable_GetObjectData, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05868, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object__System_Runtime_Serialization_ISerializable_GetObjectData__MethodInfo); +DO_APP_FUNC(0x01435EA0, KeyValuePair_2_System_Object_System_Object_, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object__get_Current, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01436070, bool, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object__get_NotStartedOrEnded, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01436DA0, void, Stack_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object___ctor, (Stack_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object_ * __this, Stack_1_KeyValuePair_2_System_Object_System_Object_ * stack, MethodInfo * method)); +DO_APP_FUNC(0x01436E20, void, Stack_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object__Dispose, (Stack_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01436E30, bool, Stack_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object__MoveNext, (Stack_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05838, Stack_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object__MoveNext__MethodInfo); +DO_APP_FUNC(0x014370E0, void, Stack_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object__System_Collections_IEnumerator_Reset, (Stack_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05798, Stack_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x01437030, Object *, Stack_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object__System_Collections_IEnumerator_get_Current, (Stack_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01436FC0, void, Stack_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object__ThrowEnumerationNotStartedOrEnded, (Stack_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05830, Stack_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object__ThrowEnumerationNotStartedOrEnded__MethodInfo); +DO_APP_FUNC(0x01436F70, KeyValuePair_2_System_Object_System_Object_, Stack_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object__get_Current, (Stack_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01437170, void, List_1_T_Enumerator_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___ctor, (List_1_T_Enumerator_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, List_1_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__Dispose, (List_1_T_Enumerator_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01437200, bool, List_1_T_Enumerator_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__MoveNext, (List_1_T_Enumerator_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01437330, bool, List_1_T_Enumerator_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__MoveNextRare, (List_1_T_Enumerator_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01437480, void, List_1_T_Enumerator_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014373B0, Object *, List_1_T_Enumerator_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01437380, KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_, List_1_T_Enumerator_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__get_Current, (List_1_T_Enumerator_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_KeyValuePair_2_UnityEngine_PropertyName_System_Object___ctor, (List_1_T_Enumerator_KeyValuePair_2_UnityEngine_PropertyName_System_Object_ * __this, List_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_KeyValuePair_2_UnityEngine_PropertyName_System_Object__Dispose, (List_1_T_Enumerator_KeyValuePair_2_UnityEngine_PropertyName_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434850, bool, List_1_T_Enumerator_KeyValuePair_2_UnityEngine_PropertyName_System_Object__MoveNext, (List_1_T_Enumerator_KeyValuePair_2_UnityEngine_PropertyName_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_KeyValuePair_2_UnityEngine_PropertyName_System_Object__MoveNextRare, (List_1_T_Enumerator_KeyValuePair_2_UnityEngine_PropertyName_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_KeyValuePair_2_UnityEngine_PropertyName_System_Object__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_KeyValuePair_2_UnityEngine_PropertyName_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_KeyValuePair_2_UnityEngine_PropertyName_System_Object__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_KeyValuePair_2_UnityEngine_PropertyName_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, KeyValuePair_2_UnityEngine_PropertyName_System_Object_, List_1_T_Enumerator_KeyValuePair_2_UnityEngine_PropertyName_System_Object__get_Current, (List_1_T_Enumerator_KeyValuePair_2_UnityEngine_PropertyName_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer___ctor, (List_1_T_Enumerator_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, List_1_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer__Dispose, (List_1_T_Enumerator_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434850, bool, List_1_T_Enumerator_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer__MoveNext, (List_1_T_Enumerator_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer__MoveNextRare, (List_1_T_Enumerator_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer_, List_1_T_Enumerator_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer__get_Current, (List_1_T_Enumerator_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_KeyValuePair_2_System_UInt16_System_Object___ctor, (List_1_T_Enumerator_KeyValuePair_2_System_UInt16_System_Object_ * __this, List_1_KeyValuePair_2_System_UInt16_System_Object_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_KeyValuePair_2_System_UInt16_System_Object__Dispose, (List_1_T_Enumerator_KeyValuePair_2_System_UInt16_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434850, bool, List_1_T_Enumerator_KeyValuePair_2_System_UInt16_System_Object__MoveNext, (List_1_T_Enumerator_KeyValuePair_2_System_UInt16_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_KeyValuePair_2_System_UInt16_System_Object__MoveNextRare, (List_1_T_Enumerator_KeyValuePair_2_System_UInt16_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_KeyValuePair_2_System_UInt16_System_Object__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_KeyValuePair_2_System_UInt16_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_KeyValuePair_2_System_UInt16_System_Object__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_KeyValuePair_2_System_UInt16_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_UInt16_System_Object_, List_1_T_Enumerator_KeyValuePair_2_System_UInt16_System_Object__get_Current, (List_1_T_Enumerator_KeyValuePair_2_System_UInt16_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object___ctor, (List_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object_ * __this, List_1_KeyValuePair_2_System_UInt64_System_Object_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object__Dispose, (List_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434850, bool, List_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object__MoveNext, (List_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object__MoveNextRare, (List_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_UInt64_System_Object_, List_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object__get_Current, (List_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01436280, void, SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object___cctor, (MethodInfo * method)); -DO_APP_FUNC(0x01435120, void, SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object___ctor, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object___Boxed * __this, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * set, MethodInfo * method)); -DO_APP_FUNC(0x014351C0, void, SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object___ctor_1, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object___Boxed * __this, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * set, bool reverse, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object__Dispose, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01435560, void, SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object__Initialize, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437570, bool, SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object__MoveNext, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437C50, void, SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object__Reset, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437DC0, void, SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object__System_Collections_IEnumerator_Reset, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437B30, Object *, SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object__System_Collections_IEnumerator_get_Current, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437520, void, SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object__System_Runtime_Serialization_IDeserializationCallback_OnDeserialization, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object___Boxed * __this, Object * sender, MethodInfo * method)); -DO_APP_FUNC(0x014374D0, void, SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object__System_Runtime_Serialization_ISerializable_GetObjectData, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object___Boxed * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); -DO_APP_FUNC(0x01435EA0, KeyValuePair_2_System_UInt64_System_Object_, SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object__get_Current, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01436070, bool, SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object__get_NotStartedOrEnded, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_Unity_Collections_NativeArray_1___ctor, (List_1_T_Enumerator_Unity_Collections_NativeArray_1___Boxed * __this, List_1_Unity_Collections_NativeArray_1__1 * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Unity_Collections_NativeArray_1__Dispose, (List_1_T_Enumerator_Unity_Collections_NativeArray_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437E50, bool, List_1_T_Enumerator_Unity_Collections_NativeArray_1__MoveNext, (List_1_T_Enumerator_Unity_Collections_NativeArray_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_Unity_Collections_NativeArray_1__MoveNextRare, (List_1_T_Enumerator_Unity_Collections_NativeArray_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_Unity_Collections_NativeArray_1__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Unity_Collections_NativeArray_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_Unity_Collections_NativeArray_1__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Unity_Collections_NativeArray_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, NativeArray_1_System_UInt16_, List_1_T_Enumerator_Unity_Collections_NativeArray_1__get_Current, (List_1_T_Enumerator_Unity_Collections_NativeArray_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_Unity_Collections_NativeArray_1__1__ctor, (List_1_T_Enumerator_Unity_Collections_NativeArray_1__1__Boxed * __this, List_1_Unity_Collections_NativeArray_1_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Unity_Collections_NativeArray_1__1_Dispose, (List_1_T_Enumerator_Unity_Collections_NativeArray_1__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437E50, bool, List_1_T_Enumerator_Unity_Collections_NativeArray_1__1_MoveNext, (List_1_T_Enumerator_Unity_Collections_NativeArray_1__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_Unity_Collections_NativeArray_1__1_MoveNextRare, (List_1_T_Enumerator_Unity_Collections_NativeArray_1__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_Unity_Collections_NativeArray_1__1_System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Unity_Collections_NativeArray_1__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_Unity_Collections_NativeArray_1__1_System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Unity_Collections_NativeArray_1__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, NativeArray_1_UnityEngine_UIElements_Vertex_, List_1_T_Enumerator_Unity_Collections_NativeArray_1__1_get_Current, (List_1_T_Enumerator_Unity_Collections_NativeArray_1__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo___ctor, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo___Boxed * __this, List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo__Dispose, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo__MoveNext, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, RenderGraphResourcePool_1_Type_ResourceLogInfo_System_Object_, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo__get_Current, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_Photon_Bolt_Collections_STuple_2___ctor, (List_1_T_Enumerator_Photon_Bolt_Collections_STuple_2___Boxed * __this, List_1_Photon_Bolt_Collections_STuple_2__1 * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Photon_Bolt_Collections_STuple_2__Dispose, (List_1_T_Enumerator_Photon_Bolt_Collections_STuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_Photon_Bolt_Collections_STuple_2__MoveNext, (List_1_T_Enumerator_Photon_Bolt_Collections_STuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_Photon_Bolt_Collections_STuple_2__MoveNextRare, (List_1_T_Enumerator_Photon_Bolt_Collections_STuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_Photon_Bolt_Collections_STuple_2__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Photon_Bolt_Collections_STuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_Photon_Bolt_Collections_STuple_2__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Photon_Bolt_Collections_STuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, STuple_2_System_Object_System_Object_, List_1_T_Enumerator_Photon_Bolt_Collections_STuple_2__get_Current, (List_1_T_Enumerator_Photon_Bolt_Collections_STuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_System_ValueTuple_2___ctor, (List_1_T_Enumerator_System_ValueTuple_2___Boxed * __this, List_1_System_ValueTuple_2__6 * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_ValueTuple_2__Dispose, (List_1_T_Enumerator_System_ValueTuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434850, bool, List_1_T_Enumerator_System_ValueTuple_2__MoveNext, (List_1_T_Enumerator_System_ValueTuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_System_ValueTuple_2__MoveNextRare, (List_1_T_Enumerator_System_ValueTuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_System_ValueTuple_2__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_ValueTuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_System_ValueTuple_2__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_ValueTuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, ValueTuple_2_Int32_Object_, List_1_T_Enumerator_System_ValueTuple_2__get_Current, (List_1_T_Enumerator_System_ValueTuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437EF0, void, List_1_T_Enumerator_System_ValueTuple_2__1__ctor, (List_1_T_Enumerator_System_ValueTuple_2__1__Boxed * __this, List_1_System_ValueTuple_2__7 * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_ValueTuple_2__1_Dispose, (List_1_T_Enumerator_System_ValueTuple_2__1__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01435120, void, SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object___ctor, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object_ * __this, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * set, MethodInfo * method)); +DO_APP_FUNC(0x014351C0, void, SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object___ctor_1, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object_ * __this, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * set, bool reverse, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object__Dispose, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01435560, void, SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object__Initialize, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01437570, bool, SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object__MoveNext, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05778, SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object__MoveNext__MethodInfo); +DO_APP_FUNC(0x01437C50, void, SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object__Reset, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05760, SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object__Reset__MethodInfo); +DO_APP_FUNC(0x01437DC0, void, SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object__System_Collections_IEnumerator_Reset, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01437B30, Object *, SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object__System_Collections_IEnumerator_get_Current, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05770, SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x01437520, void, SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object__System_Runtime_Serialization_IDeserializationCallback_OnDeserialization, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object_ * __this, Object * sender, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05780, SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object__System_Runtime_Serialization_IDeserializationCallback_OnDeserialization__MethodInfo); +DO_APP_FUNC(0x014374D0, void, SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object__System_Runtime_Serialization_ISerializable_GetObjectData, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05790, SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object__System_Runtime_Serialization_ISerializable_GetObjectData__MethodInfo); +DO_APP_FUNC(0x01435EA0, KeyValuePair_2_System_UInt64_System_Object_, SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object__get_Current, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01436070, bool, SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object__get_NotStartedOrEnded, (SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_Unity_Collections_NativeArray_1___ctor, (List_1_T_Enumerator_Unity_Collections_NativeArray_1_ * __this, List_1_Unity_Collections_NativeArray_1__1 * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Unity_Collections_NativeArray_1__Dispose, (List_1_T_Enumerator_Unity_Collections_NativeArray_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01437E50, bool, List_1_T_Enumerator_Unity_Collections_NativeArray_1__MoveNext, (List_1_T_Enumerator_Unity_Collections_NativeArray_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_Unity_Collections_NativeArray_1__MoveNextRare, (List_1_T_Enumerator_Unity_Collections_NativeArray_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_Unity_Collections_NativeArray_1__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Unity_Collections_NativeArray_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_Unity_Collections_NativeArray_1__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Unity_Collections_NativeArray_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, NativeArray_1_System_UInt16_, List_1_T_Enumerator_Unity_Collections_NativeArray_1__get_Current, (List_1_T_Enumerator_Unity_Collections_NativeArray_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_Unity_Collections_NativeArray_1__1__ctor, (List_1_T_Enumerator_Unity_Collections_NativeArray_1__1 * __this, List_1_Unity_Collections_NativeArray_1_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Unity_Collections_NativeArray_1__1_Dispose, (List_1_T_Enumerator_Unity_Collections_NativeArray_1__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01437E50, bool, List_1_T_Enumerator_Unity_Collections_NativeArray_1__1_MoveNext, (List_1_T_Enumerator_Unity_Collections_NativeArray_1__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_Unity_Collections_NativeArray_1__1_MoveNextRare, (List_1_T_Enumerator_Unity_Collections_NativeArray_1__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_Unity_Collections_NativeArray_1__1_System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Unity_Collections_NativeArray_1__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_Unity_Collections_NativeArray_1__1_System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Unity_Collections_NativeArray_1__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, NativeArray_1_UnityEngine_UIElements_Vertex_, List_1_T_Enumerator_Unity_Collections_NativeArray_1__1_get_Current, (List_1_T_Enumerator_Unity_Collections_NativeArray_1__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo___ctor, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo_ * __this, List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo__Dispose, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo__MoveNext, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, RenderGraphResourcePool_1_Type_ResourceLogInfo_System_Object_, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo__get_Current, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_Photon_Bolt_Collections_STuple_2___ctor, (List_1_T_Enumerator_Photon_Bolt_Collections_STuple_2_ * __this, List_1_Photon_Bolt_Collections_STuple_2__1 * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Photon_Bolt_Collections_STuple_2__Dispose, (List_1_T_Enumerator_Photon_Bolt_Collections_STuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_Photon_Bolt_Collections_STuple_2__MoveNext, (List_1_T_Enumerator_Photon_Bolt_Collections_STuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_Photon_Bolt_Collections_STuple_2__MoveNextRare, (List_1_T_Enumerator_Photon_Bolt_Collections_STuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_Photon_Bolt_Collections_STuple_2__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Photon_Bolt_Collections_STuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_Photon_Bolt_Collections_STuple_2__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Photon_Bolt_Collections_STuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, STuple_2_System_Object_System_Object_, List_1_T_Enumerator_Photon_Bolt_Collections_STuple_2__get_Current, (List_1_T_Enumerator_Photon_Bolt_Collections_STuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_System_ValueTuple_2___ctor, (List_1_T_Enumerator_System_ValueTuple_2_ * __this, List_1_System_ValueTuple_2__6 * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_ValueTuple_2__Dispose, (List_1_T_Enumerator_System_ValueTuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434850, bool, List_1_T_Enumerator_System_ValueTuple_2__MoveNext, (List_1_T_Enumerator_System_ValueTuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_System_ValueTuple_2__MoveNextRare, (List_1_T_Enumerator_System_ValueTuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_System_ValueTuple_2__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_ValueTuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_System_ValueTuple_2__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_ValueTuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, ValueTuple_2_Int32_Object_, List_1_T_Enumerator_System_ValueTuple_2__get_Current, (List_1_T_Enumerator_System_ValueTuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01437EF0, void, List_1_T_Enumerator_System_ValueTuple_2__1__ctor, (List_1_T_Enumerator_System_ValueTuple_2__1 * __this, List_1_System_ValueTuple_2__7 * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_ValueTuple_2__1_Dispose, (List_1_T_Enumerator_System_ValueTuple_2__1 * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C97D90, List_1_T_Enumerator_System_ValueTuple_2__1_Dispose__MethodInfo); -DO_APP_FUNC(0x01437F70, bool, List_1_T_Enumerator_System_ValueTuple_2__1_MoveNext, (List_1_T_Enumerator_System_ValueTuple_2__1__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01437F70, bool, List_1_T_Enumerator_System_ValueTuple_2__1_MoveNext, (List_1_T_Enumerator_System_ValueTuple_2__1 * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C97D40, List_1_T_Enumerator_System_ValueTuple_2__1_MoveNext__MethodInfo); -DO_APP_FUNC(0x01438020, bool, List_1_T_Enumerator_System_ValueTuple_2__1_MoveNextRare, (List_1_T_Enumerator_System_ValueTuple_2__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438110, void, List_1_T_Enumerator_System_ValueTuple_2__1_System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_ValueTuple_2__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438060, Object *, List_1_T_Enumerator_System_ValueTuple_2__1_System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_ValueTuple_2__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C39A10, ValueTuple_2_Int32_UnityEngine_Vector2Int_, List_1_T_Enumerator_System_ValueTuple_2__1_get_Current, (List_1_T_Enumerator_System_ValueTuple_2__1__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438020, bool, List_1_T_Enumerator_System_ValueTuple_2__1_MoveNextRare, (List_1_T_Enumerator_System_ValueTuple_2__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438110, void, List_1_T_Enumerator_System_ValueTuple_2__1_System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_ValueTuple_2__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438060, Object *, List_1_T_Enumerator_System_ValueTuple_2__1_System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_ValueTuple_2__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C39A10, ValueTuple_2_Int32_UnityEngine_Vector2Int_, List_1_T_Enumerator_System_ValueTuple_2__1_get_Current, (List_1_T_Enumerator_System_ValueTuple_2__1 * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C97D58, List_1_T_Enumerator_System_ValueTuple_2__1_get_Current__MethodInfo); -DO_APP_FUNC(0x01434950, void, Queue_1_T_Enumerator_System_ValueTuple_2___ctor, (Queue_1_T_Enumerator_System_ValueTuple_2___Boxed * __this, Queue_1_System_ValueTuple_2__1 * q, MethodInfo * method)); -DO_APP_FUNC(0x014349D0, void, Queue_1_T_Enumerator_System_ValueTuple_2__Dispose, (Queue_1_T_Enumerator_System_ValueTuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438150, bool, Queue_1_T_Enumerator_System_ValueTuple_2__MoveNext, (Queue_1_T_Enumerator_System_ValueTuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014383C0, void, Queue_1_T_Enumerator_System_ValueTuple_2__System_Collections_IEnumerator_Reset, (Queue_1_T_Enumerator_System_ValueTuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438310, Object *, Queue_1_T_Enumerator_System_ValueTuple_2__System_Collections_IEnumerator_get_Current, (Queue_1_T_Enumerator_System_ValueTuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014382A0, void, Queue_1_T_Enumerator_System_ValueTuple_2__ThrowEnumerationNotStartedOrEnded, (Queue_1_T_Enumerator_System_ValueTuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438250, ValueTuple_2_IntPtr_Object_, Queue_1_T_Enumerator_System_ValueTuple_2__get_Current, (Queue_1_T_Enumerator_System_ValueTuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_System_ValueTuple_2__2__ctor, (List_1_T_Enumerator_System_ValueTuple_2__2__Boxed * __this, List_1_System_ValueTuple_2__8 * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_ValueTuple_2__2_Dispose, (List_1_T_Enumerator_System_ValueTuple_2__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01435020, bool, List_1_T_Enumerator_System_ValueTuple_2__2_MoveNext, (List_1_T_Enumerator_System_ValueTuple_2__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_System_ValueTuple_2__2_MoveNextRare, (List_1_T_Enumerator_System_ValueTuple_2__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_System_ValueTuple_2__2_System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_ValueTuple_2__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_System_ValueTuple_2__2_System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_ValueTuple_2__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, ValueTuple_2_Object_ValueTuple_2_Object_Int32_, List_1_T_Enumerator_System_ValueTuple_2__2_get_Current, (List_1_T_Enumerator_System_ValueTuple_2__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438450, void, LinkedList_1_T_Enumerator_System_ValueTuple_2___ctor, (LinkedList_1_T_Enumerator_System_ValueTuple_2___Boxed * __this, LinkedList_1_System_ValueTuple_2__1 * list, MethodInfo * method)); -DO_APP_FUNC(0x01438530, void, LinkedList_1_T_Enumerator_System_ValueTuple_2___ctor_1, (LinkedList_1_T_Enumerator_System_ValueTuple_2___Boxed * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, LinkedList_1_T_Enumerator_System_ValueTuple_2__Dispose, (LinkedList_1_T_Enumerator_System_ValueTuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014386C0, bool, LinkedList_1_T_Enumerator_System_ValueTuple_2__MoveNext, (LinkedList_1_T_Enumerator_System_ValueTuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014388D0, void, LinkedList_1_T_Enumerator_System_ValueTuple_2__System_Collections_IEnumerator_Reset, (LinkedList_1_T_Enumerator_System_ValueTuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438580, Object *, LinkedList_1_T_Enumerator_System_ValueTuple_2__System_Collections_IEnumerator_get_Current, (LinkedList_1_T_Enumerator_System_ValueTuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438A00, void, LinkedList_1_T_Enumerator_System_ValueTuple_2__System_Runtime_Serialization_IDeserializationCallback_OnDeserialization, (LinkedList_1_T_Enumerator_System_ValueTuple_2___Boxed * __this, Object * sender, MethodInfo * method)); -DO_APP_FUNC(0x014389B0, void, LinkedList_1_T_Enumerator_System_ValueTuple_2__System_Runtime_Serialization_ISerializable_GetObjectData, (LinkedList_1_T_Enumerator_System_ValueTuple_2___Boxed * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); -DO_APP_FUNC(0x0093E890, ValueTuple_2_Object_Object_, LinkedList_1_T_Enumerator_System_ValueTuple_2__get_Current, (LinkedList_1_T_Enumerator_System_ValueTuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_System_ValueTuple_2__3__ctor, (List_1_T_Enumerator_System_ValueTuple_2__3__Boxed * __this, List_1_System_ValueTuple_2__9 * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_ValueTuple_2__3_Dispose, (List_1_T_Enumerator_System_ValueTuple_2__3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_System_ValueTuple_2__3_MoveNext, (List_1_T_Enumerator_System_ValueTuple_2__3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_System_ValueTuple_2__3_MoveNextRare, (List_1_T_Enumerator_System_ValueTuple_2__3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_System_ValueTuple_2__3_System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_ValueTuple_2__3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_System_ValueTuple_2__3_System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_ValueTuple_2__3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, ValueTuple_2_Object_Object_, List_1_T_Enumerator_System_ValueTuple_2__3_get_Current, (List_1_T_Enumerator_System_ValueTuple_2__3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_System_ValueTuple_2__4__ctor, (List_1_T_Enumerator_System_ValueTuple_2__4__Boxed * __this, List_1_System_ValueTuple_2__5 * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_ValueTuple_2__4_Dispose, (List_1_T_Enumerator_System_ValueTuple_2__4__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434620, bool, List_1_T_Enumerator_System_ValueTuple_2__4_MoveNext, (List_1_T_Enumerator_System_ValueTuple_2__4__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_System_ValueTuple_2__4_MoveNextRare, (List_1_T_Enumerator_System_ValueTuple_2__4__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_System_ValueTuple_2__4_System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_ValueTuple_2__4__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_System_ValueTuple_2__4_System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_ValueTuple_2__4__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, ValueTuple_2_UnityEngine_Vector3Int_Object_, List_1_T_Enumerator_System_ValueTuple_2__4_get_Current, (List_1_T_Enumerator_System_ValueTuple_2__4__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438A50, void, List_1_T_Enumerator_System_ValueTuple_2__5__ctor, (List_1_T_Enumerator_System_ValueTuple_2__5__Boxed * __this, List_1_System_ValueTuple_2__3 * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_ValueTuple_2__5_Dispose, (List_1_T_Enumerator_System_ValueTuple_2__5__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438AE0, bool, List_1_T_Enumerator_System_ValueTuple_2__5_MoveNext, (List_1_T_Enumerator_System_ValueTuple_2__5__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438C10, bool, List_1_T_Enumerator_System_ValueTuple_2__5_MoveNextRare, (List_1_T_Enumerator_System_ValueTuple_2__5__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438D60, void, List_1_T_Enumerator_System_ValueTuple_2__5_System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_ValueTuple_2__5__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438C90, Object *, List_1_T_Enumerator_System_ValueTuple_2__5_System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_ValueTuple_2__5__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438C60, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_, List_1_T_Enumerator_System_ValueTuple_2__5_get_Current, (List_1_T_Enumerator_System_ValueTuple_2__5__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438DB0, void, List_1_T_Enumerator_System_ValueTuple_2__6__ctor, (List_1_T_Enumerator_System_ValueTuple_2__6__Boxed * __this, List_1_System_ValueTuple_2__4 * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_ValueTuple_2__6_Dispose, (List_1_T_Enumerator_System_ValueTuple_2__6__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438E40, bool, List_1_T_Enumerator_System_ValueTuple_2__6_MoveNext, (List_1_T_Enumerator_System_ValueTuple_2__6__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438F60, bool, List_1_T_Enumerator_System_ValueTuple_2__6_MoveNextRare, (List_1_T_Enumerator_System_ValueTuple_2__6__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439090, void, List_1_T_Enumerator_System_ValueTuple_2__6_System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_ValueTuple_2__6__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438FD0, Object *, List_1_T_Enumerator_System_ValueTuple_2__6_System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_ValueTuple_2__6__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438FB0, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_, List_1_T_Enumerator_System_ValueTuple_2__6_get_Current, (List_1_T_Enumerator_System_ValueTuple_2__6__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014390D0, void, LinkedList_1_T_Enumerator_System_ValueTuple_3___ctor, (LinkedList_1_T_Enumerator_System_ValueTuple_3___Boxed * __this, LinkedList_1_System_ValueTuple_3__1 * list, MethodInfo * method)); -DO_APP_FUNC(0x014391B0, void, LinkedList_1_T_Enumerator_System_ValueTuple_3___ctor_1, (LinkedList_1_T_Enumerator_System_ValueTuple_3___Boxed * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, LinkedList_1_T_Enumerator_System_ValueTuple_3__Dispose, (LinkedList_1_T_Enumerator_System_ValueTuple_3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439350, bool, LinkedList_1_T_Enumerator_System_ValueTuple_3__MoveNext, (LinkedList_1_T_Enumerator_System_ValueTuple_3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439560, void, LinkedList_1_T_Enumerator_System_ValueTuple_3__System_Collections_IEnumerator_Reset, (LinkedList_1_T_Enumerator_System_ValueTuple_3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439200, Object *, LinkedList_1_T_Enumerator_System_ValueTuple_3__System_Collections_IEnumerator_get_Current, (LinkedList_1_T_Enumerator_System_ValueTuple_3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014396A0, void, LinkedList_1_T_Enumerator_System_ValueTuple_3__System_Runtime_Serialization_IDeserializationCallback_OnDeserialization, (LinkedList_1_T_Enumerator_System_ValueTuple_3___Boxed * __this, Object * sender, MethodInfo * method)); -DO_APP_FUNC(0x01439650, void, LinkedList_1_T_Enumerator_System_ValueTuple_3__System_Runtime_Serialization_ISerializable_GetObjectData, (LinkedList_1_T_Enumerator_System_ValueTuple_3___Boxed * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); -DO_APP_FUNC(0x00F97060, ValueTuple_3_Object_Object_Object_, LinkedList_1_T_Enumerator_System_ValueTuple_3__get_Current, (LinkedList_1_T_Enumerator_System_ValueTuple_3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434DE0, void, List_1_T_Enumerator_UnityEngine_AnimatorClipInfo___ctor, (List_1_T_Enumerator_UnityEngine_AnimatorClipInfo___Boxed * __this, List_1_UnityEngine_AnimatorClipInfo_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_AnimatorClipInfo__Dispose, (List_1_T_Enumerator_UnityEngine_AnimatorClipInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434E60, bool, List_1_T_Enumerator_UnityEngine_AnimatorClipInfo__MoveNext, (List_1_T_Enumerator_UnityEngine_AnimatorClipInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434F00, bool, List_1_T_Enumerator_UnityEngine_AnimatorClipInfo__MoveNextRare, (List_1_T_Enumerator_UnityEngine_AnimatorClipInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434FE0, void, List_1_T_Enumerator_UnityEngine_AnimatorClipInfo__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_AnimatorClipInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434F40, Object *, List_1_T_Enumerator_UnityEngine_AnimatorClipInfo__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_AnimatorClipInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, AnimatorClipInfo, List_1_T_Enumerator_UnityEngine_AnimatorClipInfo__get_Current, (List_1_T_Enumerator_UnityEngine_AnimatorClipInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014396F0, void, HashSet_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___ctor, (HashSet_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Boxed * __this, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * set, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, HashSet_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__Dispose, (HashSet_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439770, bool, HashSet_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__MoveNext, (HashSet_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439990, void, HashSet_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__System_Collections_IEnumerator_Reset, (HashSet_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439890, Object *, HashSet_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__System_Collections_IEnumerator_get_Current, (HashSet_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, AsyncOperationHandle, HashSet_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__get_Current, (HashSet_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___ctor, (List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Boxed * __this, List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__Dispose, (List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01435020, bool, List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__MoveNext, (List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__MoveNextRare, (List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, AsyncOperationHandle, List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__get_Current, (List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439A20, void, NativeArray_1_T_Enumerator_UnityEngine_Rendering_BatchVisibility___ctor, (NativeArray_1_T_Enumerator_UnityEngine_Rendering_BatchVisibility___Boxed * __this, NativeArray_1_UnityEngine_Rendering_BatchVisibility_ array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_UnityEngine_Rendering_BatchVisibility__Dispose, (NativeArray_1_T_Enumerator_UnityEngine_Rendering_BatchVisibility___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439A40, bool, NativeArray_1_T_Enumerator_UnityEngine_Rendering_BatchVisibility__MoveNext, (NativeArray_1_T_Enumerator_UnityEngine_Rendering_BatchVisibility___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_UnityEngine_Rendering_BatchVisibility__Reset, (NativeArray_1_T_Enumerator_UnityEngine_Rendering_BatchVisibility___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439B40, Object *, NativeArray_1_T_Enumerator_UnityEngine_Rendering_BatchVisibility__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_UnityEngine_Rendering_BatchVisibility___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439B20, BatchVisibility, NativeArray_1_T_Enumerator_UnityEngine_Rendering_BatchVisibility__get_Current, (NativeArray_1_T_Enumerator_UnityEngine_Rendering_BatchVisibility___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434DE0, void, List_1_T_Enumerator_Dissonance_Integrations_PhotonBolt_BoltPeer___ctor, (List_1_T_Enumerator_Dissonance_Integrations_PhotonBolt_BoltPeer___Boxed * __this, List_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Dissonance_Integrations_PhotonBolt_BoltPeer__Dispose, (List_1_T_Enumerator_Dissonance_Integrations_PhotonBolt_BoltPeer___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439BC0, bool, List_1_T_Enumerator_Dissonance_Integrations_PhotonBolt_BoltPeer__MoveNext, (List_1_T_Enumerator_Dissonance_Integrations_PhotonBolt_BoltPeer___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434F00, bool, List_1_T_Enumerator_Dissonance_Integrations_PhotonBolt_BoltPeer__MoveNextRare, (List_1_T_Enumerator_Dissonance_Integrations_PhotonBolt_BoltPeer___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434FE0, void, List_1_T_Enumerator_Dissonance_Integrations_PhotonBolt_BoltPeer__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Dissonance_Integrations_PhotonBolt_BoltPeer___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434F40, Object *, List_1_T_Enumerator_Dissonance_Integrations_PhotonBolt_BoltPeer__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Dissonance_Integrations_PhotonBolt_BoltPeer___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, BoltPeer, List_1_T_Enumerator_Dissonance_Integrations_PhotonBolt_BoltPeer__get_Current, (List_1_T_Enumerator_Dissonance_Integrations_PhotonBolt_BoltPeer___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_Photon_Bolt_LagCompensation_BoltPhysicsHit___ctor, (List_1_T_Enumerator_Photon_Bolt_LagCompensation_BoltPhysicsHit___Boxed * __this, List_1_Photon_Bolt_LagCompensation_BoltPhysicsHit_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Photon_Bolt_LagCompensation_BoltPhysicsHit__Dispose, (List_1_T_Enumerator_Photon_Bolt_LagCompensation_BoltPhysicsHit___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439CB0, bool, List_1_T_Enumerator_Photon_Bolt_LagCompensation_BoltPhysicsHit__MoveNext, (List_1_T_Enumerator_Photon_Bolt_LagCompensation_BoltPhysicsHit___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_Photon_Bolt_LagCompensation_BoltPhysicsHit__MoveNextRare, (List_1_T_Enumerator_Photon_Bolt_LagCompensation_BoltPhysicsHit___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_Photon_Bolt_LagCompensation_BoltPhysicsHit__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Photon_Bolt_LagCompensation_BoltPhysicsHit___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_Photon_Bolt_LagCompensation_BoltPhysicsHit__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Photon_Bolt_LagCompensation_BoltPhysicsHit___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, BoltPhysicsHit, List_1_T_Enumerator_Photon_Bolt_LagCompensation_BoltPhysicsHit__get_Current, (List_1_T_Enumerator_Photon_Bolt_LagCompensation_BoltPhysicsHit___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341F0, void, List_1_T_Enumerator_UnityEngine_BoneWeight___ctor, (List_1_T_Enumerator_UnityEngine_BoneWeight___Boxed * __this, List_1_UnityEngine_BoneWeight_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_BoneWeight__Dispose, (List_1_T_Enumerator_UnityEngine_BoneWeight___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439DB0, bool, List_1_T_Enumerator_UnityEngine_BoneWeight__MoveNext, (List_1_T_Enumerator_UnityEngine_BoneWeight___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434370, bool, List_1_T_Enumerator_UnityEngine_BoneWeight__MoveNextRare, (List_1_T_Enumerator_UnityEngine_BoneWeight___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434460, void, List_1_T_Enumerator_UnityEngine_BoneWeight__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_BoneWeight___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014343B0, Object *, List_1_T_Enumerator_UnityEngine_BoneWeight__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_BoneWeight___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01204560, BoneWeight, List_1_T_Enumerator_UnityEngine_BoneWeight__get_Current, (List_1_T_Enumerator_UnityEngine_BoneWeight___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439E60, void, NativeArray_1_T_Enumerator_UnityEngine_BoneWeight1___ctor, (NativeArray_1_T_Enumerator_UnityEngine_BoneWeight1___Boxed * __this, NativeArray_1_UnityEngine_BoneWeight1_ array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_UnityEngine_BoneWeight1__Dispose, (NativeArray_1_T_Enumerator_UnityEngine_BoneWeight1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439E80, bool, NativeArray_1_T_Enumerator_UnityEngine_BoneWeight1__MoveNext, (NativeArray_1_T_Enumerator_UnityEngine_BoneWeight1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_UnityEngine_BoneWeight1__Reset, (NativeArray_1_T_Enumerator_UnityEngine_BoneWeight1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439F40, Object *, NativeArray_1_T_Enumerator_UnityEngine_BoneWeight1__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_UnityEngine_BoneWeight1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439F30, BoneWeight1, NativeArray_1_T_Enumerator_UnityEngine_BoneWeight1__get_Current, (NativeArray_1_T_Enumerator_UnityEngine_BoneWeight1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439FC0, void, List_1_T_Enumerator_System_Boolean___ctor, (List_1_T_Enumerator_System_Boolean___Boxed * __this, List_1_System_Boolean_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_Boolean__Dispose, (List_1_T_Enumerator_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143A040, bool, List_1_T_Enumerator_System_Boolean__MoveNext, (List_1_T_Enumerator_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143A0E0, bool, List_1_T_Enumerator_System_Boolean__MoveNextRare, (List_1_T_Enumerator_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143A1C0, void, List_1_T_Enumerator_System_Boolean__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143A120, Object *, List_1_T_Enumerator_System_Boolean__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD20, bool, List_1_T_Enumerator_System_Boolean__get_Current, (List_1_T_Enumerator_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143A200, void, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_BoundedPlane___ctor, (NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_BoundedPlane___Boxed * __this, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane_ array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_BoundedPlane__Dispose, (NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_BoundedPlane___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143A230, bool, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_BoundedPlane__MoveNext, (NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_BoundedPlane___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_BoundedPlane__Reset, (NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_BoundedPlane___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143A390, Object *, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_BoundedPlane__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_BoundedPlane___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143A350, BoundedPlane, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_BoundedPlane__get_Current, (NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_BoundedPlane___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143A450, void, ArraySegment_1_T_Enumerator_Byte___ctor, (ArraySegment_1_T_Enumerator_Byte___Boxed * __this, ArraySegment_1_Byte_ arraySegment, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, ArraySegment_1_T_Enumerator_Byte__Dispose, (ArraySegment_1_T_Enumerator_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143A590, bool, ArraySegment_1_T_Enumerator_Byte__MoveNext, (ArraySegment_1_T_Enumerator_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143A6C0, void, ArraySegment_1_T_Enumerator_Byte__System_Collections_IEnumerator_Reset, (ArraySegment_1_T_Enumerator_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143A600, Object *, ArraySegment_1_T_Enumerator_Byte__System_Collections_IEnumerator_get_Current, (ArraySegment_1_T_Enumerator_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143A5B0, uint8_t, ArraySegment_1_T_Enumerator_Byte__get_Current, (ArraySegment_1_T_Enumerator_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439FC0, void, List_1_T_Enumerator_System_Byte___ctor, (List_1_T_Enumerator_System_Byte___Boxed * __this, List_1_System_Byte_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_Byte__Dispose, (List_1_T_Enumerator_System_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143A040, bool, List_1_T_Enumerator_System_Byte__MoveNext, (List_1_T_Enumerator_System_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143A0E0, bool, List_1_T_Enumerator_System_Byte__MoveNextRare, (List_1_T_Enumerator_System_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143A1C0, void, List_1_T_Enumerator_System_Byte__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143A120, Object *, List_1_T_Enumerator_System_Byte__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD20, uint8_t, List_1_T_Enumerator_System_Byte__get_Current, (List_1_T_Enumerator_System_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143A6D0, void, NativeArray_1_T_Enumerator_System_Byte___ctor, (NativeArray_1_T_Enumerator_System_Byte___Boxed * __this, NativeArray_1_System_Byte_ array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_System_Byte__Dispose, (NativeArray_1_T_Enumerator_System_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143A6F0, bool, NativeArray_1_T_Enumerator_System_Byte__MoveNext, (NativeArray_1_T_Enumerator_System_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_System_Byte__Reset, (NativeArray_1_T_Enumerator_System_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143A7B0, Object *, NativeArray_1_T_Enumerator_System_Byte__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_System_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143A7A0, uint8_t, NativeArray_1_T_Enumerator_System_Byte__get_Current, (NativeArray_1_T_Enumerator_System_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143A830, void, Stack_1_T_Enumerator_System_Byte___ctor, (Stack_1_T_Enumerator_System_Byte___Boxed * __this, Stack_1_System_Byte__1 * stack, MethodInfo * method)); -DO_APP_FUNC(0x01436E20, void, Stack_1_T_Enumerator_System_Byte__Dispose, (Stack_1_T_Enumerator_System_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143A8B0, bool, Stack_1_T_Enumerator_System_Byte__MoveNext, (Stack_1_T_Enumerator_System_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143AB40, void, Stack_1_T_Enumerator_System_Byte__System_Collections_IEnumerator_Reset, (Stack_1_T_Enumerator_System_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143AA90, Object *, Stack_1_T_Enumerator_System_Byte__System_Collections_IEnumerator_get_Current, (Stack_1_T_Enumerator_System_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143AA20, void, Stack_1_T_Enumerator_System_Byte__ThrowEnumerationNotStartedOrEnded, (Stack_1_T_Enumerator_System_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143A9E0, uint8_t, Stack_1_T_Enumerator_System_Byte__get_Current, (Stack_1_T_Enumerator_System_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434DE0, void, List_1_T_Enumerator_System_Threading_CancellationToken___ctor, (List_1_T_Enumerator_System_Threading_CancellationToken___Boxed * __this, List_1_System_Threading_CancellationToken_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_Threading_CancellationToken__Dispose, (List_1_T_Enumerator_System_Threading_CancellationToken___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439BC0, bool, List_1_T_Enumerator_System_Threading_CancellationToken__MoveNext, (List_1_T_Enumerator_System_Threading_CancellationToken___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434F00, bool, List_1_T_Enumerator_System_Threading_CancellationToken__MoveNextRare, (List_1_T_Enumerator_System_Threading_CancellationToken___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434FE0, void, List_1_T_Enumerator_System_Threading_CancellationToken__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_Threading_CancellationToken___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434F40, Object *, List_1_T_Enumerator_System_Threading_CancellationToken__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_Threading_CancellationToken___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, CancellationToken, List_1_T_Enumerator_System_Threading_CancellationToken__get_Current, (List_1_T_Enumerator_System_Threading_CancellationToken___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143ABD0, void, List_1_T_Enumerator_System_Char___ctor, (List_1_T_Enumerator_System_Char___Boxed * __this, List_1_System_Char_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_Char__Dispose, (List_1_T_Enumerator_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143AC50, bool, List_1_T_Enumerator_System_Char__MoveNext, (List_1_T_Enumerator_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143ACF0, bool, List_1_T_Enumerator_System_Char__MoveNextRare, (List_1_T_Enumerator_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143ADD0, void, List_1_T_Enumerator_System_Char__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143AD30, Object *, List_1_T_Enumerator_System_Char__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0098C910, uint16_t, List_1_T_Enumerator_System_Char__get_Current, (List_1_T_Enumerator_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_Dissonance_Networking_ClientInfo___ctor, (List_1_T_Enumerator_Dissonance_Networking_ClientInfo___Boxed * __this, List_1_Dissonance_Networking_ClientInfo_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Dissonance_Networking_ClientInfo__Dispose, (List_1_T_Enumerator_Dissonance_Networking_ClientInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01435020, bool, List_1_T_Enumerator_Dissonance_Networking_ClientInfo__MoveNext, (List_1_T_Enumerator_Dissonance_Networking_ClientInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_Dissonance_Networking_ClientInfo__MoveNextRare, (List_1_T_Enumerator_Dissonance_Networking_ClientInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_Dissonance_Networking_ClientInfo__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Dissonance_Networking_ClientInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_Dissonance_Networking_ClientInfo__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Dissonance_Networking_ClientInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, ClientInfo, List_1_T_Enumerator_Dissonance_Networking_ClientInfo__get_Current, (List_1_T_Enumerator_Dissonance_Networking_ClientInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_Color___ctor, (List_1_T_Enumerator_UnityEngine_Color___Boxed * __this, List_1_UnityEngine_Color_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Color__Dispose, (List_1_T_Enumerator_UnityEngine_Color___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437E50, bool, List_1_T_Enumerator_UnityEngine_Color__MoveNext, (List_1_T_Enumerator_UnityEngine_Color___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_Color__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Color___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_Color__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Color___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_Color__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Color___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, Color, List_1_T_Enumerator_UnityEngine_Color__get_Current, (List_1_T_Enumerator_UnityEngine_Color___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143AE10, void, NativeArray_1_T_Enumerator_UnityEngine_Color___ctor, (NativeArray_1_T_Enumerator_UnityEngine_Color___Boxed * __this, NativeArray_1_UnityEngine_Color_ array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_UnityEngine_Color__Dispose, (NativeArray_1_T_Enumerator_UnityEngine_Color___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143AE30, bool, NativeArray_1_T_Enumerator_UnityEngine_Color__MoveNext, (NativeArray_1_T_Enumerator_UnityEngine_Color___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_UnityEngine_Color__Reset, (NativeArray_1_T_Enumerator_UnityEngine_Color___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143AF00, Object *, NativeArray_1_T_Enumerator_UnityEngine_Color__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_UnityEngine_Color___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143AEF0, Color, NativeArray_1_T_Enumerator_UnityEngine_Color__get_Current, (NativeArray_1_T_Enumerator_UnityEngine_Color___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143AF80, void, List_1_T_Enumerator_UnityEngine_Color32___ctor, (List_1_T_Enumerator_UnityEngine_Color32___Boxed * __this, List_1_UnityEngine_Color32_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Color32__Dispose, (List_1_T_Enumerator_UnityEngine_Color32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B000, bool, List_1_T_Enumerator_UnityEngine_Color32__MoveNext, (List_1_T_Enumerator_UnityEngine_Color32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B0A0, bool, List_1_T_Enumerator_UnityEngine_Color32__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Color32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B180, void, List_1_T_Enumerator_UnityEngine_Color32__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Color32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B0E0, Object *, List_1_T_Enumerator_UnityEngine_Color32__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Color32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, Color32, List_1_T_Enumerator_UnityEngine_Color32__get_Current, (List_1_T_Enumerator_UnityEngine_Color32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B1C0, void, NativeArray_1_T_Enumerator_UnityEngine_Color32___ctor, (NativeArray_1_T_Enumerator_UnityEngine_Color32___Boxed * __this, NativeArray_1_UnityEngine_Color32_ array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_UnityEngine_Color32__Dispose, (NativeArray_1_T_Enumerator_UnityEngine_Color32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B1E0, bool, NativeArray_1_T_Enumerator_UnityEngine_Color32__MoveNext, (NativeArray_1_T_Enumerator_UnityEngine_Color32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_UnityEngine_Color32__Reset, (NativeArray_1_T_Enumerator_UnityEngine_Color32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B2A0, Object *, NativeArray_1_T_Enumerator_UnityEngine_Color32__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_UnityEngine_Color32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B290, Color32, NativeArray_1_T_Enumerator_UnityEngine_Color32__get_Current, (NativeArray_1_T_Enumerator_UnityEngine_Color32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B320, void, List_1_T_Enumerator_UnityEngine_CombineInstance___ctor, (List_1_T_Enumerator_UnityEngine_CombineInstance___Boxed * __this, List_1_UnityEngine_CombineInstance_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_CombineInstance__Dispose, (List_1_T_Enumerator_UnityEngine_CombineInstance___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B3C0, bool, List_1_T_Enumerator_UnityEngine_CombineInstance__MoveNext, (List_1_T_Enumerator_UnityEngine_CombineInstance___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B4D0, bool, List_1_T_Enumerator_UnityEngine_CombineInstance__MoveNextRare, (List_1_T_Enumerator_UnityEngine_CombineInstance___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B660, void, List_1_T_Enumerator_UnityEngine_CombineInstance__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_CombineInstance___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B570, Object *, List_1_T_Enumerator_UnityEngine_CombineInstance__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_CombineInstance___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B530, CombineInstance, List_1_T_Enumerator_UnityEngine_CombineInstance__get_Current, (List_1_T_Enumerator_UnityEngine_CombineInstance___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_UnityEngine_UIElements_ComputedTransitionProperty___ctor, (List_1_T_Enumerator_UnityEngine_UIElements_ComputedTransitionProperty___Boxed * __this, List_1_UnityEngine_UIElements_ComputedTransitionProperty_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIElements_ComputedTransitionProperty__Dispose, (List_1_T_Enumerator_UnityEngine_UIElements_ComputedTransitionProperty___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434620, bool, List_1_T_Enumerator_UnityEngine_UIElements_ComputedTransitionProperty__MoveNext, (List_1_T_Enumerator_UnityEngine_UIElements_ComputedTransitionProperty___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_UnityEngine_UIElements_ComputedTransitionProperty__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIElements_ComputedTransitionProperty___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_UnityEngine_UIElements_ComputedTransitionProperty__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIElements_ComputedTransitionProperty___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_UnityEngine_UIElements_ComputedTransitionProperty__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_ComputedTransitionProperty___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, ComputedTransitionProperty, List_1_T_Enumerator_UnityEngine_UIElements_ComputedTransitionProperty__get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_ComputedTransitionProperty___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B6B0, void, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor___ctor, (NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor___Boxed * __this, NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor_ array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__Dispose, (NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B6D0, bool, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__MoveNext, (NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__Reset, (NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B7C0, Object *, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B7A0, ConfigurationDescriptor, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__get_Current, (NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_Pathfinding_Connection___ctor, (List_1_T_Enumerator_Pathfinding_Connection___Boxed * __this, List_1_Pathfinding_Connection_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Pathfinding_Connection__Dispose, (List_1_T_Enumerator_Pathfinding_Connection___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_Pathfinding_Connection__MoveNext, (List_1_T_Enumerator_Pathfinding_Connection___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_Pathfinding_Connection__MoveNextRare, (List_1_T_Enumerator_Pathfinding_Connection___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_Pathfinding_Connection__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Pathfinding_Connection___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_Pathfinding_Connection__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Pathfinding_Connection___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, Connection, List_1_T_Enumerator_Pathfinding_Connection__get_Current, (List_1_T_Enumerator_Pathfinding_Connection___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438A50, void, List_1_T_Enumerator_Rewired_ControllerPollingInfo___ctor, (List_1_T_Enumerator_Rewired_ControllerPollingInfo___Boxed * __this, List_1_Rewired_ControllerPollingInfo_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Rewired_ControllerPollingInfo__Dispose, (List_1_T_Enumerator_Rewired_ControllerPollingInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B840, bool, List_1_T_Enumerator_Rewired_ControllerPollingInfo__MoveNext, (List_1_T_Enumerator_Rewired_ControllerPollingInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438C10, bool, List_1_T_Enumerator_Rewired_ControllerPollingInfo__MoveNextRare, (List_1_T_Enumerator_Rewired_ControllerPollingInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438D60, void, List_1_T_Enumerator_Rewired_ControllerPollingInfo__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Rewired_ControllerPollingInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438C90, Object *, List_1_T_Enumerator_Rewired_ControllerPollingInfo__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Rewired_ControllerPollingInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438C60, ControllerPollingInfo, List_1_T_Enumerator_Rewired_ControllerPollingInfo__get_Current, (List_1_T_Enumerator_Rewired_ControllerPollingInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_Rewired_ControllerTemplateElementTarget___ctor, (List_1_T_Enumerator_Rewired_ControllerTemplateElementTarget___Boxed * __this, List_1_Rewired_ControllerTemplateElementTarget_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Rewired_ControllerTemplateElementTarget__Dispose, (List_1_T_Enumerator_Rewired_ControllerTemplateElementTarget___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_Rewired_ControllerTemplateElementTarget__MoveNext, (List_1_T_Enumerator_Rewired_ControllerTemplateElementTarget___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_Rewired_ControllerTemplateElementTarget__MoveNextRare, (List_1_T_Enumerator_Rewired_ControllerTemplateElementTarget___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_Rewired_ControllerTemplateElementTarget__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Rewired_ControllerTemplateElementTarget___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_Rewired_ControllerTemplateElementTarget__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Rewired_ControllerTemplateElementTarget___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, ControllerTemplateElementTarget, List_1_T_Enumerator_Rewired_ControllerTemplateElementTarget__get_Current, (List_1_T_Enumerator_Rewired_ControllerTemplateElementTarget___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B970, void, List_1_T_Enumerator_SplineMesh_CurveSample___ctor, (List_1_T_Enumerator_SplineMesh_CurveSample___Boxed * __this, List_1_SplineMesh_CurveSample_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_SplineMesh_CurveSample__Dispose, (List_1_T_Enumerator_SplineMesh_CurveSample___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434950, void, Queue_1_T_Enumerator_System_ValueTuple_2___ctor, (Queue_1_T_Enumerator_System_ValueTuple_2_ * __this, Queue_1_System_ValueTuple_2__1 * q, MethodInfo * method)); +DO_APP_FUNC(0x014349D0, void, Queue_1_T_Enumerator_System_ValueTuple_2__Dispose, (Queue_1_T_Enumerator_System_ValueTuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438150, bool, Queue_1_T_Enumerator_System_ValueTuple_2__MoveNext, (Queue_1_T_Enumerator_System_ValueTuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05758, Queue_1_T_Enumerator_System_ValueTuple_2__MoveNext__MethodInfo); +DO_APP_FUNC(0x014383C0, void, Queue_1_T_Enumerator_System_ValueTuple_2__System_Collections_IEnumerator_Reset, (Queue_1_T_Enumerator_System_ValueTuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D057E8, Queue_1_T_Enumerator_System_ValueTuple_2__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x01438310, Object *, Queue_1_T_Enumerator_System_ValueTuple_2__System_Collections_IEnumerator_get_Current, (Queue_1_T_Enumerator_System_ValueTuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014382A0, void, Queue_1_T_Enumerator_System_ValueTuple_2__ThrowEnumerationNotStartedOrEnded, (Queue_1_T_Enumerator_System_ValueTuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05750, Queue_1_T_Enumerator_System_ValueTuple_2__ThrowEnumerationNotStartedOrEnded__MethodInfo); +DO_APP_FUNC(0x01438250, ValueTuple_2_IntPtr_Object_, Queue_1_T_Enumerator_System_ValueTuple_2__get_Current, (Queue_1_T_Enumerator_System_ValueTuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_System_ValueTuple_2__2__ctor, (List_1_T_Enumerator_System_ValueTuple_2__2 * __this, List_1_System_ValueTuple_2__8 * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_ValueTuple_2__2_Dispose, (List_1_T_Enumerator_System_ValueTuple_2__2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01435020, bool, List_1_T_Enumerator_System_ValueTuple_2__2_MoveNext, (List_1_T_Enumerator_System_ValueTuple_2__2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_System_ValueTuple_2__2_MoveNextRare, (List_1_T_Enumerator_System_ValueTuple_2__2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_System_ValueTuple_2__2_System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_ValueTuple_2__2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_System_ValueTuple_2__2_System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_ValueTuple_2__2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, ValueTuple_2_Object_ValueTuple_2_Object_Int32_, List_1_T_Enumerator_System_ValueTuple_2__2_get_Current, (List_1_T_Enumerator_System_ValueTuple_2__2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438450, void, LinkedList_1_T_Enumerator_System_ValueTuple_2___ctor, (LinkedList_1_T_Enumerator_System_ValueTuple_2_ * __this, LinkedList_1_System_ValueTuple_2__1 * list, MethodInfo * method)); +DO_APP_FUNC(0x01438530, void, LinkedList_1_T_Enumerator_System_ValueTuple_2___ctor_1, (LinkedList_1_T_Enumerator_System_ValueTuple_2_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D057E0, LinkedList_1_T_Enumerator_System_ValueTuple_2___ctor_1__MethodInfo); +DO_APP_FUNC(0x003AE050, void, LinkedList_1_T_Enumerator_System_ValueTuple_2__Dispose, (LinkedList_1_T_Enumerator_System_ValueTuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014386C0, bool, LinkedList_1_T_Enumerator_System_ValueTuple_2__MoveNext, (LinkedList_1_T_Enumerator_System_ValueTuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D057D0, LinkedList_1_T_Enumerator_System_ValueTuple_2__MoveNext__MethodInfo); +DO_APP_FUNC(0x014388D0, void, LinkedList_1_T_Enumerator_System_ValueTuple_2__System_Collections_IEnumerator_Reset, (LinkedList_1_T_Enumerator_System_ValueTuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D057C8, LinkedList_1_T_Enumerator_System_ValueTuple_2__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x01438580, Object *, LinkedList_1_T_Enumerator_System_ValueTuple_2__System_Collections_IEnumerator_get_Current, (LinkedList_1_T_Enumerator_System_ValueTuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D057D8, LinkedList_1_T_Enumerator_System_ValueTuple_2__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x01438A00, void, LinkedList_1_T_Enumerator_System_ValueTuple_2__System_Runtime_Serialization_IDeserializationCallback_OnDeserialization, (LinkedList_1_T_Enumerator_System_ValueTuple_2_ * __this, Object * sender, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D057B0, LinkedList_1_T_Enumerator_System_ValueTuple_2__System_Runtime_Serialization_IDeserializationCallback_OnDeserialization__MethodInfo); +DO_APP_FUNC(0x014389B0, void, LinkedList_1_T_Enumerator_System_ValueTuple_2__System_Runtime_Serialization_ISerializable_GetObjectData, (LinkedList_1_T_Enumerator_System_ValueTuple_2_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D057C0, LinkedList_1_T_Enumerator_System_ValueTuple_2__System_Runtime_Serialization_ISerializable_GetObjectData__MethodInfo); +DO_APP_FUNC(0x0093E890, ValueTuple_2_Object_Object_, LinkedList_1_T_Enumerator_System_ValueTuple_2__get_Current, (LinkedList_1_T_Enumerator_System_ValueTuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_System_ValueTuple_2__3__ctor, (List_1_T_Enumerator_System_ValueTuple_2__3 * __this, List_1_System_ValueTuple_2__9 * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_ValueTuple_2__3_Dispose, (List_1_T_Enumerator_System_ValueTuple_2__3 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_System_ValueTuple_2__3_MoveNext, (List_1_T_Enumerator_System_ValueTuple_2__3 * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_System_ValueTuple_2__3_MoveNextRare, (List_1_T_Enumerator_System_ValueTuple_2__3 * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_System_ValueTuple_2__3_System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_ValueTuple_2__3 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_System_ValueTuple_2__3_System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_ValueTuple_2__3 * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, ValueTuple_2_Object_Object_, List_1_T_Enumerator_System_ValueTuple_2__3_get_Current, (List_1_T_Enumerator_System_ValueTuple_2__3 * __this, MethodInfo * method)); +DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_System_ValueTuple_2__4__ctor, (List_1_T_Enumerator_System_ValueTuple_2__4 * __this, List_1_System_ValueTuple_2__5 * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_ValueTuple_2__4_Dispose, (List_1_T_Enumerator_System_ValueTuple_2__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434620, bool, List_1_T_Enumerator_System_ValueTuple_2__4_MoveNext, (List_1_T_Enumerator_System_ValueTuple_2__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_System_ValueTuple_2__4_MoveNextRare, (List_1_T_Enumerator_System_ValueTuple_2__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_System_ValueTuple_2__4_System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_ValueTuple_2__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_System_ValueTuple_2__4_System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_ValueTuple_2__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, ValueTuple_2_UnityEngine_Vector3Int_Object_, List_1_T_Enumerator_System_ValueTuple_2__4_get_Current, (List_1_T_Enumerator_System_ValueTuple_2__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438A50, void, List_1_T_Enumerator_System_ValueTuple_2__5__ctor, (List_1_T_Enumerator_System_ValueTuple_2__5 * __this, List_1_System_ValueTuple_2__3 * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_ValueTuple_2__5_Dispose, (List_1_T_Enumerator_System_ValueTuple_2__5 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438AE0, bool, List_1_T_Enumerator_System_ValueTuple_2__5_MoveNext, (List_1_T_Enumerator_System_ValueTuple_2__5 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438C10, bool, List_1_T_Enumerator_System_ValueTuple_2__5_MoveNextRare, (List_1_T_Enumerator_System_ValueTuple_2__5 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438D60, void, List_1_T_Enumerator_System_ValueTuple_2__5_System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_ValueTuple_2__5 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438C90, Object *, List_1_T_Enumerator_System_ValueTuple_2__5_System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_ValueTuple_2__5 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438C60, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_, List_1_T_Enumerator_System_ValueTuple_2__5_get_Current, (List_1_T_Enumerator_System_ValueTuple_2__5 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438DB0, void, List_1_T_Enumerator_System_ValueTuple_2__6__ctor, (List_1_T_Enumerator_System_ValueTuple_2__6 * __this, List_1_System_ValueTuple_2__4 * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_ValueTuple_2__6_Dispose, (List_1_T_Enumerator_System_ValueTuple_2__6 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438E40, bool, List_1_T_Enumerator_System_ValueTuple_2__6_MoveNext, (List_1_T_Enumerator_System_ValueTuple_2__6 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438F60, bool, List_1_T_Enumerator_System_ValueTuple_2__6_MoveNextRare, (List_1_T_Enumerator_System_ValueTuple_2__6 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439090, void, List_1_T_Enumerator_System_ValueTuple_2__6_System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_ValueTuple_2__6 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438FD0, Object *, List_1_T_Enumerator_System_ValueTuple_2__6_System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_ValueTuple_2__6 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438FB0, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_, List_1_T_Enumerator_System_ValueTuple_2__6_get_Current, (List_1_T_Enumerator_System_ValueTuple_2__6 * __this, MethodInfo * method)); +DO_APP_FUNC(0x014390D0, void, LinkedList_1_T_Enumerator_System_ValueTuple_3___ctor, (LinkedList_1_T_Enumerator_System_ValueTuple_3_ * __this, LinkedList_1_System_ValueTuple_3__1 * list, MethodInfo * method)); +DO_APP_FUNC(0x014391B0, void, LinkedList_1_T_Enumerator_System_ValueTuple_3___ctor_1, (LinkedList_1_T_Enumerator_System_ValueTuple_3_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D057A0, LinkedList_1_T_Enumerator_System_ValueTuple_3___ctor_1__MethodInfo); +DO_APP_FUNC(0x003AE050, void, LinkedList_1_T_Enumerator_System_ValueTuple_3__Dispose, (LinkedList_1_T_Enumerator_System_ValueTuple_3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439350, bool, LinkedList_1_T_Enumerator_System_ValueTuple_3__MoveNext, (LinkedList_1_T_Enumerator_System_ValueTuple_3_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05730, LinkedList_1_T_Enumerator_System_ValueTuple_3__MoveNext__MethodInfo); +DO_APP_FUNC(0x01439560, void, LinkedList_1_T_Enumerator_System_ValueTuple_3__System_Collections_IEnumerator_Reset, (LinkedList_1_T_Enumerator_System_ValueTuple_3_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05728, LinkedList_1_T_Enumerator_System_ValueTuple_3__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x01439200, Object *, LinkedList_1_T_Enumerator_System_ValueTuple_3__System_Collections_IEnumerator_get_Current, (LinkedList_1_T_Enumerator_System_ValueTuple_3_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05738, LinkedList_1_T_Enumerator_System_ValueTuple_3__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x014396A0, void, LinkedList_1_T_Enumerator_System_ValueTuple_3__System_Runtime_Serialization_IDeserializationCallback_OnDeserialization, (LinkedList_1_T_Enumerator_System_ValueTuple_3_ * __this, Object * sender, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05718, LinkedList_1_T_Enumerator_System_ValueTuple_3__System_Runtime_Serialization_IDeserializationCallback_OnDeserialization__MethodInfo); +DO_APP_FUNC(0x01439650, void, LinkedList_1_T_Enumerator_System_ValueTuple_3__System_Runtime_Serialization_ISerializable_GetObjectData, (LinkedList_1_T_Enumerator_System_ValueTuple_3_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05720, LinkedList_1_T_Enumerator_System_ValueTuple_3__System_Runtime_Serialization_ISerializable_GetObjectData__MethodInfo); +DO_APP_FUNC(0x00F97060, ValueTuple_3_Object_Object_Object_, LinkedList_1_T_Enumerator_System_ValueTuple_3__get_Current, (LinkedList_1_T_Enumerator_System_ValueTuple_3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434DE0, void, List_1_T_Enumerator_UnityEngine_AnimatorClipInfo___ctor, (List_1_T_Enumerator_UnityEngine_AnimatorClipInfo_ * __this, List_1_UnityEngine_AnimatorClipInfo_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_AnimatorClipInfo__Dispose, (List_1_T_Enumerator_UnityEngine_AnimatorClipInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434E60, bool, List_1_T_Enumerator_UnityEngine_AnimatorClipInfo__MoveNext, (List_1_T_Enumerator_UnityEngine_AnimatorClipInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434F00, bool, List_1_T_Enumerator_UnityEngine_AnimatorClipInfo__MoveNextRare, (List_1_T_Enumerator_UnityEngine_AnimatorClipInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434FE0, void, List_1_T_Enumerator_UnityEngine_AnimatorClipInfo__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_AnimatorClipInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434F40, Object *, List_1_T_Enumerator_UnityEngine_AnimatorClipInfo__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_AnimatorClipInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, AnimatorClipInfo, List_1_T_Enumerator_UnityEngine_AnimatorClipInfo__get_Current, (List_1_T_Enumerator_UnityEngine_AnimatorClipInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014396F0, void, HashSet_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___ctor, (HashSet_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * set, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, HashSet_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__Dispose, (HashSet_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE808, HashSet_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__Dispose__MethodInfo); +DO_APP_FUNC(0x01439770, bool, HashSet_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__MoveNext, (HashSet_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D430, HashSet_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__MoveNext__MethodInfo); +DO_APP_FUNC(0x01439990, void, HashSet_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__System_Collections_IEnumerator_Reset, (HashSet_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D420, HashSet_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x01439890, Object *, HashSet_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__System_Collections_IEnumerator_get_Current, (HashSet_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D428, HashSet_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x00A2C560, AsyncOperationHandle, HashSet_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__get_Current, (HashSet_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE788, HashSet_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__get_Current__MethodInfo); +DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___ctor, (List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__Dispose, (List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD908, List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__Dispose__MethodInfo); +DO_APP_FUNC(0x01435020, bool, List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__MoveNext, (List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD910, List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__MoveNext__MethodInfo); +DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__MoveNextRare, (List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, AsyncOperationHandle, List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__get_Current, (List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD988, List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__get_Current__MethodInfo); +DO_APP_FUNC(0x01439A20, void, NativeArray_1_T_Enumerator_UnityEngine_Rendering_BatchVisibility___ctor, (NativeArray_1_T_Enumerator_UnityEngine_Rendering_BatchVisibility_ * __this, NativeArray_1_UnityEngine_Rendering_BatchVisibility_ * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_UnityEngine_Rendering_BatchVisibility__Dispose, (NativeArray_1_T_Enumerator_UnityEngine_Rendering_BatchVisibility_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439A40, bool, NativeArray_1_T_Enumerator_UnityEngine_Rendering_BatchVisibility__MoveNext, (NativeArray_1_T_Enumerator_UnityEngine_Rendering_BatchVisibility_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_UnityEngine_Rendering_BatchVisibility__Reset, (NativeArray_1_T_Enumerator_UnityEngine_Rendering_BatchVisibility_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439B40, Object *, NativeArray_1_T_Enumerator_UnityEngine_Rendering_BatchVisibility__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_UnityEngine_Rendering_BatchVisibility_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439B20, BatchVisibility, NativeArray_1_T_Enumerator_UnityEngine_Rendering_BatchVisibility__get_Current, (NativeArray_1_T_Enumerator_UnityEngine_Rendering_BatchVisibility_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434DE0, void, List_1_T_Enumerator_Dissonance_Integrations_PhotonBolt_BoltPeer___ctor, (List_1_T_Enumerator_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, List_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Dissonance_Integrations_PhotonBolt_BoltPeer__Dispose, (List_1_T_Enumerator_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439BC0, bool, List_1_T_Enumerator_Dissonance_Integrations_PhotonBolt_BoltPeer__MoveNext, (List_1_T_Enumerator_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434F00, bool, List_1_T_Enumerator_Dissonance_Integrations_PhotonBolt_BoltPeer__MoveNextRare, (List_1_T_Enumerator_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434FE0, void, List_1_T_Enumerator_Dissonance_Integrations_PhotonBolt_BoltPeer__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434F40, Object *, List_1_T_Enumerator_Dissonance_Integrations_PhotonBolt_BoltPeer__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, BoltPeer, List_1_T_Enumerator_Dissonance_Integrations_PhotonBolt_BoltPeer__get_Current, (List_1_T_Enumerator_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_Photon_Bolt_LagCompensation_BoltPhysicsHit___ctor, (List_1_T_Enumerator_Photon_Bolt_LagCompensation_BoltPhysicsHit_ * __this, List_1_Photon_Bolt_LagCompensation_BoltPhysicsHit_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Photon_Bolt_LagCompensation_BoltPhysicsHit__Dispose, (List_1_T_Enumerator_Photon_Bolt_LagCompensation_BoltPhysicsHit_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439CB0, bool, List_1_T_Enumerator_Photon_Bolt_LagCompensation_BoltPhysicsHit__MoveNext, (List_1_T_Enumerator_Photon_Bolt_LagCompensation_BoltPhysicsHit_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_Photon_Bolt_LagCompensation_BoltPhysicsHit__MoveNextRare, (List_1_T_Enumerator_Photon_Bolt_LagCompensation_BoltPhysicsHit_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_Photon_Bolt_LagCompensation_BoltPhysicsHit__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Photon_Bolt_LagCompensation_BoltPhysicsHit_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_Photon_Bolt_LagCompensation_BoltPhysicsHit__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Photon_Bolt_LagCompensation_BoltPhysicsHit_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, BoltPhysicsHit, List_1_T_Enumerator_Photon_Bolt_LagCompensation_BoltPhysicsHit__get_Current, (List_1_T_Enumerator_Photon_Bolt_LagCompensation_BoltPhysicsHit_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341F0, void, List_1_T_Enumerator_UnityEngine_BoneWeight___ctor, (List_1_T_Enumerator_UnityEngine_BoneWeight_ * __this, List_1_UnityEngine_BoneWeight_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_BoneWeight__Dispose, (List_1_T_Enumerator_UnityEngine_BoneWeight_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439DB0, bool, List_1_T_Enumerator_UnityEngine_BoneWeight__MoveNext, (List_1_T_Enumerator_UnityEngine_BoneWeight_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434370, bool, List_1_T_Enumerator_UnityEngine_BoneWeight__MoveNextRare, (List_1_T_Enumerator_UnityEngine_BoneWeight_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434460, void, List_1_T_Enumerator_UnityEngine_BoneWeight__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_BoneWeight_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014343B0, Object *, List_1_T_Enumerator_UnityEngine_BoneWeight__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_BoneWeight_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01204560, BoneWeight, List_1_T_Enumerator_UnityEngine_BoneWeight__get_Current, (List_1_T_Enumerator_UnityEngine_BoneWeight_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439E60, void, NativeArray_1_T_Enumerator_UnityEngine_BoneWeight1___ctor, (NativeArray_1_T_Enumerator_UnityEngine_BoneWeight1_ * __this, NativeArray_1_UnityEngine_BoneWeight1_ * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_UnityEngine_BoneWeight1__Dispose, (NativeArray_1_T_Enumerator_UnityEngine_BoneWeight1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439E80, bool, NativeArray_1_T_Enumerator_UnityEngine_BoneWeight1__MoveNext, (NativeArray_1_T_Enumerator_UnityEngine_BoneWeight1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_UnityEngine_BoneWeight1__Reset, (NativeArray_1_T_Enumerator_UnityEngine_BoneWeight1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439F40, Object *, NativeArray_1_T_Enumerator_UnityEngine_BoneWeight1__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_UnityEngine_BoneWeight1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439F30, BoneWeight1, NativeArray_1_T_Enumerator_UnityEngine_BoneWeight1__get_Current, (NativeArray_1_T_Enumerator_UnityEngine_BoneWeight1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439FC0, void, List_1_T_Enumerator_System_Boolean___ctor, (List_1_T_Enumerator_System_Boolean_ * __this, List_1_System_Boolean_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_Boolean__Dispose, (List_1_T_Enumerator_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143A040, bool, List_1_T_Enumerator_System_Boolean__MoveNext, (List_1_T_Enumerator_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143A0E0, bool, List_1_T_Enumerator_System_Boolean__MoveNextRare, (List_1_T_Enumerator_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143A1C0, void, List_1_T_Enumerator_System_Boolean__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143A120, Object *, List_1_T_Enumerator_System_Boolean__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD20, bool, List_1_T_Enumerator_System_Boolean__get_Current, (List_1_T_Enumerator_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143A200, void, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_BoundedPlane___ctor, (NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_BoundedPlane_ * __this, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane_ * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_BoundedPlane__Dispose, (NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_BoundedPlane_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143A230, bool, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_BoundedPlane__MoveNext, (NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_BoundedPlane_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_BoundedPlane__Reset, (NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_BoundedPlane_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143A390, Object *, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_BoundedPlane__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_BoundedPlane_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143A350, BoundedPlane, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_BoundedPlane__get_Current, (NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_BoundedPlane_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143A450, void, ArraySegment_1_T_Enumerator_Byte___ctor, (ArraySegment_1_T_Enumerator_Byte_ * __this, ArraySegment_1_Byte_ arraySegment, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, ArraySegment_1_T_Enumerator_Byte__Dispose, (ArraySegment_1_T_Enumerator_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143A590, bool, ArraySegment_1_T_Enumerator_Byte__MoveNext, (ArraySegment_1_T_Enumerator_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143A6C0, void, ArraySegment_1_T_Enumerator_Byte__System_Collections_IEnumerator_Reset, (ArraySegment_1_T_Enumerator_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143A600, Object *, ArraySegment_1_T_Enumerator_Byte__System_Collections_IEnumerator_get_Current, (ArraySegment_1_T_Enumerator_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143A5B0, uint8_t, ArraySegment_1_T_Enumerator_Byte__get_Current, (ArraySegment_1_T_Enumerator_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439FC0, void, List_1_T_Enumerator_System_Byte___ctor, (List_1_T_Enumerator_System_Byte_ * __this, List_1_System_Byte_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_Byte__Dispose, (List_1_T_Enumerator_System_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143A040, bool, List_1_T_Enumerator_System_Byte__MoveNext, (List_1_T_Enumerator_System_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143A0E0, bool, List_1_T_Enumerator_System_Byte__MoveNextRare, (List_1_T_Enumerator_System_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143A1C0, void, List_1_T_Enumerator_System_Byte__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143A120, Object *, List_1_T_Enumerator_System_Byte__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD20, uint8_t, List_1_T_Enumerator_System_Byte__get_Current, (List_1_T_Enumerator_System_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143A6D0, void, NativeArray_1_T_Enumerator_System_Byte___ctor, (NativeArray_1_T_Enumerator_System_Byte_ * __this, NativeArray_1_System_Byte_ * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_System_Byte__Dispose, (NativeArray_1_T_Enumerator_System_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143A6F0, bool, NativeArray_1_T_Enumerator_System_Byte__MoveNext, (NativeArray_1_T_Enumerator_System_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_System_Byte__Reset, (NativeArray_1_T_Enumerator_System_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143A7B0, Object *, NativeArray_1_T_Enumerator_System_Byte__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_System_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143A7A0, uint8_t, NativeArray_1_T_Enumerator_System_Byte__get_Current, (NativeArray_1_T_Enumerator_System_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143A830, void, Stack_1_T_Enumerator_System_Byte___ctor, (Stack_1_T_Enumerator_System_Byte_ * __this, Stack_1_System_Byte__1 * stack, MethodInfo * method)); +DO_APP_FUNC(0x01436E20, void, Stack_1_T_Enumerator_System_Byte__Dispose, (Stack_1_T_Enumerator_System_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143A8B0, bool, Stack_1_T_Enumerator_System_Byte__MoveNext, (Stack_1_T_Enumerator_System_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D408, Stack_1_T_Enumerator_System_Byte__MoveNext__MethodInfo); +DO_APP_FUNC(0x0143AB40, void, Stack_1_T_Enumerator_System_Byte__System_Collections_IEnumerator_Reset, (Stack_1_T_Enumerator_System_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D3F8, Stack_1_T_Enumerator_System_Byte__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x0143AA90, Object *, Stack_1_T_Enumerator_System_Byte__System_Collections_IEnumerator_get_Current, (Stack_1_T_Enumerator_System_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143AA20, void, Stack_1_T_Enumerator_System_Byte__ThrowEnumerationNotStartedOrEnded, (Stack_1_T_Enumerator_System_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D400, Stack_1_T_Enumerator_System_Byte__ThrowEnumerationNotStartedOrEnded__MethodInfo); +DO_APP_FUNC(0x0143A9E0, uint8_t, Stack_1_T_Enumerator_System_Byte__get_Current, (Stack_1_T_Enumerator_System_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434DE0, void, List_1_T_Enumerator_System_Threading_CancellationToken___ctor, (List_1_T_Enumerator_System_Threading_CancellationToken_ * __this, List_1_System_Threading_CancellationToken_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_Threading_CancellationToken__Dispose, (List_1_T_Enumerator_System_Threading_CancellationToken_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439BC0, bool, List_1_T_Enumerator_System_Threading_CancellationToken__MoveNext, (List_1_T_Enumerator_System_Threading_CancellationToken_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434F00, bool, List_1_T_Enumerator_System_Threading_CancellationToken__MoveNextRare, (List_1_T_Enumerator_System_Threading_CancellationToken_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434FE0, void, List_1_T_Enumerator_System_Threading_CancellationToken__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_Threading_CancellationToken_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434F40, Object *, List_1_T_Enumerator_System_Threading_CancellationToken__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_Threading_CancellationToken_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, CancellationToken, List_1_T_Enumerator_System_Threading_CancellationToken__get_Current, (List_1_T_Enumerator_System_Threading_CancellationToken_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143ABD0, void, List_1_T_Enumerator_System_Char___ctor, (List_1_T_Enumerator_System_Char_ * __this, List_1_System_Char_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_Char__Dispose, (List_1_T_Enumerator_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143AC50, bool, List_1_T_Enumerator_System_Char__MoveNext, (List_1_T_Enumerator_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143ACF0, bool, List_1_T_Enumerator_System_Char__MoveNextRare, (List_1_T_Enumerator_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143ADD0, void, List_1_T_Enumerator_System_Char__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143AD30, Object *, List_1_T_Enumerator_System_Char__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0098C910, uint16_t, List_1_T_Enumerator_System_Char__get_Current, (List_1_T_Enumerator_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_Dissonance_Networking_ClientInfo___ctor, (List_1_T_Enumerator_Dissonance_Networking_ClientInfo_ * __this, List_1_Dissonance_Networking_ClientInfo_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Dissonance_Networking_ClientInfo__Dispose, (List_1_T_Enumerator_Dissonance_Networking_ClientInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF15F0, List_1_T_Enumerator_Dissonance_Networking_ClientInfo__Dispose__MethodInfo); +DO_APP_FUNC(0x01435020, bool, List_1_T_Enumerator_Dissonance_Networking_ClientInfo__MoveNext, (List_1_T_Enumerator_Dissonance_Networking_ClientInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF15C8, List_1_T_Enumerator_Dissonance_Networking_ClientInfo__MoveNext__MethodInfo); +DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_Dissonance_Networking_ClientInfo__MoveNextRare, (List_1_T_Enumerator_Dissonance_Networking_ClientInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_Dissonance_Networking_ClientInfo__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Dissonance_Networking_ClientInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_Dissonance_Networking_ClientInfo__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Dissonance_Networking_ClientInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, ClientInfo, List_1_T_Enumerator_Dissonance_Networking_ClientInfo__get_Current, (List_1_T_Enumerator_Dissonance_Networking_ClientInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF15B0, List_1_T_Enumerator_Dissonance_Networking_ClientInfo__get_Current__MethodInfo); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_Color___ctor, (List_1_T_Enumerator_UnityEngine_Color_ * __this, List_1_UnityEngine_Color_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Color__Dispose, (List_1_T_Enumerator_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB2C0, List_1_T_Enumerator_UnityEngine_Color__Dispose__MethodInfo); +DO_APP_FUNC(0x01437E50, bool, List_1_T_Enumerator_UnityEngine_Color__MoveNext, (List_1_T_Enumerator_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB2B0, List_1_T_Enumerator_UnityEngine_Color__MoveNext__MethodInfo); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_Color__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_Color__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_Color__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, Color, List_1_T_Enumerator_UnityEngine_Color__get_Current, (List_1_T_Enumerator_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB298, List_1_T_Enumerator_UnityEngine_Color__get_Current__MethodInfo); +DO_APP_FUNC(0x0143AE10, void, NativeArray_1_T_Enumerator_UnityEngine_Color___ctor, (NativeArray_1_T_Enumerator_UnityEngine_Color_ * __this, NativeArray_1_UnityEngine_Color_ * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_UnityEngine_Color__Dispose, (NativeArray_1_T_Enumerator_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143AE30, bool, NativeArray_1_T_Enumerator_UnityEngine_Color__MoveNext, (NativeArray_1_T_Enumerator_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_UnityEngine_Color__Reset, (NativeArray_1_T_Enumerator_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143AF00, Object *, NativeArray_1_T_Enumerator_UnityEngine_Color__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143AEF0, Color, NativeArray_1_T_Enumerator_UnityEngine_Color__get_Current, (NativeArray_1_T_Enumerator_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143AF80, void, List_1_T_Enumerator_UnityEngine_Color32___ctor, (List_1_T_Enumerator_UnityEngine_Color32_ * __this, List_1_UnityEngine_Color32_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Color32__Dispose, (List_1_T_Enumerator_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143B000, bool, List_1_T_Enumerator_UnityEngine_Color32__MoveNext, (List_1_T_Enumerator_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143B0A0, bool, List_1_T_Enumerator_UnityEngine_Color32__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143B180, void, List_1_T_Enumerator_UnityEngine_Color32__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143B0E0, Object *, List_1_T_Enumerator_UnityEngine_Color32__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, Color32, List_1_T_Enumerator_UnityEngine_Color32__get_Current, (List_1_T_Enumerator_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143B1C0, void, NativeArray_1_T_Enumerator_UnityEngine_Color32___ctor, (NativeArray_1_T_Enumerator_UnityEngine_Color32_ * __this, NativeArray_1_UnityEngine_Color32_ * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_UnityEngine_Color32__Dispose, (NativeArray_1_T_Enumerator_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143B1E0, bool, NativeArray_1_T_Enumerator_UnityEngine_Color32__MoveNext, (NativeArray_1_T_Enumerator_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_UnityEngine_Color32__Reset, (NativeArray_1_T_Enumerator_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143B2A0, Object *, NativeArray_1_T_Enumerator_UnityEngine_Color32__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143B290, Color32, NativeArray_1_T_Enumerator_UnityEngine_Color32__get_Current, (NativeArray_1_T_Enumerator_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143B320, void, List_1_T_Enumerator_UnityEngine_CombineInstance___ctor, (List_1_T_Enumerator_UnityEngine_CombineInstance_ * __this, List_1_UnityEngine_CombineInstance_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_CombineInstance__Dispose, (List_1_T_Enumerator_UnityEngine_CombineInstance_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143B3C0, bool, List_1_T_Enumerator_UnityEngine_CombineInstance__MoveNext, (List_1_T_Enumerator_UnityEngine_CombineInstance_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143B4D0, bool, List_1_T_Enumerator_UnityEngine_CombineInstance__MoveNextRare, (List_1_T_Enumerator_UnityEngine_CombineInstance_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143B660, void, List_1_T_Enumerator_UnityEngine_CombineInstance__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_CombineInstance_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143B570, Object *, List_1_T_Enumerator_UnityEngine_CombineInstance__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_CombineInstance_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143B530, CombineInstance, List_1_T_Enumerator_UnityEngine_CombineInstance__get_Current, (List_1_T_Enumerator_UnityEngine_CombineInstance_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_UnityEngine_UIElements_ComputedTransitionProperty___ctor, (List_1_T_Enumerator_UnityEngine_UIElements_ComputedTransitionProperty_ * __this, List_1_UnityEngine_UIElements_ComputedTransitionProperty_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIElements_ComputedTransitionProperty__Dispose, (List_1_T_Enumerator_UnityEngine_UIElements_ComputedTransitionProperty_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434620, bool, List_1_T_Enumerator_UnityEngine_UIElements_ComputedTransitionProperty__MoveNext, (List_1_T_Enumerator_UnityEngine_UIElements_ComputedTransitionProperty_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_UnityEngine_UIElements_ComputedTransitionProperty__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIElements_ComputedTransitionProperty_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_UnityEngine_UIElements_ComputedTransitionProperty__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIElements_ComputedTransitionProperty_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_UnityEngine_UIElements_ComputedTransitionProperty__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_ComputedTransitionProperty_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, ComputedTransitionProperty, List_1_T_Enumerator_UnityEngine_UIElements_ComputedTransitionProperty__get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_ComputedTransitionProperty_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143B6B0, void, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor___ctor, (NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor_ * __this, NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor_ * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__Dispose, (NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143B6D0, bool, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__MoveNext, (NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__Reset, (NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143B7C0, Object *, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143B7A0, ConfigurationDescriptor, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__get_Current, (NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_Pathfinding_Connection___ctor, (List_1_T_Enumerator_Pathfinding_Connection_ * __this, List_1_Pathfinding_Connection_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Pathfinding_Connection__Dispose, (List_1_T_Enumerator_Pathfinding_Connection_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7BD0, List_1_T_Enumerator_Pathfinding_Connection__Dispose__MethodInfo); +DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_Pathfinding_Connection__MoveNext, (List_1_T_Enumerator_Pathfinding_Connection_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7BB0, List_1_T_Enumerator_Pathfinding_Connection__MoveNext__MethodInfo); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_Pathfinding_Connection__MoveNextRare, (List_1_T_Enumerator_Pathfinding_Connection_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_Pathfinding_Connection__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Pathfinding_Connection_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_Pathfinding_Connection__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Pathfinding_Connection_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, Connection, List_1_T_Enumerator_Pathfinding_Connection__get_Current, (List_1_T_Enumerator_Pathfinding_Connection_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7B70, List_1_T_Enumerator_Pathfinding_Connection__get_Current__MethodInfo); +DO_APP_FUNC(0x01438A50, void, List_1_T_Enumerator_Rewired_ControllerPollingInfo___ctor, (List_1_T_Enumerator_Rewired_ControllerPollingInfo_ * __this, List_1_Rewired_ControllerPollingInfo_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Rewired_ControllerPollingInfo__Dispose, (List_1_T_Enumerator_Rewired_ControllerPollingInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143B840, bool, List_1_T_Enumerator_Rewired_ControllerPollingInfo__MoveNext, (List_1_T_Enumerator_Rewired_ControllerPollingInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438C10, bool, List_1_T_Enumerator_Rewired_ControllerPollingInfo__MoveNextRare, (List_1_T_Enumerator_Rewired_ControllerPollingInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438D60, void, List_1_T_Enumerator_Rewired_ControllerPollingInfo__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Rewired_ControllerPollingInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438C90, Object *, List_1_T_Enumerator_Rewired_ControllerPollingInfo__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Rewired_ControllerPollingInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438C60, ControllerPollingInfo, List_1_T_Enumerator_Rewired_ControllerPollingInfo__get_Current, (List_1_T_Enumerator_Rewired_ControllerPollingInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_Rewired_ControllerTemplateElementTarget___ctor, (List_1_T_Enumerator_Rewired_ControllerTemplateElementTarget_ * __this, List_1_Rewired_ControllerTemplateElementTarget_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Rewired_ControllerTemplateElementTarget__Dispose, (List_1_T_Enumerator_Rewired_ControllerTemplateElementTarget_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_Rewired_ControllerTemplateElementTarget__MoveNext, (List_1_T_Enumerator_Rewired_ControllerTemplateElementTarget_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_Rewired_ControllerTemplateElementTarget__MoveNextRare, (List_1_T_Enumerator_Rewired_ControllerTemplateElementTarget_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_Rewired_ControllerTemplateElementTarget__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Rewired_ControllerTemplateElementTarget_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_Rewired_ControllerTemplateElementTarget__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Rewired_ControllerTemplateElementTarget_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, ControllerTemplateElementTarget, List_1_T_Enumerator_Rewired_ControllerTemplateElementTarget__get_Current, (List_1_T_Enumerator_Rewired_ControllerTemplateElementTarget_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143B970, void, List_1_T_Enumerator_SplineMesh_CurveSample___ctor, (List_1_T_Enumerator_SplineMesh_CurveSample_ * __this, List_1_SplineMesh_CurveSample_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_SplineMesh_CurveSample__Dispose, (List_1_T_Enumerator_SplineMesh_CurveSample_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C92C20, List_1_T_Enumerator_SplineMesh_CurveSample__Dispose__MethodInfo); -DO_APP_FUNC(0x0143BA00, bool, List_1_T_Enumerator_SplineMesh_CurveSample__MoveNext, (List_1_T_Enumerator_SplineMesh_CurveSample___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143BA00, bool, List_1_T_Enumerator_SplineMesh_CurveSample__MoveNext, (List_1_T_Enumerator_SplineMesh_CurveSample_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C92BF8, List_1_T_Enumerator_SplineMesh_CurveSample__MoveNext__MethodInfo); -DO_APP_FUNC(0x0143BAE0, bool, List_1_T_Enumerator_SplineMesh_CurveSample__MoveNextRare, (List_1_T_Enumerator_SplineMesh_CurveSample___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143BC30, void, List_1_T_Enumerator_SplineMesh_CurveSample__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_SplineMesh_CurveSample___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143BB60, Object *, List_1_T_Enumerator_SplineMesh_CurveSample__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_SplineMesh_CurveSample___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143BB30, CurveSample, List_1_T_Enumerator_SplineMesh_CurveSample__get_Current, (List_1_T_Enumerator_SplineMesh_CurveSample___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143BAE0, bool, List_1_T_Enumerator_SplineMesh_CurveSample__MoveNextRare, (List_1_T_Enumerator_SplineMesh_CurveSample_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143BC30, void, List_1_T_Enumerator_SplineMesh_CurveSample__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_SplineMesh_CurveSample_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143BB60, Object *, List_1_T_Enumerator_SplineMesh_CurveSample__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_SplineMesh_CurveSample_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143BB30, CurveSample, List_1_T_Enumerator_SplineMesh_CurveSample__get_Current, (List_1_T_Enumerator_SplineMesh_CurveSample_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C92C08, List_1_T_Enumerator_SplineMesh_CurveSample__get_Current__MethodInfo); -DO_APP_FUNC(0x01434DE0, void, List_1_T_Enumerator_System_DateTime___ctor, (List_1_T_Enumerator_System_DateTime___Boxed * __this, List_1_System_DateTime_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_DateTime__Dispose, (List_1_T_Enumerator_System_DateTime___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434E60, bool, List_1_T_Enumerator_System_DateTime__MoveNext, (List_1_T_Enumerator_System_DateTime___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434F00, bool, List_1_T_Enumerator_System_DateTime__MoveNextRare, (List_1_T_Enumerator_System_DateTime___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434FE0, void, List_1_T_Enumerator_System_DateTime__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_DateTime___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434F40, Object *, List_1_T_Enumerator_System_DateTime__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_DateTime___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, DateTime, List_1_T_Enumerator_System_DateTime__get_Current, (List_1_T_Enumerator_System_DateTime___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_System_DateTimeOffset___ctor, (List_1_T_Enumerator_System_DateTimeOffset___Boxed * __this, List_1_System_DateTimeOffset_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_DateTimeOffset__Dispose, (List_1_T_Enumerator_System_DateTimeOffset___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437E50, bool, List_1_T_Enumerator_System_DateTimeOffset__MoveNext, (List_1_T_Enumerator_System_DateTimeOffset___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_System_DateTimeOffset__MoveNextRare, (List_1_T_Enumerator_System_DateTimeOffset___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_System_DateTimeOffset__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_DateTimeOffset___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_System_DateTimeOffset__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_DateTimeOffset___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, DateTimeOffset, List_1_T_Enumerator_System_DateTimeOffset__get_Current, (List_1_T_Enumerator_System_DateTimeOffset___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_System_Decimal___ctor, (List_1_T_Enumerator_System_Decimal___Boxed * __this, List_1_System_Decimal_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_Decimal__Dispose, (List_1_T_Enumerator_System_Decimal___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437E50, bool, List_1_T_Enumerator_System_Decimal__MoveNext, (List_1_T_Enumerator_System_Decimal___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_System_Decimal__MoveNextRare, (List_1_T_Enumerator_System_Decimal___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_System_Decimal__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_Decimal___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_System_Decimal__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_Decimal___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, Decimal, List_1_T_Enumerator_System_Decimal__get_Current, (List_1_T_Enumerator_System_Decimal___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143BC80, void, List_1_T_Enumerator_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___ctor, (List_1_T_Enumerator_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___Boxed * __this, List_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__Dispose, (List_1_T_Enumerator_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143BD10, bool, List_1_T_Enumerator_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__MoveNext, (List_1_T_Enumerator_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143BE30, bool, List_1_T_Enumerator_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__MoveNextRare, (List_1_T_Enumerator_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143BF60, void, List_1_T_Enumerator_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143BEA0, Object *, List_1_T_Enumerator_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143BE80, DiagnosticEvent, List_1_T_Enumerator_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__get_Current, (List_1_T_Enumerator_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434DE0, void, List_1_T_Enumerator_System_Double___ctor, (List_1_T_Enumerator_System_Double___Boxed * __this, List_1_System_Double_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_Double__Dispose, (List_1_T_Enumerator_System_Double___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434E60, bool, List_1_T_Enumerator_System_Double__MoveNext, (List_1_T_Enumerator_System_Double___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434F00, bool, List_1_T_Enumerator_System_Double__MoveNextRare, (List_1_T_Enumerator_System_Double___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434FE0, void, List_1_T_Enumerator_System_Double__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_Double___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143BFA0, Object *, List_1_T_Enumerator_System_Double__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_Double___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C107B0, double, List_1_T_Enumerator_System_Double__get_Current, (List_1_T_Enumerator_System_Double___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143AE10, void, NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_DrawBufferRange___ctor, (NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_DrawBufferRange___Boxed * __this, NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange_ array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_DrawBufferRange__Dispose, (NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_DrawBufferRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143AE30, bool, NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_DrawBufferRange__MoveNext, (NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_DrawBufferRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_DrawBufferRange__Reset, (NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_DrawBufferRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143AF00, Object *, NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_DrawBufferRange__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_DrawBufferRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143AEF0, DrawBufferRange, NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_DrawBufferRange__get_Current, (NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_DrawBufferRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143C040, void, NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_DrawBufferRange___ctor, (NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_DrawBufferRange___Boxed * __this, NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange_ array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_DrawBufferRange__Dispose, (NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_DrawBufferRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143C050, bool, NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_DrawBufferRange__MoveNext, (NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_DrawBufferRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439B10, void, NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_DrawBufferRange__Reset, (NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_DrawBufferRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143C100, Object *, NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_DrawBufferRange__System_Collections_IEnumerator_get_Current, (NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_DrawBufferRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143C090, DrawBufferRange, NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_DrawBufferRange__get_Current, (NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_DrawBufferRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143AF80, void, List_1_T_Enumerator_UnityEngine_UIElements_EasingFunction___ctor, (List_1_T_Enumerator_UnityEngine_UIElements_EasingFunction___Boxed * __this, List_1_UnityEngine_UIElements_EasingFunction_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIElements_EasingFunction__Dispose, (List_1_T_Enumerator_UnityEngine_UIElements_EasingFunction___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B000, bool, List_1_T_Enumerator_UnityEngine_UIElements_EasingFunction__MoveNext, (List_1_T_Enumerator_UnityEngine_UIElements_EasingFunction___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B0A0, bool, List_1_T_Enumerator_UnityEngine_UIElements_EasingFunction__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIElements_EasingFunction___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B180, void, List_1_T_Enumerator_UnityEngine_UIElements_EasingFunction__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIElements_EasingFunction___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B0E0, Object *, List_1_T_Enumerator_UnityEngine_UIElements_EasingFunction__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_EasingFunction___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, EasingFunction, List_1_T_Enumerator_UnityEngine_UIElements_EasingFunction__get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_EasingFunction___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143C1C0, void, List_1_T_Enumerator_Rewired_ElementAssignmentConflictInfo___ctor, (List_1_T_Enumerator_Rewired_ElementAssignmentConflictInfo___Boxed * __this, List_1_Rewired_ElementAssignmentConflictInfo_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Rewired_ElementAssignmentConflictInfo__Dispose, (List_1_T_Enumerator_Rewired_ElementAssignmentConflictInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143C250, bool, List_1_T_Enumerator_Rewired_ElementAssignmentConflictInfo__MoveNext, (List_1_T_Enumerator_Rewired_ElementAssignmentConflictInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143C320, bool, List_1_T_Enumerator_Rewired_ElementAssignmentConflictInfo__MoveNextRare, (List_1_T_Enumerator_Rewired_ElementAssignmentConflictInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143C460, void, List_1_T_Enumerator_Rewired_ElementAssignmentConflictInfo__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Rewired_ElementAssignmentConflictInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143C3A0, Object *, List_1_T_Enumerator_Rewired_ElementAssignmentConflictInfo__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Rewired_ElementAssignmentConflictInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143C370, ElementAssignmentConflictInfo, List_1_T_Enumerator_Rewired_ElementAssignmentConflictInfo__get_Current, (List_1_T_Enumerator_Rewired_ElementAssignmentConflictInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_Discord_Entitlement___ctor, (List_1_T_Enumerator_Discord_Entitlement___Boxed * __this, List_1_Discord_Entitlement_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Discord_Entitlement__Dispose, (List_1_T_Enumerator_Discord_Entitlement___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143C4B0, bool, List_1_T_Enumerator_Discord_Entitlement__MoveNext, (List_1_T_Enumerator_Discord_Entitlement___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_Discord_Entitlement__MoveNextRare, (List_1_T_Enumerator_Discord_Entitlement___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_Discord_Entitlement__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Discord_Entitlement___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_Discord_Entitlement__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Discord_Entitlement___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, Entitlement, List_1_T_Enumerator_Discord_Entitlement__get_Current, (List_1_T_Enumerator_Discord_Entitlement___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_Photon_Bolt_EventReliable___ctor, (List_1_T_Enumerator_Photon_Bolt_EventReliable___Boxed * __this, List_1_Photon_Bolt_EventReliable_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Photon_Bolt_EventReliable__Dispose, (List_1_T_Enumerator_Photon_Bolt_EventReliable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_Photon_Bolt_EventReliable__MoveNext, (List_1_T_Enumerator_Photon_Bolt_EventReliable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_Photon_Bolt_EventReliable__MoveNextRare, (List_1_T_Enumerator_Photon_Bolt_EventReliable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_Photon_Bolt_EventReliable__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Photon_Bolt_EventReliable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_Photon_Bolt_EventReliable__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Photon_Bolt_EventReliable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, EventReliable, List_1_T_Enumerator_Photon_Bolt_EventReliable__get_Current, (List_1_T_Enumerator_Photon_Bolt_EventReliable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_Photon_Bolt_EventUnreliable___ctor, (List_1_T_Enumerator_Photon_Bolt_EventUnreliable___Boxed * __this, List_1_Photon_Bolt_EventUnreliable_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Photon_Bolt_EventUnreliable__Dispose, (List_1_T_Enumerator_Photon_Bolt_EventUnreliable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439CB0, bool, List_1_T_Enumerator_Photon_Bolt_EventUnreliable__MoveNext, (List_1_T_Enumerator_Photon_Bolt_EventUnreliable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_Photon_Bolt_EventUnreliable__MoveNextRare, (List_1_T_Enumerator_Photon_Bolt_EventUnreliable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_Photon_Bolt_EventUnreliable__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Photon_Bolt_EventUnreliable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_Photon_Bolt_EventUnreliable__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Photon_Bolt_EventUnreliable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, EventUnreliable, List_1_T_Enumerator_Photon_Bolt_EventUnreliable__get_Current, (List_1_T_Enumerator_Photon_Bolt_EventUnreliable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_Discord_FileStat___ctor, (List_1_T_Enumerator_Discord_FileStat___Boxed * __this, List_1_Discord_FileStat_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Discord_FileStat__Dispose, (List_1_T_Enumerator_Discord_FileStat___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01435020, bool, List_1_T_Enumerator_Discord_FileStat__MoveNext, (List_1_T_Enumerator_Discord_FileStat___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_Discord_FileStat__MoveNextRare, (List_1_T_Enumerator_Discord_FileStat___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_Discord_FileStat__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Discord_FileStat___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_Discord_FileStat__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Discord_FileStat___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, FileStat, List_1_T_Enumerator_Discord_FileStat__get_Current, (List_1_T_Enumerator_Discord_FileStat___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, InlinedArray_1_TValue_Enumerator_System_Runtime_InteropServices_GCHandle__Dispose, (InlinedArray_1_TValue_Enumerator_System_Runtime_InteropServices_GCHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434CD0, bool, InlinedArray_1_TValue_Enumerator_System_Runtime_InteropServices_GCHandle__MoveNext, (InlinedArray_1_TValue_Enumerator_System_Runtime_InteropServices_GCHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x006DDC60, void, InlinedArray_1_TValue_Enumerator_System_Runtime_InteropServices_GCHandle__Reset, (InlinedArray_1_TValue_Enumerator_System_Runtime_InteropServices_GCHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143C5A0, Object *, InlinedArray_1_TValue_Enumerator_System_Runtime_InteropServices_GCHandle__System_Collections_IEnumerator_get_Current, (InlinedArray_1_TValue_Enumerator_System_Runtime_InteropServices_GCHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143C560, GCHandle, InlinedArray_1_TValue_Enumerator_System_Runtime_InteropServices_GCHandle__get_Current, (InlinedArray_1_TValue_Enumerator_System_Runtime_InteropServices_GCHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143C650, void, NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___ctor, (NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___Boxed * __this, NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__Dispose, (NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143C670, bool, NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__MoveNext, (NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__Reset, (NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143C740, Object *, NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143C730, GfxUpdateBufferRange, NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__get_Current, (NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143C040, void, NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___ctor, (NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___Boxed * __this, NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__Dispose, (NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143C050, bool, NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__MoveNext, (NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439B10, void, NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__Reset, (NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143C100, Object *, NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__System_Collections_IEnumerator_get_Current, (NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143C090, GfxUpdateBufferRange, NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__get_Current, (NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143C1C0, void, List_1_T_Enumerator_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___ctor, (List_1_T_Enumerator_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___Boxed * __this, List_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__Dispose, (List_1_T_Enumerator_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143C250, bool, List_1_T_Enumerator_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__MoveNext, (List_1_T_Enumerator_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143C320, bool, List_1_T_Enumerator_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__MoveNextRare, (List_1_T_Enumerator_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143C460, void, List_1_T_Enumerator_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143C3A0, Object *, List_1_T_Enumerator_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143C370, GlyphPairAdjustmentRecord, List_1_T_Enumerator_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__get_Current, (List_1_T_Enumerator_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_TextCore_GlyphRect___ctor, (List_1_T_Enumerator_UnityEngine_TextCore_GlyphRect___Boxed * __this, List_1_UnityEngine_TextCore_GlyphRect_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_TextCore_GlyphRect__Dispose, (List_1_T_Enumerator_UnityEngine_TextCore_GlyphRect___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437E50, bool, List_1_T_Enumerator_UnityEngine_TextCore_GlyphRect__MoveNext, (List_1_T_Enumerator_UnityEngine_TextCore_GlyphRect___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_TextCore_GlyphRect__MoveNextRare, (List_1_T_Enumerator_UnityEngine_TextCore_GlyphRect___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_TextCore_GlyphRect__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_TextCore_GlyphRect___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_TextCore_GlyphRect__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_TextCore_GlyphRect___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, GlyphRect, List_1_T_Enumerator_UnityEngine_TextCore_GlyphRect__get_Current, (List_1_T_Enumerator_UnityEngine_TextCore_GlyphRect___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_System_Guid___ctor, (List_1_T_Enumerator_System_Guid___Boxed * __this, List_1_System_Guid_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_Guid__Dispose, (List_1_T_Enumerator_System_Guid___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437E50, bool, List_1_T_Enumerator_System_Guid__MoveNext, (List_1_T_Enumerator_System_Guid___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_System_Guid__MoveNextRare, (List_1_T_Enumerator_System_Guid___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_System_Guid__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_Guid___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_System_Guid__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_Guid___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, Guid, List_1_T_Enumerator_System_Guid__get_Current, (List_1_T_Enumerator_System_Guid___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143AE10, void, NativeArray_1_T_Enumerator_System_Guid___ctor, (NativeArray_1_T_Enumerator_System_Guid___Boxed * __this, NativeArray_1_System_Guid_ array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_System_Guid__Dispose, (NativeArray_1_T_Enumerator_System_Guid___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143AE30, bool, NativeArray_1_T_Enumerator_System_Guid__MoveNext, (NativeArray_1_T_Enumerator_System_Guid___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_System_Guid__Reset, (NativeArray_1_T_Enumerator_System_Guid___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143AF00, Object *, NativeArray_1_T_Enumerator_System_Guid__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_System_Guid___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143AEF0, Guid, NativeArray_1_T_Enumerator_System_Guid__get_Current, (NativeArray_1_T_Enumerator_System_Guid___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_Rewired_InputActionSourceData___ctor, (List_1_T_Enumerator_Rewired_InputActionSourceData___Boxed * __this, List_1_Rewired_InputActionSourceData_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Rewired_InputActionSourceData__Dispose, (List_1_T_Enumerator_Rewired_InputActionSourceData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01435020, bool, List_1_T_Enumerator_Rewired_InputActionSourceData__MoveNext, (List_1_T_Enumerator_Rewired_InputActionSourceData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_Rewired_InputActionSourceData__MoveNextRare, (List_1_T_Enumerator_Rewired_InputActionSourceData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_Rewired_InputActionSourceData__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Rewired_InputActionSourceData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_Rewired_InputActionSourceData__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Rewired_InputActionSourceData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, InputActionSourceData, List_1_T_Enumerator_Rewired_InputActionSourceData__get_Current, (List_1_T_Enumerator_Rewired_InputActionSourceData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143C7C0, void, List_1_T_Enumerator_UnityEngine_InputSystem_InputBinding___ctor, (List_1_T_Enumerator_UnityEngine_InputSystem_InputBinding___Boxed * __this, List_1_UnityEngine_InputSystem_InputBinding_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_InputSystem_InputBinding__Dispose, (List_1_T_Enumerator_UnityEngine_InputSystem_InputBinding___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143C860, bool, List_1_T_Enumerator_UnityEngine_InputSystem_InputBinding__MoveNext, (List_1_T_Enumerator_UnityEngine_InputSystem_InputBinding___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143C9A0, bool, List_1_T_Enumerator_UnityEngine_InputSystem_InputBinding__MoveNextRare, (List_1_T_Enumerator_UnityEngine_InputSystem_InputBinding___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143CB10, void, List_1_T_Enumerator_UnityEngine_InputSystem_InputBinding__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_InputSystem_InputBinding___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143CA30, Object *, List_1_T_Enumerator_UnityEngine_InputSystem_InputBinding__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_InputBinding___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143C9F0, InputBinding, List_1_T_Enumerator_UnityEngine_InputSystem_InputBinding__get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_InputBinding___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143CB60, void, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputBinding___ctor, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputBinding___Boxed * __this, InputBinding__Array * array, int32_t index, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputBinding__Dispose, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputBinding___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143CBD0, bool, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputBinding__MoveNext, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputBinding___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143CBF0, void, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputBinding__Reset, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputBinding___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143CCE0, Object *, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputBinding__System_Collections_IEnumerator_get_Current, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputBinding___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143CC00, InputBinding, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputBinding__get_Current, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputBinding___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143CB60, void, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControlScheme___ctor, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControlScheme___Boxed * __this, InputControlScheme__Array * array, int32_t index, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControlScheme__Dispose, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControlScheme___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143CBD0, bool, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControlScheme__MoveNext, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControlScheme___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143CBF0, void, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControlScheme__Reset, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControlScheme___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143CE50, Object *, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControlScheme__System_Collections_IEnumerator_get_Current, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControlScheme___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143CDA0, InputControlScheme, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControlScheme__get_Current, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControlScheme___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_XR_InputDevice___ctor, (List_1_T_Enumerator_UnityEngine_XR_InputDevice___Boxed * __this, List_1_UnityEngine_XR_InputDevice_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_XR_InputDevice__Dispose, (List_1_T_Enumerator_UnityEngine_XR_InputDevice___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437E50, bool, List_1_T_Enumerator_UnityEngine_XR_InputDevice__MoveNext, (List_1_T_Enumerator_UnityEngine_XR_InputDevice___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_XR_InputDevice__MoveNextRare, (List_1_T_Enumerator_UnityEngine_XR_InputDevice___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_XR_InputDevice__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_XR_InputDevice___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_XR_InputDevice__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_XR_InputDevice___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, InputDevice_1, List_1_T_Enumerator_UnityEngine_XR_InputDevice__get_Current, (List_1_T_Enumerator_UnityEngine_XR_InputDevice___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438A50, void, List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputDeviceDescription___ctor, (List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputDeviceDescription___Boxed * __this, List_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputDeviceDescription__Dispose, (List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputDeviceDescription___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143CEE0, bool, List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputDeviceDescription__MoveNext, (List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputDeviceDescription___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438C10, bool, List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputDeviceDescription__MoveNextRare, (List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputDeviceDescription___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438D60, void, List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputDeviceDescription__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputDeviceDescription___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438C90, Object *, List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputDeviceDescription__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputDeviceDescription___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438C60, InputDeviceDescription, List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputDeviceDescription__get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputDeviceDescription___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434DE0, void, List_1_T_Enumerator_UnityEngine_InputSystem_LowLevel_InputEventPtr___ctor, (List_1_T_Enumerator_UnityEngine_InputSystem_LowLevel_InputEventPtr___Boxed * __this, List_1_UnityEngine_InputSystem_LowLevel_InputEventPtr_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_InputSystem_LowLevel_InputEventPtr__Dispose, (List_1_T_Enumerator_UnityEngine_InputSystem_LowLevel_InputEventPtr___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434E60, bool, List_1_T_Enumerator_UnityEngine_InputSystem_LowLevel_InputEventPtr__MoveNext, (List_1_T_Enumerator_UnityEngine_InputSystem_LowLevel_InputEventPtr___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434F00, bool, List_1_T_Enumerator_UnityEngine_InputSystem_LowLevel_InputEventPtr__MoveNextRare, (List_1_T_Enumerator_UnityEngine_InputSystem_LowLevel_InputEventPtr___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434FE0, void, List_1_T_Enumerator_UnityEngine_InputSystem_LowLevel_InputEventPtr__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_InputSystem_LowLevel_InputEventPtr___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434F40, Object *, List_1_T_Enumerator_UnityEngine_InputSystem_LowLevel_InputEventPtr__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_LowLevel_InputEventPtr___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, InputEventPtr, List_1_T_Enumerator_UnityEngine_InputSystem_LowLevel_InputEventPtr__get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_LowLevel_InputEventPtr___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143CB60, void, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_Users_InputUser___ctor, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_Users_InputUser___Boxed * __this, InputUser__Array * array, int32_t index, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_Users_InputUser__Dispose, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_Users_InputUser___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143CBD0, bool, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_Users_InputUser__MoveNext, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_Users_InputUser___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143CBF0, void, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_Users_InputUser__Reset, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_Users_InputUser___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143D0A0, Object *, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_Users_InputUser__System_Collections_IEnumerator_get_Current, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_Users_InputUser___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143D010, InputUser, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_Users_InputUser__get_Current, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_Users_InputUser___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143ABD0, void, List_1_T_Enumerator_System_Int16___ctor, (List_1_T_Enumerator_System_Int16___Boxed * __this, List_1_System_Int16_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_Int16__Dispose, (List_1_T_Enumerator_System_Int16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143AC50, bool, List_1_T_Enumerator_System_Int16__MoveNext, (List_1_T_Enumerator_System_Int16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143ACF0, bool, List_1_T_Enumerator_System_Int16__MoveNextRare, (List_1_T_Enumerator_System_Int16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143ADD0, void, List_1_T_Enumerator_System_Int16__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_Int16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143AD30, Object *, List_1_T_Enumerator_System_Int16__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_Int16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0098C910, int16_t, List_1_T_Enumerator_System_Int16__get_Current, (List_1_T_Enumerator_System_Int16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143D120, void, Queue_1_T_Enumerator_Pathfinding_Int2___ctor, (Queue_1_T_Enumerator_Pathfinding_Int2___Boxed * __this, Queue_1_Pathfinding_Int2_ * q, MethodInfo * method)); -DO_APP_FUNC(0x0143D1A0, void, Queue_1_T_Enumerator_Pathfinding_Int2__Dispose, (Queue_1_T_Enumerator_Pathfinding_Int2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143D1B0, bool, Queue_1_T_Enumerator_Pathfinding_Int2__MoveNext, (Queue_1_T_Enumerator_Pathfinding_Int2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143D400, void, Queue_1_T_Enumerator_Pathfinding_Int2__System_Collections_IEnumerator_Reset, (Queue_1_T_Enumerator_Pathfinding_Int2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143D350, Object *, Queue_1_T_Enumerator_Pathfinding_Int2__System_Collections_IEnumerator_get_Current, (Queue_1_T_Enumerator_Pathfinding_Int2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143D2E0, void, Queue_1_T_Enumerator_Pathfinding_Int2__ThrowEnumerationNotStartedOrEnded, (Queue_1_T_Enumerator_Pathfinding_Int2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143D2A0, Int2, Queue_1_T_Enumerator_Pathfinding_Int2__get_Current, (Queue_1_T_Enumerator_Pathfinding_Int2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437EF0, void, List_1_T_Enumerator_Pathfinding_Int3___ctor, (List_1_T_Enumerator_Pathfinding_Int3___Boxed * __this, List_1_Pathfinding_Int3_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Pathfinding_Int3__Dispose, (List_1_T_Enumerator_Pathfinding_Int3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437F70, bool, List_1_T_Enumerator_Pathfinding_Int3__MoveNext, (List_1_T_Enumerator_Pathfinding_Int3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438020, bool, List_1_T_Enumerator_Pathfinding_Int3__MoveNextRare, (List_1_T_Enumerator_Pathfinding_Int3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438110, void, List_1_T_Enumerator_Pathfinding_Int3__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Pathfinding_Int3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438060, Object *, List_1_T_Enumerator_Pathfinding_Int3__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Pathfinding_Int3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C39A10, Int3, List_1_T_Enumerator_Pathfinding_Int3__get_Current, (List_1_T_Enumerator_Pathfinding_Int3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143D490, void, Queue_1_T_Enumerator_Pathfinding_Int3___ctor, (Queue_1_T_Enumerator_Pathfinding_Int3___Boxed * __this, Queue_1_Pathfinding_Int3_ * q, MethodInfo * method)); -DO_APP_FUNC(0x0143D510, void, Queue_1_T_Enumerator_Pathfinding_Int3__Dispose, (Queue_1_T_Enumerator_Pathfinding_Int3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143D530, bool, Queue_1_T_Enumerator_Pathfinding_Int3__MoveNext, (Queue_1_T_Enumerator_Pathfinding_Int3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143D7C0, void, Queue_1_T_Enumerator_Pathfinding_Int3__System_Collections_IEnumerator_Reset, (Queue_1_T_Enumerator_Pathfinding_Int3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143D700, Object *, Queue_1_T_Enumerator_Pathfinding_Int3__System_Collections_IEnumerator_get_Current, (Queue_1_T_Enumerator_Pathfinding_Int3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143D690, void, Queue_1_T_Enumerator_Pathfinding_Int3__ThrowEnumerationNotStartedOrEnded, (Queue_1_T_Enumerator_Pathfinding_Int3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143D640, Int3, Queue_1_T_Enumerator_Pathfinding_Int3__get_Current, (Queue_1_T_Enumerator_Pathfinding_Int3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143A450, void, ArraySegment_1_T_Enumerator_Int32___ctor, (ArraySegment_1_T_Enumerator_Int32___Boxed * __this, ArraySegment_1_Int32_ arraySegment, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, ArraySegment_1_T_Enumerator_Int32__Dispose, (ArraySegment_1_T_Enumerator_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143A590, bool, ArraySegment_1_T_Enumerator_Int32__MoveNext, (ArraySegment_1_T_Enumerator_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143A6C0, void, ArraySegment_1_T_Enumerator_Int32__System_Collections_IEnumerator_Reset, (ArraySegment_1_T_Enumerator_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143D8A0, Object *, ArraySegment_1_T_Enumerator_Int32__System_Collections_IEnumerator_get_Current, (ArraySegment_1_T_Enumerator_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143D850, int32_t, ArraySegment_1_T_Enumerator_Int32__get_Current, (ArraySegment_1_T_Enumerator_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143D950, void, HashSet_1_T_Enumerator_System_Int32___ctor, (HashSet_1_T_Enumerator_System_Int32___Boxed * __this, HashSet_1_System_Int32_ * set, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, HashSet_1_T_Enumerator_System_Int32__Dispose, (HashSet_1_T_Enumerator_System_Int32___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434DE0, void, List_1_T_Enumerator_System_DateTime___ctor, (List_1_T_Enumerator_System_DateTime_ * __this, List_1_System_DateTime_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_DateTime__Dispose, (List_1_T_Enumerator_System_DateTime_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434E60, bool, List_1_T_Enumerator_System_DateTime__MoveNext, (List_1_T_Enumerator_System_DateTime_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434F00, bool, List_1_T_Enumerator_System_DateTime__MoveNextRare, (List_1_T_Enumerator_System_DateTime_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434FE0, void, List_1_T_Enumerator_System_DateTime__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_DateTime_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434F40, Object *, List_1_T_Enumerator_System_DateTime__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_DateTime_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, DateTime, List_1_T_Enumerator_System_DateTime__get_Current, (List_1_T_Enumerator_System_DateTime_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_System_DateTimeOffset___ctor, (List_1_T_Enumerator_System_DateTimeOffset_ * __this, List_1_System_DateTimeOffset_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_DateTimeOffset__Dispose, (List_1_T_Enumerator_System_DateTimeOffset_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01437E50, bool, List_1_T_Enumerator_System_DateTimeOffset__MoveNext, (List_1_T_Enumerator_System_DateTimeOffset_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_System_DateTimeOffset__MoveNextRare, (List_1_T_Enumerator_System_DateTimeOffset_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_System_DateTimeOffset__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_DateTimeOffset_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_System_DateTimeOffset__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_DateTimeOffset_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, DateTimeOffset, List_1_T_Enumerator_System_DateTimeOffset__get_Current, (List_1_T_Enumerator_System_DateTimeOffset_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_System_Decimal___ctor, (List_1_T_Enumerator_System_Decimal_ * __this, List_1_System_Decimal_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_Decimal__Dispose, (List_1_T_Enumerator_System_Decimal_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01437E50, bool, List_1_T_Enumerator_System_Decimal__MoveNext, (List_1_T_Enumerator_System_Decimal_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_System_Decimal__MoveNextRare, (List_1_T_Enumerator_System_Decimal_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_System_Decimal__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_Decimal_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_System_Decimal__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_Decimal_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, Decimal, List_1_T_Enumerator_System_Decimal__get_Current, (List_1_T_Enumerator_System_Decimal_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143BC80, void, List_1_T_Enumerator_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___ctor, (List_1_T_Enumerator_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, List_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__Dispose, (List_1_T_Enumerator_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143BD10, bool, List_1_T_Enumerator_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__MoveNext, (List_1_T_Enumerator_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143BE30, bool, List_1_T_Enumerator_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__MoveNextRare, (List_1_T_Enumerator_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143BF60, void, List_1_T_Enumerator_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143BEA0, Object *, List_1_T_Enumerator_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143BE80, DiagnosticEvent, List_1_T_Enumerator_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__get_Current, (List_1_T_Enumerator_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434DE0, void, List_1_T_Enumerator_System_Double___ctor, (List_1_T_Enumerator_System_Double_ * __this, List_1_System_Double_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_Double__Dispose, (List_1_T_Enumerator_System_Double_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434E60, bool, List_1_T_Enumerator_System_Double__MoveNext, (List_1_T_Enumerator_System_Double_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434F00, bool, List_1_T_Enumerator_System_Double__MoveNextRare, (List_1_T_Enumerator_System_Double_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434FE0, void, List_1_T_Enumerator_System_Double__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_Double_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143BFA0, Object *, List_1_T_Enumerator_System_Double__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_Double_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C107B0, double, List_1_T_Enumerator_System_Double__get_Current, (List_1_T_Enumerator_System_Double_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143AE10, void, NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_DrawBufferRange___ctor, (NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_DrawBufferRange_ * __this, NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange_ * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_DrawBufferRange__Dispose, (NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_DrawBufferRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143AE30, bool, NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_DrawBufferRange__MoveNext, (NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_DrawBufferRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_DrawBufferRange__Reset, (NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_DrawBufferRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143AF00, Object *, NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_DrawBufferRange__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_DrawBufferRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143AEF0, DrawBufferRange, NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_DrawBufferRange__get_Current, (NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_DrawBufferRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143C040, void, NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_DrawBufferRange___ctor, (NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_DrawBufferRange_ * __this, NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange_ * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_DrawBufferRange__Dispose, (NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_DrawBufferRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143C050, bool, NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_DrawBufferRange__MoveNext, (NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_DrawBufferRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439B10, void, NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_DrawBufferRange__Reset, (NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_DrawBufferRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143C100, Object *, NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_DrawBufferRange__System_Collections_IEnumerator_get_Current, (NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_DrawBufferRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143C090, DrawBufferRange, NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_DrawBufferRange__get_Current, (NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_DrawBufferRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143AF80, void, List_1_T_Enumerator_UnityEngine_UIElements_EasingFunction___ctor, (List_1_T_Enumerator_UnityEngine_UIElements_EasingFunction_ * __this, List_1_UnityEngine_UIElements_EasingFunction_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIElements_EasingFunction__Dispose, (List_1_T_Enumerator_UnityEngine_UIElements_EasingFunction_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6008, List_1_T_Enumerator_UnityEngine_UIElements_EasingFunction__Dispose__MethodInfo); +DO_APP_FUNC(0x0143B000, bool, List_1_T_Enumerator_UnityEngine_UIElements_EasingFunction__MoveNext, (List_1_T_Enumerator_UnityEngine_UIElements_EasingFunction_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5FF0, List_1_T_Enumerator_UnityEngine_UIElements_EasingFunction__MoveNext__MethodInfo); +DO_APP_FUNC(0x0143B0A0, bool, List_1_T_Enumerator_UnityEngine_UIElements_EasingFunction__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIElements_EasingFunction_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143B180, void, List_1_T_Enumerator_UnityEngine_UIElements_EasingFunction__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIElements_EasingFunction_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143B0E0, Object *, List_1_T_Enumerator_UnityEngine_UIElements_EasingFunction__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_EasingFunction_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, EasingFunction, List_1_T_Enumerator_UnityEngine_UIElements_EasingFunction__get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_EasingFunction_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5FF8, List_1_T_Enumerator_UnityEngine_UIElements_EasingFunction__get_Current__MethodInfo); +DO_APP_FUNC(0x0143C1C0, void, List_1_T_Enumerator_Rewired_ElementAssignmentConflictInfo___ctor, (List_1_T_Enumerator_Rewired_ElementAssignmentConflictInfo_ * __this, List_1_Rewired_ElementAssignmentConflictInfo_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Rewired_ElementAssignmentConflictInfo__Dispose, (List_1_T_Enumerator_Rewired_ElementAssignmentConflictInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143C250, bool, List_1_T_Enumerator_Rewired_ElementAssignmentConflictInfo__MoveNext, (List_1_T_Enumerator_Rewired_ElementAssignmentConflictInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143C320, bool, List_1_T_Enumerator_Rewired_ElementAssignmentConflictInfo__MoveNextRare, (List_1_T_Enumerator_Rewired_ElementAssignmentConflictInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143C460, void, List_1_T_Enumerator_Rewired_ElementAssignmentConflictInfo__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Rewired_ElementAssignmentConflictInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143C3A0, Object *, List_1_T_Enumerator_Rewired_ElementAssignmentConflictInfo__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Rewired_ElementAssignmentConflictInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143C370, ElementAssignmentConflictInfo, List_1_T_Enumerator_Rewired_ElementAssignmentConflictInfo__get_Current, (List_1_T_Enumerator_Rewired_ElementAssignmentConflictInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_Discord_Entitlement___ctor, (List_1_T_Enumerator_Discord_Entitlement_ * __this, List_1_Discord_Entitlement_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Discord_Entitlement__Dispose, (List_1_T_Enumerator_Discord_Entitlement_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143C4B0, bool, List_1_T_Enumerator_Discord_Entitlement__MoveNext, (List_1_T_Enumerator_Discord_Entitlement_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_Discord_Entitlement__MoveNextRare, (List_1_T_Enumerator_Discord_Entitlement_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_Discord_Entitlement__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Discord_Entitlement_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_Discord_Entitlement__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Discord_Entitlement_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, Entitlement, List_1_T_Enumerator_Discord_Entitlement__get_Current, (List_1_T_Enumerator_Discord_Entitlement_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_Photon_Bolt_EventReliable___ctor, (List_1_T_Enumerator_Photon_Bolt_EventReliable_ * __this, List_1_Photon_Bolt_EventReliable_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Photon_Bolt_EventReliable__Dispose, (List_1_T_Enumerator_Photon_Bolt_EventReliable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_Photon_Bolt_EventReliable__MoveNext, (List_1_T_Enumerator_Photon_Bolt_EventReliable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_Photon_Bolt_EventReliable__MoveNextRare, (List_1_T_Enumerator_Photon_Bolt_EventReliable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_Photon_Bolt_EventReliable__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Photon_Bolt_EventReliable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_Photon_Bolt_EventReliable__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Photon_Bolt_EventReliable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, EventReliable, List_1_T_Enumerator_Photon_Bolt_EventReliable__get_Current, (List_1_T_Enumerator_Photon_Bolt_EventReliable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_Photon_Bolt_EventUnreliable___ctor, (List_1_T_Enumerator_Photon_Bolt_EventUnreliable_ * __this, List_1_Photon_Bolt_EventUnreliable_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Photon_Bolt_EventUnreliable__Dispose, (List_1_T_Enumerator_Photon_Bolt_EventUnreliable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439CB0, bool, List_1_T_Enumerator_Photon_Bolt_EventUnreliable__MoveNext, (List_1_T_Enumerator_Photon_Bolt_EventUnreliable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_Photon_Bolt_EventUnreliable__MoveNextRare, (List_1_T_Enumerator_Photon_Bolt_EventUnreliable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_Photon_Bolt_EventUnreliable__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Photon_Bolt_EventUnreliable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_Photon_Bolt_EventUnreliable__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Photon_Bolt_EventUnreliable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, EventUnreliable, List_1_T_Enumerator_Photon_Bolt_EventUnreliable__get_Current, (List_1_T_Enumerator_Photon_Bolt_EventUnreliable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_Discord_FileStat___ctor, (List_1_T_Enumerator_Discord_FileStat_ * __this, List_1_Discord_FileStat_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Discord_FileStat__Dispose, (List_1_T_Enumerator_Discord_FileStat_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01435020, bool, List_1_T_Enumerator_Discord_FileStat__MoveNext, (List_1_T_Enumerator_Discord_FileStat_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_Discord_FileStat__MoveNextRare, (List_1_T_Enumerator_Discord_FileStat_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_Discord_FileStat__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Discord_FileStat_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_Discord_FileStat__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Discord_FileStat_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, FileStat, List_1_T_Enumerator_Discord_FileStat__get_Current, (List_1_T_Enumerator_Discord_FileStat_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, InlinedArray_1_TValue_Enumerator_System_Runtime_InteropServices_GCHandle__Dispose, (InlinedArray_1_TValue_Enumerator_System_Runtime_InteropServices_GCHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434CD0, bool, InlinedArray_1_TValue_Enumerator_System_Runtime_InteropServices_GCHandle__MoveNext, (InlinedArray_1_TValue_Enumerator_System_Runtime_InteropServices_GCHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x006DDC60, void, InlinedArray_1_TValue_Enumerator_System_Runtime_InteropServices_GCHandle__Reset, (InlinedArray_1_TValue_Enumerator_System_Runtime_InteropServices_GCHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143C5A0, Object *, InlinedArray_1_TValue_Enumerator_System_Runtime_InteropServices_GCHandle__System_Collections_IEnumerator_get_Current, (InlinedArray_1_TValue_Enumerator_System_Runtime_InteropServices_GCHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143C560, GCHandle, InlinedArray_1_TValue_Enumerator_System_Runtime_InteropServices_GCHandle__get_Current, (InlinedArray_1_TValue_Enumerator_System_Runtime_InteropServices_GCHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143C650, void, NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___ctor, (NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ * __this, NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__Dispose, (NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143C670, bool, NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__MoveNext, (NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__Reset, (NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143C740, Object *, NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143C730, GfxUpdateBufferRange, NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__get_Current, (NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143C040, void, NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___ctor, (NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ * __this, NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__Dispose, (NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143C050, bool, NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__MoveNext, (NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439B10, void, NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__Reset, (NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143C100, Object *, NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__System_Collections_IEnumerator_get_Current, (NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143C090, GfxUpdateBufferRange, NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__get_Current, (NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143C1C0, void, List_1_T_Enumerator_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___ctor, (List_1_T_Enumerator_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, List_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__Dispose, (List_1_T_Enumerator_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143C250, bool, List_1_T_Enumerator_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__MoveNext, (List_1_T_Enumerator_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143C320, bool, List_1_T_Enumerator_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__MoveNextRare, (List_1_T_Enumerator_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143C460, void, List_1_T_Enumerator_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143C3A0, Object *, List_1_T_Enumerator_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143C370, GlyphPairAdjustmentRecord, List_1_T_Enumerator_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__get_Current, (List_1_T_Enumerator_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_TextCore_GlyphRect___ctor, (List_1_T_Enumerator_UnityEngine_TextCore_GlyphRect_ * __this, List_1_UnityEngine_TextCore_GlyphRect_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_TextCore_GlyphRect__Dispose, (List_1_T_Enumerator_UnityEngine_TextCore_GlyphRect_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01437E50, bool, List_1_T_Enumerator_UnityEngine_TextCore_GlyphRect__MoveNext, (List_1_T_Enumerator_UnityEngine_TextCore_GlyphRect_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_TextCore_GlyphRect__MoveNextRare, (List_1_T_Enumerator_UnityEngine_TextCore_GlyphRect_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_TextCore_GlyphRect__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_TextCore_GlyphRect_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_TextCore_GlyphRect__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_TextCore_GlyphRect_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, GlyphRect, List_1_T_Enumerator_UnityEngine_TextCore_GlyphRect__get_Current, (List_1_T_Enumerator_UnityEngine_TextCore_GlyphRect_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_System_Guid___ctor, (List_1_T_Enumerator_System_Guid_ * __this, List_1_System_Guid_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_Guid__Dispose, (List_1_T_Enumerator_System_Guid_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01437E50, bool, List_1_T_Enumerator_System_Guid__MoveNext, (List_1_T_Enumerator_System_Guid_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_System_Guid__MoveNextRare, (List_1_T_Enumerator_System_Guid_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_System_Guid__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_Guid_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_System_Guid__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_Guid_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, Guid, List_1_T_Enumerator_System_Guid__get_Current, (List_1_T_Enumerator_System_Guid_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143AE10, void, NativeArray_1_T_Enumerator_System_Guid___ctor, (NativeArray_1_T_Enumerator_System_Guid_ * __this, NativeArray_1_System_Guid_ * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_System_Guid__Dispose, (NativeArray_1_T_Enumerator_System_Guid_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143AE30, bool, NativeArray_1_T_Enumerator_System_Guid__MoveNext, (NativeArray_1_T_Enumerator_System_Guid_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_System_Guid__Reset, (NativeArray_1_T_Enumerator_System_Guid_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143AF00, Object *, NativeArray_1_T_Enumerator_System_Guid__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_System_Guid_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143AEF0, Guid, NativeArray_1_T_Enumerator_System_Guid__get_Current, (NativeArray_1_T_Enumerator_System_Guid_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_Rewired_InputActionSourceData___ctor, (List_1_T_Enumerator_Rewired_InputActionSourceData_ * __this, List_1_Rewired_InputActionSourceData_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Rewired_InputActionSourceData__Dispose, (List_1_T_Enumerator_Rewired_InputActionSourceData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01435020, bool, List_1_T_Enumerator_Rewired_InputActionSourceData__MoveNext, (List_1_T_Enumerator_Rewired_InputActionSourceData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_Rewired_InputActionSourceData__MoveNextRare, (List_1_T_Enumerator_Rewired_InputActionSourceData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_Rewired_InputActionSourceData__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Rewired_InputActionSourceData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_Rewired_InputActionSourceData__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Rewired_InputActionSourceData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, InputActionSourceData, List_1_T_Enumerator_Rewired_InputActionSourceData__get_Current, (List_1_T_Enumerator_Rewired_InputActionSourceData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143C7C0, void, List_1_T_Enumerator_UnityEngine_InputSystem_InputBinding___ctor, (List_1_T_Enumerator_UnityEngine_InputSystem_InputBinding_ * __this, List_1_UnityEngine_InputSystem_InputBinding_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_InputSystem_InputBinding__Dispose, (List_1_T_Enumerator_UnityEngine_InputSystem_InputBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143C860, bool, List_1_T_Enumerator_UnityEngine_InputSystem_InputBinding__MoveNext, (List_1_T_Enumerator_UnityEngine_InputSystem_InputBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143C9A0, bool, List_1_T_Enumerator_UnityEngine_InputSystem_InputBinding__MoveNextRare, (List_1_T_Enumerator_UnityEngine_InputSystem_InputBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143CB10, void, List_1_T_Enumerator_UnityEngine_InputSystem_InputBinding__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_InputSystem_InputBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143CA30, Object *, List_1_T_Enumerator_UnityEngine_InputSystem_InputBinding__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_InputBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143C9F0, InputBinding, List_1_T_Enumerator_UnityEngine_InputSystem_InputBinding__get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_InputBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143CB60, void, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputBinding___ctor, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputBinding_ * __this, InputBinding__Array * array, int32_t index, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputBinding__Dispose, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0FE0, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputBinding__Dispose__MethodInfo); +DO_APP_FUNC(0x0143CBD0, bool, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputBinding__MoveNext, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0FE8, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputBinding__MoveNext__MethodInfo); +DO_APP_FUNC(0x0143CBF0, void, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputBinding__Reset, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143CCE0, Object *, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputBinding__System_Collections_IEnumerator_get_Current, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143CC00, InputBinding, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputBinding__get_Current, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D470, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputBinding__get_Current__MethodInfo); +DO_APP_FUNC(0x0143CB60, void, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControlScheme___ctor, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControlScheme_ * __this, InputControlScheme__Array * array, int32_t index, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControlScheme__Dispose, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControlScheme_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143CBD0, bool, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControlScheme__MoveNext, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControlScheme_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143CBF0, void, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControlScheme__Reset, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControlScheme_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143CE50, Object *, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControlScheme__System_Collections_IEnumerator_get_Current, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControlScheme_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143CDA0, InputControlScheme, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControlScheme__get_Current, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControlScheme_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D468, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControlScheme__get_Current__MethodInfo); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_XR_InputDevice___ctor, (List_1_T_Enumerator_UnityEngine_XR_InputDevice_ * __this, List_1_UnityEngine_XR_InputDevice_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_XR_InputDevice__Dispose, (List_1_T_Enumerator_UnityEngine_XR_InputDevice_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC570, List_1_T_Enumerator_UnityEngine_XR_InputDevice__Dispose__MethodInfo); +DO_APP_FUNC(0x01437E50, bool, List_1_T_Enumerator_UnityEngine_XR_InputDevice__MoveNext, (List_1_T_Enumerator_UnityEngine_XR_InputDevice_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC5B0, List_1_T_Enumerator_UnityEngine_XR_InputDevice__MoveNext__MethodInfo); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_XR_InputDevice__MoveNextRare, (List_1_T_Enumerator_UnityEngine_XR_InputDevice_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_XR_InputDevice__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_XR_InputDevice_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_XR_InputDevice__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_XR_InputDevice_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, InputDevice_1, List_1_T_Enumerator_UnityEngine_XR_InputDevice__get_Current, (List_1_T_Enumerator_UnityEngine_XR_InputDevice_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC5C0, List_1_T_Enumerator_UnityEngine_XR_InputDevice__get_Current__MethodInfo); +DO_APP_FUNC(0x01438A50, void, List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputDeviceDescription___ctor, (List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputDeviceDescription_ * __this, List_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputDeviceDescription__Dispose, (List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputDeviceDescription_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143CEE0, bool, List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputDeviceDescription__MoveNext, (List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputDeviceDescription_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438C10, bool, List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputDeviceDescription__MoveNextRare, (List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputDeviceDescription_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438D60, void, List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputDeviceDescription__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputDeviceDescription_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438C90, Object *, List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputDeviceDescription__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputDeviceDescription_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438C60, InputDeviceDescription, List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputDeviceDescription__get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputDeviceDescription_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434DE0, void, List_1_T_Enumerator_UnityEngine_InputSystem_LowLevel_InputEventPtr___ctor, (List_1_T_Enumerator_UnityEngine_InputSystem_LowLevel_InputEventPtr_ * __this, List_1_UnityEngine_InputSystem_LowLevel_InputEventPtr_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_InputSystem_LowLevel_InputEventPtr__Dispose, (List_1_T_Enumerator_UnityEngine_InputSystem_LowLevel_InputEventPtr_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434E60, bool, List_1_T_Enumerator_UnityEngine_InputSystem_LowLevel_InputEventPtr__MoveNext, (List_1_T_Enumerator_UnityEngine_InputSystem_LowLevel_InputEventPtr_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434F00, bool, List_1_T_Enumerator_UnityEngine_InputSystem_LowLevel_InputEventPtr__MoveNextRare, (List_1_T_Enumerator_UnityEngine_InputSystem_LowLevel_InputEventPtr_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434FE0, void, List_1_T_Enumerator_UnityEngine_InputSystem_LowLevel_InputEventPtr__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_InputSystem_LowLevel_InputEventPtr_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434F40, Object *, List_1_T_Enumerator_UnityEngine_InputSystem_LowLevel_InputEventPtr__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_LowLevel_InputEventPtr_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, InputEventPtr, List_1_T_Enumerator_UnityEngine_InputSystem_LowLevel_InputEventPtr__get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_LowLevel_InputEventPtr_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143CB60, void, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_Users_InputUser___ctor, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_Users_InputUser_ * __this, InputUser__Array * array, int32_t index, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_Users_InputUser__Dispose, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_Users_InputUser_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143CBD0, bool, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_Users_InputUser__MoveNext, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_Users_InputUser_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143CBF0, void, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_Users_InputUser__Reset, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_Users_InputUser_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143D0A0, Object *, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_Users_InputUser__System_Collections_IEnumerator_get_Current, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_Users_InputUser_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143D010, InputUser, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_Users_InputUser__get_Current, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_Users_InputUser_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D460, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_Users_InputUser__get_Current__MethodInfo); +DO_APP_FUNC(0x0143ABD0, void, List_1_T_Enumerator_System_Int16___ctor, (List_1_T_Enumerator_System_Int16_ * __this, List_1_System_Int16_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_Int16__Dispose, (List_1_T_Enumerator_System_Int16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143AC50, bool, List_1_T_Enumerator_System_Int16__MoveNext, (List_1_T_Enumerator_System_Int16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143ACF0, bool, List_1_T_Enumerator_System_Int16__MoveNextRare, (List_1_T_Enumerator_System_Int16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143ADD0, void, List_1_T_Enumerator_System_Int16__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_Int16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143AD30, Object *, List_1_T_Enumerator_System_Int16__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_Int16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0098C910, int16_t, List_1_T_Enumerator_System_Int16__get_Current, (List_1_T_Enumerator_System_Int16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143D120, void, Queue_1_T_Enumerator_Pathfinding_Int2___ctor, (Queue_1_T_Enumerator_Pathfinding_Int2_ * __this, Queue_1_Pathfinding_Int2_ * q, MethodInfo * method)); +DO_APP_FUNC(0x0143D1A0, void, Queue_1_T_Enumerator_Pathfinding_Int2__Dispose, (Queue_1_T_Enumerator_Pathfinding_Int2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143D1B0, bool, Queue_1_T_Enumerator_Pathfinding_Int2__MoveNext, (Queue_1_T_Enumerator_Pathfinding_Int2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D458, Queue_1_T_Enumerator_Pathfinding_Int2__MoveNext__MethodInfo); +DO_APP_FUNC(0x0143D400, void, Queue_1_T_Enumerator_Pathfinding_Int2__System_Collections_IEnumerator_Reset, (Queue_1_T_Enumerator_Pathfinding_Int2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D440, Queue_1_T_Enumerator_Pathfinding_Int2__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x0143D350, Object *, Queue_1_T_Enumerator_Pathfinding_Int2__System_Collections_IEnumerator_get_Current, (Queue_1_T_Enumerator_Pathfinding_Int2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143D2E0, void, Queue_1_T_Enumerator_Pathfinding_Int2__ThrowEnumerationNotStartedOrEnded, (Queue_1_T_Enumerator_Pathfinding_Int2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D448, Queue_1_T_Enumerator_Pathfinding_Int2__ThrowEnumerationNotStartedOrEnded__MethodInfo); +DO_APP_FUNC(0x0143D2A0, Int2, Queue_1_T_Enumerator_Pathfinding_Int2__get_Current, (Queue_1_T_Enumerator_Pathfinding_Int2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01437EF0, void, List_1_T_Enumerator_Pathfinding_Int3___ctor, (List_1_T_Enumerator_Pathfinding_Int3_ * __this, List_1_Pathfinding_Int3_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Pathfinding_Int3__Dispose, (List_1_T_Enumerator_Pathfinding_Int3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01437F70, bool, List_1_T_Enumerator_Pathfinding_Int3__MoveNext, (List_1_T_Enumerator_Pathfinding_Int3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438020, bool, List_1_T_Enumerator_Pathfinding_Int3__MoveNextRare, (List_1_T_Enumerator_Pathfinding_Int3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438110, void, List_1_T_Enumerator_Pathfinding_Int3__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Pathfinding_Int3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438060, Object *, List_1_T_Enumerator_Pathfinding_Int3__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Pathfinding_Int3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C39A10, Int3, List_1_T_Enumerator_Pathfinding_Int3__get_Current, (List_1_T_Enumerator_Pathfinding_Int3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143D490, void, Queue_1_T_Enumerator_Pathfinding_Int3___ctor, (Queue_1_T_Enumerator_Pathfinding_Int3_ * __this, Queue_1_Pathfinding_Int3_ * q, MethodInfo * method)); +DO_APP_FUNC(0x0143D510, void, Queue_1_T_Enumerator_Pathfinding_Int3__Dispose, (Queue_1_T_Enumerator_Pathfinding_Int3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143D530, bool, Queue_1_T_Enumerator_Pathfinding_Int3__MoveNext, (Queue_1_T_Enumerator_Pathfinding_Int3_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D438, Queue_1_T_Enumerator_Pathfinding_Int3__MoveNext__MethodInfo); +DO_APP_FUNC(0x0143D7C0, void, Queue_1_T_Enumerator_Pathfinding_Int3__System_Collections_IEnumerator_Reset, (Queue_1_T_Enumerator_Pathfinding_Int3_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D380, Queue_1_T_Enumerator_Pathfinding_Int3__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x0143D700, Object *, Queue_1_T_Enumerator_Pathfinding_Int3__System_Collections_IEnumerator_get_Current, (Queue_1_T_Enumerator_Pathfinding_Int3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143D690, void, Queue_1_T_Enumerator_Pathfinding_Int3__ThrowEnumerationNotStartedOrEnded, (Queue_1_T_Enumerator_Pathfinding_Int3_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D388, Queue_1_T_Enumerator_Pathfinding_Int3__ThrowEnumerationNotStartedOrEnded__MethodInfo); +DO_APP_FUNC(0x0143D640, Int3, Queue_1_T_Enumerator_Pathfinding_Int3__get_Current, (Queue_1_T_Enumerator_Pathfinding_Int3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143A450, void, ArraySegment_1_T_Enumerator_Int32___ctor, (ArraySegment_1_T_Enumerator_Int32_ * __this, ArraySegment_1_Int32_ arraySegment, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, ArraySegment_1_T_Enumerator_Int32__Dispose, (ArraySegment_1_T_Enumerator_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143A590, bool, ArraySegment_1_T_Enumerator_Int32__MoveNext, (ArraySegment_1_T_Enumerator_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143A6C0, void, ArraySegment_1_T_Enumerator_Int32__System_Collections_IEnumerator_Reset, (ArraySegment_1_T_Enumerator_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143D8A0, Object *, ArraySegment_1_T_Enumerator_Int32__System_Collections_IEnumerator_get_Current, (ArraySegment_1_T_Enumerator_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143D850, int32_t, ArraySegment_1_T_Enumerator_Int32__get_Current, (ArraySegment_1_T_Enumerator_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143D950, void, HashSet_1_T_Enumerator_System_Int32___ctor, (HashSet_1_T_Enumerator_System_Int32_ * __this, HashSet_1_System_Int32_ * set, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, HashSet_1_T_Enumerator_System_Int32__Dispose, (HashSet_1_T_Enumerator_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C954E0, HashSet_1_T_Enumerator_System_Int32__Dispose__MethodInfo); -DO_APP_FUNC(0x0143D9D0, bool, HashSet_1_T_Enumerator_System_Int32__MoveNext, (HashSet_1_T_Enumerator_System_Int32___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143D9D0, bool, HashSet_1_T_Enumerator_System_Int32__MoveNext, (HashSet_1_T_Enumerator_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C954C8, HashSet_1_T_Enumerator_System_Int32__MoveNext__MethodInfo); -DO_APP_FUNC(0x0143DBB0, void, HashSet_1_T_Enumerator_System_Int32__System_Collections_IEnumerator_Reset, (HashSet_1_T_Enumerator_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143DAC0, Object *, HashSet_1_T_Enumerator_System_Int32__System_Collections_IEnumerator_get_Current, (HashSet_1_T_Enumerator_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, int32_t, HashSet_1_T_Enumerator_System_Int32__get_Current, (HashSet_1_T_Enumerator_System_Int32___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143DBB0, void, HashSet_1_T_Enumerator_System_Int32__System_Collections_IEnumerator_Reset, (HashSet_1_T_Enumerator_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D368, HashSet_1_T_Enumerator_System_Int32__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x0143DAC0, Object *, HashSet_1_T_Enumerator_System_Int32__System_Collections_IEnumerator_get_Current, (HashSet_1_T_Enumerator_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D378, HashSet_1_T_Enumerator_System_Int32__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x003BCD50, int32_t, HashSet_1_T_Enumerator_System_Int32__get_Current, (HashSet_1_T_Enumerator_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C954D0, HashSet_1_T_Enumerator_System_Int32__get_Current__MethodInfo); -DO_APP_FUNC(0x003AE050, void, InlinedArray_1_TValue_Enumerator_System_Int32__Dispose, (InlinedArray_1_TValue_Enumerator_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143DC40, bool, InlinedArray_1_TValue_Enumerator_System_Int32__MoveNext, (InlinedArray_1_TValue_Enumerator_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439B10, void, InlinedArray_1_TValue_Enumerator_System_Int32__Reset, (InlinedArray_1_TValue_Enumerator_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143DCA0, Object *, InlinedArray_1_TValue_Enumerator_System_Int32__System_Collections_IEnumerator_get_Current, (InlinedArray_1_TValue_Enumerator_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143DC60, int32_t, InlinedArray_1_TValue_Enumerator_System_Int32__get_Current, (InlinedArray_1_TValue_Enumerator_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143AF80, void, List_1_T_Enumerator_System_Int32___ctor, (List_1_T_Enumerator_System_Int32___Boxed * __this, List_1_System_Int32_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_Int32__Dispose, (List_1_T_Enumerator_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B000, bool, List_1_T_Enumerator_System_Int32__MoveNext, (List_1_T_Enumerator_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B0A0, bool, List_1_T_Enumerator_System_Int32__MoveNextRare, (List_1_T_Enumerator_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B180, void, List_1_T_Enumerator_System_Int32__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B0E0, Object *, List_1_T_Enumerator_System_Int32__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, int32_t, List_1_T_Enumerator_System_Int32__get_Current, (List_1_T_Enumerator_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B1C0, void, NativeArray_1_T_Enumerator_System_Int32___ctor, (NativeArray_1_T_Enumerator_System_Int32___Boxed * __this, NativeArray_1_System_Int32_ array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_System_Int32__Dispose, (NativeArray_1_T_Enumerator_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B1E0, bool, NativeArray_1_T_Enumerator_System_Int32__MoveNext, (NativeArray_1_T_Enumerator_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_System_Int32__Reset, (NativeArray_1_T_Enumerator_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B2A0, Object *, NativeArray_1_T_Enumerator_System_Int32__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B290, int32_t, NativeArray_1_T_Enumerator_System_Int32__get_Current, (NativeArray_1_T_Enumerator_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143DD50, void, Queue_1_T_Enumerator_System_Int32___ctor, (Queue_1_T_Enumerator_System_Int32___Boxed * __this, Queue_1_System_Int32_ * q, MethodInfo * method)); -DO_APP_FUNC(0x0143DDD0, void, Queue_1_T_Enumerator_System_Int32__Dispose, (Queue_1_T_Enumerator_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143DDE0, bool, Queue_1_T_Enumerator_System_Int32__MoveNext, (Queue_1_T_Enumerator_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143E030, void, Queue_1_T_Enumerator_System_Int32__System_Collections_IEnumerator_Reset, (Queue_1_T_Enumerator_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143DF80, Object *, Queue_1_T_Enumerator_System_Int32__System_Collections_IEnumerator_get_Current, (Queue_1_T_Enumerator_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143DF10, void, Queue_1_T_Enumerator_System_Int32__ThrowEnumerationNotStartedOrEnded, (Queue_1_T_Enumerator_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143DED0, int32_t, Queue_1_T_Enumerator_System_Int32__get_Current, (Queue_1_T_Enumerator_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143E0C0, void, Stack_1_T_Enumerator_System_Int32___ctor, (Stack_1_T_Enumerator_System_Int32___Boxed * __this, Stack_1_System_Int32_ * stack, MethodInfo * method)); -DO_APP_FUNC(0x01436E20, void, Stack_1_T_Enumerator_System_Int32__Dispose, (Stack_1_T_Enumerator_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143E140, bool, Stack_1_T_Enumerator_System_Int32__MoveNext, (Stack_1_T_Enumerator_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143E3D0, void, Stack_1_T_Enumerator_System_Int32__System_Collections_IEnumerator_Reset, (Stack_1_T_Enumerator_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143E320, Object *, Stack_1_T_Enumerator_System_Int32__System_Collections_IEnumerator_get_Current, (Stack_1_T_Enumerator_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143E2B0, void, Stack_1_T_Enumerator_System_Int32__ThrowEnumerationNotStartedOrEnded, (Stack_1_T_Enumerator_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143E270, int32_t, Stack_1_T_Enumerator_System_Int32__get_Current, (Stack_1_T_Enumerator_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143D950, void, HashSet_1_T_Enumerator_System_Int32Enum___ctor, (HashSet_1_T_Enumerator_System_Int32Enum___Boxed * __this, HashSet_1_System_Int32Enum_ * set, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, HashSet_1_T_Enumerator_System_Int32Enum__Dispose, (HashSet_1_T_Enumerator_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143E460, bool, HashSet_1_T_Enumerator_System_Int32Enum__MoveNext, (HashSet_1_T_Enumerator_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143E640, void, HashSet_1_T_Enumerator_System_Int32Enum__System_Collections_IEnumerator_Reset, (HashSet_1_T_Enumerator_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143E550, Object *, HashSet_1_T_Enumerator_System_Int32Enum__System_Collections_IEnumerator_get_Current, (HashSet_1_T_Enumerator_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, Int32Enum__Enum, HashSet_1_T_Enumerator_System_Int32Enum__get_Current, (HashSet_1_T_Enumerator_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143AF80, void, List_1_T_Enumerator_System_Int32Enum___ctor, (List_1_T_Enumerator_System_Int32Enum___Boxed * __this, List_1_System_Int32Enum_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_Int32Enum__Dispose, (List_1_T_Enumerator_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B000, bool, List_1_T_Enumerator_System_Int32Enum__MoveNext, (List_1_T_Enumerator_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B0A0, bool, List_1_T_Enumerator_System_Int32Enum__MoveNextRare, (List_1_T_Enumerator_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B180, void, List_1_T_Enumerator_System_Int32Enum__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B0E0, Object *, List_1_T_Enumerator_System_Int32Enum__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, Int32Enum__Enum, List_1_T_Enumerator_System_Int32Enum__get_Current, (List_1_T_Enumerator_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143E0C0, void, Stack_1_T_Enumerator_System_Int32Enum___ctor, (Stack_1_T_Enumerator_System_Int32Enum___Boxed * __this, Stack_1_System_Int32Enum_ * stack, MethodInfo * method)); -DO_APP_FUNC(0x01436E20, void, Stack_1_T_Enumerator_System_Int32Enum__Dispose, (Stack_1_T_Enumerator_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143E6D0, bool, Stack_1_T_Enumerator_System_Int32Enum__MoveNext, (Stack_1_T_Enumerator_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143E960, void, Stack_1_T_Enumerator_System_Int32Enum__System_Collections_IEnumerator_Reset, (Stack_1_T_Enumerator_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143E8B0, Object *, Stack_1_T_Enumerator_System_Int32Enum__System_Collections_IEnumerator_get_Current, (Stack_1_T_Enumerator_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143E840, void, Stack_1_T_Enumerator_System_Int32Enum__ThrowEnumerationNotStartedOrEnded, (Stack_1_T_Enumerator_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143E800, Int32Enum__Enum, Stack_1_T_Enumerator_System_Int32Enum__get_Current, (Stack_1_T_Enumerator_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434DE0, void, List_1_T_Enumerator_System_Int64___ctor, (List_1_T_Enumerator_System_Int64___Boxed * __this, List_1_System_Int64_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_Int64__Dispose, (List_1_T_Enumerator_System_Int64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434E60, bool, List_1_T_Enumerator_System_Int64__MoveNext, (List_1_T_Enumerator_System_Int64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434F00, bool, List_1_T_Enumerator_System_Int64__MoveNextRare, (List_1_T_Enumerator_System_Int64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434FE0, void, List_1_T_Enumerator_System_Int64__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_Int64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434F40, Object *, List_1_T_Enumerator_System_Int64__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_Int64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, int64_t, List_1_T_Enumerator_System_Int64__get_Current, (List_1_T_Enumerator_System_Int64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_Pathfinding_ClipperLib_IntPoint___ctor, (List_1_T_Enumerator_Pathfinding_ClipperLib_IntPoint___Boxed * __this, List_1_Pathfinding_ClipperLib_IntPoint_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Pathfinding_ClipperLib_IntPoint__Dispose, (List_1_T_Enumerator_Pathfinding_ClipperLib_IntPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437E50, bool, List_1_T_Enumerator_Pathfinding_ClipperLib_IntPoint__MoveNext, (List_1_T_Enumerator_Pathfinding_ClipperLib_IntPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_Pathfinding_ClipperLib_IntPoint__MoveNextRare, (List_1_T_Enumerator_Pathfinding_ClipperLib_IntPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_Pathfinding_ClipperLib_IntPoint__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Pathfinding_ClipperLib_IntPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_Pathfinding_ClipperLib_IntPoint__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Pathfinding_ClipperLib_IntPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, IntPoint, List_1_T_Enumerator_Pathfinding_ClipperLib_IntPoint__get_Current, (List_1_T_Enumerator_Pathfinding_ClipperLib_IntPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_Pathfinding_IntRect___ctor, (List_1_T_Enumerator_Pathfinding_IntRect___Boxed * __this, List_1_Pathfinding_IntRect_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Pathfinding_IntRect__Dispose, (List_1_T_Enumerator_Pathfinding_IntRect___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437E50, bool, List_1_T_Enumerator_Pathfinding_IntRect__MoveNext, (List_1_T_Enumerator_Pathfinding_IntRect___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_Pathfinding_IntRect__MoveNextRare, (List_1_T_Enumerator_Pathfinding_IntRect___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_Pathfinding_IntRect__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Pathfinding_IntRect___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_Pathfinding_IntRect__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Pathfinding_IntRect___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, IntRect, List_1_T_Enumerator_Pathfinding_IntRect__get_Current, (List_1_T_Enumerator_Pathfinding_IntRect___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01203D20, void, HashSet_1_T_Enumerator_UnityEngine_InputSystem_Utilities_InternedString___ctor, (HashSet_1_T_Enumerator_UnityEngine_InputSystem_Utilities_InternedString___Boxed * __this, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString_ * set, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, HashSet_1_T_Enumerator_UnityEngine_InputSystem_Utilities_InternedString__Dispose, (HashSet_1_T_Enumerator_UnityEngine_InputSystem_Utilities_InternedString___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143E9F0, bool, HashSet_1_T_Enumerator_UnityEngine_InputSystem_Utilities_InternedString__MoveNext, (HashSet_1_T_Enumerator_UnityEngine_InputSystem_Utilities_InternedString___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143EBF0, void, HashSet_1_T_Enumerator_UnityEngine_InputSystem_Utilities_InternedString__System_Collections_IEnumerator_Reset, (HashSet_1_T_Enumerator_UnityEngine_InputSystem_Utilities_InternedString___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143EB00, Object *, HashSet_1_T_Enumerator_UnityEngine_InputSystem_Utilities_InternedString__System_Collections_IEnumerator_get_Current, (HashSet_1_T_Enumerator_UnityEngine_InputSystem_Utilities_InternedString___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, InternedString, HashSet_1_T_Enumerator_UnityEngine_InputSystem_Utilities_InternedString__get_Current, (HashSet_1_T_Enumerator_UnityEngine_InputSystem_Utilities_InternedString___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, InlinedArray_1_TValue_Enumerator_InternedString__Dispose, (InlinedArray_1_TValue_Enumerator_InternedString___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143EC80, bool, InlinedArray_1_TValue_Enumerator_InternedString__MoveNext, (InlinedArray_1_TValue_Enumerator_InternedString___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x006C4180, void, InlinedArray_1_TValue_Enumerator_InternedString__Reset, (InlinedArray_1_TValue_Enumerator_InternedString___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143ED00, Object *, InlinedArray_1_TValue_Enumerator_InternedString__System_Collections_IEnumerator_get_Current, (InlinedArray_1_TValue_Enumerator_InternedString___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143ECA0, InternedString, InlinedArray_1_TValue_Enumerator_InternedString__get_Current, (InlinedArray_1_TValue_Enumerator_InternedString___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_InternedString___ctor, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_InternedString___Boxed * __this, List_1_UnityEngine_InputSystem_Utilities_InternedString_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_InternedString__Dispose, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_InternedString___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_InternedString__MoveNext, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_InternedString___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_InternedString__MoveNextRare, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_InternedString___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_InternedString__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_InternedString___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_InternedString__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_InternedString___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, InternedString, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_InternedString__get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_InternedString___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143CB60, void, ReadOnlyArray_1_TValue_Enumerator_InternedString___ctor, (ReadOnlyArray_1_TValue_Enumerator_InternedString___Boxed * __this, InternedString__Array * array, int32_t index, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, ReadOnlyArray_1_TValue_Enumerator_InternedString__Dispose, (ReadOnlyArray_1_TValue_Enumerator_InternedString___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143CBD0, bool, ReadOnlyArray_1_TValue_Enumerator_InternedString__MoveNext, (ReadOnlyArray_1_TValue_Enumerator_InternedString___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143CBF0, void, ReadOnlyArray_1_TValue_Enumerator_InternedString__Reset, (ReadOnlyArray_1_TValue_Enumerator_InternedString___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143EE50, Object *, ReadOnlyArray_1_TValue_Enumerator_InternedString__System_Collections_IEnumerator_get_Current, (ReadOnlyArray_1_TValue_Enumerator_InternedString___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143EDB0, InternedString, ReadOnlyArray_1_TValue_Enumerator_InternedString__get_Current, (ReadOnlyArray_1_TValue_Enumerator_InternedString___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_System_Linq_Expressions_Interpreter_InterpretedFrameInfo___ctor, (List_1_T_Enumerator_System_Linq_Expressions_Interpreter_InterpretedFrameInfo___Boxed * __this, List_1_System_Linq_Expressions_Interpreter_InterpretedFrameInfo_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_Linq_Expressions_Interpreter_InterpretedFrameInfo__Dispose, (List_1_T_Enumerator_System_Linq_Expressions_Interpreter_InterpretedFrameInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_System_Linq_Expressions_Interpreter_InterpretedFrameInfo__MoveNext, (List_1_T_Enumerator_System_Linq_Expressions_Interpreter_InterpretedFrameInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_System_Linq_Expressions_Interpreter_InterpretedFrameInfo__MoveNextRare, (List_1_T_Enumerator_System_Linq_Expressions_Interpreter_InterpretedFrameInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_System_Linq_Expressions_Interpreter_InterpretedFrameInfo__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_Linq_Expressions_Interpreter_InterpretedFrameInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_System_Linq_Expressions_Interpreter_InterpretedFrameInfo__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_Linq_Expressions_Interpreter_InterpretedFrameInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, InterpretedFrameInfo, List_1_T_Enumerator_System_Linq_Expressions_Interpreter_InterpretedFrameInfo__get_Current, (List_1_T_Enumerator_System_Linq_Expressions_Interpreter_InterpretedFrameInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_UnityEngine_Timeline_IntervalTreeNode___ctor, (List_1_T_Enumerator_UnityEngine_Timeline_IntervalTreeNode___Boxed * __this, List_1_UnityEngine_Timeline_IntervalTreeNode_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Timeline_IntervalTreeNode__Dispose, (List_1_T_Enumerator_UnityEngine_Timeline_IntervalTreeNode___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143C4B0, bool, List_1_T_Enumerator_UnityEngine_Timeline_IntervalTreeNode__MoveNext, (List_1_T_Enumerator_UnityEngine_Timeline_IntervalTreeNode___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_UnityEngine_Timeline_IntervalTreeNode__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Timeline_IntervalTreeNode___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_UnityEngine_Timeline_IntervalTreeNode__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Timeline_IntervalTreeNode___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_UnityEngine_Timeline_IntervalTreeNode__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Timeline_IntervalTreeNode___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, IntervalTreeNode, List_1_T_Enumerator_UnityEngine_Timeline_IntervalTreeNode__get_Current, (List_1_T_Enumerator_UnityEngine_Timeline_IntervalTreeNode___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount___ctor, (List_1_T_Enumerator_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount___Boxed * __this, List_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount__Dispose, (List_1_T_Enumerator_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01435020, bool, List_1_T_Enumerator_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount__MoveNext, (List_1_T_Enumerator_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount__MoveNextRare, (List_1_T_Enumerator_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, ItemDefinitionAmount, List_1_T_Enumerator_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount__get_Current, (List_1_T_Enumerator_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_KickedPlayer___ctor, (List_1_T_Enumerator_KickedPlayer___Boxed * __this, List_1_KickedPlayer_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_KickedPlayer__Dispose, (List_1_T_Enumerator_KickedPlayer___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434850, bool, List_1_T_Enumerator_KickedPlayer__MoveNext, (List_1_T_Enumerator_KickedPlayer___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_KickedPlayer__MoveNextRare, (List_1_T_Enumerator_KickedPlayer___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_KickedPlayer__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_KickedPlayer___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_KickedPlayer__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_KickedPlayer___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, KickedPlayer, List_1_T_Enumerator_KickedPlayer__get_Current, (List_1_T_Enumerator_KickedPlayer___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143AF80, void, List_1_T_Enumerator_UnityEngine_LayerMask___ctor, (List_1_T_Enumerator_UnityEngine_LayerMask___Boxed * __this, List_1_UnityEngine_LayerMask_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_LayerMask__Dispose, (List_1_T_Enumerator_UnityEngine_LayerMask___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B000, bool, List_1_T_Enumerator_UnityEngine_LayerMask__MoveNext, (List_1_T_Enumerator_UnityEngine_LayerMask___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B0A0, bool, List_1_T_Enumerator_UnityEngine_LayerMask__MoveNextRare, (List_1_T_Enumerator_UnityEngine_LayerMask___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B180, void, List_1_T_Enumerator_UnityEngine_LayerMask__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_LayerMask___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B0E0, Object *, List_1_T_Enumerator_UnityEngine_LayerMask__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_LayerMask___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, LayerMask, List_1_T_Enumerator_UnityEngine_LayerMask__get_Current, (List_1_T_Enumerator_UnityEngine_LayerMask___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143EED0, void, NativeArray_1_T_Enumerator_UnityEngine_Experimental_GlobalIllumination_LightDataGI___ctor, (NativeArray_1_T_Enumerator_UnityEngine_Experimental_GlobalIllumination_LightDataGI___Boxed * __this, NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI_ array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_UnityEngine_Experimental_GlobalIllumination_LightDataGI__Dispose, (NativeArray_1_T_Enumerator_UnityEngine_Experimental_GlobalIllumination_LightDataGI___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143EF00, bool, NativeArray_1_T_Enumerator_UnityEngine_Experimental_GlobalIllumination_LightDataGI__MoveNext, (NativeArray_1_T_Enumerator_UnityEngine_Experimental_GlobalIllumination_LightDataGI___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_UnityEngine_Experimental_GlobalIllumination_LightDataGI__Reset, (NativeArray_1_T_Enumerator_UnityEngine_Experimental_GlobalIllumination_LightDataGI___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143F040, Object *, NativeArray_1_T_Enumerator_UnityEngine_Experimental_GlobalIllumination_LightDataGI__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_UnityEngine_Experimental_GlobalIllumination_LightDataGI___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143F000, LightDataGI, NativeArray_1_T_Enumerator_UnityEngine_Experimental_GlobalIllumination_LightDataGI__get_Current, (NativeArray_1_T_Enumerator_UnityEngine_Experimental_GlobalIllumination_LightDataGI___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437EF0, void, List_1_T_Enumerator_UnityEngine_UIElements_ManipulatorActivationFilter___ctor, (List_1_T_Enumerator_UnityEngine_UIElements_ManipulatorActivationFilter___Boxed * __this, List_1_UnityEngine_UIElements_ManipulatorActivationFilter_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIElements_ManipulatorActivationFilter__Dispose, (List_1_T_Enumerator_UnityEngine_UIElements_ManipulatorActivationFilter___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437F70, bool, List_1_T_Enumerator_UnityEngine_UIElements_ManipulatorActivationFilter__MoveNext, (List_1_T_Enumerator_UnityEngine_UIElements_ManipulatorActivationFilter___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438020, bool, List_1_T_Enumerator_UnityEngine_UIElements_ManipulatorActivationFilter__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIElements_ManipulatorActivationFilter___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438110, void, List_1_T_Enumerator_UnityEngine_UIElements_ManipulatorActivationFilter__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIElements_ManipulatorActivationFilter___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438060, Object *, List_1_T_Enumerator_UnityEngine_UIElements_ManipulatorActivationFilter__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_ManipulatorActivationFilter___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C39A10, ManipulatorActivationFilter, List_1_T_Enumerator_UnityEngine_UIElements_ManipulatorActivationFilter__get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_ManipulatorActivationFilter___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143F0F0, void, List_1_T_Enumerator_UnityEngine_Matrix4x4___ctor, (List_1_T_Enumerator_UnityEngine_Matrix4x4___Boxed * __this, List_1_UnityEngine_Matrix4x4_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Matrix4x4__Dispose, (List_1_T_Enumerator_UnityEngine_Matrix4x4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143F180, bool, List_1_T_Enumerator_UnityEngine_Matrix4x4__MoveNext, (List_1_T_Enumerator_UnityEngine_Matrix4x4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143F250, bool, List_1_T_Enumerator_UnityEngine_Matrix4x4__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Matrix4x4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143F390, void, List_1_T_Enumerator_UnityEngine_Matrix4x4__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Matrix4x4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143F2D0, Object *, List_1_T_Enumerator_UnityEngine_Matrix4x4__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Matrix4x4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143F2A0, Matrix4x4, List_1_T_Enumerator_UnityEngine_Matrix4x4__get_Current, (List_1_T_Enumerator_UnityEngine_Matrix4x4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143F3E0, void, Stack_1_T_Enumerator_UnityEngine_Matrix4x4___ctor, (Stack_1_T_Enumerator_UnityEngine_Matrix4x4___Boxed * __this, Stack_1_UnityEngine_Matrix4x4_ * stack, MethodInfo * method)); -DO_APP_FUNC(0x01436E20, void, Stack_1_T_Enumerator_UnityEngine_Matrix4x4__Dispose, (Stack_1_T_Enumerator_UnityEngine_Matrix4x4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143F470, bool, Stack_1_T_Enumerator_UnityEngine_Matrix4x4__MoveNext, (Stack_1_T_Enumerator_UnityEngine_Matrix4x4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143F760, void, Stack_1_T_Enumerator_UnityEngine_Matrix4x4__System_Collections_IEnumerator_Reset, (Stack_1_T_Enumerator_UnityEngine_Matrix4x4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143F690, Object *, Stack_1_T_Enumerator_UnityEngine_Matrix4x4__System_Collections_IEnumerator_get_Current, (Stack_1_T_Enumerator_UnityEngine_Matrix4x4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143F620, void, Stack_1_T_Enumerator_UnityEngine_Matrix4x4__ThrowEnumerationNotStartedOrEnded, (Stack_1_T_Enumerator_UnityEngine_Matrix4x4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143F5C0, Matrix4x4, Stack_1_T_Enumerator_UnityEngine_Matrix4x4__get_Current, (Stack_1_T_Enumerator_UnityEngine_Matrix4x4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143A200, void, NativeArray_1_T_Enumerator_UnityEngine_ModifiableContactPair___ctor, (NativeArray_1_T_Enumerator_UnityEngine_ModifiableContactPair___Boxed * __this, NativeArray_1_UnityEngine_ModifiableContactPair_ array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_UnityEngine_ModifiableContactPair__Dispose, (NativeArray_1_T_Enumerator_UnityEngine_ModifiableContactPair___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143A230, bool, NativeArray_1_T_Enumerator_UnityEngine_ModifiableContactPair__MoveNext, (NativeArray_1_T_Enumerator_UnityEngine_ModifiableContactPair___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_UnityEngine_ModifiableContactPair__Reset, (NativeArray_1_T_Enumerator_UnityEngine_ModifiableContactPair___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143A390, Object *, NativeArray_1_T_Enumerator_UnityEngine_ModifiableContactPair__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_UnityEngine_ModifiableContactPair___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143A350, ModifiableContactPair, NativeArray_1_T_Enumerator_UnityEngine_ModifiableContactPair__get_Current, (NativeArray_1_T_Enumerator_UnityEngine_ModifiableContactPair___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_NameAndParameters___ctor, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_NameAndParameters___Boxed * __this, List_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_NameAndParameters__Dispose, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_NameAndParameters___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01435020, bool, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_NameAndParameters__MoveNext, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_NameAndParameters___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_NameAndParameters__MoveNextRare, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_NameAndParameters___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_NameAndParameters__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_NameAndParameters___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_NameAndParameters__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_NameAndParameters___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, NameAndParameters, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_NameAndParameters__get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_NameAndParameters___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143CB60, void, ReadOnlyArray_1_TValue_Enumerator_NameAndParameters___ctor, (ReadOnlyArray_1_TValue_Enumerator_NameAndParameters___Boxed * __this, NameAndParameters__Array * array, int32_t index, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, ReadOnlyArray_1_TValue_Enumerator_NameAndParameters__Dispose, (ReadOnlyArray_1_TValue_Enumerator_NameAndParameters___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143CBD0, bool, ReadOnlyArray_1_TValue_Enumerator_NameAndParameters__MoveNext, (ReadOnlyArray_1_TValue_Enumerator_NameAndParameters___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143CBF0, void, ReadOnlyArray_1_TValue_Enumerator_NameAndParameters__Reset, (ReadOnlyArray_1_TValue_Enumerator_NameAndParameters___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143F8B0, Object *, ReadOnlyArray_1_TValue_Enumerator_NameAndParameters__System_Collections_IEnumerator_get_Current, (ReadOnlyArray_1_TValue_Enumerator_NameAndParameters___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143F800, NameAndParameters, ReadOnlyArray_1_TValue_Enumerator_NameAndParameters__get_Current, (ReadOnlyArray_1_TValue_Enumerator_NameAndParameters___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_NamedValue___ctor, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_NamedValue___Boxed * __this, List_1_UnityEngine_InputSystem_Utilities_NamedValue_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_NamedValue__Dispose, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_NamedValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01435020, bool, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_NamedValue__MoveNext, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_NamedValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_NamedValue__MoveNextRare, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_NamedValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_NamedValue__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_NamedValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_NamedValue__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_NamedValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, NamedValue, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_NamedValue__get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_NamedValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143CB60, void, ReadOnlyArray_1_TValue_Enumerator_NamedValue___ctor, (ReadOnlyArray_1_TValue_Enumerator_NamedValue___Boxed * __this, NamedValue__Array * array, int32_t index, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, ReadOnlyArray_1_TValue_Enumerator_NamedValue__Dispose, (ReadOnlyArray_1_TValue_Enumerator_NamedValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143CBD0, bool, ReadOnlyArray_1_TValue_Enumerator_NamedValue__MoveNext, (ReadOnlyArray_1_TValue_Enumerator_NamedValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143CBF0, void, ReadOnlyArray_1_TValue_Enumerator_NamedValue__Reset, (ReadOnlyArray_1_TValue_Enumerator_NamedValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143F9F0, Object *, ReadOnlyArray_1_TValue_Enumerator_NamedValue__System_Collections_IEnumerator_get_Current, (ReadOnlyArray_1_TValue_Enumerator_NamedValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143F940, NamedValue, ReadOnlyArray_1_TValue_Enumerator_NamedValue__get_Current, (ReadOnlyArray_1_TValue_Enumerator_NamedValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143FA80, void, NativeArray_1_T_Enumerator_Microsoft_MixedReality_OpenXR_NativeAnchor___ctor, (NativeArray_1_T_Enumerator_Microsoft_MixedReality_OpenXR_NativeAnchor___Boxed * __this, NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor_ array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_Microsoft_MixedReality_OpenXR_NativeAnchor__Dispose, (NativeArray_1_T_Enumerator_Microsoft_MixedReality_OpenXR_NativeAnchor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143FAB0, bool, NativeArray_1_T_Enumerator_Microsoft_MixedReality_OpenXR_NativeAnchor__MoveNext, (NativeArray_1_T_Enumerator_Microsoft_MixedReality_OpenXR_NativeAnchor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_Microsoft_MixedReality_OpenXR_NativeAnchor__Reset, (NativeArray_1_T_Enumerator_Microsoft_MixedReality_OpenXR_NativeAnchor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143FBD0, Object *, NativeArray_1_T_Enumerator_Microsoft_MixedReality_OpenXR_NativeAnchor__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_Microsoft_MixedReality_OpenXR_NativeAnchor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143FBA0, NativeAnchor, NativeArray_1_T_Enumerator_Microsoft_MixedReality_OpenXR_NativeAnchor__get_Current, (NativeArray_1_T_Enumerator_Microsoft_MixedReality_OpenXR_NativeAnchor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143FC70, void, NativeArray_1_T_Enumerator_Microsoft_MixedReality_OpenXR_NativePlane___ctor, (NativeArray_1_T_Enumerator_Microsoft_MixedReality_OpenXR_NativePlane___Boxed * __this, NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane_ array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_Microsoft_MixedReality_OpenXR_NativePlane__Dispose, (NativeArray_1_T_Enumerator_Microsoft_MixedReality_OpenXR_NativePlane___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143FCA0, bool, NativeArray_1_T_Enumerator_Microsoft_MixedReality_OpenXR_NativePlane__MoveNext, (NativeArray_1_T_Enumerator_Microsoft_MixedReality_OpenXR_NativePlane___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_Microsoft_MixedReality_OpenXR_NativePlane__Reset, (NativeArray_1_T_Enumerator_Microsoft_MixedReality_OpenXR_NativePlane___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143FDC0, Object *, NativeArray_1_T_Enumerator_Microsoft_MixedReality_OpenXR_NativePlane__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_Microsoft_MixedReality_OpenXR_NativePlane___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143FD90, NativePlane, NativeArray_1_T_Enumerator_Microsoft_MixedReality_OpenXR_NativePlane__get_Current, (NativeArray_1_T_Enumerator_Microsoft_MixedReality_OpenXR_NativePlane___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01204700, void, HashSet_1_T_Enumerator_Photon_Bolt_NetworkId___ctor, (HashSet_1_T_Enumerator_Photon_Bolt_NetworkId___Boxed * __this, HashSet_1_Photon_Bolt_NetworkId_ * set, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, HashSet_1_T_Enumerator_Photon_Bolt_NetworkId__Dispose, (HashSet_1_T_Enumerator_Photon_Bolt_NetworkId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143FE60, bool, HashSet_1_T_Enumerator_Photon_Bolt_NetworkId__MoveNext, (HashSet_1_T_Enumerator_Photon_Bolt_NetworkId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01440040, void, HashSet_1_T_Enumerator_Photon_Bolt_NetworkId__System_Collections_IEnumerator_Reset, (HashSet_1_T_Enumerator_Photon_Bolt_NetworkId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143FF50, Object *, HashSet_1_T_Enumerator_Photon_Bolt_NetworkId__System_Collections_IEnumerator_get_Current, (HashSet_1_T_Enumerator_Photon_Bolt_NetworkId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, NetworkId, HashSet_1_T_Enumerator_Photon_Bolt_NetworkId__get_Current, (HashSet_1_T_Enumerator_Photon_Bolt_NetworkId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341F0, void, List_1_T_Enumerator_Photon_Bolt_NetworkPropertyInfo___ctor, (List_1_T_Enumerator_Photon_Bolt_NetworkPropertyInfo___Boxed * __this, List_1_Photon_Bolt_NetworkPropertyInfo_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Photon_Bolt_NetworkPropertyInfo__Dispose, (List_1_T_Enumerator_Photon_Bolt_NetworkPropertyInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434270, bool, List_1_T_Enumerator_Photon_Bolt_NetworkPropertyInfo__MoveNext, (List_1_T_Enumerator_Photon_Bolt_NetworkPropertyInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434370, bool, List_1_T_Enumerator_Photon_Bolt_NetworkPropertyInfo__MoveNextRare, (List_1_T_Enumerator_Photon_Bolt_NetworkPropertyInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434460, void, List_1_T_Enumerator_Photon_Bolt_NetworkPropertyInfo__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Photon_Bolt_NetworkPropertyInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014343B0, Object *, List_1_T_Enumerator_Photon_Bolt_NetworkPropertyInfo__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Photon_Bolt_NetworkPropertyInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01204560, NetworkPropertyInfo, List_1_T_Enumerator_Photon_Bolt_NetworkPropertyInfo__get_Current, (List_1_T_Enumerator_Photon_Bolt_NetworkPropertyInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143A450, void, ArraySegment_1_T_Enumerator_Object___ctor, (ArraySegment_1_T_Enumerator_Object___Boxed * __this, ArraySegment_1_Object_ arraySegment, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, ArraySegment_1_T_Enumerator_Object__Dispose, (ArraySegment_1_T_Enumerator_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143A590, bool, ArraySegment_1_T_Enumerator_Object__MoveNext, (ArraySegment_1_T_Enumerator_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143A6C0, void, ArraySegment_1_T_Enumerator_Object__System_Collections_IEnumerator_Reset, (ArraySegment_1_T_Enumerator_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01440120, Object *, ArraySegment_1_T_Enumerator_Object__System_Collections_IEnumerator_get_Current, (ArraySegment_1_T_Enumerator_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014400D0, Object *, ArraySegment_1_T_Enumerator_Object__get_Current, (ArraySegment_1_T_Enumerator_Object___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, InlinedArray_1_TValue_Enumerator_System_Int32__Dispose, (InlinedArray_1_TValue_Enumerator_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143DC40, bool, InlinedArray_1_TValue_Enumerator_System_Int32__MoveNext, (InlinedArray_1_TValue_Enumerator_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439B10, void, InlinedArray_1_TValue_Enumerator_System_Int32__Reset, (InlinedArray_1_TValue_Enumerator_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143DCA0, Object *, InlinedArray_1_TValue_Enumerator_System_Int32__System_Collections_IEnumerator_get_Current, (InlinedArray_1_TValue_Enumerator_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143DC60, int32_t, InlinedArray_1_TValue_Enumerator_System_Int32__get_Current, (InlinedArray_1_TValue_Enumerator_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143AF80, void, List_1_T_Enumerator_System_Int32___ctor, (List_1_T_Enumerator_System_Int32_ * __this, List_1_System_Int32_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_Int32__Dispose, (List_1_T_Enumerator_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF7C0, List_1_T_Enumerator_System_Int32__Dispose__MethodInfo); +DO_APP_FUNC(0x0143B000, bool, List_1_T_Enumerator_System_Int32__MoveNext, (List_1_T_Enumerator_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF7B0, List_1_T_Enumerator_System_Int32__MoveNext__MethodInfo); +DO_APP_FUNC(0x0143B0A0, bool, List_1_T_Enumerator_System_Int32__MoveNextRare, (List_1_T_Enumerator_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143B180, void, List_1_T_Enumerator_System_Int32__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143B0E0, Object *, List_1_T_Enumerator_System_Int32__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, int32_t, List_1_T_Enumerator_System_Int32__get_Current, (List_1_T_Enumerator_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF7A0, List_1_T_Enumerator_System_Int32__get_Current__MethodInfo); +DO_APP_FUNC(0x0143B1C0, void, NativeArray_1_T_Enumerator_System_Int32___ctor, (NativeArray_1_T_Enumerator_System_Int32_ * __this, NativeArray_1_System_Int32_ * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_System_Int32__Dispose, (NativeArray_1_T_Enumerator_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143B1E0, bool, NativeArray_1_T_Enumerator_System_Int32__MoveNext, (NativeArray_1_T_Enumerator_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_System_Int32__Reset, (NativeArray_1_T_Enumerator_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143B2A0, Object *, NativeArray_1_T_Enumerator_System_Int32__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143B290, int32_t, NativeArray_1_T_Enumerator_System_Int32__get_Current, (NativeArray_1_T_Enumerator_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143DD50, void, Queue_1_T_Enumerator_System_Int32___ctor, (Queue_1_T_Enumerator_System_Int32_ * __this, Queue_1_System_Int32_ * q, MethodInfo * method)); +DO_APP_FUNC(0x0143DDD0, void, Queue_1_T_Enumerator_System_Int32__Dispose, (Queue_1_T_Enumerator_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143DDE0, bool, Queue_1_T_Enumerator_System_Int32__MoveNext, (Queue_1_T_Enumerator_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D358, Queue_1_T_Enumerator_System_Int32__MoveNext__MethodInfo); +DO_APP_FUNC(0x0143E030, void, Queue_1_T_Enumerator_System_Int32__System_Collections_IEnumerator_Reset, (Queue_1_T_Enumerator_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D348, Queue_1_T_Enumerator_System_Int32__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x0143DF80, Object *, Queue_1_T_Enumerator_System_Int32__System_Collections_IEnumerator_get_Current, (Queue_1_T_Enumerator_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143DF10, void, Queue_1_T_Enumerator_System_Int32__ThrowEnumerationNotStartedOrEnded, (Queue_1_T_Enumerator_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D350, Queue_1_T_Enumerator_System_Int32__ThrowEnumerationNotStartedOrEnded__MethodInfo); +DO_APP_FUNC(0x0143DED0, int32_t, Queue_1_T_Enumerator_System_Int32__get_Current, (Queue_1_T_Enumerator_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143E0C0, void, Stack_1_T_Enumerator_System_Int32___ctor, (Stack_1_T_Enumerator_System_Int32_ * __this, Stack_1_System_Int32_ * stack, MethodInfo * method)); +DO_APP_FUNC(0x01436E20, void, Stack_1_T_Enumerator_System_Int32__Dispose, (Stack_1_T_Enumerator_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143E140, bool, Stack_1_T_Enumerator_System_Int32__MoveNext, (Stack_1_T_Enumerator_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D340, Stack_1_T_Enumerator_System_Int32__MoveNext__MethodInfo); +DO_APP_FUNC(0x0143E3D0, void, Stack_1_T_Enumerator_System_Int32__System_Collections_IEnumerator_Reset, (Stack_1_T_Enumerator_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D3E0, Stack_1_T_Enumerator_System_Int32__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x0143E320, Object *, Stack_1_T_Enumerator_System_Int32__System_Collections_IEnumerator_get_Current, (Stack_1_T_Enumerator_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143E2B0, void, Stack_1_T_Enumerator_System_Int32__ThrowEnumerationNotStartedOrEnded, (Stack_1_T_Enumerator_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D3E8, Stack_1_T_Enumerator_System_Int32__ThrowEnumerationNotStartedOrEnded__MethodInfo); +DO_APP_FUNC(0x0143E270, int32_t, Stack_1_T_Enumerator_System_Int32__get_Current, (Stack_1_T_Enumerator_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143D950, void, HashSet_1_T_Enumerator_System_Int32Enum___ctor, (HashSet_1_T_Enumerator_System_Int32Enum_ * __this, HashSet_1_System_Int32Enum_ * set, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, HashSet_1_T_Enumerator_System_Int32Enum__Dispose, (HashSet_1_T_Enumerator_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143E460, bool, HashSet_1_T_Enumerator_System_Int32Enum__MoveNext, (HashSet_1_T_Enumerator_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D3C8, HashSet_1_T_Enumerator_System_Int32Enum__MoveNext__MethodInfo); +DO_APP_FUNC(0x0143E640, void, HashSet_1_T_Enumerator_System_Int32Enum__System_Collections_IEnumerator_Reset, (HashSet_1_T_Enumerator_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D3B0, HashSet_1_T_Enumerator_System_Int32Enum__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x0143E550, Object *, HashSet_1_T_Enumerator_System_Int32Enum__System_Collections_IEnumerator_get_Current, (HashSet_1_T_Enumerator_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D3B8, HashSet_1_T_Enumerator_System_Int32Enum__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x003BCD50, Int32Enum__Enum, HashSet_1_T_Enumerator_System_Int32Enum__get_Current, (HashSet_1_T_Enumerator_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143AF80, void, List_1_T_Enumerator_System_Int32Enum___ctor, (List_1_T_Enumerator_System_Int32Enum_ * __this, List_1_System_Int32Enum_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_Int32Enum__Dispose, (List_1_T_Enumerator_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143B000, bool, List_1_T_Enumerator_System_Int32Enum__MoveNext, (List_1_T_Enumerator_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143B0A0, bool, List_1_T_Enumerator_System_Int32Enum__MoveNextRare, (List_1_T_Enumerator_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143B180, void, List_1_T_Enumerator_System_Int32Enum__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143B0E0, Object *, List_1_T_Enumerator_System_Int32Enum__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, Int32Enum__Enum, List_1_T_Enumerator_System_Int32Enum__get_Current, (List_1_T_Enumerator_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143E0C0, void, Stack_1_T_Enumerator_System_Int32Enum___ctor, (Stack_1_T_Enumerator_System_Int32Enum_ * __this, Stack_1_System_Int32Enum_ * stack, MethodInfo * method)); +DO_APP_FUNC(0x01436E20, void, Stack_1_T_Enumerator_System_Int32Enum__Dispose, (Stack_1_T_Enumerator_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143E6D0, bool, Stack_1_T_Enumerator_System_Int32Enum__MoveNext, (Stack_1_T_Enumerator_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D3A8, Stack_1_T_Enumerator_System_Int32Enum__MoveNext__MethodInfo); +DO_APP_FUNC(0x0143E960, void, Stack_1_T_Enumerator_System_Int32Enum__System_Collections_IEnumerator_Reset, (Stack_1_T_Enumerator_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D390, Stack_1_T_Enumerator_System_Int32Enum__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x0143E8B0, Object *, Stack_1_T_Enumerator_System_Int32Enum__System_Collections_IEnumerator_get_Current, (Stack_1_T_Enumerator_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143E840, void, Stack_1_T_Enumerator_System_Int32Enum__ThrowEnumerationNotStartedOrEnded, (Stack_1_T_Enumerator_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D3A0, Stack_1_T_Enumerator_System_Int32Enum__ThrowEnumerationNotStartedOrEnded__MethodInfo); +DO_APP_FUNC(0x0143E800, Int32Enum__Enum, Stack_1_T_Enumerator_System_Int32Enum__get_Current, (Stack_1_T_Enumerator_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434DE0, void, List_1_T_Enumerator_System_Int64___ctor, (List_1_T_Enumerator_System_Int64_ * __this, List_1_System_Int64_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_Int64__Dispose, (List_1_T_Enumerator_System_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434E60, bool, List_1_T_Enumerator_System_Int64__MoveNext, (List_1_T_Enumerator_System_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434F00, bool, List_1_T_Enumerator_System_Int64__MoveNextRare, (List_1_T_Enumerator_System_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434FE0, void, List_1_T_Enumerator_System_Int64__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434F40, Object *, List_1_T_Enumerator_System_Int64__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, int64_t, List_1_T_Enumerator_System_Int64__get_Current, (List_1_T_Enumerator_System_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_Pathfinding_ClipperLib_IntPoint___ctor, (List_1_T_Enumerator_Pathfinding_ClipperLib_IntPoint_ * __this, List_1_Pathfinding_ClipperLib_IntPoint_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Pathfinding_ClipperLib_IntPoint__Dispose, (List_1_T_Enumerator_Pathfinding_ClipperLib_IntPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01437E50, bool, List_1_T_Enumerator_Pathfinding_ClipperLib_IntPoint__MoveNext, (List_1_T_Enumerator_Pathfinding_ClipperLib_IntPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_Pathfinding_ClipperLib_IntPoint__MoveNextRare, (List_1_T_Enumerator_Pathfinding_ClipperLib_IntPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_Pathfinding_ClipperLib_IntPoint__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Pathfinding_ClipperLib_IntPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_Pathfinding_ClipperLib_IntPoint__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Pathfinding_ClipperLib_IntPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, IntPoint, List_1_T_Enumerator_Pathfinding_ClipperLib_IntPoint__get_Current, (List_1_T_Enumerator_Pathfinding_ClipperLib_IntPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_Pathfinding_IntRect___ctor, (List_1_T_Enumerator_Pathfinding_IntRect_ * __this, List_1_Pathfinding_IntRect_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Pathfinding_IntRect__Dispose, (List_1_T_Enumerator_Pathfinding_IntRect_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01437E50, bool, List_1_T_Enumerator_Pathfinding_IntRect__MoveNext, (List_1_T_Enumerator_Pathfinding_IntRect_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_Pathfinding_IntRect__MoveNextRare, (List_1_T_Enumerator_Pathfinding_IntRect_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_Pathfinding_IntRect__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Pathfinding_IntRect_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_Pathfinding_IntRect__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Pathfinding_IntRect_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, IntRect, List_1_T_Enumerator_Pathfinding_IntRect__get_Current, (List_1_T_Enumerator_Pathfinding_IntRect_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01203D20, void, HashSet_1_T_Enumerator_UnityEngine_InputSystem_Utilities_InternedString___ctor, (HashSet_1_T_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_ * __this, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString_ * set, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, HashSet_1_T_Enumerator_UnityEngine_InputSystem_Utilities_InternedString__Dispose, (HashSet_1_T_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143E9F0, bool, HashSet_1_T_Enumerator_UnityEngine_InputSystem_Utilities_InternedString__MoveNext, (HashSet_1_T_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D2E8, HashSet_1_T_Enumerator_UnityEngine_InputSystem_Utilities_InternedString__MoveNext__MethodInfo); +DO_APP_FUNC(0x0143EBF0, void, HashSet_1_T_Enumerator_UnityEngine_InputSystem_Utilities_InternedString__System_Collections_IEnumerator_Reset, (HashSet_1_T_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D2D8, HashSet_1_T_Enumerator_UnityEngine_InputSystem_Utilities_InternedString__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x0143EB00, Object *, HashSet_1_T_Enumerator_UnityEngine_InputSystem_Utilities_InternedString__System_Collections_IEnumerator_get_Current, (HashSet_1_T_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D2E0, HashSet_1_T_Enumerator_UnityEngine_InputSystem_Utilities_InternedString__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x00E382E0, InternedString, HashSet_1_T_Enumerator_UnityEngine_InputSystem_Utilities_InternedString__get_Current, (HashSet_1_T_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, InlinedArray_1_TValue_Enumerator_InternedString__Dispose, (InlinedArray_1_TValue_Enumerator_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143EC80, bool, InlinedArray_1_TValue_Enumerator_InternedString__MoveNext, (InlinedArray_1_TValue_Enumerator_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x006C4180, void, InlinedArray_1_TValue_Enumerator_InternedString__Reset, (InlinedArray_1_TValue_Enumerator_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143ED00, Object *, InlinedArray_1_TValue_Enumerator_InternedString__System_Collections_IEnumerator_get_Current, (InlinedArray_1_TValue_Enumerator_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143ECA0, InternedString, InlinedArray_1_TValue_Enumerator_InternedString__get_Current, (InlinedArray_1_TValue_Enumerator_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_InternedString___ctor, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_ * __this, List_1_UnityEngine_InputSystem_Utilities_InternedString_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_InternedString__Dispose, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7E68, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_InternedString__Dispose__MethodInfo); +DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_InternedString__MoveNext, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7E18, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_InternedString__MoveNext__MethodInfo); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_InternedString__MoveNextRare, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_InternedString__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_InternedString__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, InternedString, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_InternedString__get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7E30, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_InternedString__get_Current__MethodInfo); +DO_APP_FUNC(0x0143CB60, void, ReadOnlyArray_1_TValue_Enumerator_InternedString___ctor, (ReadOnlyArray_1_TValue_Enumerator_InternedString_ * __this, InternedString__Array * array, int32_t index, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, ReadOnlyArray_1_TValue_Enumerator_InternedString__Dispose, (ReadOnlyArray_1_TValue_Enumerator_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB0D8, ReadOnlyArray_1_TValue_Enumerator_InternedString__Dispose__MethodInfo); +DO_APP_FUNC(0x0143CBD0, bool, ReadOnlyArray_1_TValue_Enumerator_InternedString__MoveNext, (ReadOnlyArray_1_TValue_Enumerator_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB0E8, ReadOnlyArray_1_TValue_Enumerator_InternedString__MoveNext__MethodInfo); +DO_APP_FUNC(0x0143CBF0, void, ReadOnlyArray_1_TValue_Enumerator_InternedString__Reset, (ReadOnlyArray_1_TValue_Enumerator_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143EE50, Object *, ReadOnlyArray_1_TValue_Enumerator_InternedString__System_Collections_IEnumerator_get_Current, (ReadOnlyArray_1_TValue_Enumerator_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143EDB0, InternedString, ReadOnlyArray_1_TValue_Enumerator_InternedString__get_Current, (ReadOnlyArray_1_TValue_Enumerator_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D2D0, ReadOnlyArray_1_TValue_Enumerator_InternedString__get_Current__MethodInfo); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_System_Linq_Expressions_Interpreter_InterpretedFrameInfo___ctor, (List_1_T_Enumerator_System_Linq_Expressions_Interpreter_InterpretedFrameInfo_ * __this, List_1_System_Linq_Expressions_Interpreter_InterpretedFrameInfo_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_Linq_Expressions_Interpreter_InterpretedFrameInfo__Dispose, (List_1_T_Enumerator_System_Linq_Expressions_Interpreter_InterpretedFrameInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_System_Linq_Expressions_Interpreter_InterpretedFrameInfo__MoveNext, (List_1_T_Enumerator_System_Linq_Expressions_Interpreter_InterpretedFrameInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_System_Linq_Expressions_Interpreter_InterpretedFrameInfo__MoveNextRare, (List_1_T_Enumerator_System_Linq_Expressions_Interpreter_InterpretedFrameInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_System_Linq_Expressions_Interpreter_InterpretedFrameInfo__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_Linq_Expressions_Interpreter_InterpretedFrameInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_System_Linq_Expressions_Interpreter_InterpretedFrameInfo__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_Linq_Expressions_Interpreter_InterpretedFrameInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, InterpretedFrameInfo, List_1_T_Enumerator_System_Linq_Expressions_Interpreter_InterpretedFrameInfo__get_Current, (List_1_T_Enumerator_System_Linq_Expressions_Interpreter_InterpretedFrameInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_UnityEngine_Timeline_IntervalTreeNode___ctor, (List_1_T_Enumerator_UnityEngine_Timeline_IntervalTreeNode_ * __this, List_1_UnityEngine_Timeline_IntervalTreeNode_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Timeline_IntervalTreeNode__Dispose, (List_1_T_Enumerator_UnityEngine_Timeline_IntervalTreeNode_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143C4B0, bool, List_1_T_Enumerator_UnityEngine_Timeline_IntervalTreeNode__MoveNext, (List_1_T_Enumerator_UnityEngine_Timeline_IntervalTreeNode_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_UnityEngine_Timeline_IntervalTreeNode__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Timeline_IntervalTreeNode_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_UnityEngine_Timeline_IntervalTreeNode__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Timeline_IntervalTreeNode_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_UnityEngine_Timeline_IntervalTreeNode__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Timeline_IntervalTreeNode_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, IntervalTreeNode, List_1_T_Enumerator_UnityEngine_Timeline_IntervalTreeNode__get_Current, (List_1_T_Enumerator_UnityEngine_Timeline_IntervalTreeNode_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount___ctor, (List_1_T_Enumerator_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount_ * __this, List_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount__Dispose, (List_1_T_Enumerator_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01435020, bool, List_1_T_Enumerator_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount__MoveNext, (List_1_T_Enumerator_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount__MoveNextRare, (List_1_T_Enumerator_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, ItemDefinitionAmount, List_1_T_Enumerator_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount__get_Current, (List_1_T_Enumerator_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_KickedPlayer___ctor, (List_1_T_Enumerator_KickedPlayer_ * __this, List_1_KickedPlayer_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_KickedPlayer__Dispose, (List_1_T_Enumerator_KickedPlayer_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434850, bool, List_1_T_Enumerator_KickedPlayer__MoveNext, (List_1_T_Enumerator_KickedPlayer_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_KickedPlayer__MoveNextRare, (List_1_T_Enumerator_KickedPlayer_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_KickedPlayer__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_KickedPlayer_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_KickedPlayer__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_KickedPlayer_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, KickedPlayer, List_1_T_Enumerator_KickedPlayer__get_Current, (List_1_T_Enumerator_KickedPlayer_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143AF80, void, List_1_T_Enumerator_UnityEngine_LayerMask___ctor, (List_1_T_Enumerator_UnityEngine_LayerMask_ * __this, List_1_UnityEngine_LayerMask_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_LayerMask__Dispose, (List_1_T_Enumerator_UnityEngine_LayerMask_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143B000, bool, List_1_T_Enumerator_UnityEngine_LayerMask__MoveNext, (List_1_T_Enumerator_UnityEngine_LayerMask_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143B0A0, bool, List_1_T_Enumerator_UnityEngine_LayerMask__MoveNextRare, (List_1_T_Enumerator_UnityEngine_LayerMask_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143B180, void, List_1_T_Enumerator_UnityEngine_LayerMask__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_LayerMask_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143B0E0, Object *, List_1_T_Enumerator_UnityEngine_LayerMask__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_LayerMask_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, LayerMask, List_1_T_Enumerator_UnityEngine_LayerMask__get_Current, (List_1_T_Enumerator_UnityEngine_LayerMask_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143EED0, void, NativeArray_1_T_Enumerator_UnityEngine_Experimental_GlobalIllumination_LightDataGI___ctor, (NativeArray_1_T_Enumerator_UnityEngine_Experimental_GlobalIllumination_LightDataGI_ * __this, NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI_ * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_UnityEngine_Experimental_GlobalIllumination_LightDataGI__Dispose, (NativeArray_1_T_Enumerator_UnityEngine_Experimental_GlobalIllumination_LightDataGI_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143EF00, bool, NativeArray_1_T_Enumerator_UnityEngine_Experimental_GlobalIllumination_LightDataGI__MoveNext, (NativeArray_1_T_Enumerator_UnityEngine_Experimental_GlobalIllumination_LightDataGI_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_UnityEngine_Experimental_GlobalIllumination_LightDataGI__Reset, (NativeArray_1_T_Enumerator_UnityEngine_Experimental_GlobalIllumination_LightDataGI_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143F040, Object *, NativeArray_1_T_Enumerator_UnityEngine_Experimental_GlobalIllumination_LightDataGI__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_UnityEngine_Experimental_GlobalIllumination_LightDataGI_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143F000, LightDataGI, NativeArray_1_T_Enumerator_UnityEngine_Experimental_GlobalIllumination_LightDataGI__get_Current, (NativeArray_1_T_Enumerator_UnityEngine_Experimental_GlobalIllumination_LightDataGI_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01437EF0, void, List_1_T_Enumerator_UnityEngine_UIElements_ManipulatorActivationFilter___ctor, (List_1_T_Enumerator_UnityEngine_UIElements_ManipulatorActivationFilter_ * __this, List_1_UnityEngine_UIElements_ManipulatorActivationFilter_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIElements_ManipulatorActivationFilter__Dispose, (List_1_T_Enumerator_UnityEngine_UIElements_ManipulatorActivationFilter_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD27F0, List_1_T_Enumerator_UnityEngine_UIElements_ManipulatorActivationFilter__Dispose__MethodInfo); +DO_APP_FUNC(0x01437F70, bool, List_1_T_Enumerator_UnityEngine_UIElements_ManipulatorActivationFilter__MoveNext, (List_1_T_Enumerator_UnityEngine_UIElements_ManipulatorActivationFilter_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD27E8, List_1_T_Enumerator_UnityEngine_UIElements_ManipulatorActivationFilter__MoveNext__MethodInfo); +DO_APP_FUNC(0x01438020, bool, List_1_T_Enumerator_UnityEngine_UIElements_ManipulatorActivationFilter__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIElements_ManipulatorActivationFilter_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438110, void, List_1_T_Enumerator_UnityEngine_UIElements_ManipulatorActivationFilter__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIElements_ManipulatorActivationFilter_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438060, Object *, List_1_T_Enumerator_UnityEngine_UIElements_ManipulatorActivationFilter__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_ManipulatorActivationFilter_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C39A10, ManipulatorActivationFilter, List_1_T_Enumerator_UnityEngine_UIElements_ManipulatorActivationFilter__get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_ManipulatorActivationFilter_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD27D8, List_1_T_Enumerator_UnityEngine_UIElements_ManipulatorActivationFilter__get_Current__MethodInfo); +DO_APP_FUNC(0x0143F0F0, void, List_1_T_Enumerator_UnityEngine_Matrix4x4___ctor, (List_1_T_Enumerator_UnityEngine_Matrix4x4_ * __this, List_1_UnityEngine_Matrix4x4_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Matrix4x4__Dispose, (List_1_T_Enumerator_UnityEngine_Matrix4x4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143F180, bool, List_1_T_Enumerator_UnityEngine_Matrix4x4__MoveNext, (List_1_T_Enumerator_UnityEngine_Matrix4x4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143F250, bool, List_1_T_Enumerator_UnityEngine_Matrix4x4__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Matrix4x4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143F390, void, List_1_T_Enumerator_UnityEngine_Matrix4x4__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Matrix4x4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143F2D0, Object *, List_1_T_Enumerator_UnityEngine_Matrix4x4__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Matrix4x4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143F2A0, Matrix4x4, List_1_T_Enumerator_UnityEngine_Matrix4x4__get_Current, (List_1_T_Enumerator_UnityEngine_Matrix4x4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143F3E0, void, Stack_1_T_Enumerator_UnityEngine_Matrix4x4___ctor, (Stack_1_T_Enumerator_UnityEngine_Matrix4x4_ * __this, Stack_1_UnityEngine_Matrix4x4_ * stack, MethodInfo * method)); +DO_APP_FUNC(0x01436E20, void, Stack_1_T_Enumerator_UnityEngine_Matrix4x4__Dispose, (Stack_1_T_Enumerator_UnityEngine_Matrix4x4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143F470, bool, Stack_1_T_Enumerator_UnityEngine_Matrix4x4__MoveNext, (Stack_1_T_Enumerator_UnityEngine_Matrix4x4_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D2C8, Stack_1_T_Enumerator_UnityEngine_Matrix4x4__MoveNext__MethodInfo); +DO_APP_FUNC(0x0143F760, void, Stack_1_T_Enumerator_UnityEngine_Matrix4x4__System_Collections_IEnumerator_Reset, (Stack_1_T_Enumerator_UnityEngine_Matrix4x4_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D2B8, Stack_1_T_Enumerator_UnityEngine_Matrix4x4__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x0143F690, Object *, Stack_1_T_Enumerator_UnityEngine_Matrix4x4__System_Collections_IEnumerator_get_Current, (Stack_1_T_Enumerator_UnityEngine_Matrix4x4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143F620, void, Stack_1_T_Enumerator_UnityEngine_Matrix4x4__ThrowEnumerationNotStartedOrEnded, (Stack_1_T_Enumerator_UnityEngine_Matrix4x4_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D2C0, Stack_1_T_Enumerator_UnityEngine_Matrix4x4__ThrowEnumerationNotStartedOrEnded__MethodInfo); +DO_APP_FUNC(0x0143F5C0, Matrix4x4, Stack_1_T_Enumerator_UnityEngine_Matrix4x4__get_Current, (Stack_1_T_Enumerator_UnityEngine_Matrix4x4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143A200, void, NativeArray_1_T_Enumerator_UnityEngine_ModifiableContactPair___ctor, (NativeArray_1_T_Enumerator_UnityEngine_ModifiableContactPair_ * __this, NativeArray_1_UnityEngine_ModifiableContactPair_ * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_UnityEngine_ModifiableContactPair__Dispose, (NativeArray_1_T_Enumerator_UnityEngine_ModifiableContactPair_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143A230, bool, NativeArray_1_T_Enumerator_UnityEngine_ModifiableContactPair__MoveNext, (NativeArray_1_T_Enumerator_UnityEngine_ModifiableContactPair_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_UnityEngine_ModifiableContactPair__Reset, (NativeArray_1_T_Enumerator_UnityEngine_ModifiableContactPair_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143A390, Object *, NativeArray_1_T_Enumerator_UnityEngine_ModifiableContactPair__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_UnityEngine_ModifiableContactPair_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143A350, ModifiableContactPair, NativeArray_1_T_Enumerator_UnityEngine_ModifiableContactPair__get_Current, (NativeArray_1_T_Enumerator_UnityEngine_ModifiableContactPair_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_NameAndParameters___ctor, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_NameAndParameters_ * __this, List_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_NameAndParameters__Dispose, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_NameAndParameters_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01435020, bool, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_NameAndParameters__MoveNext, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_NameAndParameters_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_NameAndParameters__MoveNextRare, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_NameAndParameters_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_NameAndParameters__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_NameAndParameters_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_NameAndParameters__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_NameAndParameters_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, NameAndParameters, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_NameAndParameters__get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_NameAndParameters_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143CB60, void, ReadOnlyArray_1_TValue_Enumerator_NameAndParameters___ctor, (ReadOnlyArray_1_TValue_Enumerator_NameAndParameters_ * __this, NameAndParameters__Array * array, int32_t index, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, ReadOnlyArray_1_TValue_Enumerator_NameAndParameters__Dispose, (ReadOnlyArray_1_TValue_Enumerator_NameAndParameters_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143CBD0, bool, ReadOnlyArray_1_TValue_Enumerator_NameAndParameters__MoveNext, (ReadOnlyArray_1_TValue_Enumerator_NameAndParameters_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143CBF0, void, ReadOnlyArray_1_TValue_Enumerator_NameAndParameters__Reset, (ReadOnlyArray_1_TValue_Enumerator_NameAndParameters_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143F8B0, Object *, ReadOnlyArray_1_TValue_Enumerator_NameAndParameters__System_Collections_IEnumerator_get_Current, (ReadOnlyArray_1_TValue_Enumerator_NameAndParameters_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143F800, NameAndParameters, ReadOnlyArray_1_TValue_Enumerator_NameAndParameters__get_Current, (ReadOnlyArray_1_TValue_Enumerator_NameAndParameters_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D2A8, ReadOnlyArray_1_TValue_Enumerator_NameAndParameters__get_Current__MethodInfo); +DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_NamedValue___ctor, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_NamedValue_ * __this, List_1_UnityEngine_InputSystem_Utilities_NamedValue_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_NamedValue__Dispose, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_NamedValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01435020, bool, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_NamedValue__MoveNext, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_NamedValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_NamedValue__MoveNextRare, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_NamedValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_NamedValue__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_NamedValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_NamedValue__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_NamedValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, NamedValue, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_NamedValue__get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_NamedValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143CB60, void, ReadOnlyArray_1_TValue_Enumerator_NamedValue___ctor, (ReadOnlyArray_1_TValue_Enumerator_NamedValue_ * __this, NamedValue__Array * array, int32_t index, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, ReadOnlyArray_1_TValue_Enumerator_NamedValue__Dispose, (ReadOnlyArray_1_TValue_Enumerator_NamedValue_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8008, ReadOnlyArray_1_TValue_Enumerator_NamedValue__Dispose__MethodInfo); +DO_APP_FUNC(0x0143CBD0, bool, ReadOnlyArray_1_TValue_Enumerator_NamedValue__MoveNext, (ReadOnlyArray_1_TValue_Enumerator_NamedValue_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8020, ReadOnlyArray_1_TValue_Enumerator_NamedValue__MoveNext__MethodInfo); +DO_APP_FUNC(0x0143CBF0, void, ReadOnlyArray_1_TValue_Enumerator_NamedValue__Reset, (ReadOnlyArray_1_TValue_Enumerator_NamedValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143F9F0, Object *, ReadOnlyArray_1_TValue_Enumerator_NamedValue__System_Collections_IEnumerator_get_Current, (ReadOnlyArray_1_TValue_Enumerator_NamedValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143F940, NamedValue, ReadOnlyArray_1_TValue_Enumerator_NamedValue__get_Current, (ReadOnlyArray_1_TValue_Enumerator_NamedValue_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D338, ReadOnlyArray_1_TValue_Enumerator_NamedValue__get_Current__MethodInfo); +DO_APP_FUNC(0x0143FA80, void, NativeArray_1_T_Enumerator_Microsoft_MixedReality_OpenXR_NativeAnchor___ctor, (NativeArray_1_T_Enumerator_Microsoft_MixedReality_OpenXR_NativeAnchor_ * __this, NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor_ * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_Microsoft_MixedReality_OpenXR_NativeAnchor__Dispose, (NativeArray_1_T_Enumerator_Microsoft_MixedReality_OpenXR_NativeAnchor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143FAB0, bool, NativeArray_1_T_Enumerator_Microsoft_MixedReality_OpenXR_NativeAnchor__MoveNext, (NativeArray_1_T_Enumerator_Microsoft_MixedReality_OpenXR_NativeAnchor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_Microsoft_MixedReality_OpenXR_NativeAnchor__Reset, (NativeArray_1_T_Enumerator_Microsoft_MixedReality_OpenXR_NativeAnchor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143FBD0, Object *, NativeArray_1_T_Enumerator_Microsoft_MixedReality_OpenXR_NativeAnchor__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_Microsoft_MixedReality_OpenXR_NativeAnchor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143FBA0, NativeAnchor, NativeArray_1_T_Enumerator_Microsoft_MixedReality_OpenXR_NativeAnchor__get_Current, (NativeArray_1_T_Enumerator_Microsoft_MixedReality_OpenXR_NativeAnchor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143FC70, void, NativeArray_1_T_Enumerator_Microsoft_MixedReality_OpenXR_NativePlane___ctor, (NativeArray_1_T_Enumerator_Microsoft_MixedReality_OpenXR_NativePlane_ * __this, NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane_ * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_Microsoft_MixedReality_OpenXR_NativePlane__Dispose, (NativeArray_1_T_Enumerator_Microsoft_MixedReality_OpenXR_NativePlane_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143FCA0, bool, NativeArray_1_T_Enumerator_Microsoft_MixedReality_OpenXR_NativePlane__MoveNext, (NativeArray_1_T_Enumerator_Microsoft_MixedReality_OpenXR_NativePlane_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_Microsoft_MixedReality_OpenXR_NativePlane__Reset, (NativeArray_1_T_Enumerator_Microsoft_MixedReality_OpenXR_NativePlane_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143FDC0, Object *, NativeArray_1_T_Enumerator_Microsoft_MixedReality_OpenXR_NativePlane__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_Microsoft_MixedReality_OpenXR_NativePlane_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143FD90, NativePlane, NativeArray_1_T_Enumerator_Microsoft_MixedReality_OpenXR_NativePlane__get_Current, (NativeArray_1_T_Enumerator_Microsoft_MixedReality_OpenXR_NativePlane_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01204700, void, HashSet_1_T_Enumerator_Photon_Bolt_NetworkId___ctor, (HashSet_1_T_Enumerator_Photon_Bolt_NetworkId_ * __this, HashSet_1_Photon_Bolt_NetworkId_ * set, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, HashSet_1_T_Enumerator_Photon_Bolt_NetworkId__Dispose, (HashSet_1_T_Enumerator_Photon_Bolt_NetworkId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143FE60, bool, HashSet_1_T_Enumerator_Photon_Bolt_NetworkId__MoveNext, (HashSet_1_T_Enumerator_Photon_Bolt_NetworkId_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D330, HashSet_1_T_Enumerator_Photon_Bolt_NetworkId__MoveNext__MethodInfo); +DO_APP_FUNC(0x01440040, void, HashSet_1_T_Enumerator_Photon_Bolt_NetworkId__System_Collections_IEnumerator_Reset, (HashSet_1_T_Enumerator_Photon_Bolt_NetworkId_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D318, HashSet_1_T_Enumerator_Photon_Bolt_NetworkId__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x0143FF50, Object *, HashSet_1_T_Enumerator_Photon_Bolt_NetworkId__System_Collections_IEnumerator_get_Current, (HashSet_1_T_Enumerator_Photon_Bolt_NetworkId_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D328, HashSet_1_T_Enumerator_Photon_Bolt_NetworkId__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x003BB3C0, NetworkId, HashSet_1_T_Enumerator_Photon_Bolt_NetworkId__get_Current, (HashSet_1_T_Enumerator_Photon_Bolt_NetworkId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341F0, void, List_1_T_Enumerator_Photon_Bolt_NetworkPropertyInfo___ctor, (List_1_T_Enumerator_Photon_Bolt_NetworkPropertyInfo_ * __this, List_1_Photon_Bolt_NetworkPropertyInfo_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Photon_Bolt_NetworkPropertyInfo__Dispose, (List_1_T_Enumerator_Photon_Bolt_NetworkPropertyInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434270, bool, List_1_T_Enumerator_Photon_Bolt_NetworkPropertyInfo__MoveNext, (List_1_T_Enumerator_Photon_Bolt_NetworkPropertyInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434370, bool, List_1_T_Enumerator_Photon_Bolt_NetworkPropertyInfo__MoveNextRare, (List_1_T_Enumerator_Photon_Bolt_NetworkPropertyInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434460, void, List_1_T_Enumerator_Photon_Bolt_NetworkPropertyInfo__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Photon_Bolt_NetworkPropertyInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014343B0, Object *, List_1_T_Enumerator_Photon_Bolt_NetworkPropertyInfo__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Photon_Bolt_NetworkPropertyInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01204560, NetworkPropertyInfo, List_1_T_Enumerator_Photon_Bolt_NetworkPropertyInfo__get_Current, (List_1_T_Enumerator_Photon_Bolt_NetworkPropertyInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143A450, void, ArraySegment_1_T_Enumerator_Object___ctor, (ArraySegment_1_T_Enumerator_Object_ * __this, ArraySegment_1_Object_ arraySegment, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, ArraySegment_1_T_Enumerator_Object__Dispose, (ArraySegment_1_T_Enumerator_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143A590, bool, ArraySegment_1_T_Enumerator_Object__MoveNext, (ArraySegment_1_T_Enumerator_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143A6C0, void, ArraySegment_1_T_Enumerator_Object__System_Collections_IEnumerator_Reset, (ArraySegment_1_T_Enumerator_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01440120, Object *, ArraySegment_1_T_Enumerator_Object__System_Collections_IEnumerator_get_Current, (ArraySegment_1_T_Enumerator_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014400D0, Object *, ArraySegment_1_T_Enumerator_Object__get_Current, (ArraySegment_1_T_Enumerator_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, ConcurrentBag_1_T_Enumerator_System_Object___ctor, (ConcurrentBag_1_T_Enumerator_System_Object_ * __this, Object__Array * array, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ConcurrentBag_1_T_Enumerator_System_Object__Dispose, (ConcurrentBag_1_T_Enumerator_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01440190, bool, ConcurrentBag_1_T_Enumerator_System_Object__MoveNext, (ConcurrentBag_1_T_Enumerator_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014402F0, void, ConcurrentBag_1_T_Enumerator_System_Object__Reset, (ConcurrentBag_1_T_Enumerator_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01440240, Object *, ConcurrentBag_1_T_Enumerator_System_Object__System_Collections_IEnumerator_get_Current, (ConcurrentBag_1_T_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D310, ConcurrentBag_1_T_Enumerator_System_Object__System_Collections_IEnumerator_get_Current__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, ConcurrentBag_1_T_Enumerator_System_Object__get_Current, (ConcurrentBag_1_T_Enumerator_System_Object_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x01204700, void, HashSet_1_T_Enumerator_System_Object___ctor, (HashSet_1_T_Enumerator_System_Object___Boxed * __this, HashSet_1_System_Object_ * set, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, HashSet_1_T_Enumerator_System_Object__Dispose, (HashSet_1_T_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01440300, bool, HashSet_1_T_Enumerator_System_Object__MoveNext, (HashSet_1_T_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014404A0, void, HashSet_1_T_Enumerator_System_Object__System_Collections_IEnumerator_Reset, (HashSet_1_T_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01440400, Object *, HashSet_1_T_Enumerator_System_Object__System_Collections_IEnumerator_get_Current, (HashSet_1_T_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, HashSet_1_T_Enumerator_System_Object__get_Current, (HashSet_1_T_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, InlinedArray_1_TValue_Enumerator_System_Object__Dispose, (InlinedArray_1_TValue_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434CD0, bool, InlinedArray_1_TValue_Enumerator_System_Object__MoveNext, (InlinedArray_1_TValue_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x006DDC60, void, InlinedArray_1_TValue_Enumerator_System_Object__Reset, (InlinedArray_1_TValue_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01440580, Object *, InlinedArray_1_TValue_Enumerator_System_Object__System_Collections_IEnumerator_get_Current, (InlinedArray_1_TValue_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01440530, Object *, InlinedArray_1_TValue_Enumerator_System_Object__get_Current, (InlinedArray_1_TValue_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014405F0, void, InputControlList_1_TControl_Enumerator_System_Object___ctor, (InputControlList_1_TControl_Enumerator_System_Object___Boxed * __this, InputControlList_1_System_Object_ list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, InputControlList_1_TControl_Enumerator_System_Object__Dispose, (InputControlList_1_TControl_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01440660, bool, InputControlList_1_TControl_Enumerator_System_Object__MoveNext, (InputControlList_1_TControl_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01436E20, void, InputControlList_1_TControl_Enumerator_System_Object__Reset, (InputControlList_1_TControl_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01440750, Object *, InputControlList_1_TControl_Enumerator_System_Object__System_Collections_IEnumerator_get_Current, (InputControlList_1_TControl_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01440680, Object *, InputControlList_1_TControl_Enumerator_System_Object__get_Current, (InputControlList_1_TControl_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01440790, void, LinkedList_1_T_Enumerator_System_Object___ctor, (LinkedList_1_T_Enumerator_System_Object___Boxed * __this, LinkedList_1_System_Object_ * list, MethodInfo * method)); -DO_APP_FUNC(0x01440860, void, LinkedList_1_T_Enumerator_System_Object___ctor_1, (LinkedList_1_T_Enumerator_System_Object___Boxed * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, LinkedList_1_T_Enumerator_System_Object__Dispose, (LinkedList_1_T_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014409B0, bool, LinkedList_1_T_Enumerator_System_Object__MoveNext, (LinkedList_1_T_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01440BC0, void, LinkedList_1_T_Enumerator_System_Object__System_Collections_IEnumerator_Reset, (LinkedList_1_T_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014408B0, Object *, LinkedList_1_T_Enumerator_System_Object__System_Collections_IEnumerator_get_Current, (LinkedList_1_T_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01440CF0, void, LinkedList_1_T_Enumerator_System_Object__System_Runtime_Serialization_IDeserializationCallback_OnDeserialization, (LinkedList_1_T_Enumerator_System_Object___Boxed * __this, Object * sender, MethodInfo * method)); -DO_APP_FUNC(0x01440CA0, void, LinkedList_1_T_Enumerator_System_Object__System_Runtime_Serialization_ISerializable_GetObjectData, (LinkedList_1_T_Enumerator_System_Object___Boxed * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); -DO_APP_FUNC(0x003BB3D0, Object *, LinkedList_1_T_Enumerator_System_Object__get_Current, (LinkedList_1_T_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434DE0, void, List_1_T_Enumerator_System_Object___ctor, (List_1_T_Enumerator_System_Object___Boxed * __this, List_1_System_Object_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_Object__Dispose, (List_1_T_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439BC0, bool, List_1_T_Enumerator_System_Object__MoveNext, (List_1_T_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434F00, bool, List_1_T_Enumerator_System_Object__MoveNextRare, (List_1_T_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434FE0, void, List_1_T_Enumerator_System_Object__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01440D40, Object *, List_1_T_Enumerator_System_Object__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, List_1_T_Enumerator_System_Object__get_Current, (List_1_T_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434DE0, void, LowLevelListWithIList_1_T_Enumerator_System_Object___ctor, (LowLevelListWithIList_1_T_Enumerator_System_Object___Boxed * __this, LowLevelListWithIList_1_System_Object_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, LowLevelListWithIList_1_T_Enumerator_System_Object__Dispose, (LowLevelListWithIList_1_T_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01440D90, bool, LowLevelListWithIList_1_T_Enumerator_System_Object__MoveNext, (LowLevelListWithIList_1_T_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01440E60, bool, LowLevelListWithIList_1_T_Enumerator_System_Object__MoveNextRare, (LowLevelListWithIList_1_T_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01440F70, void, LowLevelListWithIList_1_T_Enumerator_System_Object__System_Collections_IEnumerator_Reset, (LowLevelListWithIList_1_T_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01440EE0, Object *, LowLevelListWithIList_1_T_Enumerator_System_Object__System_Collections_IEnumerator_get_Current, (LowLevelListWithIList_1_T_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, LowLevelListWithIList_1_T_Enumerator_System_Object__get_Current, (LowLevelListWithIList_1_T_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143D120, void, Queue_1_T_Enumerator_System_Object___ctor, (Queue_1_T_Enumerator_System_Object___Boxed * __this, Queue_1_System_Object_ * q, MethodInfo * method)); -DO_APP_FUNC(0x0143D1A0, void, Queue_1_T_Enumerator_System_Object__Dispose, (Queue_1_T_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01440FF0, bool, Queue_1_T_Enumerator_System_Object__MoveNext, (Queue_1_T_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01441200, void, Queue_1_T_Enumerator_System_Object__System_Collections_IEnumerator_Reset, (Queue_1_T_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014411A0, Object *, Queue_1_T_Enumerator_System_Object__System_Collections_IEnumerator_get_Current, (Queue_1_T_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01441130, void, Queue_1_T_Enumerator_System_Object__ThrowEnumerationNotStartedOrEnded, (Queue_1_T_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014410F0, Object *, Queue_1_T_Enumerator_System_Object__get_Current, (Queue_1_T_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143CB60, void, ReadOnlyArray_1_TValue_Enumerator_System_Object___ctor, (ReadOnlyArray_1_TValue_Enumerator_System_Object___Boxed * __this, Object__Array * array, int32_t index, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, ReadOnlyArray_1_TValue_Enumerator_System_Object__Dispose, (ReadOnlyArray_1_TValue_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143CBD0, bool, ReadOnlyArray_1_TValue_Enumerator_System_Object__MoveNext, (ReadOnlyArray_1_TValue_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143CBF0, void, ReadOnlyArray_1_TValue_Enumerator_System_Object__Reset, (ReadOnlyArray_1_TValue_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01441320, Object *, ReadOnlyArray_1_TValue_Enumerator_System_Object__System_Collections_IEnumerator_get_Current, (ReadOnlyArray_1_TValue_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01441290, Object *, ReadOnlyArray_1_TValue_Enumerator_System_Object__get_Current, (ReadOnlyArray_1_TValue_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01204700, void, HashSet_1_T_Enumerator_System_Object___ctor, (HashSet_1_T_Enumerator_System_Object_ * __this, HashSet_1_System_Object_ * set, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, HashSet_1_T_Enumerator_System_Object__Dispose, (HashSet_1_T_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01440300, bool, HashSet_1_T_Enumerator_System_Object__MoveNext, (HashSet_1_T_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D308, HashSet_1_T_Enumerator_System_Object__MoveNext__MethodInfo); +DO_APP_FUNC(0x014404A0, void, HashSet_1_T_Enumerator_System_Object__System_Collections_IEnumerator_Reset, (HashSet_1_T_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D2F0, HashSet_1_T_Enumerator_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x01440400, Object *, HashSet_1_T_Enumerator_System_Object__System_Collections_IEnumerator_get_Current, (HashSet_1_T_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D2F8, HashSet_1_T_Enumerator_System_Object__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x003BB3C0, Object *, HashSet_1_T_Enumerator_System_Object__get_Current, (HashSet_1_T_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, InlinedArray_1_TValue_Enumerator_System_Object__Dispose, (InlinedArray_1_TValue_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434CD0, bool, InlinedArray_1_TValue_Enumerator_System_Object__MoveNext, (InlinedArray_1_TValue_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x006DDC60, void, InlinedArray_1_TValue_Enumerator_System_Object__Reset, (InlinedArray_1_TValue_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01440580, Object *, InlinedArray_1_TValue_Enumerator_System_Object__System_Collections_IEnumerator_get_Current, (InlinedArray_1_TValue_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01440530, Object *, InlinedArray_1_TValue_Enumerator_System_Object__get_Current, (InlinedArray_1_TValue_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014405F0, void, InputControlList_1_TControl_Enumerator_System_Object___ctor, (InputControlList_1_TControl_Enumerator_System_Object_ * __this, InputControlList_1_System_Object_ list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, InputControlList_1_TControl_Enumerator_System_Object__Dispose, (InputControlList_1_TControl_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01440660, bool, InputControlList_1_TControl_Enumerator_System_Object__MoveNext, (InputControlList_1_TControl_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01436E20, void, InputControlList_1_TControl_Enumerator_System_Object__Reset, (InputControlList_1_TControl_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01440750, Object *, InputControlList_1_TControl_Enumerator_System_Object__System_Collections_IEnumerator_get_Current, (InputControlList_1_TControl_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01440680, Object *, InputControlList_1_TControl_Enumerator_System_Object__get_Current, (InputControlList_1_TControl_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D230, InputControlList_1_TControl_Enumerator_System_Object__get_Current__MethodInfo); +DO_APP_FUNC(0x01440790, void, LinkedList_1_T_Enumerator_System_Object___ctor, (LinkedList_1_T_Enumerator_System_Object_ * __this, LinkedList_1_System_Object_ * list, MethodInfo * method)); +DO_APP_FUNC(0x01440860, void, LinkedList_1_T_Enumerator_System_Object___ctor_1, (LinkedList_1_T_Enumerator_System_Object_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D220, LinkedList_1_T_Enumerator_System_Object___ctor_1__MethodInfo); +DO_APP_FUNC(0x003AE050, void, LinkedList_1_T_Enumerator_System_Object__Dispose, (LinkedList_1_T_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014409B0, bool, LinkedList_1_T_Enumerator_System_Object__MoveNext, (LinkedList_1_T_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D1F8, LinkedList_1_T_Enumerator_System_Object__MoveNext__MethodInfo); +DO_APP_FUNC(0x01440BC0, void, LinkedList_1_T_Enumerator_System_Object__System_Collections_IEnumerator_Reset, (LinkedList_1_T_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D2A0, LinkedList_1_T_Enumerator_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x014408B0, Object *, LinkedList_1_T_Enumerator_System_Object__System_Collections_IEnumerator_get_Current, (LinkedList_1_T_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D210, LinkedList_1_T_Enumerator_System_Object__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x01440CF0, void, LinkedList_1_T_Enumerator_System_Object__System_Runtime_Serialization_IDeserializationCallback_OnDeserialization, (LinkedList_1_T_Enumerator_System_Object_ * __this, Object * sender, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D290, LinkedList_1_T_Enumerator_System_Object__System_Runtime_Serialization_IDeserializationCallback_OnDeserialization__MethodInfo); +DO_APP_FUNC(0x01440CA0, void, LinkedList_1_T_Enumerator_System_Object__System_Runtime_Serialization_ISerializable_GetObjectData, (LinkedList_1_T_Enumerator_System_Object_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D298, LinkedList_1_T_Enumerator_System_Object__System_Runtime_Serialization_ISerializable_GetObjectData__MethodInfo); +DO_APP_FUNC(0x003BB3D0, Object *, LinkedList_1_T_Enumerator_System_Object__get_Current, (LinkedList_1_T_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434DE0, void, List_1_T_Enumerator_System_Object___ctor, (List_1_T_Enumerator_System_Object_ * __this, List_1_System_Object_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_Object__Dispose, (List_1_T_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439BC0, bool, List_1_T_Enumerator_System_Object__MoveNext, (List_1_T_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434F00, bool, List_1_T_Enumerator_System_Object__MoveNextRare, (List_1_T_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434FE0, void, List_1_T_Enumerator_System_Object__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01440D40, Object *, List_1_T_Enumerator_System_Object__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, List_1_T_Enumerator_System_Object__get_Current, (List_1_T_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434DE0, void, LowLevelListWithIList_1_T_Enumerator_System_Object___ctor, (LowLevelListWithIList_1_T_Enumerator_System_Object_ * __this, LowLevelListWithIList_1_System_Object_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, LowLevelListWithIList_1_T_Enumerator_System_Object__Dispose, (LowLevelListWithIList_1_T_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01440D90, bool, LowLevelListWithIList_1_T_Enumerator_System_Object__MoveNext, (LowLevelListWithIList_1_T_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01440E60, bool, LowLevelListWithIList_1_T_Enumerator_System_Object__MoveNextRare, (LowLevelListWithIList_1_T_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D280, LowLevelListWithIList_1_T_Enumerator_System_Object__MoveNextRare__MethodInfo); +DO_APP_FUNC(0x01440F70, void, LowLevelListWithIList_1_T_Enumerator_System_Object__System_Collections_IEnumerator_Reset, (LowLevelListWithIList_1_T_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D270, LowLevelListWithIList_1_T_Enumerator_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x01440EE0, Object *, LowLevelListWithIList_1_T_Enumerator_System_Object__System_Collections_IEnumerator_get_Current, (LowLevelListWithIList_1_T_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D278, LowLevelListWithIList_1_T_Enumerator_System_Object__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x003BB3C0, Object *, LowLevelListWithIList_1_T_Enumerator_System_Object__get_Current, (LowLevelListWithIList_1_T_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143D120, void, Queue_1_T_Enumerator_System_Object___ctor, (Queue_1_T_Enumerator_System_Object_ * __this, Queue_1_System_Object_ * q, MethodInfo * method)); +DO_APP_FUNC(0x0143D1A0, void, Queue_1_T_Enumerator_System_Object__Dispose, (Queue_1_T_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01440FF0, bool, Queue_1_T_Enumerator_System_Object__MoveNext, (Queue_1_T_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D260, Queue_1_T_Enumerator_System_Object__MoveNext__MethodInfo); +DO_APP_FUNC(0x01441200, void, Queue_1_T_Enumerator_System_Object__System_Collections_IEnumerator_Reset, (Queue_1_T_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D1A8, Queue_1_T_Enumerator_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x014411A0, Object *, Queue_1_T_Enumerator_System_Object__System_Collections_IEnumerator_get_Current, (Queue_1_T_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01441130, void, Queue_1_T_Enumerator_System_Object__ThrowEnumerationNotStartedOrEnded, (Queue_1_T_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D258, Queue_1_T_Enumerator_System_Object__ThrowEnumerationNotStartedOrEnded__MethodInfo); +DO_APP_FUNC(0x014410F0, Object *, Queue_1_T_Enumerator_System_Object__get_Current, (Queue_1_T_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143CB60, void, ReadOnlyArray_1_TValue_Enumerator_System_Object___ctor, (ReadOnlyArray_1_TValue_Enumerator_System_Object_ * __this, Object__Array * array, int32_t index, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, ReadOnlyArray_1_TValue_Enumerator_System_Object__Dispose, (ReadOnlyArray_1_TValue_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143CBD0, bool, ReadOnlyArray_1_TValue_Enumerator_System_Object__MoveNext, (ReadOnlyArray_1_TValue_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143CBF0, void, ReadOnlyArray_1_TValue_Enumerator_System_Object__Reset, (ReadOnlyArray_1_TValue_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01441320, Object *, ReadOnlyArray_1_TValue_Enumerator_System_Object__System_Collections_IEnumerator_get_Current, (ReadOnlyArray_1_TValue_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01441290, Object *, ReadOnlyArray_1_TValue_Enumerator_System_Object__get_Current, (ReadOnlyArray_1_TValue_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D1A0, ReadOnlyArray_1_TValue_Enumerator_System_Object__get_Current__MethodInfo); DO_APP_FUNC(0x01441360, void, ReadOnlyCollectionBuilder_1_T_Enumerator_System_Object___ctor, (ReadOnlyCollectionBuilder_1_T_Enumerator_System_Object_ * __this, ReadOnlyCollectionBuilder_1_System_Object_ * builder, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ReadOnlyCollectionBuilder_1_T_Enumerator_System_Object__Dispose, (ReadOnlyCollectionBuilder_1_T_Enumerator_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01441440, bool, ReadOnlyCollectionBuilder_1_T_Enumerator_System_Object__MoveNext, (ReadOnlyCollectionBuilder_1_T_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D190, ReadOnlyCollectionBuilder_1_T_Enumerator_System_Object__MoveNext__MethodInfo); DO_APP_FUNC(0x01441540, void, ReadOnlyCollectionBuilder_1_T_Enumerator_System_Object__System_Collections_IEnumerator_Reset, (ReadOnlyCollectionBuilder_1_T_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D188, ReadOnlyCollectionBuilder_1_T_Enumerator_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x014413E0, Object *, ReadOnlyCollectionBuilder_1_T_Enumerator_System_Object__System_Collections_IEnumerator_get_Current, (ReadOnlyCollectionBuilder_1_T_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D198, ReadOnlyCollectionBuilder_1_T_Enumerator_System_Object__System_Collections_IEnumerator_get_Current__MethodInfo); DO_APP_FUNC(0x003BB3E0, Object *, ReadOnlyCollectionBuilder_1_T_Enumerator_System_Object__get_Current, (ReadOnlyCollectionBuilder_1_T_Enumerator_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01442630, void, SortedSet_1_T_Enumerator_System_Object___cctor, (MethodInfo * method)); -DO_APP_FUNC(0x014415A0, void, SortedSet_1_T_Enumerator_System_Object___ctor, (SortedSet_1_T_Enumerator_System_Object___Boxed * __this, SortedSet_1_System_Object_ * set, MethodInfo * method)); -DO_APP_FUNC(0x01441640, void, SortedSet_1_T_Enumerator_System_Object___ctor_1, (SortedSet_1_T_Enumerator_System_Object___Boxed * __this, SortedSet_1_System_Object_ * set, bool reverse, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, SortedSet_1_T_Enumerator_System_Object__Dispose, (SortedSet_1_T_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014419E0, void, SortedSet_1_T_Enumerator_System_Object__Initialize, (SortedSet_1_T_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01441D30, bool, SortedSet_1_T_Enumerator_System_Object__MoveNext, (SortedSet_1_T_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01442430, void, SortedSet_1_T_Enumerator_System_Object__Reset, (SortedSet_1_T_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014425A0, void, SortedSet_1_T_Enumerator_System_Object__System_Collections_IEnumerator_Reset, (SortedSet_1_T_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01442360, Object *, SortedSet_1_T_Enumerator_System_Object__System_Collections_IEnumerator_get_Current, (SortedSet_1_T_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01441990, void, SortedSet_1_T_Enumerator_System_Object__System_Runtime_Serialization_IDeserializationCallback_OnDeserialization, (SortedSet_1_T_Enumerator_System_Object___Boxed * __this, Object * sender, MethodInfo * method)); -DO_APP_FUNC(0x01441940, void, SortedSet_1_T_Enumerator_System_Object__System_Runtime_Serialization_ISerializable_GetObjectData, (SortedSet_1_T_Enumerator_System_Object___Boxed * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); -DO_APP_FUNC(0x014422D0, Object *, SortedSet_1_T_Enumerator_System_Object__get_Current, (SortedSet_1_T_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01436070, bool, SortedSet_1_T_Enumerator_System_Object__get_NotStartedOrEnded, (SortedSet_1_T_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014427B0, void, Stack_1_T_Enumerator_System_Object___ctor, (Stack_1_T_Enumerator_System_Object___Boxed * __this, Stack_1_System_Object_ * stack, MethodInfo * method)); -DO_APP_FUNC(0x01436E20, void, Stack_1_T_Enumerator_System_Object__Dispose, (Stack_1_T_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01442830, bool, Stack_1_T_Enumerator_System_Object__MoveNext, (Stack_1_T_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01442A90, void, Stack_1_T_Enumerator_System_Object__System_Collections_IEnumerator_Reset, (Stack_1_T_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01442A30, Object *, Stack_1_T_Enumerator_System_Object__System_Collections_IEnumerator_get_Current, (Stack_1_T_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014429C0, void, Stack_1_T_Enumerator_System_Object__ThrowEnumerationNotStartedOrEnded, (Stack_1_T_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01442980, Object *, Stack_1_T_Enumerator_System_Object__get_Current, (Stack_1_T_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01442B20, void, TrackableCollection_1_TTrackable_Enumerator_System_Object___ctor, (TrackableCollection_1_TTrackable_Enumerator_System_Object___Boxed * __this, Dictionary_2_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_ * trackables, MethodInfo * method)); -DO_APP_FUNC(0x01442C60, bool, TrackableCollection_1_TTrackable_Enumerator_System_Object__MoveNext, (TrackableCollection_1_TTrackable_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01442CA0, Object *, TrackableCollection_1_TTrackable_Enumerator_System_Object__get_Current, (TrackableCollection_1_TTrackable_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01442CF0, void, UQueryState_1_T_Enumerator_System_Object___ctor, (UQueryState_1_T_Enumerator_System_Object___Boxed * __this, UQueryState_1_System_Object_ queryState, MethodInfo * method)); -DO_APP_FUNC(0x01443100, void, UQueryState_1_T_Enumerator_System_Object__Dispose, (UQueryState_1_T_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014430A0, bool, UQueryState_1_T_Enumerator_System_Object__MoveNext, (UQueryState_1_T_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014430F0, void, UQueryState_1_T_Enumerator_System_Object__Reset, (UQueryState_1_T_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01443060, Object *, UQueryState_1_T_Enumerator_System_Object__System_Collections_IEnumerator_get_Current, (UQueryState_1_T_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01442F80, Object *, UQueryState_1_T_Enumerator_System_Object__get_Current, (UQueryState_1_T_Enumerator_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143BC80, void, List_1_T_Enumerator_UnityEngine_ResourceManagement_Util_ObjectInitializationData___ctor, (List_1_T_Enumerator_UnityEngine_ResourceManagement_Util_ObjectInitializationData___Boxed * __this, List_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_ResourceManagement_Util_ObjectInitializationData__Dispose, (List_1_T_Enumerator_UnityEngine_ResourceManagement_Util_ObjectInitializationData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143BD10, bool, List_1_T_Enumerator_UnityEngine_ResourceManagement_Util_ObjectInitializationData__MoveNext, (List_1_T_Enumerator_UnityEngine_ResourceManagement_Util_ObjectInitializationData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143BE30, bool, List_1_T_Enumerator_UnityEngine_ResourceManagement_Util_ObjectInitializationData__MoveNextRare, (List_1_T_Enumerator_UnityEngine_ResourceManagement_Util_ObjectInitializationData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143BF60, void, List_1_T_Enumerator_UnityEngine_ResourceManagement_Util_ObjectInitializationData__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_ResourceManagement_Util_ObjectInitializationData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143BEA0, Object *, List_1_T_Enumerator_UnityEngine_ResourceManagement_Util_ObjectInitializationData__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_ResourceManagement_Util_ObjectInitializationData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143BE80, ObjectInitializationData, List_1_T_Enumerator_UnityEngine_ResourceManagement_Util_ObjectInitializationData__get_Current, (List_1_T_Enumerator_UnityEngine_ResourceManagement_Util_ObjectInitializationData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341F0, void, List_1_T_Enumerator_Dissonance_Networking_Client_OpenChannel___ctor, (List_1_T_Enumerator_Dissonance_Networking_Client_OpenChannel___Boxed * __this, List_1_Dissonance_Networking_Client_OpenChannel_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Dissonance_Networking_Client_OpenChannel__Dispose, (List_1_T_Enumerator_Dissonance_Networking_Client_OpenChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434270, bool, List_1_T_Enumerator_Dissonance_Networking_Client_OpenChannel__MoveNext, (List_1_T_Enumerator_Dissonance_Networking_Client_OpenChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434370, bool, List_1_T_Enumerator_Dissonance_Networking_Client_OpenChannel__MoveNextRare, (List_1_T_Enumerator_Dissonance_Networking_Client_OpenChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434460, void, List_1_T_Enumerator_Dissonance_Networking_Client_OpenChannel__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Dissonance_Networking_Client_OpenChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014343B0, Object *, List_1_T_Enumerator_Dissonance_Networking_Client_OpenChannel__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Dissonance_Networking_Client_OpenChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01204560, OpenChannel, List_1_T_Enumerator_Dissonance_Networking_Client_OpenChannel__get_Current, (List_1_T_Enumerator_Dissonance_Networking_Client_OpenChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014431A0, void, Stack_1_T_Enumerator_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___ctor, (Stack_1_T_Enumerator_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___Boxed * __this, Stack_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * stack, MethodInfo * method)); -DO_APP_FUNC(0x01436E20, void, Stack_1_T_Enumerator_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__Dispose, (Stack_1_T_Enumerator_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01443230, bool, Stack_1_T_Enumerator_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__MoveNext, (Stack_1_T_Enumerator_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01443510, void, Stack_1_T_Enumerator_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__System_Collections_IEnumerator_Reset, (Stack_1_T_Enumerator_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01443450, Object *, Stack_1_T_Enumerator_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__System_Collections_IEnumerator_get_Current, (Stack_1_T_Enumerator_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014433E0, void, Stack_1_T_Enumerator_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__ThrowEnumerationNotStartedOrEnded, (Stack_1_T_Enumerator_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01443380, OriginalMaterialValue, Stack_1_T_Enumerator_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__get_Current, (Stack_1_T_Enumerator_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437EF0, void, List_1_T_Enumerator_Photon_Bolt_Internal_PacketStats___ctor, (List_1_T_Enumerator_Photon_Bolt_Internal_PacketStats___Boxed * __this, List_1_Photon_Bolt_Internal_PacketStats_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Photon_Bolt_Internal_PacketStats__Dispose, (List_1_T_Enumerator_Photon_Bolt_Internal_PacketStats___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437F70, bool, List_1_T_Enumerator_Photon_Bolt_Internal_PacketStats__MoveNext, (List_1_T_Enumerator_Photon_Bolt_Internal_PacketStats___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438020, bool, List_1_T_Enumerator_Photon_Bolt_Internal_PacketStats__MoveNextRare, (List_1_T_Enumerator_Photon_Bolt_Internal_PacketStats___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438110, void, List_1_T_Enumerator_Photon_Bolt_Internal_PacketStats__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Photon_Bolt_Internal_PacketStats___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438060, Object *, List_1_T_Enumerator_Photon_Bolt_Internal_PacketStats__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Photon_Bolt_Internal_PacketStats___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C39A10, PacketStats, List_1_T_Enumerator_Photon_Bolt_Internal_PacketStats__get_Current, (List_1_T_Enumerator_Photon_Bolt_Internal_PacketStats___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438DB0, void, List_1_T_Enumerator_UnityEngine_ParticleCollisionEvent___ctor, (List_1_T_Enumerator_UnityEngine_ParticleCollisionEvent___Boxed * __this, List_1_UnityEngine_ParticleCollisionEvent_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_ParticleCollisionEvent__Dispose, (List_1_T_Enumerator_UnityEngine_ParticleCollisionEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014435B0, bool, List_1_T_Enumerator_UnityEngine_ParticleCollisionEvent__MoveNext, (List_1_T_Enumerator_UnityEngine_ParticleCollisionEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438F60, bool, List_1_T_Enumerator_UnityEngine_ParticleCollisionEvent__MoveNextRare, (List_1_T_Enumerator_UnityEngine_ParticleCollisionEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439090, void, List_1_T_Enumerator_UnityEngine_ParticleCollisionEvent__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_ParticleCollisionEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438FD0, Object *, List_1_T_Enumerator_UnityEngine_ParticleCollisionEvent__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_ParticleCollisionEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438FB0, ParticleCollisionEvent, List_1_T_Enumerator_UnityEngine_ParticleCollisionEvent__get_Current, (List_1_T_Enumerator_UnityEngine_ParticleCollisionEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143AE10, void, NativeArray_1_T_Enumerator_UnityEngine_Plane___ctor, (NativeArray_1_T_Enumerator_UnityEngine_Plane___Boxed * __this, NativeArray_1_UnityEngine_Plane_ array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_UnityEngine_Plane__Dispose, (NativeArray_1_T_Enumerator_UnityEngine_Plane___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143AE30, bool, NativeArray_1_T_Enumerator_UnityEngine_Plane__MoveNext, (NativeArray_1_T_Enumerator_UnityEngine_Plane___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_UnityEngine_Plane__Reset, (NativeArray_1_T_Enumerator_UnityEngine_Plane___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143AF00, Object *, NativeArray_1_T_Enumerator_UnityEngine_Plane__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_UnityEngine_Plane___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143AEF0, Plane, NativeArray_1_T_Enumerator_UnityEngine_Plane__get_Current, (NativeArray_1_T_Enumerator_UnityEngine_Plane___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_Playables_Playable___ctor, (List_1_T_Enumerator_UnityEngine_Playables_Playable___Boxed * __this, List_1_UnityEngine_Playables_Playable_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Playables_Playable__Dispose, (List_1_T_Enumerator_UnityEngine_Playables_Playable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437E50, bool, List_1_T_Enumerator_UnityEngine_Playables_Playable__MoveNext, (List_1_T_Enumerator_UnityEngine_Playables_Playable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_Playables_Playable__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Playables_Playable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_Playables_Playable__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Playables_Playable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_Playables_Playable__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Playables_Playable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, Playable, List_1_T_Enumerator_UnityEngine_Playables_Playable__get_Current, (List_1_T_Enumerator_UnityEngine_Playables_Playable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341F0, void, List_1_T_Enumerator_UnityEngine_Playables_PlayableBinding___ctor, (List_1_T_Enumerator_UnityEngine_Playables_PlayableBinding___Boxed * __this, List_1_UnityEngine_Playables_PlayableBinding_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Playables_PlayableBinding__Dispose, (List_1_T_Enumerator_UnityEngine_Playables_PlayableBinding___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434270, bool, List_1_T_Enumerator_UnityEngine_Playables_PlayableBinding__MoveNext, (List_1_T_Enumerator_UnityEngine_Playables_PlayableBinding___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434370, bool, List_1_T_Enumerator_UnityEngine_Playables_PlayableBinding__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Playables_PlayableBinding___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434460, void, List_1_T_Enumerator_UnityEngine_Playables_PlayableBinding__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Playables_PlayableBinding___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014343B0, Object *, List_1_T_Enumerator_UnityEngine_Playables_PlayableBinding__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Playables_PlayableBinding___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01204560, PlayableBinding, List_1_T_Enumerator_UnityEngine_Playables_PlayableBinding__get_Current, (List_1_T_Enumerator_UnityEngine_Playables_PlayableBinding___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_UI_PointerModel__Dispose, (InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_UI_PointerModel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01443670, bool, InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_UI_PointerModel__MoveNext, (InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_UI_PointerModel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014436A0, void, InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_UI_PointerModel__Reset, (InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_UI_PointerModel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01443780, Object *, InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_UI_PointerModel__System_Collections_IEnumerator_get_Current, (InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_UI_PointerModel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014436B0, PointerModel, InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_UI_PointerModel__get_Current, (InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_UI_PointerModel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437EF0, void, List_1_T_Enumerator_Photon_Bolt_Priority___ctor, (List_1_T_Enumerator_Photon_Bolt_Priority___Boxed * __this, List_1_Photon_Bolt_Priority_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Photon_Bolt_Priority__Dispose, (List_1_T_Enumerator_Photon_Bolt_Priority___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437F70, bool, List_1_T_Enumerator_Photon_Bolt_Priority__MoveNext, (List_1_T_Enumerator_Photon_Bolt_Priority___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438020, bool, List_1_T_Enumerator_Photon_Bolt_Priority__MoveNextRare, (List_1_T_Enumerator_Photon_Bolt_Priority___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438110, void, List_1_T_Enumerator_Photon_Bolt_Priority__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Photon_Bolt_Priority___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438060, Object *, List_1_T_Enumerator_Photon_Bolt_Priority__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Photon_Bolt_Priority___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C39A10, Priority, List_1_T_Enumerator_Photon_Bolt_Priority__get_Current, (List_1_T_Enumerator_Photon_Bolt_Priority___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_Quaternion___ctor, (List_1_T_Enumerator_UnityEngine_Quaternion___Boxed * __this, List_1_UnityEngine_Quaternion_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Quaternion__Dispose, (List_1_T_Enumerator_UnityEngine_Quaternion___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437E50, bool, List_1_T_Enumerator_UnityEngine_Quaternion__MoveNext, (List_1_T_Enumerator_UnityEngine_Quaternion___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_Quaternion__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Quaternion___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_Quaternion__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Quaternion___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_Quaternion__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Quaternion___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, Quaternion, List_1_T_Enumerator_UnityEngine_Quaternion__get_Current, (List_1_T_Enumerator_UnityEngine_Quaternion___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_System_Xml_Schema_RangePositionInfo___ctor, (List_1_T_Enumerator_System_Xml_Schema_RangePositionInfo___Boxed * __this, List_1_System_Xml_Schema_RangePositionInfo_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_Xml_Schema_RangePositionInfo__Dispose, (List_1_T_Enumerator_System_Xml_Schema_RangePositionInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_System_Xml_Schema_RangePositionInfo__MoveNext, (List_1_T_Enumerator_System_Xml_Schema_RangePositionInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_System_Xml_Schema_RangePositionInfo__MoveNextRare, (List_1_T_Enumerator_System_Xml_Schema_RangePositionInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_System_Xml_Schema_RangePositionInfo__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_Xml_Schema_RangePositionInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_System_Xml_Schema_RangePositionInfo__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_Xml_Schema_RangePositionInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, RangePositionInfo, List_1_T_Enumerator_System_Xml_Schema_RangePositionInfo__get_Current, (List_1_T_Enumerator_System_Xml_Schema_RangePositionInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143C1C0, void, List_1_T_Enumerator_UnityEngine_RaycastHit___ctor, (List_1_T_Enumerator_UnityEngine_RaycastHit___Boxed * __this, List_1_UnityEngine_RaycastHit_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_RaycastHit__Dispose, (List_1_T_Enumerator_UnityEngine_RaycastHit___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143C250, bool, List_1_T_Enumerator_UnityEngine_RaycastHit__MoveNext, (List_1_T_Enumerator_UnityEngine_RaycastHit___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143C320, bool, List_1_T_Enumerator_UnityEngine_RaycastHit__MoveNextRare, (List_1_T_Enumerator_UnityEngine_RaycastHit___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143C460, void, List_1_T_Enumerator_UnityEngine_RaycastHit__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_RaycastHit___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143C3A0, Object *, List_1_T_Enumerator_UnityEngine_RaycastHit__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_RaycastHit___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143C370, RaycastHit, List_1_T_Enumerator_UnityEngine_RaycastHit__get_Current, (List_1_T_Enumerator_UnityEngine_RaycastHit___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01443880, void, List_1_T_Enumerator_UnityEngine_RaycastHit2D___ctor, (List_1_T_Enumerator_UnityEngine_RaycastHit2D___Boxed * __this, List_1_UnityEngine_RaycastHit2D_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_RaycastHit2D__Dispose, (List_1_T_Enumerator_UnityEngine_RaycastHit2D___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01443910, bool, List_1_T_Enumerator_UnityEngine_RaycastHit2D__MoveNext, (List_1_T_Enumerator_UnityEngine_RaycastHit2D___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014439D0, bool, List_1_T_Enumerator_UnityEngine_RaycastHit2D__MoveNextRare, (List_1_T_Enumerator_UnityEngine_RaycastHit2D___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01443B00, void, List_1_T_Enumerator_UnityEngine_RaycastHit2D__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_RaycastHit2D___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01443A40, Object *, List_1_T_Enumerator_UnityEngine_RaycastHit2D__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_RaycastHit2D___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01443A20, RaycastHit2D, List_1_T_Enumerator_UnityEngine_RaycastHit2D__get_Current, (List_1_T_Enumerator_UnityEngine_RaycastHit2D___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437170, void, List_1_T_Enumerator_UnityEngine_EventSystems_RaycastResult___ctor, (List_1_T_Enumerator_UnityEngine_EventSystems_RaycastResult___Boxed * __this, List_1_UnityEngine_EventSystems_RaycastResult_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_EventSystems_RaycastResult__Dispose, (List_1_T_Enumerator_UnityEngine_EventSystems_RaycastResult___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437200, bool, List_1_T_Enumerator_UnityEngine_EventSystems_RaycastResult__MoveNext, (List_1_T_Enumerator_UnityEngine_EventSystems_RaycastResult___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437330, bool, List_1_T_Enumerator_UnityEngine_EventSystems_RaycastResult__MoveNextRare, (List_1_T_Enumerator_UnityEngine_EventSystems_RaycastResult___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437480, void, List_1_T_Enumerator_UnityEngine_EventSystems_RaycastResult__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_EventSystems_RaycastResult___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014373B0, Object *, List_1_T_Enumerator_UnityEngine_EventSystems_RaycastResult__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_EventSystems_RaycastResult___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437380, RaycastResult, List_1_T_Enumerator_UnityEngine_EventSystems_RaycastResult__get_Current, (List_1_T_Enumerator_UnityEngine_EventSystems_RaycastResult___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_Rect___ctor, (List_1_T_Enumerator_UnityEngine_Rect___Boxed * __this, List_1_UnityEngine_Rect_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Rect__Dispose, (List_1_T_Enumerator_UnityEngine_Rect___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437E50, bool, List_1_T_Enumerator_UnityEngine_Rect__MoveNext, (List_1_T_Enumerator_UnityEngine_Rect___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_Rect__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Rect___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_Rect__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Rect___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_Rect__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Rect___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, Rect, List_1_T_Enumerator_UnityEngine_Rect__get_Current, (List_1_T_Enumerator_UnityEngine_Rect___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01436DA0, void, Stack_1_T_Enumerator_UnityEngine_Rect___ctor, (Stack_1_T_Enumerator_UnityEngine_Rect___Boxed * __this, Stack_1_UnityEngine_Rect_ * stack, MethodInfo * method)); -DO_APP_FUNC(0x01436E20, void, Stack_1_T_Enumerator_UnityEngine_Rect__Dispose, (Stack_1_T_Enumerator_UnityEngine_Rect___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01443B40, bool, Stack_1_T_Enumerator_UnityEngine_Rect__MoveNext, (Stack_1_T_Enumerator_UnityEngine_Rect___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01443DF0, void, Stack_1_T_Enumerator_UnityEngine_Rect__System_Collections_IEnumerator_Reset, (Stack_1_T_Enumerator_UnityEngine_Rect___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01443D40, Object *, Stack_1_T_Enumerator_UnityEngine_Rect__System_Collections_IEnumerator_get_Current, (Stack_1_T_Enumerator_UnityEngine_Rect___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01443CD0, void, Stack_1_T_Enumerator_UnityEngine_Rect__ThrowEnumerationNotStartedOrEnded, (Stack_1_T_Enumerator_UnityEngine_Rect___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01443C80, Rect, Stack_1_T_Enumerator_UnityEngine_Rect__get_Current, (Stack_1_T_Enumerator_UnityEngine_Rect___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_Rendering_ReflectionProbeBlendInfo___ctor, (List_1_T_Enumerator_UnityEngine_Rendering_ReflectionProbeBlendInfo___Boxed * __this, List_1_UnityEngine_Rendering_ReflectionProbeBlendInfo_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Rendering_ReflectionProbeBlendInfo__Dispose, (List_1_T_Enumerator_UnityEngine_Rendering_ReflectionProbeBlendInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_UnityEngine_Rendering_ReflectionProbeBlendInfo__MoveNext, (List_1_T_Enumerator_UnityEngine_Rendering_ReflectionProbeBlendInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_Rendering_ReflectionProbeBlendInfo__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Rendering_ReflectionProbeBlendInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_Rendering_ReflectionProbeBlendInfo__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Rendering_ReflectionProbeBlendInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_Rendering_ReflectionProbeBlendInfo__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Rendering_ReflectionProbeBlendInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, ReflectionProbeBlendInfo, List_1_T_Enumerator_UnityEngine_Rendering_ReflectionProbeBlendInfo__get_Current, (List_1_T_Enumerator_UnityEngine_Rendering_ReflectionProbeBlendInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_Dissonance_RemoteChannel___ctor, (List_1_T_Enumerator_Dissonance_RemoteChannel___Boxed * __this, List_1_Dissonance_RemoteChannel_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Dissonance_RemoteChannel__Dispose, (List_1_T_Enumerator_Dissonance_RemoteChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434620, bool, List_1_T_Enumerator_Dissonance_RemoteChannel__MoveNext, (List_1_T_Enumerator_Dissonance_RemoteChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_Dissonance_RemoteChannel__MoveNextRare, (List_1_T_Enumerator_Dissonance_RemoteChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_Dissonance_RemoteChannel__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Dissonance_RemoteChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_Dissonance_RemoteChannel__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Dissonance_RemoteChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, RemoteChannel, List_1_T_Enumerator_Dissonance_RemoteChannel__get_Current, (List_1_T_Enumerator_Dissonance_RemoteChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_UIElements_UIR_RenderChainTextEntry___ctor, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_RenderChainTextEntry___Boxed * __this, List_1_UnityEngine_UIElements_UIR_RenderChainTextEntry_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIElements_UIR_RenderChainTextEntry__Dispose, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_RenderChainTextEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_UnityEngine_UIElements_UIR_RenderChainTextEntry__MoveNext, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_RenderChainTextEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_UIElements_UIR_RenderChainTextEntry__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_RenderChainTextEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_UIElements_UIR_RenderChainTextEntry__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_RenderChainTextEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_UIElements_UIR_RenderChainTextEntry__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_RenderChainTextEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, RenderChainTextEntry, List_1_T_Enumerator_UnityEngine_UIElements_UIR_RenderChainTextEntry__get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_RenderChainTextEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438DB0, void, List_1_T_Enumerator_UnityEngine_Rendering_RenderTargetIdentifier___ctor, (List_1_T_Enumerator_UnityEngine_Rendering_RenderTargetIdentifier___Boxed * __this, List_1_UnityEngine_Rendering_RenderTargetIdentifier_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Rendering_RenderTargetIdentifier__Dispose, (List_1_T_Enumerator_UnityEngine_Rendering_RenderTargetIdentifier___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014435B0, bool, List_1_T_Enumerator_UnityEngine_Rendering_RenderTargetIdentifier__MoveNext, (List_1_T_Enumerator_UnityEngine_Rendering_RenderTargetIdentifier___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438F60, bool, List_1_T_Enumerator_UnityEngine_Rendering_RenderTargetIdentifier__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Rendering_RenderTargetIdentifier___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439090, void, List_1_T_Enumerator_UnityEngine_Rendering_RenderTargetIdentifier__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Rendering_RenderTargetIdentifier___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438FD0, Object *, List_1_T_Enumerator_UnityEngine_Rendering_RenderTargetIdentifier__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Rendering_RenderTargetIdentifier___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438FB0, RenderTargetIdentifier, List_1_T_Enumerator_UnityEngine_Rendering_RenderTargetIdentifier__get_Current, (List_1_T_Enumerator_UnityEngine_Rendering_RenderTargetIdentifier___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_Rendering_RendererUtils_RendererList___ctor, (List_1_T_Enumerator_UnityEngine_Rendering_RendererUtils_RendererList___Boxed * __this, List_1_UnityEngine_Rendering_RendererUtils_RendererList_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Rendering_RendererUtils_RendererList__Dispose, (List_1_T_Enumerator_UnityEngine_Rendering_RendererUtils_RendererList___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437E50, bool, List_1_T_Enumerator_UnityEngine_Rendering_RendererUtils_RendererList__MoveNext, (List_1_T_Enumerator_UnityEngine_Rendering_RendererUtils_RendererList___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_Rendering_RendererUtils_RendererList__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Rendering_RendererUtils_RendererList___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_Rendering_RendererUtils_RendererList__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Rendering_RendererUtils_RendererList___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_Rendering_RendererUtils_RendererList__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Rendering_RendererUtils_RendererList___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, RendererList, List_1_T_Enumerator_UnityEngine_Rendering_RendererUtils_RendererList__get_Current, (List_1_T_Enumerator_UnityEngine_Rendering_RendererUtils_RendererList___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434DE0, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle___ctor, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle___Boxed * __this, List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle__Dispose, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x014415A0, void, SortedSet_1_T_Enumerator_System_Object___ctor, (SortedSet_1_T_Enumerator_System_Object_ * __this, SortedSet_1_System_Object_ * set, MethodInfo * method)); +DO_APP_FUNC(0x01441640, void, SortedSet_1_T_Enumerator_System_Object___ctor_1, (SortedSet_1_T_Enumerator_System_Object_ * __this, SortedSet_1_System_Object_ * set, bool reverse, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, SortedSet_1_T_Enumerator_System_Object__Dispose, (SortedSet_1_T_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014419E0, void, SortedSet_1_T_Enumerator_System_Object__Initialize, (SortedSet_1_T_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01441D30, bool, SortedSet_1_T_Enumerator_System_Object__MoveNext, (SortedSet_1_T_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D1D8, SortedSet_1_T_Enumerator_System_Object__MoveNext__MethodInfo); +DO_APP_FUNC(0x01442430, void, SortedSet_1_T_Enumerator_System_Object__Reset, (SortedSet_1_T_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D1B8, SortedSet_1_T_Enumerator_System_Object__Reset__MethodInfo); +DO_APP_FUNC(0x014425A0, void, SortedSet_1_T_Enumerator_System_Object__System_Collections_IEnumerator_Reset, (SortedSet_1_T_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01442360, Object *, SortedSet_1_T_Enumerator_System_Object__System_Collections_IEnumerator_get_Current, (SortedSet_1_T_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D1C8, SortedSet_1_T_Enumerator_System_Object__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x01441990, void, SortedSet_1_T_Enumerator_System_Object__System_Runtime_Serialization_IDeserializationCallback_OnDeserialization, (SortedSet_1_T_Enumerator_System_Object_ * __this, Object * sender, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D1E8, SortedSet_1_T_Enumerator_System_Object__System_Runtime_Serialization_IDeserializationCallback_OnDeserialization__MethodInfo); +DO_APP_FUNC(0x01441940, void, SortedSet_1_T_Enumerator_System_Object__System_Runtime_Serialization_ISerializable_GetObjectData, (SortedSet_1_T_Enumerator_System_Object_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D180, SortedSet_1_T_Enumerator_System_Object__System_Runtime_Serialization_ISerializable_GetObjectData__MethodInfo); +DO_APP_FUNC(0x014422D0, Object *, SortedSet_1_T_Enumerator_System_Object__get_Current, (SortedSet_1_T_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01436070, bool, SortedSet_1_T_Enumerator_System_Object__get_NotStartedOrEnded, (SortedSet_1_T_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014427B0, void, Stack_1_T_Enumerator_System_Object___ctor, (Stack_1_T_Enumerator_System_Object_ * __this, Stack_1_System_Object_ * stack, MethodInfo * method)); +DO_APP_FUNC(0x01436E20, void, Stack_1_T_Enumerator_System_Object__Dispose, (Stack_1_T_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01442830, bool, Stack_1_T_Enumerator_System_Object__MoveNext, (Stack_1_T_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D129A0, Stack_1_T_Enumerator_System_Object__MoveNext__MethodInfo); +DO_APP_FUNC(0x01442A90, void, Stack_1_T_Enumerator_System_Object__System_Collections_IEnumerator_Reset, (Stack_1_T_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12990, Stack_1_T_Enumerator_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x01442A30, Object *, Stack_1_T_Enumerator_System_Object__System_Collections_IEnumerator_get_Current, (Stack_1_T_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014429C0, void, Stack_1_T_Enumerator_System_Object__ThrowEnumerationNotStartedOrEnded, (Stack_1_T_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12998, Stack_1_T_Enumerator_System_Object__ThrowEnumerationNotStartedOrEnded__MethodInfo); +DO_APP_FUNC(0x01442980, Object *, Stack_1_T_Enumerator_System_Object__get_Current, (Stack_1_T_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01442B20, void, TrackableCollection_1_TTrackable_Enumerator_System_Object___ctor, (TrackableCollection_1_TTrackable_Enumerator_System_Object_ * __this, Dictionary_2_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_ * trackables, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12930, TrackableCollection_1_TTrackable_Enumerator_System_Object___ctor__MethodInfo); +DO_APP_FUNC(0x01442C60, bool, TrackableCollection_1_TTrackable_Enumerator_System_Object__MoveNext, (TrackableCollection_1_TTrackable_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01442CA0, Object *, TrackableCollection_1_TTrackable_Enumerator_System_Object__get_Current, (TrackableCollection_1_TTrackable_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01442CF0, void, UQueryState_1_T_Enumerator_System_Object___ctor, (UQueryState_1_T_Enumerator_System_Object_ * __this, UQueryState_1_System_Object_ queryState, MethodInfo * method)); +DO_APP_FUNC(0x01443100, void, UQueryState_1_T_Enumerator_System_Object__Dispose, (UQueryState_1_T_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014430A0, bool, UQueryState_1_T_Enumerator_System_Object__MoveNext, (UQueryState_1_T_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014430F0, void, UQueryState_1_T_Enumerator_System_Object__Reset, (UQueryState_1_T_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01443060, Object *, UQueryState_1_T_Enumerator_System_Object__System_Collections_IEnumerator_get_Current, (UQueryState_1_T_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01442F80, Object *, UQueryState_1_T_Enumerator_System_Object__get_Current, (UQueryState_1_T_Enumerator_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143BC80, void, List_1_T_Enumerator_UnityEngine_ResourceManagement_Util_ObjectInitializationData___ctor, (List_1_T_Enumerator_UnityEngine_ResourceManagement_Util_ObjectInitializationData_ * __this, List_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_ResourceManagement_Util_ObjectInitializationData__Dispose, (List_1_T_Enumerator_UnityEngine_ResourceManagement_Util_ObjectInitializationData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEC10, List_1_T_Enumerator_UnityEngine_ResourceManagement_Util_ObjectInitializationData__Dispose__MethodInfo); +DO_APP_FUNC(0x0143BD10, bool, List_1_T_Enumerator_UnityEngine_ResourceManagement_Util_ObjectInitializationData__MoveNext, (List_1_T_Enumerator_UnityEngine_ResourceManagement_Util_ObjectInitializationData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEC40, List_1_T_Enumerator_UnityEngine_ResourceManagement_Util_ObjectInitializationData__MoveNext__MethodInfo); +DO_APP_FUNC(0x0143BE30, bool, List_1_T_Enumerator_UnityEngine_ResourceManagement_Util_ObjectInitializationData__MoveNextRare, (List_1_T_Enumerator_UnityEngine_ResourceManagement_Util_ObjectInitializationData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143BF60, void, List_1_T_Enumerator_UnityEngine_ResourceManagement_Util_ObjectInitializationData__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_ResourceManagement_Util_ObjectInitializationData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143BEA0, Object *, List_1_T_Enumerator_UnityEngine_ResourceManagement_Util_ObjectInitializationData__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_ResourceManagement_Util_ObjectInitializationData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143BE80, ObjectInitializationData, List_1_T_Enumerator_UnityEngine_ResourceManagement_Util_ObjectInitializationData__get_Current, (List_1_T_Enumerator_UnityEngine_ResourceManagement_Util_ObjectInitializationData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEB58, List_1_T_Enumerator_UnityEngine_ResourceManagement_Util_ObjectInitializationData__get_Current__MethodInfo); +DO_APP_FUNC(0x014341F0, void, List_1_T_Enumerator_Dissonance_Networking_Client_OpenChannel___ctor, (List_1_T_Enumerator_Dissonance_Networking_Client_OpenChannel_ * __this, List_1_Dissonance_Networking_Client_OpenChannel_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Dissonance_Networking_Client_OpenChannel__Dispose, (List_1_T_Enumerator_Dissonance_Networking_Client_OpenChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434270, bool, List_1_T_Enumerator_Dissonance_Networking_Client_OpenChannel__MoveNext, (List_1_T_Enumerator_Dissonance_Networking_Client_OpenChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434370, bool, List_1_T_Enumerator_Dissonance_Networking_Client_OpenChannel__MoveNextRare, (List_1_T_Enumerator_Dissonance_Networking_Client_OpenChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434460, void, List_1_T_Enumerator_Dissonance_Networking_Client_OpenChannel__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Dissonance_Networking_Client_OpenChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014343B0, Object *, List_1_T_Enumerator_Dissonance_Networking_Client_OpenChannel__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Dissonance_Networking_Client_OpenChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01204560, OpenChannel, List_1_T_Enumerator_Dissonance_Networking_Client_OpenChannel__get_Current, (List_1_T_Enumerator_Dissonance_Networking_Client_OpenChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014431A0, void, Stack_1_T_Enumerator_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___ctor, (Stack_1_T_Enumerator_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, Stack_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * stack, MethodInfo * method)); +DO_APP_FUNC(0x01436E20, void, Stack_1_T_Enumerator_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__Dispose, (Stack_1_T_Enumerator_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01443230, bool, Stack_1_T_Enumerator_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__MoveNext, (Stack_1_T_Enumerator_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12970, Stack_1_T_Enumerator_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__MoveNext__MethodInfo); +DO_APP_FUNC(0x01443510, void, Stack_1_T_Enumerator_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__System_Collections_IEnumerator_Reset, (Stack_1_T_Enumerator_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12960, Stack_1_T_Enumerator_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x01443450, Object *, Stack_1_T_Enumerator_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__System_Collections_IEnumerator_get_Current, (Stack_1_T_Enumerator_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014433E0, void, Stack_1_T_Enumerator_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__ThrowEnumerationNotStartedOrEnded, (Stack_1_T_Enumerator_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12968, Stack_1_T_Enumerator_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__ThrowEnumerationNotStartedOrEnded__MethodInfo); +DO_APP_FUNC(0x01443380, OriginalMaterialValue, Stack_1_T_Enumerator_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__get_Current, (Stack_1_T_Enumerator_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01437EF0, void, List_1_T_Enumerator_Photon_Bolt_Internal_PacketStats___ctor, (List_1_T_Enumerator_Photon_Bolt_Internal_PacketStats_ * __this, List_1_Photon_Bolt_Internal_PacketStats_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Photon_Bolt_Internal_PacketStats__Dispose, (List_1_T_Enumerator_Photon_Bolt_Internal_PacketStats_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01437F70, bool, List_1_T_Enumerator_Photon_Bolt_Internal_PacketStats__MoveNext, (List_1_T_Enumerator_Photon_Bolt_Internal_PacketStats_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438020, bool, List_1_T_Enumerator_Photon_Bolt_Internal_PacketStats__MoveNextRare, (List_1_T_Enumerator_Photon_Bolt_Internal_PacketStats_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438110, void, List_1_T_Enumerator_Photon_Bolt_Internal_PacketStats__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Photon_Bolt_Internal_PacketStats_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438060, Object *, List_1_T_Enumerator_Photon_Bolt_Internal_PacketStats__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Photon_Bolt_Internal_PacketStats_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C39A10, PacketStats, List_1_T_Enumerator_Photon_Bolt_Internal_PacketStats__get_Current, (List_1_T_Enumerator_Photon_Bolt_Internal_PacketStats_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438DB0, void, List_1_T_Enumerator_UnityEngine_ParticleCollisionEvent___ctor, (List_1_T_Enumerator_UnityEngine_ParticleCollisionEvent_ * __this, List_1_UnityEngine_ParticleCollisionEvent_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_ParticleCollisionEvent__Dispose, (List_1_T_Enumerator_UnityEngine_ParticleCollisionEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014435B0, bool, List_1_T_Enumerator_UnityEngine_ParticleCollisionEvent__MoveNext, (List_1_T_Enumerator_UnityEngine_ParticleCollisionEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438F60, bool, List_1_T_Enumerator_UnityEngine_ParticleCollisionEvent__MoveNextRare, (List_1_T_Enumerator_UnityEngine_ParticleCollisionEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439090, void, List_1_T_Enumerator_UnityEngine_ParticleCollisionEvent__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_ParticleCollisionEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438FD0, Object *, List_1_T_Enumerator_UnityEngine_ParticleCollisionEvent__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_ParticleCollisionEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438FB0, ParticleCollisionEvent, List_1_T_Enumerator_UnityEngine_ParticleCollisionEvent__get_Current, (List_1_T_Enumerator_UnityEngine_ParticleCollisionEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143AE10, void, NativeArray_1_T_Enumerator_UnityEngine_Plane___ctor, (NativeArray_1_T_Enumerator_UnityEngine_Plane_ * __this, NativeArray_1_UnityEngine_Plane_ * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_UnityEngine_Plane__Dispose, (NativeArray_1_T_Enumerator_UnityEngine_Plane_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143AE30, bool, NativeArray_1_T_Enumerator_UnityEngine_Plane__MoveNext, (NativeArray_1_T_Enumerator_UnityEngine_Plane_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_UnityEngine_Plane__Reset, (NativeArray_1_T_Enumerator_UnityEngine_Plane_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143AF00, Object *, NativeArray_1_T_Enumerator_UnityEngine_Plane__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_UnityEngine_Plane_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143AEF0, Plane, NativeArray_1_T_Enumerator_UnityEngine_Plane__get_Current, (NativeArray_1_T_Enumerator_UnityEngine_Plane_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_Playables_Playable___ctor, (List_1_T_Enumerator_UnityEngine_Playables_Playable_ * __this, List_1_UnityEngine_Playables_Playable_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Playables_Playable__Dispose, (List_1_T_Enumerator_UnityEngine_Playables_Playable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01437E50, bool, List_1_T_Enumerator_UnityEngine_Playables_Playable__MoveNext, (List_1_T_Enumerator_UnityEngine_Playables_Playable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_Playables_Playable__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Playables_Playable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_Playables_Playable__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Playables_Playable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_Playables_Playable__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Playables_Playable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, Playable, List_1_T_Enumerator_UnityEngine_Playables_Playable__get_Current, (List_1_T_Enumerator_UnityEngine_Playables_Playable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341F0, void, List_1_T_Enumerator_UnityEngine_Playables_PlayableBinding___ctor, (List_1_T_Enumerator_UnityEngine_Playables_PlayableBinding_ * __this, List_1_UnityEngine_Playables_PlayableBinding_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Playables_PlayableBinding__Dispose, (List_1_T_Enumerator_UnityEngine_Playables_PlayableBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434270, bool, List_1_T_Enumerator_UnityEngine_Playables_PlayableBinding__MoveNext, (List_1_T_Enumerator_UnityEngine_Playables_PlayableBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434370, bool, List_1_T_Enumerator_UnityEngine_Playables_PlayableBinding__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Playables_PlayableBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434460, void, List_1_T_Enumerator_UnityEngine_Playables_PlayableBinding__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Playables_PlayableBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014343B0, Object *, List_1_T_Enumerator_UnityEngine_Playables_PlayableBinding__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Playables_PlayableBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01204560, PlayableBinding, List_1_T_Enumerator_UnityEngine_Playables_PlayableBinding__get_Current, (List_1_T_Enumerator_UnityEngine_Playables_PlayableBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_UI_PointerModel__Dispose, (InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_UI_PointerModel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01443670, bool, InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_UI_PointerModel__MoveNext, (InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_UI_PointerModel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014436A0, void, InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_UI_PointerModel__Reset, (InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_UI_PointerModel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01443780, Object *, InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_UI_PointerModel__System_Collections_IEnumerator_get_Current, (InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_UI_PointerModel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014436B0, PointerModel, InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_UI_PointerModel__get_Current, (InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_UI_PointerModel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01437EF0, void, List_1_T_Enumerator_Photon_Bolt_Priority___ctor, (List_1_T_Enumerator_Photon_Bolt_Priority_ * __this, List_1_Photon_Bolt_Priority_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Photon_Bolt_Priority__Dispose, (List_1_T_Enumerator_Photon_Bolt_Priority_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01437F70, bool, List_1_T_Enumerator_Photon_Bolt_Priority__MoveNext, (List_1_T_Enumerator_Photon_Bolt_Priority_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438020, bool, List_1_T_Enumerator_Photon_Bolt_Priority__MoveNextRare, (List_1_T_Enumerator_Photon_Bolt_Priority_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438110, void, List_1_T_Enumerator_Photon_Bolt_Priority__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Photon_Bolt_Priority_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438060, Object *, List_1_T_Enumerator_Photon_Bolt_Priority__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Photon_Bolt_Priority_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C39A10, Priority, List_1_T_Enumerator_Photon_Bolt_Priority__get_Current, (List_1_T_Enumerator_Photon_Bolt_Priority_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_Quaternion___ctor, (List_1_T_Enumerator_UnityEngine_Quaternion_ * __this, List_1_UnityEngine_Quaternion_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Quaternion__Dispose, (List_1_T_Enumerator_UnityEngine_Quaternion_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01437E50, bool, List_1_T_Enumerator_UnityEngine_Quaternion__MoveNext, (List_1_T_Enumerator_UnityEngine_Quaternion_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_Quaternion__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Quaternion_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_Quaternion__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Quaternion_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_Quaternion__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Quaternion_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, Quaternion, List_1_T_Enumerator_UnityEngine_Quaternion__get_Current, (List_1_T_Enumerator_UnityEngine_Quaternion_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_System_Xml_Schema_RangePositionInfo___ctor, (List_1_T_Enumerator_System_Xml_Schema_RangePositionInfo_ * __this, List_1_System_Xml_Schema_RangePositionInfo_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_Xml_Schema_RangePositionInfo__Dispose, (List_1_T_Enumerator_System_Xml_Schema_RangePositionInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_System_Xml_Schema_RangePositionInfo__MoveNext, (List_1_T_Enumerator_System_Xml_Schema_RangePositionInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_System_Xml_Schema_RangePositionInfo__MoveNextRare, (List_1_T_Enumerator_System_Xml_Schema_RangePositionInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_System_Xml_Schema_RangePositionInfo__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_Xml_Schema_RangePositionInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_System_Xml_Schema_RangePositionInfo__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_Xml_Schema_RangePositionInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, RangePositionInfo, List_1_T_Enumerator_System_Xml_Schema_RangePositionInfo__get_Current, (List_1_T_Enumerator_System_Xml_Schema_RangePositionInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143C1C0, void, List_1_T_Enumerator_UnityEngine_RaycastHit___ctor, (List_1_T_Enumerator_UnityEngine_RaycastHit_ * __this, List_1_UnityEngine_RaycastHit_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_RaycastHit__Dispose, (List_1_T_Enumerator_UnityEngine_RaycastHit_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D14F20, List_1_T_Enumerator_UnityEngine_RaycastHit__Dispose__MethodInfo); +DO_APP_FUNC(0x0143C250, bool, List_1_T_Enumerator_UnityEngine_RaycastHit__MoveNext, (List_1_T_Enumerator_UnityEngine_RaycastHit_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D14F08, List_1_T_Enumerator_UnityEngine_RaycastHit__MoveNext__MethodInfo); +DO_APP_FUNC(0x0143C320, bool, List_1_T_Enumerator_UnityEngine_RaycastHit__MoveNextRare, (List_1_T_Enumerator_UnityEngine_RaycastHit_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143C460, void, List_1_T_Enumerator_UnityEngine_RaycastHit__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_RaycastHit_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143C3A0, Object *, List_1_T_Enumerator_UnityEngine_RaycastHit__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_RaycastHit_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143C370, RaycastHit, List_1_T_Enumerator_UnityEngine_RaycastHit__get_Current, (List_1_T_Enumerator_UnityEngine_RaycastHit_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D14EC0, List_1_T_Enumerator_UnityEngine_RaycastHit__get_Current__MethodInfo); +DO_APP_FUNC(0x01443880, void, List_1_T_Enumerator_UnityEngine_RaycastHit2D___ctor, (List_1_T_Enumerator_UnityEngine_RaycastHit2D_ * __this, List_1_UnityEngine_RaycastHit2D_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_RaycastHit2D__Dispose, (List_1_T_Enumerator_UnityEngine_RaycastHit2D_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01443910, bool, List_1_T_Enumerator_UnityEngine_RaycastHit2D__MoveNext, (List_1_T_Enumerator_UnityEngine_RaycastHit2D_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014439D0, bool, List_1_T_Enumerator_UnityEngine_RaycastHit2D__MoveNextRare, (List_1_T_Enumerator_UnityEngine_RaycastHit2D_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01443B00, void, List_1_T_Enumerator_UnityEngine_RaycastHit2D__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_RaycastHit2D_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01443A40, Object *, List_1_T_Enumerator_UnityEngine_RaycastHit2D__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_RaycastHit2D_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01443A20, RaycastHit2D, List_1_T_Enumerator_UnityEngine_RaycastHit2D__get_Current, (List_1_T_Enumerator_UnityEngine_RaycastHit2D_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01437170, void, List_1_T_Enumerator_UnityEngine_EventSystems_RaycastResult___ctor, (List_1_T_Enumerator_UnityEngine_EventSystems_RaycastResult_ * __this, List_1_UnityEngine_EventSystems_RaycastResult_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_EventSystems_RaycastResult__Dispose, (List_1_T_Enumerator_UnityEngine_EventSystems_RaycastResult_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF278, List_1_T_Enumerator_UnityEngine_EventSystems_RaycastResult__Dispose__MethodInfo); +DO_APP_FUNC(0x01437200, bool, List_1_T_Enumerator_UnityEngine_EventSystems_RaycastResult__MoveNext, (List_1_T_Enumerator_UnityEngine_EventSystems_RaycastResult_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF250, List_1_T_Enumerator_UnityEngine_EventSystems_RaycastResult__MoveNext__MethodInfo); +DO_APP_FUNC(0x01437330, bool, List_1_T_Enumerator_UnityEngine_EventSystems_RaycastResult__MoveNextRare, (List_1_T_Enumerator_UnityEngine_EventSystems_RaycastResult_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01437480, void, List_1_T_Enumerator_UnityEngine_EventSystems_RaycastResult__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_EventSystems_RaycastResult_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014373B0, Object *, List_1_T_Enumerator_UnityEngine_EventSystems_RaycastResult__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_EventSystems_RaycastResult_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01437380, RaycastResult, List_1_T_Enumerator_UnityEngine_EventSystems_RaycastResult__get_Current, (List_1_T_Enumerator_UnityEngine_EventSystems_RaycastResult_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF248, List_1_T_Enumerator_UnityEngine_EventSystems_RaycastResult__get_Current__MethodInfo); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_Rect___ctor, (List_1_T_Enumerator_UnityEngine_Rect_ * __this, List_1_UnityEngine_Rect_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Rect__Dispose, (List_1_T_Enumerator_UnityEngine_Rect_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01437E50, bool, List_1_T_Enumerator_UnityEngine_Rect__MoveNext, (List_1_T_Enumerator_UnityEngine_Rect_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_Rect__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Rect_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_Rect__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Rect_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_Rect__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Rect_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, Rect, List_1_T_Enumerator_UnityEngine_Rect__get_Current, (List_1_T_Enumerator_UnityEngine_Rect_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01436DA0, void, Stack_1_T_Enumerator_UnityEngine_Rect___ctor, (Stack_1_T_Enumerator_UnityEngine_Rect_ * __this, Stack_1_UnityEngine_Rect_ * stack, MethodInfo * method)); +DO_APP_FUNC(0x01436E20, void, Stack_1_T_Enumerator_UnityEngine_Rect__Dispose, (Stack_1_T_Enumerator_UnityEngine_Rect_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01443B40, bool, Stack_1_T_Enumerator_UnityEngine_Rect__MoveNext, (Stack_1_T_Enumerator_UnityEngine_Rect_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12958, Stack_1_T_Enumerator_UnityEngine_Rect__MoveNext__MethodInfo); +DO_APP_FUNC(0x01443DF0, void, Stack_1_T_Enumerator_UnityEngine_Rect__System_Collections_IEnumerator_Reset, (Stack_1_T_Enumerator_UnityEngine_Rect_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12940, Stack_1_T_Enumerator_UnityEngine_Rect__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x01443D40, Object *, Stack_1_T_Enumerator_UnityEngine_Rect__System_Collections_IEnumerator_get_Current, (Stack_1_T_Enumerator_UnityEngine_Rect_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01443CD0, void, Stack_1_T_Enumerator_UnityEngine_Rect__ThrowEnumerationNotStartedOrEnded, (Stack_1_T_Enumerator_UnityEngine_Rect_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12948, Stack_1_T_Enumerator_UnityEngine_Rect__ThrowEnumerationNotStartedOrEnded__MethodInfo); +DO_APP_FUNC(0x01443C80, Rect, Stack_1_T_Enumerator_UnityEngine_Rect__get_Current, (Stack_1_T_Enumerator_UnityEngine_Rect_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_Rendering_ReflectionProbeBlendInfo___ctor, (List_1_T_Enumerator_UnityEngine_Rendering_ReflectionProbeBlendInfo_ * __this, List_1_UnityEngine_Rendering_ReflectionProbeBlendInfo_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Rendering_ReflectionProbeBlendInfo__Dispose, (List_1_T_Enumerator_UnityEngine_Rendering_ReflectionProbeBlendInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_UnityEngine_Rendering_ReflectionProbeBlendInfo__MoveNext, (List_1_T_Enumerator_UnityEngine_Rendering_ReflectionProbeBlendInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_Rendering_ReflectionProbeBlendInfo__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Rendering_ReflectionProbeBlendInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_Rendering_ReflectionProbeBlendInfo__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Rendering_ReflectionProbeBlendInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_Rendering_ReflectionProbeBlendInfo__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Rendering_ReflectionProbeBlendInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, ReflectionProbeBlendInfo, List_1_T_Enumerator_UnityEngine_Rendering_ReflectionProbeBlendInfo__get_Current, (List_1_T_Enumerator_UnityEngine_Rendering_ReflectionProbeBlendInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_Dissonance_RemoteChannel___ctor, (List_1_T_Enumerator_Dissonance_RemoteChannel_ * __this, List_1_Dissonance_RemoteChannel_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Dissonance_RemoteChannel__Dispose, (List_1_T_Enumerator_Dissonance_RemoteChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434620, bool, List_1_T_Enumerator_Dissonance_RemoteChannel__MoveNext, (List_1_T_Enumerator_Dissonance_RemoteChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_Dissonance_RemoteChannel__MoveNextRare, (List_1_T_Enumerator_Dissonance_RemoteChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_Dissonance_RemoteChannel__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Dissonance_RemoteChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_Dissonance_RemoteChannel__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Dissonance_RemoteChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, RemoteChannel, List_1_T_Enumerator_Dissonance_RemoteChannel__get_Current, (List_1_T_Enumerator_Dissonance_RemoteChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_UIElements_UIR_RenderChainTextEntry___ctor, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_RenderChainTextEntry_ * __this, List_1_UnityEngine_UIElements_UIR_RenderChainTextEntry_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIElements_UIR_RenderChainTextEntry__Dispose, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_RenderChainTextEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_UnityEngine_UIElements_UIR_RenderChainTextEntry__MoveNext, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_RenderChainTextEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_UIElements_UIR_RenderChainTextEntry__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_RenderChainTextEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_UIElements_UIR_RenderChainTextEntry__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_RenderChainTextEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_UIElements_UIR_RenderChainTextEntry__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_RenderChainTextEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, RenderChainTextEntry, List_1_T_Enumerator_UnityEngine_UIElements_UIR_RenderChainTextEntry__get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_RenderChainTextEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438DB0, void, List_1_T_Enumerator_UnityEngine_Rendering_RenderTargetIdentifier___ctor, (List_1_T_Enumerator_UnityEngine_Rendering_RenderTargetIdentifier_ * __this, List_1_UnityEngine_Rendering_RenderTargetIdentifier_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Rendering_RenderTargetIdentifier__Dispose, (List_1_T_Enumerator_UnityEngine_Rendering_RenderTargetIdentifier_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014435B0, bool, List_1_T_Enumerator_UnityEngine_Rendering_RenderTargetIdentifier__MoveNext, (List_1_T_Enumerator_UnityEngine_Rendering_RenderTargetIdentifier_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438F60, bool, List_1_T_Enumerator_UnityEngine_Rendering_RenderTargetIdentifier__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Rendering_RenderTargetIdentifier_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439090, void, List_1_T_Enumerator_UnityEngine_Rendering_RenderTargetIdentifier__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Rendering_RenderTargetIdentifier_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438FD0, Object *, List_1_T_Enumerator_UnityEngine_Rendering_RenderTargetIdentifier__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Rendering_RenderTargetIdentifier_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438FB0, RenderTargetIdentifier, List_1_T_Enumerator_UnityEngine_Rendering_RenderTargetIdentifier__get_Current, (List_1_T_Enumerator_UnityEngine_Rendering_RenderTargetIdentifier_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_Rendering_RendererUtils_RendererList___ctor, (List_1_T_Enumerator_UnityEngine_Rendering_RendererUtils_RendererList_ * __this, List_1_UnityEngine_Rendering_RendererUtils_RendererList_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Rendering_RendererUtils_RendererList__Dispose, (List_1_T_Enumerator_UnityEngine_Rendering_RendererUtils_RendererList_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01437E50, bool, List_1_T_Enumerator_UnityEngine_Rendering_RendererUtils_RendererList__MoveNext, (List_1_T_Enumerator_UnityEngine_Rendering_RendererUtils_RendererList_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_Rendering_RendererUtils_RendererList__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Rendering_RendererUtils_RendererList_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_Rendering_RendererUtils_RendererList__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Rendering_RendererUtils_RendererList_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_Rendering_RendererUtils_RendererList__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Rendering_RendererUtils_RendererList_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, RendererList, List_1_T_Enumerator_UnityEngine_Rendering_RendererUtils_RendererList__get_Current, (List_1_T_Enumerator_UnityEngine_Rendering_RendererUtils_RendererList_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434DE0, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle___ctor, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle_ * __this, List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle__Dispose, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C91A90, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle__Dispose__MethodInfo); -DO_APP_FUNC(0x01434E60, bool, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle__MoveNext, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434E60, bool, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle__MoveNext, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C91A98, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle__MoveNext__MethodInfo); -DO_APP_FUNC(0x01434F00, bool, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434FE0, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434F40, Object *, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, RendererListHandle, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle__get_Current, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434F00, bool, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434FE0, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434F40, Object *, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, RendererListHandle, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle__get_Current, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C91AA0, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle__get_Current__MethodInfo); -DO_APP_FUNC(0x01437EF0, void, List_1_T_Enumerator_UnityEngine_Resolution___ctor, (List_1_T_Enumerator_UnityEngine_Resolution___Boxed * __this, List_1_UnityEngine_Resolution_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Resolution__Dispose, (List_1_T_Enumerator_UnityEngine_Resolution___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437F70, bool, List_1_T_Enumerator_UnityEngine_Resolution__MoveNext, (List_1_T_Enumerator_UnityEngine_Resolution___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438020, bool, List_1_T_Enumerator_UnityEngine_Resolution__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Resolution___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438110, void, List_1_T_Enumerator_UnityEngine_Resolution__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Resolution___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438060, Object *, List_1_T_Enumerator_UnityEngine_Resolution__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Resolution___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C39A10, Resolution, List_1_T_Enumerator_UnityEngine_Resolution__get_Current, (List_1_T_Enumerator_UnityEngine_Resolution___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434DE0, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle___ctor, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle___Boxed * __this, List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle__Dispose, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01437EF0, void, List_1_T_Enumerator_UnityEngine_Resolution___ctor, (List_1_T_Enumerator_UnityEngine_Resolution_ * __this, List_1_UnityEngine_Resolution_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Resolution__Dispose, (List_1_T_Enumerator_UnityEngine_Resolution_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01437F70, bool, List_1_T_Enumerator_UnityEngine_Resolution__MoveNext, (List_1_T_Enumerator_UnityEngine_Resolution_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438020, bool, List_1_T_Enumerator_UnityEngine_Resolution__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Resolution_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438110, void, List_1_T_Enumerator_UnityEngine_Resolution__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Resolution_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438060, Object *, List_1_T_Enumerator_UnityEngine_Resolution__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Resolution_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C39A10, Resolution, List_1_T_Enumerator_UnityEngine_Resolution__get_Current, (List_1_T_Enumerator_UnityEngine_Resolution_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434DE0, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle___ctor, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle_ * __this, List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle__Dispose, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C91AF0, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle__Dispose__MethodInfo); -DO_APP_FUNC(0x01434E60, bool, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle__MoveNext, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434E60, bool, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle__MoveNext, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C91B40, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle__MoveNext__MethodInfo); -DO_APP_FUNC(0x01434F00, bool, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434FE0, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434F40, Object *, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, ResourceHandle, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle__get_Current, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434F00, bool, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434FE0, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434F40, Object *, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, ResourceHandle, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle__get_Current, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C91B48, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle__get_Current__MethodInfo); -DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_Dissonance_RoomMembership___ctor, (List_1_T_Enumerator_Dissonance_RoomMembership___Boxed * __this, List_1_Dissonance_RoomMembership_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Dissonance_RoomMembership__Dispose, (List_1_T_Enumerator_Dissonance_RoomMembership___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01435020, bool, List_1_T_Enumerator_Dissonance_RoomMembership__MoveNext, (List_1_T_Enumerator_Dissonance_RoomMembership___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_Dissonance_RoomMembership__MoveNextRare, (List_1_T_Enumerator_Dissonance_RoomMembership___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_Dissonance_RoomMembership__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Dissonance_RoomMembership___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_Dissonance_RoomMembership__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Dissonance_RoomMembership___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, RoomMembership, List_1_T_Enumerator_Dissonance_RoomMembership__get_Current, (List_1_T_Enumerator_Dissonance_RoomMembership___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_UIElements_RuleMatcher___ctor, (List_1_T_Enumerator_UnityEngine_UIElements_RuleMatcher___Boxed * __this, List_1_UnityEngine_UIElements_RuleMatcher_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIElements_RuleMatcher__Dispose, (List_1_T_Enumerator_UnityEngine_UIElements_RuleMatcher___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_UnityEngine_UIElements_RuleMatcher__MoveNext, (List_1_T_Enumerator_UnityEngine_UIElements_RuleMatcher___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_UIElements_RuleMatcher__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIElements_RuleMatcher___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_UIElements_RuleMatcher__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIElements_RuleMatcher___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_UIElements_RuleMatcher__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_RuleMatcher___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, RuleMatcher, List_1_T_Enumerator_UnityEngine_UIElements_RuleMatcher__get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_RuleMatcher___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439FC0, void, List_1_T_Enumerator_System_SByte___ctor, (List_1_T_Enumerator_System_SByte___Boxed * __this, List_1_System_SByte_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_SByte__Dispose, (List_1_T_Enumerator_System_SByte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143A040, bool, List_1_T_Enumerator_System_SByte__MoveNext, (List_1_T_Enumerator_System_SByte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143A0E0, bool, List_1_T_Enumerator_System_SByte__MoveNextRare, (List_1_T_Enumerator_System_SByte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143A1C0, void, List_1_T_Enumerator_System_SByte__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_SByte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143A120, Object *, List_1_T_Enumerator_System_SByte__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_SByte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD20, int8_t, List_1_T_Enumerator_System_SByte__get_Current, (List_1_T_Enumerator_System_SByte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord___ctor, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord___Boxed * __this, List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__Dispose, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01435020, bool, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__MoveNext, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, SelectorMatchRecord, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143A450, void, ArraySegment_1_T_Enumerator_Single___ctor, (ArraySegment_1_T_Enumerator_Single___Boxed * __this, ArraySegment_1_Single_ arraySegment, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, ArraySegment_1_T_Enumerator_Single__Dispose, (ArraySegment_1_T_Enumerator_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143A590, bool, ArraySegment_1_T_Enumerator_Single__MoveNext, (ArraySegment_1_T_Enumerator_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143A6C0, void, ArraySegment_1_T_Enumerator_Single__System_Collections_IEnumerator_Reset, (ArraySegment_1_T_Enumerator_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01443ED0, Object *, ArraySegment_1_T_Enumerator_Single__System_Collections_IEnumerator_get_Current, (ArraySegment_1_T_Enumerator_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01443E80, float, ArraySegment_1_T_Enumerator_Single__get_Current, (ArraySegment_1_T_Enumerator_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143AF80, void, List_1_T_Enumerator_System_Single___ctor, (List_1_T_Enumerator_System_Single___Boxed * __this, List_1_System_Single_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_Single__Dispose, (List_1_T_Enumerator_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B000, bool, List_1_T_Enumerator_System_Single__MoveNext, (List_1_T_Enumerator_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B0A0, bool, List_1_T_Enumerator_System_Single__MoveNextRare, (List_1_T_Enumerator_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B180, void, List_1_T_Enumerator_System_Single__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01443F90, Object *, List_1_T_Enumerator_System_Single__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC3C0, float, List_1_T_Enumerator_System_Single__get_Current, (List_1_T_Enumerator_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143CB60, void, ReadOnlyArray_1_TValue_Enumerator_System_Single___ctor, (ReadOnlyArray_1_TValue_Enumerator_System_Single___Boxed * __this, Single__Array * array, int32_t index, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, ReadOnlyArray_1_TValue_Enumerator_System_Single__Dispose, (ReadOnlyArray_1_TValue_Enumerator_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143CBD0, bool, ReadOnlyArray_1_TValue_Enumerator_System_Single__MoveNext, (ReadOnlyArray_1_TValue_Enumerator_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143CBF0, void, ReadOnlyArray_1_TValue_Enumerator_System_Single__Reset, (ReadOnlyArray_1_TValue_Enumerator_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014440C0, Object *, ReadOnlyArray_1_TValue_Enumerator_System_Single__System_Collections_IEnumerator_get_Current, (ReadOnlyArray_1_TValue_Enumerator_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01444030, float, ReadOnlyArray_1_TValue_Enumerator_System_Single__get_Current, (ReadOnlyArray_1_TValue_Enumerator_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438DB0, void, List_1_T_Enumerator_Discord_Sku___ctor, (List_1_T_Enumerator_Discord_Sku___Boxed * __this, List_1_Discord_Sku_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Discord_Sku__Dispose, (List_1_T_Enumerator_Discord_Sku___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438E40, bool, List_1_T_Enumerator_Discord_Sku__MoveNext, (List_1_T_Enumerator_Discord_Sku___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438F60, bool, List_1_T_Enumerator_Discord_Sku__MoveNextRare, (List_1_T_Enumerator_Discord_Sku___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439090, void, List_1_T_Enumerator_Discord_Sku__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Discord_Sku___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438FD0, Object *, List_1_T_Enumerator_Discord_Sku__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Discord_Sku___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438FB0, Sku, List_1_T_Enumerator_Discord_Sku__get_Current, (List_1_T_Enumerator_Discord_Sku___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01444140, void, Queue_1_T_Enumerator_Dissonance_Audio_Playback_SpeechSession___ctor, (Queue_1_T_Enumerator_Dissonance_Audio_Playback_SpeechSession___Boxed * __this, Queue_1_Dissonance_Audio_Playback_SpeechSession_ * q, MethodInfo * method)); -DO_APP_FUNC(0x014441D0, void, Queue_1_T_Enumerator_Dissonance_Audio_Playback_SpeechSession__Dispose, (Queue_1_T_Enumerator_Dissonance_Audio_Playback_SpeechSession___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014441F0, bool, Queue_1_T_Enumerator_Dissonance_Audio_Playback_SpeechSession__MoveNext, (Queue_1_T_Enumerator_Dissonance_Audio_Playback_SpeechSession___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014444D0, void, Queue_1_T_Enumerator_Dissonance_Audio_Playback_SpeechSession__System_Collections_IEnumerator_Reset, (Queue_1_T_Enumerator_Dissonance_Audio_Playback_SpeechSession___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01444400, Object *, Queue_1_T_Enumerator_Dissonance_Audio_Playback_SpeechSession__System_Collections_IEnumerator_get_Current, (Queue_1_T_Enumerator_Dissonance_Audio_Playback_SpeechSession___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01444390, void, Queue_1_T_Enumerator_Dissonance_Audio_Playback_SpeechSession__ThrowEnumerationNotStartedOrEnded, (Queue_1_T_Enumerator_Dissonance_Audio_Playback_SpeechSession___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01444330, SpeechSession, Queue_1_T_Enumerator_Dissonance_Audio_Playback_SpeechSession__get_Current, (Queue_1_T_Enumerator_Dissonance_Audio_Playback_SpeechSession___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_System_Net_Security_SslApplicationProtocol___ctor, (List_1_T_Enumerator_System_Net_Security_SslApplicationProtocol___Boxed * __this, List_1_System_Net_Security_SslApplicationProtocol_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_Net_Security_SslApplicationProtocol__Dispose, (List_1_T_Enumerator_System_Net_Security_SslApplicationProtocol___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_System_Net_Security_SslApplicationProtocol__MoveNext, (List_1_T_Enumerator_System_Net_Security_SslApplicationProtocol___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_System_Net_Security_SslApplicationProtocol__MoveNextRare, (List_1_T_Enumerator_System_Net_Security_SslApplicationProtocol___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_System_Net_Security_SslApplicationProtocol__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_Net_Security_SslApplicationProtocol___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_System_Net_Security_SslApplicationProtocol__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_Net_Security_SslApplicationProtocol___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, SslApplicationProtocol, List_1_T_Enumerator_System_Net_Security_SslApplicationProtocol__get_Current, (List_1_T_Enumerator_System_Net_Security_SslApplicationProtocol___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143AF80, void, List_1_T_Enumerator_Steamworks_SteamItemDef_t___ctor, (List_1_T_Enumerator_Steamworks_SteamItemDef_t___Boxed * __this, List_1_Steamworks_SteamItemDef_t_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Steamworks_SteamItemDef_t__Dispose, (List_1_T_Enumerator_Steamworks_SteamItemDef_t___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B000, bool, List_1_T_Enumerator_Steamworks_SteamItemDef_t__MoveNext, (List_1_T_Enumerator_Steamworks_SteamItemDef_t___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B0A0, bool, List_1_T_Enumerator_Steamworks_SteamItemDef_t__MoveNextRare, (List_1_T_Enumerator_Steamworks_SteamItemDef_t___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B180, void, List_1_T_Enumerator_Steamworks_SteamItemDef_t__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Steamworks_SteamItemDef_t___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B0E0, Object *, List_1_T_Enumerator_Steamworks_SteamItemDef_t__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Steamworks_SteamItemDef_t___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, SteamItemDef_t, List_1_T_Enumerator_Steamworks_SteamItemDef_t__get_Current, (List_1_T_Enumerator_Steamworks_SteamItemDef_t___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_Steamworks_SteamItemDetails_t___ctor, (List_1_T_Enumerator_Steamworks_SteamItemDetails_t___Boxed * __this, List_1_Steamworks_SteamItemDetails_t_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Steamworks_SteamItemDetails_t__Dispose, (List_1_T_Enumerator_Steamworks_SteamItemDetails_t___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437E50, bool, List_1_T_Enumerator_Steamworks_SteamItemDetails_t__MoveNext, (List_1_T_Enumerator_Steamworks_SteamItemDetails_t___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_Steamworks_SteamItemDetails_t__MoveNextRare, (List_1_T_Enumerator_Steamworks_SteamItemDetails_t___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_Steamworks_SteamItemDetails_t__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Steamworks_SteamItemDetails_t___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_Steamworks_SteamItemDetails_t__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Steamworks_SteamItemDetails_t___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, SteamItemDetails_t, List_1_T_Enumerator_Steamworks_SteamItemDetails_t__get_Current, (List_1_T_Enumerator_Steamworks_SteamItemDetails_t___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_UIElements_StylePropertyName___ctor, (List_1_T_Enumerator_UnityEngine_UIElements_StylePropertyName___Boxed * __this, List_1_UnityEngine_UIElements_StylePropertyName_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIElements_StylePropertyName__Dispose, (List_1_T_Enumerator_UnityEngine_UIElements_StylePropertyName___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434850, bool, List_1_T_Enumerator_UnityEngine_UIElements_StylePropertyName__MoveNext, (List_1_T_Enumerator_UnityEngine_UIElements_StylePropertyName___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_UIElements_StylePropertyName__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIElements_StylePropertyName___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_UIElements_StylePropertyName__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIElements_StylePropertyName___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_UIElements_StylePropertyName__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_StylePropertyName___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, StylePropertyName, List_1_T_Enumerator_UnityEngine_UIElements_StylePropertyName__get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_StylePropertyName___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StylePropertyValue___ctor, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StylePropertyValue___Boxed * __this, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StylePropertyValue__Dispose, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StylePropertyValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StylePropertyValue__MoveNext, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StylePropertyValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StylePropertyValue__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StylePropertyValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StylePropertyValue__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StylePropertyValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StylePropertyValue__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StylePropertyValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, StylePropertyValue, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StylePropertyValue__get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StylePropertyValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_UnityEngine_UIElements_StyleSelectorPart___ctor, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSelectorPart___Boxed * __this, List_1_UnityEngine_UIElements_StyleSelectorPart_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIElements_StyleSelectorPart__Dispose, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSelectorPart___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01435020, bool, List_1_T_Enumerator_UnityEngine_UIElements_StyleSelectorPart__MoveNext, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSelectorPart___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_UnityEngine_UIElements_StyleSelectorPart__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSelectorPart___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_UnityEngine_UIElements_StyleSelectorPart__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSelectorPart___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_UnityEngine_UIElements_StyleSelectorPart__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSelectorPart___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, StyleSelectorPart, List_1_T_Enumerator_UnityEngine_UIElements_StyleSelectorPart__get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSelectorPart___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken___ctor, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken___Boxed * __this, List_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__Dispose, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439CB0, bool, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__MoveNext, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, StyleSyntaxToken, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValue___ctor, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValue___Boxed * __this, List_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValue__Dispose, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143C4B0, bool, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValue__MoveNext, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValue__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValue__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValue__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, StyleValue, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValue__get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValueManaged___ctor, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValueManaged___Boxed * __this, List_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValueManaged__Dispose, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValueManaged___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434850, bool, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValueManaged__MoveNext, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValueManaged___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValueManaged__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValueManaged___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValueManaged__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValueManaged___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValueManaged__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValueManaged___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, StyleValueManaged, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValueManaged__get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValueManaged___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_UnityEngine_UIElements_StyleVariable___ctor, (List_1_T_Enumerator_UnityEngine_UIElements_StyleVariable___Boxed * __this, List_1_UnityEngine_UIElements_StyleVariable_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIElements_StyleVariable__Dispose, (List_1_T_Enumerator_UnityEngine_UIElements_StyleVariable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01435020, bool, List_1_T_Enumerator_UnityEngine_UIElements_StyleVariable__MoveNext, (List_1_T_Enumerator_UnityEngine_UIElements_StyleVariable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_UnityEngine_UIElements_StyleVariable__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIElements_StyleVariable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_UnityEngine_UIElements_StyleVariable__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIElements_StyleVariable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_UnityEngine_UIElements_StyleVariable__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_StyleVariable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, StyleVariable, List_1_T_Enumerator_UnityEngine_UIElements_StyleVariable__get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_StyleVariable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143BC80, void, List_1_T_Enumerator_UnityEngine_Rendering_SubMeshDescriptor___ctor, (List_1_T_Enumerator_UnityEngine_Rendering_SubMeshDescriptor___Boxed * __this, List_1_UnityEngine_Rendering_SubMeshDescriptor_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Rendering_SubMeshDescriptor__Dispose, (List_1_T_Enumerator_UnityEngine_Rendering_SubMeshDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01444570, bool, List_1_T_Enumerator_UnityEngine_Rendering_SubMeshDescriptor__MoveNext, (List_1_T_Enumerator_UnityEngine_Rendering_SubMeshDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143BE30, bool, List_1_T_Enumerator_UnityEngine_Rendering_SubMeshDescriptor__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Rendering_SubMeshDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143BF60, void, List_1_T_Enumerator_UnityEngine_Rendering_SubMeshDescriptor__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Rendering_SubMeshDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143BEA0, Object *, List_1_T_Enumerator_UnityEngine_Rendering_SubMeshDescriptor__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Rendering_SubMeshDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143BE80, SubMeshDescriptor, List_1_T_Enumerator_UnityEngine_Rendering_SubMeshDescriptor__get_Current, (List_1_T_Enumerator_UnityEngine_Rendering_SubMeshDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, InlinedArray_1_TValue_Enumerator_Substring__Dispose, (InlinedArray_1_TValue_Enumerator_Substring___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143EC80, bool, InlinedArray_1_TValue_Enumerator_Substring__MoveNext, (InlinedArray_1_TValue_Enumerator_Substring___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x006C4180, void, InlinedArray_1_TValue_Enumerator_Substring__Reset, (InlinedArray_1_TValue_Enumerator_Substring___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01444690, Object *, InlinedArray_1_TValue_Enumerator_Substring__System_Collections_IEnumerator_get_Current, (InlinedArray_1_TValue_Enumerator_Substring___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01444630, Substring, InlinedArray_1_TValue_Enumerator_Substring__get_Current, (InlinedArray_1_TValue_Enumerator_Substring___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_Substring___ctor, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_Substring___Boxed * __this, List_1_UnityEngine_InputSystem_Utilities_Substring_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_Substring__Dispose, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_Substring___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_Substring__MoveNext, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_Substring___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_Substring__MoveNextRare, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_Substring___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_Substring__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_Substring___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_Substring__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_Substring___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, Substring, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_Substring__get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_Substring___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01444740, void, NativeArray_1_T_Enumerator_UnityEngine_UIElements_TextVertex___ctor, (NativeArray_1_T_Enumerator_UnityEngine_UIElements_TextVertex___Boxed * __this, NativeArray_1_UnityEngine_UIElements_TextVertex_ array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_UnityEngine_UIElements_TextVertex__Dispose, (NativeArray_1_T_Enumerator_UnityEngine_UIElements_TextVertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01444760, bool, NativeArray_1_T_Enumerator_UnityEngine_UIElements_TextVertex__MoveNext, (NativeArray_1_T_Enumerator_UnityEngine_UIElements_TextVertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_UnityEngine_UIElements_TextVertex__Reset, (NativeArray_1_T_Enumerator_UnityEngine_UIElements_TextVertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01444850, Object *, NativeArray_1_T_Enumerator_UnityEngine_UIElements_TextVertex__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_UnityEngine_UIElements_TextVertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01444830, TextVertex_1, NativeArray_1_T_Enumerator_UnityEngine_UIElements_TextVertex__get_Current, (NativeArray_1_T_Enumerator_UnityEngine_UIElements_TextVertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143E0C0, void, Stack_1_T_Enumerator_UnityEngine_UIElements_TextureId___ctor, (Stack_1_T_Enumerator_UnityEngine_UIElements_TextureId___Boxed * __this, Stack_1_UnityEngine_UIElements_TextureId_ * stack, MethodInfo * method)); -DO_APP_FUNC(0x01436E20, void, Stack_1_T_Enumerator_UnityEngine_UIElements_TextureId__Dispose, (Stack_1_T_Enumerator_UnityEngine_UIElements_TextureId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014448D0, bool, Stack_1_T_Enumerator_UnityEngine_UIElements_TextureId__MoveNext, (Stack_1_T_Enumerator_UnityEngine_UIElements_TextureId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01444B60, void, Stack_1_T_Enumerator_UnityEngine_UIElements_TextureId__System_Collections_IEnumerator_Reset, (Stack_1_T_Enumerator_UnityEngine_UIElements_TextureId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01444AB0, Object *, Stack_1_T_Enumerator_UnityEngine_UIElements_TextureId__System_Collections_IEnumerator_get_Current, (Stack_1_T_Enumerator_UnityEngine_UIElements_TextureId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01444A40, void, Stack_1_T_Enumerator_UnityEngine_UIElements_TextureId__ThrowEnumerationNotStartedOrEnded, (Stack_1_T_Enumerator_UnityEngine_UIElements_TextureId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01444A00, TextureId, Stack_1_T_Enumerator_UnityEngine_UIElements_TextureId__get_Current, (Stack_1_T_Enumerator_UnityEngine_UIElements_TextureId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143EED0, void, NativeArray_1_T_Enumerator_UnityEngine_Tilemaps_TileData___ctor, (NativeArray_1_T_Enumerator_UnityEngine_Tilemaps_TileData___Boxed * __this, NativeArray_1_UnityEngine_Tilemaps_TileData_ array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_UnityEngine_Tilemaps_TileData__Dispose, (NativeArray_1_T_Enumerator_UnityEngine_Tilemaps_TileData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143EF00, bool, NativeArray_1_T_Enumerator_UnityEngine_Tilemaps_TileData__MoveNext, (NativeArray_1_T_Enumerator_UnityEngine_Tilemaps_TileData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_UnityEngine_Tilemaps_TileData__Reset, (NativeArray_1_T_Enumerator_UnityEngine_Tilemaps_TileData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143F040, Object *, NativeArray_1_T_Enumerator_UnityEngine_Tilemaps_TileData__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_UnityEngine_Tilemaps_TileData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143F000, TileData, NativeArray_1_T_Enumerator_UnityEngine_Tilemaps_TileData__get_Current, (NativeArray_1_T_Enumerator_UnityEngine_Tilemaps_TileData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434DE0, void, List_1_T_Enumerator_System_TimeSpan___ctor, (List_1_T_Enumerator_System_TimeSpan___Boxed * __this, List_1_System_TimeSpan_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_TimeSpan__Dispose, (List_1_T_Enumerator_System_TimeSpan___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434E60, bool, List_1_T_Enumerator_System_TimeSpan__MoveNext, (List_1_T_Enumerator_System_TimeSpan___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434F00, bool, List_1_T_Enumerator_System_TimeSpan__MoveNextRare, (List_1_T_Enumerator_System_TimeSpan___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434FE0, void, List_1_T_Enumerator_System_TimeSpan__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_TimeSpan___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434F40, Object *, List_1_T_Enumerator_System_TimeSpan__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_TimeSpan___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, TimeSpan, List_1_T_Enumerator_System_TimeSpan__get_Current, (List_1_T_Enumerator_System_TimeSpan___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434DE0, void, List_1_T_Enumerator_UnityEngine_UIElements_TimeValue___ctor, (List_1_T_Enumerator_UnityEngine_UIElements_TimeValue___Boxed * __this, List_1_UnityEngine_UIElements_TimeValue_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIElements_TimeValue__Dispose, (List_1_T_Enumerator_UnityEngine_UIElements_TimeValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434E60, bool, List_1_T_Enumerator_UnityEngine_UIElements_TimeValue__MoveNext, (List_1_T_Enumerator_UnityEngine_UIElements_TimeValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434F00, bool, List_1_T_Enumerator_UnityEngine_UIElements_TimeValue__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIElements_TimeValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434FE0, void, List_1_T_Enumerator_UnityEngine_UIElements_TimeValue__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIElements_TimeValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434F40, Object *, List_1_T_Enumerator_UnityEngine_UIElements_TimeValue__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_TimeValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, TimeValue, List_1_T_Enumerator_UnityEngine_UIElements_TimeValue__get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_TimeValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143CB60, void, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_EnhancedTouch_Touch___ctor, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_EnhancedTouch_Touch___Boxed * __this, Touch_1__Array * array, int32_t index, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_EnhancedTouch_Touch__Dispose, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_EnhancedTouch_Touch___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_Dissonance_RoomMembership___ctor, (List_1_T_Enumerator_Dissonance_RoomMembership_ * __this, List_1_Dissonance_RoomMembership_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Dissonance_RoomMembership__Dispose, (List_1_T_Enumerator_Dissonance_RoomMembership_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01435020, bool, List_1_T_Enumerator_Dissonance_RoomMembership__MoveNext, (List_1_T_Enumerator_Dissonance_RoomMembership_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_Dissonance_RoomMembership__MoveNextRare, (List_1_T_Enumerator_Dissonance_RoomMembership_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_Dissonance_RoomMembership__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Dissonance_RoomMembership_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_Dissonance_RoomMembership__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Dissonance_RoomMembership_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, RoomMembership, List_1_T_Enumerator_Dissonance_RoomMembership__get_Current, (List_1_T_Enumerator_Dissonance_RoomMembership_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_UIElements_RuleMatcher___ctor, (List_1_T_Enumerator_UnityEngine_UIElements_RuleMatcher_ * __this, List_1_UnityEngine_UIElements_RuleMatcher_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIElements_RuleMatcher__Dispose, (List_1_T_Enumerator_UnityEngine_UIElements_RuleMatcher_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_UnityEngine_UIElements_RuleMatcher__MoveNext, (List_1_T_Enumerator_UnityEngine_UIElements_RuleMatcher_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_UIElements_RuleMatcher__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIElements_RuleMatcher_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_UIElements_RuleMatcher__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIElements_RuleMatcher_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_UIElements_RuleMatcher__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_RuleMatcher_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, RuleMatcher, List_1_T_Enumerator_UnityEngine_UIElements_RuleMatcher__get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_RuleMatcher_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439FC0, void, List_1_T_Enumerator_System_SByte___ctor, (List_1_T_Enumerator_System_SByte_ * __this, List_1_System_SByte_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_SByte__Dispose, (List_1_T_Enumerator_System_SByte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143A040, bool, List_1_T_Enumerator_System_SByte__MoveNext, (List_1_T_Enumerator_System_SByte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143A0E0, bool, List_1_T_Enumerator_System_SByte__MoveNextRare, (List_1_T_Enumerator_System_SByte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143A1C0, void, List_1_T_Enumerator_System_SByte__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_SByte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143A120, Object *, List_1_T_Enumerator_System_SByte__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_SByte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD20, int8_t, List_1_T_Enumerator_System_SByte__get_Current, (List_1_T_Enumerator_System_SByte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord___ctor, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * __this, List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__Dispose, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE180, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__Dispose__MethodInfo); +DO_APP_FUNC(0x01435020, bool, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__MoveNext, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE1B8, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__MoveNext__MethodInfo); +DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, SelectorMatchRecord, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE1A0, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__get_Current__MethodInfo); +DO_APP_FUNC(0x0143A450, void, ArraySegment_1_T_Enumerator_Single___ctor, (ArraySegment_1_T_Enumerator_Single_ * __this, ArraySegment_1_Single_ arraySegment, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, ArraySegment_1_T_Enumerator_Single__Dispose, (ArraySegment_1_T_Enumerator_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143A590, bool, ArraySegment_1_T_Enumerator_Single__MoveNext, (ArraySegment_1_T_Enumerator_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143A6C0, void, ArraySegment_1_T_Enumerator_Single__System_Collections_IEnumerator_Reset, (ArraySegment_1_T_Enumerator_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01443ED0, Object *, ArraySegment_1_T_Enumerator_Single__System_Collections_IEnumerator_get_Current, (ArraySegment_1_T_Enumerator_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01443E80, float, ArraySegment_1_T_Enumerator_Single__get_Current, (ArraySegment_1_T_Enumerator_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143AF80, void, List_1_T_Enumerator_System_Single___ctor, (List_1_T_Enumerator_System_Single_ * __this, List_1_System_Single_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_Single__Dispose, (List_1_T_Enumerator_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143B000, bool, List_1_T_Enumerator_System_Single__MoveNext, (List_1_T_Enumerator_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143B0A0, bool, List_1_T_Enumerator_System_Single__MoveNextRare, (List_1_T_Enumerator_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143B180, void, List_1_T_Enumerator_System_Single__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01443F90, Object *, List_1_T_Enumerator_System_Single__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC3C0, float, List_1_T_Enumerator_System_Single__get_Current, (List_1_T_Enumerator_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143CB60, void, ReadOnlyArray_1_TValue_Enumerator_System_Single___ctor, (ReadOnlyArray_1_TValue_Enumerator_System_Single_ * __this, Single__Array * array, int32_t index, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, ReadOnlyArray_1_TValue_Enumerator_System_Single__Dispose, (ReadOnlyArray_1_TValue_Enumerator_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143CBD0, bool, ReadOnlyArray_1_TValue_Enumerator_System_Single__MoveNext, (ReadOnlyArray_1_TValue_Enumerator_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143CBF0, void, ReadOnlyArray_1_TValue_Enumerator_System_Single__Reset, (ReadOnlyArray_1_TValue_Enumerator_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014440C0, Object *, ReadOnlyArray_1_TValue_Enumerator_System_Single__System_Collections_IEnumerator_get_Current, (ReadOnlyArray_1_TValue_Enumerator_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01444030, float, ReadOnlyArray_1_TValue_Enumerator_System_Single__get_Current, (ReadOnlyArray_1_TValue_Enumerator_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12938, ReadOnlyArray_1_TValue_Enumerator_System_Single__get_Current__MethodInfo); +DO_APP_FUNC(0x01438DB0, void, List_1_T_Enumerator_Discord_Sku___ctor, (List_1_T_Enumerator_Discord_Sku_ * __this, List_1_Discord_Sku_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Discord_Sku__Dispose, (List_1_T_Enumerator_Discord_Sku_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438E40, bool, List_1_T_Enumerator_Discord_Sku__MoveNext, (List_1_T_Enumerator_Discord_Sku_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438F60, bool, List_1_T_Enumerator_Discord_Sku__MoveNextRare, (List_1_T_Enumerator_Discord_Sku_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439090, void, List_1_T_Enumerator_Discord_Sku__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Discord_Sku_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438FD0, Object *, List_1_T_Enumerator_Discord_Sku__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Discord_Sku_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438FB0, Sku, List_1_T_Enumerator_Discord_Sku__get_Current, (List_1_T_Enumerator_Discord_Sku_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01444140, void, Queue_1_T_Enumerator_Dissonance_Audio_Playback_SpeechSession___ctor, (Queue_1_T_Enumerator_Dissonance_Audio_Playback_SpeechSession_ * __this, Queue_1_Dissonance_Audio_Playback_SpeechSession_ * q, MethodInfo * method)); +DO_APP_FUNC(0x014441D0, void, Queue_1_T_Enumerator_Dissonance_Audio_Playback_SpeechSession__Dispose, (Queue_1_T_Enumerator_Dissonance_Audio_Playback_SpeechSession_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014441F0, bool, Queue_1_T_Enumerator_Dissonance_Audio_Playback_SpeechSession__MoveNext, (Queue_1_T_Enumerator_Dissonance_Audio_Playback_SpeechSession_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12878, Queue_1_T_Enumerator_Dissonance_Audio_Playback_SpeechSession__MoveNext__MethodInfo); +DO_APP_FUNC(0x014444D0, void, Queue_1_T_Enumerator_Dissonance_Audio_Playback_SpeechSession__System_Collections_IEnumerator_Reset, (Queue_1_T_Enumerator_Dissonance_Audio_Playback_SpeechSession_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12858, Queue_1_T_Enumerator_Dissonance_Audio_Playback_SpeechSession__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x01444400, Object *, Queue_1_T_Enumerator_Dissonance_Audio_Playback_SpeechSession__System_Collections_IEnumerator_get_Current, (Queue_1_T_Enumerator_Dissonance_Audio_Playback_SpeechSession_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01444390, void, Queue_1_T_Enumerator_Dissonance_Audio_Playback_SpeechSession__ThrowEnumerationNotStartedOrEnded, (Queue_1_T_Enumerator_Dissonance_Audio_Playback_SpeechSession_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12868, Queue_1_T_Enumerator_Dissonance_Audio_Playback_SpeechSession__ThrowEnumerationNotStartedOrEnded__MethodInfo); +DO_APP_FUNC(0x01444330, SpeechSession, Queue_1_T_Enumerator_Dissonance_Audio_Playback_SpeechSession__get_Current, (Queue_1_T_Enumerator_Dissonance_Audio_Playback_SpeechSession_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_System_Net_Security_SslApplicationProtocol___ctor, (List_1_T_Enumerator_System_Net_Security_SslApplicationProtocol_ * __this, List_1_System_Net_Security_SslApplicationProtocol_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_Net_Security_SslApplicationProtocol__Dispose, (List_1_T_Enumerator_System_Net_Security_SslApplicationProtocol_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_System_Net_Security_SslApplicationProtocol__MoveNext, (List_1_T_Enumerator_System_Net_Security_SslApplicationProtocol_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_System_Net_Security_SslApplicationProtocol__MoveNextRare, (List_1_T_Enumerator_System_Net_Security_SslApplicationProtocol_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_System_Net_Security_SslApplicationProtocol__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_Net_Security_SslApplicationProtocol_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_System_Net_Security_SslApplicationProtocol__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_Net_Security_SslApplicationProtocol_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, SslApplicationProtocol, List_1_T_Enumerator_System_Net_Security_SslApplicationProtocol__get_Current, (List_1_T_Enumerator_System_Net_Security_SslApplicationProtocol_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143AF80, void, List_1_T_Enumerator_Steamworks_SteamItemDef_t___ctor, (List_1_T_Enumerator_Steamworks_SteamItemDef_t_ * __this, List_1_Steamworks_SteamItemDef_t_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Steamworks_SteamItemDef_t__Dispose, (List_1_T_Enumerator_Steamworks_SteamItemDef_t_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17250, List_1_T_Enumerator_Steamworks_SteamItemDef_t__Dispose__MethodInfo); +DO_APP_FUNC(0x0143B000, bool, List_1_T_Enumerator_Steamworks_SteamItemDef_t__MoveNext, (List_1_T_Enumerator_Steamworks_SteamItemDef_t_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D171F8, List_1_T_Enumerator_Steamworks_SteamItemDef_t__MoveNext__MethodInfo); +DO_APP_FUNC(0x0143B0A0, bool, List_1_T_Enumerator_Steamworks_SteamItemDef_t__MoveNextRare, (List_1_T_Enumerator_Steamworks_SteamItemDef_t_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143B180, void, List_1_T_Enumerator_Steamworks_SteamItemDef_t__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Steamworks_SteamItemDef_t_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143B0E0, Object *, List_1_T_Enumerator_Steamworks_SteamItemDef_t__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Steamworks_SteamItemDef_t_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, SteamItemDef_t, List_1_T_Enumerator_Steamworks_SteamItemDef_t__get_Current, (List_1_T_Enumerator_Steamworks_SteamItemDef_t_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D171F0, List_1_T_Enumerator_Steamworks_SteamItemDef_t__get_Current__MethodInfo); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_Steamworks_SteamItemDetails_t___ctor, (List_1_T_Enumerator_Steamworks_SteamItemDetails_t_ * __this, List_1_Steamworks_SteamItemDetails_t_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Steamworks_SteamItemDetails_t__Dispose, (List_1_T_Enumerator_Steamworks_SteamItemDetails_t_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01437E50, bool, List_1_T_Enumerator_Steamworks_SteamItemDetails_t__MoveNext, (List_1_T_Enumerator_Steamworks_SteamItemDetails_t_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_Steamworks_SteamItemDetails_t__MoveNextRare, (List_1_T_Enumerator_Steamworks_SteamItemDetails_t_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_Steamworks_SteamItemDetails_t__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Steamworks_SteamItemDetails_t_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_Steamworks_SteamItemDetails_t__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Steamworks_SteamItemDetails_t_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, SteamItemDetails_t, List_1_T_Enumerator_Steamworks_SteamItemDetails_t__get_Current, (List_1_T_Enumerator_Steamworks_SteamItemDetails_t_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_UIElements_StylePropertyName___ctor, (List_1_T_Enumerator_UnityEngine_UIElements_StylePropertyName_ * __this, List_1_UnityEngine_UIElements_StylePropertyName_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIElements_StylePropertyName__Dispose, (List_1_T_Enumerator_UnityEngine_UIElements_StylePropertyName_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6590, List_1_T_Enumerator_UnityEngine_UIElements_StylePropertyName__Dispose__MethodInfo); +DO_APP_FUNC(0x01434850, bool, List_1_T_Enumerator_UnityEngine_UIElements_StylePropertyName__MoveNext, (List_1_T_Enumerator_UnityEngine_UIElements_StylePropertyName_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6580, List_1_T_Enumerator_UnityEngine_UIElements_StylePropertyName__MoveNext__MethodInfo); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_UIElements_StylePropertyName__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIElements_StylePropertyName_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_UIElements_StylePropertyName__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIElements_StylePropertyName_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_UIElements_StylePropertyName__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_StylePropertyName_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, StylePropertyName, List_1_T_Enumerator_UnityEngine_UIElements_StylePropertyName__get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_StylePropertyName_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6598, List_1_T_Enumerator_UnityEngine_UIElements_StylePropertyName__get_Current__MethodInfo); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StylePropertyValue___ctor, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StylePropertyValue__Dispose, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StylePropertyValue__MoveNext, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StylePropertyValue__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StylePropertyValue__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StylePropertyValue__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, StylePropertyValue, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StylePropertyValue__get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_UnityEngine_UIElements_StyleSelectorPart___ctor, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSelectorPart_ * __this, List_1_UnityEngine_UIElements_StyleSelectorPart_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIElements_StyleSelectorPart__Dispose, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSelectorPart_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01435020, bool, List_1_T_Enumerator_UnityEngine_UIElements_StyleSelectorPart__MoveNext, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSelectorPart_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_UnityEngine_UIElements_StyleSelectorPart__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSelectorPart_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_UnityEngine_UIElements_StyleSelectorPart__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSelectorPart_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_UnityEngine_UIElements_StyleSelectorPart__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSelectorPart_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, StyleSelectorPart, List_1_T_Enumerator_UnityEngine_UIElements_StyleSelectorPart__get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSelectorPart_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken___ctor, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ * __this, List_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__Dispose, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439CB0, bool, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__MoveNext, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, StyleSyntaxToken, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValue___ctor, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValue_ * __this, List_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValue__Dispose, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValue_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6B88, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValue__Dispose__MethodInfo); +DO_APP_FUNC(0x0143C4B0, bool, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValue__MoveNext, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValue_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6B78, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValue__MoveNext__MethodInfo); +DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValue__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValue__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValue__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, StyleValue, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValue__get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValue_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6B80, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValue__get_Current__MethodInfo); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValueManaged___ctor, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValueManaged_ * __this, List_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValueManaged__Dispose, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValueManaged_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5E58, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValueManaged__Dispose__MethodInfo); +DO_APP_FUNC(0x01434850, bool, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValueManaged__MoveNext, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValueManaged_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5E80, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValueManaged__MoveNext__MethodInfo); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValueManaged__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValueManaged_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValueManaged__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValueManaged_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValueManaged__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValueManaged_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, StyleValueManaged, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValueManaged__get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValueManaged_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5E70, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValueManaged__get_Current__MethodInfo); +DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_UnityEngine_UIElements_StyleVariable___ctor, (List_1_T_Enumerator_UnityEngine_UIElements_StyleVariable_ * __this, List_1_UnityEngine_UIElements_StyleVariable_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIElements_StyleVariable__Dispose, (List_1_T_Enumerator_UnityEngine_UIElements_StyleVariable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01435020, bool, List_1_T_Enumerator_UnityEngine_UIElements_StyleVariable__MoveNext, (List_1_T_Enumerator_UnityEngine_UIElements_StyleVariable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_UnityEngine_UIElements_StyleVariable__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIElements_StyleVariable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_UnityEngine_UIElements_StyleVariable__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIElements_StyleVariable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_UnityEngine_UIElements_StyleVariable__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_StyleVariable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, StyleVariable, List_1_T_Enumerator_UnityEngine_UIElements_StyleVariable__get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_StyleVariable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143BC80, void, List_1_T_Enumerator_UnityEngine_Rendering_SubMeshDescriptor___ctor, (List_1_T_Enumerator_UnityEngine_Rendering_SubMeshDescriptor_ * __this, List_1_UnityEngine_Rendering_SubMeshDescriptor_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Rendering_SubMeshDescriptor__Dispose, (List_1_T_Enumerator_UnityEngine_Rendering_SubMeshDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01444570, bool, List_1_T_Enumerator_UnityEngine_Rendering_SubMeshDescriptor__MoveNext, (List_1_T_Enumerator_UnityEngine_Rendering_SubMeshDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143BE30, bool, List_1_T_Enumerator_UnityEngine_Rendering_SubMeshDescriptor__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Rendering_SubMeshDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143BF60, void, List_1_T_Enumerator_UnityEngine_Rendering_SubMeshDescriptor__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Rendering_SubMeshDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143BEA0, Object *, List_1_T_Enumerator_UnityEngine_Rendering_SubMeshDescriptor__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Rendering_SubMeshDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143BE80, SubMeshDescriptor, List_1_T_Enumerator_UnityEngine_Rendering_SubMeshDescriptor__get_Current, (List_1_T_Enumerator_UnityEngine_Rendering_SubMeshDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, InlinedArray_1_TValue_Enumerator_Substring__Dispose, (InlinedArray_1_TValue_Enumerator_Substring_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143EC80, bool, InlinedArray_1_TValue_Enumerator_Substring__MoveNext, (InlinedArray_1_TValue_Enumerator_Substring_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x006C4180, void, InlinedArray_1_TValue_Enumerator_Substring__Reset, (InlinedArray_1_TValue_Enumerator_Substring_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01444690, Object *, InlinedArray_1_TValue_Enumerator_Substring__System_Collections_IEnumerator_get_Current, (InlinedArray_1_TValue_Enumerator_Substring_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01444630, Substring, InlinedArray_1_TValue_Enumerator_Substring__get_Current, (InlinedArray_1_TValue_Enumerator_Substring_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_Substring___ctor, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_Substring_ * __this, List_1_UnityEngine_InputSystem_Utilities_Substring_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_Substring__Dispose, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_Substring_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_Substring__MoveNext, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_Substring_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_Substring__MoveNextRare, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_Substring_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_Substring__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_Substring_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_Substring__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_Substring_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, Substring, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_Substring__get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_Substring_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01444740, void, NativeArray_1_T_Enumerator_UnityEngine_UIElements_TextVertex___ctor, (NativeArray_1_T_Enumerator_UnityEngine_UIElements_TextVertex_ * __this, NativeArray_1_UnityEngine_UIElements_TextVertex_ * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_UnityEngine_UIElements_TextVertex__Dispose, (NativeArray_1_T_Enumerator_UnityEngine_UIElements_TextVertex_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01444760, bool, NativeArray_1_T_Enumerator_UnityEngine_UIElements_TextVertex__MoveNext, (NativeArray_1_T_Enumerator_UnityEngine_UIElements_TextVertex_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_UnityEngine_UIElements_TextVertex__Reset, (NativeArray_1_T_Enumerator_UnityEngine_UIElements_TextVertex_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01444850, Object *, NativeArray_1_T_Enumerator_UnityEngine_UIElements_TextVertex__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_UnityEngine_UIElements_TextVertex_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01444830, TextVertex_1, NativeArray_1_T_Enumerator_UnityEngine_UIElements_TextVertex__get_Current, (NativeArray_1_T_Enumerator_UnityEngine_UIElements_TextVertex_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143E0C0, void, Stack_1_T_Enumerator_UnityEngine_UIElements_TextureId___ctor, (Stack_1_T_Enumerator_UnityEngine_UIElements_TextureId_ * __this, Stack_1_UnityEngine_UIElements_TextureId_ * stack, MethodInfo * method)); +DO_APP_FUNC(0x01436E20, void, Stack_1_T_Enumerator_UnityEngine_UIElements_TextureId__Dispose, (Stack_1_T_Enumerator_UnityEngine_UIElements_TextureId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014448D0, bool, Stack_1_T_Enumerator_UnityEngine_UIElements_TextureId__MoveNext, (Stack_1_T_Enumerator_UnityEngine_UIElements_TextureId_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12848, Stack_1_T_Enumerator_UnityEngine_UIElements_TextureId__MoveNext__MethodInfo); +DO_APP_FUNC(0x01444B60, void, Stack_1_T_Enumerator_UnityEngine_UIElements_TextureId__System_Collections_IEnumerator_Reset, (Stack_1_T_Enumerator_UnityEngine_UIElements_TextureId_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12828, Stack_1_T_Enumerator_UnityEngine_UIElements_TextureId__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x01444AB0, Object *, Stack_1_T_Enumerator_UnityEngine_UIElements_TextureId__System_Collections_IEnumerator_get_Current, (Stack_1_T_Enumerator_UnityEngine_UIElements_TextureId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01444A40, void, Stack_1_T_Enumerator_UnityEngine_UIElements_TextureId__ThrowEnumerationNotStartedOrEnded, (Stack_1_T_Enumerator_UnityEngine_UIElements_TextureId_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12838, Stack_1_T_Enumerator_UnityEngine_UIElements_TextureId__ThrowEnumerationNotStartedOrEnded__MethodInfo); +DO_APP_FUNC(0x01444A00, TextureId, Stack_1_T_Enumerator_UnityEngine_UIElements_TextureId__get_Current, (Stack_1_T_Enumerator_UnityEngine_UIElements_TextureId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143EED0, void, NativeArray_1_T_Enumerator_UnityEngine_Tilemaps_TileData___ctor, (NativeArray_1_T_Enumerator_UnityEngine_Tilemaps_TileData_ * __this, NativeArray_1_UnityEngine_Tilemaps_TileData_ * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_UnityEngine_Tilemaps_TileData__Dispose, (NativeArray_1_T_Enumerator_UnityEngine_Tilemaps_TileData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143EF00, bool, NativeArray_1_T_Enumerator_UnityEngine_Tilemaps_TileData__MoveNext, (NativeArray_1_T_Enumerator_UnityEngine_Tilemaps_TileData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_UnityEngine_Tilemaps_TileData__Reset, (NativeArray_1_T_Enumerator_UnityEngine_Tilemaps_TileData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143F040, Object *, NativeArray_1_T_Enumerator_UnityEngine_Tilemaps_TileData__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_UnityEngine_Tilemaps_TileData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143F000, TileData, NativeArray_1_T_Enumerator_UnityEngine_Tilemaps_TileData__get_Current, (NativeArray_1_T_Enumerator_UnityEngine_Tilemaps_TileData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434DE0, void, List_1_T_Enumerator_System_TimeSpan___ctor, (List_1_T_Enumerator_System_TimeSpan_ * __this, List_1_System_TimeSpan_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_TimeSpan__Dispose, (List_1_T_Enumerator_System_TimeSpan_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434E60, bool, List_1_T_Enumerator_System_TimeSpan__MoveNext, (List_1_T_Enumerator_System_TimeSpan_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434F00, bool, List_1_T_Enumerator_System_TimeSpan__MoveNextRare, (List_1_T_Enumerator_System_TimeSpan_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434FE0, void, List_1_T_Enumerator_System_TimeSpan__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_TimeSpan_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434F40, Object *, List_1_T_Enumerator_System_TimeSpan__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_TimeSpan_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, TimeSpan, List_1_T_Enumerator_System_TimeSpan__get_Current, (List_1_T_Enumerator_System_TimeSpan_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434DE0, void, List_1_T_Enumerator_UnityEngine_UIElements_TimeValue___ctor, (List_1_T_Enumerator_UnityEngine_UIElements_TimeValue_ * __this, List_1_UnityEngine_UIElements_TimeValue_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIElements_TimeValue__Dispose, (List_1_T_Enumerator_UnityEngine_UIElements_TimeValue_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6018, List_1_T_Enumerator_UnityEngine_UIElements_TimeValue__Dispose__MethodInfo); +DO_APP_FUNC(0x01434E60, bool, List_1_T_Enumerator_UnityEngine_UIElements_TimeValue__MoveNext, (List_1_T_Enumerator_UnityEngine_UIElements_TimeValue_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6000, List_1_T_Enumerator_UnityEngine_UIElements_TimeValue__MoveNext__MethodInfo); +DO_APP_FUNC(0x01434F00, bool, List_1_T_Enumerator_UnityEngine_UIElements_TimeValue__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIElements_TimeValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434FE0, void, List_1_T_Enumerator_UnityEngine_UIElements_TimeValue__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIElements_TimeValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434F40, Object *, List_1_T_Enumerator_UnityEngine_UIElements_TimeValue__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_TimeValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, TimeValue, List_1_T_Enumerator_UnityEngine_UIElements_TimeValue__get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_TimeValue_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5F18, List_1_T_Enumerator_UnityEngine_UIElements_TimeValue__get_Current__MethodInfo); +DO_APP_FUNC(0x0143CB60, void, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_EnhancedTouch_Touch___ctor, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_EnhancedTouch_Touch_ * __this, Touch_1__Array * array, int32_t index, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_EnhancedTouch_Touch__Dispose, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_EnhancedTouch_Touch_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C95BA8, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_EnhancedTouch_Touch__Dispose__MethodInfo); -DO_APP_FUNC(0x0143CBD0, bool, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_EnhancedTouch_Touch__MoveNext, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_EnhancedTouch_Touch___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143CBD0, bool, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_EnhancedTouch_Touch__MoveNext, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_EnhancedTouch_Touch_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C95BB0, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_EnhancedTouch_Touch__MoveNext__MethodInfo); -DO_APP_FUNC(0x0143CBF0, void, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_EnhancedTouch_Touch__Reset, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_EnhancedTouch_Touch___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01444CA0, Object *, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_EnhancedTouch_Touch__System_Collections_IEnumerator_get_Current, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_EnhancedTouch_Touch___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01444BF0, Touch_1, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_EnhancedTouch_Touch__get_Current, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_EnhancedTouch_Touch___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01444D30, void, InputStateHistory_1_TValue_Enumerator_TouchState___ctor, (InputStateHistory_1_TValue_Enumerator_TouchState___Boxed * __this, InputStateHistory_1_TouchState_ * history, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, InputStateHistory_1_TValue_Enumerator_TouchState__Dispose, (InputStateHistory_1_TValue_Enumerator_TouchState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01444DA0, bool, InputStateHistory_1_TValue_Enumerator_TouchState__MoveNext, (InputStateHistory_1_TValue_Enumerator_TouchState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014430F0, void, InputStateHistory_1_TValue_Enumerator_TouchState__Reset, (InputStateHistory_1_TValue_Enumerator_TouchState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01444E80, Object *, InputStateHistory_1_TValue_Enumerator_TouchState__System_Collections_IEnumerator_get_Current, (InputStateHistory_1_TValue_Enumerator_TouchState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01444DD0, InputStateHistory_1_TValue_Record_TouchState_, InputStateHistory_1_TValue_Enumerator_TouchState__get_Current, (InputStateHistory_1_TValue_Enumerator_TouchState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143C650, void, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId___ctor, (NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId___Boxed * __this, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId_ array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId__Dispose, (NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143CBF0, void, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_EnhancedTouch_Touch__Reset, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_EnhancedTouch_Touch_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01444CA0, Object *, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_EnhancedTouch_Touch__System_Collections_IEnumerator_get_Current, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_EnhancedTouch_Touch_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01444BF0, Touch_1, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_EnhancedTouch_Touch__get_Current, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_EnhancedTouch_Touch_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12820, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_EnhancedTouch_Touch__get_Current__MethodInfo); +DO_APP_FUNC(0x01444D30, void, InputStateHistory_1_TValue_Enumerator_TouchState___ctor, (InputStateHistory_1_TValue_Enumerator_TouchState_ * __this, InputStateHistory_1_TouchState_ * history, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, InputStateHistory_1_TValue_Enumerator_TouchState__Dispose, (InputStateHistory_1_TValue_Enumerator_TouchState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01444DA0, bool, InputStateHistory_1_TValue_Enumerator_TouchState__MoveNext, (InputStateHistory_1_TValue_Enumerator_TouchState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014430F0, void, InputStateHistory_1_TValue_Enumerator_TouchState__Reset, (InputStateHistory_1_TValue_Enumerator_TouchState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01444E80, Object *, InputStateHistory_1_TValue_Enumerator_TouchState__System_Collections_IEnumerator_get_Current, (InputStateHistory_1_TValue_Enumerator_TouchState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01444DD0, InputStateHistory_1_TValue_Record_TouchState_, InputStateHistory_1_TValue_Enumerator_TouchState__get_Current, (InputStateHistory_1_TValue_Enumerator_TouchState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143C650, void, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId___ctor, (NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_ * __this, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId_ * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId__Dispose, (NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA8D50, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId__Dispose__MethodInfo); -DO_APP_FUNC(0x0143C670, bool, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId__MoveNext, (NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143C670, bool, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId__MoveNext, (NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA8D58, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId__MoveNext__MethodInfo); -DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId__Reset, (NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143C740, Object *, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143C730, TrackableId, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId__get_Current, (NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId__Reset, (NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143C740, Object *, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143C730, TrackableId, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId__get_Current, (NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA8D60, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId__get_Current__MethodInfo); -DO_APP_FUNC(0x01444F10, void, NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_Transform3x4___ctor, (NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_Transform3x4___Boxed * __this, NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4_ array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_Transform3x4__Dispose, (NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_Transform3x4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01444F30, bool, NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_Transform3x4__MoveNext, (NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_Transform3x4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_Transform3x4__Reset, (NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_Transform3x4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01445030, Object *, NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_Transform3x4__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_Transform3x4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01445010, Transform3x4, NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_Transform3x4__get_Current, (NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_Transform3x4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143C040, void, NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_Transform3x4___ctor, (NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_Transform3x4___Boxed * __this, NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4_ array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_Transform3x4__Dispose, (NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_Transform3x4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143C050, bool, NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_Transform3x4__MoveNext, (NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_Transform3x4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439B10, void, NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_Transform3x4__Reset, (NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_Transform3x4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01445140, Object *, NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_Transform3x4__System_Collections_IEnumerator_get_Current, (NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_Transform3x4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014450C0, Transform3x4, NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_Transform3x4__get_Current, (NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_Transform3x4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_UnityEngine_UIElements_TreeViewItemWrapper___ctor, (List_1_T_Enumerator_UnityEngine_UIElements_TreeViewItemWrapper___Boxed * __this, List_1_UnityEngine_UIElements_TreeViewItemWrapper_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIElements_TreeViewItemWrapper__Dispose, (List_1_T_Enumerator_UnityEngine_UIElements_TreeViewItemWrapper___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439CB0, bool, List_1_T_Enumerator_UnityEngine_UIElements_TreeViewItemWrapper__MoveNext, (List_1_T_Enumerator_UnityEngine_UIElements_TreeViewItemWrapper___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_UnityEngine_UIElements_TreeViewItemWrapper__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIElements_TreeViewItemWrapper___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_UnityEngine_UIElements_TreeViewItemWrapper__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIElements_TreeViewItemWrapper___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_UnityEngine_UIElements_TreeViewItemWrapper__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_TreeViewItemWrapper___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, TreeViewItemWrapper, List_1_T_Enumerator_UnityEngine_UIElements_TreeViewItemWrapper__get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_TreeViewItemWrapper___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341F0, void, List_1_T_Enumerator_Rewired_Utils_Classes_Data_TypeWrapper___ctor, (List_1_T_Enumerator_Rewired_Utils_Classes_Data_TypeWrapper___Boxed * __this, List_1_Rewired_Utils_Classes_Data_TypeWrapper_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Rewired_Utils_Classes_Data_TypeWrapper__Dispose, (List_1_T_Enumerator_Rewired_Utils_Classes_Data_TypeWrapper___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01445220, bool, List_1_T_Enumerator_Rewired_Utils_Classes_Data_TypeWrapper__MoveNext, (List_1_T_Enumerator_Rewired_Utils_Classes_Data_TypeWrapper___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434370, bool, List_1_T_Enumerator_Rewired_Utils_Classes_Data_TypeWrapper__MoveNextRare, (List_1_T_Enumerator_Rewired_Utils_Classes_Data_TypeWrapper___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434460, void, List_1_T_Enumerator_Rewired_Utils_Classes_Data_TypeWrapper__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Rewired_Utils_Classes_Data_TypeWrapper___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014343B0, Object *, List_1_T_Enumerator_Rewired_Utils_Classes_Data_TypeWrapper__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Rewired_Utils_Classes_Data_TypeWrapper___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01204560, TypeWrapper, List_1_T_Enumerator_Rewired_Utils_Classes_Data_TypeWrapper__get_Current, (List_1_T_Enumerator_Rewired_Utils_Classes_Data_TypeWrapper___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437EF0, void, List_1_T_Enumerator_UnityEngine_UICharInfo___ctor, (List_1_T_Enumerator_UnityEngine_UICharInfo___Boxed * __this, List_1_UnityEngine_UICharInfo_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UICharInfo__Dispose, (List_1_T_Enumerator_UnityEngine_UICharInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437F70, bool, List_1_T_Enumerator_UnityEngine_UICharInfo__MoveNext, (List_1_T_Enumerator_UnityEngine_UICharInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438020, bool, List_1_T_Enumerator_UnityEngine_UICharInfo__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UICharInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438110, void, List_1_T_Enumerator_UnityEngine_UICharInfo__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UICharInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438060, Object *, List_1_T_Enumerator_UnityEngine_UICharInfo__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UICharInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C39A10, UICharInfo, List_1_T_Enumerator_UnityEngine_UICharInfo__get_Current, (List_1_T_Enumerator_UnityEngine_UICharInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_UILineInfo___ctor, (List_1_T_Enumerator_UnityEngine_UILineInfo___Boxed * __this, List_1_UnityEngine_UILineInfo_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UILineInfo__Dispose, (List_1_T_Enumerator_UnityEngine_UILineInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437E50, bool, List_1_T_Enumerator_UnityEngine_UILineInfo__MoveNext, (List_1_T_Enumerator_UnityEngine_UILineInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_UILineInfo__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UILineInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_UILineInfo__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UILineInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_UILineInfo__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UILineInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, UILineInfo, List_1_T_Enumerator_UnityEngine_UILineInfo__get_Current, (List_1_T_Enumerator_UnityEngine_UILineInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01445320, void, List_1_T_Enumerator_UnityEngine_UIVertex___ctor, (List_1_T_Enumerator_UnityEngine_UIVertex___Boxed * __this, List_1_UnityEngine_UIVertex_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIVertex__Dispose, (List_1_T_Enumerator_UnityEngine_UIVertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014453C0, bool, List_1_T_Enumerator_UnityEngine_UIVertex__MoveNext, (List_1_T_Enumerator_UnityEngine_UIVertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014454E0, bool, List_1_T_Enumerator_UnityEngine_UIVertex__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIVertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01445690, void, List_1_T_Enumerator_UnityEngine_UIVertex__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIVertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01445590, Object *, List_1_T_Enumerator_UnityEngine_UIVertex__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIVertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01445540, UIVertex, List_1_T_Enumerator_UnityEngine_UIVertex__get_Current, (List_1_T_Enumerator_UnityEngine_UIVertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143ABD0, void, List_1_T_Enumerator_System_UInt16___ctor, (List_1_T_Enumerator_System_UInt16___Boxed * __this, List_1_System_UInt16_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_UInt16__Dispose, (List_1_T_Enumerator_System_UInt16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143AC50, bool, List_1_T_Enumerator_System_UInt16__MoveNext, (List_1_T_Enumerator_System_UInt16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143ACF0, bool, List_1_T_Enumerator_System_UInt16__MoveNextRare, (List_1_T_Enumerator_System_UInt16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143ADD0, void, List_1_T_Enumerator_System_UInt16__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_UInt16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143AD30, Object *, List_1_T_Enumerator_System_UInt16__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_UInt16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0098C910, uint16_t, List_1_T_Enumerator_System_UInt16__get_Current, (List_1_T_Enumerator_System_UInt16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014456F0, void, NativeArray_1_T_Enumerator_System_UInt16___ctor, (NativeArray_1_T_Enumerator_System_UInt16___Boxed * __this, NativeArray_1_System_UInt16_ array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_System_UInt16__Dispose, (NativeArray_1_T_Enumerator_System_UInt16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01445710, bool, NativeArray_1_T_Enumerator_System_UInt16__MoveNext, (NativeArray_1_T_Enumerator_System_UInt16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_System_UInt16__Reset, (NativeArray_1_T_Enumerator_System_UInt16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014457D0, Object *, NativeArray_1_T_Enumerator_System_UInt16__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_System_UInt16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014457C0, uint16_t, NativeArray_1_T_Enumerator_System_UInt16__get_Current, (NativeArray_1_T_Enumerator_System_UInt16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143C040, void, NativeSlice_1_T_Enumerator_System_UInt16___ctor, (NativeSlice_1_T_Enumerator_System_UInt16___Boxed * __this, NativeSlice_1_System_UInt16_ array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, NativeSlice_1_T_Enumerator_System_UInt16__Dispose, (NativeSlice_1_T_Enumerator_System_UInt16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143C050, bool, NativeSlice_1_T_Enumerator_System_UInt16__MoveNext, (NativeSlice_1_T_Enumerator_System_UInt16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439B10, void, NativeSlice_1_T_Enumerator_System_UInt16__Reset, (NativeSlice_1_T_Enumerator_System_UInt16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014458A0, Object *, NativeSlice_1_T_Enumerator_System_UInt16__System_Collections_IEnumerator_get_Current, (NativeSlice_1_T_Enumerator_System_UInt16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01445850, uint16_t, NativeSlice_1_T_Enumerator_System_UInt16__get_Current, (NativeSlice_1_T_Enumerator_System_UInt16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143D950, void, HashSet_1_T_Enumerator_System_UInt32___ctor, (HashSet_1_T_Enumerator_System_UInt32___Boxed * __this, HashSet_1_System_UInt32_ * set, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, HashSet_1_T_Enumerator_System_UInt32__Dispose, (HashSet_1_T_Enumerator_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01445960, bool, HashSet_1_T_Enumerator_System_UInt32__MoveNext, (HashSet_1_T_Enumerator_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01445B40, void, HashSet_1_T_Enumerator_System_UInt32__System_Collections_IEnumerator_Reset, (HashSet_1_T_Enumerator_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01445A50, Object *, HashSet_1_T_Enumerator_System_UInt32__System_Collections_IEnumerator_get_Current, (HashSet_1_T_Enumerator_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, uint32_t, HashSet_1_T_Enumerator_System_UInt32__get_Current, (HashSet_1_T_Enumerator_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143AF80, void, List_1_T_Enumerator_System_UInt32___ctor, (List_1_T_Enumerator_System_UInt32___Boxed * __this, List_1_System_UInt32_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_UInt32__Dispose, (List_1_T_Enumerator_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B000, bool, List_1_T_Enumerator_System_UInt32__MoveNext, (List_1_T_Enumerator_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B0A0, bool, List_1_T_Enumerator_System_UInt32__MoveNextRare, (List_1_T_Enumerator_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B180, void, List_1_T_Enumerator_System_UInt32__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B0E0, Object *, List_1_T_Enumerator_System_UInt32__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, uint32_t, List_1_T_Enumerator_System_UInt32__get_Current, (List_1_T_Enumerator_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B1C0, void, NativeArray_1_T_Enumerator_System_UInt32___ctor, (NativeArray_1_T_Enumerator_System_UInt32___Boxed * __this, NativeArray_1_System_UInt32_ array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_System_UInt32__Dispose, (NativeArray_1_T_Enumerator_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B1E0, bool, NativeArray_1_T_Enumerator_System_UInt32__MoveNext, (NativeArray_1_T_Enumerator_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_System_UInt32__Reset, (NativeArray_1_T_Enumerator_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B2A0, Object *, NativeArray_1_T_Enumerator_System_UInt32__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B290, uint32_t, NativeArray_1_T_Enumerator_System_UInt32__get_Current, (NativeArray_1_T_Enumerator_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143DD50, void, Queue_1_T_Enumerator_System_UInt32___ctor, (Queue_1_T_Enumerator_System_UInt32___Boxed * __this, Queue_1_System_UInt32_ * q, MethodInfo * method)); -DO_APP_FUNC(0x0143DDD0, void, Queue_1_T_Enumerator_System_UInt32__Dispose, (Queue_1_T_Enumerator_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01445BD0, bool, Queue_1_T_Enumerator_System_UInt32__MoveNext, (Queue_1_T_Enumerator_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01445E20, void, Queue_1_T_Enumerator_System_UInt32__System_Collections_IEnumerator_Reset, (Queue_1_T_Enumerator_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01445D70, Object *, Queue_1_T_Enumerator_System_UInt32__System_Collections_IEnumerator_get_Current, (Queue_1_T_Enumerator_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01445D00, void, Queue_1_T_Enumerator_System_UInt32__ThrowEnumerationNotStartedOrEnded, (Queue_1_T_Enumerator_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01445CC0, uint32_t, Queue_1_T_Enumerator_System_UInt32__get_Current, (Queue_1_T_Enumerator_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01204700, void, HashSet_1_T_Enumerator_System_UInt64___ctor, (HashSet_1_T_Enumerator_System_UInt64___Boxed * __this, HashSet_1_System_UInt64_ * set, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, HashSet_1_T_Enumerator_System_UInt64__Dispose, (HashSet_1_T_Enumerator_System_UInt64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01445EB0, bool, HashSet_1_T_Enumerator_System_UInt64__MoveNext, (HashSet_1_T_Enumerator_System_UInt64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01446090, void, HashSet_1_T_Enumerator_System_UInt64__System_Collections_IEnumerator_Reset, (HashSet_1_T_Enumerator_System_UInt64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01445FA0, Object *, HashSet_1_T_Enumerator_System_UInt64__System_Collections_IEnumerator_get_Current, (HashSet_1_T_Enumerator_System_UInt64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, uint64_t, HashSet_1_T_Enumerator_System_UInt64__get_Current, (HashSet_1_T_Enumerator_System_UInt64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, InlinedArray_1_TValue_Enumerator_System_UInt64__Dispose, (InlinedArray_1_TValue_Enumerator_System_UInt64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434CD0, bool, InlinedArray_1_TValue_Enumerator_System_UInt64__MoveNext, (InlinedArray_1_TValue_Enumerator_System_UInt64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x006DDC60, void, InlinedArray_1_TValue_Enumerator_System_UInt64__Reset, (InlinedArray_1_TValue_Enumerator_System_UInt64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01446160, Object *, InlinedArray_1_TValue_Enumerator_System_UInt64__System_Collections_IEnumerator_get_Current, (InlinedArray_1_TValue_Enumerator_System_UInt64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01446120, uint64_t, InlinedArray_1_TValue_Enumerator_System_UInt64__get_Current, (InlinedArray_1_TValue_Enumerator_System_UInt64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434DE0, void, List_1_T_Enumerator_System_UInt64___ctor, (List_1_T_Enumerator_System_UInt64___Boxed * __this, List_1_System_UInt64_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_UInt64__Dispose, (List_1_T_Enumerator_System_UInt64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434E60, bool, List_1_T_Enumerator_System_UInt64__MoveNext, (List_1_T_Enumerator_System_UInt64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434F00, bool, List_1_T_Enumerator_System_UInt64__MoveNextRare, (List_1_T_Enumerator_System_UInt64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434FE0, void, List_1_T_Enumerator_System_UInt64__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_UInt64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434F40, Object *, List_1_T_Enumerator_System_UInt64__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_UInt64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, uint64_t, List_1_T_Enumerator_System_UInt64__get_Current, (List_1_T_Enumerator_System_UInt64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01446210, void, NativeArray_1_T_Enumerator_System_UInt64___ctor, (NativeArray_1_T_Enumerator_System_UInt64___Boxed * __this, NativeArray_1_System_UInt64_ array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_System_UInt64__Dispose, (NativeArray_1_T_Enumerator_System_UInt64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01446230, bool, NativeArray_1_T_Enumerator_System_UInt64__MoveNext, (NativeArray_1_T_Enumerator_System_UInt64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_System_UInt64__Reset, (NativeArray_1_T_Enumerator_System_UInt64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014462F0, Object *, NativeArray_1_T_Enumerator_System_UInt64__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_System_UInt64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014462E0, uint64_t, NativeArray_1_T_Enumerator_System_UInt64__get_Current, (NativeArray_1_T_Enumerator_System_UInt64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture___ctor, (List_1_T_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture___Boxed * __this, List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__Dispose, (List_1_T_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01435020, bool, List_1_T_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__MoveNext, (List_1_T_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__MoveNextRare, (List_1_T_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, UVTexture, List_1_T_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__get_Current, (List_1_T_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01446370, void, HashSet_1_T_Enumerator_UdpKit_UdpEndPoint___ctor, (HashSet_1_T_Enumerator_UdpKit_UdpEndPoint___Boxed * __this, HashSet_1_UdpKit_UdpEndPoint_ * set, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, HashSet_1_T_Enumerator_UdpKit_UdpEndPoint__Dispose, (HashSet_1_T_Enumerator_UdpKit_UdpEndPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01446400, bool, HashSet_1_T_Enumerator_UdpKit_UdpEndPoint__MoveNext, (HashSet_1_T_Enumerator_UdpKit_UdpEndPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01446630, void, HashSet_1_T_Enumerator_UdpKit_UdpEndPoint__System_Collections_IEnumerator_Reset, (HashSet_1_T_Enumerator_UdpKit_UdpEndPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01446530, Object *, HashSet_1_T_Enumerator_UdpKit_UdpEndPoint__System_Collections_IEnumerator_get_Current, (HashSet_1_T_Enumerator_UdpKit_UdpEndPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01446510, UdpEndPoint, HashSet_1_T_Enumerator_UdpKit_UdpEndPoint__get_Current, (HashSet_1_T_Enumerator_UdpKit_UdpEndPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014466C0, void, List_1_T_Enumerator_UdpKit_UdpEndPoint___ctor, (List_1_T_Enumerator_UdpKit_UdpEndPoint___Boxed * __this, List_1_UdpKit_UdpEndPoint_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UdpKit_UdpEndPoint__Dispose, (List_1_T_Enumerator_UdpKit_UdpEndPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01446750, bool, List_1_T_Enumerator_UdpKit_UdpEndPoint__MoveNext, (List_1_T_Enumerator_UdpKit_UdpEndPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01446810, bool, List_1_T_Enumerator_UdpKit_UdpEndPoint__MoveNextRare, (List_1_T_Enumerator_UdpKit_UdpEndPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01446920, void, List_1_T_Enumerator_UdpKit_UdpEndPoint__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UdpKit_UdpEndPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01446860, Object *, List_1_T_Enumerator_UdpKit_UdpEndPoint__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UdpKit_UdpEndPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01446510, UdpEndPoint, List_1_T_Enumerator_UdpKit_UdpEndPoint__get_Current, (List_1_T_Enumerator_UdpKit_UdpEndPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01446960, void, Queue_1_T_Enumerator_UdpKit_UdpEvent___ctor, (Queue_1_T_Enumerator_UdpKit_UdpEvent___Boxed * __this, Queue_1_UdpKit_UdpEvent_ * q, MethodInfo * method)); -DO_APP_FUNC(0x014469E0, void, Queue_1_T_Enumerator_UdpKit_UdpEvent__Dispose, (Queue_1_T_Enumerator_UdpKit_UdpEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01446A00, bool, Queue_1_T_Enumerator_UdpKit_UdpEvent__MoveNext, (Queue_1_T_Enumerator_UdpKit_UdpEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01446CA0, void, Queue_1_T_Enumerator_UdpKit_UdpEvent__System_Collections_IEnumerator_Reset, (Queue_1_T_Enumerator_UdpKit_UdpEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01446BE0, Object *, Queue_1_T_Enumerator_UdpKit_UdpEvent__System_Collections_IEnumerator_get_Current, (Queue_1_T_Enumerator_UdpKit_UdpEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01446B70, void, Queue_1_T_Enumerator_UdpKit_UdpEvent__ThrowEnumerationNotStartedOrEnded, (Queue_1_T_Enumerator_UdpKit_UdpEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01446B20, UdpEvent, Queue_1_T_Enumerator_UdpKit_UdpEvent__get_Current, (Queue_1_T_Enumerator_UdpKit_UdpEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143D950, void, HashSet_1_T_Enumerator_UdpKit_UdpIPv4Address___ctor, (HashSet_1_T_Enumerator_UdpKit_UdpIPv4Address___Boxed * __this, HashSet_1_UdpKit_UdpIPv4Address_ * set, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, HashSet_1_T_Enumerator_UdpKit_UdpIPv4Address__Dispose, (HashSet_1_T_Enumerator_UdpKit_UdpIPv4Address___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01446D30, bool, HashSet_1_T_Enumerator_UdpKit_UdpIPv4Address__MoveNext, (HashSet_1_T_Enumerator_UdpKit_UdpIPv4Address___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01446F10, void, HashSet_1_T_Enumerator_UdpKit_UdpIPv4Address__System_Collections_IEnumerator_Reset, (HashSet_1_T_Enumerator_UdpKit_UdpIPv4Address___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01446E20, Object *, HashSet_1_T_Enumerator_UdpKit_UdpIPv4Address__System_Collections_IEnumerator_get_Current, (HashSet_1_T_Enumerator_UdpKit_UdpIPv4Address___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, UdpIPv4Address, HashSet_1_T_Enumerator_UdpKit_UdpIPv4Address__get_Current, (HashSet_1_T_Enumerator_UdpKit_UdpIPv4Address___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143AF80, void, List_1_T_Enumerator_UdpKit_UdpIPv4Address___ctor, (List_1_T_Enumerator_UdpKit_UdpIPv4Address___Boxed * __this, List_1_UdpKit_UdpIPv4Address_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UdpKit_UdpIPv4Address__Dispose, (List_1_T_Enumerator_UdpKit_UdpIPv4Address___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B000, bool, List_1_T_Enumerator_UdpKit_UdpIPv4Address__MoveNext, (List_1_T_Enumerator_UdpKit_UdpIPv4Address___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B0A0, bool, List_1_T_Enumerator_UdpKit_UdpIPv4Address__MoveNextRare, (List_1_T_Enumerator_UdpKit_UdpIPv4Address___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B180, void, List_1_T_Enumerator_UdpKit_UdpIPv4Address__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UdpKit_UdpIPv4Address___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B0E0, Object *, List_1_T_Enumerator_UdpKit_UdpIPv4Address__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UdpKit_UdpIPv4Address___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, UdpIPv4Address, List_1_T_Enumerator_UdpKit_UdpIPv4Address__get_Current, (List_1_T_Enumerator_UdpKit_UdpIPv4Address___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434DE0, void, List_1_T_Enumerator_UnityEngine_InputSystem_XR_UsageHint___ctor, (List_1_T_Enumerator_UnityEngine_InputSystem_XR_UsageHint___Boxed * __this, List_1_UnityEngine_InputSystem_XR_UsageHint_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_InputSystem_XR_UsageHint__Dispose, (List_1_T_Enumerator_UnityEngine_InputSystem_XR_UsageHint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439BC0, bool, List_1_T_Enumerator_UnityEngine_InputSystem_XR_UsageHint__MoveNext, (List_1_T_Enumerator_UnityEngine_InputSystem_XR_UsageHint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434F00, bool, List_1_T_Enumerator_UnityEngine_InputSystem_XR_UsageHint__MoveNextRare, (List_1_T_Enumerator_UnityEngine_InputSystem_XR_UsageHint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434FE0, void, List_1_T_Enumerator_UnityEngine_InputSystem_XR_UsageHint__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_InputSystem_XR_UsageHint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434F40, Object *, List_1_T_Enumerator_UnityEngine_InputSystem_XR_UsageHint__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_XR_UsageHint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, UsageHint, List_1_T_Enumerator_UnityEngine_InputSystem_XR_UsageHint__get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_XR_UsageHint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438DB0, void, List_1_T_Enumerator_Discord_User___ctor, (List_1_T_Enumerator_Discord_User___Boxed * __this, List_1_Discord_User_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Discord_User__Dispose, (List_1_T_Enumerator_Discord_User___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01446FA0, bool, List_1_T_Enumerator_Discord_User__MoveNext, (List_1_T_Enumerator_Discord_User___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438F60, bool, List_1_T_Enumerator_Discord_User__MoveNextRare, (List_1_T_Enumerator_Discord_User___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439090, void, List_1_T_Enumerator_Discord_User__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Discord_User___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438FD0, Object *, List_1_T_Enumerator_Discord_User__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Discord_User___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438FB0, User, List_1_T_Enumerator_Discord_User__get_Current, (List_1_T_Enumerator_Discord_User___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434DE0, void, List_1_T_Enumerator_UnityEngine_Vector2___ctor, (List_1_T_Enumerator_UnityEngine_Vector2___Boxed * __this, List_1_UnityEngine_Vector2_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Vector2__Dispose, (List_1_T_Enumerator_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014470C0, bool, List_1_T_Enumerator_UnityEngine_Vector2__MoveNext, (List_1_T_Enumerator_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434F00, bool, List_1_T_Enumerator_UnityEngine_Vector2__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434FE0, void, List_1_T_Enumerator_UnityEngine_Vector2__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143BFA0, Object *, List_1_T_Enumerator_UnityEngine_Vector2__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01447170, Vector2, List_1_T_Enumerator_UnityEngine_Vector2__get_Current, (List_1_T_Enumerator_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439E60, void, NativeArray_1_T_Enumerator_UnityEngine_Vector2___ctor, (NativeArray_1_T_Enumerator_UnityEngine_Vector2___Boxed * __this, NativeArray_1_UnityEngine_Vector2_ array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_UnityEngine_Vector2__Dispose, (NativeArray_1_T_Enumerator_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01447190, bool, NativeArray_1_T_Enumerator_UnityEngine_Vector2__MoveNext, (NativeArray_1_T_Enumerator_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_UnityEngine_Vector2__Reset, (NativeArray_1_T_Enumerator_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01447240, Object *, NativeArray_1_T_Enumerator_UnityEngine_Vector2__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00F9BE30, Vector2, NativeArray_1_T_Enumerator_UnityEngine_Vector2__get_Current, (NativeArray_1_T_Enumerator_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014427B0, void, Stack_1_T_Enumerator_UnityEngine_Vector2___ctor, (Stack_1_T_Enumerator_UnityEngine_Vector2___Boxed * __this, Stack_1_UnityEngine_Vector2_ * stack, MethodInfo * method)); -DO_APP_FUNC(0x01436E20, void, Stack_1_T_Enumerator_UnityEngine_Vector2__Dispose, (Stack_1_T_Enumerator_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014472C0, bool, Stack_1_T_Enumerator_UnityEngine_Vector2__MoveNext, (Stack_1_T_Enumerator_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01447580, void, Stack_1_T_Enumerator_UnityEngine_Vector2__System_Collections_IEnumerator_Reset, (Stack_1_T_Enumerator_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014474D0, Object *, Stack_1_T_Enumerator_UnityEngine_Vector2__System_Collections_IEnumerator_get_Current, (Stack_1_T_Enumerator_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01447460, void, Stack_1_T_Enumerator_UnityEngine_Vector2__ThrowEnumerationNotStartedOrEnded, (Stack_1_T_Enumerator_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01447410, Vector2, Stack_1_T_Enumerator_UnityEngine_Vector2__get_Current, (Stack_1_T_Enumerator_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01447610, void, HashSet_1_T_Enumerator_UnityEngine_Vector3___ctor, (HashSet_1_T_Enumerator_UnityEngine_Vector3___Boxed * __this, HashSet_1_UnityEngine_Vector3_ * set, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, HashSet_1_T_Enumerator_UnityEngine_Vector3__Dispose, (HashSet_1_T_Enumerator_UnityEngine_Vector3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01447690, bool, HashSet_1_T_Enumerator_UnityEngine_Vector3__MoveNext, (HashSet_1_T_Enumerator_UnityEngine_Vector3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01447890, void, HashSet_1_T_Enumerator_UnityEngine_Vector3__System_Collections_IEnumerator_Reset, (HashSet_1_T_Enumerator_UnityEngine_Vector3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01447790, Object *, HashSet_1_T_Enumerator_UnityEngine_Vector3__System_Collections_IEnumerator_get_Current, (HashSet_1_T_Enumerator_UnityEngine_Vector3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C39A10, Vector3, HashSet_1_T_Enumerator_UnityEngine_Vector3__get_Current, (HashSet_1_T_Enumerator_UnityEngine_Vector3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437EF0, void, List_1_T_Enumerator_UnityEngine_Vector3___ctor, (List_1_T_Enumerator_UnityEngine_Vector3___Boxed * __this, List_1_UnityEngine_Vector3_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Vector3__Dispose, (List_1_T_Enumerator_UnityEngine_Vector3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437F70, bool, List_1_T_Enumerator_UnityEngine_Vector3__MoveNext, (List_1_T_Enumerator_UnityEngine_Vector3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438020, bool, List_1_T_Enumerator_UnityEngine_Vector3__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Vector3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438110, void, List_1_T_Enumerator_UnityEngine_Vector3__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Vector3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438060, Object *, List_1_T_Enumerator_UnityEngine_Vector3__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Vector3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C39A10, Vector3, List_1_T_Enumerator_UnityEngine_Vector3__get_Current, (List_1_T_Enumerator_UnityEngine_Vector3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01447610, void, HashSet_1_T_Enumerator_UnityEngine_Vector3Int___ctor, (HashSet_1_T_Enumerator_UnityEngine_Vector3Int___Boxed * __this, HashSet_1_UnityEngine_Vector3Int_ * set, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, HashSet_1_T_Enumerator_UnityEngine_Vector3Int__Dispose, (HashSet_1_T_Enumerator_UnityEngine_Vector3Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01447920, bool, HashSet_1_T_Enumerator_UnityEngine_Vector3Int__MoveNext, (HashSet_1_T_Enumerator_UnityEngine_Vector3Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01447B20, void, HashSet_1_T_Enumerator_UnityEngine_Vector3Int__System_Collections_IEnumerator_Reset, (HashSet_1_T_Enumerator_UnityEngine_Vector3Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01447A20, Object *, HashSet_1_T_Enumerator_UnityEngine_Vector3Int__System_Collections_IEnumerator_get_Current, (HashSet_1_T_Enumerator_UnityEngine_Vector3Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C39A10, Vector3Int, HashSet_1_T_Enumerator_UnityEngine_Vector3Int__get_Current, (HashSet_1_T_Enumerator_UnityEngine_Vector3Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439A20, void, NativeArray_1_T_Enumerator_UnityEngine_Vector3Int___ctor, (NativeArray_1_T_Enumerator_UnityEngine_Vector3Int___Boxed * __this, NativeArray_1_UnityEngine_Vector3Int_ array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_UnityEngine_Vector3Int__Dispose, (NativeArray_1_T_Enumerator_UnityEngine_Vector3Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439A40, bool, NativeArray_1_T_Enumerator_UnityEngine_Vector3Int__MoveNext, (NativeArray_1_T_Enumerator_UnityEngine_Vector3Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_UnityEngine_Vector3Int__Reset, (NativeArray_1_T_Enumerator_UnityEngine_Vector3Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439B40, Object *, NativeArray_1_T_Enumerator_UnityEngine_Vector3Int__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_UnityEngine_Vector3Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439B20, Vector3Int, NativeArray_1_T_Enumerator_UnityEngine_Vector3Int__get_Current, (NativeArray_1_T_Enumerator_UnityEngine_Vector3Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_Vector4___ctor, (List_1_T_Enumerator_UnityEngine_Vector4___Boxed * __this, List_1_UnityEngine_Vector4_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Vector4__Dispose, (List_1_T_Enumerator_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437E50, bool, List_1_T_Enumerator_UnityEngine_Vector4__MoveNext, (List_1_T_Enumerator_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_Vector4__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_Vector4__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_Vector4__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, Vector4, List_1_T_Enumerator_UnityEngine_Vector4__get_Current, (List_1_T_Enumerator_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143AE10, void, NativeArray_1_T_Enumerator_UnityEngine_Vector4___ctor, (NativeArray_1_T_Enumerator_UnityEngine_Vector4___Boxed * __this, NativeArray_1_UnityEngine_Vector4_ array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_UnityEngine_Vector4__Dispose, (NativeArray_1_T_Enumerator_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143AE30, bool, NativeArray_1_T_Enumerator_UnityEngine_Vector4__MoveNext, (NativeArray_1_T_Enumerator_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_UnityEngine_Vector4__Reset, (NativeArray_1_T_Enumerator_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143AF00, Object *, NativeArray_1_T_Enumerator_UnityEngine_Vector4__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143AEF0, Vector4, NativeArray_1_T_Enumerator_UnityEngine_Vector4__get_Current, (NativeArray_1_T_Enumerator_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143C040, void, NativeSlice_1_T_Enumerator_UnityEngine_Vector4___ctor, (NativeSlice_1_T_Enumerator_UnityEngine_Vector4___Boxed * __this, NativeSlice_1_UnityEngine_Vector4_ array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, NativeSlice_1_T_Enumerator_UnityEngine_Vector4__Dispose, (NativeSlice_1_T_Enumerator_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143C050, bool, NativeSlice_1_T_Enumerator_UnityEngine_Vector4__MoveNext, (NativeSlice_1_T_Enumerator_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439B10, void, NativeSlice_1_T_Enumerator_UnityEngine_Vector4__Reset, (NativeSlice_1_T_Enumerator_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143C100, Object *, NativeSlice_1_T_Enumerator_UnityEngine_Vector4__System_Collections_IEnumerator_get_Current, (NativeSlice_1_T_Enumerator_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143C090, Vector4, NativeSlice_1_T_Enumerator_UnityEngine_Vector4__get_Current, (NativeSlice_1_T_Enumerator_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143FC70, void, NativeArray_1_T_Enumerator_UnityEngine_UIElements_Vertex___ctor, (NativeArray_1_T_Enumerator_UnityEngine_UIElements_Vertex___Boxed * __this, NativeArray_1_UnityEngine_UIElements_Vertex_ array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_UnityEngine_UIElements_Vertex__Dispose, (NativeArray_1_T_Enumerator_UnityEngine_UIElements_Vertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143FCA0, bool, NativeArray_1_T_Enumerator_UnityEngine_UIElements_Vertex__MoveNext, (NativeArray_1_T_Enumerator_UnityEngine_UIElements_Vertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_UnityEngine_UIElements_Vertex__Reset, (NativeArray_1_T_Enumerator_UnityEngine_UIElements_Vertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143FDC0, Object *, NativeArray_1_T_Enumerator_UnityEngine_UIElements_Vertex__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_UnityEngine_UIElements_Vertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143FD90, Vertex, NativeArray_1_T_Enumerator_UnityEngine_UIElements_Vertex__get_Current, (NativeArray_1_T_Enumerator_UnityEngine_UIElements_Vertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143C040, void, NativeSlice_1_T_Enumerator_UnityEngine_UIElements_Vertex___ctor, (NativeSlice_1_T_Enumerator_UnityEngine_UIElements_Vertex___Boxed * __this, NativeSlice_1_UnityEngine_UIElements_Vertex_ array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, NativeSlice_1_T_Enumerator_UnityEngine_UIElements_Vertex__Dispose, (NativeSlice_1_T_Enumerator_UnityEngine_UIElements_Vertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143C050, bool, NativeSlice_1_T_Enumerator_UnityEngine_UIElements_Vertex__MoveNext, (NativeSlice_1_T_Enumerator_UnityEngine_UIElements_Vertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439B10, void, NativeSlice_1_T_Enumerator_UnityEngine_UIElements_Vertex__Reset, (NativeSlice_1_T_Enumerator_UnityEngine_UIElements_Vertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01447C40, Object *, NativeSlice_1_T_Enumerator_UnityEngine_UIElements_Vertex__System_Collections_IEnumerator_get_Current, (NativeSlice_1_T_Enumerator_UnityEngine_UIElements_Vertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01447BB0, Vertex, NativeSlice_1_T_Enumerator_UnityEngine_UIElements_Vertex__get_Current, (NativeSlice_1_T_Enumerator_UnityEngine_UIElements_Vertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_Rendering_VertexAttributeDescriptor___ctor, (List_1_T_Enumerator_UnityEngine_Rendering_VertexAttributeDescriptor___Boxed * __this, List_1_UnityEngine_Rendering_VertexAttributeDescriptor_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Rendering_VertexAttributeDescriptor__Dispose, (List_1_T_Enumerator_UnityEngine_Rendering_VertexAttributeDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437E50, bool, List_1_T_Enumerator_UnityEngine_Rendering_VertexAttributeDescriptor__MoveNext, (List_1_T_Enumerator_UnityEngine_Rendering_VertexAttributeDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_Rendering_VertexAttributeDescriptor__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Rendering_VertexAttributeDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_Rendering_VertexAttributeDescriptor__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Rendering_VertexAttributeDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_Rendering_VertexAttributeDescriptor__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Rendering_VertexAttributeDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, VertexAttributeDescriptor, List_1_T_Enumerator_UnityEngine_Rendering_VertexAttributeDescriptor__get_Current, (List_1_T_Enumerator_UnityEngine_Rendering_VertexAttributeDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143AE10, void, NativeArray_1_T_Enumerator_UnityEngine_Rendering_VertexAttributeDescriptor___ctor, (NativeArray_1_T_Enumerator_UnityEngine_Rendering_VertexAttributeDescriptor___Boxed * __this, NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor_ array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_UnityEngine_Rendering_VertexAttributeDescriptor__Dispose, (NativeArray_1_T_Enumerator_UnityEngine_Rendering_VertexAttributeDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143AE30, bool, NativeArray_1_T_Enumerator_UnityEngine_Rendering_VertexAttributeDescriptor__MoveNext, (NativeArray_1_T_Enumerator_UnityEngine_Rendering_VertexAttributeDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_UnityEngine_Rendering_VertexAttributeDescriptor__Reset, (NativeArray_1_T_Enumerator_UnityEngine_Rendering_VertexAttributeDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143AF00, Object *, NativeArray_1_T_Enumerator_UnityEngine_Rendering_VertexAttributeDescriptor__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_UnityEngine_Rendering_VertexAttributeDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143AEF0, VertexAttributeDescriptor, NativeArray_1_T_Enumerator_UnityEngine_Rendering_VertexAttributeDescriptor__get_Current, (NativeArray_1_T_Enumerator_UnityEngine_Rendering_VertexAttributeDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_Microsoft_MixedReality_OpenXR_ViewConfiguration___ctor, (List_1_T_Enumerator_Microsoft_MixedReality_OpenXR_ViewConfiguration___Boxed * __this, List_1_Microsoft_MixedReality_OpenXR_ViewConfiguration_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Microsoft_MixedReality_OpenXR_ViewConfiguration__Dispose, (List_1_T_Enumerator_Microsoft_MixedReality_OpenXR_ViewConfiguration___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434620, bool, List_1_T_Enumerator_Microsoft_MixedReality_OpenXR_ViewConfiguration__MoveNext, (List_1_T_Enumerator_Microsoft_MixedReality_OpenXR_ViewConfiguration___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_Microsoft_MixedReality_OpenXR_ViewConfiguration__MoveNextRare, (List_1_T_Enumerator_Microsoft_MixedReality_OpenXR_ViewConfiguration___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_Microsoft_MixedReality_OpenXR_ViewConfiguration__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Microsoft_MixedReality_OpenXR_ViewConfiguration___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_Microsoft_MixedReality_OpenXR_ViewConfiguration__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Microsoft_MixedReality_OpenXR_ViewConfiguration___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, ViewConfiguration, List_1_T_Enumerator_Microsoft_MixedReality_OpenXR_ViewConfiguration__get_Current, (List_1_T_Enumerator_Microsoft_MixedReality_OpenXR_ViewConfiguration___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143A450, void, ArraySegment_1_T_Enumerator_Dissonance_Networking_VoicePacket___ctor, (ArraySegment_1_T_Enumerator_Dissonance_Networking_VoicePacket___Boxed * __this, ArraySegment_1_Dissonance_Networking_VoicePacket_ arraySegment, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, ArraySegment_1_T_Enumerator_Dissonance_Networking_VoicePacket__Dispose, (ArraySegment_1_T_Enumerator_Dissonance_Networking_VoicePacket___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143A590, bool, ArraySegment_1_T_Enumerator_Dissonance_Networking_VoicePacket__MoveNext, (ArraySegment_1_T_Enumerator_Dissonance_Networking_VoicePacket___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143A6C0, void, ArraySegment_1_T_Enumerator_Dissonance_Networking_VoicePacket__System_Collections_IEnumerator_Reset, (ArraySegment_1_T_Enumerator_Dissonance_Networking_VoicePacket___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01447DB0, Object *, ArraySegment_1_T_Enumerator_Dissonance_Networking_VoicePacket__System_Collections_IEnumerator_get_Current, (ArraySegment_1_T_Enumerator_Dissonance_Networking_VoicePacket___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01447D30, VoicePacket, ArraySegment_1_T_Enumerator_Dissonance_Networking_VoicePacket__get_Current, (ArraySegment_1_T_Enumerator_Dissonance_Networking_VoicePacket___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438A50, void, List_1_T_Enumerator_Dissonance_Networking_VoicePacket___ctor, (List_1_T_Enumerator_Dissonance_Networking_VoicePacket___Boxed * __this, List_1_Dissonance_Networking_VoicePacket_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Dissonance_Networking_VoicePacket__Dispose, (List_1_T_Enumerator_Dissonance_Networking_VoicePacket___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143CEE0, bool, List_1_T_Enumerator_Dissonance_Networking_VoicePacket__MoveNext, (List_1_T_Enumerator_Dissonance_Networking_VoicePacket___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438C10, bool, List_1_T_Enumerator_Dissonance_Networking_VoicePacket__MoveNextRare, (List_1_T_Enumerator_Dissonance_Networking_VoicePacket___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438D60, void, List_1_T_Enumerator_Dissonance_Networking_VoicePacket__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Dissonance_Networking_VoicePacket___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438C90, Object *, List_1_T_Enumerator_Dissonance_Networking_VoicePacket__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Dissonance_Networking_VoicePacket___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438C60, VoicePacket, List_1_T_Enumerator_Dissonance_Networking_VoicePacket__get_Current, (List_1_T_Enumerator_Dissonance_Networking_VoicePacket___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341F0, void, List_1_T_Enumerator_Pathfinding_Voxels_VoxelContour___ctor, (List_1_T_Enumerator_Pathfinding_Voxels_VoxelContour___Boxed * __this, List_1_Pathfinding_Voxels_VoxelContour_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Pathfinding_Voxels_VoxelContour__Dispose, (List_1_T_Enumerator_Pathfinding_Voxels_VoxelContour___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014344A0, bool, List_1_T_Enumerator_Pathfinding_Voxels_VoxelContour__MoveNext, (List_1_T_Enumerator_Pathfinding_Voxels_VoxelContour___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434370, bool, List_1_T_Enumerator_Pathfinding_Voxels_VoxelContour__MoveNextRare, (List_1_T_Enumerator_Pathfinding_Voxels_VoxelContour___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434460, void, List_1_T_Enumerator_Pathfinding_Voxels_VoxelContour__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Pathfinding_Voxels_VoxelContour___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014343B0, Object *, List_1_T_Enumerator_Pathfinding_Voxels_VoxelContour__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Pathfinding_Voxels_VoxelContour___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01204560, VoxelContour, List_1_T_Enumerator_Pathfinding_Voxels_VoxelContour__get_Current, (List_1_T_Enumerator_Pathfinding_Voxels_VoxelContour___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01447EA0, void, List_1_T_Enumerator_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES___ctor, (List_1_T_Enumerator_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES___Boxed * __this, List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES__Dispose, (List_1_T_Enumerator_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01447F30, bool, List_1_T_Enumerator_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES__MoveNext, (List_1_T_Enumerator_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01448110, bool, List_1_T_Enumerator_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES__MoveNextRare, (List_1_T_Enumerator_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01448300, void, List_1_T_Enumerator_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014481E0, Object *, List_1_T_Enumerator_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01448160, Win32_IP_ADAPTER_ADDRESSES, List_1_T_Enumerator_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES__get_Current, (List_1_T_Enumerator_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01448340, void, List_1_T_Enumerator_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO___ctor, (List_1_T_Enumerator_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO___Boxed * __this, List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO__Dispose, (List_1_T_Enumerator_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014483D0, bool, List_1_T_Enumerator_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO__MoveNext, (List_1_T_Enumerator_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01448540, bool, List_1_T_Enumerator_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO__MoveNextRare, (List_1_T_Enumerator_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01448710, void, List_1_T_Enumerator_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01448600, Object *, List_1_T_Enumerator_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01448590, Win32_IP_ADAPTER_INFO, List_1_T_Enumerator_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO__get_Current, (List_1_T_Enumerator_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_System_Security_Cryptography_X509Certificates_X509ChainStatus___ctor, (List_1_T_Enumerator_System_Security_Cryptography_X509Certificates_X509ChainStatus___Boxed * __this, List_1_System_Security_Cryptography_X509Certificates_X509ChainStatus_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_Security_Cryptography_X509Certificates_X509ChainStatus__Dispose, (List_1_T_Enumerator_System_Security_Cryptography_X509Certificates_X509ChainStatus___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434850, bool, List_1_T_Enumerator_System_Security_Cryptography_X509Certificates_X509ChainStatus__MoveNext, (List_1_T_Enumerator_System_Security_Cryptography_X509Certificates_X509ChainStatus___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_System_Security_Cryptography_X509Certificates_X509ChainStatus__MoveNextRare, (List_1_T_Enumerator_System_Security_Cryptography_X509Certificates_X509ChainStatus___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_System_Security_Cryptography_X509Certificates_X509ChainStatus__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_Security_Cryptography_X509Certificates_X509ChainStatus___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_System_Security_Cryptography_X509Certificates_X509ChainStatus__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_Security_Cryptography_X509Certificates_X509ChainStatus___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, X509ChainStatus, List_1_T_Enumerator_System_Security_Cryptography_X509Certificates_X509ChainStatus__get_Current, (List_1_T_Enumerator_System_Security_Cryptography_X509Certificates_X509ChainStatus___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01467670, void, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_XRAnchor___ctor, (NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_XRAnchor___Boxed * __this, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor_ array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_XRAnchor__Dispose, (NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_XRAnchor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014676A0, bool, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_XRAnchor__MoveNext, (NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_XRAnchor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_XRAnchor__Reset, (NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_XRAnchor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014677D0, Object *, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_XRAnchor__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_XRAnchor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014677A0, XRAnchor, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_XRAnchor__get_Current, (NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_XRAnchor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_UnityEngine_InputSystem_XR_XRFeatureDescriptor___ctor, (List_1_T_Enumerator_UnityEngine_InputSystem_XR_XRFeatureDescriptor___Boxed * __this, List_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_InputSystem_XR_XRFeatureDescriptor__Dispose, (List_1_T_Enumerator_UnityEngine_InputSystem_XR_XRFeatureDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01435020, bool, List_1_T_Enumerator_UnityEngine_InputSystem_XR_XRFeatureDescriptor__MoveNext, (List_1_T_Enumerator_UnityEngine_InputSystem_XR_XRFeatureDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_UnityEngine_InputSystem_XR_XRFeatureDescriptor__MoveNextRare, (List_1_T_Enumerator_UnityEngine_InputSystem_XR_XRFeatureDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_UnityEngine_InputSystem_XR_XRFeatureDescriptor__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_InputSystem_XR_XRFeatureDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_UnityEngine_InputSystem_XR_XRFeatureDescriptor__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_XR_XRFeatureDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, XRFeatureDescriptor, List_1_T_Enumerator_UnityEngine_InputSystem_XR_XRFeatureDescriptor__get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_XR_XRFeatureDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01467870, void, List_1_T_Enumerator_UnityEngine_XR_XRNodeState___ctor, (List_1_T_Enumerator_UnityEngine_XR_XRNodeState___Boxed * __this, List_1_UnityEngine_XR_XRNodeState_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_XR_XRNodeState__Dispose, (List_1_T_Enumerator_UnityEngine_XR_XRNodeState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01467910, bool, List_1_T_Enumerator_UnityEngine_XR_XRNodeState__MoveNext, (List_1_T_Enumerator_UnityEngine_XR_XRNodeState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01467A00, bool, List_1_T_Enumerator_UnityEngine_XR_XRNodeState__MoveNextRare, (List_1_T_Enumerator_UnityEngine_XR_XRNodeState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01467B70, void, List_1_T_Enumerator_UnityEngine_XR_XRNodeState__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_XR_XRNodeState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01467A90, Object *, List_1_T_Enumerator_UnityEngine_XR_XRNodeState__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_XR_XRNodeState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01467A50, XRNodeState, List_1_T_Enumerator_UnityEngine_XR_XRNodeState__get_Current, (List_1_T_Enumerator_UnityEngine_XR_XRNodeState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01467BC0, void, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_XRRaycast___ctor, (NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_XRRaycast___Boxed * __this, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast_ array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_XRRaycast__Dispose, (NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_XRRaycast___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01467BF0, bool, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_XRRaycast__MoveNext, (NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_XRRaycast___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_XRRaycast__Reset, (NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_XRRaycast___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01467D20, Object *, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_XRRaycast__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_XRRaycast___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01467CF0, XRRaycast, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_XRRaycast__get_Current, (NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_XRRaycast___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_Pathfinding_AdvancedSmooth_Turn___ctor, (List_1_T_Enumerator_Pathfinding_AdvancedSmooth_Turn___Boxed * __this, List_1_Pathfinding_AdvancedSmooth_Turn_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Pathfinding_AdvancedSmooth_Turn__Dispose, (List_1_T_Enumerator_Pathfinding_AdvancedSmooth_Turn___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434850, bool, List_1_T_Enumerator_Pathfinding_AdvancedSmooth_Turn__MoveNext, (List_1_T_Enumerator_Pathfinding_AdvancedSmooth_Turn___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_Pathfinding_AdvancedSmooth_Turn__MoveNextRare, (List_1_T_Enumerator_Pathfinding_AdvancedSmooth_Turn___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_Pathfinding_AdvancedSmooth_Turn__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Pathfinding_AdvancedSmooth_Turn___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_Pathfinding_AdvancedSmooth_Turn__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Pathfinding_AdvancedSmooth_Turn___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, AdvancedSmooth_Turn, List_1_T_Enumerator_Pathfinding_AdvancedSmooth_Turn__get_Current, (List_1_T_Enumerator_Pathfinding_AdvancedSmooth_Turn___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438DB0, void, List_1_T_Enumerator_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo___ctor, (List_1_T_Enumerator_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo___Boxed * __this, List_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo__Dispose, (List_1_T_Enumerator_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014435B0, bool, List_1_T_Enumerator_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo__MoveNext, (List_1_T_Enumerator_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438F60, bool, List_1_T_Enumerator_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439090, void, List_1_T_Enumerator_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438FD0, Object *, List_1_T_Enumerator_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438FB0, AnimationOutputWeightProcessor_WeightInfo, List_1_T_Enumerator_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo__get_Current, (List_1_T_Enumerator_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014427B0, void, Stack_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext___ctor, (Stack_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext___Boxed * __this, Stack_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext_ * stack, MethodInfo * method)); -DO_APP_FUNC(0x01436E20, void, Stack_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext__Dispose, (Stack_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01467DC0, bool, Stack_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext__MoveNext, (Stack_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01468050, void, Stack_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext__System_Collections_IEnumerator_Reset, (Stack_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01467FA0, Object *, Stack_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext__System_Collections_IEnumerator_get_Current, (Stack_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01467F30, void, Stack_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext__ThrowEnumerationNotStartedOrEnded, (Stack_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01467EF0, BaseStyleMatcher_MatchContext, Stack_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext__get_Current, (Stack_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_BeforeRenderHelper_OrderBlock___ctor, (List_1_T_Enumerator_UnityEngine_BeforeRenderHelper_OrderBlock___Boxed * __this, List_1_UnityEngine_BeforeRenderHelper_OrderBlock_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_BeforeRenderHelper_OrderBlock__Dispose, (List_1_T_Enumerator_UnityEngine_BeforeRenderHelper_OrderBlock___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434850, bool, List_1_T_Enumerator_UnityEngine_BeforeRenderHelper_OrderBlock__MoveNext, (List_1_T_Enumerator_UnityEngine_BeforeRenderHelper_OrderBlock___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_BeforeRenderHelper_OrderBlock__MoveNextRare, (List_1_T_Enumerator_UnityEngine_BeforeRenderHelper_OrderBlock___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_BeforeRenderHelper_OrderBlock__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_BeforeRenderHelper_OrderBlock___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_BeforeRenderHelper_OrderBlock__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_BeforeRenderHelper_OrderBlock___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, BeforeRenderHelper_OrderBlock, List_1_T_Enumerator_UnityEngine_BeforeRenderHelper_OrderBlock__get_Current, (List_1_T_Enumerator_UnityEngine_BeforeRenderHelper_OrderBlock___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434DE0, void, List_1_T_Enumerator_UnityEngine_UIElements_UIR_BitmapAllocator32_Page___ctor, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_BitmapAllocator32_Page___Boxed * __this, List_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__Dispose, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_BitmapAllocator32_Page___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434E60, bool, List_1_T_Enumerator_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__MoveNext, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_BitmapAllocator32_Page___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434F00, bool, List_1_T_Enumerator_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_BitmapAllocator32_Page___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434FE0, void, List_1_T_Enumerator_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_BitmapAllocator32_Page___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434F40, Object *, List_1_T_Enumerator_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_BitmapAllocator32_Page___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, BitmapAllocator32_Page, List_1_T_Enumerator_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_BitmapAllocator32_Page___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_UnityEngine_Camera_RenderRequest___ctor, (List_1_T_Enumerator_UnityEngine_Camera_RenderRequest___Boxed * __this, List_1_UnityEngine_Camera_RenderRequest_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Camera_RenderRequest__Dispose, (List_1_T_Enumerator_UnityEngine_Camera_RenderRequest___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439CB0, bool, List_1_T_Enumerator_UnityEngine_Camera_RenderRequest__MoveNext, (List_1_T_Enumerator_UnityEngine_Camera_RenderRequest___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_UnityEngine_Camera_RenderRequest__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Camera_RenderRequest___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_UnityEngine_Camera_RenderRequest__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Camera_RenderRequest___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_UnityEngine_Camera_RenderRequest__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Camera_RenderRequest___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, Camera_RenderRequest, List_1_T_Enumerator_UnityEngine_Camera_RenderRequest__get_Current, (List_1_T_Enumerator_UnityEngine_Camera_RenderRequest___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_Cinemachine_CameraState_CustomBlendable___ctor, (List_1_T_Enumerator_Cinemachine_CameraState_CustomBlendable___Boxed * __this, List_1_Cinemachine_CameraState_CustomBlendable_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Cinemachine_CameraState_CustomBlendable__Dispose, (List_1_T_Enumerator_Cinemachine_CameraState_CustomBlendable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_Cinemachine_CameraState_CustomBlendable__MoveNext, (List_1_T_Enumerator_Cinemachine_CameraState_CustomBlendable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_Cinemachine_CameraState_CustomBlendable__MoveNextRare, (List_1_T_Enumerator_Cinemachine_CameraState_CustomBlendable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_Cinemachine_CameraState_CustomBlendable__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Cinemachine_CameraState_CustomBlendable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_Cinemachine_CameraState_CustomBlendable__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Cinemachine_CameraState_CustomBlendable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, CameraState_CustomBlendable, List_1_T_Enumerator_Cinemachine_CameraState_CustomBlendable__get_Current, (List_1_T_Enumerator_Cinemachine_CameraState_CustomBlendable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434DE0, void, List_1_T_Enumerator_Cinemachine_CinemachineClearShot_Pair___ctor, (List_1_T_Enumerator_Cinemachine_CinemachineClearShot_Pair___Boxed * __this, List_1_Cinemachine_CinemachineClearShot_Pair_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Cinemachine_CinemachineClearShot_Pair__Dispose, (List_1_T_Enumerator_Cinemachine_CinemachineClearShot_Pair___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434E60, bool, List_1_T_Enumerator_Cinemachine_CinemachineClearShot_Pair__MoveNext, (List_1_T_Enumerator_Cinemachine_CinemachineClearShot_Pair___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434F00, bool, List_1_T_Enumerator_Cinemachine_CinemachineClearShot_Pair__MoveNextRare, (List_1_T_Enumerator_Cinemachine_CinemachineClearShot_Pair___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434FE0, void, List_1_T_Enumerator_Cinemachine_CinemachineClearShot_Pair__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Cinemachine_CinemachineClearShot_Pair___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434F40, Object *, List_1_T_Enumerator_Cinemachine_CinemachineClearShot_Pair__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Cinemachine_CinemachineClearShot_Pair___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, CinemachineClearShot_Pair, List_1_T_Enumerator_Cinemachine_CinemachineClearShot_Pair__get_Current, (List_1_T_Enumerator_Cinemachine_CinemachineClearShot_Pair___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434DE0, void, List_1_T_Enumerator_Cinemachine_CinemachineStateDrivenCamera_HashPair___ctor, (List_1_T_Enumerator_Cinemachine_CinemachineStateDrivenCamera_HashPair___Boxed * __this, List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Cinemachine_CinemachineStateDrivenCamera_HashPair__Dispose, (List_1_T_Enumerator_Cinemachine_CinemachineStateDrivenCamera_HashPair___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434E60, bool, List_1_T_Enumerator_Cinemachine_CinemachineStateDrivenCamera_HashPair__MoveNext, (List_1_T_Enumerator_Cinemachine_CinemachineStateDrivenCamera_HashPair___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434F00, bool, List_1_T_Enumerator_Cinemachine_CinemachineStateDrivenCamera_HashPair__MoveNextRare, (List_1_T_Enumerator_Cinemachine_CinemachineStateDrivenCamera_HashPair___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434FE0, void, List_1_T_Enumerator_Cinemachine_CinemachineStateDrivenCamera_HashPair__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Cinemachine_CinemachineStateDrivenCamera_HashPair___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434F40, Object *, List_1_T_Enumerator_Cinemachine_CinemachineStateDrivenCamera_HashPair__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Cinemachine_CinemachineStateDrivenCamera_HashPair___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, CinemachineStateDrivenCamera_HashPair, List_1_T_Enumerator_Cinemachine_CinemachineStateDrivenCamera_HashPair__get_Current, (List_1_T_Enumerator_Cinemachine_CinemachineStateDrivenCamera_HashPair___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_Cinemachine_ClipperLib_DoublePoint___ctor, (List_1_T_Enumerator_Cinemachine_ClipperLib_DoublePoint___Boxed * __this, List_1_Cinemachine_ClipperLib_DoublePoint_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Cinemachine_ClipperLib_DoublePoint__Dispose, (List_1_T_Enumerator_Cinemachine_ClipperLib_DoublePoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437E50, bool, List_1_T_Enumerator_Cinemachine_ClipperLib_DoublePoint__MoveNext, (List_1_T_Enumerator_Cinemachine_ClipperLib_DoublePoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_Cinemachine_ClipperLib_DoublePoint__MoveNextRare, (List_1_T_Enumerator_Cinemachine_ClipperLib_DoublePoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_Cinemachine_ClipperLib_DoublePoint__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Cinemachine_ClipperLib_DoublePoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014680E0, Object *, List_1_T_Enumerator_Cinemachine_ClipperLib_DoublePoint__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Cinemachine_ClipperLib_DoublePoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, ClipperLib_DoublePoint, List_1_T_Enumerator_Cinemachine_ClipperLib_DoublePoint__get_Current, (List_1_T_Enumerator_Cinemachine_ClipperLib_DoublePoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_Cinemachine_ClipperLib_IntPoint___ctor, (List_1_T_Enumerator_Cinemachine_ClipperLib_IntPoint___Boxed * __this, List_1_Cinemachine_ClipperLib_IntPoint_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Cinemachine_ClipperLib_IntPoint__Dispose, (List_1_T_Enumerator_Cinemachine_ClipperLib_IntPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437E50, bool, List_1_T_Enumerator_Cinemachine_ClipperLib_IntPoint__MoveNext, (List_1_T_Enumerator_Cinemachine_ClipperLib_IntPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_Cinemachine_ClipperLib_IntPoint__MoveNextRare, (List_1_T_Enumerator_Cinemachine_ClipperLib_IntPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_Cinemachine_ClipperLib_IntPoint__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Cinemachine_ClipperLib_IntPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_Cinemachine_ClipperLib_IntPoint__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Cinemachine_ClipperLib_IntPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, ClipperLib_IntPoint, List_1_T_Enumerator_Cinemachine_ClipperLib_IntPoint__get_Current, (List_1_T_Enumerator_Cinemachine_ClipperLib_IntPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_Cinemachine_ConfinerOven_PolygonSolution___ctor, (List_1_T_Enumerator_Cinemachine_ConfinerOven_PolygonSolution___Boxed * __this, List_1_Cinemachine_ConfinerOven_PolygonSolution_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Cinemachine_ConfinerOven_PolygonSolution__Dispose, (List_1_T_Enumerator_Cinemachine_ConfinerOven_PolygonSolution___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_Cinemachine_ConfinerOven_PolygonSolution__MoveNext, (List_1_T_Enumerator_Cinemachine_ConfinerOven_PolygonSolution___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_Cinemachine_ConfinerOven_PolygonSolution__MoveNextRare, (List_1_T_Enumerator_Cinemachine_ConfinerOven_PolygonSolution___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_Cinemachine_ConfinerOven_PolygonSolution__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Cinemachine_ConfinerOven_PolygonSolution___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_Cinemachine_ConfinerOven_PolygonSolution__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Cinemachine_ConfinerOven_PolygonSolution___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, ConfinerOven_PolygonSolution, List_1_T_Enumerator_Cinemachine_ConfinerOven_PolygonSolution__get_Current, (List_1_T_Enumerator_Cinemachine_ConfinerOven_PolygonSolution___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437EF0, void, List_1_T_Enumerator_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB___ctor, (List_1_T_Enumerator_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB___Boxed * __this, List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__Dispose, (List_1_T_Enumerator_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437F70, bool, List_1_T_Enumerator_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__MoveNext, (List_1_T_Enumerator_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438020, bool, List_1_T_Enumerator_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__MoveNextRare, (List_1_T_Enumerator_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438110, void, List_1_T_Enumerator_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438060, Object *, List_1_T_Enumerator_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C39A10, CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB, List_1_T_Enumerator_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__get_Current, (List_1_T_Enumerator_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01468180, void, Stack_1_T_Enumerator_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator___ctor, (Stack_1_T_Enumerator_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator___Boxed * __this, Stack_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator_ * stack, MethodInfo * method)); -DO_APP_FUNC(0x01436E20, void, Stack_1_T_Enumerator_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator__Dispose, (Stack_1_T_Enumerator_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01468210, bool, Stack_1_T_Enumerator_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator__MoveNext, (Stack_1_T_Enumerator_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01468530, void, Stack_1_T_Enumerator_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator__System_Collections_IEnumerator_Reset, (Stack_1_T_Enumerator_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01468460, Object *, Stack_1_T_Enumerator_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator__System_Collections_IEnumerator_get_Current, (Stack_1_T_Enumerator_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014683F0, void, Stack_1_T_Enumerator_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator__ThrowEnumerationNotStartedOrEnded, (Stack_1_T_Enumerator_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01468390, DamageIndicatorMonitor_DamageIndicator, Stack_1_T_Enumerator_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator__get_Current, (Stack_1_T_Enumerator_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014685D0, void, LinkedList_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo___ctor, (LinkedList_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo___Boxed * __this, LinkedList_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ * list, MethodInfo * method)); -DO_APP_FUNC(0x014686B0, void, LinkedList_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo___ctor_1, (LinkedList_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo___Boxed * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, LinkedList_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__Dispose, (LinkedList_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01468870, bool, LinkedList_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__MoveNext, (LinkedList_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01468A80, void, LinkedList_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__System_Collections_IEnumerator_Reset, (LinkedList_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01468720, Object *, LinkedList_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__System_Collections_IEnumerator_get_Current, (LinkedList_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01468BC0, void, LinkedList_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__System_Runtime_Serialization_IDeserializationCallback_OnDeserialization, (LinkedList_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo___Boxed * __this, Object * sender, MethodInfo * method)); -DO_APP_FUNC(0x01468B70, void, LinkedList_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__System_Runtime_Serialization_ISerializable_GetObjectData, (LinkedList_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo___Boxed * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); -DO_APP_FUNC(0x01468700, DelayedActionManager_DelegateInfo, LinkedList_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__get_Current, (LinkedList_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341F0, void, List_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo___ctor, (List_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo___Boxed * __this, List_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__Dispose, (List_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014344A0, bool, List_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__MoveNext, (List_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434370, bool, List_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__MoveNextRare, (List_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434460, void, List_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014343B0, Object *, List_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01204560, DelayedActionManager_DelegateInfo, List_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__get_Current, (List_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_Photon_Bolt_EventDispatcher_CallbackWrapper___ctor, (List_1_T_Enumerator_Photon_Bolt_EventDispatcher_CallbackWrapper___Boxed * __this, List_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Photon_Bolt_EventDispatcher_CallbackWrapper__Dispose, (List_1_T_Enumerator_Photon_Bolt_EventDispatcher_CallbackWrapper___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_Photon_Bolt_EventDispatcher_CallbackWrapper__MoveNext, (List_1_T_Enumerator_Photon_Bolt_EventDispatcher_CallbackWrapper___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_Photon_Bolt_EventDispatcher_CallbackWrapper__MoveNextRare, (List_1_T_Enumerator_Photon_Bolt_EventDispatcher_CallbackWrapper___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_Photon_Bolt_EventDispatcher_CallbackWrapper__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Photon_Bolt_EventDispatcher_CallbackWrapper___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_Photon_Bolt_EventDispatcher_CallbackWrapper__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Photon_Bolt_EventDispatcher_CallbackWrapper___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, EventDispatcher_CallbackWrapper, List_1_T_Enumerator_Photon_Bolt_EventDispatcher_CallbackWrapper__get_Current, (List_1_T_Enumerator_Photon_Bolt_EventDispatcher_CallbackWrapper___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_Photon_Bolt_EventDispatcher_EventListener___ctor, (List_1_T_Enumerator_Photon_Bolt_EventDispatcher_EventListener___Boxed * __this, List_1_Photon_Bolt_EventDispatcher_EventListener_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Photon_Bolt_EventDispatcher_EventListener__Dispose, (List_1_T_Enumerator_Photon_Bolt_EventDispatcher_EventListener___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01435020, bool, List_1_T_Enumerator_Photon_Bolt_EventDispatcher_EventListener__MoveNext, (List_1_T_Enumerator_Photon_Bolt_EventDispatcher_EventListener___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_Photon_Bolt_EventDispatcher_EventListener__MoveNextRare, (List_1_T_Enumerator_Photon_Bolt_EventDispatcher_EventListener___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_Photon_Bolt_EventDispatcher_EventListener__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Photon_Bolt_EventDispatcher_EventListener___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_Photon_Bolt_EventDispatcher_EventListener__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Photon_Bolt_EventDispatcher_EventListener___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, EventDispatcher_EventListener, List_1_T_Enumerator_Photon_Bolt_EventDispatcher_EventListener__get_Current, (List_1_T_Enumerator_Photon_Bolt_EventDispatcher_EventListener___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01436DA0, void, Stack_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_DispatchContext___ctor, (Stack_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_DispatchContext___Boxed * __this, Stack_1_UnityEngine_UIElements_EventDispatcher_DispatchContext_ * stack, MethodInfo * method)); -DO_APP_FUNC(0x01436E20, void, Stack_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_DispatchContext__Dispose, (Stack_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_DispatchContext___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01468C10, bool, Stack_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_DispatchContext__MoveNext, (Stack_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_DispatchContext___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01468EC0, void, Stack_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_DispatchContext__System_Collections_IEnumerator_Reset, (Stack_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_DispatchContext___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01468E10, Object *, Stack_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_DispatchContext__System_Collections_IEnumerator_get_Current, (Stack_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_DispatchContext___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01468DA0, void, Stack_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_DispatchContext__ThrowEnumerationNotStartedOrEnded, (Stack_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_DispatchContext___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01468D50, EventDispatcher_DispatchContext, Stack_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_DispatchContext__get_Current, (Stack_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_DispatchContext___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434950, void, Queue_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_EventRecord___ctor, (Queue_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_EventRecord___Boxed * __this, Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord_ * q, MethodInfo * method)); -DO_APP_FUNC(0x014349D0, void, Queue_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_EventRecord__Dispose, (Queue_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_EventRecord___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01468F50, bool, Queue_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_EventRecord__MoveNext, (Queue_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_EventRecord___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014691C0, void, Queue_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_EventRecord__System_Collections_IEnumerator_Reset, (Queue_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_EventRecord___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01469110, Object *, Queue_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_EventRecord__System_Collections_IEnumerator_get_Current, (Queue_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_EventRecord___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014690A0, void, Queue_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_EventRecord__ThrowEnumerationNotStartedOrEnded, (Queue_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_EventRecord___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01469050, EventDispatcher_EventRecord, Queue_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_EventRecord__get_Current, (Queue_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_EventRecord___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01469250, void, List_1_T_Enumerator_Dissonance_Networking_Client_EventQueue_NetworkEvent___ctor, (List_1_T_Enumerator_Dissonance_Networking_Client_EventQueue_NetworkEvent___Boxed * __this, List_1_Dissonance_Networking_Client_EventQueue_NetworkEvent_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Dissonance_Networking_Client_EventQueue_NetworkEvent__Dispose, (List_1_T_Enumerator_Dissonance_Networking_Client_EventQueue_NetworkEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01469300, bool, List_1_T_Enumerator_Dissonance_Networking_Client_EventQueue_NetworkEvent__MoveNext, (List_1_T_Enumerator_Dissonance_Networking_Client_EventQueue_NetworkEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01469450, bool, List_1_T_Enumerator_Dissonance_Networking_Client_EventQueue_NetworkEvent__MoveNextRare, (List_1_T_Enumerator_Dissonance_Networking_Client_EventQueue_NetworkEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01469630, void, List_1_T_Enumerator_Dissonance_Networking_Client_EventQueue_NetworkEvent__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Dissonance_Networking_Client_EventQueue_NetworkEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01469520, Object *, List_1_T_Enumerator_Dissonance_Networking_Client_EventQueue_NetworkEvent__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Dissonance_Networking_Client_EventQueue_NetworkEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014694C0, EventQueue_NetworkEvent, List_1_T_Enumerator_Dissonance_Networking_Client_EventQueue_NetworkEvent__get_Current, (List_1_T_Enumerator_Dissonance_Networking_Client_EventQueue_NetworkEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_UIElements_FocusController_FocusedElement___ctor, (List_1_T_Enumerator_UnityEngine_UIElements_FocusController_FocusedElement___Boxed * __this, List_1_UnityEngine_UIElements_FocusController_FocusedElement_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIElements_FocusController_FocusedElement__Dispose, (List_1_T_Enumerator_UnityEngine_UIElements_FocusController_FocusedElement___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_UnityEngine_UIElements_FocusController_FocusedElement__MoveNext, (List_1_T_Enumerator_UnityEngine_UIElements_FocusController_FocusedElement___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_UIElements_FocusController_FocusedElement__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIElements_FocusController_FocusedElement___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_UIElements_FocusController_FocusedElement__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIElements_FocusController_FocusedElement___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_UIElements_FocusController_FocusedElement__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_FocusController_FocusedElement___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, FocusController_FocusedElement, List_1_T_Enumerator_UnityEngine_UIElements_FocusController_FocusedElement__get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_FocusController_FocusedElement___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01443880, void, List_1_T_Enumerator_Pathfinding_Funnel_PathPart___ctor, (List_1_T_Enumerator_Pathfinding_Funnel_PathPart___Boxed * __this, List_1_Pathfinding_Funnel_PathPart_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Pathfinding_Funnel_PathPart__Dispose, (List_1_T_Enumerator_Pathfinding_Funnel_PathPart___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01443910, bool, List_1_T_Enumerator_Pathfinding_Funnel_PathPart__MoveNext, (List_1_T_Enumerator_Pathfinding_Funnel_PathPart___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014439D0, bool, List_1_T_Enumerator_Pathfinding_Funnel_PathPart__MoveNextRare, (List_1_T_Enumerator_Pathfinding_Funnel_PathPart___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01443B00, void, List_1_T_Enumerator_Pathfinding_Funnel_PathPart__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Pathfinding_Funnel_PathPart___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01443A40, Object *, List_1_T_Enumerator_Pathfinding_Funnel_PathPart__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Pathfinding_Funnel_PathPart___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01443A20, Funnel_PathPart, List_1_T_Enumerator_Pathfinding_Funnel_PathPart__get_Current, (List_1_T_Enumerator_Pathfinding_Funnel_PathPart___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01446960, void, Queue_1_T_Enumerator_Pathfinding_GraphUpdateProcessor_GUOSingle___ctor, (Queue_1_T_Enumerator_Pathfinding_GraphUpdateProcessor_GUOSingle___Boxed * __this, Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle_ * q, MethodInfo * method)); -DO_APP_FUNC(0x014469E0, void, Queue_1_T_Enumerator_Pathfinding_GraphUpdateProcessor_GUOSingle__Dispose, (Queue_1_T_Enumerator_Pathfinding_GraphUpdateProcessor_GUOSingle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01469690, bool, Queue_1_T_Enumerator_Pathfinding_GraphUpdateProcessor_GUOSingle__MoveNext, (Queue_1_T_Enumerator_Pathfinding_GraphUpdateProcessor_GUOSingle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01469930, void, Queue_1_T_Enumerator_Pathfinding_GraphUpdateProcessor_GUOSingle__System_Collections_IEnumerator_Reset, (Queue_1_T_Enumerator_Pathfinding_GraphUpdateProcessor_GUOSingle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01469870, Object *, Queue_1_T_Enumerator_Pathfinding_GraphUpdateProcessor_GUOSingle__System_Collections_IEnumerator_get_Current, (Queue_1_T_Enumerator_Pathfinding_GraphUpdateProcessor_GUOSingle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01469800, void, Queue_1_T_Enumerator_Pathfinding_GraphUpdateProcessor_GUOSingle__ThrowEnumerationNotStartedOrEnded, (Queue_1_T_Enumerator_Pathfinding_GraphUpdateProcessor_GUOSingle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014697B0, GraphUpdateProcessor_GUOSingle, Queue_1_T_Enumerator_Pathfinding_GraphUpdateProcessor_GUOSingle__get_Current, (Queue_1_T_Enumerator_Pathfinding_GraphUpdateProcessor_GUOSingle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor___ctor, (List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor___Boxed * __this, List_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__Dispose, (List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143C4B0, bool, List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__MoveNext, (List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__MoveNextRare, (List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, HID_HIDCollectionDescriptor, List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B970, void, List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor___ctor, (List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor___Boxed * __this, List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__Dispose, (List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143BA00, bool, List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__MoveNext, (List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143BAE0, bool, List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__MoveNextRare, (List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143BC30, void, List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143BB60, Object *, List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143BB30, HID_HIDElementDescriptor, List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437EF0, void, List_1_T_Enumerator_UnityEngine_InputSystem_HID_HIDParser_HIDReportData___ctor, (List_1_T_Enumerator_UnityEngine_InputSystem_HID_HIDParser_HIDReportData___Boxed * __this, List_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__Dispose, (List_1_T_Enumerator_UnityEngine_InputSystem_HID_HIDParser_HIDReportData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437F70, bool, List_1_T_Enumerator_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__MoveNext, (List_1_T_Enumerator_UnityEngine_InputSystem_HID_HIDParser_HIDReportData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438020, bool, List_1_T_Enumerator_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__MoveNextRare, (List_1_T_Enumerator_UnityEngine_InputSystem_HID_HIDParser_HIDReportData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438110, void, List_1_T_Enumerator_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_InputSystem_HID_HIDParser_HIDReportData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438060, Object *, List_1_T_Enumerator_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_HID_HIDParser_HIDReportData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C39A10, HIDParser_HIDReportData, List_1_T_Enumerator_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_HID_HIDParser_HIDReportData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143CB60, void, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage___ctor, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage___Boxed * __this, HIDSupport_HIDPageUsage__Array * array, int32_t index, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage__Dispose, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143CBD0, bool, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage__MoveNext, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143CBF0, void, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage__Reset, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01469A50, Object *, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage__System_Collections_IEnumerator_get_Current, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014699C0, HIDSupport_HIDPageUsage, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage__get_Current, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143AF80, void, List_1_T_Enumerator_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData___ctor, (List_1_T_Enumerator_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData___Boxed * __this, List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__Dispose, (List_1_T_Enumerator_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01469AD0, bool, List_1_T_Enumerator_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__MoveNext, (List_1_T_Enumerator_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B0A0, bool, List_1_T_Enumerator_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__MoveNextRare, (List_1_T_Enumerator_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B180, void, List_1_T_Enumerator_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01443F90, Object *, List_1_T_Enumerator_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, HairDesignerGeneratorFurShellBase_BufferData, List_1_T_Enumerator_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__get_Current, (List_1_T_Enumerator_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438DB0, void, List_1_T_Enumerator_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson___ctor, (List_1_T_Enumerator_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson___Boxed * __this, List_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__Dispose, (List_1_T_Enumerator_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01469B70, bool, List_1_T_Enumerator_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__MoveNext, (List_1_T_Enumerator_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438F60, bool, List_1_T_Enumerator_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__MoveNextRare, (List_1_T_Enumerator_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439090, void, List_1_T_Enumerator_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438FD0, Object *, List_1_T_Enumerator_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438FB0, InputActionMap_BindingOverrideJson, List_1_T_Enumerator_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01469C90, void, List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___ctor, (List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, List_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__Dispose, (List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01469D20, bool, List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__MoveNext, (List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01469EA0, bool, List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__MoveNextRare, (List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146A0B0, void, List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01469F80, Object *, List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01469EF0, InputControlLayout_ControlItem, List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143CB60, void, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___ctor, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, InputControlLayout_ControlItem__Array * array, int32_t index, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__Dispose, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143CBD0, bool, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__MoveNext, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143CBF0, void, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__Reset, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146A180, Object *, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__System_Collections_IEnumerator_get_Current, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146A0F0, InputControlLayout_ControlItem, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__get_Current, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143CB60, void, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement___ctor, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement___Boxed * __this, InputControlScheme_DeviceRequirement__Array * array, int32_t index, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement__Dispose, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143CBD0, bool, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement__MoveNext, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143CBF0, void, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement__Reset, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146A3A0, Object *, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement__System_Collections_IEnumerator_get_Current, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146A300, InputControlScheme_DeviceRequirement, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement__get_Current, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143CB60, void, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo___ctor, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo___Boxed * __this, InputEventTrace_DeviceInfo__Array * array, int32_t index, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo__Dispose, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143CBD0, bool, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo__MoveNext, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143CBF0, void, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo__Reset, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146A4D0, Object *, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo__System_Collections_IEnumerator_get_Current, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146A420, InputEventTrace_DeviceInfo, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo__get_Current, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__Dispose, (InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146A560, bool, InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__MoveNext, (InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146A580, void, InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__Reset, (InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146A600, Object *, InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__System_Collections_IEnumerator_get_Current, (InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146A590, InputManager_StateChangeMonitorTimeout, InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__get_Current, (InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__Dispose, (InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143EC80, bool, InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__MoveNext, (InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x006C4180, void, InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__Reset, (InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146A730, Object *, InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__System_Collections_IEnumerator_get_Current, (InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146A6D0, InputUser_OngoingAccountSelection, InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__get_Current, (InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper___ctor, (List_1_T_Enumerator_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper___Boxed * __this, List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__Dispose, (List_1_T_Enumerator_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434850, bool, List_1_T_Enumerator_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__MoveNext, (List_1_T_Enumerator_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, InternalTreeView_TreeViewItemWrapper, List_1_T_Enumerator_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV___ctor, (List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV___Boxed * __this, List_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__Dispose, (List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434850, bool, List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__MoveNext, (List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__MoveNextRare, (List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV, List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__get_Current, (List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B970, void, List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb___ctor, (List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb___Boxed * __this, List_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__Dispose, (List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146A7E0, bool, List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__MoveNext, (List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143BAE0, bool, List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__MoveNextRare, (List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143BC30, void, List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143BB60, Object *, List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143BB30, JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb, List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__get_Current, (List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux___ctor, (List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux___Boxed * __this, List_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__Dispose, (List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434850, bool, List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__MoveNext, (List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__MoveNextRare, (List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux, List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__get_Current, (List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B970, void, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___ctor, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Boxed * __this, List_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__Dispose, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146A910, bool, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__MoveNext, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143BAE0, bool, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__MoveNextRare, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143BC30, void, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143BB60, Object *, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143BB30, JsonParser_JsonValue, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143A450, void, ArraySegment_1_T_Enumerator_Dissonance_Logs_LogMessage___ctor, (ArraySegment_1_T_Enumerator_Dissonance_Logs_LogMessage___Boxed * __this, ArraySegment_1_Dissonance_Logs_LogMessage_ arraySegment, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, ArraySegment_1_T_Enumerator_Dissonance_Logs_LogMessage__Dispose, (ArraySegment_1_T_Enumerator_Dissonance_Logs_LogMessage___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143A590, bool, ArraySegment_1_T_Enumerator_Dissonance_Logs_LogMessage__MoveNext, (ArraySegment_1_T_Enumerator_Dissonance_Logs_LogMessage___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143A6C0, void, ArraySegment_1_T_Enumerator_Dissonance_Logs_LogMessage__System_Collections_IEnumerator_Reset, (ArraySegment_1_T_Enumerator_Dissonance_Logs_LogMessage___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146AAA0, Object *, ArraySegment_1_T_Enumerator_Dissonance_Logs_LogMessage__System_Collections_IEnumerator_get_Current, (ArraySegment_1_T_Enumerator_Dissonance_Logs_LogMessage___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146AA40, Logs_LogMessage_1, ArraySegment_1_T_Enumerator_Dissonance_Logs_LogMessage__get_Current, (ArraySegment_1_T_Enumerator_Dissonance_Logs_LogMessage___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage___ctor, (List_1_T_Enumerator_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage___Boxed * __this, List_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__Dispose, (List_1_T_Enumerator_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434850, bool, List_1_T_Enumerator_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__MoveNext, (List_1_T_Enumerator_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__MoveNextRare, (List_1_T_Enumerator_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, Logs_LogMessage, List_1_T_Enumerator_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__get_Current, (List_1_T_Enumerator_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014466C0, void, List_1_T_Enumerator_MagicLightProbes_MagicLightProbes_VolumeParameters___ctor, (List_1_T_Enumerator_MagicLightProbes_MagicLightProbes_VolumeParameters___Boxed * __this, List_1_MagicLightProbes_MagicLightProbes_VolumeParameters_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_MagicLightProbes_MagicLightProbes_VolumeParameters__Dispose, (List_1_T_Enumerator_MagicLightProbes_MagicLightProbes_VolumeParameters___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01446750, bool, List_1_T_Enumerator_MagicLightProbes_MagicLightProbes_VolumeParameters__MoveNext, (List_1_T_Enumerator_MagicLightProbes_MagicLightProbes_VolumeParameters___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01446810, bool, List_1_T_Enumerator_MagicLightProbes_MagicLightProbes_VolumeParameters__MoveNextRare, (List_1_T_Enumerator_MagicLightProbes_MagicLightProbes_VolumeParameters___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01446920, void, List_1_T_Enumerator_MagicLightProbes_MagicLightProbes_VolumeParameters__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_MagicLightProbes_MagicLightProbes_VolumeParameters___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01446860, Object *, List_1_T_Enumerator_MagicLightProbes_MagicLightProbes_VolumeParameters__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_MagicLightProbes_MagicLightProbes_VolumeParameters___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01446510, MagicLightProbes_VolumeParameters, List_1_T_Enumerator_MagicLightProbes_MagicLightProbes_VolumeParameters__get_Current, (List_1_T_Enumerator_MagicLightProbes_MagicLightProbes_VolumeParameters___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_NolanBehaviour_OverlappedCollider___ctor, (List_1_T_Enumerator_NolanBehaviour_OverlappedCollider___Boxed * __this, List_1_NolanBehaviour_OverlappedCollider_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_NolanBehaviour_OverlappedCollider__Dispose, (List_1_T_Enumerator_NolanBehaviour_OverlappedCollider___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_NolanBehaviour_OverlappedCollider__MoveNext, (List_1_T_Enumerator_NolanBehaviour_OverlappedCollider___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_NolanBehaviour_OverlappedCollider__MoveNextRare, (List_1_T_Enumerator_NolanBehaviour_OverlappedCollider___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_NolanBehaviour_OverlappedCollider__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_NolanBehaviour_OverlappedCollider___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_NolanBehaviour_OverlappedCollider__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_NolanBehaviour_OverlappedCollider___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, NolanBehaviour_OverlappedCollider, List_1_T_Enumerator_NolanBehaviour_OverlappedCollider__get_Current, (List_1_T_Enumerator_NolanBehaviour_OverlappedCollider___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__Dispose, (InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146A560, bool, InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__MoveNext, (InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146A580, void, InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__Reset, (InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146ABD0, Object *, InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__System_Collections_IEnumerator_get_Current, (InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146AB60, OnScreenControl_OnScreenDeviceInfo, InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__get_Current, (InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding___ctor, (List_1_T_Enumerator_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding___Boxed * __this, List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__Dispose, (List_1_T_Enumerator_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434850, bool, List_1_T_Enumerator_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__MoveNext, (List_1_T_Enumerator_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__MoveNextRare, (List_1_T_Enumerator_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, OpenXRInput_SerializedBinding, List_1_T_Enumerator_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__get_Current, (List_1_T_Enumerator_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_PackedPlayModeBuildLogs_RuntimeBuildLog___ctor, (List_1_T_Enumerator_PackedPlayModeBuildLogs_RuntimeBuildLog___Boxed * __this, List_1_PackedPlayModeBuildLogs_RuntimeBuildLog_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_PackedPlayModeBuildLogs_RuntimeBuildLog__Dispose, (List_1_T_Enumerator_PackedPlayModeBuildLogs_RuntimeBuildLog___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434850, bool, List_1_T_Enumerator_PackedPlayModeBuildLogs_RuntimeBuildLog__MoveNext, (List_1_T_Enumerator_PackedPlayModeBuildLogs_RuntimeBuildLog___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_PackedPlayModeBuildLogs_RuntimeBuildLog__MoveNextRare, (List_1_T_Enumerator_PackedPlayModeBuildLogs_RuntimeBuildLog___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_PackedPlayModeBuildLogs_RuntimeBuildLog__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_PackedPlayModeBuildLogs_RuntimeBuildLog___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_PackedPlayModeBuildLogs_RuntimeBuildLog__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_PackedPlayModeBuildLogs_RuntimeBuildLog___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, PackedPlayModeBuildLogs_RuntimeBuildLog, List_1_T_Enumerator_PackedPlayModeBuildLogs_RuntimeBuildLog__get_Current, (List_1_T_Enumerator_PackedPlayModeBuildLogs_RuntimeBuildLog___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146ACA0, void, List_1_T_Enumerator_UnityEngine_ParticleSystem_Particle___ctor, (List_1_T_Enumerator_UnityEngine_ParticleSystem_Particle___Boxed * __this, List_1_UnityEngine_ParticleSystem_Particle_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_ParticleSystem_Particle__Dispose, (List_1_T_Enumerator_UnityEngine_ParticleSystem_Particle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146AD50, bool, List_1_T_Enumerator_UnityEngine_ParticleSystem_Particle__MoveNext, (List_1_T_Enumerator_UnityEngine_ParticleSystem_Particle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146AE50, bool, List_1_T_Enumerator_UnityEngine_ParticleSystem_Particle__MoveNextRare, (List_1_T_Enumerator_UnityEngine_ParticleSystem_Particle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146B020, void, List_1_T_Enumerator_UnityEngine_ParticleSystem_Particle__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_ParticleSystem_Particle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146AF10, Object *, List_1_T_Enumerator_UnityEngine_ParticleSystem_Particle__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_ParticleSystem_Particle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146AEB0, ParticleSystem_Particle, List_1_T_Enumerator_UnityEngine_ParticleSystem_Particle__get_Current, (List_1_T_Enumerator_UnityEngine_ParticleSystem_Particle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146B080, void, NativeArray_1_T_Enumerator_UnityEngine_ParticleSystem_Particle___ctor, (NativeArray_1_T_Enumerator_UnityEngine_ParticleSystem_Particle___Boxed * __this, NativeArray_1_UnityEngine_ParticleSystem_Particle_ array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_UnityEngine_ParticleSystem_Particle__Dispose, (NativeArray_1_T_Enumerator_UnityEngine_ParticleSystem_Particle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146B0C0, bool, NativeArray_1_T_Enumerator_UnityEngine_ParticleSystem_Particle__MoveNext, (NativeArray_1_T_Enumerator_UnityEngine_ParticleSystem_Particle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_UnityEngine_ParticleSystem_Particle__Reset, (NativeArray_1_T_Enumerator_UnityEngine_ParticleSystem_Particle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146B270, Object *, NativeArray_1_T_Enumerator_UnityEngine_ParticleSystem_Particle__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_UnityEngine_ParticleSystem_Particle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146B210, ParticleSystem_Particle, NativeArray_1_T_Enumerator_UnityEngine_ParticleSystem_Particle__get_Current, (NativeArray_1_T_Enumerator_UnityEngine_ParticleSystem_Particle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick___ctor, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick___Boxed * __this, List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick__Dispose, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437E50, bool, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick__MoveNext, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, ProbeBrickIndex_Brick, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick__get_Current, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146B350, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick___ctor, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick___Boxed * __this, List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick__Dispose, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01444F10, void, NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_Transform3x4___ctor, (NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_Transform3x4_ * __this, NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4_ * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_Transform3x4__Dispose, (NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_Transform3x4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01444F30, bool, NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_Transform3x4__MoveNext, (NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_Transform3x4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_Transform3x4__Reset, (NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_Transform3x4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01445030, Object *, NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_Transform3x4__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_Transform3x4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01445010, Transform3x4, NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_Transform3x4__get_Current, (NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_Transform3x4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143C040, void, NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_Transform3x4___ctor, (NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_Transform3x4_ * __this, NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4_ * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_Transform3x4__Dispose, (NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_Transform3x4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143C050, bool, NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_Transform3x4__MoveNext, (NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_Transform3x4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439B10, void, NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_Transform3x4__Reset, (NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_Transform3x4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01445140, Object *, NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_Transform3x4__System_Collections_IEnumerator_get_Current, (NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_Transform3x4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014450C0, Transform3x4, NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_Transform3x4__get_Current, (NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_Transform3x4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_UnityEngine_UIElements_TreeViewItemWrapper___ctor, (List_1_T_Enumerator_UnityEngine_UIElements_TreeViewItemWrapper_ * __this, List_1_UnityEngine_UIElements_TreeViewItemWrapper_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIElements_TreeViewItemWrapper__Dispose, (List_1_T_Enumerator_UnityEngine_UIElements_TreeViewItemWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439CB0, bool, List_1_T_Enumerator_UnityEngine_UIElements_TreeViewItemWrapper__MoveNext, (List_1_T_Enumerator_UnityEngine_UIElements_TreeViewItemWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_UnityEngine_UIElements_TreeViewItemWrapper__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIElements_TreeViewItemWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_UnityEngine_UIElements_TreeViewItemWrapper__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIElements_TreeViewItemWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_UnityEngine_UIElements_TreeViewItemWrapper__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_TreeViewItemWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, TreeViewItemWrapper, List_1_T_Enumerator_UnityEngine_UIElements_TreeViewItemWrapper__get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_TreeViewItemWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341F0, void, List_1_T_Enumerator_Rewired_Utils_Classes_Data_TypeWrapper___ctor, (List_1_T_Enumerator_Rewired_Utils_Classes_Data_TypeWrapper_ * __this, List_1_Rewired_Utils_Classes_Data_TypeWrapper_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Rewired_Utils_Classes_Data_TypeWrapper__Dispose, (List_1_T_Enumerator_Rewired_Utils_Classes_Data_TypeWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01445220, bool, List_1_T_Enumerator_Rewired_Utils_Classes_Data_TypeWrapper__MoveNext, (List_1_T_Enumerator_Rewired_Utils_Classes_Data_TypeWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434370, bool, List_1_T_Enumerator_Rewired_Utils_Classes_Data_TypeWrapper__MoveNextRare, (List_1_T_Enumerator_Rewired_Utils_Classes_Data_TypeWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434460, void, List_1_T_Enumerator_Rewired_Utils_Classes_Data_TypeWrapper__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Rewired_Utils_Classes_Data_TypeWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014343B0, Object *, List_1_T_Enumerator_Rewired_Utils_Classes_Data_TypeWrapper__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Rewired_Utils_Classes_Data_TypeWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01204560, TypeWrapper, List_1_T_Enumerator_Rewired_Utils_Classes_Data_TypeWrapper__get_Current, (List_1_T_Enumerator_Rewired_Utils_Classes_Data_TypeWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01437EF0, void, List_1_T_Enumerator_UnityEngine_UICharInfo___ctor, (List_1_T_Enumerator_UnityEngine_UICharInfo_ * __this, List_1_UnityEngine_UICharInfo_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UICharInfo__Dispose, (List_1_T_Enumerator_UnityEngine_UICharInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01437F70, bool, List_1_T_Enumerator_UnityEngine_UICharInfo__MoveNext, (List_1_T_Enumerator_UnityEngine_UICharInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438020, bool, List_1_T_Enumerator_UnityEngine_UICharInfo__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UICharInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438110, void, List_1_T_Enumerator_UnityEngine_UICharInfo__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UICharInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438060, Object *, List_1_T_Enumerator_UnityEngine_UICharInfo__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UICharInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C39A10, UICharInfo, List_1_T_Enumerator_UnityEngine_UICharInfo__get_Current, (List_1_T_Enumerator_UnityEngine_UICharInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_UILineInfo___ctor, (List_1_T_Enumerator_UnityEngine_UILineInfo_ * __this, List_1_UnityEngine_UILineInfo_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UILineInfo__Dispose, (List_1_T_Enumerator_UnityEngine_UILineInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01437E50, bool, List_1_T_Enumerator_UnityEngine_UILineInfo__MoveNext, (List_1_T_Enumerator_UnityEngine_UILineInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_UILineInfo__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UILineInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_UILineInfo__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UILineInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_UILineInfo__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UILineInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, UILineInfo, List_1_T_Enumerator_UnityEngine_UILineInfo__get_Current, (List_1_T_Enumerator_UnityEngine_UILineInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01445320, void, List_1_T_Enumerator_UnityEngine_UIVertex___ctor, (List_1_T_Enumerator_UnityEngine_UIVertex_ * __this, List_1_UnityEngine_UIVertex_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIVertex__Dispose, (List_1_T_Enumerator_UnityEngine_UIVertex_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF72F8, List_1_T_Enumerator_UnityEngine_UIVertex__Dispose__MethodInfo); +DO_APP_FUNC(0x014453C0, bool, List_1_T_Enumerator_UnityEngine_UIVertex__MoveNext, (List_1_T_Enumerator_UnityEngine_UIVertex_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF72F0, List_1_T_Enumerator_UnityEngine_UIVertex__MoveNext__MethodInfo); +DO_APP_FUNC(0x014454E0, bool, List_1_T_Enumerator_UnityEngine_UIVertex__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIVertex_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01445690, void, List_1_T_Enumerator_UnityEngine_UIVertex__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIVertex_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01445590, Object *, List_1_T_Enumerator_UnityEngine_UIVertex__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIVertex_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01445540, UIVertex, List_1_T_Enumerator_UnityEngine_UIVertex__get_Current, (List_1_T_Enumerator_UnityEngine_UIVertex_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF72C0, List_1_T_Enumerator_UnityEngine_UIVertex__get_Current__MethodInfo); +DO_APP_FUNC(0x0143ABD0, void, List_1_T_Enumerator_System_UInt16___ctor, (List_1_T_Enumerator_System_UInt16_ * __this, List_1_System_UInt16_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_UInt16__Dispose, (List_1_T_Enumerator_System_UInt16_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF15F8, List_1_T_Enumerator_System_UInt16__Dispose__MethodInfo); +DO_APP_FUNC(0x0143AC50, bool, List_1_T_Enumerator_System_UInt16__MoveNext, (List_1_T_Enumerator_System_UInt16_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF15C0, List_1_T_Enumerator_System_UInt16__MoveNext__MethodInfo); +DO_APP_FUNC(0x0143ACF0, bool, List_1_T_Enumerator_System_UInt16__MoveNextRare, (List_1_T_Enumerator_System_UInt16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143ADD0, void, List_1_T_Enumerator_System_UInt16__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_UInt16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143AD30, Object *, List_1_T_Enumerator_System_UInt16__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_UInt16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0098C910, uint16_t, List_1_T_Enumerator_System_UInt16__get_Current, (List_1_T_Enumerator_System_UInt16_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF15B8, List_1_T_Enumerator_System_UInt16__get_Current__MethodInfo); +DO_APP_FUNC(0x014456F0, void, NativeArray_1_T_Enumerator_System_UInt16___ctor, (NativeArray_1_T_Enumerator_System_UInt16_ * __this, NativeArray_1_System_UInt16_ * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_System_UInt16__Dispose, (NativeArray_1_T_Enumerator_System_UInt16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01445710, bool, NativeArray_1_T_Enumerator_System_UInt16__MoveNext, (NativeArray_1_T_Enumerator_System_UInt16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_System_UInt16__Reset, (NativeArray_1_T_Enumerator_System_UInt16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014457D0, Object *, NativeArray_1_T_Enumerator_System_UInt16__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_System_UInt16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014457C0, uint16_t, NativeArray_1_T_Enumerator_System_UInt16__get_Current, (NativeArray_1_T_Enumerator_System_UInt16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143C040, void, NativeSlice_1_T_Enumerator_System_UInt16___ctor, (NativeSlice_1_T_Enumerator_System_UInt16_ * __this, NativeSlice_1_System_UInt16_ * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, NativeSlice_1_T_Enumerator_System_UInt16__Dispose, (NativeSlice_1_T_Enumerator_System_UInt16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143C050, bool, NativeSlice_1_T_Enumerator_System_UInt16__MoveNext, (NativeSlice_1_T_Enumerator_System_UInt16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439B10, void, NativeSlice_1_T_Enumerator_System_UInt16__Reset, (NativeSlice_1_T_Enumerator_System_UInt16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014458A0, Object *, NativeSlice_1_T_Enumerator_System_UInt16__System_Collections_IEnumerator_get_Current, (NativeSlice_1_T_Enumerator_System_UInt16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01445850, uint16_t, NativeSlice_1_T_Enumerator_System_UInt16__get_Current, (NativeSlice_1_T_Enumerator_System_UInt16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143D950, void, HashSet_1_T_Enumerator_System_UInt32___ctor, (HashSet_1_T_Enumerator_System_UInt32_ * __this, HashSet_1_System_UInt32_ * set, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, HashSet_1_T_Enumerator_System_UInt32__Dispose, (HashSet_1_T_Enumerator_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01445960, bool, HashSet_1_T_Enumerator_System_UInt32__MoveNext, (HashSet_1_T_Enumerator_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12818, HashSet_1_T_Enumerator_System_UInt32__MoveNext__MethodInfo); +DO_APP_FUNC(0x01445B40, void, HashSet_1_T_Enumerator_System_UInt32__System_Collections_IEnumerator_Reset, (HashSet_1_T_Enumerator_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D128E8, HashSet_1_T_Enumerator_System_UInt32__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x01445A50, Object *, HashSet_1_T_Enumerator_System_UInt32__System_Collections_IEnumerator_get_Current, (HashSet_1_T_Enumerator_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D128F0, HashSet_1_T_Enumerator_System_UInt32__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x003BCD50, uint32_t, HashSet_1_T_Enumerator_System_UInt32__get_Current, (HashSet_1_T_Enumerator_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143AF80, void, List_1_T_Enumerator_System_UInt32___ctor, (List_1_T_Enumerator_System_UInt32_ * __this, List_1_System_UInt32_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_UInt32__Dispose, (List_1_T_Enumerator_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6300, List_1_T_Enumerator_System_UInt32__Dispose__MethodInfo); +DO_APP_FUNC(0x0143B000, bool, List_1_T_Enumerator_System_UInt32__MoveNext, (List_1_T_Enumerator_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD62F8, List_1_T_Enumerator_System_UInt32__MoveNext__MethodInfo); +DO_APP_FUNC(0x0143B0A0, bool, List_1_T_Enumerator_System_UInt32__MoveNextRare, (List_1_T_Enumerator_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143B180, void, List_1_T_Enumerator_System_UInt32__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143B0E0, Object *, List_1_T_Enumerator_System_UInt32__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, uint32_t, List_1_T_Enumerator_System_UInt32__get_Current, (List_1_T_Enumerator_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD62E8, List_1_T_Enumerator_System_UInt32__get_Current__MethodInfo); +DO_APP_FUNC(0x0143B1C0, void, NativeArray_1_T_Enumerator_System_UInt32___ctor, (NativeArray_1_T_Enumerator_System_UInt32_ * __this, NativeArray_1_System_UInt32_ * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_System_UInt32__Dispose, (NativeArray_1_T_Enumerator_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143B1E0, bool, NativeArray_1_T_Enumerator_System_UInt32__MoveNext, (NativeArray_1_T_Enumerator_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_System_UInt32__Reset, (NativeArray_1_T_Enumerator_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143B2A0, Object *, NativeArray_1_T_Enumerator_System_UInt32__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143B290, uint32_t, NativeArray_1_T_Enumerator_System_UInt32__get_Current, (NativeArray_1_T_Enumerator_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143DD50, void, Queue_1_T_Enumerator_System_UInt32___ctor, (Queue_1_T_Enumerator_System_UInt32_ * __this, Queue_1_System_UInt32_ * q, MethodInfo * method)); +DO_APP_FUNC(0x0143DDD0, void, Queue_1_T_Enumerator_System_UInt32__Dispose, (Queue_1_T_Enumerator_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01445BD0, bool, Queue_1_T_Enumerator_System_UInt32__MoveNext, (Queue_1_T_Enumerator_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D128D8, Queue_1_T_Enumerator_System_UInt32__MoveNext__MethodInfo); +DO_APP_FUNC(0x01445E20, void, Queue_1_T_Enumerator_System_UInt32__System_Collections_IEnumerator_Reset, (Queue_1_T_Enumerator_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D128B8, Queue_1_T_Enumerator_System_UInt32__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x01445D70, Object *, Queue_1_T_Enumerator_System_UInt32__System_Collections_IEnumerator_get_Current, (Queue_1_T_Enumerator_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01445D00, void, Queue_1_T_Enumerator_System_UInt32__ThrowEnumerationNotStartedOrEnded, (Queue_1_T_Enumerator_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D128C8, Queue_1_T_Enumerator_System_UInt32__ThrowEnumerationNotStartedOrEnded__MethodInfo); +DO_APP_FUNC(0x01445CC0, uint32_t, Queue_1_T_Enumerator_System_UInt32__get_Current, (Queue_1_T_Enumerator_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01204700, void, HashSet_1_T_Enumerator_System_UInt64___ctor, (HashSet_1_T_Enumerator_System_UInt64_ * __this, HashSet_1_System_UInt64_ * set, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, HashSet_1_T_Enumerator_System_UInt64__Dispose, (HashSet_1_T_Enumerator_System_UInt64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01445EB0, bool, HashSet_1_T_Enumerator_System_UInt64__MoveNext, (HashSet_1_T_Enumerator_System_UInt64_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D128A8, HashSet_1_T_Enumerator_System_UInt64__MoveNext__MethodInfo); +DO_APP_FUNC(0x01446090, void, HashSet_1_T_Enumerator_System_UInt64__System_Collections_IEnumerator_Reset, (HashSet_1_T_Enumerator_System_UInt64_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12888, HashSet_1_T_Enumerator_System_UInt64__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x01445FA0, Object *, HashSet_1_T_Enumerator_System_UInt64__System_Collections_IEnumerator_get_Current, (HashSet_1_T_Enumerator_System_UInt64_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12898, HashSet_1_T_Enumerator_System_UInt64__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x003BB3C0, uint64_t, HashSet_1_T_Enumerator_System_UInt64__get_Current, (HashSet_1_T_Enumerator_System_UInt64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, InlinedArray_1_TValue_Enumerator_System_UInt64__Dispose, (InlinedArray_1_TValue_Enumerator_System_UInt64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434CD0, bool, InlinedArray_1_TValue_Enumerator_System_UInt64__MoveNext, (InlinedArray_1_TValue_Enumerator_System_UInt64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x006DDC60, void, InlinedArray_1_TValue_Enumerator_System_UInt64__Reset, (InlinedArray_1_TValue_Enumerator_System_UInt64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01446160, Object *, InlinedArray_1_TValue_Enumerator_System_UInt64__System_Collections_IEnumerator_get_Current, (InlinedArray_1_TValue_Enumerator_System_UInt64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01446120, uint64_t, InlinedArray_1_TValue_Enumerator_System_UInt64__get_Current, (InlinedArray_1_TValue_Enumerator_System_UInt64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434DE0, void, List_1_T_Enumerator_System_UInt64___ctor, (List_1_T_Enumerator_System_UInt64_ * __this, List_1_System_UInt64_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_UInt64__Dispose, (List_1_T_Enumerator_System_UInt64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434E60, bool, List_1_T_Enumerator_System_UInt64__MoveNext, (List_1_T_Enumerator_System_UInt64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434F00, bool, List_1_T_Enumerator_System_UInt64__MoveNextRare, (List_1_T_Enumerator_System_UInt64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434FE0, void, List_1_T_Enumerator_System_UInt64__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_UInt64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434F40, Object *, List_1_T_Enumerator_System_UInt64__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_UInt64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, uint64_t, List_1_T_Enumerator_System_UInt64__get_Current, (List_1_T_Enumerator_System_UInt64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01446210, void, NativeArray_1_T_Enumerator_System_UInt64___ctor, (NativeArray_1_T_Enumerator_System_UInt64_ * __this, NativeArray_1_System_UInt64_ * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_System_UInt64__Dispose, (NativeArray_1_T_Enumerator_System_UInt64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01446230, bool, NativeArray_1_T_Enumerator_System_UInt64__MoveNext, (NativeArray_1_T_Enumerator_System_UInt64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_System_UInt64__Reset, (NativeArray_1_T_Enumerator_System_UInt64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014462F0, Object *, NativeArray_1_T_Enumerator_System_UInt64__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_System_UInt64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014462E0, uint64_t, NativeArray_1_T_Enumerator_System_UInt64__get_Current, (NativeArray_1_T_Enumerator_System_UInt64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture___ctor, (List_1_T_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ * __this, List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__Dispose, (List_1_T_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01435020, bool, List_1_T_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__MoveNext, (List_1_T_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__MoveNextRare, (List_1_T_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, UVTexture, List_1_T_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__get_Current, (List_1_T_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01446370, void, HashSet_1_T_Enumerator_UdpKit_UdpEndPoint___ctor, (HashSet_1_T_Enumerator_UdpKit_UdpEndPoint_ * __this, HashSet_1_UdpKit_UdpEndPoint_ * set, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, HashSet_1_T_Enumerator_UdpKit_UdpEndPoint__Dispose, (HashSet_1_T_Enumerator_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01446400, bool, HashSet_1_T_Enumerator_UdpKit_UdpEndPoint__MoveNext, (HashSet_1_T_Enumerator_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D127C8, HashSet_1_T_Enumerator_UdpKit_UdpEndPoint__MoveNext__MethodInfo); +DO_APP_FUNC(0x01446630, void, HashSet_1_T_Enumerator_UdpKit_UdpEndPoint__System_Collections_IEnumerator_Reset, (HashSet_1_T_Enumerator_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D127B8, HashSet_1_T_Enumerator_UdpKit_UdpEndPoint__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x01446530, Object *, HashSet_1_T_Enumerator_UdpKit_UdpEndPoint__System_Collections_IEnumerator_get_Current, (HashSet_1_T_Enumerator_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D127C0, HashSet_1_T_Enumerator_UdpKit_UdpEndPoint__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x01446510, UdpEndPoint, HashSet_1_T_Enumerator_UdpKit_UdpEndPoint__get_Current, (HashSet_1_T_Enumerator_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014466C0, void, List_1_T_Enumerator_UdpKit_UdpEndPoint___ctor, (List_1_T_Enumerator_UdpKit_UdpEndPoint_ * __this, List_1_UdpKit_UdpEndPoint_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UdpKit_UdpEndPoint__Dispose, (List_1_T_Enumerator_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8318, List_1_T_Enumerator_UdpKit_UdpEndPoint__Dispose__MethodInfo); +DO_APP_FUNC(0x01446750, bool, List_1_T_Enumerator_UdpKit_UdpEndPoint__MoveNext, (List_1_T_Enumerator_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8330, List_1_T_Enumerator_UdpKit_UdpEndPoint__MoveNext__MethodInfo); +DO_APP_FUNC(0x01446810, bool, List_1_T_Enumerator_UdpKit_UdpEndPoint__MoveNextRare, (List_1_T_Enumerator_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01446920, void, List_1_T_Enumerator_UdpKit_UdpEndPoint__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01446860, Object *, List_1_T_Enumerator_UdpKit_UdpEndPoint__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01446510, UdpEndPoint, List_1_T_Enumerator_UdpKit_UdpEndPoint__get_Current, (List_1_T_Enumerator_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8328, List_1_T_Enumerator_UdpKit_UdpEndPoint__get_Current__MethodInfo); +DO_APP_FUNC(0x01446960, void, Queue_1_T_Enumerator_UdpKit_UdpEvent___ctor, (Queue_1_T_Enumerator_UdpKit_UdpEvent_ * __this, Queue_1_UdpKit_UdpEvent_ * q, MethodInfo * method)); +DO_APP_FUNC(0x014469E0, void, Queue_1_T_Enumerator_UdpKit_UdpEvent__Dispose, (Queue_1_T_Enumerator_UdpKit_UdpEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01446A00, bool, Queue_1_T_Enumerator_UdpKit_UdpEvent__MoveNext, (Queue_1_T_Enumerator_UdpKit_UdpEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D127B0, Queue_1_T_Enumerator_UdpKit_UdpEvent__MoveNext__MethodInfo); +DO_APP_FUNC(0x01446CA0, void, Queue_1_T_Enumerator_UdpKit_UdpEvent__System_Collections_IEnumerator_Reset, (Queue_1_T_Enumerator_UdpKit_UdpEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D127A0, Queue_1_T_Enumerator_UdpKit_UdpEvent__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x01446BE0, Object *, Queue_1_T_Enumerator_UdpKit_UdpEvent__System_Collections_IEnumerator_get_Current, (Queue_1_T_Enumerator_UdpKit_UdpEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01446B70, void, Queue_1_T_Enumerator_UdpKit_UdpEvent__ThrowEnumerationNotStartedOrEnded, (Queue_1_T_Enumerator_UdpKit_UdpEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D127A8, Queue_1_T_Enumerator_UdpKit_UdpEvent__ThrowEnumerationNotStartedOrEnded__MethodInfo); +DO_APP_FUNC(0x01446B20, UdpEvent, Queue_1_T_Enumerator_UdpKit_UdpEvent__get_Current, (Queue_1_T_Enumerator_UdpKit_UdpEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143D950, void, HashSet_1_T_Enumerator_UdpKit_UdpIPv4Address___ctor, (HashSet_1_T_Enumerator_UdpKit_UdpIPv4Address_ * __this, HashSet_1_UdpKit_UdpIPv4Address_ * set, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, HashSet_1_T_Enumerator_UdpKit_UdpIPv4Address__Dispose, (HashSet_1_T_Enumerator_UdpKit_UdpIPv4Address_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01446D30, bool, HashSet_1_T_Enumerator_UdpKit_UdpIPv4Address__MoveNext, (HashSet_1_T_Enumerator_UdpKit_UdpIPv4Address_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12798, HashSet_1_T_Enumerator_UdpKit_UdpIPv4Address__MoveNext__MethodInfo); +DO_APP_FUNC(0x01446F10, void, HashSet_1_T_Enumerator_UdpKit_UdpIPv4Address__System_Collections_IEnumerator_Reset, (HashSet_1_T_Enumerator_UdpKit_UdpIPv4Address_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12808, HashSet_1_T_Enumerator_UdpKit_UdpIPv4Address__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x01446E20, Object *, HashSet_1_T_Enumerator_UdpKit_UdpIPv4Address__System_Collections_IEnumerator_get_Current, (HashSet_1_T_Enumerator_UdpKit_UdpIPv4Address_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12790, HashSet_1_T_Enumerator_UdpKit_UdpIPv4Address__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x003BCD50, UdpIPv4Address, HashSet_1_T_Enumerator_UdpKit_UdpIPv4Address__get_Current, (HashSet_1_T_Enumerator_UdpKit_UdpIPv4Address_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143AF80, void, List_1_T_Enumerator_UdpKit_UdpIPv4Address___ctor, (List_1_T_Enumerator_UdpKit_UdpIPv4Address_ * __this, List_1_UdpKit_UdpIPv4Address_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UdpKit_UdpIPv4Address__Dispose, (List_1_T_Enumerator_UdpKit_UdpIPv4Address_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143B000, bool, List_1_T_Enumerator_UdpKit_UdpIPv4Address__MoveNext, (List_1_T_Enumerator_UdpKit_UdpIPv4Address_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143B0A0, bool, List_1_T_Enumerator_UdpKit_UdpIPv4Address__MoveNextRare, (List_1_T_Enumerator_UdpKit_UdpIPv4Address_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143B180, void, List_1_T_Enumerator_UdpKit_UdpIPv4Address__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UdpKit_UdpIPv4Address_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143B0E0, Object *, List_1_T_Enumerator_UdpKit_UdpIPv4Address__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UdpKit_UdpIPv4Address_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, UdpIPv4Address, List_1_T_Enumerator_UdpKit_UdpIPv4Address__get_Current, (List_1_T_Enumerator_UdpKit_UdpIPv4Address_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434DE0, void, List_1_T_Enumerator_UnityEngine_InputSystem_XR_UsageHint___ctor, (List_1_T_Enumerator_UnityEngine_InputSystem_XR_UsageHint_ * __this, List_1_UnityEngine_InputSystem_XR_UsageHint_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_InputSystem_XR_UsageHint__Dispose, (List_1_T_Enumerator_UnityEngine_InputSystem_XR_UsageHint_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCDB00, List_1_T_Enumerator_UnityEngine_InputSystem_XR_UsageHint__Dispose__MethodInfo); +DO_APP_FUNC(0x01439BC0, bool, List_1_T_Enumerator_UnityEngine_InputSystem_XR_UsageHint__MoveNext, (List_1_T_Enumerator_UnityEngine_InputSystem_XR_UsageHint_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCDA58, List_1_T_Enumerator_UnityEngine_InputSystem_XR_UsageHint__MoveNext__MethodInfo); +DO_APP_FUNC(0x01434F00, bool, List_1_T_Enumerator_UnityEngine_InputSystem_XR_UsageHint__MoveNextRare, (List_1_T_Enumerator_UnityEngine_InputSystem_XR_UsageHint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434FE0, void, List_1_T_Enumerator_UnityEngine_InputSystem_XR_UsageHint__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_InputSystem_XR_UsageHint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434F40, Object *, List_1_T_Enumerator_UnityEngine_InputSystem_XR_UsageHint__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_XR_UsageHint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, UsageHint, List_1_T_Enumerator_UnityEngine_InputSystem_XR_UsageHint__get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_XR_UsageHint_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCDA50, List_1_T_Enumerator_UnityEngine_InputSystem_XR_UsageHint__get_Current__MethodInfo); +DO_APP_FUNC(0x01438DB0, void, List_1_T_Enumerator_Discord_User___ctor, (List_1_T_Enumerator_Discord_User_ * __this, List_1_Discord_User_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Discord_User__Dispose, (List_1_T_Enumerator_Discord_User_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01446FA0, bool, List_1_T_Enumerator_Discord_User__MoveNext, (List_1_T_Enumerator_Discord_User_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438F60, bool, List_1_T_Enumerator_Discord_User__MoveNextRare, (List_1_T_Enumerator_Discord_User_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439090, void, List_1_T_Enumerator_Discord_User__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Discord_User_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438FD0, Object *, List_1_T_Enumerator_Discord_User__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Discord_User_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438FB0, User, List_1_T_Enumerator_Discord_User__get_Current, (List_1_T_Enumerator_Discord_User_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434DE0, void, List_1_T_Enumerator_UnityEngine_Vector2___ctor, (List_1_T_Enumerator_UnityEngine_Vector2_ * __this, List_1_UnityEngine_Vector2_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Vector2__Dispose, (List_1_T_Enumerator_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014470C0, bool, List_1_T_Enumerator_UnityEngine_Vector2__MoveNext, (List_1_T_Enumerator_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434F00, bool, List_1_T_Enumerator_UnityEngine_Vector2__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434FE0, void, List_1_T_Enumerator_UnityEngine_Vector2__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143BFA0, Object *, List_1_T_Enumerator_UnityEngine_Vector2__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01447170, Vector2, List_1_T_Enumerator_UnityEngine_Vector2__get_Current, (List_1_T_Enumerator_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439E60, void, NativeArray_1_T_Enumerator_UnityEngine_Vector2___ctor, (NativeArray_1_T_Enumerator_UnityEngine_Vector2_ * __this, NativeArray_1_UnityEngine_Vector2_ * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_UnityEngine_Vector2__Dispose, (NativeArray_1_T_Enumerator_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01447190, bool, NativeArray_1_T_Enumerator_UnityEngine_Vector2__MoveNext, (NativeArray_1_T_Enumerator_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_UnityEngine_Vector2__Reset, (NativeArray_1_T_Enumerator_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01447240, Object *, NativeArray_1_T_Enumerator_UnityEngine_Vector2__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00F9BE30, Vector2, NativeArray_1_T_Enumerator_UnityEngine_Vector2__get_Current, (NativeArray_1_T_Enumerator_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014427B0, void, Stack_1_T_Enumerator_UnityEngine_Vector2___ctor, (Stack_1_T_Enumerator_UnityEngine_Vector2_ * __this, Stack_1_UnityEngine_Vector2_ * stack, MethodInfo * method)); +DO_APP_FUNC(0x01436E20, void, Stack_1_T_Enumerator_UnityEngine_Vector2__Dispose, (Stack_1_T_Enumerator_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014472C0, bool, Stack_1_T_Enumerator_UnityEngine_Vector2__MoveNext, (Stack_1_T_Enumerator_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12800, Stack_1_T_Enumerator_UnityEngine_Vector2__MoveNext__MethodInfo); +DO_APP_FUNC(0x01447580, void, Stack_1_T_Enumerator_UnityEngine_Vector2__System_Collections_IEnumerator_Reset, (Stack_1_T_Enumerator_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D127F0, Stack_1_T_Enumerator_UnityEngine_Vector2__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x014474D0, Object *, Stack_1_T_Enumerator_UnityEngine_Vector2__System_Collections_IEnumerator_get_Current, (Stack_1_T_Enumerator_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01447460, void, Stack_1_T_Enumerator_UnityEngine_Vector2__ThrowEnumerationNotStartedOrEnded, (Stack_1_T_Enumerator_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D127F8, Stack_1_T_Enumerator_UnityEngine_Vector2__ThrowEnumerationNotStartedOrEnded__MethodInfo); +DO_APP_FUNC(0x01447410, Vector2, Stack_1_T_Enumerator_UnityEngine_Vector2__get_Current, (Stack_1_T_Enumerator_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01447610, void, HashSet_1_T_Enumerator_UnityEngine_Vector3___ctor, (HashSet_1_T_Enumerator_UnityEngine_Vector3_ * __this, HashSet_1_UnityEngine_Vector3_ * set, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, HashSet_1_T_Enumerator_UnityEngine_Vector3__Dispose, (HashSet_1_T_Enumerator_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01447690, bool, HashSet_1_T_Enumerator_UnityEngine_Vector3__MoveNext, (HashSet_1_T_Enumerator_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D127E8, HashSet_1_T_Enumerator_UnityEngine_Vector3__MoveNext__MethodInfo); +DO_APP_FUNC(0x01447890, void, HashSet_1_T_Enumerator_UnityEngine_Vector3__System_Collections_IEnumerator_Reset, (HashSet_1_T_Enumerator_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D127D8, HashSet_1_T_Enumerator_UnityEngine_Vector3__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x01447790, Object *, HashSet_1_T_Enumerator_UnityEngine_Vector3__System_Collections_IEnumerator_get_Current, (HashSet_1_T_Enumerator_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D127E0, HashSet_1_T_Enumerator_UnityEngine_Vector3__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x00C39A10, Vector3, HashSet_1_T_Enumerator_UnityEngine_Vector3__get_Current, (HashSet_1_T_Enumerator_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01437EF0, void, List_1_T_Enumerator_UnityEngine_Vector3___ctor, (List_1_T_Enumerator_UnityEngine_Vector3_ * __this, List_1_UnityEngine_Vector3_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Vector3__Dispose, (List_1_T_Enumerator_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1F60, List_1_T_Enumerator_UnityEngine_Vector3__Dispose__MethodInfo); +DO_APP_FUNC(0x01437F70, bool, List_1_T_Enumerator_UnityEngine_Vector3__MoveNext, (List_1_T_Enumerator_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1F20, List_1_T_Enumerator_UnityEngine_Vector3__MoveNext__MethodInfo); +DO_APP_FUNC(0x01438020, bool, List_1_T_Enumerator_UnityEngine_Vector3__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438110, void, List_1_T_Enumerator_UnityEngine_Vector3__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438060, Object *, List_1_T_Enumerator_UnityEngine_Vector3__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C39A10, Vector3, List_1_T_Enumerator_UnityEngine_Vector3__get_Current, (List_1_T_Enumerator_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1F30, List_1_T_Enumerator_UnityEngine_Vector3__get_Current__MethodInfo); +DO_APP_FUNC(0x01447610, void, HashSet_1_T_Enumerator_UnityEngine_Vector3Int___ctor, (HashSet_1_T_Enumerator_UnityEngine_Vector3Int_ * __this, HashSet_1_UnityEngine_Vector3Int_ * set, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, HashSet_1_T_Enumerator_UnityEngine_Vector3Int__Dispose, (HashSet_1_T_Enumerator_UnityEngine_Vector3Int_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF54C8, HashSet_1_T_Enumerator_UnityEngine_Vector3Int__Dispose__MethodInfo); +DO_APP_FUNC(0x01447920, bool, HashSet_1_T_Enumerator_UnityEngine_Vector3Int__MoveNext, (HashSet_1_T_Enumerator_UnityEngine_Vector3Int_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D127D0, HashSet_1_T_Enumerator_UnityEngine_Vector3Int__MoveNext__MethodInfo); +DO_APP_FUNC(0x01447B20, void, HashSet_1_T_Enumerator_UnityEngine_Vector3Int__System_Collections_IEnumerator_Reset, (HashSet_1_T_Enumerator_UnityEngine_Vector3Int_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12780, HashSet_1_T_Enumerator_UnityEngine_Vector3Int__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x01447A20, Object *, HashSet_1_T_Enumerator_UnityEngine_Vector3Int__System_Collections_IEnumerator_get_Current, (HashSet_1_T_Enumerator_UnityEngine_Vector3Int_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12788, HashSet_1_T_Enumerator_UnityEngine_Vector3Int__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x00C39A10, Vector3Int, HashSet_1_T_Enumerator_UnityEngine_Vector3Int__get_Current, (HashSet_1_T_Enumerator_UnityEngine_Vector3Int_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF54F8, HashSet_1_T_Enumerator_UnityEngine_Vector3Int__get_Current__MethodInfo); +DO_APP_FUNC(0x01439A20, void, NativeArray_1_T_Enumerator_UnityEngine_Vector3Int___ctor, (NativeArray_1_T_Enumerator_UnityEngine_Vector3Int_ * __this, NativeArray_1_UnityEngine_Vector3Int_ * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_UnityEngine_Vector3Int__Dispose, (NativeArray_1_T_Enumerator_UnityEngine_Vector3Int_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439A40, bool, NativeArray_1_T_Enumerator_UnityEngine_Vector3Int__MoveNext, (NativeArray_1_T_Enumerator_UnityEngine_Vector3Int_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_UnityEngine_Vector3Int__Reset, (NativeArray_1_T_Enumerator_UnityEngine_Vector3Int_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439B40, Object *, NativeArray_1_T_Enumerator_UnityEngine_Vector3Int__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_UnityEngine_Vector3Int_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439B20, Vector3Int, NativeArray_1_T_Enumerator_UnityEngine_Vector3Int__get_Current, (NativeArray_1_T_Enumerator_UnityEngine_Vector3Int_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_Vector4___ctor, (List_1_T_Enumerator_UnityEngine_Vector4_ * __this, List_1_UnityEngine_Vector4_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Vector4__Dispose, (List_1_T_Enumerator_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01437E50, bool, List_1_T_Enumerator_UnityEngine_Vector4__MoveNext, (List_1_T_Enumerator_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_Vector4__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_Vector4__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_Vector4__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, Vector4, List_1_T_Enumerator_UnityEngine_Vector4__get_Current, (List_1_T_Enumerator_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143AE10, void, NativeArray_1_T_Enumerator_UnityEngine_Vector4___ctor, (NativeArray_1_T_Enumerator_UnityEngine_Vector4_ * __this, NativeArray_1_UnityEngine_Vector4_ * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_UnityEngine_Vector4__Dispose, (NativeArray_1_T_Enumerator_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143AE30, bool, NativeArray_1_T_Enumerator_UnityEngine_Vector4__MoveNext, (NativeArray_1_T_Enumerator_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_UnityEngine_Vector4__Reset, (NativeArray_1_T_Enumerator_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143AF00, Object *, NativeArray_1_T_Enumerator_UnityEngine_Vector4__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143AEF0, Vector4, NativeArray_1_T_Enumerator_UnityEngine_Vector4__get_Current, (NativeArray_1_T_Enumerator_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143C040, void, NativeSlice_1_T_Enumerator_UnityEngine_Vector4___ctor, (NativeSlice_1_T_Enumerator_UnityEngine_Vector4_ * __this, NativeSlice_1_UnityEngine_Vector4_ * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, NativeSlice_1_T_Enumerator_UnityEngine_Vector4__Dispose, (NativeSlice_1_T_Enumerator_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143C050, bool, NativeSlice_1_T_Enumerator_UnityEngine_Vector4__MoveNext, (NativeSlice_1_T_Enumerator_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439B10, void, NativeSlice_1_T_Enumerator_UnityEngine_Vector4__Reset, (NativeSlice_1_T_Enumerator_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143C100, Object *, NativeSlice_1_T_Enumerator_UnityEngine_Vector4__System_Collections_IEnumerator_get_Current, (NativeSlice_1_T_Enumerator_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143C090, Vector4, NativeSlice_1_T_Enumerator_UnityEngine_Vector4__get_Current, (NativeSlice_1_T_Enumerator_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143FC70, void, NativeArray_1_T_Enumerator_UnityEngine_UIElements_Vertex___ctor, (NativeArray_1_T_Enumerator_UnityEngine_UIElements_Vertex_ * __this, NativeArray_1_UnityEngine_UIElements_Vertex_ * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_UnityEngine_UIElements_Vertex__Dispose, (NativeArray_1_T_Enumerator_UnityEngine_UIElements_Vertex_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143FCA0, bool, NativeArray_1_T_Enumerator_UnityEngine_UIElements_Vertex__MoveNext, (NativeArray_1_T_Enumerator_UnityEngine_UIElements_Vertex_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_UnityEngine_UIElements_Vertex__Reset, (NativeArray_1_T_Enumerator_UnityEngine_UIElements_Vertex_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143FDC0, Object *, NativeArray_1_T_Enumerator_UnityEngine_UIElements_Vertex__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_UnityEngine_UIElements_Vertex_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143FD90, Vertex, NativeArray_1_T_Enumerator_UnityEngine_UIElements_Vertex__get_Current, (NativeArray_1_T_Enumerator_UnityEngine_UIElements_Vertex_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143C040, void, NativeSlice_1_T_Enumerator_UnityEngine_UIElements_Vertex___ctor, (NativeSlice_1_T_Enumerator_UnityEngine_UIElements_Vertex_ * __this, NativeSlice_1_UnityEngine_UIElements_Vertex_ * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, NativeSlice_1_T_Enumerator_UnityEngine_UIElements_Vertex__Dispose, (NativeSlice_1_T_Enumerator_UnityEngine_UIElements_Vertex_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143C050, bool, NativeSlice_1_T_Enumerator_UnityEngine_UIElements_Vertex__MoveNext, (NativeSlice_1_T_Enumerator_UnityEngine_UIElements_Vertex_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439B10, void, NativeSlice_1_T_Enumerator_UnityEngine_UIElements_Vertex__Reset, (NativeSlice_1_T_Enumerator_UnityEngine_UIElements_Vertex_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01447C40, Object *, NativeSlice_1_T_Enumerator_UnityEngine_UIElements_Vertex__System_Collections_IEnumerator_get_Current, (NativeSlice_1_T_Enumerator_UnityEngine_UIElements_Vertex_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01447BB0, Vertex, NativeSlice_1_T_Enumerator_UnityEngine_UIElements_Vertex__get_Current, (NativeSlice_1_T_Enumerator_UnityEngine_UIElements_Vertex_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_Rendering_VertexAttributeDescriptor___ctor, (List_1_T_Enumerator_UnityEngine_Rendering_VertexAttributeDescriptor_ * __this, List_1_UnityEngine_Rendering_VertexAttributeDescriptor_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Rendering_VertexAttributeDescriptor__Dispose, (List_1_T_Enumerator_UnityEngine_Rendering_VertexAttributeDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01437E50, bool, List_1_T_Enumerator_UnityEngine_Rendering_VertexAttributeDescriptor__MoveNext, (List_1_T_Enumerator_UnityEngine_Rendering_VertexAttributeDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_Rendering_VertexAttributeDescriptor__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Rendering_VertexAttributeDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_Rendering_VertexAttributeDescriptor__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Rendering_VertexAttributeDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_Rendering_VertexAttributeDescriptor__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Rendering_VertexAttributeDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, VertexAttributeDescriptor, List_1_T_Enumerator_UnityEngine_Rendering_VertexAttributeDescriptor__get_Current, (List_1_T_Enumerator_UnityEngine_Rendering_VertexAttributeDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143AE10, void, NativeArray_1_T_Enumerator_UnityEngine_Rendering_VertexAttributeDescriptor___ctor, (NativeArray_1_T_Enumerator_UnityEngine_Rendering_VertexAttributeDescriptor_ * __this, NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor_ * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_UnityEngine_Rendering_VertexAttributeDescriptor__Dispose, (NativeArray_1_T_Enumerator_UnityEngine_Rendering_VertexAttributeDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143AE30, bool, NativeArray_1_T_Enumerator_UnityEngine_Rendering_VertexAttributeDescriptor__MoveNext, (NativeArray_1_T_Enumerator_UnityEngine_Rendering_VertexAttributeDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_UnityEngine_Rendering_VertexAttributeDescriptor__Reset, (NativeArray_1_T_Enumerator_UnityEngine_Rendering_VertexAttributeDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143AF00, Object *, NativeArray_1_T_Enumerator_UnityEngine_Rendering_VertexAttributeDescriptor__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_UnityEngine_Rendering_VertexAttributeDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143AEF0, VertexAttributeDescriptor, NativeArray_1_T_Enumerator_UnityEngine_Rendering_VertexAttributeDescriptor__get_Current, (NativeArray_1_T_Enumerator_UnityEngine_Rendering_VertexAttributeDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_Microsoft_MixedReality_OpenXR_ViewConfiguration___ctor, (List_1_T_Enumerator_Microsoft_MixedReality_OpenXR_ViewConfiguration_ * __this, List_1_Microsoft_MixedReality_OpenXR_ViewConfiguration_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Microsoft_MixedReality_OpenXR_ViewConfiguration__Dispose, (List_1_T_Enumerator_Microsoft_MixedReality_OpenXR_ViewConfiguration_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434620, bool, List_1_T_Enumerator_Microsoft_MixedReality_OpenXR_ViewConfiguration__MoveNext, (List_1_T_Enumerator_Microsoft_MixedReality_OpenXR_ViewConfiguration_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_Microsoft_MixedReality_OpenXR_ViewConfiguration__MoveNextRare, (List_1_T_Enumerator_Microsoft_MixedReality_OpenXR_ViewConfiguration_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_Microsoft_MixedReality_OpenXR_ViewConfiguration__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Microsoft_MixedReality_OpenXR_ViewConfiguration_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_Microsoft_MixedReality_OpenXR_ViewConfiguration__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Microsoft_MixedReality_OpenXR_ViewConfiguration_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, ViewConfiguration, List_1_T_Enumerator_Microsoft_MixedReality_OpenXR_ViewConfiguration__get_Current, (List_1_T_Enumerator_Microsoft_MixedReality_OpenXR_ViewConfiguration_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143A450, void, ArraySegment_1_T_Enumerator_Dissonance_Networking_VoicePacket___ctor, (ArraySegment_1_T_Enumerator_Dissonance_Networking_VoicePacket_ * __this, ArraySegment_1_Dissonance_Networking_VoicePacket_ arraySegment, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, ArraySegment_1_T_Enumerator_Dissonance_Networking_VoicePacket__Dispose, (ArraySegment_1_T_Enumerator_Dissonance_Networking_VoicePacket_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143A590, bool, ArraySegment_1_T_Enumerator_Dissonance_Networking_VoicePacket__MoveNext, (ArraySegment_1_T_Enumerator_Dissonance_Networking_VoicePacket_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143A6C0, void, ArraySegment_1_T_Enumerator_Dissonance_Networking_VoicePacket__System_Collections_IEnumerator_Reset, (ArraySegment_1_T_Enumerator_Dissonance_Networking_VoicePacket_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01447DB0, Object *, ArraySegment_1_T_Enumerator_Dissonance_Networking_VoicePacket__System_Collections_IEnumerator_get_Current, (ArraySegment_1_T_Enumerator_Dissonance_Networking_VoicePacket_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01447D30, VoicePacket, ArraySegment_1_T_Enumerator_Dissonance_Networking_VoicePacket__get_Current, (ArraySegment_1_T_Enumerator_Dissonance_Networking_VoicePacket_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438A50, void, List_1_T_Enumerator_Dissonance_Networking_VoicePacket___ctor, (List_1_T_Enumerator_Dissonance_Networking_VoicePacket_ * __this, List_1_Dissonance_Networking_VoicePacket_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Dissonance_Networking_VoicePacket__Dispose, (List_1_T_Enumerator_Dissonance_Networking_VoicePacket_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143CEE0, bool, List_1_T_Enumerator_Dissonance_Networking_VoicePacket__MoveNext, (List_1_T_Enumerator_Dissonance_Networking_VoicePacket_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438C10, bool, List_1_T_Enumerator_Dissonance_Networking_VoicePacket__MoveNextRare, (List_1_T_Enumerator_Dissonance_Networking_VoicePacket_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438D60, void, List_1_T_Enumerator_Dissonance_Networking_VoicePacket__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Dissonance_Networking_VoicePacket_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438C90, Object *, List_1_T_Enumerator_Dissonance_Networking_VoicePacket__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Dissonance_Networking_VoicePacket_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438C60, VoicePacket, List_1_T_Enumerator_Dissonance_Networking_VoicePacket__get_Current, (List_1_T_Enumerator_Dissonance_Networking_VoicePacket_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341F0, void, List_1_T_Enumerator_Pathfinding_Voxels_VoxelContour___ctor, (List_1_T_Enumerator_Pathfinding_Voxels_VoxelContour_ * __this, List_1_Pathfinding_Voxels_VoxelContour_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Pathfinding_Voxels_VoxelContour__Dispose, (List_1_T_Enumerator_Pathfinding_Voxels_VoxelContour_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014344A0, bool, List_1_T_Enumerator_Pathfinding_Voxels_VoxelContour__MoveNext, (List_1_T_Enumerator_Pathfinding_Voxels_VoxelContour_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434370, bool, List_1_T_Enumerator_Pathfinding_Voxels_VoxelContour__MoveNextRare, (List_1_T_Enumerator_Pathfinding_Voxels_VoxelContour_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434460, void, List_1_T_Enumerator_Pathfinding_Voxels_VoxelContour__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Pathfinding_Voxels_VoxelContour_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014343B0, Object *, List_1_T_Enumerator_Pathfinding_Voxels_VoxelContour__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Pathfinding_Voxels_VoxelContour_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01204560, VoxelContour, List_1_T_Enumerator_Pathfinding_Voxels_VoxelContour__get_Current, (List_1_T_Enumerator_Pathfinding_Voxels_VoxelContour_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01447EA0, void, List_1_T_Enumerator_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES___ctor, (List_1_T_Enumerator_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES_ * __this, List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES__Dispose, (List_1_T_Enumerator_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01447F30, bool, List_1_T_Enumerator_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES__MoveNext, (List_1_T_Enumerator_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01448110, bool, List_1_T_Enumerator_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES__MoveNextRare, (List_1_T_Enumerator_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01448300, void, List_1_T_Enumerator_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014481E0, Object *, List_1_T_Enumerator_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01448160, Win32_IP_ADAPTER_ADDRESSES, List_1_T_Enumerator_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES__get_Current, (List_1_T_Enumerator_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01448340, void, List_1_T_Enumerator_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO___ctor, (List_1_T_Enumerator_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO_ * __this, List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO__Dispose, (List_1_T_Enumerator_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014483D0, bool, List_1_T_Enumerator_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO__MoveNext, (List_1_T_Enumerator_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01448540, bool, List_1_T_Enumerator_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO__MoveNextRare, (List_1_T_Enumerator_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01448710, void, List_1_T_Enumerator_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01448600, Object *, List_1_T_Enumerator_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01448590, Win32_IP_ADAPTER_INFO, List_1_T_Enumerator_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO__get_Current, (List_1_T_Enumerator_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_System_Security_Cryptography_X509Certificates_X509ChainStatus___ctor, (List_1_T_Enumerator_System_Security_Cryptography_X509Certificates_X509ChainStatus_ * __this, List_1_System_Security_Cryptography_X509Certificates_X509ChainStatus_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_Security_Cryptography_X509Certificates_X509ChainStatus__Dispose, (List_1_T_Enumerator_System_Security_Cryptography_X509Certificates_X509ChainStatus_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434850, bool, List_1_T_Enumerator_System_Security_Cryptography_X509Certificates_X509ChainStatus__MoveNext, (List_1_T_Enumerator_System_Security_Cryptography_X509Certificates_X509ChainStatus_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_System_Security_Cryptography_X509Certificates_X509ChainStatus__MoveNextRare, (List_1_T_Enumerator_System_Security_Cryptography_X509Certificates_X509ChainStatus_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_System_Security_Cryptography_X509Certificates_X509ChainStatus__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_Security_Cryptography_X509Certificates_X509ChainStatus_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_System_Security_Cryptography_X509Certificates_X509ChainStatus__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_Security_Cryptography_X509Certificates_X509ChainStatus_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, X509ChainStatus, List_1_T_Enumerator_System_Security_Cryptography_X509Certificates_X509ChainStatus__get_Current, (List_1_T_Enumerator_System_Security_Cryptography_X509Certificates_X509ChainStatus_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01467670, void, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_XRAnchor___ctor, (NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_XRAnchor_ * __this, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor_ * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_XRAnchor__Dispose, (NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_XRAnchor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014676A0, bool, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_XRAnchor__MoveNext, (NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_XRAnchor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_XRAnchor__Reset, (NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_XRAnchor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014677D0, Object *, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_XRAnchor__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_XRAnchor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014677A0, XRAnchor, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_XRAnchor__get_Current, (NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_XRAnchor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_UnityEngine_InputSystem_XR_XRFeatureDescriptor___ctor, (List_1_T_Enumerator_UnityEngine_InputSystem_XR_XRFeatureDescriptor_ * __this, List_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_InputSystem_XR_XRFeatureDescriptor__Dispose, (List_1_T_Enumerator_UnityEngine_InputSystem_XR_XRFeatureDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01435020, bool, List_1_T_Enumerator_UnityEngine_InputSystem_XR_XRFeatureDescriptor__MoveNext, (List_1_T_Enumerator_UnityEngine_InputSystem_XR_XRFeatureDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_UnityEngine_InputSystem_XR_XRFeatureDescriptor__MoveNextRare, (List_1_T_Enumerator_UnityEngine_InputSystem_XR_XRFeatureDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_UnityEngine_InputSystem_XR_XRFeatureDescriptor__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_InputSystem_XR_XRFeatureDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_UnityEngine_InputSystem_XR_XRFeatureDescriptor__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_XR_XRFeatureDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, XRFeatureDescriptor, List_1_T_Enumerator_UnityEngine_InputSystem_XR_XRFeatureDescriptor__get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_XR_XRFeatureDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01467870, void, List_1_T_Enumerator_UnityEngine_XR_XRNodeState___ctor, (List_1_T_Enumerator_UnityEngine_XR_XRNodeState_ * __this, List_1_UnityEngine_XR_XRNodeState_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_XR_XRNodeState__Dispose, (List_1_T_Enumerator_UnityEngine_XR_XRNodeState_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B100, List_1_T_Enumerator_UnityEngine_XR_XRNodeState__Dispose__MethodInfo); +DO_APP_FUNC(0x01467910, bool, List_1_T_Enumerator_UnityEngine_XR_XRNodeState__MoveNext, (List_1_T_Enumerator_UnityEngine_XR_XRNodeState_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B0F0, List_1_T_Enumerator_UnityEngine_XR_XRNodeState__MoveNext__MethodInfo); +DO_APP_FUNC(0x01467A00, bool, List_1_T_Enumerator_UnityEngine_XR_XRNodeState__MoveNextRare, (List_1_T_Enumerator_UnityEngine_XR_XRNodeState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01467B70, void, List_1_T_Enumerator_UnityEngine_XR_XRNodeState__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_XR_XRNodeState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01467A90, Object *, List_1_T_Enumerator_UnityEngine_XR_XRNodeState__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_XR_XRNodeState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01467A50, XRNodeState, List_1_T_Enumerator_UnityEngine_XR_XRNodeState__get_Current, (List_1_T_Enumerator_UnityEngine_XR_XRNodeState_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B190, List_1_T_Enumerator_UnityEngine_XR_XRNodeState__get_Current__MethodInfo); +DO_APP_FUNC(0x01467BC0, void, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_XRRaycast___ctor, (NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_XRRaycast_ * __this, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast_ * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_XRRaycast__Dispose, (NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_XRRaycast_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01467BF0, bool, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_XRRaycast__MoveNext, (NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_XRRaycast_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_XRRaycast__Reset, (NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_XRRaycast_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01467D20, Object *, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_XRRaycast__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_XRRaycast_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01467CF0, XRRaycast, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_XRRaycast__get_Current, (NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_XRRaycast_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_Pathfinding_AdvancedSmooth_Turn___ctor, (List_1_T_Enumerator_Pathfinding_AdvancedSmooth_Turn_ * __this, List_1_Pathfinding_AdvancedSmooth_Turn_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Pathfinding_AdvancedSmooth_Turn__Dispose, (List_1_T_Enumerator_Pathfinding_AdvancedSmooth_Turn_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434850, bool, List_1_T_Enumerator_Pathfinding_AdvancedSmooth_Turn__MoveNext, (List_1_T_Enumerator_Pathfinding_AdvancedSmooth_Turn_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_Pathfinding_AdvancedSmooth_Turn__MoveNextRare, (List_1_T_Enumerator_Pathfinding_AdvancedSmooth_Turn_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_Pathfinding_AdvancedSmooth_Turn__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Pathfinding_AdvancedSmooth_Turn_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_Pathfinding_AdvancedSmooth_Turn__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Pathfinding_AdvancedSmooth_Turn_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, AdvancedSmooth_Turn, List_1_T_Enumerator_Pathfinding_AdvancedSmooth_Turn__get_Current, (List_1_T_Enumerator_Pathfinding_AdvancedSmooth_Turn_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438DB0, void, List_1_T_Enumerator_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo___ctor, (List_1_T_Enumerator_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo_ * __this, List_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo__Dispose, (List_1_T_Enumerator_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014435B0, bool, List_1_T_Enumerator_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo__MoveNext, (List_1_T_Enumerator_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438F60, bool, List_1_T_Enumerator_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439090, void, List_1_T_Enumerator_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438FD0, Object *, List_1_T_Enumerator_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438FB0, AnimationOutputWeightProcessor_WeightInfo, List_1_T_Enumerator_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo__get_Current, (List_1_T_Enumerator_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014427B0, void, Stack_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext___ctor, (Stack_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext_ * __this, Stack_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext_ * stack, MethodInfo * method)); +DO_APP_FUNC(0x01436E20, void, Stack_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext__Dispose, (Stack_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01467DC0, bool, Stack_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext__MoveNext, (Stack_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D6B0, Stack_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext__MoveNext__MethodInfo); +DO_APP_FUNC(0x01468050, void, Stack_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext__System_Collections_IEnumerator_Reset, (Stack_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D6A0, Stack_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x01467FA0, Object *, Stack_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext__System_Collections_IEnumerator_get_Current, (Stack_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01467F30, void, Stack_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext__ThrowEnumerationNotStartedOrEnded, (Stack_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D6A8, Stack_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext__ThrowEnumerationNotStartedOrEnded__MethodInfo); +DO_APP_FUNC(0x01467EF0, BaseStyleMatcher_MatchContext, Stack_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext__get_Current, (Stack_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_BeforeRenderHelper_OrderBlock___ctor, (List_1_T_Enumerator_UnityEngine_BeforeRenderHelper_OrderBlock_ * __this, List_1_UnityEngine_BeforeRenderHelper_OrderBlock_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_BeforeRenderHelper_OrderBlock__Dispose, (List_1_T_Enumerator_UnityEngine_BeforeRenderHelper_OrderBlock_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434850, bool, List_1_T_Enumerator_UnityEngine_BeforeRenderHelper_OrderBlock__MoveNext, (List_1_T_Enumerator_UnityEngine_BeforeRenderHelper_OrderBlock_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_BeforeRenderHelper_OrderBlock__MoveNextRare, (List_1_T_Enumerator_UnityEngine_BeforeRenderHelper_OrderBlock_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_BeforeRenderHelper_OrderBlock__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_BeforeRenderHelper_OrderBlock_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_BeforeRenderHelper_OrderBlock__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_BeforeRenderHelper_OrderBlock_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, BeforeRenderHelper_OrderBlock, List_1_T_Enumerator_UnityEngine_BeforeRenderHelper_OrderBlock__get_Current, (List_1_T_Enumerator_UnityEngine_BeforeRenderHelper_OrderBlock_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434DE0, void, List_1_T_Enumerator_UnityEngine_UIElements_UIR_BitmapAllocator32_Page___ctor, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_BitmapAllocator32_Page_ * __this, List_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__Dispose, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_BitmapAllocator32_Page_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434E60, bool, List_1_T_Enumerator_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__MoveNext, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_BitmapAllocator32_Page_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434F00, bool, List_1_T_Enumerator_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_BitmapAllocator32_Page_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434FE0, void, List_1_T_Enumerator_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_BitmapAllocator32_Page_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434F40, Object *, List_1_T_Enumerator_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_BitmapAllocator32_Page_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, BitmapAllocator32_Page, List_1_T_Enumerator_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_BitmapAllocator32_Page_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_UnityEngine_Camera_RenderRequest___ctor, (List_1_T_Enumerator_UnityEngine_Camera_RenderRequest_ * __this, List_1_UnityEngine_Camera_RenderRequest_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Camera_RenderRequest__Dispose, (List_1_T_Enumerator_UnityEngine_Camera_RenderRequest_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439CB0, bool, List_1_T_Enumerator_UnityEngine_Camera_RenderRequest__MoveNext, (List_1_T_Enumerator_UnityEngine_Camera_RenderRequest_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_UnityEngine_Camera_RenderRequest__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Camera_RenderRequest_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_UnityEngine_Camera_RenderRequest__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Camera_RenderRequest_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_UnityEngine_Camera_RenderRequest__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Camera_RenderRequest_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, Camera_RenderRequest, List_1_T_Enumerator_UnityEngine_Camera_RenderRequest__get_Current, (List_1_T_Enumerator_UnityEngine_Camera_RenderRequest_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_Cinemachine_CameraState_CustomBlendable___ctor, (List_1_T_Enumerator_Cinemachine_CameraState_CustomBlendable_ * __this, List_1_Cinemachine_CameraState_CustomBlendable_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Cinemachine_CameraState_CustomBlendable__Dispose, (List_1_T_Enumerator_Cinemachine_CameraState_CustomBlendable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_Cinemachine_CameraState_CustomBlendable__MoveNext, (List_1_T_Enumerator_Cinemachine_CameraState_CustomBlendable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_Cinemachine_CameraState_CustomBlendable__MoveNextRare, (List_1_T_Enumerator_Cinemachine_CameraState_CustomBlendable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_Cinemachine_CameraState_CustomBlendable__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Cinemachine_CameraState_CustomBlendable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_Cinemachine_CameraState_CustomBlendable__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Cinemachine_CameraState_CustomBlendable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, CameraState_CustomBlendable, List_1_T_Enumerator_Cinemachine_CameraState_CustomBlendable__get_Current, (List_1_T_Enumerator_Cinemachine_CameraState_CustomBlendable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434DE0, void, List_1_T_Enumerator_Cinemachine_CinemachineClearShot_Pair___ctor, (List_1_T_Enumerator_Cinemachine_CinemachineClearShot_Pair_ * __this, List_1_Cinemachine_CinemachineClearShot_Pair_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Cinemachine_CinemachineClearShot_Pair__Dispose, (List_1_T_Enumerator_Cinemachine_CinemachineClearShot_Pair_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434E60, bool, List_1_T_Enumerator_Cinemachine_CinemachineClearShot_Pair__MoveNext, (List_1_T_Enumerator_Cinemachine_CinemachineClearShot_Pair_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434F00, bool, List_1_T_Enumerator_Cinemachine_CinemachineClearShot_Pair__MoveNextRare, (List_1_T_Enumerator_Cinemachine_CinemachineClearShot_Pair_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434FE0, void, List_1_T_Enumerator_Cinemachine_CinemachineClearShot_Pair__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Cinemachine_CinemachineClearShot_Pair_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434F40, Object *, List_1_T_Enumerator_Cinemachine_CinemachineClearShot_Pair__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Cinemachine_CinemachineClearShot_Pair_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, CinemachineClearShot_Pair, List_1_T_Enumerator_Cinemachine_CinemachineClearShot_Pair__get_Current, (List_1_T_Enumerator_Cinemachine_CinemachineClearShot_Pair_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434DE0, void, List_1_T_Enumerator_Cinemachine_CinemachineStateDrivenCamera_HashPair___ctor, (List_1_T_Enumerator_Cinemachine_CinemachineStateDrivenCamera_HashPair_ * __this, List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Cinemachine_CinemachineStateDrivenCamera_HashPair__Dispose, (List_1_T_Enumerator_Cinemachine_CinemachineStateDrivenCamera_HashPair_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434E60, bool, List_1_T_Enumerator_Cinemachine_CinemachineStateDrivenCamera_HashPair__MoveNext, (List_1_T_Enumerator_Cinemachine_CinemachineStateDrivenCamera_HashPair_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434F00, bool, List_1_T_Enumerator_Cinemachine_CinemachineStateDrivenCamera_HashPair__MoveNextRare, (List_1_T_Enumerator_Cinemachine_CinemachineStateDrivenCamera_HashPair_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434FE0, void, List_1_T_Enumerator_Cinemachine_CinemachineStateDrivenCamera_HashPair__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Cinemachine_CinemachineStateDrivenCamera_HashPair_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434F40, Object *, List_1_T_Enumerator_Cinemachine_CinemachineStateDrivenCamera_HashPair__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Cinemachine_CinemachineStateDrivenCamera_HashPair_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, CinemachineStateDrivenCamera_HashPair, List_1_T_Enumerator_Cinemachine_CinemachineStateDrivenCamera_HashPair__get_Current, (List_1_T_Enumerator_Cinemachine_CinemachineStateDrivenCamera_HashPair_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_Cinemachine_ClipperLib_DoublePoint___ctor, (List_1_T_Enumerator_Cinemachine_ClipperLib_DoublePoint_ * __this, List_1_Cinemachine_ClipperLib_DoublePoint_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Cinemachine_ClipperLib_DoublePoint__Dispose, (List_1_T_Enumerator_Cinemachine_ClipperLib_DoublePoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01437E50, bool, List_1_T_Enumerator_Cinemachine_ClipperLib_DoublePoint__MoveNext, (List_1_T_Enumerator_Cinemachine_ClipperLib_DoublePoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_Cinemachine_ClipperLib_DoublePoint__MoveNextRare, (List_1_T_Enumerator_Cinemachine_ClipperLib_DoublePoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_Cinemachine_ClipperLib_DoublePoint__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Cinemachine_ClipperLib_DoublePoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014680E0, Object *, List_1_T_Enumerator_Cinemachine_ClipperLib_DoublePoint__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Cinemachine_ClipperLib_DoublePoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, ClipperLib_DoublePoint, List_1_T_Enumerator_Cinemachine_ClipperLib_DoublePoint__get_Current, (List_1_T_Enumerator_Cinemachine_ClipperLib_DoublePoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_Cinemachine_ClipperLib_IntPoint___ctor, (List_1_T_Enumerator_Cinemachine_ClipperLib_IntPoint_ * __this, List_1_Cinemachine_ClipperLib_IntPoint_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Cinemachine_ClipperLib_IntPoint__Dispose, (List_1_T_Enumerator_Cinemachine_ClipperLib_IntPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0A10, List_1_T_Enumerator_Cinemachine_ClipperLib_IntPoint__Dispose__MethodInfo); +DO_APP_FUNC(0x01437E50, bool, List_1_T_Enumerator_Cinemachine_ClipperLib_IntPoint__MoveNext, (List_1_T_Enumerator_Cinemachine_ClipperLib_IntPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0A00, List_1_T_Enumerator_Cinemachine_ClipperLib_IntPoint__MoveNext__MethodInfo); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_Cinemachine_ClipperLib_IntPoint__MoveNextRare, (List_1_T_Enumerator_Cinemachine_ClipperLib_IntPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_Cinemachine_ClipperLib_IntPoint__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Cinemachine_ClipperLib_IntPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_Cinemachine_ClipperLib_IntPoint__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Cinemachine_ClipperLib_IntPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, ClipperLib_IntPoint, List_1_T_Enumerator_Cinemachine_ClipperLib_IntPoint__get_Current, (List_1_T_Enumerator_Cinemachine_ClipperLib_IntPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD09F8, List_1_T_Enumerator_Cinemachine_ClipperLib_IntPoint__get_Current__MethodInfo); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_Cinemachine_ConfinerOven_PolygonSolution___ctor, (List_1_T_Enumerator_Cinemachine_ConfinerOven_PolygonSolution_ * __this, List_1_Cinemachine_ConfinerOven_PolygonSolution_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Cinemachine_ConfinerOven_PolygonSolution__Dispose, (List_1_T_Enumerator_Cinemachine_ConfinerOven_PolygonSolution_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_Cinemachine_ConfinerOven_PolygonSolution__MoveNext, (List_1_T_Enumerator_Cinemachine_ConfinerOven_PolygonSolution_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_Cinemachine_ConfinerOven_PolygonSolution__MoveNextRare, (List_1_T_Enumerator_Cinemachine_ConfinerOven_PolygonSolution_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_Cinemachine_ConfinerOven_PolygonSolution__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Cinemachine_ConfinerOven_PolygonSolution_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_Cinemachine_ConfinerOven_PolygonSolution__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Cinemachine_ConfinerOven_PolygonSolution_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, ConfinerOven_PolygonSolution, List_1_T_Enumerator_Cinemachine_ConfinerOven_PolygonSolution__get_Current, (List_1_T_Enumerator_Cinemachine_ConfinerOven_PolygonSolution_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01437EF0, void, List_1_T_Enumerator_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB___ctor, (List_1_T_Enumerator_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * __this, List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__Dispose, (List_1_T_Enumerator_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01437F70, bool, List_1_T_Enumerator_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__MoveNext, (List_1_T_Enumerator_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438020, bool, List_1_T_Enumerator_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__MoveNextRare, (List_1_T_Enumerator_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438110, void, List_1_T_Enumerator_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438060, Object *, List_1_T_Enumerator_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C39A10, CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB, List_1_T_Enumerator_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__get_Current, (List_1_T_Enumerator_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01468180, void, Stack_1_T_Enumerator_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator___ctor, (Stack_1_T_Enumerator_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator_ * __this, Stack_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator_ * stack, MethodInfo * method)); +DO_APP_FUNC(0x01436E20, void, Stack_1_T_Enumerator_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator__Dispose, (Stack_1_T_Enumerator_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01468210, bool, Stack_1_T_Enumerator_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator__MoveNext, (Stack_1_T_Enumerator_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D640, Stack_1_T_Enumerator_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator__MoveNext__MethodInfo); +DO_APP_FUNC(0x01468530, void, Stack_1_T_Enumerator_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator__System_Collections_IEnumerator_Reset, (Stack_1_T_Enumerator_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D628, Stack_1_T_Enumerator_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x01468460, Object *, Stack_1_T_Enumerator_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator__System_Collections_IEnumerator_get_Current, (Stack_1_T_Enumerator_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014683F0, void, Stack_1_T_Enumerator_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator__ThrowEnumerationNotStartedOrEnded, (Stack_1_T_Enumerator_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D638, Stack_1_T_Enumerator_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator__ThrowEnumerationNotStartedOrEnded__MethodInfo); +DO_APP_FUNC(0x01468390, DamageIndicatorMonitor_DamageIndicator, Stack_1_T_Enumerator_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator__get_Current, (Stack_1_T_Enumerator_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014685D0, void, LinkedList_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo___ctor, (LinkedList_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ * __this, LinkedList_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ * list, MethodInfo * method)); +DO_APP_FUNC(0x014686B0, void, LinkedList_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo___ctor_1, (LinkedList_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D618, LinkedList_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo___ctor_1__MethodInfo); +DO_APP_FUNC(0x003AE050, void, LinkedList_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__Dispose, (LinkedList_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01468870, bool, LinkedList_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__MoveNext, (LinkedList_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D608, LinkedList_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__MoveNext__MethodInfo); +DO_APP_FUNC(0x01468A80, void, LinkedList_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__System_Collections_IEnumerator_Reset, (LinkedList_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D600, LinkedList_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x01468720, Object *, LinkedList_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__System_Collections_IEnumerator_get_Current, (LinkedList_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D610, LinkedList_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x01468BC0, void, LinkedList_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__System_Runtime_Serialization_IDeserializationCallback_OnDeserialization, (LinkedList_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ * __this, Object * sender, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D698, LinkedList_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__System_Runtime_Serialization_IDeserializationCallback_OnDeserialization__MethodInfo); +DO_APP_FUNC(0x01468B70, void, LinkedList_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__System_Runtime_Serialization_ISerializable_GetObjectData, (LinkedList_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D5F8, LinkedList_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__System_Runtime_Serialization_ISerializable_GetObjectData__MethodInfo); +DO_APP_FUNC(0x01468700, DelayedActionManager_DelegateInfo, LinkedList_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__get_Current, (LinkedList_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341F0, void, List_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo___ctor, (List_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ * __this, List_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__Dispose, (List_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014344A0, bool, List_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__MoveNext, (List_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434370, bool, List_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__MoveNextRare, (List_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434460, void, List_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014343B0, Object *, List_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01204560, DelayedActionManager_DelegateInfo, List_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__get_Current, (List_1_T_Enumerator_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_Photon_Bolt_EventDispatcher_CallbackWrapper___ctor, (List_1_T_Enumerator_Photon_Bolt_EventDispatcher_CallbackWrapper_ * __this, List_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Photon_Bolt_EventDispatcher_CallbackWrapper__Dispose, (List_1_T_Enumerator_Photon_Bolt_EventDispatcher_CallbackWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_Photon_Bolt_EventDispatcher_CallbackWrapper__MoveNext, (List_1_T_Enumerator_Photon_Bolt_EventDispatcher_CallbackWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_Photon_Bolt_EventDispatcher_CallbackWrapper__MoveNextRare, (List_1_T_Enumerator_Photon_Bolt_EventDispatcher_CallbackWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_Photon_Bolt_EventDispatcher_CallbackWrapper__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Photon_Bolt_EventDispatcher_CallbackWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_Photon_Bolt_EventDispatcher_CallbackWrapper__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Photon_Bolt_EventDispatcher_CallbackWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, EventDispatcher_CallbackWrapper, List_1_T_Enumerator_Photon_Bolt_EventDispatcher_CallbackWrapper__get_Current, (List_1_T_Enumerator_Photon_Bolt_EventDispatcher_CallbackWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_Photon_Bolt_EventDispatcher_EventListener___ctor, (List_1_T_Enumerator_Photon_Bolt_EventDispatcher_EventListener_ * __this, List_1_Photon_Bolt_EventDispatcher_EventListener_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Photon_Bolt_EventDispatcher_EventListener__Dispose, (List_1_T_Enumerator_Photon_Bolt_EventDispatcher_EventListener_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01435020, bool, List_1_T_Enumerator_Photon_Bolt_EventDispatcher_EventListener__MoveNext, (List_1_T_Enumerator_Photon_Bolt_EventDispatcher_EventListener_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_Photon_Bolt_EventDispatcher_EventListener__MoveNextRare, (List_1_T_Enumerator_Photon_Bolt_EventDispatcher_EventListener_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_Photon_Bolt_EventDispatcher_EventListener__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Photon_Bolt_EventDispatcher_EventListener_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_Photon_Bolt_EventDispatcher_EventListener__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Photon_Bolt_EventDispatcher_EventListener_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, EventDispatcher_EventListener, List_1_T_Enumerator_Photon_Bolt_EventDispatcher_EventListener__get_Current, (List_1_T_Enumerator_Photon_Bolt_EventDispatcher_EventListener_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01436DA0, void, Stack_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_DispatchContext___ctor, (Stack_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_DispatchContext_ * __this, Stack_1_UnityEngine_UIElements_EventDispatcher_DispatchContext_ * stack, MethodInfo * method)); +DO_APP_FUNC(0x01436E20, void, Stack_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_DispatchContext__Dispose, (Stack_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_DispatchContext_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01468C10, bool, Stack_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_DispatchContext__MoveNext, (Stack_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_DispatchContext_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D688, Stack_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_DispatchContext__MoveNext__MethodInfo); +DO_APP_FUNC(0x01468EC0, void, Stack_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_DispatchContext__System_Collections_IEnumerator_Reset, (Stack_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_DispatchContext_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D670, Stack_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_DispatchContext__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x01468E10, Object *, Stack_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_DispatchContext__System_Collections_IEnumerator_get_Current, (Stack_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_DispatchContext_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01468DA0, void, Stack_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_DispatchContext__ThrowEnumerationNotStartedOrEnded, (Stack_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_DispatchContext_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D678, Stack_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_DispatchContext__ThrowEnumerationNotStartedOrEnded__MethodInfo); +DO_APP_FUNC(0x01468D50, EventDispatcher_DispatchContext, Stack_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_DispatchContext__get_Current, (Stack_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_DispatchContext_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434950, void, Queue_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_EventRecord___ctor, (Queue_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_EventRecord_ * __this, Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord_ * q, MethodInfo * method)); +DO_APP_FUNC(0x014349D0, void, Queue_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_EventRecord__Dispose, (Queue_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_EventRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01468F50, bool, Queue_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_EventRecord__MoveNext, (Queue_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_EventRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D668, Queue_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_EventRecord__MoveNext__MethodInfo); +DO_APP_FUNC(0x014691C0, void, Queue_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_EventRecord__System_Collections_IEnumerator_Reset, (Queue_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_EventRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D650, Queue_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_EventRecord__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x01469110, Object *, Queue_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_EventRecord__System_Collections_IEnumerator_get_Current, (Queue_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_EventRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014690A0, void, Queue_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_EventRecord__ThrowEnumerationNotStartedOrEnded, (Queue_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_EventRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D658, Queue_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_EventRecord__ThrowEnumerationNotStartedOrEnded__MethodInfo); +DO_APP_FUNC(0x01469050, EventDispatcher_EventRecord, Queue_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_EventRecord__get_Current, (Queue_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_EventRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01469250, void, List_1_T_Enumerator_Dissonance_Networking_Client_EventQueue_NetworkEvent___ctor, (List_1_T_Enumerator_Dissonance_Networking_Client_EventQueue_NetworkEvent_ * __this, List_1_Dissonance_Networking_Client_EventQueue_NetworkEvent_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Dissonance_Networking_Client_EventQueue_NetworkEvent__Dispose, (List_1_T_Enumerator_Dissonance_Networking_Client_EventQueue_NetworkEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01469300, bool, List_1_T_Enumerator_Dissonance_Networking_Client_EventQueue_NetworkEvent__MoveNext, (List_1_T_Enumerator_Dissonance_Networking_Client_EventQueue_NetworkEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01469450, bool, List_1_T_Enumerator_Dissonance_Networking_Client_EventQueue_NetworkEvent__MoveNextRare, (List_1_T_Enumerator_Dissonance_Networking_Client_EventQueue_NetworkEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01469630, void, List_1_T_Enumerator_Dissonance_Networking_Client_EventQueue_NetworkEvent__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Dissonance_Networking_Client_EventQueue_NetworkEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01469520, Object *, List_1_T_Enumerator_Dissonance_Networking_Client_EventQueue_NetworkEvent__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Dissonance_Networking_Client_EventQueue_NetworkEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014694C0, EventQueue_NetworkEvent, List_1_T_Enumerator_Dissonance_Networking_Client_EventQueue_NetworkEvent__get_Current, (List_1_T_Enumerator_Dissonance_Networking_Client_EventQueue_NetworkEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_UIElements_FocusController_FocusedElement___ctor, (List_1_T_Enumerator_UnityEngine_UIElements_FocusController_FocusedElement_ * __this, List_1_UnityEngine_UIElements_FocusController_FocusedElement_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIElements_FocusController_FocusedElement__Dispose, (List_1_T_Enumerator_UnityEngine_UIElements_FocusController_FocusedElement_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2D20, List_1_T_Enumerator_UnityEngine_UIElements_FocusController_FocusedElement__Dispose__MethodInfo); +DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_UnityEngine_UIElements_FocusController_FocusedElement__MoveNext, (List_1_T_Enumerator_UnityEngine_UIElements_FocusController_FocusedElement_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2D68, List_1_T_Enumerator_UnityEngine_UIElements_FocusController_FocusedElement__MoveNext__MethodInfo); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_UIElements_FocusController_FocusedElement__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIElements_FocusController_FocusedElement_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_UIElements_FocusController_FocusedElement__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIElements_FocusController_FocusedElement_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_UIElements_FocusController_FocusedElement__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_FocusController_FocusedElement_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, FocusController_FocusedElement, List_1_T_Enumerator_UnityEngine_UIElements_FocusController_FocusedElement__get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_FocusController_FocusedElement_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2D78, List_1_T_Enumerator_UnityEngine_UIElements_FocusController_FocusedElement__get_Current__MethodInfo); +DO_APP_FUNC(0x01443880, void, List_1_T_Enumerator_Pathfinding_Funnel_PathPart___ctor, (List_1_T_Enumerator_Pathfinding_Funnel_PathPart_ * __this, List_1_Pathfinding_Funnel_PathPart_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Pathfinding_Funnel_PathPart__Dispose, (List_1_T_Enumerator_Pathfinding_Funnel_PathPart_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01443910, bool, List_1_T_Enumerator_Pathfinding_Funnel_PathPart__MoveNext, (List_1_T_Enumerator_Pathfinding_Funnel_PathPart_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014439D0, bool, List_1_T_Enumerator_Pathfinding_Funnel_PathPart__MoveNextRare, (List_1_T_Enumerator_Pathfinding_Funnel_PathPart_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01443B00, void, List_1_T_Enumerator_Pathfinding_Funnel_PathPart__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Pathfinding_Funnel_PathPart_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01443A40, Object *, List_1_T_Enumerator_Pathfinding_Funnel_PathPart__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Pathfinding_Funnel_PathPart_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01443A20, Funnel_PathPart, List_1_T_Enumerator_Pathfinding_Funnel_PathPart__get_Current, (List_1_T_Enumerator_Pathfinding_Funnel_PathPart_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01446960, void, Queue_1_T_Enumerator_Pathfinding_GraphUpdateProcessor_GUOSingle___ctor, (Queue_1_T_Enumerator_Pathfinding_GraphUpdateProcessor_GUOSingle_ * __this, Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle_ * q, MethodInfo * method)); +DO_APP_FUNC(0x014469E0, void, Queue_1_T_Enumerator_Pathfinding_GraphUpdateProcessor_GUOSingle__Dispose, (Queue_1_T_Enumerator_Pathfinding_GraphUpdateProcessor_GUOSingle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01469690, bool, Queue_1_T_Enumerator_Pathfinding_GraphUpdateProcessor_GUOSingle__MoveNext, (Queue_1_T_Enumerator_Pathfinding_GraphUpdateProcessor_GUOSingle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D648, Queue_1_T_Enumerator_Pathfinding_GraphUpdateProcessor_GUOSingle__MoveNext__MethodInfo); +DO_APP_FUNC(0x01469930, void, Queue_1_T_Enumerator_Pathfinding_GraphUpdateProcessor_GUOSingle__System_Collections_IEnumerator_Reset, (Queue_1_T_Enumerator_Pathfinding_GraphUpdateProcessor_GUOSingle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D598, Queue_1_T_Enumerator_Pathfinding_GraphUpdateProcessor_GUOSingle__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x01469870, Object *, Queue_1_T_Enumerator_Pathfinding_GraphUpdateProcessor_GUOSingle__System_Collections_IEnumerator_get_Current, (Queue_1_T_Enumerator_Pathfinding_GraphUpdateProcessor_GUOSingle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01469800, void, Queue_1_T_Enumerator_Pathfinding_GraphUpdateProcessor_GUOSingle__ThrowEnumerationNotStartedOrEnded, (Queue_1_T_Enumerator_Pathfinding_GraphUpdateProcessor_GUOSingle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D5A0, Queue_1_T_Enumerator_Pathfinding_GraphUpdateProcessor_GUOSingle__ThrowEnumerationNotStartedOrEnded__MethodInfo); +DO_APP_FUNC(0x014697B0, GraphUpdateProcessor_GUOSingle, Queue_1_T_Enumerator_Pathfinding_GraphUpdateProcessor_GUOSingle__get_Current, (Queue_1_T_Enumerator_Pathfinding_GraphUpdateProcessor_GUOSingle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor___ctor, (List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * __this, List_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__Dispose, (List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD17D8, List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__Dispose__MethodInfo); +DO_APP_FUNC(0x0143C4B0, bool, List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__MoveNext, (List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD17E8, List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__MoveNext__MethodInfo); +DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__MoveNextRare, (List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, HID_HIDCollectionDescriptor, List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1808, List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__get_Current__MethodInfo); +DO_APP_FUNC(0x0143B970, void, List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor___ctor, (List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * __this, List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__Dispose, (List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD17A0, List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__Dispose__MethodInfo); +DO_APP_FUNC(0x0143BA00, bool, List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__MoveNext, (List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD17A8, List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__MoveNext__MethodInfo); +DO_APP_FUNC(0x0143BAE0, bool, List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__MoveNextRare, (List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143BC30, void, List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143BB60, Object *, List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143BB30, HID_HIDElementDescriptor, List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD17C0, List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__get_Current__MethodInfo); +DO_APP_FUNC(0x01437EF0, void, List_1_T_Enumerator_UnityEngine_InputSystem_HID_HIDParser_HIDReportData___ctor, (List_1_T_Enumerator_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_ * __this, List_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__Dispose, (List_1_T_Enumerator_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01437F70, bool, List_1_T_Enumerator_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__MoveNext, (List_1_T_Enumerator_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438020, bool, List_1_T_Enumerator_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__MoveNextRare, (List_1_T_Enumerator_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438110, void, List_1_T_Enumerator_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438060, Object *, List_1_T_Enumerator_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C39A10, HIDParser_HIDReportData, List_1_T_Enumerator_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143CB60, void, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage___ctor, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage_ * __this, HIDSupport_HIDPageUsage__Array * array, int32_t index, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage__Dispose, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143CBD0, bool, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage__MoveNext, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143CBF0, void, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage__Reset, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01469A50, Object *, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage__System_Collections_IEnumerator_get_Current, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014699C0, HIDSupport_HIDPageUsage, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage__get_Current, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D590, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage__get_Current__MethodInfo); +DO_APP_FUNC(0x0143AF80, void, List_1_T_Enumerator_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData___ctor, (List_1_T_Enumerator_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * __this, List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__Dispose, (List_1_T_Enumerator_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01469AD0, bool, List_1_T_Enumerator_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__MoveNext, (List_1_T_Enumerator_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143B0A0, bool, List_1_T_Enumerator_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__MoveNextRare, (List_1_T_Enumerator_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143B180, void, List_1_T_Enumerator_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01443F90, Object *, List_1_T_Enumerator_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, HairDesignerGeneratorFurShellBase_BufferData, List_1_T_Enumerator_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__get_Current, (List_1_T_Enumerator_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438DB0, void, List_1_T_Enumerator_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson___ctor, (List_1_T_Enumerator_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * __this, List_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__Dispose, (List_1_T_Enumerator_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0EC8, List_1_T_Enumerator_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__Dispose__MethodInfo); +DO_APP_FUNC(0x01469B70, bool, List_1_T_Enumerator_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__MoveNext, (List_1_T_Enumerator_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0ED8, List_1_T_Enumerator_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__MoveNext__MethodInfo); +DO_APP_FUNC(0x01438F60, bool, List_1_T_Enumerator_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__MoveNextRare, (List_1_T_Enumerator_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439090, void, List_1_T_Enumerator_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438FD0, Object *, List_1_T_Enumerator_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438FB0, InputActionMap_BindingOverrideJson, List_1_T_Enumerator_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0F50, List_1_T_Enumerator_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__get_Current__MethodInfo); +DO_APP_FUNC(0x01469C90, void, List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___ctor, (List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, List_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__Dispose, (List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01469D20, bool, List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__MoveNext, (List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01469EA0, bool, List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__MoveNextRare, (List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146A0B0, void, List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01469F80, Object *, List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01469EF0, InputControlLayout_ControlItem, List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143CB60, void, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___ctor, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, InputControlLayout_ControlItem__Array * array, int32_t index, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__Dispose, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143CBD0, bool, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__MoveNext, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143CBF0, void, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__Reset, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146A180, Object *, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__System_Collections_IEnumerator_get_Current, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146A0F0, InputControlLayout_ControlItem, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__get_Current, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D588, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__get_Current__MethodInfo); +DO_APP_FUNC(0x0143CB60, void, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement___ctor, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement_ * __this, InputControlScheme_DeviceRequirement__Array * array, int32_t index, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement__Dispose, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0E00, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement__Dispose__MethodInfo); +DO_APP_FUNC(0x0143CBD0, bool, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement__MoveNext, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0DB0, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement__MoveNext__MethodInfo); +DO_APP_FUNC(0x0143CBF0, void, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement__Reset, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146A3A0, Object *, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement__System_Collections_IEnumerator_get_Current, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146A300, InputControlScheme_DeviceRequirement, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement__get_Current, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D580, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement__get_Current__MethodInfo); +DO_APP_FUNC(0x0143CB60, void, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo___ctor, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo_ * __this, InputEventTrace_DeviceInfo__Array * array, int32_t index, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo__Dispose, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143CBD0, bool, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo__MoveNext, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143CBF0, void, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo__Reset, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146A4D0, Object *, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo__System_Collections_IEnumerator_get_Current, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146A420, InputEventTrace_DeviceInfo, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo__get_Current, (ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D578, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo__get_Current__MethodInfo); +DO_APP_FUNC(0x003AE050, void, InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__Dispose, (InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146A560, bool, InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__MoveNext, (InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146A580, void, InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__Reset, (InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146A600, Object *, InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__System_Collections_IEnumerator_get_Current, (InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146A590, InputManager_StateChangeMonitorTimeout, InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__get_Current, (InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__Dispose, (InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143EC80, bool, InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__MoveNext, (InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x006C4180, void, InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__Reset, (InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146A730, Object *, InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__System_Collections_IEnumerator_get_Current, (InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146A6D0, InputUser_OngoingAccountSelection, InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__get_Current, (InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper___ctor, (List_1_T_Enumerator_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * __this, List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__Dispose, (List_1_T_Enumerator_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434850, bool, List_1_T_Enumerator_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__MoveNext, (List_1_T_Enumerator_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, InternalTreeView_TreeViewItemWrapper, List_1_T_Enumerator_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV___ctor, (List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV_ * __this, List_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__Dispose, (List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434850, bool, List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__MoveNext, (List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__MoveNextRare, (List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV, List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__get_Current, (List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143B970, void, List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb___ctor, (List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ * __this, List_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__Dispose, (List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146A7E0, bool, List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__MoveNext, (List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143BAE0, bool, List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__MoveNextRare, (List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143BC30, void, List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143BB60, Object *, List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143BB30, JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb, List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__get_Current, (List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux___ctor, (List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux_ * __this, List_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__Dispose, (List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434850, bool, List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__MoveNext, (List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__MoveNextRare, (List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux, List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__get_Current, (List_1_T_Enumerator_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143B970, void, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___ctor, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, List_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__Dispose, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146A910, bool, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__MoveNext, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143BAE0, bool, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__MoveNextRare, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143BC30, void, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143BB60, Object *, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143BB30, JsonParser_JsonValue, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143A450, void, ArraySegment_1_T_Enumerator_Dissonance_Logs_LogMessage___ctor, (ArraySegment_1_T_Enumerator_Dissonance_Logs_LogMessage_ * __this, ArraySegment_1_Dissonance_Logs_LogMessage_ arraySegment, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, ArraySegment_1_T_Enumerator_Dissonance_Logs_LogMessage__Dispose, (ArraySegment_1_T_Enumerator_Dissonance_Logs_LogMessage_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143A590, bool, ArraySegment_1_T_Enumerator_Dissonance_Logs_LogMessage__MoveNext, (ArraySegment_1_T_Enumerator_Dissonance_Logs_LogMessage_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143A6C0, void, ArraySegment_1_T_Enumerator_Dissonance_Logs_LogMessage__System_Collections_IEnumerator_Reset, (ArraySegment_1_T_Enumerator_Dissonance_Logs_LogMessage_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146AAA0, Object *, ArraySegment_1_T_Enumerator_Dissonance_Logs_LogMessage__System_Collections_IEnumerator_get_Current, (ArraySegment_1_T_Enumerator_Dissonance_Logs_LogMessage_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146AA40, Logs_LogMessage_1, ArraySegment_1_T_Enumerator_Dissonance_Logs_LogMessage__get_Current, (ArraySegment_1_T_Enumerator_Dissonance_Logs_LogMessage_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage___ctor, (List_1_T_Enumerator_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * __this, List_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__Dispose, (List_1_T_Enumerator_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434850, bool, List_1_T_Enumerator_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__MoveNext, (List_1_T_Enumerator_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__MoveNextRare, (List_1_T_Enumerator_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, Logs_LogMessage, List_1_T_Enumerator_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__get_Current, (List_1_T_Enumerator_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014466C0, void, List_1_T_Enumerator_MagicLightProbes_MagicLightProbes_VolumeParameters___ctor, (List_1_T_Enumerator_MagicLightProbes_MagicLightProbes_VolumeParameters_ * __this, List_1_MagicLightProbes_MagicLightProbes_VolumeParameters_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_MagicLightProbes_MagicLightProbes_VolumeParameters__Dispose, (List_1_T_Enumerator_MagicLightProbes_MagicLightProbes_VolumeParameters_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01446750, bool, List_1_T_Enumerator_MagicLightProbes_MagicLightProbes_VolumeParameters__MoveNext, (List_1_T_Enumerator_MagicLightProbes_MagicLightProbes_VolumeParameters_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01446810, bool, List_1_T_Enumerator_MagicLightProbes_MagicLightProbes_VolumeParameters__MoveNextRare, (List_1_T_Enumerator_MagicLightProbes_MagicLightProbes_VolumeParameters_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01446920, void, List_1_T_Enumerator_MagicLightProbes_MagicLightProbes_VolumeParameters__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_MagicLightProbes_MagicLightProbes_VolumeParameters_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01446860, Object *, List_1_T_Enumerator_MagicLightProbes_MagicLightProbes_VolumeParameters__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_MagicLightProbes_MagicLightProbes_VolumeParameters_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01446510, MagicLightProbes_VolumeParameters, List_1_T_Enumerator_MagicLightProbes_MagicLightProbes_VolumeParameters__get_Current, (List_1_T_Enumerator_MagicLightProbes_MagicLightProbes_VolumeParameters_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_NolanBehaviour_OverlappedCollider___ctor, (List_1_T_Enumerator_NolanBehaviour_OverlappedCollider_ * __this, List_1_NolanBehaviour_OverlappedCollider_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_NolanBehaviour_OverlappedCollider__Dispose, (List_1_T_Enumerator_NolanBehaviour_OverlappedCollider_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D14F30, List_1_T_Enumerator_NolanBehaviour_OverlappedCollider__Dispose__MethodInfo); +DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_NolanBehaviour_OverlappedCollider__MoveNext, (List_1_T_Enumerator_NolanBehaviour_OverlappedCollider_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D14F00, List_1_T_Enumerator_NolanBehaviour_OverlappedCollider__MoveNext__MethodInfo); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_NolanBehaviour_OverlappedCollider__MoveNextRare, (List_1_T_Enumerator_NolanBehaviour_OverlappedCollider_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_NolanBehaviour_OverlappedCollider__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_NolanBehaviour_OverlappedCollider_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_NolanBehaviour_OverlappedCollider__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_NolanBehaviour_OverlappedCollider_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, NolanBehaviour_OverlappedCollider, List_1_T_Enumerator_NolanBehaviour_OverlappedCollider__get_Current, (List_1_T_Enumerator_NolanBehaviour_OverlappedCollider_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D14ED0, List_1_T_Enumerator_NolanBehaviour_OverlappedCollider__get_Current__MethodInfo); +DO_APP_FUNC(0x003AE050, void, InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__Dispose, (InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146A560, bool, InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__MoveNext, (InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146A580, void, InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__Reset, (InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146ABD0, Object *, InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__System_Collections_IEnumerator_get_Current, (InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146AB60, OnScreenControl_OnScreenDeviceInfo, InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__get_Current, (InlinedArray_1_TValue_Enumerator_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding___ctor, (List_1_T_Enumerator_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ * __this, List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__Dispose, (List_1_T_Enumerator_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434850, bool, List_1_T_Enumerator_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__MoveNext, (List_1_T_Enumerator_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__MoveNextRare, (List_1_T_Enumerator_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, OpenXRInput_SerializedBinding, List_1_T_Enumerator_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__get_Current, (List_1_T_Enumerator_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_PackedPlayModeBuildLogs_RuntimeBuildLog___ctor, (List_1_T_Enumerator_PackedPlayModeBuildLogs_RuntimeBuildLog_ * __this, List_1_PackedPlayModeBuildLogs_RuntimeBuildLog_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_PackedPlayModeBuildLogs_RuntimeBuildLog__Dispose, (List_1_T_Enumerator_PackedPlayModeBuildLogs_RuntimeBuildLog_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEBB8, List_1_T_Enumerator_PackedPlayModeBuildLogs_RuntimeBuildLog__Dispose__MethodInfo); +DO_APP_FUNC(0x01434850, bool, List_1_T_Enumerator_PackedPlayModeBuildLogs_RuntimeBuildLog__MoveNext, (List_1_T_Enumerator_PackedPlayModeBuildLogs_RuntimeBuildLog_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEBC0, List_1_T_Enumerator_PackedPlayModeBuildLogs_RuntimeBuildLog__MoveNext__MethodInfo); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_PackedPlayModeBuildLogs_RuntimeBuildLog__MoveNextRare, (List_1_T_Enumerator_PackedPlayModeBuildLogs_RuntimeBuildLog_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_PackedPlayModeBuildLogs_RuntimeBuildLog__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_PackedPlayModeBuildLogs_RuntimeBuildLog_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_PackedPlayModeBuildLogs_RuntimeBuildLog__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_PackedPlayModeBuildLogs_RuntimeBuildLog_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, PackedPlayModeBuildLogs_RuntimeBuildLog, List_1_T_Enumerator_PackedPlayModeBuildLogs_RuntimeBuildLog__get_Current, (List_1_T_Enumerator_PackedPlayModeBuildLogs_RuntimeBuildLog_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEBD8, List_1_T_Enumerator_PackedPlayModeBuildLogs_RuntimeBuildLog__get_Current__MethodInfo); +DO_APP_FUNC(0x0146ACA0, void, List_1_T_Enumerator_UnityEngine_ParticleSystem_Particle___ctor, (List_1_T_Enumerator_UnityEngine_ParticleSystem_Particle_ * __this, List_1_UnityEngine_ParticleSystem_Particle_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_ParticleSystem_Particle__Dispose, (List_1_T_Enumerator_UnityEngine_ParticleSystem_Particle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146AD50, bool, List_1_T_Enumerator_UnityEngine_ParticleSystem_Particle__MoveNext, (List_1_T_Enumerator_UnityEngine_ParticleSystem_Particle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146AE50, bool, List_1_T_Enumerator_UnityEngine_ParticleSystem_Particle__MoveNextRare, (List_1_T_Enumerator_UnityEngine_ParticleSystem_Particle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146B020, void, List_1_T_Enumerator_UnityEngine_ParticleSystem_Particle__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_ParticleSystem_Particle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146AF10, Object *, List_1_T_Enumerator_UnityEngine_ParticleSystem_Particle__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_ParticleSystem_Particle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146AEB0, ParticleSystem_Particle, List_1_T_Enumerator_UnityEngine_ParticleSystem_Particle__get_Current, (List_1_T_Enumerator_UnityEngine_ParticleSystem_Particle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146B080, void, NativeArray_1_T_Enumerator_UnityEngine_ParticleSystem_Particle___ctor, (NativeArray_1_T_Enumerator_UnityEngine_ParticleSystem_Particle_ * __this, NativeArray_1_UnityEngine_ParticleSystem_Particle_ * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, NativeArray_1_T_Enumerator_UnityEngine_ParticleSystem_Particle__Dispose, (NativeArray_1_T_Enumerator_UnityEngine_ParticleSystem_Particle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146B0C0, bool, NativeArray_1_T_Enumerator_UnityEngine_ParticleSystem_Particle__MoveNext, (NativeArray_1_T_Enumerator_UnityEngine_ParticleSystem_Particle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439B10, void, NativeArray_1_T_Enumerator_UnityEngine_ParticleSystem_Particle__Reset, (NativeArray_1_T_Enumerator_UnityEngine_ParticleSystem_Particle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146B270, Object *, NativeArray_1_T_Enumerator_UnityEngine_ParticleSystem_Particle__System_Collections_IEnumerator_get_Current, (NativeArray_1_T_Enumerator_UnityEngine_ParticleSystem_Particle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146B210, ParticleSystem_Particle, NativeArray_1_T_Enumerator_UnityEngine_ParticleSystem_Particle__get_Current, (NativeArray_1_T_Enumerator_UnityEngine_ParticleSystem_Particle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick___ctor, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick_ * __this, List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick__Dispose, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01437E50, bool, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick__MoveNext, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, ProbeBrickIndex_Brick, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick__get_Current, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146B350, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick___ctor, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick_ * __this, List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick__Dispose, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C92D28, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick__Dispose__MethodInfo); -DO_APP_FUNC(0x0146B3D0, bool, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick__MoveNext, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146B3D0, bool, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick__MoveNext, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C92D30, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick__MoveNext__MethodInfo); -DO_APP_FUNC(0x0146B480, bool, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146B590, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146B4E0, Object *, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146B4C0, ProbeBrickIndex_ReservedBrick, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick__get_Current, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146B480, bool, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146B590, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146B4E0, Object *, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146B4C0, ProbeBrickIndex_ReservedBrick, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick__get_Current, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C92D38, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick__get_Current__MethodInfo); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta___ctor, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta___Boxed * __this, List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta__Dispose, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta___ctor, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta_ * __this, List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta__Dispose, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C92E18, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta__Dispose__MethodInfo); -DO_APP_FUNC(0x01434850, bool, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta__MoveNext, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434850, bool, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta__MoveNext, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C92E20, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta__MoveNext__MethodInfo); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, ProbeBrickIndex_VoxelMeta, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta__get_Current, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, ProbeBrickIndex_VoxelMeta, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta__get_Current, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C92E28, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta__get_Current__MethodInfo); -DO_APP_FUNC(0x01437EF0, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc___ctor, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc___Boxed * __this, List_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__Dispose, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01437EF0, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc___ctor, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * __this, List_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__Dispose, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C92D80, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__Dispose__MethodInfo); -DO_APP_FUNC(0x01437F70, bool, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__MoveNext, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01437F70, bool, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__MoveNext, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C92D40, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__MoveNext__MethodInfo); -DO_APP_FUNC(0x01438020, bool, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438110, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438060, Object *, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C39A10, ProbeBrickPool_BrickChunkAlloc, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__get_Current, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438020, bool, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438110, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438060, Object *, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C39A10, ProbeBrickPool_BrickChunkAlloc, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__get_Current, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C92D48, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__get_Current__MethodInfo); -DO_APP_FUNC(0x0146B5D0, void, Stack_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc___ctor, (Stack_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc___Boxed * __this, Stack_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * stack, MethodInfo * method)); -DO_APP_FUNC(0x01436E20, void, Stack_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__Dispose, (Stack_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146B650, bool, Stack_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__MoveNext, (Stack_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146B930, void, Stack_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__System_Collections_IEnumerator_Reset, (Stack_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146B870, Object *, Stack_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__System_Collections_IEnumerator_get_Current, (Stack_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146B800, void, Stack_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__ThrowEnumerationNotStartedOrEnded, (Stack_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146B7B0, ProbeBrickPool_BrickChunkAlloc, Stack_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__get_Current, (Stack_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem___ctor, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem___Boxed * __this, List_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem__Dispose, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146B5D0, void, Stack_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc___ctor, (Stack_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * __this, Stack_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * stack, MethodInfo * method)); +DO_APP_FUNC(0x01436E20, void, Stack_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__Dispose, (Stack_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146B650, bool, Stack_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__MoveNext, (Stack_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D570, Stack_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__MoveNext__MethodInfo); +DO_APP_FUNC(0x0146B930, void, Stack_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__System_Collections_IEnumerator_Reset, (Stack_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D5F0, Stack_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x0146B870, Object *, Stack_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__System_Collections_IEnumerator_get_Current, (Stack_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146B800, void, Stack_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__ThrowEnumerationNotStartedOrEnded, (Stack_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D568, Stack_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__ThrowEnumerationNotStartedOrEnded__MethodInfo); +DO_APP_FUNC(0x0146B7B0, ProbeBrickPool_BrickChunkAlloc, Stack_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__get_Current, (Stack_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem___ctor, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem_ * __this, List_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem__Dispose, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C923C0, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem__Dispose__MethodInfo); -DO_APP_FUNC(0x01434850, bool, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem__MoveNext, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434850, bool, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem__MoveNext, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C92460, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem__MoveNext__MethodInfo); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, ProbeVolumePerSceneData_SerializableAssetItem, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem__get_Current, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, ProbeVolumePerSceneData_SerializableAssetItem, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem__get_Current, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C92468, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem__get_Current__MethodInfo); -DO_APP_FUNC(0x014341F0, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem___ctor, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem___Boxed * __this, List_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem__Dispose, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341F0, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem___ctor, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem_ * __this, List_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem__Dispose, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C92140, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem__Dispose__MethodInfo); -DO_APP_FUNC(0x01434270, bool, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem__MoveNext, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434270, bool, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem__MoveNext, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C921C0, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem__MoveNext__MethodInfo); -DO_APP_FUNC(0x01434370, bool, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434460, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014343B0, Object *, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01204560, ProbeVolumeSceneData_SerializableBoundItem, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem__get_Current, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434370, bool, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434460, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014343B0, Object *, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01204560, ProbeVolumeSceneData_SerializableBoundItem, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem__get_Current, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C91FD8, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem__get_Current__MethodInfo); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem___ctor, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem___Boxed * __this, List_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem__Dispose, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem___ctor, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem_ * __this, List_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem__Dispose, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C92148, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem__Dispose__MethodInfo); -DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem__MoveNext, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem__MoveNext, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C92200, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem__MoveNext__MethodInfo); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, ProbeVolumeSceneData_SerializableHasPVItem, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem__get_Current, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, ProbeVolumeSceneData_SerializableHasPVItem, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem__get_Current, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C92210, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem__get_Current__MethodInfo); -DO_APP_FUNC(0x01438DB0, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings___ctor, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings___Boxed * __this, List_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings__Dispose, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438DB0, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings___ctor, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings_ * __this, List_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings__Dispose, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C92240, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings__Dispose__MethodInfo); -DO_APP_FUNC(0x01469B70, bool, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings__MoveNext, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01469B70, bool, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings__MoveNext, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C921E0, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings__MoveNext__MethodInfo); -DO_APP_FUNC(0x01438F60, bool, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439090, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438FD0, Object *, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438FB0, ProbeVolumeSceneData_SerializablePVBakeSettings, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings__get_Current, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438F60, bool, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439090, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438FD0, Object *, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438FB0, ProbeVolumeSceneData_SerializablePVBakeSettings, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings__get_Current, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C92220, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings__get_Current__MethodInfo); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile___ctor, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile___Boxed * __this, List_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile__Dispose, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile___ctor, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile_ * __this, List_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile__Dispose, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C92230, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile__Dispose__MethodInfo); -DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile__MoveNext, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile__MoveNext, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C921D0, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile__MoveNext__MethodInfo); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, ProbeVolumeSceneData_SerializablePVProfile, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile__get_Current, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, ProbeVolumeSceneData_SerializablePVProfile, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile__get_Current, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C92218, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile__get_Current__MethodInfo); -DO_APP_FUNC(0x0143AF80, void, List_1_T_Enumerator_System_Text_RegularExpressions_RegexCharClass_SingleRange___ctor, (List_1_T_Enumerator_System_Text_RegularExpressions_RegexCharClass_SingleRange___Boxed * __this, List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_Text_RegularExpressions_RegexCharClass_SingleRange__Dispose, (List_1_T_Enumerator_System_Text_RegularExpressions_RegexCharClass_SingleRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B000, bool, List_1_T_Enumerator_System_Text_RegularExpressions_RegexCharClass_SingleRange__MoveNext, (List_1_T_Enumerator_System_Text_RegularExpressions_RegexCharClass_SingleRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B0A0, bool, List_1_T_Enumerator_System_Text_RegularExpressions_RegexCharClass_SingleRange__MoveNextRare, (List_1_T_Enumerator_System_Text_RegularExpressions_RegexCharClass_SingleRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B180, void, List_1_T_Enumerator_System_Text_RegularExpressions_RegexCharClass_SingleRange__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_Text_RegularExpressions_RegexCharClass_SingleRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143B0E0, Object *, List_1_T_Enumerator_System_Text_RegularExpressions_RegexCharClass_SingleRange__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_Text_RegularExpressions_RegexCharClass_SingleRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, RegexCharClass_SingleRange, List_1_T_Enumerator_System_Text_RegularExpressions_RegexCharClass_SingleRange__get_Current, (List_1_T_Enumerator_System_Text_RegularExpressions_RegexCharClass_SingleRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01467870, void, List_1_T_Enumerator_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData___ctor, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData___Boxed * __this, List_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__Dispose, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146B9C0, bool, List_1_T_Enumerator_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__MoveNext, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01467A00, bool, List_1_T_Enumerator_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01467B70, void, List_1_T_Enumerator_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01467A90, Object *, List_1_T_Enumerator_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01467A50, RenderChain_RenderNodeData, List_1_T_Enumerator_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341F0, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData___ctor, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData___Boxed * __this, List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData__Dispose, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434270, bool, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData__MoveNext, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434370, bool, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434460, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014343B0, Object *, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01204560, RenderGraphDebugData_PassDebugData, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData__get_Current, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438DB0, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData___ctor, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData___Boxed * __this, List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData__Dispose, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01469B70, bool, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData__MoveNext, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438F60, bool, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439090, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438FD0, Object *, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438FB0, RenderGraphDebugData_ResourceDebugData, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData__get_Current, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest___ctor, (List_1_T_Enumerator_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest___Boxed * __this, List_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest__Dispose, (List_1_T_Enumerator_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143AF80, void, List_1_T_Enumerator_System_Text_RegularExpressions_RegexCharClass_SingleRange___ctor, (List_1_T_Enumerator_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * __this, List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_Text_RegularExpressions_RegexCharClass_SingleRange__Dispose, (List_1_T_Enumerator_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143B000, bool, List_1_T_Enumerator_System_Text_RegularExpressions_RegexCharClass_SingleRange__MoveNext, (List_1_T_Enumerator_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143B0A0, bool, List_1_T_Enumerator_System_Text_RegularExpressions_RegexCharClass_SingleRange__MoveNextRare, (List_1_T_Enumerator_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143B180, void, List_1_T_Enumerator_System_Text_RegularExpressions_RegexCharClass_SingleRange__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143B0E0, Object *, List_1_T_Enumerator_System_Text_RegularExpressions_RegexCharClass_SingleRange__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, RegexCharClass_SingleRange, List_1_T_Enumerator_System_Text_RegularExpressions_RegexCharClass_SingleRange__get_Current, (List_1_T_Enumerator_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01467870, void, List_1_T_Enumerator_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData___ctor, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * __this, List_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__Dispose, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146B9C0, bool, List_1_T_Enumerator_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__MoveNext, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01467A00, bool, List_1_T_Enumerator_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01467B70, void, List_1_T_Enumerator_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01467A90, Object *, List_1_T_Enumerator_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01467A50, RenderChain_RenderNodeData, List_1_T_Enumerator_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341F0, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData___ctor, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData_ * __this, List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData__Dispose, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434270, bool, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData__MoveNext, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434370, bool, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434460, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014343B0, Object *, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01204560, RenderGraphDebugData_PassDebugData, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData__get_Current, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438DB0, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData___ctor, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData_ * __this, List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData__Dispose, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01469B70, bool, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData__MoveNext, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438F60, bool, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439090, void, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438FD0, Object *, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438FB0, RenderGraphDebugData_ResourceDebugData, List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData__get_Current, (List_1_T_Enumerator_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest___ctor, (List_1_T_Enumerator_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest_ * __this, List_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest__Dispose, (List_1_T_Enumerator_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9E768, List_1_T_Enumerator_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest__Dispose__MethodInfo); -DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest__MoveNext, (List_1_T_Enumerator_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest__MoveNext, (List_1_T_Enumerator_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9E718, List_1_T_Enumerator_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest__MoveNext__MethodInfo); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest__MoveNextRare, (List_1_T_Enumerator_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, ResourceManager_DeferredCallbackRegisterRequest, List_1_T_Enumerator_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest__get_Current, (List_1_T_Enumerator_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest__MoveNextRare, (List_1_T_Enumerator_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, ResourceManager_DeferredCallbackRegisterRequest, List_1_T_Enumerator_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest__get_Current, (List_1_T_Enumerator_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9E728, List_1_T_Enumerator_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest__get_Current__MethodInfo); -DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_Pathfinding_Util_RetainedGizmos_MeshWithHash___ctor, (List_1_T_Enumerator_Pathfinding_Util_RetainedGizmos_MeshWithHash___Boxed * __this, List_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Pathfinding_Util_RetainedGizmos_MeshWithHash__Dispose, (List_1_T_Enumerator_Pathfinding_Util_RetainedGizmos_MeshWithHash___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439CB0, bool, List_1_T_Enumerator_Pathfinding_Util_RetainedGizmos_MeshWithHash__MoveNext, (List_1_T_Enumerator_Pathfinding_Util_RetainedGizmos_MeshWithHash___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_Pathfinding_Util_RetainedGizmos_MeshWithHash__MoveNextRare, (List_1_T_Enumerator_Pathfinding_Util_RetainedGizmos_MeshWithHash___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_Pathfinding_Util_RetainedGizmos_MeshWithHash__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Pathfinding_Util_RetainedGizmos_MeshWithHash___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_Pathfinding_Util_RetainedGizmos_MeshWithHash__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Pathfinding_Util_RetainedGizmos_MeshWithHash___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, RetainedGizmos_MeshWithHash, List_1_T_Enumerator_Pathfinding_Util_RetainedGizmos_MeshWithHash__get_Current, (List_1_T_Enumerator_Pathfinding_Util_RetainedGizmos_MeshWithHash___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014431A0, void, Stack_1_T_Enumerator_System_Xml_Schema_SequenceNode_SequenceConstructPosContext___ctor, (Stack_1_T_Enumerator_System_Xml_Schema_SequenceNode_SequenceConstructPosContext___Boxed * __this, Stack_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext_ * stack, MethodInfo * method)); -DO_APP_FUNC(0x01436E20, void, Stack_1_T_Enumerator_System_Xml_Schema_SequenceNode_SequenceConstructPosContext__Dispose, (Stack_1_T_Enumerator_System_Xml_Schema_SequenceNode_SequenceConstructPosContext___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146BB00, bool, Stack_1_T_Enumerator_System_Xml_Schema_SequenceNode_SequenceConstructPosContext__MoveNext, (Stack_1_T_Enumerator_System_Xml_Schema_SequenceNode_SequenceConstructPosContext___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146BE00, void, Stack_1_T_Enumerator_System_Xml_Schema_SequenceNode_SequenceConstructPosContext__System_Collections_IEnumerator_Reset, (Stack_1_T_Enumerator_System_Xml_Schema_SequenceNode_SequenceConstructPosContext___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146BD40, Object *, Stack_1_T_Enumerator_System_Xml_Schema_SequenceNode_SequenceConstructPosContext__System_Collections_IEnumerator_get_Current, (Stack_1_T_Enumerator_System_Xml_Schema_SequenceNode_SequenceConstructPosContext___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146BCD0, void, Stack_1_T_Enumerator_System_Xml_Schema_SequenceNode_SequenceConstructPosContext__ThrowEnumerationNotStartedOrEnded, (Stack_1_T_Enumerator_System_Xml_Schema_SequenceNode_SequenceConstructPosContext___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146BC70, SequenceNode_SequenceConstructPosContext, Stack_1_T_Enumerator_System_Xml_Schema_SequenceNode_SequenceConstructPosContext__get_Current, (Stack_1_T_Enumerator_System_Xml_Schema_SequenceNode_SequenceConstructPosContext___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01436DA0, void, Stack_1_T_Enumerator_UnityEngine_UIElements_StyleVariableResolver_ResolveContext___ctor, (Stack_1_T_Enumerator_UnityEngine_UIElements_StyleVariableResolver_ResolveContext___Boxed * __this, Stack_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext_ * stack, MethodInfo * method)); -DO_APP_FUNC(0x01436E20, void, Stack_1_T_Enumerator_UnityEngine_UIElements_StyleVariableResolver_ResolveContext__Dispose, (Stack_1_T_Enumerator_UnityEngine_UIElements_StyleVariableResolver_ResolveContext___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146BEA0, bool, Stack_1_T_Enumerator_UnityEngine_UIElements_StyleVariableResolver_ResolveContext__MoveNext, (Stack_1_T_Enumerator_UnityEngine_UIElements_StyleVariableResolver_ResolveContext___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146C150, void, Stack_1_T_Enumerator_UnityEngine_UIElements_StyleVariableResolver_ResolveContext__System_Collections_IEnumerator_Reset, (Stack_1_T_Enumerator_UnityEngine_UIElements_StyleVariableResolver_ResolveContext___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146C0A0, Object *, Stack_1_T_Enumerator_UnityEngine_UIElements_StyleVariableResolver_ResolveContext__System_Collections_IEnumerator_get_Current, (Stack_1_T_Enumerator_UnityEngine_UIElements_StyleVariableResolver_ResolveContext___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146C030, void, Stack_1_T_Enumerator_UnityEngine_UIElements_StyleVariableResolver_ResolveContext__ThrowEnumerationNotStartedOrEnded, (Stack_1_T_Enumerator_UnityEngine_UIElements_StyleVariableResolver_ResolveContext___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146BFE0, StyleVariableResolver_ResolveContext, Stack_1_T_Enumerator_UnityEngine_UIElements_StyleVariableResolver_ResolveContext__get_Current, (Stack_1_T_Enumerator_UnityEngine_UIElements_StyleVariableResolver_ResolveContext___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_UnityEngine_UIElements_TemplateAsset_AttributeOverride___ctor, (List_1_T_Enumerator_UnityEngine_UIElements_TemplateAsset_AttributeOverride___Boxed * __this, List_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIElements_TemplateAsset_AttributeOverride__Dispose, (List_1_T_Enumerator_UnityEngine_UIElements_TemplateAsset_AttributeOverride___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01435020, bool, List_1_T_Enumerator_UnityEngine_UIElements_TemplateAsset_AttributeOverride__MoveNext, (List_1_T_Enumerator_UnityEngine_UIElements_TemplateAsset_AttributeOverride___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_UnityEngine_UIElements_TemplateAsset_AttributeOverride__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIElements_TemplateAsset_AttributeOverride___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_UnityEngine_UIElements_TemplateAsset_AttributeOverride__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIElements_TemplateAsset_AttributeOverride___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_UnityEngine_UIElements_TemplateAsset_AttributeOverride__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_TemplateAsset_AttributeOverride___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, TemplateAsset_AttributeOverride, List_1_T_Enumerator_UnityEngine_UIElements_TemplateAsset_AttributeOverride__get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_TemplateAsset_AttributeOverride___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap___ctor, (List_1_T_Enumerator_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap___Boxed * __this, List_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__Dispose, (List_1_T_Enumerator_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__MoveNext, (List_1_T_Enumerator_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__MoveNextRare, (List_1_T_Enumerator_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, TextSettings_FontReferenceMap, List_1_T_Enumerator_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__get_Current, (List_1_T_Enumerator_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438A50, void, List_1_T_Enumerator_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo___ctor, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo___Boxed * __this, List_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__Dispose, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143CEE0, bool, List_1_T_Enumerator_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__MoveNext, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438C10, bool, List_1_T_Enumerator_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438D60, void, List_1_T_Enumerator_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438C90, Object *, List_1_T_Enumerator_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438C60, TextureBlitter_BlitInfo, List_1_T_Enumerator_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143F0F0, void, List_1_T_Enumerator_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame___ctor, (List_1_T_Enumerator_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame___Boxed * __this, List_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame__Dispose, (List_1_T_Enumerator_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146C1E0, bool, List_1_T_Enumerator_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame__MoveNext, (List_1_T_Enumerator_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143F250, bool, List_1_T_Enumerator_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame__MoveNextRare, (List_1_T_Enumerator_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143F390, void, List_1_T_Enumerator_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143F2D0, Object *, List_1_T_Enumerator_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143F2A0, TexturePacker_JsonArray_Frame, List_1_T_Enumerator_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame__get_Current, (List_1_T_Enumerator_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_UIElements_TextureRegistry_TextureInfo___ctor, (List_1_T_Enumerator_UnityEngine_UIElements_TextureRegistry_TextureInfo___Boxed * __this, List_1_UnityEngine_UIElements_TextureRegistry_TextureInfo_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIElements_TextureRegistry_TextureInfo__Dispose, (List_1_T_Enumerator_UnityEngine_UIElements_TextureRegistry_TextureInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_UnityEngine_UIElements_TextureRegistry_TextureInfo__MoveNext, (List_1_T_Enumerator_UnityEngine_UIElements_TextureRegistry_TextureInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_UIElements_TextureRegistry_TextureInfo__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIElements_TextureRegistry_TextureInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_UIElements_TextureRegistry_TextureInfo__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIElements_TextureRegistry_TextureInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_UIElements_TextureRegistry_TextureInfo__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_TextureRegistry_TextureInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, TextureRegistry_TextureInfo, List_1_T_Enumerator_UnityEngine_UIElements_TextureRegistry_TextureInfo__get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_TextureRegistry_TextureInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry___ctor, (List_1_T_Enumerator_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry___Boxed * __this, List_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry__Dispose, (List_1_T_Enumerator_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439CB0, bool, List_1_T_Enumerator_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry__MoveNext, (List_1_T_Enumerator_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, TimeNotificationBehaviour_NotificationEntry, List_1_T_Enumerator_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry__get_Current, (List_1_T_Enumerator_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341F0, void, List_1_T_Enumerator_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData___ctor, (List_1_T_Enumerator_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData___Boxed * __this, List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__Dispose, (List_1_T_Enumerator_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434270, bool, List_1_T_Enumerator_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__MoveNext, (List_1_T_Enumerator_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434370, bool, List_1_T_Enumerator_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__MoveNextRare, (List_1_T_Enumerator_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434460, void, List_1_T_Enumerator_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014343B0, Object *, List_1_T_Enumerator_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01204560, TrackedDeviceRaycaster_RaycastHitData, List_1_T_Enumerator_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData___ctor, (List_1_T_Enumerator_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData___Boxed * __this, List_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData__Dispose, (List_1_T_Enumerator_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData__MoveNext, (List_1_T_Enumerator_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData__MoveNextRare, (List_1_T_Enumerator_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, TrackedPoseDriverDataDescription_PoseData, List_1_T_Enumerator_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData__get_Current, (List_1_T_Enumerator_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_UIElements_TreeView_TreeViewItemWrapper___ctor, (List_1_T_Enumerator_UnityEngine_UIElements_TreeView_TreeViewItemWrapper___Boxed * __this, List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__Dispose, (List_1_T_Enumerator_UnityEngine_UIElements_TreeView_TreeViewItemWrapper___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434850, bool, List_1_T_Enumerator_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__MoveNext, (List_1_T_Enumerator_UnityEngine_UIElements_TreeView_TreeViewItemWrapper___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIElements_TreeView_TreeViewItemWrapper___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIElements_TreeView_TreeViewItemWrapper___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_TreeView_TreeViewItemWrapper___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, TreeView_TreeViewItemWrapper, List_1_T_Enumerator_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_TreeView_TreeViewItemWrapper___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434DE0, void, List_1_T_Enumerator_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState___ctor, (List_1_T_Enumerator_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState___Boxed * __this, List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__Dispose, (List_1_T_Enumerator_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434E60, bool, List_1_T_Enumerator_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__MoveNext, (List_1_T_Enumerator_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434F00, bool, List_1_T_Enumerator_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434FE0, void, List_1_T_Enumerator_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434F40, Object *, List_1_T_Enumerator_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, TreeViewReorderableDragAndDropController_TreeItemState, List_1_T_Enumerator_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01467870, void, List_1_T_Enumerator_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry___ctor, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry___Boxed * __this, List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__Dispose, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146C300, bool, List_1_T_Enumerator_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__MoveNext, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01467A00, bool, List_1_T_Enumerator_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01467B70, void, List_1_T_Enumerator_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01467A90, Object *, List_1_T_Enumerator_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01467A50, UIRStylePainter_Entry, List_1_T_Enumerator_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438DB0, void, List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree___ctor, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree___Boxed * __this, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__Dispose, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01446FA0, bool, List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__MoveNext, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438F60, bool, List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01439090, void, List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438FD0, Object *, List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438FB0, UIRenderDevice_AllocToFree, List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437170, void, List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate___ctor, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate___Boxed * __this, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__Dispose, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146C440, bool, List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__MoveNext, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437330, bool, List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437480, void, List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014373B0, Object *, List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437380, UIRenderDevice_AllocToUpdate, List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438450, void, LinkedList_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree___ctor, (LinkedList_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree___Boxed * __this, LinkedList_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree_ * list, MethodInfo * method)); -DO_APP_FUNC(0x0146C570, void, LinkedList_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree___ctor_1, (LinkedList_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree___Boxed * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, LinkedList_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree__Dispose, (LinkedList_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146C700, bool, LinkedList_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree__MoveNext, (LinkedList_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146C910, void, LinkedList_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree__System_Collections_IEnumerator_Reset, (LinkedList_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146C5C0, Object *, LinkedList_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree__System_Collections_IEnumerator_get_Current, (LinkedList_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146CA40, void, LinkedList_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree__System_Runtime_Serialization_IDeserializationCallback_OnDeserialization, (LinkedList_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree___Boxed * __this, Object * sender, MethodInfo * method)); -DO_APP_FUNC(0x0146C9F0, void, LinkedList_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree__System_Runtime_Serialization_ISerializable_GetObjectData, (LinkedList_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree___Boxed * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); -DO_APP_FUNC(0x0093E890, UIRenderDevice_DeviceToFree, LinkedList_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree__get_Current, (LinkedList_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_UnityEngine_UnitySynchronizationContext_WorkRequest___ctor, (List_1_T_Enumerator_UnityEngine_UnitySynchronizationContext_WorkRequest___Boxed * __this, List_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UnitySynchronizationContext_WorkRequest__Dispose, (List_1_T_Enumerator_UnityEngine_UnitySynchronizationContext_WorkRequest___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01435020, bool, List_1_T_Enumerator_UnityEngine_UnitySynchronizationContext_WorkRequest__MoveNext, (List_1_T_Enumerator_UnityEngine_UnitySynchronizationContext_WorkRequest___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_UnityEngine_UnitySynchronizationContext_WorkRequest__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UnitySynchronizationContext_WorkRequest___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_UnityEngine_UnitySynchronizationContext_WorkRequest__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UnitySynchronizationContext_WorkRequest___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_UnityEngine_UnitySynchronizationContext_WorkRequest__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UnitySynchronizationContext_WorkRequest___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, UnitySynchronizationContext_WorkRequest, List_1_T_Enumerator_UnityEngine_UnitySynchronizationContext_WorkRequest__get_Current, (List_1_T_Enumerator_UnityEngine_UnitySynchronizationContext_WorkRequest___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition___ctor, (List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition___Boxed * __this, List_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition__Dispose, (List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition__MoveNext, (List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, VisualTreeAsset_SlotDefinition, List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition__get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry___ctor, (List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry___Boxed * __this, List_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry__Dispose, (List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry__MoveNext, (List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, VisualTreeAsset_SlotUsageEntry, List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry__get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_UsingEntry___ctor, (List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_UsingEntry___Boxed * __this, List_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__Dispose, (List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_UsingEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01435020, bool, List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__MoveNext, (List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_UsingEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_UsingEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_UsingEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_UsingEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, VisualTreeAsset_UsingEntry, List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_UsingEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143D120, void, Queue_1_T_Enumerator_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK___ctor, (Queue_1_T_Enumerator_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK___Boxed * __this, Queue_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK_ * q, MethodInfo * method)); -DO_APP_FUNC(0x0143D1A0, void, Queue_1_T_Enumerator_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__Dispose, (Queue_1_T_Enumerator_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146CA90, bool, Queue_1_T_Enumerator_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__MoveNext, (Queue_1_T_Enumerator_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146CCE0, void, Queue_1_T_Enumerator_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__System_Collections_IEnumerator_Reset, (Queue_1_T_Enumerator_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146CC30, Object *, Queue_1_T_Enumerator_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__System_Collections_IEnumerator_get_Current, (Queue_1_T_Enumerator_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146CBC0, void, Queue_1_T_Enumerator_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__ThrowEnumerationNotStartedOrEnded, (Queue_1_T_Enumerator_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146CB80, XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK, Queue_1_T_Enumerator_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__get_Current, (Queue_1_T_Enumerator_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry___ctor, (List_1_T_Enumerator_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry___Boxed * __this, List_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry__Dispose, (List_1_T_Enumerator_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry__MoveNext, (List_1_T_Enumerator_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry__MoveNextRare, (List_1_T_Enumerator_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, XmlSchemaObjectTable_XmlSchemaObjectEntry, List_1_T_Enumerator_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry__get_Current, (List_1_T_Enumerator_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341F0, void, List_1_T_Enumerator_ftLightmaps_LightmapAdditionalData___ctor, (List_1_T_Enumerator_ftLightmaps_LightmapAdditionalData___Boxed * __this, List_1_ftLightmaps_LightmapAdditionalData_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_ftLightmaps_LightmapAdditionalData__Dispose, (List_1_T_Enumerator_ftLightmaps_LightmapAdditionalData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434270, bool, List_1_T_Enumerator_ftLightmaps_LightmapAdditionalData__MoveNext, (List_1_T_Enumerator_ftLightmaps_LightmapAdditionalData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434370, bool, List_1_T_Enumerator_ftLightmaps_LightmapAdditionalData__MoveNextRare, (List_1_T_Enumerator_ftLightmaps_LightmapAdditionalData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434460, void, List_1_T_Enumerator_ftLightmaps_LightmapAdditionalData__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_ftLightmaps_LightmapAdditionalData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014343B0, Object *, List_1_T_Enumerator_ftLightmaps_LightmapAdditionalData__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_ftLightmaps_LightmapAdditionalData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01204560, ftLightmaps_LightmapAdditionalData, List_1_T_Enumerator_ftLightmaps_LightmapAdditionalData__get_Current, (List_1_T_Enumerator_ftLightmaps_LightmapAdditionalData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434DE0, void, List_1_T_Enumerator_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy___ctor, (List_1_T_Enumerator_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy___Boxed * __this, List_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__Dispose, (List_1_T_Enumerator_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434E60, bool, List_1_T_Enumerator_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__MoveNext, (List_1_T_Enumerator_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434F00, bool, List_1_T_Enumerator_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__MoveNextRare, (List_1_T_Enumerator_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434FE0, void, List_1_T_Enumerator_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434F40, Object *, List_1_T_Enumerator_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy, List_1_T_Enumerator_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__get_Current, (List_1_T_Enumerator_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem___ctor, (List_1_T_Enumerator_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem___Boxed * __this, List_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem__Dispose, (List_1_T_Enumerator_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem__MoveNext, (List_1_T_Enumerator_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, DebugUI_Foldout_ContextMenuItem, List_1_T_Enumerator_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem__get_Current, (List_1_T_Enumerator_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher___ctor, (List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher___Boxed * __this, List_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher__Dispose, (List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01435020, bool, List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher__MoveNext, (List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher__MoveNextRare, (List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, InputControlLayout_Collection_LayoutMatcher, List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher__get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014341F0, void, List_1_T_Enumerator_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView___ctor, (List_1_T_Enumerator_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView___Boxed * __this, List_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView__Dispose, (List_1_T_Enumerator_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01445220, bool, List_1_T_Enumerator_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView__MoveNext, (List_1_T_Enumerator_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434370, bool, List_1_T_Enumerator_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView__MoveNextRare, (List_1_T_Enumerator_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01434460, void, List_1_T_Enumerator_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014343B0, Object *, List_1_T_Enumerator_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01204560, InstructionList_DebugView_InstructionView, List_1_T_Enumerator_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView__get_Current, (List_1_T_Enumerator_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437EF0, void, List_1_T_Enumerator_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb___ctor, (List_1_T_Enumerator_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb___Boxed * __this, List_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__Dispose, (List_1_T_Enumerator_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437F70, bool, List_1_T_Enumerator_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__MoveNext, (List_1_T_Enumerator_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438020, bool, List_1_T_Enumerator_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__MoveNextRare, (List_1_T_Enumerator_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438110, void, List_1_T_Enumerator_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438060, Object *, List_1_T_Enumerator_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C39A10, PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb, List_1_T_Enumerator_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__get_Current, (List_1_T_Enumerator_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014466C0, void, List_1_T_Enumerator_Cinemachine_TargetPositionCache_CacheCurve_Item___ctor, (List_1_T_Enumerator_Cinemachine_TargetPositionCache_CacheCurve_Item___Boxed * __this, List_1_Cinemachine_TargetPositionCache_CacheCurve_Item_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Cinemachine_TargetPositionCache_CacheCurve_Item__Dispose, (List_1_T_Enumerator_Cinemachine_TargetPositionCache_CacheCurve_Item___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01446750, bool, List_1_T_Enumerator_Cinemachine_TargetPositionCache_CacheCurve_Item__MoveNext, (List_1_T_Enumerator_Cinemachine_TargetPositionCache_CacheCurve_Item___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01446810, bool, List_1_T_Enumerator_Cinemachine_TargetPositionCache_CacheCurve_Item__MoveNextRare, (List_1_T_Enumerator_Cinemachine_TargetPositionCache_CacheCurve_Item___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01446920, void, List_1_T_Enumerator_Cinemachine_TargetPositionCache_CacheCurve_Item__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Cinemachine_TargetPositionCache_CacheCurve_Item___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01446860, Object *, List_1_T_Enumerator_Cinemachine_TargetPositionCache_CacheCurve_Item__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Cinemachine_TargetPositionCache_CacheCurve_Item___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01446510, TargetPositionCache_CacheCurve_Item, List_1_T_Enumerator_Cinemachine_TargetPositionCache_CacheCurve_Item__get_Current, (List_1_T_Enumerator_Cinemachine_TargetPositionCache_CacheCurve_Item___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01443880, void, List_1_T_Enumerator_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem___ctor, (List_1_T_Enumerator_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem___Boxed * __this, List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * list, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__Dispose, (List_1_T_Enumerator_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01443910, bool, List_1_T_Enumerator_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__MoveNext, (List_1_T_Enumerator_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014439D0, bool, List_1_T_Enumerator_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__MoveNextRare, (List_1_T_Enumerator_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01443B00, void, List_1_T_Enumerator_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01443A40, Object *, List_1_T_Enumerator_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01443A20, TargetPositionCache_CacheEntry_RecordingItem, List_1_T_Enumerator_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__get_Current, (List_1_T_Enumerator_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146CD70, void, Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object___Boxed * __this, Dictionary_2_System_ValueTuple_2_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146CE00, bool, Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D1F0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D2E0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D380, Object *, Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D1B0, void, Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146CF20, Object *, Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, KeyValuePair_2_System_ValueTuple_2_System_Object_, Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D3D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object___Boxed * __this, Dictionary_2_System_ValueTuple_2_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D450, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D560, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D4E0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, ValueTuple_2_Object_Int32_, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object___Boxed * __this, Dictionary_2_System_ValueTuple_2_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D620, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146CD70, void, Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1__ctor, (Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1__Boxed * __this, Dictionary_2_System_ValueTuple_2_System_Object__1 * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1_Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146CE00, bool, Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1_MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D1F0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1_System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D2E0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1_System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D380, Object *, Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1_System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D1B0, void, Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1_System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D730, Object *, Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1_System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, KeyValuePair_2_System_ValueTuple_2_System_Object__1, Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D3D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1__ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1__Boxed * __this, Dictionary_2_System_ValueTuple_2_System_Object__1 * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1_Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D450, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1_MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D560, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1_System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D4E0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1_System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, ValueTuple_2_Object_Object_, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1__ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1__Boxed * __this, Dictionary_2_System_ValueTuple_2_System_Object__1 * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1_Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D620, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1_MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1_System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1_System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_System_Byte_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Byte_System_Object___Boxed * __this, Dictionary_2_System_Byte_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Byte_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Byte_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DA40, bool, Dictionary_2_TKey_TValue_Enumerator_System_Byte_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Byte_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DD90, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Byte_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Byte_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DE80, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Byte_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Byte_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DF20, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Byte_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Byte_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_System_Byte_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Byte_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DB40, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Byte_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Byte_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_Byte_System_Object_, Dictionary_2_TKey_TValue_Enumerator_System_Byte_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Byte_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DF70, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Byte_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Byte_System_Object___Boxed * __this, Dictionary_2_System_Byte_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Byte_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Byte_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DFF0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Byte_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Byte_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E100, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Byte_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Byte_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E080, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Byte_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Byte_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD20, uint8_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Byte_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Byte_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Byte_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Byte_System_Object___Boxed * __this, Dictionary_2_System_Byte_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Byte_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Byte_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E140, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Byte_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Byte_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Byte_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Byte_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Byte_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Byte_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Byte_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Byte_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E1E0, void, Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Int32___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Int32___Boxed * __this, Dictionary_2_System_ByteEnum_System_Int32_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Int32__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E260, bool, Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Int32__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E580, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Int32__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DE80, Object *, Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Int32__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E6B0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Int32__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E540, void, Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Int32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E340, Object *, Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Int32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, KeyValuePair_2_System_ByteEnum_System_Int32_, Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Int32__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DF70, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Int32___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Int32___Boxed * __this, Dictionary_2_System_ByteEnum_System_Int32_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Int32__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E750, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Int32__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E100, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Int32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E080, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Int32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD20, ByteEnum__Enum, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Int32__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Int32___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Int32___Boxed * __this, Dictionary_2_System_ByteEnum_System_Int32_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Int32__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E850, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Int32__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Int32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Int32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, int32_t, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Int32__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Object___Boxed * __this, Dictionary_2_System_ByteEnum_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DA40, bool, Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DD90, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DE80, Object *, Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DF20, Object *, Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E990, Object *, Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_ByteEnum_System_Object_, Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DF70, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Object___Boxed * __this, Dictionary_2_System_ByteEnum_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DFF0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E100, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E080, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD20, ByteEnum__Enum, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Object___Boxed * __this, Dictionary_2_System_ByteEnum_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E140, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146EBA0, void, Dictionary_2_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object___Boxed * __this, Dictionary_2_Dissonance_Audio_Playback_FrameFormat_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146EC30, bool, Dictionary_2_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146F050, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146F150, Object *, Dictionary_2_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146F200, Object *, Dictionary_2_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146F010, void, Dictionary_2_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146ED50, Object *, Dictionary_2_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01204560, KeyValuePair_2_Dissonance_Audio_Playback_FrameFormat_System_Object_, Dictionary_2_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146F250, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object___Boxed * __this, Dictionary_2_Dissonance_Audio_Playback_FrameFormat_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146F2D0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146F3F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146F370, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, FrameFormat, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object___Boxed * __this, Dictionary_2_Dissonance_Audio_Playback_FrameFormat_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146F430, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146CD70, void, Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_Object___Boxed * __this, Dictionary_2_System_Guid_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146F4D0, bool, Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D1F0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D2E0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D380, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D1B0, void, Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146F5E0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, KeyValuePair_2_System_Guid_System_Object_, Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D3D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Guid_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Guid_System_Object___Boxed * __this, Dictionary_2_System_Guid_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Guid_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Guid_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146F810, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Guid_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Guid_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D560, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Guid_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Guid_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D4E0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Guid_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Guid_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, Guid, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Guid_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Guid_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Guid_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Guid_System_Object___Boxed * __this, Dictionary_2_System_Guid_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Guid_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Guid_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D620, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Guid_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Guid_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Guid_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Guid_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Guid_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Guid_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Guid_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Guid_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146F8A0, void, Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_UInt32___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_UInt32___Boxed * __this, Dictionary_2_System_Guid_System_UInt32_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_UInt32__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146F930, bool, Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_UInt32__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146FC50, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_UInt32__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D2E0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_UInt32__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146FD90, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_UInt32__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146FC10, void, Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_UInt32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146FA00, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_UInt32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146B4C0, KeyValuePair_2_System_Guid_System_UInt32_, Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_UInt32__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D3D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Guid_System_UInt32___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Guid_System_UInt32___Boxed * __this, Dictionary_2_System_Guid_System_UInt32_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Guid_System_UInt32__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Guid_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146FE30, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Guid_System_UInt32__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Guid_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D560, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Guid_System_UInt32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Guid_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D4E0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Guid_System_UInt32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Guid_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, Guid, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Guid_System_UInt32__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Guid_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Guid_System_UInt32___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Guid_System_UInt32___Boxed * __this, Dictionary_2_System_Guid_System_UInt32_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Guid_System_UInt32__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Guid_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146FEC0, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Guid_System_UInt32__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Guid_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Guid_System_UInt32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Guid_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Guid_System_UInt32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Guid_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, uint32_t, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Guid_System_UInt32__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Guid_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146CD70, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object___Boxed * __this, Dictionary_2_UnityEngine_Hash128_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146F4D0, bool, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D1F0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D2E0, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D380, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D1B0, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146FF50, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, KeyValuePair_2_UnityEngine_Hash128_System_Object_, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D3D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object___Boxed * __this, Dictionary_2_UnityEngine_Hash128_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146F810, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D560, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D4E0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, Hash128, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object___Boxed * __this, Dictionary_2_UnityEngine_Hash128_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D620, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01470180, void, Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32___ctor, (Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32___Boxed * __this, Dictionary_2_Pathfinding_Int2_System_Int32_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32__Dispose, (Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01470200, bool, Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01470510, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01470650, Object *, Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014706F0, Object *, Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014704D0, void, Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014702D0, Object *, Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C39A10, KeyValuePair_2_Pathfinding_Int2_System_Int32_, Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32__get_Current, (Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32___Boxed * __this, Dictionary_2_Pathfinding_Int2_System_Int32_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01470790, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01470820, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Int2, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32___Boxed * __this, Dictionary_2_Pathfinding_Int2_System_Int32_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014708A0, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, int32_t, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32___ctor, (Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32___Boxed * __this, Dictionary_2_Pathfinding_Int3_System_Int32_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32__Dispose, (Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01470930, bool, Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01470C40, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01470D80, Object *, Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01470E30, Object *, Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01470A30, Object *, Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, KeyValuePair_2_Pathfinding_Int3_System_Int32_, Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32__get_Current, (Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01470ED0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32___Boxed * __this, Dictionary_2_Pathfinding_Int3_System_Int32_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01470F50, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01471070, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01470FF0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C39A10, Int3, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32___Boxed * __this, Dictionary_2_Pathfinding_Int3_System_Int32_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014710B0, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, int32_t, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01470180, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo___Boxed * __this, Dictionary_2_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01471140, bool, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01471420, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01471600, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014704D0, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01471220, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C39A10, KeyValuePair_2_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo___Boxed * __this, Dictionary_2_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014716A0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, int32_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo___Boxed * __this, Dictionary_2_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01471730, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01470820, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, DynamicHeightVirtualizationController_1_T_ContentHeightCacheInfo_System_Object_, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014717C0, void, SortedList_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2___ctor, (SortedList_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2___Boxed * __this, SortedList_2_System_Int32_System_ValueTuple_2__2 * sortedList, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x01471850, void, SortedList_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2__Dispose, (SortedList_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014719A0, bool, SortedList_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2__MoveNext, (SortedList_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01471BB0, DictionaryEntry, SortedList_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2__System_Collections_IDictionaryEnumerator_get_Entry, (SortedList_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01471870, Object *, SortedList_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2__System_Collections_IDictionaryEnumerator_get_Key, (SortedList_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014720D0, Object *, SortedList_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2__System_Collections_IDictionaryEnumerator_get_Value, (SortedList_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01472210, void, SortedList_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2__System_Collections_IEnumerator_Reset, (SortedList_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01471E00, Object *, SortedList_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2__System_Collections_IEnumerator_get_Current, (SortedList_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01471D60, KeyValuePair_2_System_Int32_System_ValueTuple_2__3, SortedList_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2__get_Current, (SortedList_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014722A0, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2___Boxed * __this, Dictionary_2_System_Int32_System_ValueTuple_2_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01472330, bool, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014726D0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01472810, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01472690, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01472440, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01446510, KeyValuePair_2_System_Int32_System_ValueTuple_2__2, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2___Boxed * __this, Dictionary_2_System_Int32_System_ValueTuple_2_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014728C0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, int32_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146F250, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2___Boxed * __this, Dictionary_2_System_Int32_System_ValueTuple_2_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01472950, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146F3F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146F370, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int_, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E1E0, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Boolean___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Boolean___Boxed * __this, Dictionary_2_System_Int32_System_Boolean_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Boolean__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014729F0, bool, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Boolean__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01472CD0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Boolean__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Boolean__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01472E00, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Boolean__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E540, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Boolean__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01472AD0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Boolean__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, KeyValuePair_2_System_Int32_System_Boolean_, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Boolean__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Boolean___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Boolean___Boxed * __this, Dictionary_2_System_Int32_System_Boolean_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Boolean__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01472EA0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Boolean__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Boolean__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Boolean__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, int32_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Boolean__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DF70, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Boolean___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Boolean___Boxed * __this, Dictionary_2_System_Int32_System_Boolean_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Boolean__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01472F20, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Boolean__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E100, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Boolean__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E080, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Boolean__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD20, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Boolean__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E1E0, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ByteEnum___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ByteEnum___Boxed * __this, Dictionary_2_System_Int32_System_ByteEnum_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ByteEnum__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ByteEnum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014729F0, bool, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ByteEnum__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ByteEnum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01472CD0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ByteEnum__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ByteEnum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ByteEnum__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ByteEnum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01472E00, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ByteEnum__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ByteEnum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E540, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ByteEnum__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ByteEnum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01472FA0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ByteEnum__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ByteEnum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, KeyValuePair_2_System_Int32_System_ByteEnum_, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ByteEnum__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ByteEnum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_ByteEnum___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_ByteEnum___Boxed * __this, Dictionary_2_System_Int32_System_ByteEnum_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_ByteEnum__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_ByteEnum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01472EA0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_ByteEnum__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_ByteEnum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_ByteEnum__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_ByteEnum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_ByteEnum__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_ByteEnum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, int32_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_ByteEnum__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_ByteEnum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DF70, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_ByteEnum___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_ByteEnum___Boxed * __this, Dictionary_2_System_Int32_System_ByteEnum_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_ByteEnum__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_ByteEnum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01472F20, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_ByteEnum__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_ByteEnum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E100, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_ByteEnum__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_ByteEnum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E080, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_ByteEnum__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_ByteEnum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD20, ByteEnum__Enum, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_ByteEnum__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_ByteEnum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E1E0, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Char___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Char___Boxed * __this, Dictionary_2_System_Int32_System_Char_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Char__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014731A0, bool, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Char__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01473480, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Char__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Char__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014735C0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Char__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E540, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Char__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01473280, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Char__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, KeyValuePair_2_System_Int32_System_Char_, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Char__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Char___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Char___Boxed * __this, Dictionary_2_System_Int32_System_Char_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Char__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01472EA0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Char__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Char__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Char__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, int32_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Char__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01473660, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Char___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Char___Boxed * __this, Dictionary_2_System_Int32_System_Char_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Char__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014736E0, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Char__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014737E0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Char__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01473760, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Char__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0098C910, uint16_t, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Char__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01473820, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___Boxed * __this, Dictionary_2_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014738B0, bool, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01473D30, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01473E80, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01473CE0, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01473A10, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438C60, KeyValuePair_2_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___Boxed * __this, Dictionary_2_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01473F40, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, int32_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01473FC0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___Boxed * __this, Dictionary_2_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01474050, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01474190, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01474100, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143BE80, DiagnosticEvent, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E1E0, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int16___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int16___Boxed * __this, Dictionary_2_System_Int32_System_Int16_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int16__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014731A0, bool, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int16__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01473480, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int16__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int16__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014735C0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int16__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E540, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int16__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014741D0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int16__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, KeyValuePair_2_System_Int32_System_Int16_, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int16__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int16___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int16___Boxed * __this, Dictionary_2_System_Int32_System_Int16_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int16__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01472EA0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int16__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int16__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int16__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, int32_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int16__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01473660, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int16___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int16___Boxed * __this, Dictionary_2_System_Int32_System_Int16_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int16__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014736E0, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int16__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014737E0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int16__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01473760, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int16__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0098C910, int16_t, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int16__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3___Boxed * __this, Dictionary_2_System_Int32_Pathfinding_Int3_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014743D0, bool, Dictionary_2_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014746F0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01474830, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014744D0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_Int32_Pathfinding_Int3_, Dictionary_2_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3___Boxed * __this, Dictionary_2_System_Int32_Pathfinding_Int3_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014748E0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, int32_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01470ED0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3___Boxed * __this, Dictionary_2_System_Int32_Pathfinding_Int3_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01474970, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01471070, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01470FF0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C39A10, Int3, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01474A10, void, ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32___ctor, (ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32___Boxed * __this, ADictionary_2_System_Int32_System_Int32_ * param_0000c5fe, int32_t param_0000c5ff, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32__Dispose, (ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01474A90, bool, ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32__MoveNext, (ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01474E90, DictionaryEntry, ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32__System_Collections_IDictionaryEnumerator_get_Entry, (ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01475000, Object *, ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32__System_Collections_IDictionaryEnumerator_get_Key, (ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014750E0, Object *, ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32__System_Collections_IDictionaryEnumerator_get_Value, (ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01474E10, void, ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32__System_Collections_IEnumerator_Reset, (ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01474BE0, Object *, ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32__System_Collections_IEnumerator_get_Current, (ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, KeyValuePair_2_System_Int32_System_Int32_, ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32__get_Current, (ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E1E0, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32___Boxed * __this, Dictionary_2_System_Int32_System_Int32_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014751C0, bool, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01475490, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E6B0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E540, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01475290, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, KeyValuePair_2_System_Int32_System_Int32_, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014755C0, void, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32___ctor, (ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32___Boxed * __this, ADictionary_2_System_Int32_System_Int32_ * param_0000c608, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32__Dispose, (ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01475640, bool, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32__MoveNext, (ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014757E0, void, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32__System_Collections_IEnumerator_Reset, (ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01475720, Object *, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32__System_Collections_IEnumerator_get_Current, (ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, int32_t, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32__get_Current, (ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014755C0, void, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32___ctor, (ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32___Boxed * __this, ADictionary_2_System_Int32_System_Int32_ * param_0000c611, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32__Dispose, (ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01475860, bool, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32__MoveNext, (ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01475A00, void, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32__System_Collections_IEnumerator_Reset, (ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01475940, Object *, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32__System_Collections_IEnumerator_get_Current, (ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, int32_t, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32__get_Current, (ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32___Boxed * __this, Dictionary_2_System_Int32_System_Int32_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01472EA0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, int32_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32___Boxed * __this, Dictionary_2_System_Int32_System_Int32_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E850, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, int32_t, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E1E0, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32Enum___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32Enum___Boxed * __this, Dictionary_2_System_Int32_System_Int32Enum_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32Enum__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014751C0, bool, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32Enum__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01475490, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32Enum__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32Enum__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E6B0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32Enum__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E540, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32Enum__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01475A80, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32Enum__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, KeyValuePair_2_System_Int32_System_Int32Enum_, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32Enum__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32Enum___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32Enum___Boxed * __this, Dictionary_2_System_Int32_System_Int32Enum_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32Enum__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01472EA0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32Enum__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32Enum__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32Enum__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, int32_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32Enum__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32Enum___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32Enum___Boxed * __this, Dictionary_2_System_Int32_System_Int32Enum_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32Enum__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E850, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32Enum__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32Enum__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32Enum__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, Int32Enum__Enum, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32Enum__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int64___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int64___Boxed * __this, Dictionary_2_System_Int32_System_Int64_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int64__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01475C80, bool, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int64__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01475F60, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int64__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int64__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014760A0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int64__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int64__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01475D60, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int64__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_Int32_System_Int64_, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int64__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int64___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int64___Boxed * __this, Dictionary_2_System_Int32_System_Int64_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int64__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014748E0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int64__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int64__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int64__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, int32_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int64__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int64___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int64___Boxed * __this, Dictionary_2_System_Int32_System_Int64_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int64__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01476140, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int64__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int64__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01470820, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int64__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, int64_t, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int64__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014761D0, void, ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object___ctor, (ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, ADictionary_2_System_Int32_System_Object_ * param_0000c5fe, int32_t param_0000c5ff, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object__Dispose, (ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01476250, bool, ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object__MoveNext, (ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014766A0, DictionaryEntry, ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014767D0, Object *, ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014768B0, Object *, ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01476620, void, ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IEnumerator_Reset, (ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014763E0, Object *, ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IEnumerator_get_Current, (ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_Int32_System_Object_, ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object__get_Current, (ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, Dictionary_2_System_Int32_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01476940, bool, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01476C50, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DF20, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01476A40, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_Int32_System_Object_, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01476D40, void, IndexedDictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object___ctor, (IndexedDictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, IndexedDictionary_2_System_Int32_System_Object_ * param_0000c64c, int32_t param_0000c64d, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, IndexedDictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object__Dispose, (IndexedDictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01476E40, bool, IndexedDictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object__MoveNext, (IndexedDictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01477410, DictionaryEntry, IndexedDictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (IndexedDictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01477550, Object *, IndexedDictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (IndexedDictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01477640, Object *, IndexedDictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (IndexedDictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01477310, void, IndexedDictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IEnumerator_Reset, (IndexedDictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014770C0, Object *, IndexedDictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IEnumerator_get_Current, (IndexedDictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_Int32_System_Object_, IndexedDictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object__get_Current, (IndexedDictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014755C0, void, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object___ctor, (ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, ADictionary_2_System_Int32_System_Object_ * param_0000c608, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object__Dispose, (ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014776D0, bool, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object__MoveNext, (ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01477870, void, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IEnumerator_Reset, (ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014777B0, Object *, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IEnumerator_get_Current, (ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, int32_t, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object__get_Current, (ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014778F0, void, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object___ctor, (ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, ADictionary_2_System_Int32_System_Object_ * param_0000c611, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object__Dispose, (ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01477970, bool, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object__MoveNext, (ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01477AF0, void, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IEnumerator_Reset, (ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01477A70, Object *, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IEnumerator_get_Current, (ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object__get_Current, (ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, Dictionary_2_System_Int32_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014748E0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, int32_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, Dictionary_2_System_Int32_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E140, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01477B70, void, IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object___ctor, (IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, IndexedDictionary_2_System_Int32_System_Object_ * param_0000c656, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object__Dispose, (IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01477C60, bool, IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object__MoveNext, (IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01477E80, void, IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IEnumerator_Reset, (IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01477DB0, Object *, IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IEnumerator_get_Current, (IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, int32_t, IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object__get_Current, (IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01477F80, void, IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object___ctor, (IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, IndexedDictionary_2_System_Int32_System_Object_ * param_0000c65f, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object__Dispose, (IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01478070, bool, IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object__MoveNext, (IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014782A0, void, IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IEnumerator_Reset, (IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01478220, Object *, IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IEnumerator_get_Current, (IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object__get_Current, (IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146CD70, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam___Boxed * __this, Dictionary_2_System_Int32_PlayerFlashlightBeam_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014783A0, bool, Dictionary_2_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01478730, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01478870, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D1B0, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014784B0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, KeyValuePair_2_System_Int32_PlayerFlashlightBeam_, Dictionary_2_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam___Boxed * __this, Dictionary_2_System_Int32_PlayerFlashlightBeam_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01478910, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, int32_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D3D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam___Boxed * __this, Dictionary_2_System_Int32_PlayerFlashlightBeam_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01478990, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D560, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D4E0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, PlayerFlashlightBeam, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146F8A0, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout___Boxed * __this, Dictionary_2_System_Int32_UnityEngine_RenderInstancedDataLayout_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01478A20, bool, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01478D20, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01478E60, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146FC10, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01478B00, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146B4C0, KeyValuePair_2_System_Int32_UnityEngine_RenderInstancedDataLayout_, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout___Boxed * __this, Dictionary_2_System_Int32_UnityEngine_RenderInstancedDataLayout_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01478F00, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, int32_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D3D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout___Boxed * __this, Dictionary_2_System_Int32_UnityEngine_RenderInstancedDataLayout_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01478F90, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D560, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D4E0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, RenderInstancedDataLayout, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E1E0, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Single___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Single___Boxed * __this, Dictionary_2_System_Int32_System_Single_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Single__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01479020, bool, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Single__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01479300, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Single__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Single__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01479440, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Single__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E540, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Single__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014790F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Single__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, KeyValuePair_2_System_Int32_System_Single_, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Single__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Single___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Single___Boxed * __this, Dictionary_2_System_Int32_System_Single_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Single__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01472EA0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Single__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Single__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Single__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, int32_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Single__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Single___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Single___Boxed * __this, Dictionary_2_System_Int32_System_Single_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Single__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E850, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Single__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Single__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014794E0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Single__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC3C0, float, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Single__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146CD70, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem___Boxed * __this, Dictionary_2_System_Int32_UnityEngine_UIElements_TreeItem_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014783A0, bool, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01478730, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01478870, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D1B0, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01479560, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, KeyValuePair_2_System_Int32_UnityEngine_UIElements_TreeItem_, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem___Boxed * __this, Dictionary_2_System_Int32_UnityEngine_UIElements_TreeItem_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01478910, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, int32_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D3D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem___Boxed * __this, Dictionary_2_System_Int32_UnityEngine_UIElements_TreeItem_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01478990, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D560, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D4E0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, TreeItem, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01470180, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int___Boxed * __this, Dictionary_2_System_Int32_UnityEngine_Vector2Int_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_Pathfinding_Util_RetainedGizmos_MeshWithHash___ctor, (List_1_T_Enumerator_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * __this, List_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Pathfinding_Util_RetainedGizmos_MeshWithHash__Dispose, (List_1_T_Enumerator_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439CB0, bool, List_1_T_Enumerator_Pathfinding_Util_RetainedGizmos_MeshWithHash__MoveNext, (List_1_T_Enumerator_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_Pathfinding_Util_RetainedGizmos_MeshWithHash__MoveNextRare, (List_1_T_Enumerator_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_Pathfinding_Util_RetainedGizmos_MeshWithHash__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_Pathfinding_Util_RetainedGizmos_MeshWithHash__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, RetainedGizmos_MeshWithHash, List_1_T_Enumerator_Pathfinding_Util_RetainedGizmos_MeshWithHash__get_Current, (List_1_T_Enumerator_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014431A0, void, Stack_1_T_Enumerator_System_Xml_Schema_SequenceNode_SequenceConstructPosContext___ctor, (Stack_1_T_Enumerator_System_Xml_Schema_SequenceNode_SequenceConstructPosContext_ * __this, Stack_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext_ * stack, MethodInfo * method)); +DO_APP_FUNC(0x01436E20, void, Stack_1_T_Enumerator_System_Xml_Schema_SequenceNode_SequenceConstructPosContext__Dispose, (Stack_1_T_Enumerator_System_Xml_Schema_SequenceNode_SequenceConstructPosContext_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146BB00, bool, Stack_1_T_Enumerator_System_Xml_Schema_SequenceNode_SequenceConstructPosContext__MoveNext, (Stack_1_T_Enumerator_System_Xml_Schema_SequenceNode_SequenceConstructPosContext_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D5E0, Stack_1_T_Enumerator_System_Xml_Schema_SequenceNode_SequenceConstructPosContext__MoveNext__MethodInfo); +DO_APP_FUNC(0x0146BE00, void, Stack_1_T_Enumerator_System_Xml_Schema_SequenceNode_SequenceConstructPosContext__System_Collections_IEnumerator_Reset, (Stack_1_T_Enumerator_System_Xml_Schema_SequenceNode_SequenceConstructPosContext_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D5D0, Stack_1_T_Enumerator_System_Xml_Schema_SequenceNode_SequenceConstructPosContext__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x0146BD40, Object *, Stack_1_T_Enumerator_System_Xml_Schema_SequenceNode_SequenceConstructPosContext__System_Collections_IEnumerator_get_Current, (Stack_1_T_Enumerator_System_Xml_Schema_SequenceNode_SequenceConstructPosContext_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146BCD0, void, Stack_1_T_Enumerator_System_Xml_Schema_SequenceNode_SequenceConstructPosContext__ThrowEnumerationNotStartedOrEnded, (Stack_1_T_Enumerator_System_Xml_Schema_SequenceNode_SequenceConstructPosContext_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D5D8, Stack_1_T_Enumerator_System_Xml_Schema_SequenceNode_SequenceConstructPosContext__ThrowEnumerationNotStartedOrEnded__MethodInfo); +DO_APP_FUNC(0x0146BC70, SequenceNode_SequenceConstructPosContext, Stack_1_T_Enumerator_System_Xml_Schema_SequenceNode_SequenceConstructPosContext__get_Current, (Stack_1_T_Enumerator_System_Xml_Schema_SequenceNode_SequenceConstructPosContext_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01436DA0, void, Stack_1_T_Enumerator_UnityEngine_UIElements_StyleVariableResolver_ResolveContext___ctor, (Stack_1_T_Enumerator_UnityEngine_UIElements_StyleVariableResolver_ResolveContext_ * __this, Stack_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext_ * stack, MethodInfo * method)); +DO_APP_FUNC(0x01436E20, void, Stack_1_T_Enumerator_UnityEngine_UIElements_StyleVariableResolver_ResolveContext__Dispose, (Stack_1_T_Enumerator_UnityEngine_UIElements_StyleVariableResolver_ResolveContext_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146BEA0, bool, Stack_1_T_Enumerator_UnityEngine_UIElements_StyleVariableResolver_ResolveContext__MoveNext, (Stack_1_T_Enumerator_UnityEngine_UIElements_StyleVariableResolver_ResolveContext_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D5C0, Stack_1_T_Enumerator_UnityEngine_UIElements_StyleVariableResolver_ResolveContext__MoveNext__MethodInfo); +DO_APP_FUNC(0x0146C150, void, Stack_1_T_Enumerator_UnityEngine_UIElements_StyleVariableResolver_ResolveContext__System_Collections_IEnumerator_Reset, (Stack_1_T_Enumerator_UnityEngine_UIElements_StyleVariableResolver_ResolveContext_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D5B0, Stack_1_T_Enumerator_UnityEngine_UIElements_StyleVariableResolver_ResolveContext__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x0146C0A0, Object *, Stack_1_T_Enumerator_UnityEngine_UIElements_StyleVariableResolver_ResolveContext__System_Collections_IEnumerator_get_Current, (Stack_1_T_Enumerator_UnityEngine_UIElements_StyleVariableResolver_ResolveContext_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146C030, void, Stack_1_T_Enumerator_UnityEngine_UIElements_StyleVariableResolver_ResolveContext__ThrowEnumerationNotStartedOrEnded, (Stack_1_T_Enumerator_UnityEngine_UIElements_StyleVariableResolver_ResolveContext_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D5B8, Stack_1_T_Enumerator_UnityEngine_UIElements_StyleVariableResolver_ResolveContext__ThrowEnumerationNotStartedOrEnded__MethodInfo); +DO_APP_FUNC(0x0146BFE0, StyleVariableResolver_ResolveContext, Stack_1_T_Enumerator_UnityEngine_UIElements_StyleVariableResolver_ResolveContext__get_Current, (Stack_1_T_Enumerator_UnityEngine_UIElements_StyleVariableResolver_ResolveContext_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_UnityEngine_UIElements_TemplateAsset_AttributeOverride___ctor, (List_1_T_Enumerator_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ * __this, List_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIElements_TemplateAsset_AttributeOverride__Dispose, (List_1_T_Enumerator_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01435020, bool, List_1_T_Enumerator_UnityEngine_UIElements_TemplateAsset_AttributeOverride__MoveNext, (List_1_T_Enumerator_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_UnityEngine_UIElements_TemplateAsset_AttributeOverride__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_UnityEngine_UIElements_TemplateAsset_AttributeOverride__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_UnityEngine_UIElements_TemplateAsset_AttributeOverride__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, TemplateAsset_AttributeOverride, List_1_T_Enumerator_UnityEngine_UIElements_TemplateAsset_AttributeOverride__get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap___ctor, (List_1_T_Enumerator_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ * __this, List_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__Dispose, (List_1_T_Enumerator_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__MoveNext, (List_1_T_Enumerator_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__MoveNextRare, (List_1_T_Enumerator_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, TextSettings_FontReferenceMap, List_1_T_Enumerator_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__get_Current, (List_1_T_Enumerator_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438A50, void, List_1_T_Enumerator_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo___ctor, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * __this, List_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__Dispose, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143CEE0, bool, List_1_T_Enumerator_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__MoveNext, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438C10, bool, List_1_T_Enumerator_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438D60, void, List_1_T_Enumerator_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438C90, Object *, List_1_T_Enumerator_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438C60, TextureBlitter_BlitInfo, List_1_T_Enumerator_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143F0F0, void, List_1_T_Enumerator_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame___ctor, (List_1_T_Enumerator_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame_ * __this, List_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame__Dispose, (List_1_T_Enumerator_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146C1E0, bool, List_1_T_Enumerator_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame__MoveNext, (List_1_T_Enumerator_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143F250, bool, List_1_T_Enumerator_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame__MoveNextRare, (List_1_T_Enumerator_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143F390, void, List_1_T_Enumerator_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143F2D0, Object *, List_1_T_Enumerator_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143F2A0, TexturePacker_JsonArray_Frame, List_1_T_Enumerator_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame__get_Current, (List_1_T_Enumerator_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_UIElements_TextureRegistry_TextureInfo___ctor, (List_1_T_Enumerator_UnityEngine_UIElements_TextureRegistry_TextureInfo_ * __this, List_1_UnityEngine_UIElements_TextureRegistry_TextureInfo_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIElements_TextureRegistry_TextureInfo__Dispose, (List_1_T_Enumerator_UnityEngine_UIElements_TextureRegistry_TextureInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_UnityEngine_UIElements_TextureRegistry_TextureInfo__MoveNext, (List_1_T_Enumerator_UnityEngine_UIElements_TextureRegistry_TextureInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_UIElements_TextureRegistry_TextureInfo__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIElements_TextureRegistry_TextureInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_UIElements_TextureRegistry_TextureInfo__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIElements_TextureRegistry_TextureInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_UIElements_TextureRegistry_TextureInfo__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_TextureRegistry_TextureInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, TextureRegistry_TextureInfo, List_1_T_Enumerator_UnityEngine_UIElements_TextureRegistry_TextureInfo__get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_TextureRegistry_TextureInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry___ctor, (List_1_T_Enumerator_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry_ * __this, List_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry__Dispose, (List_1_T_Enumerator_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439CB0, bool, List_1_T_Enumerator_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry__MoveNext, (List_1_T_Enumerator_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, TimeNotificationBehaviour_NotificationEntry, List_1_T_Enumerator_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry__get_Current, (List_1_T_Enumerator_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341F0, void, List_1_T_Enumerator_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData___ctor, (List_1_T_Enumerator_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * __this, List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__Dispose, (List_1_T_Enumerator_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434270, bool, List_1_T_Enumerator_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__MoveNext, (List_1_T_Enumerator_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434370, bool, List_1_T_Enumerator_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__MoveNextRare, (List_1_T_Enumerator_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434460, void, List_1_T_Enumerator_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014343B0, Object *, List_1_T_Enumerator_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01204560, TrackedDeviceRaycaster_RaycastHitData, List_1_T_Enumerator_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData___ctor, (List_1_T_Enumerator_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData_ * __this, List_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData__Dispose, (List_1_T_Enumerator_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData__MoveNext, (List_1_T_Enumerator_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData__MoveNextRare, (List_1_T_Enumerator_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, TrackedPoseDriverDataDescription_PoseData, List_1_T_Enumerator_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData__get_Current, (List_1_T_Enumerator_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_UIElements_TreeView_TreeViewItemWrapper___ctor, (List_1_T_Enumerator_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * __this, List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__Dispose, (List_1_T_Enumerator_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434850, bool, List_1_T_Enumerator_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__MoveNext, (List_1_T_Enumerator_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, TreeView_TreeViewItemWrapper, List_1_T_Enumerator_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434DE0, void, List_1_T_Enumerator_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState___ctor, (List_1_T_Enumerator_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ * __this, List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__Dispose, (List_1_T_Enumerator_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434E60, bool, List_1_T_Enumerator_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__MoveNext, (List_1_T_Enumerator_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434F00, bool, List_1_T_Enumerator_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434FE0, void, List_1_T_Enumerator_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434F40, Object *, List_1_T_Enumerator_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, TreeViewReorderableDragAndDropController_TreeItemState, List_1_T_Enumerator_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01467870, void, List_1_T_Enumerator_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry___ctor, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * __this, List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__Dispose, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD77D8, List_1_T_Enumerator_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__Dispose__MethodInfo); +DO_APP_FUNC(0x0146C300, bool, List_1_T_Enumerator_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__MoveNext, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7810, List_1_T_Enumerator_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__MoveNext__MethodInfo); +DO_APP_FUNC(0x01467A00, bool, List_1_T_Enumerator_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01467B70, void, List_1_T_Enumerator_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01467A90, Object *, List_1_T_Enumerator_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01467A50, UIRStylePainter_Entry, List_1_T_Enumerator_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7818, List_1_T_Enumerator_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__get_Current__MethodInfo); +DO_APP_FUNC(0x01438DB0, void, List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree___ctor, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * __this, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__Dispose, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7A38, List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__Dispose__MethodInfo); +DO_APP_FUNC(0x01446FA0, bool, List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__MoveNext, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7A58, List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__MoveNext__MethodInfo); +DO_APP_FUNC(0x01438F60, bool, List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01439090, void, List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438FD0, Object *, List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438FB0, UIRenderDevice_AllocToFree, List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7A48, List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__get_Current__MethodInfo); +DO_APP_FUNC(0x01437170, void, List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate___ctor, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * __this, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__Dispose, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7A70, List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__Dispose__MethodInfo); +DO_APP_FUNC(0x0146C440, bool, List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__MoveNext, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7A68, List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__MoveNext__MethodInfo); +DO_APP_FUNC(0x01437330, bool, List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01437480, void, List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014373B0, Object *, List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01437380, UIRenderDevice_AllocToUpdate, List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7A60, List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__get_Current__MethodInfo); +DO_APP_FUNC(0x01438450, void, LinkedList_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree___ctor, (LinkedList_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree_ * __this, LinkedList_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree_ * list, MethodInfo * method)); +DO_APP_FUNC(0x0146C570, void, LinkedList_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree___ctor_1, (LinkedList_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D5A8, LinkedList_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree___ctor_1__MethodInfo); +DO_APP_FUNC(0x003AE050, void, LinkedList_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree__Dispose, (LinkedList_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146C700, bool, LinkedList_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree__MoveNext, (LinkedList_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D558, LinkedList_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree__MoveNext__MethodInfo); +DO_APP_FUNC(0x0146C910, void, LinkedList_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree__System_Collections_IEnumerator_Reset, (LinkedList_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D550, LinkedList_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x0146C5C0, Object *, LinkedList_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree__System_Collections_IEnumerator_get_Current, (LinkedList_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D560, LinkedList_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x0146CA40, void, LinkedList_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree__System_Runtime_Serialization_IDeserializationCallback_OnDeserialization, (LinkedList_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree_ * __this, Object * sender, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D540, LinkedList_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree__System_Runtime_Serialization_IDeserializationCallback_OnDeserialization__MethodInfo); +DO_APP_FUNC(0x0146C9F0, void, LinkedList_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree__System_Runtime_Serialization_ISerializable_GetObjectData, (LinkedList_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D548, LinkedList_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree__System_Runtime_Serialization_ISerializable_GetObjectData__MethodInfo); +DO_APP_FUNC(0x0093E890, UIRenderDevice_DeviceToFree, LinkedList_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree__get_Current, (LinkedList_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_UnityEngine_UnitySynchronizationContext_WorkRequest___ctor, (List_1_T_Enumerator_UnityEngine_UnitySynchronizationContext_WorkRequest_ * __this, List_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UnitySynchronizationContext_WorkRequest__Dispose, (List_1_T_Enumerator_UnityEngine_UnitySynchronizationContext_WorkRequest_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01435020, bool, List_1_T_Enumerator_UnityEngine_UnitySynchronizationContext_WorkRequest__MoveNext, (List_1_T_Enumerator_UnityEngine_UnitySynchronizationContext_WorkRequest_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_UnityEngine_UnitySynchronizationContext_WorkRequest__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UnitySynchronizationContext_WorkRequest_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_UnityEngine_UnitySynchronizationContext_WorkRequest__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UnitySynchronizationContext_WorkRequest_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_UnityEngine_UnitySynchronizationContext_WorkRequest__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UnitySynchronizationContext_WorkRequest_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, UnitySynchronizationContext_WorkRequest, List_1_T_Enumerator_UnityEngine_UnitySynchronizationContext_WorkRequest__get_Current, (List_1_T_Enumerator_UnityEngine_UnitySynchronizationContext_WorkRequest_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition___ctor, (List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition_ * __this, List_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition__Dispose, (List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition__MoveNext, (List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, VisualTreeAsset_SlotDefinition, List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition__get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry___ctor, (List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_ * __this, List_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry__Dispose, (List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry__MoveNext, (List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, VisualTreeAsset_SlotUsageEntry, List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry__get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_UsingEntry___ctor, (List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ * __this, List_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__Dispose, (List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9620, List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__Dispose__MethodInfo); +DO_APP_FUNC(0x01435020, bool, List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__MoveNext, (List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE95F8, List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__MoveNext__MethodInfo); +DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__MoveNextRare, (List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, VisualTreeAsset_UsingEntry, List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__get_Current, (List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE95E8, List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__get_Current__MethodInfo); +DO_APP_FUNC(0x0143D120, void, Queue_1_T_Enumerator_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK___ctor, (Queue_1_T_Enumerator_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK_ * __this, Queue_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK_ * q, MethodInfo * method)); +DO_APP_FUNC(0x0143D1A0, void, Queue_1_T_Enumerator_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__Dispose, (Queue_1_T_Enumerator_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146CA90, bool, Queue_1_T_Enumerator_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__MoveNext, (Queue_1_T_Enumerator_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D538, Queue_1_T_Enumerator_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__MoveNext__MethodInfo); +DO_APP_FUNC(0x0146CCE0, void, Queue_1_T_Enumerator_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__System_Collections_IEnumerator_Reset, (Queue_1_T_Enumerator_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D528, Queue_1_T_Enumerator_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x0146CC30, Object *, Queue_1_T_Enumerator_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__System_Collections_IEnumerator_get_Current, (Queue_1_T_Enumerator_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146CBC0, void, Queue_1_T_Enumerator_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__ThrowEnumerationNotStartedOrEnded, (Queue_1_T_Enumerator_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D530, Queue_1_T_Enumerator_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__ThrowEnumerationNotStartedOrEnded__MethodInfo); +DO_APP_FUNC(0x0146CB80, XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK, Queue_1_T_Enumerator_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__get_Current, (Queue_1_T_Enumerator_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry___ctor, (List_1_T_Enumerator_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry_ * __this, List_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry__Dispose, (List_1_T_Enumerator_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry__MoveNext, (List_1_T_Enumerator_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry__MoveNextRare, (List_1_T_Enumerator_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, XmlSchemaObjectTable_XmlSchemaObjectEntry, List_1_T_Enumerator_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry__get_Current, (List_1_T_Enumerator_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341F0, void, List_1_T_Enumerator_ftLightmaps_LightmapAdditionalData___ctor, (List_1_T_Enumerator_ftLightmaps_LightmapAdditionalData_ * __this, List_1_ftLightmaps_LightmapAdditionalData_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_ftLightmaps_LightmapAdditionalData__Dispose, (List_1_T_Enumerator_ftLightmaps_LightmapAdditionalData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434270, bool, List_1_T_Enumerator_ftLightmaps_LightmapAdditionalData__MoveNext, (List_1_T_Enumerator_ftLightmaps_LightmapAdditionalData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434370, bool, List_1_T_Enumerator_ftLightmaps_LightmapAdditionalData__MoveNextRare, (List_1_T_Enumerator_ftLightmaps_LightmapAdditionalData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434460, void, List_1_T_Enumerator_ftLightmaps_LightmapAdditionalData__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_ftLightmaps_LightmapAdditionalData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014343B0, Object *, List_1_T_Enumerator_ftLightmaps_LightmapAdditionalData__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_ftLightmaps_LightmapAdditionalData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01204560, ftLightmaps_LightmapAdditionalData, List_1_T_Enumerator_ftLightmaps_LightmapAdditionalData__get_Current, (List_1_T_Enumerator_ftLightmaps_LightmapAdditionalData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434DE0, void, List_1_T_Enumerator_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy___ctor, (List_1_T_Enumerator_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * __this, List_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__Dispose, (List_1_T_Enumerator_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434E60, bool, List_1_T_Enumerator_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__MoveNext, (List_1_T_Enumerator_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434F00, bool, List_1_T_Enumerator_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__MoveNextRare, (List_1_T_Enumerator_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434FE0, void, List_1_T_Enumerator_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434F40, Object *, List_1_T_Enumerator_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy, List_1_T_Enumerator_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__get_Current, (List_1_T_Enumerator_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433F50, void, List_1_T_Enumerator_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem___ctor, (List_1_T_Enumerator_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem_ * __this, List_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem__Dispose, (List_1_T_Enumerator_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01433FD0, bool, List_1_T_Enumerator_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem__MoveNext, (List_1_T_Enumerator_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014340D0, bool, List_1_T_Enumerator_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem__MoveNextRare, (List_1_T_Enumerator_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341B0, void, List_1_T_Enumerator_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434110, Object *, List_1_T_Enumerator_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, DebugUI_Foldout_ContextMenuItem, List_1_T_Enumerator_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem__get_Current, (List_1_T_Enumerator_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014345A0, void, List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher___ctor, (List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher_ * __this, List_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher__Dispose, (List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01435020, bool, List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher__MoveNext, (List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434720, bool, List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher__MoveNextRare, (List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434810, void, List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434760, Object *, List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, InputControlLayout_Collection_LayoutMatcher, List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher__get_Current, (List_1_T_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014341F0, void, List_1_T_Enumerator_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView___ctor, (List_1_T_Enumerator_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView_ * __this, List_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView__Dispose, (List_1_T_Enumerator_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01445220, bool, List_1_T_Enumerator_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView__MoveNext, (List_1_T_Enumerator_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434370, bool, List_1_T_Enumerator_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView__MoveNextRare, (List_1_T_Enumerator_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01434460, void, List_1_T_Enumerator_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014343B0, Object *, List_1_T_Enumerator_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01204560, InstructionList_DebugView_InstructionView, List_1_T_Enumerator_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView__get_Current, (List_1_T_Enumerator_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01437EF0, void, List_1_T_Enumerator_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb___ctor, (List_1_T_Enumerator_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * __this, List_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__Dispose, (List_1_T_Enumerator_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01437F70, bool, List_1_T_Enumerator_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__MoveNext, (List_1_T_Enumerator_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438020, bool, List_1_T_Enumerator_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__MoveNextRare, (List_1_T_Enumerator_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438110, void, List_1_T_Enumerator_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438060, Object *, List_1_T_Enumerator_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C39A10, PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb, List_1_T_Enumerator_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__get_Current, (List_1_T_Enumerator_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014466C0, void, List_1_T_Enumerator_Cinemachine_TargetPositionCache_CacheCurve_Item___ctor, (List_1_T_Enumerator_Cinemachine_TargetPositionCache_CacheCurve_Item_ * __this, List_1_Cinemachine_TargetPositionCache_CacheCurve_Item_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Cinemachine_TargetPositionCache_CacheCurve_Item__Dispose, (List_1_T_Enumerator_Cinemachine_TargetPositionCache_CacheCurve_Item_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01446750, bool, List_1_T_Enumerator_Cinemachine_TargetPositionCache_CacheCurve_Item__MoveNext, (List_1_T_Enumerator_Cinemachine_TargetPositionCache_CacheCurve_Item_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01446810, bool, List_1_T_Enumerator_Cinemachine_TargetPositionCache_CacheCurve_Item__MoveNextRare, (List_1_T_Enumerator_Cinemachine_TargetPositionCache_CacheCurve_Item_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01446920, void, List_1_T_Enumerator_Cinemachine_TargetPositionCache_CacheCurve_Item__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Cinemachine_TargetPositionCache_CacheCurve_Item_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01446860, Object *, List_1_T_Enumerator_Cinemachine_TargetPositionCache_CacheCurve_Item__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Cinemachine_TargetPositionCache_CacheCurve_Item_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01446510, TargetPositionCache_CacheCurve_Item, List_1_T_Enumerator_Cinemachine_TargetPositionCache_CacheCurve_Item__get_Current, (List_1_T_Enumerator_Cinemachine_TargetPositionCache_CacheCurve_Item_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01443880, void, List_1_T_Enumerator_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem___ctor, (List_1_T_Enumerator_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * __this, List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * list, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, List_1_T_Enumerator_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__Dispose, (List_1_T_Enumerator_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01443910, bool, List_1_T_Enumerator_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__MoveNext, (List_1_T_Enumerator_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014439D0, bool, List_1_T_Enumerator_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__MoveNextRare, (List_1_T_Enumerator_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01443B00, void, List_1_T_Enumerator_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__System_Collections_IEnumerator_Reset, (List_1_T_Enumerator_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01443A40, Object *, List_1_T_Enumerator_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__System_Collections_IEnumerator_get_Current, (List_1_T_Enumerator_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01443A20, TargetPositionCache_CacheEntry_RecordingItem, List_1_T_Enumerator_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__get_Current, (List_1_T_Enumerator_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146CD70, void, Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object_ * __this, Dictionary_2_System_ValueTuple_2_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146CE00, bool, Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D1F0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D2E0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D380, Object *, Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D1B0, void, Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146CF20, Object *, Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, KeyValuePair_2_System_ValueTuple_2_System_Object_, Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D3D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object_ * __this, Dictionary_2_System_ValueTuple_2_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D450, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D560, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D4E0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, ValueTuple_2_Object_Int32_, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object_ * __this, Dictionary_2_System_ValueTuple_2_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D620, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146CD70, void, Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1__ctor, (Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1 * __this, Dictionary_2_System_ValueTuple_2_System_Object__1 * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1_Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146CE00, bool, Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1_MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D1F0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1_System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D2E0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1_System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D380, Object *, Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1_System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D1B0, void, Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1_System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D730, Object *, Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1_System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, KeyValuePair_2_System_ValueTuple_2_System_Object__1, Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D3D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1__ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1 * __this, Dictionary_2_System_ValueTuple_2_System_Object__1 * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1_Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D450, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1_MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D560, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1_System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D4E0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1_System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, ValueTuple_2_Object_Object_, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1__ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1 * __this, Dictionary_2_System_ValueTuple_2_System_Object__1 * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1_Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D620, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1_MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1_System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1_System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ValueTuple_2_System_Object__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_System_Byte_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Byte_System_Object_ * __this, Dictionary_2_System_Byte_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Byte_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Byte_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2E90, Dictionary_2_TKey_TValue_Enumerator_System_Byte_System_Object__Dispose__MethodInfo); +DO_APP_FUNC(0x0146DA40, bool, Dictionary_2_TKey_TValue_Enumerator_System_Byte_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Byte_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2E80, Dictionary_2_TKey_TValue_Enumerator_System_Byte_System_Object__MoveNext__MethodInfo); +DO_APP_FUNC(0x0146DD90, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Byte_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Byte_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DE80, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Byte_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Byte_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DF20, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Byte_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Byte_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_System_Byte_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Byte_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DB40, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Byte_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Byte_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_Byte_System_Object_, Dictionary_2_TKey_TValue_Enumerator_System_Byte_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Byte_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2E68, Dictionary_2_TKey_TValue_Enumerator_System_Byte_System_Object__get_Current__MethodInfo); +DO_APP_FUNC(0x0146DF70, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Byte_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Byte_System_Object_ * __this, Dictionary_2_System_Byte_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Byte_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Byte_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DFF0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Byte_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Byte_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E100, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Byte_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Byte_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E080, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Byte_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Byte_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD20, uint8_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Byte_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Byte_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Byte_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Byte_System_Object_ * __this, Dictionary_2_System_Byte_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Byte_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Byte_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E140, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Byte_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Byte_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Byte_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Byte_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Byte_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Byte_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Byte_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Byte_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E1E0, void, Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Int32___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Int32_ * __this, Dictionary_2_System_ByteEnum_System_Int32_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Int32__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E260, bool, Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Int32__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E580, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Int32__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DE80, Object *, Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Int32__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E6B0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Int32__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E540, void, Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Int32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E340, Object *, Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Int32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, KeyValuePair_2_System_ByteEnum_System_Int32_, Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Int32__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DF70, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Int32___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Int32_ * __this, Dictionary_2_System_ByteEnum_System_Int32_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Int32__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E750, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Int32__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E100, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Int32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E080, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Int32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD20, ByteEnum__Enum, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Int32__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Int32___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Int32_ * __this, Dictionary_2_System_ByteEnum_System_Int32_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Int32__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E850, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Int32__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Int32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Int32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, int32_t, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Int32__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Object_ * __this, Dictionary_2_System_ByteEnum_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DA40, bool, Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DD90, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DE80, Object *, Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DF20, Object *, Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E990, Object *, Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_ByteEnum_System_Object_, Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DF70, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Object_ * __this, Dictionary_2_System_ByteEnum_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DFF0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E100, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E080, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD20, ByteEnum__Enum, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Object_ * __this, Dictionary_2_System_ByteEnum_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E140, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ByteEnum_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146EBA0, void, Dictionary_2_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object_ * __this, Dictionary_2_Dissonance_Audio_Playback_FrameFormat_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146EC30, bool, Dictionary_2_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146F050, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146F150, Object *, Dictionary_2_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146F200, Object *, Dictionary_2_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146F010, void, Dictionary_2_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146ED50, Object *, Dictionary_2_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01204560, KeyValuePair_2_Dissonance_Audio_Playback_FrameFormat_System_Object_, Dictionary_2_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146F250, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object_ * __this, Dictionary_2_Dissonance_Audio_Playback_FrameFormat_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146F2D0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146F3F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146F370, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, FrameFormat, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object_ * __this, Dictionary_2_Dissonance_Audio_Playback_FrameFormat_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146F430, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146CD70, void, Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_Object_ * __this, Dictionary_2_System_Guid_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146F4D0, bool, Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D1F0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D2E0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D380, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D1B0, void, Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146F5E0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, KeyValuePair_2_System_Guid_System_Object_, Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D3D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Guid_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Guid_System_Object_ * __this, Dictionary_2_System_Guid_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Guid_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Guid_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146F810, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Guid_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Guid_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D560, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Guid_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Guid_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D4E0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Guid_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Guid_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, Guid, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Guid_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Guid_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Guid_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Guid_System_Object_ * __this, Dictionary_2_System_Guid_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Guid_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Guid_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D620, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Guid_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Guid_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Guid_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Guid_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Guid_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Guid_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Guid_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Guid_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146F8A0, void, Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_UInt32___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_UInt32_ * __this, Dictionary_2_System_Guid_System_UInt32_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_UInt32__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146F930, bool, Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_UInt32__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146FC50, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_UInt32__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D2E0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_UInt32__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146FD90, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_UInt32__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146FC10, void, Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_UInt32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146FA00, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_UInt32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146B4C0, KeyValuePair_2_System_Guid_System_UInt32_, Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_UInt32__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D3D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Guid_System_UInt32___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Guid_System_UInt32_ * __this, Dictionary_2_System_Guid_System_UInt32_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Guid_System_UInt32__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Guid_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146FE30, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Guid_System_UInt32__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Guid_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D560, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Guid_System_UInt32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Guid_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D4E0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Guid_System_UInt32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Guid_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, Guid, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Guid_System_UInt32__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Guid_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Guid_System_UInt32___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Guid_System_UInt32_ * __this, Dictionary_2_System_Guid_System_UInt32_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Guid_System_UInt32__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Guid_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146FEC0, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Guid_System_UInt32__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Guid_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Guid_System_UInt32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Guid_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Guid_System_UInt32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Guid_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, uint32_t, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Guid_System_UInt32__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Guid_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146CD70, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object_ * __this, Dictionary_2_UnityEngine_Hash128_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146F4D0, bool, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D1F0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D2E0, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D380, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D1B0, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146FF50, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, KeyValuePair_2_UnityEngine_Hash128_System_Object_, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D3D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object_ * __this, Dictionary_2_UnityEngine_Hash128_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146F810, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D560, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D4E0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, Hash128, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object_ * __this, Dictionary_2_UnityEngine_Hash128_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D620, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Hash128_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01470180, void, Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32___ctor, (Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32_ * __this, Dictionary_2_Pathfinding_Int2_System_Int32_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32__Dispose, (Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01470200, bool, Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01470510, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01470650, Object *, Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014706F0, Object *, Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014704D0, void, Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014702D0, Object *, Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C39A10, KeyValuePair_2_Pathfinding_Int2_System_Int32_, Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32__get_Current, (Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32_ * __this, Dictionary_2_Pathfinding_Int2_System_Int32_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01470790, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01470820, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Int2, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32_ * __this, Dictionary_2_Pathfinding_Int2_System_Int32_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014708A0, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, int32_t, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32___ctor, (Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32_ * __this, Dictionary_2_Pathfinding_Int3_System_Int32_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32__Dispose, (Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01470930, bool, Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01470C40, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01470D80, Object *, Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01470E30, Object *, Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01470A30, Object *, Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, KeyValuePair_2_Pathfinding_Int3_System_Int32_, Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32__get_Current, (Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01470ED0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32_ * __this, Dictionary_2_Pathfinding_Int3_System_Int32_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01470F50, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01471070, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01470FF0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C39A10, Int3, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32_ * __this, Dictionary_2_Pathfinding_Int3_System_Int32_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014710B0, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, int32_t, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01470180, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ * __this, Dictionary_2_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01471140, bool, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01471420, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01471600, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014704D0, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01471220, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C39A10, KeyValuePair_2_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ * __this, Dictionary_2_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014716A0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, int32_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ * __this, Dictionary_2_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01471730, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01470820, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, DynamicHeightVirtualizationController_1_T_ContentHeightCacheInfo_System_Object_, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014717C0, void, SortedList_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2___ctor, (SortedList_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2_ * __this, SortedList_2_System_Int32_System_ValueTuple_2__4 * sortedList, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x01471850, void, SortedList_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2__Dispose, (SortedList_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014719A0, bool, SortedList_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2__MoveNext, (SortedList_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21D68, SortedList_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2__MoveNext__MethodInfo); +DO_APP_FUNC(0x01471BB0, DictionaryEntry, SortedList_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2__System_Collections_IDictionaryEnumerator_get_Entry, (SortedList_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21D60, SortedList_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2__System_Collections_IDictionaryEnumerator_get_Entry__MethodInfo); +DO_APP_FUNC(0x01471870, Object *, SortedList_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2__System_Collections_IDictionaryEnumerator_get_Key, (SortedList_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21D70, SortedList_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2__System_Collections_IDictionaryEnumerator_get_Key__MethodInfo); +DO_APP_FUNC(0x014720D0, Object *, SortedList_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2__System_Collections_IDictionaryEnumerator_get_Value, (SortedList_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21D80, SortedList_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2__System_Collections_IDictionaryEnumerator_get_Value__MethodInfo); +DO_APP_FUNC(0x01472210, void, SortedList_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2__System_Collections_IEnumerator_Reset, (SortedList_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21D78, SortedList_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x01471E00, Object *, SortedList_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2__System_Collections_IEnumerator_get_Current, (SortedList_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21D88, SortedList_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x01471D60, KeyValuePair_2_System_Int32_System_ValueTuple_2__3, SortedList_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2__get_Current, (SortedList_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014722A0, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2_ * __this, Dictionary_2_System_Int32_System_ValueTuple_2_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01472330, bool, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014726D0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01472810, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01472690, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01472440, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01446510, KeyValuePair_2_System_Int32_System_ValueTuple_2__2, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2_ * __this, Dictionary_2_System_Int32_System_ValueTuple_2_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014728C0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, int32_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146F250, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2_ * __this, Dictionary_2_System_Int32_System_ValueTuple_2_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01472950, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146F3F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146F370, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int_, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E1E0, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Boolean___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Boolean_ * __this, Dictionary_2_System_Int32_System_Boolean_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Boolean__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014729F0, bool, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Boolean__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01472CD0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Boolean__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Boolean__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01472E00, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Boolean__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E540, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Boolean__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01472AD0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Boolean__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, KeyValuePair_2_System_Int32_System_Boolean_, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Boolean__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Boolean___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Boolean_ * __this, Dictionary_2_System_Int32_System_Boolean_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Boolean__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01472EA0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Boolean__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Boolean__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Boolean__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, int32_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Boolean__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DF70, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Boolean___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Boolean_ * __this, Dictionary_2_System_Int32_System_Boolean_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Boolean__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01472F20, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Boolean__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E100, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Boolean__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E080, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Boolean__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD20, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Boolean__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E1E0, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ByteEnum___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ByteEnum_ * __this, Dictionary_2_System_Int32_System_ByteEnum_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ByteEnum__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ByteEnum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014729F0, bool, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ByteEnum__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ByteEnum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01472CD0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ByteEnum__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ByteEnum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ByteEnum__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ByteEnum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01472E00, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ByteEnum__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ByteEnum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E540, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ByteEnum__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ByteEnum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01472FA0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ByteEnum__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ByteEnum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, KeyValuePair_2_System_Int32_System_ByteEnum_, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ByteEnum__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_ByteEnum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_ByteEnum___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_ByteEnum_ * __this, Dictionary_2_System_Int32_System_ByteEnum_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_ByteEnum__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_ByteEnum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01472EA0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_ByteEnum__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_ByteEnum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_ByteEnum__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_ByteEnum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_ByteEnum__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_ByteEnum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, int32_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_ByteEnum__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_ByteEnum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DF70, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_ByteEnum___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_ByteEnum_ * __this, Dictionary_2_System_Int32_System_ByteEnum_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_ByteEnum__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_ByteEnum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01472F20, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_ByteEnum__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_ByteEnum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E100, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_ByteEnum__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_ByteEnum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E080, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_ByteEnum__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_ByteEnum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD20, ByteEnum__Enum, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_ByteEnum__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_ByteEnum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E1E0, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Char___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Char_ * __this, Dictionary_2_System_Int32_System_Char_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Char__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014731A0, bool, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Char__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01473480, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Char__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Char__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014735C0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Char__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E540, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Char__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01473280, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Char__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, KeyValuePair_2_System_Int32_System_Char_, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Char__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Char___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Char_ * __this, Dictionary_2_System_Int32_System_Char_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Char__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01472EA0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Char__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Char__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Char__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, int32_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Char__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01473660, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Char___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Char_ * __this, Dictionary_2_System_Int32_System_Char_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Char__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014736E0, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Char__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014737E0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Char__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01473760, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Char__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0098C910, uint16_t, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Char__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01473820, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, Dictionary_2_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014738B0, bool, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01473D30, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01473E80, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01473CE0, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01473A10, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438C60, KeyValuePair_2_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, Dictionary_2_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01473F40, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, int32_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01473FC0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, Dictionary_2_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01474050, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01474190, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01474100, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143BE80, DiagnosticEvent, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E1E0, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int16___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int16_ * __this, Dictionary_2_System_Int32_System_Int16_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int16__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014731A0, bool, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int16__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01473480, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int16__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int16__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014735C0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int16__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E540, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int16__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014741D0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int16__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, KeyValuePair_2_System_Int32_System_Int16_, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int16__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int16___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int16_ * __this, Dictionary_2_System_Int32_System_Int16_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int16__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01472EA0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int16__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int16__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int16__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, int32_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int16__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01473660, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int16___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int16_ * __this, Dictionary_2_System_Int32_System_Int16_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int16__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014736E0, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int16__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014737E0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int16__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01473760, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int16__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0098C910, int16_t, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int16__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3_ * __this, Dictionary_2_System_Int32_Pathfinding_Int3_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014743D0, bool, Dictionary_2_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014746F0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01474830, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014744D0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_Int32_Pathfinding_Int3_, Dictionary_2_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3_ * __this, Dictionary_2_System_Int32_Pathfinding_Int3_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014748E0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, int32_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01470ED0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3_ * __this, Dictionary_2_System_Int32_Pathfinding_Int3_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01474970, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01471070, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01470FF0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C39A10, Int3, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_Pathfinding_Int3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01474A10, void, ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32___ctor, (ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32_ * __this, ADictionary_2_System_Int32_System_Int32_ * param_0000c5fe, int32_t param_0000c5ff, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32__Dispose, (ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01474A90, bool, ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32__MoveNext, (ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21D58, ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32__MoveNext__MethodInfo); +DO_APP_FUNC(0x01474E90, DictionaryEntry, ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32__System_Collections_IDictionaryEnumerator_get_Entry, (ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21D40, ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32__System_Collections_IDictionaryEnumerator_get_Entry__MethodInfo); +DO_APP_FUNC(0x01475000, Object *, ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32__System_Collections_IDictionaryEnumerator_get_Key, (ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21D38, ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32__System_Collections_IDictionaryEnumerator_get_Key__MethodInfo); +DO_APP_FUNC(0x014750E0, Object *, ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32__System_Collections_IDictionaryEnumerator_get_Value, (ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21D28, ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32__System_Collections_IDictionaryEnumerator_get_Value__MethodInfo); +DO_APP_FUNC(0x01474E10, void, ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32__System_Collections_IEnumerator_Reset, (ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21D48, ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x01474BE0, Object *, ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32__System_Collections_IEnumerator_get_Current, (ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21D50, ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x003BB3C0, KeyValuePair_2_System_Int32_System_Int32_, ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32__get_Current, (ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E1E0, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32_ * __this, Dictionary_2_System_Int32_System_Int32_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB928, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32__Dispose__MethodInfo); +DO_APP_FUNC(0x014751C0, bool, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB8F8, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32__MoveNext__MethodInfo); +DO_APP_FUNC(0x01475490, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E6B0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E540, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01475290, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, KeyValuePair_2_System_Int32_System_Int32_, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB8F0, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32__get_Current__MethodInfo); +DO_APP_FUNC(0x014755C0, void, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32___ctor, (ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32_ * __this, ADictionary_2_System_Int32_System_Int32_ * param_0000c608, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32__Dispose, (ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01475640, bool, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32__MoveNext, (ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21D20, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32__MoveNext__MethodInfo); +DO_APP_FUNC(0x014757E0, void, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32__System_Collections_IEnumerator_Reset, (ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21D10, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x01475720, Object *, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32__System_Collections_IEnumerator_get_Current, (ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21D18, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x003BCD50, int32_t, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32__get_Current, (ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014755C0, void, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32___ctor, (ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32_ * __this, ADictionary_2_System_Int32_System_Int32_ * param_0000c611, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32__Dispose, (ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01475860, bool, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32__MoveNext, (ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21D08, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32__MoveNext__MethodInfo); +DO_APP_FUNC(0x01475A00, void, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32__System_Collections_IEnumerator_Reset, (ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21D30, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x01475940, Object *, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32__System_Collections_IEnumerator_get_Current, (ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21D00, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x003BCD50, int32_t, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32__get_Current, (ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32_ * __this, Dictionary_2_System_Int32_System_Int32_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0E38, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32__Dispose__MethodInfo); +DO_APP_FUNC(0x01472EA0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0E20, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32__MoveNext__MethodInfo); +DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, int32_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0E28, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32__get_Current__MethodInfo); +DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32_ * __this, Dictionary_2_System_Int32_System_Int32_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E850, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, int32_t, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E1E0, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32Enum___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32Enum_ * __this, Dictionary_2_System_Int32_System_Int32Enum_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32Enum__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014751C0, bool, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32Enum__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01475490, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32Enum__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32Enum__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E6B0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32Enum__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E540, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32Enum__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01475A80, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32Enum__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, KeyValuePair_2_System_Int32_System_Int32Enum_, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32Enum__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32Enum___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32Enum_ * __this, Dictionary_2_System_Int32_System_Int32Enum_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32Enum__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01472EA0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32Enum__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32Enum__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32Enum__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, int32_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32Enum__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32Enum___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32Enum_ * __this, Dictionary_2_System_Int32_System_Int32Enum_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32Enum__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E850, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32Enum__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32Enum__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32Enum__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, Int32Enum__Enum, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32Enum__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int64___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int64_ * __this, Dictionary_2_System_Int32_System_Int64_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int64__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01475C80, bool, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int64__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01475F60, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int64__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int64__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014760A0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int64__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int64__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01475D60, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int64__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_Int32_System_Int64_, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int64__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int64___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int64_ * __this, Dictionary_2_System_Int32_System_Int64_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int64__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014748E0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int64__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int64__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int64__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, int32_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int64__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int64___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int64_ * __this, Dictionary_2_System_Int32_System_Int64_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int64__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01476140, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int64__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int64__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01470820, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int64__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, int64_t, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int64__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014761D0, void, ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object___ctor, (ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, ADictionary_2_System_Int32_System_Object_ * param_0000c5fe, int32_t param_0000c5ff, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object__Dispose, (ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01476250, bool, ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object__MoveNext, (ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D258F0, ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object__MoveNext__MethodInfo); +DO_APP_FUNC(0x014766A0, DictionaryEntry, ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D258D8, ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IDictionaryEnumerator_get_Entry__MethodInfo); +DO_APP_FUNC(0x014767D0, Object *, ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D258D0, ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IDictionaryEnumerator_get_Key__MethodInfo); +DO_APP_FUNC(0x014768B0, Object *, ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D258C8, ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IDictionaryEnumerator_get_Value__MethodInfo); +DO_APP_FUNC(0x01476620, void, ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IEnumerator_Reset, (ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D258E0, ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x014763E0, Object *, ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IEnumerator_get_Current, (ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D258E8, ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_Int32_System_Object_, ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object__get_Current, (ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, Dictionary_2_System_Int32_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01476940, bool, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01476C50, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DF20, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01476A40, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_Int32_System_Object_, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01476D40, void, IndexedDictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object___ctor, (IndexedDictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, IndexedDictionary_2_System_Int32_System_Object_ * param_0000c64c, int32_t param_0000c64d, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, IndexedDictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object__Dispose, (IndexedDictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01476E40, bool, IndexedDictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object__MoveNext, (IndexedDictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25910, IndexedDictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object__MoveNext__MethodInfo); +DO_APP_FUNC(0x01477410, DictionaryEntry, IndexedDictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (IndexedDictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D258F8, IndexedDictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IDictionaryEnumerator_get_Entry__MethodInfo); +DO_APP_FUNC(0x01477550, Object *, IndexedDictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (IndexedDictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25890, IndexedDictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IDictionaryEnumerator_get_Key__MethodInfo); +DO_APP_FUNC(0x01477640, Object *, IndexedDictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (IndexedDictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25888, IndexedDictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IDictionaryEnumerator_get_Value__MethodInfo); +DO_APP_FUNC(0x01477310, void, IndexedDictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IEnumerator_Reset, (IndexedDictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25900, IndexedDictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x014770C0, Object *, IndexedDictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IEnumerator_get_Current, (IndexedDictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25908, IndexedDictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_Int32_System_Object_, IndexedDictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object__get_Current, (IndexedDictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014755C0, void, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object___ctor, (ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, ADictionary_2_System_Int32_System_Object_ * param_0000c608, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object__Dispose, (ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014776D0, bool, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object__MoveNext, (ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25880, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object__MoveNext__MethodInfo); +DO_APP_FUNC(0x01477870, void, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IEnumerator_Reset, (ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25870, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x014777B0, Object *, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IEnumerator_get_Current, (ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25878, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x003BCD50, int32_t, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object__get_Current, (ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014778F0, void, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object___ctor, (ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, ADictionary_2_System_Int32_System_Object_ * param_0000c611, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object__Dispose, (ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01477970, bool, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object__MoveNext, (ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25868, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object__MoveNext__MethodInfo); +DO_APP_FUNC(0x01477AF0, void, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IEnumerator_Reset, (ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25858, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x01477A70, Object *, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IEnumerator_get_Current, (ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25860, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x003BB3C0, Object *, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object__get_Current, (ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, Dictionary_2_System_Int32_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014748E0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, int32_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, Dictionary_2_System_Int32_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E140, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01477B70, void, IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object___ctor, (IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, IndexedDictionary_2_System_Int32_System_Object_ * param_0000c656, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object__Dispose, (IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01477C60, bool, IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object__MoveNext, (IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D258C0, IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object__MoveNext__MethodInfo); +DO_APP_FUNC(0x01477E80, void, IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IEnumerator_Reset, (IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D258B0, IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x01477DB0, Object *, IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IEnumerator_get_Current, (IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D258B8, IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x003BCD50, int32_t, IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object__get_Current, (IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01477F80, void, IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object___ctor, (IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, IndexedDictionary_2_System_Int32_System_Object_ * param_0000c65f, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object__Dispose, (IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01478070, bool, IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object__MoveNext, (IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D258A8, IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object__MoveNext__MethodInfo); +DO_APP_FUNC(0x014782A0, void, IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IEnumerator_Reset, (IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25898, IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x01478220, Object *, IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IEnumerator_get_Current, (IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D258A0, IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x003BB3C0, Object *, IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object__get_Current, (IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146CD70, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam_ * __this, Dictionary_2_System_Int32_PlayerFlashlightBeam_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014783A0, bool, Dictionary_2_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01478730, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01478870, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D1B0, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014784B0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, KeyValuePair_2_System_Int32_PlayerFlashlightBeam_, Dictionary_2_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam_ * __this, Dictionary_2_System_Int32_PlayerFlashlightBeam_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01478910, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, int32_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D3D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam_ * __this, Dictionary_2_System_Int32_PlayerFlashlightBeam_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01478990, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D560, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D4E0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, PlayerFlashlightBeam, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146F8A0, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout_ * __this, Dictionary_2_System_Int32_UnityEngine_RenderInstancedDataLayout_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01478A20, bool, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01478D20, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01478E60, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146FC10, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01478B00, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146B4C0, KeyValuePair_2_System_Int32_UnityEngine_RenderInstancedDataLayout_, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout_ * __this, Dictionary_2_System_Int32_UnityEngine_RenderInstancedDataLayout_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01478F00, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, int32_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D3D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout_ * __this, Dictionary_2_System_Int32_UnityEngine_RenderInstancedDataLayout_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01478F90, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D560, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D4E0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, RenderInstancedDataLayout, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E1E0, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Single___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Single_ * __this, Dictionary_2_System_Int32_System_Single_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Single__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0408, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Single__Dispose__MethodInfo); +DO_APP_FUNC(0x01479020, bool, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Single__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0380, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Single__MoveNext__MethodInfo); +DO_APP_FUNC(0x01479300, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Single__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Single__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01479440, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Single__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E540, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Single__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014790F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Single__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, KeyValuePair_2_System_Int32_System_Single_, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Single__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0388, Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Single__get_Current__MethodInfo); +DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Single___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Single_ * __this, Dictionary_2_System_Int32_System_Single_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Single__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0328, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Single__Dispose__MethodInfo); +DO_APP_FUNC(0x01472EA0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Single__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB02A0, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Single__MoveNext__MethodInfo); +DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Single__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Single__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, int32_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Single__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB02B0, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Single__get_Current__MethodInfo); +DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Single___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Single_ * __this, Dictionary_2_System_Int32_System_Single_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Single__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E850, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Single__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Single__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014794E0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Single__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC3C0, float, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Single__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146CD70, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem_ * __this, Dictionary_2_System_Int32_UnityEngine_UIElements_TreeItem_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014783A0, bool, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01478730, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01478870, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D1B0, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01479560, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, KeyValuePair_2_System_Int32_UnityEngine_UIElements_TreeItem_, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem_ * __this, Dictionary_2_System_Int32_UnityEngine_UIElements_TreeItem_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01478910, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, int32_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D3D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem_ * __this, Dictionary_2_System_Int32_UnityEngine_UIElements_TreeItem_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01478990, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D560, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D4E0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, TreeItem, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_TreeItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01470180, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int_ * __this, Dictionary_2_System_Int32_UnityEngine_Vector2Int_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C97D80, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int__Dispose__MethodInfo); -DO_APP_FUNC(0x01471140, bool, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01471140, bool, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C97D30, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int__MoveNext__MethodInfo); -DO_APP_FUNC(0x01471420, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01471600, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014704D0, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014797E0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C39A10, KeyValuePair_2_System_Int32_UnityEngine_Vector2Int_, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01471420, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01471600, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014704D0, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014797E0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C39A10, KeyValuePair_2_System_Int32_UnityEngine_Vector2Int_, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C97D48, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int__get_Current__MethodInfo); -DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int___Boxed * __this, Dictionary_2_System_Int32_UnityEngine_Vector2Int_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014716A0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, int32_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int___Boxed * __this, Dictionary_2_System_Int32_UnityEngine_Vector2Int_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01471730, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01470820, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Vector2Int, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146F8A0, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4___Boxed * __this, Dictionary_2_System_Int32_UnityEngine_Vector4_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014799E0, bool, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01478D20, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01478E60, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146FC10, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01479AC0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146B4C0, KeyValuePair_2_System_Int32_UnityEngine_Vector4_, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4___Boxed * __this, Dictionary_2_System_Int32_UnityEngine_Vector4_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01478F00, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, int32_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D3D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4___Boxed * __this, Dictionary_2_System_Int32_UnityEngine_Vector4_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01478F90, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D560, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D4E0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, Vector4, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01479CE0, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___Boxed * __this, Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01479D70, bool, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147A1A0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147A2E0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147A160, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01479EB0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438FB0, KeyValuePair_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___Boxed * __this, Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147A390, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, int32_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147A420, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___Boxed * __this, Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147A4A0, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147A5D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147A550, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01204560, TextResourceManager_FontAssetRef, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E1E0, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum___Boxed * __this, Dictionary_2_System_Int32Enum_System_Int32Enum_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014751C0, bool, Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01475490, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E6B0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E540, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147A610, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, KeyValuePair_2_System_Int32Enum_System_Int32Enum_, Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum___Boxed * __this, Dictionary_2_System_Int32Enum_System_Int32Enum_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01472EA0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, Int32Enum__Enum, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum___Boxed * __this, Dictionary_2_System_Int32Enum_System_Int32Enum_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E850, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, Int32Enum__Enum, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Object___Boxed * __this, Dictionary_2_System_Int32Enum_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01476940, bool, Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01476C50, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DF20, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147A810, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_Int32Enum_System_Object_, Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Object___Boxed * __this, Dictionary_2_System_Int32Enum_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014748E0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, Int32Enum__Enum, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Object___Boxed * __this, Dictionary_2_System_Int32Enum_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E140, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147AA20, void, Dictionary_2_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle___Boxed * __this, Dictionary_2_System_Int64_UnityEngine_UIElements_ComputedStyle_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147AAC0, bool, Dictionary_2_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147B030, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01470650, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147B1B0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147AFE0, void, Dictionary_2_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147AC90, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01467A50, KeyValuePair_2_System_Int64_UnityEngine_UIElements_ComputedStyle_, Dictionary_2_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle___Boxed * __this, Dictionary_2_System_Int64_UnityEngine_UIElements_ComputedStyle_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147B290, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01470820, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, int64_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147B320, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle___Boxed * __this, Dictionary_2_System_Int64_UnityEngine_UIElements_ComputedStyle_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147B3C0, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147B560, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147B4A0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143C9F0, ComputedStyle, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_System_Int64_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Int64_System_Object___Boxed * __this, Dictionary_2_System_Int64_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Int64_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Int64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147B5B0, bool, Dictionary_2_TKey_TValue_Enumerator_System_Int64_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Int64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147B8B0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Int64_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Int64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01470650, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int64_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Int64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DF20, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int64_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Int64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_System_Int64_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Int64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147B6B0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int64_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_Int64_System_Object_, Dictionary_2_TKey_TValue_Enumerator_System_Int64_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int64_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int64_System_Object___Boxed * __this, Dictionary_2_System_Int64_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int64_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147B9A0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int64_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int64_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01470820, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int64_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, int64_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int64_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int64_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int64_System_Object___Boxed * __this, Dictionary_2_System_Int64_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int64_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E140, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int64_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int64_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int64_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int64_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_System_IntPtr_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_IntPtr_System_Object___Boxed * __this, Dictionary_2_System_IntPtr_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_IntPtr_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_IntPtr_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147B5B0, bool, Dictionary_2_TKey_TValue_Enumerator_System_IntPtr_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_IntPtr_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147B8B0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_IntPtr_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_IntPtr_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01470650, Object *, Dictionary_2_TKey_TValue_Enumerator_System_IntPtr_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_IntPtr_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DF20, Object *, Dictionary_2_TKey_TValue_Enumerator_System_IntPtr_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_IntPtr_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_System_IntPtr_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_IntPtr_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147BA30, Object *, Dictionary_2_TKey_TValue_Enumerator_System_IntPtr_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_IntPtr_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_IntPtr_System_Object_, Dictionary_2_TKey_TValue_Enumerator_System_IntPtr_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_IntPtr_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_IntPtr_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_IntPtr_System_Object___Boxed * __this, Dictionary_2_System_IntPtr_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_IntPtr_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_IntPtr_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147B9A0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_IntPtr_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_IntPtr_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_IntPtr_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_IntPtr_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01470820, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_IntPtr_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_IntPtr_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, void *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_IntPtr_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_IntPtr_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_IntPtr_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_IntPtr_System_Object___Boxed * __this, Dictionary_2_System_IntPtr_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_IntPtr_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_IntPtr_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E140, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_IntPtr_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_IntPtr_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_IntPtr_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_IntPtr_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_IntPtr_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_IntPtr_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_IntPtr_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_IntPtr_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146EBA0, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString___ctor, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString___Boxed * __this, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__Dispose, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147BC30, bool, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147C040, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D2E0, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147C180, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146F010, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147BD50, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01204560, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D3D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString___Boxed * __this, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147C220, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D560, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D4E0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, InternedString, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D3D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString___Boxed * __this, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147C2C0, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D560, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D4E0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, InternedString, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146CD70, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object___Boxed * __this, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146CE00, bool, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D1F0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D2E0, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D380, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D1B0, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147C360, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object_, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D3D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object___Boxed * __this, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D450, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D560, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D4E0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, InternedString, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object___Boxed * __this, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D620, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146EBA0, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout___ctor, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout___Boxed * __this, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__Dispose, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147BC30, bool, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147C040, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D2E0, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147C180, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146F010, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147C5F0, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01204560, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D3D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout___Boxed * __this, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147C220, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D560, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D4E0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, InternedString, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D3D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout___Boxed * __this, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147C2C0, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D560, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D4E0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, InputControlLayout_Collection_PrecompiledLayout, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object___Boxed * __this, Dictionary_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147C8E0, bool, Dictionary_2_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01476C50, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DF20, Object *, Dictionary_2_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147C9E0, Object *, Dictionary_2_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, KeyValuePair_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_, Dictionary_2_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object___Boxed * __this, Dictionary_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014748E0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, IpQCkqlgJLyrFpAOyBfUxXQpJsWK, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object___Boxed * __this, Dictionary_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E140, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object___Boxed * __this, Dictionary_2_Photon_Bolt_NetworkId_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147CBF0, bool, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147B8B0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01470650, Object *, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DF20, Object *, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147CCF0, Object *, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, KeyValuePair_2_Photon_Bolt_NetworkId_System_Object_, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object___Boxed * __this, Dictionary_2_Photon_Bolt_NetworkId_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147B9A0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01470820, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, NetworkId, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object___Boxed * __this, Dictionary_2_Photon_Bolt_NetworkId_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E140, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01479CE0, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___Boxed * __this, Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147CEF0, bool, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147D2F0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147D3F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147A2E0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147A160, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147D020, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438FB0, KeyValuePair_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___Boxed * __this, Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147D440, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147A420, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___Boxed * __this, Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147D4E0, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147A5D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147A550, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01204560, AsyncOperationHandle_1_System_Object_, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int_ * __this, Dictionary_2_System_Int32_UnityEngine_Vector2Int_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014716A0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, int32_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int_ * __this, Dictionary_2_System_Int32_UnityEngine_Vector2Int_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01471730, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01470820, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Vector2Int, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146F8A0, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4_ * __this, Dictionary_2_System_Int32_UnityEngine_Vector4_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014799E0, bool, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01478D20, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01478E60, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146FC10, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01479AC0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146B4C0, KeyValuePair_2_System_Int32_UnityEngine_Vector4_, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4_ * __this, Dictionary_2_System_Int32_UnityEngine_Vector4_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01478F00, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, int32_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D3D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4_ * __this, Dictionary_2_System_Int32_UnityEngine_Vector4_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01478F90, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D560, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D4E0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, Vector4, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01479CE0, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * __this, Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01479D70, bool, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147A1A0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147A2E0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147A160, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01479EB0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438FB0, KeyValuePair_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * __this, Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147A390, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, int32_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147A420, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * __this, Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147A4A0, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147A5D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147A550, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01204560, TextResourceManager_FontAssetRef, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E1E0, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum_ * __this, Dictionary_2_System_Int32Enum_System_Int32Enum_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014751C0, bool, Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01475490, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E6B0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E540, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147A610, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, KeyValuePair_2_System_Int32Enum_System_Int32Enum_, Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum_ * __this, Dictionary_2_System_Int32Enum_System_Int32Enum_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01472EA0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, Int32Enum__Enum, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum_ * __this, Dictionary_2_System_Int32Enum_System_Int32Enum_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E850, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, Int32Enum__Enum, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Object_ * __this, Dictionary_2_System_Int32Enum_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01476940, bool, Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01476C50, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DF20, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147A810, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_Int32Enum_System_Object_, Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Object_ * __this, Dictionary_2_System_Int32Enum_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014748E0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, Int32Enum__Enum, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Object_ * __this, Dictionary_2_System_Int32Enum_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E140, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32Enum_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147AA20, void, Dictionary_2_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle_ * __this, Dictionary_2_System_Int64_UnityEngine_UIElements_ComputedStyle_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147AAC0, bool, Dictionary_2_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147B030, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01470650, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147B1B0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147AFE0, void, Dictionary_2_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147AC90, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01467A50, KeyValuePair_2_System_Int64_UnityEngine_UIElements_ComputedStyle_, Dictionary_2_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle_ * __this, Dictionary_2_System_Int64_UnityEngine_UIElements_ComputedStyle_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147B290, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01470820, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, int64_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147B320, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle_ * __this, Dictionary_2_System_Int64_UnityEngine_UIElements_ComputedStyle_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147B3C0, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147B560, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147B4A0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143C9F0, ComputedStyle, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_System_Int64_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Int64_System_Object_ * __this, Dictionary_2_System_Int64_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Int64_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Int64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147B5B0, bool, Dictionary_2_TKey_TValue_Enumerator_System_Int64_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Int64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147B8B0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Int64_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Int64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01470650, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int64_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Int64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DF20, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int64_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Int64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_System_Int64_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Int64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147B6B0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Int64_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_Int64_System_Object_, Dictionary_2_TKey_TValue_Enumerator_System_Int64_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Int64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int64_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int64_System_Object_ * __this, Dictionary_2_System_Int64_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int64_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147B9A0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int64_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int64_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01470820, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int64_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, int64_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int64_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int64_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int64_System_Object_ * __this, Dictionary_2_System_Int64_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int64_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E140, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int64_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int64_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int64_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int64_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_System_IntPtr_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_IntPtr_System_Object_ * __this, Dictionary_2_System_IntPtr_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_IntPtr_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_IntPtr_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147B5B0, bool, Dictionary_2_TKey_TValue_Enumerator_System_IntPtr_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_IntPtr_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147B8B0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_IntPtr_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_IntPtr_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01470650, Object *, Dictionary_2_TKey_TValue_Enumerator_System_IntPtr_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_IntPtr_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DF20, Object *, Dictionary_2_TKey_TValue_Enumerator_System_IntPtr_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_IntPtr_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_System_IntPtr_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_IntPtr_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147BA30, Object *, Dictionary_2_TKey_TValue_Enumerator_System_IntPtr_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_IntPtr_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_IntPtr_System_Object_, Dictionary_2_TKey_TValue_Enumerator_System_IntPtr_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_IntPtr_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_IntPtr_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_IntPtr_System_Object_ * __this, Dictionary_2_System_IntPtr_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_IntPtr_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_IntPtr_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147B9A0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_IntPtr_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_IntPtr_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_IntPtr_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_IntPtr_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01470820, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_IntPtr_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_IntPtr_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, void *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_IntPtr_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_IntPtr_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_IntPtr_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_IntPtr_System_Object_ * __this, Dictionary_2_System_IntPtr_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_IntPtr_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_IntPtr_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E140, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_IntPtr_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_IntPtr_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_IntPtr_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_IntPtr_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_IntPtr_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_IntPtr_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_IntPtr_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_IntPtr_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146EBA0, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString___ctor, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_ * __this, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__Dispose, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147BC30, bool, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147C040, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D2E0, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147C180, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146F010, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147BD50, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01204560, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D3D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_ * __this, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147C220, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D560, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D4E0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, InternedString, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D3D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_ * __this, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147C2C0, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D560, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D4E0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, InternedString, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146CD70, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object_ * __this, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146CE00, bool, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D1F0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D2E0, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D380, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D1B0, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147C360, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object_, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D3D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object_ * __this, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D450, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D560, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D4E0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, InternedString, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object_ * __this, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D620, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146EBA0, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout___ctor, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ * __this, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__Dispose, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147BC30, bool, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147C040, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D2E0, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147C180, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146F010, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147C5F0, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01204560, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D3D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ * __this, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147C220, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D560, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D4E0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, InternedString, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D3D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ * __this, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147C2C0, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D560, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D4E0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, InputControlLayout_Collection_PrecompiledLayout, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_ * __this, Dictionary_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147C8E0, bool, Dictionary_2_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01476C50, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DF20, Object *, Dictionary_2_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147C9E0, Object *, Dictionary_2_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, KeyValuePair_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_, Dictionary_2_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_ * __this, Dictionary_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014748E0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, IpQCkqlgJLyrFpAOyBfUxXQpJsWK, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_ * __this, Dictionary_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E140, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object_ * __this, Dictionary_2_Photon_Bolt_NetworkId_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147CBF0, bool, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147B8B0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01470650, Object *, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DF20, Object *, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147CCF0, Object *, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, KeyValuePair_2_Photon_Bolt_NetworkId_System_Object_, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object_ * __this, Dictionary_2_Photon_Bolt_NetworkId_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147B9A0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01470820, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, NetworkId, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object_ * __this, Dictionary_2_Photon_Bolt_NetworkId_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E140, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01479CE0, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * __this, Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147CEF0, bool, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147D2F0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147D3F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147A2E0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147A160, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147D020, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438FB0, KeyValuePair_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * __this, Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147D440, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147A420, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * __this, Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147D4E0, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147A5D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147A550, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01204560, AsyncOperationHandle_1_System_Object_, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01439B10, void, OneOrMore_2_TValue_TList_Enumerator_System_Object_ReadOnlyArray_1_System_Object___ctor, (OneOrMore_2_TValue_TList_Enumerator_System_Object_ReadOnlyArray_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, OneOrMore_2_TValue_TList_Enumerator_System_Object_ReadOnlyArray_1_System_Object__Dispose, (OneOrMore_2_TValue_TList_Enumerator_System_Object_ReadOnlyArray_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0147D590, bool, OneOrMore_2_TValue_TList_Enumerator_System_Object_ReadOnlyArray_1_System_Object__MoveNext, (OneOrMore_2_TValue_TList_Enumerator_System_Object_ReadOnlyArray_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01439B10, void, OneOrMore_2_TValue_TList_Enumerator_System_Object_ReadOnlyArray_1_System_Object__Reset, (OneOrMore_2_TValue_TList_Enumerator_System_Object_ReadOnlyArray_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0147D620, Object *, OneOrMore_2_TValue_TList_Enumerator_System_Object_ReadOnlyArray_1_System_Object__System_Collections_IEnumerator_get_Current, (OneOrMore_2_TValue_TList_Enumerator_System_Object_ReadOnlyArray_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0147D600, Object *, OneOrMore_2_TValue_TList_Enumerator_System_Object_ReadOnlyArray_1_System_Object__get_Current, (OneOrMore_2_TValue_TList_Enumerator_System_Object_ReadOnlyArray_1_System_Object_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146EBA0, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Boxed * __this, Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147D650, bool, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147DA20, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147D3F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147DB20, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146F010, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147D770, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01204560, KeyValuePair_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Boxed * __this, Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147DBD0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146F250, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Boxed * __this, Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147DC70, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146F3F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146F370, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, AsyncOperationHandle, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Boolean___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Boolean___Boxed * __this, Dictionary_2_System_Object_System_Boolean_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Boolean__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147DD10, bool, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Boolean__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147E020, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Boolean__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147D3F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Boolean__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147E110, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Boolean__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Boolean__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147DE10, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Boolean__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_Object_System_Boolean_, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Boolean__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Boolean___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Boolean___Boxed * __this, Dictionary_2_System_Object_System_Boolean_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Boolean__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147E1B0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Boolean__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Boolean__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Boolean__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Boolean__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DF70, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Boolean___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Boolean___Boxed * __this, Dictionary_2_System_Object_System_Boolean_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Boolean__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147E250, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Boolean__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E100, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Boolean__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E080, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Boolean__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD20, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Boolean__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146EBA0, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds___Boxed * __this, Dictionary_2_System_Object_UnityEngine_Bounds_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147E2E0, bool, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147DA20, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147D3F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147DB20, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146F010, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147E410, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01204560, KeyValuePair_2_System_Object_UnityEngine_Bounds_, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds___Boxed * __this, Dictionary_2_System_Object_UnityEngine_Bounds_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147DBD0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146F250, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds___Boxed * __this, Dictionary_2_System_Object_UnityEngine_Bounds_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147E680, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146F3F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146F370, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, Bounds, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Byte___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Byte___Boxed * __this, Dictionary_2_System_Object_System_Byte_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Byte__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147DD10, bool, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Byte__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147E020, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Byte__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147D3F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Byte__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147E110, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Byte__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Byte__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147E720, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Byte__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_Object_System_Byte_, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Byte__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Byte___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Byte___Boxed * __this, Dictionary_2_System_Object_System_Byte_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Byte__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147E1B0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Byte__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Byte__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Byte__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Byte__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DF70, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Byte___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Byte___Boxed * __this, Dictionary_2_System_Object_System_Byte_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Byte__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147E250, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Byte__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E100, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Byte__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E080, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Byte__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD20, uint8_t, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Byte__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147E930, void, SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Char___ctor, (SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Char___Boxed * __this, SortedDictionary_2_System_Object_System_Char_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x0147EAD0, void, SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Char__Dispose, (SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147EA40, bool, SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Char__MoveNext, (SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147EC60, void, SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Char__Reset, (SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147F260, DictionaryEntry, SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Char__System_Collections_IDictionaryEnumerator_get_Entry, (SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147F040, Object *, SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Char__System_Collections_IDictionaryEnumerator_get_Key, (SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147F130, Object *, SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Char__System_Collections_IDictionaryEnumerator_get_Value, (SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147EC60, void, SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Char__System_Collections_IEnumerator_Reset, (SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147ECF0, Object *, SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Char__System_Collections_IEnumerator_get_Current, (SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147EB40, KeyValuePair_2_System_Object_System_Char_, SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Char__get_Current, (SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147EBE0, bool, SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Char__get_NotStartedOrEnded, (SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147F420, void, SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Char___ctor, (SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Char___Boxed * __this, SortedDictionary_2_System_Object_System_Char_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x0147F510, void, SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Char__Dispose, (SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147F540, bool, SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Char__MoveNext, (SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147F6C0, void, SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Char__System_Collections_IEnumerator_Reset, (SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147F600, Object *, SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Char__System_Collections_IEnumerator_get_Current, (SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147F580, Object *, SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Char__get_Current, (SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147F420, void, SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Char___ctor, (SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Char___Boxed * __this, SortedDictionary_2_System_Object_System_Char_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x0147F510, void, SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Char__Dispose, (SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147F540, bool, SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Char__MoveNext, (SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147F6C0, void, SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Char__System_Collections_IEnumerator_Reset, (SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147F770, Object *, SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Char__System_Collections_IEnumerator_get_Current, (SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147F700, uint16_t, SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Char__get_Current, (SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146CD70, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color___Boxed * __this, Dictionary_2_System_Object_UnityEngine_Color_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147F880, bool, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147FBC0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147D3F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01478870, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D1B0, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147F990, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, KeyValuePair_2_System_Object_UnityEngine_Color_, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color___Boxed * __this, Dictionary_2_System_Object_UnityEngine_Color_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147FCB0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D3D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color___Boxed * __this, Dictionary_2_System_Object_UnityEngine_Color_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147FD40, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D560, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D4E0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, Color, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32___Boxed * __this, Dictionary_2_System_Object_UnityEngine_Color32_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147FDD0, bool, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014800D0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147D3F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014706F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147FED0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_Object_UnityEngine_Color32_, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32___Boxed * __this, Dictionary_2_System_Object_UnityEngine_Color32_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147E1B0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32___Boxed * __this, Dictionary_2_System_Object_UnityEngine_Color32_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014801C0, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, Color32, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014761D0, void, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32___ctor, (ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32___Boxed * __this, ADictionary_2_System_Object_System_Int32_ * param_0000c5fe, int32_t param_0000c5ff, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32__Dispose, (ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01480250, bool, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32__MoveNext, (ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014806A0, DictionaryEntry, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32__System_Collections_IDictionaryEnumerator_get_Entry, (ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014807D0, Object *, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32__System_Collections_IDictionaryEnumerator_get_Key, (ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01480860, Object *, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32__System_Collections_IDictionaryEnumerator_get_Value, (ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01480620, void, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32__System_Collections_IEnumerator_Reset, (ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014803E0, Object *, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32__System_Collections_IEnumerator_get_Current, (ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_Object_System_Int32_, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32__get_Current, (ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32___Boxed * __this, Dictionary_2_System_Object_System_Int32_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01480940, bool, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014800D0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147D3F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014706F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01480A40, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_Object_System_Int32_, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014778F0, void, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32___ctor, (ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32___Boxed * __this, ADictionary_2_System_Object_System_Int32_ * param_0000c608, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32__Dispose, (ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01480C40, bool, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32__MoveNext, (ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01480DC0, void, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32__System_Collections_IEnumerator_Reset, (ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01480D40, Object *, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32__System_Collections_IEnumerator_get_Current, (ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32__get_Current, (ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014755C0, void, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32___ctor, (ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32___Boxed * __this, ADictionary_2_System_Object_System_Int32_ * param_0000c611, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32__Dispose, (ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01480E40, bool, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32__MoveNext, (ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01480FE0, void, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32__System_Collections_IEnumerator_Reset, (ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01480F20, Object *, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32__System_Collections_IEnumerator_get_Current, (ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, int32_t, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32__get_Current, (ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32___Boxed * __this, Dictionary_2_System_Object_System_Int32_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147E1B0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32___Boxed * __this, Dictionary_2_System_Object_System_Int32_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014801C0, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, int32_t, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014761D0, void, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum___ctor, (ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum___Boxed * __this, ADictionary_2_System_Object_System_Int32Enum_ * param_0000c5fe, int32_t param_0000c5ff, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum__Dispose, (ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01481060, bool, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum__MoveNext, (ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014814B0, DictionaryEntry, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum__System_Collections_IDictionaryEnumerator_get_Entry, (ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014815E0, Object *, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum__System_Collections_IDictionaryEnumerator_get_Key, (ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01481670, Object *, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum__System_Collections_IDictionaryEnumerator_get_Value, (ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01481430, void, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum__System_Collections_IEnumerator_Reset, (ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014811F0, Object *, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum__System_Collections_IEnumerator_get_Current, (ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_Object_System_Int32Enum_, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum__get_Current, (ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum___Boxed * __this, Dictionary_2_System_Object_System_Int32Enum_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01480940, bool, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014800D0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147D3F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014706F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01481750, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_Object_System_Int32Enum_, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014778F0, void, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum___ctor, (ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum___Boxed * __this, ADictionary_2_System_Object_System_Int32Enum_ * param_0000c608, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum__Dispose, (ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01481950, bool, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum__MoveNext, (ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01481AD0, void, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum__System_Collections_IEnumerator_Reset, (ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01481A50, Object *, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum__System_Collections_IEnumerator_get_Current, (ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum__get_Current, (ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014755C0, void, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum___ctor, (ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum___Boxed * __this, ADictionary_2_System_Object_System_Int32Enum_ * param_0000c611, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum__Dispose, (ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01481B50, bool, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum__MoveNext, (ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01481CF0, void, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum__System_Collections_IEnumerator_Reset, (ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01481C30, Object *, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum__System_Collections_IEnumerator_get_Current, (ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, Int32Enum__Enum, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum__get_Current, (ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum___Boxed * __this, Dictionary_2_System_Object_System_Int32Enum_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147E1B0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum___Boxed * __this, Dictionary_2_System_Object_System_Int32Enum_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014801C0, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, Int32Enum__Enum, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014761D0, void, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Object___ctor, (ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, ADictionary_2_System_Object_System_Object_ * param_0000c5fe, int32_t param_0000c5ff, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__Dispose, (ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01481D70, bool, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__MoveNext, (ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01482140, DictionaryEntry, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01482220, Object *, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014822B0, Object *, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014820C0, void, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_Reset, (ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01481F00, Object *, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_get_Current, (ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_Object_System_Object_, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__get_Current, (ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146EBA0, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147D650, bool, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147DA20, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147D3F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147DB20, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146F010, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147D770, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01204560, KeyValuePair_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147DBD0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146F250, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147DC70, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146F3F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146F370, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, AsyncOperationHandle, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Boolean___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Boolean_ * __this, Dictionary_2_System_Object_System_Boolean_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Boolean__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147DD10, bool, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Boolean__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147E020, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Boolean__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147D3F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Boolean__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147E110, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Boolean__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Boolean__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147DE10, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Boolean__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_Object_System_Boolean_, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Boolean__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Boolean___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Boolean_ * __this, Dictionary_2_System_Object_System_Boolean_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Boolean__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147E1B0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Boolean__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Boolean__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Boolean__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Boolean__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DF70, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Boolean___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Boolean_ * __this, Dictionary_2_System_Object_System_Boolean_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Boolean__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147E250, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Boolean__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E100, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Boolean__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E080, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Boolean__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD20, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Boolean__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146EBA0, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds_ * __this, Dictionary_2_System_Object_UnityEngine_Bounds_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147E2E0, bool, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147DA20, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147D3F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147DB20, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146F010, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147E410, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01204560, KeyValuePair_2_System_Object_UnityEngine_Bounds_, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds_ * __this, Dictionary_2_System_Object_UnityEngine_Bounds_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147DBD0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146F250, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds_ * __this, Dictionary_2_System_Object_UnityEngine_Bounds_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147E680, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146F3F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146F370, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, Bounds, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Byte___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Byte_ * __this, Dictionary_2_System_Object_System_Byte_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Byte__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147DD10, bool, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Byte__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147E020, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Byte__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147D3F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Byte__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147E110, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Byte__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Byte__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147E720, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Byte__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_Object_System_Byte_, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Byte__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Byte___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Byte_ * __this, Dictionary_2_System_Object_System_Byte_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Byte__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147E1B0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Byte__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Byte__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Byte__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Byte__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DF70, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Byte___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Byte_ * __this, Dictionary_2_System_Object_System_Byte_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Byte__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147E250, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Byte__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E100, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Byte__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E080, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Byte__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD20, uint8_t, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Byte__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147E930, void, SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Char___ctor, (SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Char_ * __this, SortedDictionary_2_System_Object_System_Char_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x0147EAD0, void, SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Char__Dispose, (SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147EA40, bool, SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Char__MoveNext, (SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147EC60, void, SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Char__Reset, (SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147F260, DictionaryEntry, SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Char__System_Collections_IDictionaryEnumerator_get_Entry, (SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7768, SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Char__System_Collections_IDictionaryEnumerator_get_Entry__MethodInfo); +DO_APP_FUNC(0x0147F040, Object *, SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Char__System_Collections_IDictionaryEnumerator_get_Key, (SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7748, SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Char__System_Collections_IDictionaryEnumerator_get_Key__MethodInfo); +DO_APP_FUNC(0x0147F130, Object *, SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Char__System_Collections_IDictionaryEnumerator_get_Value, (SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7760, SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Char__System_Collections_IDictionaryEnumerator_get_Value__MethodInfo); +DO_APP_FUNC(0x0147EC60, void, SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Char__System_Collections_IEnumerator_Reset, (SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147ECF0, Object *, SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Char__System_Collections_IEnumerator_get_Current, (SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7740, SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Char__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x0147EB40, KeyValuePair_2_System_Object_System_Char_, SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Char__get_Current, (SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147EBE0, bool, SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Char__get_NotStartedOrEnded, (SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147F420, void, SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Char___ctor, (SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Char_ * __this, SortedDictionary_2_System_Object_System_Char_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x0147F510, void, SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Char__Dispose, (SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147F540, bool, SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Char__MoveNext, (SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147F6C0, void, SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Char__System_Collections_IEnumerator_Reset, (SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147F600, Object *, SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Char__System_Collections_IEnumerator_get_Current, (SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7750, SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Char__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x0147F580, Object *, SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Char__get_Current, (SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147F420, void, SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Char___ctor, (SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Char_ * __this, SortedDictionary_2_System_Object_System_Char_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x0147F510, void, SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Char__Dispose, (SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147F540, bool, SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Char__MoveNext, (SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147F6C0, void, SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Char__System_Collections_IEnumerator_Reset, (SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147F770, Object *, SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Char__System_Collections_IEnumerator_get_Current, (SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7758, SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Char__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x0147F700, uint16_t, SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Char__get_Current, (SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146CD70, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color_ * __this, Dictionary_2_System_Object_UnityEngine_Color_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147F880, bool, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147FBC0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147D3F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01478870, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D1B0, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147F990, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, KeyValuePair_2_System_Object_UnityEngine_Color_, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color_ * __this, Dictionary_2_System_Object_UnityEngine_Color_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147FCB0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D3D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color_ * __this, Dictionary_2_System_Object_UnityEngine_Color_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147FD40, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D560, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D4E0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, Color, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32_ * __this, Dictionary_2_System_Object_UnityEngine_Color32_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147FDD0, bool, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014800D0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147D3F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014706F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147FED0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_Object_UnityEngine_Color32_, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32_ * __this, Dictionary_2_System_Object_UnityEngine_Color32_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147E1B0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32_ * __this, Dictionary_2_System_Object_UnityEngine_Color32_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014801C0, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, Color32, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014761D0, void, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32___ctor, (ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32_ * __this, ADictionary_2_System_Object_System_Int32_ * param_0000c5fe, int32_t param_0000c5ff, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32__Dispose, (ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01480250, bool, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32__MoveNext, (ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7708, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32__MoveNext__MethodInfo); +DO_APP_FUNC(0x014806A0, DictionaryEntry, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32__System_Collections_IDictionaryEnumerator_get_Entry, (ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD76F8, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32__System_Collections_IDictionaryEnumerator_get_Entry__MethodInfo); +DO_APP_FUNC(0x014807D0, Object *, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32__System_Collections_IDictionaryEnumerator_get_Key, (ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD76E0, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32__System_Collections_IDictionaryEnumerator_get_Key__MethodInfo); +DO_APP_FUNC(0x01480860, Object *, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32__System_Collections_IDictionaryEnumerator_get_Value, (ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD76E8, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32__System_Collections_IDictionaryEnumerator_get_Value__MethodInfo); +DO_APP_FUNC(0x01480620, void, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32__System_Collections_IEnumerator_Reset, (ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD76F0, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x014803E0, Object *, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32__System_Collections_IEnumerator_get_Current, (ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7700, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_Object_System_Int32_, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32__get_Current, (ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32_ * __this, Dictionary_2_System_Object_System_Int32_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01480940, bool, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014800D0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147D3F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014706F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01480A40, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_Object_System_Int32_, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014778F0, void, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32___ctor, (ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32_ * __this, ADictionary_2_System_Object_System_Int32_ * param_0000c608, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32__Dispose, (ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01480C40, bool, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32__MoveNext, (ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7730, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32__MoveNext__MethodInfo); +DO_APP_FUNC(0x01480DC0, void, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32__System_Collections_IEnumerator_Reset, (ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7720, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x01480D40, Object *, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32__System_Collections_IEnumerator_get_Current, (ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7738, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x003BB3C0, Object *, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32__get_Current, (ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014755C0, void, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32___ctor, (ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32_ * __this, ADictionary_2_System_Object_System_Int32_ * param_0000c611, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32__Dispose, (ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01480E40, bool, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32__MoveNext, (ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7728, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32__MoveNext__MethodInfo); +DO_APP_FUNC(0x01480FE0, void, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32__System_Collections_IEnumerator_Reset, (ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7718, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x01480F20, Object *, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32__System_Collections_IEnumerator_get_Current, (ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7710, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x003BCD50, int32_t, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32__get_Current, (ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32_ * __this, Dictionary_2_System_Object_System_Int32_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147E1B0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32_ * __this, Dictionary_2_System_Object_System_Int32_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014801C0, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, int32_t, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014761D0, void, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum___ctor, (ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum_ * __this, ADictionary_2_System_Object_System_Int32Enum_ * param_0000c5fe, int32_t param_0000c5ff, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum__Dispose, (ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01481060, bool, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum__MoveNext, (ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD76A8, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum__MoveNext__MethodInfo); +DO_APP_FUNC(0x014814B0, DictionaryEntry, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum__System_Collections_IDictionaryEnumerator_get_Entry, (ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7698, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum__System_Collections_IDictionaryEnumerator_get_Entry__MethodInfo); +DO_APP_FUNC(0x014815E0, Object *, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum__System_Collections_IDictionaryEnumerator_get_Key, (ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7680, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum__System_Collections_IDictionaryEnumerator_get_Key__MethodInfo); +DO_APP_FUNC(0x01481670, Object *, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum__System_Collections_IDictionaryEnumerator_get_Value, (ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7688, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum__System_Collections_IDictionaryEnumerator_get_Value__MethodInfo); +DO_APP_FUNC(0x01481430, void, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum__System_Collections_IEnumerator_Reset, (ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7690, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x014811F0, Object *, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum__System_Collections_IEnumerator_get_Current, (ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD76A0, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_Object_System_Int32Enum_, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum__get_Current, (ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum_ * __this, Dictionary_2_System_Object_System_Int32Enum_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01480940, bool, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014800D0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147D3F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014706F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01481750, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_Object_System_Int32Enum_, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014778F0, void, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum___ctor, (ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum_ * __this, ADictionary_2_System_Object_System_Int32Enum_ * param_0000c608, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum__Dispose, (ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01481950, bool, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum__MoveNext, (ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD76D0, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum__MoveNext__MethodInfo); +DO_APP_FUNC(0x01481AD0, void, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum__System_Collections_IEnumerator_Reset, (ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD76C0, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x01481A50, Object *, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum__System_Collections_IEnumerator_get_Current, (ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD76D8, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x003BB3C0, Object *, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum__get_Current, (ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014755C0, void, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum___ctor, (ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum_ * __this, ADictionary_2_System_Object_System_Int32Enum_ * param_0000c611, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum__Dispose, (ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01481B50, bool, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum__MoveNext, (ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD76C8, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum__MoveNext__MethodInfo); +DO_APP_FUNC(0x01481CF0, void, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum__System_Collections_IEnumerator_Reset, (ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD76B8, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x01481C30, Object *, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum__System_Collections_IEnumerator_get_Current, (ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD76B0, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x003BCD50, Int32Enum__Enum, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum__get_Current, (ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum_ * __this, Dictionary_2_System_Object_System_Int32Enum_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147E1B0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum_ * __this, Dictionary_2_System_Object_System_Int32Enum_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014801C0, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, Int32Enum__Enum, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014761D0, void, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Object___ctor, (ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, ADictionary_2_System_Object_System_Object_ * param_0000c5fe, int32_t param_0000c5ff, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__Dispose, (ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01481D70, bool, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__MoveNext, (ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7670, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__MoveNext__MethodInfo); +DO_APP_FUNC(0x01482140, DictionaryEntry, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7660, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IDictionaryEnumerator_get_Entry__MethodInfo); +DO_APP_FUNC(0x01482220, Object *, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7648, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IDictionaryEnumerator_get_Key__MethodInfo); +DO_APP_FUNC(0x014822B0, Object *, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7650, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IDictionaryEnumerator_get_Value__MethodInfo); +DO_APP_FUNC(0x014820C0, void, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_Reset, (ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7658, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x01481F00, Object *, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_get_Current, (ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7668, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_Object_System_Object_, ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__get_Current, (ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01482340, void, ConditionalWeakTable_2_TKey_TValue_Enumerator_System_Object_System_Object___ctor, (ConditionalWeakTable_2_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, ConditionalWeakTable_2_System_Object_System_Object__1 * table, MethodInfo * method)); DO_APP_FUNC(0x01482430, void, ConditionalWeakTable_2_TKey_TValue_Enumerator_System_Object_System_Object__Dispose, (ConditionalWeakTable_2_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014823B0, void, ConditionalWeakTable_2_TKey_TValue_Enumerator_System_Object_System_Object__Finalize, (ConditionalWeakTable_2_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); @@ -146152,1282 +161461,1340 @@ DO_APP_FUNC(0x014824E0, bool, ConditionalWeakTable_2_TKey_TValue_Enumerator_Syst DO_APP_FUNC(0x003AE050, void, ConditionalWeakTable_2_TKey_TValue_Enumerator_System_Object_System_Object__Reset, (ConditionalWeakTable_2_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01482840, Object *, ConditionalWeakTable_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_get_Current, (ConditionalWeakTable_2_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01482810, KeyValuePair_2_System_Object_System_Object_, ConditionalWeakTable_2_TKey_TValue_Enumerator_System_Object_System_Object__get_Current, (ConditionalWeakTable_2_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, Dictionary_2_System_Object_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014828C0, bool, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01482B60, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147D3F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DF20, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014829D0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_Object_System_Object_, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01476D40, void, IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object___ctor, (IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, IndexedDictionary_2_System_Object_System_Object_ * param_0000c64c, int32_t param_0000c64d, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__Dispose, (IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01482C00, bool, IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__MoveNext, (IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01483110, DictionaryEntry, IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01483200, Object *, IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01483290, Object *, IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01483010, void, IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_Reset, (IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01482E40, Object *, IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_get_Current, (IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_Object_System_Object_, IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__get_Current, (IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, Dictionary_2_System_Object_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9B98, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__Dispose__MethodInfo); +DO_APP_FUNC(0x014828C0, bool, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0ED0, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__MoveNext__MethodInfo); +DO_APP_FUNC(0x01482B60, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147D3F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DF20, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0EC8, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x014829D0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_Object_System_Object_, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0E68, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__get_Current__MethodInfo); +DO_APP_FUNC(0x01476D40, void, IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object___ctor, (IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, IndexedDictionary_2_System_Object_System_Object_ * param_0000c64c, int32_t param_0000c64d, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__Dispose, (IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01482C00, bool, IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__MoveNext, (IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7678, IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__MoveNext__MethodInfo); +DO_APP_FUNC(0x01483110, DictionaryEntry, IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7600, IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IDictionaryEnumerator_get_Entry__MethodInfo); +DO_APP_FUNC(0x01483200, Object *, IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD75E8, IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IDictionaryEnumerator_get_Key__MethodInfo); +DO_APP_FUNC(0x01483290, Object *, IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD75F0, IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IDictionaryEnumerator_get_Value__MethodInfo); +DO_APP_FUNC(0x01483010, void, IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_Reset, (IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD75F8, IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x01482E40, Object *, IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_get_Current, (IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7608, IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_Object_System_Object_, IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__get_Current, (IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01439B10, void, OneOrMore_2_TValue_TList_Enumerator_System_Object_System_Object___ctor, (OneOrMore_2_TValue_TList_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, OneOrMore_2_TValue_TList_Enumerator_System_Object_System_Object__Dispose, (OneOrMore_2_TValue_TList_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01483320, bool, OneOrMore_2_TValue_TList_Enumerator_System_Object_System_Object__MoveNext, (OneOrMore_2_TValue_TList_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01439B10, void, OneOrMore_2_TValue_TList_Enumerator_System_Object_System_Object__Reset, (OneOrMore_2_TValue_TList_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0147D620, Object *, OneOrMore_2_TValue_TList_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_get_Current, (OneOrMore_2_TValue_TList_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01483350, Object *, OneOrMore_2_TValue_TList_Enumerator_System_Object_System_Object__get_Current, (OneOrMore_2_TValue_TList_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147E930, void, SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object___ctor, (SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, SortedDictionary_2_System_Object_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x0147EAD0, void, SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__Dispose, (SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01483370, bool, SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__MoveNext, (SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01483400, void, SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__Reset, (SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01483930, DictionaryEntry, SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01483750, Object *, SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01483840, Object *, SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01483400, void, SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_Reset, (SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01483490, Object *, SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_get_Current, (SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147EB40, KeyValuePair_2_System_Object_System_Object_, SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__get_Current, (SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147EBE0, bool, SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__get_NotStartedOrEnded, (SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01483AB0, void, SortedList_2_TKey_TValue_Enumerator_System_Object_System_Object___ctor, (SortedList_2_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, SortedList_2_System_Object_System_Object_ * sortedList, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x01483B40, void, SortedList_2_TKey_TValue_Enumerator_System_Object_System_Object__Dispose, (SortedList_2_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01483C60, bool, SortedList_2_TKey_TValue_Enumerator_System_Object_System_Object__MoveNext, (SortedList_2_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01483EC0, DictionaryEntry, SortedList_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (SortedList_2_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01483B60, Object *, SortedList_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (SortedList_2_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01484230, Object *, SortedList_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (SortedList_2_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01484330, void, SortedList_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_Reset, (SortedList_2_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01484050, Object *, SortedList_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_get_Current, (SortedList_2_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01483FE0, KeyValuePair_2_System_Object_System_Object_, SortedList_2_TKey_TValue_Enumerator_System_Object_System_Object__get_Current, (SortedList_2_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014778F0, void, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object___ctor, (ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, ADictionary_2_System_Object_System_Object_ * param_0000c608, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object__Dispose, (ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014843C0, bool, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object__MoveNext, (ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01484540, void, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_Reset, (ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014844C0, Object *, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_get_Current, (ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object__get_Current, (ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014778F0, void, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object___ctor, (ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, ADictionary_2_System_Object_System_Object_ * param_0000c611, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object__Dispose, (ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014845C0, bool, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object__MoveNext, (ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01484740, void, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_Reset, (ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014846C0, Object *, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_get_Current, (ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object__get_Current, (ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, Dictionary_2_System_Object_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147E1B0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, Dictionary_2_System_Object_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E140, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01477F80, void, IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object___ctor, (IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, IndexedDictionary_2_System_Object_System_Object_ * param_0000c656, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object__Dispose, (IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014847C0, bool, IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object__MoveNext, (IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014849F0, void, IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_Reset, (IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01484970, Object *, IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_get_Current, (IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object__get_Current, (IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01477F80, void, IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object___ctor, (IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, IndexedDictionary_2_System_Object_System_Object_ * param_0000c65f, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object__Dispose, (IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01484AF0, bool, IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object__MoveNext, (IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01484D20, void, IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_Reset, (IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01484CA0, Object *, IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_get_Current, (IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object__get_Current, (IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147F420, void, SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object___ctor, (SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, SortedDictionary_2_System_Object_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x0147F510, void, SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object__Dispose, (SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01484E20, bool, SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object__MoveNext, (SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01484F20, void, SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_Reset, (SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01484E60, Object *, SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_get_Current, (SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147F580, Object *, SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object__get_Current, (SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147F420, void, SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object___ctor, (SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, SortedDictionary_2_System_Object_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x0147F510, void, SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object__Dispose, (SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01484E20, bool, SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object__MoveNext, (SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01484F20, void, SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_Reset, (SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01484FE0, Object *, SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_get_Current, (SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01484F60, Object *, SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object__get_Current, (SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146CD70, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed * __this, Dictionary_2_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014850A0, bool, Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147FBC0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147D3F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01478870, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D1B0, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014851C0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, KeyValuePair_2_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_, Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed * __this, Dictionary_2_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147FCB0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D3D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed * __this, Dictionary_2_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01485450, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D560, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D4E0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, ObjectSurface, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014854E0, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___Boxed * __this, Dictionary_2_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01485570, bool, Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014859C0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147D3F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01485AD0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01485980, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014856E0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143BE80, KeyValuePair_2_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_, Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___Boxed * __this, Dictionary_2_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01485B90, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01485C20, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___Boxed * __this, Dictionary_2_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01485CB0, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01485DE0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01485D50, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438FB0, OriginalMaterialValue, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146CD70, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable___Boxed * __this, Dictionary_2_System_Object_UnityEngine_Playables_Playable_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147F880, bool, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147FBC0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147D3F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01478870, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D1B0, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01485E20, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, KeyValuePair_2_System_Object_UnityEngine_Playables_Playable_, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable___Boxed * __this, Dictionary_2_System_Object_UnityEngine_Playables_Playable_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147FCB0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D3D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable___Boxed * __this, Dictionary_2_System_Object_UnityEngine_Playables_Playable_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147FD40, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D560, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D4E0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, Playable, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01479CE0, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___Boxed * __this, Dictionary_2_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01486050, bool, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147D2F0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147D3F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147A2E0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147A160, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01486190, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438FB0, KeyValuePair_2_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___Boxed * __this, Dictionary_2_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147D440, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147A420, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___Boxed * __this, Dictionary_2_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01486400, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147A5D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147A550, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01204560, ProbeVolumeBakingProcessSettings, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146CD70, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator___Boxed * __this, Dictionary_2_System_Object_System_Resources_ResourceLocator_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014850A0, bool, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147FBC0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147D3F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01478870, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D1B0, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014864A0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, KeyValuePair_2_System_Object_System_Resources_ResourceLocator_, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator___Boxed * __this, Dictionary_2_System_Object_System_Resources_ResourceLocator_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147FCB0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D3D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator___Boxed * __this, Dictionary_2_System_Object_System_Resources_ResourceLocator_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01485450, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D560, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D4E0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, ResourceLocator, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Single___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Single___Boxed * __this, Dictionary_2_System_Object_System_Single_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Single__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01486730, bool, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Single__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01486A80, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Single__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147D3F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Single__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01486B70, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Single__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Single__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01486840, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Single__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_Object_System_Single_, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Single__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Single___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Single___Boxed * __this, Dictionary_2_System_Object_System_Single_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Single__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147E1B0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Single__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Single__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Single__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Single__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Single___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Single___Boxed * __this, Dictionary_2_System_Object_System_Single_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Single__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01486C10, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Single__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Single__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014794E0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Single__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC3C0, float, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Single__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146CD70, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue___Boxed * __this, Dictionary_2_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014850A0, bool, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147FBC0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147D3F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01478870, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D1B0, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01486C90, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, KeyValuePair_2_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue_, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue___Boxed * __this, Dictionary_2_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147FCB0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D3D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue___Boxed * __this, Dictionary_2_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01485450, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D560, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D4E0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, StylePropertyValue, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId___Boxed * __this, Dictionary_2_System_Object_UnityEngine_UIElements_TextureId_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147FDD0, bool, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014800D0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147D3F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014706F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01486F20, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_Object_UnityEngine_UIElements_TextureId_, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId___Boxed * __this, Dictionary_2_System_Object_UnityEngine_UIElements_TextureId_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147E1B0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId___Boxed * __this, Dictionary_2_System_Object_UnityEngine_UIElements_TextureId_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014801C0, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, TextureId, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_TimeSpan___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_TimeSpan___Boxed * __this, Dictionary_2_System_Object_System_TimeSpan_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_TimeSpan__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_TimeSpan___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01487120, bool, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_TimeSpan__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_TimeSpan___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01487430, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_TimeSpan__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_TimeSpan___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147D3F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_TimeSpan__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_TimeSpan___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014760A0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_TimeSpan__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_TimeSpan___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_TimeSpan__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_TimeSpan___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01487220, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_TimeSpan__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_TimeSpan___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_Object_System_TimeSpan_, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_TimeSpan__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_TimeSpan___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_TimeSpan___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_TimeSpan___Boxed * __this, Dictionary_2_System_Object_System_TimeSpan_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_TimeSpan__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_TimeSpan___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147E1B0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_TimeSpan__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_TimeSpan___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_TimeSpan__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_TimeSpan___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_TimeSpan__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_TimeSpan___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_TimeSpan__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_TimeSpan___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_TimeSpan___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_TimeSpan___Boxed * __this, Dictionary_2_System_Object_System_TimeSpan_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_TimeSpan__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_TimeSpan___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01476140, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_TimeSpan__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_TimeSpan___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_TimeSpan__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_TimeSpan___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01470820, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_TimeSpan__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_TimeSpan___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, TimeSpan, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_TimeSpan__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_TimeSpan___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01479CE0, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint___Boxed * __this, Dictionary_2_System_Object_UdpKit_UdpEndPoint_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01487520, bool, Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01487910, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147D3F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01487A10, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147A160, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01487680, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438FB0, KeyValuePair_2_System_Object_UdpKit_UdpEndPoint_, Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint___Boxed * __this, Dictionary_2_System_Object_UdpKit_UdpEndPoint_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147D440, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01487AD0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint___Boxed * __this, Dictionary_2_System_Object_UdpKit_UdpEndPoint_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01487B60, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01487CA0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01487C10, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01446510, UdpEndPoint, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2___Boxed * __this, Dictionary_2_System_Object_UnityEngine_Vector2_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01487CE0, bool, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01488060, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147D3F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01488150, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01487E10, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_Object_UnityEngine_Vector2_, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2___Boxed * __this, Dictionary_2_System_Object_UnityEngine_Vector2_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147E1B0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2___Boxed * __this, Dictionary_2_System_Object_UnityEngine_Vector2_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014881F0, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01488290, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01447170, Vector2, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146CD70, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3___Boxed * __this, Dictionary_2_System_Object_UnityEngine_Vector3_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01488310, bool, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01488680, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147D3F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01488780, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D1B0, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01488440, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, KeyValuePair_2_System_Object_UnityEngine_Vector3_, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3___Boxed * __this, Dictionary_2_System_Object_UnityEngine_Vector3_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147FCB0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01470ED0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3___Boxed * __this, Dictionary_2_System_Object_UnityEngine_Vector3_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01488830, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01471070, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01470FF0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C39A10, Vector3, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014888C0, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, Dictionary_2_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01488950, bool, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01488FB0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147D3F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01489130, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01488F70, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01488C00, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01488B70, KeyValuePair_2_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, Dictionary_2_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01489260, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01489300, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, Dictionary_2_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01489390, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01489660, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01489550, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01469EF0, InputControlLayout_ControlItem, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___Boxed * __this, Dictionary_2_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01487120, bool, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01487430, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147D3F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014760A0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014896A0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___Boxed * __this, Dictionary_2_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147E1B0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___Boxed * __this, Dictionary_2_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01476140, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01470820, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, InputSystemUIInputModule_InputActionReferenceState, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014898B0, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Boxed * __this, Dictionary_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01489950, bool, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01489D80, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147D3F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01489EA0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01489D30, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01489AD0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01437380, KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Boxed * __this, Dictionary_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01489F70, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148A000, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Boxed * __this, Dictionary_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148A090, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148A210, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148A160, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143BB30, JsonParser_JsonValue, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___Boxed * __this, Dictionary_2_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147FDD0, bool, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014800D0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147D3F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014706F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148A260, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___Boxed * __this, Dictionary_2_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147E1B0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___Boxed * __this, Dictionary_2_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014801C0, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, ProbeReferenceVolume_RegId, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014854E0, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback___Boxed * __this, Dictionary_2_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148A460, bool, Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014859C0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147D3F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01485AD0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01485980, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148A5A0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143BE80, KeyValuePair_2_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback_, Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback___Boxed * __this, Dictionary_2_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01485B90, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01485C20, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback___Boxed * __this, Dictionary_2_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148A7C0, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01485DE0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01485D50, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438FB0, ProtocolClient_AckCallback, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014854E0, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler___Boxed * __this, Dictionary_2_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148A460, bool, Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014859C0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147D3F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01485AD0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01485980, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148A870, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143BE80, KeyValuePair_2_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_, Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler___Boxed * __this, Dictionary_2_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01485B90, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01485C20, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler___Boxed * __this, Dictionary_2_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148A7C0, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01485DE0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01485D50, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438FB0, ProtocolClient_MsgHandler, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148AA90, void, IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___ctor, (IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Boxed * __this, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * param_0000c64c, int32_t param_0000c64d, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__Dispose, (IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148ABA0, bool, IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__MoveNext, (IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148B200, DictionaryEntry, IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_IDictionaryEnumerator_get_Entry, (IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148B340, Object *, IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_IDictionaryEnumerator_get_Key, (IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148B3D0, Object *, IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_IDictionaryEnumerator_get_Value, (IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148B100, void, IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_IEnumerator_Reset, (IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148AEB0, Object *, IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_IEnumerator_get_Current, (IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01204560, KeyValuePair_2_System_Object_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_, IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__get_Current, (IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01477F80, void, IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___ctor, (IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Boxed * __this, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * param_0000c656, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__Dispose, (IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148B4D0, bool, IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__MoveNext, (IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148B700, void, IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_IEnumerator_Reset, (IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148B680, Object *, IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_IEnumerator_get_Current, (IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__get_Current, (IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148B800, void, IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___ctor, (IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Boxed * __this, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * param_0000c65f, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__Dispose, (IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148B900, bool, IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__MoveNext, (IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148BBA0, void, IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_IEnumerator_Reset, (IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148BAC0, Object *, IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_IEnumerator_get_Current, (IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo, IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__get_Current, (IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___Boxed * __this, Dictionary_2_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01487120, bool, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01487430, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147D3F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014760A0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148BCB0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___Boxed * __this, Dictionary_2_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147E1B0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___Boxed * __this, Dictionary_2_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01476140, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01470820, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, StyleComplexSelector_PseudoStateData, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object___Boxed * __this, Dictionary_2_Photon_Bolt_PrefabId_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147C8E0, bool, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01476C50, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DF20, Object *, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148BEC0, Object *, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, KeyValuePair_2_Photon_Bolt_PrefabId_System_Object_, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object___Boxed * __this, Dictionary_2_Photon_Bolt_PrefabId_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014748E0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, PrefabId, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object___Boxed * __this, Dictionary_2_Photon_Bolt_PrefabId_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E140, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014854E0, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32___ctor, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32___Boxed * __this, Dictionary_2_UnityEngine_RaycastHit_System_Int32_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32__Dispose, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148C0D0, bool, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148C490, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148C5E0, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148C6A0, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01485980, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148C210, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143BE80, KeyValuePair_2_UnityEngine_RaycastHit_System_Int32_, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32__get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148C740, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32___Boxed * __this, Dictionary_2_UnityEngine_RaycastHit_System_Int32_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148C7D0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148C910, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148C880, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143C370, RaycastHit, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32___Boxed * __this, Dictionary_2_UnityEngine_RaycastHit_System_Int32_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148C960, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, int32_t, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148C9F0, void, Dictionary_2_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample___Boxed * __this, Dictionary_2_System_Single_SplineMesh_CurveSample_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148CA90, bool, Dictionary_2_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148CFD0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148D140, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148D1E0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148CF80, void, Dictionary_2_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148CC80, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148CC40, KeyValuePair_2_System_Single_SplineMesh_CurveSample_, Dictionary_2_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample___Boxed * __this, Dictionary_2_System_Single_SplineMesh_CurveSample_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148D2B0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014794E0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC3C0, float, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148A000, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample___Boxed * __this, Dictionary_2_System_Single_SplineMesh_CurveSample_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148D330, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148A210, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148A160, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143BB30, CurveSample, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object___Boxed * __this, Dictionary_2_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147CBF0, bool, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147B8B0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01470650, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DF20, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148D3F0, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, KeyValuePair_2_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object_, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object___Boxed * __this, Dictionary_2_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147B9A0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01470820, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, TerrainTileCoord, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object___Boxed * __this, Dictionary_2_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E140, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146CD70, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object___Boxed * __this, Dictionary_2_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146F4D0, bool, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D1F0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D2E0, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D380, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D1B0, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148D5F0, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, KeyValuePair_2_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D3D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object___Boxed * __this, Dictionary_2_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146F810, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D560, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D4E0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, TrackableId, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object___Boxed * __this, Dictionary_2_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D620, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object___Boxed * __this, Dictionary_2_Photon_Bolt_TypeId_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147C8E0, bool, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01476C50, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DF20, Object *, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148D820, Object *, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, KeyValuePair_2_Photon_Bolt_TypeId_System_Object_, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object___Boxed * __this, Dictionary_2_Photon_Bolt_TypeId_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014748E0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, TypeId, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object___Boxed * __this, Dictionary_2_Photon_Bolt_TypeId_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E140, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_UInt16_System_Object___Boxed * __this, Dictionary_2_System_UInt16_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_UInt16_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148DA30, bool, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_UInt16_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148DD40, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_UInt16_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148DE30, Object *, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_UInt16_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DF20, Object *, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_UInt16_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_UInt16_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148DB30, Object *, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_UInt16_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_UInt16_System_Object_, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_UInt16_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01473660, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_System_Object___Boxed * __this, Dictionary_2_System_UInt16_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148DED0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014737E0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01473760, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0098C910, uint16_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_System_Object___Boxed * __this, Dictionary_2_System_UInt16_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E140, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01479CE0, void, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel___Boxed * __this, Dictionary_2_System_UInt16_Dissonance_PlayerChannel_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147E930, void, SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object___ctor, (SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, SortedDictionary_2_System_Object_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x0147EAD0, void, SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__Dispose, (SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01483370, bool, SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__MoveNext, (SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01483400, void, SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__Reset, (SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01483930, DictionaryEntry, SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7630, SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IDictionaryEnumerator_get_Entry__MethodInfo); +DO_APP_FUNC(0x01483750, Object *, SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7640, SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IDictionaryEnumerator_get_Key__MethodInfo); +DO_APP_FUNC(0x01483840, Object *, SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7628, SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IDictionaryEnumerator_get_Value__MethodInfo); +DO_APP_FUNC(0x01483400, void, SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_Reset, (SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01483490, Object *, SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_get_Current, (SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7638, SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x0147EB40, KeyValuePair_2_System_Object_System_Object_, SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__get_Current, (SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147EBE0, bool, SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object__get_NotStartedOrEnded, (SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01483AB0, void, SortedList_2_TKey_TValue_Enumerator_System_Object_System_Object___ctor, (SortedList_2_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, SortedList_2_System_Object_System_Object_ * sortedList, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x01483B40, void, SortedList_2_TKey_TValue_Enumerator_System_Object_System_Object__Dispose, (SortedList_2_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01483C60, bool, SortedList_2_TKey_TValue_Enumerator_System_Object_System_Object__MoveNext, (SortedList_2_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7620, SortedList_2_TKey_TValue_Enumerator_System_Object_System_Object__MoveNext__MethodInfo); +DO_APP_FUNC(0x01483EC0, DictionaryEntry, SortedList_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (SortedList_2_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7610, SortedList_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IDictionaryEnumerator_get_Entry__MethodInfo); +DO_APP_FUNC(0x01483B60, Object *, SortedList_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (SortedList_2_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7618, SortedList_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IDictionaryEnumerator_get_Key__MethodInfo); +DO_APP_FUNC(0x01484230, Object *, SortedList_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (SortedList_2_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7590, SortedList_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IDictionaryEnumerator_get_Value__MethodInfo); +DO_APP_FUNC(0x01484330, void, SortedList_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_Reset, (SortedList_2_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7598, SortedList_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x01484050, Object *, SortedList_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_get_Current, (SortedList_2_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD75A0, SortedList_2_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x01483FE0, KeyValuePair_2_System_Object_System_Object_, SortedList_2_TKey_TValue_Enumerator_System_Object_System_Object__get_Current, (SortedList_2_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014778F0, void, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object___ctor, (ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, ADictionary_2_System_Object_System_Object_ * param_0000c608, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object__Dispose, (ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014843C0, bool, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object__MoveNext, (ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7580, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object__MoveNext__MethodInfo); +DO_APP_FUNC(0x01484540, void, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_Reset, (ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7570, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x014844C0, Object *, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_get_Current, (ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7588, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x003BB3C0, Object *, ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object__get_Current, (ADictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014778F0, void, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object___ctor, (ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, ADictionary_2_System_Object_System_Object_ * param_0000c611, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object__Dispose, (ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014845C0, bool, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object__MoveNext, (ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7578, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object__MoveNext__MethodInfo); +DO_APP_FUNC(0x01484740, void, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_Reset, (ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD75E0, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x014846C0, Object *, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_get_Current, (ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD75D8, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x003BB3C0, Object *, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object__get_Current, (ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, Dictionary_2_System_Object_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0EA0, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object__Dispose__MethodInfo); +DO_APP_FUNC(0x0147E1B0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0E90, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object__MoveNext__MethodInfo); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0E78, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object__get_Current__MethodInfo); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, Dictionary_2_System_Object_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E140, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01477F80, void, IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object___ctor, (IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, IndexedDictionary_2_System_Object_System_Object_ * param_0000c656, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object__Dispose, (IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014847C0, bool, IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object__MoveNext, (IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD75C8, IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object__MoveNext__MethodInfo); +DO_APP_FUNC(0x014849F0, void, IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_Reset, (IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD75B8, IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x01484970, Object *, IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_get_Current, (IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD75D0, IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x003BB3C0, Object *, IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object__get_Current, (IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01477F80, void, IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object___ctor, (IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, IndexedDictionary_2_System_Object_System_Object_ * param_0000c65f, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object__Dispose, (IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01484AF0, bool, IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object__MoveNext, (IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD75C0, IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object__MoveNext__MethodInfo); +DO_APP_FUNC(0x01484D20, void, IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_Reset, (IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD75B0, IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x01484CA0, Object *, IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_get_Current, (IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD75A8, IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x003BB3C0, Object *, IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object__get_Current, (IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147F420, void, SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object___ctor, (SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, SortedDictionary_2_System_Object_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x0147F510, void, SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object__Dispose, (SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01484E20, bool, SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object__MoveNext, (SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01484F20, void, SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_Reset, (SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01484E60, Object *, SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_get_Current, (SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7540, SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x0147F580, Object *, SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object__get_Current, (SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147F420, void, SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object___ctor, (SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, SortedDictionary_2_System_Object_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x0147F510, void, SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object__Dispose, (SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01484E20, bool, SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object__MoveNext, (SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01484F20, void, SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_Reset, (SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01484FE0, Object *, SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_get_Current, (SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7550, SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x01484F60, Object *, SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object__get_Current, (SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146CD70, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, Dictionary_2_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014850A0, bool, Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147FBC0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147D3F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01478870, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D1B0, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014851C0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, KeyValuePair_2_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_, Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, Dictionary_2_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147FCB0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D3D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, Dictionary_2_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01485450, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D560, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D4E0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, ObjectSurface, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014854E0, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, Dictionary_2_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01485570, bool, Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014859C0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147D3F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01485AD0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01485980, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014856E0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143BE80, KeyValuePair_2_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_, Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, Dictionary_2_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01485B90, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01485C20, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, Dictionary_2_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01485CB0, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01485DE0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01485D50, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438FB0, OriginalMaterialValue, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146CD70, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable_ * __this, Dictionary_2_System_Object_UnityEngine_Playables_Playable_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147F880, bool, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147FBC0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147D3F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01478870, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D1B0, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01485E20, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, KeyValuePair_2_System_Object_UnityEngine_Playables_Playable_, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable_ * __this, Dictionary_2_System_Object_UnityEngine_Playables_Playable_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147FCB0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D3D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable_ * __this, Dictionary_2_System_Object_UnityEngine_Playables_Playable_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147FD40, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D560, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D4E0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, Playable, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01479CE0, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ * __this, Dictionary_2_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01486050, bool, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147D2F0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147D3F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147A2E0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147A160, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01486190, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438FB0, KeyValuePair_2_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ * __this, Dictionary_2_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147D440, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147A420, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ * __this, Dictionary_2_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01486400, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147A5D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147A550, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01204560, ProbeVolumeBakingProcessSettings, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146CD70, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator_ * __this, Dictionary_2_System_Object_System_Resources_ResourceLocator_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014850A0, bool, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147FBC0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147D3F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01478870, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D1B0, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014864A0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, KeyValuePair_2_System_Object_System_Resources_ResourceLocator_, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator_ * __this, Dictionary_2_System_Object_System_Resources_ResourceLocator_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147FCB0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D3D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator_ * __this, Dictionary_2_System_Object_System_Resources_ResourceLocator_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01485450, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D560, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D4E0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, ResourceLocator, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Single___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Single_ * __this, Dictionary_2_System_Object_System_Single_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Single__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01486730, bool, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Single__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01486A80, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Single__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147D3F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Single__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01486B70, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Single__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Single__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01486840, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Single__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_Object_System_Single_, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Single__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Single___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Single_ * __this, Dictionary_2_System_Object_System_Single_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Single__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147E1B0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Single__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Single__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Single__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Single__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Single___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Single_ * __this, Dictionary_2_System_Object_System_Single_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Single__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01486C10, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Single__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Single__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014794E0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Single__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC3C0, float, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Single__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146CD70, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, Dictionary_2_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014850A0, bool, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147FBC0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147D3F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01478870, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D1B0, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01486C90, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, KeyValuePair_2_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue_, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, Dictionary_2_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147FCB0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D3D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, Dictionary_2_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01485450, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D560, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D4E0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, StylePropertyValue, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId_ * __this, Dictionary_2_System_Object_UnityEngine_UIElements_TextureId_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147FDD0, bool, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014800D0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147D3F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014706F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01486F20, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_Object_UnityEngine_UIElements_TextureId_, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId_ * __this, Dictionary_2_System_Object_UnityEngine_UIElements_TextureId_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147E1B0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId_ * __this, Dictionary_2_System_Object_UnityEngine_UIElements_TextureId_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014801C0, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, TextureId, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_TimeSpan___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_TimeSpan_ * __this, Dictionary_2_System_Object_System_TimeSpan_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_TimeSpan__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_TimeSpan_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01487120, bool, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_TimeSpan__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_TimeSpan_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01487430, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_TimeSpan__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_TimeSpan_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147D3F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_TimeSpan__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_TimeSpan_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014760A0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_TimeSpan__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_TimeSpan_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_TimeSpan__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_TimeSpan_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01487220, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_TimeSpan__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_TimeSpan_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_Object_System_TimeSpan_, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_TimeSpan__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_System_TimeSpan_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_TimeSpan___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_TimeSpan_ * __this, Dictionary_2_System_Object_System_TimeSpan_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_TimeSpan__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_TimeSpan_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147E1B0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_TimeSpan__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_TimeSpan_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_TimeSpan__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_TimeSpan_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_TimeSpan__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_TimeSpan_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_TimeSpan__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_TimeSpan_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_TimeSpan___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_TimeSpan_ * __this, Dictionary_2_System_Object_System_TimeSpan_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_TimeSpan__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_TimeSpan_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01476140, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_TimeSpan__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_TimeSpan_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_TimeSpan__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_TimeSpan_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01470820, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_TimeSpan__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_TimeSpan_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, TimeSpan, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_TimeSpan__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_TimeSpan_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01479CE0, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint_ * __this, Dictionary_2_System_Object_UdpKit_UdpEndPoint_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01487520, bool, Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01487910, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147D3F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01487A10, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147A160, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01487680, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438FB0, KeyValuePair_2_System_Object_UdpKit_UdpEndPoint_, Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint_ * __this, Dictionary_2_System_Object_UdpKit_UdpEndPoint_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147D440, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01487AD0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint_ * __this, Dictionary_2_System_Object_UdpKit_UdpEndPoint_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01487B60, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01487CA0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01487C10, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01446510, UdpEndPoint, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2_ * __this, Dictionary_2_System_Object_UnityEngine_Vector2_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01487CE0, bool, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01488060, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147D3F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01488150, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01487E10, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_Object_UnityEngine_Vector2_, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2_ * __this, Dictionary_2_System_Object_UnityEngine_Vector2_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147E1B0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2_ * __this, Dictionary_2_System_Object_UnityEngine_Vector2_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014881F0, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01488290, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01447170, Vector2, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146CD70, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3_ * __this, Dictionary_2_System_Object_UnityEngine_Vector3_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01488310, bool, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01488680, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147D3F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01488780, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D1B0, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01488440, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, KeyValuePair_2_System_Object_UnityEngine_Vector3_, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3_ * __this, Dictionary_2_System_Object_UnityEngine_Vector3_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147FCB0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01470ED0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3_ * __this, Dictionary_2_System_Object_UnityEngine_Vector3_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01488830, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01471070, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01470FF0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C39A10, Vector3, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014888C0, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, Dictionary_2_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01488950, bool, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01488FB0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147D3F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01489130, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01488F70, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01488C00, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01488B70, KeyValuePair_2_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, Dictionary_2_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01489260, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01489300, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, Dictionary_2_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01489390, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01489660, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01489550, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01469EF0, InputControlLayout_ControlItem, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ * __this, Dictionary_2_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01487120, bool, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01487430, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147D3F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014760A0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014896A0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ * __this, Dictionary_2_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147E1B0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ * __this, Dictionary_2_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01476140, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01470820, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, InputSystemUIInputModule_InputActionReferenceState, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014898B0, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, Dictionary_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01489950, bool, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01489D80, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147D3F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01489EA0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01489D30, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01489AD0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01437380, KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, Dictionary_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01489F70, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148A000, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, Dictionary_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148A090, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148A210, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148A160, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143BB30, JsonParser_JsonValue, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ * __this, Dictionary_2_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147FDD0, bool, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014800D0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147D3F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014706F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148A260, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ * __this, Dictionary_2_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147E1B0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ * __this, Dictionary_2_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014801C0, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, ProbeReferenceVolume_RegId, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014854E0, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback_ * __this, Dictionary_2_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148A460, bool, Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014859C0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147D3F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01485AD0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01485980, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148A5A0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143BE80, KeyValuePair_2_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback_, Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback_ * __this, Dictionary_2_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01485B90, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01485C20, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback_ * __this, Dictionary_2_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148A7C0, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01485DE0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01485D50, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438FB0, ProtocolClient_AckCallback, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014854E0, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_ * __this, Dictionary_2_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148A460, bool, Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014859C0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147D3F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01485AD0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01485980, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148A870, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143BE80, KeyValuePair_2_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_, Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_ * __this, Dictionary_2_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01485B90, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01485C20, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_ * __this, Dictionary_2_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148A7C0, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01485DE0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01485D50, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438FB0, ProtocolClient_MsgHandler, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148AA90, void, IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___ctor, (IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * param_0000c64c, int32_t param_0000c64d, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__Dispose, (IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148ABA0, bool, IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__MoveNext, (IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC530, IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__MoveNext__MethodInfo); +DO_APP_FUNC(0x0148B200, DictionaryEntry, IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_IDictionaryEnumerator_get_Entry, (IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC4A8, IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_IDictionaryEnumerator_get_Entry__MethodInfo); +DO_APP_FUNC(0x0148B340, Object *, IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_IDictionaryEnumerator_get_Key, (IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC4B0, IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_IDictionaryEnumerator_get_Key__MethodInfo); +DO_APP_FUNC(0x0148B3D0, Object *, IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_IDictionaryEnumerator_get_Value, (IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC490, IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_IDictionaryEnumerator_get_Value__MethodInfo); +DO_APP_FUNC(0x0148B100, void, IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_IEnumerator_Reset, (IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC4C0, IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x0148AEB0, Object *, IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_IEnumerator_get_Current, (IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC4B8, IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x01204560, KeyValuePair_2_System_Object_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_, IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__get_Current, (IndexedDictionary_2_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01477F80, void, IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___ctor, (IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * param_0000c656, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__Dispose, (IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148B4D0, bool, IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__MoveNext, (IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC4A0, IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__MoveNext__MethodInfo); +DO_APP_FUNC(0x0148B700, void, IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_IEnumerator_Reset, (IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC508, IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x0148B680, Object *, IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_IEnumerator_get_Current, (IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC500, IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x003BB3C0, Object *, IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__get_Current, (IndexedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148B800, void, IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___ctor, (IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * param_0000c65f, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__Dispose, (IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148B900, bool, IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__MoveNext, (IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC4E0, IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__MoveNext__MethodInfo); +DO_APP_FUNC(0x0148BBA0, void, IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_IEnumerator_Reset, (IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC4D8, IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x0148BAC0, Object *, IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_IEnumerator_get_Current, (IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC4F0, IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x00A2C560, SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo, IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__get_Current, (IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ * __this, Dictionary_2_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01487120, bool, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01487430, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147D3F0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014760A0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148BCB0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_, Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ * __this, Dictionary_2_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147E1B0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ * __this, Dictionary_2_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01476140, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01470820, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, StyleComplexSelector_PseudoStateData, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object_ * __this, Dictionary_2_Photon_Bolt_PrefabId_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147C8E0, bool, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01476C50, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DF20, Object *, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148BEC0, Object *, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, KeyValuePair_2_Photon_Bolt_PrefabId_System_Object_, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object_ * __this, Dictionary_2_Photon_Bolt_PrefabId_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014748E0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, PrefabId, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object_ * __this, Dictionary_2_Photon_Bolt_PrefabId_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E140, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_PrefabId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014854E0, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32___ctor, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32_ * __this, Dictionary_2_UnityEngine_RaycastHit_System_Int32_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32__Dispose, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148C0D0, bool, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148C490, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148C5E0, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148C6A0, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01485980, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148C210, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143BE80, KeyValuePair_2_UnityEngine_RaycastHit_System_Int32_, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32__get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148C740, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32_ * __this, Dictionary_2_UnityEngine_RaycastHit_System_Int32_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148C7D0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148C910, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148C880, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143C370, RaycastHit, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32_ * __this, Dictionary_2_UnityEngine_RaycastHit_System_Int32_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148C960, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, int32_t, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_RaycastHit_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148C9F0, void, Dictionary_2_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample_ * __this, Dictionary_2_System_Single_SplineMesh_CurveSample_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148CA90, bool, Dictionary_2_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148CFD0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148D140, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148D1E0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148CF80, void, Dictionary_2_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148CC80, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148CC40, KeyValuePair_2_System_Single_SplineMesh_CurveSample_, Dictionary_2_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample_ * __this, Dictionary_2_System_Single_SplineMesh_CurveSample_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148D2B0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014794E0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC3C0, float, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148A000, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample_ * __this, Dictionary_2_System_Single_SplineMesh_CurveSample_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148D330, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148A210, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148A160, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143BB30, CurveSample, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object_ * __this, Dictionary_2_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147CBF0, bool, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147B8B0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01470650, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DF20, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148D3F0, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, KeyValuePair_2_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object_, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object_ * __this, Dictionary_2_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147B9A0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01470820, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, TerrainTileCoord, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object_ * __this, Dictionary_2_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E140, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146CD70, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_ * __this, Dictionary_2_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146F4D0, bool, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D1F0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D2E0, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D380, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D1B0, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148D5F0, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, KeyValuePair_2_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D3D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_ * __this, Dictionary_2_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146F810, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D560, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D4E0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, TrackableId, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_ * __this, Dictionary_2_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D620, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object_ * __this, Dictionary_2_Photon_Bolt_TypeId_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147C8E0, bool, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01476C50, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DF20, Object *, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148D820, Object *, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, KeyValuePair_2_Photon_Bolt_TypeId_System_Object_, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object_ * __this, Dictionary_2_Photon_Bolt_TypeId_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014748E0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, TypeId, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object_ * __this, Dictionary_2_Photon_Bolt_TypeId_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E140, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_TypeId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_UInt16_System_Object_ * __this, Dictionary_2_System_UInt16_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_UInt16_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148DA30, bool, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_UInt16_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148DD40, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_UInt16_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148DE30, Object *, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_UInt16_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DF20, Object *, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_UInt16_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_UInt16_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148DB30, Object *, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_UInt16_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_UInt16_System_Object_, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_UInt16_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01473660, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_System_Object_ * __this, Dictionary_2_System_UInt16_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148DED0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014737E0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01473760, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0098C910, uint16_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_System_Object_ * __this, Dictionary_2_System_UInt16_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E140, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01479CE0, void, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel_ * __this, Dictionary_2_System_UInt16_Dissonance_PlayerChannel_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8F038, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel__Dispose__MethodInfo); -DO_APP_FUNC(0x0148DF60, bool, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148DF60, bool, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8F020, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel__MoveNext__MethodInfo); -DO_APP_FUNC(0x0148E350, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148DE30, Object *, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147A2E0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147A160, void, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148E0A0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438FB0, KeyValuePair_2_System_UInt16_Dissonance_PlayerChannel_, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148E350, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148DE30, Object *, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147A2E0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147A160, void, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148E0A0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438FB0, KeyValuePair_2_System_UInt16_Dissonance_PlayerChannel_, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8EFE8, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel__get_Current__MethodInfo); -DO_APP_FUNC(0x01473660, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel___Boxed * __this, Dictionary_2_System_UInt16_Dissonance_PlayerChannel_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148E490, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014737E0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01473760, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0098C910, uint16_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147A420, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel___Boxed * __this, Dictionary_2_System_UInt16_Dissonance_PlayerChannel_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148E520, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147A5D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147A550, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01204560, PlayerChannel, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014854E0, void, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel___Boxed * __this, Dictionary_2_System_UInt16_Dissonance_RoomChannel_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01473660, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel_ * __this, Dictionary_2_System_UInt16_Dissonance_PlayerChannel_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148E490, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014737E0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01473760, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0098C910, uint16_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147A420, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel_ * __this, Dictionary_2_System_UInt16_Dissonance_PlayerChannel_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148E520, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147A5D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147A550, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01204560, PlayerChannel, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_PlayerChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014854E0, void, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel_ * __this, Dictionary_2_System_UInt16_Dissonance_RoomChannel_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8F030, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel__Dispose__MethodInfo); -DO_APP_FUNC(0x0148E5D0, bool, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148E5D0, bool, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8F028, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel__MoveNext__MethodInfo); -DO_APP_FUNC(0x0148E9F0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148DE30, Object *, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01485AD0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01485980, void, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148E720, Object *, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143BE80, KeyValuePair_2_System_UInt16_Dissonance_RoomChannel_, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148E9F0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148DE30, Object *, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01485AD0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01485980, void, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148E720, Object *, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143BE80, KeyValuePair_2_System_UInt16_Dissonance_RoomChannel_, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8EFF0, Dictionary_2_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel__get_Current__MethodInfo); -DO_APP_FUNC(0x01473660, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel___Boxed * __this, Dictionary_2_System_UInt16_Dissonance_RoomChannel_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148EB40, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014737E0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01473760, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0098C910, uint16_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01485C20, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel___Boxed * __this, Dictionary_2_System_UInt16_Dissonance_RoomChannel_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148EBD0, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01485DE0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01485D50, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438FB0, RoomChannel, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E1E0, void, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Boolean___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Boolean___Boxed * __this, Dictionary_2_System_UInt32_System_Boolean_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Boolean__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014729F0, bool, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Boolean__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01472CD0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Boolean__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Boolean__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01472E00, Object *, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Boolean__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E540, void, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Boolean__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148EC80, Object *, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Boolean__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, KeyValuePair_2_System_UInt32_System_Boolean_, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Boolean__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Boolean___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Boolean___Boxed * __this, Dictionary_2_System_UInt32_System_Boolean_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Boolean__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01472EA0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Boolean__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Boolean__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Boolean__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, uint32_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Boolean__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DF70, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Boolean___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Boolean___Boxed * __this, Dictionary_2_System_UInt32_System_Boolean_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Boolean__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01472F20, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Boolean__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E100, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Boolean__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E080, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Boolean__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD20, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Boolean__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014854E0, void, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___Boxed * __this, Dictionary_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148EE80, bool, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148F250, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148F3A0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01485980, void, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148EFD0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143BE80, KeyValuePair_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___Boxed * __this, Dictionary_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148F460, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, uint32_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148C740, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___Boxed * __this, Dictionary_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148F4F0, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148C910, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148C880, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143C370, GlyphPairAdjustmentRecord, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E1E0, void, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Int32___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Int32___Boxed * __this, Dictionary_2_System_UInt32_System_Int32_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Int32__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014751C0, bool, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Int32__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01475490, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Int32__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Int32__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E6B0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Int32__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E540, void, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Int32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148F5A0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Int32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, KeyValuePair_2_System_UInt32_System_Int32_, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Int32__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Int32___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Int32___Boxed * __this, Dictionary_2_System_UInt32_System_Int32_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Int32__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01472EA0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Int32__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Int32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Int32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, uint32_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Int32__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Int32___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Int32___Boxed * __this, Dictionary_2_System_UInt32_System_Int32_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Int32__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E850, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Int32__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Int32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Int32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, int32_t, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Int32__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Object___Boxed * __this, Dictionary_2_System_UInt32_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01476940, bool, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01476C50, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DF20, Object *, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148F7A0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_UInt32_System_Object_, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Object___Boxed * __this, Dictionary_2_System_UInt32_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014748E0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, uint32_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Object___Boxed * __this, Dictionary_2_System_UInt32_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E140, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148F9B0, void, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_SessionClient___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_SessionClient___Boxed * __this, Dictionary_2_System_UInt32_SessionClient_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_SessionClient__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_SessionClient___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148FA40, bool, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_SessionClient__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_SessionClient___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148FF10, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_SessionClient__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_SessionClient___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_SessionClient__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_SessionClient___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01490060, Object *, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_SessionClient__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_SessionClient___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148FEC0, void, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_SessionClient__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_SessionClient___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148FBC0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_SessionClient__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_SessionClient___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143F2A0, KeyValuePair_2_System_UInt32_SessionClient_, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_SessionClient__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_SessionClient___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_SessionClient___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_SessionClient___Boxed * __this, Dictionary_2_System_UInt32_SessionClient_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_SessionClient__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_SessionClient___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01490130, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_SessionClient__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_SessionClient___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_SessionClient__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_SessionClient___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_SessionClient__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_SessionClient___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, uint32_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_SessionClient__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_SessionClient___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014901C0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_SessionClient___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_SessionClient___Boxed * __this, Dictionary_2_System_UInt32_SessionClient_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_SessionClient__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_SessionClient___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01490250, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_SessionClient__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_SessionClient___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014903B0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_SessionClient__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_SessionClient___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01490310, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_SessionClient__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_SessionClient___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438C60, SessionClient, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_SessionClient__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_SessionClient___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object___Boxed * __this, Dictionary_2_System_UInt64_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147B5B0, bool, Dictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147B8B0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01470650, Object *, Dictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DF20, Object *, Dictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01490400, Object *, Dictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_UInt64_System_Object_, Dictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147E930, void, SortedDictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object___ctor, (SortedDictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object___Boxed * __this, SortedDictionary_2_System_UInt64_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x0147EAD0, void, SortedDictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object__Dispose, (SortedDictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01490600, bool, SortedDictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object__MoveNext, (SortedDictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01490690, void, SortedDictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object__Reset, (SortedDictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01490C80, DictionaryEntry, SortedDictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (SortedDictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01490A60, Object *, SortedDictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (SortedDictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01490B90, Object *, SortedDictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (SortedDictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01490690, void, SortedDictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object__System_Collections_IEnumerator_Reset, (SortedDictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01490720, Object *, SortedDictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object__System_Collections_IEnumerator_get_Current, (SortedDictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147EB40, KeyValuePair_2_System_UInt64_System_Object_, SortedDictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object__get_Current, (SortedDictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147EBE0, bool, SortedDictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object__get_NotStartedOrEnded, (SortedDictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt64_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt64_System_Object___Boxed * __this, Dictionary_2_System_UInt64_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt64_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147B9A0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt64_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt64_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01470820, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt64_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, uint64_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt64_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_System_Object___Boxed * __this, Dictionary_2_System_UInt64_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E140, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147F420, void, SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt64_System_Object___ctor, (SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt64_System_Object___Boxed * __this, SortedDictionary_2_System_UInt64_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x0147F510, void, SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt64_System_Object__Dispose, (SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01490E40, bool, SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt64_System_Object__MoveNext, (SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01490F90, void, SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt64_System_Object__System_Collections_IEnumerator_Reset, (SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01490E80, Object *, SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt64_System_Object__System_Collections_IEnumerator_get_Current, (SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147F580, uint64_t, SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt64_System_Object__get_Current, (SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147F420, void, SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_System_Object___ctor, (SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_System_Object___Boxed * __this, SortedDictionary_2_System_UInt64_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x0147F510, void, SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_System_Object__Dispose, (SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01490E40, bool, SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_System_Object__MoveNext, (SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01490F90, void, SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_System_Object__System_Collections_IEnumerator_Reset, (SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01490FD0, Object *, SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_System_Object__System_Collections_IEnumerator_get_Current, (SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01484F60, Object *, SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_System_Object__get_Current, (SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01479CE0, void, Dictionary_2_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___ctor, (Dictionary_2_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed * __this, Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__Dispose, (Dictionary_2_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01491090, bool, Dictionary_2_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01491510, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146F150, Object *, Dictionary_2_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01491650, Object *, Dictionary_2_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147A160, void, Dictionary_2_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014911E0, Object *, Dictionary_2_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438FB0, KeyValuePair_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_, Dictionary_2_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__get_Current, (Dictionary_2_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146F250, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed * __this, Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014916F0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146F3F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146F370, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, UVTexture, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D3D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed * __this, Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014917A0, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D560, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D4E0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, ObjectSurface, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146CD70, void, Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object___Boxed * __this, Dictionary_2_UdpKit_UdpChannelName_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01491840, bool, Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D1F0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D2E0, Object *, Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D380, Object *, Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D1B0, void, Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01491960, Object *, Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, KeyValuePair_2_UdpKit_UdpChannelName_System_Object_, Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D3D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object___Boxed * __this, Dictionary_2_UdpKit_UdpChannelName_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01491BF0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D560, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D4E0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, UdpChannelName, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object___Boxed * __this, Dictionary_2_UdpKit_UdpChannelName_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D620, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01479CE0, void, Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object___Boxed * __this, Dictionary_2_UdpKit_UdpEndPoint_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01491C80, bool, Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01492050, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01492150, Object *, Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01492210, Object *, Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147A160, void, Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01491DD0, Object *, Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438FB0, KeyValuePair_2_UdpKit_UdpEndPoint_System_Object_, Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01487AD0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object___Boxed * __this, Dictionary_2_UdpKit_UdpEndPoint_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01492260, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01487CA0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01487C10, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01446510, UdpEndPoint, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object___Boxed * __this, Dictionary_2_UdpKit_UdpEndPoint_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01492310, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146EBA0, void, Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32___ctor, (Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32___Boxed * __this, Dictionary_2_UdpKit_UdpEndPoint_System_UInt32_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32__Dispose, (Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014923B0, bool, Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01492700, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01492150, Object *, Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01492850, Object *, Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146F010, void, Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014924C0, Object *, Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01204560, KeyValuePair_2_UdpKit_UdpEndPoint_System_UInt32_, Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32__get_Current, (Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01487AD0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32___Boxed * __this, Dictionary_2_UdpKit_UdpEndPoint_System_UInt32_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014928F0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01487CA0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01487C10, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01446510, UdpEndPoint, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32___Boxed * __this, Dictionary_2_UdpKit_UdpEndPoint_System_UInt32_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01492990, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, uint32_t, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146CD70, void, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object___Boxed * __this, Dictionary_2_Photon_Bolt_UniqueId_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146F4D0, bool, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D1F0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D2E0, Object *, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D380, Object *, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D1B0, void, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01492A20, Object *, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, KeyValuePair_2_Photon_Bolt_UniqueId_System_Object_, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D3D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object___Boxed * __this, Dictionary_2_Photon_Bolt_UniqueId_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146F810, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D560, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D4E0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, UniqueId, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object___Boxed * __this, Dictionary_2_Photon_Bolt_UniqueId_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D620, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32___ctor, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32___Boxed * __this, Dictionary_2_UnityEngine_Vector3_System_Int32_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32__Dispose, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01470930, bool, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01470C40, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01470D80, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01470E30, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01492C50, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, KeyValuePair_2_UnityEngine_Vector3_System_Int32_, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32__get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01470ED0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32___Boxed * __this, Dictionary_2_UnityEngine_Vector3_System_Int32_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01470F50, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01471070, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01470FF0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C39A10, Vector3, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32___Boxed * __this, Dictionary_2_UnityEngine_Vector3_System_Int32_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014710B0, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, int32_t, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146CD70, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object___Boxed * __this, Dictionary_2_UnityEngine_Vector3Int_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01492E60, bool, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014931D0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01470D80, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D380, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D1B0, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01492F90, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, KeyValuePair_2_UnityEngine_Vector3Int_System_Object_, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01470ED0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object___Boxed * __this, Dictionary_2_UnityEngine_Vector3Int_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014932D0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01471070, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01470FF0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C39A10, Vector3Int, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object___Boxed * __this, Dictionary_2_UnityEngine_Vector3Int_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D620, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146EBA0, void, Dictionary_2_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef___ctor, (Dictionary_2_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef___Boxed * __this, Dictionary_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__Dispose, (Dictionary_2_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147BC30, bool, Dictionary_2_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147C040, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D2E0, Object *, Dictionary_2_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147C180, Object *, Dictionary_2_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146F010, void, Dictionary_2_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01493360, Object *, Dictionary_2_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01204560, KeyValuePair_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_, Dictionary_2_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__get_Current, (Dictionary_2_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D3D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef___Boxed * __this, Dictionary_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147C220, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D560, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D4E0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, XPathNodeRef, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D3D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef___Boxed * __this, Dictionary_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147C2C0, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D560, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D4E0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, XPathNodeRef, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146CD70, void, Dictionary_2_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object___Boxed * __this, Dictionary_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146CE00, bool, Dictionary_2_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D1F0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D2E0, Object *, Dictionary_2_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D380, Object *, Dictionary_2_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D1B0, void, Dictionary_2_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01493650, Object *, Dictionary_2_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, KeyValuePair_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_, Dictionary_2_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D3D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object___Boxed * __this, Dictionary_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D450, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D560, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D4E0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, JSONDeserialization_TaskField, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object___Boxed * __this, Dictionary_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D620, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014854E0, void, Dictionary_2_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___Boxed * __this, Dictionary_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014938E0, bool, Dictionary_2_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01493DA0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146F150, Object *, Dictionary_2_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01493EF0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01485980, void, Dictionary_2_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01493A50, Object *, Dictionary_2_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143BE80, KeyValuePair_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_, Dictionary_2_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146F250, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___Boxed * __this, Dictionary_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01493FA0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146F3F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146F370, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, MemberRelationshipService_RelationshipEntry, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146F250, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___Boxed * __this, Dictionary_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01494040, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146F3F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146F370, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, MemberRelationshipService_RelationshipEntry, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object___Boxed * __this, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147C8E0, bool, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01476C50, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DF20, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014940E0, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object___Boxed * __this, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014748E0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, ProbeReferenceVolume_RegId, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object___Boxed * __this, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E140, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146CD70, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta___ctor, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta___Boxed * __this, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__Dispose, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014942F0, bool, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01478730, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01478870, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D1B0, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01494400, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta___Boxed * __this, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01478910, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, ProbeReferenceVolume_RegId, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D3D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta___Boxed * __this, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01485450, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D560, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D4E0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, ProbeBrickIndex_BrickMeta, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01494680, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo___ctor, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo___Boxed * __this, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__Dispose, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01494710, bool, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01494B60, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01494CB0, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01494B10, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01494880, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01494850, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo___Boxed * __this, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01494D70, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, ProbeReferenceVolume_RegId, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01473FC0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo___Boxed * __this, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01494E00, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01474190, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01474100, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143BE80, ProbeBrickIndex_CellIndexUpdateInfo, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148F9B0, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object___Boxed * __this, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01494EA0, bool, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014952D0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014953E0, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014954B0, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0148FEC0, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01495020, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0143F2A0, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object_, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014901C0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object___Boxed * __this, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01495500, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014903B0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01490310, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01438C60, ProbeReferenceVolume_Volume, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object___Boxed * __this, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014955C0, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146EBA0, void, Dictionary_2_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object___Boxed * __this, Dictionary_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146EC30, bool, Dictionary_2_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146F050, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146F150, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146F200, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146F010, void, Dictionary_2_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01495660, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01204560, KeyValuePair_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object_, Dictionary_2_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146F250, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object___Boxed * __this, Dictionary_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146F2D0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146F3F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146F370, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, Regex_CachedCodeEntryKey, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object___Boxed * __this, Dictionary_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146F430, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146CD70, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32___ctor, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32___Boxed * __this, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__Dispose, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01495920, bool, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146FC50, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D2E0, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146FD90, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D1B0, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01495A30, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D3D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32___Boxed * __this, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D450, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D560, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D4E0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, StylePropertyAnimationSystem_ElementPropertyPair, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32___Boxed * __this, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01495CC0, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, int32_t, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146CD70, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum___ctor, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum___Boxed * __this, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum__Dispose, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01495920, bool, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146FC50, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D2E0, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146FD90, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D1B0, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01495D40, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum__get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D3D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum___Boxed * __this, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D450, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D560, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D4E0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, StylePropertyAnimationSystem_ElementPropertyPair, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum___Boxed * __this, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01495CC0, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, Int32Enum__Enum, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146CD70, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object___Boxed * __this, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146CE00, bool, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D1F0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D2E0, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D380, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D1B0, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01495FD0, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A2C560, KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object_, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D3D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object___Boxed * __this, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D450, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D560, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D4E0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, StylePropertyAnimationSystem_ElementPropertyPair, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object___Boxed * __this, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D620, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object___Boxed * __this, Dictionary_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147CBF0, bool, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147B8B0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01470650, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DF20, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01496260, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object_, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object___Boxed * __this, Dictionary_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0147B9A0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01470820, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, StyleSheetCache_SheetHandleKey, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object___Boxed * __this, Dictionary_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146E140, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01496460, void, Dictionary_2_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object___Boxed * __this, Dictionary_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01496510, bool, Dictionary_2_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01496B10, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01496C60, Object *, Dictionary_2_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01496D60, Object *, Dictionary_2_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01496AB0, void, Dictionary_2_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01496740, Object *, Dictionary_2_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014966F0, KeyValuePair_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_, Dictionary_2_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01496DB0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object___Boxed * __this, Dictionary_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01496E50, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x014970A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01496FC0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01496F70, WetDecalSystem_MaterialBatchId, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object___Boxed * __this, Dictionary_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01497100, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01473660, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel_ * __this, Dictionary_2_System_UInt16_Dissonance_RoomChannel_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148EB40, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014737E0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01473760, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0098C910, uint16_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01485C20, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel_ * __this, Dictionary_2_System_UInt16_Dissonance_RoomChannel_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148EBD0, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01485DE0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01485D50, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438FB0, RoomChannel, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt16_Dissonance_RoomChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E1E0, void, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Boolean___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Boolean_ * __this, Dictionary_2_System_UInt32_System_Boolean_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Boolean__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8020, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Boolean__Dispose__MethodInfo); +DO_APP_FUNC(0x014729F0, bool, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Boolean__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8010, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Boolean__MoveNext__MethodInfo); +DO_APP_FUNC(0x01472CD0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Boolean__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Boolean__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01472E00, Object *, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Boolean__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E540, void, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Boolean__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148EC80, Object *, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Boolean__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, KeyValuePair_2_System_UInt32_System_Boolean_, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Boolean__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7FF8, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Boolean__get_Current__MethodInfo); +DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Boolean___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Boolean_ * __this, Dictionary_2_System_UInt32_System_Boolean_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Boolean__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01472EA0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Boolean__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Boolean__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Boolean__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, uint32_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Boolean__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DF70, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Boolean___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Boolean_ * __this, Dictionary_2_System_UInt32_System_Boolean_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Boolean__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01472F20, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Boolean__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E100, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Boolean__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E080, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Boolean__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD20, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Boolean__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014854E0, void, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, Dictionary_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148EE80, bool, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148F250, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148F3A0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01485980, void, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148EFD0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143BE80, KeyValuePair_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, Dictionary_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148F460, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, uint32_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148C740, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, Dictionary_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148F4F0, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148C910, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148C880, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143C370, GlyphPairAdjustmentRecord, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E1E0, void, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Int32___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Int32_ * __this, Dictionary_2_System_UInt32_System_Int32_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Int32__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014751C0, bool, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Int32__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01475490, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Int32__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Int32__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E6B0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Int32__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E540, void, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Int32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148F5A0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Int32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, KeyValuePair_2_System_UInt32_System_Int32_, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Int32__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Int32___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Int32_ * __this, Dictionary_2_System_UInt32_System_Int32_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Int32__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01472EA0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Int32__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Int32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Int32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, uint32_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Int32__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Int32___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Int32_ * __this, Dictionary_2_System_UInt32_System_Int32_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Int32__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E850, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Int32__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Int32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Int32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, int32_t, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Int32__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Object_ * __this, Dictionary_2_System_UInt32_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01476940, bool, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01476C50, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DF20, Object *, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148F7A0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_UInt32_System_Object_, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Object_ * __this, Dictionary_2_System_UInt32_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014748E0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, uint32_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Object_ * __this, Dictionary_2_System_UInt32_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E140, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148F9B0, void, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_SessionClient___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_SessionClient_ * __this, Dictionary_2_System_UInt32_SessionClient_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_SessionClient__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_SessionClient_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148FA40, bool, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_SessionClient__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_SessionClient_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148FF10, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_SessionClient__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_SessionClient_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_SessionClient__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_SessionClient_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01490060, Object *, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_SessionClient__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_SessionClient_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148FEC0, void, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_SessionClient__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_SessionClient_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148FBC0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_SessionClient__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_SessionClient_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143F2A0, KeyValuePair_2_System_UInt32_SessionClient_, Dictionary_2_TKey_TValue_Enumerator_System_UInt32_SessionClient__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_UInt32_SessionClient_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_SessionClient___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_SessionClient_ * __this, Dictionary_2_System_UInt32_SessionClient_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_SessionClient__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_SessionClient_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01490130, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_SessionClient__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_SessionClient_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_SessionClient__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_SessionClient_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_SessionClient__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_SessionClient_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, uint32_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_SessionClient__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt32_SessionClient_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014901C0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_SessionClient___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_SessionClient_ * __this, Dictionary_2_System_UInt32_SessionClient_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_SessionClient__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_SessionClient_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01490250, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_SessionClient__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_SessionClient_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014903B0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_SessionClient__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_SessionClient_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01490310, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_SessionClient__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_SessionClient_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438C60, SessionClient, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_SessionClient__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt32_SessionClient_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object_ * __this, Dictionary_2_System_UInt64_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147B5B0, bool, Dictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147B8B0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01470650, Object *, Dictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DF20, Object *, Dictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01490400, Object *, Dictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, KeyValuePair_2_System_UInt64_System_Object_, Dictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147E930, void, SortedDictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object___ctor, (SortedDictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object_ * __this, SortedDictionary_2_System_UInt64_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x0147EAD0, void, SortedDictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object__Dispose, (SortedDictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01490600, bool, SortedDictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object__MoveNext, (SortedDictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01490690, void, SortedDictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object__Reset, (SortedDictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01490C80, DictionaryEntry, SortedDictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (SortedDictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC438, SortedDictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object__System_Collections_IDictionaryEnumerator_get_Entry__MethodInfo); +DO_APP_FUNC(0x01490A60, Object *, SortedDictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (SortedDictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC448, SortedDictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object__System_Collections_IDictionaryEnumerator_get_Key__MethodInfo); +DO_APP_FUNC(0x01490B90, Object *, SortedDictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (SortedDictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC450, SortedDictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object__System_Collections_IDictionaryEnumerator_get_Value__MethodInfo); +DO_APP_FUNC(0x01490690, void, SortedDictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object__System_Collections_IEnumerator_Reset, (SortedDictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01490720, Object *, SortedDictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object__System_Collections_IEnumerator_get_Current, (SortedDictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC458, SortedDictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x0147EB40, KeyValuePair_2_System_UInt64_System_Object_, SortedDictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object__get_Current, (SortedDictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147EBE0, bool, SortedDictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object__get_NotStartedOrEnded, (SortedDictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt64_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt64_System_Object_ * __this, Dictionary_2_System_UInt64_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt64_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147B9A0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt64_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt64_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01470820, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt64_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, uint64_t, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt64_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_System_Object_ * __this, Dictionary_2_System_UInt64_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E140, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147F420, void, SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt64_System_Object___ctor, (SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt64_System_Object_ * __this, SortedDictionary_2_System_UInt64_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x0147F510, void, SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt64_System_Object__Dispose, (SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01490E40, bool, SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt64_System_Object__MoveNext, (SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01490F90, void, SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt64_System_Object__System_Collections_IEnumerator_Reset, (SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01490E80, Object *, SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt64_System_Object__System_Collections_IEnumerator_get_Current, (SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC440, SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt64_System_Object__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x0147F580, uint64_t, SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt64_System_Object__get_Current, (SortedDictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_UInt64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147F420, void, SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_System_Object___ctor, (SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_System_Object_ * __this, SortedDictionary_2_System_UInt64_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x0147F510, void, SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_System_Object__Dispose, (SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01490E40, bool, SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_System_Object__MoveNext, (SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01490F90, void, SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_System_Object__System_Collections_IEnumerator_Reset, (SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01490FD0, Object *, SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_System_Object__System_Collections_IEnumerator_get_Current, (SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC430, SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_System_Object__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x01484F60, Object *, SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_System_Object__get_Current, (SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01479CE0, void, Dictionary_2_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___ctor, (Dictionary_2_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__Dispose, (Dictionary_2_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01491090, bool, Dictionary_2_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01491510, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146F150, Object *, Dictionary_2_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01491650, Object *, Dictionary_2_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147A160, void, Dictionary_2_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014911E0, Object *, Dictionary_2_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438FB0, KeyValuePair_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_, Dictionary_2_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__get_Current, (Dictionary_2_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146F250, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014916F0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146F3F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146F370, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, UVTexture, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D3D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014917A0, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D560, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D4E0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, ObjectSurface, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146CD70, void, Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object_ * __this, Dictionary_2_UdpKit_UdpChannelName_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01491840, bool, Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D1F0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D2E0, Object *, Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D380, Object *, Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D1B0, void, Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01491960, Object *, Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, KeyValuePair_2_UdpKit_UdpChannelName_System_Object_, Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D3D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object_ * __this, Dictionary_2_UdpKit_UdpChannelName_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01491BF0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D560, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D4E0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, UdpChannelName, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object_ * __this, Dictionary_2_UdpKit_UdpChannelName_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D620, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01479CE0, void, Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object_ * __this, Dictionary_2_UdpKit_UdpEndPoint_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01491C80, bool, Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01492050, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01492150, Object *, Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01492210, Object *, Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147A160, void, Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01491DD0, Object *, Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438FB0, KeyValuePair_2_UdpKit_UdpEndPoint_System_Object_, Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01487AD0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object_ * __this, Dictionary_2_UdpKit_UdpEndPoint_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01492260, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01487CA0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01487C10, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01446510, UdpEndPoint, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object_ * __this, Dictionary_2_UdpKit_UdpEndPoint_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01492310, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146EBA0, void, Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32___ctor, (Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32_ * __this, Dictionary_2_UdpKit_UdpEndPoint_System_UInt32_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32__Dispose, (Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014923B0, bool, Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01492700, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01492150, Object *, Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01492850, Object *, Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146F010, void, Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014924C0, Object *, Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01204560, KeyValuePair_2_UdpKit_UdpEndPoint_System_UInt32_, Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32__get_Current, (Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01487AD0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32_ * __this, Dictionary_2_UdpKit_UdpEndPoint_System_UInt32_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014928F0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01487CA0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01487C10, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01446510, UdpEndPoint, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32_ * __this, Dictionary_2_UdpKit_UdpEndPoint_System_UInt32_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01492990, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, uint32_t, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146CD70, void, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object_ * __this, Dictionary_2_Photon_Bolt_UniqueId_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146F4D0, bool, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D1F0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D2E0, Object *, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D380, Object *, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D1B0, void, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01492A20, Object *, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, KeyValuePair_2_Photon_Bolt_UniqueId_System_Object_, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D3D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object_ * __this, Dictionary_2_Photon_Bolt_UniqueId_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146F810, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D560, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D4E0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, UniqueId, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object_ * __this, Dictionary_2_Photon_Bolt_UniqueId_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D620, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32___ctor, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32_ * __this, Dictionary_2_UnityEngine_Vector3_System_Int32_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32__Dispose, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01470930, bool, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01470C40, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01470D80, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01470E30, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01492C50, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, KeyValuePair_2_UnityEngine_Vector3_System_Int32_, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32__get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01470ED0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32_ * __this, Dictionary_2_UnityEngine_Vector3_System_Int32_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01470F50, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01471070, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01470FF0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C39A10, Vector3, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32_ * __this, Dictionary_2_UnityEngine_Vector3_System_Int32_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014710B0, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, int32_t, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146CD70, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object_ * __this, Dictionary_2_UnityEngine_Vector3Int_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01492E60, bool, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014931D0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01470D80, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D380, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D1B0, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01492F90, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, KeyValuePair_2_UnityEngine_Vector3Int_System_Object_, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01470ED0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object_ * __this, Dictionary_2_UnityEngine_Vector3Int_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014932D0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01471070, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01470FF0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C39A10, Vector3Int, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object_ * __this, Dictionary_2_UnityEngine_Vector3Int_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D620, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Vector3Int_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146EBA0, void, Dictionary_2_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef___ctor, (Dictionary_2_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ * __this, Dictionary_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__Dispose, (Dictionary_2_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147BC30, bool, Dictionary_2_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147C040, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D2E0, Object *, Dictionary_2_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147C180, Object *, Dictionary_2_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146F010, void, Dictionary_2_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01493360, Object *, Dictionary_2_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01204560, KeyValuePair_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_, Dictionary_2_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__get_Current, (Dictionary_2_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D3D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ * __this, Dictionary_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147C220, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D560, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D4E0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, XPathNodeRef, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D3D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ * __this, Dictionary_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147C2C0, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D560, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D4E0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, XPathNodeRef, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146CD70, void, Dictionary_2_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_ * __this, Dictionary_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146CE00, bool, Dictionary_2_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D1F0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D2E0, Object *, Dictionary_2_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D380, Object *, Dictionary_2_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D1B0, void, Dictionary_2_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01493650, Object *, Dictionary_2_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, KeyValuePair_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_, Dictionary_2_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D3D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_ * __this, Dictionary_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D450, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D560, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D4E0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, JSONDeserialization_TaskField, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_ * __this, Dictionary_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D620, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014854E0, void, Dictionary_2_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ * __this, Dictionary_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014938E0, bool, Dictionary_2_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01493DA0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146F150, Object *, Dictionary_2_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01493EF0, Object *, Dictionary_2_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01485980, void, Dictionary_2_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01493A50, Object *, Dictionary_2_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143BE80, KeyValuePair_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_, Dictionary_2_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146F250, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ * __this, Dictionary_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01493FA0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146F3F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146F370, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, MemberRelationshipService_RelationshipEntry, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146F250, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ * __this, Dictionary_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01494040, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146F3F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146F370, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, MemberRelationshipService_RelationshipEntry, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_ * __this, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147C8E0, bool, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01476C50, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DF20, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014940E0, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_ * __this, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014748E0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, ProbeReferenceVolume_RegId, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_ * __this, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E140, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146CD70, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta___ctor, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ * __this, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__Dispose, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014942F0, bool, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01478730, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01478870, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D1B0, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01494400, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ * __this, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01478910, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, ProbeReferenceVolume_RegId, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D3D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ * __this, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01485450, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D560, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D4E0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, ProbeBrickIndex_BrickMeta, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01494680, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo___ctor, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_ * __this, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__Dispose, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01494710, bool, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01494B60, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01471560, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01494CB0, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01494B10, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01494880, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01494850, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_ * __this, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01494D70, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, ProbeReferenceVolume_RegId, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01473FC0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_ * __this, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01494E00, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01474190, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01474100, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143BE80, ProbeBrickIndex_CellIndexUpdateInfo, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148F9B0, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object_ * __this, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01494EA0, bool, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014952D0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014953E0, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014954B0, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0148FEC0, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01495020, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0143F2A0, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object_, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014901C0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object_ * __this, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01495500, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014903B0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01490310, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01438C60, ProbeReferenceVolume_Volume, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object_ * __this, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014955C0, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146EBA0, void, Dictionary_2_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object_ * __this, Dictionary_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146EC30, bool, Dictionary_2_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146F050, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146F150, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146F200, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146F010, void, Dictionary_2_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01495660, Object *, Dictionary_2_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01204560, KeyValuePair_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object_, Dictionary_2_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146F250, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object_ * __this, Dictionary_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146F2D0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146F3F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146F370, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, Regex_CachedCodeEntryKey, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object_ * __this, Dictionary_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146F430, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146CD70, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32___ctor, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * __this, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__Dispose, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01495920, bool, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146FC50, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D2E0, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146FD90, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D1B0, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01495A30, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D3D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * __this, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D450, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D560, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D4E0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, StylePropertyAnimationSystem_ElementPropertyPair, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * __this, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01495CC0, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, int32_t, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146CD70, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum___ctor, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_ * __this, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum__Dispose, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01495920, bool, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146FC50, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D2E0, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146FD90, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D1B0, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01495D40, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum__get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D3D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_ * __this, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D450, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D560, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D4E0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, StylePropertyAnimationSystem_ElementPropertyPair, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E7D0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_ * __this, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01495CC0, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E950, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E8D0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, Int32Enum__Enum, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146CD70, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object_ * __this, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146CE00, bool, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D1F0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D2E0, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D380, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D1B0, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01495FD0, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A2C560, KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object_, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D3D0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object_ * __this, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D450, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D560, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D4E0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, StylePropertyAnimationSystem_ElementPropertyPair, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object_ * __this, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D620, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D9C0, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object_ * __this, Dictionary_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147CBF0, bool, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147B8B0, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01470650, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DF20, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146DD50, void, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01496260, Object *, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object_, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object_ * __this, Dictionary_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0147B9A0, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01470820, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, StyleSheetCache_SheetHandleKey, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object_ * __this, Dictionary_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146E140, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01496460, void, Dictionary_2_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object___ctor, (Dictionary_2_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_ * __this, Dictionary_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_ * dictionary, int32_t getEnumeratorRetType, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object__Dispose, (Dictionary_2_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01496510, bool, Dictionary_2_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object__MoveNext, (Dictionary_2_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01496B10, DictionaryEntry, Dictionary_2_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object__System_Collections_IDictionaryEnumerator_get_Entry, (Dictionary_2_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01496C60, Object *, Dictionary_2_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object__System_Collections_IDictionaryEnumerator_get_Key, (Dictionary_2_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01496D60, Object *, Dictionary_2_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object__System_Collections_IDictionaryEnumerator_get_Value, (Dictionary_2_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01496AB0, void, Dictionary_2_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01496740, Object *, Dictionary_2_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014966F0, KeyValuePair_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_, Dictionary_2_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object__get_Current, (Dictionary_2_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01496DB0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_ * __this, Dictionary_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object__Dispose, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01496E50, bool, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object__MoveNext, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x014970A0, void, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01496FC0, Object *, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01496F70, WetDecalSystem_MaterialBatchId, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object__get_Current, (Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D5A0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object___ctor, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_ * __this, Dictionary_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object__Dispose, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01497100, bool, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object__MoveNext, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6F0, void, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object__System_Collections_IEnumerator_Reset, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0146D6B0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object__System_Collections_IEnumerator_get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object__get_Current, (Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014971A0, IEqualityComparer_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__3 *, EqualityComparerNoAlloc_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x01497BA0, IEqualityComparer_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__4 *, EqualityComparerNoAlloc_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1_get_Default, (MethodInfo * method)); DO_APP_FUNC(0x014985A0, IEqualityComparer_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__5 *, EqualityComparerNoAlloc_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2_get_Default, (MethodInfo * method)); @@ -147763,6 +163130,7 @@ DO_APP_FUNC(0x014A3220, bool, EqualityComparer_1_UnityEngine_Bounds__System_Coll DO_APP_FUNC(0x014A3130, int32_t, EqualityComparer_1_UnityEngine_Bounds__System_Collections_IEqualityComparer_GetHashCode, (EqualityComparer_1_UnityEngine_Bounds_ * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, EqualityComparer_1_UnityEngine_Bounds_ *, EqualityComparer_1_UnityEngine_Bounds__get_Default, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, EqualityComparer_1_System_Byte___ctor, (EqualityComparer_1_System_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF128, EqualityComparer_1_System_Byte___ctor__MethodInfo); DO_APP_FUNC(0x014C2AB0, EqualityComparer_1_System_Byte_ *, EqualityComparer_1_System_Byte__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x014C1C60, int32_t, EqualityComparer_1_System_Byte__IndexOf, (EqualityComparer_1_System_Byte_ * __this, Byte__Array * array, uint8_t value, int32_t startIndex, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x014C1D00, int32_t, EqualityComparer_1_System_Byte__LastIndexOf, (EqualityComparer_1_System_Byte_ * __this, Byte__Array * array, uint8_t value, int32_t startIndex, int32_t count, MethodInfo * method)); @@ -148197,6 +163565,7 @@ DO_APP_FUNC(0x014E5430, int32_t, EqualityComparer_1_System_Object__LastIndexOf, DO_APP_FUNC(0x014F2C10, bool, EqualityComparer_1_System_Object__System_Collections_IEqualityComparer_Equals, (EqualityComparer_1_System_Object_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x014F2B30, int32_t, EqualityComparer_1_System_Object__System_Collections_IEqualityComparer_GetHashCode, (EqualityComparer_1_System_Object_ * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, EqualityComparer_1_System_Object_ *, EqualityComparer_1_System_Object__get_Default, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6C80, EqualityComparer_1_System_Object__get_Default__MethodInfo); DO_APP_FUNC(0x003AE050, void, EqualityComparer_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData___ctor, (EqualityComparer_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x014F2DA0, EqualityComparer_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData_ *, EqualityComparer_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x014D2230, int32_t, EqualityComparer_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData__IndexOf, (EqualityComparer_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData_ * __this, ObjectInitializationData__Array * array, ObjectInitializationData value, int32_t startIndex, int32_t count, MethodInfo * method)); @@ -148470,6 +163839,7 @@ DO_APP_FUNC(0x0150FFA0, int32_t, EqualityComparer_1_System_Single__LastIndexOf, DO_APP_FUNC(0x01510130, bool, EqualityComparer_1_System_Single__System_Collections_IEqualityComparer_Equals, (EqualityComparer_1_System_Single_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x01510050, int32_t, EqualityComparer_1_System_Single__System_Collections_IEqualityComparer_GetHashCode, (EqualityComparer_1_System_Single_ * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, EqualityComparer_1_System_Single_ *, EqualityComparer_1_System_Single__get_Default, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE23C8, EqualityComparer_1_System_Single__get_Default__MethodInfo); DO_APP_FUNC(0x003AE050, void, EqualityComparer_1_Discord_Sku___ctor, (EqualityComparer_1_Discord_Sku_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015102A0, EqualityComparer_1_Discord_Sku_ *, EqualityComparer_1_Discord_Sku__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x014BAEF0, int32_t, EqualityComparer_1_Discord_Sku__IndexOf, (EqualityComparer_1_Discord_Sku_ * __this, Sku__Array * array, Sku value, int32_t startIndex, int32_t count, MethodInfo * method)); @@ -148750,6 +164120,7 @@ DO_APP_FUNC(0x0152DFA0, int32_t, EqualityComparer_1_UnityEngine_Vector2__LastInd DO_APP_FUNC(0x0152E140, bool, EqualityComparer_1_UnityEngine_Vector2__System_Collections_IEqualityComparer_Equals, (EqualityComparer_1_UnityEngine_Vector2_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x0152E060, int32_t, EqualityComparer_1_UnityEngine_Vector2__System_Collections_IEqualityComparer_GetHashCode, (EqualityComparer_1_UnityEngine_Vector2_ * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, EqualityComparer_1_UnityEngine_Vector2_ *, EqualityComparer_1_UnityEngine_Vector2__get_Default, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D002B8, EqualityComparer_1_UnityEngine_Vector2__get_Default__MethodInfo); DO_APP_FUNC(0x003AE050, void, EqualityComparer_1_UnityEngine_Vector2Int___ctor, (EqualityComparer_1_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015438C0, EqualityComparer_1_UnityEngine_Vector2Int_ *, EqualityComparer_1_UnityEngine_Vector2Int__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x014A2050, int32_t, EqualityComparer_1_UnityEngine_Vector2Int__IndexOf, (EqualityComparer_1_UnityEngine_Vector2Int_ * __this, Vector2Int__Array * array, Vector2Int value, int32_t startIndex, int32_t count, MethodInfo * method)); @@ -148778,6 +164149,7 @@ DO_APP_FUNC(0x0149F600, int32_t, EqualityComparer_1_UnityEngine_Vector4__LastInd DO_APP_FUNC(0x014C7410, bool, EqualityComparer_1_UnityEngine_Vector4__System_Collections_IEqualityComparer_Equals, (EqualityComparer_1_UnityEngine_Vector4_ * __this, Object * x, Object * y, MethodInfo * method)); DO_APP_FUNC(0x0149F6C0, int32_t, EqualityComparer_1_UnityEngine_Vector4__System_Collections_IEqualityComparer_GetHashCode, (EqualityComparer_1_UnityEngine_Vector4_ * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x003ECE80, EqualityComparer_1_UnityEngine_Vector4_ *, EqualityComparer_1_UnityEngine_Vector4__get_Default, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D002C8, EqualityComparer_1_UnityEngine_Vector4__get_Default__MethodInfo); DO_APP_FUNC(0x003AE050, void, EqualityComparer_1_UnityEngine_Rendering_VertexAttributeDescriptor___ctor, (EqualityComparer_1_UnityEngine_Rendering_VertexAttributeDescriptor_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01546740, EqualityComparer_1_UnityEngine_Rendering_VertexAttributeDescriptor_ *, EqualityComparer_1_UnityEngine_Rendering_VertexAttributeDescriptor__CreateComparer, (MethodInfo * method)); DO_APP_FUNC(0x0149F540, int32_t, EqualityComparer_1_UnityEngine_Rendering_VertexAttributeDescriptor__IndexOf, (EqualityComparer_1_UnityEngine_Rendering_VertexAttributeDescriptor_ * __this, VertexAttributeDescriptor__Array * array, VertexAttributeDescriptor value, int32_t startIndex, int32_t count, MethodInfo * method)); @@ -149616,6 +164988,7 @@ DO_APP_FUNC(0x013AEFC0, int64_t, EventBase_1_System_Object__TypeId, (MethodInfo DO_APP_FUNC(0x015A04E0, int64_t, EventBase_1_System_Object__get_eventTypeId, (EventBase_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015A0750, void, EventCallbackFunctor_1_System_Object___ctor, (EventCallbackFunctor_1_System_Object_ * __this, EventCallback_1_System_Object_ * callback, CallbackPhase__Enum phase, InvokePolicy__Enum invokePolicy, MethodInfo * method)); DO_APP_FUNC(0x015A0820, void, EventCallbackFunctor_1_System_Object__Invoke, (EventCallbackFunctor_1_System_Object_ * __this, EventBase * evt, PropagationPhase__Enum propagationPhase, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8818, EventCallbackFunctor_1_System_Object__Invoke__MethodInfo); DO_APP_FUNC(0x015A0A00, bool, EventCallbackFunctor_1_System_Object__IsEquivalentTo, (EventCallbackFunctor_1_System_Object_ * __this, int64_t eventTypeId, Delegate * callback, CallbackPhase__Enum phase, MethodInfo * method)); DO_APP_FUNC(0x0084C240, void, EventCallback_1_System_Object___ctor, (EventCallback_1_System_Object_ * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003EE650, void, EventCallback_1_System_Object__Invoke, (EventCallback_1_System_Object_ * __this, Object * evt, MethodInfo * method)); @@ -149647,30 +165020,37 @@ DO_APP_FUNC(0x015A1350, int32_t, ExpandableArray_DataContainer_1_System_Object__ DO_APP_FUNC(0x015A0FF0, int32_t, ExpandableArray_DataContainer_1_System_Object__Inject, (ExpandableArray_DataContainer_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015A1090, int32_t, ExpandableArray_DataContainer_1_System_Object__InjectIfUnique, (ExpandableArray_DataContainer_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015A1590, void, ExpandableArray_DataContainer_1_System_Object__RemoveAt, (ExpandableArray_DataContainer_1_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8830, ExpandableArray_DataContainer_1_System_Object__RemoveAt__MethodInfo); DO_APP_FUNC(0x015A1820, void, ExpandableArray_DataContainer_1_System_Object__RemoveLast, (ExpandableArray_DataContainer_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015A18B0, void, ExpandableArray_DataContainer_1_System_Object__Resize, (ExpandableArray_DataContainer_1_System_Object_ * __this, int32_t size, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE87C8, ExpandableArray_DataContainer_1_System_Object__Resize__MethodInfo); DO_APP_FUNC(0x015A1B80, void, ExpandableArray_DataContainer_1_System_Object__SortAscending, (ExpandableArray_DataContainer_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015A1CC0, void, ExpandableArray_DataContainer_1_System_Object__SortDescending, (ExpandableArray_DataContainer_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003CC980, int32_t, ExpandableArray_DataContainer_1_System_Object__get_Count, (ExpandableArray_DataContainer_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015A0D50, int32_t, ExpandableArray_DataContainer_1_System_Object__get_FreeSpace, (ExpandableArray_DataContainer_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015A0F70, Object *, ExpandableArray_DataContainer_1_System_Object__get_Item, (ExpandableArray_DataContainer_1_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8828, ExpandableArray_DataContainer_1_System_Object__get_Item__MethodInfo); DO_APP_FUNC(0x003CC980, int32_t, ExpandableArray_DataContainer_1_System_Object__get_Length, (ExpandableArray_DataContainer_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003CD280, int32_t, ExpandableArray_DataContainer_1_System_Object__get_MaxLength, (ExpandableArray_DataContainer_1_System_Object_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x015A1E30, Object *, ExposedReference_1_System_Object__Resolve, (ExposedReference_1_System_Object___Boxed * __this, IExposedPropertyTable * resolver, MethodInfo * method)); +DO_APP_FUNC(0x015A1E30, Object *, ExposedReference_1_System_Object__Resolve, (ExposedReference_1_System_Object_ * __this, IExposedPropertyTable * resolver, MethodInfo * method)); DO_APP_FUNC(0x010BFE10, void, Expression0_1_System_Object___ctor, (Expression0_1_System_Object_ * __this, Expression_1 * body, MethodInfo * method)); DO_APP_FUNC(0x015A2060, ParameterExpression *, Expression0_1_System_Object__GetParameter, (Expression0_1_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8800, Expression0_1_System_Object__GetParameter__MethodInfo); DO_APP_FUNC(0x015A20A0, Expression_1_System_Object_ *, Expression0_1_System_Object__Rewrite, (Expression0_1_System_Object_ * __this, Expression_1 * body, ParameterExpression__Array * parameters, MethodInfo * method)); DO_APP_FUNC(0x003CB690, int32_t, Expression0_1_System_Object__get_ParameterCount, (Expression0_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015A2130, void, Expression1_1_System_Object___ctor, (Expression1_1_System_Object_ * __this, Expression_1 * body, ParameterExpression * par0, MethodInfo * method)); DO_APP_FUNC(0x015A21B0, ParameterExpression *, Expression1_1_System_Object__GetParameter, (Expression1_1_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE87D8, Expression1_1_System_Object__GetParameter__MethodInfo); DO_APP_FUNC(0x015A2230, Expression_1_System_Object_ *, Expression1_1_System_Object__Rewrite, (Expression1_1_System_Object_ * __this, Expression_1 * body, ParameterExpression__Array * parameters, MethodInfo * method)); DO_APP_FUNC(0x007205E0, int32_t, Expression1_1_System_Object__get_ParameterCount, (Expression1_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015A23B0, void, Expression2_1_System_Object___ctor, (Expression2_1_System_Object_ * __this, Expression_1 * body, ParameterExpression * par0, ParameterExpression * par1, MethodInfo * method)); DO_APP_FUNC(0x015A24B0, ParameterExpression *, Expression2_1_System_Object__GetParameter, (Expression2_1_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8780, Expression2_1_System_Object__GetParameter__MethodInfo); DO_APP_FUNC(0x015A2550, Expression_1_System_Object_ *, Expression2_1_System_Object__Rewrite, (Expression2_1_System_Object_ * __this, Expression_1 * body, ParameterExpression__Array * parameters, MethodInfo * method)); DO_APP_FUNC(0x0072BFF0, int32_t, Expression2_1_System_Object__get_ParameterCount, (Expression2_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015A2710, void, Expression3_1_System_Object___ctor, (Expression3_1_System_Object_ * __this, Expression_1 * body, ParameterExpression * par0, ParameterExpression * par1, ParameterExpression * par2, MethodInfo * method)); DO_APP_FUNC(0x015A2860, ParameterExpression *, Expression3_1_System_Object__GetParameter, (Expression3_1_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE87A0, Expression3_1_System_Object__GetParameter__MethodInfo); DO_APP_FUNC(0x015A2910, Expression_1_System_Object_ *, Expression3_1_System_Object__Rewrite, (Expression3_1_System_Object_ * __this, Expression_1 * body, ParameterExpression__Array * parameters, MethodInfo * method)); DO_APP_FUNC(0x007159C0, int32_t, Expression3_1_System_Object__get_ParameterCount, (Expression3_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015A2B10, LambdaExpression *, ExpressionCreator_1_System_Object__CreateExpressionFunc, (Expression_1 * body, String * name, bool tailCall, ReadOnlyCollection_1_System_Linq_Expressions_ParameterExpression_ * parameters, MethodInfo * method)); @@ -149683,16 +165063,17 @@ DO_APP_FUNC(0x015A3440, Expression_1 *, Expression_1_System_Object__Accept, (Exp DO_APP_FUNC(0x015A3300, Object *, Expression_1_System_Object__Compile, (Expression_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015A3330, Object *, Expression_1_System_Object__Compile_1, (Expression_1_System_Object_ * __this, bool preferInterpretation, MethodInfo * method)); DO_APP_FUNC(0x015A3410, Expression_1_System_Object_ *, Expression_1_System_Object__Rewrite, (Expression_1_System_Object_ * __this, Expression_1 * body, ParameterExpression__Array * parameters, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE86E8, Expression_1_System_Object__Rewrite__MethodInfo); DO_APP_FUNC(0x015A32A0, Type *, Expression_1_System_Object__get_PublicType, (Expression_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015A3240, Type *, Expression_1_System_Object__get_TypeCore, (Expression_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01040480, void, XHashtable_1_TValue_ExtractKeyDelegate_System_Object___ctor, (XHashtable_1_TValue_ExtractKeyDelegate_System_Object_ * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x003F42D0, String *, XHashtable_1_TValue_ExtractKeyDelegate_System_Object__Invoke, (XHashtable_1_TValue_ExtractKeyDelegate_System_Object_ * __this, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x0114D850, void, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object___ctor, (IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object___Boxed * __this, int32_t param_0000c64a, Object * param_0000c64b, MethodInfo * method)); -DO_APP_FUNC(0x015A34B0, KeyValuePair_2_System_Int32_System_Object_, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object__KMkNqCcJJwdeibYEZLPWaslgQQFL, (IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A76400, void, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object___ctor, (IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object___Boxed * __this, Object * param_0000c64a, Object * param_0000c64b, MethodInfo * method)); -DO_APP_FUNC(0x015A3550, KeyValuePair_2_System_Object_System_Object_, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object__KMkNqCcJJwdeibYEZLPWaslgQQFL, (IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x015A35B0, void, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___ctor, (IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Boxed * __this, Object * param_0000c64a, SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo param_0000c64b, MethodInfo * method)); -DO_APP_FUNC(0x015A3670, KeyValuePair_2_System_Object_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__KMkNqCcJJwdeibYEZLPWaslgQQFL, (IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0114D850, void, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object___ctor, (IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object_ * __this, int32_t param_0000c64a, Object * param_0000c64b, MethodInfo * method)); +DO_APP_FUNC(0x015A34B0, KeyValuePair_2_System_Int32_System_Object_, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object__KMkNqCcJJwdeibYEZLPWaslgQQFL, (IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A76400, void, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object___ctor, (IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object_ * __this, Object * param_0000c64a, Object * param_0000c64b, MethodInfo * method)); +DO_APP_FUNC(0x015A3550, KeyValuePair_2_System_Object_System_Object_, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object__KMkNqCcJJwdeibYEZLPWaslgQQFL, (IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x015A35B0, void, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___ctor, (IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, Object * param_0000c64a, SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo param_0000c64b, MethodInfo * method)); +DO_APP_FUNC(0x015A3670, KeyValuePair_2_System_Object_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__KMkNqCcJJwdeibYEZLPWaslgQQFL, (IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015A3F30, void, FancyCellGroup_2_System_Object_System_Object___ctor, (FancyCellGroup_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015A3F50, GameObject *, FancyCellGroup_2_System_Object_System_Object___InstantiateCells_b__4_0, (FancyCellGroup_2_System_Object_System_Object_ * __this, int32_t _, MethodInfo * method)); DO_APP_FUNC(0x015A3A80, void, FancyCellGroup_2_System_Object_System_Object__Initialize, (FancyCellGroup_2_System_Object_System_Object_ * __this, MethodInfo * method)); @@ -149770,6 +165151,7 @@ DO_APP_FUNC(0x003AE050, void, FancyScrollView_2_System_Object_System_Object__1_I DO_APP_FUNC(0x015A7200, void, FancyScrollView_2_System_Object_System_Object__1_Refresh, (FancyScrollView_2_System_Object_System_Object__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x015A71E0, void, FancyScrollView_2_System_Object_System_Object__1_Relayout, (FancyScrollView_2_System_Object_System_Object__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x015A7380, void, FancyScrollView_2_System_Object_System_Object__1_ResizePool, (FancyScrollView_2_System_Object_System_Object__1 * __this, float firstPosition, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8640, FancyScrollView_2_System_Object_System_Object__1_ResizePool__MethodInfo); DO_APP_FUNC(0x015A7740, void, FancyScrollView_2_System_Object_System_Object__1_UpdateCells, (FancyScrollView_2_System_Object_System_Object__1 * __this, float firstPosition, int32_t firstIndex, bool forceRefresh, MethodInfo * method)); DO_APP_FUNC(0x015A71A0, void, FancyScrollView_2_System_Object_System_Object__1_UpdateContents, (FancyScrollView_2_System_Object_System_Object__1 * __this, IList_1_System_Object_ * itemsSource, MethodInfo * method)); DO_APP_FUNC(0x015A7220, void, FancyScrollView_2_System_Object_System_Object__1_UpdatePosition, (FancyScrollView_2_System_Object_System_Object__1 * __this, float position, MethodInfo * method)); @@ -149930,17 +165312,21 @@ DO_APP_FUNC(0x003C7420, Action_1_UnityEngine_Vector4_ *, DebugUI_Field_1_UnityEn DO_APP_FUNC(0x00421740, void, DebugUI_Field_1_UnityEngine_Vector4__set_getter, (DebugUI_Field_1_UnityEngine_Vector4_ * __this, Func_1_UnityEngine_Vector4_ * value, MethodInfo * method)); DO_APP_FUNC(0x003C7430, void, DebugUI_Field_1_UnityEngine_Vector4__set_setter, (DebugUI_Field_1_UnityEngine_Vector4_ * __this, Action_1_UnityEngine_Vector4_ * value, MethodInfo * method)); DO_APP_FUNC(0x015AA740, void, FileSystemEnumerable_1_System_Object___ctor, (FileSystemEnumerable_1_System_Object_ * __this, String * directory, FileSystemEnumerable_1_TResult_FindTransform_System_Object_ * transform, EnumerationOptions * options, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE85C8, FileSystemEnumerable_1_System_Object___ctor__MethodInfo); DO_APP_FUNC(0x015AAA20, IEnumerator_1_System_Object_ *, FileSystemEnumerable_1_System_Object__GetEnumerator, (FileSystemEnumerable_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FDB900, IEnumerator *, FileSystemEnumerable_1_System_Object__System_Collections_IEnumerable_GetEnumerator, (FileSystemEnumerable_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB330, FileSystemEnumerable_1_TResult_FindPredicate_System_Object_ *, FileSystemEnumerable_1_System_Object__get_ShouldIncludePredicate, (FileSystemEnumerable_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7320, FileSystemEnumerable_1_TResult_FindPredicate_System_Object_ *, FileSystemEnumerable_1_System_Object__get_ShouldRecursePredicate, (FileSystemEnumerable_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00424C30, void, FileSystemEnumerable_1_System_Object__set_ShouldIncludePredicate, (FileSystemEnumerable_1_System_Object_ * __this, FileSystemEnumerable_1_TResult_FindPredicate_System_Object_ * value, MethodInfo * method)); DO_APP_FUNC(0x015AACE0, void, FileSystemEnumerator_1_System_Object___ctor, (FileSystemEnumerator_1_System_Object_ * __this, String * directory, EnumerationOptions * options, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE85D8, FileSystemEnumerator_1_System_Object___ctor__MethodInfo); DO_APP_FUNC(0x015AB1F0, void, FileSystemEnumerator_1_System_Object__CloseDirectoryHandle, (FileSystemEnumerator_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015AB4F0, bool, FileSystemEnumerator_1_System_Object__ContinueOnDirectoryError, (FileSystemEnumerator_1_System_Object_ * __this, int32_t error, bool ignoreNotFound, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, FileSystemEnumerator_1_System_Object__ContinueOnError, (FileSystemEnumerator_1_System_Object_ * __this, int32_t error, MethodInfo * method)); DO_APP_FUNC(0x015AB260, void *, FileSystemEnumerator_1_System_Object__CreateDirectoryHandle, (FileSystemEnumerator_1_System_Object_ * __this, String * path, bool ignoreNotFound, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8590, FileSystemEnumerator_1_System_Object__CreateDirectoryHandle__MethodInfo); DO_APP_FUNC(0x015AC900, void *, FileSystemEnumerator_1_System_Object__CreateRelativeDirectoryHandle, (FileSystemEnumerator_1_System_Object_ * __this, ReadOnlySpan_1_Char_ relativePath, String * fullPath, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE84E0, FileSystemEnumerator_1_System_Object__CreateRelativeDirectoryHandle__MethodInfo); DO_APP_FUNC(0x015AACB0, void *, FileSystemEnumerator_1_System_Object__CreateRelativeDirectoryHandleUWP, (FileSystemEnumerator_1_System_Object_ * __this, ReadOnlySpan_1_Char_ relativePath, String * fullPath, MethodInfo * method)); DO_APP_FUNC(0x015AC270, bool, FileSystemEnumerator_1_System_Object__DequeueNextDirectory, (FileSystemEnumerator_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015ACA60, void, FileSystemEnumerator_1_System_Object__DirectoryFinished, (FileSystemEnumerator_1_System_Object_ * __this, MethodInfo * method)); @@ -149949,29 +165335,34 @@ DO_APP_FUNC(0x003AE050, void, FileSystemEnumerator_1_System_Object__Dispose_1, ( DO_APP_FUNC(0x015ACC40, void, FileSystemEnumerator_1_System_Object__Finalize, (FileSystemEnumerator_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015AC200, void, FileSystemEnumerator_1_System_Object__FindNextEntry, (FileSystemEnumerator_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015AC720, bool, FileSystemEnumerator_1_System_Object__GetData, (FileSystemEnumerator_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE84A8, FileSystemEnumerator_1_System_Object__GetData__MethodInfo); DO_APP_FUNC(0x015AAAF0, bool, FileSystemEnumerator_1_System_Object__GetDataUWP, (FileSystemEnumerator_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE85A8, FileSystemEnumerator_1_System_Object__GetDataUWP__MethodInfo); DO_APP_FUNC(0x015AC340, void, FileSystemEnumerator_1_System_Object__InternalDispose, (FileSystemEnumerator_1_System_Object_ * __this, bool disposing, MethodInfo * method)); DO_APP_FUNC(0x015AB550, bool, FileSystemEnumerator_1_System_Object__MoveNext, (FileSystemEnumerator_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, FileSystemEnumerator_1_System_Object__OnDirectoryFinished, (FileSystemEnumerator_1_System_Object_ * __this, ReadOnlySpan_1_Char_ directory, MethodInfo * method)); DO_APP_FUNC(0x015ACB70, void, FileSystemEnumerator_1_System_Object__Reset, (FileSystemEnumerator_1_System_Object_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x0041AEF0, bool, FileSystemEnumerator_1_System_Object__ShouldIncludeEntry, (FileSystemEnumerator_1_System_Object_ * __this, FileSystemEntry entry, MethodInfo * method)); -DO_APP_FUNC(0x0041AEF0, bool, FileSystemEnumerator_1_System_Object__ShouldRecurseIntoEntry, (FileSystemEnumerator_1_System_Object_ * __this, FileSystemEntry entry, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE84E8, FileSystemEnumerator_1_System_Object__Reset__MethodInfo); +DO_APP_FUNC(0x0041AEF0, bool, FileSystemEnumerator_1_System_Object__ShouldIncludeEntry, (FileSystemEnumerator_1_System_Object_ * __this, FileSystemEntry * entry, MethodInfo * method)); +DO_APP_FUNC(0x0041AEF0, bool, FileSystemEnumerator_1_System_Object__ShouldRecurseIntoEntry, (FileSystemEnumerator_1_System_Object_ * __this, FileSystemEntry * entry, MethodInfo * method)); DO_APP_FUNC(0x015ACA30, Object *, FileSystemEnumerator_1_System_Object__System_Collections_IEnumerator_get_Current, (FileSystemEnumerator_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7320, Object *, FileSystemEnumerator_1_System_Object__get_Current, (FileSystemEnumerator_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCCC0, void, ThreadLocal_1_T_FinalizationHelper_System_Object___ctor, (ThreadLocal_1_T_FinalizationHelper_System_Object_ * __this, ThreadLocal_1_T_LinkedSlotVolatile_System_Object___Array * slotArray, bool trackAllValues, MethodInfo * method)); DO_APP_FUNC(0x015ACD40, void, ThreadLocal_1_T_FinalizationHelper_System_Object__Finalize, (ThreadLocal_1_T_FinalizationHelper_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003FAEC0, void, FileSystemEnumerable_1_TResult_FindPredicate_System_Object___ctor, (FileSystemEnumerable_1_TResult_FindPredicate_System_Object_ * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003F42D0, bool, FileSystemEnumerable_1_TResult_FindPredicate_System_Object__Invoke, (FileSystemEnumerable_1_TResult_FindPredicate_System_Object_ * __this, FileSystemEntry entry, MethodInfo * method)); +DO_APP_FUNC(0x003F42D0, bool, FileSystemEnumerable_1_TResult_FindPredicate_System_Object__Invoke, (FileSystemEnumerable_1_TResult_FindPredicate_System_Object_ * __this, FileSystemEntry * entry, MethodInfo * method)); DO_APP_FUNC(0x015AD040, void, FileSystemEnumerable_1_TResult_FindTransform_System_Object___ctor, (FileSystemEnumerable_1_TResult_FindTransform_System_Object_ * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x003F42D0, Object *, FileSystemEnumerable_1_TResult_FindTransform_System_Object__Invoke, (FileSystemEnumerable_1_TResult_FindTransform_System_Object_ * __this, FileSystemEntry entry, MethodInfo * method)); -DO_APP_FUNC(0x015AD4C0, void, FixedArray3_1_System_Object__Clear, (FixedArray3_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x015AD3C0, bool, FixedArray3_1_System_Object__Contains, (FixedArray3_1_System_Object___Boxed * __this, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x015AD600, IEnumerable_1_System_Object_ *, FixedArray3_1_System_Object__Enumerate, (FixedArray3_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x015AD730, IEnumerator_1_System_Object_ *, FixedArray3_1_System_Object__GetEnumerator, (FixedArray3_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x015AD440, int32_t, FixedArray3_1_System_Object__IndexOf, (FixedArray3_1_System_Object___Boxed * __this, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x015AD180, IEnumerator *, FixedArray3_1_System_Object__System_Collections_IEnumerable_GetEnumerator, (FixedArray3_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x015AD1C0, Object *, FixedArray3_1_System_Object__get_Item, (FixedArray3_1_System_Object___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x015AD240, void, FixedArray3_1_System_Object__set_Item, (FixedArray3_1_System_Object___Boxed * __this, int32_t index, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x003F42D0, Object *, FileSystemEnumerable_1_TResult_FindTransform_System_Object__Invoke, (FileSystemEnumerable_1_TResult_FindTransform_System_Object_ * __this, FileSystemEntry * entry, MethodInfo * method)); +DO_APP_FUNC(0x015AD4C0, void, FixedArray3_1_System_Object__Clear, (FixedArray3_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x015AD3C0, bool, FixedArray3_1_System_Object__Contains, (FixedArray3_1_System_Object_ * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x015AD600, IEnumerable_1_System_Object_ *, FixedArray3_1_System_Object__Enumerate, (FixedArray3_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x015AD730, IEnumerator_1_System_Object_ *, FixedArray3_1_System_Object__GetEnumerator, (FixedArray3_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x015AD440, int32_t, FixedArray3_1_System_Object__IndexOf, (FixedArray3_1_System_Object_ * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x015AD180, IEnumerator *, FixedArray3_1_System_Object__System_Collections_IEnumerable_GetEnumerator, (FixedArray3_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x015AD1C0, Object *, FixedArray3_1_System_Object__get_Item, (FixedArray3_1_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF328, FixedArray3_1_System_Object__get_Item__MethodInfo); +DO_APP_FUNC(0x015AD240, void, FixedArray3_1_System_Object__set_Item, (FixedArray3_1_System_Object_ * __this, int32_t index, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF310, FixedArray3_1_System_Object__set_Item__MethodInfo); DO_APP_FUNC(0x010BFE10, void, FixedHeightVirtualizationController_1_System_Object___ctor, (FixedHeightVirtualizationController_1_System_Object_ * __this, BaseVerticalCollectionView * collectionView, MethodInfo * method)); DO_APP_FUNC(0x015AEB30, void, FixedHeightVirtualizationController_1_System_Object__EndDrag, (FixedHeightVirtualizationController_1_System_Object_ * __this, int32_t dropIndex, MethodInfo * method)); DO_APP_FUNC(0x015AD870, float, FixedHeightVirtualizationController_1_System_Object__GetExpectedContentHeight, (FixedHeightVirtualizationController_1_System_Object_ * __this, MethodInfo * method)); @@ -150040,14 +165431,17 @@ DO_APP_FUNC(0x015B1CA0, void, TaskFactory_1_TResult_FromAsyncTrimPromise_1_Syste DO_APP_FUNC(0x011CBE70, void, TaskFactory_1_TResult_FromAsyncTrimPromise_1_System_Int32_System_Object___ctor, (TaskFactory_1_TResult_FromAsyncTrimPromise_1_System_Int32_System_Object_ * __this, Object * thisRef, Func_3_Object_IAsyncResult_Int32_ * endMethod, MethodInfo * method)); DO_APP_FUNC(0x015B1B60, void, TaskFactory_1_TResult_FromAsyncTrimPromise_1_System_Int32_System_Object__Complete, (TaskFactory_1_TResult_FromAsyncTrimPromise_1_System_Int32_System_Object_ * __this, Object * thisRef, Func_3_Object_IAsyncResult_Int32_ * endMethod, IAsyncResult * asyncResult, bool requiresSynchronization, MethodInfo * method)); DO_APP_FUNC(0x015B18A0, void, TaskFactory_1_TResult_FromAsyncTrimPromise_1_System_Int32_System_Object__CompleteFromAsyncResult, (IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF1F0, TaskFactory_1_TResult_FromAsyncTrimPromise_1_System_Int32_System_Object__CompleteFromAsyncResult__MethodInfo); DO_APP_FUNC(0x015B21F0, void, TaskFactory_1_TResult_FromAsyncTrimPromise_1_System_Object_System_Object___cctor, (MethodInfo * method)); DO_APP_FUNC(0x011CBE70, void, TaskFactory_1_TResult_FromAsyncTrimPromise_1_System_Object_System_Object___ctor, (TaskFactory_1_TResult_FromAsyncTrimPromise_1_System_Object_System_Object_ * __this, Object * thisRef, Func_3_Object_IAsyncResult_Object_ * endMethod, MethodInfo * method)); DO_APP_FUNC(0x015B20B0, void, TaskFactory_1_TResult_FromAsyncTrimPromise_1_System_Object_System_Object__Complete, (TaskFactory_1_TResult_FromAsyncTrimPromise_1_System_Object_System_Object_ * __this, Object * thisRef, Func_3_Object_IAsyncResult_Object_ * endMethod, IAsyncResult * asyncResult, bool requiresSynchronization, MethodInfo * method)); DO_APP_FUNC(0x015B1DF0, void, TaskFactory_1_TResult_FromAsyncTrimPromise_1_System_Object_System_Object__CompleteFromAsyncResult, (IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF218, TaskFactory_1_TResult_FromAsyncTrimPromise_1_System_Object_System_Object__CompleteFromAsyncResult__MethodInfo); DO_APP_FUNC(0x015B2740, void, TaskFactory_1_TResult_FromAsyncTrimPromise_1_VoidTaskResult_System_Object___cctor, (MethodInfo * method)); DO_APP_FUNC(0x011CBE70, void, TaskFactory_1_TResult_FromAsyncTrimPromise_1_VoidTaskResult_System_Object___ctor, (TaskFactory_1_TResult_FromAsyncTrimPromise_1_VoidTaskResult_System_Object_ * __this, Object * thisRef, Func_3_Object_IAsyncResult_System_Threading_Tasks_VoidTaskResult_ * endMethod, MethodInfo * method)); DO_APP_FUNC(0x015B2600, void, TaskFactory_1_TResult_FromAsyncTrimPromise_1_VoidTaskResult_System_Object__Complete, (TaskFactory_1_TResult_FromAsyncTrimPromise_1_VoidTaskResult_System_Object_ * __this, Object * thisRef, Func_3_Object_IAsyncResult_System_Threading_Tasks_VoidTaskResult_ * endMethod, IAsyncResult * asyncResult, bool requiresSynchronization, MethodInfo * method)); DO_APP_FUNC(0x015B2340, void, TaskFactory_1_TResult_FromAsyncTrimPromise_1_VoidTaskResult_System_Object__CompleteFromAsyncResult, (IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF1B0, TaskFactory_1_TResult_FromAsyncTrimPromise_1_VoidTaskResult_System_Object__CompleteFromAsyncResult__MethodInfo); DO_APP_FUNC(0x015B2890, void, FullExpression_1_System_Object___ctor, (FullExpression_1_System_Object_ * __this, Expression_1 * body, String * name, bool tailCall, IReadOnlyList_1_System_Linq_Expressions_ParameterExpression_ * parameters, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, String *, FullExpression_1_System_Object__get_NameCore, (FullExpression_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00424C10, bool, FullExpression_1_System_Object__get_TailCallCore, (FullExpression_1_System_Object_ * __this, MethodInfo * method)); @@ -150701,6 +166095,7 @@ DO_APP_FUNC(0x015C0D60, int32_t, GaussianWindow1d_1_System_Object__get_KernelSiz DO_APP_FUNC(0x003CC900, float, GaussianWindow1d_1_System_Object__get_Sigma, (GaussianWindow1d_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003CC910, void, GaussianWindow1d_1_System_Object__set_Sigma, (GaussianWindow1d_1_System_Object_ * __this, float value, MethodInfo * method)); DO_APP_FUNC(0x015C0FF0, void, GaussianWindow1d_1_UnityEngine_Quaternion___ctor, (GaussianWindow1d_1_UnityEngine_Quaternion_ * __this, float sigma, int32_t maxKernelRadius, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD17B0, GaussianWindow1d_1_UnityEngine_Quaternion___ctor__MethodInfo); DO_APP_FUNC(0x015C1630, void, GaussianWindow1d_1_UnityEngine_Quaternion__AddValue, (GaussianWindow1d_1_UnityEngine_Quaternion_ * __this, Quaternion v, MethodInfo * method)); DO_APP_FUNC(0x015C1790, Quaternion, GaussianWindow1d_1_UnityEngine_Quaternion__Filter, (GaussianWindow1d_1_UnityEngine_Quaternion_ * __this, Quaternion v, MethodInfo * method)); DO_APP_FUNC(0x015C13C0, void, GaussianWindow1d_1_UnityEngine_Quaternion__GenerateKernel, (GaussianWindow1d_1_UnityEngine_Quaternion_ * __this, float sigma, int32_t maxKernelRadius, MethodInfo * method)); @@ -150711,9 +166106,11 @@ DO_APP_FUNC(0x015C1890, void, GaussianWindow1d_1_UnityEngine_Quaternion__SetBuff DO_APP_FUNC(0x015C1850, Quaternion, GaussianWindow1d_1_UnityEngine_Quaternion__Value, (GaussianWindow1d_1_UnityEngine_Quaternion_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, GaussianWindow1d_1_UnityEngine_Quaternion__get_BufferLength, (GaussianWindow1d_1_UnityEngine_Quaternion_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015C0D60, int32_t, GaussianWindow1d_1_UnityEngine_Quaternion__get_KernelSize, (GaussianWindow1d_1_UnityEngine_Quaternion_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1790, GaussianWindow1d_1_UnityEngine_Quaternion__get_KernelSize__MethodInfo); DO_APP_FUNC(0x003CC900, float, GaussianWindow1d_1_UnityEngine_Quaternion__get_Sigma, (GaussianWindow1d_1_UnityEngine_Quaternion_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003CC910, void, GaussianWindow1d_1_UnityEngine_Quaternion__set_Sigma, (GaussianWindow1d_1_UnityEngine_Quaternion_ * __this, float value, MethodInfo * method)); DO_APP_FUNC(0x015C0FF0, void, GaussianWindow1d_1_UnityEngine_Vector2___ctor, (GaussianWindow1d_1_UnityEngine_Vector2_ * __this, float sigma, int32_t maxKernelRadius, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1798, GaussianWindow1d_1_UnityEngine_Vector2___ctor__MethodInfo); DO_APP_FUNC(0x015C1B80, void, GaussianWindow1d_1_UnityEngine_Vector2__AddValue, (GaussianWindow1d_1_UnityEngine_Vector2_ * __this, Vector2 v, MethodInfo * method)); DO_APP_FUNC(0x015C1D00, Vector2, GaussianWindow1d_1_UnityEngine_Vector2__Filter, (GaussianWindow1d_1_UnityEngine_Vector2_ * __this, Vector2 v, MethodInfo * method)); DO_APP_FUNC(0x015C1910, void, GaussianWindow1d_1_UnityEngine_Vector2__GenerateKernel, (GaussianWindow1d_1_UnityEngine_Vector2_ * __this, float sigma, int32_t maxKernelRadius, MethodInfo * method)); @@ -150724,9 +166121,11 @@ DO_APP_FUNC(0x015C1DC0, void, GaussianWindow1d_1_UnityEngine_Vector2__SetBufferV DO_APP_FUNC(0x015C1DA0, Vector2, GaussianWindow1d_1_UnityEngine_Vector2__Value, (GaussianWindow1d_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, GaussianWindow1d_1_UnityEngine_Vector2__get_BufferLength, (GaussianWindow1d_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015C0D60, int32_t, GaussianWindow1d_1_UnityEngine_Vector2__get_KernelSize, (GaussianWindow1d_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1778, GaussianWindow1d_1_UnityEngine_Vector2__get_KernelSize__MethodInfo); DO_APP_FUNC(0x003CC900, float, GaussianWindow1d_1_UnityEngine_Vector2__get_Sigma, (GaussianWindow1d_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003CC910, void, GaussianWindow1d_1_UnityEngine_Vector2__set_Sigma, (GaussianWindow1d_1_UnityEngine_Vector2_ * __this, float value, MethodInfo * method)); DO_APP_FUNC(0x015C0FF0, void, GaussianWindow1d_1_UnityEngine_Vector3___ctor, (GaussianWindow1d_1_UnityEngine_Vector3_ * __this, float sigma, int32_t maxKernelRadius, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1800, GaussianWindow1d_1_UnityEngine_Vector3___ctor__MethodInfo); DO_APP_FUNC(0x015C20C0, void, GaussianWindow1d_1_UnityEngine_Vector3__AddValue, (GaussianWindow1d_1_UnityEngine_Vector3_ * __this, Vector3 v, MethodInfo * method)); DO_APP_FUNC(0x015C2230, Vector3, GaussianWindow1d_1_UnityEngine_Vector3__Filter, (GaussianWindow1d_1_UnityEngine_Vector3_ * __this, Vector3 v, MethodInfo * method)); DO_APP_FUNC(0x015C1E50, void, GaussianWindow1d_1_UnityEngine_Vector3__GenerateKernel, (GaussianWindow1d_1_UnityEngine_Vector3_ * __this, float sigma, int32_t maxKernelRadius, MethodInfo * method)); @@ -150737,6 +166136,7 @@ DO_APP_FUNC(0x015C2340, void, GaussianWindow1d_1_UnityEngine_Vector3__SetBufferV DO_APP_FUNC(0x015C2300, Vector3, GaussianWindow1d_1_UnityEngine_Vector3__Value, (GaussianWindow1d_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, GaussianWindow1d_1_UnityEngine_Vector3__get_BufferLength, (GaussianWindow1d_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015C0D60, int32_t, GaussianWindow1d_1_UnityEngine_Vector3__get_KernelSize, (GaussianWindow1d_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD17E0, GaussianWindow1d_1_UnityEngine_Vector3__get_KernelSize__MethodInfo); DO_APP_FUNC(0x003CC900, float, GaussianWindow1d_1_UnityEngine_Vector3__get_Sigma, (GaussianWindow1d_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003CC910, void, GaussianWindow1d_1_UnityEngine_Vector3__set_Sigma, (GaussianWindow1d_1_UnityEngine_Vector3_ * __this, float value, MethodInfo * method)); DO_APP_FUNC(0x015A5480, void, GenericComparer_1_System_ValueTuple_1___ctor, (GenericComparer_1_System_ValueTuple_1_ * __this, MethodInfo * method)); @@ -150872,6 +166272,7 @@ DO_APP_FUNC(0x015C2E20, int32_t, GenericComparer_1_Pathfinding_AdvancedSmooth_Tu DO_APP_FUNC(0x015C2400, bool, GenericComparer_1_Pathfinding_AdvancedSmooth_Turn__Equals, (GenericComparer_1_Pathfinding_AdvancedSmooth_Turn_ * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x01431530, int32_t, GenericComparer_1_Pathfinding_AdvancedSmooth_Turn__GetHashCode, (GenericComparer_1_Pathfinding_AdvancedSmooth_Turn_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Preset_GenericDelegate_1_System_Boolean___ctor, (Preset_GenericDelegate_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C950, Preset_GenericDelegate_1_System_Boolean___ctor__MethodInfo); DO_APP_FUNC(0x015C3D30, void, Preset_GenericDelegate_1_System_Boolean__ApplyValue, (Preset_GenericDelegate_1_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015C3440, void, Preset_GenericDelegate_1_System_Boolean__Initialize, (Preset_GenericDelegate_1_System_Boolean_ * __this, Object * obj, PropertyInfo_1 * property, MemberVisibility__Enum visibility, MethodInfo * method)); DO_APP_FUNC(0x015C2EA0, void, Preset_GenericDelegate_1_System_Boolean__Initialize_1, (Preset_GenericDelegate_1_System_Boolean_ * __this, Object * obj, PropertyInfo_1 * property, Dictionary_2_System_Int32_System_Int32_ * valuePositionMap, Serialization * data, MemberVisibility__Enum visibility, MethodInfo * method)); @@ -150879,6 +166280,7 @@ DO_APP_FUNC(0x015C3DF0, void, Preset_GenericDelegate_1_System_Boolean__UpdateILi DO_APP_FUNC(0x015C3C20, void, Preset_GenericDelegate_1_System_Boolean__UpdateValue, (Preset_GenericDelegate_1_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, MethodInfo_1 *, Preset_GenericDelegate_1_System_Boolean__get_SetMethod, (Preset_GenericDelegate_1_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Preset_GenericDelegate_1_System_Byte___ctor, (Preset_GenericDelegate_1_System_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C9F8, Preset_GenericDelegate_1_System_Byte___ctor__MethodInfo); DO_APP_FUNC(0x015C3D30, void, Preset_GenericDelegate_1_System_Byte__ApplyValue, (Preset_GenericDelegate_1_System_Byte_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015C46F0, void, Preset_GenericDelegate_1_System_Byte__Initialize, (Preset_GenericDelegate_1_System_Byte_ * __this, Object * obj, PropertyInfo_1 * property, MemberVisibility__Enum visibility, MethodInfo * method)); DO_APP_FUNC(0x015C4150, void, Preset_GenericDelegate_1_System_Byte__Initialize_1, (Preset_GenericDelegate_1_System_Byte_ * __this, Object * obj, PropertyInfo_1 * property, Dictionary_2_System_Int32_System_Int32_ * valuePositionMap, Serialization * data, MemberVisibility__Enum visibility, MethodInfo * method)); @@ -150886,6 +166288,7 @@ DO_APP_FUNC(0x015C4FE0, void, Preset_GenericDelegate_1_System_Byte__UpdateIList, DO_APP_FUNC(0x015C4ED0, void, Preset_GenericDelegate_1_System_Byte__UpdateValue, (Preset_GenericDelegate_1_System_Byte_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, MethodInfo_1 *, Preset_GenericDelegate_1_System_Byte__get_SetMethod, (Preset_GenericDelegate_1_System_Byte_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Preset_GenericDelegate_1_UnityEngine_Color___ctor, (Preset_GenericDelegate_1_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C908, Preset_GenericDelegate_1_UnityEngine_Color___ctor__MethodInfo); DO_APP_FUNC(0x015C61F0, void, Preset_GenericDelegate_1_UnityEngine_Color__ApplyValue, (Preset_GenericDelegate_1_UnityEngine_Color_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015C58E0, void, Preset_GenericDelegate_1_UnityEngine_Color__Initialize, (Preset_GenericDelegate_1_UnityEngine_Color_ * __this, Object * obj, PropertyInfo_1 * property, MemberVisibility__Enum visibility, MethodInfo * method)); DO_APP_FUNC(0x015C5340, void, Preset_GenericDelegate_1_UnityEngine_Color__Initialize_1, (Preset_GenericDelegate_1_UnityEngine_Color_ * __this, Object * obj, PropertyInfo_1 * property, Dictionary_2_System_Int32_System_Int32_ * valuePositionMap, Serialization * data, MemberVisibility__Enum visibility, MethodInfo * method)); @@ -150893,6 +166296,7 @@ DO_APP_FUNC(0x015C62D0, void, Preset_GenericDelegate_1_UnityEngine_Color__Update DO_APP_FUNC(0x015C60E0, void, Preset_GenericDelegate_1_UnityEngine_Color__UpdateValue, (Preset_GenericDelegate_1_UnityEngine_Color_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, MethodInfo_1 *, Preset_GenericDelegate_1_UnityEngine_Color__get_SetMethod, (Preset_GenericDelegate_1_UnityEngine_Color_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Preset_GenericDelegate_1_System_Double___ctor, (Preset_GenericDelegate_1_System_Double_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1CA88, Preset_GenericDelegate_1_System_Double___ctor__MethodInfo); DO_APP_FUNC(0x015C74E0, void, Preset_GenericDelegate_1_System_Double__ApplyValue, (Preset_GenericDelegate_1_System_Double_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015C6BF0, void, Preset_GenericDelegate_1_System_Double__Initialize, (Preset_GenericDelegate_1_System_Double_ * __this, Object * obj, PropertyInfo_1 * property, MemberVisibility__Enum visibility, MethodInfo * method)); DO_APP_FUNC(0x015C6650, void, Preset_GenericDelegate_1_System_Double__Initialize_1, (Preset_GenericDelegate_1_System_Double_ * __this, Object * obj, PropertyInfo_1 * property, Dictionary_2_System_Int32_System_Int32_ * valuePositionMap, Serialization * data, MemberVisibility__Enum visibility, MethodInfo * method)); @@ -150900,6 +166304,7 @@ DO_APP_FUNC(0x015C75A0, void, Preset_GenericDelegate_1_System_Double__UpdateILis DO_APP_FUNC(0x015C73D0, void, Preset_GenericDelegate_1_System_Double__UpdateValue, (Preset_GenericDelegate_1_System_Double_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, MethodInfo_1 *, Preset_GenericDelegate_1_System_Double__get_SetMethod, (Preset_GenericDelegate_1_System_Double_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Preset_GenericDelegate_1_System_Int32___ctor, (Preset_GenericDelegate_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1CA48, Preset_GenericDelegate_1_System_Int32___ctor__MethodInfo); DO_APP_FUNC(0x015C87D0, void, Preset_GenericDelegate_1_System_Int32__ApplyValue, (Preset_GenericDelegate_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015C7EE0, void, Preset_GenericDelegate_1_System_Int32__Initialize, (Preset_GenericDelegate_1_System_Int32_ * __this, Object * obj, PropertyInfo_1 * property, MemberVisibility__Enum visibility, MethodInfo * method)); DO_APP_FUNC(0x015C7940, void, Preset_GenericDelegate_1_System_Int32__Initialize_1, (Preset_GenericDelegate_1_System_Int32_ * __this, Object * obj, PropertyInfo_1 * property, Dictionary_2_System_Int32_System_Int32_ * valuePositionMap, Serialization * data, MemberVisibility__Enum visibility, MethodInfo * method)); @@ -150914,6 +166319,7 @@ DO_APP_FUNC(0x015C9A70, void, Preset_GenericDelegate_1_System_Int32Enum__UpdateI DO_APP_FUNC(0x015C9960, void, Preset_GenericDelegate_1_System_Int32Enum__UpdateValue, (Preset_GenericDelegate_1_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, MethodInfo_1 *, Preset_GenericDelegate_1_System_Int32Enum__get_SetMethod, (Preset_GenericDelegate_1_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Preset_GenericDelegate_1_System_Int64___ctor, (Preset_GenericDelegate_1_System_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C960, Preset_GenericDelegate_1_System_Int64___ctor__MethodInfo); DO_APP_FUNC(0x015CAC50, void, Preset_GenericDelegate_1_System_Int64__ApplyValue, (Preset_GenericDelegate_1_System_Int64_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015CA360, void, Preset_GenericDelegate_1_System_Int64__Initialize, (Preset_GenericDelegate_1_System_Int64_ * __this, Object * obj, PropertyInfo_1 * property, MemberVisibility__Enum visibility, MethodInfo * method)); DO_APP_FUNC(0x015C9DC0, void, Preset_GenericDelegate_1_System_Int64__Initialize_1, (Preset_GenericDelegate_1_System_Int64_ * __this, Object * obj, PropertyInfo_1 * property, Dictionary_2_System_Int32_System_Int32_ * valuePositionMap, Serialization * data, MemberVisibility__Enum visibility, MethodInfo * method)); @@ -150921,6 +166327,7 @@ DO_APP_FUNC(0x015CAD10, void, Preset_GenericDelegate_1_System_Int64__UpdateIList DO_APP_FUNC(0x015CAB40, void, Preset_GenericDelegate_1_System_Int64__UpdateValue, (Preset_GenericDelegate_1_System_Int64_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, MethodInfo_1 *, Preset_GenericDelegate_1_System_Int64__get_SetMethod, (Preset_GenericDelegate_1_System_Int64_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Preset_GenericDelegate_1_UnityEngine_LayerMask___ctor, (Preset_GenericDelegate_1_UnityEngine_LayerMask_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1CA60, Preset_GenericDelegate_1_UnityEngine_LayerMask___ctor__MethodInfo); DO_APP_FUNC(0x015CBF00, void, Preset_GenericDelegate_1_UnityEngine_LayerMask__ApplyValue, (Preset_GenericDelegate_1_UnityEngine_LayerMask_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015CB610, void, Preset_GenericDelegate_1_UnityEngine_LayerMask__Initialize, (Preset_GenericDelegate_1_UnityEngine_LayerMask_ * __this, Object * obj, PropertyInfo_1 * property, MemberVisibility__Enum visibility, MethodInfo * method)); DO_APP_FUNC(0x015CB070, void, Preset_GenericDelegate_1_UnityEngine_LayerMask__Initialize_1, (Preset_GenericDelegate_1_UnityEngine_LayerMask_ * __this, Object * obj, PropertyInfo_1 * property, Dictionary_2_System_Int32_System_Int32_ * valuePositionMap, Serialization * data, MemberVisibility__Enum visibility, MethodInfo * method)); @@ -150928,6 +166335,7 @@ DO_APP_FUNC(0x015CBFC0, void, Preset_GenericDelegate_1_UnityEngine_LayerMask__Up DO_APP_FUNC(0x015CBDF0, void, Preset_GenericDelegate_1_UnityEngine_LayerMask__UpdateValue, (Preset_GenericDelegate_1_UnityEngine_LayerMask_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, MethodInfo_1 *, Preset_GenericDelegate_1_UnityEngine_LayerMask__get_SetMethod, (Preset_GenericDelegate_1_UnityEngine_LayerMask_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Preset_GenericDelegate_1_UnityEngine_Matrix4x4___ctor, (Preset_GenericDelegate_1_UnityEngine_Matrix4x4_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1CA00, Preset_GenericDelegate_1_UnityEngine_Matrix4x4___ctor__MethodInfo); DO_APP_FUNC(0x015CD290, void, Preset_GenericDelegate_1_UnityEngine_Matrix4x4__ApplyValue, (Preset_GenericDelegate_1_UnityEngine_Matrix4x4_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015CC8D0, void, Preset_GenericDelegate_1_UnityEngine_Matrix4x4__Initialize, (Preset_GenericDelegate_1_UnityEngine_Matrix4x4_ * __this, Object * obj, PropertyInfo_1 * property, MemberVisibility__Enum visibility, MethodInfo * method)); DO_APP_FUNC(0x015CC310, void, Preset_GenericDelegate_1_UnityEngine_Matrix4x4__Initialize_1, (Preset_GenericDelegate_1_UnityEngine_Matrix4x4_ * __this, Object * obj, PropertyInfo_1 * property, Dictionary_2_System_Int32_System_Int32_ * valuePositionMap, Serialization * data, MemberVisibility__Enum visibility, MethodInfo * method)); @@ -150935,6 +166343,7 @@ DO_APP_FUNC(0x015CD410, void, Preset_GenericDelegate_1_UnityEngine_Matrix4x4__Up DO_APP_FUNC(0x015CD110, void, Preset_GenericDelegate_1_UnityEngine_Matrix4x4__UpdateValue, (Preset_GenericDelegate_1_UnityEngine_Matrix4x4_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7420, MethodInfo_1 *, Preset_GenericDelegate_1_UnityEngine_Matrix4x4__get_SetMethod, (Preset_GenericDelegate_1_UnityEngine_Matrix4x4_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Utility_MinMaxFloat___ctor, (Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Utility_MinMaxFloat_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C9C0, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Utility_MinMaxFloat___ctor__MethodInfo); DO_APP_FUNC(0x015CE6A0, void, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Utility_MinMaxFloat__ApplyValue, (Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Utility_MinMaxFloat_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015CDDB0, void, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Utility_MinMaxFloat__Initialize, (Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Utility_MinMaxFloat_ * __this, Object * obj, PropertyInfo_1 * property, MemberVisibility__Enum visibility, MethodInfo * method)); DO_APP_FUNC(0x015CD810, void, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Utility_MinMaxFloat__Initialize_1, (Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Utility_MinMaxFloat_ * __this, Object * obj, PropertyInfo_1 * property, Dictionary_2_System_Int32_System_Int32_ * valuePositionMap, Serialization * data, MemberVisibility__Enum visibility, MethodInfo * method)); @@ -150942,6 +166351,7 @@ DO_APP_FUNC(0x015CE770, void, Preset_GenericDelegate_1_Opsive_UltimateCharacterC DO_APP_FUNC(0x015CE580, void, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Utility_MinMaxFloat__UpdateValue, (Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Utility_MinMaxFloat_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, MethodInfo_1 *, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Utility_MinMaxFloat__get_SetMethod, (Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Utility_MinMaxFloat_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Utility_MinMaxVector3___ctor, (Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Utility_MinMaxVector3_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C8A8, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Utility_MinMaxVector3___ctor__MethodInfo); DO_APP_FUNC(0x015CFA40, void, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Utility_MinMaxVector3__ApplyValue, (Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Utility_MinMaxVector3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015CF0D0, void, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Utility_MinMaxVector3__Initialize, (Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Utility_MinMaxVector3_ * __this, Object * obj, PropertyInfo_1 * property, MemberVisibility__Enum visibility, MethodInfo * method)); DO_APP_FUNC(0x015CEB20, void, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Utility_MinMaxVector3__Initialize_1, (Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Utility_MinMaxVector3_ * __this, Object * obj, PropertyInfo_1 * property, Dictionary_2_System_Int32_System_Int32_ * valuePositionMap, Serialization * data, MemberVisibility__Enum visibility, MethodInfo * method)); @@ -150956,6 +166366,7 @@ DO_APP_FUNC(0x015D0FF0, void, Preset_GenericDelegate_1_System_Object__UpdateILis DO_APP_FUNC(0x015D0E90, void, Preset_GenericDelegate_1_System_Object__UpdateValue, (Preset_GenericDelegate_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, MethodInfo_1 *, Preset_GenericDelegate_1_System_Object__get_SetMethod, (Preset_GenericDelegate_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___ctor, (Preset_GenericDelegate_1_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C978, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___ctor__MethodInfo); DO_APP_FUNC(0x015C61F0, void, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__ApplyValue, (Preset_GenericDelegate_1_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015D1CD0, void, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__Initialize, (Preset_GenericDelegate_1_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, Object * obj, PropertyInfo_1 * property, MemberVisibility__Enum visibility, MethodInfo * method)); DO_APP_FUNC(0x015D1720, void, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__Initialize_1, (Preset_GenericDelegate_1_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, Object * obj, PropertyInfo_1 * property, Dictionary_2_System_Int32_System_Int32_ * valuePositionMap, Serialization * data, MemberVisibility__Enum visibility, MethodInfo * method)); @@ -150963,6 +166374,7 @@ DO_APP_FUNC(0x015D26D0, void, Preset_GenericDelegate_1_Opsive_UltimateCharacterC DO_APP_FUNC(0x015D2570, void, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__UpdateValue, (Preset_GenericDelegate_1_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, MethodInfo_1 *, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__get_SetMethod, (Preset_GenericDelegate_1_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Preset_GenericDelegate_1_UnityEngine_Quaternion___ctor, (Preset_GenericDelegate_1_UnityEngine_Quaternion_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C970, Preset_GenericDelegate_1_UnityEngine_Quaternion___ctor__MethodInfo); DO_APP_FUNC(0x015C61F0, void, Preset_GenericDelegate_1_UnityEngine_Quaternion__ApplyValue, (Preset_GenericDelegate_1_UnityEngine_Quaternion_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015D2FF0, void, Preset_GenericDelegate_1_UnityEngine_Quaternion__Initialize, (Preset_GenericDelegate_1_UnityEngine_Quaternion_ * __this, Object * obj, PropertyInfo_1 * property, MemberVisibility__Enum visibility, MethodInfo * method)); DO_APP_FUNC(0x015D2A50, void, Preset_GenericDelegate_1_UnityEngine_Quaternion__Initialize_1, (Preset_GenericDelegate_1_UnityEngine_Quaternion_ * __this, Object * obj, PropertyInfo_1 * property, Dictionary_2_System_Int32_System_Int32_ * valuePositionMap, Serialization * data, MemberVisibility__Enum visibility, MethodInfo * method)); @@ -150970,6 +166382,7 @@ DO_APP_FUNC(0x015D3900, void, Preset_GenericDelegate_1_UnityEngine_Quaternion__U DO_APP_FUNC(0x015D37F0, void, Preset_GenericDelegate_1_UnityEngine_Quaternion__UpdateValue, (Preset_GenericDelegate_1_UnityEngine_Quaternion_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, MethodInfo_1 *, Preset_GenericDelegate_1_UnityEngine_Quaternion__get_SetMethod, (Preset_GenericDelegate_1_UnityEngine_Quaternion_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Preset_GenericDelegate_1_UnityEngine_Rect___ctor, (Preset_GenericDelegate_1_UnityEngine_Rect_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C9C8, Preset_GenericDelegate_1_UnityEngine_Rect___ctor__MethodInfo); DO_APP_FUNC(0x015C61F0, void, Preset_GenericDelegate_1_UnityEngine_Rect__ApplyValue, (Preset_GenericDelegate_1_UnityEngine_Rect_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015D4220, void, Preset_GenericDelegate_1_UnityEngine_Rect__Initialize, (Preset_GenericDelegate_1_UnityEngine_Rect_ * __this, Object * obj, PropertyInfo_1 * property, MemberVisibility__Enum visibility, MethodInfo * method)); DO_APP_FUNC(0x015D3C80, void, Preset_GenericDelegate_1_UnityEngine_Rect__Initialize_1, (Preset_GenericDelegate_1_UnityEngine_Rect_ * __this, Object * obj, PropertyInfo_1 * property, Dictionary_2_System_Int32_System_Int32_ * valuePositionMap, Serialization * data, MemberVisibility__Enum visibility, MethodInfo * method)); @@ -150977,6 +166390,7 @@ DO_APP_FUNC(0x015D4B30, void, Preset_GenericDelegate_1_UnityEngine_Rect__UpdateI DO_APP_FUNC(0x015D4A20, void, Preset_GenericDelegate_1_UnityEngine_Rect__UpdateValue, (Preset_GenericDelegate_1_UnityEngine_Rect_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, MethodInfo_1 *, Preset_GenericDelegate_1_UnityEngine_Rect__get_SetMethod, (Preset_GenericDelegate_1_UnityEngine_Rect_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Preset_GenericDelegate_1_System_Single___ctor, (Preset_GenericDelegate_1_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C8E0, Preset_GenericDelegate_1_System_Single___ctor__MethodInfo); DO_APP_FUNC(0x015D5D40, void, Preset_GenericDelegate_1_System_Single__ApplyValue, (Preset_GenericDelegate_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015D5450, void, Preset_GenericDelegate_1_System_Single__Initialize, (Preset_GenericDelegate_1_System_Single_ * __this, Object * obj, PropertyInfo_1 * property, MemberVisibility__Enum visibility, MethodInfo * method)); DO_APP_FUNC(0x015D4EB0, void, Preset_GenericDelegate_1_System_Single__Initialize_1, (Preset_GenericDelegate_1_System_Single_ * __this, Object * obj, PropertyInfo_1 * property, Dictionary_2_System_Int32_System_Int32_ * valuePositionMap, Serialization * data, MemberVisibility__Enum visibility, MethodInfo * method)); @@ -150984,6 +166398,7 @@ DO_APP_FUNC(0x015D5E00, void, Preset_GenericDelegate_1_System_Single__UpdateILis DO_APP_FUNC(0x015D5C30, void, Preset_GenericDelegate_1_System_Single__UpdateValue, (Preset_GenericDelegate_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, MethodInfo_1 *, Preset_GenericDelegate_1_System_Single__get_SetMethod, (Preset_GenericDelegate_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Preset_GenericDelegate_1_System_UInt32___ctor, (Preset_GenericDelegate_1_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1CA40, Preset_GenericDelegate_1_System_UInt32___ctor__MethodInfo); DO_APP_FUNC(0x015C87D0, void, Preset_GenericDelegate_1_System_UInt32__ApplyValue, (Preset_GenericDelegate_1_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015D6740, void, Preset_GenericDelegate_1_System_UInt32__Initialize, (Preset_GenericDelegate_1_System_UInt32_ * __this, Object * obj, PropertyInfo_1 * property, MemberVisibility__Enum visibility, MethodInfo * method)); DO_APP_FUNC(0x015D61A0, void, Preset_GenericDelegate_1_System_UInt32__Initialize_1, (Preset_GenericDelegate_1_System_UInt32_ * __this, Object * obj, PropertyInfo_1 * property, Dictionary_2_System_Int32_System_Int32_ * valuePositionMap, Serialization * data, MemberVisibility__Enum visibility, MethodInfo * method)); @@ -150991,6 +166406,7 @@ DO_APP_FUNC(0x015D7030, void, Preset_GenericDelegate_1_System_UInt32__UpdateILis DO_APP_FUNC(0x015D6F20, void, Preset_GenericDelegate_1_System_UInt32__UpdateValue, (Preset_GenericDelegate_1_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, MethodInfo_1 *, Preset_GenericDelegate_1_System_UInt32__get_SetMethod, (Preset_GenericDelegate_1_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture___ctor, (Preset_GenericDelegate_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1CA58, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture___ctor__MethodInfo); DO_APP_FUNC(0x015D8390, void, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__ApplyValue, (Preset_GenericDelegate_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015D7930, void, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__Initialize, (Preset_GenericDelegate_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ * __this, Object * obj, PropertyInfo_1 * property, MemberVisibility__Enum visibility, MethodInfo * method)); DO_APP_FUNC(0x015D7380, void, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__Initialize_1, (Preset_GenericDelegate_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ * __this, Object * obj, PropertyInfo_1 * property, Dictionary_2_System_Int32_System_Int32_ * valuePositionMap, Serialization * data, MemberVisibility__Enum visibility, MethodInfo * method)); @@ -150998,6 +166414,7 @@ DO_APP_FUNC(0x015D84B0, void, Preset_GenericDelegate_1_Opsive_UltimateCharacterC DO_APP_FUNC(0x015D8200, void, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__UpdateValue, (Preset_GenericDelegate_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3B0, MethodInfo_1 *, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__get_SetMethod, (Preset_GenericDelegate_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Preset_GenericDelegate_1_UnityEngine_Vector2___ctor, (Preset_GenericDelegate_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C9D8, Preset_GenericDelegate_1_UnityEngine_Vector2___ctor__MethodInfo); DO_APP_FUNC(0x015CE6A0, void, Preset_GenericDelegate_1_UnityEngine_Vector2__ApplyValue, (Preset_GenericDelegate_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015D8E10, void, Preset_GenericDelegate_1_UnityEngine_Vector2__Initialize, (Preset_GenericDelegate_1_UnityEngine_Vector2_ * __this, Object * obj, PropertyInfo_1 * property, MemberVisibility__Enum visibility, MethodInfo * method)); DO_APP_FUNC(0x015D8870, void, Preset_GenericDelegate_1_UnityEngine_Vector2__Initialize_1, (Preset_GenericDelegate_1_UnityEngine_Vector2_ * __this, Object * obj, PropertyInfo_1 * property, Dictionary_2_System_Int32_System_Int32_ * valuePositionMap, Serialization * data, MemberVisibility__Enum visibility, MethodInfo * method)); @@ -151005,6 +166422,7 @@ DO_APP_FUNC(0x015D9700, void, Preset_GenericDelegate_1_UnityEngine_Vector2__Upda DO_APP_FUNC(0x015D95E0, void, Preset_GenericDelegate_1_UnityEngine_Vector2__UpdateValue, (Preset_GenericDelegate_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, MethodInfo_1 *, Preset_GenericDelegate_1_UnityEngine_Vector2__get_SetMethod, (Preset_GenericDelegate_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Preset_GenericDelegate_1_UnityEngine_Vector3___ctor, (Preset_GenericDelegate_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1CA50, Preset_GenericDelegate_1_UnityEngine_Vector3___ctor__MethodInfo); DO_APP_FUNC(0x015DA9A0, void, Preset_GenericDelegate_1_UnityEngine_Vector3__ApplyValue, (Preset_GenericDelegate_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015DA060, void, Preset_GenericDelegate_1_UnityEngine_Vector3__Initialize, (Preset_GenericDelegate_1_UnityEngine_Vector3_ * __this, Object * obj, PropertyInfo_1 * property, MemberVisibility__Enum visibility, MethodInfo * method)); DO_APP_FUNC(0x015D9AB0, void, Preset_GenericDelegate_1_UnityEngine_Vector3__Initialize_1, (Preset_GenericDelegate_1_UnityEngine_Vector3_ * __this, Object * obj, PropertyInfo_1 * property, Dictionary_2_System_Int32_System_Int32_ * valuePositionMap, Serialization * data, MemberVisibility__Enum visibility, MethodInfo * method)); @@ -151012,6 +166430,7 @@ DO_APP_FUNC(0x015DAAA0, void, Preset_GenericDelegate_1_UnityEngine_Vector3__Upda DO_APP_FUNC(0x015DA870, void, Preset_GenericDelegate_1_UnityEngine_Vector3__UpdateValue, (Preset_GenericDelegate_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, MethodInfo_1 *, Preset_GenericDelegate_1_UnityEngine_Vector3__get_SetMethod, (Preset_GenericDelegate_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Preset_GenericDelegate_1_UnityEngine_Vector4___ctor, (Preset_GenericDelegate_1_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C8C8, Preset_GenericDelegate_1_UnityEngine_Vector4___ctor__MethodInfo); DO_APP_FUNC(0x015C61F0, void, Preset_GenericDelegate_1_UnityEngine_Vector4__ApplyValue, (Preset_GenericDelegate_1_UnityEngine_Vector4_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015DB400, void, Preset_GenericDelegate_1_UnityEngine_Vector4__Initialize, (Preset_GenericDelegate_1_UnityEngine_Vector4_ * __this, Object * obj, PropertyInfo_1 * property, MemberVisibility__Enum visibility, MethodInfo * method)); DO_APP_FUNC(0x015DAE60, void, Preset_GenericDelegate_1_UnityEngine_Vector4__Initialize_1, (Preset_GenericDelegate_1_UnityEngine_Vector4_ * __this, Object * obj, PropertyInfo_1 * property, Dictionary_2_System_Int32_System_Int32_ * valuePositionMap, Serialization * data, MemberVisibility__Enum visibility, MethodInfo * method)); @@ -151019,6 +166438,7 @@ DO_APP_FUNC(0x015DBD10, void, Preset_GenericDelegate_1_UnityEngine_Vector4__Upda DO_APP_FUNC(0x015DBC00, void, Preset_GenericDelegate_1_UnityEngine_Vector4__UpdateValue, (Preset_GenericDelegate_1_UnityEngine_Vector4_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, MethodInfo_1 *, Preset_GenericDelegate_1_UnityEngine_Vector4__get_SetMethod, (Preset_GenericDelegate_1_UnityEngine_Vector4_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_Foot___ctor, (Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_Foot_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C910, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_Foot___ctor__MethodInfo); DO_APP_FUNC(0x015C61F0, void, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_Foot__ApplyValue, (Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_Foot_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015DC640, void, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_Foot__Initialize, (Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_Foot_ * __this, Object * obj, PropertyInfo_1 * property, MemberVisibility__Enum visibility, MethodInfo * method)); DO_APP_FUNC(0x015DC090, void, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_Foot__Initialize_1, (Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_Foot_ * __this, Object * obj, PropertyInfo_1 * property, Dictionary_2_System_Int32_System_Int32_ * valuePositionMap, Serialization * data, MemberVisibility__Enum visibility, MethodInfo * method)); @@ -151026,6 +166446,7 @@ DO_APP_FUNC(0x015DD040, void, Preset_GenericDelegate_1_Opsive_UltimateCharacterC DO_APP_FUNC(0x015DCEE0, void, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_Foot__UpdateValue, (Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_Foot_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, MethodInfo_1 *, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_Foot__get_SetMethod, (Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_Foot_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Starters_ComboTimeout_ComboInputElement___ctor, (Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Starters_ComboTimeout_ComboInputElement_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1CA80, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Starters_ComboTimeout_ComboInputElement___ctor__MethodInfo); DO_APP_FUNC(0x015C61F0, void, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Starters_ComboTimeout_ComboInputElement__ApplyValue, (Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Starters_ComboTimeout_ComboInputElement_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015DD970, void, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Starters_ComboTimeout_ComboInputElement__Initialize, (Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Starters_ComboTimeout_ComboInputElement_ * __this, Object * obj, PropertyInfo_1 * property, MemberVisibility__Enum visibility, MethodInfo * method)); DO_APP_FUNC(0x015DD3C0, void, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Starters_ComboTimeout_ComboInputElement__Initialize_1, (Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Starters_ComboTimeout_ComboInputElement_ * __this, Object * obj, PropertyInfo_1 * property, Dictionary_2_System_Int32_System_Int32_ * valuePositionMap, Serialization * data, MemberVisibility__Enum visibility, MethodInfo * method)); @@ -151033,6 +166454,7 @@ DO_APP_FUNC(0x015DE370, void, Preset_GenericDelegate_1_Opsive_UltimateCharacterC DO_APP_FUNC(0x015DE210, void, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Starters_ComboTimeout_ComboInputElement__UpdateValue, (Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Starters_ComboTimeout_ComboInputElement_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, MethodInfo_1 *, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Starters_ComboTimeout_ComboInputElement__get_SetMethod, (Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Starters_ComboTimeout_ComboInputElement_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_UI_HealthFlashMonitor_Flash___ctor, (Preset_GenericDelegate_1_Opsive_UltimateCharacterController_UI_HealthFlashMonitor_Flash_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C9E8, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_UI_HealthFlashMonitor_Flash___ctor__MethodInfo); DO_APP_FUNC(0x015DF760, void, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_UI_HealthFlashMonitor_Flash__ApplyValue, (Preset_GenericDelegate_1_Opsive_UltimateCharacterController_UI_HealthFlashMonitor_Flash_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015DECB0, void, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_UI_HealthFlashMonitor_Flash__Initialize, (Preset_GenericDelegate_1_Opsive_UltimateCharacterController_UI_HealthFlashMonitor_Flash_ * __this, Object * obj, PropertyInfo_1 * property, MemberVisibility__Enum visibility, MethodInfo * method)); DO_APP_FUNC(0x015DE6F0, void, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_UI_HealthFlashMonitor_Flash__Initialize_1, (Preset_GenericDelegate_1_Opsive_UltimateCharacterController_UI_HealthFlashMonitor_Flash_ * __this, Object * obj, PropertyInfo_1 * property, Dictionary_2_System_Int32_System_Int32_ * valuePositionMap, Serialization * data, MemberVisibility__Enum visibility, MethodInfo * method)); @@ -151040,6 +166462,7 @@ DO_APP_FUNC(0x015DF8B0, void, Preset_GenericDelegate_1_Opsive_UltimateCharacterC DO_APP_FUNC(0x015DF5B0, void, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_UI_HealthFlashMonitor_Flash__UpdateValue, (Preset_GenericDelegate_1_Opsive_UltimateCharacterController_UI_HealthFlashMonitor_Flash_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7320, MethodInfo_1 *, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_UI_HealthFlashMonitor_Flash__get_SetMethod, (Preset_GenericDelegate_1_Opsive_UltimateCharacterController_UI_HealthFlashMonitor_Flash_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_Waypoint___ctor, (Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_Waypoint_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C988, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_Waypoint___ctor__MethodInfo); DO_APP_FUNC(0x015E0CB0, void, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_Waypoint__ApplyValue, (Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_Waypoint_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015E0250, void, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_Waypoint__Initialize, (Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_Waypoint_ * __this, Object * obj, PropertyInfo_1 * property, MemberVisibility__Enum visibility, MethodInfo * method)); DO_APP_FUNC(0x015DFCA0, void, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_Waypoint__Initialize_1, (Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_Waypoint_ * __this, Object * obj, PropertyInfo_1 * property, Dictionary_2_System_Int32_System_Int32_ * valuePositionMap, Serialization * data, MemberVisibility__Enum visibility, MethodInfo * method)); @@ -151047,6 +166470,7 @@ DO_APP_FUNC(0x015E0DC0, void, Preset_GenericDelegate_1_Opsive_UltimateCharacterC DO_APP_FUNC(0x015E0B20, void, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_Waypoint__UpdateValue, (Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_Waypoint_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB330, MethodInfo_1 *, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_Waypoint__get_SetMethod, (Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_Waypoint_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Preset_GenericDelegate_1_Opsive_Shared_Game_ObjectPoolBase_PreloadedPrefab___ctor, (Preset_GenericDelegate_1_Opsive_Shared_Game_ObjectPoolBase_PreloadedPrefab_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1C9D0, Preset_GenericDelegate_1_Opsive_Shared_Game_ObjectPoolBase_PreloadedPrefab___ctor__MethodInfo); DO_APP_FUNC(0x015C61F0, void, Preset_GenericDelegate_1_Opsive_Shared_Game_ObjectPoolBase_PreloadedPrefab__ApplyValue, (Preset_GenericDelegate_1_Opsive_Shared_Game_ObjectPoolBase_PreloadedPrefab_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015E1730, void, Preset_GenericDelegate_1_Opsive_Shared_Game_ObjectPoolBase_PreloadedPrefab__Initialize, (Preset_GenericDelegate_1_Opsive_Shared_Game_ObjectPoolBase_PreloadedPrefab_ * __this, Object * obj, PropertyInfo_1 * property, MemberVisibility__Enum visibility, MethodInfo * method)); DO_APP_FUNC(0x015E1180, void, Preset_GenericDelegate_1_Opsive_Shared_Game_ObjectPoolBase_PreloadedPrefab__Initialize_1, (Preset_GenericDelegate_1_Opsive_Shared_Game_ObjectPoolBase_PreloadedPrefab_ * __this, Object * obj, PropertyInfo_1 * property, Dictionary_2_System_Int32_System_Int32_ * valuePositionMap, Serialization * data, MemberVisibility__Enum visibility, MethodInfo * method)); @@ -151054,6 +166478,7 @@ DO_APP_FUNC(0x015E2130, void, Preset_GenericDelegate_1_Opsive_Shared_Game_Object DO_APP_FUNC(0x015E1FD0, void, Preset_GenericDelegate_1_Opsive_Shared_Game_ObjectPoolBase_PreloadedPrefab__UpdateValue, (Preset_GenericDelegate_1_Opsive_Shared_Game_ObjectPoolBase_PreloadedPrefab_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, MethodInfo_1 *, Preset_GenericDelegate_1_Opsive_Shared_Game_ObjectPoolBase_PreloadedPrefab__get_SetMethod, (Preset_GenericDelegate_1_Opsive_Shared_Game_ObjectPoolBase_PreloadedPrefab_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_SlotEquip_ItemDefinitionStateName___ctor, (Preset_GenericDelegate_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_SlotEquip_ItemDefinitionStateName_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D142E8, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_SlotEquip_ItemDefinitionStateName___ctor__MethodInfo); DO_APP_FUNC(0x015C61F0, void, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_SlotEquip_ItemDefinitionStateName__ApplyValue, (Preset_GenericDelegate_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_SlotEquip_ItemDefinitionStateName_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015E2A60, void, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_SlotEquip_ItemDefinitionStateName__Initialize, (Preset_GenericDelegate_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_SlotEquip_ItemDefinitionStateName_ * __this, Object * obj, PropertyInfo_1 * property, MemberVisibility__Enum visibility, MethodInfo * method)); DO_APP_FUNC(0x015E24B0, void, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_SlotEquip_ItemDefinitionStateName__Initialize_1, (Preset_GenericDelegate_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_SlotEquip_ItemDefinitionStateName_ * __this, Object * obj, PropertyInfo_1 * property, Dictionary_2_System_Int32_System_Int32_ * valuePositionMap, Serialization * data, MemberVisibility__Enum visibility, MethodInfo * method)); @@ -151678,32 +167103,42 @@ DO_APP_FUNC(0x015ED130, int32_t, GenericEqualityComparer_1_PlaceholderSoftware_W DO_APP_FUNC(0x015ED240, int32_t, GenericEqualityComparer_1_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId__LastIndexOf, (GenericEqualityComparer_1_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_ * __this, WetDecalSystem_MaterialBatchId__Array * array, WetDecalSystem_MaterialBatchId value, int32_t startIndex, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x015ED350, void, GenericPool_1_System_Object___cctor, (MethodInfo * method)); DO_APP_FUNC(0x010C6F80, Object *, GenericPool_1_System_Object__Get, (MethodInfo * method)); -DO_APP_FUNC(0x0111D2B0, ObjectPool_1_T_PooledObject_System_Object_, GenericPool_1_System_Object__Get_1, (Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0111D2B0, ObjectPool_1_T_PooledObject_System_Object_, GenericPool_1_System_Object__Get_1, (Object * * value, MethodInfo * method)); DO_APP_FUNC(0x0111D3D0, void, GenericPool_1_System_Object__Release, (Object * toRelease, MethodInfo * method)); DO_APP_FUNC(0x003BCE40, void, GetSetValue_1_System_Boolean___ctor, (GetSetValue_1_System_Boolean_ * __this, Func_1_Boolean_ * param_0000c93a, Action_1_Boolean_ * param_0000c93b, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF20D8, GetSetValue_1_System_Boolean___ctor__MethodInfo); DO_APP_FUNC(0x015ED4D0, bool, GetSetValue_1_System_Boolean__GetValue, (GetSetValue_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF55F0, GetSetValue_1_System_Boolean__GetValue__MethodInfo); DO_APP_FUNC(0x015ED570, void, GetSetValue_1_System_Boolean__SetValue, (GetSetValue_1_System_Boolean_ * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5588, GetSetValue_1_System_Boolean__SetValue__MethodInfo); DO_APP_FUNC(0x003BB3C0, Func_1_Boolean_ *, GetSetValue_1_System_Boolean__get_getValueDelegate, (GetSetValue_1_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Action_1_Boolean_ *, GetSetValue_1_System_Boolean__get_setValueDelegate, (GetSetValue_1_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, GetSetValue_1_System_Boolean__set_getValueDelegate, (GetSetValue_1_System_Boolean_ * __this, Func_1_Boolean_ * value, MethodInfo * method)); DO_APP_FUNC(0x003AE960, void, GetSetValue_1_System_Boolean__set_setValueDelegate, (GetSetValue_1_System_Boolean_ * __this, Action_1_Boolean_ * value, MethodInfo * method)); DO_APP_FUNC(0x003BCE40, void, GetSetValue_1_System_Int32___ctor, (GetSetValue_1_System_Int32_ * __this, Func_1_Int32_ * param_0000c93a, Action_1_Int32_ * param_0000c93b, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF21D0, GetSetValue_1_System_Int32___ctor__MethodInfo); DO_APP_FUNC(0x015ED600, int32_t, GetSetValue_1_System_Int32__GetValue, (GetSetValue_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5590, GetSetValue_1_System_Int32__GetValue__MethodInfo); DO_APP_FUNC(0x015ED6A0, void, GetSetValue_1_System_Int32__SetValue, (GetSetValue_1_System_Int32_ * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5578, GetSetValue_1_System_Int32__SetValue__MethodInfo); DO_APP_FUNC(0x003BB3C0, Func_1_Int32_ *, GetSetValue_1_System_Int32__get_getValueDelegate, (GetSetValue_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Action_1_Int32_ *, GetSetValue_1_System_Int32__get_setValueDelegate, (GetSetValue_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, GetSetValue_1_System_Int32__set_getValueDelegate, (GetSetValue_1_System_Int32_ * __this, Func_1_Int32_ * value, MethodInfo * method)); DO_APP_FUNC(0x003AE960, void, GetSetValue_1_System_Int32__set_setValueDelegate, (GetSetValue_1_System_Int32_ * __this, Action_1_Int32_ * value, MethodInfo * method)); DO_APP_FUNC(0x003BCE40, void, GetSetValue_1_System_Int32Enum___ctor, (GetSetValue_1_System_Int32Enum_ * __this, Func_1_Int32Enum_ * param_0000c93a, Action_1_Int32Enum_ * param_0000c93b, MethodInfo * method)); DO_APP_FUNC(0x015ED730, Int32Enum__Enum, GetSetValue_1_System_Int32Enum__GetValue, (GetSetValue_1_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5580, GetSetValue_1_System_Int32Enum__GetValue__MethodInfo); DO_APP_FUNC(0x015ED7D0, void, GetSetValue_1_System_Int32Enum__SetValue, (GetSetValue_1_System_Int32Enum_ * __this, Int32Enum__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5568, GetSetValue_1_System_Int32Enum__SetValue__MethodInfo); DO_APP_FUNC(0x003BB3C0, Func_1_Int32Enum_ *, GetSetValue_1_System_Int32Enum__get_getValueDelegate, (GetSetValue_1_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Action_1_Int32Enum_ *, GetSetValue_1_System_Int32Enum__get_setValueDelegate, (GetSetValue_1_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, GetSetValue_1_System_Int32Enum__set_getValueDelegate, (GetSetValue_1_System_Int32Enum_ * __this, Func_1_Int32Enum_ * value, MethodInfo * method)); DO_APP_FUNC(0x003AE960, void, GetSetValue_1_System_Int32Enum__set_setValueDelegate, (GetSetValue_1_System_Int32Enum_ * __this, Action_1_Int32Enum_ * value, MethodInfo * method)); DO_APP_FUNC(0x003BCE40, void, GetSetValue_1_System_Object___ctor, (GetSetValue_1_System_Object_ * __this, Func_1_Object_ * param_0000c93a, Action_1_Object_ * param_0000c93b, MethodInfo * method)); DO_APP_FUNC(0x015ED860, Object *, GetSetValue_1_System_Object__GetValue, (GetSetValue_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5570, GetSetValue_1_System_Object__GetValue__MethodInfo); DO_APP_FUNC(0x015ED900, void, GetSetValue_1_System_Object__SetValue, (GetSetValue_1_System_Object_ * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5558, GetSetValue_1_System_Object__SetValue__MethodInfo); DO_APP_FUNC(0x003BB3C0, Func_1_Object_ *, GetSetValue_1_System_Object__get_getValueDelegate, (GetSetValue_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Action_1_Object_ *, GetSetValue_1_System_Object__get_setValueDelegate, (GetSetValue_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCBE0, void, GetSetValue_1_System_Object__set_getValueDelegate, (GetSetValue_1_System_Object_ * __this, Func_1_Object_ * value, MethodInfo * method)); @@ -151752,131 +167187,194 @@ DO_APP_FUNC(0x015F3120, GridLookup_1_T_Root_System_Object_ *, GridLookup_1_Syste DO_APP_FUNC(0x015F2F90, void, GridLookup_1_System_Object__Clear, (GridLookup_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015F30D0, GridLookup_1_T_Root_System_Object_ *, GridLookup_1_System_Object__GetRoot, (GridLookup_1_System_Object_ * __this, Object * item, MethodInfo * method)); DO_APP_FUNC(0x015F3590, void, GridLookup_1_System_Object__Move, (GridLookup_1_System_Object_ * __this, Object * item, IntRect bounds, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5480, GridLookup_1_System_Object__Move__MethodInfo); DO_APP_FUNC(0x015F33D0, void, GridLookup_1_System_Object__Remove, (GridLookup_1_System_Object_ * __this, Object * item, MethodInfo * method)); DO_APP_FUNC(0x015F2F70, GridLookup_1_T_Root_System_Object_ *, GridLookup_1_System_Object__get_AllItems, (GridLookup_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015F3CA0, void, GroupedEnumerable_3_System_Collections_Generic_KeyValuePair_2_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2___ctor, (GroupedEnumerable_3_System_Collections_Generic_KeyValuePair_2_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2_ * __this, IEnumerable_1_KeyValuePair_2_UnityEngine_Vector3_System_Int32_ * source, Func_2_System_Collections_Generic_KeyValuePair_2_UnityEngine_Vector3_ * keySelector, Func_2_System_Collections_Generic_KeyValuePair_2_System_Collections_Generic_KeyValuePair_2_ * elementSelector, IEqualityComparer_1_UnityEngine_Vector3_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5468, GroupedEnumerable_3_System_Collections_Generic_KeyValuePair_2_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2___ctor__MethodInfo); DO_APP_FUNC(0x015F3D90, IEnumerator_1_System_Linq_IGrouping_2__3 *, GroupedEnumerable_3_System_Collections_Generic_KeyValuePair_2_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2__GetEnumerator, (GroupedEnumerable_3_System_Collections_Generic_KeyValuePair_2_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015F3E10, IEnumerator *, GroupedEnumerable_3_System_Collections_Generic_KeyValuePair_2_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2__System_Collections_IEnumerable_GetEnumerator, (GroupedEnumerable_3_System_Collections_Generic_KeyValuePair_2_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015F3E40, void, GroupedEnumerable_3_System_ValueTuple_2_System_Int32_System_Object___ctor, (GroupedEnumerable_3_System_ValueTuple_2_System_Int32_System_Object_ * __this, IEnumerable_1_System_ValueTuple_2__5 * source, Func_2_ValueTuple_2_Object_Int32_Int32_ * keySelector, Func_2_ValueTuple_2_Object_Int32_Object_ * elementSelector, IEqualityComparer_1_System_Int32_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5470, GroupedEnumerable_3_System_ValueTuple_2_System_Int32_System_Object___ctor__MethodInfo); DO_APP_FUNC(0x015F3D90, IEnumerator_1_System_Linq_IGrouping_2_ *, GroupedEnumerable_3_System_ValueTuple_2_System_Int32_System_Object__GetEnumerator, (GroupedEnumerable_3_System_ValueTuple_2_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015F3E10, IEnumerator *, GroupedEnumerable_3_System_ValueTuple_2_System_Int32_System_Object__System_Collections_IEnumerable_GetEnumerator, (GroupedEnumerable_3_System_ValueTuple_2_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015F3F30, void, GroupedEnumerable_3_System_Object_System_Object_System_Object___ctor, (GroupedEnumerable_3_System_Object_System_Object_System_Object_ * __this, IEnumerable_1_System_Object_ * source, Func_2_Object_Object_ * keySelector, Func_2_Object_Object_ * elementSelector, IEqualityComparer_1_System_Object_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5458, GroupedEnumerable_3_System_Object_System_Object_System_Object___ctor__MethodInfo); DO_APP_FUNC(0x015F3D90, IEnumerator_1_System_Linq_IGrouping_2__1 *, GroupedEnumerable_3_System_Object_System_Object_System_Object__GetEnumerator, (GroupedEnumerable_3_System_Object_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015F3E10, IEnumerator *, GroupedEnumerable_3_System_Object_System_Object_System_Object__System_Collections_IEnumerable_GetEnumerator, (GroupedEnumerable_3_System_Object_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015F4020, void, GroupedEnumerable_3_UnityEngine_Resolution_System_Object_UnityEngine_Resolution___ctor, (GroupedEnumerable_3_UnityEngine_Resolution_System_Object_UnityEngine_Resolution_ * __this, IEnumerable_1_UnityEngine_Resolution_ * source, Func_2_UnityEngine_Resolution_Object_ * keySelector, Func_2_UnityEngine_Resolution_UnityEngine_Resolution_ * elementSelector, IEqualityComparer_1_System_Object_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5460, GroupedEnumerable_3_UnityEngine_Resolution_System_Object_UnityEngine_Resolution___ctor__MethodInfo); DO_APP_FUNC(0x015F3D90, IEnumerator_1_System_Linq_IGrouping_2__2 *, GroupedEnumerable_3_UnityEngine_Resolution_System_Object_UnityEngine_Resolution__GetEnumerator, (GroupedEnumerable_3_UnityEngine_Resolution_System_Object_UnityEngine_Resolution_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015F3E10, IEnumerator *, GroupedEnumerable_3_UnityEngine_Resolution_System_Object_UnityEngine_Resolution__System_Collections_IEnumerable_GetEnumerator, (GroupedEnumerable_3_UnityEngine_Resolution_System_Object_UnityEngine_Resolution_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Lookup_2_TKey_TElement_Grouping_System_Int32_System_Object___ctor, (Lookup_2_TKey_TElement_Grouping_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015F4110, void, Lookup_2_TKey_TElement_Grouping_System_Int32_System_Object__Add, (Lookup_2_TKey_TElement_Grouping_System_Int32_System_Object_ * __this, Object * element, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF54B8, Lookup_2_TKey_TElement_Grouping_System_Int32_System_Object__Add__MethodInfo); DO_APP_FUNC(0x015F41E0, IEnumerator_1_System_Object_ *, Lookup_2_TKey_TElement_Grouping_System_Int32_System_Object__GetEnumerator, (Lookup_2_TKey_TElement_Grouping_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015F42B0, void, Lookup_2_TKey_TElement_Grouping_System_Int32_System_Object__System_Collections_Generic_ICollection_TElement__Add, (Lookup_2_TKey_TElement_Grouping_System_Int32_System_Object_ * __this, Object * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF54A8, Lookup_2_TKey_TElement_Grouping_System_Int32_System_Object__System_Collections_Generic_ICollection_TElement__Add__MethodInfo); DO_APP_FUNC(0x015F42E0, void, Lookup_2_TKey_TElement_Grouping_System_Int32_System_Object__System_Collections_Generic_ICollection_TElement__Clear, (Lookup_2_TKey_TElement_Grouping_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF54B0, Lookup_2_TKey_TElement_Grouping_System_Int32_System_Object__System_Collections_Generic_ICollection_TElement__Clear__MethodInfo); DO_APP_FUNC(0x015F4310, bool, Lookup_2_TKey_TElement_Grouping_System_Int32_System_Object__System_Collections_Generic_ICollection_TElement__Contains, (Lookup_2_TKey_TElement_Grouping_System_Int32_System_Object_ * __this, Object * item, MethodInfo * method)); DO_APP_FUNC(0x015F4360, void, Lookup_2_TKey_TElement_Grouping_System_Int32_System_Object__System_Collections_Generic_ICollection_TElement__CopyTo, (Lookup_2_TKey_TElement_Grouping_System_Int32_System_Object_ * __this, Object__Array * array, int32_t arrayIndex, MethodInfo * method)); DO_APP_FUNC(0x015F4390, bool, Lookup_2_TKey_TElement_Grouping_System_Int32_System_Object__System_Collections_Generic_ICollection_TElement__Remove, (Lookup_2_TKey_TElement_Grouping_System_Int32_System_Object_ * __this, Object * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5498, Lookup_2_TKey_TElement_Grouping_System_Int32_System_Object__System_Collections_Generic_ICollection_TElement__Remove__MethodInfo); DO_APP_FUNC(0x003CC980, int32_t, Lookup_2_TKey_TElement_Grouping_System_Int32_System_Object__System_Collections_Generic_ICollection_TElement__get_Count, (Lookup_2_TKey_TElement_Grouping_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, Lookup_2_TKey_TElement_Grouping_System_Int32_System_Object__System_Collections_Generic_ICollection_TElement__get_IsReadOnly, (Lookup_2_TKey_TElement_Grouping_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015F43C0, int32_t, Lookup_2_TKey_TElement_Grouping_System_Int32_System_Object__System_Collections_Generic_IList_TElement__IndexOf, (Lookup_2_TKey_TElement_Grouping_System_Int32_System_Object_ * __this, Object * item, MethodInfo * method)); DO_APP_FUNC(0x015F4400, void, Lookup_2_TKey_TElement_Grouping_System_Int32_System_Object__System_Collections_Generic_IList_TElement__Insert, (Lookup_2_TKey_TElement_Grouping_System_Int32_System_Object_ * __this, int32_t index, Object * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF54A0, Lookup_2_TKey_TElement_Grouping_System_Int32_System_Object__System_Collections_Generic_IList_TElement__Insert__MethodInfo); DO_APP_FUNC(0x015F4430, void, Lookup_2_TKey_TElement_Grouping_System_Int32_System_Object__System_Collections_Generic_IList_TElement__RemoveAt, (Lookup_2_TKey_TElement_Grouping_System_Int32_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5488, Lookup_2_TKey_TElement_Grouping_System_Int32_System_Object__System_Collections_Generic_IList_TElement__RemoveAt__MethodInfo); DO_APP_FUNC(0x015F4460, Object *, Lookup_2_TKey_TElement_Grouping_System_Int32_System_Object__System_Collections_Generic_IList_TElement__get_Item, (Lookup_2_TKey_TElement_Grouping_System_Int32_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5490, Lookup_2_TKey_TElement_Grouping_System_Int32_System_Object__System_Collections_Generic_IList_TElement__get_Item__MethodInfo); DO_APP_FUNC(0x015F44D0, void, Lookup_2_TKey_TElement_Grouping_System_Int32_System_Object__System_Collections_Generic_IList_TElement__set_Item, (Lookup_2_TKey_TElement_Grouping_System_Int32_System_Object_ * __this, int32_t index, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5400, Lookup_2_TKey_TElement_Grouping_System_Int32_System_Object__System_Collections_Generic_IList_TElement__set_Item__MethodInfo); DO_APP_FUNC(0x0147D620, IEnumerator *, Lookup_2_TKey_TElement_Grouping_System_Int32_System_Object__System_Collections_IEnumerable_GetEnumerator, (Lookup_2_TKey_TElement_Grouping_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Lookup_2_TKey_TElement_Grouping_System_Object_System_Object___ctor, (Lookup_2_TKey_TElement_Grouping_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015F4500, void, Lookup_2_TKey_TElement_Grouping_System_Object_System_Object__Add, (Lookup_2_TKey_TElement_Grouping_System_Object_System_Object_ * __this, Object * element, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF53F8, Lookup_2_TKey_TElement_Grouping_System_Object_System_Object__Add__MethodInfo); DO_APP_FUNC(0x015F41E0, IEnumerator_1_System_Object_ *, Lookup_2_TKey_TElement_Grouping_System_Object_System_Object__GetEnumerator, (Lookup_2_TKey_TElement_Grouping_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015F45D0, void, Lookup_2_TKey_TElement_Grouping_System_Object_System_Object__System_Collections_Generic_ICollection_TElement__Add, (Lookup_2_TKey_TElement_Grouping_System_Object_System_Object_ * __this, Object * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF53E8, Lookup_2_TKey_TElement_Grouping_System_Object_System_Object__System_Collections_Generic_ICollection_TElement__Add__MethodInfo); DO_APP_FUNC(0x015F4600, void, Lookup_2_TKey_TElement_Grouping_System_Object_System_Object__System_Collections_Generic_ICollection_TElement__Clear, (Lookup_2_TKey_TElement_Grouping_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF53F0, Lookup_2_TKey_TElement_Grouping_System_Object_System_Object__System_Collections_Generic_ICollection_TElement__Clear__MethodInfo); DO_APP_FUNC(0x015F4630, bool, Lookup_2_TKey_TElement_Grouping_System_Object_System_Object__System_Collections_Generic_ICollection_TElement__Contains, (Lookup_2_TKey_TElement_Grouping_System_Object_System_Object_ * __this, Object * item, MethodInfo * method)); DO_APP_FUNC(0x015F4680, void, Lookup_2_TKey_TElement_Grouping_System_Object_System_Object__System_Collections_Generic_ICollection_TElement__CopyTo, (Lookup_2_TKey_TElement_Grouping_System_Object_System_Object_ * __this, Object__Array * array, int32_t arrayIndex, MethodInfo * method)); DO_APP_FUNC(0x015F46B0, bool, Lookup_2_TKey_TElement_Grouping_System_Object_System_Object__System_Collections_Generic_ICollection_TElement__Remove, (Lookup_2_TKey_TElement_Grouping_System_Object_System_Object_ * __this, Object * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF53D0, Lookup_2_TKey_TElement_Grouping_System_Object_System_Object__System_Collections_Generic_ICollection_TElement__Remove__MethodInfo); DO_APP_FUNC(0x00421680, int32_t, Lookup_2_TKey_TElement_Grouping_System_Object_System_Object__System_Collections_Generic_ICollection_TElement__get_Count, (Lookup_2_TKey_TElement_Grouping_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, Lookup_2_TKey_TElement_Grouping_System_Object_System_Object__System_Collections_Generic_ICollection_TElement__get_IsReadOnly, (Lookup_2_TKey_TElement_Grouping_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015F46E0, int32_t, Lookup_2_TKey_TElement_Grouping_System_Object_System_Object__System_Collections_Generic_IList_TElement__IndexOf, (Lookup_2_TKey_TElement_Grouping_System_Object_System_Object_ * __this, Object * item, MethodInfo * method)); DO_APP_FUNC(0x015F4720, void, Lookup_2_TKey_TElement_Grouping_System_Object_System_Object__System_Collections_Generic_IList_TElement__Insert, (Lookup_2_TKey_TElement_Grouping_System_Object_System_Object_ * __this, int32_t index, Object * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF53D8, Lookup_2_TKey_TElement_Grouping_System_Object_System_Object__System_Collections_Generic_IList_TElement__Insert__MethodInfo); DO_APP_FUNC(0x015F4750, void, Lookup_2_TKey_TElement_Grouping_System_Object_System_Object__System_Collections_Generic_IList_TElement__RemoveAt, (Lookup_2_TKey_TElement_Grouping_System_Object_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5448, Lookup_2_TKey_TElement_Grouping_System_Object_System_Object__System_Collections_Generic_IList_TElement__RemoveAt__MethodInfo); DO_APP_FUNC(0x015F4780, Object *, Lookup_2_TKey_TElement_Grouping_System_Object_System_Object__System_Collections_Generic_IList_TElement__get_Item, (Lookup_2_TKey_TElement_Grouping_System_Object_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5450, Lookup_2_TKey_TElement_Grouping_System_Object_System_Object__System_Collections_Generic_IList_TElement__get_Item__MethodInfo); DO_APP_FUNC(0x015F47F0, void, Lookup_2_TKey_TElement_Grouping_System_Object_System_Object__System_Collections_Generic_IList_TElement__set_Item, (Lookup_2_TKey_TElement_Grouping_System_Object_System_Object_ * __this, int32_t index, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5440, Lookup_2_TKey_TElement_Grouping_System_Object_System_Object__System_Collections_Generic_IList_TElement__set_Item__MethodInfo); DO_APP_FUNC(0x0147D620, IEnumerator *, Lookup_2_TKey_TElement_Grouping_System_Object_System_Object__System_Collections_IEnumerable_GetEnumerator, (Lookup_2_TKey_TElement_Grouping_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Lookup_2_TKey_TElement_Grouping_System_Object_UnityEngine_Resolution___ctor, (Lookup_2_TKey_TElement_Grouping_System_Object_UnityEngine_Resolution_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015F4820, void, Lookup_2_TKey_TElement_Grouping_System_Object_UnityEngine_Resolution__Add, (Lookup_2_TKey_TElement_Grouping_System_Object_UnityEngine_Resolution_ * __this, Resolution element, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5438, Lookup_2_TKey_TElement_Grouping_System_Object_UnityEngine_Resolution__Add__MethodInfo); DO_APP_FUNC(0x015F41E0, IEnumerator_1_UnityEngine_Resolution_ *, Lookup_2_TKey_TElement_Grouping_System_Object_UnityEngine_Resolution__GetEnumerator, (Lookup_2_TKey_TElement_Grouping_System_Object_UnityEngine_Resolution_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015F4910, void, Lookup_2_TKey_TElement_Grouping_System_Object_UnityEngine_Resolution__System_Collections_Generic_ICollection_TElement__Add, (Lookup_2_TKey_TElement_Grouping_System_Object_UnityEngine_Resolution_ * __this, Resolution item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5410, Lookup_2_TKey_TElement_Grouping_System_Object_UnityEngine_Resolution__System_Collections_Generic_ICollection_TElement__Add__MethodInfo); DO_APP_FUNC(0x015F4940, void, Lookup_2_TKey_TElement_Grouping_System_Object_UnityEngine_Resolution__System_Collections_Generic_ICollection_TElement__Clear, (Lookup_2_TKey_TElement_Grouping_System_Object_UnityEngine_Resolution_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5420, Lookup_2_TKey_TElement_Grouping_System_Object_UnityEngine_Resolution__System_Collections_Generic_ICollection_TElement__Clear__MethodInfo); DO_APP_FUNC(0x015F4970, bool, Lookup_2_TKey_TElement_Grouping_System_Object_UnityEngine_Resolution__System_Collections_Generic_ICollection_TElement__Contains, (Lookup_2_TKey_TElement_Grouping_System_Object_UnityEngine_Resolution_ * __this, Resolution item, MethodInfo * method)); DO_APP_FUNC(0x015F4680, void, Lookup_2_TKey_TElement_Grouping_System_Object_UnityEngine_Resolution__System_Collections_Generic_ICollection_TElement__CopyTo, (Lookup_2_TKey_TElement_Grouping_System_Object_UnityEngine_Resolution_ * __this, Resolution__Array * array, int32_t arrayIndex, MethodInfo * method)); DO_APP_FUNC(0x015F49D0, bool, Lookup_2_TKey_TElement_Grouping_System_Object_UnityEngine_Resolution__System_Collections_Generic_ICollection_TElement__Remove, (Lookup_2_TKey_TElement_Grouping_System_Object_UnityEngine_Resolution_ * __this, Resolution item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5380, Lookup_2_TKey_TElement_Grouping_System_Object_UnityEngine_Resolution__System_Collections_Generic_ICollection_TElement__Remove__MethodInfo); DO_APP_FUNC(0x00421680, int32_t, Lookup_2_TKey_TElement_Grouping_System_Object_UnityEngine_Resolution__System_Collections_Generic_ICollection_TElement__get_Count, (Lookup_2_TKey_TElement_Grouping_System_Object_UnityEngine_Resolution_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, Lookup_2_TKey_TElement_Grouping_System_Object_UnityEngine_Resolution__System_Collections_Generic_ICollection_TElement__get_IsReadOnly, (Lookup_2_TKey_TElement_Grouping_System_Object_UnityEngine_Resolution_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015F4A00, int32_t, Lookup_2_TKey_TElement_Grouping_System_Object_UnityEngine_Resolution__System_Collections_Generic_IList_TElement__IndexOf, (Lookup_2_TKey_TElement_Grouping_System_Object_UnityEngine_Resolution_ * __this, Resolution item, MethodInfo * method)); DO_APP_FUNC(0x015F4A60, void, Lookup_2_TKey_TElement_Grouping_System_Object_UnityEngine_Resolution__System_Collections_Generic_IList_TElement__Insert, (Lookup_2_TKey_TElement_Grouping_System_Object_UnityEngine_Resolution_ * __this, int32_t index, Resolution item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5388, Lookup_2_TKey_TElement_Grouping_System_Object_UnityEngine_Resolution__System_Collections_Generic_IList_TElement__Insert__MethodInfo); DO_APP_FUNC(0x015F4A90, void, Lookup_2_TKey_TElement_Grouping_System_Object_UnityEngine_Resolution__System_Collections_Generic_IList_TElement__RemoveAt, (Lookup_2_TKey_TElement_Grouping_System_Object_UnityEngine_Resolution_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5370, Lookup_2_TKey_TElement_Grouping_System_Object_UnityEngine_Resolution__System_Collections_Generic_IList_TElement__RemoveAt__MethodInfo); DO_APP_FUNC(0x015F4AC0, Resolution, Lookup_2_TKey_TElement_Grouping_System_Object_UnityEngine_Resolution__System_Collections_Generic_IList_TElement__get_Item, (Lookup_2_TKey_TElement_Grouping_System_Object_UnityEngine_Resolution_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5378, Lookup_2_TKey_TElement_Grouping_System_Object_UnityEngine_Resolution__System_Collections_Generic_IList_TElement__get_Item__MethodInfo); DO_APP_FUNC(0x015F4B50, void, Lookup_2_TKey_TElement_Grouping_System_Object_UnityEngine_Resolution__System_Collections_Generic_IList_TElement__set_Item, (Lookup_2_TKey_TElement_Grouping_System_Object_UnityEngine_Resolution_ * __this, int32_t index, Resolution value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5368, Lookup_2_TKey_TElement_Grouping_System_Object_UnityEngine_Resolution__System_Collections_Generic_IList_TElement__set_Item__MethodInfo); DO_APP_FUNC(0x0147D620, IEnumerator *, Lookup_2_TKey_TElement_Grouping_System_Object_UnityEngine_Resolution__System_Collections_IEnumerable_GetEnumerator, (Lookup_2_TKey_TElement_Grouping_System_Object_UnityEngine_Resolution_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Lookup_2_TKey_TElement_Grouping_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2___ctor, (Lookup_2_TKey_TElement_Grouping_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015F4B80, void, Lookup_2_TKey_TElement_Grouping_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2__Add, (Lookup_2_TKey_TElement_Grouping_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2_ * __this, KeyValuePair_2_UnityEngine_Vector3_System_Int32_ element, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5360, Lookup_2_TKey_TElement_Grouping_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2__Add__MethodInfo); DO_APP_FUNC(0x015F4C60, IEnumerator_1_KeyValuePair_2_UnityEngine_Vector3_System_Int32_ *, Lookup_2_TKey_TElement_Grouping_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2__GetEnumerator, (Lookup_2_TKey_TElement_Grouping_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015F4D30, void, Lookup_2_TKey_TElement_Grouping_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2__System_Collections_Generic_ICollection_TElement__Add, (Lookup_2_TKey_TElement_Grouping_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2_ * __this, KeyValuePair_2_UnityEngine_Vector3_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF53C0, Lookup_2_TKey_TElement_Grouping_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2__System_Collections_Generic_ICollection_TElement__Add__MethodInfo); DO_APP_FUNC(0x015F4D60, void, Lookup_2_TKey_TElement_Grouping_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2__System_Collections_Generic_ICollection_TElement__Clear, (Lookup_2_TKey_TElement_Grouping_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF53C8, Lookup_2_TKey_TElement_Grouping_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2__System_Collections_Generic_ICollection_TElement__Clear__MethodInfo); DO_APP_FUNC(0x015F4D90, bool, Lookup_2_TKey_TElement_Grouping_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2__System_Collections_Generic_ICollection_TElement__Contains, (Lookup_2_TKey_TElement_Grouping_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2_ * __this, KeyValuePair_2_UnityEngine_Vector3_System_Int32_ item, MethodInfo * method)); DO_APP_FUNC(0x015F4680, void, Lookup_2_TKey_TElement_Grouping_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2__System_Collections_Generic_ICollection_TElement__CopyTo, (Lookup_2_TKey_TElement_Grouping_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2_ * __this, KeyValuePair_2_UnityEngine_Vector3_System_Int32___Array * array, int32_t arrayIndex, MethodInfo * method)); DO_APP_FUNC(0x015F4DE0, bool, Lookup_2_TKey_TElement_Grouping_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2__System_Collections_Generic_ICollection_TElement__Remove, (Lookup_2_TKey_TElement_Grouping_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2_ * __this, KeyValuePair_2_UnityEngine_Vector3_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF53B0, Lookup_2_TKey_TElement_Grouping_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2__System_Collections_Generic_ICollection_TElement__Remove__MethodInfo); DO_APP_FUNC(0x00421680, int32_t, Lookup_2_TKey_TElement_Grouping_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2__System_Collections_Generic_ICollection_TElement__get_Count, (Lookup_2_TKey_TElement_Grouping_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, Lookup_2_TKey_TElement_Grouping_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2__System_Collections_Generic_ICollection_TElement__get_IsReadOnly, (Lookup_2_TKey_TElement_Grouping_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015F4E10, int32_t, Lookup_2_TKey_TElement_Grouping_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2__System_Collections_Generic_IList_TElement__IndexOf, (Lookup_2_TKey_TElement_Grouping_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2_ * __this, KeyValuePair_2_UnityEngine_Vector3_System_Int32_ item, MethodInfo * method)); DO_APP_FUNC(0x015F4E60, void, Lookup_2_TKey_TElement_Grouping_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2__System_Collections_Generic_IList_TElement__Insert, (Lookup_2_TKey_TElement_Grouping_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2_ * __this, int32_t index, KeyValuePair_2_UnityEngine_Vector3_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF53B8, Lookup_2_TKey_TElement_Grouping_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2__System_Collections_Generic_IList_TElement__Insert__MethodInfo); DO_APP_FUNC(0x015F4E90, void, Lookup_2_TKey_TElement_Grouping_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2__System_Collections_Generic_IList_TElement__RemoveAt, (Lookup_2_TKey_TElement_Grouping_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF53A0, Lookup_2_TKey_TElement_Grouping_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2__System_Collections_Generic_IList_TElement__RemoveAt__MethodInfo); DO_APP_FUNC(0x015F4EC0, KeyValuePair_2_UnityEngine_Vector3_System_Int32_, Lookup_2_TKey_TElement_Grouping_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2__System_Collections_Generic_IList_TElement__get_Item, (Lookup_2_TKey_TElement_Grouping_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF53A8, Lookup_2_TKey_TElement_Grouping_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2__System_Collections_Generic_IList_TElement__get_Item__MethodInfo); DO_APP_FUNC(0x015F4F40, void, Lookup_2_TKey_TElement_Grouping_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2__System_Collections_Generic_IList_TElement__set_Item, (Lookup_2_TKey_TElement_Grouping_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2_ * __this, int32_t index, KeyValuePair_2_UnityEngine_Vector3_System_Int32_ value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5390, Lookup_2_TKey_TElement_Grouping_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2__System_Collections_Generic_IList_TElement__set_Item__MethodInfo); DO_APP_FUNC(0x0147D620, IEnumerator *, Lookup_2_TKey_TElement_Grouping_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2__System_Collections_IEnumerable_GetEnumerator, (Lookup_2_TKey_TElement_Grouping_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0131BE80, void, HashSetPool_1_System_Object___cctor, (MethodInfo * method)); DO_APP_FUNC(0x010C6F80, HashSet_1_System_Object_ *, HashSetPool_1_System_Object__Get, (MethodInfo * method)); -DO_APP_FUNC(0x0111D2B0, ObjectPool_1_T_PooledObject_System_Collections_Generic_HashSet_1_, HashSetPool_1_System_Object__Get_1, (HashSet_1_System_Object_ * value, MethodInfo * method)); +DO_APP_FUNC(0x0111D2B0, ObjectPool_1_T_PooledObject_System_Collections_Generic_HashSet_1_, HashSetPool_1_System_Object__Get_1, (HashSet_1_System_Object_ * * value, MethodInfo * method)); DO_APP_FUNC(0x0111D3D0, void, HashSetPool_1_System_Object__Release, (HashSet_1_System_Object_ * toRelease, MethodInfo * method)); DO_APP_FUNC(0x015F4F70, void, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___ctor, (HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE7B8, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___ctor__MethodInfo); DO_APP_FUNC(0x015F5070, void, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___ctor_1, (HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, IEnumerable_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * collection, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9E3E8, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___ctor_1__MethodInfo); DO_APP_FUNC(0x015F4FD0, void, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___ctor_2, (HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, IEqualityComparer_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x015F50E0, void, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___ctor_3, (HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, IEnumerable_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * collection, IEqualityComparer_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5398, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___ctor_3__MethodInfo); DO_APP_FUNC(0x003C73A0, void, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___ctor_4, (HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x015F66A0, bool, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__Add, (HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, AsyncOperationHandle item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE530, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__Add__MethodInfo); DO_APP_FUNC(0x015F8840, bool, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__AddIfNotPresent, (HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, AsyncOperationHandle value, MethodInfo * method)); -DO_APP_FUNC(0x015F9FB0, bool, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__AddOrGetLocation, (HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, AsyncOperationHandle value, int32_t location, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5270, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__AddIfNotPresent__MethodInfo); +DO_APP_FUNC(0x015F9FB0, bool, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__AddOrGetLocation, (HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, AsyncOperationHandle value, int32_t * location, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5240, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__AddOrGetLocation__MethodInfo); DO_APP_FUNC(0x015F8C00, void, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__AddValue, (HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, int32_t index, int32_t hashCode, AsyncOperationHandle value, MethodInfo * method)); DO_APP_FUNC(0x015FA7F0, bool, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__AreEqualityComparersEqual, (HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * set1, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * set2, MethodInfo * method)); DO_APP_FUNC(0x015FA350, HashSet_1_T_ElementCount_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__CheckUniqueAndUnfoundElements, (HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, IEnumerable_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * other, bool returnIfUnfound, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5220, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__CheckUniqueAndUnfoundElements__MethodInfo); DO_APP_FUNC(0x015F56B0, void, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__Clear, (HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C98F98, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__Clear__MethodInfo); DO_APP_FUNC(0x015F5710, bool, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__Contains, (HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, AsyncOperationHandle item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5318, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__Contains__MethodInfo); DO_APP_FUNC(0x015F8D30, bool, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__ContainsAllElements, (HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, IEnumerable_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * other, MethodInfo * method)); DO_APP_FUNC(0x015F5300, void, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__CopyFrom, (HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * source, MethodInfo * method)); DO_APP_FUNC(0x015F7C30, void, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__CopyTo, (HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, AsyncOperationHandle__Array * array, MethodInfo * method)); DO_APP_FUNC(0x015F5920, void, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__CopyTo_1, (HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, AsyncOperationHandle__Array * array, int32_t arrayIndex, MethodInfo * method)); DO_APP_FUNC(0x015F7C60, void, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__CopyTo_2, (HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, AsyncOperationHandle__Array * array, int32_t arrayIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF52B0, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__CopyTo_2__MethodInfo); DO_APP_FUNC(0x015F6B50, void, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__ExceptWith, (HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, IEnumerable_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5290, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__ExceptWith__MethodInfo); DO_APP_FUNC(0x015F5C40, HashSet_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__GetEnumerator, (HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE7A0, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__GetEnumerator__MethodInfo); DO_APP_FUNC(0x015F5DC0, void, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__GetObjectData, (HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5358, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__GetObjectData__MethodInfo); DO_APP_FUNC(0x015F8570, void, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__IncreaseCapacity, (HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5278, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__IncreaseCapacity__MethodInfo); DO_APP_FUNC(0x015F8400, int32_t, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__Initialize, (HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x015FA900, int32_t, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__InternalGetHashCode, (HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, AsyncOperationHandle item, MethodInfo * method)); DO_APP_FUNC(0x015F9620, int32_t, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__InternalIndexOf, (HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, AsyncOperationHandle item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5200, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__InternalIndexOf__MethodInfo); DO_APP_FUNC(0x015F6970, void, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__IntersectWith, (HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, IEnumerable_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF52A8, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__IntersectWith__MethodInfo); DO_APP_FUNC(0x015F91B0, void, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__IntersectWithEnumerable, (HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, IEnumerable_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5218, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__IntersectWithEnumerable__MethodInfo); DO_APP_FUNC(0x015F9060, void, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__IntersectWithHashSetWithSameEC, (HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * other, MethodInfo * method)); DO_APP_FUNC(0x015F7100, bool, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__IsProperSubsetOf, (HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, IEnumerable_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5288, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__IsProperSubsetOf__MethodInfo); DO_APP_FUNC(0x015F7550, bool, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__IsProperSupersetOf, (HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, IEnumerable_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF52D8, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__IsProperSupersetOf__MethodInfo); DO_APP_FUNC(0x015F6F30, bool, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__IsSubsetOf, (HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, IEnumerable_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5280, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__IsSubsetOf__MethodInfo); DO_APP_FUNC(0x015F8F30, bool, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__IsSubsetOfHashSetWithSameEC, (HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * other, MethodInfo * method)); DO_APP_FUNC(0x015F7360, bool, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__IsSupersetOf, (HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, IEnumerable_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF52D0, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__IsSupersetOf__MethodInfo); DO_APP_FUNC(0x015F6160, void, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__OnDeserialization, (HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, Object * sender, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5338, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__OnDeserialization__MethodInfo); DO_APP_FUNC(0x015F7790, bool, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__Overlaps, (HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, IEnumerable_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF52C0, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__Overlaps__MethodInfo); DO_APP_FUNC(0x015F5950, bool, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__Remove, (HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, AsyncOperationHandle item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5300, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__Remove__MethodInfo); DO_APP_FUNC(0x015F7F10, int32_t, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__RemoveWhere, (HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, Predicate_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5260, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__RemoveWhere__MethodInfo); DO_APP_FUNC(0x015F8650, void, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__SetCapacity, (HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, int32_t newSize, MethodInfo * method)); DO_APP_FUNC(0x015F79F0, bool, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__SetEquals, (HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, IEnumerable_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF52C8, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__SetEquals__MethodInfo); DO_APP_FUNC(0x015F6DB0, void, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__SymmetricExceptWith, (HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, IEnumerable_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5298, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__SymmetricExceptWith__MethodInfo); DO_APP_FUNC(0x015F99B0, void, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__SymmetricExceptWithEnumerable, (HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, IEnumerable_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5238, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__SymmetricExceptWithEnumerable__MethodInfo); DO_APP_FUNC(0x015F9820, void, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__SymmetricExceptWithUniqueHashSet, (HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * other, MethodInfo * method)); DO_APP_FUNC(0x015F5670, void, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__System_Collections_Generic_ICollection_T__Add, (HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, AsyncOperationHandle item, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__System_Collections_Generic_ICollection_T__get_IsReadOnly, (HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); @@ -151884,50 +167382,79 @@ DO_APP_FUNC(0x015F5CD0, IEnumerator_1_UnityEngine_ResourceManagement_AsyncOperat DO_APP_FUNC(0x015F5CD0, IEnumerator *, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__System_Collections_IEnumerable_GetEnumerator, (HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015F80C0, void, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__TrimExcess, (HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015F66F0, void, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__UnionWith, (HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, IEnumerable_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF52A0, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__UnionWith__MethodInfo); DO_APP_FUNC(0x003BB330, IEqualityComparer_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ *, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__get_Comparer, (HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003CC980, int32_t, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__get_Count, (HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE7D8, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__get_Count__MethodInfo); DO_APP_FUNC(0x015F4F70, void, HashSet_1_System_Int32___ctor, (HashSet_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB71C0, HashSet_1_System_Int32___ctor__MethodInfo); DO_APP_FUNC(0x015F5070, void, HashSet_1_System_Int32___ctor_1, (HashSet_1_System_Int32_ * __this, IEnumerable_1_System_Int32_ * collection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1580, HashSet_1_System_Int32___ctor_1__MethodInfo); DO_APP_FUNC(0x015F4FD0, void, HashSet_1_System_Int32___ctor_2, (HashSet_1_System_Int32_ * __this, IEqualityComparer_1_System_Int32_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x015FA9E0, void, HashSet_1_System_Int32___ctor_3, (HashSet_1_System_Int32_ * __this, IEnumerable_1_System_Int32_ * collection, IEqualityComparer_1_System_Int32_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5228, HashSet_1_System_Int32___ctor_3__MethodInfo); DO_APP_FUNC(0x003C73A0, void, HashSet_1_System_Int32___ctor_4, (HashSet_1_System_Int32_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x015FBDC0, bool, HashSet_1_System_Int32__Add, (HashSet_1_System_Int32_ * __this, int32_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7198, HashSet_1_System_Int32__Add__MethodInfo); DO_APP_FUNC(0x015FDE10, bool, HashSet_1_System_Int32__AddIfNotPresent, (HashSet_1_System_Int32_ * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x015FF240, bool, HashSet_1_System_Int32__AddOrGetLocation, (HashSet_1_System_Int32_ * __this, int32_t value, int32_t location, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5128, HashSet_1_System_Int32__AddIfNotPresent__MethodInfo); +DO_APP_FUNC(0x015FF240, bool, HashSet_1_System_Int32__AddOrGetLocation, (HashSet_1_System_Int32_ * __this, int32_t value, int32_t * location, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5140, HashSet_1_System_Int32__AddOrGetLocation__MethodInfo); DO_APP_FUNC(0x015FE0F0, void, HashSet_1_System_Int32__AddValue, (HashSet_1_System_Int32_ * __this, int32_t index, int32_t hashCode, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x015FA7F0, bool, HashSet_1_System_Int32__AreEqualityComparersEqual, (HashSet_1_System_Int32_ * set1, HashSet_1_System_Int32_ * set2, MethodInfo * method)); DO_APP_FUNC(0x015FF520, HashSet_1_T_ElementCount_System_Int32_, HashSet_1_System_Int32__CheckUniqueAndUnfoundElements, (HashSet_1_System_Int32_ * __this, IEnumerable_1_System_Int32_ * other, bool returnIfUnfound, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5130, HashSet_1_System_Int32__CheckUniqueAndUnfoundElements__MethodInfo); DO_APP_FUNC(0x015F56B0, void, HashSet_1_System_Int32__Clear, (HashSet_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBF4C0, HashSet_1_System_Int32__Clear__MethodInfo); DO_APP_FUNC(0x015FAF70, bool, HashSet_1_System_Int32__Contains, (HashSet_1_System_Int32_ * __this, int32_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5A38, HashSet_1_System_Int32__Contains__MethodInfo); DO_APP_FUNC(0x015FE1B0, bool, HashSet_1_System_Int32__ContainsAllElements, (HashSet_1_System_Int32_ * __this, IEnumerable_1_System_Int32_ * other, MethodInfo * method)); DO_APP_FUNC(0x015FAC00, void, HashSet_1_System_Int32__CopyFrom, (HashSet_1_System_Int32_ * __this, HashSet_1_System_Int32_ * source, MethodInfo * method)); DO_APP_FUNC(0x015F7C30, void, HashSet_1_System_Int32__CopyTo, (HashSet_1_System_Int32_ * __this, Int32__Array * array, MethodInfo * method)); DO_APP_FUNC(0x015F5920, void, HashSet_1_System_Int32__CopyTo_1, (HashSet_1_System_Int32_ * __this, Int32__Array * array, int32_t arrayIndex, MethodInfo * method)); DO_APP_FUNC(0x015FD2C0, void, HashSet_1_System_Int32__CopyTo_2, (HashSet_1_System_Int32_ * __this, Int32__Array * array, int32_t arrayIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF51C0, HashSet_1_System_Int32__CopyTo_2__MethodInfo); DO_APP_FUNC(0x015FC220, void, HashSet_1_System_Int32__ExceptWith, (HashSet_1_System_Int32_ * __this, IEnumerable_1_System_Int32_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF51D8, HashSet_1_System_Int32__ExceptWith__MethodInfo); DO_APP_FUNC(0x015FB3B0, HashSet_1_T_Enumerator_System_Int32_, HashSet_1_System_Int32__GetEnumerator, (HashSet_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C954D8, HashSet_1_System_Int32__GetEnumerator__MethodInfo); DO_APP_FUNC(0x015FB510, void, HashSet_1_System_Int32__GetObjectData, (HashSet_1_System_Int32_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF51D0, HashSet_1_System_Int32__GetObjectData__MethodInfo); DO_APP_FUNC(0x015FDB40, void, HashSet_1_System_Int32__IncreaseCapacity, (HashSet_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF51B0, HashSet_1_System_Int32__IncreaseCapacity__MethodInfo); DO_APP_FUNC(0x015FD9D0, int32_t, HashSet_1_System_Int32__Initialize, (HashSet_1_System_Int32_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x015FF990, int32_t, HashSet_1_System_Int32__InternalGetHashCode, (HashSet_1_System_Int32_ * __this, int32_t item, MethodInfo * method)); DO_APP_FUNC(0x015FE990, int32_t, HashSet_1_System_Int32__InternalIndexOf, (HashSet_1_System_Int32_ * __this, int32_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5160, HashSet_1_System_Int32__InternalIndexOf__MethodInfo); DO_APP_FUNC(0x015FC040, void, HashSet_1_System_Int32__IntersectWith, (HashSet_1_System_Int32_ * __this, IEnumerable_1_System_Int32_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF51F8, HashSet_1_System_Int32__IntersectWith__MethodInfo); DO_APP_FUNC(0x015FE580, void, HashSet_1_System_Int32__IntersectWithEnumerable, (HashSet_1_System_Int32_ * __this, IEnumerable_1_System_Int32_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5120, HashSet_1_System_Int32__IntersectWithEnumerable__MethodInfo); DO_APP_FUNC(0x015FE480, void, HashSet_1_System_Int32__IntersectWithHashSetWithSameEC, (HashSet_1_System_Int32_ * __this, HashSet_1_System_Int32_ * other, MethodInfo * method)); DO_APP_FUNC(0x015FC7B0, bool, HashSet_1_System_Int32__IsProperSubsetOf, (HashSet_1_System_Int32_ * __this, IEnumerable_1_System_Int32_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF51A0, HashSet_1_System_Int32__IsProperSubsetOf__MethodInfo); DO_APP_FUNC(0x015FCC00, bool, HashSet_1_System_Int32__IsProperSupersetOf, (HashSet_1_System_Int32_ * __this, IEnumerable_1_System_Int32_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5190, HashSet_1_System_Int32__IsProperSupersetOf__MethodInfo); DO_APP_FUNC(0x015FC5E0, bool, HashSet_1_System_Int32__IsSubsetOf, (HashSet_1_System_Int32_ * __this, IEnumerable_1_System_Int32_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5198, HashSet_1_System_Int32__IsSubsetOf__MethodInfo); DO_APP_FUNC(0x015FE380, bool, HashSet_1_System_Int32__IsSubsetOfHashSetWithSameEC, (HashSet_1_System_Int32_ * __this, HashSet_1_System_Int32_ * other, MethodInfo * method)); DO_APP_FUNC(0x015FCA10, bool, HashSet_1_System_Int32__IsSupersetOf, (HashSet_1_System_Int32_ * __this, IEnumerable_1_System_Int32_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5180, HashSet_1_System_Int32__IsSupersetOf__MethodInfo); DO_APP_FUNC(0x015FB8B0, void, HashSet_1_System_Int32__OnDeserialization, (HashSet_1_System_Int32_ * __this, Object * sender, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF51C8, HashSet_1_System_Int32__OnDeserialization__MethodInfo); DO_APP_FUNC(0x015FCE40, bool, HashSet_1_System_Int32__Overlaps, (HashSet_1_System_Int32_ * __this, IEnumerable_1_System_Int32_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5170, HashSet_1_System_Int32__Overlaps__MethodInfo); DO_APP_FUNC(0x015FB130, bool, HashSet_1_System_Int32__Remove, (HashSet_1_System_Int32_ * __this, int32_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0438, HashSet_1_System_Int32__Remove__MethodInfo); DO_APP_FUNC(0x015FD540, int32_t, HashSet_1_System_Int32__RemoveWhere, (HashSet_1_System_Int32_ * __this, Predicate_1_Int32_ * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB04C8, HashSet_1_System_Int32__RemoveWhere__MethodInfo); DO_APP_FUNC(0x015FDC20, void, HashSet_1_System_Int32__SetCapacity, (HashSet_1_System_Int32_ * __this, int32_t newSize, MethodInfo * method)); DO_APP_FUNC(0x015FD080, bool, HashSet_1_System_Int32__SetEquals, (HashSet_1_System_Int32_ * __this, IEnumerable_1_System_Int32_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5178, HashSet_1_System_Int32__SetEquals__MethodInfo); DO_APP_FUNC(0x015FC460, void, HashSet_1_System_Int32__SymmetricExceptWith, (HashSet_1_System_Int32_ * __this, IEnumerable_1_System_Int32_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF51E0, HashSet_1_System_Int32__SymmetricExceptWith__MethodInfo); DO_APP_FUNC(0x015FEC80, void, HashSet_1_System_Int32__SymmetricExceptWithEnumerable, (HashSet_1_System_Int32_ * __this, IEnumerable_1_System_Int32_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5150, HashSet_1_System_Int32__SymmetricExceptWithEnumerable__MethodInfo); DO_APP_FUNC(0x015FEB40, void, HashSet_1_System_Int32__SymmetricExceptWithUniqueHashSet, (HashSet_1_System_Int32_ * __this, HashSet_1_System_Int32_ * other, MethodInfo * method)); DO_APP_FUNC(0x015FAF50, void, HashSet_1_System_Int32__System_Collections_Generic_ICollection_T__Add, (HashSet_1_System_Int32_ * __this, int32_t item, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, HashSet_1_System_Int32__System_Collections_Generic_ICollection_T__get_IsReadOnly, (HashSet_1_System_Int32_ * __this, MethodInfo * method)); @@ -151935,49 +167462,74 @@ DO_APP_FUNC(0x015FB440, IEnumerator_1_System_Int32_ *, HashSet_1_System_Int32__S DO_APP_FUNC(0x015FB440, IEnumerator *, HashSet_1_System_Int32__System_Collections_IEnumerable_GetEnumerator, (HashSet_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015FD6A0, void, HashSet_1_System_Int32__TrimExcess, (HashSet_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015FBDF0, void, HashSet_1_System_Int32__UnionWith, (HashSet_1_System_Int32_ * __this, IEnumerable_1_System_Int32_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF51F0, HashSet_1_System_Int32__UnionWith__MethodInfo); DO_APP_FUNC(0x003BB330, IEqualityComparer_1_System_Int32_ *, HashSet_1_System_Int32__get_Comparer, (HashSet_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003CC980, int32_t, HashSet_1_System_Int32__get_Count, (HashSet_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0450, HashSet_1_System_Int32__get_Count__MethodInfo); DO_APP_FUNC(0x015F4F70, void, HashSet_1_System_Int32Enum___ctor, (HashSet_1_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015F5070, void, HashSet_1_System_Int32Enum___ctor_1, (HashSet_1_System_Int32Enum_ * __this, IEnumerable_1_System_Int32Enum_ * collection, MethodInfo * method)); DO_APP_FUNC(0x015F4FD0, void, HashSet_1_System_Int32Enum___ctor_2, (HashSet_1_System_Int32Enum_ * __this, IEqualityComparer_1_System_Int32Enum_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x015FFBB0, void, HashSet_1_System_Int32Enum___ctor_3, (HashSet_1_System_Int32Enum_ * __this, IEnumerable_1_System_Int32Enum_ * collection, IEqualityComparer_1_System_Int32Enum_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF79B0, HashSet_1_System_Int32Enum___ctor_3__MethodInfo); DO_APP_FUNC(0x003C73A0, void, HashSet_1_System_Int32Enum___ctor_4, (HashSet_1_System_Int32Enum_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x015FBDC0, bool, HashSet_1_System_Int32Enum__Add, (HashSet_1_System_Int32Enum_ * __this, Int32Enum__Enum item, MethodInfo * method)); DO_APP_FUNC(0x01602E30, bool, HashSet_1_System_Int32Enum__AddIfNotPresent, (HashSet_1_System_Int32Enum_ * __this, Int32Enum__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x016040A0, bool, HashSet_1_System_Int32Enum__AddOrGetLocation, (HashSet_1_System_Int32Enum_ * __this, Int32Enum__Enum value, int32_t location, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7920, HashSet_1_System_Int32Enum__AddIfNotPresent__MethodInfo); +DO_APP_FUNC(0x016040A0, bool, HashSet_1_System_Int32Enum__AddOrGetLocation, (HashSet_1_System_Int32Enum_ * __this, Int32Enum__Enum value, int32_t * location, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7900, HashSet_1_System_Int32Enum__AddOrGetLocation__MethodInfo); DO_APP_FUNC(0x015FE0F0, void, HashSet_1_System_Int32Enum__AddValue, (HashSet_1_System_Int32Enum_ * __this, int32_t index, int32_t hashCode, Int32Enum__Enum value, MethodInfo * method)); DO_APP_FUNC(0x015FA7F0, bool, HashSet_1_System_Int32Enum__AreEqualityComparersEqual, (HashSet_1_System_Int32Enum_ * set1, HashSet_1_System_Int32Enum_ * set2, MethodInfo * method)); DO_APP_FUNC(0x01604380, HashSet_1_T_ElementCount_System_Int32Enum_, HashSet_1_System_Int32Enum__CheckUniqueAndUnfoundElements, (HashSet_1_System_Int32Enum_ * __this, IEnumerable_1_System_Int32Enum_ * other, bool returnIfUnfound, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF78F8, HashSet_1_System_Int32Enum__CheckUniqueAndUnfoundElements__MethodInfo); DO_APP_FUNC(0x015F56B0, void, HashSet_1_System_Int32Enum__Clear, (HashSet_1_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01600120, bool, HashSet_1_System_Int32Enum__Contains, (HashSet_1_System_Int32Enum_ * __this, Int32Enum__Enum item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF79A8, HashSet_1_System_Int32Enum__Contains__MethodInfo); DO_APP_FUNC(0x01603110, bool, HashSet_1_System_Int32Enum__ContainsAllElements, (HashSet_1_System_Int32Enum_ * __this, IEnumerable_1_System_Int32Enum_ * other, MethodInfo * method)); DO_APP_FUNC(0x015FFDD0, void, HashSet_1_System_Int32Enum__CopyFrom, (HashSet_1_System_Int32Enum_ * __this, HashSet_1_System_Int32Enum_ * source, MethodInfo * method)); DO_APP_FUNC(0x015F7C30, void, HashSet_1_System_Int32Enum__CopyTo, (HashSet_1_System_Int32Enum_ * __this, Int32Enum__Enum__Array * array, MethodInfo * method)); DO_APP_FUNC(0x015F5920, void, HashSet_1_System_Int32Enum__CopyTo_1, (HashSet_1_System_Int32Enum_ * __this, Int32Enum__Enum__Array * array, int32_t arrayIndex, MethodInfo * method)); DO_APP_FUNC(0x016022E0, void, HashSet_1_System_Int32Enum__CopyTo_2, (HashSet_1_System_Int32Enum_ * __this, Int32Enum__Enum__Array * array, int32_t arrayIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7988, HashSet_1_System_Int32Enum__CopyTo_2__MethodInfo); DO_APP_FUNC(0x01601240, void, HashSet_1_System_Int32Enum__ExceptWith, (HashSet_1_System_Int32Enum_ * __this, IEnumerable_1_System_Int32Enum_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7970, HashSet_1_System_Int32Enum__ExceptWith__MethodInfo); DO_APP_FUNC(0x015FB3B0, HashSet_1_T_Enumerator_System_Int32Enum_, HashSet_1_System_Int32Enum__GetEnumerator, (HashSet_1_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01600560, void, HashSet_1_System_Int32Enum__GetObjectData, (HashSet_1_System_Int32Enum_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7998, HashSet_1_System_Int32Enum__GetObjectData__MethodInfo); DO_APP_FUNC(0x01602B60, void, HashSet_1_System_Int32Enum__IncreaseCapacity, (HashSet_1_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7928, HashSet_1_System_Int32Enum__IncreaseCapacity__MethodInfo); DO_APP_FUNC(0x016029F0, int32_t, HashSet_1_System_Int32Enum__Initialize, (HashSet_1_System_Int32Enum_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x015FF990, int32_t, HashSet_1_System_Int32Enum__InternalGetHashCode, (HashSet_1_System_Int32Enum_ * __this, Int32Enum__Enum item, MethodInfo * method)); DO_APP_FUNC(0x016037F0, int32_t, HashSet_1_System_Int32Enum__InternalIndexOf, (HashSet_1_System_Int32Enum_ * __this, Int32Enum__Enum item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7938, HashSet_1_System_Int32Enum__InternalIndexOf__MethodInfo); DO_APP_FUNC(0x01601060, void, HashSet_1_System_Int32Enum__IntersectWith, (HashSet_1_System_Int32Enum_ * __this, IEnumerable_1_System_Int32Enum_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF79B8, HashSet_1_System_Int32Enum__IntersectWith__MethodInfo); DO_APP_FUNC(0x016033E0, void, HashSet_1_System_Int32Enum__IntersectWithEnumerable, (HashSet_1_System_Int32Enum_ * __this, IEnumerable_1_System_Int32Enum_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7940, HashSet_1_System_Int32Enum__IntersectWithEnumerable__MethodInfo); DO_APP_FUNC(0x015FE480, void, HashSet_1_System_Int32Enum__IntersectWithHashSetWithSameEC, (HashSet_1_System_Int32Enum_ * __this, HashSet_1_System_Int32Enum_ * other, MethodInfo * method)); DO_APP_FUNC(0x016017D0, bool, HashSet_1_System_Int32Enum__IsProperSubsetOf, (HashSet_1_System_Int32Enum_ * __this, IEnumerable_1_System_Int32Enum_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7950, HashSet_1_System_Int32Enum__IsProperSubsetOf__MethodInfo); DO_APP_FUNC(0x01601C20, bool, HashSet_1_System_Int32Enum__IsProperSupersetOf, (HashSet_1_System_Int32Enum_ * __this, IEnumerable_1_System_Int32Enum_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7948, HashSet_1_System_Int32Enum__IsProperSupersetOf__MethodInfo); DO_APP_FUNC(0x01601600, bool, HashSet_1_System_Int32Enum__IsSubsetOf, (HashSet_1_System_Int32Enum_ * __this, IEnumerable_1_System_Int32Enum_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7968, HashSet_1_System_Int32Enum__IsSubsetOf__MethodInfo); DO_APP_FUNC(0x016032E0, bool, HashSet_1_System_Int32Enum__IsSubsetOfHashSetWithSameEC, (HashSet_1_System_Int32Enum_ * __this, HashSet_1_System_Int32Enum_ * other, MethodInfo * method)); DO_APP_FUNC(0x01601A30, bool, HashSet_1_System_Int32Enum__IsSupersetOf, (HashSet_1_System_Int32Enum_ * __this, IEnumerable_1_System_Int32Enum_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7958, HashSet_1_System_Int32Enum__IsSupersetOf__MethodInfo); DO_APP_FUNC(0x01600900, void, HashSet_1_System_Int32Enum__OnDeserialization, (HashSet_1_System_Int32Enum_ * __this, Object * sender, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF79C8, HashSet_1_System_Int32Enum__OnDeserialization__MethodInfo); DO_APP_FUNC(0x01601E60, bool, HashSet_1_System_Int32Enum__Overlaps, (HashSet_1_System_Int32Enum_ * __this, IEnumerable_1_System_Int32Enum_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7990, HashSet_1_System_Int32Enum__Overlaps__MethodInfo); DO_APP_FUNC(0x016002E0, bool, HashSet_1_System_Int32Enum__Remove, (HashSet_1_System_Int32Enum_ * __this, Int32Enum__Enum item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF79A0, HashSet_1_System_Int32Enum__Remove__MethodInfo); DO_APP_FUNC(0x01602560, int32_t, HashSet_1_System_Int32Enum__RemoveWhere, (HashSet_1_System_Int32Enum_ * __this, Predicate_1_Int32Enum_ * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7978, HashSet_1_System_Int32Enum__RemoveWhere__MethodInfo); DO_APP_FUNC(0x01602C40, void, HashSet_1_System_Int32Enum__SetCapacity, (HashSet_1_System_Int32Enum_ * __this, int32_t newSize, MethodInfo * method)); DO_APP_FUNC(0x016020A0, bool, HashSet_1_System_Int32Enum__SetEquals, (HashSet_1_System_Int32Enum_ * __this, IEnumerable_1_System_Int32Enum_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7980, HashSet_1_System_Int32Enum__SetEquals__MethodInfo); DO_APP_FUNC(0x01601480, void, HashSet_1_System_Int32Enum__SymmetricExceptWith, (HashSet_1_System_Int32Enum_ * __this, IEnumerable_1_System_Int32Enum_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7960, HashSet_1_System_Int32Enum__SymmetricExceptWith__MethodInfo); DO_APP_FUNC(0x01603AE0, void, HashSet_1_System_Int32Enum__SymmetricExceptWithEnumerable, (HashSet_1_System_Int32Enum_ * __this, IEnumerable_1_System_Int32Enum_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7930, HashSet_1_System_Int32Enum__SymmetricExceptWithEnumerable__MethodInfo); DO_APP_FUNC(0x016039A0, void, HashSet_1_System_Int32Enum__SymmetricExceptWithUniqueHashSet, (HashSet_1_System_Int32Enum_ * __this, HashSet_1_System_Int32Enum_ * other, MethodInfo * method)); DO_APP_FUNC(0x015FAF50, void, HashSet_1_System_Int32Enum__System_Collections_Generic_ICollection_T__Add, (HashSet_1_System_Int32Enum_ * __this, Int32Enum__Enum item, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, HashSet_1_System_Int32Enum__System_Collections_Generic_ICollection_T__get_IsReadOnly, (HashSet_1_System_Int32Enum_ * __this, MethodInfo * method)); @@ -151985,6 +167537,7 @@ DO_APP_FUNC(0x015FB440, IEnumerator_1_System_Int32Enum_ *, HashSet_1_System_Int3 DO_APP_FUNC(0x015FB440, IEnumerator *, HashSet_1_System_Int32Enum__System_Collections_IEnumerable_GetEnumerator, (HashSet_1_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016026C0, void, HashSet_1_System_Int32Enum__TrimExcess, (HashSet_1_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01600E10, void, HashSet_1_System_Int32Enum__UnionWith, (HashSet_1_System_Int32Enum_ * __this, IEnumerable_1_System_Int32Enum_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF79C0, HashSet_1_System_Int32Enum__UnionWith__MethodInfo); DO_APP_FUNC(0x003BB330, IEqualityComparer_1_System_Int32Enum_ *, HashSet_1_System_Int32Enum__get_Comparer, (HashSet_1_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003CC980, int32_t, HashSet_1_System_Int32Enum__get_Count, (HashSet_1_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015F4F70, void, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString___ctor, (HashSet_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); @@ -151992,43 +167545,67 @@ DO_APP_FUNC_METHODINFO(0x03C8BB48, HashSet_1_UnityEngine_InputSystem_Utilities_I DO_APP_FUNC(0x015F5070, void, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString___ctor_1, (HashSet_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, IEnumerable_1_UnityEngine_InputSystem_Utilities_InternedString_ * collection, MethodInfo * method)); DO_APP_FUNC(0x015F4FD0, void, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString___ctor_2, (HashSet_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, IEqualityComparer_1_UnityEngine_InputSystem_Utilities_InternedString_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x016047F0, void, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString___ctor_3, (HashSet_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, IEnumerable_1_UnityEngine_InputSystem_Utilities_InternedString_ * collection, IEqualityComparer_1_UnityEngine_InputSystem_Utilities_InternedString_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF78F0, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString___ctor_3__MethodInfo); DO_APP_FUNC(0x003C73A0, void, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString___ctor_4, (HashSet_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x01605D30, bool, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__Add, (HashSet_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, InternedString item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA948, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__Add__MethodInfo); DO_APP_FUNC(0x01607E30, bool, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__AddIfNotPresent, (HashSet_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, InternedString value, MethodInfo * method)); -DO_APP_FUNC(0x01609540, bool, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__AddOrGetLocation, (HashSet_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, InternedString value, int32_t location, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7888, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__AddIfNotPresent__MethodInfo); +DO_APP_FUNC(0x01609540, bool, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__AddOrGetLocation, (HashSet_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, InternedString value, int32_t * location, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7840, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__AddOrGetLocation__MethodInfo); DO_APP_FUNC(0x01608230, void, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__AddValue, (HashSet_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, int32_t index, int32_t hashCode, InternedString value, MethodInfo * method)); DO_APP_FUNC(0x015FA7F0, bool, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__AreEqualityComparersEqual, (HashSet_1_UnityEngine_InputSystem_Utilities_InternedString_ * set1, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString_ * set2, MethodInfo * method)); DO_APP_FUNC(0x01609920, HashSet_1_T_ElementCount_UnityEngine_InputSystem_Utilities_InternedString_, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__CheckUniqueAndUnfoundElements, (HashSet_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, IEnumerable_1_UnityEngine_InputSystem_Utilities_InternedString_ * other, bool returnIfUnfound, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7838, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__CheckUniqueAndUnfoundElements__MethodInfo); DO_APP_FUNC(0x015F56B0, void, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__Clear, (HashSet_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01604D90, bool, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__Contains, (HashSet_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, InternedString item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF78E8, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__Contains__MethodInfo); DO_APP_FUNC(0x01608350, bool, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__ContainsAllElements, (HashSet_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, IEnumerable_1_UnityEngine_InputSystem_Utilities_InternedString_ * other, MethodInfo * method)); DO_APP_FUNC(0x01604A10, void, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__CopyFrom, (HashSet_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString_ * source, MethodInfo * method)); DO_APP_FUNC(0x015F7C30, void, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__CopyTo, (HashSet_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, InternedString__Array * array, MethodInfo * method)); DO_APP_FUNC(0x015F5920, void, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__CopyTo_1, (HashSet_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, InternedString__Array * array, int32_t arrayIndex, MethodInfo * method)); DO_APP_FUNC(0x01607280, void, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__CopyTo_2, (HashSet_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, InternedString__Array * array, int32_t arrayIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF78C0, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__CopyTo_2__MethodInfo); DO_APP_FUNC(0x016061C0, void, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__ExceptWith, (HashSet_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, IEnumerable_1_UnityEngine_InputSystem_Utilities_InternedString_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF78A0, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__ExceptWith__MethodInfo); DO_APP_FUNC(0x01605300, HashSet_1_T_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__GetEnumerator, (HashSet_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01605470, void, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__GetObjectData, (HashSet_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7910, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__GetObjectData__MethodInfo); DO_APP_FUNC(0x01607B60, void, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__IncreaseCapacity, (HashSet_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7870, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__IncreaseCapacity__MethodInfo); DO_APP_FUNC(0x016079F0, int32_t, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__Initialize, (HashSet_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x01609DB0, int32_t, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__InternalGetHashCode, (HashSet_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, InternedString item, MethodInfo * method)); DO_APP_FUNC(0x01608BA0, int32_t, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__InternalIndexOf, (HashSet_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, InternedString item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7850, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__InternalIndexOf__MethodInfo); DO_APP_FUNC(0x01605FE0, void, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__IntersectWith, (HashSet_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, IEnumerable_1_UnityEngine_InputSystem_Utilities_InternedString_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF78A8, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__IntersectWith__MethodInfo); DO_APP_FUNC(0x01608750, void, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__IntersectWithEnumerable, (HashSet_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, IEnumerable_1_UnityEngine_InputSystem_Utilities_InternedString_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7880, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__IntersectWithEnumerable__MethodInfo); DO_APP_FUNC(0x01608640, void, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__IntersectWithHashSetWithSameEC, (HashSet_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString_ * other, MethodInfo * method)); DO_APP_FUNC(0x01606760, bool, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__IsProperSubsetOf, (HashSet_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, IEnumerable_1_UnityEngine_InputSystem_Utilities_InternedString_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF78D8, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__IsProperSubsetOf__MethodInfo); DO_APP_FUNC(0x01606BB0, bool, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__IsProperSupersetOf, (HashSet_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, IEnumerable_1_UnityEngine_InputSystem_Utilities_InternedString_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF78D0, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__IsProperSupersetOf__MethodInfo); DO_APP_FUNC(0x01606590, bool, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__IsSubsetOf, (HashSet_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, IEnumerable_1_UnityEngine_InputSystem_Utilities_InternedString_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7898, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__IsSubsetOf__MethodInfo); DO_APP_FUNC(0x01608530, bool, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__IsSubsetOfHashSetWithSameEC, (HashSet_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString_ * other, MethodInfo * method)); DO_APP_FUNC(0x016069C0, bool, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__IsSupersetOf, (HashSet_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, IEnumerable_1_UnityEngine_InputSystem_Utilities_InternedString_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF78E0, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__IsSupersetOf__MethodInfo); DO_APP_FUNC(0x01605810, void, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__OnDeserialization, (HashSet_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, Object * sender, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7908, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__OnDeserialization__MethodInfo); DO_APP_FUNC(0x01606DF0, bool, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__Overlaps, (HashSet_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, IEnumerable_1_UnityEngine_InputSystem_Utilities_InternedString_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF78C8, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__Overlaps__MethodInfo); DO_APP_FUNC(0x01604FE0, bool, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__Remove, (HashSet_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, InternedString item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7918, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__Remove__MethodInfo); DO_APP_FUNC(0x01607530, int32_t, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__RemoveWhere, (HashSet_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, Predicate_1_UnityEngine_InputSystem_Utilities_InternedString_ * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7878, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__RemoveWhere__MethodInfo); DO_APP_FUNC(0x01607C40, void, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__SetCapacity, (HashSet_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, int32_t newSize, MethodInfo * method)); DO_APP_FUNC(0x01607040, bool, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__SetEquals, (HashSet_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, IEnumerable_1_UnityEngine_InputSystem_Utilities_InternedString_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF78B8, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__SetEquals__MethodInfo); DO_APP_FUNC(0x01606410, void, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__SymmetricExceptWith, (HashSet_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, IEnumerable_1_UnityEngine_InputSystem_Utilities_InternedString_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7890, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__SymmetricExceptWith__MethodInfo); DO_APP_FUNC(0x01608F50, void, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__SymmetricExceptWithEnumerable, (HashSet_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, IEnumerable_1_UnityEngine_InputSystem_Utilities_InternedString_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7848, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__SymmetricExceptWithEnumerable__MethodInfo); DO_APP_FUNC(0x01608DF0, void, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__SymmetricExceptWithUniqueHashSet, (HashSet_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString_ * other, MethodInfo * method)); DO_APP_FUNC(0x01604D60, void, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__System_Collections_Generic_ICollection_T__Add, (HashSet_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, InternedString item, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__System_Collections_Generic_ICollection_T__get_IsReadOnly, (HashSet_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); @@ -152036,49 +167613,75 @@ DO_APP_FUNC(0x01605390, IEnumerator_1_UnityEngine_InputSystem_Utilities_Interned DO_APP_FUNC(0x01605390, IEnumerator *, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__System_Collections_IEnumerable_GetEnumerator, (HashSet_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016076B0, void, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__TrimExcess, (HashSet_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01605D70, void, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__UnionWith, (HashSet_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, IEnumerable_1_UnityEngine_InputSystem_Utilities_InternedString_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF78B0, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__UnionWith__MethodInfo); DO_APP_FUNC(0x003BB330, IEqualityComparer_1_UnityEngine_InputSystem_Utilities_InternedString_ *, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__get_Comparer, (HashSet_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003CC980, int32_t, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString__get_Count, (HashSet_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015F4F70, void, HashSet_1_Photon_Bolt_NetworkId___ctor, (HashSet_1_Photon_Bolt_NetworkId_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCACD8, HashSet_1_Photon_Bolt_NetworkId___ctor__MethodInfo); DO_APP_FUNC(0x015F5070, void, HashSet_1_Photon_Bolt_NetworkId___ctor_1, (HashSet_1_Photon_Bolt_NetworkId_ * __this, IEnumerable_1_Photon_Bolt_NetworkId_ * collection, MethodInfo * method)); DO_APP_FUNC(0x015F4FD0, void, HashSet_1_Photon_Bolt_NetworkId___ctor_2, (HashSet_1_Photon_Bolt_NetworkId_ * __this, IEqualityComparer_1_Photon_Bolt_NetworkId_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01609E80, void, HashSet_1_Photon_Bolt_NetworkId___ctor_3, (HashSet_1_Photon_Bolt_NetworkId_ * __this, IEnumerable_1_Photon_Bolt_NetworkId_ * collection, IEqualityComparer_1_Photon_Bolt_NetworkId_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7868, HashSet_1_Photon_Bolt_NetworkId___ctor_3__MethodInfo); DO_APP_FUNC(0x003C73A0, void, HashSet_1_Photon_Bolt_NetworkId___ctor_4, (HashSet_1_Photon_Bolt_NetworkId_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x015FBDC0, bool, HashSet_1_Photon_Bolt_NetworkId__Add, (HashSet_1_Photon_Bolt_NetworkId_ * __this, NetworkId item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCAFD8, HashSet_1_Photon_Bolt_NetworkId__Add__MethodInfo); DO_APP_FUNC(0x0160D240, bool, HashSet_1_Photon_Bolt_NetworkId__AddIfNotPresent, (HashSet_1_Photon_Bolt_NetworkId_ * __this, NetworkId value, MethodInfo * method)); -DO_APP_FUNC(0x0160E680, bool, HashSet_1_Photon_Bolt_NetworkId__AddOrGetLocation, (HashSet_1_Photon_Bolt_NetworkId_ * __this, NetworkId value, int32_t location, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF77E0, HashSet_1_Photon_Bolt_NetworkId__AddIfNotPresent__MethodInfo); +DO_APP_FUNC(0x0160E680, bool, HashSet_1_Photon_Bolt_NetworkId__AddOrGetLocation, (HashSet_1_Photon_Bolt_NetworkId_ * __this, NetworkId value, int32_t * location, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7798, HashSet_1_Photon_Bolt_NetworkId__AddOrGetLocation__MethodInfo); DO_APP_FUNC(0x0160D530, void, HashSet_1_Photon_Bolt_NetworkId__AddValue, (HashSet_1_Photon_Bolt_NetworkId_ * __this, int32_t index, int32_t hashCode, NetworkId value, MethodInfo * method)); DO_APP_FUNC(0x015FA7F0, bool, HashSet_1_Photon_Bolt_NetworkId__AreEqualityComparersEqual, (HashSet_1_Photon_Bolt_NetworkId_ * set1, HashSet_1_Photon_Bolt_NetworkId_ * set2, MethodInfo * method)); DO_APP_FUNC(0x0160E950, HashSet_1_T_ElementCount_Photon_Bolt_NetworkId_, HashSet_1_Photon_Bolt_NetworkId__CheckUniqueAndUnfoundElements, (HashSet_1_Photon_Bolt_NetworkId_ * __this, IEnumerable_1_Photon_Bolt_NetworkId_ * other, bool returnIfUnfound, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF77B0, HashSet_1_Photon_Bolt_NetworkId__CheckUniqueAndUnfoundElements__MethodInfo); DO_APP_FUNC(0x015F56B0, void, HashSet_1_Photon_Bolt_NetworkId__Clear, (HashSet_1_Photon_Bolt_NetworkId_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0160A3F0, bool, HashSet_1_Photon_Bolt_NetworkId__Contains, (HashSet_1_Photon_Bolt_NetworkId_ * __this, NetworkId item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCAC80, HashSet_1_Photon_Bolt_NetworkId__Contains__MethodInfo); DO_APP_FUNC(0x0160D5E0, bool, HashSet_1_Photon_Bolt_NetworkId__ContainsAllElements, (HashSet_1_Photon_Bolt_NetworkId_ * __this, IEnumerable_1_Photon_Bolt_NetworkId_ * other, MethodInfo * method)); DO_APP_FUNC(0x0160A0A0, void, HashSet_1_Photon_Bolt_NetworkId__CopyFrom, (HashSet_1_Photon_Bolt_NetworkId_ * __this, HashSet_1_Photon_Bolt_NetworkId_ * source, MethodInfo * method)); DO_APP_FUNC(0x015F7C30, void, HashSet_1_Photon_Bolt_NetworkId__CopyTo, (HashSet_1_Photon_Bolt_NetworkId_ * __this, NetworkId__Array * array, MethodInfo * method)); DO_APP_FUNC(0x015F5920, void, HashSet_1_Photon_Bolt_NetworkId__CopyTo_1, (HashSet_1_Photon_Bolt_NetworkId_ * __this, NetworkId__Array * array, int32_t arrayIndex, MethodInfo * method)); DO_APP_FUNC(0x0160C700, void, HashSet_1_Photon_Bolt_NetworkId__CopyTo_2, (HashSet_1_Photon_Bolt_NetworkId_ * __this, NetworkId__Array * array, int32_t arrayIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF77C0, HashSet_1_Photon_Bolt_NetworkId__CopyTo_2__MethodInfo); DO_APP_FUNC(0x0160B670, void, HashSet_1_Photon_Bolt_NetworkId__ExceptWith, (HashSet_1_Photon_Bolt_NetworkId_ * __this, IEnumerable_1_Photon_Bolt_NetworkId_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7828, HashSet_1_Photon_Bolt_NetworkId__ExceptWith__MethodInfo); DO_APP_FUNC(0x0160A830, HashSet_1_T_Enumerator_Photon_Bolt_NetworkId_, HashSet_1_Photon_Bolt_NetworkId__GetEnumerator, (HashSet_1_Photon_Bolt_NetworkId_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0160A990, void, HashSet_1_Photon_Bolt_NetworkId__GetObjectData, (HashSet_1_Photon_Bolt_NetworkId_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7858, HashSet_1_Photon_Bolt_NetworkId__GetObjectData__MethodInfo); DO_APP_FUNC(0x0160CF70, void, HashSet_1_Photon_Bolt_NetworkId__IncreaseCapacity, (HashSet_1_Photon_Bolt_NetworkId_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF77E8, HashSet_1_Photon_Bolt_NetworkId__IncreaseCapacity__MethodInfo); DO_APP_FUNC(0x0160CE00, int32_t, HashSet_1_Photon_Bolt_NetworkId__Initialize, (HashSet_1_Photon_Bolt_NetworkId_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x0160EDC0, int32_t, HashSet_1_Photon_Bolt_NetworkId__InternalGetHashCode, (HashSet_1_Photon_Bolt_NetworkId_ * __this, NetworkId item, MethodInfo * method)); DO_APP_FUNC(0x0160DDC0, int32_t, HashSet_1_Photon_Bolt_NetworkId__InternalIndexOf, (HashSet_1_Photon_Bolt_NetworkId_ * __this, NetworkId item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF77A8, HashSet_1_Photon_Bolt_NetworkId__InternalIndexOf__MethodInfo); DO_APP_FUNC(0x0160B490, void, HashSet_1_Photon_Bolt_NetworkId__IntersectWith, (HashSet_1_Photon_Bolt_NetworkId_ * __this, IEnumerable_1_Photon_Bolt_NetworkId_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF77F8, HashSet_1_Photon_Bolt_NetworkId__IntersectWith__MethodInfo); DO_APP_FUNC(0x0160D9A0, void, HashSet_1_Photon_Bolt_NetworkId__IntersectWithEnumerable, (HashSet_1_Photon_Bolt_NetworkId_ * __this, IEnumerable_1_Photon_Bolt_NetworkId_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF77A0, HashSet_1_Photon_Bolt_NetworkId__IntersectWithEnumerable__MethodInfo); DO_APP_FUNC(0x0160D8B0, void, HashSet_1_Photon_Bolt_NetworkId__IntersectWithHashSetWithSameEC, (HashSet_1_Photon_Bolt_NetworkId_ * __this, HashSet_1_Photon_Bolt_NetworkId_ * other, MethodInfo * method)); DO_APP_FUNC(0x0160BBF0, bool, HashSet_1_Photon_Bolt_NetworkId__IsProperSubsetOf, (HashSet_1_Photon_Bolt_NetworkId_ * __this, IEnumerable_1_Photon_Bolt_NetworkId_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7820, HashSet_1_Photon_Bolt_NetworkId__IsProperSubsetOf__MethodInfo); DO_APP_FUNC(0x0160C040, bool, HashSet_1_Photon_Bolt_NetworkId__IsProperSupersetOf, (HashSet_1_Photon_Bolt_NetworkId_ * __this, IEnumerable_1_Photon_Bolt_NetworkId_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7810, HashSet_1_Photon_Bolt_NetworkId__IsProperSupersetOf__MethodInfo); DO_APP_FUNC(0x0160BA20, bool, HashSet_1_Photon_Bolt_NetworkId__IsSubsetOf, (HashSet_1_Photon_Bolt_NetworkId_ * __this, IEnumerable_1_Photon_Bolt_NetworkId_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7818, HashSet_1_Photon_Bolt_NetworkId__IsSubsetOf__MethodInfo); DO_APP_FUNC(0x0160D7B0, bool, HashSet_1_Photon_Bolt_NetworkId__IsSubsetOfHashSetWithSameEC, (HashSet_1_Photon_Bolt_NetworkId_ * __this, HashSet_1_Photon_Bolt_NetworkId_ * other, MethodInfo * method)); DO_APP_FUNC(0x0160BE50, bool, HashSet_1_Photon_Bolt_NetworkId__IsSupersetOf, (HashSet_1_Photon_Bolt_NetworkId_ * __this, IEnumerable_1_Photon_Bolt_NetworkId_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7808, HashSet_1_Photon_Bolt_NetworkId__IsSupersetOf__MethodInfo); DO_APP_FUNC(0x0160AD30, void, HashSet_1_Photon_Bolt_NetworkId__OnDeserialization, (HashSet_1_Photon_Bolt_NetworkId_ * __this, Object * sender, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7800, HashSet_1_Photon_Bolt_NetworkId__OnDeserialization__MethodInfo); DO_APP_FUNC(0x0160C280, bool, HashSet_1_Photon_Bolt_NetworkId__Overlaps, (HashSet_1_Photon_Bolt_NetworkId_ * __this, IEnumerable_1_Photon_Bolt_NetworkId_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF77D0, HashSet_1_Photon_Bolt_NetworkId__Overlaps__MethodInfo); DO_APP_FUNC(0x0160A5B0, bool, HashSet_1_Photon_Bolt_NetworkId__Remove, (HashSet_1_Photon_Bolt_NetworkId_ * __this, NetworkId item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7860, HashSet_1_Photon_Bolt_NetworkId__Remove__MethodInfo); DO_APP_FUNC(0x0160C980, int32_t, HashSet_1_Photon_Bolt_NetworkId__RemoveWhere, (HashSet_1_Photon_Bolt_NetworkId_ * __this, Predicate_1_Photon_Bolt_NetworkId_ * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF77C8, HashSet_1_Photon_Bolt_NetworkId__RemoveWhere__MethodInfo); DO_APP_FUNC(0x0160D050, void, HashSet_1_Photon_Bolt_NetworkId__SetCapacity, (HashSet_1_Photon_Bolt_NetworkId_ * __this, int32_t newSize, MethodInfo * method)); DO_APP_FUNC(0x0160C4C0, bool, HashSet_1_Photon_Bolt_NetworkId__SetEquals, (HashSet_1_Photon_Bolt_NetworkId_ * __this, IEnumerable_1_Photon_Bolt_NetworkId_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF77D8, HashSet_1_Photon_Bolt_NetworkId__SetEquals__MethodInfo); DO_APP_FUNC(0x0160B8A0, void, HashSet_1_Photon_Bolt_NetworkId__SymmetricExceptWith, (HashSet_1_Photon_Bolt_NetworkId_ * __this, IEnumerable_1_Photon_Bolt_NetworkId_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7830, HashSet_1_Photon_Bolt_NetworkId__SymmetricExceptWith__MethodInfo); DO_APP_FUNC(0x0160E0C0, void, HashSet_1_Photon_Bolt_NetworkId__SymmetricExceptWithEnumerable, (HashSet_1_Photon_Bolt_NetworkId_ * __this, IEnumerable_1_Photon_Bolt_NetworkId_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7790, HashSet_1_Photon_Bolt_NetworkId__SymmetricExceptWithEnumerable__MethodInfo); DO_APP_FUNC(0x0160DF80, void, HashSet_1_Photon_Bolt_NetworkId__SymmetricExceptWithUniqueHashSet, (HashSet_1_Photon_Bolt_NetworkId_ * __this, HashSet_1_Photon_Bolt_NetworkId_ * other, MethodInfo * method)); DO_APP_FUNC(0x015FAF50, void, HashSet_1_Photon_Bolt_NetworkId__System_Collections_Generic_ICollection_T__Add, (HashSet_1_Photon_Bolt_NetworkId_ * __this, NetworkId item, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, HashSet_1_Photon_Bolt_NetworkId__System_Collections_Generic_ICollection_T__get_IsReadOnly, (HashSet_1_Photon_Bolt_NetworkId_ * __this, MethodInfo * method)); @@ -152086,49 +167689,76 @@ DO_APP_FUNC(0x0160A8C0, IEnumerator_1_Photon_Bolt_NetworkId_ *, HashSet_1_Photon DO_APP_FUNC(0x0160A8C0, IEnumerator *, HashSet_1_Photon_Bolt_NetworkId__System_Collections_IEnumerable_GetEnumerator, (HashSet_1_Photon_Bolt_NetworkId_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0160CAE0, void, HashSet_1_Photon_Bolt_NetworkId__TrimExcess, (HashSet_1_Photon_Bolt_NetworkId_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0160B240, void, HashSet_1_Photon_Bolt_NetworkId__UnionWith, (HashSet_1_Photon_Bolt_NetworkId_ * __this, IEnumerable_1_Photon_Bolt_NetworkId_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF77F0, HashSet_1_Photon_Bolt_NetworkId__UnionWith__MethodInfo); DO_APP_FUNC(0x003BB330, IEqualityComparer_1_Photon_Bolt_NetworkId_ *, HashSet_1_Photon_Bolt_NetworkId__get_Comparer, (HashSet_1_Photon_Bolt_NetworkId_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003CC980, int32_t, HashSet_1_Photon_Bolt_NetworkId__get_Count, (HashSet_1_Photon_Bolt_NetworkId_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015F4F70, void, HashSet_1_System_Object___ctor, (HashSet_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBF3E0, HashSet_1_System_Object___ctor__MethodInfo); DO_APP_FUNC(0x015F5070, void, HashSet_1_System_Object___ctor_1, (HashSet_1_System_Object_ * __this, IEnumerable_1_System_Object_ * collection, MethodInfo * method)); DO_APP_FUNC(0x015F4FD0, void, HashSet_1_System_Object___ctor_2, (HashSet_1_System_Object_ * __this, IEqualityComparer_1_System_Object_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0160EE20, void, HashSet_1_System_Object___ctor_3, (HashSet_1_System_Object_ * __this, IEnumerable_1_System_Object_ * collection, IEqualityComparer_1_System_Object_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF77B8, HashSet_1_System_Object___ctor_3__MethodInfo); DO_APP_FUNC(0x003C73A0, void, HashSet_1_System_Object___ctor_4, (HashSet_1_System_Object_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x015FBDC0, bool, HashSet_1_System_Object__Add, (HashSet_1_System_Object_ * __this, Object * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBF688, HashSet_1_System_Object__Add__MethodInfo); DO_APP_FUNC(0x016120C0, bool, HashSet_1_System_Object__AddIfNotPresent, (HashSet_1_System_Object_ * __this, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x01613620, bool, HashSet_1_System_Object__AddOrGetLocation, (HashSet_1_System_Object_ * __this, Object * value, int32_t location, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7730, HashSet_1_System_Object__AddIfNotPresent__MethodInfo); +DO_APP_FUNC(0x01613620, bool, HashSet_1_System_Object__AddOrGetLocation, (HashSet_1_System_Object_ * __this, Object * value, int32_t * location, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7708, HashSet_1_System_Object__AddOrGetLocation__MethodInfo); DO_APP_FUNC(0x01612410, void, HashSet_1_System_Object__AddValue, (HashSet_1_System_Object_ * __this, int32_t index, int32_t hashCode, Object * value, MethodInfo * method)); DO_APP_FUNC(0x015FA7F0, bool, HashSet_1_System_Object__AreEqualityComparersEqual, (HashSet_1_System_Object_ * set1, HashSet_1_System_Object_ * set2, MethodInfo * method)); DO_APP_FUNC(0x01613950, HashSet_1_T_ElementCount_System_Object_, HashSet_1_System_Object__CheckUniqueAndUnfoundElements, (HashSet_1_System_Object_ * __this, IEnumerable_1_System_Object_ * other, bool returnIfUnfound, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF76F0, HashSet_1_System_Object__CheckUniqueAndUnfoundElements__MethodInfo); DO_APP_FUNC(0x015F56B0, void, HashSet_1_System_Object__Clear, (HashSet_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17928, HashSet_1_System_Object__Clear__MethodInfo); DO_APP_FUNC(0x0160F390, bool, HashSet_1_System_Object__Contains, (HashSet_1_System_Object_ * __this, Object * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBF668, HashSet_1_System_Object__Contains__MethodInfo); DO_APP_FUNC(0x01612530, bool, HashSet_1_System_Object__ContainsAllElements, (HashSet_1_System_Object_ * __this, IEnumerable_1_System_Object_ * other, MethodInfo * method)); DO_APP_FUNC(0x0160F040, void, HashSet_1_System_Object__CopyFrom, (HashSet_1_System_Object_ * __this, HashSet_1_System_Object_ * source, MethodInfo * method)); DO_APP_FUNC(0x015F7C30, void, HashSet_1_System_Object__CopyTo, (HashSet_1_System_Object_ * __this, Object__Array * array, MethodInfo * method)); DO_APP_FUNC(0x015F5920, void, HashSet_1_System_Object__CopyTo_1, (HashSet_1_System_Object_ * __this, Object__Array * array, int32_t arrayIndex, MethodInfo * method)); DO_APP_FUNC(0x01611550, void, HashSet_1_System_Object__CopyTo_2, (HashSet_1_System_Object_ * __this, Object__Array * array, int32_t arrayIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7710, HashSet_1_System_Object__CopyTo_2__MethodInfo); DO_APP_FUNC(0x016104B0, void, HashSet_1_System_Object__ExceptWith, (HashSet_1_System_Object_ * __this, IEnumerable_1_System_Object_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7780, HashSet_1_System_Object__ExceptWith__MethodInfo); DO_APP_FUNC(0x0160A830, HashSet_1_T_Enumerator_System_Object_, HashSet_1_System_Object__GetEnumerator, (HashSet_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0160F7D0, void, HashSet_1_System_Object__GetObjectData, (HashSet_1_System_Object_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7758, HashSet_1_System_Object__GetObjectData__MethodInfo); DO_APP_FUNC(0x01611DF0, void, HashSet_1_System_Object__IncreaseCapacity, (HashSet_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7738, HashSet_1_System_Object__IncreaseCapacity__MethodInfo); DO_APP_FUNC(0x01611C80, int32_t, HashSet_1_System_Object__Initialize, (HashSet_1_System_Object_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x01613DC0, int32_t, HashSet_1_System_Object__InternalGetHashCode, (HashSet_1_System_Object_ * __this, Object * item, MethodInfo * method)); DO_APP_FUNC(0x01612D40, int32_t, HashSet_1_System_Object__InternalIndexOf, (HashSet_1_System_Object_ * __this, Object * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF76E8, HashSet_1_System_Object__InternalIndexOf__MethodInfo); DO_APP_FUNC(0x016102D0, void, HashSet_1_System_Object__IntersectWith, (HashSet_1_System_Object_ * __this, IEnumerable_1_System_Object_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7748, HashSet_1_System_Object__IntersectWith__MethodInfo); DO_APP_FUNC(0x01612920, void, HashSet_1_System_Object__IntersectWithEnumerable, (HashSet_1_System_Object_ * __this, IEnumerable_1_System_Object_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF76E0, HashSet_1_System_Object__IntersectWithEnumerable__MethodInfo); DO_APP_FUNC(0x01612820, void, HashSet_1_System_Object__IntersectWithHashSetWithSameEC, (HashSet_1_System_Object_ * __this, HashSet_1_System_Object_ * other, MethodInfo * method)); DO_APP_FUNC(0x01610A40, bool, HashSet_1_System_Object__IsProperSubsetOf, (HashSet_1_System_Object_ * __this, IEnumerable_1_System_Object_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7778, HashSet_1_System_Object__IsProperSubsetOf__MethodInfo); DO_APP_FUNC(0x01610E90, bool, HashSet_1_System_Object__IsProperSupersetOf, (HashSet_1_System_Object_ * __this, IEnumerable_1_System_Object_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7768, HashSet_1_System_Object__IsProperSupersetOf__MethodInfo); DO_APP_FUNC(0x01610870, bool, HashSet_1_System_Object__IsSubsetOf, (HashSet_1_System_Object_ * __this, IEnumerable_1_System_Object_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7770, HashSet_1_System_Object__IsSubsetOf__MethodInfo); DO_APP_FUNC(0x01612700, bool, HashSet_1_System_Object__IsSubsetOfHashSetWithSameEC, (HashSet_1_System_Object_ * __this, HashSet_1_System_Object_ * other, MethodInfo * method)); DO_APP_FUNC(0x01610CA0, bool, HashSet_1_System_Object__IsSupersetOf, (HashSet_1_System_Object_ * __this, IEnumerable_1_System_Object_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7760, HashSet_1_System_Object__IsSupersetOf__MethodInfo); DO_APP_FUNC(0x0160FB70, void, HashSet_1_System_Object__OnDeserialization, (HashSet_1_System_Object_ * __this, Object * sender, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7750, HashSet_1_System_Object__OnDeserialization__MethodInfo); DO_APP_FUNC(0x016110D0, bool, HashSet_1_System_Object__Overlaps, (HashSet_1_System_Object_ * __this, IEnumerable_1_System_Object_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7720, HashSet_1_System_Object__Overlaps__MethodInfo); DO_APP_FUNC(0x0160F550, bool, HashSet_1_System_Object__Remove, (HashSet_1_System_Object_ * __this, Object * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBF660, HashSet_1_System_Object__Remove__MethodInfo); DO_APP_FUNC(0x016117E0, int32_t, HashSet_1_System_Object__RemoveWhere, (HashSet_1_System_Object_ * __this, Predicate_1_Object_ * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7718, HashSet_1_System_Object__RemoveWhere__MethodInfo); DO_APP_FUNC(0x01611ED0, void, HashSet_1_System_Object__SetCapacity, (HashSet_1_System_Object_ * __this, int32_t newSize, MethodInfo * method)); DO_APP_FUNC(0x01611310, bool, HashSet_1_System_Object__SetEquals, (HashSet_1_System_Object_ * __this, IEnumerable_1_System_Object_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7728, HashSet_1_System_Object__SetEquals__MethodInfo); DO_APP_FUNC(0x016106F0, void, HashSet_1_System_Object__SymmetricExceptWith, (HashSet_1_System_Object_ * __this, IEnumerable_1_System_Object_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7788, HashSet_1_System_Object__SymmetricExceptWith__MethodInfo); DO_APP_FUNC(0x01613060, void, HashSet_1_System_Object__SymmetricExceptWithEnumerable, (HashSet_1_System_Object_ * __this, IEnumerable_1_System_Object_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7700, HashSet_1_System_Object__SymmetricExceptWithEnumerable__MethodInfo); DO_APP_FUNC(0x01612F00, void, HashSet_1_System_Object__SymmetricExceptWithUniqueHashSet, (HashSet_1_System_Object_ * __this, HashSet_1_System_Object_ * other, MethodInfo * method)); DO_APP_FUNC(0x015FAF50, void, HashSet_1_System_Object__System_Collections_Generic_ICollection_T__Add, (HashSet_1_System_Object_ * __this, Object * item, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, HashSet_1_System_Object__System_Collections_Generic_ICollection_T__get_IsReadOnly, (HashSet_1_System_Object_ * __this, MethodInfo * method)); @@ -152136,6 +167766,7 @@ DO_APP_FUNC(0x0160A8C0, IEnumerator_1_System_Object_ *, HashSet_1_System_Object_ DO_APP_FUNC(0x0160A8C0, IEnumerator *, HashSet_1_System_Object__System_Collections_IEnumerable_GetEnumerator, (HashSet_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01611950, void, HashSet_1_System_Object__TrimExcess, (HashSet_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01610080, void, HashSet_1_System_Object__UnionWith, (HashSet_1_System_Object_ * __this, IEnumerable_1_System_Object_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7740, HashSet_1_System_Object__UnionWith__MethodInfo); DO_APP_FUNC(0x003BB330, IEqualityComparer_1_System_Object_ *, HashSet_1_System_Object__get_Comparer, (HashSet_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003CC980, int32_t, HashSet_1_System_Object__get_Count, (HashSet_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015F4F70, void, HashSet_1_System_UInt32___ctor, (HashSet_1_System_UInt32_ * __this, MethodInfo * method)); @@ -152143,45 +167774,68 @@ DO_APP_FUNC_METHODINFO(0x03CA2B58, HashSet_1_System_UInt32___ctor__MethodInfo); DO_APP_FUNC(0x015F5070, void, HashSet_1_System_UInt32___ctor_1, (HashSet_1_System_UInt32_ * __this, IEnumerable_1_System_UInt32_ * collection, MethodInfo * method)); DO_APP_FUNC(0x015F4FD0, void, HashSet_1_System_UInt32___ctor_2, (HashSet_1_System_UInt32_ * __this, IEqualityComparer_1_System_UInt32_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01613E30, void, HashSet_1_System_UInt32___ctor_3, (HashSet_1_System_UInt32_ * __this, IEnumerable_1_System_UInt32_ * collection, IEqualityComparer_1_System_UInt32_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF76F8, HashSet_1_System_UInt32___ctor_3__MethodInfo); DO_APP_FUNC(0x003C73A0, void, HashSet_1_System_UInt32___ctor_4, (HashSet_1_System_UInt32_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x015FBDC0, bool, HashSet_1_System_UInt32__Add, (HashSet_1_System_UInt32_ * __this, uint32_t item, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA2F00, HashSet_1_System_UInt32__Add__MethodInfo); DO_APP_FUNC(0x016170B0, bool, HashSet_1_System_UInt32__AddIfNotPresent, (HashSet_1_System_UInt32_ * __this, uint32_t value, MethodInfo * method)); -DO_APP_FUNC(0x01618320, bool, HashSet_1_System_UInt32__AddOrGetLocation, (HashSet_1_System_UInt32_ * __this, uint32_t value, int32_t location, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7630, HashSet_1_System_UInt32__AddIfNotPresent__MethodInfo); +DO_APP_FUNC(0x01618320, bool, HashSet_1_System_UInt32__AddOrGetLocation, (HashSet_1_System_UInt32_ * __this, uint32_t value, int32_t * location, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7648, HashSet_1_System_UInt32__AddOrGetLocation__MethodInfo); DO_APP_FUNC(0x015FE0F0, void, HashSet_1_System_UInt32__AddValue, (HashSet_1_System_UInt32_ * __this, int32_t index, int32_t hashCode, uint32_t value, MethodInfo * method)); DO_APP_FUNC(0x015FA7F0, bool, HashSet_1_System_UInt32__AreEqualityComparersEqual, (HashSet_1_System_UInt32_ * set1, HashSet_1_System_UInt32_ * set2, MethodInfo * method)); DO_APP_FUNC(0x01618600, HashSet_1_T_ElementCount_System_UInt32_, HashSet_1_System_UInt32__CheckUniqueAndUnfoundElements, (HashSet_1_System_UInt32_ * __this, IEnumerable_1_System_UInt32_ * other, bool returnIfUnfound, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7608, HashSet_1_System_UInt32__CheckUniqueAndUnfoundElements__MethodInfo); DO_APP_FUNC(0x015F56B0, void, HashSet_1_System_UInt32__Clear, (HashSet_1_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA2F08, HashSet_1_System_UInt32__Clear__MethodInfo); DO_APP_FUNC(0x016143A0, bool, HashSet_1_System_UInt32__Contains, (HashSet_1_System_UInt32_ * __this, uint32_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF76B0, HashSet_1_System_UInt32__Contains__MethodInfo); DO_APP_FUNC(0x01617390, bool, HashSet_1_System_UInt32__ContainsAllElements, (HashSet_1_System_UInt32_ * __this, IEnumerable_1_System_UInt32_ * other, MethodInfo * method)); DO_APP_FUNC(0x01614050, void, HashSet_1_System_UInt32__CopyFrom, (HashSet_1_System_UInt32_ * __this, HashSet_1_System_UInt32_ * source, MethodInfo * method)); DO_APP_FUNC(0x015F7C30, void, HashSet_1_System_UInt32__CopyTo, (HashSet_1_System_UInt32_ * __this, UInt32__Array * array, MethodInfo * method)); DO_APP_FUNC(0x015F5920, void, HashSet_1_System_UInt32__CopyTo_1, (HashSet_1_System_UInt32_ * __this, UInt32__Array * array, int32_t arrayIndex, MethodInfo * method)); DO_APP_FUNC(0x01616560, void, HashSet_1_System_UInt32__CopyTo_2, (HashSet_1_System_UInt32_ * __this, UInt32__Array * array, int32_t arrayIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7690, HashSet_1_System_UInt32__CopyTo_2__MethodInfo); DO_APP_FUNC(0x016154C0, void, HashSet_1_System_UInt32__ExceptWith, (HashSet_1_System_UInt32_ * __this, IEnumerable_1_System_UInt32_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF76C0, HashSet_1_System_UInt32__ExceptWith__MethodInfo); DO_APP_FUNC(0x015FB3B0, HashSet_1_T_Enumerator_System_UInt32_, HashSet_1_System_UInt32__GetEnumerator, (HashSet_1_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016147E0, void, HashSet_1_System_UInt32__GetObjectData, (HashSet_1_System_UInt32_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF76A8, HashSet_1_System_UInt32__GetObjectData__MethodInfo); DO_APP_FUNC(0x01616DE0, void, HashSet_1_System_UInt32__IncreaseCapacity, (HashSet_1_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7638, HashSet_1_System_UInt32__IncreaseCapacity__MethodInfo); DO_APP_FUNC(0x01616C70, int32_t, HashSet_1_System_UInt32__Initialize, (HashSet_1_System_UInt32_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x015FF990, int32_t, HashSet_1_System_UInt32__InternalGetHashCode, (HashSet_1_System_UInt32_ * __this, uint32_t item, MethodInfo * method)); DO_APP_FUNC(0x01617A70, int32_t, HashSet_1_System_UInt32__InternalIndexOf, (HashSet_1_System_UInt32_ * __this, uint32_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7658, HashSet_1_System_UInt32__InternalIndexOf__MethodInfo); DO_APP_FUNC(0x016152E0, void, HashSet_1_System_UInt32__IntersectWith, (HashSet_1_System_UInt32_ * __this, IEnumerable_1_System_UInt32_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF76D8, HashSet_1_System_UInt32__IntersectWith__MethodInfo); DO_APP_FUNC(0x01617660, void, HashSet_1_System_UInt32__IntersectWithEnumerable, (HashSet_1_System_UInt32_ * __this, IEnumerable_1_System_UInt32_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7650, HashSet_1_System_UInt32__IntersectWithEnumerable__MethodInfo); DO_APP_FUNC(0x015FE480, void, HashSet_1_System_UInt32__IntersectWithHashSetWithSameEC, (HashSet_1_System_UInt32_ * __this, HashSet_1_System_UInt32_ * other, MethodInfo * method)); DO_APP_FUNC(0x01615A50, bool, HashSet_1_System_UInt32__IsProperSubsetOf, (HashSet_1_System_UInt32_ * __this, IEnumerable_1_System_UInt32_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7688, HashSet_1_System_UInt32__IsProperSubsetOf__MethodInfo); DO_APP_FUNC(0x01615EA0, bool, HashSet_1_System_UInt32__IsProperSupersetOf, (HashSet_1_System_UInt32_ * __this, IEnumerable_1_System_UInt32_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7678, HashSet_1_System_UInt32__IsProperSupersetOf__MethodInfo); DO_APP_FUNC(0x01615880, bool, HashSet_1_System_UInt32__IsSubsetOf, (HashSet_1_System_UInt32_ * __this, IEnumerable_1_System_UInt32_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7680, HashSet_1_System_UInt32__IsSubsetOf__MethodInfo); DO_APP_FUNC(0x01617560, bool, HashSet_1_System_UInt32__IsSubsetOfHashSetWithSameEC, (HashSet_1_System_UInt32_ * __this, HashSet_1_System_UInt32_ * other, MethodInfo * method)); DO_APP_FUNC(0x01615CB0, bool, HashSet_1_System_UInt32__IsSupersetOf, (HashSet_1_System_UInt32_ * __this, IEnumerable_1_System_UInt32_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7670, HashSet_1_System_UInt32__IsSupersetOf__MethodInfo); DO_APP_FUNC(0x01614B80, void, HashSet_1_System_UInt32__OnDeserialization, (HashSet_1_System_UInt32_ * __this, Object * sender, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF76A0, HashSet_1_System_UInt32__OnDeserialization__MethodInfo); DO_APP_FUNC(0x016160E0, bool, HashSet_1_System_UInt32__Overlaps, (HashSet_1_System_UInt32_ * __this, IEnumerable_1_System_UInt32_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7660, HashSet_1_System_UInt32__Overlaps__MethodInfo); DO_APP_FUNC(0x01614560, bool, HashSet_1_System_UInt32__Remove, (HashSet_1_System_UInt32_ * __this, uint32_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF76B8, HashSet_1_System_UInt32__Remove__MethodInfo); DO_APP_FUNC(0x016167E0, int32_t, HashSet_1_System_UInt32__RemoveWhere, (HashSet_1_System_UInt32_ * __this, Predicate_1_UInt32_ * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7698, HashSet_1_System_UInt32__RemoveWhere__MethodInfo); DO_APP_FUNC(0x01616EC0, void, HashSet_1_System_UInt32__SetCapacity, (HashSet_1_System_UInt32_ * __this, int32_t newSize, MethodInfo * method)); DO_APP_FUNC(0x01616320, bool, HashSet_1_System_UInt32__SetEquals, (HashSet_1_System_UInt32_ * __this, IEnumerable_1_System_UInt32_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7668, HashSet_1_System_UInt32__SetEquals__MethodInfo); DO_APP_FUNC(0x01615700, void, HashSet_1_System_UInt32__SymmetricExceptWith, (HashSet_1_System_UInt32_ * __this, IEnumerable_1_System_UInt32_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF76C8, HashSet_1_System_UInt32__SymmetricExceptWith__MethodInfo); DO_APP_FUNC(0x01617D60, void, HashSet_1_System_UInt32__SymmetricExceptWithEnumerable, (HashSet_1_System_UInt32_ * __this, IEnumerable_1_System_UInt32_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7640, HashSet_1_System_UInt32__SymmetricExceptWithEnumerable__MethodInfo); DO_APP_FUNC(0x01617C20, void, HashSet_1_System_UInt32__SymmetricExceptWithUniqueHashSet, (HashSet_1_System_UInt32_ * __this, HashSet_1_System_UInt32_ * other, MethodInfo * method)); DO_APP_FUNC(0x015FAF50, void, HashSet_1_System_UInt32__System_Collections_Generic_ICollection_T__Add, (HashSet_1_System_UInt32_ * __this, uint32_t item, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, HashSet_1_System_UInt32__System_Collections_Generic_ICollection_T__get_IsReadOnly, (HashSet_1_System_UInt32_ * __this, MethodInfo * method)); @@ -152189,49 +167843,76 @@ DO_APP_FUNC(0x015FB440, IEnumerator_1_System_UInt32_ *, HashSet_1_System_UInt32_ DO_APP_FUNC(0x015FB440, IEnumerator *, HashSet_1_System_UInt32__System_Collections_IEnumerable_GetEnumerator, (HashSet_1_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01616940, void, HashSet_1_System_UInt32__TrimExcess, (HashSet_1_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01615090, void, HashSet_1_System_UInt32__UnionWith, (HashSet_1_System_UInt32_ * __this, IEnumerable_1_System_UInt32_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF76D0, HashSet_1_System_UInt32__UnionWith__MethodInfo); DO_APP_FUNC(0x003BB330, IEqualityComparer_1_System_UInt32_ *, HashSet_1_System_UInt32__get_Comparer, (HashSet_1_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003CC980, int32_t, HashSet_1_System_UInt32__get_Count, (HashSet_1_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015F4F70, void, HashSet_1_System_UInt64___ctor, (HashSet_1_System_UInt64_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC8D0, HashSet_1_System_UInt64___ctor__MethodInfo); DO_APP_FUNC(0x015F5070, void, HashSet_1_System_UInt64___ctor_1, (HashSet_1_System_UInt64_ * __this, IEnumerable_1_System_UInt64_ * collection, MethodInfo * method)); DO_APP_FUNC(0x015F4FD0, void, HashSet_1_System_UInt64___ctor_2, (HashSet_1_System_UInt64_ * __this, IEqualityComparer_1_System_UInt64_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01618A70, void, HashSet_1_System_UInt64___ctor_3, (HashSet_1_System_UInt64_ * __this, IEnumerable_1_System_UInt64_ * collection, IEqualityComparer_1_System_UInt64_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7610, HashSet_1_System_UInt64___ctor_3__MethodInfo); DO_APP_FUNC(0x003C73A0, void, HashSet_1_System_UInt64___ctor_4, (HashSet_1_System_UInt64_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x015FBDC0, bool, HashSet_1_System_UInt64__Add, (HashSet_1_System_UInt64_ * __this, uint64_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC918, HashSet_1_System_UInt64__Add__MethodInfo); DO_APP_FUNC(0x0161BCE0, bool, HashSet_1_System_UInt64__AddIfNotPresent, (HashSet_1_System_UInt64_ * __this, uint64_t value, MethodInfo * method)); -DO_APP_FUNC(0x0161CF80, bool, HashSet_1_System_UInt64__AddOrGetLocation, (HashSet_1_System_UInt64_ * __this, uint64_t value, int32_t location, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7580, HashSet_1_System_UInt64__AddIfNotPresent__MethodInfo); +DO_APP_FUNC(0x0161CF80, bool, HashSet_1_System_UInt64__AddOrGetLocation, (HashSet_1_System_UInt64_ * __this, uint64_t value, int32_t * location, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7598, HashSet_1_System_UInt64__AddOrGetLocation__MethodInfo); DO_APP_FUNC(0x0160D530, void, HashSet_1_System_UInt64__AddValue, (HashSet_1_System_UInt64_ * __this, int32_t index, int32_t hashCode, uint64_t value, MethodInfo * method)); DO_APP_FUNC(0x015FA7F0, bool, HashSet_1_System_UInt64__AreEqualityComparersEqual, (HashSet_1_System_UInt64_ * set1, HashSet_1_System_UInt64_ * set2, MethodInfo * method)); DO_APP_FUNC(0x0161D250, HashSet_1_T_ElementCount_System_UInt64_, HashSet_1_System_UInt64__CheckUniqueAndUnfoundElements, (HashSet_1_System_UInt64_ * __this, IEnumerable_1_System_UInt64_ * other, bool returnIfUnfound, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7578, HashSet_1_System_UInt64__CheckUniqueAndUnfoundElements__MethodInfo); DO_APP_FUNC(0x015F56B0, void, HashSet_1_System_UInt64__Clear, (HashSet_1_System_UInt64_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC900, HashSet_1_System_UInt64__Clear__MethodInfo); DO_APP_FUNC(0x01618FE0, bool, HashSet_1_System_UInt64__Contains, (HashSet_1_System_UInt64_ * __this, uint64_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC928, HashSet_1_System_UInt64__Contains__MethodInfo); DO_APP_FUNC(0x0161BFD0, bool, HashSet_1_System_UInt64__ContainsAllElements, (HashSet_1_System_UInt64_ * __this, IEnumerable_1_System_UInt64_ * other, MethodInfo * method)); DO_APP_FUNC(0x01618C90, void, HashSet_1_System_UInt64__CopyFrom, (HashSet_1_System_UInt64_ * __this, HashSet_1_System_UInt64_ * source, MethodInfo * method)); DO_APP_FUNC(0x015F7C30, void, HashSet_1_System_UInt64__CopyTo, (HashSet_1_System_UInt64_ * __this, UInt64__Array * array, MethodInfo * method)); DO_APP_FUNC(0x015F5920, void, HashSet_1_System_UInt64__CopyTo_1, (HashSet_1_System_UInt64_ * __this, UInt64__Array * array, int32_t arrayIndex, MethodInfo * method)); DO_APP_FUNC(0x0161B190, void, HashSet_1_System_UInt64__CopyTo_2, (HashSet_1_System_UInt64_ * __this, UInt64__Array * array, int32_t arrayIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF75E0, HashSet_1_System_UInt64__CopyTo_2__MethodInfo); DO_APP_FUNC(0x0161A0F0, void, HashSet_1_System_UInt64__ExceptWith, (HashSet_1_System_UInt64_ * __this, IEnumerable_1_System_UInt64_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF75D0, HashSet_1_System_UInt64__ExceptWith__MethodInfo); DO_APP_FUNC(0x0160A830, HashSet_1_T_Enumerator_System_UInt64_, HashSet_1_System_UInt64__GetEnumerator, (HashSet_1_System_UInt64_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01619410, void, HashSet_1_System_UInt64__GetObjectData, (HashSet_1_System_UInt64_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7600, HashSet_1_System_UInt64__GetObjectData__MethodInfo); DO_APP_FUNC(0x0161BA10, void, HashSet_1_System_UInt64__IncreaseCapacity, (HashSet_1_System_UInt64_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7588, HashSet_1_System_UInt64__IncreaseCapacity__MethodInfo); DO_APP_FUNC(0x0161B8A0, int32_t, HashSet_1_System_UInt64__Initialize, (HashSet_1_System_UInt64_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x0161D6C0, int32_t, HashSet_1_System_UInt64__InternalGetHashCode, (HashSet_1_System_UInt64_ * __this, uint64_t item, MethodInfo * method)); DO_APP_FUNC(0x0161C6C0, int32_t, HashSet_1_System_UInt64__InternalIndexOf, (HashSet_1_System_UInt64_ * __this, uint64_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF75A8, HashSet_1_System_UInt64__InternalIndexOf__MethodInfo); DO_APP_FUNC(0x01619F10, void, HashSet_1_System_UInt64__IntersectWith, (HashSet_1_System_UInt64_ * __this, IEnumerable_1_System_UInt64_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7620, HashSet_1_System_UInt64__IntersectWith__MethodInfo); DO_APP_FUNC(0x0161C2A0, void, HashSet_1_System_UInt64__IntersectWithEnumerable, (HashSet_1_System_UInt64_ * __this, IEnumerable_1_System_UInt64_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF75A0, HashSet_1_System_UInt64__IntersectWithEnumerable__MethodInfo); DO_APP_FUNC(0x01612820, void, HashSet_1_System_UInt64__IntersectWithHashSetWithSameEC, (HashSet_1_System_UInt64_ * __this, HashSet_1_System_UInt64_ * other, MethodInfo * method)); DO_APP_FUNC(0x0161A680, bool, HashSet_1_System_UInt64__IsProperSubsetOf, (HashSet_1_System_UInt64_ * __this, IEnumerable_1_System_UInt64_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF75C8, HashSet_1_System_UInt64__IsProperSubsetOf__MethodInfo); DO_APP_FUNC(0x0161AAD0, bool, HashSet_1_System_UInt64__IsProperSupersetOf, (HashSet_1_System_UInt64_ * __this, IEnumerable_1_System_UInt64_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF75B8, HashSet_1_System_UInt64__IsProperSupersetOf__MethodInfo); DO_APP_FUNC(0x0161A4B0, bool, HashSet_1_System_UInt64__IsSubsetOf, (HashSet_1_System_UInt64_ * __this, IEnumerable_1_System_UInt64_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF75C0, HashSet_1_System_UInt64__IsSubsetOf__MethodInfo); DO_APP_FUNC(0x0161C1A0, bool, HashSet_1_System_UInt64__IsSubsetOfHashSetWithSameEC, (HashSet_1_System_UInt64_ * __this, HashSet_1_System_UInt64_ * other, MethodInfo * method)); DO_APP_FUNC(0x0161A8E0, bool, HashSet_1_System_UInt64__IsSupersetOf, (HashSet_1_System_UInt64_ * __this, IEnumerable_1_System_UInt64_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF75B0, HashSet_1_System_UInt64__IsSupersetOf__MethodInfo); DO_APP_FUNC(0x016197B0, void, HashSet_1_System_UInt64__OnDeserialization, (HashSet_1_System_UInt64_ * __this, Object * sender, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7628, HashSet_1_System_UInt64__OnDeserialization__MethodInfo); DO_APP_FUNC(0x0161AD10, bool, HashSet_1_System_UInt64__Overlaps, (HashSet_1_System_UInt64_ * __this, IEnumerable_1_System_UInt64_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF75F0, HashSet_1_System_UInt64__Overlaps__MethodInfo); DO_APP_FUNC(0x016191A0, bool, HashSet_1_System_UInt64__Remove, (HashSet_1_System_UInt64_ * __this, uint64_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC8F0, HashSet_1_System_UInt64__Remove__MethodInfo); DO_APP_FUNC(0x0161B410, int32_t, HashSet_1_System_UInt64__RemoveWhere, (HashSet_1_System_UInt64_ * __this, Predicate_1_UInt64_ * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF75E8, HashSet_1_System_UInt64__RemoveWhere__MethodInfo); DO_APP_FUNC(0x0161BAF0, void, HashSet_1_System_UInt64__SetCapacity, (HashSet_1_System_UInt64_ * __this, int32_t newSize, MethodInfo * method)); DO_APP_FUNC(0x0161AF50, bool, HashSet_1_System_UInt64__SetEquals, (HashSet_1_System_UInt64_ * __this, IEnumerable_1_System_UInt64_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF75F8, HashSet_1_System_UInt64__SetEquals__MethodInfo); DO_APP_FUNC(0x0161A330, void, HashSet_1_System_UInt64__SymmetricExceptWith, (HashSet_1_System_UInt64_ * __this, IEnumerable_1_System_UInt64_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF75D8, HashSet_1_System_UInt64__SymmetricExceptWith__MethodInfo); DO_APP_FUNC(0x0161C9C0, void, HashSet_1_System_UInt64__SymmetricExceptWithEnumerable, (HashSet_1_System_UInt64_ * __this, IEnumerable_1_System_UInt64_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7590, HashSet_1_System_UInt64__SymmetricExceptWithEnumerable__MethodInfo); DO_APP_FUNC(0x0161C880, void, HashSet_1_System_UInt64__SymmetricExceptWithUniqueHashSet, (HashSet_1_System_UInt64_ * __this, HashSet_1_System_UInt64_ * other, MethodInfo * method)); DO_APP_FUNC(0x015FAF50, void, HashSet_1_System_UInt64__System_Collections_Generic_ICollection_T__Add, (HashSet_1_System_UInt64_ * __this, uint64_t item, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, HashSet_1_System_UInt64__System_Collections_Generic_ICollection_T__get_IsReadOnly, (HashSet_1_System_UInt64_ * __this, MethodInfo * method)); @@ -152239,49 +167920,75 @@ DO_APP_FUNC(0x0160A8C0, IEnumerator_1_System_UInt64_ *, HashSet_1_System_UInt64_ DO_APP_FUNC(0x0160A8C0, IEnumerator *, HashSet_1_System_UInt64__System_Collections_IEnumerable_GetEnumerator, (HashSet_1_System_UInt64_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0161B580, void, HashSet_1_System_UInt64__TrimExcess, (HashSet_1_System_UInt64_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01619CC0, void, HashSet_1_System_UInt64__UnionWith, (HashSet_1_System_UInt64_ * __this, IEnumerable_1_System_UInt64_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7618, HashSet_1_System_UInt64__UnionWith__MethodInfo); DO_APP_FUNC(0x003BB330, IEqualityComparer_1_System_UInt64_ *, HashSet_1_System_UInt64__get_Comparer, (HashSet_1_System_UInt64_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003CC980, int32_t, HashSet_1_System_UInt64__get_Count, (HashSet_1_System_UInt64_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015F4F70, void, HashSet_1_UdpKit_UdpEndPoint___ctor, (HashSet_1_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8DA8, HashSet_1_UdpKit_UdpEndPoint___ctor__MethodInfo); DO_APP_FUNC(0x015F5070, void, HashSet_1_UdpKit_UdpEndPoint___ctor_1, (HashSet_1_UdpKit_UdpEndPoint_ * __this, IEnumerable_1_UdpKit_UdpEndPoint_ * collection, MethodInfo * method)); DO_APP_FUNC(0x015F4FD0, void, HashSet_1_UdpKit_UdpEndPoint___ctor_2, (HashSet_1_UdpKit_UdpEndPoint_ * __this, IEqualityComparer_1_UdpKit_UdpEndPoint_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0161D730, void, HashSet_1_UdpKit_UdpEndPoint___ctor_3, (HashSet_1_UdpKit_UdpEndPoint_ * __this, IEnumerable_1_UdpKit_UdpEndPoint_ * collection, IEqualityComparer_1_UdpKit_UdpEndPoint_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9648, HashSet_1_UdpKit_UdpEndPoint___ctor_3__MethodInfo); DO_APP_FUNC(0x003C73A0, void, HashSet_1_UdpKit_UdpEndPoint___ctor_4, (HashSet_1_UdpKit_UdpEndPoint_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x0161EC80, bool, HashSet_1_UdpKit_UdpEndPoint__Add, (HashSet_1_UdpKit_UdpEndPoint_ * __this, UdpEndPoint item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8DB0, HashSet_1_UdpKit_UdpEndPoint__Add__MethodInfo); DO_APP_FUNC(0x01620E10, bool, HashSet_1_UdpKit_UdpEndPoint__AddIfNotPresent, (HashSet_1_UdpKit_UdpEndPoint_ * __this, UdpEndPoint value, MethodInfo * method)); -DO_APP_FUNC(0x01622570, bool, HashSet_1_UdpKit_UdpEndPoint__AddOrGetLocation, (HashSet_1_UdpKit_UdpEndPoint_ * __this, UdpEndPoint value, int32_t location, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9520, HashSet_1_UdpKit_UdpEndPoint__AddIfNotPresent__MethodInfo); +DO_APP_FUNC(0x01622570, bool, HashSet_1_UdpKit_UdpEndPoint__AddOrGetLocation, (HashSet_1_UdpKit_UdpEndPoint_ * __this, UdpEndPoint value, int32_t * location, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF94E8, HashSet_1_UdpKit_UdpEndPoint__AddOrGetLocation__MethodInfo); DO_APP_FUNC(0x01621190, void, HashSet_1_UdpKit_UdpEndPoint__AddValue, (HashSet_1_UdpKit_UdpEndPoint_ * __this, int32_t index, int32_t hashCode, UdpEndPoint value, MethodInfo * method)); DO_APP_FUNC(0x015FA7F0, bool, HashSet_1_UdpKit_UdpEndPoint__AreEqualityComparersEqual, (HashSet_1_UdpKit_UdpEndPoint_ * set1, HashSet_1_UdpKit_UdpEndPoint_ * set2, MethodInfo * method)); DO_APP_FUNC(0x016228D0, HashSet_1_T_ElementCount_UdpKit_UdpEndPoint_, HashSet_1_UdpKit_UdpEndPoint__CheckUniqueAndUnfoundElements, (HashSet_1_UdpKit_UdpEndPoint_ * __this, IEnumerable_1_UdpKit_UdpEndPoint_ * other, bool returnIfUnfound, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF94C0, HashSet_1_UdpKit_UdpEndPoint__CheckUniqueAndUnfoundElements__MethodInfo); DO_APP_FUNC(0x015F56B0, void, HashSet_1_UdpKit_UdpEndPoint__Clear, (HashSet_1_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0161DD00, bool, HashSet_1_UdpKit_UdpEndPoint__Contains, (HashSet_1_UdpKit_UdpEndPoint_ * __this, UdpEndPoint item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9630, HashSet_1_UdpKit_UdpEndPoint__Contains__MethodInfo); DO_APP_FUNC(0x01621270, bool, HashSet_1_UdpKit_UdpEndPoint__ContainsAllElements, (HashSet_1_UdpKit_UdpEndPoint_ * __this, IEnumerable_1_UdpKit_UdpEndPoint_ * other, MethodInfo * method)); DO_APP_FUNC(0x0161D950, void, HashSet_1_UdpKit_UdpEndPoint__CopyFrom, (HashSet_1_UdpKit_UdpEndPoint_ * __this, HashSet_1_UdpKit_UdpEndPoint_ * source, MethodInfo * method)); DO_APP_FUNC(0x015F7C30, void, HashSet_1_UdpKit_UdpEndPoint__CopyTo, (HashSet_1_UdpKit_UdpEndPoint_ * __this, UdpEndPoint__Array * array, MethodInfo * method)); DO_APP_FUNC(0x015F5920, void, HashSet_1_UdpKit_UdpEndPoint__CopyTo_1, (HashSet_1_UdpKit_UdpEndPoint_ * __this, UdpEndPoint__Array * array, int32_t arrayIndex, MethodInfo * method)); DO_APP_FUNC(0x01620220, void, HashSet_1_UdpKit_UdpEndPoint__CopyTo_2, (HashSet_1_UdpKit_UdpEndPoint_ * __this, UdpEndPoint__Array * array, int32_t arrayIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF95F0, HashSet_1_UdpKit_UdpEndPoint__CopyTo_2__MethodInfo); DO_APP_FUNC(0x0161F140, void, HashSet_1_UdpKit_UdpEndPoint__ExceptWith, (HashSet_1_UdpKit_UdpEndPoint_ * __this, IEnumerable_1_UdpKit_UdpEndPoint_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF95B0, HashSet_1_UdpKit_UdpEndPoint__ExceptWith__MethodInfo); DO_APP_FUNC(0x0161E200, HashSet_1_T_Enumerator_UdpKit_UdpEndPoint_, HashSet_1_UdpKit_UdpEndPoint__GetEnumerator, (HashSet_1_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0161E3A0, void, HashSet_1_UdpKit_UdpEndPoint__GetObjectData, (HashSet_1_UdpKit_UdpEndPoint_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9678, HashSet_1_UdpKit_UdpEndPoint__GetObjectData__MethodInfo); DO_APP_FUNC(0x01620B40, void, HashSet_1_UdpKit_UdpEndPoint__IncreaseCapacity, (HashSet_1_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9528, HashSet_1_UdpKit_UdpEndPoint__IncreaseCapacity__MethodInfo); DO_APP_FUNC(0x016209D0, int32_t, HashSet_1_UdpKit_UdpEndPoint__Initialize, (HashSet_1_UdpKit_UdpEndPoint_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x01622D70, int32_t, HashSet_1_UdpKit_UdpEndPoint__InternalGetHashCode, (HashSet_1_UdpKit_UdpEndPoint_ * __this, UdpEndPoint item, MethodInfo * method)); DO_APP_FUNC(0x01621B90, int32_t, HashSet_1_UdpKit_UdpEndPoint__InternalIndexOf, (HashSet_1_UdpKit_UdpEndPoint_ * __this, UdpEndPoint item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9568, HashSet_1_UdpKit_UdpEndPoint__InternalIndexOf__MethodInfo); DO_APP_FUNC(0x0161EF60, void, HashSet_1_UdpKit_UdpEndPoint__IntersectWith, (HashSet_1_UdpKit_UdpEndPoint_ * __this, IEnumerable_1_UdpKit_UdpEndPoint_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9658, HashSet_1_UdpKit_UdpEndPoint__IntersectWith__MethodInfo); DO_APP_FUNC(0x01621710, void, HashSet_1_UdpKit_UdpEndPoint__IntersectWithEnumerable, (HashSet_1_UdpKit_UdpEndPoint_ * __this, IEnumerable_1_UdpKit_UdpEndPoint_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9560, HashSet_1_UdpKit_UdpEndPoint__IntersectWithEnumerable__MethodInfo); DO_APP_FUNC(0x016215B0, void, HashSet_1_UdpKit_UdpEndPoint__IntersectWithHashSetWithSameEC, (HashSet_1_UdpKit_UdpEndPoint_ * __this, HashSet_1_UdpKit_UdpEndPoint_ * other, MethodInfo * method)); DO_APP_FUNC(0x0161F6F0, bool, HashSet_1_UdpKit_UdpEndPoint__IsProperSubsetOf, (HashSet_1_UdpKit_UdpEndPoint_ * __this, IEnumerable_1_UdpKit_UdpEndPoint_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF95A0, HashSet_1_UdpKit_UdpEndPoint__IsProperSubsetOf__MethodInfo); DO_APP_FUNC(0x0161FB40, bool, HashSet_1_UdpKit_UdpEndPoint__IsProperSupersetOf, (HashSet_1_UdpKit_UdpEndPoint_ * __this, IEnumerable_1_UdpKit_UdpEndPoint_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9588, HashSet_1_UdpKit_UdpEndPoint__IsProperSupersetOf__MethodInfo); DO_APP_FUNC(0x0161F520, bool, HashSet_1_UdpKit_UdpEndPoint__IsSubsetOf, (HashSet_1_UdpKit_UdpEndPoint_ * __this, IEnumerable_1_UdpKit_UdpEndPoint_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9598, HashSet_1_UdpKit_UdpEndPoint__IsSubsetOf__MethodInfo); DO_APP_FUNC(0x01621470, bool, HashSet_1_UdpKit_UdpEndPoint__IsSubsetOfHashSetWithSameEC, (HashSet_1_UdpKit_UdpEndPoint_ * __this, HashSet_1_UdpKit_UdpEndPoint_ * other, MethodInfo * method)); DO_APP_FUNC(0x0161F950, bool, HashSet_1_UdpKit_UdpEndPoint__IsSupersetOf, (HashSet_1_UdpKit_UdpEndPoint_ * __this, IEnumerable_1_UdpKit_UdpEndPoint_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9580, HashSet_1_UdpKit_UdpEndPoint__IsSupersetOf__MethodInfo); DO_APP_FUNC(0x0161E740, void, HashSet_1_UdpKit_UdpEndPoint__OnDeserialization, (HashSet_1_UdpKit_UdpEndPoint_ * __this, Object * sender, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9668, HashSet_1_UdpKit_UdpEndPoint__OnDeserialization__MethodInfo); DO_APP_FUNC(0x0161FD80, bool, HashSet_1_UdpKit_UdpEndPoint__Overlaps, (HashSet_1_UdpKit_UdpEndPoint_ * __this, IEnumerable_1_UdpKit_UdpEndPoint_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9610, HashSet_1_UdpKit_UdpEndPoint__Overlaps__MethodInfo); DO_APP_FUNC(0x0161DF20, bool, HashSet_1_UdpKit_UdpEndPoint__Remove, (HashSet_1_UdpKit_UdpEndPoint_ * __this, UdpEndPoint item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9638, HashSet_1_UdpKit_UdpEndPoint__Remove__MethodInfo); DO_APP_FUNC(0x016204D0, int32_t, HashSet_1_UdpKit_UdpEndPoint__RemoveWhere, (HashSet_1_UdpKit_UdpEndPoint_ * __this, Predicate_1_UdpKit_UdpEndPoint_ * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9600, HashSet_1_UdpKit_UdpEndPoint__RemoveWhere__MethodInfo); DO_APP_FUNC(0x01620C20, void, HashSet_1_UdpKit_UdpEndPoint__SetCapacity, (HashSet_1_UdpKit_UdpEndPoint_ * __this, int32_t newSize, MethodInfo * method)); DO_APP_FUNC(0x0161FFE0, bool, HashSet_1_UdpKit_UdpEndPoint__SetEquals, (HashSet_1_UdpKit_UdpEndPoint_ * __this, IEnumerable_1_UdpKit_UdpEndPoint_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9618, HashSet_1_UdpKit_UdpEndPoint__SetEquals__MethodInfo); DO_APP_FUNC(0x0161F3A0, void, HashSet_1_UdpKit_UdpEndPoint__SymmetricExceptWith, (HashSet_1_UdpKit_UdpEndPoint_ * __this, IEnumerable_1_UdpKit_UdpEndPoint_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF95C8, HashSet_1_UdpKit_UdpEndPoint__SymmetricExceptWith__MethodInfo); DO_APP_FUNC(0x01621F60, void, HashSet_1_UdpKit_UdpEndPoint__SymmetricExceptWithEnumerable, (HashSet_1_UdpKit_UdpEndPoint_ * __this, IEnumerable_1_UdpKit_UdpEndPoint_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF94E0, HashSet_1_UdpKit_UdpEndPoint__SymmetricExceptWithEnumerable__MethodInfo); DO_APP_FUNC(0x01621DA0, void, HashSet_1_UdpKit_UdpEndPoint__SymmetricExceptWithUniqueHashSet, (HashSet_1_UdpKit_UdpEndPoint_ * __this, HashSet_1_UdpKit_UdpEndPoint_ * other, MethodInfo * method)); DO_APP_FUNC(0x0161DCC0, void, HashSet_1_UdpKit_UdpEndPoint__System_Collections_Generic_ICollection_T__Add, (HashSet_1_UdpKit_UdpEndPoint_ * __this, UdpEndPoint item, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, HashSet_1_UdpKit_UdpEndPoint__System_Collections_Generic_ICollection_T__get_IsReadOnly, (HashSet_1_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); @@ -152289,49 +167996,76 @@ DO_APP_FUNC(0x0161E2B0, IEnumerator_1_UdpKit_UdpEndPoint_ *, HashSet_1_UdpKit_Ud DO_APP_FUNC(0x0161E2B0, IEnumerator *, HashSet_1_UdpKit_UdpEndPoint__System_Collections_IEnumerable_GetEnumerator, (HashSet_1_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016206A0, void, HashSet_1_UdpKit_UdpEndPoint__TrimExcess, (HashSet_1_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0161ECD0, void, HashSet_1_UdpKit_UdpEndPoint__UnionWith, (HashSet_1_UdpKit_UdpEndPoint_ * __this, IEnumerable_1_UdpKit_UdpEndPoint_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9650, HashSet_1_UdpKit_UdpEndPoint__UnionWith__MethodInfo); DO_APP_FUNC(0x003BB330, IEqualityComparer_1_UdpKit_UdpEndPoint_ *, HashSet_1_UdpKit_UdpEndPoint__get_Comparer, (HashSet_1_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003CC980, int32_t, HashSet_1_UdpKit_UdpEndPoint__get_Count, (HashSet_1_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015F4F70, void, HashSet_1_UdpKit_UdpIPv4Address___ctor, (HashSet_1_UdpKit_UdpIPv4Address_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8C90, HashSet_1_UdpKit_UdpIPv4Address___ctor__MethodInfo); DO_APP_FUNC(0x015F5070, void, HashSet_1_UdpKit_UdpIPv4Address___ctor_1, (HashSet_1_UdpKit_UdpIPv4Address_ * __this, IEnumerable_1_UdpKit_UdpIPv4Address_ * collection, MethodInfo * method)); DO_APP_FUNC(0x015F4FD0, void, HashSet_1_UdpKit_UdpIPv4Address___ctor_2, (HashSet_1_UdpKit_UdpIPv4Address_ * __this, IEqualityComparer_1_UdpKit_UdpIPv4Address_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8D78, HashSet_1_UdpKit_UdpIPv4Address___ctor_2__MethodInfo); DO_APP_FUNC(0x01622E60, void, HashSet_1_UdpKit_UdpIPv4Address___ctor_3, (HashSet_1_UdpKit_UdpIPv4Address_ * __this, IEnumerable_1_UdpKit_UdpIPv4Address_ * collection, IEqualityComparer_1_UdpKit_UdpIPv4Address_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF94D0, HashSet_1_UdpKit_UdpIPv4Address___ctor_3__MethodInfo); DO_APP_FUNC(0x003C73A0, void, HashSet_1_UdpKit_UdpIPv4Address___ctor_4, (HashSet_1_UdpKit_UdpIPv4Address_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x015FBDC0, bool, HashSet_1_UdpKit_UdpIPv4Address__Add, (HashSet_1_UdpKit_UdpIPv4Address_ * __this, UdpIPv4Address item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8D80, HashSet_1_UdpKit_UdpIPv4Address__Add__MethodInfo); DO_APP_FUNC(0x016260E0, bool, HashSet_1_UdpKit_UdpIPv4Address__AddIfNotPresent, (HashSet_1_UdpKit_UdpIPv4Address_ * __this, UdpIPv4Address value, MethodInfo * method)); -DO_APP_FUNC(0x01627510, bool, HashSet_1_UdpKit_UdpIPv4Address__AddOrGetLocation, (HashSet_1_UdpKit_UdpIPv4Address_ * __this, UdpIPv4Address value, int32_t location, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9428, HashSet_1_UdpKit_UdpIPv4Address__AddIfNotPresent__MethodInfo); +DO_APP_FUNC(0x01627510, bool, HashSet_1_UdpKit_UdpIPv4Address__AddOrGetLocation, (HashSet_1_UdpKit_UdpIPv4Address_ * __this, UdpIPv4Address value, int32_t * location, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF93A8, HashSet_1_UdpKit_UdpIPv4Address__AddOrGetLocation__MethodInfo); DO_APP_FUNC(0x016263C0, void, HashSet_1_UdpKit_UdpIPv4Address__AddValue, (HashSet_1_UdpKit_UdpIPv4Address_ * __this, int32_t index, int32_t hashCode, UdpIPv4Address value, MethodInfo * method)); DO_APP_FUNC(0x015FA7F0, bool, HashSet_1_UdpKit_UdpIPv4Address__AreEqualityComparersEqual, (HashSet_1_UdpKit_UdpIPv4Address_ * set1, HashSet_1_UdpKit_UdpIPv4Address_ * set2, MethodInfo * method)); DO_APP_FUNC(0x016277F0, HashSet_1_T_ElementCount_UdpKit_UdpIPv4Address_, HashSet_1_UdpKit_UdpIPv4Address__CheckUniqueAndUnfoundElements, (HashSet_1_UdpKit_UdpIPv4Address_ * __this, IEnumerable_1_UdpKit_UdpIPv4Address_ * other, bool returnIfUnfound, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF93E0, HashSet_1_UdpKit_UdpIPv4Address__CheckUniqueAndUnfoundElements__MethodInfo); DO_APP_FUNC(0x015F56B0, void, HashSet_1_UdpKit_UdpIPv4Address__Clear, (HashSet_1_UdpKit_UdpIPv4Address_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016233D0, bool, HashSet_1_UdpKit_UdpIPv4Address__Contains, (HashSet_1_UdpKit_UdpIPv4Address_ * __this, UdpIPv4Address item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9510, HashSet_1_UdpKit_UdpIPv4Address__Contains__MethodInfo); DO_APP_FUNC(0x01626480, bool, HashSet_1_UdpKit_UdpIPv4Address__ContainsAllElements, (HashSet_1_UdpKit_UdpIPv4Address_ * __this, IEnumerable_1_UdpKit_UdpIPv4Address_ * other, MethodInfo * method)); DO_APP_FUNC(0x01623080, void, HashSet_1_UdpKit_UdpIPv4Address__CopyFrom, (HashSet_1_UdpKit_UdpIPv4Address_ * __this, HashSet_1_UdpKit_UdpIPv4Address_ * source, MethodInfo * method)); DO_APP_FUNC(0x015F7C30, void, HashSet_1_UdpKit_UdpIPv4Address__CopyTo, (HashSet_1_UdpKit_UdpIPv4Address_ * __this, UdpIPv4Address__Array * array, MethodInfo * method)); DO_APP_FUNC(0x015F5920, void, HashSet_1_UdpKit_UdpIPv4Address__CopyTo_1, (HashSet_1_UdpKit_UdpIPv4Address_ * __this, UdpIPv4Address__Array * array, int32_t arrayIndex, MethodInfo * method)); DO_APP_FUNC(0x01625590, void, HashSet_1_UdpKit_UdpIPv4Address__CopyTo_2, (HashSet_1_UdpKit_UdpIPv4Address_ * __this, UdpIPv4Address__Array * array, int32_t arrayIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9408, HashSet_1_UdpKit_UdpIPv4Address__CopyTo_2__MethodInfo); DO_APP_FUNC(0x01624500, void, HashSet_1_UdpKit_UdpIPv4Address__ExceptWith, (HashSet_1_UdpKit_UdpIPv4Address_ * __this, IEnumerable_1_UdpKit_UdpIPv4Address_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9448, HashSet_1_UdpKit_UdpIPv4Address__ExceptWith__MethodInfo); DO_APP_FUNC(0x015FB3B0, HashSet_1_T_Enumerator_UdpKit_UdpIPv4Address_, HashSet_1_UdpKit_UdpIPv4Address__GetEnumerator, (HashSet_1_UdpKit_UdpIPv4Address_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01623820, void, HashSet_1_UdpKit_UdpIPv4Address__GetObjectData, (HashSet_1_UdpKit_UdpIPv4Address_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9508, HashSet_1_UdpKit_UdpIPv4Address__GetObjectData__MethodInfo); DO_APP_FUNC(0x01625E10, void, HashSet_1_UdpKit_UdpIPv4Address__IncreaseCapacity, (HashSet_1_UdpKit_UdpIPv4Address_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9430, HashSet_1_UdpKit_UdpIPv4Address__IncreaseCapacity__MethodInfo); DO_APP_FUNC(0x01625CA0, int32_t, HashSet_1_UdpKit_UdpIPv4Address__Initialize, (HashSet_1_UdpKit_UdpIPv4Address_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x01627C50, int32_t, HashSet_1_UdpKit_UdpIPv4Address__InternalGetHashCode, (HashSet_1_UdpKit_UdpIPv4Address_ * __this, UdpIPv4Address item, MethodInfo * method)); DO_APP_FUNC(0x01626C50, int32_t, HashSet_1_UdpKit_UdpIPv4Address__InternalIndexOf, (HashSet_1_UdpKit_UdpIPv4Address_ * __this, UdpIPv4Address item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF93B8, HashSet_1_UdpKit_UdpIPv4Address__InternalIndexOf__MethodInfo); DO_APP_FUNC(0x01624320, void, HashSet_1_UdpKit_UdpIPv4Address__IntersectWith, (HashSet_1_UdpKit_UdpIPv4Address_ * __this, IEnumerable_1_UdpKit_UdpIPv4Address_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9470, HashSet_1_UdpKit_UdpIPv4Address__IntersectWith__MethodInfo); DO_APP_FUNC(0x01626840, void, HashSet_1_UdpKit_UdpIPv4Address__IntersectWithEnumerable, (HashSet_1_UdpKit_UdpIPv4Address_ * __this, IEnumerable_1_UdpKit_UdpIPv4Address_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF93B0, HashSet_1_UdpKit_UdpIPv4Address__IntersectWithEnumerable__MethodInfo); DO_APP_FUNC(0x01626750, void, HashSet_1_UdpKit_UdpIPv4Address__IntersectWithHashSetWithSameEC, (HashSet_1_UdpKit_UdpIPv4Address_ * __this, HashSet_1_UdpKit_UdpIPv4Address_ * other, MethodInfo * method)); DO_APP_FUNC(0x01624A80, bool, HashSet_1_UdpKit_UdpIPv4Address__IsProperSubsetOf, (HashSet_1_UdpKit_UdpIPv4Address_ * __this, IEnumerable_1_UdpKit_UdpIPv4Address_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF94B8, HashSet_1_UdpKit_UdpIPv4Address__IsProperSubsetOf__MethodInfo); DO_APP_FUNC(0x01624ED0, bool, HashSet_1_UdpKit_UdpIPv4Address__IsProperSupersetOf, (HashSet_1_UdpKit_UdpIPv4Address_ * __this, IEnumerable_1_UdpKit_UdpIPv4Address_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF94A0, HashSet_1_UdpKit_UdpIPv4Address__IsProperSupersetOf__MethodInfo); DO_APP_FUNC(0x016248B0, bool, HashSet_1_UdpKit_UdpIPv4Address__IsSubsetOf, (HashSet_1_UdpKit_UdpIPv4Address_ * __this, IEnumerable_1_UdpKit_UdpIPv4Address_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF94A8, HashSet_1_UdpKit_UdpIPv4Address__IsSubsetOf__MethodInfo); DO_APP_FUNC(0x01626650, bool, HashSet_1_UdpKit_UdpIPv4Address__IsSubsetOfHashSetWithSameEC, (HashSet_1_UdpKit_UdpIPv4Address_ * __this, HashSet_1_UdpKit_UdpIPv4Address_ * other, MethodInfo * method)); DO_APP_FUNC(0x01624CE0, bool, HashSet_1_UdpKit_UdpIPv4Address__IsSupersetOf, (HashSet_1_UdpKit_UdpIPv4Address_ * __this, IEnumerable_1_UdpKit_UdpIPv4Address_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9498, HashSet_1_UdpKit_UdpIPv4Address__IsSupersetOf__MethodInfo); DO_APP_FUNC(0x01623BC0, void, HashSet_1_UdpKit_UdpIPv4Address__OnDeserialization, (HashSet_1_UdpKit_UdpIPv4Address_ * __this, Object * sender, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF94F8, HashSet_1_UdpKit_UdpIPv4Address__OnDeserialization__MethodInfo); DO_APP_FUNC(0x01625110, bool, HashSet_1_UdpKit_UdpIPv4Address__Overlaps, (HashSet_1_UdpKit_UdpIPv4Address_ * __this, IEnumerable_1_UdpKit_UdpIPv4Address_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9478, HashSet_1_UdpKit_UdpIPv4Address__Overlaps__MethodInfo); DO_APP_FUNC(0x01623590, bool, HashSet_1_UdpKit_UdpIPv4Address__Remove, (HashSet_1_UdpKit_UdpIPv4Address_ * __this, UdpIPv4Address item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9518, HashSet_1_UdpKit_UdpIPv4Address__Remove__MethodInfo); DO_APP_FUNC(0x01625810, int32_t, HashSet_1_UdpKit_UdpIPv4Address__RemoveWhere, (HashSet_1_UdpKit_UdpIPv4Address_ * __this, Predicate_1_UdpKit_UdpIPv4Address_ * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9410, HashSet_1_UdpKit_UdpIPv4Address__RemoveWhere__MethodInfo); DO_APP_FUNC(0x01625EF0, void, HashSet_1_UdpKit_UdpIPv4Address__SetCapacity, (HashSet_1_UdpKit_UdpIPv4Address_ * __this, int32_t newSize, MethodInfo * method)); DO_APP_FUNC(0x01625350, bool, HashSet_1_UdpKit_UdpIPv4Address__SetEquals, (HashSet_1_UdpKit_UdpIPv4Address_ * __this, IEnumerable_1_UdpKit_UdpIPv4Address_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9488, HashSet_1_UdpKit_UdpIPv4Address__SetEquals__MethodInfo); DO_APP_FUNC(0x01624730, void, HashSet_1_UdpKit_UdpIPv4Address__SymmetricExceptWith, (HashSet_1_UdpKit_UdpIPv4Address_ * __this, IEnumerable_1_UdpKit_UdpIPv4Address_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9450, HashSet_1_UdpKit_UdpIPv4Address__SymmetricExceptWith__MethodInfo); DO_APP_FUNC(0x01626F50, void, HashSet_1_UdpKit_UdpIPv4Address__SymmetricExceptWithEnumerable, (HashSet_1_UdpKit_UdpIPv4Address_ * __this, IEnumerable_1_UdpKit_UdpIPv4Address_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF93A0, HashSet_1_UdpKit_UdpIPv4Address__SymmetricExceptWithEnumerable__MethodInfo); DO_APP_FUNC(0x01626E10, void, HashSet_1_UdpKit_UdpIPv4Address__SymmetricExceptWithUniqueHashSet, (HashSet_1_UdpKit_UdpIPv4Address_ * __this, HashSet_1_UdpKit_UdpIPv4Address_ * other, MethodInfo * method)); DO_APP_FUNC(0x015FAF50, void, HashSet_1_UdpKit_UdpIPv4Address__System_Collections_Generic_ICollection_T__Add, (HashSet_1_UdpKit_UdpIPv4Address_ * __this, UdpIPv4Address item, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, HashSet_1_UdpKit_UdpIPv4Address__System_Collections_Generic_ICollection_T__get_IsReadOnly, (HashSet_1_UdpKit_UdpIPv4Address_ * __this, MethodInfo * method)); @@ -152339,49 +168073,77 @@ DO_APP_FUNC(0x015FB440, IEnumerator_1_UdpKit_UdpIPv4Address_ *, HashSet_1_UdpKit DO_APP_FUNC(0x015FB440, IEnumerator *, HashSet_1_UdpKit_UdpIPv4Address__System_Collections_IEnumerable_GetEnumerator, (HashSet_1_UdpKit_UdpIPv4Address_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01625970, void, HashSet_1_UdpKit_UdpIPv4Address__TrimExcess, (HashSet_1_UdpKit_UdpIPv4Address_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016240D0, void, HashSet_1_UdpKit_UdpIPv4Address__UnionWith, (HashSet_1_UdpKit_UdpIPv4Address_ * __this, IEnumerable_1_UdpKit_UdpIPv4Address_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9460, HashSet_1_UdpKit_UdpIPv4Address__UnionWith__MethodInfo); DO_APP_FUNC(0x003BB330, IEqualityComparer_1_UdpKit_UdpIPv4Address_ *, HashSet_1_UdpKit_UdpIPv4Address__get_Comparer, (HashSet_1_UdpKit_UdpIPv4Address_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003CC980, int32_t, HashSet_1_UdpKit_UdpIPv4Address__get_Count, (HashSet_1_UdpKit_UdpIPv4Address_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8D98, HashSet_1_UdpKit_UdpIPv4Address__get_Count__MethodInfo); DO_APP_FUNC(0x015F4F70, void, HashSet_1_UnityEngine_Vector3___ctor, (HashSet_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB8D0, HashSet_1_UnityEngine_Vector3___ctor__MethodInfo); DO_APP_FUNC(0x015F5070, void, HashSet_1_UnityEngine_Vector3___ctor_1, (HashSet_1_UnityEngine_Vector3_ * __this, IEnumerable_1_UnityEngine_Vector3_ * collection, MethodInfo * method)); DO_APP_FUNC(0x015F4FD0, void, HashSet_1_UnityEngine_Vector3___ctor_2, (HashSet_1_UnityEngine_Vector3_ * __this, IEqualityComparer_1_UnityEngine_Vector3_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01627CB0, void, HashSet_1_UnityEngine_Vector3___ctor_3, (HashSet_1_UnityEngine_Vector3_ * __this, IEnumerable_1_UnityEngine_Vector3_ * collection, IEqualityComparer_1_UnityEngine_Vector3_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF93E8, HashSet_1_UnityEngine_Vector3___ctor_3__MethodInfo); DO_APP_FUNC(0x003C73A0, void, HashSet_1_UnityEngine_Vector3___ctor_4, (HashSet_1_UnityEngine_Vector3_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x01629170, bool, HashSet_1_UnityEngine_Vector3__Add, (HashSet_1_UnityEngine_Vector3_ * __this, Vector3 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB908, HashSet_1_UnityEngine_Vector3__Add__MethodInfo); DO_APP_FUNC(0x0162B290, bool, HashSet_1_UnityEngine_Vector3__AddIfNotPresent, (HashSet_1_UnityEngine_Vector3_ * __this, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x0162C8D0, bool, HashSet_1_UnityEngine_Vector3__AddOrGetLocation, (HashSet_1_UnityEngine_Vector3_ * __this, Vector3 value, int32_t location, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9300, HashSet_1_UnityEngine_Vector3__AddIfNotPresent__MethodInfo); +DO_APP_FUNC(0x0162C8D0, bool, HashSet_1_UnityEngine_Vector3__AddOrGetLocation, (HashSet_1_UnityEngine_Vector3_ * __this, Vector3 value, int32_t * location, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF92B8, HashSet_1_UnityEngine_Vector3__AddOrGetLocation__MethodInfo); DO_APP_FUNC(0x0162B5E0, void, HashSet_1_UnityEngine_Vector3__AddValue, (HashSet_1_UnityEngine_Vector3_ * __this, int32_t index, int32_t hashCode, Vector3 value, MethodInfo * method)); DO_APP_FUNC(0x015FA7F0, bool, HashSet_1_UnityEngine_Vector3__AreEqualityComparersEqual, (HashSet_1_UnityEngine_Vector3_ * set1, HashSet_1_UnityEngine_Vector3_ * set2, MethodInfo * method)); DO_APP_FUNC(0x0162CC00, HashSet_1_T_ElementCount_UnityEngine_Vector3_, HashSet_1_UnityEngine_Vector3__CheckUniqueAndUnfoundElements, (HashSet_1_UnityEngine_Vector3_ * __this, IEnumerable_1_UnityEngine_Vector3_ * other, bool returnIfUnfound, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF92B0, HashSet_1_UnityEngine_Vector3__CheckUniqueAndUnfoundElements__MethodInfo); DO_APP_FUNC(0x015F56B0, void, HashSet_1_UnityEngine_Vector3__Clear, (HashSet_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01628270, bool, HashSet_1_UnityEngine_Vector3__Contains, (HashSet_1_UnityEngine_Vector3_ * __this, Vector3 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB900, HashSet_1_UnityEngine_Vector3__Contains__MethodInfo); DO_APP_FUNC(0x0162B6B0, bool, HashSet_1_UnityEngine_Vector3__ContainsAllElements, (HashSet_1_UnityEngine_Vector3_ * __this, IEnumerable_1_UnityEngine_Vector3_ * other, MethodInfo * method)); DO_APP_FUNC(0x01627ED0, void, HashSet_1_UnityEngine_Vector3__CopyFrom, (HashSet_1_UnityEngine_Vector3_ * __this, HashSet_1_UnityEngine_Vector3_ * source, MethodInfo * method)); DO_APP_FUNC(0x015F7C30, void, HashSet_1_UnityEngine_Vector3__CopyTo, (HashSet_1_UnityEngine_Vector3_ * __this, Vector3__Array * array, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB8D8, HashSet_1_UnityEngine_Vector3__CopyTo__MethodInfo); DO_APP_FUNC(0x015F5920, void, HashSet_1_UnityEngine_Vector3__CopyTo_1, (HashSet_1_UnityEngine_Vector3_ * __this, Vector3__Array * array, int32_t arrayIndex, MethodInfo * method)); DO_APP_FUNC(0x0162A6E0, void, HashSet_1_UnityEngine_Vector3__CopyTo_2, (HashSet_1_UnityEngine_Vector3_ * __this, Vector3__Array * array, int32_t arrayIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF92E8, HashSet_1_UnityEngine_Vector3__CopyTo_2__MethodInfo); DO_APP_FUNC(0x01629610, void, HashSet_1_UnityEngine_Vector3__ExceptWith, (HashSet_1_UnityEngine_Vector3_ * __this, IEnumerable_1_UnityEngine_Vector3_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9388, HashSet_1_UnityEngine_Vector3__ExceptWith__MethodInfo); DO_APP_FUNC(0x01628730, HashSet_1_T_Enumerator_UnityEngine_Vector3_, HashSet_1_UnityEngine_Vector3__GetEnumerator, (HashSet_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016288A0, void, HashSet_1_UnityEngine_Vector3__GetObjectData, (HashSet_1_UnityEngine_Vector3_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF93C8, HashSet_1_UnityEngine_Vector3__GetObjectData__MethodInfo); DO_APP_FUNC(0x0162AFC0, void, HashSet_1_UnityEngine_Vector3__IncreaseCapacity, (HashSet_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9318, HashSet_1_UnityEngine_Vector3__IncreaseCapacity__MethodInfo); DO_APP_FUNC(0x0162AE50, int32_t, HashSet_1_UnityEngine_Vector3__Initialize, (HashSet_1_UnityEngine_Vector3_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x0162D0A0, int32_t, HashSet_1_UnityEngine_Vector3__InternalGetHashCode, (HashSet_1_UnityEngine_Vector3_ * __this, Vector3 item, MethodInfo * method)); DO_APP_FUNC(0x0162BF40, int32_t, HashSet_1_UnityEngine_Vector3__InternalIndexOf, (HashSet_1_UnityEngine_Vector3_ * __this, Vector3 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9280, HashSet_1_UnityEngine_Vector3__InternalIndexOf__MethodInfo); DO_APP_FUNC(0x01629430, void, HashSet_1_UnityEngine_Vector3__IntersectWith, (HashSet_1_UnityEngine_Vector3_ * __this, IEnumerable_1_UnityEngine_Vector3_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9320, HashSet_1_UnityEngine_Vector3__IntersectWith__MethodInfo); DO_APP_FUNC(0x0162BAD0, void, HashSet_1_UnityEngine_Vector3__IntersectWithEnumerable, (HashSet_1_UnityEngine_Vector3_ * __this, IEnumerable_1_UnityEngine_Vector3_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9288, HashSet_1_UnityEngine_Vector3__IntersectWithEnumerable__MethodInfo); DO_APP_FUNC(0x0162B9B0, void, HashSet_1_UnityEngine_Vector3__IntersectWithHashSetWithSameEC, (HashSet_1_UnityEngine_Vector3_ * __this, HashSet_1_UnityEngine_Vector3_ * other, MethodInfo * method)); DO_APP_FUNC(0x01629BB0, bool, HashSet_1_UnityEngine_Vector3__IsProperSubsetOf, (HashSet_1_UnityEngine_Vector3_ * __this, IEnumerable_1_UnityEngine_Vector3_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9350, HashSet_1_UnityEngine_Vector3__IsProperSubsetOf__MethodInfo); DO_APP_FUNC(0x0162A000, bool, HashSet_1_UnityEngine_Vector3__IsProperSupersetOf, (HashSet_1_UnityEngine_Vector3_ * __this, IEnumerable_1_UnityEngine_Vector3_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9348, HashSet_1_UnityEngine_Vector3__IsProperSupersetOf__MethodInfo); DO_APP_FUNC(0x016299E0, bool, HashSet_1_UnityEngine_Vector3__IsSubsetOf, (HashSet_1_UnityEngine_Vector3_ * __this, IEnumerable_1_UnityEngine_Vector3_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9378, HashSet_1_UnityEngine_Vector3__IsSubsetOf__MethodInfo); DO_APP_FUNC(0x0162B890, bool, HashSet_1_UnityEngine_Vector3__IsSubsetOfHashSetWithSameEC, (HashSet_1_UnityEngine_Vector3_ * __this, HashSet_1_UnityEngine_Vector3_ * other, MethodInfo * method)); DO_APP_FUNC(0x01629E10, bool, HashSet_1_UnityEngine_Vector3__IsSupersetOf, (HashSet_1_UnityEngine_Vector3_ * __this, IEnumerable_1_UnityEngine_Vector3_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9358, HashSet_1_UnityEngine_Vector3__IsSupersetOf__MethodInfo); DO_APP_FUNC(0x01628C40, void, HashSet_1_UnityEngine_Vector3__OnDeserialization, (HashSet_1_UnityEngine_Vector3_ * __this, Object * sender, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9338, HashSet_1_UnityEngine_Vector3__OnDeserialization__MethodInfo); DO_APP_FUNC(0x0162A240, bool, HashSet_1_UnityEngine_Vector3__Overlaps, (HashSet_1_UnityEngine_Vector3_ * __this, IEnumerable_1_UnityEngine_Vector3_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF92F8, HashSet_1_UnityEngine_Vector3__Overlaps__MethodInfo); DO_APP_FUNC(0x01628470, bool, HashSet_1_UnityEngine_Vector3__Remove, (HashSet_1_UnityEngine_Vector3_ * __this, Vector3 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF93D0, HashSet_1_UnityEngine_Vector3__Remove__MethodInfo); DO_APP_FUNC(0x0162A980, int32_t, HashSet_1_UnityEngine_Vector3__RemoveWhere, (HashSet_1_UnityEngine_Vector3_ * __this, Predicate_1_UnityEngine_Vector3_ * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF92D0, HashSet_1_UnityEngine_Vector3__RemoveWhere__MethodInfo); DO_APP_FUNC(0x0162B0A0, void, HashSet_1_UnityEngine_Vector3__SetCapacity, (HashSet_1_UnityEngine_Vector3_ * __this, int32_t newSize, MethodInfo * method)); DO_APP_FUNC(0x0162A4A0, bool, HashSet_1_UnityEngine_Vector3__SetEquals, (HashSet_1_UnityEngine_Vector3_ * __this, IEnumerable_1_UnityEngine_Vector3_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF92D8, HashSet_1_UnityEngine_Vector3__SetEquals__MethodInfo); DO_APP_FUNC(0x01629860, void, HashSet_1_UnityEngine_Vector3__SymmetricExceptWith, (HashSet_1_UnityEngine_Vector3_ * __this, IEnumerable_1_UnityEngine_Vector3_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9368, HashSet_1_UnityEngine_Vector3__SymmetricExceptWith__MethodInfo); DO_APP_FUNC(0x0162C2D0, void, HashSet_1_UnityEngine_Vector3__SymmetricExceptWithEnumerable, (HashSet_1_UnityEngine_Vector3_ * __this, IEnumerable_1_UnityEngine_Vector3_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9270, HashSet_1_UnityEngine_Vector3__SymmetricExceptWithEnumerable__MethodInfo); DO_APP_FUNC(0x0162C140, void, HashSet_1_UnityEngine_Vector3__SymmetricExceptWithUniqueHashSet, (HashSet_1_UnityEngine_Vector3_ * __this, HashSet_1_UnityEngine_Vector3_ * other, MethodInfo * method)); DO_APP_FUNC(0x01628230, void, HashSet_1_UnityEngine_Vector3__System_Collections_Generic_ICollection_T__Add, (HashSet_1_UnityEngine_Vector3_ * __this, Vector3 item, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, HashSet_1_UnityEngine_Vector3__System_Collections_Generic_ICollection_T__get_IsReadOnly, (HashSet_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); @@ -152389,49 +168151,78 @@ DO_APP_FUNC(0x016287C0, IEnumerator_1_UnityEngine_Vector3_ *, HashSet_1_UnityEng DO_APP_FUNC(0x016287C0, IEnumerator *, HashSet_1_UnityEngine_Vector3__System_Collections_IEnumerable_GetEnumerator, (HashSet_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0162AB20, void, HashSet_1_UnityEngine_Vector3__TrimExcess, (HashSet_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016291C0, void, HashSet_1_UnityEngine_Vector3__UnionWith, (HashSet_1_UnityEngine_Vector3_ * __this, IEnumerable_1_UnityEngine_Vector3_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9330, HashSet_1_UnityEngine_Vector3__UnionWith__MethodInfo); DO_APP_FUNC(0x003BB330, IEqualityComparer_1_UnityEngine_Vector3_ *, HashSet_1_UnityEngine_Vector3__get_Comparer, (HashSet_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003CC980, int32_t, HashSet_1_UnityEngine_Vector3__get_Count, (HashSet_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB8E8, HashSet_1_UnityEngine_Vector3__get_Count__MethodInfo); DO_APP_FUNC(0x015F4F70, void, HashSet_1_UnityEngine_Vector3Int___ctor, (HashSet_1_UnityEngine_Vector3Int_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF55B8, HashSet_1_UnityEngine_Vector3Int___ctor__MethodInfo); DO_APP_FUNC(0x015F5070, void, HashSet_1_UnityEngine_Vector3Int___ctor_1, (HashSet_1_UnityEngine_Vector3Int_ * __this, IEnumerable_1_UnityEngine_Vector3Int_ * collection, MethodInfo * method)); DO_APP_FUNC(0x015F4FD0, void, HashSet_1_UnityEngine_Vector3Int___ctor_2, (HashSet_1_UnityEngine_Vector3Int_ * __this, IEqualityComparer_1_UnityEngine_Vector3Int_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0162D180, void, HashSet_1_UnityEngine_Vector3Int___ctor_3, (HashSet_1_UnityEngine_Vector3Int_ * __this, IEnumerable_1_UnityEngine_Vector3Int_ * collection, IEqualityComparer_1_UnityEngine_Vector3Int_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF92A8, HashSet_1_UnityEngine_Vector3Int___ctor_3__MethodInfo); DO_APP_FUNC(0x003C73A0, void, HashSet_1_UnityEngine_Vector3Int___ctor_4, (HashSet_1_UnityEngine_Vector3Int_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x01629170, bool, HashSet_1_UnityEngine_Vector3Int__Add, (HashSet_1_UnityEngine_Vector3Int_ * __this, Vector3Int item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5598, HashSet_1_UnityEngine_Vector3Int__Add__MethodInfo); DO_APP_FUNC(0x01630630, bool, HashSet_1_UnityEngine_Vector3Int__AddIfNotPresent, (HashSet_1_UnityEngine_Vector3Int_ * __this, Vector3Int value, MethodInfo * method)); -DO_APP_FUNC(0x01631AF0, bool, HashSet_1_UnityEngine_Vector3Int__AddOrGetLocation, (HashSet_1_UnityEngine_Vector3Int_ * __this, Vector3Int value, int32_t location, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9170, HashSet_1_UnityEngine_Vector3Int__AddIfNotPresent__MethodInfo); +DO_APP_FUNC(0x01631AF0, bool, HashSet_1_UnityEngine_Vector3Int__AddOrGetLocation, (HashSet_1_UnityEngine_Vector3Int_ * __this, Vector3Int value, int32_t * location, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9198, HashSet_1_UnityEngine_Vector3Int__AddOrGetLocation__MethodInfo); DO_APP_FUNC(0x0162B5E0, void, HashSet_1_UnityEngine_Vector3Int__AddValue, (HashSet_1_UnityEngine_Vector3Int_ * __this, int32_t index, int32_t hashCode, Vector3Int value, MethodInfo * method)); DO_APP_FUNC(0x015FA7F0, bool, HashSet_1_UnityEngine_Vector3Int__AreEqualityComparersEqual, (HashSet_1_UnityEngine_Vector3Int_ * set1, HashSet_1_UnityEngine_Vector3Int_ * set2, MethodInfo * method)); DO_APP_FUNC(0x01631E20, HashSet_1_T_ElementCount_UnityEngine_Vector3Int_, HashSet_1_UnityEngine_Vector3Int__CheckUniqueAndUnfoundElements, (HashSet_1_UnityEngine_Vector3Int_ * __this, IEnumerable_1_UnityEngine_Vector3Int_ * other, bool returnIfUnfound, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9178, HashSet_1_UnityEngine_Vector3Int__CheckUniqueAndUnfoundElements__MethodInfo); DO_APP_FUNC(0x015F56B0, void, HashSet_1_UnityEngine_Vector3Int__Clear, (HashSet_1_UnityEngine_Vector3Int_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5530, HashSet_1_UnityEngine_Vector3Int__Clear__MethodInfo); DO_APP_FUNC(0x0162D700, bool, HashSet_1_UnityEngine_Vector3Int__Contains, (HashSet_1_UnityEngine_Vector3Int_ * __this, Vector3Int item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9298, HashSet_1_UnityEngine_Vector3Int__Contains__MethodInfo); DO_APP_FUNC(0x01630980, bool, HashSet_1_UnityEngine_Vector3Int__ContainsAllElements, (HashSet_1_UnityEngine_Vector3Int_ * __this, IEnumerable_1_UnityEngine_Vector3Int_ * other, MethodInfo * method)); DO_APP_FUNC(0x0162D3A0, void, HashSet_1_UnityEngine_Vector3Int__CopyFrom, (HashSet_1_UnityEngine_Vector3Int_ * __this, HashSet_1_UnityEngine_Vector3Int_ * source, MethodInfo * method)); DO_APP_FUNC(0x015F7C30, void, HashSet_1_UnityEngine_Vector3Int__CopyTo, (HashSet_1_UnityEngine_Vector3Int_ * __this, Vector3Int__Array * array, MethodInfo * method)); DO_APP_FUNC(0x015F5920, void, HashSet_1_UnityEngine_Vector3Int__CopyTo_1, (HashSet_1_UnityEngine_Vector3Int_ * __this, Vector3Int__Array * array, int32_t arrayIndex, MethodInfo * method)); DO_APP_FUNC(0x0162FA80, void, HashSet_1_UnityEngine_Vector3Int__CopyTo_2, (HashSet_1_UnityEngine_Vector3Int_ * __this, Vector3Int__Array * array, int32_t arrayIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF91B0, HashSet_1_UnityEngine_Vector3Int__CopyTo_2__MethodInfo); DO_APP_FUNC(0x0162E8E0, void, HashSet_1_UnityEngine_Vector3Int__ExceptWith, (HashSet_1_UnityEngine_Vector3Int_ * __this, IEnumerable_1_UnityEngine_Vector3Int_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9240, HashSet_1_UnityEngine_Vector3Int__ExceptWith__MethodInfo); DO_APP_FUNC(0x01628730, HashSet_1_T_Enumerator_UnityEngine_Vector3Int_, HashSet_1_UnityEngine_Vector3Int__GetEnumerator, (HashSet_1_UnityEngine_Vector3Int_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5500, HashSet_1_UnityEngine_Vector3Int__GetEnumerator__MethodInfo); DO_APP_FUNC(0x0162DBC0, void, HashSet_1_UnityEngine_Vector3Int__GetObjectData, (HashSet_1_UnityEngine_Vector3Int_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9218, HashSet_1_UnityEngine_Vector3Int__GetObjectData__MethodInfo); DO_APP_FUNC(0x01630360, void, HashSet_1_UnityEngine_Vector3Int__IncreaseCapacity, (HashSet_1_UnityEngine_Vector3Int_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF91E0, HashSet_1_UnityEngine_Vector3Int__IncreaseCapacity__MethodInfo); DO_APP_FUNC(0x016301F0, int32_t, HashSet_1_UnityEngine_Vector3Int__Initialize, (HashSet_1_UnityEngine_Vector3Int_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x01632320, int32_t, HashSet_1_UnityEngine_Vector3Int__InternalGetHashCode, (HashSet_1_UnityEngine_Vector3Int_ * __this, Vector3Int item, MethodInfo * method)); DO_APP_FUNC(0x01631160, int32_t, HashSet_1_UnityEngine_Vector3Int__InternalIndexOf, (HashSet_1_UnityEngine_Vector3Int_ * __this, Vector3Int item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9150, HashSet_1_UnityEngine_Vector3Int__InternalIndexOf__MethodInfo); DO_APP_FUNC(0x0162E700, void, HashSet_1_UnityEngine_Vector3Int__IntersectWith, (HashSet_1_UnityEngine_Vector3Int_ * __this, IEnumerable_1_UnityEngine_Vector3Int_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9260, HashSet_1_UnityEngine_Vector3Int__IntersectWith__MethodInfo); DO_APP_FUNC(0x01630CF0, void, HashSet_1_UnityEngine_Vector3Int__IntersectWithEnumerable, (HashSet_1_UnityEngine_Vector3Int_ * __this, IEnumerable_1_UnityEngine_Vector3Int_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9140, HashSet_1_UnityEngine_Vector3Int__IntersectWithEnumerable__MethodInfo); DO_APP_FUNC(0x0162B9B0, void, HashSet_1_UnityEngine_Vector3Int__IntersectWithHashSetWithSameEC, (HashSet_1_UnityEngine_Vector3Int_ * __this, HashSet_1_UnityEngine_Vector3Int_ * other, MethodInfo * method)); DO_APP_FUNC(0x0162EEF0, bool, HashSet_1_UnityEngine_Vector3Int__IsProperSubsetOf, (HashSet_1_UnityEngine_Vector3Int_ * __this, IEnumerable_1_UnityEngine_Vector3Int_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9238, HashSet_1_UnityEngine_Vector3Int__IsProperSubsetOf__MethodInfo); DO_APP_FUNC(0x0162F340, bool, HashSet_1_UnityEngine_Vector3Int__IsProperSupersetOf, (HashSet_1_UnityEngine_Vector3Int_ * __this, IEnumerable_1_UnityEngine_Vector3Int_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF91D8, HashSet_1_UnityEngine_Vector3Int__IsProperSupersetOf__MethodInfo); DO_APP_FUNC(0x0162ED20, bool, HashSet_1_UnityEngine_Vector3Int__IsSubsetOf, (HashSet_1_UnityEngine_Vector3Int_ * __this, IEnumerable_1_UnityEngine_Vector3Int_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9230, HashSet_1_UnityEngine_Vector3Int__IsSubsetOf__MethodInfo); DO_APP_FUNC(0x01630BD0, bool, HashSet_1_UnityEngine_Vector3Int__IsSubsetOfHashSetWithSameEC, (HashSet_1_UnityEngine_Vector3Int_ * __this, HashSet_1_UnityEngine_Vector3Int_ * other, MethodInfo * method)); DO_APP_FUNC(0x0162F150, bool, HashSet_1_UnityEngine_Vector3Int__IsSupersetOf, (HashSet_1_UnityEngine_Vector3Int_ * __this, IEnumerable_1_UnityEngine_Vector3Int_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF91D0, HashSet_1_UnityEngine_Vector3Int__IsSupersetOf__MethodInfo); DO_APP_FUNC(0x0162DF60, void, HashSet_1_UnityEngine_Vector3Int__OnDeserialization, (HashSet_1_UnityEngine_Vector3Int_ * __this, Object * sender, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9210, HashSet_1_UnityEngine_Vector3Int__OnDeserialization__MethodInfo); DO_APP_FUNC(0x0162F580, bool, HashSet_1_UnityEngine_Vector3Int__Overlaps, (HashSet_1_UnityEngine_Vector3Int_ * __this, IEnumerable_1_UnityEngine_Vector3Int_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF91C0, HashSet_1_UnityEngine_Vector3Int__Overlaps__MethodInfo); DO_APP_FUNC(0x0162D900, bool, HashSet_1_UnityEngine_Vector3Int__Remove, (HashSet_1_UnityEngine_Vector3Int_ * __this, Vector3Int item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5508, HashSet_1_UnityEngine_Vector3Int__Remove__MethodInfo); DO_APP_FUNC(0x0162FD20, int32_t, HashSet_1_UnityEngine_Vector3Int__RemoveWhere, (HashSet_1_UnityEngine_Vector3Int_ * __this, Predicate_1_UnityEngine_Vector3Int_ * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF91B8, HashSet_1_UnityEngine_Vector3Int__RemoveWhere__MethodInfo); DO_APP_FUNC(0x01630440, void, HashSet_1_UnityEngine_Vector3Int__SetCapacity, (HashSet_1_UnityEngine_Vector3Int_ * __this, int32_t newSize, MethodInfo * method)); DO_APP_FUNC(0x0162F840, bool, HashSet_1_UnityEngine_Vector3Int__SetEquals, (HashSet_1_UnityEngine_Vector3Int_ * __this, IEnumerable_1_UnityEngine_Vector3Int_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF91C8, HashSet_1_UnityEngine_Vector3Int__SetEquals__MethodInfo); DO_APP_FUNC(0x0162EBA0, void, HashSet_1_UnityEngine_Vector3Int__SymmetricExceptWith, (HashSet_1_UnityEngine_Vector3Int_ * __this, IEnumerable_1_UnityEngine_Vector3Int_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9248, HashSet_1_UnityEngine_Vector3Int__SymmetricExceptWith__MethodInfo); DO_APP_FUNC(0x016314F0, void, HashSet_1_UnityEngine_Vector3Int__SymmetricExceptWithEnumerable, (HashSet_1_UnityEngine_Vector3Int_ * __this, IEnumerable_1_UnityEngine_Vector3Int_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9190, HashSet_1_UnityEngine_Vector3Int__SymmetricExceptWithEnumerable__MethodInfo); DO_APP_FUNC(0x01631360, void, HashSet_1_UnityEngine_Vector3Int__SymmetricExceptWithUniqueHashSet, (HashSet_1_UnityEngine_Vector3Int_ * __this, HashSet_1_UnityEngine_Vector3Int_ * other, MethodInfo * method)); DO_APP_FUNC(0x01628230, void, HashSet_1_UnityEngine_Vector3Int__System_Collections_Generic_ICollection_T__Add, (HashSet_1_UnityEngine_Vector3Int_ * __this, Vector3Int item, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, HashSet_1_UnityEngine_Vector3Int__System_Collections_Generic_ICollection_T__get_IsReadOnly, (HashSet_1_UnityEngine_Vector3Int_ * __this, MethodInfo * method)); @@ -152439,18 +168230,22 @@ DO_APP_FUNC(0x016287C0, IEnumerator_1_UnityEngine_Vector3Int_ *, HashSet_1_Unity DO_APP_FUNC(0x016287C0, IEnumerator *, HashSet_1_UnityEngine_Vector3Int__System_Collections_IEnumerable_GetEnumerator, (HashSet_1_UnityEngine_Vector3Int_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0162FEC0, void, HashSet_1_UnityEngine_Vector3Int__TrimExcess, (HashSet_1_UnityEngine_Vector3Int_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0162E490, void, HashSet_1_UnityEngine_Vector3Int__UnionWith, (HashSet_1_UnityEngine_Vector3Int_ * __this, IEnumerable_1_UnityEngine_Vector3Int_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9250, HashSet_1_UnityEngine_Vector3Int__UnionWith__MethodInfo); DO_APP_FUNC(0x003BB330, IEqualityComparer_1_UnityEngine_Vector3Int_ *, HashSet_1_UnityEngine_Vector3Int__get_Comparer, (HashSet_1_UnityEngine_Vector3Int_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003CC980, int32_t, HashSet_1_UnityEngine_Vector3Int__get_Count, (HashSet_1_UnityEngine_Vector3Int_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01632390, void, BKsJJnAdrRntLMuBtHLhFtlqOUnH_HierarchyEventHelper_2_System_Object_System_Boolean___ctor, (BKsJJnAdrRntLMuBtHLhFtlqOUnH_HierarchyEventHelper_2_System_Object_System_Boolean_ * __this, BKsJJnAdrRntLMuBtHLhFtlqOUnH_EventFunction_2_System_Object_System_Boolean_ * param_0000bf75, MethodInfo * method)); DO_APP_FUNC(0x016323B0, void, BKsJJnAdrRntLMuBtHLhFtlqOUnH_HierarchyEventHelper_2_System_Object_System_Boolean___ctor_1, (BKsJJnAdrRntLMuBtHLhFtlqOUnH_HierarchyEventHelper_2_System_Object_System_Boolean_ * __this, BKsJJnAdrRntLMuBtHLhFtlqOUnH_EventFunction_2_System_Object_System_Boolean_ * param_0000bf76, BKsJJnAdrRntLMuBtHLhFtlqOUnH_HierarchyEventHelper_2_THandler_TValue_TevqluWeqzryDiDZmGJLKvgDwSeT_System_Object_System_Boolean_ * param_0000bf77, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9100, BKsJJnAdrRntLMuBtHLhFtlqOUnH_HierarchyEventHelper_2_System_Object_System_Boolean___ctor_1__MethodInfo); DO_APP_FUNC(0x01632550, void, BKsJJnAdrRntLMuBtHLhFtlqOUnH_HierarchyEventHelper_2_System_Object_System_Boolean__ExecuteOnAll, (BKsJJnAdrRntLMuBtHLhFtlqOUnH_HierarchyEventHelper_2_System_Object_System_Boolean_ * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x01632580, void, BKsJJnAdrRntLMuBtHLhFtlqOUnH_HierarchyEventHelper_2_System_Object_System_Boolean__GetHandlers, (BKsJJnAdrRntLMuBtHLhFtlqOUnH_HierarchyEventHelper_2_System_Object_System_Boolean_ * __this, Transform * transform, MethodInfo * method)); DO_APP_FUNC(0x01632390, void, BKsJJnAdrRntLMuBtHLhFtlqOUnH_HierarchyEventHelper_2_System_Object_System_Object___ctor, (BKsJJnAdrRntLMuBtHLhFtlqOUnH_HierarchyEventHelper_2_System_Object_System_Object_ * __this, BKsJJnAdrRntLMuBtHLhFtlqOUnH_EventFunction_2_System_Object_System_Object_ * param_0000bf75, MethodInfo * method)); DO_APP_FUNC(0x016326D0, void, BKsJJnAdrRntLMuBtHLhFtlqOUnH_HierarchyEventHelper_2_System_Object_System_Object___ctor_1, (BKsJJnAdrRntLMuBtHLhFtlqOUnH_HierarchyEventHelper_2_System_Object_System_Object_ * __this, BKsJJnAdrRntLMuBtHLhFtlqOUnH_EventFunction_2_System_Object_System_Object_ * param_0000bf76, BKsJJnAdrRntLMuBtHLhFtlqOUnH_HierarchyEventHelper_2_THandler_TValue_TevqluWeqzryDiDZmGJLKvgDwSeT_System_Object_System_Object_ * param_0000bf77, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF90F0, BKsJJnAdrRntLMuBtHLhFtlqOUnH_HierarchyEventHelper_2_System_Object_System_Object___ctor_1__MethodInfo); DO_APP_FUNC(0x01632550, void, BKsJJnAdrRntLMuBtHLhFtlqOUnH_HierarchyEventHelper_2_System_Object_System_Object__ExecuteOnAll, (BKsJJnAdrRntLMuBtHLhFtlqOUnH_HierarchyEventHelper_2_System_Object_System_Object_ * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01632870, void, BKsJJnAdrRntLMuBtHLhFtlqOUnH_HierarchyEventHelper_2_System_Object_System_Object__GetHandlers, (BKsJJnAdrRntLMuBtHLhFtlqOUnH_HierarchyEventHelper_2_System_Object_System_Object_ * __this, Transform * transform, MethodInfo * method)); DO_APP_FUNC(0x01632390, void, BKsJJnAdrRntLMuBtHLhFtlqOUnH_HierarchyEventHelper_2_System_Object_UnityEngine_Vector2___ctor, (BKsJJnAdrRntLMuBtHLhFtlqOUnH_HierarchyEventHelper_2_System_Object_UnityEngine_Vector2_ * __this, BKsJJnAdrRntLMuBtHLhFtlqOUnH_EventFunction_2_System_Object_UnityEngine_Vector2_ * param_0000bf75, MethodInfo * method)); DO_APP_FUNC(0x016329C0, void, BKsJJnAdrRntLMuBtHLhFtlqOUnH_HierarchyEventHelper_2_System_Object_UnityEngine_Vector2___ctor_1, (BKsJJnAdrRntLMuBtHLhFtlqOUnH_HierarchyEventHelper_2_System_Object_UnityEngine_Vector2_ * __this, BKsJJnAdrRntLMuBtHLhFtlqOUnH_EventFunction_2_System_Object_UnityEngine_Vector2_ * param_0000bf76, BKsJJnAdrRntLMuBtHLhFtlqOUnH_HierarchyEventHelper_2_THandler_TValue_TevqluWeqzryDiDZmGJLKvgDwSeT_System_Object_UnityEngine_Vector2_ * param_0000bf77, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF90E0, BKsJJnAdrRntLMuBtHLhFtlqOUnH_HierarchyEventHelper_2_System_Object_UnityEngine_Vector2___ctor_1__MethodInfo); DO_APP_FUNC(0x01632B60, void, BKsJJnAdrRntLMuBtHLhFtlqOUnH_HierarchyEventHelper_2_System_Object_UnityEngine_Vector2__ExecuteOnAll, (BKsJJnAdrRntLMuBtHLhFtlqOUnH_HierarchyEventHelper_2_System_Object_UnityEngine_Vector2_ * __this, Vector2 value, MethodInfo * method)); DO_APP_FUNC(0x01632BA0, void, BKsJJnAdrRntLMuBtHLhFtlqOUnH_HierarchyEventHelper_2_System_Object_UnityEngine_Vector2__GetHandlers, (BKsJJnAdrRntLMuBtHLhFtlqOUnH_HierarchyEventHelper_2_System_Object_UnityEngine_Vector2_ * __this, Transform * transform, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, HybridReferenceDictionary_2_System_Object_System_Object___ctor, (HybridReferenceDictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); @@ -152458,12 +168253,15 @@ DO_APP_FUNC(0x01632E30, bool, HybridReferenceDictionary_2_System_Object_System_O DO_APP_FUNC(0x01632EC0, IEnumerator_1_KeyValuePair_2_System_Object_System_Object_ *, HybridReferenceDictionary_2_System_Object_System_Object__GetEnumerator, (HybridReferenceDictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01632F90, IEnumerator_1_KeyValuePair_2_System_Object_System_Object_ *, HybridReferenceDictionary_2_System_Object_System_Object__GetEnumeratorWorker, (HybridReferenceDictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01632DA0, void, HybridReferenceDictionary_2_System_Object_System_Object__Remove, (HybridReferenceDictionary_2_System_Object_System_Object_ * __this, Object * key, MethodInfo * method)); -DO_APP_FUNC(0x01632CF0, bool, HybridReferenceDictionary_2_System_Object_System_Object__TryGetValue, (HybridReferenceDictionary_2_System_Object_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x01632CF0, bool, HybridReferenceDictionary_2_System_Object_System_Object__TryGetValue, (HybridReferenceDictionary_2_System_Object_System_Object_ * __this, Object * key, Object * * value, MethodInfo * method)); DO_APP_FUNC(0x01633060, Object *, HybridReferenceDictionary_2_System_Object_System_Object__get_Item, (HybridReferenceDictionary_2_System_Object_System_Object_ * __this, Object * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9130, HybridReferenceDictionary_2_System_Object_System_Object__get_Item__MethodInfo); DO_APP_FUNC(0x01633130, void, HybridReferenceDictionary_2_System_Object_System_Object__set_Item, (HybridReferenceDictionary_2_System_Object_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01633570, void, ICollectionDebugView_1_System_Object___ctor, (ICollectionDebugView_1_System_Object_ * __this, ICollection_1_System_Object_ * collection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9138, ICollectionDebugView_1_System_Object___ctor__MethodInfo); DO_APP_FUNC(0x0127D820, Object__Array *, ICollectionDebugView_1_System_Object__get_Items, (ICollectionDebugView_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01633630, void, IDictionaryDebugView_2_System_Object_System_Object___ctor, (IDictionaryDebugView_2_System_Object_System_Object_ * __this, IDictionary_2_System_Object_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9120, IDictionaryDebugView_2_System_Object_System_Object___ctor__MethodInfo); DO_APP_FUNC(0x0127D820, KeyValuePair_2_System_Object_System_Object___Array *, IDictionaryDebugView_2_System_Object_System_Object__get_Items, (IDictionaryDebugView_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01633B20, void, ThreadLocal_1_T_IdManager_System_Object___ctor, (ThreadLocal_1_T_IdManager_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016336F0, int32_t, ThreadLocal_1_T_IdManager_System_Object__GetId, (ThreadLocal_1_T_IdManager_System_Object_ * __this, MethodInfo * method)); @@ -152486,21 +168284,27 @@ DO_APP_FUNC(0x016343C0, void, IndexedDictionary_2_System_Int32_System_Object___c DO_APP_FUNC(0x016340C0, void, IndexedDictionary_2_System_Int32_System_Object___ctor_2, (IndexedDictionary_2_System_Int32_System_Object_ * __this, bool param_0000c614, MethodInfo * method)); DO_APP_FUNC(0x0106CD60, void, IndexedDictionary_2_System_Int32_System_Object___ctor_3, (IndexedDictionary_2_System_Int32_System_Object_ * __this, int32_t param_0000c613, MethodInfo * method)); DO_APP_FUNC(0x016343E0, void, IndexedDictionary_2_System_Int32_System_Object___ctor_4, (IndexedDictionary_2_System_Int32_System_Object_ * __this, IDictionary_2_System_Int32_System_Object_ * param_0000c618, bool param_0000c619, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF90D8, IndexedDictionary_2_System_Int32_System_Object___ctor_4__MethodInfo); DO_APP_FUNC(0x016340E0, void, IndexedDictionary_2_System_Int32_System_Object___ctor_5, (IndexedDictionary_2_System_Int32_System_Object_ * __this, int32_t param_0000c615, bool param_0000c616, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9070, IndexedDictionary_2_System_Int32_System_Object___ctor_5__MethodInfo); DO_APP_FUNC(0x01635100, void, IndexedDictionary_2_System_Int32_System_Object__Add, (IndexedDictionary_2_System_Int32_System_Object_ * __this, int32_t key, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF90A0, IndexedDictionary_2_System_Int32_System_Object__Add__MethodInfo); DO_APP_FUNC(0x01635D30, void, IndexedDictionary_2_System_Int32_System_Object__Clear, (IndexedDictionary_2_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01635CA0, bool, IndexedDictionary_2_System_Int32_System_Object__ContainsKey, (IndexedDictionary_2_System_Int32_System_Object_ * __this, int32_t key, MethodInfo * method)); DO_APP_FUNC(0x01635CF0, bool, IndexedDictionary_2_System_Int32_System_Object__ContainsValue, (IndexedDictionary_2_System_Int32_System_Object_ * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01634C80, KeyValuePair_2_System_Int32_System_Object_, IndexedDictionary_2_System_Int32_System_Object__GetEntry, (IndexedDictionary_2_System_Int32_System_Object_ * __this, int32_t key, MethodInfo * method)); DO_APP_FUNC(0x01634DD0, KeyValuePair_2_System_Int32_System_Object_, IndexedDictionary_2_System_Int32_System_Object__GetEntryAt, (IndexedDictionary_2_System_Int32_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF90B8, IndexedDictionary_2_System_Int32_System_Object__GetEntryAt__MethodInfo); DO_APP_FUNC(0x01636540, IEnumerator_1_KeyValuePair_2_System_Int32_System_Object_ *, IndexedDictionary_2_System_Int32_System_Object__GetEnumerator, (IndexedDictionary_2_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01634BC0, int32_t, IndexedDictionary_2_System_Int32_System_Object__GetKeyAt, (IndexedDictionary_2_System_Int32_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF90A8, IndexedDictionary_2_System_Int32_System_Object__GetKeyAt__MethodInfo); DO_APP_FUNC(0x01634A70, Object *, IndexedDictionary_2_System_Int32_System_Object__GetValue, (IndexedDictionary_2_System_Int32_System_Object_ * __this, int32_t key, MethodInfo * method)); DO_APP_FUNC(0x01635A70, int32_t, IndexedDictionary_2_System_Int32_System_Object__IndexOfKey, (IndexedDictionary_2_System_Int32_System_Object_ * __this, int32_t key, MethodInfo * method)); DO_APP_FUNC(0x01635BB0, int32_t, IndexedDictionary_2_System_Int32_System_Object__IndexOfValue, (IndexedDictionary_2_System_Int32_System_Object_ * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01635480, bool, IndexedDictionary_2_System_Int32_System_Object__Remove, (IndexedDictionary_2_System_Int32_System_Object_ * __this, int32_t key, MethodInfo * method)); DO_APP_FUNC(0x016358F0, int32_t, IndexedDictionary_2_System_Int32_System_Object__RemoveAll, (IndexedDictionary_2_System_Int32_System_Object_ * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01635690, void, IndexedDictionary_2_System_Int32_System_Object__RemoveAt, (IndexedDictionary_2_System_Int32_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9038, IndexedDictionary_2_System_Int32_System_Object__RemoveAt__MethodInfo); DO_APP_FUNC(0x01635870, void, IndexedDictionary_2_System_Int32_System_Object__RemoveValue, (IndexedDictionary_2_System_Int32_System_Object_ * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01636FD0, bool, IndexedDictionary_2_System_Int32_System_Object__Rewired_Utils_Interfaces_IReadOnlyList_TValue__Contains, (IndexedDictionary_2_System_Int32_System_Object_ * __this, Object * param_0000c646, MethodInfo * method)); DO_APP_FUNC(0x01636FA0, int32_t, IndexedDictionary_2_System_Int32_System_Object__Rewired_Utils_Interfaces_IReadOnlyList_TValue__IndexOf, (IndexedDictionary_2_System_Int32_System_Object_ * __this, Object * param_0000c645, MethodInfo * method)); @@ -152509,11 +168313,14 @@ DO_APP_FUNC(0x01635310, void, IndexedDictionary_2_System_Int32_System_Object__Se DO_APP_FUNC(0x01635ED0, void, IndexedDictionary_2_System_Int32_System_Object__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add, (IndexedDictionary_2_System_Int32_System_Object_ * __this, KeyValuePair_2_System_Int32_System_Object_ param_0000c633, MethodInfo * method)); DO_APP_FUNC(0x01635EF0, bool, IndexedDictionary_2_System_Int32_System_Object__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains, (IndexedDictionary_2_System_Int32_System_Object_ * __this, KeyValuePair_2_System_Int32_System_Object_ param_0000c634, MethodInfo * method)); DO_APP_FUNC(0x01635FE0, void, IndexedDictionary_2_System_Int32_System_Object__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo, (IndexedDictionary_2_System_Int32_System_Object_ * __this, KeyValuePair_2_System_Int32_System_Object___Array * param_0000c635, int32_t param_0000c636, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9028, IndexedDictionary_2_System_Int32_System_Object__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo__MethodInfo); DO_APP_FUNC(0x016362C0, bool, IndexedDictionary_2_System_Int32_System_Object__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove, (IndexedDictionary_2_System_Int32_System_Object_ * __this, KeyValuePair_2_System_Int32_System_Object_ param_0000c637, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, IndexedDictionary_2_System_Int32_System_Object__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly, (IndexedDictionary_2_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016365E0, Object *, IndexedDictionary_2_System_Int32_System_Object__System_Collections_Generic_IDictionary_TKey_TValue__get_Item, (IndexedDictionary_2_System_Int32_System_Object_ * __this, int32_t param_0000c638, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9010, IndexedDictionary_2_System_Int32_System_Object__System_Collections_Generic_IDictionary_TKey_TValue__get_Item__MethodInfo); DO_APP_FUNC(0x01636700, void, IndexedDictionary_2_System_Int32_System_Object__System_Collections_Generic_IDictionary_TKey_TValue__set_Item, (IndexedDictionary_2_System_Int32_System_Object_ * __this, int32_t param_0000c639, Object * param_0000c63a, MethodInfo * method)); DO_APP_FUNC(0x01636C00, void, IndexedDictionary_2_System_Int32_System_Object__System_Collections_ICollection_CopyTo, (IndexedDictionary_2_System_Int32_System_Object_ * __this, Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9018, IndexedDictionary_2_System_Int32_System_Object__System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x01636ED0, bool, IndexedDictionary_2_System_Int32_System_Object__System_Collections_ICollection_get_IsSynchronized, (IndexedDictionary_2_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01636F20, Object *, IndexedDictionary_2_System_Int32_System_Object__System_Collections_ICollection_get_SyncRoot, (IndexedDictionary_2_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01636720, void, IndexedDictionary_2_System_Int32_System_Object__System_Collections_IDictionary_Add, (IndexedDictionary_2_System_Int32_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); @@ -152528,8 +168335,8 @@ DO_APP_FUNC(0x01635E50, ICollection *, IndexedDictionary_2_System_Int32_System_O DO_APP_FUNC(0x01636AE0, void, IndexedDictionary_2_System_Int32_System_Object__System_Collections_IDictionary_set_Item, (IndexedDictionary_2_System_Int32_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01636540, IEnumerator *, IndexedDictionary_2_System_Int32_System_Object__System_Collections_IEnumerable_GetEnumerator, (IndexedDictionary_2_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01635DA0, void, IndexedDictionary_2_System_Int32_System_Object__TrimExcess, (IndexedDictionary_2_System_Int32_System_Object_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x01634F30, bool, IndexedDictionary_2_System_Int32_System_Object__TryGetEntry, (IndexedDictionary_2_System_Int32_System_Object_ * __this, int32_t key, KeyValuePair_2_System_Int32_System_Object_ entry, MethodInfo * method)); -DO_APP_FUNC(0x01634AD0, bool, IndexedDictionary_2_System_Int32_System_Object__TryGetValue, (IndexedDictionary_2_System_Int32_System_Object_ * __this, int32_t key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x01634F30, bool, IndexedDictionary_2_System_Int32_System_Object__TryGetEntry, (IndexedDictionary_2_System_Int32_System_Object_ * __this, int32_t key, KeyValuePair_2_System_Int32_System_Object_ * entry, MethodInfo * method)); +DO_APP_FUNC(0x01634AD0, bool, IndexedDictionary_2_System_Int32_System_Object__TryGetValue, (IndexedDictionary_2_System_Int32_System_Object_ * __this, int32_t key, Object * * value, MethodInfo * method)); DO_APP_FUNC(0x01637030, int32_t, IndexedDictionary_2_System_Int32_System_Object__eQlggBQyLFtxxyojpIfDqxOZsyYd, (IndexedDictionary_2_System_Int32_System_Object_ * __this, Object * param_0000c648, MethodInfo * method)); DO_APP_FUNC(0x01637000, int32_t, IndexedDictionary_2_System_Int32_System_Object__fLKhQkOQEaCforcPVGowZLHSXoQP, (IndexedDictionary_2_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016370F0, bool, IndexedDictionary_2_System_Int32_System_Object__foNAyLuqsADSOHhsfTRRnkQStfNOA, (IndexedDictionary_2_System_Int32_System_Object_ * __this, Object * param_0000c649, MethodInfo * method)); @@ -152537,12 +168344,15 @@ DO_APP_FUNC(0x00594F20, bool, IndexedDictionary_2_System_Int32_System_Object__ge DO_APP_FUNC(0x01633FC0, bool, IndexedDictionary_2_System_Int32_System_Object__get_ContainsDuplicateKeys, (IndexedDictionary_2_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01633FA0, int32_t, IndexedDictionary_2_System_Int32_System_Object__get_Count, (IndexedDictionary_2_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016347C0, Object *, IndexedDictionary_2_System_Int32_System_Object__get_Item, (IndexedDictionary_2_System_Int32_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF90C8, IndexedDictionary_2_System_Int32_System_Object__get_Item__MethodInfo); DO_APP_FUNC(0x003BB3C0, IEqualityComparer_1_System_Int32_ *, IndexedDictionary_2_System_Int32_System_Object__get_KeyComparer, (IndexedDictionary_2_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01635DD0, ICollection_1_System_Int32_ *, IndexedDictionary_2_System_Int32_System_Object__get_Keys, (IndexedDictionary_2_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, IEqualityComparer_1_System_Object_ *, IndexedDictionary_2_System_Int32_System_Object__get_ValueComparer, (IndexedDictionary_2_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01635E50, ICollection_1_System_Object_ *, IndexedDictionary_2_System_Int32_System_Object__get_Values, (IndexedDictionary_2_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01634000, void, IndexedDictionary_2_System_Int32_System_Object__set_AllowDuplicateKeys, (IndexedDictionary_2_System_Int32_System_Object_ * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9090, IndexedDictionary_2_System_Int32_System_Object__set_AllowDuplicateKeys__MethodInfo); DO_APP_FUNC(0x01634860, void, IndexedDictionary_2_System_Int32_System_Object__set_Item, (IndexedDictionary_2_System_Int32_System_Object_ * __this, int32_t index, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF90D0, IndexedDictionary_2_System_Int32_System_Object__set_Item__MethodInfo); DO_APP_FUNC(0x01634950, void, IndexedDictionary_2_System_Int32_System_Object__set_KeyComparer, (IndexedDictionary_2_System_Int32_System_Object_ * __this, IEqualityComparer_1_System_Int32_ * value, MethodInfo * method)); DO_APP_FUNC(0x016349E0, void, IndexedDictionary_2_System_Int32_System_Object__set_ValueComparer, (IndexedDictionary_2_System_Int32_System_Object_ * __this, IEqualityComparer_1_System_Object_ * value, MethodInfo * method)); DO_APP_FUNC(0x01636F70, Object *, IndexedDictionary_2_System_Int32_System_Object__twrLdCzTZncuRvbYuXBvcXexnrAS, (IndexedDictionary_2_System_Int32_System_Object_ * __this, int32_t param_0000c647, MethodInfo * method)); @@ -152552,21 +168362,28 @@ DO_APP_FUNC(0x016343C0, void, IndexedDictionary_2_System_Object_System_Object___ DO_APP_FUNC(0x016340C0, void, IndexedDictionary_2_System_Object_System_Object___ctor_2, (IndexedDictionary_2_System_Object_System_Object_ * __this, bool param_0000c614, MethodInfo * method)); DO_APP_FUNC(0x0106CD60, void, IndexedDictionary_2_System_Object_System_Object___ctor_3, (IndexedDictionary_2_System_Object_System_Object_ * __this, int32_t param_0000c613, MethodInfo * method)); DO_APP_FUNC(0x016376A0, void, IndexedDictionary_2_System_Object_System_Object___ctor_4, (IndexedDictionary_2_System_Object_System_Object_ * __this, IDictionary_2_System_Object_System_Object_ * param_0000c618, bool param_0000c619, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8FD0, IndexedDictionary_2_System_Object_System_Object___ctor_4__MethodInfo); DO_APP_FUNC(0x016373C0, void, IndexedDictionary_2_System_Object_System_Object___ctor_5, (IndexedDictionary_2_System_Object_System_Object_ * __this, int32_t param_0000c615, bool param_0000c616, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9060, IndexedDictionary_2_System_Object_System_Object___ctor_5__MethodInfo); DO_APP_FUNC(0x016381A0, void, IndexedDictionary_2_System_Object_System_Object__Add, (IndexedDictionary_2_System_Object_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8FB0, IndexedDictionary_2_System_Object_System_Object__Add__MethodInfo); DO_APP_FUNC(0x01635D30, void, IndexedDictionary_2_System_Object_System_Object__Clear, (IndexedDictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01635CA0, bool, IndexedDictionary_2_System_Object_System_Object__ContainsKey, (IndexedDictionary_2_System_Object_System_Object_ * __this, Object * key, MethodInfo * method)); DO_APP_FUNC(0x01635CF0, bool, IndexedDictionary_2_System_Object_System_Object__ContainsValue, (IndexedDictionary_2_System_Object_System_Object_ * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01637DC0, KeyValuePair_2_System_Object_System_Object_, IndexedDictionary_2_System_Object_System_Object__GetEntry, (IndexedDictionary_2_System_Object_System_Object_ * __this, Object * key, MethodInfo * method)); DO_APP_FUNC(0x01637EE0, KeyValuePair_2_System_Object_System_Object_, IndexedDictionary_2_System_Object_System_Object__GetEntryAt, (IndexedDictionary_2_System_Object_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8FA0, IndexedDictionary_2_System_Object_System_Object__GetEntryAt__MethodInfo); DO_APP_FUNC(0x01636540, IEnumerator_1_KeyValuePair_2_System_Object_System_Object_ *, IndexedDictionary_2_System_Object_System_Object__GetEnumerator, (IndexedDictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01637D00, Object *, IndexedDictionary_2_System_Object_System_Object__GetKeyAt, (IndexedDictionary_2_System_Object_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8FC0, IndexedDictionary_2_System_Object_System_Object__GetKeyAt__MethodInfo); DO_APP_FUNC(0x01634A70, Object *, IndexedDictionary_2_System_Object_System_Object__GetValue, (IndexedDictionary_2_System_Object_System_Object_ * __this, Object * key, MethodInfo * method)); DO_APP_FUNC(0x016388E0, int32_t, IndexedDictionary_2_System_Object_System_Object__IndexOfKey, (IndexedDictionary_2_System_Object_System_Object_ * __this, Object * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8F98, IndexedDictionary_2_System_Object_System_Object__IndexOfKey__MethodInfo); DO_APP_FUNC(0x01635BB0, int32_t, IndexedDictionary_2_System_Object_System_Object__IndexOfValue, (IndexedDictionary_2_System_Object_System_Object_ * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x016384F0, bool, IndexedDictionary_2_System_Object_System_Object__Remove, (IndexedDictionary_2_System_Object_System_Object_ * __this, Object * key, MethodInfo * method)); DO_APP_FUNC(0x016358F0, int32_t, IndexedDictionary_2_System_Object_System_Object__RemoveAll, (IndexedDictionary_2_System_Object_System_Object_ * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01638700, void, IndexedDictionary_2_System_Object_System_Object__RemoveAt, (IndexedDictionary_2_System_Object_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8F90, IndexedDictionary_2_System_Object_System_Object__RemoveAt__MethodInfo); DO_APP_FUNC(0x01635870, void, IndexedDictionary_2_System_Object_System_Object__RemoveValue, (IndexedDictionary_2_System_Object_System_Object_ * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01636FD0, bool, IndexedDictionary_2_System_Object_System_Object__Rewired_Utils_Interfaces_IReadOnlyList_TValue__Contains, (IndexedDictionary_2_System_Object_System_Object_ * __this, Object * param_0000c646, MethodInfo * method)); DO_APP_FUNC(0x01636FA0, int32_t, IndexedDictionary_2_System_Object_System_Object__Rewired_Utils_Interfaces_IReadOnlyList_TValue__IndexOf, (IndexedDictionary_2_System_Object_System_Object_ * __this, Object * param_0000c645, MethodInfo * method)); @@ -152575,11 +168392,14 @@ DO_APP_FUNC(0x01638380, void, IndexedDictionary_2_System_Object_System_Object__S DO_APP_FUNC(0x01638A90, void, IndexedDictionary_2_System_Object_System_Object__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add, (IndexedDictionary_2_System_Object_System_Object_ * __this, KeyValuePair_2_System_Object_System_Object_ param_0000c633, MethodInfo * method)); DO_APP_FUNC(0x01638AB0, bool, IndexedDictionary_2_System_Object_System_Object__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains, (IndexedDictionary_2_System_Object_System_Object_ * __this, KeyValuePair_2_System_Object_System_Object_ param_0000c634, MethodInfo * method)); DO_APP_FUNC(0x01638BA0, void, IndexedDictionary_2_System_Object_System_Object__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo, (IndexedDictionary_2_System_Object_System_Object_ * __this, KeyValuePair_2_System_Object_System_Object___Array * param_0000c635, int32_t param_0000c636, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8FF8, IndexedDictionary_2_System_Object_System_Object__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo__MethodInfo); DO_APP_FUNC(0x01638E30, bool, IndexedDictionary_2_System_Object_System_Object__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove, (IndexedDictionary_2_System_Object_System_Object_ * __this, KeyValuePair_2_System_Object_System_Object_ param_0000c637, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, IndexedDictionary_2_System_Object_System_Object__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly, (IndexedDictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016390B0, Object *, IndexedDictionary_2_System_Object_System_Object__System_Collections_Generic_IDictionary_TKey_TValue__get_Item, (IndexedDictionary_2_System_Object_System_Object_ * __this, Object * param_0000c638, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9000, IndexedDictionary_2_System_Object_System_Object__System_Collections_Generic_IDictionary_TKey_TValue__get_Item__MethodInfo); DO_APP_FUNC(0x01636700, void, IndexedDictionary_2_System_Object_System_Object__System_Collections_Generic_IDictionary_TKey_TValue__set_Item, (IndexedDictionary_2_System_Object_System_Object_ * __this, Object * param_0000c639, Object * param_0000c63a, MethodInfo * method)); DO_APP_FUNC(0x01639670, void, IndexedDictionary_2_System_Object_System_Object__System_Collections_ICollection_CopyTo, (IndexedDictionary_2_System_Object_System_Object_ * __this, Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8FE8, IndexedDictionary_2_System_Object_System_Object__System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x016398F0, bool, IndexedDictionary_2_System_Object_System_Object__System_Collections_ICollection_get_IsSynchronized, (IndexedDictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01639940, Object *, IndexedDictionary_2_System_Object_System_Object__System_Collections_ICollection_get_SyncRoot, (IndexedDictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016391D0, void, IndexedDictionary_2_System_Object_System_Object__System_Collections_IDictionary_Add, (IndexedDictionary_2_System_Object_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); @@ -152594,8 +168414,8 @@ DO_APP_FUNC(0x01635E50, ICollection *, IndexedDictionary_2_System_Object_System_ DO_APP_FUNC(0x01639540, void, IndexedDictionary_2_System_Object_System_Object__System_Collections_IDictionary_set_Item, (IndexedDictionary_2_System_Object_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01636540, IEnumerator *, IndexedDictionary_2_System_Object_System_Object__System_Collections_IEnumerable_GetEnumerator, (IndexedDictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01635DA0, void, IndexedDictionary_2_System_Object_System_Object__TrimExcess, (IndexedDictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x01638010, bool, IndexedDictionary_2_System_Object_System_Object__TryGetEntry, (IndexedDictionary_2_System_Object_System_Object_ * __this, Object * key, KeyValuePair_2_System_Object_System_Object_ entry, MethodInfo * method)); -DO_APP_FUNC(0x01637C10, bool, IndexedDictionary_2_System_Object_System_Object__TryGetValue, (IndexedDictionary_2_System_Object_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x01638010, bool, IndexedDictionary_2_System_Object_System_Object__TryGetEntry, (IndexedDictionary_2_System_Object_System_Object_ * __this, Object * key, KeyValuePair_2_System_Object_System_Object_ * entry, MethodInfo * method)); +DO_APP_FUNC(0x01637C10, bool, IndexedDictionary_2_System_Object_System_Object__TryGetValue, (IndexedDictionary_2_System_Object_System_Object_ * __this, Object * key, Object * * value, MethodInfo * method)); DO_APP_FUNC(0x01637030, int32_t, IndexedDictionary_2_System_Object_System_Object__eQlggBQyLFtxxyojpIfDqxOZsyYd, (IndexedDictionary_2_System_Object_System_Object_ * __this, Object * param_0000c648, MethodInfo * method)); DO_APP_FUNC(0x01637000, int32_t, IndexedDictionary_2_System_Object_System_Object__fLKhQkOQEaCforcPVGowZLHSXoQP, (IndexedDictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016370F0, bool, IndexedDictionary_2_System_Object_System_Object__foNAyLuqsADSOHhsfTRRnkQStfNOA, (IndexedDictionary_2_System_Object_System_Object_ * __this, Object * param_0000c649, MethodInfo * method)); @@ -152603,12 +168423,15 @@ DO_APP_FUNC(0x00594F20, bool, IndexedDictionary_2_System_Object_System_Object__g DO_APP_FUNC(0x01633FC0, bool, IndexedDictionary_2_System_Object_System_Object__get_ContainsDuplicateKeys, (IndexedDictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01633FA0, int32_t, IndexedDictionary_2_System_Object_System_Object__get_Count, (IndexedDictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01637A80, Object *, IndexedDictionary_2_System_Object_System_Object__get_Item, (IndexedDictionary_2_System_Object_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8FD8, IndexedDictionary_2_System_Object_System_Object__get_Item__MethodInfo); DO_APP_FUNC(0x003BB3C0, IEqualityComparer_1_System_Object_ *, IndexedDictionary_2_System_Object_System_Object__get_KeyComparer, (IndexedDictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01635DD0, ICollection_1_System_Object_ *, IndexedDictionary_2_System_Object_System_Object__get_Keys, (IndexedDictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, IEqualityComparer_1_System_Object_ *, IndexedDictionary_2_System_Object_System_Object__get_ValueComparer, (IndexedDictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01635E50, ICollection_1_System_Object_ *, IndexedDictionary_2_System_Object_System_Object__get_Values, (IndexedDictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01637320, void, IndexedDictionary_2_System_Object_System_Object__set_AllowDuplicateKeys, (IndexedDictionary_2_System_Object_System_Object_ * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9050, IndexedDictionary_2_System_Object_System_Object__set_AllowDuplicateKeys__MethodInfo); DO_APP_FUNC(0x01637B20, void, IndexedDictionary_2_System_Object_System_Object__set_Item, (IndexedDictionary_2_System_Object_System_Object_ * __this, int32_t index, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8FB8, IndexedDictionary_2_System_Object_System_Object__set_Item__MethodInfo); DO_APP_FUNC(0x01634950, void, IndexedDictionary_2_System_Object_System_Object__set_KeyComparer, (IndexedDictionary_2_System_Object_System_Object_ * __this, IEqualityComparer_1_System_Object_ * value, MethodInfo * method)); DO_APP_FUNC(0x016349E0, void, IndexedDictionary_2_System_Object_System_Object__set_ValueComparer, (IndexedDictionary_2_System_Object_System_Object_ * __this, IEqualityComparer_1_System_Object_ * value, MethodInfo * method)); DO_APP_FUNC(0x01636F70, Object *, IndexedDictionary_2_System_Object_System_Object__twrLdCzTZncuRvbYuXBvcXexnrAS, (IndexedDictionary_2_System_Object_System_Object_ * __this, int32_t param_0000c647, MethodInfo * method)); @@ -152618,21 +168441,28 @@ DO_APP_FUNC(0x016343C0, void, IndexedDictionary_2_System_Object_SerializedObject DO_APP_FUNC(0x016340C0, void, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___ctor_2, (IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, bool param_0000c614, MethodInfo * method)); DO_APP_FUNC(0x0106CD60, void, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___ctor_3, (IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, int32_t param_0000c613, MethodInfo * method)); DO_APP_FUNC(0x01639E80, void, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___ctor_4, (IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, IDictionary_2_System_Object_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * param_0000c618, bool param_0000c619, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4BA0, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___ctor_4__MethodInfo); DO_APP_FUNC(0x01639BA0, void, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___ctor_5, (IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, int32_t param_0000c615, bool param_0000c616, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4C20, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___ctor_5__MethodInfo); DO_APP_FUNC(0x0163ACF0, void, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__Add, (IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, Object * key, SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4B98, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__Add__MethodInfo); DO_APP_FUNC(0x01635D30, void, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__Clear, (IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01635CA0, bool, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__ContainsKey, (IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, Object * key, MethodInfo * method)); DO_APP_FUNC(0x0163BAD0, bool, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__ContainsValue, (IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo value, MethodInfo * method)); DO_APP_FUNC(0x0163A6D0, KeyValuePair_2_System_Object_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__GetEntry, (IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, Object * key, MethodInfo * method)); DO_APP_FUNC(0x0163A8B0, KeyValuePair_2_System_Object_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__GetEntryAt, (IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4B80, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__GetEntryAt__MethodInfo); DO_APP_FUNC(0x0163C3A0, IEnumerator_1_KeyValuePair_2_System_Object_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ *, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__GetEnumerator, (IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0163A610, Object *, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__GetKeyAt, (IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4B88, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__GetKeyAt__MethodInfo); DO_APP_FUNC(0x0163A470, SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__GetValue, (IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, Object * key, MethodInfo * method)); DO_APP_FUNC(0x0163B770, int32_t, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__IndexOfKey, (IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, Object * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4BE8, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__IndexOfKey__MethodInfo); DO_APP_FUNC(0x0163B920, int32_t, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__IndexOfValue, (IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo value, MethodInfo * method)); DO_APP_FUNC(0x0163B120, bool, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__Remove, (IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, Object * key, MethodInfo * method)); DO_APP_FUNC(0x0163B5B0, int32_t, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__RemoveAll, (IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo value, MethodInfo * method)); DO_APP_FUNC(0x0163B330, void, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__RemoveAt, (IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4B90, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__RemoveAt__MethodInfo); DO_APP_FUNC(0x0163B510, void, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__RemoveValue, (IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo value, MethodInfo * method)); DO_APP_FUNC(0x0163CF80, bool, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__Rewired_Utils_Interfaces_IReadOnlyList_TValue__Contains, (IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo param_0000c646, MethodInfo * method)); DO_APP_FUNC(0x0163CF30, int32_t, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__Rewired_Utils_Interfaces_IReadOnlyList_TValue__IndexOf, (IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo param_0000c645, MethodInfo * method)); @@ -152641,11 +168471,14 @@ DO_APP_FUNC(0x0163AF90, void, IndexedDictionary_2_System_Object_SerializedObject DO_APP_FUNC(0x0163BB30, void, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add, (IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, KeyValuePair_2_System_Object_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ param_0000c633, MethodInfo * method)); DO_APP_FUNC(0x0163BB70, bool, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains, (IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, KeyValuePair_2_System_Object_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ param_0000c634, MethodInfo * method)); DO_APP_FUNC(0x0163BCF0, void, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo, (IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, KeyValuePair_2_System_Object_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Array * param_0000c635, int32_t param_0000c636, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4BE0, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo__MethodInfo); DO_APP_FUNC(0x0163C050, bool, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove, (IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, KeyValuePair_2_System_Object_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ param_0000c637, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly, (IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0163C450, SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_Generic_IDictionary_TKey_TValue__get_Item, (IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, Object * param_0000c638, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4BF8, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_Generic_IDictionary_TKey_TValue__get_Item__MethodInfo); DO_APP_FUNC(0x0163C590, void, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_Generic_IDictionary_TKey_TValue__set_Item, (IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, Object * param_0000c639, SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo param_0000c63a, MethodInfo * method)); DO_APP_FUNC(0x0163CAE0, void, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_ICollection_CopyTo, (IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4BF0, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0163CE30, bool, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_ICollection_get_IsSynchronized, (IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0163CE80, Object *, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_ICollection_get_SyncRoot, (IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0163C5D0, void, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_IDictionary_Add, (IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, Object * key, Object * value, MethodInfo * method)); @@ -152660,8 +168493,8 @@ DO_APP_FUNC(0x01635E50, ICollection *, IndexedDictionary_2_System_Object_Seriali DO_APP_FUNC(0x0163C940, void, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_IDictionary_set_Item, (IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x0163C3A0, IEnumerator *, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_IEnumerable_GetEnumerator, (IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01635DA0, void, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__TrimExcess, (IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x0163AAB0, bool, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__TryGetEntry, (IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, Object * key, KeyValuePair_2_System_Object_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ entry, MethodInfo * method)); -DO_APP_FUNC(0x0163A4F0, bool, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__TryGetValue, (IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, Object * key, SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo value, MethodInfo * method)); +DO_APP_FUNC(0x0163AAB0, bool, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__TryGetEntry, (IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, Object * key, KeyValuePair_2_System_Object_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * entry, MethodInfo * method)); +DO_APP_FUNC(0x0163A4F0, bool, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__TryGetValue, (IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, Object * key, SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo * value, MethodInfo * method)); DO_APP_FUNC(0x0163D060, int32_t, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__eQlggBQyLFtxxyojpIfDqxOZsyYd, (IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, Object * param_0000c648, MethodInfo * method)); DO_APP_FUNC(0x01637000, int32_t, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__fLKhQkOQEaCforcPVGowZLHSXoQP, (IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0163D120, bool, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__foNAyLuqsADSOHhsfTRRnkQStfNOA, (IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, Object * param_0000c649, MethodInfo * method)); @@ -152669,29 +168502,41 @@ DO_APP_FUNC(0x00594F20, bool, IndexedDictionary_2_System_Object_SerializedObject DO_APP_FUNC(0x01633FC0, bool, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__get_ContainsDuplicateKeys, (IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01633FA0, int32_t, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__get_Count, (IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0163A2B0, SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__get_Item, (IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4BC8, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__get_Item__MethodInfo); DO_APP_FUNC(0x003BB3C0, IEqualityComparer_1_System_Object_ *, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__get_KeyComparer, (IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01635DD0, ICollection_1_System_Object_ *, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__get_Keys, (IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, IEqualityComparer_1_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ *, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__get_ValueComparer, (IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01635E50, ICollection_1_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ *, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__get_Values, (IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01639B00, void, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__set_AllowDuplicateKeys, (IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4C18, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__set_AllowDuplicateKeys__MethodInfo); DO_APP_FUNC(0x0163A360, void, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__set_Item, (IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, int32_t index, SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4BB8, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__set_Item__MethodInfo); DO_APP_FUNC(0x01634950, void, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__set_KeyComparer, (IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, IEqualityComparer_1_System_Object_ * value, MethodInfo * method)); DO_APP_FUNC(0x016349E0, void, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__set_ValueComparer, (IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, IEqualityComparer_1_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * value, MethodInfo * method)); DO_APP_FUNC(0x0163CFD0, Object *, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__twrLdCzTZncuRvbYuXBvcXexnrAS, (IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, int32_t param_0000c647, MethodInfo * method)); DO_APP_FUNC(0x0163D9C0, void, WorkItemProcessor_IndexedQueue_1_AstarWorkItem___ctor, (WorkItemProcessor_IndexedQueue_1_AstarWorkItem_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6CB8, WorkItemProcessor_IndexedQueue_1_AstarWorkItem___ctor__MethodInfo); DO_APP_FUNC(0x0163D890, AstarWorkItem, WorkItemProcessor_IndexedQueue_1_AstarWorkItem__Dequeue, (WorkItemProcessor_IndexedQueue_1_AstarWorkItem_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6C58, WorkItemProcessor_IndexedQueue_1_AstarWorkItem__Dequeue__MethodInfo); DO_APP_FUNC(0x0163D560, void, WorkItemProcessor_IndexedQueue_1_AstarWorkItem__Enqueue, (WorkItemProcessor_IndexedQueue_1_AstarWorkItem_ * __this, AstarWorkItem item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6C88, WorkItemProcessor_IndexedQueue_1_AstarWorkItem__Enqueue__MethodInfo); DO_APP_FUNC(0x003CD440, int32_t, WorkItemProcessor_IndexedQueue_1_AstarWorkItem__get_Count, (WorkItemProcessor_IndexedQueue_1_AstarWorkItem_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6CD8, WorkItemProcessor_IndexedQueue_1_AstarWorkItem__get_Count__MethodInfo); DO_APP_FUNC(0x0163D350, AstarWorkItem, WorkItemProcessor_IndexedQueue_1_AstarWorkItem__get_Item, (WorkItemProcessor_IndexedQueue_1_AstarWorkItem_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6C70, WorkItemProcessor_IndexedQueue_1_AstarWorkItem__get_Item__MethodInfo); DO_APP_FUNC(0x006D8870, void, WorkItemProcessor_IndexedQueue_1_AstarWorkItem__set_Count, (WorkItemProcessor_IndexedQueue_1_AstarWorkItem_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x0163D430, void, WorkItemProcessor_IndexedQueue_1_AstarWorkItem__set_Item, (WorkItemProcessor_IndexedQueue_1_AstarWorkItem_ * __this, int32_t index, AstarWorkItem value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6C68, WorkItemProcessor_IndexedQueue_1_AstarWorkItem__set_Item__MethodInfo); DO_APP_FUNC(0x0163D9C0, void, WorkItemProcessor_IndexedQueue_1_System_Object___ctor, (WorkItemProcessor_IndexedQueue_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0163DE70, Object *, WorkItemProcessor_IndexedQueue_1_System_Object__Dequeue, (WorkItemProcessor_IndexedQueue_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4B10, WorkItemProcessor_IndexedQueue_1_System_Object__Dequeue__MethodInfo); DO_APP_FUNC(0x0163DBD0, void, WorkItemProcessor_IndexedQueue_1_System_Object__Enqueue, (WorkItemProcessor_IndexedQueue_1_System_Object_ * __this, Object * item, MethodInfo * method)); DO_APP_FUNC(0x003CD440, int32_t, WorkItemProcessor_IndexedQueue_1_System_Object__get_Count, (WorkItemProcessor_IndexedQueue_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0163DA50, Object *, WorkItemProcessor_IndexedQueue_1_System_Object__get_Item, (WorkItemProcessor_IndexedQueue_1_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4B38, WorkItemProcessor_IndexedQueue_1_System_Object__get_Item__MethodInfo); DO_APP_FUNC(0x006D8870, void, WorkItemProcessor_IndexedQueue_1_System_Object__set_Count, (WorkItemProcessor_IndexedQueue_1_System_Object_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x0163DB10, void, WorkItemProcessor_IndexedQueue_1_System_Object__set_Item, (WorkItemProcessor_IndexedQueue_1_System_Object_ * __this, int32_t index, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4B30, WorkItemProcessor_IndexedQueue_1_System_Object__set_Item__MethodInfo); DO_APP_FUNC(0x0163ECA0, void, IndexedSet_1_System_Object___ctor, (IndexedSet_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0163DF90, void, IndexedSet_1_System_Object__Add, (IndexedSet_1_System_Object_ * __this, Object * item, MethodInfo * method)); DO_APP_FUNC(0x0163DFB0, void, IndexedSet_1_System_Object__Add_1, (IndexedSet_1_System_Object_ * __this, Object * item, bool isActive, MethodInfo * method)); @@ -152702,8 +168547,10 @@ DO_APP_FUNC(0x0163E460, void, IndexedSet_1_System_Object__CopyTo, (IndexedSet_1_ DO_APP_FUNC(0x0163E220, bool, IndexedSet_1_System_Object__DisableItem, (IndexedSet_1_System_Object_ * __this, Object * item, MethodInfo * method)); DO_APP_FUNC(0x0163E180, bool, IndexedSet_1_System_Object__EnableItem, (IndexedSet_1_System_Object_ * __this, Object * item, MethodInfo * method)); DO_APP_FUNC(0x0163E360, IEnumerator_1_System_Object_ *, IndexedSet_1_System_Object__GetEnumerator, (IndexedSet_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4B08, IndexedSet_1_System_Object__GetEnumerator__MethodInfo); DO_APP_FUNC(0x0163E490, int32_t, IndexedSet_1_System_Object__IndexOf, (IndexedSet_1_System_Object_ * __this, Object * item, MethodInfo * method)); DO_APP_FUNC(0x0163E4F0, void, IndexedSet_1_System_Object__Insert, (IndexedSet_1_System_Object_ * __this, int32_t index, Object * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4B18, IndexedSet_1_System_Object__Insert__MethodInfo); DO_APP_FUNC(0x0163E2D0, bool, IndexedSet_1_System_Object__Remove, (IndexedSet_1_System_Object_ * __this, Object * item, MethodInfo * method)); DO_APP_FUNC(0x0163EA50, void, IndexedSet_1_System_Object__RemoveAll, (IndexedSet_1_System_Object_ * __this, Predicate_1_Object_ * match, MethodInfo * method)); DO_APP_FUNC(0x0163E550, void, IndexedSet_1_System_Object__RemoveAt, (IndexedSet_1_System_Object_ * __this, int32_t index, MethodInfo * method)); @@ -152714,830 +168561,1097 @@ DO_APP_FUNC(0x010C74D0, int32_t, IndexedSet_1_System_Object__get_Capacity, (Inde DO_APP_FUNC(0x003CC980, int32_t, IndexedSet_1_System_Object__get_Count, (IndexedSet_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, IndexedSet_1_System_Object__get_IsReadOnly, (IndexedSet_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0163E8C0, Object *, IndexedSet_1_System_Object__get_Item, (IndexedSet_1_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4B70, IndexedSet_1_System_Object__get_Item__MethodInfo); DO_APP_FUNC(0x0163E960, void, IndexedSet_1_System_Object__set_Item, (IndexedSet_1_System_Object_ * __this, int32_t index, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x0163EE50, void, InlinedArray_1_System_Collections_Generic_KeyValuePair_2___ctor, (InlinedArray_1_System_Collections_Generic_KeyValuePair_2___Boxed * __this, KeyValuePair_2_System_Int32_System_Int32_ value, MethodInfo * method)); -DO_APP_FUNC(0x0163EF30, void, InlinedArray_1_System_Collections_Generic_KeyValuePair_2___ctor_1, (InlinedArray_1_System_Collections_Generic_KeyValuePair_2___Boxed * __this, IEnumerable_1_KeyValuePair_2_System_Int32_System_Int32_ * values, MethodInfo * method)); -DO_APP_FUNC(0x0163EEC0, void, InlinedArray_1_System_Collections_Generic_KeyValuePair_2___ctor_2, (InlinedArray_1_System_Collections_Generic_KeyValuePair_2___Boxed * __this, KeyValuePair_2_System_Int32_System_Int32_ firstValue, KeyValuePair_2_System_Int32_System_Int32___Array * additionalValues, MethodInfo * method)); -DO_APP_FUNC(0x0163F8E0, int32_t, InlinedArray_1_System_Collections_Generic_KeyValuePair_2__Append, (InlinedArray_1_System_Collections_Generic_KeyValuePair_2___Boxed * __this, KeyValuePair_2_System_Int32_System_Int32_ value, MethodInfo * method)); -DO_APP_FUNC(0x0163FDB0, void, InlinedArray_1_System_Collections_Generic_KeyValuePair_2__Append_1, (InlinedArray_1_System_Collections_Generic_KeyValuePair_2___Boxed * __this, IEnumerable_1_KeyValuePair_2_System_Int32_System_Int32_ * values, MethodInfo * method)); -DO_APP_FUNC(0x0163FA60, int32_t, InlinedArray_1_System_Collections_Generic_KeyValuePair_2__AppendWithCapacity, (InlinedArray_1_System_Collections_Generic_KeyValuePair_2___Boxed * __this, KeyValuePair_2_System_Int32_System_Int32_ value, int32_t capacityIncrement, MethodInfo * method)); +DO_APP_FUNC(0x0163EE50, void, InlinedArray_1_System_Collections_Generic_KeyValuePair_2___ctor, (InlinedArray_1_System_Collections_Generic_KeyValuePair_2_ * __this, KeyValuePair_2_System_Int32_System_Int32_ value, MethodInfo * method)); +DO_APP_FUNC(0x0163EF30, void, InlinedArray_1_System_Collections_Generic_KeyValuePair_2___ctor_1, (InlinedArray_1_System_Collections_Generic_KeyValuePair_2_ * __this, IEnumerable_1_KeyValuePair_2_System_Int32_System_Int32_ * values, MethodInfo * method)); +DO_APP_FUNC(0x0163EEC0, void, InlinedArray_1_System_Collections_Generic_KeyValuePair_2___ctor_2, (InlinedArray_1_System_Collections_Generic_KeyValuePair_2_ * __this, KeyValuePair_2_System_Int32_System_Int32_ firstValue, KeyValuePair_2_System_Int32_System_Int32___Array * additionalValues, MethodInfo * method)); +DO_APP_FUNC(0x0163F8E0, int32_t, InlinedArray_1_System_Collections_Generic_KeyValuePair_2__Append, (InlinedArray_1_System_Collections_Generic_KeyValuePair_2_ * __this, KeyValuePair_2_System_Int32_System_Int32_ value, MethodInfo * method)); +DO_APP_FUNC(0x0163FDB0, void, InlinedArray_1_System_Collections_Generic_KeyValuePair_2__Append_1, (InlinedArray_1_System_Collections_Generic_KeyValuePair_2_ * __this, IEnumerable_1_KeyValuePair_2_System_Int32_System_Int32_ * values, MethodInfo * method)); +DO_APP_FUNC(0x0163FA60, int32_t, InlinedArray_1_System_Collections_Generic_KeyValuePair_2__AppendWithCapacity, (InlinedArray_1_System_Collections_Generic_KeyValuePair_2_ * __this, KeyValuePair_2_System_Int32_System_Int32_ value, int32_t capacityIncrement, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8C468, InlinedArray_1_System_Collections_Generic_KeyValuePair_2__AppendWithCapacity__MethodInfo); -DO_APP_FUNC(0x0163FB30, void, InlinedArray_1_System_Collections_Generic_KeyValuePair_2__AssignWithCapacity, (InlinedArray_1_System_Collections_Generic_KeyValuePair_2___Boxed * __this, InlinedArray_1_System_Collections_Generic_KeyValuePair_2_ values, MethodInfo * method)); -DO_APP_FUNC(0x0163F400, void, InlinedArray_1_System_Collections_Generic_KeyValuePair_2__Clear, (InlinedArray_1_System_Collections_Generic_KeyValuePair_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0163F460, void, InlinedArray_1_System_Collections_Generic_KeyValuePair_2__ClearWithCapacity, (InlinedArray_1_System_Collections_Generic_KeyValuePair_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0163F4C0, InlinedArray_1_System_Collections_Generic_KeyValuePair_2_, InlinedArray_1_System_Collections_Generic_KeyValuePair_2__Clone, (InlinedArray_1_System_Collections_Generic_KeyValuePair_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01640840, bool, InlinedArray_1_System_Collections_Generic_KeyValuePair_2__Contains, (InlinedArray_1_System_Collections_Generic_KeyValuePair_2___Boxed * __this, KeyValuePair_2_System_Int32_System_Int32_ value, IEqualityComparer_1_KeyValuePair_2_System_Int32_System_Int32_ * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01640C50, IEnumerator_1_KeyValuePair_2_System_Int32_System_Int32_ *, InlinedArray_1_System_Collections_Generic_KeyValuePair_2__GetEnumerator, (InlinedArray_1_System_Collections_Generic_KeyValuePair_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0163F7B0, int32_t, InlinedArray_1_System_Collections_Generic_KeyValuePair_2__IndexOf, (InlinedArray_1_System_Collections_Generic_KeyValuePair_2___Boxed * __this, KeyValuePair_2_System_Int32_System_Int32_ value, MethodInfo * method)); -DO_APP_FUNC(0x01640990, void, InlinedArray_1_System_Collections_Generic_KeyValuePair_2__Merge, (InlinedArray_1_System_Collections_Generic_KeyValuePair_2___Boxed * __this, InlinedArray_1_System_Collections_Generic_KeyValuePair_2_ other, MethodInfo * method)); -DO_APP_FUNC(0x0163FFD0, void, InlinedArray_1_System_Collections_Generic_KeyValuePair_2__Remove, (InlinedArray_1_System_Collections_Generic_KeyValuePair_2___Boxed * __this, KeyValuePair_2_System_Int32_System_Int32_ value, MethodInfo * method)); -DO_APP_FUNC(0x016403B0, void, InlinedArray_1_System_Collections_Generic_KeyValuePair_2__RemoveAt, (InlinedArray_1_System_Collections_Generic_KeyValuePair_2___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01640630, void, InlinedArray_1_System_Collections_Generic_KeyValuePair_2__RemoveAtByMovingTailWithCapacity, (InlinedArray_1_System_Collections_Generic_KeyValuePair_2___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x016401B0, void, InlinedArray_1_System_Collections_Generic_KeyValuePair_2__RemoveAtWithCapacity, (InlinedArray_1_System_Collections_Generic_KeyValuePair_2___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x016407A0, bool, InlinedArray_1_System_Collections_Generic_KeyValuePair_2__RemoveByMovingTailWithCapacity, (InlinedArray_1_System_Collections_Generic_KeyValuePair_2___Boxed * __this, KeyValuePair_2_System_Int32_System_Int32_ value, MethodInfo * method)); -DO_APP_FUNC(0x0163F5B0, void, InlinedArray_1_System_Collections_Generic_KeyValuePair_2__SetLength, (InlinedArray_1_System_Collections_Generic_KeyValuePair_2___Boxed * __this, int32_t size, MethodInfo * method)); -DO_APP_FUNC(0x01640D30, IEnumerator *, InlinedArray_1_System_Collections_Generic_KeyValuePair_2__System_Collections_IEnumerable_GetEnumerator, (InlinedArray_1_System_Collections_Generic_KeyValuePair_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0163F720, KeyValuePair_2_System_Int32_System_Int32___Array *, InlinedArray_1_System_Collections_Generic_KeyValuePair_2__ToArray, (InlinedArray_1_System_Collections_Generic_KeyValuePair_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0163EE30, int32_t, InlinedArray_1_System_Collections_Generic_KeyValuePair_2__get_Capacity, (InlinedArray_1_System_Collections_Generic_KeyValuePair_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0163F2C0, KeyValuePair_2_System_Int32_System_Int32_, InlinedArray_1_System_Collections_Generic_KeyValuePair_2__get_Item, (InlinedArray_1_System_Collections_Generic_KeyValuePair_2___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x0163F360, void, InlinedArray_1_System_Collections_Generic_KeyValuePair_2__set_Item, (InlinedArray_1_System_Collections_Generic_KeyValuePair_2___Boxed * __this, int32_t index, KeyValuePair_2_System_Int32_System_Int32_ value, MethodInfo * method)); -DO_APP_FUNC(0x01640D70, void, InlinedArray_1_System_Runtime_InteropServices_GCHandle___ctor, (InlinedArray_1_System_Runtime_InteropServices_GCHandle___Boxed * __this, GCHandle value, MethodInfo * method)); -DO_APP_FUNC(0x01640E50, void, InlinedArray_1_System_Runtime_InteropServices_GCHandle___ctor_1, (InlinedArray_1_System_Runtime_InteropServices_GCHandle___Boxed * __this, IEnumerable_1_System_Runtime_InteropServices_GCHandle_ * values, MethodInfo * method)); -DO_APP_FUNC(0x01640DE0, void, InlinedArray_1_System_Runtime_InteropServices_GCHandle___ctor_2, (InlinedArray_1_System_Runtime_InteropServices_GCHandle___Boxed * __this, GCHandle firstValue, GCHandle__Array * additionalValues, MethodInfo * method)); -DO_APP_FUNC(0x01641800, int32_t, InlinedArray_1_System_Runtime_InteropServices_GCHandle__Append, (InlinedArray_1_System_Runtime_InteropServices_GCHandle___Boxed * __this, GCHandle value, MethodInfo * method)); -DO_APP_FUNC(0x01641CD0, void, InlinedArray_1_System_Runtime_InteropServices_GCHandle__Append_1, (InlinedArray_1_System_Runtime_InteropServices_GCHandle___Boxed * __this, IEnumerable_1_System_Runtime_InteropServices_GCHandle_ * values, MethodInfo * method)); -DO_APP_FUNC(0x01641980, int32_t, InlinedArray_1_System_Runtime_InteropServices_GCHandle__AppendWithCapacity, (InlinedArray_1_System_Runtime_InteropServices_GCHandle___Boxed * __this, GCHandle value, int32_t capacityIncrement, MethodInfo * method)); -DO_APP_FUNC(0x01641A50, void, InlinedArray_1_System_Runtime_InteropServices_GCHandle__AssignWithCapacity, (InlinedArray_1_System_Runtime_InteropServices_GCHandle___Boxed * __this, InlinedArray_1_System_Runtime_InteropServices_GCHandle_ values, MethodInfo * method)); -DO_APP_FUNC(0x01641320, void, InlinedArray_1_System_Runtime_InteropServices_GCHandle__Clear, (InlinedArray_1_System_Runtime_InteropServices_GCHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01641380, void, InlinedArray_1_System_Runtime_InteropServices_GCHandle__ClearWithCapacity, (InlinedArray_1_System_Runtime_InteropServices_GCHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016413E0, InlinedArray_1_System_Runtime_InteropServices_GCHandle_, InlinedArray_1_System_Runtime_InteropServices_GCHandle__Clone, (InlinedArray_1_System_Runtime_InteropServices_GCHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01642760, bool, InlinedArray_1_System_Runtime_InteropServices_GCHandle__Contains, (InlinedArray_1_System_Runtime_InteropServices_GCHandle___Boxed * __this, GCHandle value, IEqualityComparer_1_System_Runtime_InteropServices_GCHandle_ * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01640C50, IEnumerator_1_System_Runtime_InteropServices_GCHandle_ *, InlinedArray_1_System_Runtime_InteropServices_GCHandle__GetEnumerator, (InlinedArray_1_System_Runtime_InteropServices_GCHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016416D0, int32_t, InlinedArray_1_System_Runtime_InteropServices_GCHandle__IndexOf, (InlinedArray_1_System_Runtime_InteropServices_GCHandle___Boxed * __this, GCHandle value, MethodInfo * method)); -DO_APP_FUNC(0x016428B0, void, InlinedArray_1_System_Runtime_InteropServices_GCHandle__Merge, (InlinedArray_1_System_Runtime_InteropServices_GCHandle___Boxed * __this, InlinedArray_1_System_Runtime_InteropServices_GCHandle_ other, MethodInfo * method)); -DO_APP_FUNC(0x01641EF0, void, InlinedArray_1_System_Runtime_InteropServices_GCHandle__Remove, (InlinedArray_1_System_Runtime_InteropServices_GCHandle___Boxed * __this, GCHandle value, MethodInfo * method)); -DO_APP_FUNC(0x016422D0, void, InlinedArray_1_System_Runtime_InteropServices_GCHandle__RemoveAt, (InlinedArray_1_System_Runtime_InteropServices_GCHandle___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01642550, void, InlinedArray_1_System_Runtime_InteropServices_GCHandle__RemoveAtByMovingTailWithCapacity, (InlinedArray_1_System_Runtime_InteropServices_GCHandle___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x016420D0, void, InlinedArray_1_System_Runtime_InteropServices_GCHandle__RemoveAtWithCapacity, (InlinedArray_1_System_Runtime_InteropServices_GCHandle___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x016426C0, bool, InlinedArray_1_System_Runtime_InteropServices_GCHandle__RemoveByMovingTailWithCapacity, (InlinedArray_1_System_Runtime_InteropServices_GCHandle___Boxed * __this, GCHandle value, MethodInfo * method)); -DO_APP_FUNC(0x016414D0, void, InlinedArray_1_System_Runtime_InteropServices_GCHandle__SetLength, (InlinedArray_1_System_Runtime_InteropServices_GCHandle___Boxed * __this, int32_t size, MethodInfo * method)); -DO_APP_FUNC(0x01640D30, IEnumerator *, InlinedArray_1_System_Runtime_InteropServices_GCHandle__System_Collections_IEnumerable_GetEnumerator, (InlinedArray_1_System_Runtime_InteropServices_GCHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01641640, GCHandle__Array *, InlinedArray_1_System_Runtime_InteropServices_GCHandle__ToArray, (InlinedArray_1_System_Runtime_InteropServices_GCHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0163EE30, int32_t, InlinedArray_1_System_Runtime_InteropServices_GCHandle__get_Capacity, (InlinedArray_1_System_Runtime_InteropServices_GCHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016411E0, GCHandle, InlinedArray_1_System_Runtime_InteropServices_GCHandle__get_Item, (InlinedArray_1_System_Runtime_InteropServices_GCHandle___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01641280, void, InlinedArray_1_System_Runtime_InteropServices_GCHandle__set_Item, (InlinedArray_1_System_Runtime_InteropServices_GCHandle___Boxed * __this, int32_t index, GCHandle value, MethodInfo * method)); -DO_APP_FUNC(0x01642B90, void, InlinedArray_1_System_Int32___ctor, (InlinedArray_1_System_Int32___Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x01642C70, void, InlinedArray_1_System_Int32___ctor_1, (InlinedArray_1_System_Int32___Boxed * __this, IEnumerable_1_System_Int32_ * values, MethodInfo * method)); -DO_APP_FUNC(0x01642C00, void, InlinedArray_1_System_Int32___ctor_2, (InlinedArray_1_System_Int32___Boxed * __this, int32_t firstValue, Int32__Array * additionalValues, MethodInfo * method)); -DO_APP_FUNC(0x016435F0, int32_t, InlinedArray_1_System_Int32__Append, (InlinedArray_1_System_Int32___Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x01643A80, void, InlinedArray_1_System_Int32__Append_1, (InlinedArray_1_System_Int32___Boxed * __this, IEnumerable_1_System_Int32_ * values, MethodInfo * method)); -DO_APP_FUNC(0x01643770, int32_t, InlinedArray_1_System_Int32__AppendWithCapacity, (InlinedArray_1_System_Int32___Boxed * __this, int32_t value, int32_t capacityIncrement, MethodInfo * method)); -DO_APP_FUNC(0x01643840, void, InlinedArray_1_System_Int32__AssignWithCapacity, (InlinedArray_1_System_Int32___Boxed * __this, InlinedArray_1_System_Int32_ values, MethodInfo * method)); -DO_APP_FUNC(0x01643140, void, InlinedArray_1_System_Int32__Clear, (InlinedArray_1_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016431A0, void, InlinedArray_1_System_Int32__ClearWithCapacity, (InlinedArray_1_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016431F0, InlinedArray_1_System_Int32_, InlinedArray_1_System_Int32__Clone, (InlinedArray_1_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01644510, bool, InlinedArray_1_System_Int32__Contains, (InlinedArray_1_System_Int32___Boxed * __this, int32_t value, IEqualityComparer_1_System_Int32_ * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01644820, IEnumerator_1_System_Int32_ *, InlinedArray_1_System_Int32__GetEnumerator, (InlinedArray_1_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016434E0, int32_t, InlinedArray_1_System_Int32__IndexOf, (InlinedArray_1_System_Int32___Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x016445E0, void, InlinedArray_1_System_Int32__Merge, (InlinedArray_1_System_Int32___Boxed * __this, InlinedArray_1_System_Int32_ other, MethodInfo * method)); -DO_APP_FUNC(0x01643CA0, void, InlinedArray_1_System_Int32__Remove, (InlinedArray_1_System_Int32___Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x01644080, void, InlinedArray_1_System_Int32__RemoveAt, (InlinedArray_1_System_Int32___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01644300, void, InlinedArray_1_System_Int32__RemoveAtByMovingTailWithCapacity, (InlinedArray_1_System_Int32___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01643E80, void, InlinedArray_1_System_Int32__RemoveAtWithCapacity, (InlinedArray_1_System_Int32___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01644470, bool, InlinedArray_1_System_Int32__RemoveByMovingTailWithCapacity, (InlinedArray_1_System_Int32___Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x016432E0, void, InlinedArray_1_System_Int32__SetLength, (InlinedArray_1_System_Int32___Boxed * __this, int32_t size, MethodInfo * method)); -DO_APP_FUNC(0x016448F0, IEnumerator *, InlinedArray_1_System_Int32__System_Collections_IEnumerable_GetEnumerator, (InlinedArray_1_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01643450, Int32__Array *, InlinedArray_1_System_Int32__ToArray, (InlinedArray_1_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01642B70, int32_t, InlinedArray_1_System_Int32__get_Capacity, (InlinedArray_1_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01643000, int32_t, InlinedArray_1_System_Int32__get_Item, (InlinedArray_1_System_Int32___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x016430A0, void, InlinedArray_1_System_Int32__set_Item, (InlinedArray_1_System_Int32___Boxed * __this, int32_t index, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00C70C40, Object__Array *, InlinedArray_1_InternedString__ToArray, (InlinedArray_1_InternedString___Boxed * __this, Func_2_UnityEngine_InputSystem_Utilities_InternedString_Object_ * mapFunction, MethodInfo * method)); -DO_APP_FUNC(0x01644950, void, InlinedArray_1_InternedString___ctor, (InlinedArray_1_InternedString___Boxed * __this, InternedString value, MethodInfo * method)); -DO_APP_FUNC(0x01644AF0, void, InlinedArray_1_InternedString___ctor_1, (InlinedArray_1_InternedString___Boxed * __this, IEnumerable_1_UnityEngine_InputSystem_Utilities_InternedString_ * values, MethodInfo * method)); -DO_APP_FUNC(0x01644A10, void, InlinedArray_1_InternedString___ctor_2, (InlinedArray_1_InternedString___Boxed * __this, InternedString firstValue, InternedString__Array * additionalValues, MethodInfo * method)); -DO_APP_FUNC(0x016456B0, int32_t, InlinedArray_1_InternedString__Append, (InlinedArray_1_InternedString___Boxed * __this, InternedString value, MethodInfo * method)); +DO_APP_FUNC(0x0163FB30, void, InlinedArray_1_System_Collections_Generic_KeyValuePair_2__AssignWithCapacity, (InlinedArray_1_System_Collections_Generic_KeyValuePair_2_ * __this, InlinedArray_1_System_Collections_Generic_KeyValuePair_2_ values, MethodInfo * method)); +DO_APP_FUNC(0x0163F400, void, InlinedArray_1_System_Collections_Generic_KeyValuePair_2__Clear, (InlinedArray_1_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0163F460, void, InlinedArray_1_System_Collections_Generic_KeyValuePair_2__ClearWithCapacity, (InlinedArray_1_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0163F4C0, InlinedArray_1_System_Collections_Generic_KeyValuePair_2_, InlinedArray_1_System_Collections_Generic_KeyValuePair_2__Clone, (InlinedArray_1_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01640840, bool, InlinedArray_1_System_Collections_Generic_KeyValuePair_2__Contains, (InlinedArray_1_System_Collections_Generic_KeyValuePair_2_ * __this, KeyValuePair_2_System_Int32_System_Int32_ value, IEqualityComparer_1_KeyValuePair_2_System_Int32_System_Int32_ * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01640C50, IEnumerator_1_KeyValuePair_2_System_Int32_System_Int32_ *, InlinedArray_1_System_Collections_Generic_KeyValuePair_2__GetEnumerator, (InlinedArray_1_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0163F7B0, int32_t, InlinedArray_1_System_Collections_Generic_KeyValuePair_2__IndexOf, (InlinedArray_1_System_Collections_Generic_KeyValuePair_2_ * __this, KeyValuePair_2_System_Int32_System_Int32_ value, MethodInfo * method)); +DO_APP_FUNC(0x01640990, void, InlinedArray_1_System_Collections_Generic_KeyValuePair_2__Merge, (InlinedArray_1_System_Collections_Generic_KeyValuePair_2_ * __this, InlinedArray_1_System_Collections_Generic_KeyValuePair_2_ other, MethodInfo * method)); +DO_APP_FUNC(0x0163FFD0, void, InlinedArray_1_System_Collections_Generic_KeyValuePair_2__Remove, (InlinedArray_1_System_Collections_Generic_KeyValuePair_2_ * __this, KeyValuePair_2_System_Int32_System_Int32_ value, MethodInfo * method)); +DO_APP_FUNC(0x016403B0, void, InlinedArray_1_System_Collections_Generic_KeyValuePair_2__RemoveAt, (InlinedArray_1_System_Collections_Generic_KeyValuePair_2_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4AC8, InlinedArray_1_System_Collections_Generic_KeyValuePair_2__RemoveAt__MethodInfo); +DO_APP_FUNC(0x01640630, void, InlinedArray_1_System_Collections_Generic_KeyValuePair_2__RemoveAtByMovingTailWithCapacity, (InlinedArray_1_System_Collections_Generic_KeyValuePair_2_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4AC0, InlinedArray_1_System_Collections_Generic_KeyValuePair_2__RemoveAtByMovingTailWithCapacity__MethodInfo); +DO_APP_FUNC(0x016401B0, void, InlinedArray_1_System_Collections_Generic_KeyValuePair_2__RemoveAtWithCapacity, (InlinedArray_1_System_Collections_Generic_KeyValuePair_2_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4B60, InlinedArray_1_System_Collections_Generic_KeyValuePair_2__RemoveAtWithCapacity__MethodInfo); +DO_APP_FUNC(0x016407A0, bool, InlinedArray_1_System_Collections_Generic_KeyValuePair_2__RemoveByMovingTailWithCapacity, (InlinedArray_1_System_Collections_Generic_KeyValuePair_2_ * __this, KeyValuePair_2_System_Int32_System_Int32_ value, MethodInfo * method)); +DO_APP_FUNC(0x0163F5B0, void, InlinedArray_1_System_Collections_Generic_KeyValuePair_2__SetLength, (InlinedArray_1_System_Collections_Generic_KeyValuePair_2_ * __this, int32_t size, MethodInfo * method)); +DO_APP_FUNC(0x01640D30, IEnumerator *, InlinedArray_1_System_Collections_Generic_KeyValuePair_2__System_Collections_IEnumerable_GetEnumerator, (InlinedArray_1_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0163F720, KeyValuePair_2_System_Int32_System_Int32___Array *, InlinedArray_1_System_Collections_Generic_KeyValuePair_2__ToArray, (InlinedArray_1_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0163EE30, int32_t, InlinedArray_1_System_Collections_Generic_KeyValuePair_2__get_Capacity, (InlinedArray_1_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0163F2C0, KeyValuePair_2_System_Int32_System_Int32_, InlinedArray_1_System_Collections_Generic_KeyValuePair_2__get_Item, (InlinedArray_1_System_Collections_Generic_KeyValuePair_2_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4B78, InlinedArray_1_System_Collections_Generic_KeyValuePair_2__get_Item__MethodInfo); +DO_APP_FUNC(0x0163F360, void, InlinedArray_1_System_Collections_Generic_KeyValuePair_2__set_Item, (InlinedArray_1_System_Collections_Generic_KeyValuePair_2_ * __this, int32_t index, KeyValuePair_2_System_Int32_System_Int32_ value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4B50, InlinedArray_1_System_Collections_Generic_KeyValuePair_2__set_Item__MethodInfo); +DO_APP_FUNC(0x01640D70, void, InlinedArray_1_System_Runtime_InteropServices_GCHandle___ctor, (InlinedArray_1_System_Runtime_InteropServices_GCHandle_ * __this, GCHandle value, MethodInfo * method)); +DO_APP_FUNC(0x01640E50, void, InlinedArray_1_System_Runtime_InteropServices_GCHandle___ctor_1, (InlinedArray_1_System_Runtime_InteropServices_GCHandle_ * __this, IEnumerable_1_System_Runtime_InteropServices_GCHandle_ * values, MethodInfo * method)); +DO_APP_FUNC(0x01640DE0, void, InlinedArray_1_System_Runtime_InteropServices_GCHandle___ctor_2, (InlinedArray_1_System_Runtime_InteropServices_GCHandle_ * __this, GCHandle firstValue, GCHandle__Array * additionalValues, MethodInfo * method)); +DO_APP_FUNC(0x01641800, int32_t, InlinedArray_1_System_Runtime_InteropServices_GCHandle__Append, (InlinedArray_1_System_Runtime_InteropServices_GCHandle_ * __this, GCHandle value, MethodInfo * method)); +DO_APP_FUNC(0x01641CD0, void, InlinedArray_1_System_Runtime_InteropServices_GCHandle__Append_1, (InlinedArray_1_System_Runtime_InteropServices_GCHandle_ * __this, IEnumerable_1_System_Runtime_InteropServices_GCHandle_ * values, MethodInfo * method)); +DO_APP_FUNC(0x01641980, int32_t, InlinedArray_1_System_Runtime_InteropServices_GCHandle__AppendWithCapacity, (InlinedArray_1_System_Runtime_InteropServices_GCHandle_ * __this, GCHandle value, int32_t capacityIncrement, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2530, InlinedArray_1_System_Runtime_InteropServices_GCHandle__AppendWithCapacity__MethodInfo); +DO_APP_FUNC(0x01641A50, void, InlinedArray_1_System_Runtime_InteropServices_GCHandle__AssignWithCapacity, (InlinedArray_1_System_Runtime_InteropServices_GCHandle_ * __this, InlinedArray_1_System_Runtime_InteropServices_GCHandle_ values, MethodInfo * method)); +DO_APP_FUNC(0x01641320, void, InlinedArray_1_System_Runtime_InteropServices_GCHandle__Clear, (InlinedArray_1_System_Runtime_InteropServices_GCHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01641380, void, InlinedArray_1_System_Runtime_InteropServices_GCHandle__ClearWithCapacity, (InlinedArray_1_System_Runtime_InteropServices_GCHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016413E0, InlinedArray_1_System_Runtime_InteropServices_GCHandle_, InlinedArray_1_System_Runtime_InteropServices_GCHandle__Clone, (InlinedArray_1_System_Runtime_InteropServices_GCHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01642760, bool, InlinedArray_1_System_Runtime_InteropServices_GCHandle__Contains, (InlinedArray_1_System_Runtime_InteropServices_GCHandle_ * __this, GCHandle value, IEqualityComparer_1_System_Runtime_InteropServices_GCHandle_ * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01640C50, IEnumerator_1_System_Runtime_InteropServices_GCHandle_ *, InlinedArray_1_System_Runtime_InteropServices_GCHandle__GetEnumerator, (InlinedArray_1_System_Runtime_InteropServices_GCHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016416D0, int32_t, InlinedArray_1_System_Runtime_InteropServices_GCHandle__IndexOf, (InlinedArray_1_System_Runtime_InteropServices_GCHandle_ * __this, GCHandle value, MethodInfo * method)); +DO_APP_FUNC(0x016428B0, void, InlinedArray_1_System_Runtime_InteropServices_GCHandle__Merge, (InlinedArray_1_System_Runtime_InteropServices_GCHandle_ * __this, InlinedArray_1_System_Runtime_InteropServices_GCHandle_ other, MethodInfo * method)); +DO_APP_FUNC(0x01641EF0, void, InlinedArray_1_System_Runtime_InteropServices_GCHandle__Remove, (InlinedArray_1_System_Runtime_InteropServices_GCHandle_ * __this, GCHandle value, MethodInfo * method)); +DO_APP_FUNC(0x016422D0, void, InlinedArray_1_System_Runtime_InteropServices_GCHandle__RemoveAt, (InlinedArray_1_System_Runtime_InteropServices_GCHandle_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4AE8, InlinedArray_1_System_Runtime_InteropServices_GCHandle__RemoveAt__MethodInfo); +DO_APP_FUNC(0x01642550, void, InlinedArray_1_System_Runtime_InteropServices_GCHandle__RemoveAtByMovingTailWithCapacity, (InlinedArray_1_System_Runtime_InteropServices_GCHandle_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4B00, InlinedArray_1_System_Runtime_InteropServices_GCHandle__RemoveAtByMovingTailWithCapacity__MethodInfo); +DO_APP_FUNC(0x016420D0, void, InlinedArray_1_System_Runtime_InteropServices_GCHandle__RemoveAtWithCapacity, (InlinedArray_1_System_Runtime_InteropServices_GCHandle_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4AF8, InlinedArray_1_System_Runtime_InteropServices_GCHandle__RemoveAtWithCapacity__MethodInfo); +DO_APP_FUNC(0x016426C0, bool, InlinedArray_1_System_Runtime_InteropServices_GCHandle__RemoveByMovingTailWithCapacity, (InlinedArray_1_System_Runtime_InteropServices_GCHandle_ * __this, GCHandle value, MethodInfo * method)); +DO_APP_FUNC(0x016414D0, void, InlinedArray_1_System_Runtime_InteropServices_GCHandle__SetLength, (InlinedArray_1_System_Runtime_InteropServices_GCHandle_ * __this, int32_t size, MethodInfo * method)); +DO_APP_FUNC(0x01640D30, IEnumerator *, InlinedArray_1_System_Runtime_InteropServices_GCHandle__System_Collections_IEnumerable_GetEnumerator, (InlinedArray_1_System_Runtime_InteropServices_GCHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01641640, GCHandle__Array *, InlinedArray_1_System_Runtime_InteropServices_GCHandle__ToArray, (InlinedArray_1_System_Runtime_InteropServices_GCHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0163EE30, int32_t, InlinedArray_1_System_Runtime_InteropServices_GCHandle__get_Capacity, (InlinedArray_1_System_Runtime_InteropServices_GCHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016411E0, GCHandle, InlinedArray_1_System_Runtime_InteropServices_GCHandle__get_Item, (InlinedArray_1_System_Runtime_InteropServices_GCHandle_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4AA8, InlinedArray_1_System_Runtime_InteropServices_GCHandle__get_Item__MethodInfo); +DO_APP_FUNC(0x01641280, void, InlinedArray_1_System_Runtime_InteropServices_GCHandle__set_Item, (InlinedArray_1_System_Runtime_InteropServices_GCHandle_ * __this, int32_t index, GCHandle value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4AA0, InlinedArray_1_System_Runtime_InteropServices_GCHandle__set_Item__MethodInfo); +DO_APP_FUNC(0x01642B90, void, InlinedArray_1_System_Int32___ctor, (InlinedArray_1_System_Int32_ * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x01642C70, void, InlinedArray_1_System_Int32___ctor_1, (InlinedArray_1_System_Int32_ * __this, IEnumerable_1_System_Int32_ * values, MethodInfo * method)); +DO_APP_FUNC(0x01642C00, void, InlinedArray_1_System_Int32___ctor_2, (InlinedArray_1_System_Int32_ * __this, int32_t firstValue, Int32__Array * additionalValues, MethodInfo * method)); +DO_APP_FUNC(0x016435F0, int32_t, InlinedArray_1_System_Int32__Append, (InlinedArray_1_System_Int32_ * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x01643A80, void, InlinedArray_1_System_Int32__Append_1, (InlinedArray_1_System_Int32_ * __this, IEnumerable_1_System_Int32_ * values, MethodInfo * method)); +DO_APP_FUNC(0x01643770, int32_t, InlinedArray_1_System_Int32__AppendWithCapacity, (InlinedArray_1_System_Int32_ * __this, int32_t value, int32_t capacityIncrement, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF568, InlinedArray_1_System_Int32__AppendWithCapacity__MethodInfo); +DO_APP_FUNC(0x01643840, void, InlinedArray_1_System_Int32__AssignWithCapacity, (InlinedArray_1_System_Int32_ * __this, InlinedArray_1_System_Int32_ values, MethodInfo * method)); +DO_APP_FUNC(0x01643140, void, InlinedArray_1_System_Int32__Clear, (InlinedArray_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016431A0, void, InlinedArray_1_System_Int32__ClearWithCapacity, (InlinedArray_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016431F0, InlinedArray_1_System_Int32_, InlinedArray_1_System_Int32__Clone, (InlinedArray_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01644510, bool, InlinedArray_1_System_Int32__Contains, (InlinedArray_1_System_Int32_ * __this, int32_t value, IEqualityComparer_1_System_Int32_ * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01644820, IEnumerator_1_System_Int32_ *, InlinedArray_1_System_Int32__GetEnumerator, (InlinedArray_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016434E0, int32_t, InlinedArray_1_System_Int32__IndexOf, (InlinedArray_1_System_Int32_ * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x016445E0, void, InlinedArray_1_System_Int32__Merge, (InlinedArray_1_System_Int32_ * __this, InlinedArray_1_System_Int32_ other, MethodInfo * method)); +DO_APP_FUNC(0x01643CA0, void, InlinedArray_1_System_Int32__Remove, (InlinedArray_1_System_Int32_ * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x01644080, void, InlinedArray_1_System_Int32__RemoveAt, (InlinedArray_1_System_Int32_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4A58, InlinedArray_1_System_Int32__RemoveAt__MethodInfo); +DO_APP_FUNC(0x01644300, void, InlinedArray_1_System_Int32__RemoveAtByMovingTailWithCapacity, (InlinedArray_1_System_Int32_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4A50, InlinedArray_1_System_Int32__RemoveAtByMovingTailWithCapacity__MethodInfo); +DO_APP_FUNC(0x01643E80, void, InlinedArray_1_System_Int32__RemoveAtWithCapacity, (InlinedArray_1_System_Int32_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4A48, InlinedArray_1_System_Int32__RemoveAtWithCapacity__MethodInfo); +DO_APP_FUNC(0x01644470, bool, InlinedArray_1_System_Int32__RemoveByMovingTailWithCapacity, (InlinedArray_1_System_Int32_ * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x016432E0, void, InlinedArray_1_System_Int32__SetLength, (InlinedArray_1_System_Int32_ * __this, int32_t size, MethodInfo * method)); +DO_APP_FUNC(0x016448F0, IEnumerator *, InlinedArray_1_System_Int32__System_Collections_IEnumerable_GetEnumerator, (InlinedArray_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01643450, Int32__Array *, InlinedArray_1_System_Int32__ToArray, (InlinedArray_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01642B70, int32_t, InlinedArray_1_System_Int32__get_Capacity, (InlinedArray_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01643000, int32_t, InlinedArray_1_System_Int32__get_Item, (InlinedArray_1_System_Int32_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4AD8, InlinedArray_1_System_Int32__get_Item__MethodInfo); +DO_APP_FUNC(0x016430A0, void, InlinedArray_1_System_Int32__set_Item, (InlinedArray_1_System_Int32_ * __this, int32_t index, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4AE0, InlinedArray_1_System_Int32__set_Item__MethodInfo); +DO_APP_FUNC(0x00C70C40, Object__Array *, InlinedArray_1_InternedString__ToArray, (InlinedArray_1_InternedString_ * __this, Func_2_UnityEngine_InputSystem_Utilities_InternedString_Object_ * mapFunction, MethodInfo * method)); +DO_APP_FUNC(0x01644950, void, InlinedArray_1_InternedString___ctor, (InlinedArray_1_InternedString_ * __this, InternedString value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA968, InlinedArray_1_InternedString___ctor__MethodInfo); +DO_APP_FUNC(0x01644AF0, void, InlinedArray_1_InternedString___ctor_1, (InlinedArray_1_InternedString_ * __this, IEnumerable_1_UnityEngine_InputSystem_Utilities_InternedString_ * values, MethodInfo * method)); +DO_APP_FUNC(0x01644A10, void, InlinedArray_1_InternedString___ctor_2, (InlinedArray_1_InternedString_ * __this, InternedString firstValue, InternedString__Array * additionalValues, MethodInfo * method)); +DO_APP_FUNC(0x016456B0, int32_t, InlinedArray_1_InternedString__Append, (InlinedArray_1_InternedString_ * __this, InternedString value, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8BCF8, InlinedArray_1_InternedString__Append__MethodInfo); -DO_APP_FUNC(0x01645D70, void, InlinedArray_1_InternedString__Append_1, (InlinedArray_1_InternedString___Boxed * __this, IEnumerable_1_UnityEngine_InputSystem_Utilities_InternedString_ * values, MethodInfo * method)); -DO_APP_FUNC(0x01645960, int32_t, InlinedArray_1_InternedString__AppendWithCapacity, (InlinedArray_1_InternedString___Boxed * __this, InternedString value, int32_t capacityIncrement, MethodInfo * method)); -DO_APP_FUNC(0x01645A90, void, InlinedArray_1_InternedString__AssignWithCapacity, (InlinedArray_1_InternedString___Boxed * __this, InlinedArray_1_InternedString_ values, MethodInfo * method)); -DO_APP_FUNC(0x01645090, void, InlinedArray_1_InternedString__Clear, (InlinedArray_1_InternedString___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01645D70, void, InlinedArray_1_InternedString__Append_1, (InlinedArray_1_InternedString_ * __this, IEnumerable_1_UnityEngine_InputSystem_Utilities_InternedString_ * values, MethodInfo * method)); +DO_APP_FUNC(0x01645960, int32_t, InlinedArray_1_InternedString__AppendWithCapacity, (InlinedArray_1_InternedString_ * __this, InternedString value, int32_t capacityIncrement, MethodInfo * method)); +DO_APP_FUNC(0x01645A90, void, InlinedArray_1_InternedString__AssignWithCapacity, (InlinedArray_1_InternedString_ * __this, InlinedArray_1_InternedString_ values, MethodInfo * method)); +DO_APP_FUNC(0x01645090, void, InlinedArray_1_InternedString__Clear, (InlinedArray_1_InternedString_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8BA78, InlinedArray_1_InternedString__Clear__MethodInfo); -DO_APP_FUNC(0x016450F0, void, InlinedArray_1_InternedString__ClearWithCapacity, (InlinedArray_1_InternedString___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016451A0, InlinedArray_1_InternedString_, InlinedArray_1_InternedString__Clone, (InlinedArray_1_InternedString___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01646970, bool, InlinedArray_1_InternedString__Contains, (InlinedArray_1_InternedString___Boxed * __this, InternedString value, IEqualityComparer_1_UnityEngine_InputSystem_Utilities_InternedString_ * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01646DE0, IEnumerator_1_UnityEngine_InputSystem_Utilities_InternedString_ *, InlinedArray_1_InternedString__GetEnumerator, (InlinedArray_1_InternedString___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01645560, int32_t, InlinedArray_1_InternedString__IndexOf, (InlinedArray_1_InternedString___Boxed * __this, InternedString value, MethodInfo * method)); -DO_APP_FUNC(0x01646AD0, void, InlinedArray_1_InternedString__Merge, (InlinedArray_1_InternedString___Boxed * __this, InlinedArray_1_InternedString_ other, MethodInfo * method)); +DO_APP_FUNC(0x016450F0, void, InlinedArray_1_InternedString__ClearWithCapacity, (InlinedArray_1_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016451A0, InlinedArray_1_InternedString_, InlinedArray_1_InternedString__Clone, (InlinedArray_1_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01646970, bool, InlinedArray_1_InternedString__Contains, (InlinedArray_1_InternedString_ * __this, InternedString value, IEqualityComparer_1_UnityEngine_InputSystem_Utilities_InternedString_ * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01646DE0, IEnumerator_1_UnityEngine_InputSystem_Utilities_InternedString_ *, InlinedArray_1_InternedString__GetEnumerator, (InlinedArray_1_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01645560, int32_t, InlinedArray_1_InternedString__IndexOf, (InlinedArray_1_InternedString_ * __this, InternedString value, MethodInfo * method)); +DO_APP_FUNC(0x01646AD0, void, InlinedArray_1_InternedString__Merge, (InlinedArray_1_InternedString_ * __this, InlinedArray_1_InternedString_ other, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8BCD8, InlinedArray_1_InternedString__Merge__MethodInfo); -DO_APP_FUNC(0x01645FC0, void, InlinedArray_1_InternedString__Remove, (InlinedArray_1_InternedString___Boxed * __this, InternedString value, MethodInfo * method)); -DO_APP_FUNC(0x01646440, void, InlinedArray_1_InternedString__RemoveAt, (InlinedArray_1_InternedString___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x016466E0, void, InlinedArray_1_InternedString__RemoveAtByMovingTailWithCapacity, (InlinedArray_1_InternedString___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x016461D0, void, InlinedArray_1_InternedString__RemoveAtWithCapacity, (InlinedArray_1_InternedString___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x016468C0, bool, InlinedArray_1_InternedString__RemoveByMovingTailWithCapacity, (InlinedArray_1_InternedString___Boxed * __this, InternedString value, MethodInfo * method)); -DO_APP_FUNC(0x01645300, void, InlinedArray_1_InternedString__SetLength, (InlinedArray_1_InternedString___Boxed * __this, int32_t size, MethodInfo * method)); -DO_APP_FUNC(0x01646EB0, IEnumerator *, InlinedArray_1_InternedString__System_Collections_IEnumerable_GetEnumerator, (InlinedArray_1_InternedString___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016454D0, InternedString__Array *, InlinedArray_1_InternedString__ToArray_1, (InlinedArray_1_InternedString___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01644930, int32_t, InlinedArray_1_InternedString__get_Capacity, (InlinedArray_1_InternedString___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01644EB0, InternedString, InlinedArray_1_InternedString__get_Item, (InlinedArray_1_InternedString___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01644F70, void, InlinedArray_1_InternedString__set_Item, (InlinedArray_1_InternedString___Boxed * __this, int32_t index, InternedString value, MethodInfo * method)); -DO_APP_FUNC(0x00C70E10, Object__Array *, InlinedArray_1_System_Object__ToArray, (InlinedArray_1_System_Object___Boxed * __this, Func_2_Object_Object_ * mapFunction, MethodInfo * method)); -DO_APP_FUNC(0x01646EF0, void, InlinedArray_1_System_Object___ctor, (InlinedArray_1_System_Object___Boxed * __this, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x01647090, void, InlinedArray_1_System_Object___ctor_1, (InlinedArray_1_System_Object___Boxed * __this, IEnumerable_1_System_Object_ * values, MethodInfo * method)); -DO_APP_FUNC(0x01646FB0, void, InlinedArray_1_System_Object___ctor_2, (InlinedArray_1_System_Object___Boxed * __this, Object * firstValue, Object__Array * additionalValues, MethodInfo * method)); -DO_APP_FUNC(0x01647A00, int32_t, InlinedArray_1_System_Object__Append, (InlinedArray_1_System_Object___Boxed * __this, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x01647FD0, void, InlinedArray_1_System_Object__Append_1, (InlinedArray_1_System_Object___Boxed * __this, IEnumerable_1_System_Object_ * values, MethodInfo * method)); -DO_APP_FUNC(0x01647BD0, int32_t, InlinedArray_1_System_Object__AppendWithCapacity, (InlinedArray_1_System_Object___Boxed * __this, Object * value, int32_t capacityIncrement, MethodInfo * method)); -DO_APP_FUNC(0x01647CF0, void, InlinedArray_1_System_Object__AssignWithCapacity, (InlinedArray_1_System_Object___Boxed * __this, InlinedArray_1_System_Object_ values, MethodInfo * method)); -DO_APP_FUNC(0x01641320, void, InlinedArray_1_System_Object__Clear, (InlinedArray_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01647560, void, InlinedArray_1_System_Object__ClearWithCapacity, (InlinedArray_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01647610, InlinedArray_1_System_Object_, InlinedArray_1_System_Object__Clone, (InlinedArray_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01648AA0, bool, InlinedArray_1_System_Object__Contains, (InlinedArray_1_System_Object___Boxed * __this, Object * value, IEqualityComparer_1_System_Object_ * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01648D70, IEnumerator_1_System_Object_ *, InlinedArray_1_System_Object__GetEnumerator, (InlinedArray_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016478E0, int32_t, InlinedArray_1_System_Object__IndexOf, (InlinedArray_1_System_Object___Boxed * __this, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x01648B80, void, InlinedArray_1_System_Object__Merge, (InlinedArray_1_System_Object___Boxed * __this, InlinedArray_1_System_Object_ other, MethodInfo * method)); -DO_APP_FUNC(0x016481F0, void, InlinedArray_1_System_Object__Remove, (InlinedArray_1_System_Object___Boxed * __this, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x016485F0, void, InlinedArray_1_System_Object__RemoveAt, (InlinedArray_1_System_Object___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01648890, void, InlinedArray_1_System_Object__RemoveAtByMovingTailWithCapacity, (InlinedArray_1_System_Object___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x016483D0, void, InlinedArray_1_System_Object__RemoveAtWithCapacity, (InlinedArray_1_System_Object___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01648A00, bool, InlinedArray_1_System_Object__RemoveByMovingTailWithCapacity, (InlinedArray_1_System_Object___Boxed * __this, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x01647770, void, InlinedArray_1_System_Object__SetLength, (InlinedArray_1_System_Object___Boxed * __this, int32_t size, MethodInfo * method)); -DO_APP_FUNC(0x01648E50, IEnumerator *, InlinedArray_1_System_Object__System_Collections_IEnumerable_GetEnumerator, (InlinedArray_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01647850, Object__Array *, InlinedArray_1_System_Object__ToArray_1, (InlinedArray_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0163EE30, int32_t, InlinedArray_1_System_Object__get_Capacity, (InlinedArray_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01647420, Object *, InlinedArray_1_System_Object__get_Item, (InlinedArray_1_System_Object___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x016474C0, void, InlinedArray_1_System_Object__set_Item, (InlinedArray_1_System_Object___Boxed * __this, int32_t index, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x01648EB0, void, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel___ctor, (InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel___Boxed * __this, PointerModel value, MethodInfo * method)); -DO_APP_FUNC(0x01649140, void, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel___ctor_1, (InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel___Boxed * __this, IEnumerable_1_UnityEngine_InputSystem_UI_PointerModel_ * values, MethodInfo * method)); -DO_APP_FUNC(0x01648FF0, void, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel___ctor_2, (InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel___Boxed * __this, PointerModel firstValue, PointerModel__Array * additionalValues, MethodInfo * method)); -DO_APP_FUNC(0x0164A4F0, int32_t, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel__Append, (InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel___Boxed * __this, PointerModel value, MethodInfo * method)); -DO_APP_FUNC(0x0164AFF0, void, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel__Append_1, (InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel___Boxed * __this, IEnumerable_1_UnityEngine_InputSystem_UI_PointerModel_ * values, MethodInfo * method)); -DO_APP_FUNC(0x0164A850, int32_t, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel__AppendWithCapacity, (InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel___Boxed * __this, PointerModel value, int32_t capacityIncrement, MethodInfo * method)); -DO_APP_FUNC(0x0164AA50, void, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel__AssignWithCapacity, (InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel___Boxed * __this, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel_ values, MethodInfo * method)); -DO_APP_FUNC(0x01649950, void, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel__Clear, (InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016499D0, void, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel__ClearWithCapacity, (InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01649B50, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel_, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel__Clone, (InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0164C180, bool, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel__Contains, (InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel___Boxed * __this, PointerModel value, IEqualityComparer_1_UnityEngine_InputSystem_UI_PointerModel_ * comparer, MethodInfo * method)); -DO_APP_FUNC(0x0164C850, IEnumerator_1_UnityEngine_InputSystem_UI_PointerModel_ *, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel__GetEnumerator, (InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0164A1D0, int32_t, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel__IndexOf, (InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel___Boxed * __this, PointerModel value, MethodInfo * method)); -DO_APP_FUNC(0x0164C440, void, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel__Merge, (InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel___Boxed * __this, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel_ other, MethodInfo * method)); -DO_APP_FUNC(0x0164B320, void, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel__Remove, (InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel___Boxed * __this, PointerModel value, MethodInfo * method)); -DO_APP_FUNC(0x0164BA90, void, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel__RemoveAt, (InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x0164BDD0, void, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel__RemoveAtByMovingTailWithCapacity, (InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x0164B6F0, void, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel__RemoveAtWithCapacity, (InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x0164C070, bool, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel__RemoveByMovingTailWithCapacity, (InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel___Boxed * __this, PointerModel value, MethodInfo * method)); -DO_APP_FUNC(0x01649DC0, void, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel__SetLength, (InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel___Boxed * __this, int32_t size, MethodInfo * method)); -DO_APP_FUNC(0x0164CA30, IEnumerator *, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel__System_Collections_IEnumerable_GetEnumerator, (InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0164A040, PointerModel__Array *, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel__ToArray, (InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01648E90, int32_t, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel__get_Capacity, (InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01649670, PointerModel, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel__get_Item, (InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01649790, void, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel__set_Item, (InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel___Boxed * __this, int32_t index, PointerModel value, MethodInfo * method)); -DO_APP_FUNC(0x00C70F50, Object__Array *, InlinedArray_1_Substring__ToArray, (InlinedArray_1_Substring___Boxed * __this, Func_2_UnityEngine_InputSystem_Utilities_Substring_Object_ * mapFunction, MethodInfo * method)); -DO_APP_FUNC(0x01644950, void, InlinedArray_1_Substring___ctor, (InlinedArray_1_Substring___Boxed * __this, Substring value, MethodInfo * method)); -DO_APP_FUNC(0x0164CA70, void, InlinedArray_1_Substring___ctor_1, (InlinedArray_1_Substring___Boxed * __this, IEnumerable_1_UnityEngine_InputSystem_Utilities_Substring_ * values, MethodInfo * method)); -DO_APP_FUNC(0x01644A10, void, InlinedArray_1_Substring___ctor_2, (InlinedArray_1_Substring___Boxed * __this, Substring firstValue, Substring__Array * additionalValues, MethodInfo * method)); -DO_APP_FUNC(0x016456B0, int32_t, InlinedArray_1_Substring__Append, (InlinedArray_1_Substring___Boxed * __this, Substring value, MethodInfo * method)); -DO_APP_FUNC(0x0164D1E0, void, InlinedArray_1_Substring__Append_1, (InlinedArray_1_Substring___Boxed * __this, IEnumerable_1_UnityEngine_InputSystem_Utilities_Substring_ * values, MethodInfo * method)); -DO_APP_FUNC(0x01645960, int32_t, InlinedArray_1_Substring__AppendWithCapacity, (InlinedArray_1_Substring___Boxed * __this, Substring value, int32_t capacityIncrement, MethodInfo * method)); -DO_APP_FUNC(0x01645A90, void, InlinedArray_1_Substring__AssignWithCapacity, (InlinedArray_1_Substring___Boxed * __this, InlinedArray_1_Substring_ values, MethodInfo * method)); -DO_APP_FUNC(0x01645090, void, InlinedArray_1_Substring__Clear, (InlinedArray_1_Substring___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016450F0, void, InlinedArray_1_Substring__ClearWithCapacity, (InlinedArray_1_Substring___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016451A0, InlinedArray_1_Substring_, InlinedArray_1_Substring__Clone, (InlinedArray_1_Substring___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0164DDE0, bool, InlinedArray_1_Substring__Contains, (InlinedArray_1_Substring___Boxed * __this, Substring value, IEqualityComparer_1_UnityEngine_InputSystem_Utilities_Substring_ * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01646DE0, IEnumerator_1_UnityEngine_InputSystem_Utilities_Substring_ *, InlinedArray_1_Substring__GetEnumerator, (InlinedArray_1_Substring___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01645560, int32_t, InlinedArray_1_Substring__IndexOf, (InlinedArray_1_Substring___Boxed * __this, Substring value, MethodInfo * method)); -DO_APP_FUNC(0x0164DF40, void, InlinedArray_1_Substring__Merge, (InlinedArray_1_Substring___Boxed * __this, InlinedArray_1_Substring_ other, MethodInfo * method)); -DO_APP_FUNC(0x0164D430, void, InlinedArray_1_Substring__Remove, (InlinedArray_1_Substring___Boxed * __this, Substring value, MethodInfo * method)); -DO_APP_FUNC(0x0164D8B0, void, InlinedArray_1_Substring__RemoveAt, (InlinedArray_1_Substring___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x0164DB50, void, InlinedArray_1_Substring__RemoveAtByMovingTailWithCapacity, (InlinedArray_1_Substring___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x0164D640, void, InlinedArray_1_Substring__RemoveAtWithCapacity, (InlinedArray_1_Substring___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x0164DD30, bool, InlinedArray_1_Substring__RemoveByMovingTailWithCapacity, (InlinedArray_1_Substring___Boxed * __this, Substring value, MethodInfo * method)); -DO_APP_FUNC(0x0164D010, void, InlinedArray_1_Substring__SetLength, (InlinedArray_1_Substring___Boxed * __this, int32_t size, MethodInfo * method)); -DO_APP_FUNC(0x01646EB0, IEnumerator *, InlinedArray_1_Substring__System_Collections_IEnumerable_GetEnumerator, (InlinedArray_1_Substring___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016454D0, Substring__Array *, InlinedArray_1_Substring__ToArray_1, (InlinedArray_1_Substring___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01644930, int32_t, InlinedArray_1_Substring__get_Capacity, (InlinedArray_1_Substring___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0164CE30, Substring, InlinedArray_1_Substring__get_Item, (InlinedArray_1_Substring___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x0164CEF0, void, InlinedArray_1_Substring__set_Item, (InlinedArray_1_Substring___Boxed * __this, int32_t index, Substring value, MethodInfo * method)); -DO_APP_FUNC(0x01640D70, void, InlinedArray_1_System_UInt64___ctor, (InlinedArray_1_System_UInt64___Boxed * __this, uint64_t value, MethodInfo * method)); -DO_APP_FUNC(0x0164E250, void, InlinedArray_1_System_UInt64___ctor_1, (InlinedArray_1_System_UInt64___Boxed * __this, IEnumerable_1_System_UInt64_ * values, MethodInfo * method)); -DO_APP_FUNC(0x01640DE0, void, InlinedArray_1_System_UInt64___ctor_2, (InlinedArray_1_System_UInt64___Boxed * __this, uint64_t firstValue, UInt64__Array * additionalValues, MethodInfo * method)); -DO_APP_FUNC(0x0164E890, int32_t, InlinedArray_1_System_UInt64__Append, (InlinedArray_1_System_UInt64___Boxed * __this, uint64_t value, MethodInfo * method)); -DO_APP_FUNC(0x0164ED60, void, InlinedArray_1_System_UInt64__Append_1, (InlinedArray_1_System_UInt64___Boxed * __this, IEnumerable_1_System_UInt64_ * values, MethodInfo * method)); -DO_APP_FUNC(0x0164EA10, int32_t, InlinedArray_1_System_UInt64__AppendWithCapacity, (InlinedArray_1_System_UInt64___Boxed * __this, uint64_t value, int32_t capacityIncrement, MethodInfo * method)); -DO_APP_FUNC(0x0164EAE0, void, InlinedArray_1_System_UInt64__AssignWithCapacity, (InlinedArray_1_System_UInt64___Boxed * __this, InlinedArray_1_System_UInt64_ values, MethodInfo * method)); -DO_APP_FUNC(0x01641320, void, InlinedArray_1_System_UInt64__Clear, (InlinedArray_1_System_UInt64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01641380, void, InlinedArray_1_System_UInt64__ClearWithCapacity, (InlinedArray_1_System_UInt64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016413E0, InlinedArray_1_System_UInt64_, InlinedArray_1_System_UInt64__Clone, (InlinedArray_1_System_UInt64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0164F7F0, bool, InlinedArray_1_System_UInt64__Contains, (InlinedArray_1_System_UInt64___Boxed * __this, uint64_t value, IEqualityComparer_1_System_UInt64_ * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01640C50, IEnumerator_1_System_UInt64_ *, InlinedArray_1_System_UInt64__GetEnumerator, (InlinedArray_1_System_UInt64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016478E0, int32_t, InlinedArray_1_System_UInt64__IndexOf, (InlinedArray_1_System_UInt64___Boxed * __this, uint64_t value, MethodInfo * method)); -DO_APP_FUNC(0x0164F8C0, void, InlinedArray_1_System_UInt64__Merge, (InlinedArray_1_System_UInt64___Boxed * __this, InlinedArray_1_System_UInt64_ other, MethodInfo * method)); -DO_APP_FUNC(0x0164EF80, void, InlinedArray_1_System_UInt64__Remove, (InlinedArray_1_System_UInt64___Boxed * __this, uint64_t value, MethodInfo * method)); -DO_APP_FUNC(0x0164F360, void, InlinedArray_1_System_UInt64__RemoveAt, (InlinedArray_1_System_UInt64___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x0164F5E0, void, InlinedArray_1_System_UInt64__RemoveAtByMovingTailWithCapacity, (InlinedArray_1_System_UInt64___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x0164F160, void, InlinedArray_1_System_UInt64__RemoveAtWithCapacity, (InlinedArray_1_System_UInt64___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x0164F750, bool, InlinedArray_1_System_UInt64__RemoveByMovingTailWithCapacity, (InlinedArray_1_System_UInt64___Boxed * __this, uint64_t value, MethodInfo * method)); -DO_APP_FUNC(0x0164E720, void, InlinedArray_1_System_UInt64__SetLength, (InlinedArray_1_System_UInt64___Boxed * __this, int32_t size, MethodInfo * method)); -DO_APP_FUNC(0x01640D30, IEnumerator *, InlinedArray_1_System_UInt64__System_Collections_IEnumerable_GetEnumerator, (InlinedArray_1_System_UInt64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01647850, UInt64__Array *, InlinedArray_1_System_UInt64__ToArray, (InlinedArray_1_System_UInt64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0163EE30, int32_t, InlinedArray_1_System_UInt64__get_Capacity, (InlinedArray_1_System_UInt64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0164E5E0, uint64_t, InlinedArray_1_System_UInt64__get_Item, (InlinedArray_1_System_UInt64___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x0164E680, void, InlinedArray_1_System_UInt64__set_Item, (InlinedArray_1_System_UInt64___Boxed * __this, int32_t index, uint64_t value, MethodInfo * method)); -DO_APP_FUNC(0x0164FB40, void, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout___ctor, (InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout___Boxed * __this, InputManager_StateChangeMonitorTimeout value, MethodInfo * method)); -DO_APP_FUNC(0x0164FD00, void, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout___ctor_1, (InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout___Boxed * __this, IEnumerable_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout_ * values, MethodInfo * method)); -DO_APP_FUNC(0x0164FC10, void, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout___ctor_2, (InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout___Boxed * __this, InputManager_StateChangeMonitorTimeout firstValue, InputManager_StateChangeMonitorTimeout__Array * additionalValues, MethodInfo * method)); -DO_APP_FUNC(0x016509B0, int32_t, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__Append, (InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout___Boxed * __this, InputManager_StateChangeMonitorTimeout value, MethodInfo * method)); -DO_APP_FUNC(0x016510F0, void, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__Append_1, (InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout___Boxed * __this, IEnumerable_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout_ * values, MethodInfo * method)); -DO_APP_FUNC(0x01650C50, int32_t, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__AppendWithCapacity, (InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout___Boxed * __this, InputManager_StateChangeMonitorTimeout value, int32_t capacityIncrement, MethodInfo * method)); -DO_APP_FUNC(0x01650D90, void, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__AssignWithCapacity, (InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout___Boxed * __this, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout_ values, MethodInfo * method)); -DO_APP_FUNC(0x016502C0, void, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__Clear, (InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01650330, void, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__ClearWithCapacity, (InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01650420, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout_, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__Clone, (InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01651D90, bool, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__Contains, (InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout___Boxed * __this, InputManager_StateChangeMonitorTimeout value, IEqualityComparer_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout_ * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01652320, IEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout_ *, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__GetEnumerator, (InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016507F0, int32_t, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__IndexOf, (InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout___Boxed * __this, InputManager_StateChangeMonitorTimeout value, MethodInfo * method)); -DO_APP_FUNC(0x01651F50, void, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__Merge, (InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout___Boxed * __this, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout_ other, MethodInfo * method)); -DO_APP_FUNC(0x01651370, void, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__Remove, (InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout___Boxed * __this, InputManager_StateChangeMonitorTimeout value, MethodInfo * method)); -DO_APP_FUNC(0x01651840, void, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__RemoveAt, (InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01651B00, void, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__RemoveAtByMovingTailWithCapacity, (InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x016515E0, void, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__RemoveAtWithCapacity, (InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01651CD0, bool, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__RemoveByMovingTailWithCapacity, (InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout___Boxed * __this, InputManager_StateChangeMonitorTimeout value, MethodInfo * method)); -DO_APP_FUNC(0x01650590, void, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__SetLength, (InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout___Boxed * __this, int32_t size, MethodInfo * method)); -DO_APP_FUNC(0x01652420, IEnumerator *, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__System_Collections_IEnumerable_GetEnumerator, (InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01650730, InputManager_StateChangeMonitorTimeout__Array *, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__ToArray, (InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0164FB20, int32_t, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__get_Capacity, (InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016500F0, InputManager_StateChangeMonitorTimeout, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__get_Item, (InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x016501E0, void, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__set_Item, (InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout___Boxed * __this, int32_t index, InputManager_StateChangeMonitorTimeout value, MethodInfo * method)); -DO_APP_FUNC(0x01644950, void, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection___ctor, (InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection___Boxed * __this, InputUser_OngoingAccountSelection value, MethodInfo * method)); -DO_APP_FUNC(0x01652460, void, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection___ctor_1, (InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection___Boxed * __this, IEnumerable_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_ * values, MethodInfo * method)); -DO_APP_FUNC(0x01644A10, void, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection___ctor_2, (InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection___Boxed * __this, InputUser_OngoingAccountSelection firstValue, InputUser_OngoingAccountSelection__Array * additionalValues, MethodInfo * method)); -DO_APP_FUNC(0x016456B0, int32_t, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__Append, (InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection___Boxed * __this, InputUser_OngoingAccountSelection value, MethodInfo * method)); -DO_APP_FUNC(0x01652BD0, void, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__Append_1, (InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection___Boxed * __this, IEnumerable_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_ * values, MethodInfo * method)); -DO_APP_FUNC(0x01645960, int32_t, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__AppendWithCapacity, (InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection___Boxed * __this, InputUser_OngoingAccountSelection value, int32_t capacityIncrement, MethodInfo * method)); -DO_APP_FUNC(0x01645A90, void, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__AssignWithCapacity, (InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection___Boxed * __this, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_ values, MethodInfo * method)); -DO_APP_FUNC(0x01645090, void, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__Clear, (InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016450F0, void, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__ClearWithCapacity, (InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016451A0, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__Clone, (InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016537D0, bool, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__Contains, (InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection___Boxed * __this, InputUser_OngoingAccountSelection value, IEqualityComparer_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_ * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01646DE0, IEnumerator_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_ *, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__GetEnumerator, (InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01645560, int32_t, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__IndexOf, (InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection___Boxed * __this, InputUser_OngoingAccountSelection value, MethodInfo * method)); -DO_APP_FUNC(0x01653930, void, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__Merge, (InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection___Boxed * __this, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_ other, MethodInfo * method)); -DO_APP_FUNC(0x01652E20, void, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__Remove, (InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection___Boxed * __this, InputUser_OngoingAccountSelection value, MethodInfo * method)); -DO_APP_FUNC(0x016532A0, void, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__RemoveAt, (InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01653540, void, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__RemoveAtByMovingTailWithCapacity, (InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01653030, void, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__RemoveAtWithCapacity, (InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01653720, bool, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__RemoveByMovingTailWithCapacity, (InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection___Boxed * __this, InputUser_OngoingAccountSelection value, MethodInfo * method)); -DO_APP_FUNC(0x01652A00, void, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__SetLength, (InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection___Boxed * __this, int32_t size, MethodInfo * method)); -DO_APP_FUNC(0x01646EB0, IEnumerator *, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__System_Collections_IEnumerable_GetEnumerator, (InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016454D0, InputUser_OngoingAccountSelection__Array *, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__ToArray, (InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01644930, int32_t, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__get_Capacity, (InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01652820, InputUser_OngoingAccountSelection, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__get_Item, (InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x016528E0, void, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__set_Item, (InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection___Boxed * __this, int32_t index, InputUser_OngoingAccountSelection value, MethodInfo * method)); -DO_APP_FUNC(0x01653C40, void, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo___ctor, (InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo___Boxed * __this, OnScreenControl_OnScreenDeviceInfo value, MethodInfo * method)); -DO_APP_FUNC(0x01653E00, void, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo___ctor_1, (InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo___Boxed * __this, IEnumerable_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo_ * values, MethodInfo * method)); -DO_APP_FUNC(0x01653D10, void, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo___ctor_2, (InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo___Boxed * __this, OnScreenControl_OnScreenDeviceInfo firstValue, OnScreenControl_OnScreenDeviceInfo__Array * additionalValues, MethodInfo * method)); -DO_APP_FUNC(0x016547C0, int32_t, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__Append, (InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo___Boxed * __this, OnScreenControl_OnScreenDeviceInfo value, MethodInfo * method)); -DO_APP_FUNC(0x01654F00, void, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__Append_1, (InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo___Boxed * __this, IEnumerable_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo_ * values, MethodInfo * method)); -DO_APP_FUNC(0x01654A60, int32_t, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__AppendWithCapacity, (InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo___Boxed * __this, OnScreenControl_OnScreenDeviceInfo value, int32_t capacityIncrement, MethodInfo * method)); -DO_APP_FUNC(0x01654BA0, void, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__AssignWithCapacity, (InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo___Boxed * __this, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo_ values, MethodInfo * method)); -DO_APP_FUNC(0x016502C0, void, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__Clear, (InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016543C0, void, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__ClearWithCapacity, (InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016544B0, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo_, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__Clone, (InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01655BA0, bool, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__Contains, (InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo___Boxed * __this, OnScreenControl_OnScreenDeviceInfo value, IEqualityComparer_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo_ * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01656130, IEnumerator_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo_ *, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__GetEnumerator, (InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016507F0, int32_t, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__IndexOf, (InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo___Boxed * __this, OnScreenControl_OnScreenDeviceInfo value, MethodInfo * method)); -DO_APP_FUNC(0x01655D60, void, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__Merge, (InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo___Boxed * __this, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo_ other, MethodInfo * method)); -DO_APP_FUNC(0x01655180, void, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__Remove, (InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo___Boxed * __this, OnScreenControl_OnScreenDeviceInfo value, MethodInfo * method)); -DO_APP_FUNC(0x01655650, void, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__RemoveAt, (InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01655910, void, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__RemoveAtByMovingTailWithCapacity, (InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x016553F0, void, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__RemoveAtWithCapacity, (InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01655AE0, bool, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__RemoveByMovingTailWithCapacity, (InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo___Boxed * __this, OnScreenControl_OnScreenDeviceInfo value, MethodInfo * method)); -DO_APP_FUNC(0x01654620, void, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__SetLength, (InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo___Boxed * __this, int32_t size, MethodInfo * method)); -DO_APP_FUNC(0x01656230, IEnumerator *, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__System_Collections_IEnumerable_GetEnumerator, (InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01650730, OnScreenControl_OnScreenDeviceInfo__Array *, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__ToArray, (InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0164FB20, int32_t, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__get_Capacity, (InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016541F0, OnScreenControl_OnScreenDeviceInfo, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__get_Item, (InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x016542E0, void, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__set_Item, (InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo___Boxed * __this, int32_t index, OnScreenControl_OnScreenDeviceInfo value, MethodInfo * method)); +DO_APP_FUNC(0x01645FC0, void, InlinedArray_1_InternedString__Remove, (InlinedArray_1_InternedString_ * __this, InternedString value, MethodInfo * method)); +DO_APP_FUNC(0x01646440, void, InlinedArray_1_InternedString__RemoveAt, (InlinedArray_1_InternedString_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4A80, InlinedArray_1_InternedString__RemoveAt__MethodInfo); +DO_APP_FUNC(0x016466E0, void, InlinedArray_1_InternedString__RemoveAtByMovingTailWithCapacity, (InlinedArray_1_InternedString_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4A68, InlinedArray_1_InternedString__RemoveAtByMovingTailWithCapacity__MethodInfo); +DO_APP_FUNC(0x016461D0, void, InlinedArray_1_InternedString__RemoveAtWithCapacity, (InlinedArray_1_InternedString_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4A90, InlinedArray_1_InternedString__RemoveAtWithCapacity__MethodInfo); +DO_APP_FUNC(0x016468C0, bool, InlinedArray_1_InternedString__RemoveByMovingTailWithCapacity, (InlinedArray_1_InternedString_ * __this, InternedString value, MethodInfo * method)); +DO_APP_FUNC(0x01645300, void, InlinedArray_1_InternedString__SetLength, (InlinedArray_1_InternedString_ * __this, int32_t size, MethodInfo * method)); +DO_APP_FUNC(0x01646EB0, IEnumerator *, InlinedArray_1_InternedString__System_Collections_IEnumerable_GetEnumerator, (InlinedArray_1_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016454D0, InternedString__Array *, InlinedArray_1_InternedString__ToArray_1, (InlinedArray_1_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01644930, int32_t, InlinedArray_1_InternedString__get_Capacity, (InlinedArray_1_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01644EB0, InternedString, InlinedArray_1_InternedString__get_Item, (InlinedArray_1_InternedString_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4A40, InlinedArray_1_InternedString__get_Item__MethodInfo); +DO_APP_FUNC(0x01644F70, void, InlinedArray_1_InternedString__set_Item, (InlinedArray_1_InternedString_ * __this, int32_t index, InternedString value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4A38, InlinedArray_1_InternedString__set_Item__MethodInfo); +DO_APP_FUNC(0x00C70E10, Object__Array *, InlinedArray_1_System_Object__ToArray, (InlinedArray_1_System_Object_ * __this, Func_2_Object_Object_ * mapFunction, MethodInfo * method)); +DO_APP_FUNC(0x01646EF0, void, InlinedArray_1_System_Object___ctor, (InlinedArray_1_System_Object_ * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x01647090, void, InlinedArray_1_System_Object___ctor_1, (InlinedArray_1_System_Object_ * __this, IEnumerable_1_System_Object_ * values, MethodInfo * method)); +DO_APP_FUNC(0x01646FB0, void, InlinedArray_1_System_Object___ctor_2, (InlinedArray_1_System_Object_ * __this, Object * firstValue, Object__Array * additionalValues, MethodInfo * method)); +DO_APP_FUNC(0x01647A00, int32_t, InlinedArray_1_System_Object__Append, (InlinedArray_1_System_Object_ * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x01647FD0, void, InlinedArray_1_System_Object__Append_1, (InlinedArray_1_System_Object_ * __this, IEnumerable_1_System_Object_ * values, MethodInfo * method)); +DO_APP_FUNC(0x01647BD0, int32_t, InlinedArray_1_System_Object__AppendWithCapacity, (InlinedArray_1_System_Object_ * __this, Object * value, int32_t capacityIncrement, MethodInfo * method)); +DO_APP_FUNC(0x01647CF0, void, InlinedArray_1_System_Object__AssignWithCapacity, (InlinedArray_1_System_Object_ * __this, InlinedArray_1_System_Object_ values, MethodInfo * method)); +DO_APP_FUNC(0x01641320, void, InlinedArray_1_System_Object__Clear, (InlinedArray_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01647560, void, InlinedArray_1_System_Object__ClearWithCapacity, (InlinedArray_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01647610, InlinedArray_1_System_Object_, InlinedArray_1_System_Object__Clone, (InlinedArray_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01648AA0, bool, InlinedArray_1_System_Object__Contains, (InlinedArray_1_System_Object_ * __this, Object * value, IEqualityComparer_1_System_Object_ * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01648D70, IEnumerator_1_System_Object_ *, InlinedArray_1_System_Object__GetEnumerator, (InlinedArray_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016478E0, int32_t, InlinedArray_1_System_Object__IndexOf, (InlinedArray_1_System_Object_ * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x01648B80, void, InlinedArray_1_System_Object__Merge, (InlinedArray_1_System_Object_ * __this, InlinedArray_1_System_Object_ other, MethodInfo * method)); +DO_APP_FUNC(0x016481F0, void, InlinedArray_1_System_Object__Remove, (InlinedArray_1_System_Object_ * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x016485F0, void, InlinedArray_1_System_Object__RemoveAt, (InlinedArray_1_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB49E0, InlinedArray_1_System_Object__RemoveAt__MethodInfo); +DO_APP_FUNC(0x01648890, void, InlinedArray_1_System_Object__RemoveAtByMovingTailWithCapacity, (InlinedArray_1_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB49D8, InlinedArray_1_System_Object__RemoveAtByMovingTailWithCapacity__MethodInfo); +DO_APP_FUNC(0x016483D0, void, InlinedArray_1_System_Object__RemoveAtWithCapacity, (InlinedArray_1_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB49F8, InlinedArray_1_System_Object__RemoveAtWithCapacity__MethodInfo); +DO_APP_FUNC(0x01648A00, bool, InlinedArray_1_System_Object__RemoveByMovingTailWithCapacity, (InlinedArray_1_System_Object_ * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x01647770, void, InlinedArray_1_System_Object__SetLength, (InlinedArray_1_System_Object_ * __this, int32_t size, MethodInfo * method)); +DO_APP_FUNC(0x01648E50, IEnumerator *, InlinedArray_1_System_Object__System_Collections_IEnumerable_GetEnumerator, (InlinedArray_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01647850, Object__Array *, InlinedArray_1_System_Object__ToArray_1, (InlinedArray_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0163EE30, int32_t, InlinedArray_1_System_Object__get_Capacity, (InlinedArray_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01647420, Object *, InlinedArray_1_System_Object__get_Item, (InlinedArray_1_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4A70, InlinedArray_1_System_Object__get_Item__MethodInfo); +DO_APP_FUNC(0x016474C0, void, InlinedArray_1_System_Object__set_Item, (InlinedArray_1_System_Object_ * __this, int32_t index, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB49F0, InlinedArray_1_System_Object__set_Item__MethodInfo); +DO_APP_FUNC(0x01648EB0, void, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel___ctor, (InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel_ * __this, PointerModel value, MethodInfo * method)); +DO_APP_FUNC(0x01649140, void, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel___ctor_1, (InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel_ * __this, IEnumerable_1_UnityEngine_InputSystem_UI_PointerModel_ * values, MethodInfo * method)); +DO_APP_FUNC(0x01648FF0, void, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel___ctor_2, (InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel_ * __this, PointerModel firstValue, PointerModel__Array * additionalValues, MethodInfo * method)); +DO_APP_FUNC(0x0164A4F0, int32_t, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel__Append, (InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel_ * __this, PointerModel value, MethodInfo * method)); +DO_APP_FUNC(0x0164AFF0, void, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel__Append_1, (InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel_ * __this, IEnumerable_1_UnityEngine_InputSystem_UI_PointerModel_ * values, MethodInfo * method)); +DO_APP_FUNC(0x0164A850, int32_t, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel__AppendWithCapacity, (InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel_ * __this, PointerModel value, int32_t capacityIncrement, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF578, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel__AppendWithCapacity__MethodInfo); +DO_APP_FUNC(0x0164AA50, void, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel__AssignWithCapacity, (InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel_ * __this, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel_ values, MethodInfo * method)); +DO_APP_FUNC(0x01649950, void, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel__Clear, (InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016499D0, void, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel__ClearWithCapacity, (InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01649B50, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel_, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel__Clone, (InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0164C180, bool, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel__Contains, (InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel_ * __this, PointerModel value, IEqualityComparer_1_UnityEngine_InputSystem_UI_PointerModel_ * comparer, MethodInfo * method)); +DO_APP_FUNC(0x0164C850, IEnumerator_1_UnityEngine_InputSystem_UI_PointerModel_ *, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel__GetEnumerator, (InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0164A1D0, int32_t, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel__IndexOf, (InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel_ * __this, PointerModel value, MethodInfo * method)); +DO_APP_FUNC(0x0164C440, void, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel__Merge, (InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel_ * __this, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel_ other, MethodInfo * method)); +DO_APP_FUNC(0x0164B320, void, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel__Remove, (InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel_ * __this, PointerModel value, MethodInfo * method)); +DO_APP_FUNC(0x0164BA90, void, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel__RemoveAt, (InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4A00, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel__RemoveAt__MethodInfo); +DO_APP_FUNC(0x0164BDD0, void, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel__RemoveAtByMovingTailWithCapacity, (InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4A10, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel__RemoveAtByMovingTailWithCapacity__MethodInfo); +DO_APP_FUNC(0x0164B6F0, void, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel__RemoveAtWithCapacity, (InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4A08, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel__RemoveAtWithCapacity__MethodInfo); +DO_APP_FUNC(0x0164C070, bool, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel__RemoveByMovingTailWithCapacity, (InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel_ * __this, PointerModel value, MethodInfo * method)); +DO_APP_FUNC(0x01649DC0, void, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel__SetLength, (InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel_ * __this, int32_t size, MethodInfo * method)); +DO_APP_FUNC(0x0164CA30, IEnumerator *, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel__System_Collections_IEnumerable_GetEnumerator, (InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0164A040, PointerModel__Array *, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel__ToArray, (InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01648E90, int32_t, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel__get_Capacity, (InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF520, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel__get_Capacity__MethodInfo); +DO_APP_FUNC(0x01649670, PointerModel, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel__get_Item, (InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4A20, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel__get_Item__MethodInfo); +DO_APP_FUNC(0x01649790, void, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel__set_Item, (InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel_ * __this, int32_t index, PointerModel value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4A18, InlinedArray_1_UnityEngine_InputSystem_UI_PointerModel__set_Item__MethodInfo); +DO_APP_FUNC(0x00C70F50, Object__Array *, InlinedArray_1_Substring__ToArray, (InlinedArray_1_Substring_ * __this, Func_2_UnityEngine_InputSystem_Utilities_Substring_Object_ * mapFunction, MethodInfo * method)); +DO_APP_FUNC(0x01644950, void, InlinedArray_1_Substring___ctor, (InlinedArray_1_Substring_ * __this, Substring value, MethodInfo * method)); +DO_APP_FUNC(0x0164CA70, void, InlinedArray_1_Substring___ctor_1, (InlinedArray_1_Substring_ * __this, IEnumerable_1_UnityEngine_InputSystem_Utilities_Substring_ * values, MethodInfo * method)); +DO_APP_FUNC(0x01644A10, void, InlinedArray_1_Substring___ctor_2, (InlinedArray_1_Substring_ * __this, Substring firstValue, Substring__Array * additionalValues, MethodInfo * method)); +DO_APP_FUNC(0x016456B0, int32_t, InlinedArray_1_Substring__Append, (InlinedArray_1_Substring_ * __this, Substring value, MethodInfo * method)); +DO_APP_FUNC(0x0164D1E0, void, InlinedArray_1_Substring__Append_1, (InlinedArray_1_Substring_ * __this, IEnumerable_1_UnityEngine_InputSystem_Utilities_Substring_ * values, MethodInfo * method)); +DO_APP_FUNC(0x01645960, int32_t, InlinedArray_1_Substring__AppendWithCapacity, (InlinedArray_1_Substring_ * __this, Substring value, int32_t capacityIncrement, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7428, InlinedArray_1_Substring__AppendWithCapacity__MethodInfo); +DO_APP_FUNC(0x01645A90, void, InlinedArray_1_Substring__AssignWithCapacity, (InlinedArray_1_Substring_ * __this, InlinedArray_1_Substring_ values, MethodInfo * method)); +DO_APP_FUNC(0x01645090, void, InlinedArray_1_Substring__Clear, (InlinedArray_1_Substring_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016450F0, void, InlinedArray_1_Substring__ClearWithCapacity, (InlinedArray_1_Substring_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016451A0, InlinedArray_1_Substring_, InlinedArray_1_Substring__Clone, (InlinedArray_1_Substring_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0164DDE0, bool, InlinedArray_1_Substring__Contains, (InlinedArray_1_Substring_ * __this, Substring value, IEqualityComparer_1_UnityEngine_InputSystem_Utilities_Substring_ * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01646DE0, IEnumerator_1_UnityEngine_InputSystem_Utilities_Substring_ *, InlinedArray_1_Substring__GetEnumerator, (InlinedArray_1_Substring_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC74A0, InlinedArray_1_Substring__GetEnumerator__MethodInfo); +DO_APP_FUNC(0x01645560, int32_t, InlinedArray_1_Substring__IndexOf, (InlinedArray_1_Substring_ * __this, Substring value, MethodInfo * method)); +DO_APP_FUNC(0x0164DF40, void, InlinedArray_1_Substring__Merge, (InlinedArray_1_Substring_ * __this, InlinedArray_1_Substring_ other, MethodInfo * method)); +DO_APP_FUNC(0x0164D430, void, InlinedArray_1_Substring__Remove, (InlinedArray_1_Substring_ * __this, Substring value, MethodInfo * method)); +DO_APP_FUNC(0x0164D8B0, void, InlinedArray_1_Substring__RemoveAt, (InlinedArray_1_Substring_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4998, InlinedArray_1_Substring__RemoveAt__MethodInfo); +DO_APP_FUNC(0x0164DB50, void, InlinedArray_1_Substring__RemoveAtByMovingTailWithCapacity, (InlinedArray_1_Substring_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4988, InlinedArray_1_Substring__RemoveAtByMovingTailWithCapacity__MethodInfo); +DO_APP_FUNC(0x0164D640, void, InlinedArray_1_Substring__RemoveAtWithCapacity, (InlinedArray_1_Substring_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4980, InlinedArray_1_Substring__RemoveAtWithCapacity__MethodInfo); +DO_APP_FUNC(0x0164DD30, bool, InlinedArray_1_Substring__RemoveByMovingTailWithCapacity, (InlinedArray_1_Substring_ * __this, Substring value, MethodInfo * method)); +DO_APP_FUNC(0x0164D010, void, InlinedArray_1_Substring__SetLength, (InlinedArray_1_Substring_ * __this, int32_t size, MethodInfo * method)); +DO_APP_FUNC(0x01646EB0, IEnumerator *, InlinedArray_1_Substring__System_Collections_IEnumerable_GetEnumerator, (InlinedArray_1_Substring_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016454D0, Substring__Array *, InlinedArray_1_Substring__ToArray_1, (InlinedArray_1_Substring_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01644930, int32_t, InlinedArray_1_Substring__get_Capacity, (InlinedArray_1_Substring_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0164CE30, Substring, InlinedArray_1_Substring__get_Item, (InlinedArray_1_Substring_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB49A0, InlinedArray_1_Substring__get_Item__MethodInfo); +DO_APP_FUNC(0x0164CEF0, void, InlinedArray_1_Substring__set_Item, (InlinedArray_1_Substring_ * __this, int32_t index, Substring value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB49B0, InlinedArray_1_Substring__set_Item__MethodInfo); +DO_APP_FUNC(0x01640D70, void, InlinedArray_1_System_UInt64___ctor, (InlinedArray_1_System_UInt64_ * __this, uint64_t value, MethodInfo * method)); +DO_APP_FUNC(0x0164E250, void, InlinedArray_1_System_UInt64___ctor_1, (InlinedArray_1_System_UInt64_ * __this, IEnumerable_1_System_UInt64_ * values, MethodInfo * method)); +DO_APP_FUNC(0x01640DE0, void, InlinedArray_1_System_UInt64___ctor_2, (InlinedArray_1_System_UInt64_ * __this, uint64_t firstValue, UInt64__Array * additionalValues, MethodInfo * method)); +DO_APP_FUNC(0x0164E890, int32_t, InlinedArray_1_System_UInt64__Append, (InlinedArray_1_System_UInt64_ * __this, uint64_t value, MethodInfo * method)); +DO_APP_FUNC(0x0164ED60, void, InlinedArray_1_System_UInt64__Append_1, (InlinedArray_1_System_UInt64_ * __this, IEnumerable_1_System_UInt64_ * values, MethodInfo * method)); +DO_APP_FUNC(0x0164EA10, int32_t, InlinedArray_1_System_UInt64__AppendWithCapacity, (InlinedArray_1_System_UInt64_ * __this, uint64_t value, int32_t capacityIncrement, MethodInfo * method)); +DO_APP_FUNC(0x0164EAE0, void, InlinedArray_1_System_UInt64__AssignWithCapacity, (InlinedArray_1_System_UInt64_ * __this, InlinedArray_1_System_UInt64_ values, MethodInfo * method)); +DO_APP_FUNC(0x01641320, void, InlinedArray_1_System_UInt64__Clear, (InlinedArray_1_System_UInt64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01641380, void, InlinedArray_1_System_UInt64__ClearWithCapacity, (InlinedArray_1_System_UInt64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016413E0, InlinedArray_1_System_UInt64_, InlinedArray_1_System_UInt64__Clone, (InlinedArray_1_System_UInt64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0164F7F0, bool, InlinedArray_1_System_UInt64__Contains, (InlinedArray_1_System_UInt64_ * __this, uint64_t value, IEqualityComparer_1_System_UInt64_ * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01640C50, IEnumerator_1_System_UInt64_ *, InlinedArray_1_System_UInt64__GetEnumerator, (InlinedArray_1_System_UInt64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016478E0, int32_t, InlinedArray_1_System_UInt64__IndexOf, (InlinedArray_1_System_UInt64_ * __this, uint64_t value, MethodInfo * method)); +DO_APP_FUNC(0x0164F8C0, void, InlinedArray_1_System_UInt64__Merge, (InlinedArray_1_System_UInt64_ * __this, InlinedArray_1_System_UInt64_ other, MethodInfo * method)); +DO_APP_FUNC(0x0164EF80, void, InlinedArray_1_System_UInt64__Remove, (InlinedArray_1_System_UInt64_ * __this, uint64_t value, MethodInfo * method)); +DO_APP_FUNC(0x0164F360, void, InlinedArray_1_System_UInt64__RemoveAt, (InlinedArray_1_System_UInt64_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB49B8, InlinedArray_1_System_UInt64__RemoveAt__MethodInfo); +DO_APP_FUNC(0x0164F5E0, void, InlinedArray_1_System_UInt64__RemoveAtByMovingTailWithCapacity, (InlinedArray_1_System_UInt64_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4938, InlinedArray_1_System_UInt64__RemoveAtByMovingTailWithCapacity__MethodInfo); +DO_APP_FUNC(0x0164F160, void, InlinedArray_1_System_UInt64__RemoveAtWithCapacity, (InlinedArray_1_System_UInt64_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB49C0, InlinedArray_1_System_UInt64__RemoveAtWithCapacity__MethodInfo); +DO_APP_FUNC(0x0164F750, bool, InlinedArray_1_System_UInt64__RemoveByMovingTailWithCapacity, (InlinedArray_1_System_UInt64_ * __this, uint64_t value, MethodInfo * method)); +DO_APP_FUNC(0x0164E720, void, InlinedArray_1_System_UInt64__SetLength, (InlinedArray_1_System_UInt64_ * __this, int32_t size, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCDC08, InlinedArray_1_System_UInt64__SetLength__MethodInfo); +DO_APP_FUNC(0x01640D30, IEnumerator *, InlinedArray_1_System_UInt64__System_Collections_IEnumerable_GetEnumerator, (InlinedArray_1_System_UInt64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01647850, UInt64__Array *, InlinedArray_1_System_UInt64__ToArray, (InlinedArray_1_System_UInt64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0163EE30, int32_t, InlinedArray_1_System_UInt64__get_Capacity, (InlinedArray_1_System_UInt64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0164E5E0, uint64_t, InlinedArray_1_System_UInt64__get_Item, (InlinedArray_1_System_UInt64_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB49D0, InlinedArray_1_System_UInt64__get_Item__MethodInfo); +DO_APP_FUNC(0x0164E680, void, InlinedArray_1_System_UInt64__set_Item, (InlinedArray_1_System_UInt64_ * __this, int32_t index, uint64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB49C8, InlinedArray_1_System_UInt64__set_Item__MethodInfo); +DO_APP_FUNC(0x0164FB40, void, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout___ctor, (InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout_ * __this, InputManager_StateChangeMonitorTimeout value, MethodInfo * method)); +DO_APP_FUNC(0x0164FD00, void, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout___ctor_1, (InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout_ * __this, IEnumerable_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout_ * values, MethodInfo * method)); +DO_APP_FUNC(0x0164FC10, void, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout___ctor_2, (InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout_ * __this, InputManager_StateChangeMonitorTimeout firstValue, InputManager_StateChangeMonitorTimeout__Array * additionalValues, MethodInfo * method)); +DO_APP_FUNC(0x016509B0, int32_t, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__Append, (InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout_ * __this, InputManager_StateChangeMonitorTimeout value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9CE0, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__Append__MethodInfo); +DO_APP_FUNC(0x016510F0, void, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__Append_1, (InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout_ * __this, IEnumerable_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout_ * values, MethodInfo * method)); +DO_APP_FUNC(0x01650C50, int32_t, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__AppendWithCapacity, (InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout_ * __this, InputManager_StateChangeMonitorTimeout value, int32_t capacityIncrement, MethodInfo * method)); +DO_APP_FUNC(0x01650D90, void, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__AssignWithCapacity, (InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout_ * __this, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout_ values, MethodInfo * method)); +DO_APP_FUNC(0x016502C0, void, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__Clear, (InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01650330, void, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__ClearWithCapacity, (InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01650420, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout_, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__Clone, (InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01651D90, bool, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__Contains, (InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout_ * __this, InputManager_StateChangeMonitorTimeout value, IEqualityComparer_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout_ * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01652320, IEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout_ *, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__GetEnumerator, (InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016507F0, int32_t, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__IndexOf, (InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout_ * __this, InputManager_StateChangeMonitorTimeout value, MethodInfo * method)); +DO_APP_FUNC(0x01651F50, void, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__Merge, (InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout_ * __this, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout_ other, MethodInfo * method)); +DO_APP_FUNC(0x01651370, void, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__Remove, (InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout_ * __this, InputManager_StateChangeMonitorTimeout value, MethodInfo * method)); +DO_APP_FUNC(0x01651840, void, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__RemoveAt, (InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4978, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__RemoveAt__MethodInfo); +DO_APP_FUNC(0x01651B00, void, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__RemoveAtByMovingTailWithCapacity, (InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4970, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__RemoveAtByMovingTailWithCapacity__MethodInfo); +DO_APP_FUNC(0x016515E0, void, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__RemoveAtWithCapacity, (InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4918, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__RemoveAtWithCapacity__MethodInfo); +DO_APP_FUNC(0x01651CD0, bool, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__RemoveByMovingTailWithCapacity, (InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout_ * __this, InputManager_StateChangeMonitorTimeout value, MethodInfo * method)); +DO_APP_FUNC(0x01650590, void, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__SetLength, (InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout_ * __this, int32_t size, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9C68, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__SetLength__MethodInfo); +DO_APP_FUNC(0x01652420, IEnumerator *, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__System_Collections_IEnumerable_GetEnumerator, (InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01650730, InputManager_StateChangeMonitorTimeout__Array *, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__ToArray, (InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0164FB20, int32_t, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__get_Capacity, (InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016500F0, InputManager_StateChangeMonitorTimeout, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__get_Item, (InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4948, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__get_Item__MethodInfo); +DO_APP_FUNC(0x016501E0, void, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__set_Item, (InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout_ * __this, int32_t index, InputManager_StateChangeMonitorTimeout value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4908, InlinedArray_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__set_Item__MethodInfo); +DO_APP_FUNC(0x01644950, void, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection___ctor, (InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_ * __this, InputUser_OngoingAccountSelection value, MethodInfo * method)); +DO_APP_FUNC(0x01652460, void, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection___ctor_1, (InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_ * __this, IEnumerable_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_ * values, MethodInfo * method)); +DO_APP_FUNC(0x01644A10, void, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection___ctor_2, (InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_ * __this, InputUser_OngoingAccountSelection firstValue, InputUser_OngoingAccountSelection__Array * additionalValues, MethodInfo * method)); +DO_APP_FUNC(0x016456B0, int32_t, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__Append, (InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_ * __this, InputUser_OngoingAccountSelection value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD770, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__Append__MethodInfo); +DO_APP_FUNC(0x01652BD0, void, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__Append_1, (InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_ * __this, IEnumerable_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_ * values, MethodInfo * method)); +DO_APP_FUNC(0x01645960, int32_t, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__AppendWithCapacity, (InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_ * __this, InputUser_OngoingAccountSelection value, int32_t capacityIncrement, MethodInfo * method)); +DO_APP_FUNC(0x01645A90, void, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__AssignWithCapacity, (InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_ * __this, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_ values, MethodInfo * method)); +DO_APP_FUNC(0x01645090, void, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__Clear, (InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016450F0, void, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__ClearWithCapacity, (InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016451A0, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__Clone, (InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016537D0, bool, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__Contains, (InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_ * __this, InputUser_OngoingAccountSelection value, IEqualityComparer_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_ * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01646DE0, IEnumerator_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_ *, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__GetEnumerator, (InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01645560, int32_t, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__IndexOf, (InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_ * __this, InputUser_OngoingAccountSelection value, MethodInfo * method)); +DO_APP_FUNC(0x01653930, void, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__Merge, (InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_ * __this, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_ other, MethodInfo * method)); +DO_APP_FUNC(0x01652E20, void, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__Remove, (InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_ * __this, InputUser_OngoingAccountSelection value, MethodInfo * method)); +DO_APP_FUNC(0x016532A0, void, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__RemoveAt, (InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4870, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__RemoveAt__MethodInfo); +DO_APP_FUNC(0x01653540, void, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__RemoveAtByMovingTailWithCapacity, (InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4888, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__RemoveAtByMovingTailWithCapacity__MethodInfo); +DO_APP_FUNC(0x01653030, void, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__RemoveAtWithCapacity, (InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4878, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__RemoveAtWithCapacity__MethodInfo); +DO_APP_FUNC(0x01653720, bool, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__RemoveByMovingTailWithCapacity, (InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_ * __this, InputUser_OngoingAccountSelection value, MethodInfo * method)); +DO_APP_FUNC(0x01652A00, void, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__SetLength, (InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_ * __this, int32_t size, MethodInfo * method)); +DO_APP_FUNC(0x01646EB0, IEnumerator *, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__System_Collections_IEnumerable_GetEnumerator, (InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016454D0, InputUser_OngoingAccountSelection__Array *, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__ToArray, (InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01644930, int32_t, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__get_Capacity, (InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01652820, InputUser_OngoingAccountSelection, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__get_Item, (InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4968, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__get_Item__MethodInfo); +DO_APP_FUNC(0x016528E0, void, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__set_Item, (InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_ * __this, int32_t index, InputUser_OngoingAccountSelection value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4960, InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__set_Item__MethodInfo); +DO_APP_FUNC(0x01653C40, void, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo___ctor, (InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo_ * __this, OnScreenControl_OnScreenDeviceInfo value, MethodInfo * method)); +DO_APP_FUNC(0x01653E00, void, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo___ctor_1, (InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo_ * __this, IEnumerable_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo_ * values, MethodInfo * method)); +DO_APP_FUNC(0x01653D10, void, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo___ctor_2, (InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo_ * __this, OnScreenControl_OnScreenDeviceInfo firstValue, OnScreenControl_OnScreenDeviceInfo__Array * additionalValues, MethodInfo * method)); +DO_APP_FUNC(0x016547C0, int32_t, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__Append, (InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo_ * __this, OnScreenControl_OnScreenDeviceInfo value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF3B0, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__Append__MethodInfo); +DO_APP_FUNC(0x01654F00, void, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__Append_1, (InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo_ * __this, IEnumerable_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo_ * values, MethodInfo * method)); +DO_APP_FUNC(0x01654A60, int32_t, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__AppendWithCapacity, (InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo_ * __this, OnScreenControl_OnScreenDeviceInfo value, int32_t capacityIncrement, MethodInfo * method)); +DO_APP_FUNC(0x01654BA0, void, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__AssignWithCapacity, (InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo_ * __this, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo_ values, MethodInfo * method)); +DO_APP_FUNC(0x016502C0, void, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__Clear, (InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016543C0, void, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__ClearWithCapacity, (InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016544B0, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo_, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__Clone, (InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01655BA0, bool, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__Contains, (InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo_ * __this, OnScreenControl_OnScreenDeviceInfo value, IEqualityComparer_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo_ * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01656130, IEnumerator_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo_ *, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__GetEnumerator, (InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016507F0, int32_t, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__IndexOf, (InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo_ * __this, OnScreenControl_OnScreenDeviceInfo value, MethodInfo * method)); +DO_APP_FUNC(0x01655D60, void, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__Merge, (InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo_ * __this, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo_ other, MethodInfo * method)); +DO_APP_FUNC(0x01655180, void, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__Remove, (InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo_ * __this, OnScreenControl_OnScreenDeviceInfo value, MethodInfo * method)); +DO_APP_FUNC(0x01655650, void, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__RemoveAt, (InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB48F0, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__RemoveAt__MethodInfo); +DO_APP_FUNC(0x01655910, void, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__RemoveAtByMovingTailWithCapacity, (InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB48E0, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__RemoveAtByMovingTailWithCapacity__MethodInfo); +DO_APP_FUNC(0x016553F0, void, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__RemoveAtWithCapacity, (InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB48C8, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__RemoveAtWithCapacity__MethodInfo); +DO_APP_FUNC(0x01655AE0, bool, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__RemoveByMovingTailWithCapacity, (InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo_ * __this, OnScreenControl_OnScreenDeviceInfo value, MethodInfo * method)); +DO_APP_FUNC(0x01654620, void, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__SetLength, (InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo_ * __this, int32_t size, MethodInfo * method)); +DO_APP_FUNC(0x01656230, IEnumerator *, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__System_Collections_IEnumerable_GetEnumerator, (InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01650730, OnScreenControl_OnScreenDeviceInfo__Array *, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__ToArray, (InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0164FB20, int32_t, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__get_Capacity, (InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016541F0, OnScreenControl_OnScreenDeviceInfo, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__get_Item, (InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4860, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__get_Item__MethodInfo); +DO_APP_FUNC(0x016542E0, void, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__set_Item, (InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo_ * __this, int32_t index, OnScreenControl_OnScreenDeviceInfo value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4868, InlinedArray_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__set_Item__MethodInfo); DO_APP_FUNC(0x003AE050, void, InputBindingComposite_1_System_Int32___ctor, (InputBindingComposite_1_System_Int32_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x01656300, void, InputBindingComposite_1_System_Int32__ReadValue, (InputBindingComposite_1_System_Int32_ * __this, InputBindingCompositeContext context, Void * buffer, int32_t bufferSize, MethodInfo * method)); -DO_APP_FUNC(0x016564F0, Object *, InputBindingComposite_1_System_Int32__ReadValueAsObject, (InputBindingComposite_1_System_Int32_ * __this, InputBindingCompositeContext context, MethodInfo * method)); +DO_APP_FUNC(0x01656300, void, InputBindingComposite_1_System_Int32__ReadValue, (InputBindingComposite_1_System_Int32_ * __this, InputBindingCompositeContext * context, Void * buffer, int32_t bufferSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB48B8, InputBindingComposite_1_System_Int32__ReadValue__MethodInfo); +DO_APP_FUNC(0x016564F0, Object *, InputBindingComposite_1_System_Int32__ReadValueAsObject, (InputBindingComposite_1_System_Int32_ * __this, InputBindingCompositeContext * context, MethodInfo * method)); DO_APP_FUNC(0x016562D0, int32_t, InputBindingComposite_1_System_Int32__get_valueSizeInBytes, (InputBindingComposite_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01656270, Type *, InputBindingComposite_1_System_Int32__get_valueType, (InputBindingComposite_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InputBindingComposite_1_UnityEngine_Quaternion___ctor, (InputBindingComposite_1_UnityEngine_Quaternion_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x01656610, void, InputBindingComposite_1_UnityEngine_Quaternion__ReadValue, (InputBindingComposite_1_UnityEngine_Quaternion_ * __this, InputBindingCompositeContext context, Void * buffer, int32_t bufferSize, MethodInfo * method)); -DO_APP_FUNC(0x01656810, Object *, InputBindingComposite_1_UnityEngine_Quaternion__ReadValueAsObject, (InputBindingComposite_1_UnityEngine_Quaternion_ * __this, InputBindingCompositeContext context, MethodInfo * method)); +DO_APP_FUNC(0x01656610, void, InputBindingComposite_1_UnityEngine_Quaternion__ReadValue, (InputBindingComposite_1_UnityEngine_Quaternion_ * __this, InputBindingCompositeContext * context, Void * buffer, int32_t bufferSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4830, InputBindingComposite_1_UnityEngine_Quaternion__ReadValue__MethodInfo); +DO_APP_FUNC(0x01656810, Object *, InputBindingComposite_1_UnityEngine_Quaternion__ReadValueAsObject, (InputBindingComposite_1_UnityEngine_Quaternion_ * __this, InputBindingCompositeContext * context, MethodInfo * method)); DO_APP_FUNC(0x016562D0, int32_t, InputBindingComposite_1_UnityEngine_Quaternion__get_valueSizeInBytes, (InputBindingComposite_1_UnityEngine_Quaternion_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016565B0, Type *, InputBindingComposite_1_UnityEngine_Quaternion__get_valueType, (InputBindingComposite_1_UnityEngine_Quaternion_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InputBindingComposite_1_System_Single___ctor, (InputBindingComposite_1_System_Single_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x01656930, void, InputBindingComposite_1_System_Single__ReadValue, (InputBindingComposite_1_System_Single_ * __this, InputBindingCompositeContext context, Void * buffer, int32_t bufferSize, MethodInfo * method)); -DO_APP_FUNC(0x01656B20, Object *, InputBindingComposite_1_System_Single__ReadValueAsObject, (InputBindingComposite_1_System_Single_ * __this, InputBindingCompositeContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC56C0, InputBindingComposite_1_System_Single___ctor__MethodInfo); +DO_APP_FUNC(0x01656930, void, InputBindingComposite_1_System_Single__ReadValue, (InputBindingComposite_1_System_Single_ * __this, InputBindingCompositeContext * context, Void * buffer, int32_t bufferSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4838, InputBindingComposite_1_System_Single__ReadValue__MethodInfo); +DO_APP_FUNC(0x01656B20, Object *, InputBindingComposite_1_System_Single__ReadValueAsObject, (InputBindingComposite_1_System_Single_ * __this, InputBindingCompositeContext * context, MethodInfo * method)); DO_APP_FUNC(0x016562D0, int32_t, InputBindingComposite_1_System_Single__get_valueSizeInBytes, (InputBindingComposite_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016568D0, Type *, InputBindingComposite_1_System_Single__get_valueType, (InputBindingComposite_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InputBindingComposite_1_UnityEngine_Vector2___ctor, (InputBindingComposite_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x01656C40, void, InputBindingComposite_1_UnityEngine_Vector2__ReadValue, (InputBindingComposite_1_UnityEngine_Vector2_ * __this, InputBindingCompositeContext context, Void * buffer, int32_t bufferSize, MethodInfo * method)); -DO_APP_FUNC(0x01656E30, Object *, InputBindingComposite_1_UnityEngine_Vector2__ReadValueAsObject, (InputBindingComposite_1_UnityEngine_Vector2_ * __this, InputBindingCompositeContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5698, InputBindingComposite_1_UnityEngine_Vector2___ctor__MethodInfo); +DO_APP_FUNC(0x01656C40, void, InputBindingComposite_1_UnityEngine_Vector2__ReadValue, (InputBindingComposite_1_UnityEngine_Vector2_ * __this, InputBindingCompositeContext * context, Void * buffer, int32_t bufferSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4858, InputBindingComposite_1_UnityEngine_Vector2__ReadValue__MethodInfo); +DO_APP_FUNC(0x01656E30, Object *, InputBindingComposite_1_UnityEngine_Vector2__ReadValueAsObject, (InputBindingComposite_1_UnityEngine_Vector2_ * __this, InputBindingCompositeContext * context, MethodInfo * method)); DO_APP_FUNC(0x016562D0, int32_t, InputBindingComposite_1_UnityEngine_Vector2__get_valueSizeInBytes, (InputBindingComposite_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01656BE0, Type *, InputBindingComposite_1_UnityEngine_Vector2__get_valueType, (InputBindingComposite_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InputBindingComposite_1_UnityEngine_Vector3___ctor, (InputBindingComposite_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x01656F50, void, InputBindingComposite_1_UnityEngine_Vector3__ReadValue, (InputBindingComposite_1_UnityEngine_Vector3_ * __this, InputBindingCompositeContext context, Void * buffer, int32_t bufferSize, MethodInfo * method)); -DO_APP_FUNC(0x01657160, Object *, InputBindingComposite_1_UnityEngine_Vector3__ReadValueAsObject, (InputBindingComposite_1_UnityEngine_Vector3_ * __this, InputBindingCompositeContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC56A8, InputBindingComposite_1_UnityEngine_Vector3___ctor__MethodInfo); +DO_APP_FUNC(0x01656F50, void, InputBindingComposite_1_UnityEngine_Vector3__ReadValue, (InputBindingComposite_1_UnityEngine_Vector3_ * __this, InputBindingCompositeContext * context, Void * buffer, int32_t bufferSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4848, InputBindingComposite_1_UnityEngine_Vector3__ReadValue__MethodInfo); +DO_APP_FUNC(0x01657160, Object *, InputBindingComposite_1_UnityEngine_Vector3__ReadValueAsObject, (InputBindingComposite_1_UnityEngine_Vector3_ * __this, InputBindingCompositeContext * context, MethodInfo * method)); DO_APP_FUNC(0x016562D0, int32_t, InputBindingComposite_1_UnityEngine_Vector3__get_valueSizeInBytes, (InputBindingComposite_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01656EF0, Type *, InputBindingComposite_1_UnityEngine_Vector3__get_valueType, (InputBindingComposite_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C71120, void, InputControlList_1_System_Object__AddSlice, (InputControlList_1_System_Object___Boxed * __this, ReadOnlyArray_1_System_Object_ list, int32_t count, int32_t destinationIndex, int32_t sourceIndex, MethodInfo * method)); +DO_APP_FUNC(0x00C71120, void, InputControlList_1_System_Object__AddSlice, (InputControlList_1_System_Object_ * __this, ReadOnlyArray_1_System_Object_ list, int32_t count, int32_t destinationIndex, int32_t sourceIndex, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C98288, InputControlList_1_System_Object__AddSlice__MethodInfo); -DO_APP_FUNC(0x00C714B0, void, InputControlList_1_System_Object__AddSlice_1, (InputControlList_1_System_Object___Boxed * __this, Object * list, int32_t count, int32_t destinationIndex, int32_t sourceIndex, MethodInfo * method)); +DO_APP_FUNC(0x00C714B0, void, InputControlList_1_System_Object__AddSlice_1, (InputControlList_1_System_Object_ * __this, Object * list, int32_t count, int32_t destinationIndex, int32_t sourceIndex, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C98240, InputControlList_1_System_Object__AddSlice_1__MethodInfo); -DO_APP_FUNC(0x00C71980, void, InputControlList_1_System_Object__Sort, (InputControlList_1_System_Object___Boxed * __this, int32_t startIndex, int32_t count, Object * comparer, MethodInfo * method)); +DO_APP_FUNC(0x00C71980, void, InputControlList_1_System_Object__Sort, (InputControlList_1_System_Object_ * __this, int32_t startIndex, int32_t count, Object * comparer, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C981E0, InputControlList_1_System_Object__Sort__MethodInfo); -DO_APP_FUNC(0x00C71BD0, void, InputControlList_1_System_Object__Sort_1, (InputControlList_1_System_Object___Boxed * __this, int32_t startIndex, int32_t count, InputUser_CompareDevicesByUserAccount comparer, MethodInfo * method)); +DO_APP_FUNC(0x00C71BD0, void, InputControlList_1_System_Object__Sort_1, (InputControlList_1_System_Object_ * __this, int32_t startIndex, int32_t count, InputUser_CompareDevicesByUserAccount comparer, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C981F0, InputControlList_1_System_Object__Sort_1__MethodInfo); -DO_APP_FUNC(0x016579D0, void, InputControlList_1_System_Object___ctor, (InputControlList_1_System_Object___Boxed * __this, Object__Array * values, MethodInfo * method)); -DO_APP_FUNC(0x01657740, void, InputControlList_1_System_Object___ctor_1, (InputControlList_1_System_Object___Boxed * __this, IEnumerable_1_System_Object_ * values, Allocator__Enum allocator, MethodInfo * method)); -DO_APP_FUNC(0x016576E0, void, InputControlList_1_System_Object___ctor_2, (InputControlList_1_System_Object___Boxed * __this, Allocator__Enum allocator, int32_t initialCapacity, MethodInfo * method)); -DO_APP_FUNC(0x01657CA0, void, InputControlList_1_System_Object__Add, (InputControlList_1_System_Object___Boxed * __this, Object * item, MethodInfo * method)); -DO_APP_FUNC(0x01657D90, void, InputControlList_1_System_Object__AddRange, (InputControlList_1_System_Object___Boxed * __this, IEnumerable_1_System_Object_ * list, int32_t count, int32_t destinationIndex, MethodInfo * method)); -DO_APP_FUNC(0x01658A90, void, InputControlList_1_System_Object__AppendTo, (InputControlList_1_System_Object___Boxed * __this, Object__Array * array, int32_t count, MethodInfo * method)); -DO_APP_FUNC(0x00C42850, void, InputControlList_1_System_Object__Clear, (InputControlList_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016586D0, bool, InputControlList_1_System_Object__Contains, (InputControlList_1_System_Object___Boxed * __this, Object * item, MethodInfo * method)); -DO_APP_FUNC(0x01658750, bool, InputControlList_1_System_Object__Contains_1, (InputControlList_1_System_Object___Boxed * __this, Object * item, int32_t startIndex, int32_t count, MethodInfo * method)); -DO_APP_FUNC(0x016583F0, void, InputControlList_1_System_Object__CopyTo, (InputControlList_1_System_Object___Boxed * __this, Object__Array * array, int32_t arrayIndex, MethodInfo * method)); -DO_APP_FUNC(0x01658B80, void, InputControlList_1_System_Object__Dispose, (InputControlList_1_System_Object___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x016579D0, void, InputControlList_1_System_Object___ctor, (InputControlList_1_System_Object_ * __this, Object__Array * values, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4810, InputControlList_1_System_Object___ctor__MethodInfo); +DO_APP_FUNC(0x01657740, void, InputControlList_1_System_Object___ctor_1, (InputControlList_1_System_Object_ * __this, IEnumerable_1_System_Object_ * values, Allocator__Enum allocator, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4818, InputControlList_1_System_Object___ctor_1__MethodInfo); +DO_APP_FUNC(0x016576E0, void, InputControlList_1_System_Object___ctor_2, (InputControlList_1_System_Object_ * __this, Allocator__Enum allocator, int32_t initialCapacity, MethodInfo * method)); +DO_APP_FUNC(0x01657CA0, void, InputControlList_1_System_Object__Add, (InputControlList_1_System_Object_ * __this, Object * item, MethodInfo * method)); +DO_APP_FUNC(0x01657D90, void, InputControlList_1_System_Object__AddRange, (InputControlList_1_System_Object_ * __this, IEnumerable_1_System_Object_ * list, int32_t count, int32_t destinationIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB47B0, InputControlList_1_System_Object__AddRange__MethodInfo); +DO_APP_FUNC(0x01658A90, void, InputControlList_1_System_Object__AppendTo, (InputControlList_1_System_Object_ * __this, Object__Array * * array, int32_t * count, MethodInfo * method)); +DO_APP_FUNC(0x00C42850, void, InputControlList_1_System_Object__Clear, (InputControlList_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016586D0, bool, InputControlList_1_System_Object__Contains, (InputControlList_1_System_Object_ * __this, Object * item, MethodInfo * method)); +DO_APP_FUNC(0x01658750, bool, InputControlList_1_System_Object__Contains_1, (InputControlList_1_System_Object_ * __this, Object * item, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC(0x016583F0, void, InputControlList_1_System_Object__CopyTo, (InputControlList_1_System_Object_ * __this, Object__Array * array, int32_t arrayIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB46C0, InputControlList_1_System_Object__CopyTo__MethodInfo); +DO_APP_FUNC(0x01658B80, void, InputControlList_1_System_Object__Dispose, (InputControlList_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01658FA0, Object *, InputControlList_1_System_Object__FromIndex, (uint64_t index, MethodInfo * method)); -DO_APP_FUNC(0x01658BE0, IEnumerator_1_System_Object_ *, InputControlList_1_System_Object__GetEnumerator, (InputControlList_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01658440, int32_t, InputControlList_1_System_Object__IndexOf, (InputControlList_1_System_Object___Boxed * __this, Object * item, MethodInfo * method)); -DO_APP_FUNC(0x016584A0, int32_t, InputControlList_1_System_Object__IndexOf_1, (InputControlList_1_System_Object___Boxed * __this, Object * item, int32_t startIndex, int32_t count, MethodInfo * method)); -DO_APP_FUNC(0x01658680, void, InputControlList_1_System_Object__Insert, (InputControlList_1_System_Object___Boxed * __this, int32_t index, Object * item, MethodInfo * method)); -DO_APP_FUNC(0x016581D0, bool, InputControlList_1_System_Object__Remove, (InputControlList_1_System_Object___Boxed * __this, Object * item, MethodInfo * method)); -DO_APP_FUNC(0x016582D0, void, InputControlList_1_System_Object__RemoveAt, (InputControlList_1_System_Object___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01657B00, void, InputControlList_1_System_Object__Resize, (InputControlList_1_System_Object___Boxed * __this, int32_t size, MethodInfo * method)); -DO_APP_FUNC(0x016587D0, void, InputControlList_1_System_Object__SwapElements, (InputControlList_1_System_Object___Boxed * __this, int32_t index1, int32_t index2, MethodInfo * method)); -DO_APP_FUNC(0x01658CB0, IEnumerator *, InputControlList_1_System_Object__System_Collections_IEnumerable_GetEnumerator, (InputControlList_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016588F0, Object__Array *, InputControlList_1_System_Object__ToArray, (InputControlList_1_System_Object___Boxed * __this, bool dispose, MethodInfo * method)); +DO_APP_FUNC(0x01658BE0, IEnumerator_1_System_Object_ *, InputControlList_1_System_Object__GetEnumerator, (InputControlList_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01658440, int32_t, InputControlList_1_System_Object__IndexOf, (InputControlList_1_System_Object_ * __this, Object * item, MethodInfo * method)); +DO_APP_FUNC(0x016584A0, int32_t, InputControlList_1_System_Object__IndexOf_1, (InputControlList_1_System_Object_ * __this, Object * item, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB46A0, InputControlList_1_System_Object__IndexOf_1__MethodInfo); +DO_APP_FUNC(0x01658680, void, InputControlList_1_System_Object__Insert, (InputControlList_1_System_Object_ * __this, int32_t index, Object * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB46B8, InputControlList_1_System_Object__Insert__MethodInfo); +DO_APP_FUNC(0x016581D0, bool, InputControlList_1_System_Object__Remove, (InputControlList_1_System_Object_ * __this, Object * item, MethodInfo * method)); +DO_APP_FUNC(0x016582D0, void, InputControlList_1_System_Object__RemoveAt, (InputControlList_1_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB46D0, InputControlList_1_System_Object__RemoveAt__MethodInfo); +DO_APP_FUNC(0x01657B00, void, InputControlList_1_System_Object__Resize, (InputControlList_1_System_Object_ * __this, int32_t size, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4778, InputControlList_1_System_Object__Resize__MethodInfo); +DO_APP_FUNC(0x016587D0, void, InputControlList_1_System_Object__SwapElements, (InputControlList_1_System_Object_ * __this, int32_t index1, int32_t index2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4728, InputControlList_1_System_Object__SwapElements__MethodInfo); +DO_APP_FUNC(0x01658CB0, IEnumerator *, InputControlList_1_System_Object__System_Collections_IEnumerable_GetEnumerator, (InputControlList_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016588F0, Object__Array *, InputControlList_1_System_Object__ToArray, (InputControlList_1_System_Object_ * __this, bool dispose, MethodInfo * method)); DO_APP_FUNC(0x01658EF0, uint64_t, InputControlList_1_System_Object__ToIndex, (Object * control, MethodInfo * method)); -DO_APP_FUNC(0x01658CF0, String *, InputControlList_1_System_Object__ToString, (InputControlList_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01657230, int32_t, InputControlList_1_System_Object__get_Capacity, (InputControlList_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, InputControlList_1_System_Object__get_Count, (InputControlList_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0041AF00, bool, InputControlList_1_System_Object__get_IsReadOnly, (InputControlList_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01657460, Object *, InputControlList_1_System_Object__get_Item, (InputControlList_1_System_Object___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01657280, void, InputControlList_1_System_Object__set_Capacity, (InputControlList_1_System_Object___Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x016575A0, void, InputControlList_1_System_Object__set_Item, (InputControlList_1_System_Object___Boxed * __this, int32_t index, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x01658CF0, String *, InputControlList_1_System_Object__ToString, (InputControlList_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01657230, int32_t, InputControlList_1_System_Object__get_Capacity, (InputControlList_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, InputControlList_1_System_Object__get_Count, (InputControlList_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0041AF00, bool, InputControlList_1_System_Object__get_IsReadOnly, (InputControlList_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01657460, Object *, InputControlList_1_System_Object__get_Item, (InputControlList_1_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4828, InputControlList_1_System_Object__get_Item__MethodInfo); +DO_APP_FUNC(0x01657280, void, InputControlList_1_System_Object__set_Capacity, (InputControlList_1_System_Object_ * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB47F8, InputControlList_1_System_Object__set_Capacity__MethodInfo); +DO_APP_FUNC(0x016575A0, void, InputControlList_1_System_Object__set_Item, (InputControlList_1_System_Object_ * __this, int32_t index, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4820, InputControlList_1_System_Object__set_Item__MethodInfo); DO_APP_FUNC(0x0166A510, void, InputControl_1_UnityEngine_InputSystem_XR_Bone___ctor, (InputControl_1_UnityEngine_InputSystem_XR_Bone_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD9D8, InputControl_1_UnityEngine_InputSystem_XR_Bone___ctor__MethodInfo); DO_APP_FUNC(0x0166A090, void, InputControl_1_UnityEngine_InputSystem_XR_Bone__AddProcessor, (InputControl_1_UnityEngine_InputSystem_XR_Bone_ * __this, Object * processor, MethodInfo * method)); -DO_APP_FUNC(0x01669D60, bool, InputControl_1_UnityEngine_InputSystem_XR_Bone__CompareValue, (Bone firstValue, Bone secondValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8EB8, InputControl_1_UnityEngine_InputSystem_XR_Bone__AddProcessor__MethodInfo); +DO_APP_FUNC(0x01669D60, bool, InputControl_1_UnityEngine_InputSystem_XR_Bone__CompareValue, (Bone * firstValue, Bone * secondValue, MethodInfo * method)); DO_APP_FUNC(0x01669DF0, bool, InputControl_1_UnityEngine_InputSystem_XR_Bone__CompareValue_1, (InputControl_1_UnityEngine_InputSystem_XR_Bone_ * __this, Void * firstStatePtr, Void * secondStatePtr, MethodInfo * method)); DO_APP_FUNC(0x0166A2F0, void, InputControl_1_UnityEngine_InputSystem_XR_Bone__FinishSetup, (InputControl_1_UnityEngine_InputSystem_XR_Bone_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCDAA0, InputControl_1_UnityEngine_InputSystem_XR_Bone__FinishSetup__MethodInfo); DO_APP_FUNC(0x01669EF0, Bone, InputControl_1_UnityEngine_InputSystem_XR_Bone__ProcessValue, (InputControl_1_UnityEngine_InputSystem_XR_Bone_ * __this, Bone value, MethodInfo * method)); -DO_APP_FUNC(0x01669F50, void, InputControl_1_UnityEngine_InputSystem_XR_Bone__ProcessValue_1, (InputControl_1_UnityEngine_InputSystem_XR_Bone_ * __this, Bone value, MethodInfo * method)); +DO_APP_FUNC(0x01669F50, void, InputControl_1_UnityEngine_InputSystem_XR_Bone__ProcessValue_1, (InputControl_1_UnityEngine_InputSystem_XR_Bone_ * __this, Bone * value, MethodInfo * method)); DO_APP_FUNC(0x01668F90, Bone, InputControl_1_UnityEngine_InputSystem_XR_Bone__ReadDefaultValue, (InputControl_1_UnityEngine_InputSystem_XR_Bone_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01669320, Bone, InputControl_1_UnityEngine_InputSystem_XR_Bone__ReadUnprocessedValue, (InputControl_1_UnityEngine_InputSystem_XR_Bone_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01669220, Bone, InputControl_1_UnityEngine_InputSystem_XR_Bone__ReadUnprocessedValueFromStateWithCaching, (InputControl_1_UnityEngine_InputSystem_XR_Bone_ * __this, Void * statePtr, MethodInfo * method)); DO_APP_FUNC(0x01668E70, Bone, InputControl_1_UnityEngine_InputSystem_XR_Bone__ReadValue, (InputControl_1_UnityEngine_InputSystem_XR_Bone_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01669B20, Object *, InputControl_1_UnityEngine_InputSystem_XR_Bone__ReadValueFromBufferAsObject, (InputControl_1_UnityEngine_InputSystem_XR_Bone_ * __this, Void * buffer, int32_t bufferSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8E98, InputControl_1_UnityEngine_InputSystem_XR_Bone__ReadValueFromBufferAsObject__MethodInfo); DO_APP_FUNC(0x01668EC0, Bone, InputControl_1_UnityEngine_InputSystem_XR_Bone__ReadValueFromPreviousFrame, (InputControl_1_UnityEngine_InputSystem_XR_Bone_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01669040, Bone, InputControl_1_UnityEngine_InputSystem_XR_Bone__ReadValueFromState, (InputControl_1_UnityEngine_InputSystem_XR_Bone_ * __this, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8EF0, InputControl_1_UnityEngine_InputSystem_XR_Bone__ReadValueFromState__MethodInfo); DO_APP_FUNC(0x01669370, Object *, InputControl_1_UnityEngine_InputSystem_XR_Bone__ReadValueFromStateAsObject, (InputControl_1_UnityEngine_InputSystem_XR_Bone_ * __this, Void * statePtr, MethodInfo * method)); DO_APP_FUNC(0x016693F0, void, InputControl_1_UnityEngine_InputSystem_XR_Bone__ReadValueFromStateIntoBuffer, (InputControl_1_UnityEngine_InputSystem_XR_Bone_ * __this, Void * statePtr, Void * bufferPtr, int32_t bufferSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8EE8, InputControl_1_UnityEngine_InputSystem_XR_Bone__ReadValueFromStateIntoBuffer__MethodInfo); DO_APP_FUNC(0x01669130, Bone, InputControl_1_UnityEngine_InputSystem_XR_Bone__ReadValueFromStateWithCaching, (InputControl_1_UnityEngine_InputSystem_XR_Bone_ * __this, Void * statePtr, MethodInfo * method)); DO_APP_FUNC(0x01669640, void, InputControl_1_UnityEngine_InputSystem_XR_Bone__WriteValueFromBufferIntoState, (InputControl_1_UnityEngine_InputSystem_XR_Bone_ * __this, Void * bufferPtr, int32_t bufferSize, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8ED8, InputControl_1_UnityEngine_InputSystem_XR_Bone__WriteValueFromBufferIntoState__MethodInfo); DO_APP_FUNC(0x01669880, void, InputControl_1_UnityEngine_InputSystem_XR_Bone__WriteValueFromObjectIntoState, (InputControl_1_UnityEngine_InputSystem_XR_Bone_ * __this, Object * value, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8EE0, InputControl_1_UnityEngine_InputSystem_XR_Bone__WriteValueFromObjectIntoState__MethodInfo); DO_APP_FUNC(0x01669AB0, void, InputControl_1_UnityEngine_InputSystem_XR_Bone__WriteValueIntoState, (InputControl_1_UnityEngine_InputSystem_XR_Bone_ * __this, Bone value, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8E80, InputControl_1_UnityEngine_InputSystem_XR_Bone__WriteValueIntoState__MethodInfo); DO_APP_FUNC(0x0166A4F0, InputProcessor_1_UnityEngine_InputSystem_XR_Bone___Array *, InputControl_1_UnityEngine_InputSystem_XR_Bone__get_processors, (InputControl_1_UnityEngine_InputSystem_XR_Bone_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x01668D70, Bone, InputControl_1_UnityEngine_InputSystem_XR_Bone__get_unprocessedValue, (InputControl_1_UnityEngine_InputSystem_XR_Bone_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x01668C70, Bone, InputControl_1_UnityEngine_InputSystem_XR_Bone__get_value, (InputControl_1_UnityEngine_InputSystem_XR_Bone_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01668D70, Bone *, InputControl_1_UnityEngine_InputSystem_XR_Bone__get_unprocessedValue, (InputControl_1_UnityEngine_InputSystem_XR_Bone_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01668C70, Bone *, InputControl_1_UnityEngine_InputSystem_XR_Bone__get_value, (InputControl_1_UnityEngine_InputSystem_XR_Bone_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016562D0, int32_t, InputControl_1_UnityEngine_InputSystem_XR_Bone__get_valueSizeInBytes, (InputControl_1_UnityEngine_InputSystem_XR_Bone_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01668C10, Type *, InputControl_1_UnityEngine_InputSystem_XR_Bone__get_valueType, (InputControl_1_UnityEngine_InputSystem_XR_Bone_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0166A510, void, InputControl_1_System_Boolean___ctor, (InputControl_1_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0166B6B0, void, InputControl_1_System_Boolean__AddProcessor, (InputControl_1_System_Boolean_ * __this, Object * processor, MethodInfo * method)); -DO_APP_FUNC(0x01669D60, bool, InputControl_1_System_Boolean__CompareValue, (bool firstValue, bool secondValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8E48, InputControl_1_System_Boolean__AddProcessor__MethodInfo); +DO_APP_FUNC(0x01669D60, bool, InputControl_1_System_Boolean__CompareValue, (bool * firstValue, bool * secondValue, MethodInfo * method)); DO_APP_FUNC(0x0166B4F0, bool, InputControl_1_System_Boolean__CompareValue_1, (InputControl_1_System_Boolean_ * __this, Void * firstStatePtr, Void * secondStatePtr, MethodInfo * method)); DO_APP_FUNC(0x0166B910, void, InputControl_1_System_Boolean__FinishSetup, (InputControl_1_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0166B5A0, bool, InputControl_1_System_Boolean__ProcessValue, (InputControl_1_System_Boolean_ * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x0166B5D0, void, InputControl_1_System_Boolean__ProcessValue_1, (InputControl_1_System_Boolean_ * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x0166B5D0, void, InputControl_1_System_Boolean__ProcessValue_1, (InputControl_1_System_Boolean_ * __this, bool * value, MethodInfo * method)); DO_APP_FUNC(0x0166A870, bool, InputControl_1_System_Boolean__ReadDefaultValue, (InputControl_1_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0166AB60, bool, InputControl_1_System_Boolean__ReadUnprocessedValue, (InputControl_1_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0166AA80, bool, InputControl_1_System_Boolean__ReadUnprocessedValueFromStateWithCaching, (InputControl_1_System_Boolean_ * __this, Void * statePtr, MethodInfo * method)); DO_APP_FUNC(0x0166A780, bool, InputControl_1_System_Boolean__ReadValue, (InputControl_1_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0166B2D0, Object *, InputControl_1_System_Boolean__ReadValueFromBufferAsObject, (InputControl_1_System_Boolean_ * __this, Void * buffer, int32_t bufferSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8E50, InputControl_1_System_Boolean__ReadValueFromBufferAsObject__MethodInfo); DO_APP_FUNC(0x0166A7C0, bool, InputControl_1_System_Boolean__ReadValueFromPreviousFrame, (InputControl_1_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0166A8F0, bool, InputControl_1_System_Boolean__ReadValueFromState, (InputControl_1_System_Boolean_ * __this, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8E28, InputControl_1_System_Boolean__ReadValueFromState__MethodInfo); DO_APP_FUNC(0x0166ABA0, Object *, InputControl_1_System_Boolean__ReadValueFromStateAsObject, (InputControl_1_System_Boolean_ * __this, Void * statePtr, MethodInfo * method)); DO_APP_FUNC(0x0166AC10, void, InputControl_1_System_Boolean__ReadValueFromStateIntoBuffer, (InputControl_1_System_Boolean_ * __this, Void * statePtr, Void * bufferPtr, int32_t bufferSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8E00, InputControl_1_System_Boolean__ReadValueFromStateIntoBuffer__MethodInfo); DO_APP_FUNC(0x0166A9A0, bool, InputControl_1_System_Boolean__ReadValueFromStateWithCaching, (InputControl_1_System_Boolean_ * __this, Void * statePtr, MethodInfo * method)); DO_APP_FUNC(0x0166AE30, void, InputControl_1_System_Boolean__WriteValueFromBufferIntoState, (InputControl_1_System_Boolean_ * __this, Void * bufferPtr, int32_t bufferSize, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8DF8, InputControl_1_System_Boolean__WriteValueFromBufferIntoState__MethodInfo); DO_APP_FUNC(0x0166B040, void, InputControl_1_System_Boolean__WriteValueFromObjectIntoState, (InputControl_1_System_Boolean_ * __this, Object * value, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8E40, InputControl_1_System_Boolean__WriteValueFromObjectIntoState__MethodInfo); DO_APP_FUNC(0x0166B260, void, InputControl_1_System_Boolean__WriteValueIntoState, (InputControl_1_System_Boolean_ * __this, bool value, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8E38, InputControl_1_System_Boolean__WriteValueIntoState__MethodInfo); DO_APP_FUNC(0x0166A4F0, InputProcessor_1_System_Boolean___Array *, InputControl_1_System_Boolean__get_processors, (InputControl_1_System_Boolean_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x0166A6A0, bool, InputControl_1_System_Boolean__get_unprocessedValue, (InputControl_1_System_Boolean_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x0166A5D0, bool, InputControl_1_System_Boolean__get_value, (InputControl_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0166A6A0, bool *, InputControl_1_System_Boolean__get_unprocessedValue, (InputControl_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0166A5D0, bool *, InputControl_1_System_Boolean__get_value, (InputControl_1_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016562D0, int32_t, InputControl_1_System_Boolean__get_valueSizeInBytes, (InputControl_1_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0166A570, Type *, InputControl_1_System_Boolean__get_valueType, (InputControl_1_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0166A510, void, InputControl_1_System_Double___ctor, (InputControl_1_System_Double_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5310, InputControl_1_System_Double___ctor__MethodInfo); DO_APP_FUNC(0x0166CB30, void, InputControl_1_System_Double__AddProcessor, (InputControl_1_System_Double_ * __this, Object * processor, MethodInfo * method)); -DO_APP_FUNC(0x01669D60, bool, InputControl_1_System_Double__CompareValue, (double firstValue, double secondValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8DB8, InputControl_1_System_Double__AddProcessor__MethodInfo); +DO_APP_FUNC(0x01669D60, bool, InputControl_1_System_Double__CompareValue, (double * firstValue, double * secondValue, MethodInfo * method)); DO_APP_FUNC(0x0166C960, bool, InputControl_1_System_Double__CompareValue_1, (InputControl_1_System_Double_ * __this, Void * firstStatePtr, Void * secondStatePtr, MethodInfo * method)); DO_APP_FUNC(0x0166CD90, void, InputControl_1_System_Double__FinishSetup, (InputControl_1_System_Double_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0166CA20, double, InputControl_1_System_Double__ProcessValue, (InputControl_1_System_Double_ * __this, double value, MethodInfo * method)); -DO_APP_FUNC(0x0166CA50, void, InputControl_1_System_Double__ProcessValue_1, (InputControl_1_System_Double_ * __this, double value, MethodInfo * method)); +DO_APP_FUNC(0x0166CA50, void, InputControl_1_System_Double__ProcessValue_1, (InputControl_1_System_Double_ * __this, double * value, MethodInfo * method)); DO_APP_FUNC(0x0166A870, double, InputControl_1_System_Double__ReadDefaultValue, (InputControl_1_System_Double_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0166BFD0, double, InputControl_1_System_Double__ReadUnprocessedValue, (InputControl_1_System_Double_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0166BEF0, double, InputControl_1_System_Double__ReadUnprocessedValueFromStateWithCaching, (InputControl_1_System_Double_ * __this, Void * statePtr, MethodInfo * method)); DO_APP_FUNC(0x0166BD20, double, InputControl_1_System_Double__ReadValue, (InputControl_1_System_Double_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0166C740, Object *, InputControl_1_System_Double__ReadValueFromBufferAsObject, (InputControl_1_System_Double_ * __this, Void * buffer, int32_t bufferSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8DD8, InputControl_1_System_Double__ReadValueFromBufferAsObject__MethodInfo); DO_APP_FUNC(0x0166A7C0, double, InputControl_1_System_Double__ReadValueFromPreviousFrame, (InputControl_1_System_Double_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0166BD60, double, InputControl_1_System_Double__ReadValueFromState, (InputControl_1_System_Double_ * __this, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8D70, InputControl_1_System_Double__ReadValueFromState__MethodInfo); DO_APP_FUNC(0x0166C010, Object *, InputControl_1_System_Double__ReadValueFromStateAsObject, (InputControl_1_System_Double_ * __this, Void * statePtr, MethodInfo * method)); DO_APP_FUNC(0x0166C080, void, InputControl_1_System_Double__ReadValueFromStateIntoBuffer, (InputControl_1_System_Double_ * __this, Void * statePtr, Void * bufferPtr, int32_t bufferSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8D68, InputControl_1_System_Double__ReadValueFromStateIntoBuffer__MethodInfo); DO_APP_FUNC(0x0166BE10, double, InputControl_1_System_Double__ReadValueFromStateWithCaching, (InputControl_1_System_Double_ * __this, Void * statePtr, MethodInfo * method)); DO_APP_FUNC(0x0166C2A0, void, InputControl_1_System_Double__WriteValueFromBufferIntoState, (InputControl_1_System_Double_ * __this, Void * bufferPtr, int32_t bufferSize, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8D88, InputControl_1_System_Double__WriteValueFromBufferIntoState__MethodInfo); DO_APP_FUNC(0x0166C4B0, void, InputControl_1_System_Double__WriteValueFromObjectIntoState, (InputControl_1_System_Double_ * __this, Object * value, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8DD0, InputControl_1_System_Double__WriteValueFromObjectIntoState__MethodInfo); DO_APP_FUNC(0x0166C6D0, void, InputControl_1_System_Double__WriteValueIntoState, (InputControl_1_System_Double_ * __this, double value, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8DE8, InputControl_1_System_Double__WriteValueIntoState__MethodInfo); DO_APP_FUNC(0x0166A4F0, InputProcessor_1_System_Double___Array *, InputControl_1_System_Double__get_processors, (InputControl_1_System_Double_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x0166BC40, double, InputControl_1_System_Double__get_unprocessedValue, (InputControl_1_System_Double_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x0166BB70, double, InputControl_1_System_Double__get_value, (InputControl_1_System_Double_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0166BC40, double *, InputControl_1_System_Double__get_unprocessedValue, (InputControl_1_System_Double_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0166BB70, double *, InputControl_1_System_Double__get_value, (InputControl_1_System_Double_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016562D0, int32_t, InputControl_1_System_Double__get_valueSizeInBytes, (InputControl_1_System_Double_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0166BB10, Type *, InputControl_1_System_Double__get_valueType, (InputControl_1_System_Double_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0166A510, void, InputControl_1_UnityEngine_InputSystem_XR_Eyes___ctor, (InputControl_1_UnityEngine_InputSystem_XR_Eyes_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCDA20, InputControl_1_UnityEngine_InputSystem_XR_Eyes___ctor__MethodInfo); DO_APP_FUNC(0x0166E730, void, InputControl_1_UnityEngine_InputSystem_XR_Eyes__AddProcessor, (InputControl_1_UnityEngine_InputSystem_XR_Eyes_ * __this, Object * processor, MethodInfo * method)); -DO_APP_FUNC(0x01669D60, bool, InputControl_1_UnityEngine_InputSystem_XR_Eyes__CompareValue, (Eyes firstValue, Eyes secondValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8D38, InputControl_1_UnityEngine_InputSystem_XR_Eyes__AddProcessor__MethodInfo); +DO_APP_FUNC(0x01669D60, bool, InputControl_1_UnityEngine_InputSystem_XR_Eyes__CompareValue, (Eyes * firstValue, Eyes * secondValue, MethodInfo * method)); DO_APP_FUNC(0x0166E370, bool, InputControl_1_UnityEngine_InputSystem_XR_Eyes__CompareValue_1, (InputControl_1_UnityEngine_InputSystem_XR_Eyes_ * __this, Void * firstStatePtr, Void * secondStatePtr, MethodInfo * method)); DO_APP_FUNC(0x0166E990, void, InputControl_1_UnityEngine_InputSystem_XR_Eyes__FinishSetup, (InputControl_1_UnityEngine_InputSystem_XR_Eyes_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD9B8, InputControl_1_UnityEngine_InputSystem_XR_Eyes__FinishSetup__MethodInfo); DO_APP_FUNC(0x0166E4E0, Eyes, InputControl_1_UnityEngine_InputSystem_XR_Eyes__ProcessValue, (InputControl_1_UnityEngine_InputSystem_XR_Eyes_ * __this, Eyes value, MethodInfo * method)); -DO_APP_FUNC(0x0166E560, void, InputControl_1_UnityEngine_InputSystem_XR_Eyes__ProcessValue_1, (InputControl_1_UnityEngine_InputSystem_XR_Eyes_ * __this, Eyes value, MethodInfo * method)); +DO_APP_FUNC(0x0166E560, void, InputControl_1_UnityEngine_InputSystem_XR_Eyes__ProcessValue_1, (InputControl_1_UnityEngine_InputSystem_XR_Eyes_ * __this, Eyes * value, MethodInfo * method)); DO_APP_FUNC(0x0166D3E0, Eyes, InputControl_1_UnityEngine_InputSystem_XR_Eyes__ReadDefaultValue, (InputControl_1_UnityEngine_InputSystem_XR_Eyes_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0166D830, Eyes, InputControl_1_UnityEngine_InputSystem_XR_Eyes__ReadUnprocessedValue, (InputControl_1_UnityEngine_InputSystem_XR_Eyes_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0166D710, Eyes, InputControl_1_UnityEngine_InputSystem_XR_Eyes__ReadUnprocessedValueFromStateWithCaching, (InputControl_1_UnityEngine_InputSystem_XR_Eyes_ * __this, Void * statePtr, MethodInfo * method)); DO_APP_FUNC(0x0166D270, Eyes, InputControl_1_UnityEngine_InputSystem_XR_Eyes__ReadValue, (InputControl_1_UnityEngine_InputSystem_XR_Eyes_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0166E110, Object *, InputControl_1_UnityEngine_InputSystem_XR_Eyes__ReadValueFromBufferAsObject, (InputControl_1_UnityEngine_InputSystem_XR_Eyes_ * __this, Void * buffer, int32_t bufferSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8D40, InputControl_1_UnityEngine_InputSystem_XR_Eyes__ReadValueFromBufferAsObject__MethodInfo); DO_APP_FUNC(0x0166D2E0, Eyes, InputControl_1_UnityEngine_InputSystem_XR_Eyes__ReadValueFromPreviousFrame, (InputControl_1_UnityEngine_InputSystem_XR_Eyes_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0166D4B0, Eyes, InputControl_1_UnityEngine_InputSystem_XR_Eyes__ReadValueFromState, (InputControl_1_UnityEngine_InputSystem_XR_Eyes_ * __this, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8D10, InputControl_1_UnityEngine_InputSystem_XR_Eyes__ReadValueFromState__MethodInfo); DO_APP_FUNC(0x0166D8A0, Object *, InputControl_1_UnityEngine_InputSystem_XR_Eyes__ReadValueFromStateAsObject, (InputControl_1_UnityEngine_InputSystem_XR_Eyes_ * __this, Void * statePtr, MethodInfo * method)); DO_APP_FUNC(0x0166D950, void, InputControl_1_UnityEngine_InputSystem_XR_Eyes__ReadValueFromStateIntoBuffer, (InputControl_1_UnityEngine_InputSystem_XR_Eyes_ * __this, Void * statePtr, Void * bufferPtr, int32_t bufferSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8D30, InputControl_1_UnityEngine_InputSystem_XR_Eyes__ReadValueFromStateIntoBuffer__MethodInfo); DO_APP_FUNC(0x0166D5F0, Eyes, InputControl_1_UnityEngine_InputSystem_XR_Eyes__ReadValueFromStateWithCaching, (InputControl_1_UnityEngine_InputSystem_XR_Eyes_ * __this, Void * statePtr, MethodInfo * method)); DO_APP_FUNC(0x0166DBE0, void, InputControl_1_UnityEngine_InputSystem_XR_Eyes__WriteValueFromBufferIntoState, (InputControl_1_UnityEngine_InputSystem_XR_Eyes_ * __this, Void * bufferPtr, int32_t bufferSize, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8D20, InputControl_1_UnityEngine_InputSystem_XR_Eyes__WriteValueFromBufferIntoState__MethodInfo); DO_APP_FUNC(0x0166DE40, void, InputControl_1_UnityEngine_InputSystem_XR_Eyes__WriteValueFromObjectIntoState, (InputControl_1_UnityEngine_InputSystem_XR_Eyes_ * __this, Object * value, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8D58, InputControl_1_UnityEngine_InputSystem_XR_Eyes__WriteValueFromObjectIntoState__MethodInfo); DO_APP_FUNC(0x0166E0A0, void, InputControl_1_UnityEngine_InputSystem_XR_Eyes__WriteValueIntoState, (InputControl_1_UnityEngine_InputSystem_XR_Eyes_ * __this, Eyes value, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8D50, InputControl_1_UnityEngine_InputSystem_XR_Eyes__WriteValueIntoState__MethodInfo); DO_APP_FUNC(0x0166A4F0, InputProcessor_1_UnityEngine_InputSystem_XR_Eyes___Array *, InputControl_1_UnityEngine_InputSystem_XR_Eyes__get_processors, (InputControl_1_UnityEngine_InputSystem_XR_Eyes_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x0166D140, Eyes, InputControl_1_UnityEngine_InputSystem_XR_Eyes__get_unprocessedValue, (InputControl_1_UnityEngine_InputSystem_XR_Eyes_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x0166CFF0, Eyes, InputControl_1_UnityEngine_InputSystem_XR_Eyes__get_value, (InputControl_1_UnityEngine_InputSystem_XR_Eyes_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0166D140, Eyes *, InputControl_1_UnityEngine_InputSystem_XR_Eyes__get_unprocessedValue, (InputControl_1_UnityEngine_InputSystem_XR_Eyes_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0166CFF0, Eyes *, InputControl_1_UnityEngine_InputSystem_XR_Eyes__get_value, (InputControl_1_UnityEngine_InputSystem_XR_Eyes_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016562D0, int32_t, InputControl_1_UnityEngine_InputSystem_XR_Eyes__get_valueSizeInBytes, (InputControl_1_UnityEngine_InputSystem_XR_Eyes_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0166CF90, Type *, InputControl_1_UnityEngine_InputSystem_XR_Eyes__get_valueType, (InputControl_1_UnityEngine_InputSystem_XR_Eyes_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0166A510, void, InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic___ctor, (InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB07F0, InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic___ctor__MethodInfo); DO_APP_FUNC(0x0166F730, void, InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic__AddProcessor, (InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic_ * __this, Object * processor, MethodInfo * method)); -DO_APP_FUNC(0x01669D60, bool, InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic__CompareValue, (Haptic firstValue, Haptic secondValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8CF8, InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic__AddProcessor__MethodInfo); +DO_APP_FUNC(0x01669D60, bool, InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic__CompareValue, (Haptic * firstValue, Haptic * secondValue, MethodInfo * method)); DO_APP_FUNC(0x0166B4F0, bool, InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic__CompareValue_1, (InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic_ * __this, Void * firstStatePtr, Void * secondStatePtr, MethodInfo * method)); DO_APP_FUNC(0x0166F990, void, InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic__FinishSetup, (InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0166B5A0, Haptic, InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic__ProcessValue, (InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic_ * __this, Haptic value, MethodInfo * method)); -DO_APP_FUNC(0x0166B5D0, void, InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic__ProcessValue_1, (InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic_ * __this, Haptic value, MethodInfo * method)); +DO_APP_FUNC(0x0166B5D0, void, InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic__ProcessValue_1, (InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic_ * __this, Haptic * value, MethodInfo * method)); DO_APP_FUNC(0x0166A870, Haptic, InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic__ReadDefaultValue, (InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0166AB60, Haptic, InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic__ReadUnprocessedValue, (InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0166AA80, Haptic, InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic__ReadUnprocessedValueFromStateWithCaching, (InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic_ * __this, Void * statePtr, MethodInfo * method)); DO_APP_FUNC(0x0166A780, Haptic, InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic__ReadValue, (InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0166F510, Object *, InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic__ReadValueFromBufferAsObject, (InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic_ * __this, Void * buffer, int32_t bufferSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8CE8, InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic__ReadValueFromBufferAsObject__MethodInfo); DO_APP_FUNC(0x0166A7C0, Haptic, InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic__ReadValueFromPreviousFrame, (InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0166EDA0, Haptic, InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic__ReadValueFromState, (InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic_ * __this, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8CE0, InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic__ReadValueFromState__MethodInfo); DO_APP_FUNC(0x0166ABA0, Object *, InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic__ReadValueFromStateAsObject, (InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic_ * __this, Void * statePtr, MethodInfo * method)); DO_APP_FUNC(0x0166EE50, void, InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic__ReadValueFromStateIntoBuffer, (InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic_ * __this, Void * statePtr, Void * bufferPtr, int32_t bufferSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8CD8, InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic__ReadValueFromStateIntoBuffer__MethodInfo); DO_APP_FUNC(0x0166A9A0, Haptic, InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic__ReadValueFromStateWithCaching, (InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic_ * __this, Void * statePtr, MethodInfo * method)); DO_APP_FUNC(0x0166F070, void, InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic__WriteValueFromBufferIntoState, (InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic_ * __this, Void * bufferPtr, int32_t bufferSize, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8D00, InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic__WriteValueFromBufferIntoState__MethodInfo); DO_APP_FUNC(0x0166F280, void, InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic__WriteValueFromObjectIntoState, (InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic_ * __this, Object * value, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8D08, InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic__WriteValueFromObjectIntoState__MethodInfo); DO_APP_FUNC(0x0166F4A0, void, InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic__WriteValueIntoState, (InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic_ * __this, Haptic value, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8CF0, InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic__WriteValueIntoState__MethodInfo); DO_APP_FUNC(0x0166A4F0, InputProcessor_1_UnityEngine_XR_OpenXR_Input_Haptic___Array *, InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic__get_processors, (InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x0166ECC0, Haptic, InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic__get_unprocessedValue, (InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x0166EBF0, Haptic, InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic__get_value, (InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0166ECC0, Haptic *, InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic__get_unprocessedValue, (InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0166EBF0, Haptic *, InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic__get_value, (InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016562D0, int32_t, InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic__get_valueSizeInBytes, (InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0166EB90, Type *, InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic__get_valueType, (InputControl_1_UnityEngine_XR_OpenXR_Input_Haptic_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0166A510, void, InputControl_1_System_Int32___ctor, (InputControl_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5320, InputControl_1_System_Int32___ctor__MethodInfo); DO_APP_FUNC(0x01670B70, void, InputControl_1_System_Int32__AddProcessor, (InputControl_1_System_Int32_ * __this, Object * processor, MethodInfo * method)); -DO_APP_FUNC(0x01669D60, bool, InputControl_1_System_Int32__CompareValue, (int32_t firstValue, int32_t secondValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8CA8, InputControl_1_System_Int32__AddProcessor__MethodInfo); +DO_APP_FUNC(0x01669D60, bool, InputControl_1_System_Int32__CompareValue, (int32_t * firstValue, int32_t * secondValue, MethodInfo * method)); DO_APP_FUNC(0x016709C0, bool, InputControl_1_System_Int32__CompareValue_1, (InputControl_1_System_Int32_ * __this, Void * firstStatePtr, Void * secondStatePtr, MethodInfo * method)); DO_APP_FUNC(0x01670DD0, void, InputControl_1_System_Int32__FinishSetup, (InputControl_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01670A70, int32_t, InputControl_1_System_Int32__ProcessValue, (InputControl_1_System_Int32_ * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x01670AA0, void, InputControl_1_System_Int32__ProcessValue_1, (InputControl_1_System_Int32_ * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x01670AA0, void, InputControl_1_System_Int32__ProcessValue_1, (InputControl_1_System_Int32_ * __this, int32_t * value, MethodInfo * method)); DO_APP_FUNC(0x0166A870, int32_t, InputControl_1_System_Int32__ReadDefaultValue, (InputControl_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01670040, int32_t, InputControl_1_System_Int32__ReadUnprocessedValue, (InputControl_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0166FF60, int32_t, InputControl_1_System_Int32__ReadUnprocessedValueFromStateWithCaching, (InputControl_1_System_Int32_ * __this, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCDBD0, InputControl_1_System_Int32__ReadUnprocessedValueFromStateWithCaching__MethodInfo); DO_APP_FUNC(0x0166FDA0, int32_t, InputControl_1_System_Int32__ReadValue, (InputControl_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF588, InputControl_1_System_Int32__ReadValue__MethodInfo); DO_APP_FUNC(0x016707A0, Object *, InputControl_1_System_Int32__ReadValueFromBufferAsObject, (InputControl_1_System_Int32_ * __this, Void * buffer, int32_t bufferSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8CB8, InputControl_1_System_Int32__ReadValueFromBufferAsObject__MethodInfo); DO_APP_FUNC(0x0166A7C0, int32_t, InputControl_1_System_Int32__ReadValueFromPreviousFrame, (InputControl_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0166FDD0, int32_t, InputControl_1_System_Int32__ReadValueFromState, (InputControl_1_System_Int32_ * __this, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8C88, InputControl_1_System_Int32__ReadValueFromState__MethodInfo); DO_APP_FUNC(0x01670070, Object *, InputControl_1_System_Int32__ReadValueFromStateAsObject, (InputControl_1_System_Int32_ * __this, Void * statePtr, MethodInfo * method)); DO_APP_FUNC(0x016700E0, void, InputControl_1_System_Int32__ReadValueFromStateIntoBuffer, (InputControl_1_System_Int32_ * __this, Void * statePtr, Void * bufferPtr, int32_t bufferSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8CD0, InputControl_1_System_Int32__ReadValueFromStateIntoBuffer__MethodInfo); DO_APP_FUNC(0x0166FE80, int32_t, InputControl_1_System_Int32__ReadValueFromStateWithCaching, (InputControl_1_System_Int32_ * __this, Void * statePtr, MethodInfo * method)); DO_APP_FUNC(0x01670300, void, InputControl_1_System_Int32__WriteValueFromBufferIntoState, (InputControl_1_System_Int32_ * __this, Void * bufferPtr, int32_t bufferSize, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8CC8, InputControl_1_System_Int32__WriteValueFromBufferIntoState__MethodInfo); DO_APP_FUNC(0x01670510, void, InputControl_1_System_Int32__WriteValueFromObjectIntoState, (InputControl_1_System_Int32_ * __this, Object * value, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8CA0, InputControl_1_System_Int32__WriteValueFromObjectIntoState__MethodInfo); DO_APP_FUNC(0x01670730, void, InputControl_1_System_Int32__WriteValueIntoState, (InputControl_1_System_Int32_ * __this, int32_t value, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8C98, InputControl_1_System_Int32__WriteValueIntoState__MethodInfo); DO_APP_FUNC(0x0166A4F0, InputProcessor_1_System_Int32___Array *, InputControl_1_System_Int32__get_processors, (InputControl_1_System_Int32_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x0166FCC0, int32_t, InputControl_1_System_Int32__get_unprocessedValue, (InputControl_1_System_Int32_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x0166FBF0, int32_t, InputControl_1_System_Int32__get_value, (InputControl_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0166FCC0, int32_t *, InputControl_1_System_Int32__get_unprocessedValue, (InputControl_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0166FBF0, int32_t *, InputControl_1_System_Int32__get_value, (InputControl_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF5A0, InputControl_1_System_Int32__get_value__MethodInfo); DO_APP_FUNC(0x016562D0, int32_t, InputControl_1_System_Int32__get_valueSizeInBytes, (InputControl_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0166FB90, Type *, InputControl_1_System_Int32__get_valueType, (InputControl_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0166A510, void, InputControl_1_System_Int32Enum___ctor, (InputControl_1_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01671B70, void, InputControl_1_System_Int32Enum__AddProcessor, (InputControl_1_System_Int32Enum_ * __this, Object * processor, MethodInfo * method)); -DO_APP_FUNC(0x01669D60, bool, InputControl_1_System_Int32Enum__CompareValue, (Int32Enum__Enum firstValue, Int32Enum__Enum secondValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8C28, InputControl_1_System_Int32Enum__AddProcessor__MethodInfo); +DO_APP_FUNC(0x01669D60, bool, InputControl_1_System_Int32Enum__CompareValue, (Int32Enum__Enum * firstValue, Int32Enum__Enum * secondValue, MethodInfo * method)); DO_APP_FUNC(0x016709C0, bool, InputControl_1_System_Int32Enum__CompareValue_1, (InputControl_1_System_Int32Enum_ * __this, Void * firstStatePtr, Void * secondStatePtr, MethodInfo * method)); DO_APP_FUNC(0x01671DD0, void, InputControl_1_System_Int32Enum__FinishSetup, (InputControl_1_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01670A70, Int32Enum__Enum, InputControl_1_System_Int32Enum__ProcessValue, (InputControl_1_System_Int32Enum_ * __this, Int32Enum__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x01670AA0, void, InputControl_1_System_Int32Enum__ProcessValue_1, (InputControl_1_System_Int32Enum_ * __this, Int32Enum__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x01670AA0, void, InputControl_1_System_Int32Enum__ProcessValue_1, (InputControl_1_System_Int32Enum_ * __this, Int32Enum__Enum * value, MethodInfo * method)); DO_APP_FUNC(0x0166A870, Int32Enum__Enum, InputControl_1_System_Int32Enum__ReadDefaultValue, (InputControl_1_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01670040, Int32Enum__Enum, InputControl_1_System_Int32Enum__ReadUnprocessedValue, (InputControl_1_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0166FF60, Int32Enum__Enum, InputControl_1_System_Int32Enum__ReadUnprocessedValueFromStateWithCaching, (InputControl_1_System_Int32Enum_ * __this, Void * statePtr, MethodInfo * method)); DO_APP_FUNC(0x0166FDA0, Int32Enum__Enum, InputControl_1_System_Int32Enum__ReadValue, (InputControl_1_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01671950, Object *, InputControl_1_System_Int32Enum__ReadValueFromBufferAsObject, (InputControl_1_System_Int32Enum_ * __this, Void * buffer, int32_t bufferSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8C60, InputControl_1_System_Int32Enum__ReadValueFromBufferAsObject__MethodInfo); DO_APP_FUNC(0x0166A7C0, Int32Enum__Enum, InputControl_1_System_Int32Enum__ReadValueFromPreviousFrame, (InputControl_1_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016711E0, Int32Enum__Enum, InputControl_1_System_Int32Enum__ReadValueFromState, (InputControl_1_System_Int32Enum_ * __this, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8C78, InputControl_1_System_Int32Enum__ReadValueFromState__MethodInfo); DO_APP_FUNC(0x01670070, Object *, InputControl_1_System_Int32Enum__ReadValueFromStateAsObject, (InputControl_1_System_Int32Enum_ * __this, Void * statePtr, MethodInfo * method)); DO_APP_FUNC(0x01671290, void, InputControl_1_System_Int32Enum__ReadValueFromStateIntoBuffer, (InputControl_1_System_Int32Enum_ * __this, Void * statePtr, Void * bufferPtr, int32_t bufferSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8C70, InputControl_1_System_Int32Enum__ReadValueFromStateIntoBuffer__MethodInfo); DO_APP_FUNC(0x0166FE80, Int32Enum__Enum, InputControl_1_System_Int32Enum__ReadValueFromStateWithCaching, (InputControl_1_System_Int32Enum_ * __this, Void * statePtr, MethodInfo * method)); DO_APP_FUNC(0x016714B0, void, InputControl_1_System_Int32Enum__WriteValueFromBufferIntoState, (InputControl_1_System_Int32Enum_ * __this, Void * bufferPtr, int32_t bufferSize, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8C80, InputControl_1_System_Int32Enum__WriteValueFromBufferIntoState__MethodInfo); DO_APP_FUNC(0x016716C0, void, InputControl_1_System_Int32Enum__WriteValueFromObjectIntoState, (InputControl_1_System_Int32Enum_ * __this, Object * value, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8C58, InputControl_1_System_Int32Enum__WriteValueFromObjectIntoState__MethodInfo); DO_APP_FUNC(0x016718E0, void, InputControl_1_System_Int32Enum__WriteValueIntoState, (InputControl_1_System_Int32Enum_ * __this, Int32Enum__Enum value, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8C68, InputControl_1_System_Int32Enum__WriteValueIntoState__MethodInfo); DO_APP_FUNC(0x0166A4F0, InputProcessor_1_System_Int32Enum___Array *, InputControl_1_System_Int32Enum__get_processors, (InputControl_1_System_Int32Enum_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x01671100, Int32Enum__Enum, InputControl_1_System_Int32Enum__get_unprocessedValue, (InputControl_1_System_Int32Enum_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x01671030, Int32Enum__Enum, InputControl_1_System_Int32Enum__get_value, (InputControl_1_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01671100, Int32Enum__Enum *, InputControl_1_System_Int32Enum__get_unprocessedValue, (InputControl_1_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01671030, Int32Enum__Enum *, InputControl_1_System_Int32Enum__get_value, (InputControl_1_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016562D0, int32_t, InputControl_1_System_Int32Enum__get_valueSizeInBytes, (InputControl_1_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01670FD0, Type *, InputControl_1_System_Int32Enum__get_valueType, (InputControl_1_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0166A510, void, InputControl_1_UnityEngine_XR_OpenXR_Input_Pose___ctor, (InputControl_1_UnityEngine_XR_OpenXR_Input_Pose_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0538, InputControl_1_UnityEngine_XR_OpenXR_Input_Pose___ctor__MethodInfo); DO_APP_FUNC(0x016736C0, void, InputControl_1_UnityEngine_XR_OpenXR_Input_Pose__AddProcessor, (InputControl_1_UnityEngine_XR_OpenXR_Input_Pose_ * __this, Object * processor, MethodInfo * method)); -DO_APP_FUNC(0x01669D60, bool, InputControl_1_UnityEngine_XR_OpenXR_Input_Pose__CompareValue, (Pose_1 firstValue, Pose_1 secondValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8BF8, InputControl_1_UnityEngine_XR_OpenXR_Input_Pose__AddProcessor__MethodInfo); +DO_APP_FUNC(0x01669D60, bool, InputControl_1_UnityEngine_XR_OpenXR_Input_Pose__CompareValue, (Pose_1 * firstValue, Pose_1 * secondValue, MethodInfo * method)); DO_APP_FUNC(0x01673350, bool, InputControl_1_UnityEngine_XR_OpenXR_Input_Pose__CompareValue_1, (InputControl_1_UnityEngine_XR_OpenXR_Input_Pose_ * __this, Void * firstStatePtr, Void * secondStatePtr, MethodInfo * method)); DO_APP_FUNC(0x01673920, void, InputControl_1_UnityEngine_XR_OpenXR_Input_Pose__FinishSetup, (InputControl_1_UnityEngine_XR_OpenXR_Input_Pose_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0548, InputControl_1_UnityEngine_XR_OpenXR_Input_Pose__FinishSetup__MethodInfo); DO_APP_FUNC(0x016734A0, Pose_1, InputControl_1_UnityEngine_XR_OpenXR_Input_Pose__ProcessValue, (InputControl_1_UnityEngine_XR_OpenXR_Input_Pose_ * __this, Pose_1 value, MethodInfo * method)); -DO_APP_FUNC(0x01673510, void, InputControl_1_UnityEngine_XR_OpenXR_Input_Pose__ProcessValue_1, (InputControl_1_UnityEngine_XR_OpenXR_Input_Pose_ * __this, Pose_1 value, MethodInfo * method)); +DO_APP_FUNC(0x01673510, void, InputControl_1_UnityEngine_XR_OpenXR_Input_Pose__ProcessValue_1, (InputControl_1_UnityEngine_XR_OpenXR_Input_Pose_ * __this, Pose_1 * value, MethodInfo * method)); DO_APP_FUNC(0x016723F0, Pose_1, InputControl_1_UnityEngine_XR_OpenXR_Input_Pose__ReadDefaultValue, (InputControl_1_UnityEngine_XR_OpenXR_Input_Pose_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01672800, Pose_1, InputControl_1_UnityEngine_XR_OpenXR_Input_Pose__ReadUnprocessedValue, (InputControl_1_UnityEngine_XR_OpenXR_Input_Pose_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016726F0, Pose_1, InputControl_1_UnityEngine_XR_OpenXR_Input_Pose__ReadUnprocessedValueFromStateWithCaching, (InputControl_1_UnityEngine_XR_OpenXR_Input_Pose_ * __this, Void * statePtr, MethodInfo * method)); DO_APP_FUNC(0x01672290, Pose_1, InputControl_1_UnityEngine_XR_OpenXR_Input_Pose__ReadValue, (InputControl_1_UnityEngine_XR_OpenXR_Input_Pose_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016730D0, Object *, InputControl_1_UnityEngine_XR_OpenXR_Input_Pose__ReadValueFromBufferAsObject, (InputControl_1_UnityEngine_XR_OpenXR_Input_Pose_ * __this, Void * buffer, int32_t bufferSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8C00, InputControl_1_UnityEngine_XR_OpenXR_Input_Pose__ReadValueFromBufferAsObject__MethodInfo); DO_APP_FUNC(0x01672300, Pose_1, InputControl_1_UnityEngine_XR_OpenXR_Input_Pose__ReadValueFromPreviousFrame, (InputControl_1_UnityEngine_XR_OpenXR_Input_Pose_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016724B0, Pose_1, InputControl_1_UnityEngine_XR_OpenXR_Input_Pose__ReadValueFromState, (InputControl_1_UnityEngine_XR_OpenXR_Input_Pose_ * __this, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8C40, InputControl_1_UnityEngine_XR_OpenXR_Input_Pose__ReadValueFromState__MethodInfo); DO_APP_FUNC(0x01672870, Object *, InputControl_1_UnityEngine_XR_OpenXR_Input_Pose__ReadValueFromStateAsObject, (InputControl_1_UnityEngine_XR_OpenXR_Input_Pose_ * __this, Void * statePtr, MethodInfo * method)); DO_APP_FUNC(0x01672910, void, InputControl_1_UnityEngine_XR_OpenXR_Input_Pose__ReadValueFromStateIntoBuffer, (InputControl_1_UnityEngine_XR_OpenXR_Input_Pose_ * __this, Void * statePtr, Void * bufferPtr, int32_t bufferSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8C50, InputControl_1_UnityEngine_XR_OpenXR_Input_Pose__ReadValueFromStateIntoBuffer__MethodInfo); DO_APP_FUNC(0x016725E0, Pose_1, InputControl_1_UnityEngine_XR_OpenXR_Input_Pose__ReadValueFromStateWithCaching, (InputControl_1_UnityEngine_XR_OpenXR_Input_Pose_ * __this, Void * statePtr, MethodInfo * method)); DO_APP_FUNC(0x01672B90, void, InputControl_1_UnityEngine_XR_OpenXR_Input_Pose__WriteValueFromBufferIntoState, (InputControl_1_UnityEngine_XR_OpenXR_Input_Pose_ * __this, Void * bufferPtr, int32_t bufferSize, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8C48, InputControl_1_UnityEngine_XR_OpenXR_Input_Pose__WriteValueFromBufferIntoState__MethodInfo); DO_APP_FUNC(0x01672E10, void, InputControl_1_UnityEngine_XR_OpenXR_Input_Pose__WriteValueFromObjectIntoState, (InputControl_1_UnityEngine_XR_OpenXR_Input_Pose_ * __this, Object * value, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8C38, InputControl_1_UnityEngine_XR_OpenXR_Input_Pose__WriteValueFromObjectIntoState__MethodInfo); DO_APP_FUNC(0x01673060, void, InputControl_1_UnityEngine_XR_OpenXR_Input_Pose__WriteValueIntoState, (InputControl_1_UnityEngine_XR_OpenXR_Input_Pose_ * __this, Pose_1 value, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8C30, InputControl_1_UnityEngine_XR_OpenXR_Input_Pose__WriteValueIntoState__MethodInfo); DO_APP_FUNC(0x0166A4F0, InputProcessor_1_UnityEngine_XR_OpenXR_Input_Pose___Array *, InputControl_1_UnityEngine_XR_OpenXR_Input_Pose__get_processors, (InputControl_1_UnityEngine_XR_OpenXR_Input_Pose_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x01672170, Pose_1, InputControl_1_UnityEngine_XR_OpenXR_Input_Pose__get_unprocessedValue, (InputControl_1_UnityEngine_XR_OpenXR_Input_Pose_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x01672030, Pose_1, InputControl_1_UnityEngine_XR_OpenXR_Input_Pose__get_value, (InputControl_1_UnityEngine_XR_OpenXR_Input_Pose_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01672170, Pose_1 *, InputControl_1_UnityEngine_XR_OpenXR_Input_Pose__get_unprocessedValue, (InputControl_1_UnityEngine_XR_OpenXR_Input_Pose_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01672030, Pose_1 *, InputControl_1_UnityEngine_XR_OpenXR_Input_Pose__get_value, (InputControl_1_UnityEngine_XR_OpenXR_Input_Pose_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016562D0, int32_t, InputControl_1_UnityEngine_XR_OpenXR_Input_Pose__get_valueSizeInBytes, (InputControl_1_UnityEngine_XR_OpenXR_Input_Pose_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01671FD0, Type *, InputControl_1_UnityEngine_XR_OpenXR_Input_Pose__get_valueType, (InputControl_1_UnityEngine_XR_OpenXR_Input_Pose_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0166A510, void, InputControl_1_UnityEngine_InputSystem_XR_PoseState___ctor, (InputControl_1_UnityEngine_InputSystem_XR_PoseState_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCDC20, InputControl_1_UnityEngine_InputSystem_XR_PoseState___ctor__MethodInfo); DO_APP_FUNC(0x01674950, void, InputControl_1_UnityEngine_InputSystem_XR_PoseState__AddProcessor, (InputControl_1_UnityEngine_InputSystem_XR_PoseState_ * __this, Object * processor, MethodInfo * method)); -DO_APP_FUNC(0x01669D60, bool, InputControl_1_UnityEngine_InputSystem_XR_PoseState__CompareValue, (PoseState firstValue, PoseState secondValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8BD8, InputControl_1_UnityEngine_InputSystem_XR_PoseState__AddProcessor__MethodInfo); +DO_APP_FUNC(0x01669D60, bool, InputControl_1_UnityEngine_InputSystem_XR_PoseState__CompareValue, (PoseState * firstValue, PoseState * secondValue, MethodInfo * method)); DO_APP_FUNC(0x01673350, bool, InputControl_1_UnityEngine_InputSystem_XR_PoseState__CompareValue_1, (InputControl_1_UnityEngine_InputSystem_XR_PoseState_ * __this, Void * firstStatePtr, Void * secondStatePtr, MethodInfo * method)); DO_APP_FUNC(0x01674BB0, void, InputControl_1_UnityEngine_InputSystem_XR_PoseState__FinishSetup, (InputControl_1_UnityEngine_InputSystem_XR_PoseState_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCDC28, InputControl_1_UnityEngine_InputSystem_XR_PoseState__FinishSetup__MethodInfo); DO_APP_FUNC(0x016734A0, PoseState, InputControl_1_UnityEngine_InputSystem_XR_PoseState__ProcessValue, (InputControl_1_UnityEngine_InputSystem_XR_PoseState_ * __this, PoseState value, MethodInfo * method)); -DO_APP_FUNC(0x01673510, void, InputControl_1_UnityEngine_InputSystem_XR_PoseState__ProcessValue_1, (InputControl_1_UnityEngine_InputSystem_XR_PoseState_ * __this, PoseState value, MethodInfo * method)); +DO_APP_FUNC(0x01673510, void, InputControl_1_UnityEngine_InputSystem_XR_PoseState__ProcessValue_1, (InputControl_1_UnityEngine_InputSystem_XR_PoseState_ * __this, PoseState * value, MethodInfo * method)); DO_APP_FUNC(0x016723F0, PoseState, InputControl_1_UnityEngine_InputSystem_XR_PoseState__ReadDefaultValue, (InputControl_1_UnityEngine_InputSystem_XR_PoseState_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01672800, PoseState, InputControl_1_UnityEngine_InputSystem_XR_PoseState__ReadUnprocessedValue, (InputControl_1_UnityEngine_InputSystem_XR_PoseState_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016726F0, PoseState, InputControl_1_UnityEngine_InputSystem_XR_PoseState__ReadUnprocessedValueFromStateWithCaching, (InputControl_1_UnityEngine_InputSystem_XR_PoseState_ * __this, Void * statePtr, MethodInfo * method)); DO_APP_FUNC(0x01672290, PoseState, InputControl_1_UnityEngine_InputSystem_XR_PoseState__ReadValue, (InputControl_1_UnityEngine_InputSystem_XR_PoseState_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016746D0, Object *, InputControl_1_UnityEngine_InputSystem_XR_PoseState__ReadValueFromBufferAsObject, (InputControl_1_UnityEngine_InputSystem_XR_PoseState_ * __this, Void * buffer, int32_t bufferSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8BC8, InputControl_1_UnityEngine_InputSystem_XR_PoseState__ReadValueFromBufferAsObject__MethodInfo); DO_APP_FUNC(0x01672300, PoseState, InputControl_1_UnityEngine_InputSystem_XR_PoseState__ReadValueFromPreviousFrame, (InputControl_1_UnityEngine_InputSystem_XR_PoseState_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01673DE0, PoseState, InputControl_1_UnityEngine_InputSystem_XR_PoseState__ReadValueFromState, (InputControl_1_UnityEngine_InputSystem_XR_PoseState_ * __this, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8C20, InputControl_1_UnityEngine_InputSystem_XR_PoseState__ReadValueFromState__MethodInfo); DO_APP_FUNC(0x01672870, Object *, InputControl_1_UnityEngine_InputSystem_XR_PoseState__ReadValueFromStateAsObject, (InputControl_1_UnityEngine_InputSystem_XR_PoseState_ * __this, Void * statePtr, MethodInfo * method)); DO_APP_FUNC(0x01673F10, void, InputControl_1_UnityEngine_InputSystem_XR_PoseState__ReadValueFromStateIntoBuffer, (InputControl_1_UnityEngine_InputSystem_XR_PoseState_ * __this, Void * statePtr, Void * bufferPtr, int32_t bufferSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8C18, InputControl_1_UnityEngine_InputSystem_XR_PoseState__ReadValueFromStateIntoBuffer__MethodInfo); DO_APP_FUNC(0x016725E0, PoseState, InputControl_1_UnityEngine_InputSystem_XR_PoseState__ReadValueFromStateWithCaching, (InputControl_1_UnityEngine_InputSystem_XR_PoseState_ * __this, Void * statePtr, MethodInfo * method)); DO_APP_FUNC(0x01674190, void, InputControl_1_UnityEngine_InputSystem_XR_PoseState__WriteValueFromBufferIntoState, (InputControl_1_UnityEngine_InputSystem_XR_PoseState_ * __this, Void * bufferPtr, int32_t bufferSize, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8C08, InputControl_1_UnityEngine_InputSystem_XR_PoseState__WriteValueFromBufferIntoState__MethodInfo); DO_APP_FUNC(0x01674410, void, InputControl_1_UnityEngine_InputSystem_XR_PoseState__WriteValueFromObjectIntoState, (InputControl_1_UnityEngine_InputSystem_XR_PoseState_ * __this, Object * value, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8C10, InputControl_1_UnityEngine_InputSystem_XR_PoseState__WriteValueFromObjectIntoState__MethodInfo); DO_APP_FUNC(0x01674660, void, InputControl_1_UnityEngine_InputSystem_XR_PoseState__WriteValueIntoState, (InputControl_1_UnityEngine_InputSystem_XR_PoseState_ * __this, PoseState value, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8BD0, InputControl_1_UnityEngine_InputSystem_XR_PoseState__WriteValueIntoState__MethodInfo); DO_APP_FUNC(0x0166A4F0, InputProcessor_1_UnityEngine_InputSystem_XR_PoseState___Array *, InputControl_1_UnityEngine_InputSystem_XR_PoseState__get_processors, (InputControl_1_UnityEngine_InputSystem_XR_PoseState_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x01673CC0, PoseState, InputControl_1_UnityEngine_InputSystem_XR_PoseState__get_unprocessedValue, (InputControl_1_UnityEngine_InputSystem_XR_PoseState_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x01673B80, PoseState, InputControl_1_UnityEngine_InputSystem_XR_PoseState__get_value, (InputControl_1_UnityEngine_InputSystem_XR_PoseState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01673CC0, PoseState *, InputControl_1_UnityEngine_InputSystem_XR_PoseState__get_unprocessedValue, (InputControl_1_UnityEngine_InputSystem_XR_PoseState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01673B80, PoseState *, InputControl_1_UnityEngine_InputSystem_XR_PoseState__get_value, (InputControl_1_UnityEngine_InputSystem_XR_PoseState_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016562D0, int32_t, InputControl_1_UnityEngine_InputSystem_XR_PoseState__get_valueSizeInBytes, (InputControl_1_UnityEngine_InputSystem_XR_PoseState_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01673B20, Type *, InputControl_1_UnityEngine_InputSystem_XR_PoseState__get_valueType, (InputControl_1_UnityEngine_InputSystem_XR_PoseState_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0166A510, void, InputControl_1_UnityEngine_Quaternion___ctor, (InputControl_1_UnityEngine_Quaternion_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC52E0, InputControl_1_UnityEngine_Quaternion___ctor__MethodInfo); DO_APP_FUNC(0x01676070, void, InputControl_1_UnityEngine_Quaternion__AddProcessor, (InputControl_1_UnityEngine_Quaternion_ * __this, Object * processor, MethodInfo * method)); -DO_APP_FUNC(0x01669D60, bool, InputControl_1_UnityEngine_Quaternion__CompareValue, (Quaternion firstValue, Quaternion secondValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8BA0, InputControl_1_UnityEngine_Quaternion__AddProcessor__MethodInfo); +DO_APP_FUNC(0x01669D60, bool, InputControl_1_UnityEngine_Quaternion__CompareValue, (Quaternion * firstValue, Quaternion * secondValue, MethodInfo * method)); DO_APP_FUNC(0x01675E40, bool, InputControl_1_UnityEngine_Quaternion__CompareValue_1, (InputControl_1_UnityEngine_Quaternion_ * __this, Void * firstStatePtr, Void * secondStatePtr, MethodInfo * method)); DO_APP_FUNC(0x016762D0, void, InputControl_1_UnityEngine_Quaternion__FinishSetup, (InputControl_1_UnityEngine_Quaternion_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC52C8, InputControl_1_UnityEngine_Quaternion__FinishSetup__MethodInfo); DO_APP_FUNC(0x01675F20, Quaternion, InputControl_1_UnityEngine_Quaternion__ProcessValue, (InputControl_1_UnityEngine_Quaternion_ * __this, Quaternion value, MethodInfo * method)); -DO_APP_FUNC(0x01675F70, void, InputControl_1_UnityEngine_Quaternion__ProcessValue_1, (InputControl_1_UnityEngine_Quaternion_ * __this, Quaternion value, MethodInfo * method)); +DO_APP_FUNC(0x01675F70, void, InputControl_1_UnityEngine_Quaternion__ProcessValue_1, (InputControl_1_UnityEngine_Quaternion_ * __this, Quaternion * value, MethodInfo * method)); DO_APP_FUNC(0x01675100, Quaternion, InputControl_1_UnityEngine_Quaternion__ReadDefaultValue, (InputControl_1_UnityEngine_Quaternion_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01675460, Quaternion, InputControl_1_UnityEngine_Quaternion__ReadUnprocessedValue, (InputControl_1_UnityEngine_Quaternion_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01675370, Quaternion, InputControl_1_UnityEngine_Quaternion__ReadUnprocessedValueFromStateWithCaching, (InputControl_1_UnityEngine_Quaternion_ * __this, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCDBC8, InputControl_1_UnityEngine_Quaternion__ReadUnprocessedValueFromStateWithCaching__MethodInfo); DO_APP_FUNC(0x01674FE0, Quaternion, InputControl_1_UnityEngine_Quaternion__ReadValue, (InputControl_1_UnityEngine_Quaternion_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01675C20, Object *, InputControl_1_UnityEngine_Quaternion__ReadValueFromBufferAsObject, (InputControl_1_UnityEngine_Quaternion_ * __this, Void * buffer, int32_t bufferSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8BA8, InputControl_1_UnityEngine_Quaternion__ReadValueFromBufferAsObject__MethodInfo); DO_APP_FUNC(0x01675030, Quaternion, InputControl_1_UnityEngine_Quaternion__ReadValueFromPreviousFrame, (InputControl_1_UnityEngine_Quaternion_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016751A0, Quaternion, InputControl_1_UnityEngine_Quaternion__ReadValueFromState, (InputControl_1_UnityEngine_Quaternion_ * __this, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8BF0, InputControl_1_UnityEngine_Quaternion__ReadValueFromState__MethodInfo); DO_APP_FUNC(0x016754B0, Object *, InputControl_1_UnityEngine_Quaternion__ReadValueFromStateAsObject, (InputControl_1_UnityEngine_Quaternion_ * __this, Void * statePtr, MethodInfo * method)); DO_APP_FUNC(0x01675530, void, InputControl_1_UnityEngine_Quaternion__ReadValueFromStateIntoBuffer, (InputControl_1_UnityEngine_Quaternion_ * __this, Void * statePtr, Void * bufferPtr, int32_t bufferSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8BE8, InputControl_1_UnityEngine_Quaternion__ReadValueFromStateIntoBuffer__MethodInfo); DO_APP_FUNC(0x01675280, Quaternion, InputControl_1_UnityEngine_Quaternion__ReadValueFromStateWithCaching, (InputControl_1_UnityEngine_Quaternion_ * __this, Void * statePtr, MethodInfo * method)); DO_APP_FUNC(0x01675770, void, InputControl_1_UnityEngine_Quaternion__WriteValueFromBufferIntoState, (InputControl_1_UnityEngine_Quaternion_ * __this, Void * bufferPtr, int32_t bufferSize, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8BE0, InputControl_1_UnityEngine_Quaternion__WriteValueFromBufferIntoState__MethodInfo); DO_APP_FUNC(0x01675990, void, InputControl_1_UnityEngine_Quaternion__WriteValueFromObjectIntoState, (InputControl_1_UnityEngine_Quaternion_ * __this, Object * value, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8B98, InputControl_1_UnityEngine_Quaternion__WriteValueFromObjectIntoState__MethodInfo); DO_APP_FUNC(0x01675BB0, void, InputControl_1_UnityEngine_Quaternion__WriteValueIntoState, (InputControl_1_UnityEngine_Quaternion_ * __this, Quaternion value, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8B90, InputControl_1_UnityEngine_Quaternion__WriteValueIntoState__MethodInfo); DO_APP_FUNC(0x0166A4F0, InputProcessor_1_UnityEngine_Quaternion___Array *, InputControl_1_UnityEngine_Quaternion__get_processors, (InputControl_1_UnityEngine_Quaternion_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x01674EF0, Quaternion, InputControl_1_UnityEngine_Quaternion__get_unprocessedValue, (InputControl_1_UnityEngine_Quaternion_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x01674E10, Quaternion, InputControl_1_UnityEngine_Quaternion__get_value, (InputControl_1_UnityEngine_Quaternion_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01674EF0, Quaternion *, InputControl_1_UnityEngine_Quaternion__get_unprocessedValue, (InputControl_1_UnityEngine_Quaternion_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01674E10, Quaternion *, InputControl_1_UnityEngine_Quaternion__get_value, (InputControl_1_UnityEngine_Quaternion_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016562D0, int32_t, InputControl_1_UnityEngine_Quaternion__get_valueSizeInBytes, (InputControl_1_UnityEngine_Quaternion_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01674DB0, Type *, InputControl_1_UnityEngine_Quaternion__get_valueType, (InputControl_1_UnityEngine_Quaternion_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0166A510, void, InputControl_1_System_Single___ctor, (InputControl_1_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5358, InputControl_1_System_Single___ctor__MethodInfo); DO_APP_FUNC(0x016774F0, void, InputControl_1_System_Single__AddProcessor, (InputControl_1_System_Single_ * __this, Object * processor, MethodInfo * method)); -DO_APP_FUNC(0x01669D60, bool, InputControl_1_System_Single__CompareValue, (float firstValue, float secondValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8B58, InputControl_1_System_Single__AddProcessor__MethodInfo); +DO_APP_FUNC(0x01669D60, bool, InputControl_1_System_Single__CompareValue, (float * firstValue, float * secondValue, MethodInfo * method)); DO_APP_FUNC(0x01677320, bool, InputControl_1_System_Single__CompareValue_1, (InputControl_1_System_Single_ * __this, Void * firstStatePtr, Void * secondStatePtr, MethodInfo * method)); DO_APP_FUNC(0x01677750, void, InputControl_1_System_Single__FinishSetup, (InputControl_1_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5370, InputControl_1_System_Single__FinishSetup__MethodInfo); DO_APP_FUNC(0x016773E0, float, InputControl_1_System_Single__ProcessValue, (InputControl_1_System_Single_ * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x01677410, void, InputControl_1_System_Single__ProcessValue_1, (InputControl_1_System_Single_ * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x01677410, void, InputControl_1_System_Single__ProcessValue_1, (InputControl_1_System_Single_ * __this, float * value, MethodInfo * method)); DO_APP_FUNC(0x0166A870, float, InputControl_1_System_Single__ReadDefaultValue, (InputControl_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01676990, float, InputControl_1_System_Single__ReadUnprocessedValue, (InputControl_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016768B0, float, InputControl_1_System_Single__ReadUnprocessedValueFromStateWithCaching, (InputControl_1_System_Single_ * __this, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC52D0, InputControl_1_System_Single__ReadUnprocessedValueFromStateWithCaching__MethodInfo); DO_APP_FUNC(0x016766E0, float, InputControl_1_System_Single__ReadValue, (InputControl_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01677100, Object *, InputControl_1_System_Single__ReadValueFromBufferAsObject, (InputControl_1_System_Single_ * __this, Void * buffer, int32_t bufferSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8B68, InputControl_1_System_Single__ReadValueFromBufferAsObject__MethodInfo); DO_APP_FUNC(0x0166A7C0, float, InputControl_1_System_Single__ReadValueFromPreviousFrame, (InputControl_1_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5330, InputControl_1_System_Single__ReadValueFromPreviousFrame__MethodInfo); DO_APP_FUNC(0x01676720, float, InputControl_1_System_Single__ReadValueFromState, (InputControl_1_System_Single_ * __this, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8BB8, InputControl_1_System_Single__ReadValueFromState__MethodInfo); DO_APP_FUNC(0x016769D0, Object *, InputControl_1_System_Single__ReadValueFromStateAsObject, (InputControl_1_System_Single_ * __this, Void * statePtr, MethodInfo * method)); DO_APP_FUNC(0x01676A40, void, InputControl_1_System_Single__ReadValueFromStateIntoBuffer, (InputControl_1_System_Single_ * __this, Void * statePtr, Void * bufferPtr, int32_t bufferSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8BB0, InputControl_1_System_Single__ReadValueFromStateIntoBuffer__MethodInfo); DO_APP_FUNC(0x016767D0, float, InputControl_1_System_Single__ReadValueFromStateWithCaching, (InputControl_1_System_Single_ * __this, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5368, InputControl_1_System_Single__ReadValueFromStateWithCaching__MethodInfo); DO_APP_FUNC(0x01676C60, void, InputControl_1_System_Single__WriteValueFromBufferIntoState, (InputControl_1_System_Single_ * __this, Void * bufferPtr, int32_t bufferSize, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8BC0, InputControl_1_System_Single__WriteValueFromBufferIntoState__MethodInfo); DO_APP_FUNC(0x01676E70, void, InputControl_1_System_Single__WriteValueFromObjectIntoState, (InputControl_1_System_Single_ * __this, Object * value, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8B60, InputControl_1_System_Single__WriteValueFromObjectIntoState__MethodInfo); DO_APP_FUNC(0x01677090, void, InputControl_1_System_Single__WriteValueIntoState, (InputControl_1_System_Single_ * __this, float value, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8B70, InputControl_1_System_Single__WriteValueIntoState__MethodInfo); DO_APP_FUNC(0x0166A4F0, InputProcessor_1_System_Single___Array *, InputControl_1_System_Single__get_processors, (InputControl_1_System_Single_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x01676600, float, InputControl_1_System_Single__get_unprocessedValue, (InputControl_1_System_Single_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x01676530, float, InputControl_1_System_Single__get_value, (InputControl_1_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01676600, float *, InputControl_1_System_Single__get_unprocessedValue, (InputControl_1_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01676530, float *, InputControl_1_System_Single__get_value, (InputControl_1_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5328, InputControl_1_System_Single__get_value__MethodInfo); DO_APP_FUNC(0x016562D0, int32_t, InputControl_1_System_Single__get_valueSizeInBytes, (InputControl_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016764D0, Type *, InputControl_1_System_Single__get_valueType, (InputControl_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0166A510, void, InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState___ctor, (InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC52E8, InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState___ctor__MethodInfo); DO_APP_FUNC(0x01678F90, void, InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState__AddProcessor, (InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState_ * __this, Object * processor, MethodInfo * method)); -DO_APP_FUNC(0x01669D60, bool, InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState__CompareValue, (TouchState firstValue, TouchState secondValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8B28, InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState__AddProcessor__MethodInfo); +DO_APP_FUNC(0x01669D60, bool, InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState__CompareValue, (TouchState * firstValue, TouchState * secondValue, MethodInfo * method)); DO_APP_FUNC(0x01678C40, bool, InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState__CompareValue_1, (InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState_ * __this, Void * firstStatePtr, Void * secondStatePtr, MethodInfo * method)); DO_APP_FUNC(0x016791F0, void, InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState__FinishSetup, (InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC52F0, InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState__FinishSetup__MethodInfo); DO_APP_FUNC(0x01678D80, TouchState, InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState__ProcessValue, (InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState_ * __this, TouchState value, MethodInfo * method)); -DO_APP_FUNC(0x01678DF0, void, InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState__ProcessValue_1, (InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState_ * __this, TouchState value, MethodInfo * method)); +DO_APP_FUNC(0x01678DF0, void, InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState__ProcessValue_1, (InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState_ * __this, TouchState * value, MethodInfo * method)); DO_APP_FUNC(0x01677D30, TouchState, InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState__ReadDefaultValue, (InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01678130, TouchState, InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState__ReadUnprocessedValue, (InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01678020, TouchState, InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState__ReadUnprocessedValueFromStateWithCaching, (InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState_ * __this, Void * statePtr, MethodInfo * method)); DO_APP_FUNC(0x01677BF0, TouchState, InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState__ReadValue, (InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016789D0, Object *, InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState__ReadValueFromBufferAsObject, (InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState_ * __this, Void * buffer, int32_t bufferSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8B30, InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState__ReadValueFromBufferAsObject__MethodInfo); DO_APP_FUNC(0x01677C50, TouchState, InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState__ReadValueFromPreviousFrame, (InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01677DF0, TouchState, InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState__ReadValueFromState, (InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState_ * __this, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8B78, InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState__ReadValueFromState__MethodInfo); DO_APP_FUNC(0x01678190, Object *, InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState__ReadValueFromStateAsObject, (InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState_ * __this, Void * statePtr, MethodInfo * method)); DO_APP_FUNC(0x01678230, void, InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState__ReadValueFromStateIntoBuffer, (InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState_ * __this, Void * statePtr, Void * bufferPtr, int32_t bufferSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8B88, InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState__ReadValueFromStateIntoBuffer__MethodInfo); DO_APP_FUNC(0x01677F10, TouchState, InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState__ReadValueFromStateWithCaching, (InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState_ * __this, Void * statePtr, MethodInfo * method)); DO_APP_FUNC(0x016784B0, void, InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState__WriteValueFromBufferIntoState, (InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState_ * __this, Void * bufferPtr, int32_t bufferSize, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8B80, InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState__WriteValueFromBufferIntoState__MethodInfo); DO_APP_FUNC(0x01678720, void, InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState__WriteValueFromObjectIntoState, (InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState_ * __this, Object * value, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8B40, InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState__WriteValueFromObjectIntoState__MethodInfo); DO_APP_FUNC(0x01678960, void, InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState__WriteValueIntoState, (InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState_ * __this, TouchState value, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8B38, InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState__WriteValueIntoState__MethodInfo); DO_APP_FUNC(0x0166A4F0, InputProcessor_1_UnityEngine_InputSystem_LowLevel_TouchState___Array *, InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState__get_processors, (InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x01677AE0, TouchState, InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState__get_unprocessedValue, (InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x016779B0, TouchState, InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState__get_value, (InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01677AE0, TouchState *, InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState__get_unprocessedValue, (InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016779B0, TouchState *, InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState__get_value, (InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1618, InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState__get_value__MethodInfo); DO_APP_FUNC(0x016562D0, int32_t, InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState__get_valueSizeInBytes, (InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01677950, Type *, InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState__get_valueType, (InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0166A510, void, InputControl_1_System_UInt32___ctor, (InputControl_1_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01679F90, void, InputControl_1_System_UInt32__AddProcessor, (InputControl_1_System_UInt32_ * __this, Object * processor, MethodInfo * method)); -DO_APP_FUNC(0x01669D60, bool, InputControl_1_System_UInt32__CompareValue, (uint32_t firstValue, uint32_t secondValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8B08, InputControl_1_System_UInt32__AddProcessor__MethodInfo); +DO_APP_FUNC(0x01669D60, bool, InputControl_1_System_UInt32__CompareValue, (uint32_t * firstValue, uint32_t * secondValue, MethodInfo * method)); DO_APP_FUNC(0x016709C0, bool, InputControl_1_System_UInt32__CompareValue_1, (InputControl_1_System_UInt32_ * __this, Void * firstStatePtr, Void * secondStatePtr, MethodInfo * method)); DO_APP_FUNC(0x0167A1F0, void, InputControl_1_System_UInt32__FinishSetup, (InputControl_1_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01670A70, uint32_t, InputControl_1_System_UInt32__ProcessValue, (InputControl_1_System_UInt32_ * __this, uint32_t value, MethodInfo * method)); -DO_APP_FUNC(0x01670AA0, void, InputControl_1_System_UInt32__ProcessValue_1, (InputControl_1_System_UInt32_ * __this, uint32_t value, MethodInfo * method)); +DO_APP_FUNC(0x01670AA0, void, InputControl_1_System_UInt32__ProcessValue_1, (InputControl_1_System_UInt32_ * __this, uint32_t * value, MethodInfo * method)); DO_APP_FUNC(0x0166A870, uint32_t, InputControl_1_System_UInt32__ReadDefaultValue, (InputControl_1_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01670040, uint32_t, InputControl_1_System_UInt32__ReadUnprocessedValue, (InputControl_1_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0166FF60, uint32_t, InputControl_1_System_UInt32__ReadUnprocessedValueFromStateWithCaching, (InputControl_1_System_UInt32_ * __this, Void * statePtr, MethodInfo * method)); DO_APP_FUNC(0x0166FDA0, uint32_t, InputControl_1_System_UInt32__ReadValue, (InputControl_1_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01679D70, Object *, InputControl_1_System_UInt32__ReadValueFromBufferAsObject, (InputControl_1_System_UInt32_ * __this, Void * buffer, int32_t bufferSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8AF8, InputControl_1_System_UInt32__ReadValueFromBufferAsObject__MethodInfo); DO_APP_FUNC(0x0166A7C0, uint32_t, InputControl_1_System_UInt32__ReadValueFromPreviousFrame, (InputControl_1_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01679600, uint32_t, InputControl_1_System_UInt32__ReadValueFromState, (InputControl_1_System_UInt32_ * __this, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8B50, InputControl_1_System_UInt32__ReadValueFromState__MethodInfo); DO_APP_FUNC(0x01670070, Object *, InputControl_1_System_UInt32__ReadValueFromStateAsObject, (InputControl_1_System_UInt32_ * __this, Void * statePtr, MethodInfo * method)); DO_APP_FUNC(0x016796B0, void, InputControl_1_System_UInt32__ReadValueFromStateIntoBuffer, (InputControl_1_System_UInt32_ * __this, Void * statePtr, Void * bufferPtr, int32_t bufferSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8B48, InputControl_1_System_UInt32__ReadValueFromStateIntoBuffer__MethodInfo); DO_APP_FUNC(0x0166FE80, uint32_t, InputControl_1_System_UInt32__ReadValueFromStateWithCaching, (InputControl_1_System_UInt32_ * __this, Void * statePtr, MethodInfo * method)); DO_APP_FUNC(0x016798D0, void, InputControl_1_System_UInt32__WriteValueFromBufferIntoState, (InputControl_1_System_UInt32_ * __this, Void * bufferPtr, int32_t bufferSize, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8B10, InputControl_1_System_UInt32__WriteValueFromBufferIntoState__MethodInfo); DO_APP_FUNC(0x01679AE0, void, InputControl_1_System_UInt32__WriteValueFromObjectIntoState, (InputControl_1_System_UInt32_ * __this, Object * value, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8B18, InputControl_1_System_UInt32__WriteValueFromObjectIntoState__MethodInfo); DO_APP_FUNC(0x01679D00, void, InputControl_1_System_UInt32__WriteValueIntoState, (InputControl_1_System_UInt32_ * __this, uint32_t value, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8B00, InputControl_1_System_UInt32__WriteValueIntoState__MethodInfo); DO_APP_FUNC(0x0166A4F0, InputProcessor_1_System_UInt32___Array *, InputControl_1_System_UInt32__get_processors, (InputControl_1_System_UInt32_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x01679520, uint32_t, InputControl_1_System_UInt32__get_unprocessedValue, (InputControl_1_System_UInt32_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x01679450, uint32_t, InputControl_1_System_UInt32__get_value, (InputControl_1_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01679520, uint32_t *, InputControl_1_System_UInt32__get_unprocessedValue, (InputControl_1_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01679450, uint32_t *, InputControl_1_System_UInt32__get_value, (InputControl_1_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016562D0, int32_t, InputControl_1_System_UInt32__get_valueSizeInBytes, (InputControl_1_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016793F0, Type *, InputControl_1_System_UInt32__get_valueType, (InputControl_1_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0166A510, void, InputControl_1_UnityEngine_Vector2___ctor, (InputControl_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5218, InputControl_1_UnityEngine_Vector2___ctor__MethodInfo); DO_APP_FUNC(0x0167B530, void, InputControl_1_UnityEngine_Vector2__AddProcessor, (InputControl_1_UnityEngine_Vector2_ * __this, Object * processor, MethodInfo * method)); -DO_APP_FUNC(0x01669D60, bool, InputControl_1_UnityEngine_Vector2__CompareValue, (Vector2 firstValue, Vector2 secondValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8AD8, InputControl_1_UnityEngine_Vector2__AddProcessor__MethodInfo); +DO_APP_FUNC(0x01669D60, bool, InputControl_1_UnityEngine_Vector2__CompareValue, (Vector2 * firstValue, Vector2 * secondValue, MethodInfo * method)); DO_APP_FUNC(0x0167B390, bool, InputControl_1_UnityEngine_Vector2__CompareValue_1, (InputControl_1_UnityEngine_Vector2_ * __this, Void * firstStatePtr, Void * secondStatePtr, MethodInfo * method)); DO_APP_FUNC(0x0167B790, void, InputControl_1_UnityEngine_Vector2__FinishSetup, (InputControl_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5220, InputControl_1_UnityEngine_Vector2__FinishSetup__MethodInfo); DO_APP_FUNC(0x0167B430, Vector2, InputControl_1_UnityEngine_Vector2__ProcessValue, (InputControl_1_UnityEngine_Vector2_ * __this, Vector2 value, MethodInfo * method)); -DO_APP_FUNC(0x0167B460, void, InputControl_1_UnityEngine_Vector2__ProcessValue_1, (InputControl_1_UnityEngine_Vector2_ * __this, Vector2 value, MethodInfo * method)); +DO_APP_FUNC(0x0167B460, void, InputControl_1_UnityEngine_Vector2__ProcessValue_1, (InputControl_1_UnityEngine_Vector2_ * __this, Vector2 * value, MethodInfo * method)); DO_APP_FUNC(0x0167A710, Vector2, InputControl_1_UnityEngine_Vector2__ReadDefaultValue, (InputControl_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0167AA10, Vector2, InputControl_1_UnityEngine_Vector2__ReadUnprocessedValue, (InputControl_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0167A920, Vector2, InputControl_1_UnityEngine_Vector2__ReadUnprocessedValueFromStateWithCaching, (InputControl_1_UnityEngine_Vector2_ * __this, Void * statePtr, MethodInfo * method)); DO_APP_FUNC(0x0167A640, Vector2, InputControl_1_UnityEngine_Vector2__ReadValue, (InputControl_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF260, InputControl_1_UnityEngine_Vector2__ReadValue__MethodInfo); DO_APP_FUNC(0x0167B170, Object *, InputControl_1_UnityEngine_Vector2__ReadValueFromBufferAsObject, (InputControl_1_UnityEngine_Vector2_ * __this, Void * buffer, int32_t bufferSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8AE0, InputControl_1_UnityEngine_Vector2__ReadValueFromBufferAsObject__MethodInfo); DO_APP_FUNC(0x0167A680, Vector2, InputControl_1_UnityEngine_Vector2__ReadValueFromPreviousFrame, (InputControl_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0167A780, Vector2, InputControl_1_UnityEngine_Vector2__ReadValueFromState, (InputControl_1_UnityEngine_Vector2_ * __this, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8B20, InputControl_1_UnityEngine_Vector2__ReadValueFromState__MethodInfo); DO_APP_FUNC(0x0167AA50, Object *, InputControl_1_UnityEngine_Vector2__ReadValueFromStateAsObject, (InputControl_1_UnityEngine_Vector2_ * __this, Void * statePtr, MethodInfo * method)); DO_APP_FUNC(0x0167AAB0, void, InputControl_1_UnityEngine_Vector2__ReadValueFromStateIntoBuffer, (InputControl_1_UnityEngine_Vector2_ * __this, Void * statePtr, Void * bufferPtr, int32_t bufferSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8AF0, InputControl_1_UnityEngine_Vector2__ReadValueFromStateIntoBuffer__MethodInfo); DO_APP_FUNC(0x0167A830, Vector2, InputControl_1_UnityEngine_Vector2__ReadValueFromStateWithCaching, (InputControl_1_UnityEngine_Vector2_ * __this, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5210, InputControl_1_UnityEngine_Vector2__ReadValueFromStateWithCaching__MethodInfo); DO_APP_FUNC(0x0167ACC0, void, InputControl_1_UnityEngine_Vector2__WriteValueFromBufferIntoState, (InputControl_1_UnityEngine_Vector2_ * __this, Void * bufferPtr, int32_t bufferSize, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8AE8, InputControl_1_UnityEngine_Vector2__WriteValueFromBufferIntoState__MethodInfo); DO_APP_FUNC(0x0167AED0, void, InputControl_1_UnityEngine_Vector2__WriteValueFromObjectIntoState, (InputControl_1_UnityEngine_Vector2_ * __this, Object * value, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8AD0, InputControl_1_UnityEngine_Vector2__WriteValueFromObjectIntoState__MethodInfo); DO_APP_FUNC(0x0167B100, void, InputControl_1_UnityEngine_Vector2__WriteValueIntoState, (InputControl_1_UnityEngine_Vector2_ * __this, Vector2 value, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8AC8, InputControl_1_UnityEngine_Vector2__WriteValueIntoState__MethodInfo); DO_APP_FUNC(0x0166A4F0, InputProcessor_1_UnityEngine_Vector2___Array *, InputControl_1_UnityEngine_Vector2__get_processors, (InputControl_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x0167A540, Vector2, InputControl_1_UnityEngine_Vector2__get_unprocessedValue, (InputControl_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x0167A450, Vector2, InputControl_1_UnityEngine_Vector2__get_value, (InputControl_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0167A540, Vector2 *, InputControl_1_UnityEngine_Vector2__get_unprocessedValue, (InputControl_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0167A450, Vector2 *, InputControl_1_UnityEngine_Vector2__get_value, (InputControl_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF600, InputControl_1_UnityEngine_Vector2__get_value__MethodInfo); DO_APP_FUNC(0x016562D0, int32_t, InputControl_1_UnityEngine_Vector2__get_valueSizeInBytes, (InputControl_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0167A3F0, Type *, InputControl_1_UnityEngine_Vector2__get_valueType, (InputControl_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0166A510, void, InputControl_1_UnityEngine_Vector3___ctor, (InputControl_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5230, InputControl_1_UnityEngine_Vector3___ctor__MethodInfo); DO_APP_FUNC(0x0167CD10, void, InputControl_1_UnityEngine_Vector3__AddProcessor, (InputControl_1_UnityEngine_Vector3_ * __this, Object * processor, MethodInfo * method)); -DO_APP_FUNC(0x01669D60, bool, InputControl_1_UnityEngine_Vector3__CompareValue, (Vector3 firstValue, Vector3 secondValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8AB8, InputControl_1_UnityEngine_Vector3__AddProcessor__MethodInfo); +DO_APP_FUNC(0x01669D60, bool, InputControl_1_UnityEngine_Vector3__CompareValue, (Vector3 * firstValue, Vector3 * secondValue, MethodInfo * method)); DO_APP_FUNC(0x0167CAA0, bool, InputControl_1_UnityEngine_Vector3__CompareValue_1, (InputControl_1_UnityEngine_Vector3_ * __this, Void * firstStatePtr, Void * secondStatePtr, MethodInfo * method)); DO_APP_FUNC(0x0167CF70, void, InputControl_1_UnityEngine_Vector3__FinishSetup, (InputControl_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5238, InputControl_1_UnityEngine_Vector3__FinishSetup__MethodInfo); DO_APP_FUNC(0x0167CB90, Vector3, InputControl_1_UnityEngine_Vector3__ProcessValue, (InputControl_1_UnityEngine_Vector3_ * __this, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x0167CBF0, void, InputControl_1_UnityEngine_Vector3__ProcessValue_1, (InputControl_1_UnityEngine_Vector3_ * __this, Vector3 value, MethodInfo * method)); +DO_APP_FUNC(0x0167CBF0, void, InputControl_1_UnityEngine_Vector3__ProcessValue_1, (InputControl_1_UnityEngine_Vector3_ * __this, Vector3 * value, MethodInfo * method)); DO_APP_FUNC(0x0167BD10, Vector3, InputControl_1_UnityEngine_Vector3__ReadDefaultValue, (InputControl_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0167C0A0, Vector3, InputControl_1_UnityEngine_Vector3__ReadUnprocessedValue, (InputControl_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0167BFA0, Vector3, InputControl_1_UnityEngine_Vector3__ReadUnprocessedValueFromStateWithCaching, (InputControl_1_UnityEngine_Vector3_ * __this, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCDBC0, InputControl_1_UnityEngine_Vector3__ReadUnprocessedValueFromStateWithCaching__MethodInfo); DO_APP_FUNC(0x0167BBF0, Vector3, InputControl_1_UnityEngine_Vector3__ReadValue, (InputControl_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0167C870, Object *, InputControl_1_UnityEngine_Vector3__ReadValueFromBufferAsObject, (InputControl_1_UnityEngine_Vector3_ * __this, Void * buffer, int32_t bufferSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8A78, InputControl_1_UnityEngine_Vector3__ReadValueFromBufferAsObject__MethodInfo); DO_APP_FUNC(0x0167BC40, Vector3, InputControl_1_UnityEngine_Vector3__ReadValueFromPreviousFrame, (InputControl_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0167BDC0, Vector3, InputControl_1_UnityEngine_Vector3__ReadValueFromState, (InputControl_1_UnityEngine_Vector3_ * __this, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8A90, InputControl_1_UnityEngine_Vector3__ReadValueFromState__MethodInfo); DO_APP_FUNC(0x0167C0F0, Object *, InputControl_1_UnityEngine_Vector3__ReadValueFromStateAsObject, (InputControl_1_UnityEngine_Vector3_ * __this, Void * statePtr, MethodInfo * method)); DO_APP_FUNC(0x0167C170, void, InputControl_1_UnityEngine_Vector3__ReadValueFromStateIntoBuffer, (InputControl_1_UnityEngine_Vector3_ * __this, Void * statePtr, Void * bufferPtr, int32_t bufferSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8A88, InputControl_1_UnityEngine_Vector3__ReadValueFromStateIntoBuffer__MethodInfo); DO_APP_FUNC(0x0167BEB0, Vector3, InputControl_1_UnityEngine_Vector3__ReadValueFromStateWithCaching, (InputControl_1_UnityEngine_Vector3_ * __this, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5228, InputControl_1_UnityEngine_Vector3__ReadValueFromStateWithCaching__MethodInfo); DO_APP_FUNC(0x0167C3B0, void, InputControl_1_UnityEngine_Vector3__WriteValueFromBufferIntoState, (InputControl_1_UnityEngine_Vector3_ * __this, Void * bufferPtr, int32_t bufferSize, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8A98, InputControl_1_UnityEngine_Vector3__WriteValueFromBufferIntoState__MethodInfo); DO_APP_FUNC(0x0167C5D0, void, InputControl_1_UnityEngine_Vector3__WriteValueFromObjectIntoState, (InputControl_1_UnityEngine_Vector3_ * __this, Object * value, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8A70, InputControl_1_UnityEngine_Vector3__WriteValueFromObjectIntoState__MethodInfo); DO_APP_FUNC(0x0167C800, void, InputControl_1_UnityEngine_Vector3__WriteValueIntoState, (InputControl_1_UnityEngine_Vector3_ * __this, Vector3 value, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8A80, InputControl_1_UnityEngine_Vector3__WriteValueIntoState__MethodInfo); DO_APP_FUNC(0x0166A4F0, InputProcessor_1_UnityEngine_Vector3___Array *, InputControl_1_UnityEngine_Vector3__get_processors, (InputControl_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x0167BAF0, Vector3, InputControl_1_UnityEngine_Vector3__get_unprocessedValue, (InputControl_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x0167B9F0, Vector3, InputControl_1_UnityEngine_Vector3__get_value, (InputControl_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0167BAF0, Vector3 *, InputControl_1_UnityEngine_Vector3__get_unprocessedValue, (InputControl_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0167B9F0, Vector3 *, InputControl_1_UnityEngine_Vector3__get_value, (InputControl_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016562D0, int32_t, InputControl_1_UnityEngine_Vector3__get_valueSizeInBytes, (InputControl_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0167B990, Type *, InputControl_1_UnityEngine_Vector3__get_valueType, (InputControl_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x0167D170, void, InputFeatureUsage_1_System_Boolean___ctor, (InputFeatureUsage_1_System_Boolean___Boxed * __this, String * usageName, MethodInfo * method)); -DO_APP_FUNC(0x01317710, bool, InputFeatureUsage_1_System_Boolean__Equals, (InputFeatureUsage_1_System_Boolean___Boxed * __this, InputFeatureUsage_1_System_Boolean_ other, MethodInfo * method)); -DO_APP_FUNC(0x01317610, bool, InputFeatureUsage_1_System_Boolean__Equals_1, (InputFeatureUsage_1_System_Boolean___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x013177C0, int32_t, InputFeatureUsage_1_System_Boolean__GetHashCode, (InputFeatureUsage_1_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, String *, InputFeatureUsage_1_System_Boolean__get_name, (InputFeatureUsage_1_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, InputFeatureUsage_1_System_Boolean__set_name, (InputFeatureUsage_1_System_Boolean___Boxed * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x0167D170, void, InputFeatureUsage_1_Eyes___ctor, (InputFeatureUsage_1_Eyes___Boxed * __this, String * usageName, MethodInfo * method)); -DO_APP_FUNC(0x01317710, bool, InputFeatureUsage_1_Eyes__Equals, (InputFeatureUsage_1_Eyes___Boxed * __this, InputFeatureUsage_1_Eyes_ other, MethodInfo * method)); -DO_APP_FUNC(0x01317610, bool, InputFeatureUsage_1_Eyes__Equals_1, (InputFeatureUsage_1_Eyes___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x013177C0, int32_t, InputFeatureUsage_1_Eyes__GetHashCode, (InputFeatureUsage_1_Eyes___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, String *, InputFeatureUsage_1_Eyes__get_name, (InputFeatureUsage_1_Eyes___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, InputFeatureUsage_1_Eyes__set_name, (InputFeatureUsage_1_Eyes___Boxed * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x0167D170, void, InputFeatureUsage_1_Hand___ctor, (InputFeatureUsage_1_Hand___Boxed * __this, String * usageName, MethodInfo * method)); -DO_APP_FUNC(0x01317710, bool, InputFeatureUsage_1_Hand__Equals, (InputFeatureUsage_1_Hand___Boxed * __this, InputFeatureUsage_1_Hand_ other, MethodInfo * method)); -DO_APP_FUNC(0x01317610, bool, InputFeatureUsage_1_Hand__Equals_1, (InputFeatureUsage_1_Hand___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x013177C0, int32_t, InputFeatureUsage_1_Hand__GetHashCode, (InputFeatureUsage_1_Hand___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, String *, InputFeatureUsage_1_Hand__get_name, (InputFeatureUsage_1_Hand___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, InputFeatureUsage_1_Hand__set_name, (InputFeatureUsage_1_Hand___Boxed * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x0167D170, void, InputFeatureUsage_1_System_Object___ctor, (InputFeatureUsage_1_System_Object___Boxed * __this, String * usageName, MethodInfo * method)); -DO_APP_FUNC(0x01317710, bool, InputFeatureUsage_1_System_Object__Equals, (InputFeatureUsage_1_System_Object___Boxed * __this, InputFeatureUsage_1_System_Object_ other, MethodInfo * method)); -DO_APP_FUNC(0x01317610, bool, InputFeatureUsage_1_System_Object__Equals_1, (InputFeatureUsage_1_System_Object___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x013177C0, int32_t, InputFeatureUsage_1_System_Object__GetHashCode, (InputFeatureUsage_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, String *, InputFeatureUsage_1_System_Object__get_name, (InputFeatureUsage_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, InputFeatureUsage_1_System_Object__set_name, (InputFeatureUsage_1_System_Object___Boxed * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x0167D170, void, InputFeatureUsage_1_UnityEngine_Quaternion___ctor, (InputFeatureUsage_1_UnityEngine_Quaternion___Boxed * __this, String * usageName, MethodInfo * method)); -DO_APP_FUNC(0x01317710, bool, InputFeatureUsage_1_UnityEngine_Quaternion__Equals, (InputFeatureUsage_1_UnityEngine_Quaternion___Boxed * __this, InputFeatureUsage_1_UnityEngine_Quaternion_ other, MethodInfo * method)); -DO_APP_FUNC(0x01317610, bool, InputFeatureUsage_1_UnityEngine_Quaternion__Equals_1, (InputFeatureUsage_1_UnityEngine_Quaternion___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x013177C0, int32_t, InputFeatureUsage_1_UnityEngine_Quaternion__GetHashCode, (InputFeatureUsage_1_UnityEngine_Quaternion___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, String *, InputFeatureUsage_1_UnityEngine_Quaternion__get_name, (InputFeatureUsage_1_UnityEngine_Quaternion___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, InputFeatureUsage_1_UnityEngine_Quaternion__set_name, (InputFeatureUsage_1_UnityEngine_Quaternion___Boxed * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x0167D170, void, InputFeatureUsage_1_System_Single___ctor, (InputFeatureUsage_1_System_Single___Boxed * __this, String * usageName, MethodInfo * method)); -DO_APP_FUNC(0x01317710, bool, InputFeatureUsage_1_System_Single__Equals, (InputFeatureUsage_1_System_Single___Boxed * __this, InputFeatureUsage_1_System_Single_ other, MethodInfo * method)); -DO_APP_FUNC(0x01317610, bool, InputFeatureUsage_1_System_Single__Equals_1, (InputFeatureUsage_1_System_Single___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x013177C0, int32_t, InputFeatureUsage_1_System_Single__GetHashCode, (InputFeatureUsage_1_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, String *, InputFeatureUsage_1_System_Single__get_name, (InputFeatureUsage_1_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, InputFeatureUsage_1_System_Single__set_name, (InputFeatureUsage_1_System_Single___Boxed * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x0167D170, void, InputFeatureUsage_1_System_UInt32Enum___ctor, (InputFeatureUsage_1_System_UInt32Enum___Boxed * __this, String * usageName, MethodInfo * method)); -DO_APP_FUNC(0x01317710, bool, InputFeatureUsage_1_System_UInt32Enum__Equals, (InputFeatureUsage_1_System_UInt32Enum___Boxed * __this, InputFeatureUsage_1_System_UInt32Enum_ other, MethodInfo * method)); -DO_APP_FUNC(0x01317610, bool, InputFeatureUsage_1_System_UInt32Enum__Equals_1, (InputFeatureUsage_1_System_UInt32Enum___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x013177C0, int32_t, InputFeatureUsage_1_System_UInt32Enum__GetHashCode, (InputFeatureUsage_1_System_UInt32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, String *, InputFeatureUsage_1_System_UInt32Enum__get_name, (InputFeatureUsage_1_System_UInt32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, InputFeatureUsage_1_System_UInt32Enum__set_name, (InputFeatureUsage_1_System_UInt32Enum___Boxed * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x0167D170, void, InputFeatureUsage_1_UnityEngine_Vector2___ctor, (InputFeatureUsage_1_UnityEngine_Vector2___Boxed * __this, String * usageName, MethodInfo * method)); -DO_APP_FUNC(0x01317710, bool, InputFeatureUsage_1_UnityEngine_Vector2__Equals, (InputFeatureUsage_1_UnityEngine_Vector2___Boxed * __this, InputFeatureUsage_1_UnityEngine_Vector2_ other, MethodInfo * method)); -DO_APP_FUNC(0x01317610, bool, InputFeatureUsage_1_UnityEngine_Vector2__Equals_1, (InputFeatureUsage_1_UnityEngine_Vector2___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x013177C0, int32_t, InputFeatureUsage_1_UnityEngine_Vector2__GetHashCode, (InputFeatureUsage_1_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, String *, InputFeatureUsage_1_UnityEngine_Vector2__get_name, (InputFeatureUsage_1_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, InputFeatureUsage_1_UnityEngine_Vector2__set_name, (InputFeatureUsage_1_UnityEngine_Vector2___Boxed * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x0167D170, void, InputFeatureUsage_1_UnityEngine_Vector3___ctor, (InputFeatureUsage_1_UnityEngine_Vector3___Boxed * __this, String * usageName, MethodInfo * method)); -DO_APP_FUNC(0x01317710, bool, InputFeatureUsage_1_UnityEngine_Vector3__Equals, (InputFeatureUsage_1_UnityEngine_Vector3___Boxed * __this, InputFeatureUsage_1_UnityEngine_Vector3_ other, MethodInfo * method)); -DO_APP_FUNC(0x01317610, bool, InputFeatureUsage_1_UnityEngine_Vector3__Equals_1, (InputFeatureUsage_1_UnityEngine_Vector3___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x013177C0, int32_t, InputFeatureUsage_1_UnityEngine_Vector3__GetHashCode, (InputFeatureUsage_1_UnityEngine_Vector3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, String *, InputFeatureUsage_1_UnityEngine_Vector3__get_name, (InputFeatureUsage_1_UnityEngine_Vector3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, InputFeatureUsage_1_UnityEngine_Vector3__set_name, (InputFeatureUsage_1_UnityEngine_Vector3___Boxed * __this, String * value, MethodInfo * method)); +DO_APP_FUNC(0x0167D170, void, InputFeatureUsage_1_System_Boolean___ctor, (InputFeatureUsage_1_System_Boolean_ * __this, String * usageName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4798, InputFeatureUsage_1_System_Boolean___ctor__MethodInfo); +DO_APP_FUNC(0x01317710, bool, InputFeatureUsage_1_System_Boolean__Equals, (InputFeatureUsage_1_System_Boolean_ * __this, InputFeatureUsage_1_System_Boolean_ other, MethodInfo * method)); +DO_APP_FUNC(0x01317610, bool, InputFeatureUsage_1_System_Boolean__Equals_1, (InputFeatureUsage_1_System_Boolean_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x013177C0, int32_t, InputFeatureUsage_1_System_Boolean__GetHashCode, (InputFeatureUsage_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, String *, InputFeatureUsage_1_System_Boolean__get_name, (InputFeatureUsage_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, InputFeatureUsage_1_System_Boolean__set_name, (InputFeatureUsage_1_System_Boolean_ * __this, String * value, MethodInfo * method)); +DO_APP_FUNC(0x0167D170, void, InputFeatureUsage_1_Eyes___ctor, (InputFeatureUsage_1_Eyes_ * __this, String * usageName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF47B8, InputFeatureUsage_1_Eyes___ctor__MethodInfo); +DO_APP_FUNC(0x01317710, bool, InputFeatureUsage_1_Eyes__Equals, (InputFeatureUsage_1_Eyes_ * __this, InputFeatureUsage_1_Eyes_ other, MethodInfo * method)); +DO_APP_FUNC(0x01317610, bool, InputFeatureUsage_1_Eyes__Equals_1, (InputFeatureUsage_1_Eyes_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x013177C0, int32_t, InputFeatureUsage_1_Eyes__GetHashCode, (InputFeatureUsage_1_Eyes_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, String *, InputFeatureUsage_1_Eyes__get_name, (InputFeatureUsage_1_Eyes_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, InputFeatureUsage_1_Eyes__set_name, (InputFeatureUsage_1_Eyes_ * __this, String * value, MethodInfo * method)); +DO_APP_FUNC(0x0167D170, void, InputFeatureUsage_1_Hand___ctor, (InputFeatureUsage_1_Hand_ * __this, String * usageName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF47B0, InputFeatureUsage_1_Hand___ctor__MethodInfo); +DO_APP_FUNC(0x01317710, bool, InputFeatureUsage_1_Hand__Equals, (InputFeatureUsage_1_Hand_ * __this, InputFeatureUsage_1_Hand_ other, MethodInfo * method)); +DO_APP_FUNC(0x01317610, bool, InputFeatureUsage_1_Hand__Equals_1, (InputFeatureUsage_1_Hand_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x013177C0, int32_t, InputFeatureUsage_1_Hand__GetHashCode, (InputFeatureUsage_1_Hand_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, String *, InputFeatureUsage_1_Hand__get_name, (InputFeatureUsage_1_Hand_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, InputFeatureUsage_1_Hand__set_name, (InputFeatureUsage_1_Hand_ * __this, String * value, MethodInfo * method)); +DO_APP_FUNC(0x0167D170, void, InputFeatureUsage_1_System_Object___ctor, (InputFeatureUsage_1_System_Object_ * __this, String * usageName, MethodInfo * method)); +DO_APP_FUNC(0x01317710, bool, InputFeatureUsage_1_System_Object__Equals, (InputFeatureUsage_1_System_Object_ * __this, InputFeatureUsage_1_System_Object_ other, MethodInfo * method)); +DO_APP_FUNC(0x01317610, bool, InputFeatureUsage_1_System_Object__Equals_1, (InputFeatureUsage_1_System_Object_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x013177C0, int32_t, InputFeatureUsage_1_System_Object__GetHashCode, (InputFeatureUsage_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, String *, InputFeatureUsage_1_System_Object__get_name, (InputFeatureUsage_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, InputFeatureUsage_1_System_Object__set_name, (InputFeatureUsage_1_System_Object_ * __this, String * value, MethodInfo * method)); +DO_APP_FUNC(0x0167D170, void, InputFeatureUsage_1_UnityEngine_Quaternion___ctor, (InputFeatureUsage_1_UnityEngine_Quaternion_ * __this, String * usageName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB00A0, InputFeatureUsage_1_UnityEngine_Quaternion___ctor__MethodInfo); +DO_APP_FUNC(0x01317710, bool, InputFeatureUsage_1_UnityEngine_Quaternion__Equals, (InputFeatureUsage_1_UnityEngine_Quaternion_ * __this, InputFeatureUsage_1_UnityEngine_Quaternion_ other, MethodInfo * method)); +DO_APP_FUNC(0x01317610, bool, InputFeatureUsage_1_UnityEngine_Quaternion__Equals_1, (InputFeatureUsage_1_UnityEngine_Quaternion_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x013177C0, int32_t, InputFeatureUsage_1_UnityEngine_Quaternion__GetHashCode, (InputFeatureUsage_1_UnityEngine_Quaternion_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, String *, InputFeatureUsage_1_UnityEngine_Quaternion__get_name, (InputFeatureUsage_1_UnityEngine_Quaternion_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4550, InputFeatureUsage_1_UnityEngine_Quaternion__get_name__MethodInfo); +DO_APP_FUNC(0x003BC280, void, InputFeatureUsage_1_UnityEngine_Quaternion__set_name, (InputFeatureUsage_1_UnityEngine_Quaternion_ * __this, String * value, MethodInfo * method)); +DO_APP_FUNC(0x0167D170, void, InputFeatureUsage_1_System_Single___ctor, (InputFeatureUsage_1_System_Single_ * __this, String * usageName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4738, InputFeatureUsage_1_System_Single___ctor__MethodInfo); +DO_APP_FUNC(0x01317710, bool, InputFeatureUsage_1_System_Single__Equals, (InputFeatureUsage_1_System_Single_ * __this, InputFeatureUsage_1_System_Single_ other, MethodInfo * method)); +DO_APP_FUNC(0x01317610, bool, InputFeatureUsage_1_System_Single__Equals_1, (InputFeatureUsage_1_System_Single_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x013177C0, int32_t, InputFeatureUsage_1_System_Single__GetHashCode, (InputFeatureUsage_1_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, String *, InputFeatureUsage_1_System_Single__get_name, (InputFeatureUsage_1_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, InputFeatureUsage_1_System_Single__set_name, (InputFeatureUsage_1_System_Single_ * __this, String * value, MethodInfo * method)); +DO_APP_FUNC(0x0167D170, void, InputFeatureUsage_1_System_UInt32Enum___ctor, (InputFeatureUsage_1_System_UInt32Enum_ * __this, String * usageName, MethodInfo * method)); +DO_APP_FUNC(0x01317710, bool, InputFeatureUsage_1_System_UInt32Enum__Equals, (InputFeatureUsage_1_System_UInt32Enum_ * __this, InputFeatureUsage_1_System_UInt32Enum_ other, MethodInfo * method)); +DO_APP_FUNC(0x01317610, bool, InputFeatureUsage_1_System_UInt32Enum__Equals_1, (InputFeatureUsage_1_System_UInt32Enum_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x013177C0, int32_t, InputFeatureUsage_1_System_UInt32Enum__GetHashCode, (InputFeatureUsage_1_System_UInt32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, String *, InputFeatureUsage_1_System_UInt32Enum__get_name, (InputFeatureUsage_1_System_UInt32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, InputFeatureUsage_1_System_UInt32Enum__set_name, (InputFeatureUsage_1_System_UInt32Enum_ * __this, String * value, MethodInfo * method)); +DO_APP_FUNC(0x0167D170, void, InputFeatureUsage_1_UnityEngine_Vector2___ctor, (InputFeatureUsage_1_UnityEngine_Vector2_ * __this, String * usageName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4730, InputFeatureUsage_1_UnityEngine_Vector2___ctor__MethodInfo); +DO_APP_FUNC(0x01317710, bool, InputFeatureUsage_1_UnityEngine_Vector2__Equals, (InputFeatureUsage_1_UnityEngine_Vector2_ * __this, InputFeatureUsage_1_UnityEngine_Vector2_ other, MethodInfo * method)); +DO_APP_FUNC(0x01317610, bool, InputFeatureUsage_1_UnityEngine_Vector2__Equals_1, (InputFeatureUsage_1_UnityEngine_Vector2_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x013177C0, int32_t, InputFeatureUsage_1_UnityEngine_Vector2__GetHashCode, (InputFeatureUsage_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, String *, InputFeatureUsage_1_UnityEngine_Vector2__get_name, (InputFeatureUsage_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, InputFeatureUsage_1_UnityEngine_Vector2__set_name, (InputFeatureUsage_1_UnityEngine_Vector2_ * __this, String * value, MethodInfo * method)); +DO_APP_FUNC(0x0167D170, void, InputFeatureUsage_1_UnityEngine_Vector3___ctor, (InputFeatureUsage_1_UnityEngine_Vector3_ * __this, String * usageName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB00B0, InputFeatureUsage_1_UnityEngine_Vector3___ctor__MethodInfo); +DO_APP_FUNC(0x01317710, bool, InputFeatureUsage_1_UnityEngine_Vector3__Equals, (InputFeatureUsage_1_UnityEngine_Vector3_ * __this, InputFeatureUsage_1_UnityEngine_Vector3_ other, MethodInfo * method)); +DO_APP_FUNC(0x01317610, bool, InputFeatureUsage_1_UnityEngine_Vector3__Equals_1, (InputFeatureUsage_1_UnityEngine_Vector3_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x013177C0, int32_t, InputFeatureUsage_1_UnityEngine_Vector3__GetHashCode, (InputFeatureUsage_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, String *, InputFeatureUsage_1_UnityEngine_Vector3__get_name, (InputFeatureUsage_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4568, InputFeatureUsage_1_UnityEngine_Vector3__get_name__MethodInfo); +DO_APP_FUNC(0x003BC280, void, InputFeatureUsage_1_UnityEngine_Vector3__set_name, (InputFeatureUsage_1_UnityEngine_Vector3_ * __this, String * value, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InputProcessor_1_UnityEngine_InputSystem_XR_Bone___ctor, (InputProcessor_1_UnityEngine_InputSystem_XR_Bone_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0167D460, void, InputProcessor_1_UnityEngine_InputSystem_XR_Bone__Process, (InputProcessor_1_UnityEngine_InputSystem_XR_Bone_ * __this, Void * buffer, int32_t bufferSize, InputControl * control, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8AA0, InputProcessor_1_UnityEngine_InputSystem_XR_Bone__Process__MethodInfo); DO_APP_FUNC(0x0167D1E0, Object *, InputProcessor_1_UnityEngine_InputSystem_XR_Bone__ProcessAsObject, (InputProcessor_1_UnityEngine_InputSystem_XR_Bone_ * __this, Object * value, InputControl * control, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8AC0, InputProcessor_1_UnityEngine_InputSystem_XR_Bone__ProcessAsObject__MethodInfo); DO_APP_FUNC(0x003AE050, void, InputProcessor_1_System_Boolean___ctor, (InputProcessor_1_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0167D8D0, void, InputProcessor_1_System_Boolean__Process, (InputProcessor_1_System_Boolean_ * __this, Void * buffer, int32_t bufferSize, InputControl * control, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8A10, InputProcessor_1_System_Boolean__Process__MethodInfo); DO_APP_FUNC(0x0167D680, Object *, InputProcessor_1_System_Boolean__ProcessAsObject, (InputProcessor_1_System_Boolean_ * __this, Object * value, InputControl * control, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8A18, InputProcessor_1_System_Boolean__ProcessAsObject__MethodInfo); DO_APP_FUNC(0x003AE050, void, InputProcessor_1_System_Double___ctor, (InputProcessor_1_System_Double_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0167DCF0, void, InputProcessor_1_System_Double__Process, (InputProcessor_1_System_Double_ * __this, Void * buffer, int32_t bufferSize, InputControl * control, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8A20, InputProcessor_1_System_Double__Process__MethodInfo); DO_APP_FUNC(0x0167DAA0, Object *, InputProcessor_1_System_Double__ProcessAsObject, (InputProcessor_1_System_Double_ * __this, Object * value, InputControl * control, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8A28, InputProcessor_1_System_Double__ProcessAsObject__MethodInfo); DO_APP_FUNC(0x003AE050, void, InputProcessor_1_UnityEngine_InputSystem_XR_Eyes___ctor, (InputProcessor_1_UnityEngine_InputSystem_XR_Eyes_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0167E1A0, void, InputProcessor_1_UnityEngine_InputSystem_XR_Eyes__Process, (InputProcessor_1_UnityEngine_InputSystem_XR_Eyes_ * __this, Void * buffer, int32_t bufferSize, InputControl * control, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB89F0, InputProcessor_1_UnityEngine_InputSystem_XR_Eyes__Process__MethodInfo); DO_APP_FUNC(0x0167DEC0, Object *, InputProcessor_1_UnityEngine_InputSystem_XR_Eyes__ProcessAsObject, (InputProcessor_1_UnityEngine_InputSystem_XR_Eyes_ * __this, Object * value, InputControl * control, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB89F8, InputProcessor_1_UnityEngine_InputSystem_XR_Eyes__ProcessAsObject__MethodInfo); DO_APP_FUNC(0x003AE050, void, InputProcessor_1_UnityEngine_XR_OpenXR_Input_Haptic___ctor, (InputProcessor_1_UnityEngine_XR_OpenXR_Input_Haptic_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0167E660, void, InputProcessor_1_UnityEngine_XR_OpenXR_Input_Haptic__Process, (InputProcessor_1_UnityEngine_XR_OpenXR_Input_Haptic_ * __this, Void * buffer, int32_t bufferSize, InputControl * control, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8A00, InputProcessor_1_UnityEngine_XR_OpenXR_Input_Haptic__Process__MethodInfo); DO_APP_FUNC(0x0167E410, Object *, InputProcessor_1_UnityEngine_XR_OpenXR_Input_Haptic__ProcessAsObject, (InputProcessor_1_UnityEngine_XR_OpenXR_Input_Haptic_ * __this, Object * value, InputControl * control, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8A08, InputProcessor_1_UnityEngine_XR_OpenXR_Input_Haptic__ProcessAsObject__MethodInfo); DO_APP_FUNC(0x003AE050, void, InputProcessor_1_System_Int32___ctor, (InputProcessor_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0167EA80, void, InputProcessor_1_System_Int32__Process, (InputProcessor_1_System_Int32_ * __this, Void * buffer, int32_t bufferSize, InputControl * control, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8A50, InputProcessor_1_System_Int32__Process__MethodInfo); DO_APP_FUNC(0x0167E830, Object *, InputProcessor_1_System_Int32__ProcessAsObject, (InputProcessor_1_System_Int32_ * __this, Object * value, InputControl * control, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8A58, InputProcessor_1_System_Int32__ProcessAsObject__MethodInfo); DO_APP_FUNC(0x003AE050, void, InputProcessor_1_System_Int32Enum___ctor, (InputProcessor_1_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0167EEA0, void, InputProcessor_1_System_Int32Enum__Process, (InputProcessor_1_System_Int32Enum_ * __this, Void * buffer, int32_t bufferSize, InputControl * control, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8A60, InputProcessor_1_System_Int32Enum__Process__MethodInfo); DO_APP_FUNC(0x0167EC50, Object *, InputProcessor_1_System_Int32Enum__ProcessAsObject, (InputProcessor_1_System_Int32Enum_ * __this, Object * value, InputControl * control, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8A68, InputProcessor_1_System_Int32Enum__ProcessAsObject__MethodInfo); DO_APP_FUNC(0x003AE050, void, InputProcessor_1_UnityEngine_XR_OpenXR_Input_Pose___ctor, (InputProcessor_1_UnityEngine_XR_OpenXR_Input_Pose_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0167F330, void, InputProcessor_1_UnityEngine_XR_OpenXR_Input_Pose__Process, (InputProcessor_1_UnityEngine_XR_OpenXR_Input_Pose_ * __this, Void * buffer, int32_t bufferSize, InputControl * control, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8A30, InputProcessor_1_UnityEngine_XR_OpenXR_Input_Pose__Process__MethodInfo); DO_APP_FUNC(0x0167F070, Object *, InputProcessor_1_UnityEngine_XR_OpenXR_Input_Pose__ProcessAsObject, (InputProcessor_1_UnityEngine_XR_OpenXR_Input_Pose_ * __this, Object * value, InputControl * control, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8A38, InputProcessor_1_UnityEngine_XR_OpenXR_Input_Pose__ProcessAsObject__MethodInfo); DO_APP_FUNC(0x003AE050, void, InputProcessor_1_UnityEngine_InputSystem_XR_PoseState___ctor, (InputProcessor_1_UnityEngine_InputSystem_XR_PoseState_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0167F840, void, InputProcessor_1_UnityEngine_InputSystem_XR_PoseState__Process, (InputProcessor_1_UnityEngine_InputSystem_XR_PoseState_ * __this, Void * buffer, int32_t bufferSize, InputControl * control, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8A40, InputProcessor_1_UnityEngine_InputSystem_XR_PoseState__Process__MethodInfo); DO_APP_FUNC(0x0167F580, Object *, InputProcessor_1_UnityEngine_InputSystem_XR_PoseState__ProcessAsObject, (InputProcessor_1_UnityEngine_InputSystem_XR_PoseState_ * __this, Object * value, InputControl * control, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8A48, InputProcessor_1_UnityEngine_InputSystem_XR_PoseState__ProcessAsObject__MethodInfo); DO_APP_FUNC(0x003AE050, void, InputProcessor_1_UnityEngine_Quaternion___ctor, (InputProcessor_1_UnityEngine_Quaternion_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8BFF8, InputProcessor_1_UnityEngine_Quaternion___ctor__MethodInfo); DO_APP_FUNC(0x0167FCF0, void, InputProcessor_1_UnityEngine_Quaternion__Process, (InputProcessor_1_UnityEngine_Quaternion_ * __this, Void * buffer, int32_t bufferSize, InputControl * control, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8990, InputProcessor_1_UnityEngine_Quaternion__Process__MethodInfo); DO_APP_FUNC(0x0167FA90, Object *, InputProcessor_1_UnityEngine_Quaternion__ProcessAsObject, (InputProcessor_1_UnityEngine_Quaternion_ * __this, Object * value, InputControl * control, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8998, InputProcessor_1_UnityEngine_Quaternion__ProcessAsObject__MethodInfo); DO_APP_FUNC(0x003AE050, void, InputProcessor_1_System_Single___ctor, (InputProcessor_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8C0F0, InputProcessor_1_System_Single___ctor__MethodInfo); DO_APP_FUNC(0x01680140, void, InputProcessor_1_System_Single__Process, (InputProcessor_1_System_Single_ * __this, Void * buffer, int32_t bufferSize, InputControl * control, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB89A0, InputProcessor_1_System_Single__Process__MethodInfo); DO_APP_FUNC(0x0167FEF0, Object *, InputProcessor_1_System_Single__ProcessAsObject, (InputProcessor_1_System_Single_ * __this, Object * value, InputControl * control, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB89A8, InputProcessor_1_System_Single__ProcessAsObject__MethodInfo); DO_APP_FUNC(0x003AE050, void, InputProcessor_1_UnityEngine_InputSystem_LowLevel_TouchState___ctor, (InputProcessor_1_UnityEngine_InputSystem_LowLevel_TouchState_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016805C0, void, InputProcessor_1_UnityEngine_InputSystem_LowLevel_TouchState__Process, (InputProcessor_1_UnityEngine_InputSystem_LowLevel_TouchState_ * __this, Void * buffer, int32_t bufferSize, InputControl * control, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8970, InputProcessor_1_UnityEngine_InputSystem_LowLevel_TouchState__Process__MethodInfo); DO_APP_FUNC(0x01680310, Object *, InputProcessor_1_UnityEngine_InputSystem_LowLevel_TouchState__ProcessAsObject, (InputProcessor_1_UnityEngine_InputSystem_LowLevel_TouchState_ * __this, Object * value, InputControl * control, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8978, InputProcessor_1_UnityEngine_InputSystem_LowLevel_TouchState__ProcessAsObject__MethodInfo); DO_APP_FUNC(0x003AE050, void, InputProcessor_1_System_UInt32___ctor, (InputProcessor_1_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01680A50, void, InputProcessor_1_System_UInt32__Process, (InputProcessor_1_System_UInt32_ * __this, Void * buffer, int32_t bufferSize, InputControl * control, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8980, InputProcessor_1_System_UInt32__Process__MethodInfo); DO_APP_FUNC(0x01680800, Object *, InputProcessor_1_System_UInt32__ProcessAsObject, (InputProcessor_1_System_UInt32_ * __this, Object * value, InputControl * control, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8988, InputProcessor_1_System_UInt32__ProcessAsObject__MethodInfo); DO_APP_FUNC(0x003AE050, void, InputProcessor_1_UnityEngine_Vector2___ctor, (InputProcessor_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8BFD8, InputProcessor_1_UnityEngine_Vector2___ctor__MethodInfo); DO_APP_FUNC(0x01680E70, void, InputProcessor_1_UnityEngine_Vector2__Process, (InputProcessor_1_UnityEngine_Vector2_ * __this, Void * buffer, int32_t bufferSize, InputControl * control, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB89D0, InputProcessor_1_UnityEngine_Vector2__Process__MethodInfo); DO_APP_FUNC(0x01680C20, Object *, InputProcessor_1_UnityEngine_Vector2__ProcessAsObject, (InputProcessor_1_UnityEngine_Vector2_ * __this, Object * value, InputControl * control, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB89D8, InputProcessor_1_UnityEngine_Vector2__ProcessAsObject__MethodInfo); DO_APP_FUNC(0x003AE050, void, InputProcessor_1_UnityEngine_Vector3___ctor, (InputProcessor_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8BF88, InputProcessor_1_UnityEngine_Vector3___ctor__MethodInfo); DO_APP_FUNC(0x016812B0, void, InputProcessor_1_UnityEngine_Vector3__Process, (InputProcessor_1_UnityEngine_Vector3_ * __this, Void * buffer, int32_t bufferSize, InputControl * control, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB89E0, InputProcessor_1_UnityEngine_Vector3__Process__MethodInfo); DO_APP_FUNC(0x01681040, Object *, InputProcessor_1_UnityEngine_Vector3__ProcessAsObject, (InputProcessor_1_UnityEngine_Vector3_ * __this, Object * value, InputControl * control, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB89E8, InputProcessor_1_UnityEngine_Vector3__ProcessAsObject__MethodInfo); DO_APP_FUNC(0x00C71DE0, IList_1_System_Object_ *, InputSourceWrapper_1_System_Object__GetJoysticks, (InputSourceWrapper_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C98210, InputSourceWrapper_1_System_Object__GetJoysticks__MethodInfo); DO_APP_FUNC(0x003BCBE0, void, InputSourceWrapper_1_System_Object___ctor, (InputSourceWrapper_1_System_Object_ * __this, Object * param_00009aea, MethodInfo * method)); @@ -153547,21 +169661,33 @@ DO_APP_FUNC(0x016816C0, void, InputSourceWrapper_1_System_Object__Finalize, (Inp DO_APP_FUNC(0x003AE050, void, InputSourceWrapper_1_System_Object__SystemDeviceConnected, (InputSourceWrapper_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, InputSourceWrapper_1_System_Object__SystemDeviceDisconnected, (InputSourceWrapper_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01681560, void, InputSourceWrapper_1_System_Object__Update, (InputSourceWrapper_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB89C8, InputSourceWrapper_1_System_Object__Update__MethodInfo); DO_APP_FUNC(0x016815B0, void, InputSourceWrapper_1_System_Object__UpdateDevices, (InputSourceWrapper_1_System_Object_ * __this, UpdateLoopType__Enum updateLoop, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB89C0, InputSourceWrapper_1_System_Object__UpdateDevices__MethodInfo); DO_APP_FUNC(0x01681600, void, InputSourceWrapper_1_System_Object__UpdateFinished, (InputSourceWrapper_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8940, InputSourceWrapper_1_System_Object__UpdateFinished__MethodInfo); DO_APP_FUNC(0x016814C0, void, InputSourceWrapper_1_System_Object__add_DeviceChangedEvent, (InputSourceWrapper_1_System_Object_ * __this, Action * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB89B8, InputSourceWrapper_1_System_Object__add_DeviceChangedEvent__MethodInfo); DO_APP_FUNC(0x003BB3C0, Object *, InputSourceWrapper_1_System_Object__get_source, (InputSourceWrapper_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01681510, void, InputSourceWrapper_1_System_Object__remove_DeviceChangedEvent, (InputSourceWrapper_1_System_Object_ * __this, Action * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB89B0, InputSourceWrapper_1_System_Object__remove_DeviceChangedEvent__MethodInfo); DO_APP_FUNC(0x01681900, void, InputStateHistory_1_TouchState___ctor, (InputStateHistory_1_TouchState_ * __this, InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState_ * control, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1648, InputStateHistory_1_TouchState___ctor__MethodInfo); DO_APP_FUNC(0x01681740, void, InputStateHistory_1_TouchState___ctor_1, (InputStateHistory_1_TouchState_ * __this, Nullable_1_Int32_ maxStateSizeInBytes, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8960, InputStateHistory_1_TouchState___ctor_1__MethodInfo); DO_APP_FUNC(0x01681A50, void, InputStateHistory_1_TouchState___ctor_2, (InputStateHistory_1_TouchState_ * __this, String * path, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8928, InputStateHistory_1_TouchState___ctor_2__MethodInfo); DO_APP_FUNC(0x01681F30, InputStateHistory_1_TValue_Record_TouchState_, InputStateHistory_1_TouchState__AddRecord, (InputStateHistory_1_TouchState_ * __this, InputStateHistory_1_TValue_Record_TouchState_ record, MethodInfo * method)); DO_APP_FUNC(0x01681E60, void, InputStateHistory_1_TouchState__Finalize, (InputStateHistory_1_TouchState_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016822D0, IEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_1_Record_ *, InputStateHistory_1_TouchState__GetEnumerator, (InputStateHistory_1_TouchState_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD15C8, InputStateHistory_1_TouchState__GetEnumerator__MethodInfo); DO_APP_FUNC(0x01682020, InputStateHistory_1_TValue_Record_TouchState_, InputStateHistory_1_TouchState__RecordStateChange, (InputStateHistory_1_TouchState_ * __this, InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState_ * control, TouchState value, double time, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1610, InputStateHistory_1_TouchState__RecordStateChange__MethodInfo); DO_APP_FUNC(0x00F90230, IEnumerator *, InputStateHistory_1_TouchState__System_Collections_IEnumerable_GetEnumerator, (InputStateHistory_1_TouchState_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01682380, InputStateHistory_1_TValue_Record_TouchState_, InputStateHistory_1_TouchState__get_Item, (InputStateHistory_1_TouchState_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB88F8, InputStateHistory_1_TouchState__get_Item__MethodInfo); DO_APP_FUNC(0x01682510, void, InputStateHistory_1_TouchState__set_Item, (InputStateHistory_1_TouchState_ * __this, int32_t index, InputStateHistory_1_TValue_Record_TouchState_ value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8908, InputStateHistory_1_TouchState__set_Item__MethodInfo); DO_APP_FUNC(0x003BCBE0, void, IntSwitchInstruction_1_System_Int32___ctor, (IntSwitchInstruction_1_System_Int32_ * __this, Dictionary_2_System_Int32_System_Int32_ * cases, MethodInfo * method)); DO_APP_FUNC(0x01682730, int32_t, IntSwitchInstruction_1_System_Int32__Run, (IntSwitchInstruction_1_System_Int32_ * __this, InterpretedFrame * frame, MethodInfo * method)); DO_APP_FUNC(0x007205E0, int32_t, IntSwitchInstruction_1_System_Int32__get_ConsumedStack, (IntSwitchInstruction_1_System_Int32_ * __this, MethodInfo * method)); @@ -153574,4852 +169700,5640 @@ DO_APP_FUNC(0x003AE050, void, IntegratedSubsystemDescriptor_1_System_Object___ct DO_APP_FUNC(0x01682960, Object *, IntegratedSubsystemDescriptor_1_System_Object__Create, (IntegratedSubsystemDescriptor_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010C50A0, ISubsystem *, IntegratedSubsystemDescriptor_1_System_Object__CreateImpl, (IntegratedSubsystemDescriptor_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, IntegratedSubsystem_1_System_Object___ctor, (IntegratedSubsystem_1_System_Object_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_ArraySegment_1_Byte___ctor, (Array_InternalEnumerator_1_ArraySegment_1_Byte___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_ArraySegment_1_Byte__Dispose, (Array_InternalEnumerator_1_ArraySegment_1_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_ArraySegment_1_Byte__MoveNext, (Array_InternalEnumerator_1_ArraySegment_1_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_ArraySegment_1_Byte__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_ArraySegment_1_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682D00, Object *, Array_InternalEnumerator_1_ArraySegment_1_Byte__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_ArraySegment_1_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B80, ArraySegment_1_Byte_, Array_InternalEnumerator_1_ArraySegment_1_Byte__get_Current, (Array_InternalEnumerator_1_ArraySegment_1_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___ctor, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__Dispose, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__MoveNext, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682F10, Object *, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682D90, AsyncOperationHandle_1_System_Object_, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__get_Current, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta___ctor, (Array_InternalEnumerator_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta__Dispose, (Array_InternalEnumerator_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta__MoveNext, (Array_InternalEnumerator_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01683130, Object *, Array_InternalEnumerator_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682FB0, VoiceSender_1_TPeer_ChannelDelta_Dissonance_Integrations_PhotonBolt_BoltPeer_, Array_InternalEnumerator_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta__get_Current, (Array_InternalEnumerator_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01683340, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016831D0, DynamicHeightVirtualizationController_1_T_ContentHeightCacheInfo_System_Object_, Array_InternalEnumerator_1_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01683540, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016833D0, StylePropertyAnimationSystem_Values_1_T_EmptyData_Background_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__1__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__1__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__1_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__1_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__1_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01683740, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__1_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016835D0, StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__1_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__2__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__2__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__2_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__2_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__2_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01683940, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__2_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016837D0, StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__2_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__3__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__3__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__3_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__3_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__3_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01683B40, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__3_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016839D0, StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__3_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__4__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__4__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__4_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__4__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__4_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__4__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__4_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__4__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01683D40, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__4_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__4__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01683BD0, StylePropertyAnimationSystem_Values_1_T_EmptyData_Length_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__4_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__4__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__5__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__5__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__5_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__5__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__5_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__5__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__5_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__5__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01683F40, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__5_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__5__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01683DD0, StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__5_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__5__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__6__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__6__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__6_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__6__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__6_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__6__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__6_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__6__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01684140, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__6_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__6__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01683FD0, StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__6_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__6__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__7__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__7__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__7_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__7__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__7_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__7__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__7_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__7__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01684340, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__7_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__7__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016841D0, StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__7_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__7__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__8__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__8__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__8_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__8__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__8_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__8__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__8_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__8__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01684540, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__8_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__8__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016843D0, StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__8_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__8__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__9__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__9__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__9_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__9__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__9_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__9__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__9_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__9__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01684740, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__9_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__9__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016845D0, StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__9_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__9__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__10__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__10__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__10_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__10__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__10_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__10__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__10_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__10__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01684940, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__10_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__10__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016847D0, StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__10_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__10__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__11__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__11__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__11_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__11__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__11_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__11__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__11_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__11__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01684B40, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__11_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__11__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016849D0, StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__11_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__11__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Timeline_IntervalTree_1_Entry___ctor, (Array_InternalEnumerator_1_UnityEngine_Timeline_IntervalTree_1_Entry___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Timeline_IntervalTree_1_Entry__Dispose, (Array_InternalEnumerator_1_UnityEngine_Timeline_IntervalTree_1_Entry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Timeline_IntervalTree_1_Entry__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Timeline_IntervalTree_1_Entry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Timeline_IntervalTree_1_Entry__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Timeline_IntervalTree_1_Entry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01684D50, Object *, Array_InternalEnumerator_1_UnityEngine_Timeline_IntervalTree_1_Entry__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Timeline_IntervalTree_1_Entry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01684BD0, IntervalTree_1_T_Entry_System_Object_, Array_InternalEnumerator_1_UnityEngine_Timeline_IntervalTree_1_Entry__get_Current, (Array_InternalEnumerator_1_UnityEngine_Timeline_IntervalTree_1_Entry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Xml_Linq_XHashtable_1_XHashtableState_Entry___ctor, (Array_InternalEnumerator_1_System_Xml_Linq_XHashtable_1_XHashtableState_Entry___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Xml_Linq_XHashtable_1_XHashtableState_Entry__Dispose, (Array_InternalEnumerator_1_System_Xml_Linq_XHashtable_1_XHashtableState_Entry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Xml_Linq_XHashtable_1_XHashtableState_Entry__MoveNext, (Array_InternalEnumerator_1_System_Xml_Linq_XHashtable_1_XHashtableState_Entry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Xml_Linq_XHashtable_1_XHashtableState_Entry__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Xml_Linq_XHashtable_1_XHashtableState_Entry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01684F60, Object *, Array_InternalEnumerator_1_System_Xml_Linq_XHashtable_1_XHashtableState_Entry__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Xml_Linq_XHashtable_1_XHashtableState_Entry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01684DF0, XHashtable_1_TValue_XHashtableState_TValue_Entry_System_Object_, Array_InternalEnumerator_1_System_Xml_Linq_XHashtable_1_XHashtableState_Entry__get_Current, (Array_InternalEnumerator_1_System_Xml_Linq_XHashtable_1_XHashtableState_Entry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry___ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01685170, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01684FF0, Dictionary_2_TKey_TValue_Entry_System_ValueTuple_2_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__1__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__1__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__1_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__1_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__1_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01685390, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__1_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01685210, Dictionary_2_TKey_TValue_Entry_System_ValueTuple_2_System_Object__1, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__1_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__2__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__2__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__2_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__2_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__2_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016855B0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__2_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01685430, Dictionary_2_TKey_TValue_Entry_System_Byte_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__2_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__3__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__3__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__3_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__3_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__3_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016857C0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__3_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01685650, Dictionary_2_TKey_TValue_Entry_System_ByteEnum_System_Int32_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__3_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__4__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__4__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__4_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__4__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__4_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__4__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__4_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__4__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016859D0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__4_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__4__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01685850, Dictionary_2_TKey_TValue_Entry_System_ByteEnum_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__4_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__4__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__5__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__5__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__5_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__5__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__5_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__5__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__5_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__5__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01685C00, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__5_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__5__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01685A70, Dictionary_2_TKey_TValue_Entry_Dissonance_Audio_Playback_FrameFormat_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__5_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__5__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__6__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__6__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__6_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__6__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__6_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__6__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__6_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__6__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01685E30, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__6_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__6__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01685CB0, Dictionary_2_TKey_TValue_Entry_System_Guid_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__6_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__6__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__7__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__7__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__7_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__7__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__7_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__7__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__7_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__7__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01686050, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__7_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__7__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01685ED0, Dictionary_2_TKey_TValue_Entry_System_Guid_System_UInt32_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__7_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__7__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__8__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__8__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__8_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__8__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__8_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__8__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__8_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__8__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01686270, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__8_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__8__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016860F0, Dictionary_2_TKey_TValue_Entry_UnityEngine_Hash128_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__8_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__8__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__9__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__9__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__9_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__9__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__9_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__9__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__9_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__9__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01686490, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__9_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__9__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01686310, Dictionary_2_TKey_TValue_Entry_Pathfinding_Int2_System_Int32_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__9_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__9__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__10__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__10__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__10_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__10__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__10_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__10__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__10_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__10__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016866B0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__10_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__10__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01686530, Dictionary_2_TKey_TValue_Entry_Pathfinding_Int3_System_Int32_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__10_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__10__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__11__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__11__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__11_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__11__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__11_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__11__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__11_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__11__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016868D0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__11_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__11__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01686750, Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__11_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__11__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__12__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__12__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__12_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__12__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__12_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__12__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__12_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__12__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01686AF0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__12_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__12__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01686970, Dictionary_2_TKey_TValue_Entry_System_Int32_System_ValueTuple_2_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__12_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__12__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__13__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__13__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__13_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__13__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__13_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__13__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__13_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__13__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01686D10, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__13_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__13__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01686BA0, Dictionary_2_TKey_TValue_Entry_System_Int32_System_Boolean_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__13_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__13__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__14__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__14__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__14_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__14__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__14_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__14__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__14_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__14__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01686F10, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__14_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__14__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01686DA0, Dictionary_2_TKey_TValue_Entry_System_Int32_System_ByteEnum_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__14_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__14__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__15__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__15__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__15_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__15__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__15_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__15__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__15_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__15__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01687150, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__15_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__15__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01686FE0, Dictionary_2_TKey_TValue_Entry_System_Int32_System_Char_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__15_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__15__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__16__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__16__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__16_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__16__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__16_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__16__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__16_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__16__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01687370, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__16_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__16__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016871E0, Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__16_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__16__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__17__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__17__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__17_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__17__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__17_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__17__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__17_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__17__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016875A0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__17_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__17__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01687430, Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int16_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__17_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__17__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__18__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__18__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__18_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__18__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__18_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__18__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__18_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__18__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016877B0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__18_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__18__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01687630, Dictionary_2_TKey_TValue_Entry_System_Int32_Pathfinding_Int3_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__18_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__18__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry___ctor, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__Dispose, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__MoveNext, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016879C0, Object *, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01687850, ADictionary_2_TKey_TValue_Entry_System_Int32_System_Int32_, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__get_Current, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__19__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__19__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__19_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__19__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__19_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__19__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__19_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__19__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01687BC0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__19_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__19__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01687A50, Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int32_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__19_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__19__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__20__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__20__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__20_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__20__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__20_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__20__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__20_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__20__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01687DC0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__20_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__20__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01687C50, Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int32Enum_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__20_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__20__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__21__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__21__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__21_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__21__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__21_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__21__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__21_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__21__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01687FD0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__21_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__21__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01687E50, Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int64_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__21_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__21__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__1__ctor, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__1__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__1_Dispose, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__1_MoveNext, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__1_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016881F0, Object *, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__1_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01688070, ADictionary_2_TKey_TValue_Entry_System_Int32_System_Object_, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__1_get_Current, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__22__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__22__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__22_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__22__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__22_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__22__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__22_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__22__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01688410, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__22_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__22__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01688290, Dictionary_2_TKey_TValue_Entry_System_Int32_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__22_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__22__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__23__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__23__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__23_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__23__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__23_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__23__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__23_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__23__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01688630, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__23_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__23__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016884B0, Dictionary_2_TKey_TValue_Entry_System_Int32_PlayerFlashlightBeam_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__23_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__23__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__24__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__24__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__24_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__24__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__24_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__24__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__24_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__24__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01688850, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__24_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__24__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016886D0, Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_RenderInstancedDataLayout_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__24_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__24__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__25__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__25__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__25_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__25__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__25_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__25__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__25_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__25__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01688A60, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__25_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__25__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016888F0, Dictionary_2_TKey_TValue_Entry_System_Int32_System_Single_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__25_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__25__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__26__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__26__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__26_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__26__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__26_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__26__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__26_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__26__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01688C70, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__26_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__26__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01688AF0, Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_TreeItem_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__26_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__26__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__27__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__27__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__27_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__27__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__27_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__27__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__27_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__27__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01688E90, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__27_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__27__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01688D10, Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Vector2Int_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__27_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__27__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__28__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__28__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__28_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__28__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__28_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__28__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__28_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__28__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016890B0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__28_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__28__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01688F30, Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Vector4_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__28_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__28__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__29__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__29__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__29_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__29__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__29_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__29__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__29_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__29__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016892E0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__29_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__29__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01689150, Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__29_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__29__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__30__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__30__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__30_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__30__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__30_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__30__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__30_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__30__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01689500, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__30_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__30__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01689390, Dictionary_2_TKey_TValue_Entry_System_Int32Enum_System_Int32Enum_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__30_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__30__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__31__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__31__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__31_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__31__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__31_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__31__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__31_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__31__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01689710, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__31_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__31__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01689590, Dictionary_2_TKey_TValue_Entry_System_Int32Enum_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__31_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__31__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__32__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__32__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__32_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__32__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__32_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__32__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__32_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__32__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01689960, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__32_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__32__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016897B0, Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_UIElements_ComputedStyle_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__32_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__32__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__33__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__33__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__33_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__33__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__33_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__33__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__33_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__33__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01689BC0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__33_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__33__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01689A40, Dictionary_2_TKey_TValue_Entry_System_Int64_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__33_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__33__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__34__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__34__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__34_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__34__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__34_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__34__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__34_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__34__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01689DE0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__34_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__34__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01689C60, Dictionary_2_TKey_TValue_Entry_System_IntPtr_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__34_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__34__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__35__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__35__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__35_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__35__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__35_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__35__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__35_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__35__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168A010, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__35_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__35__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01689E80, Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__35_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__35__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__36__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__36__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__36_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__36__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__36_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__36__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__36_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__36__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168A240, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__36_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__36__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168A0C0, Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__36_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__36__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__37__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__37__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__37_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__37__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__37_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__37__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__37_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__37__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168A470, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__37_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__37__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168A2E0, Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__37_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__37__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__38__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__38__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__38_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__38__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__38_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__38__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__38_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__38__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168A6A0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__38_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__38__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168A520, Dictionary_2_TKey_TValue_Entry_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__38_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__38__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__39__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__39__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__39_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__39__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__39_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__39__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__39_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__39__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168A8C0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__39_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__39__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168A740, Dictionary_2_TKey_TValue_Entry_Photon_Bolt_NetworkId_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__39_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__39__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__40__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__40__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__40_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__40__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__40_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__40__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__40_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__40__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168AAF0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__40_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__40__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168A960, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__40_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__40__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__41__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__41__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__41_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__41__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__41_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__41__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__41_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__41__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168AD30, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__41_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__41__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168ABA0, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__41_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__41__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__42__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__42__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__42_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__42__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__42_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__42__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__42_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__42__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168AF60, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__42_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__42__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168ADE0, Dictionary_2_TKey_TValue_Entry_System_Object_System_Boolean_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__42_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__42__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__43__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__43__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__43_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__43__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__43_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__43__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__43_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__43__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168B190, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__43_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__43__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168B000, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Bounds_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__43_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__43__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__44__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__44__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__44_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__44__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__44_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__44__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__44_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__44__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168B3C0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__44_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__44__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168B240, Dictionary_2_TKey_TValue_Entry_System_Object_System_Byte_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__44_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__44__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__45__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__45__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__45_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__45__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__45_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__45__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__45_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__45__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168B5E0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__45_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__45__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168B460, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Color_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__45_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__45__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__46__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__46__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__46_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__46__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__46_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__46__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__46_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__46__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168B800, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__46_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__46__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168B680, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Color32_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__46_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__46__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__2__ctor, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__2__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__2_Dispose, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__2_MoveNext, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__2_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168BA20, Object *, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__2_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168B8A0, ADictionary_2_TKey_TValue_Entry_System_Object_System_Int32_, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__2_get_Current, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__47__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__47__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__47_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__47__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__47_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__47__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__47_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__47__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168BC40, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__47_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__47__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168BAC0, Dictionary_2_TKey_TValue_Entry_System_Object_System_Int32_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__47_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__47__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__3__ctor, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__3__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__3_Dispose, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__3_MoveNext, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__3_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168BE60, Object *, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__3_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168BCE0, ADictionary_2_TKey_TValue_Entry_System_Object_System_Int32Enum_, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__3_get_Current, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__48__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__48__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__48_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__48__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__48_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__48__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__48_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__48__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168C080, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__48_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__48__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168BF00, Dictionary_2_TKey_TValue_Entry_System_Object_System_Int32Enum_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__48_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__48__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__4__ctor, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__4__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__4_Dispose, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__4__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__4_MoveNext, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__4__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__4_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__4__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168C2A0, Object *, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__4_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__4__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168C120, ADictionary_2_TKey_TValue_Entry_System_Object_System_Object_, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__4_get_Current, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__4__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__49__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__49__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__49_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__49__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__49_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__49__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__49_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__49__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168C4C0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__49_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__49__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168C340, Dictionary_2_TKey_TValue_Entry_System_Object_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__49_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__49__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__50__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__50__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__50_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__50__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__50_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__50__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__50_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__50__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168C6E0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__50_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__50__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168C560, Dictionary_2_TKey_TValue_Entry_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__50_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__50__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__51__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__51__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__51_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__51__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__51_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__51__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__51_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__51__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168C910, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__51_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__51__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168C780, Dictionary_2_TKey_TValue_Entry_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__51_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__51__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__52__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__52__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__52_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__52__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__52_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__52__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__52_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__52__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168CB50, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__52_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__52__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168C9D0, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Playables_Playable_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__52_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__52__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__53__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__53__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__53_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__53__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__53_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__53__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__53_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__53__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168CD80, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__53_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__53__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168CBF0, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__53_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__53__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__54__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__54__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__54_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__54__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__54_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__54__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__54_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__54__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168CFB0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__54_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__54__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168CE30, Dictionary_2_TKey_TValue_Entry_System_Object_System_Resources_ResourceLocator_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__54_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__54__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__55__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__55__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__55_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__55__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__55_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__55__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__55_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__55__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168D1D0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__55_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__55__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168D050, Dictionary_2_TKey_TValue_Entry_System_Object_System_Single_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__55_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__55__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__56__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__56__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__56_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__56__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__56_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__56__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__56_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__56__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168D3F0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__56_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__56__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168D270, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__56_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__56__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__57__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__57__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__57_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__57__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__57_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__57__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__57_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__57__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168D610, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__57_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__57__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168D490, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_UIElements_TextureId_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__57_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__57__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__58__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__58__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__58_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__58__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__58_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__58__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__58_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__58__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168D830, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__58_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__58__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168D6B0, Dictionary_2_TKey_TValue_Entry_System_Object_System_TimeSpan_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__58_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__58__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__59__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__59__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__59_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__59__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__59_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__59__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__59_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__59__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168DA60, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__59_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__59__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168D8D0, Dictionary_2_TKey_TValue_Entry_System_Object_UdpKit_UdpEndPoint_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__59_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__59__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__60__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__60__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__60_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__60__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__60_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__60__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__60_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__60__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168DC90, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__60_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__60__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168DB10, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Vector2_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__60_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__60__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__61__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__61__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__61_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__61__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__61_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__61__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__61_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__61__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168DEB0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__61_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__61__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168DD30, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Vector3_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__61_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__61__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__62__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__62__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__62_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__62__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__62_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__62__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__62_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__62__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168E140, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__62_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__62__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168DF50, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__62_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__62__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__63__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__63__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__63_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__63__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__63_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__63__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__63_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__63__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168E3D0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__63_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__63__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168E250, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__63_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__63__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__64__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__64__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__64_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__64__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__64_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__64__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__64_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__64__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168E620, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__64_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__64__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168E470, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__64_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__64__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__65__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__65__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__65_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__65__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__65_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__65__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__65_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__65__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168E870, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__65_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__65__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168E6F0, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__65_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__65__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__66__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__66__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__66_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__66__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__66_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__66__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__66_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__66__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168EAA0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__66_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__66__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168E910, Dictionary_2_TKey_TValue_Entry_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__66_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__66__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__67__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__67__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__67_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__67__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__67_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__67__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__67_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__67__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168ECF0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__67_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__67__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168EB60, Dictionary_2_TKey_TValue_Entry_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__67_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__67__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__68__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__68__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__68_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__68__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__68_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__68__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__68_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__68__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168EF30, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__68_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__68__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168EDB0, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__68_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__68__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__69__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__69__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__69_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__69__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__69_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__69__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__69_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__69__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168F150, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__69_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__69__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168EFD0, Dictionary_2_TKey_TValue_Entry_Photon_Bolt_PrefabId_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__69_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__69__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__70__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__70__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__70_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__70__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__70_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__70__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__70_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__70__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168F380, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__70_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__70__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168F1F0, Dictionary_2_TKey_TValue_Entry_UnityEngine_RaycastHit_System_Int32_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__70_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__70__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__71__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__71__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__71_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__71__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__71_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__71__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__71_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__71__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168F5E0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__71_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__71__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168F440, Dictionary_2_TKey_TValue_Entry_System_Single_SplineMesh_CurveSample_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__71_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__71__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__72__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__72__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__72_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__72__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__72_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__72__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__72_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__72__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168F830, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__72_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__72__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168F6B0, Dictionary_2_TKey_TValue_Entry_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__72_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__72__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__73__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__73__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__73_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__73__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__73_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__73__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__73_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__73__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168FA50, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__73_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__73__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168F8D0, Dictionary_2_TKey_TValue_Entry_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__73_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__73__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__74__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__74__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__74_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__74__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__74_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__74__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__74_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__74__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168FC70, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__74_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__74__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168FAF0, Dictionary_2_TKey_TValue_Entry_Photon_Bolt_TypeId_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__74_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__74__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__75__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__75__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__75_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__75__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__75_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__75__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__75_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__75__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168FE90, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__75_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__75__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168FD10, Dictionary_2_TKey_TValue_Entry_System_UInt16_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__75_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__75__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__76__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__76__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__76_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__76__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__76_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__76__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__76_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__76__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016900C0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__76_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__76__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0168FF30, Dictionary_2_TKey_TValue_Entry_System_UInt16_Dissonance_PlayerChannel_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__76_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__76__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__77__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__77__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__77_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__77__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__77_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__77__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__77_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__77__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01690300, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__77_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__77__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01690170, Dictionary_2_TKey_TValue_Entry_System_UInt16_Dissonance_RoomChannel_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__77_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__77__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__78__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__78__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__78_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__78__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__78_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__78__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__78_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__78__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01690530, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__78_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__78__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016903C0, Dictionary_2_TKey_TValue_Entry_System_UInt32_System_Boolean_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__78_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__78__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__79__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__79__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__79_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__79__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__79_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__79__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__79_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__79__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01690750, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__79_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__79__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016905C0, Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__79_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__79__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__80__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__80__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__80_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__80__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__80_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__80__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__80_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__80__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01690980, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__80_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__80__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01690810, Dictionary_2_TKey_TValue_Entry_System_UInt32_System_Int32_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__80_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__80__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__81__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__81__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__81_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__81__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__81_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__81__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__81_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__81__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01690B90, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__81_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__81__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01690A10, Dictionary_2_TKey_TValue_Entry_System_UInt32_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__81_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__81__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__82__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__82__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__82_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__82__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__82_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__82__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__82_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__82__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01690DD0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__82_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__82__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01690C30, Dictionary_2_TKey_TValue_Entry_System_UInt32_SessionClient_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__82_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__82__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__83__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__83__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__83_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__83__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__83_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__83__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__83_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__83__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01691010, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__83_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__83__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01690E90, Dictionary_2_TKey_TValue_Entry_System_UInt64_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__83_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__83__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__84__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__84__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__84_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__84__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__84_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__84__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__84_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__84__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01691240, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__84_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__84__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016910B0, Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__84_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__84__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__85__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__85__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__85_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__85__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__85_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__85__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__85_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__85__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01691470, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__85_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__85__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016912F0, Dictionary_2_TKey_TValue_Entry_UdpKit_UdpChannelName_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__85_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__85__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__86__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__86__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__86_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__86__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__86_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__86__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__86_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__86__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016916A0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__86_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__86__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01691510, Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__86_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__86__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__87__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__87__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__87_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__87__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__87_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__87__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__87_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__87__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016918E0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__87_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__87__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01691750, Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_UInt32_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__87_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__87__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__88__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__88__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__88_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__88__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__88_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__88__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__88_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__88__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01691B10, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__88_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__88__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01691990, Dictionary_2_TKey_TValue_Entry_Photon_Bolt_UniqueId_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__88_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__88__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__89__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__89__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__89_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__89__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__89_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__89__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__89_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__89__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01691D30, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__89_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__89__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01691BB0, Dictionary_2_TKey_TValue_Entry_UnityEngine_Vector3_System_Int32_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__89_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__89__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__90__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__90__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__90_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__90__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__90_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__90__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__90_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__90__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01691F50, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__90_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__90__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01691DD0, Dictionary_2_TKey_TValue_Entry_UnityEngine_Vector3Int_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__90_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__90__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__91__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__91__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__91_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__91__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__91_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__91__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__91_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__91__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01692180, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__91_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__91__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01691FF0, Dictionary_2_TKey_TValue_Entry_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__91_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__91__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__92__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__92__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__92_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__92__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__92_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__92__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__92_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__92__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016923B0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__92_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__92__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01692230, Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__92_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__92__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__93__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__93__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__93_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__93__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__93_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__93__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__93_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__93__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016925E0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__93_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__93__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01692450, Dictionary_2_TKey_TValue_Entry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__93_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__93__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__94__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__94__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__94_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__94__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__94_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__94__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__94_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__94__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01692820, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__94_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__94__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016926A0, Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__94_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__94__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__95__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__95__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__95_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__95__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__95_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__95__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__95_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__95__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01692A40, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__95_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__95__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016928C0, Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__95_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__95__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__96__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__96__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__96_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__96__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__96_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__96__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__96_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__96__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01692C80, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__96_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__96__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01692AE0, Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__96_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__96__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__97__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__97__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__97_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__97__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__97_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__97__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__97_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__97__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01692EE0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__97_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__97__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01692D40, Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__97_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__97__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__98__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__98__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__98_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__98__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__98_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__98__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__98_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__98__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01693130, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__98_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__98__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01692FA0, Dictionary_2_TKey_TValue_Entry_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__98_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__98__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__99__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__99__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__99_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__99__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__99_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__99__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__99_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__99__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01693360, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__99_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__99__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016931E0, Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__99_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__99__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__100__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__100__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__100_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__100__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__100_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__100__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__100_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__100__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01693580, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__100_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__100__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01693400, Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__100_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__100__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__101__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__101__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__101_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__101__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__101_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__101__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__101_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__101__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016937A0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__101_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__101__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01693620, Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__101_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__101__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__102__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__102__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__102_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__102__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__102_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__102__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__102_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__102__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016939C0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__102_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__102__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01693840, Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__102_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__102__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__103__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__103__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__103_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__103__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__103_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__103__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__103_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__103__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01693C30, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__103_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__103__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01693A60, Dictionary_2_TKey_TValue_Entry_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__103_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__103__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb___ctor, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__Dispose, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__MoveNext, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01693E90, Object *, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01693D20, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object_, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__get_Current, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1__ctor, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1_Dispose, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1_MoveNext, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01694090, Object *, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01693F20, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object_, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1_get_Current, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2__ctor, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2_Dispose, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2_MoveNext, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016942A0, Object *, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01694120, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2_get_Current, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2___ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016944C0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01694340, KeyValuePair_2_System_ValueTuple_2_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__1__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__1__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__1_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__1_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__1_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016946E0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__1_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01694560, KeyValuePair_2_System_ValueTuple_2_System_Object__1, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__1_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__2__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__2__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__2_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__2_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__2_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016948F0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__2_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01694780, KeyValuePair_2_System_Byte_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__2_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__3__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__3__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__3_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__3_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__3_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01694AF0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__3_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01694980, KeyValuePair_2_System_ByteEnum_System_Int32_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__3_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__4__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__4__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__4_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__4__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__4_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__4__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__4_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__4__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01694CF0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__4_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__4__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01694B80, KeyValuePair_2_System_ByteEnum_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__4_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__4__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__5__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__5__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__5_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__5__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__5_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__5__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__5_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__5__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01694EF0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__5_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__5__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01694D80, KeyValuePair_2_System_DateTime_System_UInt32_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__5_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__5__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__6__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__6__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__6_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__6__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__6_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__6__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__6_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__6__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01695100, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__6_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__6__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01694F80, KeyValuePair_2_Dissonance_Audio_Playback_FrameFormat_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__6_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__6__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__7__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__7__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__7_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__7__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__7_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__7__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__7_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__7__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01695320, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__7_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__7__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016951A0, KeyValuePair_2_System_Guid_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__7_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__7__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__8__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__8__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__8_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__8__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__8_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__8__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__8_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__8__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01695540, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__8_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__8__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016953C0, KeyValuePair_2_System_Guid_System_UInt32_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__8_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__8__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__9__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__9__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__9_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__9__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__9_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__9__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__9_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__9__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01695760, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__9_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__9__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016955E0, KeyValuePair_2_UnityEngine_Hash128_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__9_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__9__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__10__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__10__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__10_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__10__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__10_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__10__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__10_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__10__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01695980, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__10_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__10__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01695800, KeyValuePair_2_Pathfinding_Int2_System_Int32_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__10_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__10__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__11__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__11__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__11_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__11__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__11_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__11__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__11_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__11__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01695B90, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__11_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__11__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01695A20, KeyValuePair_2_Pathfinding_Int3_System_Int32_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__11_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__11__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__12__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__12__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__12_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__12__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__12_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__12__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__12_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__12__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01695DA0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__12_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__12__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01695C20, KeyValuePair_2_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__12_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__12__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__13__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__13__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__13_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__13__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__13_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__13__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__13_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__13__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01695FC0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__13_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__13__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01695E40, KeyValuePair_2_System_Int32_System_ValueTuple_2__3, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__13_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__13__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__14__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__14__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__14_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__14__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__14_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__14__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__14_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__14__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016961E0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__14_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__14__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01696060, KeyValuePair_2_System_Int32_System_ValueTuple_2__2, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__14_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__14__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__15__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__15__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__15_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__15__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__15_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__15__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__15_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__15__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016963F0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__15_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__15__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01696280, KeyValuePair_2_System_Int32_System_Boolean_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__15_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__15__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__16__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__16__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__16_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__16__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__16_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__16__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__16_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__16__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016965F0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__16_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__16__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01696480, KeyValuePair_2_System_Int32_System_ByteEnum_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__16_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__16__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__17__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__17__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__17_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__17__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__17_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__17__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__17_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__17__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016967F0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__17_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__17__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01696680, KeyValuePair_2_System_Int32_System_Char_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__17_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__17__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__18__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__18__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__18_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__18__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__18_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__18__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__18_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__18__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01696A10, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__18_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__18__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01696880, KeyValuePair_2_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__18_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__18__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__19__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__19__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__19_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__19__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__19_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__19__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__19_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__19__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01696C40, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__19_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__19__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01696AD0, KeyValuePair_2_System_Int32_System_Int16_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__19_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__19__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__20__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__20__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__20_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__20__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__20_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__20__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__20_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__20__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01696E40, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__20_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__20__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01696CD0, KeyValuePair_2_System_Int32_Pathfinding_Int3_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__20_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__20__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__21__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__21__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__21_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__21__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__21_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__21__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__21_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__21__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01697040, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__21_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__21__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01696ED0, KeyValuePair_2_System_Int32_System_Int32_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__21_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__21__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__22__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__22__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__22_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__22__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__22_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__22__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__22_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__22__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01697240, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__22_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__22__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016970D0, KeyValuePair_2_System_Int32_System_Int32Enum_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__22_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__22__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__23__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__23__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__23_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__23__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__23_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__23__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__23_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__23__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01697440, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__23_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__23__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016972D0, KeyValuePair_2_System_Int32_System_Int64_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__23_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__23__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__24__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__24__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__24_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__24__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__24_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__24__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__24_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__24__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01697640, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__24_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__24__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016974D0, KeyValuePair_2_System_Int32_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__24_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__24__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__25__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__25__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__25_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__25__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__25_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__25__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__25_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__25__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01697850, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__25_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__25__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016976D0, KeyValuePair_2_System_Int32_PlayerFlashlightBeam_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__25_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__25__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__26__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__26__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__26_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__26__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__26_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__26__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__26_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__26__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01697A70, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__26_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__26__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016978F0, KeyValuePair_2_System_Int32_UnityEngine_RenderInstancedDataLayout_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__26_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__26__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__27__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__27__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__27_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__27__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__27_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__27__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__27_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__27__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01697C80, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__27_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__27__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01697B10, KeyValuePair_2_System_Int32_System_Single_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__27_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__27__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__28__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__28__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__28_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__28__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__28_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__28__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__28_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__28__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01697E90, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__28_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__28__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01697D10, KeyValuePair_2_System_Int32_UnityEngine_UIElements_TreeItem_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__28_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__28__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__29__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__29__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__29_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__29__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__29_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__29__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__29_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__29__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016980B0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__29_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__29__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01697F30, KeyValuePair_2_System_Int32_UnityEngine_Vector2Int_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__29_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__29__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__30__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__30__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__30_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__30__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__30_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__30__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__30_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__30__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016982D0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__30_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__30__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01698150, KeyValuePair_2_System_Int32_UnityEngine_Vector4_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__30_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__30__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__31__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__31__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__31_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__31__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__31_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__31__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__31_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__31__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01698500, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__31_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__31__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01698370, KeyValuePair_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__31_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__31__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__32__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__32__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__32_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__32__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__32_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__32__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__32_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__32__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01698720, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__32_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__32__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016985B0, KeyValuePair_2_System_Int32Enum_System_Int32Enum_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__32_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__32__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__33__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__33__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__33_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__33__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__33_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__33__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__33_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__33__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01698920, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__33_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__33__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016987B0, KeyValuePair_2_System_Int32Enum_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__33_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__33__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__34__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__34__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__34_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__34__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__34_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__34__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__34_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__34__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01698B60, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__34_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__34__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016989B0, KeyValuePair_2_System_Int64_UnityEngine_UIElements_ComputedStyle_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__34_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__34__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__35__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__35__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__35_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__35__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__35_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__35__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__35_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__35__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01698DA0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__35_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__35__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01698C30, KeyValuePair_2_System_Int64_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__35_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__35__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__36__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__36__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__36_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__36__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__36_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__36__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__36_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__36__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01698FA0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__36_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__36__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01698E30, KeyValuePair_2_System_IntPtr_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__36_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__36__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__37__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__37__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__37_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__37__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__37_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__37__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__37_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__37__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016991B0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__37_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__37__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01699030, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__37_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__37__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__38__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__38__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__38_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__38__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__38_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__38__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__38_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__38__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016993D0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__38_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__38__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01699250, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__38_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__38__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__39__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__39__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__39_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__39__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__39_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__39__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__39_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__39__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016995F0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__39_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__39__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01699470, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__39_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__39__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__40__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__40__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__40_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__40__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__40_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__40__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__40_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__40__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01699800, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__40_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__40__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01699690, KeyValuePair_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__40_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__40__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__41__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__41__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__41_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__41__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__41_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__41__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__41_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__41__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01699A00, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__41_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__41__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01699890, KeyValuePair_2_Photon_Bolt_NetworkId_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__41_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__41__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__42__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__42__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__42_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__42__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__42_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__42__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__42_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__42__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01699C10, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__42_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__42__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01699A90, KeyValuePair_2_System_Object_System_ArraySegment_1_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__42_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__42__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__43__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__43__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__43_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__43__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__43_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__43__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__43_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__43__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01699E40, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__43_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__43__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01699CB0, KeyValuePair_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__43_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__43__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__44__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__44__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__44_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__44__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__44_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__44__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__44_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__44__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169A070, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__44_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__44__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01699EF0, KeyValuePair_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__44_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__44__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__45__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__45__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__45_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__45__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__45_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__45__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__45_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__45__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169A280, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__45_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__45__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169A110, KeyValuePair_2_System_Object_System_Boolean_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__45_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__45__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__46__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__46__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__46_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__46__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__46_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__46__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__46_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__46__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169A490, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__46_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__46__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169A310, KeyValuePair_2_System_Object_UnityEngine_Bounds_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__46_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__46__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__47__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__47__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__47_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__47__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__47_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__47__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__47_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__47__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169A6A0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__47_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__47__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169A530, KeyValuePair_2_System_Object_System_Byte_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__47_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__47__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__48__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__48__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__48_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__48__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__48_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__48__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__48_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__48__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169A8A0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__48_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__48__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169A730, KeyValuePair_2_System_Object_System_Char_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__48_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__48__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__49__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__49__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__49_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__49__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__49_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__49__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__49_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__49__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169AAB0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__49_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__49__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169A930, KeyValuePair_2_System_Object_UnityEngine_Color_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__49_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__49__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__50__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__50__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__50_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__50__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__50_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__50__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__50_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__50__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169ACC0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__50_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__50__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169AB50, KeyValuePair_2_System_Object_UnityEngine_Color32_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__50_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__50__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__51__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__51__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__51_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__51__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__51_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__51__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__51_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__51__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169AEC0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__51_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__51__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169AD50, KeyValuePair_2_System_Object_System_Int32_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__51_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__51__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__52__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__52__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__52_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__52__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__52_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__52__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__52_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__52__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169B0C0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__52_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__52__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169AF50, KeyValuePair_2_System_Object_System_Int32Enum_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__52_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__52__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__53__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__53__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__53_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__53__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__53_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__53__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__53_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__53__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169B2C0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__53_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__53__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169B150, KeyValuePair_2_System_Object_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__53_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__53__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__54__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__54__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__54_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__54__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__54_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__54__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__54_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__54__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169B4D0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__54_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__54__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169B350, KeyValuePair_2_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__54_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__54__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__55__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__55__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__55_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__55__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__55_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__55__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__55_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__55__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169B700, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__55_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__55__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169B570, KeyValuePair_2_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__55_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__55__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__56__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__56__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__56_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__56__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__56_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__56__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__56_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__56__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169B930, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__56_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__56__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169B7B0, KeyValuePair_2_System_Object_UnityEngine_Playables_Playable_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__56_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__56__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__57__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__57__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__57_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__57__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__57_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__57__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__57_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__57__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169BB60, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__57_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__57__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169B9D0, KeyValuePair_2_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__57_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__57__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__58__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__58__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__58_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__58__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__58_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__58__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__58_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__58__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169BD90, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__58_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__58__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169BC10, KeyValuePair_2_System_Object_System_Resources_ResourceLocator_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__58_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__58__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__59__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__59__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__59_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__59__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__59_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__59__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__59_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__59__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169BFA0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__59_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__59__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169BE30, KeyValuePair_2_System_Object_System_Single_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__59_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__59__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__60__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__60__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__60_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__60__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__60_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__60__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__60_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__60__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169C1B0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__60_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__60__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169C030, KeyValuePair_2_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__60_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__60__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__61__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__61__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__61_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__61__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__61_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__61__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__61_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__61__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169C3C0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__61_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__61__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169C250, KeyValuePair_2_System_Object_UnityEngine_UIElements_TextureId_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__61_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__61__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__62__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__62__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__62_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__62__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__62_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__62__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__62_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__62__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169C5C0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__62_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__62__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169C450, KeyValuePair_2_System_Object_System_TimeSpan_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__62_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__62__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__63__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__63__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__63_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__63__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__63_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__63__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__63_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__63__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169C7E0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__63_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__63__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169C650, KeyValuePair_2_System_Object_UdpKit_UdpEndPoint_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__63_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__63__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__64__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__64__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__64_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__64__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__64_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__64__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__64_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__64__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169CA00, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__64_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__64__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169C890, KeyValuePair_2_System_Object_UnityEngine_Vector2_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__64_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__64__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__65__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__65__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__65_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__65__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__65_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__65__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__65_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__65__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169CC10, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__65_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__65__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169CA90, KeyValuePair_2_System_Object_UnityEngine_Vector3_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__65_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__65__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__66__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__66__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__66_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__66__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__66_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__66__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__66_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__66__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169CEA0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__66_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__66__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169CCB0, KeyValuePair_2_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__66_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__66__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__67__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__67__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__67_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__67__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__67_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__67__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__67_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__67__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169D120, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__67_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__67__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169CFB0, KeyValuePair_2_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__67_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__67__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__68__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__68__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__68_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__68__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__68_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__68__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__68_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__68__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169D350, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__68_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__68__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169D1B0, KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__68_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__68__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__69__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__69__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__69_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__69__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__69_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__69__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__69_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__69__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169D580, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__69_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__69__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169D410, KeyValuePair_2_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__69_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__69__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__70__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__70__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__70_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__70__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__70_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__70__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__70_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__70__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169D7A0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__70_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__70__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169D610, KeyValuePair_2_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__70_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__70__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__71__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__71__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__71_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__71__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__71_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__71__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__71_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__71__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169D9E0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__71_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__71__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169D850, KeyValuePair_2_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__71_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__71__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__72__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__72__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__72_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__72__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__72_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__72__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__72_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__72__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169DC10, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__72_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__72__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169DA90, KeyValuePair_2_System_Object_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__72_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__72__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__73__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__73__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__73_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__73__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__73_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__73__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__73_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__73__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169DE20, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__73_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__73__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169DCB0, KeyValuePair_2_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__73_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__73__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__74__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__74__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__74_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__74__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__74_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__74__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__74_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__74__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169E020, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__74_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__74__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169DEB0, KeyValuePair_2_Photon_Bolt_PrefabId_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__74_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__74__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__75__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__75__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__75_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__75__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__75_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__75__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__75_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__75__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169E220, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__75_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__75__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169E0B0, KeyValuePair_2_UnityEngine_PropertyName_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__75_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__75__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__76__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__76__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__76_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__76__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__76_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__76__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__76_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__76__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169E440, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__76_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__76__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169E2B0, KeyValuePair_2_UnityEngine_RaycastHit_System_Int32_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__76_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__76__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__77__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__77__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__77_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__77__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__77_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__77__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__77_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__77__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169E690, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__77_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__77__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169E4F0, KeyValuePair_2_System_Single_SplineMesh_CurveSample_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__77_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__77__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__78__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__78__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__78_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__78__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__78_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__78__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__78_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__78__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169E8D0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__78_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__78__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169E760, KeyValuePair_2_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__78_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__78__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__79__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__79__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__79_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__79__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__79_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__79__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__79_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__79__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169EAE0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__79_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__79__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169E960, KeyValuePair_2_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__79_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__79__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__80__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__80__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__80_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__80__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__80_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__80__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__80_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__80__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169ECF0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__80_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__80__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169EB80, KeyValuePair_2_Photon_Bolt_TypeId_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__80_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__80__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__81__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__81__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__81_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__81__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__81_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__81__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__81_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__81__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169EEF0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__81_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__81__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169ED80, KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__81_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__81__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__82__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__82__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__82_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__82__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__82_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__82__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__82_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__82__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169F0F0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__82_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__82__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169EF80, KeyValuePair_2_System_UInt16_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__82_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__82__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__83__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__83__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__83_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__83__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__83_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__83__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__83_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__83__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169F310, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__83_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__83__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169F180, KeyValuePair_2_System_UInt16_Dissonance_PlayerChannel_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__83_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__83__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__84__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__84__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__84_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__84__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__84_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__84__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__84_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__84__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169F550, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__84_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__84__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169F3C0, KeyValuePair_2_System_UInt16_Dissonance_RoomChannel_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__84_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__84__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__85__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__85__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__85_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__85__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__85_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__85__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__85_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__85__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169F770, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__85_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__85__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169F600, KeyValuePair_2_System_UInt32_System_Boolean_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__85_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__85__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__86__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__86__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__86_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__86__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__86_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__86__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__86_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__86__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169F990, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__86_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__86__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169F800, KeyValuePair_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__86_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__86__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__87__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__87__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__87_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__87__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__87_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__87__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__87_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__87__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169FBB0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__87_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__87__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169FA40, KeyValuePair_2_System_UInt32_System_Int32_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__87_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__87__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__88__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__88__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__88_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__88__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__88_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__88__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__88_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__88__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169FDB0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__88_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__88__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169FC40, KeyValuePair_2_System_UInt32_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__88_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__88__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__89__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__89__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__89_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__89__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__89_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__89__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__89_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__89__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169FFD0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__89_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__89__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0169FE40, KeyValuePair_2_System_UInt32_SessionClient_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__89_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__89__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__90__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__90__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__90_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__90__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__90_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__90__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__90_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__90__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A0200, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__90_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__90__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A0090, KeyValuePair_2_System_UInt64_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__90_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__90__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__91__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__91__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__91_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__91__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__91_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__91__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__91_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__91__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A0420, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__91_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__91__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A0290, KeyValuePair_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__91_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__91__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__92__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__92__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__92_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__92__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__92_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__92__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__92_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__92__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A0650, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__92_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__92__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A04D0, KeyValuePair_2_UdpKit_UdpChannelName_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__92_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__92__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__93__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__93__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__93_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__93__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__93_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__93__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__93_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__93__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A0880, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__93_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__93__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A06F0, KeyValuePair_2_UdpKit_UdpEndPoint_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__93_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__93__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__94__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__94__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__94_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__94__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__94_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__94__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__94_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__94__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A0AB0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__94_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__94__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A0930, KeyValuePair_2_UdpKit_UdpEndPoint_System_UInt32_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__94_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__94__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__95__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__95__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__95_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__95__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__95_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__95__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__95_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__95__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A0CD0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__95_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__95__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A0B50, KeyValuePair_2_Photon_Bolt_UniqueId_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__95_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__95__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__96__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__96__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__96_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__96__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__96_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__96__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__96_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__96__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A0EE0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__96_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__96__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A0D70, KeyValuePair_2_UnityEngine_Vector3_System_Int32_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__96_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__96__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__97__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__97__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__97_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__97__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__97_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__97__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__97_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__97__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A10F0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__97_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__97__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A0F70, KeyValuePair_2_UnityEngine_Vector3Int_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__97_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__97__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__98__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__98__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__98_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__98__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__98_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__98__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__98_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__98__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A1310, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__98_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__98__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A1190, KeyValuePair_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__98_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__98__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__99__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__99__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__99_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__99__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__99_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__99__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__99_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__99__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A1530, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__99_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__99__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A13B0, KeyValuePair_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__99_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__99__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__100__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__100__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__100_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__100__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__100_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__100__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__100_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__100__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A1760, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__100_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__100__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A15D0, KeyValuePair_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__100_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__100__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__101__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__101__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__101_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__101__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__101_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__101__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__101_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__101__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A1980, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__101_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__101__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A1810, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__101_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__101__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__102__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__102__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__102_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__102__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__102_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__102__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__102_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__102__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A1B90, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__102_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__102__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A1A10, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__102_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__102__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__103__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__103__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__103_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__103__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__103_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__103__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__103_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__103__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A1DC0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__103_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__103__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A1C30, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__103_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__103__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__104__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__104__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__104_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__104__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__104_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__104__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__104_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__104__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A2000, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__104_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__104__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A1E70, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__104_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__104__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__105__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__105__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__105_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__105__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__105_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__105__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__105_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__105__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A2240, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__105_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__105__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A20C0, KeyValuePair_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__105_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__105__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__106__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__106__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__106_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__106__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__106_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__106__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__106_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__106__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A2460, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__106_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__106__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A22E0, KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__106_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__106__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__107__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__107__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__107_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__107__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__107_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__107__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__107_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__107__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A2680, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__107_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__107__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A2500, KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__107_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__107__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__108__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__108__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__108_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__108__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__108_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__108__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__108_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__108__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A28A0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__108_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__108__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A2720, KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__108_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__108__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__109__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__109__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__109_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__109__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__109_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__109__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__109_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__109__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A2AB0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__109_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__109__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A2940, KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__109_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__109__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__110__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__110__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__110_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__110__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__110_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__110__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__110_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__110__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A2D00, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__110_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__110__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A2B40, KeyValuePair_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__110_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__110__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Threading_ThreadLocal_1_LinkedSlotVolatile___ctor, (Array_InternalEnumerator_1_System_Threading_ThreadLocal_1_LinkedSlotVolatile___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Threading_ThreadLocal_1_LinkedSlotVolatile__Dispose, (Array_InternalEnumerator_1_System_Threading_ThreadLocal_1_LinkedSlotVolatile___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Threading_ThreadLocal_1_LinkedSlotVolatile__MoveNext, (Array_InternalEnumerator_1_System_Threading_ThreadLocal_1_LinkedSlotVolatile___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Threading_ThreadLocal_1_LinkedSlotVolatile__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Threading_ThreadLocal_1_LinkedSlotVolatile___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A2F50, Object *, Array_InternalEnumerator_1_System_Threading_ThreadLocal_1_LinkedSlotVolatile__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Threading_ThreadLocal_1_LinkedSlotVolatile___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A2DE0, ThreadLocal_1_T_LinkedSlotVolatile_System_Object_, Array_InternalEnumerator_1_System_Threading_ThreadLocal_1_LinkedSlotVolatile__get_Current, (Array_InternalEnumerator_1_System_Threading_ThreadLocal_1_LinkedSlotVolatile___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Unity_Collections_NativeArray_1___ctor, (Array_InternalEnumerator_1_Unity_Collections_NativeArray_1___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Unity_Collections_NativeArray_1__Dispose, (Array_InternalEnumerator_1_Unity_Collections_NativeArray_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Unity_Collections_NativeArray_1__MoveNext, (Array_InternalEnumerator_1_Unity_Collections_NativeArray_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Unity_Collections_NativeArray_1__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Unity_Collections_NativeArray_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A3150, Object *, Array_InternalEnumerator_1_Unity_Collections_NativeArray_1__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Unity_Collections_NativeArray_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A2FE0, NativeArray_1_System_UInt16_, Array_InternalEnumerator_1_Unity_Collections_NativeArray_1__get_Current, (Array_InternalEnumerator_1_Unity_Collections_NativeArray_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Unity_Collections_NativeArray_1__1__ctor, (Array_InternalEnumerator_1_Unity_Collections_NativeArray_1__1__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Unity_Collections_NativeArray_1__1_Dispose, (Array_InternalEnumerator_1_Unity_Collections_NativeArray_1__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Unity_Collections_NativeArray_1__1_MoveNext, (Array_InternalEnumerator_1_Unity_Collections_NativeArray_1__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Unity_Collections_NativeArray_1__1_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Unity_Collections_NativeArray_1__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A3350, Object *, Array_InternalEnumerator_1_Unity_Collections_NativeArray_1__1_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Unity_Collections_NativeArray_1__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A31E0, NativeArray_1_UnityEngine_UIElements_Vertex_, Array_InternalEnumerator_1_Unity_Collections_NativeArray_1__1_get_Current, (Array_InternalEnumerator_1_Unity_Collections_NativeArray_1__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node___ctor, (Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__Dispose, (Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__MoveNext, (Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A3560, Object *, Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A33E0, NonAllocDictionary_2_K_V_Node_System_Byte_System_Object_, Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__get_Current, (Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__1__ctor, (Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__1__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__1_Dispose, (Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__1_MoveNext, (Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__1_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A3780, Object *, Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__1_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A3600, NonAllocDictionary_2_K_V_Node_System_Int32_System_Object_, Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__1_get_Current, (Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__2__ctor, (Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__2__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__2_Dispose, (Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__2_MoveNext, (Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__2_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A39A0, Object *, Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__2_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A3820, NonAllocDictionary_2_K_V_Node_System_Object_System_Object_, Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__2_get_Current, (Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_1_Record___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_1_Record___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_1_Record__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_1_Record___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_1_Record__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_1_Record___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_1_Record__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_1_Record___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A3BB0, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_1_Record__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_1_Record___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A3A40, InputStateHistory_1_TValue_Record_TouchState_, Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_1_Record__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_1_Record___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo___ctor, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo__Dispose, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A3DB0, Object *, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A3C40, RenderGraphResourcePool_1_Type_ResourceLogInfo_System_Object_, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo__get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Photon_Bolt_Collections_STuple_2___ctor, (Array_InternalEnumerator_1_Photon_Bolt_Collections_STuple_2___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Photon_Bolt_Collections_STuple_2__Dispose, (Array_InternalEnumerator_1_Photon_Bolt_Collections_STuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Photon_Bolt_Collections_STuple_2__MoveNext, (Array_InternalEnumerator_1_Photon_Bolt_Collections_STuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Photon_Bolt_Collections_STuple_2__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Photon_Bolt_Collections_STuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A3FB0, Object *, Array_InternalEnumerator_1_Photon_Bolt_Collections_STuple_2__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Photon_Bolt_Collections_STuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A3E40, STuple_2_System_Object_System_Object_, Array_InternalEnumerator_1_Photon_Bolt_Collections_STuple_2__get_Current, (Array_InternalEnumerator_1_Photon_Bolt_Collections_STuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot___ctor, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A41C0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A4040, HashSet_1_T_Slot_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__1__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__1__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__1_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__1_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__1_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A43E0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__1_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A4260, HashSet_1_T_Slot_System_Int32_, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__1_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Linq_Set_1_Slot___ctor, (Array_InternalEnumerator_1_System_Linq_Set_1_Slot___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Linq_Set_1_Slot__Dispose, (Array_InternalEnumerator_1_System_Linq_Set_1_Slot___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Linq_Set_1_Slot__MoveNext, (Array_InternalEnumerator_1_System_Linq_Set_1_Slot___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Linq_Set_1_Slot__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Linq_Set_1_Slot___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A4600, Object *, Array_InternalEnumerator_1_System_Linq_Set_1_Slot__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Linq_Set_1_Slot___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A4480, Set_1_TElement_Slot_System_Int32_, Array_InternalEnumerator_1_System_Linq_Set_1_Slot__get_Current, (Array_InternalEnumerator_1_System_Linq_Set_1_Slot___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__2__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__2__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__2_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__2_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__2_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A4820, Object *, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__2_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A46A0, HashSet_1_T_Slot_System_Int32Enum_, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__2_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__3__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__3__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__3_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__3_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__3_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A4A40, Object *, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__3_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A48C0, HashSet_1_T_Slot_UnityEngine_InputSystem_Utilities_InternedString_, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__3_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__4__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__4__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__4_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__4__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__4_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__4__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__4_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__4__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A4C50, Object *, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__4_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__4__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A4AE0, HashSet_1_T_Slot_Photon_Bolt_NetworkId_, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__4_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__4__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__5__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__5__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__5_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__5__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__5_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__5__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__5_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__5__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A4E50, Object *, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__5_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__5__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A4CE0, HashSet_1_T_Slot_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__5_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__5__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Linq_Set_1_Slot__1__ctor, (Array_InternalEnumerator_1_System_Linq_Set_1_Slot__1__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Linq_Set_1_Slot__1_Dispose, (Array_InternalEnumerator_1_System_Linq_Set_1_Slot__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Linq_Set_1_Slot__1_MoveNext, (Array_InternalEnumerator_1_System_Linq_Set_1_Slot__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Linq_Set_1_Slot__1_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Linq_Set_1_Slot__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A5060, Object *, Array_InternalEnumerator_1_System_Linq_Set_1_Slot__1_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Linq_Set_1_Slot__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A4EE0, Set_1_TElement_Slot_System_Object_, Array_InternalEnumerator_1_System_Linq_Set_1_Slot__1_get_Current, (Array_InternalEnumerator_1_System_Linq_Set_1_Slot__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Concurrent_ConcurrentQueue_1_Segment_Slot___ctor, (Array_InternalEnumerator_1_System_Collections_Concurrent_ConcurrentQueue_1_Segment_Slot___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Concurrent_ConcurrentQueue_1_Segment_Slot__Dispose, (Array_InternalEnumerator_1_System_Collections_Concurrent_ConcurrentQueue_1_Segment_Slot___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Concurrent_ConcurrentQueue_1_Segment_Slot__MoveNext, (Array_InternalEnumerator_1_System_Collections_Concurrent_ConcurrentQueue_1_Segment_Slot___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Concurrent_ConcurrentQueue_1_Segment_Slot__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Concurrent_ConcurrentQueue_1_Segment_Slot___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A5270, Object *, Array_InternalEnumerator_1_System_Collections_Concurrent_ConcurrentQueue_1_Segment_Slot__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Concurrent_ConcurrentQueue_1_Segment_Slot___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A5100, ConcurrentQueue_1_T_Segment_T_Slot_System_Object_, Array_InternalEnumerator_1_System_Collections_Concurrent_ConcurrentQueue_1_Segment_Slot__get_Current, (Array_InternalEnumerator_1_System_Collections_Concurrent_ConcurrentQueue_1_Segment_Slot___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__6__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__6__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__6_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__6__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__6_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__6__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__6_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__6__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A5480, Object *, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__6_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__6__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A5300, HashSet_1_T_Slot_System_UInt32_, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__6_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__6__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__7__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__7__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__7_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__7__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__7_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__7__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__7_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__7__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A5690, Object *, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__7_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__7__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A5520, HashSet_1_T_Slot_System_UInt64_, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__7_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__7__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__8__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__8__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__8_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__8__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__8_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__8__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__8_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__8__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A58A0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__8_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__8__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A5720, HashSet_1_T_Slot_UdpKit_UdpEndPoint_, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__8_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__8__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__9__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__9__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__9_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__9__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__9_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__9__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__9_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__9__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A5AD0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__9_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__9__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A5950, HashSet_1_T_Slot_UdpKit_UdpIPv4Address_, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__9_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__9__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__10__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__10__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__10_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__10__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__10_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__10__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__10_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__10__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A5CF0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__10_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__10__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A5B70, HashSet_1_T_Slot_UnityEngine_Vector3_, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__10_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__10__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__11__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__11__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__11_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__11__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__11_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__11__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__11_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__11__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A5F10, Object *, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__11_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__11__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A5D90, HashSet_1_T_Slot_UnityEngine_Vector3Int_, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__11_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__11__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A6170, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A5FB0, StylePropertyAnimationSystem_Values_1_T_StyleData_Background_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__1__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__1__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__1_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__1_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__1_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A63E0, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__1_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A6250, StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__1_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__2__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__2__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__2_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__2_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__2_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A6630, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__2_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A64A0, StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__2_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__3__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__3__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__3_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__3_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__3_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A6860, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__3_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A66F0, StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__3_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__4__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__4__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__4_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__4__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__4_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__4__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__4_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__4__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A6A70, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__4_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__4__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A68F0, StylePropertyAnimationSystem_Values_1_T_StyleData_Length_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__4_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__4__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__5__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__5__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__5_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__5__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__5_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__5__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__5_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__5__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A6C90, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__5_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__5__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A6B10, StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__5_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__5__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__6__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__6__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__6_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__6__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__6_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__6__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__6_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__6__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A6EE0, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__6_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__6__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A6D30, StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__6_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__6__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__7__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__7__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__7_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__7__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__7_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__7__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__7_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__7__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A7140, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__7_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__7__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A6FB0, StylePropertyAnimationSystem_Values_1_T_StyleData_Scale_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__7_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__7__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__8__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__8__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__8_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__8__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__8_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__8__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__8_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__8__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A7370, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__8_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__8__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A7200, StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__8_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__8__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__9__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__9__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__9_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__9__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__9_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__9__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__9_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__9__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A75B0, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__9_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__9__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A7400, StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__9_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__9__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__10__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__10__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__10_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__10__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__10_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__10__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__10_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__10__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A7830, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__10_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__10__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A7690, StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__10_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__10__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__11__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__11__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__11_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__11__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__11_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__11__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__11_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__11__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A7AA0, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__11_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__11__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A78F0, StylePropertyAnimationSystem_Values_1_T_StyleData_Translate_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__11_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__11__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1___ctor, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__Dispose, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__MoveNext, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A7CF0, Object *, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A7B70, TMP_TextProcessingStack_1_UnityEngine_Color32_, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__get_Current, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__1__ctor, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__1__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__1_Dispose, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__1_MoveNext, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__1_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A7F20, Object *, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__1_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A7D90, TMP_TextProcessingStack_1_HighlightState_, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__1_get_Current, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__2__ctor, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__2__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__2_Dispose, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__2_MoveNext, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__2_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A8150, Object *, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__2_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A7FD0, TMP_TextProcessingStack_1_System_Int32_, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__2_get_Current, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__3__ctor, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__3__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__3_Dispose, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__3_MoveNext, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__3_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A8370, Object *, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__3_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A81F0, TMP_TextProcessingStack_1_System_Int32Enum_, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__3_get_Current, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__4__ctor, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__4__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__4_Dispose, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__4__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__4_MoveNext, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__4__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__4_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__4__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A85C0, Object *, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__4_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__4__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A8410, TMP_TextProcessingStack_1_MaterialReference_, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__4_get_Current, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__4__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__5__ctor, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__5__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__5_Dispose, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__5__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__5_MoveNext, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__5__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__5_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__5__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A8820, Object *, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__5_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__5__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A8690, TMP_TextProcessingStack_1_System_Object_, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__5_get_Current, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__5__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__6__ctor, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__6__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__6_Dispose, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__6__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__6_MoveNext, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__6__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__6_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__6__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A8A50, Object *, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__6_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__6__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A88D0, TMP_TextProcessingStack_1_System_Single_, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__6_get_Current, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__6__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__7__ctor, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__7__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__7_Dispose, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__7__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__7_MoveNext, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__7__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__7_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__7__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A8CD0, Object *, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__7_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__7__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A8AF0, TMP_TextProcessingStack_1_WordWrapState_, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__7_get_Current, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__7__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A8F60, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A8DD0, StylePropertyAnimationSystem_Values_1_T_TimingData_Background_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__1__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__1__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__1_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__1_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__1_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A91A0, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__1_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A9010, StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__1_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__2__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__2__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__2_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__2_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__2_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A93E0, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__2_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A9250, StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__2_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__3__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__3__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__3_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__3_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__3_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A9620, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__3_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A9490, StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__3_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__4__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__4__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__4_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__4__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__4_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__4__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__4_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__4__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A9860, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__4_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__4__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A96D0, StylePropertyAnimationSystem_Values_1_T_TimingData_Length_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__4_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__4__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__5__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__5__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__5_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__5__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__5_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__5__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__5_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__5__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A9AA0, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__5_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__5__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A9910, StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__5_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__5__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__6__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__6__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__6_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__6__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__6_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__6__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__6_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__6__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A9CE0, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__6_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__6__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A9B50, StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__6_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__6__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__7__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__7__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__7_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__7__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__7_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__7__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__7_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__7__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A9F20, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__7_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__7__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A9D90, StylePropertyAnimationSystem_Values_1_T_TimingData_Scale_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__7_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__7__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__8__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__8__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__8_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__8__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__8_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__8__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__8_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__8__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AA160, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__8_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__8__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016A9FD0, StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__8_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__8__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__9__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__9__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__9_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__9__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__9_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__9__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__9_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__9__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AA3A0, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__9_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__9__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AA210, StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__9_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__9__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__10__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__10__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__10_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__10__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__10_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__10__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__10_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__10__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AA5E0, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__10_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__10__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AA450, StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__10_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__10__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__11__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__11__Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__11_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__11__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__11_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__11__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__11_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__11__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AA820, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__11_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__11__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AA690, StylePropertyAnimationSystem_Values_1_T_TimingData_Translate_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__11_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__11__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_ValueTuple_1_Boolean___ctor, (Array_InternalEnumerator_1_ValueTuple_1_Boolean___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_ValueTuple_1_Boolean__Dispose, (Array_InternalEnumerator_1_ValueTuple_1_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_ValueTuple_1_Boolean__MoveNext, (Array_InternalEnumerator_1_ValueTuple_1_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_ValueTuple_1_Boolean__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_ValueTuple_1_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AAA40, Object *, Array_InternalEnumerator_1_ValueTuple_1_Boolean__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_ValueTuple_1_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AA8D0, ValueTuple_1_Boolean_, Array_InternalEnumerator_1_ValueTuple_1_Boolean__get_Current, (Array_InternalEnumerator_1_ValueTuple_1_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_ValueTuple_2_Int32_Object___ctor, (Array_InternalEnumerator_1_ValueTuple_2_Int32_Object___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_ValueTuple_2_Int32_Object__Dispose, (Array_InternalEnumerator_1_ValueTuple_2_Int32_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_ValueTuple_2_Int32_Object__MoveNext, (Array_InternalEnumerator_1_ValueTuple_2_Int32_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_ValueTuple_2_Int32_Object__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_ValueTuple_2_Int32_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AAC40, Object *, Array_InternalEnumerator_1_ValueTuple_2_Int32_Object__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_ValueTuple_2_Int32_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AAAD0, ValueTuple_2_Int32_Object_, Array_InternalEnumerator_1_ValueTuple_2_Int32_Object__get_Current, (Array_InternalEnumerator_1_ValueTuple_2_Int32_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_ValueTuple_2_Int32_UnityEngine_Vector2Int___ctor, (Array_InternalEnumerator_1_ValueTuple_2_Int32_UnityEngine_Vector2Int___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_ValueTuple_2_Int32_UnityEngine_Vector2Int__Dispose, (Array_InternalEnumerator_1_ValueTuple_2_Int32_UnityEngine_Vector2Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_ValueTuple_2_Int32_UnityEngine_Vector2Int__MoveNext, (Array_InternalEnumerator_1_ValueTuple_2_Int32_UnityEngine_Vector2Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_ValueTuple_2_Int32_UnityEngine_Vector2Int__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_ValueTuple_2_Int32_UnityEngine_Vector2Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AAE50, Object *, Array_InternalEnumerator_1_ValueTuple_2_Int32_UnityEngine_Vector2Int__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_ValueTuple_2_Int32_UnityEngine_Vector2Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AACD0, ValueTuple_2_Int32_UnityEngine_Vector2Int_, Array_InternalEnumerator_1_ValueTuple_2_Int32_UnityEngine_Vector2Int__get_Current, (Array_InternalEnumerator_1_ValueTuple_2_Int32_UnityEngine_Vector2Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_ValueTuple_2_IntPtr_Object___ctor, (Array_InternalEnumerator_1_ValueTuple_2_IntPtr_Object___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_ValueTuple_2_IntPtr_Object__Dispose, (Array_InternalEnumerator_1_ValueTuple_2_IntPtr_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_ValueTuple_2_IntPtr_Object__MoveNext, (Array_InternalEnumerator_1_ValueTuple_2_IntPtr_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_ValueTuple_2_IntPtr_Object__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_ValueTuple_2_IntPtr_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AB060, Object *, Array_InternalEnumerator_1_ValueTuple_2_IntPtr_Object__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_ValueTuple_2_IntPtr_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AAEF0, ValueTuple_2_IntPtr_Object_, Array_InternalEnumerator_1_ValueTuple_2_IntPtr_Object__get_Current, (Array_InternalEnumerator_1_ValueTuple_2_IntPtr_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_ValueTuple_2_Object_ValueTuple_2_Object_Int32___ctor, (Array_InternalEnumerator_1_ValueTuple_2_Object_ValueTuple_2_Object_Int32___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_ValueTuple_2_Object_ValueTuple_2_Object_Int32__Dispose, (Array_InternalEnumerator_1_ValueTuple_2_Object_ValueTuple_2_Object_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_ValueTuple_2_Object_ValueTuple_2_Object_Int32__MoveNext, (Array_InternalEnumerator_1_ValueTuple_2_Object_ValueTuple_2_Object_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_ValueTuple_2_Object_ValueTuple_2_Object_Int32__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_ValueTuple_2_Object_ValueTuple_2_Object_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AB270, Object *, Array_InternalEnumerator_1_ValueTuple_2_Object_ValueTuple_2_Object_Int32__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_ValueTuple_2_Object_ValueTuple_2_Object_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AB0F0, ValueTuple_2_Object_ValueTuple_2_Object_Int32_, Array_InternalEnumerator_1_ValueTuple_2_Object_ValueTuple_2_Object_Int32__get_Current, (Array_InternalEnumerator_1_ValueTuple_2_Object_ValueTuple_2_Object_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_ValueTuple_2_Object_Int32___ctor, (Array_InternalEnumerator_1_ValueTuple_2_Object_Int32___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_ValueTuple_2_Object_Int32__Dispose, (Array_InternalEnumerator_1_ValueTuple_2_Object_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_ValueTuple_2_Object_Int32__MoveNext, (Array_InternalEnumerator_1_ValueTuple_2_Object_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_ValueTuple_2_Object_Int32__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_ValueTuple_2_Object_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AB480, Object *, Array_InternalEnumerator_1_ValueTuple_2_Object_Int32__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_ValueTuple_2_Object_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AB310, ValueTuple_2_Object_Int32_, Array_InternalEnumerator_1_ValueTuple_2_Object_Int32__get_Current, (Array_InternalEnumerator_1_ValueTuple_2_Object_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_ValueTuple_2_Object_Object___ctor, (Array_InternalEnumerator_1_ValueTuple_2_Object_Object___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_ValueTuple_2_Object_Object__Dispose, (Array_InternalEnumerator_1_ValueTuple_2_Object_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_ValueTuple_2_Object_Object__MoveNext, (Array_InternalEnumerator_1_ValueTuple_2_Object_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_ValueTuple_2_Object_Object__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_ValueTuple_2_Object_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AB680, Object *, Array_InternalEnumerator_1_ValueTuple_2_Object_Object__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_ValueTuple_2_Object_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AB510, ValueTuple_2_Object_Object_, Array_InternalEnumerator_1_ValueTuple_2_Object_Object__get_Current, (Array_InternalEnumerator_1_ValueTuple_2_Object_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Object___ctor, (Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Object___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Object__Dispose, (Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Object__MoveNext, (Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Object__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AB890, Object *, Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Object__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AB710, ValueTuple_2_UnityEngine_Vector3Int_Object_, Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Object__get_Current, (Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel___ctor, (Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel__Dispose, (Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel__MoveNext, (Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016ABAC0, Object *, Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AB930, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_, Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel__get_Current, (Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership___ctor, (Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership__Dispose, (Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership__MoveNext, (Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016ABD10, Object *, Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016ABB80, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_, Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership__get_Current, (Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int___ctor, (Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int__Dispose, (Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int__MoveNext, (Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016ABF40, Object *, Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016ABDC0, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int_, Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int__get_Current, (Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_ValueTuple_3_Object_Object_Object___ctor, (Array_InternalEnumerator_1_ValueTuple_3_Object_Object_Object___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_ValueTuple_3_Object_Object_Object__Dispose, (Array_InternalEnumerator_1_ValueTuple_3_Object_Object_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_ValueTuple_3_Object_Object_Object__MoveNext, (Array_InternalEnumerator_1_ValueTuple_3_Object_Object_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_ValueTuple_3_Object_Object_Object__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_ValueTuple_3_Object_Object_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AC160, Object *, Array_InternalEnumerator_1_ValueTuple_3_Object_Object_Object__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_ValueTuple_3_Object_Object_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016ABFE0, ValueTuple_3_Object_Object_Object_, Array_InternalEnumerator_1_ValueTuple_3_Object_Object_Object__get_Current, (Array_InternalEnumerator_1_ValueTuple_3_Object_Object_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_AnimatorClipInfo___ctor, (Array_InternalEnumerator_1_UnityEngine_AnimatorClipInfo___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_AnimatorClipInfo__Dispose, (Array_InternalEnumerator_1_UnityEngine_AnimatorClipInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_AnimatorClipInfo__MoveNext, (Array_InternalEnumerator_1_UnityEngine_AnimatorClipInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_AnimatorClipInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_AnimatorClipInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AC370, Object *, Array_InternalEnumerator_1_UnityEngine_AnimatorClipInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_AnimatorClipInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AC200, AnimatorClipInfo, Array_InternalEnumerator_1_UnityEngine_AnimatorClipInfo__get_Current, (Array_InternalEnumerator_1_UnityEngine_AnimatorClipInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Pathfinding_AstarWorkItem___ctor, (Array_InternalEnumerator_1_Pathfinding_AstarWorkItem___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Pathfinding_AstarWorkItem__Dispose, (Array_InternalEnumerator_1_Pathfinding_AstarWorkItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Pathfinding_AstarWorkItem__MoveNext, (Array_InternalEnumerator_1_Pathfinding_AstarWorkItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Pathfinding_AstarWorkItem__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Pathfinding_AstarWorkItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AC580, Object *, Array_InternalEnumerator_1_Pathfinding_AstarWorkItem__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Pathfinding_AstarWorkItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AC400, AstarWorkItem, Array_InternalEnumerator_1_Pathfinding_AstarWorkItem__get_Current, (Array_InternalEnumerator_1_Pathfinding_AstarWorkItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___ctor, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__Dispose, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__MoveNext, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AC7A0, Object *, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AC620, AsyncOperationHandle, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__get_Current, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Rewired_AxisCalibrationData___ctor, (Array_InternalEnumerator_1_Rewired_AxisCalibrationData___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Rewired_AxisCalibrationData__Dispose, (Array_InternalEnumerator_1_Rewired_AxisCalibrationData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Rewired_AxisCalibrationData__MoveNext, (Array_InternalEnumerator_1_Rewired_AxisCalibrationData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Rewired_AxisCalibrationData__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Rewired_AxisCalibrationData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AC9D0, Object *, Array_InternalEnumerator_1_Rewired_AxisCalibrationData__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Rewired_AxisCalibrationData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AC840, AxisCalibrationData, Array_InternalEnumerator_1_Rewired_AxisCalibrationData__get_Current, (Array_InternalEnumerator_1_Rewired_AxisCalibrationData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_Background___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_Background___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_Background__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_Background___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_Background__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_Background___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_Background__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_Background___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016ACC10, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_Background__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_Background___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016ACA90, Background, Array_InternalEnumerator_1_UnityEngine_UIElements_Background__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_Background___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_BatchVisibility___ctor, (Array_InternalEnumerator_1_UnityEngine_Rendering_BatchVisibility___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Rendering_BatchVisibility__Dispose, (Array_InternalEnumerator_1_UnityEngine_Rendering_BatchVisibility___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Rendering_BatchVisibility__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Rendering_BatchVisibility___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_BatchVisibility__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Rendering_BatchVisibility___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016ACE30, Object *, Array_InternalEnumerator_1_UnityEngine_Rendering_BatchVisibility__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_BatchVisibility___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016ACCB0, BatchVisibility, Array_InternalEnumerator_1_UnityEngine_Rendering_BatchVisibility__get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_BatchVisibility___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Dissonance_Integrations_PhotonBolt_BoltPeer___ctor, (Array_InternalEnumerator_1_Dissonance_Integrations_PhotonBolt_BoltPeer___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Dissonance_Integrations_PhotonBolt_BoltPeer__Dispose, (Array_InternalEnumerator_1_Dissonance_Integrations_PhotonBolt_BoltPeer___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Dissonance_Integrations_PhotonBolt_BoltPeer__MoveNext, (Array_InternalEnumerator_1_Dissonance_Integrations_PhotonBolt_BoltPeer___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Dissonance_Integrations_PhotonBolt_BoltPeer__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Dissonance_Integrations_PhotonBolt_BoltPeer___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AD040, Object *, Array_InternalEnumerator_1_Dissonance_Integrations_PhotonBolt_BoltPeer__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Dissonance_Integrations_PhotonBolt_BoltPeer___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016ACED0, BoltPeer, Array_InternalEnumerator_1_Dissonance_Integrations_PhotonBolt_BoltPeer__get_Current, (Array_InternalEnumerator_1_Dissonance_Integrations_PhotonBolt_BoltPeer___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Photon_Bolt_LagCompensation_BoltPhysicsHit___ctor, (Array_InternalEnumerator_1_Photon_Bolt_LagCompensation_BoltPhysicsHit___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Photon_Bolt_LagCompensation_BoltPhysicsHit__Dispose, (Array_InternalEnumerator_1_Photon_Bolt_LagCompensation_BoltPhysicsHit___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Photon_Bolt_LagCompensation_BoltPhysicsHit__MoveNext, (Array_InternalEnumerator_1_Photon_Bolt_LagCompensation_BoltPhysicsHit___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Photon_Bolt_LagCompensation_BoltPhysicsHit__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Photon_Bolt_LagCompensation_BoltPhysicsHit___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AD250, Object *, Array_InternalEnumerator_1_Photon_Bolt_LagCompensation_BoltPhysicsHit__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Photon_Bolt_LagCompensation_BoltPhysicsHit___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AD0D0, BoltPhysicsHit, Array_InternalEnumerator_1_Photon_Bolt_LagCompensation_BoltPhysicsHit__get_Current, (Array_InternalEnumerator_1_Photon_Bolt_LagCompensation_BoltPhysicsHit___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_BoneWeight___ctor, (Array_InternalEnumerator_1_UnityEngine_BoneWeight___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_BoneWeight__Dispose, (Array_InternalEnumerator_1_UnityEngine_BoneWeight___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_BoneWeight__MoveNext, (Array_InternalEnumerator_1_UnityEngine_BoneWeight___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_BoneWeight__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_BoneWeight___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AD470, Object *, Array_InternalEnumerator_1_UnityEngine_BoneWeight__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_BoneWeight___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AD2F0, BoneWeight, Array_InternalEnumerator_1_UnityEngine_BoneWeight__get_Current, (Array_InternalEnumerator_1_UnityEngine_BoneWeight___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_BoneWeight1___ctor, (Array_InternalEnumerator_1_UnityEngine_BoneWeight1___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_BoneWeight1__Dispose, (Array_InternalEnumerator_1_UnityEngine_BoneWeight1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_BoneWeight1__MoveNext, (Array_InternalEnumerator_1_UnityEngine_BoneWeight1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_BoneWeight1__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_BoneWeight1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AD680, Object *, Array_InternalEnumerator_1_UnityEngine_BoneWeight1__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_BoneWeight1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AD510, BoneWeight1, Array_InternalEnumerator_1_UnityEngine_BoneWeight1__get_Current, (Array_InternalEnumerator_1_UnityEngine_BoneWeight1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Boolean___ctor, (Array_InternalEnumerator_1_Boolean___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Boolean__Dispose, (Array_InternalEnumerator_1_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Boolean__MoveNext, (Array_InternalEnumerator_1_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Boolean__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AD880, Object *, Array_InternalEnumerator_1_Boolean__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AD710, bool, Array_InternalEnumerator_1_Boolean__get_Current, (Array_InternalEnumerator_1_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_BoundedPlane___ctor, (Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_BoundedPlane___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_BoundedPlane__Dispose, (Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_BoundedPlane___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_BoundedPlane__MoveNext, (Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_BoundedPlane___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_BoundedPlane__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_BoundedPlane___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016ADAC0, Object *, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_BoundedPlane__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_BoundedPlane___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AD910, BoundedPlane, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_BoundedPlane__get_Current, (Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_BoundedPlane___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_BoundingSphere___ctor, (Array_InternalEnumerator_1_UnityEngine_BoundingSphere___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_BoundingSphere__Dispose, (Array_InternalEnumerator_1_UnityEngine_BoundingSphere___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_BoundingSphere__MoveNext, (Array_InternalEnumerator_1_UnityEngine_BoundingSphere___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_BoundingSphere__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_BoundingSphere___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016ADD10, Object *, Array_InternalEnumerator_1_UnityEngine_BoundingSphere__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_BoundingSphere___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016ADBA0, BoundingSphere, Array_InternalEnumerator_1_UnityEngine_BoundingSphere__get_Current, (Array_InternalEnumerator_1_UnityEngine_BoundingSphere___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Bounds___ctor, (Array_InternalEnumerator_1_UnityEngine_Bounds___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Bounds__Dispose, (Array_InternalEnumerator_1_UnityEngine_Bounds___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Bounds__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Bounds___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Bounds__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Bounds___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016ADF20, Object *, Array_InternalEnumerator_1_UnityEngine_Bounds__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Bounds___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016ADDA0, Bounds, Array_InternalEnumerator_1_UnityEngine_Bounds__get_Current, (Array_InternalEnumerator_1_UnityEngine_Bounds___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Byte___ctor, (Array_InternalEnumerator_1_Byte___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Byte__Dispose, (Array_InternalEnumerator_1_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Byte__MoveNext, (Array_InternalEnumerator_1_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Byte__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AE130, Object *, Array_InternalEnumerator_1_Byte__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016ADFC0, uint8_t, Array_InternalEnumerator_1_Byte__get_Current, (Array_InternalEnumerator_1_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_ByteEnum___ctor, (Array_InternalEnumerator_1_ByteEnum___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_ByteEnum__Dispose, (Array_InternalEnumerator_1_ByteEnum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_ByteEnum__MoveNext, (Array_InternalEnumerator_1_ByteEnum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_ByteEnum__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_ByteEnum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AE330, Object *, Array_InternalEnumerator_1_ByteEnum__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_ByteEnum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AE1C0, ByteEnum__Enum, Array_InternalEnumerator_1_ByteEnum__get_Current, (Array_InternalEnumerator_1_ByteEnum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Threading_CancellationToken___ctor, (Array_InternalEnumerator_1_System_Threading_CancellationToken___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Threading_CancellationToken__Dispose, (Array_InternalEnumerator_1_System_Threading_CancellationToken___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Threading_CancellationToken__MoveNext, (Array_InternalEnumerator_1_System_Threading_CancellationToken___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Threading_CancellationToken__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Threading_CancellationToken___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AE530, Object *, Array_InternalEnumerator_1_System_Threading_CancellationToken__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Threading_CancellationToken___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AE3C0, CancellationToken, Array_InternalEnumerator_1_System_Threading_CancellationToken__get_Current, (Array_InternalEnumerator_1_System_Threading_CancellationToken___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Threading_CancellationTokenRegistration___ctor, (Array_InternalEnumerator_1_System_Threading_CancellationTokenRegistration___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Threading_CancellationTokenRegistration__Dispose, (Array_InternalEnumerator_1_System_Threading_CancellationTokenRegistration___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Threading_CancellationTokenRegistration__MoveNext, (Array_InternalEnumerator_1_System_Threading_CancellationTokenRegistration___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Threading_CancellationTokenRegistration__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Threading_CancellationTokenRegistration___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AE740, Object *, Array_InternalEnumerator_1_System_Threading_CancellationTokenRegistration__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Threading_CancellationTokenRegistration___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AE5C0, CancellationTokenRegistration, Array_InternalEnumerator_1_System_Threading_CancellationTokenRegistration__get_Current, (Array_InternalEnumerator_1_System_Threading_CancellationTokenRegistration___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Char___ctor, (Array_InternalEnumerator_1_Char___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Char__Dispose, (Array_InternalEnumerator_1_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Char__MoveNext, (Array_InternalEnumerator_1_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Char__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AE950, Object *, Array_InternalEnumerator_1_Char__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AE7E0, uint16_t, Array_InternalEnumerator_1_Char__get_Current, (Array_InternalEnumerator_1_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Dissonance_Networking_ClientInfo___ctor, (Array_InternalEnumerator_1_Dissonance_Networking_ClientInfo___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Dissonance_Networking_ClientInfo__Dispose, (Array_InternalEnumerator_1_Dissonance_Networking_ClientInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Dissonance_Networking_ClientInfo__MoveNext, (Array_InternalEnumerator_1_Dissonance_Networking_ClientInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Dissonance_Networking_ClientInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Dissonance_Networking_ClientInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AEB60, Object *, Array_InternalEnumerator_1_Dissonance_Networking_ClientInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Dissonance_Networking_ClientInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AE9E0, ClientInfo, Array_InternalEnumerator_1_Dissonance_Networking_ClientInfo__get_Current, (Array_InternalEnumerator_1_Dissonance_Networking_ClientInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_ClothSkinningCoefficient___ctor, (Array_InternalEnumerator_1_UnityEngine_ClothSkinningCoefficient___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_ClothSkinningCoefficient__Dispose, (Array_InternalEnumerator_1_UnityEngine_ClothSkinningCoefficient___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_ClothSkinningCoefficient__MoveNext, (Array_InternalEnumerator_1_UnityEngine_ClothSkinningCoefficient___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_ClothSkinningCoefficient__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_ClothSkinningCoefficient___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AED70, Object *, Array_InternalEnumerator_1_UnityEngine_ClothSkinningCoefficient__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_ClothSkinningCoefficient___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AEC00, ClothSkinningCoefficient, Array_InternalEnumerator_1_UnityEngine_ClothSkinningCoefficient__get_Current, (Array_InternalEnumerator_1_UnityEngine_ClothSkinningCoefficient___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_ClothSphereColliderPair___ctor, (Array_InternalEnumerator_1_UnityEngine_ClothSphereColliderPair___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_ClothSphereColliderPair__Dispose, (Array_InternalEnumerator_1_UnityEngine_ClothSphereColliderPair___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_ClothSphereColliderPair__MoveNext, (Array_InternalEnumerator_1_UnityEngine_ClothSphereColliderPair___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_ClothSphereColliderPair__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_ClothSphereColliderPair___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AEF70, Object *, Array_InternalEnumerator_1_UnityEngine_ClothSphereColliderPair__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_ClothSphereColliderPair___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AEE00, ClothSphereColliderPair, Array_InternalEnumerator_1_UnityEngine_ClothSphereColliderPair__get_Current, (Array_InternalEnumerator_1_UnityEngine_ClothSphereColliderPair___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Color___ctor, (Array_InternalEnumerator_1_UnityEngine_Color___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Color__Dispose, (Array_InternalEnumerator_1_UnityEngine_Color___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Color__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Color___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Color__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Color___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AF170, Object *, Array_InternalEnumerator_1_UnityEngine_Color__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Color___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AF000, Color, Array_InternalEnumerator_1_UnityEngine_Color__get_Current, (Array_InternalEnumerator_1_UnityEngine_Color___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Color32___ctor, (Array_InternalEnumerator_1_UnityEngine_Color32___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Color32__Dispose, (Array_InternalEnumerator_1_UnityEngine_Color32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Color32__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Color32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Color32__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Color32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AF370, Object *, Array_InternalEnumerator_1_UnityEngine_Color32__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Color32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AF200, Color32, Array_InternalEnumerator_1_UnityEngine_Color32__get_Current, (Array_InternalEnumerator_1_UnityEngine_Color32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UI_ColorBlock___ctor, (Array_InternalEnumerator_1_UnityEngine_UI_ColorBlock___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UI_ColorBlock__Dispose, (Array_InternalEnumerator_1_UnityEngine_UI_ColorBlock___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UI_ColorBlock__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UI_ColorBlock___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UI_ColorBlock__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UI_ColorBlock___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AF5B0, Object *, Array_InternalEnumerator_1_UnityEngine_UI_ColorBlock__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UI_ColorBlock___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AF400, ColorBlock, Array_InternalEnumerator_1_UnityEngine_UI_ColorBlock__get_Current, (Array_InternalEnumerator_1_UnityEngine_UI_ColorBlock___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_CombineInstance___ctor, (Array_InternalEnumerator_1_UnityEngine_CombineInstance___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_CombineInstance__Dispose, (Array_InternalEnumerator_1_UnityEngine_CombineInstance___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_CombineInstance__MoveNext, (Array_InternalEnumerator_1_UnityEngine_CombineInstance___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_CombineInstance__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_CombineInstance___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AF830, Object *, Array_InternalEnumerator_1_UnityEngine_CombineInstance__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_CombineInstance___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AF680, CombineInstance, Array_InternalEnumerator_1_UnityEngine_CombineInstance__get_Current, (Array_InternalEnumerator_1_UnityEngine_CombineInstance___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Pathfinding_Voxels_CompactVoxelCell___ctor, (Array_InternalEnumerator_1_Pathfinding_Voxels_CompactVoxelCell___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Pathfinding_Voxels_CompactVoxelCell__Dispose, (Array_InternalEnumerator_1_Pathfinding_Voxels_CompactVoxelCell___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Pathfinding_Voxels_CompactVoxelCell__MoveNext, (Array_InternalEnumerator_1_Pathfinding_Voxels_CompactVoxelCell___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Pathfinding_Voxels_CompactVoxelCell__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Pathfinding_Voxels_CompactVoxelCell___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AFA80, Object *, Array_InternalEnumerator_1_Pathfinding_Voxels_CompactVoxelCell__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Pathfinding_Voxels_CompactVoxelCell___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AF910, CompactVoxelCell, Array_InternalEnumerator_1_Pathfinding_Voxels_CompactVoxelCell__get_Current, (Array_InternalEnumerator_1_Pathfinding_Voxels_CompactVoxelCell___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Pathfinding_Voxels_CompactVoxelSpan___ctor, (Array_InternalEnumerator_1_Pathfinding_Voxels_CompactVoxelSpan___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Pathfinding_Voxels_CompactVoxelSpan__Dispose, (Array_InternalEnumerator_1_Pathfinding_Voxels_CompactVoxelSpan___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Pathfinding_Voxels_CompactVoxelSpan__MoveNext, (Array_InternalEnumerator_1_Pathfinding_Voxels_CompactVoxelSpan___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Pathfinding_Voxels_CompactVoxelSpan__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Pathfinding_Voxels_CompactVoxelSpan___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AFC80, Object *, Array_InternalEnumerator_1_Pathfinding_Voxels_CompactVoxelSpan__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Pathfinding_Voxels_CompactVoxelSpan___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AFB10, CompactVoxelSpan, Array_InternalEnumerator_1_Pathfinding_Voxels_CompactVoxelSpan__get_Current, (Array_InternalEnumerator_1_Pathfinding_Voxels_CompactVoxelSpan___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_ComputedStyle___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_ComputedStyle___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_ComputedStyle__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_ComputedStyle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_ComputedStyle__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_ComputedStyle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_ComputedStyle__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_ComputedStyle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AFEC0, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_ComputedStyle__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_ComputedStyle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AFD10, ComputedStyle, Array_InternalEnumerator_1_UnityEngine_UIElements_ComputedStyle__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_ComputedStyle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_ComputedTransitionProperty___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_ComputedTransitionProperty___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_ComputedTransitionProperty__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_ComputedTransitionProperty___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_ComputedTransitionProperty__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_ComputedTransitionProperty___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_ComputedTransitionProperty__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_ComputedTransitionProperty___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B0110, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_ComputedTransitionProperty__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_ComputedTransitionProperty___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016AFF90, ComputedTransitionProperty, Array_InternalEnumerator_1_UnityEngine_UIElements_ComputedTransitionProperty__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_ComputedTransitionProperty___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor___ctor, (Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__Dispose, (Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__MoveNext, (Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B0330, Object *, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B01B0, ConfigurationDescriptor, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__get_Current, (Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Pathfinding_Connection___ctor, (Array_InternalEnumerator_1_Pathfinding_Connection___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Pathfinding_Connection__Dispose, (Array_InternalEnumerator_1_Pathfinding_Connection___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Pathfinding_Connection__MoveNext, (Array_InternalEnumerator_1_Pathfinding_Connection___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Pathfinding_Connection__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Pathfinding_Connection___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B0540, Object *, Array_InternalEnumerator_1_Pathfinding_Connection__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Pathfinding_Connection___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B03D0, Connection, Array_InternalEnumerator_1_Pathfinding_Connection__get_Current, (Array_InternalEnumerator_1_Pathfinding_Connection___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_ContactPoint___ctor, (Array_InternalEnumerator_1_UnityEngine_ContactPoint___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_ContactPoint__Dispose, (Array_InternalEnumerator_1_UnityEngine_ContactPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_ContactPoint__MoveNext, (Array_InternalEnumerator_1_UnityEngine_ContactPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_ContactPoint__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_ContactPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B0750, Object *, Array_InternalEnumerator_1_UnityEngine_ContactPoint__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_ContactPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B05D0, ContactPoint, Array_InternalEnumerator_1_UnityEngine_ContactPoint__get_Current, (Array_InternalEnumerator_1_UnityEngine_ContactPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_ContactPoint2D___ctor, (Array_InternalEnumerator_1_UnityEngine_ContactPoint2D___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_ContactPoint2D__Dispose, (Array_InternalEnumerator_1_UnityEngine_ContactPoint2D___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_ContactPoint2D__MoveNext, (Array_InternalEnumerator_1_UnityEngine_ContactPoint2D___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_ContactPoint2D__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_ContactPoint2D___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B0990, Object *, Array_InternalEnumerator_1_UnityEngine_ContactPoint2D__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_ContactPoint2D___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B0800, ContactPoint2D, Array_InternalEnumerator_1_UnityEngine_ContactPoint2D__get_Current, (Array_InternalEnumerator_1_UnityEngine_ContactPoint2D___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Rewired_ControllerPollingInfo___ctor, (Array_InternalEnumerator_1_Rewired_ControllerPollingInfo___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Rewired_ControllerPollingInfo__Dispose, (Array_InternalEnumerator_1_Rewired_ControllerPollingInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Rewired_ControllerPollingInfo__MoveNext, (Array_InternalEnumerator_1_Rewired_ControllerPollingInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Rewired_ControllerPollingInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Rewired_ControllerPollingInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B0BE0, Object *, Array_InternalEnumerator_1_Rewired_ControllerPollingInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Rewired_ControllerPollingInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B0A50, ControllerPollingInfo, Array_InternalEnumerator_1_Rewired_ControllerPollingInfo__get_Current, (Array_InternalEnumerator_1_Rewired_ControllerPollingInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Rewired_ControllerTemplateElementTarget___ctor, (Array_InternalEnumerator_1_Rewired_ControllerTemplateElementTarget___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Rewired_ControllerTemplateElementTarget__Dispose, (Array_InternalEnumerator_1_Rewired_ControllerTemplateElementTarget___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Rewired_ControllerTemplateElementTarget__MoveNext, (Array_InternalEnumerator_1_Rewired_ControllerTemplateElementTarget___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Rewired_ControllerTemplateElementTarget__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Rewired_ControllerTemplateElementTarget___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B0E10, Object *, Array_InternalEnumerator_1_Rewired_ControllerTemplateElementTarget__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Rewired_ControllerTemplateElementTarget___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B0CA0, ControllerTemplateElementTarget, Array_InternalEnumerator_1_Rewired_ControllerTemplateElementTarget__get_Current, (Array_InternalEnumerator_1_Rewired_ControllerTemplateElementTarget___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_SplineMesh_CurveSample___ctor, (Array_InternalEnumerator_1_SplineMesh_CurveSample___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_SplineMesh_CurveSample__Dispose, (Array_InternalEnumerator_1_SplineMesh_CurveSample___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_SplineMesh_CurveSample__MoveNext, (Array_InternalEnumerator_1_SplineMesh_CurveSample___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_SplineMesh_CurveSample__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_SplineMesh_CurveSample___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B1040, Object *, Array_InternalEnumerator_1_SplineMesh_CurveSample__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_SplineMesh_CurveSample___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B0EA0, CurveSample, Array_InternalEnumerator_1_SplineMesh_CurveSample__get_Current, (Array_InternalEnumerator_1_SplineMesh_CurveSample___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Reflection_CustomAttributeNamedArgument___ctor, (Array_InternalEnumerator_1_System_Reflection_CustomAttributeNamedArgument___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Reflection_CustomAttributeNamedArgument__Dispose, (Array_InternalEnumerator_1_System_Reflection_CustomAttributeNamedArgument___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Reflection_CustomAttributeNamedArgument__MoveNext, (Array_InternalEnumerator_1_System_Reflection_CustomAttributeNamedArgument___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Reflection_CustomAttributeNamedArgument__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Reflection_CustomAttributeNamedArgument___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B1290, Object *, Array_InternalEnumerator_1_System_Reflection_CustomAttributeNamedArgument__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Reflection_CustomAttributeNamedArgument___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B1100, CustomAttributeNamedArgument, Array_InternalEnumerator_1_System_Reflection_CustomAttributeNamedArgument__get_Current, (Array_InternalEnumerator_1_System_Reflection_CustomAttributeNamedArgument___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Reflection_CustomAttributeTypedArgument___ctor, (Array_InternalEnumerator_1_System_Reflection_CustomAttributeTypedArgument___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Reflection_CustomAttributeTypedArgument__Dispose, (Array_InternalEnumerator_1_System_Reflection_CustomAttributeTypedArgument___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Reflection_CustomAttributeTypedArgument__MoveNext, (Array_InternalEnumerator_1_System_Reflection_CustomAttributeTypedArgument___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Reflection_CustomAttributeTypedArgument__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Reflection_CustomAttributeTypedArgument___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B14B0, Object *, Array_InternalEnumerator_1_System_Reflection_CustomAttributeTypedArgument__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Reflection_CustomAttributeTypedArgument___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B1340, CustomAttributeTypedArgument, Array_InternalEnumerator_1_System_Reflection_CustomAttributeTypedArgument__get_Current, (Array_InternalEnumerator_1_System_Reflection_CustomAttributeTypedArgument___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_DateTime___ctor, (Array_InternalEnumerator_1_DateTime___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_DateTime__Dispose, (Array_InternalEnumerator_1_DateTime___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_DateTime__MoveNext, (Array_InternalEnumerator_1_DateTime___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_DateTime__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_DateTime___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B16B0, Object *, Array_InternalEnumerator_1_DateTime__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_DateTime___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B1540, DateTime, Array_InternalEnumerator_1_DateTime__get_Current, (Array_InternalEnumerator_1_DateTime___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_DateTimeOffset___ctor, (Array_InternalEnumerator_1_DateTimeOffset___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_DateTimeOffset__Dispose, (Array_InternalEnumerator_1_DateTimeOffset___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_DateTimeOffset__MoveNext, (Array_InternalEnumerator_1_DateTimeOffset___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_DateTimeOffset__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_DateTimeOffset___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B18B0, Object *, Array_InternalEnumerator_1_DateTimeOffset__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_DateTimeOffset___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B1740, DateTimeOffset, Array_InternalEnumerator_1_DateTimeOffset__get_Current, (Array_InternalEnumerator_1_DateTimeOffset___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Decimal___ctor, (Array_InternalEnumerator_1_Decimal___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Decimal__Dispose, (Array_InternalEnumerator_1_Decimal___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Decimal__MoveNext, (Array_InternalEnumerator_1_Decimal___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Decimal__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Decimal___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B1AB0, Object *, Array_InternalEnumerator_1_Decimal__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Decimal___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B1940, Decimal, Array_InternalEnumerator_1_Decimal__get_Current, (Array_InternalEnumerator_1_Decimal___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_DetailInstanceTransform___ctor, (Array_InternalEnumerator_1_UnityEngine_DetailInstanceTransform___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_DetailInstanceTransform__Dispose, (Array_InternalEnumerator_1_UnityEngine_DetailInstanceTransform___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_DetailInstanceTransform__MoveNext, (Array_InternalEnumerator_1_UnityEngine_DetailInstanceTransform___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_DetailInstanceTransform__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_DetailInstanceTransform___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B1CC0, Object *, Array_InternalEnumerator_1_UnityEngine_DetailInstanceTransform__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_DetailInstanceTransform___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B1B40, DetailInstanceTransform, Array_InternalEnumerator_1_UnityEngine_DetailInstanceTransform__get_Current, (Array_InternalEnumerator_1_UnityEngine_DetailInstanceTransform___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___ctor, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__Dispose, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__MoveNext, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B1EF0, Object *, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B1D60, DiagnosticEvent, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__get_Current, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_DictionaryEntry___ctor, (Array_InternalEnumerator_1_System_Collections_DictionaryEntry___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_DictionaryEntry__Dispose, (Array_InternalEnumerator_1_System_Collections_DictionaryEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_DictionaryEntry__MoveNext, (Array_InternalEnumerator_1_System_Collections_DictionaryEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_DictionaryEntry__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_DictionaryEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B2110, Object *, Array_InternalEnumerator_1_System_Collections_DictionaryEntry__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_DictionaryEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B1FA0, DictionaryEntry, Array_InternalEnumerator_1_System_Collections_DictionaryEntry__get_Current, (Array_InternalEnumerator_1_System_Collections_DictionaryEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Dimension___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Dimension___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Dimension__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Dimension___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Dimension__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Dimension___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Dimension__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Dimension___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B2310, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Dimension__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Dimension___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B21A0, Dimension, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Dimension__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Dimension___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Double___ctor, (Array_InternalEnumerator_1_Double___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Double__Dispose, (Array_InternalEnumerator_1_Double___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Double__MoveNext, (Array_InternalEnumerator_1_Double___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Double__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Double___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B2510, Object *, Array_InternalEnumerator_1_Double__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Double___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B23A0, double, Array_InternalEnumerator_1_Double__get_Current, (Array_InternalEnumerator_1_Double___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_DrawBufferRange___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_DrawBufferRange___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_DrawBufferRange__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_DrawBufferRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_DrawBufferRange__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_DrawBufferRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_DrawBufferRange__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_DrawBufferRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B2710, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_DrawBufferRange__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_DrawBufferRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B25A0, DrawBufferRange, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_DrawBufferRange__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_DrawBufferRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_EasingFunction___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_EasingFunction___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_EasingFunction__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_EasingFunction___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_EasingFunction__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_EasingFunction___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_EasingFunction__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_EasingFunction___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B2910, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_EasingFunction__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_EasingFunction___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B27A0, EasingFunction, Array_InternalEnumerator_1_UnityEngine_UIElements_EasingFunction__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_EasingFunction___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Rewired_ElementAssignmentConflictInfo___ctor, (Array_InternalEnumerator_1_Rewired_ElementAssignmentConflictInfo___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Rewired_ElementAssignmentConflictInfo__Dispose, (Array_InternalEnumerator_1_Rewired_ElementAssignmentConflictInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Rewired_ElementAssignmentConflictInfo__MoveNext, (Array_InternalEnumerator_1_Rewired_ElementAssignmentConflictInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Rewired_ElementAssignmentConflictInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Rewired_ElementAssignmentConflictInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B2B30, Object *, Array_InternalEnumerator_1_Rewired_ElementAssignmentConflictInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Rewired_ElementAssignmentConflictInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B29A0, ElementAssignmentConflictInfo, Array_InternalEnumerator_1_Rewired_ElementAssignmentConflictInfo__get_Current, (Array_InternalEnumerator_1_Rewired_ElementAssignmentConflictInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Discord_Entitlement___ctor, (Array_InternalEnumerator_1_Discord_Entitlement___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Discord_Entitlement__Dispose, (Array_InternalEnumerator_1_Discord_Entitlement___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Discord_Entitlement__MoveNext, (Array_InternalEnumerator_1_Discord_Entitlement___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Discord_Entitlement__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Discord_Entitlement___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B2D70, Object *, Array_InternalEnumerator_1_Discord_Entitlement__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Discord_Entitlement___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B2BF0, Entitlement, Array_InternalEnumerator_1_Discord_Entitlement__get_Current, (Array_InternalEnumerator_1_Discord_Entitlement___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Runtime_CompilerServices_Ephemeron___ctor, (Array_InternalEnumerator_1_System_Runtime_CompilerServices_Ephemeron___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Runtime_CompilerServices_Ephemeron__Dispose, (Array_InternalEnumerator_1_System_Runtime_CompilerServices_Ephemeron___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Runtime_CompilerServices_Ephemeron__MoveNext, (Array_InternalEnumerator_1_System_Runtime_CompilerServices_Ephemeron___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Runtime_CompilerServices_Ephemeron__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Runtime_CompilerServices_Ephemeron___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B2F80, Object *, Array_InternalEnumerator_1_System_Runtime_CompilerServices_Ephemeron__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Runtime_CompilerServices_Ephemeron___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B2E10, Ephemeron, Array_InternalEnumerator_1_System_Runtime_CompilerServices_Ephemeron__get_Current, (Array_InternalEnumerator_1_System_Runtime_CompilerServices_Ephemeron___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Photon_Bolt_EventReliable___ctor, (Array_InternalEnumerator_1_Photon_Bolt_EventReliable___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Photon_Bolt_EventReliable__Dispose, (Array_InternalEnumerator_1_Photon_Bolt_EventReliable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Photon_Bolt_EventReliable__MoveNext, (Array_InternalEnumerator_1_Photon_Bolt_EventReliable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Photon_Bolt_EventReliable__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Photon_Bolt_EventReliable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B3180, Object *, Array_InternalEnumerator_1_Photon_Bolt_EventReliable__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Photon_Bolt_EventReliable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B3010, EventReliable, Array_InternalEnumerator_1_Photon_Bolt_EventReliable__get_Current, (Array_InternalEnumerator_1_Photon_Bolt_EventReliable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Photon_Bolt_EventUnreliable___ctor, (Array_InternalEnumerator_1_Photon_Bolt_EventUnreliable___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Photon_Bolt_EventUnreliable__Dispose, (Array_InternalEnumerator_1_Photon_Bolt_EventUnreliable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Photon_Bolt_EventUnreliable__MoveNext, (Array_InternalEnumerator_1_Photon_Bolt_EventUnreliable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Photon_Bolt_EventUnreliable__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Photon_Bolt_EventUnreliable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B3390, Object *, Array_InternalEnumerator_1_Photon_Bolt_EventUnreliable__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Photon_Bolt_EventUnreliable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B3210, EventUnreliable, Array_InternalEnumerator_1_Photon_Bolt_EventUnreliable__get_Current, (Array_InternalEnumerator_1_Photon_Bolt_EventUnreliable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Runtime_InteropServices_ComTypes_FORMATETC___ctor, (Array_InternalEnumerator_1_System_Runtime_InteropServices_ComTypes_FORMATETC___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Runtime_InteropServices_ComTypes_FORMATETC__Dispose, (Array_InternalEnumerator_1_System_Runtime_InteropServices_ComTypes_FORMATETC___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Runtime_InteropServices_ComTypes_FORMATETC__MoveNext, (Array_InternalEnumerator_1_System_Runtime_InteropServices_ComTypes_FORMATETC___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Runtime_InteropServices_ComTypes_FORMATETC__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Runtime_InteropServices_ComTypes_FORMATETC___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B35B0, Object *, Array_InternalEnumerator_1_System_Runtime_InteropServices_ComTypes_FORMATETC__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Runtime_InteropServices_ComTypes_FORMATETC___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B3430, FORMATETC, Array_InternalEnumerator_1_System_Runtime_InteropServices_ComTypes_FORMATETC__get_Current, (Array_InternalEnumerator_1_System_Runtime_InteropServices_ComTypes_FORMATETC___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Discord_FileStat___ctor, (Array_InternalEnumerator_1_Discord_FileStat___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Discord_FileStat__Dispose, (Array_InternalEnumerator_1_Discord_FileStat___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Discord_FileStat__MoveNext, (Array_InternalEnumerator_1_Discord_FileStat___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Discord_FileStat__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Discord_FileStat___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B37D0, Object *, Array_InternalEnumerator_1_Discord_FileStat__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Discord_FileStat___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B3650, FileStat, Array_InternalEnumerator_1_Discord_FileStat__get_Current, (Array_InternalEnumerator_1_Discord_FileStat___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_FontDefinition___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_FontDefinition___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_FontDefinition__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_FontDefinition___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_FontDefinition__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_FontDefinition___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_FontDefinition__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_FontDefinition___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B39E0, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_FontDefinition__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_FontDefinition___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B3870, FontDefinition, Array_InternalEnumerator_1_UnityEngine_UIElements_FontDefinition__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_FontDefinition___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_FontWeightPair___ctor, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_FontWeightPair___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_FontWeightPair__Dispose, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_FontWeightPair___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_FontWeightPair__MoveNext, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_FontWeightPair___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_FontWeightPair__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_FontWeightPair___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B3BE0, Object *, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_FontWeightPair__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_FontWeightPair___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B3A70, FontWeightPair, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_FontWeightPair__get_Current, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_FontWeightPair___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Dissonance_Audio_Playback_FrameFormat___ctor, (Array_InternalEnumerator_1_Dissonance_Audio_Playback_FrameFormat___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Dissonance_Audio_Playback_FrameFormat__Dispose, (Array_InternalEnumerator_1_Dissonance_Audio_Playback_FrameFormat___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Dissonance_Audio_Playback_FrameFormat__MoveNext, (Array_InternalEnumerator_1_Dissonance_Audio_Playback_FrameFormat___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Dissonance_Audio_Playback_FrameFormat__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Dissonance_Audio_Playback_FrameFormat___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B3DF0, Object *, Array_InternalEnumerator_1_Dissonance_Audio_Playback_FrameFormat__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Dissonance_Audio_Playback_FrameFormat___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B3C70, FrameFormat, Array_InternalEnumerator_1_Dissonance_Audio_Playback_FrameFormat__get_Current, (Array_InternalEnumerator_1_Dissonance_Audio_Playback_FrameFormat___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Runtime_InteropServices_GCHandle___ctor, (Array_InternalEnumerator_1_System_Runtime_InteropServices_GCHandle___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Runtime_InteropServices_GCHandle__Dispose, (Array_InternalEnumerator_1_System_Runtime_InteropServices_GCHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Runtime_InteropServices_GCHandle__MoveNext, (Array_InternalEnumerator_1_System_Runtime_InteropServices_GCHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Runtime_InteropServices_GCHandle__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Runtime_InteropServices_GCHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B4000, Object *, Array_InternalEnumerator_1_System_Runtime_InteropServices_GCHandle__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Runtime_InteropServices_GCHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B3E90, GCHandle, Array_InternalEnumerator_1_System_Runtime_InteropServices_GCHandle__get_Current, (Array_InternalEnumerator_1_System_Runtime_InteropServices_GCHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B4200, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B4090, GfxUpdateBufferRange, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_GlobalKeyword___ctor, (Array_InternalEnumerator_1_UnityEngine_Rendering_GlobalKeyword___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Rendering_GlobalKeyword__Dispose, (Array_InternalEnumerator_1_UnityEngine_Rendering_GlobalKeyword___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Rendering_GlobalKeyword__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Rendering_GlobalKeyword___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_GlobalKeyword__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Rendering_GlobalKeyword___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B4400, Object *, Array_InternalEnumerator_1_UnityEngine_Rendering_GlobalKeyword__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_GlobalKeyword___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B4290, GlobalKeyword, Array_InternalEnumerator_1_UnityEngine_Rendering_GlobalKeyword__get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_GlobalKeyword___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphMarshallingStruct___ctor, (Array_InternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphMarshallingStruct___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphMarshallingStruct__Dispose, (Array_InternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphMarshallingStruct___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphMarshallingStruct__MoveNext, (Array_InternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphMarshallingStruct___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphMarshallingStruct__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphMarshallingStruct___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B4620, Object *, Array_InternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphMarshallingStruct__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphMarshallingStruct___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B4490, GlyphMarshallingStruct, Array_InternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphMarshallingStruct__get_Current, (Array_InternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphMarshallingStruct___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___ctor, (Array_InternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__Dispose, (Array_InternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__MoveNext, (Array_InternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B4860, Object *, Array_InternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B46D0, GlyphPairAdjustmentRecord, Array_InternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__get_Current, (Array_InternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_TextCore_GlyphRect___ctor, (Array_InternalEnumerator_1_UnityEngine_TextCore_GlyphRect___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_TextCore_GlyphRect__Dispose, (Array_InternalEnumerator_1_UnityEngine_TextCore_GlyphRect___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_TextCore_GlyphRect__MoveNext, (Array_InternalEnumerator_1_UnityEngine_TextCore_GlyphRect___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_TextCore_GlyphRect__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_TextCore_GlyphRect___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B4A90, Object *, Array_InternalEnumerator_1_UnityEngine_TextCore_GlyphRect__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_TextCore_GlyphRect___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B4920, GlyphRect, Array_InternalEnumerator_1_UnityEngine_TextCore_GlyphRect__get_Current, (Array_InternalEnumerator_1_UnityEngine_TextCore_GlyphRect___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_GradientAlphaKey___ctor, (Array_InternalEnumerator_1_UnityEngine_GradientAlphaKey___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_GradientAlphaKey__Dispose, (Array_InternalEnumerator_1_UnityEngine_GradientAlphaKey___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_GradientAlphaKey__MoveNext, (Array_InternalEnumerator_1_UnityEngine_GradientAlphaKey___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_GradientAlphaKey__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_GradientAlphaKey___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B4C90, Object *, Array_InternalEnumerator_1_UnityEngine_GradientAlphaKey__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_GradientAlphaKey___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B4B20, GradientAlphaKey, Array_InternalEnumerator_1_UnityEngine_GradientAlphaKey__get_Current, (Array_InternalEnumerator_1_UnityEngine_GradientAlphaKey___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_GradientColorKey___ctor, (Array_InternalEnumerator_1_UnityEngine_GradientColorKey___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_GradientColorKey__Dispose, (Array_InternalEnumerator_1_UnityEngine_GradientColorKey___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_GradientColorKey__MoveNext, (Array_InternalEnumerator_1_UnityEngine_GradientColorKey___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_GradientColorKey__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_GradientColorKey___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B4EA0, Object *, Array_InternalEnumerator_1_UnityEngine_GradientColorKey__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_GradientColorKey___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B4D20, GradientColorKey, Array_InternalEnumerator_1_UnityEngine_GradientColorKey__get_Current, (Array_InternalEnumerator_1_UnityEngine_GradientColorKey___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_GradientSettings___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_GradientSettings___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_GradientSettings__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_GradientSettings___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_GradientSettings__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_GradientSettings___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_GradientSettings__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_GradientSettings___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B50C0, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_GradientSettings__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_GradientSettings___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B4F40, GradientSettings, Array_InternalEnumerator_1_UnityEngine_UIElements_GradientSettings__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_GradientSettings___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Guid___ctor, (Array_InternalEnumerator_1_Guid___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Guid__Dispose, (Array_InternalEnumerator_1_Guid___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Guid__MoveNext, (Array_InternalEnumerator_1_Guid___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Guid__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Guid___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B52D0, Object *, Array_InternalEnumerator_1_Guid__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Guid___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B5160, Guid, Array_InternalEnumerator_1_Guid__get_Current, (Array_InternalEnumerator_1_Guid___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_HandJointLocation___ctor, (Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_HandJointLocation___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_HandJointLocation__Dispose, (Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_HandJointLocation___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_HandJointLocation__MoveNext, (Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_HandJointLocation___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_HandJointLocation__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_HandJointLocation___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B54E0, Object *, Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_HandJointLocation__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_HandJointLocation___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B5360, HandJointLocation, Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_HandJointLocation__get_Current, (Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_HandJointLocation___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Hash128___ctor, (Array_InternalEnumerator_1_UnityEngine_Hash128___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Hash128__Dispose, (Array_InternalEnumerator_1_UnityEngine_Hash128___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Hash128__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Hash128___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Hash128__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Hash128___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B5700, Object *, Array_InternalEnumerator_1_UnityEngine_Hash128__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Hash128___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B5590, Hash128, Array_InternalEnumerator_1_UnityEngine_Hash128__get_Current, (Array_InternalEnumerator_1_UnityEngine_Hash128___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Net_HeaderVariantInfo___ctor, (Array_InternalEnumerator_1_System_Net_HeaderVariantInfo___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Net_HeaderVariantInfo__Dispose, (Array_InternalEnumerator_1_System_Net_HeaderVariantInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Net_HeaderVariantInfo__MoveNext, (Array_InternalEnumerator_1_System_Net_HeaderVariantInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Net_HeaderVariantInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Net_HeaderVariantInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B5900, Object *, Array_InternalEnumerator_1_System_Net_HeaderVariantInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Net_HeaderVariantInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B5790, HeaderVariantInfo, Array_InternalEnumerator_1_System_Net_HeaderVariantInfo__get_Current, (Array_InternalEnumerator_1_System_Net_HeaderVariantInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_TMPro_HighlightState___ctor, (Array_InternalEnumerator_1_TMPro_HighlightState___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_TMPro_HighlightState__Dispose, (Array_InternalEnumerator_1_TMPro_HighlightState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_TMPro_HighlightState__MoveNext, (Array_InternalEnumerator_1_TMPro_HighlightState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_TMPro_HighlightState__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_TMPro_HighlightState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B5B10, Object *, Array_InternalEnumerator_1_TMPro_HighlightState__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_TMPro_HighlightState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B5990, HighlightState, Array_InternalEnumerator_1_TMPro_HighlightState__get_Current, (Array_InternalEnumerator_1_TMPro_HighlightState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_HumanBone___ctor, (Array_InternalEnumerator_1_UnityEngine_HumanBone___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_HumanBone__Dispose, (Array_InternalEnumerator_1_UnityEngine_HumanBone___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_HumanBone__MoveNext, (Array_InternalEnumerator_1_UnityEngine_HumanBone___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_HumanBone__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_HumanBone___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B5D40, Object *, Array_InternalEnumerator_1_UnityEngine_HumanBone__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_HumanBone___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B5BB0, HumanBone, Array_InternalEnumerator_1_UnityEngine_HumanBone__get_Current, (Array_InternalEnumerator_1_UnityEngine_HumanBone___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ImpactEffect___ctor, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ImpactEffect___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ImpactEffect__Dispose, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ImpactEffect___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ImpactEffect__MoveNext, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ImpactEffect___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ImpactEffect__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ImpactEffect___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B5F70, Object *, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ImpactEffect__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ImpactEffect___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B5E00, ImpactEffect, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ImpactEffect__get_Current, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ImpactEffect___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Rewired_InputActionSourceData___ctor, (Array_InternalEnumerator_1_Rewired_InputActionSourceData___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Rewired_InputActionSourceData__Dispose, (Array_InternalEnumerator_1_Rewired_InputActionSourceData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Rewired_InputActionSourceData__MoveNext, (Array_InternalEnumerator_1_Rewired_InputActionSourceData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Rewired_InputActionSourceData__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Rewired_InputActionSourceData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B6180, Object *, Array_InternalEnumerator_1_Rewired_InputActionSourceData__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Rewired_InputActionSourceData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B6000, InputActionSourceData, Array_InternalEnumerator_1_Rewired_InputActionSourceData__get_Current, (Array_InternalEnumerator_1_Rewired_InputActionSourceData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputBinding___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputBinding___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputBinding__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputBinding___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputBinding__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputBinding___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputBinding__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputBinding___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B63D0, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputBinding__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputBinding___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B6220, InputBinding, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputBinding__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputBinding___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B6620, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B64A0, InputControlScheme, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_XR_InputDevice___ctor, (Array_InternalEnumerator_1_UnityEngine_XR_InputDevice___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_XR_InputDevice__Dispose, (Array_InternalEnumerator_1_UnityEngine_XR_InputDevice___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_XR_InputDevice__MoveNext, (Array_InternalEnumerator_1_UnityEngine_XR_InputDevice___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_XR_InputDevice__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_XR_InputDevice___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B6830, Object *, Array_InternalEnumerator_1_UnityEngine_XR_InputDevice__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_XR_InputDevice___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B66C0, InputDevice_1, Array_InternalEnumerator_1_UnityEngine_XR_InputDevice__get_Current, (Array_InternalEnumerator_1_UnityEngine_XR_InputDevice___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B6A50, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B68C0, InputDeviceDescription, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventPtr___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventPtr___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventPtr__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventPtr___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventPtr__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventPtr___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventPtr__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventPtr___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B6C80, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventPtr__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventPtr___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B6B10, InputEventPtr, Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventPtr__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventPtr___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B6E80, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B6D10, InputUser, Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Int16___ctor, (Array_InternalEnumerator_1_Int16___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Int16__Dispose, (Array_InternalEnumerator_1_Int16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Int16__MoveNext, (Array_InternalEnumerator_1_Int16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Int16__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Int16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B7080, Object *, Array_InternalEnumerator_1_Int16__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Int16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B6F10, int16_t, Array_InternalEnumerator_1_Int16__get_Current, (Array_InternalEnumerator_1_Int16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Pathfinding_Int2___ctor, (Array_InternalEnumerator_1_Pathfinding_Int2___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Pathfinding_Int2__Dispose, (Array_InternalEnumerator_1_Pathfinding_Int2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Pathfinding_Int2__MoveNext, (Array_InternalEnumerator_1_Pathfinding_Int2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Pathfinding_Int2__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Pathfinding_Int2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B7280, Object *, Array_InternalEnumerator_1_Pathfinding_Int2__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Pathfinding_Int2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B7110, Int2, Array_InternalEnumerator_1_Pathfinding_Int2__get_Current, (Array_InternalEnumerator_1_Pathfinding_Int2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Pathfinding_Int3___ctor, (Array_InternalEnumerator_1_Pathfinding_Int3___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Pathfinding_Int3__Dispose, (Array_InternalEnumerator_1_Pathfinding_Int3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Pathfinding_Int3__MoveNext, (Array_InternalEnumerator_1_Pathfinding_Int3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Pathfinding_Int3__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Pathfinding_Int3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B7490, Object *, Array_InternalEnumerator_1_Pathfinding_Int3__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Pathfinding_Int3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B7310, Int3, Array_InternalEnumerator_1_Pathfinding_Int3__get_Current, (Array_InternalEnumerator_1_Pathfinding_Int3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Int32___ctor, (Array_InternalEnumerator_1_Int32___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Int32__Dispose, (Array_InternalEnumerator_1_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Int32__MoveNext, (Array_InternalEnumerator_1_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Int32__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B76A0, Object *, Array_InternalEnumerator_1_Int32__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B7530, int32_t, Array_InternalEnumerator_1_Int32__get_Current, (Array_InternalEnumerator_1_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Int32Enum___ctor, (Array_InternalEnumerator_1_Int32Enum___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Int32Enum__Dispose, (Array_InternalEnumerator_1_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Int32Enum__MoveNext, (Array_InternalEnumerator_1_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Int32Enum__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B78A0, Object *, Array_InternalEnumerator_1_Int32Enum__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B7730, Int32Enum__Enum, Array_InternalEnumerator_1_Int32Enum__get_Current, (Array_InternalEnumerator_1_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Int64___ctor, (Array_InternalEnumerator_1_Int64___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Int64__Dispose, (Array_InternalEnumerator_1_Int64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Int64__MoveNext, (Array_InternalEnumerator_1_Int64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Int64__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Int64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B7AA0, Object *, Array_InternalEnumerator_1_Int64__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Int64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B7930, int64_t, Array_InternalEnumerator_1_Int64__get_Current, (Array_InternalEnumerator_1_Int64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Pathfinding_ClipperLib_IntPoint___ctor, (Array_InternalEnumerator_1_Pathfinding_ClipperLib_IntPoint___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Pathfinding_ClipperLib_IntPoint__Dispose, (Array_InternalEnumerator_1_Pathfinding_ClipperLib_IntPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Pathfinding_ClipperLib_IntPoint__MoveNext, (Array_InternalEnumerator_1_Pathfinding_ClipperLib_IntPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Pathfinding_ClipperLib_IntPoint__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Pathfinding_ClipperLib_IntPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B7CA0, Object *, Array_InternalEnumerator_1_Pathfinding_ClipperLib_IntPoint__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Pathfinding_ClipperLib_IntPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B7B30, IntPoint, Array_InternalEnumerator_1_Pathfinding_ClipperLib_IntPoint__get_Current, (Array_InternalEnumerator_1_Pathfinding_ClipperLib_IntPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_IntPtr___ctor, (Array_InternalEnumerator_1_IntPtr___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_IntPtr__Dispose, (Array_InternalEnumerator_1_IntPtr___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_IntPtr__MoveNext, (Array_InternalEnumerator_1_IntPtr___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_IntPtr__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_IntPtr___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B7EA0, Object *, Array_InternalEnumerator_1_IntPtr__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_IntPtr___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B7D30, void *, Array_InternalEnumerator_1_IntPtr__get_Current, (Array_InternalEnumerator_1_IntPtr___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Pathfinding_IntRect___ctor, (Array_InternalEnumerator_1_Pathfinding_IntRect___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Pathfinding_IntRect__Dispose, (Array_InternalEnumerator_1_Pathfinding_IntRect___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Pathfinding_IntRect__MoveNext, (Array_InternalEnumerator_1_Pathfinding_IntRect___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Pathfinding_IntRect__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Pathfinding_IntRect___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B80A0, Object *, Array_InternalEnumerator_1_Pathfinding_IntRect__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Pathfinding_IntRect___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B7F30, IntRect, Array_InternalEnumerator_1_Pathfinding_IntRect__get_Current, (Array_InternalEnumerator_1_Pathfinding_IntRect___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Globalization_InternalCodePageDataItem___ctor, (Array_InternalEnumerator_1_System_Globalization_InternalCodePageDataItem___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Globalization_InternalCodePageDataItem__Dispose, (Array_InternalEnumerator_1_System_Globalization_InternalCodePageDataItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Globalization_InternalCodePageDataItem__MoveNext, (Array_InternalEnumerator_1_System_Globalization_InternalCodePageDataItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Globalization_InternalCodePageDataItem__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Globalization_InternalCodePageDataItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B82A0, Object *, Array_InternalEnumerator_1_System_Globalization_InternalCodePageDataItem__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Globalization_InternalCodePageDataItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B8130, InternalCodePageDataItem, Array_InternalEnumerator_1_System_Globalization_InternalCodePageDataItem__get_Current, (Array_InternalEnumerator_1_System_Globalization_InternalCodePageDataItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Globalization_InternalEncodingDataItem___ctor, (Array_InternalEnumerator_1_System_Globalization_InternalEncodingDataItem___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Globalization_InternalEncodingDataItem__Dispose, (Array_InternalEnumerator_1_System_Globalization_InternalEncodingDataItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Globalization_InternalEncodingDataItem__MoveNext, (Array_InternalEnumerator_1_System_Globalization_InternalEncodingDataItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Globalization_InternalEncodingDataItem__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Globalization_InternalEncodingDataItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B84A0, Object *, Array_InternalEnumerator_1_System_Globalization_InternalEncodingDataItem__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Globalization_InternalEncodingDataItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B8330, InternalEncodingDataItem, Array_InternalEnumerator_1_System_Globalization_InternalEncodingDataItem__get_Current, (Array_InternalEnumerator_1_System_Globalization_InternalEncodingDataItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_InternedString___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_InternedString___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_InternedString__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_InternedString___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_InternedString__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_InternedString___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_InternedString__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_InternedString___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B86A0, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_InternedString__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_InternedString___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B8530, InternedString, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_InternedString__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_InternedString___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_InterpretedFrameInfo___ctor, (Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_InterpretedFrameInfo___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_InterpretedFrameInfo__Dispose, (Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_InterpretedFrameInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_InterpretedFrameInfo__MoveNext, (Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_InterpretedFrameInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_InterpretedFrameInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_InterpretedFrameInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B88A0, Object *, Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_InterpretedFrameInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_InterpretedFrameInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B8730, InterpretedFrameInfo, Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_InterpretedFrameInfo__get_Current, (Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_InterpretedFrameInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Timeline_IntervalTreeNode___ctor, (Array_InternalEnumerator_1_UnityEngine_Timeline_IntervalTreeNode___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Timeline_IntervalTreeNode__Dispose, (Array_InternalEnumerator_1_UnityEngine_Timeline_IntervalTreeNode___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Timeline_IntervalTreeNode__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Timeline_IntervalTreeNode___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Timeline_IntervalTreeNode__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Timeline_IntervalTreeNode___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B8AB0, Object *, Array_InternalEnumerator_1_UnityEngine_Timeline_IntervalTreeNode__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Timeline_IntervalTreeNode___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B8930, IntervalTreeNode, Array_InternalEnumerator_1_UnityEngine_Timeline_IntervalTreeNode__get_Current, (Array_InternalEnumerator_1_UnityEngine_Timeline_IntervalTreeNode___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_IpQCkqlgJLyrFpAOyBfUxXQpJsWK___ctor, (Array_InternalEnumerator_1_IpQCkqlgJLyrFpAOyBfUxXQpJsWK___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_IpQCkqlgJLyrFpAOyBfUxXQpJsWK__Dispose, (Array_InternalEnumerator_1_IpQCkqlgJLyrFpAOyBfUxXQpJsWK___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_IpQCkqlgJLyrFpAOyBfUxXQpJsWK__MoveNext, (Array_InternalEnumerator_1_IpQCkqlgJLyrFpAOyBfUxXQpJsWK___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_IpQCkqlgJLyrFpAOyBfUxXQpJsWK__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_IpQCkqlgJLyrFpAOyBfUxXQpJsWK___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B8CC0, Object *, Array_InternalEnumerator_1_IpQCkqlgJLyrFpAOyBfUxXQpJsWK__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_IpQCkqlgJLyrFpAOyBfUxXQpJsWK___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B8B50, IpQCkqlgJLyrFpAOyBfUxXQpJsWK, Array_InternalEnumerator_1_IpQCkqlgJLyrFpAOyBfUxXQpJsWK__get_Current, (Array_InternalEnumerator_1_IpQCkqlgJLyrFpAOyBfUxXQpJsWK___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount___ctor, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount__Dispose, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount__MoveNext, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B8ED0, Object *, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B8D50, ItemDefinitionAmount, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount__get_Current, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Keyframe___ctor, (Array_InternalEnumerator_1_UnityEngine_Keyframe___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Keyframe__Dispose, (Array_InternalEnumerator_1_UnityEngine_Keyframe___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Keyframe__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Keyframe___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Keyframe__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Keyframe___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B90F0, Object *, Array_InternalEnumerator_1_UnityEngine_Keyframe__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Keyframe___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B8F70, Keyframe, Array_InternalEnumerator_1_UnityEngine_Keyframe__get_Current, (Array_InternalEnumerator_1_UnityEngine_Keyframe___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_KickedPlayer___ctor, (Array_InternalEnumerator_1_KickedPlayer___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_KickedPlayer__Dispose, (Array_InternalEnumerator_1_KickedPlayer___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_KickedPlayer__MoveNext, (Array_InternalEnumerator_1_KickedPlayer___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_KickedPlayer__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_KickedPlayer___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B9300, Object *, Array_InternalEnumerator_1_KickedPlayer__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_KickedPlayer___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B9190, KickedPlayer, Array_InternalEnumerator_1_KickedPlayer__get_Current, (Array_InternalEnumerator_1_KickedPlayer___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_LOD___ctor, (Array_InternalEnumerator_1_UnityEngine_LOD___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_LOD__Dispose, (Array_InternalEnumerator_1_UnityEngine_LOD___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_LOD__MoveNext, (Array_InternalEnumerator_1_UnityEngine_LOD___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_LOD__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_LOD___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B9500, Object *, Array_InternalEnumerator_1_UnityEngine_LOD__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_LOD___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B9390, LOD, Array_InternalEnumerator_1_UnityEngine_LOD__get_Current, (Array_InternalEnumerator_1_UnityEngine_LOD___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_LayerMask___ctor, (Array_InternalEnumerator_1_UnityEngine_LayerMask___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_LayerMask__Dispose, (Array_InternalEnumerator_1_UnityEngine_LayerMask___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_LayerMask__MoveNext, (Array_InternalEnumerator_1_UnityEngine_LayerMask___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_LayerMask__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_LayerMask___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B9700, Object *, Array_InternalEnumerator_1_UnityEngine_LayerMask__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_LayerMask___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B9590, LayerMask, Array_InternalEnumerator_1_UnityEngine_LayerMask__get_Current, (Array_InternalEnumerator_1_UnityEngine_LayerMask___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_Length___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_Length___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_Length__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_Length___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_Length__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_Length___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_Length__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_Length___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B9900, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_Length__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_Length___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B9790, Length, Array_InternalEnumerator_1_UnityEngine_UIElements_Length__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_Length___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI___ctor, (Array_InternalEnumerator_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI__Dispose, (Array_InternalEnumerator_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B9B40, Object *, Array_InternalEnumerator_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B9990, LightDataGI, Array_InternalEnumerator_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI__get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_LineInfo___ctor, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_LineInfo___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_LineInfo__Dispose, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_LineInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_LineInfo__MoveNext, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_LineInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_LineInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_LineInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B9DC0, Object *, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_LineInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_LineInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B9C10, LineInfo_1, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_LineInfo__get_Current, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_LineInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_LinkInfo___ctor, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_LinkInfo___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_LinkInfo__Dispose, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_LinkInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_LinkInfo__MoveNext, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_LinkInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_LinkInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_LinkInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BA010, Object *, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_LinkInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_LinkInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016B9E90, LinkInfo, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_LinkInfo__get_Current, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_LinkInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_LocalDefinition___ctor, (Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_LocalDefinition___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_LocalDefinition__Dispose, (Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_LocalDefinition___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_LocalDefinition__MoveNext, (Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_LocalDefinition___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_LocalDefinition__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_LocalDefinition___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BA220, Object *, Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_LocalDefinition__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_LocalDefinition___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BA0B0, LocalDefinition, Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_LocalDefinition__get_Current, (Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_LocalDefinition___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_LocalKeyword___ctor, (Array_InternalEnumerator_1_UnityEngine_Rendering_LocalKeyword___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Rendering_LocalKeyword__Dispose, (Array_InternalEnumerator_1_UnityEngine_Rendering_LocalKeyword___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Rendering_LocalKeyword__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Rendering_LocalKeyword___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_LocalKeyword__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Rendering_LocalKeyword___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BA430, Object *, Array_InternalEnumerator_1_UnityEngine_Rendering_LocalKeyword__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_LocalKeyword___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BA2B0, LocalKeyword, Array_InternalEnumerator_1_UnityEngine_Rendering_LocalKeyword__get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_LocalKeyword___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_ManipulatorActivationFilter___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_ManipulatorActivationFilter___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_ManipulatorActivationFilter__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_ManipulatorActivationFilter___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_ManipulatorActivationFilter__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_ManipulatorActivationFilter___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_ManipulatorActivationFilter__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_ManipulatorActivationFilter___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BA650, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_ManipulatorActivationFilter__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_ManipulatorActivationFilter___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BA4D0, ManipulatorActivationFilter, Array_InternalEnumerator_1_UnityEngine_UIElements_ManipulatorActivationFilter__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_ManipulatorActivationFilter___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_TMPro_MaterialReference___ctor, (Array_InternalEnumerator_1_TMPro_MaterialReference___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_TMPro_MaterialReference__Dispose, (Array_InternalEnumerator_1_TMPro_MaterialReference___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_TMPro_MaterialReference__MoveNext, (Array_InternalEnumerator_1_TMPro_MaterialReference___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_TMPro_MaterialReference__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_TMPro_MaterialReference___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BA880, Object *, Array_InternalEnumerator_1_TMPro_MaterialReference__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_TMPro_MaterialReference___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BA6F0, MaterialReference, Array_InternalEnumerator_1_TMPro_MaterialReference__get_Current, (Array_InternalEnumerator_1_TMPro_MaterialReference___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_MaterialReference___ctor, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_MaterialReference___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_MaterialReference__Dispose, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_MaterialReference___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_MaterialReference__MoveNext, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_MaterialReference___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_MaterialReference__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_MaterialReference___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BAAD0, Object *, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_MaterialReference__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_MaterialReference___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BA940, MaterialReference_1, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_MaterialReference__get_Current, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_MaterialReference___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Matrix4x4___ctor, (Array_InternalEnumerator_1_UnityEngine_Matrix4x4___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Matrix4x4__Dispose, (Array_InternalEnumerator_1_UnityEngine_Matrix4x4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Matrix4x4__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Matrix4x4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Matrix4x4__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Matrix4x4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BAD20, Object *, Array_InternalEnumerator_1_UnityEngine_Matrix4x4__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Matrix4x4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BAB90, Matrix4x4, Array_InternalEnumerator_1_UnityEngine_Matrix4x4__get_Current, (Array_InternalEnumerator_1_UnityEngine_Matrix4x4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_MeshInfo___ctor, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_MeshInfo___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_MeshInfo__Dispose, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_MeshInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_MeshInfo__MoveNext, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_MeshInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_MeshInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_MeshInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BAF70, Object *, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_MeshInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_MeshInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BADE0, MeshInfo, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_MeshInfo__get_Current, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_MeshInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxFloat___ctor, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxFloat___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxFloat__Dispose, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxFloat___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxFloat__MoveNext, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxFloat___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxFloat__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxFloat___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BB1A0, Object *, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxFloat__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxFloat___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BB030, MinMaxFloat, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxFloat__get_Current, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxFloat___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxVector3___ctor, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxVector3___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxVector3__Dispose, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxVector3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxVector3__MoveNext, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxVector3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxVector3__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxVector3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BB3B0, Object *, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxVector3__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxVector3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BB230, MinMaxVector3, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxVector3__get_Current, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxVector3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_ModifiableContactPair___ctor, (Array_InternalEnumerator_1_UnityEngine_ModifiableContactPair___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_ModifiableContactPair__Dispose, (Array_InternalEnumerator_1_UnityEngine_ModifiableContactPair___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_ModifiableContactPair__MoveNext, (Array_InternalEnumerator_1_UnityEngine_ModifiableContactPair___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_ModifiableContactPair__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_ModifiableContactPair___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BB610, Object *, Array_InternalEnumerator_1_UnityEngine_ModifiableContactPair__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_ModifiableContactPair___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BB460, ModifiableContactPair, Array_InternalEnumerator_1_UnityEngine_ModifiableContactPair__get_Current, (Array_InternalEnumerator_1_UnityEngine_ModifiableContactPair___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_NameAndParameters___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_NameAndParameters___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_NameAndParameters__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_NameAndParameters___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_NameAndParameters__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_NameAndParameters___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_NameAndParameters__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_NameAndParameters___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BB870, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_NameAndParameters__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_NameAndParameters___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BB6F0, NameAndParameters, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_NameAndParameters__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_NameAndParameters___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_NamedValue___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_NamedValue___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_NamedValue__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_NamedValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_NamedValue__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_NamedValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_NamedValue__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_NamedValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BBA90, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_NamedValue__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_NamedValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BB910, NamedValue, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_NamedValue__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_NamedValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativeAnchor___ctor, (Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativeAnchor___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativeAnchor__Dispose, (Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativeAnchor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativeAnchor__MoveNext, (Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativeAnchor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativeAnchor__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativeAnchor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BBCC0, Object *, Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativeAnchor__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativeAnchor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BBB30, NativeAnchor, Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativeAnchor__get_Current, (Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativeAnchor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativePlane___ctor, (Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativePlane___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativePlane__Dispose, (Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativePlane___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativePlane__MoveNext, (Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativePlane___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativePlane__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativePlane___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BBF20, Object *, Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativePlane__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativePlane___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BBD80, NativePlane, Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativePlane__get_Current, (Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativePlane___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UI_Navigation___ctor, (Array_InternalEnumerator_1_UnityEngine_UI_Navigation___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UI_Navigation__Dispose, (Array_InternalEnumerator_1_UnityEngine_UI_Navigation___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UI_Navigation__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UI_Navigation___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UI_Navigation__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UI_Navigation___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BC170, Object *, Array_InternalEnumerator_1_UnityEngine_UI_Navigation__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UI_Navigation___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BBFE0, Navigation, Array_InternalEnumerator_1_UnityEngine_UI_Navigation__get_Current, (Array_InternalEnumerator_1_UnityEngine_UI_Navigation___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Photon_Bolt_NetworkId___ctor, (Array_InternalEnumerator_1_Photon_Bolt_NetworkId___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Photon_Bolt_NetworkId__Dispose, (Array_InternalEnumerator_1_Photon_Bolt_NetworkId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Photon_Bolt_NetworkId__MoveNext, (Array_InternalEnumerator_1_Photon_Bolt_NetworkId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Photon_Bolt_NetworkId__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Photon_Bolt_NetworkId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BC390, Object *, Array_InternalEnumerator_1_Photon_Bolt_NetworkId__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Photon_Bolt_NetworkId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BC220, NetworkId, Array_InternalEnumerator_1_Photon_Bolt_NetworkId__get_Current, (Array_InternalEnumerator_1_Photon_Bolt_NetworkId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Photon_Bolt_NetworkPropertyInfo___ctor, (Array_InternalEnumerator_1_Photon_Bolt_NetworkPropertyInfo___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Photon_Bolt_NetworkPropertyInfo__Dispose, (Array_InternalEnumerator_1_Photon_Bolt_NetworkPropertyInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Photon_Bolt_NetworkPropertyInfo__MoveNext, (Array_InternalEnumerator_1_Photon_Bolt_NetworkPropertyInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Photon_Bolt_NetworkPropertyInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Photon_Bolt_NetworkPropertyInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BC5A0, Object *, Array_InternalEnumerator_1_Photon_Bolt_NetworkPropertyInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Photon_Bolt_NetworkPropertyInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BC420, NetworkPropertyInfo, Array_InternalEnumerator_1_Photon_Bolt_NetworkPropertyInfo__get_Current, (Array_InternalEnumerator_1_Photon_Bolt_NetworkPropertyInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Photon_Bolt_NetworkValue___ctor, (Array_InternalEnumerator_1_Photon_Bolt_NetworkValue___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Photon_Bolt_NetworkValue__Dispose, (Array_InternalEnumerator_1_Photon_Bolt_NetworkValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Photon_Bolt_NetworkValue__MoveNext, (Array_InternalEnumerator_1_Photon_Bolt_NetworkValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Photon_Bolt_NetworkValue__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Photon_Bolt_NetworkValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BC7C0, Object *, Array_InternalEnumerator_1_Photon_Bolt_NetworkValue__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Photon_Bolt_NetworkValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BC640, NetworkValue, Array_InternalEnumerator_1_Photon_Bolt_NetworkValue__get_Current, (Array_InternalEnumerator_1_Photon_Bolt_NetworkValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Object___ctor, (Array_InternalEnumerator_1_Object___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Object__Dispose, (Array_InternalEnumerator_1_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Object__MoveNext, (Array_InternalEnumerator_1_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Object__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BC9D0, Object *, Array_InternalEnumerator_1_Object__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BC860, Object *, Array_InternalEnumerator_1_Object__get_Current, (Array_InternalEnumerator_1_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData___ctor, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData__Dispose, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData__MoveNext, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BCBA0, Object *, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BCA10, ObjectInitializationData, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData__get_Current, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___ctor, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__Dispose, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__MoveNext, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BCDC0, Object *, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BCC50, ObjectSurface, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__get_Current, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Dissonance_Networking_Client_OpenChannel___ctor, (Array_InternalEnumerator_1_Dissonance_Networking_Client_OpenChannel___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Dissonance_Networking_Client_OpenChannel__Dispose, (Array_InternalEnumerator_1_Dissonance_Networking_Client_OpenChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Dissonance_Networking_Client_OpenChannel__MoveNext, (Array_InternalEnumerator_1_Dissonance_Networking_Client_OpenChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Dissonance_Networking_Client_OpenChannel__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Dissonance_Networking_Client_OpenChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BCFD0, Object *, Array_InternalEnumerator_1_Dissonance_Networking_Client_OpenChannel__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Dissonance_Networking_Client_OpenChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BCE50, OpenChannel, Array_InternalEnumerator_1_Dissonance_Networking_Client_OpenChannel__get_Current, (Array_InternalEnumerator_1_Dissonance_Networking_Client_OpenChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___ctor, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__Dispose, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__MoveNext, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BD200, Object *, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BD070, OriginalMaterialValue, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__get_Current, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Photon_Bolt_Internal_PacketStats___ctor, (Array_InternalEnumerator_1_Photon_Bolt_Internal_PacketStats___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Photon_Bolt_Internal_PacketStats__Dispose, (Array_InternalEnumerator_1_Photon_Bolt_Internal_PacketStats___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Photon_Bolt_Internal_PacketStats__MoveNext, (Array_InternalEnumerator_1_Photon_Bolt_Internal_PacketStats___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Photon_Bolt_Internal_PacketStats__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Photon_Bolt_Internal_PacketStats___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BD430, Object *, Array_InternalEnumerator_1_Photon_Bolt_Internal_PacketStats__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Photon_Bolt_Internal_PacketStats___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BD2B0, PacketStats, Array_InternalEnumerator_1_Photon_Bolt_Internal_PacketStats__get_Current, (Array_InternalEnumerator_1_Photon_Bolt_Internal_PacketStats___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_PageInfo___ctor, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_PageInfo___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_PageInfo__Dispose, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_PageInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_PageInfo__MoveNext, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_PageInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_PageInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_PageInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BD650, Object *, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_PageInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_PageInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BD4D0, PageInfo, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_PageInfo__get_Current, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_PageInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Reflection_ParameterModifier___ctor, (Array_InternalEnumerator_1_System_Reflection_ParameterModifier___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Reflection_ParameterModifier__Dispose, (Array_InternalEnumerator_1_System_Reflection_ParameterModifier___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Reflection_ParameterModifier__MoveNext, (Array_InternalEnumerator_1_System_Reflection_ParameterModifier___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Reflection_ParameterModifier__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Reflection_ParameterModifier___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BD860, Object *, Array_InternalEnumerator_1_System_Reflection_ParameterModifier__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Reflection_ParameterModifier___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BD6F0, ParameterModifier, Array_InternalEnumerator_1_System_Reflection_ParameterModifier__get_Current, (Array_InternalEnumerator_1_System_Reflection_ParameterModifier___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_ParticleCollisionEvent___ctor, (Array_InternalEnumerator_1_UnityEngine_ParticleCollisionEvent___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_ParticleCollisionEvent__Dispose, (Array_InternalEnumerator_1_UnityEngine_ParticleCollisionEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_ParticleCollisionEvent__MoveNext, (Array_InternalEnumerator_1_UnityEngine_ParticleCollisionEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_ParticleCollisionEvent__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_ParticleCollisionEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BDA80, Object *, Array_InternalEnumerator_1_UnityEngine_ParticleCollisionEvent__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_ParticleCollisionEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BD8F0, ParticleCollisionEvent, Array_InternalEnumerator_1_UnityEngine_ParticleCollisionEvent__get_Current, (Array_InternalEnumerator_1_UnityEngine_ParticleCollisionEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_PatchExtents___ctor, (Array_InternalEnumerator_1_UnityEngine_PatchExtents___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_PatchExtents__Dispose, (Array_InternalEnumerator_1_UnityEngine_PatchExtents___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_PatchExtents__MoveNext, (Array_InternalEnumerator_1_UnityEngine_PatchExtents___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_PatchExtents__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_PatchExtents___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BDCA0, Object *, Array_InternalEnumerator_1_UnityEngine_PatchExtents__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_PatchExtents___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BDB30, PatchExtents, Array_InternalEnumerator_1_UnityEngine_PatchExtents__get_Current, (Array_InternalEnumerator_1_UnityEngine_PatchExtents___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Rewired_PidVid___ctor, (Array_InternalEnumerator_1_Rewired_PidVid___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Rewired_PidVid__Dispose, (Array_InternalEnumerator_1_Rewired_PidVid___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Rewired_PidVid__MoveNext, (Array_InternalEnumerator_1_Rewired_PidVid___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Rewired_PidVid__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Rewired_PidVid___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BDEA0, Object *, Array_InternalEnumerator_1_Rewired_PidVid__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Rewired_PidVid___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BDD30, PidVid, Array_InternalEnumerator_1_Rewired_PidVid__get_Current, (Array_InternalEnumerator_1_Rewired_PidVid___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Plane___ctor, (Array_InternalEnumerator_1_UnityEngine_Plane___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Plane__Dispose, (Array_InternalEnumerator_1_UnityEngine_Plane___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Plane__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Plane___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Plane__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Plane___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BE0A0, Object *, Array_InternalEnumerator_1_UnityEngine_Plane__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Plane___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BDF30, Plane, Array_InternalEnumerator_1_UnityEngine_Plane__get_Current, (Array_InternalEnumerator_1_UnityEngine_Plane___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Playables_Playable___ctor, (Array_InternalEnumerator_1_UnityEngine_Playables_Playable___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Playables_Playable__Dispose, (Array_InternalEnumerator_1_UnityEngine_Playables_Playable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Playables_Playable__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Playables_Playable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Playables_Playable__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Playables_Playable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BE2A0, Object *, Array_InternalEnumerator_1_UnityEngine_Playables_Playable__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Playables_Playable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BE130, Playable, Array_InternalEnumerator_1_UnityEngine_Playables_Playable__get_Current, (Array_InternalEnumerator_1_UnityEngine_Playables_Playable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Playables_PlayableBinding___ctor, (Array_InternalEnumerator_1_UnityEngine_Playables_PlayableBinding___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Playables_PlayableBinding__Dispose, (Array_InternalEnumerator_1_UnityEngine_Playables_PlayableBinding___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Playables_PlayableBinding__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Playables_PlayableBinding___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Playables_PlayableBinding__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Playables_PlayableBinding___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BE4B0, Object *, Array_InternalEnumerator_1_UnityEngine_Playables_PlayableBinding__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Playables_PlayableBinding___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BE330, PlayableBinding, Array_InternalEnumerator_1_UnityEngine_Playables_PlayableBinding__get_Current, (Array_InternalEnumerator_1_UnityEngine_Playables_PlayableBinding___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Dissonance_PlayerChannel___ctor, (Array_InternalEnumerator_1_Dissonance_PlayerChannel___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Dissonance_PlayerChannel__Dispose, (Array_InternalEnumerator_1_Dissonance_PlayerChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Dissonance_PlayerChannel__MoveNext, (Array_InternalEnumerator_1_Dissonance_PlayerChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Dissonance_PlayerChannel__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Dissonance_PlayerChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BE6D0, Object *, Array_InternalEnumerator_1_Dissonance_PlayerChannel__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Dissonance_PlayerChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BE550, PlayerChannel, Array_InternalEnumerator_1_Dissonance_PlayerChannel__get_Current, (Array_InternalEnumerator_1_Dissonance_PlayerChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_PlayerFlashlightBeam___ctor, (Array_InternalEnumerator_1_PlayerFlashlightBeam___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_PlayerFlashlightBeam__Dispose, (Array_InternalEnumerator_1_PlayerFlashlightBeam___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_PlayerFlashlightBeam__MoveNext, (Array_InternalEnumerator_1_PlayerFlashlightBeam___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_PlayerFlashlightBeam__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_PlayerFlashlightBeam___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BE8E0, Object *, Array_InternalEnumerator_1_PlayerFlashlightBeam__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_PlayerFlashlightBeam___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BE770, PlayerFlashlightBeam, Array_InternalEnumerator_1_PlayerFlashlightBeam__get_Current, (Array_InternalEnumerator_1_PlayerFlashlightBeam___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_LowLevel_PlayerLoopSystem___ctor, (Array_InternalEnumerator_1_UnityEngine_LowLevel_PlayerLoopSystem___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_LowLevel_PlayerLoopSystem__Dispose, (Array_InternalEnumerator_1_UnityEngine_LowLevel_PlayerLoopSystem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_LowLevel_PlayerLoopSystem__MoveNext, (Array_InternalEnumerator_1_UnityEngine_LowLevel_PlayerLoopSystem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_LowLevel_PlayerLoopSystem__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_LowLevel_PlayerLoopSystem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BEB00, Object *, Array_InternalEnumerator_1_UnityEngine_LowLevel_PlayerLoopSystem__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_LowLevel_PlayerLoopSystem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BE970, PlayerLoopSystem, Array_InternalEnumerator_1_UnityEngine_LowLevel_PlayerLoopSystem__get_Current, (Array_InternalEnumerator_1_UnityEngine_LowLevel_PlayerLoopSystem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_PointerModel___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_PointerModel___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_PointerModel__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_PointerModel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_PointerModel__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_PointerModel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_PointerModel__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_PointerModel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BED90, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_PointerModel__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_PointerModel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BEBB0, PointerModel, Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_PointerModel__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_PointerModel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Photon_Bolt_PrefabId___ctor, (Array_InternalEnumerator_1_Photon_Bolt_PrefabId___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Photon_Bolt_PrefabId__Dispose, (Array_InternalEnumerator_1_Photon_Bolt_PrefabId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Photon_Bolt_PrefabId__MoveNext, (Array_InternalEnumerator_1_Photon_Bolt_PrefabId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Photon_Bolt_PrefabId__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Photon_Bolt_PrefabId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BF000, Object *, Array_InternalEnumerator_1_Photon_Bolt_PrefabId__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Photon_Bolt_PrefabId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BEE90, PrefabId, Array_InternalEnumerator_1_Photon_Bolt_PrefabId__get_Current, (Array_InternalEnumerator_1_Photon_Bolt_PrefabId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Photon_Bolt_Priority___ctor, (Array_InternalEnumerator_1_Photon_Bolt_Priority___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Photon_Bolt_Priority__Dispose, (Array_InternalEnumerator_1_Photon_Bolt_Priority___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Photon_Bolt_Priority__MoveNext, (Array_InternalEnumerator_1_Photon_Bolt_Priority___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Photon_Bolt_Priority__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Photon_Bolt_Priority___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BF210, Object *, Array_InternalEnumerator_1_Photon_Bolt_Priority__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Photon_Bolt_Priority___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BF090, Priority, Array_InternalEnumerator_1_Photon_Bolt_Priority__get_Current, (Array_InternalEnumerator_1_Photon_Bolt_Priority___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___ctor, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__Dispose, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BF430, Object *, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BF2B0, ProbeVolumeBakingProcessSettings, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Pathfinding_Progress___ctor, (Array_InternalEnumerator_1_Pathfinding_Progress___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Pathfinding_Progress__Dispose, (Array_InternalEnumerator_1_Pathfinding_Progress___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Pathfinding_Progress__MoveNext, (Array_InternalEnumerator_1_Pathfinding_Progress___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Pathfinding_Progress__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Pathfinding_Progress___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BF640, Object *, Array_InternalEnumerator_1_Pathfinding_Progress__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Pathfinding_Progress___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BF4D0, Progress, Array_InternalEnumerator_1_Pathfinding_Progress__get_Current, (Array_InternalEnumerator_1_Pathfinding_Progress___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Steamworks_PublishedFileId_t___ctor, (Array_InternalEnumerator_1_Steamworks_PublishedFileId_t___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Steamworks_PublishedFileId_t__Dispose, (Array_InternalEnumerator_1_Steamworks_PublishedFileId_t___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Steamworks_PublishedFileId_t__MoveNext, (Array_InternalEnumerator_1_Steamworks_PublishedFileId_t___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Steamworks_PublishedFileId_t__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Steamworks_PublishedFileId_t___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BF840, Object *, Array_InternalEnumerator_1_Steamworks_PublishedFileId_t__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Steamworks_PublishedFileId_t___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BF6D0, PublishedFileId_t, Array_InternalEnumerator_1_Steamworks_PublishedFileId_t__get_Current, (Array_InternalEnumerator_1_Steamworks_PublishedFileId_t___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_QeeoSydAJKtvhuMHtIdMCGTRHBDhA___ctor, (Array_InternalEnumerator_1_QeeoSydAJKtvhuMHtIdMCGTRHBDhA___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_QeeoSydAJKtvhuMHtIdMCGTRHBDhA__Dispose, (Array_InternalEnumerator_1_QeeoSydAJKtvhuMHtIdMCGTRHBDhA___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_QeeoSydAJKtvhuMHtIdMCGTRHBDhA__MoveNext, (Array_InternalEnumerator_1_QeeoSydAJKtvhuMHtIdMCGTRHBDhA___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_QeeoSydAJKtvhuMHtIdMCGTRHBDhA__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_QeeoSydAJKtvhuMHtIdMCGTRHBDhA___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BFA50, Object *, Array_InternalEnumerator_1_QeeoSydAJKtvhuMHtIdMCGTRHBDhA__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_QeeoSydAJKtvhuMHtIdMCGTRHBDhA___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BF8D0, QeeoSydAJKtvhuMHtIdMCGTRHBDhA, Array_InternalEnumerator_1_QeeoSydAJKtvhuMHtIdMCGTRHBDhA__get_Current, (Array_InternalEnumerator_1_QeeoSydAJKtvhuMHtIdMCGTRHBDhA___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Quaternion___ctor, (Array_InternalEnumerator_1_UnityEngine_Quaternion___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Quaternion__Dispose, (Array_InternalEnumerator_1_UnityEngine_Quaternion___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Quaternion__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Quaternion___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Quaternion__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Quaternion___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BFC60, Object *, Array_InternalEnumerator_1_UnityEngine_Quaternion__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Quaternion___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BFAF0, Quaternion, Array_InternalEnumerator_1_UnityEngine_Quaternion__get_Current, (Array_InternalEnumerator_1_UnityEngine_Quaternion___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Xml_Schema_RangePositionInfo___ctor, (Array_InternalEnumerator_1_System_Xml_Schema_RangePositionInfo___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Xml_Schema_RangePositionInfo__Dispose, (Array_InternalEnumerator_1_System_Xml_Schema_RangePositionInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Xml_Schema_RangePositionInfo__MoveNext, (Array_InternalEnumerator_1_System_Xml_Schema_RangePositionInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Xml_Schema_RangePositionInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Xml_Schema_RangePositionInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BFE60, Object *, Array_InternalEnumerator_1_System_Xml_Schema_RangePositionInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Xml_Schema_RangePositionInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BFCF0, RangePositionInfo, Array_InternalEnumerator_1_System_Xml_Schema_RangePositionInfo__get_Current, (Array_InternalEnumerator_1_System_Xml_Schema_RangePositionInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_RaycastHit___ctor, (Array_InternalEnumerator_1_UnityEngine_RaycastHit___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_RaycastHit__Dispose, (Array_InternalEnumerator_1_UnityEngine_RaycastHit___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_RaycastHit__MoveNext, (Array_InternalEnumerator_1_UnityEngine_RaycastHit___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_RaycastHit__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_RaycastHit___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C0080, Object *, Array_InternalEnumerator_1_UnityEngine_RaycastHit__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_RaycastHit___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016BFEF0, RaycastHit, Array_InternalEnumerator_1_UnityEngine_RaycastHit__get_Current, (Array_InternalEnumerator_1_UnityEngine_RaycastHit___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_RaycastHit2D___ctor, (Array_InternalEnumerator_1_UnityEngine_RaycastHit2D___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_RaycastHit2D__Dispose, (Array_InternalEnumerator_1_UnityEngine_RaycastHit2D___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_RaycastHit2D__MoveNext, (Array_InternalEnumerator_1_UnityEngine_RaycastHit2D___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_RaycastHit2D__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_RaycastHit2D___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C02C0, Object *, Array_InternalEnumerator_1_UnityEngine_RaycastHit2D__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_RaycastHit2D___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C0140, RaycastHit2D, Array_InternalEnumerator_1_UnityEngine_RaycastHit2D__get_Current, (Array_InternalEnumerator_1_UnityEngine_RaycastHit2D___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_EventSystems_RaycastResult___ctor, (Array_InternalEnumerator_1_UnityEngine_EventSystems_RaycastResult___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_EventSystems_RaycastResult__Dispose, (Array_InternalEnumerator_1_UnityEngine_EventSystems_RaycastResult___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_EventSystems_RaycastResult__MoveNext, (Array_InternalEnumerator_1_UnityEngine_EventSystems_RaycastResult___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_EventSystems_RaycastResult__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_EventSystems_RaycastResult___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C0510, Object *, Array_InternalEnumerator_1_UnityEngine_EventSystems_RaycastResult__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_EventSystems_RaycastResult___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C0370, RaycastResult, Array_InternalEnumerator_1_UnityEngine_EventSystems_RaycastResult__get_Current, (Array_InternalEnumerator_1_UnityEngine_EventSystems_RaycastResult___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Rect___ctor, (Array_InternalEnumerator_1_UnityEngine_Rect___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Rect__Dispose, (Array_InternalEnumerator_1_UnityEngine_Rect___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Rect__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Rect___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Rect__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Rect___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C0740, Object *, Array_InternalEnumerator_1_UnityEngine_Rect__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Rect___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C05D0, Rect, Array_InternalEnumerator_1_UnityEngine_Rect__get_Current, (Array_InternalEnumerator_1_UnityEngine_Rect___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_ReflectionProbeBlendInfo___ctor, (Array_InternalEnumerator_1_UnityEngine_Rendering_ReflectionProbeBlendInfo___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Rendering_ReflectionProbeBlendInfo__Dispose, (Array_InternalEnumerator_1_UnityEngine_Rendering_ReflectionProbeBlendInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Rendering_ReflectionProbeBlendInfo__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Rendering_ReflectionProbeBlendInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_ReflectionProbeBlendInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Rendering_ReflectionProbeBlendInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C0940, Object *, Array_InternalEnumerator_1_UnityEngine_Rendering_ReflectionProbeBlendInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_ReflectionProbeBlendInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C07D0, ReflectionProbeBlendInfo, Array_InternalEnumerator_1_UnityEngine_Rendering_ReflectionProbeBlendInfo__get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_ReflectionProbeBlendInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Dissonance_RemoteChannel___ctor, (Array_InternalEnumerator_1_Dissonance_RemoteChannel___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Dissonance_RemoteChannel__Dispose, (Array_InternalEnumerator_1_Dissonance_RemoteChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Dissonance_RemoteChannel__MoveNext, (Array_InternalEnumerator_1_Dissonance_RemoteChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Dissonance_RemoteChannel__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Dissonance_RemoteChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C0B50, Object *, Array_InternalEnumerator_1_Dissonance_RemoteChannel__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Dissonance_RemoteChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C09D0, RemoteChannel, Array_InternalEnumerator_1_Dissonance_RemoteChannel__get_Current, (Array_InternalEnumerator_1_Dissonance_RemoteChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChainTextEntry___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChainTextEntry___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChainTextEntry__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChainTextEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChainTextEntry__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChainTextEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChainTextEntry__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChainTextEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C0D60, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChainTextEntry__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChainTextEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C0BF0, RenderChainTextEntry, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChainTextEntry__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChainTextEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_RenderInstancedDataLayout___ctor, (Array_InternalEnumerator_1_UnityEngine_RenderInstancedDataLayout___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_RenderInstancedDataLayout__Dispose, (Array_InternalEnumerator_1_UnityEngine_RenderInstancedDataLayout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_RenderInstancedDataLayout__MoveNext, (Array_InternalEnumerator_1_UnityEngine_RenderInstancedDataLayout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_RenderInstancedDataLayout__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_RenderInstancedDataLayout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C0F60, Object *, Array_InternalEnumerator_1_UnityEngine_RenderInstancedDataLayout__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_RenderInstancedDataLayout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C0DF0, RenderInstancedDataLayout, Array_InternalEnumerator_1_UnityEngine_RenderInstancedDataLayout__get_Current, (Array_InternalEnumerator_1_UnityEngine_RenderInstancedDataLayout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_RenderTargetIdentifier___ctor, (Array_InternalEnumerator_1_UnityEngine_Rendering_RenderTargetIdentifier___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Rendering_RenderTargetIdentifier__Dispose, (Array_InternalEnumerator_1_UnityEngine_Rendering_RenderTargetIdentifier___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Rendering_RenderTargetIdentifier__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Rendering_RenderTargetIdentifier___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_RenderTargetIdentifier__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Rendering_RenderTargetIdentifier___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C1180, Object *, Array_InternalEnumerator_1_UnityEngine_Rendering_RenderTargetIdentifier__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_RenderTargetIdentifier___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C0FF0, RenderTargetIdentifier, Array_InternalEnumerator_1_UnityEngine_Rendering_RenderTargetIdentifier__get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_RenderTargetIdentifier___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_RendererUtils_RendererList___ctor, (Array_InternalEnumerator_1_UnityEngine_Rendering_RendererUtils_RendererList___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Rendering_RendererUtils_RendererList__Dispose, (Array_InternalEnumerator_1_UnityEngine_Rendering_RendererUtils_RendererList___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Rendering_RendererUtils_RendererList__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Rendering_RendererUtils_RendererList___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_RendererUtils_RendererList__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Rendering_RendererUtils_RendererList___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C13A0, Object *, Array_InternalEnumerator_1_UnityEngine_Rendering_RendererUtils_RendererList__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_RendererUtils_RendererList___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C1230, RendererList, Array_InternalEnumerator_1_UnityEngine_Rendering_RendererUtils_RendererList__get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_RendererUtils_RendererList___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle___ctor, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle__Dispose, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C15A0, Object *, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C1430, RendererListHandle, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle__get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource___ctor, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource__Dispose, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C1820, Object *, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C1630, RendererListResource, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource__get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Resolution___ctor, (Array_InternalEnumerator_1_UnityEngine_Resolution___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Resolution__Dispose, (Array_InternalEnumerator_1_UnityEngine_Resolution___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Resolution__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Resolution___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Resolution__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Resolution___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C1AC0, Object *, Array_InternalEnumerator_1_UnityEngine_Resolution__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Resolution___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C1940, Resolution, Array_InternalEnumerator_1_UnityEngine_Resolution__get_Current, (Array_InternalEnumerator_1_UnityEngine_Resolution___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle___ctor, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle__Dispose, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C1CD0, Object *, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C1B60, ResourceHandle, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle__get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Resources_ResourceLocator___ctor, (Array_InternalEnumerator_1_System_Resources_ResourceLocator___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Resources_ResourceLocator__Dispose, (Array_InternalEnumerator_1_System_Resources_ResourceLocator___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Resources_ResourceLocator__MoveNext, (Array_InternalEnumerator_1_System_Resources_ResourceLocator___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Resources_ResourceLocator__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Resources_ResourceLocator___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C1ED0, Object *, Array_InternalEnumerator_1_System_Resources_ResourceLocator__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Resources_ResourceLocator___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C1D60, ResourceLocator, Array_InternalEnumerator_1_System_Resources_ResourceLocator__get_Current, (Array_InternalEnumerator_1_System_Resources_ResourceLocator___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_TMPro_RichTextTagAttribute___ctor, (Array_InternalEnumerator_1_TMPro_RichTextTagAttribute___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_TMPro_RichTextTagAttribute__Dispose, (Array_InternalEnumerator_1_TMPro_RichTextTagAttribute___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_TMPro_RichTextTagAttribute__MoveNext, (Array_InternalEnumerator_1_TMPro_RichTextTagAttribute___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_TMPro_RichTextTagAttribute__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_TMPro_RichTextTagAttribute___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C20E0, Object *, Array_InternalEnumerator_1_TMPro_RichTextTagAttribute__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_TMPro_RichTextTagAttribute___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C1F60, RichTextTagAttribute, Array_InternalEnumerator_1_TMPro_RichTextTagAttribute__get_Current, (Array_InternalEnumerator_1_TMPro_RichTextTagAttribute___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_RichTextTagAttribute___ctor, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_RichTextTagAttribute___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_RichTextTagAttribute__Dispose, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_RichTextTagAttribute___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_RichTextTagAttribute__MoveNext, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_RichTextTagAttribute___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_RichTextTagAttribute__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_RichTextTagAttribute___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C2300, Object *, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_RichTextTagAttribute__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_RichTextTagAttribute___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C2180, RichTextTagAttribute_1, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_RichTextTagAttribute__get_Current, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_RichTextTagAttribute___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Dissonance_RoomChannel___ctor, (Array_InternalEnumerator_1_Dissonance_RoomChannel___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Dissonance_RoomChannel__Dispose, (Array_InternalEnumerator_1_Dissonance_RoomChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Dissonance_RoomChannel__MoveNext, (Array_InternalEnumerator_1_Dissonance_RoomChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Dissonance_RoomChannel__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Dissonance_RoomChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C2530, Object *, Array_InternalEnumerator_1_Dissonance_RoomChannel__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Dissonance_RoomChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C23A0, RoomChannel, Array_InternalEnumerator_1_Dissonance_RoomChannel__get_Current, (Array_InternalEnumerator_1_Dissonance_RoomChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Dissonance_RoomMembership___ctor, (Array_InternalEnumerator_1_Dissonance_RoomMembership___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Dissonance_RoomMembership__Dispose, (Array_InternalEnumerator_1_Dissonance_RoomMembership___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Dissonance_RoomMembership__MoveNext, (Array_InternalEnumerator_1_Dissonance_RoomMembership___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Dissonance_RoomMembership__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Dissonance_RoomMembership___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C2760, Object *, Array_InternalEnumerator_1_Dissonance_RoomMembership__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Dissonance_RoomMembership___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C25E0, RoomMembership, Array_InternalEnumerator_1_Dissonance_RoomMembership__get_Current, (Array_InternalEnumerator_1_Dissonance_RoomMembership___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Dissonance_RoomName___ctor, (Array_InternalEnumerator_1_Dissonance_RoomName___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Dissonance_RoomName__Dispose, (Array_InternalEnumerator_1_Dissonance_RoomName___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Dissonance_RoomName__MoveNext, (Array_InternalEnumerator_1_Dissonance_RoomName___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Dissonance_RoomName__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Dissonance_RoomName___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C2970, Object *, Array_InternalEnumerator_1_Dissonance_RoomName__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Dissonance_RoomName___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C2800, RoomName, Array_InternalEnumerator_1_Dissonance_RoomName__get_Current, (Array_InternalEnumerator_1_Dissonance_RoomName___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_Rotate___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_Rotate___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_Rotate__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_Rotate___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_Rotate__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_Rotate___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_Rotate__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_Rotate___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C2B80, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_Rotate__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_Rotate___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C2A00, Rotate_1, Array_InternalEnumerator_1_UnityEngine_UIElements_Rotate__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_Rotate___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_RuleMatcher___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_RuleMatcher___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_RuleMatcher__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_RuleMatcher___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_RuleMatcher__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_RuleMatcher___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_RuleMatcher__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_RuleMatcher___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C2D90, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_RuleMatcher__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_RuleMatcher___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C2C20, RuleMatcher, Array_InternalEnumerator_1_UnityEngine_UIElements_RuleMatcher__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_RuleMatcher___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_RuntimeLabel___ctor, (Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_RuntimeLabel___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_RuntimeLabel__Dispose, (Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_RuntimeLabel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_RuntimeLabel__MoveNext, (Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_RuntimeLabel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_RuntimeLabel__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_RuntimeLabel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C2FA0, Object *, Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_RuntimeLabel__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_RuntimeLabel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C2E20, RuntimeLabel, Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_RuntimeLabel__get_Current, (Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_RuntimeLabel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_SByte___ctor, (Array_InternalEnumerator_1_SByte___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_SByte__Dispose, (Array_InternalEnumerator_1_SByte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_SByte__MoveNext, (Array_InternalEnumerator_1_SByte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_SByte__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_SByte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C31B0, Object *, Array_InternalEnumerator_1_SByte__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_SByte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C3040, int8_t, Array_InternalEnumerator_1_SByte__get_Current, (Array_InternalEnumerator_1_SByte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_SByteEnum___ctor, (Array_InternalEnumerator_1_SByteEnum___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_SByteEnum__Dispose, (Array_InternalEnumerator_1_SByteEnum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_SByteEnum__MoveNext, (Array_InternalEnumerator_1_SByteEnum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_SByteEnum__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_SByteEnum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C33B0, Object *, Array_InternalEnumerator_1_SByteEnum__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_SByteEnum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C3240, SByteEnum__Enum, Array_InternalEnumerator_1_SByteEnum__get_Current, (Array_InternalEnumerator_1_SByteEnum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Runtime_InteropServices_ComTypes_STATDATA___ctor, (Array_InternalEnumerator_1_System_Runtime_InteropServices_ComTypes_STATDATA___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Runtime_InteropServices_ComTypes_STATDATA__Dispose, (Array_InternalEnumerator_1_System_Runtime_InteropServices_ComTypes_STATDATA___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Runtime_InteropServices_ComTypes_STATDATA__MoveNext, (Array_InternalEnumerator_1_System_Runtime_InteropServices_ComTypes_STATDATA___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Runtime_InteropServices_ComTypes_STATDATA__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Runtime_InteropServices_ComTypes_STATDATA___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C35D0, Object *, Array_InternalEnumerator_1_System_Runtime_InteropServices_ComTypes_STATDATA__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Runtime_InteropServices_ComTypes_STATDATA___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C3440, STATDATA, Array_InternalEnumerator_1_System_Runtime_InteropServices_ComTypes_STATDATA__get_Current, (Array_InternalEnumerator_1_System_Runtime_InteropServices_ComTypes_STATDATA___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_ScalableImage___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_ScalableImage___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_ScalableImage__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_ScalableImage___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_ScalableImage__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_ScalableImage___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_ScalableImage__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_ScalableImage___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C3800, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_ScalableImage__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_ScalableImage___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C3690, ScalableImage, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_ScalableImage__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_ScalableImage___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_Scale___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_Scale___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_Scale__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_Scale___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_Scale__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_Scale___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_Scale__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_Scale___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C3A00, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_Scale__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_Scale___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C3890, Scale, Array_InternalEnumerator_1_UnityEngine_UIElements_Scale__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_Scale___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C3C10, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C3A90, SelectorMatchRecord, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Windows_Speech_SemanticMeaning___ctor, (Array_InternalEnumerator_1_UnityEngine_Windows_Speech_SemanticMeaning___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Windows_Speech_SemanticMeaning__Dispose, (Array_InternalEnumerator_1_UnityEngine_Windows_Speech_SemanticMeaning___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Windows_Speech_SemanticMeaning__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Windows_Speech_SemanticMeaning___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Windows_Speech_SemanticMeaning__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Windows_Speech_SemanticMeaning___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C3E20, Object *, Array_InternalEnumerator_1_UnityEngine_Windows_Speech_SemanticMeaning__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Windows_Speech_SemanticMeaning___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C3CB0, SemanticMeaning, Array_InternalEnumerator_1_UnityEngine_Windows_Speech_SemanticMeaning__get_Current, (Array_InternalEnumerator_1_UnityEngine_Windows_Speech_SemanticMeaning___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_SerializedType___ctor, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_SerializedType___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_SerializedType__Dispose, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_SerializedType___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_SerializedType__MoveNext, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_SerializedType___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_SerializedType__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_SerializedType___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C4030, Object *, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_SerializedType__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_SerializedType___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C3EB0, SerializedType, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_SerializedType__get_Current, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_SerializedType___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_SessionClient___ctor, (Array_InternalEnumerator_1_SessionClient___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_SessionClient__Dispose, (Array_InternalEnumerator_1_SessionClient___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_SessionClient__MoveNext, (Array_InternalEnumerator_1_SessionClient___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_SessionClient__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_SessionClient___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C4260, Object *, Array_InternalEnumerator_1_SessionClient__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_SessionClient___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C40D0, SessionClient, Array_InternalEnumerator_1_SessionClient__get_Current, (Array_InternalEnumerator_1_SessionClient___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderKeyword___ctor, (Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderKeyword___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderKeyword__Dispose, (Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderKeyword___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderKeyword__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderKeyword___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderKeyword__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderKeyword___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C4490, Object *, Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderKeyword__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderKeyword___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C4320, ShaderKeyword, Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderKeyword__get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderKeyword___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderTagId___ctor, (Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderTagId___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderTagId__Dispose, (Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderTagId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderTagId__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderTagId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderTagId__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderTagId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C4690, Object *, Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderTagId__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderTagId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C4520, ShaderTagId, Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderTagId__get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderTagId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderVariablesProbeVolumes___ctor, (Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderVariablesProbeVolumes___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderVariablesProbeVolumes__Dispose, (Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderVariablesProbeVolumes___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderVariablesProbeVolumes__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderVariablesProbeVolumes___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderVariablesProbeVolumes__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderVariablesProbeVolumes___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C48B0, Object *, Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderVariablesProbeVolumes__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderVariablesProbeVolumes___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C4720, ShaderVariablesProbeVolumes, Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderVariablesProbeVolumes__get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderVariablesProbeVolumes___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Single___ctor, (Array_InternalEnumerator_1_Single___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Single__Dispose, (Array_InternalEnumerator_1_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Single__MoveNext, (Array_InternalEnumerator_1_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Single__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C4AE0, Object *, Array_InternalEnumerator_1_Single__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C4970, float, Array_InternalEnumerator_1_Single__get_Current, (Array_InternalEnumerator_1_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_SkeletonBone___ctor, (Array_InternalEnumerator_1_UnityEngine_SkeletonBone___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_SkeletonBone__Dispose, (Array_InternalEnumerator_1_UnityEngine_SkeletonBone___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_SkeletonBone__MoveNext, (Array_InternalEnumerator_1_UnityEngine_SkeletonBone___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_SkeletonBone__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_SkeletonBone___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C4D00, Object *, Array_InternalEnumerator_1_UnityEngine_SkeletonBone__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_SkeletonBone___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C4B70, SkeletonBone, Array_InternalEnumerator_1_UnityEngine_SkeletonBone__get_Current, (Array_InternalEnumerator_1_UnityEngine_SkeletonBone___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Discord_Sku___ctor, (Array_InternalEnumerator_1_Discord_Sku___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Discord_Sku__Dispose, (Array_InternalEnumerator_1_Discord_Sku___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Discord_Sku__MoveNext, (Array_InternalEnumerator_1_Discord_Sku___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Discord_Sku__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Discord_Sku___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C4F50, Object *, Array_InternalEnumerator_1_Discord_Sku__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Discord_Sku___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C4DC0, Sku, Array_InternalEnumerator_1_Discord_Sku__get_Current, (Array_InternalEnumerator_1_Discord_Sku___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Dissonance_Audio_Playback_SpeechSession___ctor, (Array_InternalEnumerator_1_Dissonance_Audio_Playback_SpeechSession___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Dissonance_Audio_Playback_SpeechSession__Dispose, (Array_InternalEnumerator_1_Dissonance_Audio_Playback_SpeechSession___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Dissonance_Audio_Playback_SpeechSession__MoveNext, (Array_InternalEnumerator_1_Dissonance_Audio_Playback_SpeechSession___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Dissonance_Audio_Playback_SpeechSession__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Dissonance_Audio_Playback_SpeechSession___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C5190, Object *, Array_InternalEnumerator_1_Dissonance_Audio_Playback_SpeechSession__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Dissonance_Audio_Playback_SpeechSession___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C5000, SpeechSession, Array_InternalEnumerator_1_Dissonance_Audio_Playback_SpeechSession__get_Current, (Array_InternalEnumerator_1_Dissonance_Audio_Playback_SpeechSession___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_SphericalHarmonicsL2___ctor, (Array_InternalEnumerator_1_UnityEngine_Rendering_SphericalHarmonicsL2___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Rendering_SphericalHarmonicsL2__Dispose, (Array_InternalEnumerator_1_UnityEngine_Rendering_SphericalHarmonicsL2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Rendering_SphericalHarmonicsL2__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Rendering_SphericalHarmonicsL2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_SphericalHarmonicsL2__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Rendering_SphericalHarmonicsL2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C5410, Object *, Array_InternalEnumerator_1_UnityEngine_Rendering_SphericalHarmonicsL2__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_SphericalHarmonicsL2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C5250, SphericalHarmonicsL2, Array_InternalEnumerator_1_UnityEngine_Rendering_SphericalHarmonicsL2__get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_SphericalHarmonicsL2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UI_SpriteState___ctor, (Array_InternalEnumerator_1_UnityEngine_UI_SpriteState___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UI_SpriteState__Dispose, (Array_InternalEnumerator_1_UnityEngine_UI_SpriteState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UI_SpriteState__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UI_SpriteState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UI_SpriteState__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UI_SpriteState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C5670, Object *, Array_InternalEnumerator_1_UnityEngine_UI_SpriteState__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UI_SpriteState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C54F0, SpriteState, Array_InternalEnumerator_1_UnityEngine_UI_SpriteState__get_Current, (Array_InternalEnumerator_1_UnityEngine_UI_SpriteState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Net_Security_SslApplicationProtocol___ctor, (Array_InternalEnumerator_1_System_Net_Security_SslApplicationProtocol___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Net_Security_SslApplicationProtocol__Dispose, (Array_InternalEnumerator_1_System_Net_Security_SslApplicationProtocol___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Net_Security_SslApplicationProtocol__MoveNext, (Array_InternalEnumerator_1_System_Net_Security_SslApplicationProtocol___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Net_Security_SslApplicationProtocol__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Net_Security_SslApplicationProtocol___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C5880, Object *, Array_InternalEnumerator_1_System_Net_Security_SslApplicationProtocol__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Net_Security_SslApplicationProtocol___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C5710, SslApplicationProtocol, Array_InternalEnumerator_1_System_Net_Security_SslApplicationProtocol__get_Current, (Array_InternalEnumerator_1_System_Net_Security_SslApplicationProtocol___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Steamworks_SteamItemDef_t___ctor, (Array_InternalEnumerator_1_Steamworks_SteamItemDef_t___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Steamworks_SteamItemDef_t__Dispose, (Array_InternalEnumerator_1_Steamworks_SteamItemDef_t___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Steamworks_SteamItemDef_t__MoveNext, (Array_InternalEnumerator_1_Steamworks_SteamItemDef_t___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Steamworks_SteamItemDef_t__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Steamworks_SteamItemDef_t___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C5A80, Object *, Array_InternalEnumerator_1_Steamworks_SteamItemDef_t__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Steamworks_SteamItemDef_t___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C5910, SteamItemDef_t, Array_InternalEnumerator_1_Steamworks_SteamItemDef_t__get_Current, (Array_InternalEnumerator_1_Steamworks_SteamItemDef_t___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Steamworks_SteamItemDetails_t___ctor, (Array_InternalEnumerator_1_Steamworks_SteamItemDetails_t___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Steamworks_SteamItemDetails_t__Dispose, (Array_InternalEnumerator_1_Steamworks_SteamItemDetails_t___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Steamworks_SteamItemDetails_t__MoveNext, (Array_InternalEnumerator_1_Steamworks_SteamItemDetails_t___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Steamworks_SteamItemDetails_t__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Steamworks_SteamItemDetails_t___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C5C80, Object *, Array_InternalEnumerator_1_Steamworks_SteamItemDetails_t__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Steamworks_SteamItemDetails_t___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C5B10, SteamItemDetails_t, Array_InternalEnumerator_1_Steamworks_SteamItemDetails_t__get_Current, (Array_InternalEnumerator_1_Steamworks_SteamItemDetails_t___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyName___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyName___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyName__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyName___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyName__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyName___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyName__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyName___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C5E80, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyName__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyName___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C5D10, StylePropertyName, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyName__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyName___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C6080, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C5F10, StylePropertyValue, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSelectorPart___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSelectorPart___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSelectorPart__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSelectorPart___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSelectorPart__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSelectorPart___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSelectorPart__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSelectorPart___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C6290, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSelectorPart__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSelectorPart___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C6110, StyleSelectorPart, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSelectorPart__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSelectorPart___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C64B0, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C6330, StyleSyntaxToken, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValue___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValue___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValue__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValue__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValue__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C66D0, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValue__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C6550, StyleValue, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValue__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleValueHandle___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleValueHandle___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleValueHandle__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleValueHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleValueHandle__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleValueHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleValueHandle__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleValueHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C68E0, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleValueHandle__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleValueHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C6770, StyleValueHandle, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleValueHandle__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleValueHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C6AE0, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C6970, StyleValueManaged, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleVariable___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleVariable___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleVariable__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleVariable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleVariable__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleVariable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleVariable__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleVariable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C6CF0, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleVariable__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleVariable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C6B70, StyleVariable, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleVariable__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleVariable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_SubMeshDescriptor___ctor, (Array_InternalEnumerator_1_UnityEngine_Rendering_SubMeshDescriptor___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Rendering_SubMeshDescriptor__Dispose, (Array_InternalEnumerator_1_UnityEngine_Rendering_SubMeshDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Rendering_SubMeshDescriptor__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Rendering_SubMeshDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_SubMeshDescriptor__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Rendering_SubMeshDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C6F20, Object *, Array_InternalEnumerator_1_UnityEngine_Rendering_SubMeshDescriptor__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_SubMeshDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C6D90, SubMeshDescriptor, Array_InternalEnumerator_1_UnityEngine_Rendering_SubMeshDescriptor__get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_SubMeshDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_Substring___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_Substring___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_Substring__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_Substring___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_Substring__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_Substring___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_Substring__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_Substring___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C7140, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_Substring__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_Substring___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C6FD0, Substring, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_Substring__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_Substring___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_TMPro_TMP_CharacterInfo___ctor, (Array_InternalEnumerator_1_TMPro_TMP_CharacterInfo___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_TMPro_TMP_CharacterInfo__Dispose, (Array_InternalEnumerator_1_TMPro_TMP_CharacterInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_TMPro_TMP_CharacterInfo__MoveNext, (Array_InternalEnumerator_1_TMPro_TMP_CharacterInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_TMPro_TMP_CharacterInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_TMPro_TMP_CharacterInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C73E0, Object *, Array_InternalEnumerator_1_TMPro_TMP_CharacterInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_TMPro_TMP_CharacterInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C71D0, TMP_CharacterInfo, Array_InternalEnumerator_1_TMPro_TMP_CharacterInfo__get_Current, (Array_InternalEnumerator_1_TMPro_TMP_CharacterInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_TMPro_TMP_FontWeightPair___ctor, (Array_InternalEnumerator_1_TMPro_TMP_FontWeightPair___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_TMPro_TMP_FontWeightPair__Dispose, (Array_InternalEnumerator_1_TMPro_TMP_FontWeightPair___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_TMPro_TMP_FontWeightPair__MoveNext, (Array_InternalEnumerator_1_TMPro_TMP_FontWeightPair___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_TMPro_TMP_FontWeightPair__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_TMPro_TMP_FontWeightPair___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C7680, Object *, Array_InternalEnumerator_1_TMPro_TMP_FontWeightPair__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_TMPro_TMP_FontWeightPair___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C7510, TMP_FontWeightPair, Array_InternalEnumerator_1_TMPro_TMP_FontWeightPair__get_Current, (Array_InternalEnumerator_1_TMPro_TMP_FontWeightPair___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_TMPro_TMP_LineInfo___ctor, (Array_InternalEnumerator_1_TMPro_TMP_LineInfo___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_TMPro_TMP_LineInfo__Dispose, (Array_InternalEnumerator_1_TMPro_TMP_LineInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_TMPro_TMP_LineInfo__MoveNext, (Array_InternalEnumerator_1_TMPro_TMP_LineInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_TMPro_TMP_LineInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_TMPro_TMP_LineInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C78C0, Object *, Array_InternalEnumerator_1_TMPro_TMP_LineInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_TMPro_TMP_LineInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C7710, TMP_LineInfo, Array_InternalEnumerator_1_TMPro_TMP_LineInfo__get_Current, (Array_InternalEnumerator_1_TMPro_TMP_LineInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_TMPro_TMP_LinkInfo___ctor, (Array_InternalEnumerator_1_TMPro_TMP_LinkInfo___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_TMPro_TMP_LinkInfo__Dispose, (Array_InternalEnumerator_1_TMPro_TMP_LinkInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_TMPro_TMP_LinkInfo__MoveNext, (Array_InternalEnumerator_1_TMPro_TMP_LinkInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_TMPro_TMP_LinkInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_TMPro_TMP_LinkInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C7B20, Object *, Array_InternalEnumerator_1_TMPro_TMP_LinkInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_TMPro_TMP_LinkInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C7990, TMP_LinkInfo, Array_InternalEnumerator_1_TMPro_TMP_LinkInfo__get_Current, (Array_InternalEnumerator_1_TMPro_TMP_LinkInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_TMPro_TMP_MeshInfo___ctor, (Array_InternalEnumerator_1_TMPro_TMP_MeshInfo___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_TMPro_TMP_MeshInfo__Dispose, (Array_InternalEnumerator_1_TMPro_TMP_MeshInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_TMPro_TMP_MeshInfo__MoveNext, (Array_InternalEnumerator_1_TMPro_TMP_MeshInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_TMPro_TMP_MeshInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_TMPro_TMP_MeshInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C7D70, Object *, Array_InternalEnumerator_1_TMPro_TMP_MeshInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_TMPro_TMP_MeshInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C7BD0, TMP_MeshInfo, Array_InternalEnumerator_1_TMPro_TMP_MeshInfo__get_Current, (Array_InternalEnumerator_1_TMPro_TMP_MeshInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_TMPro_TMP_PageInfo___ctor, (Array_InternalEnumerator_1_TMPro_TMP_PageInfo___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_TMPro_TMP_PageInfo__Dispose, (Array_InternalEnumerator_1_TMPro_TMP_PageInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_TMPro_TMP_PageInfo__MoveNext, (Array_InternalEnumerator_1_TMPro_TMP_PageInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_TMPro_TMP_PageInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_TMPro_TMP_PageInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C7FB0, Object *, Array_InternalEnumerator_1_TMPro_TMP_PageInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_TMPro_TMP_PageInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C7E30, TMP_PageInfo, Array_InternalEnumerator_1_TMPro_TMP_PageInfo__get_Current, (Array_InternalEnumerator_1_TMPro_TMP_PageInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_TMPro_TMP_WordInfo___ctor, (Array_InternalEnumerator_1_TMPro_TMP_WordInfo___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_TMPro_TMP_WordInfo__Dispose, (Array_InternalEnumerator_1_TMPro_TMP_WordInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_TMPro_TMP_WordInfo__MoveNext, (Array_InternalEnumerator_1_TMPro_TMP_WordInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_TMPro_TMP_WordInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_TMPro_TMP_WordInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C81D0, Object *, Array_InternalEnumerator_1_TMPro_TMP_WordInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_TMPro_TMP_WordInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C8050, TMP_WordInfo, Array_InternalEnumerator_1_TMPro_TMP_WordInfo__get_Current, (Array_InternalEnumerator_1_TMPro_TMP_WordInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_TerrainUtils_TerrainTileCoord___ctor, (Array_InternalEnumerator_1_UnityEngine_TerrainUtils_TerrainTileCoord___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_TerrainUtils_TerrainTileCoord__Dispose, (Array_InternalEnumerator_1_UnityEngine_TerrainUtils_TerrainTileCoord___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_TerrainUtils_TerrainTileCoord__MoveNext, (Array_InternalEnumerator_1_UnityEngine_TerrainUtils_TerrainTileCoord___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_TerrainUtils_TerrainTileCoord__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_TerrainUtils_TerrainTileCoord___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C83E0, Object *, Array_InternalEnumerator_1_UnityEngine_TerrainUtils_TerrainTileCoord__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_TerrainUtils_TerrainTileCoord___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C8270, TerrainTileCoord, Array_InternalEnumerator_1_UnityEngine_TerrainUtils_TerrainTileCoord__get_Current, (Array_InternalEnumerator_1_UnityEngine_TerrainUtils_TerrainTileCoord___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextElementInfo___ctor, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextElementInfo___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextElementInfo__Dispose, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextElementInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextElementInfo__MoveNext, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextElementInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextElementInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextElementInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C8670, Object *, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextElementInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextElementInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C8470, TextElementInfo, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextElementInfo__get_Current, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextElementInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TextShadow___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_TextShadow___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TextShadow__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_TextShadow___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_TextShadow__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_TextShadow___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TextShadow__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_TextShadow___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C8910, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_TextShadow__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_TextShadow___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C8790, TextShadow, Array_InternalEnumerator_1_UnityEngine_UIElements_TextShadow__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_TextShadow___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TextVertex___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_TextVertex___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TextVertex__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_TextVertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_TextVertex__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_TextVertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TextVertex__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_TextVertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C8B30, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_TextVertex__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_TextVertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C89B0, TextVertex_1, Array_InternalEnumerator_1_UnityEngine_UIElements_TextVertex__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_TextVertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_TextureHandle___ctor, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_TextureHandle___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_TextureHandle__Dispose, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_TextureHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_TextureHandle__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_TextureHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_TextureHandle__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_TextureHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C8D40, Object *, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_TextureHandle__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_TextureHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C8BD0, TextureHandle, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_TextureHandle__get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_TextureHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TextureId___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_TextureId___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TextureId__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_TextureId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_TextureId__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_TextureId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TextureId__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_TextureId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C8F40, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_TextureId__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_TextureId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C8DD0, TextureId, Array_InternalEnumerator_1_UnityEngine_UIElements_TextureId__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_TextureId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Tilemaps_TileData___ctor, (Array_InternalEnumerator_1_UnityEngine_Tilemaps_TileData___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Tilemaps_TileData__Dispose, (Array_InternalEnumerator_1_UnityEngine_Tilemaps_TileData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Tilemaps_TileData__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Tilemaps_TileData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Tilemaps_TileData__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Tilemaps_TileData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C9180, Object *, Array_InternalEnumerator_1_UnityEngine_Tilemaps_TileData__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Tilemaps_TileData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C8FD0, TileData, Array_InternalEnumerator_1_UnityEngine_Tilemaps_TileData__get_Current, (Array_InternalEnumerator_1_UnityEngine_Tilemaps_TileData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_TimeSpan___ctor, (Array_InternalEnumerator_1_TimeSpan___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_TimeSpan__Dispose, (Array_InternalEnumerator_1_TimeSpan___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_TimeSpan__MoveNext, (Array_InternalEnumerator_1_TimeSpan___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_TimeSpan__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_TimeSpan___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C93C0, Object *, Array_InternalEnumerator_1_TimeSpan__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_TimeSpan___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C9250, TimeSpan, Array_InternalEnumerator_1_TimeSpan__get_Current, (Array_InternalEnumerator_1_TimeSpan___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TimeValue___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_TimeValue___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TimeValue__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_TimeValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_TimeValue__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_TimeValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TimeValue__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_TimeValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C95C0, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_TimeValue__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_TimeValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C9450, TimeValue, Array_InternalEnumerator_1_UnityEngine_UIElements_TimeValue__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_TimeValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Touch___ctor, (Array_InternalEnumerator_1_UnityEngine_Touch___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Touch__Dispose, (Array_InternalEnumerator_1_UnityEngine_Touch___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Touch__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Touch___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Touch__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Touch___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C97F0, Object *, Array_InternalEnumerator_1_UnityEngine_Touch__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Touch___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C9650, Touch, Array_InternalEnumerator_1_UnityEngine_Touch__get_Current, (Array_InternalEnumerator_1_UnityEngine_Touch___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_EnhancedTouch_Touch___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_EnhancedTouch_Touch___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_EnhancedTouch_Touch__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_EnhancedTouch_Touch___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_EnhancedTouch_Touch__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_EnhancedTouch_Touch___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_EnhancedTouch_Touch__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_EnhancedTouch_Touch___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C9A30, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_EnhancedTouch_Touch__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_EnhancedTouch_Touch___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C98B0, Touch_1, Array_InternalEnumerator_1_UnityEngine_InputSystem_EnhancedTouch_Touch__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_EnhancedTouch_Touch___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_TrackableId___ctor, (Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_TrackableId___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_TrackableId__Dispose, (Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_TrackableId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_TrackableId__MoveNext, (Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_TrackableId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_TrackableId__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_TrackableId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C9C40, Object *, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_TrackableId__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_TrackableId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C9AD0, TrackableId, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_TrackableId__get_Current, (Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_TrackableId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_Transform3x4___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_Transform3x4___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_Transform3x4__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_Transform3x4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_Transform3x4__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_Transform3x4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_Transform3x4__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_Transform3x4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C9E60, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_Transform3x4__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_Transform3x4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C9CD0, Transform3x4, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_Transform3x4__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_Transform3x4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TransformOrigin___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_TransformOrigin___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TransformOrigin__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_TransformOrigin___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_TransformOrigin__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_TransformOrigin___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TransformOrigin__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_TransformOrigin___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CA090, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_TransformOrigin__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_TransformOrigin___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016C9F10, TransformOrigin, Array_InternalEnumerator_1_UnityEngine_UIElements_TransformOrigin__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_TransformOrigin___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_Translate___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_Translate___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_Translate__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_Translate___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_Translate__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_Translate___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_Translate__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_Translate___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CA2B0, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_Translate__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_Translate___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CA130, Translate_1, Array_InternalEnumerator_1_UnityEngine_UIElements_Translate__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_Translate___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_TreeInstance___ctor, (Array_InternalEnumerator_1_UnityEngine_TreeInstance___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_TreeInstance__Dispose, (Array_InternalEnumerator_1_UnityEngine_TreeInstance___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_TreeInstance__MoveNext, (Array_InternalEnumerator_1_UnityEngine_TreeInstance___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_TreeInstance__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_TreeInstance___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CA4E0, Object *, Array_InternalEnumerator_1_UnityEngine_TreeInstance__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_TreeInstance___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CA350, TreeInstance, Array_InternalEnumerator_1_UnityEngine_TreeInstance__get_Current, (Array_InternalEnumerator_1_UnityEngine_TreeInstance___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TreeItem___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_TreeItem___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TreeItem__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_TreeItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_TreeItem__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_TreeItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TreeItem__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_TreeItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CA700, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_TreeItem__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_TreeItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CA590, TreeItem, Array_InternalEnumerator_1_UnityEngine_UIElements_TreeItem__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_TreeItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TreeViewItemWrapper___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_TreeViewItemWrapper___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TreeViewItemWrapper__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_TreeViewItemWrapper___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_TreeViewItemWrapper__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_TreeViewItemWrapper___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TreeViewItemWrapper__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_TreeViewItemWrapper___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CA910, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_TreeViewItemWrapper__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_TreeViewItemWrapper___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CA790, TreeViewItemWrapper, Array_InternalEnumerator_1_UnityEngine_UIElements_TreeViewItemWrapper__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_TreeViewItemWrapper___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Photon_Bolt_TypeId___ctor, (Array_InternalEnumerator_1_Photon_Bolt_TypeId___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Photon_Bolt_TypeId__Dispose, (Array_InternalEnumerator_1_Photon_Bolt_TypeId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Photon_Bolt_TypeId__MoveNext, (Array_InternalEnumerator_1_Photon_Bolt_TypeId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Photon_Bolt_TypeId__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Photon_Bolt_TypeId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CAB20, Object *, Array_InternalEnumerator_1_Photon_Bolt_TypeId__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Photon_Bolt_TypeId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CA9B0, TypeId, Array_InternalEnumerator_1_Photon_Bolt_TypeId__get_Current, (Array_InternalEnumerator_1_Photon_Bolt_TypeId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_TypeWrapper___ctor, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_TypeWrapper___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_TypeWrapper__Dispose, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_TypeWrapper___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_TypeWrapper__MoveNext, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_TypeWrapper___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_TypeWrapper__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_TypeWrapper___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CAD30, Object *, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_TypeWrapper__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_TypeWrapper___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CABB0, TypeWrapper, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_TypeWrapper__get_Current, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_TypeWrapper___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UICharInfo___ctor, (Array_InternalEnumerator_1_UnityEngine_UICharInfo___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UICharInfo__Dispose, (Array_InternalEnumerator_1_UnityEngine_UICharInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UICharInfo__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UICharInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UICharInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UICharInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CAF50, Object *, Array_InternalEnumerator_1_UnityEngine_UICharInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UICharInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CADD0, UICharInfo, Array_InternalEnumerator_1_UnityEngine_UICharInfo__get_Current, (Array_InternalEnumerator_1_UnityEngine_UICharInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UILineInfo___ctor, (Array_InternalEnumerator_1_UnityEngine_UILineInfo___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UILineInfo__Dispose, (Array_InternalEnumerator_1_UnityEngine_UILineInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UILineInfo__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UILineInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UILineInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UILineInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CB160, Object *, Array_InternalEnumerator_1_UnityEngine_UILineInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UILineInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CAFF0, UILineInfo, Array_InternalEnumerator_1_UnityEngine_UILineInfo__get_Current, (Array_InternalEnumerator_1_UnityEngine_UILineInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIVertex___ctor, (Array_InternalEnumerator_1_UnityEngine_UIVertex___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIVertex__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIVertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIVertex__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIVertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIVertex__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIVertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CB3B0, Object *, Array_InternalEnumerator_1_UnityEngine_UIVertex__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIVertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CB1F0, UIVertex, Array_InternalEnumerator_1_UnityEngine_UIVertex__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIVertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UInt16___ctor, (Array_InternalEnumerator_1_UInt16___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UInt16__Dispose, (Array_InternalEnumerator_1_UInt16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UInt16__MoveNext, (Array_InternalEnumerator_1_UInt16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UInt16__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UInt16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CB600, Object *, Array_InternalEnumerator_1_UInt16__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UInt16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CB490, uint16_t, Array_InternalEnumerator_1_UInt16__get_Current, (Array_InternalEnumerator_1_UInt16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UInt16Enum___ctor, (Array_InternalEnumerator_1_UInt16Enum___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UInt16Enum__Dispose, (Array_InternalEnumerator_1_UInt16Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UInt16Enum__MoveNext, (Array_InternalEnumerator_1_UInt16Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UInt16Enum__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UInt16Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CB800, Object *, Array_InternalEnumerator_1_UInt16Enum__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UInt16Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CB690, UInt16Enum__Enum, Array_InternalEnumerator_1_UInt16Enum__get_Current, (Array_InternalEnumerator_1_UInt16Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UInt32___ctor, (Array_InternalEnumerator_1_UInt32___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UInt32__Dispose, (Array_InternalEnumerator_1_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UInt32__MoveNext, (Array_InternalEnumerator_1_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UInt32__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CBA00, Object *, Array_InternalEnumerator_1_UInt32__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CB890, uint32_t, Array_InternalEnumerator_1_UInt32__get_Current, (Array_InternalEnumerator_1_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UInt32Enum___ctor, (Array_InternalEnumerator_1_UInt32Enum___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UInt32Enum__Dispose, (Array_InternalEnumerator_1_UInt32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UInt32Enum__MoveNext, (Array_InternalEnumerator_1_UInt32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UInt32Enum__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UInt32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CBC00, Object *, Array_InternalEnumerator_1_UInt32Enum__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UInt32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CBA90, UInt32Enum__Enum, Array_InternalEnumerator_1_UInt32Enum__get_Current, (Array_InternalEnumerator_1_UInt32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UInt64___ctor, (Array_InternalEnumerator_1_UInt64___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UInt64__Dispose, (Array_InternalEnumerator_1_UInt64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UInt64__MoveNext, (Array_InternalEnumerator_1_UInt64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UInt64__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UInt64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CBE00, Object *, Array_InternalEnumerator_1_UInt64__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UInt64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CBC90, uint64_t, Array_InternalEnumerator_1_UInt64__get_Current, (Array_InternalEnumerator_1_UInt64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture___ctor, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__Dispose, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__MoveNext, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CC010, Object *, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CBE90, UVTexture, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__get_Current, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UdpKit_UdpChannelName___ctor, (Array_InternalEnumerator_1_UdpKit_UdpChannelName___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UdpKit_UdpChannelName__Dispose, (Array_InternalEnumerator_1_UdpKit_UdpChannelName___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UdpKit_UdpChannelName__MoveNext, (Array_InternalEnumerator_1_UdpKit_UdpChannelName___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UdpKit_UdpChannelName__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UdpKit_UdpChannelName___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CC220, Object *, Array_InternalEnumerator_1_UdpKit_UdpChannelName__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UdpKit_UdpChannelName___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CC0B0, UdpChannelName, Array_InternalEnumerator_1_UdpKit_UdpChannelName__get_Current, (Array_InternalEnumerator_1_UdpKit_UdpChannelName___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UdpKit_UdpEndPoint___ctor, (Array_InternalEnumerator_1_UdpKit_UdpEndPoint___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UdpKit_UdpEndPoint__Dispose, (Array_InternalEnumerator_1_UdpKit_UdpEndPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UdpKit_UdpEndPoint__MoveNext, (Array_InternalEnumerator_1_UdpKit_UdpEndPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UdpKit_UdpEndPoint__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UdpKit_UdpEndPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CC430, Object *, Array_InternalEnumerator_1_UdpKit_UdpEndPoint__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UdpKit_UdpEndPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CC2B0, UdpEndPoint, Array_InternalEnumerator_1_UdpKit_UdpEndPoint__get_Current, (Array_InternalEnumerator_1_UdpKit_UdpEndPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UdpKit_UdpEvent___ctor, (Array_InternalEnumerator_1_UdpKit_UdpEvent___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UdpKit_UdpEvent__Dispose, (Array_InternalEnumerator_1_UdpKit_UdpEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UdpKit_UdpEvent__MoveNext, (Array_InternalEnumerator_1_UdpKit_UdpEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UdpKit_UdpEvent__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UdpKit_UdpEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CC650, Object *, Array_InternalEnumerator_1_UdpKit_UdpEvent__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UdpKit_UdpEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CC4D0, UdpEvent, Array_InternalEnumerator_1_UdpKit_UdpEvent__get_Current, (Array_InternalEnumerator_1_UdpKit_UdpEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UdpKit_UdpIPv4Address___ctor, (Array_InternalEnumerator_1_UdpKit_UdpIPv4Address___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UdpKit_UdpIPv4Address__Dispose, (Array_InternalEnumerator_1_UdpKit_UdpIPv4Address___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UdpKit_UdpIPv4Address__MoveNext, (Array_InternalEnumerator_1_UdpKit_UdpIPv4Address___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UdpKit_UdpIPv4Address__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UdpKit_UdpIPv4Address___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CC860, Object *, Array_InternalEnumerator_1_UdpKit_UdpIPv4Address__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UdpKit_UdpIPv4Address___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CC6F0, UdpIPv4Address, Array_InternalEnumerator_1_UdpKit_UdpIPv4Address__get_Current, (Array_InternalEnumerator_1_UdpKit_UdpIPv4Address___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UdpKit_UdpPipeHandle___ctor, (Array_InternalEnumerator_1_UdpKit_UdpPipeHandle___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UdpKit_UdpPipeHandle__Dispose, (Array_InternalEnumerator_1_UdpKit_UdpPipeHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UdpKit_UdpPipeHandle__MoveNext, (Array_InternalEnumerator_1_UdpKit_UdpPipeHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UdpKit_UdpPipeHandle__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UdpKit_UdpPipeHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CCA60, Object *, Array_InternalEnumerator_1_UdpKit_UdpPipeHandle__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UdpKit_UdpPipeHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CC8F0, UdpPipeHandle, Array_InternalEnumerator_1_UdpKit_UdpPipeHandle__get_Current, (Array_InternalEnumerator_1_UdpKit_UdpPipeHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Photon_Bolt_UniqueId___ctor, (Array_InternalEnumerator_1_Photon_Bolt_UniqueId___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Photon_Bolt_UniqueId__Dispose, (Array_InternalEnumerator_1_Photon_Bolt_UniqueId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Photon_Bolt_UniqueId__MoveNext, (Array_InternalEnumerator_1_Photon_Bolt_UniqueId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Photon_Bolt_UniqueId__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Photon_Bolt_UniqueId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CCC60, Object *, Array_InternalEnumerator_1_Photon_Bolt_UniqueId__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Photon_Bolt_UniqueId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CCAF0, UniqueId, Array_InternalEnumerator_1_Photon_Bolt_UniqueId__get_Current, (Array_InternalEnumerator_1_Photon_Bolt_UniqueId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_XR_UsageHint___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_XR_UsageHint___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_XR_UsageHint__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_XR_UsageHint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_XR_UsageHint__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_XR_UsageHint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_XR_UsageHint__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_XR_UsageHint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CCE60, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_XR_UsageHint__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_XR_UsageHint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CCCF0, UsageHint, Array_InternalEnumerator_1_UnityEngine_InputSystem_XR_UsageHint__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_XR_UsageHint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Discord_User___ctor, (Array_InternalEnumerator_1_Discord_User___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Discord_User__Dispose, (Array_InternalEnumerator_1_Discord_User___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Discord_User__MoveNext, (Array_InternalEnumerator_1_Discord_User___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Discord_User__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Discord_User___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CD080, Object *, Array_InternalEnumerator_1_Discord_User__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Discord_User___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CCEF0, User, Array_InternalEnumerator_1_Discord_User__get_Current, (Array_InternalEnumerator_1_Discord_User___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Net_WebSockets_ValueWebSocketReceiveResult___ctor, (Array_InternalEnumerator_1_System_Net_WebSockets_ValueWebSocketReceiveResult___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Net_WebSockets_ValueWebSocketReceiveResult__Dispose, (Array_InternalEnumerator_1_System_Net_WebSockets_ValueWebSocketReceiveResult___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Net_WebSockets_ValueWebSocketReceiveResult__MoveNext, (Array_InternalEnumerator_1_System_Net_WebSockets_ValueWebSocketReceiveResult___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Net_WebSockets_ValueWebSocketReceiveResult__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Net_WebSockets_ValueWebSocketReceiveResult___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CD2A0, Object *, Array_InternalEnumerator_1_System_Net_WebSockets_ValueWebSocketReceiveResult__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Net_WebSockets_ValueWebSocketReceiveResult___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CD130, ValueWebSocketReceiveResult, Array_InternalEnumerator_1_System_Net_WebSockets_ValueWebSocketReceiveResult__get_Current, (Array_InternalEnumerator_1_System_Net_WebSockets_ValueWebSocketReceiveResult___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Vector2___ctor, (Array_InternalEnumerator_1_UnityEngine_Vector2___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Vector2__Dispose, (Array_InternalEnumerator_1_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Vector2__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Vector2__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CD4A0, Object *, Array_InternalEnumerator_1_UnityEngine_Vector2__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CD330, Vector2, Array_InternalEnumerator_1_UnityEngine_Vector2__get_Current, (Array_InternalEnumerator_1_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Vector2Int___ctor, (Array_InternalEnumerator_1_UnityEngine_Vector2Int___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Vector2Int__Dispose, (Array_InternalEnumerator_1_UnityEngine_Vector2Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Vector2Int__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Vector2Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Vector2Int__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Vector2Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CD6A0, Object *, Array_InternalEnumerator_1_UnityEngine_Vector2Int__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Vector2Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CD530, Vector2Int, Array_InternalEnumerator_1_UnityEngine_Vector2Int__get_Current, (Array_InternalEnumerator_1_UnityEngine_Vector2Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Vector3___ctor, (Array_InternalEnumerator_1_UnityEngine_Vector3___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Vector3__Dispose, (Array_InternalEnumerator_1_UnityEngine_Vector3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Vector3__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Vector3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Vector3__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Vector3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CD8B0, Object *, Array_InternalEnumerator_1_UnityEngine_Vector3__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Vector3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CD730, Vector3, Array_InternalEnumerator_1_UnityEngine_Vector3__get_Current, (Array_InternalEnumerator_1_UnityEngine_Vector3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Vector3Int___ctor, (Array_InternalEnumerator_1_UnityEngine_Vector3Int___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Vector3Int__Dispose, (Array_InternalEnumerator_1_UnityEngine_Vector3Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Vector3Int__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Vector3Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Vector3Int__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Vector3Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CDAD0, Object *, Array_InternalEnumerator_1_UnityEngine_Vector3Int__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Vector3Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CD950, Vector3Int, Array_InternalEnumerator_1_UnityEngine_Vector3Int__get_Current, (Array_InternalEnumerator_1_UnityEngine_Vector3Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UI_Extensions_Vector3_Array2D___ctor, (Array_InternalEnumerator_1_UnityEngine_UI_Extensions_Vector3_Array2D___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UI_Extensions_Vector3_Array2D__Dispose, (Array_InternalEnumerator_1_UnityEngine_UI_Extensions_Vector3_Array2D___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UI_Extensions_Vector3_Array2D__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UI_Extensions_Vector3_Array2D___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UI_Extensions_Vector3_Array2D__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UI_Extensions_Vector3_Array2D___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CDCE0, Object *, Array_InternalEnumerator_1_UnityEngine_UI_Extensions_Vector3_Array2D__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UI_Extensions_Vector3_Array2D___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CDB70, Vector3_Array2D, Array_InternalEnumerator_1_UnityEngine_UI_Extensions_Vector3_Array2D__get_Current, (Array_InternalEnumerator_1_UnityEngine_UI_Extensions_Vector3_Array2D___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Vector4___ctor, (Array_InternalEnumerator_1_UnityEngine_Vector4___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Vector4__Dispose, (Array_InternalEnumerator_1_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Vector4__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Vector4__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CDEE0, Object *, Array_InternalEnumerator_1_UnityEngine_Vector4__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CDD70, Vector4, Array_InternalEnumerator_1_UnityEngine_Vector4__get_Current, (Array_InternalEnumerator_1_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_VectorImageVertex___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_VectorImageVertex___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_VectorImageVertex__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_VectorImageVertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_VectorImageVertex__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_VectorImageVertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_VectorImageVertex__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_VectorImageVertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CE0F0, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_VectorImageVertex__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_VectorImageVertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CDF70, VectorImageVertex, Array_InternalEnumerator_1_UnityEngine_UIElements_VectorImageVertex__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_VectorImageVertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_Vertex___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_Vertex___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_Vertex__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_Vertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_Vertex__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_Vertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_Vertex__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_Vertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CE330, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_Vertex__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_Vertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CE190, Vertex, Array_InternalEnumerator_1_UnityEngine_UIElements_Vertex__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_Vertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_VertexAttributeDescriptor___ctor, (Array_InternalEnumerator_1_UnityEngine_Rendering_VertexAttributeDescriptor___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Rendering_VertexAttributeDescriptor__Dispose, (Array_InternalEnumerator_1_UnityEngine_Rendering_VertexAttributeDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Rendering_VertexAttributeDescriptor__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Rendering_VertexAttributeDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_VertexAttributeDescriptor__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Rendering_VertexAttributeDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CE560, Object *, Array_InternalEnumerator_1_UnityEngine_Rendering_VertexAttributeDescriptor__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_VertexAttributeDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CE3F0, VertexAttributeDescriptor, Array_InternalEnumerator_1_UnityEngine_Rendering_VertexAttributeDescriptor__get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_VertexAttributeDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_ViewConfiguration___ctor, (Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_ViewConfiguration___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_ViewConfiguration__Dispose, (Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_ViewConfiguration___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_ViewConfiguration__MoveNext, (Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_ViewConfiguration___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_ViewConfiguration__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_ViewConfiguration___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CE770, Object *, Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_ViewConfiguration__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_ViewConfiguration___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CE5F0, ViewConfiguration, Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_ViewConfiguration__get_Current, (Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_ViewConfiguration___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Dissonance_Networking_VoicePacket___ctor, (Array_InternalEnumerator_1_Dissonance_Networking_VoicePacket___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Dissonance_Networking_VoicePacket__Dispose, (Array_InternalEnumerator_1_Dissonance_Networking_VoicePacket___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Dissonance_Networking_VoicePacket__MoveNext, (Array_InternalEnumerator_1_Dissonance_Networking_VoicePacket___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Dissonance_Networking_VoicePacket__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Dissonance_Networking_VoicePacket___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CE9A0, Object *, Array_InternalEnumerator_1_Dissonance_Networking_VoicePacket__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Dissonance_Networking_VoicePacket___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CE810, VoicePacket, Array_InternalEnumerator_1_Dissonance_Networking_VoicePacket__get_Current, (Array_InternalEnumerator_1_Dissonance_Networking_VoicePacket___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Pathfinding_Voxels_VoxelCell___ctor, (Array_InternalEnumerator_1_Pathfinding_Voxels_VoxelCell___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Pathfinding_Voxels_VoxelCell__Dispose, (Array_InternalEnumerator_1_Pathfinding_Voxels_VoxelCell___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Pathfinding_Voxels_VoxelCell__MoveNext, (Array_InternalEnumerator_1_Pathfinding_Voxels_VoxelCell___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Pathfinding_Voxels_VoxelCell__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Pathfinding_Voxels_VoxelCell___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CEBD0, Object *, Array_InternalEnumerator_1_Pathfinding_Voxels_VoxelCell__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Pathfinding_Voxels_VoxelCell___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CEA60, VoxelCell, Array_InternalEnumerator_1_Pathfinding_Voxels_VoxelCell__get_Current, (Array_InternalEnumerator_1_Pathfinding_Voxels_VoxelCell___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Pathfinding_Voxels_VoxelContour___ctor, (Array_InternalEnumerator_1_Pathfinding_Voxels_VoxelContour___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Pathfinding_Voxels_VoxelContour__Dispose, (Array_InternalEnumerator_1_Pathfinding_Voxels_VoxelContour___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Pathfinding_Voxels_VoxelContour__MoveNext, (Array_InternalEnumerator_1_Pathfinding_Voxels_VoxelContour___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Pathfinding_Voxels_VoxelContour__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Pathfinding_Voxels_VoxelContour___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CEDE0, Object *, Array_InternalEnumerator_1_Pathfinding_Voxels_VoxelContour__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Pathfinding_Voxels_VoxelContour___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CEC60, VoxelContour, Array_InternalEnumerator_1_Pathfinding_Voxels_VoxelContour__get_Current, (Array_InternalEnumerator_1_Pathfinding_Voxels_VoxelContour___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES___ctor, (Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES__Dispose, (Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES__MoveNext, (Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CF060, Object *, Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CEE80, Win32_IP_ADAPTER_ADDRESSES, Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES__get_Current, (Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO___ctor, (Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO__Dispose, (Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO__MoveNext, (Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CF340, Object *, Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CF160, Win32_IP_ADAPTER_INFO, Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO__get_Current, (Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADDR_STRING___ctor, (Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADDR_STRING___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADDR_STRING__Dispose, (Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADDR_STRING___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADDR_STRING__MoveNext, (Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADDR_STRING___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADDR_STRING__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADDR_STRING___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CF5C0, Object *, Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADDR_STRING__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADDR_STRING___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CF440, Win32_IP_ADDR_STRING, Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADDR_STRING__get_Current, (Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADDR_STRING___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_WordInfo___ctor, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_WordInfo___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_WordInfo__Dispose, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_WordInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_WordInfo__MoveNext, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_WordInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_WordInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_WordInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CF7E0, Object *, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_WordInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_WordInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CF660, WordInfo, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_WordInfo__get_Current, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_WordInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_TMPro_WordWrapState___ctor, (Array_InternalEnumerator_1_TMPro_WordWrapState___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_TMPro_WordWrapState__Dispose, (Array_InternalEnumerator_1_TMPro_WordWrapState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_TMPro_WordWrapState__MoveNext, (Array_InternalEnumerator_1_TMPro_WordWrapState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_TMPro_WordWrapState__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_TMPro_WordWrapState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CFA90, Object *, Array_InternalEnumerator_1_TMPro_WordWrapState__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_TMPro_WordWrapState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CF880, WordWrapState, Array_InternalEnumerator_1_TMPro_WordWrapState__get_Current, (Array_InternalEnumerator_1_TMPro_WordWrapState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Security_Cryptography_X509Certificates_X509ChainStatus___ctor, (Array_InternalEnumerator_1_System_Security_Cryptography_X509Certificates_X509ChainStatus___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Security_Cryptography_X509Certificates_X509ChainStatus__Dispose, (Array_InternalEnumerator_1_System_Security_Cryptography_X509Certificates_X509ChainStatus___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Security_Cryptography_X509Certificates_X509ChainStatus__MoveNext, (Array_InternalEnumerator_1_System_Security_Cryptography_X509Certificates_X509ChainStatus___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Security_Cryptography_X509Certificates_X509ChainStatus__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Security_Cryptography_X509Certificates_X509ChainStatus___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CFD30, Object *, Array_InternalEnumerator_1_System_Security_Cryptography_X509Certificates_X509ChainStatus__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Security_Cryptography_X509Certificates_X509ChainStatus___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CFBC0, X509ChainStatus, Array_InternalEnumerator_1_System_Security_Cryptography_X509Certificates_X509ChainStatus__get_Current, (Array_InternalEnumerator_1_System_Security_Cryptography_X509Certificates_X509ChainStatus___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_MS_Internal_Xml_Cache_XPathNode___ctor, (Array_InternalEnumerator_1_MS_Internal_Xml_Cache_XPathNode___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_MS_Internal_Xml_Cache_XPathNode__Dispose, (Array_InternalEnumerator_1_MS_Internal_Xml_Cache_XPathNode___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_MS_Internal_Xml_Cache_XPathNode__MoveNext, (Array_InternalEnumerator_1_MS_Internal_Xml_Cache_XPathNode___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_MS_Internal_Xml_Cache_XPathNode__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_MS_Internal_Xml_Cache_XPathNode___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CFF40, Object *, Array_InternalEnumerator_1_MS_Internal_Xml_Cache_XPathNode__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_MS_Internal_Xml_Cache_XPathNode___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CFDC0, XPathNode, Array_InternalEnumerator_1_MS_Internal_Xml_Cache_XPathNode__get_Current, (Array_InternalEnumerator_1_MS_Internal_Xml_Cache_XPathNode___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_MS_Internal_Xml_Cache_XPathNodeRef___ctor, (Array_InternalEnumerator_1_MS_Internal_Xml_Cache_XPathNodeRef___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_MS_Internal_Xml_Cache_XPathNodeRef__Dispose, (Array_InternalEnumerator_1_MS_Internal_Xml_Cache_XPathNodeRef___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_MS_Internal_Xml_Cache_XPathNodeRef__MoveNext, (Array_InternalEnumerator_1_MS_Internal_Xml_Cache_XPathNodeRef___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_MS_Internal_Xml_Cache_XPathNodeRef__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_MS_Internal_Xml_Cache_XPathNodeRef___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D0150, Object *, Array_InternalEnumerator_1_MS_Internal_Xml_Cache_XPathNodeRef__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_MS_Internal_Xml_Cache_XPathNodeRef___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016CFFE0, XPathNodeRef, Array_InternalEnumerator_1_MS_Internal_Xml_Cache_XPathNodeRef__get_Current, (Array_InternalEnumerator_1_MS_Internal_Xml_Cache_XPathNodeRef___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRAnchor___ctor, (Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRAnchor___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRAnchor__Dispose, (Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRAnchor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRAnchor__MoveNext, (Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRAnchor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRAnchor__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRAnchor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D0380, Object *, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRAnchor__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRAnchor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D01E0, XRAnchor, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRAnchor__get_Current, (Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRAnchor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D05C0, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D0440, XRFeatureDescriptor, Array_InternalEnumerator_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_XR_XRNodeState___ctor, (Array_InternalEnumerator_1_UnityEngine_XR_XRNodeState___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_XR_XRNodeState__Dispose, (Array_InternalEnumerator_1_UnityEngine_XR_XRNodeState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_XR_XRNodeState__MoveNext, (Array_InternalEnumerator_1_UnityEngine_XR_XRNodeState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_XR_XRNodeState__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_XR_XRNodeState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D0810, Object *, Array_InternalEnumerator_1_UnityEngine_XR_XRNodeState__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_XR_XRNodeState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D0660, XRNodeState, Array_InternalEnumerator_1_UnityEngine_XR_XRNodeState__get_Current, (Array_InternalEnumerator_1_UnityEngine_XR_XRNodeState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRRaycast___ctor, (Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRRaycast___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRRaycast__Dispose, (Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRRaycast___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRRaycast__MoveNext, (Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRRaycast___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRRaycast__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRRaycast___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D0A80, Object *, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRRaycast__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRRaycast___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D08E0, XRRaycast, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRRaycast__get_Current, (Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRRaycast___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_XmlTagAttribute___ctor, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_XmlTagAttribute___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_XmlTagAttribute__Dispose, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_XmlTagAttribute___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_XmlTagAttribute__MoveNext, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_XmlTagAttribute___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_XmlTagAttribute__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_XmlTagAttribute___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D0CC0, Object *, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_XmlTagAttribute__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_XmlTagAttribute___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D0B40, XmlTagAttribute, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_XmlTagAttribute__get_Current, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_XmlTagAttribute___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_aOHEnKCFymegycPegEXPFUjlaUPpA___ctor, (Array_InternalEnumerator_1_aOHEnKCFymegycPegEXPFUjlaUPpA___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_aOHEnKCFymegycPegEXPFUjlaUPpA__Dispose, (Array_InternalEnumerator_1_aOHEnKCFymegycPegEXPFUjlaUPpA___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_aOHEnKCFymegycPegEXPFUjlaUPpA__MoveNext, (Array_InternalEnumerator_1_aOHEnKCFymegycPegEXPFUjlaUPpA___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_aOHEnKCFymegycPegEXPFUjlaUPpA__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_aOHEnKCFymegycPegEXPFUjlaUPpA___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D0ED0, Object *, Array_InternalEnumerator_1_aOHEnKCFymegycPegEXPFUjlaUPpA__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_aOHEnKCFymegycPegEXPFUjlaUPpA___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D0D60, aOHEnKCFymegycPegEXPFUjlaUPpA, Array_InternalEnumerator_1_aOHEnKCFymegycPegEXPFUjlaUPpA__get_Current, (Array_InternalEnumerator_1_aOHEnKCFymegycPegEXPFUjlaUPpA___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_aQHgSHeigtcamfIWbNaiXaCiVwuq___ctor, (Array_InternalEnumerator_1_aQHgSHeigtcamfIWbNaiXaCiVwuq___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__Dispose, (Array_InternalEnumerator_1_aQHgSHeigtcamfIWbNaiXaCiVwuq___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__MoveNext, (Array_InternalEnumerator_1_aQHgSHeigtcamfIWbNaiXaCiVwuq___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_aQHgSHeigtcamfIWbNaiXaCiVwuq___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D10D0, Object *, Array_InternalEnumerator_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_aQHgSHeigtcamfIWbNaiXaCiVwuq___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D0F60, aQHgSHeigtcamfIWbNaiXaCiVwuq, Array_InternalEnumerator_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__get_Current, (Array_InternalEnumerator_1_aQHgSHeigtcamfIWbNaiXaCiVwuq___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_jvalue___ctor, (Array_InternalEnumerator_1_UnityEngine_jvalue___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_jvalue__Dispose, (Array_InternalEnumerator_1_UnityEngine_jvalue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_jvalue__MoveNext, (Array_InternalEnumerator_1_UnityEngine_jvalue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_jvalue__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_jvalue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D12D0, Object *, Array_InternalEnumerator_1_UnityEngine_jvalue__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_jvalue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D1160, jvalue, Array_InternalEnumerator_1_UnityEngine_jvalue__get_Current, (Array_InternalEnumerator_1_UnityEngine_jvalue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_tSPvxZUJjzaTiAEejeAOLKctGpmKA___ctor, (Array_InternalEnumerator_1_tSPvxZUJjzaTiAEejeAOLKctGpmKA___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_tSPvxZUJjzaTiAEejeAOLKctGpmKA__Dispose, (Array_InternalEnumerator_1_tSPvxZUJjzaTiAEejeAOLKctGpmKA___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_tSPvxZUJjzaTiAEejeAOLKctGpmKA__MoveNext, (Array_InternalEnumerator_1_tSPvxZUJjzaTiAEejeAOLKctGpmKA___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_tSPvxZUJjzaTiAEejeAOLKctGpmKA__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_tSPvxZUJjzaTiAEejeAOLKctGpmKA___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D14D0, Object *, Array_InternalEnumerator_1_tSPvxZUJjzaTiAEejeAOLKctGpmKA__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_tSPvxZUJjzaTiAEejeAOLKctGpmKA___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D1360, tSPvxZUJjzaTiAEejeAOLKctGpmKA, Array_InternalEnumerator_1_tSPvxZUJjzaTiAEejeAOLKctGpmKA__get_Current, (Array_InternalEnumerator_1_tSPvxZUJjzaTiAEejeAOLKctGpmKA___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_yUgrsNEvLzxrXGzkHTUPIBJYGDah___ctor, (Array_InternalEnumerator_1_yUgrsNEvLzxrXGzkHTUPIBJYGDah___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_yUgrsNEvLzxrXGzkHTUPIBJYGDah__Dispose, (Array_InternalEnumerator_1_yUgrsNEvLzxrXGzkHTUPIBJYGDah___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_yUgrsNEvLzxrXGzkHTUPIBJYGDah__MoveNext, (Array_InternalEnumerator_1_yUgrsNEvLzxrXGzkHTUPIBJYGDah___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_yUgrsNEvLzxrXGzkHTUPIBJYGDah__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_yUgrsNEvLzxrXGzkHTUPIBJYGDah___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D16D0, Object *, Array_InternalEnumerator_1_yUgrsNEvLzxrXGzkHTUPIBJYGDah__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_yUgrsNEvLzxrXGzkHTUPIBJYGDah___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D1560, yUgrsNEvLzxrXGzkHTUPIBJYGDah, Array_InternalEnumerator_1_yUgrsNEvLzxrXGzkHTUPIBJYGDah__get_Current, (Array_InternalEnumerator_1_yUgrsNEvLzxrXGzkHTUPIBJYGDah___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_AIObjectPool_PreloadedPrefab___ctor, (Array_InternalEnumerator_1_AIObjectPool_PreloadedPrefab___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_AIObjectPool_PreloadedPrefab__Dispose, (Array_InternalEnumerator_1_AIObjectPool_PreloadedPrefab___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_AIObjectPool_PreloadedPrefab__MoveNext, (Array_InternalEnumerator_1_AIObjectPool_PreloadedPrefab___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_AIObjectPool_PreloadedPrefab__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_AIObjectPool_PreloadedPrefab___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D18D0, Object *, Array_InternalEnumerator_1_AIObjectPool_PreloadedPrefab__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_AIObjectPool_PreloadedPrefab___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D1760, AIObjectPool_PreloadedPrefab, Array_InternalEnumerator_1_AIObjectPool_PreloadedPrefab__get_Current, (Array_InternalEnumerator_1_AIObjectPool_PreloadedPrefab___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Pathfinding_AdvancedSmooth_Turn___ctor, (Array_InternalEnumerator_1_Pathfinding_AdvancedSmooth_Turn___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Pathfinding_AdvancedSmooth_Turn__Dispose, (Array_InternalEnumerator_1_Pathfinding_AdvancedSmooth_Turn___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Pathfinding_AdvancedSmooth_Turn__MoveNext, (Array_InternalEnumerator_1_Pathfinding_AdvancedSmooth_Turn___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Pathfinding_AdvancedSmooth_Turn__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Pathfinding_AdvancedSmooth_Turn___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D1AD0, Object *, Array_InternalEnumerator_1_Pathfinding_AdvancedSmooth_Turn__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Pathfinding_AdvancedSmooth_Turn___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D1960, AdvancedSmooth_Turn, Array_InternalEnumerator_1_Pathfinding_AdvancedSmooth_Turn__get_Current, (Array_InternalEnumerator_1_Pathfinding_AdvancedSmooth_Turn___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Pathfinding_RVO_Sampled_Agent_VO___ctor, (Array_InternalEnumerator_1_Pathfinding_RVO_Sampled_Agent_VO___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Pathfinding_RVO_Sampled_Agent_VO__Dispose, (Array_InternalEnumerator_1_Pathfinding_RVO_Sampled_Agent_VO___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Pathfinding_RVO_Sampled_Agent_VO__MoveNext, (Array_InternalEnumerator_1_Pathfinding_RVO_Sampled_Agent_VO___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Pathfinding_RVO_Sampled_Agent_VO__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Pathfinding_RVO_Sampled_Agent_VO___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D1D10, Object *, Array_InternalEnumerator_1_Pathfinding_RVO_Sampled_Agent_VO__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Pathfinding_RVO_Sampled_Agent_VO___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D1B60, Agent_VO, Array_InternalEnumerator_1_Pathfinding_RVO_Sampled_Agent_VO__get_Current, (Array_InternalEnumerator_1_Pathfinding_RVO_Sampled_Agent_VO___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo___ctor, (Array_InternalEnumerator_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo__Dispose, (Array_InternalEnumerator_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D1F70, Object *, Array_InternalEnumerator_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D1DE0, AnimationOutputWeightProcessor_WeightInfo, Array_InternalEnumerator_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo__get_Current, (Array_InternalEnumerator_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Pathfinding_AstarDebugger_GraphPoint___ctor, (Array_InternalEnumerator_1_Pathfinding_AstarDebugger_GraphPoint___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Pathfinding_AstarDebugger_GraphPoint__Dispose, (Array_InternalEnumerator_1_Pathfinding_AstarDebugger_GraphPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Pathfinding_AstarDebugger_GraphPoint__MoveNext, (Array_InternalEnumerator_1_Pathfinding_AstarDebugger_GraphPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Pathfinding_AstarDebugger_GraphPoint__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Pathfinding_AstarDebugger_GraphPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D21A0, Object *, Array_InternalEnumerator_1_Pathfinding_AstarDebugger_GraphPoint__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Pathfinding_AstarDebugger_GraphPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D2020, AstarDebugger_GraphPoint, Array_InternalEnumerator_1_Pathfinding_AstarDebugger_GraphPoint__get_Current, (Array_InternalEnumerator_1_Pathfinding_AstarDebugger_GraphPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Pathfinding_AstarDebugger_PathTypeDebug___ctor, (Array_InternalEnumerator_1_Pathfinding_AstarDebugger_PathTypeDebug___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Pathfinding_AstarDebugger_PathTypeDebug__Dispose, (Array_InternalEnumerator_1_Pathfinding_AstarDebugger_PathTypeDebug___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Pathfinding_AstarDebugger_PathTypeDebug__MoveNext, (Array_InternalEnumerator_1_Pathfinding_AstarDebugger_PathTypeDebug___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Pathfinding_AstarDebugger_PathTypeDebug__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Pathfinding_AstarDebugger_PathTypeDebug___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D23C0, Object *, Array_InternalEnumerator_1_Pathfinding_AstarDebugger_PathTypeDebug__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Pathfinding_AstarDebugger_PathTypeDebug___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D2240, AstarDebugger_PathTypeDebug, Array_InternalEnumerator_1_Pathfinding_AstarDebugger_PathTypeDebug__get_Current, (Array_InternalEnumerator_1_Pathfinding_AstarDebugger_PathTypeDebug___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_AtlasAllocatorDynamic_AtlasNode___ctor, (Array_InternalEnumerator_1_UnityEngine_Rendering_AtlasAllocatorDynamic_AtlasNode___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Rendering_AtlasAllocatorDynamic_AtlasNode__Dispose, (Array_InternalEnumerator_1_UnityEngine_Rendering_AtlasAllocatorDynamic_AtlasNode___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Rendering_AtlasAllocatorDynamic_AtlasNode__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Rendering_AtlasAllocatorDynamic_AtlasNode___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_AtlasAllocatorDynamic_AtlasNode__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Rendering_AtlasAllocatorDynamic_AtlasNode___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D25E0, Object *, Array_InternalEnumerator_1_UnityEngine_Rendering_AtlasAllocatorDynamic_AtlasNode__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_AtlasAllocatorDynamic_AtlasNode___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D2460, AtlasAllocatorDynamic_AtlasNode, Array_InternalEnumerator_1_UnityEngine_Rendering_AtlasAllocatorDynamic_AtlasNode__get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_AtlasAllocatorDynamic_AtlasNode___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_ComponentModel_AttributeCollection_AttributeEntry___ctor, (Array_InternalEnumerator_1_System_ComponentModel_AttributeCollection_AttributeEntry___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_ComponentModel_AttributeCollection_AttributeEntry__Dispose, (Array_InternalEnumerator_1_System_ComponentModel_AttributeCollection_AttributeEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_ComponentModel_AttributeCollection_AttributeEntry__MoveNext, (Array_InternalEnumerator_1_System_ComponentModel_AttributeCollection_AttributeEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_ComponentModel_AttributeCollection_AttributeEntry__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_ComponentModel_AttributeCollection_AttributeEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D27F0, Object *, Array_InternalEnumerator_1_System_ComponentModel_AttributeCollection_AttributeEntry__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_ComponentModel_AttributeCollection_AttributeEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D2680, AttributeCollection_AttributeEntry, Array_InternalEnumerator_1_System_ComponentModel_AttributeCollection_AttributeEntry__get_Current, (Array_InternalEnumerator_1_System_ComponentModel_AttributeCollection_AttributeEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Pathfinding_BBTree_BBTreeBox___ctor, (Array_InternalEnumerator_1_Pathfinding_BBTree_BBTreeBox___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Pathfinding_BBTree_BBTreeBox__Dispose, (Array_InternalEnumerator_1_Pathfinding_BBTree_BBTreeBox___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Pathfinding_BBTree_BBTreeBox__MoveNext, (Array_InternalEnumerator_1_Pathfinding_BBTree_BBTreeBox___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Pathfinding_BBTree_BBTreeBox__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Pathfinding_BBTree_BBTreeBox___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D2A00, Object *, Array_InternalEnumerator_1_Pathfinding_BBTree_BBTreeBox__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Pathfinding_BBTree_BBTreeBox___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D2880, BBTree_BBTreeBox, Array_InternalEnumerator_1_Pathfinding_BBTree_BBTreeBox__get_Current, (Array_InternalEnumerator_1_Pathfinding_BBTree_BBTreeBox___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D2C10, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D2AA0, BaseStyleMatcher_MatchContext, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_BeforeRenderHelper_OrderBlock___ctor, (Array_InternalEnumerator_1_UnityEngine_BeforeRenderHelper_OrderBlock___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_BeforeRenderHelper_OrderBlock__Dispose, (Array_InternalEnumerator_1_UnityEngine_BeforeRenderHelper_OrderBlock___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_BeforeRenderHelper_OrderBlock__MoveNext, (Array_InternalEnumerator_1_UnityEngine_BeforeRenderHelper_OrderBlock___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_BeforeRenderHelper_OrderBlock__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_BeforeRenderHelper_OrderBlock___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D2E10, Object *, Array_InternalEnumerator_1_UnityEngine_BeforeRenderHelper_OrderBlock__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_BeforeRenderHelper_OrderBlock___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D2CA0, BeforeRenderHelper_OrderBlock, Array_InternalEnumerator_1_UnityEngine_BeforeRenderHelper_OrderBlock__get_Current, (Array_InternalEnumerator_1_UnityEngine_BeforeRenderHelper_OrderBlock___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_CollisionResistanceMultiplier___ctor, (Array_InternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_CollisionResistanceMultiplier___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_CollisionResistanceMultiplier__Dispose, (Array_InternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_CollisionResistanceMultiplier___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_CollisionResistanceMultiplier__MoveNext, (Array_InternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_CollisionResistanceMultiplier___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_CollisionResistanceMultiplier__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_CollisionResistanceMultiplier___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D3020, Object *, Array_InternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_CollisionResistanceMultiplier__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_CollisionResistanceMultiplier___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D2EA0, BehaviourPuppet_CollisionResistanceMultiplier, Array_InternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_CollisionResistanceMultiplier__get_Current, (Array_InternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_CollisionResistanceMultiplier___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_MusclePropsGroup___ctor, (Array_InternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_MusclePropsGroup___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_MusclePropsGroup__Dispose, (Array_InternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_MusclePropsGroup___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_MusclePropsGroup__MoveNext, (Array_InternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_MusclePropsGroup___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_MusclePropsGroup__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_MusclePropsGroup___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D3260, Object *, Array_InternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_MusclePropsGroup__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_MusclePropsGroup___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D30C0, BehaviourPuppet_MusclePropsGroup, Array_InternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_MusclePropsGroup__get_Current, (Array_InternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_MusclePropsGroup___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Pathfinding_BinaryHeap_Tuple___ctor, (Array_InternalEnumerator_1_Pathfinding_BinaryHeap_Tuple___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Pathfinding_BinaryHeap_Tuple__Dispose, (Array_InternalEnumerator_1_Pathfinding_BinaryHeap_Tuple___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Pathfinding_BinaryHeap_Tuple__MoveNext, (Array_InternalEnumerator_1_Pathfinding_BinaryHeap_Tuple___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Pathfinding_BinaryHeap_Tuple__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Pathfinding_BinaryHeap_Tuple___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D3490, Object *, Array_InternalEnumerator_1_Pathfinding_BinaryHeap_Tuple__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Pathfinding_BinaryHeap_Tuple___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D3320, BinaryHeap_Tuple, Array_InternalEnumerator_1_Pathfinding_BinaryHeap_Tuple__get_Current, (Array_InternalEnumerator_1_Pathfinding_BinaryHeap_Tuple___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D3690, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D3520, BitmapAllocator32_Page, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_PostProcessing_BloomRenderer_Level___ctor, (Array_InternalEnumerator_1_UnityEngine_Rendering_PostProcessing_BloomRenderer_Level___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Rendering_PostProcessing_BloomRenderer_Level__Dispose, (Array_InternalEnumerator_1_UnityEngine_Rendering_PostProcessing_BloomRenderer_Level___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Rendering_PostProcessing_BloomRenderer_Level__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Rendering_PostProcessing_BloomRenderer_Level___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_PostProcessing_BloomRenderer_Level__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Rendering_PostProcessing_BloomRenderer_Level___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D3890, Object *, Array_InternalEnumerator_1_UnityEngine_Rendering_PostProcessing_BloomRenderer_Level__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_PostProcessing_BloomRenderer_Level___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D3720, BloomRenderer_Level, Array_InternalEnumerator_1_UnityEngine_Rendering_PostProcessing_BloomRenderer_Level__get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_PostProcessing_BloomRenderer_Level___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Photon_Bolt_Utils_BoltConsole_Line___ctor, (Array_InternalEnumerator_1_Photon_Bolt_Utils_BoltConsole_Line___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Photon_Bolt_Utils_BoltConsole_Line__Dispose, (Array_InternalEnumerator_1_Photon_Bolt_Utils_BoltConsole_Line___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Photon_Bolt_Utils_BoltConsole_Line__MoveNext, (Array_InternalEnumerator_1_Photon_Bolt_Utils_BoltConsole_Line___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Photon_Bolt_Utils_BoltConsole_Line__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Photon_Bolt_Utils_BoltConsole_Line___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D3AA0, Object *, Array_InternalEnumerator_1_Photon_Bolt_Utils_BoltConsole_Line__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Photon_Bolt_Utils_BoltConsole_Line___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D3920, BoltConsole_Line, Array_InternalEnumerator_1_Photon_Bolt_Utils_BoltConsole_Line__get_Current, (Array_InternalEnumerator_1_Photon_Bolt_Utils_BoltConsole_Line___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Photon_Bolt_Tokens_BoltProtocolTokenRegistry_TokenRegistry___ctor, (Array_InternalEnumerator_1_Photon_Bolt_Tokens_BoltProtocolTokenRegistry_TokenRegistry___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Photon_Bolt_Tokens_BoltProtocolTokenRegistry_TokenRegistry__Dispose, (Array_InternalEnumerator_1_Photon_Bolt_Tokens_BoltProtocolTokenRegistry_TokenRegistry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Photon_Bolt_Tokens_BoltProtocolTokenRegistry_TokenRegistry__MoveNext, (Array_InternalEnumerator_1_Photon_Bolt_Tokens_BoltProtocolTokenRegistry_TokenRegistry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Photon_Bolt_Tokens_BoltProtocolTokenRegistry_TokenRegistry__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Photon_Bolt_Tokens_BoltProtocolTokenRegistry_TokenRegistry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D3CB0, Object *, Array_InternalEnumerator_1_Photon_Bolt_Tokens_BoltProtocolTokenRegistry_TokenRegistry__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Photon_Bolt_Tokens_BoltProtocolTokenRegistry_TokenRegistry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D3B40, BoltProtocolTokenRegistry_TokenRegistry, Array_InternalEnumerator_1_Photon_Bolt_Tokens_BoltProtocolTokenRegistry_TokenRegistry__get_Current, (Array_InternalEnumerator_1_Photon_Bolt_Tokens_BoltProtocolTokenRegistry_TokenRegistry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Globalization_CalendricalCalculationsHelper_EphemerisCorrectionAlgorithmMap___ctor, (Array_InternalEnumerator_1_System_Globalization_CalendricalCalculationsHelper_EphemerisCorrectionAlgorithmMap___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Globalization_CalendricalCalculationsHelper_EphemerisCorrectionAlgorithmMap__Dispose, (Array_InternalEnumerator_1_System_Globalization_CalendricalCalculationsHelper_EphemerisCorrectionAlgorithmMap___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Globalization_CalendricalCalculationsHelper_EphemerisCorrectionAlgorithmMap__MoveNext, (Array_InternalEnumerator_1_System_Globalization_CalendricalCalculationsHelper_EphemerisCorrectionAlgorithmMap___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Globalization_CalendricalCalculationsHelper_EphemerisCorrectionAlgorithmMap__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Globalization_CalendricalCalculationsHelper_EphemerisCorrectionAlgorithmMap___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D3EB0, Object *, Array_InternalEnumerator_1_System_Globalization_CalendricalCalculationsHelper_EphemerisCorrectionAlgorithmMap__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Globalization_CalendricalCalculationsHelper_EphemerisCorrectionAlgorithmMap___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D3D40, CalendricalCalculationsHelper_EphemerisCorrectionAlgorithmMap, Array_InternalEnumerator_1_System_Globalization_CalendricalCalculationsHelper_EphemerisCorrectionAlgorithmMap__get_Current, (Array_InternalEnumerator_1_System_Globalization_CalendricalCalculationsHelper_EphemerisCorrectionAlgorithmMap___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Camera_RenderRequest___ctor, (Array_InternalEnumerator_1_UnityEngine_Camera_RenderRequest___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Camera_RenderRequest__Dispose, (Array_InternalEnumerator_1_UnityEngine_Camera_RenderRequest___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Camera_RenderRequest__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Camera_RenderRequest___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Camera_RenderRequest__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Camera_RenderRequest___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D40C0, Object *, Array_InternalEnumerator_1_UnityEngine_Camera_RenderRequest__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Camera_RenderRequest___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D3F40, Camera_RenderRequest, Array_InternalEnumerator_1_UnityEngine_Camera_RenderRequest__get_Current, (Array_InternalEnumerator_1_UnityEngine_Camera_RenderRequest___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Cinemachine_CameraState_CustomBlendable___ctor, (Array_InternalEnumerator_1_Cinemachine_CameraState_CustomBlendable___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Cinemachine_CameraState_CustomBlendable__Dispose, (Array_InternalEnumerator_1_Cinemachine_CameraState_CustomBlendable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Cinemachine_CameraState_CustomBlendable__MoveNext, (Array_InternalEnumerator_1_Cinemachine_CameraState_CustomBlendable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Cinemachine_CameraState_CustomBlendable__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Cinemachine_CameraState_CustomBlendable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D42D0, Object *, Array_InternalEnumerator_1_Cinemachine_CameraState_CustomBlendable__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Cinemachine_CameraState_CustomBlendable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D4160, CameraState_CustomBlendable, Array_InternalEnumerator_1_Cinemachine_CameraState_CustomBlendable__get_Current, (Array_InternalEnumerator_1_Cinemachine_CameraState_CustomBlendable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_Foot___ctor, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_Foot___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_Foot__Dispose, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_Foot___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_Foot__MoveNext, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_Foot___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_Foot__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_Foot___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D44D0, Object *, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_Foot__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_Foot___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D4360, CharacterFootEffects_Foot, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_Foot__get_Current, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_Foot___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Cinemachine_CinemachineBlendListCamera_Instruction___ctor, (Array_InternalEnumerator_1_Cinemachine_CinemachineBlendListCamera_Instruction___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Cinemachine_CinemachineBlendListCamera_Instruction__Dispose, (Array_InternalEnumerator_1_Cinemachine_CinemachineBlendListCamera_Instruction___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Cinemachine_CinemachineBlendListCamera_Instruction__MoveNext, (Array_InternalEnumerator_1_Cinemachine_CinemachineBlendListCamera_Instruction___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Cinemachine_CinemachineBlendListCamera_Instruction__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Cinemachine_CinemachineBlendListCamera_Instruction___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D46E0, Object *, Array_InternalEnumerator_1_Cinemachine_CinemachineBlendListCamera_Instruction__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Cinemachine_CinemachineBlendListCamera_Instruction___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D4560, CinemachineBlendListCamera_Instruction, Array_InternalEnumerator_1_Cinemachine_CinemachineBlendListCamera_Instruction__get_Current, (Array_InternalEnumerator_1_Cinemachine_CinemachineBlendListCamera_Instruction___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Cinemachine_CinemachineBlenderSettings_CustomBlend___ctor, (Array_InternalEnumerator_1_Cinemachine_CinemachineBlenderSettings_CustomBlend___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Cinemachine_CinemachineBlenderSettings_CustomBlend__Dispose, (Array_InternalEnumerator_1_Cinemachine_CinemachineBlenderSettings_CustomBlend___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Cinemachine_CinemachineBlenderSettings_CustomBlend__MoveNext, (Array_InternalEnumerator_1_Cinemachine_CinemachineBlenderSettings_CustomBlend___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Cinemachine_CinemachineBlenderSettings_CustomBlend__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Cinemachine_CinemachineBlenderSettings_CustomBlend___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D4900, Object *, Array_InternalEnumerator_1_Cinemachine_CinemachineBlenderSettings_CustomBlend__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Cinemachine_CinemachineBlenderSettings_CustomBlend___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D4780, CinemachineBlenderSettings_CustomBlend, Array_InternalEnumerator_1_Cinemachine_CinemachineBlenderSettings_CustomBlend__get_Current, (Array_InternalEnumerator_1_Cinemachine_CinemachineBlenderSettings_CustomBlend___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Cinemachine_CinemachineClearShot_Pair___ctor, (Array_InternalEnumerator_1_Cinemachine_CinemachineClearShot_Pair___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Cinemachine_CinemachineClearShot_Pair__Dispose, (Array_InternalEnumerator_1_Cinemachine_CinemachineClearShot_Pair___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Cinemachine_CinemachineClearShot_Pair__MoveNext, (Array_InternalEnumerator_1_Cinemachine_CinemachineClearShot_Pair___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Cinemachine_CinemachineClearShot_Pair__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Cinemachine_CinemachineClearShot_Pair___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D4B10, Object *, Array_InternalEnumerator_1_Cinemachine_CinemachineClearShot_Pair__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Cinemachine_CinemachineClearShot_Pair___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D49A0, CinemachineClearShot_Pair, Array_InternalEnumerator_1_Cinemachine_CinemachineClearShot_Pair__get_Current, (Array_InternalEnumerator_1_Cinemachine_CinemachineClearShot_Pair___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Cinemachine_CinemachineFreeLook_Orbit___ctor, (Array_InternalEnumerator_1_Cinemachine_CinemachineFreeLook_Orbit___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Cinemachine_CinemachineFreeLook_Orbit__Dispose, (Array_InternalEnumerator_1_Cinemachine_CinemachineFreeLook_Orbit___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Cinemachine_CinemachineFreeLook_Orbit__MoveNext, (Array_InternalEnumerator_1_Cinemachine_CinemachineFreeLook_Orbit___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Cinemachine_CinemachineFreeLook_Orbit__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Cinemachine_CinemachineFreeLook_Orbit___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D4D10, Object *, Array_InternalEnumerator_1_Cinemachine_CinemachineFreeLook_Orbit__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Cinemachine_CinemachineFreeLook_Orbit___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D4BA0, CinemachineFreeLook_Orbit, Array_InternalEnumerator_1_Cinemachine_CinemachineFreeLook_Orbit__get_Current, (Array_InternalEnumerator_1_Cinemachine_CinemachineFreeLook_Orbit___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Cinemachine_CinemachinePath_Waypoint___ctor, (Array_InternalEnumerator_1_Cinemachine_CinemachinePath_Waypoint___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Cinemachine_CinemachinePath_Waypoint__Dispose, (Array_InternalEnumerator_1_Cinemachine_CinemachinePath_Waypoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Cinemachine_CinemachinePath_Waypoint__MoveNext, (Array_InternalEnumerator_1_Cinemachine_CinemachinePath_Waypoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Cinemachine_CinemachinePath_Waypoint__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Cinemachine_CinemachinePath_Waypoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D4F20, Object *, Array_InternalEnumerator_1_Cinemachine_CinemachinePath_Waypoint__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Cinemachine_CinemachinePath_Waypoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D4DA0, CinemachinePath_Waypoint, Array_InternalEnumerator_1_Cinemachine_CinemachinePath_Waypoint__get_Current, (Array_InternalEnumerator_1_Cinemachine_CinemachinePath_Waypoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Cinemachine_CinemachineSmoothPath_Waypoint___ctor, (Array_InternalEnumerator_1_Cinemachine_CinemachineSmoothPath_Waypoint___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Cinemachine_CinemachineSmoothPath_Waypoint__Dispose, (Array_InternalEnumerator_1_Cinemachine_CinemachineSmoothPath_Waypoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Cinemachine_CinemachineSmoothPath_Waypoint__MoveNext, (Array_InternalEnumerator_1_Cinemachine_CinemachineSmoothPath_Waypoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Cinemachine_CinemachineSmoothPath_Waypoint__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Cinemachine_CinemachineSmoothPath_Waypoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D5130, Object *, Array_InternalEnumerator_1_Cinemachine_CinemachineSmoothPath_Waypoint__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Cinemachine_CinemachineSmoothPath_Waypoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D4FC0, CinemachineSmoothPath_Waypoint, Array_InternalEnumerator_1_Cinemachine_CinemachineSmoothPath_Waypoint__get_Current, (Array_InternalEnumerator_1_Cinemachine_CinemachineSmoothPath_Waypoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_HashPair___ctor, (Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_HashPair___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_HashPair__Dispose, (Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_HashPair___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_HashPair__MoveNext, (Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_HashPair___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_HashPair__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_HashPair___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D5330, Object *, Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_HashPair__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_HashPair___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D51C0, CinemachineStateDrivenCamera_HashPair, Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_HashPair__get_Current, (Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_HashPair___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_Instruction___ctor, (Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_Instruction___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_Instruction__Dispose, (Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_Instruction___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_Instruction__MoveNext, (Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_Instruction___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_Instruction__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_Instruction___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D5540, Object *, Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_Instruction__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_Instruction___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D53C0, CinemachineStateDrivenCamera_Instruction, Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_Instruction__get_Current, (Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_Instruction___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_ParentHash___ctor, (Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_ParentHash___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_ParentHash__Dispose, (Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_ParentHash___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_ParentHash__MoveNext, (Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_ParentHash___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_ParentHash__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_ParentHash___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D5750, Object *, Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_ParentHash__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_ParentHash___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D55E0, CinemachineStateDrivenCamera_ParentHash, Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_ParentHash__get_Current, (Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_ParentHash___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Cinemachine_CinemachineTargetGroup_Target___ctor, (Array_InternalEnumerator_1_Cinemachine_CinemachineTargetGroup_Target___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Cinemachine_CinemachineTargetGroup_Target__Dispose, (Array_InternalEnumerator_1_Cinemachine_CinemachineTargetGroup_Target___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Cinemachine_CinemachineTargetGroup_Target__MoveNext, (Array_InternalEnumerator_1_Cinemachine_CinemachineTargetGroup_Target___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Cinemachine_CinemachineTargetGroup_Target__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Cinemachine_CinemachineTargetGroup_Target___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D5950, Object *, Array_InternalEnumerator_1_Cinemachine_CinemachineTargetGroup_Target__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Cinemachine_CinemachineTargetGroup_Target___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D57E0, CinemachineTargetGroup_Target, Array_InternalEnumerator_1_Cinemachine_CinemachineTargetGroup_Target__get_Current, (Array_InternalEnumerator_1_Cinemachine_CinemachineTargetGroup_Target___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Cinemachine_ClipperLib_DoublePoint___ctor, (Array_InternalEnumerator_1_Cinemachine_ClipperLib_DoublePoint___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Cinemachine_ClipperLib_DoublePoint__Dispose, (Array_InternalEnumerator_1_Cinemachine_ClipperLib_DoublePoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Cinemachine_ClipperLib_DoublePoint__MoveNext, (Array_InternalEnumerator_1_Cinemachine_ClipperLib_DoublePoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Cinemachine_ClipperLib_DoublePoint__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Cinemachine_ClipperLib_DoublePoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D5B50, Object *, Array_InternalEnumerator_1_Cinemachine_ClipperLib_DoublePoint__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Cinemachine_ClipperLib_DoublePoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D59E0, ClipperLib_DoublePoint, Array_InternalEnumerator_1_Cinemachine_ClipperLib_DoublePoint__get_Current, (Array_InternalEnumerator_1_Cinemachine_ClipperLib_DoublePoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Cinemachine_ClipperLib_IntPoint___ctor, (Array_InternalEnumerator_1_Cinemachine_ClipperLib_IntPoint___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Cinemachine_ClipperLib_IntPoint__Dispose, (Array_InternalEnumerator_1_Cinemachine_ClipperLib_IntPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Cinemachine_ClipperLib_IntPoint__MoveNext, (Array_InternalEnumerator_1_Cinemachine_ClipperLib_IntPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Cinemachine_ClipperLib_IntPoint__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Cinemachine_ClipperLib_IntPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D5D50, Object *, Array_InternalEnumerator_1_Cinemachine_ClipperLib_IntPoint__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Cinemachine_ClipperLib_IntPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D5BE0, ClipperLib_IntPoint, Array_InternalEnumerator_1_Cinemachine_ClipperLib_IntPoint__get_Current, (Array_InternalEnumerator_1_Cinemachine_ClipperLib_IntPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Mono_Globalization_Unicode_CodePointIndexer_TableRange___ctor, (Array_InternalEnumerator_1_Mono_Globalization_Unicode_CodePointIndexer_TableRange___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Mono_Globalization_Unicode_CodePointIndexer_TableRange__Dispose, (Array_InternalEnumerator_1_Mono_Globalization_Unicode_CodePointIndexer_TableRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Mono_Globalization_Unicode_CodePointIndexer_TableRange__MoveNext, (Array_InternalEnumerator_1_Mono_Globalization_Unicode_CodePointIndexer_TableRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Mono_Globalization_Unicode_CodePointIndexer_TableRange__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Mono_Globalization_Unicode_CodePointIndexer_TableRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D5F60, Object *, Array_InternalEnumerator_1_Mono_Globalization_Unicode_CodePointIndexer_TableRange__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Mono_Globalization_Unicode_CodePointIndexer_TableRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D5DE0, CodePointIndexer_TableRange, Array_InternalEnumerator_1_Mono_Globalization_Unicode_CodePointIndexer_TableRange__get_Current, (Array_InternalEnumerator_1_Mono_Globalization_Unicode_CodePointIndexer_TableRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Character_Abilities_Starters_ComboTimeout_ComboInputElement___ctor, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Character_Abilities_Starters_ComboTimeout_ComboInputElement___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Character_Abilities_Starters_ComboTimeout_ComboInputElement__Dispose, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Character_Abilities_Starters_ComboTimeout_ComboInputElement___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Character_Abilities_Starters_ComboTimeout_ComboInputElement__MoveNext, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Character_Abilities_Starters_ComboTimeout_ComboInputElement___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Character_Abilities_Starters_ComboTimeout_ComboInputElement__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Character_Abilities_Starters_ComboTimeout_ComboInputElement___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D6170, Object *, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Character_Abilities_Starters_ComboTimeout_ComboInputElement__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Character_Abilities_Starters_ComboTimeout_ComboInputElement___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D6000, ComboTimeout_ComboInputElement, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Character_Abilities_Starters_ComboTimeout_ComboInputElement__get_Current, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Character_Abilities_Starters_ComboTimeout_ComboInputElement___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Cinemachine_ConfinerOven_PolygonSolution___ctor, (Array_InternalEnumerator_1_Cinemachine_ConfinerOven_PolygonSolution___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Cinemachine_ConfinerOven_PolygonSolution__Dispose, (Array_InternalEnumerator_1_Cinemachine_ConfinerOven_PolygonSolution___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Cinemachine_ConfinerOven_PolygonSolution__MoveNext, (Array_InternalEnumerator_1_Cinemachine_ConfinerOven_PolygonSolution___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Cinemachine_ConfinerOven_PolygonSolution__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Cinemachine_ConfinerOven_PolygonSolution___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D6370, Object *, Array_InternalEnumerator_1_Cinemachine_ConfinerOven_PolygonSolution__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Cinemachine_ConfinerOven_PolygonSolution___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D6200, ConfinerOven_PolygonSolution, Array_InternalEnumerator_1_Cinemachine_ConfinerOven_PolygonSolution__get_Current, (Array_InternalEnumerator_1_Cinemachine_ConfinerOven_PolygonSolution___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_AddressableAssets_ResourceLocators_ContentCatalogData_Bucket___ctor, (Array_InternalEnumerator_1_UnityEngine_AddressableAssets_ResourceLocators_ContentCatalogData_Bucket___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_AddressableAssets_ResourceLocators_ContentCatalogData_Bucket__Dispose, (Array_InternalEnumerator_1_UnityEngine_AddressableAssets_ResourceLocators_ContentCatalogData_Bucket___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_AddressableAssets_ResourceLocators_ContentCatalogData_Bucket__MoveNext, (Array_InternalEnumerator_1_UnityEngine_AddressableAssets_ResourceLocators_ContentCatalogData_Bucket___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_AddressableAssets_ResourceLocators_ContentCatalogData_Bucket__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_AddressableAssets_ResourceLocators_ContentCatalogData_Bucket___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D6570, Object *, Array_InternalEnumerator_1_UnityEngine_AddressableAssets_ResourceLocators_ContentCatalogData_Bucket__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_AddressableAssets_ResourceLocators_ContentCatalogData_Bucket___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D6400, ContentCatalogData_Bucket, Array_InternalEnumerator_1_UnityEngine_AddressableAssets_ResourceLocators_ContentCatalogData_Bucket__get_Current, (Array_InternalEnumerator_1_UnityEngine_AddressableAssets_ResourceLocators_ContentCatalogData_Bucket___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Net_ContextFlagsAdapterPal_ContextFlagMapping___ctor, (Array_InternalEnumerator_1_System_Net_ContextFlagsAdapterPal_ContextFlagMapping___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Net_ContextFlagsAdapterPal_ContextFlagMapping__Dispose, (Array_InternalEnumerator_1_System_Net_ContextFlagsAdapterPal_ContextFlagMapping___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Net_ContextFlagsAdapterPal_ContextFlagMapping__MoveNext, (Array_InternalEnumerator_1_System_Net_ContextFlagsAdapterPal_ContextFlagMapping___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Net_ContextFlagsAdapterPal_ContextFlagMapping__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Net_ContextFlagsAdapterPal_ContextFlagMapping___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D6770, Object *, Array_InternalEnumerator_1_System_Net_ContextFlagsAdapterPal_ContextFlagMapping__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Net_ContextFlagsAdapterPal_ContextFlagMapping___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D6600, ContextFlagsAdapterPal_ContextFlagMapping, Array_InternalEnumerator_1_System_Net_ContextFlagsAdapterPal_ContextFlagMapping__get_Current, (Array_InternalEnumerator_1_System_Net_ContextFlagsAdapterPal_ContextFlagMapping___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Net_CookieTokenizer_RecognizedAttribute___ctor, (Array_InternalEnumerator_1_System_Net_CookieTokenizer_RecognizedAttribute___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Net_CookieTokenizer_RecognizedAttribute__Dispose, (Array_InternalEnumerator_1_System_Net_CookieTokenizer_RecognizedAttribute___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Net_CookieTokenizer_RecognizedAttribute__MoveNext, (Array_InternalEnumerator_1_System_Net_CookieTokenizer_RecognizedAttribute___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Net_CookieTokenizer_RecognizedAttribute__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Net_CookieTokenizer_RecognizedAttribute___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D6970, Object *, Array_InternalEnumerator_1_System_Net_CookieTokenizer_RecognizedAttribute__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Net_CookieTokenizer_RecognizedAttribute___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D6800, CookieTokenizer_RecognizedAttribute, Array_InternalEnumerator_1_System_Net_CookieTokenizer_RecognizedAttribute__get_Current, (Array_InternalEnumerator_1_System_Net_CookieTokenizer_RecognizedAttribute___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB___ctor, (Array_InternalEnumerator_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__Dispose, (Array_InternalEnumerator_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__MoveNext, (Array_InternalEnumerator_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D6B80, Object *, Array_InternalEnumerator_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D6A00, CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB, Array_InternalEnumerator_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__get_Current, (Array_InternalEnumerator_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator___ctor, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator__Dispose, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator__MoveNext, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D6DB0, Object *, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D6C20, DamageIndicatorMonitor_DamageIndicator, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator__get_Current, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo___ctor, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__Dispose, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__MoveNext, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D6FF0, Object *, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D6E70, DelayedActionManager_DelegateInfo, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__get_Current, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_DynamicResolutionHandler_ScalerContainer___ctor, (Array_InternalEnumerator_1_UnityEngine_Rendering_DynamicResolutionHandler_ScalerContainer___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Rendering_DynamicResolutionHandler_ScalerContainer__Dispose, (Array_InternalEnumerator_1_UnityEngine_Rendering_DynamicResolutionHandler_ScalerContainer___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Rendering_DynamicResolutionHandler_ScalerContainer__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Rendering_DynamicResolutionHandler_ScalerContainer___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_DynamicResolutionHandler_ScalerContainer__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Rendering_DynamicResolutionHandler_ScalerContainer___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D7200, Object *, Array_InternalEnumerator_1_UnityEngine_Rendering_DynamicResolutionHandler_ScalerContainer__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_DynamicResolutionHandler_ScalerContainer___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D7090, DynamicResolutionHandler_ScalerContainer, Array_InternalEnumerator_1_UnityEngine_Rendering_DynamicResolutionHandler_ScalerContainer__get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_DynamicResolutionHandler_ScalerContainer___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Photon_Bolt_EventDispatcher_CallbackWrapper___ctor, (Array_InternalEnumerator_1_Photon_Bolt_EventDispatcher_CallbackWrapper___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Photon_Bolt_EventDispatcher_CallbackWrapper__Dispose, (Array_InternalEnumerator_1_Photon_Bolt_EventDispatcher_CallbackWrapper___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Photon_Bolt_EventDispatcher_CallbackWrapper__MoveNext, (Array_InternalEnumerator_1_Photon_Bolt_EventDispatcher_CallbackWrapper___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Photon_Bolt_EventDispatcher_CallbackWrapper__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Photon_Bolt_EventDispatcher_CallbackWrapper___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D7400, Object *, Array_InternalEnumerator_1_Photon_Bolt_EventDispatcher_CallbackWrapper__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Photon_Bolt_EventDispatcher_CallbackWrapper___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D7290, EventDispatcher_CallbackWrapper, Array_InternalEnumerator_1_Photon_Bolt_EventDispatcher_CallbackWrapper__get_Current, (Array_InternalEnumerator_1_Photon_Bolt_EventDispatcher_CallbackWrapper___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Photon_Bolt_EventDispatcher_EventListener___ctor, (Array_InternalEnumerator_1_Photon_Bolt_EventDispatcher_EventListener___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Photon_Bolt_EventDispatcher_EventListener__Dispose, (Array_InternalEnumerator_1_Photon_Bolt_EventDispatcher_EventListener___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Photon_Bolt_EventDispatcher_EventListener__MoveNext, (Array_InternalEnumerator_1_Photon_Bolt_EventDispatcher_EventListener___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Photon_Bolt_EventDispatcher_EventListener__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Photon_Bolt_EventDispatcher_EventListener___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D7610, Object *, Array_InternalEnumerator_1_Photon_Bolt_EventDispatcher_EventListener__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Photon_Bolt_EventDispatcher_EventListener___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D7490, EventDispatcher_EventListener, Array_InternalEnumerator_1_Photon_Bolt_EventDispatcher_EventListener__get_Current, (Array_InternalEnumerator_1_Photon_Bolt_EventDispatcher_EventListener___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_DispatchContext___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_DispatchContext___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_DispatchContext__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_DispatchContext___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_DispatchContext__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_DispatchContext___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_DispatchContext__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_DispatchContext___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D7820, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_DispatchContext__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_DispatchContext___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D76B0, EventDispatcher_DispatchContext, Array_InternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_DispatchContext__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_DispatchContext___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_EventRecord___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_EventRecord___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_EventRecord__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_EventRecord___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_EventRecord__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_EventRecord___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_EventRecord__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_EventRecord___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D7A20, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_EventRecord__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_EventRecord___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D78B0, EventDispatcher_EventRecord, Array_InternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_EventRecord__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_EventRecord___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Dissonance_Networking_Client_EventQueue_NetworkEvent___ctor, (Array_InternalEnumerator_1_Dissonance_Networking_Client_EventQueue_NetworkEvent___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Dissonance_Networking_Client_EventQueue_NetworkEvent__Dispose, (Array_InternalEnumerator_1_Dissonance_Networking_Client_EventQueue_NetworkEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Dissonance_Networking_Client_EventQueue_NetworkEvent__MoveNext, (Array_InternalEnumerator_1_Dissonance_Networking_Client_EventQueue_NetworkEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Dissonance_Networking_Client_EventQueue_NetworkEvent__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Dissonance_Networking_Client_EventQueue_NetworkEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D7C80, Object *, Array_InternalEnumerator_1_Dissonance_Networking_Client_EventQueue_NetworkEvent__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Dissonance_Networking_Client_EventQueue_NetworkEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D7AB0, EventQueue_NetworkEvent, Array_InternalEnumerator_1_Dissonance_Networking_Client_EventQueue_NetworkEvent__get_Current, (Array_InternalEnumerator_1_Dissonance_Networking_Client_EventQueue_NetworkEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Photon_Bolt_EventReliableRecvBuffer_Node___ctor, (Array_InternalEnumerator_1_Photon_Bolt_EventReliableRecvBuffer_Node___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Photon_Bolt_EventReliableRecvBuffer_Node__Dispose, (Array_InternalEnumerator_1_Photon_Bolt_EventReliableRecvBuffer_Node___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Photon_Bolt_EventReliableRecvBuffer_Node__MoveNext, (Array_InternalEnumerator_1_Photon_Bolt_EventReliableRecvBuffer_Node___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Photon_Bolt_EventReliableRecvBuffer_Node__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Photon_Bolt_EventReliableRecvBuffer_Node___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D7EF0, Object *, Array_InternalEnumerator_1_Photon_Bolt_EventReliableRecvBuffer_Node__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Photon_Bolt_EventReliableRecvBuffer_Node___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D7D70, EventReliableRecvBuffer_Node, Array_InternalEnumerator_1_Photon_Bolt_EventReliableRecvBuffer_Node__get_Current, (Array_InternalEnumerator_1_Photon_Bolt_EventReliableRecvBuffer_Node___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Photon_Bolt_EventReliableSendBuffer_Node___ctor, (Array_InternalEnumerator_1_Photon_Bolt_EventReliableSendBuffer_Node___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Photon_Bolt_EventReliableSendBuffer_Node__Dispose, (Array_InternalEnumerator_1_Photon_Bolt_EventReliableSendBuffer_Node___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Photon_Bolt_EventReliableSendBuffer_Node__MoveNext, (Array_InternalEnumerator_1_Photon_Bolt_EventReliableSendBuffer_Node___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Photon_Bolt_EventReliableSendBuffer_Node__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Photon_Bolt_EventReliableSendBuffer_Node___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D8110, Object *, Array_InternalEnumerator_1_Photon_Bolt_EventReliableSendBuffer_Node__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Photon_Bolt_EventReliableSendBuffer_Node___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D7F90, EventReliableSendBuffer_Node, Array_InternalEnumerator_1_Photon_Bolt_EventReliableSendBuffer_Node__get_Current, (Array_InternalEnumerator_1_Photon_Bolt_EventReliableSendBuffer_Node___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_FocusController_FocusedElement___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_FocusController_FocusedElement___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_FocusController_FocusedElement__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_FocusController_FocusedElement___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_FocusController_FocusedElement__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_FocusController_FocusedElement___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_FocusController_FocusedElement__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_FocusController_FocusedElement___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D8320, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_FocusController_FocusedElement__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_FocusController_FocusedElement___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D81B0, FocusController_FocusedElement, Array_InternalEnumerator_1_UnityEngine_UIElements_FocusController_FocusedElement__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_FocusController_FocusedElement___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Pathfinding_Funnel_PathPart___ctor, (Array_InternalEnumerator_1_Pathfinding_Funnel_PathPart___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Pathfinding_Funnel_PathPart__Dispose, (Array_InternalEnumerator_1_Pathfinding_Funnel_PathPart___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Pathfinding_Funnel_PathPart__MoveNext, (Array_InternalEnumerator_1_Pathfinding_Funnel_PathPart___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Pathfinding_Funnel_PathPart__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Pathfinding_Funnel_PathPart___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D8530, Object *, Array_InternalEnumerator_1_Pathfinding_Funnel_PathPart__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Pathfinding_Funnel_PathPart___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D83B0, Funnel_PathPart, Array_InternalEnumerator_1_Pathfinding_Funnel_PathPart__get_Current, (Array_InternalEnumerator_1_Pathfinding_Funnel_PathPart___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Pathfinding_GraphUpdateProcessor_GUOSingle___ctor, (Array_InternalEnumerator_1_Pathfinding_GraphUpdateProcessor_GUOSingle___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Pathfinding_GraphUpdateProcessor_GUOSingle__Dispose, (Array_InternalEnumerator_1_Pathfinding_GraphUpdateProcessor_GUOSingle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Pathfinding_GraphUpdateProcessor_GUOSingle__MoveNext, (Array_InternalEnumerator_1_Pathfinding_GraphUpdateProcessor_GUOSingle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Pathfinding_GraphUpdateProcessor_GUOSingle__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Pathfinding_GraphUpdateProcessor_GUOSingle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D8760, Object *, Array_InternalEnumerator_1_Pathfinding_GraphUpdateProcessor_GUOSingle__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Pathfinding_GraphUpdateProcessor_GUOSingle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D85E0, GraphUpdateProcessor_GUOSingle, Array_InternalEnumerator_1_Pathfinding_GraphUpdateProcessor_GUOSingle__get_Current, (Array_InternalEnumerator_1_Pathfinding_GraphUpdateProcessor_GUOSingle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D8980, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D8800, HID_HIDCollectionDescriptor, Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D8BC0, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D8A20, HID_HIDElementDescriptor, Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D8E00, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D8C80, HIDParser_HIDReportData, Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D9010, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D8EA0, HIDSupport_HIDPageUsage, Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Rewired_HID_HIDTouchpad_TouchData___ctor, (Array_InternalEnumerator_1_Rewired_HID_HIDTouchpad_TouchData___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Rewired_HID_HIDTouchpad_TouchData__Dispose, (Array_InternalEnumerator_1_Rewired_HID_HIDTouchpad_TouchData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Rewired_HID_HIDTouchpad_TouchData__MoveNext, (Array_InternalEnumerator_1_Rewired_HID_HIDTouchpad_TouchData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Rewired_HID_HIDTouchpad_TouchData__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Rewired_HID_HIDTouchpad_TouchData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D9220, Object *, Array_InternalEnumerator_1_Rewired_HID_HIDTouchpad_TouchData__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Rewired_HID_HIDTouchpad_TouchData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D90A0, HIDTouchpad_TouchData, Array_InternalEnumerator_1_Rewired_HID_HIDTouchpad_TouchData__get_Current, (Array_InternalEnumerator_1_Rewired_HID_HIDTouchpad_TouchData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere___ctor, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere__Dispose, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere__MoveNext, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D9450, Object *, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D92D0, HairDesignerColliderBase_DualSphere, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere__get_Current, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_DualSphereCollider___ctor, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_DualSphereCollider___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_DualSphereCollider__Dispose, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_DualSphereCollider___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_DualSphereCollider__MoveNext, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_DualSphereCollider___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_DualSphereCollider__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_DualSphereCollider___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D9680, Object *, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_DualSphereCollider__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_DualSphereCollider___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D9500, HairDesignerGeneratorAdvancedFurBase_DualSphereCollider, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_DualSphereCollider__get_Current, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_DualSphereCollider___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_SkinData___ctor, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_SkinData___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_SkinData__Dispose, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_SkinData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_SkinData__MoveNext, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_SkinData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_SkinData__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_SkinData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D98A0, Object *, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_SkinData__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_SkinData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D9720, HairDesignerGeneratorAdvancedFurBase_SkinData, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_SkinData__get_Current, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_SkinData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData___ctor, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__Dispose, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__MoveNext, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D9AB0, Object *, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D9940, HairDesignerGeneratorFurShellBase_BufferData, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__get_Current, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_SkinData___ctor, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_SkinData___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_SkinData__Dispose, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_SkinData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_SkinData__MoveNext, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_SkinData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_SkinData__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_SkinData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D9CC0, Object *, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_SkinData__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_SkinData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D9B40, HairDesignerGeneratorFurShellBase_SkinData, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_SkinData__get_Current, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_SkinData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq16___ctor, (Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq16___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq16__Dispose, (Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq16__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq16__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D9F40, Object *, Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq16__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016D9D60, Hammersley_Hammersley2dSeq16, Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq16__get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq256___ctor, (Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq256___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq256__Dispose, (Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq256___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq256__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq256___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq256__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq256___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DA210, Object *, Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq256__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq256___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DA040, Hammersley_Hammersley2dSeq256, Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq256__get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq256___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq32___ctor, (Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq32___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq32__Dispose, (Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq32__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq32__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DA4D0, Object *, Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq32__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DA2F0, Hammersley_Hammersley2dSeq32, Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq32__get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq64___ctor, (Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq64___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq64__Dispose, (Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq64__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq64__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DA7B0, Object *, Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq64__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DA5D0, Hammersley_Hammersley2dSeq64, Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq64__get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Hashtable_bucket___ctor, (Array_InternalEnumerator_1_System_Collections_Hashtable_bucket___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Hashtable_bucket__Dispose, (Array_InternalEnumerator_1_System_Collections_Hashtable_bucket___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Hashtable_bucket__MoveNext, (Array_InternalEnumerator_1_System_Collections_Hashtable_bucket___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Hashtable_bucket__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Hashtable_bucket___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DAA30, Object *, Array_InternalEnumerator_1_System_Collections_Hashtable_bucket__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Hashtable_bucket___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DA8B0, Hashtable_bucket, Array_InternalEnumerator_1_System_Collections_Hashtable_bucket__get_Current, (Array_InternalEnumerator_1_System_Collections_Hashtable_bucket___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Cinemachine_Utility_HeadingTracker_Item___ctor, (Array_InternalEnumerator_1_Cinemachine_Utility_HeadingTracker_Item___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Cinemachine_Utility_HeadingTracker_Item__Dispose, (Array_InternalEnumerator_1_Cinemachine_Utility_HeadingTracker_Item___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Cinemachine_Utility_HeadingTracker_Item__MoveNext, (Array_InternalEnumerator_1_Cinemachine_Utility_HeadingTracker_Item___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Cinemachine_Utility_HeadingTracker_Item__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Cinemachine_Utility_HeadingTracker_Item___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DAC50, Object *, Array_InternalEnumerator_1_Cinemachine_Utility_HeadingTracker_Item__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Cinemachine_Utility_HeadingTracker_Item___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DAAD0, HeadingTracker_Item, Array_InternalEnumerator_1_Cinemachine_Utility_HeadingTracker_Item__get_Current, (Array_InternalEnumerator_1_Cinemachine_Utility_HeadingTracker_Item___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_UI_HealthFlashMonitor_Flash___ctor, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_UI_HealthFlashMonitor_Flash___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_UI_HealthFlashMonitor_Flash__Dispose, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_UI_HealthFlashMonitor_Flash___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_UI_HealthFlashMonitor_Flash__MoveNext, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_UI_HealthFlashMonitor_Flash___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_UI_HealthFlashMonitor_Flash__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_UI_HealthFlashMonitor_Flash___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DAE80, Object *, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_UI_HealthFlashMonitor_Flash__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_UI_HealthFlashMonitor_Flash___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DACF0, HealthFlashMonitor_Flash, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_UI_HealthFlashMonitor_Flash__get_Current, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_UI_HealthFlashMonitor_Flash___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Globalization_HebrewNumber_HebrewValue___ctor, (Array_InternalEnumerator_1_System_Globalization_HebrewNumber_HebrewValue___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Globalization_HebrewNumber_HebrewValue__Dispose, (Array_InternalEnumerator_1_System_Globalization_HebrewNumber_HebrewValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Globalization_HebrewNumber_HebrewValue__MoveNext, (Array_InternalEnumerator_1_System_Globalization_HebrewNumber_HebrewValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Globalization_HebrewNumber_HebrewValue__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Globalization_HebrewNumber_HebrewValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DB0A0, Object *, Array_InternalEnumerator_1_System_Globalization_HebrewNumber_HebrewValue__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Globalization_HebrewNumber_HebrewValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DAF30, HebrewNumber_HebrewValue, Array_InternalEnumerator_1_System_Globalization_HebrewNumber_HebrewValue__get_Current, (Array_InternalEnumerator_1_System_Globalization_HebrewNumber_HebrewValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingJson___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingJson___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingJson__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingJson___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingJson__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingJson___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingJson__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingJson___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DB2C0, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingJson__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingJson___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DB130, InputActionMap_BindingJson, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingJson__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingJson___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DB510, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DB380, InputActionMap_BindingOverrideJson, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadActionJson___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadActionJson___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadActionJson__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadActionJson___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadActionJson__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadActionJson___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadActionJson__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadActionJson___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DB760, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadActionJson__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadActionJson___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DB5C0, InputActionMap_ReadActionJson, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadActionJson__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadActionJson___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadMapJson___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadMapJson___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadMapJson__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadMapJson___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadMapJson__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadMapJson___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadMapJson__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadMapJson___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DB9A0, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadMapJson__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadMapJson___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DB820, InputActionMap_ReadMapJson, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadMapJson__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadMapJson___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteActionJson___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteActionJson___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteActionJson__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteActionJson___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteActionJson__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteActionJson___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteActionJson__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteActionJson___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DBBD0, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteActionJson__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteActionJson___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DBA40, InputActionMap_WriteActionJson, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteActionJson__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteActionJson___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteMapJson___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteMapJson___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteMapJson__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteMapJson___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteMapJson__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteMapJson___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteMapJson__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteMapJson___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DBE10, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteMapJson__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteMapJson___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DBC90, InputActionMap_WriteMapJson, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteMapJson__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteMapJson___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_Parameter___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_Parameter___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_Parameter__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_Parameter___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_Parameter__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_Parameter___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_Parameter__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_Parameter___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DC030, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_Parameter__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_Parameter___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DBEB0, InputActionRebindingExtensions_Parameter, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_Parameter__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_Parameter___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DC290, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DC0D0, InputActionRebindingExtensions_ParameterOverride, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_InputActionTrace_ActionEventPtr___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_InputActionTrace_ActionEventPtr___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_InputActionTrace_ActionEventPtr__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_InputActionTrace_ActionEventPtr___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_InputActionTrace_ActionEventPtr__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_InputActionTrace_ActionEventPtr___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_InputActionTrace_ActionEventPtr__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_InputActionTrace_ActionEventPtr___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DC4F0, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_InputActionTrace_ActionEventPtr__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_InputActionTrace_ActionEventPtr___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DC380, InputActionTrace_ActionEventPtr, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_InputActionTrace_ActionEventPtr__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_InputActionTrace_ActionEventPtr___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputBindingCompositeContext_PartBinding___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputBindingCompositeContext_PartBinding___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputBindingCompositeContext_PartBinding__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputBindingCompositeContext_PartBinding___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputBindingCompositeContext_PartBinding__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputBindingCompositeContext_PartBinding___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputBindingCompositeContext_PartBinding__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputBindingCompositeContext_PartBinding___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DC6F0, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputBindingCompositeContext_PartBinding__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputBindingCompositeContext_PartBinding___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DC580, InputBindingCompositeContext_PartBinding, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputBindingCompositeContext_PartBinding__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputBindingCompositeContext_PartBinding___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DC970, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DC780, InputControlLayout_ControlItem, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlPath_ParsedPathComponent___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlPath_ParsedPathComponent___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlPath_ParsedPathComponent__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlPath_ParsedPathComponent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlPath_ParsedPathComponent__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlPath_ParsedPathComponent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlPath_ParsedPathComponent__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlPath_ParsedPathComponent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DCC30, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlPath_ParsedPathComponent__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlPath_ParsedPathComponent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DCA90, InputControlPath_ParsedPathComponent, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlPath_ParsedPathComponent__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlPath_ParsedPathComponent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DCE60, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DCCF0, InputControlScheme_DeviceRequirement, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DD070, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DCEF0, InputControlScheme_SchemeJson, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputDevice_ControlBitRangeNode___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputDevice_ControlBitRangeNode___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputDevice_ControlBitRangeNode__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputDevice_ControlBitRangeNode___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputDevice_ControlBitRangeNode__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputDevice_ControlBitRangeNode___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputDevice_ControlBitRangeNode__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputDevice_ControlBitRangeNode___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DD290, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputDevice_ControlBitRangeNode__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputDevice_ControlBitRangeNode___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DD110, InputDevice_ControlBitRangeNode, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputDevice_ControlBitRangeNode__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputDevice_ControlBitRangeNode___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DD4B0, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DD330, InputEventTrace_DeviceInfo, Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_AvailableDevice___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_AvailableDevice___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_AvailableDevice__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_AvailableDevice___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_AvailableDevice__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_AvailableDevice___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_AvailableDevice__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_AvailableDevice___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DD6E0, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_AvailableDevice__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_AvailableDevice___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DD550, InputManager_AvailableDevice, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_AvailableDevice__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_AvailableDevice___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorListener___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorListener___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorListener__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorListener___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorListener__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorListener___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorListener__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorListener___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DD920, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorListener__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorListener___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DD7A0, InputManager_StateChangeMonitorListener, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorListener__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorListener___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DDB50, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DD9C0, InputManager_StateChangeMonitorTimeout, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorsForDevice___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorsForDevice___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorsForDevice__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorsForDevice___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorsForDevice__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorsForDevice___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorsForDevice__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorsForDevice___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DDD90, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorsForDevice__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorsForDevice___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DDC00, InputManager_StateChangeMonitorsForDevice, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorsForDevice__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorsForDevice___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteInputDevice___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteInputDevice___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteInputDevice__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteInputDevice___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteInputDevice__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteInputDevice___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteInputDevice__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteInputDevice___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DDFE0, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteInputDevice__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteInputDevice___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DDE50, InputRemoting_RemoteInputDevice, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteInputDevice__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteInputDevice___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteSender___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteSender___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteSender__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteSender___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteSender__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteSender___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteSender__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteSender___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DE220, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteSender__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteSender___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DE0A0, InputRemoting_RemoteSender, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteSender__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteSender___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_Record___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_Record___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_Record__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_Record___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_Record__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_Record___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_Record__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_Record___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DE430, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_Record__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_Record___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DE2C0, InputStateHistory_Record, Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_Record__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_Record___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DE630, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DE4C0, InputSystemUIInputModule_InputActionReferenceState, Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DE830, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DE6C0, InputUser_OngoingAccountSelection, Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_UserData___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_UserData___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_UserData__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_UserData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_UserData__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_UserData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_UserData__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_UserData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DEAB0, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_UserData__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_UserData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DE8C0, InputUser_UserData, Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_UserData__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_UserData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DED30, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DEBC0, InternalTreeView_TreeViewItemWrapper, Array_InternalEnumerator_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_BehaviorDesigner_Runtime_JSONDeserialization_TaskField___ctor, (Array_InternalEnumerator_1_BehaviorDesigner_Runtime_JSONDeserialization_TaskField___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_BehaviorDesigner_Runtime_JSONDeserialization_TaskField__Dispose, (Array_InternalEnumerator_1_BehaviorDesigner_Runtime_JSONDeserialization_TaskField___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_BehaviorDesigner_Runtime_JSONDeserialization_TaskField__MoveNext, (Array_InternalEnumerator_1_BehaviorDesigner_Runtime_JSONDeserialization_TaskField___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_BehaviorDesigner_Runtime_JSONDeserialization_TaskField__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_BehaviorDesigner_Runtime_JSONDeserialization_TaskField___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DEF30, Object *, Array_InternalEnumerator_1_BehaviorDesigner_Runtime_JSONDeserialization_TaskField__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_BehaviorDesigner_Runtime_JSONDeserialization_TaskField___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DEDC0, JSONDeserialization_TaskField, Array_InternalEnumerator_1_BehaviorDesigner_Runtime_JSONDeserialization_TaskField__get_Current, (Array_InternalEnumerator_1_BehaviorDesigner_Runtime_JSONDeserialization_TaskField___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV___ctor, (Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__Dispose, (Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__MoveNext, (Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DF130, Object *, Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DEFC0, JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV, Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__get_Current, (Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb___ctor, (Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__Dispose, (Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__MoveNext, (Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DF360, Object *, Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DF1C0, JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb, Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__get_Current, (Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux___ctor, (Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__Dispose, (Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__MoveNext, (Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DF590, Object *, Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DF420, JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux, Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__get_Current, (Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DF7C0, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DF620, JsonParser_JsonValue, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Pathfinding_LayerGridGraph_HeightSample___ctor, (Array_InternalEnumerator_1_Pathfinding_LayerGridGraph_HeightSample___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Pathfinding_LayerGridGraph_HeightSample__Dispose, (Array_InternalEnumerator_1_Pathfinding_LayerGridGraph_HeightSample___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Pathfinding_LayerGridGraph_HeightSample__MoveNext, (Array_InternalEnumerator_1_Pathfinding_LayerGridGraph_HeightSample___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Pathfinding_LayerGridGraph_HeightSample__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Pathfinding_LayerGridGraph_HeightSample___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DFA10, Object *, Array_InternalEnumerator_1_Pathfinding_LayerGridGraph_HeightSample__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Pathfinding_LayerGridGraph_HeightSample___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DF880, LayerGridGraph_HeightSample, Array_InternalEnumerator_1_Pathfinding_LayerGridGraph_HeightSample__get_Current, (Array_InternalEnumerator_1_Pathfinding_LayerGridGraph_HeightSample___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Dissonance_Logs_LogMessage___ctor, (Array_InternalEnumerator_1_Dissonance_Logs_LogMessage___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Dissonance_Logs_LogMessage__Dispose, (Array_InternalEnumerator_1_Dissonance_Logs_LogMessage___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Dissonance_Logs_LogMessage__MoveNext, (Array_InternalEnumerator_1_Dissonance_Logs_LogMessage___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Dissonance_Logs_LogMessage__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Dissonance_Logs_LogMessage___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DFC40, Object *, Array_InternalEnumerator_1_Dissonance_Logs_LogMessage__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Dissonance_Logs_LogMessage___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DFAD0, Logs_LogMessage_1, Array_InternalEnumerator_1_Dissonance_Logs_LogMessage__get_Current, (Array_InternalEnumerator_1_Dissonance_Logs_LogMessage___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage___ctor, (Array_InternalEnumerator_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__Dispose, (Array_InternalEnumerator_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__MoveNext, (Array_InternalEnumerator_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DFE40, Object *, Array_InternalEnumerator_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DFCD0, Logs_LogMessage, Array_InternalEnumerator_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__get_Current, (Array_InternalEnumerator_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_MagicLightProbes_MagicLightProbes_VolumeParameters___ctor, (Array_InternalEnumerator_1_MagicLightProbes_MagicLightProbes_VolumeParameters___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_MagicLightProbes_MagicLightProbes_VolumeParameters__Dispose, (Array_InternalEnumerator_1_MagicLightProbes_MagicLightProbes_VolumeParameters___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_MagicLightProbes_MagicLightProbes_VolumeParameters__MoveNext, (Array_InternalEnumerator_1_MagicLightProbes_MagicLightProbes_VolumeParameters___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_MagicLightProbes_MagicLightProbes_VolumeParameters__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_MagicLightProbes_MagicLightProbes_VolumeParameters___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E0050, Object *, Array_InternalEnumerator_1_MagicLightProbes_MagicLightProbes_VolumeParameters__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_MagicLightProbes_MagicLightProbes_VolumeParameters___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016DFED0, MagicLightProbes_VolumeParameters, Array_InternalEnumerator_1_MagicLightProbes_MagicLightProbes_VolumeParameters__get_Current, (Array_InternalEnumerator_1_MagicLightProbes_MagicLightProbes_VolumeParameters___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Net_Mail_MailHeaderInfo_HeaderInfo___ctor, (Array_InternalEnumerator_1_System_Net_Mail_MailHeaderInfo_HeaderInfo___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Net_Mail_MailHeaderInfo_HeaderInfo__Dispose, (Array_InternalEnumerator_1_System_Net_Mail_MailHeaderInfo_HeaderInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Net_Mail_MailHeaderInfo_HeaderInfo__MoveNext, (Array_InternalEnumerator_1_System_Net_Mail_MailHeaderInfo_HeaderInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Net_Mail_MailHeaderInfo_HeaderInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Net_Mail_MailHeaderInfo_HeaderInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E0270, Object *, Array_InternalEnumerator_1_System_Net_Mail_MailHeaderInfo_HeaderInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Net_Mail_MailHeaderInfo_HeaderInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E00F0, MailHeaderInfo_HeaderInfo, Array_InternalEnumerator_1_System_Net_Mail_MailHeaderInfo_HeaderInfo__get_Current, (Array_InternalEnumerator_1_System_Net_Mail_MailHeaderInfo_HeaderInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___ctor, (Array_InternalEnumerator_1_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__Dispose, (Array_InternalEnumerator_1_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__MoveNext, (Array_InternalEnumerator_1_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E0490, Object *, Array_InternalEnumerator_1_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E0310, MemberRelationshipService_RelationshipEntry, Array_InternalEnumerator_1_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__get_Current, (Array_InternalEnumerator_1_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_MemoryHelpers_BitRegion___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_MemoryHelpers_BitRegion___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_MemoryHelpers_BitRegion__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_MemoryHelpers_BitRegion___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_MemoryHelpers_BitRegion__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_MemoryHelpers_BitRegion___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_MemoryHelpers_BitRegion__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_MemoryHelpers_BitRegion___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E06A0, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_MemoryHelpers_BitRegion__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_MemoryHelpers_BitRegion___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E0530, MemoryHelpers_BitRegion, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_MemoryHelpers_BitRegion__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_MemoryHelpers_BitRegion___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData___ctor, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData__Dispose, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData__MoveNext, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E08C0, Object *, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E0730, MotionSolver_GPUNodeData, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData__get_Current, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo___ctor, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo__Dispose, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo__MoveNext, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E0B00, Object *, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E0970, MotionSolver_GPUNodeInfo, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo__get_Current, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPURootTransform___ctor, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPURootTransform___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPURootTransform__Dispose, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPURootTransform___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPURootTransform__MoveNext, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPURootTransform___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPURootTransform__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPURootTransform___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E0D90, Object *, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPURootTransform__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPURootTransform___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E0BC0, MotionSolver_GPURootTransform, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPURootTransform__get_Current, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPURootTransform___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_Waypoint___ctor, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_Waypoint___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_Waypoint__Dispose, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_Waypoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_Waypoint__MoveNext, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_Waypoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_Waypoint__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_Waypoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E1010, Object *, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_Waypoint__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_Waypoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E0E90, MovingPlatform_Waypoint, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_Waypoint__get_Current, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_Waypoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_NightmareStyling_WallMaterial___ctor, (Array_InternalEnumerator_1_NightmareStyling_WallMaterial___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_NightmareStyling_WallMaterial__Dispose, (Array_InternalEnumerator_1_NightmareStyling_WallMaterial___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_NightmareStyling_WallMaterial__MoveNext, (Array_InternalEnumerator_1_NightmareStyling_WallMaterial___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_NightmareStyling_WallMaterial__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_NightmareStyling_WallMaterial___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E1220, Object *, Array_InternalEnumerator_1_NightmareStyling_WallMaterial__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_NightmareStyling_WallMaterial___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E10B0, NightmareStyling_WallMaterial, Array_InternalEnumerator_1_NightmareStyling_WallMaterial__get_Current, (Array_InternalEnumerator_1_NightmareStyling_WallMaterial___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Cinemachine_NoiseSettings_TransformNoiseParams___ctor, (Array_InternalEnumerator_1_Cinemachine_NoiseSettings_TransformNoiseParams___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Cinemachine_NoiseSettings_TransformNoiseParams__Dispose, (Array_InternalEnumerator_1_Cinemachine_NoiseSettings_TransformNoiseParams___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Cinemachine_NoiseSettings_TransformNoiseParams__MoveNext, (Array_InternalEnumerator_1_Cinemachine_NoiseSettings_TransformNoiseParams___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Cinemachine_NoiseSettings_TransformNoiseParams__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Cinemachine_NoiseSettings_TransformNoiseParams___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E1430, Object *, Array_InternalEnumerator_1_Cinemachine_NoiseSettings_TransformNoiseParams__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Cinemachine_NoiseSettings_TransformNoiseParams___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E12B0, NoiseSettings_TransformNoiseParams, Array_InternalEnumerator_1_Cinemachine_NoiseSettings_TransformNoiseParams__get_Current, (Array_InternalEnumerator_1_Cinemachine_NoiseSettings_TransformNoiseParams___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_NolanBehaviour_OverlappedCollider___ctor, (Array_InternalEnumerator_1_NolanBehaviour_OverlappedCollider___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_NolanBehaviour_OverlappedCollider__Dispose, (Array_InternalEnumerator_1_NolanBehaviour_OverlappedCollider___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_NolanBehaviour_OverlappedCollider__MoveNext, (Array_InternalEnumerator_1_NolanBehaviour_OverlappedCollider___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_NolanBehaviour_OverlappedCollider__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_NolanBehaviour_OverlappedCollider___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E1650, Object *, Array_InternalEnumerator_1_NolanBehaviour_OverlappedCollider__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_NolanBehaviour_OverlappedCollider___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E14E0, NolanBehaviour_OverlappedCollider, Array_InternalEnumerator_1_NolanBehaviour_OverlappedCollider__get_Current, (Array_InternalEnumerator_1_NolanBehaviour_OverlappedCollider___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Opsive_Shared_Game_ObjectPoolBase_PreloadedPrefab___ctor, (Array_InternalEnumerator_1_Opsive_Shared_Game_ObjectPoolBase_PreloadedPrefab___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Opsive_Shared_Game_ObjectPoolBase_PreloadedPrefab__Dispose, (Array_InternalEnumerator_1_Opsive_Shared_Game_ObjectPoolBase_PreloadedPrefab___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Opsive_Shared_Game_ObjectPoolBase_PreloadedPrefab__MoveNext, (Array_InternalEnumerator_1_Opsive_Shared_Game_ObjectPoolBase_PreloadedPrefab___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Opsive_Shared_Game_ObjectPoolBase_PreloadedPrefab__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Opsive_Shared_Game_ObjectPoolBase_PreloadedPrefab___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E1850, Object *, Array_InternalEnumerator_1_Opsive_Shared_Game_ObjectPoolBase_PreloadedPrefab__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Opsive_Shared_Game_ObjectPoolBase_PreloadedPrefab___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E16E0, ObjectPoolBase_PreloadedPrefab, Array_InternalEnumerator_1_Opsive_Shared_Game_ObjectPoolBase_PreloadedPrefab__get_Current, (Array_InternalEnumerator_1_Opsive_Shared_Game_ObjectPoolBase_PreloadedPrefab___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E1A70, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E18E0, OnScreenControl_OnScreenDeviceInfo, Array_InternalEnumerator_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding___ctor, (Array_InternalEnumerator_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__Dispose, (Array_InternalEnumerator_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__MoveNext, (Array_InternalEnumerator_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E1C90, Object *, Array_InternalEnumerator_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E1B20, OpenXRInput_SerializedBinding, Array_InternalEnumerator_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__get_Current, (Array_InternalEnumerator_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_PackedPlayModeBuildLogs_RuntimeBuildLog___ctor, (Array_InternalEnumerator_1_PackedPlayModeBuildLogs_RuntimeBuildLog___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_PackedPlayModeBuildLogs_RuntimeBuildLog__Dispose, (Array_InternalEnumerator_1_PackedPlayModeBuildLogs_RuntimeBuildLog___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_PackedPlayModeBuildLogs_RuntimeBuildLog__MoveNext, (Array_InternalEnumerator_1_PackedPlayModeBuildLogs_RuntimeBuildLog___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_PackedPlayModeBuildLogs_RuntimeBuildLog__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_PackedPlayModeBuildLogs_RuntimeBuildLog___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E1E90, Object *, Array_InternalEnumerator_1_PackedPlayModeBuildLogs_RuntimeBuildLog__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_PackedPlayModeBuildLogs_RuntimeBuildLog___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E1D20, PackedPlayModeBuildLogs_RuntimeBuildLog, Array_InternalEnumerator_1_PackedPlayModeBuildLogs_RuntimeBuildLog__get_Current, (Array_InternalEnumerator_1_PackedPlayModeBuildLogs_RuntimeBuildLog___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_ParameterizedStrings_FormatParam___ctor, (Array_InternalEnumerator_1_ParameterizedStrings_FormatParam___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_ParameterizedStrings_FormatParam__Dispose, (Array_InternalEnumerator_1_ParameterizedStrings_FormatParam___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_ParameterizedStrings_FormatParam__MoveNext, (Array_InternalEnumerator_1_ParameterizedStrings_FormatParam___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_ParameterizedStrings_FormatParam__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_ParameterizedStrings_FormatParam___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E2090, Object *, Array_InternalEnumerator_1_ParameterizedStrings_FormatParam__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_ParameterizedStrings_FormatParam___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E1F20, ParameterizedStrings_FormatParam, Array_InternalEnumerator_1_ParameterizedStrings_FormatParam__get_Current, (Array_InternalEnumerator_1_ParameterizedStrings_FormatParam___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_ParticleSystem_Particle___ctor, (Array_InternalEnumerator_1_UnityEngine_ParticleSystem_Particle___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_ParticleSystem_Particle__Dispose, (Array_InternalEnumerator_1_UnityEngine_ParticleSystem_Particle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_ParticleSystem_Particle__MoveNext, (Array_InternalEnumerator_1_UnityEngine_ParticleSystem_Particle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_ParticleSystem_Particle__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_ParticleSystem_Particle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E22E0, Object *, Array_InternalEnumerator_1_UnityEngine_ParticleSystem_Particle__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_ParticleSystem_Particle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E2120, ParticleSystem_Particle, Array_InternalEnumerator_1_UnityEngine_ParticleSystem_Particle__get_Current, (Array_InternalEnumerator_1_UnityEngine_ParticleSystem_Particle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_PlayerStatsController_Category___ctor, (Array_InternalEnumerator_1_PlayerStatsController_Category___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_PlayerStatsController_Category__Dispose, (Array_InternalEnumerator_1_PlayerStatsController_Category___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_PlayerStatsController_Category__MoveNext, (Array_InternalEnumerator_1_PlayerStatsController_Category___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_PlayerStatsController_Category__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_PlayerStatsController_Category___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E2550, Object *, Array_InternalEnumerator_1_PlayerStatsController_Category__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_PlayerStatsController_Category___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E23D0, PlayerStatsController_Category, Array_InternalEnumerator_1_PlayerStatsController_Category__get_Current, (Array_InternalEnumerator_1_PlayerStatsController_Category___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Pathfinding_PointKDTree_Node___ctor, (Array_InternalEnumerator_1_Pathfinding_PointKDTree_Node___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Pathfinding_PointKDTree_Node__Dispose, (Array_InternalEnumerator_1_Pathfinding_PointKDTree_Node___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Pathfinding_PointKDTree_Node__MoveNext, (Array_InternalEnumerator_1_Pathfinding_PointKDTree_Node___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Pathfinding_PointKDTree_Node__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Pathfinding_PointKDTree_Node___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E2760, Object *, Array_InternalEnumerator_1_Pathfinding_PointKDTree_Node__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Pathfinding_PointKDTree_Node___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E25F0, PointKDTree_Node, Array_InternalEnumerator_1_Pathfinding_PointKDTree_Node__get_Current, (Array_InternalEnumerator_1_Pathfinding_PointKDTree_Node___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_PointerDeviceState_PointerLocation___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_PointerDeviceState_PointerLocation___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_PointerDeviceState_PointerLocation__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_PointerDeviceState_PointerLocation___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_PointerDeviceState_PointerLocation__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_PointerDeviceState_PointerLocation___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_PointerDeviceState_PointerLocation__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_PointerDeviceState_PointerLocation___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E2970, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_PointerDeviceState_PointerLocation__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_PointerDeviceState_PointerLocation___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E27F0, PointerDeviceState_PointerLocation, Array_InternalEnumerator_1_UnityEngine_UIElements_PointerDeviceState_PointerLocation__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_PointerDeviceState_PointerLocation___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick___ctor, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick__Dispose, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E2B80, Object *, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E2A10, ProbeBrickIndex_Brick, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick__get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta___ctor, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__Dispose, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E2D80, Object *, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E2C10, ProbeBrickIndex_BrickMeta, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo___ctor, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__Dispose, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E2FA0, Object *, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E2E10, ProbeBrickIndex_CellIndexUpdateInfo, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick___ctor, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick__Dispose, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E31D0, Object *, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E3050, ProbeBrickIndex_ReservedBrick, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick__get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta___ctor, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta__Dispose, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E33E0, Object *, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E3270, ProbeBrickIndex_VoxelMeta, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta__get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc___ctor, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__Dispose, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E35F0, Object *, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E3470, ProbeBrickPool_BrickChunkAlloc, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___ctor, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__Dispose, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E3800, Object *, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E3690, ProbeReferenceVolume_RegId, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume___ctor, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume__Dispose, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E3A20, Object *, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E3890, ProbeReferenceVolume_Volume, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume__get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem___ctor, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem__Dispose, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E3C50, Object *, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E3AE0, ProbeVolumePerSceneData_SerializableAssetItem, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem__get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem___ctor, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem__Dispose, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E3E60, Object *, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E3CE0, ProbeVolumeSceneData_SerializableBoundItem, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem__get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem___ctor, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem__Dispose, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E4070, Object *, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E3F00, ProbeVolumeSceneData_SerializableHasPVItem, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem__get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings___ctor, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings__Dispose, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E4290, Object *, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E4100, ProbeVolumeSceneData_SerializablePVBakeSettings, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings__get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile___ctor, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile__Dispose, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E44B0, Object *, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E4340, ProbeVolumeSceneData_SerializablePVProfile, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile__get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UdpKit_Protocol_ProtocolClient_AckCallback___ctor, (Array_InternalEnumerator_1_UdpKit_Protocol_ProtocolClient_AckCallback___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UdpKit_Protocol_ProtocolClient_AckCallback__Dispose, (Array_InternalEnumerator_1_UdpKit_Protocol_ProtocolClient_AckCallback___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UdpKit_Protocol_ProtocolClient_AckCallback__MoveNext, (Array_InternalEnumerator_1_UdpKit_Protocol_ProtocolClient_AckCallback___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UdpKit_Protocol_ProtocolClient_AckCallback__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UdpKit_Protocol_ProtocolClient_AckCallback___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E46D0, Object *, Array_InternalEnumerator_1_UdpKit_Protocol_ProtocolClient_AckCallback__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UdpKit_Protocol_ProtocolClient_AckCallback___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E4540, ProtocolClient_AckCallback, Array_InternalEnumerator_1_UdpKit_Protocol_ProtocolClient_AckCallback__get_Current, (Array_InternalEnumerator_1_UdpKit_Protocol_ProtocolClient_AckCallback___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UdpKit_Protocol_ProtocolClient_MsgHandler___ctor, (Array_InternalEnumerator_1_UdpKit_Protocol_ProtocolClient_MsgHandler___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UdpKit_Protocol_ProtocolClient_MsgHandler__Dispose, (Array_InternalEnumerator_1_UdpKit_Protocol_ProtocolClient_MsgHandler___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UdpKit_Protocol_ProtocolClient_MsgHandler__MoveNext, (Array_InternalEnumerator_1_UdpKit_Protocol_ProtocolClient_MsgHandler___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UdpKit_Protocol_ProtocolClient_MsgHandler__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UdpKit_Protocol_ProtocolClient_MsgHandler___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E4910, Object *, Array_InternalEnumerator_1_UdpKit_Protocol_ProtocolClient_MsgHandler__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UdpKit_Protocol_ProtocolClient_MsgHandler___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E4780, ProtocolClient_MsgHandler, Array_InternalEnumerator_1_UdpKit_Protocol_ProtocolClient_MsgHandler__get_Current, (Array_InternalEnumerator_1_UdpKit_Protocol_ProtocolClient_MsgHandler___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Pathfinding_RVO_RVOQuadtree_Node___ctor, (Array_InternalEnumerator_1_Pathfinding_RVO_RVOQuadtree_Node___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Pathfinding_RVO_RVOQuadtree_Node__Dispose, (Array_InternalEnumerator_1_Pathfinding_RVO_RVOQuadtree_Node___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Pathfinding_RVO_RVOQuadtree_Node__MoveNext, (Array_InternalEnumerator_1_Pathfinding_RVO_RVOQuadtree_Node___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Pathfinding_RVO_RVOQuadtree_Node__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Pathfinding_RVO_RVOQuadtree_Node___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E4B40, Object *, Array_InternalEnumerator_1_Pathfinding_RVO_RVOQuadtree_Node__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Pathfinding_RVO_RVOQuadtree_Node___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E49C0, RVOQuadtree_Node, Array_InternalEnumerator_1_Pathfinding_RVO_RVOQuadtree_Node__get_Current, (Array_InternalEnumerator_1_Pathfinding_RVO_RVOQuadtree_Node___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Text_RegularExpressions_Regex_CachedCodeEntryKey___ctor, (Array_InternalEnumerator_1_System_Text_RegularExpressions_Regex_CachedCodeEntryKey___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Text_RegularExpressions_Regex_CachedCodeEntryKey__Dispose, (Array_InternalEnumerator_1_System_Text_RegularExpressions_Regex_CachedCodeEntryKey___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Text_RegularExpressions_Regex_CachedCodeEntryKey__MoveNext, (Array_InternalEnumerator_1_System_Text_RegularExpressions_Regex_CachedCodeEntryKey___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Text_RegularExpressions_Regex_CachedCodeEntryKey__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Text_RegularExpressions_Regex_CachedCodeEntryKey___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E4D60, Object *, Array_InternalEnumerator_1_System_Text_RegularExpressions_Regex_CachedCodeEntryKey__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Text_RegularExpressions_Regex_CachedCodeEntryKey___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E4BE0, Regex_CachedCodeEntryKey, Array_InternalEnumerator_1_System_Text_RegularExpressions_Regex_CachedCodeEntryKey__get_Current, (Array_InternalEnumerator_1_System_Text_RegularExpressions_Regex_CachedCodeEntryKey___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_LowerCaseMapping___ctor, (Array_InternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_LowerCaseMapping___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_LowerCaseMapping__Dispose, (Array_InternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_LowerCaseMapping___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_LowerCaseMapping__MoveNext, (Array_InternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_LowerCaseMapping___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_LowerCaseMapping__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_LowerCaseMapping___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E4F80, Object *, Array_InternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_LowerCaseMapping__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_LowerCaseMapping___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E4E00, RegexCharClass_LowerCaseMapping, Array_InternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_LowerCaseMapping__get_Current, (Array_InternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_LowerCaseMapping___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_SingleRange___ctor, (Array_InternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_SingleRange___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__Dispose, (Array_InternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_SingleRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__MoveNext, (Array_InternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_SingleRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_SingleRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E5190, Object *, Array_InternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_SingleRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E5020, RegexCharClass_SingleRange, Array_InternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__get_Current, (Array_InternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_SingleRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E53D0, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E5220, RenderChain_RenderNodeData, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo___ctor, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo__Dispose, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E5640, Object *, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E54A0, RenderGraph_CompiledPassInfo, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo__get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo___ctor, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo__Dispose, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E5880, Object *, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E5700, RenderGraph_CompiledResourceInfo, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo__get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData___ctor, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData__Dispose, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E5AA0, Object *, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E5920, RenderGraphDebugData_PassDebugData, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData__get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData___ctor, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData__Dispose, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E5CD0, Object *, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E5B40, RenderGraphDebugData_ResourceDebugData, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData__get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest___ctor, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest__Dispose, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest__MoveNext, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E5EF0, Object *, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E5D80, ResourceManager_DeferredCallbackRegisterRequest, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest__get_Current, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Pathfinding_Util_RetainedGizmos_MeshWithHash___ctor, (Array_InternalEnumerator_1_Pathfinding_Util_RetainedGizmos_MeshWithHash___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Pathfinding_Util_RetainedGizmos_MeshWithHash__Dispose, (Array_InternalEnumerator_1_Pathfinding_Util_RetainedGizmos_MeshWithHash___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Pathfinding_Util_RetainedGizmos_MeshWithHash__MoveNext, (Array_InternalEnumerator_1_Pathfinding_Util_RetainedGizmos_MeshWithHash___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Pathfinding_Util_RetainedGizmos_MeshWithHash__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Pathfinding_Util_RetainedGizmos_MeshWithHash___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E6100, Object *, Array_InternalEnumerator_1_Pathfinding_Util_RetainedGizmos_MeshWithHash__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Pathfinding_Util_RetainedGizmos_MeshWithHash___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E5F80, RetainedGizmos_MeshWithHash, Array_InternalEnumerator_1_Pathfinding_Util_RetainedGizmos_MeshWithHash__get_Current, (Array_InternalEnumerator_1_Pathfinding_Util_RetainedGizmos_MeshWithHash___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_SendMouseEvents_HitInfo___ctor, (Array_InternalEnumerator_1_UnityEngine_SendMouseEvents_HitInfo___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_SendMouseEvents_HitInfo__Dispose, (Array_InternalEnumerator_1_UnityEngine_SendMouseEvents_HitInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_SendMouseEvents_HitInfo__MoveNext, (Array_InternalEnumerator_1_UnityEngine_SendMouseEvents_HitInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_SendMouseEvents_HitInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_SendMouseEvents_HitInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E6310, Object *, Array_InternalEnumerator_1_UnityEngine_SendMouseEvents_HitInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_SendMouseEvents_HitInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E61A0, SendMouseEvents_HitInfo, Array_InternalEnumerator_1_UnityEngine_SendMouseEvents_HitInfo__get_Current, (Array_InternalEnumerator_1_UnityEngine_SendMouseEvents_HitInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext___ctor, (Array_InternalEnumerator_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext__Dispose, (Array_InternalEnumerator_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext__MoveNext, (Array_InternalEnumerator_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E6530, Object *, Array_InternalEnumerator_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E63A0, SequenceNode_SequenceConstructPosContext, Array_InternalEnumerator_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext__get_Current, (Array_InternalEnumerator_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_Field___ctor, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_Field___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_Field__Dispose, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_Field___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_Field__MoveNext, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_Field___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_Field__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_Field___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E6760, Object *, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_Field__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_Field___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E65E0, SerializedObject_Field, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_Field__get_Current, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_Field___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___ctor, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__Dispose, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__MoveNext, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E6980, Object *, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E6800, SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__get_Current, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_SlotEquip_ItemDefinitionStateName___ctor, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_SlotEquip_ItemDefinitionStateName___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_SlotEquip_ItemDefinitionStateName__Dispose, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_SlotEquip_ItemDefinitionStateName___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_SlotEquip_ItemDefinitionStateName__MoveNext, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_SlotEquip_ItemDefinitionStateName___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_SlotEquip_ItemDefinitionStateName__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_SlotEquip_ItemDefinitionStateName___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E6B90, Object *, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_SlotEquip_ItemDefinitionStateName__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_SlotEquip_ItemDefinitionStateName___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E6A20, SlotEquip_ItemDefinitionStateName, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_SlotEquip_ItemDefinitionStateName__get_Current, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_SlotEquip_ItemDefinitionStateName___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Net_Sockets_Socket_WSABUF___ctor, (Array_InternalEnumerator_1_System_Net_Sockets_Socket_WSABUF___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Net_Sockets_Socket_WSABUF__Dispose, (Array_InternalEnumerator_1_System_Net_Sockets_Socket_WSABUF___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Net_Sockets_Socket_WSABUF__MoveNext, (Array_InternalEnumerator_1_System_Net_Sockets_Socket_WSABUF___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Net_Sockets_Socket_WSABUF__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Net_Sockets_Socket_WSABUF___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E6D90, Object *, Array_InternalEnumerator_1_System_Net_Sockets_Socket_WSABUF__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Net_Sockets_Socket_WSABUF___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E6C20, Socket_WSABUF, Array_InternalEnumerator_1_System_Net_Sockets_Socket_WSABUF__get_Current, (Array_InternalEnumerator_1_System_Net_Sockets_Socket_WSABUF___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E6F90, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E6E20, StyleComplexSelector_PseudoStateData, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E7190, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E7020, StylePropertyAnimationSystem_ElementPropertyPair, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheet_ImportStruct___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheet_ImportStruct___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheet_ImportStruct__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheet_ImportStruct___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheet_ImportStruct__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheet_ImportStruct___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheet_ImportStruct__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheet_ImportStruct___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E7390, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheet_ImportStruct__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheet_ImportStruct___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E7220, StyleSheet_ImportStruct, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheet_ImportStruct__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheet_ImportStruct___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E7590, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E7420, StyleSheetCache_SheetHandleKey, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E7790, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E7620, StyleVariableResolver_ResolveContext, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_TMPro_TMP_Text_UnicodeChar___ctor, (Array_InternalEnumerator_1_TMPro_TMP_Text_UnicodeChar___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_TMPro_TMP_Text_UnicodeChar__Dispose, (Array_InternalEnumerator_1_TMPro_TMP_Text_UnicodeChar___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_TMPro_TMP_Text_UnicodeChar__MoveNext, (Array_InternalEnumerator_1_TMPro_TMP_Text_UnicodeChar___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_TMPro_TMP_Text_UnicodeChar__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_TMPro_TMP_Text_UnicodeChar___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E79A0, Object *, Array_InternalEnumerator_1_TMPro_TMP_Text_UnicodeChar__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_TMPro_TMP_Text_UnicodeChar___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E7820, TMP_Text_UnicodeChar, Array_InternalEnumerator_1_TMPro_TMP_Text_UnicodeChar__get_Current, (Array_InternalEnumerator_1_TMPro_TMP_Text_UnicodeChar___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E7BC0, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E7A40, TemplateAsset_AttributeOverride, Array_InternalEnumerator_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UI_Extensions_TextPic_IconName___ctor, (Array_InternalEnumerator_1_UnityEngine_UI_Extensions_TextPic_IconName___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UI_Extensions_TextPic_IconName__Dispose, (Array_InternalEnumerator_1_UnityEngine_UI_Extensions_TextPic_IconName___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UI_Extensions_TextPic_IconName__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UI_Extensions_TextPic_IconName___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UI_Extensions_TextPic_IconName__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UI_Extensions_TextPic_IconName___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E7DE0, Object *, Array_InternalEnumerator_1_UnityEngine_UI_Extensions_TextPic_IconName__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UI_Extensions_TextPic_IconName___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E7C60, TextPic_IconName, Array_InternalEnumerator_1_UnityEngine_UI_Extensions_TextPic_IconName__get_Current, (Array_InternalEnumerator_1_UnityEngine_UI_Extensions_TextPic_IconName___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___ctor, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__Dispose, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__MoveNext, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E8000, Object *, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E7E80, TextResourceManager_FontAssetRef, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__get_Current, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap___ctor, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__Dispose, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__MoveNext, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E8210, Object *, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E80A0, TextSettings_FontReferenceMap, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__get_Current, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E8430, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E82A0, TextureBlitter_BlitInfo, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame___ctor, (Array_InternalEnumerator_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame__Dispose, (Array_InternalEnumerator_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame__MoveNext, (Array_InternalEnumerator_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E8680, Object *, Array_InternalEnumerator_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E84F0, TexturePacker_JsonArray_Frame, Array_InternalEnumerator_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame__get_Current, (Array_InternalEnumerator_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TextureRegistry_TextureInfo___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_TextureRegistry_TextureInfo___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TextureRegistry_TextureInfo__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_TextureRegistry_TextureInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_TextureRegistry_TextureInfo__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_TextureRegistry_TextureInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TextureRegistry_TextureInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_TextureRegistry_TextureInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E88B0, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_TextureRegistry_TextureInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_TextureRegistry_TextureInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E8740, TextureRegistry_TextureInfo, Array_InternalEnumerator_1_UnityEngine_UIElements_TextureRegistry_TextureInfo__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_TextureRegistry_TextureInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry___ctor, (Array_InternalEnumerator_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry__Dispose, (Array_InternalEnumerator_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E8AC0, Object *, Array_InternalEnumerator_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E8940, TimeNotificationBehaviour_NotificationEntry, Array_InternalEnumerator_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry__get_Current, (Array_InternalEnumerator_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E8CE0, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E8B60, TrackedDeviceRaycaster_RaycastHitData, Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData___ctor, (Array_InternalEnumerator_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData__Dispose, (Array_InternalEnumerator_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData__MoveNext, (Array_InternalEnumerator_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E8EF0, Object *, Array_InternalEnumerator_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E8D80, TrackedPoseDriverDataDescription_PoseData, Array_InternalEnumerator_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData__get_Current, (Array_InternalEnumerator_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E90F0, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E8F80, TreeView_TreeViewItemWrapper, Array_InternalEnumerator_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E92F0, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E9180, TreeViewReorderableDragAndDropController_TreeItemState, Array_InternalEnumerator_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E9530, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E9380, UIRStylePainter_Entry, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E9790, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E9600, UIRenderDevice_AllocToFree, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E99E0, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E9840, UIRenderDevice_AllocToUpdate, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E9C10, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E9AA0, UIRenderDevice_DeviceToFree, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UdpKit_UdpPipe_Ack___ctor, (Array_InternalEnumerator_1_UdpKit_UdpPipe_Ack___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UdpKit_UdpPipe_Ack__Dispose, (Array_InternalEnumerator_1_UdpKit_UdpPipe_Ack___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UdpKit_UdpPipe_Ack__MoveNext, (Array_InternalEnumerator_1_UdpKit_UdpPipe_Ack___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UdpKit_UdpPipe_Ack__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UdpKit_UdpPipe_Ack___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E9E20, Object *, Array_InternalEnumerator_1_UdpKit_UdpPipe_Ack__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UdpKit_UdpPipe_Ack___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E9CA0, UdpPipe_Ack, Array_InternalEnumerator_1_UdpKit_UdpPipe_Ack__get_Current, (Array_InternalEnumerator_1_UdpKit_UdpPipe_Ack___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Globalization_UmAlQuraCalendar_DateMapping___ctor, (Array_InternalEnumerator_1_System_Globalization_UmAlQuraCalendar_DateMapping___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Globalization_UmAlQuraCalendar_DateMapping__Dispose, (Array_InternalEnumerator_1_System_Globalization_UmAlQuraCalendar_DateMapping___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Globalization_UmAlQuraCalendar_DateMapping__MoveNext, (Array_InternalEnumerator_1_System_Globalization_UmAlQuraCalendar_DateMapping___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Globalization_UmAlQuraCalendar_DateMapping__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Globalization_UmAlQuraCalendar_DateMapping___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016EA030, Object *, Array_InternalEnumerator_1_System_Globalization_UmAlQuraCalendar_DateMapping__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Globalization_UmAlQuraCalendar_DateMapping___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016E9EC0, UmAlQuraCalendar_DateMapping, Array_InternalEnumerator_1_System_Globalization_UmAlQuraCalendar_DateMapping__get_Current, (Array_InternalEnumerator_1_System_Globalization_UmAlQuraCalendar_DateMapping___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UnitySynchronizationContext_WorkRequest___ctor, (Array_InternalEnumerator_1_UnityEngine_UnitySynchronizationContext_WorkRequest___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UnitySynchronizationContext_WorkRequest__Dispose, (Array_InternalEnumerator_1_UnityEngine_UnitySynchronizationContext_WorkRequest___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UnitySynchronizationContext_WorkRequest__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UnitySynchronizationContext_WorkRequest___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UnitySynchronizationContext_WorkRequest__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UnitySynchronizationContext_WorkRequest___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016EA240, Object *, Array_InternalEnumerator_1_UnityEngine_UnitySynchronizationContext_WorkRequest__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UnitySynchronizationContext_WorkRequest___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016EA0C0, UnitySynchronizationContext_WorkRequest, Array_InternalEnumerator_1_UnityEngine_UnitySynchronizationContext_WorkRequest__get_Current, (Array_InternalEnumerator_1_UnityEngine_UnitySynchronizationContext_WorkRequest___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016EA450, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016EA2E0, VisualTreeAsset_SlotDefinition, Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016EA650, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016EA4E0, VisualTreeAsset_SlotUsageEntry, Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016EA860, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016EA6E0, VisualTreeAsset_UsingEntry, Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId___ctor, (Array_InternalEnumerator_1_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId__Dispose, (Array_InternalEnumerator_1_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId__MoveNext, (Array_InternalEnumerator_1_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016EAAC0, Object *, Array_InternalEnumerator_1_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016EA900, WetDecalSystem_MaterialBatchId, Array_InternalEnumerator_1_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId__get_Current, (Array_InternalEnumerator_1_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK___ctor, (Array_InternalEnumerator_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__Dispose, (Array_InternalEnumerator_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__MoveNext, (Array_InternalEnumerator_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016EAD20, Object *, Array_InternalEnumerator_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016EABB0, XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK, Array_InternalEnumerator_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__get_Current, (Array_InternalEnumerator_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Xml_XmlEventCache_XmlEvent___ctor, (Array_InternalEnumerator_1_System_Xml_XmlEventCache_XmlEvent___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Xml_XmlEventCache_XmlEvent__Dispose, (Array_InternalEnumerator_1_System_Xml_XmlEventCache_XmlEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Xml_XmlEventCache_XmlEvent__MoveNext, (Array_InternalEnumerator_1_System_Xml_XmlEventCache_XmlEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Xml_XmlEventCache_XmlEvent__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Xml_XmlEventCache_XmlEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016EAF40, Object *, Array_InternalEnumerator_1_System_Xml_XmlEventCache_XmlEvent__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Xml_XmlEventCache_XmlEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016EADB0, XmlEventCache_XmlEvent, Array_InternalEnumerator_1_System_Xml_XmlEventCache_XmlEvent__get_Current, (Array_InternalEnumerator_1_System_Xml_XmlEventCache_XmlEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Xml_XmlNamespaceManager_NamespaceDeclaration___ctor, (Array_InternalEnumerator_1_System_Xml_XmlNamespaceManager_NamespaceDeclaration___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Xml_XmlNamespaceManager_NamespaceDeclaration__Dispose, (Array_InternalEnumerator_1_System_Xml_XmlNamespaceManager_NamespaceDeclaration___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Xml_XmlNamespaceManager_NamespaceDeclaration__MoveNext, (Array_InternalEnumerator_1_System_Xml_XmlNamespaceManager_NamespaceDeclaration___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Xml_XmlNamespaceManager_NamespaceDeclaration__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Xml_XmlNamespaceManager_NamespaceDeclaration___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016EB170, Object *, Array_InternalEnumerator_1_System_Xml_XmlNamespaceManager_NamespaceDeclaration__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Xml_XmlNamespaceManager_NamespaceDeclaration___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016EAFF0, XmlNamespaceManager_NamespaceDeclaration, Array_InternalEnumerator_1_System_Xml_XmlNamespaceManager_NamespaceDeclaration__get_Current, (Array_InternalEnumerator_1_System_Xml_XmlNamespaceManager_NamespaceDeclaration___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry___ctor, (Array_InternalEnumerator_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry__Dispose, (Array_InternalEnumerator_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry__MoveNext, (Array_InternalEnumerator_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016EB380, Object *, Array_InternalEnumerator_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016EB210, XmlSchemaObjectTable_XmlSchemaObjectEntry, Array_InternalEnumerator_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry__get_Current, (Array_InternalEnumerator_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Xml_XmlTextReaderImpl_ParsingState___ctor, (Array_InternalEnumerator_1_System_Xml_XmlTextReaderImpl_ParsingState___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Xml_XmlTextReaderImpl_ParsingState__Dispose, (Array_InternalEnumerator_1_System_Xml_XmlTextReaderImpl_ParsingState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Xml_XmlTextReaderImpl_ParsingState__MoveNext, (Array_InternalEnumerator_1_System_Xml_XmlTextReaderImpl_ParsingState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Xml_XmlTextReaderImpl_ParsingState__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Xml_XmlTextReaderImpl_ParsingState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016EB5D0, Object *, Array_InternalEnumerator_1_System_Xml_XmlTextReaderImpl_ParsingState__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Xml_XmlTextReaderImpl_ParsingState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016EB410, XmlTextReaderImpl_ParsingState, Array_InternalEnumerator_1_System_Xml_XmlTextReaderImpl_ParsingState__get_Current, (Array_InternalEnumerator_1_System_Xml_XmlTextReaderImpl_ParsingState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Xml_XmlTextWriter_Namespace___ctor, (Array_InternalEnumerator_1_System_Xml_XmlTextWriter_Namespace___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Xml_XmlTextWriter_Namespace__Dispose, (Array_InternalEnumerator_1_System_Xml_XmlTextWriter_Namespace___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Xml_XmlTextWriter_Namespace__MoveNext, (Array_InternalEnumerator_1_System_Xml_XmlTextWriter_Namespace___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Xml_XmlTextWriter_Namespace__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Xml_XmlTextWriter_Namespace___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016EB840, Object *, Array_InternalEnumerator_1_System_Xml_XmlTextWriter_Namespace__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Xml_XmlTextWriter_Namespace___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016EB6C0, XmlTextWriter_Namespace, Array_InternalEnumerator_1_System_Xml_XmlTextWriter_Namespace__get_Current, (Array_InternalEnumerator_1_System_Xml_XmlTextWriter_Namespace___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Xml_XmlTextWriter_TagInfo___ctor, (Array_InternalEnumerator_1_System_Xml_XmlTextWriter_TagInfo___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Xml_XmlTextWriter_TagInfo__Dispose, (Array_InternalEnumerator_1_System_Xml_XmlTextWriter_TagInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Xml_XmlTextWriter_TagInfo__MoveNext, (Array_InternalEnumerator_1_System_Xml_XmlTextWriter_TagInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Xml_XmlTextWriter_TagInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Xml_XmlTextWriter_TagInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016EBA70, Object *, Array_InternalEnumerator_1_System_Xml_XmlTextWriter_TagInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Xml_XmlTextWriter_TagInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016EB8E0, XmlTextWriter_TagInfo, Array_InternalEnumerator_1_System_Xml_XmlTextWriter_TagInfo__get_Current, (Array_InternalEnumerator_1_System_Xml_XmlTextWriter_TagInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_AttrName___ctor, (Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_AttrName___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_AttrName__Dispose, (Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_AttrName___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_AttrName__MoveNext, (Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_AttrName___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_AttrName__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_AttrName___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016EBCB0, Object *, Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_AttrName__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_AttrName___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016EBB30, XmlWellFormedWriter_AttrName, Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_AttrName__get_Current, (Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_AttrName___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_ElementScope___ctor, (Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_ElementScope___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_ElementScope__Dispose, (Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_ElementScope___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_ElementScope__MoveNext, (Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_ElementScope___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_ElementScope__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_ElementScope___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016EBEE0, Object *, Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_ElementScope__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_ElementScope___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016EBD50, XmlWellFormedWriter_ElementScope, Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_ElementScope__get_Current, (Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_ElementScope___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_Namespace___ctor, (Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_Namespace___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_Namespace__Dispose, (Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_Namespace___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_Namespace__MoveNext, (Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_Namespace___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_Namespace__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_Namespace___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016EC110, Object *, Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_Namespace__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_Namespace___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016EBF90, XmlWellFormedWriter_Namespace, Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_Namespace__get_Current, (Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_Namespace___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_ftLightmaps_LightmapAdditionalData___ctor, (Array_InternalEnumerator_1_ftLightmaps_LightmapAdditionalData___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_ftLightmaps_LightmapAdditionalData__Dispose, (Array_InternalEnumerator_1_ftLightmaps_LightmapAdditionalData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_ftLightmaps_LightmapAdditionalData__MoveNext, (Array_InternalEnumerator_1_ftLightmaps_LightmapAdditionalData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_ftLightmaps_LightmapAdditionalData__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_ftLightmaps_LightmapAdditionalData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016EC330, Object *, Array_InternalEnumerator_1_ftLightmaps_LightmapAdditionalData__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_ftLightmaps_LightmapAdditionalData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016EC1B0, ftLightmaps_LightmapAdditionalData, Array_InternalEnumerator_1_ftLightmaps_LightmapAdditionalData__get_Current, (Array_InternalEnumerator_1_ftLightmaps_LightmapAdditionalData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy___ctor, (Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__Dispose, (Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__MoveNext, (Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016EC540, Object *, Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016EC3D0, gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy, Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__get_Current, (Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_ArraySegment_1_Byte___ctor, (Array_InternalEnumerator_1_ArraySegment_1_Byte_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_ArraySegment_1_Byte__Dispose, (Array_InternalEnumerator_1_ArraySegment_1_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_ArraySegment_1_Byte__MoveNext, (Array_InternalEnumerator_1_ArraySegment_1_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_ArraySegment_1_Byte__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_ArraySegment_1_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682D00, Object *, Array_InternalEnumerator_1_ArraySegment_1_Byte__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_ArraySegment_1_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B80, ArraySegment_1_Byte_, Array_InternalEnumerator_1_ArraySegment_1_Byte__get_Current, (Array_InternalEnumerator_1_ArraySegment_1_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8910, Array_InternalEnumerator_1_ArraySegment_1_Byte__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___ctor, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__Dispose, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__MoveNext, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682F10, Object *, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682D90, AsyncOperationHandle_1_System_Object_, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__get_Current, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8890, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta___ctor, (Array_InternalEnumerator_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta__Dispose, (Array_InternalEnumerator_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta__MoveNext, (Array_InternalEnumerator_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01683130, Object *, Array_InternalEnumerator_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682FB0, VoiceSender_1_TPeer_ChannelDelta_Dissonance_Integrations_PhotonBolt_BoltPeer_, Array_InternalEnumerator_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta__get_Current, (Array_InternalEnumerator_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB88A8, Array_InternalEnumerator_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01683340, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016831D0, DynamicHeightVirtualizationController_1_T_ContentHeightCacheInfo_System_Object_, Array_InternalEnumerator_1_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB88A0, Array_InternalEnumerator_1_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01683540, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016833D0, StylePropertyAnimationSystem_Values_1_T_EmptyData_Background_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8878, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__1__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__1 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__1_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__1_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__1_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01683740, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__1_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016835D0, StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__1_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8870, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__1_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__2__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__2 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__2_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__2_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__2_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01683940, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__2_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016837D0, StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__2_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__2 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8888, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__2_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__3__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__3 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__3_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__3 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__3_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__3 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__3_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__3 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01683B40, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__3_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__3 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016839D0, StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__3_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__3 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8880, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__3_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__4__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__4 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__4_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__4_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__4_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01683D40, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__4_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01683BD0, StylePropertyAnimationSystem_Values_1_T_EmptyData_Length_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__4_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__4 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB88D8, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__4_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__5__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__5 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__5_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__5 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__5_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__5 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__5_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__5 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01683F40, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__5_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__5 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01683DD0, StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__5_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__5 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB88D0, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__5_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__6__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__6 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__6_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__6 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__6_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__6 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__6_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__6 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01684140, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__6_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__6 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01683FD0, StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__6_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__6 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB88E8, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__6_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__7__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__7 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__7_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__7 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__7_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__7 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__7_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__7 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01684340, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__7_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__7 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016841D0, StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__7_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__7 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB88E0, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__7_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__8__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__8 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__8_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__8 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__8_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__8 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__8_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__8 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01684540, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__8_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__8 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016843D0, StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__8_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__8 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB88B8, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__8_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__9__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__9 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__9_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__9 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__9_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__9 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__9_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__9 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01684740, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__9_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__9 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016845D0, StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__9_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__9 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB88B0, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__9_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__10__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__10 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__10_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__10 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__10_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__10 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__10_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__10 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01684940, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__10_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__10 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016847D0, StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__10_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__10 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB88C8, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__10_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__11__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__11 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__11_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__11 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__11_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__11 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__11_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__11 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01684B40, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__11_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__11 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016849D0, StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__11_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__11 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB88C0, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_EmptyData__11_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Timeline_IntervalTree_1_Entry___ctor, (Array_InternalEnumerator_1_UnityEngine_Timeline_IntervalTree_1_Entry_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Timeline_IntervalTree_1_Entry__Dispose, (Array_InternalEnumerator_1_UnityEngine_Timeline_IntervalTree_1_Entry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Timeline_IntervalTree_1_Entry__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Timeline_IntervalTree_1_Entry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Timeline_IntervalTree_1_Entry__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Timeline_IntervalTree_1_Entry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01684D50, Object *, Array_InternalEnumerator_1_UnityEngine_Timeline_IntervalTree_1_Entry__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Timeline_IntervalTree_1_Entry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01684BD0, IntervalTree_1_T_Entry_System_Object_, Array_InternalEnumerator_1_UnityEngine_Timeline_IntervalTree_1_Entry__get_Current, (Array_InternalEnumerator_1_UnityEngine_Timeline_IntervalTree_1_Entry_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8818, Array_InternalEnumerator_1_UnityEngine_Timeline_IntervalTree_1_Entry__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Xml_Linq_XHashtable_1_XHashtableState_Entry___ctor, (Array_InternalEnumerator_1_System_Xml_Linq_XHashtable_1_XHashtableState_Entry_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Xml_Linq_XHashtable_1_XHashtableState_Entry__Dispose, (Array_InternalEnumerator_1_System_Xml_Linq_XHashtable_1_XHashtableState_Entry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Xml_Linq_XHashtable_1_XHashtableState_Entry__MoveNext, (Array_InternalEnumerator_1_System_Xml_Linq_XHashtable_1_XHashtableState_Entry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Xml_Linq_XHashtable_1_XHashtableState_Entry__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Xml_Linq_XHashtable_1_XHashtableState_Entry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01684F60, Object *, Array_InternalEnumerator_1_System_Xml_Linq_XHashtable_1_XHashtableState_Entry__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Xml_Linq_XHashtable_1_XHashtableState_Entry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01684DF0, XHashtable_1_TValue_XHashtableState_TValue_Entry_System_Object_, Array_InternalEnumerator_1_System_Xml_Linq_XHashtable_1_XHashtableState_Entry__get_Current, (Array_InternalEnumerator_1_System_Xml_Linq_XHashtable_1_XHashtableState_Entry_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8810, Array_InternalEnumerator_1_System_Xml_Linq_XHashtable_1_XHashtableState_Entry__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry___ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01685170, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01684FF0, Dictionary_2_TKey_TValue_Entry_System_ValueTuple_2_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8828, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__1__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__1 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__1_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__1_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__1_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01685390, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__1_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01685210, Dictionary_2_TKey_TValue_Entry_System_ValueTuple_2_System_Object__1, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__1_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8820, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__1_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__2__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__2 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__2_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__2_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__2_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016855B0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__2_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01685430, Dictionary_2_TKey_TValue_Entry_System_Byte_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__2_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__2 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB87F8, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__2_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__3__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__3 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__3_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__3 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__3_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__3 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__3_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__3 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016857C0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__3_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__3 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01685650, Dictionary_2_TKey_TValue_Entry_System_ByteEnum_System_Int32_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__3_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__3 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB87F0, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__3_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__4__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__4 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__4_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__4_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__4_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016859D0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__4_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01685850, Dictionary_2_TKey_TValue_Entry_System_ByteEnum_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__4_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__4 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8808, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__4_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__5__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__5 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__5_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__5 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__5_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__5 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__5_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__5 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01685C00, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__5_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__5 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01685A70, Dictionary_2_TKey_TValue_Entry_Dissonance_Audio_Playback_FrameFormat_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__5_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__5 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8800, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__5_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__6__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__6 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__6_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__6 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__6_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__6 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__6_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__6 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01685E30, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__6_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__6 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01685CB0, Dictionary_2_TKey_TValue_Entry_System_Guid_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__6_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__6 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8858, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__6_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__7__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__7 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__7_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__7 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__7_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__7 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__7_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__7 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01686050, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__7_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__7 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01685ED0, Dictionary_2_TKey_TValue_Entry_System_Guid_System_UInt32_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__7_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__7 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8850, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__7_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__8__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__8 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__8_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__8 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__8_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__8 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__8_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__8 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01686270, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__8_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__8 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016860F0, Dictionary_2_TKey_TValue_Entry_UnityEngine_Hash128_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__8_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__8 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8868, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__8_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__9__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__9 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__9_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__9 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__9_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__9 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__9_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__9 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01686490, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__9_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__9 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01686310, Dictionary_2_TKey_TValue_Entry_Pathfinding_Int2_System_Int32_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__9_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__9 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8860, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__9_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__10__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__10 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__10_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__10 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__10_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__10 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__10_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__10 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016866B0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__10_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__10 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01686530, Dictionary_2_TKey_TValue_Entry_Pathfinding_Int3_System_Int32_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__10_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__10 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8838, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__10_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__11__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__11 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__11_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__11 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__11_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__11 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__11_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__11 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016868D0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__11_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__11 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01686750, Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__11_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__11 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8830, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__11_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__12__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__12 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__12_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__12 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__12_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__12 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__12_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__12 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01686AF0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__12_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__12 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01686970, Dictionary_2_TKey_TValue_Entry_System_Int32_System_ValueTuple_2_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__12_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__12 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8848, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__12_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__13__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__13 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__13_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__13 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__13_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__13 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__13_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__13 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01686D10, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__13_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__13 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01686BA0, Dictionary_2_TKey_TValue_Entry_System_Int32_System_Boolean_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__13_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__13 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8840, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__13_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__14__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__14 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__14_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__14 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__14_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__14 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__14_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__14 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01686F10, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__14_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__14 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01686DA0, Dictionary_2_TKey_TValue_Entry_System_Int32_System_ByteEnum_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__14_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__14 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB87E0, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__14_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__15__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__15 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__15_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__15 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__15_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__15 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__15_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__15 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01687150, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__15_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__15 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01686FE0, Dictionary_2_TKey_TValue_Entry_System_Int32_System_Char_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__15_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__15 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE2E8, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__15_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__16__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__16 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__16_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__16 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__16_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__16 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__16_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__16 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01687370, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__16_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__16 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016871E0, Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__16_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__16 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE308, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__16_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__17__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__17 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__17_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__17 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__17_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__17 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__17_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__17 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016875A0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__17_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__17 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01687430, Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int16_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__17_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__17 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE2F8, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__17_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__18__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__18 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__18_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__18 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__18_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__18 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__18_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__18 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016877B0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__18_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__18 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01687630, Dictionary_2_TKey_TValue_Entry_System_Int32_Pathfinding_Int3_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__18_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__18 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE2C0, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__18_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry___ctor, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__Dispose, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__MoveNext, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016879C0, Object *, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01687850, ADictionary_2_TKey_TValue_Entry_System_Int32_System_Int32_, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__get_Current, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE2B0, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__19__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__19 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__19_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__19 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__19_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__19 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__19_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__19 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01687BC0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__19_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__19 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01687A50, Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int32_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__19_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__19 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE2E0, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__19_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__20__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__20 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__20_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__20 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__20_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__20 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__20_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__20 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01687DC0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__20_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__20 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01687C50, Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int32Enum_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__20_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__20 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE2D0, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__20_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__21__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__21 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__21_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__21 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__21_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__21 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__21_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__21 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01687FD0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__21_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__21 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01687E50, Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int64_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__21_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__21 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE1E8, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__21_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__1__ctor, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__1 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__1_Dispose, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__1_MoveNext, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__1_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016881F0, Object *, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__1_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01688070, ADictionary_2_TKey_TValue_Entry_System_Int32_System_Object_, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__1_get_Current, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE1E0, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__1_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__22__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__22 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__22_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__22 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__22_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__22 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__22_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__22 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01688410, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__22_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__22 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01688290, Dictionary_2_TKey_TValue_Entry_System_Int32_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__22_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__22 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE208, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__22_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__23__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__23 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__23_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__23 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__23_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__23 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__23_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__23 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01688630, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__23_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__23 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016884B0, Dictionary_2_TKey_TValue_Entry_System_Int32_PlayerFlashlightBeam_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__23_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__23 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE1F8, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__23_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__24__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__24 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__24_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__24 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__24_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__24 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__24_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__24 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01688850, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__24_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__24 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016886D0, Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_RenderInstancedDataLayout_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__24_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__24 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE1C8, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__24_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__25__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__25 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__25_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__25 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__25_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__25 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__25_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__25 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01688A60, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__25_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__25 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016888F0, Dictionary_2_TKey_TValue_Entry_System_Int32_System_Single_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__25_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__25 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE1B8, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__25_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__26__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__26 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__26_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__26 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__26_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__26 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__26_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__26 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01688C70, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__26_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__26 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01688AF0, Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_TreeItem_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__26_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__26 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE1D8, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__26_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__27__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__27 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__27_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__27 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__27_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__27 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__27_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__27 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01688E90, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__27_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__27 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01688D10, Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Vector2Int_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__27_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__27 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE1D0, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__27_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__28__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__28 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__28_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__28 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__28_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__28 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__28_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__28 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016890B0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__28_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__28 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01688F30, Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Vector4_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__28_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__28 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE258, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__28_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__29__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__29 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__29_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__29 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__29_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__29 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__29_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__29 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016892E0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__29_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__29 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01689150, Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__29_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__29 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE250, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__29_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__30__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__30 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__30_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__30 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__30_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__30 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__30_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__30 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01689500, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__30_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__30 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01689390, Dictionary_2_TKey_TValue_Entry_System_Int32Enum_System_Int32Enum_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__30_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__30 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE278, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__30_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__31__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__31 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__31_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__31 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__31_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__31 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__31_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__31 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01689710, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__31_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__31 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01689590, Dictionary_2_TKey_TValue_Entry_System_Int32Enum_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__31_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__31 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE268, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__31_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__32__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__32 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__32_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__32 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__32_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__32 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__32_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__32 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01689960, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__32_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__32 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016897B0, Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_UIElements_ComputedStyle_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__32_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__32 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE228, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__32_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__33__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__33 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__33_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__33 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__33_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__33 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__33_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__33 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01689BC0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__33_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__33 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01689A40, Dictionary_2_TKey_TValue_Entry_System_Int64_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__33_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__33 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE218, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__33_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__34__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__34 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__34_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__34 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__34_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__34 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__34_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__34 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01689DE0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__34_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__34 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01689C60, Dictionary_2_TKey_TValue_Entry_System_IntPtr_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__34_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__34 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE248, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__34_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__35__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__35 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__35_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__35 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__35_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__35 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__35_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__35 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168A010, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__35_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__35 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01689E80, Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__35_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__35 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE238, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__35_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__36__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__36 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__36_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__36 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__36_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__36 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__36_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__36 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168A240, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__36_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__36 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168A0C0, Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__36_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__36 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE140, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__36_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__37__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__37 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__37_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__37 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__37_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__37 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__37_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__37 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168A470, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__37_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__37 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168A2E0, Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__37_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__37 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE130, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__37_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__38__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__38 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__38_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__38 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__38_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__38 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__38_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__38 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168A6A0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__38_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__38 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168A520, Dictionary_2_TKey_TValue_Entry_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__38_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__38 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE158, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__38_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__39__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__39 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__39_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__39 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__39_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__39 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__39_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__39 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168A8C0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__39_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__39 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168A740, Dictionary_2_TKey_TValue_Entry_Photon_Bolt_NetworkId_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__39_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__39 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE150, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__39_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__40__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__40 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__40_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__40 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__40_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__40 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__40_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__40 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168AAF0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__40_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__40 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168A960, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__40_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__40 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE118, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__40_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__41__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__41 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__41_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__41 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__41_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__41 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__41_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__41 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168AD30, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__41_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__41 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168ABA0, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__41_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__41 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE110, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__41_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__42__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__42 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__42_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__42 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__42_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__42 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__42_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__42 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168AF60, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__42_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__42 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168ADE0, Dictionary_2_TKey_TValue_Entry_System_Object_System_Boolean_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__42_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__42 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE128, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__42_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__43__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__43 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__43_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__43 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__43_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__43 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__43_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__43 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168B190, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__43_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__43 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168B000, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Bounds_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__43_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__43 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE120, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__43_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__44__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__44 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__44_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__44 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__44_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__44 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__44_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__44 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168B3C0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__44_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__44 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168B240, Dictionary_2_TKey_TValue_Entry_System_Object_System_Byte_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__44_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__44 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE198, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__44_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__45__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__45 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__45_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__45 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__45_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__45 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__45_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__45 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168B5E0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__45_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__45 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168B460, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Color_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__45_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__45 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE190, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__45_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__46__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__46 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__46_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__46 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__46_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__46 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__46_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__46 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168B800, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__46_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__46 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168B680, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Color32_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__46_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__46 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE1A8, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__46_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__2__ctor, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__2 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__2_Dispose, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__2_MoveNext, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__2_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168BA20, Object *, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__2_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168B8A0, ADictionary_2_TKey_TValue_Entry_System_Object_System_Int32_, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__2_get_Current, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__2 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE1A0, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__2_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__47__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__47 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__47_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__47 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__47_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__47 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__47_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__47 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168BC40, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__47_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__47 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168BAC0, Dictionary_2_TKey_TValue_Entry_System_Object_System_Int32_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__47_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__47 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE168, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__47_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__3__ctor, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__3 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__3_Dispose, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__3 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__3_MoveNext, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__3 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__3_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__3 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168BE60, Object *, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__3_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__3 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168BCE0, ADictionary_2_TKey_TValue_Entry_System_Object_System_Int32Enum_, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__3_get_Current, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__3 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE160, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__3_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__48__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__48 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__48_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__48 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__48_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__48 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__48_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__48 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168C080, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__48_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__48 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168BF00, Dictionary_2_TKey_TValue_Entry_System_Object_System_Int32Enum_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__48_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__48 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE188, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__48_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__4__ctor, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__4 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__4_Dispose, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__4_MoveNext, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__4_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168C2A0, Object *, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__4_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168C120, ADictionary_2_TKey_TValue_Entry_System_Object_System_Object_, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__4_get_Current, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__4 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE178, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_ADictionary_2_Entry__4_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__49__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__49 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__49_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__49 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__49_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__49 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__49_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__49 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168C4C0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__49_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__49 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168C340, Dictionary_2_TKey_TValue_Entry_System_Object_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__49_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__49 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE090, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__49_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__50__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__50 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__50_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__50 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__50_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__50 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__50_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__50 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168C6E0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__50_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__50 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168C560, Dictionary_2_TKey_TValue_Entry_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__50_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__50 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE088, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__50_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__51__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__51 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__51_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__51 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__51_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__51 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__51_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__51 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168C910, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__51_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__51 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168C780, Dictionary_2_TKey_TValue_Entry_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__51_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__51 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE0B0, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__51_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__52__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__52 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__52_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__52 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__52_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__52 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__52_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__52 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168CB50, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__52_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__52 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168C9D0, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Playables_Playable_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__52_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__52 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE0A0, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__52_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__53__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__53 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__53_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__53 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__53_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__53 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__53_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__53 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168CD80, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__53_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__53 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168CBF0, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__53_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__53 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE060, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__53_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__54__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__54 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__54_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__54 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__54_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__54 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__54_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__54 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168CFB0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__54_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__54 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168CE30, Dictionary_2_TKey_TValue_Entry_System_Object_System_Resources_ResourceLocator_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__54_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__54 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE050, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__54_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__55__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__55 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__55_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__55 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__55_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__55 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__55_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__55 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168D1D0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__55_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__55 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168D050, Dictionary_2_TKey_TValue_Entry_System_Object_System_Single_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__55_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__55 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE080, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__55_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__56__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__56 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__56_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__56 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__56_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__56 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__56_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__56 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168D3F0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__56_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__56 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168D270, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__56_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__56 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE070, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__56_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__57__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__57 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__57_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__57 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__57_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__57 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__57_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__57 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168D610, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__57_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__57 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168D490, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_UIElements_TextureId_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__57_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__57 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE0F8, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__57_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__58__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__58 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__58_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__58 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__58_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__58 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__58_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__58 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168D830, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__58_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__58 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168D6B0, Dictionary_2_TKey_TValue_Entry_System_Object_System_TimeSpan_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__58_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__58 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE0E8, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__58_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__59__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__59 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__59_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__59 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__59_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__59 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__59_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__59 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168DA60, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__59_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__59 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168D8D0, Dictionary_2_TKey_TValue_Entry_System_Object_UdpKit_UdpEndPoint_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__59_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__59 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE108, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__59_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__60__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__60 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__60_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__60 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__60_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__60 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__60_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__60 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168DC90, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__60_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__60 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168DB10, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Vector2_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__60_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__60 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE100, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__60_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__61__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__61 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__61_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__61 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__61_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__61 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__61_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__61 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168DEB0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__61_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__61 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168DD30, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Vector3_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__61_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__61 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE0C0, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__61_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__62__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__62 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__62_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__62 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__62_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__62 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__62_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__62 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168E140, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__62_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__62 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168DF50, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__62_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__62 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE0B8, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__62_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__63__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__63 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__63_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__63 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__63_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__63 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__63_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__63 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168E3D0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__63_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__63 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168E250, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__63_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__63 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE0D8, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__63_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__64__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__64 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__64_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__64 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__64_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__64 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__64_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__64 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168E620, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__64_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__64 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168E470, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__64_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__64 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE0D0, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__64_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__65__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__65 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__65_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__65 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__65_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__65 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__65_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__65 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168E870, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__65_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__65 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168E6F0, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__65_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__65 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDFE0, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__65_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__66__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__66 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__66_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__66 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__66_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__66 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__66_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__66 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168EAA0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__66_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__66 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168E910, Dictionary_2_TKey_TValue_Entry_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__66_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__66 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDFD8, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__66_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__67__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__67 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__67_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__67 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__67_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__67 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__67_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__67 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168ECF0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__67_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__67 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168EB60, Dictionary_2_TKey_TValue_Entry_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__67_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__67 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDFF8, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__67_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__68__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__68 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__68_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__68 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__68_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__68 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__68_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__68 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168EF30, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__68_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__68 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168EDB0, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__68_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__68 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDFF0, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__68_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__69__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__69 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__69_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__69 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__69_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__69 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__69_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__69 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168F150, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__69_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__69 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168EFD0, Dictionary_2_TKey_TValue_Entry_Photon_Bolt_PrefabId_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__69_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__69 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDFC0, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__69_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__70__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__70 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__70_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__70 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__70_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__70 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__70_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__70 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168F380, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__70_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__70 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168F1F0, Dictionary_2_TKey_TValue_Entry_UnityEngine_RaycastHit_System_Int32_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__70_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__70 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDFB8, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__70_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__71__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__71 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__71_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__71 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__71_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__71 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__71_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__71 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168F5E0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__71_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__71 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168F440, Dictionary_2_TKey_TValue_Entry_System_Single_SplineMesh_CurveSample_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__71_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__71 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDFD0, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__71_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__72__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__72 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__72_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__72 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__72_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__72 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__72_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__72 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168F830, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__72_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__72 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168F6B0, Dictionary_2_TKey_TValue_Entry_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__72_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__72 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDFC8, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__72_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__73__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__73 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__73_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__73 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__73_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__73 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__73_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__73 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168FA50, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__73_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__73 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168F8D0, Dictionary_2_TKey_TValue_Entry_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__73_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__73 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE030, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__73_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__74__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__74 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__74_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__74 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__74_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__74 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__74_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__74 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168FC70, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__74_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__74 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168FAF0, Dictionary_2_TKey_TValue_Entry_Photon_Bolt_TypeId_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__74_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__74 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE020, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__74_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__75__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__75 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__75_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__75 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__75_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__75 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__75_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__75 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168FE90, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__75_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__75 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168FD10, Dictionary_2_TKey_TValue_Entry_System_UInt16_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__75_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__75 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE040, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__75_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__76__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__76 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__76_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__76 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__76_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__76 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__76_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__76 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016900C0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__76_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__76 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0168FF30, Dictionary_2_TKey_TValue_Entry_System_UInt16_Dissonance_PlayerChannel_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__76_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__76 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE038, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__76_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__77__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__77 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__77_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__77 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__77_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__77 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__77_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__77 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01690300, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__77_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__77 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01690170, Dictionary_2_TKey_TValue_Entry_System_UInt16_Dissonance_RoomChannel_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__77_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__77 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE008, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__77_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__78__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__78 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__78_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__78 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__78_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__78 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__78_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__78 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01690530, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__78_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__78 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016903C0, Dictionary_2_TKey_TValue_Entry_System_UInt32_System_Boolean_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__78_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__78 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE000, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__78_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__79__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__79 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__79_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__79 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__79_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__79 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__79_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__79 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01690750, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__79_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__79 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016905C0, Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__79_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__79 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE018, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__79_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__80__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__80 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__80_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__80 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__80_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__80 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__80_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__80 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01690980, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__80_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__80 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01690810, Dictionary_2_TKey_TValue_Entry_System_UInt32_System_Int32_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__80_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__80 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE010, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__80_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__81__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__81 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__81_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__81 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__81_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__81 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__81_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__81 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01690B90, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__81_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__81 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01690A10, Dictionary_2_TKey_TValue_Entry_System_UInt32_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__81_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__81 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDF50, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__81_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__82__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__82 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__82_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__82 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__82_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__82 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__82_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__82 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01690DD0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__82_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__82 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01690C30, Dictionary_2_TKey_TValue_Entry_System_UInt32_SessionClient_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__82_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__82 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDF48, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__82_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__83__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__83 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__83_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__83 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__83_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__83 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__83_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__83 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01691010, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__83_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__83 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01690E90, Dictionary_2_TKey_TValue_Entry_System_UInt64_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__83_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__83 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDF60, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__83_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__84__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__84 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__84_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__84 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__84_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__84 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__84_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__84 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01691240, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__84_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__84 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016910B0, Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__84_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__84 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDF58, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__84_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__85__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__85 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__85_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__85 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__85_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__85 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__85_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__85 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01691470, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__85_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__85 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016912F0, Dictionary_2_TKey_TValue_Entry_UdpKit_UdpChannelName_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__85_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__85 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDF30, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__85_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__86__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__86 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__86_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__86 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__86_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__86 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__86_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__86 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016916A0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__86_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__86 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01691510, Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__86_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__86 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDF28, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__86_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__87__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__87 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__87_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__87 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__87_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__87 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__87_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__87 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016918E0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__87_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__87 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01691750, Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_UInt32_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__87_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__87 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDF40, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__87_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__88__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__88 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__88_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__88 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__88_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__88 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__88_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__88 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01691B10, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__88_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__88 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01691990, Dictionary_2_TKey_TValue_Entry_Photon_Bolt_UniqueId_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__88_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__88 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDF38, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__88_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__89__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__89 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__89_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__89 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__89_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__89 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__89_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__89 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01691D30, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__89_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__89 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01691BB0, Dictionary_2_TKey_TValue_Entry_UnityEngine_Vector3_System_Int32_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__89_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__89 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDFA0, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__89_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__90__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__90 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__90_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__90 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__90_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__90 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__90_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__90 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01691F50, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__90_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__90 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01691DD0, Dictionary_2_TKey_TValue_Entry_UnityEngine_Vector3Int_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__90_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__90 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDF98, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__90_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__91__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__91 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__91_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__91 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__91_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__91 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__91_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__91 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01692180, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__91_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__91 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01691FF0, Dictionary_2_TKey_TValue_Entry_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__91_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__91 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDFB0, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__91_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__92__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__92 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__92_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__92 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__92_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__92 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__92_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__92 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016923B0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__92_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__92 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01692230, Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__92_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__92 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDFA8, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__92_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__93__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__93 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__93_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__93 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__93_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__93 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__93_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__93 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016925E0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__93_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__93 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01692450, Dictionary_2_TKey_TValue_Entry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__93_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__93 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDF70, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__93_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__94__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__94 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__94_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__94 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__94_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__94 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__94_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__94 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01692820, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__94_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__94 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016926A0, Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__94_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__94 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDF68, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__94_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__95__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__95 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__95_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__95 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__95_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__95 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__95_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__95 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01692A40, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__95_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__95 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016928C0, Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__95_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__95 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDF88, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__95_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__96__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__96 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__96_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__96 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__96_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__96 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__96_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__96 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01692C80, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__96_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__96 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01692AE0, Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__96_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__96 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDF78, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__96_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__97__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__97 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__97_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__97 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__97_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__97 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__97_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__97 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01692EE0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__97_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__97 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01692D40, Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__97_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__97 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDEC0, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__97_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__98__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__98 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__98_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__98 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__98_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__98 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__98_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__98 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01693130, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__98_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__98 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01692FA0, Dictionary_2_TKey_TValue_Entry_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__98_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__98 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDEB8, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__98_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__99__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__99 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__99_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__99 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__99_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__99 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__99_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__99 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01693360, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__99_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__99 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016931E0, Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__99_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__99 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDED0, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__99_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__100__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__100 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__100_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__100 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__100_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__100 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__100_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__100 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01693580, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__100_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__100 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01693400, Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__100_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__100 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDEC8, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__100_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__101__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__101 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__101_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__101 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__101_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__101 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__101_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__101 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016937A0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__101_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__101 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01693620, Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__101_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__101 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDEA0, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__101_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__102__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__102 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__102_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__102 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__102_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__102 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__102_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__102 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016939C0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__102_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__102 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01693840, Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__102_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__102 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDE98, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__102_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__103__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__103 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__103_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__103 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__103_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__103 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__103_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__103 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01693C30, Object *, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__103_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__103 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01693A60, Dictionary_2_TKey_TValue_Entry_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__103_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__103 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDEB0, Array_InternalEnumerator_1_System_Collections_Generic_Dictionary_2_Entry__103_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb___ctor, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__Dispose, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__MoveNext, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01693E90, Object *, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01693D20, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object_, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__get_Current, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDEA8, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1__ctor, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1_Dispose, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1_MoveNext, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01694090, Object *, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01693F20, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object_, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1_get_Current, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDF10, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2__ctor, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2_Dispose, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2_MoveNext, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016942A0, Object *, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01694120, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2_get_Current, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDF08, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2___ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016944C0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01694340, KeyValuePair_2_System_ValueTuple_2_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDF20, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__1__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__1 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__1_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__1_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__1_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016946E0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__1_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01694560, KeyValuePair_2_System_ValueTuple_2_System_Object__1, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__1_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDF18, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__1_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__2__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__2 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__2_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__2_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__2_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016948F0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__2_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01694780, KeyValuePair_2_System_Byte_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__2_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__2 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDEE8, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__2_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__3__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__3 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__3_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__3 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__3_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__3 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__3_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__3 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01694AF0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__3_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__3 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01694980, KeyValuePair_2_System_ByteEnum_System_Int32_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__3_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__3 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDED8, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__3_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__4__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__4 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__4_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__4_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__4_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01694CF0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__4_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01694B80, KeyValuePair_2_System_ByteEnum_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__4_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__4 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDEF8, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__4_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__5__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__5 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__5_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__5 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__5_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__5 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__5_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__5 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01694EF0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__5_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__5 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01694D80, KeyValuePair_2_System_DateTime_System_UInt32_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__5_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__5 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDEF0, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__5_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__6__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__6 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__6_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__6 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__6_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__6 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__6_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__6 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01695100, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__6_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__6 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01694F80, KeyValuePair_2_Dissonance_Audio_Playback_FrameFormat_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__6_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__6 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDE30, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__6_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__7__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__7 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__7_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__7 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__7_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__7 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__7_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__7 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01695320, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__7_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__7 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016951A0, KeyValuePair_2_System_Guid_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__7_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__7 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDE28, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__7_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__8__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__8 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__8_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__8 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__8_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__8 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__8_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__8 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01695540, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__8_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__8 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016953C0, KeyValuePair_2_System_Guid_System_UInt32_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__8_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__8 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDE40, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__8_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__9__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__9 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__9_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__9 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__9_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__9 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__9_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__9 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01695760, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__9_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__9 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016955E0, KeyValuePair_2_UnityEngine_Hash128_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__9_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__9 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDE38, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__9_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__10__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__10 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__10_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__10 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__10_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__10 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__10_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__10 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01695980, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__10_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__10 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01695800, KeyValuePair_2_Pathfinding_Int2_System_Int32_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__10_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__10 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDE08, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__10_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__11__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__11 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__11_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__11 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__11_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__11 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__11_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__11 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01695B90, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__11_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__11 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01695A20, KeyValuePair_2_Pathfinding_Int3_System_Int32_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__11_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__11 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDDF8, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__11_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__12__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__12 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__12_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__12 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__12_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__12 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__12_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__12 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01695DA0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__12_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__12 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01695C20, KeyValuePair_2_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__12_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__12 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDE20, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__12_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__13__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__13 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__13_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__13 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__13_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__13 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__13_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__13 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01695FC0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__13_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__13 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01695E40, KeyValuePair_2_System_Int32_System_ValueTuple_2__3, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__13_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__13 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDE18, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__13_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__14__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__14 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__14_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__14 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__14_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__14 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__14_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__14 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016961E0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__14_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__14 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01696060, KeyValuePair_2_System_Int32_System_ValueTuple_2__2, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__14_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__14 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDE80, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__14_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__15__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__15 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__15_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__15 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__15_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__15 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__15_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__15 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016963F0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__15_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__15 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01696280, KeyValuePair_2_System_Int32_System_Boolean_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__15_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__15 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDE78, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__15_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__16__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__16 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__16_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__16 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__16_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__16 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__16_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__16 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016965F0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__16_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__16 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01696480, KeyValuePair_2_System_Int32_System_ByteEnum_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__16_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__16 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDE90, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__16_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__17__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__17 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__17_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__17 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__17_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__17 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__17_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__17 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016967F0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__17_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__17 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01696680, KeyValuePair_2_System_Int32_System_Char_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__17_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__17 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDE88, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__17_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__18__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__18 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__18_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__18 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__18_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__18 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__18_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__18 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01696A10, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__18_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__18 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01696880, KeyValuePair_2_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__18_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__18 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDE50, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__18_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__19__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__19 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__19_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__19 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__19_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__19 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__19_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__19 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01696C40, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__19_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__19 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01696AD0, KeyValuePair_2_System_Int32_System_Int16_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__19_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__19 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDE48, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__19_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__20__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__20 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__20_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__20 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__20_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__20 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__20_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__20 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01696E40, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__20_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__20 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01696CD0, KeyValuePair_2_System_Int32_Pathfinding_Int3_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__20_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__20 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDE68, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__20_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__21__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__21 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__21_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__21 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__21_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__21 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__21_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__21 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01697040, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__21_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__21 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01696ED0, KeyValuePair_2_System_Int32_System_Int32_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__21_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__21 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDE58, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__21_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__22__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__22 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__22_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__22 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__22_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__22 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__22_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__22 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01697240, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__22_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__22 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016970D0, KeyValuePair_2_System_Int32_System_Int32Enum_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__22_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__22 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDD68, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__22_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__23__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__23 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__23_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__23 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__23_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__23 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__23_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__23 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01697440, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__23_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__23 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016972D0, KeyValuePair_2_System_Int32_System_Int64_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__23_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__23 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDD58, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__23_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__24__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__24 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__24_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__24 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__24_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__24 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__24_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__24 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01697640, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__24_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__24 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016974D0, KeyValuePair_2_System_Int32_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__24_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__24 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDD88, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__24_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__25__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__25 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__25_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__25 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__25_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__25 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__25_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__25 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01697850, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__25_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__25 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016976D0, KeyValuePair_2_System_Int32_PlayerFlashlightBeam_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__25_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__25 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDD78, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__25_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__26__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__26 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__26_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__26 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__26_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__26 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__26_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__26 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01697A70, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__26_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__26 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016978F0, KeyValuePair_2_System_Int32_UnityEngine_RenderInstancedDataLayout_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__26_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__26 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDD28, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__26_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__27__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__27 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__27_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__27 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__27_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__27 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__27_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__27 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01697C80, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__27_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__27 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01697B10, KeyValuePair_2_System_Int32_System_Single_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__27_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__27 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDD10, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__27_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__28__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__28 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__28_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__28 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__28_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__28 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__28_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__28 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01697E90, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__28_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__28 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01697D10, KeyValuePair_2_System_Int32_UnityEngine_UIElements_TreeItem_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__28_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__28 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDD48, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__28_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__29__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__29 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__29_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__29 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__29_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__29 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__29_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__29 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016980B0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__29_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__29 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01697F30, KeyValuePair_2_System_Int32_UnityEngine_Vector2Int_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__29_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__29 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDD38, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__29_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__30__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__30 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__30_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__30 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__30_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__30 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__30_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__30 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016982D0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__30_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__30 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01698150, KeyValuePair_2_System_Int32_UnityEngine_Vector4_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__30_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__30 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDDD0, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__30_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__31__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__31 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__31_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__31 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__31_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__31 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__31_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__31 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01698500, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__31_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__31 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01698370, KeyValuePair_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__31_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__31 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDDC8, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__31_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__32__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__32 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__32_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__32 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__32_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__32 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__32_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__32 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01698720, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__32_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__32 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016985B0, KeyValuePair_2_System_Int32Enum_System_Int32Enum_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__32_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__32 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDDF0, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__32_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__33__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__33 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__33_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__33 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__33_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__33 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__33_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__33 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01698920, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__33_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__33 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016987B0, KeyValuePair_2_System_Int32Enum_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__33_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__33 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDDE0, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__33_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__34__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__34 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__34_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__34 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__34_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__34 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__34_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__34 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01698B60, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__34_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__34 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016989B0, KeyValuePair_2_System_Int64_UnityEngine_UIElements_ComputedStyle_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__34_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__34 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDDA0, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__34_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__35__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__35 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__35_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__35 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__35_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__35 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__35_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__35 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01698DA0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__35_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__35 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01698C30, KeyValuePair_2_System_Int64_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__35_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__35 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDD98, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__35_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__36__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__36 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__36_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__36 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__36_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__36 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__36_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__36 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01698FA0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__36_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__36 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01698E30, KeyValuePair_2_System_IntPtr_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__36_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__36 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDDB8, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__36_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__37__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__37 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__37_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__37 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__37_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__37 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__37_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__37 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016991B0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__37_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__37 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01699030, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__37_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__37 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDDA8, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__37_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__38__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__38 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__38_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__38 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__38_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__38 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__38_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__38 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016993D0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__38_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__38 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01699250, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__38_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__38 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDCA8, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__38_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__39__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__39 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__39_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__39 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__39_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__39 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__39_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__39 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016995F0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__39_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__39 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01699470, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__39_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__39 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDCA0, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__39_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__40__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__40 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__40_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__40 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__40_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__40 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__40_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__40 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01699800, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__40_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__40 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01699690, KeyValuePair_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__40_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__40 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDCB8, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__40_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__41__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__41 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__41_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__41 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__41_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__41 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__41_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__41 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01699A00, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__41_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__41 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01699890, KeyValuePair_2_Photon_Bolt_NetworkId_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__41_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__41 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDCB0, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__41_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__42__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__42 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__42_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__42 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__42_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__42 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__42_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__42 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01699C10, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__42_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__42 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01699A90, KeyValuePair_2_System_Object_System_ArraySegment_1_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__42_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__42 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDC80, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__42_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__43__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__43 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__43_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__43 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__43_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__43 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__43_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__43 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01699E40, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__43_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__43 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01699CB0, KeyValuePair_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__43_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__43 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDC70, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__43_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__44__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__44 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__44_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__44 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__44_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__44 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__44_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__44 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169A070, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__44_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__44 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01699EF0, KeyValuePair_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__44_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__44 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDC90, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__44_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__45__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__45 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__45_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__45 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__45_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__45 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__45_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__45 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169A280, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__45_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__45 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169A110, KeyValuePair_2_System_Object_System_Boolean_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__45_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__45 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDC88, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__45_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__46__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__46 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__46_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__46 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__46_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__46 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__46_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__46 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169A490, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__46_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__46 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169A310, KeyValuePair_2_System_Object_UnityEngine_Bounds_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__46_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__46 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDCF0, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__46_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__47__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__47 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__47_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__47 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__47_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__47 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__47_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__47 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169A6A0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__47_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__47 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169A530, KeyValuePair_2_System_Object_System_Byte_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__47_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__47 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDCE8, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__47_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__48__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__48 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__48_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__48 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__48_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__48 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__48_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__48 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169A8A0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__48_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__48 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169A730, KeyValuePair_2_System_Object_System_Char_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__48_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__48 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDD00, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__48_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__49__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__49 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__49_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__49 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__49_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__49 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__49_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__49 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169AAB0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__49_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__49 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169A930, KeyValuePair_2_System_Object_UnityEngine_Color_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__49_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__49 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDCF8, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__49_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__50__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__50 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__50_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__50 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__50_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__50 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__50_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__50 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169ACC0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__50_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__50 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169AB50, KeyValuePair_2_System_Object_UnityEngine_Color32_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__50_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__50 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDCC8, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__50_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__51__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__51 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__51_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__51 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__51_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__51 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__51_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__51 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169AEC0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__51_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__51 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169AD50, KeyValuePair_2_System_Object_System_Int32_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__51_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__51 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDCC0, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__51_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__52__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__52 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__52_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__52 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__52_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__52 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__52_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__52 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169B0C0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__52_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__52 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169AF50, KeyValuePair_2_System_Object_System_Int32Enum_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__52_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__52 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDCE0, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__52_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__53__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__53 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__53_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__53 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__53_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__53 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__53_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__53 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169B2C0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__53_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__53 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169B150, KeyValuePair_2_System_Object_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__53_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__53 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDCD0, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__53_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__54__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__54 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__54_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__54 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__54_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__54 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__54_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__54 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169B4D0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__54_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__54 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169B350, KeyValuePair_2_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__54_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__54 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3DB8, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__54_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__55__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__55 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__55_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__55 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__55_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__55 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__55_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__55 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169B700, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__55_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__55 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169B570, KeyValuePair_2_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__55_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__55 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3DF0, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__55_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__56__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__56 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__56_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__56 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__56_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__56 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__56_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__56 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169B930, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__56_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__56 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169B7B0, KeyValuePair_2_System_Object_UnityEngine_Playables_Playable_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__56_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__56 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3DD8, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__56_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__57__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__57 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__57_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__57 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__57_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__57 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__57_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__57 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169BB60, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__57_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__57 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169B9D0, KeyValuePair_2_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__57_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__57 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3E68, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__57_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__58__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__58 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__58_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__58 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__58_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__58 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__58_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__58 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169BD90, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__58_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__58 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169BC10, KeyValuePair_2_System_Object_System_Resources_ResourceLocator_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__58_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__58 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3E60, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__58_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__59__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__59 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__59_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__59 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__59_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__59 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__59_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__59 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169BFA0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__59_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__59 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169BE30, KeyValuePair_2_System_Object_System_Single_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__59_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__59 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3E80, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__59_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__60__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__60 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__60_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__60 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__60_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__60 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__60_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__60 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169C1B0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__60_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__60 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169C030, KeyValuePair_2_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__60_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__60 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3E70, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__60_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__61__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__61 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__61_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__61 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__61_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__61 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__61_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__61 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169C3C0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__61_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__61 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169C250, KeyValuePair_2_System_Object_UnityEngine_UIElements_TextureId_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__61_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__61 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3E38, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__61_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__62__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__62 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__62_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__62 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__62_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__62 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__62_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__62 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169C5C0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__62_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__62 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169C450, KeyValuePair_2_System_Object_System_TimeSpan_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__62_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__62 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3E28, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__62_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__63__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__63 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__63_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__63 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__63_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__63 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__63_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__63 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169C7E0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__63_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__63 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169C650, KeyValuePair_2_System_Object_UdpKit_UdpEndPoint_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__63_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__63 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3E50, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__63_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__64__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__64 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__64_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__64 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__64_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__64 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__64_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__64 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169CA00, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__64_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__64 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169C890, KeyValuePair_2_System_Object_UnityEngine_Vector2_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__64_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__64 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3E48, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__64_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__65__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__65 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__65_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__65 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__65_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__65 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__65_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__65 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169CC10, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__65_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__65 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169CA90, KeyValuePair_2_System_Object_UnityEngine_Vector3_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__65_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__65 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3D38, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__65_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__66__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__66 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__66_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__66 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__66_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__66 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__66_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__66 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169CEA0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__66_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__66 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169CCB0, KeyValuePair_2_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__66_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__66 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3D20, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__66_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__67__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__67 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__67_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__67 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__67_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__67 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__67_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__67 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169D120, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__67_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__67 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169CFB0, KeyValuePair_2_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__67_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__67 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3D48, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__67_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__68__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__68 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__68_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__68 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__68_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__68 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__68_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__68 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169D350, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__68_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__68 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169D1B0, KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__68_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__68 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3D40, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__68_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__69__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__69 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__69_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__69 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__69_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__69 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__69_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__69 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169D580, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__69_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__69 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169D410, KeyValuePair_2_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__69_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__69 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3CF0, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__69_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__70__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__70 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__70_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__70 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__70_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__70 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__70_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__70 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169D7A0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__70_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__70 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169D610, KeyValuePair_2_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__70_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__70 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3CE0, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__70_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__71__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__71 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__71_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__71 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__71_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__71 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__71_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__71 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169D9E0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__71_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__71 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169D850, KeyValuePair_2_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__71_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__71 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3D08, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__71_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__72__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__72 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__72_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__72 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__72_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__72 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__72_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__72 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169DC10, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__72_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__72 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169DA90, KeyValuePair_2_System_Object_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__72_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__72 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3CF8, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__72_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__73__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__73 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__73_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__73 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__73_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__73 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__73_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__73 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169DE20, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__73_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__73 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169DCB0, KeyValuePair_2_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__73_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__73 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3D98, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__73_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__74__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__74 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__74_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__74 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__74_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__74 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__74_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__74 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169E020, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__74_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__74 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169DEB0, KeyValuePair_2_Photon_Bolt_PrefabId_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__74_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__74 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3D80, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__74_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__75__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__75 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__75_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__75 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__75_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__75 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__75_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__75 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169E220, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__75_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__75 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169E0B0, KeyValuePair_2_UnityEngine_PropertyName_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__75_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__75 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3DB0, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__75_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__76__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__76 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__76_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__76 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__76_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__76 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__76_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__76 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169E440, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__76_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__76 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169E2B0, KeyValuePair_2_UnityEngine_RaycastHit_System_Int32_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__76_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__76 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3DA8, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__76_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__77__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__77 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__77_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__77 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__77_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__77 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__77_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__77 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169E690, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__77_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__77 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169E4F0, KeyValuePair_2_System_Single_SplineMesh_CurveSample_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__77_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__77 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3D60, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__77_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__78__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__78 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__78_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__78 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__78_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__78 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__78_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__78 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169E8D0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__78_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__78 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169E760, KeyValuePair_2_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__78_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__78 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3D58, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__78_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__79__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__79 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__79_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__79 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__79_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__79 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__79_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__79 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169EAE0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__79_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__79 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169E960, KeyValuePair_2_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__79_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__79 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3D70, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__79_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__80__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__80 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__80_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__80 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__80_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__80 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__80_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__80 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169ECF0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__80_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__80 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169EB80, KeyValuePair_2_Photon_Bolt_TypeId_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__80_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__80 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3D68, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__80_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__81__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__81 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__81_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__81 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__81_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__81 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__81_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__81 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169EEF0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__81_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__81 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169ED80, KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__81_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__81 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3C40, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__81_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__82__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__82 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__82_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__82 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__82_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__82 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__82_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__82 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169F0F0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__82_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__82 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169EF80, KeyValuePair_2_System_UInt16_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__82_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__82 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3C30, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__82_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__83__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__83 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__83_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__83 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__83_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__83 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__83_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__83 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169F310, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__83_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__83 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169F180, KeyValuePair_2_System_UInt16_Dissonance_PlayerChannel_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__83_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__83 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3C68, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__83_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__84__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__84 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__84_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__84 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__84_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__84 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__84_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__84 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169F550, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__84_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__84 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169F3C0, KeyValuePair_2_System_UInt16_Dissonance_RoomChannel_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__84_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__84 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3C50, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__84_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__85__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__85 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__85_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__85 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__85_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__85 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__85_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__85 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169F770, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__85_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__85 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169F600, KeyValuePair_2_System_UInt32_System_Boolean_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__85_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__85 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3C00, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__85_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__86__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__86 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__86_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__86 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__86_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__86 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__86_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__86 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169F990, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__86_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__86 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169F800, KeyValuePair_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__86_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__86 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3BF0, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__86_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__87__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__87 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__87_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__87 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__87_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__87 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__87_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__87 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169FBB0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__87_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__87 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169FA40, KeyValuePair_2_System_UInt32_System_Int32_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__87_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__87 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3C20, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__87_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__88__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__88 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__88_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__88 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__88_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__88 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__88_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__88 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169FDB0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__88_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__88 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169FC40, KeyValuePair_2_System_UInt32_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__88_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__88 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3C10, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__88_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__89__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__89 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__89_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__89 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__89_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__89 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__89_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__89 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169FFD0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__89_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__89 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0169FE40, KeyValuePair_2_System_UInt32_SessionClient_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__89_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__89 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3CB0, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__89_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__90__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__90 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__90_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__90 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__90_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__90 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__90_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__90 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A0200, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__90_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__90 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A0090, KeyValuePair_2_System_UInt64_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__90_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__90 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3CA8, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__90_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__91__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__91 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__91_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__91 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__91_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__91 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__91_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__91 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A0420, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__91_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__91 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A0290, KeyValuePair_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__91_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__91 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3CD8, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__91_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__92__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__92 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__92_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__92 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__92_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__92 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__92_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__92 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A0650, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__92_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__92 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A04D0, KeyValuePair_2_UdpKit_UdpChannelName_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__92_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__92 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3CC0, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__92_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__93__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__93 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__93_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__93 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__93_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__93 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__93_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__93 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A0880, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__93_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__93 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A06F0, KeyValuePair_2_UdpKit_UdpEndPoint_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__93_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__93 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3C88, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__93_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__94__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__94 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__94_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__94 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__94_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__94 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__94_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__94 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A0AB0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__94_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__94 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A0930, KeyValuePair_2_UdpKit_UdpEndPoint_System_UInt32_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__94_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__94 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3C80, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__94_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__95__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__95 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__95_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__95 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__95_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__95 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__95_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__95 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A0CD0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__95_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__95 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A0B50, KeyValuePair_2_Photon_Bolt_UniqueId_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__95_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__95 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3CA0, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__95_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__96__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__96 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__96_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__96 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__96_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__96 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__96_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__96 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A0EE0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__96_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__96 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A0D70, KeyValuePair_2_UnityEngine_Vector3_System_Int32_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__96_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__96 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3C90, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__96_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__97__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__97 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__97_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__97 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__97_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__97 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__97_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__97 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A10F0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__97_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__97 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A0F70, KeyValuePair_2_UnityEngine_Vector3Int_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__97_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__97 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3B58, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__97_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__98__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__98 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__98_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__98 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__98_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__98 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__98_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__98 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A1310, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__98_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__98 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A1190, KeyValuePair_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__98_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__98 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3B50, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__98_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__99__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__99 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__99_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__99 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__99_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__99 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__99_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__99 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A1530, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__99_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__99 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A13B0, KeyValuePair_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__99_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__99 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3B78, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__99_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__100__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__100 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__100_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__100 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__100_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__100 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__100_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__100 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A1760, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__100_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__100 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A15D0, KeyValuePair_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__100_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__100 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3B68, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__100_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__101__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__101 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__101_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__101 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__101_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__101 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__101_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__101 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A1980, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__101_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__101 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A1810, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__101_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__101 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3B30, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__101_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__102__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__102 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__102_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__102 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__102_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__102 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__102_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__102 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A1B90, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__102_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__102 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A1A10, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__102_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__102 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3B28, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__102_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__103__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__103 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__103_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__103 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__103_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__103 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__103_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__103 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A1DC0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__103_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__103 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A1C30, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__103_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__103 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3B48, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__103_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__104__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__104 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__104_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__104 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__104_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__104 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__104_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__104 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A2000, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__104_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__104 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A1E70, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__104_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__104 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3B40, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__104_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__105__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__105 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__105_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__105 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__105_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__105 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__105_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__105 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A2240, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__105_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__105 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A20C0, KeyValuePair_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__105_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__105 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3BC8, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__105_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__106__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__106 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__106_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__106 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__106_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__106 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__106_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__106 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A2460, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__106_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__106 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A22E0, KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__106_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__106 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3BB8, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__106_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__107__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__107 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__107_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__107 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__107_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__107 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__107_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__107 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A2680, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__107_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__107 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A2500, KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__107_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__107 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3BE0, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__107_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__108__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__108 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__108_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__108 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__108_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__108 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__108_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__108 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A28A0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__108_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__108 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A2720, KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__108_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__108 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3BD8, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__108_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__109__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__109 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__109_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__109 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__109_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__109 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__109_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__109 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A2AB0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__109_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__109 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A2940, KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__109_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__109 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3B90, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__109_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__110__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__110 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__110_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__110 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__110_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__110 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__110_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__110 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A2D00, Object *, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__110_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__110 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A2B40, KeyValuePair_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__110_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__110 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3B80, Array_InternalEnumerator_1_System_Collections_Generic_KeyValuePair_2__110_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Threading_ThreadLocal_1_LinkedSlotVolatile___ctor, (Array_InternalEnumerator_1_System_Threading_ThreadLocal_1_LinkedSlotVolatile_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Threading_ThreadLocal_1_LinkedSlotVolatile__Dispose, (Array_InternalEnumerator_1_System_Threading_ThreadLocal_1_LinkedSlotVolatile_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Threading_ThreadLocal_1_LinkedSlotVolatile__MoveNext, (Array_InternalEnumerator_1_System_Threading_ThreadLocal_1_LinkedSlotVolatile_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Threading_ThreadLocal_1_LinkedSlotVolatile__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Threading_ThreadLocal_1_LinkedSlotVolatile_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A2F50, Object *, Array_InternalEnumerator_1_System_Threading_ThreadLocal_1_LinkedSlotVolatile__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Threading_ThreadLocal_1_LinkedSlotVolatile_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A2DE0, ThreadLocal_1_T_LinkedSlotVolatile_System_Object_, Array_InternalEnumerator_1_System_Threading_ThreadLocal_1_LinkedSlotVolatile__get_Current, (Array_InternalEnumerator_1_System_Threading_ThreadLocal_1_LinkedSlotVolatile_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3BA8, Array_InternalEnumerator_1_System_Threading_ThreadLocal_1_LinkedSlotVolatile__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Unity_Collections_NativeArray_1___ctor, (Array_InternalEnumerator_1_Unity_Collections_NativeArray_1_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Unity_Collections_NativeArray_1__Dispose, (Array_InternalEnumerator_1_Unity_Collections_NativeArray_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Unity_Collections_NativeArray_1__MoveNext, (Array_InternalEnumerator_1_Unity_Collections_NativeArray_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Unity_Collections_NativeArray_1__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Unity_Collections_NativeArray_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A3150, Object *, Array_InternalEnumerator_1_Unity_Collections_NativeArray_1__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Unity_Collections_NativeArray_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A2FE0, NativeArray_1_System_UInt16_, Array_InternalEnumerator_1_Unity_Collections_NativeArray_1__get_Current, (Array_InternalEnumerator_1_Unity_Collections_NativeArray_1_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3B98, Array_InternalEnumerator_1_Unity_Collections_NativeArray_1__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Unity_Collections_NativeArray_1__1__ctor, (Array_InternalEnumerator_1_Unity_Collections_NativeArray_1__1 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Unity_Collections_NativeArray_1__1_Dispose, (Array_InternalEnumerator_1_Unity_Collections_NativeArray_1__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Unity_Collections_NativeArray_1__1_MoveNext, (Array_InternalEnumerator_1_Unity_Collections_NativeArray_1__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Unity_Collections_NativeArray_1__1_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Unity_Collections_NativeArray_1__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A3350, Object *, Array_InternalEnumerator_1_Unity_Collections_NativeArray_1__1_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Unity_Collections_NativeArray_1__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A31E0, NativeArray_1_UnityEngine_UIElements_Vertex_, Array_InternalEnumerator_1_Unity_Collections_NativeArray_1__1_get_Current, (Array_InternalEnumerator_1_Unity_Collections_NativeArray_1__1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3AC0, Array_InternalEnumerator_1_Unity_Collections_NativeArray_1__1_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node___ctor, (Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__Dispose, (Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__MoveNext, (Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A3560, Object *, Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A33E0, NonAllocDictionary_2_K_V_Node_System_Byte_System_Object_, Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__get_Current, (Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3AB0, Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__1__ctor, (Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__1 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__1_Dispose, (Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__1_MoveNext, (Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__1_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A3780, Object *, Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__1_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A3600, NonAllocDictionary_2_K_V_Node_System_Int32_System_Object_, Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__1_get_Current, (Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3AD8, Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__1_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__2__ctor, (Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__2 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__2_Dispose, (Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__2_MoveNext, (Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__2_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A39A0, Object *, Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__2_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A3820, NonAllocDictionary_2_K_V_Node_System_Object_System_Object_, Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__2_get_Current, (Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__2 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3AC8, Array_InternalEnumerator_1_ExitGames_Client_Photon_NonAllocDictionary_2_Node__2_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_1_Record___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_1_Record_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_1_Record__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_1_Record_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_1_Record__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_1_Record_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_1_Record__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_1_Record_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A3BB0, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_1_Record__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_1_Record_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A3A40, InputStateHistory_1_TValue_Record_TouchState_, Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_1_Record__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_1_Record_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3A80, Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_1_Record__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo___ctor, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo__Dispose, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A3DB0, Object *, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A3C40, RenderGraphResourcePool_1_Type_ResourceLogInfo_System_Object_, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo__get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3A70, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphResourcePool_1_ResourceLogInfo__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Photon_Bolt_Collections_STuple_2___ctor, (Array_InternalEnumerator_1_Photon_Bolt_Collections_STuple_2_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Photon_Bolt_Collections_STuple_2__Dispose, (Array_InternalEnumerator_1_Photon_Bolt_Collections_STuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Photon_Bolt_Collections_STuple_2__MoveNext, (Array_InternalEnumerator_1_Photon_Bolt_Collections_STuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Photon_Bolt_Collections_STuple_2__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Photon_Bolt_Collections_STuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A3FB0, Object *, Array_InternalEnumerator_1_Photon_Bolt_Collections_STuple_2__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Photon_Bolt_Collections_STuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A3E40, STuple_2_System_Object_System_Object_, Array_InternalEnumerator_1_Photon_Bolt_Collections_STuple_2__get_Current, (Array_InternalEnumerator_1_Photon_Bolt_Collections_STuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3AA0, Array_InternalEnumerator_1_Photon_Bolt_Collections_STuple_2__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot___ctor, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A41C0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A4040, HashSet_1_T_Slot_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3A90, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__1__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__1 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__1_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__1_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__1_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A43E0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__1_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A4260, HashSet_1_T_Slot_System_Int32_, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__1_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3B10, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__1_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Linq_Set_1_Slot___ctor, (Array_InternalEnumerator_1_System_Linq_Set_1_Slot_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Linq_Set_1_Slot__Dispose, (Array_InternalEnumerator_1_System_Linq_Set_1_Slot_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Linq_Set_1_Slot__MoveNext, (Array_InternalEnumerator_1_System_Linq_Set_1_Slot_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Linq_Set_1_Slot__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Linq_Set_1_Slot_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A4600, Object *, Array_InternalEnumerator_1_System_Linq_Set_1_Slot__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Linq_Set_1_Slot_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A4480, Set_1_TElement_Slot_System_Int32_, Array_InternalEnumerator_1_System_Linq_Set_1_Slot__get_Current, (Array_InternalEnumerator_1_System_Linq_Set_1_Slot_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3B08, Array_InternalEnumerator_1_System_Linq_Set_1_Slot__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__2__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__2 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__2_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__2_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__2_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A4820, Object *, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__2_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A46A0, HashSet_1_T_Slot_System_Int32Enum_, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__2_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__2 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3B20, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__2_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__3__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__3 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__3_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__3 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__3_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__3 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__3_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__3 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A4A40, Object *, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__3_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__3 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A48C0, HashSet_1_T_Slot_UnityEngine_InputSystem_Utilities_InternedString_, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__3_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__3 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3B18, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__3_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__4__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__4 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__4_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__4_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__4_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A4C50, Object *, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__4_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A4AE0, HashSet_1_T_Slot_Photon_Bolt_NetworkId_, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__4_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__4 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3AF0, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__4_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__5__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__5 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__5_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__5 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__5_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__5 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__5_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__5 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A4E50, Object *, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__5_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__5 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A4CE0, HashSet_1_T_Slot_System_Object_, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__5_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__5 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3AE8, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__5_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Linq_Set_1_Slot__1__ctor, (Array_InternalEnumerator_1_System_Linq_Set_1_Slot__1 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Linq_Set_1_Slot__1_Dispose, (Array_InternalEnumerator_1_System_Linq_Set_1_Slot__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Linq_Set_1_Slot__1_MoveNext, (Array_InternalEnumerator_1_System_Linq_Set_1_Slot__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Linq_Set_1_Slot__1_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Linq_Set_1_Slot__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A5060, Object *, Array_InternalEnumerator_1_System_Linq_Set_1_Slot__1_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Linq_Set_1_Slot__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A4EE0, Set_1_TElement_Slot_System_Object_, Array_InternalEnumerator_1_System_Linq_Set_1_Slot__1_get_Current, (Array_InternalEnumerator_1_System_Linq_Set_1_Slot__1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3B00, Array_InternalEnumerator_1_System_Linq_Set_1_Slot__1_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Concurrent_ConcurrentQueue_1_Segment_Slot___ctor, (Array_InternalEnumerator_1_System_Collections_Concurrent_ConcurrentQueue_1_Segment_Slot_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Concurrent_ConcurrentQueue_1_Segment_Slot__Dispose, (Array_InternalEnumerator_1_System_Collections_Concurrent_ConcurrentQueue_1_Segment_Slot_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Concurrent_ConcurrentQueue_1_Segment_Slot__MoveNext, (Array_InternalEnumerator_1_System_Collections_Concurrent_ConcurrentQueue_1_Segment_Slot_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Concurrent_ConcurrentQueue_1_Segment_Slot__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Concurrent_ConcurrentQueue_1_Segment_Slot_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A5270, Object *, Array_InternalEnumerator_1_System_Collections_Concurrent_ConcurrentQueue_1_Segment_Slot__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Concurrent_ConcurrentQueue_1_Segment_Slot_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A5100, ConcurrentQueue_1_T_Segment_T_Slot_System_Object_, Array_InternalEnumerator_1_System_Collections_Concurrent_ConcurrentQueue_1_Segment_Slot__get_Current, (Array_InternalEnumerator_1_System_Collections_Concurrent_ConcurrentQueue_1_Segment_Slot_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3AF8, Array_InternalEnumerator_1_System_Collections_Concurrent_ConcurrentQueue_1_Segment_Slot__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__6__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__6 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__6_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__6 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__6_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__6 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__6_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__6 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A5480, Object *, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__6_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__6 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A5300, HashSet_1_T_Slot_System_UInt32_, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__6_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__6 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC39D8, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__6_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__7__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__7 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__7_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__7 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__7_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__7 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__7_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__7 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A5690, Object *, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__7_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__7 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A5520, HashSet_1_T_Slot_System_UInt64_, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__7_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__7 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC39D0, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__7_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__8__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__8 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__8_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__8 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__8_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__8 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__8_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__8 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A58A0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__8_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__8 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A5720, HashSet_1_T_Slot_UdpKit_UdpEndPoint_, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__8_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__8 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC39F0, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__8_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__9__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__9 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__9_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__9 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__9_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__9 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__9_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__9 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A5AD0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__9_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__9 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A5950, HashSet_1_T_Slot_UdpKit_UdpIPv4Address_, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__9_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__9 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC39E8, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__9_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__10__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__10 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__10_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__10 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__10_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__10 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__10_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__10 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A5CF0, Object *, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__10_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__10 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A5B70, HashSet_1_T_Slot_UnityEngine_Vector3_, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__10_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__10 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC39B8, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__10_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__11__ctor, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__11 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__11_Dispose, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__11 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__11_MoveNext, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__11 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__11_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__11 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A5F10, Object *, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__11_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__11 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A5D90, HashSet_1_T_Slot_UnityEngine_Vector3Int_, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__11_get_Current, (Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__11 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC39B0, Array_InternalEnumerator_1_System_Collections_Generic_HashSet_1_Slot__11_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A6170, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A5FB0, StylePropertyAnimationSystem_Values_1_T_StyleData_Background_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC39C8, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__1__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__1 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__1_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__1_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__1_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A63E0, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__1_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A6250, StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__1_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC39C0, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__1_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__2__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__2 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__2_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__2_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__2_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A6630, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__2_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A64A0, StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__2_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__2 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3A38, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__2_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__3__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__3 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__3_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__3 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__3_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__3 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__3_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__3 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A6860, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__3_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__3 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A66F0, StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__3_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__3 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3A28, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__3_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__4__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__4 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__4_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__4_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__4_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A6A70, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__4_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A68F0, StylePropertyAnimationSystem_Values_1_T_StyleData_Length_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__4_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__4 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3A60, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__4_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__5__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__5 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__5_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__5 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__5_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__5 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__5_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__5 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A6C90, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__5_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__5 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A6B10, StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__5_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__5 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3A48, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__5_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__6__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__6 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__6_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__6 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__6_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__6 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__6_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__6 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A6EE0, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__6_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__6 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A6D30, StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__6_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__6 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3A08, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__6_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__7__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__7 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__7_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__7 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__7_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__7 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__7_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__7 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A7140, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__7_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__7 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A6FB0, StylePropertyAnimationSystem_Values_1_T_StyleData_Scale_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__7_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__7 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC39F8, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__7_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__8__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__8 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__8_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__8 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__8_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__8 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__8_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__8 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A7370, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__8_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__8 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A7200, StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__8_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__8 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3A20, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__8_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__9__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__9 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__9_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__9 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__9_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__9 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__9_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__9 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A75B0, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__9_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__9 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A7400, StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__9_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__9 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3A18, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__9_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__10__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__10 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__10_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__10 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__10_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__10 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__10_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__10 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A7830, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__10_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__10 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A7690, StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__10_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__10 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3940, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__10_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__11__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__11 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__11_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__11 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__11_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__11 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__11_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__11 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A7AA0, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__11_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__11 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A78F0, StylePropertyAnimationSystem_Values_1_T_StyleData_Translate_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__11_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__11 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3938, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_StyleData__11_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1___ctor, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__Dispose, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__MoveNext, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A7CF0, Object *, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A7B70, TMP_TextProcessingStack_1_UnityEngine_Color32_, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__get_Current, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3950, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__1__ctor, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__1 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__1_Dispose, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__1_MoveNext, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__1_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A7F20, Object *, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__1_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A7D90, TMP_TextProcessingStack_1_HighlightState_, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__1_get_Current, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3948, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__1_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__2__ctor, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__2 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__2_Dispose, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__2_MoveNext, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__2_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A8150, Object *, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__2_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A7FD0, TMP_TextProcessingStack_1_System_Int32_, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__2_get_Current, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__2 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3918, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__2_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__3__ctor, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__3 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__3_Dispose, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__3 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__3_MoveNext, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__3 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__3_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__3 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A8370, Object *, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__3_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__3 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A81F0, TMP_TextProcessingStack_1_System_Int32Enum_, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__3_get_Current, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__3 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3900, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__3_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__4__ctor, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__4 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__4_Dispose, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__4_MoveNext, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__4_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A85C0, Object *, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__4_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A8410, TMP_TextProcessingStack_1_MaterialReference_, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__4_get_Current, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__4 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3930, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__4_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__5__ctor, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__5 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__5_Dispose, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__5 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__5_MoveNext, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__5 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__5_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__5 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A8820, Object *, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__5_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__5 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A8690, TMP_TextProcessingStack_1_System_Object_, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__5_get_Current, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__5 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3928, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__5_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__6__ctor, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__6 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__6_Dispose, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__6 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__6_MoveNext, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__6 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__6_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__6 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A8A50, Object *, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__6_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__6 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A88D0, TMP_TextProcessingStack_1_System_Single_, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__6_get_Current, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__6 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3990, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__6_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__7__ctor, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__7 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__7_Dispose, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__7 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__7_MoveNext, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__7 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__7_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__7 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A8CD0, Object *, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__7_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__7 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A8AF0, TMP_TextProcessingStack_1_WordWrapState_, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__7_get_Current, (Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__7 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3988, Array_InternalEnumerator_1_TMPro_TMP_TextProcessingStack_1__7_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A8F60, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A8DD0, StylePropertyAnimationSystem_Values_1_T_TimingData_Background_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC39A8, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__1__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__1 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__1_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__1_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__1_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A91A0, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__1_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A9010, StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__1_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3998, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__1_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__2__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__2 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__2_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__2_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__2_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A93E0, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__2_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A9250, StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__2_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__2 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3960, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__2_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__3__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__3 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__3_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__3 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__3_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__3 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__3_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__3 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A9620, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__3_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__3 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A9490, StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__3_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__3 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3958, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__3_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__4__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__4 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__4_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__4_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__4_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A9860, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__4_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A96D0, StylePropertyAnimationSystem_Values_1_T_TimingData_Length_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__4_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__4 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3978, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__4_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__5__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__5 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__5_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__5 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__5_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__5 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__5_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__5 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A9AA0, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__5_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__5 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A9910, StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__5_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__5 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3968, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__5_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__6__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__6 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__6_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__6 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__6_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__6 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__6_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__6 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A9CE0, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__6_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__6 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A9B50, StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__6_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__6 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3888, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__6_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__7__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__7 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__7_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__7 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__7_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__7 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__7_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__7 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A9F20, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__7_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__7 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A9D90, StylePropertyAnimationSystem_Values_1_T_TimingData_Scale_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__7_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__7 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3880, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__7_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__8__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__8 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__8_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__8 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__8_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__8 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__8_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__8 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AA160, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__8_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__8 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016A9FD0, StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__8_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__8 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3898, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__8_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__9__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__9 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__9_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__9 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__9_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__9 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__9_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__9 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AA3A0, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__9_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__9 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AA210, StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__9_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__9 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3890, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__9_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__10__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__10 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__10_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__10 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__10_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__10 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__10_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__10 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AA5E0, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__10_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__10 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AA450, StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__10_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__10 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3858, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__10_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__11__ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__11 * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__11_Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__11 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__11_MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__11 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__11_System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__11 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AA820, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__11_System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__11 * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AA690, StylePropertyAnimationSystem_Values_1_T_TimingData_Translate_, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__11_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__11 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3850, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_1_TimingData__11_get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_ValueTuple_1_Boolean___ctor, (Array_InternalEnumerator_1_ValueTuple_1_Boolean_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_ValueTuple_1_Boolean__Dispose, (Array_InternalEnumerator_1_ValueTuple_1_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_ValueTuple_1_Boolean__MoveNext, (Array_InternalEnumerator_1_ValueTuple_1_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_ValueTuple_1_Boolean__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_ValueTuple_1_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AAA40, Object *, Array_InternalEnumerator_1_ValueTuple_1_Boolean__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_ValueTuple_1_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AA8D0, ValueTuple_1_Boolean_, Array_InternalEnumerator_1_ValueTuple_1_Boolean__get_Current, (Array_InternalEnumerator_1_ValueTuple_1_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3870, Array_InternalEnumerator_1_ValueTuple_1_Boolean__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_ValueTuple_2_Int32_Object___ctor, (Array_InternalEnumerator_1_ValueTuple_2_Int32_Object_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_ValueTuple_2_Int32_Object__Dispose, (Array_InternalEnumerator_1_ValueTuple_2_Int32_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_ValueTuple_2_Int32_Object__MoveNext, (Array_InternalEnumerator_1_ValueTuple_2_Int32_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_ValueTuple_2_Int32_Object__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_ValueTuple_2_Int32_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AAC40, Object *, Array_InternalEnumerator_1_ValueTuple_2_Int32_Object__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_ValueTuple_2_Int32_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AAAD0, ValueTuple_2_Int32_Object_, Array_InternalEnumerator_1_ValueTuple_2_Int32_Object__get_Current, (Array_InternalEnumerator_1_ValueTuple_2_Int32_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3860, Array_InternalEnumerator_1_ValueTuple_2_Int32_Object__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_ValueTuple_2_Int32_UnityEngine_Vector2Int___ctor, (Array_InternalEnumerator_1_ValueTuple_2_Int32_UnityEngine_Vector2Int_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_ValueTuple_2_Int32_UnityEngine_Vector2Int__Dispose, (Array_InternalEnumerator_1_ValueTuple_2_Int32_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_ValueTuple_2_Int32_UnityEngine_Vector2Int__MoveNext, (Array_InternalEnumerator_1_ValueTuple_2_Int32_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_ValueTuple_2_Int32_UnityEngine_Vector2Int__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_ValueTuple_2_Int32_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AAE50, Object *, Array_InternalEnumerator_1_ValueTuple_2_Int32_UnityEngine_Vector2Int__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_ValueTuple_2_Int32_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AACD0, ValueTuple_2_Int32_UnityEngine_Vector2Int_, Array_InternalEnumerator_1_ValueTuple_2_Int32_UnityEngine_Vector2Int__get_Current, (Array_InternalEnumerator_1_ValueTuple_2_Int32_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC38D8, Array_InternalEnumerator_1_ValueTuple_2_Int32_UnityEngine_Vector2Int__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_ValueTuple_2_IntPtr_Object___ctor, (Array_InternalEnumerator_1_ValueTuple_2_IntPtr_Object_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_ValueTuple_2_IntPtr_Object__Dispose, (Array_InternalEnumerator_1_ValueTuple_2_IntPtr_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_ValueTuple_2_IntPtr_Object__MoveNext, (Array_InternalEnumerator_1_ValueTuple_2_IntPtr_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_ValueTuple_2_IntPtr_Object__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_ValueTuple_2_IntPtr_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AB060, Object *, Array_InternalEnumerator_1_ValueTuple_2_IntPtr_Object__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_ValueTuple_2_IntPtr_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AAEF0, ValueTuple_2_IntPtr_Object_, Array_InternalEnumerator_1_ValueTuple_2_IntPtr_Object__get_Current, (Array_InternalEnumerator_1_ValueTuple_2_IntPtr_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC38D0, Array_InternalEnumerator_1_ValueTuple_2_IntPtr_Object__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_ValueTuple_2_Object_ValueTuple_2_Object_Int32___ctor, (Array_InternalEnumerator_1_ValueTuple_2_Object_ValueTuple_2_Object_Int32_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_ValueTuple_2_Object_ValueTuple_2_Object_Int32__Dispose, (Array_InternalEnumerator_1_ValueTuple_2_Object_ValueTuple_2_Object_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_ValueTuple_2_Object_ValueTuple_2_Object_Int32__MoveNext, (Array_InternalEnumerator_1_ValueTuple_2_Object_ValueTuple_2_Object_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_ValueTuple_2_Object_ValueTuple_2_Object_Int32__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_ValueTuple_2_Object_ValueTuple_2_Object_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AB270, Object *, Array_InternalEnumerator_1_ValueTuple_2_Object_ValueTuple_2_Object_Int32__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_ValueTuple_2_Object_ValueTuple_2_Object_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AB0F0, ValueTuple_2_Object_ValueTuple_2_Object_Int32_, Array_InternalEnumerator_1_ValueTuple_2_Object_ValueTuple_2_Object_Int32__get_Current, (Array_InternalEnumerator_1_ValueTuple_2_Object_ValueTuple_2_Object_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC38F0, Array_InternalEnumerator_1_ValueTuple_2_Object_ValueTuple_2_Object_Int32__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_ValueTuple_2_Object_Int32___ctor, (Array_InternalEnumerator_1_ValueTuple_2_Object_Int32_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_ValueTuple_2_Object_Int32__Dispose, (Array_InternalEnumerator_1_ValueTuple_2_Object_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_ValueTuple_2_Object_Int32__MoveNext, (Array_InternalEnumerator_1_ValueTuple_2_Object_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_ValueTuple_2_Object_Int32__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_ValueTuple_2_Object_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AB480, Object *, Array_InternalEnumerator_1_ValueTuple_2_Object_Int32__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_ValueTuple_2_Object_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AB310, ValueTuple_2_Object_Int32_, Array_InternalEnumerator_1_ValueTuple_2_Object_Int32__get_Current, (Array_InternalEnumerator_1_ValueTuple_2_Object_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC38E0, Array_InternalEnumerator_1_ValueTuple_2_Object_Int32__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_ValueTuple_2_Object_Object___ctor, (Array_InternalEnumerator_1_ValueTuple_2_Object_Object_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_ValueTuple_2_Object_Object__Dispose, (Array_InternalEnumerator_1_ValueTuple_2_Object_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_ValueTuple_2_Object_Object__MoveNext, (Array_InternalEnumerator_1_ValueTuple_2_Object_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_ValueTuple_2_Object_Object__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_ValueTuple_2_Object_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AB680, Object *, Array_InternalEnumerator_1_ValueTuple_2_Object_Object__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_ValueTuple_2_Object_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AB510, ValueTuple_2_Object_Object_, Array_InternalEnumerator_1_ValueTuple_2_Object_Object__get_Current, (Array_InternalEnumerator_1_ValueTuple_2_Object_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC38B0, Array_InternalEnumerator_1_ValueTuple_2_Object_Object__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Object___ctor, (Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Object_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Object__Dispose, (Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Object__MoveNext, (Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Object__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AB890, Object *, Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Object__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AB710, ValueTuple_2_UnityEngine_Vector3Int_Object_, Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Object__get_Current, (Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC38A0, Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Object__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel___ctor, (Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel__Dispose, (Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel__MoveNext, (Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016ABAC0, Object *, Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AB930, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_, Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel__get_Current, (Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC38C8, Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership___ctor, (Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership__Dispose, (Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership__MoveNext, (Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016ABD10, Object *, Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016ABB80, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_, Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership__get_Current, (Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC38C0, Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int___ctor, (Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int__Dispose, (Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int__MoveNext, (Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016ABF40, Object *, Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016ABDC0, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int_, Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int__get_Current, (Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC37C0, Array_InternalEnumerator_1_ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_ValueTuple_3_Object_Object_Object___ctor, (Array_InternalEnumerator_1_ValueTuple_3_Object_Object_Object_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_ValueTuple_3_Object_Object_Object__Dispose, (Array_InternalEnumerator_1_ValueTuple_3_Object_Object_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_ValueTuple_3_Object_Object_Object__MoveNext, (Array_InternalEnumerator_1_ValueTuple_3_Object_Object_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_ValueTuple_3_Object_Object_Object__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_ValueTuple_3_Object_Object_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AC160, Object *, Array_InternalEnumerator_1_ValueTuple_3_Object_Object_Object__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_ValueTuple_3_Object_Object_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016ABFE0, ValueTuple_3_Object_Object_Object_, Array_InternalEnumerator_1_ValueTuple_3_Object_Object_Object__get_Current, (Array_InternalEnumerator_1_ValueTuple_3_Object_Object_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC37B8, Array_InternalEnumerator_1_ValueTuple_3_Object_Object_Object__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_AnimatorClipInfo___ctor, (Array_InternalEnumerator_1_UnityEngine_AnimatorClipInfo_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_AnimatorClipInfo__Dispose, (Array_InternalEnumerator_1_UnityEngine_AnimatorClipInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_AnimatorClipInfo__MoveNext, (Array_InternalEnumerator_1_UnityEngine_AnimatorClipInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_AnimatorClipInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_AnimatorClipInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AC370, Object *, Array_InternalEnumerator_1_UnityEngine_AnimatorClipInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_AnimatorClipInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AC200, AnimatorClipInfo, Array_InternalEnumerator_1_UnityEngine_AnimatorClipInfo__get_Current, (Array_InternalEnumerator_1_UnityEngine_AnimatorClipInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC37D8, Array_InternalEnumerator_1_UnityEngine_AnimatorClipInfo__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Pathfinding_AstarWorkItem___ctor, (Array_InternalEnumerator_1_Pathfinding_AstarWorkItem_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Pathfinding_AstarWorkItem__Dispose, (Array_InternalEnumerator_1_Pathfinding_AstarWorkItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Pathfinding_AstarWorkItem__MoveNext, (Array_InternalEnumerator_1_Pathfinding_AstarWorkItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Pathfinding_AstarWorkItem__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Pathfinding_AstarWorkItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AC580, Object *, Array_InternalEnumerator_1_Pathfinding_AstarWorkItem__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Pathfinding_AstarWorkItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AC400, AstarWorkItem, Array_InternalEnumerator_1_Pathfinding_AstarWorkItem__get_Current, (Array_InternalEnumerator_1_Pathfinding_AstarWorkItem_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC37D0, Array_InternalEnumerator_1_Pathfinding_AstarWorkItem__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___ctor, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__Dispose, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__MoveNext, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AC7A0, Object *, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AC620, AsyncOperationHandle, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__get_Current, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3790, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Rewired_AxisCalibrationData___ctor, (Array_InternalEnumerator_1_Rewired_AxisCalibrationData_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Rewired_AxisCalibrationData__Dispose, (Array_InternalEnumerator_1_Rewired_AxisCalibrationData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Rewired_AxisCalibrationData__MoveNext, (Array_InternalEnumerator_1_Rewired_AxisCalibrationData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Rewired_AxisCalibrationData__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Rewired_AxisCalibrationData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AC9D0, Object *, Array_InternalEnumerator_1_Rewired_AxisCalibrationData__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Rewired_AxisCalibrationData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AC840, AxisCalibrationData, Array_InternalEnumerator_1_Rewired_AxisCalibrationData__get_Current, (Array_InternalEnumerator_1_Rewired_AxisCalibrationData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3788, Array_InternalEnumerator_1_Rewired_AxisCalibrationData__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_Background___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_Background_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_Background__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_Background_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_Background__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_Background_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_Background__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_Background_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016ACC10, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_Background__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_Background_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016ACA90, Background, Array_InternalEnumerator_1_UnityEngine_UIElements_Background__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_Background_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC37B0, Array_InternalEnumerator_1_UnityEngine_UIElements_Background__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_BatchVisibility___ctor, (Array_InternalEnumerator_1_UnityEngine_Rendering_BatchVisibility_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Rendering_BatchVisibility__Dispose, (Array_InternalEnumerator_1_UnityEngine_Rendering_BatchVisibility_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Rendering_BatchVisibility__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Rendering_BatchVisibility_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_BatchVisibility__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Rendering_BatchVisibility_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016ACE30, Object *, Array_InternalEnumerator_1_UnityEngine_Rendering_BatchVisibility__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_BatchVisibility_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016ACCB0, BatchVisibility, Array_InternalEnumerator_1_UnityEngine_Rendering_BatchVisibility__get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_BatchVisibility_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC37A0, Array_InternalEnumerator_1_UnityEngine_Rendering_BatchVisibility__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Dissonance_Integrations_PhotonBolt_BoltPeer___ctor, (Array_InternalEnumerator_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Dissonance_Integrations_PhotonBolt_BoltPeer__Dispose, (Array_InternalEnumerator_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Dissonance_Integrations_PhotonBolt_BoltPeer__MoveNext, (Array_InternalEnumerator_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Dissonance_Integrations_PhotonBolt_BoltPeer__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AD040, Object *, Array_InternalEnumerator_1_Dissonance_Integrations_PhotonBolt_BoltPeer__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016ACED0, BoltPeer, Array_InternalEnumerator_1_Dissonance_Integrations_PhotonBolt_BoltPeer__get_Current, (Array_InternalEnumerator_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3828, Array_InternalEnumerator_1_Dissonance_Integrations_PhotonBolt_BoltPeer__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Photon_Bolt_LagCompensation_BoltPhysicsHit___ctor, (Array_InternalEnumerator_1_Photon_Bolt_LagCompensation_BoltPhysicsHit_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Photon_Bolt_LagCompensation_BoltPhysicsHit__Dispose, (Array_InternalEnumerator_1_Photon_Bolt_LagCompensation_BoltPhysicsHit_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Photon_Bolt_LagCompensation_BoltPhysicsHit__MoveNext, (Array_InternalEnumerator_1_Photon_Bolt_LagCompensation_BoltPhysicsHit_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Photon_Bolt_LagCompensation_BoltPhysicsHit__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Photon_Bolt_LagCompensation_BoltPhysicsHit_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AD250, Object *, Array_InternalEnumerator_1_Photon_Bolt_LagCompensation_BoltPhysicsHit__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Photon_Bolt_LagCompensation_BoltPhysicsHit_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AD0D0, BoltPhysicsHit, Array_InternalEnumerator_1_Photon_Bolt_LagCompensation_BoltPhysicsHit__get_Current, (Array_InternalEnumerator_1_Photon_Bolt_LagCompensation_BoltPhysicsHit_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3818, Array_InternalEnumerator_1_Photon_Bolt_LagCompensation_BoltPhysicsHit__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_BoneWeight___ctor, (Array_InternalEnumerator_1_UnityEngine_BoneWeight_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_BoneWeight__Dispose, (Array_InternalEnumerator_1_UnityEngine_BoneWeight_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_BoneWeight__MoveNext, (Array_InternalEnumerator_1_UnityEngine_BoneWeight_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_BoneWeight__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_BoneWeight_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AD470, Object *, Array_InternalEnumerator_1_UnityEngine_BoneWeight__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_BoneWeight_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AD2F0, BoneWeight, Array_InternalEnumerator_1_UnityEngine_BoneWeight__get_Current, (Array_InternalEnumerator_1_UnityEngine_BoneWeight_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3840, Array_InternalEnumerator_1_UnityEngine_BoneWeight__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_BoneWeight1___ctor, (Array_InternalEnumerator_1_UnityEngine_BoneWeight1_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_BoneWeight1__Dispose, (Array_InternalEnumerator_1_UnityEngine_BoneWeight1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_BoneWeight1__MoveNext, (Array_InternalEnumerator_1_UnityEngine_BoneWeight1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_BoneWeight1__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_BoneWeight1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AD680, Object *, Array_InternalEnumerator_1_UnityEngine_BoneWeight1__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_BoneWeight1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AD510, BoneWeight1, Array_InternalEnumerator_1_UnityEngine_BoneWeight1__get_Current, (Array_InternalEnumerator_1_UnityEngine_BoneWeight1_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3838, Array_InternalEnumerator_1_UnityEngine_BoneWeight1__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Boolean___ctor, (Array_InternalEnumerator_1_Boolean_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Boolean__Dispose, (Array_InternalEnumerator_1_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Boolean__MoveNext, (Array_InternalEnumerator_1_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Boolean__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AD880, Object *, Array_InternalEnumerator_1_Boolean__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AD710, bool, Array_InternalEnumerator_1_Boolean__get_Current, (Array_InternalEnumerator_1_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC37E8, Array_InternalEnumerator_1_Boolean__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_BoundedPlane___ctor, (Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_BoundedPlane_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_BoundedPlane__Dispose, (Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_BoundedPlane_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_BoundedPlane__MoveNext, (Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_BoundedPlane_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_BoundedPlane__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_BoundedPlane_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016ADAC0, Object *, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_BoundedPlane__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_BoundedPlane_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AD910, BoundedPlane, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_BoundedPlane__get_Current, (Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_BoundedPlane_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC37E0, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_BoundedPlane__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_BoundingSphere___ctor, (Array_InternalEnumerator_1_UnityEngine_BoundingSphere_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_BoundingSphere__Dispose, (Array_InternalEnumerator_1_UnityEngine_BoundingSphere_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_BoundingSphere__MoveNext, (Array_InternalEnumerator_1_UnityEngine_BoundingSphere_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_BoundingSphere__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_BoundingSphere_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016ADD10, Object *, Array_InternalEnumerator_1_UnityEngine_BoundingSphere__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_BoundingSphere_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016ADBA0, BoundingSphere, Array_InternalEnumerator_1_UnityEngine_BoundingSphere__get_Current, (Array_InternalEnumerator_1_UnityEngine_BoundingSphere_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3800, Array_InternalEnumerator_1_UnityEngine_BoundingSphere__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Bounds___ctor, (Array_InternalEnumerator_1_UnityEngine_Bounds_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Bounds__Dispose, (Array_InternalEnumerator_1_UnityEngine_Bounds_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Bounds__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Bounds_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Bounds__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Bounds_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016ADF20, Object *, Array_InternalEnumerator_1_UnityEngine_Bounds__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Bounds_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016ADDA0, Bounds, Array_InternalEnumerator_1_UnityEngine_Bounds__get_Current, (Array_InternalEnumerator_1_UnityEngine_Bounds_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC37F0, Array_InternalEnumerator_1_UnityEngine_Bounds__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Byte___ctor, (Array_InternalEnumerator_1_Byte_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Byte__Dispose, (Array_InternalEnumerator_1_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Byte__MoveNext, (Array_InternalEnumerator_1_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Byte__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AE130, Object *, Array_InternalEnumerator_1_Byte__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016ADFC0, uint8_t, Array_InternalEnumerator_1_Byte__get_Current, (Array_InternalEnumerator_1_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3710, Array_InternalEnumerator_1_Byte__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_ByteEnum___ctor, (Array_InternalEnumerator_1_ByteEnum_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_ByteEnum__Dispose, (Array_InternalEnumerator_1_ByteEnum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_ByteEnum__MoveNext, (Array_InternalEnumerator_1_ByteEnum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_ByteEnum__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_ByteEnum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AE330, Object *, Array_InternalEnumerator_1_ByteEnum__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_ByteEnum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AE1C0, ByteEnum__Enum, Array_InternalEnumerator_1_ByteEnum__get_Current, (Array_InternalEnumerator_1_ByteEnum_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3708, Array_InternalEnumerator_1_ByteEnum__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Threading_CancellationToken___ctor, (Array_InternalEnumerator_1_System_Threading_CancellationToken_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Threading_CancellationToken__Dispose, (Array_InternalEnumerator_1_System_Threading_CancellationToken_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Threading_CancellationToken__MoveNext, (Array_InternalEnumerator_1_System_Threading_CancellationToken_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Threading_CancellationToken__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Threading_CancellationToken_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AE530, Object *, Array_InternalEnumerator_1_System_Threading_CancellationToken__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Threading_CancellationToken_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AE3C0, CancellationToken, Array_InternalEnumerator_1_System_Threading_CancellationToken__get_Current, (Array_InternalEnumerator_1_System_Threading_CancellationToken_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3728, Array_InternalEnumerator_1_System_Threading_CancellationToken__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Threading_CancellationTokenRegistration___ctor, (Array_InternalEnumerator_1_System_Threading_CancellationTokenRegistration_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Threading_CancellationTokenRegistration__Dispose, (Array_InternalEnumerator_1_System_Threading_CancellationTokenRegistration_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Threading_CancellationTokenRegistration__MoveNext, (Array_InternalEnumerator_1_System_Threading_CancellationTokenRegistration_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Threading_CancellationTokenRegistration__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Threading_CancellationTokenRegistration_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AE740, Object *, Array_InternalEnumerator_1_System_Threading_CancellationTokenRegistration__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Threading_CancellationTokenRegistration_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AE5C0, CancellationTokenRegistration, Array_InternalEnumerator_1_System_Threading_CancellationTokenRegistration__get_Current, (Array_InternalEnumerator_1_System_Threading_CancellationTokenRegistration_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3718, Array_InternalEnumerator_1_System_Threading_CancellationTokenRegistration__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Char___ctor, (Array_InternalEnumerator_1_Char_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Char__Dispose, (Array_InternalEnumerator_1_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Char__MoveNext, (Array_InternalEnumerator_1_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Char__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AE950, Object *, Array_InternalEnumerator_1_Char__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AE7E0, uint16_t, Array_InternalEnumerator_1_Char__get_Current, (Array_InternalEnumerator_1_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC36F0, Array_InternalEnumerator_1_Char__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Dissonance_Networking_ClientInfo___ctor, (Array_InternalEnumerator_1_Dissonance_Networking_ClientInfo_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Dissonance_Networking_ClientInfo__Dispose, (Array_InternalEnumerator_1_Dissonance_Networking_ClientInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Dissonance_Networking_ClientInfo__MoveNext, (Array_InternalEnumerator_1_Dissonance_Networking_ClientInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Dissonance_Networking_ClientInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Dissonance_Networking_ClientInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AEB60, Object *, Array_InternalEnumerator_1_Dissonance_Networking_ClientInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Dissonance_Networking_ClientInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AE9E0, ClientInfo, Array_InternalEnumerator_1_Dissonance_Networking_ClientInfo__get_Current, (Array_InternalEnumerator_1_Dissonance_Networking_ClientInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC36E8, Array_InternalEnumerator_1_Dissonance_Networking_ClientInfo__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_ClothSkinningCoefficient___ctor, (Array_InternalEnumerator_1_UnityEngine_ClothSkinningCoefficient_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_ClothSkinningCoefficient__Dispose, (Array_InternalEnumerator_1_UnityEngine_ClothSkinningCoefficient_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_ClothSkinningCoefficient__MoveNext, (Array_InternalEnumerator_1_UnityEngine_ClothSkinningCoefficient_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_ClothSkinningCoefficient__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_ClothSkinningCoefficient_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AED70, Object *, Array_InternalEnumerator_1_UnityEngine_ClothSkinningCoefficient__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_ClothSkinningCoefficient_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AEC00, ClothSkinningCoefficient, Array_InternalEnumerator_1_UnityEngine_ClothSkinningCoefficient__get_Current, (Array_InternalEnumerator_1_UnityEngine_ClothSkinningCoefficient_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3700, Array_InternalEnumerator_1_UnityEngine_ClothSkinningCoefficient__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_ClothSphereColliderPair___ctor, (Array_InternalEnumerator_1_UnityEngine_ClothSphereColliderPair_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_ClothSphereColliderPair__Dispose, (Array_InternalEnumerator_1_UnityEngine_ClothSphereColliderPair_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_ClothSphereColliderPair__MoveNext, (Array_InternalEnumerator_1_UnityEngine_ClothSphereColliderPair_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_ClothSphereColliderPair__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_ClothSphereColliderPair_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AEF70, Object *, Array_InternalEnumerator_1_UnityEngine_ClothSphereColliderPair__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_ClothSphereColliderPair_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AEE00, ClothSphereColliderPair, Array_InternalEnumerator_1_UnityEngine_ClothSphereColliderPair__get_Current, (Array_InternalEnumerator_1_UnityEngine_ClothSphereColliderPair_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC36F8, Array_InternalEnumerator_1_UnityEngine_ClothSphereColliderPair__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Color___ctor, (Array_InternalEnumerator_1_UnityEngine_Color_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Color__Dispose, (Array_InternalEnumerator_1_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Color__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Color__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AF170, Object *, Array_InternalEnumerator_1_UnityEngine_Color__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AF000, Color, Array_InternalEnumerator_1_UnityEngine_Color__get_Current, (Array_InternalEnumerator_1_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3760, Array_InternalEnumerator_1_UnityEngine_Color__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Color32___ctor, (Array_InternalEnumerator_1_UnityEngine_Color32_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Color32__Dispose, (Array_InternalEnumerator_1_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Color32__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Color32__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AF370, Object *, Array_InternalEnumerator_1_UnityEngine_Color32__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AF200, Color32, Array_InternalEnumerator_1_UnityEngine_Color32__get_Current, (Array_InternalEnumerator_1_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3758, Array_InternalEnumerator_1_UnityEngine_Color32__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UI_ColorBlock___ctor, (Array_InternalEnumerator_1_UnityEngine_UI_ColorBlock_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UI_ColorBlock__Dispose, (Array_InternalEnumerator_1_UnityEngine_UI_ColorBlock_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UI_ColorBlock__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UI_ColorBlock_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UI_ColorBlock__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UI_ColorBlock_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AF5B0, Object *, Array_InternalEnumerator_1_UnityEngine_UI_ColorBlock__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UI_ColorBlock_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AF400, ColorBlock, Array_InternalEnumerator_1_UnityEngine_UI_ColorBlock__get_Current, (Array_InternalEnumerator_1_UnityEngine_UI_ColorBlock_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3780, Array_InternalEnumerator_1_UnityEngine_UI_ColorBlock__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_CombineInstance___ctor, (Array_InternalEnumerator_1_UnityEngine_CombineInstance_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_CombineInstance__Dispose, (Array_InternalEnumerator_1_UnityEngine_CombineInstance_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_CombineInstance__MoveNext, (Array_InternalEnumerator_1_UnityEngine_CombineInstance_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_CombineInstance__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_CombineInstance_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AF830, Object *, Array_InternalEnumerator_1_UnityEngine_CombineInstance__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_CombineInstance_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AF680, CombineInstance, Array_InternalEnumerator_1_UnityEngine_CombineInstance__get_Current, (Array_InternalEnumerator_1_UnityEngine_CombineInstance_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3770, Array_InternalEnumerator_1_UnityEngine_CombineInstance__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Pathfinding_Voxels_CompactVoxelCell___ctor, (Array_InternalEnumerator_1_Pathfinding_Voxels_CompactVoxelCell_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Pathfinding_Voxels_CompactVoxelCell__Dispose, (Array_InternalEnumerator_1_Pathfinding_Voxels_CompactVoxelCell_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Pathfinding_Voxels_CompactVoxelCell__MoveNext, (Array_InternalEnumerator_1_Pathfinding_Voxels_CompactVoxelCell_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Pathfinding_Voxels_CompactVoxelCell__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Pathfinding_Voxels_CompactVoxelCell_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AFA80, Object *, Array_InternalEnumerator_1_Pathfinding_Voxels_CompactVoxelCell__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Pathfinding_Voxels_CompactVoxelCell_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AF910, CompactVoxelCell, Array_InternalEnumerator_1_Pathfinding_Voxels_CompactVoxelCell__get_Current, (Array_InternalEnumerator_1_Pathfinding_Voxels_CompactVoxelCell_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7C30, Array_InternalEnumerator_1_Pathfinding_Voxels_CompactVoxelCell__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Pathfinding_Voxels_CompactVoxelSpan___ctor, (Array_InternalEnumerator_1_Pathfinding_Voxels_CompactVoxelSpan_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Pathfinding_Voxels_CompactVoxelSpan__Dispose, (Array_InternalEnumerator_1_Pathfinding_Voxels_CompactVoxelSpan_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Pathfinding_Voxels_CompactVoxelSpan__MoveNext, (Array_InternalEnumerator_1_Pathfinding_Voxels_CompactVoxelSpan_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Pathfinding_Voxels_CompactVoxelSpan__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Pathfinding_Voxels_CompactVoxelSpan_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AFC80, Object *, Array_InternalEnumerator_1_Pathfinding_Voxels_CompactVoxelSpan__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Pathfinding_Voxels_CompactVoxelSpan_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AFB10, CompactVoxelSpan, Array_InternalEnumerator_1_Pathfinding_Voxels_CompactVoxelSpan__get_Current, (Array_InternalEnumerator_1_Pathfinding_Voxels_CompactVoxelSpan_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7C58, Array_InternalEnumerator_1_Pathfinding_Voxels_CompactVoxelSpan__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_ComputedStyle___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_ComputedStyle_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_ComputedStyle__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_ComputedStyle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_ComputedStyle__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_ComputedStyle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_ComputedStyle__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_ComputedStyle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AFEC0, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_ComputedStyle__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_ComputedStyle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AFD10, ComputedStyle, Array_InternalEnumerator_1_UnityEngine_UIElements_ComputedStyle__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_ComputedStyle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7C48, Array_InternalEnumerator_1_UnityEngine_UIElements_ComputedStyle__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_ComputedTransitionProperty___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_ComputedTransitionProperty_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_ComputedTransitionProperty__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_ComputedTransitionProperty_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_ComputedTransitionProperty__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_ComputedTransitionProperty_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_ComputedTransitionProperty__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_ComputedTransitionProperty_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B0110, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_ComputedTransitionProperty__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_ComputedTransitionProperty_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016AFF90, ComputedTransitionProperty, Array_InternalEnumerator_1_UnityEngine_UIElements_ComputedTransitionProperty__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_ComputedTransitionProperty_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7C00, Array_InternalEnumerator_1_UnityEngine_UIElements_ComputedTransitionProperty__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor___ctor, (Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__Dispose, (Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__MoveNext, (Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B0330, Object *, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B01B0, ConfigurationDescriptor, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__get_Current, (Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7BF0, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Pathfinding_Connection___ctor, (Array_InternalEnumerator_1_Pathfinding_Connection_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Pathfinding_Connection__Dispose, (Array_InternalEnumerator_1_Pathfinding_Connection_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Pathfinding_Connection__MoveNext, (Array_InternalEnumerator_1_Pathfinding_Connection_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Pathfinding_Connection__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Pathfinding_Connection_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B0540, Object *, Array_InternalEnumerator_1_Pathfinding_Connection__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Pathfinding_Connection_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B03D0, Connection, Array_InternalEnumerator_1_Pathfinding_Connection__get_Current, (Array_InternalEnumerator_1_Pathfinding_Connection_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7C20, Array_InternalEnumerator_1_Pathfinding_Connection__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_ContactPoint___ctor, (Array_InternalEnumerator_1_UnityEngine_ContactPoint_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_ContactPoint__Dispose, (Array_InternalEnumerator_1_UnityEngine_ContactPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_ContactPoint__MoveNext, (Array_InternalEnumerator_1_UnityEngine_ContactPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_ContactPoint__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_ContactPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B0750, Object *, Array_InternalEnumerator_1_UnityEngine_ContactPoint__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_ContactPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B05D0, ContactPoint, Array_InternalEnumerator_1_UnityEngine_ContactPoint__get_Current, (Array_InternalEnumerator_1_UnityEngine_ContactPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7C10, Array_InternalEnumerator_1_UnityEngine_ContactPoint__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_ContactPoint2D___ctor, (Array_InternalEnumerator_1_UnityEngine_ContactPoint2D_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_ContactPoint2D__Dispose, (Array_InternalEnumerator_1_UnityEngine_ContactPoint2D_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_ContactPoint2D__MoveNext, (Array_InternalEnumerator_1_UnityEngine_ContactPoint2D_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_ContactPoint2D__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_ContactPoint2D_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B0990, Object *, Array_InternalEnumerator_1_UnityEngine_ContactPoint2D__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_ContactPoint2D_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B0800, ContactPoint2D, Array_InternalEnumerator_1_UnityEngine_ContactPoint2D__get_Current, (Array_InternalEnumerator_1_UnityEngine_ContactPoint2D_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7C88, Array_InternalEnumerator_1_UnityEngine_ContactPoint2D__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Rewired_ControllerPollingInfo___ctor, (Array_InternalEnumerator_1_Rewired_ControllerPollingInfo_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Rewired_ControllerPollingInfo__Dispose, (Array_InternalEnumerator_1_Rewired_ControllerPollingInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Rewired_ControllerPollingInfo__MoveNext, (Array_InternalEnumerator_1_Rewired_ControllerPollingInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Rewired_ControllerPollingInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Rewired_ControllerPollingInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B0BE0, Object *, Array_InternalEnumerator_1_Rewired_ControllerPollingInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Rewired_ControllerPollingInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B0A50, ControllerPollingInfo, Array_InternalEnumerator_1_Rewired_ControllerPollingInfo__get_Current, (Array_InternalEnumerator_1_Rewired_ControllerPollingInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7C80, Array_InternalEnumerator_1_Rewired_ControllerPollingInfo__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Rewired_ControllerTemplateElementTarget___ctor, (Array_InternalEnumerator_1_Rewired_ControllerTemplateElementTarget_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Rewired_ControllerTemplateElementTarget__Dispose, (Array_InternalEnumerator_1_Rewired_ControllerTemplateElementTarget_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Rewired_ControllerTemplateElementTarget__MoveNext, (Array_InternalEnumerator_1_Rewired_ControllerTemplateElementTarget_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Rewired_ControllerTemplateElementTarget__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Rewired_ControllerTemplateElementTarget_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B0E10, Object *, Array_InternalEnumerator_1_Rewired_ControllerTemplateElementTarget__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Rewired_ControllerTemplateElementTarget_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B0CA0, ControllerTemplateElementTarget, Array_InternalEnumerator_1_Rewired_ControllerTemplateElementTarget__get_Current, (Array_InternalEnumerator_1_Rewired_ControllerTemplateElementTarget_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7C98, Array_InternalEnumerator_1_Rewired_ControllerTemplateElementTarget__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_SplineMesh_CurveSample___ctor, (Array_InternalEnumerator_1_SplineMesh_CurveSample_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_SplineMesh_CurveSample__Dispose, (Array_InternalEnumerator_1_SplineMesh_CurveSample_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_SplineMesh_CurveSample__MoveNext, (Array_InternalEnumerator_1_SplineMesh_CurveSample_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_SplineMesh_CurveSample__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_SplineMesh_CurveSample_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B1040, Object *, Array_InternalEnumerator_1_SplineMesh_CurveSample__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_SplineMesh_CurveSample_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B0EA0, CurveSample, Array_InternalEnumerator_1_SplineMesh_CurveSample__get_Current, (Array_InternalEnumerator_1_SplineMesh_CurveSample_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7C90, Array_InternalEnumerator_1_SplineMesh_CurveSample__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Reflection_CustomAttributeNamedArgument___ctor, (Array_InternalEnumerator_1_System_Reflection_CustomAttributeNamedArgument_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Reflection_CustomAttributeNamedArgument__Dispose, (Array_InternalEnumerator_1_System_Reflection_CustomAttributeNamedArgument_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Reflection_CustomAttributeNamedArgument__MoveNext, (Array_InternalEnumerator_1_System_Reflection_CustomAttributeNamedArgument_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Reflection_CustomAttributeNamedArgument__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Reflection_CustomAttributeNamedArgument_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B1290, Object *, Array_InternalEnumerator_1_System_Reflection_CustomAttributeNamedArgument__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Reflection_CustomAttributeNamedArgument_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B1100, CustomAttributeNamedArgument, Array_InternalEnumerator_1_System_Reflection_CustomAttributeNamedArgument__get_Current, (Array_InternalEnumerator_1_System_Reflection_CustomAttributeNamedArgument_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7C68, Array_InternalEnumerator_1_System_Reflection_CustomAttributeNamedArgument__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Reflection_CustomAttributeTypedArgument___ctor, (Array_InternalEnumerator_1_System_Reflection_CustomAttributeTypedArgument_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Reflection_CustomAttributeTypedArgument__Dispose, (Array_InternalEnumerator_1_System_Reflection_CustomAttributeTypedArgument_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Reflection_CustomAttributeTypedArgument__MoveNext, (Array_InternalEnumerator_1_System_Reflection_CustomAttributeTypedArgument_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Reflection_CustomAttributeTypedArgument__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Reflection_CustomAttributeTypedArgument_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B14B0, Object *, Array_InternalEnumerator_1_System_Reflection_CustomAttributeTypedArgument__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Reflection_CustomAttributeTypedArgument_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B1340, CustomAttributeTypedArgument, Array_InternalEnumerator_1_System_Reflection_CustomAttributeTypedArgument__get_Current, (Array_InternalEnumerator_1_System_Reflection_CustomAttributeTypedArgument_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7C60, Array_InternalEnumerator_1_System_Reflection_CustomAttributeTypedArgument__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_DateTime___ctor, (Array_InternalEnumerator_1_DateTime_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_DateTime__Dispose, (Array_InternalEnumerator_1_DateTime_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_DateTime__MoveNext, (Array_InternalEnumerator_1_DateTime_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_DateTime__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_DateTime_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B16B0, Object *, Array_InternalEnumerator_1_DateTime__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_DateTime_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B1540, DateTime, Array_InternalEnumerator_1_DateTime__get_Current, (Array_InternalEnumerator_1_DateTime_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7C78, Array_InternalEnumerator_1_DateTime__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_DateTimeOffset___ctor, (Array_InternalEnumerator_1_DateTimeOffset_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_DateTimeOffset__Dispose, (Array_InternalEnumerator_1_DateTimeOffset_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_DateTimeOffset__MoveNext, (Array_InternalEnumerator_1_DateTimeOffset_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_DateTimeOffset__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_DateTimeOffset_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B18B0, Object *, Array_InternalEnumerator_1_DateTimeOffset__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_DateTimeOffset_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B1740, DateTimeOffset, Array_InternalEnumerator_1_DateTimeOffset__get_Current, (Array_InternalEnumerator_1_DateTimeOffset_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7C70, Array_InternalEnumerator_1_DateTimeOffset__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Decimal___ctor, (Array_InternalEnumerator_1_Decimal_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Decimal__Dispose, (Array_InternalEnumerator_1_Decimal_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Decimal__MoveNext, (Array_InternalEnumerator_1_Decimal_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Decimal__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Decimal_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B1AB0, Object *, Array_InternalEnumerator_1_Decimal__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Decimal_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B1940, Decimal, Array_InternalEnumerator_1_Decimal__get_Current, (Array_InternalEnumerator_1_Decimal_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7B80, Array_InternalEnumerator_1_Decimal__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_DetailInstanceTransform___ctor, (Array_InternalEnumerator_1_UnityEngine_DetailInstanceTransform_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_DetailInstanceTransform__Dispose, (Array_InternalEnumerator_1_UnityEngine_DetailInstanceTransform_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_DetailInstanceTransform__MoveNext, (Array_InternalEnumerator_1_UnityEngine_DetailInstanceTransform_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_DetailInstanceTransform__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_DetailInstanceTransform_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B1CC0, Object *, Array_InternalEnumerator_1_UnityEngine_DetailInstanceTransform__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_DetailInstanceTransform_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B1B40, DetailInstanceTransform, Array_InternalEnumerator_1_UnityEngine_DetailInstanceTransform__get_Current, (Array_InternalEnumerator_1_UnityEngine_DetailInstanceTransform_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7B78, Array_InternalEnumerator_1_UnityEngine_DetailInstanceTransform__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___ctor, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__Dispose, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__MoveNext, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B1EF0, Object *, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B1D60, DiagnosticEvent, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__get_Current, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7B90, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_DictionaryEntry___ctor, (Array_InternalEnumerator_1_System_Collections_DictionaryEntry_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_DictionaryEntry__Dispose, (Array_InternalEnumerator_1_System_Collections_DictionaryEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_DictionaryEntry__MoveNext, (Array_InternalEnumerator_1_System_Collections_DictionaryEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_DictionaryEntry__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_DictionaryEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B2110, Object *, Array_InternalEnumerator_1_System_Collections_DictionaryEntry__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_DictionaryEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B1FA0, DictionaryEntry, Array_InternalEnumerator_1_System_Collections_DictionaryEntry__get_Current, (Array_InternalEnumerator_1_System_Collections_DictionaryEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7B88, Array_InternalEnumerator_1_System_Collections_DictionaryEntry__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Dimension___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Dimension_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Dimension__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Dimension_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Dimension__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Dimension_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Dimension__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Dimension_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B2310, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Dimension__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Dimension_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B21A0, Dimension, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Dimension__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Dimension_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7B58, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Dimension__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Double___ctor, (Array_InternalEnumerator_1_Double_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Double__Dispose, (Array_InternalEnumerator_1_Double_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Double__MoveNext, (Array_InternalEnumerator_1_Double_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Double__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Double_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B2510, Object *, Array_InternalEnumerator_1_Double__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Double_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B23A0, double, Array_InternalEnumerator_1_Double__get_Current, (Array_InternalEnumerator_1_Double_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7B48, Array_InternalEnumerator_1_Double__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_DrawBufferRange___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_DrawBufferRange_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_DrawBufferRange__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_DrawBufferRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_DrawBufferRange__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_DrawBufferRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_DrawBufferRange__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_DrawBufferRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B2710, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_DrawBufferRange__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_DrawBufferRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B25A0, DrawBufferRange, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_DrawBufferRange__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_DrawBufferRange_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7B70, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_DrawBufferRange__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_EasingFunction___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_EasingFunction_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_EasingFunction__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_EasingFunction_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_EasingFunction__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_EasingFunction_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_EasingFunction__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_EasingFunction_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B2910, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_EasingFunction__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_EasingFunction_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B27A0, EasingFunction, Array_InternalEnumerator_1_UnityEngine_UIElements_EasingFunction__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_EasingFunction_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7B60, Array_InternalEnumerator_1_UnityEngine_UIElements_EasingFunction__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Rewired_ElementAssignmentConflictInfo___ctor, (Array_InternalEnumerator_1_Rewired_ElementAssignmentConflictInfo_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Rewired_ElementAssignmentConflictInfo__Dispose, (Array_InternalEnumerator_1_Rewired_ElementAssignmentConflictInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Rewired_ElementAssignmentConflictInfo__MoveNext, (Array_InternalEnumerator_1_Rewired_ElementAssignmentConflictInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Rewired_ElementAssignmentConflictInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Rewired_ElementAssignmentConflictInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B2B30, Object *, Array_InternalEnumerator_1_Rewired_ElementAssignmentConflictInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Rewired_ElementAssignmentConflictInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B29A0, ElementAssignmentConflictInfo, Array_InternalEnumerator_1_Rewired_ElementAssignmentConflictInfo__get_Current, (Array_InternalEnumerator_1_Rewired_ElementAssignmentConflictInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7BC0, Array_InternalEnumerator_1_Rewired_ElementAssignmentConflictInfo__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Discord_Entitlement___ctor, (Array_InternalEnumerator_1_Discord_Entitlement_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Discord_Entitlement__Dispose, (Array_InternalEnumerator_1_Discord_Entitlement_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Discord_Entitlement__MoveNext, (Array_InternalEnumerator_1_Discord_Entitlement_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Discord_Entitlement__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Discord_Entitlement_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B2D70, Object *, Array_InternalEnumerator_1_Discord_Entitlement__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Discord_Entitlement_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B2BF0, Entitlement, Array_InternalEnumerator_1_Discord_Entitlement__get_Current, (Array_InternalEnumerator_1_Discord_Entitlement_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7BB8, Array_InternalEnumerator_1_Discord_Entitlement__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Runtime_CompilerServices_Ephemeron___ctor, (Array_InternalEnumerator_1_System_Runtime_CompilerServices_Ephemeron_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Runtime_CompilerServices_Ephemeron__Dispose, (Array_InternalEnumerator_1_System_Runtime_CompilerServices_Ephemeron_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Runtime_CompilerServices_Ephemeron__MoveNext, (Array_InternalEnumerator_1_System_Runtime_CompilerServices_Ephemeron_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Runtime_CompilerServices_Ephemeron__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Runtime_CompilerServices_Ephemeron_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B2F80, Object *, Array_InternalEnumerator_1_System_Runtime_CompilerServices_Ephemeron__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Runtime_CompilerServices_Ephemeron_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B2E10, Ephemeron, Array_InternalEnumerator_1_System_Runtime_CompilerServices_Ephemeron__get_Current, (Array_InternalEnumerator_1_System_Runtime_CompilerServices_Ephemeron_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7BE0, Array_InternalEnumerator_1_System_Runtime_CompilerServices_Ephemeron__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Photon_Bolt_EventReliable___ctor, (Array_InternalEnumerator_1_Photon_Bolt_EventReliable_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Photon_Bolt_EventReliable__Dispose, (Array_InternalEnumerator_1_Photon_Bolt_EventReliable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Photon_Bolt_EventReliable__MoveNext, (Array_InternalEnumerator_1_Photon_Bolt_EventReliable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Photon_Bolt_EventReliable__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Photon_Bolt_EventReliable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B3180, Object *, Array_InternalEnumerator_1_Photon_Bolt_EventReliable__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Photon_Bolt_EventReliable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B3010, EventReliable, Array_InternalEnumerator_1_Photon_Bolt_EventReliable__get_Current, (Array_InternalEnumerator_1_Photon_Bolt_EventReliable_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7BD0, Array_InternalEnumerator_1_Photon_Bolt_EventReliable__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Photon_Bolt_EventUnreliable___ctor, (Array_InternalEnumerator_1_Photon_Bolt_EventUnreliable_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Photon_Bolt_EventUnreliable__Dispose, (Array_InternalEnumerator_1_Photon_Bolt_EventUnreliable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Photon_Bolt_EventUnreliable__MoveNext, (Array_InternalEnumerator_1_Photon_Bolt_EventUnreliable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Photon_Bolt_EventUnreliable__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Photon_Bolt_EventUnreliable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B3390, Object *, Array_InternalEnumerator_1_Photon_Bolt_EventUnreliable__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Photon_Bolt_EventUnreliable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B3210, EventUnreliable, Array_InternalEnumerator_1_Photon_Bolt_EventUnreliable__get_Current, (Array_InternalEnumerator_1_Photon_Bolt_EventUnreliable_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7BA0, Array_InternalEnumerator_1_Photon_Bolt_EventUnreliable__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Runtime_InteropServices_ComTypes_FORMATETC___ctor, (Array_InternalEnumerator_1_System_Runtime_InteropServices_ComTypes_FORMATETC_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Runtime_InteropServices_ComTypes_FORMATETC__Dispose, (Array_InternalEnumerator_1_System_Runtime_InteropServices_ComTypes_FORMATETC_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Runtime_InteropServices_ComTypes_FORMATETC__MoveNext, (Array_InternalEnumerator_1_System_Runtime_InteropServices_ComTypes_FORMATETC_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Runtime_InteropServices_ComTypes_FORMATETC__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Runtime_InteropServices_ComTypes_FORMATETC_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B35B0, Object *, Array_InternalEnumerator_1_System_Runtime_InteropServices_ComTypes_FORMATETC__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Runtime_InteropServices_ComTypes_FORMATETC_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B3430, FORMATETC, Array_InternalEnumerator_1_System_Runtime_InteropServices_ComTypes_FORMATETC__get_Current, (Array_InternalEnumerator_1_System_Runtime_InteropServices_ComTypes_FORMATETC_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7B98, Array_InternalEnumerator_1_System_Runtime_InteropServices_ComTypes_FORMATETC__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Discord_FileStat___ctor, (Array_InternalEnumerator_1_Discord_FileStat_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Discord_FileStat__Dispose, (Array_InternalEnumerator_1_Discord_FileStat_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Discord_FileStat__MoveNext, (Array_InternalEnumerator_1_Discord_FileStat_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Discord_FileStat__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Discord_FileStat_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B37D0, Object *, Array_InternalEnumerator_1_Discord_FileStat__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Discord_FileStat_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B3650, FileStat, Array_InternalEnumerator_1_Discord_FileStat__get_Current, (Array_InternalEnumerator_1_Discord_FileStat_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7BB0, Array_InternalEnumerator_1_Discord_FileStat__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_FontDefinition___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_FontDefinition_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_FontDefinition__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_FontDefinition_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_FontDefinition__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_FontDefinition_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_FontDefinition__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_FontDefinition_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B39E0, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_FontDefinition__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_FontDefinition_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B3870, FontDefinition, Array_InternalEnumerator_1_UnityEngine_UIElements_FontDefinition__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_FontDefinition_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7BA8, Array_InternalEnumerator_1_UnityEngine_UIElements_FontDefinition__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_FontWeightPair___ctor, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_FontWeightPair_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_FontWeightPair__Dispose, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_FontWeightPair_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_FontWeightPair__MoveNext, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_FontWeightPair_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_FontWeightPair__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_FontWeightPair_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B3BE0, Object *, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_FontWeightPair__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_FontWeightPair_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B3A70, FontWeightPair, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_FontWeightPair__get_Current, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_FontWeightPair_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7AC0, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_FontWeightPair__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Dissonance_Audio_Playback_FrameFormat___ctor, (Array_InternalEnumerator_1_Dissonance_Audio_Playback_FrameFormat_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Dissonance_Audio_Playback_FrameFormat__Dispose, (Array_InternalEnumerator_1_Dissonance_Audio_Playback_FrameFormat_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Dissonance_Audio_Playback_FrameFormat__MoveNext, (Array_InternalEnumerator_1_Dissonance_Audio_Playback_FrameFormat_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Dissonance_Audio_Playback_FrameFormat__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Dissonance_Audio_Playback_FrameFormat_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B3DF0, Object *, Array_InternalEnumerator_1_Dissonance_Audio_Playback_FrameFormat__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Dissonance_Audio_Playback_FrameFormat_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B3C70, FrameFormat, Array_InternalEnumerator_1_Dissonance_Audio_Playback_FrameFormat__get_Current, (Array_InternalEnumerator_1_Dissonance_Audio_Playback_FrameFormat_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7AB0, Array_InternalEnumerator_1_Dissonance_Audio_Playback_FrameFormat__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Runtime_InteropServices_GCHandle___ctor, (Array_InternalEnumerator_1_System_Runtime_InteropServices_GCHandle_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Runtime_InteropServices_GCHandle__Dispose, (Array_InternalEnumerator_1_System_Runtime_InteropServices_GCHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Runtime_InteropServices_GCHandle__MoveNext, (Array_InternalEnumerator_1_System_Runtime_InteropServices_GCHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Runtime_InteropServices_GCHandle__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Runtime_InteropServices_GCHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B4000, Object *, Array_InternalEnumerator_1_System_Runtime_InteropServices_GCHandle__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Runtime_InteropServices_GCHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B3E90, GCHandle, Array_InternalEnumerator_1_System_Runtime_InteropServices_GCHandle__get_Current, (Array_InternalEnumerator_1_System_Runtime_InteropServices_GCHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7AE0, Array_InternalEnumerator_1_System_Runtime_InteropServices_GCHandle__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B4200, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B4090, GfxUpdateBufferRange, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7AD0, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_GlobalKeyword___ctor, (Array_InternalEnumerator_1_UnityEngine_Rendering_GlobalKeyword_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Rendering_GlobalKeyword__Dispose, (Array_InternalEnumerator_1_UnityEngine_Rendering_GlobalKeyword_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Rendering_GlobalKeyword__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Rendering_GlobalKeyword_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_GlobalKeyword__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Rendering_GlobalKeyword_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B4400, Object *, Array_InternalEnumerator_1_UnityEngine_Rendering_GlobalKeyword__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_GlobalKeyword_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B4290, GlobalKeyword, Array_InternalEnumerator_1_UnityEngine_Rendering_GlobalKeyword__get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_GlobalKeyword_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7A88, Array_InternalEnumerator_1_UnityEngine_Rendering_GlobalKeyword__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphMarshallingStruct___ctor, (Array_InternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphMarshallingStruct_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphMarshallingStruct__Dispose, (Array_InternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphMarshallingStruct_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphMarshallingStruct__MoveNext, (Array_InternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphMarshallingStruct_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphMarshallingStruct__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphMarshallingStruct_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B4620, Object *, Array_InternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphMarshallingStruct__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphMarshallingStruct_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B4490, GlyphMarshallingStruct, Array_InternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphMarshallingStruct__get_Current, (Array_InternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphMarshallingStruct_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7A80, Array_InternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphMarshallingStruct__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___ctor, (Array_InternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__Dispose, (Array_InternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__MoveNext, (Array_InternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B4860, Object *, Array_InternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B46D0, GlyphPairAdjustmentRecord, Array_InternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__get_Current, (Array_InternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7AA0, Array_InternalEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_TextCore_GlyphRect___ctor, (Array_InternalEnumerator_1_UnityEngine_TextCore_GlyphRect_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_TextCore_GlyphRect__Dispose, (Array_InternalEnumerator_1_UnityEngine_TextCore_GlyphRect_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_TextCore_GlyphRect__MoveNext, (Array_InternalEnumerator_1_UnityEngine_TextCore_GlyphRect_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_TextCore_GlyphRect__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_TextCore_GlyphRect_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B4A90, Object *, Array_InternalEnumerator_1_UnityEngine_TextCore_GlyphRect__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_TextCore_GlyphRect_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B4920, GlyphRect, Array_InternalEnumerator_1_UnityEngine_TextCore_GlyphRect__get_Current, (Array_InternalEnumerator_1_UnityEngine_TextCore_GlyphRect_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7A98, Array_InternalEnumerator_1_UnityEngine_TextCore_GlyphRect__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_GradientAlphaKey___ctor, (Array_InternalEnumerator_1_UnityEngine_GradientAlphaKey_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_GradientAlphaKey__Dispose, (Array_InternalEnumerator_1_UnityEngine_GradientAlphaKey_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_GradientAlphaKey__MoveNext, (Array_InternalEnumerator_1_UnityEngine_GradientAlphaKey_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_GradientAlphaKey__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_GradientAlphaKey_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B4C90, Object *, Array_InternalEnumerator_1_UnityEngine_GradientAlphaKey__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_GradientAlphaKey_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B4B20, GradientAlphaKey, Array_InternalEnumerator_1_UnityEngine_GradientAlphaKey__get_Current, (Array_InternalEnumerator_1_UnityEngine_GradientAlphaKey_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7B20, Array_InternalEnumerator_1_UnityEngine_GradientAlphaKey__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_GradientColorKey___ctor, (Array_InternalEnumerator_1_UnityEngine_GradientColorKey_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_GradientColorKey__Dispose, (Array_InternalEnumerator_1_UnityEngine_GradientColorKey_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_GradientColorKey__MoveNext, (Array_InternalEnumerator_1_UnityEngine_GradientColorKey_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_GradientColorKey__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_GradientColorKey_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B4EA0, Object *, Array_InternalEnumerator_1_UnityEngine_GradientColorKey__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_GradientColorKey_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B4D20, GradientColorKey, Array_InternalEnumerator_1_UnityEngine_GradientColorKey__get_Current, (Array_InternalEnumerator_1_UnityEngine_GradientColorKey_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7B18, Array_InternalEnumerator_1_UnityEngine_GradientColorKey__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_GradientSettings___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_GradientSettings_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_GradientSettings__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_GradientSettings_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_GradientSettings__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_GradientSettings_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_GradientSettings__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_GradientSettings_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B50C0, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_GradientSettings__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_GradientSettings_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B4F40, GradientSettings, Array_InternalEnumerator_1_UnityEngine_UIElements_GradientSettings__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_GradientSettings_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7B38, Array_InternalEnumerator_1_UnityEngine_UIElements_GradientSettings__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Guid___ctor, (Array_InternalEnumerator_1_Guid_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Guid__Dispose, (Array_InternalEnumerator_1_Guid_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Guid__MoveNext, (Array_InternalEnumerator_1_Guid_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Guid__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Guid_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B52D0, Object *, Array_InternalEnumerator_1_Guid__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Guid_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B5160, Guid, Array_InternalEnumerator_1_Guid__get_Current, (Array_InternalEnumerator_1_Guid_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7B28, Array_InternalEnumerator_1_Guid__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_HandJointLocation___ctor, (Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_HandJointLocation_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_HandJointLocation__Dispose, (Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_HandJointLocation_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_HandJointLocation__MoveNext, (Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_HandJointLocation_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_HandJointLocation__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_HandJointLocation_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B54E0, Object *, Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_HandJointLocation__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_HandJointLocation_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B5360, HandJointLocation, Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_HandJointLocation__get_Current, (Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_HandJointLocation_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7AF8, Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_HandJointLocation__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Hash128___ctor, (Array_InternalEnumerator_1_UnityEngine_Hash128_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Hash128__Dispose, (Array_InternalEnumerator_1_UnityEngine_Hash128_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Hash128__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Hash128_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Hash128__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Hash128_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B5700, Object *, Array_InternalEnumerator_1_UnityEngine_Hash128__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Hash128_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B5590, Hash128, Array_InternalEnumerator_1_UnityEngine_Hash128__get_Current, (Array_InternalEnumerator_1_UnityEngine_Hash128_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7AE8, Array_InternalEnumerator_1_UnityEngine_Hash128__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Net_HeaderVariantInfo___ctor, (Array_InternalEnumerator_1_System_Net_HeaderVariantInfo_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Net_HeaderVariantInfo__Dispose, (Array_InternalEnumerator_1_System_Net_HeaderVariantInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Net_HeaderVariantInfo__MoveNext, (Array_InternalEnumerator_1_System_Net_HeaderVariantInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Net_HeaderVariantInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Net_HeaderVariantInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B5900, Object *, Array_InternalEnumerator_1_System_Net_HeaderVariantInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Net_HeaderVariantInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B5790, HeaderVariantInfo, Array_InternalEnumerator_1_System_Net_HeaderVariantInfo__get_Current, (Array_InternalEnumerator_1_System_Net_HeaderVariantInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7B08, Array_InternalEnumerator_1_System_Net_HeaderVariantInfo__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_TMPro_HighlightState___ctor, (Array_InternalEnumerator_1_TMPro_HighlightState_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_TMPro_HighlightState__Dispose, (Array_InternalEnumerator_1_TMPro_HighlightState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_TMPro_HighlightState__MoveNext, (Array_InternalEnumerator_1_TMPro_HighlightState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_TMPro_HighlightState__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_TMPro_HighlightState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B5B10, Object *, Array_InternalEnumerator_1_TMPro_HighlightState__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_TMPro_HighlightState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B5990, HighlightState, Array_InternalEnumerator_1_TMPro_HighlightState__get_Current, (Array_InternalEnumerator_1_TMPro_HighlightState_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7B00, Array_InternalEnumerator_1_TMPro_HighlightState__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_HumanBone___ctor, (Array_InternalEnumerator_1_UnityEngine_HumanBone_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_HumanBone__Dispose, (Array_InternalEnumerator_1_UnityEngine_HumanBone_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_HumanBone__MoveNext, (Array_InternalEnumerator_1_UnityEngine_HumanBone_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_HumanBone__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_HumanBone_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B5D40, Object *, Array_InternalEnumerator_1_UnityEngine_HumanBone__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_HumanBone_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B5BB0, HumanBone, Array_InternalEnumerator_1_UnityEngine_HumanBone__get_Current, (Array_InternalEnumerator_1_UnityEngine_HumanBone_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC79E8, Array_InternalEnumerator_1_UnityEngine_HumanBone__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ImpactEffect___ctor, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ImpactEffect_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ImpactEffect__Dispose, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ImpactEffect_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ImpactEffect__MoveNext, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ImpactEffect_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ImpactEffect__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ImpactEffect_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B5F70, Object *, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ImpactEffect__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ImpactEffect_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B5E00, ImpactEffect, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ImpactEffect__get_Current, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ImpactEffect_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC79E0, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ImpactEffect__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Rewired_InputActionSourceData___ctor, (Array_InternalEnumerator_1_Rewired_InputActionSourceData_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Rewired_InputActionSourceData__Dispose, (Array_InternalEnumerator_1_Rewired_InputActionSourceData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Rewired_InputActionSourceData__MoveNext, (Array_InternalEnumerator_1_Rewired_InputActionSourceData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Rewired_InputActionSourceData__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Rewired_InputActionSourceData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B6180, Object *, Array_InternalEnumerator_1_Rewired_InputActionSourceData__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Rewired_InputActionSourceData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B6000, InputActionSourceData, Array_InternalEnumerator_1_Rewired_InputActionSourceData__get_Current, (Array_InternalEnumerator_1_Rewired_InputActionSourceData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC79F8, Array_InternalEnumerator_1_Rewired_InputActionSourceData__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputBinding___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputBinding_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputBinding__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputBinding__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputBinding__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B63D0, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputBinding__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B6220, InputBinding, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputBinding__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC79F0, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputBinding__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B6620, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B64A0, InputControlScheme, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC79B8, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_XR_InputDevice___ctor, (Array_InternalEnumerator_1_UnityEngine_XR_InputDevice_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_XR_InputDevice__Dispose, (Array_InternalEnumerator_1_UnityEngine_XR_InputDevice_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_XR_InputDevice__MoveNext, (Array_InternalEnumerator_1_UnityEngine_XR_InputDevice_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_XR_InputDevice__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_XR_InputDevice_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B6830, Object *, Array_InternalEnumerator_1_UnityEngine_XR_InputDevice__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_XR_InputDevice_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B66C0, InputDevice_1, Array_InternalEnumerator_1_UnityEngine_XR_InputDevice__get_Current, (Array_InternalEnumerator_1_UnityEngine_XR_InputDevice_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC79A8, Array_InternalEnumerator_1_UnityEngine_XR_InputDevice__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B6A50, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B68C0, InputDeviceDescription, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC79D8, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventPtr___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventPtr_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventPtr__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventPtr_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventPtr__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventPtr_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventPtr__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventPtr_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B6C80, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventPtr__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventPtr_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B6B10, InputEventPtr, Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventPtr__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventPtr_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC79C8, Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventPtr__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B6E80, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B6D10, InputUser, Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7A58, Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Int16___ctor, (Array_InternalEnumerator_1_Int16_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Int16__Dispose, (Array_InternalEnumerator_1_Int16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Int16__MoveNext, (Array_InternalEnumerator_1_Int16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Int16__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Int16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B7080, Object *, Array_InternalEnumerator_1_Int16__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Int16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B6F10, int16_t, Array_InternalEnumerator_1_Int16__get_Current, (Array_InternalEnumerator_1_Int16_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7A48, Array_InternalEnumerator_1_Int16__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Pathfinding_Int2___ctor, (Array_InternalEnumerator_1_Pathfinding_Int2_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Pathfinding_Int2__Dispose, (Array_InternalEnumerator_1_Pathfinding_Int2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Pathfinding_Int2__MoveNext, (Array_InternalEnumerator_1_Pathfinding_Int2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Pathfinding_Int2__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Pathfinding_Int2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B7280, Object *, Array_InternalEnumerator_1_Pathfinding_Int2__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Pathfinding_Int2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B7110, Int2, Array_InternalEnumerator_1_Pathfinding_Int2__get_Current, (Array_InternalEnumerator_1_Pathfinding_Int2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7A78, Array_InternalEnumerator_1_Pathfinding_Int2__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Pathfinding_Int3___ctor, (Array_InternalEnumerator_1_Pathfinding_Int3_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Pathfinding_Int3__Dispose, (Array_InternalEnumerator_1_Pathfinding_Int3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Pathfinding_Int3__MoveNext, (Array_InternalEnumerator_1_Pathfinding_Int3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Pathfinding_Int3__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Pathfinding_Int3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B7490, Object *, Array_InternalEnumerator_1_Pathfinding_Int3__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Pathfinding_Int3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B7310, Int3, Array_InternalEnumerator_1_Pathfinding_Int3__get_Current, (Array_InternalEnumerator_1_Pathfinding_Int3_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7A68, Array_InternalEnumerator_1_Pathfinding_Int3__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Int32___ctor, (Array_InternalEnumerator_1_Int32_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Int32__Dispose, (Array_InternalEnumerator_1_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Int32__MoveNext, (Array_InternalEnumerator_1_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Int32__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B76A0, Object *, Array_InternalEnumerator_1_Int32__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B7530, int32_t, Array_InternalEnumerator_1_Int32__get_Current, (Array_InternalEnumerator_1_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7A18, Array_InternalEnumerator_1_Int32__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Int32Enum___ctor, (Array_InternalEnumerator_1_Int32Enum_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Int32Enum__Dispose, (Array_InternalEnumerator_1_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Int32Enum__MoveNext, (Array_InternalEnumerator_1_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Int32Enum__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B78A0, Object *, Array_InternalEnumerator_1_Int32Enum__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B7730, Int32Enum__Enum, Array_InternalEnumerator_1_Int32Enum__get_Current, (Array_InternalEnumerator_1_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7A08, Array_InternalEnumerator_1_Int32Enum__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Int64___ctor, (Array_InternalEnumerator_1_Int64_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Int64__Dispose, (Array_InternalEnumerator_1_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Int64__MoveNext, (Array_InternalEnumerator_1_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Int64__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B7AA0, Object *, Array_InternalEnumerator_1_Int64__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B7930, int64_t, Array_InternalEnumerator_1_Int64__get_Current, (Array_InternalEnumerator_1_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7A38, Array_InternalEnumerator_1_Int64__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Pathfinding_ClipperLib_IntPoint___ctor, (Array_InternalEnumerator_1_Pathfinding_ClipperLib_IntPoint_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Pathfinding_ClipperLib_IntPoint__Dispose, (Array_InternalEnumerator_1_Pathfinding_ClipperLib_IntPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Pathfinding_ClipperLib_IntPoint__MoveNext, (Array_InternalEnumerator_1_Pathfinding_ClipperLib_IntPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Pathfinding_ClipperLib_IntPoint__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Pathfinding_ClipperLib_IntPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B7CA0, Object *, Array_InternalEnumerator_1_Pathfinding_ClipperLib_IntPoint__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Pathfinding_ClipperLib_IntPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B7B30, IntPoint, Array_InternalEnumerator_1_Pathfinding_ClipperLib_IntPoint__get_Current, (Array_InternalEnumerator_1_Pathfinding_ClipperLib_IntPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7A28, Array_InternalEnumerator_1_Pathfinding_ClipperLib_IntPoint__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_IntPtr___ctor, (Array_InternalEnumerator_1_IntPtr_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_IntPtr__Dispose, (Array_InternalEnumerator_1_IntPtr_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_IntPtr__MoveNext, (Array_InternalEnumerator_1_IntPtr_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_IntPtr__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_IntPtr_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B7EA0, Object *, Array_InternalEnumerator_1_IntPtr__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_IntPtr_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B7D30, void *, Array_InternalEnumerator_1_IntPtr__get_Current, (Array_InternalEnumerator_1_IntPtr_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7920, Array_InternalEnumerator_1_IntPtr__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Pathfinding_IntRect___ctor, (Array_InternalEnumerator_1_Pathfinding_IntRect_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Pathfinding_IntRect__Dispose, (Array_InternalEnumerator_1_Pathfinding_IntRect_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Pathfinding_IntRect__MoveNext, (Array_InternalEnumerator_1_Pathfinding_IntRect_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Pathfinding_IntRect__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Pathfinding_IntRect_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B80A0, Object *, Array_InternalEnumerator_1_Pathfinding_IntRect__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Pathfinding_IntRect_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B7F30, IntRect, Array_InternalEnumerator_1_Pathfinding_IntRect__get_Current, (Array_InternalEnumerator_1_Pathfinding_IntRect_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7910, Array_InternalEnumerator_1_Pathfinding_IntRect__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Globalization_InternalCodePageDataItem___ctor, (Array_InternalEnumerator_1_System_Globalization_InternalCodePageDataItem_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Globalization_InternalCodePageDataItem__Dispose, (Array_InternalEnumerator_1_System_Globalization_InternalCodePageDataItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Globalization_InternalCodePageDataItem__MoveNext, (Array_InternalEnumerator_1_System_Globalization_InternalCodePageDataItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Globalization_InternalCodePageDataItem__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Globalization_InternalCodePageDataItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B82A0, Object *, Array_InternalEnumerator_1_System_Globalization_InternalCodePageDataItem__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Globalization_InternalCodePageDataItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B8130, InternalCodePageDataItem, Array_InternalEnumerator_1_System_Globalization_InternalCodePageDataItem__get_Current, (Array_InternalEnumerator_1_System_Globalization_InternalCodePageDataItem_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7938, Array_InternalEnumerator_1_System_Globalization_InternalCodePageDataItem__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Globalization_InternalEncodingDataItem___ctor, (Array_InternalEnumerator_1_System_Globalization_InternalEncodingDataItem_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Globalization_InternalEncodingDataItem__Dispose, (Array_InternalEnumerator_1_System_Globalization_InternalEncodingDataItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Globalization_InternalEncodingDataItem__MoveNext, (Array_InternalEnumerator_1_System_Globalization_InternalEncodingDataItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Globalization_InternalEncodingDataItem__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Globalization_InternalEncodingDataItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B84A0, Object *, Array_InternalEnumerator_1_System_Globalization_InternalEncodingDataItem__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Globalization_InternalEncodingDataItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B8330, InternalEncodingDataItem, Array_InternalEnumerator_1_System_Globalization_InternalEncodingDataItem__get_Current, (Array_InternalEnumerator_1_System_Globalization_InternalEncodingDataItem_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7928, Array_InternalEnumerator_1_System_Globalization_InternalEncodingDataItem__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_InternedString___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_InternedString__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_InternedString__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_InternedString__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B86A0, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_InternedString__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B8530, InternedString, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_InternedString__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC78E8, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_InternedString__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_InterpretedFrameInfo___ctor, (Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_InterpretedFrameInfo_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_InterpretedFrameInfo__Dispose, (Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_InterpretedFrameInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_InterpretedFrameInfo__MoveNext, (Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_InterpretedFrameInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_InterpretedFrameInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_InterpretedFrameInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B88A0, Object *, Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_InterpretedFrameInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_InterpretedFrameInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B8730, InterpretedFrameInfo, Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_InterpretedFrameInfo__get_Current, (Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_InterpretedFrameInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC78E0, Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_InterpretedFrameInfo__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Timeline_IntervalTreeNode___ctor, (Array_InternalEnumerator_1_UnityEngine_Timeline_IntervalTreeNode_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Timeline_IntervalTreeNode__Dispose, (Array_InternalEnumerator_1_UnityEngine_Timeline_IntervalTreeNode_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Timeline_IntervalTreeNode__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Timeline_IntervalTreeNode_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Timeline_IntervalTreeNode__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Timeline_IntervalTreeNode_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B8AB0, Object *, Array_InternalEnumerator_1_UnityEngine_Timeline_IntervalTreeNode__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Timeline_IntervalTreeNode_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B8930, IntervalTreeNode, Array_InternalEnumerator_1_UnityEngine_Timeline_IntervalTreeNode__get_Current, (Array_InternalEnumerator_1_UnityEngine_Timeline_IntervalTreeNode_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7900, Array_InternalEnumerator_1_UnityEngine_Timeline_IntervalTreeNode__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_IpQCkqlgJLyrFpAOyBfUxXQpJsWK___ctor, (Array_InternalEnumerator_1_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_IpQCkqlgJLyrFpAOyBfUxXQpJsWK__Dispose, (Array_InternalEnumerator_1_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_IpQCkqlgJLyrFpAOyBfUxXQpJsWK__MoveNext, (Array_InternalEnumerator_1_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_IpQCkqlgJLyrFpAOyBfUxXQpJsWK__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B8CC0, Object *, Array_InternalEnumerator_1_IpQCkqlgJLyrFpAOyBfUxXQpJsWK__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B8B50, IpQCkqlgJLyrFpAOyBfUxXQpJsWK, Array_InternalEnumerator_1_IpQCkqlgJLyrFpAOyBfUxXQpJsWK__get_Current, (Array_InternalEnumerator_1_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC78F8, Array_InternalEnumerator_1_IpQCkqlgJLyrFpAOyBfUxXQpJsWK__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount___ctor, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount__Dispose, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount__MoveNext, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B8ED0, Object *, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B8D50, ItemDefinitionAmount, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount__get_Current, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7988, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Keyframe___ctor, (Array_InternalEnumerator_1_UnityEngine_Keyframe_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Keyframe__Dispose, (Array_InternalEnumerator_1_UnityEngine_Keyframe_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Keyframe__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Keyframe_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Keyframe__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Keyframe_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B90F0, Object *, Array_InternalEnumerator_1_UnityEngine_Keyframe__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Keyframe_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B8F70, Keyframe, Array_InternalEnumerator_1_UnityEngine_Keyframe__get_Current, (Array_InternalEnumerator_1_UnityEngine_Keyframe_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7978, Array_InternalEnumerator_1_UnityEngine_Keyframe__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_KickedPlayer___ctor, (Array_InternalEnumerator_1_KickedPlayer_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_KickedPlayer__Dispose, (Array_InternalEnumerator_1_KickedPlayer_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_KickedPlayer__MoveNext, (Array_InternalEnumerator_1_KickedPlayer_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_KickedPlayer__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_KickedPlayer_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B9300, Object *, Array_InternalEnumerator_1_KickedPlayer__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_KickedPlayer_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B9190, KickedPlayer, Array_InternalEnumerator_1_KickedPlayer__get_Current, (Array_InternalEnumerator_1_KickedPlayer_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7998, Array_InternalEnumerator_1_KickedPlayer__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_LOD___ctor, (Array_InternalEnumerator_1_UnityEngine_LOD_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_LOD__Dispose, (Array_InternalEnumerator_1_UnityEngine_LOD_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_LOD__MoveNext, (Array_InternalEnumerator_1_UnityEngine_LOD_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_LOD__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_LOD_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B9500, Object *, Array_InternalEnumerator_1_UnityEngine_LOD__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_LOD_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B9390, LOD, Array_InternalEnumerator_1_UnityEngine_LOD__get_Current, (Array_InternalEnumerator_1_UnityEngine_LOD_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7990, Array_InternalEnumerator_1_UnityEngine_LOD__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_LayerMask___ctor, (Array_InternalEnumerator_1_UnityEngine_LayerMask_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_LayerMask__Dispose, (Array_InternalEnumerator_1_UnityEngine_LayerMask_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_LayerMask__MoveNext, (Array_InternalEnumerator_1_UnityEngine_LayerMask_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_LayerMask__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_LayerMask_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B9700, Object *, Array_InternalEnumerator_1_UnityEngine_LayerMask__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_LayerMask_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B9590, LayerMask, Array_InternalEnumerator_1_UnityEngine_LayerMask__get_Current, (Array_InternalEnumerator_1_UnityEngine_LayerMask_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7950, Array_InternalEnumerator_1_UnityEngine_LayerMask__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_Length___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_Length_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_Length__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_Length_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_Length__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_Length_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_Length__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_Length_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B9900, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_Length__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_Length_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B9790, Length, Array_InternalEnumerator_1_UnityEngine_UIElements_Length__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_Length_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7948, Array_InternalEnumerator_1_UnityEngine_UIElements_Length__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI___ctor, (Array_InternalEnumerator_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI__Dispose, (Array_InternalEnumerator_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B9B40, Object *, Array_InternalEnumerator_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B9990, LightDataGI, Array_InternalEnumerator_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI__get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7970, Array_InternalEnumerator_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_LineInfo___ctor, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_LineInfo_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_LineInfo__Dispose, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_LineInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_LineInfo__MoveNext, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_LineInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_LineInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_LineInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B9DC0, Object *, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_LineInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_LineInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B9C10, LineInfo_1, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_LineInfo__get_Current, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_LineInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7960, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_LineInfo__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_LinkInfo___ctor, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_LinkInfo_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_LinkInfo__Dispose, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_LinkInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_LinkInfo__MoveNext, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_LinkInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_LinkInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_LinkInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BA010, Object *, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_LinkInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_LinkInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016B9E90, LinkInfo, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_LinkInfo__get_Current, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_LinkInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7880, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_LinkInfo__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_LocalDefinition___ctor, (Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_LocalDefinition_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_LocalDefinition__Dispose, (Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_LocalDefinition_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_LocalDefinition__MoveNext, (Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_LocalDefinition_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_LocalDefinition__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_LocalDefinition_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BA220, Object *, Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_LocalDefinition__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_LocalDefinition_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BA0B0, LocalDefinition, Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_LocalDefinition__get_Current, (Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_LocalDefinition_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7878, Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_LocalDefinition__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_LocalKeyword___ctor, (Array_InternalEnumerator_1_UnityEngine_Rendering_LocalKeyword_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Rendering_LocalKeyword__Dispose, (Array_InternalEnumerator_1_UnityEngine_Rendering_LocalKeyword_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Rendering_LocalKeyword__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Rendering_LocalKeyword_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_LocalKeyword__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Rendering_LocalKeyword_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BA430, Object *, Array_InternalEnumerator_1_UnityEngine_Rendering_LocalKeyword__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_LocalKeyword_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BA2B0, LocalKeyword, Array_InternalEnumerator_1_UnityEngine_Rendering_LocalKeyword__get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_LocalKeyword_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7890, Array_InternalEnumerator_1_UnityEngine_Rendering_LocalKeyword__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_ManipulatorActivationFilter___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_ManipulatorActivationFilter_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_ManipulatorActivationFilter__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_ManipulatorActivationFilter_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_ManipulatorActivationFilter__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_ManipulatorActivationFilter_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_ManipulatorActivationFilter__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_ManipulatorActivationFilter_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BA650, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_ManipulatorActivationFilter__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_ManipulatorActivationFilter_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BA4D0, ManipulatorActivationFilter, Array_InternalEnumerator_1_UnityEngine_UIElements_ManipulatorActivationFilter__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_ManipulatorActivationFilter_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7888, Array_InternalEnumerator_1_UnityEngine_UIElements_ManipulatorActivationFilter__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_TMPro_MaterialReference___ctor, (Array_InternalEnumerator_1_TMPro_MaterialReference_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_TMPro_MaterialReference__Dispose, (Array_InternalEnumerator_1_TMPro_MaterialReference_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_TMPro_MaterialReference__MoveNext, (Array_InternalEnumerator_1_TMPro_MaterialReference_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_TMPro_MaterialReference__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_TMPro_MaterialReference_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BA880, Object *, Array_InternalEnumerator_1_TMPro_MaterialReference__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_TMPro_MaterialReference_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BA6F0, MaterialReference, Array_InternalEnumerator_1_TMPro_MaterialReference__get_Current, (Array_InternalEnumerator_1_TMPro_MaterialReference_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7860, Array_InternalEnumerator_1_TMPro_MaterialReference__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_MaterialReference___ctor, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_MaterialReference_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_MaterialReference__Dispose, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_MaterialReference_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_MaterialReference__MoveNext, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_MaterialReference_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_MaterialReference__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_MaterialReference_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BAAD0, Object *, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_MaterialReference__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_MaterialReference_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BA940, MaterialReference_1, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_MaterialReference__get_Current, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_MaterialReference_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7858, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_MaterialReference__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Matrix4x4___ctor, (Array_InternalEnumerator_1_UnityEngine_Matrix4x4_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Matrix4x4__Dispose, (Array_InternalEnumerator_1_UnityEngine_Matrix4x4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Matrix4x4__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Matrix4x4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Matrix4x4__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Matrix4x4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BAD20, Object *, Array_InternalEnumerator_1_UnityEngine_Matrix4x4__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Matrix4x4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BAB90, Matrix4x4, Array_InternalEnumerator_1_UnityEngine_Matrix4x4__get_Current, (Array_InternalEnumerator_1_UnityEngine_Matrix4x4_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7870, Array_InternalEnumerator_1_UnityEngine_Matrix4x4__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_MeshInfo___ctor, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_MeshInfo_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_MeshInfo__Dispose, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_MeshInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_MeshInfo__MoveNext, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_MeshInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_MeshInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_MeshInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BAF70, Object *, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_MeshInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_MeshInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BADE0, MeshInfo, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_MeshInfo__get_Current, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_MeshInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7868, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_MeshInfo__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxFloat___ctor, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxFloat_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxFloat__Dispose, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxFloat_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxFloat__MoveNext, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxFloat_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxFloat__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxFloat_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BB1A0, Object *, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxFloat__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxFloat_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BB030, MinMaxFloat, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxFloat__get_Current, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxFloat_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC78C8, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxFloat__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxVector3___ctor, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxVector3_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxVector3__Dispose, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxVector3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxVector3__MoveNext, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxVector3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxVector3__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxVector3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BB3B0, Object *, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxVector3__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxVector3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BB230, MinMaxVector3, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxVector3__get_Current, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxVector3_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC78C0, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_MinMaxVector3__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_ModifiableContactPair___ctor, (Array_InternalEnumerator_1_UnityEngine_ModifiableContactPair_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_ModifiableContactPair__Dispose, (Array_InternalEnumerator_1_UnityEngine_ModifiableContactPair_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_ModifiableContactPair__MoveNext, (Array_InternalEnumerator_1_UnityEngine_ModifiableContactPair_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_ModifiableContactPair__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_ModifiableContactPair_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BB610, Object *, Array_InternalEnumerator_1_UnityEngine_ModifiableContactPair__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_ModifiableContactPair_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BB460, ModifiableContactPair, Array_InternalEnumerator_1_UnityEngine_ModifiableContactPair__get_Current, (Array_InternalEnumerator_1_UnityEngine_ModifiableContactPair_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC78D8, Array_InternalEnumerator_1_UnityEngine_ModifiableContactPair__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_NameAndParameters___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_NameAndParameters__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_NameAndParameters__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_NameAndParameters__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BB870, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_NameAndParameters__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BB6F0, NameAndParameters, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_NameAndParameters__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC78D0, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_NameAndParameters__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_NamedValue___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_NamedValue_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_NamedValue__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_NamedValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_NamedValue__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_NamedValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_NamedValue__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_NamedValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BBA90, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_NamedValue__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_NamedValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BB910, NamedValue, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_NamedValue__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_NamedValue_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC78A8, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_NamedValue__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativeAnchor___ctor, (Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativeAnchor_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativeAnchor__Dispose, (Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativeAnchor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativeAnchor__MoveNext, (Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativeAnchor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativeAnchor__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativeAnchor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BBCC0, Object *, Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativeAnchor__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativeAnchor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BBB30, NativeAnchor, Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativeAnchor__get_Current, (Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativeAnchor_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7898, Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativeAnchor__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativePlane___ctor, (Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativePlane_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativePlane__Dispose, (Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativePlane_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativePlane__MoveNext, (Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativePlane_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativePlane__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativePlane_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BBF20, Object *, Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativePlane__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativePlane_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BBD80, NativePlane, Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativePlane__get_Current, (Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativePlane_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC78B8, Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_NativePlane__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UI_Navigation___ctor, (Array_InternalEnumerator_1_UnityEngine_UI_Navigation_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UI_Navigation__Dispose, (Array_InternalEnumerator_1_UnityEngine_UI_Navigation_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UI_Navigation__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UI_Navigation_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UI_Navigation__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UI_Navigation_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BC170, Object *, Array_InternalEnumerator_1_UnityEngine_UI_Navigation__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UI_Navigation_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BBFE0, Navigation, Array_InternalEnumerator_1_UnityEngine_UI_Navigation__get_Current, (Array_InternalEnumerator_1_UnityEngine_UI_Navigation_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC78B0, Array_InternalEnumerator_1_UnityEngine_UI_Navigation__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Photon_Bolt_NetworkId___ctor, (Array_InternalEnumerator_1_Photon_Bolt_NetworkId_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Photon_Bolt_NetworkId__Dispose, (Array_InternalEnumerator_1_Photon_Bolt_NetworkId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Photon_Bolt_NetworkId__MoveNext, (Array_InternalEnumerator_1_Photon_Bolt_NetworkId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Photon_Bolt_NetworkId__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Photon_Bolt_NetworkId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BC390, Object *, Array_InternalEnumerator_1_Photon_Bolt_NetworkId__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Photon_Bolt_NetworkId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BC220, NetworkId, Array_InternalEnumerator_1_Photon_Bolt_NetworkId__get_Current, (Array_InternalEnumerator_1_Photon_Bolt_NetworkId_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC77D0, Array_InternalEnumerator_1_Photon_Bolt_NetworkId__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Photon_Bolt_NetworkPropertyInfo___ctor, (Array_InternalEnumerator_1_Photon_Bolt_NetworkPropertyInfo_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Photon_Bolt_NetworkPropertyInfo__Dispose, (Array_InternalEnumerator_1_Photon_Bolt_NetworkPropertyInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Photon_Bolt_NetworkPropertyInfo__MoveNext, (Array_InternalEnumerator_1_Photon_Bolt_NetworkPropertyInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Photon_Bolt_NetworkPropertyInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Photon_Bolt_NetworkPropertyInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BC5A0, Object *, Array_InternalEnumerator_1_Photon_Bolt_NetworkPropertyInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Photon_Bolt_NetworkPropertyInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BC420, NetworkPropertyInfo, Array_InternalEnumerator_1_Photon_Bolt_NetworkPropertyInfo__get_Current, (Array_InternalEnumerator_1_Photon_Bolt_NetworkPropertyInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC77C0, Array_InternalEnumerator_1_Photon_Bolt_NetworkPropertyInfo__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Photon_Bolt_NetworkValue___ctor, (Array_InternalEnumerator_1_Photon_Bolt_NetworkValue_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Photon_Bolt_NetworkValue__Dispose, (Array_InternalEnumerator_1_Photon_Bolt_NetworkValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Photon_Bolt_NetworkValue__MoveNext, (Array_InternalEnumerator_1_Photon_Bolt_NetworkValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Photon_Bolt_NetworkValue__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Photon_Bolt_NetworkValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BC7C0, Object *, Array_InternalEnumerator_1_Photon_Bolt_NetworkValue__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Photon_Bolt_NetworkValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BC640, NetworkValue, Array_InternalEnumerator_1_Photon_Bolt_NetworkValue__get_Current, (Array_InternalEnumerator_1_Photon_Bolt_NetworkValue_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC77E0, Array_InternalEnumerator_1_Photon_Bolt_NetworkValue__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Object___ctor, (Array_InternalEnumerator_1_Object_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Object__Dispose, (Array_InternalEnumerator_1_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Object__MoveNext, (Array_InternalEnumerator_1_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Object__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BC9D0, Object *, Array_InternalEnumerator_1_Object__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BC860, Object *, Array_InternalEnumerator_1_Object__get_Current, (Array_InternalEnumerator_1_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC77D8, Array_InternalEnumerator_1_Object__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData___ctor, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData__Dispose, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData__MoveNext, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BCBA0, Object *, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BCA10, ObjectInitializationData, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData__get_Current, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7790, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___ctor, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__Dispose, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__MoveNext, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BCDC0, Object *, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BCC50, ObjectSurface, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__get_Current, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7788, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Dissonance_Networking_Client_OpenChannel___ctor, (Array_InternalEnumerator_1_Dissonance_Networking_Client_OpenChannel_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Dissonance_Networking_Client_OpenChannel__Dispose, (Array_InternalEnumerator_1_Dissonance_Networking_Client_OpenChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Dissonance_Networking_Client_OpenChannel__MoveNext, (Array_InternalEnumerator_1_Dissonance_Networking_Client_OpenChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Dissonance_Networking_Client_OpenChannel__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Dissonance_Networking_Client_OpenChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BCFD0, Object *, Array_InternalEnumerator_1_Dissonance_Networking_Client_OpenChannel__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Dissonance_Networking_Client_OpenChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BCE50, OpenChannel, Array_InternalEnumerator_1_Dissonance_Networking_Client_OpenChannel__get_Current, (Array_InternalEnumerator_1_Dissonance_Networking_Client_OpenChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC77B0, Array_InternalEnumerator_1_Dissonance_Networking_Client_OpenChannel__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___ctor, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__Dispose, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__MoveNext, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BD200, Object *, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BD070, OriginalMaterialValue, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__get_Current, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC77A0, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Photon_Bolt_Internal_PacketStats___ctor, (Array_InternalEnumerator_1_Photon_Bolt_Internal_PacketStats_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Photon_Bolt_Internal_PacketStats__Dispose, (Array_InternalEnumerator_1_Photon_Bolt_Internal_PacketStats_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Photon_Bolt_Internal_PacketStats__MoveNext, (Array_InternalEnumerator_1_Photon_Bolt_Internal_PacketStats_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Photon_Bolt_Internal_PacketStats__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Photon_Bolt_Internal_PacketStats_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BD430, Object *, Array_InternalEnumerator_1_Photon_Bolt_Internal_PacketStats__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Photon_Bolt_Internal_PacketStats_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BD2B0, PacketStats, Array_InternalEnumerator_1_Photon_Bolt_Internal_PacketStats__get_Current, (Array_InternalEnumerator_1_Photon_Bolt_Internal_PacketStats_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7830, Array_InternalEnumerator_1_Photon_Bolt_Internal_PacketStats__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_PageInfo___ctor, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_PageInfo_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_PageInfo__Dispose, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_PageInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_PageInfo__MoveNext, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_PageInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_PageInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_PageInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BD650, Object *, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_PageInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_PageInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BD4D0, PageInfo, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_PageInfo__get_Current, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_PageInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7828, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_PageInfo__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Reflection_ParameterModifier___ctor, (Array_InternalEnumerator_1_System_Reflection_ParameterModifier_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Reflection_ParameterModifier__Dispose, (Array_InternalEnumerator_1_System_Reflection_ParameterModifier_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Reflection_ParameterModifier__MoveNext, (Array_InternalEnumerator_1_System_Reflection_ParameterModifier_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Reflection_ParameterModifier__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Reflection_ParameterModifier_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BD860, Object *, Array_InternalEnumerator_1_System_Reflection_ParameterModifier__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Reflection_ParameterModifier_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BD6F0, ParameterModifier, Array_InternalEnumerator_1_System_Reflection_ParameterModifier__get_Current, (Array_InternalEnumerator_1_System_Reflection_ParameterModifier_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7850, Array_InternalEnumerator_1_System_Reflection_ParameterModifier__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_ParticleCollisionEvent___ctor, (Array_InternalEnumerator_1_UnityEngine_ParticleCollisionEvent_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_ParticleCollisionEvent__Dispose, (Array_InternalEnumerator_1_UnityEngine_ParticleCollisionEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_ParticleCollisionEvent__MoveNext, (Array_InternalEnumerator_1_UnityEngine_ParticleCollisionEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_ParticleCollisionEvent__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_ParticleCollisionEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BDA80, Object *, Array_InternalEnumerator_1_UnityEngine_ParticleCollisionEvent__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_ParticleCollisionEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BD8F0, ParticleCollisionEvent, Array_InternalEnumerator_1_UnityEngine_ParticleCollisionEvent__get_Current, (Array_InternalEnumerator_1_UnityEngine_ParticleCollisionEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7840, Array_InternalEnumerator_1_UnityEngine_ParticleCollisionEvent__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_PatchExtents___ctor, (Array_InternalEnumerator_1_UnityEngine_PatchExtents_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_PatchExtents__Dispose, (Array_InternalEnumerator_1_UnityEngine_PatchExtents_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_PatchExtents__MoveNext, (Array_InternalEnumerator_1_UnityEngine_PatchExtents_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_PatchExtents__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_PatchExtents_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BDCA0, Object *, Array_InternalEnumerator_1_UnityEngine_PatchExtents__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_PatchExtents_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BDB30, PatchExtents, Array_InternalEnumerator_1_UnityEngine_PatchExtents__get_Current, (Array_InternalEnumerator_1_UnityEngine_PatchExtents_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7800, Array_InternalEnumerator_1_UnityEngine_PatchExtents__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Rewired_PidVid___ctor, (Array_InternalEnumerator_1_Rewired_PidVid_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Rewired_PidVid__Dispose, (Array_InternalEnumerator_1_Rewired_PidVid_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Rewired_PidVid__MoveNext, (Array_InternalEnumerator_1_Rewired_PidVid_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Rewired_PidVid__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Rewired_PidVid_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BDEA0, Object *, Array_InternalEnumerator_1_Rewired_PidVid__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Rewired_PidVid_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BDD30, PidVid, Array_InternalEnumerator_1_Rewired_PidVid__get_Current, (Array_InternalEnumerator_1_Rewired_PidVid_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC77F0, Array_InternalEnumerator_1_Rewired_PidVid__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Plane___ctor, (Array_InternalEnumerator_1_UnityEngine_Plane_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Plane__Dispose, (Array_InternalEnumerator_1_UnityEngine_Plane_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Plane__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Plane_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Plane__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Plane_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BE0A0, Object *, Array_InternalEnumerator_1_UnityEngine_Plane__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Plane_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BDF30, Plane, Array_InternalEnumerator_1_UnityEngine_Plane__get_Current, (Array_InternalEnumerator_1_UnityEngine_Plane_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7820, Array_InternalEnumerator_1_UnityEngine_Plane__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Playables_Playable___ctor, (Array_InternalEnumerator_1_UnityEngine_Playables_Playable_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Playables_Playable__Dispose, (Array_InternalEnumerator_1_UnityEngine_Playables_Playable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Playables_Playable__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Playables_Playable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Playables_Playable__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Playables_Playable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BE2A0, Object *, Array_InternalEnumerator_1_UnityEngine_Playables_Playable__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Playables_Playable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BE130, Playable, Array_InternalEnumerator_1_UnityEngine_Playables_Playable__get_Current, (Array_InternalEnumerator_1_UnityEngine_Playables_Playable_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7810, Array_InternalEnumerator_1_UnityEngine_Playables_Playable__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Playables_PlayableBinding___ctor, (Array_InternalEnumerator_1_UnityEngine_Playables_PlayableBinding_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Playables_PlayableBinding__Dispose, (Array_InternalEnumerator_1_UnityEngine_Playables_PlayableBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Playables_PlayableBinding__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Playables_PlayableBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Playables_PlayableBinding__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Playables_PlayableBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BE4B0, Object *, Array_InternalEnumerator_1_UnityEngine_Playables_PlayableBinding__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Playables_PlayableBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BE330, PlayableBinding, Array_InternalEnumerator_1_UnityEngine_Playables_PlayableBinding__get_Current, (Array_InternalEnumerator_1_UnityEngine_Playables_PlayableBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7700, Array_InternalEnumerator_1_UnityEngine_Playables_PlayableBinding__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Dissonance_PlayerChannel___ctor, (Array_InternalEnumerator_1_Dissonance_PlayerChannel_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Dissonance_PlayerChannel__Dispose, (Array_InternalEnumerator_1_Dissonance_PlayerChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Dissonance_PlayerChannel__MoveNext, (Array_InternalEnumerator_1_Dissonance_PlayerChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Dissonance_PlayerChannel__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Dissonance_PlayerChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BE6D0, Object *, Array_InternalEnumerator_1_Dissonance_PlayerChannel__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Dissonance_PlayerChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BE550, PlayerChannel, Array_InternalEnumerator_1_Dissonance_PlayerChannel__get_Current, (Array_InternalEnumerator_1_Dissonance_PlayerChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC76F8, Array_InternalEnumerator_1_Dissonance_PlayerChannel__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_PlayerFlashlightBeam___ctor, (Array_InternalEnumerator_1_PlayerFlashlightBeam_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_PlayerFlashlightBeam__Dispose, (Array_InternalEnumerator_1_PlayerFlashlightBeam_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_PlayerFlashlightBeam__MoveNext, (Array_InternalEnumerator_1_PlayerFlashlightBeam_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_PlayerFlashlightBeam__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_PlayerFlashlightBeam_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BE8E0, Object *, Array_InternalEnumerator_1_PlayerFlashlightBeam__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_PlayerFlashlightBeam_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BE770, PlayerFlashlightBeam, Array_InternalEnumerator_1_PlayerFlashlightBeam__get_Current, (Array_InternalEnumerator_1_PlayerFlashlightBeam_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7720, Array_InternalEnumerator_1_PlayerFlashlightBeam__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_LowLevel_PlayerLoopSystem___ctor, (Array_InternalEnumerator_1_UnityEngine_LowLevel_PlayerLoopSystem_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_LowLevel_PlayerLoopSystem__Dispose, (Array_InternalEnumerator_1_UnityEngine_LowLevel_PlayerLoopSystem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_LowLevel_PlayerLoopSystem__MoveNext, (Array_InternalEnumerator_1_UnityEngine_LowLevel_PlayerLoopSystem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_LowLevel_PlayerLoopSystem__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_LowLevel_PlayerLoopSystem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BEB00, Object *, Array_InternalEnumerator_1_UnityEngine_LowLevel_PlayerLoopSystem__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_LowLevel_PlayerLoopSystem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BE970, PlayerLoopSystem, Array_InternalEnumerator_1_UnityEngine_LowLevel_PlayerLoopSystem__get_Current, (Array_InternalEnumerator_1_UnityEngine_LowLevel_PlayerLoopSystem_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7710, Array_InternalEnumerator_1_UnityEngine_LowLevel_PlayerLoopSystem__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_PointerModel___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_PointerModel_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_PointerModel__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_PointerModel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_PointerModel__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_PointerModel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_PointerModel__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_PointerModel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BED90, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_PointerModel__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_PointerModel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BEBB0, PointerModel, Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_PointerModel__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_PointerModel_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC76D0, Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_PointerModel__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Photon_Bolt_PrefabId___ctor, (Array_InternalEnumerator_1_Photon_Bolt_PrefabId_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Photon_Bolt_PrefabId__Dispose, (Array_InternalEnumerator_1_Photon_Bolt_PrefabId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Photon_Bolt_PrefabId__MoveNext, (Array_InternalEnumerator_1_Photon_Bolt_PrefabId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Photon_Bolt_PrefabId__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Photon_Bolt_PrefabId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BF000, Object *, Array_InternalEnumerator_1_Photon_Bolt_PrefabId__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Photon_Bolt_PrefabId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BEE90, PrefabId, Array_InternalEnumerator_1_Photon_Bolt_PrefabId__get_Current, (Array_InternalEnumerator_1_Photon_Bolt_PrefabId_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC76C0, Array_InternalEnumerator_1_Photon_Bolt_PrefabId__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Photon_Bolt_Priority___ctor, (Array_InternalEnumerator_1_Photon_Bolt_Priority_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Photon_Bolt_Priority__Dispose, (Array_InternalEnumerator_1_Photon_Bolt_Priority_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Photon_Bolt_Priority__MoveNext, (Array_InternalEnumerator_1_Photon_Bolt_Priority_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Photon_Bolt_Priority__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Photon_Bolt_Priority_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BF210, Object *, Array_InternalEnumerator_1_Photon_Bolt_Priority__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Photon_Bolt_Priority_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BF090, Priority, Array_InternalEnumerator_1_Photon_Bolt_Priority__get_Current, (Array_InternalEnumerator_1_Photon_Bolt_Priority_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC76F0, Array_InternalEnumerator_1_Photon_Bolt_Priority__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___ctor, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__Dispose, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BF430, Object *, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BF2B0, ProbeVolumeBakingProcessSettings, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC76E0, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Pathfinding_Progress___ctor, (Array_InternalEnumerator_1_Pathfinding_Progress_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Pathfinding_Progress__Dispose, (Array_InternalEnumerator_1_Pathfinding_Progress_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Pathfinding_Progress__MoveNext, (Array_InternalEnumerator_1_Pathfinding_Progress_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Pathfinding_Progress__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Pathfinding_Progress_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BF640, Object *, Array_InternalEnumerator_1_Pathfinding_Progress__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Pathfinding_Progress_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BF4D0, Progress, Array_InternalEnumerator_1_Pathfinding_Progress__get_Current, (Array_InternalEnumerator_1_Pathfinding_Progress_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7760, Array_InternalEnumerator_1_Pathfinding_Progress__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Steamworks_PublishedFileId_t___ctor, (Array_InternalEnumerator_1_Steamworks_PublishedFileId_t_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Steamworks_PublishedFileId_t__Dispose, (Array_InternalEnumerator_1_Steamworks_PublishedFileId_t_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Steamworks_PublishedFileId_t__MoveNext, (Array_InternalEnumerator_1_Steamworks_PublishedFileId_t_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Steamworks_PublishedFileId_t__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Steamworks_PublishedFileId_t_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BF840, Object *, Array_InternalEnumerator_1_Steamworks_PublishedFileId_t__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Steamworks_PublishedFileId_t_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BF6D0, PublishedFileId_t, Array_InternalEnumerator_1_Steamworks_PublishedFileId_t__get_Current, (Array_InternalEnumerator_1_Steamworks_PublishedFileId_t_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7758, Array_InternalEnumerator_1_Steamworks_PublishedFileId_t__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_QeeoSydAJKtvhuMHtIdMCGTRHBDhA___ctor, (Array_InternalEnumerator_1_QeeoSydAJKtvhuMHtIdMCGTRHBDhA_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_QeeoSydAJKtvhuMHtIdMCGTRHBDhA__Dispose, (Array_InternalEnumerator_1_QeeoSydAJKtvhuMHtIdMCGTRHBDhA_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_QeeoSydAJKtvhuMHtIdMCGTRHBDhA__MoveNext, (Array_InternalEnumerator_1_QeeoSydAJKtvhuMHtIdMCGTRHBDhA_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_QeeoSydAJKtvhuMHtIdMCGTRHBDhA__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_QeeoSydAJKtvhuMHtIdMCGTRHBDhA_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BFA50, Object *, Array_InternalEnumerator_1_QeeoSydAJKtvhuMHtIdMCGTRHBDhA__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_QeeoSydAJKtvhuMHtIdMCGTRHBDhA_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BF8D0, QeeoSydAJKtvhuMHtIdMCGTRHBDhA, Array_InternalEnumerator_1_QeeoSydAJKtvhuMHtIdMCGTRHBDhA__get_Current, (Array_InternalEnumerator_1_QeeoSydAJKtvhuMHtIdMCGTRHBDhA_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7780, Array_InternalEnumerator_1_QeeoSydAJKtvhuMHtIdMCGTRHBDhA__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Quaternion___ctor, (Array_InternalEnumerator_1_UnityEngine_Quaternion_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Quaternion__Dispose, (Array_InternalEnumerator_1_UnityEngine_Quaternion_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Quaternion__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Quaternion_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Quaternion__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Quaternion_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BFC60, Object *, Array_InternalEnumerator_1_UnityEngine_Quaternion__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Quaternion_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BFAF0, Quaternion, Array_InternalEnumerator_1_UnityEngine_Quaternion__get_Current, (Array_InternalEnumerator_1_UnityEngine_Quaternion_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7770, Array_InternalEnumerator_1_UnityEngine_Quaternion__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Xml_Schema_RangePositionInfo___ctor, (Array_InternalEnumerator_1_System_Xml_Schema_RangePositionInfo_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Xml_Schema_RangePositionInfo__Dispose, (Array_InternalEnumerator_1_System_Xml_Schema_RangePositionInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Xml_Schema_RangePositionInfo__MoveNext, (Array_InternalEnumerator_1_System_Xml_Schema_RangePositionInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Xml_Schema_RangePositionInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Xml_Schema_RangePositionInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BFE60, Object *, Array_InternalEnumerator_1_System_Xml_Schema_RangePositionInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Xml_Schema_RangePositionInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BFCF0, RangePositionInfo, Array_InternalEnumerator_1_System_Xml_Schema_RangePositionInfo__get_Current, (Array_InternalEnumerator_1_System_Xml_Schema_RangePositionInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7738, Array_InternalEnumerator_1_System_Xml_Schema_RangePositionInfo__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_RaycastHit___ctor, (Array_InternalEnumerator_1_UnityEngine_RaycastHit_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_RaycastHit__Dispose, (Array_InternalEnumerator_1_UnityEngine_RaycastHit_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_RaycastHit__MoveNext, (Array_InternalEnumerator_1_UnityEngine_RaycastHit_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_RaycastHit__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_RaycastHit_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C0080, Object *, Array_InternalEnumerator_1_UnityEngine_RaycastHit__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_RaycastHit_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016BFEF0, RaycastHit, Array_InternalEnumerator_1_UnityEngine_RaycastHit__get_Current, (Array_InternalEnumerator_1_UnityEngine_RaycastHit_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7730, Array_InternalEnumerator_1_UnityEngine_RaycastHit__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_RaycastHit2D___ctor, (Array_InternalEnumerator_1_UnityEngine_RaycastHit2D_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_RaycastHit2D__Dispose, (Array_InternalEnumerator_1_UnityEngine_RaycastHit2D_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_RaycastHit2D__MoveNext, (Array_InternalEnumerator_1_UnityEngine_RaycastHit2D_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_RaycastHit2D__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_RaycastHit2D_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C02C0, Object *, Array_InternalEnumerator_1_UnityEngine_RaycastHit2D__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_RaycastHit2D_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C0140, RaycastHit2D, Array_InternalEnumerator_1_UnityEngine_RaycastHit2D__get_Current, (Array_InternalEnumerator_1_UnityEngine_RaycastHit2D_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7748, Array_InternalEnumerator_1_UnityEngine_RaycastHit2D__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_EventSystems_RaycastResult___ctor, (Array_InternalEnumerator_1_UnityEngine_EventSystems_RaycastResult_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_EventSystems_RaycastResult__Dispose, (Array_InternalEnumerator_1_UnityEngine_EventSystems_RaycastResult_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_EventSystems_RaycastResult__MoveNext, (Array_InternalEnumerator_1_UnityEngine_EventSystems_RaycastResult_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_EventSystems_RaycastResult__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_EventSystems_RaycastResult_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C0510, Object *, Array_InternalEnumerator_1_UnityEngine_EventSystems_RaycastResult__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_EventSystems_RaycastResult_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C0370, RaycastResult, Array_InternalEnumerator_1_UnityEngine_EventSystems_RaycastResult__get_Current, (Array_InternalEnumerator_1_UnityEngine_EventSystems_RaycastResult_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7740, Array_InternalEnumerator_1_UnityEngine_EventSystems_RaycastResult__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Rect___ctor, (Array_InternalEnumerator_1_UnityEngine_Rect_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Rect__Dispose, (Array_InternalEnumerator_1_UnityEngine_Rect_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Rect__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Rect_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Rect__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Rect_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C0740, Object *, Array_InternalEnumerator_1_UnityEngine_Rect__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Rect_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C05D0, Rect, Array_InternalEnumerator_1_UnityEngine_Rect__get_Current, (Array_InternalEnumerator_1_UnityEngine_Rect_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7640, Array_InternalEnumerator_1_UnityEngine_Rect__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_ReflectionProbeBlendInfo___ctor, (Array_InternalEnumerator_1_UnityEngine_Rendering_ReflectionProbeBlendInfo_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Rendering_ReflectionProbeBlendInfo__Dispose, (Array_InternalEnumerator_1_UnityEngine_Rendering_ReflectionProbeBlendInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Rendering_ReflectionProbeBlendInfo__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Rendering_ReflectionProbeBlendInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_ReflectionProbeBlendInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Rendering_ReflectionProbeBlendInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C0940, Object *, Array_InternalEnumerator_1_UnityEngine_Rendering_ReflectionProbeBlendInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_ReflectionProbeBlendInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C07D0, ReflectionProbeBlendInfo, Array_InternalEnumerator_1_UnityEngine_Rendering_ReflectionProbeBlendInfo__get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_ReflectionProbeBlendInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7630, Array_InternalEnumerator_1_UnityEngine_Rendering_ReflectionProbeBlendInfo__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Dissonance_RemoteChannel___ctor, (Array_InternalEnumerator_1_Dissonance_RemoteChannel_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Dissonance_RemoteChannel__Dispose, (Array_InternalEnumerator_1_Dissonance_RemoteChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Dissonance_RemoteChannel__MoveNext, (Array_InternalEnumerator_1_Dissonance_RemoteChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Dissonance_RemoteChannel__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Dissonance_RemoteChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C0B50, Object *, Array_InternalEnumerator_1_Dissonance_RemoteChannel__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Dissonance_RemoteChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C09D0, RemoteChannel, Array_InternalEnumerator_1_Dissonance_RemoteChannel__get_Current, (Array_InternalEnumerator_1_Dissonance_RemoteChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7650, Array_InternalEnumerator_1_Dissonance_RemoteChannel__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChainTextEntry___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChainTextEntry_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChainTextEntry__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChainTextEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChainTextEntry__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChainTextEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChainTextEntry__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChainTextEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C0D60, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChainTextEntry__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChainTextEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C0BF0, RenderChainTextEntry, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChainTextEntry__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChainTextEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7648, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChainTextEntry__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_RenderInstancedDataLayout___ctor, (Array_InternalEnumerator_1_UnityEngine_RenderInstancedDataLayout_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_RenderInstancedDataLayout__Dispose, (Array_InternalEnumerator_1_UnityEngine_RenderInstancedDataLayout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_RenderInstancedDataLayout__MoveNext, (Array_InternalEnumerator_1_UnityEngine_RenderInstancedDataLayout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_RenderInstancedDataLayout__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_RenderInstancedDataLayout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C0F60, Object *, Array_InternalEnumerator_1_UnityEngine_RenderInstancedDataLayout__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_RenderInstancedDataLayout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C0DF0, RenderInstancedDataLayout, Array_InternalEnumerator_1_UnityEngine_RenderInstancedDataLayout__get_Current, (Array_InternalEnumerator_1_UnityEngine_RenderInstancedDataLayout_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7608, Array_InternalEnumerator_1_UnityEngine_RenderInstancedDataLayout__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_RenderTargetIdentifier___ctor, (Array_InternalEnumerator_1_UnityEngine_Rendering_RenderTargetIdentifier_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Rendering_RenderTargetIdentifier__Dispose, (Array_InternalEnumerator_1_UnityEngine_Rendering_RenderTargetIdentifier_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Rendering_RenderTargetIdentifier__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Rendering_RenderTargetIdentifier_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_RenderTargetIdentifier__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Rendering_RenderTargetIdentifier_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C1180, Object *, Array_InternalEnumerator_1_UnityEngine_Rendering_RenderTargetIdentifier__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_RenderTargetIdentifier_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C0FF0, RenderTargetIdentifier, Array_InternalEnumerator_1_UnityEngine_Rendering_RenderTargetIdentifier__get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_RenderTargetIdentifier_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7600, Array_InternalEnumerator_1_UnityEngine_Rendering_RenderTargetIdentifier__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_RendererUtils_RendererList___ctor, (Array_InternalEnumerator_1_UnityEngine_Rendering_RendererUtils_RendererList_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Rendering_RendererUtils_RendererList__Dispose, (Array_InternalEnumerator_1_UnityEngine_Rendering_RendererUtils_RendererList_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Rendering_RendererUtils_RendererList__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Rendering_RendererUtils_RendererList_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_RendererUtils_RendererList__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Rendering_RendererUtils_RendererList_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C13A0, Object *, Array_InternalEnumerator_1_UnityEngine_Rendering_RendererUtils_RendererList__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_RendererUtils_RendererList_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C1230, RendererList, Array_InternalEnumerator_1_UnityEngine_Rendering_RendererUtils_RendererList__get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_RendererUtils_RendererList_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7628, Array_InternalEnumerator_1_UnityEngine_Rendering_RendererUtils_RendererList__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle___ctor, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle__Dispose, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C15A0, Object *, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C1430, RendererListHandle, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle__get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7618, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource___ctor, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource__Dispose, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C1820, Object *, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C1630, RendererListResource, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource__get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7690, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Resolution___ctor, (Array_InternalEnumerator_1_UnityEngine_Resolution_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Resolution__Dispose, (Array_InternalEnumerator_1_UnityEngine_Resolution_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Resolution__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Resolution_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Resolution__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Resolution_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C1AC0, Object *, Array_InternalEnumerator_1_UnityEngine_Resolution__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Resolution_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C1940, Resolution, Array_InternalEnumerator_1_UnityEngine_Resolution__get_Current, (Array_InternalEnumerator_1_UnityEngine_Resolution_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7688, Array_InternalEnumerator_1_UnityEngine_Resolution__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle___ctor, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle__Dispose, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C1CD0, Object *, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C1B60, ResourceHandle, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle__get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC76B0, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Resources_ResourceLocator___ctor, (Array_InternalEnumerator_1_System_Resources_ResourceLocator_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Resources_ResourceLocator__Dispose, (Array_InternalEnumerator_1_System_Resources_ResourceLocator_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Resources_ResourceLocator__MoveNext, (Array_InternalEnumerator_1_System_Resources_ResourceLocator_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Resources_ResourceLocator__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Resources_ResourceLocator_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C1ED0, Object *, Array_InternalEnumerator_1_System_Resources_ResourceLocator__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Resources_ResourceLocator_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C1D60, ResourceLocator, Array_InternalEnumerator_1_System_Resources_ResourceLocator__get_Current, (Array_InternalEnumerator_1_System_Resources_ResourceLocator_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC76A0, Array_InternalEnumerator_1_System_Resources_ResourceLocator__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_TMPro_RichTextTagAttribute___ctor, (Array_InternalEnumerator_1_TMPro_RichTextTagAttribute_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_TMPro_RichTextTagAttribute__Dispose, (Array_InternalEnumerator_1_TMPro_RichTextTagAttribute_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_TMPro_RichTextTagAttribute__MoveNext, (Array_InternalEnumerator_1_TMPro_RichTextTagAttribute_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_TMPro_RichTextTagAttribute__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_TMPro_RichTextTagAttribute_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C20E0, Object *, Array_InternalEnumerator_1_TMPro_RichTextTagAttribute__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_TMPro_RichTextTagAttribute_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C1F60, RichTextTagAttribute, Array_InternalEnumerator_1_TMPro_RichTextTagAttribute__get_Current, (Array_InternalEnumerator_1_TMPro_RichTextTagAttribute_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7660, Array_InternalEnumerator_1_TMPro_RichTextTagAttribute__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_RichTextTagAttribute___ctor, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_RichTextTagAttribute_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_RichTextTagAttribute__Dispose, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_RichTextTagAttribute_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_RichTextTagAttribute__MoveNext, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_RichTextTagAttribute_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_RichTextTagAttribute__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_RichTextTagAttribute_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C2300, Object *, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_RichTextTagAttribute__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_RichTextTagAttribute_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C2180, RichTextTagAttribute_1, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_RichTextTagAttribute__get_Current, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_RichTextTagAttribute_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7658, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_RichTextTagAttribute__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Dissonance_RoomChannel___ctor, (Array_InternalEnumerator_1_Dissonance_RoomChannel_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Dissonance_RoomChannel__Dispose, (Array_InternalEnumerator_1_Dissonance_RoomChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Dissonance_RoomChannel__MoveNext, (Array_InternalEnumerator_1_Dissonance_RoomChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Dissonance_RoomChannel__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Dissonance_RoomChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C2530, Object *, Array_InternalEnumerator_1_Dissonance_RoomChannel__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Dissonance_RoomChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C23A0, RoomChannel, Array_InternalEnumerator_1_Dissonance_RoomChannel__get_Current, (Array_InternalEnumerator_1_Dissonance_RoomChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7678, Array_InternalEnumerator_1_Dissonance_RoomChannel__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Dissonance_RoomMembership___ctor, (Array_InternalEnumerator_1_Dissonance_RoomMembership_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Dissonance_RoomMembership__Dispose, (Array_InternalEnumerator_1_Dissonance_RoomMembership_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Dissonance_RoomMembership__MoveNext, (Array_InternalEnumerator_1_Dissonance_RoomMembership_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Dissonance_RoomMembership__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Dissonance_RoomMembership_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C2760, Object *, Array_InternalEnumerator_1_Dissonance_RoomMembership__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Dissonance_RoomMembership_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C25E0, RoomMembership, Array_InternalEnumerator_1_Dissonance_RoomMembership__get_Current, (Array_InternalEnumerator_1_Dissonance_RoomMembership_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7668, Array_InternalEnumerator_1_Dissonance_RoomMembership__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Dissonance_RoomName___ctor, (Array_InternalEnumerator_1_Dissonance_RoomName_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Dissonance_RoomName__Dispose, (Array_InternalEnumerator_1_Dissonance_RoomName_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Dissonance_RoomName__MoveNext, (Array_InternalEnumerator_1_Dissonance_RoomName_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Dissonance_RoomName__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Dissonance_RoomName_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C2970, Object *, Array_InternalEnumerator_1_Dissonance_RoomName__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Dissonance_RoomName_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C2800, RoomName, Array_InternalEnumerator_1_Dissonance_RoomName__get_Current, (Array_InternalEnumerator_1_Dissonance_RoomName_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC75C8, Array_InternalEnumerator_1_Dissonance_RoomName__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_Rotate___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_Rotate_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_Rotate__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_Rotate_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_Rotate__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_Rotate_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_Rotate__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_Rotate_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C2B80, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_Rotate__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_Rotate_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C2A00, Rotate_1, Array_InternalEnumerator_1_UnityEngine_UIElements_Rotate__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_Rotate_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC75B8, Array_InternalEnumerator_1_UnityEngine_UIElements_Rotate__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_RuleMatcher___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_RuleMatcher_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_RuleMatcher__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_RuleMatcher_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_RuleMatcher__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_RuleMatcher_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_RuleMatcher__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_RuleMatcher_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C2D90, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_RuleMatcher__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_RuleMatcher_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C2C20, RuleMatcher, Array_InternalEnumerator_1_UnityEngine_UIElements_RuleMatcher__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_RuleMatcher_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC75E0, Array_InternalEnumerator_1_UnityEngine_UIElements_RuleMatcher__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_RuntimeLabel___ctor, (Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_RuntimeLabel_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_RuntimeLabel__Dispose, (Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_RuntimeLabel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_RuntimeLabel__MoveNext, (Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_RuntimeLabel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_RuntimeLabel__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_RuntimeLabel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C2FA0, Object *, Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_RuntimeLabel__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_RuntimeLabel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C2E20, RuntimeLabel, Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_RuntimeLabel__get_Current, (Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_RuntimeLabel_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC75D8, Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_RuntimeLabel__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_SByte___ctor, (Array_InternalEnumerator_1_SByte_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_SByte__Dispose, (Array_InternalEnumerator_1_SByte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_SByte__MoveNext, (Array_InternalEnumerator_1_SByte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_SByte__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_SByte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C31B0, Object *, Array_InternalEnumerator_1_SByte__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_SByte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C3040, int8_t, Array_InternalEnumerator_1_SByte__get_Current, (Array_InternalEnumerator_1_SByte_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7598, Array_InternalEnumerator_1_SByte__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_SByteEnum___ctor, (Array_InternalEnumerator_1_SByteEnum_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_SByteEnum__Dispose, (Array_InternalEnumerator_1_SByteEnum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_SByteEnum__MoveNext, (Array_InternalEnumerator_1_SByteEnum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_SByteEnum__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_SByteEnum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C33B0, Object *, Array_InternalEnumerator_1_SByteEnum__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_SByteEnum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C3240, SByteEnum__Enum, Array_InternalEnumerator_1_SByteEnum__get_Current, (Array_InternalEnumerator_1_SByteEnum_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7590, Array_InternalEnumerator_1_SByteEnum__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Runtime_InteropServices_ComTypes_STATDATA___ctor, (Array_InternalEnumerator_1_System_Runtime_InteropServices_ComTypes_STATDATA_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Runtime_InteropServices_ComTypes_STATDATA__Dispose, (Array_InternalEnumerator_1_System_Runtime_InteropServices_ComTypes_STATDATA_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Runtime_InteropServices_ComTypes_STATDATA__MoveNext, (Array_InternalEnumerator_1_System_Runtime_InteropServices_ComTypes_STATDATA_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Runtime_InteropServices_ComTypes_STATDATA__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Runtime_InteropServices_ComTypes_STATDATA_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C35D0, Object *, Array_InternalEnumerator_1_System_Runtime_InteropServices_ComTypes_STATDATA__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Runtime_InteropServices_ComTypes_STATDATA_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C3440, STATDATA, Array_InternalEnumerator_1_System_Runtime_InteropServices_ComTypes_STATDATA__get_Current, (Array_InternalEnumerator_1_System_Runtime_InteropServices_ComTypes_STATDATA_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC75B0, Array_InternalEnumerator_1_System_Runtime_InteropServices_ComTypes_STATDATA__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_ScalableImage___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_ScalableImage_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_ScalableImage__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_ScalableImage_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_ScalableImage__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_ScalableImage_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_ScalableImage__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_ScalableImage_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C3800, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_ScalableImage__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_ScalableImage_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C3690, ScalableImage, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_ScalableImage__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_ScalableImage_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC75A8, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_ScalableImage__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_Scale___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_Scale_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_Scale__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_Scale_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_Scale__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_Scale_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_Scale__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_Scale_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C3A00, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_Scale__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_Scale_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C3890, Scale, Array_InternalEnumerator_1_UnityEngine_UIElements_Scale__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_Scale_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCB10, Array_InternalEnumerator_1_UnityEngine_UIElements_Scale__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C3C10, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C3A90, SelectorMatchRecord, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCB20, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Windows_Speech_SemanticMeaning___ctor, (Array_InternalEnumerator_1_UnityEngine_Windows_Speech_SemanticMeaning_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Windows_Speech_SemanticMeaning__Dispose, (Array_InternalEnumerator_1_UnityEngine_Windows_Speech_SemanticMeaning_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Windows_Speech_SemanticMeaning__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Windows_Speech_SemanticMeaning_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Windows_Speech_SemanticMeaning__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Windows_Speech_SemanticMeaning_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C3E20, Object *, Array_InternalEnumerator_1_UnityEngine_Windows_Speech_SemanticMeaning__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Windows_Speech_SemanticMeaning_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C3CB0, SemanticMeaning, Array_InternalEnumerator_1_UnityEngine_Windows_Speech_SemanticMeaning__get_Current, (Array_InternalEnumerator_1_UnityEngine_Windows_Speech_SemanticMeaning_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCB18, Array_InternalEnumerator_1_UnityEngine_Windows_Speech_SemanticMeaning__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_SerializedType___ctor, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_SerializedType_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_SerializedType__Dispose, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_SerializedType_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_SerializedType__MoveNext, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_SerializedType_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_SerializedType__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_SerializedType_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C4030, Object *, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_SerializedType__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_SerializedType_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C3EB0, SerializedType, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_SerializedType__get_Current, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_SerializedType_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCAB8, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_SerializedType__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_SessionClient___ctor, (Array_InternalEnumerator_1_SessionClient_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_SessionClient__Dispose, (Array_InternalEnumerator_1_SessionClient_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_SessionClient__MoveNext, (Array_InternalEnumerator_1_SessionClient_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_SessionClient__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_SessionClient_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C4260, Object *, Array_InternalEnumerator_1_SessionClient__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_SessionClient_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C40D0, SessionClient, Array_InternalEnumerator_1_SessionClient__get_Current, (Array_InternalEnumerator_1_SessionClient_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCAB0, Array_InternalEnumerator_1_SessionClient__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderKeyword___ctor, (Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderKeyword_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderKeyword__Dispose, (Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderKeyword_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderKeyword__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderKeyword_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderKeyword__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderKeyword_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C4490, Object *, Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderKeyword__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderKeyword_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C4320, ShaderKeyword, Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderKeyword__get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderKeyword_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCAC8, Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderKeyword__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderTagId___ctor, (Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderTagId_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderTagId__Dispose, (Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderTagId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderTagId__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderTagId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderTagId__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderTagId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C4690, Object *, Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderTagId__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderTagId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C4520, ShaderTagId, Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderTagId__get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderTagId_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCAC0, Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderTagId__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderVariablesProbeVolumes___ctor, (Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderVariablesProbeVolumes_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderVariablesProbeVolumes__Dispose, (Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderVariablesProbeVolumes_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderVariablesProbeVolumes__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderVariablesProbeVolumes_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderVariablesProbeVolumes__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderVariablesProbeVolumes_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C48B0, Object *, Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderVariablesProbeVolumes__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderVariablesProbeVolumes_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C4720, ShaderVariablesProbeVolumes, Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderVariablesProbeVolumes__get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderVariablesProbeVolumes_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCA98, Array_InternalEnumerator_1_UnityEngine_Rendering_ShaderVariablesProbeVolumes__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Single___ctor, (Array_InternalEnumerator_1_Single_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Single__Dispose, (Array_InternalEnumerator_1_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Single__MoveNext, (Array_InternalEnumerator_1_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Single__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C4AE0, Object *, Array_InternalEnumerator_1_Single__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C4970, float, Array_InternalEnumerator_1_Single__get_Current, (Array_InternalEnumerator_1_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCA90, Array_InternalEnumerator_1_Single__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_SkeletonBone___ctor, (Array_InternalEnumerator_1_UnityEngine_SkeletonBone_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_SkeletonBone__Dispose, (Array_InternalEnumerator_1_UnityEngine_SkeletonBone_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_SkeletonBone__MoveNext, (Array_InternalEnumerator_1_UnityEngine_SkeletonBone_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_SkeletonBone__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_SkeletonBone_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C4D00, Object *, Array_InternalEnumerator_1_UnityEngine_SkeletonBone__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_SkeletonBone_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C4B70, SkeletonBone, Array_InternalEnumerator_1_UnityEngine_SkeletonBone__get_Current, (Array_InternalEnumerator_1_UnityEngine_SkeletonBone_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCAA8, Array_InternalEnumerator_1_UnityEngine_SkeletonBone__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Discord_Sku___ctor, (Array_InternalEnumerator_1_Discord_Sku_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Discord_Sku__Dispose, (Array_InternalEnumerator_1_Discord_Sku_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Discord_Sku__MoveNext, (Array_InternalEnumerator_1_Discord_Sku_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Discord_Sku__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Discord_Sku_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C4F50, Object *, Array_InternalEnumerator_1_Discord_Sku__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Discord_Sku_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C4DC0, Sku, Array_InternalEnumerator_1_Discord_Sku__get_Current, (Array_InternalEnumerator_1_Discord_Sku_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCAA0, Array_InternalEnumerator_1_Discord_Sku__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Dissonance_Audio_Playback_SpeechSession___ctor, (Array_InternalEnumerator_1_Dissonance_Audio_Playback_SpeechSession_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Dissonance_Audio_Playback_SpeechSession__Dispose, (Array_InternalEnumerator_1_Dissonance_Audio_Playback_SpeechSession_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Dissonance_Audio_Playback_SpeechSession__MoveNext, (Array_InternalEnumerator_1_Dissonance_Audio_Playback_SpeechSession_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Dissonance_Audio_Playback_SpeechSession__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Dissonance_Audio_Playback_SpeechSession_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C5190, Object *, Array_InternalEnumerator_1_Dissonance_Audio_Playback_SpeechSession__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Dissonance_Audio_Playback_SpeechSession_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C5000, SpeechSession, Array_InternalEnumerator_1_Dissonance_Audio_Playback_SpeechSession__get_Current, (Array_InternalEnumerator_1_Dissonance_Audio_Playback_SpeechSession_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCAF8, Array_InternalEnumerator_1_Dissonance_Audio_Playback_SpeechSession__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_SphericalHarmonicsL2___ctor, (Array_InternalEnumerator_1_UnityEngine_Rendering_SphericalHarmonicsL2_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Rendering_SphericalHarmonicsL2__Dispose, (Array_InternalEnumerator_1_UnityEngine_Rendering_SphericalHarmonicsL2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Rendering_SphericalHarmonicsL2__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Rendering_SphericalHarmonicsL2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_SphericalHarmonicsL2__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Rendering_SphericalHarmonicsL2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C5410, Object *, Array_InternalEnumerator_1_UnityEngine_Rendering_SphericalHarmonicsL2__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_SphericalHarmonicsL2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C5250, SphericalHarmonicsL2, Array_InternalEnumerator_1_UnityEngine_Rendering_SphericalHarmonicsL2__get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_SphericalHarmonicsL2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCAF0, Array_InternalEnumerator_1_UnityEngine_Rendering_SphericalHarmonicsL2__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UI_SpriteState___ctor, (Array_InternalEnumerator_1_UnityEngine_UI_SpriteState_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UI_SpriteState__Dispose, (Array_InternalEnumerator_1_UnityEngine_UI_SpriteState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UI_SpriteState__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UI_SpriteState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UI_SpriteState__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UI_SpriteState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C5670, Object *, Array_InternalEnumerator_1_UnityEngine_UI_SpriteState__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UI_SpriteState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C54F0, SpriteState, Array_InternalEnumerator_1_UnityEngine_UI_SpriteState__get_Current, (Array_InternalEnumerator_1_UnityEngine_UI_SpriteState_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCB08, Array_InternalEnumerator_1_UnityEngine_UI_SpriteState__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Net_Security_SslApplicationProtocol___ctor, (Array_InternalEnumerator_1_System_Net_Security_SslApplicationProtocol_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Net_Security_SslApplicationProtocol__Dispose, (Array_InternalEnumerator_1_System_Net_Security_SslApplicationProtocol_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Net_Security_SslApplicationProtocol__MoveNext, (Array_InternalEnumerator_1_System_Net_Security_SslApplicationProtocol_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Net_Security_SslApplicationProtocol__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Net_Security_SslApplicationProtocol_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C5880, Object *, Array_InternalEnumerator_1_System_Net_Security_SslApplicationProtocol__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Net_Security_SslApplicationProtocol_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C5710, SslApplicationProtocol, Array_InternalEnumerator_1_System_Net_Security_SslApplicationProtocol__get_Current, (Array_InternalEnumerator_1_System_Net_Security_SslApplicationProtocol_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCB00, Array_InternalEnumerator_1_System_Net_Security_SslApplicationProtocol__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Steamworks_SteamItemDef_t___ctor, (Array_InternalEnumerator_1_Steamworks_SteamItemDef_t_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Steamworks_SteamItemDef_t__Dispose, (Array_InternalEnumerator_1_Steamworks_SteamItemDef_t_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Steamworks_SteamItemDef_t__MoveNext, (Array_InternalEnumerator_1_Steamworks_SteamItemDef_t_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Steamworks_SteamItemDef_t__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Steamworks_SteamItemDef_t_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C5A80, Object *, Array_InternalEnumerator_1_Steamworks_SteamItemDef_t__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Steamworks_SteamItemDef_t_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C5910, SteamItemDef_t, Array_InternalEnumerator_1_Steamworks_SteamItemDef_t__get_Current, (Array_InternalEnumerator_1_Steamworks_SteamItemDef_t_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCAD8, Array_InternalEnumerator_1_Steamworks_SteamItemDef_t__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Steamworks_SteamItemDetails_t___ctor, (Array_InternalEnumerator_1_Steamworks_SteamItemDetails_t_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Steamworks_SteamItemDetails_t__Dispose, (Array_InternalEnumerator_1_Steamworks_SteamItemDetails_t_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Steamworks_SteamItemDetails_t__MoveNext, (Array_InternalEnumerator_1_Steamworks_SteamItemDetails_t_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Steamworks_SteamItemDetails_t__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Steamworks_SteamItemDetails_t_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C5C80, Object *, Array_InternalEnumerator_1_Steamworks_SteamItemDetails_t__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Steamworks_SteamItemDetails_t_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C5B10, SteamItemDetails_t, Array_InternalEnumerator_1_Steamworks_SteamItemDetails_t__get_Current, (Array_InternalEnumerator_1_Steamworks_SteamItemDetails_t_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCAD0, Array_InternalEnumerator_1_Steamworks_SteamItemDetails_t__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyName___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyName_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyName__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyName_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyName__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyName_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyName__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyName_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C5E80, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyName__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyName_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C5D10, StylePropertyName, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyName__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyName_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCAE8, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyName__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C6080, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C5F10, StylePropertyValue, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCAE0, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSelectorPart___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSelectorPart_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSelectorPart__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSelectorPart_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSelectorPart__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSelectorPart_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSelectorPart__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSelectorPart_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C6290, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSelectorPart__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSelectorPart_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C6110, StyleSelectorPart, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSelectorPart__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSelectorPart_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCA38, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSelectorPart__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C64B0, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C6330, StyleSyntaxToken, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCA30, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValue___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValue__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValue__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValue__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C66D0, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValue__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C6550, StyleValue, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValue__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCA48, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValue__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleValueHandle___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleValueHandle_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleValueHandle__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleValueHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleValueHandle__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleValueHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleValueHandle__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleValueHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C68E0, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleValueHandle__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleValueHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C6770, StyleValueHandle, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleValueHandle__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleValueHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCA40, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleValueHandle__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C6AE0, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C6970, StyleValueManaged, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCA18, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleVariable___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleVariable_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleVariable__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleVariable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleVariable__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleVariable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleVariable__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleVariable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C6CF0, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleVariable__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleVariable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C6B70, StyleVariable, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleVariable__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleVariable_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCA10, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleVariable__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_SubMeshDescriptor___ctor, (Array_InternalEnumerator_1_UnityEngine_Rendering_SubMeshDescriptor_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Rendering_SubMeshDescriptor__Dispose, (Array_InternalEnumerator_1_UnityEngine_Rendering_SubMeshDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Rendering_SubMeshDescriptor__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Rendering_SubMeshDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_SubMeshDescriptor__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Rendering_SubMeshDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C6F20, Object *, Array_InternalEnumerator_1_UnityEngine_Rendering_SubMeshDescriptor__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_SubMeshDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C6D90, SubMeshDescriptor, Array_InternalEnumerator_1_UnityEngine_Rendering_SubMeshDescriptor__get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_SubMeshDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCA28, Array_InternalEnumerator_1_UnityEngine_Rendering_SubMeshDescriptor__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_Substring___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_Substring_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_Substring__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_Substring_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_Substring__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_Substring_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_Substring__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_Substring_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C7140, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_Substring__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_Substring_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C6FD0, Substring, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_Substring__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_Substring_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCA20, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_Substring__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_TMPro_TMP_CharacterInfo___ctor, (Array_InternalEnumerator_1_TMPro_TMP_CharacterInfo_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_TMPro_TMP_CharacterInfo__Dispose, (Array_InternalEnumerator_1_TMPro_TMP_CharacterInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_TMPro_TMP_CharacterInfo__MoveNext, (Array_InternalEnumerator_1_TMPro_TMP_CharacterInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_TMPro_TMP_CharacterInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_TMPro_TMP_CharacterInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C73E0, Object *, Array_InternalEnumerator_1_TMPro_TMP_CharacterInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_TMPro_TMP_CharacterInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C71D0, TMP_CharacterInfo, Array_InternalEnumerator_1_TMPro_TMP_CharacterInfo__get_Current, (Array_InternalEnumerator_1_TMPro_TMP_CharacterInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCA78, Array_InternalEnumerator_1_TMPro_TMP_CharacterInfo__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_TMPro_TMP_FontWeightPair___ctor, (Array_InternalEnumerator_1_TMPro_TMP_FontWeightPair_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_TMPro_TMP_FontWeightPair__Dispose, (Array_InternalEnumerator_1_TMPro_TMP_FontWeightPair_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_TMPro_TMP_FontWeightPair__MoveNext, (Array_InternalEnumerator_1_TMPro_TMP_FontWeightPair_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_TMPro_TMP_FontWeightPair__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_TMPro_TMP_FontWeightPair_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C7680, Object *, Array_InternalEnumerator_1_TMPro_TMP_FontWeightPair__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_TMPro_TMP_FontWeightPair_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C7510, TMP_FontWeightPair, Array_InternalEnumerator_1_TMPro_TMP_FontWeightPair__get_Current, (Array_InternalEnumerator_1_TMPro_TMP_FontWeightPair_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCA70, Array_InternalEnumerator_1_TMPro_TMP_FontWeightPair__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_TMPro_TMP_LineInfo___ctor, (Array_InternalEnumerator_1_TMPro_TMP_LineInfo_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_TMPro_TMP_LineInfo__Dispose, (Array_InternalEnumerator_1_TMPro_TMP_LineInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_TMPro_TMP_LineInfo__MoveNext, (Array_InternalEnumerator_1_TMPro_TMP_LineInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_TMPro_TMP_LineInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_TMPro_TMP_LineInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C78C0, Object *, Array_InternalEnumerator_1_TMPro_TMP_LineInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_TMPro_TMP_LineInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C7710, TMP_LineInfo, Array_InternalEnumerator_1_TMPro_TMP_LineInfo__get_Current, (Array_InternalEnumerator_1_TMPro_TMP_LineInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCA88, Array_InternalEnumerator_1_TMPro_TMP_LineInfo__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_TMPro_TMP_LinkInfo___ctor, (Array_InternalEnumerator_1_TMPro_TMP_LinkInfo_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_TMPro_TMP_LinkInfo__Dispose, (Array_InternalEnumerator_1_TMPro_TMP_LinkInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_TMPro_TMP_LinkInfo__MoveNext, (Array_InternalEnumerator_1_TMPro_TMP_LinkInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_TMPro_TMP_LinkInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_TMPro_TMP_LinkInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C7B20, Object *, Array_InternalEnumerator_1_TMPro_TMP_LinkInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_TMPro_TMP_LinkInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C7990, TMP_LinkInfo, Array_InternalEnumerator_1_TMPro_TMP_LinkInfo__get_Current, (Array_InternalEnumerator_1_TMPro_TMP_LinkInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCA80, Array_InternalEnumerator_1_TMPro_TMP_LinkInfo__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_TMPro_TMP_MeshInfo___ctor, (Array_InternalEnumerator_1_TMPro_TMP_MeshInfo_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_TMPro_TMP_MeshInfo__Dispose, (Array_InternalEnumerator_1_TMPro_TMP_MeshInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_TMPro_TMP_MeshInfo__MoveNext, (Array_InternalEnumerator_1_TMPro_TMP_MeshInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_TMPro_TMP_MeshInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_TMPro_TMP_MeshInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C7D70, Object *, Array_InternalEnumerator_1_TMPro_TMP_MeshInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_TMPro_TMP_MeshInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C7BD0, TMP_MeshInfo, Array_InternalEnumerator_1_TMPro_TMP_MeshInfo__get_Current, (Array_InternalEnumerator_1_TMPro_TMP_MeshInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCA58, Array_InternalEnumerator_1_TMPro_TMP_MeshInfo__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_TMPro_TMP_PageInfo___ctor, (Array_InternalEnumerator_1_TMPro_TMP_PageInfo_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_TMPro_TMP_PageInfo__Dispose, (Array_InternalEnumerator_1_TMPro_TMP_PageInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_TMPro_TMP_PageInfo__MoveNext, (Array_InternalEnumerator_1_TMPro_TMP_PageInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_TMPro_TMP_PageInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_TMPro_TMP_PageInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C7FB0, Object *, Array_InternalEnumerator_1_TMPro_TMP_PageInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_TMPro_TMP_PageInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C7E30, TMP_PageInfo, Array_InternalEnumerator_1_TMPro_TMP_PageInfo__get_Current, (Array_InternalEnumerator_1_TMPro_TMP_PageInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCA50, Array_InternalEnumerator_1_TMPro_TMP_PageInfo__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_TMPro_TMP_WordInfo___ctor, (Array_InternalEnumerator_1_TMPro_TMP_WordInfo_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_TMPro_TMP_WordInfo__Dispose, (Array_InternalEnumerator_1_TMPro_TMP_WordInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_TMPro_TMP_WordInfo__MoveNext, (Array_InternalEnumerator_1_TMPro_TMP_WordInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_TMPro_TMP_WordInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_TMPro_TMP_WordInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C81D0, Object *, Array_InternalEnumerator_1_TMPro_TMP_WordInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_TMPro_TMP_WordInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C8050, TMP_WordInfo, Array_InternalEnumerator_1_TMPro_TMP_WordInfo__get_Current, (Array_InternalEnumerator_1_TMPro_TMP_WordInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCA68, Array_InternalEnumerator_1_TMPro_TMP_WordInfo__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_TerrainUtils_TerrainTileCoord___ctor, (Array_InternalEnumerator_1_UnityEngine_TerrainUtils_TerrainTileCoord_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_TerrainUtils_TerrainTileCoord__Dispose, (Array_InternalEnumerator_1_UnityEngine_TerrainUtils_TerrainTileCoord_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_TerrainUtils_TerrainTileCoord__MoveNext, (Array_InternalEnumerator_1_UnityEngine_TerrainUtils_TerrainTileCoord_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_TerrainUtils_TerrainTileCoord__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_TerrainUtils_TerrainTileCoord_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C83E0, Object *, Array_InternalEnumerator_1_UnityEngine_TerrainUtils_TerrainTileCoord__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_TerrainUtils_TerrainTileCoord_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C8270, TerrainTileCoord, Array_InternalEnumerator_1_UnityEngine_TerrainUtils_TerrainTileCoord__get_Current, (Array_InternalEnumerator_1_UnityEngine_TerrainUtils_TerrainTileCoord_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCA60, Array_InternalEnumerator_1_UnityEngine_TerrainUtils_TerrainTileCoord__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextElementInfo___ctor, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextElementInfo_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextElementInfo__Dispose, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextElementInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextElementInfo__MoveNext, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextElementInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextElementInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextElementInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C8670, Object *, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextElementInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextElementInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C8470, TextElementInfo, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextElementInfo__get_Current, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextElementInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC9B8, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextElementInfo__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TextShadow___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_TextShadow_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TextShadow__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_TextShadow_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_TextShadow__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_TextShadow_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TextShadow__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_TextShadow_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C8910, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_TextShadow__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_TextShadow_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C8790, TextShadow, Array_InternalEnumerator_1_UnityEngine_UIElements_TextShadow__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_TextShadow_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC9B0, Array_InternalEnumerator_1_UnityEngine_UIElements_TextShadow__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TextVertex___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_TextVertex_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TextVertex__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_TextVertex_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_TextVertex__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_TextVertex_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TextVertex__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_TextVertex_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C8B30, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_TextVertex__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_TextVertex_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C89B0, TextVertex_1, Array_InternalEnumerator_1_UnityEngine_UIElements_TextVertex__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_TextVertex_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC9C8, Array_InternalEnumerator_1_UnityEngine_UIElements_TextVertex__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_TextureHandle___ctor, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_TextureHandle_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_TextureHandle__Dispose, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_TextureHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_TextureHandle__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_TextureHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_TextureHandle__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_TextureHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C8D40, Object *, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_TextureHandle__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_TextureHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C8BD0, TextureHandle, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_TextureHandle__get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_TextureHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC9C0, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_TextureHandle__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TextureId___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_TextureId_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TextureId__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_TextureId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_TextureId__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_TextureId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TextureId__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_TextureId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C8F40, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_TextureId__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_TextureId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C8DD0, TextureId, Array_InternalEnumerator_1_UnityEngine_UIElements_TextureId__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_TextureId_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC998, Array_InternalEnumerator_1_UnityEngine_UIElements_TextureId__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Tilemaps_TileData___ctor, (Array_InternalEnumerator_1_UnityEngine_Tilemaps_TileData_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Tilemaps_TileData__Dispose, (Array_InternalEnumerator_1_UnityEngine_Tilemaps_TileData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Tilemaps_TileData__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Tilemaps_TileData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Tilemaps_TileData__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Tilemaps_TileData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C9180, Object *, Array_InternalEnumerator_1_UnityEngine_Tilemaps_TileData__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Tilemaps_TileData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C8FD0, TileData, Array_InternalEnumerator_1_UnityEngine_Tilemaps_TileData__get_Current, (Array_InternalEnumerator_1_UnityEngine_Tilemaps_TileData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC990, Array_InternalEnumerator_1_UnityEngine_Tilemaps_TileData__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_TimeSpan___ctor, (Array_InternalEnumerator_1_TimeSpan_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_TimeSpan__Dispose, (Array_InternalEnumerator_1_TimeSpan_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_TimeSpan__MoveNext, (Array_InternalEnumerator_1_TimeSpan_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_TimeSpan__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_TimeSpan_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C93C0, Object *, Array_InternalEnumerator_1_TimeSpan__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_TimeSpan_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C9250, TimeSpan, Array_InternalEnumerator_1_TimeSpan__get_Current, (Array_InternalEnumerator_1_TimeSpan_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC9A8, Array_InternalEnumerator_1_TimeSpan__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TimeValue___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_TimeValue_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TimeValue__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_TimeValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_TimeValue__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_TimeValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TimeValue__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_TimeValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C95C0, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_TimeValue__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_TimeValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C9450, TimeValue, Array_InternalEnumerator_1_UnityEngine_UIElements_TimeValue__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_TimeValue_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC9A0, Array_InternalEnumerator_1_UnityEngine_UIElements_TimeValue__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Touch___ctor, (Array_InternalEnumerator_1_UnityEngine_Touch_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Touch__Dispose, (Array_InternalEnumerator_1_UnityEngine_Touch_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Touch__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Touch_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Touch__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Touch_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C97F0, Object *, Array_InternalEnumerator_1_UnityEngine_Touch__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Touch_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C9650, Touch, Array_InternalEnumerator_1_UnityEngine_Touch__get_Current, (Array_InternalEnumerator_1_UnityEngine_Touch_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC9F8, Array_InternalEnumerator_1_UnityEngine_Touch__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_EnhancedTouch_Touch___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_EnhancedTouch_Touch_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_EnhancedTouch_Touch__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_EnhancedTouch_Touch_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_EnhancedTouch_Touch__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_EnhancedTouch_Touch_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_EnhancedTouch_Touch__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_EnhancedTouch_Touch_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C9A30, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_EnhancedTouch_Touch__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_EnhancedTouch_Touch_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C98B0, Touch_1, Array_InternalEnumerator_1_UnityEngine_InputSystem_EnhancedTouch_Touch__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_EnhancedTouch_Touch_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC9F0, Array_InternalEnumerator_1_UnityEngine_InputSystem_EnhancedTouch_Touch__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_TrackableId___ctor, (Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_TrackableId_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_TrackableId__Dispose, (Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_TrackableId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_TrackableId__MoveNext, (Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_TrackableId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_TrackableId__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_TrackableId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C9C40, Object *, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_TrackableId__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_TrackableId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C9AD0, TrackableId, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_TrackableId__get_Current, (Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_TrackableId_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCA08, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_TrackableId__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_Transform3x4___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_Transform3x4_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_Transform3x4__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_Transform3x4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_Transform3x4__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_Transform3x4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_Transform3x4__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_Transform3x4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C9E60, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_Transform3x4__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_Transform3x4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C9CD0, Transform3x4, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_Transform3x4__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_Transform3x4_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCA00, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_Transform3x4__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TransformOrigin___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_TransformOrigin_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TransformOrigin__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_TransformOrigin_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_TransformOrigin__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_TransformOrigin_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TransformOrigin__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_TransformOrigin_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CA090, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_TransformOrigin__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_TransformOrigin_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016C9F10, TransformOrigin, Array_InternalEnumerator_1_UnityEngine_UIElements_TransformOrigin__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_TransformOrigin_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC9D8, Array_InternalEnumerator_1_UnityEngine_UIElements_TransformOrigin__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_Translate___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_Translate_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_Translate__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_Translate_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_Translate__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_Translate_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_Translate__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_Translate_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CA2B0, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_Translate__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_Translate_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CA130, Translate_1, Array_InternalEnumerator_1_UnityEngine_UIElements_Translate__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_Translate_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC9D0, Array_InternalEnumerator_1_UnityEngine_UIElements_Translate__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_TreeInstance___ctor, (Array_InternalEnumerator_1_UnityEngine_TreeInstance_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_TreeInstance__Dispose, (Array_InternalEnumerator_1_UnityEngine_TreeInstance_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_TreeInstance__MoveNext, (Array_InternalEnumerator_1_UnityEngine_TreeInstance_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_TreeInstance__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_TreeInstance_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CA4E0, Object *, Array_InternalEnumerator_1_UnityEngine_TreeInstance__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_TreeInstance_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CA350, TreeInstance, Array_InternalEnumerator_1_UnityEngine_TreeInstance__get_Current, (Array_InternalEnumerator_1_UnityEngine_TreeInstance_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC9E8, Array_InternalEnumerator_1_UnityEngine_TreeInstance__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TreeItem___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_TreeItem_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TreeItem__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_TreeItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_TreeItem__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_TreeItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TreeItem__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_TreeItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CA700, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_TreeItem__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_TreeItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CA590, TreeItem, Array_InternalEnumerator_1_UnityEngine_UIElements_TreeItem__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_TreeItem_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC9E0, Array_InternalEnumerator_1_UnityEngine_UIElements_TreeItem__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TreeViewItemWrapper___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_TreeViewItemWrapper_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TreeViewItemWrapper__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_TreeViewItemWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_TreeViewItemWrapper__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_TreeViewItemWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TreeViewItemWrapper__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_TreeViewItemWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CA910, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_TreeViewItemWrapper__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_TreeViewItemWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CA790, TreeViewItemWrapper, Array_InternalEnumerator_1_UnityEngine_UIElements_TreeViewItemWrapper__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_TreeViewItemWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC938, Array_InternalEnumerator_1_UnityEngine_UIElements_TreeViewItemWrapper__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Photon_Bolt_TypeId___ctor, (Array_InternalEnumerator_1_Photon_Bolt_TypeId_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Photon_Bolt_TypeId__Dispose, (Array_InternalEnumerator_1_Photon_Bolt_TypeId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Photon_Bolt_TypeId__MoveNext, (Array_InternalEnumerator_1_Photon_Bolt_TypeId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Photon_Bolt_TypeId__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Photon_Bolt_TypeId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CAB20, Object *, Array_InternalEnumerator_1_Photon_Bolt_TypeId__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Photon_Bolt_TypeId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CA9B0, TypeId, Array_InternalEnumerator_1_Photon_Bolt_TypeId__get_Current, (Array_InternalEnumerator_1_Photon_Bolt_TypeId_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC930, Array_InternalEnumerator_1_Photon_Bolt_TypeId__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_TypeWrapper___ctor, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_TypeWrapper_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_TypeWrapper__Dispose, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_TypeWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_TypeWrapper__MoveNext, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_TypeWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_TypeWrapper__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_TypeWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CAD30, Object *, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_TypeWrapper__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_TypeWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CABB0, TypeWrapper, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_TypeWrapper__get_Current, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_TypeWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC948, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_TypeWrapper__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UICharInfo___ctor, (Array_InternalEnumerator_1_UnityEngine_UICharInfo_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UICharInfo__Dispose, (Array_InternalEnumerator_1_UnityEngine_UICharInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UICharInfo__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UICharInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UICharInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UICharInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CAF50, Object *, Array_InternalEnumerator_1_UnityEngine_UICharInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UICharInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CADD0, UICharInfo, Array_InternalEnumerator_1_UnityEngine_UICharInfo__get_Current, (Array_InternalEnumerator_1_UnityEngine_UICharInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC940, Array_InternalEnumerator_1_UnityEngine_UICharInfo__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UILineInfo___ctor, (Array_InternalEnumerator_1_UnityEngine_UILineInfo_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UILineInfo__Dispose, (Array_InternalEnumerator_1_UnityEngine_UILineInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UILineInfo__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UILineInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UILineInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UILineInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CB160, Object *, Array_InternalEnumerator_1_UnityEngine_UILineInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UILineInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CAFF0, UILineInfo, Array_InternalEnumerator_1_UnityEngine_UILineInfo__get_Current, (Array_InternalEnumerator_1_UnityEngine_UILineInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC918, Array_InternalEnumerator_1_UnityEngine_UILineInfo__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIVertex___ctor, (Array_InternalEnumerator_1_UnityEngine_UIVertex_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIVertex__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIVertex_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIVertex__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIVertex_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIVertex__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIVertex_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CB3B0, Object *, Array_InternalEnumerator_1_UnityEngine_UIVertex__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIVertex_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CB1F0, UIVertex, Array_InternalEnumerator_1_UnityEngine_UIVertex__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIVertex_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC910, Array_InternalEnumerator_1_UnityEngine_UIVertex__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UInt16___ctor, (Array_InternalEnumerator_1_UInt16_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UInt16__Dispose, (Array_InternalEnumerator_1_UInt16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UInt16__MoveNext, (Array_InternalEnumerator_1_UInt16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UInt16__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UInt16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CB600, Object *, Array_InternalEnumerator_1_UInt16__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UInt16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CB490, uint16_t, Array_InternalEnumerator_1_UInt16__get_Current, (Array_InternalEnumerator_1_UInt16_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC928, Array_InternalEnumerator_1_UInt16__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UInt16Enum___ctor, (Array_InternalEnumerator_1_UInt16Enum_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UInt16Enum__Dispose, (Array_InternalEnumerator_1_UInt16Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UInt16Enum__MoveNext, (Array_InternalEnumerator_1_UInt16Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UInt16Enum__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UInt16Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CB800, Object *, Array_InternalEnumerator_1_UInt16Enum__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UInt16Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CB690, UInt16Enum__Enum, Array_InternalEnumerator_1_UInt16Enum__get_Current, (Array_InternalEnumerator_1_UInt16Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC920, Array_InternalEnumerator_1_UInt16Enum__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UInt32___ctor, (Array_InternalEnumerator_1_UInt32_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UInt32__Dispose, (Array_InternalEnumerator_1_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UInt32__MoveNext, (Array_InternalEnumerator_1_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UInt32__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CBA00, Object *, Array_InternalEnumerator_1_UInt32__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CB890, uint32_t, Array_InternalEnumerator_1_UInt32__get_Current, (Array_InternalEnumerator_1_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC978, Array_InternalEnumerator_1_UInt32__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UInt32Enum___ctor, (Array_InternalEnumerator_1_UInt32Enum_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UInt32Enum__Dispose, (Array_InternalEnumerator_1_UInt32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UInt32Enum__MoveNext, (Array_InternalEnumerator_1_UInt32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UInt32Enum__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UInt32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CBC00, Object *, Array_InternalEnumerator_1_UInt32Enum__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UInt32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CBA90, UInt32Enum__Enum, Array_InternalEnumerator_1_UInt32Enum__get_Current, (Array_InternalEnumerator_1_UInt32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC970, Array_InternalEnumerator_1_UInt32Enum__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UInt64___ctor, (Array_InternalEnumerator_1_UInt64_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UInt64__Dispose, (Array_InternalEnumerator_1_UInt64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UInt64__MoveNext, (Array_InternalEnumerator_1_UInt64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UInt64__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UInt64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CBE00, Object *, Array_InternalEnumerator_1_UInt64__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UInt64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CBC90, uint64_t, Array_InternalEnumerator_1_UInt64__get_Current, (Array_InternalEnumerator_1_UInt64_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC988, Array_InternalEnumerator_1_UInt64__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture___ctor, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__Dispose, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__MoveNext, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CC010, Object *, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CBE90, UVTexture, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__get_Current, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC980, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UdpKit_UdpChannelName___ctor, (Array_InternalEnumerator_1_UdpKit_UdpChannelName_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UdpKit_UdpChannelName__Dispose, (Array_InternalEnumerator_1_UdpKit_UdpChannelName_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UdpKit_UdpChannelName__MoveNext, (Array_InternalEnumerator_1_UdpKit_UdpChannelName_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UdpKit_UdpChannelName__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UdpKit_UdpChannelName_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CC220, Object *, Array_InternalEnumerator_1_UdpKit_UdpChannelName__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UdpKit_UdpChannelName_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CC0B0, UdpChannelName, Array_InternalEnumerator_1_UdpKit_UdpChannelName__get_Current, (Array_InternalEnumerator_1_UdpKit_UdpChannelName_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC958, Array_InternalEnumerator_1_UdpKit_UdpChannelName__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UdpKit_UdpEndPoint___ctor, (Array_InternalEnumerator_1_UdpKit_UdpEndPoint_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UdpKit_UdpEndPoint__Dispose, (Array_InternalEnumerator_1_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UdpKit_UdpEndPoint__MoveNext, (Array_InternalEnumerator_1_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UdpKit_UdpEndPoint__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CC430, Object *, Array_InternalEnumerator_1_UdpKit_UdpEndPoint__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CC2B0, UdpEndPoint, Array_InternalEnumerator_1_UdpKit_UdpEndPoint__get_Current, (Array_InternalEnumerator_1_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC950, Array_InternalEnumerator_1_UdpKit_UdpEndPoint__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UdpKit_UdpEvent___ctor, (Array_InternalEnumerator_1_UdpKit_UdpEvent_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UdpKit_UdpEvent__Dispose, (Array_InternalEnumerator_1_UdpKit_UdpEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UdpKit_UdpEvent__MoveNext, (Array_InternalEnumerator_1_UdpKit_UdpEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UdpKit_UdpEvent__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UdpKit_UdpEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CC650, Object *, Array_InternalEnumerator_1_UdpKit_UdpEvent__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UdpKit_UdpEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CC4D0, UdpEvent, Array_InternalEnumerator_1_UdpKit_UdpEvent__get_Current, (Array_InternalEnumerator_1_UdpKit_UdpEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC968, Array_InternalEnumerator_1_UdpKit_UdpEvent__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UdpKit_UdpIPv4Address___ctor, (Array_InternalEnumerator_1_UdpKit_UdpIPv4Address_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UdpKit_UdpIPv4Address__Dispose, (Array_InternalEnumerator_1_UdpKit_UdpIPv4Address_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UdpKit_UdpIPv4Address__MoveNext, (Array_InternalEnumerator_1_UdpKit_UdpIPv4Address_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UdpKit_UdpIPv4Address__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UdpKit_UdpIPv4Address_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CC860, Object *, Array_InternalEnumerator_1_UdpKit_UdpIPv4Address__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UdpKit_UdpIPv4Address_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CC6F0, UdpIPv4Address, Array_InternalEnumerator_1_UdpKit_UdpIPv4Address__get_Current, (Array_InternalEnumerator_1_UdpKit_UdpIPv4Address_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC960, Array_InternalEnumerator_1_UdpKit_UdpIPv4Address__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UdpKit_UdpPipeHandle___ctor, (Array_InternalEnumerator_1_UdpKit_UdpPipeHandle_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UdpKit_UdpPipeHandle__Dispose, (Array_InternalEnumerator_1_UdpKit_UdpPipeHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UdpKit_UdpPipeHandle__MoveNext, (Array_InternalEnumerator_1_UdpKit_UdpPipeHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UdpKit_UdpPipeHandle__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UdpKit_UdpPipeHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CCA60, Object *, Array_InternalEnumerator_1_UdpKit_UdpPipeHandle__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UdpKit_UdpPipeHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CC8F0, UdpPipeHandle, Array_InternalEnumerator_1_UdpKit_UdpPipeHandle__get_Current, (Array_InternalEnumerator_1_UdpKit_UdpPipeHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC8B8, Array_InternalEnumerator_1_UdpKit_UdpPipeHandle__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Photon_Bolt_UniqueId___ctor, (Array_InternalEnumerator_1_Photon_Bolt_UniqueId_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Photon_Bolt_UniqueId__Dispose, (Array_InternalEnumerator_1_Photon_Bolt_UniqueId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Photon_Bolt_UniqueId__MoveNext, (Array_InternalEnumerator_1_Photon_Bolt_UniqueId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Photon_Bolt_UniqueId__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Photon_Bolt_UniqueId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CCC60, Object *, Array_InternalEnumerator_1_Photon_Bolt_UniqueId__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Photon_Bolt_UniqueId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CCAF0, UniqueId, Array_InternalEnumerator_1_Photon_Bolt_UniqueId__get_Current, (Array_InternalEnumerator_1_Photon_Bolt_UniqueId_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC8B0, Array_InternalEnumerator_1_Photon_Bolt_UniqueId__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_XR_UsageHint___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_XR_UsageHint_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_XR_UsageHint__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_XR_UsageHint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_XR_UsageHint__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_XR_UsageHint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_XR_UsageHint__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_XR_UsageHint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CCE60, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_XR_UsageHint__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_XR_UsageHint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CCCF0, UsageHint, Array_InternalEnumerator_1_UnityEngine_InputSystem_XR_UsageHint__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_XR_UsageHint_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC8C8, Array_InternalEnumerator_1_UnityEngine_InputSystem_XR_UsageHint__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Discord_User___ctor, (Array_InternalEnumerator_1_Discord_User_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Discord_User__Dispose, (Array_InternalEnumerator_1_Discord_User_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Discord_User__MoveNext, (Array_InternalEnumerator_1_Discord_User_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Discord_User__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Discord_User_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CD080, Object *, Array_InternalEnumerator_1_Discord_User__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Discord_User_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CCEF0, User, Array_InternalEnumerator_1_Discord_User__get_Current, (Array_InternalEnumerator_1_Discord_User_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC8C0, Array_InternalEnumerator_1_Discord_User__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Net_WebSockets_ValueWebSocketReceiveResult___ctor, (Array_InternalEnumerator_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Net_WebSockets_ValueWebSocketReceiveResult__Dispose, (Array_InternalEnumerator_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Net_WebSockets_ValueWebSocketReceiveResult__MoveNext, (Array_InternalEnumerator_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Net_WebSockets_ValueWebSocketReceiveResult__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CD2A0, Object *, Array_InternalEnumerator_1_System_Net_WebSockets_ValueWebSocketReceiveResult__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CD130, ValueWebSocketReceiveResult, Array_InternalEnumerator_1_System_Net_WebSockets_ValueWebSocketReceiveResult__get_Current, (Array_InternalEnumerator_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC898, Array_InternalEnumerator_1_System_Net_WebSockets_ValueWebSocketReceiveResult__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Vector2___ctor, (Array_InternalEnumerator_1_UnityEngine_Vector2_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Vector2__Dispose, (Array_InternalEnumerator_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Vector2__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Vector2__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CD4A0, Object *, Array_InternalEnumerator_1_UnityEngine_Vector2__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CD330, Vector2, Array_InternalEnumerator_1_UnityEngine_Vector2__get_Current, (Array_InternalEnumerator_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC890, Array_InternalEnumerator_1_UnityEngine_Vector2__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Vector2Int___ctor, (Array_InternalEnumerator_1_UnityEngine_Vector2Int_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Vector2Int__Dispose, (Array_InternalEnumerator_1_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Vector2Int__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Vector2Int__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CD6A0, Object *, Array_InternalEnumerator_1_UnityEngine_Vector2Int__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CD530, Vector2Int, Array_InternalEnumerator_1_UnityEngine_Vector2Int__get_Current, (Array_InternalEnumerator_1_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC8A8, Array_InternalEnumerator_1_UnityEngine_Vector2Int__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Vector3___ctor, (Array_InternalEnumerator_1_UnityEngine_Vector3_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Vector3__Dispose, (Array_InternalEnumerator_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Vector3__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Vector3__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CD8B0, Object *, Array_InternalEnumerator_1_UnityEngine_Vector3__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CD730, Vector3, Array_InternalEnumerator_1_UnityEngine_Vector3__get_Current, (Array_InternalEnumerator_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC8A0, Array_InternalEnumerator_1_UnityEngine_Vector3__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Vector3Int___ctor, (Array_InternalEnumerator_1_UnityEngine_Vector3Int_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Vector3Int__Dispose, (Array_InternalEnumerator_1_UnityEngine_Vector3Int_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Vector3Int__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Vector3Int_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Vector3Int__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Vector3Int_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CDAD0, Object *, Array_InternalEnumerator_1_UnityEngine_Vector3Int__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Vector3Int_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CD950, Vector3Int, Array_InternalEnumerator_1_UnityEngine_Vector3Int__get_Current, (Array_InternalEnumerator_1_UnityEngine_Vector3Int_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC8F8, Array_InternalEnumerator_1_UnityEngine_Vector3Int__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UI_Extensions_Vector3_Array2D___ctor, (Array_InternalEnumerator_1_UnityEngine_UI_Extensions_Vector3_Array2D_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UI_Extensions_Vector3_Array2D__Dispose, (Array_InternalEnumerator_1_UnityEngine_UI_Extensions_Vector3_Array2D_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UI_Extensions_Vector3_Array2D__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UI_Extensions_Vector3_Array2D_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UI_Extensions_Vector3_Array2D__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UI_Extensions_Vector3_Array2D_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CDCE0, Object *, Array_InternalEnumerator_1_UnityEngine_UI_Extensions_Vector3_Array2D__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UI_Extensions_Vector3_Array2D_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CDB70, Vector3_Array2D, Array_InternalEnumerator_1_UnityEngine_UI_Extensions_Vector3_Array2D__get_Current, (Array_InternalEnumerator_1_UnityEngine_UI_Extensions_Vector3_Array2D_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC8F0, Array_InternalEnumerator_1_UnityEngine_UI_Extensions_Vector3_Array2D__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Vector4___ctor, (Array_InternalEnumerator_1_UnityEngine_Vector4_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Vector4__Dispose, (Array_InternalEnumerator_1_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Vector4__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Vector4__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CDEE0, Object *, Array_InternalEnumerator_1_UnityEngine_Vector4__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CDD70, Vector4, Array_InternalEnumerator_1_UnityEngine_Vector4__get_Current, (Array_InternalEnumerator_1_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC908, Array_InternalEnumerator_1_UnityEngine_Vector4__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_VectorImageVertex___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_VectorImageVertex_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_VectorImageVertex__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_VectorImageVertex_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_VectorImageVertex__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_VectorImageVertex_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_VectorImageVertex__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_VectorImageVertex_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CE0F0, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_VectorImageVertex__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_VectorImageVertex_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CDF70, VectorImageVertex, Array_InternalEnumerator_1_UnityEngine_UIElements_VectorImageVertex__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_VectorImageVertex_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC900, Array_InternalEnumerator_1_UnityEngine_UIElements_VectorImageVertex__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_Vertex___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_Vertex_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_Vertex__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_Vertex_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_Vertex__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_Vertex_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_Vertex__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_Vertex_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CE330, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_Vertex__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_Vertex_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CE190, Vertex, Array_InternalEnumerator_1_UnityEngine_UIElements_Vertex__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_Vertex_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC8D8, Array_InternalEnumerator_1_UnityEngine_UIElements_Vertex__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_VertexAttributeDescriptor___ctor, (Array_InternalEnumerator_1_UnityEngine_Rendering_VertexAttributeDescriptor_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Rendering_VertexAttributeDescriptor__Dispose, (Array_InternalEnumerator_1_UnityEngine_Rendering_VertexAttributeDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Rendering_VertexAttributeDescriptor__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Rendering_VertexAttributeDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_VertexAttributeDescriptor__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Rendering_VertexAttributeDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CE560, Object *, Array_InternalEnumerator_1_UnityEngine_Rendering_VertexAttributeDescriptor__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_VertexAttributeDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CE3F0, VertexAttributeDescriptor, Array_InternalEnumerator_1_UnityEngine_Rendering_VertexAttributeDescriptor__get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_VertexAttributeDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC8D0, Array_InternalEnumerator_1_UnityEngine_Rendering_VertexAttributeDescriptor__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_ViewConfiguration___ctor, (Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_ViewConfiguration_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_ViewConfiguration__Dispose, (Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_ViewConfiguration_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_ViewConfiguration__MoveNext, (Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_ViewConfiguration_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_ViewConfiguration__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_ViewConfiguration_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CE770, Object *, Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_ViewConfiguration__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_ViewConfiguration_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CE5F0, ViewConfiguration, Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_ViewConfiguration__get_Current, (Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_ViewConfiguration_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC8E8, Array_InternalEnumerator_1_Microsoft_MixedReality_OpenXR_ViewConfiguration__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Dissonance_Networking_VoicePacket___ctor, (Array_InternalEnumerator_1_Dissonance_Networking_VoicePacket_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Dissonance_Networking_VoicePacket__Dispose, (Array_InternalEnumerator_1_Dissonance_Networking_VoicePacket_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Dissonance_Networking_VoicePacket__MoveNext, (Array_InternalEnumerator_1_Dissonance_Networking_VoicePacket_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Dissonance_Networking_VoicePacket__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Dissonance_Networking_VoicePacket_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CE9A0, Object *, Array_InternalEnumerator_1_Dissonance_Networking_VoicePacket__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Dissonance_Networking_VoicePacket_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CE810, VoicePacket, Array_InternalEnumerator_1_Dissonance_Networking_VoicePacket__get_Current, (Array_InternalEnumerator_1_Dissonance_Networking_VoicePacket_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC8E0, Array_InternalEnumerator_1_Dissonance_Networking_VoicePacket__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Pathfinding_Voxels_VoxelCell___ctor, (Array_InternalEnumerator_1_Pathfinding_Voxels_VoxelCell_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Pathfinding_Voxels_VoxelCell__Dispose, (Array_InternalEnumerator_1_Pathfinding_Voxels_VoxelCell_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Pathfinding_Voxels_VoxelCell__MoveNext, (Array_InternalEnumerator_1_Pathfinding_Voxels_VoxelCell_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Pathfinding_Voxels_VoxelCell__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Pathfinding_Voxels_VoxelCell_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CEBD0, Object *, Array_InternalEnumerator_1_Pathfinding_Voxels_VoxelCell__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Pathfinding_Voxels_VoxelCell_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CEA60, VoxelCell, Array_InternalEnumerator_1_Pathfinding_Voxels_VoxelCell__get_Current, (Array_InternalEnumerator_1_Pathfinding_Voxels_VoxelCell_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC800, Array_InternalEnumerator_1_Pathfinding_Voxels_VoxelCell__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Pathfinding_Voxels_VoxelContour___ctor, (Array_InternalEnumerator_1_Pathfinding_Voxels_VoxelContour_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Pathfinding_Voxels_VoxelContour__Dispose, (Array_InternalEnumerator_1_Pathfinding_Voxels_VoxelContour_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Pathfinding_Voxels_VoxelContour__MoveNext, (Array_InternalEnumerator_1_Pathfinding_Voxels_VoxelContour_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Pathfinding_Voxels_VoxelContour__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Pathfinding_Voxels_VoxelContour_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CEDE0, Object *, Array_InternalEnumerator_1_Pathfinding_Voxels_VoxelContour__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Pathfinding_Voxels_VoxelContour_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CEC60, VoxelContour, Array_InternalEnumerator_1_Pathfinding_Voxels_VoxelContour__get_Current, (Array_InternalEnumerator_1_Pathfinding_Voxels_VoxelContour_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC7F0, Array_InternalEnumerator_1_Pathfinding_Voxels_VoxelContour__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES___ctor, (Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES__Dispose, (Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES__MoveNext, (Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CF060, Object *, Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CEE80, Win32_IP_ADAPTER_ADDRESSES, Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES__get_Current, (Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC818, Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO___ctor, (Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO__Dispose, (Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO__MoveNext, (Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CF340, Object *, Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CF160, Win32_IP_ADAPTER_INFO, Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO__get_Current, (Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC810, Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADDR_STRING___ctor, (Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADDR_STRING_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADDR_STRING__Dispose, (Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADDR_STRING_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADDR_STRING__MoveNext, (Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADDR_STRING_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADDR_STRING__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADDR_STRING_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CF5C0, Object *, Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADDR_STRING__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADDR_STRING_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CF440, Win32_IP_ADDR_STRING, Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADDR_STRING__get_Current, (Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADDR_STRING_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC7C8, Array_InternalEnumerator_1_System_Net_NetworkInformation_Win32_IP_ADDR_STRING__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_WordInfo___ctor, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_WordInfo_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_WordInfo__Dispose, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_WordInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_WordInfo__MoveNext, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_WordInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_WordInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_WordInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CF7E0, Object *, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_WordInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_WordInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CF660, WordInfo, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_WordInfo__get_Current, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_WordInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC7B8, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_WordInfo__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_TMPro_WordWrapState___ctor, (Array_InternalEnumerator_1_TMPro_WordWrapState_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_TMPro_WordWrapState__Dispose, (Array_InternalEnumerator_1_TMPro_WordWrapState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_TMPro_WordWrapState__MoveNext, (Array_InternalEnumerator_1_TMPro_WordWrapState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_TMPro_WordWrapState__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_TMPro_WordWrapState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CFA90, Object *, Array_InternalEnumerator_1_TMPro_WordWrapState__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_TMPro_WordWrapState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CF880, WordWrapState, Array_InternalEnumerator_1_TMPro_WordWrapState__get_Current, (Array_InternalEnumerator_1_TMPro_WordWrapState_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC7E0, Array_InternalEnumerator_1_TMPro_WordWrapState__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Security_Cryptography_X509Certificates_X509ChainStatus___ctor, (Array_InternalEnumerator_1_System_Security_Cryptography_X509Certificates_X509ChainStatus_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Security_Cryptography_X509Certificates_X509ChainStatus__Dispose, (Array_InternalEnumerator_1_System_Security_Cryptography_X509Certificates_X509ChainStatus_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Security_Cryptography_X509Certificates_X509ChainStatus__MoveNext, (Array_InternalEnumerator_1_System_Security_Cryptography_X509Certificates_X509ChainStatus_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Security_Cryptography_X509Certificates_X509ChainStatus__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Security_Cryptography_X509Certificates_X509ChainStatus_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CFD30, Object *, Array_InternalEnumerator_1_System_Security_Cryptography_X509Certificates_X509ChainStatus__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Security_Cryptography_X509Certificates_X509ChainStatus_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CFBC0, X509ChainStatus, Array_InternalEnumerator_1_System_Security_Cryptography_X509Certificates_X509ChainStatus__get_Current, (Array_InternalEnumerator_1_System_Security_Cryptography_X509Certificates_X509ChainStatus_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC7D8, Array_InternalEnumerator_1_System_Security_Cryptography_X509Certificates_X509ChainStatus__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_MS_Internal_Xml_Cache_XPathNode___ctor, (Array_InternalEnumerator_1_MS_Internal_Xml_Cache_XPathNode_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_MS_Internal_Xml_Cache_XPathNode__Dispose, (Array_InternalEnumerator_1_MS_Internal_Xml_Cache_XPathNode_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_MS_Internal_Xml_Cache_XPathNode__MoveNext, (Array_InternalEnumerator_1_MS_Internal_Xml_Cache_XPathNode_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_MS_Internal_Xml_Cache_XPathNode__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_MS_Internal_Xml_Cache_XPathNode_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CFF40, Object *, Array_InternalEnumerator_1_MS_Internal_Xml_Cache_XPathNode__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_MS_Internal_Xml_Cache_XPathNode_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CFDC0, XPathNode, Array_InternalEnumerator_1_MS_Internal_Xml_Cache_XPathNode__get_Current, (Array_InternalEnumerator_1_MS_Internal_Xml_Cache_XPathNode_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC860, Array_InternalEnumerator_1_MS_Internal_Xml_Cache_XPathNode__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_MS_Internal_Xml_Cache_XPathNodeRef___ctor, (Array_InternalEnumerator_1_MS_Internal_Xml_Cache_XPathNodeRef_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_MS_Internal_Xml_Cache_XPathNodeRef__Dispose, (Array_InternalEnumerator_1_MS_Internal_Xml_Cache_XPathNodeRef_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_MS_Internal_Xml_Cache_XPathNodeRef__MoveNext, (Array_InternalEnumerator_1_MS_Internal_Xml_Cache_XPathNodeRef_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_MS_Internal_Xml_Cache_XPathNodeRef__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_MS_Internal_Xml_Cache_XPathNodeRef_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D0150, Object *, Array_InternalEnumerator_1_MS_Internal_Xml_Cache_XPathNodeRef__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_MS_Internal_Xml_Cache_XPathNodeRef_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016CFFE0, XPathNodeRef, Array_InternalEnumerator_1_MS_Internal_Xml_Cache_XPathNodeRef__get_Current, (Array_InternalEnumerator_1_MS_Internal_Xml_Cache_XPathNodeRef_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC850, Array_InternalEnumerator_1_MS_Internal_Xml_Cache_XPathNodeRef__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRAnchor___ctor, (Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRAnchor_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRAnchor__Dispose, (Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRAnchor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRAnchor__MoveNext, (Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRAnchor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRAnchor__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRAnchor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D0380, Object *, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRAnchor__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRAnchor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D01E0, XRAnchor, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRAnchor__get_Current, (Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRAnchor_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC880, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRAnchor__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D05C0, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D0440, XRFeatureDescriptor, Array_InternalEnumerator_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC870, Array_InternalEnumerator_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_XR_XRNodeState___ctor, (Array_InternalEnumerator_1_UnityEngine_XR_XRNodeState_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_XR_XRNodeState__Dispose, (Array_InternalEnumerator_1_UnityEngine_XR_XRNodeState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_XR_XRNodeState__MoveNext, (Array_InternalEnumerator_1_UnityEngine_XR_XRNodeState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_XR_XRNodeState__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_XR_XRNodeState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D0810, Object *, Array_InternalEnumerator_1_UnityEngine_XR_XRNodeState__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_XR_XRNodeState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D0660, XRNodeState, Array_InternalEnumerator_1_UnityEngine_XR_XRNodeState__get_Current, (Array_InternalEnumerator_1_UnityEngine_XR_XRNodeState_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC830, Array_InternalEnumerator_1_UnityEngine_XR_XRNodeState__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRRaycast___ctor, (Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRRaycast_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRRaycast__Dispose, (Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRRaycast_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRRaycast__MoveNext, (Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRRaycast_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRRaycast__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRRaycast_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D0A80, Object *, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRRaycast__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRRaycast_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D08E0, XRRaycast, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRRaycast__get_Current, (Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRRaycast_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC820, Array_InternalEnumerator_1_UnityEngine_XR_ARSubsystems_XRRaycast__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_XmlTagAttribute___ctor, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_XmlTagAttribute_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_XmlTagAttribute__Dispose, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_XmlTagAttribute_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_XmlTagAttribute__MoveNext, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_XmlTagAttribute_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_XmlTagAttribute__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_XmlTagAttribute_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D0CC0, Object *, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_XmlTagAttribute__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_XmlTagAttribute_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D0B40, XmlTagAttribute, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_XmlTagAttribute__get_Current, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_XmlTagAttribute_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC848, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_XmlTagAttribute__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_aOHEnKCFymegycPegEXPFUjlaUPpA___ctor, (Array_InternalEnumerator_1_aOHEnKCFymegycPegEXPFUjlaUPpA_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_aOHEnKCFymegycPegEXPFUjlaUPpA__Dispose, (Array_InternalEnumerator_1_aOHEnKCFymegycPegEXPFUjlaUPpA_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_aOHEnKCFymegycPegEXPFUjlaUPpA__MoveNext, (Array_InternalEnumerator_1_aOHEnKCFymegycPegEXPFUjlaUPpA_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_aOHEnKCFymegycPegEXPFUjlaUPpA__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_aOHEnKCFymegycPegEXPFUjlaUPpA_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D0ED0, Object *, Array_InternalEnumerator_1_aOHEnKCFymegycPegEXPFUjlaUPpA__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_aOHEnKCFymegycPegEXPFUjlaUPpA_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D0D60, aOHEnKCFymegycPegEXPFUjlaUPpA, Array_InternalEnumerator_1_aOHEnKCFymegycPegEXPFUjlaUPpA__get_Current, (Array_InternalEnumerator_1_aOHEnKCFymegycPegEXPFUjlaUPpA_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC840, Array_InternalEnumerator_1_aOHEnKCFymegycPegEXPFUjlaUPpA__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_aQHgSHeigtcamfIWbNaiXaCiVwuq___ctor, (Array_InternalEnumerator_1_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__Dispose, (Array_InternalEnumerator_1_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__MoveNext, (Array_InternalEnumerator_1_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D10D0, Object *, Array_InternalEnumerator_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D0F60, aQHgSHeigtcamfIWbNaiXaCiVwuq, Array_InternalEnumerator_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__get_Current, (Array_InternalEnumerator_1_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC738, Array_InternalEnumerator_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_jvalue___ctor, (Array_InternalEnumerator_1_UnityEngine_jvalue_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_jvalue__Dispose, (Array_InternalEnumerator_1_UnityEngine_jvalue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_jvalue__MoveNext, (Array_InternalEnumerator_1_UnityEngine_jvalue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_jvalue__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_jvalue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D12D0, Object *, Array_InternalEnumerator_1_UnityEngine_jvalue__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_jvalue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D1160, jvalue, Array_InternalEnumerator_1_UnityEngine_jvalue__get_Current, (Array_InternalEnumerator_1_UnityEngine_jvalue_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC730, Array_InternalEnumerator_1_UnityEngine_jvalue__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_tSPvxZUJjzaTiAEejeAOLKctGpmKA___ctor, (Array_InternalEnumerator_1_tSPvxZUJjzaTiAEejeAOLKctGpmKA_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_tSPvxZUJjzaTiAEejeAOLKctGpmKA__Dispose, (Array_InternalEnumerator_1_tSPvxZUJjzaTiAEejeAOLKctGpmKA_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_tSPvxZUJjzaTiAEejeAOLKctGpmKA__MoveNext, (Array_InternalEnumerator_1_tSPvxZUJjzaTiAEejeAOLKctGpmKA_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_tSPvxZUJjzaTiAEejeAOLKctGpmKA__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_tSPvxZUJjzaTiAEejeAOLKctGpmKA_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D14D0, Object *, Array_InternalEnumerator_1_tSPvxZUJjzaTiAEejeAOLKctGpmKA__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_tSPvxZUJjzaTiAEejeAOLKctGpmKA_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D1360, tSPvxZUJjzaTiAEejeAOLKctGpmKA, Array_InternalEnumerator_1_tSPvxZUJjzaTiAEejeAOLKctGpmKA__get_Current, (Array_InternalEnumerator_1_tSPvxZUJjzaTiAEejeAOLKctGpmKA_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC750, Array_InternalEnumerator_1_tSPvxZUJjzaTiAEejeAOLKctGpmKA__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_yUgrsNEvLzxrXGzkHTUPIBJYGDah___ctor, (Array_InternalEnumerator_1_yUgrsNEvLzxrXGzkHTUPIBJYGDah_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_yUgrsNEvLzxrXGzkHTUPIBJYGDah__Dispose, (Array_InternalEnumerator_1_yUgrsNEvLzxrXGzkHTUPIBJYGDah_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_yUgrsNEvLzxrXGzkHTUPIBJYGDah__MoveNext, (Array_InternalEnumerator_1_yUgrsNEvLzxrXGzkHTUPIBJYGDah_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_yUgrsNEvLzxrXGzkHTUPIBJYGDah__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_yUgrsNEvLzxrXGzkHTUPIBJYGDah_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D16D0, Object *, Array_InternalEnumerator_1_yUgrsNEvLzxrXGzkHTUPIBJYGDah__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_yUgrsNEvLzxrXGzkHTUPIBJYGDah_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D1560, yUgrsNEvLzxrXGzkHTUPIBJYGDah, Array_InternalEnumerator_1_yUgrsNEvLzxrXGzkHTUPIBJYGDah__get_Current, (Array_InternalEnumerator_1_yUgrsNEvLzxrXGzkHTUPIBJYGDah_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC740, Array_InternalEnumerator_1_yUgrsNEvLzxrXGzkHTUPIBJYGDah__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_AIObjectPool_PreloadedPrefab___ctor, (Array_InternalEnumerator_1_AIObjectPool_PreloadedPrefab_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_AIObjectPool_PreloadedPrefab__Dispose, (Array_InternalEnumerator_1_AIObjectPool_PreloadedPrefab_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_AIObjectPool_PreloadedPrefab__MoveNext, (Array_InternalEnumerator_1_AIObjectPool_PreloadedPrefab_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_AIObjectPool_PreloadedPrefab__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_AIObjectPool_PreloadedPrefab_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D18D0, Object *, Array_InternalEnumerator_1_AIObjectPool_PreloadedPrefab__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_AIObjectPool_PreloadedPrefab_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D1760, AIObjectPool_PreloadedPrefab, Array_InternalEnumerator_1_AIObjectPool_PreloadedPrefab__get_Current, (Array_InternalEnumerator_1_AIObjectPool_PreloadedPrefab_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC708, Array_InternalEnumerator_1_AIObjectPool_PreloadedPrefab__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Pathfinding_AdvancedSmooth_Turn___ctor, (Array_InternalEnumerator_1_Pathfinding_AdvancedSmooth_Turn_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Pathfinding_AdvancedSmooth_Turn__Dispose, (Array_InternalEnumerator_1_Pathfinding_AdvancedSmooth_Turn_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Pathfinding_AdvancedSmooth_Turn__MoveNext, (Array_InternalEnumerator_1_Pathfinding_AdvancedSmooth_Turn_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Pathfinding_AdvancedSmooth_Turn__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Pathfinding_AdvancedSmooth_Turn_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D1AD0, Object *, Array_InternalEnumerator_1_Pathfinding_AdvancedSmooth_Turn__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Pathfinding_AdvancedSmooth_Turn_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D1960, AdvancedSmooth_Turn, Array_InternalEnumerator_1_Pathfinding_AdvancedSmooth_Turn__get_Current, (Array_InternalEnumerator_1_Pathfinding_AdvancedSmooth_Turn_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC700, Array_InternalEnumerator_1_Pathfinding_AdvancedSmooth_Turn__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Pathfinding_RVO_Sampled_Agent_VO___ctor, (Array_InternalEnumerator_1_Pathfinding_RVO_Sampled_Agent_VO_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Pathfinding_RVO_Sampled_Agent_VO__Dispose, (Array_InternalEnumerator_1_Pathfinding_RVO_Sampled_Agent_VO_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Pathfinding_RVO_Sampled_Agent_VO__MoveNext, (Array_InternalEnumerator_1_Pathfinding_RVO_Sampled_Agent_VO_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Pathfinding_RVO_Sampled_Agent_VO__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Pathfinding_RVO_Sampled_Agent_VO_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D1D10, Object *, Array_InternalEnumerator_1_Pathfinding_RVO_Sampled_Agent_VO__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Pathfinding_RVO_Sampled_Agent_VO_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D1B60, Agent_VO, Array_InternalEnumerator_1_Pathfinding_RVO_Sampled_Agent_VO__get_Current, (Array_InternalEnumerator_1_Pathfinding_RVO_Sampled_Agent_VO_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC720, Array_InternalEnumerator_1_Pathfinding_RVO_Sampled_Agent_VO__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo___ctor, (Array_InternalEnumerator_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo__Dispose, (Array_InternalEnumerator_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D1F70, Object *, Array_InternalEnumerator_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D1DE0, AnimationOutputWeightProcessor_WeightInfo, Array_InternalEnumerator_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo__get_Current, (Array_InternalEnumerator_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC710, Array_InternalEnumerator_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Pathfinding_AstarDebugger_GraphPoint___ctor, (Array_InternalEnumerator_1_Pathfinding_AstarDebugger_GraphPoint_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Pathfinding_AstarDebugger_GraphPoint__Dispose, (Array_InternalEnumerator_1_Pathfinding_AstarDebugger_GraphPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Pathfinding_AstarDebugger_GraphPoint__MoveNext, (Array_InternalEnumerator_1_Pathfinding_AstarDebugger_GraphPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Pathfinding_AstarDebugger_GraphPoint__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Pathfinding_AstarDebugger_GraphPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D21A0, Object *, Array_InternalEnumerator_1_Pathfinding_AstarDebugger_GraphPoint__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Pathfinding_AstarDebugger_GraphPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D2020, AstarDebugger_GraphPoint, Array_InternalEnumerator_1_Pathfinding_AstarDebugger_GraphPoint__get_Current, (Array_InternalEnumerator_1_Pathfinding_AstarDebugger_GraphPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC7A0, Array_InternalEnumerator_1_Pathfinding_AstarDebugger_GraphPoint__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Pathfinding_AstarDebugger_PathTypeDebug___ctor, (Array_InternalEnumerator_1_Pathfinding_AstarDebugger_PathTypeDebug_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Pathfinding_AstarDebugger_PathTypeDebug__Dispose, (Array_InternalEnumerator_1_Pathfinding_AstarDebugger_PathTypeDebug_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Pathfinding_AstarDebugger_PathTypeDebug__MoveNext, (Array_InternalEnumerator_1_Pathfinding_AstarDebugger_PathTypeDebug_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Pathfinding_AstarDebugger_PathTypeDebug__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Pathfinding_AstarDebugger_PathTypeDebug_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D23C0, Object *, Array_InternalEnumerator_1_Pathfinding_AstarDebugger_PathTypeDebug__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Pathfinding_AstarDebugger_PathTypeDebug_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D2240, AstarDebugger_PathTypeDebug, Array_InternalEnumerator_1_Pathfinding_AstarDebugger_PathTypeDebug__get_Current, (Array_InternalEnumerator_1_Pathfinding_AstarDebugger_PathTypeDebug_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC790, Array_InternalEnumerator_1_Pathfinding_AstarDebugger_PathTypeDebug__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_AtlasAllocatorDynamic_AtlasNode___ctor, (Array_InternalEnumerator_1_UnityEngine_Rendering_AtlasAllocatorDynamic_AtlasNode_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Rendering_AtlasAllocatorDynamic_AtlasNode__Dispose, (Array_InternalEnumerator_1_UnityEngine_Rendering_AtlasAllocatorDynamic_AtlasNode_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Rendering_AtlasAllocatorDynamic_AtlasNode__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Rendering_AtlasAllocatorDynamic_AtlasNode_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_AtlasAllocatorDynamic_AtlasNode__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Rendering_AtlasAllocatorDynamic_AtlasNode_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D25E0, Object *, Array_InternalEnumerator_1_UnityEngine_Rendering_AtlasAllocatorDynamic_AtlasNode__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_AtlasAllocatorDynamic_AtlasNode_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D2460, AtlasAllocatorDynamic_AtlasNode, Array_InternalEnumerator_1_UnityEngine_Rendering_AtlasAllocatorDynamic_AtlasNode__get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_AtlasAllocatorDynamic_AtlasNode_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC7B0, Array_InternalEnumerator_1_UnityEngine_Rendering_AtlasAllocatorDynamic_AtlasNode__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_ComponentModel_AttributeCollection_AttributeEntry___ctor, (Array_InternalEnumerator_1_System_ComponentModel_AttributeCollection_AttributeEntry_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_ComponentModel_AttributeCollection_AttributeEntry__Dispose, (Array_InternalEnumerator_1_System_ComponentModel_AttributeCollection_AttributeEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_ComponentModel_AttributeCollection_AttributeEntry__MoveNext, (Array_InternalEnumerator_1_System_ComponentModel_AttributeCollection_AttributeEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_ComponentModel_AttributeCollection_AttributeEntry__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_ComponentModel_AttributeCollection_AttributeEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D27F0, Object *, Array_InternalEnumerator_1_System_ComponentModel_AttributeCollection_AttributeEntry__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_ComponentModel_AttributeCollection_AttributeEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D2680, AttributeCollection_AttributeEntry, Array_InternalEnumerator_1_System_ComponentModel_AttributeCollection_AttributeEntry__get_Current, (Array_InternalEnumerator_1_System_ComponentModel_AttributeCollection_AttributeEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC7A8, Array_InternalEnumerator_1_System_ComponentModel_AttributeCollection_AttributeEntry__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Pathfinding_BBTree_BBTreeBox___ctor, (Array_InternalEnumerator_1_Pathfinding_BBTree_BBTreeBox_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Pathfinding_BBTree_BBTreeBox__Dispose, (Array_InternalEnumerator_1_Pathfinding_BBTree_BBTreeBox_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Pathfinding_BBTree_BBTreeBox__MoveNext, (Array_InternalEnumerator_1_Pathfinding_BBTree_BBTreeBox_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Pathfinding_BBTree_BBTreeBox__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Pathfinding_BBTree_BBTreeBox_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D2A00, Object *, Array_InternalEnumerator_1_Pathfinding_BBTree_BBTreeBox__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Pathfinding_BBTree_BBTreeBox_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D2880, BBTree_BBTreeBox, Array_InternalEnumerator_1_Pathfinding_BBTree_BBTreeBox__get_Current, (Array_InternalEnumerator_1_Pathfinding_BBTree_BBTreeBox_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC768, Array_InternalEnumerator_1_Pathfinding_BBTree_BBTreeBox__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D2C10, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D2AA0, BaseStyleMatcher_MatchContext, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC760, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_BeforeRenderHelper_OrderBlock___ctor, (Array_InternalEnumerator_1_UnityEngine_BeforeRenderHelper_OrderBlock_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_BeforeRenderHelper_OrderBlock__Dispose, (Array_InternalEnumerator_1_UnityEngine_BeforeRenderHelper_OrderBlock_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_BeforeRenderHelper_OrderBlock__MoveNext, (Array_InternalEnumerator_1_UnityEngine_BeforeRenderHelper_OrderBlock_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_BeforeRenderHelper_OrderBlock__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_BeforeRenderHelper_OrderBlock_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D2E10, Object *, Array_InternalEnumerator_1_UnityEngine_BeforeRenderHelper_OrderBlock__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_BeforeRenderHelper_OrderBlock_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D2CA0, BeforeRenderHelper_OrderBlock, Array_InternalEnumerator_1_UnityEngine_BeforeRenderHelper_OrderBlock__get_Current, (Array_InternalEnumerator_1_UnityEngine_BeforeRenderHelper_OrderBlock_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC780, Array_InternalEnumerator_1_UnityEngine_BeforeRenderHelper_OrderBlock__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_CollisionResistanceMultiplier___ctor, (Array_InternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_CollisionResistanceMultiplier_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_CollisionResistanceMultiplier__Dispose, (Array_InternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_CollisionResistanceMultiplier_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_CollisionResistanceMultiplier__MoveNext, (Array_InternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_CollisionResistanceMultiplier_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_CollisionResistanceMultiplier__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_CollisionResistanceMultiplier_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D3020, Object *, Array_InternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_CollisionResistanceMultiplier__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_CollisionResistanceMultiplier_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D2EA0, BehaviourPuppet_CollisionResistanceMultiplier, Array_InternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_CollisionResistanceMultiplier__get_Current, (Array_InternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_CollisionResistanceMultiplier_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC770, Array_InternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_CollisionResistanceMultiplier__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_MusclePropsGroup___ctor, (Array_InternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_MusclePropsGroup_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_MusclePropsGroup__Dispose, (Array_InternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_MusclePropsGroup_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_MusclePropsGroup__MoveNext, (Array_InternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_MusclePropsGroup_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_MusclePropsGroup__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_MusclePropsGroup_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D3260, Object *, Array_InternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_MusclePropsGroup__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_MusclePropsGroup_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D30C0, BehaviourPuppet_MusclePropsGroup, Array_InternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_MusclePropsGroup__get_Current, (Array_InternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_MusclePropsGroup_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC690, Array_InternalEnumerator_1_RootMotion_Dynamics_BehaviourPuppet_MusclePropsGroup__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Pathfinding_BinaryHeap_Tuple___ctor, (Array_InternalEnumerator_1_Pathfinding_BinaryHeap_Tuple_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Pathfinding_BinaryHeap_Tuple__Dispose, (Array_InternalEnumerator_1_Pathfinding_BinaryHeap_Tuple_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Pathfinding_BinaryHeap_Tuple__MoveNext, (Array_InternalEnumerator_1_Pathfinding_BinaryHeap_Tuple_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Pathfinding_BinaryHeap_Tuple__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Pathfinding_BinaryHeap_Tuple_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D3490, Object *, Array_InternalEnumerator_1_Pathfinding_BinaryHeap_Tuple__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Pathfinding_BinaryHeap_Tuple_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D3320, BinaryHeap_Tuple, Array_InternalEnumerator_1_Pathfinding_BinaryHeap_Tuple__get_Current, (Array_InternalEnumerator_1_Pathfinding_BinaryHeap_Tuple_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC688, Array_InternalEnumerator_1_Pathfinding_BinaryHeap_Tuple__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D3690, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D3520, BitmapAllocator32_Page, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC6A0, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_PostProcessing_BloomRenderer_Level___ctor, (Array_InternalEnumerator_1_UnityEngine_Rendering_PostProcessing_BloomRenderer_Level_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Rendering_PostProcessing_BloomRenderer_Level__Dispose, (Array_InternalEnumerator_1_UnityEngine_Rendering_PostProcessing_BloomRenderer_Level_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Rendering_PostProcessing_BloomRenderer_Level__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Rendering_PostProcessing_BloomRenderer_Level_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_PostProcessing_BloomRenderer_Level__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Rendering_PostProcessing_BloomRenderer_Level_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D3890, Object *, Array_InternalEnumerator_1_UnityEngine_Rendering_PostProcessing_BloomRenderer_Level__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_PostProcessing_BloomRenderer_Level_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D3720, BloomRenderer_Level, Array_InternalEnumerator_1_UnityEngine_Rendering_PostProcessing_BloomRenderer_Level__get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_PostProcessing_BloomRenderer_Level_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC698, Array_InternalEnumerator_1_UnityEngine_Rendering_PostProcessing_BloomRenderer_Level__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Photon_Bolt_Utils_BoltConsole_Line___ctor, (Array_InternalEnumerator_1_Photon_Bolt_Utils_BoltConsole_Line_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Photon_Bolt_Utils_BoltConsole_Line__Dispose, (Array_InternalEnumerator_1_Photon_Bolt_Utils_BoltConsole_Line_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Photon_Bolt_Utils_BoltConsole_Line__MoveNext, (Array_InternalEnumerator_1_Photon_Bolt_Utils_BoltConsole_Line_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Photon_Bolt_Utils_BoltConsole_Line__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Photon_Bolt_Utils_BoltConsole_Line_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D3AA0, Object *, Array_InternalEnumerator_1_Photon_Bolt_Utils_BoltConsole_Line__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Photon_Bolt_Utils_BoltConsole_Line_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D3920, BoltConsole_Line, Array_InternalEnumerator_1_Photon_Bolt_Utils_BoltConsole_Line__get_Current, (Array_InternalEnumerator_1_Photon_Bolt_Utils_BoltConsole_Line_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC670, Array_InternalEnumerator_1_Photon_Bolt_Utils_BoltConsole_Line__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Photon_Bolt_Tokens_BoltProtocolTokenRegistry_TokenRegistry___ctor, (Array_InternalEnumerator_1_Photon_Bolt_Tokens_BoltProtocolTokenRegistry_TokenRegistry_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Photon_Bolt_Tokens_BoltProtocolTokenRegistry_TokenRegistry__Dispose, (Array_InternalEnumerator_1_Photon_Bolt_Tokens_BoltProtocolTokenRegistry_TokenRegistry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Photon_Bolt_Tokens_BoltProtocolTokenRegistry_TokenRegistry__MoveNext, (Array_InternalEnumerator_1_Photon_Bolt_Tokens_BoltProtocolTokenRegistry_TokenRegistry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Photon_Bolt_Tokens_BoltProtocolTokenRegistry_TokenRegistry__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Photon_Bolt_Tokens_BoltProtocolTokenRegistry_TokenRegistry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D3CB0, Object *, Array_InternalEnumerator_1_Photon_Bolt_Tokens_BoltProtocolTokenRegistry_TokenRegistry__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Photon_Bolt_Tokens_BoltProtocolTokenRegistry_TokenRegistry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D3B40, BoltProtocolTokenRegistry_TokenRegistry, Array_InternalEnumerator_1_Photon_Bolt_Tokens_BoltProtocolTokenRegistry_TokenRegistry__get_Current, (Array_InternalEnumerator_1_Photon_Bolt_Tokens_BoltProtocolTokenRegistry_TokenRegistry_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC668, Array_InternalEnumerator_1_Photon_Bolt_Tokens_BoltProtocolTokenRegistry_TokenRegistry__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Globalization_CalendricalCalculationsHelper_EphemerisCorrectionAlgorithmMap___ctor, (Array_InternalEnumerator_1_System_Globalization_CalendricalCalculationsHelper_EphemerisCorrectionAlgorithmMap_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Globalization_CalendricalCalculationsHelper_EphemerisCorrectionAlgorithmMap__Dispose, (Array_InternalEnumerator_1_System_Globalization_CalendricalCalculationsHelper_EphemerisCorrectionAlgorithmMap_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Globalization_CalendricalCalculationsHelper_EphemerisCorrectionAlgorithmMap__MoveNext, (Array_InternalEnumerator_1_System_Globalization_CalendricalCalculationsHelper_EphemerisCorrectionAlgorithmMap_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Globalization_CalendricalCalculationsHelper_EphemerisCorrectionAlgorithmMap__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Globalization_CalendricalCalculationsHelper_EphemerisCorrectionAlgorithmMap_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D3EB0, Object *, Array_InternalEnumerator_1_System_Globalization_CalendricalCalculationsHelper_EphemerisCorrectionAlgorithmMap__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Globalization_CalendricalCalculationsHelper_EphemerisCorrectionAlgorithmMap_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D3D40, CalendricalCalculationsHelper_EphemerisCorrectionAlgorithmMap, Array_InternalEnumerator_1_System_Globalization_CalendricalCalculationsHelper_EphemerisCorrectionAlgorithmMap__get_Current, (Array_InternalEnumerator_1_System_Globalization_CalendricalCalculationsHelper_EphemerisCorrectionAlgorithmMap_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC680, Array_InternalEnumerator_1_System_Globalization_CalendricalCalculationsHelper_EphemerisCorrectionAlgorithmMap__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Camera_RenderRequest___ctor, (Array_InternalEnumerator_1_UnityEngine_Camera_RenderRequest_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Camera_RenderRequest__Dispose, (Array_InternalEnumerator_1_UnityEngine_Camera_RenderRequest_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Camera_RenderRequest__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Camera_RenderRequest_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Camera_RenderRequest__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Camera_RenderRequest_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D40C0, Object *, Array_InternalEnumerator_1_UnityEngine_Camera_RenderRequest__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Camera_RenderRequest_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D3F40, Camera_RenderRequest, Array_InternalEnumerator_1_UnityEngine_Camera_RenderRequest__get_Current, (Array_InternalEnumerator_1_UnityEngine_Camera_RenderRequest_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC678, Array_InternalEnumerator_1_UnityEngine_Camera_RenderRequest__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Cinemachine_CameraState_CustomBlendable___ctor, (Array_InternalEnumerator_1_Cinemachine_CameraState_CustomBlendable_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Cinemachine_CameraState_CustomBlendable__Dispose, (Array_InternalEnumerator_1_Cinemachine_CameraState_CustomBlendable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Cinemachine_CameraState_CustomBlendable__MoveNext, (Array_InternalEnumerator_1_Cinemachine_CameraState_CustomBlendable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Cinemachine_CameraState_CustomBlendable__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Cinemachine_CameraState_CustomBlendable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D42D0, Object *, Array_InternalEnumerator_1_Cinemachine_CameraState_CustomBlendable__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Cinemachine_CameraState_CustomBlendable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D4160, CameraState_CustomBlendable, Array_InternalEnumerator_1_Cinemachine_CameraState_CustomBlendable__get_Current, (Array_InternalEnumerator_1_Cinemachine_CameraState_CustomBlendable_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC6E8, Array_InternalEnumerator_1_Cinemachine_CameraState_CustomBlendable__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_Foot___ctor, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_Foot_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_Foot__Dispose, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_Foot_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_Foot__MoveNext, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_Foot_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_Foot__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_Foot_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D44D0, Object *, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_Foot__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_Foot_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D4360, CharacterFootEffects_Foot, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_Foot__get_Current, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_Foot_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC6E0, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_Foot__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Cinemachine_CinemachineBlendListCamera_Instruction___ctor, (Array_InternalEnumerator_1_Cinemachine_CinemachineBlendListCamera_Instruction_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Cinemachine_CinemachineBlendListCamera_Instruction__Dispose, (Array_InternalEnumerator_1_Cinemachine_CinemachineBlendListCamera_Instruction_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Cinemachine_CinemachineBlendListCamera_Instruction__MoveNext, (Array_InternalEnumerator_1_Cinemachine_CinemachineBlendListCamera_Instruction_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Cinemachine_CinemachineBlendListCamera_Instruction__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Cinemachine_CinemachineBlendListCamera_Instruction_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D46E0, Object *, Array_InternalEnumerator_1_Cinemachine_CinemachineBlendListCamera_Instruction__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Cinemachine_CinemachineBlendListCamera_Instruction_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D4560, CinemachineBlendListCamera_Instruction, Array_InternalEnumerator_1_Cinemachine_CinemachineBlendListCamera_Instruction__get_Current, (Array_InternalEnumerator_1_Cinemachine_CinemachineBlendListCamera_Instruction_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC6F8, Array_InternalEnumerator_1_Cinemachine_CinemachineBlendListCamera_Instruction__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Cinemachine_CinemachineBlenderSettings_CustomBlend___ctor, (Array_InternalEnumerator_1_Cinemachine_CinemachineBlenderSettings_CustomBlend_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Cinemachine_CinemachineBlenderSettings_CustomBlend__Dispose, (Array_InternalEnumerator_1_Cinemachine_CinemachineBlenderSettings_CustomBlend_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Cinemachine_CinemachineBlenderSettings_CustomBlend__MoveNext, (Array_InternalEnumerator_1_Cinemachine_CinemachineBlenderSettings_CustomBlend_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Cinemachine_CinemachineBlenderSettings_CustomBlend__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Cinemachine_CinemachineBlenderSettings_CustomBlend_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D4900, Object *, Array_InternalEnumerator_1_Cinemachine_CinemachineBlenderSettings_CustomBlend__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Cinemachine_CinemachineBlenderSettings_CustomBlend_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D4780, CinemachineBlenderSettings_CustomBlend, Array_InternalEnumerator_1_Cinemachine_CinemachineBlenderSettings_CustomBlend__get_Current, (Array_InternalEnumerator_1_Cinemachine_CinemachineBlenderSettings_CustomBlend_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC6F0, Array_InternalEnumerator_1_Cinemachine_CinemachineBlenderSettings_CustomBlend__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Cinemachine_CinemachineClearShot_Pair___ctor, (Array_InternalEnumerator_1_Cinemachine_CinemachineClearShot_Pair_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Cinemachine_CinemachineClearShot_Pair__Dispose, (Array_InternalEnumerator_1_Cinemachine_CinemachineClearShot_Pair_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Cinemachine_CinemachineClearShot_Pair__MoveNext, (Array_InternalEnumerator_1_Cinemachine_CinemachineClearShot_Pair_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Cinemachine_CinemachineClearShot_Pair__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Cinemachine_CinemachineClearShot_Pair_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D4B10, Object *, Array_InternalEnumerator_1_Cinemachine_CinemachineClearShot_Pair__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Cinemachine_CinemachineClearShot_Pair_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D49A0, CinemachineClearShot_Pair, Array_InternalEnumerator_1_Cinemachine_CinemachineClearShot_Pair__get_Current, (Array_InternalEnumerator_1_Cinemachine_CinemachineClearShot_Pair_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC6C0, Array_InternalEnumerator_1_Cinemachine_CinemachineClearShot_Pair__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Cinemachine_CinemachineFreeLook_Orbit___ctor, (Array_InternalEnumerator_1_Cinemachine_CinemachineFreeLook_Orbit_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Cinemachine_CinemachineFreeLook_Orbit__Dispose, (Array_InternalEnumerator_1_Cinemachine_CinemachineFreeLook_Orbit_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Cinemachine_CinemachineFreeLook_Orbit__MoveNext, (Array_InternalEnumerator_1_Cinemachine_CinemachineFreeLook_Orbit_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Cinemachine_CinemachineFreeLook_Orbit__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Cinemachine_CinemachineFreeLook_Orbit_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D4D10, Object *, Array_InternalEnumerator_1_Cinemachine_CinemachineFreeLook_Orbit__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Cinemachine_CinemachineFreeLook_Orbit_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D4BA0, CinemachineFreeLook_Orbit, Array_InternalEnumerator_1_Cinemachine_CinemachineFreeLook_Orbit__get_Current, (Array_InternalEnumerator_1_Cinemachine_CinemachineFreeLook_Orbit_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC6B0, Array_InternalEnumerator_1_Cinemachine_CinemachineFreeLook_Orbit__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Cinemachine_CinemachinePath_Waypoint___ctor, (Array_InternalEnumerator_1_Cinemachine_CinemachinePath_Waypoint_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Cinemachine_CinemachinePath_Waypoint__Dispose, (Array_InternalEnumerator_1_Cinemachine_CinemachinePath_Waypoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Cinemachine_CinemachinePath_Waypoint__MoveNext, (Array_InternalEnumerator_1_Cinemachine_CinemachinePath_Waypoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Cinemachine_CinemachinePath_Waypoint__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Cinemachine_CinemachinePath_Waypoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D4F20, Object *, Array_InternalEnumerator_1_Cinemachine_CinemachinePath_Waypoint__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Cinemachine_CinemachinePath_Waypoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D4DA0, CinemachinePath_Waypoint, Array_InternalEnumerator_1_Cinemachine_CinemachinePath_Waypoint__get_Current, (Array_InternalEnumerator_1_Cinemachine_CinemachinePath_Waypoint_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC6D8, Array_InternalEnumerator_1_Cinemachine_CinemachinePath_Waypoint__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Cinemachine_CinemachineSmoothPath_Waypoint___ctor, (Array_InternalEnumerator_1_Cinemachine_CinemachineSmoothPath_Waypoint_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Cinemachine_CinemachineSmoothPath_Waypoint__Dispose, (Array_InternalEnumerator_1_Cinemachine_CinemachineSmoothPath_Waypoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Cinemachine_CinemachineSmoothPath_Waypoint__MoveNext, (Array_InternalEnumerator_1_Cinemachine_CinemachineSmoothPath_Waypoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Cinemachine_CinemachineSmoothPath_Waypoint__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Cinemachine_CinemachineSmoothPath_Waypoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D5130, Object *, Array_InternalEnumerator_1_Cinemachine_CinemachineSmoothPath_Waypoint__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Cinemachine_CinemachineSmoothPath_Waypoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D4FC0, CinemachineSmoothPath_Waypoint, Array_InternalEnumerator_1_Cinemachine_CinemachineSmoothPath_Waypoint__get_Current, (Array_InternalEnumerator_1_Cinemachine_CinemachineSmoothPath_Waypoint_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC6D0, Array_InternalEnumerator_1_Cinemachine_CinemachineSmoothPath_Waypoint__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_HashPair___ctor, (Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_HashPair_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_HashPair__Dispose, (Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_HashPair_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_HashPair__MoveNext, (Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_HashPair_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_HashPair__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_HashPair_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D5330, Object *, Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_HashPair__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_HashPair_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D51C0, CinemachineStateDrivenCamera_HashPair, Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_HashPair__get_Current, (Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_HashPair_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC5D0, Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_HashPair__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_Instruction___ctor, (Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_Instruction_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_Instruction__Dispose, (Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_Instruction_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_Instruction__MoveNext, (Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_Instruction_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_Instruction__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_Instruction_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D5540, Object *, Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_Instruction__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_Instruction_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D53C0, CinemachineStateDrivenCamera_Instruction, Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_Instruction__get_Current, (Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_Instruction_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC5C8, Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_Instruction__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_ParentHash___ctor, (Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_ParentHash_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_ParentHash__Dispose, (Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_ParentHash_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_ParentHash__MoveNext, (Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_ParentHash_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_ParentHash__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_ParentHash_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D5750, Object *, Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_ParentHash__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_ParentHash_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D55E0, CinemachineStateDrivenCamera_ParentHash, Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_ParentHash__get_Current, (Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_ParentHash_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC5E8, Array_InternalEnumerator_1_Cinemachine_CinemachineStateDrivenCamera_ParentHash__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Cinemachine_CinemachineTargetGroup_Target___ctor, (Array_InternalEnumerator_1_Cinemachine_CinemachineTargetGroup_Target_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Cinemachine_CinemachineTargetGroup_Target__Dispose, (Array_InternalEnumerator_1_Cinemachine_CinemachineTargetGroup_Target_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Cinemachine_CinemachineTargetGroup_Target__MoveNext, (Array_InternalEnumerator_1_Cinemachine_CinemachineTargetGroup_Target_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Cinemachine_CinemachineTargetGroup_Target__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Cinemachine_CinemachineTargetGroup_Target_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D5950, Object *, Array_InternalEnumerator_1_Cinemachine_CinemachineTargetGroup_Target__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Cinemachine_CinemachineTargetGroup_Target_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D57E0, CinemachineTargetGroup_Target, Array_InternalEnumerator_1_Cinemachine_CinemachineTargetGroup_Target__get_Current, (Array_InternalEnumerator_1_Cinemachine_CinemachineTargetGroup_Target_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC5E0, Array_InternalEnumerator_1_Cinemachine_CinemachineTargetGroup_Target__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Cinemachine_ClipperLib_DoublePoint___ctor, (Array_InternalEnumerator_1_Cinemachine_ClipperLib_DoublePoint_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Cinemachine_ClipperLib_DoublePoint__Dispose, (Array_InternalEnumerator_1_Cinemachine_ClipperLib_DoublePoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Cinemachine_ClipperLib_DoublePoint__MoveNext, (Array_InternalEnumerator_1_Cinemachine_ClipperLib_DoublePoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Cinemachine_ClipperLib_DoublePoint__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Cinemachine_ClipperLib_DoublePoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D5B50, Object *, Array_InternalEnumerator_1_Cinemachine_ClipperLib_DoublePoint__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Cinemachine_ClipperLib_DoublePoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D59E0, ClipperLib_DoublePoint, Array_InternalEnumerator_1_Cinemachine_ClipperLib_DoublePoint__get_Current, (Array_InternalEnumerator_1_Cinemachine_ClipperLib_DoublePoint_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC5A0, Array_InternalEnumerator_1_Cinemachine_ClipperLib_DoublePoint__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Cinemachine_ClipperLib_IntPoint___ctor, (Array_InternalEnumerator_1_Cinemachine_ClipperLib_IntPoint_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Cinemachine_ClipperLib_IntPoint__Dispose, (Array_InternalEnumerator_1_Cinemachine_ClipperLib_IntPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Cinemachine_ClipperLib_IntPoint__MoveNext, (Array_InternalEnumerator_1_Cinemachine_ClipperLib_IntPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Cinemachine_ClipperLib_IntPoint__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Cinemachine_ClipperLib_IntPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D5D50, Object *, Array_InternalEnumerator_1_Cinemachine_ClipperLib_IntPoint__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Cinemachine_ClipperLib_IntPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D5BE0, ClipperLib_IntPoint, Array_InternalEnumerator_1_Cinemachine_ClipperLib_IntPoint__get_Current, (Array_InternalEnumerator_1_Cinemachine_ClipperLib_IntPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC598, Array_InternalEnumerator_1_Cinemachine_ClipperLib_IntPoint__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Mono_Globalization_Unicode_CodePointIndexer_TableRange___ctor, (Array_InternalEnumerator_1_Mono_Globalization_Unicode_CodePointIndexer_TableRange_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Mono_Globalization_Unicode_CodePointIndexer_TableRange__Dispose, (Array_InternalEnumerator_1_Mono_Globalization_Unicode_CodePointIndexer_TableRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Mono_Globalization_Unicode_CodePointIndexer_TableRange__MoveNext, (Array_InternalEnumerator_1_Mono_Globalization_Unicode_CodePointIndexer_TableRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Mono_Globalization_Unicode_CodePointIndexer_TableRange__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Mono_Globalization_Unicode_CodePointIndexer_TableRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D5F60, Object *, Array_InternalEnumerator_1_Mono_Globalization_Unicode_CodePointIndexer_TableRange__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Mono_Globalization_Unicode_CodePointIndexer_TableRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D5DE0, CodePointIndexer_TableRange, Array_InternalEnumerator_1_Mono_Globalization_Unicode_CodePointIndexer_TableRange__get_Current, (Array_InternalEnumerator_1_Mono_Globalization_Unicode_CodePointIndexer_TableRange_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC5B8, Array_InternalEnumerator_1_Mono_Globalization_Unicode_CodePointIndexer_TableRange__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Character_Abilities_Starters_ComboTimeout_ComboInputElement___ctor, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Character_Abilities_Starters_ComboTimeout_ComboInputElement_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Character_Abilities_Starters_ComboTimeout_ComboInputElement__Dispose, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Character_Abilities_Starters_ComboTimeout_ComboInputElement_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Character_Abilities_Starters_ComboTimeout_ComboInputElement__MoveNext, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Character_Abilities_Starters_ComboTimeout_ComboInputElement_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Character_Abilities_Starters_ComboTimeout_ComboInputElement__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Character_Abilities_Starters_ComboTimeout_ComboInputElement_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D6170, Object *, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Character_Abilities_Starters_ComboTimeout_ComboInputElement__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Character_Abilities_Starters_ComboTimeout_ComboInputElement_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D6000, ComboTimeout_ComboInputElement, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Character_Abilities_Starters_ComboTimeout_ComboInputElement__get_Current, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Character_Abilities_Starters_ComboTimeout_ComboInputElement_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC5A8, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Character_Abilities_Starters_ComboTimeout_ComboInputElement__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Cinemachine_ConfinerOven_PolygonSolution___ctor, (Array_InternalEnumerator_1_Cinemachine_ConfinerOven_PolygonSolution_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Cinemachine_ConfinerOven_PolygonSolution__Dispose, (Array_InternalEnumerator_1_Cinemachine_ConfinerOven_PolygonSolution_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Cinemachine_ConfinerOven_PolygonSolution__MoveNext, (Array_InternalEnumerator_1_Cinemachine_ConfinerOven_PolygonSolution_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Cinemachine_ConfinerOven_PolygonSolution__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Cinemachine_ConfinerOven_PolygonSolution_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D6370, Object *, Array_InternalEnumerator_1_Cinemachine_ConfinerOven_PolygonSolution__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Cinemachine_ConfinerOven_PolygonSolution_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D6200, ConfinerOven_PolygonSolution, Array_InternalEnumerator_1_Cinemachine_ConfinerOven_PolygonSolution__get_Current, (Array_InternalEnumerator_1_Cinemachine_ConfinerOven_PolygonSolution_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC640, Array_InternalEnumerator_1_Cinemachine_ConfinerOven_PolygonSolution__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_AddressableAssets_ResourceLocators_ContentCatalogData_Bucket___ctor, (Array_InternalEnumerator_1_UnityEngine_AddressableAssets_ResourceLocators_ContentCatalogData_Bucket_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_AddressableAssets_ResourceLocators_ContentCatalogData_Bucket__Dispose, (Array_InternalEnumerator_1_UnityEngine_AddressableAssets_ResourceLocators_ContentCatalogData_Bucket_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_AddressableAssets_ResourceLocators_ContentCatalogData_Bucket__MoveNext, (Array_InternalEnumerator_1_UnityEngine_AddressableAssets_ResourceLocators_ContentCatalogData_Bucket_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_AddressableAssets_ResourceLocators_ContentCatalogData_Bucket__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_AddressableAssets_ResourceLocators_ContentCatalogData_Bucket_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D6570, Object *, Array_InternalEnumerator_1_UnityEngine_AddressableAssets_ResourceLocators_ContentCatalogData_Bucket__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_AddressableAssets_ResourceLocators_ContentCatalogData_Bucket_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D6400, ContentCatalogData_Bucket, Array_InternalEnumerator_1_UnityEngine_AddressableAssets_ResourceLocators_ContentCatalogData_Bucket__get_Current, (Array_InternalEnumerator_1_UnityEngine_AddressableAssets_ResourceLocators_ContentCatalogData_Bucket_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC630, Array_InternalEnumerator_1_UnityEngine_AddressableAssets_ResourceLocators_ContentCatalogData_Bucket__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Net_ContextFlagsAdapterPal_ContextFlagMapping___ctor, (Array_InternalEnumerator_1_System_Net_ContextFlagsAdapterPal_ContextFlagMapping_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Net_ContextFlagsAdapterPal_ContextFlagMapping__Dispose, (Array_InternalEnumerator_1_System_Net_ContextFlagsAdapterPal_ContextFlagMapping_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Net_ContextFlagsAdapterPal_ContextFlagMapping__MoveNext, (Array_InternalEnumerator_1_System_Net_ContextFlagsAdapterPal_ContextFlagMapping_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Net_ContextFlagsAdapterPal_ContextFlagMapping__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Net_ContextFlagsAdapterPal_ContextFlagMapping_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D6770, Object *, Array_InternalEnumerator_1_System_Net_ContextFlagsAdapterPal_ContextFlagMapping__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Net_ContextFlagsAdapterPal_ContextFlagMapping_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D6600, ContextFlagsAdapterPal_ContextFlagMapping, Array_InternalEnumerator_1_System_Net_ContextFlagsAdapterPal_ContextFlagMapping__get_Current, (Array_InternalEnumerator_1_System_Net_ContextFlagsAdapterPal_ContextFlagMapping_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC658, Array_InternalEnumerator_1_System_Net_ContextFlagsAdapterPal_ContextFlagMapping__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Net_CookieTokenizer_RecognizedAttribute___ctor, (Array_InternalEnumerator_1_System_Net_CookieTokenizer_RecognizedAttribute_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Net_CookieTokenizer_RecognizedAttribute__Dispose, (Array_InternalEnumerator_1_System_Net_CookieTokenizer_RecognizedAttribute_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Net_CookieTokenizer_RecognizedAttribute__MoveNext, (Array_InternalEnumerator_1_System_Net_CookieTokenizer_RecognizedAttribute_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Net_CookieTokenizer_RecognizedAttribute__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Net_CookieTokenizer_RecognizedAttribute_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D6970, Object *, Array_InternalEnumerator_1_System_Net_CookieTokenizer_RecognizedAttribute__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Net_CookieTokenizer_RecognizedAttribute_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D6800, CookieTokenizer_RecognizedAttribute, Array_InternalEnumerator_1_System_Net_CookieTokenizer_RecognizedAttribute__get_Current, (Array_InternalEnumerator_1_System_Net_CookieTokenizer_RecognizedAttribute_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC648, Array_InternalEnumerator_1_System_Net_CookieTokenizer_RecognizedAttribute__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB___ctor, (Array_InternalEnumerator_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__Dispose, (Array_InternalEnumerator_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__MoveNext, (Array_InternalEnumerator_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D6B80, Object *, Array_InternalEnumerator_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D6A00, CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB, Array_InternalEnumerator_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__get_Current, (Array_InternalEnumerator_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC600, Array_InternalEnumerator_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator___ctor, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator__Dispose, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator__MoveNext, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D6DB0, Object *, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D6C20, DamageIndicatorMonitor_DamageIndicator, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator__get_Current, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC5F0, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo___ctor, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__Dispose, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__MoveNext, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D6FF0, Object *, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D6E70, DelayedActionManager_DelegateInfo, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__get_Current, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC620, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_DynamicResolutionHandler_ScalerContainer___ctor, (Array_InternalEnumerator_1_UnityEngine_Rendering_DynamicResolutionHandler_ScalerContainer_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Rendering_DynamicResolutionHandler_ScalerContainer__Dispose, (Array_InternalEnumerator_1_UnityEngine_Rendering_DynamicResolutionHandler_ScalerContainer_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Rendering_DynamicResolutionHandler_ScalerContainer__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Rendering_DynamicResolutionHandler_ScalerContainer_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_DynamicResolutionHandler_ScalerContainer__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Rendering_DynamicResolutionHandler_ScalerContainer_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D7200, Object *, Array_InternalEnumerator_1_UnityEngine_Rendering_DynamicResolutionHandler_ScalerContainer__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_DynamicResolutionHandler_ScalerContainer_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D7090, DynamicResolutionHandler_ScalerContainer, Array_InternalEnumerator_1_UnityEngine_Rendering_DynamicResolutionHandler_ScalerContainer__get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_DynamicResolutionHandler_ScalerContainer_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC610, Array_InternalEnumerator_1_UnityEngine_Rendering_DynamicResolutionHandler_ScalerContainer__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Photon_Bolt_EventDispatcher_CallbackWrapper___ctor, (Array_InternalEnumerator_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Photon_Bolt_EventDispatcher_CallbackWrapper__Dispose, (Array_InternalEnumerator_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Photon_Bolt_EventDispatcher_CallbackWrapper__MoveNext, (Array_InternalEnumerator_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Photon_Bolt_EventDispatcher_CallbackWrapper__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D7400, Object *, Array_InternalEnumerator_1_Photon_Bolt_EventDispatcher_CallbackWrapper__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D7290, EventDispatcher_CallbackWrapper, Array_InternalEnumerator_1_Photon_Bolt_EventDispatcher_CallbackWrapper__get_Current, (Array_InternalEnumerator_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC550, Array_InternalEnumerator_1_Photon_Bolt_EventDispatcher_CallbackWrapper__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Photon_Bolt_EventDispatcher_EventListener___ctor, (Array_InternalEnumerator_1_Photon_Bolt_EventDispatcher_EventListener_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Photon_Bolt_EventDispatcher_EventListener__Dispose, (Array_InternalEnumerator_1_Photon_Bolt_EventDispatcher_EventListener_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Photon_Bolt_EventDispatcher_EventListener__MoveNext, (Array_InternalEnumerator_1_Photon_Bolt_EventDispatcher_EventListener_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Photon_Bolt_EventDispatcher_EventListener__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Photon_Bolt_EventDispatcher_EventListener_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D7610, Object *, Array_InternalEnumerator_1_Photon_Bolt_EventDispatcher_EventListener__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Photon_Bolt_EventDispatcher_EventListener_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D7490, EventDispatcher_EventListener, Array_InternalEnumerator_1_Photon_Bolt_EventDispatcher_EventListener__get_Current, (Array_InternalEnumerator_1_Photon_Bolt_EventDispatcher_EventListener_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC548, Array_InternalEnumerator_1_Photon_Bolt_EventDispatcher_EventListener__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_DispatchContext___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_DispatchContext_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_DispatchContext__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_DispatchContext_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_DispatchContext__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_DispatchContext_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_DispatchContext__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_DispatchContext_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D7820, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_DispatchContext__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_DispatchContext_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D76B0, EventDispatcher_DispatchContext, Array_InternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_DispatchContext__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_DispatchContext_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC560, Array_InternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_DispatchContext__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_EventRecord___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_EventRecord_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_EventRecord__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_EventRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_EventRecord__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_EventRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_EventRecord__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_EventRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D7A20, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_EventRecord__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_EventRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D78B0, EventDispatcher_EventRecord, Array_InternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_EventRecord__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_EventRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCC558, Array_InternalEnumerator_1_UnityEngine_UIElements_EventDispatcher_EventRecord__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Dissonance_Networking_Client_EventQueue_NetworkEvent___ctor, (Array_InternalEnumerator_1_Dissonance_Networking_Client_EventQueue_NetworkEvent_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Dissonance_Networking_Client_EventQueue_NetworkEvent__Dispose, (Array_InternalEnumerator_1_Dissonance_Networking_Client_EventQueue_NetworkEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Dissonance_Networking_Client_EventQueue_NetworkEvent__MoveNext, (Array_InternalEnumerator_1_Dissonance_Networking_Client_EventQueue_NetworkEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Dissonance_Networking_Client_EventQueue_NetworkEvent__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Dissonance_Networking_Client_EventQueue_NetworkEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D7C80, Object *, Array_InternalEnumerator_1_Dissonance_Networking_Client_EventQueue_NetworkEvent__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Dissonance_Networking_Client_EventQueue_NetworkEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D7AB0, EventQueue_NetworkEvent, Array_InternalEnumerator_1_Dissonance_Networking_Client_EventQueue_NetworkEvent__get_Current, (Array_InternalEnumerator_1_Dissonance_Networking_Client_EventQueue_NetworkEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD09B8, Array_InternalEnumerator_1_Dissonance_Networking_Client_EventQueue_NetworkEvent__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Photon_Bolt_EventReliableRecvBuffer_Node___ctor, (Array_InternalEnumerator_1_Photon_Bolt_EventReliableRecvBuffer_Node_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Photon_Bolt_EventReliableRecvBuffer_Node__Dispose, (Array_InternalEnumerator_1_Photon_Bolt_EventReliableRecvBuffer_Node_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Photon_Bolt_EventReliableRecvBuffer_Node__MoveNext, (Array_InternalEnumerator_1_Photon_Bolt_EventReliableRecvBuffer_Node_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Photon_Bolt_EventReliableRecvBuffer_Node__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Photon_Bolt_EventReliableRecvBuffer_Node_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D7EF0, Object *, Array_InternalEnumerator_1_Photon_Bolt_EventReliableRecvBuffer_Node__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Photon_Bolt_EventReliableRecvBuffer_Node_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D7D70, EventReliableRecvBuffer_Node, Array_InternalEnumerator_1_Photon_Bolt_EventReliableRecvBuffer_Node__get_Current, (Array_InternalEnumerator_1_Photon_Bolt_EventReliableRecvBuffer_Node_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD09C8, Array_InternalEnumerator_1_Photon_Bolt_EventReliableRecvBuffer_Node__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Photon_Bolt_EventReliableSendBuffer_Node___ctor, (Array_InternalEnumerator_1_Photon_Bolt_EventReliableSendBuffer_Node_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Photon_Bolt_EventReliableSendBuffer_Node__Dispose, (Array_InternalEnumerator_1_Photon_Bolt_EventReliableSendBuffer_Node_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Photon_Bolt_EventReliableSendBuffer_Node__MoveNext, (Array_InternalEnumerator_1_Photon_Bolt_EventReliableSendBuffer_Node_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Photon_Bolt_EventReliableSendBuffer_Node__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Photon_Bolt_EventReliableSendBuffer_Node_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D8110, Object *, Array_InternalEnumerator_1_Photon_Bolt_EventReliableSendBuffer_Node__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Photon_Bolt_EventReliableSendBuffer_Node_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D7F90, EventReliableSendBuffer_Node, Array_InternalEnumerator_1_Photon_Bolt_EventReliableSendBuffer_Node__get_Current, (Array_InternalEnumerator_1_Photon_Bolt_EventReliableSendBuffer_Node_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD09C0, Array_InternalEnumerator_1_Photon_Bolt_EventReliableSendBuffer_Node__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_FocusController_FocusedElement___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_FocusController_FocusedElement_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_FocusController_FocusedElement__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_FocusController_FocusedElement_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_FocusController_FocusedElement__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_FocusController_FocusedElement_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_FocusController_FocusedElement__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_FocusController_FocusedElement_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D8320, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_FocusController_FocusedElement__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_FocusController_FocusedElement_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D81B0, FocusController_FocusedElement, Array_InternalEnumerator_1_UnityEngine_UIElements_FocusController_FocusedElement__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_FocusController_FocusedElement_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD09A0, Array_InternalEnumerator_1_UnityEngine_UIElements_FocusController_FocusedElement__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Pathfinding_Funnel_PathPart___ctor, (Array_InternalEnumerator_1_Pathfinding_Funnel_PathPart_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Pathfinding_Funnel_PathPart__Dispose, (Array_InternalEnumerator_1_Pathfinding_Funnel_PathPart_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Pathfinding_Funnel_PathPart__MoveNext, (Array_InternalEnumerator_1_Pathfinding_Funnel_PathPart_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Pathfinding_Funnel_PathPart__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Pathfinding_Funnel_PathPart_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D8530, Object *, Array_InternalEnumerator_1_Pathfinding_Funnel_PathPart__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Pathfinding_Funnel_PathPart_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D83B0, Funnel_PathPart, Array_InternalEnumerator_1_Pathfinding_Funnel_PathPart__get_Current, (Array_InternalEnumerator_1_Pathfinding_Funnel_PathPart_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0998, Array_InternalEnumerator_1_Pathfinding_Funnel_PathPart__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Pathfinding_GraphUpdateProcessor_GUOSingle___ctor, (Array_InternalEnumerator_1_Pathfinding_GraphUpdateProcessor_GUOSingle_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Pathfinding_GraphUpdateProcessor_GUOSingle__Dispose, (Array_InternalEnumerator_1_Pathfinding_GraphUpdateProcessor_GUOSingle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Pathfinding_GraphUpdateProcessor_GUOSingle__MoveNext, (Array_InternalEnumerator_1_Pathfinding_GraphUpdateProcessor_GUOSingle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Pathfinding_GraphUpdateProcessor_GUOSingle__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Pathfinding_GraphUpdateProcessor_GUOSingle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D8760, Object *, Array_InternalEnumerator_1_Pathfinding_GraphUpdateProcessor_GUOSingle__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Pathfinding_GraphUpdateProcessor_GUOSingle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D85E0, GraphUpdateProcessor_GUOSingle, Array_InternalEnumerator_1_Pathfinding_GraphUpdateProcessor_GUOSingle__get_Current, (Array_InternalEnumerator_1_Pathfinding_GraphUpdateProcessor_GUOSingle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD09B0, Array_InternalEnumerator_1_Pathfinding_GraphUpdateProcessor_GUOSingle__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D8980, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D8800, HID_HIDCollectionDescriptor, Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD09A8, Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D8BC0, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D8A20, HID_HIDElementDescriptor, Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0940, Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D8E00, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D8C80, HIDParser_HIDReportData, Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0938, Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D9010, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D8EA0, HIDSupport_HIDPageUsage, Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0950, Array_InternalEnumerator_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Rewired_HID_HIDTouchpad_TouchData___ctor, (Array_InternalEnumerator_1_Rewired_HID_HIDTouchpad_TouchData_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Rewired_HID_HIDTouchpad_TouchData__Dispose, (Array_InternalEnumerator_1_Rewired_HID_HIDTouchpad_TouchData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Rewired_HID_HIDTouchpad_TouchData__MoveNext, (Array_InternalEnumerator_1_Rewired_HID_HIDTouchpad_TouchData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Rewired_HID_HIDTouchpad_TouchData__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Rewired_HID_HIDTouchpad_TouchData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D9220, Object *, Array_InternalEnumerator_1_Rewired_HID_HIDTouchpad_TouchData__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Rewired_HID_HIDTouchpad_TouchData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D90A0, HIDTouchpad_TouchData, Array_InternalEnumerator_1_Rewired_HID_HIDTouchpad_TouchData__get_Current, (Array_InternalEnumerator_1_Rewired_HID_HIDTouchpad_TouchData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0948, Array_InternalEnumerator_1_Rewired_HID_HIDTouchpad_TouchData__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere___ctor, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere__Dispose, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere__MoveNext, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D9450, Object *, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D92D0, HairDesignerColliderBase_DualSphere, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere__get_Current, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0920, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_DualSphereCollider___ctor, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_DualSphereCollider_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_DualSphereCollider__Dispose, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_DualSphereCollider_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_DualSphereCollider__MoveNext, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_DualSphereCollider_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_DualSphereCollider__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_DualSphereCollider_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D9680, Object *, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_DualSphereCollider__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_DualSphereCollider_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D9500, HairDesignerGeneratorAdvancedFurBase_DualSphereCollider, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_DualSphereCollider__get_Current, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_DualSphereCollider_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0918, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_DualSphereCollider__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_SkinData___ctor, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_SkinData_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_SkinData__Dispose, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_SkinData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_SkinData__MoveNext, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_SkinData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_SkinData__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_SkinData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D98A0, Object *, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_SkinData__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_SkinData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D9720, HairDesignerGeneratorAdvancedFurBase_SkinData, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_SkinData__get_Current, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_SkinData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0930, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorAdvancedFurBase_SkinData__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData___ctor, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__Dispose, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__MoveNext, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D9AB0, Object *, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D9940, HairDesignerGeneratorFurShellBase_BufferData, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__get_Current, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0928, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_SkinData___ctor, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_SkinData_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_SkinData__Dispose, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_SkinData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_SkinData__MoveNext, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_SkinData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_SkinData__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_SkinData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D9CC0, Object *, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_SkinData__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_SkinData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D9B40, HairDesignerGeneratorFurShellBase_SkinData, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_SkinData__get_Current, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_SkinData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0980, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_SkinData__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq16___ctor, (Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq16_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq16__Dispose, (Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq16__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq16__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D9F40, Object *, Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq16__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016D9D60, Hammersley_Hammersley2dSeq16, Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq16__get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq16_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0978, Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq16__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq256___ctor, (Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq256_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq256__Dispose, (Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq256_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq256__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq256_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq256__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq256_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DA210, Object *, Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq256__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq256_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DA040, Hammersley_Hammersley2dSeq256, Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq256__get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq256_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0990, Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq256__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq32___ctor, (Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq32_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq32__Dispose, (Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq32__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq32__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DA4D0, Object *, Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq32__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DA2F0, Hammersley_Hammersley2dSeq32, Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq32__get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0988, Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq32__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq64___ctor, (Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq64_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq64__Dispose, (Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq64__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq64__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DA7B0, Object *, Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq64__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DA5D0, Hammersley_Hammersley2dSeq64, Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq64__get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq64_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0960, Array_InternalEnumerator_1_UnityEngine_Rendering_Hammersley_Hammersley2dSeq64__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Collections_Hashtable_bucket___ctor, (Array_InternalEnumerator_1_System_Collections_Hashtable_bucket_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Collections_Hashtable_bucket__Dispose, (Array_InternalEnumerator_1_System_Collections_Hashtable_bucket_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Collections_Hashtable_bucket__MoveNext, (Array_InternalEnumerator_1_System_Collections_Hashtable_bucket_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Collections_Hashtable_bucket__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Collections_Hashtable_bucket_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DAA30, Object *, Array_InternalEnumerator_1_System_Collections_Hashtable_bucket__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Collections_Hashtable_bucket_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DA8B0, Hashtable_bucket, Array_InternalEnumerator_1_System_Collections_Hashtable_bucket__get_Current, (Array_InternalEnumerator_1_System_Collections_Hashtable_bucket_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0958, Array_InternalEnumerator_1_System_Collections_Hashtable_bucket__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Cinemachine_Utility_HeadingTracker_Item___ctor, (Array_InternalEnumerator_1_Cinemachine_Utility_HeadingTracker_Item_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Cinemachine_Utility_HeadingTracker_Item__Dispose, (Array_InternalEnumerator_1_Cinemachine_Utility_HeadingTracker_Item_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Cinemachine_Utility_HeadingTracker_Item__MoveNext, (Array_InternalEnumerator_1_Cinemachine_Utility_HeadingTracker_Item_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Cinemachine_Utility_HeadingTracker_Item__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Cinemachine_Utility_HeadingTracker_Item_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DAC50, Object *, Array_InternalEnumerator_1_Cinemachine_Utility_HeadingTracker_Item__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Cinemachine_Utility_HeadingTracker_Item_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DAAD0, HeadingTracker_Item, Array_InternalEnumerator_1_Cinemachine_Utility_HeadingTracker_Item__get_Current, (Array_InternalEnumerator_1_Cinemachine_Utility_HeadingTracker_Item_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0970, Array_InternalEnumerator_1_Cinemachine_Utility_HeadingTracker_Item__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_UI_HealthFlashMonitor_Flash___ctor, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_UI_HealthFlashMonitor_Flash_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_UI_HealthFlashMonitor_Flash__Dispose, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_UI_HealthFlashMonitor_Flash_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_UI_HealthFlashMonitor_Flash__MoveNext, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_UI_HealthFlashMonitor_Flash_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_UI_HealthFlashMonitor_Flash__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_UI_HealthFlashMonitor_Flash_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DAE80, Object *, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_UI_HealthFlashMonitor_Flash__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_UI_HealthFlashMonitor_Flash_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DACF0, HealthFlashMonitor_Flash, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_UI_HealthFlashMonitor_Flash__get_Current, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_UI_HealthFlashMonitor_Flash_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0968, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_UI_HealthFlashMonitor_Flash__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Globalization_HebrewNumber_HebrewValue___ctor, (Array_InternalEnumerator_1_System_Globalization_HebrewNumber_HebrewValue_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Globalization_HebrewNumber_HebrewValue__Dispose, (Array_InternalEnumerator_1_System_Globalization_HebrewNumber_HebrewValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Globalization_HebrewNumber_HebrewValue__MoveNext, (Array_InternalEnumerator_1_System_Globalization_HebrewNumber_HebrewValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Globalization_HebrewNumber_HebrewValue__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Globalization_HebrewNumber_HebrewValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DB0A0, Object *, Array_InternalEnumerator_1_System_Globalization_HebrewNumber_HebrewValue__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Globalization_HebrewNumber_HebrewValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DAF30, HebrewNumber_HebrewValue, Array_InternalEnumerator_1_System_Globalization_HebrewNumber_HebrewValue__get_Current, (Array_InternalEnumerator_1_System_Globalization_HebrewNumber_HebrewValue_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD08C0, Array_InternalEnumerator_1_System_Globalization_HebrewNumber_HebrewValue__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingJson___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingJson_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingJson__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingJson_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingJson__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingJson_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingJson__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingJson_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DB2C0, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingJson__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingJson_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DB130, InputActionMap_BindingJson, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingJson__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingJson_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD08B8, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingJson__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DB510, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DB380, InputActionMap_BindingOverrideJson, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD08D0, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadActionJson___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadActionJson_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadActionJson__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadActionJson_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadActionJson__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadActionJson_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadActionJson__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadActionJson_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DB760, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadActionJson__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadActionJson_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DB5C0, InputActionMap_ReadActionJson, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadActionJson__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadActionJson_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD08C8, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadActionJson__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadMapJson___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadMapJson_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadMapJson__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadMapJson_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadMapJson__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadMapJson_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadMapJson__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadMapJson_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DB9A0, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadMapJson__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadMapJson_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DB820, InputActionMap_ReadMapJson, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadMapJson__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadMapJson_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD08A0, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_ReadMapJson__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteActionJson___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteActionJson_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteActionJson__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteActionJson_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteActionJson__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteActionJson_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteActionJson__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteActionJson_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DBBD0, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteActionJson__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteActionJson_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DBA40, InputActionMap_WriteActionJson, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteActionJson__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteActionJson_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0898, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteActionJson__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteMapJson___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteMapJson_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteMapJson__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteMapJson_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteMapJson__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteMapJson_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteMapJson__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteMapJson_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DBE10, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteMapJson__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteMapJson_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DBC90, InputActionMap_WriteMapJson, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteMapJson__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteMapJson_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD08B0, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionMap_WriteMapJson__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_Parameter___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_Parameter_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_Parameter__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_Parameter_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_Parameter__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_Parameter_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_Parameter__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_Parameter_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DC030, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_Parameter__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_Parameter_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DBEB0, InputActionRebindingExtensions_Parameter, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_Parameter__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_Parameter_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD08A8, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_Parameter__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DC290, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DC0D0, InputActionRebindingExtensions_ParameterOverride, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0900, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_InputActionTrace_ActionEventPtr___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_InputActionTrace_ActionEventPtr_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_InputActionTrace_ActionEventPtr__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_InputActionTrace_ActionEventPtr_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_InputActionTrace_ActionEventPtr__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_InputActionTrace_ActionEventPtr_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_InputActionTrace_ActionEventPtr__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_InputActionTrace_ActionEventPtr_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DC4F0, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_InputActionTrace_ActionEventPtr__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_InputActionTrace_ActionEventPtr_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DC380, InputActionTrace_ActionEventPtr, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_InputActionTrace_ActionEventPtr__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_InputActionTrace_ActionEventPtr_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD08F8, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_InputActionTrace_ActionEventPtr__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputBindingCompositeContext_PartBinding___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputBindingCompositeContext_PartBinding_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputBindingCompositeContext_PartBinding__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputBindingCompositeContext_PartBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputBindingCompositeContext_PartBinding__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputBindingCompositeContext_PartBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputBindingCompositeContext_PartBinding__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputBindingCompositeContext_PartBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DC6F0, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputBindingCompositeContext_PartBinding__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputBindingCompositeContext_PartBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DC580, InputBindingCompositeContext_PartBinding, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputBindingCompositeContext_PartBinding__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputBindingCompositeContext_PartBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0910, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputBindingCompositeContext_PartBinding__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DC970, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DC780, InputControlLayout_ControlItem, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0908, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlPath_ParsedPathComponent___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlPath_ParsedPathComponent_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlPath_ParsedPathComponent__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlPath_ParsedPathComponent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlPath_ParsedPathComponent__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlPath_ParsedPathComponent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlPath_ParsedPathComponent__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlPath_ParsedPathComponent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DCC30, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlPath_ParsedPathComponent__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlPath_ParsedPathComponent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DCA90, InputControlPath_ParsedPathComponent, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlPath_ParsedPathComponent__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlPath_ParsedPathComponent_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD08E0, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlPath_ParsedPathComponent__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DCE60, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DCCF0, InputControlScheme_DeviceRequirement, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD08D8, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DD070, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DCEF0, InputControlScheme_SchemeJson, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD08F0, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputDevice_ControlBitRangeNode___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputDevice_ControlBitRangeNode_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputDevice_ControlBitRangeNode__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputDevice_ControlBitRangeNode_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputDevice_ControlBitRangeNode__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputDevice_ControlBitRangeNode_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputDevice_ControlBitRangeNode__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputDevice_ControlBitRangeNode_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DD290, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputDevice_ControlBitRangeNode__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputDevice_ControlBitRangeNode_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DD110, InputDevice_ControlBitRangeNode, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputDevice_ControlBitRangeNode__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputDevice_ControlBitRangeNode_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD08E8, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputDevice_ControlBitRangeNode__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DD4B0, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DD330, InputEventTrace_DeviceInfo, Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0840, Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_AvailableDevice___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_AvailableDevice_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_AvailableDevice__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_AvailableDevice_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_AvailableDevice__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_AvailableDevice_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_AvailableDevice__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_AvailableDevice_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DD6E0, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_AvailableDevice__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_AvailableDevice_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DD550, InputManager_AvailableDevice, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_AvailableDevice__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_AvailableDevice_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0838, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_AvailableDevice__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorListener___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorListener_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorListener__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorListener_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorListener__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorListener_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorListener__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorListener_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DD920, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorListener__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorListener_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DD7A0, InputManager_StateChangeMonitorListener, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorListener__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorListener_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0850, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorListener__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DDB50, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DD9C0, InputManager_StateChangeMonitorTimeout, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0848, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorsForDevice___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorsForDevice_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorsForDevice__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorsForDevice_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorsForDevice__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorsForDevice_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorsForDevice__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorsForDevice_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DDD90, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorsForDevice__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorsForDevice_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DDC00, InputManager_StateChangeMonitorsForDevice, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorsForDevice__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorsForDevice_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0820, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorsForDevice__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteInputDevice___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteInputDevice_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteInputDevice__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteInputDevice_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteInputDevice__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteInputDevice_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteInputDevice__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteInputDevice_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DDFE0, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteInputDevice__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteInputDevice_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DDE50, InputRemoting_RemoteInputDevice, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteInputDevice__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteInputDevice_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0818, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteInputDevice__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteSender___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteSender_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteSender__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteSender_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteSender__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteSender_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteSender__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteSender_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DE220, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteSender__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteSender_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DE0A0, InputRemoting_RemoteSender, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteSender__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteSender_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0830, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputRemoting_RemoteSender__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_Record___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_Record_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_Record__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_Record_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_Record__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_Record_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_Record__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_Record_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DE430, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_Record__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_Record_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DE2C0, InputStateHistory_Record, Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_Record__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_Record_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0828, Array_InternalEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_Record__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DE630, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DE4C0, InputSystemUIInputModule_InputActionReferenceState, Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0880, Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DE830, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DE6C0, InputUser_OngoingAccountSelection, Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0878, Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_UserData___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_UserData_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_UserData__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_UserData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_UserData__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_UserData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_UserData__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_UserData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DEAB0, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_UserData__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_UserData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DE8C0, InputUser_UserData, Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_UserData__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_UserData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0890, Array_InternalEnumerator_1_UnityEngine_InputSystem_Users_InputUser_UserData__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DED30, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DEBC0, InternalTreeView_TreeViewItemWrapper, Array_InternalEnumerator_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0888, Array_InternalEnumerator_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_BehaviorDesigner_Runtime_JSONDeserialization_TaskField___ctor, (Array_InternalEnumerator_1_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_BehaviorDesigner_Runtime_JSONDeserialization_TaskField__Dispose, (Array_InternalEnumerator_1_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_BehaviorDesigner_Runtime_JSONDeserialization_TaskField__MoveNext, (Array_InternalEnumerator_1_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_BehaviorDesigner_Runtime_JSONDeserialization_TaskField__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DEF30, Object *, Array_InternalEnumerator_1_BehaviorDesigner_Runtime_JSONDeserialization_TaskField__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DEDC0, JSONDeserialization_TaskField, Array_InternalEnumerator_1_BehaviorDesigner_Runtime_JSONDeserialization_TaskField__get_Current, (Array_InternalEnumerator_1_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0860, Array_InternalEnumerator_1_BehaviorDesigner_Runtime_JSONDeserialization_TaskField__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV___ctor, (Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__Dispose, (Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__MoveNext, (Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DF130, Object *, Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DEFC0, JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV, Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__get_Current, (Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0858, Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb___ctor, (Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__Dispose, (Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__MoveNext, (Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DF360, Object *, Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DF1C0, JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb, Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__get_Current, (Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0870, Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux___ctor, (Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__Dispose, (Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__MoveNext, (Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DF590, Object *, Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DF420, JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux, Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__get_Current, (Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0868, Array_InternalEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DF7C0, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DF620, JsonParser_JsonValue, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD07C0, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Pathfinding_LayerGridGraph_HeightSample___ctor, (Array_InternalEnumerator_1_Pathfinding_LayerGridGraph_HeightSample_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Pathfinding_LayerGridGraph_HeightSample__Dispose, (Array_InternalEnumerator_1_Pathfinding_LayerGridGraph_HeightSample_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Pathfinding_LayerGridGraph_HeightSample__MoveNext, (Array_InternalEnumerator_1_Pathfinding_LayerGridGraph_HeightSample_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Pathfinding_LayerGridGraph_HeightSample__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Pathfinding_LayerGridGraph_HeightSample_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DFA10, Object *, Array_InternalEnumerator_1_Pathfinding_LayerGridGraph_HeightSample__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Pathfinding_LayerGridGraph_HeightSample_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DF880, LayerGridGraph_HeightSample, Array_InternalEnumerator_1_Pathfinding_LayerGridGraph_HeightSample__get_Current, (Array_InternalEnumerator_1_Pathfinding_LayerGridGraph_HeightSample_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD07B8, Array_InternalEnumerator_1_Pathfinding_LayerGridGraph_HeightSample__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Dissonance_Logs_LogMessage___ctor, (Array_InternalEnumerator_1_Dissonance_Logs_LogMessage_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Dissonance_Logs_LogMessage__Dispose, (Array_InternalEnumerator_1_Dissonance_Logs_LogMessage_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Dissonance_Logs_LogMessage__MoveNext, (Array_InternalEnumerator_1_Dissonance_Logs_LogMessage_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Dissonance_Logs_LogMessage__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Dissonance_Logs_LogMessage_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DFC40, Object *, Array_InternalEnumerator_1_Dissonance_Logs_LogMessage__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Dissonance_Logs_LogMessage_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DFAD0, Logs_LogMessage_1, Array_InternalEnumerator_1_Dissonance_Logs_LogMessage__get_Current, (Array_InternalEnumerator_1_Dissonance_Logs_LogMessage_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD07D0, Array_InternalEnumerator_1_Dissonance_Logs_LogMessage__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage___ctor, (Array_InternalEnumerator_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__Dispose, (Array_InternalEnumerator_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__MoveNext, (Array_InternalEnumerator_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DFE40, Object *, Array_InternalEnumerator_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DFCD0, Logs_LogMessage, Array_InternalEnumerator_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__get_Current, (Array_InternalEnumerator_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD07C8, Array_InternalEnumerator_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_MagicLightProbes_MagicLightProbes_VolumeParameters___ctor, (Array_InternalEnumerator_1_MagicLightProbes_MagicLightProbes_VolumeParameters_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_MagicLightProbes_MagicLightProbes_VolumeParameters__Dispose, (Array_InternalEnumerator_1_MagicLightProbes_MagicLightProbes_VolumeParameters_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_MagicLightProbes_MagicLightProbes_VolumeParameters__MoveNext, (Array_InternalEnumerator_1_MagicLightProbes_MagicLightProbes_VolumeParameters_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_MagicLightProbes_MagicLightProbes_VolumeParameters__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_MagicLightProbes_MagicLightProbes_VolumeParameters_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E0050, Object *, Array_InternalEnumerator_1_MagicLightProbes_MagicLightProbes_VolumeParameters__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_MagicLightProbes_MagicLightProbes_VolumeParameters_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016DFED0, MagicLightProbes_VolumeParameters, Array_InternalEnumerator_1_MagicLightProbes_MagicLightProbes_VolumeParameters__get_Current, (Array_InternalEnumerator_1_MagicLightProbes_MagicLightProbes_VolumeParameters_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD07A0, Array_InternalEnumerator_1_MagicLightProbes_MagicLightProbes_VolumeParameters__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Net_Mail_MailHeaderInfo_HeaderInfo___ctor, (Array_InternalEnumerator_1_System_Net_Mail_MailHeaderInfo_HeaderInfo_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Net_Mail_MailHeaderInfo_HeaderInfo__Dispose, (Array_InternalEnumerator_1_System_Net_Mail_MailHeaderInfo_HeaderInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Net_Mail_MailHeaderInfo_HeaderInfo__MoveNext, (Array_InternalEnumerator_1_System_Net_Mail_MailHeaderInfo_HeaderInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Net_Mail_MailHeaderInfo_HeaderInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Net_Mail_MailHeaderInfo_HeaderInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E0270, Object *, Array_InternalEnumerator_1_System_Net_Mail_MailHeaderInfo_HeaderInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Net_Mail_MailHeaderInfo_HeaderInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E00F0, MailHeaderInfo_HeaderInfo, Array_InternalEnumerator_1_System_Net_Mail_MailHeaderInfo_HeaderInfo__get_Current, (Array_InternalEnumerator_1_System_Net_Mail_MailHeaderInfo_HeaderInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0798, Array_InternalEnumerator_1_System_Net_Mail_MailHeaderInfo_HeaderInfo__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___ctor, (Array_InternalEnumerator_1_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__Dispose, (Array_InternalEnumerator_1_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__MoveNext, (Array_InternalEnumerator_1_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E0490, Object *, Array_InternalEnumerator_1_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E0310, MemberRelationshipService_RelationshipEntry, Array_InternalEnumerator_1_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__get_Current, (Array_InternalEnumerator_1_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD07B0, Array_InternalEnumerator_1_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_MemoryHelpers_BitRegion___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_MemoryHelpers_BitRegion_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_MemoryHelpers_BitRegion__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_MemoryHelpers_BitRegion_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_MemoryHelpers_BitRegion__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_MemoryHelpers_BitRegion_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_MemoryHelpers_BitRegion__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_MemoryHelpers_BitRegion_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E06A0, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_MemoryHelpers_BitRegion__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_MemoryHelpers_BitRegion_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E0530, MemoryHelpers_BitRegion, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_MemoryHelpers_BitRegion__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_MemoryHelpers_BitRegion_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD07A8, Array_InternalEnumerator_1_UnityEngine_InputSystem_Utilities_MemoryHelpers_BitRegion__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData___ctor, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData__Dispose, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData__MoveNext, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E08C0, Object *, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E0730, MotionSolver_GPUNodeData, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData__get_Current, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0800, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo___ctor, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo__Dispose, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo__MoveNext, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E0B00, Object *, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E0970, MotionSolver_GPUNodeInfo, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo__get_Current, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD07F8, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPURootTransform___ctor, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPURootTransform_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPURootTransform__Dispose, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPURootTransform_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPURootTransform__MoveNext, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPURootTransform_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPURootTransform__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPURootTransform_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E0D90, Object *, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPURootTransform__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPURootTransform_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E0BC0, MotionSolver_GPURootTransform, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPURootTransform__get_Current, (Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPURootTransform_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0810, Array_InternalEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPURootTransform__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_Waypoint___ctor, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_Waypoint_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_Waypoint__Dispose, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_Waypoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_Waypoint__MoveNext, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_Waypoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_Waypoint__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_Waypoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E1010, Object *, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_Waypoint__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_Waypoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E0E90, MovingPlatform_Waypoint, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_Waypoint__get_Current, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_Waypoint_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0808, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_Waypoint__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_NightmareStyling_WallMaterial___ctor, (Array_InternalEnumerator_1_NightmareStyling_WallMaterial_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_NightmareStyling_WallMaterial__Dispose, (Array_InternalEnumerator_1_NightmareStyling_WallMaterial_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_NightmareStyling_WallMaterial__MoveNext, (Array_InternalEnumerator_1_NightmareStyling_WallMaterial_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_NightmareStyling_WallMaterial__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_NightmareStyling_WallMaterial_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E1220, Object *, Array_InternalEnumerator_1_NightmareStyling_WallMaterial__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_NightmareStyling_WallMaterial_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E10B0, NightmareStyling_WallMaterial, Array_InternalEnumerator_1_NightmareStyling_WallMaterial__get_Current, (Array_InternalEnumerator_1_NightmareStyling_WallMaterial_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD07E0, Array_InternalEnumerator_1_NightmareStyling_WallMaterial__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Cinemachine_NoiseSettings_TransformNoiseParams___ctor, (Array_InternalEnumerator_1_Cinemachine_NoiseSettings_TransformNoiseParams_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Cinemachine_NoiseSettings_TransformNoiseParams__Dispose, (Array_InternalEnumerator_1_Cinemachine_NoiseSettings_TransformNoiseParams_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Cinemachine_NoiseSettings_TransformNoiseParams__MoveNext, (Array_InternalEnumerator_1_Cinemachine_NoiseSettings_TransformNoiseParams_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Cinemachine_NoiseSettings_TransformNoiseParams__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Cinemachine_NoiseSettings_TransformNoiseParams_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E1430, Object *, Array_InternalEnumerator_1_Cinemachine_NoiseSettings_TransformNoiseParams__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Cinemachine_NoiseSettings_TransformNoiseParams_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E12B0, NoiseSettings_TransformNoiseParams, Array_InternalEnumerator_1_Cinemachine_NoiseSettings_TransformNoiseParams__get_Current, (Array_InternalEnumerator_1_Cinemachine_NoiseSettings_TransformNoiseParams_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD07D8, Array_InternalEnumerator_1_Cinemachine_NoiseSettings_TransformNoiseParams__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_NolanBehaviour_OverlappedCollider___ctor, (Array_InternalEnumerator_1_NolanBehaviour_OverlappedCollider_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_NolanBehaviour_OverlappedCollider__Dispose, (Array_InternalEnumerator_1_NolanBehaviour_OverlappedCollider_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_NolanBehaviour_OverlappedCollider__MoveNext, (Array_InternalEnumerator_1_NolanBehaviour_OverlappedCollider_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_NolanBehaviour_OverlappedCollider__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_NolanBehaviour_OverlappedCollider_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E1650, Object *, Array_InternalEnumerator_1_NolanBehaviour_OverlappedCollider__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_NolanBehaviour_OverlappedCollider_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E14E0, NolanBehaviour_OverlappedCollider, Array_InternalEnumerator_1_NolanBehaviour_OverlappedCollider__get_Current, (Array_InternalEnumerator_1_NolanBehaviour_OverlappedCollider_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD07F0, Array_InternalEnumerator_1_NolanBehaviour_OverlappedCollider__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Opsive_Shared_Game_ObjectPoolBase_PreloadedPrefab___ctor, (Array_InternalEnumerator_1_Opsive_Shared_Game_ObjectPoolBase_PreloadedPrefab_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Opsive_Shared_Game_ObjectPoolBase_PreloadedPrefab__Dispose, (Array_InternalEnumerator_1_Opsive_Shared_Game_ObjectPoolBase_PreloadedPrefab_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Opsive_Shared_Game_ObjectPoolBase_PreloadedPrefab__MoveNext, (Array_InternalEnumerator_1_Opsive_Shared_Game_ObjectPoolBase_PreloadedPrefab_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Opsive_Shared_Game_ObjectPoolBase_PreloadedPrefab__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Opsive_Shared_Game_ObjectPoolBase_PreloadedPrefab_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E1850, Object *, Array_InternalEnumerator_1_Opsive_Shared_Game_ObjectPoolBase_PreloadedPrefab__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Opsive_Shared_Game_ObjectPoolBase_PreloadedPrefab_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E16E0, ObjectPoolBase_PreloadedPrefab, Array_InternalEnumerator_1_Opsive_Shared_Game_ObjectPoolBase_PreloadedPrefab__get_Current, (Array_InternalEnumerator_1_Opsive_Shared_Game_ObjectPoolBase_PreloadedPrefab_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD07E8, Array_InternalEnumerator_1_Opsive_Shared_Game_ObjectPoolBase_PreloadedPrefab__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E1A70, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E18E0, OnScreenControl_OnScreenDeviceInfo, Array_InternalEnumerator_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0740, Array_InternalEnumerator_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding___ctor, (Array_InternalEnumerator_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__Dispose, (Array_InternalEnumerator_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__MoveNext, (Array_InternalEnumerator_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E1C90, Object *, Array_InternalEnumerator_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E1B20, OpenXRInput_SerializedBinding, Array_InternalEnumerator_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__get_Current, (Array_InternalEnumerator_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0738, Array_InternalEnumerator_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_PackedPlayModeBuildLogs_RuntimeBuildLog___ctor, (Array_InternalEnumerator_1_PackedPlayModeBuildLogs_RuntimeBuildLog_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_PackedPlayModeBuildLogs_RuntimeBuildLog__Dispose, (Array_InternalEnumerator_1_PackedPlayModeBuildLogs_RuntimeBuildLog_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_PackedPlayModeBuildLogs_RuntimeBuildLog__MoveNext, (Array_InternalEnumerator_1_PackedPlayModeBuildLogs_RuntimeBuildLog_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_PackedPlayModeBuildLogs_RuntimeBuildLog__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_PackedPlayModeBuildLogs_RuntimeBuildLog_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E1E90, Object *, Array_InternalEnumerator_1_PackedPlayModeBuildLogs_RuntimeBuildLog__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_PackedPlayModeBuildLogs_RuntimeBuildLog_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E1D20, PackedPlayModeBuildLogs_RuntimeBuildLog, Array_InternalEnumerator_1_PackedPlayModeBuildLogs_RuntimeBuildLog__get_Current, (Array_InternalEnumerator_1_PackedPlayModeBuildLogs_RuntimeBuildLog_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0750, Array_InternalEnumerator_1_PackedPlayModeBuildLogs_RuntimeBuildLog__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_ParameterizedStrings_FormatParam___ctor, (Array_InternalEnumerator_1_ParameterizedStrings_FormatParam_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_ParameterizedStrings_FormatParam__Dispose, (Array_InternalEnumerator_1_ParameterizedStrings_FormatParam_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_ParameterizedStrings_FormatParam__MoveNext, (Array_InternalEnumerator_1_ParameterizedStrings_FormatParam_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_ParameterizedStrings_FormatParam__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_ParameterizedStrings_FormatParam_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E2090, Object *, Array_InternalEnumerator_1_ParameterizedStrings_FormatParam__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_ParameterizedStrings_FormatParam_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E1F20, ParameterizedStrings_FormatParam, Array_InternalEnumerator_1_ParameterizedStrings_FormatParam__get_Current, (Array_InternalEnumerator_1_ParameterizedStrings_FormatParam_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0748, Array_InternalEnumerator_1_ParameterizedStrings_FormatParam__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_ParticleSystem_Particle___ctor, (Array_InternalEnumerator_1_UnityEngine_ParticleSystem_Particle_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_ParticleSystem_Particle__Dispose, (Array_InternalEnumerator_1_UnityEngine_ParticleSystem_Particle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_ParticleSystem_Particle__MoveNext, (Array_InternalEnumerator_1_UnityEngine_ParticleSystem_Particle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_ParticleSystem_Particle__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_ParticleSystem_Particle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E22E0, Object *, Array_InternalEnumerator_1_UnityEngine_ParticleSystem_Particle__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_ParticleSystem_Particle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E2120, ParticleSystem_Particle, Array_InternalEnumerator_1_UnityEngine_ParticleSystem_Particle__get_Current, (Array_InternalEnumerator_1_UnityEngine_ParticleSystem_Particle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0720, Array_InternalEnumerator_1_UnityEngine_ParticleSystem_Particle__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_PlayerStatsController_Category___ctor, (Array_InternalEnumerator_1_PlayerStatsController_Category_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_PlayerStatsController_Category__Dispose, (Array_InternalEnumerator_1_PlayerStatsController_Category_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_PlayerStatsController_Category__MoveNext, (Array_InternalEnumerator_1_PlayerStatsController_Category_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_PlayerStatsController_Category__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_PlayerStatsController_Category_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E2550, Object *, Array_InternalEnumerator_1_PlayerStatsController_Category__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_PlayerStatsController_Category_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E23D0, PlayerStatsController_Category, Array_InternalEnumerator_1_PlayerStatsController_Category__get_Current, (Array_InternalEnumerator_1_PlayerStatsController_Category_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0718, Array_InternalEnumerator_1_PlayerStatsController_Category__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Pathfinding_PointKDTree_Node___ctor, (Array_InternalEnumerator_1_Pathfinding_PointKDTree_Node_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Pathfinding_PointKDTree_Node__Dispose, (Array_InternalEnumerator_1_Pathfinding_PointKDTree_Node_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Pathfinding_PointKDTree_Node__MoveNext, (Array_InternalEnumerator_1_Pathfinding_PointKDTree_Node_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Pathfinding_PointKDTree_Node__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Pathfinding_PointKDTree_Node_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E2760, Object *, Array_InternalEnumerator_1_Pathfinding_PointKDTree_Node__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Pathfinding_PointKDTree_Node_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E25F0, PointKDTree_Node, Array_InternalEnumerator_1_Pathfinding_PointKDTree_Node__get_Current, (Array_InternalEnumerator_1_Pathfinding_PointKDTree_Node_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0730, Array_InternalEnumerator_1_Pathfinding_PointKDTree_Node__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_PointerDeviceState_PointerLocation___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_PointerDeviceState_PointerLocation_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_PointerDeviceState_PointerLocation__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_PointerDeviceState_PointerLocation_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_PointerDeviceState_PointerLocation__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_PointerDeviceState_PointerLocation_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_PointerDeviceState_PointerLocation__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_PointerDeviceState_PointerLocation_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E2970, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_PointerDeviceState_PointerLocation__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_PointerDeviceState_PointerLocation_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E27F0, PointerDeviceState_PointerLocation, Array_InternalEnumerator_1_UnityEngine_UIElements_PointerDeviceState_PointerLocation__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_PointerDeviceState_PointerLocation_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0728, Array_InternalEnumerator_1_UnityEngine_UIElements_PointerDeviceState_PointerLocation__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick___ctor, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick__Dispose, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E2B80, Object *, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E2A10, ProbeBrickIndex_Brick, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick__get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0780, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta___ctor, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__Dispose, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E2D80, Object *, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E2C10, ProbeBrickIndex_BrickMeta, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0778, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo___ctor, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__Dispose, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E2FA0, Object *, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E2E10, ProbeBrickIndex_CellIndexUpdateInfo, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0790, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick___ctor, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick__Dispose, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E31D0, Object *, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E3050, ProbeBrickIndex_ReservedBrick, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick__get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0788, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta___ctor, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta__Dispose, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E33E0, Object *, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E3270, ProbeBrickIndex_VoxelMeta, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta__get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0760, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc___ctor, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__Dispose, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E35F0, Object *, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E3470, ProbeBrickPool_BrickChunkAlloc, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0758, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___ctor, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__Dispose, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E3800, Object *, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E3690, ProbeReferenceVolume_RegId, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0770, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume___ctor, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume__Dispose, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E3A20, Object *, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E3890, ProbeReferenceVolume_Volume, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume__get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0768, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem___ctor, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem__Dispose, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E3C50, Object *, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E3AE0, ProbeVolumePerSceneData_SerializableAssetItem, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem__get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD06C0, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem___ctor, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem__Dispose, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E3E60, Object *, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E3CE0, ProbeVolumeSceneData_SerializableBoundItem, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem__get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD06B8, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem___ctor, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem__Dispose, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E4070, Object *, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E3F00, ProbeVolumeSceneData_SerializableHasPVItem, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem__get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD06D0, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings___ctor, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings__Dispose, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E4290, Object *, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E4100, ProbeVolumeSceneData_SerializablePVBakeSettings, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings__get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD06C8, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile___ctor, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile__Dispose, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E44B0, Object *, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E4340, ProbeVolumeSceneData_SerializablePVProfile, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile__get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD06A0, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UdpKit_Protocol_ProtocolClient_AckCallback___ctor, (Array_InternalEnumerator_1_UdpKit_Protocol_ProtocolClient_AckCallback_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UdpKit_Protocol_ProtocolClient_AckCallback__Dispose, (Array_InternalEnumerator_1_UdpKit_Protocol_ProtocolClient_AckCallback_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UdpKit_Protocol_ProtocolClient_AckCallback__MoveNext, (Array_InternalEnumerator_1_UdpKit_Protocol_ProtocolClient_AckCallback_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UdpKit_Protocol_ProtocolClient_AckCallback__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UdpKit_Protocol_ProtocolClient_AckCallback_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E46D0, Object *, Array_InternalEnumerator_1_UdpKit_Protocol_ProtocolClient_AckCallback__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UdpKit_Protocol_ProtocolClient_AckCallback_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E4540, ProtocolClient_AckCallback, Array_InternalEnumerator_1_UdpKit_Protocol_ProtocolClient_AckCallback__get_Current, (Array_InternalEnumerator_1_UdpKit_Protocol_ProtocolClient_AckCallback_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0698, Array_InternalEnumerator_1_UdpKit_Protocol_ProtocolClient_AckCallback__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UdpKit_Protocol_ProtocolClient_MsgHandler___ctor, (Array_InternalEnumerator_1_UdpKit_Protocol_ProtocolClient_MsgHandler_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UdpKit_Protocol_ProtocolClient_MsgHandler__Dispose, (Array_InternalEnumerator_1_UdpKit_Protocol_ProtocolClient_MsgHandler_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UdpKit_Protocol_ProtocolClient_MsgHandler__MoveNext, (Array_InternalEnumerator_1_UdpKit_Protocol_ProtocolClient_MsgHandler_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UdpKit_Protocol_ProtocolClient_MsgHandler__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UdpKit_Protocol_ProtocolClient_MsgHandler_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E4910, Object *, Array_InternalEnumerator_1_UdpKit_Protocol_ProtocolClient_MsgHandler__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UdpKit_Protocol_ProtocolClient_MsgHandler_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E4780, ProtocolClient_MsgHandler, Array_InternalEnumerator_1_UdpKit_Protocol_ProtocolClient_MsgHandler__get_Current, (Array_InternalEnumerator_1_UdpKit_Protocol_ProtocolClient_MsgHandler_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD06B0, Array_InternalEnumerator_1_UdpKit_Protocol_ProtocolClient_MsgHandler__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Pathfinding_RVO_RVOQuadtree_Node___ctor, (Array_InternalEnumerator_1_Pathfinding_RVO_RVOQuadtree_Node_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Pathfinding_RVO_RVOQuadtree_Node__Dispose, (Array_InternalEnumerator_1_Pathfinding_RVO_RVOQuadtree_Node_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Pathfinding_RVO_RVOQuadtree_Node__MoveNext, (Array_InternalEnumerator_1_Pathfinding_RVO_RVOQuadtree_Node_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Pathfinding_RVO_RVOQuadtree_Node__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Pathfinding_RVO_RVOQuadtree_Node_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E4B40, Object *, Array_InternalEnumerator_1_Pathfinding_RVO_RVOQuadtree_Node__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Pathfinding_RVO_RVOQuadtree_Node_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E49C0, RVOQuadtree_Node, Array_InternalEnumerator_1_Pathfinding_RVO_RVOQuadtree_Node__get_Current, (Array_InternalEnumerator_1_Pathfinding_RVO_RVOQuadtree_Node_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD06A8, Array_InternalEnumerator_1_Pathfinding_RVO_RVOQuadtree_Node__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Text_RegularExpressions_Regex_CachedCodeEntryKey___ctor, (Array_InternalEnumerator_1_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Text_RegularExpressions_Regex_CachedCodeEntryKey__Dispose, (Array_InternalEnumerator_1_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Text_RegularExpressions_Regex_CachedCodeEntryKey__MoveNext, (Array_InternalEnumerator_1_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Text_RegularExpressions_Regex_CachedCodeEntryKey__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E4D60, Object *, Array_InternalEnumerator_1_System_Text_RegularExpressions_Regex_CachedCodeEntryKey__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E4BE0, Regex_CachedCodeEntryKey, Array_InternalEnumerator_1_System_Text_RegularExpressions_Regex_CachedCodeEntryKey__get_Current, (Array_InternalEnumerator_1_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0700, Array_InternalEnumerator_1_System_Text_RegularExpressions_Regex_CachedCodeEntryKey__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_LowerCaseMapping___ctor, (Array_InternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_LowerCaseMapping_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_LowerCaseMapping__Dispose, (Array_InternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_LowerCaseMapping_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_LowerCaseMapping__MoveNext, (Array_InternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_LowerCaseMapping_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_LowerCaseMapping__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_LowerCaseMapping_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E4F80, Object *, Array_InternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_LowerCaseMapping__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_LowerCaseMapping_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E4E00, RegexCharClass_LowerCaseMapping, Array_InternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_LowerCaseMapping__get_Current, (Array_InternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_LowerCaseMapping_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD06F8, Array_InternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_LowerCaseMapping__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_SingleRange___ctor, (Array_InternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__Dispose, (Array_InternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__MoveNext, (Array_InternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E5190, Object *, Array_InternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E5020, RegexCharClass_SingleRange, Array_InternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__get_Current, (Array_InternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0710, Array_InternalEnumerator_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E53D0, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E5220, RenderChain_RenderNodeData, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0708, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo___ctor, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo__Dispose, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E5640, Object *, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E54A0, RenderGraph_CompiledPassInfo, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo__get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD06E0, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo___ctor, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo__Dispose, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E5880, Object *, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E5700, RenderGraph_CompiledResourceInfo, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo__get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD06D8, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData___ctor, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData__Dispose, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E5AA0, Object *, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E5920, RenderGraphDebugData_PassDebugData, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData__get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD06F0, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData___ctor, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData__Dispose, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E5CD0, Object *, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E5B40, RenderGraphDebugData_ResourceDebugData, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData__get_Current, (Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD06E8, Array_InternalEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest___ctor, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest__Dispose, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest__MoveNext, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E5EF0, Object *, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E5D80, ResourceManager_DeferredCallbackRegisterRequest, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest__get_Current, (Array_InternalEnumerator_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0640, Array_InternalEnumerator_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Pathfinding_Util_RetainedGizmos_MeshWithHash___ctor, (Array_InternalEnumerator_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Pathfinding_Util_RetainedGizmos_MeshWithHash__Dispose, (Array_InternalEnumerator_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Pathfinding_Util_RetainedGizmos_MeshWithHash__MoveNext, (Array_InternalEnumerator_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Pathfinding_Util_RetainedGizmos_MeshWithHash__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E6100, Object *, Array_InternalEnumerator_1_Pathfinding_Util_RetainedGizmos_MeshWithHash__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E5F80, RetainedGizmos_MeshWithHash, Array_InternalEnumerator_1_Pathfinding_Util_RetainedGizmos_MeshWithHash__get_Current, (Array_InternalEnumerator_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0638, Array_InternalEnumerator_1_Pathfinding_Util_RetainedGizmos_MeshWithHash__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_SendMouseEvents_HitInfo___ctor, (Array_InternalEnumerator_1_UnityEngine_SendMouseEvents_HitInfo_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_SendMouseEvents_HitInfo__Dispose, (Array_InternalEnumerator_1_UnityEngine_SendMouseEvents_HitInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_SendMouseEvents_HitInfo__MoveNext, (Array_InternalEnumerator_1_UnityEngine_SendMouseEvents_HitInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_SendMouseEvents_HitInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_SendMouseEvents_HitInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E6310, Object *, Array_InternalEnumerator_1_UnityEngine_SendMouseEvents_HitInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_SendMouseEvents_HitInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E61A0, SendMouseEvents_HitInfo, Array_InternalEnumerator_1_UnityEngine_SendMouseEvents_HitInfo__get_Current, (Array_InternalEnumerator_1_UnityEngine_SendMouseEvents_HitInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0650, Array_InternalEnumerator_1_UnityEngine_SendMouseEvents_HitInfo__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext___ctor, (Array_InternalEnumerator_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext__Dispose, (Array_InternalEnumerator_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext__MoveNext, (Array_InternalEnumerator_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E6530, Object *, Array_InternalEnumerator_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E63A0, SequenceNode_SequenceConstructPosContext, Array_InternalEnumerator_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext__get_Current, (Array_InternalEnumerator_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0648, Array_InternalEnumerator_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_Field___ctor, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_Field_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_Field__Dispose, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_Field_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_Field__MoveNext, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_Field_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_Field__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_Field_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E6760, Object *, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_Field__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_Field_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E65E0, SerializedObject_Field, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_Field__get_Current, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_Field_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0620, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_Field__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___ctor, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__Dispose, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__MoveNext, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E6980, Object *, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E6800, SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__get_Current, (Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0618, Array_InternalEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_SlotEquip_ItemDefinitionStateName___ctor, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_SlotEquip_ItemDefinitionStateName_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_SlotEquip_ItemDefinitionStateName__Dispose, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_SlotEquip_ItemDefinitionStateName_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_SlotEquip_ItemDefinitionStateName__MoveNext, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_SlotEquip_ItemDefinitionStateName_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_SlotEquip_ItemDefinitionStateName__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_SlotEquip_ItemDefinitionStateName_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E6B90, Object *, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_SlotEquip_ItemDefinitionStateName__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_SlotEquip_ItemDefinitionStateName_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E6A20, SlotEquip_ItemDefinitionStateName, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_SlotEquip_ItemDefinitionStateName__get_Current, (Array_InternalEnumerator_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_SlotEquip_ItemDefinitionStateName_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0630, Array_InternalEnumerator_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_SlotEquip_ItemDefinitionStateName__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Net_Sockets_Socket_WSABUF___ctor, (Array_InternalEnumerator_1_System_Net_Sockets_Socket_WSABUF_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Net_Sockets_Socket_WSABUF__Dispose, (Array_InternalEnumerator_1_System_Net_Sockets_Socket_WSABUF_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Net_Sockets_Socket_WSABUF__MoveNext, (Array_InternalEnumerator_1_System_Net_Sockets_Socket_WSABUF_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Net_Sockets_Socket_WSABUF__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Net_Sockets_Socket_WSABUF_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E6D90, Object *, Array_InternalEnumerator_1_System_Net_Sockets_Socket_WSABUF__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Net_Sockets_Socket_WSABUF_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E6C20, Socket_WSABUF, Array_InternalEnumerator_1_System_Net_Sockets_Socket_WSABUF__get_Current, (Array_InternalEnumerator_1_System_Net_Sockets_Socket_WSABUF_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0628, Array_InternalEnumerator_1_System_Net_Sockets_Socket_WSABUF__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E6F90, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E6E20, StyleComplexSelector_PseudoStateData, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0680, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E7190, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E7020, StylePropertyAnimationSystem_ElementPropertyPair, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0678, Array_InternalEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheet_ImportStruct___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheet_ImportStruct_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheet_ImportStruct__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheet_ImportStruct_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheet_ImportStruct__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheet_ImportStruct_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheet_ImportStruct__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheet_ImportStruct_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E7390, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheet_ImportStruct__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheet_ImportStruct_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E7220, StyleSheet_ImportStruct, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheet_ImportStruct__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheet_ImportStruct_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0690, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheet_ImportStruct__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E7590, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E7420, StyleSheetCache_SheetHandleKey, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0688, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E7790, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E7620, StyleVariableResolver_ResolveContext, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0660, Array_InternalEnumerator_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_TMPro_TMP_Text_UnicodeChar___ctor, (Array_InternalEnumerator_1_TMPro_TMP_Text_UnicodeChar_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_TMPro_TMP_Text_UnicodeChar__Dispose, (Array_InternalEnumerator_1_TMPro_TMP_Text_UnicodeChar_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_TMPro_TMP_Text_UnicodeChar__MoveNext, (Array_InternalEnumerator_1_TMPro_TMP_Text_UnicodeChar_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_TMPro_TMP_Text_UnicodeChar__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_TMPro_TMP_Text_UnicodeChar_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E79A0, Object *, Array_InternalEnumerator_1_TMPro_TMP_Text_UnicodeChar__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_TMPro_TMP_Text_UnicodeChar_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E7820, TMP_Text_UnicodeChar, Array_InternalEnumerator_1_TMPro_TMP_Text_UnicodeChar__get_Current, (Array_InternalEnumerator_1_TMPro_TMP_Text_UnicodeChar_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0658, Array_InternalEnumerator_1_TMPro_TMP_Text_UnicodeChar__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E7BC0, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E7A40, TemplateAsset_AttributeOverride, Array_InternalEnumerator_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0670, Array_InternalEnumerator_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UI_Extensions_TextPic_IconName___ctor, (Array_InternalEnumerator_1_UnityEngine_UI_Extensions_TextPic_IconName_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UI_Extensions_TextPic_IconName__Dispose, (Array_InternalEnumerator_1_UnityEngine_UI_Extensions_TextPic_IconName_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UI_Extensions_TextPic_IconName__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UI_Extensions_TextPic_IconName_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UI_Extensions_TextPic_IconName__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UI_Extensions_TextPic_IconName_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E7DE0, Object *, Array_InternalEnumerator_1_UnityEngine_UI_Extensions_TextPic_IconName__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UI_Extensions_TextPic_IconName_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E7C60, TextPic_IconName, Array_InternalEnumerator_1_UnityEngine_UI_Extensions_TextPic_IconName__get_Current, (Array_InternalEnumerator_1_UnityEngine_UI_Extensions_TextPic_IconName_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0668, Array_InternalEnumerator_1_UnityEngine_UI_Extensions_TextPic_IconName__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___ctor, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__Dispose, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__MoveNext, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E8000, Object *, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E7E80, TextResourceManager_FontAssetRef, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__get_Current, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD05C0, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap___ctor, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__Dispose, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__MoveNext, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E8210, Object *, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E80A0, TextSettings_FontReferenceMap, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__get_Current, (Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD05B8, Array_InternalEnumerator_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E8430, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E82A0, TextureBlitter_BlitInfo, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD05D0, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame___ctor, (Array_InternalEnumerator_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame__Dispose, (Array_InternalEnumerator_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame__MoveNext, (Array_InternalEnumerator_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E8680, Object *, Array_InternalEnumerator_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E84F0, TexturePacker_JsonArray_Frame, Array_InternalEnumerator_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame__get_Current, (Array_InternalEnumerator_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD05C8, Array_InternalEnumerator_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TextureRegistry_TextureInfo___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_TextureRegistry_TextureInfo_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TextureRegistry_TextureInfo__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_TextureRegistry_TextureInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_TextureRegistry_TextureInfo__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_TextureRegistry_TextureInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TextureRegistry_TextureInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_TextureRegistry_TextureInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E88B0, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_TextureRegistry_TextureInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_TextureRegistry_TextureInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E8740, TextureRegistry_TextureInfo, Array_InternalEnumerator_1_UnityEngine_UIElements_TextureRegistry_TextureInfo__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_TextureRegistry_TextureInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD05A0, Array_InternalEnumerator_1_UnityEngine_UIElements_TextureRegistry_TextureInfo__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry___ctor, (Array_InternalEnumerator_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry__Dispose, (Array_InternalEnumerator_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E8AC0, Object *, Array_InternalEnumerator_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E8940, TimeNotificationBehaviour_NotificationEntry, Array_InternalEnumerator_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry__get_Current, (Array_InternalEnumerator_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0598, Array_InternalEnumerator_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E8CE0, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E8B60, TrackedDeviceRaycaster_RaycastHitData, Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD05B0, Array_InternalEnumerator_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData___ctor, (Array_InternalEnumerator_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData__Dispose, (Array_InternalEnumerator_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData__MoveNext, (Array_InternalEnumerator_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E8EF0, Object *, Array_InternalEnumerator_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E8D80, TrackedPoseDriverDataDescription_PoseData, Array_InternalEnumerator_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData__get_Current, (Array_InternalEnumerator_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD05A8, Array_InternalEnumerator_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E90F0, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E8F80, TreeView_TreeViewItemWrapper, Array_InternalEnumerator_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0600, Array_InternalEnumerator_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E92F0, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E9180, TreeViewReorderableDragAndDropController_TreeItemState, Array_InternalEnumerator_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD05F8, Array_InternalEnumerator_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E9530, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E9380, UIRStylePainter_Entry, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0610, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E9790, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E9600, UIRenderDevice_AllocToFree, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0608, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E99E0, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E9840, UIRenderDevice_AllocToUpdate, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD05E0, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E9C10, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E9AA0, UIRenderDevice_DeviceToFree, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD05D8, Array_InternalEnumerator_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UdpKit_UdpPipe_Ack___ctor, (Array_InternalEnumerator_1_UdpKit_UdpPipe_Ack_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UdpKit_UdpPipe_Ack__Dispose, (Array_InternalEnumerator_1_UdpKit_UdpPipe_Ack_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UdpKit_UdpPipe_Ack__MoveNext, (Array_InternalEnumerator_1_UdpKit_UdpPipe_Ack_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UdpKit_UdpPipe_Ack__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UdpKit_UdpPipe_Ack_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E9E20, Object *, Array_InternalEnumerator_1_UdpKit_UdpPipe_Ack__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UdpKit_UdpPipe_Ack_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E9CA0, UdpPipe_Ack, Array_InternalEnumerator_1_UdpKit_UdpPipe_Ack__get_Current, (Array_InternalEnumerator_1_UdpKit_UdpPipe_Ack_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD05F0, Array_InternalEnumerator_1_UdpKit_UdpPipe_Ack__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Globalization_UmAlQuraCalendar_DateMapping___ctor, (Array_InternalEnumerator_1_System_Globalization_UmAlQuraCalendar_DateMapping_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Globalization_UmAlQuraCalendar_DateMapping__Dispose, (Array_InternalEnumerator_1_System_Globalization_UmAlQuraCalendar_DateMapping_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Globalization_UmAlQuraCalendar_DateMapping__MoveNext, (Array_InternalEnumerator_1_System_Globalization_UmAlQuraCalendar_DateMapping_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Globalization_UmAlQuraCalendar_DateMapping__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Globalization_UmAlQuraCalendar_DateMapping_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016EA030, Object *, Array_InternalEnumerator_1_System_Globalization_UmAlQuraCalendar_DateMapping__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Globalization_UmAlQuraCalendar_DateMapping_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016E9EC0, UmAlQuraCalendar_DateMapping, Array_InternalEnumerator_1_System_Globalization_UmAlQuraCalendar_DateMapping__get_Current, (Array_InternalEnumerator_1_System_Globalization_UmAlQuraCalendar_DateMapping_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD05E8, Array_InternalEnumerator_1_System_Globalization_UmAlQuraCalendar_DateMapping__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UnitySynchronizationContext_WorkRequest___ctor, (Array_InternalEnumerator_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UnitySynchronizationContext_WorkRequest__Dispose, (Array_InternalEnumerator_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UnitySynchronizationContext_WorkRequest__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UnitySynchronizationContext_WorkRequest__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016EA240, Object *, Array_InternalEnumerator_1_UnityEngine_UnitySynchronizationContext_WorkRequest__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016EA0C0, UnitySynchronizationContext_WorkRequest, Array_InternalEnumerator_1_UnityEngine_UnitySynchronizationContext_WorkRequest__get_Current, (Array_InternalEnumerator_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0540, Array_InternalEnumerator_1_UnityEngine_UnitySynchronizationContext_WorkRequest__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016EA450, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016EA2E0, VisualTreeAsset_SlotDefinition, Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0538, Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016EA650, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016EA4E0, VisualTreeAsset_SlotUsageEntry, Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0550, Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry___ctor, (Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__Dispose, (Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__MoveNext, (Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016EA860, Object *, Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016EA6E0, VisualTreeAsset_UsingEntry, Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__get_Current, (Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0548, Array_InternalEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId___ctor, (Array_InternalEnumerator_1_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId__Dispose, (Array_InternalEnumerator_1_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId__MoveNext, (Array_InternalEnumerator_1_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016EAAC0, Object *, Array_InternalEnumerator_1_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016EA900, WetDecalSystem_MaterialBatchId, Array_InternalEnumerator_1_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId__get_Current, (Array_InternalEnumerator_1_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0520, Array_InternalEnumerator_1_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK___ctor, (Array_InternalEnumerator_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__Dispose, (Array_InternalEnumerator_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__MoveNext, (Array_InternalEnumerator_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016EAD20, Object *, Array_InternalEnumerator_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016EABB0, XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK, Array_InternalEnumerator_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__get_Current, (Array_InternalEnumerator_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0518, Array_InternalEnumerator_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Xml_XmlEventCache_XmlEvent___ctor, (Array_InternalEnumerator_1_System_Xml_XmlEventCache_XmlEvent_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Xml_XmlEventCache_XmlEvent__Dispose, (Array_InternalEnumerator_1_System_Xml_XmlEventCache_XmlEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Xml_XmlEventCache_XmlEvent__MoveNext, (Array_InternalEnumerator_1_System_Xml_XmlEventCache_XmlEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Xml_XmlEventCache_XmlEvent__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Xml_XmlEventCache_XmlEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016EAF40, Object *, Array_InternalEnumerator_1_System_Xml_XmlEventCache_XmlEvent__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Xml_XmlEventCache_XmlEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016EADB0, XmlEventCache_XmlEvent, Array_InternalEnumerator_1_System_Xml_XmlEventCache_XmlEvent__get_Current, (Array_InternalEnumerator_1_System_Xml_XmlEventCache_XmlEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0530, Array_InternalEnumerator_1_System_Xml_XmlEventCache_XmlEvent__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Xml_XmlNamespaceManager_NamespaceDeclaration___ctor, (Array_InternalEnumerator_1_System_Xml_XmlNamespaceManager_NamespaceDeclaration_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Xml_XmlNamespaceManager_NamespaceDeclaration__Dispose, (Array_InternalEnumerator_1_System_Xml_XmlNamespaceManager_NamespaceDeclaration_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Xml_XmlNamespaceManager_NamespaceDeclaration__MoveNext, (Array_InternalEnumerator_1_System_Xml_XmlNamespaceManager_NamespaceDeclaration_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Xml_XmlNamespaceManager_NamespaceDeclaration__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Xml_XmlNamespaceManager_NamespaceDeclaration_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016EB170, Object *, Array_InternalEnumerator_1_System_Xml_XmlNamespaceManager_NamespaceDeclaration__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Xml_XmlNamespaceManager_NamespaceDeclaration_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016EAFF0, XmlNamespaceManager_NamespaceDeclaration, Array_InternalEnumerator_1_System_Xml_XmlNamespaceManager_NamespaceDeclaration__get_Current, (Array_InternalEnumerator_1_System_Xml_XmlNamespaceManager_NamespaceDeclaration_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0528, Array_InternalEnumerator_1_System_Xml_XmlNamespaceManager_NamespaceDeclaration__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry___ctor, (Array_InternalEnumerator_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry__Dispose, (Array_InternalEnumerator_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry__MoveNext, (Array_InternalEnumerator_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016EB380, Object *, Array_InternalEnumerator_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016EB210, XmlSchemaObjectTable_XmlSchemaObjectEntry, Array_InternalEnumerator_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry__get_Current, (Array_InternalEnumerator_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0580, Array_InternalEnumerator_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Xml_XmlTextReaderImpl_ParsingState___ctor, (Array_InternalEnumerator_1_System_Xml_XmlTextReaderImpl_ParsingState_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Xml_XmlTextReaderImpl_ParsingState__Dispose, (Array_InternalEnumerator_1_System_Xml_XmlTextReaderImpl_ParsingState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Xml_XmlTextReaderImpl_ParsingState__MoveNext, (Array_InternalEnumerator_1_System_Xml_XmlTextReaderImpl_ParsingState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Xml_XmlTextReaderImpl_ParsingState__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Xml_XmlTextReaderImpl_ParsingState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016EB5D0, Object *, Array_InternalEnumerator_1_System_Xml_XmlTextReaderImpl_ParsingState__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Xml_XmlTextReaderImpl_ParsingState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016EB410, XmlTextReaderImpl_ParsingState, Array_InternalEnumerator_1_System_Xml_XmlTextReaderImpl_ParsingState__get_Current, (Array_InternalEnumerator_1_System_Xml_XmlTextReaderImpl_ParsingState_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0578, Array_InternalEnumerator_1_System_Xml_XmlTextReaderImpl_ParsingState__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Xml_XmlTextWriter_Namespace___ctor, (Array_InternalEnumerator_1_System_Xml_XmlTextWriter_Namespace_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Xml_XmlTextWriter_Namespace__Dispose, (Array_InternalEnumerator_1_System_Xml_XmlTextWriter_Namespace_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Xml_XmlTextWriter_Namespace__MoveNext, (Array_InternalEnumerator_1_System_Xml_XmlTextWriter_Namespace_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Xml_XmlTextWriter_Namespace__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Xml_XmlTextWriter_Namespace_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016EB840, Object *, Array_InternalEnumerator_1_System_Xml_XmlTextWriter_Namespace__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Xml_XmlTextWriter_Namespace_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016EB6C0, XmlTextWriter_Namespace, Array_InternalEnumerator_1_System_Xml_XmlTextWriter_Namespace__get_Current, (Array_InternalEnumerator_1_System_Xml_XmlTextWriter_Namespace_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0590, Array_InternalEnumerator_1_System_Xml_XmlTextWriter_Namespace__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Xml_XmlTextWriter_TagInfo___ctor, (Array_InternalEnumerator_1_System_Xml_XmlTextWriter_TagInfo_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Xml_XmlTextWriter_TagInfo__Dispose, (Array_InternalEnumerator_1_System_Xml_XmlTextWriter_TagInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Xml_XmlTextWriter_TagInfo__MoveNext, (Array_InternalEnumerator_1_System_Xml_XmlTextWriter_TagInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Xml_XmlTextWriter_TagInfo__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Xml_XmlTextWriter_TagInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016EBA70, Object *, Array_InternalEnumerator_1_System_Xml_XmlTextWriter_TagInfo__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Xml_XmlTextWriter_TagInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016EB8E0, XmlTextWriter_TagInfo, Array_InternalEnumerator_1_System_Xml_XmlTextWriter_TagInfo__get_Current, (Array_InternalEnumerator_1_System_Xml_XmlTextWriter_TagInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0588, Array_InternalEnumerator_1_System_Xml_XmlTextWriter_TagInfo__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_AttrName___ctor, (Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_AttrName_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_AttrName__Dispose, (Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_AttrName_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_AttrName__MoveNext, (Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_AttrName_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_AttrName__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_AttrName_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016EBCB0, Object *, Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_AttrName__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_AttrName_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016EBB30, XmlWellFormedWriter_AttrName, Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_AttrName__get_Current, (Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_AttrName_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0560, Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_AttrName__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_ElementScope___ctor, (Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_ElementScope_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_ElementScope__Dispose, (Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_ElementScope_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_ElementScope__MoveNext, (Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_ElementScope_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_ElementScope__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_ElementScope_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016EBEE0, Object *, Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_ElementScope__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_ElementScope_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016EBD50, XmlWellFormedWriter_ElementScope, Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_ElementScope__get_Current, (Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_ElementScope_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0558, Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_ElementScope__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_Namespace___ctor, (Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_Namespace_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_Namespace__Dispose, (Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_Namespace_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_Namespace__MoveNext, (Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_Namespace_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_Namespace__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_Namespace_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016EC110, Object *, Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_Namespace__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_Namespace_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016EBF90, XmlWellFormedWriter_Namespace, Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_Namespace__get_Current, (Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_Namespace_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0570, Array_InternalEnumerator_1_System_Xml_XmlWellFormedWriter_Namespace__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_ftLightmaps_LightmapAdditionalData___ctor, (Array_InternalEnumerator_1_ftLightmaps_LightmapAdditionalData_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_ftLightmaps_LightmapAdditionalData__Dispose, (Array_InternalEnumerator_1_ftLightmaps_LightmapAdditionalData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_ftLightmaps_LightmapAdditionalData__MoveNext, (Array_InternalEnumerator_1_ftLightmaps_LightmapAdditionalData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_ftLightmaps_LightmapAdditionalData__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_ftLightmaps_LightmapAdditionalData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016EC330, Object *, Array_InternalEnumerator_1_ftLightmaps_LightmapAdditionalData__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_ftLightmaps_LightmapAdditionalData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016EC1B0, ftLightmaps_LightmapAdditionalData, Array_InternalEnumerator_1_ftLightmaps_LightmapAdditionalData__get_Current, (Array_InternalEnumerator_1_ftLightmaps_LightmapAdditionalData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0568, Array_InternalEnumerator_1_ftLightmaps_LightmapAdditionalData__get_Current__MethodInfo); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy___ctor, (Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__Dispose, (Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__MoveNext, (Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016EC540, Object *, Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016EC3D0, gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy, Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__get_Current, (Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8BA60, Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__get_Current__MethodInfo); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_QpfrOmwHesfdZMwAoLXiDrdPqtqG___ctor, (Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_QpfrOmwHesfdZMwAoLXiDrdPqtqG___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_QpfrOmwHesfdZMwAoLXiDrdPqtqG__Dispose, (Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_QpfrOmwHesfdZMwAoLXiDrdPqtqG___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_QpfrOmwHesfdZMwAoLXiDrdPqtqG__MoveNext, (Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_QpfrOmwHesfdZMwAoLXiDrdPqtqG___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_QpfrOmwHesfdZMwAoLXiDrdPqtqG__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_QpfrOmwHesfdZMwAoLXiDrdPqtqG___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016EC760, Object *, Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_QpfrOmwHesfdZMwAoLXiDrdPqtqG__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_QpfrOmwHesfdZMwAoLXiDrdPqtqG___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016EC5D0, gWxrirpmIhQTmhziZnlXlEwmYtKB_QpfrOmwHesfdZMwAoLXiDrdPqtqG, Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_QpfrOmwHesfdZMwAoLXiDrdPqtqG__get_Current, (Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_QpfrOmwHesfdZMwAoLXiDrdPqtqG___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_QpfrOmwHesfdZMwAoLXiDrdPqtqG___ctor, (Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_QpfrOmwHesfdZMwAoLXiDrdPqtqG_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_QpfrOmwHesfdZMwAoLXiDrdPqtqG__Dispose, (Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_QpfrOmwHesfdZMwAoLXiDrdPqtqG_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_QpfrOmwHesfdZMwAoLXiDrdPqtqG__MoveNext, (Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_QpfrOmwHesfdZMwAoLXiDrdPqtqG_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_QpfrOmwHesfdZMwAoLXiDrdPqtqG__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_QpfrOmwHesfdZMwAoLXiDrdPqtqG_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016EC760, Object *, Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_QpfrOmwHesfdZMwAoLXiDrdPqtqG__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_QpfrOmwHesfdZMwAoLXiDrdPqtqG_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016EC5D0, gWxrirpmIhQTmhziZnlXlEwmYtKB_QpfrOmwHesfdZMwAoLXiDrdPqtqG, Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_QpfrOmwHesfdZMwAoLXiDrdPqtqG__get_Current, (Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_QpfrOmwHesfdZMwAoLXiDrdPqtqG_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8BA68, Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_QpfrOmwHesfdZMwAoLXiDrdPqtqG__get_Current__MethodInfo); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_vEAqJCAedocGOpCIXmtvTuaaVKZ___ctor, (Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_vEAqJCAedocGOpCIXmtvTuaaVKZ___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_vEAqJCAedocGOpCIXmtvTuaaVKZ__Dispose, (Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_vEAqJCAedocGOpCIXmtvTuaaVKZ___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_vEAqJCAedocGOpCIXmtvTuaaVKZ__MoveNext, (Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_vEAqJCAedocGOpCIXmtvTuaaVKZ___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_vEAqJCAedocGOpCIXmtvTuaaVKZ__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_vEAqJCAedocGOpCIXmtvTuaaVKZ___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016EC9A0, Object *, Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_vEAqJCAedocGOpCIXmtvTuaaVKZ__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_vEAqJCAedocGOpCIXmtvTuaaVKZ___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016EC820, gWxrirpmIhQTmhziZnlXlEwmYtKB_vEAqJCAedocGOpCIXmtvTuaaVKZ, Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_vEAqJCAedocGOpCIXmtvTuaaVKZ__get_Current, (Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_vEAqJCAedocGOpCIXmtvTuaaVKZ___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_vEAqJCAedocGOpCIXmtvTuaaVKZ___ctor, (Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_vEAqJCAedocGOpCIXmtvTuaaVKZ_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_vEAqJCAedocGOpCIXmtvTuaaVKZ__Dispose, (Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_vEAqJCAedocGOpCIXmtvTuaaVKZ_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_vEAqJCAedocGOpCIXmtvTuaaVKZ__MoveNext, (Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_vEAqJCAedocGOpCIXmtvTuaaVKZ_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_vEAqJCAedocGOpCIXmtvTuaaVKZ__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_vEAqJCAedocGOpCIXmtvTuaaVKZ_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016EC9A0, Object *, Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_vEAqJCAedocGOpCIXmtvTuaaVKZ__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_vEAqJCAedocGOpCIXmtvTuaaVKZ_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016EC820, gWxrirpmIhQTmhziZnlXlEwmYtKB_vEAqJCAedocGOpCIXmtvTuaaVKZ, Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_vEAqJCAedocGOpCIXmtvTuaaVKZ__get_Current, (Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_vEAqJCAedocGOpCIXmtvTuaaVKZ_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8BA40, Array_InternalEnumerator_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_vEAqJCAedocGOpCIXmtvTuaaVKZ__get_Current__MethodInfo); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_jlOcQLgjodoHrMnRTMaZoBnVTQkmA_UQNUjWDnDBJiFEZHZdfMIOPkNvdGb___ctor, (Array_InternalEnumerator_1_jlOcQLgjodoHrMnRTMaZoBnVTQkmA_UQNUjWDnDBJiFEZHZdfMIOPkNvdGb___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_jlOcQLgjodoHrMnRTMaZoBnVTQkmA_UQNUjWDnDBJiFEZHZdfMIOPkNvdGb__Dispose, (Array_InternalEnumerator_1_jlOcQLgjodoHrMnRTMaZoBnVTQkmA_UQNUjWDnDBJiFEZHZdfMIOPkNvdGb___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_jlOcQLgjodoHrMnRTMaZoBnVTQkmA_UQNUjWDnDBJiFEZHZdfMIOPkNvdGb__MoveNext, (Array_InternalEnumerator_1_jlOcQLgjodoHrMnRTMaZoBnVTQkmA_UQNUjWDnDBJiFEZHZdfMIOPkNvdGb___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_jlOcQLgjodoHrMnRTMaZoBnVTQkmA_UQNUjWDnDBJiFEZHZdfMIOPkNvdGb__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_jlOcQLgjodoHrMnRTMaZoBnVTQkmA_UQNUjWDnDBJiFEZHZdfMIOPkNvdGb___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016ECBC0, Object *, Array_InternalEnumerator_1_jlOcQLgjodoHrMnRTMaZoBnVTQkmA_UQNUjWDnDBJiFEZHZdfMIOPkNvdGb__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_jlOcQLgjodoHrMnRTMaZoBnVTQkmA_UQNUjWDnDBJiFEZHZdfMIOPkNvdGb___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016ECA40, jlOcQLgjodoHrMnRTMaZoBnVTQkmA_UQNUjWDnDBJiFEZHZdfMIOPkNvdGb, Array_InternalEnumerator_1_jlOcQLgjodoHrMnRTMaZoBnVTQkmA_UQNUjWDnDBJiFEZHZdfMIOPkNvdGb__get_Current, (Array_InternalEnumerator_1_jlOcQLgjodoHrMnRTMaZoBnVTQkmA_UQNUjWDnDBJiFEZHZdfMIOPkNvdGb___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_jlOcQLgjodoHrMnRTMaZoBnVTQkmA_UQNUjWDnDBJiFEZHZdfMIOPkNvdGb___ctor, (Array_InternalEnumerator_1_jlOcQLgjodoHrMnRTMaZoBnVTQkmA_UQNUjWDnDBJiFEZHZdfMIOPkNvdGb_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_jlOcQLgjodoHrMnRTMaZoBnVTQkmA_UQNUjWDnDBJiFEZHZdfMIOPkNvdGb__Dispose, (Array_InternalEnumerator_1_jlOcQLgjodoHrMnRTMaZoBnVTQkmA_UQNUjWDnDBJiFEZHZdfMIOPkNvdGb_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_jlOcQLgjodoHrMnRTMaZoBnVTQkmA_UQNUjWDnDBJiFEZHZdfMIOPkNvdGb__MoveNext, (Array_InternalEnumerator_1_jlOcQLgjodoHrMnRTMaZoBnVTQkmA_UQNUjWDnDBJiFEZHZdfMIOPkNvdGb_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_jlOcQLgjodoHrMnRTMaZoBnVTQkmA_UQNUjWDnDBJiFEZHZdfMIOPkNvdGb__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_jlOcQLgjodoHrMnRTMaZoBnVTQkmA_UQNUjWDnDBJiFEZHZdfMIOPkNvdGb_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016ECBC0, Object *, Array_InternalEnumerator_1_jlOcQLgjodoHrMnRTMaZoBnVTQkmA_UQNUjWDnDBJiFEZHZdfMIOPkNvdGb__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_jlOcQLgjodoHrMnRTMaZoBnVTQkmA_UQNUjWDnDBJiFEZHZdfMIOPkNvdGb_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016ECA40, jlOcQLgjodoHrMnRTMaZoBnVTQkmA_UQNUjWDnDBJiFEZHZdfMIOPkNvdGb, Array_InternalEnumerator_1_jlOcQLgjodoHrMnRTMaZoBnVTQkmA_UQNUjWDnDBJiFEZHZdfMIOPkNvdGb__get_Current, (Array_InternalEnumerator_1_jlOcQLgjodoHrMnRTMaZoBnVTQkmA_UQNUjWDnDBJiFEZHZdfMIOPkNvdGb_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8BA48, Array_InternalEnumerator_1_jlOcQLgjodoHrMnRTMaZoBnVTQkmA_UQNUjWDnDBJiFEZHZdfMIOPkNvdGb__get_Current__MethodInfo); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem___ctor, (Array_InternalEnumerator_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem__Dispose, (Array_InternalEnumerator_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016ECDD0, Object *, Array_InternalEnumerator_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016ECC60, DebugUI_Foldout_ContextMenuItem, Array_InternalEnumerator_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem__get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem___ctor, (Array_InternalEnumerator_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem__Dispose, (Array_InternalEnumerator_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem__MoveNext, (Array_InternalEnumerator_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016ECDD0, Object *, Array_InternalEnumerator_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016ECC60, DebugUI_Foldout_ContextMenuItem, Array_InternalEnumerator_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem__get_Current, (Array_InternalEnumerator_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8BA50, Array_InternalEnumerator_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem__get_Current__MethodInfo); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Decimal_DecCalc_PowerOvfl___ctor, (Array_InternalEnumerator_1_Decimal_DecCalc_PowerOvfl___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Decimal_DecCalc_PowerOvfl__Dispose, (Array_InternalEnumerator_1_Decimal_DecCalc_PowerOvfl___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Decimal_DecCalc_PowerOvfl__MoveNext, (Array_InternalEnumerator_1_Decimal_DecCalc_PowerOvfl___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Decimal_DecCalc_PowerOvfl__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Decimal_DecCalc_PowerOvfl___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016ECFD0, Object *, Array_InternalEnumerator_1_Decimal_DecCalc_PowerOvfl__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Decimal_DecCalc_PowerOvfl___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016ECE60, Decimal_DecCalc_PowerOvfl, Array_InternalEnumerator_1_Decimal_DecCalc_PowerOvfl__get_Current, (Array_InternalEnumerator_1_Decimal_DecCalc_PowerOvfl___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Decimal_DecCalc_PowerOvfl___ctor, (Array_InternalEnumerator_1_Decimal_DecCalc_PowerOvfl_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Decimal_DecCalc_PowerOvfl__Dispose, (Array_InternalEnumerator_1_Decimal_DecCalc_PowerOvfl_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Decimal_DecCalc_PowerOvfl__MoveNext, (Array_InternalEnumerator_1_Decimal_DecCalc_PowerOvfl_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Decimal_DecCalc_PowerOvfl__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Decimal_DecCalc_PowerOvfl_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016ECFD0, Object *, Array_InternalEnumerator_1_Decimal_DecCalc_PowerOvfl__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Decimal_DecCalc_PowerOvfl_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016ECE60, Decimal_DecCalc_PowerOvfl, Array_InternalEnumerator_1_Decimal_DecCalc_PowerOvfl__get_Current, (Array_InternalEnumerator_1_Decimal_DecCalc_PowerOvfl_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8BA58, Array_InternalEnumerator_1_Decimal_DecCalc_PowerOvfl__get_Current__MethodInfo); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Xml_Schema_FacetsChecker_FacetsCompiler_Map___ctor, (Array_InternalEnumerator_1_System_Xml_Schema_FacetsChecker_FacetsCompiler_Map___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Xml_Schema_FacetsChecker_FacetsCompiler_Map__Dispose, (Array_InternalEnumerator_1_System_Xml_Schema_FacetsChecker_FacetsCompiler_Map___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Xml_Schema_FacetsChecker_FacetsCompiler_Map__MoveNext, (Array_InternalEnumerator_1_System_Xml_Schema_FacetsChecker_FacetsCompiler_Map___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Xml_Schema_FacetsChecker_FacetsCompiler_Map__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Xml_Schema_FacetsChecker_FacetsCompiler_Map___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016ED1D0, Object *, Array_InternalEnumerator_1_System_Xml_Schema_FacetsChecker_FacetsCompiler_Map__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Xml_Schema_FacetsChecker_FacetsCompiler_Map___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016ED060, FacetsChecker_FacetsCompiler_Map, Array_InternalEnumerator_1_System_Xml_Schema_FacetsChecker_FacetsCompiler_Map__get_Current, (Array_InternalEnumerator_1_System_Xml_Schema_FacetsChecker_FacetsCompiler_Map___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Xml_Schema_FacetsChecker_FacetsCompiler_Map___ctor, (Array_InternalEnumerator_1_System_Xml_Schema_FacetsChecker_FacetsCompiler_Map_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Xml_Schema_FacetsChecker_FacetsCompiler_Map__Dispose, (Array_InternalEnumerator_1_System_Xml_Schema_FacetsChecker_FacetsCompiler_Map_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Xml_Schema_FacetsChecker_FacetsCompiler_Map__MoveNext, (Array_InternalEnumerator_1_System_Xml_Schema_FacetsChecker_FacetsCompiler_Map_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Xml_Schema_FacetsChecker_FacetsCompiler_Map__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Xml_Schema_FacetsChecker_FacetsCompiler_Map_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016ED1D0, Object *, Array_InternalEnumerator_1_System_Xml_Schema_FacetsChecker_FacetsCompiler_Map__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Xml_Schema_FacetsChecker_FacetsCompiler_Map_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016ED060, FacetsChecker_FacetsCompiler_Map, Array_InternalEnumerator_1_System_Xml_Schema_FacetsChecker_FacetsCompiler_Map__get_Current, (Array_InternalEnumerator_1_System_Xml_Schema_FacetsChecker_FacetsCompiler_Map_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8BA00, Array_InternalEnumerator_1_System_Xml_Schema_FacetsChecker_FacetsCompiler_Map__get_Current__MethodInfo); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016ED3E0, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016ED260, InputControlLayout_Collection_LayoutMatcher, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016ED3E0, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016ED260, InputControlLayout_Collection_LayoutMatcher, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8BA08, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher__get_Current__MethodInfo); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016ED5F0, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016ED480, InputControlLayout_Collection_PrecompiledLayout, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016ED5F0, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016ED480, InputControlLayout_Collection_PrecompiledLayout, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8BA10, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__get_Current__MethodInfo); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_MatchResult_Match___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_MatchResult_Match___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_MatchResult_Match__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_MatchResult_Match___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_MatchResult_Match__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_MatchResult_Match___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_MatchResult_Match__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_MatchResult_Match___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016ED810, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_MatchResult_Match__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_MatchResult_Match___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016ED680, InputControlScheme_MatchResult_Match, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_MatchResult_Match__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_MatchResult_Match___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_MatchResult_Match___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_MatchResult_Match_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_MatchResult_Match__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_MatchResult_Match_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_MatchResult_Match__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_MatchResult_Match_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_MatchResult_Match__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_MatchResult_Match_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016ED810, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_MatchResult_Match__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_MatchResult_Match_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016ED680, InputControlScheme_MatchResult_Match, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_MatchResult_Match__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_MatchResult_Match_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8BA18, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_MatchResult_Match__get_Current__MethodInfo); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson_DeviceJson___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson_DeviceJson___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson_DeviceJson__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson_DeviceJson___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson_DeviceJson__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson_DeviceJson___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson_DeviceJson__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson_DeviceJson___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016EDA30, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson_DeviceJson__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson_DeviceJson___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016ED8C0, InputControlScheme_SchemeJson_DeviceJson, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson_DeviceJson__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson_DeviceJson___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson_DeviceJson___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson_DeviceJson_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson_DeviceJson__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson_DeviceJson_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson_DeviceJson__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson_DeviceJson_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson_DeviceJson__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson_DeviceJson_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016EDA30, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson_DeviceJson__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson_DeviceJson_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016ED8C0, InputControlScheme_SchemeJson_DeviceJson, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson_DeviceJson__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson_DeviceJson_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8B9E0, Array_InternalEnumerator_1_UnityEngine_InputSystem_InputControlScheme_SchemeJson_DeviceJson__get_Current__MethodInfo); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher_MatcherJson_Capability___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher_MatcherJson_Capability___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher_MatcherJson_Capability__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher_MatcherJson_Capability___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher_MatcherJson_Capability__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher_MatcherJson_Capability___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher_MatcherJson_Capability__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher_MatcherJson_Capability___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016EDC30, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher_MatcherJson_Capability__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher_MatcherJson_Capability___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016EDAC0, InputDeviceMatcher_MatcherJson_Capability, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher_MatcherJson_Capability__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher_MatcherJson_Capability___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher_MatcherJson_Capability___ctor, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher_MatcherJson_Capability_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher_MatcherJson_Capability__Dispose, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher_MatcherJson_Capability_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher_MatcherJson_Capability__MoveNext, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher_MatcherJson_Capability_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher_MatcherJson_Capability__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher_MatcherJson_Capability_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016EDC30, Object *, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher_MatcherJson_Capability__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher_MatcherJson_Capability_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016EDAC0, InputDeviceMatcher_MatcherJson_Capability, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher_MatcherJson_Capability__get_Current, (Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher_MatcherJson_Capability_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8B9E8, Array_InternalEnumerator_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher_MatcherJson_Capability__get_Current__MethodInfo); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView___ctor, (Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView__Dispose, (Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView__MoveNext, (Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016EDE40, Object *, Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016EDCC0, InstructionList_DebugView_InstructionView, Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView__get_Current, (Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView___ctor, (Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView__Dispose, (Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView__MoveNext, (Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016EDE40, Object *, Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016EDCC0, InstructionList_DebugView_InstructionView, Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView__get_Current, (Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8B9F0, Array_InternalEnumerator_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView__get_Current__MethodInfo); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Interop_SspiCli_SecBuffer___ctor, (Array_InternalEnumerator_1_Interop_SspiCli_SecBuffer___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Interop_SspiCli_SecBuffer__Dispose, (Array_InternalEnumerator_1_Interop_SspiCli_SecBuffer___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Interop_SspiCli_SecBuffer__MoveNext, (Array_InternalEnumerator_1_Interop_SspiCli_SecBuffer___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Interop_SspiCli_SecBuffer__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Interop_SspiCli_SecBuffer___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016EE050, Object *, Array_InternalEnumerator_1_Interop_SspiCli_SecBuffer__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Interop_SspiCli_SecBuffer___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016EDEE0, Interop_SspiCli_SecBuffer, Array_InternalEnumerator_1_Interop_SspiCli_SecBuffer__get_Current, (Array_InternalEnumerator_1_Interop_SspiCli_SecBuffer___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Interop_SspiCli_SecBuffer___ctor, (Array_InternalEnumerator_1_Interop_SspiCli_SecBuffer_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Interop_SspiCli_SecBuffer__Dispose, (Array_InternalEnumerator_1_Interop_SspiCli_SecBuffer_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Interop_SspiCli_SecBuffer__MoveNext, (Array_InternalEnumerator_1_Interop_SspiCli_SecBuffer_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Interop_SspiCli_SecBuffer__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Interop_SspiCli_SecBuffer_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016EE050, Object *, Array_InternalEnumerator_1_Interop_SspiCli_SecBuffer__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Interop_SspiCli_SecBuffer_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016EDEE0, Interop_SspiCli_SecBuffer, Array_InternalEnumerator_1_Interop_SspiCli_SecBuffer__get_Current, (Array_InternalEnumerator_1_Interop_SspiCli_SecBuffer_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8B9F8, Array_InternalEnumerator_1_Interop_SspiCli_SecBuffer__get_Current__MethodInfo); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb___ctor, (Array_InternalEnumerator_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__Dispose, (Array_InternalEnumerator_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__MoveNext, (Array_InternalEnumerator_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016EE260, Object *, Array_InternalEnumerator_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016EE0E0, PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb, Array_InternalEnumerator_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__get_Current, (Array_InternalEnumerator_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb___ctor, (Array_InternalEnumerator_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__Dispose, (Array_InternalEnumerator_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__MoveNext, (Array_InternalEnumerator_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016EE260, Object *, Array_InternalEnumerator_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016EE0E0, PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb, Array_InternalEnumerator_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__get_Current, (Array_InternalEnumerator_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8BA28, Array_InternalEnumerator_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__get_Current__MethodInfo); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Cinemachine_TargetPositionCache_CacheCurve_Item___ctor, (Array_InternalEnumerator_1_Cinemachine_TargetPositionCache_CacheCurve_Item___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Cinemachine_TargetPositionCache_CacheCurve_Item__Dispose, (Array_InternalEnumerator_1_Cinemachine_TargetPositionCache_CacheCurve_Item___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Cinemachine_TargetPositionCache_CacheCurve_Item__MoveNext, (Array_InternalEnumerator_1_Cinemachine_TargetPositionCache_CacheCurve_Item___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Cinemachine_TargetPositionCache_CacheCurve_Item__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Cinemachine_TargetPositionCache_CacheCurve_Item___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016EE480, Object *, Array_InternalEnumerator_1_Cinemachine_TargetPositionCache_CacheCurve_Item__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Cinemachine_TargetPositionCache_CacheCurve_Item___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016EE300, TargetPositionCache_CacheCurve_Item, Array_InternalEnumerator_1_Cinemachine_TargetPositionCache_CacheCurve_Item__get_Current, (Array_InternalEnumerator_1_Cinemachine_TargetPositionCache_CacheCurve_Item___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Cinemachine_TargetPositionCache_CacheCurve_Item___ctor, (Array_InternalEnumerator_1_Cinemachine_TargetPositionCache_CacheCurve_Item_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Cinemachine_TargetPositionCache_CacheCurve_Item__Dispose, (Array_InternalEnumerator_1_Cinemachine_TargetPositionCache_CacheCurve_Item_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Cinemachine_TargetPositionCache_CacheCurve_Item__MoveNext, (Array_InternalEnumerator_1_Cinemachine_TargetPositionCache_CacheCurve_Item_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Cinemachine_TargetPositionCache_CacheCurve_Item__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Cinemachine_TargetPositionCache_CacheCurve_Item_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016EE480, Object *, Array_InternalEnumerator_1_Cinemachine_TargetPositionCache_CacheCurve_Item__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Cinemachine_TargetPositionCache_CacheCurve_Item_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016EE300, TargetPositionCache_CacheCurve_Item, Array_InternalEnumerator_1_Cinemachine_TargetPositionCache_CacheCurve_Item__get_Current, (Array_InternalEnumerator_1_Cinemachine_TargetPositionCache_CacheCurve_Item_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8BA30, Array_InternalEnumerator_1_Cinemachine_TargetPositionCache_CacheCurve_Item__get_Current__MethodInfo); -DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem___ctor, (Array_InternalEnumerator_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem___Boxed * __this, Array * array, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__Dispose, (Array_InternalEnumerator_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__MoveNext, (Array_InternalEnumerator_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016EE6A0, Object *, Array_InternalEnumerator_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x016EE520, TargetPositionCache_CacheEntry_RecordingItem, Array_InternalEnumerator_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__get_Current, (Array_InternalEnumerator_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682AC0, void, Array_InternalEnumerator_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem___ctor, (Array_InternalEnumerator_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * __this, Array * array, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, Array_InternalEnumerator_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__Dispose, (Array_InternalEnumerator_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682B30, bool, Array_InternalEnumerator_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__MoveNext, (Array_InternalEnumerator_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01682CF0, void, Array_InternalEnumerator_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__System_Collections_IEnumerator_Reset, (Array_InternalEnumerator_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016EE6A0, Object *, Array_InternalEnumerator_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__System_Collections_IEnumerator_get_Current, (Array_InternalEnumerator_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x016EE520, TargetPositionCache_CacheEntry_RecordingItem, Array_InternalEnumerator_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__get_Current, (Array_InternalEnumerator_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8BA38, Array_InternalEnumerator_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__get_Current__MethodInfo); DO_APP_FUNC(0x016EFE50, void, IntervalTree_1_System_Object___ctor, (IntervalTree_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016EE750, void, IntervalTree_1_System_Object__Add, (IntervalTree_1_System_Object_ * __this, Object * item, MethodInfo * method)); @@ -158649,6 +175563,7 @@ DO_APP_FUNC(0x010470D0, void, InvokableCall_2_System_Int32_System_Boolean___ctor DO_APP_FUNC(0x016F3240, void, InvokableCall_2_System_Int32_System_Boolean___ctor_1, (InvokableCall_2_System_Int32_System_Boolean_ * __this, Object * target, MethodInfo_1 * theFunction, MethodInfo * method)); DO_APP_FUNC(0x016F0D00, bool, InvokableCall_2_System_Int32_System_Boolean__Find, (InvokableCall_2_System_Int32_System_Boolean_ * __this, Object * targetObj, MethodInfo_1 * method_1, MethodInfo * method)); DO_APP_FUNC(0x016F3500, void, InvokableCall_2_System_Int32_System_Boolean__Invoke, (InvokableCall_2_System_Int32_System_Boolean_ * __this, Object__Array * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2600, InvokableCall_2_System_Int32_System_Boolean__Invoke__MethodInfo); DO_APP_FUNC(0x016F36E0, void, InvokableCall_2_System_Int32_System_Boolean__Invoke_1, (InvokableCall_2_System_Int32_System_Boolean_ * __this, int32_t args0, bool args1, MethodInfo * method)); DO_APP_FUNC(0x016F06D0, void, InvokableCall_2_System_Int32_System_Boolean__add_Delegate, (InvokableCall_2_System_Int32_System_Boolean_ * __this, UnityAction_2_System_Int32_System_Boolean_ * value, MethodInfo * method)); DO_APP_FUNC(0x016F07E0, void, InvokableCall_2_System_Int32_System_Boolean__remove_Delegate, (InvokableCall_2_System_Int32_System_Boolean_ * __this, UnityAction_2_System_Int32_System_Boolean_ * value, MethodInfo * method)); @@ -158656,6 +175571,7 @@ DO_APP_FUNC(0x010470D0, void, InvokableCall_2_System_Int32_System_Single___ctor, DO_APP_FUNC(0x016F3750, void, InvokableCall_2_System_Int32_System_Single___ctor_1, (InvokableCall_2_System_Int32_System_Single_ * __this, Object * target, MethodInfo_1 * theFunction, MethodInfo * method)); DO_APP_FUNC(0x016F0D00, bool, InvokableCall_2_System_Int32_System_Single__Find, (InvokableCall_2_System_Int32_System_Single_ * __this, Object * targetObj, MethodInfo_1 * method_1, MethodInfo * method)); DO_APP_FUNC(0x016F3A10, void, InvokableCall_2_System_Int32_System_Single__Invoke, (InvokableCall_2_System_Int32_System_Single_ * __this, Object__Array * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD25F8, InvokableCall_2_System_Int32_System_Single__Invoke__MethodInfo); DO_APP_FUNC(0x016F3BF0, void, InvokableCall_2_System_Int32_System_Single__Invoke_1, (InvokableCall_2_System_Int32_System_Single_ * __this, int32_t args0, float args1, MethodInfo * method)); DO_APP_FUNC(0x016F06D0, void, InvokableCall_2_System_Int32_System_Single__add_Delegate, (InvokableCall_2_System_Int32_System_Single_ * __this, UnityAction_2_System_Int32_System_Single_ * value, MethodInfo * method)); DO_APP_FUNC(0x016F07E0, void, InvokableCall_2_System_Int32_System_Single__remove_Delegate, (InvokableCall_2_System_Int32_System_Single_ * __this, UnityAction_2_System_Int32_System_Single_ * value, MethodInfo * method)); @@ -158663,6 +175579,7 @@ DO_APP_FUNC(0x010470D0, void, InvokableCall_2_System_Object_System_Boolean___cto DO_APP_FUNC(0x016F3C60, void, InvokableCall_2_System_Object_System_Boolean___ctor_1, (InvokableCall_2_System_Object_System_Boolean_ * __this, Object * target, MethodInfo_1 * theFunction, MethodInfo * method)); DO_APP_FUNC(0x016F0D00, bool, InvokableCall_2_System_Object_System_Boolean__Find, (InvokableCall_2_System_Object_System_Boolean_ * __this, Object * targetObj, MethodInfo_1 * method_1, MethodInfo * method)); DO_APP_FUNC(0x016F3F20, void, InvokableCall_2_System_Object_System_Boolean__Invoke, (InvokableCall_2_System_Object_System_Boolean_ * __this, Object__Array * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2610, InvokableCall_2_System_Object_System_Boolean__Invoke__MethodInfo); DO_APP_FUNC(0x016F4120, void, InvokableCall_2_System_Object_System_Boolean__Invoke_1, (InvokableCall_2_System_Object_System_Boolean_ * __this, Object * args0, bool args1, MethodInfo * method)); DO_APP_FUNC(0x016F06D0, void, InvokableCall_2_System_Object_System_Boolean__add_Delegate, (InvokableCall_2_System_Object_System_Boolean_ * __this, UnityAction_2_System_Object_System_Boolean_ * value, MethodInfo * method)); DO_APP_FUNC(0x016F07E0, void, InvokableCall_2_System_Object_System_Boolean__remove_Delegate, (InvokableCall_2_System_Object_System_Boolean_ * __this, UnityAction_2_System_Object_System_Boolean_ * value, MethodInfo * method)); @@ -158670,6 +175587,7 @@ DO_APP_FUNC(0x010470D0, void, InvokableCall_2_System_Object_System_Int32___ctor, DO_APP_FUNC(0x016F41A0, void, InvokableCall_2_System_Object_System_Int32___ctor_1, (InvokableCall_2_System_Object_System_Int32_ * __this, Object * target, MethodInfo_1 * theFunction, MethodInfo * method)); DO_APP_FUNC(0x016F0D00, bool, InvokableCall_2_System_Object_System_Int32__Find, (InvokableCall_2_System_Object_System_Int32_ * __this, Object * targetObj, MethodInfo_1 * method_1, MethodInfo * method)); DO_APP_FUNC(0x016F4460, void, InvokableCall_2_System_Object_System_Int32__Invoke, (InvokableCall_2_System_Object_System_Int32_ * __this, Object__Array * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2618, InvokableCall_2_System_Object_System_Int32__Invoke__MethodInfo); DO_APP_FUNC(0x016F4650, void, InvokableCall_2_System_Object_System_Int32__Invoke_1, (InvokableCall_2_System_Object_System_Int32_ * __this, Object * args0, int32_t args1, MethodInfo * method)); DO_APP_FUNC(0x016F06D0, void, InvokableCall_2_System_Object_System_Int32__add_Delegate, (InvokableCall_2_System_Object_System_Int32_ * __this, UnityAction_2_System_Object_System_Int32_ * value, MethodInfo * method)); DO_APP_FUNC(0x016F07E0, void, InvokableCall_2_System_Object_System_Int32__remove_Delegate, (InvokableCall_2_System_Object_System_Int32_ * __this, UnityAction_2_System_Object_System_Int32_ * value, MethodInfo * method)); @@ -158677,6 +175595,7 @@ DO_APP_FUNC(0x010470D0, void, InvokableCall_2_System_Object_System_Object___ctor DO_APP_FUNC(0x016F46C0, void, InvokableCall_2_System_Object_System_Object___ctor_1, (InvokableCall_2_System_Object_System_Object_ * __this, Object * target, MethodInfo_1 * theFunction, MethodInfo * method)); DO_APP_FUNC(0x016F0D00, bool, InvokableCall_2_System_Object_System_Object__Find, (InvokableCall_2_System_Object_System_Object_ * __this, Object * targetObj, MethodInfo_1 * method_1, MethodInfo * method)); DO_APP_FUNC(0x016F4980, void, InvokableCall_2_System_Object_System_Object__Invoke, (InvokableCall_2_System_Object_System_Object_ * __this, Object__Array * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2608, InvokableCall_2_System_Object_System_Object__Invoke__MethodInfo); DO_APP_FUNC(0x016F4B80, void, InvokableCall_2_System_Object_System_Object__Invoke_1, (InvokableCall_2_System_Object_System_Object_ * __this, Object * args0, Object * args1, MethodInfo * method)); DO_APP_FUNC(0x016F06D0, void, InvokableCall_2_System_Object_System_Object__add_Delegate, (InvokableCall_2_System_Object_System_Object_ * __this, UnityAction_2_System_Object_System_Object_ * value, MethodInfo * method)); DO_APP_FUNC(0x016F07E0, void, InvokableCall_2_System_Object_System_Object__remove_Delegate, (InvokableCall_2_System_Object_System_Object_ * __this, UnityAction_2_System_Object_System_Object_ * value, MethodInfo * method)); @@ -158684,6 +175603,7 @@ DO_APP_FUNC(0x010470D0, void, InvokableCall_2_System_Object_System_Single___ctor DO_APP_FUNC(0x016F4BF0, void, InvokableCall_2_System_Object_System_Single___ctor_1, (InvokableCall_2_System_Object_System_Single_ * __this, Object * target, MethodInfo_1 * theFunction, MethodInfo * method)); DO_APP_FUNC(0x016F0D00, bool, InvokableCall_2_System_Object_System_Single__Find, (InvokableCall_2_System_Object_System_Single_ * __this, Object * targetObj, MethodInfo_1 * method_1, MethodInfo * method)); DO_APP_FUNC(0x016F4EB0, void, InvokableCall_2_System_Object_System_Single__Invoke, (InvokableCall_2_System_Object_System_Single_ * __this, Object__Array * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD25E0, InvokableCall_2_System_Object_System_Single__Invoke__MethodInfo); DO_APP_FUNC(0x016F50B0, void, InvokableCall_2_System_Object_System_Single__Invoke_1, (InvokableCall_2_System_Object_System_Single_ * __this, Object * args0, float args1, MethodInfo * method)); DO_APP_FUNC(0x016F06D0, void, InvokableCall_2_System_Object_System_Single__add_Delegate, (InvokableCall_2_System_Object_System_Single_ * __this, UnityAction_2_System_Object_System_Single_ * value, MethodInfo * method)); DO_APP_FUNC(0x016F07E0, void, InvokableCall_2_System_Object_System_Single__remove_Delegate, (InvokableCall_2_System_Object_System_Single_ * __this, UnityAction_2_System_Object_System_Single_ * value, MethodInfo * method)); @@ -158691,6 +175611,7 @@ DO_APP_FUNC(0x010470D0, void, InvokableCall_2_System_Single_System_Single___ctor DO_APP_FUNC(0x016F5120, void, InvokableCall_2_System_Single_System_Single___ctor_1, (InvokableCall_2_System_Single_System_Single_ * __this, Object * target, MethodInfo_1 * theFunction, MethodInfo * method)); DO_APP_FUNC(0x016F0D00, bool, InvokableCall_2_System_Single_System_Single__Find, (InvokableCall_2_System_Single_System_Single_ * __this, Object * targetObj, MethodInfo_1 * method_1, MethodInfo * method)); DO_APP_FUNC(0x016F53E0, void, InvokableCall_2_System_Single_System_Single__Invoke, (InvokableCall_2_System_Single_System_Single_ * __this, Object__Array * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD25D0, InvokableCall_2_System_Single_System_Single__Invoke__MethodInfo); DO_APP_FUNC(0x016F55D0, void, InvokableCall_2_System_Single_System_Single__Invoke_1, (InvokableCall_2_System_Single_System_Single_ * __this, float args0, float args1, MethodInfo * method)); DO_APP_FUNC(0x016F06D0, void, InvokableCall_2_System_Single_System_Single__add_Delegate, (InvokableCall_2_System_Single_System_Single_ * __this, UnityAction_2_System_Single_System_Single_ * value, MethodInfo * method)); DO_APP_FUNC(0x016F07E0, void, InvokableCall_2_System_Single_System_Single__remove_Delegate, (InvokableCall_2_System_Single_System_Single_ * __this, UnityAction_2_System_Single_System_Single_ * value, MethodInfo * method)); @@ -158698,6 +175619,7 @@ DO_APP_FUNC(0x010470D0, void, InvokableCall_2_UnityEngine_Vector3_System_Single_ DO_APP_FUNC(0x016F5640, void, InvokableCall_2_UnityEngine_Vector3_System_Single___ctor_1, (InvokableCall_2_UnityEngine_Vector3_System_Single_ * __this, Object * target, MethodInfo_1 * theFunction, MethodInfo * method)); DO_APP_FUNC(0x016F0D00, bool, InvokableCall_2_UnityEngine_Vector3_System_Single__Find, (InvokableCall_2_UnityEngine_Vector3_System_Single_ * __this, Object * targetObj, MethodInfo_1 * method_1, MethodInfo * method)); DO_APP_FUNC(0x016F5900, void, InvokableCall_2_UnityEngine_Vector3_System_Single__Invoke, (InvokableCall_2_UnityEngine_Vector3_System_Single_ * __this, Object__Array * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD25D8, InvokableCall_2_UnityEngine_Vector3_System_Single__Invoke__MethodInfo); DO_APP_FUNC(0x016F5B00, void, InvokableCall_2_UnityEngine_Vector3_System_Single__Invoke_1, (InvokableCall_2_UnityEngine_Vector3_System_Single_ * __this, Vector3 args0, float args1, MethodInfo * method)); DO_APP_FUNC(0x016F06D0, void, InvokableCall_2_UnityEngine_Vector3_System_Single__add_Delegate, (InvokableCall_2_UnityEngine_Vector3_System_Single_ * __this, UnityAction_2_UnityEngine_Vector3_System_Single_ * value, MethodInfo * method)); DO_APP_FUNC(0x016F07E0, void, InvokableCall_2_UnityEngine_Vector3_System_Single__remove_Delegate, (InvokableCall_2_UnityEngine_Vector3_System_Single_ * __this, UnityAction_2_UnityEngine_Vector3_System_Single_ * value, MethodInfo * method)); @@ -158705,6 +175627,7 @@ DO_APP_FUNC(0x010470D0, void, InvokableCall_2_UnityEngine_Vector3_UnityEngine_Ve DO_APP_FUNC(0x016F5B90, void, InvokableCall_2_UnityEngine_Vector3_UnityEngine_Vector3___ctor_1, (InvokableCall_2_UnityEngine_Vector3_UnityEngine_Vector3_ * __this, Object * target, MethodInfo_1 * theFunction, MethodInfo * method)); DO_APP_FUNC(0x016F0D00, bool, InvokableCall_2_UnityEngine_Vector3_UnityEngine_Vector3__Find, (InvokableCall_2_UnityEngine_Vector3_UnityEngine_Vector3_ * __this, Object * targetObj, MethodInfo_1 * method_1, MethodInfo * method)); DO_APP_FUNC(0x016F5E50, void, InvokableCall_2_UnityEngine_Vector3_UnityEngine_Vector3__Invoke, (InvokableCall_2_UnityEngine_Vector3_UnityEngine_Vector3_ * __this, Object__Array * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD25F0, InvokableCall_2_UnityEngine_Vector3_UnityEngine_Vector3__Invoke__MethodInfo); DO_APP_FUNC(0x016F6060, void, InvokableCall_2_UnityEngine_Vector3_UnityEngine_Vector3__Invoke_1, (InvokableCall_2_UnityEngine_Vector3_UnityEngine_Vector3_ * __this, Vector3 args0, Vector3 args1, MethodInfo * method)); DO_APP_FUNC(0x016F06D0, void, InvokableCall_2_UnityEngine_Vector3_UnityEngine_Vector3__add_Delegate, (InvokableCall_2_UnityEngine_Vector3_UnityEngine_Vector3_ * __this, UnityAction_2_UnityEngine_Vector3_UnityEngine_Vector3_ * value, MethodInfo * method)); DO_APP_FUNC(0x016F07E0, void, InvokableCall_2_UnityEngine_Vector3_UnityEngine_Vector3__remove_Delegate, (InvokableCall_2_UnityEngine_Vector3_UnityEngine_Vector3_ * __this, UnityAction_2_UnityEngine_Vector3_UnityEngine_Vector3_ * value, MethodInfo * method)); @@ -158712,6 +175635,7 @@ DO_APP_FUNC(0x010470D0, void, InvokableCall_3_System_Object_System_Int32_System_ DO_APP_FUNC(0x016F6100, void, InvokableCall_3_System_Object_System_Int32_System_Int32___ctor_1, (InvokableCall_3_System_Object_System_Int32_System_Int32_ * __this, Object * target, MethodInfo_1 * theFunction, MethodInfo * method)); DO_APP_FUNC(0x016F0D00, bool, InvokableCall_3_System_Object_System_Int32_System_Int32__Find, (InvokableCall_3_System_Object_System_Int32_System_Int32_ * __this, Object * targetObj, MethodInfo_1 * method_1, MethodInfo * method)); DO_APP_FUNC(0x016F63C0, void, InvokableCall_3_System_Object_System_Int32_System_Int32__Invoke, (InvokableCall_3_System_Object_System_Int32_System_Int32_ * __this, Object__Array * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD25E8, InvokableCall_3_System_Object_System_Int32_System_Int32__Invoke__MethodInfo); DO_APP_FUNC(0x016F6630, void, InvokableCall_3_System_Object_System_Int32_System_Int32__Invoke_1, (InvokableCall_3_System_Object_System_Int32_System_Int32_ * __this, Object * args0, int32_t args1, int32_t args2, MethodInfo * method)); DO_APP_FUNC(0x016F06D0, void, InvokableCall_3_System_Object_System_Int32_System_Int32__add_Delegate, (InvokableCall_3_System_Object_System_Int32_System_Int32_ * __this, UnityAction_3_System_Object_System_Int32_System_Int32_ * value, MethodInfo * method)); DO_APP_FUNC(0x016F07E0, void, InvokableCall_3_System_Object_System_Int32_System_Int32__remove_Delegate, (InvokableCall_3_System_Object_System_Int32_System_Int32_ * __this, UnityAction_3_System_Object_System_Int32_System_Int32_ * value, MethodInfo * method)); @@ -158719,6 +175643,7 @@ DO_APP_FUNC(0x010470D0, void, InvokableCall_3_System_Object_System_Object_System DO_APP_FUNC(0x016F66B0, void, InvokableCall_3_System_Object_System_Object_System_Object___ctor_1, (InvokableCall_3_System_Object_System_Object_System_Object_ * __this, Object * target, MethodInfo_1 * theFunction, MethodInfo * method)); DO_APP_FUNC(0x016F0D00, bool, InvokableCall_3_System_Object_System_Object_System_Object__Find, (InvokableCall_3_System_Object_System_Object_System_Object_ * __this, Object * targetObj, MethodInfo_1 * method_1, MethodInfo * method)); DO_APP_FUNC(0x016F6970, void, InvokableCall_3_System_Object_System_Object_System_Object__Invoke, (InvokableCall_3_System_Object_System_Object_System_Object_ * __this, Object__Array * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD25A8, InvokableCall_3_System_Object_System_Object_System_Object__Invoke__MethodInfo); DO_APP_FUNC(0x016F6C00, void, InvokableCall_3_System_Object_System_Object_System_Object__Invoke_1, (InvokableCall_3_System_Object_System_Object_System_Object_ * __this, Object * args0, Object * args1, Object * args2, MethodInfo * method)); DO_APP_FUNC(0x016F06D0, void, InvokableCall_3_System_Object_System_Object_System_Object__add_Delegate, (InvokableCall_3_System_Object_System_Object_System_Object_ * __this, UnityAction_3_System_Object_System_Object_System_Object_ * value, MethodInfo * method)); DO_APP_FUNC(0x016F07E0, void, InvokableCall_3_System_Object_System_Object_System_Object__remove_Delegate, (InvokableCall_3_System_Object_System_Object_System_Object_ * __this, UnityAction_3_System_Object_System_Object_System_Object_ * value, MethodInfo * method)); @@ -158726,6 +175651,7 @@ DO_APP_FUNC(0x010470D0, void, InvokableCall_3_System_Single_System_Single_System DO_APP_FUNC(0x016F6C80, void, InvokableCall_3_System_Single_System_Single_System_Single___ctor_1, (InvokableCall_3_System_Single_System_Single_System_Single_ * __this, Object * target, MethodInfo_1 * theFunction, MethodInfo * method)); DO_APP_FUNC(0x016F0D00, bool, InvokableCall_3_System_Single_System_Single_System_Single__Find, (InvokableCall_3_System_Single_System_Single_System_Single_ * __this, Object * targetObj, MethodInfo_1 * method_1, MethodInfo * method)); DO_APP_FUNC(0x016F6F40, void, InvokableCall_3_System_Single_System_Single_System_Single__Invoke, (InvokableCall_3_System_Single_System_Single_System_Single_ * __this, Object__Array * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD25B0, InvokableCall_3_System_Single_System_Single_System_Single__Invoke__MethodInfo); DO_APP_FUNC(0x016F71D0, void, InvokableCall_3_System_Single_System_Single_System_Single__Invoke_1, (InvokableCall_3_System_Single_System_Single_System_Single_ * __this, float args0, float args1, float args2, MethodInfo * method)); DO_APP_FUNC(0x016F06D0, void, InvokableCall_3_System_Single_System_Single_System_Single__add_Delegate, (InvokableCall_3_System_Single_System_Single_System_Single_ * __this, UnityAction_3_System_Single_System_Single_System_Single_ * value, MethodInfo * method)); DO_APP_FUNC(0x016F07E0, void, InvokableCall_3_System_Single_System_Single_System_Single__remove_Delegate, (InvokableCall_3_System_Single_System_Single_System_Single_ * __this, UnityAction_3_System_Single_System_Single_System_Single_ * value, MethodInfo * method)); @@ -158733,6 +175659,7 @@ DO_APP_FUNC(0x010470D0, void, InvokableCall_3_UnityEngine_Vector3_UnityEngine_Ve DO_APP_FUNC(0x016F7260, void, InvokableCall_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Object___ctor_1, (InvokableCall_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Object_ * __this, Object * target, MethodInfo_1 * theFunction, MethodInfo * method)); DO_APP_FUNC(0x016F0D00, bool, InvokableCall_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Object__Find, (InvokableCall_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Object_ * __this, Object * targetObj, MethodInfo_1 * method_1, MethodInfo * method)); DO_APP_FUNC(0x016F7520, void, InvokableCall_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Object__Invoke, (InvokableCall_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Object_ * __this, Object__Array * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD25A0, InvokableCall_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Object__Invoke__MethodInfo); DO_APP_FUNC(0x016F77E0, void, InvokableCall_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Object__Invoke_1, (InvokableCall_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Object_ * __this, Vector3 args0, Vector3 args1, Object * args2, MethodInfo * method)); DO_APP_FUNC(0x016F06D0, void, InvokableCall_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Object__add_Delegate, (InvokableCall_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Object_ * __this, UnityAction_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Object_ * value, MethodInfo * method)); DO_APP_FUNC(0x016F07E0, void, InvokableCall_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Object__remove_Delegate, (InvokableCall_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Object_ * __this, UnityAction_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Object_ * value, MethodInfo * method)); @@ -158740,20 +175667,24 @@ DO_APP_FUNC(0x010470D0, void, InvokableCall_3_UnityEngine_Vector3_UnityEngine_Ve DO_APP_FUNC(0x016F7890, void, InvokableCall_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Single___ctor_1, (InvokableCall_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Single_ * __this, Object * target, MethodInfo_1 * theFunction, MethodInfo * method)); DO_APP_FUNC(0x016F0D00, bool, InvokableCall_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Single__Find, (InvokableCall_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Single_ * __this, Object * targetObj, MethodInfo_1 * method_1, MethodInfo * method)); DO_APP_FUNC(0x016F7B50, void, InvokableCall_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Single__Invoke, (InvokableCall_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Single_ * __this, Object__Array * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD25C8, InvokableCall_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Single__Invoke__MethodInfo); DO_APP_FUNC(0x016F7E00, void, InvokableCall_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Single__Invoke_1, (InvokableCall_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Single_ * __this, Vector3 args0, Vector3 args1, float args2, MethodInfo * method)); DO_APP_FUNC(0x016F06D0, void, InvokableCall_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Single__add_Delegate, (InvokableCall_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Single_ * __this, UnityAction_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Single_ * value, MethodInfo * method)); DO_APP_FUNC(0x016F07E0, void, InvokableCall_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Single__remove_Delegate, (InvokableCall_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Single_ * __this, UnityAction_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Single_ * value, MethodInfo * method)); DO_APP_FUNC(0x016F7EB0, void, InvokableCall_4_System_Object_System_Object_System_Object_System_Object___ctor, (InvokableCall_4_System_Object_System_Object_System_Object_System_Object_ * __this, Object * target, MethodInfo_1 * theFunction, MethodInfo * method)); DO_APP_FUNC(0x016F0D00, bool, InvokableCall_4_System_Object_System_Object_System_Object_System_Object__Find, (InvokableCall_4_System_Object_System_Object_System_Object_System_Object_ * __this, Object * targetObj, MethodInfo_1 * method_1, MethodInfo * method)); DO_APP_FUNC(0x016F8170, void, InvokableCall_4_System_Object_System_Object_System_Object_System_Object__Invoke, (InvokableCall_4_System_Object_System_Object_System_Object_System_Object_ * __this, Object__Array * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD25B8, InvokableCall_4_System_Object_System_Object_System_Object_System_Object__Invoke__MethodInfo); DO_APP_FUNC(0x016F84B0, void, InvokableCall_4_System_Object_System_Object_System_Object_System_Object__Invoke_1, (InvokableCall_4_System_Object_System_Object_System_Object_System_Object_ * __this, Object * args0, Object * args1, Object * args2, Object * args3, MethodInfo * method)); DO_APP_FUNC(0x016F8540, void, InvokableCall_4_System_Object_System_Single_System_Boolean_System_Boolean___ctor, (InvokableCall_4_System_Object_System_Single_System_Boolean_System_Boolean_ * __this, Object * target, MethodInfo_1 * theFunction, MethodInfo * method)); DO_APP_FUNC(0x016F0D00, bool, InvokableCall_4_System_Object_System_Single_System_Boolean_System_Boolean__Find, (InvokableCall_4_System_Object_System_Single_System_Boolean_System_Boolean_ * __this, Object * targetObj, MethodInfo_1 * method_1, MethodInfo * method)); DO_APP_FUNC(0x016F8800, void, InvokableCall_4_System_Object_System_Single_System_Boolean_System_Boolean__Invoke, (InvokableCall_4_System_Object_System_Single_System_Boolean_System_Boolean_ * __this, Object__Array * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD25C0, InvokableCall_4_System_Object_System_Single_System_Boolean_System_Boolean__Invoke__MethodInfo); DO_APP_FUNC(0x016F8B20, void, InvokableCall_4_System_Object_System_Single_System_Boolean_System_Boolean__Invoke_1, (InvokableCall_4_System_Object_System_Single_System_Boolean_System_Boolean_ * __this, Object * args0, float args1, bool args2, bool args3, MethodInfo * method)); DO_APP_FUNC(0x016F8BB0, void, InvokableCall_4_System_Single_UnityEngine_Vector3_UnityEngine_Vector3_System_Object___ctor, (InvokableCall_4_System_Single_UnityEngine_Vector3_UnityEngine_Vector3_System_Object_ * __this, Object * target, MethodInfo_1 * theFunction, MethodInfo * method)); DO_APP_FUNC(0x016F0D00, bool, InvokableCall_4_System_Single_UnityEngine_Vector3_UnityEngine_Vector3_System_Object__Find, (InvokableCall_4_System_Single_UnityEngine_Vector3_UnityEngine_Vector3_System_Object_ * __this, Object * targetObj, MethodInfo_1 * method_1, MethodInfo * method)); DO_APP_FUNC(0x016F8E70, void, InvokableCall_4_System_Single_UnityEngine_Vector3_UnityEngine_Vector3_System_Object__Invoke, (InvokableCall_4_System_Single_UnityEngine_Vector3_UnityEngine_Vector3_System_Object_ * __this, Object__Array * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2558, InvokableCall_4_System_Single_UnityEngine_Vector3_UnityEngine_Vector3_System_Object__Invoke__MethodInfo); DO_APP_FUNC(0x016F91B0, void, InvokableCall_4_System_Single_UnityEngine_Vector3_UnityEngine_Vector3_System_Object__Invoke_1, (InvokableCall_4_System_Single_UnityEngine_Vector3_UnityEngine_Vector3_System_Object_ * __this, float args0, Vector3 args1, Vector3 args2, Object * args3, MethodInfo * method)); DO_APP_FUNC(0x016F92A0, void, UQuery_IsOfType_1_System_Object___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, UQuery_IsOfType_1_System_Object___ctor, (UQuery_IsOfType_1_System_Object_ * __this, MethodInfo * method)); @@ -158764,6 +175695,7 @@ DO_APP_FUNC(0x016F94A0, void, Enumerable_Iterator_1_System_Collections_Generic_K DO_APP_FUNC(0x016F94C0, IEnumerator_1_KeyValuePair_2_System_Guid_System_Object_ *, Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2__GetEnumerator, (Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015F3E10, IEnumerator *, Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2__System_Collections_IEnumerable_GetEnumerator, (Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016F9610, void, Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2__System_Collections_IEnumerator_Reset, (Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2550, Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x016F9590, Object *, Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2__System_Collections_IEnumerator_get_Current, (Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F97060, KeyValuePair_2_System_Guid_System_Object_, Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2__get_Current, (Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016F9420, void, Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2__1__ctor, (Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2__1 * __this, MethodInfo * method)); @@ -158771,6 +175703,7 @@ DO_APP_FUNC(0x016F9660, void, Enumerable_Iterator_1_System_Collections_Generic_K DO_APP_FUNC(0x016F94C0, IEnumerator_1_KeyValuePair_2_System_Int32Enum_System_Object_ *, Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2__1_GetEnumerator, (Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x015F3E10, IEnumerator *, Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2__1_System_Collections_IEnumerable_GetEnumerator, (Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x016F96F0, void, Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2__1_System_Collections_IEnumerator_Reset, (Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2__1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2538, Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2__1_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x016F9670, Object *, Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2__1_System_Collections_IEnumerator_get_Current, (Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x0093E890, KeyValuePair_2_System_Int32Enum_System_Object_, Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2__1_get_Current, (Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x016F9420, void, Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2__2__ctor, (Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2__2 * __this, MethodInfo * method)); @@ -158778,6 +175711,7 @@ DO_APP_FUNC(0x016F9660, void, Enumerable_Iterator_1_System_Collections_Generic_K DO_APP_FUNC(0x016F94C0, IEnumerator_1_KeyValuePair_2_System_Object_System_Object_ *, Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2__2_GetEnumerator, (Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2__2 * __this, MethodInfo * method)); DO_APP_FUNC(0x015F3E10, IEnumerator *, Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2__2_System_Collections_IEnumerable_GetEnumerator, (Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2__2 * __this, MethodInfo * method)); DO_APP_FUNC(0x016F9740, void, Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2__2_System_Collections_IEnumerator_Reset, (Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2__2 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2530, Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2__2_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x016F9670, Object *, Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2__2_System_Collections_IEnumerator_get_Current, (Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2__2 * __this, MethodInfo * method)); DO_APP_FUNC(0x0093E890, KeyValuePair_2_System_Object_System_Object_, Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2__2_get_Current, (Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2__2 * __this, MethodInfo * method)); DO_APP_FUNC(0x016F9420, void, Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2__3__ctor, (Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2__3 * __this, MethodInfo * method)); @@ -158785,6 +175719,7 @@ DO_APP_FUNC(0x016F97C0, void, Enumerable_Iterator_1_System_Collections_Generic_K DO_APP_FUNC(0x016F94C0, IEnumerator_1_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ *, Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2__3_GetEnumerator, (Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2__3 * __this, MethodInfo * method)); DO_APP_FUNC(0x015F3E10, IEnumerator *, Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2__3_System_Collections_IEnumerable_GetEnumerator, (Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2__3 * __this, MethodInfo * method)); DO_APP_FUNC(0x016F9880, void, Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2__3_System_Collections_IEnumerator_Reset, (Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2__3 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2548, Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2__3_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x016F97E0, Object *, Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2__3_System_Collections_IEnumerator_get_Current, (Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2__3 * __this, MethodInfo * method)); DO_APP_FUNC(0x016F9790, KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_, Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2__3_get_Current, (Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2__3 * __this, MethodInfo * method)); DO_APP_FUNC(0x016F9420, void, Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2__4__ctor, (Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2__4 * __this, MethodInfo * method)); @@ -158792,6 +175727,7 @@ DO_APP_FUNC(0x016F9660, void, Enumerable_Iterator_1_System_Collections_Generic_K DO_APP_FUNC(0x016F94C0, IEnumerator_1_KeyValuePair_2_System_UInt16_System_Object_ *, Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2__4_GetEnumerator, (Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2__4 * __this, MethodInfo * method)); DO_APP_FUNC(0x015F3E10, IEnumerator *, Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2__4_System_Collections_IEnumerable_GetEnumerator, (Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2__4 * __this, MethodInfo * method)); DO_APP_FUNC(0x016F98D0, void, Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2__4_System_Collections_IEnumerator_Reset, (Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2__4 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2540, Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2__4_System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x016F9670, Object *, Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2__4_System_Collections_IEnumerator_get_Current, (Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2__4 * __this, MethodInfo * method)); DO_APP_FUNC(0x0093E890, KeyValuePair_2_System_UInt16_System_Object_, Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2__4_get_Current, (Enumerable_Iterator_1_System_Collections_Generic_KeyValuePair_2__4 * __this, MethodInfo * method)); DO_APP_FUNC(0x016F9420, void, Enumerable_Iterator_1_Pathfinding_Connection___ctor, (Enumerable_Iterator_1_Pathfinding_Connection_ * __this, MethodInfo * method)); @@ -158799,6 +175735,7 @@ DO_APP_FUNC(0x016F9660, void, Enumerable_Iterator_1_Pathfinding_Connection__Disp DO_APP_FUNC(0x016F94C0, IEnumerator_1_Pathfinding_Connection__1 *, Enumerable_Iterator_1_Pathfinding_Connection__GetEnumerator, (Enumerable_Iterator_1_Pathfinding_Connection_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015F3E10, IEnumerator *, Enumerable_Iterator_1_Pathfinding_Connection__System_Collections_IEnumerable_GetEnumerator, (Enumerable_Iterator_1_Pathfinding_Connection_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016F9920, void, Enumerable_Iterator_1_Pathfinding_Connection__System_Collections_IEnumerator_Reset, (Enumerable_Iterator_1_Pathfinding_Connection_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2588, Enumerable_Iterator_1_Pathfinding_Connection__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x016F9670, Object *, Enumerable_Iterator_1_Pathfinding_Connection__System_Collections_IEnumerator_get_Current, (Enumerable_Iterator_1_Pathfinding_Connection_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0093E890, Connection, Enumerable_Iterator_1_Pathfinding_Connection__get_Current, (Enumerable_Iterator_1_Pathfinding_Connection_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016F9420, void, Enumerable_Iterator_1_System_Int32___ctor, (Enumerable_Iterator_1_System_Int32_ * __this, MethodInfo * method)); @@ -158806,6 +175743,7 @@ DO_APP_FUNC(0x016F9970, void, Enumerable_Iterator_1_System_Int32__Dispose, (Enum DO_APP_FUNC(0x016F94C0, IEnumerator_1_System_Int32_ *, Enumerable_Iterator_1_System_Int32__GetEnumerator, (Enumerable_Iterator_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015F3E10, IEnumerator *, Enumerable_Iterator_1_System_Int32__System_Collections_IEnumerable_GetEnumerator, (Enumerable_Iterator_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016F99F0, void, Enumerable_Iterator_1_System_Int32__System_Collections_IEnumerator_Reset, (Enumerable_Iterator_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2580, Enumerable_Iterator_1_System_Int32__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x016F9980, Object *, Enumerable_Iterator_1_System_Int32__System_Collections_IEnumerator_get_Current, (Enumerable_Iterator_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, Enumerable_Iterator_1_System_Int32__get_Current, (Enumerable_Iterator_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016F9420, void, Enumerable_Iterator_1_System_Int32Enum___ctor, (Enumerable_Iterator_1_System_Int32Enum_ * __this, MethodInfo * method)); @@ -158813,6 +175751,7 @@ DO_APP_FUNC(0x016F9970, void, Enumerable_Iterator_1_System_Int32Enum__Dispose, ( DO_APP_FUNC(0x016F94C0, IEnumerator_1_System_Int32Enum_ *, Enumerable_Iterator_1_System_Int32Enum__GetEnumerator, (Enumerable_Iterator_1_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015F3E10, IEnumerator *, Enumerable_Iterator_1_System_Int32Enum__System_Collections_IEnumerable_GetEnumerator, (Enumerable_Iterator_1_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016F9A40, void, Enumerable_Iterator_1_System_Int32Enum__System_Collections_IEnumerator_Reset, (Enumerable_Iterator_1_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2598, Enumerable_Iterator_1_System_Int32Enum__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x016F9980, Object *, Enumerable_Iterator_1_System_Int32Enum__System_Collections_IEnumerator_get_Current, (Enumerable_Iterator_1_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, Int32Enum__Enum, Enumerable_Iterator_1_System_Int32Enum__get_Current, (Enumerable_Iterator_1_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016F9420, void, Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_InternedString___ctor, (Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); @@ -158820,6 +175759,7 @@ DO_APP_FUNC(0x016F9660, void, Enumerable_Iterator_1_UnityEngine_InputSystem_Util DO_APP_FUNC(0x016F94C0, IEnumerator_1_UnityEngine_InputSystem_Utilities_InternedString_ *, Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_InternedString__GetEnumerator, (Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015F3E10, IEnumerator *, Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_InternedString__System_Collections_IEnumerable_GetEnumerator, (Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016F9A90, void, Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_InternedString__System_Collections_IEnumerator_Reset, (Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2590, Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_InternedString__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x016F9670, Object *, Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_InternedString__System_Collections_IEnumerator_get_Current, (Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0093E890, InternedString, Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_InternedString__get_Current, (Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016F9420, void, Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_NameAndParameters___ctor, (Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ * __this, MethodInfo * method)); @@ -158827,6 +175767,7 @@ DO_APP_FUNC(0x016F94A0, void, Enumerable_Iterator_1_UnityEngine_InputSystem_Util DO_APP_FUNC(0x016F94C0, IEnumerator_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ *, Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_NameAndParameters__GetEnumerator, (Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015F3E10, IEnumerator *, Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_NameAndParameters__System_Collections_IEnumerable_GetEnumerator, (Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016F9AE0, void, Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_NameAndParameters__System_Collections_IEnumerator_Reset, (Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2568, Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_NameAndParameters__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x016F9590, Object *, Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_NameAndParameters__System_Collections_IEnumerator_get_Current, (Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F97060, NameAndParameters, Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_NameAndParameters__get_Current, (Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016F9420, void, Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_NamedValue___ctor, (Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_NamedValue_ * __this, MethodInfo * method)); @@ -158834,6 +175775,7 @@ DO_APP_FUNC(0x016F94A0, void, Enumerable_Iterator_1_UnityEngine_InputSystem_Util DO_APP_FUNC(0x016F94C0, IEnumerator_1_UnityEngine_InputSystem_Utilities_NamedValue_ *, Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_NamedValue__GetEnumerator, (Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_NamedValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015F3E10, IEnumerator *, Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_NamedValue__System_Collections_IEnumerable_GetEnumerator, (Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_NamedValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016F9B30, void, Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_NamedValue__System_Collections_IEnumerator_Reset, (Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_NamedValue_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2560, Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_NamedValue__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x016F9590, Object *, Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_NamedValue__System_Collections_IEnumerator_get_Current, (Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_NamedValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F97060, NamedValue, Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_NamedValue__get_Current, (Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_NamedValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016F9420, void, Enumerable_Iterator_1_System_Object___ctor, (Enumerable_Iterator_1_System_Object_ * __this, MethodInfo * method)); @@ -158841,6 +175783,7 @@ DO_APP_FUNC(0x016F9B80, void, Enumerable_Iterator_1_System_Object__Dispose, (Enu DO_APP_FUNC(0x016F94C0, IEnumerator_1_System_Object_ *, Enumerable_Iterator_1_System_Object__GetEnumerator, (Enumerable_Iterator_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015F3E10, IEnumerator *, Enumerable_Iterator_1_System_Object__System_Collections_IEnumerable_GetEnumerator, (Enumerable_Iterator_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016F9B90, void, Enumerable_Iterator_1_System_Object__System_Collections_IEnumerator_Reset, (Enumerable_Iterator_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2578, Enumerable_Iterator_1_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x00FDB900, Object *, Enumerable_Iterator_1_System_Object__System_Collections_IEnumerator_get_Current, (Enumerable_Iterator_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, Enumerable_Iterator_1_System_Object__get_Current, (Enumerable_Iterator_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016F9420, void, Enumerable_Iterator_1_Photon_Bolt_Internal_PacketStats___ctor, (Enumerable_Iterator_1_Photon_Bolt_Internal_PacketStats_ * __this, MethodInfo * method)); @@ -158848,6 +175791,7 @@ DO_APP_FUNC(0x016F9BE0, void, Enumerable_Iterator_1_Photon_Bolt_Internal_PacketS DO_APP_FUNC(0x016F94C0, IEnumerator_1_Photon_Bolt_Internal_PacketStats_ *, Enumerable_Iterator_1_Photon_Bolt_Internal_PacketStats__GetEnumerator, (Enumerable_Iterator_1_Photon_Bolt_Internal_PacketStats_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015F3E10, IEnumerator *, Enumerable_Iterator_1_Photon_Bolt_Internal_PacketStats__System_Collections_IEnumerable_GetEnumerator, (Enumerable_Iterator_1_Photon_Bolt_Internal_PacketStats_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016F9C80, void, Enumerable_Iterator_1_Photon_Bolt_Internal_PacketStats__System_Collections_IEnumerator_Reset, (Enumerable_Iterator_1_Photon_Bolt_Internal_PacketStats_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2570, Enumerable_Iterator_1_Photon_Bolt_Internal_PacketStats__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x016F9C00, Object *, Enumerable_Iterator_1_Photon_Bolt_Internal_PacketStats__System_Collections_IEnumerator_get_Current, (Enumerable_Iterator_1_Photon_Bolt_Internal_PacketStats_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00606200, PacketStats, Enumerable_Iterator_1_Photon_Bolt_Internal_PacketStats__get_Current, (Enumerable_Iterator_1_Photon_Bolt_Internal_PacketStats_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016F9420, void, Enumerable_Iterator_1_Steamworks_SteamItemDef_t___ctor, (Enumerable_Iterator_1_Steamworks_SteamItemDef_t_ * __this, MethodInfo * method)); @@ -158855,6 +175799,7 @@ DO_APP_FUNC(0x016F9970, void, Enumerable_Iterator_1_Steamworks_SteamItemDef_t__D DO_APP_FUNC(0x016F94C0, IEnumerator_1_Steamworks_SteamItemDef_t_ *, Enumerable_Iterator_1_Steamworks_SteamItemDef_t__GetEnumerator, (Enumerable_Iterator_1_Steamworks_SteamItemDef_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015F3E10, IEnumerator *, Enumerable_Iterator_1_Steamworks_SteamItemDef_t__System_Collections_IEnumerable_GetEnumerator, (Enumerable_Iterator_1_Steamworks_SteamItemDef_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016F9CD0, void, Enumerable_Iterator_1_Steamworks_SteamItemDef_t__System_Collections_IEnumerator_Reset, (Enumerable_Iterator_1_Steamworks_SteamItemDef_t_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD24E0, Enumerable_Iterator_1_Steamworks_SteamItemDef_t__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x016F9980, Object *, Enumerable_Iterator_1_Steamworks_SteamItemDef_t__System_Collections_IEnumerator_get_Current, (Enumerable_Iterator_1_Steamworks_SteamItemDef_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, SteamItemDef_t, Enumerable_Iterator_1_Steamworks_SteamItemDef_t__get_Current, (Enumerable_Iterator_1_Steamworks_SteamItemDef_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016F9420, void, Enumerable_Iterator_1_Steamworks_SteamItemDetails_t___ctor, (Enumerable_Iterator_1_Steamworks_SteamItemDetails_t_ * __this, MethodInfo * method)); @@ -158862,6 +175807,7 @@ DO_APP_FUNC(0x016F9660, void, Enumerable_Iterator_1_Steamworks_SteamItemDetails_ DO_APP_FUNC(0x016F94C0, IEnumerator_1_Steamworks_SteamItemDetails_t_ *, Enumerable_Iterator_1_Steamworks_SteamItemDetails_t__GetEnumerator, (Enumerable_Iterator_1_Steamworks_SteamItemDetails_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015F3E10, IEnumerator *, Enumerable_Iterator_1_Steamworks_SteamItemDetails_t__System_Collections_IEnumerable_GetEnumerator, (Enumerable_Iterator_1_Steamworks_SteamItemDetails_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016F9D20, void, Enumerable_Iterator_1_Steamworks_SteamItemDetails_t__System_Collections_IEnumerator_Reset, (Enumerable_Iterator_1_Steamworks_SteamItemDetails_t_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD24D8, Enumerable_Iterator_1_Steamworks_SteamItemDetails_t__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x016F9670, Object *, Enumerable_Iterator_1_Steamworks_SteamItemDetails_t__System_Collections_IEnumerator_get_Current, (Enumerable_Iterator_1_Steamworks_SteamItemDetails_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0093E890, SteamItemDetails_t, Enumerable_Iterator_1_Steamworks_SteamItemDetails_t__get_Current, (Enumerable_Iterator_1_Steamworks_SteamItemDetails_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016F9420, void, Enumerable_Iterator_1_UnityEngine_UIElements_StyleSelectorPart___ctor, (Enumerable_Iterator_1_UnityEngine_UIElements_StyleSelectorPart_ * __this, MethodInfo * method)); @@ -158869,6 +175815,7 @@ DO_APP_FUNC(0x016F94A0, void, Enumerable_Iterator_1_UnityEngine_UIElements_Style DO_APP_FUNC(0x016F94C0, IEnumerator_1_UnityEngine_UIElements_StyleSelectorPart_ *, Enumerable_Iterator_1_UnityEngine_UIElements_StyleSelectorPart__GetEnumerator, (Enumerable_Iterator_1_UnityEngine_UIElements_StyleSelectorPart_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015F3E10, IEnumerator *, Enumerable_Iterator_1_UnityEngine_UIElements_StyleSelectorPart__System_Collections_IEnumerable_GetEnumerator, (Enumerable_Iterator_1_UnityEngine_UIElements_StyleSelectorPart_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016F9D70, void, Enumerable_Iterator_1_UnityEngine_UIElements_StyleSelectorPart__System_Collections_IEnumerator_Reset, (Enumerable_Iterator_1_UnityEngine_UIElements_StyleSelectorPart_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD24F0, Enumerable_Iterator_1_UnityEngine_UIElements_StyleSelectorPart__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x016F9590, Object *, Enumerable_Iterator_1_UnityEngine_UIElements_StyleSelectorPart__System_Collections_IEnumerator_get_Current, (Enumerable_Iterator_1_UnityEngine_UIElements_StyleSelectorPart_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F97060, StyleSelectorPart, Enumerable_Iterator_1_UnityEngine_UIElements_StyleSelectorPart__get_Current, (Enumerable_Iterator_1_UnityEngine_UIElements_StyleSelectorPart_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016F9420, void, Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_Substring___ctor, (Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_Substring_ * __this, MethodInfo * method)); @@ -158876,6 +175823,7 @@ DO_APP_FUNC(0x016F9660, void, Enumerable_Iterator_1_UnityEngine_InputSystem_Util DO_APP_FUNC(0x016F94C0, IEnumerator_1_UnityEngine_InputSystem_Utilities_Substring_ *, Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_Substring__GetEnumerator, (Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_Substring_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015F3E10, IEnumerator *, Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_Substring__System_Collections_IEnumerable_GetEnumerator, (Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_Substring_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016F9DC0, void, Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_Substring__System_Collections_IEnumerator_Reset, (Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_Substring_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD24E8, Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_Substring__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x016F9670, Object *, Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_Substring__System_Collections_IEnumerator_get_Current, (Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_Substring_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0093E890, Substring, Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_Substring__get_Current, (Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_Substring_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016F9420, void, Enumerable_Iterator_1_System_UInt32___ctor, (Enumerable_Iterator_1_System_UInt32_ * __this, MethodInfo * method)); @@ -158883,6 +175831,7 @@ DO_APP_FUNC(0x016F9970, void, Enumerable_Iterator_1_System_UInt32__Dispose, (Enu DO_APP_FUNC(0x016F94C0, IEnumerator_1_System_UInt32_ *, Enumerable_Iterator_1_System_UInt32__GetEnumerator, (Enumerable_Iterator_1_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015F3E10, IEnumerator *, Enumerable_Iterator_1_System_UInt32__System_Collections_IEnumerable_GetEnumerator, (Enumerable_Iterator_1_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016F9E10, void, Enumerable_Iterator_1_System_UInt32__System_Collections_IEnumerator_Reset, (Enumerable_Iterator_1_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD24C0, Enumerable_Iterator_1_System_UInt32__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x016F9980, Object *, Enumerable_Iterator_1_System_UInt32__System_Collections_IEnumerator_get_Current, (Enumerable_Iterator_1_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, uint32_t, Enumerable_Iterator_1_System_UInt32__get_Current, (Enumerable_Iterator_1_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016F9420, void, Enumerable_Iterator_1_UnityEngine_Vector2___ctor, (Enumerable_Iterator_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); @@ -158890,6 +175839,7 @@ DO_APP_FUNC(0x016F9B80, void, Enumerable_Iterator_1_UnityEngine_Vector2__Dispose DO_APP_FUNC(0x016F94C0, IEnumerator_1_UnityEngine_Vector2_ *, Enumerable_Iterator_1_UnityEngine_Vector2__GetEnumerator, (Enumerable_Iterator_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015F3E10, IEnumerator *, Enumerable_Iterator_1_UnityEngine_Vector2__System_Collections_IEnumerable_GetEnumerator, (Enumerable_Iterator_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016F9EC0, void, Enumerable_Iterator_1_UnityEngine_Vector2__System_Collections_IEnumerator_Reset, (Enumerable_Iterator_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD24B8, Enumerable_Iterator_1_UnityEngine_Vector2__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x016F9E60, Object *, Enumerable_Iterator_1_UnityEngine_Vector2__System_Collections_IEnumerator_get_Current, (Enumerable_Iterator_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00A79C10, Vector2, Enumerable_Iterator_1_UnityEngine_Vector2__get_Current, (Enumerable_Iterator_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016F9420, void, Enumerable_Iterator_1_UnityEngine_Vector3___ctor, (Enumerable_Iterator_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); @@ -158897,6 +175847,7 @@ DO_APP_FUNC(0x016F9BE0, void, Enumerable_Iterator_1_UnityEngine_Vector3__Dispose DO_APP_FUNC(0x016F94C0, IEnumerator_1_UnityEngine_Vector3_ *, Enumerable_Iterator_1_UnityEngine_Vector3__GetEnumerator, (Enumerable_Iterator_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015F3E10, IEnumerator *, Enumerable_Iterator_1_UnityEngine_Vector3__System_Collections_IEnumerable_GetEnumerator, (Enumerable_Iterator_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016F9F10, void, Enumerable_Iterator_1_UnityEngine_Vector3__System_Collections_IEnumerator_Reset, (Enumerable_Iterator_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD24D0, Enumerable_Iterator_1_UnityEngine_Vector3__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x016F9C00, Object *, Enumerable_Iterator_1_UnityEngine_Vector3__System_Collections_IEnumerator_get_Current, (Enumerable_Iterator_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00606200, Vector3, Enumerable_Iterator_1_UnityEngine_Vector3__get_Current, (Enumerable_Iterator_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016F9420, void, Enumerable_Iterator_1_System_Security_Cryptography_X509Certificates_X509ChainStatus___ctor, (Enumerable_Iterator_1_System_Security_Cryptography_X509Certificates_X509ChainStatus_ * __this, MethodInfo * method)); @@ -158904,6 +175855,7 @@ DO_APP_FUNC(0x016F9660, void, Enumerable_Iterator_1_System_Security_Cryptography DO_APP_FUNC(0x016F94C0, IEnumerator_1_System_Security_Cryptography_X509Certificates_X509ChainStatus_ *, Enumerable_Iterator_1_System_Security_Cryptography_X509Certificates_X509ChainStatus__GetEnumerator, (Enumerable_Iterator_1_System_Security_Cryptography_X509Certificates_X509ChainStatus_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015F3E10, IEnumerator *, Enumerable_Iterator_1_System_Security_Cryptography_X509Certificates_X509ChainStatus__System_Collections_IEnumerable_GetEnumerator, (Enumerable_Iterator_1_System_Security_Cryptography_X509Certificates_X509ChainStatus_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016F9F60, void, Enumerable_Iterator_1_System_Security_Cryptography_X509Certificates_X509ChainStatus__System_Collections_IEnumerator_Reset, (Enumerable_Iterator_1_System_Security_Cryptography_X509Certificates_X509ChainStatus_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD24C8, Enumerable_Iterator_1_System_Security_Cryptography_X509Certificates_X509ChainStatus__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x016F9670, Object *, Enumerable_Iterator_1_System_Security_Cryptography_X509Certificates_X509ChainStatus__System_Collections_IEnumerator_get_Current, (Enumerable_Iterator_1_System_Security_Cryptography_X509Certificates_X509ChainStatus_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0093E890, X509ChainStatus, Enumerable_Iterator_1_System_Security_Cryptography_X509Certificates_X509ChainStatus__get_Current, (Enumerable_Iterator_1_System_Security_Cryptography_X509Certificates_X509ChainStatus_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016F9420, void, Enumerable_Iterator_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere___ctor, (Enumerable_Iterator_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere_ * __this, MethodInfo * method)); @@ -158911,6 +175863,7 @@ DO_APP_FUNC(0x016F9FD0, void, Enumerable_Iterator_1_Kalagaan_HairDesignerExtensi DO_APP_FUNC(0x016F94C0, IEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere_ *, Enumerable_Iterator_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere__GetEnumerator, (Enumerable_Iterator_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015F3E10, IEnumerator *, Enumerable_Iterator_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere__System_Collections_IEnumerable_GetEnumerator, (Enumerable_Iterator_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016FA080, void, Enumerable_Iterator_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere__System_Collections_IEnumerator_Reset, (Enumerable_Iterator_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2518, Enumerable_Iterator_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x016F9FF0, Object *, Enumerable_Iterator_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere__System_Collections_IEnumerator_get_Current, (Enumerable_Iterator_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016F9FB0, HairDesignerColliderBase_DualSphere, Enumerable_Iterator_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere__get_Current, (Enumerable_Iterator_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016F9420, void, Enumerable_Iterator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___ctor, (Enumerable_Iterator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); @@ -158918,6 +175871,7 @@ DO_APP_FUNC(0x016FA160, void, Enumerable_Iterator_1_UnityEngine_InputSystem_Layo DO_APP_FUNC(0x016F94C0, IEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ *, Enumerable_Iterator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__GetEnumerator, (Enumerable_Iterator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015F3E10, IEnumerator *, Enumerable_Iterator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__System_Collections_IEnumerable_GetEnumerator, (Enumerable_Iterator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016FA290, void, Enumerable_Iterator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__System_Collections_IEnumerator_Reset, (Enumerable_Iterator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2510, Enumerable_Iterator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x016FA190, Object *, Enumerable_Iterator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__System_Collections_IEnumerator_get_Current, (Enumerable_Iterator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016FA0D0, InputControlLayout_ControlItem, Enumerable_Iterator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__get_Current, (Enumerable_Iterator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016F9420, void, Enumerable_Iterator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb___ctor, (Enumerable_Iterator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ * __this, MethodInfo * method)); @@ -158925,6 +175879,7 @@ DO_APP_FUNC(0x016FA310, void, Enumerable_Iterator_1_JijFgftvqSztIyGNBBwSiwjdSDyI DO_APP_FUNC(0x016F94C0, IEnumerator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ *, Enumerable_Iterator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__GetEnumerator, (Enumerable_Iterator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015F3E10, IEnumerator *, Enumerable_Iterator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__System_Collections_IEnumerable_GetEnumerator, (Enumerable_Iterator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016FA3E0, void, Enumerable_Iterator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__System_Collections_IEnumerator_Reset, (Enumerable_Iterator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2528, Enumerable_Iterator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x016FA340, Object *, Enumerable_Iterator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__System_Collections_IEnumerator_get_Current, (Enumerable_Iterator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016FA2E0, JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb, Enumerable_Iterator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__get_Current, (Enumerable_Iterator_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016F9420, void, Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___ctor, (Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, MethodInfo * method)); @@ -158932,6 +175887,7 @@ DO_APP_FUNC(0x016FA310, void, Enumerable_Iterator_1_UnityEngine_InputSystem_Util DO_APP_FUNC(0x016F94C0, IEnumerator_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ *, Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__GetEnumerator, (Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015F3E10, IEnumerator *, Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__System_Collections_IEnumerable_GetEnumerator, (Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016FA430, void, Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__System_Collections_IEnumerator_Reset, (Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2520, Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x016FA340, Object *, Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__System_Collections_IEnumerator_get_Current, (Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016FA2E0, JsonParser_JsonValue, Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__get_Current, (Enumerable_Iterator_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016F9420, void, Enumerable_Iterator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData___ctor, (Enumerable_Iterator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData_ * __this, MethodInfo * method)); @@ -158939,6 +175895,7 @@ DO_APP_FUNC(0x016FA480, void, Enumerable_Iterator_1_Kalagaan_HairDesignerExtensi DO_APP_FUNC(0x016F94C0, IEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData_ *, Enumerable_Iterator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData__GetEnumerator, (Enumerable_Iterator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015F3E10, IEnumerator *, Enumerable_Iterator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData__System_Collections_IEnumerable_GetEnumerator, (Enumerable_Iterator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016FA530, void, Enumerable_Iterator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData__System_Collections_IEnumerator_Reset, (Enumerable_Iterator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2500, Enumerable_Iterator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x016FA4A0, Object *, Enumerable_Iterator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData__System_Collections_IEnumerator_get_Current, (Enumerable_Iterator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F90000, MotionSolver_GPUNodeData, Enumerable_Iterator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData__get_Current, (Enumerable_Iterator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016F9420, void, Enumerable_Iterator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo___ctor, (Enumerable_Iterator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo_ * __this, MethodInfo * method)); @@ -158946,6 +175903,7 @@ DO_APP_FUNC(0x016FA5B0, void, Enumerable_Iterator_1_Kalagaan_HairDesignerExtensi DO_APP_FUNC(0x016F94C0, IEnumerator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo_ *, Enumerable_Iterator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo__GetEnumerator, (Enumerable_Iterator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015F3E10, IEnumerator *, Enumerable_Iterator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo__System_Collections_IEnumerable_GetEnumerator, (Enumerable_Iterator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016FA670, void, Enumerable_Iterator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo__System_Collections_IEnumerator_Reset, (Enumerable_Iterator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD24F8, Enumerable_Iterator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x016FA5D0, Object *, Enumerable_Iterator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo__System_Collections_IEnumerator_get_Current, (Enumerable_Iterator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016FA580, MotionSolver_GPUNodeInfo, Enumerable_Iterator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo__get_Current, (Enumerable_Iterator_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016F9420, void, Enumerable_Iterator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile___ctor, (Enumerable_Iterator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile_ * __this, MethodInfo * method)); @@ -158953,6 +175911,7 @@ DO_APP_FUNC(0x016F9660, void, Enumerable_Iterator_1_UnityEngine_Experimental_Ren DO_APP_FUNC(0x016F94C0, IEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile_ *, Enumerable_Iterator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile__GetEnumerator, (Enumerable_Iterator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015F3E10, IEnumerator *, Enumerable_Iterator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile__System_Collections_IEnumerable_GetEnumerator, (Enumerable_Iterator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016FA6C0, void, Enumerable_Iterator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile__System_Collections_IEnumerator_Reset, (Enumerable_Iterator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2508, Enumerable_Iterator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x016F9670, Object *, Enumerable_Iterator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile__System_Collections_IEnumerator_get_Current, (Enumerable_Iterator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0093E890, ProbeVolumeSceneData_SerializablePVProfile, Enumerable_Iterator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile__get_Current, (Enumerable_Iterator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FDB5B0, void, Player_ControllerHelper_MapHelper_JCPcmWFeBVEjsInmgmfjLVziQCvpB_1_System_Object___ctor, (Player_ControllerHelper_MapHelper_JCPcmWFeBVEjsInmgmfjLVziQCvpB_1_System_Object_ * __this, int32_t param_0000ad3b, MethodInfo * method)); @@ -158961,6 +175920,7 @@ DO_APP_FUNC(0x016FAE40, IEnumerator_1_System_Object_ *, Player_ControllerHelper_ DO_APP_FUNC(0x003BB3D0, Object *, Player_ControllerHelper_MapHelper_JCPcmWFeBVEjsInmgmfjLVziQCvpB_1_System_Object__System_Collections_Generic_IEnumerator_T__get_Current, (Player_ControllerHelper_MapHelper_JCPcmWFeBVEjsInmgmfjLVziQCvpB_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x015F3E10, IEnumerator *, Player_ControllerHelper_MapHelper_JCPcmWFeBVEjsInmgmfjLVziQCvpB_1_System_Object__System_Collections_IEnumerable_GetEnumerator, (Player_ControllerHelper_MapHelper_JCPcmWFeBVEjsInmgmfjLVziQCvpB_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016FADF0, void, Player_ControllerHelper_MapHelper_JCPcmWFeBVEjsInmgmfjLVziQCvpB_1_System_Object__System_Collections_IEnumerator_Reset, (Player_ControllerHelper_MapHelper_JCPcmWFeBVEjsInmgmfjLVziQCvpB_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2490, Player_ControllerHelper_MapHelper_JCPcmWFeBVEjsInmgmfjLVziQCvpB_1_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Player_ControllerHelper_MapHelper_JCPcmWFeBVEjsInmgmfjLVziQCvpB_1_System_Object__System_Collections_IEnumerator_get_Current, (Player_ControllerHelper_MapHelper_JCPcmWFeBVEjsInmgmfjLVziQCvpB_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Player_ControllerHelper_MapHelper_JCPcmWFeBVEjsInmgmfjLVziQCvpB_1_System_Object__System_IDisposable_Dispose, (Player_ControllerHelper_MapHelper_JCPcmWFeBVEjsInmgmfjLVziQCvpB_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ldnqCJRTNbykOZAyPczivAgtlhxQ_1_u0001_JGydwViYLLsPGoYLRcZfxIRlpVNAb_System_Object___ctor, (ldnqCJRTNbykOZAyPczivAgtlhxQ_1_u0001_JGydwViYLLsPGoYLRcZfxIRlpVNAb_System_Object_ * __this, MethodInfo * method)); @@ -158975,6 +175935,7 @@ DO_APP_FUNC(0x016FB3C0, bool, yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_u0001_WpetvRyZFspUt DO_APP_FUNC(0x016FBC80, void, yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_u0001_WpetvRyZFspUtspIbLPeDkNbztZe_u0001_JxAmzehfQNgPTJDjSTqFBWaOwHYDA_System_Boolean__koAztZrcZLyuMlaqoUCpAMQQIsgb, (yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_u0001_WpetvRyZFspUtspIbLPeDkNbztZe_u0001_JxAmzehfQNgPTJDjSTqFBWaOwHYDA_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016FB410, bool, yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_u0001_WpetvRyZFspUtspIbLPeDkNbztZe_u0001_JxAmzehfQNgPTJDjSTqFBWaOwHYDA_System_Boolean__vPGpXfFGBaodNQdOqwMGPZhSeDno, (yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_u0001_WpetvRyZFspUtspIbLPeDkNbztZe_u0001_JxAmzehfQNgPTJDjSTqFBWaOwHYDA_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016FB1F0, void, yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_u0001_WpetvRyZFspUtspIbLPeDkNbztZe_u0001_JxAmzehfQNgPTJDjSTqFBWaOwHYDA_System_Boolean__ywnPQwRKhTeqhCfsGHWkglsjHBkq, (yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_u0001_WpetvRyZFspUtspIbLPeDkNbztZe_u0001_JxAmzehfQNgPTJDjSTqFBWaOwHYDA_System_Boolean_ * __this, WaitCallback * param_00014440, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD24B0, yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_u0001_WpetvRyZFspUtspIbLPeDkNbztZe_u0001_JxAmzehfQNgPTJDjSTqFBWaOwHYDA_System_Boolean__ywnPQwRKhTeqhCfsGHWkglsjHBkq__MethodInfo); DO_APP_FUNC(0x016FBD20, void, yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_u0001_WpetvRyZFspUtspIbLPeDkNbztZe_u0001_JxAmzehfQNgPTJDjSTqFBWaOwHYDA_System_Object___ctor, (yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_u0001_WpetvRyZFspUtspIbLPeDkNbztZe_u0001_JxAmzehfQNgPTJDjSTqFBWaOwHYDA_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016FC8A0, void, yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_u0001_WpetvRyZFspUtspIbLPeDkNbztZe_u0001_JxAmzehfQNgPTJDjSTqFBWaOwHYDA_System_Object__Dispose, (yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_u0001_WpetvRyZFspUtspIbLPeDkNbztZe_u0001_JxAmzehfQNgPTJDjSTqFBWaOwHYDA_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016FBB60, void, yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_u0001_WpetvRyZFspUtspIbLPeDkNbztZe_u0001_JxAmzehfQNgPTJDjSTqFBWaOwHYDA_System_Object__GmMmpeMvqRdSbEaEZEdzJIDNzOrJ, (yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_u0001_WpetvRyZFspUtspIbLPeDkNbztZe_u0001_JxAmzehfQNgPTJDjSTqFBWaOwHYDA_System_Object_ * __this, MethodInfo * method)); @@ -158985,6 +175946,7 @@ DO_APP_FUNC(0x016FB3C0, bool, yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_u0001_WpetvRyZFspUt DO_APP_FUNC(0x016FBC80, void, yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_u0001_WpetvRyZFspUtspIbLPeDkNbztZe_u0001_JxAmzehfQNgPTJDjSTqFBWaOwHYDA_System_Object__koAztZrcZLyuMlaqoUCpAMQQIsgb, (yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_u0001_WpetvRyZFspUtspIbLPeDkNbztZe_u0001_JxAmzehfQNgPTJDjSTqFBWaOwHYDA_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016FC150, bool, yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_u0001_WpetvRyZFspUtspIbLPeDkNbztZe_u0001_JxAmzehfQNgPTJDjSTqFBWaOwHYDA_System_Object__vPGpXfFGBaodNQdOqwMGPZhSeDno, (yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_u0001_WpetvRyZFspUtspIbLPeDkNbztZe_u0001_JxAmzehfQNgPTJDjSTqFBWaOwHYDA_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016FBF80, void, yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_u0001_WpetvRyZFspUtspIbLPeDkNbztZe_u0001_JxAmzehfQNgPTJDjSTqFBWaOwHYDA_System_Object__ywnPQwRKhTeqhCfsGHWkglsjHBkq, (yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_u0001_WpetvRyZFspUtspIbLPeDkNbztZe_u0001_JxAmzehfQNgPTJDjSTqFBWaOwHYDA_System_Object_ * __this, WaitCallback * param_00014440, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2478, yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_u0001_WpetvRyZFspUtspIbLPeDkNbztZe_u0001_JxAmzehfQNgPTJDjSTqFBWaOwHYDA_System_Object__ywnPQwRKhTeqhCfsGHWkglsjHBkq__MethodInfo); DO_APP_FUNC(0x003AE050, void, EqualityComparerNoAlloc_1_T_KOkBSSrQDBBGxfQuwUFhYkyNsQJO_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb___ctor, (EqualityComparerNoAlloc_1_T_KOkBSSrQDBBGxfQuwUFhYkyNsQJO_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb_ * __this, MethodInfo * method)); DO_APP_FUNC(0x016FC910, bool, EqualityComparerNoAlloc_1_T_KOkBSSrQDBBGxfQuwUFhYkyNsQJO_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__Equals, (EqualityComparerNoAlloc_1_T_KOkBSSrQDBBGxfQuwUFhYkyNsQJO_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb_ * __this, double x, double y, MethodInfo * method)); DO_APP_FUNC(0x016FC920, int32_t, EqualityComparerNoAlloc_1_T_KOkBSSrQDBBGxfQuwUFhYkyNsQJO_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__GetHashCode, (EqualityComparerNoAlloc_1_T_KOkBSSrQDBBGxfQuwUFhYkyNsQJO_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb_ * __this, double obj, MethodInfo * method)); @@ -159346,6 +176308,7 @@ DO_APP_FUNC(0x010C74D0, int32_t, ADictionary_2_TKey_TValue_KeyCollection_System_ DO_APP_FUNC(0x01123DB0, void, Dictionary_2_TKey_TValue_KeyCollection_System_Int32_System_Int32___ctor, (Dictionary_2_TKey_TValue_KeyCollection_System_Int32_System_Int32_ * __this, Dictionary_2_System_Int32_System_Int32_ * dictionary, MethodInfo * method)); DO_APP_FUNC(0x01700F20, void, Dictionary_2_TKey_TValue_KeyCollection_System_Int32_System_Int32__CopyTo, (Dictionary_2_TKey_TValue_KeyCollection_System_Int32_System_Int32_ * __this, Int32__Array * array, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01124A10, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Int32_, Dictionary_2_TKey_TValue_KeyCollection_System_Int32_System_Int32__GetEnumerator, (Dictionary_2_TKey_TValue_KeyCollection_System_Int32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0E30, Dictionary_2_TKey_TValue_KeyCollection_System_Int32_System_Int32__GetEnumerator__MethodInfo); DO_APP_FUNC(0x016FDF10, void, Dictionary_2_TKey_TValue_KeyCollection_System_Int32_System_Int32__System_Collections_Generic_ICollection_TKey__Add, (Dictionary_2_TKey_TValue_KeyCollection_System_Int32_System_Int32_ * __this, int32_t item, MethodInfo * method)); DO_APP_FUNC(0x016FDF10, void, Dictionary_2_TKey_TValue_KeyCollection_System_Int32_System_Int32__System_Collections_Generic_ICollection_TKey__Clear, (Dictionary_2_TKey_TValue_KeyCollection_System_Int32_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01123FD0, bool, Dictionary_2_TKey_TValue_KeyCollection_System_Int32_System_Int32__System_Collections_Generic_ICollection_TKey__Contains, (Dictionary_2_TKey_TValue_KeyCollection_System_Int32_System_Int32_ * __this, int32_t item, MethodInfo * method)); @@ -159470,6 +176433,7 @@ DO_APP_FUNC(0x010C74D0, int32_t, Dictionary_2_TKey_TValue_KeyCollection_System_I DO_APP_FUNC(0x01123DB0, void, Dictionary_2_TKey_TValue_KeyCollection_System_Int32_System_Single___ctor, (Dictionary_2_TKey_TValue_KeyCollection_System_Int32_System_Single_ * __this, Dictionary_2_System_Int32_System_Single_ * dictionary, MethodInfo * method)); DO_APP_FUNC(0x01700F20, void, Dictionary_2_TKey_TValue_KeyCollection_System_Int32_System_Single__CopyTo, (Dictionary_2_TKey_TValue_KeyCollection_System_Int32_System_Single_ * __this, Int32__Array * array, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01124A10, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_System_Single_, Dictionary_2_TKey_TValue_KeyCollection_System_Int32_System_Single__GetEnumerator, (Dictionary_2_TKey_TValue_KeyCollection_System_Int32_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB02C0, Dictionary_2_TKey_TValue_KeyCollection_System_Int32_System_Single__GetEnumerator__MethodInfo); DO_APP_FUNC(0x016FDF10, void, Dictionary_2_TKey_TValue_KeyCollection_System_Int32_System_Single__System_Collections_Generic_ICollection_TKey__Add, (Dictionary_2_TKey_TValue_KeyCollection_System_Int32_System_Single_ * __this, int32_t item, MethodInfo * method)); DO_APP_FUNC(0x016FDF10, void, Dictionary_2_TKey_TValue_KeyCollection_System_Int32_System_Single__System_Collections_Generic_ICollection_TKey__Clear, (Dictionary_2_TKey_TValue_KeyCollection_System_Int32_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01123FD0, bool, Dictionary_2_TKey_TValue_KeyCollection_System_Int32_System_Single__System_Collections_Generic_ICollection_TKey__Contains, (Dictionary_2_TKey_TValue_KeyCollection_System_Int32_System_Single_ * __this, int32_t item, MethodInfo * method)); @@ -159886,6 +176850,7 @@ DO_APP_FUNC(0x010C74D0, int32_t, ADictionary_2_TKey_TValue_KeyCollection_System_ DO_APP_FUNC(0x01123DB0, void, Dictionary_2_TKey_TValue_KeyCollection_System_Object_System_Object___ctor, (Dictionary_2_TKey_TValue_KeyCollection_System_Object_System_Object_ * __this, Dictionary_2_System_Object_System_Object_ * dictionary, MethodInfo * method)); DO_APP_FUNC(0x01708860, void, Dictionary_2_TKey_TValue_KeyCollection_System_Object_System_Object__CopyTo, (Dictionary_2_TKey_TValue_KeyCollection_System_Object_System_Object_ * __this, Object__Array * array, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01123E20, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Object_System_Object_, Dictionary_2_TKey_TValue_KeyCollection_System_Object_System_Object__GetEnumerator, (Dictionary_2_TKey_TValue_KeyCollection_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0E80, Dictionary_2_TKey_TValue_KeyCollection_System_Object_System_Object__GetEnumerator__MethodInfo); DO_APP_FUNC(0x016FDF10, void, Dictionary_2_TKey_TValue_KeyCollection_System_Object_System_Object__System_Collections_Generic_ICollection_TKey__Add, (Dictionary_2_TKey_TValue_KeyCollection_System_Object_System_Object_ * __this, Object * item, MethodInfo * method)); DO_APP_FUNC(0x016FDF10, void, Dictionary_2_TKey_TValue_KeyCollection_System_Object_System_Object__System_Collections_Generic_ICollection_TKey__Clear, (Dictionary_2_TKey_TValue_KeyCollection_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01123FD0, bool, Dictionary_2_TKey_TValue_KeyCollection_System_Object_System_Object__System_Collections_Generic_ICollection_TKey__Contains, (Dictionary_2_TKey_TValue_KeyCollection_System_Object_System_Object_ * __this, Object * item, MethodInfo * method)); @@ -160733,31 +177698,35 @@ DO_APP_FUNC(0x0041AF00, bool, Dictionary_2_TKey_TValue_KeyCollection_Placeholder DO_APP_FUNC(0x01719910, Object *, Dictionary_2_TKey_TValue_KeyCollection_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object__System_Collections_ICollection_get_SyncRoot, (Dictionary_2_TKey_TValue_KeyCollection_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x017194D0, IEnumerator *, Dictionary_2_TKey_TValue_KeyCollection_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_TKey_TValue_KeyCollection_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010C74D0, int32_t, Dictionary_2_TKey_TValue_KeyCollection_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object__get_Count, (Dictionary_2_TKey_TValue_KeyCollection_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x01719960, void, NonAllocDictionary_2_K_V_KeyIterator_System_Byte_System_Object___ctor, (NonAllocDictionary_2_K_V_KeyIterator_System_Byte_System_Object___Boxed * __this, NonAllocDictionary_2_System_Byte_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, NonAllocDictionary_2_K_V_KeyIterator_System_Byte_System_Object__Dispose, (NonAllocDictionary_2_K_V_KeyIterator_System_Byte_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0104C5D0, NonAllocDictionary_2_K_V_KeyIterator_System_Byte_System_Object_, NonAllocDictionary_2_K_V_KeyIterator_System_Byte_System_Object__GetEnumerator, (NonAllocDictionary_2_K_V_KeyIterator_System_Byte_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01719AF0, bool, NonAllocDictionary_2_K_V_KeyIterator_System_Byte_System_Object__MoveNext, (NonAllocDictionary_2_K_V_KeyIterator_System_Byte_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C42850, void, NonAllocDictionary_2_K_V_KeyIterator_System_Byte_System_Object__Reset, (NonAllocDictionary_2_K_V_KeyIterator_System_Byte_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x017199C0, Object *, NonAllocDictionary_2_K_V_KeyIterator_System_Byte_System_Object__System_Collections_IEnumerator_get_Current, (NonAllocDictionary_2_K_V_KeyIterator_System_Byte_System_Object___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01719960, void, NonAllocDictionary_2_K_V_KeyIterator_System_Byte_System_Object___ctor, (NonAllocDictionary_2_K_V_KeyIterator_System_Byte_System_Object_ * __this, NonAllocDictionary_2_System_Byte_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, NonAllocDictionary_2_K_V_KeyIterator_System_Byte_System_Object__Dispose, (NonAllocDictionary_2_K_V_KeyIterator_System_Byte_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE3D28, NonAllocDictionary_2_K_V_KeyIterator_System_Byte_System_Object__Dispose__MethodInfo); +DO_APP_FUNC(0x0104C5D0, NonAllocDictionary_2_K_V_KeyIterator_System_Byte_System_Object_, NonAllocDictionary_2_K_V_KeyIterator_System_Byte_System_Object__GetEnumerator, (NonAllocDictionary_2_K_V_KeyIterator_System_Byte_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE3CA0, NonAllocDictionary_2_K_V_KeyIterator_System_Byte_System_Object__GetEnumerator__MethodInfo); +DO_APP_FUNC(0x01719AF0, bool, NonAllocDictionary_2_K_V_KeyIterator_System_Byte_System_Object__MoveNext, (NonAllocDictionary_2_K_V_KeyIterator_System_Byte_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE3CA8, NonAllocDictionary_2_K_V_KeyIterator_System_Byte_System_Object__MoveNext__MethodInfo); +DO_APP_FUNC(0x00C42850, void, NonAllocDictionary_2_K_V_KeyIterator_System_Byte_System_Object__Reset, (NonAllocDictionary_2_K_V_KeyIterator_System_Byte_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x017199C0, Object *, NonAllocDictionary_2_K_V_KeyIterator_System_Byte_System_Object__System_Collections_IEnumerator_get_Current, (NonAllocDictionary_2_K_V_KeyIterator_System_Byte_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8FDD8, NonAllocDictionary_2_K_V_KeyIterator_System_Byte_System_Object__System_Collections_IEnumerator_get_Current__MethodInfo); -DO_APP_FUNC(0x01719AA0, uint8_t, NonAllocDictionary_2_K_V_KeyIterator_System_Byte_System_Object__get_Current, (NonAllocDictionary_2_K_V_KeyIterator_System_Byte_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01719960, void, NonAllocDictionary_2_K_V_KeyIterator_System_Int32_System_Object___ctor, (NonAllocDictionary_2_K_V_KeyIterator_System_Int32_System_Object___Boxed * __this, NonAllocDictionary_2_System_Int32_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, NonAllocDictionary_2_K_V_KeyIterator_System_Int32_System_Object__Dispose, (NonAllocDictionary_2_K_V_KeyIterator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0104C5D0, NonAllocDictionary_2_K_V_KeyIterator_System_Int32_System_Object_, NonAllocDictionary_2_K_V_KeyIterator_System_Int32_System_Object__GetEnumerator, (NonAllocDictionary_2_K_V_KeyIterator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01719AF0, bool, NonAllocDictionary_2_K_V_KeyIterator_System_Int32_System_Object__MoveNext, (NonAllocDictionary_2_K_V_KeyIterator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C42850, void, NonAllocDictionary_2_K_V_KeyIterator_System_Int32_System_Object__Reset, (NonAllocDictionary_2_K_V_KeyIterator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01719B60, Object *, NonAllocDictionary_2_K_V_KeyIterator_System_Int32_System_Object__System_Collections_IEnumerator_get_Current, (NonAllocDictionary_2_K_V_KeyIterator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01719AA0, uint8_t, NonAllocDictionary_2_K_V_KeyIterator_System_Byte_System_Object__get_Current, (NonAllocDictionary_2_K_V_KeyIterator_System_Byte_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE3C90, NonAllocDictionary_2_K_V_KeyIterator_System_Byte_System_Object__get_Current__MethodInfo); +DO_APP_FUNC(0x01719960, void, NonAllocDictionary_2_K_V_KeyIterator_System_Int32_System_Object___ctor, (NonAllocDictionary_2_K_V_KeyIterator_System_Int32_System_Object_ * __this, NonAllocDictionary_2_System_Int32_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, NonAllocDictionary_2_K_V_KeyIterator_System_Int32_System_Object__Dispose, (NonAllocDictionary_2_K_V_KeyIterator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0104C5D0, NonAllocDictionary_2_K_V_KeyIterator_System_Int32_System_Object_, NonAllocDictionary_2_K_V_KeyIterator_System_Int32_System_Object__GetEnumerator, (NonAllocDictionary_2_K_V_KeyIterator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01719AF0, bool, NonAllocDictionary_2_K_V_KeyIterator_System_Int32_System_Object__MoveNext, (NonAllocDictionary_2_K_V_KeyIterator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C42850, void, NonAllocDictionary_2_K_V_KeyIterator_System_Int32_System_Object__Reset, (NonAllocDictionary_2_K_V_KeyIterator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01719B60, Object *, NonAllocDictionary_2_K_V_KeyIterator_System_Int32_System_Object__System_Collections_IEnumerator_get_Current, (NonAllocDictionary_2_K_V_KeyIterator_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8FDE8, NonAllocDictionary_2_K_V_KeyIterator_System_Int32_System_Object__System_Collections_IEnumerator_get_Current__MethodInfo); -DO_APP_FUNC(0x01719C40, int32_t, NonAllocDictionary_2_K_V_KeyIterator_System_Int32_System_Object__get_Current, (NonAllocDictionary_2_K_V_KeyIterator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01719960, void, NonAllocDictionary_2_K_V_KeyIterator_System_Object_System_Object___ctor, (NonAllocDictionary_2_K_V_KeyIterator_System_Object_System_Object___Boxed * __this, NonAllocDictionary_2_System_Object_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, NonAllocDictionary_2_K_V_KeyIterator_System_Object_System_Object__Dispose, (NonAllocDictionary_2_K_V_KeyIterator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0104C5D0, NonAllocDictionary_2_K_V_KeyIterator_System_Object_System_Object_, NonAllocDictionary_2_K_V_KeyIterator_System_Object_System_Object__GetEnumerator, (NonAllocDictionary_2_K_V_KeyIterator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01719D70, bool, NonAllocDictionary_2_K_V_KeyIterator_System_Object_System_Object__MoveNext, (NonAllocDictionary_2_K_V_KeyIterator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C42850, void, NonAllocDictionary_2_K_V_KeyIterator_System_Object_System_Object__Reset, (NonAllocDictionary_2_K_V_KeyIterator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01719C90, Object *, NonAllocDictionary_2_K_V_KeyIterator_System_Object_System_Object__System_Collections_IEnumerator_get_Current, (NonAllocDictionary_2_K_V_KeyIterator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01719C40, int32_t, NonAllocDictionary_2_K_V_KeyIterator_System_Int32_System_Object__get_Current, (NonAllocDictionary_2_K_V_KeyIterator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01719960, void, NonAllocDictionary_2_K_V_KeyIterator_System_Object_System_Object___ctor, (NonAllocDictionary_2_K_V_KeyIterator_System_Object_System_Object_ * __this, NonAllocDictionary_2_System_Object_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, NonAllocDictionary_2_K_V_KeyIterator_System_Object_System_Object__Dispose, (NonAllocDictionary_2_K_V_KeyIterator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0104C5D0, NonAllocDictionary_2_K_V_KeyIterator_System_Object_System_Object_, NonAllocDictionary_2_K_V_KeyIterator_System_Object_System_Object__GetEnumerator, (NonAllocDictionary_2_K_V_KeyIterator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01719D70, bool, NonAllocDictionary_2_K_V_KeyIterator_System_Object_System_Object__MoveNext, (NonAllocDictionary_2_K_V_KeyIterator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C42850, void, NonAllocDictionary_2_K_V_KeyIterator_System_Object_System_Object__Reset, (NonAllocDictionary_2_K_V_KeyIterator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01719C90, Object *, NonAllocDictionary_2_K_V_KeyIterator_System_Object_System_Object__System_Collections_IEnumerator_get_Current, (NonAllocDictionary_2_K_V_KeyIterator_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8FD98, NonAllocDictionary_2_K_V_KeyIterator_System_Object_System_Object__System_Collections_IEnumerator_get_Current__MethodInfo); -DO_APP_FUNC(0x01719D20, Object *, NonAllocDictionary_2_K_V_KeyIterator_System_Object_System_Object__get_Current, (NonAllocDictionary_2_K_V_KeyIterator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCBE0, void, SortedList_2_TKey_TValue_KeyList_System_Int32_System_ValueTuple_2__2__ctor, (SortedList_2_TKey_TValue_KeyList_System_Int32_System_ValueTuple_2__2 * __this, SortedList_2_System_Int32_System_ValueTuple_2__2 * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x01719D20, Object *, NonAllocDictionary_2_K_V_KeyIterator_System_Object_System_Object__get_Current, (NonAllocDictionary_2_K_V_KeyIterator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCBE0, void, SortedList_2_TKey_TValue_KeyList_System_Int32_System_ValueTuple_2__2__ctor, (SortedList_2_TKey_TValue_KeyList_System_Int32_System_ValueTuple_2__2 * __this, SortedList_2_System_Int32_System_ValueTuple_2__4 * dictionary, MethodInfo * method)); DO_APP_FUNC(0x01719E30, void, SortedList_2_TKey_TValue_KeyList_System_Int32_System_ValueTuple_2__2_Add, (SortedList_2_TKey_TValue_KeyList_System_Int32_System_ValueTuple_2__2 * __this, int32_t key, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8FDB8, SortedList_2_TKey_TValue_KeyList_System_Int32_System_ValueTuple_2__2_Add__MethodInfo); DO_APP_FUNC(0x01719E90, void, SortedList_2_TKey_TValue_KeyList_System_Int32_System_ValueTuple_2__2_Clear, (SortedList_2_TKey_TValue_KeyList_System_Int32_System_ValueTuple_2__2 * __this, MethodInfo * method)); @@ -160814,463 +177783,485 @@ DO_APP_FUNC(0x0171A860, void, SortedDictionary_2_TKey_TValue_KeyValuePairCompare DO_APP_FUNC(0x0171A990, int32_t, SortedDictionary_2_TKey_TValue_KeyValuePairComparer_System_Object_System_Object__Compare, (SortedDictionary_2_TKey_TValue_KeyValuePairComparer_System_Object_System_Object_ * __this, KeyValuePair_2_System_Object_System_Object_ x, KeyValuePair_2_System_Object_System_Object_ y, MethodInfo * method)); DO_APP_FUNC(0x0171A860, void, SortedDictionary_2_TKey_TValue_KeyValuePairComparer_System_UInt64_System_Object___ctor, (SortedDictionary_2_TKey_TValue_KeyValuePairComparer_System_UInt64_System_Object_ * __this, IComparer_1_System_UInt64_ * keyComparer, MethodInfo * method)); DO_APP_FUNC(0x0171A990, int32_t, SortedDictionary_2_TKey_TValue_KeyValuePairComparer_System_UInt64_System_Object__Compare, (SortedDictionary_2_TKey_TValue_KeyValuePairComparer_System_UInt64_System_Object_ * __this, KeyValuePair_2_System_UInt64_System_Object_ x, KeyValuePair_2_System_UInt64_System_Object_ y, MethodInfo * method)); -DO_APP_FUNC(0x0171AA00, void, KeyValuePair_2_System_ValueTuple_2_System_Object___ctor, (KeyValuePair_2_System_ValueTuple_2_System_Object___Boxed * __this, ValueTuple_2_Object_Int32_ key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x0171AAB0, String *, KeyValuePair_2_System_ValueTuple_2_System_Object__ToString, (KeyValuePair_2_System_ValueTuple_2_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C2FFD0, ValueTuple_2_Object_Int32_, KeyValuePair_2_System_ValueTuple_2_System_Object__get_Key, (KeyValuePair_2_System_ValueTuple_2_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, KeyValuePair_2_System_ValueTuple_2_System_Object__get_Value, (KeyValuePair_2_System_ValueTuple_2_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171AA00, void, KeyValuePair_2_System_ValueTuple_2_System_Object__1__ctor, (KeyValuePair_2_System_ValueTuple_2_System_Object__1__Boxed * __this, ValueTuple_2_Object_Object_ key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x0171AAB0, String *, KeyValuePair_2_System_ValueTuple_2_System_Object__1_ToString, (KeyValuePair_2_System_ValueTuple_2_System_Object__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C2FFD0, ValueTuple_2_Object_Object_, KeyValuePair_2_System_ValueTuple_2_System_Object__1_get_Key, (KeyValuePair_2_System_ValueTuple_2_System_Object__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, KeyValuePair_2_System_ValueTuple_2_System_Object__1_get_Value, (KeyValuePair_2_System_ValueTuple_2_System_Object__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x011497C0, void, KeyValuePair_2_System_Byte_System_Object___ctor, (KeyValuePair_2_System_Byte_System_Object___Boxed * __this, uint8_t key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x0171AB50, String *, KeyValuePair_2_System_Byte_System_Object__ToString, (KeyValuePair_2_System_Byte_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, uint8_t, KeyValuePair_2_System_Byte_System_Object__get_Key, (KeyValuePair_2_System_Byte_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, Object *, KeyValuePair_2_System_Byte_System_Object__get_Value, (KeyValuePair_2_System_Byte_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171ABF0, void, KeyValuePair_2_System_ByteEnum_System_Int32___ctor, (KeyValuePair_2_System_ByteEnum_System_Int32___Boxed * __this, ByteEnum__Enum key, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x0171AC00, String *, KeyValuePair_2_System_ByteEnum_System_Int32__ToString, (KeyValuePair_2_System_ByteEnum_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, ByteEnum__Enum, KeyValuePair_2_System_ByteEnum_System_Int32__get_Key, (KeyValuePair_2_System_ByteEnum_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C173E0, int32_t, KeyValuePair_2_System_ByteEnum_System_Int32__get_Value, (KeyValuePair_2_System_ByteEnum_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x011497C0, void, KeyValuePair_2_System_ByteEnum_System_Object___ctor, (KeyValuePair_2_System_ByteEnum_System_Object___Boxed * __this, ByteEnum__Enum key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x0171AB50, String *, KeyValuePair_2_System_ByteEnum_System_Object__ToString, (KeyValuePair_2_System_ByteEnum_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, ByteEnum__Enum, KeyValuePair_2_System_ByteEnum_System_Object__get_Key, (KeyValuePair_2_System_ByteEnum_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, Object *, KeyValuePair_2_System_ByteEnum_System_Object__get_Value, (KeyValuePair_2_System_ByteEnum_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0103AB70, void, KeyValuePair_2_System_DateTime_System_UInt32___ctor, (KeyValuePair_2_System_DateTime_System_UInt32___Boxed * __this, DateTime key, uint32_t value, MethodInfo * method)); +DO_APP_FUNC(0x0171AA00, void, KeyValuePair_2_System_ValueTuple_2_System_Object___ctor, (KeyValuePair_2_System_ValueTuple_2_System_Object_ * __this, ValueTuple_2_Object_Int32_ key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0171AAB0, String *, KeyValuePair_2_System_ValueTuple_2_System_Object__ToString, (KeyValuePair_2_System_ValueTuple_2_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C2FFD0, ValueTuple_2_Object_Int32_, KeyValuePair_2_System_ValueTuple_2_System_Object__get_Key, (KeyValuePair_2_System_ValueTuple_2_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, KeyValuePair_2_System_ValueTuple_2_System_Object__get_Value, (KeyValuePair_2_System_ValueTuple_2_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171AA00, void, KeyValuePair_2_System_ValueTuple_2_System_Object__1__ctor, (KeyValuePair_2_System_ValueTuple_2_System_Object__1 * __this, ValueTuple_2_Object_Object_ key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0171AAB0, String *, KeyValuePair_2_System_ValueTuple_2_System_Object__1_ToString, (KeyValuePair_2_System_ValueTuple_2_System_Object__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C2FFD0, ValueTuple_2_Object_Object_, KeyValuePair_2_System_ValueTuple_2_System_Object__1_get_Key, (KeyValuePair_2_System_ValueTuple_2_System_Object__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, KeyValuePair_2_System_ValueTuple_2_System_Object__1_get_Value, (KeyValuePair_2_System_ValueTuple_2_System_Object__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x011497C0, void, KeyValuePair_2_System_Byte_System_Object___ctor, (KeyValuePair_2_System_Byte_System_Object_ * __this, uint8_t key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0171AB50, String *, KeyValuePair_2_System_Byte_System_Object__ToString, (KeyValuePair_2_System_Byte_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C173D0, uint8_t, KeyValuePair_2_System_Byte_System_Object__get_Key, (KeyValuePair_2_System_Byte_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2E70, KeyValuePair_2_System_Byte_System_Object__get_Key__MethodInfo); +DO_APP_FUNC(0x00594C90, Object *, KeyValuePair_2_System_Byte_System_Object__get_Value, (KeyValuePair_2_System_Byte_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2E58, KeyValuePair_2_System_Byte_System_Object__get_Value__MethodInfo); +DO_APP_FUNC(0x0171ABF0, void, KeyValuePair_2_System_ByteEnum_System_Int32___ctor, (KeyValuePair_2_System_ByteEnum_System_Int32_ * __this, ByteEnum__Enum key, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x0171AC00, String *, KeyValuePair_2_System_ByteEnum_System_Int32__ToString, (KeyValuePair_2_System_ByteEnum_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C173D0, ByteEnum__Enum, KeyValuePair_2_System_ByteEnum_System_Int32__get_Key, (KeyValuePair_2_System_ByteEnum_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C173E0, int32_t, KeyValuePair_2_System_ByteEnum_System_Int32__get_Value, (KeyValuePair_2_System_ByteEnum_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x011497C0, void, KeyValuePair_2_System_ByteEnum_System_Object___ctor, (KeyValuePair_2_System_ByteEnum_System_Object_ * __this, ByteEnum__Enum key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0171AB50, String *, KeyValuePair_2_System_ByteEnum_System_Object__ToString, (KeyValuePair_2_System_ByteEnum_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C173D0, ByteEnum__Enum, KeyValuePair_2_System_ByteEnum_System_Object__get_Key, (KeyValuePair_2_System_ByteEnum_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, Object *, KeyValuePair_2_System_ByteEnum_System_Object__get_Value, (KeyValuePair_2_System_ByteEnum_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0103AB70, void, KeyValuePair_2_System_DateTime_System_UInt32___ctor, (KeyValuePair_2_System_DateTime_System_UInt32_ * __this, DateTime key, uint32_t value, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C948C0, KeyValuePair_2_System_DateTime_System_UInt32___ctor__MethodInfo); -DO_APP_FUNC(0x0171ACF0, String *, KeyValuePair_2_System_DateTime_System_UInt32__ToString, (KeyValuePair_2_System_DateTime_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, DateTime, KeyValuePair_2_System_DateTime_System_UInt32__get_Key, (KeyValuePair_2_System_DateTime_System_UInt32___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171ACF0, String *, KeyValuePair_2_System_DateTime_System_UInt32__ToString, (KeyValuePair_2_System_DateTime_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, DateTime, KeyValuePair_2_System_DateTime_System_UInt32__get_Key, (KeyValuePair_2_System_DateTime_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C948D0, KeyValuePair_2_System_DateTime_System_UInt32__get_Key__MethodInfo); -DO_APP_FUNC(0x00471920, uint32_t, KeyValuePair_2_System_DateTime_System_UInt32__get_Value, (KeyValuePair_2_System_DateTime_System_UInt32___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471920, uint32_t, KeyValuePair_2_System_DateTime_System_UInt32__get_Value, (KeyValuePair_2_System_DateTime_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C948E0, KeyValuePair_2_System_DateTime_System_UInt32__get_Value__MethodInfo); -DO_APP_FUNC(0x0171ADE0, void, KeyValuePair_2_Dissonance_Audio_Playback_FrameFormat_System_Object___ctor, (KeyValuePair_2_Dissonance_Audio_Playback_FrameFormat_System_Object___Boxed * __this, FrameFormat key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x0171AEC0, String *, KeyValuePair_2_Dissonance_Audio_Playback_FrameFormat_System_Object__ToString, (KeyValuePair_2_Dissonance_Audio_Playback_FrameFormat_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171AEA0, FrameFormat, KeyValuePair_2_Dissonance_Audio_Playback_FrameFormat_System_Object__get_Key, (KeyValuePair_2_Dissonance_Audio_Playback_FrameFormat_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3D0, Object *, KeyValuePair_2_Dissonance_Audio_Playback_FrameFormat_System_Object__get_Value, (KeyValuePair_2_Dissonance_Audio_Playback_FrameFormat_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171AF70, void, KeyValuePair_2_System_Guid_System_Object___ctor, (KeyValuePair_2_System_Guid_System_Object___Boxed * __this, Guid key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x0171AAB0, String *, KeyValuePair_2_System_Guid_System_Object__ToString, (KeyValuePair_2_System_Guid_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C2FFD0, Guid, KeyValuePair_2_System_Guid_System_Object__get_Key, (KeyValuePair_2_System_Guid_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, KeyValuePair_2_System_Guid_System_Object__get_Value, (KeyValuePair_2_System_Guid_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171AFD0, void, KeyValuePair_2_System_Guid_System_UInt32___ctor, (KeyValuePair_2_System_Guid_System_UInt32___Boxed * __this, Guid key, uint32_t value, MethodInfo * method)); -DO_APP_FUNC(0x0171AFE0, String *, KeyValuePair_2_System_Guid_System_UInt32__ToString, (KeyValuePair_2_System_Guid_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C2FFD0, Guid, KeyValuePair_2_System_Guid_System_UInt32__get_Key, (KeyValuePair_2_System_Guid_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, uint32_t, KeyValuePair_2_System_Guid_System_UInt32__get_Value, (KeyValuePair_2_System_Guid_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171AF70, void, KeyValuePair_2_UnityEngine_Hash128_System_Object___ctor, (KeyValuePair_2_UnityEngine_Hash128_System_Object___Boxed * __this, Hash128 key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x0171AAB0, String *, KeyValuePair_2_UnityEngine_Hash128_System_Object__ToString, (KeyValuePair_2_UnityEngine_Hash128_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C2FFD0, Hash128, KeyValuePair_2_UnityEngine_Hash128_System_Object__get_Key, (KeyValuePair_2_UnityEngine_Hash128_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, KeyValuePair_2_UnityEngine_Hash128_System_Object__get_Value, (KeyValuePair_2_UnityEngine_Hash128_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0103AB70, void, KeyValuePair_2_Pathfinding_Int2_System_Int32___ctor, (KeyValuePair_2_Pathfinding_Int2_System_Int32___Boxed * __this, Int2 key, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x0171ACF0, String *, KeyValuePair_2_Pathfinding_Int2_System_Int32__ToString, (KeyValuePair_2_Pathfinding_Int2_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, Int2, KeyValuePair_2_Pathfinding_Int2_System_Int32__get_Key, (KeyValuePair_2_Pathfinding_Int2_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471920, int32_t, KeyValuePair_2_Pathfinding_Int2_System_Int32__get_Value, (KeyValuePair_2_Pathfinding_Int2_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171B0D0, void, KeyValuePair_2_Pathfinding_Int3_System_Int32___ctor, (KeyValuePair_2_Pathfinding_Int3_System_Int32___Boxed * __this, Int3 key, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x0171B110, String *, KeyValuePair_2_Pathfinding_Int3_System_Int32__ToString, (KeyValuePair_2_Pathfinding_Int3_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171B0F0, Int3, KeyValuePair_2_Pathfinding_Int3_System_Int32__get_Key, (KeyValuePair_2_Pathfinding_Int3_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E57F20, int32_t, KeyValuePair_2_Pathfinding_Int3_System_Int32__get_Value, (KeyValuePair_2_Pathfinding_Int3_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0114E3C0, void, KeyValuePair_2_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo___ctor, (KeyValuePair_2_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo___Boxed * __this, int32_t key, DynamicHeightVirtualizationController_1_T_ContentHeightCacheInfo_System_Object_ value, MethodInfo * method)); -DO_APP_FUNC(0x0171B210, String *, KeyValuePair_2_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__ToString, (KeyValuePair_2_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, KeyValuePair_2_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__get_Key, (KeyValuePair_2_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171B200, DynamicHeightVirtualizationController_1_T_ContentHeightCacheInfo_System_Object_, KeyValuePair_2_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__get_Value, (KeyValuePair_2_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171B300, void, KeyValuePair_2_System_Int32_System_ValueTuple_2__3__ctor, (KeyValuePair_2_System_Int32_System_ValueTuple_2__3__Boxed * __this, int32_t key, ValueTuple_2_Object_Int32_ value, MethodInfo * method)); -DO_APP_FUNC(0x0171B360, String *, KeyValuePair_2_System_Int32_System_ValueTuple_2__3_ToString, (KeyValuePair_2_System_Int32_System_ValueTuple_2__3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, KeyValuePair_2_System_Int32_System_ValueTuple_2__3_get_Key, (KeyValuePair_2_System_Int32_System_ValueTuple_2__3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C16880, ValueTuple_2_Object_Int32_, KeyValuePair_2_System_Int32_System_ValueTuple_2__3_get_Value, (KeyValuePair_2_System_Int32_System_ValueTuple_2__3__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171B450, void, KeyValuePair_2_System_Int32_System_ValueTuple_2__2__ctor, (KeyValuePair_2_System_Int32_System_ValueTuple_2__2__Boxed * __this, int32_t key, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int_ value, MethodInfo * method)); -DO_APP_FUNC(0x0171B490, String *, KeyValuePair_2_System_Int32_System_ValueTuple_2__2_ToString, (KeyValuePair_2_System_Int32_System_ValueTuple_2__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, KeyValuePair_2_System_Int32_System_ValueTuple_2__2_get_Key, (KeyValuePair_2_System_Int32_System_ValueTuple_2__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171B470, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int_, KeyValuePair_2_System_Int32_System_ValueTuple_2__2_get_Value, (KeyValuePair_2_System_Int32_System_ValueTuple_2__2__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0114A760, void, KeyValuePair_2_System_Int32_System_Boolean___ctor, (KeyValuePair_2_System_Int32_System_Boolean___Boxed * __this, int32_t key, bool value, MethodInfo * method)); -DO_APP_FUNC(0x0171B590, String *, KeyValuePair_2_System_Int32_System_Boolean__ToString, (KeyValuePair_2_System_Int32_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, KeyValuePair_2_System_Int32_System_Boolean__get_Key, (KeyValuePair_2_System_Int32_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171B580, bool, KeyValuePair_2_System_Int32_System_Boolean__get_Value, (KeyValuePair_2_System_Int32_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0114A760, void, KeyValuePair_2_System_Int32_System_ByteEnum___ctor, (KeyValuePair_2_System_Int32_System_ByteEnum___Boxed * __this, int32_t key, ByteEnum__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x0171B590, String *, KeyValuePair_2_System_Int32_System_ByteEnum__ToString, (KeyValuePair_2_System_Int32_System_ByteEnum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, KeyValuePair_2_System_Int32_System_ByteEnum__get_Key, (KeyValuePair_2_System_Int32_System_ByteEnum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171B580, ByteEnum__Enum, KeyValuePair_2_System_Int32_System_ByteEnum__get_Value, (KeyValuePair_2_System_Int32_System_ByteEnum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171B680, void, KeyValuePair_2_System_Int32_System_Char___ctor, (KeyValuePair_2_System_Int32_System_Char___Boxed * __this, int32_t key, uint16_t value, MethodInfo * method)); -DO_APP_FUNC(0x0171B6A0, String *, KeyValuePair_2_System_Int32_System_Char__ToString, (KeyValuePair_2_System_Int32_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, KeyValuePair_2_System_Int32_System_Char__get_Key, (KeyValuePair_2_System_Int32_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171B690, uint16_t, KeyValuePair_2_System_Int32_System_Char__get_Value, (KeyValuePair_2_System_Int32_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171B790, void, KeyValuePair_2_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___ctor, (KeyValuePair_2_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___Boxed * __this, int32_t key, DiagnosticEvent value, MethodInfo * method)); -DO_APP_FUNC(0x0171B820, String *, KeyValuePair_2_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__ToString, (KeyValuePair_2_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, KeyValuePair_2_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__get_Key, (KeyValuePair_2_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171B800, DiagnosticEvent, KeyValuePair_2_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__get_Value, (KeyValuePair_2_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171B680, void, KeyValuePair_2_System_Int32_System_Int16___ctor, (KeyValuePair_2_System_Int32_System_Int16___Boxed * __this, int32_t key, int16_t value, MethodInfo * method)); -DO_APP_FUNC(0x0171B6A0, String *, KeyValuePair_2_System_Int32_System_Int16__ToString, (KeyValuePair_2_System_Int32_System_Int16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, KeyValuePair_2_System_Int32_System_Int16__get_Key, (KeyValuePair_2_System_Int32_System_Int16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171B690, int16_t, KeyValuePair_2_System_Int32_System_Int16__get_Value, (KeyValuePair_2_System_Int32_System_Int16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171B920, void, KeyValuePair_2_System_Int32_Pathfinding_Int3___ctor, (KeyValuePair_2_System_Int32_Pathfinding_Int3___Boxed * __this, int32_t key, Int3 value, MethodInfo * method)); -DO_APP_FUNC(0x0171B940, String *, KeyValuePair_2_System_Int32_Pathfinding_Int3__ToString, (KeyValuePair_2_System_Int32_Pathfinding_Int3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, KeyValuePair_2_System_Int32_Pathfinding_Int3__get_Key, (KeyValuePair_2_System_Int32_Pathfinding_Int3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C16680, Int3, KeyValuePair_2_System_Int32_Pathfinding_Int3__get_Value, (KeyValuePair_2_System_Int32_Pathfinding_Int3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00977B80, void, KeyValuePair_2_System_Int32_System_Int32___ctor, (KeyValuePair_2_System_Int32_System_Int32___Boxed * __this, int32_t key, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x0171BA30, String *, KeyValuePair_2_System_Int32_System_Int32__ToString, (KeyValuePair_2_System_Int32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, KeyValuePair_2_System_Int32_System_Int32__get_Key, (KeyValuePair_2_System_Int32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C173E0, int32_t, KeyValuePair_2_System_Int32_System_Int32__get_Value, (KeyValuePair_2_System_Int32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00977B80, void, KeyValuePair_2_System_Int32_System_Int32Enum___ctor, (KeyValuePair_2_System_Int32_System_Int32Enum___Boxed * __this, int32_t key, Int32Enum__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x0171BA30, String *, KeyValuePair_2_System_Int32_System_Int32Enum__ToString, (KeyValuePair_2_System_Int32_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, KeyValuePair_2_System_Int32_System_Int32Enum__get_Key, (KeyValuePair_2_System_Int32_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C173E0, Int32Enum__Enum, KeyValuePair_2_System_Int32_System_Int32Enum__get_Value, (KeyValuePair_2_System_Int32_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0114C830, void, KeyValuePair_2_System_Int32_System_Int64___ctor, (KeyValuePair_2_System_Int32_System_Int64___Boxed * __this, int32_t key, int64_t value, MethodInfo * method)); -DO_APP_FUNC(0x0171BB20, String *, KeyValuePair_2_System_Int32_System_Int64__ToString, (KeyValuePair_2_System_Int32_System_Int64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, KeyValuePair_2_System_Int32_System_Int64__get_Key, (KeyValuePair_2_System_Int32_System_Int64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, int64_t, KeyValuePair_2_System_Int32_System_Int64__get_Value, (KeyValuePair_2_System_Int32_System_Int64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0114D850, void, KeyValuePair_2_System_Int32_System_Object___ctor, (KeyValuePair_2_System_Int32_System_Object___Boxed * __this, int32_t key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x0171BC10, String *, KeyValuePair_2_System_Int32_System_Object__ToString, (KeyValuePair_2_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, KeyValuePair_2_System_Int32_System_Object__get_Key, (KeyValuePair_2_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171ADE0, void, KeyValuePair_2_Dissonance_Audio_Playback_FrameFormat_System_Object___ctor, (KeyValuePair_2_Dissonance_Audio_Playback_FrameFormat_System_Object_ * __this, FrameFormat key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0171AEC0, String *, KeyValuePair_2_Dissonance_Audio_Playback_FrameFormat_System_Object__ToString, (KeyValuePair_2_Dissonance_Audio_Playback_FrameFormat_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171AEA0, FrameFormat, KeyValuePair_2_Dissonance_Audio_Playback_FrameFormat_System_Object__get_Key, (KeyValuePair_2_Dissonance_Audio_Playback_FrameFormat_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3D0, Object *, KeyValuePair_2_Dissonance_Audio_Playback_FrameFormat_System_Object__get_Value, (KeyValuePair_2_Dissonance_Audio_Playback_FrameFormat_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171AF70, void, KeyValuePair_2_System_Guid_System_Object___ctor, (KeyValuePair_2_System_Guid_System_Object_ * __this, Guid key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0171AAB0, String *, KeyValuePair_2_System_Guid_System_Object__ToString, (KeyValuePair_2_System_Guid_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C2FFD0, Guid, KeyValuePair_2_System_Guid_System_Object__get_Key, (KeyValuePair_2_System_Guid_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, KeyValuePair_2_System_Guid_System_Object__get_Value, (KeyValuePair_2_System_Guid_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171AFD0, void, KeyValuePair_2_System_Guid_System_UInt32___ctor, (KeyValuePair_2_System_Guid_System_UInt32_ * __this, Guid key, uint32_t value, MethodInfo * method)); +DO_APP_FUNC(0x0171AFE0, String *, KeyValuePair_2_System_Guid_System_UInt32__ToString, (KeyValuePair_2_System_Guid_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C2FFD0, Guid, KeyValuePair_2_System_Guid_System_UInt32__get_Key, (KeyValuePair_2_System_Guid_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, uint32_t, KeyValuePair_2_System_Guid_System_UInt32__get_Value, (KeyValuePair_2_System_Guid_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171AF70, void, KeyValuePair_2_UnityEngine_Hash128_System_Object___ctor, (KeyValuePair_2_UnityEngine_Hash128_System_Object_ * __this, Hash128 key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0171AAB0, String *, KeyValuePair_2_UnityEngine_Hash128_System_Object__ToString, (KeyValuePair_2_UnityEngine_Hash128_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C2FFD0, Hash128, KeyValuePair_2_UnityEngine_Hash128_System_Object__get_Key, (KeyValuePair_2_UnityEngine_Hash128_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, KeyValuePair_2_UnityEngine_Hash128_System_Object__get_Value, (KeyValuePair_2_UnityEngine_Hash128_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0103AB70, void, KeyValuePair_2_Pathfinding_Int2_System_Int32___ctor, (KeyValuePair_2_Pathfinding_Int2_System_Int32_ * __this, Int2 key, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x0171ACF0, String *, KeyValuePair_2_Pathfinding_Int2_System_Int32__ToString, (KeyValuePair_2_Pathfinding_Int2_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Int2, KeyValuePair_2_Pathfinding_Int2_System_Int32__get_Key, (KeyValuePair_2_Pathfinding_Int2_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471920, int32_t, KeyValuePair_2_Pathfinding_Int2_System_Int32__get_Value, (KeyValuePair_2_Pathfinding_Int2_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171B0D0, void, KeyValuePair_2_Pathfinding_Int3_System_Int32___ctor, (KeyValuePair_2_Pathfinding_Int3_System_Int32_ * __this, Int3 key, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x0171B110, String *, KeyValuePair_2_Pathfinding_Int3_System_Int32__ToString, (KeyValuePair_2_Pathfinding_Int3_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171B0F0, Int3, KeyValuePair_2_Pathfinding_Int3_System_Int32__get_Key, (KeyValuePair_2_Pathfinding_Int3_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E57F20, int32_t, KeyValuePair_2_Pathfinding_Int3_System_Int32__get_Value, (KeyValuePair_2_Pathfinding_Int3_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0114E3C0, void, KeyValuePair_2_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo___ctor, (KeyValuePair_2_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ * __this, int32_t key, DynamicHeightVirtualizationController_1_T_ContentHeightCacheInfo_System_Object_ value, MethodInfo * method)); +DO_APP_FUNC(0x0171B210, String *, KeyValuePair_2_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__ToString, (KeyValuePair_2_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, KeyValuePair_2_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__get_Key, (KeyValuePair_2_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171B200, DynamicHeightVirtualizationController_1_T_ContentHeightCacheInfo_System_Object_, KeyValuePair_2_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo__get_Value, (KeyValuePair_2_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171B300, void, KeyValuePair_2_System_Int32_System_ValueTuple_2__3__ctor, (KeyValuePair_2_System_Int32_System_ValueTuple_2__3 * __this, int32_t key, ValueTuple_2_Object_Int32_ value, MethodInfo * method)); +DO_APP_FUNC(0x0171B360, String *, KeyValuePair_2_System_Int32_System_ValueTuple_2__3_ToString, (KeyValuePair_2_System_Int32_System_ValueTuple_2__3 * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, KeyValuePair_2_System_Int32_System_ValueTuple_2__3_get_Key, (KeyValuePair_2_System_Int32_System_ValueTuple_2__3 * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C16880, ValueTuple_2_Object_Int32_, KeyValuePair_2_System_Int32_System_ValueTuple_2__3_get_Value, (KeyValuePair_2_System_Int32_System_ValueTuple_2__3 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171B450, void, KeyValuePair_2_System_Int32_System_ValueTuple_2__2__ctor, (KeyValuePair_2_System_Int32_System_ValueTuple_2__2 * __this, int32_t key, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int_ value, MethodInfo * method)); +DO_APP_FUNC(0x0171B490, String *, KeyValuePair_2_System_Int32_System_ValueTuple_2__2_ToString, (KeyValuePair_2_System_Int32_System_ValueTuple_2__2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, KeyValuePair_2_System_Int32_System_ValueTuple_2__2_get_Key, (KeyValuePair_2_System_Int32_System_ValueTuple_2__2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171B470, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int_, KeyValuePair_2_System_Int32_System_ValueTuple_2__2_get_Value, (KeyValuePair_2_System_Int32_System_ValueTuple_2__2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0114A760, void, KeyValuePair_2_System_Int32_System_Boolean___ctor, (KeyValuePair_2_System_Int32_System_Boolean_ * __this, int32_t key, bool value, MethodInfo * method)); +DO_APP_FUNC(0x0171B590, String *, KeyValuePair_2_System_Int32_System_Boolean__ToString, (KeyValuePair_2_System_Int32_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, KeyValuePair_2_System_Int32_System_Boolean__get_Key, (KeyValuePair_2_System_Int32_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171B580, bool, KeyValuePair_2_System_Int32_System_Boolean__get_Value, (KeyValuePair_2_System_Int32_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0114A760, void, KeyValuePair_2_System_Int32_System_ByteEnum___ctor, (KeyValuePair_2_System_Int32_System_ByteEnum_ * __this, int32_t key, ByteEnum__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x0171B590, String *, KeyValuePair_2_System_Int32_System_ByteEnum__ToString, (KeyValuePair_2_System_Int32_System_ByteEnum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, KeyValuePair_2_System_Int32_System_ByteEnum__get_Key, (KeyValuePair_2_System_Int32_System_ByteEnum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171B580, ByteEnum__Enum, KeyValuePair_2_System_Int32_System_ByteEnum__get_Value, (KeyValuePair_2_System_Int32_System_ByteEnum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171B680, void, KeyValuePair_2_System_Int32_System_Char___ctor, (KeyValuePair_2_System_Int32_System_Char_ * __this, int32_t key, uint16_t value, MethodInfo * method)); +DO_APP_FUNC(0x0171B6A0, String *, KeyValuePair_2_System_Int32_System_Char__ToString, (KeyValuePair_2_System_Int32_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, KeyValuePair_2_System_Int32_System_Char__get_Key, (KeyValuePair_2_System_Int32_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171B690, uint16_t, KeyValuePair_2_System_Int32_System_Char__get_Value, (KeyValuePair_2_System_Int32_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171B790, void, KeyValuePair_2_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___ctor, (KeyValuePair_2_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, int32_t key, DiagnosticEvent value, MethodInfo * method)); +DO_APP_FUNC(0x0171B820, String *, KeyValuePair_2_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__ToString, (KeyValuePair_2_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, KeyValuePair_2_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__get_Key, (KeyValuePair_2_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171B800, DiagnosticEvent, KeyValuePair_2_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent__get_Value, (KeyValuePair_2_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171B680, void, KeyValuePair_2_System_Int32_System_Int16___ctor, (KeyValuePair_2_System_Int32_System_Int16_ * __this, int32_t key, int16_t value, MethodInfo * method)); +DO_APP_FUNC(0x0171B6A0, String *, KeyValuePair_2_System_Int32_System_Int16__ToString, (KeyValuePair_2_System_Int32_System_Int16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, KeyValuePair_2_System_Int32_System_Int16__get_Key, (KeyValuePair_2_System_Int32_System_Int16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171B690, int16_t, KeyValuePair_2_System_Int32_System_Int16__get_Value, (KeyValuePair_2_System_Int32_System_Int16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171B920, void, KeyValuePair_2_System_Int32_Pathfinding_Int3___ctor, (KeyValuePair_2_System_Int32_Pathfinding_Int3_ * __this, int32_t key, Int3 value, MethodInfo * method)); +DO_APP_FUNC(0x0171B940, String *, KeyValuePair_2_System_Int32_Pathfinding_Int3__ToString, (KeyValuePair_2_System_Int32_Pathfinding_Int3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, KeyValuePair_2_System_Int32_Pathfinding_Int3__get_Key, (KeyValuePair_2_System_Int32_Pathfinding_Int3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C16680, Int3, KeyValuePair_2_System_Int32_Pathfinding_Int3__get_Value, (KeyValuePair_2_System_Int32_Pathfinding_Int3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00977B80, void, KeyValuePair_2_System_Int32_System_Int32___ctor, (KeyValuePair_2_System_Int32_System_Int32_ * __this, int32_t key, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF6C0, KeyValuePair_2_System_Int32_System_Int32___ctor__MethodInfo); +DO_APP_FUNC(0x0171BA30, String *, KeyValuePair_2_System_Int32_System_Int32__ToString, (KeyValuePair_2_System_Int32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, KeyValuePair_2_System_Int32_System_Int32__get_Key, (KeyValuePair_2_System_Int32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF6B0, KeyValuePair_2_System_Int32_System_Int32__get_Key__MethodInfo); +DO_APP_FUNC(0x00C173E0, int32_t, KeyValuePair_2_System_Int32_System_Int32__get_Value, (KeyValuePair_2_System_Int32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF6A0, KeyValuePair_2_System_Int32_System_Int32__get_Value__MethodInfo); +DO_APP_FUNC(0x00977B80, void, KeyValuePair_2_System_Int32_System_Int32Enum___ctor, (KeyValuePair_2_System_Int32_System_Int32Enum_ * __this, int32_t key, Int32Enum__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x0171BA30, String *, KeyValuePair_2_System_Int32_System_Int32Enum__ToString, (KeyValuePair_2_System_Int32_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, KeyValuePair_2_System_Int32_System_Int32Enum__get_Key, (KeyValuePair_2_System_Int32_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C173E0, Int32Enum__Enum, KeyValuePair_2_System_Int32_System_Int32Enum__get_Value, (KeyValuePair_2_System_Int32_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0114C830, void, KeyValuePair_2_System_Int32_System_Int64___ctor, (KeyValuePair_2_System_Int32_System_Int64_ * __this, int32_t key, int64_t value, MethodInfo * method)); +DO_APP_FUNC(0x0171BB20, String *, KeyValuePair_2_System_Int32_System_Int64__ToString, (KeyValuePair_2_System_Int32_System_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, KeyValuePair_2_System_Int32_System_Int64__get_Key, (KeyValuePair_2_System_Int32_System_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, int64_t, KeyValuePair_2_System_Int32_System_Int64__get_Value, (KeyValuePair_2_System_Int32_System_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0114D850, void, KeyValuePair_2_System_Int32_System_Object___ctor, (KeyValuePair_2_System_Int32_System_Object_ * __this, int32_t key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0171BC10, String *, KeyValuePair_2_System_Int32_System_Object__ToString, (KeyValuePair_2_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, KeyValuePair_2_System_Int32_System_Object__get_Key, (KeyValuePair_2_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C99F00, KeyValuePair_2_System_Int32_System_Object__get_Key__MethodInfo); -DO_APP_FUNC(0x00594C90, Object *, KeyValuePair_2_System_Int32_System_Object__get_Value, (KeyValuePair_2_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, Object *, KeyValuePair_2_System_Int32_System_Object__get_Value, (KeyValuePair_2_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C99F10, KeyValuePair_2_System_Int32_System_Object__get_Value__MethodInfo); -DO_APP_FUNC(0x0171BCB0, void, KeyValuePair_2_System_Int32_PlayerFlashlightBeam___ctor, (KeyValuePair_2_System_Int32_PlayerFlashlightBeam___Boxed * __this, int32_t key, PlayerFlashlightBeam value, MethodInfo * method)); -DO_APP_FUNC(0x0171B360, String *, KeyValuePair_2_System_Int32_PlayerFlashlightBeam__ToString, (KeyValuePair_2_System_Int32_PlayerFlashlightBeam___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, KeyValuePair_2_System_Int32_PlayerFlashlightBeam__get_Key, (KeyValuePair_2_System_Int32_PlayerFlashlightBeam___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C16880, PlayerFlashlightBeam, KeyValuePair_2_System_Int32_PlayerFlashlightBeam__get_Value, (KeyValuePair_2_System_Int32_PlayerFlashlightBeam___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171BD10, void, KeyValuePair_2_System_Int32_UnityEngine_RenderInstancedDataLayout___ctor, (KeyValuePair_2_System_Int32_UnityEngine_RenderInstancedDataLayout___Boxed * __this, int32_t key, RenderInstancedDataLayout value, MethodInfo * method)); -DO_APP_FUNC(0x0171BD30, String *, KeyValuePair_2_System_Int32_UnityEngine_RenderInstancedDataLayout__ToString, (KeyValuePair_2_System_Int32_UnityEngine_RenderInstancedDataLayout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, KeyValuePair_2_System_Int32_UnityEngine_RenderInstancedDataLayout__get_Key, (KeyValuePair_2_System_Int32_UnityEngine_RenderInstancedDataLayout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171BD20, RenderInstancedDataLayout, KeyValuePair_2_System_Int32_UnityEngine_RenderInstancedDataLayout__get_Value, (KeyValuePair_2_System_Int32_UnityEngine_RenderInstancedDataLayout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171BE20, void, KeyValuePair_2_System_Int32_System_Single___ctor, (KeyValuePair_2_System_Int32_System_Single___Boxed * __this, int32_t key, float value, MethodInfo * method)); -DO_APP_FUNC(0x0171BE30, String *, KeyValuePair_2_System_Int32_System_Single__ToString, (KeyValuePair_2_System_Int32_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, KeyValuePair_2_System_Int32_System_Single__get_Key, (KeyValuePair_2_System_Int32_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C4B940, float, KeyValuePair_2_System_Int32_System_Single__get_Value, (KeyValuePair_2_System_Int32_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171BCB0, void, KeyValuePair_2_System_Int32_UnityEngine_UIElements_TreeItem___ctor, (KeyValuePair_2_System_Int32_UnityEngine_UIElements_TreeItem___Boxed * __this, int32_t key, TreeItem value, MethodInfo * method)); -DO_APP_FUNC(0x0171B360, String *, KeyValuePair_2_System_Int32_UnityEngine_UIElements_TreeItem__ToString, (KeyValuePair_2_System_Int32_UnityEngine_UIElements_TreeItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, KeyValuePair_2_System_Int32_UnityEngine_UIElements_TreeItem__get_Key, (KeyValuePair_2_System_Int32_UnityEngine_UIElements_TreeItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C16880, TreeItem, KeyValuePair_2_System_Int32_UnityEngine_UIElements_TreeItem__get_Value, (KeyValuePair_2_System_Int32_UnityEngine_UIElements_TreeItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0114E3C0, void, KeyValuePair_2_System_Int32_UnityEngine_Vector2___ctor, (KeyValuePair_2_System_Int32_UnityEngine_Vector2___Boxed * __this, int32_t key, Vector2 value, MethodInfo * method)); -DO_APP_FUNC(0x0171BF40, String *, KeyValuePair_2_System_Int32_UnityEngine_Vector2__ToString, (KeyValuePair_2_System_Int32_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, KeyValuePair_2_System_Int32_UnityEngine_Vector2__get_Key, (KeyValuePair_2_System_Int32_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171BF20, Vector2, KeyValuePair_2_System_Int32_UnityEngine_Vector2__get_Value, (KeyValuePair_2_System_Int32_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0114E3C0, void, KeyValuePair_2_System_Int32_UnityEngine_Vector2Int___ctor, (KeyValuePair_2_System_Int32_UnityEngine_Vector2Int___Boxed * __this, int32_t key, Vector2Int value, MethodInfo * method)); -DO_APP_FUNC(0x0171B210, String *, KeyValuePair_2_System_Int32_UnityEngine_Vector2Int__ToString, (KeyValuePair_2_System_Int32_UnityEngine_Vector2Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, KeyValuePair_2_System_Int32_UnityEngine_Vector2Int__get_Key, (KeyValuePair_2_System_Int32_UnityEngine_Vector2Int___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171BCB0, void, KeyValuePair_2_System_Int32_PlayerFlashlightBeam___ctor, (KeyValuePair_2_System_Int32_PlayerFlashlightBeam_ * __this, int32_t key, PlayerFlashlightBeam value, MethodInfo * method)); +DO_APP_FUNC(0x0171B360, String *, KeyValuePair_2_System_Int32_PlayerFlashlightBeam__ToString, (KeyValuePair_2_System_Int32_PlayerFlashlightBeam_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, KeyValuePair_2_System_Int32_PlayerFlashlightBeam__get_Key, (KeyValuePair_2_System_Int32_PlayerFlashlightBeam_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C16880, PlayerFlashlightBeam, KeyValuePair_2_System_Int32_PlayerFlashlightBeam__get_Value, (KeyValuePair_2_System_Int32_PlayerFlashlightBeam_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171BD10, void, KeyValuePair_2_System_Int32_UnityEngine_RenderInstancedDataLayout___ctor, (KeyValuePair_2_System_Int32_UnityEngine_RenderInstancedDataLayout_ * __this, int32_t key, RenderInstancedDataLayout value, MethodInfo * method)); +DO_APP_FUNC(0x0171BD30, String *, KeyValuePair_2_System_Int32_UnityEngine_RenderInstancedDataLayout__ToString, (KeyValuePair_2_System_Int32_UnityEngine_RenderInstancedDataLayout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, KeyValuePair_2_System_Int32_UnityEngine_RenderInstancedDataLayout__get_Key, (KeyValuePair_2_System_Int32_UnityEngine_RenderInstancedDataLayout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171BD20, RenderInstancedDataLayout, KeyValuePair_2_System_Int32_UnityEngine_RenderInstancedDataLayout__get_Value, (KeyValuePair_2_System_Int32_UnityEngine_RenderInstancedDataLayout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171BE20, void, KeyValuePair_2_System_Int32_System_Single___ctor, (KeyValuePair_2_System_Int32_System_Single_ * __this, int32_t key, float value, MethodInfo * method)); +DO_APP_FUNC(0x0171BE30, String *, KeyValuePair_2_System_Int32_System_Single__ToString, (KeyValuePair_2_System_Int32_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, KeyValuePair_2_System_Int32_System_Single__get_Key, (KeyValuePair_2_System_Int32_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0398, KeyValuePair_2_System_Int32_System_Single__get_Key__MethodInfo); +DO_APP_FUNC(0x00C4B940, float, KeyValuePair_2_System_Int32_System_Single__get_Value, (KeyValuePair_2_System_Int32_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171BCB0, void, KeyValuePair_2_System_Int32_UnityEngine_UIElements_TreeItem___ctor, (KeyValuePair_2_System_Int32_UnityEngine_UIElements_TreeItem_ * __this, int32_t key, TreeItem value, MethodInfo * method)); +DO_APP_FUNC(0x0171B360, String *, KeyValuePair_2_System_Int32_UnityEngine_UIElements_TreeItem__ToString, (KeyValuePair_2_System_Int32_UnityEngine_UIElements_TreeItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, KeyValuePair_2_System_Int32_UnityEngine_UIElements_TreeItem__get_Key, (KeyValuePair_2_System_Int32_UnityEngine_UIElements_TreeItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C16880, TreeItem, KeyValuePair_2_System_Int32_UnityEngine_UIElements_TreeItem__get_Value, (KeyValuePair_2_System_Int32_UnityEngine_UIElements_TreeItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0114E3C0, void, KeyValuePair_2_System_Int32_UnityEngine_Vector2___ctor, (KeyValuePair_2_System_Int32_UnityEngine_Vector2_ * __this, int32_t key, Vector2 value, MethodInfo * method)); +DO_APP_FUNC(0x0171BF40, String *, KeyValuePair_2_System_Int32_UnityEngine_Vector2__ToString, (KeyValuePair_2_System_Int32_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, KeyValuePair_2_System_Int32_UnityEngine_Vector2__get_Key, (KeyValuePair_2_System_Int32_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15C00, KeyValuePair_2_System_Int32_UnityEngine_Vector2__get_Key__MethodInfo); +DO_APP_FUNC(0x0171BF20, Vector2, KeyValuePair_2_System_Int32_UnityEngine_Vector2__get_Value, (KeyValuePair_2_System_Int32_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15BF0, KeyValuePair_2_System_Int32_UnityEngine_Vector2__get_Value__MethodInfo); +DO_APP_FUNC(0x0114E3C0, void, KeyValuePair_2_System_Int32_UnityEngine_Vector2Int___ctor, (KeyValuePair_2_System_Int32_UnityEngine_Vector2Int_ * __this, int32_t key, Vector2Int value, MethodInfo * method)); +DO_APP_FUNC(0x0171B210, String *, KeyValuePair_2_System_Int32_UnityEngine_Vector2Int__ToString, (KeyValuePair_2_System_Int32_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, KeyValuePair_2_System_Int32_UnityEngine_Vector2Int__get_Key, (KeyValuePair_2_System_Int32_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C97D60, KeyValuePair_2_System_Int32_UnityEngine_Vector2Int__get_Key__MethodInfo); -DO_APP_FUNC(0x0171B200, Vector2Int, KeyValuePair_2_System_Int32_UnityEngine_Vector2Int__get_Value, (KeyValuePair_2_System_Int32_UnityEngine_Vector2Int___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171B200, Vector2Int, KeyValuePair_2_System_Int32_UnityEngine_Vector2Int__get_Value, (KeyValuePair_2_System_Int32_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C97DE0, KeyValuePair_2_System_Int32_UnityEngine_Vector2Int__get_Value__MethodInfo); -DO_APP_FUNC(0x0171BD10, void, KeyValuePair_2_System_Int32_UnityEngine_Vector4___ctor, (KeyValuePair_2_System_Int32_UnityEngine_Vector4___Boxed * __this, int32_t key, Vector4 value, MethodInfo * method)); -DO_APP_FUNC(0x0171BD30, String *, KeyValuePair_2_System_Int32_UnityEngine_Vector4__ToString, (KeyValuePair_2_System_Int32_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, KeyValuePair_2_System_Int32_UnityEngine_Vector4__get_Key, (KeyValuePair_2_System_Int32_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171BD20, Vector4, KeyValuePair_2_System_Int32_UnityEngine_Vector4__get_Value, (KeyValuePair_2_System_Int32_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171C030, void, KeyValuePair_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___ctor, (KeyValuePair_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___Boxed * __this, int32_t key, TextResourceManager_FontAssetRef value, MethodInfo * method)); -DO_APP_FUNC(0x0171C0C0, String *, KeyValuePair_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__ToString, (KeyValuePair_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, KeyValuePair_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__get_Key, (KeyValuePair_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171C0A0, TextResourceManager_FontAssetRef, KeyValuePair_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__get_Value, (KeyValuePair_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00977B80, void, KeyValuePair_2_System_Int32Enum_System_Int32Enum___ctor, (KeyValuePair_2_System_Int32Enum_System_Int32Enum___Boxed * __this, Int32Enum__Enum key, Int32Enum__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x0171BA30, String *, KeyValuePair_2_System_Int32Enum_System_Int32Enum__ToString, (KeyValuePair_2_System_Int32Enum_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, Int32Enum__Enum, KeyValuePair_2_System_Int32Enum_System_Int32Enum__get_Key, (KeyValuePair_2_System_Int32Enum_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C173E0, Int32Enum__Enum, KeyValuePair_2_System_Int32Enum_System_Int32Enum__get_Value, (KeyValuePair_2_System_Int32Enum_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0114D850, void, KeyValuePair_2_System_Int32Enum_System_Object___ctor, (KeyValuePair_2_System_Int32Enum_System_Object___Boxed * __this, Int32Enum__Enum key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x0171BC10, String *, KeyValuePair_2_System_Int32Enum_System_Object__ToString, (KeyValuePair_2_System_Int32Enum_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, Int32Enum__Enum, KeyValuePair_2_System_Int32Enum_System_Object__get_Key, (KeyValuePair_2_System_Int32Enum_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, Object *, KeyValuePair_2_System_Int32Enum_System_Object__get_Value, (KeyValuePair_2_System_Int32Enum_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171C1B0, void, KeyValuePair_2_System_Int64_UnityEngine_UIElements_ComputedStyle___ctor, (KeyValuePair_2_System_Int64_UnityEngine_UIElements_ComputedStyle___Boxed * __this, int64_t key, ComputedStyle value, MethodInfo * method)); -DO_APP_FUNC(0x0171C280, String *, KeyValuePair_2_System_Int64_UnityEngine_UIElements_ComputedStyle__ToString, (KeyValuePair_2_System_Int64_UnityEngine_UIElements_ComputedStyle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, int64_t, KeyValuePair_2_System_Int64_UnityEngine_UIElements_ComputedStyle__get_Key, (KeyValuePair_2_System_Int64_UnityEngine_UIElements_ComputedStyle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171C240, ComputedStyle, KeyValuePair_2_System_Int64_UnityEngine_UIElements_ComputedStyle__get_Value, (KeyValuePair_2_System_Int64_UnityEngine_UIElements_ComputedStyle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0114F3E0, void, KeyValuePair_2_System_Int64_System_Object___ctor, (KeyValuePair_2_System_Int64_System_Object___Boxed * __this, int64_t key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x0171C3B0, String *, KeyValuePair_2_System_Int64_System_Object__ToString, (KeyValuePair_2_System_Int64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, int64_t, KeyValuePair_2_System_Int64_System_Object__get_Key, (KeyValuePair_2_System_Int64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, Object *, KeyValuePair_2_System_Int64_System_Object__get_Value, (KeyValuePair_2_System_Int64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0114F3E0, void, KeyValuePair_2_System_IntPtr_System_Object___ctor, (KeyValuePair_2_System_IntPtr_System_Object___Boxed * __this, void * key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x0171C3B0, String *, KeyValuePair_2_System_IntPtr_System_Object__ToString, (KeyValuePair_2_System_IntPtr_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, void *, KeyValuePair_2_System_IntPtr_System_Object__get_Key, (KeyValuePair_2_System_IntPtr_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, Object *, KeyValuePair_2_System_IntPtr_System_Object__get_Value, (KeyValuePair_2_System_IntPtr_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171C450, void, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString___ctor, (KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString___Boxed * __this, InternedString key, InternedString value, MethodInfo * method)); -DO_APP_FUNC(0x0171C500, String *, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__ToString, (KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C2FFD0, InternedString, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__get_Key, (KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, InternedString, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__get_Value, (KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171AA00, void, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object___ctor, (KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object___Boxed * __this, InternedString key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x0171AAB0, String *, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object__ToString, (KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C2FFD0, InternedString, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object__get_Key, (KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object__get_Value, (KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171C450, void, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout___ctor, (KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout___Boxed * __this, InternedString key, InputControlLayout_Collection_PrecompiledLayout value, MethodInfo * method)); -DO_APP_FUNC(0x0171C500, String *, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__ToString, (KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C2FFD0, InternedString, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__get_Key, (KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, InputControlLayout_Collection_PrecompiledLayout, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__get_Value, (KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0114D850, void, KeyValuePair_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object___ctor, (KeyValuePair_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object___Boxed * __this, IpQCkqlgJLyrFpAOyBfUxXQpJsWK key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x0171BC10, String *, KeyValuePair_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object__ToString, (KeyValuePair_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, IpQCkqlgJLyrFpAOyBfUxXQpJsWK, KeyValuePair_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object__get_Key, (KeyValuePair_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, Object *, KeyValuePair_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object__get_Value, (KeyValuePair_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0114F3E0, void, KeyValuePair_2_Photon_Bolt_NetworkId_System_Object___ctor, (KeyValuePair_2_Photon_Bolt_NetworkId_System_Object___Boxed * __this, NetworkId key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x0171C3B0, String *, KeyValuePair_2_Photon_Bolt_NetworkId_System_Object__ToString, (KeyValuePair_2_Photon_Bolt_NetworkId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, NetworkId, KeyValuePair_2_Photon_Bolt_NetworkId_System_Object__get_Key, (KeyValuePair_2_Photon_Bolt_NetworkId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, Object *, KeyValuePair_2_Photon_Bolt_NetworkId_System_Object__get_Value, (KeyValuePair_2_Photon_Bolt_NetworkId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01150250, void, KeyValuePair_2_System_Object_System_ArraySegment_1___ctor, (KeyValuePair_2_System_Object_System_ArraySegment_1___Boxed * __this, Object * key, ArraySegment_1_Byte_ value, MethodInfo * method)); -DO_APP_FUNC(0x0171C5F0, String *, KeyValuePair_2_System_Object_System_ArraySegment_1__ToString, (KeyValuePair_2_System_Object_System_ArraySegment_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_System_ArraySegment_1__get_Key, (KeyValuePair_2_System_Object_System_ArraySegment_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C16880, ArraySegment_1_Byte_, KeyValuePair_2_System_Object_System_ArraySegment_1__get_Value, (KeyValuePair_2_System_Object_System_ArraySegment_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171C690, void, KeyValuePair_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___ctor, (KeyValuePair_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___Boxed * __this, Object * key, AsyncOperationHandle_1_System_Object_ value, MethodInfo * method)); -DO_APP_FUNC(0x0171C750, String *, KeyValuePair_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__ToString, (KeyValuePair_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__get_Key, (KeyValuePair_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171C0A0, AsyncOperationHandle_1_System_Object_, KeyValuePair_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__get_Value, (KeyValuePair_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x015A35B0, void, KeyValuePair_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___ctor, (KeyValuePair_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Boxed * __this, Object * key, AsyncOperationHandle value, MethodInfo * method)); -DO_APP_FUNC(0x0171C820, String *, KeyValuePair_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__ToString, (KeyValuePair_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__get_Key, (KeyValuePair_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171C800, AsyncOperationHandle, KeyValuePair_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__get_Value, (KeyValuePair_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x011512A0, void, KeyValuePair_2_System_Object_System_Boolean___ctor, (KeyValuePair_2_System_Object_System_Boolean___Boxed * __this, Object * key, bool value, MethodInfo * method)); -DO_APP_FUNC(0x0171C8D0, String *, KeyValuePair_2_System_Object_System_Boolean__ToString, (KeyValuePair_2_System_Object_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_System_Boolean__get_Key, (KeyValuePair_2_System_Object_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C23340, bool, KeyValuePair_2_System_Object_System_Boolean__get_Value, (KeyValuePair_2_System_Object_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171C970, void, KeyValuePair_2_System_Object_UnityEngine_Bounds___ctor, (KeyValuePair_2_System_Object_UnityEngine_Bounds___Boxed * __this, Object * key, Bounds value, MethodInfo * method)); -DO_APP_FUNC(0x0171C820, String *, KeyValuePair_2_System_Object_UnityEngine_Bounds__ToString, (KeyValuePair_2_System_Object_UnityEngine_Bounds___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_UnityEngine_Bounds__get_Key, (KeyValuePair_2_System_Object_UnityEngine_Bounds___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171C800, Bounds, KeyValuePair_2_System_Object_UnityEngine_Bounds__get_Value, (KeyValuePair_2_System_Object_UnityEngine_Bounds___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x011512A0, void, KeyValuePair_2_System_Object_System_Byte___ctor, (KeyValuePair_2_System_Object_System_Byte___Boxed * __this, Object * key, uint8_t value, MethodInfo * method)); -DO_APP_FUNC(0x0171C8D0, String *, KeyValuePair_2_System_Object_System_Byte__ToString, (KeyValuePair_2_System_Object_System_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_System_Byte__get_Key, (KeyValuePair_2_System_Object_System_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C23340, uint8_t, KeyValuePair_2_System_Object_System_Byte__get_Value, (KeyValuePair_2_System_Object_System_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171C9E0, void, KeyValuePair_2_System_Object_System_Char___ctor, (KeyValuePair_2_System_Object_System_Char___Boxed * __this, Object * key, uint16_t value, MethodInfo * method)); -DO_APP_FUNC(0x0171CA40, String *, KeyValuePair_2_System_Object_System_Char__ToString, (KeyValuePair_2_System_Object_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_System_Char__get_Key, (KeyValuePair_2_System_Object_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C2F820, uint16_t, KeyValuePair_2_System_Object_System_Char__get_Value, (KeyValuePair_2_System_Object_System_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171CAE0, void, KeyValuePair_2_System_Object_UnityEngine_Color___ctor, (KeyValuePair_2_System_Object_UnityEngine_Color___Boxed * __this, Object * key, Color value, MethodInfo * method)); -DO_APP_FUNC(0x0171C5F0, String *, KeyValuePair_2_System_Object_UnityEngine_Color__ToString, (KeyValuePair_2_System_Object_UnityEngine_Color___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_UnityEngine_Color__get_Key, (KeyValuePair_2_System_Object_UnityEngine_Color___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C16880, Color, KeyValuePair_2_System_Object_UnityEngine_Color__get_Value, (KeyValuePair_2_System_Object_UnityEngine_Color___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x004CB450, void, KeyValuePair_2_System_Object_UnityEngine_Color32___ctor, (KeyValuePair_2_System_Object_UnityEngine_Color32___Boxed * __this, Object * key, Color32 value, MethodInfo * method)); -DO_APP_FUNC(0x0171CB40, String *, KeyValuePair_2_System_Object_UnityEngine_Color32__ToString, (KeyValuePair_2_System_Object_UnityEngine_Color32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_UnityEngine_Color32__get_Key, (KeyValuePair_2_System_Object_UnityEngine_Color32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471920, Color32, KeyValuePair_2_System_Object_UnityEngine_Color32__get_Value, (KeyValuePair_2_System_Object_UnityEngine_Color32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x004CB450, void, KeyValuePair_2_System_Object_System_Int32___ctor, (KeyValuePair_2_System_Object_System_Int32___Boxed * __this, Object * key, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x0171CB40, String *, KeyValuePair_2_System_Object_System_Int32__ToString, (KeyValuePair_2_System_Object_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_System_Int32__get_Key, (KeyValuePair_2_System_Object_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471920, int32_t, KeyValuePair_2_System_Object_System_Int32__get_Value, (KeyValuePair_2_System_Object_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x004CB450, void, KeyValuePair_2_System_Object_System_Int32Enum___ctor, (KeyValuePair_2_System_Object_System_Int32Enum___Boxed * __this, Object * key, Int32Enum__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x0171CB40, String *, KeyValuePair_2_System_Object_System_Int32Enum__ToString, (KeyValuePair_2_System_Object_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_System_Int32Enum__get_Key, (KeyValuePair_2_System_Object_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471920, Int32Enum__Enum, KeyValuePair_2_System_Object_System_Int32Enum__get_Value, (KeyValuePair_2_System_Object_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A76400, void, KeyValuePair_2_System_Object_System_Object___ctor, (KeyValuePair_2_System_Object_System_Object___Boxed * __this, Object * key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x0171CBE0, String *, KeyValuePair_2_System_Object_System_Object__ToString, (KeyValuePair_2_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_System_Object__get_Key, (KeyValuePair_2_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, Object *, KeyValuePair_2_System_Object_System_Object__get_Value, (KeyValuePair_2_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01150250, void, KeyValuePair_2_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___ctor, (KeyValuePair_2_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed * __this, Object * key, ObjectSurface value, MethodInfo * method)); -DO_APP_FUNC(0x0171C5F0, String *, KeyValuePair_2_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__ToString, (KeyValuePair_2_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__get_Key, (KeyValuePair_2_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C16880, ObjectSurface, KeyValuePair_2_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__get_Value, (KeyValuePair_2_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171CC40, void, KeyValuePair_2_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___ctor, (KeyValuePair_2_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___Boxed * __this, Object * key, OriginalMaterialValue value, MethodInfo * method)); -DO_APP_FUNC(0x0171CCE0, String *, KeyValuePair_2_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__ToString, (KeyValuePair_2_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__get_Key, (KeyValuePair_2_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171CCC0, OriginalMaterialValue, KeyValuePair_2_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__get_Value, (KeyValuePair_2_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171CAE0, void, KeyValuePair_2_System_Object_UnityEngine_Playables_Playable___ctor, (KeyValuePair_2_System_Object_UnityEngine_Playables_Playable___Boxed * __this, Object * key, Playable value, MethodInfo * method)); -DO_APP_FUNC(0x0171C5F0, String *, KeyValuePair_2_System_Object_UnityEngine_Playables_Playable__ToString, (KeyValuePair_2_System_Object_UnityEngine_Playables_Playable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_UnityEngine_Playables_Playable__get_Key, (KeyValuePair_2_System_Object_UnityEngine_Playables_Playable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C16880, Playable, KeyValuePair_2_System_Object_UnityEngine_Playables_Playable__get_Value, (KeyValuePair_2_System_Object_UnityEngine_Playables_Playable___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171CDA0, void, KeyValuePair_2_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___ctor, (KeyValuePair_2_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___Boxed * __this, Object * key, ProbeVolumeBakingProcessSettings value, MethodInfo * method)); -DO_APP_FUNC(0x0171C750, String *, KeyValuePair_2_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__ToString, (KeyValuePair_2_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__get_Key, (KeyValuePair_2_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171C0A0, ProbeVolumeBakingProcessSettings, KeyValuePair_2_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__get_Value, (KeyValuePair_2_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01150250, void, KeyValuePair_2_System_Object_System_Resources_ResourceLocator___ctor, (KeyValuePair_2_System_Object_System_Resources_ResourceLocator___Boxed * __this, Object * key, ResourceLocator value, MethodInfo * method)); -DO_APP_FUNC(0x0171C5F0, String *, KeyValuePair_2_System_Object_System_Resources_ResourceLocator__ToString, (KeyValuePair_2_System_Object_System_Resources_ResourceLocator___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_System_Resources_ResourceLocator__get_Key, (KeyValuePair_2_System_Object_System_Resources_ResourceLocator___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C16880, ResourceLocator, KeyValuePair_2_System_Object_System_Resources_ResourceLocator__get_Value, (KeyValuePair_2_System_Object_System_Resources_ResourceLocator___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BBC610, void, KeyValuePair_2_System_Object_System_Single___ctor, (KeyValuePair_2_System_Object_System_Single___Boxed * __this, Object * key, float value, MethodInfo * method)); -DO_APP_FUNC(0x0171CE10, String *, KeyValuePair_2_System_Object_System_Single__ToString, (KeyValuePair_2_System_Object_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_System_Single__get_Key, (KeyValuePair_2_System_Object_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C43A70, float, KeyValuePair_2_System_Object_System_Single__get_Value, (KeyValuePair_2_System_Object_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01150250, void, KeyValuePair_2_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue___ctor, (KeyValuePair_2_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue___Boxed * __this, Object * key, StylePropertyValue value, MethodInfo * method)); -DO_APP_FUNC(0x0171C5F0, String *, KeyValuePair_2_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue__ToString, (KeyValuePair_2_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue__get_Key, (KeyValuePair_2_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C16880, StylePropertyValue, KeyValuePair_2_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue__get_Value, (KeyValuePair_2_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x004CB450, void, KeyValuePair_2_System_Object_UnityEngine_UIElements_TextureId___ctor, (KeyValuePair_2_System_Object_UnityEngine_UIElements_TextureId___Boxed * __this, Object * key, TextureId value, MethodInfo * method)); -DO_APP_FUNC(0x0171CB40, String *, KeyValuePair_2_System_Object_UnityEngine_UIElements_TextureId__ToString, (KeyValuePair_2_System_Object_UnityEngine_UIElements_TextureId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_UnityEngine_UIElements_TextureId__get_Key, (KeyValuePair_2_System_Object_UnityEngine_UIElements_TextureId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471920, TextureId, KeyValuePair_2_System_Object_UnityEngine_UIElements_TextureId__get_Value, (KeyValuePair_2_System_Object_UnityEngine_UIElements_TextureId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171CEC0, void, KeyValuePair_2_System_Object_System_TimeSpan___ctor, (KeyValuePair_2_System_Object_System_TimeSpan___Boxed * __this, Object * key, TimeSpan value, MethodInfo * method)); -DO_APP_FUNC(0x0171CF20, String *, KeyValuePair_2_System_Object_System_TimeSpan__ToString, (KeyValuePair_2_System_Object_System_TimeSpan___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_System_TimeSpan__get_Key, (KeyValuePair_2_System_Object_System_TimeSpan___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, TimeSpan, KeyValuePair_2_System_Object_System_TimeSpan__get_Value, (KeyValuePair_2_System_Object_System_TimeSpan___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171CFC0, void, KeyValuePair_2_System_Object_UdpKit_UdpEndPoint___ctor, (KeyValuePair_2_System_Object_UdpKit_UdpEndPoint___Boxed * __this, Object * key, UdpEndPoint value, MethodInfo * method)); -DO_APP_FUNC(0x0171D050, String *, KeyValuePair_2_System_Object_UdpKit_UdpEndPoint__ToString, (KeyValuePair_2_System_Object_UdpKit_UdpEndPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_UdpKit_UdpEndPoint__get_Key, (KeyValuePair_2_System_Object_UdpKit_UdpEndPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171D030, UdpEndPoint, KeyValuePair_2_System_Object_UdpKit_UdpEndPoint__get_Value, (KeyValuePair_2_System_Object_UdpKit_UdpEndPoint___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171D110, void, KeyValuePair_2_System_Object_UnityEngine_Vector2___ctor, (KeyValuePair_2_System_Object_UnityEngine_Vector2___Boxed * __this, Object * key, Vector2 value, MethodInfo * method)); -DO_APP_FUNC(0x0171D190, String *, KeyValuePair_2_System_Object_UnityEngine_Vector2__ToString, (KeyValuePair_2_System_Object_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_UnityEngine_Vector2__get_Key, (KeyValuePair_2_System_Object_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171D170, Vector2, KeyValuePair_2_System_Object_UnityEngine_Vector2__get_Value, (KeyValuePair_2_System_Object_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171D240, void, KeyValuePair_2_System_Object_UnityEngine_Vector3___ctor, (KeyValuePair_2_System_Object_UnityEngine_Vector3___Boxed * __this, Object * key, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x0171D2B0, String *, KeyValuePair_2_System_Object_UnityEngine_Vector3__ToString, (KeyValuePair_2_System_Object_UnityEngine_Vector3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_UnityEngine_Vector3__get_Key, (KeyValuePair_2_System_Object_UnityEngine_Vector3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00958320, Vector3, KeyValuePair_2_System_Object_UnityEngine_Vector3__get_Value, (KeyValuePair_2_System_Object_UnityEngine_Vector3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171D360, void, KeyValuePair_2_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___ctor, (KeyValuePair_2_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, Object * key, InputControlLayout_ControlItem value, MethodInfo * method)); -DO_APP_FUNC(0x0171D520, String *, KeyValuePair_2_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__ToString, (KeyValuePair_2_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__get_Key, (KeyValuePair_2_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171D4A0, InputControlLayout_ControlItem, KeyValuePair_2_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__get_Value, (KeyValuePair_2_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171CEC0, void, KeyValuePair_2_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___ctor, (KeyValuePair_2_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___Boxed * __this, Object * key, InputSystemUIInputModule_InputActionReferenceState value, MethodInfo * method)); -DO_APP_FUNC(0x0171CF20, String *, KeyValuePair_2_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__ToString, (KeyValuePair_2_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__get_Key, (KeyValuePair_2_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, InputSystemUIInputModule_InputActionReferenceState, KeyValuePair_2_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__get_Value, (KeyValuePair_2_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171D640, void, KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___ctor, (KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Boxed * __this, Object * key, JsonParser_JsonValue value, MethodInfo * method)); -DO_APP_FUNC(0x0171D750, String *, KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__ToString, (KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__get_Key, (KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171D720, JsonParser_JsonValue, KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__get_Value, (KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x004CB450, void, KeyValuePair_2_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___ctor, (KeyValuePair_2_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___Boxed * __this, Object * key, ProbeReferenceVolume_RegId value, MethodInfo * method)); -DO_APP_FUNC(0x0171CB40, String *, KeyValuePair_2_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__ToString, (KeyValuePair_2_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__get_Key, (KeyValuePair_2_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471920, ProbeReferenceVolume_RegId, KeyValuePair_2_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__get_Value, (KeyValuePair_2_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171D820, void, KeyValuePair_2_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback___ctor, (KeyValuePair_2_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback___Boxed * __this, Object * key, ProtocolClient_AckCallback value, MethodInfo * method)); -DO_APP_FUNC(0x0171CCE0, String *, KeyValuePair_2_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback__ToString, (KeyValuePair_2_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback__get_Key, (KeyValuePair_2_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171CCC0, ProtocolClient_AckCallback, KeyValuePair_2_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback__get_Value, (KeyValuePair_2_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171D820, void, KeyValuePair_2_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler___ctor, (KeyValuePair_2_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler___Boxed * __this, Object * key, ProtocolClient_MsgHandler value, MethodInfo * method)); -DO_APP_FUNC(0x0171CCE0, String *, KeyValuePair_2_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler__ToString, (KeyValuePair_2_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler__get_Key, (KeyValuePair_2_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171CCC0, ProtocolClient_MsgHandler, KeyValuePair_2_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler__get_Value, (KeyValuePair_2_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x015A35B0, void, KeyValuePair_2_System_Object_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___ctor, (KeyValuePair_2_System_Object_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Boxed * __this, Object * key, SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo value, MethodInfo * method)); -DO_APP_FUNC(0x0171C820, String *, KeyValuePair_2_System_Object_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__ToString, (KeyValuePair_2_System_Object_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__get_Key, (KeyValuePair_2_System_Object_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171C800, SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo, KeyValuePair_2_System_Object_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__get_Value, (KeyValuePair_2_System_Object_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171CEC0, void, KeyValuePair_2_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___ctor, (KeyValuePair_2_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___Boxed * __this, Object * key, StyleComplexSelector_PseudoStateData value, MethodInfo * method)); -DO_APP_FUNC(0x0171CF20, String *, KeyValuePair_2_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__ToString, (KeyValuePair_2_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__get_Key, (KeyValuePair_2_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, StyleComplexSelector_PseudoStateData, KeyValuePair_2_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__get_Value, (KeyValuePair_2_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0114D850, void, KeyValuePair_2_Photon_Bolt_PrefabId_System_Object___ctor, (KeyValuePair_2_Photon_Bolt_PrefabId_System_Object___Boxed * __this, PrefabId key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x0171BC10, String *, KeyValuePair_2_Photon_Bolt_PrefabId_System_Object__ToString, (KeyValuePair_2_Photon_Bolt_PrefabId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, PrefabId, KeyValuePair_2_Photon_Bolt_PrefabId_System_Object__get_Key, (KeyValuePair_2_Photon_Bolt_PrefabId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, Object *, KeyValuePair_2_Photon_Bolt_PrefabId_System_Object__get_Value, (KeyValuePair_2_Photon_Bolt_PrefabId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0114D850, void, KeyValuePair_2_UnityEngine_PropertyName_System_Object___ctor, (KeyValuePair_2_UnityEngine_PropertyName_System_Object___Boxed * __this, PropertyName key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x0171BC10, String *, KeyValuePair_2_UnityEngine_PropertyName_System_Object__ToString, (KeyValuePair_2_UnityEngine_PropertyName_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, PropertyName, KeyValuePair_2_UnityEngine_PropertyName_System_Object__get_Key, (KeyValuePair_2_UnityEngine_PropertyName_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, Object *, KeyValuePair_2_UnityEngine_PropertyName_System_Object__get_Value, (KeyValuePair_2_UnityEngine_PropertyName_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171D8F0, void, KeyValuePair_2_UnityEngine_RaycastHit_System_Int32___ctor, (KeyValuePair_2_UnityEngine_RaycastHit_System_Int32___Boxed * __this, RaycastHit key, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x0171D950, String *, KeyValuePair_2_UnityEngine_RaycastHit_System_Int32__ToString, (KeyValuePair_2_UnityEngine_RaycastHit_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171D920, RaycastHit, KeyValuePair_2_UnityEngine_RaycastHit_System_Int32__get_Key, (KeyValuePair_2_UnityEngine_RaycastHit_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0098C870, int32_t, KeyValuePair_2_UnityEngine_RaycastHit_System_Int32__get_Value, (KeyValuePair_2_UnityEngine_RaycastHit_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171DA50, void, KeyValuePair_2_System_Single_SplineMesh_CurveSample___ctor, (KeyValuePair_2_System_Single_SplineMesh_CurveSample___Boxed * __this, float key, CurveSample value, MethodInfo * method)); -DO_APP_FUNC(0x0171DAC0, String *, KeyValuePair_2_System_Single_SplineMesh_CurveSample__ToString, (KeyValuePair_2_System_Single_SplineMesh_CurveSample___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00BCBB00, float, KeyValuePair_2_System_Single_SplineMesh_CurveSample__get_Key, (KeyValuePair_2_System_Single_SplineMesh_CurveSample___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171DA90, CurveSample, KeyValuePair_2_System_Single_SplineMesh_CurveSample__get_Value, (KeyValuePair_2_System_Single_SplineMesh_CurveSample___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0114F3E0, void, KeyValuePair_2_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object___ctor, (KeyValuePair_2_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object___Boxed * __this, TerrainTileCoord key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x0171C3B0, String *, KeyValuePair_2_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object__ToString, (KeyValuePair_2_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, TerrainTileCoord, KeyValuePair_2_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object__get_Key, (KeyValuePair_2_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, Object *, KeyValuePair_2_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object__get_Value, (KeyValuePair_2_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171AF70, void, KeyValuePair_2_UnityEngine_XR_ARSubsystems_TrackableId_System_Object___ctor, (KeyValuePair_2_UnityEngine_XR_ARSubsystems_TrackableId_System_Object___Boxed * __this, TrackableId key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x0171AAB0, String *, KeyValuePair_2_UnityEngine_XR_ARSubsystems_TrackableId_System_Object__ToString, (KeyValuePair_2_UnityEngine_XR_ARSubsystems_TrackableId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C2FFD0, TrackableId, KeyValuePair_2_UnityEngine_XR_ARSubsystems_TrackableId_System_Object__get_Key, (KeyValuePair_2_UnityEngine_XR_ARSubsystems_TrackableId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, KeyValuePair_2_UnityEngine_XR_ARSubsystems_TrackableId_System_Object__get_Value, (KeyValuePair_2_UnityEngine_XR_ARSubsystems_TrackableId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0114D850, void, KeyValuePair_2_Photon_Bolt_TypeId_System_Object___ctor, (KeyValuePair_2_Photon_Bolt_TypeId_System_Object___Boxed * __this, TypeId key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x0171BC10, String *, KeyValuePair_2_Photon_Bolt_TypeId_System_Object__ToString, (KeyValuePair_2_Photon_Bolt_TypeId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, TypeId, KeyValuePair_2_Photon_Bolt_TypeId_System_Object__get_Key, (KeyValuePair_2_Photon_Bolt_TypeId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, Object *, KeyValuePair_2_Photon_Bolt_TypeId_System_Object__get_Value, (KeyValuePair_2_Photon_Bolt_TypeId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171DBE0, void, KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer___ctor, (KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer___Boxed * __this, uint16_t key, BoltPeer value, MethodInfo * method)); -DO_APP_FUNC(0x0171DC40, String *, KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer__ToString, (KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C15E20, uint16_t, KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer__get_Key, (KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, BoltPeer, KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer__get_Value, (KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171DBE0, void, KeyValuePair_2_System_UInt16_System_Object___ctor, (KeyValuePair_2_System_UInt16_System_Object___Boxed * __this, uint16_t key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x0171DD30, String *, KeyValuePair_2_System_UInt16_System_Object__ToString, (KeyValuePair_2_System_UInt16_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C15E20, uint16_t, KeyValuePair_2_System_UInt16_System_Object__get_Key, (KeyValuePair_2_System_UInt16_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, Object *, KeyValuePair_2_System_UInt16_System_Object__get_Value, (KeyValuePair_2_System_UInt16_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171DDD0, void, KeyValuePair_2_System_UInt16_Dissonance_PlayerChannel___ctor, (KeyValuePair_2_System_UInt16_Dissonance_PlayerChannel___Boxed * __this, uint16_t key, PlayerChannel value, MethodInfo * method)); -DO_APP_FUNC(0x0171DE40, String *, KeyValuePair_2_System_UInt16_Dissonance_PlayerChannel__ToString, (KeyValuePair_2_System_UInt16_Dissonance_PlayerChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C15E20, uint16_t, KeyValuePair_2_System_UInt16_Dissonance_PlayerChannel__get_Key, (KeyValuePair_2_System_UInt16_Dissonance_PlayerChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171C0A0, PlayerChannel, KeyValuePair_2_System_UInt16_Dissonance_PlayerChannel__get_Value, (KeyValuePair_2_System_UInt16_Dissonance_PlayerChannel___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171BD10, void, KeyValuePair_2_System_Int32_UnityEngine_Vector4___ctor, (KeyValuePair_2_System_Int32_UnityEngine_Vector4_ * __this, int32_t key, Vector4 value, MethodInfo * method)); +DO_APP_FUNC(0x0171BD30, String *, KeyValuePair_2_System_Int32_UnityEngine_Vector4__ToString, (KeyValuePair_2_System_Int32_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, KeyValuePair_2_System_Int32_UnityEngine_Vector4__get_Key, (KeyValuePair_2_System_Int32_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171BD20, Vector4, KeyValuePair_2_System_Int32_UnityEngine_Vector4__get_Value, (KeyValuePair_2_System_Int32_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171C030, void, KeyValuePair_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___ctor, (KeyValuePair_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * __this, int32_t key, TextResourceManager_FontAssetRef value, MethodInfo * method)); +DO_APP_FUNC(0x0171C0C0, String *, KeyValuePair_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__ToString, (KeyValuePair_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, KeyValuePair_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__get_Key, (KeyValuePair_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171C0A0, TextResourceManager_FontAssetRef, KeyValuePair_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef__get_Value, (KeyValuePair_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00977B80, void, KeyValuePair_2_System_Int32Enum_System_Int32Enum___ctor, (KeyValuePair_2_System_Int32Enum_System_Int32Enum_ * __this, Int32Enum__Enum key, Int32Enum__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x0171BA30, String *, KeyValuePair_2_System_Int32Enum_System_Int32Enum__ToString, (KeyValuePair_2_System_Int32Enum_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, Int32Enum__Enum, KeyValuePair_2_System_Int32Enum_System_Int32Enum__get_Key, (KeyValuePair_2_System_Int32Enum_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C173E0, Int32Enum__Enum, KeyValuePair_2_System_Int32Enum_System_Int32Enum__get_Value, (KeyValuePair_2_System_Int32Enum_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0114D850, void, KeyValuePair_2_System_Int32Enum_System_Object___ctor, (KeyValuePair_2_System_Int32Enum_System_Object_ * __this, Int32Enum__Enum key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0171BC10, String *, KeyValuePair_2_System_Int32Enum_System_Object__ToString, (KeyValuePair_2_System_Int32Enum_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, Int32Enum__Enum, KeyValuePair_2_System_Int32Enum_System_Object__get_Key, (KeyValuePair_2_System_Int32Enum_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, Object *, KeyValuePair_2_System_Int32Enum_System_Object__get_Value, (KeyValuePair_2_System_Int32Enum_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171C1B0, void, KeyValuePair_2_System_Int64_UnityEngine_UIElements_ComputedStyle___ctor, (KeyValuePair_2_System_Int64_UnityEngine_UIElements_ComputedStyle_ * __this, int64_t key, ComputedStyle value, MethodInfo * method)); +DO_APP_FUNC(0x0171C280, String *, KeyValuePair_2_System_Int64_UnityEngine_UIElements_ComputedStyle__ToString, (KeyValuePair_2_System_Int64_UnityEngine_UIElements_ComputedStyle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, int64_t, KeyValuePair_2_System_Int64_UnityEngine_UIElements_ComputedStyle__get_Key, (KeyValuePair_2_System_Int64_UnityEngine_UIElements_ComputedStyle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171C240, ComputedStyle, KeyValuePair_2_System_Int64_UnityEngine_UIElements_ComputedStyle__get_Value, (KeyValuePair_2_System_Int64_UnityEngine_UIElements_ComputedStyle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0114F3E0, void, KeyValuePair_2_System_Int64_System_Object___ctor, (KeyValuePair_2_System_Int64_System_Object_ * __this, int64_t key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0171C3B0, String *, KeyValuePair_2_System_Int64_System_Object__ToString, (KeyValuePair_2_System_Int64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, int64_t, KeyValuePair_2_System_Int64_System_Object__get_Key, (KeyValuePair_2_System_Int64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, Object *, KeyValuePair_2_System_Int64_System_Object__get_Value, (KeyValuePair_2_System_Int64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0114F3E0, void, KeyValuePair_2_System_IntPtr_System_Object___ctor, (KeyValuePair_2_System_IntPtr_System_Object_ * __this, void * key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0171C3B0, String *, KeyValuePair_2_System_IntPtr_System_Object__ToString, (KeyValuePair_2_System_IntPtr_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, void *, KeyValuePair_2_System_IntPtr_System_Object__get_Key, (KeyValuePair_2_System_IntPtr_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, Object *, KeyValuePair_2_System_IntPtr_System_Object__get_Value, (KeyValuePair_2_System_IntPtr_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171C450, void, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString___ctor, (KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_ * __this, InternedString key, InternedString value, MethodInfo * method)); +DO_APP_FUNC(0x0171C500, String *, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__ToString, (KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C2FFD0, InternedString, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__get_Key, (KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, InternedString, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__get_Value, (KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171AA00, void, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object___ctor, (KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object_ * __this, InternedString key, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC53F0, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object___ctor__MethodInfo); +DO_APP_FUNC(0x0171AAB0, String *, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object__ToString, (KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C2FFD0, InternedString, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object__get_Key, (KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5418, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object__get_Key__MethodInfo); +DO_APP_FUNC(0x003BB3C0, Object *, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object__get_Value, (KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5410, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object__get_Value__MethodInfo); +DO_APP_FUNC(0x0171C450, void, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout___ctor, (KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ * __this, InternedString key, InputControlLayout_Collection_PrecompiledLayout value, MethodInfo * method)); +DO_APP_FUNC(0x0171C500, String *, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__ToString, (KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C2FFD0, InternedString, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__get_Key, (KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, InputControlLayout_Collection_PrecompiledLayout, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout__get_Value, (KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0114D850, void, KeyValuePair_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object___ctor, (KeyValuePair_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_ * __this, IpQCkqlgJLyrFpAOyBfUxXQpJsWK key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0171BC10, String *, KeyValuePair_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object__ToString, (KeyValuePair_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, IpQCkqlgJLyrFpAOyBfUxXQpJsWK, KeyValuePair_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object__get_Key, (KeyValuePair_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, Object *, KeyValuePair_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object__get_Value, (KeyValuePair_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0114F3E0, void, KeyValuePair_2_Photon_Bolt_NetworkId_System_Object___ctor, (KeyValuePair_2_Photon_Bolt_NetworkId_System_Object_ * __this, NetworkId key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0171C3B0, String *, KeyValuePair_2_Photon_Bolt_NetworkId_System_Object__ToString, (KeyValuePair_2_Photon_Bolt_NetworkId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, NetworkId, KeyValuePair_2_Photon_Bolt_NetworkId_System_Object__get_Key, (KeyValuePair_2_Photon_Bolt_NetworkId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, Object *, KeyValuePair_2_Photon_Bolt_NetworkId_System_Object__get_Value, (KeyValuePair_2_Photon_Bolt_NetworkId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01150250, void, KeyValuePair_2_System_Object_System_ArraySegment_1___ctor, (KeyValuePair_2_System_Object_System_ArraySegment_1_ * __this, Object * key, ArraySegment_1_Byte_ value, MethodInfo * method)); +DO_APP_FUNC(0x0171C5F0, String *, KeyValuePair_2_System_Object_System_ArraySegment_1__ToString, (KeyValuePair_2_System_Object_System_ArraySegment_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_System_ArraySegment_1__get_Key, (KeyValuePair_2_System_Object_System_ArraySegment_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C16880, ArraySegment_1_Byte_, KeyValuePair_2_System_Object_System_ArraySegment_1__get_Value, (KeyValuePair_2_System_Object_System_ArraySegment_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171C690, void, KeyValuePair_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___ctor, (KeyValuePair_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * __this, Object * key, AsyncOperationHandle_1_System_Object_ value, MethodInfo * method)); +DO_APP_FUNC(0x0171C750, String *, KeyValuePair_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__ToString, (KeyValuePair_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__get_Key, (KeyValuePair_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171C0A0, AsyncOperationHandle_1_System_Object_, KeyValuePair_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__get_Value, (KeyValuePair_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x015A35B0, void, KeyValuePair_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___ctor, (KeyValuePair_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, Object * key, AsyncOperationHandle value, MethodInfo * method)); +DO_APP_FUNC(0x0171C820, String *, KeyValuePair_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__ToString, (KeyValuePair_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__get_Key, (KeyValuePair_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171C800, AsyncOperationHandle, KeyValuePair_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__get_Value, (KeyValuePair_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x011512A0, void, KeyValuePair_2_System_Object_System_Boolean___ctor, (KeyValuePair_2_System_Object_System_Boolean_ * __this, Object * key, bool value, MethodInfo * method)); +DO_APP_FUNC(0x0171C8D0, String *, KeyValuePair_2_System_Object_System_Boolean__ToString, (KeyValuePair_2_System_Object_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_System_Boolean__get_Key, (KeyValuePair_2_System_Object_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C23340, bool, KeyValuePair_2_System_Object_System_Boolean__get_Value, (KeyValuePair_2_System_Object_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171C970, void, KeyValuePair_2_System_Object_UnityEngine_Bounds___ctor, (KeyValuePair_2_System_Object_UnityEngine_Bounds_ * __this, Object * key, Bounds value, MethodInfo * method)); +DO_APP_FUNC(0x0171C820, String *, KeyValuePair_2_System_Object_UnityEngine_Bounds__ToString, (KeyValuePair_2_System_Object_UnityEngine_Bounds_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_UnityEngine_Bounds__get_Key, (KeyValuePair_2_System_Object_UnityEngine_Bounds_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171C800, Bounds, KeyValuePair_2_System_Object_UnityEngine_Bounds__get_Value, (KeyValuePair_2_System_Object_UnityEngine_Bounds_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x011512A0, void, KeyValuePair_2_System_Object_System_Byte___ctor, (KeyValuePair_2_System_Object_System_Byte_ * __this, Object * key, uint8_t value, MethodInfo * method)); +DO_APP_FUNC(0x0171C8D0, String *, KeyValuePair_2_System_Object_System_Byte__ToString, (KeyValuePair_2_System_Object_System_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_System_Byte__get_Key, (KeyValuePair_2_System_Object_System_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C23340, uint8_t, KeyValuePair_2_System_Object_System_Byte__get_Value, (KeyValuePair_2_System_Object_System_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171C9E0, void, KeyValuePair_2_System_Object_System_Char___ctor, (KeyValuePair_2_System_Object_System_Char_ * __this, Object * key, uint16_t value, MethodInfo * method)); +DO_APP_FUNC(0x0171CA40, String *, KeyValuePair_2_System_Object_System_Char__ToString, (KeyValuePair_2_System_Object_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_System_Char__get_Key, (KeyValuePair_2_System_Object_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C2F820, uint16_t, KeyValuePair_2_System_Object_System_Char__get_Value, (KeyValuePair_2_System_Object_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171CAE0, void, KeyValuePair_2_System_Object_UnityEngine_Color___ctor, (KeyValuePair_2_System_Object_UnityEngine_Color_ * __this, Object * key, Color value, MethodInfo * method)); +DO_APP_FUNC(0x0171C5F0, String *, KeyValuePair_2_System_Object_UnityEngine_Color__ToString, (KeyValuePair_2_System_Object_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_UnityEngine_Color__get_Key, (KeyValuePair_2_System_Object_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C16880, Color, KeyValuePair_2_System_Object_UnityEngine_Color__get_Value, (KeyValuePair_2_System_Object_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x004CB450, void, KeyValuePair_2_System_Object_UnityEngine_Color32___ctor, (KeyValuePair_2_System_Object_UnityEngine_Color32_ * __this, Object * key, Color32 value, MethodInfo * method)); +DO_APP_FUNC(0x0171CB40, String *, KeyValuePair_2_System_Object_UnityEngine_Color32__ToString, (KeyValuePair_2_System_Object_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_UnityEngine_Color32__get_Key, (KeyValuePair_2_System_Object_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471920, Color32, KeyValuePair_2_System_Object_UnityEngine_Color32__get_Value, (KeyValuePair_2_System_Object_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x004CB450, void, KeyValuePair_2_System_Object_System_Int32___ctor, (KeyValuePair_2_System_Object_System_Int32_ * __this, Object * key, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x0171CB40, String *, KeyValuePair_2_System_Object_System_Int32__ToString, (KeyValuePair_2_System_Object_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_System_Int32__get_Key, (KeyValuePair_2_System_Object_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471920, int32_t, KeyValuePair_2_System_Object_System_Int32__get_Value, (KeyValuePair_2_System_Object_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x004CB450, void, KeyValuePair_2_System_Object_System_Int32Enum___ctor, (KeyValuePair_2_System_Object_System_Int32Enum_ * __this, Object * key, Int32Enum__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x0171CB40, String *, KeyValuePair_2_System_Object_System_Int32Enum__ToString, (KeyValuePair_2_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_System_Int32Enum__get_Key, (KeyValuePair_2_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471920, Int32Enum__Enum, KeyValuePair_2_System_Object_System_Int32Enum__get_Value, (KeyValuePair_2_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A76400, void, KeyValuePair_2_System_Object_System_Object___ctor, (KeyValuePair_2_System_Object_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0171CBE0, String *, KeyValuePair_2_System_Object_System_Object__ToString, (KeyValuePair_2_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_System_Object__get_Key, (KeyValuePair_2_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0ED8, KeyValuePair_2_System_Object_System_Object__get_Key__MethodInfo); +DO_APP_FUNC(0x00594C90, Object *, KeyValuePair_2_System_Object_System_Object__get_Value, (KeyValuePair_2_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0EE0, KeyValuePair_2_System_Object_System_Object__get_Value__MethodInfo); +DO_APP_FUNC(0x01150250, void, KeyValuePair_2_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___ctor, (KeyValuePair_2_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, Object * key, ObjectSurface value, MethodInfo * method)); +DO_APP_FUNC(0x0171C5F0, String *, KeyValuePair_2_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__ToString, (KeyValuePair_2_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__get_Key, (KeyValuePair_2_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C16880, ObjectSurface, KeyValuePair_2_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__get_Value, (KeyValuePair_2_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171CC40, void, KeyValuePair_2_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___ctor, (KeyValuePair_2_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, Object * key, OriginalMaterialValue value, MethodInfo * method)); +DO_APP_FUNC(0x0171CCE0, String *, KeyValuePair_2_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__ToString, (KeyValuePair_2_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__get_Key, (KeyValuePair_2_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171CCC0, OriginalMaterialValue, KeyValuePair_2_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__get_Value, (KeyValuePair_2_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171CAE0, void, KeyValuePair_2_System_Object_UnityEngine_Playables_Playable___ctor, (KeyValuePair_2_System_Object_UnityEngine_Playables_Playable_ * __this, Object * key, Playable value, MethodInfo * method)); +DO_APP_FUNC(0x0171C5F0, String *, KeyValuePair_2_System_Object_UnityEngine_Playables_Playable__ToString, (KeyValuePair_2_System_Object_UnityEngine_Playables_Playable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_UnityEngine_Playables_Playable__get_Key, (KeyValuePair_2_System_Object_UnityEngine_Playables_Playable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C16880, Playable, KeyValuePair_2_System_Object_UnityEngine_Playables_Playable__get_Value, (KeyValuePair_2_System_Object_UnityEngine_Playables_Playable_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171CDA0, void, KeyValuePair_2_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___ctor, (KeyValuePair_2_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ * __this, Object * key, ProbeVolumeBakingProcessSettings value, MethodInfo * method)); +DO_APP_FUNC(0x0171C750, String *, KeyValuePair_2_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__ToString, (KeyValuePair_2_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__get_Key, (KeyValuePair_2_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171C0A0, ProbeVolumeBakingProcessSettings, KeyValuePair_2_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings__get_Value, (KeyValuePair_2_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01150250, void, KeyValuePair_2_System_Object_System_Resources_ResourceLocator___ctor, (KeyValuePair_2_System_Object_System_Resources_ResourceLocator_ * __this, Object * key, ResourceLocator value, MethodInfo * method)); +DO_APP_FUNC(0x0171C5F0, String *, KeyValuePair_2_System_Object_System_Resources_ResourceLocator__ToString, (KeyValuePair_2_System_Object_System_Resources_ResourceLocator_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_System_Resources_ResourceLocator__get_Key, (KeyValuePair_2_System_Object_System_Resources_ResourceLocator_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C16880, ResourceLocator, KeyValuePair_2_System_Object_System_Resources_ResourceLocator__get_Value, (KeyValuePair_2_System_Object_System_Resources_ResourceLocator_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00BBC610, void, KeyValuePair_2_System_Object_System_Single___ctor, (KeyValuePair_2_System_Object_System_Single_ * __this, Object * key, float value, MethodInfo * method)); +DO_APP_FUNC(0x0171CE10, String *, KeyValuePair_2_System_Object_System_Single__ToString, (KeyValuePair_2_System_Object_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_System_Single__get_Key, (KeyValuePair_2_System_Object_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C43A70, float, KeyValuePair_2_System_Object_System_Single__get_Value, (KeyValuePair_2_System_Object_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01150250, void, KeyValuePair_2_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue___ctor, (KeyValuePair_2_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, Object * key, StylePropertyValue value, MethodInfo * method)); +DO_APP_FUNC(0x0171C5F0, String *, KeyValuePair_2_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue__ToString, (KeyValuePair_2_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue__get_Key, (KeyValuePair_2_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C16880, StylePropertyValue, KeyValuePair_2_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue__get_Value, (KeyValuePair_2_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x004CB450, void, KeyValuePair_2_System_Object_UnityEngine_UIElements_TextureId___ctor, (KeyValuePair_2_System_Object_UnityEngine_UIElements_TextureId_ * __this, Object * key, TextureId value, MethodInfo * method)); +DO_APP_FUNC(0x0171CB40, String *, KeyValuePair_2_System_Object_UnityEngine_UIElements_TextureId__ToString, (KeyValuePair_2_System_Object_UnityEngine_UIElements_TextureId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_UnityEngine_UIElements_TextureId__get_Key, (KeyValuePair_2_System_Object_UnityEngine_UIElements_TextureId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471920, TextureId, KeyValuePair_2_System_Object_UnityEngine_UIElements_TextureId__get_Value, (KeyValuePair_2_System_Object_UnityEngine_UIElements_TextureId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171CEC0, void, KeyValuePair_2_System_Object_System_TimeSpan___ctor, (KeyValuePair_2_System_Object_System_TimeSpan_ * __this, Object * key, TimeSpan value, MethodInfo * method)); +DO_APP_FUNC(0x0171CF20, String *, KeyValuePair_2_System_Object_System_TimeSpan__ToString, (KeyValuePair_2_System_Object_System_TimeSpan_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_System_TimeSpan__get_Key, (KeyValuePair_2_System_Object_System_TimeSpan_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, TimeSpan, KeyValuePair_2_System_Object_System_TimeSpan__get_Value, (KeyValuePair_2_System_Object_System_TimeSpan_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171CFC0, void, KeyValuePair_2_System_Object_UdpKit_UdpEndPoint___ctor, (KeyValuePair_2_System_Object_UdpKit_UdpEndPoint_ * __this, Object * key, UdpEndPoint value, MethodInfo * method)); +DO_APP_FUNC(0x0171D050, String *, KeyValuePair_2_System_Object_UdpKit_UdpEndPoint__ToString, (KeyValuePair_2_System_Object_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_UdpKit_UdpEndPoint__get_Key, (KeyValuePair_2_System_Object_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171D030, UdpEndPoint, KeyValuePair_2_System_Object_UdpKit_UdpEndPoint__get_Value, (KeyValuePair_2_System_Object_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171D110, void, KeyValuePair_2_System_Object_UnityEngine_Vector2___ctor, (KeyValuePair_2_System_Object_UnityEngine_Vector2_ * __this, Object * key, Vector2 value, MethodInfo * method)); +DO_APP_FUNC(0x0171D190, String *, KeyValuePair_2_System_Object_UnityEngine_Vector2__ToString, (KeyValuePair_2_System_Object_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_UnityEngine_Vector2__get_Key, (KeyValuePair_2_System_Object_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171D170, Vector2, KeyValuePair_2_System_Object_UnityEngine_Vector2__get_Value, (KeyValuePair_2_System_Object_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171D240, void, KeyValuePair_2_System_Object_UnityEngine_Vector3___ctor, (KeyValuePair_2_System_Object_UnityEngine_Vector3_ * __this, Object * key, Vector3 value, MethodInfo * method)); +DO_APP_FUNC(0x0171D2B0, String *, KeyValuePair_2_System_Object_UnityEngine_Vector3__ToString, (KeyValuePair_2_System_Object_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_UnityEngine_Vector3__get_Key, (KeyValuePair_2_System_Object_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00958320, Vector3, KeyValuePair_2_System_Object_UnityEngine_Vector3__get_Value, (KeyValuePair_2_System_Object_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171D360, void, KeyValuePair_2_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___ctor, (KeyValuePair_2_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, Object * key, InputControlLayout_ControlItem value, MethodInfo * method)); +DO_APP_FUNC(0x0171D520, String *, KeyValuePair_2_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__ToString, (KeyValuePair_2_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__get_Key, (KeyValuePair_2_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171D4A0, InputControlLayout_ControlItem, KeyValuePair_2_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__get_Value, (KeyValuePair_2_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171CEC0, void, KeyValuePair_2_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___ctor, (KeyValuePair_2_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ * __this, Object * key, InputSystemUIInputModule_InputActionReferenceState value, MethodInfo * method)); +DO_APP_FUNC(0x0171CF20, String *, KeyValuePair_2_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__ToString, (KeyValuePair_2_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__get_Key, (KeyValuePair_2_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, InputSystemUIInputModule_InputActionReferenceState, KeyValuePair_2_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__get_Value, (KeyValuePair_2_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171D640, void, KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___ctor, (KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, Object * key, JsonParser_JsonValue value, MethodInfo * method)); +DO_APP_FUNC(0x0171D750, String *, KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__ToString, (KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__get_Key, (KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171D720, JsonParser_JsonValue, KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__get_Value, (KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x004CB450, void, KeyValuePair_2_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___ctor, (KeyValuePair_2_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ * __this, Object * key, ProbeReferenceVolume_RegId value, MethodInfo * method)); +DO_APP_FUNC(0x0171CB40, String *, KeyValuePair_2_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__ToString, (KeyValuePair_2_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__get_Key, (KeyValuePair_2_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471920, ProbeReferenceVolume_RegId, KeyValuePair_2_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId__get_Value, (KeyValuePair_2_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171D820, void, KeyValuePair_2_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback___ctor, (KeyValuePair_2_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback_ * __this, Object * key, ProtocolClient_AckCallback value, MethodInfo * method)); +DO_APP_FUNC(0x0171CCE0, String *, KeyValuePair_2_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback__ToString, (KeyValuePair_2_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback__get_Key, (KeyValuePair_2_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171CCC0, ProtocolClient_AckCallback, KeyValuePair_2_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback__get_Value, (KeyValuePair_2_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171D820, void, KeyValuePair_2_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler___ctor, (KeyValuePair_2_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_ * __this, Object * key, ProtocolClient_MsgHandler value, MethodInfo * method)); +DO_APP_FUNC(0x0171CCE0, String *, KeyValuePair_2_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler__ToString, (KeyValuePair_2_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler__get_Key, (KeyValuePair_2_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171CCC0, ProtocolClient_MsgHandler, KeyValuePair_2_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler__get_Value, (KeyValuePair_2_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x015A35B0, void, KeyValuePair_2_System_Object_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___ctor, (KeyValuePair_2_System_Object_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, Object * key, SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo value, MethodInfo * method)); +DO_APP_FUNC(0x0171C820, String *, KeyValuePair_2_System_Object_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__ToString, (KeyValuePair_2_System_Object_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__get_Key, (KeyValuePair_2_System_Object_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171C800, SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo, KeyValuePair_2_System_Object_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__get_Value, (KeyValuePair_2_System_Object_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171CEC0, void, KeyValuePair_2_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___ctor, (KeyValuePair_2_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ * __this, Object * key, StyleComplexSelector_PseudoStateData value, MethodInfo * method)); +DO_APP_FUNC(0x0171CF20, String *, KeyValuePair_2_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__ToString, (KeyValuePair_2_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Object *, KeyValuePair_2_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__get_Key, (KeyValuePair_2_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, StyleComplexSelector_PseudoStateData, KeyValuePair_2_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__get_Value, (KeyValuePair_2_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0114D850, void, KeyValuePair_2_Photon_Bolt_PrefabId_System_Object___ctor, (KeyValuePair_2_Photon_Bolt_PrefabId_System_Object_ * __this, PrefabId key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0171BC10, String *, KeyValuePair_2_Photon_Bolt_PrefabId_System_Object__ToString, (KeyValuePair_2_Photon_Bolt_PrefabId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, PrefabId, KeyValuePair_2_Photon_Bolt_PrefabId_System_Object__get_Key, (KeyValuePair_2_Photon_Bolt_PrefabId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, Object *, KeyValuePair_2_Photon_Bolt_PrefabId_System_Object__get_Value, (KeyValuePair_2_Photon_Bolt_PrefabId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0114D850, void, KeyValuePair_2_UnityEngine_PropertyName_System_Object___ctor, (KeyValuePair_2_UnityEngine_PropertyName_System_Object_ * __this, PropertyName key, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6BC8, KeyValuePair_2_UnityEngine_PropertyName_System_Object___ctor__MethodInfo); +DO_APP_FUNC(0x0171BC10, String *, KeyValuePair_2_UnityEngine_PropertyName_System_Object__ToString, (KeyValuePair_2_UnityEngine_PropertyName_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, PropertyName, KeyValuePair_2_UnityEngine_PropertyName_System_Object__get_Key, (KeyValuePair_2_UnityEngine_PropertyName_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6BB0, KeyValuePair_2_UnityEngine_PropertyName_System_Object__get_Key__MethodInfo); +DO_APP_FUNC(0x00594C90, Object *, KeyValuePair_2_UnityEngine_PropertyName_System_Object__get_Value, (KeyValuePair_2_UnityEngine_PropertyName_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6BB8, KeyValuePair_2_UnityEngine_PropertyName_System_Object__get_Value__MethodInfo); +DO_APP_FUNC(0x0171D8F0, void, KeyValuePair_2_UnityEngine_RaycastHit_System_Int32___ctor, (KeyValuePair_2_UnityEngine_RaycastHit_System_Int32_ * __this, RaycastHit key, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x0171D950, String *, KeyValuePair_2_UnityEngine_RaycastHit_System_Int32__ToString, (KeyValuePair_2_UnityEngine_RaycastHit_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171D920, RaycastHit, KeyValuePair_2_UnityEngine_RaycastHit_System_Int32__get_Key, (KeyValuePair_2_UnityEngine_RaycastHit_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0098C870, int32_t, KeyValuePair_2_UnityEngine_RaycastHit_System_Int32__get_Value, (KeyValuePair_2_UnityEngine_RaycastHit_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171DA50, void, KeyValuePair_2_System_Single_SplineMesh_CurveSample___ctor, (KeyValuePair_2_System_Single_SplineMesh_CurveSample_ * __this, float key, CurveSample value, MethodInfo * method)); +DO_APP_FUNC(0x0171DAC0, String *, KeyValuePair_2_System_Single_SplineMesh_CurveSample__ToString, (KeyValuePair_2_System_Single_SplineMesh_CurveSample_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00BCBB00, float, KeyValuePair_2_System_Single_SplineMesh_CurveSample__get_Key, (KeyValuePair_2_System_Single_SplineMesh_CurveSample_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171DA90, CurveSample, KeyValuePair_2_System_Single_SplineMesh_CurveSample__get_Value, (KeyValuePair_2_System_Single_SplineMesh_CurveSample_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0114F3E0, void, KeyValuePair_2_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object___ctor, (KeyValuePair_2_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object_ * __this, TerrainTileCoord key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0171C3B0, String *, KeyValuePair_2_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object__ToString, (KeyValuePair_2_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, TerrainTileCoord, KeyValuePair_2_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object__get_Key, (KeyValuePair_2_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, Object *, KeyValuePair_2_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object__get_Value, (KeyValuePair_2_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171AF70, void, KeyValuePair_2_UnityEngine_XR_ARSubsystems_TrackableId_System_Object___ctor, (KeyValuePair_2_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_ * __this, TrackableId key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0171AAB0, String *, KeyValuePair_2_UnityEngine_XR_ARSubsystems_TrackableId_System_Object__ToString, (KeyValuePair_2_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C2FFD0, TrackableId, KeyValuePair_2_UnityEngine_XR_ARSubsystems_TrackableId_System_Object__get_Key, (KeyValuePair_2_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, KeyValuePair_2_UnityEngine_XR_ARSubsystems_TrackableId_System_Object__get_Value, (KeyValuePair_2_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0114D850, void, KeyValuePair_2_Photon_Bolt_TypeId_System_Object___ctor, (KeyValuePair_2_Photon_Bolt_TypeId_System_Object_ * __this, TypeId key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0171BC10, String *, KeyValuePair_2_Photon_Bolt_TypeId_System_Object__ToString, (KeyValuePair_2_Photon_Bolt_TypeId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, TypeId, KeyValuePair_2_Photon_Bolt_TypeId_System_Object__get_Key, (KeyValuePair_2_Photon_Bolt_TypeId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, Object *, KeyValuePair_2_Photon_Bolt_TypeId_System_Object__get_Value, (KeyValuePair_2_Photon_Bolt_TypeId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171DBE0, void, KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer___ctor, (KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, uint16_t key, BoltPeer value, MethodInfo * method)); +DO_APP_FUNC(0x0171DC40, String *, KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer__ToString, (KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C15E20, uint16_t, KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer__get_Key, (KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, BoltPeer, KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer__get_Value, (KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171DBE0, void, KeyValuePair_2_System_UInt16_System_Object___ctor, (KeyValuePair_2_System_UInt16_System_Object_ * __this, uint16_t key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0171DD30, String *, KeyValuePair_2_System_UInt16_System_Object__ToString, (KeyValuePair_2_System_UInt16_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C15E20, uint16_t, KeyValuePair_2_System_UInt16_System_Object__get_Key, (KeyValuePair_2_System_UInt16_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, Object *, KeyValuePair_2_System_UInt16_System_Object__get_Value, (KeyValuePair_2_System_UInt16_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171DDD0, void, KeyValuePair_2_System_UInt16_Dissonance_PlayerChannel___ctor, (KeyValuePair_2_System_UInt16_Dissonance_PlayerChannel_ * __this, uint16_t key, PlayerChannel value, MethodInfo * method)); +DO_APP_FUNC(0x0171DE40, String *, KeyValuePair_2_System_UInt16_Dissonance_PlayerChannel__ToString, (KeyValuePair_2_System_UInt16_Dissonance_PlayerChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C15E20, uint16_t, KeyValuePair_2_System_UInt16_Dissonance_PlayerChannel__get_Key, (KeyValuePair_2_System_UInt16_Dissonance_PlayerChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171C0A0, PlayerChannel, KeyValuePair_2_System_UInt16_Dissonance_PlayerChannel__get_Value, (KeyValuePair_2_System_UInt16_Dissonance_PlayerChannel_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8F008, KeyValuePair_2_System_UInt16_Dissonance_PlayerChannel__get_Value__MethodInfo); -DO_APP_FUNC(0x0171DF30, void, KeyValuePair_2_System_UInt16_Dissonance_RoomChannel___ctor, (KeyValuePair_2_System_UInt16_Dissonance_RoomChannel___Boxed * __this, uint16_t key, RoomChannel value, MethodInfo * method)); -DO_APP_FUNC(0x0171DFA0, String *, KeyValuePair_2_System_UInt16_Dissonance_RoomChannel__ToString, (KeyValuePair_2_System_UInt16_Dissonance_RoomChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C15E20, uint16_t, KeyValuePair_2_System_UInt16_Dissonance_RoomChannel__get_Key, (KeyValuePair_2_System_UInt16_Dissonance_RoomChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171CCC0, RoomChannel, KeyValuePair_2_System_UInt16_Dissonance_RoomChannel__get_Value, (KeyValuePair_2_System_UInt16_Dissonance_RoomChannel___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171DF30, void, KeyValuePair_2_System_UInt16_Dissonance_RoomChannel___ctor, (KeyValuePair_2_System_UInt16_Dissonance_RoomChannel_ * __this, uint16_t key, RoomChannel value, MethodInfo * method)); +DO_APP_FUNC(0x0171DFA0, String *, KeyValuePair_2_System_UInt16_Dissonance_RoomChannel__ToString, (KeyValuePair_2_System_UInt16_Dissonance_RoomChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C15E20, uint16_t, KeyValuePair_2_System_UInt16_Dissonance_RoomChannel__get_Key, (KeyValuePair_2_System_UInt16_Dissonance_RoomChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171CCC0, RoomChannel, KeyValuePair_2_System_UInt16_Dissonance_RoomChannel__get_Value, (KeyValuePair_2_System_UInt16_Dissonance_RoomChannel_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8F000, KeyValuePair_2_System_UInt16_Dissonance_RoomChannel__get_Value__MethodInfo); -DO_APP_FUNC(0x0114A760, void, KeyValuePair_2_System_UInt32_System_Boolean___ctor, (KeyValuePair_2_System_UInt32_System_Boolean___Boxed * __this, uint32_t key, bool value, MethodInfo * method)); -DO_APP_FUNC(0x0171B590, String *, KeyValuePair_2_System_UInt32_System_Boolean__ToString, (KeyValuePair_2_System_UInt32_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, uint32_t, KeyValuePair_2_System_UInt32_System_Boolean__get_Key, (KeyValuePair_2_System_UInt32_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171B580, bool, KeyValuePair_2_System_UInt32_System_Boolean__get_Value, (KeyValuePair_2_System_UInt32_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171E0A0, void, KeyValuePair_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___ctor, (KeyValuePair_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___Boxed * __this, uint32_t key, GlyphPairAdjustmentRecord value, MethodInfo * method)); -DO_APP_FUNC(0x0171E100, String *, KeyValuePair_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__ToString, (KeyValuePair_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, uint32_t, KeyValuePair_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__get_Key, (KeyValuePair_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171E0D0, GlyphPairAdjustmentRecord, KeyValuePair_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__get_Value, (KeyValuePair_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00977B80, void, KeyValuePair_2_System_UInt32_System_Int32___ctor, (KeyValuePair_2_System_UInt32_System_Int32___Boxed * __this, uint32_t key, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x0171BA30, String *, KeyValuePair_2_System_UInt32_System_Int32__ToString, (KeyValuePair_2_System_UInt32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, uint32_t, KeyValuePair_2_System_UInt32_System_Int32__get_Key, (KeyValuePair_2_System_UInt32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C173E0, int32_t, KeyValuePair_2_System_UInt32_System_Int32__get_Value, (KeyValuePair_2_System_UInt32_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0114D850, void, KeyValuePair_2_System_UInt32_System_Object___ctor, (KeyValuePair_2_System_UInt32_System_Object___Boxed * __this, uint32_t key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x0171BC10, String *, KeyValuePair_2_System_UInt32_System_Object__ToString, (KeyValuePair_2_System_UInt32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, uint32_t, KeyValuePair_2_System_UInt32_System_Object__get_Key, (KeyValuePair_2_System_UInt32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, Object *, KeyValuePair_2_System_UInt32_System_Object__get_Value, (KeyValuePair_2_System_UInt32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171E200, void, KeyValuePair_2_System_UInt32_SessionClient___ctor, (KeyValuePair_2_System_UInt32_SessionClient___Boxed * __this, uint32_t key, SessionClient value, MethodInfo * method)); -DO_APP_FUNC(0x0171E2B0, String *, KeyValuePair_2_System_UInt32_SessionClient__ToString, (KeyValuePair_2_System_UInt32_SessionClient___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, uint32_t, KeyValuePair_2_System_UInt32_SessionClient__get_Key, (KeyValuePair_2_System_UInt32_SessionClient___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171E280, SessionClient, KeyValuePair_2_System_UInt32_SessionClient__get_Value, (KeyValuePair_2_System_UInt32_SessionClient___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0114F3E0, void, KeyValuePair_2_System_UInt64_System_Object___ctor, (KeyValuePair_2_System_UInt64_System_Object___Boxed * __this, uint64_t key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x0171C3B0, String *, KeyValuePair_2_System_UInt64_System_Object__ToString, (KeyValuePair_2_System_UInt64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, uint64_t, KeyValuePair_2_System_UInt64_System_Object__get_Key, (KeyValuePair_2_System_UInt64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, Object *, KeyValuePair_2_System_UInt64_System_Object__get_Value, (KeyValuePair_2_System_UInt64_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171E3C0, void, KeyValuePair_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___ctor, (KeyValuePair_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed * __this, UVTexture key, ObjectSurface value, MethodInfo * method)); -DO_APP_FUNC(0x0171E480, String *, KeyValuePair_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__ToString, (KeyValuePair_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171AEA0, UVTexture, KeyValuePair_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__get_Key, (KeyValuePair_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0093E890, ObjectSurface, KeyValuePair_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__get_Value, (KeyValuePair_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171E580, void, KeyValuePair_2_UdpKit_UdpChannelName_System_Object___ctor, (KeyValuePair_2_UdpKit_UdpChannelName_System_Object___Boxed * __this, UdpChannelName key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x0171AAB0, String *, KeyValuePair_2_UdpKit_UdpChannelName_System_Object__ToString, (KeyValuePair_2_UdpKit_UdpChannelName_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C2FFD0, UdpChannelName, KeyValuePair_2_UdpKit_UdpChannelName_System_Object__get_Key, (KeyValuePair_2_UdpKit_UdpChannelName_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, KeyValuePair_2_UdpKit_UdpChannelName_System_Object__get_Value, (KeyValuePair_2_UdpKit_UdpChannelName_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171E630, void, KeyValuePair_2_UdpKit_UdpEndPoint_System_Object___ctor, (KeyValuePair_2_UdpKit_UdpEndPoint_System_Object___Boxed * __this, UdpEndPoint key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x0171E6C0, String *, KeyValuePair_2_UdpKit_UdpEndPoint_System_Object__ToString, (KeyValuePair_2_UdpKit_UdpEndPoint_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171E6A0, UdpEndPoint, KeyValuePair_2_UdpKit_UdpEndPoint_System_Object__get_Key, (KeyValuePair_2_UdpKit_UdpEndPoint_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3E0, Object *, KeyValuePair_2_UdpKit_UdpEndPoint_System_Object__get_Value, (KeyValuePair_2_UdpKit_UdpEndPoint_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171E780, void, KeyValuePair_2_UdpKit_UdpEndPoint_System_UInt32___ctor, (KeyValuePair_2_UdpKit_UdpEndPoint_System_UInt32___Boxed * __this, UdpEndPoint key, uint32_t value, MethodInfo * method)); -DO_APP_FUNC(0x0171E7A0, String *, KeyValuePair_2_UdpKit_UdpEndPoint_System_UInt32__ToString, (KeyValuePair_2_UdpKit_UdpEndPoint_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171E6A0, UdpEndPoint, KeyValuePair_2_UdpKit_UdpEndPoint_System_UInt32__get_Key, (KeyValuePair_2_UdpKit_UdpEndPoint_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003CD440, uint32_t, KeyValuePair_2_UdpKit_UdpEndPoint_System_UInt32__get_Value, (KeyValuePair_2_UdpKit_UdpEndPoint_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171AF70, void, KeyValuePair_2_Photon_Bolt_UniqueId_System_Object___ctor, (KeyValuePair_2_Photon_Bolt_UniqueId_System_Object___Boxed * __this, UniqueId key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x0171AAB0, String *, KeyValuePair_2_Photon_Bolt_UniqueId_System_Object__ToString, (KeyValuePair_2_Photon_Bolt_UniqueId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C2FFD0, UniqueId, KeyValuePair_2_Photon_Bolt_UniqueId_System_Object__get_Key, (KeyValuePair_2_Photon_Bolt_UniqueId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, KeyValuePair_2_Photon_Bolt_UniqueId_System_Object__get_Value, (KeyValuePair_2_Photon_Bolt_UniqueId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171B0D0, void, KeyValuePair_2_UnityEngine_Vector3_System_Int32___ctor, (KeyValuePair_2_UnityEngine_Vector3_System_Int32___Boxed * __this, Vector3 key, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x0171B110, String *, KeyValuePair_2_UnityEngine_Vector3_System_Int32__ToString, (KeyValuePair_2_UnityEngine_Vector3_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171B0F0, Vector3, KeyValuePair_2_UnityEngine_Vector3_System_Int32__get_Key, (KeyValuePair_2_UnityEngine_Vector3_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E57F20, int32_t, KeyValuePair_2_UnityEngine_Vector3_System_Int32__get_Value, (KeyValuePair_2_UnityEngine_Vector3_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01154B70, void, KeyValuePair_2_UnityEngine_Vector3Int_System_Object___ctor, (KeyValuePair_2_UnityEngine_Vector3Int_System_Object___Boxed * __this, Vector3Int key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x0171E8A0, String *, KeyValuePair_2_UnityEngine_Vector3Int_System_Object__ToString, (KeyValuePair_2_UnityEngine_Vector3Int_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171B0F0, Vector3Int, KeyValuePair_2_UnityEngine_Vector3Int_System_Object__get_Key, (KeyValuePair_2_UnityEngine_Vector3Int_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, KeyValuePair_2_UnityEngine_Vector3Int_System_Object__get_Value, (KeyValuePair_2_UnityEngine_Vector3Int_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171C450, void, KeyValuePair_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef___ctor, (KeyValuePair_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef___Boxed * __this, XPathNodeRef key, XPathNodeRef value, MethodInfo * method)); -DO_APP_FUNC(0x0171C500, String *, KeyValuePair_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__ToString, (KeyValuePair_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C2FFD0, XPathNodeRef, KeyValuePair_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__get_Key, (KeyValuePair_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, XPathNodeRef, KeyValuePair_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__get_Value, (KeyValuePair_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171AA00, void, KeyValuePair_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object___ctor, (KeyValuePair_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object___Boxed * __this, JSONDeserialization_TaskField key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x0171AAB0, String *, KeyValuePair_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object__ToString, (KeyValuePair_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C2FFD0, JSONDeserialization_TaskField, KeyValuePair_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object__get_Key, (KeyValuePair_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, KeyValuePair_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object__get_Value, (KeyValuePair_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171E950, void, KeyValuePair_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___ctor, (KeyValuePair_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___Boxed * __this, MemberRelationshipService_RelationshipEntry key, MemberRelationshipService_RelationshipEntry value, MethodInfo * method)); -DO_APP_FUNC(0x0171EA20, String *, KeyValuePair_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__ToString, (KeyValuePair_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171AEA0, MemberRelationshipService_RelationshipEntry, KeyValuePair_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__get_Key, (KeyValuePair_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00F97060, MemberRelationshipService_RelationshipEntry, KeyValuePair_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__get_Value, (KeyValuePair_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0114D850, void, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object___ctor, (KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object___Boxed * __this, ProbeReferenceVolume_RegId key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x0171BC10, String *, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object__ToString, (KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, ProbeReferenceVolume_RegId, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object__get_Key, (KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, Object *, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object__get_Value, (KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171B300, void, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta___ctor, (KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta___Boxed * __this, ProbeReferenceVolume_RegId key, ProbeBrickIndex_BrickMeta value, MethodInfo * method)); -DO_APP_FUNC(0x0171B360, String *, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__ToString, (KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, ProbeReferenceVolume_RegId, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__get_Key, (KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C16880, ProbeBrickIndex_BrickMeta, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__get_Value, (KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171EB20, void, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo___ctor, (KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo___Boxed * __this, ProbeReferenceVolume_RegId key, ProbeBrickIndex_CellIndexUpdateInfo value, MethodInfo * method)); -DO_APP_FUNC(0x0171EB60, String *, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__ToString, (KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, ProbeReferenceVolume_RegId, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__get_Key, (KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171EB40, ProbeBrickIndex_CellIndexUpdateInfo, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__get_Value, (KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171EC60, void, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object___ctor, (KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object___Boxed * __this, ProbeReferenceVolume_Volume key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x0171ED00, String *, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object__ToString, (KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171ECD0, ProbeReferenceVolume_Volume, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object__get_Key, (KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003C7320, Object *, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object__get_Value, (KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171ADE0, void, KeyValuePair_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object___ctor, (KeyValuePair_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object___Boxed * __this, Regex_CachedCodeEntryKey key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x0171AEC0, String *, KeyValuePair_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object__ToString, (KeyValuePair_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171AEA0, Regex_CachedCodeEntryKey, KeyValuePair_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object__get_Key, (KeyValuePair_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3D0, Object *, KeyValuePair_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object__get_Value, (KeyValuePair_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171EDC0, void, KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32___ctor, (KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32___Boxed * __this, StylePropertyAnimationSystem_ElementPropertyPair key, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x0171AFE0, String *, KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__ToString, (KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C2FFD0, StylePropertyAnimationSystem_ElementPropertyPair, KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__get_Key, (KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, int32_t, KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__get_Value, (KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171EDC0, void, KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum___ctor, (KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum___Boxed * __this, StylePropertyAnimationSystem_ElementPropertyPair key, Int32Enum__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x0171AFE0, String *, KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum__ToString, (KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C2FFD0, StylePropertyAnimationSystem_ElementPropertyPair, KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum__get_Key, (KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, Int32Enum__Enum, KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum__get_Value, (KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171AA00, void, KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object___ctor, (KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object___Boxed * __this, StylePropertyAnimationSystem_ElementPropertyPair key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x0171AAB0, String *, KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object__ToString, (KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C2FFD0, StylePropertyAnimationSystem_ElementPropertyPair, KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object__get_Key, (KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object__get_Value, (KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0114F3E0, void, KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object___ctor, (KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object___Boxed * __this, StyleSheetCache_SheetHandleKey key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x0171C3B0, String *, KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object__ToString, (KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, StyleSheetCache_SheetHandleKey, KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object__get_Key, (KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, Object *, KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object__get_Value, (KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171EE20, void, KeyValuePair_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object___ctor, (KeyValuePair_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object___Boxed * __this, WetDecalSystem_MaterialBatchId key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x0171EF60, String *, KeyValuePair_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object__ToString, (KeyValuePair_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171EF10, WetDecalSystem_MaterialBatchId, KeyValuePair_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object__get_Key, (KeyValuePair_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003C91E0, Object *, KeyValuePair_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object__get_Value, (KeyValuePair_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0114A760, void, KeyValuePair_2_System_UInt32_System_Boolean___ctor, (KeyValuePair_2_System_UInt32_System_Boolean_ * __this, uint32_t key, bool value, MethodInfo * method)); +DO_APP_FUNC(0x0171B590, String *, KeyValuePair_2_System_UInt32_System_Boolean__ToString, (KeyValuePair_2_System_UInt32_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, uint32_t, KeyValuePair_2_System_UInt32_System_Boolean__get_Key, (KeyValuePair_2_System_UInt32_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171B580, bool, KeyValuePair_2_System_UInt32_System_Boolean__get_Value, (KeyValuePair_2_System_UInt32_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8000, KeyValuePair_2_System_UInt32_System_Boolean__get_Value__MethodInfo); +DO_APP_FUNC(0x0171E0A0, void, KeyValuePair_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___ctor, (KeyValuePair_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, uint32_t key, GlyphPairAdjustmentRecord value, MethodInfo * method)); +DO_APP_FUNC(0x0171E100, String *, KeyValuePair_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__ToString, (KeyValuePair_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, uint32_t, KeyValuePair_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__get_Key, (KeyValuePair_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171E0D0, GlyphPairAdjustmentRecord, KeyValuePair_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__get_Value, (KeyValuePair_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00977B80, void, KeyValuePair_2_System_UInt32_System_Int32___ctor, (KeyValuePair_2_System_UInt32_System_Int32_ * __this, uint32_t key, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x0171BA30, String *, KeyValuePair_2_System_UInt32_System_Int32__ToString, (KeyValuePair_2_System_UInt32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, uint32_t, KeyValuePair_2_System_UInt32_System_Int32__get_Key, (KeyValuePair_2_System_UInt32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C173E0, int32_t, KeyValuePair_2_System_UInt32_System_Int32__get_Value, (KeyValuePair_2_System_UInt32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0114D850, void, KeyValuePair_2_System_UInt32_System_Object___ctor, (KeyValuePair_2_System_UInt32_System_Object_ * __this, uint32_t key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0171BC10, String *, KeyValuePair_2_System_UInt32_System_Object__ToString, (KeyValuePair_2_System_UInt32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, uint32_t, KeyValuePair_2_System_UInt32_System_Object__get_Key, (KeyValuePair_2_System_UInt32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, Object *, KeyValuePair_2_System_UInt32_System_Object__get_Value, (KeyValuePair_2_System_UInt32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171E200, void, KeyValuePair_2_System_UInt32_SessionClient___ctor, (KeyValuePair_2_System_UInt32_SessionClient_ * __this, uint32_t key, SessionClient value, MethodInfo * method)); +DO_APP_FUNC(0x0171E2B0, String *, KeyValuePair_2_System_UInt32_SessionClient__ToString, (KeyValuePair_2_System_UInt32_SessionClient_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, uint32_t, KeyValuePair_2_System_UInt32_SessionClient__get_Key, (KeyValuePair_2_System_UInt32_SessionClient_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6340, KeyValuePair_2_System_UInt32_SessionClient__get_Key__MethodInfo); +DO_APP_FUNC(0x0171E280, SessionClient, KeyValuePair_2_System_UInt32_SessionClient__get_Value, (KeyValuePair_2_System_UInt32_SessionClient_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6328, KeyValuePair_2_System_UInt32_SessionClient__get_Value__MethodInfo); +DO_APP_FUNC(0x0114F3E0, void, KeyValuePair_2_System_UInt64_System_Object___ctor, (KeyValuePair_2_System_UInt64_System_Object_ * __this, uint64_t key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0171C3B0, String *, KeyValuePair_2_System_UInt64_System_Object__ToString, (KeyValuePair_2_System_UInt64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, uint64_t, KeyValuePair_2_System_UInt64_System_Object__get_Key, (KeyValuePair_2_System_UInt64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, Object *, KeyValuePair_2_System_UInt64_System_Object__get_Value, (KeyValuePair_2_System_UInt64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171E3C0, void, KeyValuePair_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___ctor, (KeyValuePair_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, UVTexture key, ObjectSurface value, MethodInfo * method)); +DO_APP_FUNC(0x0171E480, String *, KeyValuePair_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__ToString, (KeyValuePair_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171AEA0, UVTexture, KeyValuePair_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__get_Key, (KeyValuePair_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0093E890, ObjectSurface, KeyValuePair_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__get_Value, (KeyValuePair_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171E580, void, KeyValuePair_2_UdpKit_UdpChannelName_System_Object___ctor, (KeyValuePair_2_UdpKit_UdpChannelName_System_Object_ * __this, UdpChannelName key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0171AAB0, String *, KeyValuePair_2_UdpKit_UdpChannelName_System_Object__ToString, (KeyValuePair_2_UdpKit_UdpChannelName_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C2FFD0, UdpChannelName, KeyValuePair_2_UdpKit_UdpChannelName_System_Object__get_Key, (KeyValuePair_2_UdpKit_UdpChannelName_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, KeyValuePair_2_UdpKit_UdpChannelName_System_Object__get_Value, (KeyValuePair_2_UdpKit_UdpChannelName_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171E630, void, KeyValuePair_2_UdpKit_UdpEndPoint_System_Object___ctor, (KeyValuePair_2_UdpKit_UdpEndPoint_System_Object_ * __this, UdpEndPoint key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0171E6C0, String *, KeyValuePair_2_UdpKit_UdpEndPoint_System_Object__ToString, (KeyValuePair_2_UdpKit_UdpEndPoint_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171E6A0, UdpEndPoint, KeyValuePair_2_UdpKit_UdpEndPoint_System_Object__get_Key, (KeyValuePair_2_UdpKit_UdpEndPoint_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3E0, Object *, KeyValuePair_2_UdpKit_UdpEndPoint_System_Object__get_Value, (KeyValuePair_2_UdpKit_UdpEndPoint_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171E780, void, KeyValuePair_2_UdpKit_UdpEndPoint_System_UInt32___ctor, (KeyValuePair_2_UdpKit_UdpEndPoint_System_UInt32_ * __this, UdpEndPoint key, uint32_t value, MethodInfo * method)); +DO_APP_FUNC(0x0171E7A0, String *, KeyValuePair_2_UdpKit_UdpEndPoint_System_UInt32__ToString, (KeyValuePair_2_UdpKit_UdpEndPoint_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171E6A0, UdpEndPoint, KeyValuePair_2_UdpKit_UdpEndPoint_System_UInt32__get_Key, (KeyValuePair_2_UdpKit_UdpEndPoint_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003CD440, uint32_t, KeyValuePair_2_UdpKit_UdpEndPoint_System_UInt32__get_Value, (KeyValuePair_2_UdpKit_UdpEndPoint_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171AF70, void, KeyValuePair_2_Photon_Bolt_UniqueId_System_Object___ctor, (KeyValuePair_2_Photon_Bolt_UniqueId_System_Object_ * __this, UniqueId key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0171AAB0, String *, KeyValuePair_2_Photon_Bolt_UniqueId_System_Object__ToString, (KeyValuePair_2_Photon_Bolt_UniqueId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C2FFD0, UniqueId, KeyValuePair_2_Photon_Bolt_UniqueId_System_Object__get_Key, (KeyValuePair_2_Photon_Bolt_UniqueId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, KeyValuePair_2_Photon_Bolt_UniqueId_System_Object__get_Value, (KeyValuePair_2_Photon_Bolt_UniqueId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171B0D0, void, KeyValuePair_2_UnityEngine_Vector3_System_Int32___ctor, (KeyValuePair_2_UnityEngine_Vector3_System_Int32_ * __this, Vector3 key, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBFB58, KeyValuePair_2_UnityEngine_Vector3_System_Int32___ctor__MethodInfo); +DO_APP_FUNC(0x0171B110, String *, KeyValuePair_2_UnityEngine_Vector3_System_Int32__ToString, (KeyValuePair_2_UnityEngine_Vector3_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171B0F0, Vector3, KeyValuePair_2_UnityEngine_Vector3_System_Int32__get_Key, (KeyValuePair_2_UnityEngine_Vector3_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBFB68, KeyValuePair_2_UnityEngine_Vector3_System_Int32__get_Key__MethodInfo); +DO_APP_FUNC(0x00E57F20, int32_t, KeyValuePair_2_UnityEngine_Vector3_System_Int32__get_Value, (KeyValuePair_2_UnityEngine_Vector3_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE8B8, KeyValuePair_2_UnityEngine_Vector3_System_Int32__get_Value__MethodInfo); +DO_APP_FUNC(0x01154B70, void, KeyValuePair_2_UnityEngine_Vector3Int_System_Object___ctor, (KeyValuePair_2_UnityEngine_Vector3Int_System_Object_ * __this, Vector3Int key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0171E8A0, String *, KeyValuePair_2_UnityEngine_Vector3Int_System_Object__ToString, (KeyValuePair_2_UnityEngine_Vector3Int_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171B0F0, Vector3Int, KeyValuePair_2_UnityEngine_Vector3Int_System_Object__get_Key, (KeyValuePair_2_UnityEngine_Vector3Int_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, KeyValuePair_2_UnityEngine_Vector3Int_System_Object__get_Value, (KeyValuePair_2_UnityEngine_Vector3Int_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171C450, void, KeyValuePair_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef___ctor, (KeyValuePair_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ * __this, XPathNodeRef key, XPathNodeRef value, MethodInfo * method)); +DO_APP_FUNC(0x0171C500, String *, KeyValuePair_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__ToString, (KeyValuePair_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C2FFD0, XPathNodeRef, KeyValuePair_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__get_Key, (KeyValuePair_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E382E0, XPathNodeRef, KeyValuePair_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef__get_Value, (KeyValuePair_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171AA00, void, KeyValuePair_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object___ctor, (KeyValuePair_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_ * __this, JSONDeserialization_TaskField key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0171AAB0, String *, KeyValuePair_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object__ToString, (KeyValuePair_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C2FFD0, JSONDeserialization_TaskField, KeyValuePair_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object__get_Key, (KeyValuePair_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, KeyValuePair_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object__get_Value, (KeyValuePair_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171E950, void, KeyValuePair_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___ctor, (KeyValuePair_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ * __this, MemberRelationshipService_RelationshipEntry key, MemberRelationshipService_RelationshipEntry value, MethodInfo * method)); +DO_APP_FUNC(0x0171EA20, String *, KeyValuePair_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__ToString, (KeyValuePair_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171AEA0, MemberRelationshipService_RelationshipEntry, KeyValuePair_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__get_Key, (KeyValuePair_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00F97060, MemberRelationshipService_RelationshipEntry, KeyValuePair_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry__get_Value, (KeyValuePair_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0114D850, void, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object___ctor, (KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_ * __this, ProbeReferenceVolume_RegId key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0171BC10, String *, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object__ToString, (KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, ProbeReferenceVolume_RegId, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object__get_Key, (KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, Object *, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object__get_Value, (KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171B300, void, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta___ctor, (KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ * __this, ProbeReferenceVolume_RegId key, ProbeBrickIndex_BrickMeta value, MethodInfo * method)); +DO_APP_FUNC(0x0171B360, String *, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__ToString, (KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, ProbeReferenceVolume_RegId, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__get_Key, (KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C16880, ProbeBrickIndex_BrickMeta, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta__get_Value, (KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171EB20, void, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo___ctor, (KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_ * __this, ProbeReferenceVolume_RegId key, ProbeBrickIndex_CellIndexUpdateInfo value, MethodInfo * method)); +DO_APP_FUNC(0x0171EB60, String *, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__ToString, (KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, ProbeReferenceVolume_RegId, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__get_Key, (KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171EB40, ProbeBrickIndex_CellIndexUpdateInfo, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo__get_Value, (KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171EC60, void, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object___ctor, (KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object_ * __this, ProbeReferenceVolume_Volume key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0171ED00, String *, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object__ToString, (KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171ECD0, ProbeReferenceVolume_Volume, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object__get_Key, (KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003C7320, Object *, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object__get_Value, (KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171ADE0, void, KeyValuePair_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object___ctor, (KeyValuePair_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object_ * __this, Regex_CachedCodeEntryKey key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0171AEC0, String *, KeyValuePair_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object__ToString, (KeyValuePair_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171AEA0, Regex_CachedCodeEntryKey, KeyValuePair_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object__get_Key, (KeyValuePair_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3D0, Object *, KeyValuePair_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object__get_Value, (KeyValuePair_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171EDC0, void, KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32___ctor, (KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * __this, StylePropertyAnimationSystem_ElementPropertyPair key, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x0171AFE0, String *, KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__ToString, (KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C2FFD0, StylePropertyAnimationSystem_ElementPropertyPair, KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__get_Key, (KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, int32_t, KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32__get_Value, (KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171EDC0, void, KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum___ctor, (KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_ * __this, StylePropertyAnimationSystem_ElementPropertyPair key, Int32Enum__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x0171AFE0, String *, KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum__ToString, (KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C2FFD0, StylePropertyAnimationSystem_ElementPropertyPair, KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum__get_Key, (KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, Int32Enum__Enum, KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum__get_Value, (KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171AA00, void, KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object___ctor, (KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object_ * __this, StylePropertyAnimationSystem_ElementPropertyPair key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0171AAB0, String *, KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object__ToString, (KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C2FFD0, StylePropertyAnimationSystem_ElementPropertyPair, KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object__get_Key, (KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3C0, Object *, KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object__get_Value, (KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0114F3E0, void, KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object___ctor, (KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object_ * __this, StyleSheetCache_SheetHandleKey key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0171C3B0, String *, KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object__ToString, (KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, StyleSheetCache_SheetHandleKey, KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object__get_Key, (KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, Object *, KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object__get_Value, (KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171EE20, void, KeyValuePair_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object___ctor, (KeyValuePair_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_ * __this, WetDecalSystem_MaterialBatchId key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0171EF60, String *, KeyValuePair_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object__ToString, (KeyValuePair_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171EF10, WetDecalSystem_MaterialBatchId, KeyValuePair_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object__get_Key, (KeyValuePair_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003C91E0, Object *, KeyValuePair_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object__get_Value, (KeyValuePair_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0171F7C0, void, KeyboardEventBase_1_System_Object___ctor, (KeyboardEventBase_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0171F510, Object *, KeyboardEventBase_1_System_Object__GetPooled, (Event_1 * systemEvent, MethodInfo * method)); DO_APP_FUNC(0x0171F350, Object *, KeyboardEventBase_1_System_Object__GetPooled_1, (uint16_t c, KeyCode__Enum keyCode, EventModifiers__Enum modifiers, MethodInfo * method)); @@ -161294,7 +178285,7 @@ DO_APP_FUNC(0x00C72010, IGetSetValue_1_System_Object_ *, KeyedGetSetValueStore_1 DO_APP_FUNC(0x00C72190, Object *, KeyedGetSetValueStore_1_System_Object__GetValue, (KeyedGetSetValueStore_1_System_Object_ * __this, Object * key, MethodInfo * method)); DO_APP_FUNC(0x00C72250, bool, KeyedGetSetValueStore_1_System_Object__RemoveItem, (KeyedGetSetValueStore_1_System_Object_ * __this, Object * key, MethodInfo * method)); DO_APP_FUNC(0x00C722D0, void, KeyedGetSetValueStore_1_System_Object__SetValue, (KeyedGetSetValueStore_1_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x00C72390, bool, KeyedGetSetValueStore_1_System_Object__TryGetValue, (KeyedGetSetValueStore_1_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x00C72390, bool, KeyedGetSetValueStore_1_System_Object__TryGetValue, (KeyedGetSetValueStore_1_System_Object_ * __this, Object * key, Object * * value, MethodInfo * method)); DO_APP_FUNC(0x00C725A0, bool, KeyedGetSetValueStore_1_System_Object__TrySetValue, (KeyedGetSetValueStore_1_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x0171F840, void, KeyedGetSetValueStore_1_System_Object___ctor, (KeyedGetSetValueStore_1_System_Object_ * __this, bool param_0000c93f, MethodInfo * method)); DO_APP_FUNC(0x003BCCC0, void, KeyedGetSetValueStore_1_System_Object___ctor_1, (KeyedGetSetValueStore_1_System_Object_ * __this, Dictionary_2_System_Object_System_Object_ * param_0000c93d, bool param_0000c93e, MethodInfo * method)); @@ -161311,7 +178302,7 @@ DO_APP_FUNC(0x003BCC40, bool, KeyedGetSetValueStore_1_System_Object__System_Coll DO_APP_FUNC(0x0171FCD0, void, KeyedGetSetValueStore_1_System_Object__System_Collections_Generic_IDictionary_TKey_System_Object__Add, (KeyedGetSetValueStore_1_System_Object_ * __this, Object * param_0000c951, Object * param_0000c952, MethodInfo * method)); DO_APP_FUNC(0x0171FD50, bool, KeyedGetSetValueStore_1_System_Object__System_Collections_Generic_IDictionary_TKey_System_Object__ContainsKey, (KeyedGetSetValueStore_1_System_Object_ * __this, Object * param_0000c953, MethodInfo * method)); DO_APP_FUNC(0x00C72250, bool, KeyedGetSetValueStore_1_System_Object__System_Collections_Generic_IDictionary_TKey_System_Object__Remove, (KeyedGetSetValueStore_1_System_Object_ * __this, Object * param_0000c954, MethodInfo * method)); -DO_APP_FUNC(0x0171FDC0, bool, KeyedGetSetValueStore_1_System_Object__System_Collections_Generic_IDictionary_TKey_System_Object__TryGetValue, (KeyedGetSetValueStore_1_System_Object_ * __this, Object * param_0000c955, Object * param_0000c956, MethodInfo * method)); +DO_APP_FUNC(0x0171FDC0, bool, KeyedGetSetValueStore_1_System_Object__System_Collections_Generic_IDictionary_TKey_System_Object__TryGetValue, (KeyedGetSetValueStore_1_System_Object_ * __this, Object * param_0000c955, Object * * param_0000c956, MethodInfo * method)); DO_APP_FUNC(0x011312D0, Object *, KeyedGetSetValueStore_1_System_Object__System_Collections_Generic_IDictionary_TKey_System_Object__get_Item, (KeyedGetSetValueStore_1_System_Object_ * __this, Object * param_0000c957, MethodInfo * method)); DO_APP_FUNC(0x0171FD80, ICollection_1_System_Object_ *, KeyedGetSetValueStore_1_System_Object__System_Collections_Generic_IDictionary_TKey_System_Object__get_Keys, (KeyedGetSetValueStore_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0171FE00, ICollection_1_System_Object_ *, KeyedGetSetValueStore_1_System_Object__System_Collections_Generic_IDictionary_TKey_System_Object__get_Values, (KeyedGetSetValueStore_1_System_Object_ * __this, MethodInfo * method)); @@ -161324,21 +178315,22 @@ DO_APP_FUNC(0x01112B10, int32_t, KeyedGetSetValueStore_1_System_Object__get_Coun DO_APP_FUNC(0x003BCC40, bool, KeyedGetSetValueStore_1_System_Object__get_isReadOnlyCollection, (KeyedGetSetValueStore_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0171F9E0, void, KeyedGetSetValueStore_1_System_Object__rKJgWvlFoiaVfuyyWxQFvTRTyLPK, (Object * param_0000c94d, Type * param_0000c94e, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C94D88, KeyedGetSetValueStore_1_System_Object__rKJgWvlFoiaVfuyyWxQFvTRTyLPK__MethodInfo); -DO_APP_FUNC(0x01720320, void, LargeArrayBuilder_1_System_Object___ctor, (LargeArrayBuilder_1_System_Object___Boxed * __this, bool initialize, MethodInfo * method)); -DO_APP_FUNC(0x01720360, void, LargeArrayBuilder_1_System_Object___ctor_1, (LargeArrayBuilder_1_System_Object___Boxed * __this, int32_t maxCapacity, MethodInfo * method)); -DO_APP_FUNC(0x01720490, void, LargeArrayBuilder_1_System_Object__AddRange, (LargeArrayBuilder_1_System_Object___Boxed * __this, IEnumerable_1_System_Object_ * items, MethodInfo * method)); -DO_APP_FUNC(0x01720720, void, LargeArrayBuilder_1_System_Object__AddWithBufferAllocation, (LargeArrayBuilder_1_System_Object___Boxed * __this, Object * item, Object__Array * destination, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01720BC0, void, LargeArrayBuilder_1_System_Object__AllocateBuffer, (LargeArrayBuilder_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01720800, void, LargeArrayBuilder_1_System_Object__CopyTo, (LargeArrayBuilder_1_System_Object___Boxed * __this, Object__Array * array, int32_t arrayIndex, int32_t count, MethodInfo * method)); -DO_APP_FUNC(0x01720960, Object__Array *, LargeArrayBuilder_1_System_Object__GetBuffer, (LargeArrayBuilder_1_System_Object___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01720A00, Object__Array *, LargeArrayBuilder_1_System_Object__ToArray, (LargeArrayBuilder_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01720B50, bool, LargeArrayBuilder_1_System_Object__TryMove, (LargeArrayBuilder_1_System_Object___Boxed * __this, Object__Array * array, MethodInfo * method)); +DO_APP_FUNC(0x01720320, void, LargeArrayBuilder_1_System_Object___ctor, (LargeArrayBuilder_1_System_Object_ * __this, bool initialize, MethodInfo * method)); +DO_APP_FUNC(0x01720360, void, LargeArrayBuilder_1_System_Object___ctor_1, (LargeArrayBuilder_1_System_Object_ * __this, int32_t maxCapacity, MethodInfo * method)); +DO_APP_FUNC(0x01720490, void, LargeArrayBuilder_1_System_Object__AddRange, (LargeArrayBuilder_1_System_Object_ * __this, IEnumerable_1_System_Object_ * items, MethodInfo * method)); +DO_APP_FUNC(0x01720720, void, LargeArrayBuilder_1_System_Object__AddWithBufferAllocation, (LargeArrayBuilder_1_System_Object_ * __this, Object * item, Object__Array * * destination, int32_t * index, MethodInfo * method)); +DO_APP_FUNC(0x01720BC0, void, LargeArrayBuilder_1_System_Object__AllocateBuffer, (LargeArrayBuilder_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01720800, void, LargeArrayBuilder_1_System_Object__CopyTo, (LargeArrayBuilder_1_System_Object_ * __this, Object__Array * array, int32_t arrayIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC(0x01720960, Object__Array *, LargeArrayBuilder_1_System_Object__GetBuffer, (LargeArrayBuilder_1_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x01720A00, Object__Array *, LargeArrayBuilder_1_System_Object__ToArray, (LargeArrayBuilder_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01720B50, bool, LargeArrayBuilder_1_System_Object__TryMove, (LargeArrayBuilder_1_System_Object_ * __this, Object__Array * * array, MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, LazySingleton_1_System_Object___ctor, (LazySingleton_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x017212D0, void, LazySingleton_1_System_Object__Awake, (LazySingleton_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01720E50, bool, LazySingleton_1_System_Object__get_hasInstance, (MethodInfo * method)); DO_APP_FUNC(0x01720F90, Object *, LazySingleton_1_System_Object__get_instance, (MethodInfo * method)); DO_APP_FUNC(0x01721540, void, Lazy_1_Boolean___ctor, (Lazy_1_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01721570, void, Lazy_1_Boolean___ctor_1, (Lazy_1_Boolean_ * __this, Func_1_Boolean_ * valueFactory, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAEB40, Lazy_1_Boolean___ctor_1__MethodInfo); DO_APP_FUNC(0x017215A0, void, Lazy_1_Boolean___ctor_2, (Lazy_1_Boolean_ * __this, Func_1_Boolean_ * valueFactory, LazyThreadSafetyMode__Enum mode, bool useDefaultConstructor, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C94D00, Lazy_1_Boolean___ctor_2__MethodInfo); DO_APP_FUNC(0x01721EE0, bool, Lazy_1_Boolean__CreateValue, (Lazy_1_Boolean_ * __this, MethodInfo * method)); @@ -161354,6 +178346,7 @@ DO_APP_FUNC(0x017217C0, void, Lazy_1_Boolean__ViaFactory, (Lazy_1_Boolean_ * __t DO_APP_FUNC_METHODINFO(0x03C94CE8, Lazy_1_Boolean__ViaFactory__MethodInfo); DO_APP_FUNC(0x01722190, bool, Lazy_1_Boolean__get_IsValueCreated, (Lazy_1_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x017221A0, bool, Lazy_1_Boolean__get_Value, (Lazy_1_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF048, Lazy_1_Boolean__get_Value__MethodInfo); DO_APP_FUNC(0x01721540, void, Lazy_1_Object___ctor, (Lazy_1_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01721570, void, Lazy_1_Object___ctor_1, (Lazy_1_Object_ * __this, Func_1_Object_ * valueFactory, MethodInfo * method)); DO_APP_FUNC(0x01722300, void, Lazy_1_Object___ctor_2, (Lazy_1_Object_ * __this, Func_1_Object_ * valueFactory, LazyThreadSafetyMode__Enum mode, bool useDefaultConstructor, MethodInfo * method)); @@ -161419,6 +178412,7 @@ DO_APP_FUNC(0x003BB3C0, LinkedList_1_UnityEngine_UIElements_UIR_UIRenderDevice_D DO_APP_FUNC(0x01722FF0, LinkedListNode_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree_ *, LinkedListNode_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree__get_Next, (LinkedListNode_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01723030, LinkedListNode_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree_ *, LinkedListNode_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree__get_Previous, (LinkedListNode_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010F8990, UIRenderDevice_DeviceToFree, LinkedListNode_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree__get_Value, (LinkedListNode_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7AC0, LinkedListNode_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree__get_Value__MethodInfo); DO_APP_FUNC(0x017234A0, void, LinkedListNode_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree__set_Value, (LinkedListNode_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree_ * __this, UIRenderDevice_DeviceToFree value, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, LinkedList_1_System_ValueTuple_2__1__ctor, (LinkedList_1_System_ValueTuple_2__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x017235B0, void, LinkedList_1_System_ValueTuple_2__1__ctor_1, (LinkedList_1_System_ValueTuple_2__1 * __this, IEnumerable_1_System_ValueTuple_2__6 * collection, MethodInfo * method)); @@ -161615,6 +178609,7 @@ DO_APP_FUNC_METHODINFO(0x03C9E500, LinkedList_1_UnityEngine_ResourceManagement_U DO_APP_FUNC(0x01723820, LinkedListNode_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ *, LinkedList_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__get_Last, (LinkedList_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9E530, LinkedList_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__get_Last__MethodInfo); DO_APP_FUNC(0x003AE050, void, LinkedList_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree___ctor, (LinkedList_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7D38, LinkedList_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree___ctor__MethodInfo); DO_APP_FUNC(0x0172AA20, void, LinkedList_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree___ctor_1, (LinkedList_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree_ * __this, IEnumerable_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree_ * collection, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C94AC8, LinkedList_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree___ctor_1__MethodInfo); DO_APP_FUNC(0x003C6500, void, LinkedList_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree___ctor_2, (LinkedList_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); @@ -161625,6 +178620,7 @@ DO_APP_FUNC(0x01723B90, void, LinkedList_1_UnityEngine_UIElements_UIR_UIRenderDe DO_APP_FUNC(0x01723CE0, LinkedListNode_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree_ *, LinkedList_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree__AddFirst, (LinkedList_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree_ * __this, UIRenderDevice_DeviceToFree value, MethodInfo * method)); DO_APP_FUNC(0x01723E20, void, LinkedList_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree__AddFirst_1, (LinkedList_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree_ * __this, LinkedListNode_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree_ * node, MethodInfo * method)); DO_APP_FUNC(0x01723F90, LinkedListNode_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree_ *, LinkedList_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree__AddLast, (LinkedList_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree_ * __this, UIRenderDevice_DeviceToFree value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7BC0, LinkedList_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree__AddLast__MethodInfo); DO_APP_FUNC(0x01724080, void, LinkedList_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree__AddLast_1, (LinkedList_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree_ * __this, LinkedListNode_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree_ * node, MethodInfo * method)); DO_APP_FUNC(0x01724170, void, LinkedList_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree__Clear, (LinkedList_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01724250, bool, LinkedList_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree__Contains, (LinkedList_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree_ * __this, UIRenderDevice_DeviceToFree value, MethodInfo * method)); @@ -161659,7 +178655,9 @@ DO_APP_FUNC_METHODINFO(0x03C94A58, LinkedList_1_UnityEngine_UIElements_UIR_UIRen DO_APP_FUNC(0x0172B6B0, void, LinkedList_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree__ValidateNode, (LinkedList_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree_ * __this, LinkedListNode_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree_ * node, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C94A60, LinkedList_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree__ValidateNode__MethodInfo); DO_APP_FUNC(0x003BC2E0, int32_t, LinkedList_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree__get_Count, (LinkedList_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7AC8, LinkedList_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree__get_Count__MethodInfo); DO_APP_FUNC(0x003BB3C0, LinkedListNode_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree_ *, LinkedList_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree__get_First, (LinkedList_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD79B0, LinkedList_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree__get_First__MethodInfo); DO_APP_FUNC(0x01723820, LinkedListNode_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree_ *, LinkedList_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree__get_Last, (LinkedList_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, LinkedPoolItem_1_System_Object___ctor, (LinkedPoolItem_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0172BCD0, void, LinkedPool_1_System_Object___ctor, (LinkedPool_1_System_Object_ * __this, Func_1_Object_ * createFunc, Action_1_Object_ * resetAction, int32_t limit, MethodInfo * method)); @@ -161669,12 +178667,12 @@ DO_APP_FUNC(0x0172BF60, void, LinkedPool_1_System_Object__Return, (LinkedPool_1_ DO_APP_FUNC(0x003C7300, int32_t, LinkedPool_1_System_Object__get_Count, (LinkedPool_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7310, void, LinkedPool_1_System_Object__set_Count, (LinkedPool_1_System_Object_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x0172C0C0, void, ThreadLocal_1_T_LinkedSlot_System_Object___ctor, (ThreadLocal_1_T_LinkedSlot_System_Object_ * __this, ThreadLocal_1_T_LinkedSlotVolatile_System_Object___Array * slotArray, MethodInfo * method)); -DO_APP_FUNC(0x0172C120, void, RuntimeType_ListBuilder_1_Object___ctor, (RuntimeType_ListBuilder_1_Object___Boxed * __this, int32_t capacity, MethodInfo * method)); -DO_APP_FUNC(0x0172C3B0, void, RuntimeType_ListBuilder_1_Object__Add, (RuntimeType_ListBuilder_1_Object___Boxed * __this, Object * item, MethodInfo * method)); -DO_APP_FUNC(0x0172C300, void, RuntimeType_ListBuilder_1_Object__CopyTo, (RuntimeType_ListBuilder_1_Object___Boxed * __this, Object__Array * array, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x0172C1B0, Object__Array *, RuntimeType_ListBuilder_1_Object__ToArray, (RuntimeType_ListBuilder_1_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, int32_t, RuntimeType_ListBuilder_1_Object__get_Count, (RuntimeType_ListBuilder_1_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0172C180, Object *, RuntimeType_ListBuilder_1_Object__get_Item, (RuntimeType_ListBuilder_1_Object___Boxed * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x0172C120, void, RuntimeType_ListBuilder_1_Object___ctor, (RuntimeType_ListBuilder_1_Object_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC(0x0172C3B0, void, RuntimeType_ListBuilder_1_Object__Add, (RuntimeType_ListBuilder_1_Object_ * __this, Object * item, MethodInfo * method)); +DO_APP_FUNC(0x0172C300, void, RuntimeType_ListBuilder_1_Object__CopyTo, (RuntimeType_ListBuilder_1_Object_ * __this, Object__Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x0172C1B0, Object__Array *, RuntimeType_ListBuilder_1_Object__ToArray, (RuntimeType_ListBuilder_1_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD50, int32_t, RuntimeType_ListBuilder_1_Object__get_Count, (RuntimeType_ListBuilder_1_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0172C180, Object *, RuntimeType_ListBuilder_1_Object__get_Item, (RuntimeType_ListBuilder_1_Object_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x0103E630, void, ListChangeHandler_1_System_Object___ctor, (ListChangeHandler_1_System_Object_ * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x0042F0F0, IAsyncResult *, ListChangeHandler_1_System_Object__BeginInvoke, (ListChangeHandler_1_System_Object_ * __this, Object * sender, ListChangedEventArgs_1_System_Object_ * args, AsyncCallback * callback, Object * object, MethodInfo * method)); DO_APP_FUNC(0x003BA270, void, ListChangeHandler_1_System_Object__EndInvoke, (ListChangeHandler_1_System_Object_ * __this, IAsyncResult * result, MethodInfo * method)); @@ -161688,47 +178686,62 @@ DO_APP_FUNC(0x003EC2D0, void, ListChangedEventHandler_1_System_Object__Invoke, ( DO_APP_FUNC(0x0172E670, void, ListPool_1_UnityEngine_Color32___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172C6A0, List_1_UnityEngine_Color32_ *, ListPool_1_UnityEngine_Color32__Claim, (MethodInfo * method)); DO_APP_FUNC(0x0172D090, List_1_UnityEngine_Color32_ *, ListPool_1_UnityEngine_Color32__Claim_1, (int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC890, ListPool_1_UnityEngine_Color32__Claim_1__MethodInfo); DO_APP_FUNC(0x0172E3D0, void, ListPool_1_UnityEngine_Color32__Clear, (MethodInfo * method)); DO_APP_FUNC(0x0172CD70, int32_t, ListPool_1_UnityEngine_Color32__FindCandidate, (List_1_List_1_UnityEngine_Color32_ * pool, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x010C6F80, int32_t, ListPool_1_UnityEngine_Color32__GetSize, (MethodInfo * method)); DO_APP_FUNC(0x0172DDF0, void, ListPool_1_UnityEngine_Color32__Release, (List_1_UnityEngine_Color32_ * list, MethodInfo * method)); -DO_APP_FUNC(0x0172DCE0, void, ListPool_1_UnityEngine_Color32__Release_1, (List_1_UnityEngine_Color32_ * list, MethodInfo * method)); +DO_APP_FUNC(0x0172DCE0, void, ListPool_1_UnityEngine_Color32__Release_1, (List_1_UnityEngine_Color32_ * * list, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC880, ListPool_1_UnityEngine_Color32__Release_1__MethodInfo); DO_APP_FUNC(0x0172D8A0, void, ListPool_1_UnityEngine_Color32__Warmup, (int32_t count, int32_t size, MethodInfo * method)); DO_APP_FUNC(0x0172E670, void, ListPool_1_Pathfinding_Connection___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172C6A0, List_1_Pathfinding_Connection_ *, ListPool_1_Pathfinding_Connection__Claim, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8178, ListPool_1_Pathfinding_Connection__Claim__MethodInfo); DO_APP_FUNC(0x0172D090, List_1_Pathfinding_Connection_ *, ListPool_1_Pathfinding_Connection__Claim_1, (int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x0172E3D0, void, ListPool_1_Pathfinding_Connection__Clear, (MethodInfo * method)); DO_APP_FUNC(0x0172CD70, int32_t, ListPool_1_Pathfinding_Connection__FindCandidate, (List_1_List_1_Pathfinding_Connection_ * pool, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x010C6F80, int32_t, ListPool_1_Pathfinding_Connection__GetSize, (MethodInfo * method)); DO_APP_FUNC(0x0172DDF0, void, ListPool_1_Pathfinding_Connection__Release, (List_1_Pathfinding_Connection_ * list, MethodInfo * method)); -DO_APP_FUNC(0x0172DCE0, void, ListPool_1_Pathfinding_Connection__Release_1, (List_1_Pathfinding_Connection_ * list, MethodInfo * method)); +DO_APP_FUNC(0x0172DCE0, void, ListPool_1_Pathfinding_Connection__Release_1, (List_1_Pathfinding_Connection_ * * list, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB81A0, ListPool_1_Pathfinding_Connection__Release_1__MethodInfo); DO_APP_FUNC(0x0172D8A0, void, ListPool_1_Pathfinding_Connection__Warmup, (int32_t count, int32_t size, MethodInfo * method)); DO_APP_FUNC(0x0172E670, void, ListPool_1_Pathfinding_Int3___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172C6A0, List_1_Pathfinding_Int3_ *, ListPool_1_Pathfinding_Int3__Claim, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5D30, ListPool_1_Pathfinding_Int3__Claim__MethodInfo); DO_APP_FUNC(0x0172D090, List_1_Pathfinding_Int3_ *, ListPool_1_Pathfinding_Int3__Claim_1, (int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7A88, ListPool_1_Pathfinding_Int3__Claim_1__MethodInfo); DO_APP_FUNC(0x0172E3D0, void, ListPool_1_Pathfinding_Int3__Clear, (MethodInfo * method)); DO_APP_FUNC(0x0172CD70, int32_t, ListPool_1_Pathfinding_Int3__FindCandidate, (List_1_List_1_Pathfinding_Int3_ * pool, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x010C6F80, int32_t, ListPool_1_Pathfinding_Int3__GetSize, (MethodInfo * method)); DO_APP_FUNC(0x0172DDF0, void, ListPool_1_Pathfinding_Int3__Release, (List_1_Pathfinding_Int3_ * list, MethodInfo * method)); -DO_APP_FUNC(0x0172DCE0, void, ListPool_1_Pathfinding_Int3__Release_1, (List_1_Pathfinding_Int3_ * list, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC670, ListPool_1_Pathfinding_Int3__Release__MethodInfo); +DO_APP_FUNC(0x0172DCE0, void, ListPool_1_Pathfinding_Int3__Release_1, (List_1_Pathfinding_Int3_ * * list, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5CF8, ListPool_1_Pathfinding_Int3__Release_1__MethodInfo); DO_APP_FUNC(0x0172D8A0, void, ListPool_1_Pathfinding_Int3__Warmup, (int32_t count, int32_t size, MethodInfo * method)); DO_APP_FUNC(0x0172E670, void, ListPool_1_System_Int32___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172C6A0, List_1_System_Int32_ *, ListPool_1_System_Int32__Claim, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5A30, ListPool_1_System_Int32__Claim__MethodInfo); DO_APP_FUNC(0x0172D090, List_1_System_Int32_ *, ListPool_1_System_Int32__Claim_1, (int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA930, ListPool_1_System_Int32__Claim_1__MethodInfo); DO_APP_FUNC(0x0172E3D0, void, ListPool_1_System_Int32__Clear, (MethodInfo * method)); DO_APP_FUNC(0x0172CD70, int32_t, ListPool_1_System_Int32__FindCandidate, (List_1_List_1_System_Int32_ * pool, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x010C6F80, int32_t, ListPool_1_System_Int32__GetSize, (MethodInfo * method)); DO_APP_FUNC(0x0172DDF0, void, ListPool_1_System_Int32__Release, (List_1_System_Int32_ * list, MethodInfo * method)); -DO_APP_FUNC(0x0172DCE0, void, ListPool_1_System_Int32__Release_1, (List_1_System_Int32_ * list, MethodInfo * method)); +DO_APP_FUNC(0x0172DCE0, void, ListPool_1_System_Int32__Release_1, (List_1_System_Int32_ * * list, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5A10, ListPool_1_System_Int32__Release_1__MethodInfo); DO_APP_FUNC(0x0172D8A0, void, ListPool_1_System_Int32__Warmup, (int32_t count, int32_t size, MethodInfo * method)); DO_APP_FUNC(0x0172E670, void, ListPool_1_Pathfinding_ClipperLib_IntPoint___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172C6A0, List_1_Pathfinding_ClipperLib_IntPoint_ *, ListPool_1_Pathfinding_ClipperLib_IntPoint__Claim, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBBB10, ListPool_1_Pathfinding_ClipperLib_IntPoint__Claim__MethodInfo); DO_APP_FUNC(0x0172D090, List_1_Pathfinding_ClipperLib_IntPoint_ *, ListPool_1_Pathfinding_ClipperLib_IntPoint__Claim_1, (int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBBB08, ListPool_1_Pathfinding_ClipperLib_IntPoint__Claim_1__MethodInfo); DO_APP_FUNC(0x0172E3D0, void, ListPool_1_Pathfinding_ClipperLib_IntPoint__Clear, (MethodInfo * method)); DO_APP_FUNC(0x0172CD70, int32_t, ListPool_1_Pathfinding_ClipperLib_IntPoint__FindCandidate, (List_1_List_1_Pathfinding_ClipperLib_IntPoint_ * pool, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x010C6F80, int32_t, ListPool_1_Pathfinding_ClipperLib_IntPoint__GetSize, (MethodInfo * method)); DO_APP_FUNC(0x0172DDF0, void, ListPool_1_Pathfinding_ClipperLib_IntPoint__Release, (List_1_Pathfinding_ClipperLib_IntPoint_ * list, MethodInfo * method)); -DO_APP_FUNC(0x0172DCE0, void, ListPool_1_Pathfinding_ClipperLib_IntPoint__Release_1, (List_1_Pathfinding_ClipperLib_IntPoint_ * list, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBBAC8, ListPool_1_Pathfinding_ClipperLib_IntPoint__Release__MethodInfo); +DO_APP_FUNC(0x0172DCE0, void, ListPool_1_Pathfinding_ClipperLib_IntPoint__Release_1, (List_1_Pathfinding_ClipperLib_IntPoint_ * * list, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBBAA8, ListPool_1_Pathfinding_ClipperLib_IntPoint__Release_1__MethodInfo); DO_APP_FUNC(0x0172D8A0, void, ListPool_1_Pathfinding_ClipperLib_IntPoint__Warmup, (int32_t count, int32_t size, MethodInfo * method)); DO_APP_FUNC(0x0172E670, void, ListPool_1_System_Object___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172C6A0, List_1_System_Object_ *, ListPool_1_System_Object__Claim, (MethodInfo * method)); @@ -161737,56 +178750,69 @@ DO_APP_FUNC(0x0172E3D0, void, ListPool_1_System_Object__Clear, (MethodInfo * met DO_APP_FUNC(0x0172CD70, int32_t, ListPool_1_System_Object__FindCandidate, (List_1_List_1_System_Object_ * pool, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x010C6F80, int32_t, ListPool_1_System_Object__GetSize, (MethodInfo * method)); DO_APP_FUNC(0x0172DDF0, void, ListPool_1_System_Object__Release, (List_1_System_Object_ * list, MethodInfo * method)); -DO_APP_FUNC(0x0172DCE0, void, ListPool_1_System_Object__Release_1, (List_1_System_Object_ * list, MethodInfo * method)); +DO_APP_FUNC(0x0172DCE0, void, ListPool_1_System_Object__Release_1, (List_1_System_Object_ * * list, MethodInfo * method)); DO_APP_FUNC(0x0172D8A0, void, ListPool_1_System_Object__Warmup, (int32_t count, int32_t size, MethodInfo * method)); DO_APP_FUNC(0x0172E670, void, ListPool_1_System_Single___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172C6A0, List_1_System_Single_ *, ListPool_1_System_Single__Claim, (MethodInfo * method)); DO_APP_FUNC(0x0172D090, List_1_System_Single_ *, ListPool_1_System_Single__Claim_1, (int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBAAF8, ListPool_1_System_Single__Claim_1__MethodInfo); DO_APP_FUNC(0x0172E3D0, void, ListPool_1_System_Single__Clear, (MethodInfo * method)); DO_APP_FUNC(0x0172CD70, int32_t, ListPool_1_System_Single__FindCandidate, (List_1_List_1_System_Single_ * pool, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x010C6F80, int32_t, ListPool_1_System_Single__GetSize, (MethodInfo * method)); DO_APP_FUNC(0x0172DDF0, void, ListPool_1_System_Single__Release, (List_1_System_Single_ * list, MethodInfo * method)); -DO_APP_FUNC(0x0172DCE0, void, ListPool_1_System_Single__Release_1, (List_1_System_Single_ * list, MethodInfo * method)); +DO_APP_FUNC(0x0172DCE0, void, ListPool_1_System_Single__Release_1, (List_1_System_Single_ * * list, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBAAE8, ListPool_1_System_Single__Release_1__MethodInfo); DO_APP_FUNC(0x0172D8A0, void, ListPool_1_System_Single__Warmup, (int32_t count, int32_t size, MethodInfo * method)); DO_APP_FUNC(0x0172E670, void, ListPool_1_System_UInt32___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172C6A0, List_1_System_UInt32_ *, ListPool_1_System_UInt32__Claim, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5D28, ListPool_1_System_UInt32__Claim__MethodInfo); DO_APP_FUNC(0x0172D090, List_1_System_UInt32_ *, ListPool_1_System_UInt32__Claim_1, (int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x0172E3D0, void, ListPool_1_System_UInt32__Clear, (MethodInfo * method)); DO_APP_FUNC(0x0172CD70, int32_t, ListPool_1_System_UInt32__FindCandidate, (List_1_List_1_System_UInt32_ * pool, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x010C6F80, int32_t, ListPool_1_System_UInt32__GetSize, (MethodInfo * method)); DO_APP_FUNC(0x0172DDF0, void, ListPool_1_System_UInt32__Release, (List_1_System_UInt32_ * list, MethodInfo * method)); -DO_APP_FUNC(0x0172DCE0, void, ListPool_1_System_UInt32__Release_1, (List_1_System_UInt32_ * list, MethodInfo * method)); +DO_APP_FUNC(0x0172DCE0, void, ListPool_1_System_UInt32__Release_1, (List_1_System_UInt32_ * * list, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5CE0, ListPool_1_System_UInt32__Release_1__MethodInfo); DO_APP_FUNC(0x0172D8A0, void, ListPool_1_System_UInt32__Warmup, (int32_t count, int32_t size, MethodInfo * method)); DO_APP_FUNC(0x0172E670, void, ListPool_1_UnityEngine_Vector2___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172C6A0, List_1_UnityEngine_Vector2_ *, ListPool_1_UnityEngine_Vector2__Claim, (MethodInfo * method)); DO_APP_FUNC(0x0172D090, List_1_UnityEngine_Vector2_ *, ListPool_1_UnityEngine_Vector2__Claim_1, (int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC870, ListPool_1_UnityEngine_Vector2__Claim_1__MethodInfo); DO_APP_FUNC(0x0172E3D0, void, ListPool_1_UnityEngine_Vector2__Clear, (MethodInfo * method)); DO_APP_FUNC(0x0172CD70, int32_t, ListPool_1_UnityEngine_Vector2__FindCandidate, (List_1_List_1_UnityEngine_Vector2_ * pool, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x010C6F80, int32_t, ListPool_1_UnityEngine_Vector2__GetSize, (MethodInfo * method)); DO_APP_FUNC(0x0172DDF0, void, ListPool_1_UnityEngine_Vector2__Release, (List_1_UnityEngine_Vector2_ * list, MethodInfo * method)); -DO_APP_FUNC(0x0172DCE0, void, ListPool_1_UnityEngine_Vector2__Release_1, (List_1_UnityEngine_Vector2_ * list, MethodInfo * method)); +DO_APP_FUNC(0x0172DCE0, void, ListPool_1_UnityEngine_Vector2__Release_1, (List_1_UnityEngine_Vector2_ * * list, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC868, ListPool_1_UnityEngine_Vector2__Release_1__MethodInfo); DO_APP_FUNC(0x0172D8A0, void, ListPool_1_UnityEngine_Vector2__Warmup, (int32_t count, int32_t size, MethodInfo * method)); DO_APP_FUNC(0x0172E670, void, ListPool_1_UnityEngine_Vector3___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172C6A0, List_1_UnityEngine_Vector3_ *, ListPool_1_UnityEngine_Vector3__Claim, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB480, ListPool_1_UnityEngine_Vector3__Claim__MethodInfo); DO_APP_FUNC(0x0172D090, List_1_UnityEngine_Vector3_ *, ListPool_1_UnityEngine_Vector3__Claim_1, (int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA6B8, ListPool_1_UnityEngine_Vector3__Claim_1__MethodInfo); DO_APP_FUNC(0x0172E3D0, void, ListPool_1_UnityEngine_Vector3__Clear, (MethodInfo * method)); DO_APP_FUNC(0x0172CD70, int32_t, ListPool_1_UnityEngine_Vector3__FindCandidate, (List_1_List_1_UnityEngine_Vector3_ * pool, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x010C6F80, int32_t, ListPool_1_UnityEngine_Vector3__GetSize, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB59A8, ListPool_1_UnityEngine_Vector3__GetSize__MethodInfo); DO_APP_FUNC(0x0172DDF0, void, ListPool_1_UnityEngine_Vector3__Release, (List_1_UnityEngine_Vector3_ * list, MethodInfo * method)); -DO_APP_FUNC(0x0172DCE0, void, ListPool_1_UnityEngine_Vector3__Release_1, (List_1_UnityEngine_Vector3_ * list, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5A98, ListPool_1_UnityEngine_Vector3__Release__MethodInfo); +DO_APP_FUNC(0x0172DCE0, void, ListPool_1_UnityEngine_Vector3__Release_1, (List_1_UnityEngine_Vector3_ * * list, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7170, ListPool_1_UnityEngine_Vector3__Release_1__MethodInfo); DO_APP_FUNC(0x0172D8A0, void, ListPool_1_UnityEngine_Vector3__Warmup, (int32_t count, int32_t size, MethodInfo * method)); DO_APP_FUNC(0x0172E670, void, ListPool_1_Pathfinding_Funnel_PathPart___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172C6A0, List_1_Pathfinding_Funnel_PathPart_ *, ListPool_1_Pathfinding_Funnel_PathPart__Claim, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBACE0, ListPool_1_Pathfinding_Funnel_PathPart__Claim__MethodInfo); DO_APP_FUNC(0x0172D090, List_1_Pathfinding_Funnel_PathPart_ *, ListPool_1_Pathfinding_Funnel_PathPart__Claim_1, (int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x0172E3D0, void, ListPool_1_Pathfinding_Funnel_PathPart__Clear, (MethodInfo * method)); DO_APP_FUNC(0x0172CD70, int32_t, ListPool_1_Pathfinding_Funnel_PathPart__FindCandidate, (List_1_List_1_Pathfinding_Funnel_PathPart_ * pool, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x010C6F80, int32_t, ListPool_1_Pathfinding_Funnel_PathPart__GetSize, (MethodInfo * method)); DO_APP_FUNC(0x0172DDF0, void, ListPool_1_Pathfinding_Funnel_PathPart__Release, (List_1_Pathfinding_Funnel_PathPart_ * list, MethodInfo * method)); -DO_APP_FUNC(0x0172DCE0, void, ListPool_1_Pathfinding_Funnel_PathPart__Release_1, (List_1_Pathfinding_Funnel_PathPart_ * list, MethodInfo * method)); +DO_APP_FUNC(0x0172DCE0, void, ListPool_1_Pathfinding_Funnel_PathPart__Release_1, (List_1_Pathfinding_Funnel_PathPart_ * * list, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA700, ListPool_1_Pathfinding_Funnel_PathPart__Release_1__MethodInfo); DO_APP_FUNC(0x0172D8A0, void, ListPool_1_Pathfinding_Funnel_PathPart__Warmup, (int32_t count, int32_t size, MethodInfo * method)); DO_APP_FUNC(0x0131BE80, void, ListPool_1_System_Object__1__cctor, (MethodInfo * method)); DO_APP_FUNC(0x010C6F80, List_1_System_Object_ *, ListPool_1_System_Object__1_Get, (MethodInfo * method)); -DO_APP_FUNC(0x0111D2B0, ObjectPool_1_T_PooledObject_System_Collections_Generic_List_1_, ListPool_1_System_Object__1_Get_1, (List_1_System_Object_ * value, MethodInfo * method)); +DO_APP_FUNC(0x0111D2B0, ObjectPool_1_T_PooledObject_System_Collections_Generic_List_1_, ListPool_1_System_Object__1_Get_1, (List_1_System_Object_ * * value, MethodInfo * method)); DO_APP_FUNC(0x0111D3D0, void, ListPool_1_System_Object__1_Release, (List_1_System_Object_ * toRelease, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, UQueryState_1_T_ListQueryMatcher_1_System_Object_System_Object___ctor, (UQueryState_1_T_ListQueryMatcher_1_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0172EAD0, bool, UQueryState_1_T_ListQueryMatcher_1_System_Object_System_Object__OnRuleMatchedElement, (UQueryState_1_T_ListQueryMatcher_1_System_Object_System_Object_ * __this, RuleMatcher matcher, VisualElement * element, MethodInfo * method)); @@ -161816,9 +178842,12 @@ DO_APP_FUNC(0x0172EF30, void, ListWithEvents_1_System_Object__remove_OnElementRe DO_APP_FUNC(0x0172F0A0, void, ListWithEvents_1_System_Object__set_Item, (ListWithEvents_1_System_Object_ * __this, int32_t index, Object * value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_System_ArraySegment_1___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_System_ArraySegment_1___ctor, (List_1_System_ArraySegment_1_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEED40, List_1_System_ArraySegment_1___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_System_ArraySegment_1___ctor_1, (List_1_System_ArraySegment_1_ * __this, IEnumerable_1_System_ArraySegment_1_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_System_ArraySegment_1___ctor_2, (List_1_System_ArraySegment_1_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22990, List_1_System_ArraySegment_1___ctor_2__MethodInfo); DO_APP_FUNC(0x017301E0, void, List_1_System_ArraySegment_1__Add, (List_1_System_ArraySegment_1_ * __this, ArraySegment_1_Byte_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEEC98, List_1_System_ArraySegment_1__Add__MethodInfo); DO_APP_FUNC(0x01732140, void, List_1_System_ArraySegment_1__AddEnumerable, (List_1_System_ArraySegment_1_ * __this, IEnumerable_1_System_ArraySegment_1_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_System_ArraySegment_1__AddRange, (List_1_System_ArraySegment_1_ * __this, IEnumerable_1_System_ArraySegment_1_ * collection, MethodInfo * method)); DO_APP_FUNC(0x017302C0, void, List_1_System_ArraySegment_1__AddWithResize, (List_1_System_ArraySegment_1_ * __this, ArraySegment_1_Byte_ item, MethodInfo * method)); @@ -161827,6 +178856,7 @@ DO_APP_FUNC(0x01730630, int32_t, List_1_System_ArraySegment_1__BinarySearch, (Li DO_APP_FUNC(0x017306C0, int32_t, List_1_System_ArraySegment_1__BinarySearch_1, (List_1_System_ArraySegment_1_ * __this, ArraySegment_1_Byte_ item, IComparer_1_System_ArraySegment_1_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01730590, int32_t, List_1_System_ArraySegment_1__BinarySearch_2, (List_1_System_ArraySegment_1_ * __this, int32_t index, int32_t count, ArraySegment_1_Byte_ item, IComparer_1_System_ArraySegment_1_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x003CB200, void, List_1_System_ArraySegment_1__Clear, (List_1_System_ArraySegment_1_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEECD0, List_1_System_ArraySegment_1__Clear__MethodInfo); DO_APP_FUNC(0x01730760, bool, List_1_System_ArraySegment_1__Contains, (List_1_System_ArraySegment_1_ * __this, ArraySegment_1_Byte_ item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_System_ArraySegment_1__CopyTo, (List_1_System_ArraySegment_1_ * __this, ArraySegment_1_Byte___Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_System_ArraySegment_1__CopyTo_1, (List_1_System_ArraySegment_1_ * __this, ArraySegment_1_Byte___Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -161871,7 +178901,9 @@ DO_APP_FUNC(0x01732000, ArraySegment_1_Byte___Array *, List_1_System_ArraySegmen DO_APP_FUNC(0x017320E0, void, List_1_System_ArraySegment_1__TrimExcess, (List_1_System_ArraySegment_1_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_System_ArraySegment_1__get_Capacity, (List_1_System_ArraySegment_1_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_System_ArraySegment_1__get_Count, (List_1_System_ArraySegment_1_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEECD8, List_1_System_ArraySegment_1__get_Count__MethodInfo); DO_APP_FUNC(0x0172FE60, ArraySegment_1_Byte_, List_1_System_ArraySegment_1__get_Item, (List_1_System_ArraySegment_1_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEEC78, List_1_System_ArraySegment_1__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_System_ArraySegment_1__set_Capacity, (List_1_System_ArraySegment_1_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x0172FEB0, void, List_1_System_ArraySegment_1__set_Item, (List_1_System_ArraySegment_1_ * __this, int32_t index, ArraySegment_1_Byte_ value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__2__cctor, (MethodInfo * method)); @@ -162296,9 +179328,11 @@ DO_APP_FUNC(0x0172FC90, void, List_1_KeyValuePair_2_System_Guid_System_Object__s DO_APP_FUNC(0x01744BB0, void, List_1_KeyValuePair_2_System_Guid_System_Object__set_Item, (List_1_KeyValuePair_2_System_Guid_System_Object_ * __this, int32_t index, KeyValuePair_2_System_Guid_System_Object_ value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_KeyValuePair_2_System_Int32_System_Int32___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_KeyValuePair_2_System_Int32_System_Int32___ctor, (List_1_KeyValuePair_2_System_Int32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF660, List_1_KeyValuePair_2_System_Int32_System_Int32___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_KeyValuePair_2_System_Int32_System_Int32___ctor_1, (List_1_KeyValuePair_2_System_Int32_System_Int32_ * __this, IEnumerable_1_KeyValuePair_2_System_Int32_System_Int32_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_KeyValuePair_2_System_Int32_System_Int32___ctor_2, (List_1_KeyValuePair_2_System_Int32_System_Int32_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x01749180, void, List_1_KeyValuePair_2_System_Int32_System_Int32__Add, (List_1_KeyValuePair_2_System_Int32_System_Int32_ * __this, KeyValuePair_2_System_Int32_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF680, List_1_KeyValuePair_2_System_Int32_System_Int32__Add__MethodInfo); DO_APP_FUNC(0x0174A6F0, void, List_1_KeyValuePair_2_System_Int32_System_Int32__AddEnumerable, (List_1_KeyValuePair_2_System_Int32_System_Int32_ * __this, IEnumerable_1_KeyValuePair_2_System_Int32_System_Int32_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_KeyValuePair_2_System_Int32_System_Int32__AddRange, (List_1_KeyValuePair_2_System_Int32_System_Int32_ * __this, IEnumerable_1_KeyValuePair_2_System_Int32_System_Int32_ * collection, MethodInfo * method)); DO_APP_FUNC(0x017491E0, void, List_1_KeyValuePair_2_System_Int32_System_Int32__AddWithResize, (List_1_KeyValuePair_2_System_Int32_System_Int32_ * __this, KeyValuePair_2_System_Int32_System_Int32_ item, MethodInfo * method)); @@ -162318,6 +179352,7 @@ DO_APP_FUNC(0x01730C90, int32_t, List_1_KeyValuePair_2_System_Int32_System_Int32 DO_APP_FUNC(0x01749910, int32_t, List_1_KeyValuePair_2_System_Int32_System_Int32__FindIndex_1, (List_1_KeyValuePair_2_System_Int32_System_Int32_ * __this, int32_t startIndex, int32_t count, Predicate_1_System_Collections_Generic_KeyValuePair_2__4 * match, MethodInfo * method)); DO_APP_FUNC(0x01749A10, void, List_1_KeyValuePair_2_System_Int32_System_Int32__ForEach, (List_1_KeyValuePair_2_System_Int32_System_Int32_ * __this, Action_1_System_Collections_Generic_KeyValuePair_2__1 * action, MethodInfo * method)); DO_APP_FUNC(0x01749AD0, List_1_T_Enumerator_KeyValuePair_2_System_Int32_System_Int32_, List_1_KeyValuePair_2_System_Int32_System_Int32__GetEnumerator, (List_1_KeyValuePair_2_System_Int32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF670, List_1_KeyValuePair_2_System_Int32_System_Int32__GetEnumerator__MethodInfo); DO_APP_FUNC(0x01749C30, int32_t, List_1_KeyValuePair_2_System_Int32_System_Int32__IndexOf, (List_1_KeyValuePair_2_System_Int32_System_Int32_ * __this, KeyValuePair_2_System_Int32_System_Int32_ item, MethodInfo * method)); DO_APP_FUNC(0x01749DB0, void, List_1_KeyValuePair_2_System_Int32_System_Int32__Insert, (List_1_KeyValuePair_2_System_Int32_System_Int32_ * __this, int32_t index, KeyValuePair_2_System_Int32_System_Int32_ item, MethodInfo * method)); DO_APP_FUNC(0x01749FC0, void, List_1_KeyValuePair_2_System_Int32_System_Int32__InsertRange, (List_1_KeyValuePair_2_System_Int32_System_Int32_ * __this, int32_t index, IEnumerable_1_KeyValuePair_2_System_Int32_System_Int32_ * collection, MethodInfo * method)); @@ -162351,7 +179386,9 @@ DO_APP_FUNC(0x01732000, KeyValuePair_2_System_Int32_System_Int32___Array *, List DO_APP_FUNC(0x017320E0, void, List_1_KeyValuePair_2_System_Int32_System_Int32__TrimExcess, (List_1_KeyValuePair_2_System_Int32_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_KeyValuePair_2_System_Int32_System_Int32__get_Capacity, (List_1_KeyValuePair_2_System_Int32_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_KeyValuePair_2_System_Int32_System_Int32__get_Count, (List_1_KeyValuePair_2_System_Int32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF650, List_1_KeyValuePair_2_System_Int32_System_Int32__get_Count__MethodInfo); DO_APP_FUNC(0x01748E90, KeyValuePair_2_System_Int32_System_Int32_, List_1_KeyValuePair_2_System_Int32_System_Int32__get_Item, (List_1_KeyValuePair_2_System_Int32_System_Int32_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF640, List_1_KeyValuePair_2_System_Int32_System_Int32__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_KeyValuePair_2_System_Int32_System_Int32__set_Capacity, (List_1_KeyValuePair_2_System_Int32_System_Int32_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01748ED0, void, List_1_KeyValuePair_2_System_Int32_System_Int32__set_Item, (List_1_KeyValuePair_2_System_Int32_System_Int32_ * __this, int32_t index, KeyValuePair_2_System_Int32_System_Int32_ value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_KeyValuePair_2_System_Int32_System_Object___cctor, (MethodInfo * method)); @@ -162718,7 +179755,9 @@ DO_APP_FUNC(0x017323E0, void, List_1_KeyValuePair_2_UnityEngine_PropertyName_Sys DO_APP_FUNC(0x0172F7F0, void, List_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object___ctor, (List_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0172FA30, void, List_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object___ctor_1, (List_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object_ * __this, IEnumerable_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object___ctor_2, (List_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6C00, List_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object___ctor_2__MethodInfo); DO_APP_FUNC(0x01746CB0, void, List_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object__Add, (List_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object_ * __this, KeyValuePair_2_UnityEngine_PropertyName_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6BD0, List_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object__Add__MethodInfo); DO_APP_FUNC(0x0174FAA0, void, List_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object__AddEnumerable, (List_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object_ * __this, IEnumerable_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object__AddRange, (List_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object_ * __this, IEnumerable_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object_ * collection, MethodInfo * method)); DO_APP_FUNC(0x01746D90, void, List_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object__AddWithResize, (List_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object_ * __this, KeyValuePair_2_UnityEngine_PropertyName_System_Object_ item, MethodInfo * method)); @@ -162770,10 +179809,15 @@ DO_APP_FUNC(0x017300A0, void, List_1_KeyValuePair_2_UnityEngine_PropertyName_Sys DO_APP_FUNC(0x01732000, KeyValuePair_2_UnityEngine_PropertyName_System_Object___Array *, List_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object__ToArray, (List_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x017320E0, void, List_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object__TrimExcess, (List_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object__get_Capacity, (List_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6C08, List_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object__get_Capacity__MethodInfo); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object__get_Count, (List_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6BA0, List_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object__get_Count__MethodInfo); DO_APP_FUNC(0x0172FE60, KeyValuePair_2_UnityEngine_PropertyName_System_Object_, List_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object__get_Item, (List_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6BA8, List_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object__set_Capacity, (List_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object_ * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6BF0, List_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object__set_Capacity__MethodInfo); DO_APP_FUNC(0x01746C10, void, List_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object__set_Item, (List_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object_ * __this, int32_t index, KeyValuePair_2_UnityEngine_PropertyName_System_Object_ value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6BF8, List_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object__set_Item__MethodInfo); DO_APP_FUNC(0x017323E0, void, List_1_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer___ctor, (List_1_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0172FA30, void, List_1_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer___ctor_1, (List_1_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, IEnumerable_1_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer_ * collection, MethodInfo * method)); @@ -163620,6 +180664,7 @@ DO_APP_FUNC(0x0172FC90, void, List_1_System_ValueTuple_2__4_set_Capacity, (List_ DO_APP_FUNC(0x01759090, void, List_1_System_ValueTuple_2__4_set_Item, (List_1_System_ValueTuple_2__4 * __this, int32_t index, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_ value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_AnimatorClipInfo___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_AnimatorClipInfo___ctor, (List_1_UnityEngine_AnimatorClipInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEE68, List_1_UnityEngine_AnimatorClipInfo___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_AnimatorClipInfo___ctor_1, (List_1_UnityEngine_AnimatorClipInfo_ * __this, IEnumerable_1_UnityEngine_AnimatorClipInfo_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_AnimatorClipInfo___ctor_2, (List_1_UnityEngine_AnimatorClipInfo_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x01749180, void, List_1_UnityEngine_AnimatorClipInfo__Add, (List_1_UnityEngine_AnimatorClipInfo_ * __this, AnimatorClipInfo item, MethodInfo * method)); @@ -163675,15 +180720,20 @@ DO_APP_FUNC(0x01732000, AnimatorClipInfo__Array *, List_1_UnityEngine_AnimatorCl DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_AnimatorClipInfo__TrimExcess, (List_1_UnityEngine_AnimatorClipInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_AnimatorClipInfo__get_Capacity, (List_1_UnityEngine_AnimatorClipInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_AnimatorClipInfo__get_Count, (List_1_UnityEngine_AnimatorClipInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEEB8, List_1_UnityEngine_AnimatorClipInfo__get_Count__MethodInfo); DO_APP_FUNC(0x01748E90, AnimatorClipInfo, List_1_UnityEngine_AnimatorClipInfo__get_Item, (List_1_UnityEngine_AnimatorClipInfo_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEEA8, List_1_UnityEngine_AnimatorClipInfo__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_AnimatorClipInfo__set_Capacity, (List_1_UnityEngine_AnimatorClipInfo_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01748ED0, void, List_1_UnityEngine_AnimatorClipInfo__set_Item, (List_1_UnityEngine_AnimatorClipInfo_ * __this, int32_t index, AnimatorClipInfo value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___ctor, (List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEB60, List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___ctor_1, (List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, IEnumerable_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * collection, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9DEB8, List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___ctor_1__MethodInfo); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___ctor_2, (List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE138, List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___ctor_2__MethodInfo); DO_APP_FUNC(0x0174B8D0, void, List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__Add, (List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, AsyncOperationHandle item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE140, List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__Add__MethodInfo); DO_APP_FUNC(0x0175BB60, void, List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__AddEnumerable, (List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, IEnumerable_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__AddRange, (List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, IEnumerable_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * collection, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9DF10, List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__AddRange__MethodInfo); @@ -163704,6 +180754,7 @@ DO_APP_FUNC(0x01730C90, int32_t, List_1_UnityEngine_ResourceManagement_AsyncOper DO_APP_FUNC(0x017458C0, int32_t, List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__FindIndex_1, (List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, int32_t startIndex, int32_t count, Predicate_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * match, MethodInfo * method)); DO_APP_FUNC(0x017459E0, void, List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__ForEach, (List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * action, MethodInfo * method)); DO_APP_FUNC(0x01745AB0, List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_, List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__GetEnumerator, (List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD980, List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__GetEnumerator__MethodInfo); DO_APP_FUNC(0x01745C30, int32_t, List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__IndexOf, (List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, AsyncOperationHandle item, MethodInfo * method)); DO_APP_FUNC(0x0174BA90, void, List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__Insert, (List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, int32_t index, AsyncOperationHandle item, MethodInfo * method)); DO_APP_FUNC(0x0175B7F0, void, List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__InsertRange, (List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, int32_t index, IEnumerable_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * collection, MethodInfo * method)); @@ -163737,7 +180788,9 @@ DO_APP_FUNC(0x01732000, AsyncOperationHandle__Array *, List_1_UnityEngine_Resour DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__TrimExcess, (List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__get_Capacity, (List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__get_Count, (List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD888, List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__get_Count__MethodInfo); DO_APP_FUNC(0x01744B50, AsyncOperationHandle, List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__get_Item, (List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD8A0, List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__set_Capacity, (List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x0174B820, void, List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle__set_Item, (List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * __this, int32_t index, AsyncOperationHandle value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_Dissonance_Integrations_PhotonBolt_BoltPeer___cctor, (MethodInfo * method)); @@ -163802,9 +180855,11 @@ DO_APP_FUNC(0x0172FC90, void, List_1_Dissonance_Integrations_PhotonBolt_BoltPeer DO_APP_FUNC(0x0175BEB0, void, List_1_Dissonance_Integrations_PhotonBolt_BoltPeer__set_Item, (List_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, int32_t index, BoltPeer value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_Photon_Bolt_LagCompensation_BoltPhysicsHit___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_Photon_Bolt_LagCompensation_BoltPhysicsHit___ctor, (List_1_Photon_Bolt_LagCompensation_BoltPhysicsHit_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB258, List_1_Photon_Bolt_LagCompensation_BoltPhysicsHit___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_Photon_Bolt_LagCompensation_BoltPhysicsHit___ctor_1, (List_1_Photon_Bolt_LagCompensation_BoltPhysicsHit_ * __this, IEnumerable_1_Photon_Bolt_LagCompensation_BoltPhysicsHit_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_Photon_Bolt_LagCompensation_BoltPhysicsHit___ctor_2, (List_1_Photon_Bolt_LagCompensation_BoltPhysicsHit_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x0175C980, void, List_1_Photon_Bolt_LagCompensation_BoltPhysicsHit__Add, (List_1_Photon_Bolt_LagCompensation_BoltPhysicsHit_ * __this, BoltPhysicsHit item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB250, List_1_Photon_Bolt_LagCompensation_BoltPhysicsHit__Add__MethodInfo); DO_APP_FUNC(0x0175D320, void, List_1_Photon_Bolt_LagCompensation_BoltPhysicsHit__AddEnumerable, (List_1_Photon_Bolt_LagCompensation_BoltPhysicsHit_ * __this, IEnumerable_1_Photon_Bolt_LagCompensation_BoltPhysicsHit_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_Photon_Bolt_LagCompensation_BoltPhysicsHit__AddRange, (List_1_Photon_Bolt_LagCompensation_BoltPhysicsHit_ * __this, IEnumerable_1_Photon_Bolt_LagCompensation_BoltPhysicsHit_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0175CA70, void, List_1_Photon_Bolt_LagCompensation_BoltPhysicsHit__AddWithResize, (List_1_Photon_Bolt_LagCompensation_BoltPhysicsHit_ * __this, BoltPhysicsHit item, MethodInfo * method)); @@ -163813,6 +180868,7 @@ DO_APP_FUNC(0x01745310, int32_t, List_1_Photon_Bolt_LagCompensation_BoltPhysicsH DO_APP_FUNC(0x017453B0, int32_t, List_1_Photon_Bolt_LagCompensation_BoltPhysicsHit__BinarySearch_1, (List_1_Photon_Bolt_LagCompensation_BoltPhysicsHit_ * __this, BoltPhysicsHit item, IComparer_1_Photon_Bolt_LagCompensation_BoltPhysicsHit_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01745250, int32_t, List_1_Photon_Bolt_LagCompensation_BoltPhysicsHit__BinarySearch_2, (List_1_Photon_Bolt_LagCompensation_BoltPhysicsHit_ * __this, int32_t index, int32_t count, BoltPhysicsHit item, IComparer_1_Photon_Bolt_LagCompensation_BoltPhysicsHit_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x003CB200, void, List_1_Photon_Bolt_LagCompensation_BoltPhysicsHit__Clear, (List_1_Photon_Bolt_LagCompensation_BoltPhysicsHit_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB278, List_1_Photon_Bolt_LagCompensation_BoltPhysicsHit__Clear__MethodInfo); DO_APP_FUNC(0x01745450, bool, List_1_Photon_Bolt_LagCompensation_BoltPhysicsHit__Contains, (List_1_Photon_Bolt_LagCompensation_BoltPhysicsHit_ * __this, BoltPhysicsHit item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_Photon_Bolt_LagCompensation_BoltPhysicsHit__CopyTo, (List_1_Photon_Bolt_LagCompensation_BoltPhysicsHit_ * __this, BoltPhysicsHit__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_Photon_Bolt_LagCompensation_BoltPhysicsHit__CopyTo_1, (List_1_Photon_Bolt_LagCompensation_BoltPhysicsHit_ * __this, BoltPhysicsHit__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -163857,14 +180913,18 @@ DO_APP_FUNC(0x01732000, BoltPhysicsHit__Array *, List_1_Photon_Bolt_LagCompensat DO_APP_FUNC(0x017320E0, void, List_1_Photon_Bolt_LagCompensation_BoltPhysicsHit__TrimExcess, (List_1_Photon_Bolt_LagCompensation_BoltPhysicsHit_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_Photon_Bolt_LagCompensation_BoltPhysicsHit__get_Capacity, (List_1_Photon_Bolt_LagCompensation_BoltPhysicsHit_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_Photon_Bolt_LagCompensation_BoltPhysicsHit__get_Count, (List_1_Photon_Bolt_LagCompensation_BoltPhysicsHit_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB288, List_1_Photon_Bolt_LagCompensation_BoltPhysicsHit__get_Count__MethodInfo); DO_APP_FUNC(0x01744B50, BoltPhysicsHit, List_1_Photon_Bolt_LagCompensation_BoltPhysicsHit__get_Item, (List_1_Photon_Bolt_LagCompensation_BoltPhysicsHit_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB298, List_1_Photon_Bolt_LagCompensation_BoltPhysicsHit__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_Photon_Bolt_LagCompensation_BoltPhysicsHit__set_Capacity, (List_1_Photon_Bolt_LagCompensation_BoltPhysicsHit_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x0175C8D0, void, List_1_Photon_Bolt_LagCompensation_BoltPhysicsHit__set_Item, (List_1_Photon_Bolt_LagCompensation_BoltPhysicsHit_ * __this, int32_t index, BoltPhysicsHit value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_BoneWeight___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_BoneWeight___ctor, (List_1_UnityEngine_BoneWeight_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D209F8, List_1_UnityEngine_BoneWeight___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_BoneWeight___ctor_1, (List_1_UnityEngine_BoneWeight_ * __this, IEnumerable_1_UnityEngine_BoneWeight_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_BoneWeight___ctor_2, (List_1_UnityEngine_BoneWeight_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x0175D6D0, void, List_1_UnityEngine_BoneWeight__Add, (List_1_UnityEngine_BoneWeight_ * __this, BoneWeight item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D207F8, List_1_UnityEngine_BoneWeight__Add__MethodInfo); DO_APP_FUNC(0x0175DE70, void, List_1_UnityEngine_BoneWeight__AddEnumerable, (List_1_UnityEngine_BoneWeight_ * __this, IEnumerable_1_UnityEngine_BoneWeight_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_UnityEngine_BoneWeight__AddRange, (List_1_UnityEngine_BoneWeight_ * __this, IEnumerable_1_UnityEngine_BoneWeight_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0175D760, void, List_1_UnityEngine_BoneWeight__AddWithResize, (List_1_UnityEngine_BoneWeight_ * __this, BoneWeight item, MethodInfo * method)); @@ -163873,6 +180933,7 @@ DO_APP_FUNC(0x017424F0, int32_t, List_1_UnityEngine_BoneWeight__BinarySearch, (L DO_APP_FUNC(0x01742590, int32_t, List_1_UnityEngine_BoneWeight__BinarySearch_1, (List_1_UnityEngine_BoneWeight_ * __this, BoneWeight item, IComparer_1_UnityEngine_BoneWeight_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01742440, int32_t, List_1_UnityEngine_BoneWeight__BinarySearch_2, (List_1_UnityEngine_BoneWeight_ * __this, int32_t index, int32_t count, BoneWeight item, IComparer_1_UnityEngine_BoneWeight_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01749550, void, List_1_UnityEngine_BoneWeight__Clear, (List_1_UnityEngine_BoneWeight_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D207F0, List_1_UnityEngine_BoneWeight__Clear__MethodInfo); DO_APP_FUNC(0x01742630, bool, List_1_UnityEngine_BoneWeight__Contains, (List_1_UnityEngine_BoneWeight_ * __this, BoneWeight item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_UnityEngine_BoneWeight__CopyTo, (List_1_UnityEngine_BoneWeight_ * __this, BoneWeight__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_UnityEngine_BoneWeight__CopyTo_1, (List_1_UnityEngine_BoneWeight_ * __this, BoneWeight__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -163914,17 +180975,22 @@ DO_APP_FUNC(0x0041AF00, bool, List_1_UnityEngine_BoneWeight__System_Collections_ DO_APP_FUNC(0x01742020, Object *, List_1_UnityEngine_BoneWeight__System_Collections_IList_get_Item, (List_1_UnityEngine_BoneWeight_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x017420A0, void, List_1_UnityEngine_BoneWeight__System_Collections_IList_set_Item, (List_1_UnityEngine_BoneWeight_ * __this, int32_t index, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01732000, BoneWeight__Array *, List_1_UnityEngine_BoneWeight__ToArray, (List_1_UnityEngine_BoneWeight_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D207D8, List_1_UnityEngine_BoneWeight__ToArray__MethodInfo); DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_BoneWeight__TrimExcess, (List_1_UnityEngine_BoneWeight_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_BoneWeight__get_Capacity, (List_1_UnityEngine_BoneWeight_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_BoneWeight__get_Count, (List_1_UnityEngine_BoneWeight_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D20828, List_1_UnityEngine_BoneWeight__get_Count__MethodInfo); DO_APP_FUNC(0x01741E50, BoneWeight, List_1_UnityEngine_BoneWeight__get_Item, (List_1_UnityEngine_BoneWeight_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D20810, List_1_UnityEngine_BoneWeight__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_BoneWeight__set_Capacity, (List_1_UnityEngine_BoneWeight_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x0175D670, void, List_1_UnityEngine_BoneWeight__set_Item, (List_1_UnityEngine_BoneWeight_ * __this, int32_t index, BoneWeight value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_System_Boolean___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_System_Boolean___ctor, (List_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5318, List_1_System_Boolean___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_System_Boolean___ctor_1, (List_1_System_Boolean_ * __this, IEnumerable_1_System_Boolean_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_System_Boolean___ctor_2, (List_1_System_Boolean_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x0175E4B0, void, List_1_System_Boolean__Add, (List_1_System_Boolean_ * __this, bool item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5078, List_1_System_Boolean__Add__MethodInfo); DO_APP_FUNC(0x0175F790, void, List_1_System_Boolean__AddEnumerable, (List_1_System_Boolean_ * __this, IEnumerable_1_System_Boolean_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_System_Boolean__AddRange, (List_1_System_Boolean_ * __this, IEnumerable_1_System_Boolean_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0175E510, void, List_1_System_Boolean__AddWithResize, (List_1_System_Boolean_ * __this, bool item, MethodInfo * method)); @@ -163951,6 +181017,7 @@ DO_APP_FUNC(0x0175E240, bool, List_1_System_Boolean__IsCompatibleObject, (Object DO_APP_FUNC(0x0174A310, bool, List_1_System_Boolean__Remove, (List_1_System_Boolean_ * __this, bool item, MethodInfo * method)); DO_APP_FUNC(0x0175F610, int32_t, List_1_System_Boolean__RemoveAll, (List_1_System_Boolean_ * __this, Predicate_1_Boolean_ * match, MethodInfo * method)); DO_APP_FUNC(0x0174A620, void, List_1_System_Boolean__RemoveAt, (List_1_System_Boolean_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5C78, List_1_System_Boolean__RemoveAt__MethodInfo); DO_APP_FUNC(0x0174A670, void, List_1_System_Boolean__RemoveRange, (List_1_System_Boolean_ * __this, int32_t index, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x01731D00, void, List_1_System_Boolean__Reverse, (List_1_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01731D60, void, List_1_System_Boolean__Reverse_1, (List_1_System_Boolean_ * __this, int32_t index, int32_t count, MethodInfo * method)); @@ -163977,22 +181044,30 @@ DO_APP_FUNC(0x01732000, Boolean__Array *, List_1_System_Boolean__ToArray, (List_ DO_APP_FUNC(0x017320E0, void, List_1_System_Boolean__TrimExcess, (List_1_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_System_Boolean__get_Capacity, (List_1_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_System_Boolean__get_Count, (List_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5068, List_1_System_Boolean__get_Count__MethodInfo); DO_APP_FUNC(0x0175E1C0, bool, List_1_System_Boolean__get_Item, (List_1_System_Boolean_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5060, List_1_System_Boolean__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_System_Boolean__set_Capacity, (List_1_System_Boolean_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x0175E200, void, List_1_System_Boolean__set_Item, (List_1_System_Boolean_ * __this, int32_t index, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9118, List_1_System_Boolean__set_Item__MethodInfo); DO_APP_FUNC(0x017323E0, void, List_1_System_Byte___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_System_Byte___ctor, (List_1_System_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0A40, List_1_System_Byte___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_System_Byte___ctor_1, (List_1_System_Byte_ * __this, IEnumerable_1_System_Byte__2 * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_System_Byte___ctor_2, (List_1_System_Byte_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8BA8, List_1_System_Byte___ctor_2__MethodInfo); DO_APP_FUNC(0x0175E4B0, void, List_1_System_Byte__Add, (List_1_System_Byte_ * __this, uint8_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBF2A8, List_1_System_Byte__Add__MethodInfo); DO_APP_FUNC(0x0175FDF0, void, List_1_System_Byte__AddEnumerable, (List_1_System_Byte_ * __this, IEnumerable_1_System_Byte__2 * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_System_Byte__AddRange, (List_1_System_Byte_ * __this, IEnumerable_1_System_Byte__2 * collection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12810, List_1_System_Byte__AddRange__MethodInfo); DO_APP_FUNC(0x0175E510, void, List_1_System_Byte__AddWithResize, (List_1_System_Byte_ * __this, uint8_t item, MethodInfo * method)); DO_APP_FUNC(0x01730510, ReadOnlyCollection_1_System_Byte_ *, List_1_System_Byte__AsReadOnly, (List_1_System_Byte_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0175E6E0, int32_t, List_1_System_Byte__BinarySearch, (List_1_System_Byte_ * __this, uint8_t item, MethodInfo * method)); DO_APP_FUNC(0x0175E760, int32_t, List_1_System_Byte__BinarySearch_1, (List_1_System_Byte_ * __this, uint8_t item, IComparer_1_System_Byte_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x017493B0, int32_t, List_1_System_Byte__BinarySearch_2, (List_1_System_Byte_ * __this, int32_t index, int32_t count, uint8_t item, IComparer_1_System_Byte_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01749550, void, List_1_System_Byte__Clear, (List_1_System_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DD68, List_1_System_Byte__Clear__MethodInfo); DO_APP_FUNC(0x01749560, bool, List_1_System_Byte__Contains, (List_1_System_Byte_ * __this, uint8_t item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_System_Byte__CopyTo, (List_1_System_Byte_ * __this, Byte__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_System_Byte__CopyTo_1, (List_1_System_Byte_ * __this, Byte__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -164034,9 +181109,11 @@ DO_APP_FUNC(0x0041AF00, bool, List_1_System_Byte__System_Collections_IList_get_I DO_APP_FUNC(0x0175E310, Object *, List_1_System_Byte__System_Collections_IList_get_Item, (List_1_System_Byte_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x0175E380, void, List_1_System_Byte__System_Collections_IList_set_Item, (List_1_System_Byte_ * __this, int32_t index, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01732000, Byte__Array *, List_1_System_Byte__ToArray, (List_1_System_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBF2F8, List_1_System_Byte__ToArray__MethodInfo); DO_APP_FUNC(0x017320E0, void, List_1_System_Byte__TrimExcess, (List_1_System_Byte_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_System_Byte__get_Capacity, (List_1_System_Byte_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_System_Byte__get_Count, (List_1_System_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBF2F0, List_1_System_Byte__get_Count__MethodInfo); DO_APP_FUNC(0x0175E1C0, uint8_t, List_1_System_Byte__get_Item, (List_1_System_Byte_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x0172FC90, void, List_1_System_Byte__set_Capacity, (List_1_System_Byte_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x0175E200, void, List_1_System_Byte__set_Item, (List_1_System_Byte_ * __this, int32_t index, uint8_t value, MethodInfo * method)); @@ -164044,7 +181121,9 @@ DO_APP_FUNC(0x017323E0, void, List_1_System_Threading_CancellationToken___cctor, DO_APP_FUNC(0x0172F7F0, void, List_1_System_Threading_CancellationToken___ctor, (List_1_System_Threading_CancellationToken_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0172FA30, void, List_1_System_Threading_CancellationToken___ctor_1, (List_1_System_Threading_CancellationToken_ * __this, IEnumerable_1_System_Threading_CancellationToken_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_System_Threading_CancellationToken___ctor_2, (List_1_System_Threading_CancellationToken_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEF58, List_1_System_Threading_CancellationToken___ctor_2__MethodInfo); DO_APP_FUNC(0x0175BEF0, void, List_1_System_Threading_CancellationToken__Add, (List_1_System_Threading_CancellationToken_ * __this, CancellationToken item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEFA0, List_1_System_Threading_CancellationToken__Add__MethodInfo); DO_APP_FUNC(0x01760450, void, List_1_System_Threading_CancellationToken__AddEnumerable, (List_1_System_Threading_CancellationToken_ * __this, IEnumerable_1_System_Threading_CancellationToken_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_System_Threading_CancellationToken__AddRange, (List_1_System_Threading_CancellationToken_ * __this, IEnumerable_1_System_Threading_CancellationToken_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0175BF50, void, List_1_System_Threading_CancellationToken__AddWithResize, (List_1_System_Threading_CancellationToken_ * __this, CancellationToken item, MethodInfo * method)); @@ -164094,6 +181173,7 @@ DO_APP_FUNC(0x0041AF00, bool, List_1_System_Threading_CancellationToken__System_ DO_APP_FUNC(0x01748FE0, Object *, List_1_System_Threading_CancellationToken__System_Collections_IList_get_Item, (List_1_System_Threading_CancellationToken_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01749050, void, List_1_System_Threading_CancellationToken__System_Collections_IList_set_Item, (List_1_System_Threading_CancellationToken_ * __this, int32_t index, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01732000, CancellationToken__Array *, List_1_System_Threading_CancellationToken__ToArray, (List_1_System_Threading_CancellationToken_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEF60, List_1_System_Threading_CancellationToken__ToArray__MethodInfo); DO_APP_FUNC(0x017320E0, void, List_1_System_Threading_CancellationToken__TrimExcess, (List_1_System_Threading_CancellationToken_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_System_Threading_CancellationToken__get_Capacity, (List_1_System_Threading_CancellationToken_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_System_Threading_CancellationToken__get_Count, (List_1_System_Threading_CancellationToken_ * __this, MethodInfo * method)); @@ -164165,6 +181245,7 @@ DO_APP_FUNC(0x0172FC90, void, List_1_System_Char__set_Capacity, (List_1_System_C DO_APP_FUNC(0x01760790, void, List_1_System_Char__set_Item, (List_1_System_Char_ * __this, int32_t index, uint16_t value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_Dissonance_Networking_ClientInfo___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_Dissonance_Networking_ClientInfo___ctor, (List_1_Dissonance_Networking_ClientInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF15D8, List_1_Dissonance_Networking_ClientInfo___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_Dissonance_Networking_ClientInfo___ctor_1, (List_1_Dissonance_Networking_ClientInfo_ * __this, IEnumerable_1_Dissonance_Networking_ClientInfo_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_Dissonance_Networking_ClientInfo___ctor_2, (List_1_Dissonance_Networking_ClientInfo_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x0174B8D0, void, List_1_Dissonance_Networking_ClientInfo__Add, (List_1_Dissonance_Networking_ClientInfo_ * __this, ClientInfo item, MethodInfo * method)); @@ -164188,6 +181269,7 @@ DO_APP_FUNC(0x01730C90, int32_t, List_1_Dissonance_Networking_ClientInfo__FindIn DO_APP_FUNC(0x017458C0, int32_t, List_1_Dissonance_Networking_ClientInfo__FindIndex_1, (List_1_Dissonance_Networking_ClientInfo_ * __this, int32_t startIndex, int32_t count, Predicate_1_Dissonance_Networking_ClientInfo_ * match, MethodInfo * method)); DO_APP_FUNC(0x017459E0, void, List_1_Dissonance_Networking_ClientInfo__ForEach, (List_1_Dissonance_Networking_ClientInfo_ * __this, Action_1_Dissonance_Networking_ClientInfo_ * action, MethodInfo * method)); DO_APP_FUNC(0x01745AB0, List_1_T_Enumerator_Dissonance_Networking_ClientInfo_, List_1_Dissonance_Networking_ClientInfo__GetEnumerator, (List_1_Dissonance_Networking_ClientInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF15D0, List_1_Dissonance_Networking_ClientInfo__GetEnumerator__MethodInfo); DO_APP_FUNC(0x01745C30, int32_t, List_1_Dissonance_Networking_ClientInfo__IndexOf, (List_1_Dissonance_Networking_ClientInfo_ * __this, ClientInfo item, MethodInfo * method)); DO_APP_FUNC(0x0174BA90, void, List_1_Dissonance_Networking_ClientInfo__Insert, (List_1_Dissonance_Networking_ClientInfo_ * __this, int32_t index, ClientInfo item, MethodInfo * method)); DO_APP_FUNC(0x01762050, void, List_1_Dissonance_Networking_ClientInfo__InsertRange, (List_1_Dissonance_Networking_ClientInfo_ * __this, int32_t index, IEnumerable_1_Dissonance_Networking_ClientInfo_ * collection, MethodInfo * method)); @@ -164228,17 +181310,22 @@ DO_APP_FUNC(0x0172FC90, void, List_1_Dissonance_Networking_ClientInfo__set_Capac DO_APP_FUNC(0x0174B820, void, List_1_Dissonance_Networking_ClientInfo__set_Item, (List_1_Dissonance_Networking_ClientInfo_ * __this, int32_t index, ClientInfo value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_Color___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_Color___ctor, (List_1_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9FF0, List_1_UnityEngine_Color___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_Color___ctor_1, (List_1_UnityEngine_Color_ * __this, IEnumerable_1_UnityEngine_Color_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_Color___ctor_2, (List_1_UnityEngine_Color_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB958, List_1_UnityEngine_Color___ctor_2__MethodInfo); DO_APP_FUNC(0x01751370, void, List_1_UnityEngine_Color__Add, (List_1_UnityEngine_Color_ * __this, Color item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA000, List_1_UnityEngine_Color__Add__MethodInfo); DO_APP_FUNC(0x01762BA0, void, List_1_UnityEngine_Color__AddEnumerable, (List_1_UnityEngine_Color_ * __this, IEnumerable_1_UnityEngine_Color_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_UnityEngine_Color__AddRange, (List_1_UnityEngine_Color_ * __this, IEnumerable_1_UnityEngine_Color_ * collection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB2E0, List_1_UnityEngine_Color__AddRange__MethodInfo); DO_APP_FUNC(0x017513F0, void, List_1_UnityEngine_Color__AddWithResize, (List_1_UnityEngine_Color_ * __this, Color item, MethodInfo * method)); DO_APP_FUNC(0x01730510, ReadOnlyCollection_1_UnityEngine_Color_ *, List_1_UnityEngine_Color__AsReadOnly, (List_1_UnityEngine_Color_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01730630, int32_t, List_1_UnityEngine_Color__BinarySearch, (List_1_UnityEngine_Color_ * __this, Color item, MethodInfo * method)); DO_APP_FUNC(0x017306C0, int32_t, List_1_UnityEngine_Color__BinarySearch_1, (List_1_UnityEngine_Color_ * __this, Color item, IComparer_1_UnityEngine_Color_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01730590, int32_t, List_1_UnityEngine_Color__BinarySearch_2, (List_1_UnityEngine_Color_ * __this, int32_t index, int32_t count, Color item, IComparer_1_UnityEngine_Color_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01749550, void, List_1_UnityEngine_Color__Clear, (List_1_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D207E0, List_1_UnityEngine_Color__Clear__MethodInfo); DO_APP_FUNC(0x01730760, bool, List_1_UnityEngine_Color__Contains, (List_1_UnityEngine_Color_ * __this, Color item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_UnityEngine_Color__CopyTo, (List_1_UnityEngine_Color_ * __this, Color__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_UnityEngine_Color__CopyTo_1, (List_1_UnityEngine_Color_ * __this, Color__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -164250,6 +181337,7 @@ DO_APP_FUNC(0x01730C90, int32_t, List_1_UnityEngine_Color__FindIndex, (List_1_Un DO_APP_FUNC(0x01730CE0, int32_t, List_1_UnityEngine_Color__FindIndex_1, (List_1_UnityEngine_Color_ * __this, int32_t startIndex, int32_t count, Predicate_1_UnityEngine_Color_ * match, MethodInfo * method)); DO_APP_FUNC(0x01730DF0, void, List_1_UnityEngine_Color__ForEach, (List_1_UnityEngine_Color_ * __this, Action_1_UnityEngine_Color_ * action, MethodInfo * method)); DO_APP_FUNC(0x01730EC0, List_1_T_Enumerator_UnityEngine_Color_, List_1_UnityEngine_Color__GetEnumerator, (List_1_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB318, List_1_UnityEngine_Color__GetEnumerator__MethodInfo); DO_APP_FUNC(0x01731030, int32_t, List_1_UnityEngine_Color__IndexOf, (List_1_UnityEngine_Color_ * __this, Color item, MethodInfo * method)); DO_APP_FUNC(0x01751460, void, List_1_UnityEngine_Color__Insert, (List_1_UnityEngine_Color_ * __this, int32_t index, Color item, MethodInfo * method)); DO_APP_FUNC(0x01762840, void, List_1_UnityEngine_Color__InsertRange, (List_1_UnityEngine_Color_ * __this, int32_t index, IEnumerable_1_UnityEngine_Color_ * collection, MethodInfo * method)); @@ -164280,25 +181368,33 @@ DO_APP_FUNC(0x0041AF00, bool, List_1_UnityEngine_Color__System_Collections_IList DO_APP_FUNC(0x01730020, Object *, List_1_UnityEngine_Color__System_Collections_IList_get_Item, (List_1_UnityEngine_Color_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x017300A0, void, List_1_UnityEngine_Color__System_Collections_IList_set_Item, (List_1_UnityEngine_Color_ * __this, int32_t index, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01732000, Color__Array *, List_1_UnityEngine_Color__ToArray, (List_1_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCD10, List_1_UnityEngine_Color__ToArray__MethodInfo); DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_Color__TrimExcess, (List_1_UnityEngine_Color_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_Color__get_Capacity, (List_1_UnityEngine_Color_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_Color__get_Count, (List_1_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D20818, List_1_UnityEngine_Color__get_Count__MethodInfo); DO_APP_FUNC(0x0172FE60, Color, List_1_UnityEngine_Color__get_Item, (List_1_UnityEngine_Color_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9FE0, List_1_UnityEngine_Color__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_Color__set_Capacity, (List_1_UnityEngine_Color_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01751320, void, List_1_UnityEngine_Color__set_Item, (List_1_UnityEngine_Color_ * __this, int32_t index, Color value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB940, List_1_UnityEngine_Color__set_Item__MethodInfo); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_Color32___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_Color32___ctor, (List_1_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC830, List_1_UnityEngine_Color32___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_Color32___ctor_1, (List_1_UnityEngine_Color32_ * __this, IEnumerable_1_UnityEngine_Color32_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_Color32___ctor_2, (List_1_UnityEngine_Color32_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x003ECFF0, void, List_1_UnityEngine_Color32__Add, (List_1_UnityEngine_Color32_ * __this, Color32 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC8A8, List_1_UnityEngine_Color32__Add__MethodInfo); DO_APP_FUNC(0x01764440, void, List_1_UnityEngine_Color32__AddEnumerable, (List_1_UnityEngine_Color32_ * __this, IEnumerable_1_UnityEngine_Color32_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_UnityEngine_Color32__AddRange, (List_1_UnityEngine_Color32_ * __this, IEnumerable_1_UnityEngine_Color32_ * collection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0AA8, List_1_UnityEngine_Color32__AddRange__MethodInfo); DO_APP_FUNC(0x017631D0, void, List_1_UnityEngine_Color32__AddWithResize, (List_1_UnityEngine_Color32_ * __this, Color32 item, MethodInfo * method)); DO_APP_FUNC(0x01730510, ReadOnlyCollection_1_UnityEngine_Color32_ *, List_1_UnityEngine_Color32__AsReadOnly, (List_1_UnityEngine_Color32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x017633A0, int32_t, List_1_UnityEngine_Color32__BinarySearch, (List_1_UnityEngine_Color32_ * __this, Color32 item, MethodInfo * method)); DO_APP_FUNC(0x01763420, int32_t, List_1_UnityEngine_Color32__BinarySearch_1, (List_1_UnityEngine_Color32_ * __this, Color32 item, IComparer_1_UnityEngine_Color32_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x017493B0, int32_t, List_1_UnityEngine_Color32__BinarySearch_2, (List_1_UnityEngine_Color32_ * __this, int32_t index, int32_t count, Color32 item, IComparer_1_UnityEngine_Color32_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01749550, void, List_1_UnityEngine_Color32__Clear, (List_1_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC848, List_1_UnityEngine_Color32__Clear__MethodInfo); DO_APP_FUNC(0x01749560, bool, List_1_UnityEngine_Color32__Contains, (List_1_UnityEngine_Color32_ * __this, Color32 item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_UnityEngine_Color32__CopyTo, (List_1_UnityEngine_Color32_ * __this, Color32__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_UnityEngine_Color32__CopyTo_1, (List_1_UnityEngine_Color32_ * __this, Color32__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -164344,13 +181440,17 @@ DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_Color32__TrimExcess, (List_1_Un DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_Color32__get_Capacity, (List_1_UnityEngine_Color32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_Color32__get_Count, (List_1_UnityEngine_Color32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01762EE0, Color32, List_1_UnityEngine_Color32__get_Item, (List_1_UnityEngine_Color32_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC858, List_1_UnityEngine_Color32__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_Color32__set_Capacity, (List_1_UnityEngine_Color32_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01762F20, void, List_1_UnityEngine_Color32__set_Item, (List_1_UnityEngine_Color32_ * __this, int32_t index, Color32 value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0950, List_1_UnityEngine_Color32__set_Item__MethodInfo); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_CombineInstance___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_CombineInstance___ctor, (List_1_UnityEngine_CombineInstance_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCFC0, List_1_UnityEngine_CombineInstance___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_CombineInstance___ctor_1, (List_1_UnityEngine_CombineInstance_ * __this, IEnumerable_1_UnityEngine_CombineInstance_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_CombineInstance___ctor_2, (List_1_UnityEngine_CombineInstance_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x01764B90, void, List_1_UnityEngine_CombineInstance__Add, (List_1_UnityEngine_CombineInstance_ * __this, CombineInstance item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCFE0, List_1_UnityEngine_CombineInstance__Add__MethodInfo); DO_APP_FUNC(0x017668D0, void, List_1_UnityEngine_CombineInstance__AddEnumerable, (List_1_UnityEngine_CombineInstance_ * __this, IEnumerable_1_UnityEngine_CombineInstance_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_UnityEngine_CombineInstance__AddRange, (List_1_UnityEngine_CombineInstance_ * __this, IEnumerable_1_UnityEngine_CombineInstance_ * collection, MethodInfo * method)); DO_APP_FUNC(0x01764C90, void, List_1_UnityEngine_CombineInstance__AddWithResize, (List_1_UnityEngine_CombineInstance_ * __this, CombineInstance item, MethodInfo * method)); @@ -164400,6 +181500,7 @@ DO_APP_FUNC(0x0041AF00, bool, List_1_UnityEngine_CombineInstance__System_Collect DO_APP_FUNC(0x01764940, Object *, List_1_UnityEngine_CombineInstance__System_Collections_IList_get_Item, (List_1_UnityEngine_CombineInstance_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01764A00, void, List_1_UnityEngine_CombineInstance__System_Collections_IList_set_Item, (List_1_UnityEngine_CombineInstance_ * __this, int32_t index, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01732000, CombineInstance__Array *, List_1_UnityEngine_CombineInstance__ToArray, (List_1_UnityEngine_CombineInstance_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCFF0, List_1_UnityEngine_CombineInstance__ToArray__MethodInfo); DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_CombineInstance__TrimExcess, (List_1_UnityEngine_CombineInstance_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_CombineInstance__get_Capacity, (List_1_UnityEngine_CombineInstance_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_CombineInstance__get_Count, (List_1_UnityEngine_CombineInstance_ * __this, MethodInfo * method)); @@ -164408,9 +181509,11 @@ DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_CombineInstance__set_Capacity, DO_APP_FUNC(0x01764790, void, List_1_UnityEngine_CombineInstance__set_Item, (List_1_UnityEngine_CombineInstance_ * __this, int32_t index, CombineInstance value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_UIElements_ComputedTransitionProperty___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_UIElements_ComputedTransitionProperty___ctor, (List_1_UnityEngine_UIElements_ComputedTransitionProperty_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5EC8, List_1_UnityEngine_UIElements_ComputedTransitionProperty___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_UIElements_ComputedTransitionProperty___ctor_1, (List_1_UnityEngine_UIElements_ComputedTransitionProperty_ * __this, IEnumerable_1_UnityEngine_UIElements_ComputedTransitionProperty_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_UIElements_ComputedTransitionProperty___ctor_2, (List_1_UnityEngine_UIElements_ComputedTransitionProperty_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x01744F10, void, List_1_UnityEngine_UIElements_ComputedTransitionProperty__Add, (List_1_UnityEngine_UIElements_ComputedTransitionProperty_ * __this, ComputedTransitionProperty item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5F60, List_1_UnityEngine_UIElements_ComputedTransitionProperty__Add__MethodInfo); DO_APP_FUNC(0x01767070, void, List_1_UnityEngine_UIElements_ComputedTransitionProperty__AddEnumerable, (List_1_UnityEngine_UIElements_ComputedTransitionProperty_ * __this, IEnumerable_1_UnityEngine_UIElements_ComputedTransitionProperty_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_UnityEngine_UIElements_ComputedTransitionProperty__AddRange, (List_1_UnityEngine_UIElements_ComputedTransitionProperty_ * __this, IEnumerable_1_UnityEngine_UIElements_ComputedTransitionProperty_ * collection, MethodInfo * method)); DO_APP_FUNC(0x01745000, void, List_1_UnityEngine_UIElements_ComputedTransitionProperty__AddWithResize, (List_1_UnityEngine_UIElements_ComputedTransitionProperty_ * __this, ComputedTransitionProperty item, MethodInfo * method)); @@ -164419,8 +181522,10 @@ DO_APP_FUNC(0x01745310, int32_t, List_1_UnityEngine_UIElements_ComputedTransitio DO_APP_FUNC(0x017453B0, int32_t, List_1_UnityEngine_UIElements_ComputedTransitionProperty__BinarySearch_1, (List_1_UnityEngine_UIElements_ComputedTransitionProperty_ * __this, ComputedTransitionProperty item, IComparer_1_UnityEngine_UIElements_ComputedTransitionProperty_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01745250, int32_t, List_1_UnityEngine_UIElements_ComputedTransitionProperty__BinarySearch_2, (List_1_UnityEngine_UIElements_ComputedTransitionProperty_ * __this, int32_t index, int32_t count, ComputedTransitionProperty item, IComparer_1_UnityEngine_UIElements_ComputedTransitionProperty_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x003CB200, void, List_1_UnityEngine_UIElements_ComputedTransitionProperty__Clear, (List_1_UnityEngine_UIElements_ComputedTransitionProperty_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5FD8, List_1_UnityEngine_UIElements_ComputedTransitionProperty__Clear__MethodInfo); DO_APP_FUNC(0x01745450, bool, List_1_UnityEngine_UIElements_ComputedTransitionProperty__Contains, (List_1_UnityEngine_UIElements_ComputedTransitionProperty_ * __this, ComputedTransitionProperty item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_UnityEngine_UIElements_ComputedTransitionProperty__CopyTo, (List_1_UnityEngine_UIElements_ComputedTransitionProperty_ * __this, ComputedTransitionProperty__Array * array, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5FE0, List_1_UnityEngine_UIElements_ComputedTransitionProperty__CopyTo__MethodInfo); DO_APP_FUNC(0x00FDE450, void, List_1_UnityEngine_UIElements_ComputedTransitionProperty__CopyTo_1, (List_1_UnityEngine_UIElements_ComputedTransitionProperty_ * __this, ComputedTransitionProperty__Array * array, int32_t arrayIndex, MethodInfo * method)); DO_APP_FUNC(0x01730970, void, List_1_UnityEngine_UIElements_ComputedTransitionProperty__EnsureCapacity, (List_1_UnityEngine_UIElements_ComputedTransitionProperty_ * __this, int32_t min, MethodInfo * method)); DO_APP_FUNC(0x017309E0, bool, List_1_UnityEngine_UIElements_ComputedTransitionProperty__Exists, (List_1_UnityEngine_UIElements_ComputedTransitionProperty_ * __this, Predicate_1_UnityEngine_UIElements_ComputedTransitionProperty_ * match, MethodInfo * method)); @@ -164463,22 +181568,27 @@ DO_APP_FUNC(0x01732000, ComputedTransitionProperty__Array *, List_1_UnityEngine_ DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_UIElements_ComputedTransitionProperty__TrimExcess, (List_1_UnityEngine_UIElements_ComputedTransitionProperty_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_UIElements_ComputedTransitionProperty__get_Capacity, (List_1_UnityEngine_UIElements_ComputedTransitionProperty_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_UIElements_ComputedTransitionProperty__get_Count, (List_1_UnityEngine_UIElements_ComputedTransitionProperty_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6010, List_1_UnityEngine_UIElements_ComputedTransitionProperty__get_Count__MethodInfo); DO_APP_FUNC(0x01744B50, ComputedTransitionProperty, List_1_UnityEngine_UIElements_ComputedTransitionProperty__get_Item, (List_1_UnityEngine_UIElements_ComputedTransitionProperty_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_UIElements_ComputedTransitionProperty__set_Capacity, (List_1_UnityEngine_UIElements_ComputedTransitionProperty_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01744BB0, void, List_1_UnityEngine_UIElements_ComputedTransitionProperty__set_Item, (List_1_UnityEngine_UIElements_ComputedTransitionProperty_ * __this, int32_t index, ComputedTransitionProperty value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_Pathfinding_Connection___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_Pathfinding_Connection___ctor, (List_1_Pathfinding_Connection_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB95C0, List_1_Pathfinding_Connection___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_Pathfinding_Connection___ctor_1, (List_1_Pathfinding_Connection_ * __this, IEnumerable_1_Pathfinding_Connection__1 * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_Pathfinding_Connection___ctor_2, (List_1_Pathfinding_Connection_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x017301E0, void, List_1_Pathfinding_Connection__Add, (List_1_Pathfinding_Connection_ * __this, Connection item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8150, List_1_Pathfinding_Connection__Add__MethodInfo); DO_APP_FUNC(0x01767780, void, List_1_Pathfinding_Connection__AddEnumerable, (List_1_Pathfinding_Connection_ * __this, IEnumerable_1_Pathfinding_Connection__1 * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_Pathfinding_Connection__AddRange, (List_1_Pathfinding_Connection_ * __this, IEnumerable_1_Pathfinding_Connection__1 * collection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9618, List_1_Pathfinding_Connection__AddRange__MethodInfo); DO_APP_FUNC(0x017302C0, void, List_1_Pathfinding_Connection__AddWithResize, (List_1_Pathfinding_Connection_ * __this, Connection item, MethodInfo * method)); DO_APP_FUNC(0x01730510, ReadOnlyCollection_1_Pathfinding_Connection_ *, List_1_Pathfinding_Connection__AsReadOnly, (List_1_Pathfinding_Connection_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01730630, int32_t, List_1_Pathfinding_Connection__BinarySearch, (List_1_Pathfinding_Connection_ * __this, Connection item, MethodInfo * method)); DO_APP_FUNC(0x017306C0, int32_t, List_1_Pathfinding_Connection__BinarySearch_1, (List_1_Pathfinding_Connection_ * __this, Connection item, IComparer_1_Pathfinding_Connection_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01730590, int32_t, List_1_Pathfinding_Connection__BinarySearch_2, (List_1_Pathfinding_Connection_ * __this, int32_t index, int32_t count, Connection item, IComparer_1_Pathfinding_Connection_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x003CB200, void, List_1_Pathfinding_Connection__Clear, (List_1_Pathfinding_Connection_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8148, List_1_Pathfinding_Connection__Clear__MethodInfo); DO_APP_FUNC(0x01730760, bool, List_1_Pathfinding_Connection__Contains, (List_1_Pathfinding_Connection_ * __this, Connection item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_Pathfinding_Connection__CopyTo, (List_1_Pathfinding_Connection_ * __this, Connection__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_Pathfinding_Connection__CopyTo_1, (List_1_Pathfinding_Connection_ * __this, Connection__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -164490,6 +181600,7 @@ DO_APP_FUNC(0x01730C90, int32_t, List_1_Pathfinding_Connection__FindIndex, (List DO_APP_FUNC(0x01730CE0, int32_t, List_1_Pathfinding_Connection__FindIndex_1, (List_1_Pathfinding_Connection_ * __this, int32_t startIndex, int32_t count, Predicate_1_Pathfinding_Connection_ * match, MethodInfo * method)); DO_APP_FUNC(0x01730DF0, void, List_1_Pathfinding_Connection__ForEach, (List_1_Pathfinding_Connection_ * __this, Action_1_Pathfinding_Connection_ * action, MethodInfo * method)); DO_APP_FUNC(0x01730EC0, List_1_T_Enumerator_Pathfinding_Connection_, List_1_Pathfinding_Connection__GetEnumerator, (List_1_Pathfinding_Connection_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7B80, List_1_Pathfinding_Connection__GetEnumerator__MethodInfo); DO_APP_FUNC(0x01731030, int32_t, List_1_Pathfinding_Connection__IndexOf, (List_1_Pathfinding_Connection_ * __this, Connection item, MethodInfo * method)); DO_APP_FUNC(0x017311C0, void, List_1_Pathfinding_Connection__Insert, (List_1_Pathfinding_Connection_ * __this, int32_t index, Connection item, MethodInfo * method)); DO_APP_FUNC(0x017673C0, void, List_1_Pathfinding_Connection__InsertRange, (List_1_Pathfinding_Connection_ * __this, int32_t index, IEnumerable_1_Pathfinding_Connection__1 * collection, MethodInfo * method)); @@ -164497,6 +181608,7 @@ DO_APP_FUNC(0x0172FF50, bool, List_1_Pathfinding_Connection__IsCompatibleObject, DO_APP_FUNC(0x017317F0, bool, List_1_Pathfinding_Connection__Remove, (List_1_Pathfinding_Connection_ * __this, Connection item, MethodInfo * method)); DO_APP_FUNC(0x017319A0, int32_t, List_1_Pathfinding_Connection__RemoveAll, (List_1_Pathfinding_Connection_ * __this, Predicate_1_Pathfinding_Connection_ * match, MethodInfo * method)); DO_APP_FUNC(0x01731B90, void, List_1_Pathfinding_Connection__RemoveAt, (List_1_Pathfinding_Connection_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9608, List_1_Pathfinding_Connection__RemoveAt__MethodInfo); DO_APP_FUNC(0x01731C60, void, List_1_Pathfinding_Connection__RemoveRange, (List_1_Pathfinding_Connection_ * __this, int32_t index, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x01731D00, void, List_1_Pathfinding_Connection__Reverse, (List_1_Pathfinding_Connection_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01731D60, void, List_1_Pathfinding_Connection__Reverse_1, (List_1_Pathfinding_Connection_ * __this, int32_t index, int32_t count, MethodInfo * method)); @@ -164520,17 +181632,22 @@ DO_APP_FUNC(0x0041AF00, bool, List_1_Pathfinding_Connection__System_Collections_ DO_APP_FUNC(0x01730020, Object *, List_1_Pathfinding_Connection__System_Collections_IList_get_Item, (List_1_Pathfinding_Connection_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x017300A0, void, List_1_Pathfinding_Connection__System_Collections_IList_set_Item, (List_1_Pathfinding_Connection_ * __this, int32_t index, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01732000, Connection__Array *, List_1_Pathfinding_Connection__ToArray, (List_1_Pathfinding_Connection_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9600, List_1_Pathfinding_Connection__ToArray__MethodInfo); DO_APP_FUNC(0x017320E0, void, List_1_Pathfinding_Connection__TrimExcess, (List_1_Pathfinding_Connection_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_Pathfinding_Connection__get_Capacity, (List_1_Pathfinding_Connection_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_Pathfinding_Connection__get_Count, (List_1_Pathfinding_Connection_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7FA0, List_1_Pathfinding_Connection__get_Count__MethodInfo); DO_APP_FUNC(0x0172FE60, Connection, List_1_Pathfinding_Connection__get_Item, (List_1_Pathfinding_Connection_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9610, List_1_Pathfinding_Connection__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_Pathfinding_Connection__set_Capacity, (List_1_Pathfinding_Connection_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x0172FEB0, void, List_1_Pathfinding_Connection__set_Item, (List_1_Pathfinding_Connection_ * __this, int32_t index, Connection value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_Rewired_ControllerPollingInfo___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_Rewired_ControllerPollingInfo___ctor, (List_1_Rewired_ControllerPollingInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC6F10, List_1_Rewired_ControllerPollingInfo___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_Rewired_ControllerPollingInfo___ctor_1, (List_1_Rewired_ControllerPollingInfo_ * __this, IEnumerable_1_Rewired_ControllerPollingInfo_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_Rewired_ControllerPollingInfo___ctor_2, (List_1_Rewired_ControllerPollingInfo_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x01767B90, void, List_1_Rewired_ControllerPollingInfo__Add, (List_1_Rewired_ControllerPollingInfo_ * __this, ControllerPollingInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC6E98, List_1_Rewired_ControllerPollingInfo__Add__MethodInfo); DO_APP_FUNC(0x01768530, void, List_1_Rewired_ControllerPollingInfo__AddEnumerable, (List_1_Rewired_ControllerPollingInfo_ * __this, IEnumerable_1_Rewired_ControllerPollingInfo_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_Rewired_ControllerPollingInfo__AddRange, (List_1_Rewired_ControllerPollingInfo_ * __this, IEnumerable_1_Rewired_ControllerPollingInfo_ * collection, MethodInfo * method)); DO_APP_FUNC(0x01767CB0, void, List_1_Rewired_ControllerPollingInfo__AddWithResize, (List_1_Rewired_ControllerPollingInfo_ * __this, ControllerPollingInfo item, MethodInfo * method)); @@ -164539,6 +181656,7 @@ DO_APP_FUNC(0x01757580, int32_t, List_1_Rewired_ControllerPollingInfo__BinarySea DO_APP_FUNC(0x01757630, int32_t, List_1_Rewired_ControllerPollingInfo__BinarySearch_1, (List_1_Rewired_ControllerPollingInfo_ * __this, ControllerPollingInfo item, IComparer_1_Rewired_ControllerPollingInfo_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x017574B0, int32_t, List_1_Rewired_ControllerPollingInfo__BinarySearch_2, (List_1_Rewired_ControllerPollingInfo_ * __this, int32_t index, int32_t count, ControllerPollingInfo item, IComparer_1_Rewired_ControllerPollingInfo_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x003CB200, void, List_1_Rewired_ControllerPollingInfo__Clear, (List_1_Rewired_ControllerPollingInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC6EA0, List_1_Rewired_ControllerPollingInfo__Clear__MethodInfo); DO_APP_FUNC(0x017576E0, bool, List_1_Rewired_ControllerPollingInfo__Contains, (List_1_Rewired_ControllerPollingInfo_ * __this, ControllerPollingInfo item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_Rewired_ControllerPollingInfo__CopyTo, (List_1_Rewired_ControllerPollingInfo_ * __this, ControllerPollingInfo__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_Rewired_ControllerPollingInfo__CopyTo_1, (List_1_Rewired_ControllerPollingInfo_ * __this, ControllerPollingInfo__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -164590,6 +181708,7 @@ DO_APP_FUNC(0x017323E0, void, List_1_Rewired_ControllerTemplateElementTarget___c DO_APP_FUNC(0x0172F7F0, void, List_1_Rewired_ControllerTemplateElementTarget___ctor, (List_1_Rewired_ControllerTemplateElementTarget_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0172FA30, void, List_1_Rewired_ControllerTemplateElementTarget___ctor_1, (List_1_Rewired_ControllerTemplateElementTarget_ * __this, IEnumerable_1_Rewired_ControllerTemplateElementTarget_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_Rewired_ControllerTemplateElementTarget___ctor_2, (List_1_Rewired_ControllerTemplateElementTarget_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE3A20, List_1_Rewired_ControllerTemplateElementTarget___ctor_2__MethodInfo); DO_APP_FUNC(0x017301E0, void, List_1_Rewired_ControllerTemplateElementTarget__Add, (List_1_Rewired_ControllerTemplateElementTarget_ * __this, ControllerTemplateElementTarget item, MethodInfo * method)); DO_APP_FUNC(0x01768C70, void, List_1_Rewired_ControllerTemplateElementTarget__AddEnumerable, (List_1_Rewired_ControllerTemplateElementTarget_ * __this, IEnumerable_1_Rewired_ControllerTemplateElementTarget_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_Rewired_ControllerTemplateElementTarget__AddRange, (List_1_Rewired_ControllerTemplateElementTarget_ * __this, IEnumerable_1_Rewired_ControllerTemplateElementTarget_ * collection, MethodInfo * method)); @@ -164643,7 +181762,9 @@ DO_APP_FUNC(0x01732000, ControllerTemplateElementTarget__Array *, List_1_Rewired DO_APP_FUNC(0x017320E0, void, List_1_Rewired_ControllerTemplateElementTarget__TrimExcess, (List_1_Rewired_ControllerTemplateElementTarget_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_Rewired_ControllerTemplateElementTarget__get_Capacity, (List_1_Rewired_ControllerTemplateElementTarget_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_Rewired_ControllerTemplateElementTarget__get_Count, (List_1_Rewired_ControllerTemplateElementTarget_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD208, List_1_Rewired_ControllerTemplateElementTarget__get_Count__MethodInfo); DO_APP_FUNC(0x0172FE60, ControllerTemplateElementTarget, List_1_Rewired_ControllerTemplateElementTarget__get_Item, (List_1_Rewired_ControllerTemplateElementTarget_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD218, List_1_Rewired_ControllerTemplateElementTarget__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_Rewired_ControllerTemplateElementTarget__set_Capacity, (List_1_Rewired_ControllerTemplateElementTarget_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x0172FEB0, void, List_1_Rewired_ControllerTemplateElementTarget__set_Item, (List_1_Rewired_ControllerTemplateElementTarget_ * __this, int32_t index, ControllerTemplateElementTarget value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_SplineMesh_CurveSample___cctor, (MethodInfo * method)); @@ -165018,17 +182139,22 @@ DO_APP_FUNC(0x0172FC90, void, List_1_System_Double__set_Capacity, (List_1_System DO_APP_FUNC(0x0176E830, void, List_1_System_Double__set_Item, (List_1_System_Double_ * __this, int32_t index, double value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_UIElements_EasingFunction___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_UIElements_EasingFunction___ctor, (List_1_UnityEngine_UIElements_EasingFunction_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9A90, List_1_UnityEngine_UIElements_EasingFunction___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_UIElements_EasingFunction___ctor_1, (List_1_UnityEngine_UIElements_EasingFunction_ * __this, IEnumerable_1_UnityEngine_UIElements_EasingFunction_ * collection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEAEC8, List_1_UnityEngine_UIElements_EasingFunction___ctor_1__MethodInfo); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_UIElements_EasingFunction___ctor_2, (List_1_UnityEngine_UIElements_EasingFunction_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x003ECFF0, void, List_1_UnityEngine_UIElements_EasingFunction__Add, (List_1_UnityEngine_UIElements_EasingFunction_ * __this, EasingFunction item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9A48, List_1_UnityEngine_UIElements_EasingFunction__Add__MethodInfo); DO_APP_FUNC(0x01770490, void, List_1_UnityEngine_UIElements_EasingFunction__AddEnumerable, (List_1_UnityEngine_UIElements_EasingFunction_ * __this, IEnumerable_1_UnityEngine_UIElements_EasingFunction_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_UnityEngine_UIElements_EasingFunction__AddRange, (List_1_UnityEngine_UIElements_EasingFunction_ * __this, IEnumerable_1_UnityEngine_UIElements_EasingFunction_ * collection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEAF18, List_1_UnityEngine_UIElements_EasingFunction__AddRange__MethodInfo); DO_APP_FUNC(0x017631D0, void, List_1_UnityEngine_UIElements_EasingFunction__AddWithResize, (List_1_UnityEngine_UIElements_EasingFunction_ * __this, EasingFunction item, MethodInfo * method)); DO_APP_FUNC(0x01730510, ReadOnlyCollection_1_UnityEngine_UIElements_EasingFunction_ *, List_1_UnityEngine_UIElements_EasingFunction__AsReadOnly, (List_1_UnityEngine_UIElements_EasingFunction_ * __this, MethodInfo * method)); DO_APP_FUNC(0x017633A0, int32_t, List_1_UnityEngine_UIElements_EasingFunction__BinarySearch, (List_1_UnityEngine_UIElements_EasingFunction_ * __this, EasingFunction item, MethodInfo * method)); DO_APP_FUNC(0x01763420, int32_t, List_1_UnityEngine_UIElements_EasingFunction__BinarySearch_1, (List_1_UnityEngine_UIElements_EasingFunction_ * __this, EasingFunction item, IComparer_1_UnityEngine_UIElements_EasingFunction_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x017493B0, int32_t, List_1_UnityEngine_UIElements_EasingFunction__BinarySearch_2, (List_1_UnityEngine_UIElements_EasingFunction_ * __this, int32_t index, int32_t count, EasingFunction item, IComparer_1_UnityEngine_UIElements_EasingFunction_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01749550, void, List_1_UnityEngine_UIElements_EasingFunction__Clear, (List_1_UnityEngine_UIElements_EasingFunction_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC2F8, List_1_UnityEngine_UIElements_EasingFunction__Clear__MethodInfo); DO_APP_FUNC(0x01749560, bool, List_1_UnityEngine_UIElements_EasingFunction__Contains, (List_1_UnityEngine_UIElements_EasingFunction_ * __this, EasingFunction item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_UnityEngine_UIElements_EasingFunction__CopyTo, (List_1_UnityEngine_UIElements_EasingFunction_ * __this, EasingFunction__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_UnityEngine_UIElements_EasingFunction__CopyTo_1, (List_1_UnityEngine_UIElements_EasingFunction_ * __this, EasingFunction__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -165040,6 +182166,7 @@ DO_APP_FUNC(0x01730C90, int32_t, List_1_UnityEngine_UIElements_EasingFunction__F DO_APP_FUNC(0x01763800, int32_t, List_1_UnityEngine_UIElements_EasingFunction__FindIndex_1, (List_1_UnityEngine_UIElements_EasingFunction_ * __this, int32_t startIndex, int32_t count, Predicate_1_UnityEngine_UIElements_EasingFunction_ * match, MethodInfo * method)); DO_APP_FUNC(0x01763900, void, List_1_UnityEngine_UIElements_EasingFunction__ForEach, (List_1_UnityEngine_UIElements_EasingFunction_ * __this, Action_1_UnityEngine_UIElements_EasingFunction_ * action, MethodInfo * method)); DO_APP_FUNC(0x017639C0, List_1_T_Enumerator_UnityEngine_UIElements_EasingFunction_, List_1_UnityEngine_UIElements_EasingFunction__GetEnumerator, (List_1_UnityEngine_UIElements_EasingFunction_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5F20, List_1_UnityEngine_UIElements_EasingFunction__GetEnumerator__MethodInfo); DO_APP_FUNC(0x01749C30, int32_t, List_1_UnityEngine_UIElements_EasingFunction__IndexOf, (List_1_UnityEngine_UIElements_EasingFunction_ * __this, EasingFunction item, MethodInfo * method)); DO_APP_FUNC(0x01763C50, void, List_1_UnityEngine_UIElements_EasingFunction__Insert, (List_1_UnityEngine_UIElements_EasingFunction_ * __this, int32_t index, EasingFunction item, MethodInfo * method)); DO_APP_FUNC(0x01770140, void, List_1_UnityEngine_UIElements_EasingFunction__InsertRange, (List_1_UnityEngine_UIElements_EasingFunction_ * __this, int32_t index, IEnumerable_1_UnityEngine_UIElements_EasingFunction_ * collection, MethodInfo * method)); @@ -165074,13 +182201,16 @@ DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_UIElements_EasingFunction__Trim DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_UIElements_EasingFunction__get_Capacity, (List_1_UnityEngine_UIElements_EasingFunction_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_UIElements_EasingFunction__get_Count, (List_1_UnityEngine_UIElements_EasingFunction_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01762EE0, EasingFunction, List_1_UnityEngine_UIElements_EasingFunction__get_Item, (List_1_UnityEngine_UIElements_EasingFunction_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC2C8, List_1_UnityEngine_UIElements_EasingFunction__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_UIElements_EasingFunction__set_Capacity, (List_1_UnityEngine_UIElements_EasingFunction_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01762F20, void, List_1_UnityEngine_UIElements_EasingFunction__set_Item, (List_1_UnityEngine_UIElements_EasingFunction_ * __this, int32_t index, EasingFunction value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_Rewired_ElementAssignmentConflictInfo___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_Rewired_ElementAssignmentConflictInfo___ctor, (List_1_Rewired_ElementAssignmentConflictInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC6E18, List_1_Rewired_ElementAssignmentConflictInfo___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_Rewired_ElementAssignmentConflictInfo___ctor_1, (List_1_Rewired_ElementAssignmentConflictInfo_ * __this, IEnumerable_1_Rewired_ElementAssignmentConflictInfo_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_Rewired_ElementAssignmentConflictInfo___ctor_2, (List_1_Rewired_ElementAssignmentConflictInfo_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x01770B80, void, List_1_Rewired_ElementAssignmentConflictInfo__Add, (List_1_Rewired_ElementAssignmentConflictInfo_ * __this, ElementAssignmentConflictInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC6E20, List_1_Rewired_ElementAssignmentConflictInfo__Add__MethodInfo); DO_APP_FUNC(0x017724F0, void, List_1_Rewired_ElementAssignmentConflictInfo__AddEnumerable, (List_1_Rewired_ElementAssignmentConflictInfo_ * __this, IEnumerable_1_Rewired_ElementAssignmentConflictInfo_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_Rewired_ElementAssignmentConflictInfo__AddRange, (List_1_Rewired_ElementAssignmentConflictInfo_ * __this, IEnumerable_1_Rewired_ElementAssignmentConflictInfo_ * collection, MethodInfo * method)); DO_APP_FUNC(0x01770C30, void, List_1_Rewired_ElementAssignmentConflictInfo__AddWithResize, (List_1_Rewired_ElementAssignmentConflictInfo_ * __this, ElementAssignmentConflictInfo item, MethodInfo * method)); @@ -165138,9 +182268,11 @@ DO_APP_FUNC(0x0172FC90, void, List_1_Rewired_ElementAssignmentConflictInfo__set_ DO_APP_FUNC(0x01770810, void, List_1_Rewired_ElementAssignmentConflictInfo__set_Item, (List_1_Rewired_ElementAssignmentConflictInfo_ * __this, int32_t index, ElementAssignmentConflictInfo value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_Discord_Entitlement___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_Discord_Entitlement___ctor, (List_1_Discord_Entitlement_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C6E0, List_1_Discord_Entitlement___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_Discord_Entitlement___ctor_1, (List_1_Discord_Entitlement_ * __this, IEnumerable_1_Discord_Entitlement_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_Discord_Entitlement___ctor_2, (List_1_Discord_Entitlement_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x017728C0, void, List_1_Discord_Entitlement__Add, (List_1_Discord_Entitlement_ * __this, Entitlement item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C6E8, List_1_Discord_Entitlement__Add__MethodInfo); DO_APP_FUNC(0x01773060, void, List_1_Discord_Entitlement__AddEnumerable, (List_1_Discord_Entitlement_ * __this, IEnumerable_1_Discord_Entitlement_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_Discord_Entitlement__AddRange, (List_1_Discord_Entitlement_ * __this, IEnumerable_1_Discord_Entitlement_ * collection, MethodInfo * method)); DO_APP_FUNC(0x01772950, void, List_1_Discord_Entitlement__AddWithResize, (List_1_Discord_Entitlement_ * __this, Entitlement item, MethodInfo * method)); @@ -165198,9 +182330,11 @@ DO_APP_FUNC(0x0172FC90, void, List_1_Discord_Entitlement__set_Capacity, (List_1_ DO_APP_FUNC(0x01772860, void, List_1_Discord_Entitlement__set_Item, (List_1_Discord_Entitlement_ * __this, int32_t index, Entitlement value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_Photon_Bolt_EventReliable___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_Photon_Bolt_EventReliable___ctor, (List_1_Photon_Bolt_EventReliable_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9958, List_1_Photon_Bolt_EventReliable___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_Photon_Bolt_EventReliable___ctor_1, (List_1_Photon_Bolt_EventReliable_ * __this, IEnumerable_1_Photon_Bolt_EventReliable_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_Photon_Bolt_EventReliable___ctor_2, (List_1_Photon_Bolt_EventReliable_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x017301E0, void, List_1_Photon_Bolt_EventReliable__Add, (List_1_Photon_Bolt_EventReliable_ * __this, EventReliable item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3100, List_1_Photon_Bolt_EventReliable__Add__MethodInfo); DO_APP_FUNC(0x01773770, void, List_1_Photon_Bolt_EventReliable__AddEnumerable, (List_1_Photon_Bolt_EventReliable_ * __this, IEnumerable_1_Photon_Bolt_EventReliable_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_Photon_Bolt_EventReliable__AddRange, (List_1_Photon_Bolt_EventReliable_ * __this, IEnumerable_1_Photon_Bolt_EventReliable_ * collection, MethodInfo * method)); DO_APP_FUNC(0x017302C0, void, List_1_Photon_Bolt_EventReliable__AddWithResize, (List_1_Photon_Bolt_EventReliable_ * __this, EventReliable item, MethodInfo * method)); @@ -165209,6 +182343,7 @@ DO_APP_FUNC(0x01730630, int32_t, List_1_Photon_Bolt_EventReliable__BinarySearch, DO_APP_FUNC(0x017306C0, int32_t, List_1_Photon_Bolt_EventReliable__BinarySearch_1, (List_1_Photon_Bolt_EventReliable_ * __this, EventReliable item, IComparer_1_Photon_Bolt_EventReliable_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01730590, int32_t, List_1_Photon_Bolt_EventReliable__BinarySearch_2, (List_1_Photon_Bolt_EventReliable_ * __this, int32_t index, int32_t count, EventReliable item, IComparer_1_Photon_Bolt_EventReliable_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x003CB200, void, List_1_Photon_Bolt_EventReliable__Clear, (List_1_Photon_Bolt_EventReliable_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3188, List_1_Photon_Bolt_EventReliable__Clear__MethodInfo); DO_APP_FUNC(0x01730760, bool, List_1_Photon_Bolt_EventReliable__Contains, (List_1_Photon_Bolt_EventReliable_ * __this, EventReliable item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_Photon_Bolt_EventReliable__CopyTo, (List_1_Photon_Bolt_EventReliable_ * __this, EventReliable__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_Photon_Bolt_EventReliable__CopyTo_1, (List_1_Photon_Bolt_EventReliable_ * __this, EventReliable__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -165253,14 +182388,18 @@ DO_APP_FUNC(0x01732000, EventReliable__Array *, List_1_Photon_Bolt_EventReliable DO_APP_FUNC(0x017320E0, void, List_1_Photon_Bolt_EventReliable__TrimExcess, (List_1_Photon_Bolt_EventReliable_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_Photon_Bolt_EventReliable__get_Capacity, (List_1_Photon_Bolt_EventReliable_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_Photon_Bolt_EventReliable__get_Count, (List_1_Photon_Bolt_EventReliable_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3140, List_1_Photon_Bolt_EventReliable__get_Count__MethodInfo); DO_APP_FUNC(0x0172FE60, EventReliable, List_1_Photon_Bolt_EventReliable__get_Item, (List_1_Photon_Bolt_EventReliable_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3128, List_1_Photon_Bolt_EventReliable__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_Photon_Bolt_EventReliable__set_Capacity, (List_1_Photon_Bolt_EventReliable_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x0172FEB0, void, List_1_Photon_Bolt_EventReliable__set_Item, (List_1_Photon_Bolt_EventReliable_ * __this, int32_t index, EventReliable value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_Photon_Bolt_EventUnreliable___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_Photon_Bolt_EventUnreliable___ctor, (List_1_Photon_Bolt_EventUnreliable_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0172FA30, void, List_1_Photon_Bolt_EventUnreliable___ctor_1, (List_1_Photon_Bolt_EventUnreliable_ * __this, IEnumerable_1_Photon_Bolt_EventUnreliable_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_Photon_Bolt_EventUnreliable___ctor_2, (List_1_Photon_Bolt_EventUnreliable_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC31E8, List_1_Photon_Bolt_EventUnreliable___ctor_2__MethodInfo); DO_APP_FUNC(0x0175C980, void, List_1_Photon_Bolt_EventUnreliable__Add, (List_1_Photon_Bolt_EventUnreliable_ * __this, EventUnreliable item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3178, List_1_Photon_Bolt_EventUnreliable__Add__MethodInfo); DO_APP_FUNC(0x01773E90, void, List_1_Photon_Bolt_EventUnreliable__AddEnumerable, (List_1_Photon_Bolt_EventUnreliable_ * __this, IEnumerable_1_Photon_Bolt_EventUnreliable_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_Photon_Bolt_EventUnreliable__AddRange, (List_1_Photon_Bolt_EventUnreliable_ * __this, IEnumerable_1_Photon_Bolt_EventUnreliable_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0175CA70, void, List_1_Photon_Bolt_EventUnreliable__AddWithResize, (List_1_Photon_Bolt_EventUnreliable_ * __this, EventUnreliable item, MethodInfo * method)); @@ -165287,12 +182426,14 @@ DO_APP_FUNC(0x01744C60, bool, List_1_Photon_Bolt_EventUnreliable__IsCompatibleOb DO_APP_FUNC(0x01746430, bool, List_1_Photon_Bolt_EventUnreliable__Remove, (List_1_Photon_Bolt_EventUnreliable_ * __this, EventUnreliable item, MethodInfo * method)); DO_APP_FUNC(0x0175D050, int32_t, List_1_Photon_Bolt_EventUnreliable__RemoveAll, (List_1_Photon_Bolt_EventUnreliable_ * __this, Predicate_1_Photon_Bolt_EventUnreliable_ * match, MethodInfo * method)); DO_APP_FUNC(0x0175D230, void, List_1_Photon_Bolt_EventUnreliable__RemoveAt, (List_1_Photon_Bolt_EventUnreliable_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC30C0, List_1_Photon_Bolt_EventUnreliable__RemoveAt__MethodInfo); DO_APP_FUNC(0x01731C60, void, List_1_Photon_Bolt_EventUnreliable__RemoveRange, (List_1_Photon_Bolt_EventUnreliable_ * __this, int32_t index, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x01731D00, void, List_1_Photon_Bolt_EventUnreliable__Reverse, (List_1_Photon_Bolt_EventUnreliable_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01731D60, void, List_1_Photon_Bolt_EventUnreliable__Reverse_1, (List_1_Photon_Bolt_EventUnreliable_ * __this, int32_t index, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x01731DD0, void, List_1_Photon_Bolt_EventUnreliable__Sort, (List_1_Photon_Bolt_EventUnreliable_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01731F40, void, List_1_Photon_Bolt_EventUnreliable__Sort_1, (List_1_Photon_Bolt_EventUnreliable_ * __this, Comparison_1_Photon_Bolt_EventUnreliable_ * comparison, MethodInfo * method)); DO_APP_FUNC(0x01731E40, void, List_1_Photon_Bolt_EventUnreliable__Sort_2, (List_1_Photon_Bolt_EventUnreliable_ * __this, IComparer_1_Photon_Bolt_EventUnreliable_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC30B0, List_1_Photon_Bolt_EventUnreliable__Sort_2__MethodInfo); DO_APP_FUNC(0x01731EC0, void, List_1_Photon_Bolt_EventUnreliable__Sort_3, (List_1_Photon_Bolt_EventUnreliable_ * __this, int32_t index, int32_t count, IComparer_1_Photon_Bolt_EventUnreliable_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, List_1_Photon_Bolt_EventUnreliable__System_Collections_Generic_ICollection_T__get_IsReadOnly, (List_1_Photon_Bolt_EventUnreliable_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01745B40, IEnumerator_1_Photon_Bolt_EventUnreliable_ *, List_1_Photon_Bolt_EventUnreliable__System_Collections_Generic_IEnumerable_T__GetEnumerator, (List_1_Photon_Bolt_EventUnreliable_ * __this, MethodInfo * method)); @@ -165313,14 +182454,19 @@ DO_APP_FUNC(0x01732000, EventUnreliable__Array *, List_1_Photon_Bolt_EventUnreli DO_APP_FUNC(0x017320E0, void, List_1_Photon_Bolt_EventUnreliable__TrimExcess, (List_1_Photon_Bolt_EventUnreliable_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_Photon_Bolt_EventUnreliable__get_Capacity, (List_1_Photon_Bolt_EventUnreliable_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_Photon_Bolt_EventUnreliable__get_Count, (List_1_Photon_Bolt_EventUnreliable_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC30E0, List_1_Photon_Bolt_EventUnreliable__get_Count__MethodInfo); DO_APP_FUNC(0x01744B50, EventUnreliable, List_1_Photon_Bolt_EventUnreliable__get_Item, (List_1_Photon_Bolt_EventUnreliable_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC30D0, List_1_Photon_Bolt_EventUnreliable__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_Photon_Bolt_EventUnreliable__set_Capacity, (List_1_Photon_Bolt_EventUnreliable_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x0175C8D0, void, List_1_Photon_Bolt_EventUnreliable__set_Item, (List_1_Photon_Bolt_EventUnreliable_ * __this, int32_t index, EventUnreliable value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3078, List_1_Photon_Bolt_EventUnreliable__set_Item__MethodInfo); DO_APP_FUNC(0x017323E0, void, List_1_Discord_FileStat___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_Discord_FileStat___ctor, (List_1_Discord_FileStat_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C848, List_1_Discord_FileStat___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_Discord_FileStat___ctor_1, (List_1_Discord_FileStat_ * __this, IEnumerable_1_Discord_FileStat_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_Discord_FileStat___ctor_2, (List_1_Discord_FileStat_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x0174B8D0, void, List_1_Discord_FileStat__Add, (List_1_Discord_FileStat_ * __this, FileStat item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C850, List_1_Discord_FileStat__Add__MethodInfo); DO_APP_FUNC(0x017745B0, void, List_1_Discord_FileStat__AddEnumerable, (List_1_Discord_FileStat_ * __this, IEnumerable_1_Discord_FileStat_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_Discord_FileStat__AddRange, (List_1_Discord_FileStat_ * __this, IEnumerable_1_Discord_FileStat_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0174B9C0, void, List_1_Discord_FileStat__AddWithResize, (List_1_Discord_FileStat_ * __this, FileStat item, MethodInfo * method)); @@ -165378,9 +182524,11 @@ DO_APP_FUNC(0x0172FC90, void, List_1_Discord_FileStat__set_Capacity, (List_1_Dis DO_APP_FUNC(0x0174B820, void, List_1_Discord_FileStat__set_Item, (List_1_Discord_FileStat_ * __this, int32_t index, FileStat value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___ctor, (List_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D208F0, List_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___ctor_1, (List_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, IEnumerable_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___ctor_2, (List_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x01770B80, void, List_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__Add, (List_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, GlyphPairAdjustmentRecord item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D20928, List_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__Add__MethodInfo); DO_APP_FUNC(0x01774C80, void, List_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__AddEnumerable, (List_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, IEnumerable_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__AddRange, (List_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, IEnumerable_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * collection, MethodInfo * method)); DO_APP_FUNC(0x01770C30, void, List_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__AddWithResize, (List_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, GlyphPairAdjustmentRecord item, MethodInfo * method)); @@ -165389,6 +182537,7 @@ DO_APP_FUNC(0x01770F20, int32_t, List_1_UnityEngine_TextCore_LowLevel_GlyphPairA DO_APP_FUNC(0x01770FD0, int32_t, List_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__BinarySearch_1, (List_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, GlyphPairAdjustmentRecord item, IComparer_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01770E50, int32_t, List_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__BinarySearch_2, (List_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, int32_t index, int32_t count, GlyphPairAdjustmentRecord item, IComparer_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01749550, void, List_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__Clear, (List_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D20948, List_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__Clear__MethodInfo); DO_APP_FUNC(0x01771090, bool, List_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__Contains, (List_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, GlyphPairAdjustmentRecord item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__CopyTo, (List_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, GlyphPairAdjustmentRecord__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__CopyTo_1, (List_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, GlyphPairAdjustmentRecord__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -165433,7 +182582,9 @@ DO_APP_FUNC(0x01732000, GlyphPairAdjustmentRecord__Array *, List_1_UnityEngine_T DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__TrimExcess, (List_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__get_Capacity, (List_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__get_Count, (List_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D20BC8, List_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__get_Count__MethodInfo); DO_APP_FUNC(0x017707A0, GlyphPairAdjustmentRecord, List_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__get_Item, (List_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D20BC0, List_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__set_Capacity, (List_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01770810, void, List_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord__set_Item, (List_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * __this, int32_t index, GlyphPairAdjustmentRecord value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_TextCore_GlyphRect___cctor, (MethodInfo * method)); @@ -165496,14 +182647,18 @@ DO_APP_FUNC(0x01732000, GlyphRect__Array *, List_1_UnityEngine_TextCore_GlyphRec DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_TextCore_GlyphRect__TrimExcess, (List_1_UnityEngine_TextCore_GlyphRect_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_TextCore_GlyphRect__get_Capacity, (List_1_UnityEngine_TextCore_GlyphRect_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_TextCore_GlyphRect__get_Count, (List_1_UnityEngine_TextCore_GlyphRect_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E178, List_1_UnityEngine_TextCore_GlyphRect__get_Count__MethodInfo); DO_APP_FUNC(0x0172FE60, GlyphRect, List_1_UnityEngine_TextCore_GlyphRect__get_Item, (List_1_UnityEngine_TextCore_GlyphRect_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E170, List_1_UnityEngine_TextCore_GlyphRect__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_TextCore_GlyphRect__set_Capacity, (List_1_UnityEngine_TextCore_GlyphRect_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01751320, void, List_1_UnityEngine_TextCore_GlyphRect__set_Item, (List_1_UnityEngine_TextCore_GlyphRect_ * __this, int32_t index, GlyphRect value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_System_Guid___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_System_Guid___ctor, (List_1_System_Guid_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4C78, List_1_System_Guid___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_System_Guid___ctor_1, (List_1_System_Guid_ * __this, IEnumerable_1_System_Guid_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_System_Guid___ctor_2, (List_1_System_Guid_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x01751370, void, List_1_System_Guid__Add, (List_1_System_Guid_ * __this, Guid item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4C38, List_1_System_Guid__Add__MethodInfo); DO_APP_FUNC(0x01775A50, void, List_1_System_Guid__AddEnumerable, (List_1_System_Guid_ * __this, IEnumerable_1_System_Guid_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_System_Guid__AddRange, (List_1_System_Guid_ * __this, IEnumerable_1_System_Guid_ * collection, MethodInfo * method)); DO_APP_FUNC(0x017513F0, void, List_1_System_Guid__AddWithResize, (List_1_System_Guid_ * __this, Guid item, MethodInfo * method)); @@ -165525,6 +182680,7 @@ DO_APP_FUNC(0x01730DF0, void, List_1_System_Guid__ForEach, (List_1_System_Guid_ DO_APP_FUNC(0x01730EC0, List_1_T_Enumerator_System_Guid_, List_1_System_Guid__GetEnumerator, (List_1_System_Guid_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01731030, int32_t, List_1_System_Guid__IndexOf, (List_1_System_Guid_ * __this, Guid item, MethodInfo * method)); DO_APP_FUNC(0x01751460, void, List_1_System_Guid__Insert, (List_1_System_Guid_ * __this, int32_t index, Guid item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4C28, List_1_System_Guid__Insert__MethodInfo); DO_APP_FUNC(0x017756F0, void, List_1_System_Guid__InsertRange, (List_1_System_Guid_ * __this, int32_t index, IEnumerable_1_System_Guid_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172FF50, bool, List_1_System_Guid__IsCompatibleObject, (Object * value, MethodInfo * method)); DO_APP_FUNC(0x017317F0, bool, List_1_System_Guid__Remove, (List_1_System_Guid_ * __this, Guid item, MethodInfo * method)); @@ -165553,6 +182709,7 @@ DO_APP_FUNC(0x0041AF00, bool, List_1_System_Guid__System_Collections_IList_get_I DO_APP_FUNC(0x01730020, Object *, List_1_System_Guid__System_Collections_IList_get_Item, (List_1_System_Guid_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x017300A0, void, List_1_System_Guid__System_Collections_IList_set_Item, (List_1_System_Guid_ * __this, int32_t index, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01732000, Guid__Array *, List_1_System_Guid__ToArray, (List_1_System_Guid_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4C30, List_1_System_Guid__ToArray__MethodInfo); DO_APP_FUNC(0x017320E0, void, List_1_System_Guid__TrimExcess, (List_1_System_Guid_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_System_Guid__get_Capacity, (List_1_System_Guid_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_System_Guid__get_Count, (List_1_System_Guid_ * __this, MethodInfo * method)); @@ -165561,9 +182718,11 @@ DO_APP_FUNC(0x0172FC90, void, List_1_System_Guid__set_Capacity, (List_1_System_G DO_APP_FUNC(0x01751320, void, List_1_System_Guid__set_Item, (List_1_System_Guid_ * __this, int32_t index, Guid value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_Rewired_InputActionSourceData___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_Rewired_InputActionSourceData___ctor, (List_1_Rewired_InputActionSourceData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3C28, List_1_Rewired_InputActionSourceData___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_Rewired_InputActionSourceData___ctor_1, (List_1_Rewired_InputActionSourceData_ * __this, IEnumerable_1_Rewired_InputActionSourceData_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_Rewired_InputActionSourceData___ctor_2, (List_1_Rewired_InputActionSourceData_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x0174B8D0, void, List_1_Rewired_InputActionSourceData__Add, (List_1_Rewired_InputActionSourceData_ * __this, InputActionSourceData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3778, List_1_Rewired_InputActionSourceData__Add__MethodInfo); DO_APP_FUNC(0x01776160, void, List_1_Rewired_InputActionSourceData__AddEnumerable, (List_1_Rewired_InputActionSourceData_ * __this, IEnumerable_1_Rewired_InputActionSourceData_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_Rewired_InputActionSourceData__AddRange, (List_1_Rewired_InputActionSourceData_ * __this, IEnumerable_1_Rewired_InputActionSourceData_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0174B9C0, void, List_1_Rewired_InputActionSourceData__AddWithResize, (List_1_Rewired_InputActionSourceData_ * __this, InputActionSourceData item, MethodInfo * method)); @@ -165572,6 +182731,7 @@ DO_APP_FUNC(0x01745310, int32_t, List_1_Rewired_InputActionSourceData__BinarySea DO_APP_FUNC(0x017453B0, int32_t, List_1_Rewired_InputActionSourceData__BinarySearch_1, (List_1_Rewired_InputActionSourceData_ * __this, InputActionSourceData item, IComparer_1_Rewired_InputActionSourceData_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01745250, int32_t, List_1_Rewired_InputActionSourceData__BinarySearch_2, (List_1_Rewired_InputActionSourceData_ * __this, int32_t index, int32_t count, InputActionSourceData item, IComparer_1_Rewired_InputActionSourceData_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x003CB200, void, List_1_Rewired_InputActionSourceData__Clear, (List_1_Rewired_InputActionSourceData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3910, List_1_Rewired_InputActionSourceData__Clear__MethodInfo); DO_APP_FUNC(0x01745450, bool, List_1_Rewired_InputActionSourceData__Contains, (List_1_Rewired_InputActionSourceData_ * __this, InputActionSourceData item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_Rewired_InputActionSourceData__CopyTo, (List_1_Rewired_InputActionSourceData_ * __this, InputActionSourceData__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_Rewired_InputActionSourceData__CopyTo_1, (List_1_Rewired_InputActionSourceData_ * __this, InputActionSourceData__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -165621,9 +182781,11 @@ DO_APP_FUNC(0x0172FC90, void, List_1_Rewired_InputActionSourceData__set_Capacity DO_APP_FUNC(0x0174B820, void, List_1_Rewired_InputActionSourceData__set_Item, (List_1_Rewired_InputActionSourceData_ * __this, int32_t index, InputActionSourceData value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_InputSystem_InputBinding___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_InputSystem_InputBinding___ctor, (List_1_UnityEngine_InputSystem_InputBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC11F0, List_1_UnityEngine_InputSystem_InputBinding___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_InputSystem_InputBinding___ctor_1, (List_1_UnityEngine_InputSystem_InputBinding_ * __this, IEnumerable_1_UnityEngine_InputSystem_InputBinding_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_InputSystem_InputBinding___ctor_2, (List_1_UnityEngine_InputSystem_InputBinding_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x017768F0, void, List_1_UnityEngine_InputSystem_InputBinding__Add, (List_1_UnityEngine_InputSystem_InputBinding_ * __this, InputBinding item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC1210, List_1_UnityEngine_InputSystem_InputBinding__Add__MethodInfo); DO_APP_FUNC(0x01778600, void, List_1_UnityEngine_InputSystem_InputBinding__AddEnumerable, (List_1_UnityEngine_InputSystem_InputBinding_ * __this, IEnumerable_1_UnityEngine_InputSystem_InputBinding_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_UnityEngine_InputSystem_InputBinding__AddRange, (List_1_UnityEngine_InputSystem_InputBinding_ * __this, IEnumerable_1_UnityEngine_InputSystem_InputBinding_ * collection, MethodInfo * method)); DO_APP_FUNC(0x017769A0, void, List_1_UnityEngine_InputSystem_InputBinding__AddWithResize, (List_1_UnityEngine_InputSystem_InputBinding_ * __this, InputBinding item, MethodInfo * method)); @@ -165673,6 +182835,7 @@ DO_APP_FUNC(0x0041AF00, bool, List_1_UnityEngine_InputSystem_InputBinding__Syste DO_APP_FUNC(0x017766C0, Object *, List_1_UnityEngine_InputSystem_InputBinding__System_Collections_IList_get_Item, (List_1_UnityEngine_InputSystem_InputBinding_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01776770, void, List_1_UnityEngine_InputSystem_InputBinding__System_Collections_IList_set_Item, (List_1_UnityEngine_InputSystem_InputBinding_ * __this, int32_t index, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01732000, InputBinding__Array *, List_1_UnityEngine_InputSystem_InputBinding__ToArray, (List_1_UnityEngine_InputSystem_InputBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC11D8, List_1_UnityEngine_InputSystem_InputBinding__ToArray__MethodInfo); DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_InputSystem_InputBinding__TrimExcess, (List_1_UnityEngine_InputSystem_InputBinding_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_InputSystem_InputBinding__get_Capacity, (List_1_UnityEngine_InputSystem_InputBinding_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_InputSystem_InputBinding__get_Count, (List_1_UnityEngine_InputSystem_InputBinding_ * __this, MethodInfo * method)); @@ -165681,9 +182844,11 @@ DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_InputSystem_InputBinding__set_C DO_APP_FUNC(0x01776530, void, List_1_UnityEngine_InputSystem_InputBinding__set_Item, (List_1_UnityEngine_InputSystem_InputBinding_ * __this, int32_t index, InputBinding value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_XR_InputDevice___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_XR_InputDevice___ctor, (List_1_UnityEngine_XR_InputDevice_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD60E8, List_1_UnityEngine_XR_InputDevice___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_XR_InputDevice___ctor_1, (List_1_UnityEngine_XR_InputDevice_ * __this, IEnumerable_1_UnityEngine_XR_InputDevice_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_XR_InputDevice___ctor_2, (List_1_UnityEngine_XR_InputDevice_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x01751370, void, List_1_UnityEngine_XR_InputDevice__Add, (List_1_UnityEngine_XR_InputDevice_ * __this, InputDevice_1 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4590, List_1_UnityEngine_XR_InputDevice__Add__MethodInfo); DO_APP_FUNC(0x01778D70, void, List_1_UnityEngine_XR_InputDevice__AddEnumerable, (List_1_UnityEngine_XR_InputDevice_ * __this, IEnumerable_1_UnityEngine_XR_InputDevice_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_UnityEngine_XR_InputDevice__AddRange, (List_1_UnityEngine_XR_InputDevice_ * __this, IEnumerable_1_UnityEngine_XR_InputDevice_ * collection, MethodInfo * method)); DO_APP_FUNC(0x017513F0, void, List_1_UnityEngine_XR_InputDevice__AddWithResize, (List_1_UnityEngine_XR_InputDevice_ * __this, InputDevice_1 item, MethodInfo * method)); @@ -165692,6 +182857,7 @@ DO_APP_FUNC(0x01730630, int32_t, List_1_UnityEngine_XR_InputDevice__BinarySearch DO_APP_FUNC(0x017306C0, int32_t, List_1_UnityEngine_XR_InputDevice__BinarySearch_1, (List_1_UnityEngine_XR_InputDevice_ * __this, InputDevice_1 item, IComparer_1_UnityEngine_XR_InputDevice_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01730590, int32_t, List_1_UnityEngine_XR_InputDevice__BinarySearch_2, (List_1_UnityEngine_XR_InputDevice_ * __this, int32_t index, int32_t count, InputDevice_1 item, IComparer_1_UnityEngine_XR_InputDevice_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01749550, void, List_1_UnityEngine_XR_InputDevice__Clear, (List_1_UnityEngine_XR_InputDevice_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD60E0, List_1_UnityEngine_XR_InputDevice__Clear__MethodInfo); DO_APP_FUNC(0x01730760, bool, List_1_UnityEngine_XR_InputDevice__Contains, (List_1_UnityEngine_XR_InputDevice_ * __this, InputDevice_1 item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_UnityEngine_XR_InputDevice__CopyTo, (List_1_UnityEngine_XR_InputDevice_ * __this, InputDevice_1__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_UnityEngine_XR_InputDevice__CopyTo_1, (List_1_UnityEngine_XR_InputDevice_ * __this, InputDevice_1__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -165703,6 +182869,7 @@ DO_APP_FUNC(0x01730C90, int32_t, List_1_UnityEngine_XR_InputDevice__FindIndex, ( DO_APP_FUNC(0x01730CE0, int32_t, List_1_UnityEngine_XR_InputDevice__FindIndex_1, (List_1_UnityEngine_XR_InputDevice_ * __this, int32_t startIndex, int32_t count, Predicate_1_UnityEngine_XR_InputDevice_ * match, MethodInfo * method)); DO_APP_FUNC(0x01730DF0, void, List_1_UnityEngine_XR_InputDevice__ForEach, (List_1_UnityEngine_XR_InputDevice_ * __this, Action_1_UnityEngine_XR_InputDevice_ * action, MethodInfo * method)); DO_APP_FUNC(0x01730EC0, List_1_T_Enumerator_UnityEngine_XR_InputDevice_, List_1_UnityEngine_XR_InputDevice__GetEnumerator, (List_1_UnityEngine_XR_InputDevice_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC5D0, List_1_UnityEngine_XR_InputDevice__GetEnumerator__MethodInfo); DO_APP_FUNC(0x01731030, int32_t, List_1_UnityEngine_XR_InputDevice__IndexOf, (List_1_UnityEngine_XR_InputDevice_ * __this, InputDevice_1 item, MethodInfo * method)); DO_APP_FUNC(0x01751460, void, List_1_UnityEngine_XR_InputDevice__Insert, (List_1_UnityEngine_XR_InputDevice_ * __this, int32_t index, InputDevice_1 item, MethodInfo * method)); DO_APP_FUNC(0x017789B0, void, List_1_UnityEngine_XR_InputDevice__InsertRange, (List_1_UnityEngine_XR_InputDevice_ * __this, int32_t index, IEnumerable_1_UnityEngine_XR_InputDevice_ * collection, MethodInfo * method)); @@ -165736,14 +182903,18 @@ DO_APP_FUNC(0x01732000, InputDevice_1__Array *, List_1_UnityEngine_XR_InputDevic DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_XR_InputDevice__TrimExcess, (List_1_UnityEngine_XR_InputDevice_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_XR_InputDevice__get_Capacity, (List_1_UnityEngine_XR_InputDevice_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_XR_InputDevice__get_Count, (List_1_UnityEngine_XR_InputDevice_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD60D0, List_1_UnityEngine_XR_InputDevice__get_Count__MethodInfo); DO_APP_FUNC(0x0172FE60, InputDevice_1, List_1_UnityEngine_XR_InputDevice__get_Item, (List_1_UnityEngine_XR_InputDevice_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD60D8, List_1_UnityEngine_XR_InputDevice__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_XR_InputDevice__set_Capacity, (List_1_UnityEngine_XR_InputDevice_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01751320, void, List_1_UnityEngine_XR_InputDevice__set_Item, (List_1_UnityEngine_XR_InputDevice_ * __this, int32_t index, InputDevice_1 value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription___ctor, (List_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7DD0, List_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription___ctor_1, (List_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription_ * __this, IEnumerable_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription___ctor_2, (List_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x01779170, void, List_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription__Add, (List_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription_ * __this, InputDeviceDescription item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA498, List_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription__Add__MethodInfo); DO_APP_FUNC(0x01779B10, void, List_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription__AddEnumerable, (List_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription_ * __this, IEnumerable_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription__AddRange, (List_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription_ * __this, IEnumerable_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription_ * collection, MethodInfo * method)); DO_APP_FUNC(0x01779290, void, List_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription__AddWithResize, (List_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription_ * __this, InputDeviceDescription item, MethodInfo * method)); @@ -165929,6 +183100,7 @@ DO_APP_FUNC(0x0172F7F0, void, List_1_Pathfinding_Int3___ctor, (List_1_Pathfindin DO_APP_FUNC(0x0172FA30, void, List_1_Pathfinding_Int3___ctor_1, (List_1_Pathfinding_Int3_ * __this, IEnumerable_1_Pathfinding_Int3_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_Pathfinding_Int3___ctor_2, (List_1_Pathfinding_Int3_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x00AA7550, void, List_1_Pathfinding_Int3__Add, (List_1_Pathfinding_Int3_ * __this, Int3 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5CF0, List_1_Pathfinding_Int3__Add__MethodInfo); DO_APP_FUNC(0x0177AF20, void, List_1_Pathfinding_Int3__AddEnumerable, (List_1_Pathfinding_Int3_ * __this, IEnumerable_1_Pathfinding_Int3_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_Pathfinding_Int3__AddRange, (List_1_Pathfinding_Int3_ * __this, IEnumerable_1_Pathfinding_Int3_ * collection, MethodInfo * method)); DO_APP_FUNC(0x01753D90, void, List_1_Pathfinding_Int3__AddWithResize, (List_1_Pathfinding_Int3_ * __this, Int3 item, MethodInfo * method)); @@ -165980,27 +183152,41 @@ DO_APP_FUNC(0x01753C40, void, List_1_Pathfinding_Int3__System_Collections_IList_ DO_APP_FUNC(0x01732000, Int3__Array *, List_1_Pathfinding_Int3__ToArray, (List_1_Pathfinding_Int3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x017320E0, void, List_1_Pathfinding_Int3__TrimExcess, (List_1_Pathfinding_Int3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_Pathfinding_Int3__get_Capacity, (List_1_Pathfinding_Int3_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB878, List_1_Pathfinding_Int3__get_Capacity__MethodInfo); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_Pathfinding_Int3__get_Count, (List_1_Pathfinding_Int3_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5A40, List_1_Pathfinding_Int3__get_Count__MethodInfo); DO_APP_FUNC(0x01753A20, Int3, List_1_Pathfinding_Int3__get_Item, (List_1_Pathfinding_Int3_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5CD8, List_1_Pathfinding_Int3__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_Pathfinding_Int3__set_Capacity, (List_1_Pathfinding_Int3_ * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB880, List_1_Pathfinding_Int3__set_Capacity__MethodInfo); DO_APP_FUNC(0x01753A80, void, List_1_Pathfinding_Int3__set_Item, (List_1_Pathfinding_Int3_ * __this, int32_t index, Int3 value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5A58, List_1_Pathfinding_Int3__set_Item__MethodInfo); DO_APP_FUNC(0x017323E0, void, List_1_System_Int32___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_System_Int32___ctor, (List_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF978, List_1_System_Int32___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_System_Int32___ctor_1, (List_1_System_Int32_ * __this, IEnumerable_1_System_Int32_ * collection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17ED8, List_1_System_Int32___ctor_1__MethodInfo); DO_APP_FUNC(0x0172F8B0, void, List_1_System_Int32___ctor_2, (List_1_System_Int32_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D201C0, List_1_System_Int32___ctor_2__MethodInfo); DO_APP_FUNC(0x003ECFF0, void, List_1_System_Int32__Add, (List_1_System_Int32_ * __this, int32_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF9B8, List_1_System_Int32__Add__MethodInfo); DO_APP_FUNC(0x0177BC90, void, List_1_System_Int32__AddEnumerable, (List_1_System_Int32_ * __this, IEnumerable_1_System_Int32_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_System_Int32__AddRange, (List_1_System_Int32_ * __this, IEnumerable_1_System_Int32_ * collection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5A18, List_1_System_Int32__AddRange__MethodInfo); DO_APP_FUNC(0x0177B250, void, List_1_System_Int32__AddWithResize, (List_1_System_Int32_ * __this, int32_t item, MethodInfo * method)); DO_APP_FUNC(0x01730510, ReadOnlyCollection_1_System_Int32_ *, List_1_System_Int32__AsReadOnly, (List_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0177B2C0, int32_t, List_1_System_Int32__BinarySearch, (List_1_System_Int32_ * __this, int32_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEAA30, List_1_System_Int32__BinarySearch__MethodInfo); DO_APP_FUNC(0x0177B340, int32_t, List_1_System_Int32__BinarySearch_1, (List_1_System_Int32_ * __this, int32_t item, IComparer_1_System_Int32_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x017493B0, int32_t, List_1_System_Int32__BinarySearch_2, (List_1_System_Int32_ * __this, int32_t index, int32_t count, int32_t item, IComparer_1_System_Int32_ * comparer, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C94398, List_1_System_Int32__BinarySearch_2__MethodInfo); DO_APP_FUNC(0x01749550, void, List_1_System_Int32__Clear, (List_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17EE0, List_1_System_Int32__Clear__MethodInfo); DO_APP_FUNC(0x01749560, bool, List_1_System_Int32__Contains, (List_1_System_Int32_ * __this, int32_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17F48, List_1_System_Int32__Contains__MethodInfo); DO_APP_FUNC(0x017308F0, void, List_1_System_Int32__CopyTo, (List_1_System_Int32_ * __this, Int32__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_System_Int32__CopyTo_1, (List_1_System_Int32_ * __this, Int32__Array * array, int32_t arrayIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF9A0, List_1_System_Int32__CopyTo_1__MethodInfo); DO_APP_FUNC(0x01730970, void, List_1_System_Int32__EnsureCapacity, (List_1_System_Int32_ * __this, int32_t min, MethodInfo * method)); DO_APP_FUNC(0x017309E0, bool, List_1_System_Int32__Exists, (List_1_System_Int32_ * __this, Predicate_1_Int32_ * match, MethodInfo * method)); DO_APP_FUNC(0x0177B3D0, int32_t, List_1_System_Int32__Find, (List_1_System_Int32_ * __this, Predicate_1_Int32_ * match, MethodInfo * method)); @@ -166009,19 +183195,27 @@ DO_APP_FUNC(0x01730C90, int32_t, List_1_System_Int32__FindIndex, (List_1_System_ DO_APP_FUNC(0x0177B5F0, int32_t, List_1_System_Int32__FindIndex_1, (List_1_System_Int32_ * __this, int32_t startIndex, int32_t count, Predicate_1_Int32_ * match, MethodInfo * method)); DO_APP_FUNC(0x01763900, void, List_1_System_Int32__ForEach, (List_1_System_Int32_ * __this, Action_1_Int32_ * action, MethodInfo * method)); DO_APP_FUNC(0x017639C0, List_1_T_Enumerator_System_Int32_, List_1_System_Int32__GetEnumerator, (List_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF798, List_1_System_Int32__GetEnumerator__MethodInfo); DO_APP_FUNC(0x01749C30, int32_t, List_1_System_Int32__IndexOf, (List_1_System_Int32_ * __this, int32_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE44A0, List_1_System_Int32__IndexOf__MethodInfo); DO_APP_FUNC(0x0177B6F0, void, List_1_System_Int32__Insert, (List_1_System_Int32_ * __this, int32_t index, int32_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1BD0, List_1_System_Int32__Insert__MethodInfo); DO_APP_FUNC(0x0177B7C0, void, List_1_System_Int32__InsertRange, (List_1_System_Int32_ * __this, int32_t index, IEnumerable_1_System_Int32_ * collection, MethodInfo * method)); DO_APP_FUNC(0x01762F60, bool, List_1_System_Int32__IsCompatibleObject, (Object * value, MethodInfo * method)); DO_APP_FUNC(0x0174A310, bool, List_1_System_Int32__Remove, (List_1_System_Int32_ * __this, int32_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4AA8, List_1_System_Int32__Remove__MethodInfo); DO_APP_FUNC(0x0177BB10, int32_t, List_1_System_Int32__RemoveAll, (List_1_System_Int32_ * __this, Predicate_1_Int32_ * match, MethodInfo * method)); DO_APP_FUNC(0x0174A620, void, List_1_System_Int32__RemoveAt, (List_1_System_Int32_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBF540, List_1_System_Int32__RemoveAt__MethodInfo); DO_APP_FUNC(0x0174A670, void, List_1_System_Int32__RemoveRange, (List_1_System_Int32_ * __this, int32_t index, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA858, List_1_System_Int32__RemoveRange__MethodInfo); DO_APP_FUNC(0x01731D00, void, List_1_System_Int32__Reverse, (List_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8608, List_1_System_Int32__Reverse__MethodInfo); DO_APP_FUNC(0x01731D60, void, List_1_System_Int32__Reverse_1, (List_1_System_Int32_ * __this, int32_t index, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x01731DD0, void, List_1_System_Int32__Sort, (List_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C943A0, List_1_System_Int32__Sort__MethodInfo); DO_APP_FUNC(0x01731F40, void, List_1_System_Int32__Sort_1, (List_1_System_Int32_ * __this, Comparison_1_Int32_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7A40, List_1_System_Int32__Sort_1__MethodInfo); DO_APP_FUNC(0x01731E40, void, List_1_System_Int32__Sort_2, (List_1_System_Int32_ * __this, IComparer_1_System_Int32_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01731EC0, void, List_1_System_Int32__Sort_3, (List_1_System_Int32_ * __this, int32_t index, int32_t count, IComparer_1_System_Int32_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, List_1_System_Int32__System_Collections_Generic_ICollection_T__get_IsReadOnly, (List_1_System_Int32_ * __this, MethodInfo * method)); @@ -166040,12 +183234,18 @@ DO_APP_FUNC(0x0041AF00, bool, List_1_System_Int32__System_Collections_IList_get_ DO_APP_FUNC(0x01763030, Object *, List_1_System_Int32__System_Collections_IList_get_Item, (List_1_System_Int32_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x017630A0, void, List_1_System_Int32__System_Collections_IList_set_Item, (List_1_System_Int32_ * __this, int32_t index, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01732000, Int32__Array *, List_1_System_Int32__ToArray, (List_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1BB8, List_1_System_Int32__ToArray__MethodInfo); DO_APP_FUNC(0x017320E0, void, List_1_System_Int32__TrimExcess, (List_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_System_Int32__get_Capacity, (List_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB888, List_1_System_Int32__get_Capacity__MethodInfo); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_System_Int32__get_Count, (List_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF950, List_1_System_Int32__get_Count__MethodInfo); DO_APP_FUNC(0x01762EE0, int32_t, List_1_System_Int32__get_Item, (List_1_System_Int32_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF838, List_1_System_Int32__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_System_Int32__set_Capacity, (List_1_System_Int32_ * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB860, List_1_System_Int32__set_Capacity__MethodInfo); DO_APP_FUNC(0x01762F20, void, List_1_System_Int32__set_Item, (List_1_System_Int32_ * __this, int32_t index, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4AD8, List_1_System_Int32__set_Item__MethodInfo); DO_APP_FUNC(0x017323E0, void, List_1_System_Int32Enum___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_System_Int32Enum___ctor, (List_1_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0172FA30, void, List_1_System_Int32Enum___ctor_1, (List_1_System_Int32Enum_ * __this, IEnumerable_1_System_Int32Enum_ * collection, MethodInfo * method)); @@ -166168,9 +183368,12 @@ DO_APP_FUNC(0x0172FC90, void, List_1_System_Int64__set_Capacity, (List_1_System_ DO_APP_FUNC(0x01748ED0, void, List_1_System_Int64__set_Item, (List_1_System_Int64_ * __this, int32_t index, int64_t value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_Pathfinding_ClipperLib_IntPoint___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_Pathfinding_ClipperLib_IntPoint___ctor, (List_1_Pathfinding_ClipperLib_IntPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC3A8, List_1_Pathfinding_ClipperLib_IntPoint___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_Pathfinding_ClipperLib_IntPoint___ctor_1, (List_1_Pathfinding_ClipperLib_IntPoint_ * __this, IEnumerable_1_Pathfinding_ClipperLib_IntPoint_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_Pathfinding_ClipperLib_IntPoint___ctor_2, (List_1_Pathfinding_ClipperLib_IntPoint_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC098, List_1_Pathfinding_ClipperLib_IntPoint___ctor_2__MethodInfo); DO_APP_FUNC(0x01751370, void, List_1_Pathfinding_ClipperLib_IntPoint__Add, (List_1_Pathfinding_ClipperLib_IntPoint_ * __this, IntPoint item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBBA38, List_1_Pathfinding_ClipperLib_IntPoint__Add__MethodInfo); DO_APP_FUNC(0x0177D6F0, void, List_1_Pathfinding_ClipperLib_IntPoint__AddEnumerable, (List_1_Pathfinding_ClipperLib_IntPoint_ * __this, IEnumerable_1_Pathfinding_ClipperLib_IntPoint_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_Pathfinding_ClipperLib_IntPoint__AddRange, (List_1_Pathfinding_ClipperLib_IntPoint_ * __this, IEnumerable_1_Pathfinding_ClipperLib_IntPoint_ * collection, MethodInfo * method)); DO_APP_FUNC(0x017513F0, void, List_1_Pathfinding_ClipperLib_IntPoint__AddWithResize, (List_1_Pathfinding_ClipperLib_IntPoint_ * __this, IntPoint item, MethodInfo * method)); @@ -166179,6 +183382,7 @@ DO_APP_FUNC(0x01730630, int32_t, List_1_Pathfinding_ClipperLib_IntPoint__BinaryS DO_APP_FUNC(0x017306C0, int32_t, List_1_Pathfinding_ClipperLib_IntPoint__BinarySearch_1, (List_1_Pathfinding_ClipperLib_IntPoint_ * __this, IntPoint item, IComparer_1_Pathfinding_ClipperLib_IntPoint_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01730590, int32_t, List_1_Pathfinding_ClipperLib_IntPoint__BinarySearch_2, (List_1_Pathfinding_ClipperLib_IntPoint_ * __this, int32_t index, int32_t count, IntPoint item, IComparer_1_Pathfinding_ClipperLib_IntPoint_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01749550, void, List_1_Pathfinding_ClipperLib_IntPoint__Clear, (List_1_Pathfinding_ClipperLib_IntPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBBA58, List_1_Pathfinding_ClipperLib_IntPoint__Clear__MethodInfo); DO_APP_FUNC(0x01730760, bool, List_1_Pathfinding_ClipperLib_IntPoint__Contains, (List_1_Pathfinding_ClipperLib_IntPoint_ * __this, IntPoint item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_Pathfinding_ClipperLib_IntPoint__CopyTo, (List_1_Pathfinding_ClipperLib_IntPoint_ * __this, IntPoint__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_Pathfinding_ClipperLib_IntPoint__CopyTo_1, (List_1_Pathfinding_ClipperLib_IntPoint_ * __this, IntPoint__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -166223,14 +183427,19 @@ DO_APP_FUNC(0x01732000, IntPoint__Array *, List_1_Pathfinding_ClipperLib_IntPoin DO_APP_FUNC(0x017320E0, void, List_1_Pathfinding_ClipperLib_IntPoint__TrimExcess, (List_1_Pathfinding_ClipperLib_IntPoint_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_Pathfinding_ClipperLib_IntPoint__get_Capacity, (List_1_Pathfinding_ClipperLib_IntPoint_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_Pathfinding_ClipperLib_IntPoint__get_Count, (List_1_Pathfinding_ClipperLib_IntPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB9F0, List_1_Pathfinding_ClipperLib_IntPoint__get_Count__MethodInfo); DO_APP_FUNC(0x0172FE60, IntPoint, List_1_Pathfinding_ClipperLib_IntPoint__get_Item, (List_1_Pathfinding_ClipperLib_IntPoint_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB9A8, List_1_Pathfinding_ClipperLib_IntPoint__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_Pathfinding_ClipperLib_IntPoint__set_Capacity, (List_1_Pathfinding_ClipperLib_IntPoint_ * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC070, List_1_Pathfinding_ClipperLib_IntPoint__set_Capacity__MethodInfo); DO_APP_FUNC(0x01751320, void, List_1_Pathfinding_ClipperLib_IntPoint__set_Item, (List_1_Pathfinding_ClipperLib_IntPoint_ * __this, int32_t index, IntPoint value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_Pathfinding_IntRect___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_Pathfinding_IntRect___ctor, (List_1_Pathfinding_IntRect_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA470, List_1_Pathfinding_IntRect___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_Pathfinding_IntRect___ctor_1, (List_1_Pathfinding_IntRect_ * __this, IEnumerable_1_Pathfinding_IntRect_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_Pathfinding_IntRect___ctor_2, (List_1_Pathfinding_IntRect_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x01751370, void, List_1_Pathfinding_IntRect__Add, (List_1_Pathfinding_IntRect_ * __this, IntRect item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA458, List_1_Pathfinding_IntRect__Add__MethodInfo); DO_APP_FUNC(0x0177DDF0, void, List_1_Pathfinding_IntRect__AddEnumerable, (List_1_Pathfinding_IntRect_ * __this, IEnumerable_1_Pathfinding_IntRect_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_Pathfinding_IntRect__AddRange, (List_1_Pathfinding_IntRect_ * __this, IEnumerable_1_Pathfinding_IntRect_ * collection, MethodInfo * method)); DO_APP_FUNC(0x017513F0, void, List_1_Pathfinding_IntRect__AddWithResize, (List_1_Pathfinding_IntRect_ * __this, IntRect item, MethodInfo * method)); @@ -166239,6 +183448,7 @@ DO_APP_FUNC(0x01730630, int32_t, List_1_Pathfinding_IntRect__BinarySearch, (List DO_APP_FUNC(0x017306C0, int32_t, List_1_Pathfinding_IntRect__BinarySearch_1, (List_1_Pathfinding_IntRect_ * __this, IntRect item, IComparer_1_Pathfinding_IntRect_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01730590, int32_t, List_1_Pathfinding_IntRect__BinarySearch_2, (List_1_Pathfinding_IntRect_ * __this, int32_t index, int32_t count, IntRect item, IComparer_1_Pathfinding_IntRect_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01749550, void, List_1_Pathfinding_IntRect__Clear, (List_1_Pathfinding_IntRect_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA4B8, List_1_Pathfinding_IntRect__Clear__MethodInfo); DO_APP_FUNC(0x01730760, bool, List_1_Pathfinding_IntRect__Contains, (List_1_Pathfinding_IntRect_ * __this, IntRect item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_Pathfinding_IntRect__CopyTo, (List_1_Pathfinding_IntRect_ * __this, IntRect__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_Pathfinding_IntRect__CopyTo_1, (List_1_Pathfinding_IntRect_ * __this, IntRect__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -166283,12 +183493,15 @@ DO_APP_FUNC(0x01732000, IntRect__Array *, List_1_Pathfinding_IntRect__ToArray, ( DO_APP_FUNC(0x017320E0, void, List_1_Pathfinding_IntRect__TrimExcess, (List_1_Pathfinding_IntRect_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_Pathfinding_IntRect__get_Capacity, (List_1_Pathfinding_IntRect_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_Pathfinding_IntRect__get_Count, (List_1_Pathfinding_IntRect_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA4B0, List_1_Pathfinding_IntRect__get_Count__MethodInfo); DO_APP_FUNC(0x0172FE60, IntRect, List_1_Pathfinding_IntRect__get_Item, (List_1_Pathfinding_IntRect_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA478, List_1_Pathfinding_IntRect__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_Pathfinding_IntRect__set_Capacity, (List_1_Pathfinding_IntRect_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01751320, void, List_1_Pathfinding_IntRect__set_Item, (List_1_Pathfinding_IntRect_ * __this, int32_t index, IntRect value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_InputSystem_Utilities_InternedString___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_InputSystem_Utilities_InternedString___ctor, (List_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_InputSystem_Utilities_InternedString___ctor_1, (List_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, IEnumerable_1_UnityEngine_InputSystem_Utilities_InternedString_ * collection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7E40, List_1_UnityEngine_InputSystem_Utilities_InternedString___ctor_1__MethodInfo); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_InputSystem_Utilities_InternedString___ctor_2, (List_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x017301E0, void, List_1_UnityEngine_InputSystem_Utilities_InternedString__Add, (List_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, InternedString item, MethodInfo * method)); DO_APP_FUNC(0x0177E490, void, List_1_UnityEngine_InputSystem_Utilities_InternedString__AddEnumerable, (List_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, IEnumerable_1_UnityEngine_InputSystem_Utilities_InternedString_ * enumerable, MethodInfo * method)); @@ -166310,6 +183523,7 @@ DO_APP_FUNC(0x01730C90, int32_t, List_1_UnityEngine_InputSystem_Utilities_Intern DO_APP_FUNC(0x01730CE0, int32_t, List_1_UnityEngine_InputSystem_Utilities_InternedString__FindIndex_1, (List_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, int32_t startIndex, int32_t count, Predicate_1_UnityEngine_InputSystem_Utilities_InternedString_ * match, MethodInfo * method)); DO_APP_FUNC(0x01730DF0, void, List_1_UnityEngine_InputSystem_Utilities_InternedString__ForEach, (List_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, Action_1_UnityEngine_InputSystem_Utilities_InternedString_ * action, MethodInfo * method)); DO_APP_FUNC(0x01730EC0, List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_, List_1_UnityEngine_InputSystem_Utilities_InternedString__GetEnumerator, (List_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7E28, List_1_UnityEngine_InputSystem_Utilities_InternedString__GetEnumerator__MethodInfo); DO_APP_FUNC(0x01731030, int32_t, List_1_UnityEngine_InputSystem_Utilities_InternedString__IndexOf, (List_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, InternedString item, MethodInfo * method)); DO_APP_FUNC(0x017311C0, void, List_1_UnityEngine_InputSystem_Utilities_InternedString__Insert, (List_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, int32_t index, InternedString item, MethodInfo * method)); DO_APP_FUNC(0x0177E130, void, List_1_UnityEngine_InputSystem_Utilities_InternedString__InsertRange, (List_1_UnityEngine_InputSystem_Utilities_InternedString_ * __this, int32_t index, IEnumerable_1_UnityEngine_InputSystem_Utilities_InternedString_ * collection, MethodInfo * method)); @@ -166477,9 +183691,11 @@ DO_APP_FUNC(0x01772860, void, List_1_UnityEngine_Timeline_IntervalTreeNode__set_ DO_APP_FUNC_METHODINFO(0x03C8B9A8, List_1_UnityEngine_Timeline_IntervalTreeNode__set_Item__MethodInfo); DO_APP_FUNC(0x017323E0, void, List_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount___ctor, (List_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13CE8, List_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount___ctor_1, (List_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount_ * __this, IEnumerable_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount___ctor_2, (List_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x0174B8D0, void, List_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount__Add, (List_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount_ * __this, ItemDefinitionAmount item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13D08, List_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount__Add__MethodInfo); DO_APP_FUNC(0x0177F9E0, void, List_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount__AddEnumerable, (List_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount_ * __this, IEnumerable_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount__AddRange, (List_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount_ * __this, IEnumerable_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0174B9C0, void, List_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount__AddWithResize, (List_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount_ * __this, ItemDefinitionAmount item, MethodInfo * method)); @@ -166529,17 +183745,21 @@ DO_APP_FUNC(0x0041AF00, bool, List_1_Opsive_UltimateCharacterController_Inventor DO_APP_FUNC(0x01744D40, Object *, List_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount__System_Collections_IList_get_Item, (List_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01744DC0, void, List_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount__System_Collections_IList_set_Item, (List_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount_ * __this, int32_t index, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01732000, ItemDefinitionAmount__Array *, List_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount__ToArray, (List_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13CF8, List_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount__ToArray__MethodInfo); DO_APP_FUNC(0x017320E0, void, List_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount__TrimExcess, (List_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount__get_Capacity, (List_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount__get_Count, (List_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D13CD8, List_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount__get_Count__MethodInfo); DO_APP_FUNC(0x01744B50, ItemDefinitionAmount, List_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount__get_Item, (List_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x0172FC90, void, List_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount__set_Capacity, (List_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x0174B820, void, List_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount__set_Item, (List_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount_ * __this, int32_t index, ItemDefinitionAmount value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_KickedPlayer___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_KickedPlayer___ctor, (List_1_KickedPlayer_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6398, List_1_KickedPlayer___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_KickedPlayer___ctor_1, (List_1_KickedPlayer_ * __this, IEnumerable_1_KickedPlayer_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_KickedPlayer___ctor_2, (List_1_KickedPlayer_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x01746CB0, void, List_1_KickedPlayer__Add, (List_1_KickedPlayer_ * __this, KickedPlayer item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1DA40, List_1_KickedPlayer__Add__MethodInfo); DO_APP_FUNC(0x017800F0, void, List_1_KickedPlayer__AddEnumerable, (List_1_KickedPlayer_ * __this, IEnumerable_1_KickedPlayer_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_KickedPlayer__AddRange, (List_1_KickedPlayer_ * __this, IEnumerable_1_KickedPlayer_ * collection, MethodInfo * method)); DO_APP_FUNC(0x01746D90, void, List_1_KickedPlayer__AddWithResize, (List_1_KickedPlayer_ * __this, KickedPlayer item, MethodInfo * method)); @@ -166548,6 +183768,7 @@ DO_APP_FUNC(0x01730630, int32_t, List_1_KickedPlayer__BinarySearch, (List_1_Kick DO_APP_FUNC(0x017306C0, int32_t, List_1_KickedPlayer__BinarySearch_1, (List_1_KickedPlayer_ * __this, KickedPlayer item, IComparer_1_KickedPlayer_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01730590, int32_t, List_1_KickedPlayer__BinarySearch_2, (List_1_KickedPlayer_ * __this, int32_t index, int32_t count, KickedPlayer item, IComparer_1_KickedPlayer_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x003CB200, void, List_1_KickedPlayer__Clear, (List_1_KickedPlayer_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D9A0, List_1_KickedPlayer__Clear__MethodInfo); DO_APP_FUNC(0x01730760, bool, List_1_KickedPlayer__Contains, (List_1_KickedPlayer_ * __this, KickedPlayer item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_KickedPlayer__CopyTo, (List_1_KickedPlayer_ * __this, KickedPlayer__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_KickedPlayer__CopyTo_1, (List_1_KickedPlayer_ * __this, KickedPlayer__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -166597,6 +183818,7 @@ DO_APP_FUNC(0x0172FC90, void, List_1_KickedPlayer__set_Capacity, (List_1_KickedP DO_APP_FUNC(0x01746C10, void, List_1_KickedPlayer__set_Item, (List_1_KickedPlayer_ * __this, int32_t index, KickedPlayer value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_LayerMask___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_LayerMask___ctor, (List_1_UnityEngine_LayerMask_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE3708, List_1_UnityEngine_LayerMask___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_LayerMask___ctor_1, (List_1_UnityEngine_LayerMask_ * __this, IEnumerable_1_UnityEngine_LayerMask_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_LayerMask___ctor_2, (List_1_UnityEngine_LayerMask_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x003ECFF0, void, List_1_UnityEngine_LayerMask__Add, (List_1_UnityEngine_LayerMask_ * __this, LayerMask item, MethodInfo * method)); @@ -166657,9 +183879,11 @@ DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_LayerMask__set_Capacity, (List_ DO_APP_FUNC(0x01762F20, void, List_1_UnityEngine_LayerMask__set_Item, (List_1_UnityEngine_LayerMask_ * __this, int32_t index, LayerMask value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_UIElements_ManipulatorActivationFilter___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_UIElements_ManipulatorActivationFilter___ctor, (List_1_UnityEngine_UIElements_ManipulatorActivationFilter_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD27C8, List_1_UnityEngine_UIElements_ManipulatorActivationFilter___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_UIElements_ManipulatorActivationFilter___ctor_1, (List_1_UnityEngine_UIElements_ManipulatorActivationFilter_ * __this, IEnumerable_1_UnityEngine_UIElements_ManipulatorActivationFilter_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_UIElements_ManipulatorActivationFilter___ctor_2, (List_1_UnityEngine_UIElements_ManipulatorActivationFilter_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x00AA7550, void, List_1_UnityEngine_UIElements_ManipulatorActivationFilter__Add, (List_1_UnityEngine_UIElements_ManipulatorActivationFilter_ * __this, ManipulatorActivationFilter item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3B40, List_1_UnityEngine_UIElements_ManipulatorActivationFilter__Add__MethodInfo); DO_APP_FUNC(0x01780E70, void, List_1_UnityEngine_UIElements_ManipulatorActivationFilter__AddEnumerable, (List_1_UnityEngine_UIElements_ManipulatorActivationFilter_ * __this, IEnumerable_1_UnityEngine_UIElements_ManipulatorActivationFilter_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_UnityEngine_UIElements_ManipulatorActivationFilter__AddRange, (List_1_UnityEngine_UIElements_ManipulatorActivationFilter_ * __this, IEnumerable_1_UnityEngine_UIElements_ManipulatorActivationFilter_ * collection, MethodInfo * method)); DO_APP_FUNC(0x01753D90, void, List_1_UnityEngine_UIElements_ManipulatorActivationFilter__AddWithResize, (List_1_UnityEngine_UIElements_ManipulatorActivationFilter_ * __this, ManipulatorActivationFilter item, MethodInfo * method)); @@ -166679,6 +183903,7 @@ DO_APP_FUNC(0x01730C90, int32_t, List_1_UnityEngine_UIElements_ManipulatorActiva DO_APP_FUNC(0x017545D0, int32_t, List_1_UnityEngine_UIElements_ManipulatorActivationFilter__FindIndex_1, (List_1_UnityEngine_UIElements_ManipulatorActivationFilter_ * __this, int32_t startIndex, int32_t count, Predicate_1_UnityEngine_UIElements_ManipulatorActivationFilter_ * match, MethodInfo * method)); DO_APP_FUNC(0x017546F0, void, List_1_UnityEngine_UIElements_ManipulatorActivationFilter__ForEach, (List_1_UnityEngine_UIElements_ManipulatorActivationFilter_ * __this, Action_1_UnityEngine_UIElements_ManipulatorActivationFilter_ * action, MethodInfo * method)); DO_APP_FUNC(0x017547C0, List_1_T_Enumerator_UnityEngine_UIElements_ManipulatorActivationFilter_, List_1_UnityEngine_UIElements_ManipulatorActivationFilter__GetEnumerator, (List_1_UnityEngine_UIElements_ManipulatorActivationFilter_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD27E0, List_1_UnityEngine_UIElements_ManipulatorActivationFilter__GetEnumerator__MethodInfo); DO_APP_FUNC(0x01754930, int32_t, List_1_UnityEngine_UIElements_ManipulatorActivationFilter__IndexOf, (List_1_UnityEngine_UIElements_ManipulatorActivationFilter_ * __this, ManipulatorActivationFilter item, MethodInfo * method)); DO_APP_FUNC(0x01754AD0, void, List_1_UnityEngine_UIElements_ManipulatorActivationFilter__Insert, (List_1_UnityEngine_UIElements_ManipulatorActivationFilter_ * __this, int32_t index, ManipulatorActivationFilter item, MethodInfo * method)); DO_APP_FUNC(0x01780AA0, void, List_1_UnityEngine_UIElements_ManipulatorActivationFilter__InsertRange, (List_1_UnityEngine_UIElements_ManipulatorActivationFilter_ * __this, int32_t index, IEnumerable_1_UnityEngine_UIElements_ManipulatorActivationFilter_ * collection, MethodInfo * method)); @@ -166717,9 +183942,11 @@ DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_UIElements_ManipulatorActivatio DO_APP_FUNC(0x01753A80, void, List_1_UnityEngine_UIElements_ManipulatorActivationFilter__set_Item, (List_1_UnityEngine_UIElements_ManipulatorActivationFilter_ * __this, int32_t index, ManipulatorActivationFilter value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_Matrix4x4___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_Matrix4x4___ctor, (List_1_UnityEngine_Matrix4x4_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D210F8, List_1_UnityEngine_Matrix4x4___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_Matrix4x4___ctor_1, (List_1_UnityEngine_Matrix4x4_ * __this, IEnumerable_1_UnityEngine_Matrix4x4_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_Matrix4x4___ctor_2, (List_1_UnityEngine_Matrix4x4_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x01781550, void, List_1_UnityEngine_Matrix4x4__Add, (List_1_UnityEngine_Matrix4x4_ * __this, Matrix4x4 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21108, List_1_UnityEngine_Matrix4x4__Add__MethodInfo); DO_APP_FUNC(0x01782EE0, void, List_1_UnityEngine_Matrix4x4__AddEnumerable, (List_1_UnityEngine_Matrix4x4_ * __this, IEnumerable_1_UnityEngine_Matrix4x4_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_UnityEngine_Matrix4x4__AddRange, (List_1_UnityEngine_Matrix4x4_ * __this, IEnumerable_1_UnityEngine_Matrix4x4_ * collection, MethodInfo * method)); DO_APP_FUNC(0x01781610, void, List_1_UnityEngine_Matrix4x4__AddWithResize, (List_1_UnityEngine_Matrix4x4_ * __this, Matrix4x4 item, MethodInfo * method)); @@ -166728,6 +183955,7 @@ DO_APP_FUNC(0x01781900, int32_t, List_1_UnityEngine_Matrix4x4__BinarySearch, (Li DO_APP_FUNC(0x017819B0, int32_t, List_1_UnityEngine_Matrix4x4__BinarySearch_1, (List_1_UnityEngine_Matrix4x4_ * __this, Matrix4x4 item, IComparer_1_UnityEngine_Matrix4x4_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01781830, int32_t, List_1_UnityEngine_Matrix4x4__BinarySearch_2, (List_1_UnityEngine_Matrix4x4_ * __this, int32_t index, int32_t count, Matrix4x4 item, IComparer_1_UnityEngine_Matrix4x4_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01749550, void, List_1_UnityEngine_Matrix4x4__Clear, (List_1_UnityEngine_Matrix4x4_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03E30, List_1_UnityEngine_Matrix4x4__Clear__MethodInfo); DO_APP_FUNC(0x01781A60, bool, List_1_UnityEngine_Matrix4x4__Contains, (List_1_UnityEngine_Matrix4x4_ * __this, Matrix4x4 item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_UnityEngine_Matrix4x4__CopyTo, (List_1_UnityEngine_Matrix4x4_ * __this, Matrix4x4__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_UnityEngine_Matrix4x4__CopyTo_1, (List_1_UnityEngine_Matrix4x4_ * __this, Matrix4x4__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -166769,6 +183997,7 @@ DO_APP_FUNC(0x0041AF00, bool, List_1_UnityEngine_Matrix4x4__System_Collections_I DO_APP_FUNC(0x01781350, Object *, List_1_UnityEngine_Matrix4x4__System_Collections_IList_get_Item, (List_1_UnityEngine_Matrix4x4_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x017813F0, void, List_1_UnityEngine_Matrix4x4__System_Collections_IList_set_Item, (List_1_UnityEngine_Matrix4x4_ * __this, int32_t index, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01732000, Matrix4x4__Array *, List_1_UnityEngine_Matrix4x4__ToArray, (List_1_UnityEngine_Matrix4x4_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21100, List_1_UnityEngine_Matrix4x4__ToArray__MethodInfo); DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_Matrix4x4__TrimExcess, (List_1_UnityEngine_Matrix4x4_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_Matrix4x4__get_Capacity, (List_1_UnityEngine_Matrix4x4_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_Matrix4x4__get_Count, (List_1_UnityEngine_Matrix4x4_ * __this, MethodInfo * method)); @@ -166778,9 +184007,11 @@ DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_Matrix4x4__set_Capacity, (List_ DO_APP_FUNC(0x01781200, void, List_1_UnityEngine_Matrix4x4__set_Item, (List_1_UnityEngine_Matrix4x4_ * __this, int32_t index, Matrix4x4 value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_InputSystem_Utilities_NameAndParameters___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_InputSystem_Utilities_NameAndParameters___ctor, (List_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5A88, List_1_UnityEngine_InputSystem_Utilities_NameAndParameters___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_InputSystem_Utilities_NameAndParameters___ctor_1, (List_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ * __this, IEnumerable_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_InputSystem_Utilities_NameAndParameters___ctor_2, (List_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x0174B8D0, void, List_1_UnityEngine_InputSystem_Utilities_NameAndParameters__Add, (List_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ * __this, NameAndParameters item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5AD8, List_1_UnityEngine_InputSystem_Utilities_NameAndParameters__Add__MethodInfo); DO_APP_FUNC(0x01783620, void, List_1_UnityEngine_InputSystem_Utilities_NameAndParameters__AddEnumerable, (List_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ * __this, IEnumerable_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_UnityEngine_InputSystem_Utilities_NameAndParameters__AddRange, (List_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ * __this, IEnumerable_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0174B9C0, void, List_1_UnityEngine_InputSystem_Utilities_NameAndParameters__AddWithResize, (List_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ * __this, NameAndParameters item, MethodInfo * method)); @@ -166789,6 +184020,7 @@ DO_APP_FUNC(0x01745310, int32_t, List_1_UnityEngine_InputSystem_Utilities_NameAn DO_APP_FUNC(0x017453B0, int32_t, List_1_UnityEngine_InputSystem_Utilities_NameAndParameters__BinarySearch_1, (List_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ * __this, NameAndParameters item, IComparer_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01745250, int32_t, List_1_UnityEngine_InputSystem_Utilities_NameAndParameters__BinarySearch_2, (List_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ * __this, int32_t index, int32_t count, NameAndParameters item, IComparer_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x003CB200, void, List_1_UnityEngine_InputSystem_Utilities_NameAndParameters__Clear, (List_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5A90, List_1_UnityEngine_InputSystem_Utilities_NameAndParameters__Clear__MethodInfo); DO_APP_FUNC(0x01745450, bool, List_1_UnityEngine_InputSystem_Utilities_NameAndParameters__Contains, (List_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ * __this, NameAndParameters item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_UnityEngine_InputSystem_Utilities_NameAndParameters__CopyTo, (List_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ * __this, NameAndParameters__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_UnityEngine_InputSystem_Utilities_NameAndParameters__CopyTo_1, (List_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ * __this, NameAndParameters__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -166833,7 +184065,9 @@ DO_APP_FUNC(0x01732000, NameAndParameters__Array *, List_1_UnityEngine_InputSyst DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_InputSystem_Utilities_NameAndParameters__TrimExcess, (List_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_InputSystem_Utilities_NameAndParameters__get_Capacity, (List_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_InputSystem_Utilities_NameAndParameters__get_Count, (List_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB26E8, List_1_UnityEngine_InputSystem_Utilities_NameAndParameters__get_Count__MethodInfo); DO_APP_FUNC(0x01744B50, NameAndParameters, List_1_UnityEngine_InputSystem_Utilities_NameAndParameters__get_Item, (List_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB26C0, List_1_UnityEngine_InputSystem_Utilities_NameAndParameters__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_InputSystem_Utilities_NameAndParameters__set_Capacity, (List_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x0174B820, void, List_1_UnityEngine_InputSystem_Utilities_NameAndParameters__set_Item, (List_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ * __this, int32_t index, NameAndParameters value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_InputSystem_Utilities_NamedValue___cctor, (MethodInfo * method)); @@ -166898,9 +184132,11 @@ DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_InputSystem_Utilities_NamedValu DO_APP_FUNC(0x0174B820, void, List_1_UnityEngine_InputSystem_Utilities_NamedValue__set_Item, (List_1_UnityEngine_InputSystem_Utilities_NamedValue_ * __this, int32_t index, NamedValue value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_Photon_Bolt_NetworkPropertyInfo___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_Photon_Bolt_NetworkPropertyInfo___ctor, (List_1_Photon_Bolt_NetworkPropertyInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC26C0, List_1_Photon_Bolt_NetworkPropertyInfo___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_Photon_Bolt_NetworkPropertyInfo___ctor_1, (List_1_Photon_Bolt_NetworkPropertyInfo_ * __this, IEnumerable_1_Photon_Bolt_NetworkPropertyInfo_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_Photon_Bolt_NetworkPropertyInfo___ctor_2, (List_1_Photon_Bolt_NetworkPropertyInfo_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x008631B0, void, List_1_Photon_Bolt_NetworkPropertyInfo__Add, (List_1_Photon_Bolt_NetworkPropertyInfo_ * __this, NetworkPropertyInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2600, List_1_Photon_Bolt_NetworkPropertyInfo__Add__MethodInfo); DO_APP_FUNC(0x01784460, void, List_1_Photon_Bolt_NetworkPropertyInfo__AddEnumerable, (List_1_Photon_Bolt_NetworkPropertyInfo_ * __this, IEnumerable_1_Photon_Bolt_NetworkPropertyInfo_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_Photon_Bolt_NetworkPropertyInfo__AddRange, (List_1_Photon_Bolt_NetworkPropertyInfo_ * __this, IEnumerable_1_Photon_Bolt_NetworkPropertyInfo_ * collection, MethodInfo * method)); DO_APP_FUNC(0x017421F0, void, List_1_Photon_Bolt_NetworkPropertyInfo__AddWithResize, (List_1_Photon_Bolt_NetworkPropertyInfo_ * __this, NetworkPropertyInfo item, MethodInfo * method)); @@ -166953,14 +184189,20 @@ DO_APP_FUNC(0x01732000, NetworkPropertyInfo__Array *, List_1_Photon_Bolt_Network DO_APP_FUNC(0x017320E0, void, List_1_Photon_Bolt_NetworkPropertyInfo__TrimExcess, (List_1_Photon_Bolt_NetworkPropertyInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_Photon_Bolt_NetworkPropertyInfo__get_Capacity, (List_1_Photon_Bolt_NetworkPropertyInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_Photon_Bolt_NetworkPropertyInfo__get_Count, (List_1_Photon_Bolt_NetworkPropertyInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2460, List_1_Photon_Bolt_NetworkPropertyInfo__get_Count__MethodInfo); DO_APP_FUNC(0x01741E50, NetworkPropertyInfo, List_1_Photon_Bolt_NetworkPropertyInfo__get_Item, (List_1_Photon_Bolt_NetworkPropertyInfo_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2450, List_1_Photon_Bolt_NetworkPropertyInfo__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_Photon_Bolt_NetworkPropertyInfo__set_Capacity, (List_1_Photon_Bolt_NetworkPropertyInfo_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01741EA0, void, List_1_Photon_Bolt_NetworkPropertyInfo__set_Item, (List_1_Photon_Bolt_NetworkPropertyInfo_ * __this, int32_t index, NetworkPropertyInfo value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_System_Object___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_System_Object___ctor, (List_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4D90, List_1_System_Object___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_System_Object___ctor_1, (List_1_System_Object_ * __this, IEnumerable_1_System_Object_ * collection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD4D8, List_1_System_Object___ctor_1__MethodInfo); DO_APP_FUNC(0x0172F8B0, void, List_1_System_Object___ctor_2, (List_1_System_Object_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC1F0, List_1_System_Object___ctor_2__MethodInfo); DO_APP_FUNC(0x003CB230, void, List_1_System_Object__Add, (List_1_System_Object_ * __this, Object * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4DB8, List_1_System_Object__Add__MethodInfo); DO_APP_FUNC(0x01785570, void, List_1_System_Object__AddEnumerable, (List_1_System_Object_ * __this, IEnumerable_1_System_Object_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_System_Object__AddRange, (List_1_System_Object_ * __this, IEnumerable_1_System_Object_ * collection, MethodInfo * method)); DO_APP_FUNC(0x01784940, void, List_1_System_Object__AddWithResize, (List_1_System_Object_ * __this, Object * item, MethodInfo * method)); @@ -166969,9 +184211,11 @@ DO_APP_FUNC(0x0177C650, int32_t, List_1_System_Object__BinarySearch, (List_1_Sys DO_APP_FUNC(0x0177C6D0, int32_t, List_1_System_Object__BinarySearch_1, (List_1_System_Object_ * __this, Object * item, IComparer_1_System_Object_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x017493B0, int32_t, List_1_System_Object__BinarySearch_2, (List_1_System_Object_ * __this, int32_t index, int32_t count, Object * item, IComparer_1_System_Object_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x003CB200, void, List_1_System_Object__Clear, (List_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5D30, List_1_System_Object__Clear__MethodInfo); DO_APP_FUNC(0x01749560, bool, List_1_System_Object__Contains, (List_1_System_Object_ * __this, Object * item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_System_Object__CopyTo, (List_1_System_Object_ * __this, Object__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_System_Object__CopyTo_1, (List_1_System_Object_ * __this, Object__Array * array, int32_t arrayIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08C60, List_1_System_Object__CopyTo_1__MethodInfo); DO_APP_FUNC(0x01730970, void, List_1_System_Object__EnsureCapacity, (List_1_System_Object_ * __this, int32_t min, MethodInfo * method)); DO_APP_FUNC(0x017309E0, bool, List_1_System_Object__Exists, (List_1_System_Object_ * __this, Predicate_1_Object_ * match, MethodInfo * method)); DO_APP_FUNC(0x0177C760, Object *, List_1_System_Object__Find, (List_1_System_Object_ * __this, Predicate_1_Object_ * match, MethodInfo * method)); @@ -166985,8 +184229,10 @@ DO_APP_FUNC(0x01784D80, void, List_1_System_Object__Insert, (List_1_System_Objec DO_APP_FUNC(0x01784F80, void, List_1_System_Object__InsertRange, (List_1_System_Object_ * __this, int32_t index, IEnumerable_1_System_Object_ * collection, MethodInfo * method)); DO_APP_FUNC(0x017847A0, bool, List_1_System_Object__IsCompatibleObject, (Object * value, MethodInfo * method)); DO_APP_FUNC(0x0174A310, bool, List_1_System_Object__Remove, (List_1_System_Object_ * __this, Object * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0618, List_1_System_Object__Remove__MethodInfo); DO_APP_FUNC(0x017853E0, int32_t, List_1_System_Object__RemoveAll, (List_1_System_Object_ * __this, Predicate_1_Object_ * match, MethodInfo * method)); DO_APP_FUNC(0x0175C560, void, List_1_System_Object__RemoveAt, (List_1_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6B18, List_1_System_Object__RemoveAt__MethodInfo); DO_APP_FUNC(0x01731C60, void, List_1_System_Object__RemoveRange, (List_1_System_Object_ * __this, int32_t index, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x01731D00, void, List_1_System_Object__Reverse, (List_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01731D60, void, List_1_System_Object__Reverse_1, (List_1_System_Object_ * __this, int32_t index, int32_t count, MethodInfo * method)); @@ -167010,14 +184256,18 @@ DO_APP_FUNC(0x0041AF00, bool, List_1_System_Object__System_Collections_IList_get DO_APP_FUNC(0x015AF0D0, Object *, List_1_System_Object__System_Collections_IList_get_Item, (List_1_System_Object_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01784800, void, List_1_System_Object__System_Collections_IList_set_Item, (List_1_System_Object_ * __this, int32_t index, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01732000, Object__Array *, List_1_System_Object__ToArray, (List_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4DA8, List_1_System_Object__ToArray__MethodInfo); DO_APP_FUNC(0x017320E0, void, List_1_System_Object__TrimExcess, (List_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_System_Object__get_Capacity, (List_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_System_Object__get_Count, (List_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6B48, List_1_System_Object__get_Count__MethodInfo); DO_APP_FUNC(0x01748E90, Object *, List_1_System_Object__get_Item, (List_1_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6B28, List_1_System_Object__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_System_Object__set_Capacity, (List_1_System_Object_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x0175BEB0, void, List_1_System_Object__set_Item, (List_1_System_Object_ * __this, int32_t index, Object * value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData___ctor, (List_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD4A0, List_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData___ctor_1, (List_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData_ * __this, IEnumerable_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData___ctor_2, (List_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x0176CAC0, void, List_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData__Add, (List_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData_ * __this, ObjectInitializationData item, MethodInfo * method)); @@ -167040,6 +184290,7 @@ DO_APP_FUNC(0x01730C90, int32_t, List_1_UnityEngine_ResourceManagement_Util_Obje DO_APP_FUNC(0x0176D4B0, int32_t, List_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData__FindIndex_1, (List_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData_ * __this, int32_t startIndex, int32_t count, Predicate_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData_ * match, MethodInfo * method)); DO_APP_FUNC(0x0176D5E0, void, List_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData__ForEach, (List_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData_ * __this, Action_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData_ * action, MethodInfo * method)); DO_APP_FUNC(0x0176D6C0, List_1_T_Enumerator_UnityEngine_ResourceManagement_Util_ObjectInitializationData_, List_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData__GetEnumerator, (List_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEB68, List_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData__GetEnumerator__MethodInfo); DO_APP_FUNC(0x0176D880, int32_t, List_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData__IndexOf, (List_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData_ * __this, ObjectInitializationData item, MethodInfo * method)); DO_APP_FUNC(0x0176DA30, void, List_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData__Insert, (List_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData_ * __this, int32_t index, ObjectInitializationData item, MethodInfo * method)); DO_APP_FUNC(0x01785870, void, List_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData__InsertRange, (List_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData_ * __this, int32_t index, IEnumerable_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData_ * collection, MethodInfo * method)); @@ -167078,9 +184329,11 @@ DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_ResourceManagement_Util_ObjectI DO_APP_FUNC(0x0176C740, void, List_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData__set_Item, (List_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData_ * __this, int32_t index, ObjectInitializationData value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_Dissonance_Networking_Client_OpenChannel___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_Dissonance_Networking_Client_OpenChannel___ctor, (List_1_Dissonance_Networking_Client_OpenChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC4298, List_1_Dissonance_Networking_Client_OpenChannel___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_Dissonance_Networking_Client_OpenChannel___ctor_1, (List_1_Dissonance_Networking_Client_OpenChannel_ * __this, IEnumerable_1_Dissonance_Networking_Client_OpenChannel_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_Dissonance_Networking_Client_OpenChannel___ctor_2, (List_1_Dissonance_Networking_Client_OpenChannel_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x008631B0, void, List_1_Dissonance_Networking_Client_OpenChannel__Add, (List_1_Dissonance_Networking_Client_OpenChannel_ * __this, OpenChannel item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC41B0, List_1_Dissonance_Networking_Client_OpenChannel__Add__MethodInfo); DO_APP_FUNC(0x01786310, void, List_1_Dissonance_Networking_Client_OpenChannel__AddEnumerable, (List_1_Dissonance_Networking_Client_OpenChannel_ * __this, IEnumerable_1_Dissonance_Networking_Client_OpenChannel_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_Dissonance_Networking_Client_OpenChannel__AddRange, (List_1_Dissonance_Networking_Client_OpenChannel_ * __this, IEnumerable_1_Dissonance_Networking_Client_OpenChannel_ * collection, MethodInfo * method)); DO_APP_FUNC(0x017421F0, void, List_1_Dissonance_Networking_Client_OpenChannel__AddWithResize, (List_1_Dissonance_Networking_Client_OpenChannel_ * __this, OpenChannel item, MethodInfo * method)); @@ -167089,6 +184342,7 @@ DO_APP_FUNC(0x017424F0, int32_t, List_1_Dissonance_Networking_Client_OpenChannel DO_APP_FUNC(0x01742590, int32_t, List_1_Dissonance_Networking_Client_OpenChannel__BinarySearch_1, (List_1_Dissonance_Networking_Client_OpenChannel_ * __this, OpenChannel item, IComparer_1_Dissonance_Networking_Client_OpenChannel_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01742440, int32_t, List_1_Dissonance_Networking_Client_OpenChannel__BinarySearch_2, (List_1_Dissonance_Networking_Client_OpenChannel_ * __this, int32_t index, int32_t count, OpenChannel item, IComparer_1_Dissonance_Networking_Client_OpenChannel_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x003CB200, void, List_1_Dissonance_Networking_Client_OpenChannel__Clear, (List_1_Dissonance_Networking_Client_OpenChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC4288, List_1_Dissonance_Networking_Client_OpenChannel__Clear__MethodInfo); DO_APP_FUNC(0x01742630, bool, List_1_Dissonance_Networking_Client_OpenChannel__Contains, (List_1_Dissonance_Networking_Client_OpenChannel_ * __this, OpenChannel item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_Dissonance_Networking_Client_OpenChannel__CopyTo, (List_1_Dissonance_Networking_Client_OpenChannel_ * __this, OpenChannel__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_Dissonance_Networking_Client_OpenChannel__CopyTo_1, (List_1_Dissonance_Networking_Client_OpenChannel_ * __this, OpenChannel__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -167107,6 +184361,7 @@ DO_APP_FUNC(0x01741F50, bool, List_1_Dissonance_Networking_Client_OpenChannel__I DO_APP_FUNC(0x01743610, bool, List_1_Dissonance_Networking_Client_OpenChannel__Remove, (List_1_Dissonance_Networking_Client_OpenChannel_ * __this, OpenChannel item, MethodInfo * method)); DO_APP_FUNC(0x017437D0, int32_t, List_1_Dissonance_Networking_Client_OpenChannel__RemoveAll, (List_1_Dissonance_Networking_Client_OpenChannel_ * __this, Predicate_1_Dissonance_Networking_Client_OpenChannel_ * match, MethodInfo * method)); DO_APP_FUNC(0x017439B0, void, List_1_Dissonance_Networking_Client_OpenChannel__RemoveAt, (List_1_Dissonance_Networking_Client_OpenChannel_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC4210, List_1_Dissonance_Networking_Client_OpenChannel__RemoveAt__MethodInfo); DO_APP_FUNC(0x01731C60, void, List_1_Dissonance_Networking_Client_OpenChannel__RemoveRange, (List_1_Dissonance_Networking_Client_OpenChannel_ * __this, int32_t index, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x01731D00, void, List_1_Dissonance_Networking_Client_OpenChannel__Reverse, (List_1_Dissonance_Networking_Client_OpenChannel_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01731D60, void, List_1_Dissonance_Networking_Client_OpenChannel__Reverse_1, (List_1_Dissonance_Networking_Client_OpenChannel_ * __this, int32_t index, int32_t count, MethodInfo * method)); @@ -167133,9 +184388,12 @@ DO_APP_FUNC(0x01732000, OpenChannel__Array *, List_1_Dissonance_Networking_Clien DO_APP_FUNC(0x017320E0, void, List_1_Dissonance_Networking_Client_OpenChannel__TrimExcess, (List_1_Dissonance_Networking_Client_OpenChannel_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_Dissonance_Networking_Client_OpenChannel__get_Capacity, (List_1_Dissonance_Networking_Client_OpenChannel_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_Dissonance_Networking_Client_OpenChannel__get_Count, (List_1_Dissonance_Networking_Client_OpenChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC4228, List_1_Dissonance_Networking_Client_OpenChannel__get_Count__MethodInfo); DO_APP_FUNC(0x01741E50, OpenChannel, List_1_Dissonance_Networking_Client_OpenChannel__get_Item, (List_1_Dissonance_Networking_Client_OpenChannel_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC4220, List_1_Dissonance_Networking_Client_OpenChannel__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_Dissonance_Networking_Client_OpenChannel__set_Capacity, (List_1_Dissonance_Networking_Client_OpenChannel_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01741EA0, void, List_1_Dissonance_Networking_Client_OpenChannel__set_Item, (List_1_Dissonance_Networking_Client_OpenChannel_ * __this, int32_t index, OpenChannel value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC41A8, List_1_Dissonance_Networking_Client_OpenChannel__set_Item__MethodInfo); DO_APP_FUNC(0x017323E0, void, List_1_Photon_Bolt_Internal_PacketStats___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_Photon_Bolt_Internal_PacketStats___ctor, (List_1_Photon_Bolt_Internal_PacketStats_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0172FA30, void, List_1_Photon_Bolt_Internal_PacketStats___ctor_1, (List_1_Photon_Bolt_Internal_PacketStats_ * __this, IEnumerable_1_Photon_Bolt_Internal_PacketStats_ * collection, MethodInfo * method)); @@ -167198,6 +184456,7 @@ DO_APP_FUNC(0x0172FC90, void, List_1_Photon_Bolt_Internal_PacketStats__set_Capac DO_APP_FUNC(0x01753A80, void, List_1_Photon_Bolt_Internal_PacketStats__set_Item, (List_1_Photon_Bolt_Internal_PacketStats_ * __this, int32_t index, PacketStats value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_ParticleCollisionEvent___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_ParticleCollisionEvent___ctor, (List_1_UnityEngine_ParticleCollisionEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFD0A8, List_1_UnityEngine_ParticleCollisionEvent___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_ParticleCollisionEvent___ctor_1, (List_1_UnityEngine_ParticleCollisionEvent_ * __this, IEnumerable_1_UnityEngine_ParticleCollisionEvent_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_ParticleCollisionEvent___ctor_2, (List_1_UnityEngine_ParticleCollisionEvent_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x01786DC0, void, List_1_UnityEngine_ParticleCollisionEvent__Add, (List_1_UnityEngine_ParticleCollisionEvent_ * __this, ParticleCollisionEvent item, MethodInfo * method)); @@ -167209,6 +184468,7 @@ DO_APP_FUNC(0x01759840, int32_t, List_1_UnityEngine_ParticleCollisionEvent__Bina DO_APP_FUNC(0x017598E0, int32_t, List_1_UnityEngine_ParticleCollisionEvent__BinarySearch_1, (List_1_UnityEngine_ParticleCollisionEvent_ * __this, ParticleCollisionEvent item, IComparer_1_UnityEngine_ParticleCollisionEvent_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01759780, int32_t, List_1_UnityEngine_ParticleCollisionEvent__BinarySearch_2, (List_1_UnityEngine_ParticleCollisionEvent_ * __this, int32_t index, int32_t count, ParticleCollisionEvent item, IComparer_1_UnityEngine_ParticleCollisionEvent_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01749550, void, List_1_UnityEngine_ParticleCollisionEvent__Clear, (List_1_UnityEngine_ParticleCollisionEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFD038, List_1_UnityEngine_ParticleCollisionEvent__Clear__MethodInfo); DO_APP_FUNC(0x01759990, bool, List_1_UnityEngine_ParticleCollisionEvent__Contains, (List_1_UnityEngine_ParticleCollisionEvent_ * __this, ParticleCollisionEvent item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_UnityEngine_ParticleCollisionEvent__CopyTo, (List_1_UnityEngine_ParticleCollisionEvent_ * __this, ParticleCollisionEvent__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_UnityEngine_ParticleCollisionEvent__CopyTo_1, (List_1_UnityEngine_ParticleCollisionEvent_ * __this, ParticleCollisionEvent__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -167253,7 +184513,9 @@ DO_APP_FUNC(0x01732000, ParticleCollisionEvent__Array *, List_1_UnityEngine_Part DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_ParticleCollisionEvent__TrimExcess, (List_1_UnityEngine_ParticleCollisionEvent_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_ParticleCollisionEvent__get_Capacity, (List_1_UnityEngine_ParticleCollisionEvent_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_ParticleCollisionEvent__get_Count, (List_1_UnityEngine_ParticleCollisionEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFD030, List_1_UnityEngine_ParticleCollisionEvent__get_Count__MethodInfo); DO_APP_FUNC(0x01759030, ParticleCollisionEvent, List_1_UnityEngine_ParticleCollisionEvent__get_Item, (List_1_UnityEngine_ParticleCollisionEvent_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFD028, List_1_UnityEngine_ParticleCollisionEvent__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_ParticleCollisionEvent__set_Capacity, (List_1_UnityEngine_ParticleCollisionEvent_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01786D50, void, List_1_UnityEngine_ParticleCollisionEvent__set_Item, (List_1_UnityEngine_ParticleCollisionEvent_ * __this, int32_t index, ParticleCollisionEvent value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_Playables_Playable___cctor, (MethodInfo * method)); @@ -167384,9 +184646,11 @@ DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_Playables_PlayableBinding__set_ DO_APP_FUNC(0x01741EA0, void, List_1_UnityEngine_Playables_PlayableBinding__set_Item, (List_1_UnityEngine_Playables_PlayableBinding_ * __this, int32_t index, PlayableBinding value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_Photon_Bolt_Priority___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_Photon_Bolt_Priority___ctor, (List_1_Photon_Bolt_Priority_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9938, List_1_Photon_Bolt_Priority___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_Photon_Bolt_Priority___ctor_1, (List_1_Photon_Bolt_Priority_ * __this, IEnumerable_1_Photon_Bolt_Priority_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_Photon_Bolt_Priority___ctor_2, (List_1_Photon_Bolt_Priority_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x00AA7550, void, List_1_Photon_Bolt_Priority__Add, (List_1_Photon_Bolt_Priority_ * __this, Priority item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2388, List_1_Photon_Bolt_Priority__Add__MethodInfo); DO_APP_FUNC(0x01788AA0, void, List_1_Photon_Bolt_Priority__AddEnumerable, (List_1_Photon_Bolt_Priority_ * __this, IEnumerable_1_Photon_Bolt_Priority_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_Photon_Bolt_Priority__AddRange, (List_1_Photon_Bolt_Priority_ * __this, IEnumerable_1_Photon_Bolt_Priority_ * collection, MethodInfo * method)); DO_APP_FUNC(0x01753D90, void, List_1_Photon_Bolt_Priority__AddWithResize, (List_1_Photon_Bolt_Priority_ * __this, Priority item, MethodInfo * method)); @@ -167395,6 +184659,7 @@ DO_APP_FUNC(0x01754040, int32_t, List_1_Photon_Bolt_Priority__BinarySearch, (Lis DO_APP_FUNC(0x017540E0, int32_t, List_1_Photon_Bolt_Priority__BinarySearch_1, (List_1_Photon_Bolt_Priority_ * __this, Priority item, IComparer_1_Photon_Bolt_Priority_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01753F80, int32_t, List_1_Photon_Bolt_Priority__BinarySearch_2, (List_1_Photon_Bolt_Priority_ * __this, int32_t index, int32_t count, Priority item, IComparer_1_Photon_Bolt_Priority_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01749550, void, List_1_Photon_Bolt_Priority__Clear, (List_1_Photon_Bolt_Priority_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9930, List_1_Photon_Bolt_Priority__Clear__MethodInfo); DO_APP_FUNC(0x01754180, bool, List_1_Photon_Bolt_Priority__Contains, (List_1_Photon_Bolt_Priority_ * __this, Priority item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_Photon_Bolt_Priority__CopyTo, (List_1_Photon_Bolt_Priority_ * __this, Priority__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_Photon_Bolt_Priority__CopyTo_1, (List_1_Photon_Bolt_Priority_ * __this, Priority__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -167439,14 +184704,18 @@ DO_APP_FUNC(0x01732000, Priority__Array *, List_1_Photon_Bolt_Priority__ToArray, DO_APP_FUNC(0x017320E0, void, List_1_Photon_Bolt_Priority__TrimExcess, (List_1_Photon_Bolt_Priority_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_Photon_Bolt_Priority__get_Capacity, (List_1_Photon_Bolt_Priority_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_Photon_Bolt_Priority__get_Count, (List_1_Photon_Bolt_Priority_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC23A8, List_1_Photon_Bolt_Priority__get_Count__MethodInfo); DO_APP_FUNC(0x01753A20, Priority, List_1_Photon_Bolt_Priority__get_Item, (List_1_Photon_Bolt_Priority_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2398, List_1_Photon_Bolt_Priority__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_Photon_Bolt_Priority__set_Capacity, (List_1_Photon_Bolt_Priority_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01753A80, void, List_1_Photon_Bolt_Priority__set_Item, (List_1_Photon_Bolt_Priority_ * __this, int32_t index, Priority value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_Quaternion___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_Quaternion___ctor, (List_1_UnityEngine_Quaternion_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21CC8, List_1_UnityEngine_Quaternion___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_Quaternion___ctor_1, (List_1_UnityEngine_Quaternion_ * __this, IEnumerable_1_UnityEngine_Quaternion_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_Quaternion___ctor_2, (List_1_UnityEngine_Quaternion_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x01751370, void, List_1_UnityEngine_Quaternion__Add, (List_1_UnityEngine_Quaternion_ * __this, Quaternion item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D211C8, List_1_UnityEngine_Quaternion__Add__MethodInfo); DO_APP_FUNC(0x01789130, void, List_1_UnityEngine_Quaternion__AddEnumerable, (List_1_UnityEngine_Quaternion_ * __this, IEnumerable_1_UnityEngine_Quaternion_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_UnityEngine_Quaternion__AddRange, (List_1_UnityEngine_Quaternion_ * __this, IEnumerable_1_UnityEngine_Quaternion_ * collection, MethodInfo * method)); DO_APP_FUNC(0x017513F0, void, List_1_UnityEngine_Quaternion__AddWithResize, (List_1_UnityEngine_Quaternion_ * __this, Quaternion item, MethodInfo * method)); @@ -167500,13 +184769,17 @@ DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_Quaternion__TrimExcess, (List_1 DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_Quaternion__get_Capacity, (List_1_UnityEngine_Quaternion_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_Quaternion__get_Count, (List_1_UnityEngine_Quaternion_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0172FE60, Quaternion, List_1_UnityEngine_Quaternion__get_Item, (List_1_UnityEngine_Quaternion_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21170, List_1_UnityEngine_Quaternion__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_Quaternion__set_Capacity, (List_1_UnityEngine_Quaternion_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01751320, void, List_1_UnityEngine_Quaternion__set_Item, (List_1_UnityEngine_Quaternion_ * __this, int32_t index, Quaternion value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21168, List_1_UnityEngine_Quaternion__set_Item__MethodInfo); DO_APP_FUNC(0x017323E0, void, List_1_System_Xml_Schema_RangePositionInfo___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_System_Xml_Schema_RangePositionInfo___ctor, (List_1_System_Xml_Schema_RangePositionInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02470, List_1_System_Xml_Schema_RangePositionInfo___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_System_Xml_Schema_RangePositionInfo___ctor_1, (List_1_System_Xml_Schema_RangePositionInfo_ * __this, IEnumerable_1_System_Xml_Schema_RangePositionInfo_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_System_Xml_Schema_RangePositionInfo___ctor_2, (List_1_System_Xml_Schema_RangePositionInfo_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x017301E0, void, List_1_System_Xml_Schema_RangePositionInfo__Add, (List_1_System_Xml_Schema_RangePositionInfo_ * __this, RangePositionInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02460, List_1_System_Xml_Schema_RangePositionInfo__Add__MethodInfo); DO_APP_FUNC(0x01789830, void, List_1_System_Xml_Schema_RangePositionInfo__AddEnumerable, (List_1_System_Xml_Schema_RangePositionInfo_ * __this, IEnumerable_1_System_Xml_Schema_RangePositionInfo_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_System_Xml_Schema_RangePositionInfo__AddRange, (List_1_System_Xml_Schema_RangePositionInfo_ * __this, IEnumerable_1_System_Xml_Schema_RangePositionInfo_ * collection, MethodInfo * method)); DO_APP_FUNC(0x017302C0, void, List_1_System_Xml_Schema_RangePositionInfo__AddWithResize, (List_1_System_Xml_Schema_RangePositionInfo_ * __this, RangePositionInfo item, MethodInfo * method)); @@ -167515,6 +184788,7 @@ DO_APP_FUNC(0x01730630, int32_t, List_1_System_Xml_Schema_RangePositionInfo__Bin DO_APP_FUNC(0x017306C0, int32_t, List_1_System_Xml_Schema_RangePositionInfo__BinarySearch_1, (List_1_System_Xml_Schema_RangePositionInfo_ * __this, RangePositionInfo item, IComparer_1_System_Xml_Schema_RangePositionInfo_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01730590, int32_t, List_1_System_Xml_Schema_RangePositionInfo__BinarySearch_2, (List_1_System_Xml_Schema_RangePositionInfo_ * __this, int32_t index, int32_t count, RangePositionInfo item, IComparer_1_System_Xml_Schema_RangePositionInfo_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x003CB200, void, List_1_System_Xml_Schema_RangePositionInfo__Clear, (List_1_System_Xml_Schema_RangePositionInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02458, List_1_System_Xml_Schema_RangePositionInfo__Clear__MethodInfo); DO_APP_FUNC(0x01730760, bool, List_1_System_Xml_Schema_RangePositionInfo__Contains, (List_1_System_Xml_Schema_RangePositionInfo_ * __this, RangePositionInfo item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_System_Xml_Schema_RangePositionInfo__CopyTo, (List_1_System_Xml_Schema_RangePositionInfo_ * __this, RangePositionInfo__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_System_Xml_Schema_RangePositionInfo__CopyTo_1, (List_1_System_Xml_Schema_RangePositionInfo_ * __this, RangePositionInfo__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -167534,6 +184808,7 @@ DO_APP_FUNC(0x017317F0, bool, List_1_System_Xml_Schema_RangePositionInfo__Remove DO_APP_FUNC(0x017319A0, int32_t, List_1_System_Xml_Schema_RangePositionInfo__RemoveAll, (List_1_System_Xml_Schema_RangePositionInfo_ * __this, Predicate_1_System_Xml_Schema_RangePositionInfo_ * match, MethodInfo * method)); DO_APP_FUNC(0x01731B90, void, List_1_System_Xml_Schema_RangePositionInfo__RemoveAt, (List_1_System_Xml_Schema_RangePositionInfo_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01731C60, void, List_1_System_Xml_Schema_RangePositionInfo__RemoveRange, (List_1_System_Xml_Schema_RangePositionInfo_ * __this, int32_t index, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D023F0, List_1_System_Xml_Schema_RangePositionInfo__RemoveRange__MethodInfo); DO_APP_FUNC(0x01731D00, void, List_1_System_Xml_Schema_RangePositionInfo__Reverse, (List_1_System_Xml_Schema_RangePositionInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01731D60, void, List_1_System_Xml_Schema_RangePositionInfo__Reverse_1, (List_1_System_Xml_Schema_RangePositionInfo_ * __this, int32_t index, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x01731DD0, void, List_1_System_Xml_Schema_RangePositionInfo__Sort, (List_1_System_Xml_Schema_RangePositionInfo_ * __this, MethodInfo * method)); @@ -167559,14 +184834,19 @@ DO_APP_FUNC(0x01732000, RangePositionInfo__Array *, List_1_System_Xml_Schema_Ran DO_APP_FUNC(0x017320E0, void, List_1_System_Xml_Schema_RangePositionInfo__TrimExcess, (List_1_System_Xml_Schema_RangePositionInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_System_Xml_Schema_RangePositionInfo__get_Capacity, (List_1_System_Xml_Schema_RangePositionInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_System_Xml_Schema_RangePositionInfo__get_Count, (List_1_System_Xml_Schema_RangePositionInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D023E8, List_1_System_Xml_Schema_RangePositionInfo__get_Count__MethodInfo); DO_APP_FUNC(0x0172FE60, RangePositionInfo, List_1_System_Xml_Schema_RangePositionInfo__get_Item, (List_1_System_Xml_Schema_RangePositionInfo_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D023E0, List_1_System_Xml_Schema_RangePositionInfo__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_System_Xml_Schema_RangePositionInfo__set_Capacity, (List_1_System_Xml_Schema_RangePositionInfo_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x0172FEB0, void, List_1_System_Xml_Schema_RangePositionInfo__set_Item, (List_1_System_Xml_Schema_RangePositionInfo_ * __this, int32_t index, RangePositionInfo value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D023D8, List_1_System_Xml_Schema_RangePositionInfo__set_Item__MethodInfo); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_RaycastHit___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_RaycastHit___ctor, (List_1_UnityEngine_RaycastHit_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D147E8, List_1_UnityEngine_RaycastHit___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_RaycastHit___ctor_1, (List_1_UnityEngine_RaycastHit_ * __this, IEnumerable_1_UnityEngine_RaycastHit_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_RaycastHit___ctor_2, (List_1_UnityEngine_RaycastHit_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x01770B80, void, List_1_UnityEngine_RaycastHit__Add, (List_1_UnityEngine_RaycastHit_ * __this, RaycastHit item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D14EB8, List_1_UnityEngine_RaycastHit__Add__MethodInfo); DO_APP_FUNC(0x01789F00, void, List_1_UnityEngine_RaycastHit__AddEnumerable, (List_1_UnityEngine_RaycastHit_ * __this, IEnumerable_1_UnityEngine_RaycastHit_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_UnityEngine_RaycastHit__AddRange, (List_1_UnityEngine_RaycastHit_ * __this, IEnumerable_1_UnityEngine_RaycastHit_ * collection, MethodInfo * method)); DO_APP_FUNC(0x01770C30, void, List_1_UnityEngine_RaycastHit__AddWithResize, (List_1_UnityEngine_RaycastHit_ * __this, RaycastHit item, MethodInfo * method)); @@ -167575,6 +184855,7 @@ DO_APP_FUNC(0x01770F20, int32_t, List_1_UnityEngine_RaycastHit__BinarySearch, (L DO_APP_FUNC(0x01770FD0, int32_t, List_1_UnityEngine_RaycastHit__BinarySearch_1, (List_1_UnityEngine_RaycastHit_ * __this, RaycastHit item, IComparer_1_UnityEngine_RaycastHit_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01770E50, int32_t, List_1_UnityEngine_RaycastHit__BinarySearch_2, (List_1_UnityEngine_RaycastHit_ * __this, int32_t index, int32_t count, RaycastHit item, IComparer_1_UnityEngine_RaycastHit_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01749550, void, List_1_UnityEngine_RaycastHit__Clear, (List_1_UnityEngine_RaycastHit_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D14E98, List_1_UnityEngine_RaycastHit__Clear__MethodInfo); DO_APP_FUNC(0x01771090, bool, List_1_UnityEngine_RaycastHit__Contains, (List_1_UnityEngine_RaycastHit_ * __this, RaycastHit item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_UnityEngine_RaycastHit__CopyTo, (List_1_UnityEngine_RaycastHit_ * __this, RaycastHit__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_UnityEngine_RaycastHit__CopyTo_1, (List_1_UnityEngine_RaycastHit_ * __this, RaycastHit__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -167586,6 +184867,7 @@ DO_APP_FUNC(0x01730C90, int32_t, List_1_UnityEngine_RaycastHit__FindIndex, (List DO_APP_FUNC(0x01771570, int32_t, List_1_UnityEngine_RaycastHit__FindIndex_1, (List_1_UnityEngine_RaycastHit_ * __this, int32_t startIndex, int32_t count, Predicate_1_UnityEngine_RaycastHit_ * match, MethodInfo * method)); DO_APP_FUNC(0x017716A0, void, List_1_UnityEngine_RaycastHit__ForEach, (List_1_UnityEngine_RaycastHit_ * __this, Action_1_UnityEngine_RaycastHit_ * action, MethodInfo * method)); DO_APP_FUNC(0x01771790, List_1_T_Enumerator_UnityEngine_RaycastHit_, List_1_UnityEngine_RaycastHit__GetEnumerator, (List_1_UnityEngine_RaycastHit_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D14E60, List_1_UnityEngine_RaycastHit__GetEnumerator__MethodInfo); DO_APP_FUNC(0x01771950, int32_t, List_1_UnityEngine_RaycastHit__IndexOf, (List_1_UnityEngine_RaycastHit_ * __this, RaycastHit item, MethodInfo * method)); DO_APP_FUNC(0x01771B20, void, List_1_UnityEngine_RaycastHit__Insert, (List_1_UnityEngine_RaycastHit_ * __this, int32_t index, RaycastHit item, MethodInfo * method)); DO_APP_FUNC(0x01789B80, void, List_1_UnityEngine_RaycastHit__InsertRange, (List_1_UnityEngine_RaycastHit_ * __this, int32_t index, IEnumerable_1_UnityEngine_RaycastHit_ * collection, MethodInfo * method)); @@ -167619,6 +184901,7 @@ DO_APP_FUNC(0x01732000, RaycastHit__Array *, List_1_UnityEngine_RaycastHit__ToAr DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_RaycastHit__TrimExcess, (List_1_UnityEngine_RaycastHit_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_RaycastHit__get_Capacity, (List_1_UnityEngine_RaycastHit_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_RaycastHit__get_Count, (List_1_UnityEngine_RaycastHit_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D14E50, List_1_UnityEngine_RaycastHit__get_Count__MethodInfo); DO_APP_FUNC(0x017707A0, RaycastHit, List_1_UnityEngine_RaycastHit__get_Item, (List_1_UnityEngine_RaycastHit_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_RaycastHit__set_Capacity, (List_1_UnityEngine_RaycastHit_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01770810, void, List_1_UnityEngine_RaycastHit__set_Item, (List_1_UnityEngine_RaycastHit_ * __this, int32_t index, RaycastHit value, MethodInfo * method)); @@ -167684,9 +184967,11 @@ DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_RaycastHit2D__set_Capacity, (Li DO_APP_FUNC(0x0178A2D0, void, List_1_UnityEngine_RaycastHit2D__set_Item, (List_1_UnityEngine_RaycastHit2D_ * __this, int32_t index, RaycastHit2D value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_EventSystems_RaycastResult___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_EventSystems_RaycastResult___ctor, (List_1_UnityEngine_EventSystems_RaycastResult_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF2F8, List_1_UnityEngine_EventSystems_RaycastResult___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_EventSystems_RaycastResult___ctor_1, (List_1_UnityEngine_EventSystems_RaycastResult_ * __this, IEnumerable_1_UnityEngine_EventSystems_RaycastResult_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_EventSystems_RaycastResult___ctor_2, (List_1_UnityEngine_EventSystems_RaycastResult_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x0174D7D0, void, List_1_UnityEngine_EventSystems_RaycastResult__Add, (List_1_UnityEngine_EventSystems_RaycastResult_ * __this, RaycastResult item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF440, List_1_UnityEngine_EventSystems_RaycastResult__Add__MethodInfo); DO_APP_FUNC(0x0178C4D0, void, List_1_UnityEngine_EventSystems_RaycastResult__AddEnumerable, (List_1_UnityEngine_EventSystems_RaycastResult_ * __this, IEnumerable_1_UnityEngine_EventSystems_RaycastResult_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_UnityEngine_EventSystems_RaycastResult__AddRange, (List_1_UnityEngine_EventSystems_RaycastResult_ * __this, IEnumerable_1_UnityEngine_EventSystems_RaycastResult_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0174D860, void, List_1_UnityEngine_EventSystems_RaycastResult__AddWithResize, (List_1_UnityEngine_EventSystems_RaycastResult_ * __this, RaycastResult item, MethodInfo * method)); @@ -167695,6 +184980,7 @@ DO_APP_FUNC(0x0174DB80, int32_t, List_1_UnityEngine_EventSystems_RaycastResult__ DO_APP_FUNC(0x0174DC40, int32_t, List_1_UnityEngine_EventSystems_RaycastResult__BinarySearch_1, (List_1_UnityEngine_EventSystems_RaycastResult_ * __this, RaycastResult item, IComparer_1_UnityEngine_EventSystems_RaycastResult_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0174DAA0, int32_t, List_1_UnityEngine_EventSystems_RaycastResult__BinarySearch_2, (List_1_UnityEngine_EventSystems_RaycastResult_ * __this, int32_t index, int32_t count, RaycastResult item, IComparer_1_UnityEngine_EventSystems_RaycastResult_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x003CB200, void, List_1_UnityEngine_EventSystems_RaycastResult__Clear, (List_1_UnityEngine_EventSystems_RaycastResult_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDF1C0, List_1_UnityEngine_EventSystems_RaycastResult__Clear__MethodInfo); DO_APP_FUNC(0x0174DD00, bool, List_1_UnityEngine_EventSystems_RaycastResult__Contains, (List_1_UnityEngine_EventSystems_RaycastResult_ * __this, RaycastResult item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_UnityEngine_EventSystems_RaycastResult__CopyTo, (List_1_UnityEngine_EventSystems_RaycastResult_ * __this, RaycastResult__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_UnityEngine_EventSystems_RaycastResult__CopyTo_1, (List_1_UnityEngine_EventSystems_RaycastResult_ * __this, RaycastResult__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -167706,6 +184992,7 @@ DO_APP_FUNC(0x01730C90, int32_t, List_1_UnityEngine_EventSystems_RaycastResult__ DO_APP_FUNC(0x0174E230, int32_t, List_1_UnityEngine_EventSystems_RaycastResult__FindIndex_1, (List_1_UnityEngine_EventSystems_RaycastResult_ * __this, int32_t startIndex, int32_t count, Predicate_1_UnityEngine_EventSystems_RaycastResult_ * match, MethodInfo * method)); DO_APP_FUNC(0x0174E380, void, List_1_UnityEngine_EventSystems_RaycastResult__ForEach, (List_1_UnityEngine_EventSystems_RaycastResult_ * __this, Action_1_UnityEngine_EventSystems_RaycastResult_ * action, MethodInfo * method)); DO_APP_FUNC(0x0174E490, List_1_T_Enumerator_UnityEngine_EventSystems_RaycastResult_, List_1_UnityEngine_EventSystems_RaycastResult__GetEnumerator, (List_1_UnityEngine_EventSystems_RaycastResult_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF258, List_1_UnityEngine_EventSystems_RaycastResult__GetEnumerator__MethodInfo); DO_APP_FUNC(0x0174E670, int32_t, List_1_UnityEngine_EventSystems_RaycastResult__IndexOf, (List_1_UnityEngine_EventSystems_RaycastResult_ * __this, RaycastResult item, MethodInfo * method)); DO_APP_FUNC(0x0174E860, void, List_1_UnityEngine_EventSystems_RaycastResult__Insert, (List_1_UnityEngine_EventSystems_RaycastResult_ * __this, int32_t index, RaycastResult item, MethodInfo * method)); DO_APP_FUNC(0x0178C140, void, List_1_UnityEngine_EventSystems_RaycastResult__InsertRange, (List_1_UnityEngine_EventSystems_RaycastResult_ * __this, int32_t index, IEnumerable_1_UnityEngine_EventSystems_RaycastResult_ * collection, MethodInfo * method)); @@ -167718,6 +185005,7 @@ DO_APP_FUNC(0x01731D00, void, List_1_UnityEngine_EventSystems_RaycastResult__Rev DO_APP_FUNC(0x01731D60, void, List_1_UnityEngine_EventSystems_RaycastResult__Reverse_1, (List_1_UnityEngine_EventSystems_RaycastResult_ * __this, int32_t index, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x01731DD0, void, List_1_UnityEngine_EventSystems_RaycastResult__Sort, (List_1_UnityEngine_EventSystems_RaycastResult_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01731F40, void, List_1_UnityEngine_EventSystems_RaycastResult__Sort_1, (List_1_UnityEngine_EventSystems_RaycastResult_ * __this, Comparison_1_UnityEngine_EventSystems_RaycastResult_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3148, List_1_UnityEngine_EventSystems_RaycastResult__Sort_1__MethodInfo); DO_APP_FUNC(0x01731E40, void, List_1_UnityEngine_EventSystems_RaycastResult__Sort_2, (List_1_UnityEngine_EventSystems_RaycastResult_ * __this, IComparer_1_UnityEngine_EventSystems_RaycastResult_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01731EC0, void, List_1_UnityEngine_EventSystems_RaycastResult__Sort_3, (List_1_UnityEngine_EventSystems_RaycastResult_ * __this, int32_t index, int32_t count, IComparer_1_UnityEngine_EventSystems_RaycastResult_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, List_1_UnityEngine_EventSystems_RaycastResult__System_Collections_Generic_ICollection_T__get_IsReadOnly, (List_1_UnityEngine_EventSystems_RaycastResult_ * __this, MethodInfo * method)); @@ -167739,14 +185027,18 @@ DO_APP_FUNC(0x01732000, RaycastResult__Array *, List_1_UnityEngine_EventSystems_ DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_EventSystems_RaycastResult__TrimExcess, (List_1_UnityEngine_EventSystems_RaycastResult_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_EventSystems_RaycastResult__get_Capacity, (List_1_UnityEngine_EventSystems_RaycastResult_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_EventSystems_RaycastResult__get_Count, (List_1_UnityEngine_EventSystems_RaycastResult_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF630, List_1_UnityEngine_EventSystems_RaycastResult__get_Count__MethodInfo); DO_APP_FUNC(0x0174D3E0, RaycastResult, List_1_UnityEngine_EventSystems_RaycastResult__get_Item, (List_1_UnityEngine_EventSystems_RaycastResult_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF628, List_1_UnityEngine_EventSystems_RaycastResult__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_EventSystems_RaycastResult__set_Capacity, (List_1_UnityEngine_EventSystems_RaycastResult_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x0174D460, void, List_1_UnityEngine_EventSystems_RaycastResult__set_Item, (List_1_UnityEngine_EventSystems_RaycastResult_ * __this, int32_t index, RaycastResult value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_Rect___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_Rect___ctor, (List_1_UnityEngine_Rect_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF73A0, List_1_UnityEngine_Rect___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_Rect___ctor_1, (List_1_UnityEngine_Rect_ * __this, IEnumerable_1_UnityEngine_Rect_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_Rect___ctor_2, (List_1_UnityEngine_Rect_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x01751370, void, List_1_UnityEngine_Rect__Add, (List_1_UnityEngine_Rect_ * __this, Rect item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7400, List_1_UnityEngine_Rect__Add__MethodInfo); DO_APP_FUNC(0x0178CC20, void, List_1_UnityEngine_Rect__AddEnumerable, (List_1_UnityEngine_Rect_ * __this, IEnumerable_1_UnityEngine_Rect_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_UnityEngine_Rect__AddRange, (List_1_UnityEngine_Rect_ * __this, IEnumerable_1_UnityEngine_Rect_ * collection, MethodInfo * method)); DO_APP_FUNC(0x017513F0, void, List_1_UnityEngine_Rect__AddWithResize, (List_1_UnityEngine_Rect_ * __this, Rect item, MethodInfo * method)); @@ -167755,6 +185047,7 @@ DO_APP_FUNC(0x01730630, int32_t, List_1_UnityEngine_Rect__BinarySearch, (List_1_ DO_APP_FUNC(0x017306C0, int32_t, List_1_UnityEngine_Rect__BinarySearch_1, (List_1_UnityEngine_Rect_ * __this, Rect item, IComparer_1_UnityEngine_Rect_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01730590, int32_t, List_1_UnityEngine_Rect__BinarySearch_2, (List_1_UnityEngine_Rect_ * __this, int32_t index, int32_t count, Rect item, IComparer_1_UnityEngine_Rect_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01749550, void, List_1_UnityEngine_Rect__Clear, (List_1_UnityEngine_Rect_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07710, List_1_UnityEngine_Rect__Clear__MethodInfo); DO_APP_FUNC(0x01730760, bool, List_1_UnityEngine_Rect__Contains, (List_1_UnityEngine_Rect_ * __this, Rect item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_UnityEngine_Rect__CopyTo, (List_1_UnityEngine_Rect_ * __this, Rect__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_UnityEngine_Rect__CopyTo_1, (List_1_UnityEngine_Rect_ * __this, Rect__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -167799,7 +185092,9 @@ DO_APP_FUNC(0x01732000, Rect__Array *, List_1_UnityEngine_Rect__ToArray, (List_1 DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_Rect__TrimExcess, (List_1_UnityEngine_Rect_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_Rect__get_Capacity, (List_1_UnityEngine_Rect_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_Rect__get_Count, (List_1_UnityEngine_Rect_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07708, List_1_UnityEngine_Rect__get_Count__MethodInfo); DO_APP_FUNC(0x0172FE60, Rect, List_1_UnityEngine_Rect__get_Item, (List_1_UnityEngine_Rect_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7430, List_1_UnityEngine_Rect__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_Rect__set_Capacity, (List_1_UnityEngine_Rect_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01751320, void, List_1_UnityEngine_Rect__set_Item, (List_1_UnityEngine_Rect_ * __this, int32_t index, Rect value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_Rendering_ReflectionProbeBlendInfo___cctor, (MethodInfo * method)); @@ -167867,6 +185162,7 @@ DO_APP_FUNC(0x0172F7F0, void, List_1_Dissonance_RemoteChannel___ctor, (List_1_Di DO_APP_FUNC_METHODINFO(0x03C93A50, List_1_Dissonance_RemoteChannel___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_Dissonance_RemoteChannel___ctor_1, (List_1_Dissonance_RemoteChannel_ * __this, IEnumerable_1_Dissonance_RemoteChannel_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_Dissonance_RemoteChannel___ctor_2, (List_1_Dissonance_RemoteChannel_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D500, List_1_Dissonance_RemoteChannel___ctor_2__MethodInfo); DO_APP_FUNC(0x01744F10, void, List_1_Dissonance_RemoteChannel__Add, (List_1_Dissonance_RemoteChannel_ * __this, RemoteChannel item, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8EFB8, List_1_Dissonance_RemoteChannel__Add__MethodInfo); DO_APP_FUNC(0x0178DA40, void, List_1_Dissonance_RemoteChannel__AddEnumerable, (List_1_Dissonance_RemoteChannel_ * __this, IEnumerable_1_Dissonance_RemoteChannel_ * enumerable, MethodInfo * method)); @@ -167933,7 +185229,9 @@ DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_UIElements_UIR_RenderChainTextE DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_UIElements_UIR_RenderChainTextEntry___ctor, (List_1_UnityEngine_UIElements_UIR_RenderChainTextEntry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_UIElements_UIR_RenderChainTextEntry___ctor_1, (List_1_UnityEngine_UIElements_UIR_RenderChainTextEntry_ * __this, IEnumerable_1_UnityEngine_UIElements_UIR_RenderChainTextEntry_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_UIElements_UIR_RenderChainTextEntry___ctor_2, (List_1_UnityEngine_UIElements_UIR_RenderChainTextEntry_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD77F0, List_1_UnityEngine_UIElements_UIR_RenderChainTextEntry___ctor_2__MethodInfo); DO_APP_FUNC(0x017301E0, void, List_1_UnityEngine_UIElements_UIR_RenderChainTextEntry__Add, (List_1_UnityEngine_UIElements_UIR_RenderChainTextEntry_ * __this, RenderChainTextEntry item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7800, List_1_UnityEngine_UIElements_UIR_RenderChainTextEntry__Add__MethodInfo); DO_APP_FUNC(0x017995D0, void, List_1_UnityEngine_UIElements_UIR_RenderChainTextEntry__AddEnumerable, (List_1_UnityEngine_UIElements_UIR_RenderChainTextEntry_ * __this, IEnumerable_1_UnityEngine_UIElements_UIR_RenderChainTextEntry_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_UnityEngine_UIElements_UIR_RenderChainTextEntry__AddRange, (List_1_UnityEngine_UIElements_UIR_RenderChainTextEntry_ * __this, IEnumerable_1_UnityEngine_UIElements_UIR_RenderChainTextEntry_ * collection, MethodInfo * method)); DO_APP_FUNC(0x017302C0, void, List_1_UnityEngine_UIElements_UIR_RenderChainTextEntry__AddWithResize, (List_1_UnityEngine_UIElements_UIR_RenderChainTextEntry_ * __this, RenderChainTextEntry item, MethodInfo * method)); @@ -167942,6 +185240,7 @@ DO_APP_FUNC(0x01730630, int32_t, List_1_UnityEngine_UIElements_UIR_RenderChainTe DO_APP_FUNC(0x017306C0, int32_t, List_1_UnityEngine_UIElements_UIR_RenderChainTextEntry__BinarySearch_1, (List_1_UnityEngine_UIElements_UIR_RenderChainTextEntry_ * __this, RenderChainTextEntry item, IComparer_1_UnityEngine_UIElements_UIR_RenderChainTextEntry_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01730590, int32_t, List_1_UnityEngine_UIElements_UIR_RenderChainTextEntry__BinarySearch_2, (List_1_UnityEngine_UIElements_UIR_RenderChainTextEntry_ * __this, int32_t index, int32_t count, RenderChainTextEntry item, IComparer_1_UnityEngine_UIElements_UIR_RenderChainTextEntry_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x003CB200, void, List_1_UnityEngine_UIElements_UIR_RenderChainTextEntry__Clear, (List_1_UnityEngine_UIElements_UIR_RenderChainTextEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7778, List_1_UnityEngine_UIElements_UIR_RenderChainTextEntry__Clear__MethodInfo); DO_APP_FUNC(0x01730760, bool, List_1_UnityEngine_UIElements_UIR_RenderChainTextEntry__Contains, (List_1_UnityEngine_UIElements_UIR_RenderChainTextEntry_ * __this, RenderChainTextEntry item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_UnityEngine_UIElements_UIR_RenderChainTextEntry__CopyTo, (List_1_UnityEngine_UIElements_UIR_RenderChainTextEntry_ * __this, RenderChainTextEntry__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_UnityEngine_UIElements_UIR_RenderChainTextEntry__CopyTo_1, (List_1_UnityEngine_UIElements_UIR_RenderChainTextEntry_ * __this, RenderChainTextEntry__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -167986,7 +185285,9 @@ DO_APP_FUNC(0x01732000, RenderChainTextEntry__Array *, List_1_UnityEngine_UIElem DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_UIElements_UIR_RenderChainTextEntry__TrimExcess, (List_1_UnityEngine_UIElements_UIR_RenderChainTextEntry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_UIElements_UIR_RenderChainTextEntry__get_Capacity, (List_1_UnityEngine_UIElements_UIR_RenderChainTextEntry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_UIElements_UIR_RenderChainTextEntry__get_Count, (List_1_UnityEngine_UIElements_UIR_RenderChainTextEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7770, List_1_UnityEngine_UIElements_UIR_RenderChainTextEntry__get_Count__MethodInfo); DO_APP_FUNC(0x0172FE60, RenderChainTextEntry, List_1_UnityEngine_UIElements_UIR_RenderChainTextEntry__get_Item, (List_1_UnityEngine_UIElements_UIR_RenderChainTextEntry_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9F98, List_1_UnityEngine_UIElements_UIR_RenderChainTextEntry__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_UIElements_UIR_RenderChainTextEntry__set_Capacity, (List_1_UnityEngine_UIElements_UIR_RenderChainTextEntry_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x0172FEB0, void, List_1_UnityEngine_UIElements_UIR_RenderChainTextEntry__set_Item, (List_1_UnityEngine_UIElements_UIR_RenderChainTextEntry_ * __this, int32_t index, RenderChainTextEntry value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_Rendering_RenderTargetIdentifier___cctor, (MethodInfo * method)); @@ -168185,9 +185486,11 @@ DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_Experimental_Rendering_RenderGr DO_APP_FUNC(0x01748ED0, void, List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle__set_Item, (List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle_ * __this, int32_t index, RendererListHandle value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_Resolution___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_Resolution___ctor, (List_1_UnityEngine_Resolution_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2BC8, List_1_UnityEngine_Resolution___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_Resolution___ctor_1, (List_1_UnityEngine_Resolution_ * __this, IEnumerable_1_UnityEngine_Resolution_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_Resolution___ctor_2, (List_1_UnityEngine_Resolution_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x00AA7550, void, List_1_UnityEngine_Resolution__Add, (List_1_UnityEngine_Resolution_ * __this, Resolution item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3BE0, List_1_UnityEngine_Resolution__Add__MethodInfo); DO_APP_FUNC(0x0179B140, void, List_1_UnityEngine_Resolution__AddEnumerable, (List_1_UnityEngine_Resolution_ * __this, IEnumerable_1_UnityEngine_Resolution_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_UnityEngine_Resolution__AddRange, (List_1_UnityEngine_Resolution_ * __this, IEnumerable_1_UnityEngine_Resolution_ * collection, MethodInfo * method)); DO_APP_FUNC(0x01753D90, void, List_1_UnityEngine_Resolution__AddWithResize, (List_1_UnityEngine_Resolution_ * __this, Resolution item, MethodInfo * method)); @@ -168196,6 +185499,7 @@ DO_APP_FUNC(0x01754040, int32_t, List_1_UnityEngine_Resolution__BinarySearch, (L DO_APP_FUNC(0x017540E0, int32_t, List_1_UnityEngine_Resolution__BinarySearch_1, (List_1_UnityEngine_Resolution_ * __this, Resolution item, IComparer_1_UnityEngine_Resolution_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01753F80, int32_t, List_1_UnityEngine_Resolution__BinarySearch_2, (List_1_UnityEngine_Resolution_ * __this, int32_t index, int32_t count, Resolution item, IComparer_1_UnityEngine_Resolution_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01749550, void, List_1_UnityEngine_Resolution__Clear, (List_1_UnityEngine_Resolution_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3B98, List_1_UnityEngine_Resolution__Clear__MethodInfo); DO_APP_FUNC(0x01754180, bool, List_1_UnityEngine_Resolution__Contains, (List_1_UnityEngine_Resolution_ * __this, Resolution item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_UnityEngine_Resolution__CopyTo, (List_1_UnityEngine_Resolution_ * __this, Resolution__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_UnityEngine_Resolution__CopyTo_1, (List_1_UnityEngine_Resolution_ * __this, Resolution__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -168240,7 +185544,9 @@ DO_APP_FUNC(0x01732000, Resolution__Array *, List_1_UnityEngine_Resolution__ToAr DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_Resolution__TrimExcess, (List_1_UnityEngine_Resolution_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_Resolution__get_Capacity, (List_1_UnityEngine_Resolution_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_Resolution__get_Count, (List_1_UnityEngine_Resolution_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3B70, List_1_UnityEngine_Resolution__get_Count__MethodInfo); DO_APP_FUNC(0x01753A20, Resolution, List_1_UnityEngine_Resolution__get_Item, (List_1_UnityEngine_Resolution_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3B60, List_1_UnityEngine_Resolution__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_Resolution__set_Capacity, (List_1_UnityEngine_Resolution_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01753A80, void, List_1_UnityEngine_Resolution__set_Item, (List_1_UnityEngine_Resolution_ * __this, int32_t index, Resolution value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle___cctor, (MethodInfo * method)); @@ -168377,9 +185683,11 @@ DO_APP_FUNC(0x0174B820, void, List_1_Dissonance_RoomMembership__set_Item, (List_ DO_APP_FUNC_METHODINFO(0x03C8F268, List_1_Dissonance_RoomMembership__set_Item__MethodInfo); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_UIElements_RuleMatcher___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_UIElements_RuleMatcher___ctor, (List_1_UnityEngine_UIElements_RuleMatcher_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6960, List_1_UnityEngine_UIElements_RuleMatcher___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_UIElements_RuleMatcher___ctor_1, (List_1_UnityEngine_UIElements_RuleMatcher_ * __this, IEnumerable_1_UnityEngine_UIElements_RuleMatcher_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_UIElements_RuleMatcher___ctor_2, (List_1_UnityEngine_UIElements_RuleMatcher_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x017301E0, void, List_1_UnityEngine_UIElements_RuleMatcher__Add, (List_1_UnityEngine_UIElements_RuleMatcher_ * __this, RuleMatcher item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6958, List_1_UnityEngine_UIElements_RuleMatcher__Add__MethodInfo); DO_APP_FUNC(0x0179C5B0, void, List_1_UnityEngine_UIElements_RuleMatcher__AddEnumerable, (List_1_UnityEngine_UIElements_RuleMatcher_ * __this, IEnumerable_1_UnityEngine_UIElements_RuleMatcher_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_UnityEngine_UIElements_RuleMatcher__AddRange, (List_1_UnityEngine_UIElements_RuleMatcher_ * __this, IEnumerable_1_UnityEngine_UIElements_RuleMatcher_ * collection, MethodInfo * method)); DO_APP_FUNC(0x017302C0, void, List_1_UnityEngine_UIElements_RuleMatcher__AddWithResize, (List_1_UnityEngine_UIElements_RuleMatcher_ * __this, RuleMatcher item, MethodInfo * method)); @@ -168407,6 +185715,7 @@ DO_APP_FUNC(0x017317F0, bool, List_1_UnityEngine_UIElements_RuleMatcher__Remove, DO_APP_FUNC(0x017319A0, int32_t, List_1_UnityEngine_UIElements_RuleMatcher__RemoveAll, (List_1_UnityEngine_UIElements_RuleMatcher_ * __this, Predicate_1_UnityEngine_UIElements_RuleMatcher_ * match, MethodInfo * method)); DO_APP_FUNC(0x01731B90, void, List_1_UnityEngine_UIElements_RuleMatcher__RemoveAt, (List_1_UnityEngine_UIElements_RuleMatcher_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01731C60, void, List_1_UnityEngine_UIElements_RuleMatcher__RemoveRange, (List_1_UnityEngine_UIElements_RuleMatcher_ * __this, int32_t index, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE680, List_1_UnityEngine_UIElements_RuleMatcher__RemoveRange__MethodInfo); DO_APP_FUNC(0x01731D00, void, List_1_UnityEngine_UIElements_RuleMatcher__Reverse, (List_1_UnityEngine_UIElements_RuleMatcher_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01731D60, void, List_1_UnityEngine_UIElements_RuleMatcher__Reverse_1, (List_1_UnityEngine_UIElements_RuleMatcher_ * __this, int32_t index, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x01731DD0, void, List_1_UnityEngine_UIElements_RuleMatcher__Sort, (List_1_UnityEngine_UIElements_RuleMatcher_ * __this, MethodInfo * method)); @@ -168432,7 +185741,9 @@ DO_APP_FUNC(0x01732000, RuleMatcher__Array *, List_1_UnityEngine_UIElements_Rule DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_UIElements_RuleMatcher__TrimExcess, (List_1_UnityEngine_UIElements_RuleMatcher_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_UIElements_RuleMatcher__get_Capacity, (List_1_UnityEngine_UIElements_RuleMatcher_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_UIElements_RuleMatcher__get_Count, (List_1_UnityEngine_UIElements_RuleMatcher_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB68D8, List_1_UnityEngine_UIElements_RuleMatcher__get_Count__MethodInfo); DO_APP_FUNC(0x0172FE60, RuleMatcher, List_1_UnityEngine_UIElements_RuleMatcher__get_Item, (List_1_UnityEngine_UIElements_RuleMatcher_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D037B8, List_1_UnityEngine_UIElements_RuleMatcher__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_UIElements_RuleMatcher__set_Capacity, (List_1_UnityEngine_UIElements_RuleMatcher_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x0172FEB0, void, List_1_UnityEngine_UIElements_RuleMatcher__set_Item, (List_1_UnityEngine_UIElements_RuleMatcher_ * __this, int32_t index, RuleMatcher value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_System_SByte___cctor, (MethodInfo * method)); @@ -168497,9 +185808,11 @@ DO_APP_FUNC(0x0172FC90, void, List_1_System_SByte__set_Capacity, (List_1_System_ DO_APP_FUNC(0x0175E200, void, List_1_System_SByte__set_Item, (List_1_System_SByte_ * __this, int32_t index, int8_t value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord___ctor, (List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE1E0, List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord___ctor_1, (List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * __this, IEnumerable_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord___ctor_2, (List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x0174B8D0, void, List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__Add, (List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * __this, SelectorMatchRecord item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDBE58, List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__Add__MethodInfo); DO_APP_FUNC(0x0179D330, void, List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__AddEnumerable, (List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * __this, IEnumerable_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__AddRange, (List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * __this, IEnumerable_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0174B9C0, void, List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__AddWithResize, (List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * __this, SelectorMatchRecord item, MethodInfo * method)); @@ -168508,6 +185821,7 @@ DO_APP_FUNC(0x01745310, int32_t, List_1_UnityEngine_UIElements_StyleSheets_Selec DO_APP_FUNC(0x017453B0, int32_t, List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__BinarySearch_1, (List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * __this, SelectorMatchRecord item, IComparer_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01745250, int32_t, List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__BinarySearch_2, (List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * __this, int32_t index, int32_t count, SelectorMatchRecord item, IComparer_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x003CB200, void, List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__Clear, (List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE1E8, List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__Clear__MethodInfo); DO_APP_FUNC(0x01745450, bool, List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__Contains, (List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * __this, SelectorMatchRecord item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__CopyTo, (List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * __this, SelectorMatchRecord__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__CopyTo_1, (List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * __this, SelectorMatchRecord__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -168519,6 +185833,7 @@ DO_APP_FUNC(0x01730C90, int32_t, List_1_UnityEngine_UIElements_StyleSheets_Selec DO_APP_FUNC(0x017458C0, int32_t, List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__FindIndex_1, (List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * __this, int32_t startIndex, int32_t count, Predicate_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * match, MethodInfo * method)); DO_APP_FUNC(0x017459E0, void, List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__ForEach, (List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * __this, Action_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * action, MethodInfo * method)); DO_APP_FUNC(0x01745AB0, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_, List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__GetEnumerator, (List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE1A8, List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__GetEnumerator__MethodInfo); DO_APP_FUNC(0x01745C30, int32_t, List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__IndexOf, (List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * __this, SelectorMatchRecord item, MethodInfo * method)); DO_APP_FUNC(0x0174BA90, void, List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__Insert, (List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * __this, int32_t index, SelectorMatchRecord item, MethodInfo * method)); DO_APP_FUNC(0x0179CF60, void, List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__InsertRange, (List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * __this, int32_t index, IEnumerable_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * collection, MethodInfo * method)); @@ -168531,6 +185846,7 @@ DO_APP_FUNC(0x01731D00, void, List_1_UnityEngine_UIElements_StyleSheets_Selector DO_APP_FUNC(0x01731D60, void, List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__Reverse_1, (List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * __this, int32_t index, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x01731DD0, void, List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__Sort, (List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01731F40, void, List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__Sort_1, (List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * __this, Comparison_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE190, List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__Sort_1__MethodInfo); DO_APP_FUNC(0x01731E40, void, List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__Sort_2, (List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * __this, IComparer_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01731EC0, void, List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__Sort_3, (List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * __this, int32_t index, int32_t count, IComparer_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__System_Collections_Generic_ICollection_T__get_IsReadOnly, (List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * __this, MethodInfo * method)); @@ -168552,22 +185868,28 @@ DO_APP_FUNC(0x01732000, SelectorMatchRecord__Array *, List_1_UnityEngine_UIEleme DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__TrimExcess, (List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__get_Capacity, (List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__get_Count, (List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDBE40, List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__get_Count__MethodInfo); DO_APP_FUNC(0x01744B50, SelectorMatchRecord, List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__get_Item, (List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__set_Capacity, (List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x0174B820, void, List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord__set_Item, (List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * __this, int32_t index, SelectorMatchRecord value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_System_Single___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_System_Single___ctor, (List_1_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE36A8, List_1_System_Single___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_System_Single___ctor_1, (List_1_System_Single_ * __this, IEnumerable_1_System_Single_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_System_Single___ctor_2, (List_1_System_Single_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB960, List_1_System_Single___ctor_2__MethodInfo); DO_APP_FUNC(0x0179D8A0, void, List_1_System_Single__Add, (List_1_System_Single_ * __this, float item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBAAC0, List_1_System_Single__Add__MethodInfo); DO_APP_FUNC(0x0179E910, void, List_1_System_Single__AddEnumerable, (List_1_System_Single_ * __this, IEnumerable_1_System_Single_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_System_Single__AddRange, (List_1_System_Single_ * __this, IEnumerable_1_System_Single_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0179D900, void, List_1_System_Single__AddWithResize, (List_1_System_Single_ * __this, float item, MethodInfo * method)); DO_APP_FUNC(0x01730510, ReadOnlyCollection_1_System_Single_ *, List_1_System_Single__AsReadOnly, (List_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0176EDA0, int32_t, List_1_System_Single__BinarySearch, (List_1_System_Single_ * __this, float item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBAAD8, List_1_System_Single__BinarySearch__MethodInfo); DO_APP_FUNC(0x0176EE20, int32_t, List_1_System_Single__BinarySearch_1, (List_1_System_Single_ * __this, float item, IComparer_1_System_Single_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0176ED10, int32_t, List_1_System_Single__BinarySearch_2, (List_1_System_Single_ * __this, int32_t index, int32_t count, float item, IComparer_1_System_Single_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01749550, void, List_1_System_Single__Clear, (List_1_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC5F0, List_1_System_Single__Clear__MethodInfo); DO_APP_FUNC(0x0176EEB0, bool, List_1_System_Single__Contains, (List_1_System_Single_ * __this, float item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_System_Single__CopyTo, (List_1_System_Single_ * __this, Single__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_System_Single__CopyTo_1, (List_1_System_Single_ * __this, Single__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -168586,6 +185908,7 @@ DO_APP_FUNC(0x01762F60, bool, List_1_System_Single__IsCompatibleObject, (Object DO_APP_FUNC(0x0176FB00, bool, List_1_System_Single__Remove, (List_1_System_Single_ * __this, float item, MethodInfo * method)); DO_APP_FUNC(0x0179E790, int32_t, List_1_System_Single__RemoveAll, (List_1_System_Single_ * __this, Predicate_1_Single_ * match, MethodInfo * method)); DO_APP_FUNC(0x0174A620, void, List_1_System_Single__RemoveAt, (List_1_System_Single_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF72B0, List_1_System_Single__RemoveAt__MethodInfo); DO_APP_FUNC(0x0174A670, void, List_1_System_Single__RemoveRange, (List_1_System_Single_ * __this, int32_t index, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x01731D00, void, List_1_System_Single__Reverse, (List_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01731D60, void, List_1_System_Single__Reverse_1, (List_1_System_Single_ * __this, int32_t index, int32_t count, MethodInfo * method)); @@ -168613,14 +185936,19 @@ DO_APP_FUNC(0x01732000, Single__Array *, List_1_System_Single__ToArray, (List_1_ DO_APP_FUNC(0x017320E0, void, List_1_System_Single__TrimExcess, (List_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_System_Single__get_Capacity, (List_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_System_Single__get_Count, (List_1_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE49D8, List_1_System_Single__get_Count__MethodInfo); DO_APP_FUNC(0x0179D680, float, List_1_System_Single__get_Item, (List_1_System_Single_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE49E0, List_1_System_Single__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_System_Single__set_Capacity, (List_1_System_Single_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x0179D6C0, void, List_1_System_Single__set_Item, (List_1_System_Single_ * __this, int32_t index, float value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC5E8, List_1_System_Single__set_Item__MethodInfo); DO_APP_FUNC(0x017323E0, void, List_1_Discord_Sku___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_Discord_Sku___ctor, (List_1_Discord_Sku_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C6C8, List_1_Discord_Sku___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_Discord_Sku___ctor_1, (List_1_Discord_Sku_ * __this, IEnumerable_1_Discord_Sku_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_Discord_Sku___ctor_2, (List_1_Discord_Sku_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x01759420, void, List_1_Discord_Sku__Add, (List_1_Discord_Sku_ * __this, Sku item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C6D0, List_1_Discord_Sku__Add__MethodInfo); DO_APP_FUNC(0x0179EFC0, void, List_1_Discord_Sku__AddEnumerable, (List_1_Discord_Sku_ * __this, IEnumerable_1_Discord_Sku_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_Discord_Sku__AddRange, (List_1_Discord_Sku_ * __this, IEnumerable_1_Discord_Sku_ * collection, MethodInfo * method)); DO_APP_FUNC(0x01759520, void, List_1_Discord_Sku__AddWithResize, (List_1_Discord_Sku_ * __this, Sku item, MethodInfo * method)); @@ -168738,11 +186066,13 @@ DO_APP_FUNC(0x0172FC90, void, List_1_System_Net_Security_SslApplicationProtocol_ DO_APP_FUNC(0x0172FEB0, void, List_1_System_Net_Security_SslApplicationProtocol__set_Item, (List_1_System_Net_Security_SslApplicationProtocol_ * __this, int32_t index, SslApplicationProtocol value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_Steamworks_SteamItemDef_t___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_Steamworks_SteamItemDef_t___ctor, (List_1_Steamworks_SteamItemDef_t_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1BC00, List_1_Steamworks_SteamItemDef_t___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_Steamworks_SteamItemDef_t___ctor_1, (List_1_Steamworks_SteamItemDef_t_ * __this, IEnumerable_1_Steamworks_SteamItemDef_t_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_Steamworks_SteamItemDef_t___ctor_2, (List_1_Steamworks_SteamItemDef_t_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x003ECFF0, void, List_1_Steamworks_SteamItemDef_t__Add, (List_1_Steamworks_SteamItemDef_t_ * __this, SteamItemDef_t item, MethodInfo * method)); DO_APP_FUNC(0x0179FD80, void, List_1_Steamworks_SteamItemDef_t__AddEnumerable, (List_1_Steamworks_SteamItemDef_t_ * __this, IEnumerable_1_Steamworks_SteamItemDef_t_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_Steamworks_SteamItemDef_t__AddRange, (List_1_Steamworks_SteamItemDef_t_ * __this, IEnumerable_1_Steamworks_SteamItemDef_t_ * collection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1BDD0, List_1_Steamworks_SteamItemDef_t__AddRange__MethodInfo); DO_APP_FUNC(0x017631D0, void, List_1_Steamworks_SteamItemDef_t__AddWithResize, (List_1_Steamworks_SteamItemDef_t_ * __this, SteamItemDef_t item, MethodInfo * method)); DO_APP_FUNC(0x01730510, ReadOnlyCollection_1_Steamworks_SteamItemDef_t_ *, List_1_Steamworks_SteamItemDef_t__AsReadOnly, (List_1_Steamworks_SteamItemDef_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x017633A0, int32_t, List_1_Steamworks_SteamItemDef_t__BinarySearch, (List_1_Steamworks_SteamItemDef_t_ * __this, SteamItemDef_t item, MethodInfo * method)); @@ -168750,16 +186080,19 @@ DO_APP_FUNC(0x01763420, int32_t, List_1_Steamworks_SteamItemDef_t__BinarySearch_ DO_APP_FUNC(0x017493B0, int32_t, List_1_Steamworks_SteamItemDef_t__BinarySearch_2, (List_1_Steamworks_SteamItemDef_t_ * __this, int32_t index, int32_t count, SteamItemDef_t item, IComparer_1_Steamworks_SteamItemDef_t_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01749550, void, List_1_Steamworks_SteamItemDef_t__Clear, (List_1_Steamworks_SteamItemDef_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01749560, bool, List_1_Steamworks_SteamItemDef_t__Contains, (List_1_Steamworks_SteamItemDef_t_ * __this, SteamItemDef_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1BC08, List_1_Steamworks_SteamItemDef_t__Contains__MethodInfo); DO_APP_FUNC(0x017308F0, void, List_1_Steamworks_SteamItemDef_t__CopyTo, (List_1_Steamworks_SteamItemDef_t_ * __this, SteamItemDef_t__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_Steamworks_SteamItemDef_t__CopyTo_1, (List_1_Steamworks_SteamItemDef_t_ * __this, SteamItemDef_t__Array * array, int32_t arrayIndex, MethodInfo * method)); DO_APP_FUNC(0x01730970, void, List_1_Steamworks_SteamItemDef_t__EnsureCapacity, (List_1_Steamworks_SteamItemDef_t_ * __this, int32_t min, MethodInfo * method)); DO_APP_FUNC(0x017309E0, bool, List_1_Steamworks_SteamItemDef_t__Exists, (List_1_Steamworks_SteamItemDef_t_ * __this, Predicate_1_Steamworks_SteamItemDef_t_ * match, MethodInfo * method)); DO_APP_FUNC(0x017635D0, SteamItemDef_t, List_1_Steamworks_SteamItemDef_t__Find, (List_1_Steamworks_SteamItemDef_t_ * __this, Predicate_1_Steamworks_SteamItemDef_t_ * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB4D0, List_1_Steamworks_SteamItemDef_t__Find__MethodInfo); DO_APP_FUNC(0x017636A0, List_1_Steamworks_SteamItemDef_t_ *, List_1_Steamworks_SteamItemDef_t__FindAll, (List_1_Steamworks_SteamItemDef_t_ * __this, Predicate_1_Steamworks_SteamItemDef_t_ * match, MethodInfo * method)); DO_APP_FUNC(0x01730C90, int32_t, List_1_Steamworks_SteamItemDef_t__FindIndex, (List_1_Steamworks_SteamItemDef_t_ * __this, Predicate_1_Steamworks_SteamItemDef_t_ * match, MethodInfo * method)); DO_APP_FUNC(0x01763800, int32_t, List_1_Steamworks_SteamItemDef_t__FindIndex_1, (List_1_Steamworks_SteamItemDef_t_ * __this, int32_t startIndex, int32_t count, Predicate_1_Steamworks_SteamItemDef_t_ * match, MethodInfo * method)); DO_APP_FUNC(0x01763900, void, List_1_Steamworks_SteamItemDef_t__ForEach, (List_1_Steamworks_SteamItemDef_t_ * __this, Action_1_Steamworks_SteamItemDef_t_ * action, MethodInfo * method)); DO_APP_FUNC(0x017639C0, List_1_T_Enumerator_Steamworks_SteamItemDef_t_, List_1_Steamworks_SteamItemDef_t__GetEnumerator, (List_1_Steamworks_SteamItemDef_t_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D171E8, List_1_Steamworks_SteamItemDef_t__GetEnumerator__MethodInfo); DO_APP_FUNC(0x01749C30, int32_t, List_1_Steamworks_SteamItemDef_t__IndexOf, (List_1_Steamworks_SteamItemDef_t_ * __this, SteamItemDef_t item, MethodInfo * method)); DO_APP_FUNC(0x01763C50, void, List_1_Steamworks_SteamItemDef_t__Insert, (List_1_Steamworks_SteamItemDef_t_ * __this, int32_t index, SteamItemDef_t item, MethodInfo * method)); DO_APP_FUNC(0x0179FA30, void, List_1_Steamworks_SteamItemDef_t__InsertRange, (List_1_Steamworks_SteamItemDef_t_ * __this, int32_t index, IEnumerable_1_Steamworks_SteamItemDef_t_ * collection, MethodInfo * method)); @@ -168793,6 +186126,7 @@ DO_APP_FUNC(0x01732000, SteamItemDef_t__Array *, List_1_Steamworks_SteamItemDef_ DO_APP_FUNC(0x017320E0, void, List_1_Steamworks_SteamItemDef_t__TrimExcess, (List_1_Steamworks_SteamItemDef_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_Steamworks_SteamItemDef_t__get_Capacity, (List_1_Steamworks_SteamItemDef_t_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_Steamworks_SteamItemDef_t__get_Count, (List_1_Steamworks_SteamItemDef_t_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1BDC8, List_1_Steamworks_SteamItemDef_t__get_Count__MethodInfo); DO_APP_FUNC(0x01762EE0, SteamItemDef_t, List_1_Steamworks_SteamItemDef_t__get_Item, (List_1_Steamworks_SteamItemDef_t_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x0172FC90, void, List_1_Steamworks_SteamItemDef_t__set_Capacity, (List_1_Steamworks_SteamItemDef_t_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01762F20, void, List_1_Steamworks_SteamItemDef_t__set_Item, (List_1_Steamworks_SteamItemDef_t_ * __this, int32_t index, SteamItemDef_t value, MethodInfo * method)); @@ -168858,17 +186192,22 @@ DO_APP_FUNC(0x0172FC90, void, List_1_Steamworks_SteamItemDetails_t__set_Capacity DO_APP_FUNC(0x01751320, void, List_1_Steamworks_SteamItemDetails_t__set_Item, (List_1_Steamworks_SteamItemDetails_t_ * __this, int32_t index, SteamItemDetails_t value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_UIElements_StylePropertyName___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_UIElements_StylePropertyName___ctor, (List_1_UnityEngine_UIElements_StylePropertyName_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6FF8, List_1_UnityEngine_UIElements_StylePropertyName___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_UIElements_StylePropertyName___ctor_1, (List_1_UnityEngine_UIElements_StylePropertyName_ * __this, IEnumerable_1_UnityEngine_UIElements_StylePropertyName_ * collection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEAED8, List_1_UnityEngine_UIElements_StylePropertyName___ctor_1__MethodInfo); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_UIElements_StylePropertyName___ctor_2, (List_1_UnityEngine_UIElements_StylePropertyName_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x01746CB0, void, List_1_UnityEngine_UIElements_StylePropertyName__Add, (List_1_UnityEngine_UIElements_StylePropertyName_ * __this, StylePropertyName item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6FB0, List_1_UnityEngine_UIElements_StylePropertyName__Add__MethodInfo); DO_APP_FUNC(0x017A0B50, void, List_1_UnityEngine_UIElements_StylePropertyName__AddEnumerable, (List_1_UnityEngine_UIElements_StylePropertyName_ * __this, IEnumerable_1_UnityEngine_UIElements_StylePropertyName_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_UnityEngine_UIElements_StylePropertyName__AddRange, (List_1_UnityEngine_UIElements_StylePropertyName_ * __this, IEnumerable_1_UnityEngine_UIElements_StylePropertyName_ * collection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEAEB8, List_1_UnityEngine_UIElements_StylePropertyName__AddRange__MethodInfo); DO_APP_FUNC(0x01746D90, void, List_1_UnityEngine_UIElements_StylePropertyName__AddWithResize, (List_1_UnityEngine_UIElements_StylePropertyName_ * __this, StylePropertyName item, MethodInfo * method)); DO_APP_FUNC(0x01730510, ReadOnlyCollection_1_UnityEngine_UIElements_StylePropertyName_ *, List_1_UnityEngine_UIElements_StylePropertyName__AsReadOnly, (List_1_UnityEngine_UIElements_StylePropertyName_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01730630, int32_t, List_1_UnityEngine_UIElements_StylePropertyName__BinarySearch, (List_1_UnityEngine_UIElements_StylePropertyName_ * __this, StylePropertyName item, MethodInfo * method)); DO_APP_FUNC(0x017306C0, int32_t, List_1_UnityEngine_UIElements_StylePropertyName__BinarySearch_1, (List_1_UnityEngine_UIElements_StylePropertyName_ * __this, StylePropertyName item, IComparer_1_UnityEngine_UIElements_StylePropertyName_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01730590, int32_t, List_1_UnityEngine_UIElements_StylePropertyName__BinarySearch_2, (List_1_UnityEngine_UIElements_StylePropertyName_ * __this, int32_t index, int32_t count, StylePropertyName item, IComparer_1_UnityEngine_UIElements_StylePropertyName_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x003CB200, void, List_1_UnityEngine_UIElements_StylePropertyName__Clear, (List_1_UnityEngine_UIElements_StylePropertyName_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7008, List_1_UnityEngine_UIElements_StylePropertyName__Clear__MethodInfo); DO_APP_FUNC(0x01730760, bool, List_1_UnityEngine_UIElements_StylePropertyName__Contains, (List_1_UnityEngine_UIElements_StylePropertyName_ * __this, StylePropertyName item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_UnityEngine_UIElements_StylePropertyName__CopyTo, (List_1_UnityEngine_UIElements_StylePropertyName_ * __this, StylePropertyName__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_UnityEngine_UIElements_StylePropertyName__CopyTo_1, (List_1_UnityEngine_UIElements_StylePropertyName_ * __this, StylePropertyName__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -168880,6 +186219,7 @@ DO_APP_FUNC(0x01730C90, int32_t, List_1_UnityEngine_UIElements_StylePropertyName DO_APP_FUNC(0x01730CE0, int32_t, List_1_UnityEngine_UIElements_StylePropertyName__FindIndex_1, (List_1_UnityEngine_UIElements_StylePropertyName_ * __this, int32_t startIndex, int32_t count, Predicate_1_UnityEngine_UIElements_StylePropertyName_ * match, MethodInfo * method)); DO_APP_FUNC(0x01730DF0, void, List_1_UnityEngine_UIElements_StylePropertyName__ForEach, (List_1_UnityEngine_UIElements_StylePropertyName_ * __this, Action_1_UnityEngine_UIElements_StylePropertyName_ * action, MethodInfo * method)); DO_APP_FUNC(0x01730EC0, List_1_T_Enumerator_UnityEngine_UIElements_StylePropertyName_, List_1_UnityEngine_UIElements_StylePropertyName__GetEnumerator, (List_1_UnityEngine_UIElements_StylePropertyName_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6570, List_1_UnityEngine_UIElements_StylePropertyName__GetEnumerator__MethodInfo); DO_APP_FUNC(0x01731030, int32_t, List_1_UnityEngine_UIElements_StylePropertyName__IndexOf, (List_1_UnityEngine_UIElements_StylePropertyName_ * __this, StylePropertyName item, MethodInfo * method)); DO_APP_FUNC(0x01746E50, void, List_1_UnityEngine_UIElements_StylePropertyName__Insert, (List_1_UnityEngine_UIElements_StylePropertyName_ * __this, int32_t index, StylePropertyName item, MethodInfo * method)); DO_APP_FUNC(0x017A0790, void, List_1_UnityEngine_UIElements_StylePropertyName__InsertRange, (List_1_UnityEngine_UIElements_StylePropertyName_ * __this, int32_t index, IEnumerable_1_UnityEngine_UIElements_StylePropertyName_ * collection, MethodInfo * method)); @@ -168913,22 +186253,28 @@ DO_APP_FUNC(0x01732000, StylePropertyName__Array *, List_1_UnityEngine_UIElement DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_UIElements_StylePropertyName__TrimExcess, (List_1_UnityEngine_UIElements_StylePropertyName_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_UIElements_StylePropertyName__get_Capacity, (List_1_UnityEngine_UIElements_StylePropertyName_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_UIElements_StylePropertyName__get_Count, (List_1_UnityEngine_UIElements_StylePropertyName_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5F08, List_1_UnityEngine_UIElements_StylePropertyName__get_Count__MethodInfo); DO_APP_FUNC(0x0172FE60, StylePropertyName, List_1_UnityEngine_UIElements_StylePropertyName__get_Item, (List_1_UnityEngine_UIElements_StylePropertyName_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC2E0, List_1_UnityEngine_UIElements_StylePropertyName__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_UIElements_StylePropertyName__set_Capacity, (List_1_UnityEngine_UIElements_StylePropertyName_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01746C10, void, List_1_UnityEngine_UIElements_StylePropertyName__set_Item, (List_1_UnityEngine_UIElements_StylePropertyName_ * __this, int32_t index, StylePropertyName value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue___ctor, (List_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDBEE0, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue___ctor_1, (List_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, IEnumerable_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue___ctor_2, (List_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x017301E0, void, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue__Add, (List_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, StylePropertyValue item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDBF28, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue__Add__MethodInfo); DO_APP_FUNC(0x017A1260, void, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue__AddEnumerable, (List_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, IEnumerable_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue__AddRange, (List_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, IEnumerable_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * collection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDBF38, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue__AddRange__MethodInfo); DO_APP_FUNC(0x017302C0, void, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue__AddWithResize, (List_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, StylePropertyValue item, MethodInfo * method)); DO_APP_FUNC(0x01730510, ReadOnlyCollection_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ *, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue__AsReadOnly, (List_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01730630, int32_t, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue__BinarySearch, (List_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, StylePropertyValue item, MethodInfo * method)); DO_APP_FUNC(0x017306C0, int32_t, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue__BinarySearch_1, (List_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, StylePropertyValue item, IComparer_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01730590, int32_t, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue__BinarySearch_2, (List_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, int32_t index, int32_t count, StylePropertyValue item, IComparer_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x003CB200, void, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue__Clear, (List_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDBF30, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue__Clear__MethodInfo); DO_APP_FUNC(0x01730760, bool, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue__Contains, (List_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, StylePropertyValue item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue__CopyTo, (List_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, StylePropertyValue__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue__CopyTo_1, (List_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, StylePropertyValue__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -168973,11 +186319,14 @@ DO_APP_FUNC(0x01732000, StylePropertyValue__Array *, List_1_UnityEngine_UIElemen DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue__TrimExcess, (List_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue__get_Capacity, (List_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue__get_Count, (List_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDBF20, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue__get_Count__MethodInfo); DO_APP_FUNC(0x0172FE60, StylePropertyValue, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue__get_Item, (List_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDBFA0, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue__set_Capacity, (List_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x0172FEB0, void, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue__set_Item, (List_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * __this, int32_t index, StylePropertyValue value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_UIElements_StyleSelectorPart___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_UIElements_StyleSelectorPart___ctor, (List_1_UnityEngine_UIElements_StyleSelectorPart_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB69B8, List_1_UnityEngine_UIElements_StyleSelectorPart___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_UIElements_StyleSelectorPart___ctor_1, (List_1_UnityEngine_UIElements_StyleSelectorPart_ * __this, IEnumerable_1_UnityEngine_UIElements_StyleSelectorPart_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_UIElements_StyleSelectorPart___ctor_2, (List_1_UnityEngine_UIElements_StyleSelectorPart_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x0174B8D0, void, List_1_UnityEngine_UIElements_StyleSelectorPart__Add, (List_1_UnityEngine_UIElements_StyleSelectorPart_ * __this, StyleSelectorPart item, MethodInfo * method)); @@ -168990,6 +186339,7 @@ DO_APP_FUNC(0x01745310, int32_t, List_1_UnityEngine_UIElements_StyleSelectorPart DO_APP_FUNC(0x017453B0, int32_t, List_1_UnityEngine_UIElements_StyleSelectorPart__BinarySearch_1, (List_1_UnityEngine_UIElements_StyleSelectorPart_ * __this, StyleSelectorPart item, IComparer_1_UnityEngine_UIElements_StyleSelectorPart_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01745250, int32_t, List_1_UnityEngine_UIElements_StyleSelectorPart__BinarySearch_2, (List_1_UnityEngine_UIElements_StyleSelectorPart_ * __this, int32_t index, int32_t count, StyleSelectorPart item, IComparer_1_UnityEngine_UIElements_StyleSelectorPart_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x003CB200, void, List_1_UnityEngine_UIElements_StyleSelectorPart__Clear, (List_1_UnityEngine_UIElements_StyleSelectorPart_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6900, List_1_UnityEngine_UIElements_StyleSelectorPart__Clear__MethodInfo); DO_APP_FUNC(0x01745450, bool, List_1_UnityEngine_UIElements_StyleSelectorPart__Contains, (List_1_UnityEngine_UIElements_StyleSelectorPart_ * __this, StyleSelectorPart item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_UnityEngine_UIElements_StyleSelectorPart__CopyTo, (List_1_UnityEngine_UIElements_StyleSelectorPart_ * __this, StyleSelectorPart__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_UnityEngine_UIElements_StyleSelectorPart__CopyTo_1, (List_1_UnityEngine_UIElements_StyleSelectorPart_ * __this, StyleSelectorPart__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -169031,17 +186381,21 @@ DO_APP_FUNC(0x0041AF00, bool, List_1_UnityEngine_UIElements_StyleSelectorPart__S DO_APP_FUNC(0x01744D40, Object *, List_1_UnityEngine_UIElements_StyleSelectorPart__System_Collections_IList_get_Item, (List_1_UnityEngine_UIElements_StyleSelectorPart_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01744DC0, void, List_1_UnityEngine_UIElements_StyleSelectorPart__System_Collections_IList_set_Item, (List_1_UnityEngine_UIElements_StyleSelectorPart_ * __this, int32_t index, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01732000, StyleSelectorPart__Array *, List_1_UnityEngine_UIElements_StyleSelectorPart__ToArray, (List_1_UnityEngine_UIElements_StyleSelectorPart_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6918, List_1_UnityEngine_UIElements_StyleSelectorPart__ToArray__MethodInfo); DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_UIElements_StyleSelectorPart__TrimExcess, (List_1_UnityEngine_UIElements_StyleSelectorPart_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_UIElements_StyleSelectorPart__get_Capacity, (List_1_UnityEngine_UIElements_StyleSelectorPart_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_UIElements_StyleSelectorPart__get_Count, (List_1_UnityEngine_UIElements_StyleSelectorPart_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6938, List_1_UnityEngine_UIElements_StyleSelectorPart__get_Count__MethodInfo); DO_APP_FUNC(0x01744B50, StyleSelectorPart, List_1_UnityEngine_UIElements_StyleSelectorPart__get_Item, (List_1_UnityEngine_UIElements_StyleSelectorPart_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_UIElements_StyleSelectorPart__set_Capacity, (List_1_UnityEngine_UIElements_StyleSelectorPart_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x0174B820, void, List_1_UnityEngine_UIElements_StyleSelectorPart__set_Item, (List_1_UnityEngine_UIElements_StyleSelectorPart_ * __this, int32_t index, StyleSelectorPart value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken___ctor, (List_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB390, List_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken___ctor_1, (List_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ * __this, IEnumerable_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken___ctor_2, (List_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x0175C980, void, List_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__Add, (List_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ * __this, StyleSyntaxToken item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB578, List_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__Add__MethodInfo); DO_APP_FUNC(0x017A20A0, void, List_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__AddEnumerable, (List_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ * __this, IEnumerable_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__AddRange, (List_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ * __this, IEnumerable_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0175CA70, void, List_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__AddWithResize, (List_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ * __this, StyleSyntaxToken item, MethodInfo * method)); @@ -169050,6 +186404,7 @@ DO_APP_FUNC(0x01745310, int32_t, List_1_UnityEngine_UIElements_StyleSheets_Synta DO_APP_FUNC(0x017453B0, int32_t, List_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__BinarySearch_1, (List_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ * __this, StyleSyntaxToken item, IComparer_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01745250, int32_t, List_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__BinarySearch_2, (List_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ * __this, int32_t index, int32_t count, StyleSyntaxToken item, IComparer_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x003CB200, void, List_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__Clear, (List_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB588, List_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__Clear__MethodInfo); DO_APP_FUNC(0x01745450, bool, List_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__Contains, (List_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ * __this, StyleSyntaxToken item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__CopyTo, (List_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ * __this, StyleSyntaxToken__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__CopyTo_1, (List_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ * __this, StyleSyntaxToken__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -169094,14 +186449,18 @@ DO_APP_FUNC(0x01732000, StyleSyntaxToken__Array *, List_1_UnityEngine_UIElements DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__TrimExcess, (List_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__get_Capacity, (List_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__get_Count, (List_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB530, List_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__get_Count__MethodInfo); DO_APP_FUNC(0x01744B50, StyleSyntaxToken, List_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__get_Item, (List_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB538, List_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__set_Capacity, (List_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x0175C8D0, void, List_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken__set_Item, (List_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ * __this, int32_t index, StyleSyntaxToken value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_UIElements_StyleSheets_StyleValue___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_UIElements_StyleSheets_StyleValue___ctor, (List_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5E60, List_1_UnityEngine_UIElements_StyleSheets_StyleValue___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_UIElements_StyleSheets_StyleValue___ctor_1, (List_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * __this, IEnumerable_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_UIElements_StyleSheets_StyleValue___ctor_2, (List_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x017728C0, void, List_1_UnityEngine_UIElements_StyleSheets_StyleValue__Add, (List_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * __this, StyleValue item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5E50, List_1_UnityEngine_UIElements_StyleSheets_StyleValue__Add__MethodInfo); DO_APP_FUNC(0x017A27C0, void, List_1_UnityEngine_UIElements_StyleSheets_StyleValue__AddEnumerable, (List_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * __this, IEnumerable_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_UnityEngine_UIElements_StyleSheets_StyleValue__AddRange, (List_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * __this, IEnumerable_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * collection, MethodInfo * method)); DO_APP_FUNC(0x01772950, void, List_1_UnityEngine_UIElements_StyleSheets_StyleValue__AddWithResize, (List_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * __this, StyleValue item, MethodInfo * method)); @@ -169121,6 +186480,7 @@ DO_APP_FUNC(0x01730C90, int32_t, List_1_UnityEngine_UIElements_StyleSheets_Style DO_APP_FUNC(0x017458C0, int32_t, List_1_UnityEngine_UIElements_StyleSheets_StyleValue__FindIndex_1, (List_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * __this, int32_t startIndex, int32_t count, Predicate_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * match, MethodInfo * method)); DO_APP_FUNC(0x017459E0, void, List_1_UnityEngine_UIElements_StyleSheets_StyleValue__ForEach, (List_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * __this, Action_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * action, MethodInfo * method)); DO_APP_FUNC(0x01745AB0, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValue_, List_1_UnityEngine_UIElements_StyleSheets_StyleValue__GetEnumerator, (List_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6B90, List_1_UnityEngine_UIElements_StyleSheets_StyleValue__GetEnumerator__MethodInfo); DO_APP_FUNC(0x01745C30, int32_t, List_1_UnityEngine_UIElements_StyleSheets_StyleValue__IndexOf, (List_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * __this, StyleValue item, MethodInfo * method)); DO_APP_FUNC(0x017729D0, void, List_1_UnityEngine_UIElements_StyleSheets_StyleValue__Insert, (List_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * __this, int32_t index, StyleValue item, MethodInfo * method)); DO_APP_FUNC(0x017A23F0, void, List_1_UnityEngine_UIElements_StyleSheets_StyleValue__InsertRange, (List_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * __this, int32_t index, IEnumerable_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * collection, MethodInfo * method)); @@ -169128,6 +186488,7 @@ DO_APP_FUNC(0x01744C60, bool, List_1_UnityEngine_UIElements_StyleSheets_StyleVal DO_APP_FUNC(0x01746430, bool, List_1_UnityEngine_UIElements_StyleSheets_StyleValue__Remove, (List_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * __this, StyleValue item, MethodInfo * method)); DO_APP_FUNC(0x01772E80, int32_t, List_1_UnityEngine_UIElements_StyleSheets_StyleValue__RemoveAll, (List_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * __this, Predicate_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * match, MethodInfo * method)); DO_APP_FUNC(0x0174A620, void, List_1_UnityEngine_UIElements_StyleSheets_StyleValue__RemoveAt, (List_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5E40, List_1_UnityEngine_UIElements_StyleSheets_StyleValue__RemoveAt__MethodInfo); DO_APP_FUNC(0x0174A670, void, List_1_UnityEngine_UIElements_StyleSheets_StyleValue__RemoveRange, (List_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * __this, int32_t index, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x01731D00, void, List_1_UnityEngine_UIElements_StyleSheets_StyleValue__Reverse, (List_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01731D60, void, List_1_UnityEngine_UIElements_StyleSheets_StyleValue__Reverse_1, (List_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * __this, int32_t index, int32_t count, MethodInfo * method)); @@ -169154,9 +186515,12 @@ DO_APP_FUNC(0x01732000, StyleValue__Array *, List_1_UnityEngine_UIElements_Style DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_UIElements_StyleSheets_StyleValue__TrimExcess, (List_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_UIElements_StyleSheets_StyleValue__get_Capacity, (List_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_UIElements_StyleSheets_StyleValue__get_Count, (List_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5E48, List_1_UnityEngine_UIElements_StyleSheets_StyleValue__get_Count__MethodInfo); DO_APP_FUNC(0x01744B50, StyleValue, List_1_UnityEngine_UIElements_StyleSheets_StyleValue__get_Item, (List_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5E30, List_1_UnityEngine_UIElements_StyleSheets_StyleValue__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_UIElements_StyleSheets_StyleValue__set_Capacity, (List_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01772860, void, List_1_UnityEngine_UIElements_StyleSheets_StyleValue__set_Item, (List_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * __this, int32_t index, StyleValue value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5E38, List_1_UnityEngine_UIElements_StyleSheets_StyleValue__set_Item__MethodInfo); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged___ctor, (List_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged___ctor_1, (List_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged_ * __this, IEnumerable_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged_ * collection, MethodInfo * method)); @@ -169181,6 +186545,7 @@ DO_APP_FUNC(0x01730C90, int32_t, List_1_UnityEngine_UIElements_StyleSheets_Style DO_APP_FUNC(0x01730CE0, int32_t, List_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged__FindIndex_1, (List_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged_ * __this, int32_t startIndex, int32_t count, Predicate_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged_ * match, MethodInfo * method)); DO_APP_FUNC(0x01730DF0, void, List_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged__ForEach, (List_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged_ * __this, Action_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged_ * action, MethodInfo * method)); DO_APP_FUNC(0x01730EC0, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StyleValueManaged_, List_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged__GetEnumerator, (List_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5E78, List_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged__GetEnumerator__MethodInfo); DO_APP_FUNC(0x01731030, int32_t, List_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged__IndexOf, (List_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged_ * __this, StyleValueManaged item, MethodInfo * method)); DO_APP_FUNC(0x01746E50, void, List_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged__Insert, (List_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged_ * __this, int32_t index, StyleValueManaged item, MethodInfo * method)); DO_APP_FUNC(0x017A2B10, void, List_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged__InsertRange, (List_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged_ * __this, int32_t index, IEnumerable_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged_ * collection, MethodInfo * method)); @@ -169219,17 +186584,22 @@ DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_UIElements_StyleSheets_StyleVal DO_APP_FUNC(0x01746C10, void, List_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged__set_Item, (List_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged_ * __this, int32_t index, StyleValueManaged value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_UIElements_StyleVariable___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_UIElements_StyleVariable___ctor, (List_1_UnityEngine_UIElements_StyleVariable_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEAA80, List_1_UnityEngine_UIElements_StyleVariable___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_UIElements_StyleVariable___ctor_1, (List_1_UnityEngine_UIElements_StyleVariable_ * __this, IEnumerable_1_UnityEngine_UIElements_StyleVariable_ * collection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA868, List_1_UnityEngine_UIElements_StyleVariable___ctor_1__MethodInfo); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_UIElements_StyleVariable___ctor_2, (List_1_UnityEngine_UIElements_StyleVariable_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x0174B8D0, void, List_1_UnityEngine_UIElements_StyleVariable__Add, (List_1_UnityEngine_UIElements_StyleVariable_ * __this, StyleVariable item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEAA20, List_1_UnityEngine_UIElements_StyleVariable__Add__MethodInfo); DO_APP_FUNC(0x017A35F0, void, List_1_UnityEngine_UIElements_StyleVariable__AddEnumerable, (List_1_UnityEngine_UIElements_StyleVariable_ * __this, IEnumerable_1_UnityEngine_UIElements_StyleVariable_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_UnityEngine_UIElements_StyleVariable__AddRange, (List_1_UnityEngine_UIElements_StyleVariable_ * __this, IEnumerable_1_UnityEngine_UIElements_StyleVariable_ * collection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEAA10, List_1_UnityEngine_UIElements_StyleVariable__AddRange__MethodInfo); DO_APP_FUNC(0x0174B9C0, void, List_1_UnityEngine_UIElements_StyleVariable__AddWithResize, (List_1_UnityEngine_UIElements_StyleVariable_ * __this, StyleVariable item, MethodInfo * method)); DO_APP_FUNC(0x01730510, ReadOnlyCollection_1_UnityEngine_UIElements_StyleVariable_ *, List_1_UnityEngine_UIElements_StyleVariable__AsReadOnly, (List_1_UnityEngine_UIElements_StyleVariable_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01745310, int32_t, List_1_UnityEngine_UIElements_StyleVariable__BinarySearch, (List_1_UnityEngine_UIElements_StyleVariable_ * __this, StyleVariable item, MethodInfo * method)); DO_APP_FUNC(0x017453B0, int32_t, List_1_UnityEngine_UIElements_StyleVariable__BinarySearch_1, (List_1_UnityEngine_UIElements_StyleVariable_ * __this, StyleVariable item, IComparer_1_UnityEngine_UIElements_StyleVariable_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01745250, int32_t, List_1_UnityEngine_UIElements_StyleVariable__BinarySearch_2, (List_1_UnityEngine_UIElements_StyleVariable_ * __this, int32_t index, int32_t count, StyleVariable item, IComparer_1_UnityEngine_UIElements_StyleVariable_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x003CB200, void, List_1_UnityEngine_UIElements_StyleVariable__Clear, (List_1_UnityEngine_UIElements_StyleVariable_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEAA90, List_1_UnityEngine_UIElements_StyleVariable__Clear__MethodInfo); DO_APP_FUNC(0x01745450, bool, List_1_UnityEngine_UIElements_StyleVariable__Contains, (List_1_UnityEngine_UIElements_StyleVariable_ * __this, StyleVariable item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_UnityEngine_UIElements_StyleVariable__CopyTo, (List_1_UnityEngine_UIElements_StyleVariable_ * __this, StyleVariable__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_UnityEngine_UIElements_StyleVariable__CopyTo_1, (List_1_UnityEngine_UIElements_StyleVariable_ * __this, StyleVariable__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -169274,7 +186644,9 @@ DO_APP_FUNC(0x01732000, StyleVariable__Array *, List_1_UnityEngine_UIElements_St DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_UIElements_StyleVariable__TrimExcess, (List_1_UnityEngine_UIElements_StyleVariable_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_UIElements_StyleVariable__get_Capacity, (List_1_UnityEngine_UIElements_StyleVariable_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_UIElements_StyleVariable__get_Count, (List_1_UnityEngine_UIElements_StyleVariable_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEAA18, List_1_UnityEngine_UIElements_StyleVariable__get_Count__MethodInfo); DO_APP_FUNC(0x01744B50, StyleVariable, List_1_UnityEngine_UIElements_StyleVariable__get_Item, (List_1_UnityEngine_UIElements_StyleVariable_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA860, List_1_UnityEngine_UIElements_StyleVariable__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_UIElements_StyleVariable__set_Capacity, (List_1_UnityEngine_UIElements_StyleVariable_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x0174B820, void, List_1_UnityEngine_UIElements_StyleVariable__set_Item, (List_1_UnityEngine_UIElements_StyleVariable_ * __this, int32_t index, StyleVariable value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_Rendering_SubMeshDescriptor___cctor, (MethodInfo * method)); @@ -169334,6 +186706,7 @@ DO_APP_FUNC(0x01732000, SubMeshDescriptor__Array *, List_1_UnityEngine_Rendering DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_Rendering_SubMeshDescriptor__TrimExcess, (List_1_UnityEngine_Rendering_SubMeshDescriptor_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_Rendering_SubMeshDescriptor__get_Capacity, (List_1_UnityEngine_Rendering_SubMeshDescriptor_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_Rendering_SubMeshDescriptor__get_Count, (List_1_UnityEngine_Rendering_SubMeshDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03900, List_1_UnityEngine_Rendering_SubMeshDescriptor__get_Count__MethodInfo); DO_APP_FUNC(0x0176C6E0, SubMeshDescriptor, List_1_UnityEngine_Rendering_SubMeshDescriptor__get_Item, (List_1_UnityEngine_Rendering_SubMeshDescriptor_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_Rendering_SubMeshDescriptor__set_Capacity, (List_1_UnityEngine_Rendering_SubMeshDescriptor_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x017A3940, void, List_1_UnityEngine_Rendering_SubMeshDescriptor__set_Item, (List_1_UnityEngine_Rendering_SubMeshDescriptor_ * __this, int32_t index, SubMeshDescriptor value, MethodInfo * method)); @@ -169459,17 +186832,22 @@ DO_APP_FUNC(0x0172FC90, void, List_1_System_TimeSpan__set_Capacity, (List_1_Syst DO_APP_FUNC(0x01748ED0, void, List_1_System_TimeSpan__set_Item, (List_1_System_TimeSpan_ * __this, int32_t index, TimeSpan value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_UIElements_TimeValue___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_UIElements_TimeValue___ctor, (List_1_UnityEngine_UIElements_TimeValue_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9A50, List_1_UnityEngine_UIElements_TimeValue___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_UIElements_TimeValue___ctor_1, (List_1_UnityEngine_UIElements_TimeValue_ * __this, IEnumerable_1_UnityEngine_UIElements_TimeValue_ * collection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEAED0, List_1_UnityEngine_UIElements_TimeValue___ctor_1__MethodInfo); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_UIElements_TimeValue___ctor_2, (List_1_UnityEngine_UIElements_TimeValue_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x01749180, void, List_1_UnityEngine_UIElements_TimeValue__Add, (List_1_UnityEngine_UIElements_TimeValue_ * __this, TimeValue item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9A58, List_1_UnityEngine_UIElements_TimeValue__Add__MethodInfo); DO_APP_FUNC(0x017A5550, void, List_1_UnityEngine_UIElements_TimeValue__AddEnumerable, (List_1_UnityEngine_UIElements_TimeValue_ * __this, IEnumerable_1_UnityEngine_UIElements_TimeValue_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_UnityEngine_UIElements_TimeValue__AddRange, (List_1_UnityEngine_UIElements_TimeValue_ * __this, IEnumerable_1_UnityEngine_UIElements_TimeValue_ * collection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEAEA8, List_1_UnityEngine_UIElements_TimeValue__AddRange__MethodInfo); DO_APP_FUNC(0x017491E0, void, List_1_UnityEngine_UIElements_TimeValue__AddWithResize, (List_1_UnityEngine_UIElements_TimeValue_ * __this, TimeValue item, MethodInfo * method)); DO_APP_FUNC(0x01730510, ReadOnlyCollection_1_UnityEngine_UIElements_TimeValue_ *, List_1_UnityEngine_UIElements_TimeValue__AsReadOnly, (List_1_UnityEngine_UIElements_TimeValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01749440, int32_t, List_1_UnityEngine_UIElements_TimeValue__BinarySearch, (List_1_UnityEngine_UIElements_TimeValue_ * __this, TimeValue item, MethodInfo * method)); DO_APP_FUNC(0x017494C0, int32_t, List_1_UnityEngine_UIElements_TimeValue__BinarySearch_1, (List_1_UnityEngine_UIElements_TimeValue_ * __this, TimeValue item, IComparer_1_UnityEngine_UIElements_TimeValue_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x017493B0, int32_t, List_1_UnityEngine_UIElements_TimeValue__BinarySearch_2, (List_1_UnityEngine_UIElements_TimeValue_ * __this, int32_t index, int32_t count, TimeValue item, IComparer_1_UnityEngine_UIElements_TimeValue_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01749550, void, List_1_UnityEngine_UIElements_TimeValue__Clear, (List_1_UnityEngine_UIElements_TimeValue_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC2D0, List_1_UnityEngine_UIElements_TimeValue__Clear__MethodInfo); DO_APP_FUNC(0x01749560, bool, List_1_UnityEngine_UIElements_TimeValue__Contains, (List_1_UnityEngine_UIElements_TimeValue_ * __this, TimeValue item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_UnityEngine_UIElements_TimeValue__CopyTo, (List_1_UnityEngine_UIElements_TimeValue_ * __this, TimeValue__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_UnityEngine_UIElements_TimeValue__CopyTo_1, (List_1_UnityEngine_UIElements_TimeValue_ * __this, TimeValue__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -169481,6 +186859,7 @@ DO_APP_FUNC(0x01730C90, int32_t, List_1_UnityEngine_UIElements_TimeValue__FindIn DO_APP_FUNC(0x01749910, int32_t, List_1_UnityEngine_UIElements_TimeValue__FindIndex_1, (List_1_UnityEngine_UIElements_TimeValue_ * __this, int32_t startIndex, int32_t count, Predicate_1_UnityEngine_UIElements_TimeValue_ * match, MethodInfo * method)); DO_APP_FUNC(0x01749A10, void, List_1_UnityEngine_UIElements_TimeValue__ForEach, (List_1_UnityEngine_UIElements_TimeValue_ * __this, Action_1_UnityEngine_UIElements_TimeValue_ * action, MethodInfo * method)); DO_APP_FUNC(0x01749AD0, List_1_T_Enumerator_UnityEngine_UIElements_TimeValue_, List_1_UnityEngine_UIElements_TimeValue__GetEnumerator, (List_1_UnityEngine_UIElements_TimeValue_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5F10, List_1_UnityEngine_UIElements_TimeValue__GetEnumerator__MethodInfo); DO_APP_FUNC(0x01749C30, int32_t, List_1_UnityEngine_UIElements_TimeValue__IndexOf, (List_1_UnityEngine_UIElements_TimeValue_ * __this, TimeValue item, MethodInfo * method)); DO_APP_FUNC(0x01749DB0, void, List_1_UnityEngine_UIElements_TimeValue__Insert, (List_1_UnityEngine_UIElements_TimeValue_ * __this, int32_t index, TimeValue item, MethodInfo * method)); DO_APP_FUNC(0x017A5200, void, List_1_UnityEngine_UIElements_TimeValue__InsertRange, (List_1_UnityEngine_UIElements_TimeValue_ * __this, int32_t index, IEnumerable_1_UnityEngine_UIElements_TimeValue_ * collection, MethodInfo * method)); @@ -169514,7 +186893,9 @@ DO_APP_FUNC(0x01732000, TimeValue__Array *, List_1_UnityEngine_UIElements_TimeVa DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_UIElements_TimeValue__TrimExcess, (List_1_UnityEngine_UIElements_TimeValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_UIElements_TimeValue__get_Capacity, (List_1_UnityEngine_UIElements_TimeValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_UIElements_TimeValue__get_Count, (List_1_UnityEngine_UIElements_TimeValue_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5F38, List_1_UnityEngine_UIElements_TimeValue__get_Count__MethodInfo); DO_APP_FUNC(0x01748E90, TimeValue, List_1_UnityEngine_UIElements_TimeValue__get_Item, (List_1_UnityEngine_UIElements_TimeValue_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC2C0, List_1_UnityEngine_UIElements_TimeValue__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_UIElements_TimeValue__set_Capacity, (List_1_UnityEngine_UIElements_TimeValue_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01748ED0, void, List_1_UnityEngine_UIElements_TimeValue__set_Item, (List_1_UnityEngine_UIElements_TimeValue_ * __this, int32_t index, TimeValue value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_UIElements_TreeViewItemWrapper___cctor, (MethodInfo * method)); @@ -169522,6 +186903,7 @@ DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_UIElements_TreeViewItemWrapper_ DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_UIElements_TreeViewItemWrapper___ctor_1, (List_1_UnityEngine_UIElements_TreeViewItemWrapper_ * __this, IEnumerable_1_UnityEngine_UIElements_TreeViewItemWrapper_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_UIElements_TreeViewItemWrapper___ctor_2, (List_1_UnityEngine_UIElements_TreeViewItemWrapper_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x0175C980, void, List_1_UnityEngine_UIElements_TreeViewItemWrapper__Add, (List_1_UnityEngine_UIElements_TreeViewItemWrapper_ * __this, TreeViewItemWrapper item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDF70, List_1_UnityEngine_UIElements_TreeViewItemWrapper__Add__MethodInfo); DO_APP_FUNC(0x017A5C30, void, List_1_UnityEngine_UIElements_TreeViewItemWrapper__AddEnumerable, (List_1_UnityEngine_UIElements_TreeViewItemWrapper_ * __this, IEnumerable_1_UnityEngine_UIElements_TreeViewItemWrapper_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_UnityEngine_UIElements_TreeViewItemWrapper__AddRange, (List_1_UnityEngine_UIElements_TreeViewItemWrapper_ * __this, IEnumerable_1_UnityEngine_UIElements_TreeViewItemWrapper_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0175CA70, void, List_1_UnityEngine_UIElements_TreeViewItemWrapper__AddWithResize, (List_1_UnityEngine_UIElements_TreeViewItemWrapper_ * __this, TreeViewItemWrapper item, MethodInfo * method)); @@ -169530,6 +186912,7 @@ DO_APP_FUNC(0x01745310, int32_t, List_1_UnityEngine_UIElements_TreeViewItemWrapp DO_APP_FUNC(0x017453B0, int32_t, List_1_UnityEngine_UIElements_TreeViewItemWrapper__BinarySearch_1, (List_1_UnityEngine_UIElements_TreeViewItemWrapper_ * __this, TreeViewItemWrapper item, IComparer_1_UnityEngine_UIElements_TreeViewItemWrapper_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01745250, int32_t, List_1_UnityEngine_UIElements_TreeViewItemWrapper__BinarySearch_2, (List_1_UnityEngine_UIElements_TreeViewItemWrapper_ * __this, int32_t index, int32_t count, TreeViewItemWrapper item, IComparer_1_UnityEngine_UIElements_TreeViewItemWrapper_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x003CB200, void, List_1_UnityEngine_UIElements_TreeViewItemWrapper__Clear, (List_1_UnityEngine_UIElements_TreeViewItemWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDFA0, List_1_UnityEngine_UIElements_TreeViewItemWrapper__Clear__MethodInfo); DO_APP_FUNC(0x01745450, bool, List_1_UnityEngine_UIElements_TreeViewItemWrapper__Contains, (List_1_UnityEngine_UIElements_TreeViewItemWrapper_ * __this, TreeViewItemWrapper item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_UnityEngine_UIElements_TreeViewItemWrapper__CopyTo, (List_1_UnityEngine_UIElements_TreeViewItemWrapper_ * __this, TreeViewItemWrapper__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_UnityEngine_UIElements_TreeViewItemWrapper__CopyTo_1, (List_1_UnityEngine_UIElements_TreeViewItemWrapper_ * __this, TreeViewItemWrapper__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -169544,6 +186927,7 @@ DO_APP_FUNC(0x01745AB0, List_1_T_Enumerator_UnityEngine_UIElements_TreeViewItemW DO_APP_FUNC(0x01745C30, int32_t, List_1_UnityEngine_UIElements_TreeViewItemWrapper__IndexOf, (List_1_UnityEngine_UIElements_TreeViewItemWrapper_ * __this, TreeViewItemWrapper item, MethodInfo * method)); DO_APP_FUNC(0x0175CB40, void, List_1_UnityEngine_UIElements_TreeViewItemWrapper__Insert, (List_1_UnityEngine_UIElements_TreeViewItemWrapper_ * __this, int32_t index, TreeViewItemWrapper item, MethodInfo * method)); DO_APP_FUNC(0x017A5860, void, List_1_UnityEngine_UIElements_TreeViewItemWrapper__InsertRange, (List_1_UnityEngine_UIElements_TreeViewItemWrapper_ * __this, int32_t index, IEnumerable_1_UnityEngine_UIElements_TreeViewItemWrapper_ * collection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDFB0, List_1_UnityEngine_UIElements_TreeViewItemWrapper__InsertRange__MethodInfo); DO_APP_FUNC(0x01744C60, bool, List_1_UnityEngine_UIElements_TreeViewItemWrapper__IsCompatibleObject, (Object * value, MethodInfo * method)); DO_APP_FUNC(0x01746430, bool, List_1_UnityEngine_UIElements_TreeViewItemWrapper__Remove, (List_1_UnityEngine_UIElements_TreeViewItemWrapper_ * __this, TreeViewItemWrapper item, MethodInfo * method)); DO_APP_FUNC(0x0175D050, int32_t, List_1_UnityEngine_UIElements_TreeViewItemWrapper__RemoveAll, (List_1_UnityEngine_UIElements_TreeViewItemWrapper_ * __this, Predicate_1_UnityEngine_UIElements_TreeViewItemWrapper_ * match, MethodInfo * method)); @@ -169574,14 +186958,18 @@ DO_APP_FUNC(0x01732000, TreeViewItemWrapper__Array *, List_1_UnityEngine_UIEleme DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_UIElements_TreeViewItemWrapper__TrimExcess, (List_1_UnityEngine_UIElements_TreeViewItemWrapper_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_UIElements_TreeViewItemWrapper__get_Capacity, (List_1_UnityEngine_UIElements_TreeViewItemWrapper_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_UIElements_TreeViewItemWrapper__get_Count, (List_1_UnityEngine_UIElements_TreeViewItemWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDFA8, List_1_UnityEngine_UIElements_TreeViewItemWrapper__get_Count__MethodInfo); DO_APP_FUNC(0x01744B50, TreeViewItemWrapper, List_1_UnityEngine_UIElements_TreeViewItemWrapper__get_Item, (List_1_UnityEngine_UIElements_TreeViewItemWrapper_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDDF98, List_1_UnityEngine_UIElements_TreeViewItemWrapper__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_UIElements_TreeViewItemWrapper__set_Capacity, (List_1_UnityEngine_UIElements_TreeViewItemWrapper_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x0175C8D0, void, List_1_UnityEngine_UIElements_TreeViewItemWrapper__set_Item, (List_1_UnityEngine_UIElements_TreeViewItemWrapper_ * __this, int32_t index, TreeViewItemWrapper value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_Rewired_Utils_Classes_Data_TypeWrapper___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_Rewired_Utils_Classes_Data_TypeWrapper___ctor, (List_1_Rewired_Utils_Classes_Data_TypeWrapper_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0172FA30, void, List_1_Rewired_Utils_Classes_Data_TypeWrapper___ctor_1, (List_1_Rewired_Utils_Classes_Data_TypeWrapper_ * __this, IEnumerable_1_Rewired_Utils_Classes_Data_TypeWrapper_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_Rewired_Utils_Classes_Data_TypeWrapper___ctor_2, (List_1_Rewired_Utils_Classes_Data_TypeWrapper_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB268, List_1_Rewired_Utils_Classes_Data_TypeWrapper___ctor_2__MethodInfo); DO_APP_FUNC(0x017A6030, void, List_1_Rewired_Utils_Classes_Data_TypeWrapper__Add, (List_1_Rewired_Utils_Classes_Data_TypeWrapper_ * __this, TypeWrapper item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB2F8, List_1_Rewired_Utils_Classes_Data_TypeWrapper__Add__MethodInfo); DO_APP_FUNC(0x017A69C0, void, List_1_Rewired_Utils_Classes_Data_TypeWrapper__AddEnumerable, (List_1_Rewired_Utils_Classes_Data_TypeWrapper_ * __this, IEnumerable_1_Rewired_Utils_Classes_Data_TypeWrapper_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_Rewired_Utils_Classes_Data_TypeWrapper__AddRange, (List_1_Rewired_Utils_Classes_Data_TypeWrapper_ * __this, IEnumerable_1_Rewired_Utils_Classes_Data_TypeWrapper_ * collection, MethodInfo * method)); DO_APP_FUNC(0x017A6120, void, List_1_Rewired_Utils_Classes_Data_TypeWrapper__AddWithResize, (List_1_Rewired_Utils_Classes_Data_TypeWrapper_ * __this, TypeWrapper item, MethodInfo * method)); @@ -169590,6 +186978,7 @@ DO_APP_FUNC(0x017424F0, int32_t, List_1_Rewired_Utils_Classes_Data_TypeWrapper__ DO_APP_FUNC(0x01742590, int32_t, List_1_Rewired_Utils_Classes_Data_TypeWrapper__BinarySearch_1, (List_1_Rewired_Utils_Classes_Data_TypeWrapper_ * __this, TypeWrapper item, IComparer_1_Rewired_Utils_Classes_Data_TypeWrapper_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01742440, int32_t, List_1_Rewired_Utils_Classes_Data_TypeWrapper__BinarySearch_2, (List_1_Rewired_Utils_Classes_Data_TypeWrapper_ * __this, int32_t index, int32_t count, TypeWrapper item, IComparer_1_Rewired_Utils_Classes_Data_TypeWrapper_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x003CB200, void, List_1_Rewired_Utils_Classes_Data_TypeWrapper__Clear, (List_1_Rewired_Utils_Classes_Data_TypeWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB278, List_1_Rewired_Utils_Classes_Data_TypeWrapper__Clear__MethodInfo); DO_APP_FUNC(0x01742630, bool, List_1_Rewired_Utils_Classes_Data_TypeWrapper__Contains, (List_1_Rewired_Utils_Classes_Data_TypeWrapper_ * __this, TypeWrapper item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_Rewired_Utils_Classes_Data_TypeWrapper__CopyTo, (List_1_Rewired_Utils_Classes_Data_TypeWrapper_ * __this, TypeWrapper__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_Rewired_Utils_Classes_Data_TypeWrapper__CopyTo_1, (List_1_Rewired_Utils_Classes_Data_TypeWrapper_ * __this, TypeWrapper__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -169634,13 +187023,16 @@ DO_APP_FUNC(0x01732000, TypeWrapper__Array *, List_1_Rewired_Utils_Classes_Data_ DO_APP_FUNC(0x017320E0, void, List_1_Rewired_Utils_Classes_Data_TypeWrapper__TrimExcess, (List_1_Rewired_Utils_Classes_Data_TypeWrapper_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_Rewired_Utils_Classes_Data_TypeWrapper__get_Capacity, (List_1_Rewired_Utils_Classes_Data_TypeWrapper_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_Rewired_Utils_Classes_Data_TypeWrapper__get_Count, (List_1_Rewired_Utils_Classes_Data_TypeWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB360, List_1_Rewired_Utils_Classes_Data_TypeWrapper__get_Count__MethodInfo); DO_APP_FUNC(0x01741E50, TypeWrapper, List_1_Rewired_Utils_Classes_Data_TypeWrapper__get_Item, (List_1_Rewired_Utils_Classes_Data_TypeWrapper_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6868, List_1_Rewired_Utils_Classes_Data_TypeWrapper__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_Rewired_Utils_Classes_Data_TypeWrapper__set_Capacity, (List_1_Rewired_Utils_Classes_Data_TypeWrapper_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x017A5F80, void, List_1_Rewired_Utils_Classes_Data_TypeWrapper__set_Item, (List_1_Rewired_Utils_Classes_Data_TypeWrapper_ * __this, int32_t index, TypeWrapper value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_UICharInfo___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_UICharInfo___ctor, (List_1_UnityEngine_UICharInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_UICharInfo___ctor_1, (List_1_UnityEngine_UICharInfo_ * __this, IEnumerable_1_UnityEngine_UICharInfo_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_UICharInfo___ctor_2, (List_1_UnityEngine_UICharInfo_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21738, List_1_UnityEngine_UICharInfo___ctor_2__MethodInfo); DO_APP_FUNC(0x00AA7550, void, List_1_UnityEngine_UICharInfo__Add, (List_1_UnityEngine_UICharInfo_ * __this, UICharInfo item, MethodInfo * method)); DO_APP_FUNC(0x017A70D0, void, List_1_UnityEngine_UICharInfo__AddEnumerable, (List_1_UnityEngine_UICharInfo_ * __this, IEnumerable_1_UnityEngine_UICharInfo_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_UnityEngine_UICharInfo__AddRange, (List_1_UnityEngine_UICharInfo_ * __this, IEnumerable_1_UnityEngine_UICharInfo_ * collection, MethodInfo * method)); @@ -169701,6 +187093,7 @@ DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_UILineInfo___cctor, (MethodInfo DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_UILineInfo___ctor, (List_1_UnityEngine_UILineInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_UILineInfo___ctor_1, (List_1_UnityEngine_UILineInfo_ * __this, IEnumerable_1_UnityEngine_UILineInfo_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_UILineInfo___ctor_2, (List_1_UnityEngine_UILineInfo_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21730, List_1_UnityEngine_UILineInfo___ctor_2__MethodInfo); DO_APP_FUNC(0x01751370, void, List_1_UnityEngine_UILineInfo__Add, (List_1_UnityEngine_UILineInfo_ * __this, UILineInfo item, MethodInfo * method)); DO_APP_FUNC(0x017A77C0, void, List_1_UnityEngine_UILineInfo__AddEnumerable, (List_1_UnityEngine_UILineInfo_ * __this, IEnumerable_1_UnityEngine_UILineInfo_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_UnityEngine_UILineInfo__AddRange, (List_1_UnityEngine_UILineInfo_ * __this, IEnumerable_1_UnityEngine_UILineInfo_ * collection, MethodInfo * method)); @@ -169759,9 +187152,12 @@ DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_UILineInfo__set_Capacity, (List DO_APP_FUNC(0x01751320, void, List_1_UnityEngine_UILineInfo__set_Item, (List_1_UnityEngine_UILineInfo_ * __this, int32_t index, UILineInfo value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_UIVertex___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_UIVertex___ctor, (List_1_UnityEngine_UIVertex_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBAD08, List_1_UnityEngine_UIVertex___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_UIVertex___ctor_1, (List_1_UnityEngine_UIVertex_ * __this, IEnumerable_1_UnityEngine_UIVertex_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_UIVertex___ctor_2, (List_1_UnityEngine_UIVertex_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA890, List_1_UnityEngine_UIVertex___ctor_2__MethodInfo); DO_APP_FUNC(0x017A7F70, void, List_1_UnityEngine_UIVertex__Add, (List_1_UnityEngine_UIVertex_ * __this, UIVertex item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA900, List_1_UnityEngine_UIVertex__Add__MethodInfo); DO_APP_FUNC(0x017A9E20, void, List_1_UnityEngine_UIVertex__AddEnumerable, (List_1_UnityEngine_UIVertex_ * __this, IEnumerable_1_UnityEngine_UIVertex_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_UnityEngine_UIVertex__AddRange, (List_1_UnityEngine_UIVertex_ * __this, IEnumerable_1_UnityEngine_UIVertex_ * collection, MethodInfo * method)); DO_APP_FUNC(0x017A8080, void, List_1_UnityEngine_UIVertex__AddWithResize, (List_1_UnityEngine_UIVertex_ * __this, UIVertex item, MethodInfo * method)); @@ -169770,6 +187166,7 @@ DO_APP_FUNC(0x017A8410, int32_t, List_1_UnityEngine_UIVertex__BinarySearch, (Lis DO_APP_FUNC(0x017A84F0, int32_t, List_1_UnityEngine_UIVertex__BinarySearch_1, (List_1_UnityEngine_UIVertex_ * __this, UIVertex item, IComparer_1_UnityEngine_UIVertex_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x017A8300, int32_t, List_1_UnityEngine_UIVertex__BinarySearch_2, (List_1_UnityEngine_UIVertex_ * __this, int32_t index, int32_t count, UIVertex item, IComparer_1_UnityEngine_UIVertex_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01749550, void, List_1_UnityEngine_UIVertex__Clear, (List_1_UnityEngine_UIVertex_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA910, List_1_UnityEngine_UIVertex__Clear__MethodInfo); DO_APP_FUNC(0x017A85E0, bool, List_1_UnityEngine_UIVertex__Contains, (List_1_UnityEngine_UIVertex_ * __this, UIVertex item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_UnityEngine_UIVertex__CopyTo, (List_1_UnityEngine_UIVertex_ * __this, UIVertex__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_UnityEngine_UIVertex__CopyTo_1, (List_1_UnityEngine_UIVertex_ * __this, UIVertex__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -169781,14 +187178,17 @@ DO_APP_FUNC(0x01730C90, int32_t, List_1_UnityEngine_UIVertex__FindIndex, (List_1 DO_APP_FUNC(0x017A8C10, int32_t, List_1_UnityEngine_UIVertex__FindIndex_1, (List_1_UnityEngine_UIVertex_ * __this, int32_t startIndex, int32_t count, Predicate_1_UnityEngine_UIVertex_ * match, MethodInfo * method)); DO_APP_FUNC(0x017A8D80, void, List_1_UnityEngine_UIVertex__ForEach, (List_1_UnityEngine_UIVertex_ * __this, Action_1_UnityEngine_UIVertex_ * action, MethodInfo * method)); DO_APP_FUNC(0x017A8EC0, List_1_T_Enumerator_UnityEngine_UIVertex_, List_1_UnityEngine_UIVertex__GetEnumerator, (List_1_UnityEngine_UIVertex_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF72C8, List_1_UnityEngine_UIVertex__GetEnumerator__MethodInfo); DO_APP_FUNC(0x017A9040, int32_t, List_1_UnityEngine_UIVertex__IndexOf, (List_1_UnityEngine_UIVertex_ * __this, UIVertex item, MethodInfo * method)); DO_APP_FUNC(0x017A9280, void, List_1_UnityEngine_UIVertex__Insert, (List_1_UnityEngine_UIVertex_ * __this, int32_t index, UIVertex item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF72B8, List_1_UnityEngine_UIVertex__Insert__MethodInfo); DO_APP_FUNC(0x017A9540, void, List_1_UnityEngine_UIVertex__InsertRange, (List_1_UnityEngine_UIVertex_ * __this, int32_t index, IEnumerable_1_UnityEngine_UIVertex_ * collection, MethodInfo * method)); DO_APP_FUNC(0x017A7BF0, bool, List_1_UnityEngine_UIVertex__IsCompatibleObject, (Object * value, MethodInfo * method)); DO_APP_FUNC(0x017A98F0, bool, List_1_UnityEngine_UIVertex__Remove, (List_1_UnityEngine_UIVertex_ * __this, UIVertex item, MethodInfo * method)); DO_APP_FUNC(0x017A9B50, int32_t, List_1_UnityEngine_UIVertex__RemoveAll, (List_1_UnityEngine_UIVertex_ * __this, Predicate_1_UnityEngine_UIVertex_ * match, MethodInfo * method)); DO_APP_FUNC(0x0174A620, void, List_1_UnityEngine_UIVertex__RemoveAt, (List_1_UnityEngine_UIVertex_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x0174A670, void, List_1_UnityEngine_UIVertex__RemoveRange, (List_1_UnityEngine_UIVertex_ * __this, int32_t index, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7368, List_1_UnityEngine_UIVertex__RemoveRange__MethodInfo); DO_APP_FUNC(0x01731D00, void, List_1_UnityEngine_UIVertex__Reverse, (List_1_UnityEngine_UIVertex_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01731D60, void, List_1_UnityEngine_UIVertex__Reverse_1, (List_1_UnityEngine_UIVertex_ * __this, int32_t index, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x01731DD0, void, List_1_UnityEngine_UIVertex__Sort, (List_1_UnityEngine_UIVertex_ * __this, MethodInfo * method)); @@ -169813,10 +187213,15 @@ DO_APP_FUNC(0x017A7DE0, void, List_1_UnityEngine_UIVertex__System_Collections_IL DO_APP_FUNC(0x01732000, UIVertex__Array *, List_1_UnityEngine_UIVertex__ToArray, (List_1_UnityEngine_UIVertex_ * __this, MethodInfo * method)); DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_UIVertex__TrimExcess, (List_1_UnityEngine_UIVertex_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_UIVertex__get_Capacity, (List_1_UnityEngine_UIVertex_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA8F0, List_1_UnityEngine_UIVertex__get_Capacity__MethodInfo); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_UIVertex__get_Count, (List_1_UnityEngine_UIVertex_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA928, List_1_UnityEngine_UIVertex__get_Count__MethodInfo); DO_APP_FUNC(0x017A7B00, UIVertex, List_1_UnityEngine_UIVertex__get_Item, (List_1_UnityEngine_UIVertex_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA918, List_1_UnityEngine_UIVertex__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_UIVertex__set_Capacity, (List_1_UnityEngine_UIVertex_ * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA870, List_1_UnityEngine_UIVertex__set_Capacity__MethodInfo); DO_APP_FUNC(0x017A7B40, void, List_1_UnityEngine_UIVertex__set_Item, (List_1_UnityEngine_UIVertex_ * __this, int32_t index, UIVertex value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA938, List_1_UnityEngine_UIVertex__set_Item__MethodInfo); DO_APP_FUNC(0x017323E0, void, List_1_System_UInt16___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_System_UInt16___ctor, (List_1_System_UInt16_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8E9E0, List_1_System_UInt16___ctor__MethodInfo); @@ -169847,6 +187252,7 @@ DO_APP_FUNC(0x01730C90, int32_t, List_1_System_UInt16__FindIndex, (List_1_System DO_APP_FUNC(0x01761100, int32_t, List_1_System_UInt16__FindIndex_1, (List_1_System_UInt16_ * __this, int32_t startIndex, int32_t count, Predicate_1_UInt16_ * match, MethodInfo * method)); DO_APP_FUNC(0x01761200, void, List_1_System_UInt16__ForEach, (List_1_System_UInt16_ * __this, Action_1_UInt16_ * action, MethodInfo * method)); DO_APP_FUNC(0x017612C0, List_1_T_Enumerator_System_UInt16_, List_1_System_UInt16__GetEnumerator, (List_1_System_UInt16_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF15E8, List_1_System_UInt16__GetEnumerator__MethodInfo); DO_APP_FUNC(0x01749C30, int32_t, List_1_System_UInt16__IndexOf, (List_1_System_UInt16_ * __this, uint16_t item, MethodInfo * method)); DO_APP_FUNC(0x01761550, void, List_1_System_UInt16__Insert, (List_1_System_UInt16_ * __this, int32_t index, uint16_t item, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8E910, List_1_System_UInt16__Insert__MethodInfo); @@ -169880,6 +187286,7 @@ DO_APP_FUNC(0x0041AF00, bool, List_1_System_UInt16__System_Collections_IList_get DO_APP_FUNC(0x017608A0, Object *, List_1_System_UInt16__System_Collections_IList_get_Item, (List_1_System_UInt16_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01760910, void, List_1_System_UInt16__System_Collections_IList_set_Item, (List_1_System_UInt16_ * __this, int32_t index, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01732000, UInt16__Array *, List_1_System_UInt16__ToArray, (List_1_System_UInt16_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF778, List_1_System_UInt16__ToArray__MethodInfo); DO_APP_FUNC(0x017320E0, void, List_1_System_UInt16__TrimExcess, (List_1_System_UInt16_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_System_UInt16__get_Capacity, (List_1_System_UInt16_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_System_UInt16__get_Count, (List_1_System_UInt16_ * __this, MethodInfo * method)); @@ -169892,8 +187299,11 @@ DO_APP_FUNC(0x017323E0, void, List_1_System_UInt32___cctor, (MethodInfo * method DO_APP_FUNC(0x0172F7F0, void, List_1_System_UInt32___ctor, (List_1_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8CBA8, List_1_System_UInt32___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_System_UInt32___ctor_1, (List_1_System_UInt32_ * __this, IEnumerable_1_System_UInt32_ * collection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD62D8, List_1_System_UInt32___ctor_1__MethodInfo); DO_APP_FUNC(0x0172F8B0, void, List_1_System_UInt32___ctor_2, (List_1_System_UInt32_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7FB8, List_1_System_UInt32___ctor_2__MethodInfo); DO_APP_FUNC(0x003ECFF0, void, List_1_System_UInt32__Add, (List_1_System_UInt32_ * __this, uint32_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5D10, List_1_System_UInt32__Add__MethodInfo); DO_APP_FUNC(0x017AABA0, void, List_1_System_UInt32__AddEnumerable, (List_1_System_UInt32_ * __this, IEnumerable_1_System_UInt32_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_System_UInt32__AddRange, (List_1_System_UInt32_ * __this, IEnumerable_1_System_UInt32_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0177B250, void, List_1_System_UInt32__AddWithResize, (List_1_System_UInt32_ * __this, uint32_t item, MethodInfo * method)); @@ -169902,6 +187312,7 @@ DO_APP_FUNC(0x0177B2C0, int32_t, List_1_System_UInt32__BinarySearch, (List_1_Sys DO_APP_FUNC(0x0177B340, int32_t, List_1_System_UInt32__BinarySearch_1, (List_1_System_UInt32_ * __this, uint32_t item, IComparer_1_System_UInt32_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x017493B0, int32_t, List_1_System_UInt32__BinarySearch_2, (List_1_System_UInt32_ * __this, int32_t index, int32_t count, uint32_t item, IComparer_1_System_UInt32_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01749550, void, List_1_System_UInt32__Clear, (List_1_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5538, List_1_System_UInt32__Clear__MethodInfo); DO_APP_FUNC(0x01749560, bool, List_1_System_UInt32__Contains, (List_1_System_UInt32_ * __this, uint32_t item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_System_UInt32__CopyTo, (List_1_System_UInt32_ * __this, UInt32__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_System_UInt32__CopyTo_1, (List_1_System_UInt32_ * __this, UInt32__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -169913,6 +187324,7 @@ DO_APP_FUNC(0x01730C90, int32_t, List_1_System_UInt32__FindIndex, (List_1_System DO_APP_FUNC(0x0177B5F0, int32_t, List_1_System_UInt32__FindIndex_1, (List_1_System_UInt32_ * __this, int32_t startIndex, int32_t count, Predicate_1_UInt32_ * match, MethodInfo * method)); DO_APP_FUNC(0x01763900, void, List_1_System_UInt32__ForEach, (List_1_System_UInt32_ * __this, Action_1_UInt32_ * action, MethodInfo * method)); DO_APP_FUNC(0x017639C0, List_1_T_Enumerator_System_UInt32_, List_1_System_UInt32__GetEnumerator, (List_1_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD62F0, List_1_System_UInt32__GetEnumerator__MethodInfo); DO_APP_FUNC(0x01749C30, int32_t, List_1_System_UInt32__IndexOf, (List_1_System_UInt32_ * __this, uint32_t item, MethodInfo * method)); DO_APP_FUNC(0x0177B6F0, void, List_1_System_UInt32__Insert, (List_1_System_UInt32_ * __this, int32_t index, uint32_t item, MethodInfo * method)); DO_APP_FUNC(0x017AA850, void, List_1_System_UInt32__InsertRange, (List_1_System_UInt32_ * __this, int32_t index, IEnumerable_1_System_UInt32_ * collection, MethodInfo * method)); @@ -169924,6 +187336,7 @@ DO_APP_FUNC(0x0174A670, void, List_1_System_UInt32__RemoveRange, (List_1_System_ DO_APP_FUNC(0x01731D00, void, List_1_System_UInt32__Reverse, (List_1_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01731D60, void, List_1_System_UInt32__Reverse_1, (List_1_System_UInt32_ * __this, int32_t index, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x01731DD0, void, List_1_System_UInt32__Sort, (List_1_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC55D8, List_1_System_UInt32__Sort__MethodInfo); DO_APP_FUNC(0x01731F40, void, List_1_System_UInt32__Sort_1, (List_1_System_UInt32_ * __this, Comparison_1_UInt32_ * comparison, MethodInfo * method)); DO_APP_FUNC(0x01731E40, void, List_1_System_UInt32__Sort_2, (List_1_System_UInt32_ * __this, IComparer_1_System_UInt32_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01731EC0, void, List_1_System_UInt32__Sort_3, (List_1_System_UInt32_ * __this, int32_t index, int32_t count, IComparer_1_System_UInt32_ * comparer, MethodInfo * method)); @@ -169943,13 +187356,18 @@ DO_APP_FUNC(0x0041AF00, bool, List_1_System_UInt32__System_Collections_IList_get DO_APP_FUNC(0x01763030, Object *, List_1_System_UInt32__System_Collections_IList_get_Item, (List_1_System_UInt32_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x017630A0, void, List_1_System_UInt32__System_Collections_IList_set_Item, (List_1_System_UInt32_ * __this, int32_t index, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01732000, UInt32__Array *, List_1_System_UInt32__ToArray, (List_1_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC55D0, List_1_System_UInt32__ToArray__MethodInfo); DO_APP_FUNC(0x017320E0, void, List_1_System_UInt32__TrimExcess, (List_1_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_System_UInt32__get_Capacity, (List_1_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD8028, List_1_System_UInt32__get_Capacity__MethodInfo); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_System_UInt32__get_Count, (List_1_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8CBD0, List_1_System_UInt32__get_Count__MethodInfo); DO_APP_FUNC(0x01762EE0, uint32_t, List_1_System_UInt32__get_Item, (List_1_System_UInt32_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5CE8, List_1_System_UInt32__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_System_UInt32__set_Capacity, (List_1_System_UInt32_ * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD8018, List_1_System_UInt32__set_Capacity__MethodInfo); DO_APP_FUNC(0x01762F20, void, List_1_System_UInt32__set_Item, (List_1_System_UInt32_ * __this, int32_t index, uint32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7FF8, List_1_System_UInt32__set_Item__MethodInfo); DO_APP_FUNC(0x017323E0, void, List_1_System_UInt64___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_System_UInt64___ctor, (List_1_System_UInt64_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0172FA30, void, List_1_System_UInt64___ctor_1, (List_1_System_UInt64_ * __this, IEnumerable_1_System_UInt64_ * collection, MethodInfo * method)); @@ -170012,9 +187430,11 @@ DO_APP_FUNC(0x0172FC90, void, List_1_System_UInt64__set_Capacity, (List_1_System DO_APP_FUNC(0x01748ED0, void, List_1_System_UInt64__set_Item, (List_1_System_UInt64_ * __this, int32_t index, uint64_t value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture___ctor, (List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1CFE8, List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture___ctor_1, (List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ * __this, IEnumerable_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture___ctor_2, (List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x0174B8D0, void, List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__Add, (List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ * __this, UVTexture item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1CFF0, List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__Add__MethodInfo); DO_APP_FUNC(0x017AB8D0, void, List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__AddEnumerable, (List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ * __this, IEnumerable_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__AddRange, (List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ * __this, IEnumerable_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0174B9C0, void, List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__AddWithResize, (List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ * __this, UVTexture item, MethodInfo * method)); @@ -170067,16 +187487,22 @@ DO_APP_FUNC(0x01732000, UVTexture__Array *, List_1_Opsive_UltimateCharacterContr DO_APP_FUNC(0x017320E0, void, List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__TrimExcess, (List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__get_Capacity, (List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__get_Count, (List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1CF38, List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__get_Count__MethodInfo); DO_APP_FUNC(0x01744B50, UVTexture, List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__get_Item, (List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1CF30, List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__set_Capacity, (List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x0174B820, void, List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__set_Item, (List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ * __this, int32_t index, UVTexture value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UdpKit_UdpEndPoint___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UdpKit_UdpEndPoint___ctor, (List_1_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB75D8, List_1_UdpKit_UdpEndPoint___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_UdpKit_UdpEndPoint___ctor_1, (List_1_UdpKit_UdpEndPoint_ * __this, IEnumerable_1_UdpKit_UdpEndPoint_ * collection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8DC0, List_1_UdpKit_UdpEndPoint___ctor_1__MethodInfo); DO_APP_FUNC(0x0172F8B0, void, List_1_UdpKit_UdpEndPoint___ctor_2, (List_1_UdpKit_UdpEndPoint_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x017ABFA0, void, List_1_UdpKit_UdpEndPoint__Add, (List_1_UdpKit_UdpEndPoint_ * __this, UdpEndPoint item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB76D8, List_1_UdpKit_UdpEndPoint__Add__MethodInfo); DO_APP_FUNC(0x017AD7B0, void, List_1_UdpKit_UdpEndPoint__AddEnumerable, (List_1_UdpKit_UdpEndPoint_ * __this, IEnumerable_1_UdpKit_UdpEndPoint_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_UdpKit_UdpEndPoint__AddRange, (List_1_UdpKit_UdpEndPoint_ * __this, IEnumerable_1_UdpKit_UdpEndPoint_ * collection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8E58, List_1_UdpKit_UdpEndPoint__AddRange__MethodInfo); DO_APP_FUNC(0x017AC040, void, List_1_UdpKit_UdpEndPoint__AddWithResize, (List_1_UdpKit_UdpEndPoint_ * __this, UdpEndPoint item, MethodInfo * method)); DO_APP_FUNC(0x01730510, ReadOnlyCollection_1_UdpKit_UdpEndPoint_ *, List_1_UdpKit_UdpEndPoint__AsReadOnly, (List_1_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); DO_APP_FUNC(0x017AC310, int32_t, List_1_UdpKit_UdpEndPoint__BinarySearch, (List_1_UdpKit_UdpEndPoint_ * __this, UdpEndPoint item, MethodInfo * method)); @@ -170094,6 +187520,7 @@ DO_APP_FUNC(0x01730C90, int32_t, List_1_UdpKit_UdpEndPoint__FindIndex, (List_1_U DO_APP_FUNC(0x017AC8F0, int32_t, List_1_UdpKit_UdpEndPoint__FindIndex_1, (List_1_UdpKit_UdpEndPoint_ * __this, int32_t startIndex, int32_t count, Predicate_1_UdpKit_UdpEndPoint_ * match, MethodInfo * method)); DO_APP_FUNC(0x017ACA20, void, List_1_UdpKit_UdpEndPoint__ForEach, (List_1_UdpKit_UdpEndPoint_ * __this, Action_1_UdpKit_UdpEndPoint_ * action, MethodInfo * method)); DO_APP_FUNC(0x017ACB00, List_1_T_Enumerator_UdpKit_UdpEndPoint_, List_1_UdpKit_UdpEndPoint__GetEnumerator, (List_1_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB82C8, List_1_UdpKit_UdpEndPoint__GetEnumerator__MethodInfo); DO_APP_FUNC(0x017ACCA0, int32_t, List_1_UdpKit_UdpEndPoint__IndexOf, (List_1_UdpKit_UdpEndPoint_ * __this, UdpEndPoint item, MethodInfo * method)); DO_APP_FUNC(0x017ACE50, void, List_1_UdpKit_UdpEndPoint__Insert, (List_1_UdpKit_UdpEndPoint_ * __this, int32_t index, UdpEndPoint item, MethodInfo * method)); DO_APP_FUNC(0x017AD080, void, List_1_UdpKit_UdpEndPoint__InsertRange, (List_1_UdpKit_UdpEndPoint_ * __this, int32_t index, IEnumerable_1_UdpKit_UdpEndPoint_ * collection, MethodInfo * method)); @@ -170127,16 +187554,20 @@ DO_APP_FUNC(0x01732000, UdpEndPoint__Array *, List_1_UdpKit_UdpEndPoint__ToArray DO_APP_FUNC(0x017320E0, void, List_1_UdpKit_UdpEndPoint__TrimExcess, (List_1_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UdpKit_UdpEndPoint__get_Capacity, (List_1_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UdpKit_UdpEndPoint__get_Count, (List_1_UdpKit_UdpEndPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8E70, List_1_UdpKit_UdpEndPoint__get_Count__MethodInfo); DO_APP_FUNC(0x017ABC20, UdpEndPoint, List_1_UdpKit_UdpEndPoint__get_Item, (List_1_UdpKit_UdpEndPoint_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x0172FC90, void, List_1_UdpKit_UdpEndPoint__set_Capacity, (List_1_UdpKit_UdpEndPoint_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x017ABC80, void, List_1_UdpKit_UdpEndPoint__set_Item, (List_1_UdpKit_UdpEndPoint_ * __this, int32_t index, UdpEndPoint value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UdpKit_UdpIPv4Address___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UdpKit_UdpIPv4Address___ctor, (List_1_UdpKit_UdpIPv4Address_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8E08, List_1_UdpKit_UdpIPv4Address___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_UdpKit_UdpIPv4Address___ctor_1, (List_1_UdpKit_UdpIPv4Address_ * __this, IEnumerable_1_UdpKit_UdpIPv4Address_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_UdpKit_UdpIPv4Address___ctor_2, (List_1_UdpKit_UdpIPv4Address_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x003ECFF0, void, List_1_UdpKit_UdpIPv4Address__Add, (List_1_UdpKit_UdpIPv4Address_ * __this, UdpIPv4Address item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8E10, List_1_UdpKit_UdpIPv4Address__Add__MethodInfo); DO_APP_FUNC(0x017ADE60, void, List_1_UdpKit_UdpIPv4Address__AddEnumerable, (List_1_UdpKit_UdpIPv4Address_ * __this, IEnumerable_1_UdpKit_UdpIPv4Address_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_UdpKit_UdpIPv4Address__AddRange, (List_1_UdpKit_UdpIPv4Address_ * __this, IEnumerable_1_UdpKit_UdpIPv4Address_ * collection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8DF0, List_1_UdpKit_UdpIPv4Address__AddRange__MethodInfo); DO_APP_FUNC(0x017631D0, void, List_1_UdpKit_UdpIPv4Address__AddWithResize, (List_1_UdpKit_UdpIPv4Address_ * __this, UdpIPv4Address item, MethodInfo * method)); DO_APP_FUNC(0x01730510, ReadOnlyCollection_1_UdpKit_UdpIPv4Address_ *, List_1_UdpKit_UdpIPv4Address__AsReadOnly, (List_1_UdpKit_UdpIPv4Address_ * __this, MethodInfo * method)); DO_APP_FUNC(0x017633A0, int32_t, List_1_UdpKit_UdpIPv4Address__BinarySearch, (List_1_UdpKit_UdpIPv4Address_ * __this, UdpIPv4Address item, MethodInfo * method)); @@ -170187,7 +187618,9 @@ DO_APP_FUNC(0x01732000, UdpIPv4Address__Array *, List_1_UdpKit_UdpIPv4Address__T DO_APP_FUNC(0x017320E0, void, List_1_UdpKit_UdpIPv4Address__TrimExcess, (List_1_UdpKit_UdpIPv4Address_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UdpKit_UdpIPv4Address__get_Capacity, (List_1_UdpKit_UdpIPv4Address_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UdpKit_UdpIPv4Address__get_Count, (List_1_UdpKit_UdpIPv4Address_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8E20, List_1_UdpKit_UdpIPv4Address__get_Count__MethodInfo); DO_APP_FUNC(0x01762EE0, UdpIPv4Address, List_1_UdpKit_UdpIPv4Address__get_Item, (List_1_UdpKit_UdpIPv4Address_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8E18, List_1_UdpKit_UdpIPv4Address__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_UdpKit_UdpIPv4Address__set_Capacity, (List_1_UdpKit_UdpIPv4Address_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01762F20, void, List_1_UdpKit_UdpIPv4Address__set_Item, (List_1_UdpKit_UdpIPv4Address_ * __this, int32_t index, UdpIPv4Address value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_InputSystem_XR_UsageHint___cctor, (MethodInfo * method)); @@ -170214,6 +187647,7 @@ DO_APP_FUNC(0x01730C90, int32_t, List_1_UnityEngine_InputSystem_XR_UsageHint__Fi DO_APP_FUNC(0x01749910, int32_t, List_1_UnityEngine_InputSystem_XR_UsageHint__FindIndex_1, (List_1_UnityEngine_InputSystem_XR_UsageHint_ * __this, int32_t startIndex, int32_t count, Predicate_1_UnityEngine_InputSystem_XR_UsageHint_ * match, MethodInfo * method)); DO_APP_FUNC(0x01749A10, void, List_1_UnityEngine_InputSystem_XR_UsageHint__ForEach, (List_1_UnityEngine_InputSystem_XR_UsageHint_ * __this, Action_1_UnityEngine_InputSystem_XR_UsageHint_ * action, MethodInfo * method)); DO_APP_FUNC(0x01749AD0, List_1_T_Enumerator_UnityEngine_InputSystem_XR_UsageHint_, List_1_UnityEngine_InputSystem_XR_UsageHint__GetEnumerator, (List_1_UnityEngine_InputSystem_XR_UsageHint_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCDA68, List_1_UnityEngine_InputSystem_XR_UsageHint__GetEnumerator__MethodInfo); DO_APP_FUNC(0x01749C30, int32_t, List_1_UnityEngine_InputSystem_XR_UsageHint__IndexOf, (List_1_UnityEngine_InputSystem_XR_UsageHint_ * __this, UsageHint item, MethodInfo * method)); DO_APP_FUNC(0x0175BFC0, void, List_1_UnityEngine_InputSystem_XR_UsageHint__Insert, (List_1_UnityEngine_InputSystem_XR_UsageHint_ * __this, int32_t index, UsageHint item, MethodInfo * method)); DO_APP_FUNC(0x017AE170, void, List_1_UnityEngine_InputSystem_XR_UsageHint__InsertRange, (List_1_UnityEngine_InputSystem_XR_UsageHint_ * __this, int32_t index, IEnumerable_1_UnityEngine_InputSystem_XR_UsageHint_ * collection, MethodInfo * method)); @@ -170252,9 +187686,11 @@ DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_InputSystem_XR_UsageHint__set_C DO_APP_FUNC(0x0175BEB0, void, List_1_UnityEngine_InputSystem_XR_UsageHint__set_Item, (List_1_UnityEngine_InputSystem_XR_UsageHint_ * __this, int32_t index, UsageHint value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_Discord_User___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_Discord_User___ctor, (List_1_Discord_User_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05018, List_1_Discord_User___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_Discord_User___ctor_1, (List_1_Discord_User_ * __this, IEnumerable_1_Discord_User_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_Discord_User___ctor_2, (List_1_Discord_User_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x017AE880, void, List_1_Discord_User__Add, (List_1_Discord_User_ * __this, User item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05020, List_1_Discord_User__Add__MethodInfo); DO_APP_FUNC(0x017AF1C0, void, List_1_Discord_User__AddEnumerable, (List_1_Discord_User_ * __this, IEnumerable_1_Discord_User_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_Discord_User__AddRange, (List_1_Discord_User_ * __this, IEnumerable_1_Discord_User_ * collection, MethodInfo * method)); DO_APP_FUNC(0x017AE980, void, List_1_Discord_User__AddWithResize, (List_1_Discord_User_ * __this, User item, MethodInfo * method)); @@ -170312,9 +187748,13 @@ DO_APP_FUNC(0x0172FC90, void, List_1_Discord_User__set_Capacity, (List_1_Discord DO_APP_FUNC(0x017AE7C0, void, List_1_Discord_User__set_Item, (List_1_Discord_User_ * __this, int32_t index, User value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_Vector2___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_Vector2___ctor, (List_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFFA80, List_1_UnityEngine_Vector2___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_Vector2___ctor_1, (List_1_UnityEngine_Vector2_ * __this, IEnumerable_1_UnityEngine_Vector2_ * collection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8628, List_1_UnityEngine_Vector2___ctor_1__MethodInfo); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_Vector2___ctor_2, (List_1_UnityEngine_Vector2_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB970, List_1_UnityEngine_Vector2___ctor_2__MethodInfo); DO_APP_FUNC(0x017AF850, void, List_1_UnityEngine_Vector2__Add, (List_1_UnityEngine_Vector2_ * __this, Vector2 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF858, List_1_UnityEngine_Vector2__Add__MethodInfo); DO_APP_FUNC(0x017B0C10, void, List_1_UnityEngine_Vector2__AddEnumerable, (List_1_UnityEngine_Vector2_ * __this, IEnumerable_1_UnityEngine_Vector2_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_UnityEngine_Vector2__AddRange, (List_1_UnityEngine_Vector2_ * __this, IEnumerable_1_UnityEngine_Vector2_ * collection, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C92000, List_1_UnityEngine_Vector2__AddRange__MethodInfo); @@ -170324,6 +187764,7 @@ DO_APP_FUNC(0x017AFAD0, int32_t, List_1_UnityEngine_Vector2__BinarySearch, (List DO_APP_FUNC(0x017AFB70, int32_t, List_1_UnityEngine_Vector2__BinarySearch_1, (List_1_UnityEngine_Vector2_ * __this, Vector2 item, IComparer_1_UnityEngine_Vector2_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x017493B0, int32_t, List_1_UnityEngine_Vector2__BinarySearch_2, (List_1_UnityEngine_Vector2_ * __this, int32_t index, int32_t count, Vector2 item, IComparer_1_UnityEngine_Vector2_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01749550, void, List_1_UnityEngine_Vector2__Clear, (List_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB968, List_1_UnityEngine_Vector2__Clear__MethodInfo); DO_APP_FUNC(0x01749560, bool, List_1_UnityEngine_Vector2__Contains, (List_1_UnityEngine_Vector2_ * __this, Vector2 item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_UnityEngine_Vector2__CopyTo, (List_1_UnityEngine_Vector2_ * __this, Vector2__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_UnityEngine_Vector2__CopyTo_1, (List_1_UnityEngine_Vector2_ * __this, Vector2__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -170337,11 +187778,14 @@ DO_APP_FUNC(0x017B00D0, void, List_1_UnityEngine_Vector2__ForEach, (List_1_Unity DO_APP_FUNC(0x01749AD0, List_1_T_Enumerator_UnityEngine_Vector2_, List_1_UnityEngine_Vector2__GetEnumerator, (List_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x017B01A0, int32_t, List_1_UnityEngine_Vector2__IndexOf, (List_1_UnityEngine_Vector2_ * __this, Vector2 item, MethodInfo * method)); DO_APP_FUNC(0x017B0330, void, List_1_UnityEngine_Vector2__Insert, (List_1_UnityEngine_Vector2_ * __this, int32_t index, Vector2 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB048, List_1_UnityEngine_Vector2__Insert__MethodInfo); DO_APP_FUNC(0x017B0540, void, List_1_UnityEngine_Vector2__InsertRange, (List_1_UnityEngine_Vector2_ * __this, int32_t index, IEnumerable_1_UnityEngine_Vector2_ * collection, MethodInfo * method)); DO_APP_FUNC(0x017AF5D0, bool, List_1_UnityEngine_Vector2__IsCompatibleObject, (Object * value, MethodInfo * method)); DO_APP_FUNC(0x017B08A0, bool, List_1_UnityEngine_Vector2__Remove, (List_1_UnityEngine_Vector2_ * __this, Vector2 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9740, List_1_UnityEngine_Vector2__Remove__MethodInfo); DO_APP_FUNC(0x017B0A50, int32_t, List_1_UnityEngine_Vector2__RemoveAll, (List_1_UnityEngine_Vector2_ * __this, Predicate_1_UnityEngine_Vector2_ * match, MethodInfo * method)); DO_APP_FUNC(0x0174A620, void, List_1_UnityEngine_Vector2__RemoveAt, (List_1_UnityEngine_Vector2_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB0C8, List_1_UnityEngine_Vector2__RemoveAt__MethodInfo); DO_APP_FUNC(0x0174A670, void, List_1_UnityEngine_Vector2__RemoveRange, (List_1_UnityEngine_Vector2_ * __this, int32_t index, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x01731D00, void, List_1_UnityEngine_Vector2__Reverse, (List_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01731D60, void, List_1_UnityEngine_Vector2__Reverse_1, (List_1_UnityEngine_Vector2_ * __this, int32_t index, int32_t count, MethodInfo * method)); @@ -170365,25 +187809,35 @@ DO_APP_FUNC(0x0041AF00, bool, List_1_UnityEngine_Vector2__System_Collections_ILi DO_APP_FUNC(0x017AF6B0, Object *, List_1_UnityEngine_Vector2__System_Collections_IList_get_Item, (List_1_UnityEngine_Vector2_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x017AF710, void, List_1_UnityEngine_Vector2__System_Collections_IList_set_Item, (List_1_UnityEngine_Vector2_ * __this, int32_t index, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01732000, Vector2__Array *, List_1_UnityEngine_Vector2__ToArray, (List_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCD40, List_1_UnityEngine_Vector2__ToArray__MethodInfo); DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_Vector2__TrimExcess, (List_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_Vector2__get_Capacity, (List_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_Vector2__get_Count, (List_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF790, List_1_UnityEngine_Vector2__get_Count__MethodInfo); DO_APP_FUNC(0x017AF520, Vector2, List_1_UnityEngine_Vector2__get_Item, (List_1_UnityEngine_Vector2_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF780, List_1_UnityEngine_Vector2__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_Vector2__set_Capacity, (List_1_UnityEngine_Vector2_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x017AF570, void, List_1_UnityEngine_Vector2__set_Item, (List_1_UnityEngine_Vector2_ * __this, int32_t index, Vector2 value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7490, List_1_UnityEngine_Vector2__set_Item__MethodInfo); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_Vector3___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_Vector3___ctor, (List_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFFA70, List_1_UnityEngine_Vector3___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_Vector3___ctor_1, (List_1_UnityEngine_Vector3_ * __this, IEnumerable_1_UnityEngine_Vector3_ * collection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE8B0, List_1_UnityEngine_Vector3___ctor_1__MethodInfo); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_Vector3___ctor_2, (List_1_UnityEngine_Vector3_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB948, List_1_UnityEngine_Vector3___ctor_2__MethodInfo); DO_APP_FUNC(0x00AA7550, void, List_1_UnityEngine_Vector3__Add, (List_1_UnityEngine_Vector3_ * __this, Vector3 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF868, List_1_UnityEngine_Vector3__Add__MethodInfo); DO_APP_FUNC(0x017B12A0, void, List_1_UnityEngine_Vector3__AddEnumerable, (List_1_UnityEngine_Vector3_ * __this, IEnumerable_1_UnityEngine_Vector3_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_UnityEngine_Vector3__AddRange, (List_1_UnityEngine_Vector3_ * __this, IEnumerable_1_UnityEngine_Vector3_ * collection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE35F0, List_1_UnityEngine_Vector3__AddRange__MethodInfo); DO_APP_FUNC(0x01753D90, void, List_1_UnityEngine_Vector3__AddWithResize, (List_1_UnityEngine_Vector3_ * __this, Vector3 item, MethodInfo * method)); DO_APP_FUNC(0x01730510, ReadOnlyCollection_1_UnityEngine_Vector3_ *, List_1_UnityEngine_Vector3__AsReadOnly, (List_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01754040, int32_t, List_1_UnityEngine_Vector3__BinarySearch, (List_1_UnityEngine_Vector3_ * __this, Vector3 item, MethodInfo * method)); DO_APP_FUNC(0x017540E0, int32_t, List_1_UnityEngine_Vector3__BinarySearch_1, (List_1_UnityEngine_Vector3_ * __this, Vector3 item, IComparer_1_UnityEngine_Vector3_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01753F80, int32_t, List_1_UnityEngine_Vector3__BinarySearch_2, (List_1_UnityEngine_Vector3_ * __this, int32_t index, int32_t count, Vector3 item, IComparer_1_UnityEngine_Vector3_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01749550, void, List_1_UnityEngine_Vector3__Clear, (List_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE3638, List_1_UnityEngine_Vector3__Clear__MethodInfo); DO_APP_FUNC(0x01754180, bool, List_1_UnityEngine_Vector3__Contains, (List_1_UnityEngine_Vector3_ * __this, Vector3 item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_UnityEngine_Vector3__CopyTo, (List_1_UnityEngine_Vector3_ * __this, Vector3__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_UnityEngine_Vector3__CopyTo_1, (List_1_UnityEngine_Vector3_ * __this, Vector3__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -170395,15 +187849,22 @@ DO_APP_FUNC(0x01730C90, int32_t, List_1_UnityEngine_Vector3__FindIndex, (List_1_ DO_APP_FUNC(0x017545D0, int32_t, List_1_UnityEngine_Vector3__FindIndex_1, (List_1_UnityEngine_Vector3_ * __this, int32_t startIndex, int32_t count, Predicate_1_UnityEngine_Vector3_ * match, MethodInfo * method)); DO_APP_FUNC(0x017546F0, void, List_1_UnityEngine_Vector3__ForEach, (List_1_UnityEngine_Vector3_ * __this, Action_1_UnityEngine_Vector3_ * action, MethodInfo * method)); DO_APP_FUNC(0x017547C0, List_1_T_Enumerator_UnityEngine_Vector3_, List_1_UnityEngine_Vector3__GetEnumerator, (List_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1F10, List_1_UnityEngine_Vector3__GetEnumerator__MethodInfo); DO_APP_FUNC(0x01754930, int32_t, List_1_UnityEngine_Vector3__IndexOf, (List_1_UnityEngine_Vector3_ * __this, Vector3 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8638, List_1_UnityEngine_Vector3__IndexOf__MethodInfo); DO_APP_FUNC(0x01754AD0, void, List_1_UnityEngine_Vector3__Insert, (List_1_UnityEngine_Vector3_ * __this, int32_t index, Vector3 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB698, List_1_UnityEngine_Vector3__Insert__MethodInfo); DO_APP_FUNC(0x017B0F30, void, List_1_UnityEngine_Vector3__InsertRange, (List_1_UnityEngine_Vector3_ * __this, int32_t index, IEnumerable_1_UnityEngine_Vector3_ * collection, MethodInfo * method)); DO_APP_FUNC(0x01753AE0, bool, List_1_UnityEngine_Vector3__IsCompatibleObject, (Object * value, MethodInfo * method)); DO_APP_FUNC(0x017550D0, bool, List_1_UnityEngine_Vector3__Remove, (List_1_UnityEngine_Vector3_ * __this, Vector3 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE35F8, List_1_UnityEngine_Vector3__Remove__MethodInfo); DO_APP_FUNC(0x01755290, int32_t, List_1_UnityEngine_Vector3__RemoveAll, (List_1_UnityEngine_Vector3_ * __this, Predicate_1_UnityEngine_Vector3_ * match, MethodInfo * method)); DO_APP_FUNC(0x0174A620, void, List_1_UnityEngine_Vector3__RemoveAt, (List_1_UnityEngine_Vector3_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7188, List_1_UnityEngine_Vector3__RemoveAt__MethodInfo); DO_APP_FUNC(0x0174A670, void, List_1_UnityEngine_Vector3__RemoveRange, (List_1_UnityEngine_Vector3_ * __this, int32_t index, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCE1A8, List_1_UnityEngine_Vector3__RemoveRange__MethodInfo); DO_APP_FUNC(0x01731D00, void, List_1_UnityEngine_Vector3__Reverse, (List_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA6D8, List_1_UnityEngine_Vector3__Reverse__MethodInfo); DO_APP_FUNC(0x01731D60, void, List_1_UnityEngine_Vector3__Reverse_1, (List_1_UnityEngine_Vector3_ * __this, int32_t index, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x01731DD0, void, List_1_UnityEngine_Vector3__Sort, (List_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01731F40, void, List_1_UnityEngine_Vector3__Sort_1, (List_1_UnityEngine_Vector3_ * __this, Comparison_1_UnityEngine_Vector3_ * comparison, MethodInfo * method)); @@ -170425,25 +187886,36 @@ DO_APP_FUNC(0x0041AF00, bool, List_1_UnityEngine_Vector3__System_Collections_ILi DO_APP_FUNC(0x01753BC0, Object *, List_1_UnityEngine_Vector3__System_Collections_IList_get_Item, (List_1_UnityEngine_Vector3_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01753C40, void, List_1_UnityEngine_Vector3__System_Collections_IList_set_Item, (List_1_UnityEngine_Vector3_ * __this, int32_t index, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01732000, Vector3__Array *, List_1_UnityEngine_Vector3__ToArray, (List_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE3640, List_1_UnityEngine_Vector3__ToArray__MethodInfo); DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_Vector3__TrimExcess, (List_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_Vector3__get_Capacity, (List_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6AE0, List_1_UnityEngine_Vector3__get_Capacity__MethodInfo); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_Vector3__get_Count, (List_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF740, List_1_UnityEngine_Vector3__get_Count__MethodInfo); DO_APP_FUNC(0x01753A20, Vector3, List_1_UnityEngine_Vector3__get_Item, (List_1_UnityEngine_Vector3_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF720, List_1_UnityEngine_Vector3__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_Vector3__set_Capacity, (List_1_UnityEngine_Vector3_ * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6AB8, List_1_UnityEngine_Vector3__set_Capacity__MethodInfo); DO_APP_FUNC(0x01753A80, void, List_1_UnityEngine_Vector3__set_Item, (List_1_UnityEngine_Vector3_ * __this, int32_t index, Vector3 value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB6A8, List_1_UnityEngine_Vector3__set_Item__MethodInfo); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_Vector4___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_Vector4___ctor, (List_1_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFFA90, List_1_UnityEngine_Vector4___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_Vector4___ctor_1, (List_1_UnityEngine_Vector4_ * __this, IEnumerable_1_UnityEngine_Vector4_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_Vector4___ctor_2, (List_1_UnityEngine_Vector4_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB950, List_1_UnityEngine_Vector4___ctor_2__MethodInfo); DO_APP_FUNC(0x01751370, void, List_1_UnityEngine_Vector4__Add, (List_1_UnityEngine_Vector4_ * __this, Vector4 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF878, List_1_UnityEngine_Vector4__Add__MethodInfo); DO_APP_FUNC(0x017B1990, void, List_1_UnityEngine_Vector4__AddEnumerable, (List_1_UnityEngine_Vector4_ * __this, IEnumerable_1_UnityEngine_Vector4_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_UnityEngine_Vector4__AddRange, (List_1_UnityEngine_Vector4_ * __this, IEnumerable_1_UnityEngine_Vector4_ * collection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0AB8, List_1_UnityEngine_Vector4__AddRange__MethodInfo); DO_APP_FUNC(0x017513F0, void, List_1_UnityEngine_Vector4__AddWithResize, (List_1_UnityEngine_Vector4_ * __this, Vector4 item, MethodInfo * method)); DO_APP_FUNC(0x01730510, ReadOnlyCollection_1_UnityEngine_Vector4_ *, List_1_UnityEngine_Vector4__AsReadOnly, (List_1_UnityEngine_Vector4_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01730630, int32_t, List_1_UnityEngine_Vector4__BinarySearch, (List_1_UnityEngine_Vector4_ * __this, Vector4 item, MethodInfo * method)); DO_APP_FUNC(0x017306C0, int32_t, List_1_UnityEngine_Vector4__BinarySearch_1, (List_1_UnityEngine_Vector4_ * __this, Vector4 item, IComparer_1_UnityEngine_Vector4_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01730590, int32_t, List_1_UnityEngine_Vector4__BinarySearch_2, (List_1_UnityEngine_Vector4_ * __this, int32_t index, int32_t count, Vector4 item, IComparer_1_UnityEngine_Vector4_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01749550, void, List_1_UnityEngine_Vector4__Clear, (List_1_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB978, List_1_UnityEngine_Vector4__Clear__MethodInfo); DO_APP_FUNC(0x01730760, bool, List_1_UnityEngine_Vector4__Contains, (List_1_UnityEngine_Vector4_ * __this, Vector4 item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_UnityEngine_Vector4__CopyTo, (List_1_UnityEngine_Vector4_ * __this, Vector4__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_UnityEngine_Vector4__CopyTo_1, (List_1_UnityEngine_Vector4_ * __this, Vector4__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -170485,12 +187957,16 @@ DO_APP_FUNC(0x0041AF00, bool, List_1_UnityEngine_Vector4__System_Collections_ILi DO_APP_FUNC(0x01730020, Object *, List_1_UnityEngine_Vector4__System_Collections_IList_get_Item, (List_1_UnityEngine_Vector4_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x017300A0, void, List_1_UnityEngine_Vector4__System_Collections_IList_set_Item, (List_1_UnityEngine_Vector4_ * __this, int32_t index, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01732000, Vector4__Array *, List_1_UnityEngine_Vector4__ToArray, (List_1_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCD50, List_1_UnityEngine_Vector4__ToArray__MethodInfo); DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_Vector4__TrimExcess, (List_1_UnityEngine_Vector4_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_Vector4__get_Capacity, (List_1_UnityEngine_Vector4_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_Vector4__get_Count, (List_1_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF730, List_1_UnityEngine_Vector4__get_Count__MethodInfo); DO_APP_FUNC(0x0172FE60, Vector4, List_1_UnityEngine_Vector4__get_Item, (List_1_UnityEngine_Vector4_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF710, List_1_UnityEngine_Vector4__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_Vector4__set_Capacity, (List_1_UnityEngine_Vector4_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01751320, void, List_1_UnityEngine_Vector4__set_Item, (List_1_UnityEngine_Vector4_ * __this, int32_t index, Vector4 value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB938, List_1_UnityEngine_Vector4__set_Item__MethodInfo); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_Rendering_VertexAttributeDescriptor___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_Rendering_VertexAttributeDescriptor___ctor, (List_1_UnityEngine_Rendering_VertexAttributeDescriptor_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_Rendering_VertexAttributeDescriptor___ctor_1, (List_1_UnityEngine_Rendering_VertexAttributeDescriptor_ * __this, IEnumerable_1_UnityEngine_Rendering_VertexAttributeDescriptor_ * collection, MethodInfo * method)); @@ -170678,7 +188154,9 @@ DO_APP_FUNC(0x017323E0, void, List_1_Pathfinding_Voxels_VoxelContour___cctor, (M DO_APP_FUNC(0x0172F7F0, void, List_1_Pathfinding_Voxels_VoxelContour___ctor, (List_1_Pathfinding_Voxels_VoxelContour_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0172FA30, void, List_1_Pathfinding_Voxels_VoxelContour___ctor_1, (List_1_Pathfinding_Voxels_VoxelContour_ * __this, IEnumerable_1_Pathfinding_Voxels_VoxelContour_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_Pathfinding_Voxels_VoxelContour___ctor_2, (List_1_Pathfinding_Voxels_VoxelContour_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA8E8, List_1_Pathfinding_Voxels_VoxelContour___ctor_2__MethodInfo); DO_APP_FUNC(0x01743E80, void, List_1_Pathfinding_Voxels_VoxelContour__Add, (List_1_Pathfinding_Voxels_VoxelContour_ * __this, VoxelContour item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA920, List_1_Pathfinding_Voxels_VoxelContour__Add__MethodInfo); DO_APP_FUNC(0x017B35C0, void, List_1_Pathfinding_Voxels_VoxelContour__AddEnumerable, (List_1_Pathfinding_Voxels_VoxelContour_ * __this, IEnumerable_1_Pathfinding_Voxels_VoxelContour_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_Pathfinding_Voxels_VoxelContour__AddRange, (List_1_Pathfinding_Voxels_VoxelContour_ * __this, IEnumerable_1_Pathfinding_Voxels_VoxelContour_ * collection, MethodInfo * method)); DO_APP_FUNC(0x01743F70, void, List_1_Pathfinding_Voxels_VoxelContour__AddWithResize, (List_1_Pathfinding_Voxels_VoxelContour_ * __this, VoxelContour item, MethodInfo * method)); @@ -170731,14 +188209,19 @@ DO_APP_FUNC(0x01732000, VoxelContour__Array *, List_1_Pathfinding_Voxels_VoxelCo DO_APP_FUNC(0x017320E0, void, List_1_Pathfinding_Voxels_VoxelContour__TrimExcess, (List_1_Pathfinding_Voxels_VoxelContour_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_Pathfinding_Voxels_VoxelContour__get_Capacity, (List_1_Pathfinding_Voxels_VoxelContour_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_Pathfinding_Voxels_VoxelContour__get_Count, (List_1_Pathfinding_Voxels_VoxelContour_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA8E0, List_1_Pathfinding_Voxels_VoxelContour__get_Count__MethodInfo); DO_APP_FUNC(0x01741E50, VoxelContour, List_1_Pathfinding_Voxels_VoxelContour__get_Item, (List_1_Pathfinding_Voxels_VoxelContour_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA908, List_1_Pathfinding_Voxels_VoxelContour__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_Pathfinding_Voxels_VoxelContour__set_Capacity, (List_1_Pathfinding_Voxels_VoxelContour_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01743DD0, void, List_1_Pathfinding_Voxels_VoxelContour__set_Item, (List_1_Pathfinding_Voxels_VoxelContour_ * __this, int32_t index, VoxelContour value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA8F8, List_1_Pathfinding_Voxels_VoxelContour__set_Item__MethodInfo); DO_APP_FUNC(0x017323E0, void, List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES___ctor, (List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F1C0, List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES___ctor_1, (List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES_ * __this, IEnumerable_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES___ctor_2, (List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x017B3E10, void, List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES__Add, (List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES_ * __this, Win32_IP_ADAPTER_ADDRESSES item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F1D0, List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES__Add__MethodInfo); DO_APP_FUNC(0x017B6140, void, List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES__AddEnumerable, (List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES_ * __this, IEnumerable_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES__AddRange, (List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES_ * __this, IEnumerable_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES_ * collection, MethodInfo * method)); DO_APP_FUNC(0x017B3F60, void, List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES__AddWithResize, (List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES_ * __this, Win32_IP_ADAPTER_ADDRESSES item, MethodInfo * method)); @@ -170788,6 +188271,7 @@ DO_APP_FUNC(0x0041AF00, bool, List_1_System_Net_NetworkInformation_Win32_IP_ADAP DO_APP_FUNC(0x017B3B80, Object *, List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES__System_Collections_IList_get_Item, (List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x017B3C60, void, List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES__System_Collections_IList_set_Item, (List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES_ * __this, int32_t index, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01732000, Win32_IP_ADAPTER_ADDRESSES__Array *, List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES__ToArray, (List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F1C8, List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES__ToArray__MethodInfo); DO_APP_FUNC(0x017320E0, void, List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES__TrimExcess, (List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES__get_Capacity, (List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES__get_Count, (List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES_ * __this, MethodInfo * method)); @@ -170796,9 +188280,11 @@ DO_APP_FUNC(0x0172FC90, void, List_1_System_Net_NetworkInformation_Win32_IP_ADAP DO_APP_FUNC(0x017B3940, void, List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES__set_Item, (List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES_ * __this, int32_t index, Win32_IP_ADAPTER_ADDRESSES value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO___ctor, (List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F130, List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO___ctor_1, (List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO_ * __this, IEnumerable_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO___ctor_2, (List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x017B6A30, void, List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO__Add, (List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO_ * __this, Win32_IP_ADAPTER_INFO item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F118, List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO__Add__MethodInfo); DO_APP_FUNC(0x017B8CC0, void, List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO__AddEnumerable, (List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO_ * __this, IEnumerable_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO__AddRange, (List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO_ * __this, IEnumerable_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO_ * collection, MethodInfo * method)); DO_APP_FUNC(0x017B6B70, void, List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO__AddWithResize, (List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO_ * __this, Win32_IP_ADAPTER_INFO item, MethodInfo * method)); @@ -170848,6 +188334,7 @@ DO_APP_FUNC(0x0041AF00, bool, List_1_System_Net_NetworkInformation_Win32_IP_ADAP DO_APP_FUNC(0x017B67B0, Object *, List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO__System_Collections_IList_get_Item, (List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x017B6890, void, List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO__System_Collections_IList_set_Item, (List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO_ * __this, int32_t index, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01732000, Win32_IP_ADAPTER_INFO__Array *, List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO__ToArray, (List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F138, List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO__ToArray__MethodInfo); DO_APP_FUNC(0x017320E0, void, List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO__TrimExcess, (List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO__get_Capacity, (List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO__get_Count, (List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO_ * __this, MethodInfo * method)); @@ -170974,11 +188461,14 @@ DO_APP_FUNC(0x01732000, XRFeatureDescriptor__Array *, List_1_UnityEngine_InputSy DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor__TrimExcess, (List_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor__get_Capacity, (List_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor__get_Count, (List_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCDA60, List_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor__get_Count__MethodInfo); DO_APP_FUNC(0x01744B50, XRFeatureDescriptor, List_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor__get_Item, (List_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCDAF8, List_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor__set_Capacity, (List_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x0174B820, void, List_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor__set_Item, (List_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor_ * __this, int32_t index, XRFeatureDescriptor value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_XR_XRNodeState___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_XR_XRNodeState___ctor, (List_1_UnityEngine_XR_XRNodeState_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D14228, List_1_UnityEngine_XR_XRNodeState___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_XR_XRNodeState___ctor_1, (List_1_UnityEngine_XR_XRNodeState_ * __this, IEnumerable_1_UnityEngine_XR_XRNodeState_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_XR_XRNodeState___ctor_2, (List_1_UnityEngine_XR_XRNodeState_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x017BA320, void, List_1_UnityEngine_XR_XRNodeState__Add, (List_1_UnityEngine_XR_XRNodeState_ * __this, XRNodeState item, MethodInfo * method)); @@ -170990,6 +188480,7 @@ DO_APP_FUNC(0x017BA750, int32_t, List_1_UnityEngine_XR_XRNodeState__BinarySearch DO_APP_FUNC(0x017BA820, int32_t, List_1_UnityEngine_XR_XRNodeState__BinarySearch_1, (List_1_UnityEngine_XR_XRNodeState_ * __this, XRNodeState item, IComparer_1_UnityEngine_XR_XRNodeState_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x017BA660, int32_t, List_1_UnityEngine_XR_XRNodeState__BinarySearch_2, (List_1_UnityEngine_XR_XRNodeState_ * __this, int32_t index, int32_t count, XRNodeState item, IComparer_1_UnityEngine_XR_XRNodeState_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01749550, void, List_1_UnityEngine_XR_XRNodeState__Clear, (List_1_UnityEngine_XR_XRNodeState_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4708, List_1_UnityEngine_XR_XRNodeState__Clear__MethodInfo); DO_APP_FUNC(0x017BA8F0, bool, List_1_UnityEngine_XR_XRNodeState__Contains, (List_1_UnityEngine_XR_XRNodeState_ * __this, XRNodeState item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_UnityEngine_XR_XRNodeState__CopyTo, (List_1_UnityEngine_XR_XRNodeState_ * __this, XRNodeState__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_UnityEngine_XR_XRNodeState__CopyTo_1, (List_1_UnityEngine_XR_XRNodeState_ * __this, XRNodeState__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -171001,6 +188492,7 @@ DO_APP_FUNC(0x01730C90, int32_t, List_1_UnityEngine_XR_XRNodeState__FindIndex, ( DO_APP_FUNC(0x017BAE60, int32_t, List_1_UnityEngine_XR_XRNodeState__FindIndex_1, (List_1_UnityEngine_XR_XRNodeState_ * __this, int32_t startIndex, int32_t count, Predicate_1_UnityEngine_XR_XRNodeState_ * match, MethodInfo * method)); DO_APP_FUNC(0x017BAFC0, void, List_1_UnityEngine_XR_XRNodeState__ForEach, (List_1_UnityEngine_XR_XRNodeState_ * __this, Action_1_UnityEngine_XR_XRNodeState_ * action, MethodInfo * method)); DO_APP_FUNC(0x017BB0E0, List_1_T_Enumerator_UnityEngine_XR_XRNodeState_, List_1_UnityEngine_XR_XRNodeState__GetEnumerator, (List_1_UnityEngine_XR_XRNodeState_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B188, List_1_UnityEngine_XR_XRNodeState__GetEnumerator__MethodInfo); DO_APP_FUNC(0x017BB2B0, int32_t, List_1_UnityEngine_XR_XRNodeState__IndexOf, (List_1_UnityEngine_XR_XRNodeState_ * __this, XRNodeState item, MethodInfo * method)); DO_APP_FUNC(0x017BB4B0, void, List_1_UnityEngine_XR_XRNodeState__Insert, (List_1_UnityEngine_XR_XRNodeState_ * __this, int32_t index, XRNodeState item, MethodInfo * method)); DO_APP_FUNC(0x017BB730, void, List_1_UnityEngine_XR_XRNodeState__InsertRange, (List_1_UnityEngine_XR_XRNodeState_ * __this, int32_t index, IEnumerable_1_UnityEngine_XR_XRNodeState_ * collection, MethodInfo * method)); @@ -171034,14 +188526,18 @@ DO_APP_FUNC(0x01732000, XRNodeState__Array *, List_1_UnityEngine_XR_XRNodeState_ DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_XR_XRNodeState__TrimExcess, (List_1_UnityEngine_XR_XRNodeState_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_XR_XRNodeState__get_Capacity, (List_1_UnityEngine_XR_XRNodeState_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_XR_XRNodeState__get_Count, (List_1_UnityEngine_XR_XRNodeState_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D14268, List_1_UnityEngine_XR_XRNodeState__get_Count__MethodInfo); DO_APP_FUNC(0x017B9EE0, XRNodeState, List_1_UnityEngine_XR_XRNodeState__get_Item, (List_1_UnityEngine_XR_XRNodeState_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D14250, List_1_UnityEngine_XR_XRNodeState__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_XR_XRNodeState__set_Capacity, (List_1_UnityEngine_XR_XRNodeState_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x017B9F60, void, List_1_UnityEngine_XR_XRNodeState__set_Item, (List_1_UnityEngine_XR_XRNodeState_ * __this, int32_t index, XRNodeState value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_Pathfinding_AdvancedSmooth_Turn___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_Pathfinding_AdvancedSmooth_Turn___ctor, (List_1_Pathfinding_AdvancedSmooth_Turn_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9130, List_1_Pathfinding_AdvancedSmooth_Turn___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_Pathfinding_AdvancedSmooth_Turn___ctor_1, (List_1_Pathfinding_AdvancedSmooth_Turn_ * __this, IEnumerable_1_Pathfinding_AdvancedSmooth_Turn_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_Pathfinding_AdvancedSmooth_Turn___ctor_2, (List_1_Pathfinding_AdvancedSmooth_Turn_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x01746CB0, void, List_1_Pathfinding_AdvancedSmooth_Turn__Add, (List_1_Pathfinding_AdvancedSmooth_Turn_ * __this, AdvancedSmooth_Turn item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB90F0, List_1_Pathfinding_AdvancedSmooth_Turn__Add__MethodInfo); DO_APP_FUNC(0x017BC6D0, void, List_1_Pathfinding_AdvancedSmooth_Turn__AddEnumerable, (List_1_Pathfinding_AdvancedSmooth_Turn_ * __this, IEnumerable_1_Pathfinding_AdvancedSmooth_Turn_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_Pathfinding_AdvancedSmooth_Turn__AddRange, (List_1_Pathfinding_AdvancedSmooth_Turn_ * __this, IEnumerable_1_Pathfinding_AdvancedSmooth_Turn_ * collection, MethodInfo * method)); DO_APP_FUNC(0x01746D90, void, List_1_Pathfinding_AdvancedSmooth_Turn__AddWithResize, (List_1_Pathfinding_AdvancedSmooth_Turn_ * __this, AdvancedSmooth_Turn item, MethodInfo * method)); @@ -171050,6 +188546,7 @@ DO_APP_FUNC(0x01730630, int32_t, List_1_Pathfinding_AdvancedSmooth_Turn__BinaryS DO_APP_FUNC(0x017306C0, int32_t, List_1_Pathfinding_AdvancedSmooth_Turn__BinarySearch_1, (List_1_Pathfinding_AdvancedSmooth_Turn_ * __this, AdvancedSmooth_Turn item, IComparer_1_Pathfinding_AdvancedSmooth_Turn_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01730590, int32_t, List_1_Pathfinding_AdvancedSmooth_Turn__BinarySearch_2, (List_1_Pathfinding_AdvancedSmooth_Turn_ * __this, int32_t index, int32_t count, AdvancedSmooth_Turn item, IComparer_1_Pathfinding_AdvancedSmooth_Turn_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x003CB200, void, List_1_Pathfinding_AdvancedSmooth_Turn__Clear, (List_1_Pathfinding_AdvancedSmooth_Turn_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9120, List_1_Pathfinding_AdvancedSmooth_Turn__Clear__MethodInfo); DO_APP_FUNC(0x01730760, bool, List_1_Pathfinding_AdvancedSmooth_Turn__Contains, (List_1_Pathfinding_AdvancedSmooth_Turn_ * __this, AdvancedSmooth_Turn item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_Pathfinding_AdvancedSmooth_Turn__CopyTo, (List_1_Pathfinding_AdvancedSmooth_Turn_ * __this, AdvancedSmooth_Turn__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_Pathfinding_AdvancedSmooth_Turn__CopyTo_1, (List_1_Pathfinding_AdvancedSmooth_Turn_ * __this, AdvancedSmooth_Turn__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -171072,6 +188569,7 @@ DO_APP_FUNC(0x01731C60, void, List_1_Pathfinding_AdvancedSmooth_Turn__RemoveRang DO_APP_FUNC(0x01731D00, void, List_1_Pathfinding_AdvancedSmooth_Turn__Reverse, (List_1_Pathfinding_AdvancedSmooth_Turn_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01731D60, void, List_1_Pathfinding_AdvancedSmooth_Turn__Reverse_1, (List_1_Pathfinding_AdvancedSmooth_Turn_ * __this, int32_t index, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x01731DD0, void, List_1_Pathfinding_AdvancedSmooth_Turn__Sort, (List_1_Pathfinding_AdvancedSmooth_Turn_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9110, List_1_Pathfinding_AdvancedSmooth_Turn__Sort__MethodInfo); DO_APP_FUNC(0x01731F40, void, List_1_Pathfinding_AdvancedSmooth_Turn__Sort_1, (List_1_Pathfinding_AdvancedSmooth_Turn_ * __this, Comparison_1_Pathfinding_AdvancedSmooth_Turn_ * comparison, MethodInfo * method)); DO_APP_FUNC(0x01731E40, void, List_1_Pathfinding_AdvancedSmooth_Turn__Sort_2, (List_1_Pathfinding_AdvancedSmooth_Turn_ * __this, IComparer_1_Pathfinding_AdvancedSmooth_Turn_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01731EC0, void, List_1_Pathfinding_AdvancedSmooth_Turn__Sort_3, (List_1_Pathfinding_AdvancedSmooth_Turn_ * __this, int32_t index, int32_t count, IComparer_1_Pathfinding_AdvancedSmooth_Turn_ * comparer, MethodInfo * method)); @@ -171094,7 +188592,9 @@ DO_APP_FUNC(0x01732000, AdvancedSmooth_Turn__Array *, List_1_Pathfinding_Advance DO_APP_FUNC(0x017320E0, void, List_1_Pathfinding_AdvancedSmooth_Turn__TrimExcess, (List_1_Pathfinding_AdvancedSmooth_Turn_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_Pathfinding_AdvancedSmooth_Turn__get_Capacity, (List_1_Pathfinding_AdvancedSmooth_Turn_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_Pathfinding_AdvancedSmooth_Turn__get_Count, (List_1_Pathfinding_AdvancedSmooth_Turn_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9108, List_1_Pathfinding_AdvancedSmooth_Turn__get_Count__MethodInfo); DO_APP_FUNC(0x0172FE60, AdvancedSmooth_Turn, List_1_Pathfinding_AdvancedSmooth_Turn__get_Item, (List_1_Pathfinding_AdvancedSmooth_Turn_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9118, List_1_Pathfinding_AdvancedSmooth_Turn__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_Pathfinding_AdvancedSmooth_Turn__set_Capacity, (List_1_Pathfinding_AdvancedSmooth_Turn_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01746C10, void, List_1_Pathfinding_AdvancedSmooth_Turn__set_Item, (List_1_Pathfinding_AdvancedSmooth_Turn_ * __this, int32_t index, AdvancedSmooth_Turn value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo___cctor, (MethodInfo * method)); @@ -171164,6 +188664,7 @@ DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_Timeline_AnimationOutputWeightP DO_APP_FUNC(0x01786D50, void, List_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo__set_Item, (List_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo_ * __this, int32_t index, AnimationOutputWeightProcessor_WeightInfo value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_BeforeRenderHelper_OrderBlock___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_BeforeRenderHelper_OrderBlock___ctor, (List_1_UnityEngine_BeforeRenderHelper_OrderBlock_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04108, List_1_UnityEngine_BeforeRenderHelper_OrderBlock___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_BeforeRenderHelper_OrderBlock___ctor_1, (List_1_UnityEngine_BeforeRenderHelper_OrderBlock_ * __this, IEnumerable_1_UnityEngine_BeforeRenderHelper_OrderBlock_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_BeforeRenderHelper_OrderBlock___ctor_2, (List_1_UnityEngine_BeforeRenderHelper_OrderBlock_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x01746CB0, void, List_1_UnityEngine_BeforeRenderHelper_OrderBlock__Add, (List_1_UnityEngine_BeforeRenderHelper_OrderBlock_ * __this, BeforeRenderHelper_OrderBlock item, MethodInfo * method)); @@ -171188,11 +188689,13 @@ DO_APP_FUNC(0x01730DF0, void, List_1_UnityEngine_BeforeRenderHelper_OrderBlock__ DO_APP_FUNC(0x01730EC0, List_1_T_Enumerator_UnityEngine_BeforeRenderHelper_OrderBlock_, List_1_UnityEngine_BeforeRenderHelper_OrderBlock__GetEnumerator, (List_1_UnityEngine_BeforeRenderHelper_OrderBlock_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01731030, int32_t, List_1_UnityEngine_BeforeRenderHelper_OrderBlock__IndexOf, (List_1_UnityEngine_BeforeRenderHelper_OrderBlock_ * __this, BeforeRenderHelper_OrderBlock item, MethodInfo * method)); DO_APP_FUNC(0x01746E50, void, List_1_UnityEngine_BeforeRenderHelper_OrderBlock__Insert, (List_1_UnityEngine_BeforeRenderHelper_OrderBlock_ * __this, int32_t index, BeforeRenderHelper_OrderBlock item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04150, List_1_UnityEngine_BeforeRenderHelper_OrderBlock__Insert__MethodInfo); DO_APP_FUNC(0x017BD110, void, List_1_UnityEngine_BeforeRenderHelper_OrderBlock__InsertRange, (List_1_UnityEngine_BeforeRenderHelper_OrderBlock_ * __this, int32_t index, IEnumerable_1_UnityEngine_BeforeRenderHelper_OrderBlock_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172FF50, bool, List_1_UnityEngine_BeforeRenderHelper_OrderBlock__IsCompatibleObject, (Object * value, MethodInfo * method)); DO_APP_FUNC(0x017317F0, bool, List_1_UnityEngine_BeforeRenderHelper_OrderBlock__Remove, (List_1_UnityEngine_BeforeRenderHelper_OrderBlock_ * __this, BeforeRenderHelper_OrderBlock item, MethodInfo * method)); DO_APP_FUNC(0x01747340, int32_t, List_1_UnityEngine_BeforeRenderHelper_OrderBlock__RemoveAll, (List_1_UnityEngine_BeforeRenderHelper_OrderBlock_ * __this, Predicate_1_UnityEngine_BeforeRenderHelper_OrderBlock_ * match, MethodInfo * method)); DO_APP_FUNC(0x01747530, void, List_1_UnityEngine_BeforeRenderHelper_OrderBlock__RemoveAt, (List_1_UnityEngine_BeforeRenderHelper_OrderBlock_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04130, List_1_UnityEngine_BeforeRenderHelper_OrderBlock__RemoveAt__MethodInfo); DO_APP_FUNC(0x01731C60, void, List_1_UnityEngine_BeforeRenderHelper_OrderBlock__RemoveRange, (List_1_UnityEngine_BeforeRenderHelper_OrderBlock_ * __this, int32_t index, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x01731D00, void, List_1_UnityEngine_BeforeRenderHelper_OrderBlock__Reverse, (List_1_UnityEngine_BeforeRenderHelper_OrderBlock_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01731D60, void, List_1_UnityEngine_BeforeRenderHelper_OrderBlock__Reverse_1, (List_1_UnityEngine_BeforeRenderHelper_OrderBlock_ * __this, int32_t index, int32_t count, MethodInfo * method)); @@ -171219,14 +188722,19 @@ DO_APP_FUNC(0x01732000, BeforeRenderHelper_OrderBlock__Array *, List_1_UnityEngi DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_BeforeRenderHelper_OrderBlock__TrimExcess, (List_1_UnityEngine_BeforeRenderHelper_OrderBlock_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_BeforeRenderHelper_OrderBlock__get_Capacity, (List_1_UnityEngine_BeforeRenderHelper_OrderBlock_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_BeforeRenderHelper_OrderBlock__get_Count, (List_1_UnityEngine_BeforeRenderHelper_OrderBlock_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04148, List_1_UnityEngine_BeforeRenderHelper_OrderBlock__get_Count__MethodInfo); DO_APP_FUNC(0x0172FE60, BeforeRenderHelper_OrderBlock, List_1_UnityEngine_BeforeRenderHelper_OrderBlock__get_Item, (List_1_UnityEngine_BeforeRenderHelper_OrderBlock_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04140, List_1_UnityEngine_BeforeRenderHelper_OrderBlock__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_BeforeRenderHelper_OrderBlock__set_Capacity, (List_1_UnityEngine_BeforeRenderHelper_OrderBlock_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01746C10, void, List_1_UnityEngine_BeforeRenderHelper_OrderBlock__set_Item, (List_1_UnityEngine_BeforeRenderHelper_OrderBlock_ * __this, int32_t index, BeforeRenderHelper_OrderBlock value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04138, List_1_UnityEngine_BeforeRenderHelper_OrderBlock__set_Item__MethodInfo); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page___ctor, (List_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page___ctor_1, (List_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page_ * __this, IEnumerable_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page___ctor_2, (List_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD8210, List_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page___ctor_2__MethodInfo); DO_APP_FUNC(0x01749180, void, List_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__Add, (List_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page_ * __this, BitmapAllocator32_Page item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7F90, List_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__Add__MethodInfo); DO_APP_FUNC(0x017BDB70, void, List_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__AddEnumerable, (List_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page_ * __this, IEnumerable_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__AddRange, (List_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page_ * __this, IEnumerable_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page_ * collection, MethodInfo * method)); DO_APP_FUNC(0x017491E0, void, List_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__AddWithResize, (List_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page_ * __this, BitmapAllocator32_Page item, MethodInfo * method)); @@ -171278,10 +188786,14 @@ DO_APP_FUNC(0x01749050, void, List_1_UnityEngine_UIElements_UIR_BitmapAllocator3 DO_APP_FUNC(0x01732000, BitmapAllocator32_Page__Array *, List_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__ToArray, (List_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page_ * __this, MethodInfo * method)); DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__TrimExcess, (List_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__get_Capacity, (List_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7FC8, List_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__get_Capacity__MethodInfo); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__get_Count, (List_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD8038, List_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__get_Count__MethodInfo); DO_APP_FUNC(0x01748E90, BitmapAllocator32_Page, List_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__get_Item, (List_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD8008, List_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__set_Capacity, (List_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01748ED0, void, List_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__set_Item, (List_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page_ * __this, int32_t index, BitmapAllocator32_Page value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7FE8, List_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page__set_Item__MethodInfo); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_Camera_RenderRequest___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_Camera_RenderRequest___ctor, (List_1_UnityEngine_Camera_RenderRequest_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_Camera_RenderRequest___ctor_1, (List_1_UnityEngine_Camera_RenderRequest_ * __this, IEnumerable_1_UnityEngine_Camera_RenderRequest_ * collection, MethodInfo * method)); @@ -171344,9 +188856,11 @@ DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_Camera_RenderRequest__set_Capac DO_APP_FUNC(0x0175C8D0, void, List_1_UnityEngine_Camera_RenderRequest__set_Item, (List_1_UnityEngine_Camera_RenderRequest_ * __this, int32_t index, Camera_RenderRequest value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_Cinemachine_CameraState_CustomBlendable___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_Cinemachine_CameraState_CustomBlendable___ctor, (List_1_Cinemachine_CameraState_CustomBlendable_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD04F8, List_1_Cinemachine_CameraState_CustomBlendable___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_Cinemachine_CameraState_CustomBlendable___ctor_1, (List_1_Cinemachine_CameraState_CustomBlendable_ * __this, IEnumerable_1_Cinemachine_CameraState_CustomBlendable_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_Cinemachine_CameraState_CustomBlendable___ctor_2, (List_1_Cinemachine_CameraState_CustomBlendable_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x017301E0, void, List_1_Cinemachine_CameraState_CustomBlendable__Add, (List_1_Cinemachine_CameraState_CustomBlendable_ * __this, CameraState_CustomBlendable item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD04E8, List_1_Cinemachine_CameraState_CustomBlendable__Add__MethodInfo); DO_APP_FUNC(0x017BE960, void, List_1_Cinemachine_CameraState_CustomBlendable__AddEnumerable, (List_1_Cinemachine_CameraState_CustomBlendable_ * __this, IEnumerable_1_Cinemachine_CameraState_CustomBlendable_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_Cinemachine_CameraState_CustomBlendable__AddRange, (List_1_Cinemachine_CameraState_CustomBlendable_ * __this, IEnumerable_1_Cinemachine_CameraState_CustomBlendable_ * collection, MethodInfo * method)); DO_APP_FUNC(0x017302C0, void, List_1_Cinemachine_CameraState_CustomBlendable__AddWithResize, (List_1_Cinemachine_CameraState_CustomBlendable_ * __this, CameraState_CustomBlendable item, MethodInfo * method)); @@ -171399,14 +188913,18 @@ DO_APP_FUNC(0x01732000, CameraState_CustomBlendable__Array *, List_1_Cinemachine DO_APP_FUNC(0x017320E0, void, List_1_Cinemachine_CameraState_CustomBlendable__TrimExcess, (List_1_Cinemachine_CameraState_CustomBlendable_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_Cinemachine_CameraState_CustomBlendable__get_Capacity, (List_1_Cinemachine_CameraState_CustomBlendable_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_Cinemachine_CameraState_CustomBlendable__get_Count, (List_1_Cinemachine_CameraState_CustomBlendable_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0508, List_1_Cinemachine_CameraState_CustomBlendable__get_Count__MethodInfo); DO_APP_FUNC(0x0172FE60, CameraState_CustomBlendable, List_1_Cinemachine_CameraState_CustomBlendable__get_Item, (List_1_Cinemachine_CameraState_CustomBlendable_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0500, List_1_Cinemachine_CameraState_CustomBlendable__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_Cinemachine_CameraState_CustomBlendable__set_Capacity, (List_1_Cinemachine_CameraState_CustomBlendable_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x0172FEB0, void, List_1_Cinemachine_CameraState_CustomBlendable__set_Item, (List_1_Cinemachine_CameraState_CustomBlendable_ * __this, int32_t index, CameraState_CustomBlendable value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_Cinemachine_CinemachineClearShot_Pair___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_Cinemachine_CinemachineClearShot_Pair___ctor, (List_1_Cinemachine_CinemachineClearShot_Pair_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCE220, List_1_Cinemachine_CinemachineClearShot_Pair___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_Cinemachine_CinemachineClearShot_Pair___ctor_1, (List_1_Cinemachine_CinemachineClearShot_Pair_ * __this, IEnumerable_1_Cinemachine_CinemachineClearShot_Pair_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_Cinemachine_CinemachineClearShot_Pair___ctor_2, (List_1_Cinemachine_CinemachineClearShot_Pair_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x01749180, void, List_1_Cinemachine_CinemachineClearShot_Pair__Add, (List_1_Cinemachine_CinemachineClearShot_Pair_ * __this, CinemachineClearShot_Pair item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCE230, List_1_Cinemachine_CinemachineClearShot_Pair__Add__MethodInfo); DO_APP_FUNC(0x017BF000, void, List_1_Cinemachine_CinemachineClearShot_Pair__AddEnumerable, (List_1_Cinemachine_CinemachineClearShot_Pair_ * __this, IEnumerable_1_Cinemachine_CinemachineClearShot_Pair_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_Cinemachine_CinemachineClearShot_Pair__AddRange, (List_1_Cinemachine_CinemachineClearShot_Pair_ * __this, IEnumerable_1_Cinemachine_CinemachineClearShot_Pair_ * collection, MethodInfo * method)); DO_APP_FUNC(0x017491E0, void, List_1_Cinemachine_CinemachineClearShot_Pair__AddWithResize, (List_1_Cinemachine_CinemachineClearShot_Pair_ * __this, CinemachineClearShot_Pair item, MethodInfo * method)); @@ -171438,6 +188956,7 @@ DO_APP_FUNC(0x01731D00, void, List_1_Cinemachine_CinemachineClearShot_Pair__Reve DO_APP_FUNC(0x01731D60, void, List_1_Cinemachine_CinemachineClearShot_Pair__Reverse_1, (List_1_Cinemachine_CinemachineClearShot_Pair_ * __this, int32_t index, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x01731DD0, void, List_1_Cinemachine_CinemachineClearShot_Pair__Sort, (List_1_Cinemachine_CinemachineClearShot_Pair_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01731F40, void, List_1_Cinemachine_CinemachineClearShot_Pair__Sort_1, (List_1_Cinemachine_CinemachineClearShot_Pair_ * __this, Comparison_1_Cinemachine_CinemachineClearShot_Pair_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCE210, List_1_Cinemachine_CinemachineClearShot_Pair__Sort_1__MethodInfo); DO_APP_FUNC(0x01731E40, void, List_1_Cinemachine_CinemachineClearShot_Pair__Sort_2, (List_1_Cinemachine_CinemachineClearShot_Pair_ * __this, IComparer_1_Cinemachine_CinemachineClearShot_Pair_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01731EC0, void, List_1_Cinemachine_CinemachineClearShot_Pair__Sort_3, (List_1_Cinemachine_CinemachineClearShot_Pair_ * __this, int32_t index, int32_t count, IComparer_1_Cinemachine_CinemachineClearShot_Pair_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, List_1_Cinemachine_CinemachineClearShot_Pair__System_Collections_Generic_ICollection_T__get_IsReadOnly, (List_1_Cinemachine_CinemachineClearShot_Pair_ * __this, MethodInfo * method)); @@ -171456,6 +188975,7 @@ DO_APP_FUNC(0x0041AF00, bool, List_1_Cinemachine_CinemachineClearShot_Pair__Syst DO_APP_FUNC(0x01748FE0, Object *, List_1_Cinemachine_CinemachineClearShot_Pair__System_Collections_IList_get_Item, (List_1_Cinemachine_CinemachineClearShot_Pair_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01749050, void, List_1_Cinemachine_CinemachineClearShot_Pair__System_Collections_IList_set_Item, (List_1_Cinemachine_CinemachineClearShot_Pair_ * __this, int32_t index, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01732000, CinemachineClearShot_Pair__Array *, List_1_Cinemachine_CinemachineClearShot_Pair__ToArray, (List_1_Cinemachine_CinemachineClearShot_Pair_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCE208, List_1_Cinemachine_CinemachineClearShot_Pair__ToArray__MethodInfo); DO_APP_FUNC(0x017320E0, void, List_1_Cinemachine_CinemachineClearShot_Pair__TrimExcess, (List_1_Cinemachine_CinemachineClearShot_Pair_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_Cinemachine_CinemachineClearShot_Pair__get_Capacity, (List_1_Cinemachine_CinemachineClearShot_Pair_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_Cinemachine_CinemachineClearShot_Pair__get_Count, (List_1_Cinemachine_CinemachineClearShot_Pair_ * __this, MethodInfo * method)); @@ -171464,9 +188984,11 @@ DO_APP_FUNC(0x0172FC90, void, List_1_Cinemachine_CinemachineClearShot_Pair__set_ DO_APP_FUNC(0x01748ED0, void, List_1_Cinemachine_CinemachineClearShot_Pair__set_Item, (List_1_Cinemachine_CinemachineClearShot_Pair_ * __this, int32_t index, CinemachineClearShot_Pair value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair___ctor, (List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEF28, List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair___ctor_1, (List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair_ * __this, IEnumerable_1_Cinemachine_CinemachineStateDrivenCamera_HashPair_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair___ctor_2, (List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x01749180, void, List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair__Add, (List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair_ * __this, CinemachineStateDrivenCamera_HashPair item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEF30, List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair__Add__MethodInfo); DO_APP_FUNC(0x017BF660, void, List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair__AddEnumerable, (List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair_ * __this, IEnumerable_1_Cinemachine_CinemachineStateDrivenCamera_HashPair_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair__AddRange, (List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair_ * __this, IEnumerable_1_Cinemachine_CinemachineStateDrivenCamera_HashPair_ * collection, MethodInfo * method)); DO_APP_FUNC(0x017491E0, void, List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair__AddWithResize, (List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair_ * __this, CinemachineStateDrivenCamera_HashPair item, MethodInfo * method)); @@ -171519,14 +189041,18 @@ DO_APP_FUNC(0x01732000, CinemachineStateDrivenCamera_HashPair__Array *, List_1_C DO_APP_FUNC(0x017320E0, void, List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair__TrimExcess, (List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair__get_Capacity, (List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair__get_Count, (List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEF08, List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair__get_Count__MethodInfo); DO_APP_FUNC(0x01748E90, CinemachineStateDrivenCamera_HashPair, List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair__get_Item, (List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEF00, List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair__set_Capacity, (List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01748ED0, void, List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair__set_Item, (List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair_ * __this, int32_t index, CinemachineStateDrivenCamera_HashPair value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_Cinemachine_ClipperLib_DoublePoint___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_Cinemachine_ClipperLib_DoublePoint___ctor, (List_1_Cinemachine_ClipperLib_DoublePoint_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1A40, List_1_Cinemachine_ClipperLib_DoublePoint___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_Cinemachine_ClipperLib_DoublePoint___ctor_1, (List_1_Cinemachine_ClipperLib_DoublePoint_ * __this, IEnumerable_1_Cinemachine_ClipperLib_DoublePoint_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_Cinemachine_ClipperLib_DoublePoint___ctor_2, (List_1_Cinemachine_ClipperLib_DoublePoint_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x017BF9D0, void, List_1_Cinemachine_ClipperLib_DoublePoint__Add, (List_1_Cinemachine_ClipperLib_DoublePoint_ * __this, ClipperLib_DoublePoint item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1A10, List_1_Cinemachine_ClipperLib_DoublePoint__Add__MethodInfo); DO_APP_FUNC(0x017C05C0, void, List_1_Cinemachine_ClipperLib_DoublePoint__AddEnumerable, (List_1_Cinemachine_ClipperLib_DoublePoint_ * __this, IEnumerable_1_Cinemachine_ClipperLib_DoublePoint_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_Cinemachine_ClipperLib_DoublePoint__AddRange, (List_1_Cinemachine_ClipperLib_DoublePoint_ * __this, IEnumerable_1_Cinemachine_ClipperLib_DoublePoint_ * collection, MethodInfo * method)); DO_APP_FUNC(0x017BFA50, void, List_1_Cinemachine_ClipperLib_DoublePoint__AddWithResize, (List_1_Cinemachine_ClipperLib_DoublePoint_ * __this, ClipperLib_DoublePoint item, MethodInfo * method)); @@ -171535,6 +189061,7 @@ DO_APP_FUNC(0x01730630, int32_t, List_1_Cinemachine_ClipperLib_DoublePoint__Bina DO_APP_FUNC(0x017306C0, int32_t, List_1_Cinemachine_ClipperLib_DoublePoint__BinarySearch_1, (List_1_Cinemachine_ClipperLib_DoublePoint_ * __this, ClipperLib_DoublePoint item, IComparer_1_Cinemachine_ClipperLib_DoublePoint_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01730590, int32_t, List_1_Cinemachine_ClipperLib_DoublePoint__BinarySearch_2, (List_1_Cinemachine_ClipperLib_DoublePoint_ * __this, int32_t index, int32_t count, ClipperLib_DoublePoint item, IComparer_1_Cinemachine_ClipperLib_DoublePoint_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01749550, void, List_1_Cinemachine_ClipperLib_DoublePoint__Clear, (List_1_Cinemachine_ClipperLib_DoublePoint_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1A20, List_1_Cinemachine_ClipperLib_DoublePoint__Clear__MethodInfo); DO_APP_FUNC(0x01730760, bool, List_1_Cinemachine_ClipperLib_DoublePoint__Contains, (List_1_Cinemachine_ClipperLib_DoublePoint_ * __this, ClipperLib_DoublePoint item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_Cinemachine_ClipperLib_DoublePoint__CopyTo, (List_1_Cinemachine_ClipperLib_DoublePoint_ * __this, ClipperLib_DoublePoint__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_Cinemachine_ClipperLib_DoublePoint__CopyTo_1, (List_1_Cinemachine_ClipperLib_DoublePoint_ * __this, ClipperLib_DoublePoint__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -171580,13 +189107,19 @@ DO_APP_FUNC(0x017320E0, void, List_1_Cinemachine_ClipperLib_DoublePoint__TrimExc DO_APP_FUNC(0x00BF9D80, int32_t, List_1_Cinemachine_ClipperLib_DoublePoint__get_Capacity, (List_1_Cinemachine_ClipperLib_DoublePoint_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_Cinemachine_ClipperLib_DoublePoint__get_Count, (List_1_Cinemachine_ClipperLib_DoublePoint_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0172FE60, ClipperLib_DoublePoint, List_1_Cinemachine_ClipperLib_DoublePoint__get_Item, (List_1_Cinemachine_ClipperLib_DoublePoint_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1A18, List_1_Cinemachine_ClipperLib_DoublePoint__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_Cinemachine_ClipperLib_DoublePoint__set_Capacity, (List_1_Cinemachine_ClipperLib_DoublePoint_ * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1A08, List_1_Cinemachine_ClipperLib_DoublePoint__set_Capacity__MethodInfo); DO_APP_FUNC(0x017BF970, void, List_1_Cinemachine_ClipperLib_DoublePoint__set_Item, (List_1_Cinemachine_ClipperLib_DoublePoint_ * __this, int32_t index, ClipperLib_DoublePoint value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1A00, List_1_Cinemachine_ClipperLib_DoublePoint__set_Item__MethodInfo); DO_APP_FUNC(0x017323E0, void, List_1_Cinemachine_ClipperLib_IntPoint___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_Cinemachine_ClipperLib_IntPoint___ctor, (List_1_Cinemachine_ClipperLib_IntPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0C28, List_1_Cinemachine_ClipperLib_IntPoint___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_Cinemachine_ClipperLib_IntPoint___ctor_1, (List_1_Cinemachine_ClipperLib_IntPoint_ * __this, IEnumerable_1_Cinemachine_ClipperLib_IntPoint_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_Cinemachine_ClipperLib_IntPoint___ctor_2, (List_1_Cinemachine_ClipperLib_IntPoint_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD02D0, List_1_Cinemachine_ClipperLib_IntPoint___ctor_2__MethodInfo); DO_APP_FUNC(0x01751370, void, List_1_Cinemachine_ClipperLib_IntPoint__Add, (List_1_Cinemachine_ClipperLib_IntPoint_ * __this, ClipperLib_IntPoint item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD02F0, List_1_Cinemachine_ClipperLib_IntPoint__Add__MethodInfo); DO_APP_FUNC(0x017C0CD0, void, List_1_Cinemachine_ClipperLib_IntPoint__AddEnumerable, (List_1_Cinemachine_ClipperLib_IntPoint_ * __this, IEnumerable_1_Cinemachine_ClipperLib_IntPoint_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_Cinemachine_ClipperLib_IntPoint__AddRange, (List_1_Cinemachine_ClipperLib_IntPoint_ * __this, IEnumerable_1_Cinemachine_ClipperLib_IntPoint_ * collection, MethodInfo * method)); DO_APP_FUNC(0x017513F0, void, List_1_Cinemachine_ClipperLib_IntPoint__AddWithResize, (List_1_Cinemachine_ClipperLib_IntPoint_ * __this, ClipperLib_IntPoint item, MethodInfo * method)); @@ -171606,6 +189139,7 @@ DO_APP_FUNC(0x01730C90, int32_t, List_1_Cinemachine_ClipperLib_IntPoint__FindInd DO_APP_FUNC(0x01730CE0, int32_t, List_1_Cinemachine_ClipperLib_IntPoint__FindIndex_1, (List_1_Cinemachine_ClipperLib_IntPoint_ * __this, int32_t startIndex, int32_t count, Predicate_1_Cinemachine_ClipperLib_IntPoint_ * match, MethodInfo * method)); DO_APP_FUNC(0x01730DF0, void, List_1_Cinemachine_ClipperLib_IntPoint__ForEach, (List_1_Cinemachine_ClipperLib_IntPoint_ * __this, Action_1_Cinemachine_ClipperLib_IntPoint_ * action, MethodInfo * method)); DO_APP_FUNC(0x01730EC0, List_1_T_Enumerator_Cinemachine_ClipperLib_IntPoint_, List_1_Cinemachine_ClipperLib_IntPoint__GetEnumerator, (List_1_Cinemachine_ClipperLib_IntPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD09F0, List_1_Cinemachine_ClipperLib_IntPoint__GetEnumerator__MethodInfo); DO_APP_FUNC(0x01731030, int32_t, List_1_Cinemachine_ClipperLib_IntPoint__IndexOf, (List_1_Cinemachine_ClipperLib_IntPoint_ * __this, ClipperLib_IntPoint item, MethodInfo * method)); DO_APP_FUNC(0x01751460, void, List_1_Cinemachine_ClipperLib_IntPoint__Insert, (List_1_Cinemachine_ClipperLib_IntPoint_ * __this, int32_t index, ClipperLib_IntPoint item, MethodInfo * method)); DO_APP_FUNC(0x017C0910, void, List_1_Cinemachine_ClipperLib_IntPoint__InsertRange, (List_1_Cinemachine_ClipperLib_IntPoint_ * __this, int32_t index, IEnumerable_1_Cinemachine_ClipperLib_IntPoint_ * collection, MethodInfo * method)); @@ -171615,6 +189149,7 @@ DO_APP_FUNC(0x017518F0, int32_t, List_1_Cinemachine_ClipperLib_IntPoint__RemoveA DO_APP_FUNC(0x0174A620, void, List_1_Cinemachine_ClipperLib_IntPoint__RemoveAt, (List_1_Cinemachine_ClipperLib_IntPoint_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x0174A670, void, List_1_Cinemachine_ClipperLib_IntPoint__RemoveRange, (List_1_Cinemachine_ClipperLib_IntPoint_ * __this, int32_t index, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x01731D00, void, List_1_Cinemachine_ClipperLib_IntPoint__Reverse, (List_1_Cinemachine_ClipperLib_IntPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0A30, List_1_Cinemachine_ClipperLib_IntPoint__Reverse__MethodInfo); DO_APP_FUNC(0x01731D60, void, List_1_Cinemachine_ClipperLib_IntPoint__Reverse_1, (List_1_Cinemachine_ClipperLib_IntPoint_ * __this, int32_t index, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x01731DD0, void, List_1_Cinemachine_ClipperLib_IntPoint__Sort, (List_1_Cinemachine_ClipperLib_IntPoint_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01731F40, void, List_1_Cinemachine_ClipperLib_IntPoint__Sort_1, (List_1_Cinemachine_ClipperLib_IntPoint_ * __this, Comparison_1_Cinemachine_ClipperLib_IntPoint_ * comparison, MethodInfo * method)); @@ -171639,14 +189174,19 @@ DO_APP_FUNC(0x01732000, ClipperLib_IntPoint__Array *, List_1_Cinemachine_Clipper DO_APP_FUNC(0x017320E0, void, List_1_Cinemachine_ClipperLib_IntPoint__TrimExcess, (List_1_Cinemachine_ClipperLib_IntPoint_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_Cinemachine_ClipperLib_IntPoint__get_Capacity, (List_1_Cinemachine_ClipperLib_IntPoint_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_Cinemachine_ClipperLib_IntPoint__get_Count, (List_1_Cinemachine_ClipperLib_IntPoint_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD02A0, List_1_Cinemachine_ClipperLib_IntPoint__get_Count__MethodInfo); DO_APP_FUNC(0x0172FE60, ClipperLib_IntPoint, List_1_Cinemachine_ClipperLib_IntPoint__get_Item, (List_1_Cinemachine_ClipperLib_IntPoint_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0250, List_1_Cinemachine_ClipperLib_IntPoint__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_Cinemachine_ClipperLib_IntPoint__set_Capacity, (List_1_Cinemachine_ClipperLib_IntPoint_ * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0A28, List_1_Cinemachine_ClipperLib_IntPoint__set_Capacity__MethodInfo); DO_APP_FUNC(0x01751320, void, List_1_Cinemachine_ClipperLib_IntPoint__set_Item, (List_1_Cinemachine_ClipperLib_IntPoint_ * __this, int32_t index, ClipperLib_IntPoint value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_Cinemachine_ConfinerOven_PolygonSolution___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_Cinemachine_ConfinerOven_PolygonSolution___ctor, (List_1_Cinemachine_ConfinerOven_PolygonSolution_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD02E8, List_1_Cinemachine_ConfinerOven_PolygonSolution___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_Cinemachine_ConfinerOven_PolygonSolution___ctor_1, (List_1_Cinemachine_ConfinerOven_PolygonSolution_ * __this, IEnumerable_1_Cinemachine_ConfinerOven_PolygonSolution_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_Cinemachine_ConfinerOven_PolygonSolution___ctor_2, (List_1_Cinemachine_ConfinerOven_PolygonSolution_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x017301E0, void, List_1_Cinemachine_ConfinerOven_PolygonSolution__Add, (List_1_Cinemachine_ConfinerOven_PolygonSolution_ * __this, ConfinerOven_PolygonSolution item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD02F8, List_1_Cinemachine_ConfinerOven_PolygonSolution__Add__MethodInfo); DO_APP_FUNC(0x017C13D0, void, List_1_Cinemachine_ConfinerOven_PolygonSolution__AddEnumerable, (List_1_Cinemachine_ConfinerOven_PolygonSolution_ * __this, IEnumerable_1_Cinemachine_ConfinerOven_PolygonSolution_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_Cinemachine_ConfinerOven_PolygonSolution__AddRange, (List_1_Cinemachine_ConfinerOven_PolygonSolution_ * __this, IEnumerable_1_Cinemachine_ConfinerOven_PolygonSolution_ * collection, MethodInfo * method)); DO_APP_FUNC(0x017302C0, void, List_1_Cinemachine_ConfinerOven_PolygonSolution__AddWithResize, (List_1_Cinemachine_ConfinerOven_PolygonSolution_ * __this, ConfinerOven_PolygonSolution item, MethodInfo * method)); @@ -171699,14 +189239,18 @@ DO_APP_FUNC(0x01732000, ConfinerOven_PolygonSolution__Array *, List_1_Cinemachin DO_APP_FUNC(0x017320E0, void, List_1_Cinemachine_ConfinerOven_PolygonSolution__TrimExcess, (List_1_Cinemachine_ConfinerOven_PolygonSolution_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_Cinemachine_ConfinerOven_PolygonSolution__get_Capacity, (List_1_Cinemachine_ConfinerOven_PolygonSolution_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_Cinemachine_ConfinerOven_PolygonSolution__get_Count, (List_1_Cinemachine_ConfinerOven_PolygonSolution_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD02B8, List_1_Cinemachine_ConfinerOven_PolygonSolution__get_Count__MethodInfo); DO_APP_FUNC(0x0172FE60, ConfinerOven_PolygonSolution, List_1_Cinemachine_ConfinerOven_PolygonSolution__get_Item, (List_1_Cinemachine_ConfinerOven_PolygonSolution_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0270, List_1_Cinemachine_ConfinerOven_PolygonSolution__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_Cinemachine_ConfinerOven_PolygonSolution__set_Capacity, (List_1_Cinemachine_ConfinerOven_PolygonSolution_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x0172FEB0, void, List_1_Cinemachine_ConfinerOven_PolygonSolution__set_Item, (List_1_Cinemachine_ConfinerOven_PolygonSolution_ * __this, int32_t index, ConfinerOven_PolygonSolution value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB___ctor, (List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0172FA30, void, List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB___ctor_1, (List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * __this, IEnumerable_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB___ctor_2, (List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7858, List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB___ctor_2__MethodInfo); DO_APP_FUNC(0x00AA7550, void, List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__Add, (List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * __this, CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7728, List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__Add__MethodInfo); DO_APP_FUNC(0x017C1AF0, void, List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__AddEnumerable, (List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * __this, IEnumerable_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__AddRange, (List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * __this, IEnumerable_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * collection, MethodInfo * method)); DO_APP_FUNC(0x01753D90, void, List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__AddWithResize, (List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * __this, CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB item, MethodInfo * method)); @@ -171715,6 +189259,7 @@ DO_APP_FUNC(0x01754040, int32_t, List_1_Rewired_ComponentControls_CustomControll DO_APP_FUNC(0x017540E0, int32_t, List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__BinarySearch_1, (List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * __this, CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB item, IComparer_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01753F80, int32_t, List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__BinarySearch_2, (List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * __this, int32_t index, int32_t count, CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB item, IComparer_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01749550, void, List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__Clear, (List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7820, List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__Clear__MethodInfo); DO_APP_FUNC(0x01754180, bool, List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__Contains, (List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * __this, CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__CopyTo, (List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * __this, CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__CopyTo_1, (List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * __this, CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -171733,6 +189278,7 @@ DO_APP_FUNC(0x01753AE0, bool, List_1_Rewired_ComponentControls_CustomController_ DO_APP_FUNC(0x017550D0, bool, List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__Remove, (List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * __this, CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB item, MethodInfo * method)); DO_APP_FUNC(0x01755290, int32_t, List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__RemoveAll, (List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * __this, Predicate_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * match, MethodInfo * method)); DO_APP_FUNC(0x0174A620, void, List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__RemoveAt, (List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB77B0, List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__RemoveAt__MethodInfo); DO_APP_FUNC(0x0174A670, void, List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__RemoveRange, (List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * __this, int32_t index, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x01731D00, void, List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__Reverse, (List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01731D60, void, List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__Reverse_1, (List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * __this, int32_t index, int32_t count, MethodInfo * method)); @@ -171759,9 +189305,12 @@ DO_APP_FUNC(0x01732000, CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__Array *, DO_APP_FUNC(0x017320E0, void, List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__TrimExcess, (List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__get_Capacity, (List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__get_Count, (List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7718, List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__get_Count__MethodInfo); DO_APP_FUNC(0x01753A20, CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB, List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__get_Item, (List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB76F8, List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__set_Capacity, (List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01753A80, void, List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__set_Item, (List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * __this, int32_t index, CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB76F0, List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__set_Item__MethodInfo); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo___ctor, (List_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9E470, List_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo___ctor__MethodInfo); @@ -171829,9 +189378,11 @@ DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_ResourceManagement_Util_Delayed DO_APP_FUNC(0x01743DD0, void, List_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo__set_Item, (List_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ * __this, int32_t index, DelayedActionManager_DelegateInfo value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_Photon_Bolt_EventDispatcher_CallbackWrapper___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_Photon_Bolt_EventDispatcher_CallbackWrapper___ctor, (List_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB29F0, List_1_Photon_Bolt_EventDispatcher_CallbackWrapper___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_Photon_Bolt_EventDispatcher_CallbackWrapper___ctor_1, (List_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ * __this, IEnumerable_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_Photon_Bolt_EventDispatcher_CallbackWrapper___ctor_2, (List_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x017301E0, void, List_1_Photon_Bolt_EventDispatcher_CallbackWrapper__Add, (List_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ * __this, EventDispatcher_CallbackWrapper item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2A08, List_1_Photon_Bolt_EventDispatcher_CallbackWrapper__Add__MethodInfo); DO_APP_FUNC(0x017C28F0, void, List_1_Photon_Bolt_EventDispatcher_CallbackWrapper__AddEnumerable, (List_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ * __this, IEnumerable_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_Photon_Bolt_EventDispatcher_CallbackWrapper__AddRange, (List_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ * __this, IEnumerable_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ * collection, MethodInfo * method)); DO_APP_FUNC(0x017302C0, void, List_1_Photon_Bolt_EventDispatcher_CallbackWrapper__AddWithResize, (List_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ * __this, EventDispatcher_CallbackWrapper item, MethodInfo * method)); @@ -171858,6 +189409,7 @@ DO_APP_FUNC(0x0172FF50, bool, List_1_Photon_Bolt_EventDispatcher_CallbackWrapper DO_APP_FUNC(0x017317F0, bool, List_1_Photon_Bolt_EventDispatcher_CallbackWrapper__Remove, (List_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ * __this, EventDispatcher_CallbackWrapper item, MethodInfo * method)); DO_APP_FUNC(0x017319A0, int32_t, List_1_Photon_Bolt_EventDispatcher_CallbackWrapper__RemoveAll, (List_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ * __this, Predicate_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ * match, MethodInfo * method)); DO_APP_FUNC(0x01731B90, void, List_1_Photon_Bolt_EventDispatcher_CallbackWrapper__RemoveAt, (List_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB29E8, List_1_Photon_Bolt_EventDispatcher_CallbackWrapper__RemoveAt__MethodInfo); DO_APP_FUNC(0x01731C60, void, List_1_Photon_Bolt_EventDispatcher_CallbackWrapper__RemoveRange, (List_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ * __this, int32_t index, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x01731D00, void, List_1_Photon_Bolt_EventDispatcher_CallbackWrapper__Reverse, (List_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01731D60, void, List_1_Photon_Bolt_EventDispatcher_CallbackWrapper__Reverse_1, (List_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ * __this, int32_t index, int32_t count, MethodInfo * method)); @@ -171884,14 +189436,18 @@ DO_APP_FUNC(0x01732000, EventDispatcher_CallbackWrapper__Array *, List_1_Photon_ DO_APP_FUNC(0x017320E0, void, List_1_Photon_Bolt_EventDispatcher_CallbackWrapper__TrimExcess, (List_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_Photon_Bolt_EventDispatcher_CallbackWrapper__get_Capacity, (List_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_Photon_Bolt_EventDispatcher_CallbackWrapper__get_Count, (List_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2EB8, List_1_Photon_Bolt_EventDispatcher_CallbackWrapper__get_Count__MethodInfo); DO_APP_FUNC(0x0172FE60, EventDispatcher_CallbackWrapper, List_1_Photon_Bolt_EventDispatcher_CallbackWrapper__get_Item, (List_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2ED0, List_1_Photon_Bolt_EventDispatcher_CallbackWrapper__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_Photon_Bolt_EventDispatcher_CallbackWrapper__set_Capacity, (List_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x0172FEB0, void, List_1_Photon_Bolt_EventDispatcher_CallbackWrapper__set_Item, (List_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ * __this, int32_t index, EventDispatcher_CallbackWrapper value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_Photon_Bolt_EventDispatcher_EventListener___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_Photon_Bolt_EventDispatcher_EventListener___ctor, (List_1_Photon_Bolt_EventDispatcher_EventListener_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2D50, List_1_Photon_Bolt_EventDispatcher_EventListener___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_Photon_Bolt_EventDispatcher_EventListener___ctor_1, (List_1_Photon_Bolt_EventDispatcher_EventListener_ * __this, IEnumerable_1_Photon_Bolt_EventDispatcher_EventListener_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_Photon_Bolt_EventDispatcher_EventListener___ctor_2, (List_1_Photon_Bolt_EventDispatcher_EventListener_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x0174B8D0, void, List_1_Photon_Bolt_EventDispatcher_EventListener__Add, (List_1_Photon_Bolt_EventDispatcher_EventListener_ * __this, EventDispatcher_EventListener item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2E80, List_1_Photon_Bolt_EventDispatcher_EventListener__Add__MethodInfo); DO_APP_FUNC(0x017C3010, void, List_1_Photon_Bolt_EventDispatcher_EventListener__AddEnumerable, (List_1_Photon_Bolt_EventDispatcher_EventListener_ * __this, IEnumerable_1_Photon_Bolt_EventDispatcher_EventListener_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_Photon_Bolt_EventDispatcher_EventListener__AddRange, (List_1_Photon_Bolt_EventDispatcher_EventListener_ * __this, IEnumerable_1_Photon_Bolt_EventDispatcher_EventListener_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0174B9C0, void, List_1_Photon_Bolt_EventDispatcher_EventListener__AddWithResize, (List_1_Photon_Bolt_EventDispatcher_EventListener_ * __this, EventDispatcher_EventListener item, MethodInfo * method)); @@ -171918,6 +189474,7 @@ DO_APP_FUNC(0x01744C60, bool, List_1_Photon_Bolt_EventDispatcher_EventListener__ DO_APP_FUNC(0x01746430, bool, List_1_Photon_Bolt_EventDispatcher_EventListener__Remove, (List_1_Photon_Bolt_EventDispatcher_EventListener_ * __this, EventDispatcher_EventListener item, MethodInfo * method)); DO_APP_FUNC(0x0174BFA0, int32_t, List_1_Photon_Bolt_EventDispatcher_EventListener__RemoveAll, (List_1_Photon_Bolt_EventDispatcher_EventListener_ * __this, Predicate_1_Photon_Bolt_EventDispatcher_EventListener_ * match, MethodInfo * method)); DO_APP_FUNC(0x0174C180, void, List_1_Photon_Bolt_EventDispatcher_EventListener__RemoveAt, (List_1_Photon_Bolt_EventDispatcher_EventListener_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2F30, List_1_Photon_Bolt_EventDispatcher_EventListener__RemoveAt__MethodInfo); DO_APP_FUNC(0x01731C60, void, List_1_Photon_Bolt_EventDispatcher_EventListener__RemoveRange, (List_1_Photon_Bolt_EventDispatcher_EventListener_ * __this, int32_t index, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x01731D00, void, List_1_Photon_Bolt_EventDispatcher_EventListener__Reverse, (List_1_Photon_Bolt_EventDispatcher_EventListener_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01731D60, void, List_1_Photon_Bolt_EventDispatcher_EventListener__Reverse_1, (List_1_Photon_Bolt_EventDispatcher_EventListener_ * __this, int32_t index, int32_t count, MethodInfo * method)); @@ -171944,7 +189501,9 @@ DO_APP_FUNC(0x01732000, EventDispatcher_EventListener__Array *, List_1_Photon_Bo DO_APP_FUNC(0x017320E0, void, List_1_Photon_Bolt_EventDispatcher_EventListener__TrimExcess, (List_1_Photon_Bolt_EventDispatcher_EventListener_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_Photon_Bolt_EventDispatcher_EventListener__get_Capacity, (List_1_Photon_Bolt_EventDispatcher_EventListener_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_Photon_Bolt_EventDispatcher_EventListener__get_Count, (List_1_Photon_Bolt_EventDispatcher_EventListener_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2EA0, List_1_Photon_Bolt_EventDispatcher_EventListener__get_Count__MethodInfo); DO_APP_FUNC(0x01744B50, EventDispatcher_EventListener, List_1_Photon_Bolt_EventDispatcher_EventListener__get_Item, (List_1_Photon_Bolt_EventDispatcher_EventListener_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2EE8, List_1_Photon_Bolt_EventDispatcher_EventListener__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_Photon_Bolt_EventDispatcher_EventListener__set_Capacity, (List_1_Photon_Bolt_EventDispatcher_EventListener_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x0174B820, void, List_1_Photon_Bolt_EventDispatcher_EventListener__set_Item, (List_1_Photon_Bolt_EventDispatcher_EventListener_ * __this, int32_t index, EventDispatcher_EventListener value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_Dissonance_Networking_Client_EventQueue_NetworkEvent___cctor, (MethodInfo * method)); @@ -172014,9 +189573,11 @@ DO_APP_FUNC(0x0172FC90, void, List_1_Dissonance_Networking_Client_EventQueue_Net DO_APP_FUNC(0x017C33A0, void, List_1_Dissonance_Networking_Client_EventQueue_NetworkEvent__set_Item, (List_1_Dissonance_Networking_Client_EventQueue_NetworkEvent_ * __this, int32_t index, EventQueue_NetworkEvent value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_UIElements_FocusController_FocusedElement___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_UIElements_FocusController_FocusedElement___ctor, (List_1_UnityEngine_UIElements_FocusController_FocusedElement_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2D30, List_1_UnityEngine_UIElements_FocusController_FocusedElement___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_UIElements_FocusController_FocusedElement___ctor_1, (List_1_UnityEngine_UIElements_FocusController_FocusedElement_ * __this, IEnumerable_1_UnityEngine_UIElements_FocusController_FocusedElement_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_UIElements_FocusController_FocusedElement___ctor_2, (List_1_UnityEngine_UIElements_FocusController_FocusedElement_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x017301E0, void, List_1_UnityEngine_UIElements_FocusController_FocusedElement__Add, (List_1_UnityEngine_UIElements_FocusController_FocusedElement_ * __this, FocusController_FocusedElement item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2C98, List_1_UnityEngine_UIElements_FocusController_FocusedElement__Add__MethodInfo); DO_APP_FUNC(0x017C60A0, void, List_1_UnityEngine_UIElements_FocusController_FocusedElement__AddEnumerable, (List_1_UnityEngine_UIElements_FocusController_FocusedElement_ * __this, IEnumerable_1_UnityEngine_UIElements_FocusController_FocusedElement_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_UnityEngine_UIElements_FocusController_FocusedElement__AddRange, (List_1_UnityEngine_UIElements_FocusController_FocusedElement_ * __this, IEnumerable_1_UnityEngine_UIElements_FocusController_FocusedElement_ * collection, MethodInfo * method)); DO_APP_FUNC(0x017302C0, void, List_1_UnityEngine_UIElements_FocusController_FocusedElement__AddWithResize, (List_1_UnityEngine_UIElements_FocusController_FocusedElement_ * __this, FocusController_FocusedElement item, MethodInfo * method)); @@ -172025,6 +189586,7 @@ DO_APP_FUNC(0x01730630, int32_t, List_1_UnityEngine_UIElements_FocusController_F DO_APP_FUNC(0x017306C0, int32_t, List_1_UnityEngine_UIElements_FocusController_FocusedElement__BinarySearch_1, (List_1_UnityEngine_UIElements_FocusController_FocusedElement_ * __this, FocusController_FocusedElement item, IComparer_1_UnityEngine_UIElements_FocusController_FocusedElement_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01730590, int32_t, List_1_UnityEngine_UIElements_FocusController_FocusedElement__BinarySearch_2, (List_1_UnityEngine_UIElements_FocusController_FocusedElement_ * __this, int32_t index, int32_t count, FocusController_FocusedElement item, IComparer_1_UnityEngine_UIElements_FocusController_FocusedElement_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x003CB200, void, List_1_UnityEngine_UIElements_FocusController_FocusedElement__Clear, (List_1_UnityEngine_UIElements_FocusController_FocusedElement_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2CA0, List_1_UnityEngine_UIElements_FocusController_FocusedElement__Clear__MethodInfo); DO_APP_FUNC(0x01730760, bool, List_1_UnityEngine_UIElements_FocusController_FocusedElement__Contains, (List_1_UnityEngine_UIElements_FocusController_FocusedElement_ * __this, FocusController_FocusedElement item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_UnityEngine_UIElements_FocusController_FocusedElement__CopyTo, (List_1_UnityEngine_UIElements_FocusController_FocusedElement_ * __this, FocusController_FocusedElement__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_UnityEngine_UIElements_FocusController_FocusedElement__CopyTo_1, (List_1_UnityEngine_UIElements_FocusController_FocusedElement_ * __this, FocusController_FocusedElement__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -172036,6 +189598,7 @@ DO_APP_FUNC(0x01730C90, int32_t, List_1_UnityEngine_UIElements_FocusController_F DO_APP_FUNC(0x01730CE0, int32_t, List_1_UnityEngine_UIElements_FocusController_FocusedElement__FindIndex_1, (List_1_UnityEngine_UIElements_FocusController_FocusedElement_ * __this, int32_t startIndex, int32_t count, Predicate_1_UnityEngine_UIElements_FocusController_FocusedElement_ * match, MethodInfo * method)); DO_APP_FUNC(0x01730DF0, void, List_1_UnityEngine_UIElements_FocusController_FocusedElement__ForEach, (List_1_UnityEngine_UIElements_FocusController_FocusedElement_ * __this, Action_1_UnityEngine_UIElements_FocusController_FocusedElement_ * action, MethodInfo * method)); DO_APP_FUNC(0x01730EC0, List_1_T_Enumerator_UnityEngine_UIElements_FocusController_FocusedElement_, List_1_UnityEngine_UIElements_FocusController_FocusedElement__GetEnumerator, (List_1_UnityEngine_UIElements_FocusController_FocusedElement_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2D58, List_1_UnityEngine_UIElements_FocusController_FocusedElement__GetEnumerator__MethodInfo); DO_APP_FUNC(0x01731030, int32_t, List_1_UnityEngine_UIElements_FocusController_FocusedElement__IndexOf, (List_1_UnityEngine_UIElements_FocusController_FocusedElement_ * __this, FocusController_FocusedElement item, MethodInfo * method)); DO_APP_FUNC(0x017311C0, void, List_1_UnityEngine_UIElements_FocusController_FocusedElement__Insert, (List_1_UnityEngine_UIElements_FocusController_FocusedElement_ * __this, int32_t index, FocusController_FocusedElement item, MethodInfo * method)); DO_APP_FUNC(0x017C5CE0, void, List_1_UnityEngine_UIElements_FocusController_FocusedElement__InsertRange, (List_1_UnityEngine_UIElements_FocusController_FocusedElement_ * __this, int32_t index, IEnumerable_1_UnityEngine_UIElements_FocusController_FocusedElement_ * collection, MethodInfo * method)); @@ -172069,7 +189632,9 @@ DO_APP_FUNC(0x01732000, FocusController_FocusedElement__Array *, List_1_UnityEng DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_UIElements_FocusController_FocusedElement__TrimExcess, (List_1_UnityEngine_UIElements_FocusController_FocusedElement_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_UIElements_FocusController_FocusedElement__get_Capacity, (List_1_UnityEngine_UIElements_FocusController_FocusedElement_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_UIElements_FocusController_FocusedElement__get_Count, (List_1_UnityEngine_UIElements_FocusController_FocusedElement_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2D50, List_1_UnityEngine_UIElements_FocusController_FocusedElement__get_Count__MethodInfo); DO_APP_FUNC(0x0172FE60, FocusController_FocusedElement, List_1_UnityEngine_UIElements_FocusController_FocusedElement__get_Item, (List_1_UnityEngine_UIElements_FocusController_FocusedElement_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2D38, List_1_UnityEngine_UIElements_FocusController_FocusedElement__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_UIElements_FocusController_FocusedElement__set_Capacity, (List_1_UnityEngine_UIElements_FocusController_FocusedElement_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x0172FEB0, void, List_1_UnityEngine_UIElements_FocusController_FocusedElement__set_Item, (List_1_UnityEngine_UIElements_FocusController_FocusedElement_ * __this, int32_t index, FocusController_FocusedElement value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_Pathfinding_Funnel_PathPart___cctor, (MethodInfo * method)); @@ -172077,6 +189642,7 @@ DO_APP_FUNC(0x0172F7F0, void, List_1_Pathfinding_Funnel_PathPart___ctor, (List_1 DO_APP_FUNC(0x0172FA30, void, List_1_Pathfinding_Funnel_PathPart___ctor_1, (List_1_Pathfinding_Funnel_PathPart_ * __this, IEnumerable_1_Pathfinding_Funnel_PathPart_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_Pathfinding_Funnel_PathPart___ctor_2, (List_1_Pathfinding_Funnel_PathPart_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x0178A5F0, void, List_1_Pathfinding_Funnel_PathPart__Add, (List_1_Pathfinding_Funnel_PathPart_ * __this, Funnel_PathPart item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBACD8, List_1_Pathfinding_Funnel_PathPart__Add__MethodInfo); DO_APP_FUNC(0x017C6760, void, List_1_Pathfinding_Funnel_PathPart__AddEnumerable, (List_1_Pathfinding_Funnel_PathPart_ * __this, IEnumerable_1_Pathfinding_Funnel_PathPart_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_Pathfinding_Funnel_PathPart__AddRange, (List_1_Pathfinding_Funnel_PathPart_ * __this, IEnumerable_1_Pathfinding_Funnel_PathPart_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0178A690, void, List_1_Pathfinding_Funnel_PathPart__AddWithResize, (List_1_Pathfinding_Funnel_PathPart_ * __this, Funnel_PathPart item, MethodInfo * method)); @@ -172129,14 +189695,18 @@ DO_APP_FUNC(0x01732000, Funnel_PathPart__Array *, List_1_Pathfinding_Funnel_Path DO_APP_FUNC(0x017320E0, void, List_1_Pathfinding_Funnel_PathPart__TrimExcess, (List_1_Pathfinding_Funnel_PathPart_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_Pathfinding_Funnel_PathPart__get_Capacity, (List_1_Pathfinding_Funnel_PathPart_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_Pathfinding_Funnel_PathPart__get_Count, (List_1_Pathfinding_Funnel_PathPart_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA6F0, List_1_Pathfinding_Funnel_PathPart__get_Count__MethodInfo); DO_APP_FUNC(0x0178A270, Funnel_PathPart, List_1_Pathfinding_Funnel_PathPart__get_Item, (List_1_Pathfinding_Funnel_PathPart_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA6E8, List_1_Pathfinding_Funnel_PathPart__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_Pathfinding_Funnel_PathPart__set_Capacity, (List_1_Pathfinding_Funnel_PathPart_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x0178A2D0, void, List_1_Pathfinding_Funnel_PathPart__set_Item, (List_1_Pathfinding_Funnel_PathPart_ * __this, int32_t index, Funnel_PathPart value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor___ctor, (List_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1700, List_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor___ctor_1, (List_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * __this, IEnumerable_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor___ctor_2, (List_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x017728C0, void, List_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__Add, (List_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * __this, HID_HIDCollectionDescriptor item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD17F8, List_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__Add__MethodInfo); DO_APP_FUNC(0x017C6E80, void, List_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__AddEnumerable, (List_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * __this, IEnumerable_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__AddRange, (List_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * __this, IEnumerable_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * collection, MethodInfo * method)); DO_APP_FUNC(0x01772950, void, List_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__AddWithResize, (List_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * __this, HID_HIDCollectionDescriptor item, MethodInfo * method)); @@ -172156,6 +189726,7 @@ DO_APP_FUNC(0x01730C90, int32_t, List_1_UnityEngine_InputSystem_HID_HID_HIDColle DO_APP_FUNC(0x017458C0, int32_t, List_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__FindIndex_1, (List_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * __this, int32_t startIndex, int32_t count, Predicate_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * match, MethodInfo * method)); DO_APP_FUNC(0x017459E0, void, List_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__ForEach, (List_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * __this, Action_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * action, MethodInfo * method)); DO_APP_FUNC(0x01745AB0, List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_, List_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__GetEnumerator, (List_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD16F0, List_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__GetEnumerator__MethodInfo); DO_APP_FUNC(0x01745C30, int32_t, List_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__IndexOf, (List_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * __this, HID_HIDCollectionDescriptor item, MethodInfo * method)); DO_APP_FUNC(0x017729D0, void, List_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__Insert, (List_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * __this, int32_t index, HID_HIDCollectionDescriptor item, MethodInfo * method)); DO_APP_FUNC(0x017C6AB0, void, List_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__InsertRange, (List_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * __this, int32_t index, IEnumerable_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * collection, MethodInfo * method)); @@ -172186,17 +189757,23 @@ DO_APP_FUNC(0x0041AF00, bool, List_1_UnityEngine_InputSystem_HID_HID_HIDCollecti DO_APP_FUNC(0x01744D40, Object *, List_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__System_Collections_IList_get_Item, (List_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01744DC0, void, List_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__System_Collections_IList_set_Item, (List_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * __this, int32_t index, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01732000, HID_HIDCollectionDescriptor__Array *, List_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__ToArray, (List_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD17D0, List_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__ToArray__MethodInfo); DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__TrimExcess, (List_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__get_Capacity, (List_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__get_Count, (List_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD16F8, List_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__get_Count__MethodInfo); DO_APP_FUNC(0x01744B50, HID_HIDCollectionDescriptor, List_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__get_Item, (List_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1708, List_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__set_Capacity, (List_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01772860, void, List_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__set_Item, (List_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * __this, int32_t index, HID_HIDCollectionDescriptor value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1728, List_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor__set_Item__MethodInfo); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor___ctor, (List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1748, List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor___ctor_1, (List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * __this, IEnumerable_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor___ctor_2, (List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x017693E0, void, List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__Add, (List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * __this, HID_HIDElementDescriptor item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD18C8, List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__Add__MethodInfo); DO_APP_FUNC(0x017C7560, void, List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__AddEnumerable, (List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * __this, IEnumerable_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__AddRange, (List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * __this, IEnumerable_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * collection, MethodInfo * method)); DO_APP_FUNC(0x017694B0, void, List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__AddWithResize, (List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * __this, HID_HIDElementDescriptor item, MethodInfo * method)); @@ -172216,6 +189793,7 @@ DO_APP_FUNC(0x01730C90, int32_t, List_1_UnityEngine_InputSystem_HID_HID_HIDEleme DO_APP_FUNC(0x01769E70, int32_t, List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__FindIndex_1, (List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * __this, int32_t startIndex, int32_t count, Predicate_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * match, MethodInfo * method)); DO_APP_FUNC(0x01769FC0, void, List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__ForEach, (List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * __this, Action_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * action, MethodInfo * method)); DO_APP_FUNC(0x0176A0D0, List_1_T_Enumerator_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_, List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__GetEnumerator, (List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD17B8, List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__GetEnumerator__MethodInfo); DO_APP_FUNC(0x0176A2C0, int32_t, List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__IndexOf, (List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * __this, HID_HIDElementDescriptor item, MethodInfo * method)); DO_APP_FUNC(0x0176A4B0, void, List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__Insert, (List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * __this, int32_t index, HID_HIDElementDescriptor item, MethodInfo * method)); DO_APP_FUNC(0x017C71D0, void, List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__InsertRange, (List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * __this, int32_t index, IEnumerable_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * collection, MethodInfo * method)); @@ -172246,17 +189824,23 @@ DO_APP_FUNC(0x0041AF00, bool, List_1_UnityEngine_InputSystem_HID_HID_HIDElementD DO_APP_FUNC(0x017691D0, Object *, List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__System_Collections_IList_get_Item, (List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01769270, void, List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__System_Collections_IList_set_Item, (List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * __this, int32_t index, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01732000, HID_HIDElementDescriptor__Array *, List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__ToArray, (List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1788, List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__ToArray__MethodInfo); DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__TrimExcess, (List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__get_Capacity, (List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__get_Count, (List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1770, List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__get_Count__MethodInfo); DO_APP_FUNC(0x01768FC0, HID_HIDElementDescriptor, List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__get_Item, (List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1768, List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__set_Capacity, (List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01769040, void, List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__set_Item, (List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * __this, int32_t index, HID_HIDElementDescriptor value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1818, List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__set_Item__MethodInfo); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData___ctor, (List_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD16E8, List_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData___ctor_1, (List_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_ * __this, IEnumerable_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData___ctor_2, (List_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x00AA7550, void, List_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__Add, (List_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_ * __this, HIDParser_HIDReportData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD16E0, List_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__Add__MethodInfo); DO_APP_FUNC(0x017C7CC0, void, List_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__AddEnumerable, (List_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_ * __this, IEnumerable_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__AddRange, (List_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_ * __this, IEnumerable_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_ * collection, MethodInfo * method)); DO_APP_FUNC(0x01753D90, void, List_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__AddWithResize, (List_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_ * __this, HIDParser_HIDReportData item, MethodInfo * method)); @@ -172309,14 +189893,19 @@ DO_APP_FUNC(0x01732000, HIDParser_HIDReportData__Array *, List_1_UnityEngine_Inp DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__TrimExcess, (List_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__get_Capacity, (List_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__get_Count, (List_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1738, List_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__get_Count__MethodInfo); DO_APP_FUNC(0x01753A20, HIDParser_HIDReportData, List_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__get_Item, (List_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1710, List_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__set_Capacity, (List_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01753A80, void, List_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__set_Item, (List_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_ * __this, int32_t index, HIDParser_HIDReportData value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1720, List_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData__set_Item__MethodInfo); DO_APP_FUNC(0x017323E0, void, List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData___ctor, (List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D211E8, List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData___ctor_1, (List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * __this, IEnumerable_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData___ctor_2, (List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x017C8180, void, List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__Add, (List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * __this, HairDesignerGeneratorFurShellBase_BufferData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21428, List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__Add__MethodInfo); DO_APP_FUNC(0x017C8AE0, void, List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__AddEnumerable, (List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * __this, IEnumerable_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__AddRange, (List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * __this, IEnumerable_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * collection, MethodInfo * method)); DO_APP_FUNC(0x017C81F0, void, List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__AddWithResize, (List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * __this, HairDesignerGeneratorFurShellBase_BufferData item, MethodInfo * method)); @@ -172325,6 +189914,7 @@ DO_APP_FUNC(0x017C8260, int32_t, List_1_Kalagaan_HairDesignerExtension_HairDesig DO_APP_FUNC(0x017C8300, int32_t, List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__BinarySearch_1, (List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * __this, HairDesignerGeneratorFurShellBase_BufferData item, IComparer_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x017493B0, int32_t, List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__BinarySearch_2, (List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * __this, int32_t index, int32_t count, HairDesignerGeneratorFurShellBase_BufferData item, IComparer_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01749550, void, List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__Clear, (List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21420, List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__Clear__MethodInfo); DO_APP_FUNC(0x01749560, bool, List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__Contains, (List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * __this, HairDesignerGeneratorFurShellBase_BufferData item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__CopyTo, (List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * __this, HairDesignerGeneratorFurShellBase_BufferData__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__CopyTo_1, (List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * __this, HairDesignerGeneratorFurShellBase_BufferData__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -172369,14 +189959,17 @@ DO_APP_FUNC(0x01732000, HairDesignerGeneratorFurShellBase_BufferData__Array *, L DO_APP_FUNC(0x017320E0, void, List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__TrimExcess, (List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__get_Capacity, (List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__get_Count, (List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21418, List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__get_Count__MethodInfo); DO_APP_FUNC(0x01762EE0, HairDesignerGeneratorFurShellBase_BufferData, List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__get_Item, (List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x0172FC90, void, List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__set_Capacity, (List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x017C7FF0, void, List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__set_Item, (List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * __this, int32_t index, HairDesignerGeneratorFurShellBase_BufferData value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson___ctor, (List_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0FC8, List_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson___ctor_1, (List_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * __this, IEnumerable_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson___ctor_2, (List_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x017C8ED0, void, List_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__Add, (List_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * __this, InputActionMap_BindingOverrideJson item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0F00, List_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__Add__MethodInfo); DO_APP_FUNC(0x017C9810, void, List_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__AddEnumerable, (List_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * __this, IEnumerable_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__AddRange, (List_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * __this, IEnumerable_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * collection, MethodInfo * method)); DO_APP_FUNC(0x017C8FD0, void, List_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__AddWithResize, (List_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * __this, InputActionMap_BindingOverrideJson item, MethodInfo * method)); @@ -172396,6 +189989,7 @@ DO_APP_FUNC(0x01730C90, int32_t, List_1_UnityEngine_InputSystem_InputActionMap_B DO_APP_FUNC(0x01759E20, int32_t, List_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__FindIndex_1, (List_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * __this, int32_t startIndex, int32_t count, Predicate_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * match, MethodInfo * method)); DO_APP_FUNC(0x01759F50, void, List_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__ForEach, (List_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * __this, Action_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * action, MethodInfo * method)); DO_APP_FUNC(0x0175A030, List_1_T_Enumerator_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_, List_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__GetEnumerator, (List_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0F60, List_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__GetEnumerator__MethodInfo); DO_APP_FUNC(0x0175A1E0, int32_t, List_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__IndexOf, (List_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * __this, InputActionMap_BindingOverrideJson item, MethodInfo * method)); DO_APP_FUNC(0x017C90B0, void, List_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__Insert, (List_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * __this, int32_t index, InputActionMap_BindingOverrideJson item, MethodInfo * method)); DO_APP_FUNC(0x017C91F0, void, List_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__InsertRange, (List_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * __this, int32_t index, IEnumerable_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * collection, MethodInfo * method)); @@ -172429,6 +190023,7 @@ DO_APP_FUNC(0x01732000, InputActionMap_BindingOverrideJson__Array *, List_1_Unit DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__TrimExcess, (List_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__get_Capacity, (List_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__get_Count, (List_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0FC0, List_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__get_Count__MethodInfo); DO_APP_FUNC(0x01759030, InputActionMap_BindingOverrideJson, List_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__get_Item, (List_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__set_Capacity, (List_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x017C8E10, void, List_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson__set_Item, (List_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * __this, int32_t index, InputActionMap_BindingOverrideJson value, MethodInfo * method)); @@ -172501,9 +190096,11 @@ DO_APP_FUNC(0x017C9BB0, void, List_1_UnityEngine_InputSystem_Layouts_InputContro DO_APP_FUNC_METHODINFO(0x03C8BD28, List_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__set_Item__MethodInfo); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper___ctor, (List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE46E0, List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper___ctor_1, (List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * __this, IEnumerable_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper___ctor_2, (List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x01746CB0, void, List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__Add, (List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * __this, InternalTreeView_TreeViewItemWrapper item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4678, List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__Add__MethodInfo); DO_APP_FUNC(0x017CCDF0, void, List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__AddEnumerable, (List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * __this, IEnumerable_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__AddRange, (List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * __this, IEnumerable_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * collection, MethodInfo * method)); DO_APP_FUNC(0x01746D90, void, List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__AddWithResize, (List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * __this, InternalTreeView_TreeViewItemWrapper item, MethodInfo * method)); @@ -172512,6 +190109,7 @@ DO_APP_FUNC(0x01730630, int32_t, List_1_UnityEngine_UIElements_InternalTreeView_ DO_APP_FUNC(0x017306C0, int32_t, List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__BinarySearch_1, (List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * __this, InternalTreeView_TreeViewItemWrapper item, IComparer_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01730590, int32_t, List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__BinarySearch_2, (List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * __this, int32_t index, int32_t count, InternalTreeView_TreeViewItemWrapper item, IComparer_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x003CB200, void, List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__Clear, (List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4608, List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__Clear__MethodInfo); DO_APP_FUNC(0x01730760, bool, List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__Contains, (List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * __this, InternalTreeView_TreeViewItemWrapper item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__CopyTo, (List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * __this, InternalTreeView_TreeViewItemWrapper__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__CopyTo_1, (List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * __this, InternalTreeView_TreeViewItemWrapper__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -172526,11 +190124,13 @@ DO_APP_FUNC(0x01730EC0, List_1_T_Enumerator_UnityEngine_UIElements_InternalTreeV DO_APP_FUNC(0x01731030, int32_t, List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__IndexOf, (List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * __this, InternalTreeView_TreeViewItemWrapper item, MethodInfo * method)); DO_APP_FUNC(0x01746E50, void, List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__Insert, (List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * __this, int32_t index, InternalTreeView_TreeViewItemWrapper item, MethodInfo * method)); DO_APP_FUNC(0x017CCA30, void, List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__InsertRange, (List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * __this, int32_t index, IEnumerable_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * collection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4680, List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__InsertRange__MethodInfo); DO_APP_FUNC(0x0172FF50, bool, List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__IsCompatibleObject, (Object * value, MethodInfo * method)); DO_APP_FUNC(0x017317F0, bool, List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__Remove, (List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * __this, InternalTreeView_TreeViewItemWrapper item, MethodInfo * method)); DO_APP_FUNC(0x01747340, int32_t, List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__RemoveAll, (List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * __this, Predicate_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * match, MethodInfo * method)); DO_APP_FUNC(0x01747530, void, List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__RemoveAt, (List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01731C60, void, List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__RemoveRange, (List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * __this, int32_t index, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4670, List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__RemoveRange__MethodInfo); DO_APP_FUNC(0x01731D00, void, List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__Reverse, (List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01731D60, void, List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__Reverse_1, (List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * __this, int32_t index, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x01731DD0, void, List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__Sort, (List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * __this, MethodInfo * method)); @@ -172556,7 +190156,9 @@ DO_APP_FUNC(0x01732000, InternalTreeView_TreeViewItemWrapper__Array *, List_1_Un DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__TrimExcess, (List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__get_Capacity, (List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__get_Count, (List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4658, List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__get_Count__MethodInfo); DO_APP_FUNC(0x0172FE60, InternalTreeView_TreeViewItemWrapper, List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__get_Item, (List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4648, List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__set_Capacity, (List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01746C10, void, List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__set_Item, (List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * __this, int32_t index, InternalTreeView_TreeViewItemWrapper value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV___cctor, (MethodInfo * method)); @@ -172626,6 +190228,7 @@ DO_APP_FUNC(0x0172FC90, void, List_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcd DO_APP_FUNC(0x01746C10, void, List_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__set_Item, (List_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV_ * __this, int32_t index, JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb___ctor, (List_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD20B0, List_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb___ctor_1, (List_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ * __this, IEnumerable_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb___ctor_2, (List_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x017CD8C0, void, List_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__Add, (List_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ * __this, JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb item, MethodInfo * method)); @@ -172753,9 +190356,11 @@ DO_APP_FUNC(0x0172FC90, void, List_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJw DO_APP_FUNC(0x01746C10, void, List_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__set_Item, (List_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux_ * __this, int32_t index, JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___ctor, (List_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5098, List_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___ctor_1, (List_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, IEnumerable_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___ctor_2, (List_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x017CEC90, void, List_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__Add, (List_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, JsonParser_JsonValue item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC50A0, List_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__Add__MethodInfo); DO_APP_FUNC(0x017CF540, void, List_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__AddEnumerable, (List_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, IEnumerable_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__AddRange, (List_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, IEnumerable_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * collection, MethodInfo * method)); DO_APP_FUNC(0x017CED20, void, List_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__AddWithResize, (List_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, JsonParser_JsonValue item, MethodInfo * method)); @@ -172808,14 +190413,18 @@ DO_APP_FUNC(0x01732000, JsonParser_JsonValue__Array *, List_1_UnityEngine_InputS DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__TrimExcess, (List_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__get_Capacity, (List_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__get_Count, (List_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5090, List_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__get_Count__MethodInfo); DO_APP_FUNC(0x01768FC0, JsonParser_JsonValue, List_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__get_Item, (List_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5088, List_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__set_Capacity, (List_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x017CEC20, void, List_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__set_Item, (List_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * __this, int32_t index, JsonParser_JsonValue value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage___ctor, (List_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0172FA30, void, List_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage___ctor_1, (List_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * __this, IEnumerable_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage___ctor_2, (List_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFFE28, List_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage___ctor_2__MethodInfo); DO_APP_FUNC(0x01746CB0, void, List_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__Add, (List_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * __this, Logs_LogMessage item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFFE60, List_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__Add__MethodInfo); DO_APP_FUNC(0x017CFCA0, void, List_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__AddEnumerable, (List_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * __this, IEnumerable_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__AddRange, (List_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * __this, IEnumerable_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * collection, MethodInfo * method)); DO_APP_FUNC(0x01746D90, void, List_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__AddWithResize, (List_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * __this, Logs_LogMessage item, MethodInfo * method)); @@ -172824,6 +190433,7 @@ DO_APP_FUNC(0x01730630, int32_t, List_1_PlaceholderSoftware_WetStuff_Debugging_L DO_APP_FUNC(0x017306C0, int32_t, List_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__BinarySearch_1, (List_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * __this, Logs_LogMessage item, IComparer_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01730590, int32_t, List_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__BinarySearch_2, (List_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * __this, int32_t index, int32_t count, Logs_LogMessage item, IComparer_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x003CB200, void, List_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__Clear, (List_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFFEF0, List_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__Clear__MethodInfo); DO_APP_FUNC(0x01730760, bool, List_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__Contains, (List_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * __this, Logs_LogMessage item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__CopyTo, (List_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * __this, Logs_LogMessage__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__CopyTo_1, (List_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * __this, Logs_LogMessage__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -172868,11 +190478,14 @@ DO_APP_FUNC(0x01732000, Logs_LogMessage__Array *, List_1_PlaceholderSoftware_Wet DO_APP_FUNC(0x017320E0, void, List_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__TrimExcess, (List_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__get_Capacity, (List_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__get_Count, (List_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFFED8, List_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__get_Count__MethodInfo); DO_APP_FUNC(0x0172FE60, Logs_LogMessage, List_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__get_Item, (List_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFFEC0, List_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__set_Capacity, (List_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01746C10, void, List_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage__set_Item, (List_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * __this, int32_t index, Logs_LogMessage value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_MagicLightProbes_MagicLightProbes_VolumeParameters___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_MagicLightProbes_MagicLightProbes_VolumeParameters___ctor, (List_1_MagicLightProbes_MagicLightProbes_VolumeParameters_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE3720, List_1_MagicLightProbes_MagicLightProbes_VolumeParameters___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_MagicLightProbes_MagicLightProbes_VolumeParameters___ctor_1, (List_1_MagicLightProbes_MagicLightProbes_VolumeParameters_ * __this, IEnumerable_1_MagicLightProbes_MagicLightProbes_VolumeParameters_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_MagicLightProbes_MagicLightProbes_VolumeParameters___ctor_2, (List_1_MagicLightProbes_MagicLightProbes_VolumeParameters_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x017ABFA0, void, List_1_MagicLightProbes_MagicLightProbes_VolumeParameters__Add, (List_1_MagicLightProbes_MagicLightProbes_VolumeParameters_ * __this, MagicLightProbes_VolumeParameters item, MethodInfo * method)); @@ -172933,9 +190546,11 @@ DO_APP_FUNC(0x0172FC90, void, List_1_MagicLightProbes_MagicLightProbes_VolumePar DO_APP_FUNC(0x017ABC80, void, List_1_MagicLightProbes_MagicLightProbes_VolumeParameters__set_Item, (List_1_MagicLightProbes_MagicLightProbes_VolumeParameters_ * __this, int32_t index, MagicLightProbes_VolumeParameters value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_NolanBehaviour_OverlappedCollider___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_NolanBehaviour_OverlappedCollider___ctor, (List_1_NolanBehaviour_OverlappedCollider_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D147E0, List_1_NolanBehaviour_OverlappedCollider___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_NolanBehaviour_OverlappedCollider___ctor_1, (List_1_NolanBehaviour_OverlappedCollider_ * __this, IEnumerable_1_NolanBehaviour_OverlappedCollider_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_NolanBehaviour_OverlappedCollider___ctor_2, (List_1_NolanBehaviour_OverlappedCollider_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x017301E0, void, List_1_NolanBehaviour_OverlappedCollider__Add, (List_1_NolanBehaviour_OverlappedCollider_ * __this, NolanBehaviour_OverlappedCollider item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D14EB0, List_1_NolanBehaviour_OverlappedCollider__Add__MethodInfo); DO_APP_FUNC(0x017D0A80, void, List_1_NolanBehaviour_OverlappedCollider__AddEnumerable, (List_1_NolanBehaviour_OverlappedCollider_ * __this, IEnumerable_1_NolanBehaviour_OverlappedCollider_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_NolanBehaviour_OverlappedCollider__AddRange, (List_1_NolanBehaviour_OverlappedCollider_ * __this, IEnumerable_1_NolanBehaviour_OverlappedCollider_ * collection, MethodInfo * method)); DO_APP_FUNC(0x017302C0, void, List_1_NolanBehaviour_OverlappedCollider__AddWithResize, (List_1_NolanBehaviour_OverlappedCollider_ * __this, NolanBehaviour_OverlappedCollider item, MethodInfo * method)); @@ -172944,6 +190559,7 @@ DO_APP_FUNC(0x01730630, int32_t, List_1_NolanBehaviour_OverlappedCollider__Binar DO_APP_FUNC(0x017306C0, int32_t, List_1_NolanBehaviour_OverlappedCollider__BinarySearch_1, (List_1_NolanBehaviour_OverlappedCollider_ * __this, NolanBehaviour_OverlappedCollider item, IComparer_1_NolanBehaviour_OverlappedCollider_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01730590, int32_t, List_1_NolanBehaviour_OverlappedCollider__BinarySearch_2, (List_1_NolanBehaviour_OverlappedCollider_ * __this, int32_t index, int32_t count, NolanBehaviour_OverlappedCollider item, IComparer_1_NolanBehaviour_OverlappedCollider_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x003CB200, void, List_1_NolanBehaviour_OverlappedCollider__Clear, (List_1_NolanBehaviour_OverlappedCollider_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D14E90, List_1_NolanBehaviour_OverlappedCollider__Clear__MethodInfo); DO_APP_FUNC(0x01730760, bool, List_1_NolanBehaviour_OverlappedCollider__Contains, (List_1_NolanBehaviour_OverlappedCollider_ * __this, NolanBehaviour_OverlappedCollider item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_NolanBehaviour_OverlappedCollider__CopyTo, (List_1_NolanBehaviour_OverlappedCollider_ * __this, NolanBehaviour_OverlappedCollider__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_NolanBehaviour_OverlappedCollider__CopyTo_1, (List_1_NolanBehaviour_OverlappedCollider_ * __this, NolanBehaviour_OverlappedCollider__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -172955,6 +190571,7 @@ DO_APP_FUNC(0x01730C90, int32_t, List_1_NolanBehaviour_OverlappedCollider__FindI DO_APP_FUNC(0x01730CE0, int32_t, List_1_NolanBehaviour_OverlappedCollider__FindIndex_1, (List_1_NolanBehaviour_OverlappedCollider_ * __this, int32_t startIndex, int32_t count, Predicate_1_NolanBehaviour_OverlappedCollider_ * match, MethodInfo * method)); DO_APP_FUNC(0x01730DF0, void, List_1_NolanBehaviour_OverlappedCollider__ForEach, (List_1_NolanBehaviour_OverlappedCollider_ * __this, Action_1_NolanBehaviour_OverlappedCollider_ * action, MethodInfo * method)); DO_APP_FUNC(0x01730EC0, List_1_T_Enumerator_NolanBehaviour_OverlappedCollider_, List_1_NolanBehaviour_OverlappedCollider__GetEnumerator, (List_1_NolanBehaviour_OverlappedCollider_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D14E78, List_1_NolanBehaviour_OverlappedCollider__GetEnumerator__MethodInfo); DO_APP_FUNC(0x01731030, int32_t, List_1_NolanBehaviour_OverlappedCollider__IndexOf, (List_1_NolanBehaviour_OverlappedCollider_ * __this, NolanBehaviour_OverlappedCollider item, MethodInfo * method)); DO_APP_FUNC(0x017311C0, void, List_1_NolanBehaviour_OverlappedCollider__Insert, (List_1_NolanBehaviour_OverlappedCollider_ * __this, int32_t index, NolanBehaviour_OverlappedCollider item, MethodInfo * method)); DO_APP_FUNC(0x017D06C0, void, List_1_NolanBehaviour_OverlappedCollider__InsertRange, (List_1_NolanBehaviour_OverlappedCollider_ * __this, int32_t index, IEnumerable_1_NolanBehaviour_OverlappedCollider_ * collection, MethodInfo * method)); @@ -172988,14 +190605,17 @@ DO_APP_FUNC(0x01732000, NolanBehaviour_OverlappedCollider__Array *, List_1_Nolan DO_APP_FUNC(0x017320E0, void, List_1_NolanBehaviour_OverlappedCollider__TrimExcess, (List_1_NolanBehaviour_OverlappedCollider_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_NolanBehaviour_OverlappedCollider__get_Capacity, (List_1_NolanBehaviour_OverlappedCollider_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_NolanBehaviour_OverlappedCollider__get_Count, (List_1_NolanBehaviour_OverlappedCollider_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D14E58, List_1_NolanBehaviour_OverlappedCollider__get_Count__MethodInfo); DO_APP_FUNC(0x0172FE60, NolanBehaviour_OverlappedCollider, List_1_NolanBehaviour_OverlappedCollider__get_Item, (List_1_NolanBehaviour_OverlappedCollider_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x0172FC90, void, List_1_NolanBehaviour_OverlappedCollider__set_Capacity, (List_1_NolanBehaviour_OverlappedCollider_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x0172FEB0, void, List_1_NolanBehaviour_OverlappedCollider__set_Item, (List_1_NolanBehaviour_OverlappedCollider_ * __this, int32_t index, NolanBehaviour_OverlappedCollider value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding___ctor, (List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB06B8, List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding___ctor_1, (List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ * __this, IEnumerable_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding___ctor_2, (List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x01746CB0, void, List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__Add, (List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ * __this, OpenXRInput_SerializedBinding item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0660, List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__Add__MethodInfo); DO_APP_FUNC(0x017D1190, void, List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__AddEnumerable, (List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ * __this, IEnumerable_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__AddRange, (List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ * __this, IEnumerable_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ * collection, MethodInfo * method)); DO_APP_FUNC(0x01746D90, void, List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__AddWithResize, (List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ * __this, OpenXRInput_SerializedBinding item, MethodInfo * method)); @@ -173045,14 +190665,17 @@ DO_APP_FUNC(0x0041AF00, bool, List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_Ser DO_APP_FUNC(0x01730020, Object *, List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__System_Collections_IList_get_Item, (List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x017300A0, void, List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__System_Collections_IList_set_Item, (List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ * __this, int32_t index, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01732000, OpenXRInput_SerializedBinding__Array *, List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__ToArray, (List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB06F0, List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__ToArray__MethodInfo); DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__TrimExcess, (List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__get_Capacity, (List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__get_Count, (List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0708, List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__get_Count__MethodInfo); DO_APP_FUNC(0x0172FE60, OpenXRInput_SerializedBinding, List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__get_Item, (List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__set_Capacity, (List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01746C10, void, List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__set_Item, (List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ * __this, int32_t index, OpenXRInput_SerializedBinding value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_PackedPlayModeBuildLogs_RuntimeBuildLog___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_PackedPlayModeBuildLogs_RuntimeBuildLog___ctor, (List_1_PackedPlayModeBuildLogs_RuntimeBuildLog_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEBF0, List_1_PackedPlayModeBuildLogs_RuntimeBuildLog___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_PackedPlayModeBuildLogs_RuntimeBuildLog___ctor_1, (List_1_PackedPlayModeBuildLogs_RuntimeBuildLog_ * __this, IEnumerable_1_PackedPlayModeBuildLogs_RuntimeBuildLog_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_PackedPlayModeBuildLogs_RuntimeBuildLog___ctor_2, (List_1_PackedPlayModeBuildLogs_RuntimeBuildLog_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x01746CB0, void, List_1_PackedPlayModeBuildLogs_RuntimeBuildLog__Add, (List_1_PackedPlayModeBuildLogs_RuntimeBuildLog_ * __this, PackedPlayModeBuildLogs_RuntimeBuildLog item, MethodInfo * method)); @@ -173075,6 +190698,7 @@ DO_APP_FUNC(0x01730C90, int32_t, List_1_PackedPlayModeBuildLogs_RuntimeBuildLog_ DO_APP_FUNC(0x01730CE0, int32_t, List_1_PackedPlayModeBuildLogs_RuntimeBuildLog__FindIndex_1, (List_1_PackedPlayModeBuildLogs_RuntimeBuildLog_ * __this, int32_t startIndex, int32_t count, Predicate_1_PackedPlayModeBuildLogs_RuntimeBuildLog_ * match, MethodInfo * method)); DO_APP_FUNC(0x01730DF0, void, List_1_PackedPlayModeBuildLogs_RuntimeBuildLog__ForEach, (List_1_PackedPlayModeBuildLogs_RuntimeBuildLog_ * __this, Action_1_PackedPlayModeBuildLogs_RuntimeBuildLog_ * action, MethodInfo * method)); DO_APP_FUNC(0x01730EC0, List_1_T_Enumerator_PackedPlayModeBuildLogs_RuntimeBuildLog_, List_1_PackedPlayModeBuildLogs_RuntimeBuildLog__GetEnumerator, (List_1_PackedPlayModeBuildLogs_RuntimeBuildLog_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBEC58, List_1_PackedPlayModeBuildLogs_RuntimeBuildLog__GetEnumerator__MethodInfo); DO_APP_FUNC(0x01731030, int32_t, List_1_PackedPlayModeBuildLogs_RuntimeBuildLog__IndexOf, (List_1_PackedPlayModeBuildLogs_RuntimeBuildLog_ * __this, PackedPlayModeBuildLogs_RuntimeBuildLog item, MethodInfo * method)); DO_APP_FUNC(0x01746E50, void, List_1_PackedPlayModeBuildLogs_RuntimeBuildLog__Insert, (List_1_PackedPlayModeBuildLogs_RuntimeBuildLog_ * __this, int32_t index, PackedPlayModeBuildLogs_RuntimeBuildLog item, MethodInfo * method)); DO_APP_FUNC(0x017D14E0, void, List_1_PackedPlayModeBuildLogs_RuntimeBuildLog__InsertRange, (List_1_PackedPlayModeBuildLogs_RuntimeBuildLog_ * __this, int32_t index, IEnumerable_1_PackedPlayModeBuildLogs_RuntimeBuildLog_ * collection, MethodInfo * method)); @@ -173757,7 +191381,9 @@ DO_APP_FUNC(0x017323E0, void, List_1_System_Text_RegularExpressions_RegexCharCla DO_APP_FUNC(0x0172F7F0, void, List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange___ctor, (List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0172FA30, void, List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange___ctor_1, (List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * __this, IEnumerable_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange___ctor_2, (List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEFF30, List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange___ctor_2__MethodInfo); DO_APP_FUNC(0x003ECFF0, void, List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__Add, (List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * __this, RegexCharClass_SingleRange item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEFF08, List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__Add__MethodInfo); DO_APP_FUNC(0x017D9D90, void, List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__AddEnumerable, (List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * __this, IEnumerable_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__AddRange, (List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * __this, IEnumerable_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * collection, MethodInfo * method)); DO_APP_FUNC(0x017631D0, void, List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__AddWithResize, (List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * __this, RegexCharClass_SingleRange item, MethodInfo * method)); @@ -173785,11 +191411,13 @@ DO_APP_FUNC(0x0174A310, bool, List_1_System_Text_RegularExpressions_RegexCharCla DO_APP_FUNC(0x017642C0, int32_t, List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__RemoveAll, (List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * __this, Predicate_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * match, MethodInfo * method)); DO_APP_FUNC(0x0174A620, void, List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__RemoveAt, (List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x0174A670, void, List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__RemoveRange, (List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * __this, int32_t index, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEFDA8, List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__RemoveRange__MethodInfo); DO_APP_FUNC(0x01731D00, void, List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__Reverse, (List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01731D60, void, List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__Reverse_1, (List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * __this, int32_t index, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x01731DD0, void, List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__Sort, (List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01731F40, void, List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__Sort_1, (List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * __this, Comparison_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * comparison, MethodInfo * method)); DO_APP_FUNC(0x01731E40, void, List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__Sort_2, (List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * __this, IComparer_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEFDB0, List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__Sort_2__MethodInfo); DO_APP_FUNC(0x01731EC0, void, List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__Sort_3, (List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * __this, int32_t index, int32_t count, IComparer_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__System_Collections_Generic_ICollection_T__get_IsReadOnly, (List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01763A50, IEnumerator_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ *, List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__System_Collections_Generic_IEnumerable_T__GetEnumerator, (List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * __this, MethodInfo * method)); @@ -173810,14 +191438,19 @@ DO_APP_FUNC(0x01732000, RegexCharClass_SingleRange__Array *, List_1_System_Text_ DO_APP_FUNC(0x017320E0, void, List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__TrimExcess, (List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__get_Capacity, (List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__get_Count, (List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEFF60, List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__get_Count__MethodInfo); DO_APP_FUNC(0x01762EE0, RegexCharClass_SingleRange, List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__get_Item, (List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEFF68, List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__set_Capacity, (List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01762F20, void, List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__set_Item, (List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * __this, int32_t index, RegexCharClass_SingleRange value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEFF48, List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange__set_Item__MethodInfo); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData___ctor, (List_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB648, List_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData___ctor_1, (List_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * __this, IEnumerable_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData___ctor_2, (List_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x017DA120, void, List_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__Add, (List_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * __this, RenderChain_RenderNodeData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB680, List_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__Add__MethodInfo); DO_APP_FUNC(0x017DAA40, void, List_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__AddEnumerable, (List_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * __this, IEnumerable_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__AddRange, (List_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * __this, IEnumerable_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * collection, MethodInfo * method)); DO_APP_FUNC(0x017DA1D0, void, List_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__AddWithResize, (List_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * __this, RenderChain_RenderNodeData item, MethodInfo * method)); @@ -173826,6 +191459,7 @@ DO_APP_FUNC(0x017BA750, int32_t, List_1_UnityEngine_UIElements_UIR_RenderChain_R DO_APP_FUNC(0x017BA820, int32_t, List_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__BinarySearch_1, (List_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * __this, RenderChain_RenderNodeData item, IComparer_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x017BA660, int32_t, List_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__BinarySearch_2, (List_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * __this, int32_t index, int32_t count, RenderChain_RenderNodeData item, IComparer_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x003CB200, void, List_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__Clear, (List_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB6B0, List_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__Clear__MethodInfo); DO_APP_FUNC(0x017BA8F0, bool, List_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__Contains, (List_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * __this, RenderChain_RenderNodeData item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__CopyTo, (List_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * __this, RenderChain_RenderNodeData__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__CopyTo_1, (List_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * __this, RenderChain_RenderNodeData__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -173870,9 +191504,12 @@ DO_APP_FUNC(0x01732000, RenderChain_RenderNodeData__Array *, List_1_UnityEngine_ DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__TrimExcess, (List_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__get_Capacity, (List_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__get_Count, (List_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB688, List_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__get_Count__MethodInfo); DO_APP_FUNC(0x017B9EE0, RenderChain_RenderNodeData, List_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__get_Item, (List_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB598, List_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__set_Capacity, (List_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x017DA0A0, void, List_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__set_Item, (List_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * __this, int32_t index, RenderChain_RenderNodeData value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB4A8, List_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData__set_Item__MethodInfo); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData___ctor, (List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C91D00, List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData___ctor__MethodInfo); @@ -174066,9 +191703,11 @@ DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_ResourceManagement_ResourceMana DO_APP_FUNC(0x0172FEB0, void, List_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest__set_Item, (List_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest_ * __this, int32_t index, ResourceManager_DeferredCallbackRegisterRequest value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_Pathfinding_Util_RetainedGizmos_MeshWithHash___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_Pathfinding_Util_RetainedGizmos_MeshWithHash___ctor, (List_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC8D8, List_1_Pathfinding_Util_RetainedGizmos_MeshWithHash___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_Pathfinding_Util_RetainedGizmos_MeshWithHash___ctor_1, (List_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * __this, IEnumerable_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_Pathfinding_Util_RetainedGizmos_MeshWithHash___ctor_2, (List_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x0175C980, void, List_1_Pathfinding_Util_RetainedGizmos_MeshWithHash__Add, (List_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * __this, RetainedGizmos_MeshWithHash item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC8A0, List_1_Pathfinding_Util_RetainedGizmos_MeshWithHash__Add__MethodInfo); DO_APP_FUNC(0x017E93D0, void, List_1_Pathfinding_Util_RetainedGizmos_MeshWithHash__AddEnumerable, (List_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * __this, IEnumerable_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_Pathfinding_Util_RetainedGizmos_MeshWithHash__AddRange, (List_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * __this, IEnumerable_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0175CA70, void, List_1_Pathfinding_Util_RetainedGizmos_MeshWithHash__AddWithResize, (List_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * __this, RetainedGizmos_MeshWithHash item, MethodInfo * method)); @@ -174095,6 +191734,7 @@ DO_APP_FUNC(0x01744C60, bool, List_1_Pathfinding_Util_RetainedGizmos_MeshWithHas DO_APP_FUNC(0x01746430, bool, List_1_Pathfinding_Util_RetainedGizmos_MeshWithHash__Remove, (List_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * __this, RetainedGizmos_MeshWithHash item, MethodInfo * method)); DO_APP_FUNC(0x0175D050, int32_t, List_1_Pathfinding_Util_RetainedGizmos_MeshWithHash__RemoveAll, (List_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * __this, Predicate_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * match, MethodInfo * method)); DO_APP_FUNC(0x0175D230, void, List_1_Pathfinding_Util_RetainedGizmos_MeshWithHash__RemoveAt, (List_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC8E8, List_1_Pathfinding_Util_RetainedGizmos_MeshWithHash__RemoveAt__MethodInfo); DO_APP_FUNC(0x01731C60, void, List_1_Pathfinding_Util_RetainedGizmos_MeshWithHash__RemoveRange, (List_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * __this, int32_t index, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x01731D00, void, List_1_Pathfinding_Util_RetainedGizmos_MeshWithHash__Reverse, (List_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01731D60, void, List_1_Pathfinding_Util_RetainedGizmos_MeshWithHash__Reverse_1, (List_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * __this, int32_t index, int32_t count, MethodInfo * method)); @@ -174121,16 +191761,21 @@ DO_APP_FUNC(0x01732000, RetainedGizmos_MeshWithHash__Array *, List_1_Pathfinding DO_APP_FUNC(0x017320E0, void, List_1_Pathfinding_Util_RetainedGizmos_MeshWithHash__TrimExcess, (List_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_Pathfinding_Util_RetainedGizmos_MeshWithHash__get_Capacity, (List_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_Pathfinding_Util_RetainedGizmos_MeshWithHash__get_Count, (List_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC908, List_1_Pathfinding_Util_RetainedGizmos_MeshWithHash__get_Count__MethodInfo); DO_APP_FUNC(0x01744B50, RetainedGizmos_MeshWithHash, List_1_Pathfinding_Util_RetainedGizmos_MeshWithHash__get_Item, (List_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC910, List_1_Pathfinding_Util_RetainedGizmos_MeshWithHash__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_Pathfinding_Util_RetainedGizmos_MeshWithHash__set_Capacity, (List_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x0175C8D0, void, List_1_Pathfinding_Util_RetainedGizmos_MeshWithHash__set_Item, (List_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * __this, int32_t index, RetainedGizmos_MeshWithHash value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC8F8, List_1_Pathfinding_Util_RetainedGizmos_MeshWithHash__set_Item__MethodInfo); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride___ctor, (List_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDEB90, List_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride___ctor_1, (List_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ * __this, IEnumerable_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride___ctor_2, (List_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x0174B8D0, void, List_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride__Add, (List_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ * __this, TemplateAsset_AttributeOverride item, MethodInfo * method)); DO_APP_FUNC(0x017E9AF0, void, List_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride__AddEnumerable, (List_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ * __this, IEnumerable_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride__AddRange, (List_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ * __this, IEnumerable_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ * collection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDEBA8, List_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride__AddRange__MethodInfo); DO_APP_FUNC(0x0174B9C0, void, List_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride__AddWithResize, (List_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ * __this, TemplateAsset_AttributeOverride item, MethodInfo * method)); DO_APP_FUNC(0x01730510, ReadOnlyCollection_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ *, List_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride__AsReadOnly, (List_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01745310, int32_t, List_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride__BinarySearch, (List_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ * __this, TemplateAsset_AttributeOverride item, MethodInfo * method)); @@ -174181,14 +191826,18 @@ DO_APP_FUNC(0x01732000, TemplateAsset_AttributeOverride__Array *, List_1_UnityEn DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride__TrimExcess, (List_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride__get_Capacity, (List_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride__get_Count, (List_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA178, List_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride__get_Count__MethodInfo); DO_APP_FUNC(0x01744B50, TemplateAsset_AttributeOverride, List_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride__get_Item, (List_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA188, List_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride__set_Capacity, (List_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x0174B820, void, List_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride__set_Item, (List_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ * __this, int32_t index, TemplateAsset_AttributeOverride value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap___ctor, (List_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D20FD8, List_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap___ctor_1, (List_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ * __this, IEnumerable_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap___ctor_2, (List_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x017301E0, void, List_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__Add, (List_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ * __this, TextSettings_FontReferenceMap item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D20FF8, List_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__Add__MethodInfo); DO_APP_FUNC(0x017EA200, void, List_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__AddEnumerable, (List_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ * __this, IEnumerable_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__AddRange, (List_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ * __this, IEnumerable_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ * collection, MethodInfo * method)); DO_APP_FUNC(0x017302C0, void, List_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__AddWithResize, (List_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ * __this, TextSettings_FontReferenceMap item, MethodInfo * method)); @@ -174215,6 +191864,7 @@ DO_APP_FUNC(0x0172FF50, bool, List_1_UnityEngine_TextCore_Text_TextSettings_Font DO_APP_FUNC(0x017317F0, bool, List_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__Remove, (List_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ * __this, TextSettings_FontReferenceMap item, MethodInfo * method)); DO_APP_FUNC(0x017319A0, int32_t, List_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__RemoveAll, (List_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ * __this, Predicate_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ * match, MethodInfo * method)); DO_APP_FUNC(0x01731B90, void, List_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__RemoveAt, (List_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D20FE0, List_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__RemoveAt__MethodInfo); DO_APP_FUNC(0x01731C60, void, List_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__RemoveRange, (List_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ * __this, int32_t index, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x01731D00, void, List_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__Reverse, (List_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01731D60, void, List_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__Reverse_1, (List_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ * __this, int32_t index, int32_t count, MethodInfo * method)); @@ -174241,14 +191891,18 @@ DO_APP_FUNC(0x01732000, TextSettings_FontReferenceMap__Array *, List_1_UnityEngi DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__TrimExcess, (List_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__get_Capacity, (List_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__get_Count, (List_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21020, List_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__get_Count__MethodInfo); DO_APP_FUNC(0x0172FE60, TextSettings_FontReferenceMap, List_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__get_Item, (List_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21018, List_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__set_Capacity, (List_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x0172FEB0, void, List_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap__set_Item, (List_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ * __this, int32_t index, TextSettings_FontReferenceMap value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo___ctor, (List_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo___ctor_1, (List_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * __this, IEnumerable_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo___ctor_2, (List_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD8530, List_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo___ctor_2__MethodInfo); DO_APP_FUNC(0x01779170, void, List_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__Add, (List_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * __this, TextureBlitter_BlitInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD85C8, List_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__Add__MethodInfo); DO_APP_FUNC(0x017EA8D0, void, List_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__AddEnumerable, (List_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * __this, IEnumerable_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__AddRange, (List_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * __this, IEnumerable_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * collection, MethodInfo * method)); DO_APP_FUNC(0x01779290, void, List_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__AddWithResize, (List_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * __this, TextureBlitter_BlitInfo item, MethodInfo * method)); @@ -174257,6 +191911,7 @@ DO_APP_FUNC(0x01757580, int32_t, List_1_UnityEngine_UIElements_UIR_TextureBlitte DO_APP_FUNC(0x01757630, int32_t, List_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__BinarySearch_1, (List_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * __this, TextureBlitter_BlitInfo item, IComparer_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x017574B0, int32_t, List_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__BinarySearch_2, (List_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * __this, int32_t index, int32_t count, TextureBlitter_BlitInfo item, IComparer_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x003CB200, void, List_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__Clear, (List_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD85B8, List_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__Clear__MethodInfo); DO_APP_FUNC(0x017576E0, bool, List_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__Contains, (List_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * __this, TextureBlitter_BlitInfo item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__CopyTo, (List_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * __this, TextureBlitter_BlitInfo__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__CopyTo_1, (List_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * __this, TextureBlitter_BlitInfo__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -174301,6 +191956,7 @@ DO_APP_FUNC(0x01732000, TextureBlitter_BlitInfo__Array *, List_1_UnityEngine_UIE DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__TrimExcess, (List_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__get_Capacity, (List_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__get_Count, (List_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD8598, List_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__get_Count__MethodInfo); DO_APP_FUNC(0x01756CF0, TextureBlitter_BlitInfo, List_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__get_Item, (List_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__set_Capacity, (List_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x017790B0, void, List_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo__set_Item, (List_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * __this, int32_t index, TextureBlitter_BlitInfo value, MethodInfo * method)); @@ -174368,7 +192024,9 @@ DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_UIElements_TextureRegistry_Text DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_UIElements_TextureRegistry_TextureInfo___ctor, (List_1_UnityEngine_UIElements_TextureRegistry_TextureInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_UIElements_TextureRegistry_TextureInfo___ctor_1, (List_1_UnityEngine_UIElements_TextureRegistry_TextureInfo_ * __this, IEnumerable_1_UnityEngine_UIElements_TextureRegistry_TextureInfo_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_UIElements_TextureRegistry_TextureInfo___ctor_2, (List_1_UnityEngine_UIElements_TextureRegistry_TextureInfo_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6058, List_1_UnityEngine_UIElements_TextureRegistry_TextureInfo___ctor_2__MethodInfo); DO_APP_FUNC(0x017301E0, void, List_1_UnityEngine_UIElements_TextureRegistry_TextureInfo__Add, (List_1_UnityEngine_UIElements_TextureRegistry_TextureInfo_ * __this, TextureRegistry_TextureInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE60F0, List_1_UnityEngine_UIElements_TextureRegistry_TextureInfo__Add__MethodInfo); DO_APP_FUNC(0x017EBDC0, void, List_1_UnityEngine_UIElements_TextureRegistry_TextureInfo__AddEnumerable, (List_1_UnityEngine_UIElements_TextureRegistry_TextureInfo_ * __this, IEnumerable_1_UnityEngine_UIElements_TextureRegistry_TextureInfo_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_UnityEngine_UIElements_TextureRegistry_TextureInfo__AddRange, (List_1_UnityEngine_UIElements_TextureRegistry_TextureInfo_ * __this, IEnumerable_1_UnityEngine_UIElements_TextureRegistry_TextureInfo_ * collection, MethodInfo * method)); DO_APP_FUNC(0x017302C0, void, List_1_UnityEngine_UIElements_TextureRegistry_TextureInfo__AddWithResize, (List_1_UnityEngine_UIElements_TextureRegistry_TextureInfo_ * __this, TextureRegistry_TextureInfo item, MethodInfo * method)); @@ -174421,9 +192079,12 @@ DO_APP_FUNC(0x01732000, TextureRegistry_TextureInfo__Array *, List_1_UnityEngine DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_UIElements_TextureRegistry_TextureInfo__TrimExcess, (List_1_UnityEngine_UIElements_TextureRegistry_TextureInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_UIElements_TextureRegistry_TextureInfo__get_Capacity, (List_1_UnityEngine_UIElements_TextureRegistry_TextureInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_UIElements_TextureRegistry_TextureInfo__get_Count, (List_1_UnityEngine_UIElements_TextureRegistry_TextureInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE60D0, List_1_UnityEngine_UIElements_TextureRegistry_TextureInfo__get_Count__MethodInfo); DO_APP_FUNC(0x0172FE60, TextureRegistry_TextureInfo, List_1_UnityEngine_UIElements_TextureRegistry_TextureInfo__get_Item, (List_1_UnityEngine_UIElements_TextureRegistry_TextureInfo_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE60E0, List_1_UnityEngine_UIElements_TextureRegistry_TextureInfo__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_UIElements_TextureRegistry_TextureInfo__set_Capacity, (List_1_UnityEngine_UIElements_TextureRegistry_TextureInfo_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x0172FEB0, void, List_1_UnityEngine_UIElements_TextureRegistry_TextureInfo__set_Item, (List_1_UnityEngine_UIElements_TextureRegistry_TextureInfo_ * __this, int32_t index, TextureRegistry_TextureInfo value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6118, List_1_UnityEngine_UIElements_TextureRegistry_TextureInfo__set_Item__MethodInfo); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry___ctor, (List_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CAB1C0, List_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry___ctor__MethodInfo); @@ -174492,17 +192153,21 @@ DO_APP_FUNC(0x0175C8D0, void, List_1_UnityEngine_Timeline_TimeNotificationBehavi DO_APP_FUNC_METHODINFO(0x03CAB200, List_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry__set_Item__MethodInfo); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData___ctor, (List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF400, List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData___ctor_1, (List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * __this, IEnumerable_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData___ctor_2, (List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x008631B0, void, List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__Add, (List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * __this, TrackedDeviceRaycaster_RaycastHitData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF478, List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__Add__MethodInfo); DO_APP_FUNC(0x017ECC00, void, List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__AddEnumerable, (List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * __this, IEnumerable_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__AddRange, (List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * __this, IEnumerable_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * collection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF4A8, List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__AddRange__MethodInfo); DO_APP_FUNC(0x017421F0, void, List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__AddWithResize, (List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * __this, TrackedDeviceRaycaster_RaycastHitData item, MethodInfo * method)); DO_APP_FUNC(0x01730510, ReadOnlyCollection_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ *, List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__AsReadOnly, (List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x017424F0, int32_t, List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__BinarySearch, (List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * __this, TrackedDeviceRaycaster_RaycastHitData item, MethodInfo * method)); DO_APP_FUNC(0x01742590, int32_t, List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__BinarySearch_1, (List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * __this, TrackedDeviceRaycaster_RaycastHitData item, IComparer_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01742440, int32_t, List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__BinarySearch_2, (List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * __this, int32_t index, int32_t count, TrackedDeviceRaycaster_RaycastHitData item, IComparer_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x003CB200, void, List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__Clear, (List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF438, List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__Clear__MethodInfo); DO_APP_FUNC(0x01742630, bool, List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__Contains, (List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * __this, TrackedDeviceRaycaster_RaycastHitData item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__CopyTo, (List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * __this, TrackedDeviceRaycaster_RaycastHitData__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__CopyTo_1, (List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * __this, TrackedDeviceRaycaster_RaycastHitData__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -174526,6 +192191,7 @@ DO_APP_FUNC(0x01731D00, void, List_1_UnityEngine_InputSystem_UI_TrackedDeviceRay DO_APP_FUNC(0x01731D60, void, List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__Reverse_1, (List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * __this, int32_t index, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x01731DD0, void, List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__Sort, (List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01731F40, void, List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__Sort_1, (List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * __this, Comparison_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * comparison, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF470, List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__Sort_1__MethodInfo); DO_APP_FUNC(0x01731E40, void, List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__Sort_2, (List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * __this, IComparer_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01731EC0, void, List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__Sort_3, (List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * __this, int32_t index, int32_t count, IComparer_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__System_Collections_Generic_ICollection_T__get_IsReadOnly, (List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * __this, MethodInfo * method)); @@ -174547,14 +192213,18 @@ DO_APP_FUNC(0x01732000, TrackedDeviceRaycaster_RaycastHitData__Array *, List_1_U DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__TrimExcess, (List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__get_Capacity, (List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__get_Count, (List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF450, List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__get_Count__MethodInfo); DO_APP_FUNC(0x01741E50, TrackedDeviceRaycaster_RaycastHitData, List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__get_Item, (List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF448, List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__set_Capacity, (List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01741EA0, void, List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData__set_Item, (List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * __this, int32_t index, TrackedDeviceRaycaster_RaycastHitData value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData___ctor, (List_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B0E0, List_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData___ctor_1, (List_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData_ * __this, IEnumerable_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData___ctor_2, (List_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x017301E0, void, List_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData__Add, (List_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData_ * __this, TrackedPoseDriverDataDescription_PoseData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B0E8, List_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData__Add__MethodInfo); DO_APP_FUNC(0x017ED300, void, List_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData__AddEnumerable, (List_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData_ * __this, IEnumerable_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData__AddRange, (List_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData_ * __this, IEnumerable_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData_ * collection, MethodInfo * method)); DO_APP_FUNC(0x017302C0, void, List_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData__AddWithResize, (List_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData_ * __this, TrackedPoseDriverDataDescription_PoseData item, MethodInfo * method)); @@ -174607,14 +192277,18 @@ DO_APP_FUNC(0x01732000, TrackedPoseDriverDataDescription_PoseData__Array *, List DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData__TrimExcess, (List_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData__get_Capacity, (List_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData__get_Count, (List_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B0A0, List_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData__get_Count__MethodInfo); DO_APP_FUNC(0x0172FE60, TrackedPoseDriverDataDescription_PoseData, List_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData__get_Item, (List_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B090, List_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData__set_Capacity, (List_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x0172FEB0, void, List_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData__set_Item, (List_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData_ * __this, int32_t index, TrackedPoseDriverDataDescription_PoseData value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper___ctor, (List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1708, List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper___ctor_1, (List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * __this, IEnumerable_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper___ctor_2, (List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x01746CB0, void, List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__Add, (List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * __this, TreeView_TreeViewItemWrapper item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1468, List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__Add__MethodInfo); DO_APP_FUNC(0x017EDA10, void, List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__AddEnumerable, (List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * __this, IEnumerable_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__AddRange, (List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * __this, IEnumerable_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * collection, MethodInfo * method)); DO_APP_FUNC(0x01746D90, void, List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__AddWithResize, (List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * __this, TreeView_TreeViewItemWrapper item, MethodInfo * method)); @@ -174623,6 +192297,7 @@ DO_APP_FUNC(0x01730630, int32_t, List_1_UnityEngine_UIElements_TreeView_TreeView DO_APP_FUNC(0x017306C0, int32_t, List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__BinarySearch_1, (List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * __this, TreeView_TreeViewItemWrapper item, IComparer_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01730590, int32_t, List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__BinarySearch_2, (List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * __this, int32_t index, int32_t count, TreeView_TreeViewItemWrapper item, IComparer_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x003CB200, void, List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__Clear, (List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1440, List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__Clear__MethodInfo); DO_APP_FUNC(0x01730760, bool, List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__Contains, (List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * __this, TreeView_TreeViewItemWrapper item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__CopyTo, (List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * __this, TreeView_TreeViewItemWrapper__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__CopyTo_1, (List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * __this, TreeView_TreeViewItemWrapper__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -174637,11 +192312,13 @@ DO_APP_FUNC(0x01730EC0, List_1_T_Enumerator_UnityEngine_UIElements_TreeView_Tree DO_APP_FUNC(0x01731030, int32_t, List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__IndexOf, (List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * __this, TreeView_TreeViewItemWrapper item, MethodInfo * method)); DO_APP_FUNC(0x01746E50, void, List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__Insert, (List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * __this, int32_t index, TreeView_TreeViewItemWrapper item, MethodInfo * method)); DO_APP_FUNC(0x017ED650, void, List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__InsertRange, (List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * __this, int32_t index, IEnumerable_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * collection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1418, List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__InsertRange__MethodInfo); DO_APP_FUNC(0x0172FF50, bool, List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__IsCompatibleObject, (Object * value, MethodInfo * method)); DO_APP_FUNC(0x017317F0, bool, List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__Remove, (List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * __this, TreeView_TreeViewItemWrapper item, MethodInfo * method)); DO_APP_FUNC(0x01747340, int32_t, List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__RemoveAll, (List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * __this, Predicate_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * match, MethodInfo * method)); DO_APP_FUNC(0x01747530, void, List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__RemoveAt, (List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01731C60, void, List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__RemoveRange, (List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * __this, int32_t index, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1438, List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__RemoveRange__MethodInfo); DO_APP_FUNC(0x01731D00, void, List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__Reverse, (List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01731D60, void, List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__Reverse_1, (List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * __this, int32_t index, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x01731DD0, void, List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__Sort, (List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * __this, MethodInfo * method)); @@ -174667,7 +192344,9 @@ DO_APP_FUNC(0x01732000, TreeView_TreeViewItemWrapper__Array *, List_1_UnityEngin DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__TrimExcess, (List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__get_Capacity, (List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__get_Count, (List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1420, List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__get_Count__MethodInfo); DO_APP_FUNC(0x0172FE60, TreeView_TreeViewItemWrapper, List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__get_Item, (List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE15F0, List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__set_Capacity, (List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01746C10, void, List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__set_Item, (List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * __this, int32_t index, TreeView_TreeViewItemWrapper value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState___cctor, (MethodInfo * method)); @@ -174675,6 +192354,7 @@ DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_UIElements_TreeViewReorderableD DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState___ctor_1, (List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ * __this, IEnumerable_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState___ctor_2, (List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x01749180, void, List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__Add, (List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ * __this, TreeViewReorderableDragAndDropController_TreeItemState item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE43A8, List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__Add__MethodInfo); DO_APP_FUNC(0x017EE0B0, void, List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__AddEnumerable, (List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ * __this, IEnumerable_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__AddRange, (List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ * __this, IEnumerable_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ * collection, MethodInfo * method)); DO_APP_FUNC(0x017491E0, void, List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__AddWithResize, (List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ * __this, TreeViewReorderableDragAndDropController_TreeItemState item, MethodInfo * method)); @@ -174728,13 +192408,16 @@ DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_UIElements_TreeViewReorderableD DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__get_Capacity, (List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__get_Count, (List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01748E90, TreeViewReorderableDragAndDropController_TreeItemState, List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__get_Item, (List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE43B0, List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__set_Capacity, (List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01748ED0, void, List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__set_Item, (List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ * __this, int32_t index, TreeViewReorderableDragAndDropController_TreeItemState value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry___ctor, (List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9FE8, List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry___ctor_1, (List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * __this, IEnumerable_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry___ctor_2, (List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x017EE440, void, List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__Add, (List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * __this, UIRStylePainter_Entry item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA038, List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__Add__MethodInfo); DO_APP_FUNC(0x017EED60, void, List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__AddEnumerable, (List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * __this, IEnumerable_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__AddRange, (List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * __this, IEnumerable_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * collection, MethodInfo * method)); DO_APP_FUNC(0x017EE4F0, void, List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__AddWithResize, (List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * __this, UIRStylePainter_Entry item, MethodInfo * method)); @@ -174743,6 +192426,7 @@ DO_APP_FUNC(0x017BA750, int32_t, List_1_UnityEngine_UIElements_UIR_Implementatio DO_APP_FUNC(0x017BA820, int32_t, List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__BinarySearch_1, (List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * __this, UIRStylePainter_Entry item, IComparer_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x017BA660, int32_t, List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__BinarySearch_2, (List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * __this, int32_t index, int32_t count, UIRStylePainter_Entry item, IComparer_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x003CB200, void, List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__Clear, (List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9F58, List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__Clear__MethodInfo); DO_APP_FUNC(0x017BA8F0, bool, List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__Contains, (List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * __this, UIRStylePainter_Entry item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__CopyTo, (List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * __this, UIRStylePainter_Entry__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__CopyTo_1, (List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * __this, UIRStylePainter_Entry__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -174754,6 +192438,7 @@ DO_APP_FUNC(0x01730C90, int32_t, List_1_UnityEngine_UIElements_UIR_Implementatio DO_APP_FUNC(0x017BAE60, int32_t, List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__FindIndex_1, (List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * __this, int32_t startIndex, int32_t count, Predicate_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * match, MethodInfo * method)); DO_APP_FUNC(0x017BAFC0, void, List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__ForEach, (List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * __this, Action_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * action, MethodInfo * method)); DO_APP_FUNC(0x017BB0E0, List_1_T_Enumerator_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_, List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__GetEnumerator, (List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7808, List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__GetEnumerator__MethodInfo); DO_APP_FUNC(0x017BB2B0, int32_t, List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__IndexOf, (List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * __this, UIRStylePainter_Entry item, MethodInfo * method)); DO_APP_FUNC(0x017EE5A0, void, List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__Insert, (List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * __this, int32_t index, UIRStylePainter_Entry item, MethodInfo * method)); DO_APP_FUNC(0x017EE6A0, void, List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__InsertRange, (List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * __this, int32_t index, IEnumerable_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * collection, MethodInfo * method)); @@ -174787,14 +192472,19 @@ DO_APP_FUNC(0x01732000, UIRStylePainter_Entry__Array *, List_1_UnityEngine_UIEle DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__TrimExcess, (List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__get_Capacity, (List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__get_Count, (List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD77F8, List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__get_Count__MethodInfo); DO_APP_FUNC(0x017B9EE0, UIRStylePainter_Entry, List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__get_Item, (List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9F60, List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__set_Capacity, (List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x017EE3C0, void, List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__set_Item, (List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * __this, int32_t index, UIRStylePainter_Entry value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9F68, List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry__set_Item__MethodInfo); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree___ctor, (List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7DC0, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree___ctor_1, (List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * __this, IEnumerable_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree___ctor_2, (List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x017AE880, void, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__Add, (List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * __this, UIRenderDevice_AllocToFree item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7AF8, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__Add__MethodInfo); DO_APP_FUNC(0x017EF490, void, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__AddEnumerable, (List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * __this, IEnumerable_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__AddRange, (List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * __this, IEnumerable_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * collection, MethodInfo * method)); DO_APP_FUNC(0x017AE980, void, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__AddWithResize, (List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * __this, UIRenderDevice_AllocToFree item, MethodInfo * method)); @@ -174803,6 +192493,7 @@ DO_APP_FUNC(0x01759840, int32_t, List_1_UnityEngine_UIElements_UIR_UIRenderDevic DO_APP_FUNC(0x017598E0, int32_t, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__BinarySearch_1, (List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * __this, UIRenderDevice_AllocToFree item, IComparer_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01759780, int32_t, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__BinarySearch_2, (List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * __this, int32_t index, int32_t count, UIRenderDevice_AllocToFree item, IComparer_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x003CB200, void, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__Clear, (List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7AA8, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__Clear__MethodInfo); DO_APP_FUNC(0x01759990, bool, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__Contains, (List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * __this, UIRenderDevice_AllocToFree item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__CopyTo, (List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * __this, UIRenderDevice_AllocToFree__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__CopyTo_1, (List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * __this, UIRenderDevice_AllocToFree__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -174814,6 +192505,7 @@ DO_APP_FUNC(0x01730C90, int32_t, List_1_UnityEngine_UIElements_UIR_UIRenderDevic DO_APP_FUNC(0x01759E20, int32_t, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__FindIndex_1, (List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * __this, int32_t startIndex, int32_t count, Predicate_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * match, MethodInfo * method)); DO_APP_FUNC(0x01759F50, void, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__ForEach, (List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * __this, Action_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * action, MethodInfo * method)); DO_APP_FUNC(0x0175A030, List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__GetEnumerator, (List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7A90, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__GetEnumerator__MethodInfo); DO_APP_FUNC(0x0175A1E0, int32_t, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__IndexOf, (List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * __this, UIRenderDevice_AllocToFree item, MethodInfo * method)); DO_APP_FUNC(0x017AEA60, void, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__Insert, (List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * __this, int32_t index, UIRenderDevice_AllocToFree item, MethodInfo * method)); DO_APP_FUNC(0x017EF110, void, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__InsertRange, (List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * __this, int32_t index, IEnumerable_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * collection, MethodInfo * method)); @@ -174852,9 +192544,11 @@ DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_A DO_APP_FUNC(0x017AE7C0, void, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__set_Item, (List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * __this, int32_t index, UIRenderDevice_AllocToFree value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate___ctor, (List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7CC8, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate___ctor_1, (List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * __this, IEnumerable_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate___ctor_2, (List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x017EF860, void, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__Add, (List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * __this, UIRenderDevice_AllocToUpdate item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7B10, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__Add__MethodInfo); DO_APP_FUNC(0x017F0110, void, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__AddEnumerable, (List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * __this, IEnumerable_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__AddRange, (List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * __this, IEnumerable_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * collection, MethodInfo * method)); DO_APP_FUNC(0x017EF8F0, void, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__AddWithResize, (List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * __this, UIRenderDevice_AllocToUpdate item, MethodInfo * method)); @@ -174863,6 +192557,7 @@ DO_APP_FUNC(0x0174DB80, int32_t, List_1_UnityEngine_UIElements_UIR_UIRenderDevic DO_APP_FUNC(0x0174DC40, int32_t, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__BinarySearch_1, (List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * __this, UIRenderDevice_AllocToUpdate item, IComparer_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0174DAA0, int32_t, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__BinarySearch_2, (List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * __this, int32_t index, int32_t count, UIRenderDevice_AllocToUpdate item, IComparer_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x003CB200, void, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__Clear, (List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7A50, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__Clear__MethodInfo); DO_APP_FUNC(0x0174DD00, bool, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__Contains, (List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * __this, UIRenderDevice_AllocToUpdate item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__CopyTo, (List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * __this, UIRenderDevice_AllocToUpdate__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__CopyTo_1, (List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * __this, UIRenderDevice_AllocToUpdate__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -174874,6 +192569,7 @@ DO_APP_FUNC(0x01730C90, int32_t, List_1_UnityEngine_UIElements_UIR_UIRenderDevic DO_APP_FUNC(0x0174E230, int32_t, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__FindIndex_1, (List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * __this, int32_t startIndex, int32_t count, Predicate_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * match, MethodInfo * method)); DO_APP_FUNC(0x0174E380, void, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__ForEach, (List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * __this, Action_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * action, MethodInfo * method)); DO_APP_FUNC(0x0174E490, List_1_T_Enumerator_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__GetEnumerator, (List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7AB8, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__GetEnumerator__MethodInfo); DO_APP_FUNC(0x0174E670, int32_t, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__IndexOf, (List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * __this, UIRenderDevice_AllocToUpdate item, MethodInfo * method)); DO_APP_FUNC(0x017EF990, void, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__Insert, (List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * __this, int32_t index, UIRenderDevice_AllocToUpdate item, MethodInfo * method)); DO_APP_FUNC(0x017EFA90, void, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__InsertRange, (List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * __this, int32_t index, IEnumerable_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * collection, MethodInfo * method)); @@ -174908,21 +192604,27 @@ DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_A DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__get_Capacity, (List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__get_Count, (List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0174D3E0, UIRenderDevice_AllocToUpdate, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__get_Item, (List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7C10, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__set_Capacity, (List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x017EF7F0, void, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__set_Item, (List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * __this, int32_t index, UIRenderDevice_AllocToUpdate value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7C18, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__set_Item__MethodInfo); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_UnitySynchronizationContext_WorkRequest___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_UnityEngine_UnitySynchronizationContext_WorkRequest___ctor, (List_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0172FA30, void, List_1_UnityEngine_UnitySynchronizationContext_WorkRequest___ctor_1, (List_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * __this, IEnumerable_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_UnityEngine_UnitySynchronizationContext_WorkRequest___ctor_2, (List_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CCE8, List_1_UnityEngine_UnitySynchronizationContext_WorkRequest___ctor_2__MethodInfo); DO_APP_FUNC(0x0174B8D0, void, List_1_UnityEngine_UnitySynchronizationContext_WorkRequest__Add, (List_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * __this, UnitySynchronizationContext_WorkRequest item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CD08, List_1_UnityEngine_UnitySynchronizationContext_WorkRequest__Add__MethodInfo); DO_APP_FUNC(0x017F0870, void, List_1_UnityEngine_UnitySynchronizationContext_WorkRequest__AddEnumerable, (List_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * __this, IEnumerable_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_UnityEngine_UnitySynchronizationContext_WorkRequest__AddRange, (List_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * __this, IEnumerable_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * collection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CD58, List_1_UnityEngine_UnitySynchronizationContext_WorkRequest__AddRange__MethodInfo); DO_APP_FUNC(0x0174B9C0, void, List_1_UnityEngine_UnitySynchronizationContext_WorkRequest__AddWithResize, (List_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * __this, UnitySynchronizationContext_WorkRequest item, MethodInfo * method)); DO_APP_FUNC(0x01730510, ReadOnlyCollection_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ *, List_1_UnityEngine_UnitySynchronizationContext_WorkRequest__AsReadOnly, (List_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01745310, int32_t, List_1_UnityEngine_UnitySynchronizationContext_WorkRequest__BinarySearch, (List_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * __this, UnitySynchronizationContext_WorkRequest item, MethodInfo * method)); DO_APP_FUNC(0x017453B0, int32_t, List_1_UnityEngine_UnitySynchronizationContext_WorkRequest__BinarySearch_1, (List_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * __this, UnitySynchronizationContext_WorkRequest item, IComparer_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01745250, int32_t, List_1_UnityEngine_UnitySynchronizationContext_WorkRequest__BinarySearch_2, (List_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * __this, int32_t index, int32_t count, UnitySynchronizationContext_WorkRequest item, IComparer_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x003CB200, void, List_1_UnityEngine_UnitySynchronizationContext_WorkRequest__Clear, (List_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CD48, List_1_UnityEngine_UnitySynchronizationContext_WorkRequest__Clear__MethodInfo); DO_APP_FUNC(0x01745450, bool, List_1_UnityEngine_UnitySynchronizationContext_WorkRequest__Contains, (List_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * __this, UnitySynchronizationContext_WorkRequest item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_UnityEngine_UnitySynchronizationContext_WorkRequest__CopyTo, (List_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * __this, UnitySynchronizationContext_WorkRequest__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_UnityEngine_UnitySynchronizationContext_WorkRequest__CopyTo_1, (List_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * __this, UnitySynchronizationContext_WorkRequest__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -174941,6 +192643,7 @@ DO_APP_FUNC(0x01744C60, bool, List_1_UnityEngine_UnitySynchronizationContext_Wor DO_APP_FUNC(0x01746430, bool, List_1_UnityEngine_UnitySynchronizationContext_WorkRequest__Remove, (List_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * __this, UnitySynchronizationContext_WorkRequest item, MethodInfo * method)); DO_APP_FUNC(0x0174BFA0, int32_t, List_1_UnityEngine_UnitySynchronizationContext_WorkRequest__RemoveAll, (List_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * __this, Predicate_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * match, MethodInfo * method)); DO_APP_FUNC(0x0174C180, void, List_1_UnityEngine_UnitySynchronizationContext_WorkRequest__RemoveAt, (List_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CD38, List_1_UnityEngine_UnitySynchronizationContext_WorkRequest__RemoveAt__MethodInfo); DO_APP_FUNC(0x01731C60, void, List_1_UnityEngine_UnitySynchronizationContext_WorkRequest__RemoveRange, (List_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * __this, int32_t index, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x01731D00, void, List_1_UnityEngine_UnitySynchronizationContext_WorkRequest__Reverse, (List_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01731D60, void, List_1_UnityEngine_UnitySynchronizationContext_WorkRequest__Reverse_1, (List_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * __this, int32_t index, int32_t count, MethodInfo * method)); @@ -174967,7 +192670,9 @@ DO_APP_FUNC(0x01732000, UnitySynchronizationContext_WorkRequest__Array *, List_1 DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_UnitySynchronizationContext_WorkRequest__TrimExcess, (List_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_UnitySynchronizationContext_WorkRequest__get_Capacity, (List_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_UnitySynchronizationContext_WorkRequest__get_Count, (List_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CD30, List_1_UnityEngine_UnitySynchronizationContext_WorkRequest__get_Count__MethodInfo); DO_APP_FUNC(0x01744B50, UnitySynchronizationContext_WorkRequest, List_1_UnityEngine_UnitySynchronizationContext_WorkRequest__get_Item, (List_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CD28, List_1_UnityEngine_UnitySynchronizationContext_WorkRequest__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_UnitySynchronizationContext_WorkRequest__set_Capacity, (List_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x0174B820, void, List_1_UnityEngine_UnitySynchronizationContext_WorkRequest__set_Item, (List_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * __this, int32_t index, UnitySynchronizationContext_WorkRequest value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition___cctor, (MethodInfo * method)); @@ -175027,7 +192732,9 @@ DO_APP_FUNC(0x01732000, VisualTreeAsset_SlotDefinition__Array *, List_1_UnityEng DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition__TrimExcess, (List_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition__get_Capacity, (List_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition__get_Count, (List_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9778, List_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition__get_Count__MethodInfo); DO_APP_FUNC(0x0172FE60, VisualTreeAsset_SlotDefinition, List_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition__get_Item, (List_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9768, List_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition__set_Capacity, (List_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x0172FEB0, void, List_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition__set_Item, (List_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition_ * __this, int32_t index, VisualTreeAsset_SlotDefinition value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry___cctor, (MethodInfo * method)); @@ -175051,6 +192758,7 @@ DO_APP_FUNC(0x017309E0, bool, List_1_UnityEngine_UIElements_VisualTreeAsset_Slot DO_APP_FUNC(0x01730A20, VisualTreeAsset_SlotUsageEntry, List_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry__Find, (List_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_ * __this, Predicate_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_ * match, MethodInfo * method)); DO_APP_FUNC(0x01730B20, List_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_ *, List_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry__FindAll, (List_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_ * __this, Predicate_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_ * match, MethodInfo * method)); DO_APP_FUNC(0x01730C90, int32_t, List_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry__FindIndex, (List_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_ * __this, Predicate_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_ * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9678, List_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry__FindIndex__MethodInfo); DO_APP_FUNC(0x01730CE0, int32_t, List_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry__FindIndex_1, (List_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_ * __this, int32_t startIndex, int32_t count, Predicate_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_ * match, MethodInfo * method)); DO_APP_FUNC(0x01730DF0, void, List_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry__ForEach, (List_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_ * __this, Action_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_ * action, MethodInfo * method)); DO_APP_FUNC(0x01730EC0, List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_, List_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry__GetEnumerator, (List_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_ * __this, MethodInfo * method)); @@ -175088,6 +192796,7 @@ DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_UIElements_VisualTreeAsset_Slot DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry__get_Capacity, (List_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry__get_Count, (List_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0172FE60, VisualTreeAsset_SlotUsageEntry, List_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry__get_Item, (List_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9680, List_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry__set_Capacity, (List_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x0172FEB0, void, List_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry__set_Item, (List_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_ * __this, int32_t index, VisualTreeAsset_SlotUsageEntry value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry___cctor, (MethodInfo * method)); @@ -175101,6 +192810,7 @@ DO_APP_FUNC(0x0174B9C0, void, List_1_UnityEngine_UIElements_VisualTreeAsset_Usin DO_APP_FUNC(0x01730510, ReadOnlyCollection_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ *, List_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__AsReadOnly, (List_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01745310, int32_t, List_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__BinarySearch, (List_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ * __this, VisualTreeAsset_UsingEntry item, MethodInfo * method)); DO_APP_FUNC(0x017453B0, int32_t, List_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__BinarySearch_1, (List_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ * __this, VisualTreeAsset_UsingEntry item, IComparer_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9760, List_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__BinarySearch_1__MethodInfo); DO_APP_FUNC(0x01745250, int32_t, List_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__BinarySearch_2, (List_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ * __this, int32_t index, int32_t count, VisualTreeAsset_UsingEntry item, IComparer_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x003CB200, void, List_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__Clear, (List_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01745450, bool, List_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__Contains, (List_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ * __this, VisualTreeAsset_UsingEntry item, MethodInfo * method)); @@ -175114,6 +192824,7 @@ DO_APP_FUNC(0x01730C90, int32_t, List_1_UnityEngine_UIElements_VisualTreeAsset_U DO_APP_FUNC(0x017458C0, int32_t, List_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__FindIndex_1, (List_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ * __this, int32_t startIndex, int32_t count, Predicate_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ * match, MethodInfo * method)); DO_APP_FUNC(0x017459E0, void, List_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__ForEach, (List_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ * __this, Action_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ * action, MethodInfo * method)); DO_APP_FUNC(0x01745AB0, List_1_T_Enumerator_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_, List_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__GetEnumerator, (List_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9658, List_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__GetEnumerator__MethodInfo); DO_APP_FUNC(0x01745C30, int32_t, List_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__IndexOf, (List_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ * __this, VisualTreeAsset_UsingEntry item, MethodInfo * method)); DO_APP_FUNC(0x0174BA90, void, List_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__Insert, (List_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ * __this, int32_t index, VisualTreeAsset_UsingEntry item, MethodInfo * method)); DO_APP_FUNC(0x017F19E0, void, List_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__InsertRange, (List_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ * __this, int32_t index, IEnumerable_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ * collection, MethodInfo * method)); @@ -175147,7 +192858,9 @@ DO_APP_FUNC(0x01732000, VisualTreeAsset_UsingEntry__Array *, List_1_UnityEngine_ DO_APP_FUNC(0x017320E0, void, List_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__TrimExcess, (List_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__get_Capacity, (List_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__get_Count, (List_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9740, List_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__get_Count__MethodInfo); DO_APP_FUNC(0x01744B50, VisualTreeAsset_UsingEntry, List_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__get_Item, (List_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9748, List_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__set_Capacity, (List_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x0174B820, void, List_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry__set_Item, (List_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ * __this, int32_t index, VisualTreeAsset_UsingEntry value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry___cctor, (MethodInfo * method)); @@ -175219,9 +192932,11 @@ DO_APP_FUNC(0x0172FEB0, void, List_1_System_Xml_Schema_XmlSchemaObjectTable_XmlS DO_APP_FUNC_METHODINFO(0x03CAB2F0, List_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry__set_Item__MethodInfo); DO_APP_FUNC(0x017323E0, void, List_1_ftLightmaps_LightmapAdditionalData___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_ftLightmaps_LightmapAdditionalData___ctor, (List_1_ftLightmaps_LightmapAdditionalData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBCBB8, List_1_ftLightmaps_LightmapAdditionalData___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_ftLightmaps_LightmapAdditionalData___ctor_1, (List_1_ftLightmaps_LightmapAdditionalData_ * __this, IEnumerable_1_ftLightmaps_LightmapAdditionalData_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_ftLightmaps_LightmapAdditionalData___ctor_2, (List_1_ftLightmaps_LightmapAdditionalData_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x008631B0, void, List_1_ftLightmaps_LightmapAdditionalData__Add, (List_1_ftLightmaps_LightmapAdditionalData_ * __this, ftLightmaps_LightmapAdditionalData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBCBD0, List_1_ftLightmaps_LightmapAdditionalData__Add__MethodInfo); DO_APP_FUNC(0x017F2BE0, void, List_1_ftLightmaps_LightmapAdditionalData__AddEnumerable, (List_1_ftLightmaps_LightmapAdditionalData_ * __this, IEnumerable_1_ftLightmaps_LightmapAdditionalData_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_ftLightmaps_LightmapAdditionalData__AddRange, (List_1_ftLightmaps_LightmapAdditionalData_ * __this, IEnumerable_1_ftLightmaps_LightmapAdditionalData_ * collection, MethodInfo * method)); DO_APP_FUNC(0x017421F0, void, List_1_ftLightmaps_LightmapAdditionalData__AddWithResize, (List_1_ftLightmaps_LightmapAdditionalData_ * __this, ftLightmaps_LightmapAdditionalData item, MethodInfo * method)); @@ -175274,9 +192989,12 @@ DO_APP_FUNC(0x01732000, ftLightmaps_LightmapAdditionalData__Array *, List_1_ftLi DO_APP_FUNC(0x017320E0, void, List_1_ftLightmaps_LightmapAdditionalData__TrimExcess, (List_1_ftLightmaps_LightmapAdditionalData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_ftLightmaps_LightmapAdditionalData__get_Capacity, (List_1_ftLightmaps_LightmapAdditionalData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_ftLightmaps_LightmapAdditionalData__get_Count, (List_1_ftLightmaps_LightmapAdditionalData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBCB90, List_1_ftLightmaps_LightmapAdditionalData__get_Count__MethodInfo); DO_APP_FUNC(0x01741E50, ftLightmaps_LightmapAdditionalData, List_1_ftLightmaps_LightmapAdditionalData__get_Item, (List_1_ftLightmaps_LightmapAdditionalData_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBCB20, List_1_ftLightmaps_LightmapAdditionalData__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_ftLightmaps_LightmapAdditionalData__set_Capacity, (List_1_ftLightmaps_LightmapAdditionalData_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01741EA0, void, List_1_ftLightmaps_LightmapAdditionalData__set_Item, (List_1_ftLightmaps_LightmapAdditionalData_ * __this, int32_t index, ftLightmaps_LightmapAdditionalData value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBCB30, List_1_ftLightmaps_LightmapAdditionalData__set_Item__MethodInfo); DO_APP_FUNC(0x017323E0, void, List_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy___ctor, (List_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0172FA30, void, List_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy___ctor_1, (List_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * __this, IEnumerable_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * collection, MethodInfo * method)); @@ -175526,9 +193244,11 @@ DO_APP_FUNC(0x0172FC90, void, List_1_System_Linq_Expressions_Interpreter_Instruc DO_APP_FUNC(0x017A5F80, void, List_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView__set_Item, (List_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView_ * __this, int32_t index, InstructionList_DebugView_InstructionView value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb___ctor, (List_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD120, List_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb___ctor_1, (List_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * __this, IEnumerable_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb___ctor_2, (List_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x00AA7550, void, List_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__Add, (List_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * __this, PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBCEC0, List_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__Add__MethodInfo); DO_APP_FUNC(0x017F4E90, void, List_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__AddEnumerable, (List_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * __this, IEnumerable_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__AddRange, (List_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * __this, IEnumerable_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * collection, MethodInfo * method)); DO_APP_FUNC(0x01753D90, void, List_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__AddWithResize, (List_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * __this, PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb item, MethodInfo * method)); @@ -175537,6 +193257,7 @@ DO_APP_FUNC(0x01754040, int32_t, List_1_Rewired_PlayerController_Element_FBFSokz DO_APP_FUNC(0x017540E0, int32_t, List_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__BinarySearch_1, (List_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * __this, PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb item, IComparer_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01753F80, int32_t, List_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__BinarySearch_2, (List_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * __this, int32_t index, int32_t count, PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb item, IComparer_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01749550, void, List_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__Clear, (List_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBCF70, List_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__Clear__MethodInfo); DO_APP_FUNC(0x01754180, bool, List_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__Contains, (List_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * __this, PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__CopyTo, (List_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * __this, PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__CopyTo_1, (List_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * __this, PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -175581,14 +193302,18 @@ DO_APP_FUNC(0x01732000, PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__ DO_APP_FUNC(0x017320E0, void, List_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__TrimExcess, (List_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__get_Capacity, (List_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__get_Count, (List_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBCF98, List_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__get_Count__MethodInfo); DO_APP_FUNC(0x01753A20, PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb, List_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__get_Item, (List_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBCF88, List_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__set_Capacity, (List_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01753A80, void, List_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__set_Item, (List_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * __this, int32_t index, PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_Cinemachine_TargetPositionCache_CacheCurve_Item___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_Cinemachine_TargetPositionCache_CacheCurve_Item___ctor, (List_1_Cinemachine_TargetPositionCache_CacheCurve_Item_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0172FA30, void, List_1_Cinemachine_TargetPositionCache_CacheCurve_Item___ctor_1, (List_1_Cinemachine_TargetPositionCache_CacheCurve_Item_ * __this, IEnumerable_1_Cinemachine_TargetPositionCache_CacheCurve_Item_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_Cinemachine_TargetPositionCache_CacheCurve_Item___ctor_2, (List_1_Cinemachine_TargetPositionCache_CacheCurve_Item_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0120, List_1_Cinemachine_TargetPositionCache_CacheCurve_Item___ctor_2__MethodInfo); DO_APP_FUNC(0x017ABFA0, void, List_1_Cinemachine_TargetPositionCache_CacheCurve_Item__Add, (List_1_Cinemachine_TargetPositionCache_CacheCurve_Item_ * __this, TargetPositionCache_CacheCurve_Item item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0108, List_1_Cinemachine_TargetPositionCache_CacheCurve_Item__Add__MethodInfo); DO_APP_FUNC(0x017F5530, void, List_1_Cinemachine_TargetPositionCache_CacheCurve_Item__AddEnumerable, (List_1_Cinemachine_TargetPositionCache_CacheCurve_Item_ * __this, IEnumerable_1_Cinemachine_TargetPositionCache_CacheCurve_Item_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_Cinemachine_TargetPositionCache_CacheCurve_Item__AddRange, (List_1_Cinemachine_TargetPositionCache_CacheCurve_Item_ * __this, IEnumerable_1_Cinemachine_TargetPositionCache_CacheCurve_Item_ * collection, MethodInfo * method)); DO_APP_FUNC(0x017AC040, void, List_1_Cinemachine_TargetPositionCache_CacheCurve_Item__AddWithResize, (List_1_Cinemachine_TargetPositionCache_CacheCurve_Item_ * __this, TargetPositionCache_CacheCurve_Item item, MethodInfo * method)); @@ -175641,14 +193366,18 @@ DO_APP_FUNC(0x01732000, TargetPositionCache_CacheCurve_Item__Array *, List_1_Cin DO_APP_FUNC(0x017320E0, void, List_1_Cinemachine_TargetPositionCache_CacheCurve_Item__TrimExcess, (List_1_Cinemachine_TargetPositionCache_CacheCurve_Item_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_Cinemachine_TargetPositionCache_CacheCurve_Item__get_Capacity, (List_1_Cinemachine_TargetPositionCache_CacheCurve_Item_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_Cinemachine_TargetPositionCache_CacheCurve_Item__get_Count, (List_1_Cinemachine_TargetPositionCache_CacheCurve_Item_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0128, List_1_Cinemachine_TargetPositionCache_CacheCurve_Item__get_Count__MethodInfo); DO_APP_FUNC(0x017ABC20, TargetPositionCache_CacheCurve_Item, List_1_Cinemachine_TargetPositionCache_CacheCurve_Item__get_Item, (List_1_Cinemachine_TargetPositionCache_CacheCurve_Item_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0100, List_1_Cinemachine_TargetPositionCache_CacheCurve_Item__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_Cinemachine_TargetPositionCache_CacheCurve_Item__set_Capacity, (List_1_Cinemachine_TargetPositionCache_CacheCurve_Item_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x017ABC80, void, List_1_Cinemachine_TargetPositionCache_CacheCurve_Item__set_Item, (List_1_Cinemachine_TargetPositionCache_CacheCurve_Item_ * __this, int32_t index, TargetPositionCache_CacheCurve_Item value, MethodInfo * method)); DO_APP_FUNC(0x017323E0, void, List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem___ctor, (List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD00A0, List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem___ctor__MethodInfo); DO_APP_FUNC(0x0172FA30, void, List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem___ctor_1, (List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * __this, IEnumerable_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0172F8B0, void, List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem___ctor_2, (List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x0178A5F0, void, List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__Add, (List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * __this, TargetPositionCache_CacheEntry_RecordingItem item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD00F8, List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__Add__MethodInfo); DO_APP_FUNC(0x017F5C00, void, List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__AddEnumerable, (List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * __this, IEnumerable_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x017304F0, void, List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__AddRange, (List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * __this, IEnumerable_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0178A690, void, List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__AddWithResize, (List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * __this, TargetPositionCache_CacheEntry_RecordingItem item, MethodInfo * method)); @@ -175657,6 +193386,7 @@ DO_APP_FUNC(0x0178A960, int32_t, List_1_Cinemachine_TargetPositionCache_CacheEnt DO_APP_FUNC(0x0178AA00, int32_t, List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__BinarySearch_1, (List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * __this, TargetPositionCache_CacheEntry_RecordingItem item, IComparer_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0178A890, int32_t, List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__BinarySearch_2, (List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * __this, int32_t index, int32_t count, TargetPositionCache_CacheEntry_RecordingItem item, IComparer_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01749550, void, List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__Clear, (List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD00C0, List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__Clear__MethodInfo); DO_APP_FUNC(0x0178AAB0, bool, List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__Contains, (List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * __this, TargetPositionCache_CacheEntry_RecordingItem item, MethodInfo * method)); DO_APP_FUNC(0x017308F0, void, List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__CopyTo, (List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * __this, TargetPositionCache_CacheEntry_RecordingItem__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__CopyTo_1, (List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * __this, TargetPositionCache_CacheEntry_RecordingItem__Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -175676,6 +193406,7 @@ DO_APP_FUNC(0x0178BA30, bool, List_1_Cinemachine_TargetPositionCache_CacheEntry_ DO_APP_FUNC(0x0178BC00, int32_t, List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__RemoveAll, (List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * __this, Predicate_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * match, MethodInfo * method)); DO_APP_FUNC(0x0174A620, void, List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__RemoveAt, (List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x0174A670, void, List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__RemoveRange, (List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * __this, int32_t index, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD00F0, List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__RemoveRange__MethodInfo); DO_APP_FUNC(0x01731D00, void, List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__Reverse, (List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01731D60, void, List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__Reverse_1, (List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * __this, int32_t index, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x01731DD0, void, List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__Sort, (List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * __this, MethodInfo * method)); @@ -175701,19 +193432,28 @@ DO_APP_FUNC(0x01732000, TargetPositionCache_CacheEntry_RecordingItem__Array *, L DO_APP_FUNC(0x017320E0, void, List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__TrimExcess, (List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__get_Capacity, (List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__get_Count, (List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD00D8, List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__get_Count__MethodInfo); DO_APP_FUNC(0x0178A270, TargetPositionCache_CacheEntry_RecordingItem, List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__get_Item, (List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD00D0, List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__get_Item__MethodInfo); DO_APP_FUNC(0x0172FC90, void, List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__set_Capacity, (List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x0178A2D0, void, List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__set_Item, (List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * __this, int32_t index, TargetPositionCache_CacheEntry_RecordingItem value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD00E0, List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__set_Item__MethodInfo); DO_APP_FUNC(0x017F5EA0, void, LockedObject_1_Rewired_LowLevelInputEvent___ctor, (LockedObject_1_Rewired_LowLevelInputEvent_ * __this, MethodInfo * method)); DO_APP_FUNC(0x017F5F30, void, LockedObject_1_Rewired_LowLevelInputEvent___ctor_1, (LockedObject_1_Rewired_LowLevelInputEvent_ * __this, Object * param_0000c518, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07C58, LockedObject_1_Rewired_LowLevelInputEvent___ctor_1__MethodInfo); DO_APP_FUNC(0x017F5FF0, void, LockedObject_1_Rewired_LowLevelInputEvent__Lock, (LockedObject_1_Rewired_LowLevelInputEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07C48, LockedObject_1_Rewired_LowLevelInputEvent__Lock__MethodInfo); DO_APP_FUNC(0x010470B0, void, LockedObject_1_Rewired_LowLevelInputEvent__System_IDisposable_Dispose, (LockedObject_1_Rewired_LowLevelInputEvent_ * __this, MethodInfo * method)); DO_APP_FUNC(0x017F6090, void, LockedObject_1_Rewired_LowLevelInputEvent__Unlock, (LockedObject_1_Rewired_LowLevelInputEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07C68, LockedObject_1_Rewired_LowLevelInputEvent__Unlock__MethodInfo); DO_APP_FUNC(0x017F6120, void, LockedObject_1_System_Object___ctor, (LockedObject_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x017F61B0, void, LockedObject_1_System_Object___ctor_1, (LockedObject_1_System_Object_ * __this, Object * param_0000c518, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07C60, LockedObject_1_System_Object___ctor_1__MethodInfo); DO_APP_FUNC(0x017F6270, void, LockedObject_1_System_Object__Lock, (LockedObject_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07C78, LockedObject_1_System_Object__Lock__MethodInfo); DO_APP_FUNC(0x010470B0, void, LockedObject_1_System_Object__System_IDisposable_Dispose, (LockedObject_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x017F6310, void, LockedObject_1_System_Object__Unlock, (LockedObject_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07C70, LockedObject_1_System_Object__Unlock__MethodInfo); DO_APP_FUNC(0x017F6800, void, TlsOverPerCoreLockedStacksArrayPool_1_T_LockedStack_System_Byte___ctor, (TlsOverPerCoreLockedStacksArrayPool_1_T_LockedStack_System_Byte_ * __this, MethodInfo * method)); DO_APP_FUNC(0x017F6570, void, TlsOverPerCoreLockedStacksArrayPool_1_T_LockedStack_System_Byte__Trim, (TlsOverPerCoreLockedStacksArrayPool_1_T_LockedStack_System_Byte_ * __this, uint32_t tickCount, int32_t id, TlsOverPerCoreLockedStacksArrayPool_1_T_MemoryPressure_System_Byte_ * pressure, int32_t bucketSize, MethodInfo * method)); DO_APP_FUNC(0x017F64E0, Byte__Array *, TlsOverPerCoreLockedStacksArrayPool_1_T_LockedStack_System_Byte__TryPop, (TlsOverPerCoreLockedStacksArrayPool_1_T_LockedStack_System_Byte_ * __this, MethodInfo * method)); @@ -175750,6 +193490,7 @@ DO_APP_FUNC(0x01111850, IEnumerator_1_System_Linq_IGrouping_2_ *, Lookup_2_Syste DO_APP_FUNC(0x017F76F0, Lookup_2_TKey_TElement_Grouping_System_Int32_System_Object_ *, Lookup_2_System_Int32_System_Object__GetGrouping, (Lookup_2_System_Int32_System_Object_ * __this, int32_t key, bool create, MethodInfo * method)); DO_APP_FUNC(0x017F7690, int32_t, Lookup_2_System_Int32_System_Object__InternalGetHashCode, (Lookup_2_System_Int32_System_Object_ * __this, int32_t key, MethodInfo * method)); DO_APP_FUNC(0x017F7A70, void, Lookup_2_System_Int32_System_Object__Resize, (Lookup_2_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07C30, Lookup_2_System_Int32_System_Object__Resize__MethodInfo); DO_APP_FUNC(0x00F90230, IEnumerator *, Lookup_2_System_Int32_System_Object__System_Collections_IEnumerable_GetEnumerator, (Lookup_2_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00C72B40, Lookup_2_System_Object_System_Object_ *, Lookup_2_System_Object_System_Object__Create, (IEnumerable_1_System_Object_ * source, Func_2_Object_Object_ * keySelector, Func_2_Object_Object_ * elementSelector, IEqualityComparer_1_System_Object_ * comparer, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C980F8, Lookup_2_System_Object_System_Object__Create__MethodInfo); @@ -175758,6 +193499,7 @@ DO_APP_FUNC(0x01111850, IEnumerator_1_System_Linq_IGrouping_2__1 *, Lookup_2_Sys DO_APP_FUNC(0x017F7CA0, Lookup_2_TKey_TElement_Grouping_System_Object_System_Object_ *, Lookup_2_System_Object_System_Object__GetGrouping, (Lookup_2_System_Object_System_Object_ * __this, Object * key, bool create, MethodInfo * method)); DO_APP_FUNC(0x017F7C30, int32_t, Lookup_2_System_Object_System_Object__InternalGetHashCode, (Lookup_2_System_Object_System_Object_ * __this, Object * key, MethodInfo * method)); DO_APP_FUNC(0x017F8060, void, Lookup_2_System_Object_System_Object__Resize, (Lookup_2_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07BE8, Lookup_2_System_Object_System_Object__Resize__MethodInfo); DO_APP_FUNC(0x00F90230, IEnumerator *, Lookup_2_System_Object_System_Object__System_Collections_IEnumerable_GetEnumerator, (Lookup_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00C72F00, Lookup_2_System_Object_UnityEngine_Resolution_ *, Lookup_2_System_Object_UnityEngine_Resolution__Create, (IEnumerable_1_UnityEngine_Resolution_ * source, Func_2_UnityEngine_Resolution_Object_ * keySelector, Func_2_UnityEngine_Resolution_UnityEngine_Resolution_ * elementSelector, IEqualityComparer_1_System_Object_ * comparer, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C980D0, Lookup_2_System_Object_UnityEngine_Resolution__Create__MethodInfo); @@ -175766,6 +193508,7 @@ DO_APP_FUNC(0x01111850, IEnumerator_1_System_Linq_IGrouping_2__2 *, Lookup_2_Sys DO_APP_FUNC(0x017F7CA0, Lookup_2_TKey_TElement_Grouping_System_Object_UnityEngine_Resolution_ *, Lookup_2_System_Object_UnityEngine_Resolution__GetGrouping, (Lookup_2_System_Object_UnityEngine_Resolution_ * __this, Object * key, bool create, MethodInfo * method)); DO_APP_FUNC(0x017F7C30, int32_t, Lookup_2_System_Object_UnityEngine_Resolution__InternalGetHashCode, (Lookup_2_System_Object_UnityEngine_Resolution_ * __this, Object * key, MethodInfo * method)); DO_APP_FUNC(0x017F8220, void, Lookup_2_System_Object_UnityEngine_Resolution__Resize, (Lookup_2_System_Object_UnityEngine_Resolution_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07BF8, Lookup_2_System_Object_UnityEngine_Resolution__Resize__MethodInfo); DO_APP_FUNC(0x00F90230, IEnumerator *, Lookup_2_System_Object_UnityEngine_Resolution__System_Collections_IEnumerable_GetEnumerator, (Lookup_2_System_Object_UnityEngine_Resolution_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00C73380, Lookup_2_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2_ *, Lookup_2_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2__Create, (IEnumerable_1_KeyValuePair_2_UnityEngine_Vector3_System_Int32_ * source, Func_2_System_Collections_Generic_KeyValuePair_2_UnityEngine_Vector3_ * keySelector, Func_2_System_Collections_Generic_KeyValuePair_2_System_Collections_Generic_KeyValuePair_2_ * elementSelector, IEqualityComparer_1_UnityEngine_Vector3_ * comparer, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C980E0, Lookup_2_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2__Create__MethodInfo); @@ -175774,6 +193517,7 @@ DO_APP_FUNC(0x01111850, IEnumerator_1_System_Linq_IGrouping_2__3 *, Lookup_2_Uni DO_APP_FUNC(0x017F84C0, Lookup_2_TKey_TElement_Grouping_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2_ *, Lookup_2_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2__GetGrouping, (Lookup_2_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2_ * __this, Vector3 key, bool create, MethodInfo * method)); DO_APP_FUNC(0x017F83E0, int32_t, Lookup_2_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2__InternalGetHashCode, (Lookup_2_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2_ * __this, Vector3 key, MethodInfo * method)); DO_APP_FUNC(0x017F88A0, void, Lookup_2_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2__Resize, (Lookup_2_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07BF0, Lookup_2_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2__Resize__MethodInfo); DO_APP_FUNC(0x00F90230, IEnumerator *, Lookup_2_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2__System_Collections_IEnumerable_GetEnumerator, (Lookup_2_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x017F8A60, void, LowLevelDictionary_2_System_Int32_System_Object___ctor, (LowLevelDictionary_2_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x017F8B00, void, LowLevelDictionary_2_System_Int32_System_Object___ctor_1, (LowLevelDictionary_2_System_Int32_System_Object_ * __this, int32_t capacity, IEqualityComparer_1_System_Int32_ * comparer, MethodInfo * method)); @@ -175791,9 +193535,12 @@ DO_APP_FUNC(0x017F99C0, void, LowLevelDictionary_2_System_Object_System_Object__ DO_APP_FUNC(0x017F96A0, LowLevelDictionary_2_TKey_TValue_Entry_System_Object_System_Object_ *, LowLevelDictionary_2_System_Object_System_Object__Find, (LowLevelDictionary_2_System_Object_System_Object_ * __this, Object * key, MethodInfo * method)); DO_APP_FUNC(0x017F9BA0, int32_t, LowLevelDictionary_2_System_Object_System_Object__GetBucket, (LowLevelDictionary_2_System_Object_System_Object_ * __this, Object * key, int32_t numBuckets, MethodInfo * method)); DO_APP_FUNC(0x017F94E0, bool, LowLevelDictionary_2_System_Object_System_Object__Remove, (LowLevelDictionary_2_System_Object_System_Object_ * __this, Object * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07C00, LowLevelDictionary_2_System_Object_System_Object__Remove__MethodInfo); DO_APP_FUNC(0x017F9780, LowLevelDictionary_2_TKey_TValue_Entry_System_Object_System_Object_ *, LowLevelDictionary_2_System_Object_System_Object__UncheckedAdd, (LowLevelDictionary_2_System_Object_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x017F93A0, void, LowLevelDictionary_2_System_Object_System_Object__set_Item, (LowLevelDictionary_2_System_Object_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07C08, LowLevelDictionary_2_System_Object_System_Object__set_Item__MethodInfo); DO_APP_FUNC(0x017F9C40, void, LowLevelListWithIList_1_System_Object___ctor, (LowLevelListWithIList_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D113B0, LowLevelListWithIList_1_System_Object___ctor__MethodInfo); DO_APP_FUNC(0x017F9CB0, void, LowLevelListWithIList_1_System_Object___ctor_1, (LowLevelListWithIList_1_System_Object_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, LowLevelListWithIList_1_System_Object__System_Collections_Generic_ICollection_T__get_IsReadOnly, (LowLevelListWithIList_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x017F9D30, IEnumerator_1_System_Object_ *, LowLevelListWithIList_1_System_Object__System_Collections_Generic_IEnumerable_T__GetEnumerator, (LowLevelListWithIList_1_System_Object_ * __this, MethodInfo * method)); @@ -175801,107 +193548,147 @@ DO_APP_FUNC(0x017F9D30, IEnumerator *, LowLevelListWithIList_1_System_Object__Sy DO_APP_FUNC(0x017323E0, void, LowLevelList_1_System_Object___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0172F7F0, void, LowLevelList_1_System_Object___ctor, (LowLevelList_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x017F9E00, void, LowLevelList_1_System_Object___ctor_1, (LowLevelList_1_System_Object_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07C28, LowLevelList_1_System_Object___ctor_1__MethodInfo); DO_APP_FUNC(0x017FA200, void, LowLevelList_1_System_Object__Add, (LowLevelList_1_System_Object_ * __this, Object * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D113A8, LowLevelList_1_System_Object__Add__MethodInfo); DO_APP_FUNC(0x017FA2D0, void, LowLevelList_1_System_Object__AddRange, (LowLevelList_1_System_Object_ * __this, IEnumerable_1_System_Object_ * collection, MethodInfo * method)); DO_APP_FUNC(0x00FDE320, void, LowLevelList_1_System_Object__Clear, (LowLevelList_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x017FA2F0, bool, LowLevelList_1_System_Object__Contains, (LowLevelList_1_System_Object_ * __this, Object * item, MethodInfo * method)); DO_APP_FUNC(0x00FDE450, void, LowLevelList_1_System_Object__CopyTo, (LowLevelList_1_System_Object_ * __this, Object__Array * array, int32_t arrayIndex, MethodInfo * method)); DO_APP_FUNC(0x017FA270, void, LowLevelList_1_System_Object__EnsureCapacity, (LowLevelList_1_System_Object_ * __this, int32_t min, MethodInfo * method)); DO_APP_FUNC(0x017FA370, int32_t, LowLevelList_1_System_Object__IndexOf, (LowLevelList_1_System_Object_ * __this, Object * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D112D0, LowLevelList_1_System_Object__IndexOf__MethodInfo); DO_APP_FUNC(0x017FA3B0, void, LowLevelList_1_System_Object__Insert, (LowLevelList_1_System_Object_ * __this, int32_t index, Object * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07B98, LowLevelList_1_System_Object__Insert__MethodInfo); DO_APP_FUNC(0x017FA4B0, void, LowLevelList_1_System_Object__InsertRange, (LowLevelList_1_System_Object_ * __this, int32_t index, IEnumerable_1_System_Object_ * collection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07B90, LowLevelList_1_System_Object__InsertRange__MethodInfo); DO_APP_FUNC(0x017FA890, bool, LowLevelList_1_System_Object__Remove, (LowLevelList_1_System_Object_ * __this, Object * item, MethodInfo * method)); DO_APP_FUNC(0x017FA910, int32_t, LowLevelList_1_System_Object__RemoveAll, (LowLevelList_1_System_Object_ * __this, Predicate_1_Object_ * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07BB8, LowLevelList_1_System_Object__RemoveAll__MethodInfo); DO_APP_FUNC(0x017FAAF0, void, LowLevelList_1_System_Object__RemoveAt, (LowLevelList_1_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07BB0, LowLevelList_1_System_Object__RemoveAt__MethodInfo); DO_APP_FUNC(0x00BF9D80, int32_t, LowLevelList_1_System_Object__get_Capacity, (LowLevelList_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D113A0, LowLevelList_1_System_Object__get_Capacity__MethodInfo); DO_APP_FUNC(0x003BC2E0, int32_t, LowLevelList_1_System_Object__get_Count, (LowLevelList_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11378, LowLevelList_1_System_Object__get_Count__MethodInfo); DO_APP_FUNC(0x017FA110, Object *, LowLevelList_1_System_Object__get_Item, (LowLevelList_1_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07C18, LowLevelList_1_System_Object__get_Item__MethodInfo); DO_APP_FUNC(0x017F9FC0, void, LowLevelList_1_System_Object__set_Capacity, (LowLevelList_1_System_Object_ * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07C20, LowLevelList_1_System_Object__set_Capacity__MethodInfo); DO_APP_FUNC(0x017FA190, void, LowLevelList_1_System_Object__set_Item, (LowLevelList_1_System_Object_ * __this, int32_t index, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07C10, LowLevelList_1_System_Object__set_Item__MethodInfo); DO_APP_FUNC(0x017FDEB0, void, Map_2_System_Guid_System_Object___cctor, (MethodInfo * method)); DO_APP_FUNC(0x017FAE40, void, Map_2_System_Guid_System_Object___ctor, (Map_2_System_Guid_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x017FAF00, void, Map_2_System_Guid_System_Object___ctor_1, (Map_2_System_Guid_System_Object_ * __this, Guid key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x017FB000, void, Map_2_System_Guid_System_Object___ctor_2, (Map_2_System_Guid_System_Object_ * __this, Guid key, Object * value, Map_2_System_Guid_System_Object_ * left, Map_2_System_Guid_System_Object_ * right, MethodInfo * method)); DO_APP_FUNC(0x017FB210, Map_2_System_Guid_System_Object_ *, Map_2_System_Guid_System_Object__Add, (Map_2_System_Guid_System_Object_ * __this, Guid key, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07BD8, Map_2_System_Guid_System_Object__Add__MethodInfo); DO_APP_FUNC(0x017FC600, bool, Map_2_System_Guid_System_Object__Equals, (Map_2_System_Guid_System_Object_ * __this, Map_2_System_Guid_System_Object_ * other, MethodInfo * method)); DO_APP_FUNC(0x017FC3E0, Object *, Map_2_System_Guid_System_Object__Find, (Map_2_System_Guid_System_Object_ * __this, Guid key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07B78, Map_2_System_Guid_System_Object__Find__MethodInfo); DO_APP_FUNC(0x017FC980, IEnumerator_1_KeyValuePair_2_System_Guid_System_Object_ *, Map_2_System_Guid_System_Object__GetEnumerator, (Map_2_System_Guid_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x017FD600, Map_2_System_Guid_System_Object_ *, Map_2_System_Guid_System_Object__Rebalance, (Map_2_System_Guid_System_Object_ * map, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07B88, Map_2_System_Guid_System_Object__Rebalance__MethodInfo); DO_APP_FUNC(0x017FBC00, Map_2_System_Guid_System_Object_ *, Map_2_System_Guid_System_Object__Remove, (Map_2_System_Guid_System_Object_ * __this, Guid key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07B80, Map_2_System_Guid_System_Object__Remove__MethodInfo); DO_APP_FUNC(0x017FCBB0, Map_2_System_Guid_System_Object_ *, Map_2_System_Guid_System_Object__RotateLeft, (Map_2_System_Guid_System_Object_ * map, MethodInfo * method)); DO_APP_FUNC(0x017FD0E0, Map_2_System_Guid_System_Object_ *, Map_2_System_Guid_System_Object__RotateRight, (Map_2_System_Guid_System_Object_ * map, MethodInfo * method)); DO_APP_FUNC(0x017FCA80, Map_2_System_Guid_System_Object_ *, Map_2_System_Guid_System_Object__Search, (Map_2_System_Guid_System_Object_ * __this, Guid key, MethodInfo * method)); DO_APP_FUNC(0x017FCA50, IEnumerator *, Map_2_System_Guid_System_Object__System_Collections_IEnumerable_GetEnumerator, (Map_2_System_Guid_System_Object_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x017FC4E0, bool, Map_2_System_Guid_System_Object__TryFind, (Map_2_System_Guid_System_Object_ * __this, Guid key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x017FC4E0, bool, Map_2_System_Guid_System_Object__TryFind, (Map_2_System_Guid_System_Object_ * __this, Guid key, Object * * value, MethodInfo * method)); DO_APP_FUNC(0x017FB700, Map_2_System_Guid_System_Object_ *, Map_2_System_Guid_System_Object__Update, (Map_2_System_Guid_System_Object_ * __this, Guid key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x017FAD70, int32_t, Map_2_System_Guid_System_Object__get_Balance, (Map_2_System_Guid_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00421680, int32_t, Map_2_System_Guid_System_Object__get_Count, (Map_2_System_Guid_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x017FAE00, Object *, Map_2_System_Guid_System_Object__get_Item, (Map_2_System_Guid_System_Object_ * __this, Guid key, MethodInfo * method)); DO_APP_FUNC(0x017FABA0, Guid, Map_2_System_Guid_System_Object__get_Key, (Map_2_System_Guid_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07BA0, Map_2_System_Guid_System_Object__get_Key__MethodInfo); DO_APP_FUNC(0x017FAC90, Map_2_System_Guid_System_Object_ *, Map_2_System_Guid_System_Object__get_Left, (Map_2_System_Guid_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07BC8, Map_2_System_Guid_System_Object__get_Left__MethodInfo); DO_APP_FUNC(0x017FAD00, Map_2_System_Guid_System_Object_ *, Map_2_System_Guid_System_Object__get_Right, (Map_2_System_Guid_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07BC0, Map_2_System_Guid_System_Object__get_Right__MethodInfo); DO_APP_FUNC(0x017FAC20, Object *, Map_2_System_Guid_System_Object__get_Value, (Map_2_System_Guid_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07BD0, Map_2_System_Guid_System_Object__get_Value__MethodInfo); DO_APP_FUNC(0x017FDEB0, void, Map_2_System_Object_System_Object___cctor, (MethodInfo * method)); DO_APP_FUNC(0x017FE2B0, void, Map_2_System_Object_System_Object___ctor, (Map_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x017FE370, void, Map_2_System_Object_System_Object___ctor_1, (Map_2_System_Object_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x017FE470, void, Map_2_System_Object_System_Object___ctor_2, (Map_2_System_Object_System_Object_ * __this, Object * key, Object * value, Map_2_System_Object_System_Object_ * left, Map_2_System_Object_System_Object_ * right, MethodInfo * method)); DO_APP_FUNC(0x017FE6C0, Map_2_System_Object_System_Object_ *, Map_2_System_Object_System_Object__Add, (Map_2_System_Object_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D538, Map_2_System_Object_System_Object__Add__MethodInfo); DO_APP_FUNC(0x017FFA20, bool, Map_2_System_Object_System_Object__Equals, (Map_2_System_Object_System_Object_ * __this, Map_2_System_Object_System_Object_ * other, MethodInfo * method)); DO_APP_FUNC(0x017FF820, Object *, Map_2_System_Object_System_Object__Find, (Map_2_System_Object_System_Object_ * __this, Object * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D528, Map_2_System_Object_System_Object__Find__MethodInfo); DO_APP_FUNC(0x017FFD80, IEnumerator_1_KeyValuePair_2_System_Object_System_Object_ *, Map_2_System_Object_System_Object__GetEnumerator, (Map_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01800990, Map_2_System_Object_System_Object_ *, Map_2_System_Object_System_Object__Rebalance, (Map_2_System_Object_System_Object_ * map, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D548, Map_2_System_Object_System_Object__Rebalance__MethodInfo); DO_APP_FUNC(0x017FF080, Map_2_System_Object_System_Object_ *, Map_2_System_Object_System_Object__Remove, (Map_2_System_Object_System_Object_ * __this, Object * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D530, Map_2_System_Object_System_Object__Remove__MethodInfo); DO_APP_FUNC(0x017FFFA0, Map_2_System_Object_System_Object_ *, Map_2_System_Object_System_Object__RotateLeft, (Map_2_System_Object_System_Object_ * map, MethodInfo * method)); DO_APP_FUNC(0x018004A0, Map_2_System_Object_System_Object_ *, Map_2_System_Object_System_Object__RotateRight, (Map_2_System_Object_System_Object_ * map, MethodInfo * method)); DO_APP_FUNC(0x017FFE50, Map_2_System_Object_System_Object_ *, Map_2_System_Object_System_Object__Search, (Map_2_System_Object_System_Object_ * __this, Object * key, MethodInfo * method)); DO_APP_FUNC(0x017FCA50, IEnumerator *, Map_2_System_Object_System_Object__System_Collections_IEnumerable_GetEnumerator, (Map_2_System_Object_System_Object_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x017FF910, bool, Map_2_System_Object_System_Object__TryFind, (Map_2_System_Object_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x017FF910, bool, Map_2_System_Object_System_Object__TryFind, (Map_2_System_Object_System_Object_ * __this, Object * key, Object * * value, MethodInfo * method)); DO_APP_FUNC(0x017FEB90, Map_2_System_Object_System_Object_ *, Map_2_System_Object_System_Object__Update, (Map_2_System_Object_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x017FE1F0, int32_t, Map_2_System_Object_System_Object__get_Balance, (Map_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003CC980, int32_t, Map_2_System_Object_System_Object__get_Count, (Map_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x017FE280, Object *, Map_2_System_Object_System_Object__get_Item, (Map_2_System_Object_System_Object_ * __this, Object * key, MethodInfo * method)); DO_APP_FUNC(0x017FE030, Object *, Map_2_System_Object_System_Object__get_Key, (Map_2_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D570, Map_2_System_Object_System_Object__get_Key__MethodInfo); DO_APP_FUNC(0x017FE110, Map_2_System_Object_System_Object_ *, Map_2_System_Object_System_Object__get_Left, (Map_2_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D518, Map_2_System_Object_System_Object__get_Left__MethodInfo); DO_APP_FUNC(0x017FE180, Map_2_System_Object_System_Object_ *, Map_2_System_Object_System_Object__get_Right, (Map_2_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D510, Map_2_System_Object_System_Object__get_Right__MethodInfo); DO_APP_FUNC(0x017FE0A0, Object *, Map_2_System_Object_System_Object__get_Value, (Map_2_System_Object_System_Object_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x01801220, bool, MemoryManager_1_System_Byte__TryGetArray, (MemoryManager_1_System_Byte_ * __this, ArraySegment_1_Byte_ segment, MethodInfo * method)); -DO_APP_FUNC(0x01801220, bool, MemoryManager_1_System_Object__TryGetArray, (MemoryManager_1_System_Object_ * __this, ArraySegment_1_Object_ segment, MethodInfo * method)); -DO_APP_FUNC(0x01801230, void, Memory_1_Byte___ctor, (Memory_1_Byte___Boxed * __this, Byte__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x018012E0, void, Memory_1_Byte___ctor_1, (Memory_1_Byte___Boxed * __this, Byte__Array * array, int32_t start, int32_t length, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D520, Map_2_System_Object_System_Object__get_Value__MethodInfo); +DO_APP_FUNC(0x01801220, bool, MemoryManager_1_System_Byte__TryGetArray, (MemoryManager_1_System_Byte_ * __this, ArraySegment_1_Byte_ * segment, MethodInfo * method)); +DO_APP_FUNC(0x01801220, bool, MemoryManager_1_System_Object__TryGetArray, (MemoryManager_1_System_Object_ * __this, ArraySegment_1_Object_ * segment, MethodInfo * method)); +DO_APP_FUNC(0x01801230, void, Memory_1_Byte___ctor, (Memory_1_Byte_ * __this, Byte__Array * array, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEA50, Memory_1_Byte___ctor__MethodInfo); +DO_APP_FUNC(0x018012E0, void, Memory_1_Byte___ctor_1, (Memory_1_Byte_ * __this, Byte__Array * array, int32_t start, int32_t length, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C99960, Memory_1_Byte___ctor_1__MethodInfo); -DO_APP_FUNC(0x00FDBDC0, void, Memory_1_Byte___ctor_2, (Memory_1_Byte___Boxed * __this, Object * obj, int32_t start, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x00FDBDC0, void, Memory_1_Byte___ctor_2, (Memory_1_Byte_ * __this, Object * obj, int32_t start, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x01039B50, int32_t, Memory_1_Byte__CombineHashCodes, (int32_t left, int32_t right, MethodInfo * method)); DO_APP_FUNC(0x01802550, int32_t, Memory_1_Byte__CombineHashCodes_1, (int32_t h1, int32_t h2, int32_t h3, MethodInfo * method)); -DO_APP_FUNC(0x01801C10, void, Memory_1_Byte__CopyTo, (Memory_1_Byte___Boxed * __this, Memory_1_Byte_ destination, MethodInfo * method)); -DO_APP_FUNC(0x01039A60, bool, Memory_1_Byte__Equals, (Memory_1_Byte___Boxed * __this, Memory_1_Byte_ other, MethodInfo * method)); -DO_APP_FUNC(0x018021F0, bool, Memory_1_Byte__Equals_1, (Memory_1_Byte___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x01802480, int32_t, Memory_1_Byte__GetHashCode, (Memory_1_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01801D30, MemoryHandle, Memory_1_Byte__Pin, (Memory_1_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01801780, Memory_1_Byte_, Memory_1_Byte__Slice, (Memory_1_Byte___Boxed * __this, int32_t start, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01802170, Byte__Array *, Memory_1_Byte__ToArray, (Memory_1_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01801510, String *, Memory_1_Byte__ToString, (Memory_1_Byte___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01801C10, void, Memory_1_Byte__CopyTo, (Memory_1_Byte_ * __this, Memory_1_Byte_ destination, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22660, Memory_1_Byte__CopyTo__MethodInfo); +DO_APP_FUNC(0x01039A60, bool, Memory_1_Byte__Equals, (Memory_1_Byte_ * __this, Memory_1_Byte_ other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1ECF0, Memory_1_Byte__Equals__MethodInfo); +DO_APP_FUNC(0x018021F0, bool, Memory_1_Byte__Equals_1, (Memory_1_Byte_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x01802480, int32_t, Memory_1_Byte__GetHashCode, (Memory_1_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01801D30, MemoryHandle, Memory_1_Byte__Pin, (Memory_1_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E5F0, Memory_1_Byte__Pin__MethodInfo); +DO_APP_FUNC(0x01801780, Memory_1_Byte_, Memory_1_Byte__Slice, (Memory_1_Byte_ * __this, int32_t start, int32_t length, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FBA8, Memory_1_Byte__Slice__MethodInfo); +DO_APP_FUNC(0x01802170, Byte__Array *, Memory_1_Byte__ToArray, (Memory_1_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E718, Memory_1_Byte__ToArray__MethodInfo); +DO_APP_FUNC(0x01801510, String *, Memory_1_Byte__ToString, (Memory_1_Byte_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00A9AD90, Memory_1_Byte_, Memory_1_Byte__get_Empty, (MethodInfo * method)); -DO_APP_FUNC(0x010390C0, int32_t, Memory_1_Byte__get_Length, (Memory_1_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01801820, Span_1_Byte_, Memory_1_Byte__get_Span, (Memory_1_Byte___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22458, Memory_1_Byte__get_Empty__MethodInfo); +DO_APP_FUNC(0x010390C0, int32_t, Memory_1_Byte__get_Length, (Memory_1_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FBA0, Memory_1_Byte__get_Length__MethodInfo); +DO_APP_FUNC(0x01801820, Span_1_Byte_, Memory_1_Byte__get_Span, (Memory_1_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FB98, Memory_1_Byte__get_Span__MethodInfo); DO_APP_FUNC(0x018013D0, Memory_1_Byte_, Memory_1_Byte__op_Implicit, (ArraySegment_1_Byte_ segment, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1ED80, Memory_1_Byte__op_Implicit__MethodInfo); DO_APP_FUNC(0x01801380, Memory_1_Byte_, Memory_1_Byte__op_Implicit_1, (Byte__Array * array, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E700, Memory_1_Byte__op_Implicit_1__MethodInfo); DO_APP_FUNC(0x00C2FFD0, ReadOnlyMemory_1_Byte_, Memory_1_Byte__op_Implicit_2, (Memory_1_Byte_ memory, MethodInfo * method)); -DO_APP_FUNC(0x01802640, void, Memory_1_Object___ctor, (Memory_1_Object___Boxed * __this, Object__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x01802770, void, Memory_1_Object___ctor_1, (Memory_1_Object___Boxed * __this, Object__Array * array, int32_t start, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x00FDBDC0, void, Memory_1_Object___ctor_2, (Memory_1_Object___Boxed * __this, Object * obj, int32_t start, int32_t length, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEF70, Memory_1_Byte__op_Implicit_2__MethodInfo); +DO_APP_FUNC(0x01802640, void, Memory_1_Object___ctor, (Memory_1_Object_ * __this, Object__Array * array, MethodInfo * method)); +DO_APP_FUNC(0x01802770, void, Memory_1_Object___ctor_1, (Memory_1_Object_ * __this, Object__Array * array, int32_t start, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x00FDBDC0, void, Memory_1_Object___ctor_2, (Memory_1_Object_ * __this, Object * obj, int32_t start, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x01039B50, int32_t, Memory_1_Object__CombineHashCodes, (int32_t left, int32_t right, MethodInfo * method)); DO_APP_FUNC(0x01802550, int32_t, Memory_1_Object__CombineHashCodes_1, (int32_t h1, int32_t h2, int32_t h3, MethodInfo * method)); -DO_APP_FUNC(0x01803010, void, Memory_1_Object__CopyTo, (Memory_1_Object___Boxed * __this, Memory_1_Object_ destination, MethodInfo * method)); -DO_APP_FUNC(0x01039A60, bool, Memory_1_Object__Equals, (Memory_1_Object___Boxed * __this, Memory_1_Object_ other, MethodInfo * method)); -DO_APP_FUNC(0x018021F0, bool, Memory_1_Object__Equals_1, (Memory_1_Object___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x01802480, int32_t, Memory_1_Object__GetHashCode, (Memory_1_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01803130, MemoryHandle, Memory_1_Object__Pin, (Memory_1_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01801780, Memory_1_Object_, Memory_1_Object__Slice, (Memory_1_Object___Boxed * __this, int32_t start, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01803580, Object__Array *, Memory_1_Object__ToArray, (Memory_1_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018029C0, String *, Memory_1_Object__ToString, (Memory_1_Object___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01803010, void, Memory_1_Object__CopyTo, (Memory_1_Object_ * __this, Memory_1_Object_ destination, MethodInfo * method)); +DO_APP_FUNC(0x01039A60, bool, Memory_1_Object__Equals, (Memory_1_Object_ * __this, Memory_1_Object_ other, MethodInfo * method)); +DO_APP_FUNC(0x018021F0, bool, Memory_1_Object__Equals_1, (Memory_1_Object_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x01802480, int32_t, Memory_1_Object__GetHashCode, (Memory_1_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01803130, MemoryHandle, Memory_1_Object__Pin, (Memory_1_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01801780, Memory_1_Object_, Memory_1_Object__Slice, (Memory_1_Object_ * __this, int32_t start, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x01803580, Object__Array *, Memory_1_Object__ToArray, (Memory_1_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x018029C0, String *, Memory_1_Object__ToString, (Memory_1_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00A9AD90, Memory_1_Object_, Memory_1_Object__get_Empty, (MethodInfo * method)); -DO_APP_FUNC(0x010390C0, int32_t, Memory_1_Object__get_Length, (Memory_1_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01802C30, Span_1_Object_, Memory_1_Object__get_Span, (Memory_1_Object___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x010390C0, int32_t, Memory_1_Object__get_Length, (Memory_1_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01802C30, Span_1_Object_, Memory_1_Object__get_Span, (Memory_1_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x018028D0, Memory_1_Object_, Memory_1_Object__op_Implicit, (ArraySegment_1_Object_ segment, MethodInfo * method)); DO_APP_FUNC(0x01802880, Memory_1_Object_, Memory_1_Object__op_Implicit_1, (Object__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00C2FFD0, ReadOnlyMemory_1_Object_, Memory_1_Object__op_Implicit_2, (Memory_1_Object_ memory, MethodInfo * method)); @@ -175918,23 +193705,27 @@ DO_APP_FUNC(0x018040D0, void, MinHeap_1_System_Object___ctor_1, (MinHeap_1_Syste DO_APP_FUNC(0x01803F20, void, MinHeap_1_System_Object___ctor_2, (MinHeap_1_System_Object_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x01803F90, void, MinHeap_1_System_Object___ctor_3, (MinHeap_1_System_Object_ * __this, int32_t capacity, IComparer_1_System_Object_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01804210, void, MinHeap_1_System_Object__Add, (MinHeap_1_System_Object_ * __this, Object * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D4A8, MinHeap_1_System_Object__Add__MethodInfo); DO_APP_FUNC(0x018043A0, void, MinHeap_1_System_Object__Add_1, (MinHeap_1_System_Object_ * __this, IEnumerable_1_System_Object_ * items, MethodInfo * method)); DO_APP_FUNC(0x018048B0, void, MinHeap_1_System_Object__BubbleUp, (MinHeap_1_System_Object_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01804880, void, MinHeap_1_System_Object__Clear, (MinHeap_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, MinHeap_1_System_Object__DebugCheckHeapProperty, (MinHeap_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01804420, void, MinHeap_1_System_Object__Heapify, (MinHeap_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x018044C0, void, MinHeap_1_System_Object__Heapify_1, (MinHeap_1_System_Object_ * __this, int32_t mutated, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D490, MinHeap_1_System_Object__Heapify_1__MethodInfo); DO_APP_FUNC(0x01804F50, int32_t, MinHeap_1_System_Object__IndexOf, (MinHeap_1_System_Object_ * __this, Object * item, MethodInfo * method)); DO_APP_FUNC(0x01804FA0, int32_t, MinHeap_1_System_Object__IndexOf_1, (MinHeap_1_System_Object_ * __this, Predicate_1_Object_ * predicate, MethodInfo * method)); DO_APP_FUNC(0x01804B60, bool, MinHeap_1_System_Object__IsLessThan, (MinHeap_1_System_Object_ * __this, Object * a, Object * b, MethodInfo * method)); DO_APP_FUNC(0x01804CE0, int32_t, MinHeap_1_System_Object__LeftChild, (int32_t i, MethodInfo * method)); DO_APP_FUNC(0x01804BD0, int32_t, MinHeap_1_System_Object__ParentIndex, (int32_t i, MethodInfo * method)); DO_APP_FUNC(0x018045F0, Object *, MinHeap_1_System_Object__RemoveAt, (MinHeap_1_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D488, MinHeap_1_System_Object__RemoveAt__MethodInfo); DO_APP_FUNC(0x018045C0, Object *, MinHeap_1_System_Object__RemoveMin, (MinHeap_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01804CF0, int32_t, MinHeap_1_System_Object__RightChild, (int32_t i, MethodInfo * method)); DO_APP_FUNC(0x01804D00, int32_t, MinHeap_1_System_Object__SmallestChildSmallerThan, (MinHeap_1_System_Object_ * __this, int32_t i, Object * item, MethodInfo * method)); DO_APP_FUNC(0x01804BE0, void, MinHeap_1_System_Object__Swap, (MinHeap_1_System_Object_ * __this, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x01804A00, int32_t, MinHeap_1_System_Object__TrickleDown, (MinHeap_1_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D4C8, MinHeap_1_System_Object__TrickleDown__MethodInfo); DO_APP_FUNC(0x005F7520, bool, MinHeap_1_System_Object__get_AllowHeapResize, (MinHeap_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01112B10, int32_t, MinHeap_1_System_Object__get_Count, (MinHeap_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01803EC0, Object *, MinHeap_1_System_Object__get_Minimum, (MinHeap_1_System_Object_ * __this, MethodInfo * method)); @@ -175952,18 +193743,21 @@ DO_APP_FUNC(0x01804880, void, MinHeap_1_Dissonance_Networking_VoicePacket__Clear DO_APP_FUNC(0x003AE050, void, MinHeap_1_Dissonance_Networking_VoicePacket__DebugCheckHeapProperty, (MinHeap_1_Dissonance_Networking_VoicePacket_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01804420, void, MinHeap_1_Dissonance_Networking_VoicePacket__Heapify, (MinHeap_1_Dissonance_Networking_VoicePacket_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01805210, void, MinHeap_1_Dissonance_Networking_VoicePacket__Heapify_1, (MinHeap_1_Dissonance_Networking_VoicePacket_ * __this, int32_t mutated, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D4C0, MinHeap_1_Dissonance_Networking_VoicePacket__Heapify_1__MethodInfo); DO_APP_FUNC(0x01806000, int32_t, MinHeap_1_Dissonance_Networking_VoicePacket__IndexOf, (MinHeap_1_Dissonance_Networking_VoicePacket_ * __this, VoicePacket item, MethodInfo * method)); DO_APP_FUNC(0x01804FA0, int32_t, MinHeap_1_Dissonance_Networking_VoicePacket__IndexOf_1, (MinHeap_1_Dissonance_Networking_VoicePacket_ * __this, Predicate_1_Dissonance_Networking_VoicePacket_ * predicate, MethodInfo * method)); DO_APP_FUNC(0x01805A30, bool, MinHeap_1_Dissonance_Networking_VoicePacket__IsLessThan, (MinHeap_1_Dissonance_Networking_VoicePacket_ * __this, VoicePacket a, VoicePacket b, MethodInfo * method)); DO_APP_FUNC(0x01804CE0, int32_t, MinHeap_1_Dissonance_Networking_VoicePacket__LeftChild, (int32_t i, MethodInfo * method)); DO_APP_FUNC(0x01804BD0, int32_t, MinHeap_1_Dissonance_Networking_VoicePacket__ParentIndex, (int32_t i, MethodInfo * method)); DO_APP_FUNC(0x01805380, VoicePacket, MinHeap_1_Dissonance_Networking_VoicePacket__RemoveAt, (MinHeap_1_Dissonance_Networking_VoicePacket_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D4B8, MinHeap_1_Dissonance_Networking_VoicePacket__RemoveAt__MethodInfo); DO_APP_FUNC(0x01805310, VoicePacket, MinHeap_1_Dissonance_Networking_VoicePacket__RemoveMin, (MinHeap_1_Dissonance_Networking_VoicePacket_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C93780, MinHeap_1_Dissonance_Networking_VoicePacket__RemoveMin__MethodInfo); DO_APP_FUNC(0x01804CF0, int32_t, MinHeap_1_Dissonance_Networking_VoicePacket__RightChild, (int32_t i, MethodInfo * method)); DO_APP_FUNC(0x01805CB0, int32_t, MinHeap_1_Dissonance_Networking_VoicePacket__SmallestChildSmallerThan, (MinHeap_1_Dissonance_Networking_VoicePacket_ * __this, int32_t i, VoicePacket item, MethodInfo * method)); DO_APP_FUNC(0x01805AE0, void, MinHeap_1_Dissonance_Networking_VoicePacket__Swap, (MinHeap_1_Dissonance_Networking_VoicePacket_ * __this, int32_t a, int32_t b, MethodInfo * method)); DO_APP_FUNC(0x018058A0, int32_t, MinHeap_1_Dissonance_Networking_VoicePacket__TrickleDown, (MinHeap_1_Dissonance_Networking_VoicePacket_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D4B0, MinHeap_1_Dissonance_Networking_VoicePacket__TrickleDown__MethodInfo); DO_APP_FUNC(0x005F7520, bool, MinHeap_1_Dissonance_Networking_VoicePacket__get_AllowHeapResize, (MinHeap_1_Dissonance_Networking_VoicePacket_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01112B10, int32_t, MinHeap_1_Dissonance_Networking_VoicePacket__get_Count, (MinHeap_1_Dissonance_Networking_VoicePacket_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C93788, MinHeap_1_Dissonance_Networking_VoicePacket__get_Count__MethodInfo); @@ -176091,11 +193885,12 @@ DO_APP_FUNC(0x01809820, IEnumerator_1_Rewired_ElementAssignmentConflictInfo_ *, DO_APP_FUNC(0x00F95D10, ElementAssignmentConflictInfo, Player_ControllerHelper_ConflictCheckingHelper_NAwRZebZKbPSDtIXymLEAedEoYHg_1_System_Object__System_Collections_Generic_IEnumerator_Rewired_ElementAssignmentConflictInfo__get_Current, (Player_ControllerHelper_ConflictCheckingHelper_NAwRZebZKbPSDtIXymLEAedEoYHg_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F9B320, IEnumerator *, Player_ControllerHelper_ConflictCheckingHelper_NAwRZebZKbPSDtIXymLEAedEoYHg_1_System_Object__System_Collections_IEnumerable_GetEnumerator, (Player_ControllerHelper_ConflictCheckingHelper_NAwRZebZKbPSDtIXymLEAedEoYHg_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01809760, void, Player_ControllerHelper_ConflictCheckingHelper_NAwRZebZKbPSDtIXymLEAedEoYHg_1_System_Object__System_Collections_IEnumerator_Reset, (Player_ControllerHelper_ConflictCheckingHelper_NAwRZebZKbPSDtIXymLEAedEoYHg_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D140, Player_ControllerHelper_ConflictCheckingHelper_NAwRZebZKbPSDtIXymLEAedEoYHg_1_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x018097B0, Object *, Player_ControllerHelper_ConflictCheckingHelper_NAwRZebZKbPSDtIXymLEAedEoYHg_1_System_Object__System_Collections_IEnumerator_get_Current, (Player_ControllerHelper_ConflictCheckingHelper_NAwRZebZKbPSDtIXymLEAedEoYHg_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F8E250, void, Player_ControllerHelper_ConflictCheckingHelper_NAwRZebZKbPSDtIXymLEAedEoYHg_1_System_Object__System_IDisposable_Dispose, (Player_ControllerHelper_ConflictCheckingHelper_NAwRZebZKbPSDtIXymLEAedEoYHg_1_System_Object_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x01809B50, void, NativeArray_1_UnityEngine_Rendering_BatchVisibility___ctor, (NativeArray_1_UnityEngine_Rendering_BatchVisibility___Boxed * __this, BatchVisibility__Array * array, Allocator__Enum allocator, MethodInfo * method)); -DO_APP_FUNC(0x01809A50, void, NativeArray_1_UnityEngine_Rendering_BatchVisibility___ctor_1, (NativeArray_1_UnityEngine_Rendering_BatchVisibility___Boxed * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); -DO_APP_FUNC(0x01809C50, void, NativeArray_1_UnityEngine_Rendering_BatchVisibility__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_UnityEngine_Rendering_BatchVisibility_ array, MethodInfo * method)); +DO_APP_FUNC(0x01809B50, void, NativeArray_1_UnityEngine_Rendering_BatchVisibility___ctor, (NativeArray_1_UnityEngine_Rendering_BatchVisibility_ * __this, BatchVisibility__Array * array, Allocator__Enum allocator, MethodInfo * method)); +DO_APP_FUNC(0x01809A50, void, NativeArray_1_UnityEngine_Rendering_BatchVisibility___ctor_1, (NativeArray_1_UnityEngine_Rendering_BatchVisibility_ * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); +DO_APP_FUNC(0x01809C50, void, NativeArray_1_UnityEngine_Rendering_BatchVisibility__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_UnityEngine_Rendering_BatchVisibility_ * array, MethodInfo * method)); DO_APP_FUNC(0x0180A3F0, void, NativeArray_1_UnityEngine_Rendering_BatchVisibility__Copy, (NativeArray_1_UnityEngine_Rendering_BatchVisibility_ src, NativeArray_1_UnityEngine_Rendering_BatchVisibility_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A4B0, void, NativeArray_1_UnityEngine_Rendering_BatchVisibility__Copy_1, (BatchVisibility__Array * src, NativeArray_1_UnityEngine_Rendering_BatchVisibility_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A560, void, NativeArray_1_UnityEngine_Rendering_BatchVisibility__Copy_2, (NativeArray_1_UnityEngine_Rendering_BatchVisibility_ src, NativeArray_1_UnityEngine_Rendering_BatchVisibility_ dst, int32_t length, MethodInfo * method)); @@ -176103,22 +193898,23 @@ DO_APP_FUNC(0x0180A620, void, NativeArray_1_UnityEngine_Rendering_BatchVisibilit DO_APP_FUNC(0x0180A6D0, void, NativeArray_1_UnityEngine_Rendering_BatchVisibility__Copy_4, (NativeArray_1_UnityEngine_Rendering_BatchVisibility_ src, int32_t srcIndex, NativeArray_1_UnityEngine_Rendering_BatchVisibility_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A990, void, NativeArray_1_UnityEngine_Rendering_BatchVisibility__Copy_5, (NativeArray_1_UnityEngine_Rendering_BatchVisibility_ src, int32_t srcIndex, BatchVisibility__Array * dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A820, void, NativeArray_1_UnityEngine_Rendering_BatchVisibility__Copy_6, (BatchVisibility__Array * src, int32_t srcIndex, NativeArray_1_UnityEngine_Rendering_BatchVisibility_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01809FE0, void, NativeArray_1_UnityEngine_Rendering_BatchVisibility__CopyFrom, (NativeArray_1_UnityEngine_Rendering_BatchVisibility___Boxed * __this, NativeArray_1_UnityEngine_Rendering_BatchVisibility_ array, MethodInfo * method)); -DO_APP_FUNC(0x01809F00, void, NativeArray_1_UnityEngine_Rendering_BatchVisibility__Dispose, (NativeArray_1_UnityEngine_Rendering_BatchVisibility___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_UnityEngine_Rendering_BatchVisibility__Equals, (NativeArray_1_UnityEngine_Rendering_BatchVisibility___Boxed * __this, NativeArray_1_UnityEngine_Rendering_BatchVisibility_ other, MethodInfo * method)); -DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_UnityEngine_Rendering_BatchVisibility__Equals_1, (NativeArray_1_UnityEngine_Rendering_BatchVisibility___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0180A150, NativeArray_1_T_Enumerator_UnityEngine_Rendering_BatchVisibility_, NativeArray_1_UnityEngine_Rendering_BatchVisibility__GetEnumerator, (NativeArray_1_UnityEngine_Rendering_BatchVisibility___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_UnityEngine_Rendering_BatchVisibility__GetHashCode, (NativeArray_1_UnityEngine_Rendering_BatchVisibility___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A1A0, IEnumerator_1_UnityEngine_Rendering_BatchVisibility_ *, NativeArray_1_UnityEngine_Rendering_BatchVisibility__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_UnityEngine_Rendering_BatchVisibility___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A220, IEnumerator *, NativeArray_1_UnityEngine_Rendering_BatchVisibility__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_UnityEngine_Rendering_BatchVisibility___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A070, BatchVisibility__Array *, NativeArray_1_UnityEngine_Rendering_BatchVisibility__ToArray, (NativeArray_1_UnityEngine_Rendering_BatchVisibility___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_UnityEngine_Rendering_BatchVisibility__get_IsCreated, (NativeArray_1_UnityEngine_Rendering_BatchVisibility___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01809D90, BatchVisibility, NativeArray_1_UnityEngine_Rendering_BatchVisibility__get_Item, (NativeArray_1_UnityEngine_Rendering_BatchVisibility___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_UnityEngine_Rendering_BatchVisibility__get_Length, (NativeArray_1_UnityEngine_Rendering_BatchVisibility___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01809E40, void, NativeArray_1_UnityEngine_Rendering_BatchVisibility__set_Item, (NativeArray_1_UnityEngine_Rendering_BatchVisibility___Boxed * __this, int32_t index, BatchVisibility value, MethodInfo * method)); -DO_APP_FUNC(0x01809B50, void, NativeArray_1_UnityEngine_BoneWeight1___ctor, (NativeArray_1_UnityEngine_BoneWeight1___Boxed * __this, BoneWeight1__Array * array, Allocator__Enum allocator, MethodInfo * method)); -DO_APP_FUNC(0x01809A50, void, NativeArray_1_UnityEngine_BoneWeight1___ctor_1, (NativeArray_1_UnityEngine_BoneWeight1___Boxed * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); -DO_APP_FUNC(0x01809C50, void, NativeArray_1_UnityEngine_BoneWeight1__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_UnityEngine_BoneWeight1_ array, MethodInfo * method)); +DO_APP_FUNC(0x01809FE0, void, NativeArray_1_UnityEngine_Rendering_BatchVisibility__CopyFrom, (NativeArray_1_UnityEngine_Rendering_BatchVisibility_ * __this, NativeArray_1_UnityEngine_Rendering_BatchVisibility_ array, MethodInfo * method)); +DO_APP_FUNC(0x01809F00, void, NativeArray_1_UnityEngine_Rendering_BatchVisibility__Dispose, (NativeArray_1_UnityEngine_Rendering_BatchVisibility_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D148, NativeArray_1_UnityEngine_Rendering_BatchVisibility__Dispose__MethodInfo); +DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_UnityEngine_Rendering_BatchVisibility__Equals, (NativeArray_1_UnityEngine_Rendering_BatchVisibility_ * __this, NativeArray_1_UnityEngine_Rendering_BatchVisibility_ other, MethodInfo * method)); +DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_UnityEngine_Rendering_BatchVisibility__Equals_1, (NativeArray_1_UnityEngine_Rendering_BatchVisibility_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x0180A150, NativeArray_1_T_Enumerator_UnityEngine_Rendering_BatchVisibility_, NativeArray_1_UnityEngine_Rendering_BatchVisibility__GetEnumerator, (NativeArray_1_UnityEngine_Rendering_BatchVisibility_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_UnityEngine_Rendering_BatchVisibility__GetHashCode, (NativeArray_1_UnityEngine_Rendering_BatchVisibility_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A1A0, IEnumerator_1_UnityEngine_Rendering_BatchVisibility_ *, NativeArray_1_UnityEngine_Rendering_BatchVisibility__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_UnityEngine_Rendering_BatchVisibility_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A220, IEnumerator *, NativeArray_1_UnityEngine_Rendering_BatchVisibility__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_UnityEngine_Rendering_BatchVisibility_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A070, BatchVisibility__Array *, NativeArray_1_UnityEngine_Rendering_BatchVisibility__ToArray, (NativeArray_1_UnityEngine_Rendering_BatchVisibility_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_UnityEngine_Rendering_BatchVisibility__get_IsCreated, (NativeArray_1_UnityEngine_Rendering_BatchVisibility_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01809D90, BatchVisibility, NativeArray_1_UnityEngine_Rendering_BatchVisibility__get_Item, (NativeArray_1_UnityEngine_Rendering_BatchVisibility_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_UnityEngine_Rendering_BatchVisibility__get_Length, (NativeArray_1_UnityEngine_Rendering_BatchVisibility_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01809E40, void, NativeArray_1_UnityEngine_Rendering_BatchVisibility__set_Item, (NativeArray_1_UnityEngine_Rendering_BatchVisibility_ * __this, int32_t index, BatchVisibility value, MethodInfo * method)); +DO_APP_FUNC(0x01809B50, void, NativeArray_1_UnityEngine_BoneWeight1___ctor, (NativeArray_1_UnityEngine_BoneWeight1_ * __this, BoneWeight1__Array * array, Allocator__Enum allocator, MethodInfo * method)); +DO_APP_FUNC(0x01809A50, void, NativeArray_1_UnityEngine_BoneWeight1___ctor_1, (NativeArray_1_UnityEngine_BoneWeight1_ * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); +DO_APP_FUNC(0x01809C50, void, NativeArray_1_UnityEngine_BoneWeight1__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_UnityEngine_BoneWeight1_ * array, MethodInfo * method)); DO_APP_FUNC(0x0180A3F0, void, NativeArray_1_UnityEngine_BoneWeight1__Copy, (NativeArray_1_UnityEngine_BoneWeight1_ src, NativeArray_1_UnityEngine_BoneWeight1_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A4B0, void, NativeArray_1_UnityEngine_BoneWeight1__Copy_1, (BoneWeight1__Array * src, NativeArray_1_UnityEngine_BoneWeight1_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A560, void, NativeArray_1_UnityEngine_BoneWeight1__Copy_2, (NativeArray_1_UnityEngine_BoneWeight1_ src, NativeArray_1_UnityEngine_BoneWeight1_ dst, int32_t length, MethodInfo * method)); @@ -176126,23 +193922,24 @@ DO_APP_FUNC(0x0180A620, void, NativeArray_1_UnityEngine_BoneWeight1__Copy_3, (Na DO_APP_FUNC(0x0180A6D0, void, NativeArray_1_UnityEngine_BoneWeight1__Copy_4, (NativeArray_1_UnityEngine_BoneWeight1_ src, int32_t srcIndex, NativeArray_1_UnityEngine_BoneWeight1_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A990, void, NativeArray_1_UnityEngine_BoneWeight1__Copy_5, (NativeArray_1_UnityEngine_BoneWeight1_ src, int32_t srcIndex, BoneWeight1__Array * dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A820, void, NativeArray_1_UnityEngine_BoneWeight1__Copy_6, (BoneWeight1__Array * src, int32_t srcIndex, NativeArray_1_UnityEngine_BoneWeight1_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01809FE0, void, NativeArray_1_UnityEngine_BoneWeight1__CopyFrom, (NativeArray_1_UnityEngine_BoneWeight1___Boxed * __this, NativeArray_1_UnityEngine_BoneWeight1_ array, MethodInfo * method)); -DO_APP_FUNC(0x0180AC30, void, NativeArray_1_UnityEngine_BoneWeight1__Dispose, (NativeArray_1_UnityEngine_BoneWeight1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_UnityEngine_BoneWeight1__Equals, (NativeArray_1_UnityEngine_BoneWeight1___Boxed * __this, NativeArray_1_UnityEngine_BoneWeight1_ other, MethodInfo * method)); -DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_UnityEngine_BoneWeight1__Equals_1, (NativeArray_1_UnityEngine_BoneWeight1___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0180AD10, NativeArray_1_T_Enumerator_UnityEngine_BoneWeight1_, NativeArray_1_UnityEngine_BoneWeight1__GetEnumerator, (NativeArray_1_UnityEngine_BoneWeight1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_UnityEngine_BoneWeight1__GetHashCode, (NativeArray_1_UnityEngine_BoneWeight1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180AD70, IEnumerator_1_UnityEngine_BoneWeight1_ *, NativeArray_1_UnityEngine_BoneWeight1__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_UnityEngine_BoneWeight1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180AE10, IEnumerator *, NativeArray_1_UnityEngine_BoneWeight1__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_UnityEngine_BoneWeight1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A070, BoneWeight1__Array *, NativeArray_1_UnityEngine_BoneWeight1__ToArray, (NativeArray_1_UnityEngine_BoneWeight1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_UnityEngine_BoneWeight1__get_IsCreated, (NativeArray_1_UnityEngine_BoneWeight1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180AB10, BoneWeight1, NativeArray_1_UnityEngine_BoneWeight1__get_Item, (NativeArray_1_UnityEngine_BoneWeight1___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_UnityEngine_BoneWeight1__get_Length, (NativeArray_1_UnityEngine_BoneWeight1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180AB90, void, NativeArray_1_UnityEngine_BoneWeight1__set_Item, (NativeArray_1_UnityEngine_BoneWeight1___Boxed * __this, int32_t index, BoneWeight1 value, MethodInfo * method)); -DO_APP_FUNC(0x01809B50, void, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane___ctor, (NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane___Boxed * __this, BoundedPlane__Array * array, Allocator__Enum allocator, MethodInfo * method)); +DO_APP_FUNC(0x01809FE0, void, NativeArray_1_UnityEngine_BoneWeight1__CopyFrom, (NativeArray_1_UnityEngine_BoneWeight1_ * __this, NativeArray_1_UnityEngine_BoneWeight1_ array, MethodInfo * method)); +DO_APP_FUNC(0x0180AC30, void, NativeArray_1_UnityEngine_BoneWeight1__Dispose, (NativeArray_1_UnityEngine_BoneWeight1_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D168, NativeArray_1_UnityEngine_BoneWeight1__Dispose__MethodInfo); +DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_UnityEngine_BoneWeight1__Equals, (NativeArray_1_UnityEngine_BoneWeight1_ * __this, NativeArray_1_UnityEngine_BoneWeight1_ other, MethodInfo * method)); +DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_UnityEngine_BoneWeight1__Equals_1, (NativeArray_1_UnityEngine_BoneWeight1_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x0180AD10, NativeArray_1_T_Enumerator_UnityEngine_BoneWeight1_, NativeArray_1_UnityEngine_BoneWeight1__GetEnumerator, (NativeArray_1_UnityEngine_BoneWeight1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_UnityEngine_BoneWeight1__GetHashCode, (NativeArray_1_UnityEngine_BoneWeight1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180AD70, IEnumerator_1_UnityEngine_BoneWeight1_ *, NativeArray_1_UnityEngine_BoneWeight1__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_UnityEngine_BoneWeight1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180AE10, IEnumerator *, NativeArray_1_UnityEngine_BoneWeight1__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_UnityEngine_BoneWeight1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A070, BoneWeight1__Array *, NativeArray_1_UnityEngine_BoneWeight1__ToArray, (NativeArray_1_UnityEngine_BoneWeight1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_UnityEngine_BoneWeight1__get_IsCreated, (NativeArray_1_UnityEngine_BoneWeight1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180AB10, BoneWeight1, NativeArray_1_UnityEngine_BoneWeight1__get_Item, (NativeArray_1_UnityEngine_BoneWeight1_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_UnityEngine_BoneWeight1__get_Length, (NativeArray_1_UnityEngine_BoneWeight1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180AB90, void, NativeArray_1_UnityEngine_BoneWeight1__set_Item, (NativeArray_1_UnityEngine_BoneWeight1_ * __this, int32_t index, BoneWeight1 value, MethodInfo * method)); +DO_APP_FUNC(0x01809B50, void, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane___ctor, (NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane_ * __this, BoundedPlane__Array * array, Allocator__Enum allocator, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8DEF0, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane___ctor__MethodInfo); -DO_APP_FUNC(0x01809A50, void, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane___ctor_1, (NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane___Boxed * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); -DO_APP_FUNC(0x01809C50, void, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane_ array, MethodInfo * method)); +DO_APP_FUNC(0x01809A50, void, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane___ctor_1, (NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane_ * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); +DO_APP_FUNC(0x01809C50, void, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane_ * array, MethodInfo * method)); DO_APP_FUNC(0x0180A3F0, void, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane__Copy, (NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane_ src, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A4B0, void, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane__Copy_1, (BoundedPlane__Array * src, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A560, void, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane__Copy_2, (NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane_ src, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane_ dst, int32_t length, MethodInfo * method)); @@ -176150,22 +193947,24 @@ DO_APP_FUNC(0x0180A620, void, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedP DO_APP_FUNC(0x0180A6D0, void, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane__Copy_4, (NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane_ src, int32_t srcIndex, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A990, void, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane__Copy_5, (NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane_ src, int32_t srcIndex, BoundedPlane__Array * dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A820, void, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane__Copy_6, (BoundedPlane__Array * src, int32_t srcIndex, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01809FE0, void, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane__CopyFrom, (NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane___Boxed * __this, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane_ array, MethodInfo * method)); -DO_APP_FUNC(0x0180B0B0, void, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane__Dispose, (NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane__Equals, (NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane___Boxed * __this, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane_ other, MethodInfo * method)); -DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane__Equals_1, (NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0180B190, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_BoundedPlane_, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane__GetEnumerator, (NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane__GetHashCode, (NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180B290, IEnumerator_1_UnityEngine_XR_ARSubsystems_BoundedPlane_ *, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180B3B0, IEnumerator *, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A070, BoundedPlane__Array *, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane__ToArray, (NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane__get_IsCreated, (NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180AED0, BoundedPlane, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane__get_Item, (NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane__get_Length, (NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180AFD0, void, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane__set_Item, (NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane___Boxed * __this, int32_t index, BoundedPlane value, MethodInfo * method)); -DO_APP_FUNC(0x01809B50, void, NativeArray_1_System_Byte___ctor, (NativeArray_1_System_Byte___Boxed * __this, Byte__Array * array, Allocator__Enum allocator, MethodInfo * method)); -DO_APP_FUNC(0x01809A50, void, NativeArray_1_System_Byte___ctor_1, (NativeArray_1_System_Byte___Boxed * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); -DO_APP_FUNC(0x01809C50, void, NativeArray_1_System_Byte__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_System_Byte_ array, MethodInfo * method)); +DO_APP_FUNC(0x01809FE0, void, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane__CopyFrom, (NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane_ * __this, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane_ array, MethodInfo * method)); +DO_APP_FUNC(0x0180B0B0, void, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane__Dispose, (NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D160, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane__Dispose__MethodInfo); +DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane__Equals, (NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane_ * __this, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane_ other, MethodInfo * method)); +DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane__Equals_1, (NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x0180B190, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_BoundedPlane_, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane__GetEnumerator, (NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane__GetHashCode, (NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180B290, IEnumerator_1_UnityEngine_XR_ARSubsystems_BoundedPlane_ *, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180B3B0, IEnumerator *, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A070, BoundedPlane__Array *, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane__ToArray, (NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane__get_IsCreated, (NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180AED0, BoundedPlane, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane__get_Item, (NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane__get_Length, (NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180AFD0, void, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane__set_Item, (NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane_ * __this, int32_t index, BoundedPlane value, MethodInfo * method)); +DO_APP_FUNC(0x01809B50, void, NativeArray_1_System_Byte___ctor, (NativeArray_1_System_Byte_ * __this, Byte__Array * array, Allocator__Enum allocator, MethodInfo * method)); +DO_APP_FUNC(0x01809A50, void, NativeArray_1_System_Byte___ctor_1, (NativeArray_1_System_Byte_ * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCAB60, NativeArray_1_System_Byte___ctor_1__MethodInfo); +DO_APP_FUNC(0x01809C50, void, NativeArray_1_System_Byte__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_System_Byte_ * array, MethodInfo * method)); DO_APP_FUNC(0x0180A3F0, void, NativeArray_1_System_Byte__Copy, (NativeArray_1_System_Byte_ src, NativeArray_1_System_Byte_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A4B0, void, NativeArray_1_System_Byte__Copy_1, (Byte__Array * src, NativeArray_1_System_Byte_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A560, void, NativeArray_1_System_Byte__Copy_2, (NativeArray_1_System_Byte_ src, NativeArray_1_System_Byte_ dst, int32_t length, MethodInfo * method)); @@ -176173,22 +193972,26 @@ DO_APP_FUNC(0x0180A620, void, NativeArray_1_System_Byte__Copy_3, (NativeArray_1_ DO_APP_FUNC(0x0180A6D0, void, NativeArray_1_System_Byte__Copy_4, (NativeArray_1_System_Byte_ src, int32_t srcIndex, NativeArray_1_System_Byte_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A990, void, NativeArray_1_System_Byte__Copy_5, (NativeArray_1_System_Byte_ src, int32_t srcIndex, Byte__Array * dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A820, void, NativeArray_1_System_Byte__Copy_6, (Byte__Array * src, int32_t srcIndex, NativeArray_1_System_Byte_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01809FE0, void, NativeArray_1_System_Byte__CopyFrom, (NativeArray_1_System_Byte___Boxed * __this, NativeArray_1_System_Byte_ array, MethodInfo * method)); -DO_APP_FUNC(0x0180B530, void, NativeArray_1_System_Byte__Dispose, (NativeArray_1_System_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_System_Byte__Equals, (NativeArray_1_System_Byte___Boxed * __this, NativeArray_1_System_Byte_ other, MethodInfo * method)); -DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_System_Byte__Equals_1, (NativeArray_1_System_Byte___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0180B610, NativeArray_1_T_Enumerator_System_Byte_, NativeArray_1_System_Byte__GetEnumerator, (NativeArray_1_System_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_System_Byte__GetHashCode, (NativeArray_1_System_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180B670, IEnumerator_1_System_Byte_ *, NativeArray_1_System_Byte__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_System_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180B710, IEnumerator *, NativeArray_1_System_Byte__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_System_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A070, Byte__Array *, NativeArray_1_System_Byte__ToArray, (NativeArray_1_System_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_System_Byte__get_IsCreated, (NativeArray_1_System_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180AB10, uint8_t, NativeArray_1_System_Byte__get_Item, (NativeArray_1_System_Byte___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_System_Byte__get_Length, (NativeArray_1_System_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180B490, void, NativeArray_1_System_Byte__set_Item, (NativeArray_1_System_Byte___Boxed * __this, int32_t index, uint8_t value, MethodInfo * method)); -DO_APP_FUNC(0x01809B50, void, NativeArray_1_UnityEngine_Color___ctor, (NativeArray_1_UnityEngine_Color___Boxed * __this, Color__Array * array, Allocator__Enum allocator, MethodInfo * method)); -DO_APP_FUNC(0x01809A50, void, NativeArray_1_UnityEngine_Color___ctor_1, (NativeArray_1_UnityEngine_Color___Boxed * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); -DO_APP_FUNC(0x01809C50, void, NativeArray_1_UnityEngine_Color__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_UnityEngine_Color_ array, MethodInfo * method)); +DO_APP_FUNC(0x01809FE0, void, NativeArray_1_System_Byte__CopyFrom, (NativeArray_1_System_Byte_ * __this, NativeArray_1_System_Byte_ array, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD11B8, NativeArray_1_System_Byte__CopyFrom__MethodInfo); +DO_APP_FUNC(0x0180B530, void, NativeArray_1_System_Byte__Dispose, (NativeArray_1_System_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8918, NativeArray_1_System_Byte__Dispose__MethodInfo); +DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_System_Byte__Equals, (NativeArray_1_System_Byte_ * __this, NativeArray_1_System_Byte_ other, MethodInfo * method)); +DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_System_Byte__Equals_1, (NativeArray_1_System_Byte_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x0180B610, NativeArray_1_T_Enumerator_System_Byte_, NativeArray_1_System_Byte__GetEnumerator, (NativeArray_1_System_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_System_Byte__GetHashCode, (NativeArray_1_System_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180B670, IEnumerator_1_System_Byte_ *, NativeArray_1_System_Byte__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_System_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180B710, IEnumerator *, NativeArray_1_System_Byte__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_System_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A070, Byte__Array *, NativeArray_1_System_Byte__ToArray, (NativeArray_1_System_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3660, NativeArray_1_System_Byte__ToArray__MethodInfo); +DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_System_Byte__get_IsCreated, (NativeArray_1_System_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF2B0, NativeArray_1_System_Byte__get_IsCreated__MethodInfo); +DO_APP_FUNC(0x0180AB10, uint8_t, NativeArray_1_System_Byte__get_Item, (NativeArray_1_System_Byte_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_System_Byte__get_Length, (NativeArray_1_System_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180B490, void, NativeArray_1_System_Byte__set_Item, (NativeArray_1_System_Byte_ * __this, int32_t index, uint8_t value, MethodInfo * method)); +DO_APP_FUNC(0x01809B50, void, NativeArray_1_UnityEngine_Color___ctor, (NativeArray_1_UnityEngine_Color_ * __this, Color__Array * array, Allocator__Enum allocator, MethodInfo * method)); +DO_APP_FUNC(0x01809A50, void, NativeArray_1_UnityEngine_Color___ctor_1, (NativeArray_1_UnityEngine_Color_ * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); +DO_APP_FUNC(0x01809C50, void, NativeArray_1_UnityEngine_Color__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_UnityEngine_Color_ * array, MethodInfo * method)); DO_APP_FUNC(0x0180A3F0, void, NativeArray_1_UnityEngine_Color__Copy, (NativeArray_1_UnityEngine_Color_ src, NativeArray_1_UnityEngine_Color_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A4B0, void, NativeArray_1_UnityEngine_Color__Copy_1, (Color__Array * src, NativeArray_1_UnityEngine_Color_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A560, void, NativeArray_1_UnityEngine_Color__Copy_2, (NativeArray_1_UnityEngine_Color_ src, NativeArray_1_UnityEngine_Color_ dst, int32_t length, MethodInfo * method)); @@ -176196,22 +193999,23 @@ DO_APP_FUNC(0x0180A620, void, NativeArray_1_UnityEngine_Color__Copy_3, (NativeAr DO_APP_FUNC(0x0180A6D0, void, NativeArray_1_UnityEngine_Color__Copy_4, (NativeArray_1_UnityEngine_Color_ src, int32_t srcIndex, NativeArray_1_UnityEngine_Color_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A990, void, NativeArray_1_UnityEngine_Color__Copy_5, (NativeArray_1_UnityEngine_Color_ src, int32_t srcIndex, Color__Array * dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A820, void, NativeArray_1_UnityEngine_Color__Copy_6, (Color__Array * src, int32_t srcIndex, NativeArray_1_UnityEngine_Color_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01809FE0, void, NativeArray_1_UnityEngine_Color__CopyFrom, (NativeArray_1_UnityEngine_Color___Boxed * __this, NativeArray_1_UnityEngine_Color_ array, MethodInfo * method)); -DO_APP_FUNC(0x0180B920, void, NativeArray_1_UnityEngine_Color__Dispose, (NativeArray_1_UnityEngine_Color___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_UnityEngine_Color__Equals, (NativeArray_1_UnityEngine_Color___Boxed * __this, NativeArray_1_UnityEngine_Color_ other, MethodInfo * method)); -DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_UnityEngine_Color__Equals_1, (NativeArray_1_UnityEngine_Color___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0180BA00, NativeArray_1_T_Enumerator_UnityEngine_Color_, NativeArray_1_UnityEngine_Color__GetEnumerator, (NativeArray_1_UnityEngine_Color___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_UnityEngine_Color__GetHashCode, (NativeArray_1_UnityEngine_Color___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180BA80, IEnumerator_1_UnityEngine_Color_ *, NativeArray_1_UnityEngine_Color__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_UnityEngine_Color___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180BB30, IEnumerator *, NativeArray_1_UnityEngine_Color__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_UnityEngine_Color___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A070, Color__Array *, NativeArray_1_UnityEngine_Color__ToArray, (NativeArray_1_UnityEngine_Color___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_UnityEngine_Color__get_IsCreated, (NativeArray_1_UnityEngine_Color___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180B7D0, Color, NativeArray_1_UnityEngine_Color__get_Item, (NativeArray_1_UnityEngine_Color___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_UnityEngine_Color__get_Length, (NativeArray_1_UnityEngine_Color___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180B880, void, NativeArray_1_UnityEngine_Color__set_Item, (NativeArray_1_UnityEngine_Color___Boxed * __this, int32_t index, Color value, MethodInfo * method)); -DO_APP_FUNC(0x01809B50, void, NativeArray_1_UnityEngine_Color32___ctor, (NativeArray_1_UnityEngine_Color32___Boxed * __this, Color32__Array * array, Allocator__Enum allocator, MethodInfo * method)); -DO_APP_FUNC(0x01809A50, void, NativeArray_1_UnityEngine_Color32___ctor_1, (NativeArray_1_UnityEngine_Color32___Boxed * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); -DO_APP_FUNC(0x01809C50, void, NativeArray_1_UnityEngine_Color32__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_UnityEngine_Color32_ array, MethodInfo * method)); +DO_APP_FUNC(0x01809FE0, void, NativeArray_1_UnityEngine_Color__CopyFrom, (NativeArray_1_UnityEngine_Color_ * __this, NativeArray_1_UnityEngine_Color_ array, MethodInfo * method)); +DO_APP_FUNC(0x0180B920, void, NativeArray_1_UnityEngine_Color__Dispose, (NativeArray_1_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D098, NativeArray_1_UnityEngine_Color__Dispose__MethodInfo); +DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_UnityEngine_Color__Equals, (NativeArray_1_UnityEngine_Color_ * __this, NativeArray_1_UnityEngine_Color_ other, MethodInfo * method)); +DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_UnityEngine_Color__Equals_1, (NativeArray_1_UnityEngine_Color_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x0180BA00, NativeArray_1_T_Enumerator_UnityEngine_Color_, NativeArray_1_UnityEngine_Color__GetEnumerator, (NativeArray_1_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_UnityEngine_Color__GetHashCode, (NativeArray_1_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180BA80, IEnumerator_1_UnityEngine_Color_ *, NativeArray_1_UnityEngine_Color__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180BB30, IEnumerator *, NativeArray_1_UnityEngine_Color__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A070, Color__Array *, NativeArray_1_UnityEngine_Color__ToArray, (NativeArray_1_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_UnityEngine_Color__get_IsCreated, (NativeArray_1_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180B7D0, Color, NativeArray_1_UnityEngine_Color__get_Item, (NativeArray_1_UnityEngine_Color_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_UnityEngine_Color__get_Length, (NativeArray_1_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180B880, void, NativeArray_1_UnityEngine_Color__set_Item, (NativeArray_1_UnityEngine_Color_ * __this, int32_t index, Color value, MethodInfo * method)); +DO_APP_FUNC(0x01809B50, void, NativeArray_1_UnityEngine_Color32___ctor, (NativeArray_1_UnityEngine_Color32_ * __this, Color32__Array * array, Allocator__Enum allocator, MethodInfo * method)); +DO_APP_FUNC(0x01809A50, void, NativeArray_1_UnityEngine_Color32___ctor_1, (NativeArray_1_UnityEngine_Color32_ * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); +DO_APP_FUNC(0x01809C50, void, NativeArray_1_UnityEngine_Color32__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_UnityEngine_Color32_ * array, MethodInfo * method)); DO_APP_FUNC(0x0180A3F0, void, NativeArray_1_UnityEngine_Color32__Copy, (NativeArray_1_UnityEngine_Color32_ src, NativeArray_1_UnityEngine_Color32_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A4B0, void, NativeArray_1_UnityEngine_Color32__Copy_1, (Color32__Array * src, NativeArray_1_UnityEngine_Color32_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A560, void, NativeArray_1_UnityEngine_Color32__Copy_2, (NativeArray_1_UnityEngine_Color32_ src, NativeArray_1_UnityEngine_Color32_ dst, int32_t length, MethodInfo * method)); @@ -176219,23 +194023,24 @@ DO_APP_FUNC(0x0180A620, void, NativeArray_1_UnityEngine_Color32__Copy_3, (Native DO_APP_FUNC(0x0180A6D0, void, NativeArray_1_UnityEngine_Color32__Copy_4, (NativeArray_1_UnityEngine_Color32_ src, int32_t srcIndex, NativeArray_1_UnityEngine_Color32_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A990, void, NativeArray_1_UnityEngine_Color32__Copy_5, (NativeArray_1_UnityEngine_Color32_ src, int32_t srcIndex, Color32__Array * dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A820, void, NativeArray_1_UnityEngine_Color32__Copy_6, (Color32__Array * src, int32_t srcIndex, NativeArray_1_UnityEngine_Color32_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01809FE0, void, NativeArray_1_UnityEngine_Color32__CopyFrom, (NativeArray_1_UnityEngine_Color32___Boxed * __this, NativeArray_1_UnityEngine_Color32_ array, MethodInfo * method)); -DO_APP_FUNC(0x0180BCA0, void, NativeArray_1_UnityEngine_Color32__Dispose, (NativeArray_1_UnityEngine_Color32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_UnityEngine_Color32__Equals, (NativeArray_1_UnityEngine_Color32___Boxed * __this, NativeArray_1_UnityEngine_Color32_ other, MethodInfo * method)); -DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_UnityEngine_Color32__Equals_1, (NativeArray_1_UnityEngine_Color32___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0180BD80, NativeArray_1_T_Enumerator_UnityEngine_Color32_, NativeArray_1_UnityEngine_Color32__GetEnumerator, (NativeArray_1_UnityEngine_Color32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_UnityEngine_Color32__GetHashCode, (NativeArray_1_UnityEngine_Color32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180BDE0, IEnumerator_1_UnityEngine_Color32_ *, NativeArray_1_UnityEngine_Color32__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_UnityEngine_Color32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180BE80, IEnumerator *, NativeArray_1_UnityEngine_Color32__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_UnityEngine_Color32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A070, Color32__Array *, NativeArray_1_UnityEngine_Color32__ToArray, (NativeArray_1_UnityEngine_Color32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_UnityEngine_Color32__get_IsCreated, (NativeArray_1_UnityEngine_Color32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180AB10, Color32, NativeArray_1_UnityEngine_Color32__get_Item, (NativeArray_1_UnityEngine_Color32___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_UnityEngine_Color32__get_Length, (NativeArray_1_UnityEngine_Color32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180BC00, void, NativeArray_1_UnityEngine_Color32__set_Item, (NativeArray_1_UnityEngine_Color32___Boxed * __this, int32_t index, Color32 value, MethodInfo * method)); -DO_APP_FUNC(0x01809B50, void, NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor___ctor, (NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor___Boxed * __this, ConfigurationDescriptor__Array * array, Allocator__Enum allocator, MethodInfo * method)); -DO_APP_FUNC(0x01809A50, void, NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor___ctor_1, (NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor___Boxed * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); +DO_APP_FUNC(0x01809FE0, void, NativeArray_1_UnityEngine_Color32__CopyFrom, (NativeArray_1_UnityEngine_Color32_ * __this, NativeArray_1_UnityEngine_Color32_ array, MethodInfo * method)); +DO_APP_FUNC(0x0180BCA0, void, NativeArray_1_UnityEngine_Color32__Dispose, (NativeArray_1_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D088, NativeArray_1_UnityEngine_Color32__Dispose__MethodInfo); +DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_UnityEngine_Color32__Equals, (NativeArray_1_UnityEngine_Color32_ * __this, NativeArray_1_UnityEngine_Color32_ other, MethodInfo * method)); +DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_UnityEngine_Color32__Equals_1, (NativeArray_1_UnityEngine_Color32_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x0180BD80, NativeArray_1_T_Enumerator_UnityEngine_Color32_, NativeArray_1_UnityEngine_Color32__GetEnumerator, (NativeArray_1_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_UnityEngine_Color32__GetHashCode, (NativeArray_1_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180BDE0, IEnumerator_1_UnityEngine_Color32_ *, NativeArray_1_UnityEngine_Color32__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180BE80, IEnumerator *, NativeArray_1_UnityEngine_Color32__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A070, Color32__Array *, NativeArray_1_UnityEngine_Color32__ToArray, (NativeArray_1_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_UnityEngine_Color32__get_IsCreated, (NativeArray_1_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180AB10, Color32, NativeArray_1_UnityEngine_Color32__get_Item, (NativeArray_1_UnityEngine_Color32_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_UnityEngine_Color32__get_Length, (NativeArray_1_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180BC00, void, NativeArray_1_UnityEngine_Color32__set_Item, (NativeArray_1_UnityEngine_Color32_ * __this, int32_t index, Color32 value, MethodInfo * method)); +DO_APP_FUNC(0x01809B50, void, NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor___ctor, (NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor_ * __this, ConfigurationDescriptor__Array * array, Allocator__Enum allocator, MethodInfo * method)); +DO_APP_FUNC(0x01809A50, void, NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor___ctor_1, (NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor_ * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8DD20, NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor___ctor_1__MethodInfo); -DO_APP_FUNC(0x01809C50, void, NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor_ array, MethodInfo * method)); +DO_APP_FUNC(0x01809C50, void, NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor_ * array, MethodInfo * method)); DO_APP_FUNC(0x0180A3F0, void, NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__Copy, (NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor_ src, NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A4B0, void, NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__Copy_1, (ConfigurationDescriptor__Array * src, NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A560, void, NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__Copy_2, (NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor_ src, NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor_ dst, int32_t length, MethodInfo * method)); @@ -176243,22 +194048,23 @@ DO_APP_FUNC(0x0180A620, void, NativeArray_1_UnityEngine_XR_ARSubsystems_Configur DO_APP_FUNC(0x0180A6D0, void, NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__Copy_4, (NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor_ src, int32_t srcIndex, NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A990, void, NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__Copy_5, (NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor_ src, int32_t srcIndex, ConfigurationDescriptor__Array * dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A820, void, NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__Copy_6, (ConfigurationDescriptor__Array * src, int32_t srcIndex, NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01809FE0, void, NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__CopyFrom, (NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor___Boxed * __this, NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor_ array, MethodInfo * method)); -DO_APP_FUNC(0x0180C0B0, void, NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__Dispose, (NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__Equals, (NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor___Boxed * __this, NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor_ other, MethodInfo * method)); -DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__Equals_1, (NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0180C190, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor_, NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__GetEnumerator, (NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__GetHashCode, (NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180C210, IEnumerator_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor_ *, NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180C2D0, IEnumerator *, NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A070, ConfigurationDescriptor__Array *, NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__ToArray, (NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__get_IsCreated, (NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180BF40, ConfigurationDescriptor, NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__get_Item, (NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__get_Length, (NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180C000, void, NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__set_Item, (NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor___Boxed * __this, int32_t index, ConfigurationDescriptor value, MethodInfo * method)); -DO_APP_FUNC(0x01809B50, void, NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange___ctor, (NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange___Boxed * __this, DrawBufferRange__Array * array, Allocator__Enum allocator, MethodInfo * method)); -DO_APP_FUNC(0x01809A50, void, NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange___ctor_1, (NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange___Boxed * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); -DO_APP_FUNC(0x01809C50, void, NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange_ array, MethodInfo * method)); +DO_APP_FUNC(0x01809FE0, void, NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__CopyFrom, (NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor_ * __this, NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor_ array, MethodInfo * method)); +DO_APP_FUNC(0x0180C0B0, void, NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__Dispose, (NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D078, NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__Dispose__MethodInfo); +DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__Equals, (NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor_ * __this, NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor_ other, MethodInfo * method)); +DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__Equals_1, (NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x0180C190, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor_, NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__GetEnumerator, (NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__GetHashCode, (NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180C210, IEnumerator_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor_ *, NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180C2D0, IEnumerator *, NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A070, ConfigurationDescriptor__Array *, NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__ToArray, (NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__get_IsCreated, (NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180BF40, ConfigurationDescriptor, NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__get_Item, (NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__get_Length, (NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180C000, void, NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__set_Item, (NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor_ * __this, int32_t index, ConfigurationDescriptor value, MethodInfo * method)); +DO_APP_FUNC(0x01809B50, void, NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange___ctor, (NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange_ * __this, DrawBufferRange__Array * array, Allocator__Enum allocator, MethodInfo * method)); +DO_APP_FUNC(0x01809A50, void, NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange___ctor_1, (NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange_ * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); +DO_APP_FUNC(0x01809C50, void, NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange_ * array, MethodInfo * method)); DO_APP_FUNC(0x0180A3F0, void, NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange__Copy, (NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange_ src, NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A4B0, void, NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange__Copy_1, (DrawBufferRange__Array * src, NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A560, void, NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange__Copy_2, (NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange_ src, NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange_ dst, int32_t length, MethodInfo * method)); @@ -176266,23 +194072,24 @@ DO_APP_FUNC(0x0180A620, void, NativeArray_1_UnityEngine_UIElements_UIR_DrawBuffe DO_APP_FUNC(0x0180A6D0, void, NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange__Copy_4, (NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange_ src, int32_t srcIndex, NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A990, void, NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange__Copy_5, (NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange_ src, int32_t srcIndex, DrawBufferRange__Array * dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A820, void, NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange__Copy_6, (DrawBufferRange__Array * src, int32_t srcIndex, NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01809FE0, void, NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange__CopyFrom, (NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange___Boxed * __this, NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange_ array, MethodInfo * method)); -DO_APP_FUNC(0x0180C3B0, void, NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange__Dispose, (NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange__Equals, (NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange___Boxed * __this, NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange_ other, MethodInfo * method)); -DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange__Equals_1, (NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0180BA00, NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_DrawBufferRange_, NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange__GetEnumerator, (NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange__GetHashCode, (NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180BA80, IEnumerator_1_UnityEngine_UIElements_UIR_DrawBufferRange_ *, NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180BB30, IEnumerator *, NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A070, DrawBufferRange__Array *, NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange__ToArray, (NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange__get_IsCreated, (NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180B7D0, DrawBufferRange, NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange__get_Item, (NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange__get_Length, (NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180B880, void, NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange__set_Item, (NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange___Boxed * __this, int32_t index, DrawBufferRange value, MethodInfo * method)); -DO_APP_FUNC(0x01809B50, void, NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___ctor, (NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___Boxed * __this, GfxUpdateBufferRange__Array * array, Allocator__Enum allocator, MethodInfo * method)); -DO_APP_FUNC(0x01809A50, void, NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___ctor_1, (NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___Boxed * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); +DO_APP_FUNC(0x01809FE0, void, NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange__CopyFrom, (NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange_ * __this, NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange_ array, MethodInfo * method)); +DO_APP_FUNC(0x0180C3B0, void, NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange__Dispose, (NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D060, NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange__Dispose__MethodInfo); +DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange__Equals, (NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange_ * __this, NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange_ other, MethodInfo * method)); +DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange__Equals_1, (NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x0180BA00, NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_DrawBufferRange_, NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange__GetEnumerator, (NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange__GetHashCode, (NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180BA80, IEnumerator_1_UnityEngine_UIElements_UIR_DrawBufferRange_ *, NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180BB30, IEnumerator *, NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A070, DrawBufferRange__Array *, NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange__ToArray, (NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange__get_IsCreated, (NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180B7D0, DrawBufferRange, NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange__get_Item, (NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange__get_Length, (NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180B880, void, NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange__set_Item, (NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange_ * __this, int32_t index, DrawBufferRange value, MethodInfo * method)); +DO_APP_FUNC(0x01809B50, void, NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___ctor, (NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ * __this, GfxUpdateBufferRange__Array * array, Allocator__Enum allocator, MethodInfo * method)); +DO_APP_FUNC(0x01809A50, void, NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___ctor_1, (NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C95498, NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___ctor_1__MethodInfo); -DO_APP_FUNC(0x01809C50, void, NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ array, MethodInfo * method)); +DO_APP_FUNC(0x01809C50, void, NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ * array, MethodInfo * method)); DO_APP_FUNC(0x0180A3F0, void, NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__Copy, (NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ src, NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A4B0, void, NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__Copy_1, (GfxUpdateBufferRange__Array * src, NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A560, void, NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__Copy_2, (NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ src, NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ dst, int32_t length, MethodInfo * method)); @@ -176290,24 +194097,24 @@ DO_APP_FUNC(0x0180A620, void, NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdate DO_APP_FUNC(0x0180A6D0, void, NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__Copy_4, (NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ src, int32_t srcIndex, NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A990, void, NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__Copy_5, (NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ src, int32_t srcIndex, GfxUpdateBufferRange__Array * dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A820, void, NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__Copy_6, (GfxUpdateBufferRange__Array * src, int32_t srcIndex, NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01809FE0, void, NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__CopyFrom, (NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___Boxed * __this, NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ array, MethodInfo * method)); -DO_APP_FUNC(0x0180C490, void, NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__Dispose, (NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01809FE0, void, NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__CopyFrom, (NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ * __this, NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ array, MethodInfo * method)); +DO_APP_FUNC(0x0180C490, void, NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__Dispose, (NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C95488, NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__Dispose__MethodInfo); -DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__Equals, (NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___Boxed * __this, NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ other, MethodInfo * method)); -DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__Equals_1, (NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0180C570, NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_, NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__GetEnumerator, (NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__GetHashCode, (NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180C5E0, IEnumerator_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ *, NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180C690, IEnumerator *, NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A070, GfxUpdateBufferRange__Array *, NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__ToArray, (NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__get_IsCreated, (NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180B7D0, GfxUpdateBufferRange, NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__get_Item, (NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__get_Length, (NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180B880, void, NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__set_Item, (NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___Boxed * __this, int32_t index, GfxUpdateBufferRange value, MethodInfo * method)); -DO_APP_FUNC(0x01809B50, void, NativeArray_1_System_Guid___ctor, (NativeArray_1_System_Guid___Boxed * __this, Guid__Array * array, Allocator__Enum allocator, MethodInfo * method)); -DO_APP_FUNC(0x01809A50, void, NativeArray_1_System_Guid___ctor_1, (NativeArray_1_System_Guid___Boxed * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); +DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__Equals, (NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ * __this, NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ other, MethodInfo * method)); +DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__Equals_1, (NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x0180C570, NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_, NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__GetEnumerator, (NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__GetHashCode, (NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180C5E0, IEnumerator_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ *, NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180C690, IEnumerator *, NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A070, GfxUpdateBufferRange__Array *, NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__ToArray, (NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__get_IsCreated, (NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180B7D0, GfxUpdateBufferRange, NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__get_Item, (NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__get_Length, (NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180B880, void, NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__set_Item, (NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ * __this, int32_t index, GfxUpdateBufferRange value, MethodInfo * method)); +DO_APP_FUNC(0x01809B50, void, NativeArray_1_System_Guid___ctor, (NativeArray_1_System_Guid_ * __this, Guid__Array * array, Allocator__Enum allocator, MethodInfo * method)); +DO_APP_FUNC(0x01809A50, void, NativeArray_1_System_Guid___ctor_1, (NativeArray_1_System_Guid_ * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8E250, NativeArray_1_System_Guid___ctor_1__MethodInfo); -DO_APP_FUNC(0x01809C50, void, NativeArray_1_System_Guid__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_System_Guid_ array, MethodInfo * method)); +DO_APP_FUNC(0x01809C50, void, NativeArray_1_System_Guid__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_System_Guid_ * array, MethodInfo * method)); DO_APP_FUNC(0x0180A3F0, void, NativeArray_1_System_Guid__Copy, (NativeArray_1_System_Guid_ src, NativeArray_1_System_Guid_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A4B0, void, NativeArray_1_System_Guid__Copy_1, (Guid__Array * src, NativeArray_1_System_Guid_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A560, void, NativeArray_1_System_Guid__Copy_2, (NativeArray_1_System_Guid_ src, NativeArray_1_System_Guid_ dst, int32_t length, MethodInfo * method)); @@ -176315,22 +194122,23 @@ DO_APP_FUNC(0x0180A620, void, NativeArray_1_System_Guid__Copy_3, (NativeArray_1_ DO_APP_FUNC(0x0180A6D0, void, NativeArray_1_System_Guid__Copy_4, (NativeArray_1_System_Guid_ src, int32_t srcIndex, NativeArray_1_System_Guid_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A990, void, NativeArray_1_System_Guid__Copy_5, (NativeArray_1_System_Guid_ src, int32_t srcIndex, Guid__Array * dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A820, void, NativeArray_1_System_Guid__Copy_6, (Guid__Array * src, int32_t srcIndex, NativeArray_1_System_Guid_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01809FE0, void, NativeArray_1_System_Guid__CopyFrom, (NativeArray_1_System_Guid___Boxed * __this, NativeArray_1_System_Guid_ array, MethodInfo * method)); -DO_APP_FUNC(0x0180C760, void, NativeArray_1_System_Guid__Dispose, (NativeArray_1_System_Guid___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_System_Guid__Equals, (NativeArray_1_System_Guid___Boxed * __this, NativeArray_1_System_Guid_ other, MethodInfo * method)); -DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_System_Guid__Equals_1, (NativeArray_1_System_Guid___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0180BA00, NativeArray_1_T_Enumerator_System_Guid_, NativeArray_1_System_Guid__GetEnumerator, (NativeArray_1_System_Guid___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_System_Guid__GetHashCode, (NativeArray_1_System_Guid___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180BA80, IEnumerator_1_System_Guid_ *, NativeArray_1_System_Guid__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_System_Guid___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180BB30, IEnumerator *, NativeArray_1_System_Guid__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_System_Guid___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A070, Guid__Array *, NativeArray_1_System_Guid__ToArray, (NativeArray_1_System_Guid___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_System_Guid__get_IsCreated, (NativeArray_1_System_Guid___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180B7D0, Guid, NativeArray_1_System_Guid__get_Item, (NativeArray_1_System_Guid___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_System_Guid__get_Length, (NativeArray_1_System_Guid___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180B880, void, NativeArray_1_System_Guid__set_Item, (NativeArray_1_System_Guid___Boxed * __this, int32_t index, Guid value, MethodInfo * method)); -DO_APP_FUNC(0x01809B50, void, NativeArray_1_System_Int32___ctor, (NativeArray_1_System_Int32___Boxed * __this, Int32__Array * array, Allocator__Enum allocator, MethodInfo * method)); -DO_APP_FUNC(0x01809A50, void, NativeArray_1_System_Int32___ctor_1, (NativeArray_1_System_Int32___Boxed * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); -DO_APP_FUNC(0x01809C50, void, NativeArray_1_System_Int32__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_System_Int32_ array, MethodInfo * method)); +DO_APP_FUNC(0x01809FE0, void, NativeArray_1_System_Guid__CopyFrom, (NativeArray_1_System_Guid_ * __this, NativeArray_1_System_Guid_ array, MethodInfo * method)); +DO_APP_FUNC(0x0180C760, void, NativeArray_1_System_Guid__Dispose, (NativeArray_1_System_Guid_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D0D8, NativeArray_1_System_Guid__Dispose__MethodInfo); +DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_System_Guid__Equals, (NativeArray_1_System_Guid_ * __this, NativeArray_1_System_Guid_ other, MethodInfo * method)); +DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_System_Guid__Equals_1, (NativeArray_1_System_Guid_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x0180BA00, NativeArray_1_T_Enumerator_System_Guid_, NativeArray_1_System_Guid__GetEnumerator, (NativeArray_1_System_Guid_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_System_Guid__GetHashCode, (NativeArray_1_System_Guid_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180BA80, IEnumerator_1_System_Guid_ *, NativeArray_1_System_Guid__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_System_Guid_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180BB30, IEnumerator *, NativeArray_1_System_Guid__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_System_Guid_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A070, Guid__Array *, NativeArray_1_System_Guid__ToArray, (NativeArray_1_System_Guid_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_System_Guid__get_IsCreated, (NativeArray_1_System_Guid_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180B7D0, Guid, NativeArray_1_System_Guid__get_Item, (NativeArray_1_System_Guid_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_System_Guid__get_Length, (NativeArray_1_System_Guid_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180B880, void, NativeArray_1_System_Guid__set_Item, (NativeArray_1_System_Guid_ * __this, int32_t index, Guid value, MethodInfo * method)); +DO_APP_FUNC(0x01809B50, void, NativeArray_1_System_Int32___ctor, (NativeArray_1_System_Int32_ * __this, Int32__Array * array, Allocator__Enum allocator, MethodInfo * method)); +DO_APP_FUNC(0x01809A50, void, NativeArray_1_System_Int32___ctor_1, (NativeArray_1_System_Int32_ * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); +DO_APP_FUNC(0x01809C50, void, NativeArray_1_System_Int32__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_System_Int32_ * array, MethodInfo * method)); DO_APP_FUNC(0x0180A3F0, void, NativeArray_1_System_Int32__Copy, (NativeArray_1_System_Int32_ src, NativeArray_1_System_Int32_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A4B0, void, NativeArray_1_System_Int32__Copy_1, (Int32__Array * src, NativeArray_1_System_Int32_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A560, void, NativeArray_1_System_Int32__Copy_2, (NativeArray_1_System_Int32_ src, NativeArray_1_System_Int32_ dst, int32_t length, MethodInfo * method)); @@ -176338,22 +194146,23 @@ DO_APP_FUNC(0x0180A620, void, NativeArray_1_System_Int32__Copy_3, (NativeArray_1 DO_APP_FUNC(0x0180A6D0, void, NativeArray_1_System_Int32__Copy_4, (NativeArray_1_System_Int32_ src, int32_t srcIndex, NativeArray_1_System_Int32_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A990, void, NativeArray_1_System_Int32__Copy_5, (NativeArray_1_System_Int32_ src, int32_t srcIndex, Int32__Array * dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A820, void, NativeArray_1_System_Int32__Copy_6, (Int32__Array * src, int32_t srcIndex, NativeArray_1_System_Int32_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01809FE0, void, NativeArray_1_System_Int32__CopyFrom, (NativeArray_1_System_Int32___Boxed * __this, NativeArray_1_System_Int32_ array, MethodInfo * method)); -DO_APP_FUNC(0x0180C8E0, void, NativeArray_1_System_Int32__Dispose, (NativeArray_1_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_System_Int32__Equals, (NativeArray_1_System_Int32___Boxed * __this, NativeArray_1_System_Int32_ other, MethodInfo * method)); -DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_System_Int32__Equals_1, (NativeArray_1_System_Int32___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0180BD80, NativeArray_1_T_Enumerator_System_Int32_, NativeArray_1_System_Int32__GetEnumerator, (NativeArray_1_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_System_Int32__GetHashCode, (NativeArray_1_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180BDE0, IEnumerator_1_System_Int32_ *, NativeArray_1_System_Int32__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180BE80, IEnumerator *, NativeArray_1_System_Int32__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A070, Int32__Array *, NativeArray_1_System_Int32__ToArray, (NativeArray_1_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_System_Int32__get_IsCreated, (NativeArray_1_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180AB10, int32_t, NativeArray_1_System_Int32__get_Item, (NativeArray_1_System_Int32___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_System_Int32__get_Length, (NativeArray_1_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180C840, void, NativeArray_1_System_Int32__set_Item, (NativeArray_1_System_Int32___Boxed * __this, int32_t index, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x01809B50, void, NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI___ctor, (NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI___Boxed * __this, LightDataGI__Array * array, Allocator__Enum allocator, MethodInfo * method)); -DO_APP_FUNC(0x01809A50, void, NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI___ctor_1, (NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI___Boxed * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); -DO_APP_FUNC(0x01809C50, void, NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI_ array, MethodInfo * method)); +DO_APP_FUNC(0x01809FE0, void, NativeArray_1_System_Int32__CopyFrom, (NativeArray_1_System_Int32_ * __this, NativeArray_1_System_Int32_ array, MethodInfo * method)); +DO_APP_FUNC(0x0180C8E0, void, NativeArray_1_System_Int32__Dispose, (NativeArray_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D0C8, NativeArray_1_System_Int32__Dispose__MethodInfo); +DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_System_Int32__Equals, (NativeArray_1_System_Int32_ * __this, NativeArray_1_System_Int32_ other, MethodInfo * method)); +DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_System_Int32__Equals_1, (NativeArray_1_System_Int32_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x0180BD80, NativeArray_1_T_Enumerator_System_Int32_, NativeArray_1_System_Int32__GetEnumerator, (NativeArray_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_System_Int32__GetHashCode, (NativeArray_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180BDE0, IEnumerator_1_System_Int32_ *, NativeArray_1_System_Int32__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180BE80, IEnumerator *, NativeArray_1_System_Int32__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A070, Int32__Array *, NativeArray_1_System_Int32__ToArray, (NativeArray_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_System_Int32__get_IsCreated, (NativeArray_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180AB10, int32_t, NativeArray_1_System_Int32__get_Item, (NativeArray_1_System_Int32_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_System_Int32__get_Length, (NativeArray_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180C840, void, NativeArray_1_System_Int32__set_Item, (NativeArray_1_System_Int32_ * __this, int32_t index, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x01809B50, void, NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI___ctor, (NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI_ * __this, LightDataGI__Array * array, Allocator__Enum allocator, MethodInfo * method)); +DO_APP_FUNC(0x01809A50, void, NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI___ctor_1, (NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI_ * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); +DO_APP_FUNC(0x01809C50, void, NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI_ * array, MethodInfo * method)); DO_APP_FUNC(0x0180A3F0, void, NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI__Copy, (NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI_ src, NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A4B0, void, NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI__Copy_1, (LightDataGI__Array * src, NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A560, void, NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI__Copy_2, (NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI_ src, NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI_ dst, int32_t length, MethodInfo * method)); @@ -176361,22 +194170,23 @@ DO_APP_FUNC(0x0180A620, void, NativeArray_1_UnityEngine_Experimental_GlobalIllum DO_APP_FUNC(0x0180A6D0, void, NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI__Copy_4, (NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI_ src, int32_t srcIndex, NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A990, void, NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI__Copy_5, (NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI_ src, int32_t srcIndex, LightDataGI__Array * dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A820, void, NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI__Copy_6, (LightDataGI__Array * src, int32_t srcIndex, NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01809FE0, void, NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI__CopyFrom, (NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI___Boxed * __this, NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI_ array, MethodInfo * method)); -DO_APP_FUNC(0x0180CB80, void, NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI__Dispose, (NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI__Equals, (NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI___Boxed * __this, NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI_ other, MethodInfo * method)); -DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI__Equals_1, (NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0180CC60, NativeArray_1_T_Enumerator_UnityEngine_Experimental_GlobalIllumination_LightDataGI_, NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI__GetEnumerator, (NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI__GetHashCode, (NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180CD60, IEnumerator_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI_ *, NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180CE80, IEnumerator *, NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A070, LightDataGI__Array *, NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI__ToArray, (NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI__get_IsCreated, (NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180C9C0, LightDataGI, NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI__get_Item, (NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI__get_Length, (NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180CAB0, void, NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI__set_Item, (NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI___Boxed * __this, int32_t index, LightDataGI value, MethodInfo * method)); -DO_APP_FUNC(0x01809B50, void, NativeArray_1_UnityEngine_ModifiableContactPair___ctor, (NativeArray_1_UnityEngine_ModifiableContactPair___Boxed * __this, ModifiableContactPair__Array * array, Allocator__Enum allocator, MethodInfo * method)); -DO_APP_FUNC(0x01809A50, void, NativeArray_1_UnityEngine_ModifiableContactPair___ctor_1, (NativeArray_1_UnityEngine_ModifiableContactPair___Boxed * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); -DO_APP_FUNC(0x01809C50, void, NativeArray_1_UnityEngine_ModifiableContactPair__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_UnityEngine_ModifiableContactPair_ array, MethodInfo * method)); +DO_APP_FUNC(0x01809FE0, void, NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI__CopyFrom, (NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI_ * __this, NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI_ array, MethodInfo * method)); +DO_APP_FUNC(0x0180CB80, void, NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI__Dispose, (NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D0B8, NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI__Dispose__MethodInfo); +DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI__Equals, (NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI_ * __this, NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI_ other, MethodInfo * method)); +DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI__Equals_1, (NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x0180CC60, NativeArray_1_T_Enumerator_UnityEngine_Experimental_GlobalIllumination_LightDataGI_, NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI__GetEnumerator, (NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI__GetHashCode, (NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180CD60, IEnumerator_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI_ *, NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180CE80, IEnumerator *, NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A070, LightDataGI__Array *, NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI__ToArray, (NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI__get_IsCreated, (NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180C9C0, LightDataGI, NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI__get_Item, (NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI__get_Length, (NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180CAB0, void, NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI__set_Item, (NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI_ * __this, int32_t index, LightDataGI value, MethodInfo * method)); +DO_APP_FUNC(0x01809B50, void, NativeArray_1_UnityEngine_ModifiableContactPair___ctor, (NativeArray_1_UnityEngine_ModifiableContactPair_ * __this, ModifiableContactPair__Array * array, Allocator__Enum allocator, MethodInfo * method)); +DO_APP_FUNC(0x01809A50, void, NativeArray_1_UnityEngine_ModifiableContactPair___ctor_1, (NativeArray_1_UnityEngine_ModifiableContactPair_ * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); +DO_APP_FUNC(0x01809C50, void, NativeArray_1_UnityEngine_ModifiableContactPair__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_UnityEngine_ModifiableContactPair_ * array, MethodInfo * method)); DO_APP_FUNC(0x0180A3F0, void, NativeArray_1_UnityEngine_ModifiableContactPair__Copy, (NativeArray_1_UnityEngine_ModifiableContactPair_ src, NativeArray_1_UnityEngine_ModifiableContactPair_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A4B0, void, NativeArray_1_UnityEngine_ModifiableContactPair__Copy_1, (ModifiableContactPair__Array * src, NativeArray_1_UnityEngine_ModifiableContactPair_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A560, void, NativeArray_1_UnityEngine_ModifiableContactPair__Copy_2, (NativeArray_1_UnityEngine_ModifiableContactPair_ src, NativeArray_1_UnityEngine_ModifiableContactPair_ dst, int32_t length, MethodInfo * method)); @@ -176384,23 +194194,24 @@ DO_APP_FUNC(0x0180A620, void, NativeArray_1_UnityEngine_ModifiableContactPair__C DO_APP_FUNC(0x0180A6D0, void, NativeArray_1_UnityEngine_ModifiableContactPair__Copy_4, (NativeArray_1_UnityEngine_ModifiableContactPair_ src, int32_t srcIndex, NativeArray_1_UnityEngine_ModifiableContactPair_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A990, void, NativeArray_1_UnityEngine_ModifiableContactPair__Copy_5, (NativeArray_1_UnityEngine_ModifiableContactPair_ src, int32_t srcIndex, ModifiableContactPair__Array * dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A820, void, NativeArray_1_UnityEngine_ModifiableContactPair__Copy_6, (ModifiableContactPair__Array * src, int32_t srcIndex, NativeArray_1_UnityEngine_ModifiableContactPair_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01809FE0, void, NativeArray_1_UnityEngine_ModifiableContactPair__CopyFrom, (NativeArray_1_UnityEngine_ModifiableContactPair___Boxed * __this, NativeArray_1_UnityEngine_ModifiableContactPair_ array, MethodInfo * method)); -DO_APP_FUNC(0x0180CF70, void, NativeArray_1_UnityEngine_ModifiableContactPair__Dispose, (NativeArray_1_UnityEngine_ModifiableContactPair___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_UnityEngine_ModifiableContactPair__Equals, (NativeArray_1_UnityEngine_ModifiableContactPair___Boxed * __this, NativeArray_1_UnityEngine_ModifiableContactPair_ other, MethodInfo * method)); -DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_UnityEngine_ModifiableContactPair__Equals_1, (NativeArray_1_UnityEngine_ModifiableContactPair___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0180B190, NativeArray_1_T_Enumerator_UnityEngine_ModifiableContactPair_, NativeArray_1_UnityEngine_ModifiableContactPair__GetEnumerator, (NativeArray_1_UnityEngine_ModifiableContactPair___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_UnityEngine_ModifiableContactPair__GetHashCode, (NativeArray_1_UnityEngine_ModifiableContactPair___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180B290, IEnumerator_1_UnityEngine_ModifiableContactPair_ *, NativeArray_1_UnityEngine_ModifiableContactPair__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_UnityEngine_ModifiableContactPair___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180B3B0, IEnumerator *, NativeArray_1_UnityEngine_ModifiableContactPair__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_UnityEngine_ModifiableContactPair___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A070, ModifiableContactPair__Array *, NativeArray_1_UnityEngine_ModifiableContactPair__ToArray, (NativeArray_1_UnityEngine_ModifiableContactPair___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_UnityEngine_ModifiableContactPair__get_IsCreated, (NativeArray_1_UnityEngine_ModifiableContactPair___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180AED0, ModifiableContactPair, NativeArray_1_UnityEngine_ModifiableContactPair__get_Item, (NativeArray_1_UnityEngine_ModifiableContactPair___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_UnityEngine_ModifiableContactPair__get_Length, (NativeArray_1_UnityEngine_ModifiableContactPair___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180AFD0, void, NativeArray_1_UnityEngine_ModifiableContactPair__set_Item, (NativeArray_1_UnityEngine_ModifiableContactPair___Boxed * __this, int32_t index, ModifiableContactPair value, MethodInfo * method)); -DO_APP_FUNC(0x01809B50, void, NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor___ctor, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor___Boxed * __this, NativeAnchor__Array * array, Allocator__Enum allocator, MethodInfo * method)); -DO_APP_FUNC(0x01809A50, void, NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor___ctor_1, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor___Boxed * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); +DO_APP_FUNC(0x01809FE0, void, NativeArray_1_UnityEngine_ModifiableContactPair__CopyFrom, (NativeArray_1_UnityEngine_ModifiableContactPair_ * __this, NativeArray_1_UnityEngine_ModifiableContactPair_ array, MethodInfo * method)); +DO_APP_FUNC(0x0180CF70, void, NativeArray_1_UnityEngine_ModifiableContactPair__Dispose, (NativeArray_1_UnityEngine_ModifiableContactPair_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D0A8, NativeArray_1_UnityEngine_ModifiableContactPair__Dispose__MethodInfo); +DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_UnityEngine_ModifiableContactPair__Equals, (NativeArray_1_UnityEngine_ModifiableContactPair_ * __this, NativeArray_1_UnityEngine_ModifiableContactPair_ other, MethodInfo * method)); +DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_UnityEngine_ModifiableContactPair__Equals_1, (NativeArray_1_UnityEngine_ModifiableContactPair_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x0180B190, NativeArray_1_T_Enumerator_UnityEngine_ModifiableContactPair_, NativeArray_1_UnityEngine_ModifiableContactPair__GetEnumerator, (NativeArray_1_UnityEngine_ModifiableContactPair_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_UnityEngine_ModifiableContactPair__GetHashCode, (NativeArray_1_UnityEngine_ModifiableContactPair_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180B290, IEnumerator_1_UnityEngine_ModifiableContactPair_ *, NativeArray_1_UnityEngine_ModifiableContactPair__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_UnityEngine_ModifiableContactPair_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180B3B0, IEnumerator *, NativeArray_1_UnityEngine_ModifiableContactPair__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_UnityEngine_ModifiableContactPair_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A070, ModifiableContactPair__Array *, NativeArray_1_UnityEngine_ModifiableContactPair__ToArray, (NativeArray_1_UnityEngine_ModifiableContactPair_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_UnityEngine_ModifiableContactPair__get_IsCreated, (NativeArray_1_UnityEngine_ModifiableContactPair_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180AED0, ModifiableContactPair, NativeArray_1_UnityEngine_ModifiableContactPair__get_Item, (NativeArray_1_UnityEngine_ModifiableContactPair_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_UnityEngine_ModifiableContactPair__get_Length, (NativeArray_1_UnityEngine_ModifiableContactPair_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180AFD0, void, NativeArray_1_UnityEngine_ModifiableContactPair__set_Item, (NativeArray_1_UnityEngine_ModifiableContactPair_ * __this, int32_t index, ModifiableContactPair value, MethodInfo * method)); +DO_APP_FUNC(0x01809B50, void, NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor___ctor, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor_ * __this, NativeAnchor__Array * array, Allocator__Enum allocator, MethodInfo * method)); +DO_APP_FUNC(0x01809A50, void, NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor___ctor_1, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor_ * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8E230, NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor___ctor_1__MethodInfo); -DO_APP_FUNC(0x01809C50, void, NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor_ array, MethodInfo * method)); +DO_APP_FUNC(0x01809C50, void, NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor_ * array, MethodInfo * method)); DO_APP_FUNC(0x0180A3F0, void, NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor__Copy, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor_ src, NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A4B0, void, NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor__Copy_1, (NativeAnchor__Array * src, NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A560, void, NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor__Copy_2, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor_ src, NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor_ dst, int32_t length, MethodInfo * method)); @@ -176408,23 +194219,24 @@ DO_APP_FUNC(0x0180A620, void, NativeArray_1_Microsoft_MixedReality_OpenXR_Native DO_APP_FUNC(0x0180A6D0, void, NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor__Copy_4, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor_ src, int32_t srcIndex, NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A990, void, NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor__Copy_5, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor_ src, int32_t srcIndex, NativeAnchor__Array * dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A820, void, NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor__Copy_6, (NativeAnchor__Array * src, int32_t srcIndex, NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01809FE0, void, NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor__CopyFrom, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor___Boxed * __this, NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor_ array, MethodInfo * method)); -DO_APP_FUNC(0x0180D1E0, void, NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor__Dispose, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor__Equals, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor___Boxed * __this, NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor_ other, MethodInfo * method)); -DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor__Equals_1, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0180D2C0, NativeArray_1_T_Enumerator_Microsoft_MixedReality_OpenXR_NativeAnchor_, NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor__GetEnumerator, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor__GetHashCode, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180D370, IEnumerator_1_Microsoft_MixedReality_OpenXR_NativeAnchor_ *, NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180D460, IEnumerator *, NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A070, NativeAnchor__Array *, NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor__ToArray, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor__get_IsCreated, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180D050, NativeAnchor, NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor__get_Item, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor__get_Length, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180D120, void, NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor__set_Item, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor___Boxed * __this, int32_t index, NativeAnchor value, MethodInfo * method)); -DO_APP_FUNC(0x01809B50, void, NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane___ctor, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane___Boxed * __this, NativePlane__Array * array, Allocator__Enum allocator, MethodInfo * method)); -DO_APP_FUNC(0x01809A50, void, NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane___ctor_1, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane___Boxed * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); +DO_APP_FUNC(0x01809FE0, void, NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor__CopyFrom, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor_ * __this, NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor_ array, MethodInfo * method)); +DO_APP_FUNC(0x0180D1E0, void, NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor__Dispose, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D0F8, NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor__Dispose__MethodInfo); +DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor__Equals, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor_ * __this, NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor_ other, MethodInfo * method)); +DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor__Equals_1, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x0180D2C0, NativeArray_1_T_Enumerator_Microsoft_MixedReality_OpenXR_NativeAnchor_, NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor__GetEnumerator, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor__GetHashCode, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180D370, IEnumerator_1_Microsoft_MixedReality_OpenXR_NativeAnchor_ *, NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180D460, IEnumerator *, NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A070, NativeAnchor__Array *, NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor__ToArray, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor__get_IsCreated, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180D050, NativeAnchor, NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor__get_Item, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor__get_Length, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180D120, void, NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor__set_Item, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor_ * __this, int32_t index, NativeAnchor value, MethodInfo * method)); +DO_APP_FUNC(0x01809B50, void, NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane___ctor, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane_ * __this, NativePlane__Array * array, Allocator__Enum allocator, MethodInfo * method)); +DO_APP_FUNC(0x01809A50, void, NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane___ctor_1, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane_ * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8DF00, NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane___ctor_1__MethodInfo); -DO_APP_FUNC(0x01809C50, void, NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane_ array, MethodInfo * method)); +DO_APP_FUNC(0x01809C50, void, NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane_ * array, MethodInfo * method)); DO_APP_FUNC(0x0180A3F0, void, NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane__Copy, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane_ src, NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A4B0, void, NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane__Copy_1, (NativePlane__Array * src, NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A560, void, NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane__Copy_2, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane_ src, NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane_ dst, int32_t length, MethodInfo * method)); @@ -176432,22 +194244,23 @@ DO_APP_FUNC(0x0180A620, void, NativeArray_1_Microsoft_MixedReality_OpenXR_Native DO_APP_FUNC(0x0180A6D0, void, NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane__Copy_4, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane_ src, int32_t srcIndex, NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A990, void, NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane__Copy_5, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane_ src, int32_t srcIndex, NativePlane__Array * dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A820, void, NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane__Copy_6, (NativePlane__Array * src, int32_t srcIndex, NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01809FE0, void, NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane__CopyFrom, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane___Boxed * __this, NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane_ array, MethodInfo * method)); -DO_APP_FUNC(0x0180D6C0, void, NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane__Dispose, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane__Equals, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane___Boxed * __this, NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane_ other, MethodInfo * method)); -DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane__Equals_1, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0180D7A0, NativeArray_1_T_Enumerator_Microsoft_MixedReality_OpenXR_NativePlane_, NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane__GetEnumerator, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane__GetHashCode, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180D850, IEnumerator_1_Microsoft_MixedReality_OpenXR_NativePlane_ *, NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180D940, IEnumerator *, NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A070, NativePlane__Array *, NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane__ToArray, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane__get_IsCreated, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180D520, NativePlane, NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane__get_Item, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane__get_Length, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180D600, void, NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane__set_Item, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane___Boxed * __this, int32_t index, NativePlane value, MethodInfo * method)); -DO_APP_FUNC(0x01809B50, void, NativeArray_1_UnityEngine_Plane___ctor, (NativeArray_1_UnityEngine_Plane___Boxed * __this, Plane__Array * array, Allocator__Enum allocator, MethodInfo * method)); -DO_APP_FUNC(0x01809A50, void, NativeArray_1_UnityEngine_Plane___ctor_1, (NativeArray_1_UnityEngine_Plane___Boxed * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); -DO_APP_FUNC(0x01809C50, void, NativeArray_1_UnityEngine_Plane__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_UnityEngine_Plane_ array, MethodInfo * method)); +DO_APP_FUNC(0x01809FE0, void, NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane__CopyFrom, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane_ * __this, NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane_ array, MethodInfo * method)); +DO_APP_FUNC(0x0180D6C0, void, NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane__Dispose, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D0F0, NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane__Dispose__MethodInfo); +DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane__Equals, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane_ * __this, NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane_ other, MethodInfo * method)); +DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane__Equals_1, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x0180D7A0, NativeArray_1_T_Enumerator_Microsoft_MixedReality_OpenXR_NativePlane_, NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane__GetEnumerator, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane__GetHashCode, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180D850, IEnumerator_1_Microsoft_MixedReality_OpenXR_NativePlane_ *, NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180D940, IEnumerator *, NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A070, NativePlane__Array *, NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane__ToArray, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane__get_IsCreated, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180D520, NativePlane, NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane__get_Item, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane__get_Length, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180D600, void, NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane__set_Item, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane_ * __this, int32_t index, NativePlane value, MethodInfo * method)); +DO_APP_FUNC(0x01809B50, void, NativeArray_1_UnityEngine_Plane___ctor, (NativeArray_1_UnityEngine_Plane_ * __this, Plane__Array * array, Allocator__Enum allocator, MethodInfo * method)); +DO_APP_FUNC(0x01809A50, void, NativeArray_1_UnityEngine_Plane___ctor_1, (NativeArray_1_UnityEngine_Plane_ * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); +DO_APP_FUNC(0x01809C50, void, NativeArray_1_UnityEngine_Plane__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_UnityEngine_Plane_ * array, MethodInfo * method)); DO_APP_FUNC(0x0180A3F0, void, NativeArray_1_UnityEngine_Plane__Copy, (NativeArray_1_UnityEngine_Plane_ src, NativeArray_1_UnityEngine_Plane_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A4B0, void, NativeArray_1_UnityEngine_Plane__Copy_1, (Plane__Array * src, NativeArray_1_UnityEngine_Plane_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A560, void, NativeArray_1_UnityEngine_Plane__Copy_2, (NativeArray_1_UnityEngine_Plane_ src, NativeArray_1_UnityEngine_Plane_ dst, int32_t length, MethodInfo * method)); @@ -176455,22 +194268,24 @@ DO_APP_FUNC(0x0180A620, void, NativeArray_1_UnityEngine_Plane__Copy_3, (NativeAr DO_APP_FUNC(0x0180A6D0, void, NativeArray_1_UnityEngine_Plane__Copy_4, (NativeArray_1_UnityEngine_Plane_ src, int32_t srcIndex, NativeArray_1_UnityEngine_Plane_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A990, void, NativeArray_1_UnityEngine_Plane__Copy_5, (NativeArray_1_UnityEngine_Plane_ src, int32_t srcIndex, Plane__Array * dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A820, void, NativeArray_1_UnityEngine_Plane__Copy_6, (Plane__Array * src, int32_t srcIndex, NativeArray_1_UnityEngine_Plane_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01809FE0, void, NativeArray_1_UnityEngine_Plane__CopyFrom, (NativeArray_1_UnityEngine_Plane___Boxed * __this, NativeArray_1_UnityEngine_Plane_ array, MethodInfo * method)); -DO_APP_FUNC(0x0180DA00, void, NativeArray_1_UnityEngine_Plane__Dispose, (NativeArray_1_UnityEngine_Plane___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_UnityEngine_Plane__Equals, (NativeArray_1_UnityEngine_Plane___Boxed * __this, NativeArray_1_UnityEngine_Plane_ other, MethodInfo * method)); -DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_UnityEngine_Plane__Equals_1, (NativeArray_1_UnityEngine_Plane___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0180BA00, NativeArray_1_T_Enumerator_UnityEngine_Plane_, NativeArray_1_UnityEngine_Plane__GetEnumerator, (NativeArray_1_UnityEngine_Plane___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_UnityEngine_Plane__GetHashCode, (NativeArray_1_UnityEngine_Plane___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180BA80, IEnumerator_1_UnityEngine_Plane_ *, NativeArray_1_UnityEngine_Plane__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_UnityEngine_Plane___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180BB30, IEnumerator *, NativeArray_1_UnityEngine_Plane__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_UnityEngine_Plane___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A070, Plane__Array *, NativeArray_1_UnityEngine_Plane__ToArray, (NativeArray_1_UnityEngine_Plane___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_UnityEngine_Plane__get_IsCreated, (NativeArray_1_UnityEngine_Plane___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180B7D0, Plane, NativeArray_1_UnityEngine_Plane__get_Item, (NativeArray_1_UnityEngine_Plane___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_UnityEngine_Plane__get_Length, (NativeArray_1_UnityEngine_Plane___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180B880, void, NativeArray_1_UnityEngine_Plane__set_Item, (NativeArray_1_UnityEngine_Plane___Boxed * __this, int32_t index, Plane value, MethodInfo * method)); -DO_APP_FUNC(0x01809B50, void, NativeArray_1_UnityEngine_UIElements_TextVertex___ctor, (NativeArray_1_UnityEngine_UIElements_TextVertex___Boxed * __this, TextVertex_1__Array * array, Allocator__Enum allocator, MethodInfo * method)); -DO_APP_FUNC(0x01809A50, void, NativeArray_1_UnityEngine_UIElements_TextVertex___ctor_1, (NativeArray_1_UnityEngine_UIElements_TextVertex___Boxed * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); -DO_APP_FUNC(0x01809C50, void, NativeArray_1_UnityEngine_UIElements_TextVertex__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_UnityEngine_UIElements_TextVertex_ array, MethodInfo * method)); +DO_APP_FUNC(0x01809FE0, void, NativeArray_1_UnityEngine_Plane__CopyFrom, (NativeArray_1_UnityEngine_Plane_ * __this, NativeArray_1_UnityEngine_Plane_ array, MethodInfo * method)); +DO_APP_FUNC(0x0180DA00, void, NativeArray_1_UnityEngine_Plane__Dispose, (NativeArray_1_UnityEngine_Plane_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D0E8, NativeArray_1_UnityEngine_Plane__Dispose__MethodInfo); +DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_UnityEngine_Plane__Equals, (NativeArray_1_UnityEngine_Plane_ * __this, NativeArray_1_UnityEngine_Plane_ other, MethodInfo * method)); +DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_UnityEngine_Plane__Equals_1, (NativeArray_1_UnityEngine_Plane_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x0180BA00, NativeArray_1_T_Enumerator_UnityEngine_Plane_, NativeArray_1_UnityEngine_Plane__GetEnumerator, (NativeArray_1_UnityEngine_Plane_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_UnityEngine_Plane__GetHashCode, (NativeArray_1_UnityEngine_Plane_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180BA80, IEnumerator_1_UnityEngine_Plane_ *, NativeArray_1_UnityEngine_Plane__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_UnityEngine_Plane_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180BB30, IEnumerator *, NativeArray_1_UnityEngine_Plane__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_UnityEngine_Plane_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A070, Plane__Array *, NativeArray_1_UnityEngine_Plane__ToArray, (NativeArray_1_UnityEngine_Plane_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_UnityEngine_Plane__get_IsCreated, (NativeArray_1_UnityEngine_Plane_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180B7D0, Plane, NativeArray_1_UnityEngine_Plane__get_Item, (NativeArray_1_UnityEngine_Plane_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_UnityEngine_Plane__get_Length, (NativeArray_1_UnityEngine_Plane_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180B880, void, NativeArray_1_UnityEngine_Plane__set_Item, (NativeArray_1_UnityEngine_Plane_ * __this, int32_t index, Plane value, MethodInfo * method)); +DO_APP_FUNC(0x01809B50, void, NativeArray_1_UnityEngine_UIElements_TextVertex___ctor, (NativeArray_1_UnityEngine_UIElements_TextVertex_ * __this, TextVertex_1__Array * array, Allocator__Enum allocator, MethodInfo * method)); +DO_APP_FUNC(0x01809A50, void, NativeArray_1_UnityEngine_UIElements_TextVertex___ctor_1, (NativeArray_1_UnityEngine_UIElements_TextVertex_ * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC710, NativeArray_1_UnityEngine_UIElements_TextVertex___ctor_1__MethodInfo); +DO_APP_FUNC(0x01809C50, void, NativeArray_1_UnityEngine_UIElements_TextVertex__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_UnityEngine_UIElements_TextVertex_ * array, MethodInfo * method)); DO_APP_FUNC(0x0180A3F0, void, NativeArray_1_UnityEngine_UIElements_TextVertex__Copy, (NativeArray_1_UnityEngine_UIElements_TextVertex_ src, NativeArray_1_UnityEngine_UIElements_TextVertex_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A4B0, void, NativeArray_1_UnityEngine_UIElements_TextVertex__Copy_1, (TextVertex_1__Array * src, NativeArray_1_UnityEngine_UIElements_TextVertex_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A560, void, NativeArray_1_UnityEngine_UIElements_TextVertex__Copy_2, (NativeArray_1_UnityEngine_UIElements_TextVertex_ src, NativeArray_1_UnityEngine_UIElements_TextVertex_ dst, int32_t length, MethodInfo * method)); @@ -176478,22 +194293,23 @@ DO_APP_FUNC(0x0180A620, void, NativeArray_1_UnityEngine_UIElements_TextVertex__C DO_APP_FUNC(0x0180A6D0, void, NativeArray_1_UnityEngine_UIElements_TextVertex__Copy_4, (NativeArray_1_UnityEngine_UIElements_TextVertex_ src, int32_t srcIndex, NativeArray_1_UnityEngine_UIElements_TextVertex_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A990, void, NativeArray_1_UnityEngine_UIElements_TextVertex__Copy_5, (NativeArray_1_UnityEngine_UIElements_TextVertex_ src, int32_t srcIndex, TextVertex_1__Array * dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A820, void, NativeArray_1_UnityEngine_UIElements_TextVertex__Copy_6, (TextVertex_1__Array * src, int32_t srcIndex, NativeArray_1_UnityEngine_UIElements_TextVertex_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01809FE0, void, NativeArray_1_UnityEngine_UIElements_TextVertex__CopyFrom, (NativeArray_1_UnityEngine_UIElements_TextVertex___Boxed * __this, NativeArray_1_UnityEngine_UIElements_TextVertex_ array, MethodInfo * method)); -DO_APP_FUNC(0x0180DAE0, void, NativeArray_1_UnityEngine_UIElements_TextVertex__Dispose, (NativeArray_1_UnityEngine_UIElements_TextVertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_UnityEngine_UIElements_TextVertex__Equals, (NativeArray_1_UnityEngine_UIElements_TextVertex___Boxed * __this, NativeArray_1_UnityEngine_UIElements_TextVertex_ other, MethodInfo * method)); -DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_UnityEngine_UIElements_TextVertex__Equals_1, (NativeArray_1_UnityEngine_UIElements_TextVertex___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0180DBC0, NativeArray_1_T_Enumerator_UnityEngine_UIElements_TextVertex_, NativeArray_1_UnityEngine_UIElements_TextVertex__GetEnumerator, (NativeArray_1_UnityEngine_UIElements_TextVertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_UnityEngine_UIElements_TextVertex__GetHashCode, (NativeArray_1_UnityEngine_UIElements_TextVertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180DC40, IEnumerator_1_UnityEngine_UIElements_TextVertex_ *, NativeArray_1_UnityEngine_UIElements_TextVertex__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_UnityEngine_UIElements_TextVertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180DD00, IEnumerator *, NativeArray_1_UnityEngine_UIElements_TextVertex__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_UnityEngine_UIElements_TextVertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A070, TextVertex_1__Array *, NativeArray_1_UnityEngine_UIElements_TextVertex__ToArray, (NativeArray_1_UnityEngine_UIElements_TextVertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_UnityEngine_UIElements_TextVertex__get_IsCreated, (NativeArray_1_UnityEngine_UIElements_TextVertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180BF40, TextVertex_1, NativeArray_1_UnityEngine_UIElements_TextVertex__get_Item, (NativeArray_1_UnityEngine_UIElements_TextVertex___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_UnityEngine_UIElements_TextVertex__get_Length, (NativeArray_1_UnityEngine_UIElements_TextVertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180C000, void, NativeArray_1_UnityEngine_UIElements_TextVertex__set_Item, (NativeArray_1_UnityEngine_UIElements_TextVertex___Boxed * __this, int32_t index, TextVertex_1 value, MethodInfo * method)); -DO_APP_FUNC(0x01809B50, void, NativeArray_1_UnityEngine_Tilemaps_TileData___ctor, (NativeArray_1_UnityEngine_Tilemaps_TileData___Boxed * __this, TileData__Array * array, Allocator__Enum allocator, MethodInfo * method)); -DO_APP_FUNC(0x01809A50, void, NativeArray_1_UnityEngine_Tilemaps_TileData___ctor_1, (NativeArray_1_UnityEngine_Tilemaps_TileData___Boxed * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); -DO_APP_FUNC(0x01809C50, void, NativeArray_1_UnityEngine_Tilemaps_TileData__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_UnityEngine_Tilemaps_TileData_ array, MethodInfo * method)); +DO_APP_FUNC(0x01809FE0, void, NativeArray_1_UnityEngine_UIElements_TextVertex__CopyFrom, (NativeArray_1_UnityEngine_UIElements_TextVertex_ * __this, NativeArray_1_UnityEngine_UIElements_TextVertex_ array, MethodInfo * method)); +DO_APP_FUNC(0x0180DAE0, void, NativeArray_1_UnityEngine_UIElements_TextVertex__Dispose, (NativeArray_1_UnityEngine_UIElements_TextVertex_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D0E0, NativeArray_1_UnityEngine_UIElements_TextVertex__Dispose__MethodInfo); +DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_UnityEngine_UIElements_TextVertex__Equals, (NativeArray_1_UnityEngine_UIElements_TextVertex_ * __this, NativeArray_1_UnityEngine_UIElements_TextVertex_ other, MethodInfo * method)); +DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_UnityEngine_UIElements_TextVertex__Equals_1, (NativeArray_1_UnityEngine_UIElements_TextVertex_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x0180DBC0, NativeArray_1_T_Enumerator_UnityEngine_UIElements_TextVertex_, NativeArray_1_UnityEngine_UIElements_TextVertex__GetEnumerator, (NativeArray_1_UnityEngine_UIElements_TextVertex_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_UnityEngine_UIElements_TextVertex__GetHashCode, (NativeArray_1_UnityEngine_UIElements_TextVertex_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180DC40, IEnumerator_1_UnityEngine_UIElements_TextVertex_ *, NativeArray_1_UnityEngine_UIElements_TextVertex__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_UnityEngine_UIElements_TextVertex_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180DD00, IEnumerator *, NativeArray_1_UnityEngine_UIElements_TextVertex__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_UnityEngine_UIElements_TextVertex_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A070, TextVertex_1__Array *, NativeArray_1_UnityEngine_UIElements_TextVertex__ToArray, (NativeArray_1_UnityEngine_UIElements_TextVertex_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_UnityEngine_UIElements_TextVertex__get_IsCreated, (NativeArray_1_UnityEngine_UIElements_TextVertex_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180BF40, TextVertex_1, NativeArray_1_UnityEngine_UIElements_TextVertex__get_Item, (NativeArray_1_UnityEngine_UIElements_TextVertex_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_UnityEngine_UIElements_TextVertex__get_Length, (NativeArray_1_UnityEngine_UIElements_TextVertex_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180C000, void, NativeArray_1_UnityEngine_UIElements_TextVertex__set_Item, (NativeArray_1_UnityEngine_UIElements_TextVertex_ * __this, int32_t index, TextVertex_1 value, MethodInfo * method)); +DO_APP_FUNC(0x01809B50, void, NativeArray_1_UnityEngine_Tilemaps_TileData___ctor, (NativeArray_1_UnityEngine_Tilemaps_TileData_ * __this, TileData__Array * array, Allocator__Enum allocator, MethodInfo * method)); +DO_APP_FUNC(0x01809A50, void, NativeArray_1_UnityEngine_Tilemaps_TileData___ctor_1, (NativeArray_1_UnityEngine_Tilemaps_TileData_ * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); +DO_APP_FUNC(0x01809C50, void, NativeArray_1_UnityEngine_Tilemaps_TileData__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_UnityEngine_Tilemaps_TileData_ * array, MethodInfo * method)); DO_APP_FUNC(0x0180A3F0, void, NativeArray_1_UnityEngine_Tilemaps_TileData__Copy, (NativeArray_1_UnityEngine_Tilemaps_TileData_ src, NativeArray_1_UnityEngine_Tilemaps_TileData_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A4B0, void, NativeArray_1_UnityEngine_Tilemaps_TileData__Copy_1, (TileData__Array * src, NativeArray_1_UnityEngine_Tilemaps_TileData_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A560, void, NativeArray_1_UnityEngine_Tilemaps_TileData__Copy_2, (NativeArray_1_UnityEngine_Tilemaps_TileData_ src, NativeArray_1_UnityEngine_Tilemaps_TileData_ dst, int32_t length, MethodInfo * method)); @@ -176501,23 +194317,25 @@ DO_APP_FUNC(0x0180A620, void, NativeArray_1_UnityEngine_Tilemaps_TileData__Copy_ DO_APP_FUNC(0x0180A6D0, void, NativeArray_1_UnityEngine_Tilemaps_TileData__Copy_4, (NativeArray_1_UnityEngine_Tilemaps_TileData_ src, int32_t srcIndex, NativeArray_1_UnityEngine_Tilemaps_TileData_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A990, void, NativeArray_1_UnityEngine_Tilemaps_TileData__Copy_5, (NativeArray_1_UnityEngine_Tilemaps_TileData_ src, int32_t srcIndex, TileData__Array * dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A820, void, NativeArray_1_UnityEngine_Tilemaps_TileData__Copy_6, (TileData__Array * src, int32_t srcIndex, NativeArray_1_UnityEngine_Tilemaps_TileData_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01809FE0, void, NativeArray_1_UnityEngine_Tilemaps_TileData__CopyFrom, (NativeArray_1_UnityEngine_Tilemaps_TileData___Boxed * __this, NativeArray_1_UnityEngine_Tilemaps_TileData_ array, MethodInfo * method)); -DO_APP_FUNC(0x0180DDE0, void, NativeArray_1_UnityEngine_Tilemaps_TileData__Dispose, (NativeArray_1_UnityEngine_Tilemaps_TileData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_UnityEngine_Tilemaps_TileData__Equals, (NativeArray_1_UnityEngine_Tilemaps_TileData___Boxed * __this, NativeArray_1_UnityEngine_Tilemaps_TileData_ other, MethodInfo * method)); -DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_UnityEngine_Tilemaps_TileData__Equals_1, (NativeArray_1_UnityEngine_Tilemaps_TileData___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0180CC60, NativeArray_1_T_Enumerator_UnityEngine_Tilemaps_TileData_, NativeArray_1_UnityEngine_Tilemaps_TileData__GetEnumerator, (NativeArray_1_UnityEngine_Tilemaps_TileData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_UnityEngine_Tilemaps_TileData__GetHashCode, (NativeArray_1_UnityEngine_Tilemaps_TileData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180CD60, IEnumerator_1_UnityEngine_Tilemaps_TileData_ *, NativeArray_1_UnityEngine_Tilemaps_TileData__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_UnityEngine_Tilemaps_TileData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180CE80, IEnumerator *, NativeArray_1_UnityEngine_Tilemaps_TileData__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_UnityEngine_Tilemaps_TileData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A070, TileData__Array *, NativeArray_1_UnityEngine_Tilemaps_TileData__ToArray, (NativeArray_1_UnityEngine_Tilemaps_TileData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_UnityEngine_Tilemaps_TileData__get_IsCreated, (NativeArray_1_UnityEngine_Tilemaps_TileData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180C9C0, TileData, NativeArray_1_UnityEngine_Tilemaps_TileData__get_Item, (NativeArray_1_UnityEngine_Tilemaps_TileData___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_UnityEngine_Tilemaps_TileData__get_Length, (NativeArray_1_UnityEngine_Tilemaps_TileData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180CAB0, void, NativeArray_1_UnityEngine_Tilemaps_TileData__set_Item, (NativeArray_1_UnityEngine_Tilemaps_TileData___Boxed * __this, int32_t index, TileData value, MethodInfo * method)); -DO_APP_FUNC(0x01809B50, void, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId___ctor, (NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId___Boxed * __this, TrackableId__Array * array, Allocator__Enum allocator, MethodInfo * method)); +DO_APP_FUNC(0x01809FE0, void, NativeArray_1_UnityEngine_Tilemaps_TileData__CopyFrom, (NativeArray_1_UnityEngine_Tilemaps_TileData_ * __this, NativeArray_1_UnityEngine_Tilemaps_TileData_ array, MethodInfo * method)); +DO_APP_FUNC(0x0180DDE0, void, NativeArray_1_UnityEngine_Tilemaps_TileData__Dispose, (NativeArray_1_UnityEngine_Tilemaps_TileData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D130, NativeArray_1_UnityEngine_Tilemaps_TileData__Dispose__MethodInfo); +DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_UnityEngine_Tilemaps_TileData__Equals, (NativeArray_1_UnityEngine_Tilemaps_TileData_ * __this, NativeArray_1_UnityEngine_Tilemaps_TileData_ other, MethodInfo * method)); +DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_UnityEngine_Tilemaps_TileData__Equals_1, (NativeArray_1_UnityEngine_Tilemaps_TileData_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x0180CC60, NativeArray_1_T_Enumerator_UnityEngine_Tilemaps_TileData_, NativeArray_1_UnityEngine_Tilemaps_TileData__GetEnumerator, (NativeArray_1_UnityEngine_Tilemaps_TileData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_UnityEngine_Tilemaps_TileData__GetHashCode, (NativeArray_1_UnityEngine_Tilemaps_TileData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180CD60, IEnumerator_1_UnityEngine_Tilemaps_TileData_ *, NativeArray_1_UnityEngine_Tilemaps_TileData__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_UnityEngine_Tilemaps_TileData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180CE80, IEnumerator *, NativeArray_1_UnityEngine_Tilemaps_TileData__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_UnityEngine_Tilemaps_TileData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A070, TileData__Array *, NativeArray_1_UnityEngine_Tilemaps_TileData__ToArray, (NativeArray_1_UnityEngine_Tilemaps_TileData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_UnityEngine_Tilemaps_TileData__get_IsCreated, (NativeArray_1_UnityEngine_Tilemaps_TileData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180C9C0, TileData, NativeArray_1_UnityEngine_Tilemaps_TileData__get_Item, (NativeArray_1_UnityEngine_Tilemaps_TileData_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_UnityEngine_Tilemaps_TileData__get_Length, (NativeArray_1_UnityEngine_Tilemaps_TileData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180CAB0, void, NativeArray_1_UnityEngine_Tilemaps_TileData__set_Item, (NativeArray_1_UnityEngine_Tilemaps_TileData_ * __this, int32_t index, TileData value, MethodInfo * method)); +DO_APP_FUNC(0x01809B50, void, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId___ctor, (NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId_ * __this, TrackableId__Array * array, Allocator__Enum allocator, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8E240, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId___ctor__MethodInfo); -DO_APP_FUNC(0x01809A50, void, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId___ctor_1, (NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId___Boxed * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); -DO_APP_FUNC(0x01809C50, void, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId_ array, MethodInfo * method)); +DO_APP_FUNC(0x01809A50, void, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId___ctor_1, (NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId_ * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB45B8, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId___ctor_1__MethodInfo); +DO_APP_FUNC(0x01809C50, void, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId_ * array, MethodInfo * method)); DO_APP_FUNC(0x0180A3F0, void, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId__Copy, (NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId_ src, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A4B0, void, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId__Copy_1, (TrackableId__Array * src, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A560, void, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId__Copy_2, (NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId_ src, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId_ dst, int32_t length, MethodInfo * method)); @@ -176525,23 +194343,26 @@ DO_APP_FUNC(0x0180A620, void, NativeArray_1_UnityEngine_XR_ARSubsystems_Trackabl DO_APP_FUNC(0x0180A6D0, void, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId__Copy_4, (NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId_ src, int32_t srcIndex, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A990, void, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId__Copy_5, (NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId_ src, int32_t srcIndex, TrackableId__Array * dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A820, void, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId__Copy_6, (TrackableId__Array * src, int32_t srcIndex, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01809FE0, void, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId__CopyFrom, (NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId___Boxed * __this, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId_ array, MethodInfo * method)); -DO_APP_FUNC(0x0180DEC0, void, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId__Dispose, (NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId__Equals, (NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId___Boxed * __this, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId_ other, MethodInfo * method)); -DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId__Equals_1, (NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0180C570, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId__GetEnumerator, (NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01809FE0, void, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId__CopyFrom, (NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId_ * __this, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId_ array, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB45B0, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId__CopyFrom__MethodInfo); +DO_APP_FUNC(0x0180DEC0, void, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId__Dispose, (NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB45C0, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId__Dispose__MethodInfo); +DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId__Equals, (NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId_ * __this, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId_ other, MethodInfo * method)); +DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId__Equals_1, (NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x0180C570, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId__GetEnumerator, (NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA8D68, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId__GetEnumerator__MethodInfo); -DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId__GetHashCode, (NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180C5E0, IEnumerator_1_UnityEngine_XR_ARSubsystems_TrackableId_ *, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180C690, IEnumerator *, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A070, TrackableId__Array *, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId__ToArray, (NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId__get_IsCreated, (NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180B7D0, TrackableId, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId__get_Item, (NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId__get_Length, (NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180B880, void, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId__set_Item, (NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId___Boxed * __this, int32_t index, TrackableId value, MethodInfo * method)); -DO_APP_FUNC(0x01809B50, void, NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4___ctor, (NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4___Boxed * __this, Transform3x4__Array * array, Allocator__Enum allocator, MethodInfo * method)); -DO_APP_FUNC(0x01809A50, void, NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4___ctor_1, (NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4___Boxed * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); -DO_APP_FUNC(0x01809C50, void, NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4_ array, MethodInfo * method)); +DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId__GetHashCode, (NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180C5E0, IEnumerator_1_UnityEngine_XR_ARSubsystems_TrackableId_ *, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180C690, IEnumerator *, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A070, TrackableId__Array *, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId__ToArray, (NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId__get_IsCreated, (NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180B7D0, TrackableId, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId__get_Item, (NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId__get_Length, (NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180B880, void, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId__set_Item, (NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId_ * __this, int32_t index, TrackableId value, MethodInfo * method)); +DO_APP_FUNC(0x01809B50, void, NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4___ctor, (NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4_ * __this, Transform3x4__Array * array, Allocator__Enum allocator, MethodInfo * method)); +DO_APP_FUNC(0x01809A50, void, NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4___ctor_1, (NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4_ * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7E48, NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4___ctor_1__MethodInfo); +DO_APP_FUNC(0x01809C50, void, NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4_ * array, MethodInfo * method)); DO_APP_FUNC(0x0180A3F0, void, NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4__Copy, (NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4_ src, NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A4B0, void, NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4__Copy_1, (Transform3x4__Array * src, NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A560, void, NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4__Copy_2, (NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4_ src, NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4_ dst, int32_t length, MethodInfo * method)); @@ -176549,22 +194370,24 @@ DO_APP_FUNC(0x0180A620, void, NativeArray_1_UnityEngine_UIElements_UIR_Transform DO_APP_FUNC(0x0180A6D0, void, NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4__Copy_4, (NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4_ src, int32_t srcIndex, NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A990, void, NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4__Copy_5, (NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4_ src, int32_t srcIndex, Transform3x4__Array * dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A820, void, NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4__Copy_6, (Transform3x4__Array * src, int32_t srcIndex, NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01809FE0, void, NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4__CopyFrom, (NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4___Boxed * __this, NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4_ array, MethodInfo * method)); -DO_APP_FUNC(0x0180E110, void, NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4__Dispose, (NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4__Equals, (NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4___Boxed * __this, NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4_ other, MethodInfo * method)); -DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4__Equals_1, (NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0180E1F0, NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_Transform3x4_, NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4__GetEnumerator, (NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4__GetHashCode, (NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180E2A0, IEnumerator_1_UnityEngine_UIElements_UIR_Transform3x4_ *, NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180E390, IEnumerator *, NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A070, Transform3x4__Array *, NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4__ToArray, (NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4__get_IsCreated, (NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180DFA0, Transform3x4, NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4__get_Item, (NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4__get_Length, (NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180E060, void, NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4__set_Item, (NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4___Boxed * __this, int32_t index, Transform3x4 value, MethodInfo * method)); -DO_APP_FUNC(0x01809B50, void, NativeArray_1_System_UInt16___ctor, (NativeArray_1_System_UInt16___Boxed * __this, UInt16__Array * array, Allocator__Enum allocator, MethodInfo * method)); -DO_APP_FUNC(0x01809A50, void, NativeArray_1_System_UInt16___ctor_1, (NativeArray_1_System_UInt16___Boxed * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); -DO_APP_FUNC(0x01809C50, void, NativeArray_1_System_UInt16__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_System_UInt16_ array, MethodInfo * method)); +DO_APP_FUNC(0x01809FE0, void, NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4__CopyFrom, (NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4_ * __this, NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4_ array, MethodInfo * method)); +DO_APP_FUNC(0x0180E110, void, NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4__Dispose, (NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D120, NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4__Dispose__MethodInfo); +DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4__Equals, (NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4_ * __this, NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4_ other, MethodInfo * method)); +DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4__Equals_1, (NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x0180E1F0, NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_Transform3x4_, NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4__GetEnumerator, (NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4__GetHashCode, (NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180E2A0, IEnumerator_1_UnityEngine_UIElements_UIR_Transform3x4_ *, NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180E390, IEnumerator *, NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A070, Transform3x4__Array *, NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4__ToArray, (NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4__get_IsCreated, (NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7F28, NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4__get_IsCreated__MethodInfo); +DO_APP_FUNC(0x0180DFA0, Transform3x4, NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4__get_Item, (NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4__get_Length, (NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180E060, void, NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4__set_Item, (NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4_ * __this, int32_t index, Transform3x4 value, MethodInfo * method)); +DO_APP_FUNC(0x01809B50, void, NativeArray_1_System_UInt16___ctor, (NativeArray_1_System_UInt16_ * __this, UInt16__Array * array, Allocator__Enum allocator, MethodInfo * method)); +DO_APP_FUNC(0x01809A50, void, NativeArray_1_System_UInt16___ctor_1, (NativeArray_1_System_UInt16_ * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); +DO_APP_FUNC(0x01809C50, void, NativeArray_1_System_UInt16__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_System_UInt16_ * array, MethodInfo * method)); DO_APP_FUNC(0x0180A3F0, void, NativeArray_1_System_UInt16__Copy, (NativeArray_1_System_UInt16_ src, NativeArray_1_System_UInt16_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A4B0, void, NativeArray_1_System_UInt16__Copy_1, (UInt16__Array * src, NativeArray_1_System_UInt16_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A560, void, NativeArray_1_System_UInt16__Copy_2, (NativeArray_1_System_UInt16_ src, NativeArray_1_System_UInt16_ dst, int32_t length, MethodInfo * method)); @@ -176572,22 +194395,24 @@ DO_APP_FUNC(0x0180A620, void, NativeArray_1_System_UInt16__Copy_3, (NativeArray_ DO_APP_FUNC(0x0180A6D0, void, NativeArray_1_System_UInt16__Copy_4, (NativeArray_1_System_UInt16_ src, int32_t srcIndex, NativeArray_1_System_UInt16_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A990, void, NativeArray_1_System_UInt16__Copy_5, (NativeArray_1_System_UInt16_ src, int32_t srcIndex, UInt16__Array * dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A820, void, NativeArray_1_System_UInt16__Copy_6, (UInt16__Array * src, int32_t srcIndex, NativeArray_1_System_UInt16_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01809FE0, void, NativeArray_1_System_UInt16__CopyFrom, (NativeArray_1_System_UInt16___Boxed * __this, NativeArray_1_System_UInt16_ array, MethodInfo * method)); -DO_APP_FUNC(0x0180E4F0, void, NativeArray_1_System_UInt16__Dispose, (NativeArray_1_System_UInt16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_System_UInt16__Equals, (NativeArray_1_System_UInt16___Boxed * __this, NativeArray_1_System_UInt16_ other, MethodInfo * method)); -DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_System_UInt16__Equals_1, (NativeArray_1_System_UInt16___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0180E5D0, NativeArray_1_T_Enumerator_System_UInt16_, NativeArray_1_System_UInt16__GetEnumerator, (NativeArray_1_System_UInt16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_System_UInt16__GetHashCode, (NativeArray_1_System_UInt16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180E640, IEnumerator_1_System_UInt16_ *, NativeArray_1_System_UInt16__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_System_UInt16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180E6E0, IEnumerator *, NativeArray_1_System_UInt16__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_System_UInt16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A070, UInt16__Array *, NativeArray_1_System_UInt16__ToArray, (NativeArray_1_System_UInt16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_System_UInt16__get_IsCreated, (NativeArray_1_System_UInt16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180AB10, uint16_t, NativeArray_1_System_UInt16__get_Item, (NativeArray_1_System_UInt16___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_System_UInt16__get_Length, (NativeArray_1_System_UInt16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180E450, void, NativeArray_1_System_UInt16__set_Item, (NativeArray_1_System_UInt16___Boxed * __this, int32_t index, uint16_t value, MethodInfo * method)); -DO_APP_FUNC(0x01809B50, void, NativeArray_1_System_UInt32___ctor, (NativeArray_1_System_UInt32___Boxed * __this, UInt32__Array * array, Allocator__Enum allocator, MethodInfo * method)); -DO_APP_FUNC(0x01809A50, void, NativeArray_1_System_UInt32___ctor_1, (NativeArray_1_System_UInt32___Boxed * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); -DO_APP_FUNC(0x01809C50, void, NativeArray_1_System_UInt32__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_System_UInt32_ array, MethodInfo * method)); +DO_APP_FUNC(0x01809FE0, void, NativeArray_1_System_UInt16__CopyFrom, (NativeArray_1_System_UInt16_ * __this, NativeArray_1_System_UInt16_ array, MethodInfo * method)); +DO_APP_FUNC(0x0180E4F0, void, NativeArray_1_System_UInt16__Dispose, (NativeArray_1_System_UInt16_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D110, NativeArray_1_System_UInt16__Dispose__MethodInfo); +DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_System_UInt16__Equals, (NativeArray_1_System_UInt16_ * __this, NativeArray_1_System_UInt16_ other, MethodInfo * method)); +DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_System_UInt16__Equals_1, (NativeArray_1_System_UInt16_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x0180E5D0, NativeArray_1_T_Enumerator_System_UInt16_, NativeArray_1_System_UInt16__GetEnumerator, (NativeArray_1_System_UInt16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_System_UInt16__GetHashCode, (NativeArray_1_System_UInt16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180E640, IEnumerator_1_System_UInt16_ *, NativeArray_1_System_UInt16__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_System_UInt16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180E6E0, IEnumerator *, NativeArray_1_System_UInt16__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_System_UInt16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A070, UInt16__Array *, NativeArray_1_System_UInt16__ToArray, (NativeArray_1_System_UInt16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_System_UInt16__get_IsCreated, (NativeArray_1_System_UInt16_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9F90, NativeArray_1_System_UInt16__get_IsCreated__MethodInfo); +DO_APP_FUNC(0x0180AB10, uint16_t, NativeArray_1_System_UInt16__get_Item, (NativeArray_1_System_UInt16_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_System_UInt16__get_Length, (NativeArray_1_System_UInt16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180E450, void, NativeArray_1_System_UInt16__set_Item, (NativeArray_1_System_UInt16_ * __this, int32_t index, uint16_t value, MethodInfo * method)); +DO_APP_FUNC(0x01809B50, void, NativeArray_1_System_UInt32___ctor, (NativeArray_1_System_UInt32_ * __this, UInt32__Array * array, Allocator__Enum allocator, MethodInfo * method)); +DO_APP_FUNC(0x01809A50, void, NativeArray_1_System_UInt32___ctor_1, (NativeArray_1_System_UInt32_ * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); +DO_APP_FUNC(0x01809C50, void, NativeArray_1_System_UInt32__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_System_UInt32_ * array, MethodInfo * method)); DO_APP_FUNC(0x0180A3F0, void, NativeArray_1_System_UInt32__Copy, (NativeArray_1_System_UInt32_ src, NativeArray_1_System_UInt32_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A4B0, void, NativeArray_1_System_UInt32__Copy_1, (UInt32__Array * src, NativeArray_1_System_UInt32_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A560, void, NativeArray_1_System_UInt32__Copy_2, (NativeArray_1_System_UInt32_ src, NativeArray_1_System_UInt32_ dst, int32_t length, MethodInfo * method)); @@ -176595,23 +194420,24 @@ DO_APP_FUNC(0x0180A620, void, NativeArray_1_System_UInt32__Copy_3, (NativeArray_ DO_APP_FUNC(0x0180A6D0, void, NativeArray_1_System_UInt32__Copy_4, (NativeArray_1_System_UInt32_ src, int32_t srcIndex, NativeArray_1_System_UInt32_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A990, void, NativeArray_1_System_UInt32__Copy_5, (NativeArray_1_System_UInt32_ src, int32_t srcIndex, UInt32__Array * dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A820, void, NativeArray_1_System_UInt32__Copy_6, (UInt32__Array * src, int32_t srcIndex, NativeArray_1_System_UInt32_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01809FE0, void, NativeArray_1_System_UInt32__CopyFrom, (NativeArray_1_System_UInt32___Boxed * __this, NativeArray_1_System_UInt32_ array, MethodInfo * method)); -DO_APP_FUNC(0x0180E7A0, void, NativeArray_1_System_UInt32__Dispose, (NativeArray_1_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_System_UInt32__Equals, (NativeArray_1_System_UInt32___Boxed * __this, NativeArray_1_System_UInt32_ other, MethodInfo * method)); -DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_System_UInt32__Equals_1, (NativeArray_1_System_UInt32___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0180BD80, NativeArray_1_T_Enumerator_System_UInt32_, NativeArray_1_System_UInt32__GetEnumerator, (NativeArray_1_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_System_UInt32__GetHashCode, (NativeArray_1_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180BDE0, IEnumerator_1_System_UInt32_ *, NativeArray_1_System_UInt32__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180BE80, IEnumerator *, NativeArray_1_System_UInt32__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A070, UInt32__Array *, NativeArray_1_System_UInt32__ToArray, (NativeArray_1_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_System_UInt32__get_IsCreated, (NativeArray_1_System_UInt32___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01809FE0, void, NativeArray_1_System_UInt32__CopyFrom, (NativeArray_1_System_UInt32_ * __this, NativeArray_1_System_UInt32_ array, MethodInfo * method)); +DO_APP_FUNC(0x0180E7A0, void, NativeArray_1_System_UInt32__Dispose, (NativeArray_1_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D108, NativeArray_1_System_UInt32__Dispose__MethodInfo); +DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_System_UInt32__Equals, (NativeArray_1_System_UInt32_ * __this, NativeArray_1_System_UInt32_ other, MethodInfo * method)); +DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_System_UInt32__Equals_1, (NativeArray_1_System_UInt32_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x0180BD80, NativeArray_1_T_Enumerator_System_UInt32_, NativeArray_1_System_UInt32__GetEnumerator, (NativeArray_1_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_System_UInt32__GetHashCode, (NativeArray_1_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180BDE0, IEnumerator_1_System_UInt32_ *, NativeArray_1_System_UInt32__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180BE80, IEnumerator *, NativeArray_1_System_UInt32__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A070, UInt32__Array *, NativeArray_1_System_UInt32__ToArray, (NativeArray_1_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_System_UInt32__get_IsCreated, (NativeArray_1_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C95DF0, NativeArray_1_System_UInt32__get_IsCreated__MethodInfo); -DO_APP_FUNC(0x0180AB10, uint32_t, NativeArray_1_System_UInt32__get_Item, (NativeArray_1_System_UInt32___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_System_UInt32__get_Length, (NativeArray_1_System_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180C840, void, NativeArray_1_System_UInt32__set_Item, (NativeArray_1_System_UInt32___Boxed * __this, int32_t index, uint32_t value, MethodInfo * method)); -DO_APP_FUNC(0x01809B50, void, NativeArray_1_System_UInt64___ctor, (NativeArray_1_System_UInt64___Boxed * __this, UInt64__Array * array, Allocator__Enum allocator, MethodInfo * method)); -DO_APP_FUNC(0x01809A50, void, NativeArray_1_System_UInt64___ctor_1, (NativeArray_1_System_UInt64___Boxed * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); -DO_APP_FUNC(0x01809C50, void, NativeArray_1_System_UInt64__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_System_UInt64_ array, MethodInfo * method)); +DO_APP_FUNC(0x0180AB10, uint32_t, NativeArray_1_System_UInt32__get_Item, (NativeArray_1_System_UInt32_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_System_UInt32__get_Length, (NativeArray_1_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180C840, void, NativeArray_1_System_UInt32__set_Item, (NativeArray_1_System_UInt32_ * __this, int32_t index, uint32_t value, MethodInfo * method)); +DO_APP_FUNC(0x01809B50, void, NativeArray_1_System_UInt64___ctor, (NativeArray_1_System_UInt64_ * __this, UInt64__Array * array, Allocator__Enum allocator, MethodInfo * method)); +DO_APP_FUNC(0x01809A50, void, NativeArray_1_System_UInt64___ctor_1, (NativeArray_1_System_UInt64_ * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); +DO_APP_FUNC(0x01809C50, void, NativeArray_1_System_UInt64__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_System_UInt64_ * array, MethodInfo * method)); DO_APP_FUNC(0x0180A3F0, void, NativeArray_1_System_UInt64__Copy, (NativeArray_1_System_UInt64_ src, NativeArray_1_System_UInt64_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A4B0, void, NativeArray_1_System_UInt64__Copy_1, (UInt64__Array * src, NativeArray_1_System_UInt64_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A560, void, NativeArray_1_System_UInt64__Copy_2, (NativeArray_1_System_UInt64_ src, NativeArray_1_System_UInt64_ dst, int32_t length, MethodInfo * method)); @@ -176620,22 +194446,25 @@ DO_APP_FUNC(0x0180A6D0, void, NativeArray_1_System_UInt64__Copy_4, (NativeArray_ DO_APP_FUNC_METHODINFO(0x03C98268, NativeArray_1_System_UInt64__Copy_4__MethodInfo); DO_APP_FUNC(0x0180A990, void, NativeArray_1_System_UInt64__Copy_5, (NativeArray_1_System_UInt64_ src, int32_t srcIndex, UInt64__Array * dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A820, void, NativeArray_1_System_UInt64__Copy_6, (UInt64__Array * src, int32_t srcIndex, NativeArray_1_System_UInt64_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01809FE0, void, NativeArray_1_System_UInt64__CopyFrom, (NativeArray_1_System_UInt64___Boxed * __this, NativeArray_1_System_UInt64_ array, MethodInfo * method)); -DO_APP_FUNC(0x0180E920, void, NativeArray_1_System_UInt64__Dispose, (NativeArray_1_System_UInt64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_System_UInt64__Equals, (NativeArray_1_System_UInt64___Boxed * __this, NativeArray_1_System_UInt64_ other, MethodInfo * method)); -DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_System_UInt64__Equals_1, (NativeArray_1_System_UInt64___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0180EA00, NativeArray_1_T_Enumerator_System_UInt64_, NativeArray_1_System_UInt64__GetEnumerator, (NativeArray_1_System_UInt64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_System_UInt64__GetHashCode, (NativeArray_1_System_UInt64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180EA60, IEnumerator_1_System_UInt64_ *, NativeArray_1_System_UInt64__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_System_UInt64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180EB00, IEnumerator *, NativeArray_1_System_UInt64__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_System_UInt64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A070, UInt64__Array *, NativeArray_1_System_UInt64__ToArray, (NativeArray_1_System_UInt64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_System_UInt64__get_IsCreated, (NativeArray_1_System_UInt64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180AB10, uint64_t, NativeArray_1_System_UInt64__get_Item, (NativeArray_1_System_UInt64___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_System_UInt64__get_Length, (NativeArray_1_System_UInt64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180E880, void, NativeArray_1_System_UInt64__set_Item, (NativeArray_1_System_UInt64___Boxed * __this, int32_t index, uint64_t value, MethodInfo * method)); -DO_APP_FUNC(0x01809B50, void, NativeArray_1_UnityEngine_Vector2___ctor, (NativeArray_1_UnityEngine_Vector2___Boxed * __this, Vector2__Array * array, Allocator__Enum allocator, MethodInfo * method)); -DO_APP_FUNC(0x01809A50, void, NativeArray_1_UnityEngine_Vector2___ctor_1, (NativeArray_1_UnityEngine_Vector2___Boxed * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); -DO_APP_FUNC(0x01809C50, void, NativeArray_1_UnityEngine_Vector2__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_UnityEngine_Vector2_ array, MethodInfo * method)); +DO_APP_FUNC(0x01809FE0, void, NativeArray_1_System_UInt64__CopyFrom, (NativeArray_1_System_UInt64_ * __this, NativeArray_1_System_UInt64_ array, MethodInfo * method)); +DO_APP_FUNC(0x0180E920, void, NativeArray_1_System_UInt64__Dispose, (NativeArray_1_System_UInt64_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB47E8, NativeArray_1_System_UInt64__Dispose__MethodInfo); +DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_System_UInt64__Equals, (NativeArray_1_System_UInt64_ * __this, NativeArray_1_System_UInt64_ other, MethodInfo * method)); +DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_System_UInt64__Equals_1, (NativeArray_1_System_UInt64_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x0180EA00, NativeArray_1_T_Enumerator_System_UInt64_, NativeArray_1_System_UInt64__GetEnumerator, (NativeArray_1_System_UInt64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_System_UInt64__GetHashCode, (NativeArray_1_System_UInt64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180EA60, IEnumerator_1_System_UInt64_ *, NativeArray_1_System_UInt64__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_System_UInt64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180EB00, IEnumerator *, NativeArray_1_System_UInt64__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_System_UInt64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A070, UInt64__Array *, NativeArray_1_System_UInt64__ToArray, (NativeArray_1_System_UInt64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_System_UInt64__get_IsCreated, (NativeArray_1_System_UInt64_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4800, NativeArray_1_System_UInt64__get_IsCreated__MethodInfo); +DO_APP_FUNC(0x0180AB10, uint64_t, NativeArray_1_System_UInt64__get_Item, (NativeArray_1_System_UInt64_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_System_UInt64__get_Length, (NativeArray_1_System_UInt64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180E880, void, NativeArray_1_System_UInt64__set_Item, (NativeArray_1_System_UInt64_ * __this, int32_t index, uint64_t value, MethodInfo * method)); +DO_APP_FUNC(0x01809B50, void, NativeArray_1_UnityEngine_Vector2___ctor, (NativeArray_1_UnityEngine_Vector2_ * __this, Vector2__Array * array, Allocator__Enum allocator, MethodInfo * method)); +DO_APP_FUNC(0x01809A50, void, NativeArray_1_UnityEngine_Vector2___ctor_1, (NativeArray_1_UnityEngine_Vector2_ * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC740, NativeArray_1_UnityEngine_Vector2___ctor_1__MethodInfo); +DO_APP_FUNC(0x01809C50, void, NativeArray_1_UnityEngine_Vector2__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_UnityEngine_Vector2_ * array, MethodInfo * method)); DO_APP_FUNC(0x0180A3F0, void, NativeArray_1_UnityEngine_Vector2__Copy, (NativeArray_1_UnityEngine_Vector2_ src, NativeArray_1_UnityEngine_Vector2_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A4B0, void, NativeArray_1_UnityEngine_Vector2__Copy_1, (Vector2__Array * src, NativeArray_1_UnityEngine_Vector2_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A560, void, NativeArray_1_UnityEngine_Vector2__Copy_2, (NativeArray_1_UnityEngine_Vector2_ src, NativeArray_1_UnityEngine_Vector2_ dst, int32_t length, MethodInfo * method)); @@ -176643,45 +194472,53 @@ DO_APP_FUNC(0x0180A620, void, NativeArray_1_UnityEngine_Vector2__Copy_3, (Native DO_APP_FUNC(0x0180A6D0, void, NativeArray_1_UnityEngine_Vector2__Copy_4, (NativeArray_1_UnityEngine_Vector2_ src, int32_t srcIndex, NativeArray_1_UnityEngine_Vector2_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A990, void, NativeArray_1_UnityEngine_Vector2__Copy_5, (NativeArray_1_UnityEngine_Vector2_ src, int32_t srcIndex, Vector2__Array * dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A820, void, NativeArray_1_UnityEngine_Vector2__Copy_6, (Vector2__Array * src, int32_t srcIndex, NativeArray_1_UnityEngine_Vector2_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01809FE0, void, NativeArray_1_UnityEngine_Vector2__CopyFrom, (NativeArray_1_UnityEngine_Vector2___Boxed * __this, NativeArray_1_UnityEngine_Vector2_ array, MethodInfo * method)); -DO_APP_FUNC(0x0180F0C0, void, NativeArray_1_UnityEngine_Vector2__Dispose, (NativeArray_1_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_UnityEngine_Vector2__Equals, (NativeArray_1_UnityEngine_Vector2___Boxed * __this, NativeArray_1_UnityEngine_Vector2_ other, MethodInfo * method)); -DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_UnityEngine_Vector2__Equals_1, (NativeArray_1_UnityEngine_Vector2___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0180AD10, NativeArray_1_T_Enumerator_UnityEngine_Vector2_, NativeArray_1_UnityEngine_Vector2__GetEnumerator, (NativeArray_1_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_UnityEngine_Vector2__GetHashCode, (NativeArray_1_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180AD70, IEnumerator_1_UnityEngine_Vector2_ *, NativeArray_1_UnityEngine_Vector2__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180AE10, IEnumerator *, NativeArray_1_UnityEngine_Vector2__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A070, Vector2__Array *, NativeArray_1_UnityEngine_Vector2__ToArray, (NativeArray_1_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_UnityEngine_Vector2__get_IsCreated, (NativeArray_1_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180EFA0, Vector2, NativeArray_1_UnityEngine_Vector2__get_Item, (NativeArray_1_UnityEngine_Vector2___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_UnityEngine_Vector2__get_Length, (NativeArray_1_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180F020, void, NativeArray_1_UnityEngine_Vector2__set_Item, (NativeArray_1_UnityEngine_Vector2___Boxed * __this, int32_t index, Vector2 value, MethodInfo * method)); -DO_APP_FUNC(0x01809B50, void, NativeArray_1_UnityEngine_Vector3Int___ctor, (NativeArray_1_UnityEngine_Vector3Int___Boxed * __this, Vector3Int__Array * array, Allocator__Enum allocator, MethodInfo * method)); -DO_APP_FUNC(0x01809A50, void, NativeArray_1_UnityEngine_Vector3Int___ctor_1, (NativeArray_1_UnityEngine_Vector3Int___Boxed * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); -DO_APP_FUNC(0x01809C50, void, NativeArray_1_UnityEngine_Vector3Int__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_UnityEngine_Vector3Int_ array, MethodInfo * method)); +DO_APP_FUNC(0x01809FE0, void, NativeArray_1_UnityEngine_Vector2__CopyFrom, (NativeArray_1_UnityEngine_Vector2_ * __this, NativeArray_1_UnityEngine_Vector2_ array, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC710, NativeArray_1_UnityEngine_Vector2__CopyFrom__MethodInfo); +DO_APP_FUNC(0x0180F0C0, void, NativeArray_1_UnityEngine_Vector2__Dispose, (NativeArray_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11D40, NativeArray_1_UnityEngine_Vector2__Dispose__MethodInfo); +DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_UnityEngine_Vector2__Equals, (NativeArray_1_UnityEngine_Vector2_ * __this, NativeArray_1_UnityEngine_Vector2_ other, MethodInfo * method)); +DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_UnityEngine_Vector2__Equals_1, (NativeArray_1_UnityEngine_Vector2_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x0180AD10, NativeArray_1_T_Enumerator_UnityEngine_Vector2_, NativeArray_1_UnityEngine_Vector2__GetEnumerator, (NativeArray_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_UnityEngine_Vector2__GetHashCode, (NativeArray_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180AD70, IEnumerator_1_UnityEngine_Vector2_ *, NativeArray_1_UnityEngine_Vector2__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180AE10, IEnumerator *, NativeArray_1_UnityEngine_Vector2__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A070, Vector2__Array *, NativeArray_1_UnityEngine_Vector2__ToArray, (NativeArray_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_UnityEngine_Vector2__get_IsCreated, (NativeArray_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC6E0, NativeArray_1_UnityEngine_Vector2__get_IsCreated__MethodInfo); +DO_APP_FUNC(0x0180EFA0, Vector2, NativeArray_1_UnityEngine_Vector2__get_Item, (NativeArray_1_UnityEngine_Vector2_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_UnityEngine_Vector2__get_Length, (NativeArray_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180F020, void, NativeArray_1_UnityEngine_Vector2__set_Item, (NativeArray_1_UnityEngine_Vector2_ * __this, int32_t index, Vector2 value, MethodInfo * method)); +DO_APP_FUNC(0x01809B50, void, NativeArray_1_UnityEngine_Vector3Int___ctor, (NativeArray_1_UnityEngine_Vector3Int_ * __this, Vector3Int__Array * array, Allocator__Enum allocator, MethodInfo * method)); +DO_APP_FUNC(0x01809A50, void, NativeArray_1_UnityEngine_Vector3Int___ctor_1, (NativeArray_1_UnityEngine_Vector3Int_ * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21B88, NativeArray_1_UnityEngine_Vector3Int___ctor_1__MethodInfo); +DO_APP_FUNC(0x01809C50, void, NativeArray_1_UnityEngine_Vector3Int__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_UnityEngine_Vector3Int_ * array, MethodInfo * method)); DO_APP_FUNC(0x0180A3F0, void, NativeArray_1_UnityEngine_Vector3Int__Copy, (NativeArray_1_UnityEngine_Vector3Int_ src, NativeArray_1_UnityEngine_Vector3Int_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A4B0, void, NativeArray_1_UnityEngine_Vector3Int__Copy_1, (Vector3Int__Array * src, NativeArray_1_UnityEngine_Vector3Int_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A560, void, NativeArray_1_UnityEngine_Vector3Int__Copy_2, (NativeArray_1_UnityEngine_Vector3Int_ src, NativeArray_1_UnityEngine_Vector3Int_ dst, int32_t length, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21B98, NativeArray_1_UnityEngine_Vector3Int__Copy_2__MethodInfo); DO_APP_FUNC(0x0180A620, void, NativeArray_1_UnityEngine_Vector3Int__Copy_3, (NativeArray_1_UnityEngine_Vector3Int_ src, Vector3Int__Array * dst, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A6D0, void, NativeArray_1_UnityEngine_Vector3Int__Copy_4, (NativeArray_1_UnityEngine_Vector3Int_ src, int32_t srcIndex, NativeArray_1_UnityEngine_Vector3Int_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A990, void, NativeArray_1_UnityEngine_Vector3Int__Copy_5, (NativeArray_1_UnityEngine_Vector3Int_ src, int32_t srcIndex, Vector3Int__Array * dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A820, void, NativeArray_1_UnityEngine_Vector3Int__Copy_6, (Vector3Int__Array * src, int32_t srcIndex, NativeArray_1_UnityEngine_Vector3Int_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01809FE0, void, NativeArray_1_UnityEngine_Vector3Int__CopyFrom, (NativeArray_1_UnityEngine_Vector3Int___Boxed * __this, NativeArray_1_UnityEngine_Vector3Int_ array, MethodInfo * method)); -DO_APP_FUNC(0x0180F1A0, void, NativeArray_1_UnityEngine_Vector3Int__Dispose, (NativeArray_1_UnityEngine_Vector3Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_UnityEngine_Vector3Int__Equals, (NativeArray_1_UnityEngine_Vector3Int___Boxed * __this, NativeArray_1_UnityEngine_Vector3Int_ other, MethodInfo * method)); -DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_UnityEngine_Vector3Int__Equals_1, (NativeArray_1_UnityEngine_Vector3Int___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0180A150, NativeArray_1_T_Enumerator_UnityEngine_Vector3Int_, NativeArray_1_UnityEngine_Vector3Int__GetEnumerator, (NativeArray_1_UnityEngine_Vector3Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_UnityEngine_Vector3Int__GetHashCode, (NativeArray_1_UnityEngine_Vector3Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A1A0, IEnumerator_1_UnityEngine_Vector3Int_ *, NativeArray_1_UnityEngine_Vector3Int__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_UnityEngine_Vector3Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A220, IEnumerator *, NativeArray_1_UnityEngine_Vector3Int__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_UnityEngine_Vector3Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A070, Vector3Int__Array *, NativeArray_1_UnityEngine_Vector3Int__ToArray, (NativeArray_1_UnityEngine_Vector3Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_UnityEngine_Vector3Int__get_IsCreated, (NativeArray_1_UnityEngine_Vector3Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01809D90, Vector3Int, NativeArray_1_UnityEngine_Vector3Int__get_Item, (NativeArray_1_UnityEngine_Vector3Int___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_UnityEngine_Vector3Int__get_Length, (NativeArray_1_UnityEngine_Vector3Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01809E40, void, NativeArray_1_UnityEngine_Vector3Int__set_Item, (NativeArray_1_UnityEngine_Vector3Int___Boxed * __this, int32_t index, Vector3Int value, MethodInfo * method)); -DO_APP_FUNC(0x01809B50, void, NativeArray_1_UnityEngine_Vector4___ctor, (NativeArray_1_UnityEngine_Vector4___Boxed * __this, Vector4__Array * array, Allocator__Enum allocator, MethodInfo * method)); -DO_APP_FUNC(0x01809A50, void, NativeArray_1_UnityEngine_Vector4___ctor_1, (NativeArray_1_UnityEngine_Vector4___Boxed * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); -DO_APP_FUNC(0x01809C50, void, NativeArray_1_UnityEngine_Vector4__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_UnityEngine_Vector4_ array, MethodInfo * method)); +DO_APP_FUNC(0x01809FE0, void, NativeArray_1_UnityEngine_Vector3Int__CopyFrom, (NativeArray_1_UnityEngine_Vector3Int_ * __this, NativeArray_1_UnityEngine_Vector3Int_ array, MethodInfo * method)); +DO_APP_FUNC(0x0180F1A0, void, NativeArray_1_UnityEngine_Vector3Int__Dispose, (NativeArray_1_UnityEngine_Vector3Int_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11D38, NativeArray_1_UnityEngine_Vector3Int__Dispose__MethodInfo); +DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_UnityEngine_Vector3Int__Equals, (NativeArray_1_UnityEngine_Vector3Int_ * __this, NativeArray_1_UnityEngine_Vector3Int_ other, MethodInfo * method)); +DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_UnityEngine_Vector3Int__Equals_1, (NativeArray_1_UnityEngine_Vector3Int_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x0180A150, NativeArray_1_T_Enumerator_UnityEngine_Vector3Int_, NativeArray_1_UnityEngine_Vector3Int__GetEnumerator, (NativeArray_1_UnityEngine_Vector3Int_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_UnityEngine_Vector3Int__GetHashCode, (NativeArray_1_UnityEngine_Vector3Int_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A1A0, IEnumerator_1_UnityEngine_Vector3Int_ *, NativeArray_1_UnityEngine_Vector3Int__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_UnityEngine_Vector3Int_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A220, IEnumerator *, NativeArray_1_UnityEngine_Vector3Int__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_UnityEngine_Vector3Int_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A070, Vector3Int__Array *, NativeArray_1_UnityEngine_Vector3Int__ToArray, (NativeArray_1_UnityEngine_Vector3Int_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_UnityEngine_Vector3Int__get_IsCreated, (NativeArray_1_UnityEngine_Vector3Int_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21BE8, NativeArray_1_UnityEngine_Vector3Int__get_IsCreated__MethodInfo); +DO_APP_FUNC(0x01809D90, Vector3Int, NativeArray_1_UnityEngine_Vector3Int__get_Item, (NativeArray_1_UnityEngine_Vector3Int_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_UnityEngine_Vector3Int__get_Length, (NativeArray_1_UnityEngine_Vector3Int_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01809E40, void, NativeArray_1_UnityEngine_Vector3Int__set_Item, (NativeArray_1_UnityEngine_Vector3Int_ * __this, int32_t index, Vector3Int value, MethodInfo * method)); +DO_APP_FUNC(0x01809B50, void, NativeArray_1_UnityEngine_Vector4___ctor, (NativeArray_1_UnityEngine_Vector4_ * __this, Vector4__Array * array, Allocator__Enum allocator, MethodInfo * method)); +DO_APP_FUNC(0x01809A50, void, NativeArray_1_UnityEngine_Vector4___ctor_1, (NativeArray_1_UnityEngine_Vector4_ * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7E68, NativeArray_1_UnityEngine_Vector4___ctor_1__MethodInfo); +DO_APP_FUNC(0x01809C50, void, NativeArray_1_UnityEngine_Vector4__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_UnityEngine_Vector4_ * array, MethodInfo * method)); DO_APP_FUNC(0x0180A3F0, void, NativeArray_1_UnityEngine_Vector4__Copy, (NativeArray_1_UnityEngine_Vector4_ src, NativeArray_1_UnityEngine_Vector4_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A4B0, void, NativeArray_1_UnityEngine_Vector4__Copy_1, (Vector4__Array * src, NativeArray_1_UnityEngine_Vector4_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A560, void, NativeArray_1_UnityEngine_Vector4__Copy_2, (NativeArray_1_UnityEngine_Vector4_ src, NativeArray_1_UnityEngine_Vector4_ dst, int32_t length, MethodInfo * method)); @@ -176689,22 +194526,24 @@ DO_APP_FUNC(0x0180A620, void, NativeArray_1_UnityEngine_Vector4__Copy_3, (Native DO_APP_FUNC(0x0180A6D0, void, NativeArray_1_UnityEngine_Vector4__Copy_4, (NativeArray_1_UnityEngine_Vector4_ src, int32_t srcIndex, NativeArray_1_UnityEngine_Vector4_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A990, void, NativeArray_1_UnityEngine_Vector4__Copy_5, (NativeArray_1_UnityEngine_Vector4_ src, int32_t srcIndex, Vector4__Array * dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A820, void, NativeArray_1_UnityEngine_Vector4__Copy_6, (Vector4__Array * src, int32_t srcIndex, NativeArray_1_UnityEngine_Vector4_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01809FE0, void, NativeArray_1_UnityEngine_Vector4__CopyFrom, (NativeArray_1_UnityEngine_Vector4___Boxed * __this, NativeArray_1_UnityEngine_Vector4_ array, MethodInfo * method)); -DO_APP_FUNC(0x0180F280, void, NativeArray_1_UnityEngine_Vector4__Dispose, (NativeArray_1_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_UnityEngine_Vector4__Equals, (NativeArray_1_UnityEngine_Vector4___Boxed * __this, NativeArray_1_UnityEngine_Vector4_ other, MethodInfo * method)); -DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_UnityEngine_Vector4__Equals_1, (NativeArray_1_UnityEngine_Vector4___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0180BA00, NativeArray_1_T_Enumerator_UnityEngine_Vector4_, NativeArray_1_UnityEngine_Vector4__GetEnumerator, (NativeArray_1_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_UnityEngine_Vector4__GetHashCode, (NativeArray_1_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180BA80, IEnumerator_1_UnityEngine_Vector4_ *, NativeArray_1_UnityEngine_Vector4__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180BB30, IEnumerator *, NativeArray_1_UnityEngine_Vector4__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A070, Vector4__Array *, NativeArray_1_UnityEngine_Vector4__ToArray, (NativeArray_1_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_UnityEngine_Vector4__get_IsCreated, (NativeArray_1_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180B7D0, Vector4, NativeArray_1_UnityEngine_Vector4__get_Item, (NativeArray_1_UnityEngine_Vector4___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_UnityEngine_Vector4__get_Length, (NativeArray_1_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180B880, void, NativeArray_1_UnityEngine_Vector4__set_Item, (NativeArray_1_UnityEngine_Vector4___Boxed * __this, int32_t index, Vector4 value, MethodInfo * method)); -DO_APP_FUNC(0x01809B50, void, NativeArray_1_UnityEngine_UIElements_Vertex___ctor, (NativeArray_1_UnityEngine_UIElements_Vertex___Boxed * __this, Vertex__Array * array, Allocator__Enum allocator, MethodInfo * method)); -DO_APP_FUNC(0x01809A50, void, NativeArray_1_UnityEngine_UIElements_Vertex___ctor_1, (NativeArray_1_UnityEngine_UIElements_Vertex___Boxed * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); -DO_APP_FUNC(0x01809C50, void, NativeArray_1_UnityEngine_UIElements_Vertex__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_UnityEngine_UIElements_Vertex_ array, MethodInfo * method)); +DO_APP_FUNC(0x01809FE0, void, NativeArray_1_UnityEngine_Vector4__CopyFrom, (NativeArray_1_UnityEngine_Vector4_ * __this, NativeArray_1_UnityEngine_Vector4_ array, MethodInfo * method)); +DO_APP_FUNC(0x0180F280, void, NativeArray_1_UnityEngine_Vector4__Dispose, (NativeArray_1_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11D30, NativeArray_1_UnityEngine_Vector4__Dispose__MethodInfo); +DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_UnityEngine_Vector4__Equals, (NativeArray_1_UnityEngine_Vector4_ * __this, NativeArray_1_UnityEngine_Vector4_ other, MethodInfo * method)); +DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_UnityEngine_Vector4__Equals_1, (NativeArray_1_UnityEngine_Vector4_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x0180BA00, NativeArray_1_T_Enumerator_UnityEngine_Vector4_, NativeArray_1_UnityEngine_Vector4__GetEnumerator, (NativeArray_1_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_UnityEngine_Vector4__GetHashCode, (NativeArray_1_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180BA80, IEnumerator_1_UnityEngine_Vector4_ *, NativeArray_1_UnityEngine_Vector4__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180BB30, IEnumerator *, NativeArray_1_UnityEngine_Vector4__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A070, Vector4__Array *, NativeArray_1_UnityEngine_Vector4__ToArray, (NativeArray_1_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_UnityEngine_Vector4__get_IsCreated, (NativeArray_1_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7F08, NativeArray_1_UnityEngine_Vector4__get_IsCreated__MethodInfo); +DO_APP_FUNC(0x0180B7D0, Vector4, NativeArray_1_UnityEngine_Vector4__get_Item, (NativeArray_1_UnityEngine_Vector4_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_UnityEngine_Vector4__get_Length, (NativeArray_1_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180B880, void, NativeArray_1_UnityEngine_Vector4__set_Item, (NativeArray_1_UnityEngine_Vector4_ * __this, int32_t index, Vector4 value, MethodInfo * method)); +DO_APP_FUNC(0x01809B50, void, NativeArray_1_UnityEngine_UIElements_Vertex___ctor, (NativeArray_1_UnityEngine_UIElements_Vertex_ * __this, Vertex__Array * array, Allocator__Enum allocator, MethodInfo * method)); +DO_APP_FUNC(0x01809A50, void, NativeArray_1_UnityEngine_UIElements_Vertex___ctor_1, (NativeArray_1_UnityEngine_UIElements_Vertex_ * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); +DO_APP_FUNC(0x01809C50, void, NativeArray_1_UnityEngine_UIElements_Vertex__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_UnityEngine_UIElements_Vertex_ * array, MethodInfo * method)); DO_APP_FUNC(0x0180A3F0, void, NativeArray_1_UnityEngine_UIElements_Vertex__Copy, (NativeArray_1_UnityEngine_UIElements_Vertex_ src, NativeArray_1_UnityEngine_UIElements_Vertex_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A4B0, void, NativeArray_1_UnityEngine_UIElements_Vertex__Copy_1, (Vertex__Array * src, NativeArray_1_UnityEngine_UIElements_Vertex_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A560, void, NativeArray_1_UnityEngine_UIElements_Vertex__Copy_2, (NativeArray_1_UnityEngine_UIElements_Vertex_ src, NativeArray_1_UnityEngine_UIElements_Vertex_ dst, int32_t length, MethodInfo * method)); @@ -176712,22 +194551,24 @@ DO_APP_FUNC(0x0180A620, void, NativeArray_1_UnityEngine_UIElements_Vertex__Copy_ DO_APP_FUNC(0x0180A6D0, void, NativeArray_1_UnityEngine_UIElements_Vertex__Copy_4, (NativeArray_1_UnityEngine_UIElements_Vertex_ src, int32_t srcIndex, NativeArray_1_UnityEngine_UIElements_Vertex_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A990, void, NativeArray_1_UnityEngine_UIElements_Vertex__Copy_5, (NativeArray_1_UnityEngine_UIElements_Vertex_ src, int32_t srcIndex, Vertex__Array * dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A820, void, NativeArray_1_UnityEngine_UIElements_Vertex__Copy_6, (Vertex__Array * src, int32_t srcIndex, NativeArray_1_UnityEngine_UIElements_Vertex_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01809FE0, void, NativeArray_1_UnityEngine_UIElements_Vertex__CopyFrom, (NativeArray_1_UnityEngine_UIElements_Vertex___Boxed * __this, NativeArray_1_UnityEngine_UIElements_Vertex_ array, MethodInfo * method)); -DO_APP_FUNC(0x0180F360, void, NativeArray_1_UnityEngine_UIElements_Vertex__Dispose, (NativeArray_1_UnityEngine_UIElements_Vertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_UnityEngine_UIElements_Vertex__Equals, (NativeArray_1_UnityEngine_UIElements_Vertex___Boxed * __this, NativeArray_1_UnityEngine_UIElements_Vertex_ other, MethodInfo * method)); -DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_UnityEngine_UIElements_Vertex__Equals_1, (NativeArray_1_UnityEngine_UIElements_Vertex___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0180D7A0, NativeArray_1_T_Enumerator_UnityEngine_UIElements_Vertex_, NativeArray_1_UnityEngine_UIElements_Vertex__GetEnumerator, (NativeArray_1_UnityEngine_UIElements_Vertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_UnityEngine_UIElements_Vertex__GetHashCode, (NativeArray_1_UnityEngine_UIElements_Vertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180D850, IEnumerator_1_UnityEngine_UIElements_Vertex_ *, NativeArray_1_UnityEngine_UIElements_Vertex__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_UnityEngine_UIElements_Vertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180D940, IEnumerator *, NativeArray_1_UnityEngine_UIElements_Vertex__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_UnityEngine_UIElements_Vertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A070, Vertex__Array *, NativeArray_1_UnityEngine_UIElements_Vertex__ToArray, (NativeArray_1_UnityEngine_UIElements_Vertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_UnityEngine_UIElements_Vertex__get_IsCreated, (NativeArray_1_UnityEngine_UIElements_Vertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180D520, Vertex, NativeArray_1_UnityEngine_UIElements_Vertex__get_Item, (NativeArray_1_UnityEngine_UIElements_Vertex___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_UnityEngine_UIElements_Vertex__get_Length, (NativeArray_1_UnityEngine_UIElements_Vertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180D600, void, NativeArray_1_UnityEngine_UIElements_Vertex__set_Item, (NativeArray_1_UnityEngine_UIElements_Vertex___Boxed * __this, int32_t index, Vertex value, MethodInfo * method)); -DO_APP_FUNC(0x01809B50, void, NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor___ctor, (NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor___Boxed * __this, VertexAttributeDescriptor__Array * array, Allocator__Enum allocator, MethodInfo * method)); -DO_APP_FUNC(0x01809A50, void, NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor___ctor_1, (NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor___Boxed * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); -DO_APP_FUNC(0x01809C50, void, NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor_ array, MethodInfo * method)); +DO_APP_FUNC(0x01809FE0, void, NativeArray_1_UnityEngine_UIElements_Vertex__CopyFrom, (NativeArray_1_UnityEngine_UIElements_Vertex_ * __this, NativeArray_1_UnityEngine_UIElements_Vertex_ array, MethodInfo * method)); +DO_APP_FUNC(0x0180F360, void, NativeArray_1_UnityEngine_UIElements_Vertex__Dispose, (NativeArray_1_UnityEngine_UIElements_Vertex_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11D70, NativeArray_1_UnityEngine_UIElements_Vertex__Dispose__MethodInfo); +DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_UnityEngine_UIElements_Vertex__Equals, (NativeArray_1_UnityEngine_UIElements_Vertex_ * __this, NativeArray_1_UnityEngine_UIElements_Vertex_ other, MethodInfo * method)); +DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_UnityEngine_UIElements_Vertex__Equals_1, (NativeArray_1_UnityEngine_UIElements_Vertex_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x0180D7A0, NativeArray_1_T_Enumerator_UnityEngine_UIElements_Vertex_, NativeArray_1_UnityEngine_UIElements_Vertex__GetEnumerator, (NativeArray_1_UnityEngine_UIElements_Vertex_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_UnityEngine_UIElements_Vertex__GetHashCode, (NativeArray_1_UnityEngine_UIElements_Vertex_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180D850, IEnumerator_1_UnityEngine_UIElements_Vertex_ *, NativeArray_1_UnityEngine_UIElements_Vertex__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_UnityEngine_UIElements_Vertex_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180D940, IEnumerator *, NativeArray_1_UnityEngine_UIElements_Vertex__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_UnityEngine_UIElements_Vertex_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A070, Vertex__Array *, NativeArray_1_UnityEngine_UIElements_Vertex__ToArray, (NativeArray_1_UnityEngine_UIElements_Vertex_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_UnityEngine_UIElements_Vertex__get_IsCreated, (NativeArray_1_UnityEngine_UIElements_Vertex_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9F88, NativeArray_1_UnityEngine_UIElements_Vertex__get_IsCreated__MethodInfo); +DO_APP_FUNC(0x0180D520, Vertex, NativeArray_1_UnityEngine_UIElements_Vertex__get_Item, (NativeArray_1_UnityEngine_UIElements_Vertex_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_UnityEngine_UIElements_Vertex__get_Length, (NativeArray_1_UnityEngine_UIElements_Vertex_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180D600, void, NativeArray_1_UnityEngine_UIElements_Vertex__set_Item, (NativeArray_1_UnityEngine_UIElements_Vertex_ * __this, int32_t index, Vertex value, MethodInfo * method)); +DO_APP_FUNC(0x01809B50, void, NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor___ctor, (NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor_ * __this, VertexAttributeDescriptor__Array * array, Allocator__Enum allocator, MethodInfo * method)); +DO_APP_FUNC(0x01809A50, void, NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor___ctor_1, (NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor_ * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); +DO_APP_FUNC(0x01809C50, void, NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor_ * array, MethodInfo * method)); DO_APP_FUNC(0x0180A3F0, void, NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor__Copy, (NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor_ src, NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A4B0, void, NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor__Copy_1, (VertexAttributeDescriptor__Array * src, NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A560, void, NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor__Copy_2, (NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor_ src, NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor_ dst, int32_t length, MethodInfo * method)); @@ -176735,23 +194576,24 @@ DO_APP_FUNC(0x0180A620, void, NativeArray_1_UnityEngine_Rendering_VertexAttribut DO_APP_FUNC(0x0180A6D0, void, NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor__Copy_4, (NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor_ src, int32_t srcIndex, NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A990, void, NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor__Copy_5, (NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor_ src, int32_t srcIndex, VertexAttributeDescriptor__Array * dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A820, void, NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor__Copy_6, (VertexAttributeDescriptor__Array * src, int32_t srcIndex, NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01809FE0, void, NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor__CopyFrom, (NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor___Boxed * __this, NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor_ array, MethodInfo * method)); -DO_APP_FUNC(0x0180F440, void, NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor__Dispose, (NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor__Equals, (NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor___Boxed * __this, NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor_ other, MethodInfo * method)); -DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor__Equals_1, (NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0180BA00, NativeArray_1_T_Enumerator_UnityEngine_Rendering_VertexAttributeDescriptor_, NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor__GetEnumerator, (NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor__GetHashCode, (NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180BA80, IEnumerator_1_UnityEngine_Rendering_VertexAttributeDescriptor_ *, NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180BB30, IEnumerator *, NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A070, VertexAttributeDescriptor__Array *, NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor__ToArray, (NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor__get_IsCreated, (NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180B7D0, VertexAttributeDescriptor, NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor__get_Item, (NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor__get_Length, (NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180B880, void, NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor__set_Item, (NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor___Boxed * __this, int32_t index, VertexAttributeDescriptor value, MethodInfo * method)); -DO_APP_FUNC(0x01809B50, void, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor___ctor, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor___Boxed * __this, XRAnchor__Array * array, Allocator__Enum allocator, MethodInfo * method)); +DO_APP_FUNC(0x01809FE0, void, NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor__CopyFrom, (NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor_ * __this, NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor_ array, MethodInfo * method)); +DO_APP_FUNC(0x0180F440, void, NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor__Dispose, (NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11D68, NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor__Dispose__MethodInfo); +DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor__Equals, (NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor_ * __this, NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor_ other, MethodInfo * method)); +DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor__Equals_1, (NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x0180BA00, NativeArray_1_T_Enumerator_UnityEngine_Rendering_VertexAttributeDescriptor_, NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor__GetEnumerator, (NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor__GetHashCode, (NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180BA80, IEnumerator_1_UnityEngine_Rendering_VertexAttributeDescriptor_ *, NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180BB30, IEnumerator *, NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A070, VertexAttributeDescriptor__Array *, NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor__ToArray, (NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor__get_IsCreated, (NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180B7D0, VertexAttributeDescriptor, NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor__get_Item, (NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor__get_Length, (NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180B880, void, NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor__set_Item, (NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor_ * __this, int32_t index, VertexAttributeDescriptor value, MethodInfo * method)); +DO_APP_FUNC(0x01809B50, void, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor___ctor, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor_ * __this, XRAnchor__Array * array, Allocator__Enum allocator, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8E220, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor___ctor__MethodInfo); -DO_APP_FUNC(0x01809A50, void, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor___ctor_1, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor___Boxed * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); -DO_APP_FUNC(0x01809C50, void, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor_ array, MethodInfo * method)); +DO_APP_FUNC(0x01809A50, void, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor___ctor_1, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor_ * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); +DO_APP_FUNC(0x01809C50, void, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor_ * array, MethodInfo * method)); DO_APP_FUNC(0x0180A3F0, void, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor__Copy, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor_ src, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A4B0, void, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor__Copy_1, (XRAnchor__Array * src, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A560, void, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor__Copy_2, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor_ src, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor_ dst, int32_t length, MethodInfo * method)); @@ -176759,22 +194601,23 @@ DO_APP_FUNC(0x0180A620, void, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor DO_APP_FUNC(0x0180A6D0, void, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor__Copy_4, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor_ src, int32_t srcIndex, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A990, void, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor__Copy_5, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor_ src, int32_t srcIndex, XRAnchor__Array * dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A820, void, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor__Copy_6, (XRAnchor__Array * src, int32_t srcIndex, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01809FE0, void, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor__CopyFrom, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor___Boxed * __this, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor_ array, MethodInfo * method)); -DO_APP_FUNC(0x0180F6C0, void, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor__Dispose, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor__Equals, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor___Boxed * __this, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor_ other, MethodInfo * method)); -DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor__Equals_1, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0180F7A0, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_XRAnchor_, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor__GetEnumerator, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor__GetHashCode, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180F870, IEnumerator_1_UnityEngine_XR_ARSubsystems_XRAnchor_ *, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180F960, IEnumerator *, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A070, XRAnchor__Array *, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor__ToArray, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor__get_IsCreated, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180F520, XRAnchor, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor__get_Item, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor__get_Length, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180F600, void, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor__set_Item, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor___Boxed * __this, int32_t index, XRAnchor value, MethodInfo * method)); -DO_APP_FUNC(0x01809B50, void, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast___ctor, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast___Boxed * __this, XRRaycast__Array * array, Allocator__Enum allocator, MethodInfo * method)); -DO_APP_FUNC(0x01809A50, void, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast___ctor_1, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast___Boxed * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); -DO_APP_FUNC(0x01809C50, void, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast_ array, MethodInfo * method)); +DO_APP_FUNC(0x01809FE0, void, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor__CopyFrom, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor_ * __this, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor_ array, MethodInfo * method)); +DO_APP_FUNC(0x0180F6C0, void, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor__Dispose, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11D60, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor__Dispose__MethodInfo); +DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor__Equals, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor_ * __this, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor_ other, MethodInfo * method)); +DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor__Equals_1, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x0180F7A0, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_XRAnchor_, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor__GetEnumerator, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor__GetHashCode, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180F870, IEnumerator_1_UnityEngine_XR_ARSubsystems_XRAnchor_ *, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180F960, IEnumerator *, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A070, XRAnchor__Array *, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor__ToArray, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor__get_IsCreated, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180F520, XRAnchor, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor__get_Item, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor__get_Length, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180F600, void, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor__set_Item, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor_ * __this, int32_t index, XRAnchor value, MethodInfo * method)); +DO_APP_FUNC(0x01809B50, void, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast___ctor, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast_ * __this, XRRaycast__Array * array, Allocator__Enum allocator, MethodInfo * method)); +DO_APP_FUNC(0x01809A50, void, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast___ctor_1, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast_ * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); +DO_APP_FUNC(0x01809C50, void, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast_ * array, MethodInfo * method)); DO_APP_FUNC(0x0180A3F0, void, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast__Copy, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast_ src, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A4B0, void, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast__Copy_1, (XRRaycast__Array * src, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A560, void, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast__Copy_2, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast_ src, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast_ dst, int32_t length, MethodInfo * method)); @@ -176782,22 +194625,23 @@ DO_APP_FUNC(0x0180A620, void, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycas DO_APP_FUNC(0x0180A6D0, void, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast__Copy_4, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast_ src, int32_t srcIndex, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A990, void, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast__Copy_5, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast_ src, int32_t srcIndex, XRRaycast__Array * dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A820, void, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast__Copy_6, (XRRaycast__Array * src, int32_t srcIndex, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01809FE0, void, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast__CopyFrom, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast___Boxed * __this, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast_ array, MethodInfo * method)); -DO_APP_FUNC(0x0180FBD0, void, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast__Dispose, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast__Equals, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast___Boxed * __this, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast_ other, MethodInfo * method)); -DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast__Equals_1, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0180FCB0, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_XRRaycast_, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast__GetEnumerator, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast__GetHashCode, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180FD90, IEnumerator_1_UnityEngine_XR_ARSubsystems_XRRaycast_ *, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180FE80, IEnumerator *, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A070, XRRaycast__Array *, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast__ToArray, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast__get_IsCreated, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180FA30, XRRaycast, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast__get_Item, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast__get_Length, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180FB10, void, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast__set_Item, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast___Boxed * __this, int32_t index, XRRaycast value, MethodInfo * method)); -DO_APP_FUNC(0x01809B50, void, NativeArray_1_UnityEngine_ParticleSystem_Particle___ctor, (NativeArray_1_UnityEngine_ParticleSystem_Particle___Boxed * __this, ParticleSystem_Particle__Array * array, Allocator__Enum allocator, MethodInfo * method)); -DO_APP_FUNC(0x01809A50, void, NativeArray_1_UnityEngine_ParticleSystem_Particle___ctor_1, (NativeArray_1_UnityEngine_ParticleSystem_Particle___Boxed * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); -DO_APP_FUNC(0x01809C50, void, NativeArray_1_UnityEngine_ParticleSystem_Particle__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_UnityEngine_ParticleSystem_Particle_ array, MethodInfo * method)); +DO_APP_FUNC(0x01809FE0, void, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast__CopyFrom, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast_ * __this, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast_ array, MethodInfo * method)); +DO_APP_FUNC(0x0180FBD0, void, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast__Dispose, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11D58, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast__Dispose__MethodInfo); +DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast__Equals, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast_ * __this, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast_ other, MethodInfo * method)); +DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast__Equals_1, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x0180FCB0, NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_XRRaycast_, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast__GetEnumerator, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast__GetHashCode, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180FD90, IEnumerator_1_UnityEngine_XR_ARSubsystems_XRRaycast_ *, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180FE80, IEnumerator *, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A070, XRRaycast__Array *, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast__ToArray, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast__get_IsCreated, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180FA30, XRRaycast, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast__get_Item, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast__get_Length, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180FB10, void, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast__set_Item, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast_ * __this, int32_t index, XRRaycast value, MethodInfo * method)); +DO_APP_FUNC(0x01809B50, void, NativeArray_1_UnityEngine_ParticleSystem_Particle___ctor, (NativeArray_1_UnityEngine_ParticleSystem_Particle_ * __this, ParticleSystem_Particle__Array * array, Allocator__Enum allocator, MethodInfo * method)); +DO_APP_FUNC(0x01809A50, void, NativeArray_1_UnityEngine_ParticleSystem_Particle___ctor_1, (NativeArray_1_UnityEngine_ParticleSystem_Particle_ * __this, int32_t length, Allocator__Enum allocator, NativeArrayOptions__Enum options, MethodInfo * method)); +DO_APP_FUNC(0x01809C50, void, NativeArray_1_UnityEngine_ParticleSystem_Particle__Allocate, (int32_t length, Allocator__Enum allocator, NativeArray_1_UnityEngine_ParticleSystem_Particle_ * array, MethodInfo * method)); DO_APP_FUNC(0x0180A3F0, void, NativeArray_1_UnityEngine_ParticleSystem_Particle__Copy, (NativeArray_1_UnityEngine_ParticleSystem_Particle_ src, NativeArray_1_UnityEngine_ParticleSystem_Particle_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A4B0, void, NativeArray_1_UnityEngine_ParticleSystem_Particle__Copy_1, (ParticleSystem_Particle__Array * src, NativeArray_1_UnityEngine_ParticleSystem_Particle_ dst, MethodInfo * method)); DO_APP_FUNC(0x0180A560, void, NativeArray_1_UnityEngine_ParticleSystem_Particle__Copy_2, (NativeArray_1_UnityEngine_ParticleSystem_Particle_ src, NativeArray_1_UnityEngine_ParticleSystem_Particle_ dst, int32_t length, MethodInfo * method)); @@ -176805,121 +194649,140 @@ DO_APP_FUNC(0x0180A620, void, NativeArray_1_UnityEngine_ParticleSystem_Particle_ DO_APP_FUNC(0x0180A6D0, void, NativeArray_1_UnityEngine_ParticleSystem_Particle__Copy_4, (NativeArray_1_UnityEngine_ParticleSystem_Particle_ src, int32_t srcIndex, NativeArray_1_UnityEngine_ParticleSystem_Particle_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A990, void, NativeArray_1_UnityEngine_ParticleSystem_Particle__Copy_5, (NativeArray_1_UnityEngine_ParticleSystem_Particle_ src, int32_t srcIndex, ParticleSystem_Particle__Array * dst, int32_t dstIndex, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x0180A820, void, NativeArray_1_UnityEngine_ParticleSystem_Particle__Copy_6, (ParticleSystem_Particle__Array * src, int32_t srcIndex, NativeArray_1_UnityEngine_ParticleSystem_Particle_ dst, int32_t dstIndex, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01809FE0, void, NativeArray_1_UnityEngine_ParticleSystem_Particle__CopyFrom, (NativeArray_1_UnityEngine_ParticleSystem_Particle___Boxed * __this, NativeArray_1_UnityEngine_ParticleSystem_Particle_ array, MethodInfo * method)); -DO_APP_FUNC(0x01810170, void, NativeArray_1_UnityEngine_ParticleSystem_Particle__Dispose, (NativeArray_1_UnityEngine_ParticleSystem_Particle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_UnityEngine_ParticleSystem_Particle__Equals, (NativeArray_1_UnityEngine_ParticleSystem_Particle___Boxed * __this, NativeArray_1_UnityEngine_ParticleSystem_Particle_ other, MethodInfo * method)); -DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_UnityEngine_ParticleSystem_Particle__Equals_1, (NativeArray_1_UnityEngine_ParticleSystem_Particle___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x01810250, NativeArray_1_T_Enumerator_UnityEngine_ParticleSystem_Particle_, NativeArray_1_UnityEngine_ParticleSystem_Particle__GetEnumerator, (NativeArray_1_UnityEngine_ParticleSystem_Particle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_UnityEngine_ParticleSystem_Particle__GetHashCode, (NativeArray_1_UnityEngine_ParticleSystem_Particle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01810380, IEnumerator_1_UnityEngine_ParticleSystem_Particle_ *, NativeArray_1_UnityEngine_ParticleSystem_Particle__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_UnityEngine_ParticleSystem_Particle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018104C0, IEnumerator *, NativeArray_1_UnityEngine_ParticleSystem_Particle__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_UnityEngine_ParticleSystem_Particle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180A070, ParticleSystem_Particle__Array *, NativeArray_1_UnityEngine_ParticleSystem_Particle__ToArray, (NativeArray_1_UnityEngine_ParticleSystem_Particle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_UnityEngine_ParticleSystem_Particle__get_IsCreated, (NativeArray_1_UnityEngine_ParticleSystem_Particle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0180FF60, ParticleSystem_Particle, NativeArray_1_UnityEngine_ParticleSystem_Particle__get_Item, (NativeArray_1_UnityEngine_ParticleSystem_Particle___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_UnityEngine_ParticleSystem_Particle__get_Length, (NativeArray_1_UnityEngine_ParticleSystem_Particle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01810070, void, NativeArray_1_UnityEngine_ParticleSystem_Particle__set_Item, (NativeArray_1_UnityEngine_ParticleSystem_Particle___Boxed * __this, int32_t index, ParticleSystem_Particle value, MethodInfo * method)); -DO_APP_FUNC(0x018105E0, void, NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange___ctor, (NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange___Boxed * __this, NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange_ array, MethodInfo * method)); -DO_APP_FUNC(0x01810730, void, NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange___ctor_1, (NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange___Boxed * __this, NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange_ array, int32_t start, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x018105C0, void, NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange___ctor_2, (NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange___Boxed * __this, NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange_ slice, int32_t start, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01810920, void, NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange__CopyFrom, (NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange___Boxed * __this, NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange_ slice, MethodInfo * method)); -DO_APP_FUNC(0x01810AC0, void, NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange__CopyFrom_1, (NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange___Boxed * __this, DrawBufferRange__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x01810DC0, bool, NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange__Equals, (NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange___Boxed * __this, NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange_ other, MethodInfo * method)); -DO_APP_FUNC(0x01810DE0, bool, NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange__Equals_1, (NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x01810C20, NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_DrawBufferRange_, NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange__GetEnumerator, (NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01810EE0, int32_t, NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange__GetHashCode, (NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01810C80, IEnumerator_1_UnityEngine_UIElements_UIR_DrawBufferRange_ *, NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01810D10, IEnumerator *, NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange__System_Collections_IEnumerable_GetEnumerator, (NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018107D0, DrawBufferRange, NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange__get_Item, (NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01810C10, int32_t, NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange__get_Length, (NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471920, int32_t, NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange__get_Stride, (NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01809FE0, void, NativeArray_1_UnityEngine_ParticleSystem_Particle__CopyFrom, (NativeArray_1_UnityEngine_ParticleSystem_Particle_ * __this, NativeArray_1_UnityEngine_ParticleSystem_Particle_ array, MethodInfo * method)); +DO_APP_FUNC(0x01810170, void, NativeArray_1_UnityEngine_ParticleSystem_Particle__Dispose, (NativeArray_1_UnityEngine_ParticleSystem_Particle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11D78, NativeArray_1_UnityEngine_ParticleSystem_Particle__Dispose__MethodInfo); +DO_APP_FUNC(0x0180A2C0, bool, NativeArray_1_UnityEngine_ParticleSystem_Particle__Equals, (NativeArray_1_UnityEngine_ParticleSystem_Particle_ * __this, NativeArray_1_UnityEngine_ParticleSystem_Particle_ other, MethodInfo * method)); +DO_APP_FUNC(0x0180A2E0, bool, NativeArray_1_UnityEngine_ParticleSystem_Particle__Equals_1, (NativeArray_1_UnityEngine_ParticleSystem_Particle_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x01810250, NativeArray_1_T_Enumerator_UnityEngine_ParticleSystem_Particle_, NativeArray_1_UnityEngine_ParticleSystem_Particle__GetEnumerator, (NativeArray_1_UnityEngine_ParticleSystem_Particle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A3E0, int32_t, NativeArray_1_UnityEngine_ParticleSystem_Particle__GetHashCode, (NativeArray_1_UnityEngine_ParticleSystem_Particle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01810380, IEnumerator_1_UnityEngine_ParticleSystem_Particle_ *, NativeArray_1_UnityEngine_ParticleSystem_Particle__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeArray_1_UnityEngine_ParticleSystem_Particle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x018104C0, IEnumerator *, NativeArray_1_UnityEngine_ParticleSystem_Particle__System_Collections_IEnumerable_GetEnumerator, (NativeArray_1_UnityEngine_ParticleSystem_Particle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180A070, ParticleSystem_Particle__Array *, NativeArray_1_UnityEngine_ParticleSystem_Particle__ToArray, (NativeArray_1_UnityEngine_ParticleSystem_Particle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01809EF0, bool, NativeArray_1_UnityEngine_ParticleSystem_Particle__get_IsCreated, (NativeArray_1_UnityEngine_ParticleSystem_Particle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0180FF60, ParticleSystem_Particle, NativeArray_1_UnityEngine_ParticleSystem_Particle__get_Item, (NativeArray_1_UnityEngine_ParticleSystem_Particle_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x01809D80, int32_t, NativeArray_1_UnityEngine_ParticleSystem_Particle__get_Length, (NativeArray_1_UnityEngine_ParticleSystem_Particle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01810070, void, NativeArray_1_UnityEngine_ParticleSystem_Particle__set_Item, (NativeArray_1_UnityEngine_ParticleSystem_Particle_ * __this, int32_t index, ParticleSystem_Particle value, MethodInfo * method)); +DO_APP_FUNC(0x018105E0, void, NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange___ctor, (NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange_ * __this, NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange_ array, MethodInfo * method)); +DO_APP_FUNC(0x01810730, void, NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange___ctor_1, (NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange_ * __this, NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange_ array, int32_t start, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x018105C0, void, NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange___ctor_2, (NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange_ * __this, NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange_ slice, int32_t start, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x01810920, void, NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange__CopyFrom, (NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange_ * __this, NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange_ slice, MethodInfo * method)); +DO_APP_FUNC(0x01810AC0, void, NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange__CopyFrom_1, (NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange_ * __this, DrawBufferRange__Array * array, MethodInfo * method)); +DO_APP_FUNC(0x01810DC0, bool, NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange__Equals, (NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange_ * __this, NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange_ other, MethodInfo * method)); +DO_APP_FUNC(0x01810DE0, bool, NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange__Equals_1, (NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x01810C20, NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_DrawBufferRange_, NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange__GetEnumerator, (NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01810EE0, int32_t, NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange__GetHashCode, (NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01810C80, IEnumerator_1_UnityEngine_UIElements_UIR_DrawBufferRange_ *, NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01810D10, IEnumerator *, NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange__System_Collections_IEnumerable_GetEnumerator, (NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x018107D0, DrawBufferRange, NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange__get_Item, (NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x01810C10, int32_t, NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange__get_Length, (NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D037D8, NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange__get_Length__MethodInfo); +DO_APP_FUNC(0x00471920, int32_t, NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange__get_Stride, (NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01810640, NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange_, NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange__op_Implicit, (NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange_ array, MethodInfo * method)); DO_APP_FUNC(0x01810F00, bool, NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange__op_Inequality, (NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange_ left, NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange_ right, MethodInfo * method)); -DO_APP_FUNC(0x01810880, void, NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange__set_Item, (NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange___Boxed * __this, int32_t index, DrawBufferRange value, MethodInfo * method)); -DO_APP_FUNC(0x018105E0, void, NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___ctor, (NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___Boxed * __this, NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ array, MethodInfo * method)); -DO_APP_FUNC(0x01810730, void, NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___ctor_1, (NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___Boxed * __this, NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ array, int32_t start, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x018105C0, void, NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___ctor_2, (NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___Boxed * __this, NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ slice, int32_t start, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01810920, void, NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__CopyFrom, (NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___Boxed * __this, NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ slice, MethodInfo * method)); -DO_APP_FUNC(0x01810AC0, void, NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__CopyFrom_1, (NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___Boxed * __this, GfxUpdateBufferRange__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x01810DC0, bool, NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__Equals, (NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___Boxed * __this, NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ other, MethodInfo * method)); -DO_APP_FUNC(0x01810DE0, bool, NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__Equals_1, (NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x01810C20, NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_, NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__GetEnumerator, (NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01810EE0, int32_t, NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__GetHashCode, (NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01810C80, IEnumerator_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ *, NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01810D10, IEnumerator *, NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__System_Collections_IEnumerable_GetEnumerator, (NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018107D0, GfxUpdateBufferRange, NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__get_Item, (NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01810C10, int32_t, NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__get_Length, (NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471920, int32_t, NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__get_Stride, (NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01810880, void, NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange__set_Item, (NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange_ * __this, int32_t index, DrawBufferRange value, MethodInfo * method)); +DO_APP_FUNC(0x018105E0, void, NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___ctor, (NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ * __this, NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ array, MethodInfo * method)); +DO_APP_FUNC(0x01810730, void, NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___ctor_1, (NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ * __this, NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ array, int32_t start, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x018105C0, void, NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___ctor_2, (NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ * __this, NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ slice, int32_t start, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x01810920, void, NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__CopyFrom, (NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ * __this, NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ slice, MethodInfo * method)); +DO_APP_FUNC(0x01810AC0, void, NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__CopyFrom_1, (NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ * __this, GfxUpdateBufferRange__Array * array, MethodInfo * method)); +DO_APP_FUNC(0x01810DC0, bool, NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__Equals, (NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ * __this, NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ other, MethodInfo * method)); +DO_APP_FUNC(0x01810DE0, bool, NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__Equals_1, (NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x01810C20, NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_, NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__GetEnumerator, (NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01810EE0, int32_t, NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__GetHashCode, (NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01810C80, IEnumerator_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ *, NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01810D10, IEnumerator *, NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__System_Collections_IEnumerable_GetEnumerator, (NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x018107D0, GfxUpdateBufferRange, NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__get_Item, (NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x01810C10, int32_t, NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__get_Length, (NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2DA8, NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__get_Length__MethodInfo); +DO_APP_FUNC(0x00471920, int32_t, NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__get_Stride, (NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01810640, NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_, NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__op_Implicit, (NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ array, MethodInfo * method)); DO_APP_FUNC(0x01810F00, bool, NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__op_Inequality, (NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ left, NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ right, MethodInfo * method)); -DO_APP_FUNC(0x01810880, void, NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__set_Item, (NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___Boxed * __this, int32_t index, GfxUpdateBufferRange value, MethodInfo * method)); -DO_APP_FUNC(0x018105E0, void, NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4___ctor, (NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4___Boxed * __this, NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4_ array, MethodInfo * method)); -DO_APP_FUNC(0x01810730, void, NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4___ctor_1, (NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4___Boxed * __this, NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4_ array, int32_t start, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x018105C0, void, NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4___ctor_2, (NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4___Boxed * __this, NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4_ slice, int32_t start, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01810920, void, NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4__CopyFrom, (NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4___Boxed * __this, NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4_ slice, MethodInfo * method)); -DO_APP_FUNC(0x01810AC0, void, NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4__CopyFrom_1, (NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4___Boxed * __this, Transform3x4__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x01810DC0, bool, NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4__Equals, (NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4___Boxed * __this, NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4_ other, MethodInfo * method)); -DO_APP_FUNC(0x01810DE0, bool, NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4__Equals_1, (NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x01810C20, NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_Transform3x4_, NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4__GetEnumerator, (NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01810EE0, int32_t, NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4__GetHashCode, (NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01810C80, IEnumerator_1_UnityEngine_UIElements_UIR_Transform3x4_ *, NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01810D10, IEnumerator *, NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4__System_Collections_IEnumerable_GetEnumerator, (NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01810F60, Transform3x4, NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4__get_Item, (NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01810C10, int32_t, NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4__get_Length, (NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471920, int32_t, NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4__get_Stride, (NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01810880, void, NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__set_Item, (NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ * __this, int32_t index, GfxUpdateBufferRange value, MethodInfo * method)); +DO_APP_FUNC(0x018105E0, void, NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4___ctor, (NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4_ * __this, NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4_ array, MethodInfo * method)); +DO_APP_FUNC(0x01810730, void, NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4___ctor_1, (NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4_ * __this, NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4_ array, int32_t start, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x018105C0, void, NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4___ctor_2, (NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4_ * __this, NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4_ slice, int32_t start, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x01810920, void, NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4__CopyFrom, (NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4_ * __this, NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4_ slice, MethodInfo * method)); +DO_APP_FUNC(0x01810AC0, void, NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4__CopyFrom_1, (NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4_ * __this, Transform3x4__Array * array, MethodInfo * method)); +DO_APP_FUNC(0x01810DC0, bool, NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4__Equals, (NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4_ * __this, NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4_ other, MethodInfo * method)); +DO_APP_FUNC(0x01810DE0, bool, NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4__Equals_1, (NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x01810C20, NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_Transform3x4_, NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4__GetEnumerator, (NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01810EE0, int32_t, NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4__GetHashCode, (NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01810C80, IEnumerator_1_UnityEngine_UIElements_UIR_Transform3x4_ *, NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01810D10, IEnumerator *, NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4__System_Collections_IEnumerable_GetEnumerator, (NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01810F60, Transform3x4, NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4__get_Item, (NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x01810C10, int32_t, NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4__get_Length, (NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7B50, NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4__get_Length__MethodInfo); +DO_APP_FUNC(0x00471920, int32_t, NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4__get_Stride, (NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01810640, NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4_, NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4__op_Implicit, (NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4_ array, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD80D0, NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4__op_Implicit__MethodInfo); DO_APP_FUNC(0x01810F00, bool, NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4__op_Inequality, (NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4_ left, NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4_ right, MethodInfo * method)); -DO_APP_FUNC(0x01811030, void, NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4__set_Item, (NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4___Boxed * __this, int32_t index, Transform3x4 value, MethodInfo * method)); -DO_APP_FUNC(0x018110F0, void, NativeSlice_1_System_UInt16___ctor, (NativeSlice_1_System_UInt16___Boxed * __this, NativeArray_1_System_UInt16_ array, MethodInfo * method)); -DO_APP_FUNC(0x01810730, void, NativeSlice_1_System_UInt16___ctor_1, (NativeSlice_1_System_UInt16___Boxed * __this, NativeArray_1_System_UInt16_ array, int32_t start, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x018105C0, void, NativeSlice_1_System_UInt16___ctor_2, (NativeSlice_1_System_UInt16___Boxed * __this, NativeSlice_1_System_UInt16_ slice, int32_t start, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01810920, void, NativeSlice_1_System_UInt16__CopyFrom, (NativeSlice_1_System_UInt16___Boxed * __this, NativeSlice_1_System_UInt16_ slice, MethodInfo * method)); -DO_APP_FUNC(0x01810AC0, void, NativeSlice_1_System_UInt16__CopyFrom_1, (NativeSlice_1_System_UInt16___Boxed * __this, UInt16__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x01810DC0, bool, NativeSlice_1_System_UInt16__Equals, (NativeSlice_1_System_UInt16___Boxed * __this, NativeSlice_1_System_UInt16_ other, MethodInfo * method)); -DO_APP_FUNC(0x01810DE0, bool, NativeSlice_1_System_UInt16__Equals_1, (NativeSlice_1_System_UInt16___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x01810C20, NativeSlice_1_T_Enumerator_System_UInt16_, NativeSlice_1_System_UInt16__GetEnumerator, (NativeSlice_1_System_UInt16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01810EE0, int32_t, NativeSlice_1_System_UInt16__GetHashCode, (NativeSlice_1_System_UInt16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01810C80, IEnumerator_1_System_UInt16_ *, NativeSlice_1_System_UInt16__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeSlice_1_System_UInt16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01810D10, IEnumerator *, NativeSlice_1_System_UInt16__System_Collections_IEnumerable_GetEnumerator, (NativeSlice_1_System_UInt16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018111B0, uint16_t, NativeSlice_1_System_UInt16__get_Item, (NativeSlice_1_System_UInt16___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01810C10, int32_t, NativeSlice_1_System_UInt16__get_Length, (NativeSlice_1_System_UInt16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471920, int32_t, NativeSlice_1_System_UInt16__get_Stride, (NativeSlice_1_System_UInt16___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01811030, void, NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4__set_Item, (NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4_ * __this, int32_t index, Transform3x4 value, MethodInfo * method)); +DO_APP_FUNC(0x018110F0, void, NativeSlice_1_System_UInt16___ctor, (NativeSlice_1_System_UInt16_ * __this, NativeArray_1_System_UInt16_ array, MethodInfo * method)); +DO_APP_FUNC(0x01810730, void, NativeSlice_1_System_UInt16___ctor_1, (NativeSlice_1_System_UInt16_ * __this, NativeArray_1_System_UInt16_ array, int32_t start, int32_t length, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7BD8, NativeSlice_1_System_UInt16___ctor_1__MethodInfo); +DO_APP_FUNC(0x018105C0, void, NativeSlice_1_System_UInt16___ctor_2, (NativeSlice_1_System_UInt16_ * __this, NativeSlice_1_System_UInt16_ slice, int32_t start, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x01810920, void, NativeSlice_1_System_UInt16__CopyFrom, (NativeSlice_1_System_UInt16_ * __this, NativeSlice_1_System_UInt16_ slice, MethodInfo * method)); +DO_APP_FUNC(0x01810AC0, void, NativeSlice_1_System_UInt16__CopyFrom_1, (NativeSlice_1_System_UInt16_ * __this, UInt16__Array * array, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE62F8, NativeSlice_1_System_UInt16__CopyFrom_1__MethodInfo); +DO_APP_FUNC(0x01810DC0, bool, NativeSlice_1_System_UInt16__Equals, (NativeSlice_1_System_UInt16_ * __this, NativeSlice_1_System_UInt16_ other, MethodInfo * method)); +DO_APP_FUNC(0x01810DE0, bool, NativeSlice_1_System_UInt16__Equals_1, (NativeSlice_1_System_UInt16_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x01810C20, NativeSlice_1_T_Enumerator_System_UInt16_, NativeSlice_1_System_UInt16__GetEnumerator, (NativeSlice_1_System_UInt16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01810EE0, int32_t, NativeSlice_1_System_UInt16__GetHashCode, (NativeSlice_1_System_UInt16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01810C80, IEnumerator_1_System_UInt16_ *, NativeSlice_1_System_UInt16__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeSlice_1_System_UInt16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01810D10, IEnumerator *, NativeSlice_1_System_UInt16__System_Collections_IEnumerable_GetEnumerator, (NativeSlice_1_System_UInt16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x018111B0, uint16_t, NativeSlice_1_System_UInt16__get_Item, (NativeSlice_1_System_UInt16_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7BE8, NativeSlice_1_System_UInt16__get_Item__MethodInfo); +DO_APP_FUNC(0x01810C10, int32_t, NativeSlice_1_System_UInt16__get_Length, (NativeSlice_1_System_UInt16_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7A88, NativeSlice_1_System_UInt16__get_Length__MethodInfo); +DO_APP_FUNC(0x00471920, int32_t, NativeSlice_1_System_UInt16__get_Stride, (NativeSlice_1_System_UInt16_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01810640, NativeSlice_1_System_UInt16_, NativeSlice_1_System_UInt16__op_Implicit, (NativeArray_1_System_UInt16_ array, MethodInfo * method)); DO_APP_FUNC(0x01810F00, bool, NativeSlice_1_System_UInt16__op_Inequality, (NativeSlice_1_System_UInt16_ left, NativeSlice_1_System_UInt16_ right, MethodInfo * method)); -DO_APP_FUNC(0x01811250, void, NativeSlice_1_System_UInt16__set_Item, (NativeSlice_1_System_UInt16___Boxed * __this, int32_t index, uint16_t value, MethodInfo * method)); -DO_APP_FUNC(0x018105E0, void, NativeSlice_1_UnityEngine_Vector4___ctor, (NativeSlice_1_UnityEngine_Vector4___Boxed * __this, NativeArray_1_UnityEngine_Vector4_ array, MethodInfo * method)); -DO_APP_FUNC(0x01810730, void, NativeSlice_1_UnityEngine_Vector4___ctor_1, (NativeSlice_1_UnityEngine_Vector4___Boxed * __this, NativeArray_1_UnityEngine_Vector4_ array, int32_t start, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x018105C0, void, NativeSlice_1_UnityEngine_Vector4___ctor_2, (NativeSlice_1_UnityEngine_Vector4___Boxed * __this, NativeSlice_1_UnityEngine_Vector4_ slice, int32_t start, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01810920, void, NativeSlice_1_UnityEngine_Vector4__CopyFrom, (NativeSlice_1_UnityEngine_Vector4___Boxed * __this, NativeSlice_1_UnityEngine_Vector4_ slice, MethodInfo * method)); -DO_APP_FUNC(0x01810AC0, void, NativeSlice_1_UnityEngine_Vector4__CopyFrom_1, (NativeSlice_1_UnityEngine_Vector4___Boxed * __this, Vector4__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x01810DC0, bool, NativeSlice_1_UnityEngine_Vector4__Equals, (NativeSlice_1_UnityEngine_Vector4___Boxed * __this, NativeSlice_1_UnityEngine_Vector4_ other, MethodInfo * method)); -DO_APP_FUNC(0x01810DE0, bool, NativeSlice_1_UnityEngine_Vector4__Equals_1, (NativeSlice_1_UnityEngine_Vector4___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x01810C20, NativeSlice_1_T_Enumerator_UnityEngine_Vector4_, NativeSlice_1_UnityEngine_Vector4__GetEnumerator, (NativeSlice_1_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01810EE0, int32_t, NativeSlice_1_UnityEngine_Vector4__GetHashCode, (NativeSlice_1_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01810C80, IEnumerator_1_UnityEngine_Vector4_ *, NativeSlice_1_UnityEngine_Vector4__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeSlice_1_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01810D10, IEnumerator *, NativeSlice_1_UnityEngine_Vector4__System_Collections_IEnumerable_GetEnumerator, (NativeSlice_1_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018107D0, Vector4, NativeSlice_1_UnityEngine_Vector4__get_Item, (NativeSlice_1_UnityEngine_Vector4___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01810C10, int32_t, NativeSlice_1_UnityEngine_Vector4__get_Length, (NativeSlice_1_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471920, int32_t, NativeSlice_1_UnityEngine_Vector4__get_Stride, (NativeSlice_1_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD77C0, NativeSlice_1_System_UInt16__op_Inequality__MethodInfo); +DO_APP_FUNC(0x01811250, void, NativeSlice_1_System_UInt16__set_Item, (NativeSlice_1_System_UInt16_ * __this, int32_t index, uint16_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7BD0, NativeSlice_1_System_UInt16__set_Item__MethodInfo); +DO_APP_FUNC(0x018105E0, void, NativeSlice_1_UnityEngine_Vector4___ctor, (NativeSlice_1_UnityEngine_Vector4_ * __this, NativeArray_1_UnityEngine_Vector4_ array, MethodInfo * method)); +DO_APP_FUNC(0x01810730, void, NativeSlice_1_UnityEngine_Vector4___ctor_1, (NativeSlice_1_UnityEngine_Vector4_ * __this, NativeArray_1_UnityEngine_Vector4_ array, int32_t start, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x018105C0, void, NativeSlice_1_UnityEngine_Vector4___ctor_2, (NativeSlice_1_UnityEngine_Vector4_ * __this, NativeSlice_1_UnityEngine_Vector4_ slice, int32_t start, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x01810920, void, NativeSlice_1_UnityEngine_Vector4__CopyFrom, (NativeSlice_1_UnityEngine_Vector4_ * __this, NativeSlice_1_UnityEngine_Vector4_ slice, MethodInfo * method)); +DO_APP_FUNC(0x01810AC0, void, NativeSlice_1_UnityEngine_Vector4__CopyFrom_1, (NativeSlice_1_UnityEngine_Vector4_ * __this, Vector4__Array * array, MethodInfo * method)); +DO_APP_FUNC(0x01810DC0, bool, NativeSlice_1_UnityEngine_Vector4__Equals, (NativeSlice_1_UnityEngine_Vector4_ * __this, NativeSlice_1_UnityEngine_Vector4_ other, MethodInfo * method)); +DO_APP_FUNC(0x01810DE0, bool, NativeSlice_1_UnityEngine_Vector4__Equals_1, (NativeSlice_1_UnityEngine_Vector4_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x01810C20, NativeSlice_1_T_Enumerator_UnityEngine_Vector4_, NativeSlice_1_UnityEngine_Vector4__GetEnumerator, (NativeSlice_1_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01810EE0, int32_t, NativeSlice_1_UnityEngine_Vector4__GetHashCode, (NativeSlice_1_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01810C80, IEnumerator_1_UnityEngine_Vector4_ *, NativeSlice_1_UnityEngine_Vector4__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeSlice_1_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01810D10, IEnumerator *, NativeSlice_1_UnityEngine_Vector4__System_Collections_IEnumerable_GetEnumerator, (NativeSlice_1_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x018107D0, Vector4, NativeSlice_1_UnityEngine_Vector4__get_Item, (NativeSlice_1_UnityEngine_Vector4_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x01810C10, int32_t, NativeSlice_1_UnityEngine_Vector4__get_Length, (NativeSlice_1_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7B88, NativeSlice_1_UnityEngine_Vector4__get_Length__MethodInfo); +DO_APP_FUNC(0x00471920, int32_t, NativeSlice_1_UnityEngine_Vector4__get_Stride, (NativeSlice_1_UnityEngine_Vector4_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01810640, NativeSlice_1_UnityEngine_Vector4_, NativeSlice_1_UnityEngine_Vector4__op_Implicit, (NativeArray_1_UnityEngine_Vector4_ array, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD80A0, NativeSlice_1_UnityEngine_Vector4__op_Implicit__MethodInfo); DO_APP_FUNC(0x01810F00, bool, NativeSlice_1_UnityEngine_Vector4__op_Inequality, (NativeSlice_1_UnityEngine_Vector4_ left, NativeSlice_1_UnityEngine_Vector4_ right, MethodInfo * method)); -DO_APP_FUNC(0x01810880, void, NativeSlice_1_UnityEngine_Vector4__set_Item, (NativeSlice_1_UnityEngine_Vector4___Boxed * __this, int32_t index, Vector4 value, MethodInfo * method)); -DO_APP_FUNC(0x018110F0, void, NativeSlice_1_UnityEngine_UIElements_Vertex___ctor, (NativeSlice_1_UnityEngine_UIElements_Vertex___Boxed * __this, NativeArray_1_UnityEngine_UIElements_Vertex_ array, MethodInfo * method)); -DO_APP_FUNC(0x01810730, void, NativeSlice_1_UnityEngine_UIElements_Vertex___ctor_1, (NativeSlice_1_UnityEngine_UIElements_Vertex___Boxed * __this, NativeArray_1_UnityEngine_UIElements_Vertex_ array, int32_t start, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x018105C0, void, NativeSlice_1_UnityEngine_UIElements_Vertex___ctor_2, (NativeSlice_1_UnityEngine_UIElements_Vertex___Boxed * __this, NativeSlice_1_UnityEngine_UIElements_Vertex_ slice, int32_t start, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01810920, void, NativeSlice_1_UnityEngine_UIElements_Vertex__CopyFrom, (NativeSlice_1_UnityEngine_UIElements_Vertex___Boxed * __this, NativeSlice_1_UnityEngine_UIElements_Vertex_ slice, MethodInfo * method)); -DO_APP_FUNC(0x01810AC0, void, NativeSlice_1_UnityEngine_UIElements_Vertex__CopyFrom_1, (NativeSlice_1_UnityEngine_UIElements_Vertex___Boxed * __this, Vertex__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x01810DC0, bool, NativeSlice_1_UnityEngine_UIElements_Vertex__Equals, (NativeSlice_1_UnityEngine_UIElements_Vertex___Boxed * __this, NativeSlice_1_UnityEngine_UIElements_Vertex_ other, MethodInfo * method)); -DO_APP_FUNC(0x01810DE0, bool, NativeSlice_1_UnityEngine_UIElements_Vertex__Equals_1, (NativeSlice_1_UnityEngine_UIElements_Vertex___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x01810C20, NativeSlice_1_T_Enumerator_UnityEngine_UIElements_Vertex_, NativeSlice_1_UnityEngine_UIElements_Vertex__GetEnumerator, (NativeSlice_1_UnityEngine_UIElements_Vertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01810EE0, int32_t, NativeSlice_1_UnityEngine_UIElements_Vertex__GetHashCode, (NativeSlice_1_UnityEngine_UIElements_Vertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01810C80, IEnumerator_1_UnityEngine_UIElements_Vertex_ *, NativeSlice_1_UnityEngine_UIElements_Vertex__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeSlice_1_UnityEngine_UIElements_Vertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01810D10, IEnumerator *, NativeSlice_1_UnityEngine_UIElements_Vertex__System_Collections_IEnumerable_GetEnumerator, (NativeSlice_1_UnityEngine_UIElements_Vertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018112F0, Vertex, NativeSlice_1_UnityEngine_UIElements_Vertex__get_Item, (NativeSlice_1_UnityEngine_UIElements_Vertex___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01810C10, int32_t, NativeSlice_1_UnityEngine_UIElements_Vertex__get_Length, (NativeSlice_1_UnityEngine_UIElements_Vertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471920, int32_t, NativeSlice_1_UnityEngine_UIElements_Vertex__get_Stride, (NativeSlice_1_UnityEngine_UIElements_Vertex___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01810880, void, NativeSlice_1_UnityEngine_Vector4__set_Item, (NativeSlice_1_UnityEngine_Vector4_ * __this, int32_t index, Vector4 value, MethodInfo * method)); +DO_APP_FUNC(0x018110F0, void, NativeSlice_1_UnityEngine_UIElements_Vertex___ctor, (NativeSlice_1_UnityEngine_UIElements_Vertex_ * __this, NativeArray_1_UnityEngine_UIElements_Vertex_ array, MethodInfo * method)); +DO_APP_FUNC(0x01810730, void, NativeSlice_1_UnityEngine_UIElements_Vertex___ctor_1, (NativeSlice_1_UnityEngine_UIElements_Vertex_ * __this, NativeArray_1_UnityEngine_UIElements_Vertex_ array, int32_t start, int32_t length, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7C50, NativeSlice_1_UnityEngine_UIElements_Vertex___ctor_1__MethodInfo); +DO_APP_FUNC(0x018105C0, void, NativeSlice_1_UnityEngine_UIElements_Vertex___ctor_2, (NativeSlice_1_UnityEngine_UIElements_Vertex_ * __this, NativeSlice_1_UnityEngine_UIElements_Vertex_ slice, int32_t start, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x01810920, void, NativeSlice_1_UnityEngine_UIElements_Vertex__CopyFrom, (NativeSlice_1_UnityEngine_UIElements_Vertex_ * __this, NativeSlice_1_UnityEngine_UIElements_Vertex_ slice, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7A98, NativeSlice_1_UnityEngine_UIElements_Vertex__CopyFrom__MethodInfo); +DO_APP_FUNC(0x01810AC0, void, NativeSlice_1_UnityEngine_UIElements_Vertex__CopyFrom_1, (NativeSlice_1_UnityEngine_UIElements_Vertex_ * __this, Vertex__Array * array, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6308, NativeSlice_1_UnityEngine_UIElements_Vertex__CopyFrom_1__MethodInfo); +DO_APP_FUNC(0x01810DC0, bool, NativeSlice_1_UnityEngine_UIElements_Vertex__Equals, (NativeSlice_1_UnityEngine_UIElements_Vertex_ * __this, NativeSlice_1_UnityEngine_UIElements_Vertex_ other, MethodInfo * method)); +DO_APP_FUNC(0x01810DE0, bool, NativeSlice_1_UnityEngine_UIElements_Vertex__Equals_1, (NativeSlice_1_UnityEngine_UIElements_Vertex_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x01810C20, NativeSlice_1_T_Enumerator_UnityEngine_UIElements_Vertex_, NativeSlice_1_UnityEngine_UIElements_Vertex__GetEnumerator, (NativeSlice_1_UnityEngine_UIElements_Vertex_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01810EE0, int32_t, NativeSlice_1_UnityEngine_UIElements_Vertex__GetHashCode, (NativeSlice_1_UnityEngine_UIElements_Vertex_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01810C80, IEnumerator_1_UnityEngine_UIElements_Vertex_ *, NativeSlice_1_UnityEngine_UIElements_Vertex__System_Collections_Generic_IEnumerable_T__GetEnumerator, (NativeSlice_1_UnityEngine_UIElements_Vertex_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01810D10, IEnumerator *, NativeSlice_1_UnityEngine_UIElements_Vertex__System_Collections_IEnumerable_GetEnumerator, (NativeSlice_1_UnityEngine_UIElements_Vertex_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x018112F0, Vertex, NativeSlice_1_UnityEngine_UIElements_Vertex__get_Item, (NativeSlice_1_UnityEngine_UIElements_Vertex_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD77C8, NativeSlice_1_UnityEngine_UIElements_Vertex__get_Item__MethodInfo); +DO_APP_FUNC(0x01810C10, int32_t, NativeSlice_1_UnityEngine_UIElements_Vertex__get_Length, (NativeSlice_1_UnityEngine_UIElements_Vertex_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7838, NativeSlice_1_UnityEngine_UIElements_Vertex__get_Length__MethodInfo); +DO_APP_FUNC(0x00471920, int32_t, NativeSlice_1_UnityEngine_UIElements_Vertex__get_Stride, (NativeSlice_1_UnityEngine_UIElements_Vertex_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01810640, NativeSlice_1_UnityEngine_UIElements_Vertex_, NativeSlice_1_UnityEngine_UIElements_Vertex__op_Implicit, (NativeArray_1_UnityEngine_UIElements_Vertex_ array, MethodInfo * method)); DO_APP_FUNC(0x01810F00, bool, NativeSlice_1_UnityEngine_UIElements_Vertex__op_Inequality, (NativeSlice_1_UnityEngine_UIElements_Vertex_ left, NativeSlice_1_UnityEngine_UIElements_Vertex_ right, MethodInfo * method)); -DO_APP_FUNC(0x018113D0, void, NativeSlice_1_UnityEngine_UIElements_Vertex__set_Item, (NativeSlice_1_UnityEngine_UIElements_Vertex___Boxed * __this, int32_t index, Vertex value, MethodInfo * method)); +DO_APP_FUNC(0x018113D0, void, NativeSlice_1_UnityEngine_UIElements_Vertex__set_Item, (NativeSlice_1_UnityEngine_UIElements_Vertex_ * __this, int32_t index, Vertex value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD77D0, NativeSlice_1_UnityEngine_UIElements_Vertex__set_Item__MethodInfo); DO_APP_FUNC(0x018114A0, void, NavigationEventBase_1_System_Object___ctor, (NavigationEventBase_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010FC070, void, NavigationEventBase_1_System_Object__Init, (NavigationEventBase_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01811520, void, NavigationEventBase_1_System_Object__LocalInit, (NavigationEventBase_1_System_Object_ * __this, MethodInfo * method)); @@ -176927,50 +194790,68 @@ DO_APP_FUNC(0x01811550, void, NetworkArray_Objects_1_System_Object___ctor, (Netw DO_APP_FUNC(0x015F41E0, IEnumerator_1_System_Object_ *, NetworkArray_Objects_1_System_Object__GetEnumerator, (NetworkArray_Objects_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0147D620, IEnumerator *, NetworkArray_Objects_1_System_Object__System_Collections_IEnumerable_GetEnumerator, (NetworkArray_Objects_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01811620, Object *, NetworkArray_Objects_1_System_Object__get_Item, (NetworkArray_Objects_1_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11C68, NetworkArray_Objects_1_System_Object__get_Item__MethodInfo); DO_APP_FUNC(0x00439170, int32_t, NetworkArray_Objects_1_System_Object__get_Length, (NetworkArray_Objects_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00A9F870, NetworkStorage *, NetworkArray_Objects_1_System_Object__get_Storage, (NetworkArray_Objects_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01811770, void, NetworkArray_Values_1_System_Int32___ctor, (NetworkArray_Values_1_System_Int32_ * __this, int32_t length, int32_t stride, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC28A0, NetworkArray_Values_1_System_Int32___ctor__MethodInfo); DO_APP_FUNC(0x01811980, IEnumerator_1_System_Int32_ *, NetworkArray_Values_1_System_Int32__GetEnumerator, (NetworkArray_Values_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F8EE30, IEnumerator *, NetworkArray_Values_1_System_Int32__System_Collections_IEnumerable_GetEnumerator, (NetworkArray_Values_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01811840, int32_t, NetworkArray_Values_1_System_Int32__get_Item, (NetworkArray_Values_1_System_Int32_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11C98, NetworkArray_Values_1_System_Int32__get_Item__MethodInfo); DO_APP_FUNC(0x00439170, int32_t, NetworkArray_Values_1_System_Int32__get_Length, (NetworkArray_Values_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00A9F870, NetworkStorage *, NetworkArray_Values_1_System_Int32__get_Storage, (NetworkArray_Values_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x018118C0, void, NetworkArray_Values_1_System_Int32__set_Item, (NetworkArray_Values_1_System_Int32_ * __this, int32_t index, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11C88, NetworkArray_Values_1_System_Int32__set_Item__MethodInfo); DO_APP_FUNC(0x01811A50, void, NetworkArray_Values_1_System_Object___ctor, (NetworkArray_Values_1_System_Object_ * __this, int32_t length, int32_t stride, MethodInfo * method)); DO_APP_FUNC(0x01811C60, IEnumerator_1_System_Object_ *, NetworkArray_Values_1_System_Object__GetEnumerator, (NetworkArray_Values_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F8EE30, IEnumerator *, NetworkArray_Values_1_System_Object__System_Collections_IEnumerable_GetEnumerator, (NetworkArray_Values_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01811B20, Object *, NetworkArray_Values_1_System_Object__get_Item, (NetworkArray_Values_1_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11CD8, NetworkArray_Values_1_System_Object__get_Item__MethodInfo); DO_APP_FUNC(0x00439170, int32_t, NetworkArray_Values_1_System_Object__get_Length, (NetworkArray_Values_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00A9F870, NetworkStorage *, NetworkArray_Values_1_System_Object__get_Storage, (NetworkArray_Values_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01811BA0, void, NetworkArray_Values_1_System_Object__set_Item, (NetworkArray_Values_1_System_Object_ * __this, int32_t index, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11CC8, NetworkArray_Values_1_System_Object__set_Item__MethodInfo); DO_APP_FUNC(0x01811D30, void, NetworkArray_Values_1_PrefabId___ctor, (NetworkArray_Values_1_PrefabId_ * __this, int32_t length, int32_t stride, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2890, NetworkArray_Values_1_PrefabId___ctor__MethodInfo); DO_APP_FUNC(0x01811980, IEnumerator_1_Photon_Bolt_PrefabId_ *, NetworkArray_Values_1_PrefabId__GetEnumerator, (NetworkArray_Values_1_PrefabId_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F8EE30, IEnumerator *, NetworkArray_Values_1_PrefabId__System_Collections_IEnumerable_GetEnumerator, (NetworkArray_Values_1_PrefabId_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01811E00, PrefabId, NetworkArray_Values_1_PrefabId__get_Item, (NetworkArray_Values_1_PrefabId_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11D00, NetworkArray_Values_1_PrefabId__get_Item__MethodInfo); DO_APP_FUNC(0x00439170, int32_t, NetworkArray_Values_1_PrefabId__get_Length, (NetworkArray_Values_1_PrefabId_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00A9F870, NetworkStorage *, NetworkArray_Values_1_PrefabId__get_Storage, (NetworkArray_Values_1_PrefabId_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01811E80, void, NetworkArray_Values_1_PrefabId__set_Item, (NetworkArray_Values_1_PrefabId_ * __this, int32_t index, PrefabId value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11CF0, NetworkArray_Values_1_PrefabId__set_Item__MethodInfo); DO_APP_FUNC(0x01811F40, void, NetworkArray_Values_1_UnityEngine_Quaternion___ctor, (NetworkArray_Values_1_UnityEngine_Quaternion_ * __this, int32_t length, int32_t stride, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2870, NetworkArray_Values_1_UnityEngine_Quaternion___ctor__MethodInfo); DO_APP_FUNC(0x01812170, IEnumerator_1_UnityEngine_Quaternion_ *, NetworkArray_Values_1_UnityEngine_Quaternion__GetEnumerator, (NetworkArray_Values_1_UnityEngine_Quaternion_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F8EE30, IEnumerator *, NetworkArray_Values_1_UnityEngine_Quaternion__System_Collections_IEnumerable_GetEnumerator, (NetworkArray_Values_1_UnityEngine_Quaternion_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01812010, Quaternion, NetworkArray_Values_1_UnityEngine_Quaternion__get_Item, (NetworkArray_Values_1_UnityEngine_Quaternion_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11BD0, NetworkArray_Values_1_UnityEngine_Quaternion__get_Item__MethodInfo); DO_APP_FUNC(0x00439170, int32_t, NetworkArray_Values_1_UnityEngine_Quaternion__get_Length, (NetworkArray_Values_1_UnityEngine_Quaternion_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00A9F870, NetworkStorage *, NetworkArray_Values_1_UnityEngine_Quaternion__get_Storage, (NetworkArray_Values_1_UnityEngine_Quaternion_ * __this, MethodInfo * method)); DO_APP_FUNC(0x018120A0, void, NetworkArray_Values_1_UnityEngine_Quaternion__set_Item, (NetworkArray_Values_1_UnityEngine_Quaternion_ * __this, int32_t index, Quaternion value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11BB8, NetworkArray_Values_1_UnityEngine_Quaternion__set_Item__MethodInfo); DO_APP_FUNC(0x01812240, void, NetworkArray_Values_1_System_Single___ctor, (NetworkArray_Values_1_System_Single_ * __this, int32_t length, int32_t stride, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC28C8, NetworkArray_Values_1_System_Single___ctor__MethodInfo); DO_APP_FUNC(0x01811980, IEnumerator_1_System_Single_ *, NetworkArray_Values_1_System_Single__GetEnumerator, (NetworkArray_Values_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F8EE30, IEnumerator *, NetworkArray_Values_1_System_Single__System_Collections_IEnumerable_GetEnumerator, (NetworkArray_Values_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01812310, float, NetworkArray_Values_1_System_Single__get_Item, (NetworkArray_Values_1_System_Single_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11C00, NetworkArray_Values_1_System_Single__get_Item__MethodInfo); DO_APP_FUNC(0x00439170, int32_t, NetworkArray_Values_1_System_Single__get_Length, (NetworkArray_Values_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00A9F870, NetworkStorage *, NetworkArray_Values_1_System_Single__get_Storage, (NetworkArray_Values_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01812390, void, NetworkArray_Values_1_System_Single__set_Item, (NetworkArray_Values_1_System_Single_ * __this, int32_t index, float value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11BF0, NetworkArray_Values_1_System_Single__set_Item__MethodInfo); DO_APP_FUNC(0x01812450, void, NetworkArray_Values_1_UnityEngine_Vector3___ctor, (NetworkArray_Values_1_UnityEngine_Vector3_ * __this, int32_t length, int32_t stride, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC27F0, NetworkArray_Values_1_UnityEngine_Vector3___ctor__MethodInfo); DO_APP_FUNC(0x01811C60, IEnumerator_1_UnityEngine_Vector3_ *, NetworkArray_Values_1_UnityEngine_Vector3__GetEnumerator, (NetworkArray_Values_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F8EE30, IEnumerator *, NetworkArray_Values_1_UnityEngine_Vector3__System_Collections_IEnumerable_GetEnumerator, (NetworkArray_Values_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01812520, Vector3, NetworkArray_Values_1_UnityEngine_Vector3__get_Item, (NetworkArray_Values_1_UnityEngine_Vector3_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11C28, NetworkArray_Values_1_UnityEngine_Vector3__get_Item__MethodInfo); DO_APP_FUNC(0x00439170, int32_t, NetworkArray_Values_1_UnityEngine_Vector3__get_Length, (NetworkArray_Values_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00A9F870, NetworkStorage *, NetworkArray_Values_1_UnityEngine_Vector3__get_Storage, (NetworkArray_Values_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x018125C0, void, NetworkArray_Values_1_UnityEngine_Vector3__set_Item, (NetworkArray_Values_1_UnityEngine_Vector3_ * __this, int32_t index, Vector3 value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11C18, NetworkArray_Values_1_UnityEngine_Vector3__set_Item__MethodInfo); DO_APP_FUNC(0x01812690, void, SortedSet_1_T_Node_KeyValuePair_2_System_Object_System_Char___ctor, (SortedSet_1_T_Node_KeyValuePair_2_System_Object_System_Char_ * __this, KeyValuePair_2_System_Object_System_Char_ item, NodeColor__Enum color, MethodInfo * method)); DO_APP_FUNC(0x014112B0, void, SortedSet_1_T_Node_KeyValuePair_2_System_Object_System_Char__ColorBlack, (SortedSet_1_T_Node_KeyValuePair_2_System_Object_System_Char_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01812B60, void, SortedSet_1_T_Node_KeyValuePair_2_System_Object_System_Char__ColorRed, (SortedSet_1_T_Node_KeyValuePair_2_System_Object_System_Char_ * __this, MethodInfo * method)); @@ -177094,36 +194975,53 @@ DO_APP_FUNC(0x003BCDE0, void, SortedSet_1_T_Node_System_Object__set_Right, (Sort DO_APP_FUNC(0x01813CF0, void, ConcurrentDictionary_2_TKey_TValue_Node_System_Object_System_Object___ctor, (ConcurrentDictionary_2_TKey_TValue_Node_System_Object_System_Object_ * __this, Object * key, Object * value, int32_t hashcode, ConcurrentDictionary_2_TKey_TValue_Node_System_Object_System_Object_ * next, MethodInfo * method)); DO_APP_FUNC(0x01815770, void, NonAllocDictionary_2_System_Byte_System_Object___cctor, (MethodInfo * method)); DO_APP_FUNC(0x01813ED0, void, NonAllocDictionary_2_System_Byte_System_Object___ctor, (NonAllocDictionary_2_System_Byte_System_Object_ * __this, uint32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0A68, NonAllocDictionary_2_System_Byte_System_Object___ctor__MethodInfo); DO_APP_FUNC(0x01814640, void, NonAllocDictionary_2_System_Byte_System_Object__Add, (NonAllocDictionary_2_System_Byte_System_Object_ * __this, KeyValuePair_2_System_Byte_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11B00, NonAllocDictionary_2_System_Byte_System_Object__Add__MethodInfo); DO_APP_FUNC(0x01814530, void, NonAllocDictionary_2_System_Byte_System_Object__Add_1, (NonAllocDictionary_2_System_Byte_System_Object_ * __this, uint8_t key, Object * val, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11B10, NonAllocDictionary_2_System_Byte_System_Object__Add_1__MethodInfo); DO_APP_FUNC(0x01815700, void, NonAllocDictionary_2_System_Byte_System_Object__Assert, (bool condition, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11B60, NonAllocDictionary_2_System_Byte_System_Object__Assert__MethodInfo); DO_APP_FUNC(0x01814FD0, void, NonAllocDictionary_2_System_Byte_System_Object__Clear, (NonAllocDictionary_2_System_Byte_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0A38, NonAllocDictionary_2_System_Byte_System_Object__Clear__MethodInfo); DO_APP_FUNC(0x01814130, bool, NonAllocDictionary_2_System_Byte_System_Object__Contains, (NonAllocDictionary_2_System_Byte_System_Object_ * __this, KeyValuePair_2_System_Byte_System_Object_ item, MethodInfo * method)); DO_APP_FUNC(0x018140F0, bool, NonAllocDictionary_2_System_Byte_System_Object__ContainsKey, (NonAllocDictionary_2_System_Byte_System_Object_ * __this, uint8_t key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0A28, NonAllocDictionary_2_System_Byte_System_Object__ContainsKey__MethodInfo); DO_APP_FUNC(0x01814CB0, void, NonAllocDictionary_2_System_Byte_System_Object__Expand, (NonAllocDictionary_2_System_Byte_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01814A30, int32_t, NonAllocDictionary_2_System_Byte_System_Object__FindNode, (NonAllocDictionary_2_System_Byte_System_Object_ * __this, uint8_t key, MethodInfo * method)); DO_APP_FUNC(0x01813E10, NonAllocDictionary_2_K_V_PairIterator_System_Byte_System_Object_, NonAllocDictionary_2_System_Byte_System_Object__GetEnumerator, (NonAllocDictionary_2_System_Byte_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0A10, NonAllocDictionary_2_System_Byte_System_Object__GetEnumerator__MethodInfo); DO_APP_FUNC(0x01815400, uint32_t, NonAllocDictionary_2_System_Byte_System_Object__GetNextPrime, (uint32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11B20, NonAllocDictionary_2_System_Byte_System_Object__GetNextPrime__MethodInfo); DO_APP_FUNC(0x01814AC0, void, NonAllocDictionary_2_System_Byte_System_Object__Insert, (NonAllocDictionary_2_System_Byte_System_Object_ * __this, uint8_t key, Object * val, MethodInfo * method)); DO_APP_FUNC(0x01815280, bool, NonAllocDictionary_2_System_Byte_System_Object__IsPrimeFromList, (uint32_t value, MethodInfo * method)); DO_APP_FUNC(0x01814750, bool, NonAllocDictionary_2_System_Byte_System_Object__Remove, (NonAllocDictionary_2_System_Byte_System_Object_ * __this, uint8_t key, MethodInfo * method)); DO_APP_FUNC(0x018148D0, bool, NonAllocDictionary_2_System_Byte_System_Object__Remove_1, (NonAllocDictionary_2_System_Byte_System_Object_ * __this, KeyValuePair_2_System_Byte_System_Object_ item, MethodInfo * method)); DO_APP_FUNC(0x01815030, void, NonAllocDictionary_2_System_Byte_System_Object__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_K_V___CopyTo, (NonAllocDictionary_2_System_Byte_System_Object_ * __this, KeyValuePair_2_System_Byte_System_Object___Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11B48, NonAllocDictionary_2_System_Byte_System_Object__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_K_V___CopyTo__MethodInfo); DO_APP_FUNC(0x01813EA0, ICollection_1_System_Byte__1 *, NonAllocDictionary_2_System_Byte_System_Object__System_Collections_Generic_IDictionary_K_V__get_Keys, (NonAllocDictionary_2_System_Byte_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01813E90, ICollection_1_System_Object_ *, NonAllocDictionary_2_System_Byte_System_Object__System_Collections_Generic_IDictionary_K_V__get_Values, (NonAllocDictionary_2_System_Byte_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01814980, IEnumerator_1_KeyValuePair_2_System_Byte_System_Object_ *, NonAllocDictionary_2_System_Byte_System_Object__System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_K_V___GetEnumerator, (NonAllocDictionary_2_System_Byte_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01814980, IEnumerator *, NonAllocDictionary_2_System_Byte_System_Object__System_Collections_IEnumerable_GetEnumerator, (NonAllocDictionary_2_System_Byte_System_Object_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x01814200, bool, NonAllocDictionary_2_System_Byte_System_Object__TryGetValue, (NonAllocDictionary_2_System_Byte_System_Object_ * __this, uint8_t key, Object * val, MethodInfo * method)); +DO_APP_FUNC(0x01814200, bool, NonAllocDictionary_2_System_Byte_System_Object__TryGetValue, (NonAllocDictionary_2_System_Byte_System_Object_ * __this, uint8_t key, Object * * val, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE550, NonAllocDictionary_2_System_Byte_System_Object__TryGetValue__MethodInfo); DO_APP_FUNC(0x01813EB0, int32_t, NonAllocDictionary_2_System_Byte_System_Object__get_Count, (NonAllocDictionary_2_System_Byte_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0A08, NonAllocDictionary_2_System_Byte_System_Object__get_Count__MethodInfo); DO_APP_FUNC(0x01813EC0, bool, NonAllocDictionary_2_System_Byte_System_Object__get_IsReadOnly, (NonAllocDictionary_2_System_Byte_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x018142B0, Object *, NonAllocDictionary_2_System_Byte_System_Object__get_Item, (NonAllocDictionary_2_System_Byte_System_Object_ * __this, uint8_t key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11C48, NonAllocDictionary_2_System_Byte_System_Object__get_Item__MethodInfo); DO_APP_FUNC(0x01813E10, NonAllocDictionary_2_K_V_KeyIterator_System_Byte_System_Object_, NonAllocDictionary_2_System_Byte_System_Object__get_Keys, (NonAllocDictionary_2_System_Byte_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE3C98, NonAllocDictionary_2_System_Byte_System_Object__get_Keys__MethodInfo); DO_APP_FUNC(0x018143B0, void, NonAllocDictionary_2_System_Byte_System_Object__set_Item, (NonAllocDictionary_2_System_Byte_System_Object_ * __this, uint8_t key, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0A30, NonAllocDictionary_2_System_Byte_System_Object__set_Item__MethodInfo); DO_APP_FUNC(0x01816DB0, void, NonAllocDictionary_2_System_Int32_System_Object___cctor, (MethodInfo * method)); DO_APP_FUNC(0x018158A0, void, NonAllocDictionary_2_System_Int32_System_Object___ctor, (NonAllocDictionary_2_System_Int32_System_Object_ * __this, uint32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x01815F20, void, NonAllocDictionary_2_System_Int32_System_Object__Add, (NonAllocDictionary_2_System_Int32_System_Object_ * __this, KeyValuePair_2_System_Int32_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11A58, NonAllocDictionary_2_System_Int32_System_Object__Add__MethodInfo); DO_APP_FUNC(0x01815E10, void, NonAllocDictionary_2_System_Int32_System_Object__Add_1, (NonAllocDictionary_2_System_Int32_System_Object_ * __this, int32_t key, Object * val, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11A70, NonAllocDictionary_2_System_Int32_System_Object__Add_1__MethodInfo); DO_APP_FUNC(0x01816D40, void, NonAllocDictionary_2_System_Int32_System_Object__Assert, (bool condition, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11A90, NonAllocDictionary_2_System_Int32_System_Object__Assert__MethodInfo); DO_APP_FUNC(0x01814FD0, void, NonAllocDictionary_2_System_Int32_System_Object__Clear, (NonAllocDictionary_2_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01815AC0, bool, NonAllocDictionary_2_System_Int32_System_Object__Contains, (NonAllocDictionary_2_System_Int32_System_Object_ * __this, KeyValuePair_2_System_Int32_System_Object_ item, MethodInfo * method)); DO_APP_FUNC(0x018140F0, bool, NonAllocDictionary_2_System_Int32_System_Object__ContainsKey, (NonAllocDictionary_2_System_Int32_System_Object_ * __this, int32_t key, MethodInfo * method)); @@ -177131,26 +195029,32 @@ DO_APP_FUNC(0x018164D0, void, NonAllocDictionary_2_System_Int32_System_Object__E DO_APP_FUNC(0x01816260, int32_t, NonAllocDictionary_2_System_Int32_System_Object__FindNode, (NonAllocDictionary_2_System_Int32_System_Object_ * __this, int32_t key, MethodInfo * method)); DO_APP_FUNC(0x01813E10, NonAllocDictionary_2_K_V_PairIterator_System_Int32_System_Object_, NonAllocDictionary_2_System_Int32_System_Object__GetEnumerator, (NonAllocDictionary_2_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01816A40, uint32_t, NonAllocDictionary_2_System_Int32_System_Object__GetNextPrime, (uint32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11AA0, NonAllocDictionary_2_System_Int32_System_Object__GetNextPrime__MethodInfo); DO_APP_FUNC(0x018162F0, void, NonAllocDictionary_2_System_Int32_System_Object__Insert, (NonAllocDictionary_2_System_Int32_System_Object_ * __this, int32_t key, Object * val, MethodInfo * method)); DO_APP_FUNC(0x01815280, bool, NonAllocDictionary_2_System_Int32_System_Object__IsPrimeFromList, (uint32_t value, MethodInfo * method)); DO_APP_FUNC(0x01816030, bool, NonAllocDictionary_2_System_Int32_System_Object__Remove, (NonAllocDictionary_2_System_Int32_System_Object_ * __this, int32_t key, MethodInfo * method)); DO_APP_FUNC(0x018161B0, bool, NonAllocDictionary_2_System_Int32_System_Object__Remove_1, (NonAllocDictionary_2_System_Int32_System_Object_ * __this, KeyValuePair_2_System_Int32_System_Object_ item, MethodInfo * method)); DO_APP_FUNC(0x018167F0, void, NonAllocDictionary_2_System_Int32_System_Object__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_K_V___CopyTo, (NonAllocDictionary_2_System_Int32_System_Object_ * __this, KeyValuePair_2_System_Int32_System_Object___Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11AA8, NonAllocDictionary_2_System_Int32_System_Object__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_K_V___CopyTo__MethodInfo); DO_APP_FUNC(0x01813EA0, ICollection_1_System_Int32_ *, NonAllocDictionary_2_System_Int32_System_Object__System_Collections_Generic_IDictionary_K_V__get_Keys, (NonAllocDictionary_2_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01813E90, ICollection_1_System_Object_ *, NonAllocDictionary_2_System_Int32_System_Object__System_Collections_Generic_IDictionary_K_V__get_Values, (NonAllocDictionary_2_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01814980, IEnumerator_1_KeyValuePair_2_System_Int32_System_Object_ *, NonAllocDictionary_2_System_Int32_System_Object__System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_K_V___GetEnumerator, (NonAllocDictionary_2_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01814980, IEnumerator *, NonAllocDictionary_2_System_Int32_System_Object__System_Collections_IEnumerable_GetEnumerator, (NonAllocDictionary_2_System_Int32_System_Object_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x01814200, bool, NonAllocDictionary_2_System_Int32_System_Object__TryGetValue, (NonAllocDictionary_2_System_Int32_System_Object_ * __this, int32_t key, Object * val, MethodInfo * method)); +DO_APP_FUNC(0x01814200, bool, NonAllocDictionary_2_System_Int32_System_Object__TryGetValue, (NonAllocDictionary_2_System_Int32_System_Object_ * __this, int32_t key, Object * * val, MethodInfo * method)); DO_APP_FUNC(0x01813EB0, int32_t, NonAllocDictionary_2_System_Int32_System_Object__get_Count, (NonAllocDictionary_2_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01813EC0, bool, NonAllocDictionary_2_System_Int32_System_Object__get_IsReadOnly, (NonAllocDictionary_2_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01815B90, Object *, NonAllocDictionary_2_System_Int32_System_Object__get_Item, (NonAllocDictionary_2_System_Int32_System_Object_ * __this, int32_t key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11B80, NonAllocDictionary_2_System_Int32_System_Object__get_Item__MethodInfo); DO_APP_FUNC(0x01813E10, NonAllocDictionary_2_K_V_KeyIterator_System_Int32_System_Object_, NonAllocDictionary_2_System_Int32_System_Object__get_Keys, (NonAllocDictionary_2_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01815C90, void, NonAllocDictionary_2_System_Int32_System_Object__set_Item, (NonAllocDictionary_2_System_Int32_System_Object_ * __this, int32_t key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01818700, void, NonAllocDictionary_2_System_Object_System_Object___cctor, (MethodInfo * method)); DO_APP_FUNC(0x01816EE0, void, NonAllocDictionary_2_System_Object_System_Object___ctor, (NonAllocDictionary_2_System_Object_System_Object_ * __this, uint32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x01817660, void, NonAllocDictionary_2_System_Object_System_Object__Add, (NonAllocDictionary_2_System_Object_System_Object_ * __this, KeyValuePair_2_System_Object_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11AC8, NonAllocDictionary_2_System_Object_System_Object__Add__MethodInfo); DO_APP_FUNC(0x01817540, void, NonAllocDictionary_2_System_Object_System_Object__Add_1, (NonAllocDictionary_2_System_Object_System_Object_ * __this, Object * key, Object * val, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11AD0, NonAllocDictionary_2_System_Object_System_Object__Add_1__MethodInfo); DO_APP_FUNC(0x01818690, void, NonAllocDictionary_2_System_Object_System_Object__Assert, (bool condition, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11988, NonAllocDictionary_2_System_Object_System_Object__Assert__MethodInfo); DO_APP_FUNC(0x01814FD0, void, NonAllocDictionary_2_System_Object_System_Object__Clear, (NonAllocDictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01817100, bool, NonAllocDictionary_2_System_Object_System_Object__Contains, (NonAllocDictionary_2_System_Object_System_Object_ * __this, KeyValuePair_2_System_Object_System_Object_ item, MethodInfo * method)); DO_APP_FUNC(0x018140F0, bool, NonAllocDictionary_2_System_Object_System_Object__ContainsKey, (NonAllocDictionary_2_System_Object_System_Object_ * __this, Object * key, MethodInfo * method)); @@ -177158,684 +195062,832 @@ DO_APP_FUNC(0x01817E00, void, NonAllocDictionary_2_System_Object_System_Object__ DO_APP_FUNC(0x01817A60, int32_t, NonAllocDictionary_2_System_Object_System_Object__FindNode, (NonAllocDictionary_2_System_Object_System_Object_ * __this, Object * key, MethodInfo * method)); DO_APP_FUNC(0x01813E10, NonAllocDictionary_2_K_V_PairIterator_System_Object_System_Object_, NonAllocDictionary_2_System_Object_System_Object__GetEnumerator, (NonAllocDictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01818390, uint32_t, NonAllocDictionary_2_System_Object_System_Object__GetNextPrime, (uint32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D119A0, NonAllocDictionary_2_System_Object_System_Object__GetNextPrime__MethodInfo); DO_APP_FUNC(0x01817B90, void, NonAllocDictionary_2_System_Object_System_Object__Insert, (NonAllocDictionary_2_System_Object_System_Object_ * __this, Object * key, Object * val, MethodInfo * method)); DO_APP_FUNC(0x01815280, bool, NonAllocDictionary_2_System_Object_System_Object__IsPrimeFromList, (uint32_t value, MethodInfo * method)); DO_APP_FUNC(0x01817780, bool, NonAllocDictionary_2_System_Object_System_Object__Remove, (NonAllocDictionary_2_System_Object_System_Object_ * __this, Object * key, MethodInfo * method)); DO_APP_FUNC(0x018179B0, bool, NonAllocDictionary_2_System_Object_System_Object__Remove_1, (NonAllocDictionary_2_System_Object_System_Object_ * __this, KeyValuePair_2_System_Object_System_Object_ item, MethodInfo * method)); DO_APP_FUNC(0x01818120, void, NonAllocDictionary_2_System_Object_System_Object__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_K_V___CopyTo, (NonAllocDictionary_2_System_Object_System_Object_ * __this, KeyValuePair_2_System_Object_System_Object___Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D119B0, NonAllocDictionary_2_System_Object_System_Object__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_K_V___CopyTo__MethodInfo); DO_APP_FUNC(0x01813EA0, ICollection_1_System_Object_ *, NonAllocDictionary_2_System_Object_System_Object__System_Collections_Generic_IDictionary_K_V__get_Keys, (NonAllocDictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01813E90, ICollection_1_System_Object_ *, NonAllocDictionary_2_System_Object_System_Object__System_Collections_Generic_IDictionary_K_V__get_Values, (NonAllocDictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01814980, IEnumerator_1_KeyValuePair_2_System_Object_System_Object_ *, NonAllocDictionary_2_System_Object_System_Object__System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_K_V___GetEnumerator, (NonAllocDictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01814980, IEnumerator *, NonAllocDictionary_2_System_Object_System_Object__System_Collections_IEnumerable_GetEnumerator, (NonAllocDictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x018171D0, bool, NonAllocDictionary_2_System_Object_System_Object__TryGetValue, (NonAllocDictionary_2_System_Object_System_Object_ * __this, Object * key, Object * val, MethodInfo * method)); +DO_APP_FUNC(0x018171D0, bool, NonAllocDictionary_2_System_Object_System_Object__TryGetValue, (NonAllocDictionary_2_System_Object_System_Object_ * __this, Object * key, Object * * val, MethodInfo * method)); DO_APP_FUNC(0x01813EB0, int32_t, NonAllocDictionary_2_System_Object_System_Object__get_Count, (NonAllocDictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01813EC0, bool, NonAllocDictionary_2_System_Object_System_Object__get_IsReadOnly, (NonAllocDictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01817280, Object *, NonAllocDictionary_2_System_Object_System_Object__get_Item, (NonAllocDictionary_2_System_Object_System_Object_ * __this, Object * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11AB0, NonAllocDictionary_2_System_Object_System_Object__get_Item__MethodInfo); DO_APP_FUNC(0x01813E10, NonAllocDictionary_2_K_V_KeyIterator_System_Object_System_Object_, NonAllocDictionary_2_System_Object_System_Object__get_Keys, (NonAllocDictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01817370, void, NonAllocDictionary_2_System_Object_System_Object__set_Item, (NonAllocDictionary_2_System_Object_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x01818830, void, Nullable_1_ArraySegment_1_Byte___ctor, (Nullable_1_ArraySegment_1_Byte___Boxed * __this, ArraySegment_1_Byte_ value, MethodInfo * method)); +DO_APP_FUNC(0x01818830, void, Nullable_1_ArraySegment_1_Byte___ctor, (Nullable_1_ArraySegment_1_Byte_ * __this, ArraySegment_1_Byte_ value, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C93A08, Nullable_1_ArraySegment_1_Byte___ctor__MethodInfo); DO_APP_FUNC(0x01818AC0, Object *, Nullable_1_ArraySegment_1_Byte__Box, (Nullable_1_ArraySegment_1_Byte_ o, MethodInfo * method)); -DO_APP_FUNC(0x018188D0, bool, Nullable_1_ArraySegment_1_Byte__Equals, (Nullable_1_ArraySegment_1_Byte___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x01818990, int32_t, Nullable_1_ArraySegment_1_Byte__GetHashCode, (Nullable_1_ArraySegment_1_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C16880, ArraySegment_1_Byte_, Nullable_1_ArraySegment_1_Byte__GetValueOrDefault, (Nullable_1_ArraySegment_1_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018188B0, ArraySegment_1_Byte_, Nullable_1_ArraySegment_1_Byte__GetValueOrDefault_1, (Nullable_1_ArraySegment_1_Byte___Boxed * __this, ArraySegment_1_Byte_ defaultValue, MethodInfo * method)); -DO_APP_FUNC(0x01818A10, String *, Nullable_1_ArraySegment_1_Byte__ToString, (Nullable_1_ArraySegment_1_Byte___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x018188D0, bool, Nullable_1_ArraySegment_1_Byte__Equals, (Nullable_1_ArraySegment_1_Byte_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x01818990, int32_t, Nullable_1_ArraySegment_1_Byte__GetHashCode, (Nullable_1_ArraySegment_1_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C16880, ArraySegment_1_Byte_, Nullable_1_ArraySegment_1_Byte__GetValueOrDefault, (Nullable_1_ArraySegment_1_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D252A8, Nullable_1_ArraySegment_1_Byte__GetValueOrDefault__MethodInfo); +DO_APP_FUNC(0x018188B0, ArraySegment_1_Byte_, Nullable_1_ArraySegment_1_Byte__GetValueOrDefault_1, (Nullable_1_ArraySegment_1_Byte_ * __this, ArraySegment_1_Byte_ defaultValue, MethodInfo * method)); +DO_APP_FUNC(0x01818A10, String *, Nullable_1_ArraySegment_1_Byte__ToString, (Nullable_1_ArraySegment_1_Byte_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01818B40, Nullable_1_ArraySegment_1_Byte_, Nullable_1_ArraySegment_1_Byte__Unbox, (Object * o, MethodInfo * method)); DO_APP_FUNC(0x01818C70, Nullable_1_ArraySegment_1_Byte_, Nullable_1_ArraySegment_1_Byte__UnboxExact, (Object * o, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, Nullable_1_ArraySegment_1_Byte__get_HasValue, (Nullable_1_ArraySegment_1_Byte___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11A10, Nullable_1_ArraySegment_1_Byte__UnboxExact__MethodInfo); +DO_APP_FUNC(0x00C173D0, bool, Nullable_1_ArraySegment_1_Byte__get_HasValue, (Nullable_1_ArraySegment_1_Byte_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C932E0, Nullable_1_ArraySegment_1_Byte__get_HasValue__MethodInfo); -DO_APP_FUNC(0x01818890, ArraySegment_1_Byte_, Nullable_1_ArraySegment_1_Byte__get_Value, (Nullable_1_ArraySegment_1_Byte___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01818890, ArraySegment_1_Byte_, Nullable_1_ArraySegment_1_Byte__get_Value, (Nullable_1_ArraySegment_1_Byte_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C932E8, Nullable_1_ArraySegment_1_Byte__get_Value__MethodInfo); -DO_APP_FUNC(0x01818830, void, Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1__1__ctor, (Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1__1__Boxed * __this, ReadOnlyArray_1_System_Object_ value, MethodInfo * method)); +DO_APP_FUNC(0x01818830, void, Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1__1__ctor, (Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1__1 * __this, ReadOnlyArray_1_System_Object_ value, MethodInfo * method)); DO_APP_FUNC(0x01818AC0, Object *, Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1__1_Box, (Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1__1 o, MethodInfo * method)); -DO_APP_FUNC(0x01818E80, bool, Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1__1_Equals, (Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1__1__Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x01818F20, int32_t, Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1__1_GetHashCode, (Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C16880, ReadOnlyArray_1_System_Object_, Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1__1_GetValueOrDefault, (Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018188B0, ReadOnlyArray_1_System_Object_, Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1__1_GetValueOrDefault_1, (Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1__1__Boxed * __this, ReadOnlyArray_1_System_Object_ defaultValue, MethodInfo * method)); -DO_APP_FUNC(0x01819010, String *, Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1__1_ToString, (Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1__1__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01818E80, bool, Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1__1_Equals, (Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1__1 * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x01818F20, int32_t, Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1__1_GetHashCode, (Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C16880, ReadOnlyArray_1_System_Object_, Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1__1_GetValueOrDefault, (Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x018188B0, ReadOnlyArray_1_System_Object_, Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1__1_GetValueOrDefault_1, (Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1__1 * __this, ReadOnlyArray_1_System_Object_ defaultValue, MethodInfo * method)); +DO_APP_FUNC(0x01819010, String *, Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1__1_ToString, (Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x01818B40, Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1__1, Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1__1_Unbox, (Object * o, MethodInfo * method)); DO_APP_FUNC(0x018190C0, Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1__1, Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1__1_UnboxExact, (Object * o, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1__1_get_HasValue, (Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01818890, ReadOnlyArray_1_System_Object_, Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1__1_get_Value, (Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018192D0, void, Nullable_1_Dissonance_Integrations_PhotonBolt_BoltPeer___ctor, (Nullable_1_Dissonance_Integrations_PhotonBolt_BoltPeer___Boxed * __this, BoltPeer value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11918, Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1__1_UnboxExact__MethodInfo); +DO_APP_FUNC(0x00C173D0, bool, Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1__1_get_HasValue, (Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01818890, ReadOnlyArray_1_System_Object_, Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1__1_get_Value, (Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x018192D0, void, Nullable_1_Dissonance_Integrations_PhotonBolt_BoltPeer___ctor, (Nullable_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, BoltPeer value, MethodInfo * method)); DO_APP_FUNC(0x018195A0, Object *, Nullable_1_Dissonance_Integrations_PhotonBolt_BoltPeer__Box, (Nullable_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ o, MethodInfo * method)); -DO_APP_FUNC(0x01819360, bool, Nullable_1_Dissonance_Integrations_PhotonBolt_BoltPeer__Equals, (Nullable_1_Dissonance_Integrations_PhotonBolt_BoltPeer___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x01819400, int32_t, Nullable_1_Dissonance_Integrations_PhotonBolt_BoltPeer__GetHashCode, (Nullable_1_Dissonance_Integrations_PhotonBolt_BoltPeer___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, BoltPeer, Nullable_1_Dissonance_Integrations_PhotonBolt_BoltPeer__GetValueOrDefault, (Nullable_1_Dissonance_Integrations_PhotonBolt_BoltPeer___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01819350, BoltPeer, Nullable_1_Dissonance_Integrations_PhotonBolt_BoltPeer__GetValueOrDefault_1, (Nullable_1_Dissonance_Integrations_PhotonBolt_BoltPeer___Boxed * __this, BoltPeer defaultValue, MethodInfo * method)); -DO_APP_FUNC(0x018194F0, String *, Nullable_1_Dissonance_Integrations_PhotonBolt_BoltPeer__ToString, (Nullable_1_Dissonance_Integrations_PhotonBolt_BoltPeer___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01819360, bool, Nullable_1_Dissonance_Integrations_PhotonBolt_BoltPeer__Equals, (Nullable_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x01819400, int32_t, Nullable_1_Dissonance_Integrations_PhotonBolt_BoltPeer__GetHashCode, (Nullable_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, BoltPeer, Nullable_1_Dissonance_Integrations_PhotonBolt_BoltPeer__GetValueOrDefault, (Nullable_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01819350, BoltPeer, Nullable_1_Dissonance_Integrations_PhotonBolt_BoltPeer__GetValueOrDefault_1, (Nullable_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, BoltPeer defaultValue, MethodInfo * method)); +DO_APP_FUNC(0x018194F0, String *, Nullable_1_Dissonance_Integrations_PhotonBolt_BoltPeer__ToString, (Nullable_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01819600, Nullable_1_Dissonance_Integrations_PhotonBolt_BoltPeer_, Nullable_1_Dissonance_Integrations_PhotonBolt_BoltPeer__Unbox, (Object * o, MethodInfo * method)); DO_APP_FUNC(0x01819720, Nullable_1_Dissonance_Integrations_PhotonBolt_BoltPeer_, Nullable_1_Dissonance_Integrations_PhotonBolt_BoltPeer__UnboxExact, (Object * o, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, Nullable_1_Dissonance_Integrations_PhotonBolt_BoltPeer__get_HasValue, (Nullable_1_Dissonance_Integrations_PhotonBolt_BoltPeer___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01819330, BoltPeer, Nullable_1_Dissonance_Integrations_PhotonBolt_BoltPeer__get_Value, (Nullable_1_Dissonance_Integrations_PhotonBolt_BoltPeer___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01819900, void, Nullable_1_Boolean___ctor, (Nullable_1_Boolean___Boxed * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11938, Nullable_1_Dissonance_Integrations_PhotonBolt_BoltPeer__UnboxExact__MethodInfo); +DO_APP_FUNC(0x00C173D0, bool, Nullable_1_Dissonance_Integrations_PhotonBolt_BoltPeer__get_HasValue, (Nullable_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01819330, BoltPeer, Nullable_1_Dissonance_Integrations_PhotonBolt_BoltPeer__get_Value, (Nullable_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01819900, void, Nullable_1_Boolean___ctor, (Nullable_1_Boolean_ * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12AE8, Nullable_1_Boolean___ctor__MethodInfo); DO_APP_FUNC(0x01819B60, Object *, Nullable_1_Boolean__Box, (Nullable_1_Boolean_ o, MethodInfo * method)); -DO_APP_FUNC(0x01819950, bool, Nullable_1_Boolean__Equals, (Nullable_1_Boolean___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x01819A10, int32_t, Nullable_1_Boolean__GetHashCode, (Nullable_1_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01819930, bool, Nullable_1_Boolean__GetValueOrDefault, (Nullable_1_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01819940, bool, Nullable_1_Boolean__GetValueOrDefault_1, (Nullable_1_Boolean___Boxed * __this, bool defaultValue, MethodInfo * method)); -DO_APP_FUNC(0x01819A90, String *, Nullable_1_Boolean__ToString, (Nullable_1_Boolean___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01819950, bool, Nullable_1_Boolean__Equals, (Nullable_1_Boolean_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x01819A10, int32_t, Nullable_1_Boolean__GetHashCode, (Nullable_1_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01819930, bool, Nullable_1_Boolean__GetValueOrDefault, (Nullable_1_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12AF0, Nullable_1_Boolean__GetValueOrDefault__MethodInfo); +DO_APP_FUNC(0x01819940, bool, Nullable_1_Boolean__GetValueOrDefault_1, (Nullable_1_Boolean_ * __this, bool defaultValue, MethodInfo * method)); +DO_APP_FUNC(0x01819A90, String *, Nullable_1_Boolean__ToString, (Nullable_1_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01819BC0, Nullable_1_Boolean_, Nullable_1_Boolean__Unbox, (Object * o, MethodInfo * method)); DO_APP_FUNC(0x01819C60, Nullable_1_Boolean_, Nullable_1_Boolean__UnboxExact, (Object * o, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, Nullable_1_Boolean__get_HasValue, (Nullable_1_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01819910, bool, Nullable_1_Boolean__get_Value, (Nullable_1_Boolean___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11838, Nullable_1_Boolean__UnboxExact__MethodInfo); +DO_APP_FUNC(0x00C173D0, bool, Nullable_1_Boolean__get_HasValue, (Nullable_1_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12AE0, Nullable_1_Boolean__get_HasValue__MethodInfo); +DO_APP_FUNC(0x01819910, bool, Nullable_1_Boolean__get_Value, (Nullable_1_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8FC08, Nullable_1_Boolean__get_Value__MethodInfo); -DO_APP_FUNC(0x01819900, void, Nullable_1_ByteEnum___ctor, (Nullable_1_ByteEnum___Boxed * __this, ByteEnum__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x01819900, void, Nullable_1_ByteEnum___ctor, (Nullable_1_ByteEnum_ * __this, ByteEnum__Enum value, MethodInfo * method)); DO_APP_FUNC(0x01819B60, Object *, Nullable_1_ByteEnum__Box, (Nullable_1_ByteEnum_ o, MethodInfo * method)); -DO_APP_FUNC(0x01819DD0, bool, Nullable_1_ByteEnum__Equals, (Nullable_1_ByteEnum___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x01819E70, int32_t, Nullable_1_ByteEnum__GetHashCode, (Nullable_1_ByteEnum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01819930, ByteEnum__Enum, Nullable_1_ByteEnum__GetValueOrDefault, (Nullable_1_ByteEnum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01819940, ByteEnum__Enum, Nullable_1_ByteEnum__GetValueOrDefault_1, (Nullable_1_ByteEnum___Boxed * __this, ByteEnum__Enum defaultValue, MethodInfo * method)); -DO_APP_FUNC(0x01819E80, String *, Nullable_1_ByteEnum__ToString, (Nullable_1_ByteEnum___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01819DD0, bool, Nullable_1_ByteEnum__Equals, (Nullable_1_ByteEnum_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x01819E70, int32_t, Nullable_1_ByteEnum__GetHashCode, (Nullable_1_ByteEnum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01819930, ByteEnum__Enum, Nullable_1_ByteEnum__GetValueOrDefault, (Nullable_1_ByteEnum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01819940, ByteEnum__Enum, Nullable_1_ByteEnum__GetValueOrDefault_1, (Nullable_1_ByteEnum_ * __this, ByteEnum__Enum defaultValue, MethodInfo * method)); +DO_APP_FUNC(0x01819E80, String *, Nullable_1_ByteEnum__ToString, (Nullable_1_ByteEnum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01819BC0, Nullable_1_ByteEnum_, Nullable_1_ByteEnum__Unbox, (Object * o, MethodInfo * method)); DO_APP_FUNC(0x01819F30, Nullable_1_ByteEnum_, Nullable_1_ByteEnum__UnboxExact, (Object * o, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, Nullable_1_ByteEnum__get_HasValue, (Nullable_1_ByteEnum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01819910, ByteEnum__Enum, Nullable_1_ByteEnum__get_Value, (Nullable_1_ByteEnum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181A0A0, void, Nullable_1_Char___ctor, (Nullable_1_Char___Boxed * __this, uint16_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11850, Nullable_1_ByteEnum__UnboxExact__MethodInfo); +DO_APP_FUNC(0x00C173D0, bool, Nullable_1_ByteEnum__get_HasValue, (Nullable_1_ByteEnum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01819910, ByteEnum__Enum, Nullable_1_ByteEnum__get_Value, (Nullable_1_ByteEnum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181A0A0, void, Nullable_1_Char___ctor, (Nullable_1_Char_ * __this, uint16_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB47C8, Nullable_1_Char___ctor__MethodInfo); DO_APP_FUNC(0x0181A2F0, Object *, Nullable_1_Char__Box, (Nullable_1_Char_ o, MethodInfo * method)); -DO_APP_FUNC(0x0181A0F0, bool, Nullable_1_Char__Equals, (Nullable_1_Char___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x0181A1B0, int32_t, Nullable_1_Char__GetHashCode, (Nullable_1_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181A0D0, uint16_t, Nullable_1_Char__GetValueOrDefault, (Nullable_1_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181A0E0, uint16_t, Nullable_1_Char__GetValueOrDefault_1, (Nullable_1_Char___Boxed * __this, uint16_t defaultValue, MethodInfo * method)); -DO_APP_FUNC(0x0181A240, String *, Nullable_1_Char__ToString, (Nullable_1_Char___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181A0F0, bool, Nullable_1_Char__Equals, (Nullable_1_Char_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x0181A1B0, int32_t, Nullable_1_Char__GetHashCode, (Nullable_1_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181A0D0, uint16_t, Nullable_1_Char__GetValueOrDefault, (Nullable_1_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB47D0, Nullable_1_Char__GetValueOrDefault__MethodInfo); +DO_APP_FUNC(0x0181A0E0, uint16_t, Nullable_1_Char__GetValueOrDefault_1, (Nullable_1_Char_ * __this, uint16_t defaultValue, MethodInfo * method)); +DO_APP_FUNC(0x0181A240, String *, Nullable_1_Char__ToString, (Nullable_1_Char_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0181A350, Nullable_1_Char_, Nullable_1_Char__Unbox, (Object * o, MethodInfo * method)); DO_APP_FUNC(0x0181A400, Nullable_1_Char_, Nullable_1_Char__UnboxExact, (Object * o, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, Nullable_1_Char__get_HasValue, (Nullable_1_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181A0B0, uint16_t, Nullable_1_Char__get_Value, (Nullable_1_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181A580, void, Nullable_1_UnityEngine_Color___ctor, (Nullable_1_UnityEngine_Color___Boxed * __this, Color value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D117D0, Nullable_1_Char__UnboxExact__MethodInfo); +DO_APP_FUNC(0x00C173D0, bool, Nullable_1_Char__get_HasValue, (Nullable_1_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4740, Nullable_1_Char__get_HasValue__MethodInfo); +DO_APP_FUNC(0x0181A0B0, uint16_t, Nullable_1_Char__get_Value, (Nullable_1_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181A580, void, Nullable_1_UnityEngine_Color___ctor, (Nullable_1_UnityEngine_Color_ * __this, Color value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1368, Nullable_1_UnityEngine_Color___ctor__MethodInfo); DO_APP_FUNC(0x0181A6F0, Object *, Nullable_1_UnityEngine_Color__Box, (Nullable_1_UnityEngine_Color_ o, MethodInfo * method)); -DO_APP_FUNC(0x0181A5D0, bool, Nullable_1_UnityEngine_Color__Equals, (Nullable_1_UnityEngine_Color___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x0181A630, int32_t, Nullable_1_UnityEngine_Color__GetHashCode, (Nullable_1_UnityEngine_Color___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171BD20, Color, Nullable_1_UnityEngine_Color__GetValueOrDefault, (Nullable_1_UnityEngine_Color___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181A5B0, Color, Nullable_1_UnityEngine_Color__GetValueOrDefault_1, (Nullable_1_UnityEngine_Color___Boxed * __this, Color defaultValue, MethodInfo * method)); -DO_APP_FUNC(0x0181A670, String *, Nullable_1_UnityEngine_Color__ToString, (Nullable_1_UnityEngine_Color___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181A5D0, bool, Nullable_1_UnityEngine_Color__Equals, (Nullable_1_UnityEngine_Color_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x0181A630, int32_t, Nullable_1_UnityEngine_Color__GetHashCode, (Nullable_1_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171BD20, Color, Nullable_1_UnityEngine_Color__GetValueOrDefault, (Nullable_1_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181A5B0, Color, Nullable_1_UnityEngine_Color__GetValueOrDefault_1, (Nullable_1_UnityEngine_Color_ * __this, Color defaultValue, MethodInfo * method)); +DO_APP_FUNC(0x0181A670, String *, Nullable_1_UnityEngine_Color__ToString, (Nullable_1_UnityEngine_Color_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0181A760, Nullable_1_UnityEngine_Color_, Nullable_1_UnityEngine_Color__Unbox, (Object * o, MethodInfo * method)); DO_APP_FUNC(0x0181A840, Nullable_1_UnityEngine_Color_, Nullable_1_UnityEngine_Color__UnboxExact, (Object * o, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, Nullable_1_UnityEngine_Color__get_HasValue, (Nullable_1_UnityEngine_Color___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181A590, Color, Nullable_1_UnityEngine_Color__get_Value, (Nullable_1_UnityEngine_Color___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181A9F0, void, Nullable_1_DateTime___ctor, (Nullable_1_DateTime___Boxed * __this, DateTime value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D117F0, Nullable_1_UnityEngine_Color__UnboxExact__MethodInfo); +DO_APP_FUNC(0x00C173D0, bool, Nullable_1_UnityEngine_Color__get_HasValue, (Nullable_1_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1380, Nullable_1_UnityEngine_Color__get_HasValue__MethodInfo); +DO_APP_FUNC(0x0181A590, Color, Nullable_1_UnityEngine_Color__get_Value, (Nullable_1_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1378, Nullable_1_UnityEngine_Color__get_Value__MethodInfo); +DO_APP_FUNC(0x0181A9F0, void, Nullable_1_DateTime___ctor, (Nullable_1_DateTime_ * __this, DateTime value, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C93890, Nullable_1_DateTime___ctor__MethodInfo); DO_APP_FUNC(0x018195A0, Object *, Nullable_1_DateTime__Box, (Nullable_1_DateTime_ o, MethodInfo * method)); -DO_APP_FUNC(0x0181AA00, bool, Nullable_1_DateTime__Equals, (Nullable_1_DateTime___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x0181AAC0, int32_t, Nullable_1_DateTime__GetHashCode, (Nullable_1_DateTime___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, DateTime, Nullable_1_DateTime__GetValueOrDefault, (Nullable_1_DateTime___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181AA00, bool, Nullable_1_DateTime__Equals, (Nullable_1_DateTime_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x0181AAC0, int32_t, Nullable_1_DateTime__GetHashCode, (Nullable_1_DateTime_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, DateTime, Nullable_1_DateTime__GetValueOrDefault, (Nullable_1_DateTime_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8F5B8, Nullable_1_DateTime__GetValueOrDefault__MethodInfo); -DO_APP_FUNC(0x01819350, DateTime, Nullable_1_DateTime__GetValueOrDefault_1, (Nullable_1_DateTime___Boxed * __this, DateTime defaultValue, MethodInfo * method)); -DO_APP_FUNC(0x0181AB50, String *, Nullable_1_DateTime__ToString, (Nullable_1_DateTime___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01819350, DateTime, Nullable_1_DateTime__GetValueOrDefault_1, (Nullable_1_DateTime_ * __this, DateTime defaultValue, MethodInfo * method)); +DO_APP_FUNC(0x0181AB50, String *, Nullable_1_DateTime__ToString, (Nullable_1_DateTime_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0181AC00, Nullable_1_DateTime_, Nullable_1_DateTime__Unbox, (Object * o, MethodInfo * method)); DO_APP_FUNC(0x0181ACC0, Nullable_1_DateTime_, Nullable_1_DateTime__UnboxExact, (Object * o, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, Nullable_1_DateTime__get_HasValue, (Nullable_1_DateTime___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11818, Nullable_1_DateTime__UnboxExact__MethodInfo); +DO_APP_FUNC(0x00C173D0, bool, Nullable_1_DateTime__get_HasValue, (Nullable_1_DateTime_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8F5C0, Nullable_1_DateTime__get_HasValue__MethodInfo); -DO_APP_FUNC(0x01819330, DateTime, Nullable_1_DateTime__get_Value, (Nullable_1_DateTime___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01819330, DateTime, Nullable_1_DateTime__get_Value, (Nullable_1_DateTime_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C93868, Nullable_1_DateTime__get_Value__MethodInfo); -DO_APP_FUNC(0x0181AE60, void, Nullable_1_Decimal___ctor, (Nullable_1_Decimal___Boxed * __this, Decimal value, MethodInfo * method)); +DO_APP_FUNC(0x0181AE60, void, Nullable_1_Decimal___ctor, (Nullable_1_Decimal_ * __this, Decimal value, MethodInfo * method)); DO_APP_FUNC(0x01818AC0, Object *, Nullable_1_Decimal__Box, (Nullable_1_Decimal_ o, MethodInfo * method)); -DO_APP_FUNC(0x0181AE70, bool, Nullable_1_Decimal__Equals, (Nullable_1_Decimal___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x0181AF30, int32_t, Nullable_1_Decimal__GetHashCode, (Nullable_1_Decimal___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C16880, Decimal, Nullable_1_Decimal__GetValueOrDefault, (Nullable_1_Decimal___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018188B0, Decimal, Nullable_1_Decimal__GetValueOrDefault_1, (Nullable_1_Decimal___Boxed * __this, Decimal defaultValue, MethodInfo * method)); -DO_APP_FUNC(0x0181AFC0, String *, Nullable_1_Decimal__ToString, (Nullable_1_Decimal___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181AE70, bool, Nullable_1_Decimal__Equals, (Nullable_1_Decimal_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x0181AF30, int32_t, Nullable_1_Decimal__GetHashCode, (Nullable_1_Decimal_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C16880, Decimal, Nullable_1_Decimal__GetValueOrDefault, (Nullable_1_Decimal_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x018188B0, Decimal, Nullable_1_Decimal__GetValueOrDefault_1, (Nullable_1_Decimal_ * __this, Decimal defaultValue, MethodInfo * method)); +DO_APP_FUNC(0x0181AFC0, String *, Nullable_1_Decimal__ToString, (Nullable_1_Decimal_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0181B070, Nullable_1_Decimal_, Nullable_1_Decimal__Unbox, (Object * o, MethodInfo * method)); DO_APP_FUNC(0x0181B150, Nullable_1_Decimal_, Nullable_1_Decimal__UnboxExact, (Object * o, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, Nullable_1_Decimal__get_HasValue, (Nullable_1_Decimal___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01818890, Decimal, Nullable_1_Decimal__get_Value, (Nullable_1_Decimal___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018192D0, void, Nullable_1_UnityEngine_UIElements_EventDispatcherGate___ctor, (Nullable_1_UnityEngine_UIElements_EventDispatcherGate___Boxed * __this, EventDispatcherGate value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D117B0, Nullable_1_Decimal__UnboxExact__MethodInfo); +DO_APP_FUNC(0x00C173D0, bool, Nullable_1_Decimal__get_HasValue, (Nullable_1_Decimal_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01818890, Decimal, Nullable_1_Decimal__get_Value, (Nullable_1_Decimal_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x018192D0, void, Nullable_1_UnityEngine_UIElements_EventDispatcherGate___ctor, (Nullable_1_UnityEngine_UIElements_EventDispatcherGate_ * __this, EventDispatcherGate value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6C88, Nullable_1_UnityEngine_UIElements_EventDispatcherGate___ctor__MethodInfo); DO_APP_FUNC(0x018195A0, Object *, Nullable_1_UnityEngine_UIElements_EventDispatcherGate__Box, (Nullable_1_UnityEngine_UIElements_EventDispatcherGate_ o, MethodInfo * method)); -DO_APP_FUNC(0x0181B300, bool, Nullable_1_UnityEngine_UIElements_EventDispatcherGate__Equals, (Nullable_1_UnityEngine_UIElements_EventDispatcherGate___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x0181B370, int32_t, Nullable_1_UnityEngine_UIElements_EventDispatcherGate__GetHashCode, (Nullable_1_UnityEngine_UIElements_EventDispatcherGate___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, EventDispatcherGate, Nullable_1_UnityEngine_UIElements_EventDispatcherGate__GetValueOrDefault, (Nullable_1_UnityEngine_UIElements_EventDispatcherGate___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01819350, EventDispatcherGate, Nullable_1_UnityEngine_UIElements_EventDispatcherGate__GetValueOrDefault_1, (Nullable_1_UnityEngine_UIElements_EventDispatcherGate___Boxed * __this, EventDispatcherGate defaultValue, MethodInfo * method)); -DO_APP_FUNC(0x0181B3C0, String *, Nullable_1_UnityEngine_UIElements_EventDispatcherGate__ToString, (Nullable_1_UnityEngine_UIElements_EventDispatcherGate___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181B300, bool, Nullable_1_UnityEngine_UIElements_EventDispatcherGate__Equals, (Nullable_1_UnityEngine_UIElements_EventDispatcherGate_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x0181B370, int32_t, Nullable_1_UnityEngine_UIElements_EventDispatcherGate__GetHashCode, (Nullable_1_UnityEngine_UIElements_EventDispatcherGate_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, EventDispatcherGate, Nullable_1_UnityEngine_UIElements_EventDispatcherGate__GetValueOrDefault, (Nullable_1_UnityEngine_UIElements_EventDispatcherGate_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6C90, Nullable_1_UnityEngine_UIElements_EventDispatcherGate__GetValueOrDefault__MethodInfo); +DO_APP_FUNC(0x01819350, EventDispatcherGate, Nullable_1_UnityEngine_UIElements_EventDispatcherGate__GetValueOrDefault_1, (Nullable_1_UnityEngine_UIElements_EventDispatcherGate_ * __this, EventDispatcherGate defaultValue, MethodInfo * method)); +DO_APP_FUNC(0x0181B3C0, String *, Nullable_1_UnityEngine_UIElements_EventDispatcherGate__ToString, (Nullable_1_UnityEngine_UIElements_EventDispatcherGate_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01819600, Nullable_1_UnityEngine_UIElements_EventDispatcherGate_, Nullable_1_UnityEngine_UIElements_EventDispatcherGate__Unbox, (Object * o, MethodInfo * method)); DO_APP_FUNC(0x0181B470, Nullable_1_UnityEngine_UIElements_EventDispatcherGate_, Nullable_1_UnityEngine_UIElements_EventDispatcherGate__UnboxExact, (Object * o, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, Nullable_1_UnityEngine_UIElements_EventDispatcherGate__get_HasValue, (Nullable_1_UnityEngine_UIElements_EventDispatcherGate___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01819330, EventDispatcherGate, Nullable_1_UnityEngine_UIElements_EventDispatcherGate__get_Value, (Nullable_1_UnityEngine_UIElements_EventDispatcherGate___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181A9F0, void, Nullable_1_System_Runtime_InteropServices_GCHandle___ctor, (Nullable_1_System_Runtime_InteropServices_GCHandle___Boxed * __this, GCHandle value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D117B8, Nullable_1_UnityEngine_UIElements_EventDispatcherGate__UnboxExact__MethodInfo); +DO_APP_FUNC(0x00C173D0, bool, Nullable_1_UnityEngine_UIElements_EventDispatcherGate__get_HasValue, (Nullable_1_UnityEngine_UIElements_EventDispatcherGate_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6C98, Nullable_1_UnityEngine_UIElements_EventDispatcherGate__get_HasValue__MethodInfo); +DO_APP_FUNC(0x01819330, EventDispatcherGate, Nullable_1_UnityEngine_UIElements_EventDispatcherGate__get_Value, (Nullable_1_UnityEngine_UIElements_EventDispatcherGate_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181A9F0, void, Nullable_1_System_Runtime_InteropServices_GCHandle___ctor, (Nullable_1_System_Runtime_InteropServices_GCHandle_ * __this, GCHandle value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D055F8, Nullable_1_System_Runtime_InteropServices_GCHandle___ctor__MethodInfo); DO_APP_FUNC(0x018195A0, Object *, Nullable_1_System_Runtime_InteropServices_GCHandle__Box, (Nullable_1_System_Runtime_InteropServices_GCHandle_ o, MethodInfo * method)); -DO_APP_FUNC(0x0181B650, bool, Nullable_1_System_Runtime_InteropServices_GCHandle__Equals, (Nullable_1_System_Runtime_InteropServices_GCHandle___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x0181B6C0, int32_t, Nullable_1_System_Runtime_InteropServices_GCHandle__GetHashCode, (Nullable_1_System_Runtime_InteropServices_GCHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, GCHandle, Nullable_1_System_Runtime_InteropServices_GCHandle__GetValueOrDefault, (Nullable_1_System_Runtime_InteropServices_GCHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01819350, GCHandle, Nullable_1_System_Runtime_InteropServices_GCHandle__GetValueOrDefault_1, (Nullable_1_System_Runtime_InteropServices_GCHandle___Boxed * __this, GCHandle defaultValue, MethodInfo * method)); -DO_APP_FUNC(0x0181B700, String *, Nullable_1_System_Runtime_InteropServices_GCHandle__ToString, (Nullable_1_System_Runtime_InteropServices_GCHandle___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181B650, bool, Nullable_1_System_Runtime_InteropServices_GCHandle__Equals, (Nullable_1_System_Runtime_InteropServices_GCHandle_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x0181B6C0, int32_t, Nullable_1_System_Runtime_InteropServices_GCHandle__GetHashCode, (Nullable_1_System_Runtime_InteropServices_GCHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, GCHandle, Nullable_1_System_Runtime_InteropServices_GCHandle__GetValueOrDefault, (Nullable_1_System_Runtime_InteropServices_GCHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01819350, GCHandle, Nullable_1_System_Runtime_InteropServices_GCHandle__GetValueOrDefault_1, (Nullable_1_System_Runtime_InteropServices_GCHandle_ * __this, GCHandle defaultValue, MethodInfo * method)); +DO_APP_FUNC(0x0181B700, String *, Nullable_1_System_Runtime_InteropServices_GCHandle__ToString, (Nullable_1_System_Runtime_InteropServices_GCHandle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0181AC00, Nullable_1_System_Runtime_InteropServices_GCHandle_, Nullable_1_System_Runtime_InteropServices_GCHandle__Unbox, (Object * o, MethodInfo * method)); DO_APP_FUNC(0x0181B7B0, Nullable_1_System_Runtime_InteropServices_GCHandle_, Nullable_1_System_Runtime_InteropServices_GCHandle__UnboxExact, (Object * o, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, Nullable_1_System_Runtime_InteropServices_GCHandle__get_HasValue, (Nullable_1_System_Runtime_InteropServices_GCHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01819330, GCHandle, Nullable_1_System_Runtime_InteropServices_GCHandle__get_Value, (Nullable_1_System_Runtime_InteropServices_GCHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181B950, void, Nullable_1_UnityEngine_Rendering_GlobalDynamicResolutionSettings___ctor, (Nullable_1_UnityEngine_Rendering_GlobalDynamicResolutionSettings___Boxed * __this, GlobalDynamicResolutionSettings value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D116E0, Nullable_1_System_Runtime_InteropServices_GCHandle__UnboxExact__MethodInfo); +DO_APP_FUNC(0x00C173D0, bool, Nullable_1_System_Runtime_InteropServices_GCHandle__get_HasValue, (Nullable_1_System_Runtime_InteropServices_GCHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05620, Nullable_1_System_Runtime_InteropServices_GCHandle__get_HasValue__MethodInfo); +DO_APP_FUNC(0x01819330, GCHandle, Nullable_1_System_Runtime_InteropServices_GCHandle__get_Value, (Nullable_1_System_Runtime_InteropServices_GCHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05618, Nullable_1_System_Runtime_InteropServices_GCHandle__get_Value__MethodInfo); +DO_APP_FUNC(0x0181B950, void, Nullable_1_UnityEngine_Rendering_GlobalDynamicResolutionSettings___ctor, (Nullable_1_UnityEngine_Rendering_GlobalDynamicResolutionSettings_ * __this, GlobalDynamicResolutionSettings value, MethodInfo * method)); DO_APP_FUNC(0x0181BC80, Object *, Nullable_1_UnityEngine_Rendering_GlobalDynamicResolutionSettings__Box, (Nullable_1_UnityEngine_Rendering_GlobalDynamicResolutionSettings_ o, MethodInfo * method)); -DO_APP_FUNC(0x0181BA10, bool, Nullable_1_UnityEngine_Rendering_GlobalDynamicResolutionSettings__Equals, (Nullable_1_UnityEngine_Rendering_GlobalDynamicResolutionSettings___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x0181BAD0, int32_t, Nullable_1_UnityEngine_Rendering_GlobalDynamicResolutionSettings__GetHashCode, (Nullable_1_UnityEngine_Rendering_GlobalDynamicResolutionSettings___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181B9B0, GlobalDynamicResolutionSettings, Nullable_1_UnityEngine_Rendering_GlobalDynamicResolutionSettings__GetValueOrDefault, (Nullable_1_UnityEngine_Rendering_GlobalDynamicResolutionSettings___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181B9D0, GlobalDynamicResolutionSettings, Nullable_1_UnityEngine_Rendering_GlobalDynamicResolutionSettings__GetValueOrDefault_1, (Nullable_1_UnityEngine_Rendering_GlobalDynamicResolutionSettings___Boxed * __this, GlobalDynamicResolutionSettings defaultValue, MethodInfo * method)); -DO_APP_FUNC(0x0181BBD0, String *, Nullable_1_UnityEngine_Rendering_GlobalDynamicResolutionSettings__ToString, (Nullable_1_UnityEngine_Rendering_GlobalDynamicResolutionSettings___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181BA10, bool, Nullable_1_UnityEngine_Rendering_GlobalDynamicResolutionSettings__Equals, (Nullable_1_UnityEngine_Rendering_GlobalDynamicResolutionSettings_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x0181BAD0, int32_t, Nullable_1_UnityEngine_Rendering_GlobalDynamicResolutionSettings__GetHashCode, (Nullable_1_UnityEngine_Rendering_GlobalDynamicResolutionSettings_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181B9B0, GlobalDynamicResolutionSettings, Nullable_1_UnityEngine_Rendering_GlobalDynamicResolutionSettings__GetValueOrDefault, (Nullable_1_UnityEngine_Rendering_GlobalDynamicResolutionSettings_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181B9D0, GlobalDynamicResolutionSettings, Nullable_1_UnityEngine_Rendering_GlobalDynamicResolutionSettings__GetValueOrDefault_1, (Nullable_1_UnityEngine_Rendering_GlobalDynamicResolutionSettings_ * __this, GlobalDynamicResolutionSettings defaultValue, MethodInfo * method)); +DO_APP_FUNC(0x0181BBD0, String *, Nullable_1_UnityEngine_Rendering_GlobalDynamicResolutionSettings__ToString, (Nullable_1_UnityEngine_Rendering_GlobalDynamicResolutionSettings_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0181BD30, Nullable_1_UnityEngine_Rendering_GlobalDynamicResolutionSettings_, Nullable_1_UnityEngine_Rendering_GlobalDynamicResolutionSettings__Unbox, (Object * o, MethodInfo * method)); DO_APP_FUNC(0x0181BE50, Nullable_1_UnityEngine_Rendering_GlobalDynamicResolutionSettings_, Nullable_1_UnityEngine_Rendering_GlobalDynamicResolutionSettings__UnboxExact, (Object * o, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, Nullable_1_UnityEngine_Rendering_GlobalDynamicResolutionSettings__get_HasValue, (Nullable_1_UnityEngine_Rendering_GlobalDynamicResolutionSettings___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11700, Nullable_1_UnityEngine_Rendering_GlobalDynamicResolutionSettings__UnboxExact__MethodInfo); +DO_APP_FUNC(0x00C173D0, bool, Nullable_1_UnityEngine_Rendering_GlobalDynamicResolutionSettings__get_HasValue, (Nullable_1_UnityEngine_Rendering_GlobalDynamicResolutionSettings_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C95CF0, Nullable_1_UnityEngine_Rendering_GlobalDynamicResolutionSettings__get_HasValue__MethodInfo); -DO_APP_FUNC(0x0181B970, GlobalDynamicResolutionSettings, Nullable_1_UnityEngine_Rendering_GlobalDynamicResolutionSettings__get_Value, (Nullable_1_UnityEngine_Rendering_GlobalDynamicResolutionSettings___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181B970, GlobalDynamicResolutionSettings, Nullable_1_UnityEngine_Rendering_GlobalDynamicResolutionSettings__get_Value, (Nullable_1_UnityEngine_Rendering_GlobalDynamicResolutionSettings_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C95CF8, Nullable_1_UnityEngine_Rendering_GlobalDynamicResolutionSettings__get_Value__MethodInfo); -DO_APP_FUNC(0x0181A580, void, Nullable_1_Guid___ctor, (Nullable_1_Guid___Boxed * __this, Guid value, MethodInfo * method)); +DO_APP_FUNC(0x0181A580, void, Nullable_1_Guid___ctor, (Nullable_1_Guid_ * __this, Guid value, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA2418, Nullable_1_Guid___ctor__MethodInfo); DO_APP_FUNC(0x0181A6F0, Object *, Nullable_1_Guid__Box, (Nullable_1_Guid_ o, MethodInfo * method)); -DO_APP_FUNC(0x0181C040, bool, Nullable_1_Guid__Equals, (Nullable_1_Guid___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x0181C0B0, int32_t, Nullable_1_Guid__GetHashCode, (Nullable_1_Guid___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171BD20, Guid, Nullable_1_Guid__GetValueOrDefault, (Nullable_1_Guid___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181C040, bool, Nullable_1_Guid__Equals, (Nullable_1_Guid_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x0181C0B0, int32_t, Nullable_1_Guid__GetHashCode, (Nullable_1_Guid_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171BD20, Guid, Nullable_1_Guid__GetValueOrDefault, (Nullable_1_Guid_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA2410, Nullable_1_Guid__GetValueOrDefault__MethodInfo); -DO_APP_FUNC(0x0181A5B0, Guid, Nullable_1_Guid__GetValueOrDefault_1, (Nullable_1_Guid___Boxed * __this, Guid defaultValue, MethodInfo * method)); -DO_APP_FUNC(0x0181C0F0, String *, Nullable_1_Guid__ToString, (Nullable_1_Guid___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181A5B0, Guid, Nullable_1_Guid__GetValueOrDefault_1, (Nullable_1_Guid_ * __this, Guid defaultValue, MethodInfo * method)); +DO_APP_FUNC(0x0181C0F0, String *, Nullable_1_Guid__ToString, (Nullable_1_Guid_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0181A760, Nullable_1_Guid_, Nullable_1_Guid__Unbox, (Object * o, MethodInfo * method)); DO_APP_FUNC(0x0181C190, Nullable_1_Guid_, Nullable_1_Guid__UnboxExact, (Object * o, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, Nullable_1_Guid__get_HasValue, (Nullable_1_Guid___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11720, Nullable_1_Guid__UnboxExact__MethodInfo); +DO_APP_FUNC(0x00C173D0, bool, Nullable_1_Guid__get_HasValue, (Nullable_1_Guid_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA23F0, Nullable_1_Guid__get_HasValue__MethodInfo); -DO_APP_FUNC(0x0181A590, Guid, Nullable_1_Guid__get_Value, (Nullable_1_Guid___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181C340, void, Nullable_1_UnityEngine_InputSystem_InputBinding___ctor, (Nullable_1_UnityEngine_InputSystem_InputBinding___Boxed * __this, InputBinding value, MethodInfo * method)); +DO_APP_FUNC(0x0181A590, Guid, Nullable_1_Guid__get_Value, (Nullable_1_Guid_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181C340, void, Nullable_1_UnityEngine_InputSystem_InputBinding___ctor, (Nullable_1_UnityEngine_InputSystem_InputBinding_ * __this, InputBinding value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC1528, Nullable_1_UnityEngine_InputSystem_InputBinding___ctor__MethodInfo); DO_APP_FUNC(0x0181C5E0, Object *, Nullable_1_UnityEngine_InputSystem_InputBinding__Box, (Nullable_1_UnityEngine_InputSystem_InputBinding_ o, MethodInfo * method)); -DO_APP_FUNC(0x0181C4A0, bool, Nullable_1_UnityEngine_InputSystem_InputBinding__Equals, (Nullable_1_UnityEngine_InputSystem_InputBinding___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x0181C510, int32_t, Nullable_1_UnityEngine_InputSystem_InputBinding__GetHashCode, (Nullable_1_UnityEngine_InputSystem_InputBinding___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171C240, InputBinding, Nullable_1_UnityEngine_InputSystem_InputBinding__GetValueOrDefault, (Nullable_1_UnityEngine_InputSystem_InputBinding___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181C420, InputBinding, Nullable_1_UnityEngine_InputSystem_InputBinding__GetValueOrDefault_1, (Nullable_1_UnityEngine_InputSystem_InputBinding___Boxed * __this, InputBinding defaultValue, MethodInfo * method)); -DO_APP_FUNC(0x0181C560, String *, Nullable_1_UnityEngine_InputSystem_InputBinding__ToString, (Nullable_1_UnityEngine_InputSystem_InputBinding___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181C4A0, bool, Nullable_1_UnityEngine_InputSystem_InputBinding__Equals, (Nullable_1_UnityEngine_InputSystem_InputBinding_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x0181C510, int32_t, Nullable_1_UnityEngine_InputSystem_InputBinding__GetHashCode, (Nullable_1_UnityEngine_InputSystem_InputBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171C240, InputBinding, Nullable_1_UnityEngine_InputSystem_InputBinding__GetValueOrDefault, (Nullable_1_UnityEngine_InputSystem_InputBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC1530, Nullable_1_UnityEngine_InputSystem_InputBinding__GetValueOrDefault__MethodInfo); +DO_APP_FUNC(0x0181C420, InputBinding, Nullable_1_UnityEngine_InputSystem_InputBinding__GetValueOrDefault_1, (Nullable_1_UnityEngine_InputSystem_InputBinding_ * __this, InputBinding defaultValue, MethodInfo * method)); +DO_APP_FUNC(0x0181C560, String *, Nullable_1_UnityEngine_InputSystem_InputBinding__ToString, (Nullable_1_UnityEngine_InputSystem_InputBinding_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0181C6B0, Nullable_1_UnityEngine_InputSystem_InputBinding_, Nullable_1_UnityEngine_InputSystem_InputBinding__Unbox, (Object * o, MethodInfo * method)); DO_APP_FUNC(0x0181C840, Nullable_1_UnityEngine_InputSystem_InputBinding_, Nullable_1_UnityEngine_InputSystem_InputBinding__UnboxExact, (Object * o, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, Nullable_1_UnityEngine_InputSystem_InputBinding__get_HasValue, (Nullable_1_UnityEngine_InputSystem_InputBinding___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181C3D0, InputBinding, Nullable_1_UnityEngine_InputSystem_InputBinding__get_Value, (Nullable_1_UnityEngine_InputSystem_InputBinding___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181CAC0, void, Nullable_1_UnityEngine_InputSystem_InputControlScheme___ctor, (Nullable_1_UnityEngine_InputSystem_InputControlScheme___Boxed * __this, InputControlScheme value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11620, Nullable_1_UnityEngine_InputSystem_InputBinding__UnboxExact__MethodInfo); +DO_APP_FUNC(0x00C173D0, bool, Nullable_1_UnityEngine_InputSystem_InputBinding__get_HasValue, (Nullable_1_UnityEngine_InputSystem_InputBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC1540, Nullable_1_UnityEngine_InputSystem_InputBinding__get_HasValue__MethodInfo); +DO_APP_FUNC(0x0181C3D0, InputBinding, Nullable_1_UnityEngine_InputSystem_InputBinding__get_Value, (Nullable_1_UnityEngine_InputSystem_InputBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC1538, Nullable_1_UnityEngine_InputSystem_InputBinding__get_Value__MethodInfo); +DO_APP_FUNC(0x0181CAC0, void, Nullable_1_UnityEngine_InputSystem_InputControlScheme___ctor, (Nullable_1_UnityEngine_InputSystem_InputControlScheme_ * __this, InputControlScheme value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2520, Nullable_1_UnityEngine_InputSystem_InputControlScheme___ctor__MethodInfo); DO_APP_FUNC(0x0181CCD0, Object *, Nullable_1_UnityEngine_InputSystem_InputControlScheme__Box, (Nullable_1_UnityEngine_InputSystem_InputControlScheme_ o, MethodInfo * method)); -DO_APP_FUNC(0x0181CB90, bool, Nullable_1_UnityEngine_InputSystem_InputControlScheme__Equals, (Nullable_1_UnityEngine_InputSystem_InputControlScheme___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x0181CC00, int32_t, Nullable_1_UnityEngine_InputSystem_InputControlScheme__GetHashCode, (Nullable_1_UnityEngine_InputSystem_InputControlScheme___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171C800, InputControlScheme, Nullable_1_UnityEngine_InputSystem_InputControlScheme__GetValueOrDefault, (Nullable_1_UnityEngine_InputSystem_InputControlScheme___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181CB60, InputControlScheme, Nullable_1_UnityEngine_InputSystem_InputControlScheme__GetValueOrDefault_1, (Nullable_1_UnityEngine_InputSystem_InputControlScheme___Boxed * __this, InputControlScheme defaultValue, MethodInfo * method)); -DO_APP_FUNC(0x0181CC50, String *, Nullable_1_UnityEngine_InputSystem_InputControlScheme__ToString, (Nullable_1_UnityEngine_InputSystem_InputControlScheme___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181CB90, bool, Nullable_1_UnityEngine_InputSystem_InputControlScheme__Equals, (Nullable_1_UnityEngine_InputSystem_InputControlScheme_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x0181CC00, int32_t, Nullable_1_UnityEngine_InputSystem_InputControlScheme__GetHashCode, (Nullable_1_UnityEngine_InputSystem_InputControlScheme_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171C800, InputControlScheme, Nullable_1_UnityEngine_InputSystem_InputControlScheme__GetValueOrDefault, (Nullable_1_UnityEngine_InputSystem_InputControlScheme_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2488, Nullable_1_UnityEngine_InputSystem_InputControlScheme__GetValueOrDefault__MethodInfo); +DO_APP_FUNC(0x0181CB60, InputControlScheme, Nullable_1_UnityEngine_InputSystem_InputControlScheme__GetValueOrDefault_1, (Nullable_1_UnityEngine_InputSystem_InputControlScheme_ * __this, InputControlScheme defaultValue, MethodInfo * method)); +DO_APP_FUNC(0x0181CC50, String *, Nullable_1_UnityEngine_InputSystem_InputControlScheme__ToString, (Nullable_1_UnityEngine_InputSystem_InputControlScheme_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0181CD50, Nullable_1_UnityEngine_InputSystem_InputControlScheme_, Nullable_1_UnityEngine_InputSystem_InputControlScheme__Unbox, (Object * o, MethodInfo * method)); DO_APP_FUNC(0x0181CE80, Nullable_1_UnityEngine_InputSystem_InputControlScheme_, Nullable_1_UnityEngine_InputSystem_InputControlScheme__UnboxExact, (Object * o, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, Nullable_1_UnityEngine_InputSystem_InputControlScheme__get_HasValue, (Nullable_1_UnityEngine_InputSystem_InputControlScheme___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181CB30, InputControlScheme, Nullable_1_UnityEngine_InputSystem_InputControlScheme__get_Value, (Nullable_1_UnityEngine_InputSystem_InputControlScheme___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181AE60, void, Nullable_1_UnityEngine_XR_InputDevice___ctor, (Nullable_1_UnityEngine_XR_InputDevice___Boxed * __this, InputDevice_1 value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11680, Nullable_1_UnityEngine_InputSystem_InputControlScheme__UnboxExact__MethodInfo); +DO_APP_FUNC(0x00C173D0, bool, Nullable_1_UnityEngine_InputSystem_InputControlScheme__get_HasValue, (Nullable_1_UnityEngine_InputSystem_InputControlScheme_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2940, Nullable_1_UnityEngine_InputSystem_InputControlScheme__get_HasValue__MethodInfo); +DO_APP_FUNC(0x0181CB30, InputControlScheme, Nullable_1_UnityEngine_InputSystem_InputControlScheme__get_Value, (Nullable_1_UnityEngine_InputSystem_InputControlScheme_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCDEB0, Nullable_1_UnityEngine_InputSystem_InputControlScheme__get_Value__MethodInfo); +DO_APP_FUNC(0x0181AE60, void, Nullable_1_UnityEngine_XR_InputDevice___ctor, (Nullable_1_UnityEngine_XR_InputDevice_ * __this, InputDevice_1 value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC658, Nullable_1_UnityEngine_XR_InputDevice___ctor__MethodInfo); DO_APP_FUNC(0x01818AC0, Object *, Nullable_1_UnityEngine_XR_InputDevice__Box, (Nullable_1_UnityEngine_XR_InputDevice_ o, MethodInfo * method)); -DO_APP_FUNC(0x0181D080, bool, Nullable_1_UnityEngine_XR_InputDevice__Equals, (Nullable_1_UnityEngine_XR_InputDevice___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x0181D0F0, int32_t, Nullable_1_UnityEngine_XR_InputDevice__GetHashCode, (Nullable_1_UnityEngine_XR_InputDevice___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C16880, InputDevice_1, Nullable_1_UnityEngine_XR_InputDevice__GetValueOrDefault, (Nullable_1_UnityEngine_XR_InputDevice___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018188B0, InputDevice_1, Nullable_1_UnityEngine_XR_InputDevice__GetValueOrDefault_1, (Nullable_1_UnityEngine_XR_InputDevice___Boxed * __this, InputDevice_1 defaultValue, MethodInfo * method)); -DO_APP_FUNC(0x0181D150, String *, Nullable_1_UnityEngine_XR_InputDevice__ToString, (Nullable_1_UnityEngine_XR_InputDevice___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181D080, bool, Nullable_1_UnityEngine_XR_InputDevice__Equals, (Nullable_1_UnityEngine_XR_InputDevice_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x0181D0F0, int32_t, Nullable_1_UnityEngine_XR_InputDevice__GetHashCode, (Nullable_1_UnityEngine_XR_InputDevice_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C16880, InputDevice_1, Nullable_1_UnityEngine_XR_InputDevice__GetValueOrDefault, (Nullable_1_UnityEngine_XR_InputDevice_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x018188B0, InputDevice_1, Nullable_1_UnityEngine_XR_InputDevice__GetValueOrDefault_1, (Nullable_1_UnityEngine_XR_InputDevice_ * __this, InputDevice_1 defaultValue, MethodInfo * method)); +DO_APP_FUNC(0x0181D150, String *, Nullable_1_UnityEngine_XR_InputDevice__ToString, (Nullable_1_UnityEngine_XR_InputDevice_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0181B070, Nullable_1_UnityEngine_XR_InputDevice_, Nullable_1_UnityEngine_XR_InputDevice__Unbox, (Object * o, MethodInfo * method)); DO_APP_FUNC(0x0181D200, Nullable_1_UnityEngine_XR_InputDevice_, Nullable_1_UnityEngine_XR_InputDevice__UnboxExact, (Object * o, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, Nullable_1_UnityEngine_XR_InputDevice__get_HasValue, (Nullable_1_UnityEngine_XR_InputDevice___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01818890, InputDevice_1, Nullable_1_UnityEngine_XR_InputDevice__get_Value, (Nullable_1_UnityEngine_XR_InputDevice___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018192D0, void, Nullable_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher___ctor, (Nullable_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher___Boxed * __this, InputDeviceMatcher value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D115B0, Nullable_1_UnityEngine_XR_InputDevice__UnboxExact__MethodInfo); +DO_APP_FUNC(0x00C173D0, bool, Nullable_1_UnityEngine_XR_InputDevice__get_HasValue, (Nullable_1_UnityEngine_XR_InputDevice_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC660, Nullable_1_UnityEngine_XR_InputDevice__get_HasValue__MethodInfo); +DO_APP_FUNC(0x01818890, InputDevice_1, Nullable_1_UnityEngine_XR_InputDevice__get_Value, (Nullable_1_UnityEngine_XR_InputDevice_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC670, Nullable_1_UnityEngine_XR_InputDevice__get_Value__MethodInfo); +DO_APP_FUNC(0x018192D0, void, Nullable_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher___ctor, (Nullable_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher_ * __this, InputDeviceMatcher value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22080, Nullable_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher___ctor__MethodInfo); DO_APP_FUNC(0x018195A0, Object *, Nullable_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher__Box, (Nullable_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher_ o, MethodInfo * method)); -DO_APP_FUNC(0x0181D3B0, bool, Nullable_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher__Equals, (Nullable_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x0181D470, int32_t, Nullable_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher__GetHashCode, (Nullable_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, InputDeviceMatcher, Nullable_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher__GetValueOrDefault, (Nullable_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01819350, InputDeviceMatcher, Nullable_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher__GetValueOrDefault_1, (Nullable_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher___Boxed * __this, InputDeviceMatcher defaultValue, MethodInfo * method)); -DO_APP_FUNC(0x0181D510, String *, Nullable_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher__ToString, (Nullable_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181D3B0, bool, Nullable_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher__Equals, (Nullable_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x0181D470, int32_t, Nullable_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher__GetHashCode, (Nullable_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, InputDeviceMatcher, Nullable_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher__GetValueOrDefault, (Nullable_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01819350, InputDeviceMatcher, Nullable_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher__GetValueOrDefault_1, (Nullable_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher_ * __this, InputDeviceMatcher defaultValue, MethodInfo * method)); +DO_APP_FUNC(0x0181D510, String *, Nullable_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher__ToString, (Nullable_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01819600, Nullable_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher_, Nullable_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher__Unbox, (Object * o, MethodInfo * method)); DO_APP_FUNC(0x0181D5C0, Nullable_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher_, Nullable_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher__UnboxExact, (Object * o, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, Nullable_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher__get_HasValue, (Nullable_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01819330, InputDeviceMatcher, Nullable_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher__get_Value, (Nullable_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181D7A0, void, Nullable_1_UnityEngine_InputSystem_Users_InputUser___ctor, (Nullable_1_UnityEngine_InputSystem_Users_InputUser___Boxed * __this, InputUser value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11608, Nullable_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher__UnboxExact__MethodInfo); +DO_APP_FUNC(0x00C173D0, bool, Nullable_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher__get_HasValue, (Nullable_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7EF8, Nullable_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher__get_HasValue__MethodInfo); +DO_APP_FUNC(0x01819330, InputDeviceMatcher, Nullable_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher__get_Value, (Nullable_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7EF0, Nullable_1_UnityEngine_InputSystem_Layouts_InputDeviceMatcher__get_Value__MethodInfo); +DO_APP_FUNC(0x0181D7A0, void, Nullable_1_UnityEngine_InputSystem_Users_InputUser___ctor, (Nullable_1_UnityEngine_InputSystem_Users_InputUser_ * __this, InputUser value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD748, Nullable_1_UnityEngine_InputSystem_Users_InputUser___ctor__MethodInfo); DO_APP_FUNC(0x0181D910, Object *, Nullable_1_UnityEngine_InputSystem_Users_InputUser__Box, (Nullable_1_UnityEngine_InputSystem_Users_InputUser_ o, MethodInfo * method)); -DO_APP_FUNC(0x0181D7E0, bool, Nullable_1_UnityEngine_InputSystem_Users_InputUser__Equals, (Nullable_1_UnityEngine_InputSystem_Users_InputUser___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x0181D850, int32_t, Nullable_1_UnityEngine_InputSystem_Users_InputUser__GetHashCode, (Nullable_1_UnityEngine_InputSystem_Users_InputUser___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C173E0, InputUser, Nullable_1_UnityEngine_InputSystem_Users_InputUser__GetValueOrDefault, (Nullable_1_UnityEngine_InputSystem_Users_InputUser___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181D7D0, InputUser, Nullable_1_UnityEngine_InputSystem_Users_InputUser__GetValueOrDefault_1, (Nullable_1_UnityEngine_InputSystem_Users_InputUser___Boxed * __this, InputUser defaultValue, MethodInfo * method)); -DO_APP_FUNC(0x0181D890, String *, Nullable_1_UnityEngine_InputSystem_Users_InputUser__ToString, (Nullable_1_UnityEngine_InputSystem_Users_InputUser___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181D7E0, bool, Nullable_1_UnityEngine_InputSystem_Users_InputUser__Equals, (Nullable_1_UnityEngine_InputSystem_Users_InputUser_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x0181D850, int32_t, Nullable_1_UnityEngine_InputSystem_Users_InputUser__GetHashCode, (Nullable_1_UnityEngine_InputSystem_Users_InputUser_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C173E0, InputUser, Nullable_1_UnityEngine_InputSystem_Users_InputUser__GetValueOrDefault, (Nullable_1_UnityEngine_InputSystem_Users_InputUser_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181D7D0, InputUser, Nullable_1_UnityEngine_InputSystem_Users_InputUser__GetValueOrDefault_1, (Nullable_1_UnityEngine_InputSystem_Users_InputUser_ * __this, InputUser defaultValue, MethodInfo * method)); +DO_APP_FUNC(0x0181D890, String *, Nullable_1_UnityEngine_InputSystem_Users_InputUser__ToString, (Nullable_1_UnityEngine_InputSystem_Users_InputUser_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0181D970, Nullable_1_UnityEngine_InputSystem_Users_InputUser_, Nullable_1_UnityEngine_InputSystem_Users_InputUser__Unbox, (Object * o, MethodInfo * method)); DO_APP_FUNC(0x0181DA20, Nullable_1_UnityEngine_InputSystem_Users_InputUser_, Nullable_1_UnityEngine_InputSystem_Users_InputUser__UnboxExact, (Object * o, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, Nullable_1_UnityEngine_InputSystem_Users_InputUser__get_HasValue, (Nullable_1_UnityEngine_InputSystem_Users_InputUser___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181D7B0, InputUser, Nullable_1_UnityEngine_InputSystem_Users_InputUser__get_Value, (Nullable_1_UnityEngine_InputSystem_Users_InputUser___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01818830, void, Nullable_1_UnityEngine_InputSystem_Users_InputUserAccountHandle___ctor, (Nullable_1_UnityEngine_InputSystem_Users_InputUserAccountHandle___Boxed * __this, InputUserAccountHandle value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11558, Nullable_1_UnityEngine_InputSystem_Users_InputUser__UnboxExact__MethodInfo); +DO_APP_FUNC(0x00C173D0, bool, Nullable_1_UnityEngine_InputSystem_Users_InputUser__get_HasValue, (Nullable_1_UnityEngine_InputSystem_Users_InputUser_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD610, Nullable_1_UnityEngine_InputSystem_Users_InputUser__get_HasValue__MethodInfo); +DO_APP_FUNC(0x0181D7B0, InputUser, Nullable_1_UnityEngine_InputSystem_Users_InputUser__get_Value, (Nullable_1_UnityEngine_InputSystem_Users_InputUser_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01818830, void, Nullable_1_UnityEngine_InputSystem_Users_InputUserAccountHandle___ctor, (Nullable_1_UnityEngine_InputSystem_Users_InputUserAccountHandle_ * __this, InputUserAccountHandle value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD648, Nullable_1_UnityEngine_InputSystem_Users_InputUserAccountHandle___ctor__MethodInfo); DO_APP_FUNC(0x01818AC0, Object *, Nullable_1_UnityEngine_InputSystem_Users_InputUserAccountHandle__Box, (Nullable_1_UnityEngine_InputSystem_Users_InputUserAccountHandle_ o, MethodInfo * method)); -DO_APP_FUNC(0x0181DBA0, bool, Nullable_1_UnityEngine_InputSystem_Users_InputUserAccountHandle__Equals, (Nullable_1_UnityEngine_InputSystem_Users_InputUserAccountHandle___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x0181DC10, int32_t, Nullable_1_UnityEngine_InputSystem_Users_InputUserAccountHandle__GetHashCode, (Nullable_1_UnityEngine_InputSystem_Users_InputUserAccountHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C16880, InputUserAccountHandle, Nullable_1_UnityEngine_InputSystem_Users_InputUserAccountHandle__GetValueOrDefault, (Nullable_1_UnityEngine_InputSystem_Users_InputUserAccountHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018188B0, InputUserAccountHandle, Nullable_1_UnityEngine_InputSystem_Users_InputUserAccountHandle__GetValueOrDefault_1, (Nullable_1_UnityEngine_InputSystem_Users_InputUserAccountHandle___Boxed * __this, InputUserAccountHandle defaultValue, MethodInfo * method)); -DO_APP_FUNC(0x0181DC80, String *, Nullable_1_UnityEngine_InputSystem_Users_InputUserAccountHandle__ToString, (Nullable_1_UnityEngine_InputSystem_Users_InputUserAccountHandle___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181DBA0, bool, Nullable_1_UnityEngine_InputSystem_Users_InputUserAccountHandle__Equals, (Nullable_1_UnityEngine_InputSystem_Users_InputUserAccountHandle_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x0181DC10, int32_t, Nullable_1_UnityEngine_InputSystem_Users_InputUserAccountHandle__GetHashCode, (Nullable_1_UnityEngine_InputSystem_Users_InputUserAccountHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C16880, InputUserAccountHandle, Nullable_1_UnityEngine_InputSystem_Users_InputUserAccountHandle__GetValueOrDefault, (Nullable_1_UnityEngine_InputSystem_Users_InputUserAccountHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD728, Nullable_1_UnityEngine_InputSystem_Users_InputUserAccountHandle__GetValueOrDefault__MethodInfo); +DO_APP_FUNC(0x018188B0, InputUserAccountHandle, Nullable_1_UnityEngine_InputSystem_Users_InputUserAccountHandle__GetValueOrDefault_1, (Nullable_1_UnityEngine_InputSystem_Users_InputUserAccountHandle_ * __this, InputUserAccountHandle defaultValue, MethodInfo * method)); +DO_APP_FUNC(0x0181DC80, String *, Nullable_1_UnityEngine_InputSystem_Users_InputUserAccountHandle__ToString, (Nullable_1_UnityEngine_InputSystem_Users_InputUserAccountHandle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01818B40, Nullable_1_UnityEngine_InputSystem_Users_InputUserAccountHandle_, Nullable_1_UnityEngine_InputSystem_Users_InputUserAccountHandle__Unbox, (Object * o, MethodInfo * method)); DO_APP_FUNC(0x0181DD00, Nullable_1_UnityEngine_InputSystem_Users_InputUserAccountHandle_, Nullable_1_UnityEngine_InputSystem_Users_InputUserAccountHandle__UnboxExact, (Object * o, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, Nullable_1_UnityEngine_InputSystem_Users_InputUserAccountHandle__get_HasValue, (Nullable_1_UnityEngine_InputSystem_Users_InputUserAccountHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01818890, InputUserAccountHandle, Nullable_1_UnityEngine_InputSystem_Users_InputUserAccountHandle__get_Value, (Nullable_1_UnityEngine_InputSystem_Users_InputUserAccountHandle___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181A0A0, void, Nullable_1_Int16Enum___ctor, (Nullable_1_Int16Enum___Boxed * __this, Int16Enum__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11578, Nullable_1_UnityEngine_InputSystem_Users_InputUserAccountHandle__UnboxExact__MethodInfo); +DO_APP_FUNC(0x00C173D0, bool, Nullable_1_UnityEngine_InputSystem_Users_InputUserAccountHandle__get_HasValue, (Nullable_1_UnityEngine_InputSystem_Users_InputUserAccountHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD720, Nullable_1_UnityEngine_InputSystem_Users_InputUserAccountHandle__get_HasValue__MethodInfo); +DO_APP_FUNC(0x01818890, InputUserAccountHandle, Nullable_1_UnityEngine_InputSystem_Users_InputUserAccountHandle__get_Value, (Nullable_1_UnityEngine_InputSystem_Users_InputUserAccountHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD680, Nullable_1_UnityEngine_InputSystem_Users_InputUserAccountHandle__get_Value__MethodInfo); +DO_APP_FUNC(0x0181A0A0, void, Nullable_1_Int16Enum___ctor, (Nullable_1_Int16Enum_ * __this, Int16Enum__Enum value, MethodInfo * method)); DO_APP_FUNC(0x0181A2F0, Object *, Nullable_1_Int16Enum__Box, (Nullable_1_Int16Enum_ o, MethodInfo * method)); -DO_APP_FUNC(0x0181DF10, bool, Nullable_1_Int16Enum__Equals, (Nullable_1_Int16Enum___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x0181DFB0, int32_t, Nullable_1_Int16Enum__GetHashCode, (Nullable_1_Int16Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181A0D0, Int16Enum__Enum, Nullable_1_Int16Enum__GetValueOrDefault, (Nullable_1_Int16Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181A0E0, Int16Enum__Enum, Nullable_1_Int16Enum__GetValueOrDefault_1, (Nullable_1_Int16Enum___Boxed * __this, Int16Enum__Enum defaultValue, MethodInfo * method)); -DO_APP_FUNC(0x0181DFD0, String *, Nullable_1_Int16Enum__ToString, (Nullable_1_Int16Enum___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181DF10, bool, Nullable_1_Int16Enum__Equals, (Nullable_1_Int16Enum_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x0181DFB0, int32_t, Nullable_1_Int16Enum__GetHashCode, (Nullable_1_Int16Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181A0D0, Int16Enum__Enum, Nullable_1_Int16Enum__GetValueOrDefault, (Nullable_1_Int16Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181A0E0, Int16Enum__Enum, Nullable_1_Int16Enum__GetValueOrDefault_1, (Nullable_1_Int16Enum_ * __this, Int16Enum__Enum defaultValue, MethodInfo * method)); +DO_APP_FUNC(0x0181DFD0, String *, Nullable_1_Int16Enum__ToString, (Nullable_1_Int16Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0181A350, Nullable_1_Int16Enum_, Nullable_1_Int16Enum__Unbox, (Object * o, MethodInfo * method)); DO_APP_FUNC(0x0181E080, Nullable_1_Int16Enum_, Nullable_1_Int16Enum__UnboxExact, (Object * o, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, Nullable_1_Int16Enum__get_HasValue, (Nullable_1_Int16Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181A0B0, Int16Enum__Enum, Nullable_1_Int16Enum__get_Value, (Nullable_1_Int16Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181D7A0, void, Nullable_1_Int32___ctor, (Nullable_1_Int32___Boxed * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11508, Nullable_1_Int16Enum__UnboxExact__MethodInfo); +DO_APP_FUNC(0x00C173D0, bool, Nullable_1_Int16Enum__get_HasValue, (Nullable_1_Int16Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181A0B0, Int16Enum__Enum, Nullable_1_Int16Enum__get_Value, (Nullable_1_Int16Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181D7A0, void, Nullable_1_Int32___ctor, (Nullable_1_Int32_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8F248, Nullable_1_Int32___ctor__MethodInfo); DO_APP_FUNC(0x0181D910, Object *, Nullable_1_Int32__Box, (Nullable_1_Int32_ o, MethodInfo * method)); -DO_APP_FUNC(0x0181E200, bool, Nullable_1_Int32__Equals, (Nullable_1_Int32___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x0181D850, int32_t, Nullable_1_Int32__GetHashCode, (Nullable_1_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C173E0, int32_t, Nullable_1_Int32__GetValueOrDefault, (Nullable_1_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181D7D0, int32_t, Nullable_1_Int32__GetValueOrDefault_1, (Nullable_1_Int32___Boxed * __this, int32_t defaultValue, MethodInfo * method)); -DO_APP_FUNC(0x0181E270, String *, Nullable_1_Int32__ToString, (Nullable_1_Int32___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181E200, bool, Nullable_1_Int32__Equals, (Nullable_1_Int32_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x0181D850, int32_t, Nullable_1_Int32__GetHashCode, (Nullable_1_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C173E0, int32_t, Nullable_1_Int32__GetValueOrDefault, (Nullable_1_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0EE0, Nullable_1_Int32__GetValueOrDefault__MethodInfo); +DO_APP_FUNC(0x0181D7D0, int32_t, Nullable_1_Int32__GetValueOrDefault_1, (Nullable_1_Int32_ * __this, int32_t defaultValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD16D0, Nullable_1_Int32__GetValueOrDefault_1__MethodInfo); +DO_APP_FUNC(0x0181E270, String *, Nullable_1_Int32__ToString, (Nullable_1_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0181D970, Nullable_1_Int32_, Nullable_1_Int32__Unbox, (Object * o, MethodInfo * method)); DO_APP_FUNC(0x0181E2F0, Nullable_1_Int32_, Nullable_1_Int32__UnboxExact, (Object * o, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, Nullable_1_Int32__get_HasValue, (Nullable_1_Int32___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11520, Nullable_1_Int32__UnboxExact__MethodInfo); +DO_APP_FUNC(0x00C173D0, bool, Nullable_1_Int32__get_HasValue, (Nullable_1_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8F290, Nullable_1_Int32__get_HasValue__MethodInfo); -DO_APP_FUNC(0x0181D7B0, int32_t, Nullable_1_Int32__get_Value, (Nullable_1_Int32___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181D7B0, int32_t, Nullable_1_Int32__get_Value, (Nullable_1_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8F258, Nullable_1_Int32__get_Value__MethodInfo); -DO_APP_FUNC(0x0181D7A0, void, Nullable_1_Int32Enum___ctor, (Nullable_1_Int32Enum___Boxed * __this, Int32Enum__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x0181D7A0, void, Nullable_1_Int32Enum___ctor, (Nullable_1_Int32Enum_ * __this, Int32Enum__Enum value, MethodInfo * method)); DO_APP_FUNC(0x0181D910, Object *, Nullable_1_Int32Enum__Box, (Nullable_1_Int32Enum_ o, MethodInfo * method)); -DO_APP_FUNC(0x0181E470, bool, Nullable_1_Int32Enum__Equals, (Nullable_1_Int32Enum___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x0181E510, int32_t, Nullable_1_Int32Enum__GetHashCode, (Nullable_1_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C173E0, Int32Enum__Enum, Nullable_1_Int32Enum__GetValueOrDefault, (Nullable_1_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181D7D0, Int32Enum__Enum, Nullable_1_Int32Enum__GetValueOrDefault_1, (Nullable_1_Int32Enum___Boxed * __this, Int32Enum__Enum defaultValue, MethodInfo * method)); -DO_APP_FUNC(0x0181E520, String *, Nullable_1_Int32Enum__ToString, (Nullable_1_Int32Enum___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181E470, bool, Nullable_1_Int32Enum__Equals, (Nullable_1_Int32Enum_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x0181E510, int32_t, Nullable_1_Int32Enum__GetHashCode, (Nullable_1_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C173E0, Int32Enum__Enum, Nullable_1_Int32Enum__GetValueOrDefault, (Nullable_1_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181D7D0, Int32Enum__Enum, Nullable_1_Int32Enum__GetValueOrDefault_1, (Nullable_1_Int32Enum_ * __this, Int32Enum__Enum defaultValue, MethodInfo * method)); +DO_APP_FUNC(0x0181E520, String *, Nullable_1_Int32Enum__ToString, (Nullable_1_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0181D970, Nullable_1_Int32Enum_, Nullable_1_Int32Enum__Unbox, (Object * o, MethodInfo * method)); DO_APP_FUNC(0x0181E5D0, Nullable_1_Int32Enum_, Nullable_1_Int32Enum__UnboxExact, (Object * o, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, Nullable_1_Int32Enum__get_HasValue, (Nullable_1_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181D7B0, Int32Enum__Enum, Nullable_1_Int32Enum__get_Value, (Nullable_1_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181A9F0, void, Nullable_1_Int64___ctor, (Nullable_1_Int64___Boxed * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11538, Nullable_1_Int32Enum__UnboxExact__MethodInfo); +DO_APP_FUNC(0x00C173D0, bool, Nullable_1_Int32Enum__get_HasValue, (Nullable_1_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181D7B0, Int32Enum__Enum, Nullable_1_Int32Enum__get_Value, (Nullable_1_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181A9F0, void, Nullable_1_Int64___ctor, (Nullable_1_Int64_ * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB48E8, Nullable_1_Int64___ctor__MethodInfo); DO_APP_FUNC(0x018195A0, Object *, Nullable_1_Int64__Box, (Nullable_1_Int64_ o, MethodInfo * method)); -DO_APP_FUNC(0x0181E750, bool, Nullable_1_Int64__Equals, (Nullable_1_Int64___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x0181E7C0, int32_t, Nullable_1_Int64__GetHashCode, (Nullable_1_Int64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, int64_t, Nullable_1_Int64__GetValueOrDefault, (Nullable_1_Int64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01819350, int64_t, Nullable_1_Int64__GetValueOrDefault_1, (Nullable_1_Int64___Boxed * __this, int64_t defaultValue, MethodInfo * method)); -DO_APP_FUNC(0x0181E800, String *, Nullable_1_Int64__ToString, (Nullable_1_Int64___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181E750, bool, Nullable_1_Int64__Equals, (Nullable_1_Int64_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x0181E7C0, int32_t, Nullable_1_Int64__GetHashCode, (Nullable_1_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, int64_t, Nullable_1_Int64__GetValueOrDefault, (Nullable_1_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB48F8, Nullable_1_Int64__GetValueOrDefault__MethodInfo); +DO_APP_FUNC(0x01819350, int64_t, Nullable_1_Int64__GetValueOrDefault_1, (Nullable_1_Int64_ * __this, int64_t defaultValue, MethodInfo * method)); +DO_APP_FUNC(0x0181E800, String *, Nullable_1_Int64__ToString, (Nullable_1_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEE810, Nullable_1_Int64__ToString__MethodInfo); DO_APP_FUNC(0x0181AC00, Nullable_1_Int64_, Nullable_1_Int64__Unbox, (Object * o, MethodInfo * method)); DO_APP_FUNC(0x0181E880, Nullable_1_Int64_, Nullable_1_Int64__UnboxExact, (Object * o, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, Nullable_1_Int64__get_HasValue, (Nullable_1_Int64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01819330, int64_t, Nullable_1_Int64__get_Value, (Nullable_1_Int64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181EA20, void, Nullable_1_PlaceholderSoftware_WetStuff_Rendering_LayerArrays___ctor, (Nullable_1_PlaceholderSoftware_WetStuff_Rendering_LayerArrays___Boxed * __this, LayerArrays value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11540, Nullable_1_Int64__UnboxExact__MethodInfo); +DO_APP_FUNC(0x00C173D0, bool, Nullable_1_Int64__get_HasValue, (Nullable_1_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC360, Nullable_1_Int64__get_HasValue__MethodInfo); +DO_APP_FUNC(0x01819330, int64_t, Nullable_1_Int64__get_Value, (Nullable_1_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC358, Nullable_1_Int64__get_Value__MethodInfo); +DO_APP_FUNC(0x0181EA20, void, Nullable_1_PlaceholderSoftware_WetStuff_Rendering_LayerArrays___ctor, (Nullable_1_PlaceholderSoftware_WetStuff_Rendering_LayerArrays_ * __this, LayerArrays value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D003D0, Nullable_1_PlaceholderSoftware_WetStuff_Rendering_LayerArrays___ctor__MethodInfo); DO_APP_FUNC(0x0181ED50, Object *, Nullable_1_PlaceholderSoftware_WetStuff_Rendering_LayerArrays__Box, (Nullable_1_PlaceholderSoftware_WetStuff_Rendering_LayerArrays_ o, MethodInfo * method)); -DO_APP_FUNC(0x0181EAF0, bool, Nullable_1_PlaceholderSoftware_WetStuff_Rendering_LayerArrays__Equals, (Nullable_1_PlaceholderSoftware_WetStuff_Rendering_LayerArrays___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x0181EBA0, int32_t, Nullable_1_PlaceholderSoftware_WetStuff_Rendering_LayerArrays__GetHashCode, (Nullable_1_PlaceholderSoftware_WetStuff_Rendering_LayerArrays___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171C0A0, LayerArrays, Nullable_1_PlaceholderSoftware_WetStuff_Rendering_LayerArrays__GetValueOrDefault, (Nullable_1_PlaceholderSoftware_WetStuff_Rendering_LayerArrays___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181EAC0, LayerArrays, Nullable_1_PlaceholderSoftware_WetStuff_Rendering_LayerArrays__GetValueOrDefault_1, (Nullable_1_PlaceholderSoftware_WetStuff_Rendering_LayerArrays___Boxed * __this, LayerArrays defaultValue, MethodInfo * method)); -DO_APP_FUNC(0x0181ECA0, String *, Nullable_1_PlaceholderSoftware_WetStuff_Rendering_LayerArrays__ToString, (Nullable_1_PlaceholderSoftware_WetStuff_Rendering_LayerArrays___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181EAF0, bool, Nullable_1_PlaceholderSoftware_WetStuff_Rendering_LayerArrays__Equals, (Nullable_1_PlaceholderSoftware_WetStuff_Rendering_LayerArrays_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x0181EBA0, int32_t, Nullable_1_PlaceholderSoftware_WetStuff_Rendering_LayerArrays__GetHashCode, (Nullable_1_PlaceholderSoftware_WetStuff_Rendering_LayerArrays_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171C0A0, LayerArrays, Nullable_1_PlaceholderSoftware_WetStuff_Rendering_LayerArrays__GetValueOrDefault, (Nullable_1_PlaceholderSoftware_WetStuff_Rendering_LayerArrays_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181EAC0, LayerArrays, Nullable_1_PlaceholderSoftware_WetStuff_Rendering_LayerArrays__GetValueOrDefault_1, (Nullable_1_PlaceholderSoftware_WetStuff_Rendering_LayerArrays_ * __this, LayerArrays defaultValue, MethodInfo * method)); +DO_APP_FUNC(0x0181ECA0, String *, Nullable_1_PlaceholderSoftware_WetStuff_Rendering_LayerArrays__ToString, (Nullable_1_PlaceholderSoftware_WetStuff_Rendering_LayerArrays_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0181EDD0, Nullable_1_PlaceholderSoftware_WetStuff_Rendering_LayerArrays_, Nullable_1_PlaceholderSoftware_WetStuff_Rendering_LayerArrays__Unbox, (Object * o, MethodInfo * method)); DO_APP_FUNC(0x0181EF10, Nullable_1_PlaceholderSoftware_WetStuff_Rendering_LayerArrays_, Nullable_1_PlaceholderSoftware_WetStuff_Rendering_LayerArrays__UnboxExact, (Object * o, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, Nullable_1_PlaceholderSoftware_WetStuff_Rendering_LayerArrays__get_HasValue, (Nullable_1_PlaceholderSoftware_WetStuff_Rendering_LayerArrays___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181EA90, LayerArrays, Nullable_1_PlaceholderSoftware_WetStuff_Rendering_LayerArrays__get_Value, (Nullable_1_PlaceholderSoftware_WetStuff_Rendering_LayerArrays___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181F140, void, Nullable_1_System_Linq_Expressions_Interpreter_LocalDefinition___ctor, (Nullable_1_System_Linq_Expressions_Interpreter_LocalDefinition___Boxed * __this, LocalDefinition value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D114D0, Nullable_1_PlaceholderSoftware_WetStuff_Rendering_LayerArrays__UnboxExact__MethodInfo); +DO_APP_FUNC(0x00C173D0, bool, Nullable_1_PlaceholderSoftware_WetStuff_Rendering_LayerArrays__get_HasValue, (Nullable_1_PlaceholderSoftware_WetStuff_Rendering_LayerArrays_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D004E8, Nullable_1_PlaceholderSoftware_WetStuff_Rendering_LayerArrays__get_HasValue__MethodInfo); +DO_APP_FUNC(0x0181EA90, LayerArrays, Nullable_1_PlaceholderSoftware_WetStuff_Rendering_LayerArrays__get_Value, (Nullable_1_PlaceholderSoftware_WetStuff_Rendering_LayerArrays_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D004D8, Nullable_1_PlaceholderSoftware_WetStuff_Rendering_LayerArrays__get_Value__MethodInfo); +DO_APP_FUNC(0x0181F140, void, Nullable_1_System_Linq_Expressions_Interpreter_LocalDefinition___ctor, (Nullable_1_System_Linq_Expressions_Interpreter_LocalDefinition_ * __this, LocalDefinition value, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C99480, Nullable_1_System_Linq_Expressions_Interpreter_LocalDefinition___ctor__MethodInfo); DO_APP_FUNC(0x01818AC0, Object *, Nullable_1_System_Linq_Expressions_Interpreter_LocalDefinition__Box, (Nullable_1_System_Linq_Expressions_Interpreter_LocalDefinition_ o, MethodInfo * method)); -DO_APP_FUNC(0x0181F1A0, bool, Nullable_1_System_Linq_Expressions_Interpreter_LocalDefinition__Equals, (Nullable_1_System_Linq_Expressions_Interpreter_LocalDefinition___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x0181F210, int32_t, Nullable_1_System_Linq_Expressions_Interpreter_LocalDefinition__GetHashCode, (Nullable_1_System_Linq_Expressions_Interpreter_LocalDefinition___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C16880, LocalDefinition, Nullable_1_System_Linq_Expressions_Interpreter_LocalDefinition__GetValueOrDefault, (Nullable_1_System_Linq_Expressions_Interpreter_LocalDefinition___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181F1A0, bool, Nullable_1_System_Linq_Expressions_Interpreter_LocalDefinition__Equals, (Nullable_1_System_Linq_Expressions_Interpreter_LocalDefinition_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x0181F210, int32_t, Nullable_1_System_Linq_Expressions_Interpreter_LocalDefinition__GetHashCode, (Nullable_1_System_Linq_Expressions_Interpreter_LocalDefinition_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C16880, LocalDefinition, Nullable_1_System_Linq_Expressions_Interpreter_LocalDefinition__GetValueOrDefault, (Nullable_1_System_Linq_Expressions_Interpreter_LocalDefinition_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C99478, Nullable_1_System_Linq_Expressions_Interpreter_LocalDefinition__GetValueOrDefault__MethodInfo); -DO_APP_FUNC(0x018188B0, LocalDefinition, Nullable_1_System_Linq_Expressions_Interpreter_LocalDefinition__GetValueOrDefault_1, (Nullable_1_System_Linq_Expressions_Interpreter_LocalDefinition___Boxed * __this, LocalDefinition defaultValue, MethodInfo * method)); -DO_APP_FUNC(0x0181F260, String *, Nullable_1_System_Linq_Expressions_Interpreter_LocalDefinition__ToString, (Nullable_1_System_Linq_Expressions_Interpreter_LocalDefinition___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x018188B0, LocalDefinition, Nullable_1_System_Linq_Expressions_Interpreter_LocalDefinition__GetValueOrDefault_1, (Nullable_1_System_Linq_Expressions_Interpreter_LocalDefinition_ * __this, LocalDefinition defaultValue, MethodInfo * method)); +DO_APP_FUNC(0x0181F260, String *, Nullable_1_System_Linq_Expressions_Interpreter_LocalDefinition__ToString, (Nullable_1_System_Linq_Expressions_Interpreter_LocalDefinition_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0181F310, Nullable_1_System_Linq_Expressions_Interpreter_LocalDefinition_, Nullable_1_System_Linq_Expressions_Interpreter_LocalDefinition__Unbox, (Object * o, MethodInfo * method)); DO_APP_FUNC(0x0181F440, Nullable_1_System_Linq_Expressions_Interpreter_LocalDefinition_, Nullable_1_System_Linq_Expressions_Interpreter_LocalDefinition__UnboxExact, (Object * o, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, Nullable_1_System_Linq_Expressions_Interpreter_LocalDefinition__get_HasValue, (Nullable_1_System_Linq_Expressions_Interpreter_LocalDefinition___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D114E0, Nullable_1_System_Linq_Expressions_Interpreter_LocalDefinition__UnboxExact__MethodInfo); +DO_APP_FUNC(0x00C173D0, bool, Nullable_1_System_Linq_Expressions_Interpreter_LocalDefinition__get_HasValue, (Nullable_1_System_Linq_Expressions_Interpreter_LocalDefinition_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9C990, Nullable_1_System_Linq_Expressions_Interpreter_LocalDefinition__get_HasValue__MethodInfo); -DO_APP_FUNC(0x01818890, LocalDefinition, Nullable_1_System_Linq_Expressions_Interpreter_LocalDefinition__get_Value, (Nullable_1_System_Linq_Expressions_Interpreter_LocalDefinition___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181F650, void, Nullable_1_Microsoft_MixedReality_OpenXR_ManipulationEventData___ctor, (Nullable_1_Microsoft_MixedReality_OpenXR_ManipulationEventData___Boxed * __this, ManipulationEventData value, MethodInfo * method)); +DO_APP_FUNC(0x01818890, LocalDefinition, Nullable_1_System_Linq_Expressions_Interpreter_LocalDefinition__get_Value, (Nullable_1_System_Linq_Expressions_Interpreter_LocalDefinition_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181F650, void, Nullable_1_Microsoft_MixedReality_OpenXR_ManipulationEventData___ctor, (Nullable_1_Microsoft_MixedReality_OpenXR_ManipulationEventData_ * __this, ManipulationEventData value, MethodInfo * method)); DO_APP_FUNC(0x0181F930, Object *, Nullable_1_Microsoft_MixedReality_OpenXR_ManipulationEventData__Box, (Nullable_1_Microsoft_MixedReality_OpenXR_ManipulationEventData_ o, MethodInfo * method)); -DO_APP_FUNC(0x0181F6D0, bool, Nullable_1_Microsoft_MixedReality_OpenXR_ManipulationEventData__Equals, (Nullable_1_Microsoft_MixedReality_OpenXR_ManipulationEventData___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x0181F780, int32_t, Nullable_1_Microsoft_MixedReality_OpenXR_ManipulationEventData__GetHashCode, (Nullable_1_Microsoft_MixedReality_OpenXR_ManipulationEventData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C16680, ManipulationEventData, Nullable_1_Microsoft_MixedReality_OpenXR_ManipulationEventData__GetValueOrDefault, (Nullable_1_Microsoft_MixedReality_OpenXR_ManipulationEventData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181F6A0, ManipulationEventData, Nullable_1_Microsoft_MixedReality_OpenXR_ManipulationEventData__GetValueOrDefault_1, (Nullable_1_Microsoft_MixedReality_OpenXR_ManipulationEventData___Boxed * __this, ManipulationEventData defaultValue, MethodInfo * method)); -DO_APP_FUNC(0x0181F880, String *, Nullable_1_Microsoft_MixedReality_OpenXR_ManipulationEventData__ToString, (Nullable_1_Microsoft_MixedReality_OpenXR_ManipulationEventData___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181F6D0, bool, Nullable_1_Microsoft_MixedReality_OpenXR_ManipulationEventData__Equals, (Nullable_1_Microsoft_MixedReality_OpenXR_ManipulationEventData_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x0181F780, int32_t, Nullable_1_Microsoft_MixedReality_OpenXR_ManipulationEventData__GetHashCode, (Nullable_1_Microsoft_MixedReality_OpenXR_ManipulationEventData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C16680, ManipulationEventData, Nullable_1_Microsoft_MixedReality_OpenXR_ManipulationEventData__GetValueOrDefault, (Nullable_1_Microsoft_MixedReality_OpenXR_ManipulationEventData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181F6A0, ManipulationEventData, Nullable_1_Microsoft_MixedReality_OpenXR_ManipulationEventData__GetValueOrDefault_1, (Nullable_1_Microsoft_MixedReality_OpenXR_ManipulationEventData_ * __this, ManipulationEventData defaultValue, MethodInfo * method)); +DO_APP_FUNC(0x0181F880, String *, Nullable_1_Microsoft_MixedReality_OpenXR_ManipulationEventData__ToString, (Nullable_1_Microsoft_MixedReality_OpenXR_ManipulationEventData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0181F9A0, Nullable_1_Microsoft_MixedReality_OpenXR_ManipulationEventData_, Nullable_1_Microsoft_MixedReality_OpenXR_ManipulationEventData__Unbox, (Object * o, MethodInfo * method)); DO_APP_FUNC(0x0181FA70, Nullable_1_Microsoft_MixedReality_OpenXR_ManipulationEventData_, Nullable_1_Microsoft_MixedReality_OpenXR_ManipulationEventData__UnboxExact, (Object * o, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, Nullable_1_Microsoft_MixedReality_OpenXR_ManipulationEventData__get_HasValue, (Nullable_1_Microsoft_MixedReality_OpenXR_ManipulationEventData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181F670, ManipulationEventData, Nullable_1_Microsoft_MixedReality_OpenXR_ManipulationEventData__get_Value, (Nullable_1_Microsoft_MixedReality_OpenXR_ManipulationEventData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181A580, void, Nullable_1_Microsoft_MixedReality_OpenXR_NavigationEventData___ctor, (Nullable_1_Microsoft_MixedReality_OpenXR_NavigationEventData___Boxed * __this, NavigationEventData value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D165F0, Nullable_1_Microsoft_MixedReality_OpenXR_ManipulationEventData__UnboxExact__MethodInfo); +DO_APP_FUNC(0x00C173D0, bool, Nullable_1_Microsoft_MixedReality_OpenXR_ManipulationEventData__get_HasValue, (Nullable_1_Microsoft_MixedReality_OpenXR_ManipulationEventData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181F670, ManipulationEventData, Nullable_1_Microsoft_MixedReality_OpenXR_ManipulationEventData__get_Value, (Nullable_1_Microsoft_MixedReality_OpenXR_ManipulationEventData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181A580, void, Nullable_1_Microsoft_MixedReality_OpenXR_NavigationEventData___ctor, (Nullable_1_Microsoft_MixedReality_OpenXR_NavigationEventData_ * __this, NavigationEventData value, MethodInfo * method)); DO_APP_FUNC(0x0181A6F0, Object *, Nullable_1_Microsoft_MixedReality_OpenXR_NavigationEventData__Box, (Nullable_1_Microsoft_MixedReality_OpenXR_NavigationEventData_ o, MethodInfo * method)); -DO_APP_FUNC(0x0181FC10, bool, Nullable_1_Microsoft_MixedReality_OpenXR_NavigationEventData__Equals, (Nullable_1_Microsoft_MixedReality_OpenXR_NavigationEventData___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x0181FCB0, int32_t, Nullable_1_Microsoft_MixedReality_OpenXR_NavigationEventData__GetHashCode, (Nullable_1_Microsoft_MixedReality_OpenXR_NavigationEventData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171BD20, NavigationEventData, Nullable_1_Microsoft_MixedReality_OpenXR_NavigationEventData__GetValueOrDefault, (Nullable_1_Microsoft_MixedReality_OpenXR_NavigationEventData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181A5B0, NavigationEventData, Nullable_1_Microsoft_MixedReality_OpenXR_NavigationEventData__GetValueOrDefault_1, (Nullable_1_Microsoft_MixedReality_OpenXR_NavigationEventData___Boxed * __this, NavigationEventData defaultValue, MethodInfo * method)); -DO_APP_FUNC(0x0181FDA0, String *, Nullable_1_Microsoft_MixedReality_OpenXR_NavigationEventData__ToString, (Nullable_1_Microsoft_MixedReality_OpenXR_NavigationEventData___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181FC10, bool, Nullable_1_Microsoft_MixedReality_OpenXR_NavigationEventData__Equals, (Nullable_1_Microsoft_MixedReality_OpenXR_NavigationEventData_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x0181FCB0, int32_t, Nullable_1_Microsoft_MixedReality_OpenXR_NavigationEventData__GetHashCode, (Nullable_1_Microsoft_MixedReality_OpenXR_NavigationEventData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171BD20, NavigationEventData, Nullable_1_Microsoft_MixedReality_OpenXR_NavigationEventData__GetValueOrDefault, (Nullable_1_Microsoft_MixedReality_OpenXR_NavigationEventData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181A5B0, NavigationEventData, Nullable_1_Microsoft_MixedReality_OpenXR_NavigationEventData__GetValueOrDefault_1, (Nullable_1_Microsoft_MixedReality_OpenXR_NavigationEventData_ * __this, NavigationEventData defaultValue, MethodInfo * method)); +DO_APP_FUNC(0x0181FDA0, String *, Nullable_1_Microsoft_MixedReality_OpenXR_NavigationEventData__ToString, (Nullable_1_Microsoft_MixedReality_OpenXR_NavigationEventData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0181A760, Nullable_1_Microsoft_MixedReality_OpenXR_NavigationEventData_, Nullable_1_Microsoft_MixedReality_OpenXR_NavigationEventData__Unbox, (Object * o, MethodInfo * method)); DO_APP_FUNC(0x0181FE50, Nullable_1_Microsoft_MixedReality_OpenXR_NavigationEventData_, Nullable_1_Microsoft_MixedReality_OpenXR_NavigationEventData__UnboxExact, (Object * o, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, Nullable_1_Microsoft_MixedReality_OpenXR_NavigationEventData__get_HasValue, (Nullable_1_Microsoft_MixedReality_OpenXR_NavigationEventData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181A590, NavigationEventData, Nullable_1_Microsoft_MixedReality_OpenXR_NavigationEventData__get_Value, (Nullable_1_Microsoft_MixedReality_OpenXR_NavigationEventData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181A9F0, void, Nullable_1_Photon_Bolt_NetworkId___ctor, (Nullable_1_Photon_Bolt_NetworkId___Boxed * __this, NetworkId value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16550, Nullable_1_Microsoft_MixedReality_OpenXR_NavigationEventData__UnboxExact__MethodInfo); +DO_APP_FUNC(0x00C173D0, bool, Nullable_1_Microsoft_MixedReality_OpenXR_NavigationEventData__get_HasValue, (Nullable_1_Microsoft_MixedReality_OpenXR_NavigationEventData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181A590, NavigationEventData, Nullable_1_Microsoft_MixedReality_OpenXR_NavigationEventData__get_Value, (Nullable_1_Microsoft_MixedReality_OpenXR_NavigationEventData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181A9F0, void, Nullable_1_Photon_Bolt_NetworkId___ctor, (Nullable_1_Photon_Bolt_NetworkId_ * __this, NetworkId value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8378, Nullable_1_Photon_Bolt_NetworkId___ctor__MethodInfo); DO_APP_FUNC(0x018195A0, Object *, Nullable_1_Photon_Bolt_NetworkId__Box, (Nullable_1_Photon_Bolt_NetworkId_ o, MethodInfo * method)); -DO_APP_FUNC(0x01820000, bool, Nullable_1_Photon_Bolt_NetworkId__Equals, (Nullable_1_Photon_Bolt_NetworkId___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x01820070, int32_t, Nullable_1_Photon_Bolt_NetworkId__GetHashCode, (Nullable_1_Photon_Bolt_NetworkId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00594C90, NetworkId, Nullable_1_Photon_Bolt_NetworkId__GetValueOrDefault, (Nullable_1_Photon_Bolt_NetworkId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01819350, NetworkId, Nullable_1_Photon_Bolt_NetworkId__GetValueOrDefault_1, (Nullable_1_Photon_Bolt_NetworkId___Boxed * __this, NetworkId defaultValue, MethodInfo * method)); -DO_APP_FUNC(0x018200B0, String *, Nullable_1_Photon_Bolt_NetworkId__ToString, (Nullable_1_Photon_Bolt_NetworkId___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01820000, bool, Nullable_1_Photon_Bolt_NetworkId__Equals, (Nullable_1_Photon_Bolt_NetworkId_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x01820070, int32_t, Nullable_1_Photon_Bolt_NetworkId__GetHashCode, (Nullable_1_Photon_Bolt_NetworkId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00594C90, NetworkId, Nullable_1_Photon_Bolt_NetworkId__GetValueOrDefault, (Nullable_1_Photon_Bolt_NetworkId_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8380, Nullable_1_Photon_Bolt_NetworkId__GetValueOrDefault__MethodInfo); +DO_APP_FUNC(0x01819350, NetworkId, Nullable_1_Photon_Bolt_NetworkId__GetValueOrDefault_1, (Nullable_1_Photon_Bolt_NetworkId_ * __this, NetworkId defaultValue, MethodInfo * method)); +DO_APP_FUNC(0x018200B0, String *, Nullable_1_Photon_Bolt_NetworkId__ToString, (Nullable_1_Photon_Bolt_NetworkId_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0181AC00, Nullable_1_Photon_Bolt_NetworkId_, Nullable_1_Photon_Bolt_NetworkId__Unbox, (Object * o, MethodInfo * method)); DO_APP_FUNC(0x01820130, Nullable_1_Photon_Bolt_NetworkId_, Nullable_1_Photon_Bolt_NetworkId__UnboxExact, (Object * o, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, Nullable_1_Photon_Bolt_NetworkId__get_HasValue, (Nullable_1_Photon_Bolt_NetworkId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01819330, NetworkId, Nullable_1_Photon_Bolt_NetworkId__get_Value, (Nullable_1_Photon_Bolt_NetworkId___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181EA20, void, Nullable_1_UnityEngine_Playables_PlayableBinding___ctor, (Nullable_1_UnityEngine_Playables_PlayableBinding___Boxed * __this, PlayableBinding value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16560, Nullable_1_Photon_Bolt_NetworkId__UnboxExact__MethodInfo); +DO_APP_FUNC(0x00C173D0, bool, Nullable_1_Photon_Bolt_NetworkId__get_HasValue, (Nullable_1_Photon_Bolt_NetworkId_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8370, Nullable_1_Photon_Bolt_NetworkId__get_HasValue__MethodInfo); +DO_APP_FUNC(0x01819330, NetworkId, Nullable_1_Photon_Bolt_NetworkId__get_Value, (Nullable_1_Photon_Bolt_NetworkId_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181EA20, void, Nullable_1_UnityEngine_Playables_PlayableBinding___ctor, (Nullable_1_UnityEngine_Playables_PlayableBinding_ * __this, PlayableBinding value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B3D0, Nullable_1_UnityEngine_Playables_PlayableBinding___ctor__MethodInfo); DO_APP_FUNC(0x0181ED50, Object *, Nullable_1_UnityEngine_Playables_PlayableBinding__Box, (Nullable_1_UnityEngine_Playables_PlayableBinding_ o, MethodInfo * method)); -DO_APP_FUNC(0x0181EAF0, bool, Nullable_1_UnityEngine_Playables_PlayableBinding__Equals, (Nullable_1_UnityEngine_Playables_PlayableBinding___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x0181EBA0, int32_t, Nullable_1_UnityEngine_Playables_PlayableBinding__GetHashCode, (Nullable_1_UnityEngine_Playables_PlayableBinding___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171C0A0, PlayableBinding, Nullable_1_UnityEngine_Playables_PlayableBinding__GetValueOrDefault, (Nullable_1_UnityEngine_Playables_PlayableBinding___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181EAC0, PlayableBinding, Nullable_1_UnityEngine_Playables_PlayableBinding__GetValueOrDefault_1, (Nullable_1_UnityEngine_Playables_PlayableBinding___Boxed * __this, PlayableBinding defaultValue, MethodInfo * method)); -DO_APP_FUNC(0x018202D0, String *, Nullable_1_UnityEngine_Playables_PlayableBinding__ToString, (Nullable_1_UnityEngine_Playables_PlayableBinding___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181EAF0, bool, Nullable_1_UnityEngine_Playables_PlayableBinding__Equals, (Nullable_1_UnityEngine_Playables_PlayableBinding_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x0181EBA0, int32_t, Nullable_1_UnityEngine_Playables_PlayableBinding__GetHashCode, (Nullable_1_UnityEngine_Playables_PlayableBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171C0A0, PlayableBinding, Nullable_1_UnityEngine_Playables_PlayableBinding__GetValueOrDefault, (Nullable_1_UnityEngine_Playables_PlayableBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B3D8, Nullable_1_UnityEngine_Playables_PlayableBinding__GetValueOrDefault__MethodInfo); +DO_APP_FUNC(0x0181EAC0, PlayableBinding, Nullable_1_UnityEngine_Playables_PlayableBinding__GetValueOrDefault_1, (Nullable_1_UnityEngine_Playables_PlayableBinding_ * __this, PlayableBinding defaultValue, MethodInfo * method)); +DO_APP_FUNC(0x018202D0, String *, Nullable_1_UnityEngine_Playables_PlayableBinding__ToString, (Nullable_1_UnityEngine_Playables_PlayableBinding_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0181EDD0, Nullable_1_UnityEngine_Playables_PlayableBinding_, Nullable_1_UnityEngine_Playables_PlayableBinding__Unbox, (Object * o, MethodInfo * method)); DO_APP_FUNC(0x01820380, Nullable_1_UnityEngine_Playables_PlayableBinding_, Nullable_1_UnityEngine_Playables_PlayableBinding__UnboxExact, (Object * o, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, Nullable_1_UnityEngine_Playables_PlayableBinding__get_HasValue, (Nullable_1_UnityEngine_Playables_PlayableBinding___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181EA90, PlayableBinding, Nullable_1_UnityEngine_Playables_PlayableBinding__get_Value, (Nullable_1_UnityEngine_Playables_PlayableBinding___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181F650, void, Nullable_1_Dissonance_Audio_Playback_PlaybackOptions___ctor, (Nullable_1_Dissonance_Audio_Playback_PlaybackOptions___Boxed * __this, PlaybackOptions value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16580, Nullable_1_UnityEngine_Playables_PlayableBinding__UnboxExact__MethodInfo); +DO_APP_FUNC(0x00C173D0, bool, Nullable_1_UnityEngine_Playables_PlayableBinding__get_HasValue, (Nullable_1_UnityEngine_Playables_PlayableBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B3C8, Nullable_1_UnityEngine_Playables_PlayableBinding__get_HasValue__MethodInfo); +DO_APP_FUNC(0x0181EA90, PlayableBinding, Nullable_1_UnityEngine_Playables_PlayableBinding__get_Value, (Nullable_1_UnityEngine_Playables_PlayableBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181F650, void, Nullable_1_Dissonance_Audio_Playback_PlaybackOptions___ctor, (Nullable_1_Dissonance_Audio_Playback_PlaybackOptions_ * __this, PlaybackOptions value, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C93AD8, Nullable_1_Dissonance_Audio_Playback_PlaybackOptions___ctor__MethodInfo); DO_APP_FUNC(0x0181F930, Object *, Nullable_1_Dissonance_Audio_Playback_PlaybackOptions__Box, (Nullable_1_Dissonance_Audio_Playback_PlaybackOptions_ o, MethodInfo * method)); -DO_APP_FUNC(0x0181F6D0, bool, Nullable_1_Dissonance_Audio_Playback_PlaybackOptions__Equals, (Nullable_1_Dissonance_Audio_Playback_PlaybackOptions___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x0181F780, int32_t, Nullable_1_Dissonance_Audio_Playback_PlaybackOptions__GetHashCode, (Nullable_1_Dissonance_Audio_Playback_PlaybackOptions___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C16680, PlaybackOptions, Nullable_1_Dissonance_Audio_Playback_PlaybackOptions__GetValueOrDefault, (Nullable_1_Dissonance_Audio_Playback_PlaybackOptions___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181F6D0, bool, Nullable_1_Dissonance_Audio_Playback_PlaybackOptions__Equals, (Nullable_1_Dissonance_Audio_Playback_PlaybackOptions_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x0181F780, int32_t, Nullable_1_Dissonance_Audio_Playback_PlaybackOptions__GetHashCode, (Nullable_1_Dissonance_Audio_Playback_PlaybackOptions_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C16680, PlaybackOptions, Nullable_1_Dissonance_Audio_Playback_PlaybackOptions__GetValueOrDefault, (Nullable_1_Dissonance_Audio_Playback_PlaybackOptions_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C934F8, Nullable_1_Dissonance_Audio_Playback_PlaybackOptions__GetValueOrDefault__MethodInfo); -DO_APP_FUNC(0x0181F6A0, PlaybackOptions, Nullable_1_Dissonance_Audio_Playback_PlaybackOptions__GetValueOrDefault_1, (Nullable_1_Dissonance_Audio_Playback_PlaybackOptions___Boxed * __this, PlaybackOptions defaultValue, MethodInfo * method)); -DO_APP_FUNC(0x018205B0, String *, Nullable_1_Dissonance_Audio_Playback_PlaybackOptions__ToString, (Nullable_1_Dissonance_Audio_Playback_PlaybackOptions___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181F6A0, PlaybackOptions, Nullable_1_Dissonance_Audio_Playback_PlaybackOptions__GetValueOrDefault_1, (Nullable_1_Dissonance_Audio_Playback_PlaybackOptions_ * __this, PlaybackOptions defaultValue, MethodInfo * method)); +DO_APP_FUNC(0x018205B0, String *, Nullable_1_Dissonance_Audio_Playback_PlaybackOptions__ToString, (Nullable_1_Dissonance_Audio_Playback_PlaybackOptions_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0181F9A0, Nullable_1_Dissonance_Audio_Playback_PlaybackOptions_, Nullable_1_Dissonance_Audio_Playback_PlaybackOptions__Unbox, (Object * o, MethodInfo * method)); DO_APP_FUNC(0x01820660, Nullable_1_Dissonance_Audio_Playback_PlaybackOptions_, Nullable_1_Dissonance_Audio_Playback_PlaybackOptions__UnboxExact, (Object * o, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, Nullable_1_Dissonance_Audio_Playback_PlaybackOptions__get_HasValue, (Nullable_1_Dissonance_Audio_Playback_PlaybackOptions___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D164F8, Nullable_1_Dissonance_Audio_Playback_PlaybackOptions__UnboxExact__MethodInfo); +DO_APP_FUNC(0x00C173D0, bool, Nullable_1_Dissonance_Audio_Playback_PlaybackOptions__get_HasValue, (Nullable_1_Dissonance_Audio_Playback_PlaybackOptions_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C93AB0, Nullable_1_Dissonance_Audio_Playback_PlaybackOptions__get_HasValue__MethodInfo); -DO_APP_FUNC(0x0181F670, PlaybackOptions, Nullable_1_Dissonance_Audio_Playback_PlaybackOptions__get_Value, (Nullable_1_Dissonance_Audio_Playback_PlaybackOptions___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181F670, PlaybackOptions, Nullable_1_Dissonance_Audio_Playback_PlaybackOptions__get_Value, (Nullable_1_Dissonance_Audio_Playback_PlaybackOptions_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C93AB8, Nullable_1_Dissonance_Audio_Playback_PlaybackOptions__get_Value__MethodInfo); -DO_APP_FUNC(0x01820800, void, Nullable_1_Dissonance_PlayerChannel___ctor, (Nullable_1_Dissonance_PlayerChannel___Boxed * __this, PlayerChannel value, MethodInfo * method)); +DO_APP_FUNC(0x01820800, void, Nullable_1_Dissonance_PlayerChannel___ctor, (Nullable_1_Dissonance_PlayerChannel_ * __this, PlayerChannel value, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8ED50, Nullable_1_Dissonance_PlayerChannel___ctor__MethodInfo); DO_APP_FUNC(0x0181ED50, Object *, Nullable_1_Dissonance_PlayerChannel__Box, (Nullable_1_Dissonance_PlayerChannel_ o, MethodInfo * method)); -DO_APP_FUNC(0x01820870, bool, Nullable_1_Dissonance_PlayerChannel__Equals, (Nullable_1_Dissonance_PlayerChannel___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x018208E0, int32_t, Nullable_1_Dissonance_PlayerChannel__GetHashCode, (Nullable_1_Dissonance_PlayerChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171C0A0, PlayerChannel, Nullable_1_Dissonance_PlayerChannel__GetValueOrDefault, (Nullable_1_Dissonance_PlayerChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181EAC0, PlayerChannel, Nullable_1_Dissonance_PlayerChannel__GetValueOrDefault_1, (Nullable_1_Dissonance_PlayerChannel___Boxed * __this, PlayerChannel defaultValue, MethodInfo * method)); -DO_APP_FUNC(0x01820930, String *, Nullable_1_Dissonance_PlayerChannel__ToString, (Nullable_1_Dissonance_PlayerChannel___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01820870, bool, Nullable_1_Dissonance_PlayerChannel__Equals, (Nullable_1_Dissonance_PlayerChannel_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x018208E0, int32_t, Nullable_1_Dissonance_PlayerChannel__GetHashCode, (Nullable_1_Dissonance_PlayerChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171C0A0, PlayerChannel, Nullable_1_Dissonance_PlayerChannel__GetValueOrDefault, (Nullable_1_Dissonance_PlayerChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181EAC0, PlayerChannel, Nullable_1_Dissonance_PlayerChannel__GetValueOrDefault_1, (Nullable_1_Dissonance_PlayerChannel_ * __this, PlayerChannel defaultValue, MethodInfo * method)); +DO_APP_FUNC(0x01820930, String *, Nullable_1_Dissonance_PlayerChannel__ToString, (Nullable_1_Dissonance_PlayerChannel_ * __this, MethodInfo * method)); DO_APP_FUNC(0x018209E0, Nullable_1_Dissonance_PlayerChannel_, Nullable_1_Dissonance_PlayerChannel__Unbox, (Object * o, MethodInfo * method)); DO_APP_FUNC(0x01820B20, Nullable_1_Dissonance_PlayerChannel_, Nullable_1_Dissonance_PlayerChannel__UnboxExact, (Object * o, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, Nullable_1_Dissonance_PlayerChannel__get_HasValue, (Nullable_1_Dissonance_PlayerChannel___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16508, Nullable_1_Dissonance_PlayerChannel__UnboxExact__MethodInfo); +DO_APP_FUNC(0x00C173D0, bool, Nullable_1_Dissonance_PlayerChannel__get_HasValue, (Nullable_1_Dissonance_PlayerChannel_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8EE90, Nullable_1_Dissonance_PlayerChannel__get_HasValue__MethodInfo); -DO_APP_FUNC(0x0181EA90, PlayerChannel, Nullable_1_Dissonance_PlayerChannel__get_Value, (Nullable_1_Dissonance_PlayerChannel___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181EA90, PlayerChannel, Nullable_1_Dissonance_PlayerChannel__get_Value, (Nullable_1_Dissonance_PlayerChannel_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8EE58, Nullable_1_Dissonance_PlayerChannel__get_Value__MethodInfo); -DO_APP_FUNC(0x0181AE60, void, Nullable_1_UnityEngine_InputSystem_Utilities_PrimitiveValue___ctor, (Nullable_1_UnityEngine_InputSystem_Utilities_PrimitiveValue___Boxed * __this, PrimitiveValue value, MethodInfo * method)); +DO_APP_FUNC(0x0181AE60, void, Nullable_1_UnityEngine_InputSystem_Utilities_PrimitiveValue___ctor, (Nullable_1_UnityEngine_InputSystem_Utilities_PrimitiveValue_ * __this, PrimitiveValue value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC1198, Nullable_1_UnityEngine_InputSystem_Utilities_PrimitiveValue___ctor__MethodInfo); DO_APP_FUNC(0x01818AC0, Object *, Nullable_1_UnityEngine_InputSystem_Utilities_PrimitiveValue__Box, (Nullable_1_UnityEngine_InputSystem_Utilities_PrimitiveValue_ o, MethodInfo * method)); -DO_APP_FUNC(0x01820D50, bool, Nullable_1_UnityEngine_InputSystem_Utilities_PrimitiveValue__Equals, (Nullable_1_UnityEngine_InputSystem_Utilities_PrimitiveValue___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x01820DC0, int32_t, Nullable_1_UnityEngine_InputSystem_Utilities_PrimitiveValue__GetHashCode, (Nullable_1_UnityEngine_InputSystem_Utilities_PrimitiveValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C16880, PrimitiveValue, Nullable_1_UnityEngine_InputSystem_Utilities_PrimitiveValue__GetValueOrDefault, (Nullable_1_UnityEngine_InputSystem_Utilities_PrimitiveValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018188B0, PrimitiveValue, Nullable_1_UnityEngine_InputSystem_Utilities_PrimitiveValue__GetValueOrDefault_1, (Nullable_1_UnityEngine_InputSystem_Utilities_PrimitiveValue___Boxed * __this, PrimitiveValue defaultValue, MethodInfo * method)); -DO_APP_FUNC(0x01820E10, String *, Nullable_1_UnityEngine_InputSystem_Utilities_PrimitiveValue__ToString, (Nullable_1_UnityEngine_InputSystem_Utilities_PrimitiveValue___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01820D50, bool, Nullable_1_UnityEngine_InputSystem_Utilities_PrimitiveValue__Equals, (Nullable_1_UnityEngine_InputSystem_Utilities_PrimitiveValue_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x01820DC0, int32_t, Nullable_1_UnityEngine_InputSystem_Utilities_PrimitiveValue__GetHashCode, (Nullable_1_UnityEngine_InputSystem_Utilities_PrimitiveValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C16880, PrimitiveValue, Nullable_1_UnityEngine_InputSystem_Utilities_PrimitiveValue__GetValueOrDefault, (Nullable_1_UnityEngine_InputSystem_Utilities_PrimitiveValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x018188B0, PrimitiveValue, Nullable_1_UnityEngine_InputSystem_Utilities_PrimitiveValue__GetValueOrDefault_1, (Nullable_1_UnityEngine_InputSystem_Utilities_PrimitiveValue_ * __this, PrimitiveValue defaultValue, MethodInfo * method)); +DO_APP_FUNC(0x01820E10, String *, Nullable_1_UnityEngine_InputSystem_Utilities_PrimitiveValue__ToString, (Nullable_1_UnityEngine_InputSystem_Utilities_PrimitiveValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0181B070, Nullable_1_UnityEngine_InputSystem_Utilities_PrimitiveValue_, Nullable_1_UnityEngine_InputSystem_Utilities_PrimitiveValue__Unbox, (Object * o, MethodInfo * method)); DO_APP_FUNC(0x01820E90, Nullable_1_UnityEngine_InputSystem_Utilities_PrimitiveValue_, Nullable_1_UnityEngine_InputSystem_Utilities_PrimitiveValue__UnboxExact, (Object * o, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, Nullable_1_UnityEngine_InputSystem_Utilities_PrimitiveValue__get_HasValue, (Nullable_1_UnityEngine_InputSystem_Utilities_PrimitiveValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01818890, PrimitiveValue, Nullable_1_UnityEngine_InputSystem_Utilities_PrimitiveValue__get_Value, (Nullable_1_UnityEngine_InputSystem_Utilities_PrimitiveValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181A580, void, Nullable_1_UnityEngine_Quaternion___ctor, (Nullable_1_UnityEngine_Quaternion___Boxed * __this, Quaternion value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16538, Nullable_1_UnityEngine_InputSystem_Utilities_PrimitiveValue__UnboxExact__MethodInfo); +DO_APP_FUNC(0x00C173D0, bool, Nullable_1_UnityEngine_InputSystem_Utilities_PrimitiveValue__get_HasValue, (Nullable_1_UnityEngine_InputSystem_Utilities_PrimitiveValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01818890, PrimitiveValue, Nullable_1_UnityEngine_InputSystem_Utilities_PrimitiveValue__get_Value, (Nullable_1_UnityEngine_InputSystem_Utilities_PrimitiveValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181A580, void, Nullable_1_UnityEngine_Quaternion___ctor, (Nullable_1_UnityEngine_Quaternion_ * __this, Quaternion value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC4C8, Nullable_1_UnityEngine_Quaternion___ctor__MethodInfo); DO_APP_FUNC(0x0181A6F0, Object *, Nullable_1_UnityEngine_Quaternion__Box, (Nullable_1_UnityEngine_Quaternion_ o, MethodInfo * method)); -DO_APP_FUNC(0x01821040, bool, Nullable_1_UnityEngine_Quaternion__Equals, (Nullable_1_UnityEngine_Quaternion___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x018210A0, int32_t, Nullable_1_UnityEngine_Quaternion__GetHashCode, (Nullable_1_UnityEngine_Quaternion___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171BD20, Quaternion, Nullable_1_UnityEngine_Quaternion__GetValueOrDefault, (Nullable_1_UnityEngine_Quaternion___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181A5B0, Quaternion, Nullable_1_UnityEngine_Quaternion__GetValueOrDefault_1, (Nullable_1_UnityEngine_Quaternion___Boxed * __this, Quaternion defaultValue, MethodInfo * method)); -DO_APP_FUNC(0x018210E0, String *, Nullable_1_UnityEngine_Quaternion__ToString, (Nullable_1_UnityEngine_Quaternion___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01821040, bool, Nullable_1_UnityEngine_Quaternion__Equals, (Nullable_1_UnityEngine_Quaternion_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x018210A0, int32_t, Nullable_1_UnityEngine_Quaternion__GetHashCode, (Nullable_1_UnityEngine_Quaternion_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171BD20, Quaternion, Nullable_1_UnityEngine_Quaternion__GetValueOrDefault, (Nullable_1_UnityEngine_Quaternion_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181A5B0, Quaternion, Nullable_1_UnityEngine_Quaternion__GetValueOrDefault_1, (Nullable_1_UnityEngine_Quaternion_ * __this, Quaternion defaultValue, MethodInfo * method)); +DO_APP_FUNC(0x018210E0, String *, Nullable_1_UnityEngine_Quaternion__ToString, (Nullable_1_UnityEngine_Quaternion_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0181A760, Nullable_1_UnityEngine_Quaternion_, Nullable_1_UnityEngine_Quaternion__Unbox, (Object * o, MethodInfo * method)); DO_APP_FUNC(0x01821160, Nullable_1_UnityEngine_Quaternion_, Nullable_1_UnityEngine_Quaternion__UnboxExact, (Object * o, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, Nullable_1_UnityEngine_Quaternion__get_HasValue, (Nullable_1_UnityEngine_Quaternion___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181A590, Quaternion, Nullable_1_UnityEngine_Quaternion__get_Value, (Nullable_1_UnityEngine_Quaternion___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01821310, void, Nullable_1_UnityEngine_RaycastHit___ctor, (Nullable_1_UnityEngine_RaycastHit___Boxed * __this, RaycastHit value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D164C0, Nullable_1_UnityEngine_Quaternion__UnboxExact__MethodInfo); +DO_APP_FUNC(0x00C173D0, bool, Nullable_1_UnityEngine_Quaternion__get_HasValue, (Nullable_1_UnityEngine_Quaternion_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC6A8, Nullable_1_UnityEngine_Quaternion__get_HasValue__MethodInfo); +DO_APP_FUNC(0x0181A590, Quaternion, Nullable_1_UnityEngine_Quaternion__get_Value, (Nullable_1_UnityEngine_Quaternion_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC6B8, Nullable_1_UnityEngine_Quaternion__get_Value__MethodInfo); +DO_APP_FUNC(0x01821310, void, Nullable_1_UnityEngine_RaycastHit___ctor, (Nullable_1_UnityEngine_RaycastHit_ * __this, RaycastHit value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E810, Nullable_1_UnityEngine_RaycastHit___ctor__MethodInfo); DO_APP_FUNC(0x01821650, Object *, Nullable_1_UnityEngine_RaycastHit__Box, (Nullable_1_UnityEngine_RaycastHit_ o, MethodInfo * method)); -DO_APP_FUNC(0x018213D0, bool, Nullable_1_UnityEngine_RaycastHit__Equals, (Nullable_1_UnityEngine_RaycastHit___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x01821490, int32_t, Nullable_1_UnityEngine_RaycastHit__GetHashCode, (Nullable_1_UnityEngine_RaycastHit___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171E0D0, RaycastHit, Nullable_1_UnityEngine_RaycastHit__GetValueOrDefault, (Nullable_1_UnityEngine_RaycastHit___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01821380, RaycastHit, Nullable_1_UnityEngine_RaycastHit__GetValueOrDefault_1, (Nullable_1_UnityEngine_RaycastHit___Boxed * __this, RaycastHit defaultValue, MethodInfo * method)); -DO_APP_FUNC(0x018215A0, String *, Nullable_1_UnityEngine_RaycastHit__ToString, (Nullable_1_UnityEngine_RaycastHit___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x018213D0, bool, Nullable_1_UnityEngine_RaycastHit__Equals, (Nullable_1_UnityEngine_RaycastHit_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x01821490, int32_t, Nullable_1_UnityEngine_RaycastHit__GetHashCode, (Nullable_1_UnityEngine_RaycastHit_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171E0D0, RaycastHit, Nullable_1_UnityEngine_RaycastHit__GetValueOrDefault, (Nullable_1_UnityEngine_RaycastHit_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01821380, RaycastHit, Nullable_1_UnityEngine_RaycastHit__GetValueOrDefault_1, (Nullable_1_UnityEngine_RaycastHit_ * __this, RaycastHit defaultValue, MethodInfo * method)); +DO_APP_FUNC(0x018215A0, String *, Nullable_1_UnityEngine_RaycastHit__ToString, (Nullable_1_UnityEngine_RaycastHit_ * __this, MethodInfo * method)); DO_APP_FUNC(0x018216F0, Nullable_1_UnityEngine_RaycastHit_, Nullable_1_UnityEngine_RaycastHit__Unbox, (Object * o, MethodInfo * method)); DO_APP_FUNC(0x01821800, Nullable_1_UnityEngine_RaycastHit_, Nullable_1_UnityEngine_RaycastHit__UnboxExact, (Object * o, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, Nullable_1_UnityEngine_RaycastHit__get_HasValue, (Nullable_1_UnityEngine_RaycastHit___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01821340, RaycastHit, Nullable_1_UnityEngine_RaycastHit__get_Value, (Nullable_1_UnityEngine_RaycastHit___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181A580, void, Nullable_1_UnityEngine_Rect___ctor, (Nullable_1_UnityEngine_Rect___Boxed * __this, Rect value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D164D0, Nullable_1_UnityEngine_RaycastHit__UnboxExact__MethodInfo); +DO_APP_FUNC(0x00C173D0, bool, Nullable_1_UnityEngine_RaycastHit__get_HasValue, (Nullable_1_UnityEngine_RaycastHit_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EA70, Nullable_1_UnityEngine_RaycastHit__get_HasValue__MethodInfo); +DO_APP_FUNC(0x01821340, RaycastHit, Nullable_1_UnityEngine_RaycastHit__get_Value, (Nullable_1_UnityEngine_RaycastHit_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EA60, Nullable_1_UnityEngine_RaycastHit__get_Value__MethodInfo); +DO_APP_FUNC(0x0181A580, void, Nullable_1_UnityEngine_Rect___ctor, (Nullable_1_UnityEngine_Rect_ * __this, Rect value, MethodInfo * method)); DO_APP_FUNC(0x0181A6F0, Object *, Nullable_1_UnityEngine_Rect__Box, (Nullable_1_UnityEngine_Rect_ o, MethodInfo * method)); -DO_APP_FUNC(0x018219E0, bool, Nullable_1_UnityEngine_Rect__Equals, (Nullable_1_UnityEngine_Rect___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x01821A50, int32_t, Nullable_1_UnityEngine_Rect__GetHashCode, (Nullable_1_UnityEngine_Rect___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171BD20, Rect, Nullable_1_UnityEngine_Rect__GetValueOrDefault, (Nullable_1_UnityEngine_Rect___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181A5B0, Rect, Nullable_1_UnityEngine_Rect__GetValueOrDefault_1, (Nullable_1_UnityEngine_Rect___Boxed * __this, Rect defaultValue, MethodInfo * method)); -DO_APP_FUNC(0x01821AA0, String *, Nullable_1_UnityEngine_Rect__ToString, (Nullable_1_UnityEngine_Rect___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x018219E0, bool, Nullable_1_UnityEngine_Rect__Equals, (Nullable_1_UnityEngine_Rect_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x01821A50, int32_t, Nullable_1_UnityEngine_Rect__GetHashCode, (Nullable_1_UnityEngine_Rect_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171BD20, Rect, Nullable_1_UnityEngine_Rect__GetValueOrDefault, (Nullable_1_UnityEngine_Rect_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181A5B0, Rect, Nullable_1_UnityEngine_Rect__GetValueOrDefault_1, (Nullable_1_UnityEngine_Rect_ * __this, Rect defaultValue, MethodInfo * method)); +DO_APP_FUNC(0x01821AA0, String *, Nullable_1_UnityEngine_Rect__ToString, (Nullable_1_UnityEngine_Rect_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0181A760, Nullable_1_UnityEngine_Rect_, Nullable_1_UnityEngine_Rect__Unbox, (Object * o, MethodInfo * method)); DO_APP_FUNC(0x01821B20, Nullable_1_UnityEngine_Rect_, Nullable_1_UnityEngine_Rect__UnboxExact, (Object * o, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, Nullable_1_UnityEngine_Rect__get_HasValue, (Nullable_1_UnityEngine_Rect___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D164E8, Nullable_1_UnityEngine_Rect__UnboxExact__MethodInfo); +DO_APP_FUNC(0x00C173D0, bool, Nullable_1_UnityEngine_Rect__get_HasValue, (Nullable_1_UnityEngine_Rect_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8DD50, Nullable_1_UnityEngine_Rect__get_HasValue__MethodInfo); -DO_APP_FUNC(0x0181A590, Rect, Nullable_1_UnityEngine_Rect__get_Value, (Nullable_1_UnityEngine_Rect___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181A590, Rect, Nullable_1_UnityEngine_Rect__get_Value, (Nullable_1_UnityEngine_Rect_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8DD60, Nullable_1_UnityEngine_Rect__get_Value__MethodInfo); -DO_APP_FUNC(0x0181F140, void, Nullable_1_System_Text_RegularExpressions_RegexPrefix___ctor, (Nullable_1_System_Text_RegularExpressions_RegexPrefix___Boxed * __this, RegexPrefix value, MethodInfo * method)); +DO_APP_FUNC(0x0181F140, void, Nullable_1_System_Text_RegularExpressions_RegexPrefix___ctor, (Nullable_1_System_Text_RegularExpressions_RegexPrefix_ * __this, RegexPrefix value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1AA8, Nullable_1_System_Text_RegularExpressions_RegexPrefix___ctor__MethodInfo); DO_APP_FUNC(0x01818AC0, Object *, Nullable_1_System_Text_RegularExpressions_RegexPrefix__Box, (Nullable_1_System_Text_RegularExpressions_RegexPrefix_ o, MethodInfo * method)); -DO_APP_FUNC(0x01818E80, bool, Nullable_1_System_Text_RegularExpressions_RegexPrefix__Equals, (Nullable_1_System_Text_RegularExpressions_RegexPrefix___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x01818F20, int32_t, Nullable_1_System_Text_RegularExpressions_RegexPrefix__GetHashCode, (Nullable_1_System_Text_RegularExpressions_RegexPrefix___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C16880, RegexPrefix, Nullable_1_System_Text_RegularExpressions_RegexPrefix__GetValueOrDefault, (Nullable_1_System_Text_RegularExpressions_RegexPrefix___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018188B0, RegexPrefix, Nullable_1_System_Text_RegularExpressions_RegexPrefix__GetValueOrDefault_1, (Nullable_1_System_Text_RegularExpressions_RegexPrefix___Boxed * __this, RegexPrefix defaultValue, MethodInfo * method)); -DO_APP_FUNC(0x01821CD0, String *, Nullable_1_System_Text_RegularExpressions_RegexPrefix__ToString, (Nullable_1_System_Text_RegularExpressions_RegexPrefix___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01818E80, bool, Nullable_1_System_Text_RegularExpressions_RegexPrefix__Equals, (Nullable_1_System_Text_RegularExpressions_RegexPrefix_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x01818F20, int32_t, Nullable_1_System_Text_RegularExpressions_RegexPrefix__GetHashCode, (Nullable_1_System_Text_RegularExpressions_RegexPrefix_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C16880, RegexPrefix, Nullable_1_System_Text_RegularExpressions_RegexPrefix__GetValueOrDefault, (Nullable_1_System_Text_RegularExpressions_RegexPrefix_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF19A0, Nullable_1_System_Text_RegularExpressions_RegexPrefix__GetValueOrDefault__MethodInfo); +DO_APP_FUNC(0x018188B0, RegexPrefix, Nullable_1_System_Text_RegularExpressions_RegexPrefix__GetValueOrDefault_1, (Nullable_1_System_Text_RegularExpressions_RegexPrefix_ * __this, RegexPrefix defaultValue, MethodInfo * method)); +DO_APP_FUNC(0x01821CD0, String *, Nullable_1_System_Text_RegularExpressions_RegexPrefix__ToString, (Nullable_1_System_Text_RegularExpressions_RegexPrefix_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0181F310, Nullable_1_System_Text_RegularExpressions_RegexPrefix_, Nullable_1_System_Text_RegularExpressions_RegexPrefix__Unbox, (Object * o, MethodInfo * method)); DO_APP_FUNC(0x01821D80, Nullable_1_System_Text_RegularExpressions_RegexPrefix_, Nullable_1_System_Text_RegularExpressions_RegexPrefix__UnboxExact, (Object * o, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, Nullable_1_System_Text_RegularExpressions_RegexPrefix__get_HasValue, (Nullable_1_System_Text_RegularExpressions_RegexPrefix___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01818890, RegexPrefix, Nullable_1_System_Text_RegularExpressions_RegexPrefix__get_Value, (Nullable_1_System_Text_RegularExpressions_RegexPrefix___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01821F90, void, Nullable_1_Dissonance_RemoteChannel___ctor, (Nullable_1_Dissonance_RemoteChannel___Boxed * __this, RemoteChannel value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16480, Nullable_1_System_Text_RegularExpressions_RegexPrefix__UnboxExact__MethodInfo); +DO_APP_FUNC(0x00C173D0, bool, Nullable_1_System_Text_RegularExpressions_RegexPrefix__get_HasValue, (Nullable_1_System_Text_RegularExpressions_RegexPrefix_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1998, Nullable_1_System_Text_RegularExpressions_RegexPrefix__get_HasValue__MethodInfo); +DO_APP_FUNC(0x01818890, RegexPrefix, Nullable_1_System_Text_RegularExpressions_RegexPrefix__get_Value, (Nullable_1_System_Text_RegularExpressions_RegexPrefix_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01821F90, void, Nullable_1_Dissonance_RemoteChannel___ctor, (Nullable_1_Dissonance_RemoteChannel_ * __this, RemoteChannel value, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C943C8, Nullable_1_Dissonance_RemoteChannel___ctor__MethodInfo); DO_APP_FUNC(0x0181CCD0, Object *, Nullable_1_Dissonance_RemoteChannel__Box, (Nullable_1_Dissonance_RemoteChannel_ o, MethodInfo * method)); -DO_APP_FUNC(0x01822000, bool, Nullable_1_Dissonance_RemoteChannel__Equals, (Nullable_1_Dissonance_RemoteChannel___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x018220B0, int32_t, Nullable_1_Dissonance_RemoteChannel__GetHashCode, (Nullable_1_Dissonance_RemoteChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171C800, RemoteChannel, Nullable_1_Dissonance_RemoteChannel__GetValueOrDefault, (Nullable_1_Dissonance_RemoteChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181CB60, RemoteChannel, Nullable_1_Dissonance_RemoteChannel__GetValueOrDefault_1, (Nullable_1_Dissonance_RemoteChannel___Boxed * __this, RemoteChannel defaultValue, MethodInfo * method)); -DO_APP_FUNC(0x018221B0, String *, Nullable_1_Dissonance_RemoteChannel__ToString, (Nullable_1_Dissonance_RemoteChannel___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01822000, bool, Nullable_1_Dissonance_RemoteChannel__Equals, (Nullable_1_Dissonance_RemoteChannel_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x018220B0, int32_t, Nullable_1_Dissonance_RemoteChannel__GetHashCode, (Nullable_1_Dissonance_RemoteChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171C800, RemoteChannel, Nullable_1_Dissonance_RemoteChannel__GetValueOrDefault, (Nullable_1_Dissonance_RemoteChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181CB60, RemoteChannel, Nullable_1_Dissonance_RemoteChannel__GetValueOrDefault_1, (Nullable_1_Dissonance_RemoteChannel_ * __this, RemoteChannel defaultValue, MethodInfo * method)); +DO_APP_FUNC(0x018221B0, String *, Nullable_1_Dissonance_RemoteChannel__ToString, (Nullable_1_Dissonance_RemoteChannel_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01822260, Nullable_1_Dissonance_RemoteChannel_, Nullable_1_Dissonance_RemoteChannel__Unbox, (Object * o, MethodInfo * method)); DO_APP_FUNC(0x01822390, Nullable_1_Dissonance_RemoteChannel_, Nullable_1_Dissonance_RemoteChannel__UnboxExact, (Object * o, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, Nullable_1_Dissonance_RemoteChannel__get_HasValue, (Nullable_1_Dissonance_RemoteChannel___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16498, Nullable_1_Dissonance_RemoteChannel__UnboxExact__MethodInfo); +DO_APP_FUNC(0x00C173D0, bool, Nullable_1_Dissonance_RemoteChannel__get_HasValue, (Nullable_1_Dissonance_RemoteChannel_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C94418, Nullable_1_Dissonance_RemoteChannel__get_HasValue__MethodInfo); -DO_APP_FUNC(0x0181CB30, RemoteChannel, Nullable_1_Dissonance_RemoteChannel__get_Value, (Nullable_1_Dissonance_RemoteChannel___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181CB30, RemoteChannel, Nullable_1_Dissonance_RemoteChannel__get_Value, (Nullable_1_Dissonance_RemoteChannel_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C94428, Nullable_1_Dissonance_RemoteChannel__get_Value__MethodInfo); -DO_APP_FUNC(0x01822590, void, Nullable_1_UnityEngine_Rendering_RenderQueueRange___ctor, (Nullable_1_UnityEngine_Rendering_RenderQueueRange___Boxed * __this, RenderQueueRange value, MethodInfo * method)); +DO_APP_FUNC(0x01822590, void, Nullable_1_UnityEngine_Rendering_RenderQueueRange___ctor, (Nullable_1_UnityEngine_Rendering_RenderQueueRange_ * __this, RenderQueueRange value, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C91E30, Nullable_1_UnityEngine_Rendering_RenderQueueRange___ctor__MethodInfo); DO_APP_FUNC(0x018227C0, Object *, Nullable_1_UnityEngine_Rendering_RenderQueueRange__Box, (Nullable_1_UnityEngine_Rendering_RenderQueueRange_ o, MethodInfo * method)); -DO_APP_FUNC(0x018225D0, bool, Nullable_1_UnityEngine_Rendering_RenderQueueRange__Equals, (Nullable_1_UnityEngine_Rendering_RenderQueueRange___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x01822690, int32_t, Nullable_1_UnityEngine_Rendering_RenderQueueRange__GetHashCode, (Nullable_1_UnityEngine_Rendering_RenderQueueRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171B200, RenderQueueRange, Nullable_1_UnityEngine_Rendering_RenderQueueRange__GetValueOrDefault, (Nullable_1_UnityEngine_Rendering_RenderQueueRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018225C0, RenderQueueRange, Nullable_1_UnityEngine_Rendering_RenderQueueRange__GetValueOrDefault_1, (Nullable_1_UnityEngine_Rendering_RenderQueueRange___Boxed * __this, RenderQueueRange defaultValue, MethodInfo * method)); -DO_APP_FUNC(0x01822710, String *, Nullable_1_UnityEngine_Rendering_RenderQueueRange__ToString, (Nullable_1_UnityEngine_Rendering_RenderQueueRange___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x018225D0, bool, Nullable_1_UnityEngine_Rendering_RenderQueueRange__Equals, (Nullable_1_UnityEngine_Rendering_RenderQueueRange_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x01822690, int32_t, Nullable_1_UnityEngine_Rendering_RenderQueueRange__GetHashCode, (Nullable_1_UnityEngine_Rendering_RenderQueueRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171B200, RenderQueueRange, Nullable_1_UnityEngine_Rendering_RenderQueueRange__GetValueOrDefault, (Nullable_1_UnityEngine_Rendering_RenderQueueRange_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11130, Nullable_1_UnityEngine_Rendering_RenderQueueRange__GetValueOrDefault__MethodInfo); +DO_APP_FUNC(0x018225C0, RenderQueueRange, Nullable_1_UnityEngine_Rendering_RenderQueueRange__GetValueOrDefault_1, (Nullable_1_UnityEngine_Rendering_RenderQueueRange_ * __this, RenderQueueRange defaultValue, MethodInfo * method)); +DO_APP_FUNC(0x01822710, String *, Nullable_1_UnityEngine_Rendering_RenderQueueRange__ToString, (Nullable_1_UnityEngine_Rendering_RenderQueueRange_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01822820, Nullable_1_UnityEngine_Rendering_RenderQueueRange_, Nullable_1_UnityEngine_Rendering_RenderQueueRange__Unbox, (Object * o, MethodInfo * method)); DO_APP_FUNC(0x01822900, Nullable_1_UnityEngine_Rendering_RenderQueueRange_, Nullable_1_UnityEngine_Rendering_RenderQueueRange__UnboxExact, (Object * o, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, Nullable_1_UnityEngine_Rendering_RenderQueueRange__get_HasValue, (Nullable_1_UnityEngine_Rendering_RenderQueueRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018225A0, RenderQueueRange, Nullable_1_UnityEngine_Rendering_RenderQueueRange__get_Value, (Nullable_1_UnityEngine_Rendering_RenderQueueRange___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01822AB0, void, Nullable_1_UnityEngine_Rendering_RenderStateBlock___ctor, (Nullable_1_UnityEngine_Rendering_RenderStateBlock___Boxed * __this, RenderStateBlock value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16458, Nullable_1_UnityEngine_Rendering_RenderQueueRange__UnboxExact__MethodInfo); +DO_APP_FUNC(0x00C173D0, bool, Nullable_1_UnityEngine_Rendering_RenderQueueRange__get_HasValue, (Nullable_1_UnityEngine_Rendering_RenderQueueRange_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11128, Nullable_1_UnityEngine_Rendering_RenderQueueRange__get_HasValue__MethodInfo); +DO_APP_FUNC(0x018225A0, RenderQueueRange, Nullable_1_UnityEngine_Rendering_RenderQueueRange__get_Value, (Nullable_1_UnityEngine_Rendering_RenderQueueRange_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01822AB0, void, Nullable_1_UnityEngine_Rendering_RenderStateBlock___ctor, (Nullable_1_UnityEngine_Rendering_RenderStateBlock_ * __this, RenderStateBlock value, MethodInfo * method)); DO_APP_FUNC(0x01822DC0, Object *, Nullable_1_UnityEngine_Rendering_RenderStateBlock__Box, (Nullable_1_UnityEngine_Rendering_RenderStateBlock_ o, MethodInfo * method)); -DO_APP_FUNC(0x01822C50, bool, Nullable_1_UnityEngine_Rendering_RenderStateBlock__Equals, (Nullable_1_UnityEngine_Rendering_RenderStateBlock___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x01822CC0, int32_t, Nullable_1_UnityEngine_Rendering_RenderStateBlock__GetHashCode, (Nullable_1_UnityEngine_Rendering_RenderStateBlock___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01822B60, RenderStateBlock, Nullable_1_UnityEngine_Rendering_RenderStateBlock__GetValueOrDefault, (Nullable_1_UnityEngine_Rendering_RenderStateBlock___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01822BB0, RenderStateBlock, Nullable_1_UnityEngine_Rendering_RenderStateBlock__GetValueOrDefault_1, (Nullable_1_UnityEngine_Rendering_RenderStateBlock___Boxed * __this, RenderStateBlock defaultValue, MethodInfo * method)); -DO_APP_FUNC(0x01822D10, String *, Nullable_1_UnityEngine_Rendering_RenderStateBlock__ToString, (Nullable_1_UnityEngine_Rendering_RenderStateBlock___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01822C50, bool, Nullable_1_UnityEngine_Rendering_RenderStateBlock__Equals, (Nullable_1_UnityEngine_Rendering_RenderStateBlock_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x01822CC0, int32_t, Nullable_1_UnityEngine_Rendering_RenderStateBlock__GetHashCode, (Nullable_1_UnityEngine_Rendering_RenderStateBlock_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01822B60, RenderStateBlock, Nullable_1_UnityEngine_Rendering_RenderStateBlock__GetValueOrDefault, (Nullable_1_UnityEngine_Rendering_RenderStateBlock_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01822BB0, RenderStateBlock, Nullable_1_UnityEngine_Rendering_RenderStateBlock__GetValueOrDefault_1, (Nullable_1_UnityEngine_Rendering_RenderStateBlock_ * __this, RenderStateBlock defaultValue, MethodInfo * method)); +DO_APP_FUNC(0x01822D10, String *, Nullable_1_UnityEngine_Rendering_RenderStateBlock__ToString, (Nullable_1_UnityEngine_Rendering_RenderStateBlock_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01822EC0, Nullable_1_UnityEngine_Rendering_RenderStateBlock_, Nullable_1_UnityEngine_Rendering_RenderStateBlock__Unbox, (Object * o, MethodInfo * method)); DO_APP_FUNC(0x01823030, Nullable_1_UnityEngine_Rendering_RenderStateBlock_, Nullable_1_UnityEngine_Rendering_RenderStateBlock__UnboxExact, (Object * o, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, Nullable_1_UnityEngine_Rendering_RenderStateBlock__get_HasValue, (Nullable_1_UnityEngine_Rendering_RenderStateBlock___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16470, Nullable_1_UnityEngine_Rendering_RenderStateBlock__UnboxExact__MethodInfo); +DO_APP_FUNC(0x00C173D0, bool, Nullable_1_UnityEngine_Rendering_RenderStateBlock__get_HasValue, (Nullable_1_UnityEngine_Rendering_RenderStateBlock_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C99BB0, Nullable_1_UnityEngine_Rendering_RenderStateBlock__get_HasValue__MethodInfo); -DO_APP_FUNC(0x01822B00, RenderStateBlock, Nullable_1_UnityEngine_Rendering_RenderStateBlock__get_Value, (Nullable_1_UnityEngine_Rendering_RenderStateBlock___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01822B00, RenderStateBlock, Nullable_1_UnityEngine_Rendering_RenderStateBlock__get_Value, (Nullable_1_UnityEngine_Rendering_RenderStateBlock_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C99BC0, Nullable_1_UnityEngine_Rendering_RenderStateBlock__get_Value__MethodInfo); -DO_APP_FUNC(0x01823270, void, Nullable_1_UnityEngine_Rendering_RenderTargetIdentifier___ctor, (Nullable_1_UnityEngine_Rendering_RenderTargetIdentifier___Boxed * __this, RenderTargetIdentifier value, MethodInfo * method)); +DO_APP_FUNC(0x01823270, void, Nullable_1_UnityEngine_Rendering_RenderTargetIdentifier___ctor, (Nullable_1_UnityEngine_Rendering_RenderTargetIdentifier_ * __this, RenderTargetIdentifier value, MethodInfo * method)); DO_APP_FUNC(0x01823440, Object *, Nullable_1_UnityEngine_Rendering_RenderTargetIdentifier__Box, (Nullable_1_UnityEngine_Rendering_RenderTargetIdentifier_ o, MethodInfo * method)); -DO_APP_FUNC(0x01823310, bool, Nullable_1_UnityEngine_Rendering_RenderTargetIdentifier__Equals, (Nullable_1_UnityEngine_Rendering_RenderTargetIdentifier___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x01823380, int32_t, Nullable_1_UnityEngine_Rendering_RenderTargetIdentifier__GetHashCode, (Nullable_1_UnityEngine_Rendering_RenderTargetIdentifier___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171CCC0, RenderTargetIdentifier, Nullable_1_UnityEngine_Rendering_RenderTargetIdentifier__GetValueOrDefault, (Nullable_1_UnityEngine_Rendering_RenderTargetIdentifier___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018232D0, RenderTargetIdentifier, Nullable_1_UnityEngine_Rendering_RenderTargetIdentifier__GetValueOrDefault_1, (Nullable_1_UnityEngine_Rendering_RenderTargetIdentifier___Boxed * __this, RenderTargetIdentifier defaultValue, MethodInfo * method)); -DO_APP_FUNC(0x018233C0, String *, Nullable_1_UnityEngine_Rendering_RenderTargetIdentifier__ToString, (Nullable_1_UnityEngine_Rendering_RenderTargetIdentifier___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01823310, bool, Nullable_1_UnityEngine_Rendering_RenderTargetIdentifier__Equals, (Nullable_1_UnityEngine_Rendering_RenderTargetIdentifier_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x01823380, int32_t, Nullable_1_UnityEngine_Rendering_RenderTargetIdentifier__GetHashCode, (Nullable_1_UnityEngine_Rendering_RenderTargetIdentifier_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171CCC0, RenderTargetIdentifier, Nullable_1_UnityEngine_Rendering_RenderTargetIdentifier__GetValueOrDefault, (Nullable_1_UnityEngine_Rendering_RenderTargetIdentifier_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x018232D0, RenderTargetIdentifier, Nullable_1_UnityEngine_Rendering_RenderTargetIdentifier__GetValueOrDefault_1, (Nullable_1_UnityEngine_Rendering_RenderTargetIdentifier_ * __this, RenderTargetIdentifier defaultValue, MethodInfo * method)); +DO_APP_FUNC(0x018233C0, String *, Nullable_1_UnityEngine_Rendering_RenderTargetIdentifier__ToString, (Nullable_1_UnityEngine_Rendering_RenderTargetIdentifier_ * __this, MethodInfo * method)); DO_APP_FUNC(0x018234D0, Nullable_1_UnityEngine_Rendering_RenderTargetIdentifier_, Nullable_1_UnityEngine_Rendering_RenderTargetIdentifier__Unbox, (Object * o, MethodInfo * method)); DO_APP_FUNC(0x018235D0, Nullable_1_UnityEngine_Rendering_RenderTargetIdentifier_, Nullable_1_UnityEngine_Rendering_RenderTargetIdentifier__UnboxExact, (Object * o, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, Nullable_1_UnityEngine_Rendering_RenderTargetIdentifier__get_HasValue, (Nullable_1_UnityEngine_Rendering_RenderTargetIdentifier___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16478, Nullable_1_UnityEngine_Rendering_RenderTargetIdentifier__UnboxExact__MethodInfo); +DO_APP_FUNC(0x00C173D0, bool, Nullable_1_UnityEngine_Rendering_RenderTargetIdentifier__get_HasValue, (Nullable_1_UnityEngine_Rendering_RenderTargetIdentifier_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8C788, Nullable_1_UnityEngine_Rendering_RenderTargetIdentifier__get_HasValue__MethodInfo); -DO_APP_FUNC(0x01823290, RenderTargetIdentifier, Nullable_1_UnityEngine_Rendering_RenderTargetIdentifier__get_Value, (Nullable_1_UnityEngine_Rendering_RenderTargetIdentifier___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01823290, RenderTargetIdentifier, Nullable_1_UnityEngine_Rendering_RenderTargetIdentifier__get_Value, (Nullable_1_UnityEngine_Rendering_RenderTargetIdentifier_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8C6E0, Nullable_1_UnityEngine_Rendering_RenderTargetIdentifier__get_Value__MethodInfo); -DO_APP_FUNC(0x018237A0, void, Nullable_1_Dissonance_RoomChannel___ctor, (Nullable_1_Dissonance_RoomChannel___Boxed * __this, RoomChannel value, MethodInfo * method)); +DO_APP_FUNC(0x018237A0, void, Nullable_1_Dissonance_RoomChannel___ctor, (Nullable_1_Dissonance_RoomChannel_ * __this, RoomChannel value, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8ED68, Nullable_1_Dissonance_RoomChannel___ctor__MethodInfo); DO_APP_FUNC(0x01823440, Object *, Nullable_1_Dissonance_RoomChannel__Box, (Nullable_1_Dissonance_RoomChannel_ o, MethodInfo * method)); -DO_APP_FUNC(0x01823810, bool, Nullable_1_Dissonance_RoomChannel__Equals, (Nullable_1_Dissonance_RoomChannel___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x018238D0, int32_t, Nullable_1_Dissonance_RoomChannel__GetHashCode, (Nullable_1_Dissonance_RoomChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171CCC0, RoomChannel, Nullable_1_Dissonance_RoomChannel__GetValueOrDefault, (Nullable_1_Dissonance_RoomChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018232D0, RoomChannel, Nullable_1_Dissonance_RoomChannel__GetValueOrDefault_1, (Nullable_1_Dissonance_RoomChannel___Boxed * __this, RoomChannel defaultValue, MethodInfo * method)); -DO_APP_FUNC(0x01823960, String *, Nullable_1_Dissonance_RoomChannel__ToString, (Nullable_1_Dissonance_RoomChannel___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01823810, bool, Nullable_1_Dissonance_RoomChannel__Equals, (Nullable_1_Dissonance_RoomChannel_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x018238D0, int32_t, Nullable_1_Dissonance_RoomChannel__GetHashCode, (Nullable_1_Dissonance_RoomChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171CCC0, RoomChannel, Nullable_1_Dissonance_RoomChannel__GetValueOrDefault, (Nullable_1_Dissonance_RoomChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x018232D0, RoomChannel, Nullable_1_Dissonance_RoomChannel__GetValueOrDefault_1, (Nullable_1_Dissonance_RoomChannel_ * __this, RoomChannel defaultValue, MethodInfo * method)); +DO_APP_FUNC(0x01823960, String *, Nullable_1_Dissonance_RoomChannel__ToString, (Nullable_1_Dissonance_RoomChannel_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01823A10, Nullable_1_Dissonance_RoomChannel_, Nullable_1_Dissonance_RoomChannel__Unbox, (Object * o, MethodInfo * method)); DO_APP_FUNC(0x01823B60, Nullable_1_Dissonance_RoomChannel_, Nullable_1_Dissonance_RoomChannel__UnboxExact, (Object * o, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, Nullable_1_Dissonance_RoomChannel__get_HasValue, (Nullable_1_Dissonance_RoomChannel___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16438, Nullable_1_Dissonance_RoomChannel__UnboxExact__MethodInfo); +DO_APP_FUNC(0x00C173D0, bool, Nullable_1_Dissonance_RoomChannel__get_HasValue, (Nullable_1_Dissonance_RoomChannel_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8EE80, Nullable_1_Dissonance_RoomChannel__get_HasValue__MethodInfo); -DO_APP_FUNC(0x01823290, RoomChannel, Nullable_1_Dissonance_RoomChannel__get_Value, (Nullable_1_Dissonance_RoomChannel___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01823290, RoomChannel, Nullable_1_Dissonance_RoomChannel__get_Value, (Nullable_1_Dissonance_RoomChannel_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8EE98, Nullable_1_Dissonance_RoomChannel__get_Value__MethodInfo); -DO_APP_FUNC(0x0181CAC0, void, Nullable_1_Dissonance_RoomMembership___ctor, (Nullable_1_Dissonance_RoomMembership___Boxed * __this, RoomMembership value, MethodInfo * method)); +DO_APP_FUNC(0x0181CAC0, void, Nullable_1_Dissonance_RoomMembership___ctor, (Nullable_1_Dissonance_RoomMembership_ * __this, RoomMembership value, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8EAC8, Nullable_1_Dissonance_RoomMembership___ctor__MethodInfo); DO_APP_FUNC(0x0181CCD0, Object *, Nullable_1_Dissonance_RoomMembership__Box, (Nullable_1_Dissonance_RoomMembership_ o, MethodInfo * method)); -DO_APP_FUNC(0x01822000, bool, Nullable_1_Dissonance_RoomMembership__Equals, (Nullable_1_Dissonance_RoomMembership___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x018220B0, int32_t, Nullable_1_Dissonance_RoomMembership__GetHashCode, (Nullable_1_Dissonance_RoomMembership___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171C800, RoomMembership, Nullable_1_Dissonance_RoomMembership__GetValueOrDefault, (Nullable_1_Dissonance_RoomMembership___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181CB60, RoomMembership, Nullable_1_Dissonance_RoomMembership__GetValueOrDefault_1, (Nullable_1_Dissonance_RoomMembership___Boxed * __this, RoomMembership defaultValue, MethodInfo * method)); -DO_APP_FUNC(0x01823D80, String *, Nullable_1_Dissonance_RoomMembership__ToString, (Nullable_1_Dissonance_RoomMembership___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01822000, bool, Nullable_1_Dissonance_RoomMembership__Equals, (Nullable_1_Dissonance_RoomMembership_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x018220B0, int32_t, Nullable_1_Dissonance_RoomMembership__GetHashCode, (Nullable_1_Dissonance_RoomMembership_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171C800, RoomMembership, Nullable_1_Dissonance_RoomMembership__GetValueOrDefault, (Nullable_1_Dissonance_RoomMembership_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181CB60, RoomMembership, Nullable_1_Dissonance_RoomMembership__GetValueOrDefault_1, (Nullable_1_Dissonance_RoomMembership_ * __this, RoomMembership defaultValue, MethodInfo * method)); +DO_APP_FUNC(0x01823D80, String *, Nullable_1_Dissonance_RoomMembership__ToString, (Nullable_1_Dissonance_RoomMembership_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0181CD50, Nullable_1_Dissonance_RoomMembership_, Nullable_1_Dissonance_RoomMembership__Unbox, (Object * o, MethodInfo * method)); DO_APP_FUNC(0x01823E30, Nullable_1_Dissonance_RoomMembership_, Nullable_1_Dissonance_RoomMembership__UnboxExact, (Object * o, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, Nullable_1_Dissonance_RoomMembership__get_HasValue, (Nullable_1_Dissonance_RoomMembership___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16448, Nullable_1_Dissonance_RoomMembership__UnboxExact__MethodInfo); +DO_APP_FUNC(0x00C173D0, bool, Nullable_1_Dissonance_RoomMembership__get_HasValue, (Nullable_1_Dissonance_RoomMembership_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8EAD8, Nullable_1_Dissonance_RoomMembership__get_HasValue__MethodInfo); -DO_APP_FUNC(0x0181CB30, RoomMembership, Nullable_1_Dissonance_RoomMembership__get_Value, (Nullable_1_Dissonance_RoomMembership___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181CB30, RoomMembership, Nullable_1_Dissonance_RoomMembership__get_Value, (Nullable_1_Dissonance_RoomMembership_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8EAA0, Nullable_1_Dissonance_RoomMembership__get_Value__MethodInfo); -DO_APP_FUNC(0x01824030, void, Nullable_1_Single___ctor, (Nullable_1_Single___Boxed * __this, float value, MethodInfo * method)); +DO_APP_FUNC(0x01824030, void, Nullable_1_Single___ctor, (Nullable_1_Single_ * __this, float value, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8F588, Nullable_1_Single___ctor__MethodInfo); DO_APP_FUNC(0x018241B0, Object *, Nullable_1_Single__Box, (Nullable_1_Single_ o, MethodInfo * method)); -DO_APP_FUNC(0x01824070, bool, Nullable_1_Single__Equals, (Nullable_1_Single___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x018240E0, int32_t, Nullable_1_Single__GetHashCode, (Nullable_1_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C4B940, float, Nullable_1_Single__GetValueOrDefault, (Nullable_1_Single___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01824070, bool, Nullable_1_Single__Equals, (Nullable_1_Single_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x018240E0, int32_t, Nullable_1_Single__GetHashCode, (Nullable_1_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C4B940, float, Nullable_1_Single__GetValueOrDefault, (Nullable_1_Single_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8F5B0, Nullable_1_Single__GetValueOrDefault__MethodInfo); -DO_APP_FUNC(0x01824060, float, Nullable_1_Single__GetValueOrDefault_1, (Nullable_1_Single___Boxed * __this, float defaultValue, MethodInfo * method)); -DO_APP_FUNC(0x01824130, String *, Nullable_1_Single__ToString, (Nullable_1_Single___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01824060, float, Nullable_1_Single__GetValueOrDefault_1, (Nullable_1_Single_ * __this, float defaultValue, MethodInfo * method)); +DO_APP_FUNC(0x01824130, String *, Nullable_1_Single__ToString, (Nullable_1_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01824220, Nullable_1_Single_, Nullable_1_Single__Unbox, (Object * o, MethodInfo * method)); DO_APP_FUNC(0x018242D0, Nullable_1_Single_, Nullable_1_Single__UnboxExact, (Object * o, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, Nullable_1_Single__get_HasValue, (Nullable_1_Single___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16360, Nullable_1_Single__UnboxExact__MethodInfo); +DO_APP_FUNC(0x00C173D0, bool, Nullable_1_Single__get_HasValue, (Nullable_1_Single_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8F5D0, Nullable_1_Single__get_HasValue__MethodInfo); -DO_APP_FUNC(0x01824040, float, Nullable_1_Single__get_Value, (Nullable_1_Single___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01824040, float, Nullable_1_Single__get_Value, (Nullable_1_Single_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8F550, Nullable_1_Single__get_Value__MethodInfo); -DO_APP_FUNC(0x01824450, void, Nullable_1_Dissonance_Audio_Playback_SpeechSession___ctor, (Nullable_1_Dissonance_Audio_Playback_SpeechSession___Boxed * __this, SpeechSession value, MethodInfo * method)); +DO_APP_FUNC(0x01824450, void, Nullable_1_Dissonance_Audio_Playback_SpeechSession___ctor, (Nullable_1_Dissonance_Audio_Playback_SpeechSession_ * __this, SpeechSession value, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C936B8, Nullable_1_Dissonance_Audio_Playback_SpeechSession___ctor__MethodInfo); DO_APP_FUNC(0x01824800, Object *, Nullable_1_Dissonance_Audio_Playback_SpeechSession__Box, (Nullable_1_Dissonance_Audio_Playback_SpeechSession_ o, MethodInfo * method)); -DO_APP_FUNC(0x01824560, bool, Nullable_1_Dissonance_Audio_Playback_SpeechSession__Equals, (Nullable_1_Dissonance_Audio_Playback_SpeechSession___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x01824630, int32_t, Nullable_1_Dissonance_Audio_Playback_SpeechSession__GetHashCode, (Nullable_1_Dissonance_Audio_Playback_SpeechSession___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171E280, SpeechSession, Nullable_1_Dissonance_Audio_Playback_SpeechSession__GetValueOrDefault, (Nullable_1_Dissonance_Audio_Playback_SpeechSession___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01824560, bool, Nullable_1_Dissonance_Audio_Playback_SpeechSession__Equals, (Nullable_1_Dissonance_Audio_Playback_SpeechSession_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x01824630, int32_t, Nullable_1_Dissonance_Audio_Playback_SpeechSession__GetHashCode, (Nullable_1_Dissonance_Audio_Playback_SpeechSession_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171E280, SpeechSession, Nullable_1_Dissonance_Audio_Playback_SpeechSession__GetValueOrDefault, (Nullable_1_Dissonance_Audio_Playback_SpeechSession_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C93AD0, Nullable_1_Dissonance_Audio_Playback_SpeechSession__GetValueOrDefault__MethodInfo); -DO_APP_FUNC(0x01824510, SpeechSession, Nullable_1_Dissonance_Audio_Playback_SpeechSession__GetValueOrDefault_1, (Nullable_1_Dissonance_Audio_Playback_SpeechSession___Boxed * __this, SpeechSession defaultValue, MethodInfo * method)); -DO_APP_FUNC(0x01824750, String *, Nullable_1_Dissonance_Audio_Playback_SpeechSession__ToString, (Nullable_1_Dissonance_Audio_Playback_SpeechSession___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01824510, SpeechSession, Nullable_1_Dissonance_Audio_Playback_SpeechSession__GetValueOrDefault_1, (Nullable_1_Dissonance_Audio_Playback_SpeechSession_ * __this, SpeechSession defaultValue, MethodInfo * method)); +DO_APP_FUNC(0x01824750, String *, Nullable_1_Dissonance_Audio_Playback_SpeechSession__ToString, (Nullable_1_Dissonance_Audio_Playback_SpeechSession_ * __this, MethodInfo * method)); DO_APP_FUNC(0x018248B0, Nullable_1_Dissonance_Audio_Playback_SpeechSession_, Nullable_1_Dissonance_Audio_Playback_SpeechSession__Unbox, (Object * o, MethodInfo * method)); DO_APP_FUNC(0x01824A20, Nullable_1_Dissonance_Audio_Playback_SpeechSession_, Nullable_1_Dissonance_Audio_Playback_SpeechSession__UnboxExact, (Object * o, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, Nullable_1_Dissonance_Audio_Playback_SpeechSession__get_HasValue, (Nullable_1_Dissonance_Audio_Playback_SpeechSession___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16388, Nullable_1_Dissonance_Audio_Playback_SpeechSession__UnboxExact__MethodInfo); +DO_APP_FUNC(0x00C173D0, bool, Nullable_1_Dissonance_Audio_Playback_SpeechSession__get_HasValue, (Nullable_1_Dissonance_Audio_Playback_SpeechSession_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C93AC0, Nullable_1_Dissonance_Audio_Playback_SpeechSession__get_HasValue__MethodInfo); -DO_APP_FUNC(0x018244D0, SpeechSession, Nullable_1_Dissonance_Audio_Playback_SpeechSession__get_Value, (Nullable_1_Dissonance_Audio_Playback_SpeechSession___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x018244D0, SpeechSession, Nullable_1_Dissonance_Audio_Playback_SpeechSession__get_Value, (Nullable_1_Dissonance_Audio_Playback_SpeechSession_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C93690, Nullable_1_Dissonance_Audio_Playback_SpeechSession__get_Value__MethodInfo); -DO_APP_FUNC(0x0181D7A0, void, Nullable_1_Microsoft_MixedReality_OpenXR_TappedEventData___ctor, (Nullable_1_Microsoft_MixedReality_OpenXR_TappedEventData___Boxed * __this, TappedEventData value, MethodInfo * method)); +DO_APP_FUNC(0x0181D7A0, void, Nullable_1_Microsoft_MixedReality_OpenXR_TappedEventData___ctor, (Nullable_1_Microsoft_MixedReality_OpenXR_TappedEventData_ * __this, TappedEventData value, MethodInfo * method)); DO_APP_FUNC(0x0181D910, Object *, Nullable_1_Microsoft_MixedReality_OpenXR_TappedEventData__Box, (Nullable_1_Microsoft_MixedReality_OpenXR_TappedEventData_ o, MethodInfo * method)); -DO_APP_FUNC(0x0181E470, bool, Nullable_1_Microsoft_MixedReality_OpenXR_TappedEventData__Equals, (Nullable_1_Microsoft_MixedReality_OpenXR_TappedEventData___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x01824C60, int32_t, Nullable_1_Microsoft_MixedReality_OpenXR_TappedEventData__GetHashCode, (Nullable_1_Microsoft_MixedReality_OpenXR_TappedEventData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C173E0, TappedEventData, Nullable_1_Microsoft_MixedReality_OpenXR_TappedEventData__GetValueOrDefault, (Nullable_1_Microsoft_MixedReality_OpenXR_TappedEventData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181D7D0, TappedEventData, Nullable_1_Microsoft_MixedReality_OpenXR_TappedEventData__GetValueOrDefault_1, (Nullable_1_Microsoft_MixedReality_OpenXR_TappedEventData___Boxed * __this, TappedEventData defaultValue, MethodInfo * method)); -DO_APP_FUNC(0x01824D50, String *, Nullable_1_Microsoft_MixedReality_OpenXR_TappedEventData__ToString, (Nullable_1_Microsoft_MixedReality_OpenXR_TappedEventData___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181E470, bool, Nullable_1_Microsoft_MixedReality_OpenXR_TappedEventData__Equals, (Nullable_1_Microsoft_MixedReality_OpenXR_TappedEventData_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x01824C60, int32_t, Nullable_1_Microsoft_MixedReality_OpenXR_TappedEventData__GetHashCode, (Nullable_1_Microsoft_MixedReality_OpenXR_TappedEventData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C173E0, TappedEventData, Nullable_1_Microsoft_MixedReality_OpenXR_TappedEventData__GetValueOrDefault, (Nullable_1_Microsoft_MixedReality_OpenXR_TappedEventData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181D7D0, TappedEventData, Nullable_1_Microsoft_MixedReality_OpenXR_TappedEventData__GetValueOrDefault_1, (Nullable_1_Microsoft_MixedReality_OpenXR_TappedEventData_ * __this, TappedEventData defaultValue, MethodInfo * method)); +DO_APP_FUNC(0x01824D50, String *, Nullable_1_Microsoft_MixedReality_OpenXR_TappedEventData__ToString, (Nullable_1_Microsoft_MixedReality_OpenXR_TappedEventData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0181D970, Nullable_1_Microsoft_MixedReality_OpenXR_TappedEventData_, Nullable_1_Microsoft_MixedReality_OpenXR_TappedEventData__Unbox, (Object * o, MethodInfo * method)); DO_APP_FUNC(0x01824E00, Nullable_1_Microsoft_MixedReality_OpenXR_TappedEventData_, Nullable_1_Microsoft_MixedReality_OpenXR_TappedEventData__UnboxExact, (Object * o, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, Nullable_1_Microsoft_MixedReality_OpenXR_TappedEventData__get_HasValue, (Nullable_1_Microsoft_MixedReality_OpenXR_TappedEventData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181D7B0, TappedEventData, Nullable_1_Microsoft_MixedReality_OpenXR_TappedEventData__get_Value, (Nullable_1_Microsoft_MixedReality_OpenXR_TappedEventData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181A0A0, void, Nullable_1_UInt16___ctor, (Nullable_1_UInt16___Boxed * __this, uint16_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D163F0, Nullable_1_Microsoft_MixedReality_OpenXR_TappedEventData__UnboxExact__MethodInfo); +DO_APP_FUNC(0x00C173D0, bool, Nullable_1_Microsoft_MixedReality_OpenXR_TappedEventData__get_HasValue, (Nullable_1_Microsoft_MixedReality_OpenXR_TappedEventData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181D7B0, TappedEventData, Nullable_1_Microsoft_MixedReality_OpenXR_TappedEventData__get_Value, (Nullable_1_Microsoft_MixedReality_OpenXR_TappedEventData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181A0A0, void, Nullable_1_UInt16___ctor, (Nullable_1_UInt16_ * __this, uint16_t value, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8E900, Nullable_1_UInt16___ctor__MethodInfo); DO_APP_FUNC(0x0181A2F0, Object *, Nullable_1_UInt16__Box, (Nullable_1_UInt16_ o, MethodInfo * method)); -DO_APP_FUNC(0x01824F80, bool, Nullable_1_UInt16__Equals, (Nullable_1_UInt16___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x01824FF0, int32_t, Nullable_1_UInt16__GetHashCode, (Nullable_1_UInt16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181A0D0, uint16_t, Nullable_1_UInt16__GetValueOrDefault, (Nullable_1_UInt16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181A0E0, uint16_t, Nullable_1_UInt16__GetValueOrDefault_1, (Nullable_1_UInt16___Boxed * __this, uint16_t defaultValue, MethodInfo * method)); -DO_APP_FUNC(0x01825030, String *, Nullable_1_UInt16__ToString, (Nullable_1_UInt16___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01824F80, bool, Nullable_1_UInt16__Equals, (Nullable_1_UInt16_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x01824FF0, int32_t, Nullable_1_UInt16__GetHashCode, (Nullable_1_UInt16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181A0D0, uint16_t, Nullable_1_UInt16__GetValueOrDefault, (Nullable_1_UInt16_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCEC90, Nullable_1_UInt16__GetValueOrDefault__MethodInfo); +DO_APP_FUNC(0x0181A0E0, uint16_t, Nullable_1_UInt16__GetValueOrDefault_1, (Nullable_1_UInt16_ * __this, uint16_t defaultValue, MethodInfo * method)); +DO_APP_FUNC(0x01825030, String *, Nullable_1_UInt16__ToString, (Nullable_1_UInt16_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0181A350, Nullable_1_UInt16_, Nullable_1_UInt16__Unbox, (Object * o, MethodInfo * method)); DO_APP_FUNC(0x018250B0, Nullable_1_UInt16_, Nullable_1_UInt16__UnboxExact, (Object * o, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, Nullable_1_UInt16__get_HasValue, (Nullable_1_UInt16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181A0B0, uint16_t, Nullable_1_UInt16__get_Value, (Nullable_1_UInt16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181D7A0, void, Nullable_1_UInt32___ctor, (Nullable_1_UInt32___Boxed * __this, uint32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16300, Nullable_1_UInt16__UnboxExact__MethodInfo); +DO_APP_FUNC(0x00C173D0, bool, Nullable_1_UInt16__get_HasValue, (Nullable_1_UInt16_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1598, Nullable_1_UInt16__get_HasValue__MethodInfo); +DO_APP_FUNC(0x0181A0B0, uint16_t, Nullable_1_UInt16__get_Value, (Nullable_1_UInt16_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF15A0, Nullable_1_UInt16__get_Value__MethodInfo); +DO_APP_FUNC(0x0181D7A0, void, Nullable_1_UInt32___ctor, (Nullable_1_UInt32_ * __this, uint32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFD418, Nullable_1_UInt32___ctor__MethodInfo); DO_APP_FUNC(0x0181D910, Object *, Nullable_1_UInt32__Box, (Nullable_1_UInt32_ o, MethodInfo * method)); -DO_APP_FUNC(0x01825230, bool, Nullable_1_UInt32__Equals, (Nullable_1_UInt32___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x0181D850, int32_t, Nullable_1_UInt32__GetHashCode, (Nullable_1_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C173E0, uint32_t, Nullable_1_UInt32__GetValueOrDefault, (Nullable_1_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181D7D0, uint32_t, Nullable_1_UInt32__GetValueOrDefault_1, (Nullable_1_UInt32___Boxed * __this, uint32_t defaultValue, MethodInfo * method)); -DO_APP_FUNC(0x018252A0, String *, Nullable_1_UInt32__ToString, (Nullable_1_UInt32___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01825230, bool, Nullable_1_UInt32__Equals, (Nullable_1_UInt32_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x0181D850, int32_t, Nullable_1_UInt32__GetHashCode, (Nullable_1_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C173E0, uint32_t, Nullable_1_UInt32__GetValueOrDefault, (Nullable_1_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFD420, Nullable_1_UInt32__GetValueOrDefault__MethodInfo); +DO_APP_FUNC(0x0181D7D0, uint32_t, Nullable_1_UInt32__GetValueOrDefault_1, (Nullable_1_UInt32_ * __this, uint32_t defaultValue, MethodInfo * method)); +DO_APP_FUNC(0x018252A0, String *, Nullable_1_UInt32__ToString, (Nullable_1_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0181D970, Nullable_1_UInt32_, Nullable_1_UInt32__Unbox, (Object * o, MethodInfo * method)); DO_APP_FUNC(0x01825320, Nullable_1_UInt32_, Nullable_1_UInt32__UnboxExact, (Object * o, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, Nullable_1_UInt32__get_HasValue, (Nullable_1_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181D7B0, uint32_t, Nullable_1_UInt32__get_Value, (Nullable_1_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01822590, void, Nullable_1_UnityEngine_Vector2___ctor, (Nullable_1_UnityEngine_Vector2___Boxed * __this, Vector2 value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16310, Nullable_1_UInt32__UnboxExact__MethodInfo); +DO_APP_FUNC(0x00C173D0, bool, Nullable_1_UInt32__get_HasValue, (Nullable_1_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFD410, Nullable_1_UInt32__get_HasValue__MethodInfo); +DO_APP_FUNC(0x0181D7B0, uint32_t, Nullable_1_UInt32__get_Value, (Nullable_1_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01822590, void, Nullable_1_UnityEngine_Vector2___ctor, (Nullable_1_UnityEngine_Vector2_ * __this, Vector2 value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFD2F0, Nullable_1_UnityEngine_Vector2___ctor__MethodInfo); DO_APP_FUNC(0x01825630, Object *, Nullable_1_UnityEngine_Vector2__Box, (Nullable_1_UnityEngine_Vector2_ o, MethodInfo * method)); -DO_APP_FUNC(0x018254F0, bool, Nullable_1_UnityEngine_Vector2__Equals, (Nullable_1_UnityEngine_Vector2___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x01825550, int32_t, Nullable_1_UnityEngine_Vector2__GetHashCode, (Nullable_1_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171BF20, Vector2, Nullable_1_UnityEngine_Vector2__GetValueOrDefault, (Nullable_1_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018254D0, Vector2, Nullable_1_UnityEngine_Vector2__GetValueOrDefault_1, (Nullable_1_UnityEngine_Vector2___Boxed * __this, Vector2 defaultValue, MethodInfo * method)); -DO_APP_FUNC(0x018255B0, String *, Nullable_1_UnityEngine_Vector2__ToString, (Nullable_1_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x018254F0, bool, Nullable_1_UnityEngine_Vector2__Equals, (Nullable_1_UnityEngine_Vector2_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x01825550, int32_t, Nullable_1_UnityEngine_Vector2__GetHashCode, (Nullable_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171BF20, Vector2, Nullable_1_UnityEngine_Vector2__GetValueOrDefault, (Nullable_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFD2E8, Nullable_1_UnityEngine_Vector2__GetValueOrDefault__MethodInfo); +DO_APP_FUNC(0x018254D0, Vector2, Nullable_1_UnityEngine_Vector2__GetValueOrDefault_1, (Nullable_1_UnityEngine_Vector2_ * __this, Vector2 defaultValue, MethodInfo * method)); +DO_APP_FUNC(0x018255B0, String *, Nullable_1_UnityEngine_Vector2__ToString, (Nullable_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01825690, Nullable_1_UnityEngine_Vector2_, Nullable_1_UnityEngine_Vector2__Unbox, (Object * o, MethodInfo * method)); DO_APP_FUNC(0x01825770, Nullable_1_UnityEngine_Vector2_, Nullable_1_UnityEngine_Vector2__UnboxExact, (Object * o, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, Nullable_1_UnityEngine_Vector2__get_HasValue, (Nullable_1_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018254A0, Vector2, Nullable_1_UnityEngine_Vector2__get_Value, (Nullable_1_UnityEngine_Vector2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181F650, void, Nullable_1_UnityEngine_Vector3___ctor, (Nullable_1_UnityEngine_Vector3___Boxed * __this, Vector3 value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16358, Nullable_1_UnityEngine_Vector2__UnboxExact__MethodInfo); +DO_APP_FUNC(0x00C173D0, bool, Nullable_1_UnityEngine_Vector2__get_HasValue, (Nullable_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFD2E0, Nullable_1_UnityEngine_Vector2__get_HasValue__MethodInfo); +DO_APP_FUNC(0x018254A0, Vector2, Nullable_1_UnityEngine_Vector2__get_Value, (Nullable_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFD2D8, Nullable_1_UnityEngine_Vector2__get_Value__MethodInfo); +DO_APP_FUNC(0x0181F650, void, Nullable_1_UnityEngine_Vector3___ctor, (Nullable_1_UnityEngine_Vector3_ * __this, Vector3 value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC4C0, Nullable_1_UnityEngine_Vector3___ctor__MethodInfo); DO_APP_FUNC(0x0181F930, Object *, Nullable_1_UnityEngine_Vector3__Box, (Nullable_1_UnityEngine_Vector3_ o, MethodInfo * method)); -DO_APP_FUNC(0x01825930, bool, Nullable_1_UnityEngine_Vector3__Equals, (Nullable_1_UnityEngine_Vector3___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x01825990, int32_t, Nullable_1_UnityEngine_Vector3__GetHashCode, (Nullable_1_UnityEngine_Vector3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C16680, Vector3, Nullable_1_UnityEngine_Vector3__GetValueOrDefault, (Nullable_1_UnityEngine_Vector3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181F6A0, Vector3, Nullable_1_UnityEngine_Vector3__GetValueOrDefault_1, (Nullable_1_UnityEngine_Vector3___Boxed * __this, Vector3 defaultValue, MethodInfo * method)); -DO_APP_FUNC(0x01825A10, String *, Nullable_1_UnityEngine_Vector3__ToString, (Nullable_1_UnityEngine_Vector3___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01825930, bool, Nullable_1_UnityEngine_Vector3__Equals, (Nullable_1_UnityEngine_Vector3_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x01825990, int32_t, Nullable_1_UnityEngine_Vector3__GetHashCode, (Nullable_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C16680, Vector3, Nullable_1_UnityEngine_Vector3__GetValueOrDefault, (Nullable_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181F6A0, Vector3, Nullable_1_UnityEngine_Vector3__GetValueOrDefault_1, (Nullable_1_UnityEngine_Vector3_ * __this, Vector3 defaultValue, MethodInfo * method)); +DO_APP_FUNC(0x01825A10, String *, Nullable_1_UnityEngine_Vector3__ToString, (Nullable_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0181F9A0, Nullable_1_UnityEngine_Vector3_, Nullable_1_UnityEngine_Vector3__Unbox, (Object * o, MethodInfo * method)); DO_APP_FUNC(0x01825A90, Nullable_1_UnityEngine_Vector3_, Nullable_1_UnityEngine_Vector3__UnboxExact, (Object * o, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, Nullable_1_UnityEngine_Vector3__get_HasValue, (Nullable_1_UnityEngine_Vector3___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D162A8, Nullable_1_UnityEngine_Vector3__UnboxExact__MethodInfo); +DO_APP_FUNC(0x00C173D0, bool, Nullable_1_UnityEngine_Vector3__get_HasValue, (Nullable_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8DCF0, Nullable_1_UnityEngine_Vector3__get_HasValue__MethodInfo); -DO_APP_FUNC(0x0181F670, Vector3, Nullable_1_UnityEngine_Vector3__get_Value, (Nullable_1_UnityEngine_Vector3___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0181F670, Vector3, Nullable_1_UnityEngine_Vector3__get_Value, (Nullable_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8DCF8, Nullable_1_UnityEngine_Vector3__get_Value__MethodInfo); -DO_APP_FUNC(0x01825C30, void, Nullable_1_Dissonance_Networking_VoicePacket___ctor, (Nullable_1_Dissonance_Networking_VoicePacket___Boxed * __this, VoicePacket value, MethodInfo * method)); +DO_APP_FUNC(0x01825C30, void, Nullable_1_Dissonance_Networking_VoicePacket___ctor, (Nullable_1_Dissonance_Networking_VoicePacket_ * __this, VoicePacket value, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C93760, Nullable_1_Dissonance_Networking_VoicePacket___ctor__MethodInfo); DO_APP_FUNC(0x01824800, Object *, Nullable_1_Dissonance_Networking_VoicePacket__Box, (Nullable_1_Dissonance_Networking_VoicePacket_ o, MethodInfo * method)); -DO_APP_FUNC(0x01824560, bool, Nullable_1_Dissonance_Networking_VoicePacket__Equals, (Nullable_1_Dissonance_Networking_VoicePacket___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x01824630, int32_t, Nullable_1_Dissonance_Networking_VoicePacket__GetHashCode, (Nullable_1_Dissonance_Networking_VoicePacket___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171E280, VoicePacket, Nullable_1_Dissonance_Networking_VoicePacket__GetValueOrDefault, (Nullable_1_Dissonance_Networking_VoicePacket___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01824560, bool, Nullable_1_Dissonance_Networking_VoicePacket__Equals, (Nullable_1_Dissonance_Networking_VoicePacket_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x01824630, int32_t, Nullable_1_Dissonance_Networking_VoicePacket__GetHashCode, (Nullable_1_Dissonance_Networking_VoicePacket_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171E280, VoicePacket, Nullable_1_Dissonance_Networking_VoicePacket__GetValueOrDefault, (Nullable_1_Dissonance_Networking_VoicePacket_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C93A00, Nullable_1_Dissonance_Networking_VoicePacket__GetValueOrDefault__MethodInfo); -DO_APP_FUNC(0x01824510, VoicePacket, Nullable_1_Dissonance_Networking_VoicePacket__GetValueOrDefault_1, (Nullable_1_Dissonance_Networking_VoicePacket___Boxed * __this, VoicePacket defaultValue, MethodInfo * method)); -DO_APP_FUNC(0x01825CB0, String *, Nullable_1_Dissonance_Networking_VoicePacket__ToString, (Nullable_1_Dissonance_Networking_VoicePacket___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01824510, VoicePacket, Nullable_1_Dissonance_Networking_VoicePacket__GetValueOrDefault_1, (Nullable_1_Dissonance_Networking_VoicePacket_ * __this, VoicePacket defaultValue, MethodInfo * method)); +DO_APP_FUNC(0x01825CB0, String *, Nullable_1_Dissonance_Networking_VoicePacket__ToString, (Nullable_1_Dissonance_Networking_VoicePacket_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01825D60, Nullable_1_Dissonance_Networking_VoicePacket_, Nullable_1_Dissonance_Networking_VoicePacket__Unbox, (Object * o, MethodInfo * method)); DO_APP_FUNC(0x01825ED0, Nullable_1_Dissonance_Networking_VoicePacket_, Nullable_1_Dissonance_Networking_VoicePacket__UnboxExact, (Object * o, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, Nullable_1_Dissonance_Networking_VoicePacket__get_HasValue, (Nullable_1_Dissonance_Networking_VoicePacket___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D162B8, Nullable_1_Dissonance_Networking_VoicePacket__UnboxExact__MethodInfo); +DO_APP_FUNC(0x00C173D0, bool, Nullable_1_Dissonance_Networking_VoicePacket__get_HasValue, (Nullable_1_Dissonance_Networking_VoicePacket_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C93A10, Nullable_1_Dissonance_Networking_VoicePacket__get_HasValue__MethodInfo); -DO_APP_FUNC(0x018244D0, VoicePacket, Nullable_1_Dissonance_Networking_VoicePacket__get_Value, (Nullable_1_Dissonance_Networking_VoicePacket___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x018244D0, VoicePacket, Nullable_1_Dissonance_Networking_VoicePacket__get_Value, (Nullable_1_Dissonance_Networking_VoicePacket_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C939D8, Nullable_1_Dissonance_Networking_VoicePacket__get_Value__MethodInfo); -DO_APP_FUNC(0x01818830, void, Nullable_1_UnityEngine_InputSystem_InputAction_CallbackContext___ctor, (Nullable_1_UnityEngine_InputSystem_InputAction_CallbackContext___Boxed * __this, InputAction_CallbackContext value, MethodInfo * method)); +DO_APP_FUNC(0x01818830, void, Nullable_1_UnityEngine_InputSystem_InputAction_CallbackContext___ctor, (Nullable_1_UnityEngine_InputSystem_InputAction_CallbackContext_ * __this, InputAction_CallbackContext value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCDDE8, Nullable_1_UnityEngine_InputSystem_InputAction_CallbackContext___ctor__MethodInfo); DO_APP_FUNC(0x01818AC0, Object *, Nullable_1_UnityEngine_InputSystem_InputAction_CallbackContext__Box, (Nullable_1_UnityEngine_InputSystem_InputAction_CallbackContext_ o, MethodInfo * method)); -DO_APP_FUNC(0x01818E80, bool, Nullable_1_UnityEngine_InputSystem_InputAction_CallbackContext__Equals, (Nullable_1_UnityEngine_InputSystem_InputAction_CallbackContext___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x01818F20, int32_t, Nullable_1_UnityEngine_InputSystem_InputAction_CallbackContext__GetHashCode, (Nullable_1_UnityEngine_InputSystem_InputAction_CallbackContext___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C16880, InputAction_CallbackContext, Nullable_1_UnityEngine_InputSystem_InputAction_CallbackContext__GetValueOrDefault, (Nullable_1_UnityEngine_InputSystem_InputAction_CallbackContext___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018188B0, InputAction_CallbackContext, Nullable_1_UnityEngine_InputSystem_InputAction_CallbackContext__GetValueOrDefault_1, (Nullable_1_UnityEngine_InputSystem_InputAction_CallbackContext___Boxed * __this, InputAction_CallbackContext defaultValue, MethodInfo * method)); -DO_APP_FUNC(0x01826110, String *, Nullable_1_UnityEngine_InputSystem_InputAction_CallbackContext__ToString, (Nullable_1_UnityEngine_InputSystem_InputAction_CallbackContext___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01818E80, bool, Nullable_1_UnityEngine_InputSystem_InputAction_CallbackContext__Equals, (Nullable_1_UnityEngine_InputSystem_InputAction_CallbackContext_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x01818F20, int32_t, Nullable_1_UnityEngine_InputSystem_InputAction_CallbackContext__GetHashCode, (Nullable_1_UnityEngine_InputSystem_InputAction_CallbackContext_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C16880, InputAction_CallbackContext, Nullable_1_UnityEngine_InputSystem_InputAction_CallbackContext__GetValueOrDefault, (Nullable_1_UnityEngine_InputSystem_InputAction_CallbackContext_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x018188B0, InputAction_CallbackContext, Nullable_1_UnityEngine_InputSystem_InputAction_CallbackContext__GetValueOrDefault_1, (Nullable_1_UnityEngine_InputSystem_InputAction_CallbackContext_ * __this, InputAction_CallbackContext defaultValue, MethodInfo * method)); +DO_APP_FUNC(0x01826110, String *, Nullable_1_UnityEngine_InputSystem_InputAction_CallbackContext__ToString, (Nullable_1_UnityEngine_InputSystem_InputAction_CallbackContext_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01818B40, Nullable_1_UnityEngine_InputSystem_InputAction_CallbackContext_, Nullable_1_UnityEngine_InputSystem_InputAction_CallbackContext__Unbox, (Object * o, MethodInfo * method)); DO_APP_FUNC(0x01826190, Nullable_1_UnityEngine_InputSystem_InputAction_CallbackContext_, Nullable_1_UnityEngine_InputSystem_InputAction_CallbackContext__UnboxExact, (Object * o, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, Nullable_1_UnityEngine_InputSystem_InputAction_CallbackContext__get_HasValue, (Nullable_1_UnityEngine_InputSystem_InputAction_CallbackContext___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01818890, InputAction_CallbackContext, Nullable_1_UnityEngine_InputSystem_InputAction_CallbackContext__get_Value, (Nullable_1_UnityEngine_InputSystem_InputAction_CallbackContext___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018263A0, void, Nullable_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride___ctor, (Nullable_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride___Boxed * __this, InputActionRebindingExtensions_ParameterOverride value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D162F8, Nullable_1_UnityEngine_InputSystem_InputAction_CallbackContext__UnboxExact__MethodInfo); +DO_APP_FUNC(0x00C173D0, bool, Nullable_1_UnityEngine_InputSystem_InputAction_CallbackContext__get_HasValue, (Nullable_1_UnityEngine_InputSystem_InputAction_CallbackContext_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC270, Nullable_1_UnityEngine_InputSystem_InputAction_CallbackContext__get_HasValue__MethodInfo); +DO_APP_FUNC(0x01818890, InputAction_CallbackContext, Nullable_1_UnityEngine_InputSystem_InputAction_CallbackContext__get_Value, (Nullable_1_UnityEngine_InputSystem_InputAction_CallbackContext_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC268, Nullable_1_UnityEngine_InputSystem_InputAction_CallbackContext__get_Value__MethodInfo); +DO_APP_FUNC(0x018263A0, void, Nullable_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride___ctor, (Nullable_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride_ * __this, InputActionRebindingExtensions_ParameterOverride value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0D90, Nullable_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride___ctor__MethodInfo); DO_APP_FUNC(0x01826890, Object *, Nullable_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride__Box, (Nullable_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride_ o, MethodInfo * method)); -DO_APP_FUNC(0x01826580, bool, Nullable_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride__Equals, (Nullable_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x01826690, int32_t, Nullable_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride__GetHashCode, (Nullable_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01826490, InputActionRebindingExtensions_ParameterOverride, Nullable_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride__GetValueOrDefault, (Nullable_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018264E0, InputActionRebindingExtensions_ParameterOverride, Nullable_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride__GetValueOrDefault_1, (Nullable_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride___Boxed * __this, InputActionRebindingExtensions_ParameterOverride defaultValue, MethodInfo * method)); -DO_APP_FUNC(0x018267E0, String *, Nullable_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride__ToString, (Nullable_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01826580, bool, Nullable_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride__Equals, (Nullable_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x01826690, int32_t, Nullable_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride__GetHashCode, (Nullable_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01826490, InputActionRebindingExtensions_ParameterOverride, Nullable_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride__GetValueOrDefault, (Nullable_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x018264E0, InputActionRebindingExtensions_ParameterOverride, Nullable_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride__GetValueOrDefault_1, (Nullable_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride_ * __this, InputActionRebindingExtensions_ParameterOverride defaultValue, MethodInfo * method)); +DO_APP_FUNC(0x018267E0, String *, Nullable_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride__ToString, (Nullable_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01826990, Nullable_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride_, Nullable_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride__Unbox, (Object * o, MethodInfo * method)); DO_APP_FUNC(0x01826B50, Nullable_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride_, Nullable_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride__UnboxExact, (Object * o, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, Nullable_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride__get_HasValue, (Nullable_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01826430, InputActionRebindingExtensions_ParameterOverride, Nullable_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride__get_Value, (Nullable_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01826DF0, void, Nullable_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___ctor, (Nullable_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, InputControlLayout_ControlItem value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16258, Nullable_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride__UnboxExact__MethodInfo); +DO_APP_FUNC(0x00C173D0, bool, Nullable_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride__get_HasValue, (Nullable_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC10C8, Nullable_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride__get_HasValue__MethodInfo); +DO_APP_FUNC(0x01826430, InputActionRebindingExtensions_ParameterOverride, Nullable_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride__get_Value, (Nullable_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC10D8, Nullable_1_UnityEngine_InputSystem_InputActionRebindingExtensions_ParameterOverride__get_Value__MethodInfo); +DO_APP_FUNC(0x01826DF0, void, Nullable_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___ctor, (Nullable_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, InputControlLayout_ControlItem value, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8BDE0, Nullable_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___ctor__MethodInfo); DO_APP_FUNC(0x018273F0, Object *, Nullable_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__Box, (Nullable_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ o, MethodInfo * method)); -DO_APP_FUNC(0x01827080, bool, Nullable_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__Equals, (Nullable_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x018271B0, int32_t, Nullable_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__GetHashCode, (Nullable_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0171D4A0, InputControlLayout_ControlItem, Nullable_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__GetValueOrDefault, (Nullable_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01826F60, InputControlLayout_ControlItem, Nullable_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__GetValueOrDefault_1, (Nullable_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, InputControlLayout_ControlItem defaultValue, MethodInfo * method)); -DO_APP_FUNC(0x01827340, String *, Nullable_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__ToString, (Nullable_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01827080, bool, Nullable_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__Equals, (Nullable_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x018271B0, int32_t, Nullable_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__GetHashCode, (Nullable_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0171D4A0, InputControlLayout_ControlItem, Nullable_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__GetValueOrDefault, (Nullable_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01826F60, InputControlLayout_ControlItem, Nullable_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__GetValueOrDefault_1, (Nullable_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, InputControlLayout_ControlItem defaultValue, MethodInfo * method)); +DO_APP_FUNC(0x01827340, String *, Nullable_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__ToString, (Nullable_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01827570, Nullable_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_, Nullable_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__Unbox, (Object * o, MethodInfo * method)); DO_APP_FUNC(0x01827800, Nullable_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_, Nullable_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__UnboxExact, (Object * o, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, Nullable_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__get_HasValue, (Nullable_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01826EC0, InputControlLayout_ControlItem, Nullable_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__get_Value, (Nullable_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01827B40, void, Nullable_1_UnityEngine_InputSystem_InputControlScheme_MatchResult___ctor, (Nullable_1_UnityEngine_InputSystem_InputControlScheme_MatchResult___Boxed * __this, InputControlScheme_MatchResult value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16270, Nullable_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__UnboxExact__MethodInfo); +DO_APP_FUNC(0x00C173D0, bool, Nullable_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__get_HasValue, (Nullable_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7420, Nullable_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__get_HasValue__MethodInfo); +DO_APP_FUNC(0x01826EC0, InputControlLayout_ControlItem, Nullable_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__get_Value, (Nullable_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC73F0, Nullable_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__get_Value__MethodInfo); +DO_APP_FUNC(0x01827B40, void, Nullable_1_UnityEngine_InputSystem_InputControlScheme_MatchResult___ctor, (Nullable_1_UnityEngine_InputSystem_InputControlScheme_MatchResult_ * __this, InputControlScheme_MatchResult value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2490, Nullable_1_UnityEngine_InputSystem_InputControlScheme_MatchResult___ctor__MethodInfo); DO_APP_FUNC(0x01827F50, Object *, Nullable_1_UnityEngine_InputSystem_InputControlScheme_MatchResult__Box, (Nullable_1_UnityEngine_InputSystem_InputControlScheme_MatchResult_ o, MethodInfo * method)); -DO_APP_FUNC(0x01827C90, bool, Nullable_1_UnityEngine_InputSystem_InputControlScheme_MatchResult__Equals, (Nullable_1_UnityEngine_InputSystem_InputControlScheme_MatchResult___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x01827D70, int32_t, Nullable_1_UnityEngine_InputSystem_InputControlScheme_MatchResult__GetHashCode, (Nullable_1_UnityEngine_InputSystem_InputControlScheme_MatchResult___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01827C00, InputControlScheme_MatchResult, Nullable_1_UnityEngine_InputSystem_InputControlScheme_MatchResult__GetValueOrDefault, (Nullable_1_UnityEngine_InputSystem_InputControlScheme_MatchResult___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01827C30, InputControlScheme_MatchResult, Nullable_1_UnityEngine_InputSystem_InputControlScheme_MatchResult__GetValueOrDefault_1, (Nullable_1_UnityEngine_InputSystem_InputControlScheme_MatchResult___Boxed * __this, InputControlScheme_MatchResult defaultValue, MethodInfo * method)); -DO_APP_FUNC(0x01827EA0, String *, Nullable_1_UnityEngine_InputSystem_InputControlScheme_MatchResult__ToString, (Nullable_1_UnityEngine_InputSystem_InputControlScheme_MatchResult___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01827C90, bool, Nullable_1_UnityEngine_InputSystem_InputControlScheme_MatchResult__Equals, (Nullable_1_UnityEngine_InputSystem_InputControlScheme_MatchResult_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x01827D70, int32_t, Nullable_1_UnityEngine_InputSystem_InputControlScheme_MatchResult__GetHashCode, (Nullable_1_UnityEngine_InputSystem_InputControlScheme_MatchResult_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01827C00, InputControlScheme_MatchResult, Nullable_1_UnityEngine_InputSystem_InputControlScheme_MatchResult__GetValueOrDefault, (Nullable_1_UnityEngine_InputSystem_InputControlScheme_MatchResult_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB24E0, Nullable_1_UnityEngine_InputSystem_InputControlScheme_MatchResult__GetValueOrDefault__MethodInfo); +DO_APP_FUNC(0x01827C30, InputControlScheme_MatchResult, Nullable_1_UnityEngine_InputSystem_InputControlScheme_MatchResult__GetValueOrDefault_1, (Nullable_1_UnityEngine_InputSystem_InputControlScheme_MatchResult_ * __this, InputControlScheme_MatchResult defaultValue, MethodInfo * method)); +DO_APP_FUNC(0x01827EA0, String *, Nullable_1_UnityEngine_InputSystem_InputControlScheme_MatchResult__ToString, (Nullable_1_UnityEngine_InputSystem_InputControlScheme_MatchResult_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01828020, Nullable_1_UnityEngine_InputSystem_InputControlScheme_MatchResult_, Nullable_1_UnityEngine_InputSystem_InputControlScheme_MatchResult__Unbox, (Object * o, MethodInfo * method)); DO_APP_FUNC(0x018281C0, Nullable_1_UnityEngine_InputSystem_InputControlScheme_MatchResult_, Nullable_1_UnityEngine_InputSystem_InputControlScheme_MatchResult__UnboxExact, (Object * o, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, Nullable_1_UnityEngine_InputSystem_InputControlScheme_MatchResult__get_HasValue, (Nullable_1_UnityEngine_InputSystem_InputControlScheme_MatchResult___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01827BC0, InputControlScheme_MatchResult, Nullable_1_UnityEngine_InputSystem_InputControlScheme_MatchResult__get_Value, (Nullable_1_UnityEngine_InputSystem_InputControlScheme_MatchResult___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0181F140, void, Nullable_1_UnityEngine_InputSystem_InputRemoting_Message___ctor, (Nullable_1_UnityEngine_InputSystem_InputRemoting_Message___Boxed * __this, InputRemoting_Message value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16280, Nullable_1_UnityEngine_InputSystem_InputControlScheme_MatchResult__UnboxExact__MethodInfo); +DO_APP_FUNC(0x00C173D0, bool, Nullable_1_UnityEngine_InputSystem_InputControlScheme_MatchResult__get_HasValue, (Nullable_1_UnityEngine_InputSystem_InputControlScheme_MatchResult_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB24A0, Nullable_1_UnityEngine_InputSystem_InputControlScheme_MatchResult__get_HasValue__MethodInfo); +DO_APP_FUNC(0x01827BC0, InputControlScheme_MatchResult, Nullable_1_UnityEngine_InputSystem_InputControlScheme_MatchResult__get_Value, (Nullable_1_UnityEngine_InputSystem_InputControlScheme_MatchResult_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB24B0, Nullable_1_UnityEngine_InputSystem_InputControlScheme_MatchResult__get_Value__MethodInfo); +DO_APP_FUNC(0x0181F140, void, Nullable_1_UnityEngine_InputSystem_InputRemoting_Message___ctor, (Nullable_1_UnityEngine_InputSystem_InputRemoting_Message_ * __this, InputRemoting_Message value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB198, Nullable_1_UnityEngine_InputSystem_InputRemoting_Message___ctor__MethodInfo); DO_APP_FUNC(0x01818AC0, Object *, Nullable_1_UnityEngine_InputSystem_InputRemoting_Message__Box, (Nullable_1_UnityEngine_InputSystem_InputRemoting_Message_ o, MethodInfo * method)); -DO_APP_FUNC(0x01818E80, bool, Nullable_1_UnityEngine_InputSystem_InputRemoting_Message__Equals, (Nullable_1_UnityEngine_InputSystem_InputRemoting_Message___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x01818F20, int32_t, Nullable_1_UnityEngine_InputSystem_InputRemoting_Message__GetHashCode, (Nullable_1_UnityEngine_InputSystem_InputRemoting_Message___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C16880, InputRemoting_Message, Nullable_1_UnityEngine_InputSystem_InputRemoting_Message__GetValueOrDefault, (Nullable_1_UnityEngine_InputSystem_InputRemoting_Message___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018188B0, InputRemoting_Message, Nullable_1_UnityEngine_InputSystem_InputRemoting_Message__GetValueOrDefault_1, (Nullable_1_UnityEngine_InputSystem_InputRemoting_Message___Boxed * __this, InputRemoting_Message defaultValue, MethodInfo * method)); -DO_APP_FUNC(0x01828440, String *, Nullable_1_UnityEngine_InputSystem_InputRemoting_Message__ToString, (Nullable_1_UnityEngine_InputSystem_InputRemoting_Message___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01818E80, bool, Nullable_1_UnityEngine_InputSystem_InputRemoting_Message__Equals, (Nullable_1_UnityEngine_InputSystem_InputRemoting_Message_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC(0x01818F20, int32_t, Nullable_1_UnityEngine_InputSystem_InputRemoting_Message__GetHashCode, (Nullable_1_UnityEngine_InputSystem_InputRemoting_Message_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C16880, InputRemoting_Message, Nullable_1_UnityEngine_InputSystem_InputRemoting_Message__GetValueOrDefault, (Nullable_1_UnityEngine_InputSystem_InputRemoting_Message_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x018188B0, InputRemoting_Message, Nullable_1_UnityEngine_InputSystem_InputRemoting_Message__GetValueOrDefault_1, (Nullable_1_UnityEngine_InputSystem_InputRemoting_Message_ * __this, InputRemoting_Message defaultValue, MethodInfo * method)); +DO_APP_FUNC(0x01828440, String *, Nullable_1_UnityEngine_InputSystem_InputRemoting_Message__ToString, (Nullable_1_UnityEngine_InputSystem_InputRemoting_Message_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0181F310, Nullable_1_UnityEngine_InputSystem_InputRemoting_Message_, Nullable_1_UnityEngine_InputSystem_InputRemoting_Message__Unbox, (Object * o, MethodInfo * method)); DO_APP_FUNC(0x018284F0, Nullable_1_UnityEngine_InputSystem_InputRemoting_Message_, Nullable_1_UnityEngine_InputSystem_InputRemoting_Message__UnboxExact, (Object * o, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, Nullable_1_UnityEngine_InputSystem_InputRemoting_Message__get_HasValue, (Nullable_1_UnityEngine_InputSystem_InputRemoting_Message___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01818890, InputRemoting_Message, Nullable_1_UnityEngine_InputSystem_InputRemoting_Message__get_Value, (Nullable_1_UnityEngine_InputSystem_InputRemoting_Message___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16218, Nullable_1_UnityEngine_InputSystem_InputRemoting_Message__UnboxExact__MethodInfo); +DO_APP_FUNC(0x00C173D0, bool, Nullable_1_UnityEngine_InputSystem_InputRemoting_Message__get_HasValue, (Nullable_1_UnityEngine_InputSystem_InputRemoting_Message_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB1D8, Nullable_1_UnityEngine_InputSystem_InputRemoting_Message__get_HasValue__MethodInfo); +DO_APP_FUNC(0x01818890, InputRemoting_Message, Nullable_1_UnityEngine_InputSystem_InputRemoting_Message__get_Value, (Nullable_1_UnityEngine_InputSystem_InputRemoting_Message_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB1E8, Nullable_1_UnityEngine_InputSystem_InputRemoting_Message__get_Value__MethodInfo); DO_APP_FUNC(0x003AE050, void, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_OGnquKiqUWBFjsWZscaeHphDjoDc_1_System_Object___ctor, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_OGnquKiqUWBFjsWZscaeHphDjoDc_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01828890, void, ObjectComparer_1_System_ArraySegment_1___ctor, (ObjectComparer_1_System_ArraySegment_1_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01828700, int32_t, ObjectComparer_1_System_ArraySegment_1__Compare, (ObjectComparer_1_System_ArraySegment_1_ * __this, ArraySegment_1_Byte_ x, ArraySegment_1_Byte_ y, MethodInfo * method)); @@ -180002,6 +198054,7 @@ DO_APP_FUNC(0x015A5480, void, ObjectEqualityComparer_1_System_UInt32___ctor, (Ob DO_APP_FUNC(0x015C2400, bool, ObjectEqualityComparer_1_System_UInt32__Equals, (ObjectEqualityComparer_1_System_UInt32_ * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x0184BB80, bool, ObjectEqualityComparer_1_System_UInt32__Equals_1, (ObjectEqualityComparer_1_System_UInt32_ * __this, uint32_t x, uint32_t y, MethodInfo * method)); DO_APP_FUNC(0x01431530, int32_t, ObjectEqualityComparer_1_System_UInt32__GetHashCode, (ObjectEqualityComparer_1_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03B4E500, ObjectEqualityComparer_1_System_UInt32__GetHashCode__MethodInfo); DO_APP_FUNC(0x015E6FC0, int32_t, ObjectEqualityComparer_1_System_UInt32__GetHashCode_1, (ObjectEqualityComparer_1_System_UInt32_ * __this, uint32_t obj, MethodInfo * method)); DO_APP_FUNC(0x0184BC30, int32_t, ObjectEqualityComparer_1_System_UInt32__IndexOf, (ObjectEqualityComparer_1_System_UInt32_ * __this, UInt32__Array * array, uint32_t value, int32_t startIndex, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x0184BD70, int32_t, ObjectEqualityComparer_1_System_UInt32__LastIndexOf, (ObjectEqualityComparer_1_System_UInt32_ * __this, UInt32__Array * array, uint32_t value, int32_t startIndex, int32_t count, MethodInfo * method)); @@ -180952,15 +199005,16 @@ DO_APP_FUNC(0x018546E0, void, ObjectPoolSimple_1_System_Object___cctor, (MethodI DO_APP_FUNC(0x01853AF0, Object *, ObjectPoolSimple_1_System_Object__Claim, (MethodInfo * method)); DO_APP_FUNC(0x01854440, void, ObjectPoolSimple_1_System_Object__Clear, (MethodInfo * method)); DO_APP_FUNC(0x010C6F80, int32_t, ObjectPoolSimple_1_System_Object__GetSize, (MethodInfo * method)); -DO_APP_FUNC(0x01854170, void, ObjectPoolSimple_1_System_Object__Release, (Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x01854170, void, ObjectPoolSimple_1_System_Object__Release, (Object * * obj, MethodInfo * method)); DO_APP_FUNC(0x018549C0, Object *, ObjectPool_1_System_Object__3_Claim, (MethodInfo * method)); -DO_APP_FUNC(0x01854A70, void, ObjectPool_1_System_Object__3_Release, (Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x01854A70, void, ObjectPool_1_System_Object__3_Release, (Object * * obj, MethodInfo * method)); DO_APP_FUNC(0x01854BC0, void, ObjectPool_1_System_Object__4__ctor, (ObjectPool_1_System_Object__4 * __this, MethodInfo * method)); DO_APP_FUNC(0x01854D80, Object *, ObjectPool_1_System_Object__4_Get, (ObjectPool_1_System_Object__4 * __this, MethodInfo * method)); DO_APP_FUNC(0x01854D50, void, ObjectPool_1_System_Object__4_Return, (ObjectPool_1_System_Object__4 * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x01854B70, bool, ObjectPool_1_System_Object__4_get_Available, (ObjectPool_1_System_Object__4 * __this, MethodInfo * method)); DO_APP_FUNC(0x01855070, void, ObjectPool_1_System_Object__5__ctor, (ObjectPool_1_System_Object__5 * __this, Func_1_Object_ * param_0000c57c, MethodInfo * method)); DO_APP_FUNC(0x01854E40, void, ObjectPool_1_System_Object__5__ctor_1, (ObjectPool_1_System_Object__5 * __this, int32_t param_0000c579, Func_1_Object_ * param_0000c57a, Action_1_Object_ * param_0000c57b, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F6E8, ObjectPool_1_System_Object__5__ctor_1__MethodInfo); DO_APP_FUNC(0x018550A0, void, ObjectPool_1_System_Object__5_Clear, (ObjectPool_1_System_Object__5 * __this, bool reduceSize, MethodInfo * method)); DO_APP_FUNC(0x018556D0, Object *, ObjectPool_1_System_Object__5_CreateInstance, (ObjectPool_1_System_Object__5 * __this, MethodInfo * method)); DO_APP_FUNC(0x018551F0, Object *, ObjectPool_1_System_Object__5_Get, (ObjectPool_1_System_Object__5 * __this, MethodInfo * method)); @@ -180974,17 +199028,18 @@ DO_APP_FUNC(0x01855BE0, Object *, ObjectPool_1_System_Object__6_Get, (ObjectPool DO_APP_FUNC(0x01855A50, void, ObjectPool_1_System_Object__6_Return, (ObjectPool_1_System_Object__6 * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x018557F0, bool, ObjectPool_1_System_Object__6_get_Available, (ObjectPool_1_System_Object__6 * __this, MethodInfo * method)); DO_APP_FUNC(0x01855DD0, void, ObjectPool_1_System_Object__1__ctor, (ObjectPool_1_System_Object__1 * __this, Func_1_Object_ * createFunc, Action_1_Object_ * actionOnGet, Action_1_Object_ * actionOnRelease, Action_1_Object_ * actionOnDestroy, bool collectionCheck, int32_t defaultCapacity, int32_t maxSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F630, ObjectPool_1_System_Object__1__ctor__MethodInfo); DO_APP_FUNC(0x01856400, void, ObjectPool_1_System_Object__1_Clear, (ObjectPool_1_System_Object__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x01856580, void, ObjectPool_1_System_Object__1_Dispose, (ObjectPool_1_System_Object__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x018560E0, Object *, ObjectPool_1_System_Object__1_Get, (ObjectPool_1_System_Object__1 * __this, MethodInfo * method)); -DO_APP_FUNC(0x01856290, PooledObject_1_System_Object_, ObjectPool_1_System_Object__1_Get_1, (ObjectPool_1_System_Object__1 * __this, Object * v, MethodInfo * method)); +DO_APP_FUNC(0x01856290, PooledObject_1_System_Object_, ObjectPool_1_System_Object__1_Get_1, (ObjectPool_1_System_Object__1 * __this, Object * * v, MethodInfo * method)); DO_APP_FUNC(0x01856340, void, ObjectPool_1_System_Object__1_Release, (ObjectPool_1_System_Object__1 * __this, Object * element, MethodInfo * method)); DO_APP_FUNC(0x00439170, int32_t, ObjectPool_1_System_Object__1_get_CountAll, (ObjectPool_1_System_Object__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x01112B10, int32_t, ObjectPool_1_System_Object__1_get_CountInactive, (ObjectPool_1_System_Object__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x004DF210, void, ObjectPool_1_System_Object__1_set_CountAll, (ObjectPool_1_System_Object__1 * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x018565A0, void, ObjectPool_1_System_Object__2__ctor, (ObjectPool_1_System_Object__2 * __this, UnityAction_1_System_Object_ * actionOnGet, UnityAction_1_System_Object_ * actionOnRelease, bool collectionCheck, MethodInfo * method)); DO_APP_FUNC(0x010C76A0, Object *, ObjectPool_1_System_Object__2_Get, (ObjectPool_1_System_Object__2 * __this, MethodInfo * method)); -DO_APP_FUNC(0x01856730, ObjectPool_1_T_PooledObject_System_Object_, ObjectPool_1_System_Object__2_Get_1, (ObjectPool_1_System_Object__2 * __this, Object * v, MethodInfo * method)); +DO_APP_FUNC(0x01856730, ObjectPool_1_T_PooledObject_System_Object_, ObjectPool_1_System_Object__2_Get_1, (ObjectPool_1_System_Object__2 * __this, Object * * v, MethodInfo * method)); DO_APP_FUNC(0x018567E0, void, ObjectPool_1_System_Object__2_Release, (ObjectPool_1_System_Object__2 * __this, Object * element, MethodInfo * method)); DO_APP_FUNC(0x010C7450, int32_t, ObjectPool_1_System_Object__2_get_countActive, (ObjectPool_1_System_Object__2 * __this, MethodInfo * method)); DO_APP_FUNC(0x0098C870, int32_t, ObjectPool_1_System_Object__2_get_countAll, (ObjectPool_1_System_Object__2 * __this, MethodInfo * method)); @@ -181001,8 +199056,10 @@ DO_APP_FUNC(0x01856CB0, void, ObservableCollection_1_System_Object___ctor_1, (Ob DO_APP_FUNC(0x01856D50, void, ObservableCollection_1_System_Object___ctor_2, (ObservableCollection_1_System_Object_ * __this, List_1_System_Object_ * list, MethodInfo * method)); DO_APP_FUNC(0x01857810, IDisposable *, ObservableCollection_1_System_Object__BlockReentrancy, (ObservableCollection_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01857840, void, ObservableCollection_1_System_Object__CheckReentrancy, (ObservableCollection_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F5C8, ObservableCollection_1_System_Object__CheckReentrancy__MethodInfo); DO_APP_FUNC(0x01857110, void, ObservableCollection_1_System_Object__ClearItems, (ObservableCollection_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01856DF0, List_1_System_Object_ *, ObservableCollection_1_System_Object__CreateCopy, (IEnumerable_1_System_Object_ * collection, String * paramName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F598, ObservableCollection_1_System_Object__CreateCopy__MethodInfo); DO_APP_FUNC(0x01857C60, ObservableCollection_1_T_SimpleMonitor_System_Object_ *, ObservableCollection_1_System_Object__EnsureMonitorInitialized, (ObservableCollection_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x018572C0, void, ObservableCollection_1_System_Object__InsertItem, (ObservableCollection_1_System_Object_ * __this, int32_t index, Object * item, MethodInfo * method)); DO_APP_FUNC(0x009950E0, void, ObservableCollection_1_System_Object__Move, (ObservableCollection_1_System_Object_ * __this, int32_t oldIndex, int32_t newIndex, MethodInfo * method)); @@ -181053,20 +199110,22 @@ DO_APP_FUNC(0x003BCE40, void, Observer_1_System_Object___ctor, (Observer_1_Syste DO_APP_FUNC(0x01858960, void, Observer_1_System_Object__OnCompleted, (Observer_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01858980, void, Observer_1_System_Object__OnError, (Observer_1_System_Object_ * __this, Exception * error, MethodInfo * method)); DO_APP_FUNC(0x018589D0, void, Observer_1_System_Object__OnNext, (Observer_1_System_Object_ * __this, Object * evt, MethodInfo * method)); -DO_APP_FUNC(0x01858AF0, void, OneOrMore_2_System_Object_ReadOnlyArray_1_System_Object___ctor, (OneOrMore_2_System_Object_ReadOnlyArray_1_System_Object___Boxed * __this, Object * single, MethodInfo * method)); -DO_APP_FUNC(0x01858B50, void, OneOrMore_2_System_Object_ReadOnlyArray_1_System_Object___ctor_1, (OneOrMore_2_System_Object_ReadOnlyArray_1_System_Object___Boxed * __this, ReadOnlyArray_1_System_Object_ multiple, MethodInfo * method)); -DO_APP_FUNC(0x01858CE0, IEnumerator_1_System_Object_ *, OneOrMore_2_System_Object_ReadOnlyArray_1_System_Object__GetEnumerator, (OneOrMore_2_System_Object_ReadOnlyArray_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01858E00, IEnumerator *, OneOrMore_2_System_Object_ReadOnlyArray_1_System_Object__System_Collections_IEnumerable_GetEnumerator, (OneOrMore_2_System_Object_ReadOnlyArray_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x018589F0, int32_t, OneOrMore_2_System_Object_ReadOnlyArray_1_System_Object__get_Count, (OneOrMore_2_System_Object_ReadOnlyArray_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01858A40, Object *, OneOrMore_2_System_Object_ReadOnlyArray_1_System_Object__get_Item, (OneOrMore_2_System_Object_ReadOnlyArray_1_System_Object___Boxed * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x01858AF0, void, OneOrMore_2_System_Object_ReadOnlyArray_1_System_Object___ctor, (OneOrMore_2_System_Object_ReadOnlyArray_1_System_Object_ * __this, Object * single, MethodInfo * method)); +DO_APP_FUNC(0x01858B50, void, OneOrMore_2_System_Object_ReadOnlyArray_1_System_Object___ctor_1, (OneOrMore_2_System_Object_ReadOnlyArray_1_System_Object_ * __this, ReadOnlyArray_1_System_Object_ multiple, MethodInfo * method)); +DO_APP_FUNC(0x01858CE0, IEnumerator_1_System_Object_ *, OneOrMore_2_System_Object_ReadOnlyArray_1_System_Object__GetEnumerator, (OneOrMore_2_System_Object_ReadOnlyArray_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01858E00, IEnumerator *, OneOrMore_2_System_Object_ReadOnlyArray_1_System_Object__System_Collections_IEnumerable_GetEnumerator, (OneOrMore_2_System_Object_ReadOnlyArray_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x018589F0, int32_t, OneOrMore_2_System_Object_ReadOnlyArray_1_System_Object__get_Count, (OneOrMore_2_System_Object_ReadOnlyArray_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01858A40, Object *, OneOrMore_2_System_Object_ReadOnlyArray_1_System_Object__get_Item, (OneOrMore_2_System_Object_ReadOnlyArray_1_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F4F8, OneOrMore_2_System_Object_ReadOnlyArray_1_System_Object__get_Item__MethodInfo); DO_APP_FUNC(0x01858BB0, OneOrMore_2_System_Object_ReadOnlyArray_1_System_Object_, OneOrMore_2_System_Object_ReadOnlyArray_1_System_Object__op_Implicit, (Object * single, MethodInfo * method)); DO_APP_FUNC(0x01858C50, OneOrMore_2_System_Object_ReadOnlyArray_1_System_Object_, OneOrMore_2_System_Object_ReadOnlyArray_1_System_Object__op_Implicit_1, (ReadOnlyArray_1_System_Object_ multiple, MethodInfo * method)); -DO_APP_FUNC(0x01858F80, void, OneOrMore_2_System_Object_System_Object___ctor, (OneOrMore_2_System_Object_System_Object___Boxed * __this, Object * single, MethodInfo * method)); -DO_APP_FUNC(0x01858FE0, void, OneOrMore_2_System_Object_System_Object___ctor_1, (OneOrMore_2_System_Object_System_Object___Boxed * __this, Object * multiple, MethodInfo * method)); -DO_APP_FUNC(0x01859170, IEnumerator_1_System_Object_ *, OneOrMore_2_System_Object_System_Object__GetEnumerator, (OneOrMore_2_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01859290, IEnumerator *, OneOrMore_2_System_Object_System_Object__System_Collections_IEnumerable_GetEnumerator, (OneOrMore_2_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01858E40, int32_t, OneOrMore_2_System_Object_System_Object__get_Count, (OneOrMore_2_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01858EB0, Object *, OneOrMore_2_System_Object_System_Object__get_Item, (OneOrMore_2_System_Object_System_Object___Boxed * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x01858F80, void, OneOrMore_2_System_Object_System_Object___ctor, (OneOrMore_2_System_Object_System_Object_ * __this, Object * single, MethodInfo * method)); +DO_APP_FUNC(0x01858FE0, void, OneOrMore_2_System_Object_System_Object___ctor_1, (OneOrMore_2_System_Object_System_Object_ * __this, Object * multiple, MethodInfo * method)); +DO_APP_FUNC(0x01859170, IEnumerator_1_System_Object_ *, OneOrMore_2_System_Object_System_Object__GetEnumerator, (OneOrMore_2_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01859290, IEnumerator *, OneOrMore_2_System_Object_System_Object__System_Collections_IEnumerable_GetEnumerator, (OneOrMore_2_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01858E40, int32_t, OneOrMore_2_System_Object_System_Object__get_Count, (OneOrMore_2_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01858EB0, Object *, OneOrMore_2_System_Object_System_Object__get_Item, (OneOrMore_2_System_Object_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F4F0, OneOrMore_2_System_Object_System_Object__get_Item__MethodInfo); DO_APP_FUNC(0x01859040, OneOrMore_2_System_Object_System_Object_, OneOrMore_2_System_Object_System_Object__op_Implicit, (Object * single, MethodInfo * method)); DO_APP_FUNC(0x018590E0, OneOrMore_2_System_Object_System_Object_, OneOrMore_2_System_Object_System_Object__op_Implicit_1, (Object * multiple, MethodInfo * method)); DO_APP_FUNC(0x011139C0, void, OpenXRContextEvent_1_System_Object___ctor, (OpenXRContextEvent_1_System_Object_ * __this, Object * object, void * method_1, MethodInfo * method)); @@ -181144,39 +199203,53 @@ DO_APP_FUNC(0x003AE050, void, OrderedEnumerable_1_System_Object___ctor, (Ordered DO_APP_FUNC(0x0185B8D0, IEnumerator_1_System_Object_ *, OrderedEnumerable_1_System_Object__GetEnumerator, (OrderedEnumerable_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FDB900, IEnumerator *, OrderedEnumerable_1_System_Object__System_Collections_IEnumerable_GetEnumerator, (OrderedEnumerable_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0185B9A0, void, OrderedEnumerable_2_System_Collections_Generic_KeyValuePair_2_System_Object___ctor, (OrderedEnumerable_2_System_Collections_Generic_KeyValuePair_2_System_Object_ * __this, IEnumerable_1_KeyValuePair_2_System_Object_System_Object_ * source, Func_2_System_Collections_Generic_KeyValuePair_2_Object__1 * keySelector, IComparer_1_System_Object_ * comparer, bool descending, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F320, OrderedEnumerable_2_System_Collections_Generic_KeyValuePair_2_System_Object___ctor__MethodInfo); DO_APP_FUNC(0x0185BBF0, EnumerableSorter_1_System_Collections_Generic_KeyValuePair_2_ *, OrderedEnumerable_2_System_Collections_Generic_KeyValuePair_2_System_Object__GetEnumerableSorter, (OrderedEnumerable_2_System_Collections_Generic_KeyValuePair_2_System_Object_ * __this, EnumerableSorter_1_System_Collections_Generic_KeyValuePair_2_ * next, MethodInfo * method)); DO_APP_FUNC(0x0185BCD0, void, OrderedEnumerable_2_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_System_Int32___ctor, (OrderedEnumerable_2_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_System_Int32_ * __this, IEnumerable_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * source, Func_2_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_Int32_ * keySelector, IComparer_1_System_Int32_ * comparer, bool descending, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F378, OrderedEnumerable_2_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_System_Int32___ctor__MethodInfo); DO_APP_FUNC(0x0185BBF0, EnumerableSorter_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ *, OrderedEnumerable_2_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_System_Int32__GetEnumerableSorter, (OrderedEnumerable_2_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_System_Int32_ * __this, EnumerableSorter_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * next, MethodInfo * method)); DO_APP_FUNC(0x0185BF20, void, OrderedEnumerable_2_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_System_UInt32___ctor, (OrderedEnumerable_2_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_System_UInt32_ * __this, IEnumerable_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * source, Func_2_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_UInt32_ * keySelector, IComparer_1_System_UInt32_ * comparer, bool descending, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F370, OrderedEnumerable_2_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_System_UInt32___ctor__MethodInfo); DO_APP_FUNC(0x0185BBF0, EnumerableSorter_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ *, OrderedEnumerable_2_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_System_UInt32__GetEnumerableSorter, (OrderedEnumerable_2_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_System_UInt32_ * __this, EnumerableSorter_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * next, MethodInfo * method)); DO_APP_FUNC(0x0185C170, void, OrderedEnumerable_2_System_Object_System_Boolean___ctor, (OrderedEnumerable_2_System_Object_System_Boolean_ * __this, IEnumerable_1_System_Object_ * source, Func_2_Object_Boolean_ * keySelector, IComparer_1_System_Boolean_ * comparer, bool descending, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F368, OrderedEnumerable_2_System_Object_System_Boolean___ctor__MethodInfo); DO_APP_FUNC(0x0185BBF0, EnumerableSorter_1_System_Object_ *, OrderedEnumerable_2_System_Object_System_Boolean__GetEnumerableSorter, (OrderedEnumerable_2_System_Object_System_Boolean_ * __this, EnumerableSorter_1_System_Object_ * next, MethodInfo * method)); DO_APP_FUNC(0x0185C3C0, void, OrderedEnumerable_2_System_Object_System_Int32___ctor, (OrderedEnumerable_2_System_Object_System_Int32_ * __this, IEnumerable_1_System_Object_ * source, Func_2_Object_Int32_ * keySelector, IComparer_1_System_Int32_ * comparer, bool descending, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F358, OrderedEnumerable_2_System_Object_System_Int32___ctor__MethodInfo); DO_APP_FUNC(0x0185BBF0, EnumerableSorter_1_System_Object_ *, OrderedEnumerable_2_System_Object_System_Int32__GetEnumerableSorter, (OrderedEnumerable_2_System_Object_System_Int32_ * __this, EnumerableSorter_1_System_Object_ * next, MethodInfo * method)); DO_APP_FUNC(0x0185C610, void, OrderedEnumerable_2_System_Object_System_Object___ctor, (OrderedEnumerable_2_System_Object_System_Object_ * __this, IEnumerable_1_System_Object_ * source, Func_2_Object_Object_ * keySelector, IComparer_1_System_Object_ * comparer, bool descending, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F3B8, OrderedEnumerable_2_System_Object_System_Object___ctor__MethodInfo); DO_APP_FUNC(0x0185BBF0, EnumerableSorter_1_System_Object_ *, OrderedEnumerable_2_System_Object_System_Object__GetEnumerableSorter, (OrderedEnumerable_2_System_Object_System_Object_ * __this, EnumerableSorter_1_System_Object_ * next, MethodInfo * method)); DO_APP_FUNC(0x0185C860, void, OrderedEnumerable_2_System_Object_System_Single___ctor, (OrderedEnumerable_2_System_Object_System_Single_ * __this, IEnumerable_1_System_Object_ * source, Func_2_Object_Single_ * keySelector, IComparer_1_System_Single_ * comparer, bool descending, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F3A8, OrderedEnumerable_2_System_Object_System_Single___ctor__MethodInfo); DO_APP_FUNC(0x0185BBF0, EnumerableSorter_1_System_Object_ *, OrderedEnumerable_2_System_Object_System_Single__GetEnumerableSorter, (OrderedEnumerable_2_System_Object_System_Single_ * __this, EnumerableSorter_1_System_Object_ * next, MethodInfo * method)); DO_APP_FUNC(0x0185CAB0, void, OrderedEnumerable_2_System_Object_System_UInt32___ctor, (OrderedEnumerable_2_System_Object_System_UInt32_ * __this, IEnumerable_1_System_Object_ * source, Func_2_Object_UInt32_ * keySelector, IComparer_1_System_UInt32_ * comparer, bool descending, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F398, OrderedEnumerable_2_System_Object_System_UInt32___ctor__MethodInfo); DO_APP_FUNC(0x0185BBF0, EnumerableSorter_1_System_Object_ *, OrderedEnumerable_2_System_Object_System_UInt32__GetEnumerableSorter, (OrderedEnumerable_2_System_Object_System_UInt32_ * __this, EnumerableSorter_1_System_Object_ * next, MethodInfo * method)); -DO_APP_FUNC(0x01719960, void, NonAllocDictionary_2_K_V_PairIterator_System_Byte_System_Object___ctor, (NonAllocDictionary_2_K_V_PairIterator_System_Byte_System_Object___Boxed * __this, NonAllocDictionary_2_System_Byte_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, NonAllocDictionary_2_K_V_PairIterator_System_Byte_System_Object__Dispose, (NonAllocDictionary_2_K_V_PairIterator_System_Byte_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01719AF0, bool, NonAllocDictionary_2_K_V_PairIterator_System_Byte_System_Object__MoveNext, (NonAllocDictionary_2_K_V_PairIterator_System_Byte_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C42850, void, NonAllocDictionary_2_K_V_PairIterator_System_Byte_System_Object__Reset, (NonAllocDictionary_2_K_V_PairIterator_System_Byte_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0185CD00, Object *, NonAllocDictionary_2_K_V_PairIterator_System_Byte_System_Object__System_Collections_IEnumerator_get_Current, (NonAllocDictionary_2_K_V_PairIterator_System_Byte_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0185CDE0, KeyValuePair_2_System_Byte_System_Object_, NonAllocDictionary_2_K_V_PairIterator_System_Byte_System_Object__get_Current, (NonAllocDictionary_2_K_V_PairIterator_System_Byte_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01719960, void, NonAllocDictionary_2_K_V_PairIterator_System_Int32_System_Object___ctor, (NonAllocDictionary_2_K_V_PairIterator_System_Int32_System_Object___Boxed * __this, NonAllocDictionary_2_System_Int32_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, NonAllocDictionary_2_K_V_PairIterator_System_Int32_System_Object__Dispose, (NonAllocDictionary_2_K_V_PairIterator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01719AF0, bool, NonAllocDictionary_2_K_V_PairIterator_System_Int32_System_Object__MoveNext, (NonAllocDictionary_2_K_V_PairIterator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C42850, void, NonAllocDictionary_2_K_V_PairIterator_System_Int32_System_Object__Reset, (NonAllocDictionary_2_K_V_PairIterator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0185CF10, Object *, NonAllocDictionary_2_K_V_PairIterator_System_Int32_System_Object__System_Collections_IEnumerator_get_Current, (NonAllocDictionary_2_K_V_PairIterator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0185CFF0, KeyValuePair_2_System_Int32_System_Object_, NonAllocDictionary_2_K_V_PairIterator_System_Int32_System_Object__get_Current, (NonAllocDictionary_2_K_V_PairIterator_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01719960, void, NonAllocDictionary_2_K_V_PairIterator_System_Object_System_Object___ctor, (NonAllocDictionary_2_K_V_PairIterator_System_Object_System_Object___Boxed * __this, NonAllocDictionary_2_System_Object_System_Object_ * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, NonAllocDictionary_2_K_V_PairIterator_System_Object_System_Object__Dispose, (NonAllocDictionary_2_K_V_PairIterator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01719D70, bool, NonAllocDictionary_2_K_V_PairIterator_System_Object_System_Object__MoveNext, (NonAllocDictionary_2_K_V_PairIterator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C42850, void, NonAllocDictionary_2_K_V_PairIterator_System_Object_System_Object__Reset, (NonAllocDictionary_2_K_V_PairIterator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0185D120, Object *, NonAllocDictionary_2_K_V_PairIterator_System_Object_System_Object__System_Collections_IEnumerator_get_Current, (NonAllocDictionary_2_K_V_PairIterator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0185D200, KeyValuePair_2_System_Object_System_Object_, NonAllocDictionary_2_K_V_PairIterator_System_Object_System_Object__get_Current, (NonAllocDictionary_2_K_V_PairIterator_System_Object_System_Object___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01719960, void, NonAllocDictionary_2_K_V_PairIterator_System_Byte_System_Object___ctor, (NonAllocDictionary_2_K_V_PairIterator_System_Byte_System_Object_ * __this, NonAllocDictionary_2_System_Byte_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, NonAllocDictionary_2_K_V_PairIterator_System_Byte_System_Object__Dispose, (NonAllocDictionary_2_K_V_PairIterator_System_Byte_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2E50, NonAllocDictionary_2_K_V_PairIterator_System_Byte_System_Object__Dispose__MethodInfo); +DO_APP_FUNC(0x01719AF0, bool, NonAllocDictionary_2_K_V_PairIterator_System_Byte_System_Object__MoveNext, (NonAllocDictionary_2_K_V_PairIterator_System_Byte_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2E48, NonAllocDictionary_2_K_V_PairIterator_System_Byte_System_Object__MoveNext__MethodInfo); +DO_APP_FUNC(0x00C42850, void, NonAllocDictionary_2_K_V_PairIterator_System_Byte_System_Object__Reset, (NonAllocDictionary_2_K_V_PairIterator_System_Byte_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0185CD00, Object *, NonAllocDictionary_2_K_V_PairIterator_System_Byte_System_Object__System_Collections_IEnumerator_get_Current, (NonAllocDictionary_2_K_V_PairIterator_System_Byte_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F388, NonAllocDictionary_2_K_V_PairIterator_System_Byte_System_Object__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x0185CDE0, KeyValuePair_2_System_Byte_System_Object_, NonAllocDictionary_2_K_V_PairIterator_System_Byte_System_Object__get_Current, (NonAllocDictionary_2_K_V_PairIterator_System_Byte_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2DD8, NonAllocDictionary_2_K_V_PairIterator_System_Byte_System_Object__get_Current__MethodInfo); +DO_APP_FUNC(0x01719960, void, NonAllocDictionary_2_K_V_PairIterator_System_Int32_System_Object___ctor, (NonAllocDictionary_2_K_V_PairIterator_System_Int32_System_Object_ * __this, NonAllocDictionary_2_System_Int32_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, NonAllocDictionary_2_K_V_PairIterator_System_Int32_System_Object__Dispose, (NonAllocDictionary_2_K_V_PairIterator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01719AF0, bool, NonAllocDictionary_2_K_V_PairIterator_System_Int32_System_Object__MoveNext, (NonAllocDictionary_2_K_V_PairIterator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C42850, void, NonAllocDictionary_2_K_V_PairIterator_System_Int32_System_Object__Reset, (NonAllocDictionary_2_K_V_PairIterator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0185CF10, Object *, NonAllocDictionary_2_K_V_PairIterator_System_Int32_System_Object__System_Collections_IEnumerator_get_Current, (NonAllocDictionary_2_K_V_PairIterator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F3D8, NonAllocDictionary_2_K_V_PairIterator_System_Int32_System_Object__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x0185CFF0, KeyValuePair_2_System_Int32_System_Object_, NonAllocDictionary_2_K_V_PairIterator_System_Int32_System_Object__get_Current, (NonAllocDictionary_2_K_V_PairIterator_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01719960, void, NonAllocDictionary_2_K_V_PairIterator_System_Object_System_Object___ctor, (NonAllocDictionary_2_K_V_PairIterator_System_Object_System_Object_ * __this, NonAllocDictionary_2_System_Object_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, NonAllocDictionary_2_K_V_PairIterator_System_Object_System_Object__Dispose, (NonAllocDictionary_2_K_V_PairIterator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01719D70, bool, NonAllocDictionary_2_K_V_PairIterator_System_Object_System_Object__MoveNext, (NonAllocDictionary_2_K_V_PairIterator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C42850, void, NonAllocDictionary_2_K_V_PairIterator_System_Object_System_Object__Reset, (NonAllocDictionary_2_K_V_PairIterator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0185D120, Object *, NonAllocDictionary_2_K_V_PairIterator_System_Object_System_Object__System_Collections_IEnumerator_get_Current, (NonAllocDictionary_2_K_V_PairIterator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F3D0, NonAllocDictionary_2_K_V_PairIterator_System_Object_System_Object__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x0185D200, KeyValuePair_2_System_Object_System_Object_, NonAllocDictionary_2_K_V_PairIterator_System_Object_System_Object__get_Current, (NonAllocDictionary_2_K_V_PairIterator_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0185D330, void, PanelChangedEventBase_1_System_Object___ctor, (PanelChangedEventBase_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01276F30, Object *, PanelChangedEventBase_1_System_Object__GetPooled, (IPanel * originPanel, IPanel * destinationPanel, MethodInfo * method)); DO_APP_FUNC(0x01276AD0, void, PanelChangedEventBase_1_System_Object__Init, (PanelChangedEventBase_1_System_Object_ * __this, MethodInfo * method)); @@ -181186,8 +199259,10 @@ DO_APP_FUNC(0x003C91F0, IPanel *, PanelChangedEventBase_1_System_Object__get_ori DO_APP_FUNC(0x00548980, void, PanelChangedEventBase_1_System_Object__set_destinationPanel, (PanelChangedEventBase_1_System_Object_ * __this, IPanel * value, MethodInfo * method)); DO_APP_FUNC(0x00A86420, void, PanelChangedEventBase_1_System_Object__set_originPanel, (PanelChangedEventBase_1_System_Object_ * __this, IPanel * value, MethodInfo * method)); DO_APP_FUNC(0x0185D3B0, void, ParallelWorkQueue_1_Pathfinding_Int2___ctor, (ParallelWorkQueue_1_Pathfinding_Int2_ * __this, Queue_1_Pathfinding_Int2_ * queue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9458, ParallelWorkQueue_1_Pathfinding_Int2___ctor__MethodInfo); DO_APP_FUNC(0x0185DAF0, void, ParallelWorkQueue_1_Pathfinding_Int2___Run_b__7_0, (ParallelWorkQueue_1_Pathfinding_Int2_ * __this, Object * threadIndex, MethodInfo * method)); DO_APP_FUNC(0x0185D4E0, IEnumerable_1_System_Int32_ *, ParallelWorkQueue_1_Pathfinding_Int2__Run, (ParallelWorkQueue_1_Pathfinding_Int2_ * __this, int32_t progressTimeoutMillis, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9480, ParallelWorkQueue_1_Pathfinding_Int2__Run__MethodInfo); DO_APP_FUNC(0x0185D5D0, void, ParallelWorkQueue_1_Pathfinding_Int2__RunTask, (ParallelWorkQueue_1_Pathfinding_Int2_ * __this, int32_t threadIndex, MethodInfo * method)); DO_APP_FUNC(0x0185DB80, void, ParallelWorkQueue_1_System_Object___ctor, (ParallelWorkQueue_1_System_Object_ * __this, Queue_1_System_Object_ * queue, MethodInfo * method)); DO_APP_FUNC(0x0185E180, void, ParallelWorkQueue_1_System_Object___Run_b__7_0, (ParallelWorkQueue_1_System_Object_ * __this, Object * threadIndex, MethodInfo * method)); @@ -181212,6 +199287,7 @@ DO_APP_FUNC(0x0185E4A0, int32_t, ParameterOverride_1_UnityEngine_Color__GetHash, DO_APP_FUNC(0x011C2600, void, ParameterOverride_1_UnityEngine_Color__Interp, (ParameterOverride_1_UnityEngine_Color_ * __this, Color from, Color to, float t, MethodInfo * method)); DO_APP_FUNC(0x0185E3A0, void, ParameterOverride_1_UnityEngine_Color__Interp_1, (ParameterOverride_1_UnityEngine_Color_ * __this, ParameterOverride * from, ParameterOverride * to, float t, MethodInfo * method)); DO_APP_FUNC(0x0185E490, void, ParameterOverride_1_UnityEngine_Color__Override, (ParameterOverride_1_UnityEngine_Color_ * __this, Color x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D120E0, ParameterOverride_1_UnityEngine_Color__Override__MethodInfo); DO_APP_FUNC(0x011C2670, void, ParameterOverride_1_UnityEngine_Color__SetValue, (ParameterOverride_1_UnityEngine_Color_ * __this, ParameterOverride * parameter, MethodInfo * method)); DO_APP_FUNC(0x011C2DC0, Color, ParameterOverride_1_UnityEngine_Color__op_Implicit, (ParameterOverride_1_UnityEngine_Color_ * prop, MethodInfo * method)); DO_APP_FUNC(0x011C1C90, void, ParameterOverride_1_System_Int32___ctor, (ParameterOverride_1_System_Int32_ * __this, MethodInfo * method)); @@ -181251,8 +199327,10 @@ DO_APP_FUNC(0x0185EA00, int32_t, ParameterOverride_1_System_Single__GetHash, (Pa DO_APP_FUNC(0x011C4550, void, ParameterOverride_1_System_Single__Interp, (ParameterOverride_1_System_Single_ * __this, float from, float to, float t, MethodInfo * method)); DO_APP_FUNC(0x0185E910, void, ParameterOverride_1_System_Single__Interp_1, (ParameterOverride_1_System_Single_ * __this, ParameterOverride * from, ParameterOverride * to, float t, MethodInfo * method)); DO_APP_FUNC(0x0185E9F0, void, ParameterOverride_1_System_Single__Override, (ParameterOverride_1_System_Single_ * __this, float x, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A4C0, ParameterOverride_1_System_Single__Override__MethodInfo); DO_APP_FUNC(0x011C45C0, void, ParameterOverride_1_System_Single__SetValue, (ParameterOverride_1_System_Single_ * __this, ParameterOverride * parameter, MethodInfo * method)); DO_APP_FUNC(0x011C4C70, float, ParameterOverride_1_System_Single__op_Implicit, (ParameterOverride_1_System_Single_ * prop, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDCDB8, ParameterOverride_1_System_Single__op_Implicit__MethodInfo); DO_APP_FUNC(0x011C4C90, void, ParameterOverride_1_UnityEngine_Vector2___ctor, (ParameterOverride_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8EE18, ParameterOverride_1_UnityEngine_Vector2___ctor__MethodInfo); DO_APP_FUNC(0x0185EA90, void, ParameterOverride_1_UnityEngine_Vector2___ctor_1, (ParameterOverride_1_UnityEngine_Vector2_ * __this, Vector2 value, MethodInfo * method)); @@ -181285,11 +199363,15 @@ DO_APP_FUNC(0x011C2670, void, ParameterOverride_1_UnityEngine_Vector4__SetValue, DO_APP_FUNC(0x011C2DC0, Vector4, ParameterOverride_1_UnityEngine_Vector4__op_Implicit, (ParameterOverride_1_UnityEngine_Vector4_ * prop, MethodInfo * method)); DO_APP_FUNC(0x003BA2A0, void, ParameterizedEmitter2_2_System_Object_System_Object___ctor, (ParameterizedEmitter2_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BA2A0, void, ParameterizedEmitter2_2_UnityEngine_Vector3_System_Single___ctor, (ParameterizedEmitter2_2_UnityEngine_Vector3_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3AF8, ParameterizedEmitter2_2_UnityEngine_Vector3_System_Single___ctor__MethodInfo); DO_APP_FUNC(0x003BA2A0, void, ParameterizedEmitter2_2_UnityEngine_Vector3_UnityEngine_Vector3___ctor, (ParameterizedEmitter2_2_UnityEngine_Vector3_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3AF0, ParameterizedEmitter2_2_UnityEngine_Vector3_UnityEngine_Vector3___ctor__MethodInfo); DO_APP_FUNC(0x003BA2A0, void, ParameterizedEmitter3_3_System_Object_System_Object_System_Object___ctor, (ParameterizedEmitter3_3_System_Object_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BA2A0, void, ParameterizedEmitter3_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Single___ctor, (ParameterizedEmitter3_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3AE0, ParameterizedEmitter3_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Single___ctor__MethodInfo); DO_APP_FUNC(0x003BA2A0, void, ParameterizedEmitter_1_System_Object___ctor, (ParameterizedEmitter_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BA2A0, void, ParameterizedEmitter_1_UnityEngine_Vector3___ctor, (ParameterizedEmitter_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3AE8, ParameterizedEmitter_1_UnityEngine_Vector3___ctor__MethodInfo); DO_APP_FUNC(0x0185EEE0, void, TlsOverPerCoreLockedStacksArrayPool_1_T_PerCoreLockedStacks_System_Byte___ctor, (TlsOverPerCoreLockedStacksArrayPool_1_T_PerCoreLockedStacks_System_Byte_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0185F2C0, bool, TlsOverPerCoreLockedStacksArrayPool_1_T_PerCoreLockedStacks_System_Byte__Trim, (TlsOverPerCoreLockedStacksArrayPool_1_T_PerCoreLockedStacks_System_Byte_ * __this, uint32_t tickCount, int32_t id, TlsOverPerCoreLockedStacksArrayPool_1_T_MemoryPressure_System_Byte_ * pressure, Int32__Array * bucketSizes, MethodInfo * method)); DO_APP_FUNC(0x0185F1E0, Byte__Array *, TlsOverPerCoreLockedStacksArrayPool_1_T_PerCoreLockedStacks_System_Byte__TryPop, (TlsOverPerCoreLockedStacksArrayPool_1_T_PerCoreLockedStacks_System_Byte_ * __this, MethodInfo * method)); @@ -181374,22 +199456,25 @@ DO_APP_FUNC(0x00FCC190, void, Pool_1_System_Object___ctor, (Pool_1_System_Object DO_APP_FUNC(0x00FCC490, void, Pool_1_System_Object__Dissonance_Datastructures_IRecycler_T__Recycle, (Pool_1_System_Object_ * __this, Object * item, MethodInfo * method)); DO_APP_FUNC(0x00FCC2D0, Object *, Pool_1_System_Object__Get, (Pool_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FCC390, bool, Pool_1_System_Object__Put, (Pool_1_System_Object_ * __this, Object * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5E40, Pool_1_System_Object__Put__MethodInfo); DO_APP_FUNC(0x003BCD50, int32_t, Pool_1_System_Object__get_Capacity, (Pool_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FCC150, int32_t, Pool_1_System_Object__get_Count, (Pool_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FCC4B0, void, Pool_1_System_Object__1__ctor, (Pool_1_System_Object__1 * __this, Func_1_Object_ * createFunction, Action_1_Object_ * resetFunction, int32_t poolCapacity, MethodInfo * method)); DO_APP_FUNC(0x00FCC920, Object *, Pool_1_System_Object__1_Acquire, (Pool_1_System_Object__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x00FCC660, void, Pool_1_System_Object__1_CreatePoolItems, (Pool_1_System_Object__1 * __this, int32_t numItems, MethodInfo * method)); DO_APP_FUNC(0x00FCC700, void, Pool_1_System_Object__1_Release, (Pool_1_System_Object__1 * __this, Object * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5E30, Pool_1_System_Object__1_Release__MethodInfo); DO_APP_FUNC(0x00FCCBA0, void, Pool_1_System_Object__2__ctor, (Pool_1_System_Object__2 * __this, int32_t maxSize, Func_1_Object_ * factory, MethodInfo * method)); DO_APP_FUNC(0x00FCCD00, Object *, Pool_1_System_Object__2_Get, (Pool_1_System_Object__2 * __this, MethodInfo * method)); DO_APP_FUNC(0x00FCCCE0, void, Pool_1_System_Object__2_PlaceholderSoftware_WetStuff_Datastructures_IRecycler_T__Recycle, (Pool_1_System_Object__2 * __this, Object * item, MethodInfo * method)); DO_APP_FUNC(0x00FCCDC0, void, Pool_1_System_Object__2_Put, (Pool_1_System_Object__2 * __this, Object * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5E38, Pool_1_System_Object__2_Put__MethodInfo); DO_APP_FUNC(0x003CC980, int32_t, Pool_1_System_Object__2_get_Capacity, (Pool_1_System_Object__2 * __this, MethodInfo * method)); DO_APP_FUNC(0x00FCCB60, int32_t, Pool_1_System_Object__2_get_Count, (Pool_1_System_Object__2 * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A76400, void, ObjectPool_1_T_PooledObject_System_Object___ctor, (ObjectPool_1_T_PooledObject_System_Object___Boxed * __this, Object * value, ObjectPool_1_System_Object__2 * pool, MethodInfo * method)); -DO_APP_FUNC(0x00FCCEA0, void, ObjectPool_1_T_PooledObject_System_Object__System_IDisposable_Dispose, (ObjectPool_1_T_PooledObject_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A76400, void, PooledObject_1_System_Object___ctor, (PooledObject_1_System_Object___Boxed * __this, Object * value, IObjectPool_1_System_Object_ * pool, MethodInfo * method)); -DO_APP_FUNC(0x00FCCF30, void, PooledObject_1_System_Object__System_IDisposable_Dispose, (PooledObject_1_System_Object___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A76400, void, ObjectPool_1_T_PooledObject_System_Object___ctor, (ObjectPool_1_T_PooledObject_System_Object_ * __this, Object * value, ObjectPool_1_System_Object__2 * pool, MethodInfo * method)); +DO_APP_FUNC(0x00FCCEA0, void, ObjectPool_1_T_PooledObject_System_Object__System_IDisposable_Dispose, (ObjectPool_1_T_PooledObject_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A76400, void, PooledObject_1_System_Object___ctor, (PooledObject_1_System_Object_ * __this, Object * value, IObjectPool_1_System_Object_ * pool, MethodInfo * method)); +DO_APP_FUNC(0x00FCCF30, void, PooledObject_1_System_Object__System_IDisposable_Dispose, (PooledObject_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD40, void, PostProcessEffectRenderer_1_System_Object___ctor, (PostProcessEffectRenderer_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FCCFA0, void, PostProcessEffectRenderer_1_System_Object__SetSettings, (PostProcessEffectRenderer_1_System_Object_ * __this, PostProcessEffectSettings * settings, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, PostProcessEffectRenderer_1_System_Object__get_settings, (PostProcessEffectRenderer_1_System_Object_ * __this, MethodInfo * method)); @@ -182036,6 +200121,7 @@ DO_APP_FUNC(0x00FD39D0, void, Query_1_System_Object___ctor, (Query_1_System_Obje DO_APP_FUNC(0x00FD3960, Object *, Query_1_System_Object__get_Result, (Query_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD3A30, void, Queue_1_KeyValuePair_2_System_DateTime_System_UInt32___ctor, (Queue_1_KeyValuePair_2_System_DateTime_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD3BE0, void, Queue_1_KeyValuePair_2_System_DateTime_System_UInt32___ctor_1, (Queue_1_KeyValuePair_2_System_DateTime_System_UInt32_ * __this, IEnumerable_1_KeyValuePair_2_System_DateTime_System_UInt32_ * collection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5DE8, Queue_1_KeyValuePair_2_System_DateTime_System_UInt32___ctor_1__MethodInfo); DO_APP_FUNC(0x00FD3AB0, void, Queue_1_KeyValuePair_2_System_DateTime_System_UInt32___ctor_2, (Queue_1_KeyValuePair_2_System_DateTime_System_UInt32_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C94820, Queue_1_KeyValuePair_2_System_DateTime_System_UInt32___ctor_2__MethodInfo); DO_APP_FUNC(0x00FD3DA0, void, Queue_1_KeyValuePair_2_System_DateTime_System_UInt32__Clear, (Queue_1_KeyValuePair_2_System_DateTime_System_UInt32_ * __this, MethodInfo * method)); @@ -182045,117 +200131,153 @@ DO_APP_FUNC_METHODINFO(0x03C94888, Queue_1_KeyValuePair_2_System_DateTime_System DO_APP_FUNC(0x00FD4140, void, Queue_1_KeyValuePair_2_System_DateTime_System_UInt32__Enqueue, (Queue_1_KeyValuePair_2_System_DateTime_System_UInt32_ * __this, KeyValuePair_2_System_DateTime_System_UInt32_ item, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C94890, Queue_1_KeyValuePair_2_System_DateTime_System_UInt32__Enqueue__MethodInfo); DO_APP_FUNC(0x00FD4200, Queue_1_T_Enumerator_KeyValuePair_2_System_DateTime_System_UInt32_, Queue_1_KeyValuePair_2_System_DateTime_System_UInt32__GetEnumerator, (Queue_1_KeyValuePair_2_System_DateTime_System_UInt32_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FD4740, void, Queue_1_KeyValuePair_2_System_DateTime_System_UInt32__MoveNext, (Queue_1_KeyValuePair_2_System_DateTime_System_UInt32_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00FD4740, void, Queue_1_KeyValuePair_2_System_DateTime_System_UInt32__MoveNext, (Queue_1_KeyValuePair_2_System_DateTime_System_UInt32_ * __this, int32_t * index, MethodInfo * method)); DO_APP_FUNC(0x00FD4430, KeyValuePair_2_System_DateTime_System_UInt32_, Queue_1_KeyValuePair_2_System_DateTime_System_UInt32__Peek, (Queue_1_KeyValuePair_2_System_DateTime_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C948A0, Queue_1_KeyValuePair_2_System_DateTime_System_UInt32__Peek__MethodInfo); DO_APP_FUNC(0x00FD4600, void, Queue_1_KeyValuePair_2_System_DateTime_System_UInt32__SetCapacity, (Queue_1_KeyValuePair_2_System_DateTime_System_UInt32_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x00FD4290, IEnumerator_1_KeyValuePair_2_System_DateTime_System_UInt32_ *, Queue_1_KeyValuePair_2_System_DateTime_System_UInt32__System_Collections_Generic_IEnumerable_T__GetEnumerator, (Queue_1_KeyValuePair_2_System_DateTime_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD3DC0, void, Queue_1_KeyValuePair_2_System_DateTime_System_UInt32__System_Collections_ICollection_CopyTo, (Queue_1_KeyValuePair_2_System_DateTime_System_UInt32_ * __this, Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5DB8, Queue_1_KeyValuePair_2_System_DateTime_System_UInt32__System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, Queue_1_KeyValuePair_2_System_DateTime_System_UInt32__System_Collections_ICollection_get_IsSynchronized, (Queue_1_KeyValuePair_2_System_DateTime_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD3CF0, Object *, Queue_1_KeyValuePair_2_System_DateTime_System_UInt32__System_Collections_ICollection_get_SyncRoot, (Queue_1_KeyValuePair_2_System_DateTime_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD4290, IEnumerator *, Queue_1_KeyValuePair_2_System_DateTime_System_UInt32__System_Collections_IEnumerable_GetEnumerator, (Queue_1_KeyValuePair_2_System_DateTime_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD4770, void, Queue_1_KeyValuePair_2_System_DateTime_System_UInt32__ThrowForEmptyQueue, (Queue_1_KeyValuePair_2_System_DateTime_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5DE0, Queue_1_KeyValuePair_2_System_DateTime_System_UInt32__ThrowForEmptyQueue__MethodInfo); DO_APP_FUNC(0x00FD47D0, void, Queue_1_KeyValuePair_2_System_DateTime_System_UInt32__TrimExcess, (Queue_1_KeyValuePair_2_System_DateTime_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003CC980, int32_t, Queue_1_KeyValuePair_2_System_DateTime_System_UInt32__get_Count, (Queue_1_KeyValuePair_2_System_DateTime_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD3A30, void, Queue_1_System_ValueTuple_2__1__ctor, (Queue_1_System_ValueTuple_2__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD4950, void, Queue_1_System_ValueTuple_2__1__ctor_1, (Queue_1_System_ValueTuple_2__1 * __this, IEnumerable_1_System_ValueTuple_2__13 * collection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5DD0, Queue_1_System_ValueTuple_2__1__ctor_1__MethodInfo); DO_APP_FUNC(0x00FD4820, void, Queue_1_System_ValueTuple_2__1__ctor_2, (Queue_1_System_ValueTuple_2__1 * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5DC8, Queue_1_System_ValueTuple_2__1__ctor_2__MethodInfo); DO_APP_FUNC(0x00FD4B10, void, Queue_1_System_ValueTuple_2__1_Clear, (Queue_1_System_ValueTuple_2__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD44A0, bool, Queue_1_System_ValueTuple_2__1_Contains, (Queue_1_System_ValueTuple_2__1 * __this, ValueTuple_2_IntPtr_Object_ item, MethodInfo * method)); DO_APP_FUNC(0x00FD5020, ValueTuple_2_IntPtr_Object_, Queue_1_System_ValueTuple_2__1_Dequeue, (Queue_1_System_ValueTuple_2__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD4F00, void, Queue_1_System_ValueTuple_2__1_Enqueue, (Queue_1_System_ValueTuple_2__1 * __this, ValueTuple_2_IntPtr_Object_ item, MethodInfo * method)); DO_APP_FUNC(0x00FD4200, Queue_1_T_Enumerator_System_ValueTuple_2_, Queue_1_System_ValueTuple_2__1_GetEnumerator, (Queue_1_System_ValueTuple_2__1 * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FD4740, void, Queue_1_System_ValueTuple_2__1_MoveNext, (Queue_1_System_ValueTuple_2__1 * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00FD4740, void, Queue_1_System_ValueTuple_2__1_MoveNext, (Queue_1_System_ValueTuple_2__1 * __this, int32_t * index, MethodInfo * method)); DO_APP_FUNC(0x00FD4430, ValueTuple_2_IntPtr_Object_, Queue_1_System_ValueTuple_2__1_Peek, (Queue_1_System_ValueTuple_2__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD4600, void, Queue_1_System_ValueTuple_2__1_SetCapacity, (Queue_1_System_ValueTuple_2__1 * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x00FD4290, IEnumerator_1_System_ValueTuple_2__17 *, Queue_1_System_ValueTuple_2__1_System_Collections_Generic_IEnumerable_T__GetEnumerator, (Queue_1_System_ValueTuple_2__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD4B80, void, Queue_1_System_ValueTuple_2__1_System_Collections_ICollection_CopyTo, (Queue_1_System_ValueTuple_2__1 * __this, Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5D98, Queue_1_System_ValueTuple_2__1_System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, Queue_1_System_ValueTuple_2__1_System_Collections_ICollection_get_IsSynchronized, (Queue_1_System_ValueTuple_2__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD4A60, Object *, Queue_1_System_ValueTuple_2__1_System_Collections_ICollection_get_SyncRoot, (Queue_1_System_ValueTuple_2__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD4290, IEnumerator *, Queue_1_System_ValueTuple_2__1_System_Collections_IEnumerable_GetEnumerator, (Queue_1_System_ValueTuple_2__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD5160, void, Queue_1_System_ValueTuple_2__1_ThrowForEmptyQueue, (Queue_1_System_ValueTuple_2__1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5DA0, Queue_1_System_ValueTuple_2__1_ThrowForEmptyQueue__MethodInfo); DO_APP_FUNC(0x00FD47D0, void, Queue_1_System_ValueTuple_2__1_TrimExcess, (Queue_1_System_ValueTuple_2__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x003CC980, int32_t, Queue_1_System_ValueTuple_2__1_get_Count, (Queue_1_System_ValueTuple_2__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD3A30, void, Queue_1_Pathfinding_Int2___ctor, (Queue_1_Pathfinding_Int2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9460, Queue_1_Pathfinding_Int2___ctor__MethodInfo); DO_APP_FUNC(0x00FD52F0, void, Queue_1_Pathfinding_Int2___ctor_1, (Queue_1_Pathfinding_Int2_ * __this, IEnumerable_1_Pathfinding_Int2_ * collection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9518, Queue_1_Pathfinding_Int2___ctor_1__MethodInfo); DO_APP_FUNC(0x00FD51C0, void, Queue_1_Pathfinding_Int2___ctor_2, (Queue_1_Pathfinding_Int2_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9528, Queue_1_Pathfinding_Int2___ctor_2__MethodInfo); DO_APP_FUNC(0x00FD3DA0, void, Queue_1_Pathfinding_Int2__Clear, (Queue_1_Pathfinding_Int2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD5B40, bool, Queue_1_Pathfinding_Int2__Contains, (Queue_1_Pathfinding_Int2_ * __this, Int2 item, MethodInfo * method)); DO_APP_FUNC(0x00FD5A50, Int2, Queue_1_Pathfinding_Int2__Dequeue, (Queue_1_Pathfinding_Int2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD5830, void, Queue_1_Pathfinding_Int2__Enqueue, (Queue_1_Pathfinding_Int2_ * __this, Int2 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9468, Queue_1_Pathfinding_Int2__Enqueue__MethodInfo); DO_APP_FUNC(0x00FD58F0, Queue_1_T_Enumerator_Pathfinding_Int2_, Queue_1_Pathfinding_Int2__GetEnumerator, (Queue_1_Pathfinding_Int2_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FD4740, void, Queue_1_Pathfinding_Int2__MoveNext, (Queue_1_Pathfinding_Int2_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00FD4740, void, Queue_1_Pathfinding_Int2__MoveNext, (Queue_1_Pathfinding_Int2_ * __this, int32_t * index, MethodInfo * method)); DO_APP_FUNC(0x00FD5AF0, Int2, Queue_1_Pathfinding_Int2__Peek, (Queue_1_Pathfinding_Int2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD4600, void, Queue_1_Pathfinding_Int2__SetCapacity, (Queue_1_Pathfinding_Int2_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x00FD5980, IEnumerator_1_Pathfinding_Int2_ *, Queue_1_Pathfinding_Int2__System_Collections_Generic_IEnumerable_T__GetEnumerator, (Queue_1_Pathfinding_Int2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD54B0, void, Queue_1_Pathfinding_Int2__System_Collections_ICollection_CopyTo, (Queue_1_Pathfinding_Int2_ * __this, Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9548, Queue_1_Pathfinding_Int2__System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, Queue_1_Pathfinding_Int2__System_Collections_ICollection_get_IsSynchronized, (Queue_1_Pathfinding_Int2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD5400, Object *, Queue_1_Pathfinding_Int2__System_Collections_ICollection_get_SyncRoot, (Queue_1_Pathfinding_Int2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD5980, IEnumerator *, Queue_1_Pathfinding_Int2__System_Collections_IEnumerable_GetEnumerator, (Queue_1_Pathfinding_Int2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD5C80, void, Queue_1_Pathfinding_Int2__ThrowForEmptyQueue, (Queue_1_Pathfinding_Int2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9530, Queue_1_Pathfinding_Int2__ThrowForEmptyQueue__MethodInfo); DO_APP_FUNC(0x00FD47D0, void, Queue_1_Pathfinding_Int2__TrimExcess, (Queue_1_Pathfinding_Int2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003CC980, int32_t, Queue_1_Pathfinding_Int2__get_Count, (Queue_1_Pathfinding_Int2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9438, Queue_1_Pathfinding_Int2__get_Count__MethodInfo); DO_APP_FUNC(0x00FD3A30, void, Queue_1_Pathfinding_Int3___ctor, (Queue_1_Pathfinding_Int3_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA720, Queue_1_Pathfinding_Int3___ctor__MethodInfo); DO_APP_FUNC(0x00FD5E10, void, Queue_1_Pathfinding_Int3___ctor_1, (Queue_1_Pathfinding_Int3_ * __this, IEnumerable_1_Pathfinding_Int3_ * collection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD94F8, Queue_1_Pathfinding_Int3___ctor_1__MethodInfo); DO_APP_FUNC(0x00FD5CE0, void, Queue_1_Pathfinding_Int3___ctor_2, (Queue_1_Pathfinding_Int3_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9540, Queue_1_Pathfinding_Int3___ctor_2__MethodInfo); DO_APP_FUNC(0x00FD3DA0, void, Queue_1_Pathfinding_Int3__Clear, (Queue_1_Pathfinding_Int3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD66C0, bool, Queue_1_Pathfinding_Int3__Contains, (Queue_1_Pathfinding_Int3_ * __this, Int3 item, MethodInfo * method)); DO_APP_FUNC(0x00FD6590, Int3, Queue_1_Pathfinding_Int3__Dequeue, (Queue_1_Pathfinding_Int3_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA750, Queue_1_Pathfinding_Int3__Dequeue__MethodInfo); DO_APP_FUNC(0x00FD6350, void, Queue_1_Pathfinding_Int3__Enqueue, (Queue_1_Pathfinding_Int3_ * __this, Int3 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA748, Queue_1_Pathfinding_Int3__Enqueue__MethodInfo); DO_APP_FUNC(0x00FD6420, Queue_1_T_Enumerator_Pathfinding_Int3_, Queue_1_Pathfinding_Int3__GetEnumerator, (Queue_1_Pathfinding_Int3_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FD4740, void, Queue_1_Pathfinding_Int3__MoveNext, (Queue_1_Pathfinding_Int3_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00FD4740, void, Queue_1_Pathfinding_Int3__MoveNext, (Queue_1_Pathfinding_Int3_ * __this, int32_t * index, MethodInfo * method)); DO_APP_FUNC(0x00FD6650, Int3, Queue_1_Pathfinding_Int3__Peek, (Queue_1_Pathfinding_Int3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD4600, void, Queue_1_Pathfinding_Int3__SetCapacity, (Queue_1_Pathfinding_Int3_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x00FD64B0, IEnumerator_1_Pathfinding_Int3_ *, Queue_1_Pathfinding_Int3__System_Collections_Generic_IEnumerable_T__GetEnumerator, (Queue_1_Pathfinding_Int3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD5FD0, void, Queue_1_Pathfinding_Int3__System_Collections_ICollection_CopyTo, (Queue_1_Pathfinding_Int3_ * __this, Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD94F0, Queue_1_Pathfinding_Int3__System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, Queue_1_Pathfinding_Int3__System_Collections_ICollection_get_IsSynchronized, (Queue_1_Pathfinding_Int3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD5F20, Object *, Queue_1_Pathfinding_Int3__System_Collections_ICollection_get_SyncRoot, (Queue_1_Pathfinding_Int3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD64B0, IEnumerator *, Queue_1_Pathfinding_Int3__System_Collections_IEnumerable_GetEnumerator, (Queue_1_Pathfinding_Int3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD6840, void, Queue_1_Pathfinding_Int3__ThrowForEmptyQueue, (Queue_1_Pathfinding_Int3_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9508, Queue_1_Pathfinding_Int3__ThrowForEmptyQueue__MethodInfo); DO_APP_FUNC(0x00FD47D0, void, Queue_1_Pathfinding_Int3__TrimExcess, (Queue_1_Pathfinding_Int3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003CC980, int32_t, Queue_1_Pathfinding_Int3__get_Count, (Queue_1_Pathfinding_Int3_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA718, Queue_1_Pathfinding_Int3__get_Count__MethodInfo); DO_APP_FUNC(0x00FD3A30, void, Queue_1_System_Int32___ctor, (Queue_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE970, Queue_1_System_Int32___ctor__MethodInfo); DO_APP_FUNC(0x00FD69D0, void, Queue_1_System_Int32___ctor_1, (Queue_1_System_Int32_ * __this, IEnumerable_1_System_Int32_ * collection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9500, Queue_1_System_Int32___ctor_1__MethodInfo); DO_APP_FUNC(0x00FD68A0, void, Queue_1_System_Int32___ctor_2, (Queue_1_System_Int32_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9510, Queue_1_System_Int32___ctor_2__MethodInfo); DO_APP_FUNC(0x00FD3DA0, void, Queue_1_System_Int32__Clear, (Queue_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE7A8, Queue_1_System_Int32__Clear__MethodInfo); DO_APP_FUNC(0x00FD7220, bool, Queue_1_System_Int32__Contains, (Queue_1_System_Int32_ * __this, int32_t item, MethodInfo * method)); DO_APP_FUNC(0x00FD7130, int32_t, Queue_1_System_Int32__Dequeue, (Queue_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE928, Queue_1_System_Int32__Dequeue__MethodInfo); DO_APP_FUNC(0x00FD6F10, void, Queue_1_System_Int32__Enqueue, (Queue_1_System_Int32_ * __this, int32_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE968, Queue_1_System_Int32__Enqueue__MethodInfo); DO_APP_FUNC(0x00FD6FD0, Queue_1_T_Enumerator_System_Int32_, Queue_1_System_Int32__GetEnumerator, (Queue_1_System_Int32_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FD4740, void, Queue_1_System_Int32__MoveNext, (Queue_1_System_Int32_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00FD4740, void, Queue_1_System_Int32__MoveNext, (Queue_1_System_Int32_ * __this, int32_t * index, MethodInfo * method)); DO_APP_FUNC(0x00FD71D0, int32_t, Queue_1_System_Int32__Peek, (Queue_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD4600, void, Queue_1_System_Int32__SetCapacity, (Queue_1_System_Int32_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x00FD7060, IEnumerator_1_System_Int32_ *, Queue_1_System_Int32__System_Collections_Generic_IEnumerable_T__GetEnumerator, (Queue_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD6B90, void, Queue_1_System_Int32__System_Collections_ICollection_CopyTo, (Queue_1_System_Int32_ * __this, Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD94C8, Queue_1_System_Int32__System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, Queue_1_System_Int32__System_Collections_ICollection_get_IsSynchronized, (Queue_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD6AE0, Object *, Queue_1_System_Int32__System_Collections_ICollection_get_SyncRoot, (Queue_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD7060, IEnumerator *, Queue_1_System_Int32__System_Collections_IEnumerable_GetEnumerator, (Queue_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD7360, void, Queue_1_System_Int32__ThrowForEmptyQueue, (Queue_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD94B0, Queue_1_System_Int32__ThrowForEmptyQueue__MethodInfo); DO_APP_FUNC(0x00FD47D0, void, Queue_1_System_Int32__TrimExcess, (Queue_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003CC980, int32_t, Queue_1_System_Int32__get_Count, (Queue_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE930, Queue_1_System_Int32__get_Count__MethodInfo); DO_APP_FUNC(0x00FD3A30, void, Queue_1_System_Object___ctor, (Queue_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD74F0, void, Queue_1_System_Object___ctor_1, (Queue_1_System_Object_ * __this, IEnumerable_1_System_Object_ * collection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD94E0, Queue_1_System_Object___ctor_1__MethodInfo); DO_APP_FUNC(0x00FD73C0, void, Queue_1_System_Object___ctor_2, (Queue_1_System_Object_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD94B8, Queue_1_System_Object___ctor_2__MethodInfo); DO_APP_FUNC(0x00FD4B10, void, Queue_1_System_Object__Clear, (Queue_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD7B90, bool, Queue_1_System_Object__Contains, (Queue_1_System_Object_ * __this, Object * item, MethodInfo * method)); DO_APP_FUNC(0x00FD7AE0, Object *, Queue_1_System_Object__Dequeue, (Queue_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD7A30, void, Queue_1_System_Object__Enqueue, (Queue_1_System_Object_ * __this, Object * item, MethodInfo * method)); DO_APP_FUNC(0x00FD58F0, Queue_1_T_Enumerator_System_Object_, Queue_1_System_Object__GetEnumerator, (Queue_1_System_Object_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FD4740, void, Queue_1_System_Object__MoveNext, (Queue_1_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00FD4740, void, Queue_1_System_Object__MoveNext, (Queue_1_System_Object_ * __this, int32_t * index, MethodInfo * method)); DO_APP_FUNC(0x00FD5AF0, Object *, Queue_1_System_Object__Peek, (Queue_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD4600, void, Queue_1_System_Object__SetCapacity, (Queue_1_System_Object_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x00FD5980, IEnumerator_1_System_Object_ *, Queue_1_System_Object__System_Collections_Generic_IEnumerable_T__GetEnumerator, (Queue_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD76B0, void, Queue_1_System_Object__System_Collections_ICollection_CopyTo, (Queue_1_System_Object_ * __this, Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD94D8, Queue_1_System_Object__System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, Queue_1_System_Object__System_Collections_ICollection_get_IsSynchronized, (Queue_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD7600, Object *, Queue_1_System_Object__System_Collections_ICollection_get_SyncRoot, (Queue_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD5980, IEnumerator *, Queue_1_System_Object__System_Collections_IEnumerable_GetEnumerator, (Queue_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD7CD0, void, Queue_1_System_Object__ThrowForEmptyQueue, (Queue_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9480, Queue_1_System_Object__ThrowForEmptyQueue__MethodInfo); DO_APP_FUNC(0x00FD47D0, void, Queue_1_System_Object__TrimExcess, (Queue_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003CC980, int32_t, Queue_1_System_Object__get_Count, (Queue_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD3A30, void, Queue_1_Dissonance_Audio_Playback_SpeechSession___ctor, (Queue_1_Dissonance_Audio_Playback_SpeechSession_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C935F0, Queue_1_Dissonance_Audio_Playback_SpeechSession___ctor__MethodInfo); DO_APP_FUNC(0x00FD7E60, void, Queue_1_Dissonance_Audio_Playback_SpeechSession___ctor_1, (Queue_1_Dissonance_Audio_Playback_SpeechSession_ * __this, IEnumerable_1_Dissonance_Audio_Playback_SpeechSession_ * collection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9468, Queue_1_Dissonance_Audio_Playback_SpeechSession___ctor_1__MethodInfo); DO_APP_FUNC(0x00FD7D30, void, Queue_1_Dissonance_Audio_Playback_SpeechSession___ctor_2, (Queue_1_Dissonance_Audio_Playback_SpeechSession_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9488, Queue_1_Dissonance_Audio_Playback_SpeechSession___ctor_2__MethodInfo); DO_APP_FUNC(0x00FD4B10, void, Queue_1_Dissonance_Audio_Playback_SpeechSession__Clear, (Queue_1_Dissonance_Audio_Playback_SpeechSession_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD8900, bool, Queue_1_Dissonance_Audio_Playback_SpeechSession__Contains, (Queue_1_Dissonance_Audio_Playback_SpeechSession_ * __this, SpeechSession item, MethodInfo * method)); DO_APP_FUNC(0x00FD86B0, SpeechSession, Queue_1_Dissonance_Audio_Playback_SpeechSession__Dequeue, (Queue_1_Dissonance_Audio_Playback_SpeechSession_ * __this, MethodInfo * method)); @@ -182163,22 +200285,26 @@ DO_APP_FUNC_METHODINFO(0x03C935D0, Queue_1_Dissonance_Audio_Playback_SpeechSessi DO_APP_FUNC(0x00FD83A0, void, Queue_1_Dissonance_Audio_Playback_SpeechSession__Enqueue, (Queue_1_Dissonance_Audio_Playback_SpeechSession_ * __this, SpeechSession item, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C935D8, Queue_1_Dissonance_Audio_Playback_SpeechSession__Enqueue__MethodInfo); DO_APP_FUNC(0x00FD84D0, Queue_1_T_Enumerator_Dissonance_Audio_Playback_SpeechSession_, Queue_1_Dissonance_Audio_Playback_SpeechSession__GetEnumerator, (Queue_1_Dissonance_Audio_Playback_SpeechSession_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FD4740, void, Queue_1_Dissonance_Audio_Playback_SpeechSession__MoveNext, (Queue_1_Dissonance_Audio_Playback_SpeechSession_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00FD4740, void, Queue_1_Dissonance_Audio_Playback_SpeechSession__MoveNext, (Queue_1_Dissonance_Audio_Playback_SpeechSession_ * __this, int32_t * index, MethodInfo * method)); DO_APP_FUNC(0x00FD8870, SpeechSession, Queue_1_Dissonance_Audio_Playback_SpeechSession__Peek, (Queue_1_Dissonance_Audio_Playback_SpeechSession_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C935B8, Queue_1_Dissonance_Audio_Playback_SpeechSession__Peek__MethodInfo); DO_APP_FUNC(0x00FD4600, void, Queue_1_Dissonance_Audio_Playback_SpeechSession__SetCapacity, (Queue_1_Dissonance_Audio_Playback_SpeechSession_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x00FD8580, IEnumerator_1_Dissonance_Audio_Playback_SpeechSession_ *, Queue_1_Dissonance_Audio_Playback_SpeechSession__System_Collections_Generic_IEnumerable_T__GetEnumerator, (Queue_1_Dissonance_Audio_Playback_SpeechSession_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD8020, void, Queue_1_Dissonance_Audio_Playback_SpeechSession__System_Collections_ICollection_CopyTo, (Queue_1_Dissonance_Audio_Playback_SpeechSession_ * __this, Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD94A8, Queue_1_Dissonance_Audio_Playback_SpeechSession__System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, Queue_1_Dissonance_Audio_Playback_SpeechSession__System_Collections_ICollection_get_IsSynchronized, (Queue_1_Dissonance_Audio_Playback_SpeechSession_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD7F70, Object *, Queue_1_Dissonance_Audio_Playback_SpeechSession__System_Collections_ICollection_get_SyncRoot, (Queue_1_Dissonance_Audio_Playback_SpeechSession_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD8580, IEnumerator *, Queue_1_Dissonance_Audio_Playback_SpeechSession__System_Collections_IEnumerable_GetEnumerator, (Queue_1_Dissonance_Audio_Playback_SpeechSession_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD8AC0, void, Queue_1_Dissonance_Audio_Playback_SpeechSession__ThrowForEmptyQueue, (Queue_1_Dissonance_Audio_Playback_SpeechSession_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9490, Queue_1_Dissonance_Audio_Playback_SpeechSession__ThrowForEmptyQueue__MethodInfo); DO_APP_FUNC(0x00FD47D0, void, Queue_1_Dissonance_Audio_Playback_SpeechSession__TrimExcess, (Queue_1_Dissonance_Audio_Playback_SpeechSession_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003CC980, int32_t, Queue_1_Dissonance_Audio_Playback_SpeechSession__get_Count, (Queue_1_Dissonance_Audio_Playback_SpeechSession_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C935C0, Queue_1_Dissonance_Audio_Playback_SpeechSession__get_Count__MethodInfo); DO_APP_FUNC(0x00FD3A30, void, Queue_1_System_UInt32___ctor, (Queue_1_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD8C50, void, Queue_1_System_UInt32___ctor_1, (Queue_1_System_UInt32_ * __this, IEnumerable_1_System_UInt32_ * collection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9438, Queue_1_System_UInt32___ctor_1__MethodInfo); DO_APP_FUNC(0x00FD8B20, void, Queue_1_System_UInt32___ctor_2, (Queue_1_System_UInt32_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD94A0, Queue_1_System_UInt32___ctor_2__MethodInfo); DO_APP_FUNC(0x00FD3DA0, void, Queue_1_System_UInt32__Clear, (Queue_1_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD7220, bool, Queue_1_System_UInt32__Contains, (Queue_1_System_UInt32_ * __this, uint32_t item, MethodInfo * method)); DO_APP_FUNC(0x00FD7130, uint32_t, Queue_1_System_UInt32__Dequeue, (Queue_1_System_UInt32_ * __this, MethodInfo * method)); @@ -182186,246 +200312,333 @@ DO_APP_FUNC_METHODINFO(0x03C8CBB0, Queue_1_System_UInt32__Dequeue__MethodInfo); DO_APP_FUNC(0x00FD6F10, void, Queue_1_System_UInt32__Enqueue, (Queue_1_System_UInt32_ * __this, uint32_t item, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8CBB8, Queue_1_System_UInt32__Enqueue__MethodInfo); DO_APP_FUNC(0x00FD6FD0, Queue_1_T_Enumerator_System_UInt32_, Queue_1_System_UInt32__GetEnumerator, (Queue_1_System_UInt32_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FD4740, void, Queue_1_System_UInt32__MoveNext, (Queue_1_System_UInt32_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00FD4740, void, Queue_1_System_UInt32__MoveNext, (Queue_1_System_UInt32_ * __this, int32_t * index, MethodInfo * method)); DO_APP_FUNC(0x00FD71D0, uint32_t, Queue_1_System_UInt32__Peek, (Queue_1_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD4600, void, Queue_1_System_UInt32__SetCapacity, (Queue_1_System_UInt32_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x00FD7060, IEnumerator_1_System_UInt32_ *, Queue_1_System_UInt32__System_Collections_Generic_IEnumerable_T__GetEnumerator, (Queue_1_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD8E10, void, Queue_1_System_UInt32__System_Collections_ICollection_CopyTo, (Queue_1_System_UInt32_ * __this, Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9430, Queue_1_System_UInt32__System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, Queue_1_System_UInt32__System_Collections_ICollection_get_IsSynchronized, (Queue_1_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD8D60, Object *, Queue_1_System_UInt32__System_Collections_ICollection_get_SyncRoot, (Queue_1_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD7060, IEnumerator *, Queue_1_System_UInt32__System_Collections_IEnumerable_GetEnumerator, (Queue_1_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD9190, void, Queue_1_System_UInt32__ThrowForEmptyQueue, (Queue_1_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9448, Queue_1_System_UInt32__ThrowForEmptyQueue__MethodInfo); DO_APP_FUNC(0x00FD47D0, void, Queue_1_System_UInt32__TrimExcess, (Queue_1_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003CC980, int32_t, Queue_1_System_UInt32__get_Count, (Queue_1_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8CB50, Queue_1_System_UInt32__get_Count__MethodInfo); DO_APP_FUNC(0x00FD3A30, void, Queue_1_UdpKit_UdpEvent___ctor, (Queue_1_UdpKit_UdpEvent_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD9320, void, Queue_1_UdpKit_UdpEvent___ctor_1, (Queue_1_UdpKit_UdpEvent_ * __this, IEnumerable_1_UdpKit_UdpEvent_ * collection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9440, Queue_1_UdpKit_UdpEvent___ctor_1__MethodInfo); DO_APP_FUNC(0x00FD91F0, void, Queue_1_UdpKit_UdpEvent___ctor_2, (Queue_1_UdpKit_UdpEvent_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9450, Queue_1_UdpKit_UdpEvent___ctor_2__MethodInfo); DO_APP_FUNC(0x00FD4B10, void, Queue_1_UdpKit_UdpEvent__Clear, (Queue_1_UdpKit_UdpEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7C90, Queue_1_UdpKit_UdpEvent__Clear__MethodInfo); DO_APP_FUNC(0x00FD9D00, bool, Queue_1_UdpKit_UdpEvent__Contains, (Queue_1_UdpKit_UdpEvent_ * __this, UdpEvent item, MethodInfo * method)); DO_APP_FUNC(0x00FD9B10, UdpEvent, Queue_1_UdpKit_UdpEvent__Dequeue, (Queue_1_UdpKit_UdpEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8538, Queue_1_UdpKit_UdpEvent__Dequeue__MethodInfo); DO_APP_FUNC(0x00FD9860, void, Queue_1_UdpKit_UdpEvent__Enqueue, (Queue_1_UdpKit_UdpEvent_ * __this, UdpEvent item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8410, Queue_1_UdpKit_UdpEvent__Enqueue__MethodInfo); DO_APP_FUNC(0x00FD9980, Queue_1_T_Enumerator_UdpKit_UdpEvent_, Queue_1_UdpKit_UdpEvent__GetEnumerator, (Queue_1_UdpKit_UdpEvent_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FD4740, void, Queue_1_UdpKit_UdpEvent__MoveNext, (Queue_1_UdpKit_UdpEvent_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00FD4740, void, Queue_1_UdpKit_UdpEvent__MoveNext, (Queue_1_UdpKit_UdpEvent_ * __this, int32_t * index, MethodInfo * method)); DO_APP_FUNC(0x00FD9C80, UdpEvent, Queue_1_UdpKit_UdpEvent__Peek, (Queue_1_UdpKit_UdpEvent_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD4600, void, Queue_1_UdpKit_UdpEvent__SetCapacity, (Queue_1_UdpKit_UdpEvent_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x00FD9A20, IEnumerator_1_UdpKit_UdpEvent_ *, Queue_1_UdpKit_UdpEvent__System_Collections_Generic_IEnumerable_T__GetEnumerator, (Queue_1_UdpKit_UdpEvent_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD94E0, void, Queue_1_UdpKit_UdpEvent__System_Collections_ICollection_CopyTo, (Queue_1_UdpKit_UdpEvent_ * __this, Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9418, Queue_1_UdpKit_UdpEvent__System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, Queue_1_UdpKit_UdpEvent__System_Collections_ICollection_get_IsSynchronized, (Queue_1_UdpKit_UdpEvent_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD9430, Object *, Queue_1_UdpKit_UdpEvent__System_Collections_ICollection_get_SyncRoot, (Queue_1_UdpKit_UdpEvent_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD9A20, IEnumerator *, Queue_1_UdpKit_UdpEvent__System_Collections_IEnumerable_GetEnumerator, (Queue_1_UdpKit_UdpEvent_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD9E80, void, Queue_1_UdpKit_UdpEvent__ThrowForEmptyQueue, (Queue_1_UdpKit_UdpEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9408, Queue_1_UdpKit_UdpEvent__ThrowForEmptyQueue__MethodInfo); DO_APP_FUNC(0x00FD47D0, void, Queue_1_UdpKit_UdpEvent__TrimExcess, (Queue_1_UdpKit_UdpEvent_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003CC980, int32_t, Queue_1_UdpKit_UdpEvent__get_Count, (Queue_1_UdpKit_UdpEvent_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8428, Queue_1_UdpKit_UdpEvent__get_Count__MethodInfo); DO_APP_FUNC(0x00FD3A30, void, Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord___ctor, (Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FDA010, void, Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord___ctor_1, (Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord_ * __this, IEnumerable_1_UnityEngine_UIElements_EventDispatcher_EventRecord_ * collection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9428, Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord___ctor_1__MethodInfo); DO_APP_FUNC(0x00FD9EE0, void, Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord___ctor_2, (Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9410, Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord___ctor_2__MethodInfo); DO_APP_FUNC(0x00FD4B10, void, Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord__Clear, (Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD44A0, bool, Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord__Contains, (Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord_ * __this, EventDispatcher_EventRecord item, MethodInfo * method)); DO_APP_FUNC(0x00FDA670, EventDispatcher_EventRecord, Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord__Dequeue, (Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2F18, Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord__Dequeue__MethodInfo); DO_APP_FUNC(0x00FDA550, void, Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord__Enqueue, (Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord_ * __this, EventDispatcher_EventRecord item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2ED8, Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord__Enqueue__MethodInfo); DO_APP_FUNC(0x00FD4200, Queue_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_EventRecord_, Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord__GetEnumerator, (Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FD4740, void, Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord__MoveNext, (Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00FD4740, void, Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord__MoveNext, (Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord_ * __this, int32_t * index, MethodInfo * method)); DO_APP_FUNC(0x00FD4430, EventDispatcher_EventRecord, Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord__Peek, (Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD4600, void, Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord__SetCapacity, (Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x00FD4290, IEnumerator_1_UnityEngine_UIElements_EventDispatcher_EventRecord_ *, Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord__System_Collections_Generic_IEnumerable_T__GetEnumerator, (Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FDA1D0, void, Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord__System_Collections_ICollection_CopyTo, (Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord_ * __this, Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9420, Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord__System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord__System_Collections_ICollection_get_IsSynchronized, (Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FDA120, Object *, Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord__System_Collections_ICollection_get_SyncRoot, (Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD4290, IEnumerator *, Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord__System_Collections_IEnumerable_GetEnumerator, (Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FDA7B0, void, Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord__ThrowForEmptyQueue, (Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD93B8, Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord__ThrowForEmptyQueue__MethodInfo); DO_APP_FUNC(0x00FD47D0, void, Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord__TrimExcess, (Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003CC980, int32_t, Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord__get_Count, (Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2F28, Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord__get_Count__MethodInfo); DO_APP_FUNC(0x00FD3A30, void, Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle___ctor, (Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5748, Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle___ctor__MethodInfo); DO_APP_FUNC(0x00FDA940, void, Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle___ctor_1, (Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle_ * __this, IEnumerable_1_Pathfinding_GraphUpdateProcessor_GUOSingle_ * collection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD93A8, Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle___ctor_1__MethodInfo); DO_APP_FUNC(0x00FDA810, void, Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle___ctor_2, (Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD93D0, Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle___ctor_2__MethodInfo); DO_APP_FUNC(0x00FD4B10, void, Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle__Clear, (Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5670, Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle__Clear__MethodInfo); DO_APP_FUNC(0x00FD9D00, bool, Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle__Contains, (Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle_ * __this, GraphUpdateProcessor_GUOSingle item, MethodInfo * method)); DO_APP_FUNC(0x00FD9B10, GraphUpdateProcessor_GUOSingle, Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle__Dequeue, (Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB56C8, Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle__Dequeue__MethodInfo); DO_APP_FUNC(0x00FD9860, void, Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle__Enqueue, (Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle_ * __this, GraphUpdateProcessor_GUOSingle item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB56F8, Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle__Enqueue__MethodInfo); DO_APP_FUNC(0x00FD9980, Queue_1_T_Enumerator_Pathfinding_GraphUpdateProcessor_GUOSingle_, Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle__GetEnumerator, (Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FD4740, void, Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle__MoveNext, (Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00FD4740, void, Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle__MoveNext, (Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle_ * __this, int32_t * index, MethodInfo * method)); DO_APP_FUNC(0x00FD9C80, GraphUpdateProcessor_GUOSingle, Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle__Peek, (Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB56A8, Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle__Peek__MethodInfo); DO_APP_FUNC(0x00FD4600, void, Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle__SetCapacity, (Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x00FD9A20, IEnumerator_1_Pathfinding_GraphUpdateProcessor_GUOSingle_ *, Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle__System_Collections_Generic_IEnumerable_T__GetEnumerator, (Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FDAB00, void, Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle__System_Collections_ICollection_CopyTo, (Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle_ * __this, Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9400, Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle__System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle__System_Collections_ICollection_get_IsSynchronized, (Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FDAA50, Object *, Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle__System_Collections_ICollection_get_SyncRoot, (Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD9A20, IEnumerator *, Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle__System_Collections_IEnumerable_GetEnumerator, (Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FDAE80, void, Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle__ThrowForEmptyQueue, (Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD93D8, Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle__ThrowForEmptyQueue__MethodInfo); DO_APP_FUNC(0x00FD47D0, void, Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle__TrimExcess, (Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003CC980, int32_t, Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle__get_Count, (Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB56A0, Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle__get_Count__MethodInfo); DO_APP_FUNC(0x00FD3A30, void, Queue_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK___ctor, (Queue_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2960, Queue_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK___ctor__MethodInfo); DO_APP_FUNC(0x00FDB010, void, Queue_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK___ctor_1, (Queue_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK_ * __this, IEnumerable_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK_ * collection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9360, Queue_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK___ctor_1__MethodInfo); DO_APP_FUNC(0x00FDAEE0, void, Queue_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK___ctor_2, (Queue_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD93E8, Queue_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK___ctor_2__MethodInfo); DO_APP_FUNC(0x00FD3DA0, void, Queue_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__Clear, (Queue_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD5B40, bool, Queue_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__Contains, (Queue_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK_ * __this, XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK item, MethodInfo * method)); DO_APP_FUNC(0x00FD5A50, XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK, Queue_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__Dequeue, (Queue_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2990, Queue_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__Dequeue__MethodInfo); DO_APP_FUNC(0x00FD5830, void, Queue_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__Enqueue, (Queue_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK_ * __this, XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2998, Queue_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__Enqueue__MethodInfo); DO_APP_FUNC(0x00FD58F0, Queue_1_T_Enumerator_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK_, Queue_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__GetEnumerator, (Queue_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FD4740, void, Queue_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__MoveNext, (Queue_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00FD4740, void, Queue_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__MoveNext, (Queue_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK_ * __this, int32_t * index, MethodInfo * method)); DO_APP_FUNC(0x00FD5AF0, XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK, Queue_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__Peek, (Queue_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD4600, void, Queue_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__SetCapacity, (Queue_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x00FD5980, IEnumerator_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK_ *, Queue_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__System_Collections_Generic_IEnumerable_T__GetEnumerator, (Queue_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FDB1D0, void, Queue_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__System_Collections_ICollection_CopyTo, (Queue_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK_ * __this, Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9358, Queue_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, Queue_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__System_Collections_ICollection_get_IsSynchronized, (Queue_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FDB120, Object *, Queue_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__System_Collections_ICollection_get_SyncRoot, (Queue_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD5980, IEnumerator *, Queue_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__System_Collections_IEnumerable_GetEnumerator, (Queue_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FDB550, void, Queue_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__ThrowForEmptyQueue, (Queue_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9390, Queue_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__ThrowForEmptyQueue__MethodInfo); DO_APP_FUNC(0x00FD47D0, void, Queue_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__TrimExcess, (Queue_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003CC980, int32_t, Queue_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__get_Count, (Queue_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2988, Queue_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__get_Count__MethodInfo); DO_APP_FUNC(0x00FDB5B0, void, FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_u0001_RKCYPkXxnBuwAjjpQcqFcoOBtZCi_System_Object___ctor, (FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_u0001_RKCYPkXxnBuwAjjpQcqFcoOBtZCi_System_Object_ * __this, int32_t param_0000a4c6, MethodInfo * method)); DO_APP_FUNC(0x00FDB630, bool, FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_u0001_RKCYPkXxnBuwAjjpQcqFcoOBtZCi_System_Object__MoveNext, (FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_u0001_RKCYPkXxnBuwAjjpQcqFcoOBtZCi_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FDB7A0, IEnumerator_1_Rewired_ControllerMap_ *, FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_u0001_RKCYPkXxnBuwAjjpQcqFcoOBtZCi_System_Object__System_Collections_Generic_IEnumerable_Rewired_ControllerMap__GetEnumerator, (FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_u0001_RKCYPkXxnBuwAjjpQcqFcoOBtZCi_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, ControllerMap *, FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_u0001_RKCYPkXxnBuwAjjpQcqFcoOBtZCi_System_Object__System_Collections_Generic_IEnumerator_Rewired_ControllerMap__get_Current, (FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_u0001_RKCYPkXxnBuwAjjpQcqFcoOBtZCi_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FDB900, IEnumerator *, FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_u0001_RKCYPkXxnBuwAjjpQcqFcoOBtZCi_System_Object__System_Collections_IEnumerable_GetEnumerator, (FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_u0001_RKCYPkXxnBuwAjjpQcqFcoOBtZCi_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FDB750, void, FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_u0001_RKCYPkXxnBuwAjjpQcqFcoOBtZCi_System_Object__System_Collections_IEnumerator_Reset, (FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_u0001_RKCYPkXxnBuwAjjpQcqFcoOBtZCi_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD92F8, FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_u0001_RKCYPkXxnBuwAjjpQcqFcoOBtZCi_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_u0001_RKCYPkXxnBuwAjjpQcqFcoOBtZCi_System_Object__System_Collections_IEnumerator_get_Current, (FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_u0001_RKCYPkXxnBuwAjjpQcqFcoOBtZCi_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_u0001_RKCYPkXxnBuwAjjpQcqFcoOBtZCi_System_Object__System_IDisposable_Dispose, (FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_u0001_RKCYPkXxnBuwAjjpQcqFcoOBtZCi_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FDBA20, void, RcSharedState_1_System_Object___ctor, (RcSharedState_1_System_Object_ * __this, Func_1_Object_ * factory, MethodInfo * method)); DO_APP_FUNC(0x00FDBB80, void, RcSharedState_1_System_Object__Dispose, (RcSharedState_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD20, bool, RcSharedState_1_System_Object__get_IsDisposed, (RcSharedState_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FDB930, Object *, RcSharedState_1_System_Object__get_SharedState, (RcSharedState_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9340, RcSharedState_1_System_Object__get_SharedState__MethodInfo); DO_APP_FUNC(0x003BCD30, void, RcSharedState_1_System_Object__set_IsDisposed, (RcSharedState_1_System_Object_ * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, ReadOnlyArrayStruct_1_System_Object___ctor, (ReadOnlyArrayStruct_1_System_Object___Boxed * __this, Object__Array * param_0000c6ff, MethodInfo * method)); -DO_APP_FUNC(0x00FDBD20, Object *, ReadOnlyArrayStruct_1_System_Object__get_Item, (ReadOnlyArrayStruct_1_System_Object___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00FDBD10, int32_t, ReadOnlyArrayStruct_1_System_Object__get_Length, (ReadOnlyArrayStruct_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FDBD50, void, ReadOnlyArray_1_UnityEngine_InputSystem_InputBinding___ctor, (ReadOnlyArray_1_UnityEngine_InputSystem_InputBinding___Boxed * __this, InputBinding__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x00FDBDC0, void, ReadOnlyArray_1_UnityEngine_InputSystem_InputBinding___ctor_1, (ReadOnlyArray_1_UnityEngine_InputSystem_InputBinding___Boxed * __this, InputBinding__Array * array, int32_t index, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x00FDC0A0, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputBinding_, ReadOnlyArray_1_UnityEngine_InputSystem_InputBinding__GetEnumerator, (ReadOnlyArray_1_UnityEngine_InputSystem_InputBinding___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FDBEC0, int32_t, ReadOnlyArray_1_UnityEngine_InputSystem_InputBinding__IndexOf, (ReadOnlyArray_1_UnityEngine_InputSystem_InputBinding___Boxed * __this, Predicate_1_UnityEngine_InputSystem_InputBinding_ * predicate, MethodInfo * method)); -DO_APP_FUNC(0x00FDC110, IEnumerator_1_UnityEngine_InputSystem_InputBinding_ *, ReadOnlyArray_1_UnityEngine_InputSystem_InputBinding__System_Collections_Generic_IEnumerable_TValue__GetEnumerator, (ReadOnlyArray_1_UnityEngine_InputSystem_InputBinding___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FDC110, IEnumerator *, ReadOnlyArray_1_UnityEngine_InputSystem_InputBinding__System_Collections_IEnumerable_GetEnumerator, (ReadOnlyArray_1_UnityEngine_InputSystem_InputBinding___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FDBE30, InputBinding__Array *, ReadOnlyArray_1_UnityEngine_InputSystem_InputBinding__ToArray, (ReadOnlyArray_1_UnityEngine_InputSystem_InputBinding___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E57F20, int32_t, ReadOnlyArray_1_UnityEngine_InputSystem_InputBinding__get_Count, (ReadOnlyArray_1_UnityEngine_InputSystem_InputBinding___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FDC2D0, InputBinding, ReadOnlyArray_1_UnityEngine_InputSystem_InputBinding__get_Item, (ReadOnlyArray_1_UnityEngine_InputSystem_InputBinding___Boxed * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, ReadOnlyArrayStruct_1_System_Object___ctor, (ReadOnlyArrayStruct_1_System_Object_ * __this, Object__Array * param_0000c6ff, MethodInfo * method)); +DO_APP_FUNC(0x00FDBD20, Object *, ReadOnlyArrayStruct_1_System_Object__get_Item, (ReadOnlyArrayStruct_1_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00FDBD10, int32_t, ReadOnlyArrayStruct_1_System_Object__get_Length, (ReadOnlyArrayStruct_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00FDBD50, void, ReadOnlyArray_1_UnityEngine_InputSystem_InputBinding___ctor, (ReadOnlyArray_1_UnityEngine_InputSystem_InputBinding_ * __this, InputBinding__Array * array, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC13B8, ReadOnlyArray_1_UnityEngine_InputSystem_InputBinding___ctor__MethodInfo); +DO_APP_FUNC(0x00FDBDC0, void, ReadOnlyArray_1_UnityEngine_InputSystem_InputBinding___ctor_1, (ReadOnlyArray_1_UnityEngine_InputSystem_InputBinding_ * __this, InputBinding__Array * array, int32_t index, int32_t length, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC1360, ReadOnlyArray_1_UnityEngine_InputSystem_InputBinding___ctor_1__MethodInfo); +DO_APP_FUNC(0x00FDC0A0, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputBinding_, ReadOnlyArray_1_UnityEngine_InputSystem_InputBinding__GetEnumerator, (ReadOnlyArray_1_UnityEngine_InputSystem_InputBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0EF8, ReadOnlyArray_1_UnityEngine_InputSystem_InputBinding__GetEnumerator__MethodInfo); +DO_APP_FUNC(0x00FDBEC0, int32_t, ReadOnlyArray_1_UnityEngine_InputSystem_InputBinding__IndexOf, (ReadOnlyArray_1_UnityEngine_InputSystem_InputBinding_ * __this, Predicate_1_UnityEngine_InputSystem_InputBinding_ * predicate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9330, ReadOnlyArray_1_UnityEngine_InputSystem_InputBinding__IndexOf__MethodInfo); +DO_APP_FUNC(0x00FDC110, IEnumerator_1_UnityEngine_InputSystem_InputBinding_ *, ReadOnlyArray_1_UnityEngine_InputSystem_InputBinding__System_Collections_Generic_IEnumerable_TValue__GetEnumerator, (ReadOnlyArray_1_UnityEngine_InputSystem_InputBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00FDC110, IEnumerator *, ReadOnlyArray_1_UnityEngine_InputSystem_InputBinding__System_Collections_IEnumerable_GetEnumerator, (ReadOnlyArray_1_UnityEngine_InputSystem_InputBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00FDBE30, InputBinding__Array *, ReadOnlyArray_1_UnityEngine_InputSystem_InputBinding__ToArray, (ReadOnlyArray_1_UnityEngine_InputSystem_InputBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC1558, ReadOnlyArray_1_UnityEngine_InputSystem_InputBinding__ToArray__MethodInfo); +DO_APP_FUNC(0x00E57F20, int32_t, ReadOnlyArray_1_UnityEngine_InputSystem_InputBinding__get_Count, (ReadOnlyArray_1_UnityEngine_InputSystem_InputBinding_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC10B8, ReadOnlyArray_1_UnityEngine_InputSystem_InputBinding__get_Count__MethodInfo); +DO_APP_FUNC(0x00FDC2D0, InputBinding, ReadOnlyArray_1_UnityEngine_InputSystem_InputBinding__get_Item, (ReadOnlyArray_1_UnityEngine_InputSystem_InputBinding_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD92B0, ReadOnlyArray_1_UnityEngine_InputSystem_InputBinding__get_Item__MethodInfo); DO_APP_FUNC(0x00FDC240, ReadOnlyArray_1_UnityEngine_InputSystem_InputBinding_, ReadOnlyArray_1_UnityEngine_InputSystem_InputBinding__op_Implicit, (InputBinding__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x00FDBD50, void, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme___ctor, (ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme___Boxed * __this, InputControlScheme__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x00FDBDC0, void, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme___ctor_1, (ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme___Boxed * __this, InputControlScheme__Array * array, int32_t index, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x00FDC0A0, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControlScheme_, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme__GetEnumerator, (ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FDC3A0, int32_t, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme__IndexOf, (ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme___Boxed * __this, Predicate_1_UnityEngine_InputSystem_InputControlScheme_ * predicate, MethodInfo * method)); -DO_APP_FUNC(0x00FDC110, IEnumerator_1_UnityEngine_InputSystem_InputControlScheme_ *, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme__System_Collections_Generic_IEnumerable_TValue__GetEnumerator, (ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FDC110, IEnumerator *, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme__System_Collections_IEnumerable_GetEnumerator, (ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FDBE30, InputControlScheme__Array *, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme__ToArray, (ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E57F20, int32_t, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme__get_Count, (ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FDC500, InputControlScheme, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme__get_Item, (ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme___Boxed * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00FDBD50, void, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme___ctor, (ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_ * __this, InputControlScheme__Array * array, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC14E0, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme___ctor__MethodInfo); +DO_APP_FUNC(0x00FDBDC0, void, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme___ctor_1, (ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_ * __this, InputControlScheme__Array * array, int32_t index, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x00FDC0A0, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControlScheme_, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme__GetEnumerator, (ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00FDC3A0, int32_t, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme__IndexOf, (ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_ * __this, Predicate_1_UnityEngine_InputSystem_InputControlScheme_ * predicate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD92C0, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme__IndexOf__MethodInfo); +DO_APP_FUNC(0x00FDC110, IEnumerator_1_UnityEngine_InputSystem_InputControlScheme_ *, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme__System_Collections_Generic_IEnumerable_TValue__GetEnumerator, (ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00FDC110, IEnumerator *, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme__System_Collections_IEnumerable_GetEnumerator, (ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00FDBE30, InputControlScheme__Array *, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme__ToArray, (ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E57F20, int32_t, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme__get_Count, (ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2910, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme__get_Count__MethodInfo); +DO_APP_FUNC(0x00FDC500, InputControlScheme, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme__get_Item, (ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9298, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme__get_Item__MethodInfo); DO_APP_FUNC(0x00FDC240, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme__op_Implicit, (InputControlScheme__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x00FDBD50, void, ReadOnlyArray_1_UnityEngine_InputSystem_Users_InputUser___ctor, (ReadOnlyArray_1_UnityEngine_InputSystem_Users_InputUser___Boxed * __this, InputUser__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x00FDBDC0, void, ReadOnlyArray_1_UnityEngine_InputSystem_Users_InputUser___ctor_1, (ReadOnlyArray_1_UnityEngine_InputSystem_Users_InputUser___Boxed * __this, InputUser__Array * array, int32_t index, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x00FDC0A0, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_Users_InputUser_, ReadOnlyArray_1_UnityEngine_InputSystem_Users_InputUser__GetEnumerator, (ReadOnlyArray_1_UnityEngine_InputSystem_Users_InputUser___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FDC5F0, int32_t, ReadOnlyArray_1_UnityEngine_InputSystem_Users_InputUser__IndexOf, (ReadOnlyArray_1_UnityEngine_InputSystem_Users_InputUser___Boxed * __this, Predicate_1_UnityEngine_InputSystem_Users_InputUser_ * predicate, MethodInfo * method)); -DO_APP_FUNC(0x00FDC110, IEnumerator_1_UnityEngine_InputSystem_Users_InputUser_ *, ReadOnlyArray_1_UnityEngine_InputSystem_Users_InputUser__System_Collections_Generic_IEnumerable_TValue__GetEnumerator, (ReadOnlyArray_1_UnityEngine_InputSystem_Users_InputUser___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FDC110, IEnumerator *, ReadOnlyArray_1_UnityEngine_InputSystem_Users_InputUser__System_Collections_IEnumerable_GetEnumerator, (ReadOnlyArray_1_UnityEngine_InputSystem_Users_InputUser___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FDBE30, InputUser__Array *, ReadOnlyArray_1_UnityEngine_InputSystem_Users_InputUser__ToArray, (ReadOnlyArray_1_UnityEngine_InputSystem_Users_InputUser___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E57F20, int32_t, ReadOnlyArray_1_UnityEngine_InputSystem_Users_InputUser__get_Count, (ReadOnlyArray_1_UnityEngine_InputSystem_Users_InputUser___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FDC720, InputUser, ReadOnlyArray_1_UnityEngine_InputSystem_Users_InputUser__get_Item, (ReadOnlyArray_1_UnityEngine_InputSystem_Users_InputUser___Boxed * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00FDBD50, void, ReadOnlyArray_1_UnityEngine_InputSystem_Users_InputUser___ctor, (ReadOnlyArray_1_UnityEngine_InputSystem_Users_InputUser_ * __this, InputUser__Array * array, MethodInfo * method)); +DO_APP_FUNC(0x00FDBDC0, void, ReadOnlyArray_1_UnityEngine_InputSystem_Users_InputUser___ctor_1, (ReadOnlyArray_1_UnityEngine_InputSystem_Users_InputUser_ * __this, InputUser__Array * array, int32_t index, int32_t length, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD800, ReadOnlyArray_1_UnityEngine_InputSystem_Users_InputUser___ctor_1__MethodInfo); +DO_APP_FUNC(0x00FDC0A0, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_Users_InputUser_, ReadOnlyArray_1_UnityEngine_InputSystem_Users_InputUser__GetEnumerator, (ReadOnlyArray_1_UnityEngine_InputSystem_Users_InputUser_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00FDC5F0, int32_t, ReadOnlyArray_1_UnityEngine_InputSystem_Users_InputUser__IndexOf, (ReadOnlyArray_1_UnityEngine_InputSystem_Users_InputUser_ * __this, Predicate_1_UnityEngine_InputSystem_Users_InputUser_ * predicate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD92A0, ReadOnlyArray_1_UnityEngine_InputSystem_Users_InputUser__IndexOf__MethodInfo); +DO_APP_FUNC(0x00FDC110, IEnumerator_1_UnityEngine_InputSystem_Users_InputUser_ *, ReadOnlyArray_1_UnityEngine_InputSystem_Users_InputUser__System_Collections_Generic_IEnumerable_TValue__GetEnumerator, (ReadOnlyArray_1_UnityEngine_InputSystem_Users_InputUser_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00FDC110, IEnumerator *, ReadOnlyArray_1_UnityEngine_InputSystem_Users_InputUser__System_Collections_IEnumerable_GetEnumerator, (ReadOnlyArray_1_UnityEngine_InputSystem_Users_InputUser_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00FDBE30, InputUser__Array *, ReadOnlyArray_1_UnityEngine_InputSystem_Users_InputUser__ToArray, (ReadOnlyArray_1_UnityEngine_InputSystem_Users_InputUser_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E57F20, int32_t, ReadOnlyArray_1_UnityEngine_InputSystem_Users_InputUser__get_Count, (ReadOnlyArray_1_UnityEngine_InputSystem_Users_InputUser_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00FDC720, InputUser, ReadOnlyArray_1_UnityEngine_InputSystem_Users_InputUser__get_Item, (ReadOnlyArray_1_UnityEngine_InputSystem_Users_InputUser_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0008, ReadOnlyArray_1_UnityEngine_InputSystem_Users_InputUser__get_Item__MethodInfo); DO_APP_FUNC(0x00FDC240, ReadOnlyArray_1_UnityEngine_InputSystem_Users_InputUser_, ReadOnlyArray_1_UnityEngine_InputSystem_Users_InputUser__op_Implicit, (InputUser__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x00FDBD50, void, ReadOnlyArray_1_InternedString___ctor, (ReadOnlyArray_1_InternedString___Boxed * __this, InternedString__Array * array, MethodInfo * method)); +DO_APP_FUNC(0x00FDBD50, void, ReadOnlyArray_1_InternedString___ctor, (ReadOnlyArray_1_InternedString_ * __this, InternedString__Array * array, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8BE78, ReadOnlyArray_1_InternedString___ctor__MethodInfo); -DO_APP_FUNC(0x00FDBDC0, void, ReadOnlyArray_1_InternedString___ctor_1, (ReadOnlyArray_1_InternedString___Boxed * __this, InternedString__Array * array, int32_t index, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x00FDC0A0, ReadOnlyArray_1_TValue_Enumerator_InternedString_, ReadOnlyArray_1_InternedString__GetEnumerator, (ReadOnlyArray_1_InternedString___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FDC7F0, int32_t, ReadOnlyArray_1_InternedString__IndexOf, (ReadOnlyArray_1_InternedString___Boxed * __this, Predicate_1_UnityEngine_InputSystem_Utilities_InternedString_ * predicate, MethodInfo * method)); -DO_APP_FUNC(0x00FDC110, IEnumerator_1_UnityEngine_InputSystem_Utilities_InternedString_ *, ReadOnlyArray_1_InternedString__System_Collections_Generic_IEnumerable_TValue__GetEnumerator, (ReadOnlyArray_1_InternedString___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FDC110, IEnumerator *, ReadOnlyArray_1_InternedString__System_Collections_IEnumerable_GetEnumerator, (ReadOnlyArray_1_InternedString___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FDBE30, InternedString__Array *, ReadOnlyArray_1_InternedString__ToArray, (ReadOnlyArray_1_InternedString___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E57F20, int32_t, ReadOnlyArray_1_InternedString__get_Count, (ReadOnlyArray_1_InternedString___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FDC950, InternedString, ReadOnlyArray_1_InternedString__get_Item, (ReadOnlyArray_1_InternedString___Boxed * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00FDBDC0, void, ReadOnlyArray_1_InternedString___ctor_1, (ReadOnlyArray_1_InternedString_ * __this, InternedString__Array * array, int32_t index, int32_t length, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7AF0, ReadOnlyArray_1_InternedString___ctor_1__MethodInfo); +DO_APP_FUNC(0x00FDC0A0, ReadOnlyArray_1_TValue_Enumerator_InternedString_, ReadOnlyArray_1_InternedString__GetEnumerator, (ReadOnlyArray_1_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB080, ReadOnlyArray_1_InternedString__GetEnumerator__MethodInfo); +DO_APP_FUNC(0x00FDC7F0, int32_t, ReadOnlyArray_1_InternedString__IndexOf, (ReadOnlyArray_1_InternedString_ * __this, Predicate_1_UnityEngine_InputSystem_Utilities_InternedString_ * predicate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD92E0, ReadOnlyArray_1_InternedString__IndexOf__MethodInfo); +DO_APP_FUNC(0x00FDC110, IEnumerator_1_UnityEngine_InputSystem_Utilities_InternedString_ *, ReadOnlyArray_1_InternedString__System_Collections_Generic_IEnumerable_TValue__GetEnumerator, (ReadOnlyArray_1_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00FDC110, IEnumerator *, ReadOnlyArray_1_InternedString__System_Collections_IEnumerable_GetEnumerator, (ReadOnlyArray_1_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00FDBE30, InternedString__Array *, ReadOnlyArray_1_InternedString__ToArray, (ReadOnlyArray_1_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E57F20, int32_t, ReadOnlyArray_1_InternedString__get_Count, (ReadOnlyArray_1_InternedString_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2580, ReadOnlyArray_1_InternedString__get_Count__MethodInfo); +DO_APP_FUNC(0x00FDC950, InternedString, ReadOnlyArray_1_InternedString__get_Item, (ReadOnlyArray_1_InternedString_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2588, ReadOnlyArray_1_InternedString__get_Item__MethodInfo); DO_APP_FUNC(0x00FDC240, ReadOnlyArray_1_InternedString_, ReadOnlyArray_1_InternedString__op_Implicit, (InternedString__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x00FDBD50, void, ReadOnlyArray_1_NameAndParameters___ctor, (ReadOnlyArray_1_NameAndParameters___Boxed * __this, NameAndParameters__Array * array, MethodInfo * method)); +DO_APP_FUNC(0x00FDBD50, void, ReadOnlyArray_1_NameAndParameters___ctor, (ReadOnlyArray_1_NameAndParameters_ * __this, NameAndParameters__Array * array, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8BD80, ReadOnlyArray_1_NameAndParameters___ctor__MethodInfo); -DO_APP_FUNC(0x00FDBDC0, void, ReadOnlyArray_1_NameAndParameters___ctor_1, (ReadOnlyArray_1_NameAndParameters___Boxed * __this, NameAndParameters__Array * array, int32_t index, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x00FDC0A0, ReadOnlyArray_1_TValue_Enumerator_NameAndParameters_, ReadOnlyArray_1_NameAndParameters__GetEnumerator, (ReadOnlyArray_1_NameAndParameters___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FDCA40, int32_t, ReadOnlyArray_1_NameAndParameters__IndexOf, (ReadOnlyArray_1_NameAndParameters___Boxed * __this, Predicate_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ * predicate, MethodInfo * method)); -DO_APP_FUNC(0x00FDC110, IEnumerator_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ *, ReadOnlyArray_1_NameAndParameters__System_Collections_Generic_IEnumerable_TValue__GetEnumerator, (ReadOnlyArray_1_NameAndParameters___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FDC110, IEnumerator *, ReadOnlyArray_1_NameAndParameters__System_Collections_IEnumerable_GetEnumerator, (ReadOnlyArray_1_NameAndParameters___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FDBE30, NameAndParameters__Array *, ReadOnlyArray_1_NameAndParameters__ToArray, (ReadOnlyArray_1_NameAndParameters___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E57F20, int32_t, ReadOnlyArray_1_NameAndParameters__get_Count, (ReadOnlyArray_1_NameAndParameters___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FDCBA0, NameAndParameters, ReadOnlyArray_1_NameAndParameters__get_Item, (ReadOnlyArray_1_NameAndParameters___Boxed * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00FDBDC0, void, ReadOnlyArray_1_NameAndParameters___ctor_1, (ReadOnlyArray_1_NameAndParameters_ * __this, NameAndParameters__Array * array, int32_t index, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x00FDC0A0, ReadOnlyArray_1_TValue_Enumerator_NameAndParameters_, ReadOnlyArray_1_NameAndParameters__GetEnumerator, (ReadOnlyArray_1_NameAndParameters_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00FDCA40, int32_t, ReadOnlyArray_1_NameAndParameters__IndexOf, (ReadOnlyArray_1_NameAndParameters_ * __this, Predicate_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ * predicate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD92F0, ReadOnlyArray_1_NameAndParameters__IndexOf__MethodInfo); +DO_APP_FUNC(0x00FDC110, IEnumerator_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ *, ReadOnlyArray_1_NameAndParameters__System_Collections_Generic_IEnumerable_TValue__GetEnumerator, (ReadOnlyArray_1_NameAndParameters_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00FDC110, IEnumerator *, ReadOnlyArray_1_NameAndParameters__System_Collections_IEnumerable_GetEnumerator, (ReadOnlyArray_1_NameAndParameters_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00FDBE30, NameAndParameters__Array *, ReadOnlyArray_1_NameAndParameters__ToArray, (ReadOnlyArray_1_NameAndParameters_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E57F20, int32_t, ReadOnlyArray_1_NameAndParameters__get_Count, (ReadOnlyArray_1_NameAndParameters_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5570, ReadOnlyArray_1_NameAndParameters__get_Count__MethodInfo); +DO_APP_FUNC(0x00FDCBA0, NameAndParameters, ReadOnlyArray_1_NameAndParameters__get_Item, (ReadOnlyArray_1_NameAndParameters_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD92D0, ReadOnlyArray_1_NameAndParameters__get_Item__MethodInfo); DO_APP_FUNC(0x00FDC240, ReadOnlyArray_1_NameAndParameters_, ReadOnlyArray_1_NameAndParameters__op_Implicit, (NameAndParameters__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x00FDBD50, void, ReadOnlyArray_1_NamedValue___ctor, (ReadOnlyArray_1_NamedValue___Boxed * __this, NamedValue__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x00FDBDC0, void, ReadOnlyArray_1_NamedValue___ctor_1, (ReadOnlyArray_1_NamedValue___Boxed * __this, NamedValue__Array * array, int32_t index, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x00FDC0A0, ReadOnlyArray_1_TValue_Enumerator_NamedValue_, ReadOnlyArray_1_NamedValue__GetEnumerator, (ReadOnlyArray_1_NamedValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FDCC90, int32_t, ReadOnlyArray_1_NamedValue__IndexOf, (ReadOnlyArray_1_NamedValue___Boxed * __this, Predicate_1_UnityEngine_InputSystem_Utilities_NamedValue_ * predicate, MethodInfo * method)); -DO_APP_FUNC(0x00FDC110, IEnumerator_1_UnityEngine_InputSystem_Utilities_NamedValue_ *, ReadOnlyArray_1_NamedValue__System_Collections_Generic_IEnumerable_TValue__GetEnumerator, (ReadOnlyArray_1_NamedValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FDC110, IEnumerator *, ReadOnlyArray_1_NamedValue__System_Collections_IEnumerable_GetEnumerator, (ReadOnlyArray_1_NamedValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FDBE30, NamedValue__Array *, ReadOnlyArray_1_NamedValue__ToArray, (ReadOnlyArray_1_NamedValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E57F20, int32_t, ReadOnlyArray_1_NamedValue__get_Count, (ReadOnlyArray_1_NamedValue___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FDCDF0, NamedValue, ReadOnlyArray_1_NamedValue__get_Item, (ReadOnlyArray_1_NamedValue___Boxed * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00FDBD50, void, ReadOnlyArray_1_NamedValue___ctor, (ReadOnlyArray_1_NamedValue_ * __this, NamedValue__Array * array, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5AB0, ReadOnlyArray_1_NamedValue___ctor__MethodInfo); +DO_APP_FUNC(0x00FDBDC0, void, ReadOnlyArray_1_NamedValue___ctor_1, (ReadOnlyArray_1_NamedValue_ * __this, NamedValue__Array * array, int32_t index, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x00FDC0A0, ReadOnlyArray_1_TValue_Enumerator_NamedValue_, ReadOnlyArray_1_NamedValue__GetEnumerator, (ReadOnlyArray_1_NamedValue_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8018, ReadOnlyArray_1_NamedValue__GetEnumerator__MethodInfo); +DO_APP_FUNC(0x00FDCC90, int32_t, ReadOnlyArray_1_NamedValue__IndexOf, (ReadOnlyArray_1_NamedValue_ * __this, Predicate_1_UnityEngine_InputSystem_Utilities_NamedValue_ * predicate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD92D8, ReadOnlyArray_1_NamedValue__IndexOf__MethodInfo); +DO_APP_FUNC(0x00FDC110, IEnumerator_1_UnityEngine_InputSystem_Utilities_NamedValue_ *, ReadOnlyArray_1_NamedValue__System_Collections_Generic_IEnumerable_TValue__GetEnumerator, (ReadOnlyArray_1_NamedValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00FDC110, IEnumerator *, ReadOnlyArray_1_NamedValue__System_Collections_IEnumerable_GetEnumerator, (ReadOnlyArray_1_NamedValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00FDBE30, NamedValue__Array *, ReadOnlyArray_1_NamedValue__ToArray, (ReadOnlyArray_1_NamedValue_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E57F20, int32_t, ReadOnlyArray_1_NamedValue__get_Count, (ReadOnlyArray_1_NamedValue_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5578, ReadOnlyArray_1_NamedValue__get_Count__MethodInfo); +DO_APP_FUNC(0x00FDCDF0, NamedValue, ReadOnlyArray_1_NamedValue__get_Item, (ReadOnlyArray_1_NamedValue_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9260, ReadOnlyArray_1_NamedValue__get_Item__MethodInfo); DO_APP_FUNC(0x00FDC240, ReadOnlyArray_1_NamedValue_, ReadOnlyArray_1_NamedValue__op_Implicit, (NamedValue__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x00FDBD50, void, ReadOnlyArray_1_System_Object___ctor, (ReadOnlyArray_1_System_Object___Boxed * __this, Object__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x00FDBDC0, void, ReadOnlyArray_1_System_Object___ctor_1, (ReadOnlyArray_1_System_Object___Boxed * __this, Object__Array * array, int32_t index, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x00FDC0A0, ReadOnlyArray_1_TValue_Enumerator_System_Object_, ReadOnlyArray_1_System_Object__GetEnumerator, (ReadOnlyArray_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FDCEE0, int32_t, ReadOnlyArray_1_System_Object__IndexOf, (ReadOnlyArray_1_System_Object___Boxed * __this, Predicate_1_Object_ * predicate, MethodInfo * method)); -DO_APP_FUNC(0x00FDC110, IEnumerator_1_System_Object_ *, ReadOnlyArray_1_System_Object__System_Collections_Generic_IEnumerable_TValue__GetEnumerator, (ReadOnlyArray_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FDC110, IEnumerator *, ReadOnlyArray_1_System_Object__System_Collections_IEnumerable_GetEnumerator, (ReadOnlyArray_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FDBE30, Object__Array *, ReadOnlyArray_1_System_Object__ToArray, (ReadOnlyArray_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E57F20, int32_t, ReadOnlyArray_1_System_Object__get_Count, (ReadOnlyArray_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FDD010, Object *, ReadOnlyArray_1_System_Object__get_Item, (ReadOnlyArray_1_System_Object___Boxed * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00FDBD50, void, ReadOnlyArray_1_System_Object___ctor, (ReadOnlyArray_1_System_Object_ * __this, Object__Array * array, MethodInfo * method)); +DO_APP_FUNC(0x00FDBDC0, void, ReadOnlyArray_1_System_Object___ctor_1, (ReadOnlyArray_1_System_Object_ * __this, Object__Array * array, int32_t index, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x00FDC0A0, ReadOnlyArray_1_TValue_Enumerator_System_Object_, ReadOnlyArray_1_System_Object__GetEnumerator, (ReadOnlyArray_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00FDCEE0, int32_t, ReadOnlyArray_1_System_Object__IndexOf, (ReadOnlyArray_1_System_Object_ * __this, Predicate_1_Object_ * predicate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9268, ReadOnlyArray_1_System_Object__IndexOf__MethodInfo); +DO_APP_FUNC(0x00FDC110, IEnumerator_1_System_Object_ *, ReadOnlyArray_1_System_Object__System_Collections_Generic_IEnumerable_TValue__GetEnumerator, (ReadOnlyArray_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00FDC110, IEnumerator *, ReadOnlyArray_1_System_Object__System_Collections_IEnumerable_GetEnumerator, (ReadOnlyArray_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00FDBE30, Object__Array *, ReadOnlyArray_1_System_Object__ToArray, (ReadOnlyArray_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E57F20, int32_t, ReadOnlyArray_1_System_Object__get_Count, (ReadOnlyArray_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00FDD010, Object *, ReadOnlyArray_1_System_Object__get_Item, (ReadOnlyArray_1_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9250, ReadOnlyArray_1_System_Object__get_Item__MethodInfo); DO_APP_FUNC(0x00FDC240, ReadOnlyArray_1_System_Object_, ReadOnlyArray_1_System_Object__op_Implicit, (Object__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x00FDBD50, void, ReadOnlyArray_1_System_Single___ctor, (ReadOnlyArray_1_System_Single___Boxed * __this, Single__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x00FDBDC0, void, ReadOnlyArray_1_System_Single___ctor_1, (ReadOnlyArray_1_System_Single___Boxed * __this, Single__Array * array, int32_t index, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x00FDC0A0, ReadOnlyArray_1_TValue_Enumerator_System_Single_, ReadOnlyArray_1_System_Single__GetEnumerator, (ReadOnlyArray_1_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FDD0E0, int32_t, ReadOnlyArray_1_System_Single__IndexOf, (ReadOnlyArray_1_System_Single___Boxed * __this, Predicate_1_Single_ * predicate, MethodInfo * method)); -DO_APP_FUNC(0x00FDC110, IEnumerator_1_System_Single_ *, ReadOnlyArray_1_System_Single__System_Collections_Generic_IEnumerable_TValue__GetEnumerator, (ReadOnlyArray_1_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FDC110, IEnumerator *, ReadOnlyArray_1_System_Single__System_Collections_IEnumerable_GetEnumerator, (ReadOnlyArray_1_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FDBE30, Single__Array *, ReadOnlyArray_1_System_Single__ToArray, (ReadOnlyArray_1_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E57F20, int32_t, ReadOnlyArray_1_System_Single__get_Count, (ReadOnlyArray_1_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FDD220, float, ReadOnlyArray_1_System_Single__get_Item, (ReadOnlyArray_1_System_Single___Boxed * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00FDBD50, void, ReadOnlyArray_1_System_Single___ctor, (ReadOnlyArray_1_System_Single_ * __this, Single__Array * array, MethodInfo * method)); +DO_APP_FUNC(0x00FDBDC0, void, ReadOnlyArray_1_System_Single___ctor_1, (ReadOnlyArray_1_System_Single_ * __this, Single__Array * array, int32_t index, int32_t length, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0D98, ReadOnlyArray_1_System_Single___ctor_1__MethodInfo); +DO_APP_FUNC(0x00FDC0A0, ReadOnlyArray_1_TValue_Enumerator_System_Single_, ReadOnlyArray_1_System_Single__GetEnumerator, (ReadOnlyArray_1_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00FDD0E0, int32_t, ReadOnlyArray_1_System_Single__IndexOf, (ReadOnlyArray_1_System_Single_ * __this, Predicate_1_Single_ * predicate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9258, ReadOnlyArray_1_System_Single__IndexOf__MethodInfo); +DO_APP_FUNC(0x00FDC110, IEnumerator_1_System_Single_ *, ReadOnlyArray_1_System_Single__System_Collections_Generic_IEnumerable_TValue__GetEnumerator, (ReadOnlyArray_1_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00FDC110, IEnumerator *, ReadOnlyArray_1_System_Single__System_Collections_IEnumerable_GetEnumerator, (ReadOnlyArray_1_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00FDBE30, Single__Array *, ReadOnlyArray_1_System_Single__ToArray, (ReadOnlyArray_1_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E57F20, int32_t, ReadOnlyArray_1_System_Single__get_Count, (ReadOnlyArray_1_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00FDD220, float, ReadOnlyArray_1_System_Single__get_Item, (ReadOnlyArray_1_System_Single_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9288, ReadOnlyArray_1_System_Single__get_Item__MethodInfo); DO_APP_FUNC(0x00FDC240, ReadOnlyArray_1_System_Single_, ReadOnlyArray_1_System_Single__op_Implicit, (Single__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x00FDBD50, void, ReadOnlyArray_1_UnityEngine_InputSystem_EnhancedTouch_Touch___ctor, (ReadOnlyArray_1_UnityEngine_InputSystem_EnhancedTouch_Touch___Boxed * __this, Touch_1__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x00FDBDC0, void, ReadOnlyArray_1_UnityEngine_InputSystem_EnhancedTouch_Touch___ctor_1, (ReadOnlyArray_1_UnityEngine_InputSystem_EnhancedTouch_Touch___Boxed * __this, Touch_1__Array * array, int32_t index, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x00FDC0A0, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_EnhancedTouch_Touch_, ReadOnlyArray_1_UnityEngine_InputSystem_EnhancedTouch_Touch__GetEnumerator, (ReadOnlyArray_1_UnityEngine_InputSystem_EnhancedTouch_Touch___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00FDBD50, void, ReadOnlyArray_1_UnityEngine_InputSystem_EnhancedTouch_Touch___ctor, (ReadOnlyArray_1_UnityEngine_InputSystem_EnhancedTouch_Touch_ * __this, Touch_1__Array * array, MethodInfo * method)); +DO_APP_FUNC(0x00FDBDC0, void, ReadOnlyArray_1_UnityEngine_InputSystem_EnhancedTouch_Touch___ctor_1, (ReadOnlyArray_1_UnityEngine_InputSystem_EnhancedTouch_Touch_ * __this, Touch_1__Array * array, int32_t index, int32_t length, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD15A8, ReadOnlyArray_1_UnityEngine_InputSystem_EnhancedTouch_Touch___ctor_1__MethodInfo); +DO_APP_FUNC(0x00FDC0A0, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_EnhancedTouch_Touch_, ReadOnlyArray_1_UnityEngine_InputSystem_EnhancedTouch_Touch__GetEnumerator, (ReadOnlyArray_1_UnityEngine_InputSystem_EnhancedTouch_Touch_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C95C28, ReadOnlyArray_1_UnityEngine_InputSystem_EnhancedTouch_Touch__GetEnumerator__MethodInfo); -DO_APP_FUNC(0x00FDD2F0, int32_t, ReadOnlyArray_1_UnityEngine_InputSystem_EnhancedTouch_Touch__IndexOf, (ReadOnlyArray_1_UnityEngine_InputSystem_EnhancedTouch_Touch___Boxed * __this, Predicate_1_UnityEngine_InputSystem_EnhancedTouch_Touch_ * predicate, MethodInfo * method)); -DO_APP_FUNC(0x00FDC110, IEnumerator_1_UnityEngine_InputSystem_EnhancedTouch_Touch_ *, ReadOnlyArray_1_UnityEngine_InputSystem_EnhancedTouch_Touch__System_Collections_Generic_IEnumerable_TValue__GetEnumerator, (ReadOnlyArray_1_UnityEngine_InputSystem_EnhancedTouch_Touch___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FDC110, IEnumerator *, ReadOnlyArray_1_UnityEngine_InputSystem_EnhancedTouch_Touch__System_Collections_IEnumerable_GetEnumerator, (ReadOnlyArray_1_UnityEngine_InputSystem_EnhancedTouch_Touch___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FDBE30, Touch_1__Array *, ReadOnlyArray_1_UnityEngine_InputSystem_EnhancedTouch_Touch__ToArray, (ReadOnlyArray_1_UnityEngine_InputSystem_EnhancedTouch_Touch___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E57F20, int32_t, ReadOnlyArray_1_UnityEngine_InputSystem_EnhancedTouch_Touch__get_Count, (ReadOnlyArray_1_UnityEngine_InputSystem_EnhancedTouch_Touch___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00FDD2F0, int32_t, ReadOnlyArray_1_UnityEngine_InputSystem_EnhancedTouch_Touch__IndexOf, (ReadOnlyArray_1_UnityEngine_InputSystem_EnhancedTouch_Touch_ * __this, Predicate_1_UnityEngine_InputSystem_EnhancedTouch_Touch_ * predicate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9290, ReadOnlyArray_1_UnityEngine_InputSystem_EnhancedTouch_Touch__IndexOf__MethodInfo); +DO_APP_FUNC(0x00FDC110, IEnumerator_1_UnityEngine_InputSystem_EnhancedTouch_Touch_ *, ReadOnlyArray_1_UnityEngine_InputSystem_EnhancedTouch_Touch__System_Collections_Generic_IEnumerable_TValue__GetEnumerator, (ReadOnlyArray_1_UnityEngine_InputSystem_EnhancedTouch_Touch_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00FDC110, IEnumerator *, ReadOnlyArray_1_UnityEngine_InputSystem_EnhancedTouch_Touch__System_Collections_IEnumerable_GetEnumerator, (ReadOnlyArray_1_UnityEngine_InputSystem_EnhancedTouch_Touch_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00FDBE30, Touch_1__Array *, ReadOnlyArray_1_UnityEngine_InputSystem_EnhancedTouch_Touch__ToArray, (ReadOnlyArray_1_UnityEngine_InputSystem_EnhancedTouch_Touch_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E57F20, int32_t, ReadOnlyArray_1_UnityEngine_InputSystem_EnhancedTouch_Touch__get_Count, (ReadOnlyArray_1_UnityEngine_InputSystem_EnhancedTouch_Touch_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C95C30, ReadOnlyArray_1_UnityEngine_InputSystem_EnhancedTouch_Touch__get_Count__MethodInfo); -DO_APP_FUNC(0x00FDD450, Touch_1, ReadOnlyArray_1_UnityEngine_InputSystem_EnhancedTouch_Touch__get_Item, (ReadOnlyArray_1_UnityEngine_InputSystem_EnhancedTouch_Touch___Boxed * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00FDD450, Touch_1, ReadOnlyArray_1_UnityEngine_InputSystem_EnhancedTouch_Touch__get_Item, (ReadOnlyArray_1_UnityEngine_InputSystem_EnhancedTouch_Touch_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9270, ReadOnlyArray_1_UnityEngine_InputSystem_EnhancedTouch_Touch__get_Item__MethodInfo); DO_APP_FUNC(0x00FDC240, ReadOnlyArray_1_UnityEngine_InputSystem_EnhancedTouch_Touch_, ReadOnlyArray_1_UnityEngine_InputSystem_EnhancedTouch_Touch__op_Implicit, (Touch_1__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x00FDBD50, void, ReadOnlyArray_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage___ctor, (ReadOnlyArray_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage___Boxed * __this, HIDSupport_HIDPageUsage__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x00FDBDC0, void, ReadOnlyArray_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage___ctor_1, (ReadOnlyArray_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage___Boxed * __this, HIDSupport_HIDPageUsage__Array * array, int32_t index, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x00FDC0A0, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage_, ReadOnlyArray_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage__GetEnumerator, (ReadOnlyArray_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FDD540, int32_t, ReadOnlyArray_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage__IndexOf, (ReadOnlyArray_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage___Boxed * __this, Predicate_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage_ * predicate, MethodInfo * method)); -DO_APP_FUNC(0x00FDC110, IEnumerator_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage_ *, ReadOnlyArray_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage__System_Collections_Generic_IEnumerable_TValue__GetEnumerator, (ReadOnlyArray_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FDC110, IEnumerator *, ReadOnlyArray_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage__System_Collections_IEnumerable_GetEnumerator, (ReadOnlyArray_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FDBE30, HIDSupport_HIDPageUsage__Array *, ReadOnlyArray_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage__ToArray, (ReadOnlyArray_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E57F20, int32_t, ReadOnlyArray_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage__get_Count, (ReadOnlyArray_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FDD670, HIDSupport_HIDPageUsage, ReadOnlyArray_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage__get_Item, (ReadOnlyArray_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage___Boxed * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00FDBD50, void, ReadOnlyArray_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage___ctor, (ReadOnlyArray_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage_ * __this, HIDSupport_HIDPageUsage__Array * array, MethodInfo * method)); +DO_APP_FUNC(0x00FDBDC0, void, ReadOnlyArray_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage___ctor_1, (ReadOnlyArray_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage_ * __this, HIDSupport_HIDPageUsage__Array * array, int32_t index, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x00FDC0A0, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage_, ReadOnlyArray_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage__GetEnumerator, (ReadOnlyArray_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00FDD540, int32_t, ReadOnlyArray_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage__IndexOf, (ReadOnlyArray_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage_ * __this, Predicate_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage_ * predicate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9278, ReadOnlyArray_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage__IndexOf__MethodInfo); +DO_APP_FUNC(0x00FDC110, IEnumerator_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage_ *, ReadOnlyArray_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage__System_Collections_Generic_IEnumerable_TValue__GetEnumerator, (ReadOnlyArray_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00FDC110, IEnumerator *, ReadOnlyArray_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage__System_Collections_IEnumerable_GetEnumerator, (ReadOnlyArray_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00FDBE30, HIDSupport_HIDPageUsage__Array *, ReadOnlyArray_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage__ToArray, (ReadOnlyArray_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1688, ReadOnlyArray_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage__ToArray__MethodInfo); +DO_APP_FUNC(0x00E57F20, int32_t, ReadOnlyArray_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage__get_Count, (ReadOnlyArray_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00FDD670, HIDSupport_HIDPageUsage, ReadOnlyArray_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage__get_Item, (ReadOnlyArray_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9218, ReadOnlyArray_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage__get_Item__MethodInfo); DO_APP_FUNC(0x00FDC240, ReadOnlyArray_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage_, ReadOnlyArray_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage__op_Implicit, (HIDSupport_HIDPageUsage__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x00FDBD50, void, ReadOnlyArray_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___ctor, (ReadOnlyArray_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, InputControlLayout_ControlItem__Array * array, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1678, ReadOnlyArray_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage__op_Implicit__MethodInfo); +DO_APP_FUNC(0x00FDBD50, void, ReadOnlyArray_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___ctor, (ReadOnlyArray_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, InputControlLayout_ControlItem__Array * array, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8BE58, ReadOnlyArray_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___ctor__MethodInfo); -DO_APP_FUNC(0x00FDBDC0, void, ReadOnlyArray_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___ctor_1, (ReadOnlyArray_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, InputControlLayout_ControlItem__Array * array, int32_t index, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x00FDBDC0, void, ReadOnlyArray_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___ctor_1, (ReadOnlyArray_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, InputControlLayout_ControlItem__Array * array, int32_t index, int32_t length, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8BC50, ReadOnlyArray_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___ctor_1__MethodInfo); -DO_APP_FUNC(0x00FDC0A0, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_, ReadOnlyArray_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__GetEnumerator, (ReadOnlyArray_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FDD740, int32_t, ReadOnlyArray_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__IndexOf, (ReadOnlyArray_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, Predicate_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * predicate, MethodInfo * method)); -DO_APP_FUNC(0x00FDC110, IEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ *, ReadOnlyArray_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__System_Collections_Generic_IEnumerable_TValue__GetEnumerator, (ReadOnlyArray_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FDC110, IEnumerator *, ReadOnlyArray_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__System_Collections_IEnumerable_GetEnumerator, (ReadOnlyArray_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FDBE30, InputControlLayout_ControlItem__Array *, ReadOnlyArray_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__ToArray, (ReadOnlyArray_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E57F20, int32_t, ReadOnlyArray_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__get_Count, (ReadOnlyArray_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FDD910, InputControlLayout_ControlItem, ReadOnlyArray_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__get_Item, (ReadOnlyArray_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00FDC0A0, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_, ReadOnlyArray_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__GetEnumerator, (ReadOnlyArray_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00FDD740, int32_t, ReadOnlyArray_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__IndexOf, (ReadOnlyArray_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, Predicate_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * predicate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9220, ReadOnlyArray_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__IndexOf__MethodInfo); +DO_APP_FUNC(0x00FDC110, IEnumerator_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ *, ReadOnlyArray_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__System_Collections_Generic_IEnumerable_TValue__GetEnumerator, (ReadOnlyArray_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00FDC110, IEnumerator *, ReadOnlyArray_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__System_Collections_IEnumerable_GetEnumerator, (ReadOnlyArray_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00FDBE30, InputControlLayout_ControlItem__Array *, ReadOnlyArray_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__ToArray, (ReadOnlyArray_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E57F20, int32_t, ReadOnlyArray_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__get_Count, (ReadOnlyArray_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC74D8, ReadOnlyArray_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__get_Count__MethodInfo); +DO_APP_FUNC(0x00FDD910, InputControlLayout_ControlItem, ReadOnlyArray_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__get_Item, (ReadOnlyArray_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9200, ReadOnlyArray_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__get_Item__MethodInfo); DO_APP_FUNC(0x00FDC240, ReadOnlyArray_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_, ReadOnlyArray_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__op_Implicit, (InputControlLayout_ControlItem__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x00FDBD50, void, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement___ctor, (ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement___Boxed * __this, InputControlScheme_DeviceRequirement__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x00FDBDC0, void, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement___ctor_1, (ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement___Boxed * __this, InputControlScheme_DeviceRequirement__Array * array, int32_t index, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x00FDC0A0, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement_, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement__GetEnumerator, (ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FDD9E0, int32_t, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement__IndexOf, (ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement___Boxed * __this, Predicate_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement_ * predicate, MethodInfo * method)); -DO_APP_FUNC(0x00FDC110, IEnumerator_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement_ *, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement__System_Collections_Generic_IEnumerable_TValue__GetEnumerator, (ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FDC110, IEnumerator *, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement__System_Collections_IEnumerable_GetEnumerator, (ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FDBE30, InputControlScheme_DeviceRequirement__Array *, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement__ToArray, (ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E57F20, int32_t, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement__get_Count, (ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FDDB40, InputControlScheme_DeviceRequirement, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement__get_Item, (ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement___Boxed * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00FDBD50, void, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement___ctor, (ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement_ * __this, InputControlScheme_DeviceRequirement__Array * array, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7F60, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement___ctor__MethodInfo); +DO_APP_FUNC(0x00FDBDC0, void, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement___ctor_1, (ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement_ * __this, InputControlScheme_DeviceRequirement__Array * array, int32_t index, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x00FDC0A0, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement_, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement__GetEnumerator, (ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0DC0, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement__GetEnumerator__MethodInfo); +DO_APP_FUNC(0x00FDD9E0, int32_t, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement__IndexOf, (ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement_ * __this, Predicate_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement_ * predicate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9210, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement__IndexOf__MethodInfo); +DO_APP_FUNC(0x00FDC110, IEnumerator_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement_ *, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement__System_Collections_Generic_IEnumerable_TValue__GetEnumerator, (ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00FDC110, IEnumerator *, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement__System_Collections_IEnumerable_GetEnumerator, (ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00FDBE30, InputControlScheme_DeviceRequirement__Array *, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement__ToArray, (ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E57F20, int32_t, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement__get_Count, (ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD690, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement__get_Count__MethodInfo); +DO_APP_FUNC(0x00FDDB40, InputControlScheme_DeviceRequirement, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement__get_Item, (ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9240, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement__get_Item__MethodInfo); DO_APP_FUNC(0x00FDC240, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement_, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement__op_Implicit, (InputControlScheme_DeviceRequirement__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x00FDBD50, void, ReadOnlyArray_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo___ctor, (ReadOnlyArray_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo___Boxed * __this, InputEventTrace_DeviceInfo__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x00FDBDC0, void, ReadOnlyArray_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo___ctor_1, (ReadOnlyArray_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo___Boxed * __this, InputEventTrace_DeviceInfo__Array * array, int32_t index, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x00FDC0A0, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo_, ReadOnlyArray_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo__GetEnumerator, (ReadOnlyArray_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FDDC30, int32_t, ReadOnlyArray_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo__IndexOf, (ReadOnlyArray_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo___Boxed * __this, Predicate_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo_ * predicate, MethodInfo * method)); -DO_APP_FUNC(0x00FDC110, IEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo_ *, ReadOnlyArray_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo__System_Collections_Generic_IEnumerable_TValue__GetEnumerator, (ReadOnlyArray_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FDC110, IEnumerator *, ReadOnlyArray_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo__System_Collections_IEnumerable_GetEnumerator, (ReadOnlyArray_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FDBE30, InputEventTrace_DeviceInfo__Array *, ReadOnlyArray_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo__ToArray, (ReadOnlyArray_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E57F20, int32_t, ReadOnlyArray_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo__get_Count, (ReadOnlyArray_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FDDDA0, InputEventTrace_DeviceInfo, ReadOnlyArray_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo__get_Item, (ReadOnlyArray_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo___Boxed * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00FDBD50, void, ReadOnlyArray_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo___ctor, (ReadOnlyArray_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo_ * __this, InputEventTrace_DeviceInfo__Array * array, MethodInfo * method)); +DO_APP_FUNC(0x00FDBDC0, void, ReadOnlyArray_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo___ctor_1, (ReadOnlyArray_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo_ * __this, InputEventTrace_DeviceInfo__Array * array, int32_t index, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x00FDC0A0, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo_, ReadOnlyArray_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo__GetEnumerator, (ReadOnlyArray_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00FDDC30, int32_t, ReadOnlyArray_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo__IndexOf, (ReadOnlyArray_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo_ * __this, Predicate_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo_ * predicate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9248, ReadOnlyArray_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo__IndexOf__MethodInfo); +DO_APP_FUNC(0x00FDC110, IEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo_ *, ReadOnlyArray_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo__System_Collections_Generic_IEnumerable_TValue__GetEnumerator, (ReadOnlyArray_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00FDC110, IEnumerator *, ReadOnlyArray_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo__System_Collections_IEnumerable_GetEnumerator, (ReadOnlyArray_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00FDBE30, InputEventTrace_DeviceInfo__Array *, ReadOnlyArray_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo__ToArray, (ReadOnlyArray_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E57F20, int32_t, ReadOnlyArray_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo__get_Count, (ReadOnlyArray_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00FDDDA0, InputEventTrace_DeviceInfo, ReadOnlyArray_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo__get_Item, (ReadOnlyArray_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9228, ReadOnlyArray_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo__get_Item__MethodInfo); DO_APP_FUNC(0x00FDC240, ReadOnlyArray_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo_, ReadOnlyArray_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo__op_Implicit, (InputEventTrace_DeviceInfo__Array * array, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1028, ReadOnlyArray_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo__op_Implicit__MethodInfo); DO_APP_FUNC(0x00FD3A30, void, ReadOnlyCollectionBuilder_1_System_Object___ctor, (ReadOnlyCollectionBuilder_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FDE2B0, void, ReadOnlyCollectionBuilder_1_System_Object__Add, (ReadOnlyCollectionBuilder_1_System_Object_ * __this, Object * item, MethodInfo * method)); DO_APP_FUNC(0x00FDE320, void, ReadOnlyCollectionBuilder_1_System_Object__Clear, (ReadOnlyCollectionBuilder_1_System_Object_ * __this, MethodInfo * method)); @@ -182435,30 +200648,39 @@ DO_APP_FUNC(0x00FDF000, void, ReadOnlyCollectionBuilder_1_System_Object__EnsureC DO_APP_FUNC(0x00FDE4F0, IEnumerator_1_System_Object_ *, ReadOnlyCollectionBuilder_1_System_Object__GetEnumerator, (ReadOnlyCollectionBuilder_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FDDFA0, int32_t, ReadOnlyCollectionBuilder_1_System_Object__IndexOf, (ReadOnlyCollectionBuilder_1_System_Object_ * __this, Object * item, MethodInfo * method)); DO_APP_FUNC(0x00FDDFE0, void, ReadOnlyCollectionBuilder_1_System_Object__Insert, (ReadOnlyCollectionBuilder_1_System_Object_ * __this, int32_t index, Object * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD91E0, ReadOnlyCollectionBuilder_1_System_Object__Insert__MethodInfo); DO_APP_FUNC(0x00FDF060, bool, ReadOnlyCollectionBuilder_1_System_Object__IsCompatibleObject, (Object * value, MethodInfo * method)); DO_APP_FUNC(0x00FDE480, bool, ReadOnlyCollectionBuilder_1_System_Object__Remove, (ReadOnlyCollectionBuilder_1_System_Object_ * __this, Object * item, MethodInfo * method)); DO_APP_FUNC(0x00FDE0E0, void, ReadOnlyCollectionBuilder_1_System_Object__RemoveAt, (ReadOnlyCollectionBuilder_1_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD91E8, ReadOnlyCollectionBuilder_1_System_Object__RemoveAt__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, ReadOnlyCollectionBuilder_1_System_Object__System_Collections_Generic_ICollection_T__get_IsReadOnly, (ReadOnlyCollectionBuilder_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FDED60, void, ReadOnlyCollectionBuilder_1_System_Object__System_Collections_ICollection_CopyTo, (ReadOnlyCollectionBuilder_1_System_Object_ * __this, Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD91B0, ReadOnlyCollectionBuilder_1_System_Object__System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, ReadOnlyCollectionBuilder_1_System_Object__System_Collections_ICollection_get_IsSynchronized, (ReadOnlyCollectionBuilder_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00A1B820, Object *, ReadOnlyCollectionBuilder_1_System_Object__System_Collections_ICollection_get_SyncRoot, (ReadOnlyCollectionBuilder_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FA1930, IEnumerator *, ReadOnlyCollectionBuilder_1_System_Object__System_Collections_IEnumerable_GetEnumerator, (ReadOnlyCollectionBuilder_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FDE570, int32_t, ReadOnlyCollectionBuilder_1_System_Object__System_Collections_IList_Add, (ReadOnlyCollectionBuilder_1_System_Object_ * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD91F8, ReadOnlyCollectionBuilder_1_System_Object__System_Collections_IList_Add__MethodInfo); DO_APP_FUNC(0x00FDE730, bool, ReadOnlyCollectionBuilder_1_System_Object__System_Collections_IList_Contains, (ReadOnlyCollectionBuilder_1_System_Object_ * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x00FDE830, int32_t, ReadOnlyCollectionBuilder_1_System_Object__System_Collections_IList_IndexOf, (ReadOnlyCollectionBuilder_1_System_Object_ * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x00FDE930, void, ReadOnlyCollectionBuilder_1_System_Object__System_Collections_IList_Insert, (ReadOnlyCollectionBuilder_1_System_Object_ * __this, int32_t index, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9198, ReadOnlyCollectionBuilder_1_System_Object__System_Collections_IList_Insert__MethodInfo); DO_APP_FUNC(0x00FDEAC0, void, ReadOnlyCollectionBuilder_1_System_Object__System_Collections_IList_Remove, (ReadOnlyCollectionBuilder_1_System_Object_ * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, ReadOnlyCollectionBuilder_1_System_Object__System_Collections_IList_get_IsFixedSize, (ReadOnlyCollectionBuilder_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, ReadOnlyCollectionBuilder_1_System_Object__System_Collections_IList_get_IsReadOnly, (ReadOnlyCollectionBuilder_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FDEBA0, Object *, ReadOnlyCollectionBuilder_1_System_Object__System_Collections_IList_get_Item, (ReadOnlyCollectionBuilder_1_System_Object_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x00FDEBD0, void, ReadOnlyCollectionBuilder_1_System_Object__System_Collections_IList_set_Item, (ReadOnlyCollectionBuilder_1_System_Object_ * __this, int32_t index, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD91C0, ReadOnlyCollectionBuilder_1_System_Object__System_Collections_IList_set_Item__MethodInfo); DO_APP_FUNC(0x00FDEE40, Object__Array *, ReadOnlyCollectionBuilder_1_System_Object__ToArray, (ReadOnlyCollectionBuilder_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FDEEB0, ReadOnlyCollection_1_System_Object_ *, ReadOnlyCollectionBuilder_1_System_Object__ToReadOnlyCollection, (ReadOnlyCollectionBuilder_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00A8C430, void, ReadOnlyCollectionBuilder_1_System_Object__ValidateNullValue, (Object * value, String * argument, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, ReadOnlyCollectionBuilder_1_System_Object__get_Count, (ReadOnlyCollectionBuilder_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FDE1A0, Object *, ReadOnlyCollectionBuilder_1_System_Object__get_Item, (ReadOnlyCollectionBuilder_1_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD91D0, ReadOnlyCollectionBuilder_1_System_Object__get_Item__MethodInfo); DO_APP_FUNC(0x00FDDE90, void, ReadOnlyCollectionBuilder_1_System_Object__set_Capacity, (ReadOnlyCollectionBuilder_1_System_Object_ * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9238, ReadOnlyCollectionBuilder_1_System_Object__set_Capacity__MethodInfo); DO_APP_FUNC(0x00FDE230, void, ReadOnlyCollectionBuilder_1_System_Object__set_Item, (ReadOnlyCollectionBuilder_1_System_Object_ * __this, int32_t index, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD91D8, ReadOnlyCollectionBuilder_1_System_Object__set_Item__MethodInfo); DO_APP_FUNC(0x00FDF0C0, void, ReadOnlyCollection_1_System_ArraySegment_1___ctor, (ReadOnlyCollection_1_System_ArraySegment_1_ * __this, IList_1_System_ArraySegment_1_ * list, MethodInfo * method)); DO_APP_FUNC(0x00FDF250, bool, ReadOnlyCollection_1_System_ArraySegment_1__Contains, (ReadOnlyCollection_1_System_ArraySegment_1_ * __this, ArraySegment_1_Byte_ value, MethodInfo * method)); DO_APP_FUNC(0x00FDF320, void, ReadOnlyCollection_1_System_ArraySegment_1__CopyTo, (ReadOnlyCollection_1_System_ArraySegment_1_ * __this, ArraySegment_1_Byte___Array * array, int32_t index, MethodInfo * method)); @@ -184028,6 +202250,7 @@ DO_APP_FUNC(0x00FDF130, int32_t, ReadOnlyCollection_1_System_Reflection_CustomAt DO_APP_FUNC(0x00FF4410, CustomAttributeNamedArgument, ReadOnlyCollection_1_System_Reflection_CustomAttributeNamedArgument__get_Item, (ReadOnlyCollection_1_System_Reflection_CustomAttributeNamedArgument_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, IList_1_System_Reflection_CustomAttributeNamedArgument_ *, ReadOnlyCollection_1_System_Reflection_CustomAttributeNamedArgument__get_Items, (ReadOnlyCollection_1_System_Reflection_CustomAttributeNamedArgument_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FDF0C0, void, ReadOnlyCollection_1_System_Reflection_CustomAttributeTypedArgument___ctor, (ReadOnlyCollection_1_System_Reflection_CustomAttributeTypedArgument_ * __this, IList_1_System_Reflection_CustomAttributeTypedArgument_ * list, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC978, ReadOnlyCollection_1_System_Reflection_CustomAttributeTypedArgument___ctor__MethodInfo); DO_APP_FUNC(0x00FDF250, bool, ReadOnlyCollection_1_System_Reflection_CustomAttributeTypedArgument__Contains, (ReadOnlyCollection_1_System_Reflection_CustomAttributeTypedArgument_ * __this, CustomAttributeTypedArgument value, MethodInfo * method)); DO_APP_FUNC(0x00FDF320, void, ReadOnlyCollection_1_System_Reflection_CustomAttributeTypedArgument__CopyTo, (ReadOnlyCollection_1_System_Reflection_CustomAttributeTypedArgument_ * __this, CustomAttributeTypedArgument__Array * array, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x00FDF390, IEnumerator_1_System_Reflection_CustomAttributeTypedArgument_ *, ReadOnlyCollection_1_System_Reflection_CustomAttributeTypedArgument__GetEnumerator, (ReadOnlyCollection_1_System_Reflection_CustomAttributeTypedArgument_ * __this, MethodInfo * method)); @@ -184508,6 +202731,7 @@ DO_APP_FUNC(0x00FDF130, int32_t, ReadOnlyCollection_1_System_Guid__get_Count, (R DO_APP_FUNC(0x00FDF180, Guid, ReadOnlyCollection_1_System_Guid__get_Item, (ReadOnlyCollection_1_System_Guid_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, IList_1_System_Guid_ *, ReadOnlyCollection_1_System_Guid__get_Items, (ReadOnlyCollection_1_System_Guid_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FDF0C0, void, ReadOnlyCollection_1_Rewired_InputActionSourceData___ctor, (ReadOnlyCollection_1_Rewired_InputActionSourceData_ * __this, IList_1_Rewired_InputActionSourceData_ * list, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC3C48, ReadOnlyCollection_1_Rewired_InputActionSourceData___ctor__MethodInfo); DO_APP_FUNC(0x00FE1050, bool, ReadOnlyCollection_1_Rewired_InputActionSourceData__Contains, (ReadOnlyCollection_1_Rewired_InputActionSourceData_ * __this, InputActionSourceData value, MethodInfo * method)); DO_APP_FUNC(0x00FDF320, void, ReadOnlyCollection_1_Rewired_InputActionSourceData__CopyTo, (ReadOnlyCollection_1_Rewired_InputActionSourceData_ * __this, InputActionSourceData__Array * array, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x00FDF390, IEnumerator_1_Rewired_InputActionSourceData_ *, ReadOnlyCollection_1_Rewired_InputActionSourceData__GetEnumerator, (ReadOnlyCollection_1_Rewired_InputActionSourceData_ * __this, MethodInfo * method)); @@ -184732,6 +202956,7 @@ DO_APP_FUNC(0x00FDF130, int32_t, ReadOnlyCollection_1_Pathfinding_Int3__get_Coun DO_APP_FUNC(0x00FFD1E0, Int3, ReadOnlyCollection_1_Pathfinding_Int3__get_Item, (ReadOnlyCollection_1_Pathfinding_Int3_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, IList_1_Pathfinding_Int3_ *, ReadOnlyCollection_1_Pathfinding_Int3__get_Items, (ReadOnlyCollection_1_Pathfinding_Int3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FDF0C0, void, ReadOnlyCollection_1_System_Int32___ctor, (ReadOnlyCollection_1_System_Int32_ * __this, IList_1_System_Int32_ * list, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA410, ReadOnlyCollection_1_System_Int32___ctor__MethodInfo); DO_APP_FUNC(0x00FFD810, bool, ReadOnlyCollection_1_System_Int32__Contains, (ReadOnlyCollection_1_System_Int32_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x00FDF320, void, ReadOnlyCollection_1_System_Int32__CopyTo, (ReadOnlyCollection_1_System_Int32_ * __this, Int32__Array * array, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x00FDF390, IEnumerator_1_System_Int32_ *, ReadOnlyCollection_1_System_Int32__GetEnumerator, (ReadOnlyCollection_1_System_Int32_ * __this, MethodInfo * method)); @@ -185404,6 +203629,7 @@ DO_APP_FUNC(0x00FDF130, int32_t, ReadOnlyCollection_1_UnityEngine_ParticleCollis DO_APP_FUNC(0x00FEBC60, ParticleCollisionEvent, ReadOnlyCollection_1_UnityEngine_ParticleCollisionEvent__get_Item, (ReadOnlyCollection_1_UnityEngine_ParticleCollisionEvent_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, IList_1_UnityEngine_ParticleCollisionEvent_ *, ReadOnlyCollection_1_UnityEngine_ParticleCollisionEvent__get_Items, (ReadOnlyCollection_1_UnityEngine_ParticleCollisionEvent_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FDF0C0, void, ReadOnlyCollection_1_Rewired_PidVid___ctor, (ReadOnlyCollection_1_Rewired_PidVid_ * __this, IList_1_Rewired_PidVid_ * list, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA3F8, ReadOnlyCollection_1_Rewired_PidVid___ctor__MethodInfo); DO_APP_FUNC(0x00FF0BE0, bool, ReadOnlyCollection_1_Rewired_PidVid__Contains, (ReadOnlyCollection_1_Rewired_PidVid_ * __this, PidVid value, MethodInfo * method)); DO_APP_FUNC(0x00FDF320, void, ReadOnlyCollection_1_Rewired_PidVid__CopyTo, (ReadOnlyCollection_1_Rewired_PidVid_ * __this, PidVid__Array * array, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x00FDF390, IEnumerator_1_Rewired_PidVid_ *, ReadOnlyCollection_1_Rewired_PidVid__GetEnumerator, (ReadOnlyCollection_1_Rewired_PidVid_ * __this, MethodInfo * method)); @@ -185756,6 +203982,7 @@ DO_APP_FUNC(0x00FDF130, int32_t, ReadOnlyCollection_1_UnityEngine_Rendering_Refl DO_APP_FUNC(0x00FDF180, ReflectionProbeBlendInfo, ReadOnlyCollection_1_UnityEngine_Rendering_ReflectionProbeBlendInfo__get_Item, (ReadOnlyCollection_1_UnityEngine_Rendering_ReflectionProbeBlendInfo_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, IList_1_UnityEngine_Rendering_ReflectionProbeBlendInfo_ *, ReadOnlyCollection_1_UnityEngine_Rendering_ReflectionProbeBlendInfo__get_Items, (ReadOnlyCollection_1_UnityEngine_Rendering_ReflectionProbeBlendInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FDF0C0, void, ReadOnlyCollection_1_Dissonance_RemoteChannel___ctor, (ReadOnlyCollection_1_Dissonance_RemoteChannel_ * __this, IList_1_Dissonance_RemoteChannel_ * list, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEEAC8, ReadOnlyCollection_1_Dissonance_RemoteChannel___ctor__MethodInfo); DO_APP_FUNC(0x00FE1050, bool, ReadOnlyCollection_1_Dissonance_RemoteChannel__Contains, (ReadOnlyCollection_1_Dissonance_RemoteChannel_ * __this, RemoteChannel value, MethodInfo * method)); DO_APP_FUNC(0x00FDF320, void, ReadOnlyCollection_1_Dissonance_RemoteChannel__CopyTo, (ReadOnlyCollection_1_Dissonance_RemoteChannel_ * __this, RemoteChannel__Array * array, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x00FDF390, IEnumerator_1_Dissonance_RemoteChannel_ *, ReadOnlyCollection_1_Dissonance_RemoteChannel__GetEnumerator, (ReadOnlyCollection_1_Dissonance_RemoteChannel_ * __this, MethodInfo * method)); @@ -189851,36 +208078,42 @@ DO_APP_FUNC(0x00FDF4B0, void, ReadOnlyCollection_1_Cinemachine_TargetPositionCac DO_APP_FUNC(0x00FDF130, int32_t, ReadOnlyCollection_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__get_Count, (ReadOnlyCollection_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01007850, TargetPositionCache_CacheEntry_RecordingItem, ReadOnlyCollection_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__get_Item, (ReadOnlyCollection_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, IList_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ *, ReadOnlyCollection_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem__get_Items, (ReadOnlyCollection_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x01038ED0, void, ReadOnlyMemory_1_Byte___ctor, (ReadOnlyMemory_1_Byte___Boxed * __this, Byte__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x01038F40, void, ReadOnlyMemory_1_Byte___ctor_1, (ReadOnlyMemory_1_Byte___Boxed * __this, Byte__Array * array, int32_t start, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x01038ED0, void, ReadOnlyMemory_1_Byte___ctor, (ReadOnlyMemory_1_Byte_ * __this, Byte__Array * array, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E068, ReadOnlyMemory_1_Byte___ctor__MethodInfo); +DO_APP_FUNC(0x01038F40, void, ReadOnlyMemory_1_Byte___ctor_1, (ReadOnlyMemory_1_Byte_ * __this, Byte__Array * array, int32_t start, int32_t length, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C99908, ReadOnlyMemory_1_Byte___ctor_1__MethodInfo); -DO_APP_FUNC(0x00FDBDC0, void, ReadOnlyMemory_1_Byte___ctor_2, (ReadOnlyMemory_1_Byte___Boxed * __this, Object * obj, int32_t start, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x00FDBDC0, void, ReadOnlyMemory_1_Byte___ctor_2, (ReadOnlyMemory_1_Byte_ * __this, Object * obj, int32_t start, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x01039B50, int32_t, ReadOnlyMemory_1_Byte__CombineHashCodes, (int32_t left, int32_t right, MethodInfo * method)); DO_APP_FUNC(0x01039B60, int32_t, ReadOnlyMemory_1_Byte__CombineHashCodes_1, (int32_t h1, int32_t h2, int32_t h3, MethodInfo * method)); -DO_APP_FUNC(0x01039A60, bool, ReadOnlyMemory_1_Byte__Equals, (ReadOnlyMemory_1_Byte___Boxed * __this, ReadOnlyMemory_1_Byte_ other, MethodInfo * method)); -DO_APP_FUNC(0x01039840, bool, ReadOnlyMemory_1_Byte__Equals_1, (ReadOnlyMemory_1_Byte___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x01039A80, int32_t, ReadOnlyMemory_1_Byte__GetHashCode, (ReadOnlyMemory_1_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01039C50, Object *, ReadOnlyMemory_1_Byte__GetObjectStartLength, (ReadOnlyMemory_1_Byte___Boxed * __this, int32_t start, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01039350, ReadOnlyMemory_1_Byte_, ReadOnlyMemory_1_Byte__Slice, (ReadOnlyMemory_1_Byte___Boxed * __this, int32_t start, MethodInfo * method)); -DO_APP_FUNC(0x010390E0, String *, ReadOnlyMemory_1_Byte__ToString, (ReadOnlyMemory_1_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010390D0, bool, ReadOnlyMemory_1_Byte__get_IsEmpty, (ReadOnlyMemory_1_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010390C0, int32_t, ReadOnlyMemory_1_Byte__get_Length, (ReadOnlyMemory_1_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010393E0, ReadOnlySpan_1_Byte_, ReadOnlyMemory_1_Byte__get_Span, (ReadOnlyMemory_1_Byte___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01039A60, bool, ReadOnlyMemory_1_Byte__Equals, (ReadOnlyMemory_1_Byte_ * __this, ReadOnlyMemory_1_Byte_ other, MethodInfo * method)); +DO_APP_FUNC(0x01039840, bool, ReadOnlyMemory_1_Byte__Equals_1, (ReadOnlyMemory_1_Byte_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x01039A80, int32_t, ReadOnlyMemory_1_Byte__GetHashCode, (ReadOnlyMemory_1_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01039C50, Object *, ReadOnlyMemory_1_Byte__GetObjectStartLength, (ReadOnlyMemory_1_Byte_ * __this, int32_t * start, int32_t * length, MethodInfo * method)); +DO_APP_FUNC(0x01039350, ReadOnlyMemory_1_Byte_, ReadOnlyMemory_1_Byte__Slice, (ReadOnlyMemory_1_Byte_ * __this, int32_t start, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB240, ReadOnlyMemory_1_Byte__Slice__MethodInfo); +DO_APP_FUNC(0x010390E0, String *, ReadOnlyMemory_1_Byte__ToString, (ReadOnlyMemory_1_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010390D0, bool, ReadOnlyMemory_1_Byte__get_IsEmpty, (ReadOnlyMemory_1_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9888, ReadOnlyMemory_1_Byte__get_IsEmpty__MethodInfo); +DO_APP_FUNC(0x010390C0, int32_t, ReadOnlyMemory_1_Byte__get_Length, (ReadOnlyMemory_1_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEB00, ReadOnlyMemory_1_Byte__get_Length__MethodInfo); +DO_APP_FUNC(0x010393E0, ReadOnlySpan_1_Byte_, ReadOnlyMemory_1_Byte__get_Span, (ReadOnlyMemory_1_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEFA0, ReadOnlyMemory_1_Byte__get_Span__MethodInfo); DO_APP_FUNC(0x01038FA0, ReadOnlyMemory_1_Byte_, ReadOnlyMemory_1_Byte__op_Implicit, (ArraySegment_1_Byte_ segment, MethodInfo * method)); -DO_APP_FUNC(0x01038ED0, void, ReadOnlyMemory_1_Object___ctor, (ReadOnlyMemory_1_Object___Boxed * __this, Object__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x01038F40, void, ReadOnlyMemory_1_Object___ctor_1, (ReadOnlyMemory_1_Object___Boxed * __this, Object__Array * array, int32_t start, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x00FDBDC0, void, ReadOnlyMemory_1_Object___ctor_2, (ReadOnlyMemory_1_Object___Boxed * __this, Object * obj, int32_t start, int32_t length, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1ED68, ReadOnlyMemory_1_Byte__op_Implicit__MethodInfo); +DO_APP_FUNC(0x01038ED0, void, ReadOnlyMemory_1_Object___ctor, (ReadOnlyMemory_1_Object_ * __this, Object__Array * array, MethodInfo * method)); +DO_APP_FUNC(0x01038F40, void, ReadOnlyMemory_1_Object___ctor_1, (ReadOnlyMemory_1_Object_ * __this, Object__Array * array, int32_t start, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x00FDBDC0, void, ReadOnlyMemory_1_Object___ctor_2, (ReadOnlyMemory_1_Object_ * __this, Object * obj, int32_t start, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x01039B50, int32_t, ReadOnlyMemory_1_Object__CombineHashCodes, (int32_t left, int32_t right, MethodInfo * method)); DO_APP_FUNC(0x01039B60, int32_t, ReadOnlyMemory_1_Object__CombineHashCodes_1, (int32_t h1, int32_t h2, int32_t h3, MethodInfo * method)); -DO_APP_FUNC(0x01039A60, bool, ReadOnlyMemory_1_Object__Equals, (ReadOnlyMemory_1_Object___Boxed * __this, ReadOnlyMemory_1_Object_ other, MethodInfo * method)); -DO_APP_FUNC(0x01039840, bool, ReadOnlyMemory_1_Object__Equals_1, (ReadOnlyMemory_1_Object___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x01039A80, int32_t, ReadOnlyMemory_1_Object__GetHashCode, (ReadOnlyMemory_1_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01039C50, Object *, ReadOnlyMemory_1_Object__GetObjectStartLength, (ReadOnlyMemory_1_Object___Boxed * __this, int32_t start, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x01039350, ReadOnlyMemory_1_Object_, ReadOnlyMemory_1_Object__Slice, (ReadOnlyMemory_1_Object___Boxed * __this, int32_t start, MethodInfo * method)); -DO_APP_FUNC(0x01039C60, String *, ReadOnlyMemory_1_Object__ToString, (ReadOnlyMemory_1_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010390D0, bool, ReadOnlyMemory_1_Object__get_IsEmpty, (ReadOnlyMemory_1_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010390C0, int32_t, ReadOnlyMemory_1_Object__get_Length, (ReadOnlyMemory_1_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01039ED0, ReadOnlySpan_1_Object_, ReadOnlyMemory_1_Object__get_Span, (ReadOnlyMemory_1_Object___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01039A60, bool, ReadOnlyMemory_1_Object__Equals, (ReadOnlyMemory_1_Object_ * __this, ReadOnlyMemory_1_Object_ other, MethodInfo * method)); +DO_APP_FUNC(0x01039840, bool, ReadOnlyMemory_1_Object__Equals_1, (ReadOnlyMemory_1_Object_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x01039A80, int32_t, ReadOnlyMemory_1_Object__GetHashCode, (ReadOnlyMemory_1_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01039C50, Object *, ReadOnlyMemory_1_Object__GetObjectStartLength, (ReadOnlyMemory_1_Object_ * __this, int32_t * start, int32_t * length, MethodInfo * method)); +DO_APP_FUNC(0x01039350, ReadOnlyMemory_1_Object_, ReadOnlyMemory_1_Object__Slice, (ReadOnlyMemory_1_Object_ * __this, int32_t start, MethodInfo * method)); +DO_APP_FUNC(0x01039C60, String *, ReadOnlyMemory_1_Object__ToString, (ReadOnlyMemory_1_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010390D0, bool, ReadOnlyMemory_1_Object__get_IsEmpty, (ReadOnlyMemory_1_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010390C0, int32_t, ReadOnlyMemory_1_Object__get_Length, (ReadOnlyMemory_1_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01039ED0, ReadOnlySpan_1_Object_, ReadOnlyMemory_1_Object__get_Span, (ReadOnlyMemory_1_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01038FA0, ReadOnlyMemory_1_Object_, ReadOnlyMemory_1_Object__op_Implicit, (ArraySegment_1_Object_ segment, MethodInfo * method)); DO_APP_FUNC(0x0103A340, void, ReadOnlyObservableCollection_1_System_Object___ctor, (ReadOnlyObservableCollection_1_System_Object_ * __this, ObservableCollection_1_System_Object_ * list, MethodInfo * method)); DO_APP_FUNC(0x0103AA60, void, ReadOnlyObservableCollection_1_System_Object__HandleCollectionChanged, (ReadOnlyObservableCollection_1_System_Object_ * __this, Object * sender, NotifyCollectionChangedEventArgs * e, MethodInfo * method)); @@ -189895,116 +208128,148 @@ DO_APP_FUNC(0x0103A620, void, ReadOnlyObservableCollection_1_System_Object__add_ DO_APP_FUNC(0x0103A860, void, ReadOnlyObservableCollection_1_System_Object__add_PropertyChanged, (ReadOnlyObservableCollection_1_System_Object_ * __this, PropertyChangedEventHandler * value, MethodInfo * method)); DO_APP_FUNC(0x0103A710, void, ReadOnlyObservableCollection_1_System_Object__remove_CollectionChanged, (ReadOnlyObservableCollection_1_System_Object_ * __this, NotifyCollectionChangedEventHandler * value, MethodInfo * method)); DO_APP_FUNC(0x0103A950, void, ReadOnlyObservableCollection_1_System_Object__remove_PropertyChanged, (ReadOnlyObservableCollection_1_System_Object_ * __this, PropertyChangedEventHandler * value, MethodInfo * method)); -DO_APP_FUNC(0x0103AAA0, void, ReadOnlySpan_1_Byte___ctor, (ReadOnlySpan_1_Byte___Boxed * __this, Byte__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x0103AB70, void, ReadOnlySpan_1_Byte___ctor_1, (ReadOnlySpan_1_Byte___Boxed * __this, uint8_t ptr, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x0103AB10, void, ReadOnlySpan_1_Byte___ctor_2, (ReadOnlySpan_1_Byte___Boxed * __this, Void * pointer, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x0103AAA0, void, ReadOnlySpan_1_Byte___ctor, (ReadOnlySpan_1_Byte_ * __this, Byte__Array * array, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE390, ReadOnlySpan_1_Byte___ctor__MethodInfo); +DO_APP_FUNC(0x0103AB70, void, ReadOnlySpan_1_Byte___ctor_1, (ReadOnlySpan_1_Byte_ * __this, uint8_t * ptr, int32_t length, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC158, ReadOnlySpan_1_Byte___ctor_1__MethodInfo); +DO_APP_FUNC(0x0103AB10, void, ReadOnlySpan_1_Byte___ctor_2, (ReadOnlySpan_1_Byte_ * __this, Void * pointer, int32_t length, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C96470, ReadOnlySpan_1_Byte___ctor_2__MethodInfo); -DO_APP_FUNC(0x0103AAC0, void, ReadOnlySpan_1_Byte___ctor_3, (ReadOnlySpan_1_Byte___Boxed * __this, Byte__Array * array, int32_t start, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x0103ABA0, void, ReadOnlySpan_1_Byte__CopyTo, (ReadOnlySpan_1_Byte___Boxed * __this, Span_1_Byte_ destination, MethodInfo * method)); -DO_APP_FUNC(0x0103B120, bool, ReadOnlySpan_1_Byte__Equals, (ReadOnlySpan_1_Byte___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0103B180, int32_t, ReadOnlySpan_1_Byte__GetHashCode, (ReadOnlySpan_1_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0103AEF0, ReadOnlySpan_1_Byte_, ReadOnlySpan_1_Byte__Slice, (ReadOnlySpan_1_Byte___Boxed * __this, int32_t start, MethodInfo * method)); +DO_APP_FUNC(0x0103AAC0, void, ReadOnlySpan_1_Byte___ctor_3, (ReadOnlySpan_1_Byte_ * __this, Byte__Array * array, int32_t start, int32_t length, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE600, ReadOnlySpan_1_Byte___ctor_3__MethodInfo); +DO_APP_FUNC(0x0103ABA0, void, ReadOnlySpan_1_Byte__CopyTo, (ReadOnlySpan_1_Byte_ * __this, Span_1_Byte_ destination, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEFB8, ReadOnlySpan_1_Byte__CopyTo__MethodInfo); +DO_APP_FUNC(0x0103B120, bool, ReadOnlySpan_1_Byte__Equals, (ReadOnlySpan_1_Byte_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF040, ReadOnlySpan_1_Byte__Equals__MethodInfo); +DO_APP_FUNC(0x0103B180, int32_t, ReadOnlySpan_1_Byte__GetHashCode, (ReadOnlySpan_1_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF028, ReadOnlySpan_1_Byte__GetHashCode__MethodInfo); +DO_APP_FUNC(0x0103AEF0, ReadOnlySpan_1_Byte_, ReadOnlySpan_1_Byte__Slice, (ReadOnlySpan_1_Byte_ * __this, int32_t start, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA25A0, ReadOnlySpan_1_Byte__Slice__MethodInfo); -DO_APP_FUNC(0x0103AF60, ReadOnlySpan_1_Byte_, ReadOnlySpan_1_Byte__Slice_1, (ReadOnlySpan_1_Byte___Boxed * __this, int32_t start, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x0103AFD0, Byte__Array *, ReadOnlySpan_1_Byte__ToArray, (ReadOnlySpan_1_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0103AD20, String *, ReadOnlySpan_1_Byte__ToString, (ReadOnlySpan_1_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0103AC60, bool, ReadOnlySpan_1_Byte__TryCopyTo, (ReadOnlySpan_1_Byte___Boxed * __this, Span_1_Byte_ destination, MethodInfo * method)); +DO_APP_FUNC(0x0103AF60, ReadOnlySpan_1_Byte_, ReadOnlySpan_1_Byte__Slice_1, (ReadOnlySpan_1_Byte_ * __this, int32_t start, int32_t length, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB2F0, ReadOnlySpan_1_Byte__Slice_1__MethodInfo); +DO_APP_FUNC(0x0103AFD0, Byte__Array *, ReadOnlySpan_1_Byte__ToArray, (ReadOnlySpan_1_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E518, ReadOnlySpan_1_Byte__ToArray__MethodInfo); +DO_APP_FUNC(0x0103AD20, String *, ReadOnlySpan_1_Byte__ToString, (ReadOnlySpan_1_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0103AC60, bool, ReadOnlySpan_1_Byte__TryCopyTo, (ReadOnlySpan_1_Byte_ * __this, Span_1_Byte_ destination, MethodInfo * method)); DO_APP_FUNC(0x00A9AD90, ReadOnlySpan_1_Byte_, ReadOnlySpan_1_Byte__get_Empty, (MethodInfo * method)); -DO_APP_FUNC(0x0103B110, bool, ReadOnlySpan_1_Byte__get_IsEmpty, (ReadOnlySpan_1_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0103AB80, uint8_t, ReadOnlySpan_1_Byte__get_Item, (ReadOnlySpan_1_Byte___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00471920, int32_t, ReadOnlySpan_1_Byte__get_Length, (ReadOnlySpan_1_Byte___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0103B110, bool, ReadOnlySpan_1_Byte__get_IsEmpty, (ReadOnlySpan_1_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0103AB80, uint8_t *, ReadOnlySpan_1_Byte__get_Item, (ReadOnlySpan_1_Byte_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00471920, int32_t, ReadOnlySpan_1_Byte__get_Length, (ReadOnlySpan_1_Byte_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C98B88, ReadOnlySpan_1_Byte__get_Length__MethodInfo); DO_APP_FUNC(0x0103B1E0, ReadOnlySpan_1_Byte_, ReadOnlySpan_1_Byte__op_Implicit, (Byte__Array * array, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C96F58, ReadOnlySpan_1_Byte__op_Implicit__MethodInfo); -DO_APP_FUNC(0x0103AAA0, void, ReadOnlySpan_1_Char___ctor, (ReadOnlySpan_1_Char___Boxed * __this, Char__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x0103AB70, void, ReadOnlySpan_1_Char___ctor_1, (ReadOnlySpan_1_Char___Boxed * __this, uint16_t ptr, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x0103B2A0, void, ReadOnlySpan_1_Char___ctor_2, (ReadOnlySpan_1_Char___Boxed * __this, Void * pointer, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x0103AAA0, void, ReadOnlySpan_1_Char___ctor, (ReadOnlySpan_1_Char_ * __this, Char__Array * array, MethodInfo * method)); +DO_APP_FUNC(0x0103AB70, void, ReadOnlySpan_1_Char___ctor_1, (ReadOnlySpan_1_Char_ * __this, uint16_t * ptr, int32_t length, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8488, ReadOnlySpan_1_Char___ctor_1__MethodInfo); +DO_APP_FUNC(0x0103B2A0, void, ReadOnlySpan_1_Char___ctor_2, (ReadOnlySpan_1_Char_ * __this, Void * pointer, int32_t length, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C94940, ReadOnlySpan_1_Char___ctor_2__MethodInfo); -DO_APP_FUNC(0x0103B240, void, ReadOnlySpan_1_Char___ctor_3, (ReadOnlySpan_1_Char___Boxed * __this, Char__Array * array, int32_t start, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x0103ABA0, void, ReadOnlySpan_1_Char__CopyTo, (ReadOnlySpan_1_Char___Boxed * __this, Span_1_Char_ destination, MethodInfo * method)); +DO_APP_FUNC(0x0103B240, void, ReadOnlySpan_1_Char___ctor_3, (ReadOnlySpan_1_Char_ * __this, Char__Array * array, int32_t start, int32_t length, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02B40, ReadOnlySpan_1_Char___ctor_3__MethodInfo); +DO_APP_FUNC(0x0103ABA0, void, ReadOnlySpan_1_Char__CopyTo, (ReadOnlySpan_1_Char_ * __this, Span_1_Char_ destination, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C96138, ReadOnlySpan_1_Char__CopyTo__MethodInfo); -DO_APP_FUNC(0x0103B5D0, bool, ReadOnlySpan_1_Char__Equals, (ReadOnlySpan_1_Char___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0103B630, int32_t, ReadOnlySpan_1_Char__GetHashCode, (ReadOnlySpan_1_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0103B4F0, ReadOnlySpan_1_Char_, ReadOnlySpan_1_Char__Slice, (ReadOnlySpan_1_Char___Boxed * __this, int32_t start, MethodInfo * method)); -DO_APP_FUNC(0x0103B560, ReadOnlySpan_1_Char_, ReadOnlySpan_1_Char__Slice_1, (ReadOnlySpan_1_Char___Boxed * __this, int32_t start, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x0103AFD0, Char__Array *, ReadOnlySpan_1_Char__ToArray, (ReadOnlySpan_1_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0103B320, String *, ReadOnlySpan_1_Char__ToString, (ReadOnlySpan_1_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0103AC60, bool, ReadOnlySpan_1_Char__TryCopyTo, (ReadOnlySpan_1_Char___Boxed * __this, Span_1_Char_ destination, MethodInfo * method)); +DO_APP_FUNC(0x0103B5D0, bool, ReadOnlySpan_1_Char__Equals, (ReadOnlySpan_1_Char_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEEFF8, ReadOnlySpan_1_Char__Equals__MethodInfo); +DO_APP_FUNC(0x0103B630, int32_t, ReadOnlySpan_1_Char__GetHashCode, (ReadOnlySpan_1_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF000, ReadOnlySpan_1_Char__GetHashCode__MethodInfo); +DO_APP_FUNC(0x0103B4F0, ReadOnlySpan_1_Char_, ReadOnlySpan_1_Char__Slice, (ReadOnlySpan_1_Char_ * __this, int32_t start, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE310, ReadOnlySpan_1_Char__Slice__MethodInfo); +DO_APP_FUNC(0x0103B560, ReadOnlySpan_1_Char_, ReadOnlySpan_1_Char__Slice_1, (ReadOnlySpan_1_Char_ * __this, int32_t start, int32_t length, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE5E8, ReadOnlySpan_1_Char__Slice_1__MethodInfo); +DO_APP_FUNC(0x0103AFD0, Char__Array *, ReadOnlySpan_1_Char__ToArray, (ReadOnlySpan_1_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0103B320, String *, ReadOnlySpan_1_Char__ToString, (ReadOnlySpan_1_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFECA0, ReadOnlySpan_1_Char__ToString__MethodInfo); +DO_APP_FUNC(0x0103AC60, bool, ReadOnlySpan_1_Char__TryCopyTo, (ReadOnlySpan_1_Char_ * __this, Span_1_Char_ destination, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02958, ReadOnlySpan_1_Char__TryCopyTo__MethodInfo); DO_APP_FUNC(0x00A9AD90, ReadOnlySpan_1_Char_, ReadOnlySpan_1_Char__get_Empty, (MethodInfo * method)); -DO_APP_FUNC(0x0103B110, bool, ReadOnlySpan_1_Char__get_IsEmpty, (ReadOnlySpan_1_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0103B300, uint16_t, ReadOnlySpan_1_Char__get_Item, (ReadOnlySpan_1_Char___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00471920, int32_t, ReadOnlySpan_1_Char__get_Length, (ReadOnlySpan_1_Char___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02B70, ReadOnlySpan_1_Char__get_Empty__MethodInfo); +DO_APP_FUNC(0x0103B110, bool, ReadOnlySpan_1_Char__get_IsEmpty, (ReadOnlySpan_1_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF670, ReadOnlySpan_1_Char__get_IsEmpty__MethodInfo); +DO_APP_FUNC(0x0103B300, uint16_t *, ReadOnlySpan_1_Char__get_Item, (ReadOnlySpan_1_Char_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00471920, int32_t, ReadOnlySpan_1_Char__get_Length, (ReadOnlySpan_1_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8508, ReadOnlySpan_1_Char__get_Length__MethodInfo); DO_APP_FUNC(0x0103B1E0, ReadOnlySpan_1_Char_, ReadOnlySpan_1_Char__op_Implicit, (Char__Array * array, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C960C8, ReadOnlySpan_1_Char__op_Implicit__MethodInfo); -DO_APP_FUNC(0x0103AAA0, void, ReadOnlySpan_1_Int32___ctor, (ReadOnlySpan_1_Int32___Boxed * __this, Int32__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x0103AB70, void, ReadOnlySpan_1_Int32___ctor_1, (ReadOnlySpan_1_Int32___Boxed * __this, int32_t ptr, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x0103B6F0, void, ReadOnlySpan_1_Int32___ctor_2, (ReadOnlySpan_1_Int32___Boxed * __this, Void * pointer, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x0103B690, void, ReadOnlySpan_1_Int32___ctor_3, (ReadOnlySpan_1_Int32___Boxed * __this, Int32__Array * array, int32_t start, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x0103ABA0, void, ReadOnlySpan_1_Int32__CopyTo, (ReadOnlySpan_1_Int32___Boxed * __this, Span_1_Int32_ destination, MethodInfo * method)); -DO_APP_FUNC(0x0103BA20, bool, ReadOnlySpan_1_Int32__Equals, (ReadOnlySpan_1_Int32___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0103BA80, int32_t, ReadOnlySpan_1_Int32__GetHashCode, (ReadOnlySpan_1_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0103B940, ReadOnlySpan_1_Int32_, ReadOnlySpan_1_Int32__Slice, (ReadOnlySpan_1_Int32___Boxed * __this, int32_t start, MethodInfo * method)); -DO_APP_FUNC(0x0103B9B0, ReadOnlySpan_1_Int32_, ReadOnlySpan_1_Int32__Slice_1, (ReadOnlySpan_1_Int32___Boxed * __this, int32_t start, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x0103AFD0, Int32__Array *, ReadOnlySpan_1_Int32__ToArray, (ReadOnlySpan_1_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0103B770, String *, ReadOnlySpan_1_Int32__ToString, (ReadOnlySpan_1_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0103AC60, bool, ReadOnlySpan_1_Int32__TryCopyTo, (ReadOnlySpan_1_Int32___Boxed * __this, Span_1_Int32_ destination, MethodInfo * method)); +DO_APP_FUNC(0x0103AAA0, void, ReadOnlySpan_1_Int32___ctor, (ReadOnlySpan_1_Int32_ * __this, Int32__Array * array, MethodInfo * method)); +DO_APP_FUNC(0x0103AB70, void, ReadOnlySpan_1_Int32___ctor_1, (ReadOnlySpan_1_Int32_ * __this, int32_t * ptr, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x0103B6F0, void, ReadOnlySpan_1_Int32___ctor_2, (ReadOnlySpan_1_Int32_ * __this, Void * pointer, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x0103B690, void, ReadOnlySpan_1_Int32___ctor_3, (ReadOnlySpan_1_Int32_ * __this, Int32__Array * array, int32_t start, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x0103ABA0, void, ReadOnlySpan_1_Int32__CopyTo, (ReadOnlySpan_1_Int32_ * __this, Span_1_Int32_ destination, MethodInfo * method)); +DO_APP_FUNC(0x0103BA20, bool, ReadOnlySpan_1_Int32__Equals, (ReadOnlySpan_1_Int32_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF008, ReadOnlySpan_1_Int32__Equals__MethodInfo); +DO_APP_FUNC(0x0103BA80, int32_t, ReadOnlySpan_1_Int32__GetHashCode, (ReadOnlySpan_1_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF010, ReadOnlySpan_1_Int32__GetHashCode__MethodInfo); +DO_APP_FUNC(0x0103B940, ReadOnlySpan_1_Int32_, ReadOnlySpan_1_Int32__Slice, (ReadOnlySpan_1_Int32_ * __this, int32_t start, MethodInfo * method)); +DO_APP_FUNC(0x0103B9B0, ReadOnlySpan_1_Int32_, ReadOnlySpan_1_Int32__Slice_1, (ReadOnlySpan_1_Int32_ * __this, int32_t start, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x0103AFD0, Int32__Array *, ReadOnlySpan_1_Int32__ToArray, (ReadOnlySpan_1_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1730, ReadOnlySpan_1_Int32__ToArray__MethodInfo); +DO_APP_FUNC(0x0103B770, String *, ReadOnlySpan_1_Int32__ToString, (ReadOnlySpan_1_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0103AC60, bool, ReadOnlySpan_1_Int32__TryCopyTo, (ReadOnlySpan_1_Int32_ * __this, Span_1_Int32_ destination, MethodInfo * method)); DO_APP_FUNC(0x00A9AD90, ReadOnlySpan_1_Int32_, ReadOnlySpan_1_Int32__get_Empty, (MethodInfo * method)); -DO_APP_FUNC(0x0103B110, bool, ReadOnlySpan_1_Int32__get_IsEmpty, (ReadOnlySpan_1_Int32___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0103B110, bool, ReadOnlySpan_1_Int32__get_IsEmpty, (ReadOnlySpan_1_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C96090, ReadOnlySpan_1_Int32__get_IsEmpty__MethodInfo); -DO_APP_FUNC(0x0103B750, int32_t, ReadOnlySpan_1_Int32__get_Item, (ReadOnlySpan_1_Int32___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00471920, int32_t, ReadOnlySpan_1_Int32__get_Length, (ReadOnlySpan_1_Int32___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0103B750, int32_t *, ReadOnlySpan_1_Int32__get_Item, (ReadOnlySpan_1_Int32_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00471920, int32_t, ReadOnlySpan_1_Int32__get_Length, (ReadOnlySpan_1_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C96140, ReadOnlySpan_1_Int32__get_Length__MethodInfo); DO_APP_FUNC(0x0103B1E0, ReadOnlySpan_1_Int32_, ReadOnlySpan_1_Int32__op_Implicit, (Int32__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x0103AAA0, void, ReadOnlySpan_1_Object___ctor, (ReadOnlySpan_1_Object___Boxed * __this, Object__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x0103AB70, void, ReadOnlySpan_1_Object___ctor_1, (ReadOnlySpan_1_Object___Boxed * __this, Object * ptr, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x0103BB40, void, ReadOnlySpan_1_Object___ctor_2, (ReadOnlySpan_1_Object___Boxed * __this, Void * pointer, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x0103BAE0, void, ReadOnlySpan_1_Object___ctor_3, (ReadOnlySpan_1_Object___Boxed * __this, Object__Array * array, int32_t start, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x0103ABA0, void, ReadOnlySpan_1_Object__CopyTo, (ReadOnlySpan_1_Object___Boxed * __this, Span_1_Object_ destination, MethodInfo * method)); -DO_APP_FUNC(0x0103BE80, bool, ReadOnlySpan_1_Object__Equals, (ReadOnlySpan_1_Object___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0103BEE0, int32_t, ReadOnlySpan_1_Object__GetHashCode, (ReadOnlySpan_1_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0103BDA0, ReadOnlySpan_1_Object_, ReadOnlySpan_1_Object__Slice, (ReadOnlySpan_1_Object___Boxed * __this, int32_t start, MethodInfo * method)); -DO_APP_FUNC(0x0103BE10, ReadOnlySpan_1_Object_, ReadOnlySpan_1_Object__Slice_1, (ReadOnlySpan_1_Object___Boxed * __this, int32_t start, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x0103AFD0, Object__Array *, ReadOnlySpan_1_Object__ToArray, (ReadOnlySpan_1_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0103BBD0, String *, ReadOnlySpan_1_Object__ToString, (ReadOnlySpan_1_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0103AC60, bool, ReadOnlySpan_1_Object__TryCopyTo, (ReadOnlySpan_1_Object___Boxed * __this, Span_1_Object_ destination, MethodInfo * method)); +DO_APP_FUNC(0x0103AAA0, void, ReadOnlySpan_1_Object___ctor, (ReadOnlySpan_1_Object_ * __this, Object__Array * array, MethodInfo * method)); +DO_APP_FUNC(0x0103AB70, void, ReadOnlySpan_1_Object___ctor_1, (ReadOnlySpan_1_Object_ * __this, Object * * ptr, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x0103BB40, void, ReadOnlySpan_1_Object___ctor_2, (ReadOnlySpan_1_Object_ * __this, Void * pointer, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x0103BAE0, void, ReadOnlySpan_1_Object___ctor_3, (ReadOnlySpan_1_Object_ * __this, Object__Array * array, int32_t start, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x0103ABA0, void, ReadOnlySpan_1_Object__CopyTo, (ReadOnlySpan_1_Object_ * __this, Span_1_Object_ destination, MethodInfo * method)); +DO_APP_FUNC(0x0103BE80, bool, ReadOnlySpan_1_Object__Equals, (ReadOnlySpan_1_Object_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEEFE8, ReadOnlySpan_1_Object__Equals__MethodInfo); +DO_APP_FUNC(0x0103BEE0, int32_t, ReadOnlySpan_1_Object__GetHashCode, (ReadOnlySpan_1_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEEFF0, ReadOnlySpan_1_Object__GetHashCode__MethodInfo); +DO_APP_FUNC(0x0103BDA0, ReadOnlySpan_1_Object_, ReadOnlySpan_1_Object__Slice, (ReadOnlySpan_1_Object_ * __this, int32_t start, MethodInfo * method)); +DO_APP_FUNC(0x0103BE10, ReadOnlySpan_1_Object_, ReadOnlySpan_1_Object__Slice_1, (ReadOnlySpan_1_Object_ * __this, int32_t start, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x0103AFD0, Object__Array *, ReadOnlySpan_1_Object__ToArray, (ReadOnlySpan_1_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0103BBD0, String *, ReadOnlySpan_1_Object__ToString, (ReadOnlySpan_1_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0103AC60, bool, ReadOnlySpan_1_Object__TryCopyTo, (ReadOnlySpan_1_Object_ * __this, Span_1_Object_ destination, MethodInfo * method)); DO_APP_FUNC(0x00A9AD90, ReadOnlySpan_1_Object_, ReadOnlySpan_1_Object__get_Empty, (MethodInfo * method)); -DO_APP_FUNC(0x0103B110, bool, ReadOnlySpan_1_Object__get_IsEmpty, (ReadOnlySpan_1_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0103BBB0, Object *, ReadOnlySpan_1_Object__get_Item, (ReadOnlySpan_1_Object___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00471920, int32_t, ReadOnlySpan_1_Object__get_Length, (ReadOnlySpan_1_Object___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0103B110, bool, ReadOnlySpan_1_Object__get_IsEmpty, (ReadOnlySpan_1_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0103BBB0, Object * *, ReadOnlySpan_1_Object__get_Item, (ReadOnlySpan_1_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00471920, int32_t, ReadOnlySpan_1_Object__get_Length, (ReadOnlySpan_1_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0103B1E0, ReadOnlySpan_1_Object_, ReadOnlySpan_1_Object__op_Implicit, (Object__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x0103AAA0, void, ReadOnlySpan_1_UInt16___ctor, (ReadOnlySpan_1_UInt16___Boxed * __this, UInt16__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x0103AB70, void, ReadOnlySpan_1_UInt16___ctor_1, (ReadOnlySpan_1_UInt16___Boxed * __this, uint16_t ptr, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x0103BF40, void, ReadOnlySpan_1_UInt16___ctor_2, (ReadOnlySpan_1_UInt16___Boxed * __this, Void * pointer, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x0103B240, void, ReadOnlySpan_1_UInt16___ctor_3, (ReadOnlySpan_1_UInt16___Boxed * __this, UInt16__Array * array, int32_t start, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x0103ABA0, void, ReadOnlySpan_1_UInt16__CopyTo, (ReadOnlySpan_1_UInt16___Boxed * __this, Span_1_UInt16_ destination, MethodInfo * method)); -DO_APP_FUNC(0x0103C170, bool, ReadOnlySpan_1_UInt16__Equals, (ReadOnlySpan_1_UInt16___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0103C1D0, int32_t, ReadOnlySpan_1_UInt16__GetHashCode, (ReadOnlySpan_1_UInt16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0103B4F0, ReadOnlySpan_1_UInt16_, ReadOnlySpan_1_UInt16__Slice, (ReadOnlySpan_1_UInt16___Boxed * __this, int32_t start, MethodInfo * method)); -DO_APP_FUNC(0x0103B560, ReadOnlySpan_1_UInt16_, ReadOnlySpan_1_UInt16__Slice_1, (ReadOnlySpan_1_UInt16___Boxed * __this, int32_t start, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x0103AFD0, UInt16__Array *, ReadOnlySpan_1_UInt16__ToArray, (ReadOnlySpan_1_UInt16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0103BFA0, String *, ReadOnlySpan_1_UInt16__ToString, (ReadOnlySpan_1_UInt16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0103AC60, bool, ReadOnlySpan_1_UInt16__TryCopyTo, (ReadOnlySpan_1_UInt16___Boxed * __this, Span_1_UInt16_ destination, MethodInfo * method)); +DO_APP_FUNC(0x0103AAA0, void, ReadOnlySpan_1_UInt16___ctor, (ReadOnlySpan_1_UInt16_ * __this, UInt16__Array * array, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA280, ReadOnlySpan_1_UInt16___ctor__MethodInfo); +DO_APP_FUNC(0x0103AB70, void, ReadOnlySpan_1_UInt16___ctor_1, (ReadOnlySpan_1_UInt16_ * __this, uint16_t * ptr, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x0103BF40, void, ReadOnlySpan_1_UInt16___ctor_2, (ReadOnlySpan_1_UInt16_ * __this, Void * pointer, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x0103B240, void, ReadOnlySpan_1_UInt16___ctor_3, (ReadOnlySpan_1_UInt16_ * __this, UInt16__Array * array, int32_t start, int32_t length, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB56D0, ReadOnlySpan_1_UInt16___ctor_3__MethodInfo); +DO_APP_FUNC(0x0103ABA0, void, ReadOnlySpan_1_UInt16__CopyTo, (ReadOnlySpan_1_UInt16_ * __this, Span_1_UInt16_ destination, MethodInfo * method)); +DO_APP_FUNC(0x0103C170, bool, ReadOnlySpan_1_UInt16__Equals, (ReadOnlySpan_1_UInt16_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEEFB8, ReadOnlySpan_1_UInt16__Equals__MethodInfo); +DO_APP_FUNC(0x0103C1D0, int32_t, ReadOnlySpan_1_UInt16__GetHashCode, (ReadOnlySpan_1_UInt16_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEEFC0, ReadOnlySpan_1_UInt16__GetHashCode__MethodInfo); +DO_APP_FUNC(0x0103B4F0, ReadOnlySpan_1_UInt16_, ReadOnlySpan_1_UInt16__Slice, (ReadOnlySpan_1_UInt16_ * __this, int32_t start, MethodInfo * method)); +DO_APP_FUNC(0x0103B560, ReadOnlySpan_1_UInt16_, ReadOnlySpan_1_UInt16__Slice_1, (ReadOnlySpan_1_UInt16_ * __this, int32_t start, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x0103AFD0, UInt16__Array *, ReadOnlySpan_1_UInt16__ToArray, (ReadOnlySpan_1_UInt16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0103BFA0, String *, ReadOnlySpan_1_UInt16__ToString, (ReadOnlySpan_1_UInt16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0103AC60, bool, ReadOnlySpan_1_UInt16__TryCopyTo, (ReadOnlySpan_1_UInt16_ * __this, Span_1_UInt16_ destination, MethodInfo * method)); DO_APP_FUNC(0x00A9AD90, ReadOnlySpan_1_UInt16_, ReadOnlySpan_1_UInt16__get_Empty, (MethodInfo * method)); -DO_APP_FUNC(0x0103B110, bool, ReadOnlySpan_1_UInt16__get_IsEmpty, (ReadOnlySpan_1_UInt16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0103B300, uint16_t, ReadOnlySpan_1_UInt16__get_Item, (ReadOnlySpan_1_UInt16___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00471920, int32_t, ReadOnlySpan_1_UInt16__get_Length, (ReadOnlySpan_1_UInt16___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0103B110, bool, ReadOnlySpan_1_UInt16__get_IsEmpty, (ReadOnlySpan_1_UInt16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0103B300, uint16_t *, ReadOnlySpan_1_UInt16__get_Item, (ReadOnlySpan_1_UInt16_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00471920, int32_t, ReadOnlySpan_1_UInt16__get_Length, (ReadOnlySpan_1_UInt16_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED998, ReadOnlySpan_1_UInt16__get_Length__MethodInfo); DO_APP_FUNC(0x0103B1E0, ReadOnlySpan_1_UInt16_, ReadOnlySpan_1_UInt16__op_Implicit, (UInt16__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x0103AAA0, void, ReadOnlySpan_1_UInt32___ctor, (ReadOnlySpan_1_UInt32___Boxed * __this, UInt32__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x0103AB70, void, ReadOnlySpan_1_UInt32___ctor_1, (ReadOnlySpan_1_UInt32___Boxed * __this, uint32_t ptr, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x0103C230, void, ReadOnlySpan_1_UInt32___ctor_2, (ReadOnlySpan_1_UInt32___Boxed * __this, Void * pointer, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x0103B690, void, ReadOnlySpan_1_UInt32___ctor_3, (ReadOnlySpan_1_UInt32___Boxed * __this, UInt32__Array * array, int32_t start, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x0103ABA0, void, ReadOnlySpan_1_UInt32__CopyTo, (ReadOnlySpan_1_UInt32___Boxed * __this, Span_1_UInt32_ destination, MethodInfo * method)); -DO_APP_FUNC(0x0103C460, bool, ReadOnlySpan_1_UInt32__Equals, (ReadOnlySpan_1_UInt32___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0103C4C0, int32_t, ReadOnlySpan_1_UInt32__GetHashCode, (ReadOnlySpan_1_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0103B940, ReadOnlySpan_1_UInt32_, ReadOnlySpan_1_UInt32__Slice, (ReadOnlySpan_1_UInt32___Boxed * __this, int32_t start, MethodInfo * method)); -DO_APP_FUNC(0x0103B9B0, ReadOnlySpan_1_UInt32_, ReadOnlySpan_1_UInt32__Slice_1, (ReadOnlySpan_1_UInt32___Boxed * __this, int32_t start, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x0103AFD0, UInt32__Array *, ReadOnlySpan_1_UInt32__ToArray, (ReadOnlySpan_1_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0103C290, String *, ReadOnlySpan_1_UInt32__ToString, (ReadOnlySpan_1_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0103AC60, bool, ReadOnlySpan_1_UInt32__TryCopyTo, (ReadOnlySpan_1_UInt32___Boxed * __this, Span_1_UInt32_ destination, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5648, ReadOnlySpan_1_UInt16__op_Implicit__MethodInfo); +DO_APP_FUNC(0x0103AAA0, void, ReadOnlySpan_1_UInt32___ctor, (ReadOnlySpan_1_UInt32_ * __this, UInt32__Array * array, MethodInfo * method)); +DO_APP_FUNC(0x0103AB70, void, ReadOnlySpan_1_UInt32___ctor_1, (ReadOnlySpan_1_UInt32_ * __this, uint32_t * ptr, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x0103C230, void, ReadOnlySpan_1_UInt32___ctor_2, (ReadOnlySpan_1_UInt32_ * __this, Void * pointer, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x0103B690, void, ReadOnlySpan_1_UInt32___ctor_3, (ReadOnlySpan_1_UInt32_ * __this, UInt32__Array * array, int32_t start, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x0103ABA0, void, ReadOnlySpan_1_UInt32__CopyTo, (ReadOnlySpan_1_UInt32_ * __this, Span_1_UInt32_ destination, MethodInfo * method)); +DO_APP_FUNC(0x0103C460, bool, ReadOnlySpan_1_UInt32__Equals, (ReadOnlySpan_1_UInt32_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEEFA0, ReadOnlySpan_1_UInt32__Equals__MethodInfo); +DO_APP_FUNC(0x0103C4C0, int32_t, ReadOnlySpan_1_UInt32__GetHashCode, (ReadOnlySpan_1_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEEFA8, ReadOnlySpan_1_UInt32__GetHashCode__MethodInfo); +DO_APP_FUNC(0x0103B940, ReadOnlySpan_1_UInt32_, ReadOnlySpan_1_UInt32__Slice, (ReadOnlySpan_1_UInt32_ * __this, int32_t start, MethodInfo * method)); +DO_APP_FUNC(0x0103B9B0, ReadOnlySpan_1_UInt32_, ReadOnlySpan_1_UInt32__Slice_1, (ReadOnlySpan_1_UInt32_ * __this, int32_t start, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x0103AFD0, UInt32__Array *, ReadOnlySpan_1_UInt32__ToArray, (ReadOnlySpan_1_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0103C290, String *, ReadOnlySpan_1_UInt32__ToString, (ReadOnlySpan_1_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0103AC60, bool, ReadOnlySpan_1_UInt32__TryCopyTo, (ReadOnlySpan_1_UInt32_ * __this, Span_1_UInt32_ destination, MethodInfo * method)); DO_APP_FUNC(0x00A9AD90, ReadOnlySpan_1_UInt32_, ReadOnlySpan_1_UInt32__get_Empty, (MethodInfo * method)); -DO_APP_FUNC(0x0103B110, bool, ReadOnlySpan_1_UInt32__get_IsEmpty, (ReadOnlySpan_1_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0103B750, uint32_t, ReadOnlySpan_1_UInt32__get_Item, (ReadOnlySpan_1_UInt32___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00471920, int32_t, ReadOnlySpan_1_UInt32__get_Length, (ReadOnlySpan_1_UInt32___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0103B110, bool, ReadOnlySpan_1_UInt32__get_IsEmpty, (ReadOnlySpan_1_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0103B750, uint32_t *, ReadOnlySpan_1_UInt32__get_Item, (ReadOnlySpan_1_UInt32_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00471920, int32_t, ReadOnlySpan_1_UInt32__get_Length, (ReadOnlySpan_1_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0103B1E0, ReadOnlySpan_1_UInt32_, ReadOnlySpan_1_UInt32__op_Implicit, (UInt32__Array * array, MethodInfo * method)); DO_APP_FUNC(0x0103C520, void, ReadonlyLockedValue_1_System_Int32___ctor, (ReadonlyLockedValue_1_System_Int32_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C955B0, ReadonlyLockedValue_1_System_Int32___ctor__MethodInfo); @@ -190014,28 +208279,41 @@ DO_APP_FUNC(0x0103C6E0, void, ReadonlyLockedValue_1_System_Int32__Unlock, (Reado DO_APP_FUNC(0x0103C710, void, ReadonlyLockedValue_1_System_Object___ctor, (ReadonlyLockedValue_1_System_Object_ * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x0103C6A0, ReadonlyLockedValue_1_T_Unlocker_System_Object_ *, ReadonlyLockedValue_1_System_Object__Lock, (ReadonlyLockedValue_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0103C6E0, void, ReadonlyLockedValue_1_System_Object__Unlock, (ReadonlyLockedValue_1_System_Object_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x0103D180, void, InputStateHistory_1_TValue_Record_TouchState___ctor, (InputStateHistory_1_TValue_Record_TouchState___Boxed * __this, InputStateHistory_1_TouchState_ * owner, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x0103D100, void, InputStateHistory_1_TValue_Record_TouchState___ctor_1, (InputStateHistory_1_TValue_Record_TouchState___Boxed * __this, InputStateHistory_1_TouchState_ * owner, int32_t index, InputStateHistory_RecordHeader * header, MethodInfo * method)); -DO_APP_FUNC(0x0103D960, void, InputStateHistory_1_TValue_Record_TouchState__CheckValid, (InputStateHistory_1_TValue_Record_TouchState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0103D670, void, InputStateHistory_1_TValue_Record_TouchState__CopyFrom, (InputStateHistory_1_TValue_Record_TouchState___Boxed * __this, InputStateHistory_1_TValue_Record_TouchState_ record, MethodInfo * method)); -DO_APP_FUNC(0x01039A60, bool, InputStateHistory_1_TValue_Record_TouchState__Equals, (InputStateHistory_1_TValue_Record_TouchState___Boxed * __this, InputStateHistory_1_TValue_Record_TouchState_ other, MethodInfo * method)); -DO_APP_FUNC(0x0103DA90, bool, InputStateHistory_1_TValue_Record_TouchState__Equals_1, (InputStateHistory_1_TValue_Record_TouchState___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0103DBB0, int32_t, InputStateHistory_1_TValue_Record_TouchState__GetHashCode, (InputStateHistory_1_TValue_Record_TouchState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0103D4D0, Void *, InputStateHistory_1_TValue_Record_TouchState__GetUnsafeExtraMemoryPtr, (InputStateHistory_1_TValue_Record_TouchState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0103D540, Void *, InputStateHistory_1_TValue_Record_TouchState__GetUnsafeExtraMemoryPtrUnchecked, (InputStateHistory_1_TValue_Record_TouchState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0103D330, Void *, InputStateHistory_1_TValue_Record_TouchState__GetUnsafeMemoryPtr, (InputStateHistory_1_TValue_Record_TouchState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0103D3A0, Void *, InputStateHistory_1_TValue_Record_TouchState__GetUnsafeMemoryPtrUnchecked, (InputStateHistory_1_TValue_Record_TouchState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0103D1F0, TouchState, InputStateHistory_1_TValue_Record_TouchState__ReadValue, (InputStateHistory_1_TValue_Record_TouchState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0103DC00, String *, InputStateHistory_1_TValue_Record_TouchState__ToString, (InputStateHistory_1_TValue_Record_TouchState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0103CB10, InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState_ *, InputStateHistory_1_TValue_Record_TouchState__get_control, (InputStateHistory_1_TValue_Record_TouchState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0103C8E0, InputStateHistory_RecordHeader *, InputStateHistory_1_TValue_Record_TouchState__get_header, (InputStateHistory_1_TValue_Record_TouchState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0103C9D0, int32_t, InputStateHistory_1_TValue_Record_TouchState__get_index, (InputStateHistory_1_TValue_Record_TouchState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0103CE20, InputStateHistory_1_TValue_Record_TouchState_, InputStateHistory_1_TValue_Record_TouchState__get_next, (InputStateHistory_1_TValue_Record_TouchState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, InputStateHistory_1_TouchState_ *, InputStateHistory_1_TValue_Record_TouchState__get_owner, (InputStateHistory_1_TValue_Record_TouchState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0103CF90, InputStateHistory_1_TValue_Record_TouchState_, InputStateHistory_1_TValue_Record_TouchState__get_previous, (InputStateHistory_1_TValue_Record_TouchState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0103C930, int32_t, InputStateHistory_1_TValue_Record_TouchState__get_recordIndex, (InputStateHistory_1_TValue_Record_TouchState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0103CA70, double, InputStateHistory_1_TValue_Record_TouchState__get_time, (InputStateHistory_1_TValue_Record_TouchState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0103C940, bool, InputStateHistory_1_TValue_Record_TouchState__get_valid, (InputStateHistory_1_TValue_Record_TouchState___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0103D180, void, InputStateHistory_1_TValue_Record_TouchState___ctor, (InputStateHistory_1_TValue_Record_TouchState_ * __this, InputStateHistory_1_TouchState_ * owner, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x0103D100, void, InputStateHistory_1_TValue_Record_TouchState___ctor_1, (InputStateHistory_1_TValue_Record_TouchState_ * __this, InputStateHistory_1_TouchState_ * owner, int32_t index, InputStateHistory_RecordHeader * header, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1480, InputStateHistory_1_TValue_Record_TouchState___ctor_1__MethodInfo); +DO_APP_FUNC(0x0103D960, void, InputStateHistory_1_TValue_Record_TouchState__CheckValid, (InputStateHistory_1_TValue_Record_TouchState_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEEF78, InputStateHistory_1_TValue_Record_TouchState__CheckValid__MethodInfo); +DO_APP_FUNC(0x0103D670, void, InputStateHistory_1_TValue_Record_TouchState__CopyFrom, (InputStateHistory_1_TValue_Record_TouchState_ * __this, InputStateHistory_1_TValue_Record_TouchState_ record, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEEF60, InputStateHistory_1_TValue_Record_TouchState__CopyFrom__MethodInfo); +DO_APP_FUNC(0x01039A60, bool, InputStateHistory_1_TValue_Record_TouchState__Equals, (InputStateHistory_1_TValue_Record_TouchState_ * __this, InputStateHistory_1_TValue_Record_TouchState_ other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD14F8, InputStateHistory_1_TValue_Record_TouchState__Equals__MethodInfo); +DO_APP_FUNC(0x0103DA90, bool, InputStateHistory_1_TValue_Record_TouchState__Equals_1, (InputStateHistory_1_TValue_Record_TouchState_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x0103DBB0, int32_t, InputStateHistory_1_TValue_Record_TouchState__GetHashCode, (InputStateHistory_1_TValue_Record_TouchState_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD14D0, InputStateHistory_1_TValue_Record_TouchState__GetHashCode__MethodInfo); +DO_APP_FUNC(0x0103D4D0, Void *, InputStateHistory_1_TValue_Record_TouchState__GetUnsafeExtraMemoryPtr, (InputStateHistory_1_TValue_Record_TouchState_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1590, InputStateHistory_1_TValue_Record_TouchState__GetUnsafeExtraMemoryPtr__MethodInfo); +DO_APP_FUNC(0x0103D540, Void *, InputStateHistory_1_TValue_Record_TouchState__GetUnsafeExtraMemoryPtrUnchecked, (InputStateHistory_1_TValue_Record_TouchState_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEEF90, InputStateHistory_1_TValue_Record_TouchState__GetUnsafeExtraMemoryPtrUnchecked__MethodInfo); +DO_APP_FUNC(0x0103D330, Void *, InputStateHistory_1_TValue_Record_TouchState__GetUnsafeMemoryPtr, (InputStateHistory_1_TValue_Record_TouchState_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD15E0, InputStateHistory_1_TValue_Record_TouchState__GetUnsafeMemoryPtr__MethodInfo); +DO_APP_FUNC(0x0103D3A0, Void *, InputStateHistory_1_TValue_Record_TouchState__GetUnsafeMemoryPtrUnchecked, (InputStateHistory_1_TValue_Record_TouchState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0103D1F0, TouchState, InputStateHistory_1_TValue_Record_TouchState__ReadValue, (InputStateHistory_1_TValue_Record_TouchState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0103DC00, String *, InputStateHistory_1_TValue_Record_TouchState__ToString, (InputStateHistory_1_TValue_Record_TouchState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0103CB10, InputControl_1_UnityEngine_InputSystem_LowLevel_TouchState_ *, InputStateHistory_1_TValue_Record_TouchState__get_control, (InputStateHistory_1_TValue_Record_TouchState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0103C8E0, InputStateHistory_RecordHeader *, InputStateHistory_1_TValue_Record_TouchState__get_header, (InputStateHistory_1_TValue_Record_TouchState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0103C9D0, int32_t, InputStateHistory_1_TValue_Record_TouchState__get_index, (InputStateHistory_1_TValue_Record_TouchState_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD15D8, InputStateHistory_1_TValue_Record_TouchState__get_index__MethodInfo); +DO_APP_FUNC(0x0103CE20, InputStateHistory_1_TValue_Record_TouchState_, InputStateHistory_1_TValue_Record_TouchState__get_next, (InputStateHistory_1_TValue_Record_TouchState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, InputStateHistory_1_TouchState_ *, InputStateHistory_1_TValue_Record_TouchState__get_owner, (InputStateHistory_1_TValue_Record_TouchState_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD15B8, InputStateHistory_1_TValue_Record_TouchState__get_owner__MethodInfo); +DO_APP_FUNC(0x0103CF90, InputStateHistory_1_TValue_Record_TouchState_, InputStateHistory_1_TValue_Record_TouchState__get_previous, (InputStateHistory_1_TValue_Record_TouchState_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD15B0, InputStateHistory_1_TValue_Record_TouchState__get_previous__MethodInfo); +DO_APP_FUNC(0x0103C930, int32_t, InputStateHistory_1_TValue_Record_TouchState__get_recordIndex, (InputStateHistory_1_TValue_Record_TouchState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0103CA70, double, InputStateHistory_1_TValue_Record_TouchState__get_time, (InputStateHistory_1_TValue_Record_TouchState_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD15E8, InputStateHistory_1_TValue_Record_TouchState__get_time__MethodInfo); +DO_APP_FUNC(0x0103C940, bool, InputStateHistory_1_TValue_Record_TouchState__get_valid, (InputStateHistory_1_TValue_Record_TouchState_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD15C0, InputStateHistory_1_TValue_Record_TouchState__get_valid__MethodInfo); DO_APP_FUNC(0x0103E050, void, StyleDataRef_1_T_RefCounted_InheritedData___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0103DE40, void, StyleDataRef_1_T_RefCounted_InheritedData___ctor, (StyleDataRef_1_T_RefCounted_InheritedData_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0098E400, void, StyleDataRef_1_T_RefCounted_InheritedData__Acquire, (StyleDataRef_1_T_RefCounted_InheritedData_ * __this, MethodInfo * method)); @@ -190090,7 +208368,7 @@ DO_APP_FUNC(0x0103F5F0, void, RenderGraphResourcePool_1_System_Object__LogResour DO_APP_FUNC(0x0103F180, void, RenderGraphResourcePool_1_System_Object__RegisterFrameAllocation, (RenderGraphResourcePool_1_System_Object_ * __this, int32_t hash, Object * value, MethodInfo * method)); DO_APP_FUNC(0x0103EAD0, void, RenderGraphResourcePool_1_System_Object__ReleaseResource, (RenderGraphResourcePool_1_System_Object_ * __this, int32_t hash, Object * resource, int32_t currentFrameIndex, MethodInfo * method)); DO_APP_FUNC(0x01040050, bool, RenderGraphResourcePool_1_System_Object__ShouldReleaseResource, (int32_t lastUsedFrameIndex, int32_t currentFrameIndex, MethodInfo * method)); -DO_APP_FUNC(0x0103EC90, bool, RenderGraphResourcePool_1_System_Object__TryGetResource, (RenderGraphResourcePool_1_System_Object_ * __this, int32_t hashCode, Object * resource, MethodInfo * method)); +DO_APP_FUNC(0x0103EC90, bool, RenderGraphResourcePool_1_System_Object__TryGetResource, (RenderGraphResourcePool_1_System_Object_ * __this, int32_t hashCode, Object * * resource, MethodInfo * method)); DO_APP_FUNC(0x0103F230, void, RenderGraphResourcePool_1_System_Object__UnregisterFrameAllocation, (RenderGraphResourcePool_1_System_Object_ * __this, int32_t hash, Object * value, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, RenderGraphResource_2_ComputeBufferDesc_System_Object___ctor, (RenderGraphResource_2_ComputeBufferDesc_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x009818F0, bool, RenderGraphResource_2_ComputeBufferDesc_System_Object__IsCreated, (RenderGraphResource_2_ComputeBufferDesc_System_Object_ * __this, MethodInfo * method)); @@ -190212,25 +208490,32 @@ DO_APP_FUNC(0x00BF9D80, int32_t, RingBuffer_1_System_Single__get_Capacity, (Ring DO_APP_FUNC(0x003BC2E0, int32_t, RingBuffer_1_System_Single__get_Count, (RingBuffer_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCDD0, void, RingBuffer_1_System_Single__set_Count, (RingBuffer_1_System_Single_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x010426F0, void, RingBuffer_1_System_Object___ctor, (RingBuffer_1_System_Object_ * __this, int32_t param_0000c664, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEEED0, RingBuffer_1_System_Object___ctor__MethodInfo); DO_APP_FUNC(0x01043010, void, RingBuffer_1_System_Object__Clear, (RingBuffer_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01042B50, bool, RingBuffer_1_System_Object__Contains, (RingBuffer_1_System_Object_ * __this, Object * item, MethodInfo * method)); DO_APP_FUNC(0x01042B90, bool, RingBuffer_1_System_Object__Contains_1, (RingBuffer_1_System_Object_ * __this, Object * item, IEqualityComparer_1_System_Object_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010432F0, void, RingBuffer_1_System_Object__DYSdYkEYWlDlRhdAABNmNNytvPnFB, (RingBuffer_1_System_Object_ * __this, int32_t param_0000c677, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEEE90, RingBuffer_1_System_Object__DYSdYkEYWlDlRhdAABNmNNytvPnFB__MethodInfo); DO_APP_FUNC(0x010429B0, Object *, RingBuffer_1_System_Object__Dequeue, (RingBuffer_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEEF00, RingBuffer_1_System_Object__Dequeue__MethodInfo); DO_APP_FUNC(0x010428A0, void, RingBuffer_1_System_Object__Enqueue, (RingBuffer_1_System_Object_ * __this, Object * item, MethodInfo * method)); DO_APP_FUNC(0x01042920, bool, RingBuffer_1_System_Object__EnqueueIfUnique, (RingBuffer_1_System_Object_ * __this, Object * item, MethodInfo * method)); DO_APP_FUNC(0x01042BD0, int32_t, RingBuffer_1_System_Object__IndexOf, (RingBuffer_1_System_Object_ * __this, Object * item, MethodInfo * method)); DO_APP_FUNC(0x01042C00, int32_t, RingBuffer_1_System_Object__IndexOf_1, (RingBuffer_1_System_Object_ * __this, Object * item, IEqualityComparer_1_System_Object_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01042AC0, Object *, RingBuffer_1_System_Object__Peek, (RingBuffer_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEEF08, RingBuffer_1_System_Object__Peek__MethodInfo); DO_APP_FUNC(0x01042C70, bool, RingBuffer_1_System_Object__Remove, (RingBuffer_1_System_Object_ * __this, Object * item, MethodInfo * method)); DO_APP_FUNC(0x01042CA0, bool, RingBuffer_1_System_Object__Remove_1, (RingBuffer_1_System_Object_ * __this, Object * item, IEqualityComparer_1_System_Object_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEEEF8, RingBuffer_1_System_Object__Remove_1__MethodInfo); DO_APP_FUNC(0x01042E10, int32_t, RingBuffer_1_System_Object__RemoveAll, (RingBuffer_1_System_Object_ * __this, Object * item, MethodInfo * method)); DO_APP_FUNC(0x01042E40, int32_t, RingBuffer_1_System_Object__RemoveAll_1, (RingBuffer_1_System_Object_ * __this, Object * item, IEqualityComparer_1_System_Object_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEEEA0, RingBuffer_1_System_Object__RemoveAll_1__MethodInfo); DO_APP_FUNC(0x01042DB0, void, RingBuffer_1_System_Object__RemoveAt, (RingBuffer_1_System_Object_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01043580, void, RingBuffer_1_System_Object__System_Collections_Generic_ICollection_T__Add, (RingBuffer_1_System_Object_ * __this, Object * param_0000c67b, MethodInfo * method)); DO_APP_FUNC(0x010435A0, void, RingBuffer_1_System_Object__System_Collections_Generic_ICollection_T__Clear, (RingBuffer_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010435C0, bool, RingBuffer_1_System_Object__System_Collections_Generic_ICollection_T__Contains, (RingBuffer_1_System_Object_ * __this, Object * param_0000c67c, MethodInfo * method)); DO_APP_FUNC(0x010435F0, void, RingBuffer_1_System_Object__System_Collections_Generic_ICollection_T__CopyTo, (RingBuffer_1_System_Object_ * __this, Object__Array * param_0000c67d, int32_t param_0000c67e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEEE98, RingBuffer_1_System_Object__System_Collections_Generic_ICollection_T__CopyTo__MethodInfo); DO_APP_FUNC(0x010437F0, bool, RingBuffer_1_System_Object__System_Collections_Generic_ICollection_T__Remove, (RingBuffer_1_System_Object_ * __this, Object * param_0000c67f, MethodInfo * method)); DO_APP_FUNC(0x00F928A0, int32_t, RingBuffer_1_System_Object__System_Collections_Generic_ICollection_T__get_Count, (RingBuffer_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, RingBuffer_1_System_Object__System_Collections_Generic_ICollection_T__get_IsReadOnly, (RingBuffer_1_System_Object_ * __this, MethodInfo * method)); @@ -190241,33 +208526,45 @@ DO_APP_FUNC(0x003BC2E0, int32_t, RingBuffer_1_System_Object__get_Capacity, (Ring DO_APP_FUNC(0x003CD280, int32_t, RingBuffer_1_System_Object__get_Count, (RingBuffer_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB330, IEqualityComparer_1_System_Object_ *, RingBuffer_1_System_Object__get_EqualityComparer, (RingBuffer_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01042540, Object *, RingBuffer_1_System_Object__get_Item, (RingBuffer_1_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEEF10, RingBuffer_1_System_Object__get_Item__MethodInfo); DO_APP_FUNC(0x00421680, int32_t, RingBuffer_1_System_Object__get_OverrunCount, (RingBuffer_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01043560, int32_t, RingBuffer_1_System_Object__lhXGxWsJVEYQvdEpPDCjHvczhIWFb, (RingBuffer_1_System_Object_ * __this, int32_t param_0000c67a, MethodInfo * method)); DO_APP_FUNC(0x01043090, int32_t, RingBuffer_1_System_Object__naYeDpzMICzIvCRSZsIHUmadwsGb, (RingBuffer_1_System_Object_ * __this, Object * param_0000c674, MethodInfo * method)); DO_APP_FUNC(0x010430C0, int32_t, RingBuffer_1_System_Object__naYeDpzMICzIvCRSZsIHUmadwsGb_1, (RingBuffer_1_System_Object_ * __this, Object * param_0000c675, IEqualityComparer_1_System_Object_ * param_0000c676, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEEEA8, RingBuffer_1_System_Object__naYeDpzMICzIvCRSZsIHUmadwsGb_1__MethodInfo); DO_APP_FUNC(0x010424B0, void, RingBuffer_1_System_Object__set_EqualityComparer, (RingBuffer_1_System_Object_ * __this, IEqualityComparer_1_System_Object_ * value, MethodInfo * method)); DO_APP_FUNC(0x01042600, void, RingBuffer_1_System_Object__set_Item, (RingBuffer_1_System_Object_ * __this, int32_t index, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEEEE0, RingBuffer_1_System_Object__set_Item__MethodInfo); DO_APP_FUNC(0x010434E0, int32_t, RingBuffer_1_System_Object__uDhBcCYKReLWcRHvZGCJUzdjXhil, (RingBuffer_1_System_Object_ * __this, int32_t param_0000c679, MethodInfo * method)); DO_APP_FUNC(0x01043A80, void, RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq___ctor, (RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * __this, int32_t param_0000c664, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEEEB8, RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq___ctor__MethodInfo); DO_APP_FUNC(0x01043010, void, RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__Clear, (RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFA48, RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__Clear__MethodInfo); DO_APP_FUNC(0x01042B50, bool, RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__Contains, (RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * __this, aQHgSHeigtcamfIWbNaiXaCiVwuq item, MethodInfo * method)); DO_APP_FUNC(0x01042B90, bool, RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__Contains_1, (RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * __this, aQHgSHeigtcamfIWbNaiXaCiVwuq item, IEqualityComparer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010443D0, void, RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__DYSdYkEYWlDlRhdAABNmNNytvPnFB, (RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * __this, int32_t param_0000c677, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEEE88, RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__DYSdYkEYWlDlRhdAABNmNNytvPnFB__MethodInfo); DO_APP_FUNC(0x01043D40, aQHgSHeigtcamfIWbNaiXaCiVwuq, RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__Dequeue, (RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEEE68, RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__Dequeue__MethodInfo); DO_APP_FUNC(0x01043C30, void, RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__Enqueue, (RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * __this, aQHgSHeigtcamfIWbNaiXaCiVwuq item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFA38, RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__Enqueue__MethodInfo); DO_APP_FUNC(0x01043CB0, bool, RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__EnqueueIfUnique, (RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * __this, aQHgSHeigtcamfIWbNaiXaCiVwuq item, MethodInfo * method)); DO_APP_FUNC(0x01042BD0, int32_t, RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__IndexOf, (RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * __this, aQHgSHeigtcamfIWbNaiXaCiVwuq item, MethodInfo * method)); DO_APP_FUNC(0x01042C00, int32_t, RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__IndexOf_1, (RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * __this, aQHgSHeigtcamfIWbNaiXaCiVwuq item, IEqualityComparer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01043E40, aQHgSHeigtcamfIWbNaiXaCiVwuq, RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__Peek, (RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEEE70, RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__Peek__MethodInfo); DO_APP_FUNC(0x01042C70, bool, RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__Remove, (RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * __this, aQHgSHeigtcamfIWbNaiXaCiVwuq item, MethodInfo * method)); DO_APP_FUNC(0x01043ED0, bool, RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__Remove_1, (RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * __this, aQHgSHeigtcamfIWbNaiXaCiVwuq item, IEqualityComparer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEEE58, RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__Remove_1__MethodInfo); DO_APP_FUNC(0x01042E10, int32_t, RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__RemoveAll, (RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * __this, aQHgSHeigtcamfIWbNaiXaCiVwuq item, MethodInfo * method)); DO_APP_FUNC(0x01043FE0, int32_t, RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__RemoveAll_1, (RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * __this, aQHgSHeigtcamfIWbNaiXaCiVwuq item, IEqualityComparer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEEE60, RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__RemoveAll_1__MethodInfo); DO_APP_FUNC(0x01042DB0, void, RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__RemoveAt, (RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01043580, void, RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__System_Collections_Generic_ICollection_T__Add, (RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * __this, aQHgSHeigtcamfIWbNaiXaCiVwuq param_0000c67b, MethodInfo * method)); DO_APP_FUNC(0x010435A0, void, RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__System_Collections_Generic_ICollection_T__Clear, (RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010435C0, bool, RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__System_Collections_Generic_ICollection_T__Contains, (RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * __this, aQHgSHeigtcamfIWbNaiXaCiVwuq param_0000c67c, MethodInfo * method)); DO_APP_FUNC(0x01044580, void, RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__System_Collections_Generic_ICollection_T__CopyTo, (RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * __this, aQHgSHeigtcamfIWbNaiXaCiVwuq__Array * param_0000c67d, int32_t param_0000c67e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEEE78, RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__System_Collections_Generic_ICollection_T__CopyTo__MethodInfo); DO_APP_FUNC(0x010437F0, bool, RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__System_Collections_Generic_ICollection_T__Remove, (RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * __this, aQHgSHeigtcamfIWbNaiXaCiVwuq param_0000c67f, MethodInfo * method)); DO_APP_FUNC(0x00F928A0, int32_t, RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__System_Collections_Generic_ICollection_T__get_Count, (RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__System_Collections_Generic_ICollection_T__get_IsReadOnly, (RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * __this, MethodInfo * method)); @@ -190276,14 +208573,18 @@ DO_APP_FUNC(0x01044730, IEnumerator *, RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq DO_APP_FUNC(0x010434B0, bool, RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__VVGysNBwQopzphlWLjLCnjgnUfxw, (RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * __this, int32_t param_0000c678, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__get_Capacity, (RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003CD280, int32_t, RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__get_Count, (RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFA30, RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__get_Count__MethodInfo); DO_APP_FUNC(0x003BB330, IEqualityComparer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq_ *, RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__get_EqualityComparer, (RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010438F0, aQHgSHeigtcamfIWbNaiXaCiVwuq, RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__get_Item, (RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEEEC8, RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__get_Item__MethodInfo); DO_APP_FUNC(0x00421680, int32_t, RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__get_OverrunCount, (RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01043560, int32_t, RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__lhXGxWsJVEYQvdEpPDCjHvczhIWFb, (RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * __this, int32_t param_0000c67a, MethodInfo * method)); DO_APP_FUNC(0x01043090, int32_t, RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__naYeDpzMICzIvCRSZsIHUmadwsGb, (RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * __this, aQHgSHeigtcamfIWbNaiXaCiVwuq param_0000c674, MethodInfo * method)); DO_APP_FUNC(0x010441B0, int32_t, RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__naYeDpzMICzIvCRSZsIHUmadwsGb_1, (RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * __this, aQHgSHeigtcamfIWbNaiXaCiVwuq param_0000c675, IEqualityComparer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * param_0000c676, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEEE80, RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__naYeDpzMICzIvCRSZsIHUmadwsGb_1__MethodInfo); DO_APP_FUNC(0x010424B0, void, RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__set_EqualityComparer, (RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * __this, IEqualityComparer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * value, MethodInfo * method)); DO_APP_FUNC(0x010439B0, void, RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__set_Item, (RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * __this, int32_t index, aQHgSHeigtcamfIWbNaiXaCiVwuq value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEEEB0, RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__set_Item__MethodInfo); DO_APP_FUNC(0x010434E0, int32_t, RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__uDhBcCYKReLWcRHvZGCJUzdjXhil, (RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * __this, int32_t param_0000c679, MethodInfo * method)); DO_APP_FUNC(0x01045870, void, RoomClientsCollection_1_System_Nullable_1___cctor, (MethodInfo * method)); DO_APP_FUNC(0x01045460, void, RoomClientsCollection_1_System_Nullable_1___ctor, (RoomClientsCollection_1_System_Nullable_1_ * __this, MethodInfo * method)); @@ -190303,8 +208604,8 @@ DO_APP_FUNC(0x010450D0, void, RoomClientsCollection_1_Dissonance_Integrations_Ph DO_APP_FUNC(0x01045320, int32_t, RoomClientsCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__ClientCount, (RoomClientsCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01044F30, bool, RoomClientsCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__Remove, (RoomClientsCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, String * room, ClientInfo_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * client, MethodInfo * method)); DO_APP_FUNC(0x01045C90, void, RoomClientsCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__RemoveFromHashCache, (RoomClientsCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, String * name, MethodInfo * method)); -DO_APP_FUNC(0x01045100, bool, RoomClientsCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__TryGetClientsInRoom, (RoomClientsCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, String * room, List_1_Dissonance_Networking_ClientInfo_1__1 * output, MethodInfo * method)); -DO_APP_FUNC(0x01045F50, bool, RoomClientsCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__TryGetClientsInRoom_1, (RoomClientsCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, uint16_t roomId, List_1_Dissonance_Networking_ClientInfo_1__1 * output, MethodInfo * method)); +DO_APP_FUNC(0x01045100, bool, RoomClientsCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__TryGetClientsInRoom, (RoomClientsCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, String * room, List_1_Dissonance_Networking_ClientInfo_1__2 * output, MethodInfo * method)); +DO_APP_FUNC(0x01045F50, bool, RoomClientsCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__TryGetClientsInRoom_1, (RoomClientsCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, uint16_t roomId, List_1_Dissonance_Networking_ClientInfo_1__2 * output, MethodInfo * method)); DO_APP_FUNC(0x01045870, void, RoomClientsCollection_1_System_Object___cctor, (MethodInfo * method)); DO_APP_FUNC(0x01046BC0, void, RoomClientsCollection_1_System_Object___ctor, (RoomClientsCollection_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01044D60, void, RoomClientsCollection_1_System_Object__Add, (RoomClientsCollection_1_System_Object_ * __this, String * room, ClientInfo_1_System_Object_ * client, MethodInfo * method)); @@ -190313,10 +208614,10 @@ DO_APP_FUNC(0x010450D0, void, RoomClientsCollection_1_System_Object__Clear, (Roo DO_APP_FUNC(0x01045320, int32_t, RoomClientsCollection_1_System_Object__ClientCount, (RoomClientsCollection_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01044F30, bool, RoomClientsCollection_1_System_Object__Remove, (RoomClientsCollection_1_System_Object_ * __this, String * room, ClientInfo_1_System_Object_ * client, MethodInfo * method)); DO_APP_FUNC(0x01046780, void, RoomClientsCollection_1_System_Object__RemoveFromHashCache, (RoomClientsCollection_1_System_Object_ * __this, String * name, MethodInfo * method)); -DO_APP_FUNC(0x01045100, bool, RoomClientsCollection_1_System_Object__TryGetClientsInRoom, (RoomClientsCollection_1_System_Object_ * __this, String * room, List_1_Dissonance_Networking_ClientInfo_1__2 * output, MethodInfo * method)); -DO_APP_FUNC(0x01046A40, bool, RoomClientsCollection_1_System_Object__TryGetClientsInRoom_1, (RoomClientsCollection_1_System_Object_ * __this, uint16_t roomId, List_1_Dissonance_Networking_ClientInfo_1__2 * output, MethodInfo * method)); +DO_APP_FUNC(0x01045100, bool, RoomClientsCollection_1_System_Object__TryGetClientsInRoom, (RoomClientsCollection_1_System_Object_ * __this, String * room, List_1_Dissonance_Networking_ClientInfo_1__4 * output, MethodInfo * method)); +DO_APP_FUNC(0x01046A40, bool, RoomClientsCollection_1_System_Object__TryGetClientsInRoom_1, (RoomClientsCollection_1_System_Object_ * __this, uint16_t roomId, List_1_Dissonance_Networking_ClientInfo_1__4 * output, MethodInfo * method)); DO_APP_FUNC(0x01046FD0, void, GridLookup_1_T_Root_System_Object___ctor, (GridLookup_1_T_Root_System_Object_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A76400, void, STuple_2_System_Object_System_Object___ctor, (STuple_2_System_Object_System_Object___Boxed * __this, Object * a, Object * b, MethodInfo * method)); +DO_APP_FUNC(0x00A76400, void, STuple_2_System_Object_System_Object___ctor, (STuple_2_System_Object_System_Object_ * __this, Object * a, Object * b, MethodInfo * method)); DO_APP_FUNC(0x010470B0, void, SafeAction_1_System_Object___ctor, (SafeAction_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010470D0, void, SafeAction_1_System_Object___ctor_1, (SafeAction_1_System_Object_ * __this, Action_1_Exception_ * param_0000bf9b, MethodInfo * method)); DO_APP_FUNC(0x00FCCCE0, void, SafeAction_1_System_Object___ctor_2, (SafeAction_1_System_Object_ * __this, SafeAction_1_System_Object_ * param_0000bf9c, MethodInfo * method)); @@ -190340,13 +208641,17 @@ DO_APP_FUNC(0x010476F0, Action_2_Object_Object_ *, SafeAction_2_System_Object_Sy DO_APP_FUNC(0x01047780, SafeAction_2_System_Object_System_Object_ *, SafeAction_2_System_Object_System_Object__op_Implicit_1, (Action_2_Object_Object_ * obj, MethodInfo * method)); DO_APP_FUNC(0x01047650, SafeAction_2_System_Object_System_Object_ *, SafeAction_2_System_Object_System_Object__op_Subtraction, (SafeAction_2_System_Object_System_Object_ * eventList, Action_2_Object_Object_ * listener, MethodInfo * method)); DO_APP_FUNC(0x01047AE0, void, SafeDelegate_1_System_Object___ctor, (SafeDelegate_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEEDF0, SafeDelegate_1_System_Object___ctor__MethodInfo); DO_APP_FUNC(0x01047E40, void, SafeDelegate_1_System_Object___ctor_1, (SafeDelegate_1_System_Object_ * __this, Action_1_Exception_ * param_0000bf81, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEEDC8, SafeDelegate_1_System_Object___ctor_1__MethodInfo); DO_APP_FUNC(0x01047F10, void, SafeDelegate_1_System_Object___ctor_2, (SafeDelegate_1_System_Object_ * __this, SafeDelegate_1_System_Object_ * param_0000bf82, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEEDD0, SafeDelegate_1_System_Object___ctor_2__MethodInfo); DO_APP_FUNC(0x01048110, void, SafeDelegate_1_System_Object__AddDelegate, (SafeDelegate_1_System_Object_ * __this, Object * delegate, MethodInfo * method)); DO_APP_FUNC(0x010488D0, void, SafeDelegate_1_System_Object__Clear, (SafeDelegate_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01048DA0, Object *, SafeDelegate_1_System_Object__GetCombinedDelegate, (SafeDelegate_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01048FC0, int32_t, SafeDelegate_1_System_Object__HVujqEvIFcMKdvpImleAuaPcoEPv, (SafeDelegate_1_System_Object_ * __this, Object * param_0000bf88, MethodInfo * method)); DO_APP_FUNC(0x01048900, void, SafeDelegate_1_System_Object__Invoke, (SafeDelegate_1_System_Object_ * __this, Action_2_Object_Object_ * invokeCallback, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEEDB0, SafeDelegate_1_System_Object__Invoke__MethodInfo); DO_APP_FUNC(0x01048370, void, SafeDelegate_1_System_Object__RemoveDelegate, (SafeDelegate_1_System_Object_ * __this, Object * delegate, MethodInfo * method)); DO_APP_FUNC(0x01048620, void, SafeDelegate_1_System_Object__RemoveDelegateOrAllDelegatesFromAnObject, (SafeDelegate_1_System_Object_ * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x00FA2F40, bool, SafeDelegate_1_System_Object__VfpgCWArzMRwmtPRIAXRmxwrgJeEA, (SafeDelegate_1_System_Object_ * __this, Object * param_0000bf87, MethodInfo * method)); @@ -190374,11 +208679,14 @@ DO_APP_FUNC(0x010470D0, void, SafePredicate_1_Rewired_ControllerPollingInfo___ct DO_APP_FUNC(0x00FCCCE0, void, SafePredicate_1_Rewired_ControllerPollingInfo___ctor_2, (SafePredicate_1_Rewired_ControllerPollingInfo_ * __this, SafePredicate_1_Rewired_ControllerPollingInfo_ * param_0000bfbe, MethodInfo * method)); DO_APP_FUNC(0x010471E0, Object *, SafePredicate_1_Rewired_ControllerPollingInfo__Clone, (SafePredicate_1_Rewired_ControllerPollingInfo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01049A40, bool, SafePredicate_1_Rewired_ControllerPollingInfo__Invoke, (SafePredicate_1_Rewired_ControllerPollingInfo_ * __this, ControllerPollingInfo arg0, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC6E88, SafePredicate_1_Rewired_ControllerPollingInfo__Invoke__MethodInfo); DO_APP_FUNC(0x01047260, Action_2_Object_Predicate_1_Rewired_ControllerPollingInfo_ *, SafePredicate_1_Rewired_ControllerPollingInfo__bDVflFQsgOWBIdMdGmAMbRhZrESH, (MethodInfo * method)); DO_APP_FUNC(0x01049BF0, void, SafePredicate_1_Rewired_ControllerPollingInfo__kfojglLKXLBbytPmRSGPXnWCBiWH, (Object * param_0000bfc0, Predicate_1_Rewired_ControllerPollingInfo_ * param_0000bfc1, MethodInfo * method)); DO_APP_FUNC(0x01047520, SafePredicate_1_Rewired_ControllerPollingInfo_ *, SafePredicate_1_Rewired_ControllerPollingInfo__op_Addition, (SafePredicate_1_Rewired_ControllerPollingInfo_ * eventList, Predicate_1_Rewired_ControllerPollingInfo_ * predicate, MethodInfo * method)); DO_APP_FUNC(0x010476F0, Predicate_1_Rewired_ControllerPollingInfo_ *, SafePredicate_1_Rewired_ControllerPollingInfo__op_Implicit, (SafePredicate_1_Rewired_ControllerPollingInfo_ * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC6D20, SafePredicate_1_Rewired_ControllerPollingInfo__op_Implicit__MethodInfo); DO_APP_FUNC(0x01047780, SafePredicate_1_Rewired_ControllerPollingInfo_ *, SafePredicate_1_Rewired_ControllerPollingInfo__op_Implicit_1, (Predicate_1_Rewired_ControllerPollingInfo_ * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC6D00, SafePredicate_1_Rewired_ControllerPollingInfo__op_Implicit_1__MethodInfo); DO_APP_FUNC(0x01047650, SafePredicate_1_Rewired_ControllerPollingInfo_ *, SafePredicate_1_Rewired_ControllerPollingInfo__op_Subtraction, (SafePredicate_1_Rewired_ControllerPollingInfo_ * eventList, Predicate_1_Rewired_ControllerPollingInfo_ * predicate, MethodInfo * method)); DO_APP_FUNC(0x010470B0, void, SafePredicate_1_System_Object___ctor, (SafePredicate_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010470D0, void, SafePredicate_1_System_Object___ctor_1, (SafePredicate_1_System_Object_ * __this, Action_1_Exception_ * param_0000bfbd, MethodInfo * method)); @@ -190391,13 +208699,16 @@ DO_APP_FUNC(0x01047520, SafePredicate_1_System_Object_ *, SafePredicate_1_System DO_APP_FUNC(0x010476F0, Predicate_1_Object_ *, SafePredicate_1_System_Object__op_Implicit, (SafePredicate_1_System_Object_ * obj, MethodInfo * method)); DO_APP_FUNC(0x01047780, SafePredicate_1_System_Object_ *, SafePredicate_1_System_Object__op_Implicit_1, (Predicate_1_Object_ * obj, MethodInfo * method)); DO_APP_FUNC(0x01047650, SafePredicate_1_System_Object_ *, SafePredicate_1_System_Object__op_Subtraction, (SafePredicate_1_System_Object_ * eventList, Predicate_1_Object_ * predicate, MethodInfo * method)); -DO_APP_FUNC(0x01049FB0, void, SavedStructState_1_UnityEngine_InputSystem_InputActionState_GlobalState___ctor, (SavedStructState_1_UnityEngine_InputSystem_InputActionState_GlobalState_ * __this, InputActionState_GlobalState state, SavedStructState_1_T_TypedRestore_UnityEngine_InputSystem_InputActionState_GlobalState_ * restoreAction, Action * staticDisposeCurrentState, MethodInfo * method)); +DO_APP_FUNC(0x01049FB0, void, SavedStructState_1_UnityEngine_InputSystem_InputActionState_GlobalState___ctor, (SavedStructState_1_UnityEngine_InputSystem_InputActionState_GlobalState_ * __this, InputActionState_GlobalState * state, SavedStructState_1_T_TypedRestore_UnityEngine_InputSystem_InputActionState_GlobalState_ * restoreAction, Action * staticDisposeCurrentState, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2560, SavedStructState_1_UnityEngine_InputSystem_InputActionState_GlobalState___ctor__MethodInfo); DO_APP_FUNC(0x0104A270, void, SavedStructState_1_UnityEngine_InputSystem_InputActionState_GlobalState__RestoreSavedState, (SavedStructState_1_UnityEngine_InputSystem_InputActionState_GlobalState_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0104A1E0, void, SavedStructState_1_UnityEngine_InputSystem_InputActionState_GlobalState__StaticDisposeCurrentState, (SavedStructState_1_UnityEngine_InputSystem_InputActionState_GlobalState_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x0104A300, void, SavedStructState_1_UnityEngine_InputSystem_Users_InputUser_GlobalState___ctor, (SavedStructState_1_UnityEngine_InputSystem_Users_InputUser_GlobalState_ * __this, InputUser_GlobalState state, SavedStructState_1_T_TypedRestore_UnityEngine_InputSystem_Users_InputUser_GlobalState_ * restoreAction, Action * staticDisposeCurrentState, MethodInfo * method)); +DO_APP_FUNC(0x0104A300, void, SavedStructState_1_UnityEngine_InputSystem_Users_InputUser_GlobalState___ctor, (SavedStructState_1_UnityEngine_InputSystem_Users_InputUser_GlobalState_ * __this, InputUser_GlobalState * state, SavedStructState_1_T_TypedRestore_UnityEngine_InputSystem_Users_InputUser_GlobalState_ * restoreAction, Action * staticDisposeCurrentState, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD5D0, SavedStructState_1_UnityEngine_InputSystem_Users_InputUser_GlobalState___ctor__MethodInfo); DO_APP_FUNC(0x0104A5F0, void, SavedStructState_1_UnityEngine_InputSystem_Users_InputUser_GlobalState__RestoreSavedState, (SavedStructState_1_UnityEngine_InputSystem_Users_InputUser_GlobalState_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0104A560, void, SavedStructState_1_UnityEngine_InputSystem_Users_InputUser_GlobalState__StaticDisposeCurrentState, (SavedStructState_1_UnityEngine_InputSystem_Users_InputUser_GlobalState_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x0104A680, void, SavedStructState_1_UnityEngine_InputSystem_EnhancedTouch_Touch_GlobalState___ctor, (SavedStructState_1_UnityEngine_InputSystem_EnhancedTouch_Touch_GlobalState_ * __this, Touch_GlobalState state, SavedStructState_1_T_TypedRestore_UnityEngine_InputSystem_EnhancedTouch_Touch_GlobalState_ * restoreAction, Action * staticDisposeCurrentState, MethodInfo * method)); +DO_APP_FUNC(0x0104A680, void, SavedStructState_1_UnityEngine_InputSystem_EnhancedTouch_Touch_GlobalState___ctor, (SavedStructState_1_UnityEngine_InputSystem_EnhancedTouch_Touch_GlobalState_ * __this, Touch_GlobalState * state, SavedStructState_1_T_TypedRestore_UnityEngine_InputSystem_EnhancedTouch_Touch_GlobalState_ * restoreAction, Action * staticDisposeCurrentState, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1538, SavedStructState_1_UnityEngine_InputSystem_EnhancedTouch_Touch_GlobalState___ctor__MethodInfo); DO_APP_FUNC(0x0104A940, void, SavedStructState_1_UnityEngine_InputSystem_EnhancedTouch_Touch_GlobalState__RestoreSavedState, (SavedStructState_1_UnityEngine_InputSystem_EnhancedTouch_Touch_GlobalState_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0104A8B0, void, SavedStructState_1_UnityEngine_InputSystem_EnhancedTouch_Touch_GlobalState__StaticDisposeCurrentState, (SavedStructState_1_UnityEngine_InputSystem_EnhancedTouch_Touch_GlobalState_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ScheduledEvent_1_System_Nullable_1___ctor, (ScheduledEvent_1_System_Nullable_1_ * __this, MethodInfo * method)); @@ -190437,7 +208748,8 @@ DO_APP_FUNC(0x003AE050, void, ScheduledEvent_3_System_Object_System_Object_Syste DO_APP_FUNC(0x0104B380, void, ScheduledEvent_3_System_Object_System_Object_System_Object__Initialize, (ScheduledEvent_3_System_Object_System_Object_System_Object_ * __this, float endTime, ScheduledEventBase_InvokeLocation__Enum invokeLocation, Action_3_Object_Object_Object_ * action, Object * value1, Object * value2, Object * value3, MethodInfo * method)); DO_APP_FUNC(0x0104B4F0, void, ScheduledEvent_3_System_Object_System_Object_System_Object__Invoke, (ScheduledEvent_3_System_Object_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0104C8E0, void, ScriptPlayable_1_System_Object___cctor, (MethodInfo * method)); -DO_APP_FUNC(0x0104C3E0, void, ScriptPlayable_1_System_Object___ctor, (ScriptPlayable_1_System_Object___Boxed * __this, PlayableHandle handle, MethodInfo * method)); +DO_APP_FUNC(0x0104C3E0, void, ScriptPlayable_1_System_Object___ctor, (ScriptPlayable_1_System_Object_ * __this, PlayableHandle handle, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEED50, ScriptPlayable_1_System_Object___ctor__MethodInfo); DO_APP_FUNC(0x0104BF30, Object *, ScriptPlayable_1_System_Object__CloneScriptInstance, (IPlayableBehaviour * source, MethodInfo * method)); DO_APP_FUNC(0x0104C1F0, Object *, ScriptPlayable_1_System_Object__CloneScriptInstanceFromEngineObject, (Object_1 * source, MethodInfo * method)); DO_APP_FUNC(0x0104C390, Object *, ScriptPlayable_1_System_Object__CloneScriptInstanceFromIClonable, (ICloneable * source, MethodInfo * method)); @@ -190445,15 +208757,15 @@ DO_APP_FUNC(0x0104B5E0, ScriptPlayable_1_System_Object_, ScriptPlayable_1_System DO_APP_FUNC(0x0104B730, ScriptPlayable_1_System_Object_, ScriptPlayable_1_System_Object__Create_1, (PlayableGraph graph, Object * template_1, int32_t inputCount, MethodInfo * method)); DO_APP_FUNC(0x0104B880, PlayableHandle, ScriptPlayable_1_System_Object__CreateHandle, (PlayableGraph graph, Object * template_1, int32_t inputCount, MethodInfo * method)); DO_APP_FUNC(0x0104BCE0, Object *, ScriptPlayable_1_System_Object__CreateScriptInstance, (MethodInfo * method)); -DO_APP_FUNC(0x0104C7A0, bool, ScriptPlayable_1_System_Object__Equals, (ScriptPlayable_1_System_Object___Boxed * __this, ScriptPlayable_1_System_Object_ other, MethodInfo * method)); -DO_APP_FUNC(0x0104C5E0, Object *, ScriptPlayable_1_System_Object__GetBehaviour, (ScriptPlayable_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0104C5D0, PlayableHandle, ScriptPlayable_1_System_Object__GetHandle, (ScriptPlayable_1_System_Object___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0104C7A0, bool, ScriptPlayable_1_System_Object__Equals, (ScriptPlayable_1_System_Object_ * __this, ScriptPlayable_1_System_Object_ other, MethodInfo * method)); +DO_APP_FUNC(0x0104C5E0, Object *, ScriptPlayable_1_System_Object__GetBehaviour, (ScriptPlayable_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0104C5D0, PlayableHandle, ScriptPlayable_1_System_Object__GetHandle, (ScriptPlayable_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0104B530, ScriptPlayable_1_System_Object_, ScriptPlayable_1_System_Object__get_Null, (MethodInfo * method)); DO_APP_FUNC(0x0104C6F0, ScriptPlayable_1_System_Object_, ScriptPlayable_1_System_Object__op_Explicit, (Playable playable, MethodInfo * method)); DO_APP_FUNC(0x0104C660, Playable, ScriptPlayable_1_System_Object__op_Implicit, (ScriptPlayable_1_System_Object_ playable, MethodInfo * method)); DO_APP_FUNC(0x0104CA00, void, ConcurrentQueue_1_T_Segment_System_Object___ctor, (ConcurrentQueue_1_T_Segment_System_Object_ * __this, int32_t boundedLength, MethodInfo * method)); DO_APP_FUNC(0x0104CB00, void, ConcurrentQueue_1_T_Segment_System_Object__EnsureFrozenForEnqueues, (ConcurrentQueue_1_T_Segment_System_Object_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x0104CC20, bool, ConcurrentQueue_1_T_Segment_System_Object__TryDequeue, (ConcurrentQueue_1_T_Segment_System_Object_ * __this, Object * item, MethodInfo * method)); +DO_APP_FUNC(0x0104CC20, bool, ConcurrentQueue_1_T_Segment_System_Object__TryDequeue, (ConcurrentQueue_1_T_Segment_System_Object_ * __this, Object * * item, MethodInfo * method)); DO_APP_FUNC(0x0104CE70, bool, ConcurrentQueue_1_T_Segment_System_Object__TryEnqueue, (ConcurrentQueue_1_T_Segment_System_Object_ * __this, Object * item, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, ConcurrentQueue_1_T_Segment_System_Object__get_Capacity, (ConcurrentQueue_1_T_Segment_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0104CAE0, int32_t, ConcurrentQueue_1_T_Segment_System_Object__get_FreezeOffset, (ConcurrentQueue_1_T_Segment_System_Object_ * __this, MethodInfo * method)); @@ -190479,13 +208791,20 @@ DO_APP_FUNC(0x00C741A0, int32_t, SendQueue_1_Dissonance_Integrations_PhotonBolt_ DO_APP_FUNC(0x00C742F0, int32_t, SendQueue_1_Dissonance_Integrations_PhotonBolt_BoltPeer__Drop_1, (ReadonlyLockedValue_1_System_Collections_Generic_List_1__8 * l, MethodInfo * method)); DO_APP_FUNC(0x01050000, void, SendQueue_1_Dissonance_Integrations_PhotonBolt_BoltPeer___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0104D640, void, SendQueue_1_Dissonance_Integrations_PhotonBolt_BoltPeer___ctor, (SendQueue_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, IClient_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * client, ReadonlyLockedValue_1_Dissonance_Datastructures_Pool_1_ * bytePool, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEED20, SendQueue_1_Dissonance_Integrations_PhotonBolt_BoltPeer___ctor__MethodInfo); DO_APP_FUNC(0x0104F0D0, void, SendQueue_1_Dissonance_Integrations_PhotonBolt_BoltPeer__EnqeueUnreliable, (SendQueue_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, ArraySegment_1_Byte_ packet, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEEC50, SendQueue_1_Dissonance_Integrations_PhotonBolt_BoltPeer__EnqeueUnreliable__MethodInfo); DO_APP_FUNC(0x0104FAD0, void, SendQueue_1_Dissonance_Integrations_PhotonBolt_BoltPeer__EnqueueP2P, (SendQueue_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, uint16_t localId, ICollection_1_Dissonance_Networking_ClientInfo_1_ * destinations, ICollection_1_KeyValuePair_2_List_1_Dissonance_Networking_ClientInfo_1_System_ArraySegment_1_ * queue, ArraySegment_1_Byte_ packet, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEEC00, SendQueue_1_Dissonance_Integrations_PhotonBolt_BoltPeer__EnqueueP2P__MethodInfo); DO_APP_FUNC(0x0104EEE0, void, SendQueue_1_Dissonance_Integrations_PhotonBolt_BoltPeer__EnqueueReliable, (SendQueue_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, ArraySegment_1_Byte_ packet, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEEC90, SendQueue_1_Dissonance_Integrations_PhotonBolt_BoltPeer__EnqueueReliable__MethodInfo); DO_APP_FUNC(0x0104F2C0, void, SendQueue_1_Dissonance_Integrations_PhotonBolt_BoltPeer__EnqueueReliableP2P, (SendQueue_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, uint16_t localId, IList_1_Dissonance_Networking_ClientInfo_1_ * destinations, ArraySegment_1_Byte_ packet, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEEC68, SendQueue_1_Dissonance_Integrations_PhotonBolt_BoltPeer__EnqueueReliableP2P__MethodInfo); DO_APP_FUNC(0x0104F540, void, SendQueue_1_Dissonance_Integrations_PhotonBolt_BoltPeer__EnqueueUnreliableP2P, (SendQueue_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, uint16_t localId, IList_1_Dissonance_Networking_ClientInfo_1_ * destinations, ArraySegment_1_Byte_ packet, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEEC40, SendQueue_1_Dissonance_Integrations_PhotonBolt_BoltPeer__EnqueueUnreliableP2P__MethodInfo); DO_APP_FUNC(0x0104F7C0, Byte__Array *, SendQueue_1_Dissonance_Integrations_PhotonBolt_BoltPeer__GetSendBuffer, (SendQueue_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0104F920, void, SendQueue_1_Dissonance_Integrations_PhotonBolt_BoltPeer__RecycleSendBuffer, (SendQueue_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, Byte__Array * buffer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEEC48, SendQueue_1_Dissonance_Integrations_PhotonBolt_BoltPeer__RecycleSendBuffer__MethodInfo); DO_APP_FUNC(0x0104EE10, void, SendQueue_1_Dissonance_Integrations_PhotonBolt_BoltPeer__Stop, (SendQueue_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0104DE40, void, SendQueue_1_Dissonance_Integrations_PhotonBolt_BoltPeer__Update, (SendQueue_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010470B0, void, SerializedDictionary_2_System_Object_System_Object___ctor, (SerializedDictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); @@ -190523,6 +208842,7 @@ DO_APP_FUNC(0x01054300, void, ServerClientState_3_System_Object_System_Object_Di DO_APP_FUNC(0x01054490, void, ServerClientState_3_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer__InvokeOnExitedRoom, (ServerClientState_3_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x010546D0, void, ServerClientState_3_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer__InvokeOnVoicePacket, (ServerClientState_3_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, PacketReader reader, MethodInfo * method)); DO_APP_FUNC(0x01053D20, void, ServerClientState_3_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer__RemoveFromRoom, (ServerClientState_3_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, String * roomName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEEAA8, ServerClientState_3_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer__RemoveFromRoom__MethodInfo); DO_APP_FUNC(0x01054050, void, ServerClientState_3_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer__Reset, (ServerClientState_3_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010545C0, void, ServerClientState_3_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer__UpdateChannels, (ServerClientState_3_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, List_1_Dissonance_RemoteChannel_ * channels, MethodInfo * method)); DO_APP_FUNC(0x01052A90, void, ServerClientState_3_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer__add_OnStartedListeningToRoom, (ServerClientState_3_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, Action_2_Dissonance_Networking_Server_Admin_IServerClientState_String_ * value, MethodInfo * method)); @@ -190545,16 +208865,17 @@ DO_APP_FUNC(0x010531A0, void, ServerClientState_3_System_Object_System_Object_Di DO_APP_FUNC(0x010534B0, void, ServerClientState_3_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer__set_LastChannelUpdateUtc, (ServerClientState_3_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, DateTime value, MethodInfo * method)); DO_APP_FUNC(0x01055FF0, void, ServerRelay_1_Dissonance_Integrations_PhotonBolt_BoltPeer___cctor, (MethodInfo * method)); DO_APP_FUNC(0x01055670, void, ServerRelay_1_Dissonance_Integrations_PhotonBolt_BoltPeer___ctor, (ServerRelay_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, IServer_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * server, BaseClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * peers, MethodInfo * method)); -DO_APP_FUNC(0x010558A0, void, ServerRelay_1_Dissonance_Integrations_PhotonBolt_BoltPeer__ProcessPacketRelay, (ServerRelay_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, PacketReader reader, bool reliable, BoltPeer source, MethodInfo * method)); +DO_APP_FUNC(0x010558A0, void, ServerRelay_1_Dissonance_Integrations_PhotonBolt_BoltPeer__ProcessPacketRelay, (ServerRelay_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, PacketReader * reader, bool reliable, BoltPeer source, MethodInfo * method)); DO_APP_FUNC(0x01055450, void, ServerRelay_1_Dissonance_Integrations_PhotonBolt_BoltPeer__add_OnRelayingPacket, (ServerRelay_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, Action_2_ArraySegment_1_Byte_Dissonance_Integrations_PhotonBolt_BoltPeer_ * value, MethodInfo * method)); DO_APP_FUNC(0x01055560, void, ServerRelay_1_Dissonance_Integrations_PhotonBolt_BoltPeer__remove_OnRelayingPacket, (ServerRelay_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, Action_2_ArraySegment_1_Byte_Dissonance_Integrations_PhotonBolt_BoltPeer_ * value, MethodInfo * method)); DO_APP_FUNC(0x01056B10, void, ServerRelay_1_System_Object___cctor, (MethodInfo * method)); DO_APP_FUNC(0x01056190, void, ServerRelay_1_System_Object___ctor, (ServerRelay_1_System_Object_ * __this, IServer_1_System_Object_ * server, BaseClientCollection_1_System_Object_ * peers, MethodInfo * method)); -DO_APP_FUNC(0x010563C0, void, ServerRelay_1_System_Object__ProcessPacketRelay, (ServerRelay_1_System_Object_ * __this, PacketReader reader, bool reliable, Object * source, MethodInfo * method)); +DO_APP_FUNC(0x010563C0, void, ServerRelay_1_System_Object__ProcessPacketRelay, (ServerRelay_1_System_Object_ * __this, PacketReader * reader, bool reliable, Object * source, MethodInfo * method)); DO_APP_FUNC(0x01055450, void, ServerRelay_1_System_Object__add_OnRelayingPacket, (ServerRelay_1_System_Object_ * __this, Action_2_ArraySegment_1_Byte_Object_ * value, MethodInfo * method)); DO_APP_FUNC(0x01055560, void, ServerRelay_1_System_Object__remove_OnRelayingPacket, (ServerRelay_1_System_Object_ * __this, Action_2_ArraySegment_1_Byte_Object_ * value, MethodInfo * method)); DO_APP_FUNC(0x01056D40, void, ServiceContainer_ServiceCollection_1_System_Object___cctor, (MethodInfo * method)); DO_APP_FUNC(0x01056CB0, void, ServiceContainer_ServiceCollection_1_System_Object___ctor, (ServiceContainer_ServiceCollection_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2718, ServiceContainer_ServiceCollection_1_System_Object___ctor__MethodInfo); DO_APP_FUNC(0x01056EC0, void, BaseCommsNetwork_5_TServer_TClient_TPeer_TClientParam_TServerParam_Session_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit___ctor, (BaseCommsNetwork_5_TServer_TClient_TPeer_TClientParam_TServerParam_Session_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit_ * __this, BaseCommsNetwork_5_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit_ * net, NetworkMode__Enum mode, Unit serverParameter, Unit clientParameter, MethodInfo * method)); DO_APP_FUNC(0x01057090, void, BaseCommsNetwork_5_TServer_TClient_TPeer_TClientParam_TServerParam_Session_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit__Enter, (BaseCommsNetwork_5_TServer_TClient_TPeer_TClientParam_TServerParam_Session_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010574C0, void, BaseCommsNetwork_5_TServer_TClient_TPeer_TClientParam_TServerParam_Session_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit__Exit, (BaseCommsNetwork_5_TServer_TClient_TPeer_TClientParam_TServerParam_Session_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit_ * __this, MethodInfo * method)); @@ -190563,22 +208884,28 @@ DO_APP_FUNC(0x010575D0, void, BaseCommsNetwork_5_TServer_TClient_TPeer_TClientPa DO_APP_FUNC(0x01057590, void, BaseCommsNetwork_5_TServer_TClient_TPeer_TClientParam_TServerParam_Session_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit__StartServer, (BaseCommsNetwork_5_TServer_TClient_TPeer_TClientParam_TServerParam_Session_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01057130, void, BaseCommsNetwork_5_TServer_TClient_TPeer_TClientParam_TServerParam_Session_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit__Update, (BaseCommsNetwork_5_TServer_TClient_TPeer_TClientParam_TServerParam_Session_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01056F30, ConnectionStatus__Enum, BaseCommsNetwork_5_TServer_TClient_TPeer_TClientParam_TServerParam_Session_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit__get_Status, (BaseCommsNetwork_5_TServer_TClient_TPeer_TClientParam_TServerParam_Session_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x01057710, void, SetAndRestoreVar_1_System_Boolean___ctor, (SetAndRestoreVar_1_System_Boolean___Boxed * __this, bool param_0000c580, bool param_0000c581, Action_1_Boolean_ * param_0000c582, MethodInfo * method)); -DO_APP_FUNC(0x01057840, void, SetAndRestoreVar_1_System_Boolean__Dispose, (SetAndRestoreVar_1_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010578D0, void, SetAndRestoreVar_1_System_Object___ctor, (SetAndRestoreVar_1_System_Object___Boxed * __this, Object * param_0000c580, Object * param_0000c581, Action_1_Object_ * param_0000c582, MethodInfo * method)); -DO_APP_FUNC(0x01057A60, void, SetAndRestoreVar_1_System_Object__Dispose, (SetAndRestoreVar_1_System_Object___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01057710, void, SetAndRestoreVar_1_System_Boolean___ctor, (SetAndRestoreVar_1_System_Boolean_ * __this, bool param_0000c580, bool param_0000c581, Action_1_Boolean_ * param_0000c582, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF16E8, SetAndRestoreVar_1_System_Boolean___ctor__MethodInfo); +DO_APP_FUNC(0x01057840, void, SetAndRestoreVar_1_System_Boolean__Dispose, (SetAndRestoreVar_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7390, SetAndRestoreVar_1_System_Boolean__Dispose__MethodInfo); +DO_APP_FUNC(0x010578D0, void, SetAndRestoreVar_1_System_Object___ctor, (SetAndRestoreVar_1_System_Object_ * __this, Object * param_0000c580, Object * param_0000c581, Action_1_Object_ * param_0000c582, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF16C0, SetAndRestoreVar_1_System_Object___ctor__MethodInfo); +DO_APP_FUNC(0x01057A60, void, SetAndRestoreVar_1_System_Object__Dispose, (SetAndRestoreVar_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01057AF0, void, Set_1_System_Int32___ctor, (Set_1_System_Int32_ * __this, IEqualityComparer_1_System_Int32_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01057CA0, bool, Set_1_System_Int32__Add, (Set_1_System_Int32_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01057CE0, bool, Set_1_System_Int32__Find, (Set_1_System_Int32_ * __this, int32_t value, bool add, MethodInfo * method)); DO_APP_FUNC(0x01058180, int32_t, Set_1_System_Int32__InternalGetHashCode, (Set_1_System_Int32_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x01057F40, void, Set_1_System_Int32__Resize, (Set_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF16C8, Set_1_System_Int32__Resize__MethodInfo); DO_APP_FUNC(0x010581E0, void, Set_1_System_Object___ctor, (Set_1_System_Object_ * __this, IEqualityComparer_1_System_Object_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01057CA0, bool, Set_1_System_Object__Add, (Set_1_System_Object_ * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01058390, bool, Set_1_System_Object__Find, (Set_1_System_Object_ * __this, Object * value, bool add, MethodInfo * method)); DO_APP_FUNC(0x010588A0, int32_t, Set_1_System_Object__InternalGetHashCode, (Set_1_System_Object_ * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01058660, void, Set_1_System_Object__Resize, (Set_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF16B0, Set_1_System_Object__Resize__MethodInfo); DO_APP_FUNC(0x01058910, void, ShaderInfoStorage_1_UnityEngine_Color___ctor, (ShaderInfoStorage_1_UnityEngine_Color_ * __this, TextureFormat__Enum format, Func_2_UnityEngine_Color_UnityEngine_Color_ * convert, int32_t initialSize, int32_t maxSize, MethodInfo * method)); -DO_APP_FUNC(0x01058C70, bool, ShaderInfoStorage_1_UnityEngine_Color__AllocateRect, (ShaderInfoStorage_1_UnityEngine_Color_ * __this, int32_t width, int32_t height, RectInt uvs, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB3E8, ShaderInfoStorage_1_UnityEngine_Color___ctor__MethodInfo); +DO_APP_FUNC(0x01058C70, bool, ShaderInfoStorage_1_UnityEngine_Color__AllocateRect, (ShaderInfoStorage_1_UnityEngine_Color_ * __this, int32_t width, int32_t height, RectInt * uvs, MethodInfo * method)); DO_APP_FUNC(0x010595E0, void, ShaderInfoStorage_1_UnityEngine_Color__CpuBlit, (NativeArray_1_UnityEngine_Color_ src, int32_t srcWidth, int32_t srcHeight, NativeArray_1_UnityEngine_Color_ dst, int32_t dstWidth, int32_t dstHeight, MethodInfo * method)); DO_APP_FUNC(0x01059090, void, ShaderInfoStorage_1_UnityEngine_Color__CreateOrExpandTexture, (ShaderInfoStorage_1_UnityEngine_Color_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01058B10, void, ShaderInfoStorage_1_UnityEngine_Color__Dispose, (ShaderInfoStorage_1_UnityEngine_Color_ * __this, bool disposing, MethodInfo * method)); @@ -190586,7 +208913,8 @@ DO_APP_FUNC(0x01058E10, void, ShaderInfoStorage_1_UnityEngine_Color__SetTexel, ( DO_APP_FUNC(0x01058F40, void, ShaderInfoStorage_1_UnityEngine_Color__UpdateTexture, (ShaderInfoStorage_1_UnityEngine_Color_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7320, Texture2D *, ShaderInfoStorage_1_UnityEngine_Color__get_texture, (ShaderInfoStorage_1_UnityEngine_Color_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010596F0, void, ShaderInfoStorage_1_UnityEngine_Color32___ctor, (ShaderInfoStorage_1_UnityEngine_Color32_ * __this, TextureFormat__Enum format, Func_2_UnityEngine_Color_UnityEngine_Color32_ * convert, int32_t initialSize, int32_t maxSize, MethodInfo * method)); -DO_APP_FUNC(0x01059A50, bool, ShaderInfoStorage_1_UnityEngine_Color32__AllocateRect, (ShaderInfoStorage_1_UnityEngine_Color32_ * __this, int32_t width, int32_t height, RectInt uvs, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB3C8, ShaderInfoStorage_1_UnityEngine_Color32___ctor__MethodInfo); +DO_APP_FUNC(0x01059A50, bool, ShaderInfoStorage_1_UnityEngine_Color32__AllocateRect, (ShaderInfoStorage_1_UnityEngine_Color32_ * __this, int32_t width, int32_t height, RectInt * uvs, MethodInfo * method)); DO_APP_FUNC(0x0105A3B0, void, ShaderInfoStorage_1_UnityEngine_Color32__CpuBlit, (NativeArray_1_UnityEngine_Color32_ src, int32_t srcWidth, int32_t srcHeight, NativeArray_1_UnityEngine_Color32_ dst, int32_t dstWidth, int32_t dstHeight, MethodInfo * method)); DO_APP_FUNC(0x01059E60, void, ShaderInfoStorage_1_UnityEngine_Color32__CreateOrExpandTexture, (ShaderInfoStorage_1_UnityEngine_Color32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010598F0, void, ShaderInfoStorage_1_UnityEngine_Color32__Dispose, (ShaderInfoStorage_1_UnityEngine_Color32_ * __this, bool disposing, MethodInfo * method)); @@ -190601,26 +208929,35 @@ DO_APP_FUNC(0x0105A4B0, Object *, RenderGraphObjectPool_SharedObjectPool_1_Syste DO_APP_FUNC(0x0105A570, void, RenderGraphObjectPool_SharedObjectPool_1_System_Object__Release, (RenderGraphObjectPool_SharedObjectPool_1_System_Object_ * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x0105A740, RenderGraphObjectPool_SharedObjectPool_1_System_Object_ *, RenderGraphObjectPool_SharedObjectPool_1_System_Object__get_sharedPool, (MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SharedVariable_1_System_Boolean___ctor, (SharedVariable_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5028, SharedVariable_1_System_Boolean___ctor__MethodInfo); DO_APP_FUNC(0x0105B580, Object *, SharedVariable_1_System_Boolean__GetValue, (SharedVariable_1_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0105AB70, void, SharedVariable_1_System_Boolean__InitializePropertyMapping, (SharedVariable_1_System_Boolean_ * __this, BehaviorSource * behaviorSource, MethodInfo * method)); DO_APP_FUNC(0x0105B5F0, void, SharedVariable_1_System_Boolean__SetValue, (SharedVariable_1_System_Boolean_ * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x0105B7F0, String *, SharedVariable_1_System_Boolean__ToString, (SharedVariable_1_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0105B4E0, bool, SharedVariable_1_System_Boolean__get_Value, (SharedVariable_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4E08, SharedVariable_1_System_Boolean__get_Value__MethodInfo); DO_APP_FUNC(0x0105B530, void, SharedVariable_1_System_Boolean__set_Value, (SharedVariable_1_System_Boolean_ * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE49D0, SharedVariable_1_System_Boolean__set_Value__MethodInfo); DO_APP_FUNC(0x003AE050, void, SharedVariable_1_UnityEngine_Color___ctor, (SharedVariable_1_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5008, SharedVariable_1_UnityEngine_Color___ctor__MethodInfo); DO_APP_FUNC(0x0105C310, Object *, SharedVariable_1_UnityEngine_Color__GetValue, (SharedVariable_1_UnityEngine_Color_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0105B8E0, void, SharedVariable_1_UnityEngine_Color__InitializePropertyMapping, (SharedVariable_1_UnityEngine_Color_ * __this, BehaviorSource * behaviorSource, MethodInfo * method)); DO_APP_FUNC(0x0105C390, void, SharedVariable_1_UnityEngine_Color__SetValue, (SharedVariable_1_UnityEngine_Color_ * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x0105C5A0, String *, SharedVariable_1_UnityEngine_Color__ToString, (SharedVariable_1_UnityEngine_Color_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0105C250, Color, SharedVariable_1_UnityEngine_Color__get_Value, (SharedVariable_1_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6D90, SharedVariable_1_UnityEngine_Color__get_Value__MethodInfo); DO_APP_FUNC(0x0105C2C0, void, SharedVariable_1_UnityEngine_Color__set_Value, (SharedVariable_1_UnityEngine_Color_ * __this, Color value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6CC0, SharedVariable_1_UnityEngine_Color__set_Value__MethodInfo); DO_APP_FUNC(0x003AE050, void, SharedVariable_1_System_Int32___ctor, (SharedVariable_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4FB0, SharedVariable_1_System_Int32___ctor__MethodInfo); DO_APP_FUNC(0x0105D060, Object *, SharedVariable_1_System_Int32__GetValue, (SharedVariable_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0105C650, void, SharedVariable_1_System_Int32__InitializePropertyMapping, (SharedVariable_1_System_Int32_ * __this, BehaviorSource * behaviorSource, MethodInfo * method)); DO_APP_FUNC(0x0105D0D0, void, SharedVariable_1_System_Int32__SetValue, (SharedVariable_1_System_Int32_ * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x0105D2D0, String *, SharedVariable_1_System_Int32__ToString, (SharedVariable_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0105CFC0, int32_t, SharedVariable_1_System_Int32__get_Value, (SharedVariable_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4D10, SharedVariable_1_System_Int32__get_Value__MethodInfo); DO_APP_FUNC(0x0105D010, void, SharedVariable_1_System_Int32__set_Value, (SharedVariable_1_System_Int32_ * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE49A8, SharedVariable_1_System_Int32__set_Value__MethodInfo); DO_APP_FUNC(0x003AE050, void, SharedVariable_1_System_Int32Enum___ctor, (SharedVariable_1_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0105D060, Object *, SharedVariable_1_System_Int32Enum__GetValue, (SharedVariable_1_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0105D3E0, void, SharedVariable_1_System_Int32Enum__InitializePropertyMapping, (SharedVariable_1_System_Int32Enum_ * __this, BehaviorSource * behaviorSource, MethodInfo * method)); @@ -190629,12 +208966,15 @@ DO_APP_FUNC(0x0105DF50, String *, SharedVariable_1_System_Int32Enum__ToString, ( DO_APP_FUNC(0x0105CFC0, Int32Enum__Enum, SharedVariable_1_System_Int32Enum__get_Value, (SharedVariable_1_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0105D010, void, SharedVariable_1_System_Int32Enum__set_Value, (SharedVariable_1_System_Int32Enum_ * __this, Int32Enum__Enum value, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SharedVariable_1_UnityEngine_LayerMask___ctor, (SharedVariable_1_UnityEngine_LayerMask_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4F98, SharedVariable_1_UnityEngine_LayerMask___ctor__MethodInfo); DO_APP_FUNC(0x0105D060, Object *, SharedVariable_1_UnityEngine_LayerMask__GetValue, (SharedVariable_1_UnityEngine_LayerMask_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0105E010, void, SharedVariable_1_UnityEngine_LayerMask__InitializePropertyMapping, (SharedVariable_1_UnityEngine_LayerMask_ * __this, BehaviorSource * behaviorSource, MethodInfo * method)); DO_APP_FUNC(0x0105E9C0, void, SharedVariable_1_UnityEngine_LayerMask__SetValue, (SharedVariable_1_UnityEngine_LayerMask_ * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x0105EBC0, String *, SharedVariable_1_UnityEngine_LayerMask__ToString, (SharedVariable_1_UnityEngine_LayerMask_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0105CFC0, LayerMask, SharedVariable_1_UnityEngine_LayerMask__get_Value, (SharedVariable_1_UnityEngine_LayerMask_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBA70, SharedVariable_1_UnityEngine_LayerMask__get_Value__MethodInfo); DO_APP_FUNC(0x0105E980, void, SharedVariable_1_UnityEngine_LayerMask__set_Value, (SharedVariable_1_UnityEngine_LayerMask_ * __this, LayerMask value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4FA8, SharedVariable_1_UnityEngine_LayerMask__set_Value__MethodInfo); DO_APP_FUNC(0x003AE050, void, SharedVariable_1_System_Object___ctor, (SharedVariable_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0105F6E0, Object *, SharedVariable_1_System_Object__GetValue, (SharedVariable_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0105EC80, void, SharedVariable_1_System_Object__InitializePropertyMapping, (SharedVariable_1_System_Object_ * __this, BehaviorSource * behaviorSource, MethodInfo * method)); @@ -190643,32 +208983,43 @@ DO_APP_FUNC(0x0105FA80, String *, SharedVariable_1_System_Object__ToString, (Sha DO_APP_FUNC(0x0105F5F0, Object *, SharedVariable_1_System_Object__get_Value, (SharedVariable_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0105F640, void, SharedVariable_1_System_Object__set_Value, (SharedVariable_1_System_Object_ * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SharedVariable_1_UnityEngine_Quaternion___ctor, (SharedVariable_1_UnityEngine_Quaternion_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4F58, SharedVariable_1_UnityEngine_Quaternion___ctor__MethodInfo); DO_APP_FUNC(0x0105C310, Object *, SharedVariable_1_UnityEngine_Quaternion__GetValue, (SharedVariable_1_UnityEngine_Quaternion_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0105FB50, void, SharedVariable_1_UnityEngine_Quaternion__InitializePropertyMapping, (SharedVariable_1_UnityEngine_Quaternion_ * __this, BehaviorSource * behaviorSource, MethodInfo * method)); DO_APP_FUNC(0x010604C0, void, SharedVariable_1_UnityEngine_Quaternion__SetValue, (SharedVariable_1_UnityEngine_Quaternion_ * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x010606D0, String *, SharedVariable_1_UnityEngine_Quaternion__ToString, (SharedVariable_1_UnityEngine_Quaternion_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0105C250, Quaternion, SharedVariable_1_UnityEngine_Quaternion__get_Value, (SharedVariable_1_UnityEngine_Quaternion_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6F20, SharedVariable_1_UnityEngine_Quaternion__get_Value__MethodInfo); DO_APP_FUNC(0x0105C2C0, void, SharedVariable_1_UnityEngine_Quaternion__set_Value, (SharedVariable_1_UnityEngine_Quaternion_ * __this, Quaternion value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6FD8, SharedVariable_1_UnityEngine_Quaternion__set_Value__MethodInfo); DO_APP_FUNC(0x003AE050, void, SharedVariable_1_UnityEngine_Rect___ctor, (SharedVariable_1_UnityEngine_Rect_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4F48, SharedVariable_1_UnityEngine_Rect___ctor__MethodInfo); DO_APP_FUNC(0x0105C310, Object *, SharedVariable_1_UnityEngine_Rect__GetValue, (SharedVariable_1_UnityEngine_Rect_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01060780, void, SharedVariable_1_UnityEngine_Rect__InitializePropertyMapping, (SharedVariable_1_UnityEngine_Rect_ * __this, BehaviorSource * behaviorSource, MethodInfo * method)); DO_APP_FUNC(0x010610F0, void, SharedVariable_1_UnityEngine_Rect__SetValue, (SharedVariable_1_UnityEngine_Rect_ * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01061300, String *, SharedVariable_1_UnityEngine_Rect__ToString, (SharedVariable_1_UnityEngine_Rect_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0105C250, Rect, SharedVariable_1_UnityEngine_Rect__get_Value, (SharedVariable_1_UnityEngine_Rect_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6D20, SharedVariable_1_UnityEngine_Rect__get_Value__MethodInfo); DO_APP_FUNC(0x0105C2C0, void, SharedVariable_1_UnityEngine_Rect__set_Value, (SharedVariable_1_UnityEngine_Rect_ * __this, Rect value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6C80, SharedVariable_1_UnityEngine_Rect__set_Value__MethodInfo); DO_APP_FUNC(0x003AE050, void, SharedVariable_1_System_Single___ctor, (SharedVariable_1_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4FF0, SharedVariable_1_System_Single___ctor__MethodInfo); DO_APP_FUNC(0x01061DB0, Object *, SharedVariable_1_System_Single__GetValue, (SharedVariable_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010613B0, void, SharedVariable_1_System_Single__InitializePropertyMapping, (SharedVariable_1_System_Single_ * __this, BehaviorSource * behaviorSource, MethodInfo * method)); DO_APP_FUNC(0x01061E20, void, SharedVariable_1_System_Single__SetValue, (SharedVariable_1_System_Single_ * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01062020, String *, SharedVariable_1_System_Single__ToString, (SharedVariable_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01061D20, float, SharedVariable_1_System_Single__get_Value, (SharedVariable_1_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4C60, SharedVariable_1_System_Single__get_Value__MethodInfo); DO_APP_FUNC(0x01061D70, void, SharedVariable_1_System_Single__set_Value, (SharedVariable_1_System_Single_ * __this, float value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4FF8, SharedVariable_1_System_Single__set_Value__MethodInfo); DO_APP_FUNC(0x003AE050, void, SharedVariable_1_System_UInt32___ctor, (SharedVariable_1_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4F08, SharedVariable_1_System_UInt32___ctor__MethodInfo); DO_APP_FUNC(0x0105D060, Object *, SharedVariable_1_System_UInt32__GetValue, (SharedVariable_1_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01062100, void, SharedVariable_1_System_UInt32__InitializePropertyMapping, (SharedVariable_1_System_UInt32_ * __this, BehaviorSource * behaviorSource, MethodInfo * method)); DO_APP_FUNC(0x01062A70, void, SharedVariable_1_System_UInt32__SetValue, (SharedVariable_1_System_UInt32_ * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01062C70, String *, SharedVariable_1_System_UInt32__ToString, (SharedVariable_1_System_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0105CFC0, uint32_t, SharedVariable_1_System_UInt32__get_Value, (SharedVariable_1_System_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEBE50, SharedVariable_1_System_UInt32__get_Value__MethodInfo); DO_APP_FUNC(0x0105D010, void, SharedVariable_1_System_UInt32__set_Value, (SharedVariable_1_System_UInt32_ * __this, uint32_t value, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SharedVariable_1_System_UInt32Enum___ctor, (SharedVariable_1_System_UInt32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0105D060, Object *, SharedVariable_1_System_UInt32Enum__GetValue, (SharedVariable_1_System_UInt32Enum_ * __this, MethodInfo * method)); @@ -190678,13 +209029,17 @@ DO_APP_FUNC(0x010638F0, String *, SharedVariable_1_System_UInt32Enum__ToString, DO_APP_FUNC(0x0105CFC0, UInt32Enum__Enum, SharedVariable_1_System_UInt32Enum__get_Value, (SharedVariable_1_System_UInt32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0105D010, void, SharedVariable_1_System_UInt32Enum__set_Value, (SharedVariable_1_System_UInt32Enum_ * __this, UInt32Enum__Enum value, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SharedVariable_1_UnityEngine_Vector2___ctor, (SharedVariable_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4EF8, SharedVariable_1_UnityEngine_Vector2___ctor__MethodInfo); DO_APP_FUNC(0x010643D0, Object *, SharedVariable_1_UnityEngine_Vector2__GetValue, (SharedVariable_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010639B0, void, SharedVariable_1_UnityEngine_Vector2__InitializePropertyMapping, (SharedVariable_1_UnityEngine_Vector2_ * __this, BehaviorSource * behaviorSource, MethodInfo * method)); DO_APP_FUNC(0x01064430, void, SharedVariable_1_UnityEngine_Vector2__SetValue, (SharedVariable_1_UnityEngine_Vector2_ * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01064650, String *, SharedVariable_1_UnityEngine_Vector2__ToString, (SharedVariable_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01064320, Vector2, SharedVariable_1_UnityEngine_Vector2__get_Value, (SharedVariable_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE48E0, SharedVariable_1_UnityEngine_Vector2__get_Value__MethodInfo); DO_APP_FUNC(0x01064380, void, SharedVariable_1_UnityEngine_Vector2__set_Value, (SharedVariable_1_UnityEngine_Vector2_ * __this, Vector2 value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE48E8, SharedVariable_1_UnityEngine_Vector2__set_Value__MethodInfo); DO_APP_FUNC(0x003AE050, void, SharedVariable_1_UnityEngine_Vector2Int___ctor, (SharedVariable_1_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4EE8, SharedVariable_1_UnityEngine_Vector2Int___ctor__MethodInfo); DO_APP_FUNC(0x01065090, Object *, SharedVariable_1_UnityEngine_Vector2Int__GetValue, (SharedVariable_1_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010646E0, void, SharedVariable_1_UnityEngine_Vector2Int__InitializePropertyMapping, (SharedVariable_1_UnityEngine_Vector2Int_ * __this, BehaviorSource * behaviorSource, MethodInfo * method)); DO_APP_FUNC(0x01065100, void, SharedVariable_1_UnityEngine_Vector2Int__SetValue, (SharedVariable_1_UnityEngine_Vector2Int_ * __this, Object * value, MethodInfo * method)); @@ -190692,13 +209047,17 @@ DO_APP_FUNC(0x01065300, String *, SharedVariable_1_UnityEngine_Vector2Int__ToStr DO_APP_FUNC(0x0105F5F0, Vector2Int, SharedVariable_1_UnityEngine_Vector2Int__get_Value, (SharedVariable_1_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01065050, void, SharedVariable_1_UnityEngine_Vector2Int__set_Value, (SharedVariable_1_UnityEngine_Vector2Int_ * __this, Vector2Int value, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SharedVariable_1_UnityEngine_Vector3___ctor, (SharedVariable_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4ED8, SharedVariable_1_UnityEngine_Vector3___ctor__MethodInfo); DO_APP_FUNC(0x01065DF0, Object *, SharedVariable_1_UnityEngine_Vector3__GetValue, (SharedVariable_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010653A0, void, SharedVariable_1_UnityEngine_Vector3__InitializePropertyMapping, (SharedVariable_1_UnityEngine_Vector3_ * __this, BehaviorSource * behaviorSource, MethodInfo * method)); DO_APP_FUNC(0x01065E70, void, SharedVariable_1_UnityEngine_Vector3__SetValue, (SharedVariable_1_UnityEngine_Vector3_ * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x010660A0, String *, SharedVariable_1_UnityEngine_Vector3__ToString, (SharedVariable_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01065D10, Vector3, SharedVariable_1_UnityEngine_Vector3__get_Value, (SharedVariable_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE48F8, SharedVariable_1_UnityEngine_Vector3__get_Value__MethodInfo); DO_APP_FUNC(0x01065D90, void, SharedVariable_1_UnityEngine_Vector3__set_Value, (SharedVariable_1_UnityEngine_Vector3_ * __this, Vector3 value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE48F0, SharedVariable_1_UnityEngine_Vector3__set_Value__MethodInfo); DO_APP_FUNC(0x003AE050, void, SharedVariable_1_UnityEngine_Vector3Int___ctor, (SharedVariable_1_UnityEngine_Vector3Int_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4EC8, SharedVariable_1_UnityEngine_Vector3Int___ctor__MethodInfo); DO_APP_FUNC(0x01065DF0, Object *, SharedVariable_1_UnityEngine_Vector3Int__GetValue, (SharedVariable_1_UnityEngine_Vector3Int_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01066150, void, SharedVariable_1_UnityEngine_Vector3Int__InitializePropertyMapping, (SharedVariable_1_UnityEngine_Vector3Int_ * __this, BehaviorSource * behaviorSource, MethodInfo * method)); DO_APP_FUNC(0x01066AC0, void, SharedVariable_1_UnityEngine_Vector3Int__SetValue, (SharedVariable_1_UnityEngine_Vector3Int_ * __this, Object * value, MethodInfo * method)); @@ -190706,12 +209065,15 @@ DO_APP_FUNC(0x01066CF0, String *, SharedVariable_1_UnityEngine_Vector3Int__ToStr DO_APP_FUNC(0x01065D10, Vector3Int, SharedVariable_1_UnityEngine_Vector3Int__get_Value, (SharedVariable_1_UnityEngine_Vector3Int_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01065D90, void, SharedVariable_1_UnityEngine_Vector3Int__set_Value, (SharedVariable_1_UnityEngine_Vector3Int_ * __this, Vector3Int value, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SharedVariable_1_UnityEngine_Vector4___ctor, (SharedVariable_1_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4EB8, SharedVariable_1_UnityEngine_Vector4___ctor__MethodInfo); DO_APP_FUNC(0x0105C310, Object *, SharedVariable_1_UnityEngine_Vector4__GetValue, (SharedVariable_1_UnityEngine_Vector4_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01066DA0, void, SharedVariable_1_UnityEngine_Vector4__InitializePropertyMapping, (SharedVariable_1_UnityEngine_Vector4_ * __this, BehaviorSource * behaviorSource, MethodInfo * method)); DO_APP_FUNC(0x01067710, void, SharedVariable_1_UnityEngine_Vector4__SetValue, (SharedVariable_1_UnityEngine_Vector4_ * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01067920, String *, SharedVariable_1_UnityEngine_Vector4__ToString, (SharedVariable_1_UnityEngine_Vector4_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0105C250, Vector4, SharedVariable_1_UnityEngine_Vector4__get_Value, (SharedVariable_1_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6CE0, SharedVariable_1_UnityEngine_Vector4__get_Value__MethodInfo); DO_APP_FUNC(0x0105C2C0, void, SharedVariable_1_UnityEngine_Vector4__set_Value, (SharedVariable_1_UnityEngine_Vector4_ * __this, Vector4 value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6C48, SharedVariable_1_UnityEngine_Vector4__set_Value__MethodInfo); DO_APP_FUNC(0x01067AA0, void, SimpleMenu_1_System_Object___ctor, (SimpleMenu_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01067A30, void, SimpleMenu_1_System_Object__Hide, (MethodInfo * method)); DO_APP_FUNC(0x010679D0, void, SimpleMenu_1_System_Object__Show, (MethodInfo * method)); @@ -190736,13 +209098,14 @@ DO_APP_FUNC(0x0106A280, void, Singleton_1_System_Object__2__cctor, (MethodInfo * DO_APP_FUNC(0x003AE050, void, Singleton_1_System_Object__2__ctor, (Singleton_1_System_Object__2 * __this, MethodInfo * method)); DO_APP_FUNC(0x01069DF0, Object *, Singleton_1_System_Object__2_get_Instance, (MethodInfo * method)); DO_APP_FUNC(0x0106A610, void, SlaveClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer___ctor, (SlaveClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, ISendQueue_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * sender, ISession * session, EventQueue * events, Rooms * localRooms, String * playerName, CodecSettings codecSettings, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1630, SlaveClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer___ctor__MethodInfo); DO_APP_FUNC(0x0106CAA0, void, SlaveClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__IntroduceP2P, (SlaveClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, uint16_t id, BoltPeer connection, MethodInfo * method)); DO_APP_FUNC(0x0106A9E0, void, SlaveClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__OnAddedClient, (SlaveClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, ClientInfo_1_System_Nullable_1_ * client, MethodInfo * method)); DO_APP_FUNC(0x0106ADE0, void, SlaveClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__OnClientEnteredRoom, (SlaveClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, ClientInfo_1_System_Nullable_1_ * client, String * room, MethodInfo * method)); DO_APP_FUNC(0x0106AEB0, void, SlaveClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__OnClientExitedRoom, (SlaveClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, ClientInfo_1_System_Nullable_1_ * client, String * room, MethodInfo * method)); DO_APP_FUNC(0x0106ACE0, void, SlaveClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__OnRemovedClient, (SlaveClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, ClientInfo_1_System_Nullable_1_ * client, MethodInfo * method)); -DO_APP_FUNC(0x0106AF80, void, SlaveClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__ProcessRemoveClient, (SlaveClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, PacketReader reader, MethodInfo * method)); -DO_APP_FUNC(0x0106B090, void, SlaveClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__ReceiveHandshakeResponseBody, (SlaveClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, PacketReader reader, MethodInfo * method)); +DO_APP_FUNC(0x0106AF80, void, SlaveClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__ProcessRemoveClient, (SlaveClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, PacketReader * reader, MethodInfo * method)); +DO_APP_FUNC(0x0106B090, void, SlaveClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__ReceiveHandshakeResponseBody, (SlaveClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, PacketReader * reader, MethodInfo * method)); DO_APP_FUNC(0x0106BCE0, void, SlaveClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__SendClientState, (SlaveClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0106C640, void, SlaveClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__SendJoinRoom, (SlaveClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, String * room, MethodInfo * method)); DO_APP_FUNC(0x0106C2F0, void, SlaveClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer__SendLeaveRoom, (SlaveClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, String * room, MethodInfo * method)); @@ -190754,14 +209117,19 @@ DO_APP_FUNC(0x0106CD40, void, SortedDictionary_2_System_Object_System_Char___cto DO_APP_FUNC(0x0106D110, void, SortedDictionary_2_System_Object_System_Char___ctor_1, (SortedDictionary_2_System_Object_System_Char_ * __this, IComparer_1_System_Object_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0106CD60, void, SortedDictionary_2_System_Object_System_Char___ctor_2, (SortedDictionary_2_System_Object_System_Char_ * __this, IDictionary_2_System_Object_System_Char_ * dictionary, MethodInfo * method)); DO_APP_FUNC(0x0106CD80, void, SortedDictionary_2_System_Object_System_Char___ctor_3, (SortedDictionary_2_System_Object_System_Char_ * __this, IDictionary_2_System_Object_System_Char_ * dictionary, IComparer_1_System_Object_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1558, SortedDictionary_2_System_Object_System_Char___ctor_3__MethodInfo); DO_APP_FUNC(0x0106DCD0, void, SortedDictionary_2_System_Object_System_Char__Add, (SortedDictionary_2_System_Object_System_Char_ * __this, Object * key, uint16_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1518, SortedDictionary_2_System_Object_System_Char__Add__MethodInfo); DO_APP_FUNC(0x0106DDE0, void, SortedDictionary_2_System_Object_System_Char__Clear, (SortedDictionary_2_System_Object_System_Char_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0106DE10, bool, SortedDictionary_2_System_Object_System_Char__ContainsKey, (SortedDictionary_2_System_Object_System_Char_ * __this, Object * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1520, SortedDictionary_2_System_Object_System_Char__ContainsKey__MethodInfo); DO_APP_FUNC(0x0106DF10, bool, SortedDictionary_2_System_Object_System_Char__ContainsValue, (SortedDictionary_2_System_Object_System_Char_ * __this, uint16_t value, MethodInfo * method)); DO_APP_FUNC(0x0106E160, void, SortedDictionary_2_System_Object_System_Char__CopyTo, (SortedDictionary_2_System_Object_System_Char_ * __this, KeyValuePair_2_System_Object_System_Char___Array * array, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x0106E190, SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Char_, SortedDictionary_2_System_Object_System_Char__GetEnumerator, (SortedDictionary_2_System_Object_System_Char_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0106EE00, bool, SortedDictionary_2_System_Object_System_Char__IsCompatibleKey, (Object * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1500, SortedDictionary_2_System_Object_System_Char__IsCompatibleKey__MethodInfo); DO_APP_FUNC(0x0106E270, bool, SortedDictionary_2_System_Object_System_Char__Remove, (SortedDictionary_2_System_Object_System_Char_ * __this, Object * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1538, SortedDictionary_2_System_Object_System_Char__Remove__MethodInfo); DO_APP_FUNC(0x0106D230, void, SortedDictionary_2_System_Object_System_Char__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add, (SortedDictionary_2_System_Object_System_Char_ * __this, KeyValuePair_2_System_Object_System_Char_ keyValuePair, MethodInfo * method)); DO_APP_FUNC(0x0106D270, bool, SortedDictionary_2_System_Object_System_Char__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains, (SortedDictionary_2_System_Object_System_Char_ * __this, KeyValuePair_2_System_Object_System_Char_ keyValuePair, MethodInfo * method)); DO_APP_FUNC(0x0106D370, bool, SortedDictionary_2_System_Object_System_Char__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove, (SortedDictionary_2_System_Object_System_Char_ * __this, KeyValuePair_2_System_Object_System_Char_ keyValuePair, MethodInfo * method)); @@ -190775,6 +209143,7 @@ DO_APP_FUNC(0x0106E500, void, SortedDictionary_2_System_Object_System_Char__Syst DO_APP_FUNC(0x0041AF00, bool, SortedDictionary_2_System_Object_System_Char__System_Collections_ICollection_get_IsSynchronized, (SortedDictionary_2_System_Object_System_Char_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0106F040, Object *, SortedDictionary_2_System_Object_System_Char__System_Collections_ICollection_get_SyncRoot, (SortedDictionary_2_System_Object_System_Char_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0106E9D0, void, SortedDictionary_2_System_Object_System_Char__System_Collections_IDictionary_Add, (SortedDictionary_2_System_Object_System_Char_ * __this, Object * key, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF14F8, SortedDictionary_2_System_Object_System_Char__System_Collections_IDictionary_Add__MethodInfo); DO_APP_FUNC(0x0106ED00, bool, SortedDictionary_2_System_Object_System_Char__System_Collections_IDictionary_Contains, (SortedDictionary_2_System_Object_System_Char_ * __this, Object * key, MethodInfo * method)); DO_APP_FUNC(0x0106EEB0, IDictionaryEnumerator *, SortedDictionary_2_System_Object_System_Char__System_Collections_IDictionary_GetEnumerator, (SortedDictionary_2_System_Object_System_Char_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0106EF50, void, SortedDictionary_2_System_Object_System_Char__System_Collections_IDictionary_Remove, (SortedDictionary_2_System_Object_System_Char_ * __this, Object * key, MethodInfo * method)); @@ -190784,26 +209153,35 @@ DO_APP_FUNC(0x0106E570, Object *, SortedDictionary_2_System_Object_System_Char__ DO_APP_FUNC(0x0106DB90, ICollection *, SortedDictionary_2_System_Object_System_Char__System_Collections_IDictionary_get_Keys, (SortedDictionary_2_System_Object_System_Char_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0106DCA0, ICollection *, SortedDictionary_2_System_Object_System_Char__System_Collections_IDictionary_get_Values, (SortedDictionary_2_System_Object_System_Char_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0106E6A0, void, SortedDictionary_2_System_Object_System_Char__System_Collections_IDictionary_set_Item, (SortedDictionary_2_System_Object_System_Char_ * __this, Object * key, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1508, SortedDictionary_2_System_Object_System_Char__System_Collections_IDictionary_set_Item__MethodInfo); DO_APP_FUNC(0x0106E1D0, IEnumerator *, SortedDictionary_2_System_Object_System_Char__System_Collections_IEnumerable_GetEnumerator, (SortedDictionary_2_System_Object_System_Char_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x0106E3A0, bool, SortedDictionary_2_System_Object_System_Char__TryGetValue, (SortedDictionary_2_System_Object_System_Char_ * __this, Object * key, uint16_t value, MethodInfo * method)); +DO_APP_FUNC(0x0106E3A0, bool, SortedDictionary_2_System_Object_System_Char__TryGetValue, (SortedDictionary_2_System_Object_System_Char_ * __this, Object * key, uint16_t * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1540, SortedDictionary_2_System_Object_System_Char__TryGetValue__MethodInfo); DO_APP_FUNC(0x0106D9D0, IComparer_1_System_Object_ *, SortedDictionary_2_System_Object_System_Char__get_Comparer, (SortedDictionary_2_System_Object_System_Char_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0106D980, int32_t, SortedDictionary_2_System_Object_System_Char__get_Count, (SortedDictionary_2_System_Object_System_Char_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0106D4B0, uint16_t, SortedDictionary_2_System_Object_System_Char__get_Item, (SortedDictionary_2_System_Object_System_Char_ * __this, Object * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1550, SortedDictionary_2_System_Object_System_Char__get_Item__MethodInfo); DO_APP_FUNC(0x0106DAB0, SortedDictionary_2_TKey_TValue_KeyCollection_System_Object_System_Char_ *, SortedDictionary_2_System_Object_System_Char__get_Keys, (SortedDictionary_2_System_Object_System_Char_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0106DBC0, SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Char_ *, SortedDictionary_2_System_Object_System_Char__get_Values, (SortedDictionary_2_System_Object_System_Char_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0106D680, void, SortedDictionary_2_System_Object_System_Char__set_Item, (SortedDictionary_2_System_Object_System_Char_ * __this, Object * key, uint16_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1530, SortedDictionary_2_System_Object_System_Char__set_Item__MethodInfo); DO_APP_FUNC(0x0106CD40, void, SortedDictionary_2_System_Object_System_Object___ctor, (SortedDictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0106D110, void, SortedDictionary_2_System_Object_System_Object___ctor_1, (SortedDictionary_2_System_Object_System_Object_ * __this, IComparer_1_System_Object_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0106CD60, void, SortedDictionary_2_System_Object_System_Object___ctor_2, (SortedDictionary_2_System_Object_System_Object_ * __this, IDictionary_2_System_Object_System_Object_ * dictionary, MethodInfo * method)); DO_APP_FUNC(0x0106F090, void, SortedDictionary_2_System_Object_System_Object___ctor_3, (SortedDictionary_2_System_Object_System_Object_ * __this, IDictionary_2_System_Object_System_Object_ * dictionary, IComparer_1_System_Object_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF14D0, SortedDictionary_2_System_Object_System_Object___ctor_3__MethodInfo); DO_APP_FUNC(0x0106FA80, void, SortedDictionary_2_System_Object_System_Object__Add, (SortedDictionary_2_System_Object_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF14C8, SortedDictionary_2_System_Object_System_Object__Add__MethodInfo); DO_APP_FUNC(0x0106DDE0, void, SortedDictionary_2_System_Object_System_Object__Clear, (SortedDictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0106FB50, bool, SortedDictionary_2_System_Object_System_Object__ContainsKey, (SortedDictionary_2_System_Object_System_Object_ * __this, Object * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF14E8, SortedDictionary_2_System_Object_System_Object__ContainsKey__MethodInfo); DO_APP_FUNC(0x0106FC10, bool, SortedDictionary_2_System_Object_System_Object__ContainsValue, (SortedDictionary_2_System_Object_System_Object_ * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x0106E160, void, SortedDictionary_2_System_Object_System_Object__CopyTo, (SortedDictionary_2_System_Object_System_Object_ * __this, KeyValuePair_2_System_Object_System_Object___Array * array, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x0106E190, SortedDictionary_2_TKey_TValue_Enumerator_System_Object_System_Object_, SortedDictionary_2_System_Object_System_Object__GetEnumerator, (SortedDictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010708A0, bool, SortedDictionary_2_System_Object_System_Object__IsCompatibleKey, (Object * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF14B0, SortedDictionary_2_System_Object_System_Object__IsCompatibleKey__MethodInfo); DO_APP_FUNC(0x0106FF00, bool, SortedDictionary_2_System_Object_System_Object__Remove, (SortedDictionary_2_System_Object_System_Object_ * __this, Object * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF14F0, SortedDictionary_2_System_Object_System_Object__Remove__MethodInfo); DO_APP_FUNC(0x0106D230, void, SortedDictionary_2_System_Object_System_Object__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add, (SortedDictionary_2_System_Object_System_Object_ * __this, KeyValuePair_2_System_Object_System_Object_ keyValuePair, MethodInfo * method)); DO_APP_FUNC(0x0106F420, bool, SortedDictionary_2_System_Object_System_Object__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains, (SortedDictionary_2_System_Object_System_Object_ * __this, KeyValuePair_2_System_Object_System_Object_ keyValuePair, MethodInfo * method)); DO_APP_FUNC(0x0106F560, bool, SortedDictionary_2_System_Object_System_Object__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove, (SortedDictionary_2_System_Object_System_Object_ * __this, KeyValuePair_2_System_Object_System_Object_ keyValuePair, MethodInfo * method)); @@ -190817,6 +209195,7 @@ DO_APP_FUNC(0x01070170, void, SortedDictionary_2_System_Object_System_Object__Sy DO_APP_FUNC(0x0041AF00, bool, SortedDictionary_2_System_Object_System_Object__System_Collections_ICollection_get_IsSynchronized, (SortedDictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01070950, Object *, SortedDictionary_2_System_Object_System_Object__System_Collections_ICollection_get_SyncRoot, (SortedDictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010705C0, void, SortedDictionary_2_System_Object_System_Object__System_Collections_IDictionary_Add, (SortedDictionary_2_System_Object_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF14A8, SortedDictionary_2_System_Object_System_Object__System_Collections_IDictionary_Add__MethodInfo); DO_APP_FUNC(0x0106ED00, bool, SortedDictionary_2_System_Object_System_Object__System_Collections_IDictionary_Contains, (SortedDictionary_2_System_Object_System_Object_ * __this, Object * key, MethodInfo * method)); DO_APP_FUNC(0x0106EEB0, IDictionaryEnumerator *, SortedDictionary_2_System_Object_System_Object__System_Collections_IDictionary_GetEnumerator, (SortedDictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0106EF50, void, SortedDictionary_2_System_Object_System_Object__System_Collections_IDictionary_Remove, (SortedDictionary_2_System_Object_System_Object_ * __this, Object * key, MethodInfo * method)); @@ -190826,18 +209205,23 @@ DO_APP_FUNC(0x010701E0, Object *, SortedDictionary_2_System_Object_System_Object DO_APP_FUNC(0x0106DB90, ICollection *, SortedDictionary_2_System_Object_System_Object__System_Collections_IDictionary_get_Keys, (SortedDictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0106DCA0, ICollection *, SortedDictionary_2_System_Object_System_Object__System_Collections_IDictionary_get_Values, (SortedDictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010702E0, void, SortedDictionary_2_System_Object_System_Object__System_Collections_IDictionary_set_Item, (SortedDictionary_2_System_Object_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF14B8, SortedDictionary_2_System_Object_System_Object__System_Collections_IDictionary_set_Item__MethodInfo); DO_APP_FUNC(0x0106E1D0, IEnumerator *, SortedDictionary_2_System_Object_System_Object__System_Collections_IEnumerable_GetEnumerator, (SortedDictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x0106FFF0, bool, SortedDictionary_2_System_Object_System_Object__TryGetValue, (SortedDictionary_2_System_Object_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0106FFF0, bool, SortedDictionary_2_System_Object_System_Object__TryGetValue, (SortedDictionary_2_System_Object_System_Object_ * __this, Object * key, Object * * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF14E0, SortedDictionary_2_System_Object_System_Object__TryGetValue__MethodInfo); DO_APP_FUNC(0x0106D9D0, IComparer_1_System_Object_ *, SortedDictionary_2_System_Object_System_Object__get_Comparer, (SortedDictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0106D980, int32_t, SortedDictionary_2_System_Object_System_Object__get_Count, (SortedDictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0106F6B0, Object *, SortedDictionary_2_System_Object_System_Object__get_Item, (SortedDictionary_2_System_Object_System_Object_ * __this, Object * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF14D8, SortedDictionary_2_System_Object_System_Object__get_Item__MethodInfo); DO_APP_FUNC(0x0106DAB0, SortedDictionary_2_TKey_TValue_KeyCollection_System_Object_System_Object_ *, SortedDictionary_2_System_Object_System_Object__get_Keys, (SortedDictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0106DBC0, SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object_ *, SortedDictionary_2_System_Object_System_Object__get_Values, (SortedDictionary_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0106F850, void, SortedDictionary_2_System_Object_System_Object__set_Item, (SortedDictionary_2_System_Object_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF14C0, SortedDictionary_2_System_Object_System_Object__set_Item__MethodInfo); DO_APP_FUNC(0x0106CD40, void, SortedDictionary_2_System_UInt64_System_Object___ctor, (SortedDictionary_2_System_UInt64_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0106D110, void, SortedDictionary_2_System_UInt64_System_Object___ctor_1, (SortedDictionary_2_System_UInt64_System_Object_ * __this, IComparer_1_System_UInt64_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x0106CD60, void, SortedDictionary_2_System_UInt64_System_Object___ctor_2, (SortedDictionary_2_System_UInt64_System_Object_ * __this, IDictionary_2_System_UInt64_System_Object_ * dictionary, MethodInfo * method)); DO_APP_FUNC(0x010709A0, void, SortedDictionary_2_System_UInt64_System_Object___ctor_3, (SortedDictionary_2_System_UInt64_System_Object_ * __this, IDictionary_2_System_UInt64_System_Object_ * dictionary, IComparer_1_System_UInt64_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1498, SortedDictionary_2_System_UInt64_System_Object___ctor_3__MethodInfo); DO_APP_FUNC(0x01071110, void, SortedDictionary_2_System_UInt64_System_Object__Add, (SortedDictionary_2_System_UInt64_System_Object_ * __this, uint64_t key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x0106DDE0, void, SortedDictionary_2_System_UInt64_System_Object__Clear, (SortedDictionary_2_System_UInt64_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010711B0, bool, SortedDictionary_2_System_UInt64_System_Object__ContainsKey, (SortedDictionary_2_System_UInt64_System_Object_ * __this, uint64_t key, MethodInfo * method)); @@ -190845,6 +209229,7 @@ DO_APP_FUNC(0x0106FC10, bool, SortedDictionary_2_System_UInt64_System_Object__Co DO_APP_FUNC(0x0106E160, void, SortedDictionary_2_System_UInt64_System_Object__CopyTo, (SortedDictionary_2_System_UInt64_System_Object_ * __this, KeyValuePair_2_System_UInt64_System_Object___Array * array, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x0106E190, SortedDictionary_2_TKey_TValue_Enumerator_System_UInt64_System_Object_, SortedDictionary_2_System_UInt64_System_Object__GetEnumerator, (SortedDictionary_2_System_UInt64_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01071C90, bool, SortedDictionary_2_System_UInt64_System_Object__IsCompatibleKey, (Object * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1478, SortedDictionary_2_System_UInt64_System_Object__IsCompatibleKey__MethodInfo); DO_APP_FUNC(0x01071250, bool, SortedDictionary_2_System_UInt64_System_Object__Remove, (SortedDictionary_2_System_UInt64_System_Object_ * __this, uint64_t key, MethodInfo * method)); DO_APP_FUNC(0x0106D230, void, SortedDictionary_2_System_UInt64_System_Object__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add, (SortedDictionary_2_System_UInt64_System_Object_ * __this, KeyValuePair_2_System_UInt64_System_Object_ keyValuePair, MethodInfo * method)); DO_APP_FUNC(0x0106F420, bool, SortedDictionary_2_System_UInt64_System_Object__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains, (SortedDictionary_2_System_UInt64_System_Object_ * __this, KeyValuePair_2_System_UInt64_System_Object_ keyValuePair, MethodInfo * method)); @@ -190859,6 +209244,7 @@ DO_APP_FUNC(0x01071470, void, SortedDictionary_2_System_UInt64_System_Object__Sy DO_APP_FUNC(0x0041AF00, bool, SortedDictionary_2_System_UInt64_System_Object__System_Collections_ICollection_get_IsSynchronized, (SortedDictionary_2_System_UInt64_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01071E20, Object *, SortedDictionary_2_System_UInt64_System_Object__System_Collections_ICollection_get_SyncRoot, (SortedDictionary_2_System_UInt64_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010718B0, void, SortedDictionary_2_System_UInt64_System_Object__System_Collections_IDictionary_Add, (SortedDictionary_2_System_UInt64_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1470, SortedDictionary_2_System_UInt64_System_Object__System_Collections_IDictionary_Add__MethodInfo); DO_APP_FUNC(0x01071B90, bool, SortedDictionary_2_System_UInt64_System_Object__System_Collections_IDictionary_Contains, (SortedDictionary_2_System_UInt64_System_Object_ * __this, Object * key, MethodInfo * method)); DO_APP_FUNC(0x0106EEB0, IDictionaryEnumerator *, SortedDictionary_2_System_UInt64_System_Object__System_Collections_IDictionary_GetEnumerator, (SortedDictionary_2_System_UInt64_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01071D40, void, SortedDictionary_2_System_UInt64_System_Object__System_Collections_IDictionary_Remove, (SortedDictionary_2_System_UInt64_System_Object_ * __this, Object * key, MethodInfo * method)); @@ -190868,119 +209254,155 @@ DO_APP_FUNC(0x010714E0, Object *, SortedDictionary_2_System_UInt64_System_Object DO_APP_FUNC(0x0106DB90, ICollection *, SortedDictionary_2_System_UInt64_System_Object__System_Collections_IDictionary_get_Keys, (SortedDictionary_2_System_UInt64_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0106DCA0, ICollection *, SortedDictionary_2_System_UInt64_System_Object__System_Collections_IDictionary_get_Values, (SortedDictionary_2_System_UInt64_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010715D0, void, SortedDictionary_2_System_UInt64_System_Object__System_Collections_IDictionary_set_Item, (SortedDictionary_2_System_UInt64_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1480, SortedDictionary_2_System_UInt64_System_Object__System_Collections_IDictionary_set_Item__MethodInfo); DO_APP_FUNC(0x0106E1D0, IEnumerator *, SortedDictionary_2_System_UInt64_System_Object__System_Collections_IEnumerable_GetEnumerator, (SortedDictionary_2_System_UInt64_System_Object_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x01071300, bool, SortedDictionary_2_System_UInt64_System_Object__TryGetValue, (SortedDictionary_2_System_UInt64_System_Object_ * __this, uint64_t key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x01071300, bool, SortedDictionary_2_System_UInt64_System_Object__TryGetValue, (SortedDictionary_2_System_UInt64_System_Object_ * __this, uint64_t key, Object * * value, MethodInfo * method)); DO_APP_FUNC(0x0106D9D0, IComparer_1_System_UInt64_ *, SortedDictionary_2_System_UInt64_System_Object__get_Comparer, (SortedDictionary_2_System_UInt64_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0106D980, int32_t, SortedDictionary_2_System_UInt64_System_Object__get_Count, (SortedDictionary_2_System_UInt64_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01070D30, Object *, SortedDictionary_2_System_UInt64_System_Object__get_Item, (SortedDictionary_2_System_UInt64_System_Object_ * __this, uint64_t key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF14A0, SortedDictionary_2_System_UInt64_System_Object__get_Item__MethodInfo); DO_APP_FUNC(0x0106DAB0, SortedDictionary_2_TKey_TValue_KeyCollection_System_UInt64_System_Object_ *, SortedDictionary_2_System_UInt64_System_Object__get_Keys, (SortedDictionary_2_System_UInt64_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0106DBC0, SortedDictionary_2_TKey_TValue_ValueCollection_System_UInt64_System_Object_ *, SortedDictionary_2_System_UInt64_System_Object__get_Values, (SortedDictionary_2_System_UInt64_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01070E90, void, SortedDictionary_2_System_UInt64_System_Object__set_Item, (SortedDictionary_2_System_UInt64_System_Object_ * __this, uint64_t key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x01071E70, void, SortedList_2_TKey_TValue_SortedListKeyEnumerator_System_Int32_System_ValueTuple_2___ctor, (SortedList_2_TKey_TValue_SortedListKeyEnumerator_System_Int32_System_ValueTuple_2_ * __this, SortedList_2_System_Int32_System_ValueTuple_2__2 * sortedList, MethodInfo * method)); +DO_APP_FUNC(0x01071E70, void, SortedList_2_TKey_TValue_SortedListKeyEnumerator_System_Int32_System_ValueTuple_2___ctor, (SortedList_2_TKey_TValue_SortedListKeyEnumerator_System_Int32_System_ValueTuple_2_ * __this, SortedList_2_System_Int32_System_ValueTuple_2__4 * sortedList, MethodInfo * method)); DO_APP_FUNC(0x01071EE0, void, SortedList_2_TKey_TValue_SortedListKeyEnumerator_System_Int32_System_ValueTuple_2__Dispose, (SortedList_2_TKey_TValue_SortedListKeyEnumerator_System_Int32_System_ValueTuple_2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01071EF0, bool, SortedList_2_TKey_TValue_SortedListKeyEnumerator_System_Int32_System_ValueTuple_2__MoveNext, (SortedList_2_TKey_TValue_SortedListKeyEnumerator_System_Int32_System_ValueTuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1490, SortedList_2_TKey_TValue_SortedListKeyEnumerator_System_Int32_System_ValueTuple_2__MoveNext__MethodInfo); DO_APP_FUNC(0x01072130, void, SortedList_2_TKey_TValue_SortedListKeyEnumerator_System_Int32_System_ValueTuple_2__System_Collections_IEnumerator_Reset, (SortedList_2_TKey_TValue_SortedListKeyEnumerator_System_Int32_System_ValueTuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1430, SortedList_2_TKey_TValue_SortedListKeyEnumerator_System_Int32_System_ValueTuple_2__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x01072030, Object *, SortedList_2_TKey_TValue_SortedListKeyEnumerator_System_Int32_System_ValueTuple_2__System_Collections_IEnumerator_get_Current, (SortedList_2_TKey_TValue_SortedListKeyEnumerator_System_Int32_System_ValueTuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1448, SortedList_2_TKey_TValue_SortedListKeyEnumerator_System_Int32_System_ValueTuple_2__System_Collections_IEnumerator_get_Current__MethodInfo); DO_APP_FUNC(0x003CC980, int32_t, SortedList_2_TKey_TValue_SortedListKeyEnumerator_System_Int32_System_ValueTuple_2__get_Current, (SortedList_2_TKey_TValue_SortedListKeyEnumerator_System_Int32_System_ValueTuple_2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01071E70, void, SortedList_2_TKey_TValue_SortedListKeyEnumerator_System_Object_System_Object___ctor, (SortedList_2_TKey_TValue_SortedListKeyEnumerator_System_Object_System_Object_ * __this, SortedList_2_System_Object_System_Object_ * sortedList, MethodInfo * method)); DO_APP_FUNC(0x010721C0, void, SortedList_2_TKey_TValue_SortedListKeyEnumerator_System_Object_System_Object__Dispose, (SortedList_2_TKey_TValue_SortedListKeyEnumerator_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010721D0, bool, SortedList_2_TKey_TValue_SortedListKeyEnumerator_System_Object_System_Object__MoveNext, (SortedList_2_TKey_TValue_SortedListKeyEnumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1438, SortedList_2_TKey_TValue_SortedListKeyEnumerator_System_Object_System_Object__MoveNext__MethodInfo); DO_APP_FUNC(0x01072420, void, SortedList_2_TKey_TValue_SortedListKeyEnumerator_System_Object_System_Object__System_Collections_IEnumerator_Reset, (SortedList_2_TKey_TValue_SortedListKeyEnumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1468, SortedList_2_TKey_TValue_SortedListKeyEnumerator_System_Object_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x01072360, Object *, SortedList_2_TKey_TValue_SortedListKeyEnumerator_System_Object_System_Object__System_Collections_IEnumerator_get_Current, (SortedList_2_TKey_TValue_SortedListKeyEnumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1460, SortedList_2_TKey_TValue_SortedListKeyEnumerator_System_Object_System_Object__System_Collections_IEnumerator_get_Current__MethodInfo); DO_APP_FUNC(0x003BB3E0, Object *, SortedList_2_TKey_TValue_SortedListKeyEnumerator_System_Object_System_Object__get_Current, (SortedList_2_TKey_TValue_SortedListKeyEnumerator_System_Object_System_Object_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x01071E70, void, SortedList_2_TKey_TValue_SortedListValueEnumerator_System_Int32_System_ValueTuple_2___ctor, (SortedList_2_TKey_TValue_SortedListValueEnumerator_System_Int32_System_ValueTuple_2_ * __this, SortedList_2_System_Int32_System_ValueTuple_2__2 * sortedList, MethodInfo * method)); +DO_APP_FUNC(0x01071E70, void, SortedList_2_TKey_TValue_SortedListValueEnumerator_System_Int32_System_ValueTuple_2___ctor, (SortedList_2_TKey_TValue_SortedListValueEnumerator_System_Int32_System_ValueTuple_2_ * __this, SortedList_2_System_Int32_System_ValueTuple_2__4 * sortedList, MethodInfo * method)); DO_APP_FUNC(0x010724B0, void, SortedList_2_TKey_TValue_SortedListValueEnumerator_System_Int32_System_ValueTuple_2__Dispose, (SortedList_2_TKey_TValue_SortedListValueEnumerator_System_Int32_System_ValueTuple_2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010724C0, bool, SortedList_2_TKey_TValue_SortedListValueEnumerator_System_Int32_System_ValueTuple_2__MoveNext, (SortedList_2_TKey_TValue_SortedListValueEnumerator_System_Int32_System_ValueTuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1450, SortedList_2_TKey_TValue_SortedListValueEnumerator_System_Int32_System_ValueTuple_2__MoveNext__MethodInfo); DO_APP_FUNC(0x01072760, void, SortedList_2_TKey_TValue_SortedListValueEnumerator_System_Int32_System_ValueTuple_2__System_Collections_IEnumerator_Reset, (SortedList_2_TKey_TValue_SortedListValueEnumerator_System_Int32_System_ValueTuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1400, SortedList_2_TKey_TValue_SortedListValueEnumerator_System_Int32_System_ValueTuple_2__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x01072660, Object *, SortedList_2_TKey_TValue_SortedListValueEnumerator_System_Int32_System_ValueTuple_2__System_Collections_IEnumerator_get_Current, (SortedList_2_TKey_TValue_SortedListValueEnumerator_System_Int32_System_ValueTuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1458, SortedList_2_TKey_TValue_SortedListValueEnumerator_System_Int32_System_ValueTuple_2__System_Collections_IEnumerator_get_Current__MethodInfo); DO_APP_FUNC(0x01042010, ValueTuple_2_Object_Int32_, SortedList_2_TKey_TValue_SortedListValueEnumerator_System_Int32_System_ValueTuple_2__get_Current, (SortedList_2_TKey_TValue_SortedListValueEnumerator_System_Int32_System_ValueTuple_2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01071E70, void, SortedList_2_TKey_TValue_SortedListValueEnumerator_System_Object_System_Object___ctor, (SortedList_2_TKey_TValue_SortedListValueEnumerator_System_Object_System_Object_ * __this, SortedList_2_System_Object_System_Object_ * sortedList, MethodInfo * method)); DO_APP_FUNC(0x010721C0, void, SortedList_2_TKey_TValue_SortedListValueEnumerator_System_Object_System_Object__Dispose, (SortedList_2_TKey_TValue_SortedListValueEnumerator_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010727F0, bool, SortedList_2_TKey_TValue_SortedListValueEnumerator_System_Object_System_Object__MoveNext, (SortedList_2_TKey_TValue_SortedListValueEnumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1408, SortedList_2_TKey_TValue_SortedListValueEnumerator_System_Object_System_Object__MoveNext__MethodInfo); DO_APP_FUNC(0x01072A40, void, SortedList_2_TKey_TValue_SortedListValueEnumerator_System_Object_System_Object__System_Collections_IEnumerator_Reset, (SortedList_2_TKey_TValue_SortedListValueEnumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF13F8, SortedList_2_TKey_TValue_SortedListValueEnumerator_System_Object_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x01072980, Object *, SortedList_2_TKey_TValue_SortedListValueEnumerator_System_Object_System_Object__System_Collections_IEnumerator_get_Current, (SortedList_2_TKey_TValue_SortedListValueEnumerator_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF13F0, SortedList_2_TKey_TValue_SortedListValueEnumerator_System_Object_System_Object__System_Collections_IEnumerator_get_Current__MethodInfo); DO_APP_FUNC(0x003BB3E0, Object *, SortedList_2_TKey_TValue_SortedListValueEnumerator_System_Object_System_Object__get_Current, (SortedList_2_TKey_TValue_SortedListValueEnumerator_System_Object_System_Object_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x01072AD0, void, SortedList_2_System_Int32_System_ValueTuple_2__2__ctor, (SortedList_2_System_Int32_System_ValueTuple_2__2 * __this, MethodInfo * method)); -DO_APP_FUNC(0x01072EB0, void, SortedList_2_System_Int32_System_ValueTuple_2__2__ctor_1, (SortedList_2_System_Int32_System_ValueTuple_2__2 * __this, IComparer_1_System_Int32_ * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01072FA0, void, SortedList_2_System_Int32_System_ValueTuple_2__2__ctor_2, (SortedList_2_System_Int32_System_ValueTuple_2__2 * __this, IDictionary_2_System_Int32_System_ValueTuple_2__1 * dictionary, MethodInfo * method)); -DO_APP_FUNC(0x01072C60, void, SortedList_2_System_Int32_System_ValueTuple_2__2__ctor_3, (SortedList_2_System_Int32_System_ValueTuple_2__2 * __this, int32_t capacity, MethodInfo * method)); -DO_APP_FUNC(0x01072FC0, void, SortedList_2_System_Int32_System_ValueTuple_2__2__ctor_4, (SortedList_2_System_Int32_System_ValueTuple_2__2 * __this, IDictionary_2_System_Int32_System_ValueTuple_2__1 * dictionary, IComparer_1_System_Int32_ * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01072F30, void, SortedList_2_System_Int32_System_ValueTuple_2__2__ctor_5, (SortedList_2_System_Int32_System_ValueTuple_2__2 * __this, int32_t capacity, IComparer_1_System_Int32_ * comparer, MethodInfo * method)); -DO_APP_FUNC(0x010733D0, void, SortedList_2_System_Int32_System_ValueTuple_2__2_Add, (SortedList_2_System_Int32_System_ValueTuple_2__2 * __this, int32_t key, ValueTuple_2_Object_Int32_ value, MethodInfo * method)); -DO_APP_FUNC(0x01073FA0, void, SortedList_2_System_Int32_System_ValueTuple_2__2_Clear, (SortedList_2_System_Int32_System_ValueTuple_2__2 * __this, MethodInfo * method)); -DO_APP_FUNC(0x010740D0, bool, SortedList_2_System_Int32_System_ValueTuple_2__2_ContainsKey, (SortedList_2_System_Int32_System_ValueTuple_2__2 * __this, int32_t key, MethodInfo * method)); -DO_APP_FUNC(0x01074110, bool, SortedList_2_System_Int32_System_ValueTuple_2__2_ContainsValue, (SortedList_2_System_Int32_System_ValueTuple_2__2 * __this, ValueTuple_2_Object_Int32_ value, MethodInfo * method)); -DO_APP_FUNC(0x01074C40, void, SortedList_2_System_Int32_System_ValueTuple_2__2_EnsureCapacity, (SortedList_2_System_Int32_System_ValueTuple_2__2 * __this, int32_t min, MethodInfo * method)); -DO_APP_FUNC(0x01074CA0, ValueTuple_2_Object_Int32_, SortedList_2_System_Int32_System_ValueTuple_2__2_GetByIndex, (SortedList_2_System_Int32_System_ValueTuple_2__2 * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01074DA0, IEnumerator_1_KeyValuePair_2_System_Int32_System_ValueTuple_2__3 *, SortedList_2_System_Int32_System_ValueTuple_2__2_GetEnumerator, (SortedList_2_System_Int32_System_ValueTuple_2__2 * __this, MethodInfo * method)); -DO_APP_FUNC(0x01074FA0, int32_t, SortedList_2_System_Int32_System_ValueTuple_2__2_GetKey, (SortedList_2_System_Int32_System_ValueTuple_2__2 * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01073D30, SortedList_2_TKey_TValue_KeyList_System_Int32_System_ValueTuple_2__2 *, SortedList_2_System_Int32_System_ValueTuple_2__2_GetKeyListHelper, (SortedList_2_System_Int32_System_ValueTuple_2__2 * __this, MethodInfo * method)); -DO_APP_FUNC(0x01073E10, SortedList_2_TKey_TValue_ValueList_System_Int32_System_ValueTuple_2__2 *, SortedList_2_System_Int32_System_ValueTuple_2__2_GetValueListHelper, (SortedList_2_System_Int32_System_ValueTuple_2__2 * __this, MethodInfo * method)); -DO_APP_FUNC(0x010756E0, int32_t, SortedList_2_System_Int32_System_ValueTuple_2__2_IndexOfKey, (SortedList_2_System_Int32_System_ValueTuple_2__2 * __this, int32_t key, MethodInfo * method)); -DO_APP_FUNC(0x01075740, int32_t, SortedList_2_System_Int32_System_ValueTuple_2__2_IndexOfValue, (SortedList_2_System_Int32_System_ValueTuple_2__2 * __this, ValueTuple_2_Object_Int32_ value, MethodInfo * method)); -DO_APP_FUNC(0x010757A0, void, SortedList_2_System_Int32_System_ValueTuple_2__2_Insert, (SortedList_2_System_Int32_System_ValueTuple_2__2 * __this, int32_t index, int32_t key, ValueTuple_2_Object_Int32_ value, MethodInfo * method)); -DO_APP_FUNC(0x01075D00, bool, SortedList_2_System_Int32_System_ValueTuple_2__2_IsCompatibleKey, (Object * key, MethodInfo * method)); -DO_APP_FUNC(0x01075B60, bool, SortedList_2_System_Int32_System_ValueTuple_2__2_Remove, (SortedList_2_System_Int32_System_ValueTuple_2__2 * __this, int32_t key, MethodInfo * method)); -DO_APP_FUNC(0x010759C0, void, SortedList_2_System_Int32_System_ValueTuple_2__2_RemoveAt, (SortedList_2_System_Int32_System_ValueTuple_2__2 * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x01073520, void, SortedList_2_System_Int32_System_ValueTuple_2__2_System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add, (SortedList_2_System_Int32_System_ValueTuple_2__2 * __this, KeyValuePair_2_System_Int32_System_ValueTuple_2__3 keyValuePair, MethodInfo * method)); -DO_APP_FUNC(0x01073560, bool, SortedList_2_System_Int32_System_ValueTuple_2__2_System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains, (SortedList_2_System_Int32_System_ValueTuple_2__2 * __this, KeyValuePair_2_System_Int32_System_ValueTuple_2__3 keyValuePair, MethodInfo * method)); -DO_APP_FUNC(0x01074160, void, SortedList_2_System_Int32_System_ValueTuple_2__2_System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo, (SortedList_2_System_Int32_System_ValueTuple_2__2 * __this, KeyValuePair_2_System_Int32_System_ValueTuple_2__3__Array * array, int32_t arrayIndex, MethodInfo * method)); -DO_APP_FUNC(0x01073650, bool, SortedList_2_System_Int32_System_ValueTuple_2__2_System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove, (SortedList_2_System_Int32_System_ValueTuple_2__2 * __this, KeyValuePair_2_System_Int32_System_ValueTuple_2__3 keyValuePair, MethodInfo * method)); -DO_APP_FUNC(0x0041AF00, bool, SortedList_2_System_Int32_System_ValueTuple_2__2_System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly, (SortedList_2_System_Int32_System_ValueTuple_2__2 * __this, MethodInfo * method)); -DO_APP_FUNC(0x01073CD0, ICollection_1_System_Int32_ *, SortedList_2_System_Int32_System_ValueTuple_2__2_System_Collections_Generic_IDictionary_TKey_TValue__get_Keys, (SortedList_2_System_Int32_System_ValueTuple_2__2 * __this, MethodInfo * method)); -DO_APP_FUNC(0x01073D00, ICollection_1_System_ValueTuple_2__5 *, SortedList_2_System_Int32_System_ValueTuple_2__2_System_Collections_Generic_IDictionary_TKey_TValue__get_Values, (SortedList_2_System_Int32_System_ValueTuple_2__2 * __this, MethodInfo * method)); -DO_APP_FUNC(0x01074DA0, IEnumerator_1_KeyValuePair_2_System_Int32_System_ValueTuple_2__3 *, SortedList_2_System_Int32_System_ValueTuple_2__2_System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator, (SortedList_2_System_Int32_System_ValueTuple_2__2 * __this, MethodInfo * method)); -DO_APP_FUNC(0x01073CD0, IEnumerable_1_System_Int32_ *, SortedList_2_System_Int32_System_ValueTuple_2__2_System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Keys, (SortedList_2_System_Int32_System_ValueTuple_2__2 * __this, MethodInfo * method)); -DO_APP_FUNC(0x01073D00, IEnumerable_1_System_ValueTuple_2__5 *, SortedList_2_System_Int32_System_ValueTuple_2__2_System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Values, (SortedList_2_System_Int32_System_ValueTuple_2__2 * __this, MethodInfo * method)); -DO_APP_FUNC(0x010744E0, void, SortedList_2_System_Int32_System_ValueTuple_2__2_System_Collections_ICollection_CopyTo, (SortedList_2_System_Int32_System_ValueTuple_2__2 * __this, Array * array, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x0041AF00, bool, SortedList_2_System_Int32_System_ValueTuple_2__2_System_Collections_ICollection_get_IsSynchronized, (SortedList_2_System_Int32_System_ValueTuple_2__2 * __this, MethodInfo * method)); -DO_APP_FUNC(0x01073EF0, Object *, SortedList_2_System_Int32_System_ValueTuple_2__2_System_Collections_ICollection_get_SyncRoot, (SortedList_2_System_Int32_System_ValueTuple_2__2 * __this, MethodInfo * method)); -DO_APP_FUNC(0x01073960, void, SortedList_2_System_Int32_System_ValueTuple_2__2_System_Collections_IDictionary_Add, (SortedList_2_System_Int32_System_ValueTuple_2__2 * __this, Object * key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x01073FD0, bool, SortedList_2_System_Int32_System_ValueTuple_2__2_System_Collections_IDictionary_Contains, (SortedList_2_System_Int32_System_ValueTuple_2__2 * __this, Object * key, MethodInfo * method)); -DO_APP_FUNC(0x01074EA0, IDictionaryEnumerator *, SortedList_2_System_Int32_System_ValueTuple_2__2_System_Collections_IDictionary_GetEnumerator, (SortedList_2_System_Int32_System_ValueTuple_2__2 * __this, MethodInfo * method)); -DO_APP_FUNC(0x01075BD0, void, SortedList_2_System_Int32_System_ValueTuple_2__2_System_Collections_IDictionary_Remove, (SortedList_2_System_Int32_System_ValueTuple_2__2 * __this, Object * key, MethodInfo * method)); -DO_APP_FUNC(0x0041AF00, bool, SortedList_2_System_Int32_System_ValueTuple_2__2_System_Collections_IDictionary_get_IsFixedSize, (SortedList_2_System_Int32_System_ValueTuple_2__2 * __this, MethodInfo * method)); -DO_APP_FUNC(0x0041AF00, bool, SortedList_2_System_Int32_System_ValueTuple_2__2_System_Collections_IDictionary_get_IsReadOnly, (SortedList_2_System_Int32_System_ValueTuple_2__2 * __this, MethodInfo * method)); -DO_APP_FUNC(0x010752E0, Object *, SortedList_2_System_Int32_System_ValueTuple_2__2_System_Collections_IDictionary_get_Item, (SortedList_2_System_Int32_System_ValueTuple_2__2 * __this, Object * key, MethodInfo * method)); -DO_APP_FUNC(0x01073CD0, ICollection *, SortedList_2_System_Int32_System_ValueTuple_2__2_System_Collections_IDictionary_get_Keys, (SortedList_2_System_Int32_System_ValueTuple_2__2 * __this, MethodInfo * method)); -DO_APP_FUNC(0x01073D00, ICollection *, SortedList_2_System_Int32_System_ValueTuple_2__2_System_Collections_IDictionary_get_Values, (SortedList_2_System_Int32_System_ValueTuple_2__2 * __this, MethodInfo * method)); -DO_APP_FUNC(0x01075430, void, SortedList_2_System_Int32_System_ValueTuple_2__2_System_Collections_IDictionary_set_Item, (SortedList_2_System_Int32_System_ValueTuple_2__2 * __this, Object * key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x01074DA0, IEnumerator *, SortedList_2_System_Int32_System_ValueTuple_2__2_System_Collections_IEnumerable_GetEnumerator, (SortedList_2_System_Int32_System_ValueTuple_2__2 * __this, MethodInfo * method)); -DO_APP_FUNC(0x01075CB0, void, SortedList_2_System_Int32_System_ValueTuple_2__2_TrimExcess, (SortedList_2_System_Int32_System_ValueTuple_2__2 * __this, MethodInfo * method)); -DO_APP_FUNC(0x01075900, bool, SortedList_2_System_Int32_System_ValueTuple_2__2_TryGetValue, (SortedList_2_System_Int32_System_ValueTuple_2__2 * __this, int32_t key, ValueTuple_2_Object_Int32_ value, MethodInfo * method)); -DO_APP_FUNC(0x00BF9D80, int32_t, SortedList_2_System_Int32_System_ValueTuple_2__2_get_Capacity, (SortedList_2_System_Int32_System_ValueTuple_2__2 * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3B0, IComparer_1_System_Int32_ *, SortedList_2_System_Int32_System_ValueTuple_2__2_get_Comparer, (SortedList_2_System_Int32_System_ValueTuple_2__2 * __this, MethodInfo * method)); -DO_APP_FUNC(0x003CC980, int32_t, SortedList_2_System_Int32_System_ValueTuple_2__2_get_Count, (SortedList_2_System_Int32_System_ValueTuple_2__2 * __this, MethodInfo * method)); -DO_APP_FUNC(0x01075090, ValueTuple_2_Object_Int32_, SortedList_2_System_Int32_System_ValueTuple_2__2_get_Item, (SortedList_2_System_Int32_System_ValueTuple_2__2 * __this, int32_t key, MethodInfo * method)); -DO_APP_FUNC(0x01073CD0, IList_1_System_Int32_ *, SortedList_2_System_Int32_System_ValueTuple_2__2_get_Keys, (SortedList_2_System_Int32_System_ValueTuple_2__2 * __this, MethodInfo * method)); -DO_APP_FUNC(0x01073D00, IList_1_System_ValueTuple_2__7 *, SortedList_2_System_Int32_System_ValueTuple_2__2_get_Values, (SortedList_2_System_Int32_System_ValueTuple_2__2 * __this, MethodInfo * method)); -DO_APP_FUNC(0x01073760, void, SortedList_2_System_Int32_System_ValueTuple_2__2_set_Capacity, (SortedList_2_System_Int32_System_ValueTuple_2__2 * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x010751B0, void, SortedList_2_System_Int32_System_ValueTuple_2__2_set_Item, (SortedList_2_System_Int32_System_ValueTuple_2__2 * __this, int32_t key, ValueTuple_2_Object_Int32_ value, MethodInfo * method)); +DO_APP_FUNC(0x01072AD0, void, SortedList_2_System_Int32_System_ValueTuple_2__4__ctor, (SortedList_2_System_Int32_System_ValueTuple_2__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01072EB0, void, SortedList_2_System_Int32_System_ValueTuple_2__4__ctor_1, (SortedList_2_System_Int32_System_ValueTuple_2__4 * __this, IComparer_1_System_Int32_ * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01072FA0, void, SortedList_2_System_Int32_System_ValueTuple_2__4__ctor_2, (SortedList_2_System_Int32_System_ValueTuple_2__4 * __this, IDictionary_2_System_Int32_System_ValueTuple_2__1 * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x01072C60, void, SortedList_2_System_Int32_System_ValueTuple_2__4__ctor_3, (SortedList_2_System_Int32_System_ValueTuple_2__4 * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1420, SortedList_2_System_Int32_System_ValueTuple_2__4__ctor_3__MethodInfo); +DO_APP_FUNC(0x01072FC0, void, SortedList_2_System_Int32_System_ValueTuple_2__4__ctor_4, (SortedList_2_System_Int32_System_ValueTuple_2__4 * __this, IDictionary_2_System_Int32_System_ValueTuple_2__1 * dictionary, IComparer_1_System_Int32_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1428, SortedList_2_System_Int32_System_ValueTuple_2__4__ctor_4__MethodInfo); +DO_APP_FUNC(0x01072F30, void, SortedList_2_System_Int32_System_ValueTuple_2__4__ctor_5, (SortedList_2_System_Int32_System_ValueTuple_2__4 * __this, int32_t capacity, IComparer_1_System_Int32_ * comparer, MethodInfo * method)); +DO_APP_FUNC(0x010733D0, void, SortedList_2_System_Int32_System_ValueTuple_2__4_Add, (SortedList_2_System_Int32_System_ValueTuple_2__4 * __this, int32_t key, ValueTuple_2_Object_Int32_ value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1418, SortedList_2_System_Int32_System_ValueTuple_2__4_Add__MethodInfo); +DO_APP_FUNC(0x01073FA0, void, SortedList_2_System_Int32_System_ValueTuple_2__4_Clear, (SortedList_2_System_Int32_System_ValueTuple_2__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x010740D0, bool, SortedList_2_System_Int32_System_ValueTuple_2__4_ContainsKey, (SortedList_2_System_Int32_System_ValueTuple_2__4 * __this, int32_t key, MethodInfo * method)); +DO_APP_FUNC(0x01074110, bool, SortedList_2_System_Int32_System_ValueTuple_2__4_ContainsValue, (SortedList_2_System_Int32_System_ValueTuple_2__4 * __this, ValueTuple_2_Object_Int32_ value, MethodInfo * method)); +DO_APP_FUNC(0x01074C40, void, SortedList_2_System_Int32_System_ValueTuple_2__4_EnsureCapacity, (SortedList_2_System_Int32_System_ValueTuple_2__4 * __this, int32_t min, MethodInfo * method)); +DO_APP_FUNC(0x01074CA0, ValueTuple_2_Object_Int32_, SortedList_2_System_Int32_System_ValueTuple_2__4_GetByIndex, (SortedList_2_System_Int32_System_ValueTuple_2__4 * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF13B8, SortedList_2_System_Int32_System_ValueTuple_2__4_GetByIndex__MethodInfo); +DO_APP_FUNC(0x01074DA0, IEnumerator_1_KeyValuePair_2_System_Int32_System_ValueTuple_2__3 *, SortedList_2_System_Int32_System_ValueTuple_2__4_GetEnumerator, (SortedList_2_System_Int32_System_ValueTuple_2__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01074FA0, int32_t, SortedList_2_System_Int32_System_ValueTuple_2__4_GetKey, (SortedList_2_System_Int32_System_ValueTuple_2__4 * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF13C0, SortedList_2_System_Int32_System_ValueTuple_2__4_GetKey__MethodInfo); +DO_APP_FUNC(0x01073D30, SortedList_2_TKey_TValue_KeyList_System_Int32_System_ValueTuple_2__2 *, SortedList_2_System_Int32_System_ValueTuple_2__4_GetKeyListHelper, (SortedList_2_System_Int32_System_ValueTuple_2__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01073E10, SortedList_2_TKey_TValue_ValueList_System_Int32_System_ValueTuple_2__2 *, SortedList_2_System_Int32_System_ValueTuple_2__4_GetValueListHelper, (SortedList_2_System_Int32_System_ValueTuple_2__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x010756E0, int32_t, SortedList_2_System_Int32_System_ValueTuple_2__4_IndexOfKey, (SortedList_2_System_Int32_System_ValueTuple_2__4 * __this, int32_t key, MethodInfo * method)); +DO_APP_FUNC(0x01075740, int32_t, SortedList_2_System_Int32_System_ValueTuple_2__4_IndexOfValue, (SortedList_2_System_Int32_System_ValueTuple_2__4 * __this, ValueTuple_2_Object_Int32_ value, MethodInfo * method)); +DO_APP_FUNC(0x010757A0, void, SortedList_2_System_Int32_System_ValueTuple_2__4_Insert, (SortedList_2_System_Int32_System_ValueTuple_2__4 * __this, int32_t index, int32_t key, ValueTuple_2_Object_Int32_ value, MethodInfo * method)); +DO_APP_FUNC(0x01075D00, bool, SortedList_2_System_Int32_System_ValueTuple_2__4_IsCompatibleKey, (Object * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1370, SortedList_2_System_Int32_System_ValueTuple_2__4_IsCompatibleKey__MethodInfo); +DO_APP_FUNC(0x01075B60, bool, SortedList_2_System_Int32_System_ValueTuple_2__4_Remove, (SortedList_2_System_Int32_System_ValueTuple_2__4 * __this, int32_t key, MethodInfo * method)); +DO_APP_FUNC(0x010759C0, void, SortedList_2_System_Int32_System_ValueTuple_2__4_RemoveAt, (SortedList_2_System_Int32_System_ValueTuple_2__4 * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1368, SortedList_2_System_Int32_System_ValueTuple_2__4_RemoveAt__MethodInfo); +DO_APP_FUNC(0x01073520, void, SortedList_2_System_Int32_System_ValueTuple_2__4_System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add, (SortedList_2_System_Int32_System_ValueTuple_2__4 * __this, KeyValuePair_2_System_Int32_System_ValueTuple_2__3 keyValuePair, MethodInfo * method)); +DO_APP_FUNC(0x01073560, bool, SortedList_2_System_Int32_System_ValueTuple_2__4_System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains, (SortedList_2_System_Int32_System_ValueTuple_2__4 * __this, KeyValuePair_2_System_Int32_System_ValueTuple_2__3 keyValuePair, MethodInfo * method)); +DO_APP_FUNC(0x01074160, void, SortedList_2_System_Int32_System_ValueTuple_2__4_System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo, (SortedList_2_System_Int32_System_ValueTuple_2__4 * __this, KeyValuePair_2_System_Int32_System_ValueTuple_2__3__Array * array, int32_t arrayIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF13E0, SortedList_2_System_Int32_System_ValueTuple_2__4_System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo__MethodInfo); +DO_APP_FUNC(0x01073650, bool, SortedList_2_System_Int32_System_ValueTuple_2__4_System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove, (SortedList_2_System_Int32_System_ValueTuple_2__4 * __this, KeyValuePair_2_System_Int32_System_ValueTuple_2__3 keyValuePair, MethodInfo * method)); +DO_APP_FUNC(0x0041AF00, bool, SortedList_2_System_Int32_System_ValueTuple_2__4_System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly, (SortedList_2_System_Int32_System_ValueTuple_2__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01073CD0, ICollection_1_System_Int32_ *, SortedList_2_System_Int32_System_ValueTuple_2__4_System_Collections_Generic_IDictionary_TKey_TValue__get_Keys, (SortedList_2_System_Int32_System_ValueTuple_2__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01073D00, ICollection_1_System_ValueTuple_2__5 *, SortedList_2_System_Int32_System_ValueTuple_2__4_System_Collections_Generic_IDictionary_TKey_TValue__get_Values, (SortedList_2_System_Int32_System_ValueTuple_2__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01074DA0, IEnumerator_1_KeyValuePair_2_System_Int32_System_ValueTuple_2__3 *, SortedList_2_System_Int32_System_ValueTuple_2__4_System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator, (SortedList_2_System_Int32_System_ValueTuple_2__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01073CD0, IEnumerable_1_System_Int32_ *, SortedList_2_System_Int32_System_ValueTuple_2__4_System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Keys, (SortedList_2_System_Int32_System_ValueTuple_2__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01073D00, IEnumerable_1_System_ValueTuple_2__5 *, SortedList_2_System_Int32_System_ValueTuple_2__4_System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Values, (SortedList_2_System_Int32_System_ValueTuple_2__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x010744E0, void, SortedList_2_System_Int32_System_ValueTuple_2__4_System_Collections_ICollection_CopyTo, (SortedList_2_System_Int32_System_ValueTuple_2__4 * __this, Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF13A0, SortedList_2_System_Int32_System_ValueTuple_2__4_System_Collections_ICollection_CopyTo__MethodInfo); +DO_APP_FUNC(0x0041AF00, bool, SortedList_2_System_Int32_System_ValueTuple_2__4_System_Collections_ICollection_get_IsSynchronized, (SortedList_2_System_Int32_System_ValueTuple_2__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01073EF0, Object *, SortedList_2_System_Int32_System_ValueTuple_2__4_System_Collections_ICollection_get_SyncRoot, (SortedList_2_System_Int32_System_ValueTuple_2__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01073960, void, SortedList_2_System_Int32_System_ValueTuple_2__4_System_Collections_IDictionary_Add, (SortedList_2_System_Int32_System_ValueTuple_2__4 * __this, Object * key, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF13C8, SortedList_2_System_Int32_System_ValueTuple_2__4_System_Collections_IDictionary_Add__MethodInfo); +DO_APP_FUNC(0x01073FD0, bool, SortedList_2_System_Int32_System_ValueTuple_2__4_System_Collections_IDictionary_Contains, (SortedList_2_System_Int32_System_ValueTuple_2__4 * __this, Object * key, MethodInfo * method)); +DO_APP_FUNC(0x01074EA0, IDictionaryEnumerator *, SortedList_2_System_Int32_System_ValueTuple_2__4_System_Collections_IDictionary_GetEnumerator, (SortedList_2_System_Int32_System_ValueTuple_2__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01075BD0, void, SortedList_2_System_Int32_System_ValueTuple_2__4_System_Collections_IDictionary_Remove, (SortedList_2_System_Int32_System_ValueTuple_2__4 * __this, Object * key, MethodInfo * method)); +DO_APP_FUNC(0x0041AF00, bool, SortedList_2_System_Int32_System_ValueTuple_2__4_System_Collections_IDictionary_get_IsFixedSize, (SortedList_2_System_Int32_System_ValueTuple_2__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x0041AF00, bool, SortedList_2_System_Int32_System_ValueTuple_2__4_System_Collections_IDictionary_get_IsReadOnly, (SortedList_2_System_Int32_System_ValueTuple_2__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x010752E0, Object *, SortedList_2_System_Int32_System_ValueTuple_2__4_System_Collections_IDictionary_get_Item, (SortedList_2_System_Int32_System_ValueTuple_2__4 * __this, Object * key, MethodInfo * method)); +DO_APP_FUNC(0x01073CD0, ICollection *, SortedList_2_System_Int32_System_ValueTuple_2__4_System_Collections_IDictionary_get_Keys, (SortedList_2_System_Int32_System_ValueTuple_2__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01073D00, ICollection *, SortedList_2_System_Int32_System_ValueTuple_2__4_System_Collections_IDictionary_get_Values, (SortedList_2_System_Int32_System_ValueTuple_2__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01075430, void, SortedList_2_System_Int32_System_ValueTuple_2__4_System_Collections_IDictionary_set_Item, (SortedList_2_System_Int32_System_ValueTuple_2__4 * __this, Object * key, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1378, SortedList_2_System_Int32_System_ValueTuple_2__4_System_Collections_IDictionary_set_Item__MethodInfo); +DO_APP_FUNC(0x01074DA0, IEnumerator *, SortedList_2_System_Int32_System_ValueTuple_2__4_System_Collections_IEnumerable_GetEnumerator, (SortedList_2_System_Int32_System_ValueTuple_2__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01075CB0, void, SortedList_2_System_Int32_System_ValueTuple_2__4_TrimExcess, (SortedList_2_System_Int32_System_ValueTuple_2__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01075900, bool, SortedList_2_System_Int32_System_ValueTuple_2__4_TryGetValue, (SortedList_2_System_Int32_System_ValueTuple_2__4 * __this, int32_t key, ValueTuple_2_Object_Int32_ * value, MethodInfo * method)); +DO_APP_FUNC(0x00BF9D80, int32_t, SortedList_2_System_Int32_System_ValueTuple_2__4_get_Capacity, (SortedList_2_System_Int32_System_ValueTuple_2__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BB3B0, IComparer_1_System_Int32_ *, SortedList_2_System_Int32_System_ValueTuple_2__4_get_Comparer, (SortedList_2_System_Int32_System_ValueTuple_2__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x003CC980, int32_t, SortedList_2_System_Int32_System_ValueTuple_2__4_get_Count, (SortedList_2_System_Int32_System_ValueTuple_2__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01075090, ValueTuple_2_Object_Int32_, SortedList_2_System_Int32_System_ValueTuple_2__4_get_Item, (SortedList_2_System_Int32_System_ValueTuple_2__4 * __this, int32_t key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF13B0, SortedList_2_System_Int32_System_ValueTuple_2__4_get_Item__MethodInfo); +DO_APP_FUNC(0x01073CD0, IList_1_System_Int32_ *, SortedList_2_System_Int32_System_ValueTuple_2__4_get_Keys, (SortedList_2_System_Int32_System_ValueTuple_2__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01073D00, IList_1_System_ValueTuple_2__7 *, SortedList_2_System_Int32_System_ValueTuple_2__4_get_Values, (SortedList_2_System_Int32_System_ValueTuple_2__4 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01073760, void, SortedList_2_System_Int32_System_ValueTuple_2__4_set_Capacity, (SortedList_2_System_Int32_System_ValueTuple_2__4 * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF13D8, SortedList_2_System_Int32_System_ValueTuple_2__4_set_Capacity__MethodInfo); +DO_APP_FUNC(0x010751B0, void, SortedList_2_System_Int32_System_ValueTuple_2__4_set_Item, (SortedList_2_System_Int32_System_ValueTuple_2__4 * __this, int32_t key, ValueTuple_2_Object_Int32_ value, MethodInfo * method)); DO_APP_FUNC(0x01072AD0, void, SortedList_2_System_Object_System_Object___ctor, (SortedList_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01072EB0, void, SortedList_2_System_Object_System_Object___ctor_1, (SortedList_2_System_Object_System_Object_ * __this, IComparer_1_System_Object_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01072FA0, void, SortedList_2_System_Object_System_Object___ctor_2, (SortedList_2_System_Object_System_Object_ * __this, IDictionary_2_System_Object_System_Object_ * dictionary, MethodInfo * method)); DO_APP_FUNC(0x01075DB0, void, SortedList_2_System_Object_System_Object___ctor_3, (SortedList_2_System_Object_System_Object_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1390, SortedList_2_System_Object_System_Object___ctor_3__MethodInfo); DO_APP_FUNC(0x01076000, void, SortedList_2_System_Object_System_Object___ctor_4, (SortedList_2_System_Object_System_Object_ * __this, IDictionary_2_System_Object_System_Object_ * dictionary, IComparer_1_System_Object_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1398, SortedList_2_System_Object_System_Object___ctor_4__MethodInfo); DO_APP_FUNC(0x01072F30, void, SortedList_2_System_Object_System_Object___ctor_5, (SortedList_2_System_Object_System_Object_ * __this, int32_t capacity, IComparer_1_System_Object_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01076380, void, SortedList_2_System_Object_System_Object__Add, (SortedList_2_System_Object_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1380, SortedList_2_System_Object_System_Object__Add__MethodInfo); DO_APP_FUNC(0x01076CD0, void, SortedList_2_System_Object_System_Object__Clear, (SortedList_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010740D0, bool, SortedList_2_System_Object_System_Object__ContainsKey, (SortedList_2_System_Object_System_Object_ * __this, Object * key, MethodInfo * method)); DO_APP_FUNC(0x01076E10, bool, SortedList_2_System_Object_System_Object__ContainsValue, (SortedList_2_System_Object_System_Object_ * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01074C40, void, SortedList_2_System_Object_System_Object__EnsureCapacity, (SortedList_2_System_Object_System_Object_ * __this, int32_t min, MethodInfo * method)); DO_APP_FUNC(0x01077800, Object *, SortedList_2_System_Object_System_Object__GetByIndex, (SortedList_2_System_Object_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1360, SortedList_2_System_Object_System_Object__GetByIndex__MethodInfo); DO_APP_FUNC(0x010778F0, IEnumerator_1_KeyValuePair_2_System_Object_System_Object_ *, SortedList_2_System_Object_System_Object__GetEnumerator, (SortedList_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01077AD0, Object *, SortedList_2_System_Object_System_Object__GetKey, (SortedList_2_System_Object_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1320, SortedList_2_System_Object_System_Object__GetKey__MethodInfo); DO_APP_FUNC(0x01073D30, SortedList_2_TKey_TValue_KeyList_System_Object_System_Object_ *, SortedList_2_System_Object_System_Object__GetKeyListHelper, (SortedList_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01073E10, SortedList_2_TKey_TValue_ValueList_System_Object_System_Object_ *, SortedList_2_System_Object_System_Object__GetValueListHelper, (SortedList_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01078130, int32_t, SortedList_2_System_Object_System_Object__IndexOfKey, (SortedList_2_System_Object_System_Object_ * __this, Object * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1338, SortedList_2_System_Object_System_Object__IndexOfKey__MethodInfo); DO_APP_FUNC(0x010781F0, int32_t, SortedList_2_System_Object_System_Object__IndexOfValue, (SortedList_2_System_Object_System_Object_ * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01078240, void, SortedList_2_System_Object_System_Object__Insert, (SortedList_2_System_Object_System_Object_ * __this, int32_t index, Object * key, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01078620, bool, SortedList_2_System_Object_System_Object__IsCompatibleKey, (Object * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1330, SortedList_2_System_Object_System_Object__IsCompatibleKey__MethodInfo); DO_APP_FUNC(0x01075B60, bool, SortedList_2_System_Object_System_Object__Remove, (SortedList_2_System_Object_System_Object_ * __this, Object * key, MethodInfo * method)); DO_APP_FUNC(0x010783E0, void, SortedList_2_System_Object_System_Object__RemoveAt, (SortedList_2_System_Object_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1340, SortedList_2_System_Object_System_Object__RemoveAt__MethodInfo); DO_APP_FUNC(0x01076500, void, SortedList_2_System_Object_System_Object__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add, (SortedList_2_System_Object_System_Object_ * __this, KeyValuePair_2_System_Object_System_Object_ keyValuePair, MethodInfo * method)); DO_APP_FUNC(0x01076520, bool, SortedList_2_System_Object_System_Object__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains, (SortedList_2_System_Object_System_Object_ * __this, KeyValuePair_2_System_Object_System_Object_ keyValuePair, MethodInfo * method)); DO_APP_FUNC(0x01076E50, void, SortedList_2_System_Object_System_Object__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo, (SortedList_2_System_Object_System_Object_ * __this, KeyValuePair_2_System_Object_System_Object___Array * array, int32_t arrayIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1348, SortedList_2_System_Object_System_Object__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo__MethodInfo); DO_APP_FUNC(0x010765F0, bool, SortedList_2_System_Object_System_Object__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove, (SortedList_2_System_Object_System_Object_ * __this, KeyValuePair_2_System_Object_System_Object_ keyValuePair, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, SortedList_2_System_Object_System_Object__System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly, (SortedList_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01073CD0, ICollection_1_System_Object_ *, SortedList_2_System_Object_System_Object__System_Collections_Generic_IDictionary_TKey_TValue__get_Keys, (SortedList_2_System_Object_System_Object_ * __this, MethodInfo * method)); @@ -190989,9 +209411,11 @@ DO_APP_FUNC(0x010778F0, IEnumerator_1_KeyValuePair_2_System_Object_System_Object DO_APP_FUNC(0x01073CD0, IEnumerable_1_System_Object_ *, SortedList_2_System_Object_System_Object__System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Keys, (SortedList_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01073D00, IEnumerable_1_System_Object_ *, SortedList_2_System_Object_System_Object__System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Values, (SortedList_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01077160, void, SortedList_2_System_Object_System_Object__System_Collections_ICollection_CopyTo, (SortedList_2_System_Object_System_Object_ * __this, Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1358, SortedList_2_System_Object_System_Object__System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, SortedList_2_System_Object_System_Object__System_Collections_ICollection_get_IsSynchronized, (SortedList_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01076C20, Object *, SortedList_2_System_Object_System_Object__System_Collections_ICollection_get_SyncRoot, (SortedList_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010768E0, void, SortedList_2_System_Object_System_Object__System_Collections_IDictionary_Add, (SortedList_2_System_Object_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1350, SortedList_2_System_Object_System_Object__System_Collections_IDictionary_Add__MethodInfo); DO_APP_FUNC(0x01076D10, bool, SortedList_2_System_Object_System_Object__System_Collections_IDictionary_Contains, (SortedList_2_System_Object_System_Object_ * __this, Object * key, MethodInfo * method)); DO_APP_FUNC(0x010779E0, IDictionaryEnumerator *, SortedList_2_System_Object_System_Object__System_Collections_IDictionary_GetEnumerator, (SortedList_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01078530, void, SortedList_2_System_Object_System_Object__System_Collections_IDictionary_Remove, (SortedList_2_System_Object_System_Object_ * __this, Object * key, MethodInfo * method)); @@ -191001,17 +209425,21 @@ DO_APP_FUNC(0x01077DD0, Object *, SortedList_2_System_Object_System_Object__Syst DO_APP_FUNC(0x01073CD0, ICollection *, SortedList_2_System_Object_System_Object__System_Collections_IDictionary_get_Keys, (SortedList_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01073D00, ICollection *, SortedList_2_System_Object_System_Object__System_Collections_IDictionary_get_Values, (SortedList_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01077EE0, void, SortedList_2_System_Object_System_Object__System_Collections_IDictionary_set_Item, (SortedList_2_System_Object_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1318, SortedList_2_System_Object_System_Object__System_Collections_IDictionary_set_Item__MethodInfo); DO_APP_FUNC(0x010778F0, IEnumerator *, SortedList_2_System_Object_System_Object__System_Collections_IEnumerable_GetEnumerator, (SortedList_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01075CB0, void, SortedList_2_System_Object_System_Object__TrimExcess, (SortedList_2_System_Object_System_Object_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x01078330, bool, SortedList_2_System_Object_System_Object__TryGetValue, (SortedList_2_System_Object_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x01078330, bool, SortedList_2_System_Object_System_Object__TryGetValue, (SortedList_2_System_Object_System_Object_ * __this, Object * key, Object * * value, MethodInfo * method)); DO_APP_FUNC(0x00BF9D80, int32_t, SortedList_2_System_Object_System_Object__get_Capacity, (SortedList_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3B0, IComparer_1_System_Object_ *, SortedList_2_System_Object_System_Object__get_Comparer, (SortedList_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003CC980, int32_t, SortedList_2_System_Object_System_Object__get_Count, (SortedList_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01077BC0, Object *, SortedList_2_System_Object_System_Object__get_Item, (SortedList_2_System_Object_System_Object_ * __this, Object * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1328, SortedList_2_System_Object_System_Object__get_Item__MethodInfo); DO_APP_FUNC(0x01073CD0, IList_1_System_Object_ *, SortedList_2_System_Object_System_Object__get_Keys, (SortedList_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01073D00, IList_1_System_Object_ *, SortedList_2_System_Object_System_Object__get_Values, (SortedList_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010766E0, void, SortedList_2_System_Object_System_Object__set_Capacity, (SortedList_2_System_Object_System_Object_ * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1388, SortedList_2_System_Object_System_Object__set_Capacity__MethodInfo); DO_APP_FUNC(0x01077CA0, void, SortedList_2_System_Object_System_Object__set_Item, (SortedList_2_System_Object_System_Object_ * __this, Object * key, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1310, SortedList_2_System_Object_System_Object__set_Item__MethodInfo); DO_APP_FUNC(0x010786D0, void, SortedSetEqualityComparer_1_KeyValuePair_2_System_Object_System_Char___ctor, (SortedSetEqualityComparer_1_KeyValuePair_2_System_Object_System_Char_ * __this, IEqualityComparer_1_KeyValuePair_2_System_Object_System_Char_ * memberEqualityComparer, MethodInfo * method)); DO_APP_FUNC(0x010786F0, void, SortedSetEqualityComparer_1_KeyValuePair_2_System_Object_System_Char___ctor_1, (SortedSetEqualityComparer_1_KeyValuePair_2_System_Object_System_Char_ * __this, IComparer_1_KeyValuePair_2_System_Object_System_Char_ * comparer, IEqualityComparer_1_KeyValuePair_2_System_Object_System_Char_ * memberEqualityComparer, MethodInfo * method)); DO_APP_FUNC(0x01078BB0, bool, SortedSetEqualityComparer_1_KeyValuePair_2_System_Object_System_Char__Equals, (SortedSetEqualityComparer_1_KeyValuePair_2_System_Object_System_Char_ * __this, Object * obj, MethodInfo * method)); @@ -191040,12 +209468,14 @@ DO_APP_FUNC(0x010795F0, void, SortedSet_1_KeyValuePair_2_System_Object_System_Ch DO_APP_FUNC(0x01079670, void, SortedSet_1_KeyValuePair_2_System_Object_System_Char___ctor_1, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, IComparer_1_KeyValuePair_2_System_Object_System_Char_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01079700, void, SortedSet_1_KeyValuePair_2_System_Object_System_Char___ctor_2, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, IEnumerable_1_KeyValuePair_2_System_Object_System_Char_ * collection, MethodInfo * method)); DO_APP_FUNC(0x01079770, void, SortedSet_1_KeyValuePair_2_System_Object_System_Char___ctor_3, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, IEnumerable_1_KeyValuePair_2_System_Object_System_Char_ * collection, IComparer_1_KeyValuePair_2_System_Object_System_Char_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3578, SortedSet_1_KeyValuePair_2_System_Object_System_Char___ctor_3__MethodInfo); DO_APP_FUNC(0x00424C30, void, SortedSet_1_KeyValuePair_2_System_Object_System_Char___ctor_4, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x0107AB30, bool, SortedSet_1_KeyValuePair_2_System_Object_System_Char__Add, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, KeyValuePair_2_System_Object_System_Char_ item, MethodInfo * method)); DO_APP_FUNC(0x01079BE0, void, SortedSet_1_KeyValuePair_2_System_Object_System_Char__AddAllElements, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, IEnumerable_1_KeyValuePair_2_System_Object_System_Char_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0107AB90, bool, SortedSet_1_KeyValuePair_2_System_Object_System_Char__AddIfNotPresent, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, KeyValuePair_2_System_Object_System_Char_ item, MethodInfo * method)); DO_APP_FUNC(0x0107A7D0, bool, SortedSet_1_KeyValuePair_2_System_Object_System_Char__BreadthFirstTreeWalk, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, TreeWalkPredicate_1_KeyValuePair_2_System_Object_System_Char_ * action, MethodInfo * method)); DO_APP_FUNC(0x01082FF0, SortedSet_1_T_ElementCount_KeyValuePair_2_System_Object_System_Char_, SortedSet_1_KeyValuePair_2_System_Object_System_Char__CheckUniqueAndUnfoundElements, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, IEnumerable_1_KeyValuePair_2_System_Object_System_Char_ * other, bool returnIfUnfound, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3518, SortedSet_1_KeyValuePair_2_System_Object_System_Char__CheckUniqueAndUnfoundElements__MethodInfo); DO_APP_FUNC(0x0107B6B0, void, SortedSet_1_KeyValuePair_2_System_Object_System_Char__Clear, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0107E450, SortedSet_1_T_Node_KeyValuePair_2_System_Object_System_Char_ *, SortedSet_1_KeyValuePair_2_System_Object_System_Char__ConstructRootFromSortedArray, (KeyValuePair_2_System_Object_System_Char___Array * arr, int32_t startIndex, int32_t endIndex, SortedSet_1_T_Node_KeyValuePair_2_System_Object_System_Char_ * redNode, MethodInfo * method)); DO_APP_FUNC(0x0107B710, bool, SortedSet_1_KeyValuePair_2_System_Object_System_Char__Contains, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, KeyValuePair_2_System_Object_System_Char_ item, MethodInfo * method)); @@ -191053,53 +209483,69 @@ DO_APP_FUNC(0x0107A2E0, bool, SortedSet_1_KeyValuePair_2_System_Object_System_Ch DO_APP_FUNC(0x0107B740, void, SortedSet_1_KeyValuePair_2_System_Object_System_Char__CopyTo, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, KeyValuePair_2_System_Object_System_Char___Array * array, MethodInfo * method)); DO_APP_FUNC(0x0107B7C0, void, SortedSet_1_KeyValuePair_2_System_Object_System_Char__CopyTo_1, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, KeyValuePair_2_System_Object_System_Char___Array * array, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x0107B850, void, SortedSet_1_KeyValuePair_2_System_Object_System_Char__CopyTo_2, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, KeyValuePair_2_System_Object_System_Char___Array * array, int32_t index, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3570, SortedSet_1_KeyValuePair_2_System_Object_System_Char__CopyTo_2__MethodInfo); DO_APP_FUNC(0x0107CDD0, IEqualityComparer_1_SortedSet_1_KeyValuePair_2_System_Object_System_Char_ *, SortedSet_1_KeyValuePair_2_System_Object_System_Char__CreateSetComparer, (MethodInfo * method)); DO_APP_FUNC(0x0107CE40, IEqualityComparer_1_SortedSet_1_KeyValuePair_2_System_Object_System_Char_ *, SortedSet_1_KeyValuePair_2_System_Object_System_Char__CreateSetComparer_1, (IEqualityComparer_1_KeyValuePair_2_System_Object_System_Char_ * memberEqualityComparer, MethodInfo * method)); DO_APP_FUNC(0x0107B0A0, bool, SortedSet_1_KeyValuePair_2_System_Object_System_Char__DoRemove, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, KeyValuePair_2_System_Object_System_Char_ item, MethodInfo * method)); DO_APP_FUNC(0x01080020, void, SortedSet_1_KeyValuePair_2_System_Object_System_Char__ExceptWith, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, IEnumerable_1_KeyValuePair_2_System_Object_System_Char_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3548, SortedSet_1_KeyValuePair_2_System_Object_System_Char__ExceptWith__MethodInfo); DO_APP_FUNC(0x0107C6E0, SortedSet_1_T_Node_KeyValuePair_2_System_Object_System_Char_ *, SortedSet_1_KeyValuePair_2_System_Object_System_Char__FindNode, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, KeyValuePair_2_System_Object_System_Char_ item, MethodInfo * method)); DO_APP_FUNC(0x0107CA60, SortedSet_1_T_Node_KeyValuePair_2_System_Object_System_Char_ *, SortedSet_1_KeyValuePair_2_System_Object_System_Char__FindRange, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, KeyValuePair_2_System_Object_System_Char_ from, KeyValuePair_2_System_Object_System_Char_ to, MethodInfo * method)); DO_APP_FUNC(0x0107CAC0, SortedSet_1_T_Node_KeyValuePair_2_System_Object_System_Char_ *, SortedSet_1_KeyValuePair_2_System_Object_System_Char__FindRange_1, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, KeyValuePair_2_System_Object_System_Char_ from, KeyValuePair_2_System_Object_System_Char_ to, bool lowerBoundActive, bool upperBoundActive, MethodInfo * method)); DO_APP_FUNC(0x0107C0D0, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Char_, SortedSet_1_KeyValuePair_2_System_Object_System_Char__GetEnumerator, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01083E00, void, SortedSet_1_KeyValuePair_2_System_Object_System_Char__GetObjectData, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF34E0, SortedSet_1_KeyValuePair_2_System_Object_System_Char__GetObjectData__MethodInfo); DO_APP_FUNC(0x01083BB0, SortedSet_1_KeyValuePair_2_System_Object_System_Char_ *, SortedSet_1_KeyValuePair_2_System_Object_System_Char__GetViewBetween, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, KeyValuePair_2_System_Object_System_Char_ lowerValue, KeyValuePair_2_System_Object_System_Char_ upperValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3500, SortedSet_1_KeyValuePair_2_System_Object_System_Char__GetViewBetween__MethodInfo); DO_APP_FUNC(0x0107D760, bool, SortedSet_1_KeyValuePair_2_System_Object_System_Char__HasEqualComparer, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * other, MethodInfo * method)); DO_APP_FUNC(0x0107A510, bool, SortedSet_1_KeyValuePair_2_System_Object_System_Char__InOrderTreeWalk, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, TreeWalkPredicate_1_KeyValuePair_2_System_Object_System_Char_ * action, MethodInfo * method)); -DO_APP_FUNC(0x0107C1A0, void, SortedSet_1_KeyValuePair_2_System_Object_System_Char__InsertionBalance, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, SortedSet_1_T_Node_KeyValuePair_2_System_Object_System_Char_ * current, SortedSet_1_T_Node_KeyValuePair_2_System_Object_System_Char_ * parent, SortedSet_1_T_Node_KeyValuePair_2_System_Object_System_Char_ * grandParent, SortedSet_1_T_Node_KeyValuePair_2_System_Object_System_Char_ * greatGrandParent, MethodInfo * method)); +DO_APP_FUNC(0x0107C1A0, void, SortedSet_1_KeyValuePair_2_System_Object_System_Char__InsertionBalance, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, SortedSet_1_T_Node_KeyValuePair_2_System_Object_System_Char_ * current, SortedSet_1_T_Node_KeyValuePair_2_System_Object_System_Char_ * * parent, SortedSet_1_T_Node_KeyValuePair_2_System_Object_System_Char_ * grandParent, SortedSet_1_T_Node_KeyValuePair_2_System_Object_System_Char_ * greatGrandParent, MethodInfo * method)); DO_APP_FUNC(0x0107C8A0, int32_t, SortedSet_1_KeyValuePair_2_System_Object_System_Char__InternalIndexOf, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, KeyValuePair_2_System_Object_System_Char_ item, MethodInfo * method)); DO_APP_FUNC(0x0107EFF0, void, SortedSet_1_KeyValuePair_2_System_Object_System_Char__IntersectWith, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, IEnumerable_1_KeyValuePair_2_System_Object_System_Char_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3568, SortedSet_1_KeyValuePair_2_System_Object_System_Char__IntersectWith__MethodInfo); DO_APP_FUNC(0x0107FAB0, void, SortedSet_1_KeyValuePair_2_System_Object_System_Char__IntersectWithEnumerable, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, IEnumerable_1_KeyValuePair_2_System_Object_System_Char_ * other, MethodInfo * method)); DO_APP_FUNC(0x01081530, bool, SortedSet_1_KeyValuePair_2_System_Object_System_Char__IsProperSubsetOf, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, IEnumerable_1_KeyValuePair_2_System_Object_System_Char_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3550, SortedSet_1_KeyValuePair_2_System_Object_System_Char__IsProperSubsetOf__MethodInfo); DO_APP_FUNC(0x01081D80, bool, SortedSet_1_KeyValuePair_2_System_Object_System_Char__IsProperSupersetOf, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, IEnumerable_1_KeyValuePair_2_System_Object_System_Char_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3528, SortedSet_1_KeyValuePair_2_System_Object_System_Char__IsProperSupersetOf__MethodInfo); DO_APP_FUNC(0x01080F80, bool, SortedSet_1_KeyValuePair_2_System_Object_System_Char__IsSubsetOf, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, IEnumerable_1_KeyValuePair_2_System_Object_System_Char_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3540, SortedSet_1_KeyValuePair_2_System_Object_System_Char__IsSubsetOf__MethodInfo); DO_APP_FUNC(0x010811C0, bool, SortedSet_1_KeyValuePair_2_System_Object_System_Char__IsSubsetOfSortedSetWithSameComparer, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * asSorted, MethodInfo * method)); DO_APP_FUNC(0x010817F0, bool, SortedSet_1_KeyValuePair_2_System_Object_System_Char__IsSupersetOf, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, IEnumerable_1_KeyValuePair_2_System_Object_System_Char_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3520, SortedSet_1_KeyValuePair_2_System_Object_System_Char__IsSupersetOf__MethodInfo); DO_APP_FUNC(0x0041AEF0, bool, SortedSet_1_KeyValuePair_2_System_Object_System_Char__IsWithinRange, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, KeyValuePair_2_System_Object_System_Char_ item, MethodInfo * method)); DO_APP_FUNC(0x01084750, int32_t, SortedSet_1_KeyValuePair_2_System_Object_System_Char__Log2, (int32_t value, MethodInfo * method)); DO_APP_FUNC(0x010841E0, void, SortedSet_1_KeyValuePair_2_System_Object_System_Char__OnDeserialization, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, Object * sender, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF34B0, SortedSet_1_KeyValuePair_2_System_Object_System_Char__OnDeserialization__MethodInfo); DO_APP_FUNC(0x01082960, bool, SortedSet_1_KeyValuePair_2_System_Object_System_Char__Overlaps, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, IEnumerable_1_KeyValuePair_2_System_Object_System_Char_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3510, SortedSet_1_KeyValuePair_2_System_Object_System_Char__Overlaps__MethodInfo); DO_APP_FUNC(0x0107B070, bool, SortedSet_1_KeyValuePair_2_System_Object_System_Char__Remove, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, KeyValuePair_2_System_Object_System_Char_ item, MethodInfo * method)); DO_APP_FUNC(0x01079E50, void, SortedSet_1_KeyValuePair_2_System_Object_System_Char__RemoveAllElements, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, IEnumerable_1_KeyValuePair_2_System_Object_System_Char_ * collection, MethodInfo * method)); DO_APP_FUNC(0x01083530, int32_t, SortedSet_1_KeyValuePair_2_System_Object_System_Char__RemoveWhere, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, Predicate_1_System_Collections_Generic_KeyValuePair_2_ * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF34E8, SortedSet_1_KeyValuePair_2_System_Object_System_Char__RemoveWhere__MethodInfo); DO_APP_FUNC(0x0107C3D0, void, SortedSet_1_KeyValuePair_2_System_Object_System_Char__ReplaceChildOrRoot, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, SortedSet_1_T_Node_KeyValuePair_2_System_Object_System_Char_ * parent, SortedSet_1_T_Node_KeyValuePair_2_System_Object_System_Char_ * child, SortedSet_1_T_Node_KeyValuePair_2_System_Object_System_Char_ * newChild, MethodInfo * method)); DO_APP_FUNC(0x0107C470, void, SortedSet_1_KeyValuePair_2_System_Object_System_Char__ReplaceNode, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, SortedSet_1_T_Node_KeyValuePair_2_System_Object_System_Char_ * match, SortedSet_1_T_Node_KeyValuePair_2_System_Object_System_Char_ * parentOfMatch, SortedSet_1_T_Node_KeyValuePair_2_System_Object_System_Char_ * successor, SortedSet_1_T_Node_KeyValuePair_2_System_Object_System_Char_ * parentOfSuccessor, MethodInfo * method)); DO_APP_FUNC(0x01083AE0, IEnumerable_1_KeyValuePair_2_System_Object_System_Char_ *, SortedSet_1_KeyValuePair_2_System_Object_System_Char__Reverse, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010823A0, bool, SortedSet_1_KeyValuePair_2_System_Object_System_Char__SetEquals, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, IEnumerable_1_KeyValuePair_2_System_Object_System_Char_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3530, SortedSet_1_KeyValuePair_2_System_Object_System_Char__SetEquals__MethodInfo); DO_APP_FUNC(0x0107CF10, bool, SortedSet_1_KeyValuePair_2_System_Object_System_Char__SortedSetEquals, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * set1, SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * set2, IComparer_1_KeyValuePair_2_System_Object_System_Char_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01080830, void, SortedSet_1_KeyValuePair_2_System_Object_System_Char__SymmetricExceptWith, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, IEnumerable_1_KeyValuePair_2_System_Object_System_Char_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3538, SortedSet_1_KeyValuePair_2_System_Object_System_Char__SymmetricExceptWith__MethodInfo); DO_APP_FUNC(0x01080A90, void, SortedSet_1_KeyValuePair_2_System_Object_System_Char__SymmetricExceptWithSameComparer, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * other, MethodInfo * method)); DO_APP_FUNC(0x01080D80, void, SortedSet_1_KeyValuePair_2_System_Object_System_Char__SymmetricExceptWithSameComparer_1, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, KeyValuePair_2_System_Object_System_Char___Array * other, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x0107AB60, void, SortedSet_1_KeyValuePair_2_System_Object_System_Char__System_Collections_Generic_ICollection_T__Add, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, KeyValuePair_2_System_Object_System_Char_ item, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, SortedSet_1_KeyValuePair_2_System_Object_System_Char__System_Collections_Generic_ICollection_T__get_IsReadOnly, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0107C110, IEnumerator_1_KeyValuePair_2_System_Object_System_Char_ *, SortedSet_1_KeyValuePair_2_System_Object_System_Char__System_Collections_Generic_IEnumerable_T__GetEnumerator, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0107BB90, void, SortedSet_1_KeyValuePair_2_System_Object_System_Char__System_Collections_ICollection_CopyTo, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3558, SortedSet_1_KeyValuePair_2_System_Object_System_Char__System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, SortedSet_1_KeyValuePair_2_System_Object_System_Char__System_Collections_ICollection_get_IsSynchronized, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0107AA80, Object *, SortedSet_1_KeyValuePair_2_System_Object_System_Char__System_Collections_ICollection_get_SyncRoot, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0107C110, IEnumerator *, SortedSet_1_KeyValuePair_2_System_Object_System_Char__System_Collections_IEnumerable_GetEnumerator, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010841C0, void, SortedSet_1_KeyValuePair_2_System_Object_System_Char__System_Runtime_Serialization_IDeserializationCallback_OnDeserialization, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, Object * sender, MethodInfo * method)); DO_APP_FUNC(0x01083DD0, void, SortedSet_1_KeyValuePair_2_System_Object_System_Char__System_Runtime_Serialization_ISerializable_GetObjectData, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); -DO_APP_FUNC(0x01084680, bool, SortedSet_1_KeyValuePair_2_System_Object_System_Char__TryGetValue, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, KeyValuePair_2_System_Object_System_Char_ equalValue, KeyValuePair_2_System_Object_System_Char_ actualValue, MethodInfo * method)); +DO_APP_FUNC(0x01084680, bool, SortedSet_1_KeyValuePair_2_System_Object_System_Char__TryGetValue, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, KeyValuePair_2_System_Object_System_Char_ equalValue, KeyValuePair_2_System_Object_System_Char_ * actualValue, MethodInfo * method)); DO_APP_FUNC(0x0107D890, void, SortedSet_1_KeyValuePair_2_System_Object_System_Char__UnionWith, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, IEnumerable_1_KeyValuePair_2_System_Object_System_Char_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3560, SortedSet_1_KeyValuePair_2_System_Object_System_Char__UnionWith__MethodInfo); DO_APP_FUNC(0x0107CDC0, void, SortedSet_1_KeyValuePair_2_System_Object_System_Char__UpdateVersion, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SortedSet_1_KeyValuePair_2_System_Object_System_Char__VersionCheck, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, IComparer_1_KeyValuePair_2_System_Object_System_Char_ *, SortedSet_1_KeyValuePair_2_System_Object_System_Char__get_Comparer, (SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, MethodInfo * method)); @@ -191112,12 +209558,14 @@ DO_APP_FUNC(0x010795F0, void, SortedSet_1_KeyValuePair_2_System_Object_System_Ob DO_APP_FUNC(0x01079670, void, SortedSet_1_KeyValuePair_2_System_Object_System_Object___ctor_1, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, IComparer_1_KeyValuePair_2_System_Object_System_Object_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01079700, void, SortedSet_1_KeyValuePair_2_System_Object_System_Object___ctor_2, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, IEnumerable_1_KeyValuePair_2_System_Object_System_Object_ * collection, MethodInfo * method)); DO_APP_FUNC(0x01084760, void, SortedSet_1_KeyValuePair_2_System_Object_System_Object___ctor_3, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, IEnumerable_1_KeyValuePair_2_System_Object_System_Object_ * collection, IComparer_1_KeyValuePair_2_System_Object_System_Object_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3488, SortedSet_1_KeyValuePair_2_System_Object_System_Object___ctor_3__MethodInfo); DO_APP_FUNC(0x00424C30, void, SortedSet_1_KeyValuePair_2_System_Object_System_Object___ctor_4, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x0107AB30, bool, SortedSet_1_KeyValuePair_2_System_Object_System_Object__Add, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, KeyValuePair_2_System_Object_System_Object_ item, MethodInfo * method)); DO_APP_FUNC(0x01084BD0, void, SortedSet_1_KeyValuePair_2_System_Object_System_Object__AddAllElements, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, IEnumerable_1_KeyValuePair_2_System_Object_System_Object_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0107AB90, bool, SortedSet_1_KeyValuePair_2_System_Object_System_Object__AddIfNotPresent, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, KeyValuePair_2_System_Object_System_Object_ item, MethodInfo * method)); DO_APP_FUNC(0x0107A7D0, bool, SortedSet_1_KeyValuePair_2_System_Object_System_Object__BreadthFirstTreeWalk, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, TreeWalkPredicate_1_KeyValuePair_2_System_Object_System_Object_ * action, MethodInfo * method)); DO_APP_FUNC(0x0108AFD0, SortedSet_1_T_ElementCount_KeyValuePair_2_System_Object_System_Object_, SortedSet_1_KeyValuePair_2_System_Object_System_Object__CheckUniqueAndUnfoundElements, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, IEnumerable_1_KeyValuePair_2_System_Object_System_Object_ * other, bool returnIfUnfound, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3430, SortedSet_1_KeyValuePair_2_System_Object_System_Object__CheckUniqueAndUnfoundElements__MethodInfo); DO_APP_FUNC(0x0107B6B0, void, SortedSet_1_KeyValuePair_2_System_Object_System_Object__Clear, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0107E450, SortedSet_1_T_Node_KeyValuePair_2_System_Object_System_Object_ *, SortedSet_1_KeyValuePair_2_System_Object_System_Object__ConstructRootFromSortedArray, (KeyValuePair_2_System_Object_System_Object___Array * arr, int32_t startIndex, int32_t endIndex, SortedSet_1_T_Node_KeyValuePair_2_System_Object_System_Object_ * redNode, MethodInfo * method)); DO_APP_FUNC(0x0107B710, bool, SortedSet_1_KeyValuePair_2_System_Object_System_Object__Contains, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, KeyValuePair_2_System_Object_System_Object_ item, MethodInfo * method)); @@ -191125,53 +209573,69 @@ DO_APP_FUNC(0x010852D0, bool, SortedSet_1_KeyValuePair_2_System_Object_System_Ob DO_APP_FUNC(0x0107B740, void, SortedSet_1_KeyValuePair_2_System_Object_System_Object__CopyTo, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, KeyValuePair_2_System_Object_System_Object___Array * array, MethodInfo * method)); DO_APP_FUNC(0x0107B7C0, void, SortedSet_1_KeyValuePair_2_System_Object_System_Object__CopyTo_1, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, KeyValuePair_2_System_Object_System_Object___Array * array, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x010855B0, void, SortedSet_1_KeyValuePair_2_System_Object_System_Object__CopyTo_2, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, KeyValuePair_2_System_Object_System_Object___Array * array, int32_t index, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3470, SortedSet_1_KeyValuePair_2_System_Object_System_Object__CopyTo_2__MethodInfo); DO_APP_FUNC(0x0107CDD0, IEqualityComparer_1_SortedSet_1_KeyValuePair_2_System_Object_System_Object_ *, SortedSet_1_KeyValuePair_2_System_Object_System_Object__CreateSetComparer, (MethodInfo * method)); DO_APP_FUNC(0x0107CE40, IEqualityComparer_1_SortedSet_1_KeyValuePair_2_System_Object_System_Object_ *, SortedSet_1_KeyValuePair_2_System_Object_System_Object__CreateSetComparer_1, (IEqualityComparer_1_KeyValuePair_2_System_Object_System_Object_ * memberEqualityComparer, MethodInfo * method)); DO_APP_FUNC(0x0107B0A0, bool, SortedSet_1_KeyValuePair_2_System_Object_System_Object__DoRemove, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, KeyValuePair_2_System_Object_System_Object_ item, MethodInfo * method)); DO_APP_FUNC(0x01088200, void, SortedSet_1_KeyValuePair_2_System_Object_System_Object__ExceptWith, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, IEnumerable_1_KeyValuePair_2_System_Object_System_Object_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3468, SortedSet_1_KeyValuePair_2_System_Object_System_Object__ExceptWith__MethodInfo); DO_APP_FUNC(0x0107C6E0, SortedSet_1_T_Node_KeyValuePair_2_System_Object_System_Object_ *, SortedSet_1_KeyValuePair_2_System_Object_System_Object__FindNode, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, KeyValuePair_2_System_Object_System_Object_ item, MethodInfo * method)); DO_APP_FUNC(0x0107CA60, SortedSet_1_T_Node_KeyValuePair_2_System_Object_System_Object_ *, SortedSet_1_KeyValuePair_2_System_Object_System_Object__FindRange, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, KeyValuePair_2_System_Object_System_Object_ from, KeyValuePair_2_System_Object_System_Object_ to, MethodInfo * method)); DO_APP_FUNC(0x0107CAC0, SortedSet_1_T_Node_KeyValuePair_2_System_Object_System_Object_ *, SortedSet_1_KeyValuePair_2_System_Object_System_Object__FindRange_1, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, KeyValuePair_2_System_Object_System_Object_ from, KeyValuePair_2_System_Object_System_Object_ to, bool lowerBoundActive, bool upperBoundActive, MethodInfo * method)); DO_APP_FUNC(0x0107C0D0, SortedSet_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object_, SortedSet_1_KeyValuePair_2_System_Object_System_Object__GetEnumerator, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0108BA80, void, SortedSet_1_KeyValuePair_2_System_Object_System_Object__GetObjectData, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3418, SortedSet_1_KeyValuePair_2_System_Object_System_Object__GetObjectData__MethodInfo); DO_APP_FUNC(0x0108B860, SortedSet_1_KeyValuePair_2_System_Object_System_Object_ *, SortedSet_1_KeyValuePair_2_System_Object_System_Object__GetViewBetween, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, KeyValuePair_2_System_Object_System_Object_ lowerValue, KeyValuePair_2_System_Object_System_Object_ upperValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3408, SortedSet_1_KeyValuePair_2_System_Object_System_Object__GetViewBetween__MethodInfo); DO_APP_FUNC(0x0107D760, bool, SortedSet_1_KeyValuePair_2_System_Object_System_Object__HasEqualComparer, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * other, MethodInfo * method)); DO_APP_FUNC(0x0107A510, bool, SortedSet_1_KeyValuePair_2_System_Object_System_Object__InOrderTreeWalk, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, TreeWalkPredicate_1_KeyValuePair_2_System_Object_System_Object_ * action, MethodInfo * method)); -DO_APP_FUNC(0x0107C1A0, void, SortedSet_1_KeyValuePair_2_System_Object_System_Object__InsertionBalance, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, SortedSet_1_T_Node_KeyValuePair_2_System_Object_System_Object_ * current, SortedSet_1_T_Node_KeyValuePair_2_System_Object_System_Object_ * parent, SortedSet_1_T_Node_KeyValuePair_2_System_Object_System_Object_ * grandParent, SortedSet_1_T_Node_KeyValuePair_2_System_Object_System_Object_ * greatGrandParent, MethodInfo * method)); +DO_APP_FUNC(0x0107C1A0, void, SortedSet_1_KeyValuePair_2_System_Object_System_Object__InsertionBalance, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, SortedSet_1_T_Node_KeyValuePair_2_System_Object_System_Object_ * current, SortedSet_1_T_Node_KeyValuePair_2_System_Object_System_Object_ * * parent, SortedSet_1_T_Node_KeyValuePair_2_System_Object_System_Object_ * grandParent, SortedSet_1_T_Node_KeyValuePair_2_System_Object_System_Object_ * greatGrandParent, MethodInfo * method)); DO_APP_FUNC(0x0107C8A0, int32_t, SortedSet_1_KeyValuePair_2_System_Object_System_Object__InternalIndexOf, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, KeyValuePair_2_System_Object_System_Object_ item, MethodInfo * method)); DO_APP_FUNC(0x010871D0, void, SortedSet_1_KeyValuePair_2_System_Object_System_Object__IntersectWith, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, IEnumerable_1_KeyValuePair_2_System_Object_System_Object_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3450, SortedSet_1_KeyValuePair_2_System_Object_System_Object__IntersectWith__MethodInfo); DO_APP_FUNC(0x01087C90, void, SortedSet_1_KeyValuePair_2_System_Object_System_Object__IntersectWithEnumerable, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, IEnumerable_1_KeyValuePair_2_System_Object_System_Object_ * other, MethodInfo * method)); DO_APP_FUNC(0x01089510, bool, SortedSet_1_KeyValuePair_2_System_Object_System_Object__IsProperSubsetOf, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, IEnumerable_1_KeyValuePair_2_System_Object_System_Object_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3440, SortedSet_1_KeyValuePair_2_System_Object_System_Object__IsProperSubsetOf__MethodInfo); DO_APP_FUNC(0x01089D60, bool, SortedSet_1_KeyValuePair_2_System_Object_System_Object__IsProperSupersetOf, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, IEnumerable_1_KeyValuePair_2_System_Object_System_Object_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3420, SortedSet_1_KeyValuePair_2_System_Object_System_Object__IsProperSupersetOf__MethodInfo); DO_APP_FUNC(0x01088F60, bool, SortedSet_1_KeyValuePair_2_System_Object_System_Object__IsSubsetOf, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, IEnumerable_1_KeyValuePair_2_System_Object_System_Object_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3460, SortedSet_1_KeyValuePair_2_System_Object_System_Object__IsSubsetOf__MethodInfo); DO_APP_FUNC(0x010891A0, bool, SortedSet_1_KeyValuePair_2_System_Object_System_Object__IsSubsetOfSortedSetWithSameComparer, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * asSorted, MethodInfo * method)); DO_APP_FUNC(0x010897D0, bool, SortedSet_1_KeyValuePair_2_System_Object_System_Object__IsSupersetOf, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, IEnumerable_1_KeyValuePair_2_System_Object_System_Object_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3448, SortedSet_1_KeyValuePair_2_System_Object_System_Object__IsSupersetOf__MethodInfo); DO_APP_FUNC(0x0041AEF0, bool, SortedSet_1_KeyValuePair_2_System_Object_System_Object__IsWithinRange, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, KeyValuePair_2_System_Object_System_Object_ item, MethodInfo * method)); DO_APP_FUNC(0x01084750, int32_t, SortedSet_1_KeyValuePair_2_System_Object_System_Object__Log2, (int32_t value, MethodInfo * method)); DO_APP_FUNC(0x0108BE40, void, SortedSet_1_KeyValuePair_2_System_Object_System_Object__OnDeserialization, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, Object * sender, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3410, SortedSet_1_KeyValuePair_2_System_Object_System_Object__OnDeserialization__MethodInfo); DO_APP_FUNC(0x0108A940, bool, SortedSet_1_KeyValuePair_2_System_Object_System_Object__Overlaps, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, IEnumerable_1_KeyValuePair_2_System_Object_System_Object_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3438, SortedSet_1_KeyValuePair_2_System_Object_System_Object__Overlaps__MethodInfo); DO_APP_FUNC(0x0107B070, bool, SortedSet_1_KeyValuePair_2_System_Object_System_Object__Remove, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, KeyValuePair_2_System_Object_System_Object_ item, MethodInfo * method)); DO_APP_FUNC(0x01084E40, void, SortedSet_1_KeyValuePair_2_System_Object_System_Object__RemoveAllElements, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, IEnumerable_1_KeyValuePair_2_System_Object_System_Object_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0108B510, int32_t, SortedSet_1_KeyValuePair_2_System_Object_System_Object__RemoveWhere, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, Predicate_1_System_Collections_Generic_KeyValuePair_2__1 * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3400, SortedSet_1_KeyValuePair_2_System_Object_System_Object__RemoveWhere__MethodInfo); DO_APP_FUNC(0x0107C3D0, void, SortedSet_1_KeyValuePair_2_System_Object_System_Object__ReplaceChildOrRoot, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, SortedSet_1_T_Node_KeyValuePair_2_System_Object_System_Object_ * parent, SortedSet_1_T_Node_KeyValuePair_2_System_Object_System_Object_ * child, SortedSet_1_T_Node_KeyValuePair_2_System_Object_System_Object_ * newChild, MethodInfo * method)); DO_APP_FUNC(0x0107C470, void, SortedSet_1_KeyValuePair_2_System_Object_System_Object__ReplaceNode, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, SortedSet_1_T_Node_KeyValuePair_2_System_Object_System_Object_ * match, SortedSet_1_T_Node_KeyValuePair_2_System_Object_System_Object_ * parentOfMatch, SortedSet_1_T_Node_KeyValuePair_2_System_Object_System_Object_ * successor, SortedSet_1_T_Node_KeyValuePair_2_System_Object_System_Object_ * parentOfSuccessor, MethodInfo * method)); DO_APP_FUNC(0x01083AE0, IEnumerable_1_KeyValuePair_2_System_Object_System_Object_ *, SortedSet_1_KeyValuePair_2_System_Object_System_Object__Reverse, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0108A380, bool, SortedSet_1_KeyValuePair_2_System_Object_System_Object__SetEquals, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, IEnumerable_1_KeyValuePair_2_System_Object_System_Object_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3428, SortedSet_1_KeyValuePair_2_System_Object_System_Object__SetEquals__MethodInfo); DO_APP_FUNC(0x01085E30, bool, SortedSet_1_KeyValuePair_2_System_Object_System_Object__SortedSetEquals, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * set1, SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * set2, IComparer_1_KeyValuePair_2_System_Object_System_Object_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01088A10, void, SortedSet_1_KeyValuePair_2_System_Object_System_Object__SymmetricExceptWith, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, IEnumerable_1_KeyValuePair_2_System_Object_System_Object_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3458, SortedSet_1_KeyValuePair_2_System_Object_System_Object__SymmetricExceptWith__MethodInfo); DO_APP_FUNC(0x01088C70, void, SortedSet_1_KeyValuePair_2_System_Object_System_Object__SymmetricExceptWithSameComparer, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * other, MethodInfo * method)); DO_APP_FUNC(0x01080D80, void, SortedSet_1_KeyValuePair_2_System_Object_System_Object__SymmetricExceptWithSameComparer_1, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, KeyValuePair_2_System_Object_System_Object___Array * other, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x0107AB60, void, SortedSet_1_KeyValuePair_2_System_Object_System_Object__System_Collections_Generic_ICollection_T__Add, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, KeyValuePair_2_System_Object_System_Object_ item, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, SortedSet_1_KeyValuePair_2_System_Object_System_Object__System_Collections_Generic_ICollection_T__get_IsReadOnly, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0107C110, IEnumerator_1_KeyValuePair_2_System_Object_System_Object_ *, SortedSet_1_KeyValuePair_2_System_Object_System_Object__System_Collections_Generic_IEnumerable_T__GetEnumerator, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010858F0, void, SortedSet_1_KeyValuePair_2_System_Object_System_Object__System_Collections_ICollection_CopyTo, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3478, SortedSet_1_KeyValuePair_2_System_Object_System_Object__System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, SortedSet_1_KeyValuePair_2_System_Object_System_Object__System_Collections_ICollection_get_IsSynchronized, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01085500, Object *, SortedSet_1_KeyValuePair_2_System_Object_System_Object__System_Collections_ICollection_get_SyncRoot, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0107C110, IEnumerator *, SortedSet_1_KeyValuePair_2_System_Object_System_Object__System_Collections_IEnumerable_GetEnumerator, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010841C0, void, SortedSet_1_KeyValuePair_2_System_Object_System_Object__System_Runtime_Serialization_IDeserializationCallback_OnDeserialization, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, Object * sender, MethodInfo * method)); DO_APP_FUNC(0x01083DD0, void, SortedSet_1_KeyValuePair_2_System_Object_System_Object__System_Runtime_Serialization_ISerializable_GetObjectData, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); -DO_APP_FUNC(0x01084680, bool, SortedSet_1_KeyValuePair_2_System_Object_System_Object__TryGetValue, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, KeyValuePair_2_System_Object_System_Object_ equalValue, KeyValuePair_2_System_Object_System_Object_ actualValue, MethodInfo * method)); +DO_APP_FUNC(0x01084680, bool, SortedSet_1_KeyValuePair_2_System_Object_System_Object__TryGetValue, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, KeyValuePair_2_System_Object_System_Object_ equalValue, KeyValuePair_2_System_Object_System_Object_ * actualValue, MethodInfo * method)); DO_APP_FUNC(0x01086610, void, SortedSet_1_KeyValuePair_2_System_Object_System_Object__UnionWith, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, IEnumerable_1_KeyValuePair_2_System_Object_System_Object_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3480, SortedSet_1_KeyValuePair_2_System_Object_System_Object__UnionWith__MethodInfo); DO_APP_FUNC(0x0107CDC0, void, SortedSet_1_KeyValuePair_2_System_Object_System_Object__UpdateVersion, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SortedSet_1_KeyValuePair_2_System_Object_System_Object__VersionCheck, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, IComparer_1_KeyValuePair_2_System_Object_System_Object_ *, SortedSet_1_KeyValuePair_2_System_Object_System_Object__get_Comparer, (SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, MethodInfo * method)); @@ -191184,12 +209648,14 @@ DO_APP_FUNC(0x010795F0, void, SortedSet_1_KeyValuePair_2_System_UInt64_System_Ob DO_APP_FUNC(0x01079670, void, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object___ctor_1, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, IComparer_1_KeyValuePair_2_System_UInt64_System_Object_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01079700, void, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object___ctor_2, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, IEnumerable_1_KeyValuePair_2_System_UInt64_System_Object_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0108C2E0, void, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object___ctor_3, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, IEnumerable_1_KeyValuePair_2_System_UInt64_System_Object_ * collection, IComparer_1_KeyValuePair_2_System_UInt64_System_Object_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF33F8, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object___ctor_3__MethodInfo); DO_APP_FUNC(0x00424C30, void, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object___ctor_4, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x0107AB30, bool, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__Add, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, KeyValuePair_2_System_UInt64_System_Object_ item, MethodInfo * method)); DO_APP_FUNC(0x0108C750, void, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__AddAllElements, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, IEnumerable_1_KeyValuePair_2_System_UInt64_System_Object_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0107AB90, bool, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__AddIfNotPresent, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, KeyValuePair_2_System_UInt64_System_Object_ item, MethodInfo * method)); DO_APP_FUNC(0x0107A7D0, bool, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__BreadthFirstTreeWalk, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, TreeWalkPredicate_1_KeyValuePair_2_System_UInt64_System_Object_ * action, MethodInfo * method)); DO_APP_FUNC(0x01092B60, SortedSet_1_T_ElementCount_KeyValuePair_2_System_UInt64_System_Object_, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__CheckUniqueAndUnfoundElements, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, IEnumerable_1_KeyValuePair_2_System_UInt64_System_Object_ * other, bool returnIfUnfound, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3398, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__CheckUniqueAndUnfoundElements__MethodInfo); DO_APP_FUNC(0x0107B6B0, void, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__Clear, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0107E450, SortedSet_1_T_Node_KeyValuePair_2_System_UInt64_System_Object_ *, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__ConstructRootFromSortedArray, (KeyValuePair_2_System_UInt64_System_Object___Array * arr, int32_t startIndex, int32_t endIndex, SortedSet_1_T_Node_KeyValuePair_2_System_UInt64_System_Object_ * redNode, MethodInfo * method)); DO_APP_FUNC(0x0107B710, bool, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__Contains, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, KeyValuePair_2_System_UInt64_System_Object_ item, MethodInfo * method)); @@ -191197,53 +209663,69 @@ DO_APP_FUNC(0x0108CE50, bool, SortedSet_1_KeyValuePair_2_System_UInt64_System_Ob DO_APP_FUNC(0x0107B740, void, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__CopyTo, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, KeyValuePair_2_System_UInt64_System_Object___Array * array, MethodInfo * method)); DO_APP_FUNC(0x0107B7C0, void, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__CopyTo_1, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, KeyValuePair_2_System_UInt64_System_Object___Array * array, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x0108D130, void, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__CopyTo_2, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, KeyValuePair_2_System_UInt64_System_Object___Array * array, int32_t index, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF33D8, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__CopyTo_2__MethodInfo); DO_APP_FUNC(0x0107CDD0, IEqualityComparer_1_SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ *, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__CreateSetComparer, (MethodInfo * method)); DO_APP_FUNC(0x0107CE40, IEqualityComparer_1_SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ *, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__CreateSetComparer_1, (IEqualityComparer_1_KeyValuePair_2_System_UInt64_System_Object_ * memberEqualityComparer, MethodInfo * method)); DO_APP_FUNC(0x0107B0A0, bool, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__DoRemove, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, KeyValuePair_2_System_UInt64_System_Object_ item, MethodInfo * method)); DO_APP_FUNC(0x0108FD90, void, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__ExceptWith, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, IEnumerable_1_KeyValuePair_2_System_UInt64_System_Object_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF33C0, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__ExceptWith__MethodInfo); DO_APP_FUNC(0x0107C6E0, SortedSet_1_T_Node_KeyValuePair_2_System_UInt64_System_Object_ *, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__FindNode, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, KeyValuePair_2_System_UInt64_System_Object_ item, MethodInfo * method)); DO_APP_FUNC(0x0107CA60, SortedSet_1_T_Node_KeyValuePair_2_System_UInt64_System_Object_ *, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__FindRange, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, KeyValuePair_2_System_UInt64_System_Object_ from, KeyValuePair_2_System_UInt64_System_Object_ to, MethodInfo * method)); DO_APP_FUNC(0x0107CAC0, SortedSet_1_T_Node_KeyValuePair_2_System_UInt64_System_Object_ *, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__FindRange_1, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, KeyValuePair_2_System_UInt64_System_Object_ from, KeyValuePair_2_System_UInt64_System_Object_ to, bool lowerBoundActive, bool upperBoundActive, MethodInfo * method)); DO_APP_FUNC(0x0107C0D0, SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_System_Object_, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__GetEnumerator, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01093610, void, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__GetObjectData, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3368, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__GetObjectData__MethodInfo); DO_APP_FUNC(0x010933F0, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ *, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__GetViewBetween, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, KeyValuePair_2_System_UInt64_System_Object_ lowerValue, KeyValuePair_2_System_UInt64_System_Object_ upperValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3390, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__GetViewBetween__MethodInfo); DO_APP_FUNC(0x0107D760, bool, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__HasEqualComparer, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * other, MethodInfo * method)); DO_APP_FUNC(0x0107A510, bool, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__InOrderTreeWalk, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, TreeWalkPredicate_1_KeyValuePair_2_System_UInt64_System_Object_ * action, MethodInfo * method)); -DO_APP_FUNC(0x0107C1A0, void, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__InsertionBalance, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, SortedSet_1_T_Node_KeyValuePair_2_System_UInt64_System_Object_ * current, SortedSet_1_T_Node_KeyValuePair_2_System_UInt64_System_Object_ * parent, SortedSet_1_T_Node_KeyValuePair_2_System_UInt64_System_Object_ * grandParent, SortedSet_1_T_Node_KeyValuePair_2_System_UInt64_System_Object_ * greatGrandParent, MethodInfo * method)); +DO_APP_FUNC(0x0107C1A0, void, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__InsertionBalance, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, SortedSet_1_T_Node_KeyValuePair_2_System_UInt64_System_Object_ * current, SortedSet_1_T_Node_KeyValuePair_2_System_UInt64_System_Object_ * * parent, SortedSet_1_T_Node_KeyValuePair_2_System_UInt64_System_Object_ * grandParent, SortedSet_1_T_Node_KeyValuePair_2_System_UInt64_System_Object_ * greatGrandParent, MethodInfo * method)); DO_APP_FUNC(0x0107C8A0, int32_t, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__InternalIndexOf, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, KeyValuePair_2_System_UInt64_System_Object_ item, MethodInfo * method)); DO_APP_FUNC(0x0108ED50, void, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__IntersectWith, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, IEnumerable_1_KeyValuePair_2_System_UInt64_System_Object_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF33E0, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__IntersectWith__MethodInfo); DO_APP_FUNC(0x0108F820, void, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__IntersectWithEnumerable, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, IEnumerable_1_KeyValuePair_2_System_UInt64_System_Object_ * other, MethodInfo * method)); DO_APP_FUNC(0x010910A0, bool, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__IsProperSubsetOf, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, IEnumerable_1_KeyValuePair_2_System_UInt64_System_Object_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF33A8, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__IsProperSubsetOf__MethodInfo); DO_APP_FUNC(0x010918F0, bool, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__IsProperSupersetOf, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, IEnumerable_1_KeyValuePair_2_System_UInt64_System_Object_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF33B0, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__IsProperSupersetOf__MethodInfo); DO_APP_FUNC(0x01090AF0, bool, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__IsSubsetOf, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, IEnumerable_1_KeyValuePair_2_System_UInt64_System_Object_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF33D0, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__IsSubsetOf__MethodInfo); DO_APP_FUNC(0x01090D30, bool, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__IsSubsetOfSortedSetWithSameComparer, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * asSorted, MethodInfo * method)); DO_APP_FUNC(0x01091360, bool, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__IsSupersetOf, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, IEnumerable_1_KeyValuePair_2_System_UInt64_System_Object_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF33A0, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__IsSupersetOf__MethodInfo); DO_APP_FUNC(0x0041AEF0, bool, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__IsWithinRange, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, KeyValuePair_2_System_UInt64_System_Object_ item, MethodInfo * method)); DO_APP_FUNC(0x01084750, int32_t, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__Log2, (int32_t value, MethodInfo * method)); DO_APP_FUNC(0x010939D0, void, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__OnDeserialization, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, Object * sender, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3378, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__OnDeserialization__MethodInfo); DO_APP_FUNC(0x010924D0, bool, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__Overlaps, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, IEnumerable_1_KeyValuePair_2_System_UInt64_System_Object_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3380, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__Overlaps__MethodInfo); DO_APP_FUNC(0x0107B070, bool, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__Remove, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, KeyValuePair_2_System_UInt64_System_Object_ item, MethodInfo * method)); DO_APP_FUNC(0x0108C9C0, void, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__RemoveAllElements, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, IEnumerable_1_KeyValuePair_2_System_UInt64_System_Object_ * collection, MethodInfo * method)); DO_APP_FUNC(0x010930A0, int32_t, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__RemoveWhere, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, Predicate_1_System_Collections_Generic_KeyValuePair_2__2 * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3388, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__RemoveWhere__MethodInfo); DO_APP_FUNC(0x0107C3D0, void, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__ReplaceChildOrRoot, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, SortedSet_1_T_Node_KeyValuePair_2_System_UInt64_System_Object_ * parent, SortedSet_1_T_Node_KeyValuePair_2_System_UInt64_System_Object_ * child, SortedSet_1_T_Node_KeyValuePair_2_System_UInt64_System_Object_ * newChild, MethodInfo * method)); DO_APP_FUNC(0x0107C470, void, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__ReplaceNode, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, SortedSet_1_T_Node_KeyValuePair_2_System_UInt64_System_Object_ * match, SortedSet_1_T_Node_KeyValuePair_2_System_UInt64_System_Object_ * parentOfMatch, SortedSet_1_T_Node_KeyValuePair_2_System_UInt64_System_Object_ * successor, SortedSet_1_T_Node_KeyValuePair_2_System_UInt64_System_Object_ * parentOfSuccessor, MethodInfo * method)); DO_APP_FUNC(0x01083AE0, IEnumerable_1_KeyValuePair_2_System_UInt64_System_Object_ *, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__Reverse, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01091F10, bool, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__SetEquals, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, IEnumerable_1_KeyValuePair_2_System_UInt64_System_Object_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF33B8, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__SetEquals__MethodInfo); DO_APP_FUNC(0x0108D9B0, bool, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__SortedSetEquals, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * set1, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * set2, IComparer_1_KeyValuePair_2_System_UInt64_System_Object_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x010905A0, void, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__SymmetricExceptWith, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, IEnumerable_1_KeyValuePair_2_System_UInt64_System_Object_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF33C8, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__SymmetricExceptWith__MethodInfo); DO_APP_FUNC(0x01090800, void, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__SymmetricExceptWithSameComparer, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * other, MethodInfo * method)); DO_APP_FUNC(0x01080D80, void, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__SymmetricExceptWithSameComparer_1, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, KeyValuePair_2_System_UInt64_System_Object___Array * other, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x0107AB60, void, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__System_Collections_Generic_ICollection_T__Add, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, KeyValuePair_2_System_UInt64_System_Object_ item, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__System_Collections_Generic_ICollection_T__get_IsReadOnly, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0107C110, IEnumerator_1_KeyValuePair_2_System_UInt64_System_Object_ *, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__System_Collections_Generic_IEnumerable_T__GetEnumerator, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0108D470, void, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__System_Collections_ICollection_CopyTo, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF33E8, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__System_Collections_ICollection_get_IsSynchronized, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0108D080, Object *, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__System_Collections_ICollection_get_SyncRoot, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0107C110, IEnumerator *, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__System_Collections_IEnumerable_GetEnumerator, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010841C0, void, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__System_Runtime_Serialization_IDeserializationCallback_OnDeserialization, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, Object * sender, MethodInfo * method)); DO_APP_FUNC(0x01083DD0, void, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__System_Runtime_Serialization_ISerializable_GetObjectData, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); -DO_APP_FUNC(0x01093E70, bool, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__TryGetValue, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, KeyValuePair_2_System_UInt64_System_Object_ equalValue, KeyValuePair_2_System_UInt64_System_Object_ actualValue, MethodInfo * method)); +DO_APP_FUNC(0x01093E70, bool, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__TryGetValue, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, KeyValuePair_2_System_UInt64_System_Object_ equalValue, KeyValuePair_2_System_UInt64_System_Object_ * actualValue, MethodInfo * method)); DO_APP_FUNC(0x0108E190, void, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__UnionWith, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, IEnumerable_1_KeyValuePair_2_System_UInt64_System_Object_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF33F0, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__UnionWith__MethodInfo); DO_APP_FUNC(0x0107CDC0, void, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__UpdateVersion, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__VersionCheck, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, IComparer_1_KeyValuePair_2_System_UInt64_System_Object_ *, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object__get_Comparer, (SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, MethodInfo * method)); @@ -191256,12 +209738,14 @@ DO_APP_FUNC(0x010795F0, void, SortedSet_1_System_Object___ctor, (SortedSet_1_Sys DO_APP_FUNC(0x01079670, void, SortedSet_1_System_Object___ctor_1, (SortedSet_1_System_Object_ * __this, IComparer_1_System_Object_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01079700, void, SortedSet_1_System_Object___ctor_2, (SortedSet_1_System_Object_ * __this, IEnumerable_1_System_Object_ * collection, MethodInfo * method)); DO_APP_FUNC(0x01093F40, void, SortedSet_1_System_Object___ctor_3, (SortedSet_1_System_Object_ * __this, IEnumerable_1_System_Object_ * collection, IComparer_1_System_Object_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3370, SortedSet_1_System_Object___ctor_3__MethodInfo); DO_APP_FUNC(0x00424C30, void, SortedSet_1_System_Object___ctor_4, (SortedSet_1_System_Object_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x01094B90, bool, SortedSet_1_System_Object__Add, (SortedSet_1_System_Object_ * __this, Object * item, MethodInfo * method)); DO_APP_FUNC(0x01094340, void, SortedSet_1_System_Object__AddAllElements, (SortedSet_1_System_Object_ * __this, IEnumerable_1_System_Object_ * collection, MethodInfo * method)); DO_APP_FUNC(0x01094BD0, bool, SortedSet_1_System_Object__AddIfNotPresent, (SortedSet_1_System_Object_ * __this, Object * item, MethodInfo * method)); DO_APP_FUNC(0x0107A7D0, bool, SortedSet_1_System_Object__BreadthFirstTreeWalk, (SortedSet_1_System_Object_ * __this, TreeWalkPredicate_1_System_Object_ * action, MethodInfo * method)); DO_APP_FUNC(0x0109B710, SortedSet_1_T_ElementCount_System_Object_, SortedSet_1_System_Object__CheckUniqueAndUnfoundElements, (SortedSet_1_System_Object_ * __this, IEnumerable_1_System_Object_ * other, bool returnIfUnfound, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF32F0, SortedSet_1_System_Object__CheckUniqueAndUnfoundElements__MethodInfo); DO_APP_FUNC(0x0107B6B0, void, SortedSet_1_System_Object__Clear, (SortedSet_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01097530, SortedSet_1_T_Node_System_Object_ *, SortedSet_1_System_Object__ConstructRootFromSortedArray, (Object__Array * arr, int32_t startIndex, int32_t endIndex, SortedSet_1_T_Node_System_Object_ * redNode, MethodInfo * method)); DO_APP_FUNC(0x01095590, bool, SortedSet_1_System_Object__Contains, (SortedSet_1_System_Object_ * __this, Object * item, MethodInfo * method)); @@ -191269,53 +209753,69 @@ DO_APP_FUNC(0x01094930, bool, SortedSet_1_System_Object__ContainsAllElements, (S DO_APP_FUNC(0x0107B740, void, SortedSet_1_System_Object__CopyTo, (SortedSet_1_System_Object_ * __this, Object__Array * array, MethodInfo * method)); DO_APP_FUNC(0x0107B7C0, void, SortedSet_1_System_Object__CopyTo_1, (SortedSet_1_System_Object_ * __this, Object__Array * array, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x010955C0, void, SortedSet_1_System_Object__CopyTo_2, (SortedSet_1_System_Object_ * __this, Object__Array * array, int32_t index, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3360, SortedSet_1_System_Object__CopyTo_2__MethodInfo); DO_APP_FUNC(0x0107CDD0, IEqualityComparer_1_SortedSet_1_System_Object_ *, SortedSet_1_System_Object__CreateSetComparer, (MethodInfo * method)); DO_APP_FUNC(0x0107CE40, IEqualityComparer_1_SortedSet_1_System_Object_ *, SortedSet_1_System_Object__CreateSetComparer_1, (IEqualityComparer_1_System_Object_ * memberEqualityComparer, MethodInfo * method)); DO_APP_FUNC(0x01095010, bool, SortedSet_1_System_Object__DoRemove, (SortedSet_1_System_Object_ * __this, Object * item, MethodInfo * method)); DO_APP_FUNC(0x01098DA0, void, SortedSet_1_System_Object__ExceptWith, (SortedSet_1_System_Object_ * __this, IEnumerable_1_System_Object_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3338, SortedSet_1_System_Object__ExceptWith__MethodInfo); DO_APP_FUNC(0x01095E80, SortedSet_1_T_Node_System_Object_ *, SortedSet_1_System_Object__FindNode, (SortedSet_1_System_Object_ * __this, Object * item, MethodInfo * method)); DO_APP_FUNC(0x010960F0, SortedSet_1_T_Node_System_Object_ *, SortedSet_1_System_Object__FindRange, (SortedSet_1_System_Object_ * __this, Object * from, Object * to, MethodInfo * method)); DO_APP_FUNC(0x01096140, SortedSet_1_T_Node_System_Object_ *, SortedSet_1_System_Object__FindRange_1, (SortedSet_1_System_Object_ * __this, Object * from, Object * to, bool lowerBoundActive, bool upperBoundActive, MethodInfo * method)); DO_APP_FUNC(0x01095E40, SortedSet_1_T_Enumerator_System_Object_, SortedSet_1_System_Object__GetEnumerator, (SortedSet_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0109C350, void, SortedSet_1_System_Object__GetObjectData, (SortedSet_1_System_Object_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF32E8, SortedSet_1_System_Object__GetObjectData__MethodInfo); DO_APP_FUNC(0x0109C1D0, SortedSet_1_System_Object_ *, SortedSet_1_System_Object__GetViewBetween, (SortedSet_1_System_Object_ * __this, Object * lowerValue, Object * upperValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3308, SortedSet_1_System_Object__GetViewBetween__MethodInfo); DO_APP_FUNC(0x0107D760, bool, SortedSet_1_System_Object__HasEqualComparer, (SortedSet_1_System_Object_ * __this, SortedSet_1_System_Object_ * other, MethodInfo * method)); DO_APP_FUNC(0x0107A510, bool, SortedSet_1_System_Object__InOrderTreeWalk, (SortedSet_1_System_Object_ * __this, TreeWalkPredicate_1_System_Object_ * action, MethodInfo * method)); -DO_APP_FUNC(0x0107C1A0, void, SortedSet_1_System_Object__InsertionBalance, (SortedSet_1_System_Object_ * __this, SortedSet_1_T_Node_System_Object_ * current, SortedSet_1_T_Node_System_Object_ * parent, SortedSet_1_T_Node_System_Object_ * grandParent, SortedSet_1_T_Node_System_Object_ * greatGrandParent, MethodInfo * method)); +DO_APP_FUNC(0x0107C1A0, void, SortedSet_1_System_Object__InsertionBalance, (SortedSet_1_System_Object_ * __this, SortedSet_1_T_Node_System_Object_ * current, SortedSet_1_T_Node_System_Object_ * * parent, SortedSet_1_T_Node_System_Object_ * grandParent, SortedSet_1_T_Node_System_Object_ * greatGrandParent, MethodInfo * method)); DO_APP_FUNC(0x01095FA0, int32_t, SortedSet_1_System_Object__InternalIndexOf, (SortedSet_1_System_Object_ * __this, Object * item, MethodInfo * method)); DO_APP_FUNC(0x01098050, void, SortedSet_1_System_Object__IntersectWith, (SortedSet_1_System_Object_ * __this, IEnumerable_1_System_Object_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3358, SortedSet_1_System_Object__IntersectWith__MethodInfo); DO_APP_FUNC(0x01098960, void, SortedSet_1_System_Object__IntersectWithEnumerable, (SortedSet_1_System_Object_ * __this, IEnumerable_1_System_Object_ * other, MethodInfo * method)); DO_APP_FUNC(0x01099F30, bool, SortedSet_1_System_Object__IsProperSubsetOf, (SortedSet_1_System_Object_ * __this, IEnumerable_1_System_Object_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3340, SortedSet_1_System_Object__IsProperSubsetOf__MethodInfo); DO_APP_FUNC(0x0109A740, bool, SortedSet_1_System_Object__IsProperSupersetOf, (SortedSet_1_System_Object_ * __this, IEnumerable_1_System_Object_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3318, SortedSet_1_System_Object__IsProperSupersetOf__MethodInfo); DO_APP_FUNC(0x010999B0, bool, SortedSet_1_System_Object__IsSubsetOf, (SortedSet_1_System_Object_ * __this, IEnumerable_1_System_Object_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3330, SortedSet_1_System_Object__IsSubsetOf__MethodInfo); DO_APP_FUNC(0x01099BF0, bool, SortedSet_1_System_Object__IsSubsetOfSortedSetWithSameComparer, (SortedSet_1_System_Object_ * __this, SortedSet_1_System_Object_ * asSorted, MethodInfo * method)); DO_APP_FUNC(0x0109A1F0, bool, SortedSet_1_System_Object__IsSupersetOf, (SortedSet_1_System_Object_ * __this, IEnumerable_1_System_Object_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3310, SortedSet_1_System_Object__IsSupersetOf__MethodInfo); DO_APP_FUNC(0x0041AEF0, bool, SortedSet_1_System_Object__IsWithinRange, (SortedSet_1_System_Object_ * __this, Object * item, MethodInfo * method)); DO_APP_FUNC(0x01084750, int32_t, SortedSet_1_System_Object__Log2, (int32_t value, MethodInfo * method)); DO_APP_FUNC(0x0109C710, void, SortedSet_1_System_Object__OnDeserialization, (SortedSet_1_System_Object_ * __this, Object * sender, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF32E0, SortedSet_1_System_Object__OnDeserialization__MethodInfo); DO_APP_FUNC(0x0109B230, bool, SortedSet_1_System_Object__Overlaps, (SortedSet_1_System_Object_ * __this, IEnumerable_1_System_Object_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF32F8, SortedSet_1_System_Object__Overlaps__MethodInfo); DO_APP_FUNC(0x01094FF0, bool, SortedSet_1_System_Object__Remove, (SortedSet_1_System_Object_ * __this, Object * item, MethodInfo * method)); DO_APP_FUNC(0x01094570, void, SortedSet_1_System_Object__RemoveAllElements, (SortedSet_1_System_Object_ * __this, IEnumerable_1_System_Object_ * collection, MethodInfo * method)); DO_APP_FUNC(0x0109BBC0, int32_t, SortedSet_1_System_Object__RemoveWhere, (SortedSet_1_System_Object_ * __this, Predicate_1_Object_ * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3300, SortedSet_1_System_Object__RemoveWhere__MethodInfo); DO_APP_FUNC(0x0107C3D0, void, SortedSet_1_System_Object__ReplaceChildOrRoot, (SortedSet_1_System_Object_ * __this, SortedSet_1_T_Node_System_Object_ * parent, SortedSet_1_T_Node_System_Object_ * child, SortedSet_1_T_Node_System_Object_ * newChild, MethodInfo * method)); DO_APP_FUNC(0x0107C470, void, SortedSet_1_System_Object__ReplaceNode, (SortedSet_1_System_Object_ * __this, SortedSet_1_T_Node_System_Object_ * match, SortedSet_1_T_Node_System_Object_ * parentOfMatch, SortedSet_1_T_Node_System_Object_ * successor, SortedSet_1_T_Node_System_Object_ * parentOfSuccessor, MethodInfo * method)); DO_APP_FUNC(0x0109C100, IEnumerable_1_System_Object_ *, SortedSet_1_System_Object__Reverse, (SortedSet_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0109AD10, bool, SortedSet_1_System_Object__SetEquals, (SortedSet_1_System_Object_ * __this, IEnumerable_1_System_Object_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3320, SortedSet_1_System_Object__SetEquals__MethodInfo); DO_APP_FUNC(0x01096340, bool, SortedSet_1_System_Object__SortedSetEquals, (SortedSet_1_System_Object_ * set1, SortedSet_1_System_Object_ * set2, IComparer_1_System_Object_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01099310, void, SortedSet_1_System_Object__SymmetricExceptWith, (SortedSet_1_System_Object_ * __this, IEnumerable_1_System_Object_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3328, SortedSet_1_System_Object__SymmetricExceptWith__MethodInfo); DO_APP_FUNC(0x01099570, void, SortedSet_1_System_Object__SymmetricExceptWithSameComparer, (SortedSet_1_System_Object_ * __this, SortedSet_1_System_Object_ * other, MethodInfo * method)); DO_APP_FUNC(0x01099860, void, SortedSet_1_System_Object__SymmetricExceptWithSameComparer_1, (SortedSet_1_System_Object_ * __this, Object__Array * other, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x01094BB0, void, SortedSet_1_System_Object__System_Collections_Generic_ICollection_T__Add, (SortedSet_1_System_Object_ * __this, Object * item, MethodInfo * method)); DO_APP_FUNC(0x0041AF00, bool, SortedSet_1_System_Object__System_Collections_Generic_ICollection_T__get_IsReadOnly, (SortedSet_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0107C110, IEnumerator_1_System_Object_ *, SortedSet_1_System_Object__System_Collections_Generic_IEnumerable_T__GetEnumerator, (SortedSet_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01095900, void, SortedSet_1_System_Object__System_Collections_ICollection_CopyTo, (SortedSet_1_System_Object_ * __this, Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3348, SortedSet_1_System_Object__System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, SortedSet_1_System_Object__System_Collections_ICollection_get_IsSynchronized, (SortedSet_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01094AE0, Object *, SortedSet_1_System_Object__System_Collections_ICollection_get_SyncRoot, (SortedSet_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0107C110, IEnumerator *, SortedSet_1_System_Object__System_Collections_IEnumerable_GetEnumerator, (SortedSet_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010841C0, void, SortedSet_1_System_Object__System_Runtime_Serialization_IDeserializationCallback_OnDeserialization, (SortedSet_1_System_Object_ * __this, Object * sender, MethodInfo * method)); DO_APP_FUNC(0x01083DD0, void, SortedSet_1_System_Object__System_Runtime_Serialization_ISerializable_GetObjectData, (SortedSet_1_System_Object_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); -DO_APP_FUNC(0x0109CBA0, bool, SortedSet_1_System_Object__TryGetValue, (SortedSet_1_System_Object_ * __this, Object * equalValue, Object * actualValue, MethodInfo * method)); +DO_APP_FUNC(0x0109CBA0, bool, SortedSet_1_System_Object__TryGetValue, (SortedSet_1_System_Object_ * __this, Object * equalValue, Object * * actualValue, MethodInfo * method)); DO_APP_FUNC(0x01096AA0, void, SortedSet_1_System_Object__UnionWith, (SortedSet_1_System_Object_ * __this, IEnumerable_1_System_Object_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3350, SortedSet_1_System_Object__UnionWith__MethodInfo); DO_APP_FUNC(0x0107CDC0, void, SortedSet_1_System_Object__UpdateVersion, (SortedSet_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, SortedSet_1_System_Object__VersionCheck, (SortedSet_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, IComparer_1_System_Object_ *, SortedSet_1_System_Object__get_Comparer, (SortedSet_1_System_Object_ * __this, MethodInfo * method)); @@ -191334,137 +209834,164 @@ DO_APP_FUNC(0x0109D0C0, void, SpanAction_2_System_Char_System_Object___ctor, (Sp DO_APP_FUNC(0x0109D1F0, void, SpanAction_2_System_Char_System_Object__Invoke, (SpanAction_2_System_Char_System_Object_ * __this, Span_1_Char_ span, Object * arg, MethodInfo * method)); DO_APP_FUNC(0x0109D0C0, void, SpanAction_2_System_Object_System_Object___ctor, (SpanAction_2_System_Object_System_Object_ * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x0109D1F0, void, SpanAction_2_System_Object_System_Object__Invoke, (SpanAction_2_System_Object_System_Object_ * __this, Span_1_Object_ span, Object * arg, MethodInfo * method)); -DO_APP_FUNC(0x010B31F0, void, Span_1_Byte___ctor, (Span_1_Byte___Boxed * __this, Byte__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x0103AB70, void, Span_1_Byte___ctor_1, (Span_1_Byte___Boxed * __this, uint8_t ptr, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x010B32F0, void, Span_1_Byte___ctor_2, (Span_1_Byte___Boxed * __this, Void * pointer, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x010B3250, void, Span_1_Byte___ctor_3, (Span_1_Byte___Boxed * __this, Byte__Array * array, int32_t start, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x010B31F0, void, Span_1_Byte___ctor, (Span_1_Byte_ * __this, Byte__Array * array, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8B80, Span_1_Byte___ctor__MethodInfo); +DO_APP_FUNC(0x0103AB70, void, Span_1_Byte___ctor_1, (Span_1_Byte_ * __this, uint8_t * ptr, int32_t length, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC178, Span_1_Byte___ctor_1__MethodInfo); +DO_APP_FUNC(0x010B32F0, void, Span_1_Byte___ctor_2, (Span_1_Byte_ * __this, Void * pointer, int32_t length, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEC58, Span_1_Byte___ctor_2__MethodInfo); +DO_APP_FUNC(0x010B3250, void, Span_1_Byte___ctor_3, (Span_1_Byte_ * __this, Byte__Array * array, int32_t start, int32_t length, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C99950, Span_1_Byte___ctor_3__MethodInfo); -DO_APP_FUNC(0x010B3350, void, Span_1_Byte__Clear, (Span_1_Byte___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x010B3350, void, Span_1_Byte__Clear, (Span_1_Byte_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C99850, Span_1_Byte__Clear__MethodInfo); -DO_APP_FUNC(0x010B3390, void, Span_1_Byte__CopyTo, (Span_1_Byte___Boxed * __this, Span_1_Byte_ destination, MethodInfo * method)); -DO_APP_FUNC(0x010B3870, bool, Span_1_Byte__Equals, (Span_1_Byte___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x010B3370, void, Span_1_Byte__Fill, (Span_1_Byte___Boxed * __this, uint8_t value, MethodInfo * method)); -DO_APP_FUNC(0x010B38D0, int32_t, Span_1_Byte__GetHashCode, (Span_1_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0103AEF0, Span_1_Byte_, Span_1_Byte__Slice, (Span_1_Byte___Boxed * __this, int32_t start, MethodInfo * method)); -DO_APP_FUNC(0x0103AF60, Span_1_Byte_, Span_1_Byte__Slice_1, (Span_1_Byte___Boxed * __this, int32_t start, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x010B3730, Byte__Array *, Span_1_Byte__ToArray, (Span_1_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010B3560, String *, Span_1_Byte__ToString, (Span_1_Byte___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010B3450, bool, Span_1_Byte__TryCopyTo, (Span_1_Byte___Boxed * __this, Span_1_Byte_ destination, MethodInfo * method)); -DO_APP_FUNC(0x0103AB80, uint8_t, Span_1_Byte__get_Item, (Span_1_Byte___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00471920, int32_t, Span_1_Byte__get_Length, (Span_1_Byte___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x010B3390, void, Span_1_Byte__CopyTo, (Span_1_Byte_ * __this, Span_1_Byte_ destination, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FB80, Span_1_Byte__CopyTo__MethodInfo); +DO_APP_FUNC(0x010B3870, bool, Span_1_Byte__Equals, (Span_1_Byte_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF66A0, Span_1_Byte__Equals__MethodInfo); +DO_APP_FUNC(0x010B3370, void, Span_1_Byte__Fill, (Span_1_Byte_ * __this, uint8_t value, MethodInfo * method)); +DO_APP_FUNC(0x010B38D0, int32_t, Span_1_Byte__GetHashCode, (Span_1_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF66A8, Span_1_Byte__GetHashCode__MethodInfo); +DO_APP_FUNC(0x0103AEF0, Span_1_Byte_, Span_1_Byte__Slice, (Span_1_Byte_ * __this, int32_t start, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE318, Span_1_Byte__Slice__MethodInfo); +DO_APP_FUNC(0x0103AF60, Span_1_Byte_, Span_1_Byte__Slice_1, (Span_1_Byte_ * __this, int32_t start, int32_t length, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FB78, Span_1_Byte__Slice_1__MethodInfo); +DO_APP_FUNC(0x010B3730, Byte__Array *, Span_1_Byte__ToArray, (Span_1_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEC20, Span_1_Byte__ToArray__MethodInfo); +DO_APP_FUNC(0x010B3560, String *, Span_1_Byte__ToString, (Span_1_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010B3450, bool, Span_1_Byte__TryCopyTo, (Span_1_Byte_ * __this, Span_1_Byte_ destination, MethodInfo * method)); +DO_APP_FUNC(0x0103AB80, uint8_t *, Span_1_Byte__get_Item, (Span_1_Byte_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00471920, int32_t, Span_1_Byte__get_Length, (Span_1_Byte_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE668, Span_1_Byte__get_Length__MethodInfo); DO_APP_FUNC(0x010B3510, ReadOnlySpan_1_Byte_, Span_1_Byte__op_Implicit, (Span_1_Byte_ span, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CAB4C8, Span_1_Byte__op_Implicit__MethodInfo); DO_APP_FUNC(0x010B3930, Span_1_Byte_, Span_1_Byte__op_Implicit_1, (Byte__Array * array, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C97550, Span_1_Byte__op_Implicit_1__MethodInfo); -DO_APP_FUNC(0x010B39B0, void, Span_1_Char___ctor, (Span_1_Char___Boxed * __this, Char__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x0103AB70, void, Span_1_Char___ctor_1, (Span_1_Char___Boxed * __this, uint16_t ptr, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x010B3AB0, void, Span_1_Char___ctor_2, (Span_1_Char___Boxed * __this, Void * pointer, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x010B39B0, void, Span_1_Char___ctor, (Span_1_Char_ * __this, Char__Array * array, MethodInfo * method)); +DO_APP_FUNC(0x0103AB70, void, Span_1_Char___ctor_1, (Span_1_Char_ * __this, uint16_t * ptr, int32_t length, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00830, Span_1_Char___ctor_1__MethodInfo); +DO_APP_FUNC(0x010B3AB0, void, Span_1_Char___ctor_2, (Span_1_Char_ * __this, Void * pointer, int32_t length, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C94A10, Span_1_Char___ctor_2__MethodInfo); -DO_APP_FUNC(0x010B3A10, void, Span_1_Char___ctor_3, (Span_1_Char___Boxed * __this, Char__Array * array, int32_t start, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x010B3A10, void, Span_1_Char___ctor_3, (Span_1_Char_ * __this, Char__Array * array, int32_t start, int32_t length, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C97270, Span_1_Char___ctor_3__MethodInfo); -DO_APP_FUNC(0x010B3B10, void, Span_1_Char__Clear, (Span_1_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010B3390, void, Span_1_Char__CopyTo, (Span_1_Char___Boxed * __this, Span_1_Char_ destination, MethodInfo * method)); +DO_APP_FUNC(0x010B3B10, void, Span_1_Char__Clear, (Span_1_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010B3390, void, Span_1_Char__CopyTo, (Span_1_Char_ * __this, Span_1_Char_ destination, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C98D00, Span_1_Char__CopyTo__MethodInfo); -DO_APP_FUNC(0x010B3DB0, bool, Span_1_Char__Equals, (Span_1_Char___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x010B3B30, void, Span_1_Char__Fill, (Span_1_Char___Boxed * __this, uint16_t value, MethodInfo * method)); +DO_APP_FUNC(0x010B3DB0, bool, Span_1_Char__Equals, (Span_1_Char_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6688, Span_1_Char__Equals__MethodInfo); +DO_APP_FUNC(0x010B3B30, void, Span_1_Char__Fill, (Span_1_Char_ * __this, uint16_t value, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA2528, Span_1_Char__Fill__MethodInfo); -DO_APP_FUNC(0x010B3E10, int32_t, Span_1_Char__GetHashCode, (Span_1_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0103B4F0, Span_1_Char_, Span_1_Char__Slice, (Span_1_Char___Boxed * __this, int32_t start, MethodInfo * method)); +DO_APP_FUNC(0x010B3E10, int32_t, Span_1_Char__GetHashCode, (Span_1_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6690, Span_1_Char__GetHashCode__MethodInfo); +DO_APP_FUNC(0x0103B4F0, Span_1_Char_, Span_1_Char__Slice, (Span_1_Char_ * __this, int32_t start, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C96148, Span_1_Char__Slice__MethodInfo); -DO_APP_FUNC(0x0103B560, Span_1_Char_, Span_1_Char__Slice_1, (Span_1_Char___Boxed * __this, int32_t start, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x0103B560, Span_1_Char_, Span_1_Char__Slice_1, (Span_1_Char_ * __this, int32_t start, int32_t length, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C94970, Span_1_Char__Slice_1__MethodInfo); -DO_APP_FUNC(0x010B3730, Char__Array *, Span_1_Char__ToArray, (Span_1_Char___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010B3BE0, String *, Span_1_Char__ToString, (Span_1_Char___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x010B3730, Char__Array *, Span_1_Char__ToArray, (Span_1_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010B3BE0, String *, Span_1_Char__ToString, (Span_1_Char_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C94978, Span_1_Char__ToString__MethodInfo); -DO_APP_FUNC(0x010B3450, bool, Span_1_Char__TryCopyTo, (Span_1_Char___Boxed * __this, Span_1_Char_ destination, MethodInfo * method)); +DO_APP_FUNC(0x010B3450, bool, Span_1_Char__TryCopyTo, (Span_1_Char_ * __this, Span_1_Char_ destination, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C98D18, Span_1_Char__TryCopyTo__MethodInfo); -DO_APP_FUNC(0x0103B300, uint16_t, Span_1_Char__get_Item, (Span_1_Char___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00471920, int32_t, Span_1_Char__get_Length, (Span_1_Char___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0103B300, uint16_t *, Span_1_Char__get_Item, (Span_1_Char_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00471920, int32_t, Span_1_Char__get_Length, (Span_1_Char_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C94A20, Span_1_Char__get_Length__MethodInfo); DO_APP_FUNC(0x010B3510, ReadOnlySpan_1_Char_, Span_1_Char__op_Implicit, (Span_1_Char_ span, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C98D10, Span_1_Char__op_Implicit__MethodInfo); DO_APP_FUNC(0x010B3E70, Span_1_Char_, Span_1_Char__op_Implicit_1, (Char__Array * array, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C94A30, Span_1_Char__op_Implicit_1__MethodInfo); -DO_APP_FUNC(0x010B3EF0, void, Span_1_Int32___ctor, (Span_1_Int32___Boxed * __this, Int32__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x0103AB70, void, Span_1_Int32___ctor_1, (Span_1_Int32___Boxed * __this, int32_t ptr, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x010B3FF0, void, Span_1_Int32___ctor_2, (Span_1_Int32___Boxed * __this, Void * pointer, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x010B3EF0, void, Span_1_Int32___ctor, (Span_1_Int32_ * __this, Int32__Array * array, MethodInfo * method)); +DO_APP_FUNC(0x0103AB70, void, Span_1_Int32___ctor_1, (Span_1_Int32_ * __this, int32_t * ptr, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x010B3FF0, void, Span_1_Int32___ctor_2, (Span_1_Int32_ * __this, Void * pointer, int32_t length, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C961B0, Span_1_Int32___ctor_2__MethodInfo); -DO_APP_FUNC(0x010B3F50, void, Span_1_Int32___ctor_3, (Span_1_Int32___Boxed * __this, Int32__Array * array, int32_t start, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x010B4050, void, Span_1_Int32__Clear, (Span_1_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010B3390, void, Span_1_Int32__CopyTo, (Span_1_Int32___Boxed * __this, Span_1_Int32_ destination, MethodInfo * method)); -DO_APP_FUNC(0x010B42F0, bool, Span_1_Int32__Equals, (Span_1_Int32___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x010B4070, void, Span_1_Int32__Fill, (Span_1_Int32___Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x010B4350, int32_t, Span_1_Int32__GetHashCode, (Span_1_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0103B940, Span_1_Int32_, Span_1_Int32__Slice, (Span_1_Int32___Boxed * __this, int32_t start, MethodInfo * method)); -DO_APP_FUNC(0x0103B9B0, Span_1_Int32_, Span_1_Int32__Slice_1, (Span_1_Int32___Boxed * __this, int32_t start, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x010B3730, Int32__Array *, Span_1_Int32__ToArray, (Span_1_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010B4120, String *, Span_1_Int32__ToString, (Span_1_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010B3450, bool, Span_1_Int32__TryCopyTo, (Span_1_Int32___Boxed * __this, Span_1_Int32_ destination, MethodInfo * method)); -DO_APP_FUNC(0x0103B750, int32_t, Span_1_Int32__get_Item, (Span_1_Int32___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00471920, int32_t, Span_1_Int32__get_Length, (Span_1_Int32___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x010B3F50, void, Span_1_Int32___ctor_3, (Span_1_Int32_ * __this, Int32__Array * array, int32_t start, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x010B4050, void, Span_1_Int32__Clear, (Span_1_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010B3390, void, Span_1_Int32__CopyTo, (Span_1_Int32_ * __this, Span_1_Int32_ destination, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF5F8, Span_1_Int32__CopyTo__MethodInfo); +DO_APP_FUNC(0x010B42F0, bool, Span_1_Int32__Equals, (Span_1_Int32_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6678, Span_1_Int32__Equals__MethodInfo); +DO_APP_FUNC(0x010B4070, void, Span_1_Int32__Fill, (Span_1_Int32_ * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x010B4350, int32_t, Span_1_Int32__GetHashCode, (Span_1_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6680, Span_1_Int32__GetHashCode__MethodInfo); +DO_APP_FUNC(0x0103B940, Span_1_Int32_, Span_1_Int32__Slice, (Span_1_Int32_ * __this, int32_t start, MethodInfo * method)); +DO_APP_FUNC(0x0103B9B0, Span_1_Int32_, Span_1_Int32__Slice_1, (Span_1_Int32_ * __this, int32_t start, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x010B3730, Int32__Array *, Span_1_Int32__ToArray, (Span_1_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010B4120, String *, Span_1_Int32__ToString, (Span_1_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010B3450, bool, Span_1_Int32__TryCopyTo, (Span_1_Int32_ * __this, Span_1_Int32_ destination, MethodInfo * method)); +DO_APP_FUNC(0x0103B750, int32_t *, Span_1_Int32__get_Item, (Span_1_Int32_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00471920, int32_t, Span_1_Int32__get_Length, (Span_1_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF5F0, Span_1_Int32__get_Length__MethodInfo); DO_APP_FUNC(0x010B3510, ReadOnlySpan_1_Int32_, Span_1_Int32__op_Implicit, (Span_1_Int32_ span, MethodInfo * method)); DO_APP_FUNC(0x010B43B0, Span_1_Int32_, Span_1_Int32__op_Implicit_1, (Int32__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x010B4430, void, Span_1_Object___ctor, (Span_1_Object___Boxed * __this, Object__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x0103AB70, void, Span_1_Object___ctor_1, (Span_1_Object___Boxed * __this, Object * ptr, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x010B4620, void, Span_1_Object___ctor_2, (Span_1_Object___Boxed * __this, Void * pointer, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x010B4510, void, Span_1_Object___ctor_3, (Span_1_Object___Boxed * __this, Object__Array * array, int32_t start, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x010B4690, void, Span_1_Object__Clear, (Span_1_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010B3390, void, Span_1_Object__CopyTo, (Span_1_Object___Boxed * __this, Span_1_Object_ destination, MethodInfo * method)); -DO_APP_FUNC(0x010B4DD0, bool, Span_1_Object__Equals, (Span_1_Object___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x010B46A0, void, Span_1_Object__Fill, (Span_1_Object___Boxed * __this, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x010B4E30, int32_t, Span_1_Object__GetHashCode, (Span_1_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0103BDA0, Span_1_Object_, Span_1_Object__Slice, (Span_1_Object___Boxed * __this, int32_t start, MethodInfo * method)); -DO_APP_FUNC(0x0103BE10, Span_1_Object_, Span_1_Object__Slice_1, (Span_1_Object___Boxed * __this, int32_t start, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x010B3730, Object__Array *, Span_1_Object__ToArray, (Span_1_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010B4C00, String *, Span_1_Object__ToString, (Span_1_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010B3450, bool, Span_1_Object__TryCopyTo, (Span_1_Object___Boxed * __this, Span_1_Object_ destination, MethodInfo * method)); -DO_APP_FUNC(0x0103BBB0, Object *, Span_1_Object__get_Item, (Span_1_Object___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00471920, int32_t, Span_1_Object__get_Length, (Span_1_Object___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF5E0, Span_1_Int32__op_Implicit_1__MethodInfo); +DO_APP_FUNC(0x010B4430, void, Span_1_Object___ctor, (Span_1_Object_ * __this, Object__Array * array, MethodInfo * method)); +DO_APP_FUNC(0x0103AB70, void, Span_1_Object___ctor_1, (Span_1_Object_ * __this, Object * * ptr, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x010B4620, void, Span_1_Object___ctor_2, (Span_1_Object_ * __this, Void * pointer, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x010B4510, void, Span_1_Object___ctor_3, (Span_1_Object_ * __this, Object__Array * array, int32_t start, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x010B4690, void, Span_1_Object__Clear, (Span_1_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010B3390, void, Span_1_Object__CopyTo, (Span_1_Object_ * __this, Span_1_Object_ destination, MethodInfo * method)); +DO_APP_FUNC(0x010B4DD0, bool, Span_1_Object__Equals, (Span_1_Object_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6668, Span_1_Object__Equals__MethodInfo); +DO_APP_FUNC(0x010B46A0, void, Span_1_Object__Fill, (Span_1_Object_ * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x010B4E30, int32_t, Span_1_Object__GetHashCode, (Span_1_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6670, Span_1_Object__GetHashCode__MethodInfo); +DO_APP_FUNC(0x0103BDA0, Span_1_Object_, Span_1_Object__Slice, (Span_1_Object_ * __this, int32_t start, MethodInfo * method)); +DO_APP_FUNC(0x0103BE10, Span_1_Object_, Span_1_Object__Slice_1, (Span_1_Object_ * __this, int32_t start, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x010B3730, Object__Array *, Span_1_Object__ToArray, (Span_1_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010B4C00, String *, Span_1_Object__ToString, (Span_1_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010B3450, bool, Span_1_Object__TryCopyTo, (Span_1_Object_ * __this, Span_1_Object_ destination, MethodInfo * method)); +DO_APP_FUNC(0x0103BBB0, Object * *, Span_1_Object__get_Item, (Span_1_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00471920, int32_t, Span_1_Object__get_Length, (Span_1_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010B3510, ReadOnlySpan_1_Object_, Span_1_Object__op_Implicit, (Span_1_Object_ span, MethodInfo * method)); DO_APP_FUNC(0x010B4E90, Span_1_Object_, Span_1_Object__op_Implicit_1, (Object__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x010B4F90, void, Span_1_UInt16___ctor, (Span_1_UInt16___Boxed * __this, UInt16__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x0103AB70, void, Span_1_UInt16___ctor_1, (Span_1_UInt16___Boxed * __this, uint16_t ptr, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x010B5090, void, Span_1_UInt16___ctor_2, (Span_1_UInt16___Boxed * __this, Void * pointer, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x010B4FF0, void, Span_1_UInt16___ctor_3, (Span_1_UInt16___Boxed * __this, UInt16__Array * array, int32_t start, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x010B3B10, void, Span_1_UInt16__Clear, (Span_1_UInt16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010B3390, void, Span_1_UInt16__CopyTo, (Span_1_UInt16___Boxed * __this, Span_1_UInt16_ destination, MethodInfo * method)); -DO_APP_FUNC(0x010B52C0, bool, Span_1_UInt16__Equals, (Span_1_UInt16___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x010B3B30, void, Span_1_UInt16__Fill, (Span_1_UInt16___Boxed * __this, uint16_t value, MethodInfo * method)); -DO_APP_FUNC(0x010B5320, int32_t, Span_1_UInt16__GetHashCode, (Span_1_UInt16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0103B4F0, Span_1_UInt16_, Span_1_UInt16__Slice, (Span_1_UInt16___Boxed * __this, int32_t start, MethodInfo * method)); -DO_APP_FUNC(0x0103B560, Span_1_UInt16_, Span_1_UInt16__Slice_1, (Span_1_UInt16___Boxed * __this, int32_t start, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x010B3730, UInt16__Array *, Span_1_UInt16__ToArray, (Span_1_UInt16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010B50F0, String *, Span_1_UInt16__ToString, (Span_1_UInt16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010B3450, bool, Span_1_UInt16__TryCopyTo, (Span_1_UInt16___Boxed * __this, Span_1_UInt16_ destination, MethodInfo * method)); -DO_APP_FUNC(0x0103B300, uint16_t, Span_1_UInt16__get_Item, (Span_1_UInt16___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00471920, int32_t, Span_1_UInt16__get_Length, (Span_1_UInt16___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x010B4F90, void, Span_1_UInt16___ctor, (Span_1_UInt16_ * __this, UInt16__Array * array, MethodInfo * method)); +DO_APP_FUNC(0x0103AB70, void, Span_1_UInt16___ctor_1, (Span_1_UInt16_ * __this, uint16_t * ptr, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x010B5090, void, Span_1_UInt16___ctor_2, (Span_1_UInt16_ * __this, Void * pointer, int32_t length, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED988, Span_1_UInt16___ctor_2__MethodInfo); +DO_APP_FUNC(0x010B4FF0, void, Span_1_UInt16___ctor_3, (Span_1_UInt16_ * __this, UInt16__Array * array, int32_t start, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x010B3B10, void, Span_1_UInt16__Clear, (Span_1_UInt16_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5660, Span_1_UInt16__Clear__MethodInfo); +DO_APP_FUNC(0x010B3390, void, Span_1_UInt16__CopyTo, (Span_1_UInt16_ * __this, Span_1_UInt16_ destination, MethodInfo * method)); +DO_APP_FUNC(0x010B52C0, bool, Span_1_UInt16__Equals, (Span_1_UInt16_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6658, Span_1_UInt16__Equals__MethodInfo); +DO_APP_FUNC(0x010B3B30, void, Span_1_UInt16__Fill, (Span_1_UInt16_ * __this, uint16_t value, MethodInfo * method)); +DO_APP_FUNC(0x010B5320, int32_t, Span_1_UInt16__GetHashCode, (Span_1_UInt16_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6660, Span_1_UInt16__GetHashCode__MethodInfo); +DO_APP_FUNC(0x0103B4F0, Span_1_UInt16_, Span_1_UInt16__Slice, (Span_1_UInt16_ * __this, int32_t start, MethodInfo * method)); +DO_APP_FUNC(0x0103B560, Span_1_UInt16_, Span_1_UInt16__Slice_1, (Span_1_UInt16_ * __this, int32_t start, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x010B3730, UInt16__Array *, Span_1_UInt16__ToArray, (Span_1_UInt16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010B50F0, String *, Span_1_UInt16__ToString, (Span_1_UInt16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010B3450, bool, Span_1_UInt16__TryCopyTo, (Span_1_UInt16_ * __this, Span_1_UInt16_ destination, MethodInfo * method)); +DO_APP_FUNC(0x0103B300, uint16_t *, Span_1_UInt16__get_Item, (Span_1_UInt16_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00471920, int32_t, Span_1_UInt16__get_Length, (Span_1_UInt16_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010B3510, ReadOnlySpan_1_UInt16_, Span_1_UInt16__op_Implicit, (Span_1_UInt16_ span, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED990, Span_1_UInt16__op_Implicit__MethodInfo); DO_APP_FUNC(0x010B5380, Span_1_UInt16_, Span_1_UInt16__op_Implicit_1, (UInt16__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x010B5400, void, Span_1_UInt32___ctor, (Span_1_UInt32___Boxed * __this, UInt32__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x0103AB70, void, Span_1_UInt32___ctor_1, (Span_1_UInt32___Boxed * __this, uint32_t ptr, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x010B5500, void, Span_1_UInt32___ctor_2, (Span_1_UInt32___Boxed * __this, Void * pointer, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x010B5460, void, Span_1_UInt32___ctor_3, (Span_1_UInt32___Boxed * __this, UInt32__Array * array, int32_t start, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x010B4050, void, Span_1_UInt32__Clear, (Span_1_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010B3390, void, Span_1_UInt32__CopyTo, (Span_1_UInt32___Boxed * __this, Span_1_UInt32_ destination, MethodInfo * method)); -DO_APP_FUNC(0x010B57D0, bool, Span_1_UInt32__Equals, (Span_1_UInt32___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x010B5560, void, Span_1_UInt32__Fill, (Span_1_UInt32___Boxed * __this, uint32_t value, MethodInfo * method)); -DO_APP_FUNC(0x010B5830, int32_t, Span_1_UInt32__GetHashCode, (Span_1_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0103B940, Span_1_UInt32_, Span_1_UInt32__Slice, (Span_1_UInt32___Boxed * __this, int32_t start, MethodInfo * method)); -DO_APP_FUNC(0x0103B9B0, Span_1_UInt32_, Span_1_UInt32__Slice_1, (Span_1_UInt32___Boxed * __this, int32_t start, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x010B3730, UInt32__Array *, Span_1_UInt32__ToArray, (Span_1_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010B5600, String *, Span_1_UInt32__ToString, (Span_1_UInt32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010B3450, bool, Span_1_UInt32__TryCopyTo, (Span_1_UInt32___Boxed * __this, Span_1_UInt32_ destination, MethodInfo * method)); -DO_APP_FUNC(0x0103B750, uint32_t, Span_1_UInt32__get_Item, (Span_1_UInt32___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00471920, int32_t, Span_1_UInt32__get_Length, (Span_1_UInt32___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x010B5400, void, Span_1_UInt32___ctor, (Span_1_UInt32_ * __this, UInt32__Array * array, MethodInfo * method)); +DO_APP_FUNC(0x0103AB70, void, Span_1_UInt32___ctor_1, (Span_1_UInt32_ * __this, uint32_t * ptr, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x010B5500, void, Span_1_UInt32___ctor_2, (Span_1_UInt32_ * __this, Void * pointer, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x010B5460, void, Span_1_UInt32___ctor_3, (Span_1_UInt32_ * __this, UInt32__Array * array, int32_t start, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x010B4050, void, Span_1_UInt32__Clear, (Span_1_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010B3390, void, Span_1_UInt32__CopyTo, (Span_1_UInt32_ * __this, Span_1_UInt32_ destination, MethodInfo * method)); +DO_APP_FUNC(0x010B57D0, bool, Span_1_UInt32__Equals, (Span_1_UInt32_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6648, Span_1_UInt32__Equals__MethodInfo); +DO_APP_FUNC(0x010B5560, void, Span_1_UInt32__Fill, (Span_1_UInt32_ * __this, uint32_t value, MethodInfo * method)); +DO_APP_FUNC(0x010B5830, int32_t, Span_1_UInt32__GetHashCode, (Span_1_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6650, Span_1_UInt32__GetHashCode__MethodInfo); +DO_APP_FUNC(0x0103B940, Span_1_UInt32_, Span_1_UInt32__Slice, (Span_1_UInt32_ * __this, int32_t start, MethodInfo * method)); +DO_APP_FUNC(0x0103B9B0, Span_1_UInt32_, Span_1_UInt32__Slice_1, (Span_1_UInt32_ * __this, int32_t start, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x010B3730, UInt32__Array *, Span_1_UInt32__ToArray, (Span_1_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010B5600, String *, Span_1_UInt32__ToString, (Span_1_UInt32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010B3450, bool, Span_1_UInt32__TryCopyTo, (Span_1_UInt32_ * __this, Span_1_UInt32_ destination, MethodInfo * method)); +DO_APP_FUNC(0x0103B750, uint32_t *, Span_1_UInt32__get_Item, (Span_1_UInt32_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00471920, int32_t, Span_1_UInt32__get_Length, (Span_1_UInt32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010B3510, ReadOnlySpan_1_UInt32_, Span_1_UInt32__op_Implicit, (Span_1_UInt32_ span, MethodInfo * method)); DO_APP_FUNC(0x010B5890, Span_1_UInt32_, Span_1_UInt32__op_Implicit_1, (UInt32__Array * array, MethodInfo * method)); DO_APP_FUNC(0x010B5910, void, ThreadPoolWorkQueue_SparseArray_1_System_Object___ctor, (ThreadPoolWorkQueue_SparseArray_1_System_Object_ * __this, int32_t initialSize, MethodInfo * method)); DO_APP_FUNC(0x010B59C0, int32_t, ThreadPoolWorkQueue_SparseArray_1_System_Object__Add, (ThreadPoolWorkQueue_SparseArray_1_System_Object_ * __this, Object * e, MethodInfo * method)); DO_APP_FUNC(0x010B5CB0, void, ThreadPoolWorkQueue_SparseArray_1_System_Object__Remove, (ThreadPoolWorkQueue_SparseArray_1_System_Object_ * __this, Object * e, MethodInfo * method)); DO_APP_FUNC(0x010B59B0, Object__Array *, ThreadPoolWorkQueue_SparseArray_1_System_Object__get_Current, (ThreadPoolWorkQueue_SparseArray_1_System_Object_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x004CB450, void, SparselyPopulatedArrayAddInfo_1_System_Object___ctor, (SparselyPopulatedArrayAddInfo_1_System_Object___Boxed * __this, SparselyPopulatedArrayFragment_1_System_Object_ * source, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00471920, int32_t, SparselyPopulatedArrayAddInfo_1_System_Object__get_Index, (SparselyPopulatedArrayAddInfo_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00471910, SparselyPopulatedArrayFragment_1_System_Object_ *, SparselyPopulatedArrayAddInfo_1_System_Object__get_Source, (SparselyPopulatedArrayAddInfo_1_System_Object___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x004CB450, void, SparselyPopulatedArrayAddInfo_1_System_Object___ctor, (SparselyPopulatedArrayAddInfo_1_System_Object_ * __this, SparselyPopulatedArrayFragment_1_System_Object_ * source, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00471920, int32_t, SparselyPopulatedArrayAddInfo_1_System_Object__get_Index, (SparselyPopulatedArrayAddInfo_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00471910, SparselyPopulatedArrayFragment_1_System_Object_ *, SparselyPopulatedArrayAddInfo_1_System_Object__get_Source, (SparselyPopulatedArrayAddInfo_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010B5EC0, void, SparselyPopulatedArrayFragment_1_System_Object___ctor, (SparselyPopulatedArrayFragment_1_System_Object_ * __this, int32_t size, MethodInfo * method)); DO_APP_FUNC(0x010B5EE0, void, SparselyPopulatedArrayFragment_1_System_Object___ctor_1, (SparselyPopulatedArrayFragment_1_System_Object_ * __this, int32_t size, SparselyPopulatedArrayFragment_1_System_Object_ * prev, MethodInfo * method)); DO_APP_FUNC(0x010B6040, Object *, SparselyPopulatedArrayFragment_1_System_Object__SafeAtomicRemove, (SparselyPopulatedArrayFragment_1_System_Object_ * __this, int32_t index, Object * expectedElement, MethodInfo * method)); @@ -191482,6 +210009,7 @@ DO_APP_FUNC(0x010B6E60, void, StackPool_1_System_Object__Release, (Stack_1_Syste DO_APP_FUNC(0x010B6BE0, void, StackPool_1_System_Object__Warmup, (int32_t count, MethodInfo * method)); DO_APP_FUNC(0x00FD3A30, void, Stack_1_KeyValuePair_2_System_Object_System_Object___ctor, (Stack_1_KeyValuePair_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010B7740, void, Stack_1_KeyValuePair_2_System_Object_System_Object___ctor_1, (Stack_1_KeyValuePair_2_System_Object_System_Object_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6638, Stack_1_KeyValuePair_2_System_Object_System_Object___ctor_1__MethodInfo); DO_APP_FUNC(0x010B7920, void, Stack_1_KeyValuePair_2_System_Object_System_Object__Clear, (Stack_1_KeyValuePair_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010B7950, bool, Stack_1_KeyValuePair_2_System_Object_System_Object__Contains, (Stack_1_KeyValuePair_2_System_Object_System_Object_ * __this, KeyValuePair_2_System_Object_System_Object_ item, MethodInfo * method)); DO_APP_FUNC(0x010B7CD0, Stack_1_T_Enumerator_KeyValuePair_2_System_Object_System_Object_, Stack_1_KeyValuePair_2_System_Object_System_Object__GetEnumerator, (Stack_1_KeyValuePair_2_System_Object_System_Object_ * __this, MethodInfo * method)); @@ -191491,45 +210019,62 @@ DO_APP_FUNC(0x010B7FF0, void, Stack_1_KeyValuePair_2_System_Object_System_Object DO_APP_FUNC(0x010B80C0, void, Stack_1_KeyValuePair_2_System_Object_System_Object__PushWithResize, (Stack_1_KeyValuePair_2_System_Object_System_Object_ * __this, KeyValuePair_2_System_Object_System_Object_ item, MethodInfo * method)); DO_APP_FUNC(0x010B7D60, IEnumerator_1_KeyValuePair_2_System_Object_System_Object_ *, Stack_1_KeyValuePair_2_System_Object_System_Object__System_Collections_Generic_IEnumerable_T__GetEnumerator, (Stack_1_KeyValuePair_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010B79B0, void, Stack_1_KeyValuePair_2_System_Object_System_Object__System_Collections_ICollection_CopyTo, (Stack_1_KeyValuePair_2_System_Object_System_Object_ * __this, Array * array, int32_t arrayIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6640, Stack_1_KeyValuePair_2_System_Object_System_Object__System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, Stack_1_KeyValuePair_2_System_Object_System_Object__System_Collections_ICollection_get_IsSynchronized, (Stack_1_KeyValuePair_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010B7870, Object *, Stack_1_KeyValuePair_2_System_Object_System_Object__System_Collections_ICollection_get_SyncRoot, (Stack_1_KeyValuePair_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010B7D60, IEnumerator *, Stack_1_KeyValuePair_2_System_Object_System_Object__System_Collections_IEnumerable_GetEnumerator, (Stack_1_KeyValuePair_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010B81A0, void, Stack_1_KeyValuePair_2_System_Object_System_Object__ThrowForEmptyStack, (Stack_1_KeyValuePair_2_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6610, Stack_1_KeyValuePair_2_System_Object_System_Object__ThrowForEmptyStack__MethodInfo); DO_APP_FUNC(0x003BC2E0, int32_t, Stack_1_KeyValuePair_2_System_Object_System_Object__get_Count, (Stack_1_KeyValuePair_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD3A30, void, Stack_1_System_Byte__1__ctor, (Stack_1_System_Byte__1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8B40, Stack_1_System_Byte__1__ctor__MethodInfo); DO_APP_FUNC(0x010B8200, void, Stack_1_System_Byte__1__ctor_1, (Stack_1_System_Byte__1 * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6600, Stack_1_System_Byte__1__ctor_1__MethodInfo); DO_APP_FUNC(0x010B83E0, void, Stack_1_System_Byte__1_Clear, (Stack_1_System_Byte__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x010B83F0, bool, Stack_1_System_Byte__1_Contains, (Stack_1_System_Byte__1 * __this, uint8_t item, MethodInfo * method)); DO_APP_FUNC(0x010B8770, Stack_1_T_Enumerator_System_Byte_, Stack_1_System_Byte__1_GetEnumerator, (Stack_1_System_Byte__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x010B88D0, uint8_t, Stack_1_System_Byte__1_Peek, (Stack_1_System_Byte__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x010B8930, uint8_t, Stack_1_System_Byte__1_Pop, (Stack_1_System_Byte__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x010B89B0, void, Stack_1_System_Byte__1_Push, (Stack_1_System_Byte__1 * __this, uint8_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF8B28, Stack_1_System_Byte__1_Push__MethodInfo); DO_APP_FUNC(0x010B8A00, void, Stack_1_System_Byte__1_PushWithResize, (Stack_1_System_Byte__1 * __this, uint8_t item, MethodInfo * method)); DO_APP_FUNC(0x010B8800, IEnumerator_1_System_Byte_ *, Stack_1_System_Byte__1_System_Collections_Generic_IEnumerable_T__GetEnumerator, (Stack_1_System_Byte__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x010B8450, void, Stack_1_System_Byte__1_System_Collections_ICollection_CopyTo, (Stack_1_System_Byte__1 * __this, Array * array, int32_t arrayIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6628, Stack_1_System_Byte__1_System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, Stack_1_System_Byte__1_System_Collections_ICollection_get_IsSynchronized, (Stack_1_System_Byte__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x010B8330, Object *, Stack_1_System_Byte__1_System_Collections_ICollection_get_SyncRoot, (Stack_1_System_Byte__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x010B8800, IEnumerator *, Stack_1_System_Byte__1_System_Collections_IEnumerable_GetEnumerator, (Stack_1_System_Byte__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x010B8A80, void, Stack_1_System_Byte__1_ThrowForEmptyStack, (Stack_1_System_Byte__1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6618, Stack_1_System_Byte__1_ThrowForEmptyStack__MethodInfo); DO_APP_FUNC(0x003BC2E0, int32_t, Stack_1_System_Byte__1_get_Count, (Stack_1_System_Byte__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD3A30, void, Stack_1_System_Int32___ctor, (Stack_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4AB8, Stack_1_System_Int32___ctor__MethodInfo); DO_APP_FUNC(0x010B8AE0, void, Stack_1_System_Int32___ctor_1, (Stack_1_System_Int32_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6620, Stack_1_System_Int32___ctor_1__MethodInfo); DO_APP_FUNC(0x010B83E0, void, Stack_1_System_Int32__Clear, (Stack_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4AF8, Stack_1_System_Int32__Clear__MethodInfo); DO_APP_FUNC(0x010B8CC0, bool, Stack_1_System_Int32__Contains, (Stack_1_System_Int32_ * __this, int32_t item, MethodInfo * method)); DO_APP_FUNC(0x010B9040, Stack_1_T_Enumerator_System_Int32_, Stack_1_System_Int32__GetEnumerator, (Stack_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010B91A0, int32_t, Stack_1_System_Int32__Peek, (Stack_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4B68, Stack_1_System_Int32__Peek__MethodInfo); DO_APP_FUNC(0x010B9200, int32_t, Stack_1_System_Int32__Pop, (Stack_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4B28, Stack_1_System_Int32__Pop__MethodInfo); DO_APP_FUNC(0x010B9280, void, Stack_1_System_Int32__Push, (Stack_1_System_Int32_ * __this, int32_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4AC0, Stack_1_System_Int32__Push__MethodInfo); DO_APP_FUNC(0x010B92D0, void, Stack_1_System_Int32__PushWithResize, (Stack_1_System_Int32_ * __this, int32_t item, MethodInfo * method)); DO_APP_FUNC(0x010B90D0, IEnumerator_1_System_Int32_ *, Stack_1_System_Int32__System_Collections_Generic_IEnumerable_T__GetEnumerator, (Stack_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010B8D20, void, Stack_1_System_Int32__System_Collections_ICollection_CopyTo, (Stack_1_System_Int32_ * __this, Array * array, int32_t arrayIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF65E0, Stack_1_System_Int32__System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, Stack_1_System_Int32__System_Collections_ICollection_get_IsSynchronized, (Stack_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010B8C10, Object *, Stack_1_System_Int32__System_Collections_ICollection_get_SyncRoot, (Stack_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010B90D0, IEnumerator *, Stack_1_System_Int32__System_Collections_IEnumerable_GetEnumerator, (Stack_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010B9350, void, Stack_1_System_Int32__ThrowForEmptyStack, (Stack_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF65E8, Stack_1_System_Int32__ThrowForEmptyStack__MethodInfo); DO_APP_FUNC(0x003BC2E0, int32_t, Stack_1_System_Int32__get_Count, (Stack_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4B38, Stack_1_System_Int32__get_Count__MethodInfo); DO_APP_FUNC(0x00FD3A30, void, Stack_1_System_Int32Enum___ctor, (Stack_1_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010B93B0, void, Stack_1_System_Int32Enum___ctor_1, (Stack_1_System_Int32Enum_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF65F8, Stack_1_System_Int32Enum___ctor_1__MethodInfo); DO_APP_FUNC(0x010B83E0, void, Stack_1_System_Int32Enum__Clear, (Stack_1_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010B8CC0, bool, Stack_1_System_Int32Enum__Contains, (Stack_1_System_Int32Enum_ * __this, Int32Enum__Enum item, MethodInfo * method)); DO_APP_FUNC(0x010B9040, Stack_1_T_Enumerator_System_Int32Enum_, Stack_1_System_Int32Enum__GetEnumerator, (Stack_1_System_Int32Enum_ * __this, MethodInfo * method)); @@ -191539,46 +210084,62 @@ DO_APP_FUNC(0x010B9280, void, Stack_1_System_Int32Enum__Push, (Stack_1_System_In DO_APP_FUNC(0x010B92D0, void, Stack_1_System_Int32Enum__PushWithResize, (Stack_1_System_Int32Enum_ * __this, Int32Enum__Enum item, MethodInfo * method)); DO_APP_FUNC(0x010B90D0, IEnumerator_1_System_Int32Enum_ *, Stack_1_System_Int32Enum__System_Collections_Generic_IEnumerable_T__GetEnumerator, (Stack_1_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010B9590, void, Stack_1_System_Int32Enum__System_Collections_ICollection_CopyTo, (Stack_1_System_Int32Enum_ * __this, Array * array, int32_t arrayIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF65F0, Stack_1_System_Int32Enum__System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, Stack_1_System_Int32Enum__System_Collections_ICollection_get_IsSynchronized, (Stack_1_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010B94E0, Object *, Stack_1_System_Int32Enum__System_Collections_ICollection_get_SyncRoot, (Stack_1_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010B90D0, IEnumerator *, Stack_1_System_Int32Enum__System_Collections_IEnumerable_GetEnumerator, (Stack_1_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010B98B0, void, Stack_1_System_Int32Enum__ThrowForEmptyStack, (Stack_1_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF65B8, Stack_1_System_Int32Enum__ThrowForEmptyStack__MethodInfo); DO_APP_FUNC(0x003BC2E0, int32_t, Stack_1_System_Int32Enum__get_Count, (Stack_1_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD3A30, void, Stack_1_UnityEngine_Matrix4x4___ctor, (Stack_1_UnityEngine_Matrix4x4_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010B9910, void, Stack_1_UnityEngine_Matrix4x4___ctor_1, (Stack_1_UnityEngine_Matrix4x4_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF65C0, Stack_1_UnityEngine_Matrix4x4___ctor_1__MethodInfo); DO_APP_FUNC(0x010B83E0, void, Stack_1_UnityEngine_Matrix4x4__Clear, (Stack_1_UnityEngine_Matrix4x4_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7978, Stack_1_UnityEngine_Matrix4x4__Clear__MethodInfo); DO_APP_FUNC(0x010B9AF0, bool, Stack_1_UnityEngine_Matrix4x4__Contains, (Stack_1_UnityEngine_Matrix4x4_ * __this, Matrix4x4 item, MethodInfo * method)); DO_APP_FUNC(0x010B9E90, Stack_1_T_Enumerator_UnityEngine_Matrix4x4_, Stack_1_UnityEngine_Matrix4x4__GetEnumerator, (Stack_1_UnityEngine_Matrix4x4_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010BA060, Matrix4x4, Stack_1_UnityEngine_Matrix4x4__Peek, (Stack_1_UnityEngine_Matrix4x4_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD78A0, Stack_1_UnityEngine_Matrix4x4__Peek__MethodInfo); DO_APP_FUNC(0x010BA100, Matrix4x4, Stack_1_UnityEngine_Matrix4x4__Pop, (Stack_1_UnityEngine_Matrix4x4_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7890, Stack_1_UnityEngine_Matrix4x4__Pop__MethodInfo); DO_APP_FUNC(0x010BA1D0, void, Stack_1_UnityEngine_Matrix4x4__Push, (Stack_1_UnityEngine_Matrix4x4_ * __this, Matrix4x4 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7950, Stack_1_UnityEngine_Matrix4x4__Push__MethodInfo); DO_APP_FUNC(0x010BA280, void, Stack_1_UnityEngine_Matrix4x4__PushWithResize, (Stack_1_UnityEngine_Matrix4x4_ * __this, Matrix4x4 item, MethodInfo * method)); DO_APP_FUNC(0x010B9F40, IEnumerator_1_UnityEngine_Matrix4x4_ *, Stack_1_UnityEngine_Matrix4x4__System_Collections_Generic_IEnumerable_T__GetEnumerator, (Stack_1_UnityEngine_Matrix4x4_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010B9B70, void, Stack_1_UnityEngine_Matrix4x4__System_Collections_ICollection_CopyTo, (Stack_1_UnityEngine_Matrix4x4_ * __this, Array * array, int32_t arrayIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF65D0, Stack_1_UnityEngine_Matrix4x4__System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, Stack_1_UnityEngine_Matrix4x4__System_Collections_ICollection_get_IsSynchronized, (Stack_1_UnityEngine_Matrix4x4_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010B9A40, Object *, Stack_1_UnityEngine_Matrix4x4__System_Collections_ICollection_get_SyncRoot, (Stack_1_UnityEngine_Matrix4x4_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010B9F40, IEnumerator *, Stack_1_UnityEngine_Matrix4x4__System_Collections_IEnumerable_GetEnumerator, (Stack_1_UnityEngine_Matrix4x4_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010BA320, void, Stack_1_UnityEngine_Matrix4x4__ThrowForEmptyStack, (Stack_1_UnityEngine_Matrix4x4_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF65D8, Stack_1_UnityEngine_Matrix4x4__ThrowForEmptyStack__MethodInfo); DO_APP_FUNC(0x003BC2E0, int32_t, Stack_1_UnityEngine_Matrix4x4__get_Count, (Stack_1_UnityEngine_Matrix4x4_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD3A30, void, Stack_1_System_Object___ctor, (Stack_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE1E0, Stack_1_System_Object___ctor__MethodInfo); DO_APP_FUNC(0x010BA380, void, Stack_1_System_Object___ctor_1, (Stack_1_System_Object_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF65C8, Stack_1_System_Object___ctor_1__MethodInfo); DO_APP_FUNC(0x010B7920, void, Stack_1_System_Object__Clear, (Stack_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010BA560, bool, Stack_1_System_Object__Contains, (Stack_1_System_Object_ * __this, Object * item, MethodInfo * method)); DO_APP_FUNC(0x010BA8E0, Stack_1_T_Enumerator_System_Object_, Stack_1_System_Object__GetEnumerator, (Stack_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010BAA40, Object *, Stack_1_System_Object__Peek, (Stack_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010BAAA0, Object *, Stack_1_System_Object__Pop, (Stack_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE1E8, Stack_1_System_Object__Pop__MethodInfo); DO_APP_FUNC(0x010BAB30, void, Stack_1_System_Object__Push, (Stack_1_System_Object_ * __this, Object * item, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C965F0, Stack_1_System_Object__Push__MethodInfo); DO_APP_FUNC(0x010BABA0, void, Stack_1_System_Object__PushWithResize, (Stack_1_System_Object_ * __this, Object * item, MethodInfo * method)); DO_APP_FUNC(0x010BA970, IEnumerator_1_System_Object_ *, Stack_1_System_Object__System_Collections_Generic_IEnumerable_T__GetEnumerator, (Stack_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010BA5C0, void, Stack_1_System_Object__System_Collections_ICollection_CopyTo, (Stack_1_System_Object_ * __this, Array * array, int32_t arrayIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF65A0, Stack_1_System_Object__System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, Stack_1_System_Object__System_Collections_ICollection_get_IsSynchronized, (Stack_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010BA4B0, Object *, Stack_1_System_Object__System_Collections_ICollection_get_SyncRoot, (Stack_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010BA970, IEnumerator *, Stack_1_System_Object__System_Collections_IEnumerable_GetEnumerator, (Stack_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010BAC20, void, Stack_1_System_Object__ThrowForEmptyStack, (Stack_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6590, Stack_1_System_Object__ThrowForEmptyStack__MethodInfo); DO_APP_FUNC(0x003BC2E0, int32_t, Stack_1_System_Object__get_Count, (Stack_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE1B8, Stack_1_System_Object__get_Count__MethodInfo); DO_APP_FUNC(0x00FD3A30, void, Stack_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___ctor, (Stack_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010BAC80, void, Stack_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___ctor_1, (Stack_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6598, Stack_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___ctor_1__MethodInfo); DO_APP_FUNC(0x010B83E0, void, Stack_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__Clear, (Stack_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010BAE60, bool, Stack_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__Contains, (Stack_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, OriginalMaterialValue item, MethodInfo * method)); DO_APP_FUNC(0x010BB200, Stack_1_T_Enumerator_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_, Stack_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__GetEnumerator, (Stack_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, MethodInfo * method)); @@ -191588,77 +210149,109 @@ DO_APP_FUNC(0x010BB500, void, Stack_1_Opsive_UltimateCharacterController_Utility DO_APP_FUNC(0x010BB590, void, Stack_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__PushWithResize, (Stack_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, OriginalMaterialValue item, MethodInfo * method)); DO_APP_FUNC(0x010BB2B0, IEnumerator_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ *, Stack_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__System_Collections_Generic_IEnumerable_T__GetEnumerator, (Stack_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010BAEE0, void, Stack_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__System_Collections_ICollection_CopyTo, (Stack_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, Array * array, int32_t arrayIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF65A8, Stack_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, Stack_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__System_Collections_ICollection_get_IsSynchronized, (Stack_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010BADB0, Object *, Stack_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__System_Collections_ICollection_get_SyncRoot, (Stack_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010BB2B0, IEnumerator *, Stack_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__System_Collections_IEnumerable_GetEnumerator, (Stack_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010BB630, void, Stack_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__ThrowForEmptyStack, (Stack_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF65B0, Stack_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__ThrowForEmptyStack__MethodInfo); DO_APP_FUNC(0x003BC2E0, int32_t, Stack_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__get_Count, (Stack_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD3A30, void, Stack_1_UnityEngine_Rect___ctor, (Stack_1_UnityEngine_Rect_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010BB690, void, Stack_1_UnityEngine_Rect___ctor_1, (Stack_1_UnityEngine_Rect_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6578, Stack_1_UnityEngine_Rect___ctor_1__MethodInfo); DO_APP_FUNC(0x010B83E0, void, Stack_1_UnityEngine_Rect__Clear, (Stack_1_UnityEngine_Rect_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7970, Stack_1_UnityEngine_Rect__Clear__MethodInfo); DO_APP_FUNC(0x010B7950, bool, Stack_1_UnityEngine_Rect__Contains, (Stack_1_UnityEngine_Rect_ * __this, Rect item, MethodInfo * method)); DO_APP_FUNC(0x010B7CD0, Stack_1_T_Enumerator_UnityEngine_Rect_, Stack_1_UnityEngine_Rect__GetEnumerator, (Stack_1_UnityEngine_Rect_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010B7E40, Rect, Stack_1_UnityEngine_Rect__Peek, (Stack_1_UnityEngine_Rect_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7880, Stack_1_UnityEngine_Rect__Peek__MethodInfo); DO_APP_FUNC(0x010BBB90, Rect, Stack_1_UnityEngine_Rect__Pop, (Stack_1_UnityEngine_Rect_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7870, Stack_1_UnityEngine_Rect__Pop__MethodInfo); DO_APP_FUNC(0x010BBC30, void, Stack_1_UnityEngine_Rect__Push, (Stack_1_UnityEngine_Rect_ * __this, Rect item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7960, Stack_1_UnityEngine_Rect__Push__MethodInfo); DO_APP_FUNC(0x010BBCA0, void, Stack_1_UnityEngine_Rect__PushWithResize, (Stack_1_UnityEngine_Rect_ * __this, Rect item, MethodInfo * method)); DO_APP_FUNC(0x010B7D60, IEnumerator_1_UnityEngine_Rect_ *, Stack_1_UnityEngine_Rect__System_Collections_Generic_IEnumerable_T__GetEnumerator, (Stack_1_UnityEngine_Rect_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010BB870, void, Stack_1_UnityEngine_Rect__System_Collections_ICollection_CopyTo, (Stack_1_UnityEngine_Rect_ * __this, Array * array, int32_t arrayIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6570, Stack_1_UnityEngine_Rect__System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, Stack_1_UnityEngine_Rect__System_Collections_ICollection_get_IsSynchronized, (Stack_1_UnityEngine_Rect_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010BB7C0, Object *, Stack_1_UnityEngine_Rect__System_Collections_ICollection_get_SyncRoot, (Stack_1_UnityEngine_Rect_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010B7D60, IEnumerator *, Stack_1_UnityEngine_Rect__System_Collections_IEnumerable_GetEnumerator, (Stack_1_UnityEngine_Rect_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010BBD30, void, Stack_1_UnityEngine_Rect__ThrowForEmptyStack, (Stack_1_UnityEngine_Rect_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6580, Stack_1_UnityEngine_Rect__ThrowForEmptyStack__MethodInfo); DO_APP_FUNC(0x003BC2E0, int32_t, Stack_1_UnityEngine_Rect__get_Count, (Stack_1_UnityEngine_Rect_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7878, Stack_1_UnityEngine_Rect__get_Count__MethodInfo); DO_APP_FUNC(0x00FD3A30, void, Stack_1_UnityEngine_UIElements_TextureId___ctor, (Stack_1_UnityEngine_UIElements_TextureId_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6038, Stack_1_UnityEngine_UIElements_TextureId___ctor__MethodInfo); DO_APP_FUNC(0x010BBD90, void, Stack_1_UnityEngine_UIElements_TextureId___ctor_1, (Stack_1_UnityEngine_UIElements_TextureId_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6588, Stack_1_UnityEngine_UIElements_TextureId___ctor_1__MethodInfo); DO_APP_FUNC(0x010B83E0, void, Stack_1_UnityEngine_UIElements_TextureId__Clear, (Stack_1_UnityEngine_UIElements_TextureId_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010BBF70, bool, Stack_1_UnityEngine_UIElements_TextureId__Contains, (Stack_1_UnityEngine_UIElements_TextureId_ * __this, TextureId item, MethodInfo * method)); DO_APP_FUNC(0x010B9040, Stack_1_T_Enumerator_UnityEngine_UIElements_TextureId_, Stack_1_UnityEngine_UIElements_TextureId__GetEnumerator, (Stack_1_UnityEngine_UIElements_TextureId_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010B91A0, TextureId, Stack_1_UnityEngine_UIElements_TextureId__Peek, (Stack_1_UnityEngine_UIElements_TextureId_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010B9200, TextureId, Stack_1_UnityEngine_UIElements_TextureId__Pop, (Stack_1_UnityEngine_UIElements_TextureId_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6158, Stack_1_UnityEngine_UIElements_TextureId__Pop__MethodInfo); DO_APP_FUNC(0x010B9280, void, Stack_1_UnityEngine_UIElements_TextureId__Push, (Stack_1_UnityEngine_UIElements_TextureId_ * __this, TextureId item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6188, Stack_1_UnityEngine_UIElements_TextureId__Push__MethodInfo); DO_APP_FUNC(0x010BC2E0, void, Stack_1_UnityEngine_UIElements_TextureId__PushWithResize, (Stack_1_UnityEngine_UIElements_TextureId_ * __this, TextureId item, MethodInfo * method)); DO_APP_FUNC(0x010B90D0, IEnumerator_1_UnityEngine_UIElements_TextureId_ *, Stack_1_UnityEngine_UIElements_TextureId__System_Collections_Generic_IEnumerable_T__GetEnumerator, (Stack_1_UnityEngine_UIElements_TextureId_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010BBFC0, void, Stack_1_UnityEngine_UIElements_TextureId__System_Collections_ICollection_CopyTo, (Stack_1_UnityEngine_UIElements_TextureId_ * __this, Array * array, int32_t arrayIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6548, Stack_1_UnityEngine_UIElements_TextureId__System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, Stack_1_UnityEngine_UIElements_TextureId__System_Collections_ICollection_get_IsSynchronized, (Stack_1_UnityEngine_UIElements_TextureId_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010BBEC0, Object *, Stack_1_UnityEngine_UIElements_TextureId__System_Collections_ICollection_get_SyncRoot, (Stack_1_UnityEngine_UIElements_TextureId_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010B90D0, IEnumerator *, Stack_1_UnityEngine_UIElements_TextureId__System_Collections_IEnumerable_GetEnumerator, (Stack_1_UnityEngine_UIElements_TextureId_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010BC360, void, Stack_1_UnityEngine_UIElements_TextureId__ThrowForEmptyStack, (Stack_1_UnityEngine_UIElements_TextureId_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6550, Stack_1_UnityEngine_UIElements_TextureId__ThrowForEmptyStack__MethodInfo); DO_APP_FUNC(0x003BC2E0, int32_t, Stack_1_UnityEngine_UIElements_TextureId__get_Count, (Stack_1_UnityEngine_UIElements_TextureId_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE6168, Stack_1_UnityEngine_UIElements_TextureId__get_Count__MethodInfo); DO_APP_FUNC(0x00FD3A30, void, Stack_1_UnityEngine_Vector2___ctor, (Stack_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB020, Stack_1_UnityEngine_Vector2___ctor__MethodInfo); DO_APP_FUNC(0x010BC3C0, void, Stack_1_UnityEngine_Vector2___ctor_1, (Stack_1_UnityEngine_Vector2_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6540, Stack_1_UnityEngine_Vector2___ctor_1__MethodInfo); DO_APP_FUNC(0x010B83E0, void, Stack_1_UnityEngine_Vector2__Clear, (Stack_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010BC5A0, bool, Stack_1_UnityEngine_Vector2__Contains, (Stack_1_UnityEngine_Vector2_ * __this, Vector2 item, MethodInfo * method)); DO_APP_FUNC(0x010BA8E0, Stack_1_T_Enumerator_UnityEngine_Vector2_, Stack_1_UnityEngine_Vector2__GetEnumerator, (Stack_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010BC920, Vector2, Stack_1_UnityEngine_Vector2__Peek, (Stack_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB040, Stack_1_UnityEngine_Vector2__Peek__MethodInfo); DO_APP_FUNC(0x010BC990, Vector2, Stack_1_UnityEngine_Vector2__Pop, (Stack_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB030, Stack_1_UnityEngine_Vector2__Pop__MethodInfo); DO_APP_FUNC(0x010BCA20, void, Stack_1_UnityEngine_Vector2__Push, (Stack_1_UnityEngine_Vector2_ * __this, Vector2 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB038, Stack_1_UnityEngine_Vector2__Push__MethodInfo); DO_APP_FUNC(0x010BCAA0, void, Stack_1_UnityEngine_Vector2__PushWithResize, (Stack_1_UnityEngine_Vector2_ * __this, Vector2 item, MethodInfo * method)); DO_APP_FUNC(0x010BA970, IEnumerator_1_UnityEngine_Vector2_ *, Stack_1_UnityEngine_Vector2__System_Collections_Generic_IEnumerable_T__GetEnumerator, (Stack_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010BC600, void, Stack_1_UnityEngine_Vector2__System_Collections_ICollection_CopyTo, (Stack_1_UnityEngine_Vector2_ * __this, Array * array, int32_t arrayIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6568, Stack_1_UnityEngine_Vector2__System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, Stack_1_UnityEngine_Vector2__System_Collections_ICollection_get_IsSynchronized, (Stack_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010BC4F0, Object *, Stack_1_UnityEngine_Vector2__System_Collections_ICollection_get_SyncRoot, (Stack_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010BA970, IEnumerator *, Stack_1_UnityEngine_Vector2__System_Collections_IEnumerable_GetEnumerator, (Stack_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010BCB30, void, Stack_1_UnityEngine_Vector2__ThrowForEmptyStack, (Stack_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6558, Stack_1_UnityEngine_Vector2__ThrowForEmptyStack__MethodInfo); DO_APP_FUNC(0x003BC2E0, int32_t, Stack_1_UnityEngine_Vector2__get_Count, (Stack_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD3A30, void, Stack_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext___ctor, (Stack_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB810, Stack_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext___ctor__MethodInfo); DO_APP_FUNC(0x010BCB90, void, Stack_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext___ctor_1, (Stack_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6560, Stack_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext___ctor_1__MethodInfo); DO_APP_FUNC(0x010B83E0, void, Stack_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext__Clear, (Stack_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB7C0, Stack_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext__Clear__MethodInfo); DO_APP_FUNC(0x010BBF70, bool, Stack_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext__Contains, (Stack_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext_ * __this, BaseStyleMatcher_MatchContext item, MethodInfo * method)); DO_APP_FUNC(0x010BA8E0, Stack_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext_, Stack_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext__GetEnumerator, (Stack_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010BAA40, BaseStyleMatcher_MatchContext, Stack_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext__Peek, (Stack_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010BD090, BaseStyleMatcher_MatchContext, Stack_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext__Pop, (Stack_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB7D0, Stack_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext__Pop__MethodInfo); DO_APP_FUNC(0x010BD110, void, Stack_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext__Push, (Stack_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext_ * __this, BaseStyleMatcher_MatchContext item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDB798, Stack_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext__Push__MethodInfo); DO_APP_FUNC(0x010BD160, void, Stack_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext__PushWithResize, (Stack_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext_ * __this, BaseStyleMatcher_MatchContext item, MethodInfo * method)); DO_APP_FUNC(0x010BA970, IEnumerator_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext_ *, Stack_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext__System_Collections_Generic_IEnumerable_T__GetEnumerator, (Stack_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010BCD70, void, Stack_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext__System_Collections_ICollection_CopyTo, (Stack_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext_ * __this, Array * array, int32_t arrayIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6520, Stack_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext__System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, Stack_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext__System_Collections_ICollection_get_IsSynchronized, (Stack_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010BCCC0, Object *, Stack_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext__System_Collections_ICollection_get_SyncRoot, (Stack_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010BA970, IEnumerator *, Stack_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext__System_Collections_IEnumerable_GetEnumerator, (Stack_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010BD1E0, void, Stack_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext__ThrowForEmptyStack, (Stack_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6528, Stack_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext__ThrowForEmptyStack__MethodInfo); DO_APP_FUNC(0x003BC2E0, int32_t, Stack_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext__get_Count, (Stack_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD3A30, void, Stack_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator___ctor, (Stack_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010BD240, void, Stack_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator___ctor_1, (Stack_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6538, Stack_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator___ctor_1__MethodInfo); DO_APP_FUNC(0x010B7920, void, Stack_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator__Clear, (Stack_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010BD420, bool, Stack_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator__Contains, (Stack_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator_ * __this, DamageIndicatorMonitor_DamageIndicator item, MethodInfo * method)); DO_APP_FUNC(0x010BD7C0, Stack_1_T_Enumerator_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator_, Stack_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator__GetEnumerator, (Stack_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator_ * __this, MethodInfo * method)); @@ -191668,13 +210261,17 @@ DO_APP_FUNC(0x010BDBE0, void, Stack_1_Opsive_UltimateCharacterController_UI_Dama DO_APP_FUNC(0x010BDCE0, void, Stack_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator__PushWithResize, (Stack_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator_ * __this, DamageIndicatorMonitor_DamageIndicator item, MethodInfo * method)); DO_APP_FUNC(0x010BD870, IEnumerator_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator_ *, Stack_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator__System_Collections_Generic_IEnumerable_T__GetEnumerator, (Stack_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010BD4A0, void, Stack_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator__System_Collections_ICollection_CopyTo, (Stack_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator_ * __this, Array * array, int32_t arrayIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6530, Stack_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator__System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, Stack_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator__System_Collections_ICollection_get_IsSynchronized, (Stack_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010BD370, Object *, Stack_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator__System_Collections_ICollection_get_SyncRoot, (Stack_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010BD870, IEnumerator *, Stack_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator__System_Collections_IEnumerable_GetEnumerator, (Stack_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010BDDE0, void, Stack_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator__ThrowForEmptyStack, (Stack_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF64F8, Stack_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator__ThrowForEmptyStack__MethodInfo); DO_APP_FUNC(0x003BC2E0, int32_t, Stack_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator__get_Count, (Stack_1_Opsive_UltimateCharacterController_UI_DamageIndicatorMonitor_DamageIndicator_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD3A30, void, Stack_1_UnityEngine_UIElements_EventDispatcher_DispatchContext___ctor, (Stack_1_UnityEngine_UIElements_EventDispatcher_DispatchContext_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3120, Stack_1_UnityEngine_UIElements_EventDispatcher_DispatchContext___ctor__MethodInfo); DO_APP_FUNC(0x010BDE40, void, Stack_1_UnityEngine_UIElements_EventDispatcher_DispatchContext___ctor_1, (Stack_1_UnityEngine_UIElements_EventDispatcher_DispatchContext_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6500, Stack_1_UnityEngine_UIElements_EventDispatcher_DispatchContext___ctor_1__MethodInfo); DO_APP_FUNC(0x010B7920, void, Stack_1_UnityEngine_UIElements_EventDispatcher_DispatchContext__Clear, (Stack_1_UnityEngine_UIElements_EventDispatcher_DispatchContext_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010B7950, bool, Stack_1_UnityEngine_UIElements_EventDispatcher_DispatchContext__Contains, (Stack_1_UnityEngine_UIElements_EventDispatcher_DispatchContext_ * __this, EventDispatcher_DispatchContext item, MethodInfo * method)); DO_APP_FUNC(0x010B7CD0, Stack_1_T_Enumerator_UnityEngine_UIElements_EventDispatcher_DispatchContext_, Stack_1_UnityEngine_UIElements_EventDispatcher_DispatchContext__GetEnumerator, (Stack_1_UnityEngine_UIElements_EventDispatcher_DispatchContext_ * __this, MethodInfo * method)); @@ -191684,13 +210281,16 @@ DO_APP_FUNC(0x010BE470, void, Stack_1_UnityEngine_UIElements_EventDispatcher_Dis DO_APP_FUNC(0x010BE540, void, Stack_1_UnityEngine_UIElements_EventDispatcher_DispatchContext__PushWithResize, (Stack_1_UnityEngine_UIElements_EventDispatcher_DispatchContext_ * __this, EventDispatcher_DispatchContext item, MethodInfo * method)); DO_APP_FUNC(0x010B7D60, IEnumerator_1_UnityEngine_UIElements_EventDispatcher_DispatchContext_ *, Stack_1_UnityEngine_UIElements_EventDispatcher_DispatchContext__System_Collections_Generic_IEnumerable_T__GetEnumerator, (Stack_1_UnityEngine_UIElements_EventDispatcher_DispatchContext_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010BE020, void, Stack_1_UnityEngine_UIElements_EventDispatcher_DispatchContext__System_Collections_ICollection_CopyTo, (Stack_1_UnityEngine_UIElements_EventDispatcher_DispatchContext_ * __this, Array * array, int32_t arrayIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6510, Stack_1_UnityEngine_UIElements_EventDispatcher_DispatchContext__System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, Stack_1_UnityEngine_UIElements_EventDispatcher_DispatchContext__System_Collections_ICollection_get_IsSynchronized, (Stack_1_UnityEngine_UIElements_EventDispatcher_DispatchContext_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010BDF70, Object *, Stack_1_UnityEngine_UIElements_EventDispatcher_DispatchContext__System_Collections_ICollection_get_SyncRoot, (Stack_1_UnityEngine_UIElements_EventDispatcher_DispatchContext_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010B7D60, IEnumerator *, Stack_1_UnityEngine_UIElements_EventDispatcher_DispatchContext__System_Collections_IEnumerable_GetEnumerator, (Stack_1_UnityEngine_UIElements_EventDispatcher_DispatchContext_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010BE620, void, Stack_1_UnityEngine_UIElements_EventDispatcher_DispatchContext__ThrowForEmptyStack, (Stack_1_UnityEngine_UIElements_EventDispatcher_DispatchContext_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6518, Stack_1_UnityEngine_UIElements_EventDispatcher_DispatchContext__ThrowForEmptyStack__MethodInfo); DO_APP_FUNC(0x003BC2E0, int32_t, Stack_1_UnityEngine_UIElements_EventDispatcher_DispatchContext__get_Count, (Stack_1_UnityEngine_UIElements_EventDispatcher_DispatchContext_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD3A30, void, Stack_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc___ctor, (Stack_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010BE680, void, Stack_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc___ctor_1, (Stack_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6508, Stack_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc___ctor_1__MethodInfo); DO_APP_FUNC(0x010B83E0, void, Stack_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__Clear, (Stack_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C92D60, Stack_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__Clear__MethodInfo); DO_APP_FUNC(0x010BE860, bool, Stack_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__Contains, (Stack_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * __this, ProbeBrickPool_BrickChunkAlloc item, MethodInfo * method)); @@ -191703,43 +210303,60 @@ DO_APP_FUNC_METHODINFO(0x03C92D58, Stack_1_UnityEngine_Experimental_Rendering_Pr DO_APP_FUNC(0x010BEF10, void, Stack_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__PushWithResize, (Stack_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * __this, ProbeBrickPool_BrickChunkAlloc item, MethodInfo * method)); DO_APP_FUNC(0x010BEC80, IEnumerator_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ *, Stack_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__System_Collections_Generic_IEnumerable_T__GetEnumerator, (Stack_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010BE8D0, void, Stack_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__System_Collections_ICollection_CopyTo, (Stack_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * __this, Array * array, int32_t arrayIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF64E0, Stack_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, Stack_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__System_Collections_ICollection_get_IsSynchronized, (Stack_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010BE7B0, Object *, Stack_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__System_Collections_ICollection_get_SyncRoot, (Stack_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010BEC80, IEnumerator *, Stack_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__System_Collections_IEnumerable_GetEnumerator, (Stack_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010BEFA0, void, Stack_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__ThrowForEmptyStack, (Stack_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF64D0, Stack_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__ThrowForEmptyStack__MethodInfo); DO_APP_FUNC(0x003BC2E0, int32_t, Stack_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__get_Count, (Stack_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C92D78, Stack_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__get_Count__MethodInfo); DO_APP_FUNC(0x00FD3A30, void, Stack_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext___ctor, (Stack_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D024B8, Stack_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext___ctor__MethodInfo); DO_APP_FUNC(0x010BF000, void, Stack_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext___ctor_1, (Stack_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF64D8, Stack_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext___ctor_1__MethodInfo); DO_APP_FUNC(0x010B7920, void, Stack_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext__Clear, (Stack_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010BAE60, bool, Stack_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext__Contains, (Stack_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext_ * __this, SequenceNode_SequenceConstructPosContext item, MethodInfo * method)); DO_APP_FUNC(0x010BB200, Stack_1_T_Enumerator_System_Xml_Schema_SequenceNode_SequenceConstructPosContext_, Stack_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext__GetEnumerator, (Stack_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010BB3B0, SequenceNode_SequenceConstructPosContext, Stack_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext__Peek, (Stack_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010BF500, SequenceNode_SequenceConstructPosContext, Stack_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext__Pop, (Stack_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D024C8, Stack_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext__Pop__MethodInfo); DO_APP_FUNC(0x010BF680, void, Stack_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext__Push, (Stack_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext_ * __this, SequenceNode_SequenceConstructPosContext item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D024C0, Stack_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext__Push__MethodInfo); DO_APP_FUNC(0x010BF760, void, Stack_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext__PushWithResize, (Stack_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext_ * __this, SequenceNode_SequenceConstructPosContext item, MethodInfo * method)); DO_APP_FUNC(0x010BB2B0, IEnumerator_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext_ *, Stack_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext__System_Collections_Generic_IEnumerable_T__GetEnumerator, (Stack_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010BF1E0, void, Stack_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext__System_Collections_ICollection_CopyTo, (Stack_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext_ * __this, Array * array, int32_t arrayIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF64E8, Stack_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext__System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, Stack_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext__System_Collections_ICollection_get_IsSynchronized, (Stack_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010BF130, Object *, Stack_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext__System_Collections_ICollection_get_SyncRoot, (Stack_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010BB2B0, IEnumerator *, Stack_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext__System_Collections_IEnumerable_GetEnumerator, (Stack_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010BF850, void, Stack_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext__ThrowForEmptyStack, (Stack_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF64F0, Stack_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext__ThrowForEmptyStack__MethodInfo); DO_APP_FUNC(0x003BC2E0, int32_t, Stack_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext__get_Count, (Stack_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D024B0, Stack_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext__get_Count__MethodInfo); DO_APP_FUNC(0x00FD3A30, void, Stack_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext___ctor, (Stack_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA720, Stack_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext___ctor__MethodInfo); DO_APP_FUNC(0x010BF8B0, void, Stack_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext___ctor_1, (Stack_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF64C0, Stack_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext___ctor_1__MethodInfo); DO_APP_FUNC(0x010B7920, void, Stack_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext__Clear, (Stack_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA8B0, Stack_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext__Clear__MethodInfo); DO_APP_FUNC(0x010B7950, bool, Stack_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext__Contains, (Stack_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext_ * __this, StyleVariableResolver_ResolveContext item, MethodInfo * method)); DO_APP_FUNC(0x010B7CD0, Stack_1_T_Enumerator_UnityEngine_UIElements_StyleVariableResolver_ResolveContext_, Stack_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext__GetEnumerator, (Stack_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010B7E40, StyleVariableResolver_ResolveContext, Stack_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext__Peek, (Stack_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA878, Stack_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext__Peek__MethodInfo); DO_APP_FUNC(0x010B7EC0, StyleVariableResolver_ResolveContext, Stack_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext__Pop, (Stack_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA8E0, Stack_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext__Pop__MethodInfo); DO_APP_FUNC(0x010B7FF0, void, Stack_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext__Push, (Stack_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext_ * __this, StyleVariableResolver_ResolveContext item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA880, Stack_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext__Push__MethodInfo); DO_APP_FUNC(0x010B80C0, void, Stack_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext__PushWithResize, (Stack_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext_ * __this, StyleVariableResolver_ResolveContext item, MethodInfo * method)); DO_APP_FUNC(0x010B7D60, IEnumerator_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext_ *, Stack_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext__System_Collections_Generic_IEnumerable_T__GetEnumerator, (Stack_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010BFA90, void, Stack_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext__System_Collections_ICollection_CopyTo, (Stack_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext_ * __this, Array * array, int32_t arrayIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF64B8, Stack_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext__System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, Stack_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext__System_Collections_ICollection_get_IsSynchronized, (Stack_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010BF9E0, Object *, Stack_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext__System_Collections_ICollection_get_SyncRoot, (Stack_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010B7D60, IEnumerator *, Stack_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext__System_Collections_IEnumerable_GetEnumerator, (Stack_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010BFDB0, void, Stack_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext__ThrowForEmptyStack, (Stack_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF64C8, Stack_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext__ThrowForEmptyStack__MethodInfo); DO_APP_FUNC(0x003BC2E0, int32_t, Stack_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext__get_Count, (Stack_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010BFE10, void, Socket_StateTaskCompletionSource_2_System_Int32Enum_SocketReceiveMessageFromResult___ctor, (Socket_StateTaskCompletionSource_2_System_Int32Enum_SocketReceiveMessageFromResult_ * __this, Object * baseState, MethodInfo * method)); DO_APP_FUNC(0x010BFE10, void, Socket_StateTaskCompletionSource_2_System_Object_System_Object___ctor, (Socket_StateTaskCompletionSource_2_System_Object_System_Object_ * __this, Object * baseState, MethodInfo * method)); @@ -191793,6 +210410,7 @@ DO_APP_FUNC(0x010C1170, StructWrapper_1_System_Single_ *, StructWrapperPool_1_Sy DO_APP_FUNC(0x010C0380, void, StructWrapperPool_1_System_Single__Release, (StructWrapperPool_1_System_Single_ * __this, StructWrapper_1_System_Single_ * obj, MethodInfo * method)); DO_APP_FUNC(0x010C1720, void, StructWrapper_1_System_Boolean___cctor, (MethodInfo * method)); DO_APP_FUNC(0x010C11C0, void, StructWrapper_1_System_Boolean___ctor, (StructWrapper_1_System_Boolean_ * __this, Pooling__Enum releasing, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE3B70, StructWrapper_1_System_Boolean___ctor__MethodInfo); DO_APP_FUNC(0x010C12C0, void, StructWrapper_1_System_Boolean___ctor_1, (StructWrapper_1_System_Boolean_ * __this, Pooling__Enum releasing, Type * tType, WrappedType__Enum wType, MethodInfo * method)); DO_APP_FUNC(0x010C13C0, void, StructWrapper_1_System_Boolean__Dispose, (StructWrapper_1_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010C1460, String *, StructWrapper_1_System_Boolean__ToString, (StructWrapper_1_System_Boolean_ * __this, MethodInfo * method)); @@ -191802,6 +210420,7 @@ DO_APP_FUNC(0x003BB3E0, StructWrapperPool_1_System_Boolean_ *, StructWrapper_1_S DO_APP_FUNC(0x003BCDE0, void, StructWrapper_1_System_Boolean__set_ReturnPool, (StructWrapper_1_System_Boolean_ * __this, StructWrapperPool_1_System_Boolean_ * value, MethodInfo * method)); DO_APP_FUNC(0x010C1720, void, StructWrapper_1_System_Byte___cctor, (MethodInfo * method)); DO_APP_FUNC(0x010C18A0, void, StructWrapper_1_System_Byte___ctor, (StructWrapper_1_System_Byte_ * __this, Pooling__Enum releasing, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE3B88, StructWrapper_1_System_Byte___ctor__MethodInfo); DO_APP_FUNC(0x010C12C0, void, StructWrapper_1_System_Byte___ctor_1, (StructWrapper_1_System_Byte_ * __this, Pooling__Enum releasing, Type * tType, WrappedType__Enum wType, MethodInfo * method)); DO_APP_FUNC(0x010C13C0, void, StructWrapper_1_System_Byte__Dispose, (StructWrapper_1_System_Byte_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010C19A0, String *, StructWrapper_1_System_Byte__ToString, (StructWrapper_1_System_Byte_ * __this, MethodInfo * method)); @@ -191863,75 +210482,117 @@ DO_APP_FUNC(0x010C3090, String *, StructWrapper_1_System_Single__ToString_1, (St DO_APP_FUNC(0x010C2F80, float, StructWrapper_1_System_Single__Unwrap, (StructWrapper_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, StructWrapperPool_1_System_Single_ *, StructWrapper_1_System_Single__get_ReturnPool, (StructWrapper_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCDE0, void, StructWrapper_1_System_Single__set_ReturnPool, (StructWrapper_1_System_Single_ * __this, StructWrapperPool_1_System_Single_ * value, MethodInfo * method)); -DO_APP_FUNC(0x010C3270, StyleDataRef_1_InheritedData_, StyleDataRef_1_InheritedData__Acquire, (StyleDataRef_1_InheritedData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C33E0, void, StyleDataRef_1_InheritedData__CopyFrom, (StyleDataRef_1_InheritedData___Boxed * __this, StyleDataRef_1_InheritedData_ other, MethodInfo * method)); +DO_APP_FUNC(0x010C3270, StyleDataRef_1_InheritedData_, StyleDataRef_1_InheritedData__Acquire, (StyleDataRef_1_InheritedData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE48A0, StyleDataRef_1_InheritedData__Acquire__MethodInfo); +DO_APP_FUNC(0x010C33E0, void, StyleDataRef_1_InheritedData__CopyFrom, (StyleDataRef_1_InheritedData_ * __this, StyleDataRef_1_InheritedData_ other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4888, StyleDataRef_1_InheritedData__CopyFrom__MethodInfo); DO_APP_FUNC(0x010C3770, StyleDataRef_1_InheritedData_, StyleDataRef_1_InheritedData__Create, (MethodInfo * method)); -DO_APP_FUNC(0x010C39A0, bool, StyleDataRef_1_InheritedData__Equals, (StyleDataRef_1_InheritedData___Boxed * __this, StyleDataRef_1_InheritedData_ other, MethodInfo * method)); -DO_APP_FUNC(0x010C3A30, bool, StyleDataRef_1_InheritedData__Equals_1, (StyleDataRef_1_InheritedData___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x010C3880, int32_t, StyleDataRef_1_InheritedData__GetHashCode, (StyleDataRef_1_InheritedData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C35B0, InheritedData, StyleDataRef_1_InheritedData__Read, (StyleDataRef_1_InheritedData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C3300, void, StyleDataRef_1_InheritedData__Release, (StyleDataRef_1_InheritedData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C35D0, InheritedData, StyleDataRef_1_InheritedData__Write, (StyleDataRef_1_InheritedData___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE47F8, StyleDataRef_1_InheritedData__Create__MethodInfo); +DO_APP_FUNC(0x010C39A0, bool, StyleDataRef_1_InheritedData__Equals, (StyleDataRef_1_InheritedData_ * __this, StyleDataRef_1_InheritedData_ other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE46F8, StyleDataRef_1_InheritedData__Equals__MethodInfo); +DO_APP_FUNC(0x010C3A30, bool, StyleDataRef_1_InheritedData__Equals_1, (StyleDataRef_1_InheritedData_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x010C3880, int32_t, StyleDataRef_1_InheritedData__GetHashCode, (StyleDataRef_1_InheritedData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDE200, StyleDataRef_1_InheritedData__GetHashCode__MethodInfo); +DO_APP_FUNC(0x010C35B0, InheritedData *, StyleDataRef_1_InheritedData__Read, (StyleDataRef_1_InheritedData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9A38, StyleDataRef_1_InheritedData__Read__MethodInfo); +DO_APP_FUNC(0x010C3300, void, StyleDataRef_1_InheritedData__Release, (StyleDataRef_1_InheritedData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4860, StyleDataRef_1_InheritedData__Release__MethodInfo); +DO_APP_FUNC(0x010C35D0, InheritedData *, StyleDataRef_1_InheritedData__Write, (StyleDataRef_1_InheritedData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9A70, StyleDataRef_1_InheritedData__Write__MethodInfo); DO_APP_FUNC(0x010C38D0, bool, StyleDataRef_1_InheritedData__op_Equality, (StyleDataRef_1_InheritedData_ lhs, StyleDataRef_1_InheritedData_ rhs, MethodInfo * method)); -DO_APP_FUNC(0x010C3270, StyleDataRef_1_LayoutData_, StyleDataRef_1_LayoutData__Acquire, (StyleDataRef_1_LayoutData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C3B30, void, StyleDataRef_1_LayoutData__CopyFrom, (StyleDataRef_1_LayoutData___Boxed * __this, StyleDataRef_1_LayoutData_ other, MethodInfo * method)); +DO_APP_FUNC(0x010C3270, StyleDataRef_1_LayoutData_, StyleDataRef_1_LayoutData__Acquire, (StyleDataRef_1_LayoutData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4800, StyleDataRef_1_LayoutData__Acquire__MethodInfo); +DO_APP_FUNC(0x010C3B30, void, StyleDataRef_1_LayoutData__CopyFrom, (StyleDataRef_1_LayoutData_ * __this, StyleDataRef_1_LayoutData_ other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4890, StyleDataRef_1_LayoutData__CopyFrom__MethodInfo); DO_APP_FUNC(0x010C3770, StyleDataRef_1_LayoutData_, StyleDataRef_1_LayoutData__Create, (MethodInfo * method)); -DO_APP_FUNC(0x010C39A0, bool, StyleDataRef_1_LayoutData__Equals, (StyleDataRef_1_LayoutData___Boxed * __this, StyleDataRef_1_LayoutData_ other, MethodInfo * method)); -DO_APP_FUNC(0x010C3A30, bool, StyleDataRef_1_LayoutData__Equals_1, (StyleDataRef_1_LayoutData___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x010C3E00, int32_t, StyleDataRef_1_LayoutData__GetHashCode, (StyleDataRef_1_LayoutData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C35B0, LayoutData, StyleDataRef_1_LayoutData__Read, (StyleDataRef_1_LayoutData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C3300, void, StyleDataRef_1_LayoutData__Release, (StyleDataRef_1_LayoutData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C35D0, LayoutData, StyleDataRef_1_LayoutData__Write, (StyleDataRef_1_LayoutData___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4830, StyleDataRef_1_LayoutData__Create__MethodInfo); +DO_APP_FUNC(0x010C39A0, bool, StyleDataRef_1_LayoutData__Equals, (StyleDataRef_1_LayoutData_ * __this, StyleDataRef_1_LayoutData_ other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE46F0, StyleDataRef_1_LayoutData__Equals__MethodInfo); +DO_APP_FUNC(0x010C3A30, bool, StyleDataRef_1_LayoutData__Equals_1, (StyleDataRef_1_LayoutData_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x010C3E00, int32_t, StyleDataRef_1_LayoutData__GetHashCode, (StyleDataRef_1_LayoutData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C35B0, LayoutData *, StyleDataRef_1_LayoutData__Read, (StyleDataRef_1_LayoutData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9AA8, StyleDataRef_1_LayoutData__Read__MethodInfo); +DO_APP_FUNC(0x010C3300, void, StyleDataRef_1_LayoutData__Release, (StyleDataRef_1_LayoutData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4840, StyleDataRef_1_LayoutData__Release__MethodInfo); +DO_APP_FUNC(0x010C35D0, LayoutData *, StyleDataRef_1_LayoutData__Write, (StyleDataRef_1_LayoutData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9AA0, StyleDataRef_1_LayoutData__Write__MethodInfo); DO_APP_FUNC(0x010C3E50, bool, StyleDataRef_1_LayoutData__op_Equality, (StyleDataRef_1_LayoutData_ lhs, StyleDataRef_1_LayoutData_ rhs, MethodInfo * method)); -DO_APP_FUNC(0x010C3270, StyleDataRef_1_RareData_, StyleDataRef_1_RareData__Acquire, (StyleDataRef_1_RareData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C3F40, void, StyleDataRef_1_RareData__CopyFrom, (StyleDataRef_1_RareData___Boxed * __this, StyleDataRef_1_RareData_ other, MethodInfo * method)); +DO_APP_FUNC(0x010C3270, StyleDataRef_1_RareData_, StyleDataRef_1_RareData__Acquire, (StyleDataRef_1_RareData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE48A8, StyleDataRef_1_RareData__Acquire__MethodInfo); +DO_APP_FUNC(0x010C3F40, void, StyleDataRef_1_RareData__CopyFrom, (StyleDataRef_1_RareData_ * __this, StyleDataRef_1_RareData_ other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4898, StyleDataRef_1_RareData__CopyFrom__MethodInfo); DO_APP_FUNC(0x010C3770, StyleDataRef_1_RareData_, StyleDataRef_1_RareData__Create, (MethodInfo * method)); -DO_APP_FUNC(0x010C39A0, bool, StyleDataRef_1_RareData__Equals, (StyleDataRef_1_RareData___Boxed * __this, StyleDataRef_1_RareData_ other, MethodInfo * method)); -DO_APP_FUNC(0x010C3A30, bool, StyleDataRef_1_RareData__Equals_1, (StyleDataRef_1_RareData___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x010C4110, int32_t, StyleDataRef_1_RareData__GetHashCode, (StyleDataRef_1_RareData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C35B0, RareData, StyleDataRef_1_RareData__Read, (StyleDataRef_1_RareData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C3300, void, StyleDataRef_1_RareData__Release, (StyleDataRef_1_RareData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C35D0, RareData, StyleDataRef_1_RareData__Write, (StyleDataRef_1_RareData___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4828, StyleDataRef_1_RareData__Create__MethodInfo); +DO_APP_FUNC(0x010C39A0, bool, StyleDataRef_1_RareData__Equals, (StyleDataRef_1_RareData_ * __this, StyleDataRef_1_RareData_ other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4708, StyleDataRef_1_RareData__Equals__MethodInfo); +DO_APP_FUNC(0x010C3A30, bool, StyleDataRef_1_RareData__Equals_1, (StyleDataRef_1_RareData_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x010C4110, int32_t, StyleDataRef_1_RareData__GetHashCode, (StyleDataRef_1_RareData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C35B0, RareData *, StyleDataRef_1_RareData__Read, (StyleDataRef_1_RareData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9A30, StyleDataRef_1_RareData__Read__MethodInfo); +DO_APP_FUNC(0x010C3300, void, StyleDataRef_1_RareData__Release, (StyleDataRef_1_RareData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4868, StyleDataRef_1_RareData__Release__MethodInfo); +DO_APP_FUNC(0x010C35D0, RareData *, StyleDataRef_1_RareData__Write, (StyleDataRef_1_RareData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9A88, StyleDataRef_1_RareData__Write__MethodInfo); DO_APP_FUNC(0x010C4160, bool, StyleDataRef_1_RareData__op_Equality, (StyleDataRef_1_RareData_ lhs, StyleDataRef_1_RareData_ rhs, MethodInfo * method)); -DO_APP_FUNC(0x010C3270, StyleDataRef_1_TransformData_, StyleDataRef_1_TransformData__Acquire, (StyleDataRef_1_TransformData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C4280, void, StyleDataRef_1_TransformData__CopyFrom, (StyleDataRef_1_TransformData___Boxed * __this, StyleDataRef_1_TransformData_ other, MethodInfo * method)); +DO_APP_FUNC(0x010C3270, StyleDataRef_1_TransformData_, StyleDataRef_1_TransformData__Acquire, (StyleDataRef_1_TransformData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4810, StyleDataRef_1_TransformData__Acquire__MethodInfo); +DO_APP_FUNC(0x010C4280, void, StyleDataRef_1_TransformData__CopyFrom, (StyleDataRef_1_TransformData_ * __this, StyleDataRef_1_TransformData_ other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4880, StyleDataRef_1_TransformData__CopyFrom__MethodInfo); DO_APP_FUNC(0x010C3770, StyleDataRef_1_TransformData_, StyleDataRef_1_TransformData__Create, (MethodInfo * method)); -DO_APP_FUNC(0x010C39A0, bool, StyleDataRef_1_TransformData__Equals, (StyleDataRef_1_TransformData___Boxed * __this, StyleDataRef_1_TransformData_ other, MethodInfo * method)); -DO_APP_FUNC(0x010C3A30, bool, StyleDataRef_1_TransformData__Equals_1, (StyleDataRef_1_TransformData___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x010C4470, int32_t, StyleDataRef_1_TransformData__GetHashCode, (StyleDataRef_1_TransformData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C35B0, TransformData, StyleDataRef_1_TransformData__Read, (StyleDataRef_1_TransformData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C3300, void, StyleDataRef_1_TransformData__Release, (StyleDataRef_1_TransformData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C35D0, TransformData, StyleDataRef_1_TransformData__Write, (StyleDataRef_1_TransformData___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE47F0, StyleDataRef_1_TransformData__Create__MethodInfo); +DO_APP_FUNC(0x010C39A0, bool, StyleDataRef_1_TransformData__Equals, (StyleDataRef_1_TransformData_ * __this, StyleDataRef_1_TransformData_ other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4710, StyleDataRef_1_TransformData__Equals__MethodInfo); +DO_APP_FUNC(0x010C3A30, bool, StyleDataRef_1_TransformData__Equals_1, (StyleDataRef_1_TransformData_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x010C4470, int32_t, StyleDataRef_1_TransformData__GetHashCode, (StyleDataRef_1_TransformData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C35B0, TransformData *, StyleDataRef_1_TransformData__Read, (StyleDataRef_1_TransformData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9A28, StyleDataRef_1_TransformData__Read__MethodInfo); +DO_APP_FUNC(0x010C3300, void, StyleDataRef_1_TransformData__Release, (StyleDataRef_1_TransformData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4848, StyleDataRef_1_TransformData__Release__MethodInfo); +DO_APP_FUNC(0x010C35D0, TransformData *, StyleDataRef_1_TransformData__Write, (StyleDataRef_1_TransformData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9A60, StyleDataRef_1_TransformData__Write__MethodInfo); DO_APP_FUNC(0x010C44C0, bool, StyleDataRef_1_TransformData__op_Equality, (StyleDataRef_1_TransformData_ lhs, StyleDataRef_1_TransformData_ rhs, MethodInfo * method)); -DO_APP_FUNC(0x010C3270, StyleDataRef_1_TransitionData_, StyleDataRef_1_TransitionData__Acquire, (StyleDataRef_1_TransitionData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C4560, void, StyleDataRef_1_TransitionData__CopyFrom, (StyleDataRef_1_TransitionData___Boxed * __this, StyleDataRef_1_TransitionData_ other, MethodInfo * method)); +DO_APP_FUNC(0x010C3270, StyleDataRef_1_TransitionData_, StyleDataRef_1_TransitionData__Acquire, (StyleDataRef_1_TransitionData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4818, StyleDataRef_1_TransitionData__Acquire__MethodInfo); +DO_APP_FUNC(0x010C4560, void, StyleDataRef_1_TransitionData__CopyFrom, (StyleDataRef_1_TransitionData_ * __this, StyleDataRef_1_TransitionData_ other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4878, StyleDataRef_1_TransitionData__CopyFrom__MethodInfo); DO_APP_FUNC(0x010C3770, StyleDataRef_1_TransitionData_, StyleDataRef_1_TransitionData__Create, (MethodInfo * method)); -DO_APP_FUNC(0x010C39A0, bool, StyleDataRef_1_TransitionData__Equals, (StyleDataRef_1_TransitionData___Boxed * __this, StyleDataRef_1_TransitionData_ other, MethodInfo * method)); -DO_APP_FUNC(0x010C3A30, bool, StyleDataRef_1_TransitionData__Equals_1, (StyleDataRef_1_TransitionData___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x010C4730, int32_t, StyleDataRef_1_TransitionData__GetHashCode, (StyleDataRef_1_TransitionData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C35B0, TransitionData, StyleDataRef_1_TransitionData__Read, (StyleDataRef_1_TransitionData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C3300, void, StyleDataRef_1_TransitionData__Release, (StyleDataRef_1_TransitionData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C35D0, TransitionData, StyleDataRef_1_TransitionData__Write, (StyleDataRef_1_TransitionData___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4838, StyleDataRef_1_TransitionData__Create__MethodInfo); +DO_APP_FUNC(0x010C39A0, bool, StyleDataRef_1_TransitionData__Equals, (StyleDataRef_1_TransitionData_ * __this, StyleDataRef_1_TransitionData_ other, MethodInfo * method)); +DO_APP_FUNC(0x010C3A30, bool, StyleDataRef_1_TransitionData__Equals_1, (StyleDataRef_1_TransitionData_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x010C4730, int32_t, StyleDataRef_1_TransitionData__GetHashCode, (StyleDataRef_1_TransitionData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C35B0, TransitionData *, StyleDataRef_1_TransitionData__Read, (StyleDataRef_1_TransitionData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9A20, StyleDataRef_1_TransitionData__Read__MethodInfo); +DO_APP_FUNC(0x010C3300, void, StyleDataRef_1_TransitionData__Release, (StyleDataRef_1_TransitionData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4858, StyleDataRef_1_TransitionData__Release__MethodInfo); +DO_APP_FUNC(0x010C35D0, TransitionData *, StyleDataRef_1_TransitionData__Write, (StyleDataRef_1_TransitionData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9A78, StyleDataRef_1_TransitionData__Write__MethodInfo); DO_APP_FUNC(0x010C4780, bool, StyleDataRef_1_TransitionData__op_Equality, (StyleDataRef_1_TransitionData_ lhs, StyleDataRef_1_TransitionData_ rhs, MethodInfo * method)); -DO_APP_FUNC(0x010C3270, StyleDataRef_1_VisualData_, StyleDataRef_1_VisualData__Acquire, (StyleDataRef_1_VisualData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C4830, void, StyleDataRef_1_VisualData__CopyFrom, (StyleDataRef_1_VisualData___Boxed * __this, StyleDataRef_1_VisualData_ other, MethodInfo * method)); +DO_APP_FUNC(0x010C3270, StyleDataRef_1_VisualData_, StyleDataRef_1_VisualData__Acquire, (StyleDataRef_1_VisualData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4808, StyleDataRef_1_VisualData__Acquire__MethodInfo); +DO_APP_FUNC(0x010C4830, void, StyleDataRef_1_VisualData__CopyFrom, (StyleDataRef_1_VisualData_ * __this, StyleDataRef_1_VisualData_ other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4870, StyleDataRef_1_VisualData__CopyFrom__MethodInfo); DO_APP_FUNC(0x010C3770, StyleDataRef_1_VisualData_, StyleDataRef_1_VisualData__Create, (MethodInfo * method)); -DO_APP_FUNC(0x010C39A0, bool, StyleDataRef_1_VisualData__Equals, (StyleDataRef_1_VisualData___Boxed * __this, StyleDataRef_1_VisualData_ other, MethodInfo * method)); -DO_APP_FUNC(0x010C3A30, bool, StyleDataRef_1_VisualData__Equals_1, (StyleDataRef_1_VisualData___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x010C4A00, int32_t, StyleDataRef_1_VisualData__GetHashCode, (StyleDataRef_1_VisualData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C35B0, VisualData, StyleDataRef_1_VisualData__Read, (StyleDataRef_1_VisualData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C3300, void, StyleDataRef_1_VisualData__Release, (StyleDataRef_1_VisualData___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C35D0, VisualData, StyleDataRef_1_VisualData__Write, (StyleDataRef_1_VisualData___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4820, StyleDataRef_1_VisualData__Create__MethodInfo); +DO_APP_FUNC(0x010C39A0, bool, StyleDataRef_1_VisualData__Equals, (StyleDataRef_1_VisualData_ * __this, StyleDataRef_1_VisualData_ other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4700, StyleDataRef_1_VisualData__Equals__MethodInfo); +DO_APP_FUNC(0x010C3A30, bool, StyleDataRef_1_VisualData__Equals_1, (StyleDataRef_1_VisualData_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x010C4A00, int32_t, StyleDataRef_1_VisualData__GetHashCode, (StyleDataRef_1_VisualData_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C35B0, VisualData *, StyleDataRef_1_VisualData__Read, (StyleDataRef_1_VisualData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9A40, StyleDataRef_1_VisualData__Read__MethodInfo); +DO_APP_FUNC(0x010C3300, void, StyleDataRef_1_VisualData__Release, (StyleDataRef_1_VisualData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4850, StyleDataRef_1_VisualData__Release__MethodInfo); +DO_APP_FUNC(0x010C35D0, VisualData *, StyleDataRef_1_VisualData__Write, (StyleDataRef_1_VisualData_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9A68, StyleDataRef_1_VisualData__Write__MethodInfo); DO_APP_FUNC(0x010C4A50, bool, StyleDataRef_1_VisualData__op_Equality, (StyleDataRef_1_VisualData_ lhs, StyleDataRef_1_VisualData_ rhs, MethodInfo * method)); -DO_APP_FUNC(0x010C4B50, void, StyleEnum_1_System_Int32Enum___ctor, (StyleEnum_1_System_Int32Enum___Boxed * __this, Int32Enum__Enum v, MethodInfo * method)); -DO_APP_FUNC(0x010C4B90, void, StyleEnum_1_System_Int32Enum___ctor_1, (StyleEnum_1_System_Int32Enum___Boxed * __this, StyleKeyword__Enum keyword, MethodInfo * method)); -DO_APP_FUNC(0x00A9A2B0, void, StyleEnum_1_System_Int32Enum___ctor_2, (StyleEnum_1_System_Int32Enum___Boxed * __this, Int32Enum__Enum v, StyleKeyword__Enum keyword, MethodInfo * method)); -DO_APP_FUNC(0x010C4DC0, bool, StyleEnum_1_System_Int32Enum__Equals, (StyleEnum_1_System_Int32Enum___Boxed * __this, StyleEnum_1_System_Int32Enum_ other, MethodInfo * method)); -DO_APP_FUNC(0x010C4E50, bool, StyleEnum_1_System_Int32Enum__Equals_1, (StyleEnum_1_System_Int32Enum___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x010C4F50, int32_t, StyleEnum_1_System_Int32Enum__GetHashCode, (StyleEnum_1_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C4FE0, String *, StyleEnum_1_System_Int32Enum__ToString, (StyleEnum_1_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C4B40, StyleKeyword__Enum, StyleEnum_1_System_Int32Enum__get_keyword, (StyleEnum_1_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C4B30, Int32Enum__Enum, StyleEnum_1_System_Int32Enum__get_value, (StyleEnum_1_System_Int32Enum___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C4B50, void, StyleEnum_1_System_Int32Enum___ctor, (StyleEnum_1_System_Int32Enum_ * __this, Int32Enum__Enum v, MethodInfo * method)); +DO_APP_FUNC(0x010C4B90, void, StyleEnum_1_System_Int32Enum___ctor_1, (StyleEnum_1_System_Int32Enum_ * __this, StyleKeyword__Enum keyword, MethodInfo * method)); +DO_APP_FUNC(0x00A9A2B0, void, StyleEnum_1_System_Int32Enum___ctor_2, (StyleEnum_1_System_Int32Enum_ * __this, Int32Enum__Enum v, StyleKeyword__Enum keyword, MethodInfo * method)); +DO_APP_FUNC(0x010C4DC0, bool, StyleEnum_1_System_Int32Enum__Equals, (StyleEnum_1_System_Int32Enum_ * __this, StyleEnum_1_System_Int32Enum_ other, MethodInfo * method)); +DO_APP_FUNC(0x010C4E50, bool, StyleEnum_1_System_Int32Enum__Equals_1, (StyleEnum_1_System_Int32Enum_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x010C4F50, int32_t, StyleEnum_1_System_Int32Enum__GetHashCode, (StyleEnum_1_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C4FE0, String *, StyleEnum_1_System_Int32Enum__ToString, (StyleEnum_1_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C4B40, StyleKeyword__Enum, StyleEnum_1_System_Int32Enum__get_keyword, (StyleEnum_1_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C4B30, Int32Enum__Enum, StyleEnum_1_System_Int32Enum__get_value, (StyleEnum_1_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010C4BD0, bool, StyleEnum_1_System_Int32Enum__op_Equality, (StyleEnum_1_System_Int32Enum_ lhs, StyleEnum_1_System_Int32Enum_ rhs, MethodInfo * method)); DO_APP_FUNC(0x010C4D60, StyleEnum_1_System_Int32Enum_, StyleEnum_1_System_Int32Enum__op_Implicit, (Int32Enum__Enum v, MethodInfo * method)); DO_APP_FUNC(0x010C4D00, StyleEnum_1_System_Int32Enum_, StyleEnum_1_System_Int32Enum__op_Implicit_1, (StyleKeyword__Enum keyword, MethodInfo * method)); @@ -191941,6 +210602,7 @@ DO_APP_FUNC(0x010C50D0, Object *, SubsystemDescriptorWithProvider_2_System_Objec DO_APP_FUNC(0x010C50A0, ISubsystem *, SubsystemDescriptorWithProvider_2_System_Object_System_Object__CreateImpl, (SubsystemDescriptorWithProvider_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010C56C0, Object *, SubsystemDescriptorWithProvider_2_System_Object_System_Object__CreateProvider, (SubsystemDescriptorWithProvider_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010C5390, void, SubsystemDescriptorWithProvider_2_System_Object_System_Object__ThrowIfInvalid, (SubsystemDescriptorWithProvider_2_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9DE0, SubsystemDescriptorWithProvider_2_System_Object_System_Object__ThrowIfInvalid__MethodInfo); DO_APP_FUNC(0x010C5EA0, void, SubsystemLifecycleManager_3_System_Object_System_Object_System_Object___cctor, (MethodInfo * method)); DO_APP_FUNC(0x003AE000, void, SubsystemLifecycleManager_3_System_Object_System_Object_System_Object___ctor, (SubsystemLifecycleManager_3_System_Object_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010C5C40, void, SubsystemLifecycleManager_3_System_Object_System_Object_System_Object__EnsureSubsystemInstanceSet, (SubsystemLifecycleManager_3_System_Object_System_Object_System_Object_ * __this, MethodInfo * method)); @@ -191969,14 +210631,16 @@ DO_APP_FUNC(0x003BCDE0, void, SubsystemWithProvider_3_System_Object_System_Objec DO_APP_FUNC(0x010C6B30, void, SynchronizedQueue_1_System_Object___ctor, (SynchronizedQueue_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010C6420, void, SynchronizedQueue_1_System_Object__Clear, (SynchronizedQueue_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010C6730, void, SynchronizedQueue_1_System_Object__Enqueue, (SynchronizedQueue_1_System_Object_ * __this, Object * item, MethodInfo * method)); -DO_APP_FUNC(0x010C68C0, bool, SynchronizedQueue_1_System_Object__TryDequeue, (SynchronizedQueue_1_System_Object_ * __this, Object * item, MethodInfo * method)); +DO_APP_FUNC(0x010C68C0, bool, SynchronizedQueue_1_System_Object__TryDequeue, (SynchronizedQueue_1_System_Object_ * __this, Object * * item, MethodInfo * method)); DO_APP_FUNC(0x010C65A0, int32_t, SynchronizedQueue_1_System_Object__get_Count, (SynchronizedQueue_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TempListPool_TList_1_Rewired_ControllerTemplateElementTarget___ctor, (TempListPool_TList_1_Rewired_ControllerTemplateElementTarget_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010C6C00, TempListPool_TList_1_Rewired_ControllerTemplateElementTarget_ *, TempListPool_TList_1_Rewired_ControllerTemplateElementTarget__Create, (MethodInfo * method)); DO_APP_FUNC(0x010C6D00, void, TempListPool_TList_1_Rewired_ControllerTemplateElementTarget__Dispose, (TempListPool_TList_1_Rewired_ControllerTemplateElementTarget_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCC60, void, TempListPool_TList_1_Rewired_ControllerTemplateElementTarget__Rewired_Utils_TempListPool_ITListSetter_T__SetList, (TempListPool_TList_1_Rewired_ControllerTemplateElementTarget_ * __this, List_1_Rewired_ControllerTemplateElementTarget_ * param_0000bfd5, MethodInfo * method)); DO_APP_FUNC(0x010C6CC0, List_1_Rewired_ControllerTemplateElementTarget_ *, TempListPool_TList_1_Rewired_ControllerTemplateElementTarget__get_list, (TempListPool_TList_1_Rewired_ControllerTemplateElementTarget_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD210, TempListPool_TList_1_Rewired_ControllerTemplateElementTarget__get_list__MethodInfo); DO_APP_FUNC(0x010C6DE0, void, TempListPool_TList_1_Rewired_ControllerTemplateElementTarget__kQyKiWhZWXIXDhhJoYnSaJojvYWB, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9DD0, TempListPool_TList_1_Rewired_ControllerTemplateElementTarget__kQyKiWhZWXIXDhhJoYnSaJojvYWB__MethodInfo); DO_APP_FUNC(0x010C6E40, List_1_Rewired_ControllerTemplateElementTarget_ *, TempListPool_TList_1_Rewired_ControllerTemplateElementTarget__op_Implicit, (TempListPool_TList_1_Rewired_ControllerTemplateElementTarget_ * obj, MethodInfo * method)); DO_APP_FUNC(0x010C6D30, void, TempListPool_TList_1_Rewired_ControllerTemplateElementTarget__pKIANUGrvBNRltFXCoehFBlmVRUyA, (TempListPool_TList_1_Rewired_ControllerTemplateElementTarget_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TempListPool_TList_1_System_Int32Enum___ctor, (TempListPool_TList_1_System_Int32Enum_ * __this, MethodInfo * method)); @@ -191985,6 +210649,7 @@ DO_APP_FUNC(0x010C6D00, void, TempListPool_TList_1_System_Int32Enum__Dispose, (T DO_APP_FUNC(0x003BCC60, void, TempListPool_TList_1_System_Int32Enum__Rewired_Utils_TempListPool_ITListSetter_T__SetList, (TempListPool_TList_1_System_Int32Enum_ * __this, List_1_System_Int32Enum_ * param_0000bfd5, MethodInfo * method)); DO_APP_FUNC(0x010C6CC0, List_1_System_Int32Enum_ *, TempListPool_TList_1_System_Int32Enum__get_list, (TempListPool_TList_1_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010C6EC0, void, TempListPool_TList_1_System_Int32Enum__kQyKiWhZWXIXDhhJoYnSaJojvYWB, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9D70, TempListPool_TList_1_System_Int32Enum__kQyKiWhZWXIXDhhJoYnSaJojvYWB__MethodInfo); DO_APP_FUNC(0x010C6E40, List_1_System_Int32Enum_ *, TempListPool_TList_1_System_Int32Enum__op_Implicit, (TempListPool_TList_1_System_Int32Enum_ * obj, MethodInfo * method)); DO_APP_FUNC(0x010C6D30, void, TempListPool_TList_1_System_Int32Enum__pKIANUGrvBNRltFXCoehFBlmVRUyA, (TempListPool_TList_1_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TempListPool_TList_1_System_Object___ctor, (TempListPool_TList_1_System_Object_ * __this, MethodInfo * method)); @@ -191993,6 +210658,7 @@ DO_APP_FUNC(0x010C6D00, void, TempListPool_TList_1_System_Object__Dispose, (Temp DO_APP_FUNC(0x003BCC60, void, TempListPool_TList_1_System_Object__Rewired_Utils_TempListPool_ITListSetter_T__SetList, (TempListPool_TList_1_System_Object_ * __this, List_1_System_Object_ * param_0000bfd5, MethodInfo * method)); DO_APP_FUNC(0x010C6CC0, List_1_System_Object_ *, TempListPool_TList_1_System_Object__get_list, (TempListPool_TList_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010C6F20, void, TempListPool_TList_1_System_Object__kQyKiWhZWXIXDhhJoYnSaJojvYWB, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9D80, TempListPool_TList_1_System_Object__kQyKiWhZWXIXDhhJoYnSaJojvYWB__MethodInfo); DO_APP_FUNC(0x010C6E40, List_1_System_Object_ *, TempListPool_TList_1_System_Object__op_Implicit, (TempListPool_TList_1_System_Object_ * obj, MethodInfo * method)); DO_APP_FUNC(0x010C6D30, void, TempListPool_TList_1_System_Object__pKIANUGrvBNRltFXCoehFBlmVRUyA, (TempListPool_TList_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010C7190, void, TMP_ListPool_1_System_Object___cctor, (MethodInfo * method)); @@ -192005,177 +210671,177 @@ DO_APP_FUNC(0x010C7450, int32_t, TMP_ObjectPool_1_System_Object__get_countActive DO_APP_FUNC(0x00421680, int32_t, TMP_ObjectPool_1_System_Object__get_countAll, (TMP_ObjectPool_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010C74D0, int32_t, TMP_ObjectPool_1_System_Object__get_countInactive, (TMP_ObjectPool_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00421690, void, TMP_ObjectPool_1_System_Object__set_countAll, (TMP_ObjectPool_1_System_Object_ * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x010C7910, void, TMP_TextProcessingStack_1_UnityEngine_Color32___ctor, (TMP_TextProcessingStack_1_UnityEngine_Color32___Boxed * __this, Color32__Array * stack, MethodInfo * method)); +DO_APP_FUNC(0x010C7910, void, TMP_TextProcessingStack_1_UnityEngine_Color32___ctor, (TMP_TextProcessingStack_1_UnityEngine_Color32_ * __this, Color32__Array * stack, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA51A8, TMP_TextProcessingStack_1_UnityEngine_Color32___ctor__MethodInfo); -DO_APP_FUNC(0x010C7990, void, TMP_TextProcessingStack_1_UnityEngine_Color32___ctor_1, (TMP_TextProcessingStack_1_UnityEngine_Color32___Boxed * __this, int32_t capacity, MethodInfo * method)); -DO_APP_FUNC(0x010C7A40, void, TMP_TextProcessingStack_1_UnityEngine_Color32___ctor_2, (TMP_TextProcessingStack_1_UnityEngine_Color32___Boxed * __this, int32_t capacity, int32_t rolloverSize, MethodInfo * method)); -DO_APP_FUNC(0x010C7D90, void, TMP_TextProcessingStack_1_UnityEngine_Color32__Add, (TMP_TextProcessingStack_1_UnityEngine_Color32___Boxed * __this, Color32 item, MethodInfo * method)); +DO_APP_FUNC(0x010C7990, void, TMP_TextProcessingStack_1_UnityEngine_Color32___ctor_1, (TMP_TextProcessingStack_1_UnityEngine_Color32_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC(0x010C7A40, void, TMP_TextProcessingStack_1_UnityEngine_Color32___ctor_2, (TMP_TextProcessingStack_1_UnityEngine_Color32_ * __this, int32_t capacity, int32_t rolloverSize, MethodInfo * method)); +DO_APP_FUNC(0x010C7D90, void, TMP_TextProcessingStack_1_UnityEngine_Color32__Add, (TMP_TextProcessingStack_1_UnityEngine_Color32_ * __this, Color32 item, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA5268, TMP_TextProcessingStack_1_UnityEngine_Color32__Add__MethodInfo); -DO_APP_FUNC(0x010C7CA0, void, TMP_TextProcessingStack_1_UnityEngine_Color32__Clear, (TMP_TextProcessingStack_1_UnityEngine_Color32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C7B00, Color32, TMP_TextProcessingStack_1_UnityEngine_Color32__CurrentItem, (TMP_TextProcessingStack_1_UnityEngine_Color32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C7FD0, Color32, TMP_TextProcessingStack_1_UnityEngine_Color32__Peek, (TMP_TextProcessingStack_1_UnityEngine_Color32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C7F30, Color32, TMP_TextProcessingStack_1_UnityEngine_Color32__Pop, (TMP_TextProcessingStack_1_UnityEngine_Color32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C8010, Color32, TMP_TextProcessingStack_1_UnityEngine_Color32__PreviousItem, (TMP_TextProcessingStack_1_UnityEngine_Color32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C7E30, void, TMP_TextProcessingStack_1_UnityEngine_Color32__Push, (TMP_TextProcessingStack_1_UnityEngine_Color32___Boxed * __this, Color32 item, MethodInfo * method)); -DO_APP_FUNC(0x010C7DD0, Color32, TMP_TextProcessingStack_1_UnityEngine_Color32__Remove, (TMP_TextProcessingStack_1_UnityEngine_Color32___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C7CA0, void, TMP_TextProcessingStack_1_UnityEngine_Color32__Clear, (TMP_TextProcessingStack_1_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C7B00, Color32, TMP_TextProcessingStack_1_UnityEngine_Color32__CurrentItem, (TMP_TextProcessingStack_1_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C7FD0, Color32, TMP_TextProcessingStack_1_UnityEngine_Color32__Peek, (TMP_TextProcessingStack_1_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C7F30, Color32, TMP_TextProcessingStack_1_UnityEngine_Color32__Pop, (TMP_TextProcessingStack_1_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C8010, Color32, TMP_TextProcessingStack_1_UnityEngine_Color32__PreviousItem, (TMP_TextProcessingStack_1_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C7E30, void, TMP_TextProcessingStack_1_UnityEngine_Color32__Push, (TMP_TextProcessingStack_1_UnityEngine_Color32_ * __this, Color32 item, MethodInfo * method)); +DO_APP_FUNC(0x010C7DD0, Color32, TMP_TextProcessingStack_1_UnityEngine_Color32__Remove, (TMP_TextProcessingStack_1_UnityEngine_Color32_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA5238, TMP_TextProcessingStack_1_UnityEngine_Color32__Remove__MethodInfo); -DO_APP_FUNC(0x010C7CB0, void, TMP_TextProcessingStack_1_UnityEngine_Color32__SetDefault, (TMP_TextProcessingStack_1_UnityEngine_Color32___Boxed * __this, Color32 item, MethodInfo * method)); +DO_APP_FUNC(0x010C7CB0, void, TMP_TextProcessingStack_1_UnityEngine_Color32__SetDefault, (TMP_TextProcessingStack_1_UnityEngine_Color32_ * __this, Color32 item, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9EAD0, TMP_TextProcessingStack_1_UnityEngine_Color32__SetDefault__MethodInfo); DO_APP_FUNC(0x010C7B50, void, TMP_TextProcessingStack_1_UnityEngine_Color32__SetDefault_1, (TMP_TextProcessingStack_1_UnityEngine_Color32___Array * stack, Color32 item, MethodInfo * method)); -DO_APP_FUNC(0x003BC2E0, int32_t, TMP_TextProcessingStack_1_UnityEngine_Color32__get_Count, (TMP_TextProcessingStack_1_UnityEngine_Color32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C7B00, Color32, TMP_TextProcessingStack_1_UnityEngine_Color32__get_current, (TMP_TextProcessingStack_1_UnityEngine_Color32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD70, int32_t, TMP_TextProcessingStack_1_UnityEngine_Color32__get_rolloverSize, (TMP_TextProcessingStack_1_UnityEngine_Color32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD80, void, TMP_TextProcessingStack_1_UnityEngine_Color32__set_rolloverSize, (TMP_TextProcessingStack_1_UnityEngine_Color32___Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x010C8060, void, TMP_TextProcessingStack_1_HighlightState___ctor, (TMP_TextProcessingStack_1_HighlightState___Boxed * __this, HighlightState__Array * stack, MethodInfo * method)); +DO_APP_FUNC(0x003BC2E0, int32_t, TMP_TextProcessingStack_1_UnityEngine_Color32__get_Count, (TMP_TextProcessingStack_1_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C7B00, Color32, TMP_TextProcessingStack_1_UnityEngine_Color32__get_current, (TMP_TextProcessingStack_1_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD70, int32_t, TMP_TextProcessingStack_1_UnityEngine_Color32__get_rolloverSize, (TMP_TextProcessingStack_1_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD80, void, TMP_TextProcessingStack_1_UnityEngine_Color32__set_rolloverSize, (TMP_TextProcessingStack_1_UnityEngine_Color32_ * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x010C8060, void, TMP_TextProcessingStack_1_HighlightState___ctor, (TMP_TextProcessingStack_1_HighlightState_ * __this, HighlightState__Array * stack, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA5190, TMP_TextProcessingStack_1_HighlightState___ctor__MethodInfo); -DO_APP_FUNC(0x010C80F0, void, TMP_TextProcessingStack_1_HighlightState___ctor_1, (TMP_TextProcessingStack_1_HighlightState___Boxed * __this, int32_t capacity, MethodInfo * method)); -DO_APP_FUNC(0x010C81B0, void, TMP_TextProcessingStack_1_HighlightState___ctor_2, (TMP_TextProcessingStack_1_HighlightState___Boxed * __this, int32_t capacity, int32_t rolloverSize, MethodInfo * method)); -DO_APP_FUNC(0x010C8560, void, TMP_TextProcessingStack_1_HighlightState__Add, (TMP_TextProcessingStack_1_HighlightState___Boxed * __this, HighlightState item, MethodInfo * method)); -DO_APP_FUNC(0x010C8460, void, TMP_TextProcessingStack_1_HighlightState__Clear, (TMP_TextProcessingStack_1_HighlightState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C8280, HighlightState, TMP_TextProcessingStack_1_HighlightState__CurrentItem, (TMP_TextProcessingStack_1_HighlightState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C8810, HighlightState, TMP_TextProcessingStack_1_HighlightState__Peek, (TMP_TextProcessingStack_1_HighlightState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C8740, HighlightState, TMP_TextProcessingStack_1_HighlightState__Pop, (TMP_TextProcessingStack_1_HighlightState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C8870, HighlightState, TMP_TextProcessingStack_1_HighlightState__PreviousItem, (TMP_TextProcessingStack_1_HighlightState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C8630, void, TMP_TextProcessingStack_1_HighlightState__Push, (TMP_TextProcessingStack_1_HighlightState___Boxed * __this, HighlightState item, MethodInfo * method)); +DO_APP_FUNC(0x010C80F0, void, TMP_TextProcessingStack_1_HighlightState___ctor_1, (TMP_TextProcessingStack_1_HighlightState_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC(0x010C81B0, void, TMP_TextProcessingStack_1_HighlightState___ctor_2, (TMP_TextProcessingStack_1_HighlightState_ * __this, int32_t capacity, int32_t rolloverSize, MethodInfo * method)); +DO_APP_FUNC(0x010C8560, void, TMP_TextProcessingStack_1_HighlightState__Add, (TMP_TextProcessingStack_1_HighlightState_ * __this, HighlightState item, MethodInfo * method)); +DO_APP_FUNC(0x010C8460, void, TMP_TextProcessingStack_1_HighlightState__Clear, (TMP_TextProcessingStack_1_HighlightState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C8280, HighlightState, TMP_TextProcessingStack_1_HighlightState__CurrentItem, (TMP_TextProcessingStack_1_HighlightState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C8810, HighlightState, TMP_TextProcessingStack_1_HighlightState__Peek, (TMP_TextProcessingStack_1_HighlightState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C8740, HighlightState, TMP_TextProcessingStack_1_HighlightState__Pop, (TMP_TextProcessingStack_1_HighlightState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C8870, HighlightState, TMP_TextProcessingStack_1_HighlightState__PreviousItem, (TMP_TextProcessingStack_1_HighlightState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C8630, void, TMP_TextProcessingStack_1_HighlightState__Push, (TMP_TextProcessingStack_1_HighlightState_ * __this, HighlightState item, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA5218, TMP_TextProcessingStack_1_HighlightState__Push__MethodInfo); -DO_APP_FUNC(0x010C85B0, HighlightState, TMP_TextProcessingStack_1_HighlightState__Remove, (TMP_TextProcessingStack_1_HighlightState___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C85B0, HighlightState, TMP_TextProcessingStack_1_HighlightState__Remove, (TMP_TextProcessingStack_1_HighlightState_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA5290, TMP_TextProcessingStack_1_HighlightState__Remove__MethodInfo); -DO_APP_FUNC(0x010C8470, void, TMP_TextProcessingStack_1_HighlightState__SetDefault, (TMP_TextProcessingStack_1_HighlightState___Boxed * __this, HighlightState item, MethodInfo * method)); +DO_APP_FUNC(0x010C8470, void, TMP_TextProcessingStack_1_HighlightState__SetDefault, (TMP_TextProcessingStack_1_HighlightState_ * __this, HighlightState item, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9EAC0, TMP_TextProcessingStack_1_HighlightState__SetDefault__MethodInfo); DO_APP_FUNC(0x010C82F0, void, TMP_TextProcessingStack_1_HighlightState__SetDefault_1, (TMP_TextProcessingStack_1_HighlightState___Array * stack, HighlightState item, MethodInfo * method)); -DO_APP_FUNC(0x00421680, int32_t, TMP_TextProcessingStack_1_HighlightState__get_Count, (TMP_TextProcessingStack_1_HighlightState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C8280, HighlightState, TMP_TextProcessingStack_1_HighlightState__get_current, (TMP_TextProcessingStack_1_HighlightState___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00421680, int32_t, TMP_TextProcessingStack_1_HighlightState__get_Count, (TMP_TextProcessingStack_1_HighlightState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C8280, HighlightState, TMP_TextProcessingStack_1_HighlightState__get_current, (TMP_TextProcessingStack_1_HighlightState_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9EA88, TMP_TextProcessingStack_1_HighlightState__get_current__MethodInfo); -DO_APP_FUNC(0x003CD280, int32_t, TMP_TextProcessingStack_1_HighlightState__get_rolloverSize, (TMP_TextProcessingStack_1_HighlightState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x006D8950, void, TMP_TextProcessingStack_1_HighlightState__set_rolloverSize, (TMP_TextProcessingStack_1_HighlightState___Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x010C7910, void, TMP_TextProcessingStack_1_System_Int32___ctor, (TMP_TextProcessingStack_1_System_Int32___Boxed * __this, Int32__Array * stack, MethodInfo * method)); +DO_APP_FUNC(0x003CD280, int32_t, TMP_TextProcessingStack_1_HighlightState__get_rolloverSize, (TMP_TextProcessingStack_1_HighlightState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x006D8950, void, TMP_TextProcessingStack_1_HighlightState__set_rolloverSize, (TMP_TextProcessingStack_1_HighlightState_ * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x010C7910, void, TMP_TextProcessingStack_1_System_Int32___ctor, (TMP_TextProcessingStack_1_System_Int32_ * __this, Int32__Array * stack, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA5198, TMP_TextProcessingStack_1_System_Int32___ctor__MethodInfo); -DO_APP_FUNC(0x010C7990, void, TMP_TextProcessingStack_1_System_Int32___ctor_1, (TMP_TextProcessingStack_1_System_Int32___Boxed * __this, int32_t capacity, MethodInfo * method)); -DO_APP_FUNC(0x010C7A40, void, TMP_TextProcessingStack_1_System_Int32___ctor_2, (TMP_TextProcessingStack_1_System_Int32___Boxed * __this, int32_t capacity, int32_t rolloverSize, MethodInfo * method)); -DO_APP_FUNC(0x010C7D90, void, TMP_TextProcessingStack_1_System_Int32__Add, (TMP_TextProcessingStack_1_System_Int32___Boxed * __this, int32_t item, MethodInfo * method)); +DO_APP_FUNC(0x010C7990, void, TMP_TextProcessingStack_1_System_Int32___ctor_1, (TMP_TextProcessingStack_1_System_Int32_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC(0x010C7A40, void, TMP_TextProcessingStack_1_System_Int32___ctor_2, (TMP_TextProcessingStack_1_System_Int32_ * __this, int32_t capacity, int32_t rolloverSize, MethodInfo * method)); +DO_APP_FUNC(0x010C7D90, void, TMP_TextProcessingStack_1_System_Int32__Add, (TMP_TextProcessingStack_1_System_Int32_ * __this, int32_t item, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA5250, TMP_TextProcessingStack_1_System_Int32__Add__MethodInfo); -DO_APP_FUNC(0x010C7CA0, void, TMP_TextProcessingStack_1_System_Int32__Clear, (TMP_TextProcessingStack_1_System_Int32___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C7CA0, void, TMP_TextProcessingStack_1_System_Int32__Clear, (TMP_TextProcessingStack_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9EAA8, TMP_TextProcessingStack_1_System_Int32__Clear__MethodInfo); -DO_APP_FUNC(0x010C7B00, int32_t, TMP_TextProcessingStack_1_System_Int32__CurrentItem, (TMP_TextProcessingStack_1_System_Int32___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C7B00, int32_t, TMP_TextProcessingStack_1_System_Int32__CurrentItem, (TMP_TextProcessingStack_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA5280, TMP_TextProcessingStack_1_System_Int32__CurrentItem__MethodInfo); -DO_APP_FUNC(0x010C7FD0, int32_t, TMP_TextProcessingStack_1_System_Int32__Peek, (TMP_TextProcessingStack_1_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C8C10, int32_t, TMP_TextProcessingStack_1_System_Int32__Pop, (TMP_TextProcessingStack_1_System_Int32___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C7FD0, int32_t, TMP_TextProcessingStack_1_System_Int32__Peek, (TMP_TextProcessingStack_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C8C10, int32_t, TMP_TextProcessingStack_1_System_Int32__Pop, (TMP_TextProcessingStack_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA5380, TMP_TextProcessingStack_1_System_Int32__Pop__MethodInfo); -DO_APP_FUNC(0x010C8010, int32_t, TMP_TextProcessingStack_1_System_Int32__PreviousItem, (TMP_TextProcessingStack_1_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C8B10, void, TMP_TextProcessingStack_1_System_Int32__Push, (TMP_TextProcessingStack_1_System_Int32___Boxed * __this, int32_t item, MethodInfo * method)); +DO_APP_FUNC(0x010C8010, int32_t, TMP_TextProcessingStack_1_System_Int32__PreviousItem, (TMP_TextProcessingStack_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C8B10, void, TMP_TextProcessingStack_1_System_Int32__Push, (TMP_TextProcessingStack_1_System_Int32_ * __this, int32_t item, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA5378, TMP_TextProcessingStack_1_System_Int32__Push__MethodInfo); -DO_APP_FUNC(0x010C7DD0, int32_t, TMP_TextProcessingStack_1_System_Int32__Remove, (TMP_TextProcessingStack_1_System_Int32___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C7DD0, int32_t, TMP_TextProcessingStack_1_System_Int32__Remove, (TMP_TextProcessingStack_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA5230, TMP_TextProcessingStack_1_System_Int32__Remove__MethodInfo); -DO_APP_FUNC(0x010C8A30, void, TMP_TextProcessingStack_1_System_Int32__SetDefault, (TMP_TextProcessingStack_1_System_Int32___Boxed * __this, int32_t item, MethodInfo * method)); +DO_APP_FUNC(0x010C8A30, void, TMP_TextProcessingStack_1_System_Int32__SetDefault, (TMP_TextProcessingStack_1_System_Int32_ * __this, int32_t item, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9EA60, TMP_TextProcessingStack_1_System_Int32__SetDefault__MethodInfo); DO_APP_FUNC(0x010C88E0, void, TMP_TextProcessingStack_1_System_Int32__SetDefault_1, (TMP_TextProcessingStack_1_System_Int32___Array * stack, int32_t item, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA5348, TMP_TextProcessingStack_1_System_Int32__SetDefault_1__MethodInfo); -DO_APP_FUNC(0x003BC2E0, int32_t, TMP_TextProcessingStack_1_System_Int32__get_Count, (TMP_TextProcessingStack_1_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C7B00, int32_t, TMP_TextProcessingStack_1_System_Int32__get_current, (TMP_TextProcessingStack_1_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD70, int32_t, TMP_TextProcessingStack_1_System_Int32__get_rolloverSize, (TMP_TextProcessingStack_1_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD80, void, TMP_TextProcessingStack_1_System_Int32__set_rolloverSize, (TMP_TextProcessingStack_1_System_Int32___Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x010C7910, void, TMP_TextProcessingStack_1_System_Int32Enum___ctor, (TMP_TextProcessingStack_1_System_Int32Enum___Boxed * __this, Int32Enum__Enum__Array * stack, MethodInfo * method)); -DO_APP_FUNC(0x010C7990, void, TMP_TextProcessingStack_1_System_Int32Enum___ctor_1, (TMP_TextProcessingStack_1_System_Int32Enum___Boxed * __this, int32_t capacity, MethodInfo * method)); -DO_APP_FUNC(0x010C7A40, void, TMP_TextProcessingStack_1_System_Int32Enum___ctor_2, (TMP_TextProcessingStack_1_System_Int32Enum___Boxed * __this, int32_t capacity, int32_t rolloverSize, MethodInfo * method)); -DO_APP_FUNC(0x010C7D90, void, TMP_TextProcessingStack_1_System_Int32Enum__Add, (TMP_TextProcessingStack_1_System_Int32Enum___Boxed * __this, Int32Enum__Enum item, MethodInfo * method)); -DO_APP_FUNC(0x010C7CA0, void, TMP_TextProcessingStack_1_System_Int32Enum__Clear, (TMP_TextProcessingStack_1_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C7B00, Int32Enum__Enum, TMP_TextProcessingStack_1_System_Int32Enum__CurrentItem, (TMP_TextProcessingStack_1_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C7FD0, Int32Enum__Enum, TMP_TextProcessingStack_1_System_Int32Enum__Peek, (TMP_TextProcessingStack_1_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C8C10, Int32Enum__Enum, TMP_TextProcessingStack_1_System_Int32Enum__Pop, (TMP_TextProcessingStack_1_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C8010, Int32Enum__Enum, TMP_TextProcessingStack_1_System_Int32Enum__PreviousItem, (TMP_TextProcessingStack_1_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C8B10, void, TMP_TextProcessingStack_1_System_Int32Enum__Push, (TMP_TextProcessingStack_1_System_Int32Enum___Boxed * __this, Int32Enum__Enum item, MethodInfo * method)); -DO_APP_FUNC(0x010C7DD0, Int32Enum__Enum, TMP_TextProcessingStack_1_System_Int32Enum__Remove, (TMP_TextProcessingStack_1_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C8A30, void, TMP_TextProcessingStack_1_System_Int32Enum__SetDefault, (TMP_TextProcessingStack_1_System_Int32Enum___Boxed * __this, Int32Enum__Enum item, MethodInfo * method)); +DO_APP_FUNC(0x003BC2E0, int32_t, TMP_TextProcessingStack_1_System_Int32__get_Count, (TMP_TextProcessingStack_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C7B00, int32_t, TMP_TextProcessingStack_1_System_Int32__get_current, (TMP_TextProcessingStack_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD70, int32_t, TMP_TextProcessingStack_1_System_Int32__get_rolloverSize, (TMP_TextProcessingStack_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD80, void, TMP_TextProcessingStack_1_System_Int32__set_rolloverSize, (TMP_TextProcessingStack_1_System_Int32_ * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x010C7910, void, TMP_TextProcessingStack_1_System_Int32Enum___ctor, (TMP_TextProcessingStack_1_System_Int32Enum_ * __this, Int32Enum__Enum__Array * stack, MethodInfo * method)); +DO_APP_FUNC(0x010C7990, void, TMP_TextProcessingStack_1_System_Int32Enum___ctor_1, (TMP_TextProcessingStack_1_System_Int32Enum_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC(0x010C7A40, void, TMP_TextProcessingStack_1_System_Int32Enum___ctor_2, (TMP_TextProcessingStack_1_System_Int32Enum_ * __this, int32_t capacity, int32_t rolloverSize, MethodInfo * method)); +DO_APP_FUNC(0x010C7D90, void, TMP_TextProcessingStack_1_System_Int32Enum__Add, (TMP_TextProcessingStack_1_System_Int32Enum_ * __this, Int32Enum__Enum item, MethodInfo * method)); +DO_APP_FUNC(0x010C7CA0, void, TMP_TextProcessingStack_1_System_Int32Enum__Clear, (TMP_TextProcessingStack_1_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C7B00, Int32Enum__Enum, TMP_TextProcessingStack_1_System_Int32Enum__CurrentItem, (TMP_TextProcessingStack_1_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C7FD0, Int32Enum__Enum, TMP_TextProcessingStack_1_System_Int32Enum__Peek, (TMP_TextProcessingStack_1_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C8C10, Int32Enum__Enum, TMP_TextProcessingStack_1_System_Int32Enum__Pop, (TMP_TextProcessingStack_1_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C8010, Int32Enum__Enum, TMP_TextProcessingStack_1_System_Int32Enum__PreviousItem, (TMP_TextProcessingStack_1_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C8B10, void, TMP_TextProcessingStack_1_System_Int32Enum__Push, (TMP_TextProcessingStack_1_System_Int32Enum_ * __this, Int32Enum__Enum item, MethodInfo * method)); +DO_APP_FUNC(0x010C7DD0, Int32Enum__Enum, TMP_TextProcessingStack_1_System_Int32Enum__Remove, (TMP_TextProcessingStack_1_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C8A30, void, TMP_TextProcessingStack_1_System_Int32Enum__SetDefault, (TMP_TextProcessingStack_1_System_Int32Enum_ * __this, Int32Enum__Enum item, MethodInfo * method)); DO_APP_FUNC(0x010C8CA0, void, TMP_TextProcessingStack_1_System_Int32Enum__SetDefault_1, (TMP_TextProcessingStack_1_System_Int32Enum___Array * stack, Int32Enum__Enum item, MethodInfo * method)); -DO_APP_FUNC(0x003BC2E0, int32_t, TMP_TextProcessingStack_1_System_Int32Enum__get_Count, (TMP_TextProcessingStack_1_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C7B00, Int32Enum__Enum, TMP_TextProcessingStack_1_System_Int32Enum__get_current, (TMP_TextProcessingStack_1_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD70, int32_t, TMP_TextProcessingStack_1_System_Int32Enum__get_rolloverSize, (TMP_TextProcessingStack_1_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD80, void, TMP_TextProcessingStack_1_System_Int32Enum__set_rolloverSize, (TMP_TextProcessingStack_1_System_Int32Enum___Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x010C8D30, void, TMP_TextProcessingStack_1_MaterialReference___ctor, (TMP_TextProcessingStack_1_MaterialReference___Boxed * __this, MaterialReference__Array * stack, MethodInfo * method)); +DO_APP_FUNC(0x003BC2E0, int32_t, TMP_TextProcessingStack_1_System_Int32Enum__get_Count, (TMP_TextProcessingStack_1_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C7B00, Int32Enum__Enum, TMP_TextProcessingStack_1_System_Int32Enum__get_current, (TMP_TextProcessingStack_1_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD70, int32_t, TMP_TextProcessingStack_1_System_Int32Enum__get_rolloverSize, (TMP_TextProcessingStack_1_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD80, void, TMP_TextProcessingStack_1_System_Int32Enum__set_rolloverSize, (TMP_TextProcessingStack_1_System_Int32Enum_ * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x010C8D30, void, TMP_TextProcessingStack_1_MaterialReference___ctor, (TMP_TextProcessingStack_1_MaterialReference_ * __this, MaterialReference__Array * stack, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA51D0, TMP_TextProcessingStack_1_MaterialReference___ctor__MethodInfo); -DO_APP_FUNC(0x010C8DC0, void, TMP_TextProcessingStack_1_MaterialReference___ctor_1, (TMP_TextProcessingStack_1_MaterialReference___Boxed * __this, int32_t capacity, MethodInfo * method)); -DO_APP_FUNC(0x010C8E80, void, TMP_TextProcessingStack_1_MaterialReference___ctor_2, (TMP_TextProcessingStack_1_MaterialReference___Boxed * __this, int32_t capacity, int32_t rolloverSize, MethodInfo * method)); -DO_APP_FUNC(0x010C9390, void, TMP_TextProcessingStack_1_MaterialReference__Add, (TMP_TextProcessingStack_1_MaterialReference___Boxed * __this, MaterialReference item, MethodInfo * method)); +DO_APP_FUNC(0x010C8DC0, void, TMP_TextProcessingStack_1_MaterialReference___ctor_1, (TMP_TextProcessingStack_1_MaterialReference_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC(0x010C8E80, void, TMP_TextProcessingStack_1_MaterialReference___ctor_2, (TMP_TextProcessingStack_1_MaterialReference_ * __this, int32_t capacity, int32_t rolloverSize, MethodInfo * method)); +DO_APP_FUNC(0x010C9390, void, TMP_TextProcessingStack_1_MaterialReference__Add, (TMP_TextProcessingStack_1_MaterialReference_ * __this, MaterialReference item, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA5270, TMP_TextProcessingStack_1_MaterialReference__Add__MethodInfo); -DO_APP_FUNC(0x010C9200, void, TMP_TextProcessingStack_1_MaterialReference__Clear, (TMP_TextProcessingStack_1_MaterialReference___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C8F70, MaterialReference, TMP_TextProcessingStack_1_MaterialReference__CurrentItem, (TMP_TextProcessingStack_1_MaterialReference___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C97F0, MaterialReference, TMP_TextProcessingStack_1_MaterialReference__Peek, (TMP_TextProcessingStack_1_MaterialReference___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C9690, MaterialReference, TMP_TextProcessingStack_1_MaterialReference__Pop, (TMP_TextProcessingStack_1_MaterialReference___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C9880, MaterialReference, TMP_TextProcessingStack_1_MaterialReference__PreviousItem, (TMP_TextProcessingStack_1_MaterialReference___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C9510, void, TMP_TextProcessingStack_1_MaterialReference__Push, (TMP_TextProcessingStack_1_MaterialReference___Boxed * __this, MaterialReference item, MethodInfo * method)); -DO_APP_FUNC(0x010C9460, MaterialReference, TMP_TextProcessingStack_1_MaterialReference__Remove, (TMP_TextProcessingStack_1_MaterialReference___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C9200, void, TMP_TextProcessingStack_1_MaterialReference__Clear, (TMP_TextProcessingStack_1_MaterialReference_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C8F70, MaterialReference, TMP_TextProcessingStack_1_MaterialReference__CurrentItem, (TMP_TextProcessingStack_1_MaterialReference_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C97F0, MaterialReference, TMP_TextProcessingStack_1_MaterialReference__Peek, (TMP_TextProcessingStack_1_MaterialReference_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C9690, MaterialReference, TMP_TextProcessingStack_1_MaterialReference__Pop, (TMP_TextProcessingStack_1_MaterialReference_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C9880, MaterialReference, TMP_TextProcessingStack_1_MaterialReference__PreviousItem, (TMP_TextProcessingStack_1_MaterialReference_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C9510, void, TMP_TextProcessingStack_1_MaterialReference__Push, (TMP_TextProcessingStack_1_MaterialReference_ * __this, MaterialReference item, MethodInfo * method)); +DO_APP_FUNC(0x010C9460, MaterialReference, TMP_TextProcessingStack_1_MaterialReference__Remove, (TMP_TextProcessingStack_1_MaterialReference_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA5298, TMP_TextProcessingStack_1_MaterialReference__Remove__MethodInfo); -DO_APP_FUNC(0x010C9210, void, TMP_TextProcessingStack_1_MaterialReference__SetDefault, (TMP_TextProcessingStack_1_MaterialReference___Boxed * __this, MaterialReference item, MethodInfo * method)); +DO_APP_FUNC(0x010C9210, void, TMP_TextProcessingStack_1_MaterialReference__SetDefault, (TMP_TextProcessingStack_1_MaterialReference_ * __this, MaterialReference item, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9EAD8, TMP_TextProcessingStack_1_MaterialReference__SetDefault__MethodInfo); DO_APP_FUNC(0x010C9020, void, TMP_TextProcessingStack_1_MaterialReference__SetDefault_1, (TMP_TextProcessingStack_1_MaterialReference___Array * stack, MaterialReference item, MethodInfo * method)); -DO_APP_FUNC(0x010C8F60, int32_t, TMP_TextProcessingStack_1_MaterialReference__get_Count, (TMP_TextProcessingStack_1_MaterialReference___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C8F70, MaterialReference, TMP_TextProcessingStack_1_MaterialReference__get_current, (TMP_TextProcessingStack_1_MaterialReference___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A113B0, int32_t, TMP_TextProcessingStack_1_MaterialReference__get_rolloverSize, (TMP_TextProcessingStack_1_MaterialReference___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C9010, void, TMP_TextProcessingStack_1_MaterialReference__set_rolloverSize, (TMP_TextProcessingStack_1_MaterialReference___Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x010C9920, void, TMP_TextProcessingStack_1_System_Object___ctor, (TMP_TextProcessingStack_1_System_Object___Boxed * __this, Object__Array * stack, MethodInfo * method)); -DO_APP_FUNC(0x010C99A0, void, TMP_TextProcessingStack_1_System_Object___ctor_1, (TMP_TextProcessingStack_1_System_Object___Boxed * __this, int32_t capacity, MethodInfo * method)); -DO_APP_FUNC(0x010C9A50, void, TMP_TextProcessingStack_1_System_Object___ctor_2, (TMP_TextProcessingStack_1_System_Object___Boxed * __this, int32_t capacity, int32_t rolloverSize, MethodInfo * method)); -DO_APP_FUNC(0x010C9CF0, void, TMP_TextProcessingStack_1_System_Object__Add, (TMP_TextProcessingStack_1_System_Object___Boxed * __this, Object * item, MethodInfo * method)); -DO_APP_FUNC(0x010C9C00, void, TMP_TextProcessingStack_1_System_Object__Clear, (TMP_TextProcessingStack_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C9B20, Object *, TMP_TextProcessingStack_1_System_Object__CurrentItem, (TMP_TextProcessingStack_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C9F40, Object *, TMP_TextProcessingStack_1_System_Object__Peek, (TMP_TextProcessingStack_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C9E90, Object *, TMP_TextProcessingStack_1_System_Object__Pop, (TMP_TextProcessingStack_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C9F80, Object *, TMP_TextProcessingStack_1_System_Object__PreviousItem, (TMP_TextProcessingStack_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C9D90, void, TMP_TextProcessingStack_1_System_Object__Push, (TMP_TextProcessingStack_1_System_Object___Boxed * __this, Object * item, MethodInfo * method)); -DO_APP_FUNC(0x010C9D30, Object *, TMP_TextProcessingStack_1_System_Object__Remove, (TMP_TextProcessingStack_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C9C10, void, TMP_TextProcessingStack_1_System_Object__SetDefault, (TMP_TextProcessingStack_1_System_Object___Boxed * __this, Object * item, MethodInfo * method)); +DO_APP_FUNC(0x010C8F60, int32_t, TMP_TextProcessingStack_1_MaterialReference__get_Count, (TMP_TextProcessingStack_1_MaterialReference_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C8F70, MaterialReference, TMP_TextProcessingStack_1_MaterialReference__get_current, (TMP_TextProcessingStack_1_MaterialReference_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A113B0, int32_t, TMP_TextProcessingStack_1_MaterialReference__get_rolloverSize, (TMP_TextProcessingStack_1_MaterialReference_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C9010, void, TMP_TextProcessingStack_1_MaterialReference__set_rolloverSize, (TMP_TextProcessingStack_1_MaterialReference_ * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x010C9920, void, TMP_TextProcessingStack_1_System_Object___ctor, (TMP_TextProcessingStack_1_System_Object_ * __this, Object__Array * stack, MethodInfo * method)); +DO_APP_FUNC(0x010C99A0, void, TMP_TextProcessingStack_1_System_Object___ctor_1, (TMP_TextProcessingStack_1_System_Object_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC(0x010C9A50, void, TMP_TextProcessingStack_1_System_Object___ctor_2, (TMP_TextProcessingStack_1_System_Object_ * __this, int32_t capacity, int32_t rolloverSize, MethodInfo * method)); +DO_APP_FUNC(0x010C9CF0, void, TMP_TextProcessingStack_1_System_Object__Add, (TMP_TextProcessingStack_1_System_Object_ * __this, Object * item, MethodInfo * method)); +DO_APP_FUNC(0x010C9C00, void, TMP_TextProcessingStack_1_System_Object__Clear, (TMP_TextProcessingStack_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C9B20, Object *, TMP_TextProcessingStack_1_System_Object__CurrentItem, (TMP_TextProcessingStack_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C9F40, Object *, TMP_TextProcessingStack_1_System_Object__Peek, (TMP_TextProcessingStack_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C9E90, Object *, TMP_TextProcessingStack_1_System_Object__Pop, (TMP_TextProcessingStack_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C9F80, Object *, TMP_TextProcessingStack_1_System_Object__PreviousItem, (TMP_TextProcessingStack_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C9D90, void, TMP_TextProcessingStack_1_System_Object__Push, (TMP_TextProcessingStack_1_System_Object_ * __this, Object * item, MethodInfo * method)); +DO_APP_FUNC(0x010C9D30, Object *, TMP_TextProcessingStack_1_System_Object__Remove, (TMP_TextProcessingStack_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C9C10, void, TMP_TextProcessingStack_1_System_Object__SetDefault, (TMP_TextProcessingStack_1_System_Object_ * __this, Object * item, MethodInfo * method)); DO_APP_FUNC(0x010C9B70, void, TMP_TextProcessingStack_1_System_Object__SetDefault_1, (TMP_TextProcessingStack_1_System_Object___Array * stack, Object * item, MethodInfo * method)); -DO_APP_FUNC(0x003CC980, int32_t, TMP_TextProcessingStack_1_System_Object__get_Count, (TMP_TextProcessingStack_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C9B20, Object *, TMP_TextProcessingStack_1_System_Object__get_current, (TMP_TextProcessingStack_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003CD440, int32_t, TMP_TextProcessingStack_1_System_Object__get_rolloverSize, (TMP_TextProcessingStack_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x006D8870, void, TMP_TextProcessingStack_1_System_Object__set_rolloverSize, (TMP_TextProcessingStack_1_System_Object___Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x010C7910, void, TMP_TextProcessingStack_1_System_Single___ctor, (TMP_TextProcessingStack_1_System_Single___Boxed * __this, Single__Array * stack, MethodInfo * method)); +DO_APP_FUNC(0x003CC980, int32_t, TMP_TextProcessingStack_1_System_Object__get_Count, (TMP_TextProcessingStack_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C9B20, Object *, TMP_TextProcessingStack_1_System_Object__get_current, (TMP_TextProcessingStack_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003CD440, int32_t, TMP_TextProcessingStack_1_System_Object__get_rolloverSize, (TMP_TextProcessingStack_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x006D8870, void, TMP_TextProcessingStack_1_System_Object__set_rolloverSize, (TMP_TextProcessingStack_1_System_Object_ * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x010C7910, void, TMP_TextProcessingStack_1_System_Single___ctor, (TMP_TextProcessingStack_1_System_Single_ * __this, Single__Array * stack, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA5188, TMP_TextProcessingStack_1_System_Single___ctor__MethodInfo); -DO_APP_FUNC(0x010C7990, void, TMP_TextProcessingStack_1_System_Single___ctor_1, (TMP_TextProcessingStack_1_System_Single___Boxed * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC(0x010C7990, void, TMP_TextProcessingStack_1_System_Single___ctor_1, (TMP_TextProcessingStack_1_System_Single_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA5180, TMP_TextProcessingStack_1_System_Single___ctor_1__MethodInfo); -DO_APP_FUNC(0x010C7A40, void, TMP_TextProcessingStack_1_System_Single___ctor_2, (TMP_TextProcessingStack_1_System_Single___Boxed * __this, int32_t capacity, int32_t rolloverSize, MethodInfo * method)); -DO_APP_FUNC(0x010CA270, void, TMP_TextProcessingStack_1_System_Single__Add, (TMP_TextProcessingStack_1_System_Single___Boxed * __this, float item, MethodInfo * method)); +DO_APP_FUNC(0x010C7A40, void, TMP_TextProcessingStack_1_System_Single___ctor_2, (TMP_TextProcessingStack_1_System_Single_ * __this, int32_t capacity, int32_t rolloverSize, MethodInfo * method)); +DO_APP_FUNC(0x010CA270, void, TMP_TextProcessingStack_1_System_Single__Add, (TMP_TextProcessingStack_1_System_Single_ * __this, float item, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA5260, TMP_TextProcessingStack_1_System_Single__Add__MethodInfo); -DO_APP_FUNC(0x010C7CA0, void, TMP_TextProcessingStack_1_System_Single__Clear, (TMP_TextProcessingStack_1_System_Single___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C7CA0, void, TMP_TextProcessingStack_1_System_Single__Clear, (TMP_TextProcessingStack_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9EA38, TMP_TextProcessingStack_1_System_Single__Clear__MethodInfo); -DO_APP_FUNC(0x010C9FD0, float, TMP_TextProcessingStack_1_System_Single__CurrentItem, (TMP_TextProcessingStack_1_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010CA4A0, float, TMP_TextProcessingStack_1_System_Single__Peek, (TMP_TextProcessingStack_1_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010CA410, float, TMP_TextProcessingStack_1_System_Single__Pop, (TMP_TextProcessingStack_1_System_Single___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C9FD0, float, TMP_TextProcessingStack_1_System_Single__CurrentItem, (TMP_TextProcessingStack_1_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010CA4A0, float, TMP_TextProcessingStack_1_System_Single__Peek, (TMP_TextProcessingStack_1_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010CA410, float, TMP_TextProcessingStack_1_System_Single__Pop, (TMP_TextProcessingStack_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA5210, TMP_TextProcessingStack_1_System_Single__Pop__MethodInfo); -DO_APP_FUNC(0x010CA4E0, float, TMP_TextProcessingStack_1_System_Single__PreviousItem, (TMP_TextProcessingStack_1_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010CA310, void, TMP_TextProcessingStack_1_System_Single__Push, (TMP_TextProcessingStack_1_System_Single___Boxed * __this, float item, MethodInfo * method)); +DO_APP_FUNC(0x010CA4E0, float, TMP_TextProcessingStack_1_System_Single__PreviousItem, (TMP_TextProcessingStack_1_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010CA310, void, TMP_TextProcessingStack_1_System_Single__Push, (TMP_TextProcessingStack_1_System_Single_ * __this, float item, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA5220, TMP_TextProcessingStack_1_System_Single__Push__MethodInfo); -DO_APP_FUNC(0x010CA2B0, float, TMP_TextProcessingStack_1_System_Single__Remove, (TMP_TextProcessingStack_1_System_Single___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x010CA2B0, float, TMP_TextProcessingStack_1_System_Single__Remove, (TMP_TextProcessingStack_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA5248, TMP_TextProcessingStack_1_System_Single__Remove__MethodInfo); -DO_APP_FUNC(0x010CA190, void, TMP_TextProcessingStack_1_System_Single__SetDefault, (TMP_TextProcessingStack_1_System_Single___Boxed * __this, float item, MethodInfo * method)); +DO_APP_FUNC(0x010CA190, void, TMP_TextProcessingStack_1_System_Single__SetDefault, (TMP_TextProcessingStack_1_System_Single_ * __this, float item, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9EA78, TMP_TextProcessingStack_1_System_Single__SetDefault__MethodInfo); DO_APP_FUNC(0x010CA020, void, TMP_TextProcessingStack_1_System_Single__SetDefault_1, (TMP_TextProcessingStack_1_System_Single___Array * stack, float item, MethodInfo * method)); -DO_APP_FUNC(0x003BC2E0, int32_t, TMP_TextProcessingStack_1_System_Single__get_Count, (TMP_TextProcessingStack_1_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C9FD0, float, TMP_TextProcessingStack_1_System_Single__get_current, (TMP_TextProcessingStack_1_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD70, int32_t, TMP_TextProcessingStack_1_System_Single__get_rolloverSize, (TMP_TextProcessingStack_1_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD80, void, TMP_TextProcessingStack_1_System_Single__set_rolloverSize, (TMP_TextProcessingStack_1_System_Single___Boxed * __this, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x010CA530, void, TMP_TextProcessingStack_1_WordWrapState___ctor, (TMP_TextProcessingStack_1_WordWrapState___Boxed * __this, WordWrapState__Array * stack, MethodInfo * method)); -DO_APP_FUNC(0x010CA5D0, void, TMP_TextProcessingStack_1_WordWrapState___ctor_1, (TMP_TextProcessingStack_1_WordWrapState___Boxed * __this, int32_t capacity, MethodInfo * method)); -DO_APP_FUNC(0x010CA6A0, void, TMP_TextProcessingStack_1_WordWrapState___ctor_2, (TMP_TextProcessingStack_1_WordWrapState___Boxed * __this, int32_t capacity, int32_t rolloverSize, MethodInfo * method)); +DO_APP_FUNC(0x003BC2E0, int32_t, TMP_TextProcessingStack_1_System_Single__get_Count, (TMP_TextProcessingStack_1_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C9FD0, float, TMP_TextProcessingStack_1_System_Single__get_current, (TMP_TextProcessingStack_1_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD70, int32_t, TMP_TextProcessingStack_1_System_Single__get_rolloverSize, (TMP_TextProcessingStack_1_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BCD80, void, TMP_TextProcessingStack_1_System_Single__set_rolloverSize, (TMP_TextProcessingStack_1_System_Single_ * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x010CA530, void, TMP_TextProcessingStack_1_WordWrapState___ctor, (TMP_TextProcessingStack_1_WordWrapState_ * __this, WordWrapState__Array * stack, MethodInfo * method)); +DO_APP_FUNC(0x010CA5D0, void, TMP_TextProcessingStack_1_WordWrapState___ctor_1, (TMP_TextProcessingStack_1_WordWrapState_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC(0x010CA6A0, void, TMP_TextProcessingStack_1_WordWrapState___ctor_2, (TMP_TextProcessingStack_1_WordWrapState_ * __this, int32_t capacity, int32_t rolloverSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA51D8, TMP_TextProcessingStack_1_WordWrapState___ctor_2__MethodInfo); -DO_APP_FUNC(0x010CAB10, void, TMP_TextProcessingStack_1_WordWrapState__Add, (TMP_TextProcessingStack_1_WordWrapState___Boxed * __this, WordWrapState item, MethodInfo * method)); -DO_APP_FUNC(0x010CA960, void, TMP_TextProcessingStack_1_WordWrapState__Clear, (TMP_TextProcessingStack_1_WordWrapState___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x010CAB10, void, TMP_TextProcessingStack_1_WordWrapState__Add, (TMP_TextProcessingStack_1_WordWrapState_ * __this, WordWrapState item, MethodInfo * method)); +DO_APP_FUNC(0x010CA960, void, TMP_TextProcessingStack_1_WordWrapState__Clear, (TMP_TextProcessingStack_1_WordWrapState_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9EAA0, TMP_TextProcessingStack_1_WordWrapState__Clear__MethodInfo); -DO_APP_FUNC(0x010CA790, WordWrapState, TMP_TextProcessingStack_1_WordWrapState__CurrentItem, (TMP_TextProcessingStack_1_WordWrapState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010CB100, WordWrapState, TMP_TextProcessingStack_1_WordWrapState__Peek, (TMP_TextProcessingStack_1_WordWrapState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010CAE30, WordWrapState, TMP_TextProcessingStack_1_WordWrapState__Pop, (TMP_TextProcessingStack_1_WordWrapState___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x010CA790, WordWrapState, TMP_TextProcessingStack_1_WordWrapState__CurrentItem, (TMP_TextProcessingStack_1_WordWrapState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010CB100, WordWrapState, TMP_TextProcessingStack_1_WordWrapState__Peek, (TMP_TextProcessingStack_1_WordWrapState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010CAE30, WordWrapState, TMP_TextProcessingStack_1_WordWrapState__Pop, (TMP_TextProcessingStack_1_WordWrapState_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9EAB0, TMP_TextProcessingStack_1_WordWrapState__Pop__MethodInfo); -DO_APP_FUNC(0x010CB1F0, WordWrapState, TMP_TextProcessingStack_1_WordWrapState__PreviousItem, (TMP_TextProcessingStack_1_WordWrapState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010CAC60, void, TMP_TextProcessingStack_1_WordWrapState__Push, (TMP_TextProcessingStack_1_WordWrapState___Boxed * __this, WordWrapState item, MethodInfo * method)); +DO_APP_FUNC(0x010CB1F0, WordWrapState, TMP_TextProcessingStack_1_WordWrapState__PreviousItem, (TMP_TextProcessingStack_1_WordWrapState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010CAC60, void, TMP_TextProcessingStack_1_WordWrapState__Push, (TMP_TextProcessingStack_1_WordWrapState_ * __this, WordWrapState item, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9EAB8, TMP_TextProcessingStack_1_WordWrapState__Push__MethodInfo); -DO_APP_FUNC(0x010CAC00, WordWrapState, TMP_TextProcessingStack_1_WordWrapState__Remove, (TMP_TextProcessingStack_1_WordWrapState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010CA970, void, TMP_TextProcessingStack_1_WordWrapState__SetDefault, (TMP_TextProcessingStack_1_WordWrapState___Boxed * __this, WordWrapState item, MethodInfo * method)); +DO_APP_FUNC(0x010CAC00, WordWrapState, TMP_TextProcessingStack_1_WordWrapState__Remove, (TMP_TextProcessingStack_1_WordWrapState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010CA970, void, TMP_TextProcessingStack_1_WordWrapState__SetDefault, (TMP_TextProcessingStack_1_WordWrapState_ * __this, WordWrapState item, MethodInfo * method)); DO_APP_FUNC(0x010CA800, void, TMP_TextProcessingStack_1_WordWrapState__SetDefault_1, (TMP_TextProcessingStack_1_WordWrapState___Array * stack, WordWrapState item, MethodInfo * method)); -DO_APP_FUNC(0x010CA780, int32_t, TMP_TextProcessingStack_1_WordWrapState__get_Count, (TMP_TextProcessingStack_1_WordWrapState___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x010CA780, int32_t, TMP_TextProcessingStack_1_WordWrapState__get_Count, (TMP_TextProcessingStack_1_WordWrapState_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9EA80, TMP_TextProcessingStack_1_WordWrapState__get_Count__MethodInfo); -DO_APP_FUNC(0x010CA790, WordWrapState, TMP_TextProcessingStack_1_WordWrapState__get_current, (TMP_TextProcessingStack_1_WordWrapState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010CA7E0, int32_t, TMP_TextProcessingStack_1_WordWrapState__get_rolloverSize, (TMP_TextProcessingStack_1_WordWrapState___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010CA7F0, void, TMP_TextProcessingStack_1_WordWrapState__set_rolloverSize, (TMP_TextProcessingStack_1_WordWrapState___Boxed * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x010CA790, WordWrapState, TMP_TextProcessingStack_1_WordWrapState__get_current, (TMP_TextProcessingStack_1_WordWrapState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010CA7E0, int32_t, TMP_TextProcessingStack_1_WordWrapState__get_rolloverSize, (TMP_TextProcessingStack_1_WordWrapState_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010CA7F0, void, TMP_TextProcessingStack_1_WordWrapState__set_rolloverSize, (TMP_TextProcessingStack_1_WordWrapState_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x010CB240, void, TProfilingSampler_1_System_Int32Enum___cctor, (MethodInfo * method)); DO_APP_FUNC(0x010CB7C0, void, TProfilingSampler_1_System_Int32Enum___ctor, (TProfilingSampler_1_System_Int32Enum_ * __this, String * name, MethodInfo * method)); DO_APP_FUNC(0x010CB7D0, void, TProfilingSampler_1_System_Object___cctor, (MethodInfo * method)); @@ -192187,74 +210853,77 @@ DO_APP_FUNC(0x010CBED0, void, TakeNObservable_1_TValue_Take_System_Object__OnErr DO_APP_FUNC(0x010CBF20, void, TakeNObservable_1_TValue_Take_System_Object__OnNext, (TakeNObservable_1_TValue_Take_System_Object_ * __this, Object * evt, MethodInfo * method)); DO_APP_FUNC(0x00A5E870, void, TakeNObservable_1_System_Object___ctor, (TakeNObservable_1_System_Object_ * __this, IObservable_1_Object_ * source, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x0104D570, IDisposable *, TakeNObservable_1_System_Object__Subscribe, (TakeNObservable_1_System_Object_ * __this, IObserver_1_Object_ * observer, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, TaskAwaiter_1_System_Nullable_1___ctor, (TaskAwaiter_1_System_Nullable_1___Boxed * __this, Task_1_System_Nullable_1_ * task, MethodInfo * method)); -DO_APP_FUNC(0x010CC170, Nullable_1_Int32_, TaskAwaiter_1_System_Nullable_1__GetResult, (TaskAwaiter_1_System_Nullable_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010CC0B0, void, TaskAwaiter_1_System_Nullable_1__UnsafeOnCompleted, (TaskAwaiter_1_System_Nullable_1___Boxed * __this, Action * continuation, MethodInfo * method)); -DO_APP_FUNC(0x010CC040, bool, TaskAwaiter_1_System_Nullable_1__get_IsCompleted, (TaskAwaiter_1_System_Nullable_1___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, TaskAwaiter_1_System_ValueTuple_2___ctor, (TaskAwaiter_1_System_ValueTuple_2___Boxed * __this, Task_1_System_ValueTuple_2_ * task, MethodInfo * method)); -DO_APP_FUNC(0x010CC220, ValueTuple_2_Boolean_Object_, TaskAwaiter_1_System_ValueTuple_2__GetResult, (TaskAwaiter_1_System_ValueTuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010CC0B0, void, TaskAwaiter_1_System_ValueTuple_2__UnsafeOnCompleted, (TaskAwaiter_1_System_ValueTuple_2___Boxed * __this, Action * continuation, MethodInfo * method)); -DO_APP_FUNC(0x010CC040, bool, TaskAwaiter_1_System_ValueTuple_2__get_IsCompleted, (TaskAwaiter_1_System_ValueTuple_2___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, TaskAwaiter_1_System_ValueTuple_3___ctor, (TaskAwaiter_1_System_ValueTuple_3___Boxed * __this, Task_1_System_ValueTuple_3__1 * task, MethodInfo * method)); -DO_APP_FUNC(0x010CC2E0, ValueTuple_3_Object_Object_Int32_, TaskAwaiter_1_System_ValueTuple_3__GetResult, (TaskAwaiter_1_System_ValueTuple_3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010CC0B0, void, TaskAwaiter_1_System_ValueTuple_3__UnsafeOnCompleted, (TaskAwaiter_1_System_ValueTuple_3___Boxed * __this, Action * continuation, MethodInfo * method)); -DO_APP_FUNC(0x010CC040, bool, TaskAwaiter_1_System_ValueTuple_3__get_IsCompleted, (TaskAwaiter_1_System_ValueTuple_3___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, TaskAwaiter_1_System_ValueTuple_5___ctor, (TaskAwaiter_1_System_ValueTuple_5___Boxed * __this, Task_1_System_ValueTuple_5__1 * task, MethodInfo * method)); -DO_APP_FUNC(0x010CC3B0, ValueTuple_5_Object_Boolean_Boolean_Object_Object_, TaskAwaiter_1_System_ValueTuple_5__GetResult, (TaskAwaiter_1_System_ValueTuple_5___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010CC0B0, void, TaskAwaiter_1_System_ValueTuple_5__UnsafeOnCompleted, (TaskAwaiter_1_System_ValueTuple_5___Boxed * __this, Action * continuation, MethodInfo * method)); -DO_APP_FUNC(0x010CC040, bool, TaskAwaiter_1_System_ValueTuple_5__get_IsCompleted, (TaskAwaiter_1_System_ValueTuple_5___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, TaskAwaiter_1_System_Boolean___ctor, (TaskAwaiter_1_System_Boolean___Boxed * __this, Task_1_System_Boolean_ * task, MethodInfo * method)); -DO_APP_FUNC(0x010CC170, bool, TaskAwaiter_1_System_Boolean__GetResult, (TaskAwaiter_1_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010CC0B0, void, TaskAwaiter_1_System_Boolean__UnsafeOnCompleted, (TaskAwaiter_1_System_Boolean___Boxed * __this, Action * continuation, MethodInfo * method)); -DO_APP_FUNC(0x010CC040, bool, TaskAwaiter_1_System_Boolean__get_IsCompleted, (TaskAwaiter_1_System_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, TaskAwaiter_1_System_Int32___ctor, (TaskAwaiter_1_System_Int32___Boxed * __this, Task_1_System_Int32_ * task, MethodInfo * method)); -DO_APP_FUNC(0x010CC170, int32_t, TaskAwaiter_1_System_Int32__GetResult, (TaskAwaiter_1_System_Int32___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, TaskAwaiter_1_System_Nullable_1___ctor, (TaskAwaiter_1_System_Nullable_1_ * __this, Task_1_System_Nullable_1_ * task, MethodInfo * method)); +DO_APP_FUNC(0x010CC170, Nullable_1_Int32_, TaskAwaiter_1_System_Nullable_1__GetResult, (TaskAwaiter_1_System_Nullable_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010CC0B0, void, TaskAwaiter_1_System_Nullable_1__UnsafeOnCompleted, (TaskAwaiter_1_System_Nullable_1_ * __this, Action * continuation, MethodInfo * method)); +DO_APP_FUNC(0x010CC040, bool, TaskAwaiter_1_System_Nullable_1__get_IsCompleted, (TaskAwaiter_1_System_Nullable_1_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, TaskAwaiter_1_System_ValueTuple_2___ctor, (TaskAwaiter_1_System_ValueTuple_2_ * __this, Task_1_System_ValueTuple_2_ * task, MethodInfo * method)); +DO_APP_FUNC(0x010CC220, ValueTuple_2_Boolean_Object_, TaskAwaiter_1_System_ValueTuple_2__GetResult, (TaskAwaiter_1_System_ValueTuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010CC0B0, void, TaskAwaiter_1_System_ValueTuple_2__UnsafeOnCompleted, (TaskAwaiter_1_System_ValueTuple_2_ * __this, Action * continuation, MethodInfo * method)); +DO_APP_FUNC(0x010CC040, bool, TaskAwaiter_1_System_ValueTuple_2__get_IsCompleted, (TaskAwaiter_1_System_ValueTuple_2_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, TaskAwaiter_1_System_ValueTuple_3___ctor, (TaskAwaiter_1_System_ValueTuple_3_ * __this, Task_1_System_ValueTuple_3__1 * task, MethodInfo * method)); +DO_APP_FUNC(0x010CC2E0, ValueTuple_3_Object_Object_Int32_, TaskAwaiter_1_System_ValueTuple_3__GetResult, (TaskAwaiter_1_System_ValueTuple_3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010CC0B0, void, TaskAwaiter_1_System_ValueTuple_3__UnsafeOnCompleted, (TaskAwaiter_1_System_ValueTuple_3_ * __this, Action * continuation, MethodInfo * method)); +DO_APP_FUNC(0x010CC040, bool, TaskAwaiter_1_System_ValueTuple_3__get_IsCompleted, (TaskAwaiter_1_System_ValueTuple_3_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, TaskAwaiter_1_System_ValueTuple_5___ctor, (TaskAwaiter_1_System_ValueTuple_5_ * __this, Task_1_System_ValueTuple_5__1 * task, MethodInfo * method)); +DO_APP_FUNC(0x010CC3B0, ValueTuple_5_Object_Boolean_Boolean_Object_Object_, TaskAwaiter_1_System_ValueTuple_5__GetResult, (TaskAwaiter_1_System_ValueTuple_5_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010CC0B0, void, TaskAwaiter_1_System_ValueTuple_5__UnsafeOnCompleted, (TaskAwaiter_1_System_ValueTuple_5_ * __this, Action * continuation, MethodInfo * method)); +DO_APP_FUNC(0x010CC040, bool, TaskAwaiter_1_System_ValueTuple_5__get_IsCompleted, (TaskAwaiter_1_System_ValueTuple_5_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, TaskAwaiter_1_System_Boolean___ctor, (TaskAwaiter_1_System_Boolean_ * __this, Task_1_System_Boolean_ * task, MethodInfo * method)); +DO_APP_FUNC(0x010CC170, bool, TaskAwaiter_1_System_Boolean__GetResult, (TaskAwaiter_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CD98, TaskAwaiter_1_System_Boolean__GetResult__MethodInfo); +DO_APP_FUNC(0x010CC0B0, void, TaskAwaiter_1_System_Boolean__UnsafeOnCompleted, (TaskAwaiter_1_System_Boolean_ * __this, Action * continuation, MethodInfo * method)); +DO_APP_FUNC(0x010CC040, bool, TaskAwaiter_1_System_Boolean__get_IsCompleted, (TaskAwaiter_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, TaskAwaiter_1_System_Int32___ctor, (TaskAwaiter_1_System_Int32_ * __this, Task_1_System_Int32_ * task, MethodInfo * method)); +DO_APP_FUNC(0x010CC170, int32_t, TaskAwaiter_1_System_Int32__GetResult, (TaskAwaiter_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C987B8, TaskAwaiter_1_System_Int32__GetResult__MethodInfo); -DO_APP_FUNC(0x010CC0B0, void, TaskAwaiter_1_System_Int32__UnsafeOnCompleted, (TaskAwaiter_1_System_Int32___Boxed * __this, Action * continuation, MethodInfo * method)); -DO_APP_FUNC(0x010CC040, bool, TaskAwaiter_1_System_Int32__get_IsCompleted, (TaskAwaiter_1_System_Int32___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x010CC0B0, void, TaskAwaiter_1_System_Int32__UnsafeOnCompleted, (TaskAwaiter_1_System_Int32_ * __this, Action * continuation, MethodInfo * method)); +DO_APP_FUNC(0x010CC040, bool, TaskAwaiter_1_System_Int32__get_IsCompleted, (TaskAwaiter_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C98778, TaskAwaiter_1_System_Int32__get_IsCompleted__MethodInfo); -DO_APP_FUNC(0x003BC280, void, TaskAwaiter_1_System_Int32Enum___ctor, (TaskAwaiter_1_System_Int32Enum___Boxed * __this, Task_1_System_Int32Enum_ * task, MethodInfo * method)); -DO_APP_FUNC(0x010CC170, Int32Enum__Enum, TaskAwaiter_1_System_Int32Enum__GetResult, (TaskAwaiter_1_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010CC0B0, void, TaskAwaiter_1_System_Int32Enum__UnsafeOnCompleted, (TaskAwaiter_1_System_Int32Enum___Boxed * __this, Action * continuation, MethodInfo * method)); -DO_APP_FUNC(0x010CC040, bool, TaskAwaiter_1_System_Int32Enum__get_IsCompleted, (TaskAwaiter_1_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, TaskAwaiter_1_System_Int64___ctor, (TaskAwaiter_1_System_Int64___Boxed * __this, Task_1_System_Int64_ * task, MethodInfo * method)); -DO_APP_FUNC(0x010CC170, int64_t, TaskAwaiter_1_System_Int64__GetResult, (TaskAwaiter_1_System_Int64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010CC0B0, void, TaskAwaiter_1_System_Int64__UnsafeOnCompleted, (TaskAwaiter_1_System_Int64___Boxed * __this, Action * continuation, MethodInfo * method)); -DO_APP_FUNC(0x010CC040, bool, TaskAwaiter_1_System_Int64__get_IsCompleted, (TaskAwaiter_1_System_Int64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, TaskAwaiter_1_System_Object___ctor, (TaskAwaiter_1_System_Object___Boxed * __this, Task_1_System_Object_ * task, MethodInfo * method)); -DO_APP_FUNC(0x010CC170, Object *, TaskAwaiter_1_System_Object__GetResult, (TaskAwaiter_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010CC0B0, void, TaskAwaiter_1_System_Object__UnsafeOnCompleted, (TaskAwaiter_1_System_Object___Boxed * __this, Action * continuation, MethodInfo * method)); -DO_APP_FUNC(0x010CC040, bool, TaskAwaiter_1_System_Object__get_IsCompleted, (TaskAwaiter_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, TaskAwaiter_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___ctor, (TaskAwaiter_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___Boxed * __this, Task_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * task, MethodInfo * method)); -DO_APP_FUNC(0x010CC220, SceneInstance, TaskAwaiter_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__GetResult, (TaskAwaiter_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010CC0B0, void, TaskAwaiter_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__UnsafeOnCompleted, (TaskAwaiter_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___Boxed * __this, Action * continuation, MethodInfo * method)); -DO_APP_FUNC(0x010CC040, bool, TaskAwaiter_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__get_IsCompleted, (TaskAwaiter_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, TaskAwaiter_1_System_Net_Sockets_SocketReceiveFromResult___ctor, (TaskAwaiter_1_System_Net_Sockets_SocketReceiveFromResult___Boxed * __this, Task_1_System_Net_Sockets_SocketReceiveFromResult_ * task, MethodInfo * method)); -DO_APP_FUNC(0x010CC220, SocketReceiveFromResult, TaskAwaiter_1_System_Net_Sockets_SocketReceiveFromResult__GetResult, (TaskAwaiter_1_System_Net_Sockets_SocketReceiveFromResult___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010CC0B0, void, TaskAwaiter_1_System_Net_Sockets_SocketReceiveFromResult__UnsafeOnCompleted, (TaskAwaiter_1_System_Net_Sockets_SocketReceiveFromResult___Boxed * __this, Action * continuation, MethodInfo * method)); -DO_APP_FUNC(0x010CC040, bool, TaskAwaiter_1_System_Net_Sockets_SocketReceiveFromResult__get_IsCompleted, (TaskAwaiter_1_System_Net_Sockets_SocketReceiveFromResult___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, TaskAwaiter_1_System_Net_Sockets_SocketReceiveMessageFromResult___ctor, (TaskAwaiter_1_System_Net_Sockets_SocketReceiveMessageFromResult___Boxed * __this, Task_1_System_Net_Sockets_SocketReceiveMessageFromResult_ * task, MethodInfo * method)); -DO_APP_FUNC(0x010CC3B0, SocketReceiveMessageFromResult, TaskAwaiter_1_System_Net_Sockets_SocketReceiveMessageFromResult__GetResult, (TaskAwaiter_1_System_Net_Sockets_SocketReceiveMessageFromResult___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010CC0B0, void, TaskAwaiter_1_System_Net_Sockets_SocketReceiveMessageFromResult__UnsafeOnCompleted, (TaskAwaiter_1_System_Net_Sockets_SocketReceiveMessageFromResult___Boxed * __this, Action * continuation, MethodInfo * method)); -DO_APP_FUNC(0x010CC040, bool, TaskAwaiter_1_System_Net_Sockets_SocketReceiveMessageFromResult__get_IsCompleted, (TaskAwaiter_1_System_Net_Sockets_SocketReceiveMessageFromResult___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, TaskAwaiter_1_System_Net_Sockets_UdpReceiveResult___ctor, (TaskAwaiter_1_System_Net_Sockets_UdpReceiveResult___Boxed * __this, Task_1_System_Net_Sockets_UdpReceiveResult_ * task, MethodInfo * method)); -DO_APP_FUNC(0x010CC220, UdpReceiveResult, TaskAwaiter_1_System_Net_Sockets_UdpReceiveResult__GetResult, (TaskAwaiter_1_System_Net_Sockets_UdpReceiveResult___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010CC0B0, void, TaskAwaiter_1_System_Net_Sockets_UdpReceiveResult__UnsafeOnCompleted, (TaskAwaiter_1_System_Net_Sockets_UdpReceiveResult___Boxed * __this, Action * continuation, MethodInfo * method)); -DO_APP_FUNC(0x010CC040, bool, TaskAwaiter_1_System_Net_Sockets_UdpReceiveResult__get_IsCompleted, (TaskAwaiter_1_System_Net_Sockets_UdpReceiveResult___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, TaskAwaiter_1_System_Net_WebSockets_ValueWebSocketReceiveResult___ctor, (TaskAwaiter_1_System_Net_WebSockets_ValueWebSocketReceiveResult___Boxed * __this, Task_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * task, MethodInfo * method)); -DO_APP_FUNC(0x010CC170, ValueWebSocketReceiveResult, TaskAwaiter_1_System_Net_WebSockets_ValueWebSocketReceiveResult__GetResult, (TaskAwaiter_1_System_Net_WebSockets_ValueWebSocketReceiveResult___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010CC0B0, void, TaskAwaiter_1_System_Net_WebSockets_ValueWebSocketReceiveResult__UnsafeOnCompleted, (TaskAwaiter_1_System_Net_WebSockets_ValueWebSocketReceiveResult___Boxed * __this, Action * continuation, MethodInfo * method)); -DO_APP_FUNC(0x010CC040, bool, TaskAwaiter_1_System_Net_WebSockets_ValueWebSocketReceiveResult__get_IsCompleted, (TaskAwaiter_1_System_Net_WebSockets_ValueWebSocketReceiveResult___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, TaskAwaiter_1_System_Threading_Tasks_VoidTaskResult___ctor, (TaskAwaiter_1_System_Threading_Tasks_VoidTaskResult___Boxed * __this, Task_1_VoidTaskResult_ * task, MethodInfo * method)); -DO_APP_FUNC(0x010CC170, VoidTaskResult, TaskAwaiter_1_System_Threading_Tasks_VoidTaskResult__GetResult, (TaskAwaiter_1_System_Threading_Tasks_VoidTaskResult___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010CC0B0, void, TaskAwaiter_1_System_Threading_Tasks_VoidTaskResult__UnsafeOnCompleted, (TaskAwaiter_1_System_Threading_Tasks_VoidTaskResult___Boxed * __this, Action * continuation, MethodInfo * method)); -DO_APP_FUNC(0x010CC040, bool, TaskAwaiter_1_System_Threading_Tasks_VoidTaskResult__get_IsCompleted, (TaskAwaiter_1_System_Threading_Tasks_VoidTaskResult___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, TaskAwaiter_1_System_IO_WaitForChangedResult___ctor, (TaskAwaiter_1_System_IO_WaitForChangedResult___Boxed * __this, Task_1_System_IO_WaitForChangedResult_ * task, MethodInfo * method)); -DO_APP_FUNC(0x010CC3B0, WaitForChangedResult, TaskAwaiter_1_System_IO_WaitForChangedResult__GetResult, (TaskAwaiter_1_System_IO_WaitForChangedResult___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010CC0B0, void, TaskAwaiter_1_System_IO_WaitForChangedResult__UnsafeOnCompleted, (TaskAwaiter_1_System_IO_WaitForChangedResult___Boxed * __this, Action * continuation, MethodInfo * method)); -DO_APP_FUNC(0x010CC040, bool, TaskAwaiter_1_System_IO_WaitForChangedResult__get_IsCompleted, (TaskAwaiter_1_System_IO_WaitForChangedResult___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, TaskAwaiter_1_System_Int32Enum___ctor, (TaskAwaiter_1_System_Int32Enum_ * __this, Task_1_System_Int32Enum_ * task, MethodInfo * method)); +DO_APP_FUNC(0x010CC170, Int32Enum__Enum, TaskAwaiter_1_System_Int32Enum__GetResult, (TaskAwaiter_1_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010CC0B0, void, TaskAwaiter_1_System_Int32Enum__UnsafeOnCompleted, (TaskAwaiter_1_System_Int32Enum_ * __this, Action * continuation, MethodInfo * method)); +DO_APP_FUNC(0x010CC040, bool, TaskAwaiter_1_System_Int32Enum__get_IsCompleted, (TaskAwaiter_1_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, TaskAwaiter_1_System_Int64___ctor, (TaskAwaiter_1_System_Int64_ * __this, Task_1_System_Int64_ * task, MethodInfo * method)); +DO_APP_FUNC(0x010CC170, int64_t, TaskAwaiter_1_System_Int64__GetResult, (TaskAwaiter_1_System_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010CC0B0, void, TaskAwaiter_1_System_Int64__UnsafeOnCompleted, (TaskAwaiter_1_System_Int64_ * __this, Action * continuation, MethodInfo * method)); +DO_APP_FUNC(0x010CC040, bool, TaskAwaiter_1_System_Int64__get_IsCompleted, (TaskAwaiter_1_System_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, TaskAwaiter_1_System_Object___ctor, (TaskAwaiter_1_System_Object_ * __this, Task_1_System_Object_ * task, MethodInfo * method)); +DO_APP_FUNC(0x010CC170, Object *, TaskAwaiter_1_System_Object__GetResult, (TaskAwaiter_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010CC0B0, void, TaskAwaiter_1_System_Object__UnsafeOnCompleted, (TaskAwaiter_1_System_Object_ * __this, Action * continuation, MethodInfo * method)); +DO_APP_FUNC(0x010CC040, bool, TaskAwaiter_1_System_Object__get_IsCompleted, (TaskAwaiter_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, TaskAwaiter_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___ctor, (TaskAwaiter_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, Task_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * task, MethodInfo * method)); +DO_APP_FUNC(0x010CC220, SceneInstance, TaskAwaiter_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__GetResult, (TaskAwaiter_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010CC0B0, void, TaskAwaiter_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__UnsafeOnCompleted, (TaskAwaiter_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, Action * continuation, MethodInfo * method)); +DO_APP_FUNC(0x010CC040, bool, TaskAwaiter_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__get_IsCompleted, (TaskAwaiter_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, TaskAwaiter_1_System_Net_Sockets_SocketReceiveFromResult___ctor, (TaskAwaiter_1_System_Net_Sockets_SocketReceiveFromResult_ * __this, Task_1_System_Net_Sockets_SocketReceiveFromResult_ * task, MethodInfo * method)); +DO_APP_FUNC(0x010CC220, SocketReceiveFromResult, TaskAwaiter_1_System_Net_Sockets_SocketReceiveFromResult__GetResult, (TaskAwaiter_1_System_Net_Sockets_SocketReceiveFromResult_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010CC0B0, void, TaskAwaiter_1_System_Net_Sockets_SocketReceiveFromResult__UnsafeOnCompleted, (TaskAwaiter_1_System_Net_Sockets_SocketReceiveFromResult_ * __this, Action * continuation, MethodInfo * method)); +DO_APP_FUNC(0x010CC040, bool, TaskAwaiter_1_System_Net_Sockets_SocketReceiveFromResult__get_IsCompleted, (TaskAwaiter_1_System_Net_Sockets_SocketReceiveFromResult_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, TaskAwaiter_1_System_Net_Sockets_SocketReceiveMessageFromResult___ctor, (TaskAwaiter_1_System_Net_Sockets_SocketReceiveMessageFromResult_ * __this, Task_1_System_Net_Sockets_SocketReceiveMessageFromResult_ * task, MethodInfo * method)); +DO_APP_FUNC(0x010CC3B0, SocketReceiveMessageFromResult, TaskAwaiter_1_System_Net_Sockets_SocketReceiveMessageFromResult__GetResult, (TaskAwaiter_1_System_Net_Sockets_SocketReceiveMessageFromResult_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010CC0B0, void, TaskAwaiter_1_System_Net_Sockets_SocketReceiveMessageFromResult__UnsafeOnCompleted, (TaskAwaiter_1_System_Net_Sockets_SocketReceiveMessageFromResult_ * __this, Action * continuation, MethodInfo * method)); +DO_APP_FUNC(0x010CC040, bool, TaskAwaiter_1_System_Net_Sockets_SocketReceiveMessageFromResult__get_IsCompleted, (TaskAwaiter_1_System_Net_Sockets_SocketReceiveMessageFromResult_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, TaskAwaiter_1_System_Net_Sockets_UdpReceiveResult___ctor, (TaskAwaiter_1_System_Net_Sockets_UdpReceiveResult_ * __this, Task_1_System_Net_Sockets_UdpReceiveResult_ * task, MethodInfo * method)); +DO_APP_FUNC(0x010CC220, UdpReceiveResult, TaskAwaiter_1_System_Net_Sockets_UdpReceiveResult__GetResult, (TaskAwaiter_1_System_Net_Sockets_UdpReceiveResult_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010CC0B0, void, TaskAwaiter_1_System_Net_Sockets_UdpReceiveResult__UnsafeOnCompleted, (TaskAwaiter_1_System_Net_Sockets_UdpReceiveResult_ * __this, Action * continuation, MethodInfo * method)); +DO_APP_FUNC(0x010CC040, bool, TaskAwaiter_1_System_Net_Sockets_UdpReceiveResult__get_IsCompleted, (TaskAwaiter_1_System_Net_Sockets_UdpReceiveResult_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, TaskAwaiter_1_System_Net_WebSockets_ValueWebSocketReceiveResult___ctor, (TaskAwaiter_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, Task_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * task, MethodInfo * method)); +DO_APP_FUNC(0x010CC170, ValueWebSocketReceiveResult, TaskAwaiter_1_System_Net_WebSockets_ValueWebSocketReceiveResult__GetResult, (TaskAwaiter_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010CC0B0, void, TaskAwaiter_1_System_Net_WebSockets_ValueWebSocketReceiveResult__UnsafeOnCompleted, (TaskAwaiter_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, Action * continuation, MethodInfo * method)); +DO_APP_FUNC(0x010CC040, bool, TaskAwaiter_1_System_Net_WebSockets_ValueWebSocketReceiveResult__get_IsCompleted, (TaskAwaiter_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, TaskAwaiter_1_System_Threading_Tasks_VoidTaskResult___ctor, (TaskAwaiter_1_System_Threading_Tasks_VoidTaskResult_ * __this, Task_1_VoidTaskResult_ * task, MethodInfo * method)); +DO_APP_FUNC(0x010CC170, VoidTaskResult, TaskAwaiter_1_System_Threading_Tasks_VoidTaskResult__GetResult, (TaskAwaiter_1_System_Threading_Tasks_VoidTaskResult_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010CC0B0, void, TaskAwaiter_1_System_Threading_Tasks_VoidTaskResult__UnsafeOnCompleted, (TaskAwaiter_1_System_Threading_Tasks_VoidTaskResult_ * __this, Action * continuation, MethodInfo * method)); +DO_APP_FUNC(0x010CC040, bool, TaskAwaiter_1_System_Threading_Tasks_VoidTaskResult__get_IsCompleted, (TaskAwaiter_1_System_Threading_Tasks_VoidTaskResult_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, TaskAwaiter_1_System_IO_WaitForChangedResult___ctor, (TaskAwaiter_1_System_IO_WaitForChangedResult_ * __this, Task_1_System_IO_WaitForChangedResult_ * task, MethodInfo * method)); +DO_APP_FUNC(0x010CC3B0, WaitForChangedResult, TaskAwaiter_1_System_IO_WaitForChangedResult__GetResult, (TaskAwaiter_1_System_IO_WaitForChangedResult_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010CC0B0, void, TaskAwaiter_1_System_IO_WaitForChangedResult__UnsafeOnCompleted, (TaskAwaiter_1_System_IO_WaitForChangedResult_ * __this, Action * continuation, MethodInfo * method)); +DO_APP_FUNC(0x010CC040, bool, TaskAwaiter_1_System_IO_WaitForChangedResult__get_IsCompleted, (TaskAwaiter_1_System_IO_WaitForChangedResult_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010CC480, void, TaskCompletionSource_1_System_Boolean___ctor, (TaskCompletionSource_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1AFF0, TaskCompletionSource_1_System_Boolean___ctor__MethodInfo); DO_APP_FUNC(0x010CC570, void, TaskCompletionSource_1_System_Boolean___ctor_1, (TaskCompletionSource_1_System_Boolean_ * __this, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EE60, TaskCompletionSource_1_System_Boolean___ctor_1__MethodInfo); DO_APP_FUNC(0x010CC550, void, TaskCompletionSource_1_System_Boolean___ctor_2, (TaskCompletionSource_1_System_Boolean_ * __this, TaskCreationOptions__Enum creationOptions, MethodInfo * method)); DO_APP_FUNC(0x010CC590, void, TaskCompletionSource_1_System_Boolean___ctor_3, (TaskCompletionSource_1_System_Boolean_ * __this, Object * state, TaskCreationOptions__Enum creationOptions, MethodInfo * method)); DO_APP_FUNC(0x010CCA10, void, TaskCompletionSource_1_System_Boolean__SetCanceled, (TaskCompletionSource_1_System_Boolean_ * __this, MethodInfo * method)); @@ -192264,10 +210933,14 @@ DO_APP_FUNC(0x010CC680, void, TaskCompletionSource_1_System_Boolean__SpinUntilCo DO_APP_FUNC(0x010CC920, bool, TaskCompletionSource_1_System_Boolean__TrySetCanceled, (TaskCompletionSource_1_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010CC950, bool, TaskCompletionSource_1_System_Boolean__TrySetCanceled_1, (TaskCompletionSource_1_System_Boolean_ * __this, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x010CC790, bool, TaskCompletionSource_1_System_Boolean__TrySetException, (TaskCompletionSource_1_System_Boolean_ * __this, Exception * exception, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23400, TaskCompletionSource_1_System_Boolean__TrySetException__MethodInfo); DO_APP_FUNC(0x010CC870, bool, TaskCompletionSource_1_System_Boolean__TrySetResult, (TaskCompletionSource_1_System_Boolean_ * __this, bool result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1AF98, TaskCompletionSource_1_System_Boolean__TrySetResult__MethodInfo); DO_APP_FUNC(0x003BB3C0, Task_1_System_Boolean_ *, TaskCompletionSource_1_System_Boolean__get_Task, (TaskCompletionSource_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1AFE0, TaskCompletionSource_1_System_Boolean__get_Task__MethodInfo); DO_APP_FUNC(0x010CC480, void, TaskCompletionSource_1_System_Int32___ctor, (TaskCompletionSource_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010CC570, void, TaskCompletionSource_1_System_Int32___ctor_1, (TaskCompletionSource_1_System_Int32_ * __this, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EDE8, TaskCompletionSource_1_System_Int32___ctor_1__MethodInfo); DO_APP_FUNC(0x010CC550, void, TaskCompletionSource_1_System_Int32___ctor_2, (TaskCompletionSource_1_System_Int32_ * __this, TaskCreationOptions__Enum creationOptions, MethodInfo * method)); DO_APP_FUNC(0x010CC590, void, TaskCompletionSource_1_System_Int32___ctor_3, (TaskCompletionSource_1_System_Int32_ * __this, Object * state, TaskCreationOptions__Enum creationOptions, MethodInfo * method)); DO_APP_FUNC(0x010CCA10, void, TaskCompletionSource_1_System_Int32__SetCanceled, (TaskCompletionSource_1_System_Int32_ * __this, MethodInfo * method)); @@ -192277,8 +210950,11 @@ DO_APP_FUNC(0x010CCA50, void, TaskCompletionSource_1_System_Int32__SpinUntilComp DO_APP_FUNC(0x010CC920, bool, TaskCompletionSource_1_System_Int32__TrySetCanceled, (TaskCompletionSource_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010CC950, bool, TaskCompletionSource_1_System_Int32__TrySetCanceled_1, (TaskCompletionSource_1_System_Int32_ * __this, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x010CC790, bool, TaskCompletionSource_1_System_Int32__TrySetException, (TaskCompletionSource_1_System_Int32_ * __this, Exception * exception, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D232E0, TaskCompletionSource_1_System_Int32__TrySetException__MethodInfo); DO_APP_FUNC(0x010CC870, bool, TaskCompletionSource_1_System_Int32__TrySetResult, (TaskCompletionSource_1_System_Int32_ * __this, int32_t result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D232E8, TaskCompletionSource_1_System_Int32__TrySetResult__MethodInfo); DO_APP_FUNC(0x003BB3C0, Task_1_System_Int32_ *, TaskCompletionSource_1_System_Int32__get_Task, (TaskCompletionSource_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EDC8, TaskCompletionSource_1_System_Int32__get_Task__MethodInfo); DO_APP_FUNC(0x010CC480, void, TaskCompletionSource_1_System_Int64___ctor, (TaskCompletionSource_1_System_Int64_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010CC570, void, TaskCompletionSource_1_System_Int64___ctor_1, (TaskCompletionSource_1_System_Int64_ * __this, Object * state, MethodInfo * method)); DO_APP_FUNC(0x010CC550, void, TaskCompletionSource_1_System_Int64___ctor_2, (TaskCompletionSource_1_System_Int64_ * __this, TaskCreationOptions__Enum creationOptions, MethodInfo * method)); @@ -192293,18 +210969,27 @@ DO_APP_FUNC(0x010CC790, bool, TaskCompletionSource_1_System_Int64__TrySetExcepti DO_APP_FUNC(0x010CC870, bool, TaskCompletionSource_1_System_Int64__TrySetResult, (TaskCompletionSource_1_System_Int64_ * __this, int64_t result, MethodInfo * method)); DO_APP_FUNC(0x003BB3C0, Task_1_System_Int64_ *, TaskCompletionSource_1_System_Int64__get_Task, (TaskCompletionSource_1_System_Int64_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010CC480, void, TaskCompletionSource_1_System_Object___ctor, (TaskCompletionSource_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCAAA8, TaskCompletionSource_1_System_Object___ctor__MethodInfo); DO_APP_FUNC(0x010CC570, void, TaskCompletionSource_1_System_Object___ctor_1, (TaskCompletionSource_1_System_Object_ * __this, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4DC0, TaskCompletionSource_1_System_Object___ctor_1__MethodInfo); DO_APP_FUNC(0x010CC550, void, TaskCompletionSource_1_System_Object___ctor_2, (TaskCompletionSource_1_System_Object_ * __this, TaskCreationOptions__Enum creationOptions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB4F8, TaskCompletionSource_1_System_Object___ctor_2__MethodInfo); DO_APP_FUNC(0x010CC590, void, TaskCompletionSource_1_System_Object___ctor_3, (TaskCompletionSource_1_System_Object_ * __this, Object * state, TaskCreationOptions__Enum creationOptions, MethodInfo * method)); DO_APP_FUNC(0x010CCA10, void, TaskCompletionSource_1_System_Object__SetCanceled, (TaskCompletionSource_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3980, TaskCompletionSource_1_System_Object__SetCanceled__MethodInfo); DO_APP_FUNC(0x010CC820, void, TaskCompletionSource_1_System_Object__SetException, (TaskCompletionSource_1_System_Object_ * __this, Exception * exception, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3990, TaskCompletionSource_1_System_Object__SetException__MethodInfo); DO_APP_FUNC(0x010CC8E0, void, TaskCompletionSource_1_System_Object__SetResult, (TaskCompletionSource_1_System_Object_ * __this, Object * result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB4F0, TaskCompletionSource_1_System_Object__SetResult__MethodInfo); DO_APP_FUNC(0x010CCC70, void, TaskCompletionSource_1_System_Object__SpinUntilCompleted, (TaskCompletionSource_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010CC920, bool, TaskCompletionSource_1_System_Object__TrySetCanceled, (TaskCompletionSource_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCAA20, TaskCompletionSource_1_System_Object__TrySetCanceled__MethodInfo); DO_APP_FUNC(0x010CC950, bool, TaskCompletionSource_1_System_Object__TrySetCanceled_1, (TaskCompletionSource_1_System_Object_ * __this, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x010CC790, bool, TaskCompletionSource_1_System_Object__TrySetException, (TaskCompletionSource_1_System_Object_ * __this, Exception * exception, MethodInfo * method)); DO_APP_FUNC(0x010CC870, bool, TaskCompletionSource_1_System_Object__TrySetResult, (TaskCompletionSource_1_System_Object_ * __this, Object * result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCAA30, TaskCompletionSource_1_System_Object__TrySetResult__MethodInfo); DO_APP_FUNC(0x003BB3C0, Task_1_System_Object_ *, TaskCompletionSource_1_System_Object__get_Task, (TaskCompletionSource_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCAAA0, TaskCompletionSource_1_System_Object__get_Task__MethodInfo); DO_APP_FUNC(0x010CC480, void, TaskCompletionSource_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___ctor, (TaskCompletionSource_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010CC570, void, TaskCompletionSource_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___ctor_1, (TaskCompletionSource_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, Object * state, MethodInfo * method)); DO_APP_FUNC(0x010CC550, void, TaskCompletionSource_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___ctor_2, (TaskCompletionSource_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, TaskCreationOptions__Enum creationOptions, MethodInfo * method)); @@ -192329,8 +211014,11 @@ DO_APP_FUNC(0x010CCF60, void, TaskCompletionSource_1_System_Net_Sockets_SocketRe DO_APP_FUNC(0x010CC920, bool, TaskCompletionSource_1_System_Net_Sockets_SocketReceiveFromResult__TrySetCanceled, (TaskCompletionSource_1_System_Net_Sockets_SocketReceiveFromResult_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010CC950, bool, TaskCompletionSource_1_System_Net_Sockets_SocketReceiveFromResult__TrySetCanceled_1, (TaskCompletionSource_1_System_Net_Sockets_SocketReceiveFromResult_ * __this, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x010CC790, bool, TaskCompletionSource_1_System_Net_Sockets_SocketReceiveFromResult__TrySetException, (TaskCompletionSource_1_System_Net_Sockets_SocketReceiveFromResult_ * __this, Exception * exception, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23330, TaskCompletionSource_1_System_Net_Sockets_SocketReceiveFromResult__TrySetException__MethodInfo); DO_APP_FUNC(0x010CCE90, bool, TaskCompletionSource_1_System_Net_Sockets_SocketReceiveFromResult__TrySetResult, (TaskCompletionSource_1_System_Net_Sockets_SocketReceiveFromResult_ * __this, SocketReceiveFromResult result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23338, TaskCompletionSource_1_System_Net_Sockets_SocketReceiveFromResult__TrySetResult__MethodInfo); DO_APP_FUNC(0x003BB3C0, Task_1_System_Net_Sockets_SocketReceiveFromResult_ *, TaskCompletionSource_1_System_Net_Sockets_SocketReceiveFromResult__get_Task, (TaskCompletionSource_1_System_Net_Sockets_SocketReceiveFromResult_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1ED28, TaskCompletionSource_1_System_Net_Sockets_SocketReceiveFromResult__get_Task__MethodInfo); DO_APP_FUNC(0x010CC480, void, TaskCompletionSource_1_System_Net_Sockets_SocketReceiveMessageFromResult___ctor, (TaskCompletionSource_1_System_Net_Sockets_SocketReceiveMessageFromResult_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010CC570, void, TaskCompletionSource_1_System_Net_Sockets_SocketReceiveMessageFromResult___ctor_1, (TaskCompletionSource_1_System_Net_Sockets_SocketReceiveMessageFromResult_ * __this, Object * state, MethodInfo * method)); DO_APP_FUNC(0x010CC550, void, TaskCompletionSource_1_System_Net_Sockets_SocketReceiveMessageFromResult___ctor_2, (TaskCompletionSource_1_System_Net_Sockets_SocketReceiveMessageFromResult_ * __this, TaskCreationOptions__Enum creationOptions, MethodInfo * method)); @@ -192342,9 +211030,13 @@ DO_APP_FUNC(0x010CD070, void, TaskCompletionSource_1_System_Net_Sockets_SocketRe DO_APP_FUNC(0x010CC920, bool, TaskCompletionSource_1_System_Net_Sockets_SocketReceiveMessageFromResult__TrySetCanceled, (TaskCompletionSource_1_System_Net_Sockets_SocketReceiveMessageFromResult_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010CC950, bool, TaskCompletionSource_1_System_Net_Sockets_SocketReceiveMessageFromResult__TrySetCanceled_1, (TaskCompletionSource_1_System_Net_Sockets_SocketReceiveMessageFromResult_ * __this, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x010CC790, bool, TaskCompletionSource_1_System_Net_Sockets_SocketReceiveMessageFromResult__TrySetException, (TaskCompletionSource_1_System_Net_Sockets_SocketReceiveMessageFromResult_ * __this, Exception * exception, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23340, TaskCompletionSource_1_System_Net_Sockets_SocketReceiveMessageFromResult__TrySetException__MethodInfo); DO_APP_FUNC(0x010CD180, bool, TaskCompletionSource_1_System_Net_Sockets_SocketReceiveMessageFromResult__TrySetResult, (TaskCompletionSource_1_System_Net_Sockets_SocketReceiveMessageFromResult_ * __this, SocketReceiveMessageFromResult result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23348, TaskCompletionSource_1_System_Net_Sockets_SocketReceiveMessageFromResult__TrySetResult__MethodInfo); DO_APP_FUNC(0x003BB3C0, Task_1_System_Net_Sockets_SocketReceiveMessageFromResult_ *, TaskCompletionSource_1_System_Net_Sockets_SocketReceiveMessageFromResult__get_Task, (TaskCompletionSource_1_System_Net_Sockets_SocketReceiveMessageFromResult_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1ED10, TaskCompletionSource_1_System_Net_Sockets_SocketReceiveMessageFromResult__get_Task__MethodInfo); DO_APP_FUNC(0x010CC480, void, TaskCompletionSource_1_System_IO_WaitForChangedResult___ctor, (TaskCompletionSource_1_System_IO_WaitForChangedResult_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA648, TaskCompletionSource_1_System_IO_WaitForChangedResult___ctor__MethodInfo); DO_APP_FUNC(0x010CC570, void, TaskCompletionSource_1_System_IO_WaitForChangedResult___ctor_1, (TaskCompletionSource_1_System_IO_WaitForChangedResult_ * __this, Object * state, MethodInfo * method)); DO_APP_FUNC(0x010CC550, void, TaskCompletionSource_1_System_IO_WaitForChangedResult___ctor_2, (TaskCompletionSource_1_System_IO_WaitForChangedResult_ * __this, TaskCreationOptions__Enum creationOptions, MethodInfo * method)); DO_APP_FUNC(0x010CC590, void, TaskCompletionSource_1_System_IO_WaitForChangedResult___ctor_3, (TaskCompletionSource_1_System_IO_WaitForChangedResult_ * __this, Object * state, TaskCreationOptions__Enum creationOptions, MethodInfo * method)); @@ -192356,12 +211048,15 @@ DO_APP_FUNC(0x010CC920, bool, TaskCompletionSource_1_System_IO_WaitForChangedRes DO_APP_FUNC(0x010CC950, bool, TaskCompletionSource_1_System_IO_WaitForChangedResult__TrySetCanceled_1, (TaskCompletionSource_1_System_IO_WaitForChangedResult_ * __this, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x010CC790, bool, TaskCompletionSource_1_System_IO_WaitForChangedResult__TrySetException, (TaskCompletionSource_1_System_IO_WaitForChangedResult_ * __this, Exception * exception, MethodInfo * method)); DO_APP_FUNC(0x010CD180, bool, TaskCompletionSource_1_System_IO_WaitForChangedResult__TrySetResult, (TaskCompletionSource_1_System_IO_WaitForChangedResult_ * __this, WaitForChangedResult result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA5F8, TaskCompletionSource_1_System_IO_WaitForChangedResult__TrySetResult__MethodInfo); DO_APP_FUNC(0x003BB3C0, Task_1_System_IO_WaitForChangedResult_ *, TaskCompletionSource_1_System_IO_WaitForChangedResult__get_Task, (TaskCompletionSource_1_System_IO_WaitForChangedResult_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA668, TaskCompletionSource_1_System_IO_WaitForChangedResult__get_Task__MethodInfo); DO_APP_FUNC(0x010CD450, void, TaskFactory_1_System_Nullable_1___ctor, (TaskFactory_1_System_Nullable_1_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010CD490, void, TaskFactory_1_System_Nullable_1___ctor_1, (TaskFactory_1_System_Nullable_1_ * __this, CancellationToken cancellationToken, TaskCreationOptions__Enum creationOptions, TaskContinuationOptions__Enum continuationOptions, TaskScheduler * scheduler, MethodInfo * method)); DO_APP_FUNC(0x010CDA30, Task_1_System_Nullable_1_ *, TaskFactory_1_System_Nullable_1__FromAsync, (TaskFactory_1_System_Nullable_1_ * __this, Func_3_AsyncCallback_Object_IAsyncResult_ * beginMethod, Func_2_IAsyncResult_Nullable_1_Int32_ * endMethod, Object * state, MethodInfo * method)); DO_APP_FUNC(0x010CD680, void, TaskFactory_1_System_Nullable_1__FromAsyncCoreLogic, (IAsyncResult * iar, Func_2_IAsyncResult_Nullable_1_Int32_ * endFunction, Action_1_IAsyncResult_ * endAction, Task_1_System_Nullable_1_ * promise, bool requiresSynchronization, MethodInfo * method)); DO_APP_FUNC(0x010CDAA0, Task_1_System_Nullable_1_ *, TaskFactory_1_System_Nullable_1__FromAsyncImpl, (Func_3_AsyncCallback_Object_IAsyncResult_ * beginMethod, Func_2_IAsyncResult_Nullable_1_Int32_ * endFunction, Action_1_IAsyncResult_ * endAction, Object * state, TaskCreationOptions__Enum creationOptions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9CF0, TaskFactory_1_System_Nullable_1__FromAsyncImpl__MethodInfo); DO_APP_FUNC(0x010CD380, TaskScheduler *, TaskFactory_1_System_Nullable_1__GetDefaultScheduler, (TaskFactory_1_System_Nullable_1_ * __this, Task * currTask, MethodInfo * method)); DO_APP_FUNC(0x010CD590, Task_1_System_Nullable_1_ *, TaskFactory_1_System_Nullable_1__StartNew, (TaskFactory_1_System_Nullable_1_ * __this, Func_1_Nullable_1_Int32_ * function, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x010CD450, void, TaskFactory_1_System_ValueTuple_2___ctor, (TaskFactory_1_System_ValueTuple_2_ * __this, MethodInfo * method)); @@ -192369,6 +211064,7 @@ DO_APP_FUNC(0x010CD490, void, TaskFactory_1_System_ValueTuple_2___ctor_1, (TaskF DO_APP_FUNC(0x010CDA30, Task_1_System_ValueTuple_2_ *, TaskFactory_1_System_ValueTuple_2__FromAsync, (TaskFactory_1_System_ValueTuple_2_ * __this, Func_3_AsyncCallback_Object_IAsyncResult_ * beginMethod, Func_2_IAsyncResult_ValueTuple_2_Boolean_Object_ * endMethod, Object * state, MethodInfo * method)); DO_APP_FUNC(0x010CE230, void, TaskFactory_1_System_ValueTuple_2__FromAsyncCoreLogic, (IAsyncResult * iar, Func_2_IAsyncResult_ValueTuple_2_Boolean_Object_ * endFunction, Action_1_IAsyncResult_ * endAction, Task_1_System_ValueTuple_2_ * promise, bool requiresSynchronization, MethodInfo * method)); DO_APP_FUNC(0x010CE600, Task_1_System_ValueTuple_2_ *, TaskFactory_1_System_ValueTuple_2__FromAsyncImpl, (Func_3_AsyncCallback_Object_IAsyncResult_ * beginMethod, Func_2_IAsyncResult_ValueTuple_2_Boolean_Object_ * endFunction, Action_1_IAsyncResult_ * endAction, Object * state, TaskCreationOptions__Enum creationOptions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9CE8, TaskFactory_1_System_ValueTuple_2__FromAsyncImpl__MethodInfo); DO_APP_FUNC(0x010CE070, TaskScheduler *, TaskFactory_1_System_ValueTuple_2__GetDefaultScheduler, (TaskFactory_1_System_ValueTuple_2_ * __this, Task * currTask, MethodInfo * method)); DO_APP_FUNC(0x010CE140, Task_1_System_ValueTuple_2_ *, TaskFactory_1_System_ValueTuple_2__StartNew, (TaskFactory_1_System_ValueTuple_2_ * __this, Func_1_ValueTuple_2_Boolean_Object_ * function, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x010CD450, void, TaskFactory_1_System_ValueTuple_3__1__ctor, (TaskFactory_1_System_ValueTuple_3__1 * __this, MethodInfo * method)); @@ -192376,6 +211072,7 @@ DO_APP_FUNC(0x010CD490, void, TaskFactory_1_System_ValueTuple_3__1__ctor_1, (Tas DO_APP_FUNC(0x010CDA30, Task_1_System_ValueTuple_3__1 *, TaskFactory_1_System_ValueTuple_3__1_FromAsync, (TaskFactory_1_System_ValueTuple_3__1 * __this, Func_3_AsyncCallback_Object_IAsyncResult_ * beginMethod, Func_2_IAsyncResult_ValueTuple_3_Object_Object_Int32_ * endMethod, Object * state, MethodInfo * method)); DO_APP_FUNC(0x010CEDA0, void, TaskFactory_1_System_ValueTuple_3__1_FromAsyncCoreLogic, (IAsyncResult * iar, Func_2_IAsyncResult_ValueTuple_3_Object_Object_Int32_ * endFunction, Action_1_IAsyncResult_ * endAction, Task_1_System_ValueTuple_3__1 * promise, bool requiresSynchronization, MethodInfo * method)); DO_APP_FUNC(0x010CF1C0, Task_1_System_ValueTuple_3__1 *, TaskFactory_1_System_ValueTuple_3__1_FromAsyncImpl, (Func_3_AsyncCallback_Object_IAsyncResult_ * beginMethod, Func_2_IAsyncResult_ValueTuple_3_Object_Object_Int32_ * endFunction, Action_1_IAsyncResult_ * endAction, Object * state, TaskCreationOptions__Enum creationOptions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9CE0, TaskFactory_1_System_ValueTuple_3__1_FromAsyncImpl__MethodInfo); DO_APP_FUNC(0x010CEBE0, TaskScheduler *, TaskFactory_1_System_ValueTuple_3__1_GetDefaultScheduler, (TaskFactory_1_System_ValueTuple_3__1 * __this, Task * currTask, MethodInfo * method)); DO_APP_FUNC(0x010CECB0, Task_1_System_ValueTuple_3__1 *, TaskFactory_1_System_ValueTuple_3__1_StartNew, (TaskFactory_1_System_ValueTuple_3__1 * __this, Func_1_ValueTuple_3_Object_Object_Int32_ * function, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x010CD450, void, TaskFactory_1_System_ValueTuple_5__1__ctor, (TaskFactory_1_System_ValueTuple_5__1 * __this, MethodInfo * method)); @@ -192383,6 +211080,7 @@ DO_APP_FUNC(0x010CD490, void, TaskFactory_1_System_ValueTuple_5__1__ctor_1, (Tas DO_APP_FUNC(0x010CDA30, Task_1_System_ValueTuple_5__1 *, TaskFactory_1_System_ValueTuple_5__1_FromAsync, (TaskFactory_1_System_ValueTuple_5__1 * __this, Func_3_AsyncCallback_Object_IAsyncResult_ * beginMethod, Func_2_IAsyncResult_ValueTuple_5_Object_Boolean_Boolean_Object_Object_ * endMethod, Object * state, MethodInfo * method)); DO_APP_FUNC(0x010CF980, void, TaskFactory_1_System_ValueTuple_5__1_FromAsyncCoreLogic, (IAsyncResult * iar, Func_2_IAsyncResult_ValueTuple_5_Object_Boolean_Boolean_Object_Object_ * endFunction, Action_1_IAsyncResult_ * endAction, Task_1_System_ValueTuple_5__1 * promise, bool requiresSynchronization, MethodInfo * method)); DO_APP_FUNC(0x010CFDB0, Task_1_System_ValueTuple_5__1 *, TaskFactory_1_System_ValueTuple_5__1_FromAsyncImpl, (Func_3_AsyncCallback_Object_IAsyncResult_ * beginMethod, Func_2_IAsyncResult_ValueTuple_5_Object_Boolean_Boolean_Object_Object_ * endFunction, Action_1_IAsyncResult_ * endAction, Object * state, TaskCreationOptions__Enum creationOptions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9CD0, TaskFactory_1_System_ValueTuple_5__1_FromAsyncImpl__MethodInfo); DO_APP_FUNC(0x010CF7C0, TaskScheduler *, TaskFactory_1_System_ValueTuple_5__1_GetDefaultScheduler, (TaskFactory_1_System_ValueTuple_5__1 * __this, Task * currTask, MethodInfo * method)); DO_APP_FUNC(0x010CF890, Task_1_System_ValueTuple_5__1 *, TaskFactory_1_System_ValueTuple_5__1_StartNew, (TaskFactory_1_System_ValueTuple_5__1 * __this, Func_1_ValueTuple_5_Object_Boolean_Boolean_Object_Object_ * function, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x010CD450, void, TaskFactory_1_System_Boolean___ctor, (TaskFactory_1_System_Boolean_ * __this, MethodInfo * method)); @@ -192390,6 +211088,7 @@ DO_APP_FUNC(0x010CD490, void, TaskFactory_1_System_Boolean___ctor_1, (TaskFactor DO_APP_FUNC(0x010CDA30, Task_1_System_Boolean_ *, TaskFactory_1_System_Boolean__FromAsync, (TaskFactory_1_System_Boolean_ * __this, Func_3_AsyncCallback_Object_IAsyncResult_ * beginMethod, Func_2_IAsyncResult_Boolean_ * endMethod, Object * state, MethodInfo * method)); DO_APP_FUNC(0x010D0570, void, TaskFactory_1_System_Boolean__FromAsyncCoreLogic, (IAsyncResult * iar, Func_2_IAsyncResult_Boolean_ * endFunction, Action_1_IAsyncResult_ * endAction, Task_1_System_Boolean_ * promise, bool requiresSynchronization, MethodInfo * method)); DO_APP_FUNC(0x010D0910, Task_1_System_Boolean_ *, TaskFactory_1_System_Boolean__FromAsyncImpl, (Func_3_AsyncCallback_Object_IAsyncResult_ * beginMethod, Func_2_IAsyncResult_Boolean_ * endFunction, Action_1_IAsyncResult_ * endAction, Object * state, TaskCreationOptions__Enum creationOptions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9CB0, TaskFactory_1_System_Boolean__FromAsyncImpl__MethodInfo); DO_APP_FUNC(0x010D03B0, TaskScheduler *, TaskFactory_1_System_Boolean__GetDefaultScheduler, (TaskFactory_1_System_Boolean_ * __this, Task * currTask, MethodInfo * method)); DO_APP_FUNC(0x010D0480, Task_1_System_Boolean_ *, TaskFactory_1_System_Boolean__StartNew, (TaskFactory_1_System_Boolean_ * __this, Func_1_Boolean_ * function, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x00C74440, Task_1_System_Int32_ *, TaskFactory_1_System_Int32__FromAsync, (TaskFactory_1_System_Int32_ * __this, Func_5_ArraySegment_1_Byte_Int32Enum_AsyncCallback_Object_IAsyncResult_ * beginMethod, Func_2_IAsyncResult_Int32_ * endMethod, ArraySegment_1_Byte_ arg1, Int32Enum__Enum arg2, Object * state, MethodInfo * method)); @@ -192411,8 +211110,10 @@ DO_APP_FUNC(0x00C76200, Task_1_System_Int32_ *, TaskFactory_1_System_Int32__From DO_APP_FUNC(0x010CD450, void, TaskFactory_1_System_Int32___ctor, (TaskFactory_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010CD490, void, TaskFactory_1_System_Int32___ctor_1, (TaskFactory_1_System_Int32_ * __this, CancellationToken cancellationToken, TaskCreationOptions__Enum creationOptions, TaskContinuationOptions__Enum continuationOptions, TaskScheduler * scheduler, MethodInfo * method)); DO_APP_FUNC(0x010CDA30, Task_1_System_Int32_ *, TaskFactory_1_System_Int32__FromAsync_5, (TaskFactory_1_System_Int32_ * __this, Func_3_AsyncCallback_Object_IAsyncResult_ * beginMethod, Func_2_IAsyncResult_Int32_ * endMethod, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22B38, TaskFactory_1_System_Int32__FromAsync_5__MethodInfo); DO_APP_FUNC(0x010D10A0, void, TaskFactory_1_System_Int32__FromAsyncCoreLogic, (IAsyncResult * iar, Func_2_IAsyncResult_Int32_ * endFunction, Action_1_IAsyncResult_ * endAction, Task_1_System_Int32_ * promise, bool requiresSynchronization, MethodInfo * method)); DO_APP_FUNC(0x010D1440, Task_1_System_Int32_ *, TaskFactory_1_System_Int32__FromAsyncImpl_5, (Func_3_AsyncCallback_Object_IAsyncResult_ * beginMethod, Func_2_IAsyncResult_Int32_ * endFunction, Action_1_IAsyncResult_ * endAction, Object * state, TaskCreationOptions__Enum creationOptions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9C98, TaskFactory_1_System_Int32__FromAsyncImpl_5__MethodInfo); DO_APP_FUNC(0x010D0EE0, TaskScheduler *, TaskFactory_1_System_Int32__GetDefaultScheduler, (TaskFactory_1_System_Int32_ * __this, Task * currTask, MethodInfo * method)); DO_APP_FUNC(0x010D0FB0, Task_1_System_Int32_ *, TaskFactory_1_System_Int32__StartNew, (TaskFactory_1_System_Int32_ * __this, Func_1_Int32_ * function, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x010CD450, void, TaskFactory_1_System_Int32Enum___ctor, (TaskFactory_1_System_Int32Enum_ * __this, MethodInfo * method)); @@ -192420,6 +211121,7 @@ DO_APP_FUNC(0x010CD490, void, TaskFactory_1_System_Int32Enum___ctor_1, (TaskFact DO_APP_FUNC(0x010CDA30, Task_1_System_Int32Enum_ *, TaskFactory_1_System_Int32Enum__FromAsync, (TaskFactory_1_System_Int32Enum_ * __this, Func_3_AsyncCallback_Object_IAsyncResult_ * beginMethod, Func_2_IAsyncResult_Int32Enum_ * endMethod, Object * state, MethodInfo * method)); DO_APP_FUNC(0x010D1BD0, void, TaskFactory_1_System_Int32Enum__FromAsyncCoreLogic, (IAsyncResult * iar, Func_2_IAsyncResult_Int32Enum_ * endFunction, Action_1_IAsyncResult_ * endAction, Task_1_System_Int32Enum_ * promise, bool requiresSynchronization, MethodInfo * method)); DO_APP_FUNC(0x010D1DC0, Task_1_System_Int32Enum_ *, TaskFactory_1_System_Int32Enum__FromAsyncImpl, (Func_3_AsyncCallback_Object_IAsyncResult_ * beginMethod, Func_2_IAsyncResult_Int32Enum_ * endFunction, Action_1_IAsyncResult_ * endAction, Object * state, TaskCreationOptions__Enum creationOptions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9C50, TaskFactory_1_System_Int32Enum__FromAsyncImpl__MethodInfo); DO_APP_FUNC(0x010D1A10, TaskScheduler *, TaskFactory_1_System_Int32Enum__GetDefaultScheduler, (TaskFactory_1_System_Int32Enum_ * __this, Task * currTask, MethodInfo * method)); DO_APP_FUNC(0x010D1AE0, Task_1_System_Int32Enum_ *, TaskFactory_1_System_Int32Enum__StartNew, (TaskFactory_1_System_Int32Enum_ * __this, Func_1_Int32Enum_ * function, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x010CD450, void, TaskFactory_1_System_Int64___ctor, (TaskFactory_1_System_Int64_ * __this, MethodInfo * method)); @@ -192427,6 +211129,7 @@ DO_APP_FUNC(0x010CD490, void, TaskFactory_1_System_Int64___ctor_1, (TaskFactory_ DO_APP_FUNC(0x010CDA30, Task_1_System_Int64_ *, TaskFactory_1_System_Int64__FromAsync, (TaskFactory_1_System_Int64_ * __this, Func_3_AsyncCallback_Object_IAsyncResult_ * beginMethod, Func_2_IAsyncResult_Int64_ * endMethod, Object * state, MethodInfo * method)); DO_APP_FUNC(0x010D2550, void, TaskFactory_1_System_Int64__FromAsyncCoreLogic, (IAsyncResult * iar, Func_2_IAsyncResult_Int64_ * endFunction, Action_1_IAsyncResult_ * endAction, Task_1_System_Int64_ * promise, bool requiresSynchronization, MethodInfo * method)); DO_APP_FUNC(0x010D2900, Task_1_System_Int64_ *, TaskFactory_1_System_Int64__FromAsyncImpl, (Func_3_AsyncCallback_Object_IAsyncResult_ * beginMethod, Func_2_IAsyncResult_Int64_ * endFunction, Action_1_IAsyncResult_ * endAction, Object * state, TaskCreationOptions__Enum creationOptions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9C20, TaskFactory_1_System_Int64__FromAsyncImpl__MethodInfo); DO_APP_FUNC(0x010D2390, TaskScheduler *, TaskFactory_1_System_Int64__GetDefaultScheduler, (TaskFactory_1_System_Int64_ * __this, Task * currTask, MethodInfo * method)); DO_APP_FUNC(0x010D2460, Task_1_System_Int64_ *, TaskFactory_1_System_Int64__StartNew, (TaskFactory_1_System_Int64_ * __this, Func_1_Int64_ * function, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x00C76380, Task_1_System_Object_ *, TaskFactory_1_System_Object__FromAsync, (TaskFactory_1_System_Object_ * __this, Func_4_Object_AsyncCallback_Object_IAsyncResult_ * beginMethod, Func_2_IAsyncResult_Object_ * endMethod, Object * arg1, Object * state, MethodInfo * method)); @@ -192447,6 +211150,7 @@ DO_APP_FUNC(0x010CD490, void, TaskFactory_1_System_Object___ctor_1, (TaskFactory DO_APP_FUNC(0x010CDA30, Task_1_System_Object_ *, TaskFactory_1_System_Object__FromAsync_4, (TaskFactory_1_System_Object_ * __this, Func_3_AsyncCallback_Object_IAsyncResult_ * beginMethod, Func_2_IAsyncResult_Object_ * endMethod, Object * state, MethodInfo * method)); DO_APP_FUNC(0x010D3090, void, TaskFactory_1_System_Object__FromAsyncCoreLogic, (IAsyncResult * iar, Func_2_IAsyncResult_Object_ * endFunction, Action_1_IAsyncResult_ * endAction, Task_1_System_Object_ * promise, bool requiresSynchronization, MethodInfo * method)); DO_APP_FUNC(0x010D3290, Task_1_System_Object_ *, TaskFactory_1_System_Object__FromAsyncImpl_4, (Func_3_AsyncCallback_Object_IAsyncResult_ * beginMethod, Func_2_IAsyncResult_Object_ * endFunction, Action_1_IAsyncResult_ * endAction, Object * state, TaskCreationOptions__Enum creationOptions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9C08, TaskFactory_1_System_Object__FromAsyncImpl_4__MethodInfo); DO_APP_FUNC(0x010D2ED0, TaskScheduler *, TaskFactory_1_System_Object__GetDefaultScheduler, (TaskFactory_1_System_Object_ * __this, Task * currTask, MethodInfo * method)); DO_APP_FUNC(0x010D2FA0, Task_1_System_Object_ *, TaskFactory_1_System_Object__StartNew, (TaskFactory_1_System_Object_ * __this, Func_1_Object_ * function, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x010CD450, void, TaskFactory_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance___ctor, (TaskFactory_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, MethodInfo * method)); @@ -192454,6 +211158,7 @@ DO_APP_FUNC(0x010CD490, void, TaskFactory_1_UnityEngine_ResourceManagement_Resou DO_APP_FUNC(0x010CDA30, Task_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ *, TaskFactory_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__FromAsync, (TaskFactory_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, Func_3_AsyncCallback_Object_IAsyncResult_ * beginMethod, Func_2_IAsyncResult_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * endMethod, Object * state, MethodInfo * method)); DO_APP_FUNC(0x010D3A20, void, TaskFactory_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__FromAsyncCoreLogic, (IAsyncResult * iar, Func_2_IAsyncResult_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * endFunction, Action_1_IAsyncResult_ * endAction, Task_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * promise, bool requiresSynchronization, MethodInfo * method)); DO_APP_FUNC(0x010D3C30, Task_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ *, TaskFactory_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__FromAsyncImpl, (Func_3_AsyncCallback_Object_IAsyncResult_ * beginMethod, Func_2_IAsyncResult_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * endFunction, Action_1_IAsyncResult_ * endAction, Object * state, TaskCreationOptions__Enum creationOptions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9C00, TaskFactory_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__FromAsyncImpl__MethodInfo); DO_APP_FUNC(0x010D3860, TaskScheduler *, TaskFactory_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__GetDefaultScheduler, (TaskFactory_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, Task * currTask, MethodInfo * method)); DO_APP_FUNC(0x010D3930, Task_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ *, TaskFactory_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__StartNew, (TaskFactory_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, Func_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * function, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x00C74440, Task_1_System_Net_Sockets_SocketReceiveFromResult_ *, TaskFactory_1_System_Net_Sockets_SocketReceiveFromResult__FromAsync, (TaskFactory_1_System_Net_Sockets_SocketReceiveFromResult_ * __this, Func_5_ArraySegment_1_Byte_Int32Enum_AsyncCallback_Object_IAsyncResult_ * beginMethod, Func_2_IAsyncResult_System_Net_Sockets_SocketReceiveFromResult_ * endMethod, ArraySegment_1_Byte_ arg1, Int32Enum__Enum arg2, Object * state, MethodInfo * method)); @@ -192464,9 +211169,11 @@ DO_APP_FUNC(0x010CD490, void, TaskFactory_1_System_Net_Sockets_SocketReceiveFrom DO_APP_FUNC(0x010CDA30, Task_1_System_Net_Sockets_SocketReceiveFromResult_ *, TaskFactory_1_System_Net_Sockets_SocketReceiveFromResult__FromAsync_1, (TaskFactory_1_System_Net_Sockets_SocketReceiveFromResult_ * __this, Func_3_AsyncCallback_Object_IAsyncResult_ * beginMethod, Func_2_IAsyncResult_System_Net_Sockets_SocketReceiveFromResult_ * endMethod, Object * state, MethodInfo * method)); DO_APP_FUNC(0x010D43D0, void, TaskFactory_1_System_Net_Sockets_SocketReceiveFromResult__FromAsyncCoreLogic, (IAsyncResult * iar, Func_2_IAsyncResult_System_Net_Sockets_SocketReceiveFromResult_ * endFunction, Action_1_IAsyncResult_ * endAction, Task_1_System_Net_Sockets_SocketReceiveFromResult_ * promise, bool requiresSynchronization, MethodInfo * method)); DO_APP_FUNC(0x010D45E0, Task_1_System_Net_Sockets_SocketReceiveFromResult_ *, TaskFactory_1_System_Net_Sockets_SocketReceiveFromResult__FromAsyncImpl_1, (Func_3_AsyncCallback_Object_IAsyncResult_ * beginMethod, Func_2_IAsyncResult_System_Net_Sockets_SocketReceiveFromResult_ * endFunction, Action_1_IAsyncResult_ * endAction, Object * state, TaskCreationOptions__Enum creationOptions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9BF8, TaskFactory_1_System_Net_Sockets_SocketReceiveFromResult__FromAsyncImpl_1__MethodInfo); DO_APP_FUNC(0x010D4210, TaskScheduler *, TaskFactory_1_System_Net_Sockets_SocketReceiveFromResult__GetDefaultScheduler, (TaskFactory_1_System_Net_Sockets_SocketReceiveFromResult_ * __this, Task * currTask, MethodInfo * method)); DO_APP_FUNC(0x010D42E0, Task_1_System_Net_Sockets_SocketReceiveFromResult_ *, TaskFactory_1_System_Net_Sockets_SocketReceiveFromResult__StartNew, (TaskFactory_1_System_Net_Sockets_SocketReceiveFromResult_ * __this, Func_1_System_Net_Sockets_SocketReceiveFromResult_ * function, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x00C781F0, Task_1_System_Net_Sockets_SocketReceiveMessageFromResult_ *, TaskFactory_1_System_Net_Sockets_SocketReceiveMessageFromResult__FromAsync, (TaskFactory_1_System_Net_Sockets_SocketReceiveMessageFromResult_ * __this, Func_4_ArraySegment_1_Byte_AsyncCallback_Object_IAsyncResult_ * beginMethod, Func_2_IAsyncResult_System_Net_Sockets_SocketReceiveMessageFromResult_ * endMethod, ArraySegment_1_Byte_ arg1, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22748, TaskFactory_1_System_Net_Sockets_SocketReceiveMessageFromResult__FromAsync__MethodInfo); DO_APP_FUNC(0x00C78260, Task_1_System_Net_Sockets_SocketReceiveMessageFromResult_ *, TaskFactory_1_System_Net_Sockets_SocketReceiveMessageFromResult__FromAsyncImpl, (Func_4_ArraySegment_1_Byte_AsyncCallback_Object_IAsyncResult_ * beginMethod, Func_2_IAsyncResult_System_Net_Sockets_SocketReceiveMessageFromResult_ * endFunction, Action_1_IAsyncResult_ * endAction, ArraySegment_1_Byte_ arg1, Object * state, TaskCreationOptions__Enum creationOptions, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C97E68, TaskFactory_1_System_Net_Sockets_SocketReceiveMessageFromResult__FromAsyncImpl__MethodInfo); DO_APP_FUNC(0x010CD450, void, TaskFactory_1_System_Net_Sockets_SocketReceiveMessageFromResult___ctor, (TaskFactory_1_System_Net_Sockets_SocketReceiveMessageFromResult_ * __this, MethodInfo * method)); @@ -192474,13 +211181,16 @@ DO_APP_FUNC(0x010CD490, void, TaskFactory_1_System_Net_Sockets_SocketReceiveMess DO_APP_FUNC(0x010CDA30, Task_1_System_Net_Sockets_SocketReceiveMessageFromResult_ *, TaskFactory_1_System_Net_Sockets_SocketReceiveMessageFromResult__FromAsync_1, (TaskFactory_1_System_Net_Sockets_SocketReceiveMessageFromResult_ * __this, Func_3_AsyncCallback_Object_IAsyncResult_ * beginMethod, Func_2_IAsyncResult_System_Net_Sockets_SocketReceiveMessageFromResult_ * endMethod, Object * state, MethodInfo * method)); DO_APP_FUNC(0x010D4D80, void, TaskFactory_1_System_Net_Sockets_SocketReceiveMessageFromResult__FromAsyncCoreLogic, (IAsyncResult * iar, Func_2_IAsyncResult_System_Net_Sockets_SocketReceiveMessageFromResult_ * endFunction, Action_1_IAsyncResult_ * endAction, Task_1_System_Net_Sockets_SocketReceiveMessageFromResult_ * promise, bool requiresSynchronization, MethodInfo * method)); DO_APP_FUNC(0x010D4FA0, Task_1_System_Net_Sockets_SocketReceiveMessageFromResult_ *, TaskFactory_1_System_Net_Sockets_SocketReceiveMessageFromResult__FromAsyncImpl_1, (Func_3_AsyncCallback_Object_IAsyncResult_ * beginMethod, Func_2_IAsyncResult_System_Net_Sockets_SocketReceiveMessageFromResult_ * endFunction, Action_1_IAsyncResult_ * endAction, Object * state, TaskCreationOptions__Enum creationOptions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9BE8, TaskFactory_1_System_Net_Sockets_SocketReceiveMessageFromResult__FromAsyncImpl_1__MethodInfo); DO_APP_FUNC(0x010D4BC0, TaskScheduler *, TaskFactory_1_System_Net_Sockets_SocketReceiveMessageFromResult__GetDefaultScheduler, (TaskFactory_1_System_Net_Sockets_SocketReceiveMessageFromResult_ * __this, Task * currTask, MethodInfo * method)); DO_APP_FUNC(0x010D4C90, Task_1_System_Net_Sockets_SocketReceiveMessageFromResult_ *, TaskFactory_1_System_Net_Sockets_SocketReceiveMessageFromResult__StartNew, (TaskFactory_1_System_Net_Sockets_SocketReceiveMessageFromResult_ * __this, Func_1_System_Net_Sockets_SocketReceiveMessageFromResult_ * function, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x010CD450, void, TaskFactory_1_System_Net_Sockets_UdpReceiveResult___ctor, (TaskFactory_1_System_Net_Sockets_UdpReceiveResult_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010CD490, void, TaskFactory_1_System_Net_Sockets_UdpReceiveResult___ctor_1, (TaskFactory_1_System_Net_Sockets_UdpReceiveResult_ * __this, CancellationToken cancellationToken, TaskCreationOptions__Enum creationOptions, TaskContinuationOptions__Enum continuationOptions, TaskScheduler * scheduler, MethodInfo * method)); DO_APP_FUNC(0x010CDA30, Task_1_System_Net_Sockets_UdpReceiveResult_ *, TaskFactory_1_System_Net_Sockets_UdpReceiveResult__FromAsync, (TaskFactory_1_System_Net_Sockets_UdpReceiveResult_ * __this, Func_3_AsyncCallback_Object_IAsyncResult_ * beginMethod, Func_2_IAsyncResult_System_Net_Sockets_UdpReceiveResult_ * endMethod, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22B18, TaskFactory_1_System_Net_Sockets_UdpReceiveResult__FromAsync__MethodInfo); DO_APP_FUNC(0x010D5760, void, TaskFactory_1_System_Net_Sockets_UdpReceiveResult__FromAsyncCoreLogic, (IAsyncResult * iar, Func_2_IAsyncResult_System_Net_Sockets_UdpReceiveResult_ * endFunction, Action_1_IAsyncResult_ * endAction, Task_1_System_Net_Sockets_UdpReceiveResult_ * promise, bool requiresSynchronization, MethodInfo * method)); DO_APP_FUNC(0x010D5970, Task_1_System_Net_Sockets_UdpReceiveResult_ *, TaskFactory_1_System_Net_Sockets_UdpReceiveResult__FromAsyncImpl, (Func_3_AsyncCallback_Object_IAsyncResult_ * beginMethod, Func_2_IAsyncResult_System_Net_Sockets_UdpReceiveResult_ * endFunction, Action_1_IAsyncResult_ * endAction, Object * state, TaskCreationOptions__Enum creationOptions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9BD0, TaskFactory_1_System_Net_Sockets_UdpReceiveResult__FromAsyncImpl__MethodInfo); DO_APP_FUNC(0x010D55A0, TaskScheduler *, TaskFactory_1_System_Net_Sockets_UdpReceiveResult__GetDefaultScheduler, (TaskFactory_1_System_Net_Sockets_UdpReceiveResult_ * __this, Task * currTask, MethodInfo * method)); DO_APP_FUNC(0x010D5670, Task_1_System_Net_Sockets_UdpReceiveResult_ *, TaskFactory_1_System_Net_Sockets_UdpReceiveResult__StartNew, (TaskFactory_1_System_Net_Sockets_UdpReceiveResult_ * __this, Func_1_System_Net_Sockets_UdpReceiveResult_ * function, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x010CD450, void, TaskFactory_1_System_Net_WebSockets_ValueWebSocketReceiveResult___ctor, (TaskFactory_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, MethodInfo * method)); @@ -192488,6 +211198,7 @@ DO_APP_FUNC(0x010CD490, void, TaskFactory_1_System_Net_WebSockets_ValueWebSocket DO_APP_FUNC(0x010CDA30, Task_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ *, TaskFactory_1_System_Net_WebSockets_ValueWebSocketReceiveResult__FromAsync, (TaskFactory_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, Func_3_AsyncCallback_Object_IAsyncResult_ * beginMethod, Func_2_IAsyncResult_System_Net_WebSockets_ValueWebSocketReceiveResult_ * endMethod, Object * state, MethodInfo * method)); DO_APP_FUNC(0x010D6110, void, TaskFactory_1_System_Net_WebSockets_ValueWebSocketReceiveResult__FromAsyncCoreLogic, (IAsyncResult * iar, Func_2_IAsyncResult_System_Net_WebSockets_ValueWebSocketReceiveResult_ * endFunction, Action_1_IAsyncResult_ * endAction, Task_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * promise, bool requiresSynchronization, MethodInfo * method)); DO_APP_FUNC(0x010D6310, Task_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ *, TaskFactory_1_System_Net_WebSockets_ValueWebSocketReceiveResult__FromAsyncImpl, (Func_3_AsyncCallback_Object_IAsyncResult_ * beginMethod, Func_2_IAsyncResult_System_Net_WebSockets_ValueWebSocketReceiveResult_ * endFunction, Action_1_IAsyncResult_ * endAction, Object * state, TaskCreationOptions__Enum creationOptions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9BB8, TaskFactory_1_System_Net_WebSockets_ValueWebSocketReceiveResult__FromAsyncImpl__MethodInfo); DO_APP_FUNC(0x010D5F50, TaskScheduler *, TaskFactory_1_System_Net_WebSockets_ValueWebSocketReceiveResult__GetDefaultScheduler, (TaskFactory_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, Task * currTask, MethodInfo * method)); DO_APP_FUNC(0x010D6020, Task_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ *, TaskFactory_1_System_Net_WebSockets_ValueWebSocketReceiveResult__StartNew, (TaskFactory_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, Func_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * function, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x00C78820, Task_1_VoidTaskResult_ *, TaskFactory_1_VoidTaskResult__FromAsyncImpl, (Func_4_Object_AsyncCallback_Object_IAsyncResult_ * beginMethod, Func_2_IAsyncResult_System_Threading_Tasks_VoidTaskResult_ * endFunction, Action_1_IAsyncResult_ * endAction, Object * arg1, Object * state, TaskCreationOptions__Enum creationOptions, MethodInfo * method)); @@ -192502,6 +211213,7 @@ DO_APP_FUNC(0x010CD490, void, TaskFactory_1_VoidTaskResult___ctor_1, (TaskFactor DO_APP_FUNC(0x010CDA30, Task_1_VoidTaskResult_ *, TaskFactory_1_VoidTaskResult__FromAsync, (TaskFactory_1_VoidTaskResult_ * __this, Func_3_AsyncCallback_Object_IAsyncResult_ * beginMethod, Func_2_IAsyncResult_System_Threading_Tasks_VoidTaskResult_ * endMethod, Object * state, MethodInfo * method)); DO_APP_FUNC(0x010D6AA0, void, TaskFactory_1_VoidTaskResult__FromAsyncCoreLogic, (IAsyncResult * iar, Func_2_IAsyncResult_System_Threading_Tasks_VoidTaskResult_ * endFunction, Action_1_IAsyncResult_ * endAction, Task_1_VoidTaskResult_ * promise, bool requiresSynchronization, MethodInfo * method)); DO_APP_FUNC(0x010D6E40, Task_1_VoidTaskResult_ *, TaskFactory_1_VoidTaskResult__FromAsyncImpl_3, (Func_3_AsyncCallback_Object_IAsyncResult_ * beginMethod, Func_2_IAsyncResult_System_Threading_Tasks_VoidTaskResult_ * endFunction, Action_1_IAsyncResult_ * endAction, Object * state, TaskCreationOptions__Enum creationOptions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9B90, TaskFactory_1_VoidTaskResult__FromAsyncImpl_3__MethodInfo); DO_APP_FUNC(0x010D68E0, TaskScheduler *, TaskFactory_1_VoidTaskResult__GetDefaultScheduler, (TaskFactory_1_VoidTaskResult_ * __this, Task * currTask, MethodInfo * method)); DO_APP_FUNC(0x010D69B0, Task_1_VoidTaskResult_ *, TaskFactory_1_VoidTaskResult__StartNew, (TaskFactory_1_VoidTaskResult_ * __this, Func_1_System_Threading_Tasks_VoidTaskResult_ * function, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x010CD450, void, TaskFactory_1_System_IO_WaitForChangedResult___ctor, (TaskFactory_1_System_IO_WaitForChangedResult_ * __this, MethodInfo * method)); @@ -192509,12 +211221,15 @@ DO_APP_FUNC(0x010CD490, void, TaskFactory_1_System_IO_WaitForChangedResult___cto DO_APP_FUNC(0x010CDA30, Task_1_System_IO_WaitForChangedResult_ *, TaskFactory_1_System_IO_WaitForChangedResult__FromAsync, (TaskFactory_1_System_IO_WaitForChangedResult_ * __this, Func_3_AsyncCallback_Object_IAsyncResult_ * beginMethod, Func_2_IAsyncResult_System_IO_WaitForChangedResult_ * endMethod, Object * state, MethodInfo * method)); DO_APP_FUNC(0x010D75D0, void, TaskFactory_1_System_IO_WaitForChangedResult__FromAsyncCoreLogic, (IAsyncResult * iar, Func_2_IAsyncResult_System_IO_WaitForChangedResult_ * endFunction, Action_1_IAsyncResult_ * endAction, Task_1_System_IO_WaitForChangedResult_ * promise, bool requiresSynchronization, MethodInfo * method)); DO_APP_FUNC(0x010D77F0, Task_1_System_IO_WaitForChangedResult_ *, TaskFactory_1_System_IO_WaitForChangedResult__FromAsyncImpl, (Func_3_AsyncCallback_Object_IAsyncResult_ * beginMethod, Func_2_IAsyncResult_System_IO_WaitForChangedResult_ * endFunction, Action_1_IAsyncResult_ * endAction, Object * state, TaskCreationOptions__Enum creationOptions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9B78, TaskFactory_1_System_IO_WaitForChangedResult__FromAsyncImpl__MethodInfo); DO_APP_FUNC(0x010D7410, TaskScheduler *, TaskFactory_1_System_IO_WaitForChangedResult__GetDefaultScheduler, (TaskFactory_1_System_IO_WaitForChangedResult_ * __this, Task * currTask, MethodInfo * method)); DO_APP_FUNC(0x010D74E0, Task_1_System_IO_WaitForChangedResult_ *, TaskFactory_1_System_IO_WaitForChangedResult__StartNew, (TaskFactory_1_System_IO_WaitForChangedResult_ * __this, Func_1_System_IO_WaitForChangedResult_ * function, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x010D7DF0, void, Socket_TaskSocketAsyncEventArgs_1_System_Int32___ctor, (Socket_TaskSocketAsyncEventArgs_1_System_Int32_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x010D7E00, AsyncTaskMethodBuilder_1_System_Int32_, Socket_TaskSocketAsyncEventArgs_1_System_Int32__GetCompletionResponsibility, (Socket_TaskSocketAsyncEventArgs_1_System_Int32_ * __this, bool responsibleForReturningToPool, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23508, Socket_TaskSocketAsyncEventArgs_1_System_Int32___ctor__MethodInfo); +DO_APP_FUNC(0x010D7E00, AsyncTaskMethodBuilder_1_System_Int32_, Socket_TaskSocketAsyncEventArgs_1_System_Int32__GetCompletionResponsibility, (Socket_TaskSocketAsyncEventArgs_1_System_Int32_ * __this, bool * responsibleForReturningToPool, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1ECD0, Socket_TaskSocketAsyncEventArgs_1_System_Int32__GetCompletionResponsibility__MethodInfo); DO_APP_FUNC(0x010D7DF0, void, Socket_TaskSocketAsyncEventArgs_1_System_Object___ctor, (Socket_TaskSocketAsyncEventArgs_1_System_Object_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x010D7FE0, AsyncTaskMethodBuilder_1_System_Object_, Socket_TaskSocketAsyncEventArgs_1_System_Object__GetCompletionResponsibility, (Socket_TaskSocketAsyncEventArgs_1_System_Object_ * __this, bool responsibleForReturningToPool, MethodInfo * method)); +DO_APP_FUNC(0x010D7FE0, AsyncTaskMethodBuilder_1_System_Object_, Socket_TaskSocketAsyncEventArgs_1_System_Object__GetCompletionResponsibility, (Socket_TaskSocketAsyncEventArgs_1_System_Object_ * __this, bool * responsibleForReturningToPool, MethodInfo * method)); DO_APP_FUNC(0x010D81C0, void, Task_1_System_Nullable_1___ctor, (Task_1_System_Nullable_1_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010D82A0, void, Task_1_System_Nullable_1___ctor_1, (Task_1_System_Nullable_1_ * __this, Nullable_1_Int32_ result, MethodInfo * method)); DO_APP_FUNC(0x010D8220, void, Task_1_System_Nullable_1___ctor_2, (Task_1_System_Nullable_1_ * __this, Object * state, TaskCreationOptions__Enum options, MethodInfo * method)); @@ -192527,12 +211242,15 @@ DO_APP_FUNC_METHODINFO(0x03CA1F18, Task_1_System_Nullable_1__ConfigureAwait__Met DO_APP_FUNC(0x010D9140, Task *, Task_1_System_Nullable_1__ContinueWith, (Task_1_System_Nullable_1_ * __this, Action_1_System_Threading_Tasks_Task_1_ * continuationAction, MethodInfo * method)); DO_APP_FUNC(0x010D91F0, Task *, Task_1_System_Nullable_1__ContinueWith_1, (Task_1_System_Nullable_1_ * __this, Action_1_System_Threading_Tasks_Task_1_ * continuationAction, TaskScheduler * scheduler, MethodInfo * method)); DO_APP_FUNC(0x010D9240, Task *, Task_1_System_Nullable_1__ContinueWith_2, (Task_1_System_Nullable_1_ * __this, Action_1_System_Threading_Tasks_Task_1_ * continuationAction, TaskScheduler * scheduler, CancellationToken cancellationToken, TaskContinuationOptions__Enum continuationOptions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9B10, Task_1_System_Nullable_1__ContinueWith_2__MethodInfo); DO_APP_FUNC(0x010D8C40, void, Task_1_System_Nullable_1__DangerousSetResult, (Task_1_System_Nullable_1_ * __this, Nullable_1_Int32_ result, MethodInfo * method)); DO_APP_FUNC(0x010D90B0, TaskAwaiter_1_System_Nullable_1_, Task_1_System_Nullable_1__GetAwaiter, (Task_1_System_Nullable_1_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010D8CF0, Nullable_1_Int32_, Task_1_System_Nullable_1__GetResultCore, (Task_1_System_Nullable_1_ * __this, bool waitCompletionNotification, MethodInfo * method)); DO_APP_FUNC(0x010D8FD0, void, Task_1_System_Nullable_1__InnerInvoke, (Task_1_System_Nullable_1_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010D8770, Task_1_System_Nullable_1_ *, Task_1_System_Nullable_1__StartNew, (Task * parent, Func_1_Nullable_1_Int32_ * function, CancellationToken cancellationToken, TaskCreationOptions__Enum creationOptions, InternalTaskOptions__Enum internalOptions, TaskScheduler * scheduler, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9B60, Task_1_System_Nullable_1__StartNew__MethodInfo); DO_APP_FUNC(0x010D8960, Task_1_System_Nullable_1_ *, Task_1_System_Nullable_1__StartNew_1, (Task * parent, Func_2_Object_Nullable_1_Int32_ * function, Object * state, CancellationToken cancellationToken, TaskCreationOptions__Enum creationOptions, InternalTaskOptions__Enum internalOptions, TaskScheduler * scheduler, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9B50, Task_1_System_Nullable_1__StartNew_1__MethodInfo); DO_APP_FUNC(0x010D8B50, bool, Task_1_System_Nullable_1__TrySetResult, (Task_1_System_Nullable_1_ * __this, Nullable_1_Int32_ result, MethodInfo * method)); DO_APP_FUNC(0x010D8E10, TaskFactory_1_System_Nullable_1_ *, Task_1_System_Nullable_1__get_Factory, (MethodInfo * method)); DO_APP_FUNC(0x010D8C90, Nullable_1_Int32_, Task_1_System_Nullable_1__get_Result, (Task_1_System_Nullable_1_ * __this, MethodInfo * method)); @@ -192548,12 +211266,15 @@ DO_APP_FUNC(0x010D9110, ConfiguredTaskAwaitable_1_System_ValueTuple_2_, Task_1_S DO_APP_FUNC(0x010DA3F0, Task *, Task_1_System_ValueTuple_2__ContinueWith, (Task_1_System_ValueTuple_2_ * __this, Action_1_System_Threading_Tasks_Task_1__1 * continuationAction, MethodInfo * method)); DO_APP_FUNC(0x010D91F0, Task *, Task_1_System_ValueTuple_2__ContinueWith_1, (Task_1_System_ValueTuple_2_ * __this, Action_1_System_Threading_Tasks_Task_1__1 * continuationAction, TaskScheduler * scheduler, MethodInfo * method)); DO_APP_FUNC(0x010DA4A0, Task *, Task_1_System_ValueTuple_2__ContinueWith_2, (Task_1_System_ValueTuple_2_ * __this, Action_1_System_Threading_Tasks_Task_1__1 * continuationAction, TaskScheduler * scheduler, CancellationToken cancellationToken, TaskContinuationOptions__Enum continuationOptions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9A98, Task_1_System_ValueTuple_2__ContinueWith_2__MethodInfo); DO_APP_FUNC(0x010D9FC0, void, Task_1_System_ValueTuple_2__DangerousSetResult, (Task_1_System_ValueTuple_2_ * __this, ValueTuple_2_Boolean_Object_ result, MethodInfo * method)); DO_APP_FUNC(0x010D90B0, TaskAwaiter_1_System_ValueTuple_2_, Task_1_System_ValueTuple_2__GetAwaiter, (Task_1_System_ValueTuple_2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010DA100, ValueTuple_2_Boolean_Object_, Task_1_System_ValueTuple_2__GetResultCore, (Task_1_System_ValueTuple_2_ * __this, bool waitCompletionNotification, MethodInfo * method)); DO_APP_FUNC(0x010DA230, void, Task_1_System_ValueTuple_2__InnerInvoke, (Task_1_System_ValueTuple_2_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010D9A90, Task_1_System_ValueTuple_2_ *, Task_1_System_ValueTuple_2__StartNew, (Task * parent, Func_1_ValueTuple_2_Boolean_Object_ * function, CancellationToken cancellationToken, TaskCreationOptions__Enum creationOptions, InternalTaskOptions__Enum internalOptions, TaskScheduler * scheduler, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9AA8, Task_1_System_ValueTuple_2__StartNew__MethodInfo); DO_APP_FUNC(0x010D9C80, Task_1_System_ValueTuple_2_ *, Task_1_System_ValueTuple_2__StartNew_1, (Task * parent, Func_2_Object_ValueTuple_2_Boolean_Object_ * function, Object * state, CancellationToken cancellationToken, TaskCreationOptions__Enum creationOptions, InternalTaskOptions__Enum internalOptions, TaskScheduler * scheduler, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9AC0, Task_1_System_ValueTuple_2__StartNew_1__MethodInfo); DO_APP_FUNC(0x010D9E70, bool, Task_1_System_ValueTuple_2__TrySetResult, (Task_1_System_ValueTuple_2_ * __this, ValueTuple_2_Boolean_Object_ result, MethodInfo * method)); DO_APP_FUNC(0x010D8E10, TaskFactory_1_System_ValueTuple_2_ *, Task_1_System_ValueTuple_2__get_Factory, (MethodInfo * method)); DO_APP_FUNC(0x010DA070, ValueTuple_2_Boolean_Object_, Task_1_System_ValueTuple_2__get_Result, (Task_1_System_ValueTuple_2_ * __this, MethodInfo * method)); @@ -192569,12 +211290,15 @@ DO_APP_FUNC(0x010D9110, ConfiguredTaskAwaitable_1_System_ValueTuple_3_, Task_1_S DO_APP_FUNC(0x010DB6B0, Task *, Task_1_System_ValueTuple_3__1_ContinueWith, (Task_1_System_ValueTuple_3__1 * __this, Action_1_System_Threading_Tasks_Task_1__2 * continuationAction, MethodInfo * method)); DO_APP_FUNC(0x010D91F0, Task *, Task_1_System_ValueTuple_3__1_ContinueWith_1, (Task_1_System_ValueTuple_3__1 * __this, Action_1_System_Threading_Tasks_Task_1__2 * continuationAction, TaskScheduler * scheduler, MethodInfo * method)); DO_APP_FUNC(0x010DB760, Task *, Task_1_System_ValueTuple_3__1_ContinueWith_2, (Task_1_System_ValueTuple_3__1 * __this, Action_1_System_Threading_Tasks_Task_1__2 * continuationAction, TaskScheduler * scheduler, CancellationToken cancellationToken, TaskContinuationOptions__Enum continuationOptions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9A78, Task_1_System_ValueTuple_3__1_ContinueWith_2__MethodInfo); DO_APP_FUNC(0x010DB240, void, Task_1_System_ValueTuple_3__1_DangerousSetResult, (Task_1_System_ValueTuple_3__1 * __this, ValueTuple_3_Object_Object_Int32_ result, MethodInfo * method)); DO_APP_FUNC(0x010D90B0, TaskAwaiter_1_System_ValueTuple_3_, Task_1_System_ValueTuple_3__1_GetAwaiter, (Task_1_System_ValueTuple_3__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x010DB3A0, ValueTuple_3_Object_Object_Int32_, Task_1_System_ValueTuple_3__1_GetResultCore, (Task_1_System_ValueTuple_3__1 * __this, bool waitCompletionNotification, MethodInfo * method)); DO_APP_FUNC(0x010DB4E0, void, Task_1_System_ValueTuple_3__1_InnerInvoke, (Task_1_System_ValueTuple_3__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x010DAD10, Task_1_System_ValueTuple_3__1 *, Task_1_System_ValueTuple_3__1_StartNew, (Task * parent, Func_1_ValueTuple_3_Object_Object_Int32_ * function, CancellationToken cancellationToken, TaskCreationOptions__Enum creationOptions, InternalTaskOptions__Enum internalOptions, TaskScheduler * scheduler, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9A60, Task_1_System_ValueTuple_3__1_StartNew__MethodInfo); DO_APP_FUNC(0x010DAF00, Task_1_System_ValueTuple_3__1 *, Task_1_System_ValueTuple_3__1_StartNew_1, (Task * parent, Func_2_Object_ValueTuple_3_Object_Object_Int32_ * function, Object * state, CancellationToken cancellationToken, TaskCreationOptions__Enum creationOptions, InternalTaskOptions__Enum internalOptions, TaskScheduler * scheduler, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9A70, Task_1_System_ValueTuple_3__1_StartNew_1__MethodInfo); DO_APP_FUNC(0x010DB0F0, bool, Task_1_System_ValueTuple_3__1_TrySetResult, (Task_1_System_ValueTuple_3__1 * __this, ValueTuple_3_Object_Object_Int32_ result, MethodInfo * method)); DO_APP_FUNC(0x010D8E10, TaskFactory_1_System_ValueTuple_3__1 *, Task_1_System_ValueTuple_3__1_get_Factory, (MethodInfo * method)); DO_APP_FUNC(0x010DB2F0, ValueTuple_3_Object_Object_Int32_, Task_1_System_ValueTuple_3__1_get_Result, (Task_1_System_ValueTuple_3__1 * __this, MethodInfo * method)); @@ -192590,36 +211314,48 @@ DO_APP_FUNC(0x010D9110, ConfiguredTaskAwaitable_1_System_ValueTuple_5_, Task_1_S DO_APP_FUNC(0x010DC950, Task *, Task_1_System_ValueTuple_5__1_ContinueWith, (Task_1_System_ValueTuple_5__1 * __this, Action_1_System_Threading_Tasks_Task_1__3 * continuationAction, MethodInfo * method)); DO_APP_FUNC(0x010D91F0, Task *, Task_1_System_ValueTuple_5__1_ContinueWith_1, (Task_1_System_ValueTuple_5__1 * __this, Action_1_System_Threading_Tasks_Task_1__3 * continuationAction, TaskScheduler * scheduler, MethodInfo * method)); DO_APP_FUNC(0x010DCA00, Task *, Task_1_System_ValueTuple_5__1_ContinueWith_2, (Task_1_System_ValueTuple_5__1 * __this, Action_1_System_Threading_Tasks_Task_1__3 * continuationAction, TaskScheduler * scheduler, CancellationToken cancellationToken, TaskContinuationOptions__Enum continuationOptions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9A18, Task_1_System_ValueTuple_5__1_ContinueWith_2__MethodInfo); DO_APP_FUNC(0x010DC500, void, Task_1_System_ValueTuple_5__1_DangerousSetResult, (Task_1_System_ValueTuple_5__1 * __this, ValueTuple_5_Object_Boolean_Boolean_Object_Object_ result, MethodInfo * method)); DO_APP_FUNC(0x010D90B0, TaskAwaiter_1_System_ValueTuple_5_, Task_1_System_ValueTuple_5__1_GetAwaiter, (Task_1_System_ValueTuple_5__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x010DC660, ValueTuple_5_Object_Boolean_Boolean_Object_Object_, Task_1_System_ValueTuple_5__1_GetResultCore, (Task_1_System_ValueTuple_5__1 * __this, bool waitCompletionNotification, MethodInfo * method)); DO_APP_FUNC(0x010DC790, void, Task_1_System_ValueTuple_5__1_InnerInvoke, (Task_1_System_ValueTuple_5__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x010DBFD0, Task_1_System_ValueTuple_5__1 *, Task_1_System_ValueTuple_5__1_StartNew, (Task * parent, Func_1_ValueTuple_5_Object_Boolean_Boolean_Object_Object_ * function, CancellationToken cancellationToken, TaskCreationOptions__Enum creationOptions, InternalTaskOptions__Enum internalOptions, TaskScheduler * scheduler, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9A40, Task_1_System_ValueTuple_5__1_StartNew__MethodInfo); DO_APP_FUNC(0x010DC1C0, Task_1_System_ValueTuple_5__1 *, Task_1_System_ValueTuple_5__1_StartNew_1, (Task * parent, Func_2_Object_ValueTuple_5_Object_Boolean_Boolean_Object_Object_ * function, Object * state, CancellationToken cancellationToken, TaskCreationOptions__Enum creationOptions, InternalTaskOptions__Enum internalOptions, TaskScheduler * scheduler, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9A28, Task_1_System_ValueTuple_5__1_StartNew_1__MethodInfo); DO_APP_FUNC(0x010DC3B0, bool, Task_1_System_ValueTuple_5__1_TrySetResult, (Task_1_System_ValueTuple_5__1 * __this, ValueTuple_5_Object_Boolean_Boolean_Object_Object_ result, MethodInfo * method)); DO_APP_FUNC(0x010D8E10, TaskFactory_1_System_ValueTuple_5__1 *, Task_1_System_ValueTuple_5__1_get_Factory, (MethodInfo * method)); DO_APP_FUNC(0x010DC5B0, ValueTuple_5_Object_Boolean_Boolean_Object_Object_, Task_1_System_ValueTuple_5__1_get_Result, (Task_1_System_ValueTuple_5__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x010DC640, ValueTuple_5_Object_Boolean_Boolean_Object_Object_, Task_1_System_ValueTuple_5__1_get_ResultOnSuccess, (Task_1_System_ValueTuple_5__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x010DCC20, void, Task_1_System_Boolean___ctor, (Task_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CD00, Task_1_System_Boolean___ctor__MethodInfo); DO_APP_FUNC(0x010DCD00, void, Task_1_System_Boolean___ctor_1, (Task_1_System_Boolean_ * __this, bool result, MethodInfo * method)); DO_APP_FUNC(0x010DCC80, void, Task_1_System_Boolean___ctor_2, (Task_1_System_Boolean_ * __this, Object * state, TaskCreationOptions__Enum options, MethodInfo * method)); DO_APP_FUNC(0x010DCE30, void, Task_1_System_Boolean___ctor_3, (Task_1_System_Boolean_ * __this, Func_2_Object_Boolean_ * function, Object * state, CancellationToken cancellationToken, TaskCreationOptions__Enum creationOptions, MethodInfo * method)); DO_APP_FUNC(0x010DCD90, void, Task_1_System_Boolean___ctor_4, (Task_1_System_Boolean_ * __this, bool canceled, bool result, TaskCreationOptions__Enum creationOptions, CancellationToken ct, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CD18, Task_1_System_Boolean___ctor_4__MethodInfo); DO_APP_FUNC(0x010DCF40, void, Task_1_System_Boolean___ctor_5, (Task_1_System_Boolean_ * __this, Func_1_Boolean_ * valueSelector, Task * parent, CancellationToken cancellationToken, TaskCreationOptions__Enum creationOptions, InternalTaskOptions__Enum internalOptions, TaskScheduler * scheduler, MethodInfo * method)); DO_APP_FUNC(0x010DD080, void, Task_1_System_Boolean___ctor_6, (Task_1_System_Boolean_ * __this, Delegate * valueSelector, Object * state, Task * parent, CancellationToken cancellationToken, TaskCreationOptions__Enum creationOptions, InternalTaskOptions__Enum internalOptions, TaskScheduler * scheduler, MethodInfo * method)); DO_APP_FUNC(0x010D9110, ConfiguredTaskAwaitable_1_System_Boolean_, Task_1_System_Boolean__ConfigureAwait, (Task_1_System_Boolean_ * __this, bool continueOnCapturedContext, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FAB0, Task_1_System_Boolean__ConfigureAwait__MethodInfo); DO_APP_FUNC(0x010DD960, Task *, Task_1_System_Boolean__ContinueWith, (Task_1_System_Boolean_ * __this, Action_1_System_Threading_Tasks_Task_1__4 * continuationAction, MethodInfo * method)); DO_APP_FUNC(0x010D91F0, Task *, Task_1_System_Boolean__ContinueWith_1, (Task_1_System_Boolean_ * __this, Action_1_System_Threading_Tasks_Task_1__4 * continuationAction, TaskScheduler * scheduler, MethodInfo * method)); DO_APP_FUNC(0x010DDA10, Task *, Task_1_System_Boolean__ContinueWith_2, (Task_1_System_Boolean_ * __this, Action_1_System_Threading_Tasks_Task_1__4 * continuationAction, TaskScheduler * scheduler, CancellationToken cancellationToken, TaskContinuationOptions__Enum continuationOptions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9A00, Task_1_System_Boolean__ContinueWith_2__MethodInfo); DO_APP_FUNC(0x010DD6A0, void, Task_1_System_Boolean__DangerousSetResult, (Task_1_System_Boolean_ * __this, bool result, MethodInfo * method)); DO_APP_FUNC(0x010D90B0, TaskAwaiter_1_System_Boolean_, Task_1_System_Boolean__GetAwaiter, (Task_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CD90, Task_1_System_Boolean__GetAwaiter__MethodInfo); DO_APP_FUNC(0x010DD750, bool, Task_1_System_Boolean__GetResultCore, (Task_1_System_Boolean_ * __this, bool waitCompletionNotification, MethodInfo * method)); DO_APP_FUNC(0x010DD870, void, Task_1_System_Boolean__InnerInvoke, (Task_1_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010DD1D0, Task_1_System_Boolean_ *, Task_1_System_Boolean__StartNew, (Task * parent, Func_1_Boolean_ * function, CancellationToken cancellationToken, TaskCreationOptions__Enum creationOptions, InternalTaskOptions__Enum internalOptions, TaskScheduler * scheduler, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9A08, Task_1_System_Boolean__StartNew__MethodInfo); DO_APP_FUNC(0x010DD3C0, Task_1_System_Boolean_ *, Task_1_System_Boolean__StartNew_1, (Task * parent, Func_2_Object_Boolean_ * function, Object * state, CancellationToken cancellationToken, TaskCreationOptions__Enum creationOptions, InternalTaskOptions__Enum internalOptions, TaskScheduler * scheduler, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9A10, Task_1_System_Boolean__StartNew_1__MethodInfo); DO_APP_FUNC(0x010DD5B0, bool, Task_1_System_Boolean__TrySetResult, (Task_1_System_Boolean_ * __this, bool result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0CC48, Task_1_System_Boolean__TrySetResult__MethodInfo); DO_APP_FUNC(0x010D8E10, TaskFactory_1_System_Boolean_ *, Task_1_System_Boolean__get_Factory, (MethodInfo * method)); DO_APP_FUNC(0x010DD6F0, bool, Task_1_System_Boolean__get_Result, (Task_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1AF78, Task_1_System_Boolean__get_Result__MethodInfo); DO_APP_FUNC(0x004217A0, bool, Task_1_System_Boolean__get_ResultOnSuccess, (Task_1_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00C79A20, Task_1_System_Nullable_1_ *, Task_1_System_Int32__ContinueWith, (Task_1_System_Int32_ * __this, Func_2_System_Threading_Tasks_Task_1_Nullable_1_Int32_ * continuationFunction, TaskContinuationOptions__Enum continuationOptions, MethodInfo * method)); DO_APP_FUNC(0x00C79AC0, Task_1_System_Nullable_1_ *, Task_1_System_Int32__ContinueWith_1, (Task_1_System_Int32_ * __this, Func_2_System_Threading_Tasks_Task_1_Nullable_1_Int32_ * continuationFunction, TaskScheduler * scheduler, CancellationToken cancellationToken, TaskContinuationOptions__Enum continuationOptions, MethodInfo * method)); @@ -192628,23 +211364,30 @@ DO_APP_FUNC(0x010DDC30, void, Task_1_System_Int32___ctor, (Task_1_System_Int32_ DO_APP_FUNC(0x010DDD10, void, Task_1_System_Int32___ctor_1, (Task_1_System_Int32_ * __this, int32_t result, MethodInfo * method)); DO_APP_FUNC(0x010DDC90, void, Task_1_System_Int32___ctor_2, (Task_1_System_Int32_ * __this, Object * state, TaskCreationOptions__Enum options, MethodInfo * method)); DO_APP_FUNC(0x010DDE20, void, Task_1_System_Int32___ctor_3, (Task_1_System_Int32_ * __this, Func_2_Object_Int32_ * function, Object * state, CancellationToken cancellationToken, TaskCreationOptions__Enum creationOptions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEAF8, Task_1_System_Int32___ctor_3__MethodInfo); DO_APP_FUNC(0x010DDD90, void, Task_1_System_Int32___ctor_4, (Task_1_System_Int32_ * __this, bool canceled, int32_t result, TaskCreationOptions__Enum creationOptions, CancellationToken ct, MethodInfo * method)); DO_APP_FUNC(0x010DDF30, void, Task_1_System_Int32___ctor_5, (Task_1_System_Int32_ * __this, Func_1_Int32_ * valueSelector, Task * parent, CancellationToken cancellationToken, TaskCreationOptions__Enum creationOptions, InternalTaskOptions__Enum internalOptions, TaskScheduler * scheduler, MethodInfo * method)); DO_APP_FUNC(0x010DE070, void, Task_1_System_Int32___ctor_6, (Task_1_System_Int32_ * __this, Delegate * valueSelector, Object * state, Task * parent, CancellationToken cancellationToken, TaskCreationOptions__Enum creationOptions, InternalTaskOptions__Enum internalOptions, TaskScheduler * scheduler, MethodInfo * method)); DO_APP_FUNC(0x010D9110, ConfiguredTaskAwaitable_1_System_Int32_, Task_1_System_Int32__ConfigureAwait, (Task_1_System_Int32_ * __this, bool continueOnCapturedContext, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE9D8, Task_1_System_Int32__ConfigureAwait__MethodInfo); DO_APP_FUNC(0x010DE950, Task *, Task_1_System_Int32__ContinueWith_2, (Task_1_System_Int32_ * __this, Action_1_System_Threading_Tasks_Task_1__5 * continuationAction, MethodInfo * method)); DO_APP_FUNC(0x010D91F0, Task *, Task_1_System_Int32__ContinueWith_3, (Task_1_System_Int32_ * __this, Action_1_System_Threading_Tasks_Task_1__5 * continuationAction, TaskScheduler * scheduler, MethodInfo * method)); DO_APP_FUNC(0x010DEA00, Task *, Task_1_System_Int32__ContinueWith_4, (Task_1_System_Int32_ * __this, Action_1_System_Threading_Tasks_Task_1__5 * continuationAction, TaskScheduler * scheduler, CancellationToken cancellationToken, TaskContinuationOptions__Enum continuationOptions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF99F0, Task_1_System_Int32__ContinueWith_4__MethodInfo); DO_APP_FUNC(0x010DE690, void, Task_1_System_Int32__DangerousSetResult, (Task_1_System_Int32_ * __this, int32_t result, MethodInfo * method)); DO_APP_FUNC(0x010D90B0, TaskAwaiter_1_System_Int32_, Task_1_System_Int32__GetAwaiter, (Task_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C987C0, Task_1_System_Int32__GetAwaiter__MethodInfo); DO_APP_FUNC(0x010DE740, int32_t, Task_1_System_Int32__GetResultCore, (Task_1_System_Int32_ * __this, bool waitCompletionNotification, MethodInfo * method)); DO_APP_FUNC(0x010DE860, void, Task_1_System_Int32__InnerInvoke, (Task_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010DE1C0, Task_1_System_Int32_ *, Task_1_System_Int32__StartNew, (Task * parent, Func_1_Int32_ * function, CancellationToken cancellationToken, TaskCreationOptions__Enum creationOptions, InternalTaskOptions__Enum internalOptions, TaskScheduler * scheduler, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF99F8, Task_1_System_Int32__StartNew__MethodInfo); DO_APP_FUNC(0x010DE3B0, Task_1_System_Int32_ *, Task_1_System_Int32__StartNew_1, (Task * parent, Func_2_Object_Int32_ * function, Object * state, CancellationToken cancellationToken, TaskCreationOptions__Enum creationOptions, InternalTaskOptions__Enum internalOptions, TaskScheduler * scheduler, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF99E8, Task_1_System_Int32__StartNew_1__MethodInfo); DO_APP_FUNC(0x010DE5A0, bool, Task_1_System_Int32__TrySetResult, (Task_1_System_Int32_ * __this, int32_t result, MethodInfo * method)); DO_APP_FUNC(0x010D8E10, TaskFactory_1_System_Int32_ *, Task_1_System_Int32__get_Factory, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22AC0, Task_1_System_Int32__get_Factory__MethodInfo); DO_APP_FUNC(0x010DE6E0, int32_t, Task_1_System_Int32__get_Result, (Task_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEF98, Task_1_System_Int32__get_Result__MethodInfo); DO_APP_FUNC(0x010C8F60, int32_t, Task_1_System_Int32__get_ResultOnSuccess, (Task_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010DEC20, void, Task_1_System_Int32Enum___ctor, (Task_1_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010DED00, void, Task_1_System_Int32Enum___ctor_1, (Task_1_System_Int32Enum_ * __this, Int32Enum__Enum result, MethodInfo * method)); @@ -192657,12 +211400,15 @@ DO_APP_FUNC(0x010D9110, ConfiguredTaskAwaitable_1_System_Int32Enum_, Task_1_Syst DO_APP_FUNC(0x010DF590, Task *, Task_1_System_Int32Enum__ContinueWith, (Task_1_System_Int32Enum_ * __this, Action_1_System_Threading_Tasks_Task_1__6 * continuationAction, MethodInfo * method)); DO_APP_FUNC(0x010D91F0, Task *, Task_1_System_Int32Enum__ContinueWith_1, (Task_1_System_Int32Enum_ * __this, Action_1_System_Threading_Tasks_Task_1__6 * continuationAction, TaskScheduler * scheduler, MethodInfo * method)); DO_APP_FUNC(0x010DF640, Task *, Task_1_System_Int32Enum__ContinueWith_2, (Task_1_System_Int32Enum_ * __this, Action_1_System_Threading_Tasks_Task_1__6 * continuationAction, TaskScheduler * scheduler, CancellationToken cancellationToken, TaskContinuationOptions__Enum continuationOptions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF99D0, Task_1_System_Int32Enum__ContinueWith_2__MethodInfo); DO_APP_FUNC(0x010DE690, void, Task_1_System_Int32Enum__DangerousSetResult, (Task_1_System_Int32Enum_ * __this, Int32Enum__Enum result, MethodInfo * method)); DO_APP_FUNC(0x010D90B0, TaskAwaiter_1_System_Int32Enum_, Task_1_System_Int32Enum__GetAwaiter, (Task_1_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010DE740, Int32Enum__Enum, Task_1_System_Int32Enum__GetResultCore, (Task_1_System_Int32Enum_ * __this, bool waitCompletionNotification, MethodInfo * method)); DO_APP_FUNC(0x010DE860, void, Task_1_System_Int32Enum__InnerInvoke, (Task_1_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010DF1B0, Task_1_System_Int32Enum_ *, Task_1_System_Int32Enum__StartNew, (Task * parent, Func_1_Int32Enum_ * function, CancellationToken cancellationToken, TaskCreationOptions__Enum creationOptions, InternalTaskOptions__Enum internalOptions, TaskScheduler * scheduler, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF99D8, Task_1_System_Int32Enum__StartNew__MethodInfo); DO_APP_FUNC(0x010DF3A0, Task_1_System_Int32Enum_ *, Task_1_System_Int32Enum__StartNew_1, (Task * parent, Func_2_Object_Int32Enum_ * function, Object * state, CancellationToken cancellationToken, TaskCreationOptions__Enum creationOptions, InternalTaskOptions__Enum internalOptions, TaskScheduler * scheduler, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF99E0, Task_1_System_Int32Enum__StartNew_1__MethodInfo); DO_APP_FUNC(0x010DE5A0, bool, Task_1_System_Int32Enum__TrySetResult, (Task_1_System_Int32Enum_ * __this, Int32Enum__Enum result, MethodInfo * method)); DO_APP_FUNC(0x010D8E10, TaskFactory_1_System_Int32Enum_ *, Task_1_System_Int32Enum__get_Factory, (MethodInfo * method)); DO_APP_FUNC(0x010DE6E0, Int32Enum__Enum, Task_1_System_Int32Enum__get_Result, (Task_1_System_Int32Enum_ * __this, MethodInfo * method)); @@ -192678,12 +211424,15 @@ DO_APP_FUNC(0x010D9110, ConfiguredTaskAwaitable_1_System_Int64_, Task_1_System_I DO_APP_FUNC(0x010E0370, Task *, Task_1_System_Int64__ContinueWith, (Task_1_System_Int64_ * __this, Action_1_System_Threading_Tasks_Task_1__7 * continuationAction, MethodInfo * method)); DO_APP_FUNC(0x010D91F0, Task *, Task_1_System_Int64__ContinueWith_1, (Task_1_System_Int64_ * __this, Action_1_System_Threading_Tasks_Task_1__7 * continuationAction, TaskScheduler * scheduler, MethodInfo * method)); DO_APP_FUNC(0x010E0420, Task *, Task_1_System_Int64__ContinueWith_2, (Task_1_System_Int64_ * __this, Action_1_System_Threading_Tasks_Task_1__7 * continuationAction, TaskScheduler * scheduler, CancellationToken cancellationToken, TaskContinuationOptions__Enum continuationOptions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4CE0, Task_1_System_Int64__ContinueWith_2__MethodInfo); DO_APP_FUNC(0x010D8C40, void, Task_1_System_Int64__DangerousSetResult, (Task_1_System_Int64_ * __this, int64_t result, MethodInfo * method)); DO_APP_FUNC(0x010D90B0, TaskAwaiter_1_System_Int64_, Task_1_System_Int64__GetAwaiter, (Task_1_System_Int64_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010D8CF0, int64_t, Task_1_System_Int64__GetResultCore, (Task_1_System_Int64_ * __this, bool waitCompletionNotification, MethodInfo * method)); DO_APP_FUNC(0x010D8FD0, void, Task_1_System_Int64__InnerInvoke, (Task_1_System_Int64_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010DFEA0, Task_1_System_Int64_ *, Task_1_System_Int64__StartNew, (Task * parent, Func_1_Int64_ * function, CancellationToken cancellationToken, TaskCreationOptions__Enum creationOptions, InternalTaskOptions__Enum internalOptions, TaskScheduler * scheduler, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4CD8, Task_1_System_Int64__StartNew__MethodInfo); DO_APP_FUNC(0x010E0090, Task_1_System_Int64_ *, Task_1_System_Int64__StartNew_1, (Task * parent, Func_2_Object_Int64_ * function, Object * state, CancellationToken cancellationToken, TaskCreationOptions__Enum creationOptions, InternalTaskOptions__Enum internalOptions, TaskScheduler * scheduler, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4CD0, Task_1_System_Int64__StartNew_1__MethodInfo); DO_APP_FUNC(0x010E0280, bool, Task_1_System_Int64__TrySetResult, (Task_1_System_Int64_ * __this, int64_t result, MethodInfo * method)); DO_APP_FUNC(0x010D8E10, TaskFactory_1_System_Int64_ *, Task_1_System_Int64__get_Factory, (MethodInfo * method)); DO_APP_FUNC(0x010D8C90, int64_t, Task_1_System_Int64__get_Result, (Task_1_System_Int64_ * __this, MethodInfo * method)); @@ -192691,6 +211440,7 @@ DO_APP_FUNC(0x003C7420, int64_t, Task_1_System_Int64__get_ResultOnSuccess, (Task DO_APP_FUNC(0x00C79CC0, Task_1_System_Nullable_1_ *, Task_1_System_Object__ContinueWith, (Task_1_System_Object_ * __this, Func_2_System_Threading_Tasks_Task_1_Nullable_1_Int32__1 * continuationFunction, TaskContinuationOptions__Enum continuationOptions, MethodInfo * method)); DO_APP_FUNC(0x00C79D60, Task_1_System_Object_ *, Task_1_System_Object__ContinueWith_1, (Task_1_System_Object_ * __this, Func_2_System_Threading_Tasks_Task_1_Object_ * continuationFunction, TaskContinuationOptions__Enum continuationOptions, MethodInfo * method)); DO_APP_FUNC(0x00C79E00, Task_1_System_Boolean_ *, Task_1_System_Object__ContinueWith_2, (Task_1_System_Object_ * __this, Func_3_System_Threading_Tasks_Task_1_Object_Boolean_ * continuationFunction, Object * state, TaskScheduler * scheduler, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCAA88, Task_1_System_Object__ContinueWith_2__MethodInfo); DO_APP_FUNC(0x00C79E00, Task_1_System_Object_ *, Task_1_System_Object__ContinueWith_3, (Task_1_System_Object_ * __this, Func_3_System_Threading_Tasks_Task_1_Object_Object_ * continuationFunction, Object * state, TaskScheduler * scheduler, MethodInfo * method)); DO_APP_FUNC(0x00C79E40, Task_1_System_Nullable_1_ *, Task_1_System_Object__ContinueWith_4, (Task_1_System_Object_ * __this, Func_2_System_Threading_Tasks_Task_1_Nullable_1_Int32__1 * continuationFunction, TaskScheduler * scheduler, CancellationToken cancellationToken, TaskContinuationOptions__Enum continuationOptions, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C97D70, Task_1_System_Object__ContinueWith_4__MethodInfo); @@ -192708,15 +211458,19 @@ DO_APP_FUNC(0x010E07F0, void, Task_1_System_Object___ctor_4, (Task_1_System_Obje DO_APP_FUNC(0x010E09E0, void, Task_1_System_Object___ctor_5, (Task_1_System_Object_ * __this, Func_1_Object_ * valueSelector, Task * parent, CancellationToken cancellationToken, TaskCreationOptions__Enum creationOptions, InternalTaskOptions__Enum internalOptions, TaskScheduler * scheduler, MethodInfo * method)); DO_APP_FUNC(0x010E0B20, void, Task_1_System_Object___ctor_6, (Task_1_System_Object_ * __this, Delegate * valueSelector, Object * state, Task * parent, CancellationToken cancellationToken, TaskCreationOptions__Enum creationOptions, InternalTaskOptions__Enum internalOptions, TaskScheduler * scheduler, MethodInfo * method)); DO_APP_FUNC(0x010D9110, ConfiguredTaskAwaitable_1_System_Object_, Task_1_System_Object__ConfigureAwait, (Task_1_System_Object_ * __this, bool continueOnCapturedContext, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A988, Task_1_System_Object__ConfigureAwait__MethodInfo); DO_APP_FUNC(0x010E13D0, Task *, Task_1_System_Object__ContinueWith_8, (Task_1_System_Object_ * __this, Action_1_System_Threading_Tasks_Task_1__8 * continuationAction, MethodInfo * method)); DO_APP_FUNC(0x010D91F0, Task *, Task_1_System_Object__ContinueWith_9, (Task_1_System_Object_ * __this, Action_1_System_Threading_Tasks_Task_1__8 * continuationAction, TaskScheduler * scheduler, MethodInfo * method)); DO_APP_FUNC(0x010E1480, Task *, Task_1_System_Object__ContinueWith_10, (Task_1_System_Object_ * __this, Action_1_System_Threading_Tasks_Task_1__8 * continuationAction, TaskScheduler * scheduler, CancellationToken cancellationToken, TaskContinuationOptions__Enum continuationOptions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4CB8, Task_1_System_Object__ContinueWith_10__MethodInfo); DO_APP_FUNC(0x010E1190, void, Task_1_System_Object__DangerousSetResult, (Task_1_System_Object_ * __this, Object * result, MethodInfo * method)); DO_APP_FUNC(0x010D90B0, TaskAwaiter_1_System_Object_, Task_1_System_Object__GetAwaiter, (Task_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010D8CF0, Object *, Task_1_System_Object__GetResultCore, (Task_1_System_Object_ * __this, bool waitCompletionNotification, MethodInfo * method)); DO_APP_FUNC(0x010E1230, void, Task_1_System_Object__InnerInvoke, (Task_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010E0C70, Task_1_System_Object_ *, Task_1_System_Object__StartNew, (Task * parent, Func_1_Object_ * function, CancellationToken cancellationToken, TaskCreationOptions__Enum creationOptions, InternalTaskOptions__Enum internalOptions, TaskScheduler * scheduler, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4CC0, Task_1_System_Object__StartNew__MethodInfo); DO_APP_FUNC(0x010E0E60, Task_1_System_Object_ *, Task_1_System_Object__StartNew_1, (Task * parent, Func_2_Object_Object_ * function, Object * state, CancellationToken cancellationToken, TaskCreationOptions__Enum creationOptions, InternalTaskOptions__Enum internalOptions, TaskScheduler * scheduler, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4CC8, Task_1_System_Object__StartNew_1__MethodInfo); DO_APP_FUNC(0x010E1050, bool, Task_1_System_Object__TrySetResult, (Task_1_System_Object_ * __this, Object * result, MethodInfo * method)); DO_APP_FUNC(0x010D8E10, TaskFactory_1_System_Object_ *, Task_1_System_Object__get_Factory, (MethodInfo * method)); DO_APP_FUNC(0x010D8C90, Object *, Task_1_System_Object__get_Result, (Task_1_System_Object_ * __this, MethodInfo * method)); @@ -192733,12 +211487,15 @@ DO_APP_FUNC(0x010D9110, ConfiguredTaskAwaitable_1_UnityEngine_ResourceManagement DO_APP_FUNC(0x010E20B0, Task *, Task_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__ContinueWith, (Task_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, Action_1_System_Threading_Tasks_Task_1__9 * continuationAction, MethodInfo * method)); DO_APP_FUNC(0x010D91F0, Task *, Task_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__ContinueWith_1, (Task_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, Action_1_System_Threading_Tasks_Task_1__9 * continuationAction, TaskScheduler * scheduler, MethodInfo * method)); DO_APP_FUNC(0x010E2160, Task *, Task_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__ContinueWith_2, (Task_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, Action_1_System_Threading_Tasks_Task_1__9 * continuationAction, TaskScheduler * scheduler, CancellationToken cancellationToken, TaskContinuationOptions__Enum continuationOptions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4CA0, Task_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__ContinueWith_2__MethodInfo); DO_APP_FUNC(0x010D9FC0, void, Task_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__DangerousSetResult, (Task_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, SceneInstance result, MethodInfo * method)); DO_APP_FUNC(0x010D90B0, TaskAwaiter_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_, Task_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__GetAwaiter, (Task_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010DA100, SceneInstance, Task_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__GetResultCore, (Task_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, bool waitCompletionNotification, MethodInfo * method)); DO_APP_FUNC(0x010DA230, void, Task_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__InnerInvoke, (Task_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010E1CD0, Task_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ *, Task_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__StartNew, (Task * parent, Func_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * function, CancellationToken cancellationToken, TaskCreationOptions__Enum creationOptions, InternalTaskOptions__Enum internalOptions, TaskScheduler * scheduler, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4CB0, Task_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__StartNew__MethodInfo); DO_APP_FUNC(0x010E1EC0, Task_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ *, Task_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__StartNew_1, (Task * parent, Func_2_Object_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * function, Object * state, CancellationToken cancellationToken, TaskCreationOptions__Enum creationOptions, InternalTaskOptions__Enum internalOptions, TaskScheduler * scheduler, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4CA8, Task_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__StartNew_1__MethodInfo); DO_APP_FUNC(0x010D9E70, bool, Task_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__TrySetResult, (Task_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, SceneInstance result, MethodInfo * method)); DO_APP_FUNC(0x010D8E10, TaskFactory_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ *, Task_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__get_Factory, (MethodInfo * method)); DO_APP_FUNC(0x010DA070, SceneInstance, Task_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance__get_Result, (Task_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * __this, MethodInfo * method)); @@ -192754,14 +211511,18 @@ DO_APP_FUNC(0x010D9110, ConfiguredTaskAwaitable_1_System_Net_Sockets_SocketRecei DO_APP_FUNC(0x010E2D90, Task *, Task_1_System_Net_Sockets_SocketReceiveFromResult__ContinueWith, (Task_1_System_Net_Sockets_SocketReceiveFromResult_ * __this, Action_1_System_Threading_Tasks_Task_1__10 * continuationAction, MethodInfo * method)); DO_APP_FUNC(0x010D91F0, Task *, Task_1_System_Net_Sockets_SocketReceiveFromResult__ContinueWith_1, (Task_1_System_Net_Sockets_SocketReceiveFromResult_ * __this, Action_1_System_Threading_Tasks_Task_1__10 * continuationAction, TaskScheduler * scheduler, MethodInfo * method)); DO_APP_FUNC(0x010E2E40, Task *, Task_1_System_Net_Sockets_SocketReceiveFromResult__ContinueWith_2, (Task_1_System_Net_Sockets_SocketReceiveFromResult_ * __this, Action_1_System_Threading_Tasks_Task_1__10 * continuationAction, TaskScheduler * scheduler, CancellationToken cancellationToken, TaskContinuationOptions__Enum continuationOptions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4C90, Task_1_System_Net_Sockets_SocketReceiveFromResult__ContinueWith_2__MethodInfo); DO_APP_FUNC(0x010D9FC0, void, Task_1_System_Net_Sockets_SocketReceiveFromResult__DangerousSetResult, (Task_1_System_Net_Sockets_SocketReceiveFromResult_ * __this, SocketReceiveFromResult result, MethodInfo * method)); DO_APP_FUNC(0x010D90B0, TaskAwaiter_1_System_Net_Sockets_SocketReceiveFromResult_, Task_1_System_Net_Sockets_SocketReceiveFromResult__GetAwaiter, (Task_1_System_Net_Sockets_SocketReceiveFromResult_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010DA100, SocketReceiveFromResult, Task_1_System_Net_Sockets_SocketReceiveFromResult__GetResultCore, (Task_1_System_Net_Sockets_SocketReceiveFromResult_ * __this, bool waitCompletionNotification, MethodInfo * method)); DO_APP_FUNC(0x010DA230, void, Task_1_System_Net_Sockets_SocketReceiveFromResult__InnerInvoke, (Task_1_System_Net_Sockets_SocketReceiveFromResult_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010E29B0, Task_1_System_Net_Sockets_SocketReceiveFromResult_ *, Task_1_System_Net_Sockets_SocketReceiveFromResult__StartNew, (Task * parent, Func_1_System_Net_Sockets_SocketReceiveFromResult_ * function, CancellationToken cancellationToken, TaskCreationOptions__Enum creationOptions, InternalTaskOptions__Enum internalOptions, TaskScheduler * scheduler, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4C98, Task_1_System_Net_Sockets_SocketReceiveFromResult__StartNew__MethodInfo); DO_APP_FUNC(0x010E2BA0, Task_1_System_Net_Sockets_SocketReceiveFromResult_ *, Task_1_System_Net_Sockets_SocketReceiveFromResult__StartNew_1, (Task * parent, Func_2_Object_System_Net_Sockets_SocketReceiveFromResult_ * function, Object * state, CancellationToken cancellationToken, TaskCreationOptions__Enum creationOptions, InternalTaskOptions__Enum internalOptions, TaskScheduler * scheduler, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4C88, Task_1_System_Net_Sockets_SocketReceiveFromResult__StartNew_1__MethodInfo); DO_APP_FUNC(0x010D9E70, bool, Task_1_System_Net_Sockets_SocketReceiveFromResult__TrySetResult, (Task_1_System_Net_Sockets_SocketReceiveFromResult_ * __this, SocketReceiveFromResult result, MethodInfo * method)); DO_APP_FUNC(0x010D8E10, TaskFactory_1_System_Net_Sockets_SocketReceiveFromResult_ *, Task_1_System_Net_Sockets_SocketReceiveFromResult__get_Factory, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22788, Task_1_System_Net_Sockets_SocketReceiveFromResult__get_Factory__MethodInfo); DO_APP_FUNC(0x010DA070, SocketReceiveFromResult, Task_1_System_Net_Sockets_SocketReceiveFromResult__get_Result, (Task_1_System_Net_Sockets_SocketReceiveFromResult_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010DA0F0, SocketReceiveFromResult, Task_1_System_Net_Sockets_SocketReceiveFromResult__get_ResultOnSuccess, (Task_1_System_Net_Sockets_SocketReceiveFromResult_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010E3060, void, Task_1_System_Net_Sockets_SocketReceiveMessageFromResult___ctor, (Task_1_System_Net_Sockets_SocketReceiveMessageFromResult_ * __this, MethodInfo * method)); @@ -192775,14 +211536,18 @@ DO_APP_FUNC(0x010D9110, ConfiguredTaskAwaitable_1_System_Net_Sockets_SocketRecei DO_APP_FUNC(0x010E3E50, Task *, Task_1_System_Net_Sockets_SocketReceiveMessageFromResult__ContinueWith, (Task_1_System_Net_Sockets_SocketReceiveMessageFromResult_ * __this, Action_1_System_Threading_Tasks_Task_1__11 * continuationAction, MethodInfo * method)); DO_APP_FUNC(0x010D91F0, Task *, Task_1_System_Net_Sockets_SocketReceiveMessageFromResult__ContinueWith_1, (Task_1_System_Net_Sockets_SocketReceiveMessageFromResult_ * __this, Action_1_System_Threading_Tasks_Task_1__11 * continuationAction, TaskScheduler * scheduler, MethodInfo * method)); DO_APP_FUNC(0x010E3F00, Task *, Task_1_System_Net_Sockets_SocketReceiveMessageFromResult__ContinueWith_2, (Task_1_System_Net_Sockets_SocketReceiveMessageFromResult_ * __this, Action_1_System_Threading_Tasks_Task_1__11 * continuationAction, TaskScheduler * scheduler, CancellationToken cancellationToken, TaskContinuationOptions__Enum continuationOptions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4C70, Task_1_System_Net_Sockets_SocketReceiveMessageFromResult__ContinueWith_2__MethodInfo); DO_APP_FUNC(0x010E3BE0, void, Task_1_System_Net_Sockets_SocketReceiveMessageFromResult__DangerousSetResult, (Task_1_System_Net_Sockets_SocketReceiveMessageFromResult_ * __this, SocketReceiveMessageFromResult result, MethodInfo * method)); DO_APP_FUNC(0x010D90B0, TaskAwaiter_1_System_Net_Sockets_SocketReceiveMessageFromResult_, Task_1_System_Net_Sockets_SocketReceiveMessageFromResult__GetAwaiter, (Task_1_System_Net_Sockets_SocketReceiveMessageFromResult_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010DC660, SocketReceiveMessageFromResult, Task_1_System_Net_Sockets_SocketReceiveMessageFromResult__GetResultCore, (Task_1_System_Net_Sockets_SocketReceiveMessageFromResult_ * __this, bool waitCompletionNotification, MethodInfo * method)); DO_APP_FUNC(0x010E3C90, void, Task_1_System_Net_Sockets_SocketReceiveMessageFromResult__InnerInvoke, (Task_1_System_Net_Sockets_SocketReceiveMessageFromResult_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010E36B0, Task_1_System_Net_Sockets_SocketReceiveMessageFromResult_ *, Task_1_System_Net_Sockets_SocketReceiveMessageFromResult__StartNew, (Task * parent, Func_1_System_Net_Sockets_SocketReceiveMessageFromResult_ * function, CancellationToken cancellationToken, TaskCreationOptions__Enum creationOptions, InternalTaskOptions__Enum internalOptions, TaskScheduler * scheduler, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4C80, Task_1_System_Net_Sockets_SocketReceiveMessageFromResult__StartNew__MethodInfo); DO_APP_FUNC(0x010E38A0, Task_1_System_Net_Sockets_SocketReceiveMessageFromResult_ *, Task_1_System_Net_Sockets_SocketReceiveMessageFromResult__StartNew_1, (Task * parent, Func_2_Object_System_Net_Sockets_SocketReceiveMessageFromResult_ * function, Object * state, CancellationToken cancellationToken, TaskCreationOptions__Enum creationOptions, InternalTaskOptions__Enum internalOptions, TaskScheduler * scheduler, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4C78, Task_1_System_Net_Sockets_SocketReceiveMessageFromResult__StartNew_1__MethodInfo); DO_APP_FUNC(0x010E3A90, bool, Task_1_System_Net_Sockets_SocketReceiveMessageFromResult__TrySetResult, (Task_1_System_Net_Sockets_SocketReceiveMessageFromResult_ * __this, SocketReceiveMessageFromResult result, MethodInfo * method)); DO_APP_FUNC(0x010D8E10, TaskFactory_1_System_Net_Sockets_SocketReceiveMessageFromResult_ *, Task_1_System_Net_Sockets_SocketReceiveMessageFromResult__get_Factory, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22740, Task_1_System_Net_Sockets_SocketReceiveMessageFromResult__get_Factory__MethodInfo); DO_APP_FUNC(0x010DC5B0, SocketReceiveMessageFromResult, Task_1_System_Net_Sockets_SocketReceiveMessageFromResult__get_Result, (Task_1_System_Net_Sockets_SocketReceiveMessageFromResult_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010DC640, SocketReceiveMessageFromResult, Task_1_System_Net_Sockets_SocketReceiveMessageFromResult__get_ResultOnSuccess, (Task_1_System_Net_Sockets_SocketReceiveMessageFromResult_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010E4120, void, Task_1_System_Net_Sockets_UdpReceiveResult___ctor, (Task_1_System_Net_Sockets_UdpReceiveResult_ * __this, MethodInfo * method)); @@ -192796,14 +211561,18 @@ DO_APP_FUNC(0x010D9110, ConfiguredTaskAwaitable_1_System_Net_Sockets_UdpReceiveR DO_APP_FUNC(0x010E4EF0, Task *, Task_1_System_Net_Sockets_UdpReceiveResult__ContinueWith, (Task_1_System_Net_Sockets_UdpReceiveResult_ * __this, Action_1_System_Threading_Tasks_Task_1__12 * continuationAction, MethodInfo * method)); DO_APP_FUNC(0x010D91F0, Task *, Task_1_System_Net_Sockets_UdpReceiveResult__ContinueWith_1, (Task_1_System_Net_Sockets_UdpReceiveResult_ * __this, Action_1_System_Threading_Tasks_Task_1__12 * continuationAction, TaskScheduler * scheduler, MethodInfo * method)); DO_APP_FUNC(0x010E4FA0, Task *, Task_1_System_Net_Sockets_UdpReceiveResult__ContinueWith_2, (Task_1_System_Net_Sockets_UdpReceiveResult_ * __this, Action_1_System_Threading_Tasks_Task_1__12 * continuationAction, TaskScheduler * scheduler, CancellationToken cancellationToken, TaskContinuationOptions__Enum continuationOptions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4C68, Task_1_System_Net_Sockets_UdpReceiveResult__ContinueWith_2__MethodInfo); DO_APP_FUNC(0x010E4C80, void, Task_1_System_Net_Sockets_UdpReceiveResult__DangerousSetResult, (Task_1_System_Net_Sockets_UdpReceiveResult_ * __this, UdpReceiveResult result, MethodInfo * method)); DO_APP_FUNC(0x010D90B0, TaskAwaiter_1_System_Net_Sockets_UdpReceiveResult_, Task_1_System_Net_Sockets_UdpReceiveResult__GetAwaiter, (Task_1_System_Net_Sockets_UdpReceiveResult_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010DA100, UdpReceiveResult, Task_1_System_Net_Sockets_UdpReceiveResult__GetResultCore, (Task_1_System_Net_Sockets_UdpReceiveResult_ * __this, bool waitCompletionNotification, MethodInfo * method)); DO_APP_FUNC(0x010E4D30, void, Task_1_System_Net_Sockets_UdpReceiveResult__InnerInvoke, (Task_1_System_Net_Sockets_UdpReceiveResult_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010E4750, Task_1_System_Net_Sockets_UdpReceiveResult_ *, Task_1_System_Net_Sockets_UdpReceiveResult__StartNew, (Task * parent, Func_1_System_Net_Sockets_UdpReceiveResult_ * function, CancellationToken cancellationToken, TaskCreationOptions__Enum creationOptions, InternalTaskOptions__Enum internalOptions, TaskScheduler * scheduler, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4C58, Task_1_System_Net_Sockets_UdpReceiveResult__StartNew__MethodInfo); DO_APP_FUNC(0x010E4940, Task_1_System_Net_Sockets_UdpReceiveResult_ *, Task_1_System_Net_Sockets_UdpReceiveResult__StartNew_1, (Task * parent, Func_2_Object_System_Net_Sockets_UdpReceiveResult_ * function, Object * state, CancellationToken cancellationToken, TaskCreationOptions__Enum creationOptions, InternalTaskOptions__Enum internalOptions, TaskScheduler * scheduler, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4C60, Task_1_System_Net_Sockets_UdpReceiveResult__StartNew_1__MethodInfo); DO_APP_FUNC(0x010E4B30, bool, Task_1_System_Net_Sockets_UdpReceiveResult__TrySetResult, (Task_1_System_Net_Sockets_UdpReceiveResult_ * __this, UdpReceiveResult result, MethodInfo * method)); DO_APP_FUNC(0x010D8E10, TaskFactory_1_System_Net_Sockets_UdpReceiveResult_ *, Task_1_System_Net_Sockets_UdpReceiveResult__get_Factory, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22B10, Task_1_System_Net_Sockets_UdpReceiveResult__get_Factory__MethodInfo); DO_APP_FUNC(0x010DA070, UdpReceiveResult, Task_1_System_Net_Sockets_UdpReceiveResult__get_Result, (Task_1_System_Net_Sockets_UdpReceiveResult_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010DA0F0, UdpReceiveResult, Task_1_System_Net_Sockets_UdpReceiveResult__get_ResultOnSuccess, (Task_1_System_Net_Sockets_UdpReceiveResult_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010E51C0, void, Task_1_System_Net_WebSockets_ValueWebSocketReceiveResult___ctor, (Task_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, MethodInfo * method)); @@ -192817,17 +211586,21 @@ DO_APP_FUNC(0x010D9110, ConfiguredTaskAwaitable_1_System_Net_WebSockets_ValueWeb DO_APP_FUNC(0x010E5B50, Task *, Task_1_System_Net_WebSockets_ValueWebSocketReceiveResult__ContinueWith, (Task_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, Action_1_System_Threading_Tasks_Task_1__13 * continuationAction, MethodInfo * method)); DO_APP_FUNC(0x010D91F0, Task *, Task_1_System_Net_WebSockets_ValueWebSocketReceiveResult__ContinueWith_1, (Task_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, Action_1_System_Threading_Tasks_Task_1__13 * continuationAction, TaskScheduler * scheduler, MethodInfo * method)); DO_APP_FUNC(0x010E5C00, Task *, Task_1_System_Net_WebSockets_ValueWebSocketReceiveResult__ContinueWith_2, (Task_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, Action_1_System_Threading_Tasks_Task_1__13 * continuationAction, TaskScheduler * scheduler, CancellationToken cancellationToken, TaskContinuationOptions__Enum continuationOptions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4C40, Task_1_System_Net_WebSockets_ValueWebSocketReceiveResult__ContinueWith_2__MethodInfo); DO_APP_FUNC(0x010D8C40, void, Task_1_System_Net_WebSockets_ValueWebSocketReceiveResult__DangerousSetResult, (Task_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, ValueWebSocketReceiveResult result, MethodInfo * method)); DO_APP_FUNC(0x010D90B0, TaskAwaiter_1_System_Net_WebSockets_ValueWebSocketReceiveResult_, Task_1_System_Net_WebSockets_ValueWebSocketReceiveResult__GetAwaiter, (Task_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010D8CF0, ValueWebSocketReceiveResult, Task_1_System_Net_WebSockets_ValueWebSocketReceiveResult__GetResultCore, (Task_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, bool waitCompletionNotification, MethodInfo * method)); DO_APP_FUNC(0x010D8FD0, void, Task_1_System_Net_WebSockets_ValueWebSocketReceiveResult__InnerInvoke, (Task_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010E5770, Task_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ *, Task_1_System_Net_WebSockets_ValueWebSocketReceiveResult__StartNew, (Task * parent, Func_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * function, CancellationToken cancellationToken, TaskCreationOptions__Enum creationOptions, InternalTaskOptions__Enum internalOptions, TaskScheduler * scheduler, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4C50, Task_1_System_Net_WebSockets_ValueWebSocketReceiveResult__StartNew__MethodInfo); DO_APP_FUNC(0x010E5960, Task_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ *, Task_1_System_Net_WebSockets_ValueWebSocketReceiveResult__StartNew_1, (Task * parent, Func_2_Object_System_Net_WebSockets_ValueWebSocketReceiveResult_ * function, Object * state, CancellationToken cancellationToken, TaskCreationOptions__Enum creationOptions, InternalTaskOptions__Enum internalOptions, TaskScheduler * scheduler, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4C48, Task_1_System_Net_WebSockets_ValueWebSocketReceiveResult__StartNew_1__MethodInfo); DO_APP_FUNC(0x010D8B50, bool, Task_1_System_Net_WebSockets_ValueWebSocketReceiveResult__TrySetResult, (Task_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, ValueWebSocketReceiveResult result, MethodInfo * method)); DO_APP_FUNC(0x010D8E10, TaskFactory_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ *, Task_1_System_Net_WebSockets_ValueWebSocketReceiveResult__get_Factory, (MethodInfo * method)); DO_APP_FUNC(0x010D8C90, ValueWebSocketReceiveResult, Task_1_System_Net_WebSockets_ValueWebSocketReceiveResult__get_Result, (Task_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7420, ValueWebSocketReceiveResult, Task_1_System_Net_WebSockets_ValueWebSocketReceiveResult__get_ResultOnSuccess, (Task_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010E5E20, void, Task_1_VoidTaskResult___ctor, (Task_1_VoidTaskResult_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11898, Task_1_VoidTaskResult___ctor__MethodInfo); DO_APP_FUNC(0x010E5F00, void, Task_1_VoidTaskResult___ctor_1, (Task_1_VoidTaskResult_ * __this, VoidTaskResult result, MethodInfo * method)); DO_APP_FUNC(0x010E5E80, void, Task_1_VoidTaskResult___ctor_2, (Task_1_VoidTaskResult_ * __this, Object * state, TaskCreationOptions__Enum options, MethodInfo * method)); DO_APP_FUNC(0x010E6030, void, Task_1_VoidTaskResult___ctor_3, (Task_1_VoidTaskResult_ * __this, Func_2_Object_System_Threading_Tasks_VoidTaskResult_ * function, Object * state, CancellationToken cancellationToken, TaskCreationOptions__Enum creationOptions, MethodInfo * method)); @@ -192838,13 +211611,17 @@ DO_APP_FUNC(0x010D9110, ConfiguredTaskAwaitable_1_System_Threading_Tasks_VoidTas DO_APP_FUNC(0x010E68A0, Task *, Task_1_VoidTaskResult__ContinueWith, (Task_1_VoidTaskResult_ * __this, Action_1_System_Threading_Tasks_Task_1__14 * continuationAction, MethodInfo * method)); DO_APP_FUNC(0x010D91F0, Task *, Task_1_VoidTaskResult__ContinueWith_1, (Task_1_VoidTaskResult_ * __this, Action_1_System_Threading_Tasks_Task_1__14 * continuationAction, TaskScheduler * scheduler, MethodInfo * method)); DO_APP_FUNC(0x010E6950, Task *, Task_1_VoidTaskResult__ContinueWith_2, (Task_1_VoidTaskResult_ * __this, Action_1_System_Threading_Tasks_Task_1__14 * continuationAction, TaskScheduler * scheduler, CancellationToken cancellationToken, TaskContinuationOptions__Enum continuationOptions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4C28, Task_1_VoidTaskResult__ContinueWith_2__MethodInfo); DO_APP_FUNC(0x010DD6A0, void, Task_1_VoidTaskResult__DangerousSetResult, (Task_1_VoidTaskResult_ * __this, VoidTaskResult result, MethodInfo * method)); DO_APP_FUNC(0x010D90B0, TaskAwaiter_1_System_Threading_Tasks_VoidTaskResult_, Task_1_VoidTaskResult__GetAwaiter, (Task_1_VoidTaskResult_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010DD750, VoidTaskResult, Task_1_VoidTaskResult__GetResultCore, (Task_1_VoidTaskResult_ * __this, bool waitCompletionNotification, MethodInfo * method)); DO_APP_FUNC(0x010DD870, void, Task_1_VoidTaskResult__InnerInvoke, (Task_1_VoidTaskResult_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010E63D0, Task_1_VoidTaskResult_ *, Task_1_VoidTaskResult__StartNew, (Task * parent, Func_1_System_Threading_Tasks_VoidTaskResult_ * function, CancellationToken cancellationToken, TaskCreationOptions__Enum creationOptions, InternalTaskOptions__Enum internalOptions, TaskScheduler * scheduler, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4C30, Task_1_VoidTaskResult__StartNew__MethodInfo); DO_APP_FUNC(0x010E65C0, Task_1_VoidTaskResult_ *, Task_1_VoidTaskResult__StartNew_1, (Task * parent, Func_2_Object_System_Threading_Tasks_VoidTaskResult_ * function, Object * state, CancellationToken cancellationToken, TaskCreationOptions__Enum creationOptions, InternalTaskOptions__Enum internalOptions, TaskScheduler * scheduler, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4C38, Task_1_VoidTaskResult__StartNew_1__MethodInfo); DO_APP_FUNC(0x010E67B0, bool, Task_1_VoidTaskResult__TrySetResult, (Task_1_VoidTaskResult_ * __this, VoidTaskResult result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11710, Task_1_VoidTaskResult__TrySetResult__MethodInfo); DO_APP_FUNC(0x010D8E10, TaskFactory_1_VoidTaskResult_ *, Task_1_VoidTaskResult__get_Factory, (MethodInfo * method)); DO_APP_FUNC(0x010DD6F0, VoidTaskResult, Task_1_VoidTaskResult__get_Result, (Task_1_VoidTaskResult_ * __this, MethodInfo * method)); DO_APP_FUNC(0x004217A0, VoidTaskResult, Task_1_VoidTaskResult__get_ResultOnSuccess, (Task_1_VoidTaskResult_ * __this, MethodInfo * method)); @@ -192859,24 +211636,36 @@ DO_APP_FUNC(0x010D9110, ConfiguredTaskAwaitable_1_System_IO_WaitForChangedResult DO_APP_FUNC(0x010E75A0, Task *, Task_1_System_IO_WaitForChangedResult__ContinueWith, (Task_1_System_IO_WaitForChangedResult_ * __this, Action_1_System_Threading_Tasks_Task_1__15 * continuationAction, MethodInfo * method)); DO_APP_FUNC(0x010D91F0, Task *, Task_1_System_IO_WaitForChangedResult__ContinueWith_1, (Task_1_System_IO_WaitForChangedResult_ * __this, Action_1_System_Threading_Tasks_Task_1__15 * continuationAction, TaskScheduler * scheduler, MethodInfo * method)); DO_APP_FUNC(0x010E7650, Task *, Task_1_System_IO_WaitForChangedResult__ContinueWith_2, (Task_1_System_IO_WaitForChangedResult_ * __this, Action_1_System_Threading_Tasks_Task_1__15 * continuationAction, TaskScheduler * scheduler, CancellationToken cancellationToken, TaskContinuationOptions__Enum continuationOptions, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4C10, Task_1_System_IO_WaitForChangedResult__ContinueWith_2__MethodInfo); DO_APP_FUNC(0x010E3BE0, void, Task_1_System_IO_WaitForChangedResult__DangerousSetResult, (Task_1_System_IO_WaitForChangedResult_ * __this, WaitForChangedResult result, MethodInfo * method)); DO_APP_FUNC(0x010D90B0, TaskAwaiter_1_System_IO_WaitForChangedResult_, Task_1_System_IO_WaitForChangedResult__GetAwaiter, (Task_1_System_IO_WaitForChangedResult_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010DC660, WaitForChangedResult, Task_1_System_IO_WaitForChangedResult__GetResultCore, (Task_1_System_IO_WaitForChangedResult_ * __this, bool waitCompletionNotification, MethodInfo * method)); DO_APP_FUNC(0x010E3C90, void, Task_1_System_IO_WaitForChangedResult__InnerInvoke, (Task_1_System_IO_WaitForChangedResult_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010E71C0, Task_1_System_IO_WaitForChangedResult_ *, Task_1_System_IO_WaitForChangedResult__StartNew, (Task * parent, Func_1_System_IO_WaitForChangedResult_ * function, CancellationToken cancellationToken, TaskCreationOptions__Enum creationOptions, InternalTaskOptions__Enum internalOptions, TaskScheduler * scheduler, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4C08, Task_1_System_IO_WaitForChangedResult__StartNew__MethodInfo); DO_APP_FUNC(0x010E73B0, Task_1_System_IO_WaitForChangedResult_ *, Task_1_System_IO_WaitForChangedResult__StartNew_1, (Task * parent, Func_2_Object_System_IO_WaitForChangedResult_ * function, Object * state, CancellationToken cancellationToken, TaskCreationOptions__Enum creationOptions, InternalTaskOptions__Enum internalOptions, TaskScheduler * scheduler, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4C00, Task_1_System_IO_WaitForChangedResult__StartNew_1__MethodInfo); DO_APP_FUNC(0x010E3A90, bool, Task_1_System_IO_WaitForChangedResult__TrySetResult, (Task_1_System_IO_WaitForChangedResult_ * __this, WaitForChangedResult result, MethodInfo * method)); DO_APP_FUNC(0x010D8E10, TaskFactory_1_System_IO_WaitForChangedResult_ *, Task_1_System_IO_WaitForChangedResult__get_Factory, (MethodInfo * method)); DO_APP_FUNC(0x010DC5B0, WaitForChangedResult, Task_1_System_IO_WaitForChangedResult__get_Result, (Task_1_System_IO_WaitForChangedResult_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA650, Task_1_System_IO_WaitForChangedResult__get_Result__MethodInfo); DO_APP_FUNC(0x010DC640, WaitForChangedResult, Task_1_System_IO_WaitForChangedResult__get_ResultOnSuccess, (Task_1_System_IO_WaitForChangedResult_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x010E7870, void, UIRStylePainter_TempDataAlloc_1_System_UInt16___ctor, (UIRStylePainter_TempDataAlloc_1_System_UInt16___Boxed * __this, int32_t maxPoolElems, MethodInfo * method)); -DO_APP_FUNC(0x010E7D80, NativeSlice_1_System_UInt16_, UIRStylePainter_TempDataAlloc_1_System_UInt16__Alloc, (UIRStylePainter_TempDataAlloc_1_System_UInt16___Boxed * __this, uint32_t count, MethodInfo * method)); -DO_APP_FUNC(0x010E7990, void, UIRStylePainter_TempDataAlloc_1_System_UInt16__Dispose, (UIRStylePainter_TempDataAlloc_1_System_UInt16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010E7F70, void, UIRStylePainter_TempDataAlloc_1_System_UInt16__SessionDone, (UIRStylePainter_TempDataAlloc_1_System_UInt16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010E7870, void, UIRStylePainter_TempDataAlloc_1_UnityEngine_UIElements_Vertex___ctor, (UIRStylePainter_TempDataAlloc_1_UnityEngine_UIElements_Vertex___Boxed * __this, int32_t maxPoolElems, MethodInfo * method)); -DO_APP_FUNC(0x010E7D80, NativeSlice_1_UnityEngine_UIElements_Vertex_, UIRStylePainter_TempDataAlloc_1_UnityEngine_UIElements_Vertex__Alloc, (UIRStylePainter_TempDataAlloc_1_UnityEngine_UIElements_Vertex___Boxed * __this, uint32_t count, MethodInfo * method)); -DO_APP_FUNC(0x010E8300, void, UIRStylePainter_TempDataAlloc_1_UnityEngine_UIElements_Vertex__Dispose, (UIRStylePainter_TempDataAlloc_1_UnityEngine_UIElements_Vertex___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010E86F0, void, UIRStylePainter_TempDataAlloc_1_UnityEngine_UIElements_Vertex__SessionDone, (UIRStylePainter_TempDataAlloc_1_UnityEngine_UIElements_Vertex___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x010E7870, void, UIRStylePainter_TempDataAlloc_1_System_UInt16___ctor, (UIRStylePainter_TempDataAlloc_1_System_UInt16_ * __this, int32_t maxPoolElems, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA008, UIRStylePainter_TempDataAlloc_1_System_UInt16___ctor__MethodInfo); +DO_APP_FUNC(0x010E7D80, NativeSlice_1_System_UInt16_, UIRStylePainter_TempDataAlloc_1_System_UInt16__Alloc, (UIRStylePainter_TempDataAlloc_1_System_UInt16_ * __this, uint32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA050, UIRStylePainter_TempDataAlloc_1_System_UInt16__Alloc__MethodInfo); +DO_APP_FUNC(0x010E7990, void, UIRStylePainter_TempDataAlloc_1_System_UInt16__Dispose, (UIRStylePainter_TempDataAlloc_1_System_UInt16_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA028, UIRStylePainter_TempDataAlloc_1_System_UInt16__Dispose__MethodInfo); +DO_APP_FUNC(0x010E7F70, void, UIRStylePainter_TempDataAlloc_1_System_UInt16__SessionDone, (UIRStylePainter_TempDataAlloc_1_System_UInt16_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9F50, UIRStylePainter_TempDataAlloc_1_System_UInt16__SessionDone__MethodInfo); +DO_APP_FUNC(0x010E7870, void, UIRStylePainter_TempDataAlloc_1_UnityEngine_UIElements_Vertex___ctor, (UIRStylePainter_TempDataAlloc_1_UnityEngine_UIElements_Vertex_ * __this, int32_t maxPoolElems, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA020, UIRStylePainter_TempDataAlloc_1_UnityEngine_UIElements_Vertex___ctor__MethodInfo); +DO_APP_FUNC(0x010E7D80, NativeSlice_1_UnityEngine_UIElements_Vertex_, UIRStylePainter_TempDataAlloc_1_UnityEngine_UIElements_Vertex__Alloc, (UIRStylePainter_TempDataAlloc_1_UnityEngine_UIElements_Vertex_ * __this, uint32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA058, UIRStylePainter_TempDataAlloc_1_UnityEngine_UIElements_Vertex__Alloc__MethodInfo); +DO_APP_FUNC(0x010E8300, void, UIRStylePainter_TempDataAlloc_1_UnityEngine_UIElements_Vertex__Dispose, (UIRStylePainter_TempDataAlloc_1_UnityEngine_UIElements_Vertex_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA030, UIRStylePainter_TempDataAlloc_1_UnityEngine_UIElements_Vertex__Dispose__MethodInfo); +DO_APP_FUNC(0x010E86F0, void, UIRStylePainter_TempDataAlloc_1_UnityEngine_UIElements_Vertex__SessionDone, (UIRStylePainter_TempDataAlloc_1_UnityEngine_UIElements_Vertex_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9F48, UIRStylePainter_TempDataAlloc_1_UnityEngine_UIElements_Vertex__SessionDone__MethodInfo); DO_APP_FUNC(0x010E9540, void, TextInputBaseField_1_TValueType_TextInputBase_System_Object___ctor, (TextInputBaseField_1_TValueType_TextInputBase_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010EE5E0, void, TextInputBaseField_1_TValueType_TextInputBase_System_Object___ProcessEventAtTarget_b__99_0, (TextInputBaseField_1_TValueType_TextInputBase_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010EC970, bool, TextInputBaseField_1_TValueType_TextInputBase_System_Object__AcceptCharacter, (TextInputBaseField_1_TValueType_TextInputBase_System_Object_ * __this, uint16_t c, MethodInfo * method)); @@ -192909,6 +211698,7 @@ DO_APP_FUNC(0x010E8A80, void, TextInputBaseField_1_TValueType_TextInputBase_Syst DO_APP_FUNC(0x010E8B90, void, TextInputBaseField_1_TValueType_TextInputBase_System_Object__RestoreValueAndText, (TextInputBaseField_1_TValueType_TextInputBase_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010E8B00, void, TextInputBaseField_1_TValueType_TextInputBase_System_Object__SaveValueAndText, (TextInputBaseField_1_TValueType_TextInputBase_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010E8E90, Object *, TextInputBaseField_1_TValueType_TextInputBase_System_Object__StringToValue, (TextInputBaseField_1_TValueType_TextInputBase_System_Object_ * __this, String * str, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4BD8, TextInputBaseField_1_TValueType_TextInputBase_System_Object__StringToValue__MethodInfo); DO_APP_FUNC(0x010EDAA0, void, TextInputBaseField_1_TValueType_TextInputBase_System_Object__SyncGUIStyle, (TextInputBaseField_1_TValueType_TextInputBase_System_Object_ * textInput, GUIStyle * style, MethodInfo * method)); DO_APP_FUNC(0x010EAA30, void, TextInputBaseField_1_TValueType_TextInputBase_System_Object__SyncTextEngine, (TextInputBaseField_1_TValueType_TextInputBase_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010ED6A0, bool, TextInputBaseField_1_TValueType_TextInputBase_System_Object__UnityEngine_UIElements_ITextInputField_AcceptCharacter, (TextInputBaseField_1_TValueType_TextInputBase_System_Object_ * __this, uint16_t c, MethodInfo * method)); @@ -192956,6 +211746,7 @@ DO_APP_FUNC(0x010EED60, void, TextInputBaseField_1_System_Object__OnAttachToPane DO_APP_FUNC(0x010EEE40, void, TextInputBaseField_1_System_Object__OnFieldCustomStyleResolved, (TextInputBaseField_1_System_Object_ * __this, CustomStyleResolvedEvent * e, MethodInfo * method)); DO_APP_FUNC(0x010EF580, void, TextInputBaseField_1_System_Object__UpdateMixedValueContent, (TextInputBaseField_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010EE8E0, String *, TextInputBaseField_1_System_Object__ValueToString, (TextInputBaseField_1_System_Object_ * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB47E0, TextInputBaseField_1_System_Object__ValueToString__MethodInfo); DO_APP_FUNC(0x010EE840, bool, TextInputBaseField_1_System_Object__get_isDelayed, (TextInputBaseField_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010EE670, TextInputBaseField_1_TValueType_TextInputBase_System_Object_ *, TextInputBaseField_1_System_Object__get_textInputBase, (TextInputBaseField_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010EE680, void, TextInputBaseField_1_System_Object__set_iTextHandle, (TextInputBaseField_1_System_Object_ * __this, ITextHandle * value, MethodInfo * method)); @@ -192965,89 +211756,118 @@ DO_APP_FUNC(0x010EE710, void, TextInputBaseField_1_System_Object__set_isReadOnly DO_APP_FUNC(0x010EE8B0, void, TextInputBaseField_1_System_Object__set_maskChar, (TextInputBaseField_1_System_Object_ * __this, uint16_t value, MethodInfo * method)); DO_APP_FUNC(0x010EE810, void, TextInputBaseField_1_System_Object__set_maxLength, (TextInputBaseField_1_System_Object_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x010EE6E0, void, TextInputBaseField_1_System_Object__set_text, (TextInputBaseField_1_System_Object_ * __this, String * value, MethodInfo * method)); -DO_APP_FUNC(0x010C7910, void, TextProcessingStack_1_UnityEngine_Color32___ctor, (TextProcessingStack_1_UnityEngine_Color32___Boxed * __this, Color32__Array * stack, MethodInfo * method)); -DO_APP_FUNC(0x010C7990, void, TextProcessingStack_1_UnityEngine_Color32___ctor_1, (TextProcessingStack_1_UnityEngine_Color32___Boxed * __this, int32_t capacity, MethodInfo * method)); -DO_APP_FUNC(0x010C7D90, void, TextProcessingStack_1_UnityEngine_Color32__Add, (TextProcessingStack_1_UnityEngine_Color32___Boxed * __this, Color32 item, MethodInfo * method)); -DO_APP_FUNC(0x010C7CA0, void, TextProcessingStack_1_UnityEngine_Color32__Clear, (TextProcessingStack_1_UnityEngine_Color32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C7B00, Color32, TextProcessingStack_1_UnityEngine_Color32__CurrentItem, (TextProcessingStack_1_UnityEngine_Color32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C7FD0, Color32, TextProcessingStack_1_UnityEngine_Color32__Peek, (TextProcessingStack_1_UnityEngine_Color32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C7F30, Color32, TextProcessingStack_1_UnityEngine_Color32__Pop, (TextProcessingStack_1_UnityEngine_Color32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010F0130, void, TextProcessingStack_1_UnityEngine_Color32__Push, (TextProcessingStack_1_UnityEngine_Color32___Boxed * __this, Color32 item, MethodInfo * method)); -DO_APP_FUNC(0x010C7DD0, Color32, TextProcessingStack_1_UnityEngine_Color32__Remove, (TextProcessingStack_1_UnityEngine_Color32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C7CB0, void, TextProcessingStack_1_UnityEngine_Color32__SetDefault, (TextProcessingStack_1_UnityEngine_Color32___Boxed * __this, Color32 item, MethodInfo * method)); -DO_APP_FUNC(0x010C7910, void, TextProcessingStack_1_System_Int32___ctor, (TextProcessingStack_1_System_Int32___Boxed * __this, Int32__Array * stack, MethodInfo * method)); -DO_APP_FUNC(0x010C7990, void, TextProcessingStack_1_System_Int32___ctor_1, (TextProcessingStack_1_System_Int32___Boxed * __this, int32_t capacity, MethodInfo * method)); -DO_APP_FUNC(0x010C7D90, void, TextProcessingStack_1_System_Int32__Add, (TextProcessingStack_1_System_Int32___Boxed * __this, int32_t item, MethodInfo * method)); -DO_APP_FUNC(0x010C7CA0, void, TextProcessingStack_1_System_Int32__Clear, (TextProcessingStack_1_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C7B00, int32_t, TextProcessingStack_1_System_Int32__CurrentItem, (TextProcessingStack_1_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C7FD0, int32_t, TextProcessingStack_1_System_Int32__Peek, (TextProcessingStack_1_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C8C10, int32_t, TextProcessingStack_1_System_Int32__Pop, (TextProcessingStack_1_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010F0230, void, TextProcessingStack_1_System_Int32__Push, (TextProcessingStack_1_System_Int32___Boxed * __this, int32_t item, MethodInfo * method)); -DO_APP_FUNC(0x010C7DD0, int32_t, TextProcessingStack_1_System_Int32__Remove, (TextProcessingStack_1_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C8A30, void, TextProcessingStack_1_System_Int32__SetDefault, (TextProcessingStack_1_System_Int32___Boxed * __this, int32_t item, MethodInfo * method)); -DO_APP_FUNC(0x010C7910, void, TextProcessingStack_1_System_Int32Enum___ctor, (TextProcessingStack_1_System_Int32Enum___Boxed * __this, Int32Enum__Enum__Array * stack, MethodInfo * method)); -DO_APP_FUNC(0x010C7990, void, TextProcessingStack_1_System_Int32Enum___ctor_1, (TextProcessingStack_1_System_Int32Enum___Boxed * __this, int32_t capacity, MethodInfo * method)); -DO_APP_FUNC(0x010C7D90, void, TextProcessingStack_1_System_Int32Enum__Add, (TextProcessingStack_1_System_Int32Enum___Boxed * __this, Int32Enum__Enum item, MethodInfo * method)); -DO_APP_FUNC(0x010C7CA0, void, TextProcessingStack_1_System_Int32Enum__Clear, (TextProcessingStack_1_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C7B00, Int32Enum__Enum, TextProcessingStack_1_System_Int32Enum__CurrentItem, (TextProcessingStack_1_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C7FD0, Int32Enum__Enum, TextProcessingStack_1_System_Int32Enum__Peek, (TextProcessingStack_1_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C8C10, Int32Enum__Enum, TextProcessingStack_1_System_Int32Enum__Pop, (TextProcessingStack_1_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010F0230, void, TextProcessingStack_1_System_Int32Enum__Push, (TextProcessingStack_1_System_Int32Enum___Boxed * __this, Int32Enum__Enum item, MethodInfo * method)); -DO_APP_FUNC(0x010C7DD0, Int32Enum__Enum, TextProcessingStack_1_System_Int32Enum__Remove, (TextProcessingStack_1_System_Int32Enum___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C8A30, void, TextProcessingStack_1_System_Int32Enum__SetDefault, (TextProcessingStack_1_System_Int32Enum___Boxed * __this, Int32Enum__Enum item, MethodInfo * method)); -DO_APP_FUNC(0x010C8D30, void, TextProcessingStack_1_MaterialReference___ctor, (TextProcessingStack_1_MaterialReference___Boxed * __this, MaterialReference_1__Array * stack, MethodInfo * method)); -DO_APP_FUNC(0x010C8DC0, void, TextProcessingStack_1_MaterialReference___ctor_1, (TextProcessingStack_1_MaterialReference___Boxed * __this, int32_t capacity, MethodInfo * method)); -DO_APP_FUNC(0x010C9390, void, TextProcessingStack_1_MaterialReference__Add, (TextProcessingStack_1_MaterialReference___Boxed * __this, MaterialReference_1 item, MethodInfo * method)); -DO_APP_FUNC(0x010C9200, void, TextProcessingStack_1_MaterialReference__Clear, (TextProcessingStack_1_MaterialReference___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010F07B0, MaterialReference_1, TextProcessingStack_1_MaterialReference__CurrentItem, (TextProcessingStack_1_MaterialReference___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010F0710, MaterialReference_1, TextProcessingStack_1_MaterialReference__Peek, (TextProcessingStack_1_MaterialReference___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010F0570, MaterialReference_1, TextProcessingStack_1_MaterialReference__Pop, (TextProcessingStack_1_MaterialReference___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010F03F0, void, TextProcessingStack_1_MaterialReference__Push, (TextProcessingStack_1_MaterialReference___Boxed * __this, MaterialReference_1 item, MethodInfo * method)); -DO_APP_FUNC(0x010F0330, MaterialReference_1, TextProcessingStack_1_MaterialReference__Remove, (TextProcessingStack_1_MaterialReference___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C9210, void, TextProcessingStack_1_MaterialReference__SetDefault, (TextProcessingStack_1_MaterialReference___Boxed * __this, MaterialReference_1 item, MethodInfo * method)); -DO_APP_FUNC(0x010C9920, void, TextProcessingStack_1_System_Object___ctor, (TextProcessingStack_1_System_Object___Boxed * __this, Object__Array * stack, MethodInfo * method)); -DO_APP_FUNC(0x010C99A0, void, TextProcessingStack_1_System_Object___ctor_1, (TextProcessingStack_1_System_Object___Boxed * __this, int32_t capacity, MethodInfo * method)); -DO_APP_FUNC(0x010C9CF0, void, TextProcessingStack_1_System_Object__Add, (TextProcessingStack_1_System_Object___Boxed * __this, Object * item, MethodInfo * method)); -DO_APP_FUNC(0x010C9C00, void, TextProcessingStack_1_System_Object__Clear, (TextProcessingStack_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C9B20, Object *, TextProcessingStack_1_System_Object__CurrentItem, (TextProcessingStack_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C9F40, Object *, TextProcessingStack_1_System_Object__Peek, (TextProcessingStack_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010F0960, Object *, TextProcessingStack_1_System_Object__Pop, (TextProcessingStack_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010F0860, void, TextProcessingStack_1_System_Object__Push, (TextProcessingStack_1_System_Object___Boxed * __this, Object * item, MethodInfo * method)); -DO_APP_FUNC(0x010C9D30, Object *, TextProcessingStack_1_System_Object__Remove, (TextProcessingStack_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C9C10, void, TextProcessingStack_1_System_Object__SetDefault, (TextProcessingStack_1_System_Object___Boxed * __this, Object * item, MethodInfo * method)); -DO_APP_FUNC(0x010C7910, void, TextProcessingStack_1_System_Single___ctor, (TextProcessingStack_1_System_Single___Boxed * __this, Single__Array * stack, MethodInfo * method)); -DO_APP_FUNC(0x010C7990, void, TextProcessingStack_1_System_Single___ctor_1, (TextProcessingStack_1_System_Single___Boxed * __this, int32_t capacity, MethodInfo * method)); -DO_APP_FUNC(0x010CA270, void, TextProcessingStack_1_System_Single__Add, (TextProcessingStack_1_System_Single___Boxed * __this, float item, MethodInfo * method)); -DO_APP_FUNC(0x010C7CA0, void, TextProcessingStack_1_System_Single__Clear, (TextProcessingStack_1_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010C9FD0, float, TextProcessingStack_1_System_Single__CurrentItem, (TextProcessingStack_1_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010CA4A0, float, TextProcessingStack_1_System_Single__Peek, (TextProcessingStack_1_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010CA410, float, TextProcessingStack_1_System_Single__Pop, (TextProcessingStack_1_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010F0A10, void, TextProcessingStack_1_System_Single__Push, (TextProcessingStack_1_System_Single___Boxed * __this, float item, MethodInfo * method)); -DO_APP_FUNC(0x010CA2B0, float, TextProcessingStack_1_System_Single__Remove, (TextProcessingStack_1_System_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010CA190, void, TextProcessingStack_1_System_Single__SetDefault, (TextProcessingStack_1_System_Single___Boxed * __this, float item, MethodInfo * method)); +DO_APP_FUNC(0x010C7910, void, TextProcessingStack_1_UnityEngine_Color32___ctor, (TextProcessingStack_1_UnityEngine_Color32_ * __this, Color32__Array * stack, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E7D8, TextProcessingStack_1_UnityEngine_Color32___ctor__MethodInfo); +DO_APP_FUNC(0x010C7990, void, TextProcessingStack_1_UnityEngine_Color32___ctor_1, (TextProcessingStack_1_UnityEngine_Color32_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC(0x010C7D90, void, TextProcessingStack_1_UnityEngine_Color32__Add, (TextProcessingStack_1_UnityEngine_Color32_ * __this, Color32 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EB08, TextProcessingStack_1_UnityEngine_Color32__Add__MethodInfo); +DO_APP_FUNC(0x010C7CA0, void, TextProcessingStack_1_UnityEngine_Color32__Clear, (TextProcessingStack_1_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C7B00, Color32, TextProcessingStack_1_UnityEngine_Color32__CurrentItem, (TextProcessingStack_1_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C7FD0, Color32, TextProcessingStack_1_UnityEngine_Color32__Peek, (TextProcessingStack_1_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C7F30, Color32, TextProcessingStack_1_UnityEngine_Color32__Pop, (TextProcessingStack_1_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010F0130, void, TextProcessingStack_1_UnityEngine_Color32__Push, (TextProcessingStack_1_UnityEngine_Color32_ * __this, Color32 item, MethodInfo * method)); +DO_APP_FUNC(0x010C7DD0, Color32, TextProcessingStack_1_UnityEngine_Color32__Remove, (TextProcessingStack_1_UnityEngine_Color32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EB30, TextProcessingStack_1_UnityEngine_Color32__Remove__MethodInfo); +DO_APP_FUNC(0x010C7CB0, void, TextProcessingStack_1_UnityEngine_Color32__SetDefault, (TextProcessingStack_1_UnityEngine_Color32_ * __this, Color32 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E3D0, TextProcessingStack_1_UnityEngine_Color32__SetDefault__MethodInfo); +DO_APP_FUNC(0x010C7910, void, TextProcessingStack_1_System_Int32___ctor, (TextProcessingStack_1_System_Int32_ * __this, Int32__Array * stack, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E850, TextProcessingStack_1_System_Int32___ctor__MethodInfo); +DO_APP_FUNC(0x010C7990, void, TextProcessingStack_1_System_Int32___ctor_1, (TextProcessingStack_1_System_Int32_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC(0x010C7D90, void, TextProcessingStack_1_System_Int32__Add, (TextProcessingStack_1_System_Int32_ * __this, int32_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EB18, TextProcessingStack_1_System_Int32__Add__MethodInfo); +DO_APP_FUNC(0x010C7CA0, void, TextProcessingStack_1_System_Int32__Clear, (TextProcessingStack_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E368, TextProcessingStack_1_System_Int32__Clear__MethodInfo); +DO_APP_FUNC(0x010C7B00, int32_t, TextProcessingStack_1_System_Int32__CurrentItem, (TextProcessingStack_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D20160, TextProcessingStack_1_System_Int32__CurrentItem__MethodInfo); +DO_APP_FUNC(0x010C7FD0, int32_t, TextProcessingStack_1_System_Int32__Peek, (TextProcessingStack_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C8C10, int32_t, TextProcessingStack_1_System_Int32__Pop, (TextProcessingStack_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010F0230, void, TextProcessingStack_1_System_Int32__Push, (TextProcessingStack_1_System_Int32_ * __this, int32_t item, MethodInfo * method)); +DO_APP_FUNC(0x010C7DD0, int32_t, TextProcessingStack_1_System_Int32__Remove, (TextProcessingStack_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EB88, TextProcessingStack_1_System_Int32__Remove__MethodInfo); +DO_APP_FUNC(0x010C8A30, void, TextProcessingStack_1_System_Int32__SetDefault, (TextProcessingStack_1_System_Int32_ * __this, int32_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D20320, TextProcessingStack_1_System_Int32__SetDefault__MethodInfo); +DO_APP_FUNC(0x010C7910, void, TextProcessingStack_1_System_Int32Enum___ctor, (TextProcessingStack_1_System_Int32Enum_ * __this, Int32Enum__Enum__Array * stack, MethodInfo * method)); +DO_APP_FUNC(0x010C7990, void, TextProcessingStack_1_System_Int32Enum___ctor_1, (TextProcessingStack_1_System_Int32Enum_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC(0x010C7D90, void, TextProcessingStack_1_System_Int32Enum__Add, (TextProcessingStack_1_System_Int32Enum_ * __this, Int32Enum__Enum item, MethodInfo * method)); +DO_APP_FUNC(0x010C7CA0, void, TextProcessingStack_1_System_Int32Enum__Clear, (TextProcessingStack_1_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C7B00, Int32Enum__Enum, TextProcessingStack_1_System_Int32Enum__CurrentItem, (TextProcessingStack_1_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C7FD0, Int32Enum__Enum, TextProcessingStack_1_System_Int32Enum__Peek, (TextProcessingStack_1_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C8C10, Int32Enum__Enum, TextProcessingStack_1_System_Int32Enum__Pop, (TextProcessingStack_1_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010F0230, void, TextProcessingStack_1_System_Int32Enum__Push, (TextProcessingStack_1_System_Int32Enum_ * __this, Int32Enum__Enum item, MethodInfo * method)); +DO_APP_FUNC(0x010C7DD0, Int32Enum__Enum, TextProcessingStack_1_System_Int32Enum__Remove, (TextProcessingStack_1_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C8A30, void, TextProcessingStack_1_System_Int32Enum__SetDefault, (TextProcessingStack_1_System_Int32Enum_ * __this, Int32Enum__Enum item, MethodInfo * method)); +DO_APP_FUNC(0x010C8D30, void, TextProcessingStack_1_MaterialReference___ctor, (TextProcessingStack_1_MaterialReference_ * __this, MaterialReference_1__Array * stack, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E830, TextProcessingStack_1_MaterialReference___ctor__MethodInfo); +DO_APP_FUNC(0x010C8DC0, void, TextProcessingStack_1_MaterialReference___ctor_1, (TextProcessingStack_1_MaterialReference_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC(0x010C9390, void, TextProcessingStack_1_MaterialReference__Add, (TextProcessingStack_1_MaterialReference_ * __this, MaterialReference_1 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EB10, TextProcessingStack_1_MaterialReference__Add__MethodInfo); +DO_APP_FUNC(0x010C9200, void, TextProcessingStack_1_MaterialReference__Clear, (TextProcessingStack_1_MaterialReference_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010F07B0, MaterialReference_1, TextProcessingStack_1_MaterialReference__CurrentItem, (TextProcessingStack_1_MaterialReference_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010F0710, MaterialReference_1, TextProcessingStack_1_MaterialReference__Peek, (TextProcessingStack_1_MaterialReference_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010F0570, MaterialReference_1, TextProcessingStack_1_MaterialReference__Pop, (TextProcessingStack_1_MaterialReference_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010F03F0, void, TextProcessingStack_1_MaterialReference__Push, (TextProcessingStack_1_MaterialReference_ * __this, MaterialReference_1 item, MethodInfo * method)); +DO_APP_FUNC(0x010F0330, MaterialReference_1, TextProcessingStack_1_MaterialReference__Remove, (TextProcessingStack_1_MaterialReference_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EB78, TextProcessingStack_1_MaterialReference__Remove__MethodInfo); +DO_APP_FUNC(0x010C9210, void, TextProcessingStack_1_MaterialReference__SetDefault, (TextProcessingStack_1_MaterialReference_ * __this, MaterialReference_1 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E3F8, TextProcessingStack_1_MaterialReference__SetDefault__MethodInfo); +DO_APP_FUNC(0x010C9920, void, TextProcessingStack_1_System_Object___ctor, (TextProcessingStack_1_System_Object_ * __this, Object__Array * stack, MethodInfo * method)); +DO_APP_FUNC(0x010C99A0, void, TextProcessingStack_1_System_Object___ctor_1, (TextProcessingStack_1_System_Object_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC(0x010C9CF0, void, TextProcessingStack_1_System_Object__Add, (TextProcessingStack_1_System_Object_ * __this, Object * item, MethodInfo * method)); +DO_APP_FUNC(0x010C9C00, void, TextProcessingStack_1_System_Object__Clear, (TextProcessingStack_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C9B20, Object *, TextProcessingStack_1_System_Object__CurrentItem, (TextProcessingStack_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C9F40, Object *, TextProcessingStack_1_System_Object__Peek, (TextProcessingStack_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010F0960, Object *, TextProcessingStack_1_System_Object__Pop, (TextProcessingStack_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010F0860, void, TextProcessingStack_1_System_Object__Push, (TextProcessingStack_1_System_Object_ * __this, Object * item, MethodInfo * method)); +DO_APP_FUNC(0x010C9D30, Object *, TextProcessingStack_1_System_Object__Remove, (TextProcessingStack_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010C9C10, void, TextProcessingStack_1_System_Object__SetDefault, (TextProcessingStack_1_System_Object_ * __this, Object * item, MethodInfo * method)); +DO_APP_FUNC(0x010C7910, void, TextProcessingStack_1_System_Single___ctor, (TextProcessingStack_1_System_Single_ * __this, Single__Array * stack, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E838, TextProcessingStack_1_System_Single___ctor__MethodInfo); +DO_APP_FUNC(0x010C7990, void, TextProcessingStack_1_System_Single___ctor_1, (TextProcessingStack_1_System_Single_ * __this, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E848, TextProcessingStack_1_System_Single___ctor_1__MethodInfo); +DO_APP_FUNC(0x010CA270, void, TextProcessingStack_1_System_Single__Add, (TextProcessingStack_1_System_Single_ * __this, float item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EAE0, TextProcessingStack_1_System_Single__Add__MethodInfo); +DO_APP_FUNC(0x010C7CA0, void, TextProcessingStack_1_System_Single__Clear, (TextProcessingStack_1_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E360, TextProcessingStack_1_System_Single__Clear__MethodInfo); +DO_APP_FUNC(0x010C9FD0, float, TextProcessingStack_1_System_Single__CurrentItem, (TextProcessingStack_1_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010CA4A0, float, TextProcessingStack_1_System_Single__Peek, (TextProcessingStack_1_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010CA410, float, TextProcessingStack_1_System_Single__Pop, (TextProcessingStack_1_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EBA8, TextProcessingStack_1_System_Single__Pop__MethodInfo); +DO_APP_FUNC(0x010F0A10, void, TextProcessingStack_1_System_Single__Push, (TextProcessingStack_1_System_Single_ * __this, float item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EB98, TextProcessingStack_1_System_Single__Push__MethodInfo); +DO_APP_FUNC(0x010CA2B0, float, TextProcessingStack_1_System_Single__Remove, (TextProcessingStack_1_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EB68, TextProcessingStack_1_System_Single__Remove__MethodInfo); +DO_APP_FUNC(0x010CA190, void, TextProcessingStack_1_System_Single__SetDefault, (TextProcessingStack_1_System_Single_ * __this, float item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E408, TextProcessingStack_1_System_Single__SetDefault__MethodInfo); DO_APP_FUNC(0x010F1250, void, TextReceiver_1_Dissonance_Integrations_PhotonBolt_BoltPeer___cctor, (MethodInfo * method)); DO_APP_FUNC(0x010F0B10, void, TextReceiver_1_Dissonance_Integrations_PhotonBolt_BoltPeer___ctor, (TextReceiver_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, EventQueue * events, IRooms * rooms, IClientCollection_1_System_Nullable_1_ * peers, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4718, TextReceiver_1_Dissonance_Integrations_PhotonBolt_BoltPeer___ctor__MethodInfo); DO_APP_FUNC(0x010F1050, String *, TextReceiver_1_Dissonance_Integrations_PhotonBolt_BoltPeer__GetTxtMessageRecipient, (TextReceiver_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, ChannelType__Enum txtRecipientType, uint16_t txtRecipient, MethodInfo * method)); -DO_APP_FUNC(0x010F0D00, void, TextReceiver_1_Dissonance_Integrations_PhotonBolt_BoltPeer__ProcessTextMessage, (TextReceiver_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, PacketReader reader, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB46E0, TextReceiver_1_Dissonance_Integrations_PhotonBolt_BoltPeer__GetTxtMessageRecipient__MethodInfo); +DO_APP_FUNC(0x010F0D00, void, TextReceiver_1_Dissonance_Integrations_PhotonBolt_BoltPeer__ProcessTextMessage, (TextReceiver_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, PacketReader * reader, MethodInfo * method)); DO_APP_FUNC(0x010F1E20, void, TextSender_1_Dissonance_Integrations_PhotonBolt_BoltPeer___cctor, (MethodInfo * method)); DO_APP_FUNC(0x010F13F0, void, TextSender_1_Dissonance_Integrations_PhotonBolt_BoltPeer___ctor, (TextSender_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, ISendQueue_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * sender, ISession * session, IClientCollection_1_System_Nullable_1_ * peers, MethodInfo * method)); DO_APP_FUNC(0x010F1680, void, TextSender_1_Dissonance_Integrations_PhotonBolt_BoltPeer__Send, (TextSender_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, String * data, ChannelType__Enum type, String * recipient, MethodInfo * method)); DO_APP_FUNC(0x010F3B30, void, ThreadLocal_1_System_Object___cctor, (MethodInfo * method)); DO_APP_FUNC(0x010F1FC0, void, ThreadLocal_1_System_Object___ctor, (ThreadLocal_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010F3140, void, ThreadLocal_1_System_Object__CreateLinkedSlot, (ThreadLocal_1_System_Object_ * __this, ThreadLocal_1_T_LinkedSlotVolatile_System_Object___Array * slotArray, int32_t id, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4638, ThreadLocal_1_System_Object__CreateLinkedSlot__MethodInfo); DO_APP_FUNC(0x010F22C0, void, ThreadLocal_1_System_Object__Dispose, (ThreadLocal_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010F2330, void, ThreadLocal_1_System_Object__Dispose_1, (ThreadLocal_1_System_Object_ * __this, bool disposing, MethodInfo * method)); DO_APP_FUNC(0x010F2250, void, ThreadLocal_1_System_Object__Finalize, (ThreadLocal_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010F3AF0, int32_t, ThreadLocal_1_System_Object__GetNewTableSize, (int32_t minSize, MethodInfo * method)); DO_APP_FUNC(0x010F29A0, Object *, ThreadLocal_1_System_Object__GetValueSlow, (ThreadLocal_1_System_Object_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x010F37B0, void, ThreadLocal_1_System_Object__GrowTable, (ThreadLocal_1_System_Object_ * __this, ThreadLocal_1_T_LinkedSlotVolatile_System_Object___Array * table, int32_t minLength, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4678, ThreadLocal_1_System_Object__GetValueSlow__MethodInfo); +DO_APP_FUNC(0x010F37B0, void, ThreadLocal_1_System_Object__GrowTable, (ThreadLocal_1_System_Object_ * __this, ThreadLocal_1_T_LinkedSlotVolatile_System_Object___Array * * table, int32_t minLength, MethodInfo * method)); DO_APP_FUNC(0x010F20B0, void, ThreadLocal_1_System_Object__Initialize, (ThreadLocal_1_System_Object_ * __this, Func_1_Object_ * valueFactory, bool trackAllValues, MethodInfo * method)); DO_APP_FUNC(0x010F2B60, void, ThreadLocal_1_System_Object__SetValueSlow, (ThreadLocal_1_System_Object_ * __this, Object * value, ThreadLocal_1_T_LinkedSlotVolatile_System_Object___Array * slotArray, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4640, ThreadLocal_1_System_Object__SetValueSlow__MethodInfo); DO_APP_FUNC(0x010F2700, String *, ThreadLocal_1_System_Object__ToString, (ThreadLocal_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010F3660, bool, ThreadLocal_1_System_Object__get_IsValueCreated, (ThreadLocal_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4650, ThreadLocal_1_System_Object__get_IsValueCreated__MethodInfo); DO_APP_FUNC(0x010F2750, Object *, ThreadLocal_1_System_Object__get_Value, (ThreadLocal_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010F2870, void, ThreadLocal_1_System_Object__set_Value, (ThreadLocal_1_System_Object_ * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x010F3CB0, void, ThreadedMessageQueue_1_System_Object___ctor, (ThreadedMessageQueue_1_System_Object_ * __this, int32_t param_0000c539, int32_t param_0000c53a, int32_t param_0000c53b, bool param_0000c53c, Action_1_Object_ * param_0000c53d, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4658, ThreadedMessageQueue_1_System_Object___ctor__MethodInfo); DO_APP_FUNC(0x010F4760, void, ThreadedMessageQueue_1_System_Object__Dispose, (ThreadedMessageQueue_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010F4860, void, ThreadedMessageQueue_1_System_Object__Dispose_1, (ThreadedMessageQueue_1_System_Object_ * __this, bool disposing, MethodInfo * method)); DO_APP_FUNC(0x010F3F10, void, ThreadedMessageQueue_1_System_Object__Enqueue, (ThreadedMessageQueue_1_System_Object_ * __this, Object * message, MethodInfo * method)); @@ -193063,7 +211883,9 @@ DO_APP_FUNC(0x010F5B80, bool, TlsOverPerCoreLockedStacksArrayPool_1_System_Byte_ DO_APP_FUNC(0x010F5CC0, TlsOverPerCoreLockedStacksArrayPool_1_T_MemoryPressure_System_Byte_ *, TlsOverPerCoreLockedStacksArrayPool_1_System_Byte__GetMemoryPressure, (MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, TlsOverPerCoreLockedStacksArrayPool_1_System_Byte__GetTrimBuffers, (MethodInfo * method)); DO_APP_FUNC(0x010F4FD0, Byte__Array *, TlsOverPerCoreLockedStacksArrayPool_1_System_Byte__Rent, (TlsOverPerCoreLockedStacksArrayPool_1_System_Byte_ * __this, int32_t minimumLength, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4608, TlsOverPerCoreLockedStacksArrayPool_1_System_Byte__Rent__MethodInfo); DO_APP_FUNC(0x010F5240, void, TlsOverPerCoreLockedStacksArrayPool_1_System_Byte__Return, (TlsOverPerCoreLockedStacksArrayPool_1_System_Byte_ * __this, Byte__Array * array, bool clearArray, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4600, TlsOverPerCoreLockedStacksArrayPool_1_System_Byte__Return__MethodInfo); DO_APP_FUNC(0x010F5730, bool, TlsOverPerCoreLockedStacksArrayPool_1_System_Byte__Trim, (TlsOverPerCoreLockedStacksArrayPool_1_System_Byte_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010F4FA0, int32_t, TlsOverPerCoreLockedStacksArrayPool_1_System_Byte__get_Id, (TlsOverPerCoreLockedStacksArrayPool_1_System_Byte_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010F5D40, void, TlsOverPerCoreLockedStacksArrayPool_1_System_Char___cctor, (MethodInfo * method)); @@ -193073,7 +211895,9 @@ DO_APP_FUNC(0x010F5B80, bool, TlsOverPerCoreLockedStacksArrayPool_1_System_Char_ DO_APP_FUNC(0x010F6D10, TlsOverPerCoreLockedStacksArrayPool_1_T_MemoryPressure_System_Char_ *, TlsOverPerCoreLockedStacksArrayPool_1_System_Char__GetMemoryPressure, (MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, TlsOverPerCoreLockedStacksArrayPool_1_System_Char__GetTrimBuffers, (MethodInfo * method)); DO_APP_FUNC(0x010F6160, Char__Array *, TlsOverPerCoreLockedStacksArrayPool_1_System_Char__Rent, (TlsOverPerCoreLockedStacksArrayPool_1_System_Char_ * __this, int32_t minimumLength, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB45F0, TlsOverPerCoreLockedStacksArrayPool_1_System_Char__Rent__MethodInfo); DO_APP_FUNC(0x010F63D0, void, TlsOverPerCoreLockedStacksArrayPool_1_System_Char__Return, (TlsOverPerCoreLockedStacksArrayPool_1_System_Char_ * __this, Char__Array * array, bool clearArray, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB45E8, TlsOverPerCoreLockedStacksArrayPool_1_System_Char__Return__MethodInfo); DO_APP_FUNC(0x010F68C0, bool, TlsOverPerCoreLockedStacksArrayPool_1_System_Char__Trim, (TlsOverPerCoreLockedStacksArrayPool_1_System_Char_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010F4FA0, int32_t, TlsOverPerCoreLockedStacksArrayPool_1_System_Char__get_Id, (TlsOverPerCoreLockedStacksArrayPool_1_System_Char_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010F5D40, void, TlsOverPerCoreLockedStacksArrayPool_1_System_Int32___cctor, (MethodInfo * method)); @@ -193083,7 +211907,9 @@ DO_APP_FUNC(0x010F5B80, bool, TlsOverPerCoreLockedStacksArrayPool_1_System_Int32 DO_APP_FUNC(0x010F7B10, TlsOverPerCoreLockedStacksArrayPool_1_T_MemoryPressure_System_Int32_ *, TlsOverPerCoreLockedStacksArrayPool_1_System_Int32__GetMemoryPressure, (MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, TlsOverPerCoreLockedStacksArrayPool_1_System_Int32__GetTrimBuffers, (MethodInfo * method)); DO_APP_FUNC(0x010F6F60, Int32__Array *, TlsOverPerCoreLockedStacksArrayPool_1_System_Int32__Rent, (TlsOverPerCoreLockedStacksArrayPool_1_System_Int32_ * __this, int32_t minimumLength, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB45D8, TlsOverPerCoreLockedStacksArrayPool_1_System_Int32__Rent__MethodInfo); DO_APP_FUNC(0x010F71D0, void, TlsOverPerCoreLockedStacksArrayPool_1_System_Int32__Return, (TlsOverPerCoreLockedStacksArrayPool_1_System_Int32_ * __this, Int32__Array * array, bool clearArray, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB45E0, TlsOverPerCoreLockedStacksArrayPool_1_System_Int32__Return__MethodInfo); DO_APP_FUNC(0x010F76C0, bool, TlsOverPerCoreLockedStacksArrayPool_1_System_Int32__Trim, (TlsOverPerCoreLockedStacksArrayPool_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010F4FA0, int32_t, TlsOverPerCoreLockedStacksArrayPool_1_System_Int32__get_Id, (TlsOverPerCoreLockedStacksArrayPool_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010F5D40, void, TlsOverPerCoreLockedStacksArrayPool_1_System_Object___cctor, (MethodInfo * method)); @@ -193093,40 +211919,43 @@ DO_APP_FUNC(0x010F5B80, bool, TlsOverPerCoreLockedStacksArrayPool_1_System_Objec DO_APP_FUNC(0x010F8910, TlsOverPerCoreLockedStacksArrayPool_1_T_MemoryPressure_System_Object_ *, TlsOverPerCoreLockedStacksArrayPool_1_System_Object__GetMemoryPressure, (MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, TlsOverPerCoreLockedStacksArrayPool_1_System_Object__GetTrimBuffers, (MethodInfo * method)); DO_APP_FUNC(0x010F7D60, Object__Array *, TlsOverPerCoreLockedStacksArrayPool_1_System_Object__Rent, (TlsOverPerCoreLockedStacksArrayPool_1_System_Object_ * __this, int32_t minimumLength, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB45D0, TlsOverPerCoreLockedStacksArrayPool_1_System_Object__Rent__MethodInfo); DO_APP_FUNC(0x010F7FD0, void, TlsOverPerCoreLockedStacksArrayPool_1_System_Object__Return, (TlsOverPerCoreLockedStacksArrayPool_1_System_Object_ * __this, Object__Array * array, bool clearArray, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB45C8, TlsOverPerCoreLockedStacksArrayPool_1_System_Object__Return__MethodInfo); DO_APP_FUNC(0x010F84C0, bool, TlsOverPerCoreLockedStacksArrayPool_1_System_Object__Trim, (TlsOverPerCoreLockedStacksArrayPool_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010F4FA0, int32_t, TlsOverPerCoreLockedStacksArrayPool_1_System_Object__get_Id, (TlsOverPerCoreLockedStacksArrayPool_1_System_Object_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x010F8D80, void, TrackableChanges_1_BoundedPlane___ctor, (TrackableChanges_1_BoundedPlane___Boxed * __this, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane_ added, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane_ updated, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId_ removed, MethodInfo * method)); +DO_APP_FUNC(0x010F8D80, void, TrackableChanges_1_BoundedPlane___ctor, (TrackableChanges_1_BoundedPlane_ * __this, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane_ added, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane_ updated, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId_ removed, MethodInfo * method)); DO_APP_FUNC(0x010F89A0, TrackableChanges_1_BoundedPlane_, TrackableChanges_1_BoundedPlane__CopyFrom, (NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane_ added, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane_ updated, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId_ removed, Allocator__Enum allocator, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8DF10, TrackableChanges_1_BoundedPlane__CopyFrom__MethodInfo); -DO_APP_FUNC(0x010F8CC0, void, TrackableChanges_1_BoundedPlane__Dispose, (TrackableChanges_1_BoundedPlane___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C16880, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane_, TrackableChanges_1_BoundedPlane__get_added, (TrackableChanges_1_BoundedPlane___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, TrackableChanges_1_BoundedPlane__get_isCreated, (TrackableChanges_1_BoundedPlane___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010F8990, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId_, TrackableChanges_1_BoundedPlane__get_removed, (TrackableChanges_1_BoundedPlane___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0093E890, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane_, TrackableChanges_1_BoundedPlane__get_updated, (TrackableChanges_1_BoundedPlane___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C3C200, void, TrackableChanges_1_BoundedPlane__set_isCreated, (TrackableChanges_1_BoundedPlane___Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x010F8D80, void, TrackableChanges_1_XRAnchor___ctor, (TrackableChanges_1_XRAnchor___Boxed * __this, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor_ added, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor_ updated, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId_ removed, MethodInfo * method)); +DO_APP_FUNC(0x010F8CC0, void, TrackableChanges_1_BoundedPlane__Dispose, (TrackableChanges_1_BoundedPlane_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C16880, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane_, TrackableChanges_1_BoundedPlane__get_added, (TrackableChanges_1_BoundedPlane_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C173D0, bool, TrackableChanges_1_BoundedPlane__get_isCreated, (TrackableChanges_1_BoundedPlane_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010F8990, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId_, TrackableChanges_1_BoundedPlane__get_removed, (TrackableChanges_1_BoundedPlane_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0093E890, NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane_, TrackableChanges_1_BoundedPlane__get_updated, (TrackableChanges_1_BoundedPlane_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C3C200, void, TrackableChanges_1_BoundedPlane__set_isCreated, (TrackableChanges_1_BoundedPlane_ * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x010F8D80, void, TrackableChanges_1_XRAnchor___ctor, (TrackableChanges_1_XRAnchor_ * __this, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor_ added, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor_ updated, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId_ removed, MethodInfo * method)); DO_APP_FUNC(0x010F8DC0, TrackableChanges_1_XRAnchor_, TrackableChanges_1_XRAnchor__CopyFrom, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor_ added, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor_ updated, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId_ removed, Allocator__Enum allocator, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8E268, TrackableChanges_1_XRAnchor__CopyFrom__MethodInfo); -DO_APP_FUNC(0x010F90E0, void, TrackableChanges_1_XRAnchor__Dispose, (TrackableChanges_1_XRAnchor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C16880, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor_, TrackableChanges_1_XRAnchor__get_added, (TrackableChanges_1_XRAnchor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, TrackableChanges_1_XRAnchor__get_isCreated, (TrackableChanges_1_XRAnchor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010F8990, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId_, TrackableChanges_1_XRAnchor__get_removed, (TrackableChanges_1_XRAnchor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0093E890, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor_, TrackableChanges_1_XRAnchor__get_updated, (TrackableChanges_1_XRAnchor___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C3C200, void, TrackableChanges_1_XRAnchor__set_isCreated, (TrackableChanges_1_XRAnchor___Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x010F8D80, void, TrackableChanges_1_XRRaycast___ctor, (TrackableChanges_1_XRRaycast___Boxed * __this, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast_ added, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast_ updated, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId_ removed, MethodInfo * method)); +DO_APP_FUNC(0x010F90E0, void, TrackableChanges_1_XRAnchor__Dispose, (TrackableChanges_1_XRAnchor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C16880, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor_, TrackableChanges_1_XRAnchor__get_added, (TrackableChanges_1_XRAnchor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C173D0, bool, TrackableChanges_1_XRAnchor__get_isCreated, (TrackableChanges_1_XRAnchor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010F8990, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId_, TrackableChanges_1_XRAnchor__get_removed, (TrackableChanges_1_XRAnchor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0093E890, NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor_, TrackableChanges_1_XRAnchor__get_updated, (TrackableChanges_1_XRAnchor_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C3C200, void, TrackableChanges_1_XRAnchor__set_isCreated, (TrackableChanges_1_XRAnchor_ * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x010F8D80, void, TrackableChanges_1_XRRaycast___ctor, (TrackableChanges_1_XRRaycast_ * __this, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast_ added, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast_ updated, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId_ removed, MethodInfo * method)); DO_APP_FUNC(0x010F91A0, TrackableChanges_1_XRRaycast_, TrackableChanges_1_XRRaycast__CopyFrom, (NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast_ added, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast_ updated, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId_ removed, Allocator__Enum allocator, MethodInfo * method)); -DO_APP_FUNC(0x010F94C0, void, TrackableChanges_1_XRRaycast__Dispose, (TrackableChanges_1_XRRaycast___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C16880, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast_, TrackableChanges_1_XRRaycast__get_added, (TrackableChanges_1_XRRaycast___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C173D0, bool, TrackableChanges_1_XRRaycast__get_isCreated, (TrackableChanges_1_XRRaycast___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010F8990, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId_, TrackableChanges_1_XRRaycast__get_removed, (TrackableChanges_1_XRRaycast___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0093E890, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast_, TrackableChanges_1_XRRaycast__get_updated, (TrackableChanges_1_XRRaycast___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C3C200, void, TrackableChanges_1_XRRaycast__set_isCreated, (TrackableChanges_1_XRRaycast___Boxed * __this, bool value, MethodInfo * method)); -DO_APP_FUNC(0x010F95E0, void, TrackableCollection_1_System_Object___ctor, (TrackableCollection_1_System_Object___Boxed * __this, Dictionary_2_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_ * trackables, MethodInfo * method)); -DO_APP_FUNC(0x00A9A720, bool, TrackableCollection_1_System_Object__Equals, (TrackableCollection_1_System_Object___Boxed * __this, TrackableCollection_1_System_Object_ other, MethodInfo * method)); -DO_APP_FUNC(0x010F96C0, bool, TrackableCollection_1_System_Object__Equals_1, (TrackableCollection_1_System_Object___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x010F9580, TrackableCollection_1_TTrackable_Enumerator_System_Object_, TrackableCollection_1_System_Object__GetEnumerator, (TrackableCollection_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x010F96A0, int32_t, TrackableCollection_1_System_Object__GetHashCode, (TrackableCollection_1_System_Object___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x010F94C0, void, TrackableChanges_1_XRRaycast__Dispose, (TrackableChanges_1_XRRaycast_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C16880, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast_, TrackableChanges_1_XRRaycast__get_added, (TrackableChanges_1_XRRaycast_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C173D0, bool, TrackableChanges_1_XRRaycast__get_isCreated, (TrackableChanges_1_XRRaycast_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010F8990, NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId_, TrackableChanges_1_XRRaycast__get_removed, (TrackableChanges_1_XRRaycast_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0093E890, NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast_, TrackableChanges_1_XRRaycast__get_updated, (TrackableChanges_1_XRRaycast_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C3C200, void, TrackableChanges_1_XRRaycast__set_isCreated, (TrackableChanges_1_XRRaycast_ * __this, bool value, MethodInfo * method)); +DO_APP_FUNC(0x010F95E0, void, TrackableCollection_1_System_Object___ctor, (TrackableCollection_1_System_Object_ * __this, Dictionary_2_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_ * trackables, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB45A0, TrackableCollection_1_System_Object___ctor__MethodInfo); +DO_APP_FUNC(0x00A9A720, bool, TrackableCollection_1_System_Object__Equals, (TrackableCollection_1_System_Object_ * __this, TrackableCollection_1_System_Object_ other, MethodInfo * method)); +DO_APP_FUNC(0x010F96C0, bool, TrackableCollection_1_System_Object__Equals_1, (TrackableCollection_1_System_Object_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x010F9580, TrackableCollection_1_TTrackable_Enumerator_System_Object_, TrackableCollection_1_System_Object__GetEnumerator, (TrackableCollection_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x010F96A0, int32_t, TrackableCollection_1_System_Object__GetHashCode, (TrackableCollection_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010470B0, void, TrackingSubsystem_4_BoundedPlane_System_Object_System_Object_System_Object___ctor, (TrackingSubsystem_4_BoundedPlane_System_Object_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010470B0, void, TrackingSubsystem_4_XRAnchor_System_Object_System_Object_System_Object___ctor, (TrackingSubsystem_4_XRAnchor_System_Object_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010470B0, void, TrackingSubsystem_4_XRRaycast_System_Object_System_Object_System_Object___ctor, (TrackingSubsystem_4_XRRaycast_System_Object_System_Object_System_Object_ * __this, MethodInfo * method)); @@ -193134,9 +211963,10 @@ DO_APP_FUNC(0x010FA4E0, void, TransferBuffer_1_System_Object___cctor, (MethodInf DO_APP_FUNC(0x010F97C0, void, TransferBuffer_1_System_Object___ctor, (TransferBuffer_1_System_Object_ * __this, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x010FA4C0, void, TransferBuffer_1_System_Object__Clear, (TransferBuffer_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010FA270, bool, TransferBuffer_1_System_Object__Read, (TransferBuffer_1_System_Object_ * __this, ArraySegment_1_Object_ data, MethodInfo * method)); -DO_APP_FUNC(0x010F9FC0, bool, TransferBuffer_1_System_Object__Read_1, (TransferBuffer_1_System_Object_ * __this, Object * item, MethodInfo * method)); +DO_APP_FUNC(0x010F9FC0, bool, TransferBuffer_1_System_Object__Read_1, (TransferBuffer_1_System_Object_ * __this, Object * * item, MethodInfo * method)); DO_APP_FUNC(0x010FA0F0, bool, TransferBuffer_1_System_Object__Read_2, (TransferBuffer_1_System_Object_ * __this, Object__Array * data, MethodInfo * method)); DO_APP_FUNC(0x010FA170, bool, TransferBuffer_1_System_Object__Read_3, (TransferBuffer_1_System_Object_ * __this, Object__Array * data, int32_t readCount, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4598, TransferBuffer_1_System_Object__Read_3__MethodInfo); DO_APP_FUNC(0x010F9980, bool, TransferBuffer_1_System_Object__TryWrite, (TransferBuffer_1_System_Object_ * __this, Object * item, MethodInfo * method)); DO_APP_FUNC(0x010F9B10, bool, TransferBuffer_1_System_Object__TryWriteAll, (TransferBuffer_1_System_Object_ * __this, ArraySegment_1_Object_ data, MethodInfo * method)); DO_APP_FUNC(0x010F9D60, int32_t, TransferBuffer_1_System_Object__WriteSome, (TransferBuffer_1_System_Object_ * __this, ArraySegment_1_Object_ data, MethodInfo * method)); @@ -193149,9 +211979,10 @@ DO_APP_FUNC(0x010FA4C0, void, TransferBuffer_1_System_Single__Clear, (TransferBu DO_APP_FUNC_METHODINFO(0x03C8FB78, TransferBuffer_1_System_Single__Clear__MethodInfo); DO_APP_FUNC(0x010FA270, bool, TransferBuffer_1_System_Single__Read, (TransferBuffer_1_System_Single_ * __this, ArraySegment_1_Single_ data, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8FB58, TransferBuffer_1_System_Single__Read__MethodInfo); -DO_APP_FUNC(0x010FAA70, bool, TransferBuffer_1_System_Single__Read_1, (TransferBuffer_1_System_Single_ * __this, float item, MethodInfo * method)); +DO_APP_FUNC(0x010FAA70, bool, TransferBuffer_1_System_Single__Read_1, (TransferBuffer_1_System_Single_ * __this, float * item, MethodInfo * method)); DO_APP_FUNC(0x010FA0F0, bool, TransferBuffer_1_System_Single__Read_2, (TransferBuffer_1_System_Single_ * __this, Single__Array * data, MethodInfo * method)); DO_APP_FUNC(0x010FAB00, bool, TransferBuffer_1_System_Single__Read_3, (TransferBuffer_1_System_Single_ * __this, Single__Array * data, int32_t readCount, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7048, TransferBuffer_1_System_Single__Read_3__MethodInfo); DO_APP_FUNC(0x010FA700, bool, TransferBuffer_1_System_Single__TryWrite, (TransferBuffer_1_System_Single_ * __this, float item, MethodInfo * method)); DO_APP_FUNC(0x010F9B10, bool, TransferBuffer_1_System_Single__TryWriteAll, (TransferBuffer_1_System_Single_ * __this, ArraySegment_1_Single_ data, MethodInfo * method)); DO_APP_FUNC(0x010FA810, int32_t, TransferBuffer_1_System_Single__WriteSome, (TransferBuffer_1_System_Single_ * __this, ArraySegment_1_Single_ data, MethodInfo * method)); @@ -193165,10 +211996,11 @@ DO_APP_FUNC(0x010F97C0, void, TransferBuffer_1_Dissonance_Networking_VoicePacket DO_APP_FUNC_METHODINFO(0x03C938F0, TransferBuffer_1_Dissonance_Networking_VoicePacket___ctor__MethodInfo); DO_APP_FUNC(0x010FA4C0, void, TransferBuffer_1_Dissonance_Networking_VoicePacket__Clear, (TransferBuffer_1_Dissonance_Networking_VoicePacket_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010FA270, bool, TransferBuffer_1_Dissonance_Networking_VoicePacket__Read, (TransferBuffer_1_Dissonance_Networking_VoicePacket_ * __this, ArraySegment_1_Dissonance_Networking_VoicePacket_ data, MethodInfo * method)); -DO_APP_FUNC(0x010FB230, bool, TransferBuffer_1_Dissonance_Networking_VoicePacket__Read_1, (TransferBuffer_1_Dissonance_Networking_VoicePacket_ * __this, VoicePacket item, MethodInfo * method)); +DO_APP_FUNC(0x010FB230, bool, TransferBuffer_1_Dissonance_Networking_VoicePacket__Read_1, (TransferBuffer_1_Dissonance_Networking_VoicePacket_ * __this, VoicePacket * item, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C93860, TransferBuffer_1_Dissonance_Networking_VoicePacket__Read_1__MethodInfo); DO_APP_FUNC(0x010FA0F0, bool, TransferBuffer_1_Dissonance_Networking_VoicePacket__Read_2, (TransferBuffer_1_Dissonance_Networking_VoicePacket_ * __this, VoicePacket__Array * data, MethodInfo * method)); DO_APP_FUNC(0x010FB3F0, bool, TransferBuffer_1_Dissonance_Networking_VoicePacket__Read_3, (TransferBuffer_1_Dissonance_Networking_VoicePacket_ * __this, VoicePacket__Array * data, int32_t readCount, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7010, TransferBuffer_1_Dissonance_Networking_VoicePacket__Read_3__MethodInfo); DO_APP_FUNC(0x010FADA0, bool, TransferBuffer_1_Dissonance_Networking_VoicePacket__TryWrite, (TransferBuffer_1_Dissonance_Networking_VoicePacket_ * __this, VoicePacket item, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C93870, TransferBuffer_1_Dissonance_Networking_VoicePacket__TryWrite__MethodInfo); DO_APP_FUNC(0x010F9B10, bool, TransferBuffer_1_Dissonance_Networking_VoicePacket__TryWriteAll, (TransferBuffer_1_Dissonance_Networking_VoicePacket_ * __this, ArraySegment_1_Dissonance_Networking_VoicePacket_ data, MethodInfo * method)); @@ -193181,10 +212013,11 @@ DO_APP_FUNC(0x010F97C0, void, TransferBuffer_1_Dissonance_Logs_LogMessage___ctor DO_APP_FUNC_METHODINFO(0x03C8F680, TransferBuffer_1_Dissonance_Logs_LogMessage___ctor__MethodInfo); DO_APP_FUNC(0x010FA4C0, void, TransferBuffer_1_Dissonance_Logs_LogMessage__Clear, (TransferBuffer_1_Dissonance_Logs_LogMessage_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010FA270, bool, TransferBuffer_1_Dissonance_Logs_LogMessage__Read, (TransferBuffer_1_Dissonance_Logs_LogMessage_ * __this, ArraySegment_1_Dissonance_Logs_LogMessage_ data, MethodInfo * method)); -DO_APP_FUNC(0x010FBAC0, bool, TransferBuffer_1_Dissonance_Logs_LogMessage__Read_1, (TransferBuffer_1_Dissonance_Logs_LogMessage_ * __this, Logs_LogMessage_1 item, MethodInfo * method)); +DO_APP_FUNC(0x010FBAC0, bool, TransferBuffer_1_Dissonance_Logs_LogMessage__Read_1, (TransferBuffer_1_Dissonance_Logs_LogMessage_ * __this, Logs_LogMessage_1 * item, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8F690, TransferBuffer_1_Dissonance_Logs_LogMessage__Read_1__MethodInfo); DO_APP_FUNC(0x010FA0F0, bool, TransferBuffer_1_Dissonance_Logs_LogMessage__Read_2, (TransferBuffer_1_Dissonance_Logs_LogMessage_ * __this, Logs_LogMessage_1__Array * data, MethodInfo * method)); DO_APP_FUNC(0x010FBC20, bool, TransferBuffer_1_Dissonance_Logs_LogMessage__Read_3, (TransferBuffer_1_Dissonance_Logs_LogMessage_ * __this, Logs_LogMessage_1__Array * data, int32_t readCount, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7020, TransferBuffer_1_Dissonance_Logs_LogMessage__Read_3__MethodInfo); DO_APP_FUNC(0x010FB690, bool, TransferBuffer_1_Dissonance_Logs_LogMessage__TryWrite, (TransferBuffer_1_Dissonance_Logs_LogMessage_ * __this, Logs_LogMessage_1 item, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8F688, TransferBuffer_1_Dissonance_Logs_LogMessage__TryWrite__MethodInfo); DO_APP_FUNC(0x010F9B10, bool, TransferBuffer_1_Dissonance_Logs_LogMessage__TryWriteAll, (TransferBuffer_1_Dissonance_Logs_LogMessage_ * __this, ArraySegment_1_Dissonance_Logs_LogMessage_ data, MethodInfo * method)); @@ -193285,33 +212118,42 @@ DO_APP_FUNC(0x010470B0, void, TreeSet_1_KeyValuePair_2_System_Object_System_Char DO_APP_FUNC(0x010470D0, void, TreeSet_1_KeyValuePair_2_System_Object_System_Char___ctor_1, (TreeSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, IComparer_1_KeyValuePair_2_System_Object_System_Char_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01102BC0, void, TreeSet_1_KeyValuePair_2_System_Object_System_Char___ctor_2, (TreeSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, SerializationInfo * siInfo, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x01102BF0, bool, TreeSet_1_KeyValuePair_2_System_Object_System_Char__AddIfNotPresent, (TreeSet_1_KeyValuePair_2_System_Object_System_Char_ * __this, KeyValuePair_2_System_Object_System_Char_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6DA0, TreeSet_1_KeyValuePair_2_System_Object_System_Char__AddIfNotPresent__MethodInfo); DO_APP_FUNC(0x010470B0, void, TreeSet_1_KeyValuePair_2_System_Object_System_Object___ctor, (TreeSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010470D0, void, TreeSet_1_KeyValuePair_2_System_Object_System_Object___ctor_1, (TreeSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, IComparer_1_KeyValuePair_2_System_Object_System_Object_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01102BC0, void, TreeSet_1_KeyValuePair_2_System_Object_System_Object___ctor_2, (TreeSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, SerializationInfo * siInfo, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x01102CE0, bool, TreeSet_1_KeyValuePair_2_System_Object_System_Object__AddIfNotPresent, (TreeSet_1_KeyValuePair_2_System_Object_System_Object_ * __this, KeyValuePair_2_System_Object_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6D48, TreeSet_1_KeyValuePair_2_System_Object_System_Object__AddIfNotPresent__MethodInfo); DO_APP_FUNC(0x010470B0, void, TreeSet_1_KeyValuePair_2_System_UInt64_System_Object___ctor, (TreeSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010470D0, void, TreeSet_1_KeyValuePair_2_System_UInt64_System_Object___ctor_1, (TreeSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, IComparer_1_KeyValuePair_2_System_UInt64_System_Object_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01102BC0, void, TreeSet_1_KeyValuePair_2_System_UInt64_System_Object___ctor_2, (TreeSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, SerializationInfo * siInfo, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x01102DD0, bool, TreeSet_1_KeyValuePair_2_System_UInt64_System_Object__AddIfNotPresent, (TreeSet_1_KeyValuePair_2_System_UInt64_System_Object_ * __this, KeyValuePair_2_System_UInt64_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6D40, TreeSet_1_KeyValuePair_2_System_UInt64_System_Object__AddIfNotPresent__MethodInfo); DO_APP_FUNC(0x010470B0, void, TreeSet_1_System_Object___ctor, (TreeSet_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010470D0, void, TreeSet_1_System_Object___ctor_1, (TreeSet_1_System_Object_ * __this, IComparer_1_System_Object_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01102BC0, void, TreeSet_1_System_Object___ctor_2, (TreeSet_1_System_Object_ * __this, SerializationInfo * siInfo, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x01102EC0, bool, TreeSet_1_System_Object__AddIfNotPresent, (TreeSet_1_System_Object_ * __this, Object * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6D60, TreeSet_1_System_Object__AddIfNotPresent__MethodInfo); DO_APP_FUNC(0x01102F80, void, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Char___ctor, (SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Char_ * __this, SortedSet_1_KeyValuePair_2_System_Object_System_Char_ * Underlying, KeyValuePair_2_System_Object_System_Char_ Min, KeyValuePair_2_System_Object_System_Char_ Max, bool lowerBoundActive, bool upperBoundActive, MethodInfo * method)); DO_APP_FUNC(0x011054D0, bool, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Char___VersionCheckImpl_b__20_0, (SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Char_ * __this, SortedSet_1_T_Node_KeyValuePair_2_System_Object_System_Char_ * n, MethodInfo * method)); DO_APP_FUNC(0x01103200, bool, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Char__AddIfNotPresent, (SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Char_ * __this, KeyValuePair_2_System_Object_System_Char_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6D50, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Char__AddIfNotPresent__MethodInfo); DO_APP_FUNC(0x011044C0, bool, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Char__BreadthFirstTreeWalk, (SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Char_ * __this, TreeWalkPredicate_1_KeyValuePair_2_System_Object_System_Char_ * action, MethodInfo * method)); DO_APP_FUNC(0x01103430, void, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Char__Clear, (SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Char_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011032E0, bool, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Char__Contains, (SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Char_ * __this, KeyValuePair_2_System_Object_System_Char_ item, MethodInfo * method)); DO_APP_FUNC(0x01103360, bool, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Char__DoRemove, (SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Char_ * __this, KeyValuePair_2_System_Object_System_Char_ item, MethodInfo * method)); DO_APP_FUNC(0x01104A40, SortedSet_1_T_Node_KeyValuePair_2_System_Object_System_Char_ *, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Char__FindNode, (SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Char_ * __this, KeyValuePair_2_System_Object_System_Char_ item, MethodInfo * method)); DO_APP_FUNC(0x011053E0, void, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Char__GetObjectData, (SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Char_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6CF8, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Char__GetObjectData__MethodInfo); DO_APP_FUNC(0x01105040, SortedSet_1_KeyValuePair_2_System_Object_System_Char_ *, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Char__GetViewBetween, (SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Char_ * __this, KeyValuePair_2_System_Object_System_Char_ lowerValue, KeyValuePair_2_System_Object_System_Char_ upperValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6D80, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Char__GetViewBetween__MethodInfo); DO_APP_FUNC(0x01103E90, bool, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Char__InOrderTreeWalk, (SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Char_ * __this, TreeWalkPredicate_1_KeyValuePair_2_System_Object_System_Char_ * action, MethodInfo * method)); DO_APP_FUNC(0x01104B00, int32_t, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Char__InternalIndexOf, (SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Char_ * __this, KeyValuePair_2_System_Object_System_Char_ item, MethodInfo * method)); DO_APP_FUNC(0x01103790, bool, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Char__IsWithinRange, (SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Char_ * __this, KeyValuePair_2_System_Object_System_Char_ item, MethodInfo * method)); DO_APP_FUNC(0x01105480, void, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Char__OnDeserialization, (SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Char_ * __this, Object * sender, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6D08, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Char__OnDeserialization__MethodInfo); DO_APP_FUNC(0x01105430, void, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Char__System_Runtime_Serialization_IDeserializationCallback_OnDeserialization, (SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Char_ * __this, Object * sender, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6CE8, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Char__System_Runtime_Serialization_IDeserializationCallback_OnDeserialization__MethodInfo); DO_APP_FUNC(0x011053A0, void, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Char__System_Runtime_Serialization_ISerializable_GetObjectData, (SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Char_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x010435A0, void, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Char__VersionCheck, (SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Char_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01104ED0, void, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Char__VersionCheckImpl, (SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Char_ * __this, MethodInfo * method)); @@ -193320,18 +212162,23 @@ DO_APP_FUNC(0x011039D0, KeyValuePair_2_System_Object_System_Char_, SortedSet_1_T DO_APP_FUNC(0x01102F80, void, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Object___ctor, (SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Object_ * __this, SortedSet_1_KeyValuePair_2_System_Object_System_Object_ * Underlying, KeyValuePair_2_System_Object_System_Object_ Min, KeyValuePair_2_System_Object_System_Object_ Max, bool lowerBoundActive, bool upperBoundActive, MethodInfo * method)); DO_APP_FUNC(0x011054D0, bool, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Object___VersionCheckImpl_b__20_0, (SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Object_ * __this, SortedSet_1_T_Node_KeyValuePair_2_System_Object_System_Object_ * n, MethodInfo * method)); DO_APP_FUNC(0x011054E0, bool, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Object__AddIfNotPresent, (SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Object_ * __this, KeyValuePair_2_System_Object_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6D00, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Object__AddIfNotPresent__MethodInfo); DO_APP_FUNC(0x011044C0, bool, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Object__BreadthFirstTreeWalk, (SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Object_ * __this, TreeWalkPredicate_1_KeyValuePair_2_System_Object_System_Object_ * action, MethodInfo * method)); DO_APP_FUNC(0x01103430, void, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Object__Clear, (SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011032E0, bool, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Object__Contains, (SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Object_ * __this, KeyValuePair_2_System_Object_System_Object_ item, MethodInfo * method)); DO_APP_FUNC(0x01103360, bool, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Object__DoRemove, (SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Object_ * __this, KeyValuePair_2_System_Object_System_Object_ item, MethodInfo * method)); DO_APP_FUNC(0x01104A40, SortedSet_1_T_Node_KeyValuePair_2_System_Object_System_Object_ *, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Object__FindNode, (SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Object_ * __this, KeyValuePair_2_System_Object_System_Object_ item, MethodInfo * method)); DO_APP_FUNC(0x01105CF0, void, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Object__GetObjectData, (SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Object_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6D18, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Object__GetObjectData__MethodInfo); DO_APP_FUNC(0x01105990, SortedSet_1_KeyValuePair_2_System_Object_System_Object_ *, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Object__GetViewBetween, (SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Object_ * __this, KeyValuePair_2_System_Object_System_Object_ lowerValue, KeyValuePair_2_System_Object_System_Object_ upperValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6D20, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Object__GetViewBetween__MethodInfo); DO_APP_FUNC(0x01103E90, bool, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Object__InOrderTreeWalk, (SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Object_ * __this, TreeWalkPredicate_1_KeyValuePair_2_System_Object_System_Object_ * action, MethodInfo * method)); DO_APP_FUNC(0x011055C0, int32_t, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Object__InternalIndexOf, (SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Object_ * __this, KeyValuePair_2_System_Object_System_Object_ item, MethodInfo * method)); DO_APP_FUNC(0x01103790, bool, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Object__IsWithinRange, (SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Object_ * __this, KeyValuePair_2_System_Object_System_Object_ item, MethodInfo * method)); DO_APP_FUNC(0x01105D90, void, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Object__OnDeserialization, (SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Object_ * __this, Object * sender, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6D30, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Object__OnDeserialization__MethodInfo); DO_APP_FUNC(0x01105D40, void, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Object__System_Runtime_Serialization_IDeserializationCallback_OnDeserialization, (SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Object_ * __this, Object * sender, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6D38, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Object__System_Runtime_Serialization_IDeserializationCallback_OnDeserialization__MethodInfo); DO_APP_FUNC(0x011053A0, void, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Object__System_Runtime_Serialization_ISerializable_GetObjectData, (SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Object_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x010435A0, void, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Object__VersionCheck, (SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01104ED0, void, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Object__VersionCheckImpl, (SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_Object_System_Object_ * __this, MethodInfo * method)); @@ -193340,18 +212187,23 @@ DO_APP_FUNC(0x011039D0, KeyValuePair_2_System_Object_System_Object_, SortedSet_1 DO_APP_FUNC(0x01105DE0, void, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_UInt64_System_Object___ctor, (SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_UInt64_System_Object_ * __this, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ * Underlying, KeyValuePair_2_System_UInt64_System_Object_ Min, KeyValuePair_2_System_UInt64_System_Object_ Max, bool lowerBoundActive, bool upperBoundActive, MethodInfo * method)); DO_APP_FUNC(0x011054D0, bool, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_UInt64_System_Object___VersionCheckImpl_b__20_0, (SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_UInt64_System_Object_ * __this, SortedSet_1_T_Node_KeyValuePair_2_System_UInt64_System_Object_ * n, MethodInfo * method)); DO_APP_FUNC(0x01106060, bool, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_UInt64_System_Object__AddIfNotPresent, (SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_UInt64_System_Object_ * __this, KeyValuePair_2_System_UInt64_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6C98, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_UInt64_System_Object__AddIfNotPresent__MethodInfo); DO_APP_FUNC(0x011044C0, bool, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_UInt64_System_Object__BreadthFirstTreeWalk, (SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_UInt64_System_Object_ * __this, TreeWalkPredicate_1_KeyValuePair_2_System_UInt64_System_Object_ * action, MethodInfo * method)); DO_APP_FUNC(0x01103430, void, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_UInt64_System_Object__Clear, (SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_UInt64_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011032E0, bool, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_UInt64_System_Object__Contains, (SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_UInt64_System_Object_ * __this, KeyValuePair_2_System_UInt64_System_Object_ item, MethodInfo * method)); DO_APP_FUNC(0x01103360, bool, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_UInt64_System_Object__DoRemove, (SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_UInt64_System_Object_ * __this, KeyValuePair_2_System_UInt64_System_Object_ item, MethodInfo * method)); DO_APP_FUNC(0x01104A40, SortedSet_1_T_Node_KeyValuePair_2_System_UInt64_System_Object_ *, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_UInt64_System_Object__FindNode, (SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_UInt64_System_Object_ * __this, KeyValuePair_2_System_UInt64_System_Object_ item, MethodInfo * method)); DO_APP_FUNC(0x01106870, void, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_UInt64_System_Object__GetObjectData, (SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_UInt64_System_Object_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6CB0, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_UInt64_System_Object__GetObjectData__MethodInfo); DO_APP_FUNC(0x01106510, SortedSet_1_KeyValuePair_2_System_UInt64_System_Object_ *, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_UInt64_System_Object__GetViewBetween, (SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_UInt64_System_Object_ * __this, KeyValuePair_2_System_UInt64_System_Object_ lowerValue, KeyValuePair_2_System_UInt64_System_Object_ upperValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6C90, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_UInt64_System_Object__GetViewBetween__MethodInfo); DO_APP_FUNC(0x01103E90, bool, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_UInt64_System_Object__InOrderTreeWalk, (SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_UInt64_System_Object_ * __this, TreeWalkPredicate_1_KeyValuePair_2_System_UInt64_System_Object_ * action, MethodInfo * method)); DO_APP_FUNC(0x01106140, int32_t, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_UInt64_System_Object__InternalIndexOf, (SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_UInt64_System_Object_ * __this, KeyValuePair_2_System_UInt64_System_Object_ item, MethodInfo * method)); DO_APP_FUNC(0x01103790, bool, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_UInt64_System_Object__IsWithinRange, (SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_UInt64_System_Object_ * __this, KeyValuePair_2_System_UInt64_System_Object_ item, MethodInfo * method)); DO_APP_FUNC(0x01106910, void, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_UInt64_System_Object__OnDeserialization, (SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_UInt64_System_Object_ * __this, Object * sender, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6CC8, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_UInt64_System_Object__OnDeserialization__MethodInfo); DO_APP_FUNC(0x011068C0, void, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_UInt64_System_Object__System_Runtime_Serialization_IDeserializationCallback_OnDeserialization, (SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_UInt64_System_Object_ * __this, Object * sender, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6CA0, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_UInt64_System_Object__System_Runtime_Serialization_IDeserializationCallback_OnDeserialization__MethodInfo); DO_APP_FUNC(0x011053A0, void, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_UInt64_System_Object__System_Runtime_Serialization_ISerializable_GetObjectData, (SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_UInt64_System_Object_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x010435A0, void, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_UInt64_System_Object__VersionCheck, (SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_UInt64_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01104ED0, void, SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_UInt64_System_Object__VersionCheckImpl, (SortedSet_1_T_TreeSubSet_KeyValuePair_2_System_UInt64_System_Object_ * __this, MethodInfo * method)); @@ -193360,18 +212212,23 @@ DO_APP_FUNC(0x011039D0, KeyValuePair_2_System_UInt64_System_Object_, SortedSet_1 DO_APP_FUNC(0x01106960, void, SortedSet_1_T_TreeSubSet_System_Object___ctor, (SortedSet_1_T_TreeSubSet_System_Object_ * __this, SortedSet_1_System_Object_ * Underlying, Object * Min, Object * Max, bool lowerBoundActive, bool upperBoundActive, MethodInfo * method)); DO_APP_FUNC(0x011054D0, bool, SortedSet_1_T_TreeSubSet_System_Object___VersionCheckImpl_b__20_0, (SortedSet_1_T_TreeSubSet_System_Object_ * __this, SortedSet_1_T_Node_System_Object_ * n, MethodInfo * method)); DO_APP_FUNC(0x01106BC0, bool, SortedSet_1_T_TreeSubSet_System_Object__AddIfNotPresent, (SortedSet_1_T_TreeSubSet_System_Object_ * __this, Object * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6CC0, SortedSet_1_T_TreeSubSet_System_Object__AddIfNotPresent__MethodInfo); DO_APP_FUNC(0x01107AC0, bool, SortedSet_1_T_TreeSubSet_System_Object__BreadthFirstTreeWalk, (SortedSet_1_T_TreeSubSet_System_Object_ * __this, TreeWalkPredicate_1_System_Object_ * action, MethodInfo * method)); DO_APP_FUNC(0x01106DB0, void, SortedSet_1_T_TreeSubSet_System_Object__Clear, (SortedSet_1_T_TreeSubSet_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01106C90, bool, SortedSet_1_T_TreeSubSet_System_Object__Contains, (SortedSet_1_T_TreeSubSet_System_Object_ * __this, Object * item, MethodInfo * method)); DO_APP_FUNC(0x01106D00, bool, SortedSet_1_T_TreeSubSet_System_Object__DoRemove, (SortedSet_1_T_TreeSubSet_System_Object_ * __this, Object * item, MethodInfo * method)); DO_APP_FUNC(0x01107F10, SortedSet_1_T_Node_System_Object_ *, SortedSet_1_T_TreeSubSet_System_Object__FindNode, (SortedSet_1_T_TreeSubSet_System_Object_ * __this, Object * item, MethodInfo * method)); DO_APP_FUNC(0x01108690, void, SortedSet_1_T_TreeSubSet_System_Object__GetObjectData, (SortedSet_1_T_TreeSubSet_System_Object_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6CD0, SortedSet_1_T_TreeSubSet_System_Object__GetObjectData__MethodInfo); DO_APP_FUNC(0x01108440, SortedSet_1_System_Object_ *, SortedSet_1_T_TreeSubSet_System_Object__GetViewBetween, (SortedSet_1_T_TreeSubSet_System_Object_ * __this, Object * lowerValue, Object * upperValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6CE0, SortedSet_1_T_TreeSubSet_System_Object__GetViewBetween__MethodInfo); DO_APP_FUNC(0x011075C0, bool, SortedSet_1_T_TreeSubSet_System_Object__InOrderTreeWalk, (SortedSet_1_T_TreeSubSet_System_Object_ * __this, TreeWalkPredicate_1_System_Object_ * action, MethodInfo * method)); DO_APP_FUNC(0x01107FB0, int32_t, SortedSet_1_T_TreeSubSet_System_Object__InternalIndexOf, (SortedSet_1_T_TreeSubSet_System_Object_ * __this, Object * item, MethodInfo * method)); DO_APP_FUNC(0x01107100, bool, SortedSet_1_T_TreeSubSet_System_Object__IsWithinRange, (SortedSet_1_T_TreeSubSet_System_Object_ * __this, Object * item, MethodInfo * method)); DO_APP_FUNC(0x01108730, void, SortedSet_1_T_TreeSubSet_System_Object__OnDeserialization, (SortedSet_1_T_TreeSubSet_System_Object_ * __this, Object * sender, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6C50, SortedSet_1_T_TreeSubSet_System_Object__OnDeserialization__MethodInfo); DO_APP_FUNC(0x011086E0, void, SortedSet_1_T_TreeSubSet_System_Object__System_Runtime_Serialization_IDeserializationCallback_OnDeserialization, (SortedSet_1_T_TreeSubSet_System_Object_ * __this, Object * sender, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6C60, SortedSet_1_T_TreeSubSet_System_Object__System_Runtime_Serialization_IDeserializationCallback_OnDeserialization__MethodInfo); DO_APP_FUNC(0x011053A0, void, SortedSet_1_T_TreeSubSet_System_Object__System_Runtime_Serialization_ISerializable_GetObjectData, (SortedSet_1_T_TreeSubSet_System_Object_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); DO_APP_FUNC(0x010435A0, void, SortedSet_1_T_TreeSubSet_System_Object__VersionCheck, (SortedSet_1_T_TreeSubSet_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011082E0, void, SortedSet_1_T_TreeSubSet_System_Object__VersionCheckImpl, (SortedSet_1_T_TreeSubSet_System_Object_ * __this, MethodInfo * method)); @@ -193398,6 +212255,7 @@ DO_APP_FUNC(0x011088C0, void, Tuple_2_Guid_Object___ctor, (Tuple_2_Guid_Object_ DO_APP_FUNC(0x01108920, bool, Tuple_2_Guid_Object__Equals, (Tuple_2_Guid_Object_ * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x01108DA0, int32_t, Tuple_2_Guid_Object__GetHashCode, (Tuple_2_Guid_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01108B90, int32_t, Tuple_2_Guid_Object__System_Collections_IStructuralComparable_CompareTo, (Tuple_2_Guid_Object_ * __this, Object * other, IComparer * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6BF0, Tuple_2_Guid_Object__System_Collections_IStructuralComparable_CompareTo__MethodInfo); DO_APP_FUNC(0x011089A0, bool, Tuple_2_Guid_Object__System_Collections_IStructuralEquatable_Equals, (Tuple_2_Guid_Object_ * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); DO_APP_FUNC(0x01108E10, int32_t, Tuple_2_Guid_Object__System_Collections_IStructuralEquatable_GetHashCode, (Tuple_2_Guid_Object_ * __this, IEqualityComparer * comparer, MethodInfo * method)); DO_APP_FUNC(0x01108B10, int32_t, Tuple_2_Guid_Object__System_IComparable_CompareTo, (Tuple_2_Guid_Object_ * __this, Object * obj, MethodInfo * method)); @@ -193410,6 +212268,7 @@ DO_APP_FUNC(0x01109100, void, Tuple_2_IntPtr_IntPtr___ctor, (Tuple_2_IntPtr_IntP DO_APP_FUNC(0x01109110, bool, Tuple_2_IntPtr_IntPtr__Equals, (Tuple_2_IntPtr_IntPtr_ * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x01109670, int32_t, Tuple_2_IntPtr_IntPtr__GetHashCode, (Tuple_2_IntPtr_IntPtr_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011093F0, int32_t, Tuple_2_IntPtr_IntPtr__System_Collections_IStructuralComparable_CompareTo, (Tuple_2_IntPtr_IntPtr_ * __this, Object * other, IComparer * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6BB0, Tuple_2_IntPtr_IntPtr__System_Collections_IStructuralComparable_CompareTo__MethodInfo); DO_APP_FUNC(0x01109190, bool, Tuple_2_IntPtr_IntPtr__System_Collections_IStructuralEquatable_Equals, (Tuple_2_IntPtr_IntPtr_ * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); DO_APP_FUNC(0x011096E0, int32_t, Tuple_2_IntPtr_IntPtr__System_Collections_IStructuralEquatable_GetHashCode, (Tuple_2_IntPtr_IntPtr_ * __this, IEqualityComparer * comparer, MethodInfo * method)); DO_APP_FUNC(0x01109370, int32_t, Tuple_2_IntPtr_IntPtr__System_IComparable_CompareTo, (Tuple_2_IntPtr_IntPtr_ * __this, Object * obj, MethodInfo * method)); @@ -193424,6 +212283,7 @@ DO_APP_FUNC(0x003BCE40, void, Tuple_2_Object_Object___ctor, (Tuple_2_Object_Obje DO_APP_FUNC(0x01109A50, bool, Tuple_2_Object_Object__Equals, (Tuple_2_Object_Object_ * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x01109DE0, int32_t, Tuple_2_Object_Object__GetHashCode, (Tuple_2_Object_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01109C50, int32_t, Tuple_2_Object_Object__System_Collections_IStructuralComparable_CompareTo, (Tuple_2_Object_Object_ * __this, Object * other, IComparer * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6B90, Tuple_2_Object_Object__System_Collections_IStructuralComparable_CompareTo__MethodInfo); DO_APP_FUNC(0x01109AD0, bool, Tuple_2_Object_Object__System_Collections_IStructuralEquatable_Equals, (Tuple_2_Object_Object_ * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); DO_APP_FUNC(0x01109E50, int32_t, Tuple_2_Object_Object__System_Collections_IStructuralEquatable_GetHashCode, (Tuple_2_Object_Object_ * __this, IEqualityComparer * comparer, MethodInfo * method)); DO_APP_FUNC(0x01109BD0, int32_t, Tuple_2_Object_Object__System_IComparable_CompareTo, (Tuple_2_Object_Object_ * __this, Object * obj, MethodInfo * method)); @@ -193436,6 +212296,7 @@ DO_APP_FUNC(0x0110A0D0, void, Tuple_3_Object_Memory_1_Byte_Object___ctor, (Tuple DO_APP_FUNC(0x0110A1E0, bool, Tuple_3_Object_Memory_1_Byte_Object__Equals, (Tuple_3_Object_Memory_1_Byte_Object_ * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x0110A6C0, int32_t, Tuple_3_Object_Memory_1_Byte_Object__GetHashCode, (Tuple_3_Object_Memory_1_Byte_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0110A480, int32_t, Tuple_3_Object_Memory_1_Byte_Object__System_Collections_IStructuralComparable_CompareTo, (Tuple_3_Object_Memory_1_Byte_Object_ * __this, Object * other, IComparer * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6B78, Tuple_3_Object_Memory_1_Byte_Object__System_Collections_IStructuralComparable_CompareTo__MethodInfo); DO_APP_FUNC(0x0110A260, bool, Tuple_3_Object_Memory_1_Byte_Object__System_Collections_IStructuralEquatable_Equals, (Tuple_3_Object_Memory_1_Byte_Object_ * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); DO_APP_FUNC(0x0110A730, int32_t, Tuple_3_Object_Memory_1_Byte_Object__System_Collections_IStructuralEquatable_GetHashCode, (Tuple_3_Object_Memory_1_Byte_Object_ * __this, IEqualityComparer * comparer, MethodInfo * method)); DO_APP_FUNC(0x0110A400, int32_t, Tuple_3_Object_Memory_1_Byte_Object__System_IComparable_CompareTo, (Tuple_3_Object_Memory_1_Byte_Object_ * __this, Object * obj, MethodInfo * method)); @@ -193449,6 +212310,7 @@ DO_APP_FUNC(0x00F8C320, void, Tuple_3_Object_Object_Object___ctor, (Tuple_3_Obje DO_APP_FUNC(0x0110AA90, bool, Tuple_3_Object_Object_Object__Equals, (Tuple_3_Object_Object_Object_ * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x0110AE70, int32_t, Tuple_3_Object_Object_Object__GetHashCode, (Tuple_3_Object_Object_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0110ACB0, int32_t, Tuple_3_Object_Object_Object__System_Collections_IStructuralComparable_CompareTo, (Tuple_3_Object_Object_Object_ * __this, Object * other, IComparer * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6AF0, Tuple_3_Object_Object_Object__System_Collections_IStructuralComparable_CompareTo__MethodInfo); DO_APP_FUNC(0x0110AB10, bool, Tuple_3_Object_Object_Object__System_Collections_IStructuralEquatable_Equals, (Tuple_3_Object_Object_Object_ * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); DO_APP_FUNC(0x0110AEE0, int32_t, Tuple_3_Object_Object_Object__System_Collections_IStructuralEquatable_GetHashCode, (Tuple_3_Object_Object_Object_ * __this, IEqualityComparer * comparer, MethodInfo * method)); DO_APP_FUNC(0x0110AC30, int32_t, Tuple_3_Object_Object_Object__System_IComparable_CompareTo, (Tuple_3_Object_Object_Object_ * __this, Object * obj, MethodInfo * method)); @@ -193463,6 +212325,7 @@ DO_APP_FUNC_METHODINFO(0x03CA7780, Tuple_4_Int32_Int32_Int32_Boolean___ctor__Met DO_APP_FUNC(0x0110B1E0, bool, Tuple_4_Int32_Int32_Int32_Boolean__Equals, (Tuple_4_Int32_Int32_Int32_Boolean_ * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x0110B960, int32_t, Tuple_4_Int32_Int32_Int32_Boolean__GetHashCode, (Tuple_4_Int32_Int32_Int32_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0110B5D0, int32_t, Tuple_4_Int32_Int32_Int32_Boolean__System_Collections_IStructuralComparable_CompareTo, (Tuple_4_Int32_Int32_Int32_Boolean_ * __this, Object * other, IComparer * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6A80, Tuple_4_Int32_Int32_Int32_Boolean__System_Collections_IStructuralComparable_CompareTo__MethodInfo); DO_APP_FUNC(0x0110B260, bool, Tuple_4_Int32_Int32_Int32_Boolean__System_Collections_IStructuralEquatable_Equals, (Tuple_4_Int32_Int32_Int32_Boolean_ * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); DO_APP_FUNC(0x0110B9D0, int32_t, Tuple_4_Int32_Int32_Int32_Boolean__System_Collections_IStructuralEquatable_GetHashCode, (Tuple_4_Int32_Int32_Int32_Boolean_ * __this, IEqualityComparer * comparer, MethodInfo * method)); DO_APP_FUNC(0x0110B550, int32_t, Tuple_4_Int32_Int32_Int32_Boolean__System_IComparable_CompareTo, (Tuple_4_Int32_Int32_Int32_Boolean_ * __this, Object * obj, MethodInfo * method)); @@ -193473,6 +212336,7 @@ DO_APP_FUNC(0x0110BEC0, void, Tuple_4_Object_Object_Object_Object___ctor, (Tuple DO_APP_FUNC(0x0110C010, bool, Tuple_4_Object_Object_Object_Object__Equals, (Tuple_4_Object_Object_Object_Object_ * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x0110C440, int32_t, Tuple_4_Object_Object_Object_Object__GetHashCode, (Tuple_4_Object_Object_Object_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0110C260, int32_t, Tuple_4_Object_Object_Object_Object__System_Collections_IStructuralComparable_CompareTo, (Tuple_4_Object_Object_Object_Object_ * __this, Object * other, IComparer * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6A48, Tuple_4_Object_Object_Object_Object__System_Collections_IStructuralComparable_CompareTo__MethodInfo); DO_APP_FUNC(0x0110C090, bool, Tuple_4_Object_Object_Object_Object__System_Collections_IStructuralEquatable_Equals, (Tuple_4_Object_Object_Object_Object_ * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); DO_APP_FUNC(0x0110C4B0, int32_t, Tuple_4_Object_Object_Object_Object__System_Collections_IStructuralEquatable_GetHashCode, (Tuple_4_Object_Object_Object_Object_ * __this, IEqualityComparer * comparer, MethodInfo * method)); DO_APP_FUNC(0x0110C1E0, int32_t, Tuple_4_Object_Object_Object_Object__System_IComparable_CompareTo, (Tuple_4_Object_Object_Object_Object_ * __this, Object * obj, MethodInfo * method)); @@ -193489,81 +212353,103 @@ DO_APP_FUNC_METHODINFO(0x03CA33F0, TweenRunner_1_FloatTween__1_StartTween__Metho DO_APP_FUNC(0x0110CBF0, void, TweenRunner_1_FloatTween__1_StopTween, (TweenRunner_1_FloatTween__1 * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA33B0, TweenRunner_1_FloatTween__1_StopTween__MethodInfo); DO_APP_FUNC(0x003AE050, void, TweenRunner_1_ColorTween___ctor, (TweenRunner_1_ColorTween_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23690, TweenRunner_1_ColorTween___ctor__MethodInfo); DO_APP_FUNC(0x003BCBE0, void, TweenRunner_1_ColorTween__Init, (TweenRunner_1_ColorTween_ * __this, MonoBehaviour * coroutineContainer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23698, TweenRunner_1_ColorTween__Init__MethodInfo); DO_APP_FUNC(0x0110CC70, IEnumerator *, TweenRunner_1_ColorTween__Start, (ColorTween_1 tweenInfo, MethodInfo * method)); DO_APP_FUNC(0x0110CDA0, void, TweenRunner_1_ColorTween__StartTween, (TweenRunner_1_ColorTween_ * __this, ColorTween_1 info, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23660, TweenRunner_1_ColorTween__StartTween__MethodInfo); DO_APP_FUNC(0x0110CBF0, void, TweenRunner_1_ColorTween__StopTween, (TweenRunner_1_ColorTween_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23658, TweenRunner_1_ColorTween__StopTween__MethodInfo); DO_APP_FUNC(0x003AE050, void, TweenRunner_1_FloatTween___ctor, (TweenRunner_1_FloatTween_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D237D0, TweenRunner_1_FloatTween___ctor__MethodInfo); DO_APP_FUNC(0x003BCBE0, void, TweenRunner_1_FloatTween__Init, (TweenRunner_1_FloatTween_ * __this, MonoBehaviour * coroutineContainer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D237D8, TweenRunner_1_FloatTween__Init__MethodInfo); DO_APP_FUNC(0x0110C7F0, IEnumerator *, TweenRunner_1_FloatTween__Start, (FloatTween_2 tweenInfo, MethodInfo * method)); DO_APP_FUNC(0x0110D0A0, void, TweenRunner_1_FloatTween__StartTween, (TweenRunner_1_FloatTween_ * __this, FloatTween_2 info, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D237B8, TweenRunner_1_FloatTween__StartTween__MethodInfo); DO_APP_FUNC(0x0110CBF0, void, TweenRunner_1_FloatTween__StopTween, (TweenRunner_1_FloatTween_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, TweenRunner_1_FloatTween__2__ctor, (TweenRunner_1_FloatTween__2 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6200, TweenRunner_1_FloatTween__2__ctor__MethodInfo); DO_APP_FUNC(0x003BCBE0, void, TweenRunner_1_FloatTween__2_Init, (TweenRunner_1_FloatTween__2 * __this, MonoBehaviour * coroutineContainer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF61F8, TweenRunner_1_FloatTween__2_Init__MethodInfo); DO_APP_FUNC(0x0110D380, IEnumerator *, TweenRunner_1_FloatTween__2_Start, (FloatTween_1 tweenInfo, MethodInfo * method)); DO_APP_FUNC(0x0110D4A0, void, TweenRunner_1_FloatTween__2_StartTween, (TweenRunner_1_FloatTween__2 * __this, FloatTween_1 info, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6240, TweenRunner_1_FloatTween__2_StartTween__MethodInfo); DO_APP_FUNC(0x003EEA50, void, SavedStructState_1_T_TypedRestore_UnityEngine_InputSystem_InputActionState_GlobalState___ctor, (SavedStructState_1_T_TypedRestore_UnityEngine_InputSystem_InputActionState_GlobalState_ * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x0110D930, IAsyncResult *, SavedStructState_1_T_TypedRestore_UnityEngine_InputSystem_InputActionState_GlobalState__BeginInvoke, (SavedStructState_1_T_TypedRestore_UnityEngine_InputSystem_InputActionState_GlobalState_ * __this, InputActionState_GlobalState state, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003EC4B0, void, SavedStructState_1_T_TypedRestore_UnityEngine_InputSystem_InputActionState_GlobalState__EndInvoke, (SavedStructState_1_T_TypedRestore_UnityEngine_InputSystem_InputActionState_GlobalState_ * __this, InputActionState_GlobalState state, IAsyncResult * result, MethodInfo * method)); -DO_APP_FUNC(0x003EE650, void, SavedStructState_1_T_TypedRestore_UnityEngine_InputSystem_InputActionState_GlobalState__Invoke, (SavedStructState_1_T_TypedRestore_UnityEngine_InputSystem_InputActionState_GlobalState_ * __this, InputActionState_GlobalState state, MethodInfo * method)); +DO_APP_FUNC(0x0110D930, IAsyncResult *, SavedStructState_1_T_TypedRestore_UnityEngine_InputSystem_InputActionState_GlobalState__BeginInvoke, (SavedStructState_1_T_TypedRestore_UnityEngine_InputSystem_InputActionState_GlobalState_ * __this, InputActionState_GlobalState * state, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003EC4B0, void, SavedStructState_1_T_TypedRestore_UnityEngine_InputSystem_InputActionState_GlobalState__EndInvoke, (SavedStructState_1_T_TypedRestore_UnityEngine_InputSystem_InputActionState_GlobalState_ * __this, InputActionState_GlobalState * state, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EE650, void, SavedStructState_1_T_TypedRestore_UnityEngine_InputSystem_InputActionState_GlobalState__Invoke, (SavedStructState_1_T_TypedRestore_UnityEngine_InputSystem_InputActionState_GlobalState_ * __this, InputActionState_GlobalState * state, MethodInfo * method)); DO_APP_FUNC(0x003EEA50, void, SavedStructState_1_T_TypedRestore_UnityEngine_InputSystem_Users_InputUser_GlobalState___ctor, (SavedStructState_1_T_TypedRestore_UnityEngine_InputSystem_Users_InputUser_GlobalState_ * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x0110D9C0, IAsyncResult *, SavedStructState_1_T_TypedRestore_UnityEngine_InputSystem_Users_InputUser_GlobalState__BeginInvoke, (SavedStructState_1_T_TypedRestore_UnityEngine_InputSystem_Users_InputUser_GlobalState_ * __this, InputUser_GlobalState state, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003EC4B0, void, SavedStructState_1_T_TypedRestore_UnityEngine_InputSystem_Users_InputUser_GlobalState__EndInvoke, (SavedStructState_1_T_TypedRestore_UnityEngine_InputSystem_Users_InputUser_GlobalState_ * __this, InputUser_GlobalState state, IAsyncResult * result, MethodInfo * method)); -DO_APP_FUNC(0x003EE650, void, SavedStructState_1_T_TypedRestore_UnityEngine_InputSystem_Users_InputUser_GlobalState__Invoke, (SavedStructState_1_T_TypedRestore_UnityEngine_InputSystem_Users_InputUser_GlobalState_ * __this, InputUser_GlobalState state, MethodInfo * method)); +DO_APP_FUNC(0x0110D9C0, IAsyncResult *, SavedStructState_1_T_TypedRestore_UnityEngine_InputSystem_Users_InputUser_GlobalState__BeginInvoke, (SavedStructState_1_T_TypedRestore_UnityEngine_InputSystem_Users_InputUser_GlobalState_ * __this, InputUser_GlobalState * state, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003EC4B0, void, SavedStructState_1_T_TypedRestore_UnityEngine_InputSystem_Users_InputUser_GlobalState__EndInvoke, (SavedStructState_1_T_TypedRestore_UnityEngine_InputSystem_Users_InputUser_GlobalState_ * __this, InputUser_GlobalState * state, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EE650, void, SavedStructState_1_T_TypedRestore_UnityEngine_InputSystem_Users_InputUser_GlobalState__Invoke, (SavedStructState_1_T_TypedRestore_UnityEngine_InputSystem_Users_InputUser_GlobalState_ * __this, InputUser_GlobalState * state, MethodInfo * method)); DO_APP_FUNC(0x003EEA50, void, SavedStructState_1_T_TypedRestore_UnityEngine_InputSystem_EnhancedTouch_Touch_GlobalState___ctor, (SavedStructState_1_T_TypedRestore_UnityEngine_InputSystem_EnhancedTouch_Touch_GlobalState_ * __this, Object * object, void * method_1, MethodInfo * method)); -DO_APP_FUNC(0x0110DA50, IAsyncResult *, SavedStructState_1_T_TypedRestore_UnityEngine_InputSystem_EnhancedTouch_Touch_GlobalState__BeginInvoke, (SavedStructState_1_T_TypedRestore_UnityEngine_InputSystem_EnhancedTouch_Touch_GlobalState_ * __this, Touch_GlobalState state, AsyncCallback * callback, Object * object, MethodInfo * method)); -DO_APP_FUNC(0x003EC4B0, void, SavedStructState_1_T_TypedRestore_UnityEngine_InputSystem_EnhancedTouch_Touch_GlobalState__EndInvoke, (SavedStructState_1_T_TypedRestore_UnityEngine_InputSystem_EnhancedTouch_Touch_GlobalState_ * __this, Touch_GlobalState state, IAsyncResult * result, MethodInfo * method)); -DO_APP_FUNC(0x003EE650, void, SavedStructState_1_T_TypedRestore_UnityEngine_InputSystem_EnhancedTouch_Touch_GlobalState__Invoke, (SavedStructState_1_T_TypedRestore_UnityEngine_InputSystem_EnhancedTouch_Touch_GlobalState_ * __this, Touch_GlobalState state, MethodInfo * method)); +DO_APP_FUNC(0x0110DA50, IAsyncResult *, SavedStructState_1_T_TypedRestore_UnityEngine_InputSystem_EnhancedTouch_Touch_GlobalState__BeginInvoke, (SavedStructState_1_T_TypedRestore_UnityEngine_InputSystem_EnhancedTouch_Touch_GlobalState_ * __this, Touch_GlobalState * state, AsyncCallback * callback, Object * object, MethodInfo * method)); +DO_APP_FUNC(0x003EC4B0, void, SavedStructState_1_T_TypedRestore_UnityEngine_InputSystem_EnhancedTouch_Touch_GlobalState__EndInvoke, (SavedStructState_1_T_TypedRestore_UnityEngine_InputSystem_EnhancedTouch_Touch_GlobalState_ * __this, Touch_GlobalState * state, IAsyncResult * result, MethodInfo * method)); +DO_APP_FUNC(0x003EE650, void, SavedStructState_1_T_TypedRestore_UnityEngine_InputSystem_EnhancedTouch_Touch_GlobalState__Invoke, (SavedStructState_1_T_TypedRestore_UnityEngine_InputSystem_EnhancedTouch_Touch_GlobalState_ * __this, Touch_GlobalState * state, MethodInfo * method)); DO_APP_FUNC(0x0110DAE0, void, TypedUxmlAttributeDescription_1_System_Boolean___ctor, (TypedUxmlAttributeDescription_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA150, TypedUxmlAttributeDescription_1_System_Boolean___ctor__MethodInfo); DO_APP_FUNC(0x00897450, bool, TypedUxmlAttributeDescription_1_System_Boolean__get_defaultValue, (TypedUxmlAttributeDescription_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA118, TypedUxmlAttributeDescription_1_System_Boolean__get_defaultValue__MethodInfo); DO_APP_FUNC(0x00944AF0, void, TypedUxmlAttributeDescription_1_System_Boolean__set_defaultValue, (TypedUxmlAttributeDescription_1_System_Boolean_ * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9038, TypedUxmlAttributeDescription_1_System_Boolean__set_defaultValue__MethodInfo); DO_APP_FUNC(0x0110DAE0, void, TypedUxmlAttributeDescription_1_System_Int32___ctor, (TypedUxmlAttributeDescription_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9F60, TypedUxmlAttributeDescription_1_System_Int32___ctor__MethodInfo); DO_APP_FUNC(0x00439170, int32_t, TypedUxmlAttributeDescription_1_System_Int32__get_defaultValue, (TypedUxmlAttributeDescription_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9F48, TypedUxmlAttributeDescription_1_System_Int32__get_defaultValue__MethodInfo); DO_APP_FUNC(0x004DF210, void, TypedUxmlAttributeDescription_1_System_Int32__set_defaultValue, (TypedUxmlAttributeDescription_1_System_Int32_ * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9048, TypedUxmlAttributeDescription_1_System_Int32__set_defaultValue__MethodInfo); DO_APP_FUNC(0x0110DAE0, void, TypedUxmlAttributeDescription_1_System_Int32Enum___ctor, (TypedUxmlAttributeDescription_1_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00439170, Int32Enum__Enum, TypedUxmlAttributeDescription_1_System_Int32Enum__get_defaultValue, (TypedUxmlAttributeDescription_1_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x004DF210, void, TypedUxmlAttributeDescription_1_System_Int32Enum__set_defaultValue, (TypedUxmlAttributeDescription_1_System_Int32Enum_ * __this, Int32Enum__Enum value, MethodInfo * method)); DO_APP_FUNC(0x0110DAE0, void, TypedUxmlAttributeDescription_1_System_Int64___ctor, (TypedUxmlAttributeDescription_1_System_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9F88, TypedUxmlAttributeDescription_1_System_Int64___ctor__MethodInfo); DO_APP_FUNC(0x003C7390, int64_t, TypedUxmlAttributeDescription_1_System_Int64__get_defaultValue, (TypedUxmlAttributeDescription_1_System_Int64_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA078, TypedUxmlAttributeDescription_1_System_Int64__get_defaultValue__MethodInfo); DO_APP_FUNC(0x0110DB40, void, TypedUxmlAttributeDescription_1_System_Int64__set_defaultValue, (TypedUxmlAttributeDescription_1_System_Int64_ * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1A48, TypedUxmlAttributeDescription_1_System_Int64__set_defaultValue__MethodInfo); DO_APP_FUNC(0x0110DAE0, void, TypedUxmlAttributeDescription_1_System_Object___ctor, (TypedUxmlAttributeDescription_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7390, Object *, TypedUxmlAttributeDescription_1_System_Object__get_defaultValue, (TypedUxmlAttributeDescription_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003C73A0, void, TypedUxmlAttributeDescription_1_System_Object__set_defaultValue, (TypedUxmlAttributeDescription_1_System_Object_ * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x0110DAE0, void, TypedUxmlAttributeDescription_1_System_Single___ctor, (TypedUxmlAttributeDescription_1_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA298, TypedUxmlAttributeDescription_1_System_Single___ctor__MethodInfo); DO_APP_FUNC(0x0110DB50, float, TypedUxmlAttributeDescription_1_System_Single__get_defaultValue, (TypedUxmlAttributeDescription_1_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA280, TypedUxmlAttributeDescription_1_System_Single__get_defaultValue__MethodInfo); DO_APP_FUNC(0x0110DB60, void, TypedUxmlAttributeDescription_1_System_Single__set_defaultValue, (TypedUxmlAttributeDescription_1_System_Single_ * __this, float value, MethodInfo * method)); -DO_APP_FUNC(0x00C7A660, UQueryBuilder_1_System_Object_, UQueryBuilder_1_System_Object__AddRelationship, (UQueryBuilder_1_System_Object___Boxed * __this, StyleSelectorRelationship__Enum relationship, MethodInfo * method)); -DO_APP_FUNC(0x00C7A800, void, UQueryBuilder_1_System_Object__AddType, (UQueryBuilder_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C7A9A0, UQueryBuilder_1_System_Object_, UQueryBuilder_1_System_Object__OfType, (UQueryBuilder_1_System_Object___Boxed * __this, String * name, String * className, MethodInfo * method)); -DO_APP_FUNC(0x0110DDD0, void, UQueryBuilder_1_System_Object___ctor, (UQueryBuilder_1_System_Object___Boxed * __this, VisualElement * visualElement, MethodInfo * method)); -DO_APP_FUNC(0x0110E4B0, void, UQueryBuilder_1_System_Object__AddClass, (UQueryBuilder_1_System_Object___Boxed * __this, String * c, MethodInfo * method)); -DO_APP_FUNC(0x0110E5B0, void, UQueryBuilder_1_System_Object__AddName, (UQueryBuilder_1_System_Object___Boxed * __this, String * id, MethodInfo * method)); -DO_APP_FUNC(0x0110E6B0, void, UQueryBuilder_1_System_Object__AddPseudoStatesRuleIfNecessasy, (UQueryBuilder_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0110EDF0, UQueryState_1_System_Object_, UQueryBuilder_1_System_Object__Build, (UQueryBuilder_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0110E070, UQueryBuilder_1_System_Object_, UQueryBuilder_1_System_Object__Class, (UQueryBuilder_1_System_Object___Boxed * __this, String * classname, MethodInfo * method)); -DO_APP_FUNC(0x0110EA80, bool, UQueryBuilder_1_System_Object__CurrentSelectorEmpty, (UQueryBuilder_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0110F040, bool, UQueryBuilder_1_System_Object__Equals, (UQueryBuilder_1_System_Object___Boxed * __this, UQueryBuilder_1_System_Object_ other, MethodInfo * method)); -DO_APP_FUNC(0x0110F290, bool, UQueryBuilder_1_System_Object__Equals_1, (UQueryBuilder_1_System_Object___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0110EB10, void, UQueryBuilder_1_System_Object__FinishCurrentSelector, (UQueryBuilder_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0110E760, void, UQueryBuilder_1_System_Object__FinishSelector, (UQueryBuilder_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0110F3B0, int32_t, UQueryBuilder_1_System_Object__GetHashCode, (UQueryBuilder_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0110E1C0, UQueryBuilder_1_System_Object_, UQueryBuilder_1_System_Object__Name, (UQueryBuilder_1_System_Object___Boxed * __this, String * id, MethodInfo * method)); -DO_APP_FUNC(0x0110E310, UQueryBuilder_1_System_Object_, UQueryBuilder_1_System_Object__SingleBaseType, (UQueryBuilder_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0110EF70, void, UQueryBuilder_1_System_Object__ToList, (UQueryBuilder_1_System_Object___Boxed * __this, List_1_System_Object_ * results, MethodInfo * method)); -DO_APP_FUNC(0x0110DC40, List_1_UnityEngine_UIElements_StyleSelectorPart_ *, UQueryBuilder_1_System_Object__get_parts, (UQueryBuilder_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0110DB70, List_1_UnityEngine_UIElements_StyleSelector_ *, UQueryBuilder_1_System_Object__get_styleSelectors, (UQueryBuilder_1_System_Object___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2330, TypedUxmlAttributeDescription_1_System_Single__set_defaultValue__MethodInfo); +DO_APP_FUNC(0x00C7A660, UQueryBuilder_1_System_Object_, UQueryBuilder_1_System_Object__AddRelationship, (UQueryBuilder_1_System_Object_ * __this, StyleSelectorRelationship__Enum relationship, MethodInfo * method)); +DO_APP_FUNC(0x00C7A800, void, UQueryBuilder_1_System_Object__AddType, (UQueryBuilder_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C7A9A0, UQueryBuilder_1_System_Object_, UQueryBuilder_1_System_Object__OfType, (UQueryBuilder_1_System_Object_ * __this, String * name, String * className, MethodInfo * method)); +DO_APP_FUNC(0x0110DDD0, void, UQueryBuilder_1_System_Object___ctor, (UQueryBuilder_1_System_Object_ * __this, VisualElement * visualElement, MethodInfo * method)); +DO_APP_FUNC(0x0110E4B0, void, UQueryBuilder_1_System_Object__AddClass, (UQueryBuilder_1_System_Object_ * __this, String * c, MethodInfo * method)); +DO_APP_FUNC(0x0110E5B0, void, UQueryBuilder_1_System_Object__AddName, (UQueryBuilder_1_System_Object_ * __this, String * id, MethodInfo * method)); +DO_APP_FUNC(0x0110E6B0, void, UQueryBuilder_1_System_Object__AddPseudoStatesRuleIfNecessasy, (UQueryBuilder_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0110EDF0, UQueryState_1_System_Object_, UQueryBuilder_1_System_Object__Build, (UQueryBuilder_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0110E070, UQueryBuilder_1_System_Object_, UQueryBuilder_1_System_Object__Class, (UQueryBuilder_1_System_Object_ * __this, String * classname, MethodInfo * method)); +DO_APP_FUNC(0x0110EA80, bool, UQueryBuilder_1_System_Object__CurrentSelectorEmpty, (UQueryBuilder_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0110F040, bool, UQueryBuilder_1_System_Object__Equals, (UQueryBuilder_1_System_Object_ * __this, UQueryBuilder_1_System_Object_ other, MethodInfo * method)); +DO_APP_FUNC(0x0110F290, bool, UQueryBuilder_1_System_Object__Equals_1, (UQueryBuilder_1_System_Object_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x0110EB10, void, UQueryBuilder_1_System_Object__FinishCurrentSelector, (UQueryBuilder_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0110E760, void, UQueryBuilder_1_System_Object__FinishSelector, (UQueryBuilder_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0110F3B0, int32_t, UQueryBuilder_1_System_Object__GetHashCode, (UQueryBuilder_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0110E1C0, UQueryBuilder_1_System_Object_, UQueryBuilder_1_System_Object__Name, (UQueryBuilder_1_System_Object_ * __this, String * id, MethodInfo * method)); +DO_APP_FUNC(0x0110E310, UQueryBuilder_1_System_Object_, UQueryBuilder_1_System_Object__SingleBaseType, (UQueryBuilder_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0110EF70, void, UQueryBuilder_1_System_Object__ToList, (UQueryBuilder_1_System_Object_ * __this, List_1_System_Object_ * results, MethodInfo * method)); +DO_APP_FUNC(0x0110DC40, List_1_UnityEngine_UIElements_StyleSelectorPart_ *, UQueryBuilder_1_System_Object__get_parts, (UQueryBuilder_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0110DB70, List_1_UnityEngine_UIElements_StyleSelector_ *, UQueryBuilder_1_System_Object__get_styleSelectors, (UQueryBuilder_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0110FEC0, void, UQueryState_1_System_Object___cctor, (MethodInfo * method)); -DO_APP_FUNC(0x00A76400, void, UQueryState_1_System_Object___ctor, (UQueryState_1_System_Object___Boxed * __this, VisualElement * element, List_1_UnityEngine_UIElements_RuleMatcher_ * matchers, MethodInfo * method)); -DO_APP_FUNC(0x0110FC20, bool, UQueryState_1_System_Object__Equals, (UQueryState_1_System_Object___Boxed * __this, UQueryState_1_System_Object_ other, MethodInfo * method)); -DO_APP_FUNC(0x0110FCC0, bool, UQueryState_1_System_Object__Equals_1, (UQueryState_1_System_Object___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0110F7D0, Object *, UQueryState_1_System_Object__First, (UQueryState_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0110FAB0, UQueryState_1_T_Enumerator_System_Object_, UQueryState_1_System_Object__GetEnumerator, (UQueryState_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0110FE00, int32_t, UQueryState_1_System_Object__GetHashCode, (UQueryState_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0110F5E0, UQueryState_1_System_Object_, UQueryState_1_System_Object__RebuildOn, (UQueryState_1_System_Object___Boxed * __this, VisualElement * element, MethodInfo * method)); -DO_APP_FUNC(0x0110F650, Object *, UQueryState_1_System_Object__Single, (UQueryState_1_System_Object___Boxed * __this, UQuery_SingleQueryMatcher * matcher, MethodInfo * method)); -DO_APP_FUNC(0x0110FB10, IEnumerator_1_System_Object_ *, UQueryState_1_System_Object__System_Collections_Generic_IEnumerable_T__GetEnumerator, (UQueryState_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0110FB10, IEnumerator *, UQueryState_1_System_Object__System_Collections_IEnumerable_GetEnumerator, (UQueryState_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0110F8B0, void, UQueryState_1_System_Object__ToList, (UQueryState_1_System_Object___Boxed * __this, List_1_System_Object_ * results, MethodInfo * method)); +DO_APP_FUNC(0x00A76400, void, UQueryState_1_System_Object___ctor, (UQueryState_1_System_Object_ * __this, VisualElement * element, List_1_UnityEngine_UIElements_RuleMatcher_ * matchers, MethodInfo * method)); +DO_APP_FUNC(0x0110FC20, bool, UQueryState_1_System_Object__Equals, (UQueryState_1_System_Object_ * __this, UQueryState_1_System_Object_ other, MethodInfo * method)); +DO_APP_FUNC(0x0110FCC0, bool, UQueryState_1_System_Object__Equals_1, (UQueryState_1_System_Object_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x0110F7D0, Object *, UQueryState_1_System_Object__First, (UQueryState_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0110FAB0, UQueryState_1_T_Enumerator_System_Object_, UQueryState_1_System_Object__GetEnumerator, (UQueryState_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0110FE00, int32_t, UQueryState_1_System_Object__GetHashCode, (UQueryState_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0110F5E0, UQueryState_1_System_Object_, UQueryState_1_System_Object__RebuildOn, (UQueryState_1_System_Object_ * __this, VisualElement * element, MethodInfo * method)); +DO_APP_FUNC(0x0110F650, Object *, UQueryState_1_System_Object__Single, (UQueryState_1_System_Object_ * __this, UQuery_SingleQueryMatcher * matcher, MethodInfo * method)); +DO_APP_FUNC(0x0110FB10, IEnumerator_1_System_Object_ *, UQueryState_1_System_Object__System_Collections_Generic_IEnumerable_T__GetEnumerator, (UQueryState_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0110FB10, IEnumerator *, UQueryState_1_System_Object__System_Collections_IEnumerable_GetEnumerator, (UQueryState_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0110F8B0, void, UQueryState_1_System_Object__ToList, (UQueryState_1_System_Object_ * __this, List_1_System_Object_ * results, MethodInfo * method)); DO_APP_FUNC(0x01110F70, void, UdpBag_1_System_Object___ctor, (UdpBag_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01110300, void, UdpBag_1_System_Object__Add, (UdpBag_1_System_Object_ * __this, Object * item, MethodInfo * method)); DO_APP_FUNC(0x01110A10, void, UdpBag_1_System_Object__Filter, (UdpBag_1_System_Object_ * __this, UdpBag_1_T_Predicate_System_Object_ * func, MethodInfo * method)); @@ -193574,12 +212460,15 @@ DO_APP_FUNC(0x01110C70, bool, UdpBag_1_System_Object__Update, (UdpBag_1_System_O DO_APP_FUNC(0x011114A0, void, UdpRingBuffer_1_System_Object___ctor, (UdpRingBuffer_1_System_Object_ * __this, int32_t size, MethodInfo * method)); DO_APP_FUNC(0x011116D0, void, UdpRingBuffer_1_System_Object__Clear, (UdpRingBuffer_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01111710, void, UdpRingBuffer_1_System_Object__CopyTo, (UdpRingBuffer_1_System_Object_ * __this, UdpRingBuffer_1_System_Object_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6850, UdpRingBuffer_1_System_Object__CopyTo__MethodInfo); DO_APP_FUNC(0x01111600, Object *, UdpRingBuffer_1_System_Object__Dequeue, (UdpRingBuffer_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01111530, void, UdpRingBuffer_1_System_Object__Enqueue, (UdpRingBuffer_1_System_Object_ * __this, Object * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6840, UdpRingBuffer_1_System_Object__Enqueue__MethodInfo); DO_APP_FUNC(0x01111850, IEnumerator_1_System_Object_ *, UdpRingBuffer_1_System_Object__GetEnumerator, (UdpRingBuffer_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01111680, Object *, UdpRingBuffer_1_System_Object__Peek, (UdpRingBuffer_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F90230, IEnumerator *, UdpRingBuffer_1_System_Object__System_Collections_IEnumerable_GetEnumerator, (UdpRingBuffer_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011117E0, void, UdpRingBuffer_1_System_Object__VerifyNotEmpty, (UdpRingBuffer_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6860, UdpRingBuffer_1_System_Object__VerifyNotEmpty__MethodInfo); DO_APP_FUNC(0x006B5770, bool, UdpRingBuffer_1_System_Object__get_AutoFree, (UdpRingBuffer_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, UdpRingBuffer_1_System_Object__get_Count, (UdpRingBuffer_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011110C0, bool, UdpRingBuffer_1_System_Object__get_Empty, (UdpRingBuffer_1_System_Object_ * __this, MethodInfo * method)); @@ -193593,52 +212482,76 @@ DO_APP_FUNC(0x01111330, Object *, UdpRingBuffer_1_System_Object__get_LastOrDefau DO_APP_FUNC(0x006B5780, void, UdpRingBuffer_1_System_Object__set_AutoFree, (UdpRingBuffer_1_System_Object_ * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x01111130, void, UdpRingBuffer_1_System_Object__set_First, (UdpRingBuffer_1_System_Object_ * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01111410, void, UdpRingBuffer_1_System_Object__set_Item, (UdpRingBuffer_1_System_Object_ * __this, int32_t index, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6890, UdpRingBuffer_1_System_Object__set_Item__MethodInfo); DO_APP_FUNC(0x011112A0, void, UdpRingBuffer_1_System_Object__set_Last, (UdpRingBuffer_1_System_Object_ * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x011114A0, void, UdpRingBuffer_1_UdpPipeHandle___ctor, (UdpRingBuffer_1_UdpPipeHandle_ * __this, int32_t size, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8628, UdpRingBuffer_1_UdpPipeHandle___ctor__MethodInfo); DO_APP_FUNC(0x011116D0, void, UdpRingBuffer_1_UdpPipeHandle__Clear, (UdpRingBuffer_1_UdpPipeHandle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011120C0, void, UdpRingBuffer_1_UdpPipeHandle__CopyTo, (UdpRingBuffer_1_UdpPipeHandle_ * __this, UdpRingBuffer_1_UdpPipeHandle_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6868, UdpRingBuffer_1_UdpPipeHandle__CopyTo__MethodInfo); DO_APP_FUNC(0x01111F40, UdpPipeHandle, UdpRingBuffer_1_UdpPipeHandle__Dequeue, (UdpRingBuffer_1_UdpPipeHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8610, UdpRingBuffer_1_UdpPipeHandle__Dequeue__MethodInfo); DO_APP_FUNC(0x01111DF0, void, UdpRingBuffer_1_UdpPipeHandle__Enqueue, (UdpRingBuffer_1_UdpPipeHandle_ * __this, UdpPipeHandle item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6870, UdpRingBuffer_1_UdpPipeHandle__Enqueue__MethodInfo); DO_APP_FUNC(0x01112200, IEnumerator_1_UdpKit_UdpPipeHandle_ *, UdpRingBuffer_1_UdpPipeHandle__GetEnumerator, (UdpRingBuffer_1_UdpPipeHandle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01112050, UdpPipeHandle, UdpRingBuffer_1_UdpPipeHandle__Peek, (UdpRingBuffer_1_UdpPipeHandle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F90230, IEnumerator *, UdpRingBuffer_1_UdpPipeHandle__System_Collections_IEnumerable_GetEnumerator, (UdpRingBuffer_1_UdpPipeHandle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01112190, void, UdpRingBuffer_1_UdpPipeHandle__VerifyNotEmpty, (UdpRingBuffer_1_UdpPipeHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6810, UdpRingBuffer_1_UdpPipeHandle__VerifyNotEmpty__MethodInfo); DO_APP_FUNC(0x006B5770, bool, UdpRingBuffer_1_UdpPipeHandle__get_AutoFree, (UdpRingBuffer_1_UdpPipeHandle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, UdpRingBuffer_1_UdpPipeHandle__get_Count, (UdpRingBuffer_1_UdpPipeHandle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011110C0, bool, UdpRingBuffer_1_UdpPipeHandle__get_Empty, (UdpRingBuffer_1_UdpPipeHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8608, UdpRingBuffer_1_UdpPipeHandle__get_Empty__MethodInfo); DO_APP_FUNC(0x01111070, float, UdpRingBuffer_1_UdpPipeHandle__get_FillRatio, (UdpRingBuffer_1_UdpPipeHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB85F0, UdpRingBuffer_1_UdpPipeHandle__get_FillRatio__MethodInfo); DO_APP_FUNC(0x01111920, UdpPipeHandle, UdpRingBuffer_1_UdpPipeHandle__get_First, (UdpRingBuffer_1_UdpPipeHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8618, UdpRingBuffer_1_UdpPipeHandle__get_First__MethodInfo); DO_APP_FUNC(0x01111A10, UdpPipeHandle, UdpRingBuffer_1_UdpPipeHandle__get_FirstOrDefault, (UdpRingBuffer_1_UdpPipeHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8620, UdpRingBuffer_1_UdpPipeHandle__get_FirstOrDefault__MethodInfo); DO_APP_FUNC(0x01111040, bool, UdpRingBuffer_1_UdpPipeHandle__get_Full, (UdpRingBuffer_1_UdpPipeHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8560, UdpRingBuffer_1_UdpPipeHandle__get_Full__MethodInfo); DO_APP_FUNC(0x01111C70, UdpPipeHandle, UdpRingBuffer_1_UdpPipeHandle__get_Item, (UdpRingBuffer_1_UdpPipeHandle_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01111AA0, UdpPipeHandle, UdpRingBuffer_1_UdpPipeHandle__get_Last, (UdpRingBuffer_1_UdpPipeHandle_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01111BE0, UdpPipeHandle, UdpRingBuffer_1_UdpPipeHandle__get_LastOrDefault, (UdpRingBuffer_1_UdpPipeHandle_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB85F8, UdpRingBuffer_1_UdpPipeHandle__get_LastOrDefault__MethodInfo); DO_APP_FUNC(0x006B5780, void, UdpRingBuffer_1_UdpPipeHandle__set_AutoFree, (UdpRingBuffer_1_UdpPipeHandle_ * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8638, UdpRingBuffer_1_UdpPipeHandle__set_AutoFree__MethodInfo); DO_APP_FUNC(0x011119A0, void, UdpRingBuffer_1_UdpPipeHandle__set_First, (UdpRingBuffer_1_UdpPipeHandle_ * __this, UdpPipeHandle value, MethodInfo * method)); DO_APP_FUNC(0x01111CF0, void, UdpRingBuffer_1_UdpPipeHandle__set_Item, (UdpRingBuffer_1_UdpPipeHandle_ * __this, int32_t index, UdpPipeHandle value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6858, UdpRingBuffer_1_UdpPipeHandle__set_Item__MethodInfo); DO_APP_FUNC(0x01111B50, void, UdpRingBuffer_1_UdpPipeHandle__set_Last, (UdpRingBuffer_1_UdpPipeHandle_ * __this, UdpPipeHandle value, MethodInfo * method)); DO_APP_FUNC(0x011114A0, void, UdpRingBuffer_1_UdpPipe_Ack___ctor, (UdpRingBuffer_1_UdpPipe_Ack_ * __this, int32_t size, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8630, UdpRingBuffer_1_UdpPipe_Ack___ctor__MethodInfo); DO_APP_FUNC(0x011116D0, void, UdpRingBuffer_1_UdpPipe_Ack__Clear, (UdpRingBuffer_1_UdpPipe_Ack_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011129D0, void, UdpRingBuffer_1_UdpPipe_Ack__CopyTo, (UdpRingBuffer_1_UdpPipe_Ack_ * __this, UdpRingBuffer_1_UdpPipe_Ack_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6818, UdpRingBuffer_1_UdpPipe_Ack__CopyTo__MethodInfo); DO_APP_FUNC(0x011128B0, UdpPipe_Ack, UdpRingBuffer_1_UdpPipe_Ack__Dequeue, (UdpRingBuffer_1_UdpPipe_Ack_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011127C0, void, UdpRingBuffer_1_UdpPipe_Ack__Enqueue, (UdpRingBuffer_1_UdpPipe_Ack_ * __this, UdpPipe_Ack item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6820, UdpRingBuffer_1_UdpPipe_Ack__Enqueue__MethodInfo); DO_APP_FUNC(0x01111850, IEnumerator_1_UdpKit_UdpPipe_Ack_ *, UdpRingBuffer_1_UdpPipe_Ack__GetEnumerator, (UdpRingBuffer_1_UdpPipe_Ack_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01112960, UdpPipe_Ack, UdpRingBuffer_1_UdpPipe_Ack__Peek, (UdpRingBuffer_1_UdpPipe_Ack_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F90230, IEnumerator *, UdpRingBuffer_1_UdpPipe_Ack__System_Collections_IEnumerable_GetEnumerator, (UdpRingBuffer_1_UdpPipe_Ack_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01112AA0, void, UdpRingBuffer_1_UdpPipe_Ack__VerifyNotEmpty, (UdpRingBuffer_1_UdpPipe_Ack_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6828, UdpRingBuffer_1_UdpPipe_Ack__VerifyNotEmpty__MethodInfo); DO_APP_FUNC(0x006B5770, bool, UdpRingBuffer_1_UdpPipe_Ack__get_AutoFree, (UdpRingBuffer_1_UdpPipe_Ack_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, UdpRingBuffer_1_UdpPipe_Ack__get_Count, (UdpRingBuffer_1_UdpPipe_Ack_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8568, UdpRingBuffer_1_UdpPipe_Ack__get_Count__MethodInfo); DO_APP_FUNC(0x011110C0, bool, UdpRingBuffer_1_UdpPipe_Ack__get_Empty, (UdpRingBuffer_1_UdpPipe_Ack_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01111070, float, UdpRingBuffer_1_UdpPipe_Ack__get_FillRatio, (UdpRingBuffer_1_UdpPipe_Ack_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011122D0, UdpPipe_Ack, UdpRingBuffer_1_UdpPipe_Ack__get_First, (UdpRingBuffer_1_UdpPipe_Ack_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011123D0, UdpPipe_Ack, UdpRingBuffer_1_UdpPipe_Ack__get_FirstOrDefault, (UdpRingBuffer_1_UdpPipe_Ack_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01111040, bool, UdpRingBuffer_1_UdpPipe_Ack__get_Full, (UdpRingBuffer_1_UdpPipe_Ack_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01112680, UdpPipe_Ack, UdpRingBuffer_1_UdpPipe_Ack__get_Item, (UdpRingBuffer_1_UdpPipe_Ack_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8578, UdpRingBuffer_1_UdpPipe_Ack__get_Item__MethodInfo); DO_APP_FUNC(0x01112480, UdpPipe_Ack, UdpRingBuffer_1_UdpPipe_Ack__get_Last, (UdpRingBuffer_1_UdpPipe_Ack_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8570, UdpRingBuffer_1_UdpPipe_Ack__get_Last__MethodInfo); DO_APP_FUNC(0x011125D0, UdpPipe_Ack, UdpRingBuffer_1_UdpPipe_Ack__get_LastOrDefault, (UdpRingBuffer_1_UdpPipe_Ack_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8558, UdpRingBuffer_1_UdpPipe_Ack__get_LastOrDefault__MethodInfo); DO_APP_FUNC(0x006B5780, void, UdpRingBuffer_1_UdpPipe_Ack__set_AutoFree, (UdpRingBuffer_1_UdpPipe_Ack_ * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8640, UdpRingBuffer_1_UdpPipe_Ack__set_AutoFree__MethodInfo); DO_APP_FUNC(0x01112360, void, UdpRingBuffer_1_UdpPipe_Ack__set_First, (UdpRingBuffer_1_UdpPipe_Ack_ * __this, UdpPipe_Ack value, MethodInfo * method)); DO_APP_FUNC(0x01112710, void, UdpRingBuffer_1_UdpPipe_Ack__set_Item, (UdpRingBuffer_1_UdpPipe_Ack_ * __this, int32_t index, UdpPipe_Ack value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6808, UdpRingBuffer_1_UdpPipe_Ack__set_Item__MethodInfo); DO_APP_FUNC(0x01112530, void, UdpRingBuffer_1_UdpPipe_Ack__set_Last, (UdpRingBuffer_1_UdpPipe_Ack_ * __this, UdpPipe_Ack value, MethodInfo * method)); DO_APP_FUNC(0x01112BC0, void, UdpSet_1_System_Object___ctor, (UdpSet_1_System_Object_ * __this, IEqualityComparer_1_System_Object_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x01112C90, bool, UdpSet_1_System_Object__Add, (UdpSet_1_System_Object_ * __this, Object * value, MethodInfo * method)); @@ -193707,29 +212620,38 @@ DO_APP_FUNC(0x01114F00, void, UnityAction_4_System_Object_System_Single_System_B DO_APP_FUNC(0x01114F20, void, UnityAction_4_System_Single_UnityEngine_Vector3_UnityEngine_Vector3_System_Object___ctor, (UnityAction_4_System_Single_UnityEngine_Vector3_UnityEngine_Vector3_System_Object_ * __this, Object * object, void * method_1, MethodInfo * method)); DO_APP_FUNC(0x01115050, void, UnityAction_4_System_Single_UnityEngine_Vector3_UnityEngine_Vector3_System_Object__Invoke, (UnityAction_4_System_Single_UnityEngine_Vector3_UnityEngine_Vector3_System_Object_ * __this, float arg0, Vector3 arg1, Vector3 arg2, Object * arg3, MethodInfo * method)); DO_APP_FUNC(0x0042ECC0, void, UnityEvent_1_System_Boolean___ctor, (UnityEvent_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5D58, UnityEvent_1_System_Boolean___ctor__MethodInfo); DO_APP_FUNC(0x011150B0, void, UnityEvent_1_System_Boolean__AddListener, (UnityEvent_1_System_Boolean_ * __this, UnityAction_1_System_Boolean_ * call, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3AE0, UnityEvent_1_System_Boolean__AddListener__MethodInfo); DO_APP_FUNC(0x011151A0, MethodInfo_1 *, UnityEvent_1_System_Boolean__FindMethod_Impl, (UnityEvent_1_System_Boolean_ * __this, String * name, Type * targetObjType, MethodInfo * method)); DO_APP_FUNC(0x01115330, BaseInvokableCall *, UnityEvent_1_System_Boolean__GetDelegate, (UnityAction_1_System_Boolean_ * action, MethodInfo * method)); DO_APP_FUNC(0x011152A0, BaseInvokableCall *, UnityEvent_1_System_Boolean__GetDelegate_1, (UnityEvent_1_System_Boolean_ * __this, Object * target, MethodInfo_1 * theFunction, MethodInfo * method)); DO_APP_FUNC(0x01115400, void, UnityEvent_1_System_Boolean__Invoke, (UnityEvent_1_System_Boolean_ * __this, bool arg0, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23DA0, UnityEvent_1_System_Boolean__Invoke__MethodInfo); DO_APP_FUNC(0x01115140, void, UnityEvent_1_System_Boolean__RemoveListener, (UnityEvent_1_System_Boolean_ * __this, UnityAction_1_System_Boolean_ * call, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7610, UnityEvent_1_System_Boolean__RemoveListener__MethodInfo); DO_APP_FUNC(0x0042ECC0, void, UnityEvent_1_UnityEngine_Color___ctor, (UnityEvent_1_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB060, UnityEvent_1_UnityEngine_Color___ctor__MethodInfo); DO_APP_FUNC(0x011150B0, void, UnityEvent_1_UnityEngine_Color__AddListener, (UnityEvent_1_UnityEngine_Color_ * __this, UnityAction_1_UnityEngine_Color_ * call, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA3A90, UnityEvent_1_UnityEngine_Color__AddListener__MethodInfo); DO_APP_FUNC(0x011156A0, MethodInfo_1 *, UnityEvent_1_UnityEngine_Color__FindMethod_Impl, (UnityEvent_1_UnityEngine_Color_ * __this, String * name, Type * targetObjType, MethodInfo * method)); DO_APP_FUNC(0x01115330, BaseInvokableCall *, UnityEvent_1_UnityEngine_Color__GetDelegate, (UnityAction_1_UnityEngine_Color_ * action, MethodInfo * method)); DO_APP_FUNC(0x011152A0, BaseInvokableCall *, UnityEvent_1_UnityEngine_Color__GetDelegate_1, (UnityEvent_1_UnityEngine_Color_ * __this, Object * target, MethodInfo_1 * theFunction, MethodInfo * method)); DO_APP_FUNC(0x011157A0, void, UnityEvent_1_UnityEngine_Color__Invoke, (UnityEvent_1_UnityEngine_Color_ * __this, Color arg0, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB078, UnityEvent_1_UnityEngine_Color__Invoke__MethodInfo); DO_APP_FUNC(0x01115140, void, UnityEvent_1_UnityEngine_Color__RemoveListener, (UnityEvent_1_UnityEngine_Color_ * __this, UnityAction_1_UnityEngine_Color_ * call, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFAAB8, UnityEvent_1_UnityEngine_Color__RemoveListener__MethodInfo); DO_APP_FUNC(0x0042ECC0, void, UnityEvent_1_System_Int32___ctor, (UnityEvent_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA3448, UnityEvent_1_System_Int32___ctor__MethodInfo); DO_APP_FUNC(0x011150B0, void, UnityEvent_1_System_Int32__AddListener, (UnityEvent_1_System_Int32_ * __this, UnityAction_1_System_Int32_ * call, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FD88, UnityEvent_1_System_Int32__AddListener__MethodInfo); DO_APP_FUNC(0x01115A40, MethodInfo_1 *, UnityEvent_1_System_Int32__FindMethod_Impl, (UnityEvent_1_System_Int32_ * __this, String * name, Type * targetObjType, MethodInfo * method)); DO_APP_FUNC(0x01115330, BaseInvokableCall *, UnityEvent_1_System_Int32__GetDelegate, (UnityAction_1_System_Int32_ * action, MethodInfo * method)); DO_APP_FUNC(0x011152A0, BaseInvokableCall *, UnityEvent_1_System_Int32__GetDelegate_1, (UnityEvent_1_System_Int32_ * __this, Object * target, MethodInfo_1 * theFunction, MethodInfo * method)); DO_APP_FUNC(0x01115B40, void, UnityEvent_1_System_Int32__Invoke, (UnityEvent_1_System_Int32_ * __this, int32_t arg0, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA3768, UnityEvent_1_System_Int32__Invoke__MethodInfo); DO_APP_FUNC(0x01115140, void, UnityEvent_1_System_Int32__RemoveListener, (UnityEvent_1_System_Int32_ * __this, UnityAction_1_System_Int32_ * call, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FD68, UnityEvent_1_System_Int32__RemoveListener__MethodInfo); DO_APP_FUNC(0x0042ECC0, void, UnityEvent_1_System_Int32Enum___ctor, (UnityEvent_1_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011150B0, void, UnityEvent_1_System_Int32Enum__AddListener, (UnityEvent_1_System_Int32Enum_ * __this, UnityAction_1_System_Int32Enum_ * call, MethodInfo * method)); DO_APP_FUNC(0x01115DD0, MethodInfo_1 *, UnityEvent_1_System_Int32Enum__FindMethod_Impl, (UnityEvent_1_System_Int32Enum_ * __this, String * name, Type * targetObjType, MethodInfo * method)); @@ -193745,53 +212667,72 @@ DO_APP_FUNC(0x011152A0, BaseInvokableCall *, UnityEvent_1_System_Object__GetDele DO_APP_FUNC(0x01116260, void, UnityEvent_1_System_Object__Invoke, (UnityEvent_1_System_Object_ * __this, Object * arg0, MethodInfo * method)); DO_APP_FUNC(0x01115140, void, UnityEvent_1_System_Object__RemoveListener, (UnityEvent_1_System_Object_ * __this, UnityAction_1_System_Object_ * call, MethodInfo * method)); DO_APP_FUNC(0x0042ECC0, void, UnityEvent_1_System_Single___ctor, (UnityEvent_1_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5D60, UnityEvent_1_System_Single___ctor__MethodInfo); DO_APP_FUNC(0x011150B0, void, UnityEvent_1_System_Single__AddListener, (UnityEvent_1_System_Single_ * __this, UnityAction_1_System_Single_ * call, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC7E0, UnityEvent_1_System_Single__AddListener__MethodInfo); DO_APP_FUNC(0x011164C0, MethodInfo_1 *, UnityEvent_1_System_Single__FindMethod_Impl, (UnityEvent_1_System_Single_ * __this, String * name, Type * targetObjType, MethodInfo * method)); DO_APP_FUNC(0x01115330, BaseInvokableCall *, UnityEvent_1_System_Single__GetDelegate, (UnityAction_1_System_Single_ * action, MethodInfo * method)); DO_APP_FUNC(0x011152A0, BaseInvokableCall *, UnityEvent_1_System_Single__GetDelegate_1, (UnityEvent_1_System_Single_ * __this, Object * target, MethodInfo_1 * theFunction, MethodInfo * method)); DO_APP_FUNC(0x011165C0, void, UnityEvent_1_System_Single__Invoke, (UnityEvent_1_System_Single_ * __this, float arg0, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1D1A8, UnityEvent_1_System_Single__Invoke__MethodInfo); DO_APP_FUNC(0x01115140, void, UnityEvent_1_System_Single__RemoveListener, (UnityEvent_1_System_Single_ * __this, UnityAction_1_System_Single_ * call, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7648, UnityEvent_1_System_Single__RemoveListener__MethodInfo); DO_APP_FUNC(0x0042ECC0, void, UnityEvent_1_UnityEngine_Vector2___ctor, (UnityEvent_1_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7878, UnityEvent_1_UnityEngine_Vector2___ctor__MethodInfo); DO_APP_FUNC(0x011150B0, void, UnityEvent_1_UnityEngine_Vector2__AddListener, (UnityEvent_1_UnityEngine_Vector2_ * __this, UnityAction_1_UnityEngine_Vector2_ * call, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7350, UnityEvent_1_UnityEngine_Vector2__AddListener__MethodInfo); DO_APP_FUNC(0x01116860, MethodInfo_1 *, UnityEvent_1_UnityEngine_Vector2__FindMethod_Impl, (UnityEvent_1_UnityEngine_Vector2_ * __this, String * name, Type * targetObjType, MethodInfo * method)); DO_APP_FUNC(0x01115330, BaseInvokableCall *, UnityEvent_1_UnityEngine_Vector2__GetDelegate, (UnityAction_1_UnityEngine_Vector2_ * action, MethodInfo * method)); DO_APP_FUNC(0x011152A0, BaseInvokableCall *, UnityEvent_1_UnityEngine_Vector2__GetDelegate_1, (UnityEvent_1_UnityEngine_Vector2_ * __this, Object * target, MethodInfo_1 * theFunction, MethodInfo * method)); DO_APP_FUNC(0x01116960, void, UnityEvent_1_UnityEngine_Vector2__Invoke, (UnityEvent_1_UnityEngine_Vector2_ * __this, Vector2 arg0, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7938, UnityEvent_1_UnityEngine_Vector2__Invoke__MethodInfo); DO_APP_FUNC(0x01115140, void, UnityEvent_1_UnityEngine_Vector2__RemoveListener, (UnityEvent_1_UnityEngine_Vector2_ * __this, UnityAction_1_UnityEngine_Vector2_ * call, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7310, UnityEvent_1_UnityEngine_Vector2__RemoveListener__MethodInfo); DO_APP_FUNC(0x0042ECC0, void, UnityEvent_1_UnityEngine_Vector3___ctor, (UnityEvent_1_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3A08, UnityEvent_1_UnityEngine_Vector3___ctor__MethodInfo); DO_APP_FUNC(0x011150B0, void, UnityEvent_1_UnityEngine_Vector3__AddListener, (UnityEvent_1_UnityEngine_Vector3_ * __this, UnityAction_1_UnityEngine_Vector3_ * call, MethodInfo * method)); DO_APP_FUNC(0x01116C10, MethodInfo_1 *, UnityEvent_1_UnityEngine_Vector3__FindMethod_Impl, (UnityEvent_1_UnityEngine_Vector3_ * __this, String * name, Type * targetObjType, MethodInfo * method)); DO_APP_FUNC(0x01115330, BaseInvokableCall *, UnityEvent_1_UnityEngine_Vector3__GetDelegate, (UnityAction_1_UnityEngine_Vector3_ * action, MethodInfo * method)); DO_APP_FUNC(0x011152A0, BaseInvokableCall *, UnityEvent_1_UnityEngine_Vector3__GetDelegate_1, (UnityEvent_1_UnityEngine_Vector3_ * __this, Object * target, MethodInfo_1 * theFunction, MethodInfo * method)); DO_APP_FUNC(0x01116D10, void, UnityEvent_1_UnityEngine_Vector3__Invoke, (UnityEvent_1_UnityEngine_Vector3_ * __this, Vector3 arg0, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3A18, UnityEvent_1_UnityEngine_Vector3__Invoke__MethodInfo); DO_APP_FUNC(0x01115140, void, UnityEvent_1_UnityEngine_Vector3__RemoveListener, (UnityEvent_1_UnityEngine_Vector3_ * __this, UnityAction_1_UnityEngine_Vector3_ * call, MethodInfo * method)); DO_APP_FUNC(0x0042ECC0, void, UnityEvent_1_UnityEngine_InputSystem_InputAction_CallbackContext___ctor, (UnityEvent_1_UnityEngine_InputSystem_InputAction_CallbackContext_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCDD28, UnityEvent_1_UnityEngine_InputSystem_InputAction_CallbackContext___ctor__MethodInfo); DO_APP_FUNC(0x011150B0, void, UnityEvent_1_UnityEngine_InputSystem_InputAction_CallbackContext__AddListener, (UnityEvent_1_UnityEngine_InputSystem_InputAction_CallbackContext_ * __this, UnityAction_1_UnityEngine_InputSystem_InputAction_CallbackContext_ * call, MethodInfo * method)); DO_APP_FUNC(0x01116FD0, MethodInfo_1 *, UnityEvent_1_UnityEngine_InputSystem_InputAction_CallbackContext__FindMethod_Impl, (UnityEvent_1_UnityEngine_InputSystem_InputAction_CallbackContext_ * __this, String * name, Type * targetObjType, MethodInfo * method)); DO_APP_FUNC(0x01115330, BaseInvokableCall *, UnityEvent_1_UnityEngine_InputSystem_InputAction_CallbackContext__GetDelegate, (UnityAction_1_UnityEngine_InputSystem_InputAction_CallbackContext_ * action, MethodInfo * method)); DO_APP_FUNC(0x011152A0, BaseInvokableCall *, UnityEvent_1_UnityEngine_InputSystem_InputAction_CallbackContext__GetDelegate_1, (UnityEvent_1_UnityEngine_InputSystem_InputAction_CallbackContext_ * __this, Object * target, MethodInfo_1 * theFunction, MethodInfo * method)); DO_APP_FUNC(0x011170D0, void, UnityEvent_1_UnityEngine_InputSystem_InputAction_CallbackContext__Invoke, (UnityEvent_1_UnityEngine_InputSystem_InputAction_CallbackContext_ * __this, InputAction_CallbackContext arg0, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCDE58, UnityEvent_1_UnityEngine_InputSystem_InputAction_CallbackContext__Invoke__MethodInfo); DO_APP_FUNC(0x01115140, void, UnityEvent_1_UnityEngine_InputSystem_InputAction_CallbackContext__RemoveListener, (UnityEvent_1_UnityEngine_InputSystem_InputAction_CallbackContext_ * __this, UnityAction_1_UnityEngine_InputSystem_InputAction_CallbackContext_ * call, MethodInfo * method)); DO_APP_FUNC(0x0042ECC0, void, UnityEvent_1_UnityEngine_UI_Extensions_ReorderableList_ReorderableListEventStruct___ctor, (UnityEvent_1_UnityEngine_UI_Extensions_ReorderableList_ReorderableListEventStruct_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5C68, UnityEvent_1_UnityEngine_UI_Extensions_ReorderableList_ReorderableListEventStruct___ctor__MethodInfo); DO_APP_FUNC(0x011150B0, void, UnityEvent_1_UnityEngine_UI_Extensions_ReorderableList_ReorderableListEventStruct__AddListener, (UnityEvent_1_UnityEngine_UI_Extensions_ReorderableList_ReorderableListEventStruct_ * __this, UnityAction_1_UnityEngine_UI_Extensions_ReorderableList_ReorderableListEventStruct_ * call, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5CB0, UnityEvent_1_UnityEngine_UI_Extensions_ReorderableList_ReorderableListEventStruct__AddListener__MethodInfo); DO_APP_FUNC(0x01117370, MethodInfo_1 *, UnityEvent_1_UnityEngine_UI_Extensions_ReorderableList_ReorderableListEventStruct__FindMethod_Impl, (UnityEvent_1_UnityEngine_UI_Extensions_ReorderableList_ReorderableListEventStruct_ * __this, String * name, Type * targetObjType, MethodInfo * method)); DO_APP_FUNC(0x01115330, BaseInvokableCall *, UnityEvent_1_UnityEngine_UI_Extensions_ReorderableList_ReorderableListEventStruct__GetDelegate, (UnityAction_1_UnityEngine_UI_Extensions_ReorderableList_ReorderableListEventStruct_ * action, MethodInfo * method)); DO_APP_FUNC(0x011152A0, BaseInvokableCall *, UnityEvent_1_UnityEngine_UI_Extensions_ReorderableList_ReorderableListEventStruct__GetDelegate_1, (UnityEvent_1_UnityEngine_UI_Extensions_ReorderableList_ReorderableListEventStruct_ * __this, Object * target, MethodInfo_1 * theFunction, MethodInfo * method)); DO_APP_FUNC(0x01117470, void, UnityEvent_1_UnityEngine_UI_Extensions_ReorderableList_ReorderableListEventStruct__Invoke, (UnityEvent_1_UnityEngine_UI_Extensions_ReorderableList_ReorderableListEventStruct_ * __this, ReorderableList_ReorderableListEventStruct arg0, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5BD8, UnityEvent_1_UnityEngine_UI_Extensions_ReorderableList_ReorderableListEventStruct__Invoke__MethodInfo); DO_APP_FUNC(0x01115140, void, UnityEvent_1_UnityEngine_UI_Extensions_ReorderableList_ReorderableListEventStruct__RemoveListener, (UnityEvent_1_UnityEngine_UI_Extensions_ReorderableList_ReorderableListEventStruct_ * __this, UnityAction_1_UnityEngine_UI_Extensions_ReorderableList_ReorderableListEventStruct_ * call, MethodInfo * method)); DO_APP_FUNC(0x0042ECC0, void, UnityEvent_2_System_Int32_System_Boolean___ctor, (UnityEvent_2_System_Int32_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7B98, UnityEvent_2_System_Int32_System_Boolean___ctor__MethodInfo); DO_APP_FUNC(0x011150B0, void, UnityEvent_2_System_Int32_System_Boolean__AddListener, (UnityEvent_2_System_Int32_System_Boolean_ * __this, UnityAction_2_System_Int32_System_Boolean_ * call, MethodInfo * method)); DO_APP_FUNC(0x01117770, MethodInfo_1 *, UnityEvent_2_System_Int32_System_Boolean__FindMethod_Impl, (UnityEvent_2_System_Int32_System_Boolean_ * __this, String * name, Type * targetObjType, MethodInfo * method)); DO_APP_FUNC(0x01117960, BaseInvokableCall *, UnityEvent_2_System_Int32_System_Boolean__GetDelegate, (UnityAction_2_System_Int32_System_Boolean_ * action, MethodInfo * method)); DO_APP_FUNC(0x011178D0, BaseInvokableCall *, UnityEvent_2_System_Int32_System_Boolean__GetDelegate_1, (UnityEvent_2_System_Int32_System_Boolean_ * __this, Object * target, MethodInfo_1 * theFunction, MethodInfo * method)); DO_APP_FUNC(0x01117A30, void, UnityEvent_2_System_Int32_System_Boolean__Invoke, (UnityEvent_2_System_Int32_System_Boolean_ * __this, int32_t arg0, bool arg1, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7E78, UnityEvent_2_System_Int32_System_Boolean__Invoke__MethodInfo); DO_APP_FUNC(0x01115140, void, UnityEvent_2_System_Int32_System_Boolean__RemoveListener, (UnityEvent_2_System_Int32_System_Boolean_ * __this, UnityAction_2_System_Int32_System_Boolean_ * call, MethodInfo * method)); DO_APP_FUNC(0x0042ECC0, void, UnityEvent_2_System_Int32_System_Single___ctor, (UnityEvent_2_System_Int32_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7BA8, UnityEvent_2_System_Int32_System_Single___ctor__MethodInfo); DO_APP_FUNC(0x011150B0, void, UnityEvent_2_System_Int32_System_Single__AddListener, (UnityEvent_2_System_Int32_System_Single_ * __this, UnityAction_2_System_Int32_System_Single_ * call, MethodInfo * method)); DO_APP_FUNC(0x01117D60, MethodInfo_1 *, UnityEvent_2_System_Int32_System_Single__FindMethod_Impl, (UnityEvent_2_System_Int32_System_Single_ * __this, String * name, Type * targetObjType, MethodInfo * method)); DO_APP_FUNC(0x01117960, BaseInvokableCall *, UnityEvent_2_System_Int32_System_Single__GetDelegate, (UnityAction_2_System_Int32_System_Single_ * action, MethodInfo * method)); DO_APP_FUNC(0x011178D0, BaseInvokableCall *, UnityEvent_2_System_Int32_System_Single__GetDelegate_1, (UnityEvent_2_System_Int32_System_Single_ * __this, Object * target, MethodInfo_1 * theFunction, MethodInfo * method)); DO_APP_FUNC(0x01117EC0, void, UnityEvent_2_System_Int32_System_Single__Invoke, (UnityEvent_2_System_Int32_System_Single_ * __this, int32_t arg0, float arg1, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7E58, UnityEvent_2_System_Int32_System_Single__Invoke__MethodInfo); DO_APP_FUNC(0x01115140, void, UnityEvent_2_System_Int32_System_Single__RemoveListener, (UnityEvent_2_System_Int32_System_Single_ * __this, UnityAction_2_System_Int32_System_Single_ * call, MethodInfo * method)); DO_APP_FUNC(0x0042ECC0, void, UnityEvent_2_System_Object_System_Boolean___ctor, (UnityEvent_2_System_Object_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011150B0, void, UnityEvent_2_System_Object_System_Boolean__AddListener, (UnityEvent_2_System_Object_System_Boolean_ * __this, UnityAction_2_System_Object_System_Boolean_ * call, MethodInfo * method)); @@ -193822,25 +212763,33 @@ DO_APP_FUNC(0x011178D0, BaseInvokableCall *, UnityEvent_2_System_Object_System_S DO_APP_FUNC(0x01119010, void, UnityEvent_2_System_Object_System_Single__Invoke, (UnityEvent_2_System_Object_System_Single_ * __this, Object * arg0, float arg1, MethodInfo * method)); DO_APP_FUNC(0x01115140, void, UnityEvent_2_System_Object_System_Single__RemoveListener, (UnityEvent_2_System_Object_System_Single_ * __this, UnityAction_2_System_Object_System_Single_ * call, MethodInfo * method)); DO_APP_FUNC(0x0042ECC0, void, UnityEvent_2_System_Single_System_Single___ctor, (UnityEvent_2_System_Single_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6098, UnityEvent_2_System_Single_System_Single___ctor__MethodInfo); DO_APP_FUNC(0x011150B0, void, UnityEvent_2_System_Single_System_Single__AddListener, (UnityEvent_2_System_Single_System_Single_ * __this, UnityAction_2_System_Single_System_Single_ * call, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB118, UnityEvent_2_System_Single_System_Single__AddListener__MethodInfo); DO_APP_FUNC(0x01119310, MethodInfo_1 *, UnityEvent_2_System_Single_System_Single__FindMethod_Impl, (UnityEvent_2_System_Single_System_Single_ * __this, String * name, Type * targetObjType, MethodInfo * method)); DO_APP_FUNC(0x01117960, BaseInvokableCall *, UnityEvent_2_System_Single_System_Single__GetDelegate, (UnityAction_2_System_Single_System_Single_ * action, MethodInfo * method)); DO_APP_FUNC(0x011178D0, BaseInvokableCall *, UnityEvent_2_System_Single_System_Single__GetDelegate_1, (UnityEvent_2_System_Single_System_Single_ * __this, Object * target, MethodInfo_1 * theFunction, MethodInfo * method)); DO_APP_FUNC(0x01119470, void, UnityEvent_2_System_Single_System_Single__Invoke, (UnityEvent_2_System_Single_System_Single_ * __this, float arg0, float arg1, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6180, UnityEvent_2_System_Single_System_Single__Invoke__MethodInfo); DO_APP_FUNC(0x01115140, void, UnityEvent_2_System_Single_System_Single__RemoveListener, (UnityEvent_2_System_Single_System_Single_ * __this, UnityAction_2_System_Single_System_Single_ * call, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB110, UnityEvent_2_System_Single_System_Single__RemoveListener__MethodInfo); DO_APP_FUNC(0x0042ECC0, void, UnityEvent_2_UnityEngine_Vector3_System_Single___ctor, (UnityEvent_2_UnityEngine_Vector3_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3A98, UnityEvent_2_UnityEngine_Vector3_System_Single___ctor__MethodInfo); DO_APP_FUNC(0x011150B0, void, UnityEvent_2_UnityEngine_Vector3_System_Single__AddListener, (UnityEvent_2_UnityEngine_Vector3_System_Single_ * __this, UnityAction_2_UnityEngine_Vector3_System_Single_ * call, MethodInfo * method)); DO_APP_FUNC(0x011197B0, MethodInfo_1 *, UnityEvent_2_UnityEngine_Vector3_System_Single__FindMethod_Impl, (UnityEvent_2_UnityEngine_Vector3_System_Single_ * __this, String * name, Type * targetObjType, MethodInfo * method)); DO_APP_FUNC(0x01117960, BaseInvokableCall *, UnityEvent_2_UnityEngine_Vector3_System_Single__GetDelegate, (UnityAction_2_UnityEngine_Vector3_System_Single_ * action, MethodInfo * method)); DO_APP_FUNC(0x011178D0, BaseInvokableCall *, UnityEvent_2_UnityEngine_Vector3_System_Single__GetDelegate_1, (UnityEvent_2_UnityEngine_Vector3_System_Single_ * __this, Object * target, MethodInfo_1 * theFunction, MethodInfo * method)); DO_APP_FUNC(0x01119910, void, UnityEvent_2_UnityEngine_Vector3_System_Single__Invoke, (UnityEvent_2_UnityEngine_Vector3_System_Single_ * __this, Vector3 arg0, float arg1, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3AA8, UnityEvent_2_UnityEngine_Vector3_System_Single__Invoke__MethodInfo); DO_APP_FUNC(0x01115140, void, UnityEvent_2_UnityEngine_Vector3_System_Single__RemoveListener, (UnityEvent_2_UnityEngine_Vector3_System_Single_ * __this, UnityAction_2_UnityEngine_Vector3_System_Single_ * call, MethodInfo * method)); DO_APP_FUNC(0x0042ECC0, void, UnityEvent_2_UnityEngine_Vector3_UnityEngine_Vector3___ctor, (UnityEvent_2_UnityEngine_Vector3_UnityEngine_Vector3_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3A50, UnityEvent_2_UnityEngine_Vector3_UnityEngine_Vector3___ctor__MethodInfo); DO_APP_FUNC(0x011150B0, void, UnityEvent_2_UnityEngine_Vector3_UnityEngine_Vector3__AddListener, (UnityEvent_2_UnityEngine_Vector3_UnityEngine_Vector3_ * __this, UnityAction_2_UnityEngine_Vector3_UnityEngine_Vector3_ * call, MethodInfo * method)); DO_APP_FUNC(0x01119C80, MethodInfo_1 *, UnityEvent_2_UnityEngine_Vector3_UnityEngine_Vector3__FindMethod_Impl, (UnityEvent_2_UnityEngine_Vector3_UnityEngine_Vector3_ * __this, String * name, Type * targetObjType, MethodInfo * method)); DO_APP_FUNC(0x01117960, BaseInvokableCall *, UnityEvent_2_UnityEngine_Vector3_UnityEngine_Vector3__GetDelegate, (UnityAction_2_UnityEngine_Vector3_UnityEngine_Vector3_ * action, MethodInfo * method)); DO_APP_FUNC(0x011178D0, BaseInvokableCall *, UnityEvent_2_UnityEngine_Vector3_UnityEngine_Vector3__GetDelegate_1, (UnityEvent_2_UnityEngine_Vector3_UnityEngine_Vector3_ * __this, Object * target, MethodInfo_1 * theFunction, MethodInfo * method)); DO_APP_FUNC(0x01119DE0, void, UnityEvent_2_UnityEngine_Vector3_UnityEngine_Vector3__Invoke, (UnityEvent_2_UnityEngine_Vector3_UnityEngine_Vector3_ * __this, Vector3 arg0, Vector3 arg1, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF3A58, UnityEvent_2_UnityEngine_Vector3_UnityEngine_Vector3__Invoke__MethodInfo); DO_APP_FUNC(0x01115140, void, UnityEvent_2_UnityEngine_Vector3_UnityEngine_Vector3__RemoveListener, (UnityEvent_2_UnityEngine_Vector3_UnityEngine_Vector3_ * __this, UnityAction_2_UnityEngine_Vector3_UnityEngine_Vector3_ * call, MethodInfo * method)); DO_APP_FUNC(0x0042ECC0, void, UnityEvent_3_System_Object_System_Int32_System_Int32___ctor, (UnityEvent_3_System_Object_System_Int32_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011150B0, void, UnityEvent_3_System_Object_System_Int32_System_Int32__AddListener, (UnityEvent_3_System_Object_System_Int32_System_Int32_ * __this, UnityAction_3_System_Object_System_Int32_System_Int32_ * call, MethodInfo * method)); @@ -193857,12 +212806,16 @@ DO_APP_FUNC(0x0111A330, BaseInvokableCall *, UnityEvent_3_System_Object_System_O DO_APP_FUNC(0x0111A9F0, void, UnityEvent_3_System_Object_System_Object_System_Object__Invoke, (UnityEvent_3_System_Object_System_Object_System_Object_ * __this, Object * arg0, Object * arg1, Object * arg2, MethodInfo * method)); DO_APP_FUNC(0x01115140, void, UnityEvent_3_System_Object_System_Object_System_Object__RemoveListener, (UnityEvent_3_System_Object_System_Object_System_Object_ * __this, UnityAction_3_System_Object_System_Object_System_Object_ * call, MethodInfo * method)); DO_APP_FUNC(0x0042ECC0, void, UnityEvent_3_System_Single_System_Single_System_Single___ctor, (UnityEvent_3_System_Single_System_Single_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF63C0, UnityEvent_3_System_Single_System_Single_System_Single___ctor__MethodInfo); DO_APP_FUNC(0x011150B0, void, UnityEvent_3_System_Single_System_Single_System_Single__AddListener, (UnityEvent_3_System_Single_System_Single_System_Single_ * __this, UnityAction_3_System_Single_System_Single_System_Single_ * call, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB390, UnityEvent_3_System_Single_System_Single_System_Single__AddListener__MethodInfo); DO_APP_FUNC(0x0111AD00, MethodInfo_1 *, UnityEvent_3_System_Single_System_Single_System_Single__FindMethod_Impl, (UnityEvent_3_System_Single_System_Single_System_Single_ * __this, String * name, Type * targetObjType, MethodInfo * method)); DO_APP_FUNC(0x0111A3C0, BaseInvokableCall *, UnityEvent_3_System_Single_System_Single_System_Single__GetDelegate, (UnityAction_3_System_Single_System_Single_System_Single_ * action, MethodInfo * method)); DO_APP_FUNC(0x0111A330, BaseInvokableCall *, UnityEvent_3_System_Single_System_Single_System_Single__GetDelegate_1, (UnityEvent_3_System_Single_System_Single_System_Single_ * __this, Object * target, MethodInfo_1 * theFunction, MethodInfo * method)); DO_APP_FUNC(0x0111AEC0, void, UnityEvent_3_System_Single_System_Single_System_Single__Invoke, (UnityEvent_3_System_Single_System_Single_System_Single_ * __this, float arg0, float arg1, float arg2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB230, UnityEvent_3_System_Single_System_Single_System_Single__Invoke__MethodInfo); DO_APP_FUNC(0x01115140, void, UnityEvent_3_System_Single_System_Single_System_Single__RemoveListener, (UnityEvent_3_System_Single_System_Single_System_Single_ * __this, UnityAction_3_System_Single_System_Single_System_Single_ * call, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB378, UnityEvent_3_System_Single_System_Single_System_Single__RemoveListener__MethodInfo); DO_APP_FUNC(0x0042ECC0, void, UnityEvent_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Object___ctor, (UnityEvent_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011150B0, void, UnityEvent_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Object__AddListener, (UnityEvent_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Object_ * __this, UnityAction_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Object_ * call, MethodInfo * method)); DO_APP_FUNC(0x0111B2D0, MethodInfo_1 *, UnityEvent_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Object__FindMethod_Impl, (UnityEvent_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Object_ * __this, String * name, Type * targetObjType, MethodInfo * method)); @@ -193871,11 +212824,13 @@ DO_APP_FUNC(0x0111A330, BaseInvokableCall *, UnityEvent_3_UnityEngine_Vector3_Un DO_APP_FUNC(0x0111B490, void, UnityEvent_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Object__Invoke, (UnityEvent_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Object_ * __this, Vector3 arg0, Vector3 arg1, Object * arg2, MethodInfo * method)); DO_APP_FUNC(0x01115140, void, UnityEvent_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Object__RemoveListener, (UnityEvent_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Object_ * __this, UnityAction_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Object_ * call, MethodInfo * method)); DO_APP_FUNC(0x0042ECC0, void, UnityEvent_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Single___ctor, (UnityEvent_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF39C0, UnityEvent_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Single___ctor__MethodInfo); DO_APP_FUNC(0x011150B0, void, UnityEvent_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Single__AddListener, (UnityEvent_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Single_ * __this, UnityAction_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Single_ * call, MethodInfo * method)); DO_APP_FUNC(0x0111B890, MethodInfo_1 *, UnityEvent_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Single__FindMethod_Impl, (UnityEvent_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Single_ * __this, String * name, Type * targetObjType, MethodInfo * method)); DO_APP_FUNC(0x0111A3C0, BaseInvokableCall *, UnityEvent_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Single__GetDelegate, (UnityAction_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Single_ * action, MethodInfo * method)); DO_APP_FUNC(0x0111A330, BaseInvokableCall *, UnityEvent_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Single__GetDelegate_1, (UnityEvent_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Single_ * __this, Object * target, MethodInfo_1 * theFunction, MethodInfo * method)); DO_APP_FUNC(0x0111BA50, void, UnityEvent_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Single__Invoke, (UnityEvent_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Single_ * __this, Vector3 arg0, Vector3 arg1, float arg2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF39C8, UnityEvent_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Single__Invoke__MethodInfo); DO_APP_FUNC(0x01115140, void, UnityEvent_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Single__RemoveListener, (UnityEvent_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Single_ * __this, UnityAction_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Single_ * call, MethodInfo * method)); DO_APP_FUNC(0x0042ECC0, void, UnityEvent_4_System_Object_System_Object_System_Object_System_Object___ctor, (UnityEvent_4_System_Object_System_Object_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0111BEA0, MethodInfo_1 *, UnityEvent_4_System_Object_System_Object_System_Object_System_Object__FindMethod_Impl, (UnityEvent_4_System_Object_System_Object_System_Object_System_Object_ * __this, String * name, Type * targetObjType, MethodInfo * method)); @@ -193913,7 +212868,7 @@ DO_APP_FUNC(0x0111D280, void, LockedValue_1_T_Unlocker_Dissonance_Audio_Playback DO_APP_FUNC_METHODINFO(0x03C939E0, LockedValue_1_T_Unlocker_Dissonance_Audio_Playback_PlaybackOptions__set_Value__MethodInfo); DO_APP_FUNC(0x0111D4E0, void, UnsafeGenericPool_1_System_Object___cctor, (MethodInfo * method)); DO_APP_FUNC(0x010C6F80, Object *, UnsafeGenericPool_1_System_Object__Get, (MethodInfo * method)); -DO_APP_FUNC(0x0111D2B0, ObjectPool_1_T_PooledObject_System_Object_, UnsafeGenericPool_1_System_Object__Get_1, (Object * value, MethodInfo * method)); +DO_APP_FUNC(0x0111D2B0, ObjectPool_1_T_PooledObject_System_Object_, UnsafeGenericPool_1_System_Object__Get_1, (Object * * value, MethodInfo * method)); DO_APP_FUNC(0x0111D3D0, void, UnsafeGenericPool_1_System_Object__Release, (Object * toRelease, MethodInfo * method)); DO_APP_FUNC(0x0111D660, void, UnwrapPromise_1_System_Object___ctor, (UnwrapPromise_1_System_Object_ * __this, Task * outerTask, bool lookForOce, MethodInfo * method)); DO_APP_FUNC(0x0111D820, void, UnwrapPromise_1_System_Object__Invoke, (UnwrapPromise_1_System_Object_ * __this, Task * completingTask, MethodInfo * method)); @@ -193924,6 +212879,7 @@ DO_APP_FUNC(0x0111E080, void, UnwrapPromise_1_System_Object__ProcessInnerTask, ( DO_APP_FUNC(0x0111DDD0, bool, UnwrapPromise_1_System_Object__TrySetFromTask, (UnwrapPromise_1_System_Object_ * __this, Task * task, bool lookForOce, MethodInfo * method)); DO_APP_FUNC(0x0041AEF0, bool, UnwrapPromise_1_System_Object__get_InvokeMayRunArbitraryCode, (UnwrapPromise_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0111E1A0, void, UnwrapPromise_1_VoidTaskResult___ctor, (UnwrapPromise_1_VoidTaskResult_ * __this, Task * outerTask, bool lookForOce, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11350, UnwrapPromise_1_VoidTaskResult___ctor__MethodInfo); DO_APP_FUNC(0x0111E360, void, UnwrapPromise_1_VoidTaskResult__Invoke, (UnwrapPromise_1_VoidTaskResult_ * __this, Task * completingTask, MethodInfo * method)); DO_APP_FUNC(0x0111D960, void, UnwrapPromise_1_VoidTaskResult__InvokeCore, (UnwrapPromise_1_VoidTaskResult_ * __this, Task * completingTask, MethodInfo * method)); DO_APP_FUNC(0x0111E4A0, void, UnwrapPromise_1_VoidTaskResult__InvokeCoreAsync, (UnwrapPromise_1_VoidTaskResult_ * __this, Task * completingTask, MethodInfo * method)); @@ -193934,18 +212890,24 @@ DO_APP_FUNC(0x0041AEF0, bool, UnwrapPromise_1_VoidTaskResult__get_InvokeMayRunAr DO_APP_FUNC(0x010B5EC0, void, UpdateLoopDataSet_1_System_Object___ctor, (UpdateLoopDataSet_1_System_Object_ * __this, UpdateLoopSetting__Enum param_00009af4, MethodInfo * method)); DO_APP_FUNC(0x0111ECF0, void, UpdateLoopDataSet_1_System_Object___ctor_1, (UpdateLoopDataSet_1_System_Object_ * __this, UpdateLoopSetting__Enum param_00009af5, Func_1_Object_ * param_00009af6, MethodInfo * method)); DO_APP_FUNC(0x0111F2B0, Object *, UpdateLoopDataSet_1_System_Object__Get, (UpdateLoopDataSet_1_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB90B0, UpdateLoopDataSet_1_System_Object__Get__MethodInfo); DO_APP_FUNC(0x0111F340, Object *, UpdateLoopDataSet_1_System_Object__Get_1, (UpdateLoopDataSet_1_System_Object_ * __this, UpdateLoopType__Enum updateLoop, MethodInfo * method)); DO_APP_FUNC(0x0111F470, UpdateLoopType__Enum, UpdateLoopDataSet_1_System_Object__GetUpdateLoopType, (UpdateLoopDataSet_1_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9058, UpdateLoopDataSet_1_System_Object__GetUpdateLoopType__MethodInfo); DO_APP_FUNC(0x0111F390, void, UpdateLoopDataSet_1_System_Object__Set, (UpdateLoopDataSet_1_System_Object_ * __this, int32_t index, Object * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB90A8, UpdateLoopDataSet_1_System_Object__Set__MethodInfo); DO_APP_FUNC(0x0111F210, void, UpdateLoopDataSet_1_System_Object__SetUpdateLoop, (UpdateLoopDataSet_1_System_Object_ * __this, UpdateLoopType__Enum updateLoop, MethodInfo * method)); DO_APP_FUNC(0x003BC2E0, int32_t, UpdateLoopDataSet_1_System_Object__get_Count, (UpdateLoopDataSet_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0111EB60, Object *, UpdateLoopDataSet_1_System_Object__get_Current, (UpdateLoopDataSet_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0111EB80, Object *, UpdateLoopDataSet_1_System_Object__get_Item, (UpdateLoopDataSet_1_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB90C0, UpdateLoopDataSet_1_System_Object__get_Item__MethodInfo); DO_APP_FUNC(0x0111EC10, void, UpdateLoopDataSet_1_System_Object__set_Item, (UpdateLoopDataSet_1_System_Object_ * __this, int32_t index, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB90B8, UpdateLoopDataSet_1_System_Object__set_Item__MethodInfo); DO_APP_FUNC(0x00C7AC50, Int32Enum__Enum, UxmlEnumAttributeDescription_1_System_Int32Enum__ConvertValueToEnum, (String * v, Int32Enum__Enum defaultValue, MethodInfo * method)); DO_APP_FUNC(0x0111F510, void, UxmlEnumAttributeDescription_1_System_Int32Enum___ctor, (UxmlEnumAttributeDescription_1_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9070, UxmlEnumAttributeDescription_1_System_Int32Enum___ctor__MethodInfo); DO_APP_FUNC(0x0111FDD0, Int32Enum__Enum, UxmlEnumAttributeDescription_1_System_Int32Enum__GetValueFromBag, (UxmlEnumAttributeDescription_1_System_Int32Enum_ * __this, IUxmlAttributes * bag, CreationContext cc, MethodInfo * method)); -DO_APP_FUNC(0x01120050, bool, UxmlEnumAttributeDescription_1_System_Int32Enum__TryGetValueFromBag, (UxmlEnumAttributeDescription_1_System_Int32Enum_ * __this, IUxmlAttributes * bag, CreationContext cc, Int32Enum__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x01120050, bool, UxmlEnumAttributeDescription_1_System_Int32Enum__TryGetValueFromBag, (UxmlEnumAttributeDescription_1_System_Int32Enum_ * __this, IUxmlAttributes * bag, CreationContext cc, Int32Enum__Enum * value, MethodInfo * method)); DO_APP_FUNC(0x010470B0, void, UxmlFactory_1_System_Object___ctor, (UxmlFactory_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00FD3A30, void, UxmlFactory_2_System_Object_System_Object___ctor, (UxmlFactory_2_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01120490, bool, UxmlFactory_2_System_Object_System_Object__AcceptsAttributeBag, (UxmlFactory_2_System_Object_System_Object_ * __this, IUxmlAttributes * bag, CreationContext cc, MethodInfo * method)); @@ -193957,8 +212919,10 @@ DO_APP_FUNC(0x01120540, void, BaseField_1_TValueType_UxmlTraits_System_Boolean__ DO_APP_FUNC(0x011206C0, void, BaseField_1_TValueType_UxmlTraits_System_Boolean__Init, (BaseField_1_TValueType_UxmlTraits_System_Boolean_ * __this, VisualElement * ve, IUxmlAttributes * bag, CreationContext cc, MethodInfo * method)); DO_APP_FUNC(0x01120850, List_1_System_String_ *, BaseField_1_TValueType_UxmlTraits_System_Boolean__ParseChoiceList, (String * choicesFromBag, MethodInfo * method)); DO_APP_FUNC(0x01120A90, void, BaseField_1_TValueType_UxmlTraits_System_Int32___ctor, (BaseField_1_TValueType_UxmlTraits_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE04B0, BaseField_1_TValueType_UxmlTraits_System_Int32___ctor__MethodInfo); DO_APP_FUNC(0x011206C0, void, BaseField_1_TValueType_UxmlTraits_System_Int32__Init, (BaseField_1_TValueType_UxmlTraits_System_Int32_ * __this, VisualElement * ve, IUxmlAttributes * bag, CreationContext cc, MethodInfo * method)); DO_APP_FUNC(0x01120C10, List_1_System_String_ *, BaseField_1_TValueType_UxmlTraits_System_Int32__ParseChoiceList, (String * choicesFromBag, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE21A8, BaseField_1_TValueType_UxmlTraits_System_Int32__ParseChoiceList__MethodInfo); DO_APP_FUNC(0x01120E50, void, BaseField_1_TValueType_UxmlTraits_System_Object___ctor, (BaseField_1_TValueType_UxmlTraits_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011206C0, void, BaseField_1_TValueType_UxmlTraits_System_Object__Init, (BaseField_1_TValueType_UxmlTraits_System_Object_ * __this, VisualElement * ve, IUxmlAttributes * bag, CreationContext cc, MethodInfo * method)); DO_APP_FUNC(0x01120FD0, List_1_System_String_ *, BaseField_1_TValueType_UxmlTraits_System_Object__ParseChoiceList, (String * choicesFromBag, MethodInfo * method)); @@ -193968,13 +212932,16 @@ DO_APP_FUNC(0x01121FD0, void, BaseField_1_TValueType_UxmlTraits_System_Single___ DO_APP_FUNC(0x011206C0, void, BaseField_1_TValueType_UxmlTraits_System_Single__Init, (BaseField_1_TValueType_UxmlTraits_System_Single_ * __this, VisualElement * ve, IUxmlAttributes * bag, CreationContext cc, MethodInfo * method)); DO_APP_FUNC(0x01122150, List_1_System_String_ *, BaseField_1_TValueType_UxmlTraits_System_Single__ParseChoiceList, (String * choicesFromBag, MethodInfo * method)); DO_APP_FUNC(0x01122390, void, BaseField_1_TValueType_UxmlTraits_UnityEngine_Vector2___ctor, (BaseField_1_TValueType_UxmlTraits_UnityEngine_Vector2_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2328, BaseField_1_TValueType_UxmlTraits_UnityEngine_Vector2___ctor__MethodInfo); DO_APP_FUNC(0x011206C0, void, BaseField_1_TValueType_UxmlTraits_UnityEngine_Vector2__Init, (BaseField_1_TValueType_UxmlTraits_UnityEngine_Vector2_ * __this, VisualElement * ve, IUxmlAttributes * bag, CreationContext cc, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2338, BaseField_1_TValueType_UxmlTraits_UnityEngine_Vector2__Init__MethodInfo); DO_APP_FUNC(0x01122510, List_1_System_String_ *, BaseField_1_TValueType_UxmlTraits_UnityEngine_Vector2__ParseChoiceList, (String * choicesFromBag, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, ldnqCJRTNbykOZAyPczivAgtlhxQ_1_u0001_VVFqFosxbmloOEQtXdPQAgnlpTxqA_System_Object___ctor, (ldnqCJRTNbykOZAyPczivAgtlhxQ_1_u0001_VVFqFosxbmloOEQtXdPQAgnlpTxqA_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01122750, bool, ldnqCJRTNbykOZAyPczivAgtlhxQ_1_u0001_VVFqFosxbmloOEQtXdPQAgnlpTxqA_System_Object__qzJIoFQXMOabnqrdhlzkCVTJDlTe, (ldnqCJRTNbykOZAyPczivAgtlhxQ_1_u0001_VVFqFosxbmloOEQtXdPQAgnlpTxqA_System_Object_ * __this, ldnqCJRTNbykOZAyPczivAgtlhxQ_1_u0001_ywtZPPrElpcINJiNufkjaDyFYDcAB_System_Object_ * param_00009aba, MethodInfo * method)); DO_APP_FUNC(0x01123650, void, ValueAnimation_1_System_Object___cctor, (MethodInfo * method)); DO_APP_FUNC(0x01122970, void, ValueAnimation_1_System_Object___ctor, (ValueAnimation_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01123360, void, ValueAnimation_1_System_Object__CheckNotRecycled, (ValueAnimation_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8FA8, ValueAnimation_1_System_Object__CheckNotRecycled__MethodInfo); DO_APP_FUNC(0x011233F0, ValueAnimation_1_System_Object_ *, ValueAnimation_1_System_Object__Create, (VisualElement * e, Func_4_Object_Object_Single_Object_ * interpolator, MethodInfo * method)); DO_APP_FUNC(0x01123620, ValueAnimation_1_System_Object_ *, ValueAnimation_1_System_Object__KeepAlive, (ValueAnimation_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01122BB0, void, ValueAnimation_1_System_Object__Recycle, (ValueAnimation_1_System_Object_ * __this, MethodInfo * method)); @@ -194012,14 +212979,19 @@ DO_APP_FUNC(0x00421740, void, ValueAnimation_1_System_Object__set_valueUpdated, DO_APP_FUNC(0x01123650, void, ValueAnimation_1_StyleValues___cctor, (MethodInfo * method)); DO_APP_FUNC(0x01122970, void, ValueAnimation_1_StyleValues___ctor, (ValueAnimation_1_StyleValues_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01123D20, void, ValueAnimation_1_StyleValues__CheckNotRecycled, (ValueAnimation_1_StyleValues_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8FA0, ValueAnimation_1_StyleValues__CheckNotRecycled__MethodInfo); DO_APP_FUNC(0x011233F0, ValueAnimation_1_StyleValues_ *, ValueAnimation_1_StyleValues__Create, (VisualElement * e, Func_4_UnityEngine_UIElements_Experimental_StyleValues_UnityEngine_UIElements_Experimental_StyleValues_Single_UnityEngine_UIElements_Experimental_StyleValues_ * interpolator, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6AE8, ValueAnimation_1_StyleValues__Create__MethodInfo); DO_APP_FUNC(0x01123620, ValueAnimation_1_StyleValues_ *, ValueAnimation_1_StyleValues__KeepAlive, (ValueAnimation_1_StyleValues_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE43E8, ValueAnimation_1_StyleValues__KeepAlive__MethodInfo); DO_APP_FUNC(0x01122BB0, void, ValueAnimation_1_StyleValues__Recycle, (ValueAnimation_1_StyleValues_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4458, ValueAnimation_1_StyleValues__Recycle__MethodInfo); DO_APP_FUNC(0x01123200, void, ValueAnimation_1_StyleValues__Register, (ValueAnimation_1_StyleValues_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01123B80, void, ValueAnimation_1_StyleValues__SetDefaultValues, (ValueAnimation_1_StyleValues_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01123290, void, ValueAnimation_1_StyleValues__SetOwner, (ValueAnimation_1_StyleValues_ * __this, VisualElement * e, MethodInfo * method)); DO_APP_FUNC(0x011237E0, void, ValueAnimation_1_StyleValues__Start, (ValueAnimation_1_StyleValues_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01122A70, void, ValueAnimation_1_StyleValues__Stop, (ValueAnimation_1_StyleValues_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4460, ValueAnimation_1_StyleValues__Stop__MethodInfo); DO_APP_FUNC(0x011238C0, void, ValueAnimation_1_StyleValues__UnityEngine_UIElements_Experimental_IValueAnimationUpdate_Tick, (ValueAnimation_1_StyleValues_ * __this, int64_t currentTimeMs, MethodInfo * method)); DO_APP_FUNC(0x01123170, void, ValueAnimation_1_StyleValues__Unregister, (ValueAnimation_1_StyleValues_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00424C90, bool, ValueAnimation_1_StyleValues__get_autoRecycle, (ValueAnimation_1_StyleValues_ * __this, MethodInfo * method)); @@ -194029,10 +213001,12 @@ DO_APP_FUNC(0x01122800, StyleValues, ValueAnimation_1_StyleValues__get_from, (Va DO_APP_FUNC(0x003C7420, Func_2_UnityEngine_UIElements_VisualElement_UnityEngine_UIElements_Experimental_StyleValues_ *, ValueAnimation_1_StyleValues__get_initialValue, (ValueAnimation_1_StyleValues_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7490, Func_4_UnityEngine_UIElements_Experimental_StyleValues_UnityEngine_UIElements_Experimental_StyleValues_Single_UnityEngine_UIElements_Experimental_StyleValues_ *, ValueAnimation_1_StyleValues__get_interpolator, (ValueAnimation_1_StyleValues_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00424C10, bool, ValueAnimation_1_StyleValues__get_isRunning, (ValueAnimation_1_StyleValues_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4448, ValueAnimation_1_StyleValues__get_isRunning__MethodInfo); DO_APP_FUNC(0x003BB330, Action *, ValueAnimation_1_StyleValues__get_onAnimationCompleted, (ValueAnimation_1_StyleValues_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003C7390, VisualElement *, ValueAnimation_1_StyleValues__get_owner, (ValueAnimation_1_StyleValues_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00424CB0, bool, ValueAnimation_1_StyleValues__get_recycled, (ValueAnimation_1_StyleValues_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003C91D0, StyleValues, ValueAnimation_1_StyleValues__get_to, (ValueAnimation_1_StyleValues_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4450, ValueAnimation_1_StyleValues__get_to__MethodInfo); DO_APP_FUNC(0x003CD530, Action_2_UnityEngine_UIElements_VisualElement_UnityEngine_UIElements_Experimental_StyleValues_ *, ValueAnimation_1_StyleValues__get_valueUpdated, (ValueAnimation_1_StyleValues_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00424CA0, void, ValueAnimation_1_StyleValues__set_autoRecycle, (ValueAnimation_1_StyleValues_ * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x011227F0, void, ValueAnimation_1_StyleValues__set_durationMs, (ValueAnimation_1_StyleValues_ * __this, int32_t value, MethodInfo * method)); @@ -194313,15 +213287,21 @@ DO_APP_FUNC(0x01128D80, Object *, Dictionary_2_TKey_TValue_ValueCollection_Syste DO_APP_FUNC(0x01128A00, IEnumerator *, Dictionary_2_TKey_TValue_ValueCollection_System_Int32_Pathfinding_Int3__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_TKey_TValue_ValueCollection_System_Int32_Pathfinding_Int3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010C74D0, int32_t, Dictionary_2_TKey_TValue_ValueCollection_System_Int32_Pathfinding_Int3__get_Count, (Dictionary_2_TKey_TValue_ValueCollection_System_Int32_Pathfinding_Int3_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01128DD0, void, ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Int32___ctor, (ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Int32_ * __this, ADictionary_2_System_Int32_System_Int32_ * param_0000c609, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8F88, ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Int32___ctor__MethodInfo); DO_APP_FUNC(0x01128F20, void, ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Int32__CopyTo, (ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Int32_ * __this, Int32__Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8F98, ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Int32__CopyTo__MethodInfo); DO_APP_FUNC(0x01128E90, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Int32_, ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Int32__GetEnumerator, (ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011290F0, void, ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Int32__System_Collections_Generic_ICollection_TValue__Add, (ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Int32_ * __this, int32_t param_0000c60c, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8F90, ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Int32__System_Collections_Generic_ICollection_TValue__Add__MethodInfo); DO_APP_FUNC(0x01129190, void, ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Int32__System_Collections_Generic_ICollection_TValue__Clear, (ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8F70, ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Int32__System_Collections_Generic_ICollection_TValue__Clear__MethodInfo); DO_APP_FUNC(0x01123FD0, bool, ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Int32__System_Collections_Generic_ICollection_TValue__Contains, (ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Int32_ * __this, int32_t param_0000c60e, MethodInfo * method)); DO_APP_FUNC(0x01129140, bool, ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Int32__System_Collections_Generic_ICollection_TValue__Remove, (ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Int32_ * __this, int32_t param_0000c60d, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8F78, ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Int32__System_Collections_Generic_ICollection_TValue__Remove__MethodInfo); DO_APP_FUNC(0x0041AEF0, bool, ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Int32__System_Collections_Generic_ICollection_TValue__get_IsReadOnly, (ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011291E0, IEnumerator_1_System_Int32_ *, ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Int32__System_Collections_Generic_IEnumerable_TValue__GetEnumerator, (ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011292B0, void, ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Int32__System_Collections_ICollection_CopyTo, (ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Int32_ * __this, Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8F80, ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Int32__System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Int32__System_Collections_ICollection_get_IsSynchronized, (ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01129700, Object *, ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Int32__System_Collections_ICollection_get_SyncRoot, (ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011291E0, IEnumerator *, ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Int32__System_Collections_IEnumerable_GetEnumerator, (ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Int32_ * __this, MethodInfo * method)); @@ -194369,15 +213349,21 @@ DO_APP_FUNC(0x0112A0E0, Object *, Dictionary_2_TKey_TValue_ValueCollection_Syste DO_APP_FUNC(0x01124010, IEnumerator *, Dictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Int64__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Int64_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010C74D0, int32_t, Dictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Int64__get_Count, (Dictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Int64_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0112A130, void, ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object___ctor, (ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object_ * __this, ADictionary_2_System_Int32_System_Object_ * param_0000c609, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8F48, ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object___ctor__MethodInfo); DO_APP_FUNC(0x0112A280, void, ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object__CopyTo, (ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object_ * __this, Object__Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8F58, ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object__CopyTo__MethodInfo); DO_APP_FUNC(0x0112A1F0, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object_, ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object__GetEnumerator, (ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0112A470, void, ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object__System_Collections_Generic_ICollection_TValue__Add, (ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object_ * __this, Object * param_0000c60c, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8F50, ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object__System_Collections_Generic_ICollection_TValue__Add__MethodInfo); DO_APP_FUNC(0x0112A510, void, ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object__System_Collections_Generic_ICollection_TValue__Clear, (ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8F60, ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object__System_Collections_Generic_ICollection_TValue__Clear__MethodInfo); DO_APP_FUNC(0x01123FD0, bool, ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object__System_Collections_Generic_ICollection_TValue__Contains, (ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object_ * __this, Object * param_0000c60e, MethodInfo * method)); DO_APP_FUNC(0x0112A4C0, bool, ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object__System_Collections_Generic_ICollection_TValue__Remove, (ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object_ * __this, Object * param_0000c60d, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8F68, ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object__System_Collections_Generic_ICollection_TValue__Remove__MethodInfo); DO_APP_FUNC(0x0041AEF0, bool, ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object__System_Collections_Generic_ICollection_TValue__get_IsReadOnly, (ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0112A560, IEnumerator_1_System_Object_ *, ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object__System_Collections_Generic_IEnumerable_TValue__GetEnumerator, (ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0112A630, void, ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object__System_Collections_ICollection_CopyTo, (ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object_ * __this, Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8F40, ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object__System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object__System_Collections_ICollection_get_IsSynchronized, (ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0112AA30, Object *, ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object__System_Collections_ICollection_get_SyncRoot, (ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0112A560, IEnumerator *, ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object__System_Collections_IEnumerable_GetEnumerator, (ADictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object_ * __this, MethodInfo * method)); @@ -194397,15 +213383,21 @@ DO_APP_FUNC(0x0112ACE0, Object *, Dictionary_2_TKey_TValue_ValueCollection_Syste DO_APP_FUNC(0x01124010, IEnumerator *, Dictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010C74D0, int32_t, Dictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object__get_Count, (Dictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0112AD30, void, IndexedDictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object___ctor, (IndexedDictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object_ * __this, IndexedDictionary_2_System_Int32_System_Object_ * param_0000c657, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8F18, IndexedDictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object___ctor__MethodInfo); DO_APP_FUNC(0x0112AE30, void, IndexedDictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object__CopyTo, (IndexedDictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object_ * __this, Object__Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8F28, IndexedDictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object__CopyTo__MethodInfo); DO_APP_FUNC(0x0112ADF0, IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_System_Object_, IndexedDictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object__GetEnumerator, (IndexedDictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0112B050, void, IndexedDictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object__System_Collections_Generic_ICollection_TValue__Add, (IndexedDictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object_ * __this, Object * param_0000c65a, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8F20, IndexedDictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object__System_Collections_Generic_ICollection_TValue__Add__MethodInfo); DO_APP_FUNC(0x0112B0F0, void, IndexedDictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object__System_Collections_Generic_ICollection_TValue__Clear, (IndexedDictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8F30, IndexedDictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object__System_Collections_Generic_ICollection_TValue__Clear__MethodInfo); DO_APP_FUNC(0x01123FD0, bool, IndexedDictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object__System_Collections_Generic_ICollection_TValue__Contains, (IndexedDictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object_ * __this, Object * param_0000c65c, MethodInfo * method)); DO_APP_FUNC(0x0112B0A0, bool, IndexedDictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object__System_Collections_Generic_ICollection_TValue__Remove, (IndexedDictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object_ * __this, Object * param_0000c65b, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8F38, IndexedDictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object__System_Collections_Generic_ICollection_TValue__Remove__MethodInfo); DO_APP_FUNC(0x0041AEF0, bool, IndexedDictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object__System_Collections_Generic_ICollection_TValue__get_IsReadOnly, (IndexedDictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0112B140, IEnumerator_1_System_Object_ *, IndexedDictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object__System_Collections_Generic_IEnumerable_TValue__GetEnumerator, (IndexedDictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0112B1C0, void, IndexedDictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object__System_Collections_ICollection_CopyTo, (IndexedDictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object_ * __this, Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8F10, IndexedDictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object__System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, IndexedDictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object__System_Collections_ICollection_get_IsSynchronized, (IndexedDictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0112B5C0, Object *, IndexedDictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object__System_Collections_ICollection_get_SyncRoot, (IndexedDictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0112B140, IEnumerator *, IndexedDictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object__System_Collections_IEnumerable_GetEnumerator, (IndexedDictionary_2_TKey_TValue_ValueCollection_System_Int32_System_Object_ * __this, MethodInfo * method)); @@ -194719,15 +213711,21 @@ DO_APP_FUNC(0x01130800, Object *, Dictionary_2_TKey_TValue_ValueCollection_Syste DO_APP_FUNC(0x01127290, IEnumerator *, Dictionary_2_TKey_TValue_ValueCollection_System_Object_System_Byte__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_TKey_TValue_ValueCollection_System_Object_System_Byte_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010C74D0, int32_t, Dictionary_2_TKey_TValue_ValueCollection_System_Object_System_Byte__get_Count, (Dictionary_2_TKey_TValue_ValueCollection_System_Object_System_Byte_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01130850, void, SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Char___ctor, (SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Char_ * __this, SortedDictionary_2_System_Object_System_Char_ * dictionary, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB038, SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Char___ctor__MethodInfo); DO_APP_FUNC(0x011309E0, void, SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Char__CopyTo, (SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Char_ * __this, Char__Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB040, SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Char__CopyTo__MethodInfo); DO_APP_FUNC(0x01130910, SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Char_, SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Char__GetEnumerator, (SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Char_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01131210, void, SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Char__System_Collections_Generic_ICollection_TValue__Add, (SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Char_ * __this, uint16_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB018, SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Char__System_Collections_Generic_ICollection_TValue__Add__MethodInfo); DO_APP_FUNC(0x01131270, void, SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Char__System_Collections_Generic_ICollection_TValue__Clear, (SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Char_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB030, SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Char__System_Collections_Generic_ICollection_TValue__Clear__MethodInfo); DO_APP_FUNC(0x011312D0, bool, SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Char__System_Collections_Generic_ICollection_TValue__Contains, (SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Char_ * __this, uint16_t item, MethodInfo * method)); DO_APP_FUNC(0x01131320, bool, SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Char__System_Collections_Generic_ICollection_TValue__Remove, (SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Char_ * __this, uint16_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB028, SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Char__System_Collections_Generic_ICollection_TValue__Remove__MethodInfo); DO_APP_FUNC(0x0041AEF0, bool, SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Char__System_Collections_Generic_ICollection_TValue__get_IsReadOnly, (SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Char_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01130950, IEnumerator_1_System_Char_ *, SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Char__System_Collections_Generic_IEnumerable_TValue__GetEnumerator, (SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Char_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01130CB0, void, SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Char__System_Collections_ICollection_CopyTo, (SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Char_ * __this, Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB010, SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Char__System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Char__System_Collections_ICollection_get_IsSynchronized, (SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Char_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01131380, Object *, SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Char__System_Collections_ICollection_get_SyncRoot, (SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Char_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01130950, IEnumerator *, SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Char__System_Collections_IEnumerable_GetEnumerator, (SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Char_ * __this, MethodInfo * method)); @@ -194761,15 +213759,21 @@ DO_APP_FUNC(0x01131B90, Object *, Dictionary_2_TKey_TValue_ValueCollection_Syste DO_APP_FUNC(0x01124BA0, IEnumerator *, Dictionary_2_TKey_TValue_ValueCollection_System_Object_UnityEngine_Color32__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_TKey_TValue_ValueCollection_System_Object_UnityEngine_Color32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010C74D0, int32_t, Dictionary_2_TKey_TValue_ValueCollection_System_Object_UnityEngine_Color32__get_Count, (Dictionary_2_TKey_TValue_ValueCollection_System_Object_UnityEngine_Color32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01131BE0, void, ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32___ctor, (ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32_ * __this, ADictionary_2_System_Object_System_Int32_ * param_0000c609, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBAFE0, ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32___ctor__MethodInfo); DO_APP_FUNC(0x01131CA0, void, ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32__CopyTo, (ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32_ * __this, Int32__Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBAFD8, ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32__CopyTo__MethodInfo); DO_APP_FUNC(0x01128E90, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32_, ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32__GetEnumerator, (ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01131E70, void, ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32__System_Collections_Generic_ICollection_TValue__Add, (ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32_ * __this, int32_t param_0000c60c, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBAFF0, ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32__System_Collections_Generic_ICollection_TValue__Add__MethodInfo); DO_APP_FUNC(0x01131F10, void, ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32__System_Collections_Generic_ICollection_TValue__Clear, (ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBAFF8, ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32__System_Collections_Generic_ICollection_TValue__Clear__MethodInfo); DO_APP_FUNC(0x01123FD0, bool, ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32__System_Collections_Generic_ICollection_TValue__Contains, (ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32_ * __this, int32_t param_0000c60e, MethodInfo * method)); DO_APP_FUNC(0x01131EC0, bool, ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32__System_Collections_Generic_ICollection_TValue__Remove, (ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32_ * __this, int32_t param_0000c60d, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBAFE8, ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32__System_Collections_Generic_ICollection_TValue__Remove__MethodInfo); DO_APP_FUNC(0x0041AEF0, bool, ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32__System_Collections_Generic_ICollection_TValue__get_IsReadOnly, (ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011291E0, IEnumerator_1_System_Int32_ *, ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32__System_Collections_Generic_IEnumerable_TValue__GetEnumerator, (ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01131F60, void, ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32__System_Collections_ICollection_CopyTo, (ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32_ * __this, Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBB000, ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32__System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32__System_Collections_ICollection_get_IsSynchronized, (ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011323A0, Object *, ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32__System_Collections_ICollection_get_SyncRoot, (ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011291E0, IEnumerator *, ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32__System_Collections_IEnumerable_GetEnumerator, (ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32_ * __this, MethodInfo * method)); @@ -194789,15 +213793,21 @@ DO_APP_FUNC(0x01132690, Object *, Dictionary_2_TKey_TValue_ValueCollection_Syste DO_APP_FUNC(0x01124BA0, IEnumerator *, Dictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010C74D0, int32_t, Dictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32__get_Count, (Dictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011326E0, void, ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32Enum___ctor, (ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32Enum_ * __this, ADictionary_2_System_Object_System_Int32Enum_ * param_0000c609, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBAFD0, ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32Enum___ctor__MethodInfo); DO_APP_FUNC(0x011327A0, void, ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32Enum__CopyTo, (ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32Enum_ * __this, Int32Enum__Enum__Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBAFC8, ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32Enum__CopyTo__MethodInfo); DO_APP_FUNC(0x01128E90, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Int32Enum_, ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32Enum__GetEnumerator, (ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01132970, void, ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32Enum__System_Collections_Generic_ICollection_TValue__Add, (ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32Enum_ * __this, Int32Enum__Enum param_0000c60c, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBAFB0, ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32Enum__System_Collections_Generic_ICollection_TValue__Add__MethodInfo); DO_APP_FUNC(0x01132A10, void, ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32Enum__System_Collections_Generic_ICollection_TValue__Clear, (ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBAFB8, ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32Enum__System_Collections_Generic_ICollection_TValue__Clear__MethodInfo); DO_APP_FUNC(0x01123FD0, bool, ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32Enum__System_Collections_Generic_ICollection_TValue__Contains, (ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32Enum_ * __this, Int32Enum__Enum param_0000c60e, MethodInfo * method)); DO_APP_FUNC(0x011329C0, bool, ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32Enum__System_Collections_Generic_ICollection_TValue__Remove, (ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32Enum_ * __this, Int32Enum__Enum param_0000c60d, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBAFA8, ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32Enum__System_Collections_Generic_ICollection_TValue__Remove__MethodInfo); DO_APP_FUNC(0x0041AEF0, bool, ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32Enum__System_Collections_Generic_ICollection_TValue__get_IsReadOnly, (ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011291E0, IEnumerator_1_System_Int32Enum_ *, ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32Enum__System_Collections_Generic_IEnumerable_TValue__GetEnumerator, (ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01132A60, void, ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32Enum__System_Collections_ICollection_CopyTo, (ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32Enum_ * __this, Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBAFC0, ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32Enum__System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32Enum__System_Collections_ICollection_get_IsSynchronized, (ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01132EA0, Object *, ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32Enum__System_Collections_ICollection_get_SyncRoot, (ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011291E0, IEnumerator *, ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32Enum__System_Collections_IEnumerable_GetEnumerator, (ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); @@ -194817,15 +213827,21 @@ DO_APP_FUNC(0x01133190, Object *, Dictionary_2_TKey_TValue_ValueCollection_Syste DO_APP_FUNC(0x01124BA0, IEnumerator *, Dictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32Enum__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010C74D0, int32_t, Dictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32Enum__get_Count, (Dictionary_2_TKey_TValue_ValueCollection_System_Object_System_Int32Enum_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011331E0, void, ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object___ctor, (ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object_ * __this, ADictionary_2_System_Object_System_Object_ * param_0000c609, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBAF90, ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object___ctor__MethodInfo); DO_APP_FUNC(0x011332A0, void, ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object__CopyTo, (ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object_ * __this, Object__Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBAF88, ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object__CopyTo__MethodInfo); DO_APP_FUNC(0x0112A1F0, ADictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object_, ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object__GetEnumerator, (ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01133490, void, ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object__System_Collections_Generic_ICollection_TValue__Add, (ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object_ * __this, Object * param_0000c60c, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBAFA0, ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object__System_Collections_Generic_ICollection_TValue__Add__MethodInfo); DO_APP_FUNC(0x01133530, void, ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object__System_Collections_Generic_ICollection_TValue__Clear, (ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBAF78, ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object__System_Collections_Generic_ICollection_TValue__Clear__MethodInfo); DO_APP_FUNC(0x01123FD0, bool, ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object__System_Collections_Generic_ICollection_TValue__Contains, (ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object_ * __this, Object * param_0000c60e, MethodInfo * method)); DO_APP_FUNC(0x011334E0, bool, ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object__System_Collections_Generic_ICollection_TValue__Remove, (ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object_ * __this, Object * param_0000c60d, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBAF98, ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object__System_Collections_Generic_ICollection_TValue__Remove__MethodInfo); DO_APP_FUNC(0x0041AEF0, bool, ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object__System_Collections_Generic_ICollection_TValue__get_IsReadOnly, (ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0112A560, IEnumerator_1_System_Object_ *, ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object__System_Collections_Generic_IEnumerable_TValue__GetEnumerator, (ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01133580, void, ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object__System_Collections_ICollection_CopyTo, (ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object_ * __this, Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBAF80, ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object__System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object__System_Collections_ICollection_get_IsSynchronized, (ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01133980, Object *, ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object__System_Collections_ICollection_get_SyncRoot, (ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0112A560, IEnumerator *, ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object__System_Collections_IEnumerable_GetEnumerator, (ADictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object_ * __this, MethodInfo * method)); @@ -194845,29 +213861,41 @@ DO_APP_FUNC(0x01133C30, Object *, Dictionary_2_TKey_TValue_ValueCollection_Syste DO_APP_FUNC(0x01124010, IEnumerator *, Dictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010C74D0, int32_t, Dictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object__get_Count, (Dictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01133C80, void, IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object___ctor, (IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object_ * __this, IndexedDictionary_2_System_Object_System_Object_ * param_0000c657, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBAF58, IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object___ctor__MethodInfo); DO_APP_FUNC(0x01133D40, void, IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object__CopyTo, (IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object_ * __this, Object__Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBAF50, IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object__CopyTo__MethodInfo); DO_APP_FUNC(0x0112ADF0, IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object_, IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object__GetEnumerator, (IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01133F60, void, IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object__System_Collections_Generic_ICollection_TValue__Add, (IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object_ * __this, Object * param_0000c65a, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBAF68, IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object__System_Collections_Generic_ICollection_TValue__Add__MethodInfo); DO_APP_FUNC(0x01134000, void, IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object__System_Collections_Generic_ICollection_TValue__Clear, (IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBAF70, IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object__System_Collections_Generic_ICollection_TValue__Clear__MethodInfo); DO_APP_FUNC(0x01123FD0, bool, IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object__System_Collections_Generic_ICollection_TValue__Contains, (IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object_ * __this, Object * param_0000c65c, MethodInfo * method)); DO_APP_FUNC(0x01133FB0, bool, IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object__System_Collections_Generic_ICollection_TValue__Remove, (IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object_ * __this, Object * param_0000c65b, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBAF60, IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object__System_Collections_Generic_ICollection_TValue__Remove__MethodInfo); DO_APP_FUNC(0x0041AEF0, bool, IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object__System_Collections_Generic_ICollection_TValue__get_IsReadOnly, (IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0112B140, IEnumerator_1_System_Object_ *, IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object__System_Collections_Generic_IEnumerable_TValue__GetEnumerator, (IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01134050, void, IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object__System_Collections_ICollection_CopyTo, (IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object_ * __this, Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBAF38, IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object__System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object__System_Collections_ICollection_get_IsSynchronized, (IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01134450, Object *, IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object__System_Collections_ICollection_get_SyncRoot, (IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0112B140, IEnumerator *, IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object__System_Collections_IEnumerable_GetEnumerator, (IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010C74D0, int32_t, IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object__get_Count, (IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011344A0, void, SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object___ctor, (SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object_ * __this, SortedDictionary_2_System_Object_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBAF48, SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object___ctor__MethodInfo); DO_APP_FUNC(0x01134560, void, SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object__CopyTo, (SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object_ * __this, Object__Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBAF40, SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object__CopyTo__MethodInfo); DO_APP_FUNC(0x01130910, SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_System_Object_, SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object__GetEnumerator, (SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01134D50, void, SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object__System_Collections_Generic_ICollection_TValue__Add, (SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object_ * __this, Object * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBAEE8, SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object__System_Collections_Generic_ICollection_TValue__Add__MethodInfo); DO_APP_FUNC(0x01134DB0, void, SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object__System_Collections_Generic_ICollection_TValue__Clear, (SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBAF10, SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object__System_Collections_Generic_ICollection_TValue__Clear__MethodInfo); DO_APP_FUNC(0x011312D0, bool, SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object__System_Collections_Generic_ICollection_TValue__Contains, (SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object_ * __this, Object * item, MethodInfo * method)); DO_APP_FUNC(0x01134E10, bool, SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object__System_Collections_Generic_ICollection_TValue__Remove, (SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object_ * __this, Object * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBAF00, SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object__System_Collections_Generic_ICollection_TValue__Remove__MethodInfo); DO_APP_FUNC(0x0041AEF0, bool, SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object__System_Collections_Generic_ICollection_TValue__get_IsReadOnly, (SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01130950, IEnumerator_1_System_Object_ *, SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object__System_Collections_Generic_IEnumerable_TValue__GetEnumerator, (SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01134830, void, SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object__System_Collections_ICollection_CopyTo, (SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object_ * __this, Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBAEF8, SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object__System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object__System_Collections_ICollection_get_IsSynchronized, (SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01134E70, Object *, SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object__System_Collections_ICollection_get_SyncRoot, (SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01130950, IEnumerator *, SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object__System_Collections_IEnumerable_GetEnumerator, (SortedDictionary_2_TKey_TValue_ValueCollection_System_Object_System_Object_ * __this, MethodInfo * method)); @@ -195125,15 +214153,21 @@ DO_APP_FUNC(0x01139AF0, Object *, Dictionary_2_TKey_TValue_ValueCollection_Syste DO_APP_FUNC(0x01135520, IEnumerator *, Dictionary_2_TKey_TValue_ValueCollection_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_TKey_TValue_ValueCollection_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010C74D0, int32_t, Dictionary_2_TKey_TValue_ValueCollection_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler__get_Count, (Dictionary_2_TKey_TValue_ValueCollection_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01139B40, void, IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___ctor, (IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, IndexedDictionary_2_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * param_0000c657, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBAD00, IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___ctor__MethodInfo); DO_APP_FUNC(0x01139C40, void, IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__CopyTo, (IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBACF8, IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__CopyTo__MethodInfo); DO_APP_FUNC(0x01139C00, IndexedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_, IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__GetEnumerator, (IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01139E80, void, IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_Generic_ICollection_TValue__Add, (IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo param_0000c65a, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBAC88, IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_Generic_ICollection_TValue__Add__MethodInfo); DO_APP_FUNC(0x01139F20, void, IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_Generic_ICollection_TValue__Clear, (IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBACA0, IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_Generic_ICollection_TValue__Clear__MethodInfo); DO_APP_FUNC(0x01126CB0, bool, IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_Generic_ICollection_TValue__Contains, (IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo param_0000c65c, MethodInfo * method)); DO_APP_FUNC(0x01139ED0, bool, IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_Generic_ICollection_TValue__Remove, (IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo param_0000c65b, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBAC80, IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_Generic_ICollection_TValue__Remove__MethodInfo); DO_APP_FUNC(0x0041AEF0, bool, IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_Generic_ICollection_TValue__get_IsReadOnly, (IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01139F70, IEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ *, IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_Generic_IEnumerable_TValue__GetEnumerator, (IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0113A000, void, IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_ICollection_CopyTo, (IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBACB0, IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_ICollection_get_IsSynchronized, (IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0113A430, Object *, IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_ICollection_get_SyncRoot, (IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01139F70, IEnumerator *, IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_IEnumerable_GetEnumerator, (IndexedDictionary_2_TKey_TValue_ValueCollection_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, MethodInfo * method)); @@ -195363,15 +214397,21 @@ DO_APP_FUNC(0x0113DDC0, Object *, Dictionary_2_TKey_TValue_ValueCollection_Syste DO_APP_FUNC(0x01124010, IEnumerator *, Dictionary_2_TKey_TValue_ValueCollection_System_UInt64_System_Object__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_TKey_TValue_ValueCollection_System_UInt64_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010C74D0, int32_t, Dictionary_2_TKey_TValue_ValueCollection_System_UInt64_System_Object__get_Count, (Dictionary_2_TKey_TValue_ValueCollection_System_UInt64_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0113DE10, void, SortedDictionary_2_TKey_TValue_ValueCollection_System_UInt64_System_Object___ctor, (SortedDictionary_2_TKey_TValue_ValueCollection_System_UInt64_System_Object_ * __this, SortedDictionary_2_System_UInt64_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDC58, SortedDictionary_2_TKey_TValue_ValueCollection_System_UInt64_System_Object___ctor__MethodInfo); DO_APP_FUNC(0x0113DED0, void, SortedDictionary_2_TKey_TValue_ValueCollection_System_UInt64_System_Object__CopyTo, (SortedDictionary_2_TKey_TValue_ValueCollection_System_UInt64_System_Object_ * __this, Object__Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDC50, SortedDictionary_2_TKey_TValue_ValueCollection_System_UInt64_System_Object__CopyTo__MethodInfo); DO_APP_FUNC(0x01130910, SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_System_Object_, SortedDictionary_2_TKey_TValue_ValueCollection_System_UInt64_System_Object__GetEnumerator, (SortedDictionary_2_TKey_TValue_ValueCollection_System_UInt64_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0113E6C0, void, SortedDictionary_2_TKey_TValue_ValueCollection_System_UInt64_System_Object__System_Collections_Generic_ICollection_TValue__Add, (SortedDictionary_2_TKey_TValue_ValueCollection_System_UInt64_System_Object_ * __this, Object * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDC28, SortedDictionary_2_TKey_TValue_ValueCollection_System_UInt64_System_Object__System_Collections_Generic_ICollection_TValue__Add__MethodInfo); DO_APP_FUNC(0x0113E720, void, SortedDictionary_2_TKey_TValue_ValueCollection_System_UInt64_System_Object__System_Collections_Generic_ICollection_TValue__Clear, (SortedDictionary_2_TKey_TValue_ValueCollection_System_UInt64_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDC48, SortedDictionary_2_TKey_TValue_ValueCollection_System_UInt64_System_Object__System_Collections_Generic_ICollection_TValue__Clear__MethodInfo); DO_APP_FUNC(0x011312D0, bool, SortedDictionary_2_TKey_TValue_ValueCollection_System_UInt64_System_Object__System_Collections_Generic_ICollection_TValue__Contains, (SortedDictionary_2_TKey_TValue_ValueCollection_System_UInt64_System_Object_ * __this, Object * item, MethodInfo * method)); DO_APP_FUNC(0x0113E780, bool, SortedDictionary_2_TKey_TValue_ValueCollection_System_UInt64_System_Object__System_Collections_Generic_ICollection_TValue__Remove, (SortedDictionary_2_TKey_TValue_ValueCollection_System_UInt64_System_Object_ * __this, Object * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDC40, SortedDictionary_2_TKey_TValue_ValueCollection_System_UInt64_System_Object__System_Collections_Generic_ICollection_TValue__Remove__MethodInfo); DO_APP_FUNC(0x0041AEF0, bool, SortedDictionary_2_TKey_TValue_ValueCollection_System_UInt64_System_Object__System_Collections_Generic_ICollection_TValue__get_IsReadOnly, (SortedDictionary_2_TKey_TValue_ValueCollection_System_UInt64_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01130950, IEnumerator_1_System_Object_ *, SortedDictionary_2_TKey_TValue_ValueCollection_System_UInt64_System_Object__System_Collections_Generic_IEnumerable_TValue__GetEnumerator, (SortedDictionary_2_TKey_TValue_ValueCollection_System_UInt64_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0113E1A0, void, SortedDictionary_2_TKey_TValue_ValueCollection_System_UInt64_System_Object__System_Collections_ICollection_CopyTo, (SortedDictionary_2_TKey_TValue_ValueCollection_System_UInt64_System_Object_ * __this, Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDC38, SortedDictionary_2_TKey_TValue_ValueCollection_System_UInt64_System_Object__System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, SortedDictionary_2_TKey_TValue_ValueCollection_System_UInt64_System_Object__System_Collections_ICollection_get_IsSynchronized, (SortedDictionary_2_TKey_TValue_ValueCollection_System_UInt64_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0113E7E0, Object *, SortedDictionary_2_TKey_TValue_ValueCollection_System_UInt64_System_Object__System_Collections_ICollection_get_SyncRoot, (SortedDictionary_2_TKey_TValue_ValueCollection_System_UInt64_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01130950, IEnumerator *, SortedDictionary_2_TKey_TValue_ValueCollection_System_UInt64_System_Object__System_Collections_IEnumerable_GetEnumerator, (SortedDictionary_2_TKey_TValue_ValueCollection_System_UInt64_System_Object_ * __this, MethodInfo * method)); @@ -195656,17 +214696,23 @@ DO_APP_FUNC(0x0041AF00, bool, Dictionary_2_TKey_TValue_ValueCollection_Placehold DO_APP_FUNC(0x011428F0, Object *, Dictionary_2_TKey_TValue_ValueCollection_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object__System_Collections_ICollection_get_SyncRoot, (Dictionary_2_TKey_TValue_ValueCollection_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01124010, IEnumerator *, Dictionary_2_TKey_TValue_ValueCollection_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object__System_Collections_IEnumerable_GetEnumerator, (Dictionary_2_TKey_TValue_ValueCollection_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010C74D0, int32_t, Dictionary_2_TKey_TValue_ValueCollection_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object__get_Count, (Dictionary_2_TKey_TValue_ValueCollection_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCBE0, void, SortedList_2_TKey_TValue_ValueList_System_Int32_System_ValueTuple_2__2__ctor, (SortedList_2_TKey_TValue_ValueList_System_Int32_System_ValueTuple_2__2 * __this, SortedList_2_System_Int32_System_ValueTuple_2__2 * dictionary, MethodInfo * method)); +DO_APP_FUNC(0x003BCBE0, void, SortedList_2_TKey_TValue_ValueList_System_Int32_System_ValueTuple_2__2__ctor, (SortedList_2_TKey_TValue_ValueList_System_Int32_System_ValueTuple_2__2 * __this, SortedList_2_System_Int32_System_ValueTuple_2__4 * dictionary, MethodInfo * method)); DO_APP_FUNC(0x011429B0, void, SortedList_2_TKey_TValue_ValueList_System_Int32_System_ValueTuple_2__2_Add, (SortedList_2_TKey_TValue_ValueList_System_Int32_System_ValueTuple_2__2 * __this, ValueTuple_2_Object_Int32_ key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDA38, SortedList_2_TKey_TValue_ValueList_System_Int32_System_ValueTuple_2__2_Add__MethodInfo); DO_APP_FUNC(0x01142A10, void, SortedList_2_TKey_TValue_ValueList_System_Int32_System_ValueTuple_2__2_Clear, (SortedList_2_TKey_TValue_ValueList_System_Int32_System_ValueTuple_2__2 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDA58, SortedList_2_TKey_TValue_ValueList_System_Int32_System_ValueTuple_2__2_Clear__MethodInfo); DO_APP_FUNC(0x01142A70, bool, SortedList_2_TKey_TValue_ValueList_System_Int32_System_ValueTuple_2__2_Contains, (SortedList_2_TKey_TValue_ValueList_System_Int32_System_ValueTuple_2__2 * __this, ValueTuple_2_Object_Int32_ value, MethodInfo * method)); DO_APP_FUNC(0x01142AC0, void, SortedList_2_TKey_TValue_ValueList_System_Int32_System_ValueTuple_2__2_CopyTo, (SortedList_2_TKey_TValue_ValueList_System_Int32_System_ValueTuple_2__2 * __this, ValueTuple_2_Object_Int32___Array * array, int32_t arrayIndex, MethodInfo * method)); DO_APP_FUNC(0x01142DD0, IEnumerator_1_System_ValueTuple_2__11 *, SortedList_2_TKey_TValue_ValueList_System_Int32_System_ValueTuple_2__2_GetEnumerator, (SortedList_2_TKey_TValue_ValueList_System_Int32_System_ValueTuple_2__2 * __this, MethodInfo * method)); DO_APP_FUNC(0x01142E50, int32_t, SortedList_2_TKey_TValue_ValueList_System_Int32_System_ValueTuple_2__2_IndexOf, (SortedList_2_TKey_TValue_ValueList_System_Int32_System_ValueTuple_2__2 * __this, ValueTuple_2_Object_Int32_ value, MethodInfo * method)); DO_APP_FUNC(0x01142CB0, void, SortedList_2_TKey_TValue_ValueList_System_Int32_System_ValueTuple_2__2_Insert, (SortedList_2_TKey_TValue_ValueList_System_Int32_System_ValueTuple_2__2 * __this, int32_t index, ValueTuple_2_Object_Int32_ value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDA68, SortedList_2_TKey_TValue_ValueList_System_Int32_System_ValueTuple_2__2_Insert__MethodInfo); DO_APP_FUNC(0x01142F00, bool, SortedList_2_TKey_TValue_ValueList_System_Int32_System_ValueTuple_2__2_Remove, (SortedList_2_TKey_TValue_ValueList_System_Int32_System_ValueTuple_2__2 * __this, ValueTuple_2_Object_Int32_ value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDA78, SortedList_2_TKey_TValue_ValueList_System_Int32_System_ValueTuple_2__2_Remove__MethodInfo); DO_APP_FUNC(0x01142F60, void, SortedList_2_TKey_TValue_ValueList_System_Int32_System_ValueTuple_2__2_RemoveAt, (SortedList_2_TKey_TValue_ValueList_System_Int32_System_ValueTuple_2__2 * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDA70, SortedList_2_TKey_TValue_ValueList_System_Int32_System_ValueTuple_2__2_RemoveAt__MethodInfo); DO_APP_FUNC(0x01142B40, void, SortedList_2_TKey_TValue_ValueList_System_Int32_System_ValueTuple_2__2_System_Collections_ICollection_CopyTo, (SortedList_2_TKey_TValue_ValueList_System_Int32_System_ValueTuple_2__2 * __this, Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDA48, SortedList_2_TKey_TValue_ValueList_System_Int32_System_ValueTuple_2__2_System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, SortedList_2_TKey_TValue_ValueList_System_Int32_System_ValueTuple_2__2_System_Collections_ICollection_get_IsSynchronized, (SortedList_2_TKey_TValue_ValueList_System_Int32_System_ValueTuple_2__2 * __this, MethodInfo * method)); DO_APP_FUNC(0x01142960, Object *, SortedList_2_TKey_TValue_ValueList_System_Int32_System_ValueTuple_2__2_System_Collections_ICollection_get_SyncRoot, (SortedList_2_TKey_TValue_ValueList_System_Int32_System_ValueTuple_2__2 * __this, MethodInfo * method)); DO_APP_FUNC(0x01142DD0, IEnumerator *, SortedList_2_TKey_TValue_ValueList_System_Int32_System_ValueTuple_2__2_System_Collections_IEnumerable_GetEnumerator, (SortedList_2_TKey_TValue_ValueList_System_Int32_System_ValueTuple_2__2 * __this, MethodInfo * method)); @@ -195674,17 +214720,24 @@ DO_APP_FUNC(0x01142940, int32_t, SortedList_2_TKey_TValue_ValueList_System_Int32 DO_APP_FUNC(0x0041AEF0, bool, SortedList_2_TKey_TValue_ValueList_System_Int32_System_ValueTuple_2__2_get_IsReadOnly, (SortedList_2_TKey_TValue_ValueList_System_Int32_System_ValueTuple_2__2 * __this, MethodInfo * method)); DO_APP_FUNC(0x01142D10, ValueTuple_2_Object_Int32_, SortedList_2_TKey_TValue_ValueList_System_Int32_System_ValueTuple_2__2_get_Item, (SortedList_2_TKey_TValue_ValueList_System_Int32_System_ValueTuple_2__2 * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01142D70, void, SortedList_2_TKey_TValue_ValueList_System_Int32_System_ValueTuple_2__2_set_Item, (SortedList_2_TKey_TValue_ValueList_System_Int32_System_ValueTuple_2__2 * __this, int32_t index, ValueTuple_2_Object_Int32_ value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDA60, SortedList_2_TKey_TValue_ValueList_System_Int32_System_ValueTuple_2__2_set_Item__MethodInfo); DO_APP_FUNC(0x003BCBE0, void, SortedList_2_TKey_TValue_ValueList_System_Object_System_Object___ctor, (SortedList_2_TKey_TValue_ValueList_System_Object_System_Object_ * __this, SortedList_2_System_Object_System_Object_ * dictionary, MethodInfo * method)); DO_APP_FUNC(0x01143010, void, SortedList_2_TKey_TValue_ValueList_System_Object_System_Object__Add, (SortedList_2_TKey_TValue_ValueList_System_Object_System_Object_ * __this, Object * key, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDA08, SortedList_2_TKey_TValue_ValueList_System_Object_System_Object__Add__MethodInfo); DO_APP_FUNC(0x01143070, void, SortedList_2_TKey_TValue_ValueList_System_Object_System_Object__Clear, (SortedList_2_TKey_TValue_ValueList_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD9F8, SortedList_2_TKey_TValue_ValueList_System_Object_System_Object__Clear__MethodInfo); DO_APP_FUNC(0x011430D0, bool, SortedList_2_TKey_TValue_ValueList_System_Object_System_Object__Contains, (SortedList_2_TKey_TValue_ValueList_System_Object_System_Object_ * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01142AC0, void, SortedList_2_TKey_TValue_ValueList_System_Object_System_Object__CopyTo, (SortedList_2_TKey_TValue_ValueList_System_Object_System_Object_ * __this, Object__Array * array, int32_t arrayIndex, MethodInfo * method)); DO_APP_FUNC(0x01142DD0, IEnumerator_1_System_Object_ *, SortedList_2_TKey_TValue_ValueList_System_Object_System_Object__GetEnumerator, (SortedList_2_TKey_TValue_ValueList_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01143380, int32_t, SortedList_2_TKey_TValue_ValueList_System_Object_System_Object__IndexOf, (SortedList_2_TKey_TValue_ValueList_System_Object_System_Object_ * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x01143280, void, SortedList_2_TKey_TValue_ValueList_System_Object_System_Object__Insert, (SortedList_2_TKey_TValue_ValueList_System_Object_System_Object_ * __this, int32_t index, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDA10, SortedList_2_TKey_TValue_ValueList_System_Object_System_Object__Insert__MethodInfo); DO_APP_FUNC(0x01143420, bool, SortedList_2_TKey_TValue_ValueList_System_Object_System_Object__Remove, (SortedList_2_TKey_TValue_ValueList_System_Object_System_Object_ * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDA28, SortedList_2_TKey_TValue_ValueList_System_Object_System_Object__Remove__MethodInfo); DO_APP_FUNC(0x01143480, void, SortedList_2_TKey_TValue_ValueList_System_Object_System_Object__RemoveAt, (SortedList_2_TKey_TValue_ValueList_System_Object_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD9C0, SortedList_2_TKey_TValue_ValueList_System_Object_System_Object__RemoveAt__MethodInfo); DO_APP_FUNC(0x01143110, void, SortedList_2_TKey_TValue_ValueList_System_Object_System_Object__System_Collections_ICollection_CopyTo, (SortedList_2_TKey_TValue_ValueList_System_Object_System_Object_ * __this, Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDA18, SortedList_2_TKey_TValue_ValueList_System_Object_System_Object__System_Collections_ICollection_CopyTo__MethodInfo); DO_APP_FUNC(0x0041AF00, bool, SortedList_2_TKey_TValue_ValueList_System_Object_System_Object__System_Collections_ICollection_get_IsSynchronized, (SortedList_2_TKey_TValue_ValueList_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01142FC0, Object *, SortedList_2_TKey_TValue_ValueList_System_Object_System_Object__System_Collections_ICollection_get_SyncRoot, (SortedList_2_TKey_TValue_ValueList_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01142DD0, IEnumerator *, SortedList_2_TKey_TValue_ValueList_System_Object_System_Object__System_Collections_IEnumerable_GetEnumerator, (SortedList_2_TKey_TValue_ValueList_System_Object_System_Object_ * __this, MethodInfo * method)); @@ -195692,563 +214745,659 @@ DO_APP_FUNC(0x01142940, int32_t, SortedList_2_TKey_TValue_ValueList_System_Objec DO_APP_FUNC(0x0041AEF0, bool, SortedList_2_TKey_TValue_ValueList_System_Object_System_Object__get_IsReadOnly, (SortedList_2_TKey_TValue_ValueList_System_Object_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011432E0, Object *, SortedList_2_TKey_TValue_ValueList_System_Object_System_Object__get_Item, (SortedList_2_TKey_TValue_ValueList_System_Object_System_Object_ * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x01143320, void, SortedList_2_TKey_TValue_ValueList_System_Object_System_Object__set_Item, (SortedList_2_TKey_TValue_ValueList_System_Object_System_Object_ * __this, int32_t index, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x011434E0, void, ValueListBuilder_1_System_Int32__1__ctor, (ValueListBuilder_1_System_Int32__1__Boxed * __this, Span_1_Int32_ initialSpan, MethodInfo * method)); -DO_APP_FUNC(0x01143510, void, ValueListBuilder_1_System_Int32__1_Append, (ValueListBuilder_1_System_Int32__1__Boxed * __this, int32_t item, MethodInfo * method)); -DO_APP_FUNC(0x011435A0, ReadOnlySpan_1_Int32_, ValueListBuilder_1_System_Int32__1_AsSpan, (ValueListBuilder_1_System_Int32__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x011436A0, void, ValueListBuilder_1_System_Int32__1_Dispose, (ValueListBuilder_1_System_Int32__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01143790, void, ValueListBuilder_1_System_Int32__1_Grow, (ValueListBuilder_1_System_Int32__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01143A30, int32_t, ValueListBuilder_1_System_Int32__1_Pop, (ValueListBuilder_1_System_Int32__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x011434F0, int32_t, ValueListBuilder_1_System_Int32__1_get_Item, (ValueListBuilder_1_System_Int32__1__Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x003BC2E0, int32_t, ValueListBuilder_1_System_Int32__1_get_Length, (ValueListBuilder_1_System_Int32__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x011434E0, void, ValueListBuilder_1_System_Int32___ctor, (ValueListBuilder_1_System_Int32___Boxed * __this, Span_1_Int32_ initialSpan, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDA30, SortedList_2_TKey_TValue_ValueList_System_Object_System_Object__set_Item__MethodInfo); +DO_APP_FUNC(0x011434E0, void, ValueListBuilder_1_System_Int32__2__ctor, (ValueListBuilder_1_System_Int32__2 * __this, Span_1_Int32_ initialSpan, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1A98, ValueListBuilder_1_System_Int32__2__ctor__MethodInfo); +DO_APP_FUNC(0x01143510, void, ValueListBuilder_1_System_Int32__2_Append, (ValueListBuilder_1_System_Int32__2 * __this, int32_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1A80, ValueListBuilder_1_System_Int32__2_Append__MethodInfo); +DO_APP_FUNC(0x011435A0, ReadOnlySpan_1_Int32_, ValueListBuilder_1_System_Int32__2_AsSpan, (ValueListBuilder_1_System_Int32__2 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1740, ValueListBuilder_1_System_Int32__2_AsSpan__MethodInfo); +DO_APP_FUNC(0x011436A0, void, ValueListBuilder_1_System_Int32__2_Dispose, (ValueListBuilder_1_System_Int32__2 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF19E8, ValueListBuilder_1_System_Int32__2_Dispose__MethodInfo); +DO_APP_FUNC(0x01143790, void, ValueListBuilder_1_System_Int32__2_Grow, (ValueListBuilder_1_System_Int32__2 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01143A30, int32_t, ValueListBuilder_1_System_Int32__2_Pop, (ValueListBuilder_1_System_Int32__2 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1A00, ValueListBuilder_1_System_Int32__2_Pop__MethodInfo); +DO_APP_FUNC(0x011434F0, int32_t *, ValueListBuilder_1_System_Int32__2_get_Item, (ValueListBuilder_1_System_Int32__2 * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1738, ValueListBuilder_1_System_Int32__2_get_Item__MethodInfo); +DO_APP_FUNC(0x003BC2E0, int32_t, ValueListBuilder_1_System_Int32__2_get_Length, (ValueListBuilder_1_System_Int32__2 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF1A88, ValueListBuilder_1_System_Int32__2_get_Length__MethodInfo); +DO_APP_FUNC(0x011434E0, void, ValueListBuilder_1_System_Int32___ctor, (ValueListBuilder_1_System_Int32_ * __this, Span_1_Int32_ initialSpan, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C96108, ValueListBuilder_1_System_Int32___ctor__MethodInfo); -DO_APP_FUNC(0x01143510, void, ValueListBuilder_1_System_Int32__Append, (ValueListBuilder_1_System_Int32___Boxed * __this, int32_t item, MethodInfo * method)); +DO_APP_FUNC(0x01143510, void, ValueListBuilder_1_System_Int32__Append, (ValueListBuilder_1_System_Int32_ * __this, int32_t item, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C961B8, ValueListBuilder_1_System_Int32__Append__MethodInfo); -DO_APP_FUNC(0x011435A0, ReadOnlySpan_1_Int32_, ValueListBuilder_1_System_Int32__AsSpan, (ValueListBuilder_1_System_Int32___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x011435A0, ReadOnlySpan_1_Int32_, ValueListBuilder_1_System_Int32__AsSpan, (ValueListBuilder_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C961C0, ValueListBuilder_1_System_Int32__AsSpan__MethodInfo); -DO_APP_FUNC(0x011436A0, void, ValueListBuilder_1_System_Int32__Dispose, (ValueListBuilder_1_System_Int32___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x011436A0, void, ValueListBuilder_1_System_Int32__Dispose, (ValueListBuilder_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C96100, ValueListBuilder_1_System_Int32__Dispose__MethodInfo); -DO_APP_FUNC(0x01143790, void, ValueListBuilder_1_System_Int32__Grow, (ValueListBuilder_1_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC2E0, int32_t, ValueListBuilder_1_System_Int32__get_Length, (ValueListBuilder_1_System_Int32___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01143790, void, ValueListBuilder_1_System_Int32__Grow, (ValueListBuilder_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC2E0, int32_t, ValueListBuilder_1_System_Int32__get_Length, (ValueListBuilder_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C96110, ValueListBuilder_1_System_Int32__get_Length__MethodInfo); -DO_APP_FUNC(0x011434E0, void, ValueListBuilder_1_System_Object___ctor, (ValueListBuilder_1_System_Object___Boxed * __this, Span_1_Object_ initialSpan, MethodInfo * method)); -DO_APP_FUNC(0x01143A80, void, ValueListBuilder_1_System_Object__Append, (ValueListBuilder_1_System_Object___Boxed * __this, Object * item, MethodInfo * method)); -DO_APP_FUNC(0x011435A0, ReadOnlySpan_1_Object_, ValueListBuilder_1_System_Object__AsSpan, (ValueListBuilder_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x011436A0, void, ValueListBuilder_1_System_Object__Dispose, (ValueListBuilder_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01143790, void, ValueListBuilder_1_System_Object__Grow, (ValueListBuilder_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01143B60, Object *, ValueListBuilder_1_System_Object__Pop, (ValueListBuilder_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01143A60, Object *, ValueListBuilder_1_System_Object__get_Item, (ValueListBuilder_1_System_Object___Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x003BC2E0, int32_t, ValueListBuilder_1_System_Object__get_Length, (ValueListBuilder_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x011434E0, void, ValueListBuilder_1_System_Object__1__ctor, (ValueListBuilder_1_System_Object__1__Boxed * __this, Span_1_Object_ initialSpan, MethodInfo * method)); -DO_APP_FUNC(0x01143A80, void, ValueListBuilder_1_System_Object__1_Append, (ValueListBuilder_1_System_Object__1__Boxed * __this, Object * item, MethodInfo * method)); -DO_APP_FUNC(0x011435A0, ReadOnlySpan_1_Object_, ValueListBuilder_1_System_Object__1_AsSpan, (ValueListBuilder_1_System_Object__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x011436A0, void, ValueListBuilder_1_System_Object__1_Dispose, (ValueListBuilder_1_System_Object__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01143790, void, ValueListBuilder_1_System_Object__1_Grow, (ValueListBuilder_1_System_Object__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC2E0, int32_t, ValueListBuilder_1_System_Object__1_get_Length, (ValueListBuilder_1_System_Object__1__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01143B90, void, ValueTaskAwaiter_1_System_Int32___ctor, (ValueTaskAwaiter_1_System_Int32___Boxed * __this, ValueTask_1_System_Int32_ value, MethodInfo * method)); -DO_APP_FUNC(0x01143C30, int32_t, ValueTaskAwaiter_1_System_Int32__GetResult, (ValueTaskAwaiter_1_System_Int32___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x011434E0, void, ValueListBuilder_1_System_Object___ctor, (ValueListBuilder_1_System_Object_ * __this, Span_1_Object_ initialSpan, MethodInfo * method)); +DO_APP_FUNC(0x01143A80, void, ValueListBuilder_1_System_Object__Append, (ValueListBuilder_1_System_Object_ * __this, Object * item, MethodInfo * method)); +DO_APP_FUNC(0x011435A0, ReadOnlySpan_1_Object_, ValueListBuilder_1_System_Object__AsSpan, (ValueListBuilder_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x011436A0, void, ValueListBuilder_1_System_Object__Dispose, (ValueListBuilder_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01143790, void, ValueListBuilder_1_System_Object__Grow, (ValueListBuilder_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01143B60, Object *, ValueListBuilder_1_System_Object__Pop, (ValueListBuilder_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01143A60, Object * *, ValueListBuilder_1_System_Object__get_Item, (ValueListBuilder_1_System_Object_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x003BC2E0, int32_t, ValueListBuilder_1_System_Object__get_Length, (ValueListBuilder_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x011434E0, void, ValueListBuilder_1_System_Object__1__ctor, (ValueListBuilder_1_System_Object__1 * __this, Span_1_Object_ initialSpan, MethodInfo * method)); +DO_APP_FUNC(0x01143A80, void, ValueListBuilder_1_System_Object__1_Append, (ValueListBuilder_1_System_Object__1 * __this, Object * item, MethodInfo * method)); +DO_APP_FUNC(0x011435A0, ReadOnlySpan_1_Object_, ValueListBuilder_1_System_Object__1_AsSpan, (ValueListBuilder_1_System_Object__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x011436A0, void, ValueListBuilder_1_System_Object__1_Dispose, (ValueListBuilder_1_System_Object__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01143790, void, ValueListBuilder_1_System_Object__1_Grow, (ValueListBuilder_1_System_Object__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC2E0, int32_t, ValueListBuilder_1_System_Object__1_get_Length, (ValueListBuilder_1_System_Object__1 * __this, MethodInfo * method)); +DO_APP_FUNC(0x01143B90, void, ValueTaskAwaiter_1_System_Int32___ctor, (ValueTaskAwaiter_1_System_Int32_ * __this, ValueTask_1_System_Int32_ value, MethodInfo * method)); +DO_APP_FUNC(0x01143C30, int32_t, ValueTaskAwaiter_1_System_Int32__GetResult, (ValueTaskAwaiter_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C99968, ValueTaskAwaiter_1_System_Int32__GetResult__MethodInfo); -DO_APP_FUNC(0x01143C70, void, ValueTaskAwaiter_1_System_Int32__UnsafeOnCompleted, (ValueTaskAwaiter_1_System_Int32___Boxed * __this, Action * continuation, MethodInfo * method)); -DO_APP_FUNC(0x01143BF0, bool, ValueTaskAwaiter_1_System_Int32__get_IsCompleted, (ValueTaskAwaiter_1_System_Int32___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01143C70, void, ValueTaskAwaiter_1_System_Int32__UnsafeOnCompleted, (ValueTaskAwaiter_1_System_Int32_ * __this, Action * continuation, MethodInfo * method)); +DO_APP_FUNC(0x01143BF0, bool, ValueTaskAwaiter_1_System_Int32__get_IsCompleted, (ValueTaskAwaiter_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C99890, ValueTaskAwaiter_1_System_Int32__get_IsCompleted__MethodInfo); -DO_APP_FUNC(0x01143F60, void, ValueTaskAwaiter_1_System_Object___ctor, (ValueTaskAwaiter_1_System_Object___Boxed * __this, ValueTask_1_System_Object_ value, MethodInfo * method)); -DO_APP_FUNC(0x01144000, Object *, ValueTaskAwaiter_1_System_Object__GetResult, (ValueTaskAwaiter_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01144040, void, ValueTaskAwaiter_1_System_Object__UnsafeOnCompleted, (ValueTaskAwaiter_1_System_Object___Boxed * __this, Action * continuation, MethodInfo * method)); -DO_APP_FUNC(0x01143FC0, bool, ValueTaskAwaiter_1_System_Object__get_IsCompleted, (ValueTaskAwaiter_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01143F60, void, ValueTaskAwaiter_1_System_Net_WebSockets_ValueWebSocketReceiveResult___ctor, (ValueTaskAwaiter_1_System_Net_WebSockets_ValueWebSocketReceiveResult___Boxed * __this, ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ value, MethodInfo * method)); -DO_APP_FUNC(0x01144330, ValueWebSocketReceiveResult, ValueTaskAwaiter_1_System_Net_WebSockets_ValueWebSocketReceiveResult__GetResult, (ValueTaskAwaiter_1_System_Net_WebSockets_ValueWebSocketReceiveResult___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01144370, void, ValueTaskAwaiter_1_System_Net_WebSockets_ValueWebSocketReceiveResult__UnsafeOnCompleted, (ValueTaskAwaiter_1_System_Net_WebSockets_ValueWebSocketReceiveResult___Boxed * __this, Action * continuation, MethodInfo * method)); -DO_APP_FUNC(0x01143FC0, bool, ValueTaskAwaiter_1_System_Net_WebSockets_ValueWebSocketReceiveResult__get_IsCompleted, (ValueTaskAwaiter_1_System_Net_WebSockets_ValueWebSocketReceiveResult___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01143F60, void, ValueTaskAwaiter_1_System_Object___ctor, (ValueTaskAwaiter_1_System_Object_ * __this, ValueTask_1_System_Object_ value, MethodInfo * method)); +DO_APP_FUNC(0x01144000, Object *, ValueTaskAwaiter_1_System_Object__GetResult, (ValueTaskAwaiter_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01144040, void, ValueTaskAwaiter_1_System_Object__UnsafeOnCompleted, (ValueTaskAwaiter_1_System_Object_ * __this, Action * continuation, MethodInfo * method)); +DO_APP_FUNC(0x01143FC0, bool, ValueTaskAwaiter_1_System_Object__get_IsCompleted, (ValueTaskAwaiter_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01143F60, void, ValueTaskAwaiter_1_System_Net_WebSockets_ValueWebSocketReceiveResult___ctor, (ValueTaskAwaiter_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ value, MethodInfo * method)); +DO_APP_FUNC(0x01144330, ValueWebSocketReceiveResult, ValueTaskAwaiter_1_System_Net_WebSockets_ValueWebSocketReceiveResult__GetResult, (ValueTaskAwaiter_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01144370, void, ValueTaskAwaiter_1_System_Net_WebSockets_ValueWebSocketReceiveResult__UnsafeOnCompleted, (ValueTaskAwaiter_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, Action * continuation, MethodInfo * method)); +DO_APP_FUNC(0x01143FC0, bool, ValueTaskAwaiter_1_System_Net_WebSockets_ValueWebSocketReceiveResult__get_IsCompleted, (ValueTaskAwaiter_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011447B0, void, ValueTask_1_TResult_ValueTaskSourceAsTask_System_Int32___cctor, (MethodInfo * method)); DO_APP_FUNC(0x01144660, void, ValueTask_1_TResult_ValueTaskSourceAsTask_System_Int32___ctor, (ValueTask_1_TResult_ValueTaskSourceAsTask_System_Int32_ * __this, IValueTaskSource_1_System_Int32_ * source, int16_t token, MethodInfo * method)); DO_APP_FUNC(0x01144980, void, ValueTask_1_TResult_ValueTaskSourceAsTask_System_Object___cctor, (MethodInfo * method)); DO_APP_FUNC(0x01144660, void, ValueTask_1_TResult_ValueTaskSourceAsTask_System_Object___ctor, (ValueTask_1_TResult_ValueTaskSourceAsTask_System_Object_ * __this, IValueTaskSource_1_System_Object_ * source, int16_t token, MethodInfo * method)); DO_APP_FUNC(0x01144B50, void, ValueTask_1_TResult_ValueTaskSourceAsTask_System_Net_WebSockets_ValueWebSocketReceiveResult___cctor, (MethodInfo * method)); DO_APP_FUNC(0x01144660, void, ValueTask_1_TResult_ValueTaskSourceAsTask_System_Net_WebSockets_ValueWebSocketReceiveResult___ctor, (ValueTask_1_TResult_ValueTaskSourceAsTask_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, IValueTaskSource_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * source, int16_t token, MethodInfo * method)); -DO_APP_FUNC(0x01144D20, void, ValueTask_1_System_Int32___ctor, (ValueTask_1_System_Int32___Boxed * __this, int32_t result, MethodInfo * method)); -DO_APP_FUNC(0x01144D80, void, ValueTask_1_System_Int32___ctor_1, (ValueTask_1_System_Int32___Boxed * __this, Task_1_System_Int32_ * task, MethodInfo * method)); -DO_APP_FUNC(0x01144E00, void, ValueTask_1_System_Int32___ctor_2, (ValueTask_1_System_Int32___Boxed * __this, IValueTaskSource_1_System_Int32_ * source, int16_t token, MethodInfo * method)); -DO_APP_FUNC(0x01144E80, void, ValueTask_1_System_Int32___ctor_3, (ValueTask_1_System_Int32___Boxed * __this, Object * obj, int32_t result, int16_t token, bool continueOnCapturedContext, MethodInfo * method)); -DO_APP_FUNC(0x01145150, Task_1_System_Int32_ *, ValueTask_1_System_Int32__AsTask, (ValueTask_1_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01145AD0, ConfiguredValueTaskAwaitable_1_System_Int32_, ValueTask_1_System_Int32__ConfigureAwait, (ValueTask_1_System_Int32___Boxed * __this, bool continueOnCapturedContext, MethodInfo * method)); -DO_APP_FUNC(0x01145060, bool, ValueTask_1_System_Int32__Equals, (ValueTask_1_System_Int32___Boxed * __this, ValueTask_1_System_Int32_ other, MethodInfo * method)); -DO_APP_FUNC(0x01144F40, bool, ValueTask_1_System_Int32__Equals_1, (ValueTask_1_System_Int32___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x01145A50, ValueTaskAwaiter_1_System_Int32_, ValueTask_1_System_Int32__GetAwaiter, (ValueTask_1_System_Int32___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01144D20, void, ValueTask_1_System_Int32___ctor, (ValueTask_1_System_Int32_ * __this, int32_t result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEF68, ValueTask_1_System_Int32___ctor__MethodInfo); +DO_APP_FUNC(0x01144D80, void, ValueTask_1_System_Int32___ctor_1, (ValueTask_1_System_Int32_ * __this, Task_1_System_Int32_ * task, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEF60, ValueTask_1_System_Int32___ctor_1__MethodInfo); +DO_APP_FUNC(0x01144E00, void, ValueTask_1_System_Int32___ctor_2, (ValueTask_1_System_Int32_ * __this, IValueTaskSource_1_System_Int32_ * source, int16_t token, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23468, ValueTask_1_System_Int32___ctor_2__MethodInfo); +DO_APP_FUNC(0x01144E80, void, ValueTask_1_System_Int32___ctor_3, (ValueTask_1_System_Int32_ * __this, Object * obj, int32_t result, int16_t token, bool continueOnCapturedContext, MethodInfo * method)); +DO_APP_FUNC(0x01145150, Task_1_System_Int32_ *, ValueTask_1_System_Int32__AsTask, (ValueTask_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EEF0, ValueTask_1_System_Int32__AsTask__MethodInfo); +DO_APP_FUNC(0x01145AD0, ConfiguredValueTaskAwaitable_1_System_Int32_, ValueTask_1_System_Int32__ConfigureAwait, (ValueTask_1_System_Int32_ * __this, bool continueOnCapturedContext, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1FB70, ValueTask_1_System_Int32__ConfigureAwait__MethodInfo); +DO_APP_FUNC(0x01145060, bool, ValueTask_1_System_Int32__Equals, (ValueTask_1_System_Int32_ * __this, ValueTask_1_System_Int32_ other, MethodInfo * method)); +DO_APP_FUNC(0x01144F40, bool, ValueTask_1_System_Int32__Equals_1, (ValueTask_1_System_Int32_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x01145A50, ValueTaskAwaiter_1_System_Int32_, ValueTask_1_System_Int32__GetAwaiter, (ValueTask_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C99898, ValueTask_1_System_Int32__GetAwaiter__MethodInfo); -DO_APP_FUNC(0x01144EF0, int32_t, ValueTask_1_System_Int32__GetHashCode, (ValueTask_1_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x011452B0, Task_1_System_Int32_ *, ValueTask_1_System_Int32__GetTaskForValueTaskSource, (ValueTask_1_System_Int32___Boxed * __this, IValueTaskSource_1_System_Int32_ * t, MethodInfo * method)); -DO_APP_FUNC(0x01145C20, String *, ValueTask_1_System_Int32__ToString, (ValueTask_1_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01145840, bool, ValueTask_1_System_Int32__get_IsCompleted, (ValueTask_1_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01145940, bool, ValueTask_1_System_Int32__get_IsCompletedSuccessfully, (ValueTask_1_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FAFE30, int32_t, ValueTask_1_System_Int32__get_Result, (ValueTask_1_System_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01145D70, void, ValueTask_1_System_Object___ctor, (ValueTask_1_System_Object___Boxed * __this, Object * result, MethodInfo * method)); -DO_APP_FUNC(0x01145E30, void, ValueTask_1_System_Object___ctor_1, (ValueTask_1_System_Object___Boxed * __this, Task_1_System_Object_ * task, MethodInfo * method)); -DO_APP_FUNC(0x01145EB0, void, ValueTask_1_System_Object___ctor_2, (ValueTask_1_System_Object___Boxed * __this, IValueTaskSource_1_System_Object_ * source, int16_t token, MethodInfo * method)); -DO_APP_FUNC(0x01145F30, void, ValueTask_1_System_Object___ctor_3, (ValueTask_1_System_Object___Boxed * __this, Object * obj, Object * result, int16_t token, bool continueOnCapturedContext, MethodInfo * method)); -DO_APP_FUNC(0x01146250, Task_1_System_Object_ *, ValueTask_1_System_Object__AsTask, (ValueTask_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01146F80, ConfiguredValueTaskAwaitable_1_System_Object_, ValueTask_1_System_Object__ConfigureAwait, (ValueTask_1_System_Object___Boxed * __this, bool continueOnCapturedContext, MethodInfo * method)); -DO_APP_FUNC(0x01146140, bool, ValueTask_1_System_Object__Equals, (ValueTask_1_System_Object___Boxed * __this, ValueTask_1_System_Object_ other, MethodInfo * method)); -DO_APP_FUNC(0x01146020, bool, ValueTask_1_System_Object__Equals_1, (ValueTask_1_System_Object___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x01146EE0, ValueTaskAwaiter_1_System_Object_, ValueTask_1_System_Object__GetAwaiter, (ValueTask_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01145FF0, int32_t, ValueTask_1_System_Object__GetHashCode, (ValueTask_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x011463C0, Task_1_System_Object_ *, ValueTask_1_System_Object__GetTaskForValueTaskSource, (ValueTask_1_System_Object___Boxed * __this, IValueTaskSource_1_System_Object_ * t, MethodInfo * method)); -DO_APP_FUNC(0x01147080, String *, ValueTask_1_System_Object__ToString, (ValueTask_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01146960, bool, ValueTask_1_System_Object__get_IsCompleted, (ValueTask_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01146A60, bool, ValueTask_1_System_Object__get_IsCompletedSuccessfully, (ValueTask_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01146B70, Object *, ValueTask_1_System_Object__get_Result, (ValueTask_1_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01147150, void, ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult___ctor, (ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult___Boxed * __this, ValueWebSocketReceiveResult result, MethodInfo * method)); -DO_APP_FUNC(0x01145E30, void, ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult___ctor_1, (ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult___Boxed * __this, Task_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * task, MethodInfo * method)); -DO_APP_FUNC(0x01145EB0, void, ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult___ctor_2, (ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult___Boxed * __this, IValueTaskSource_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * source, int16_t token, MethodInfo * method)); -DO_APP_FUNC(0x011471B0, void, ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult___ctor_3, (ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult___Boxed * __this, Object * obj, ValueWebSocketReceiveResult result, int16_t token, bool continueOnCapturedContext, MethodInfo * method)); -DO_APP_FUNC(0x01147550, Task_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ *, ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult__AsTask, (ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01147FB0, ConfiguredValueTaskAwaitable_1_System_Net_WebSockets_ValueWebSocketReceiveResult_, ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult__ConfigureAwait, (ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult___Boxed * __this, bool continueOnCapturedContext, MethodInfo * method)); -DO_APP_FUNC(0x01147440, bool, ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult__Equals, (ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult___Boxed * __this, ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ other, MethodInfo * method)); -DO_APP_FUNC(0x01147320, bool, ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult__Equals_1, (ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x01146EE0, ValueTaskAwaiter_1_System_Net_WebSockets_ValueWebSocketReceiveResult_, ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult__GetAwaiter, (ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01147220, int32_t, ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult__GetHashCode, (ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x011476C0, Task_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ *, ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult__GetTaskForValueTaskSource, (ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult___Boxed * __this, IValueTaskSource_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * t, MethodInfo * method)); -DO_APP_FUNC(0x01148110, String *, ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult__ToString, (ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01146960, bool, ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult__get_IsCompleted, (ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01146A60, bool, ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult__get_IsCompletedSuccessfully, (ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01147C50, ValueWebSocketReceiveResult, ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult__get_Result, (ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00C3C200, void, ValueTuple_1_Boolean___ctor, (ValueTuple_1_Boolean___Boxed * __this, bool item1, MethodInfo * method)); -DO_APP_FUNC(0x011487B0, int32_t, ValueTuple_1_Boolean__CompareTo, (ValueTuple_1_Boolean___Boxed * __this, ValueTuple_1_Boolean_ other, MethodInfo * method)); -DO_APP_FUNC(0x01148330, bool, ValueTuple_1_Boolean__Equals, (ValueTuple_1_Boolean___Boxed * __this, ValueTuple_1_Boolean_ other, MethodInfo * method)); -DO_APP_FUNC(0x01148220, bool, ValueTuple_1_Boolean__Equals_1, (ValueTuple_1_Boolean___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x01148AD0, int32_t, ValueTuple_1_Boolean__GetHashCode, (ValueTuple_1_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01148860, int32_t, ValueTuple_1_Boolean__System_Collections_IStructuralComparable_CompareTo, (ValueTuple_1_Boolean___Boxed * __this, Object * other, IComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x011483E0, bool, ValueTuple_1_Boolean__System_Collections_IStructuralEquatable_Equals, (ValueTuple_1_Boolean___Boxed * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01148B40, int32_t, ValueTuple_1_Boolean__System_Collections_IStructuralEquatable_GetHashCode, (ValueTuple_1_Boolean___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01148590, int32_t, ValueTuple_1_Boolean__System_IComparable_CompareTo, (ValueTuple_1_Boolean___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x01148BF0, int32_t, ValueTuple_1_Boolean__System_IValueTupleInternal_GetHashCode, (ValueTuple_1_Boolean___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01148D90, String *, ValueTuple_1_Boolean__System_IValueTupleInternal_ToStringEnd, (ValueTuple_1_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x007205E0, int32_t, ValueTuple_1_Boolean__System_Runtime_CompilerServices_ITuple_get_Length, (ValueTuple_1_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01148CA0, String *, ValueTuple_1_Boolean__ToString, (ValueTuple_1_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, ValueTuple_1_Object___ctor, (ValueTuple_1_Object___Boxed * __this, Object * item1, MethodInfo * method)); -DO_APP_FUNC(0x01149360, int32_t, ValueTuple_1_Object__CompareTo, (ValueTuple_1_Object___Boxed * __this, ValueTuple_1_Object_ other, MethodInfo * method)); -DO_APP_FUNC(0x01148F70, bool, ValueTuple_1_Object__Equals, (ValueTuple_1_Object___Boxed * __this, ValueTuple_1_Object_ other, MethodInfo * method)); -DO_APP_FUNC(0x01148E60, bool, ValueTuple_1_Object__Equals_1, (ValueTuple_1_Object___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x011495F0, int32_t, ValueTuple_1_Object__GetHashCode, (ValueTuple_1_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01149410, int32_t, ValueTuple_1_Object__System_Collections_IStructuralComparable_CompareTo, (ValueTuple_1_Object___Boxed * __this, Object * other, IComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01149020, bool, ValueTuple_1_Object__System_Collections_IStructuralEquatable_Equals, (ValueTuple_1_Object___Boxed * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01149610, int32_t, ValueTuple_1_Object__System_Collections_IStructuralEquatable_GetHashCode, (ValueTuple_1_Object___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01149140, int32_t, ValueTuple_1_Object__System_IComparable_CompareTo, (ValueTuple_1_Object___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x01149670, int32_t, ValueTuple_1_Object__System_IValueTupleInternal_GetHashCode, (ValueTuple_1_Object___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01149760, String *, ValueTuple_1_Object__System_IValueTupleInternal_ToStringEnd, (ValueTuple_1_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x007205E0, int32_t, ValueTuple_1_Object__System_Runtime_CompilerServices_ITuple_get_Length, (ValueTuple_1_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x011496D0, String *, ValueTuple_1_Object__ToString, (ValueTuple_1_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x011497C0, void, ValueTuple_2_Boolean_Object___ctor, (ValueTuple_2_Boolean_Object___Boxed * __this, bool item1, Object * item2, MethodInfo * method)); -DO_APP_FUNC(0x01149E20, int32_t, ValueTuple_2_Boolean_Object__CompareTo, (ValueTuple_2_Boolean_Object___Boxed * __this, ValueTuple_2_Boolean_Object_ other, MethodInfo * method)); -DO_APP_FUNC(0x01149940, bool, ValueTuple_2_Boolean_Object__Equals, (ValueTuple_2_Boolean_Object___Boxed * __this, ValueTuple_2_Boolean_Object_ other, MethodInfo * method)); -DO_APP_FUNC(0x01149820, bool, ValueTuple_2_Boolean_Object__Equals_1, (ValueTuple_2_Boolean_Object___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0114A1E0, int32_t, ValueTuple_2_Boolean_Object__GetHashCode, (ValueTuple_2_Boolean_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0114A2D0, int32_t, ValueTuple_2_Boolean_Object__GetHashCodeCore, (ValueTuple_2_Boolean_Object___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01149F40, int32_t, ValueTuple_2_Boolean_Object__System_Collections_IStructuralComparable_CompareTo, (ValueTuple_2_Boolean_Object___Boxed * __this, Object * other, IComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01149A60, bool, ValueTuple_2_Boolean_Object__System_Collections_IStructuralEquatable_Equals, (ValueTuple_2_Boolean_Object___Boxed * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x0114A280, int32_t, ValueTuple_2_Boolean_Object__System_Collections_IStructuralEquatable_GetHashCode, (ValueTuple_2_Boolean_Object___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01149C40, int32_t, ValueTuple_2_Boolean_Object__System_IComparable_CompareTo, (ValueTuple_2_Boolean_Object___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x0114A280, int32_t, ValueTuple_2_Boolean_Object__System_IValueTupleInternal_GetHashCode, (ValueTuple_2_Boolean_Object___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x0114A640, String *, ValueTuple_2_Boolean_Object__System_IValueTupleInternal_ToStringEnd, (ValueTuple_2_Boolean_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0072BFF0, int32_t, ValueTuple_2_Boolean_Object__System_Runtime_CompilerServices_ITuple_get_Length, (ValueTuple_2_Boolean_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0114A3B0, String *, ValueTuple_2_Boolean_Object__ToString, (ValueTuple_2_Boolean_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0114A760, void, ValueTuple_2_Int32_Boolean___ctor, (ValueTuple_2_Int32_Boolean___Boxed * __this, int32_t item1, bool item2, MethodInfo * method)); +DO_APP_FUNC(0x01144EF0, int32_t, ValueTask_1_System_Int32__GetHashCode, (ValueTask_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x011452B0, Task_1_System_Int32_ *, ValueTask_1_System_Int32__GetTaskForValueTaskSource, (ValueTask_1_System_Int32_ * __this, IValueTaskSource_1_System_Int32_ * t, MethodInfo * method)); +DO_APP_FUNC(0x01145C20, String *, ValueTask_1_System_Int32__ToString, (ValueTask_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01145840, bool, ValueTask_1_System_Int32__get_IsCompleted, (ValueTask_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01145940, bool, ValueTask_1_System_Int32__get_IsCompletedSuccessfully, (ValueTask_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22390, ValueTask_1_System_Int32__get_IsCompletedSuccessfully__MethodInfo); +DO_APP_FUNC(0x00FAFE30, int32_t, ValueTask_1_System_Int32__get_Result, (ValueTask_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01145D70, void, ValueTask_1_System_Object___ctor, (ValueTask_1_System_Object_ * __this, Object * result, MethodInfo * method)); +DO_APP_FUNC(0x01145E30, void, ValueTask_1_System_Object___ctor_1, (ValueTask_1_System_Object_ * __this, Task_1_System_Object_ * task, MethodInfo * method)); +DO_APP_FUNC(0x01145EB0, void, ValueTask_1_System_Object___ctor_2, (ValueTask_1_System_Object_ * __this, IValueTaskSource_1_System_Object_ * source, int16_t token, MethodInfo * method)); +DO_APP_FUNC(0x01145F30, void, ValueTask_1_System_Object___ctor_3, (ValueTask_1_System_Object_ * __this, Object * obj, Object * result, int16_t token, bool continueOnCapturedContext, MethodInfo * method)); +DO_APP_FUNC(0x01146250, Task_1_System_Object_ *, ValueTask_1_System_Object__AsTask, (ValueTask_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01146F80, ConfiguredValueTaskAwaitable_1_System_Object_, ValueTask_1_System_Object__ConfigureAwait, (ValueTask_1_System_Object_ * __this, bool continueOnCapturedContext, MethodInfo * method)); +DO_APP_FUNC(0x01146140, bool, ValueTask_1_System_Object__Equals, (ValueTask_1_System_Object_ * __this, ValueTask_1_System_Object_ other, MethodInfo * method)); +DO_APP_FUNC(0x01146020, bool, ValueTask_1_System_Object__Equals_1, (ValueTask_1_System_Object_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x01146EE0, ValueTaskAwaiter_1_System_Object_, ValueTask_1_System_Object__GetAwaiter, (ValueTask_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01145FF0, int32_t, ValueTask_1_System_Object__GetHashCode, (ValueTask_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x011463C0, Task_1_System_Object_ *, ValueTask_1_System_Object__GetTaskForValueTaskSource, (ValueTask_1_System_Object_ * __this, IValueTaskSource_1_System_Object_ * t, MethodInfo * method)); +DO_APP_FUNC(0x01147080, String *, ValueTask_1_System_Object__ToString, (ValueTask_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01146960, bool, ValueTask_1_System_Object__get_IsCompleted, (ValueTask_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01146A60, bool, ValueTask_1_System_Object__get_IsCompletedSuccessfully, (ValueTask_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01146B70, Object *, ValueTask_1_System_Object__get_Result, (ValueTask_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01147150, void, ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult___ctor, (ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, ValueWebSocketReceiveResult result, MethodInfo * method)); +DO_APP_FUNC(0x01145E30, void, ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult___ctor_1, (ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, Task_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * task, MethodInfo * method)); +DO_APP_FUNC(0x01145EB0, void, ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult___ctor_2, (ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, IValueTaskSource_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * source, int16_t token, MethodInfo * method)); +DO_APP_FUNC(0x011471B0, void, ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult___ctor_3, (ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, Object * obj, ValueWebSocketReceiveResult result, int16_t token, bool continueOnCapturedContext, MethodInfo * method)); +DO_APP_FUNC(0x01147550, Task_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ *, ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult__AsTask, (ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01147FB0, ConfiguredValueTaskAwaitable_1_System_Net_WebSockets_ValueWebSocketReceiveResult_, ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult__ConfigureAwait, (ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, bool continueOnCapturedContext, MethodInfo * method)); +DO_APP_FUNC(0x01147440, bool, ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult__Equals, (ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ other, MethodInfo * method)); +DO_APP_FUNC(0x01147320, bool, ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult__Equals_1, (ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x01146EE0, ValueTaskAwaiter_1_System_Net_WebSockets_ValueWebSocketReceiveResult_, ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult__GetAwaiter, (ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01147220, int32_t, ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult__GetHashCode, (ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x011476C0, Task_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ *, ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult__GetTaskForValueTaskSource, (ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, IValueTaskSource_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * t, MethodInfo * method)); +DO_APP_FUNC(0x01148110, String *, ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult__ToString, (ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01146960, bool, ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult__get_IsCompleted, (ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01146A60, bool, ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult__get_IsCompletedSuccessfully, (ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01147C50, ValueWebSocketReceiveResult, ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult__get_Result, (ValueTask_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00C3C200, void, ValueTuple_1_Boolean___ctor, (ValueTuple_1_Boolean_ * __this, bool item1, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFFB78, ValueTuple_1_Boolean___ctor__MethodInfo); +DO_APP_FUNC(0x011487B0, int32_t, ValueTuple_1_Boolean__CompareTo, (ValueTuple_1_Boolean_ * __this, ValueTuple_1_Boolean_ other, MethodInfo * method)); +DO_APP_FUNC(0x01148330, bool, ValueTuple_1_Boolean__Equals, (ValueTuple_1_Boolean_ * __this, ValueTuple_1_Boolean_ other, MethodInfo * method)); +DO_APP_FUNC(0x01148220, bool, ValueTuple_1_Boolean__Equals_1, (ValueTuple_1_Boolean_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x01148AD0, int32_t, ValueTuple_1_Boolean__GetHashCode, (ValueTuple_1_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01148860, int32_t, ValueTuple_1_Boolean__System_Collections_IStructuralComparable_CompareTo, (ValueTuple_1_Boolean_ * __this, Object * other, IComparer * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD940, ValueTuple_1_Boolean__System_Collections_IStructuralComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x011483E0, bool, ValueTuple_1_Boolean__System_Collections_IStructuralEquatable_Equals, (ValueTuple_1_Boolean_ * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01148B40, int32_t, ValueTuple_1_Boolean__System_Collections_IStructuralEquatable_GetHashCode, (ValueTuple_1_Boolean_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01148590, int32_t, ValueTuple_1_Boolean__System_IComparable_CompareTo, (ValueTuple_1_Boolean_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD970, ValueTuple_1_Boolean__System_IComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x01148BF0, int32_t, ValueTuple_1_Boolean__System_IValueTupleInternal_GetHashCode, (ValueTuple_1_Boolean_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01148D90, String *, ValueTuple_1_Boolean__System_IValueTupleInternal_ToStringEnd, (ValueTuple_1_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x007205E0, int32_t, ValueTuple_1_Boolean__System_Runtime_CompilerServices_ITuple_get_Length, (ValueTuple_1_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01148CA0, String *, ValueTuple_1_Boolean__ToString, (ValueTuple_1_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, ValueTuple_1_Object___ctor, (ValueTuple_1_Object_ * __this, Object * item1, MethodInfo * method)); +DO_APP_FUNC(0x01149360, int32_t, ValueTuple_1_Object__CompareTo, (ValueTuple_1_Object_ * __this, ValueTuple_1_Object_ other, MethodInfo * method)); +DO_APP_FUNC(0x01148F70, bool, ValueTuple_1_Object__Equals, (ValueTuple_1_Object_ * __this, ValueTuple_1_Object_ other, MethodInfo * method)); +DO_APP_FUNC(0x01148E60, bool, ValueTuple_1_Object__Equals_1, (ValueTuple_1_Object_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x011495F0, int32_t, ValueTuple_1_Object__GetHashCode, (ValueTuple_1_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01149410, int32_t, ValueTuple_1_Object__System_Collections_IStructuralComparable_CompareTo, (ValueTuple_1_Object_ * __this, Object * other, IComparer * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD8D8, ValueTuple_1_Object__System_Collections_IStructuralComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x01149020, bool, ValueTuple_1_Object__System_Collections_IStructuralEquatable_Equals, (ValueTuple_1_Object_ * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01149610, int32_t, ValueTuple_1_Object__System_Collections_IStructuralEquatable_GetHashCode, (ValueTuple_1_Object_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01149140, int32_t, ValueTuple_1_Object__System_IComparable_CompareTo, (ValueTuple_1_Object_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD918, ValueTuple_1_Object__System_IComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x01149670, int32_t, ValueTuple_1_Object__System_IValueTupleInternal_GetHashCode, (ValueTuple_1_Object_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01149760, String *, ValueTuple_1_Object__System_IValueTupleInternal_ToStringEnd, (ValueTuple_1_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x007205E0, int32_t, ValueTuple_1_Object__System_Runtime_CompilerServices_ITuple_get_Length, (ValueTuple_1_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x011496D0, String *, ValueTuple_1_Object__ToString, (ValueTuple_1_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x011497C0, void, ValueTuple_2_Boolean_Object___ctor, (ValueTuple_2_Boolean_Object_ * __this, bool item1, Object * item2, MethodInfo * method)); +DO_APP_FUNC(0x01149E20, int32_t, ValueTuple_2_Boolean_Object__CompareTo, (ValueTuple_2_Boolean_Object_ * __this, ValueTuple_2_Boolean_Object_ other, MethodInfo * method)); +DO_APP_FUNC(0x01149940, bool, ValueTuple_2_Boolean_Object__Equals, (ValueTuple_2_Boolean_Object_ * __this, ValueTuple_2_Boolean_Object_ other, MethodInfo * method)); +DO_APP_FUNC(0x01149820, bool, ValueTuple_2_Boolean_Object__Equals_1, (ValueTuple_2_Boolean_Object_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x0114A1E0, int32_t, ValueTuple_2_Boolean_Object__GetHashCode, (ValueTuple_2_Boolean_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0114A2D0, int32_t, ValueTuple_2_Boolean_Object__GetHashCodeCore, (ValueTuple_2_Boolean_Object_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01149F40, int32_t, ValueTuple_2_Boolean_Object__System_Collections_IStructuralComparable_CompareTo, (ValueTuple_2_Boolean_Object_ * __this, Object * other, IComparer * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD880, ValueTuple_2_Boolean_Object__System_Collections_IStructuralComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x01149A60, bool, ValueTuple_2_Boolean_Object__System_Collections_IStructuralEquatable_Equals, (ValueTuple_2_Boolean_Object_ * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x0114A280, int32_t, ValueTuple_2_Boolean_Object__System_Collections_IStructuralEquatable_GetHashCode, (ValueTuple_2_Boolean_Object_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01149C40, int32_t, ValueTuple_2_Boolean_Object__System_IComparable_CompareTo, (ValueTuple_2_Boolean_Object_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD8C0, ValueTuple_2_Boolean_Object__System_IComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x0114A280, int32_t, ValueTuple_2_Boolean_Object__System_IValueTupleInternal_GetHashCode, (ValueTuple_2_Boolean_Object_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x0114A640, String *, ValueTuple_2_Boolean_Object__System_IValueTupleInternal_ToStringEnd, (ValueTuple_2_Boolean_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0072BFF0, int32_t, ValueTuple_2_Boolean_Object__System_Runtime_CompilerServices_ITuple_get_Length, (ValueTuple_2_Boolean_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0114A3B0, String *, ValueTuple_2_Boolean_Object__ToString, (ValueTuple_2_Boolean_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0114A760, void, ValueTuple_2_Int32_Boolean___ctor, (ValueTuple_2_Int32_Boolean_ * __this, int32_t item1, bool item2, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA2218, ValueTuple_2_Int32_Boolean___ctor__MethodInfo); -DO_APP_FUNC(0x0114ADF0, int32_t, ValueTuple_2_Int32_Boolean__CompareTo, (ValueTuple_2_Int32_Boolean___Boxed * __this, ValueTuple_2_Int32_Boolean_ other, MethodInfo * method)); -DO_APP_FUNC(0x0114A880, bool, ValueTuple_2_Int32_Boolean__Equals, (ValueTuple_2_Int32_Boolean___Boxed * __this, ValueTuple_2_Int32_Boolean_ other, MethodInfo * method)); -DO_APP_FUNC(0x0114A770, bool, ValueTuple_2_Int32_Boolean__Equals_1, (ValueTuple_2_Int32_Boolean___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0114B250, int32_t, ValueTuple_2_Int32_Boolean__GetHashCode, (ValueTuple_2_Int32_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0114B340, int32_t, ValueTuple_2_Int32_Boolean__GetHashCodeCore, (ValueTuple_2_Int32_Boolean___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x0114AF20, int32_t, ValueTuple_2_Int32_Boolean__System_Collections_IStructuralComparable_CompareTo, (ValueTuple_2_Int32_Boolean___Boxed * __this, Object * other, IComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x0114A9B0, bool, ValueTuple_2_Int32_Boolean__System_Collections_IStructuralEquatable_Equals, (ValueTuple_2_Int32_Boolean___Boxed * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x0114B2F0, int32_t, ValueTuple_2_Int32_Boolean__System_Collections_IStructuralEquatable_GetHashCode, (ValueTuple_2_Int32_Boolean___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x0114AC20, int32_t, ValueTuple_2_Int32_Boolean__System_IComparable_CompareTo, (ValueTuple_2_Int32_Boolean___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x0114B2F0, int32_t, ValueTuple_2_Int32_Boolean__System_IValueTupleInternal_GetHashCode, (ValueTuple_2_Int32_Boolean___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x0114B720, String *, ValueTuple_2_Int32_Boolean__System_IValueTupleInternal_ToStringEnd, (ValueTuple_2_Int32_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0072BFF0, int32_t, ValueTuple_2_Int32_Boolean__System_Runtime_CompilerServices_ITuple_get_Length, (ValueTuple_2_Int32_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0114B470, String *, ValueTuple_2_Int32_Boolean__ToString, (ValueTuple_2_Int32_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00977B80, void, ValueTuple_2_Int32_Int32___ctor, (ValueTuple_2_Int32_Int32___Boxed * __this, int32_t item1, int32_t item2, MethodInfo * method)); -DO_APP_FUNC(0x0114BEC0, int32_t, ValueTuple_2_Int32_Int32__CompareTo, (ValueTuple_2_Int32_Int32___Boxed * __this, ValueTuple_2_Int32_Int32_ other, MethodInfo * method)); -DO_APP_FUNC(0x0114B960, bool, ValueTuple_2_Int32_Int32__Equals, (ValueTuple_2_Int32_Int32___Boxed * __this, ValueTuple_2_Int32_Int32_ other, MethodInfo * method)); -DO_APP_FUNC(0x0114B850, bool, ValueTuple_2_Int32_Int32__Equals_1, (ValueTuple_2_Int32_Int32___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0114C310, int32_t, ValueTuple_2_Int32_Int32__GetHashCode, (ValueTuple_2_Int32_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0114C3C0, int32_t, ValueTuple_2_Int32_Int32__GetHashCodeCore, (ValueTuple_2_Int32_Int32___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x0114BFE0, int32_t, ValueTuple_2_Int32_Int32__System_Collections_IStructuralComparable_CompareTo, (ValueTuple_2_Int32_Int32___Boxed * __this, Object * other, IComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x0114BA80, bool, ValueTuple_2_Int32_Int32__System_Collections_IStructuralEquatable_Equals, (ValueTuple_2_Int32_Int32___Boxed * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x0114C370, int32_t, ValueTuple_2_Int32_Int32__System_Collections_IStructuralEquatable_GetHashCode, (ValueTuple_2_Int32_Int32___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x0114BCF0, int32_t, ValueTuple_2_Int32_Int32__System_IComparable_CompareTo, (ValueTuple_2_Int32_Int32___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x0114C370, int32_t, ValueTuple_2_Int32_Int32__System_IValueTupleInternal_GetHashCode, (ValueTuple_2_Int32_Int32___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x0114C750, String *, ValueTuple_2_Int32_Int32__System_IValueTupleInternal_ToStringEnd, (ValueTuple_2_Int32_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0072BFF0, int32_t, ValueTuple_2_Int32_Int32__System_Runtime_CompilerServices_ITuple_get_Length, (ValueTuple_2_Int32_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0114C4F0, String *, ValueTuple_2_Int32_Int32__ToString, (ValueTuple_2_Int32_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0114C830, void, ValueTuple_2_Int32_IntPtr___ctor, (ValueTuple_2_Int32_IntPtr___Boxed * __this, int32_t item1, void * item2, MethodInfo * method)); +DO_APP_FUNC(0x0114ADF0, int32_t, ValueTuple_2_Int32_Boolean__CompareTo, (ValueTuple_2_Int32_Boolean_ * __this, ValueTuple_2_Int32_Boolean_ other, MethodInfo * method)); +DO_APP_FUNC(0x0114A880, bool, ValueTuple_2_Int32_Boolean__Equals, (ValueTuple_2_Int32_Boolean_ * __this, ValueTuple_2_Int32_Boolean_ other, MethodInfo * method)); +DO_APP_FUNC(0x0114A770, bool, ValueTuple_2_Int32_Boolean__Equals_1, (ValueTuple_2_Int32_Boolean_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x0114B250, int32_t, ValueTuple_2_Int32_Boolean__GetHashCode, (ValueTuple_2_Int32_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0114B340, int32_t, ValueTuple_2_Int32_Boolean__GetHashCodeCore, (ValueTuple_2_Int32_Boolean_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x0114AF20, int32_t, ValueTuple_2_Int32_Boolean__System_Collections_IStructuralComparable_CompareTo, (ValueTuple_2_Int32_Boolean_ * __this, Object * other, IComparer * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD860, ValueTuple_2_Int32_Boolean__System_Collections_IStructuralComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x0114A9B0, bool, ValueTuple_2_Int32_Boolean__System_Collections_IStructuralEquatable_Equals, (ValueTuple_2_Int32_Boolean_ * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x0114B2F0, int32_t, ValueTuple_2_Int32_Boolean__System_Collections_IStructuralEquatable_GetHashCode, (ValueTuple_2_Int32_Boolean_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x0114AC20, int32_t, ValueTuple_2_Int32_Boolean__System_IComparable_CompareTo, (ValueTuple_2_Int32_Boolean_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD858, ValueTuple_2_Int32_Boolean__System_IComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x0114B2F0, int32_t, ValueTuple_2_Int32_Boolean__System_IValueTupleInternal_GetHashCode, (ValueTuple_2_Int32_Boolean_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x0114B720, String *, ValueTuple_2_Int32_Boolean__System_IValueTupleInternal_ToStringEnd, (ValueTuple_2_Int32_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0072BFF0, int32_t, ValueTuple_2_Int32_Boolean__System_Runtime_CompilerServices_ITuple_get_Length, (ValueTuple_2_Int32_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0114B470, String *, ValueTuple_2_Int32_Boolean__ToString, (ValueTuple_2_Int32_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00977B80, void, ValueTuple_2_Int32_Int32___ctor, (ValueTuple_2_Int32_Int32_ * __this, int32_t item1, int32_t item2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CED9A0, ValueTuple_2_Int32_Int32___ctor__MethodInfo); +DO_APP_FUNC(0x0114BEC0, int32_t, ValueTuple_2_Int32_Int32__CompareTo, (ValueTuple_2_Int32_Int32_ * __this, ValueTuple_2_Int32_Int32_ other, MethodInfo * method)); +DO_APP_FUNC(0x0114B960, bool, ValueTuple_2_Int32_Int32__Equals, (ValueTuple_2_Int32_Int32_ * __this, ValueTuple_2_Int32_Int32_ other, MethodInfo * method)); +DO_APP_FUNC(0x0114B850, bool, ValueTuple_2_Int32_Int32__Equals_1, (ValueTuple_2_Int32_Int32_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x0114C310, int32_t, ValueTuple_2_Int32_Int32__GetHashCode, (ValueTuple_2_Int32_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0114C3C0, int32_t, ValueTuple_2_Int32_Int32__GetHashCodeCore, (ValueTuple_2_Int32_Int32_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x0114BFE0, int32_t, ValueTuple_2_Int32_Int32__System_Collections_IStructuralComparable_CompareTo, (ValueTuple_2_Int32_Int32_ * __this, Object * other, IComparer * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD7C8, ValueTuple_2_Int32_Int32__System_Collections_IStructuralComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x0114BA80, bool, ValueTuple_2_Int32_Int32__System_Collections_IStructuralEquatable_Equals, (ValueTuple_2_Int32_Int32_ * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x0114C370, int32_t, ValueTuple_2_Int32_Int32__System_Collections_IStructuralEquatable_GetHashCode, (ValueTuple_2_Int32_Int32_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x0114BCF0, int32_t, ValueTuple_2_Int32_Int32__System_IComparable_CompareTo, (ValueTuple_2_Int32_Int32_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD7B8, ValueTuple_2_Int32_Int32__System_IComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x0114C370, int32_t, ValueTuple_2_Int32_Int32__System_IValueTupleInternal_GetHashCode, (ValueTuple_2_Int32_Int32_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x0114C750, String *, ValueTuple_2_Int32_Int32__System_IValueTupleInternal_ToStringEnd, (ValueTuple_2_Int32_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0072BFF0, int32_t, ValueTuple_2_Int32_Int32__System_Runtime_CompilerServices_ITuple_get_Length, (ValueTuple_2_Int32_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0114C4F0, String *, ValueTuple_2_Int32_Int32__ToString, (ValueTuple_2_Int32_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0114C830, void, ValueTuple_2_Int32_IntPtr___ctor, (ValueTuple_2_Int32_IntPtr_ * __this, int32_t item1, void * item2, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C94930, ValueTuple_2_Int32_IntPtr___ctor__MethodInfo); -DO_APP_FUNC(0x0114CED0, int32_t, ValueTuple_2_Int32_IntPtr__CompareTo, (ValueTuple_2_Int32_IntPtr___Boxed * __this, ValueTuple_2_Int32_IntPtr_ other, MethodInfo * method)); -DO_APP_FUNC(0x0114C960, bool, ValueTuple_2_Int32_IntPtr__Equals, (ValueTuple_2_Int32_IntPtr___Boxed * __this, ValueTuple_2_Int32_IntPtr_ other, MethodInfo * method)); -DO_APP_FUNC(0x0114C840, bool, ValueTuple_2_Int32_IntPtr__Equals_1, (ValueTuple_2_Int32_IntPtr___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0114D330, int32_t, ValueTuple_2_Int32_IntPtr__GetHashCode, (ValueTuple_2_Int32_IntPtr___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0114D3E0, int32_t, ValueTuple_2_Int32_IntPtr__GetHashCodeCore, (ValueTuple_2_Int32_IntPtr___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x0114CFF0, int32_t, ValueTuple_2_Int32_IntPtr__System_Collections_IStructuralComparable_CompareTo, (ValueTuple_2_Int32_IntPtr___Boxed * __this, Object * other, IComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x0114CA80, bool, ValueTuple_2_Int32_IntPtr__System_Collections_IStructuralEquatable_Equals, (ValueTuple_2_Int32_IntPtr___Boxed * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x0114D390, int32_t, ValueTuple_2_Int32_IntPtr__System_Collections_IStructuralEquatable_GetHashCode, (ValueTuple_2_Int32_IntPtr___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x0114CCF0, int32_t, ValueTuple_2_Int32_IntPtr__System_IComparable_CompareTo, (ValueTuple_2_Int32_IntPtr___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x0114D390, int32_t, ValueTuple_2_Int32_IntPtr__System_IValueTupleInternal_GetHashCode, (ValueTuple_2_Int32_IntPtr___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x0114D770, String *, ValueTuple_2_Int32_IntPtr__System_IValueTupleInternal_ToStringEnd, (ValueTuple_2_Int32_IntPtr___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0072BFF0, int32_t, ValueTuple_2_Int32_IntPtr__System_Runtime_CompilerServices_ITuple_get_Length, (ValueTuple_2_Int32_IntPtr___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0114D510, String *, ValueTuple_2_Int32_IntPtr__ToString, (ValueTuple_2_Int32_IntPtr___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0114D850, void, ValueTuple_2_Int32_Object___ctor, (ValueTuple_2_Int32_Object___Boxed * __this, int32_t item1, Object * item2, MethodInfo * method)); -DO_APP_FUNC(0x0114CED0, int32_t, ValueTuple_2_Int32_Object__CompareTo, (ValueTuple_2_Int32_Object___Boxed * __this, ValueTuple_2_Int32_Object_ other, MethodInfo * method)); -DO_APP_FUNC(0x0114C960, bool, ValueTuple_2_Int32_Object__Equals, (ValueTuple_2_Int32_Object___Boxed * __this, ValueTuple_2_Int32_Object_ other, MethodInfo * method)); -DO_APP_FUNC(0x0114C840, bool, ValueTuple_2_Int32_Object__Equals_1, (ValueTuple_2_Int32_Object___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0114DF10, int32_t, ValueTuple_2_Int32_Object__GetHashCode, (ValueTuple_2_Int32_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0114DFC0, int32_t, ValueTuple_2_Int32_Object__GetHashCodeCore, (ValueTuple_2_Int32_Object___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x0114DC70, int32_t, ValueTuple_2_Int32_Object__System_Collections_IStructuralComparable_CompareTo, (ValueTuple_2_Int32_Object___Boxed * __this, Object * other, IComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x0114D8B0, bool, ValueTuple_2_Int32_Object__System_Collections_IStructuralEquatable_Equals, (ValueTuple_2_Int32_Object___Boxed * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x0114DF70, int32_t, ValueTuple_2_Int32_Object__System_Collections_IStructuralEquatable_GetHashCode, (ValueTuple_2_Int32_Object___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x0114DA90, int32_t, ValueTuple_2_Int32_Object__System_IComparable_CompareTo, (ValueTuple_2_Int32_Object___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x0114DF70, int32_t, ValueTuple_2_Int32_Object__System_IValueTupleInternal_GetHashCode, (ValueTuple_2_Int32_Object___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x0114E2F0, String *, ValueTuple_2_Int32_Object__System_IValueTupleInternal_ToStringEnd, (ValueTuple_2_Int32_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0072BFF0, int32_t, ValueTuple_2_Int32_Object__System_Runtime_CompilerServices_ITuple_get_Length, (ValueTuple_2_Int32_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0114E0A0, String *, ValueTuple_2_Int32_Object__ToString, (ValueTuple_2_Int32_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0114E3C0, void, ValueTuple_2_Int32_UnityEngine_Vector2Int___ctor, (ValueTuple_2_Int32_UnityEngine_Vector2Int___Boxed * __this, int32_t item1, Vector2Int item2, MethodInfo * method)); +DO_APP_FUNC(0x0114CED0, int32_t, ValueTuple_2_Int32_IntPtr__CompareTo, (ValueTuple_2_Int32_IntPtr_ * __this, ValueTuple_2_Int32_IntPtr_ other, MethodInfo * method)); +DO_APP_FUNC(0x0114C960, bool, ValueTuple_2_Int32_IntPtr__Equals, (ValueTuple_2_Int32_IntPtr_ * __this, ValueTuple_2_Int32_IntPtr_ other, MethodInfo * method)); +DO_APP_FUNC(0x0114C840, bool, ValueTuple_2_Int32_IntPtr__Equals_1, (ValueTuple_2_Int32_IntPtr_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x0114D330, int32_t, ValueTuple_2_Int32_IntPtr__GetHashCode, (ValueTuple_2_Int32_IntPtr_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0114D3E0, int32_t, ValueTuple_2_Int32_IntPtr__GetHashCodeCore, (ValueTuple_2_Int32_IntPtr_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x0114CFF0, int32_t, ValueTuple_2_Int32_IntPtr__System_Collections_IStructuralComparable_CompareTo, (ValueTuple_2_Int32_IntPtr_ * __this, Object * other, IComparer * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD710, ValueTuple_2_Int32_IntPtr__System_Collections_IStructuralComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x0114CA80, bool, ValueTuple_2_Int32_IntPtr__System_Collections_IStructuralEquatable_Equals, (ValueTuple_2_Int32_IntPtr_ * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x0114D390, int32_t, ValueTuple_2_Int32_IntPtr__System_Collections_IStructuralEquatable_GetHashCode, (ValueTuple_2_Int32_IntPtr_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x0114CCF0, int32_t, ValueTuple_2_Int32_IntPtr__System_IComparable_CompareTo, (ValueTuple_2_Int32_IntPtr_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD780, ValueTuple_2_Int32_IntPtr__System_IComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x0114D390, int32_t, ValueTuple_2_Int32_IntPtr__System_IValueTupleInternal_GetHashCode, (ValueTuple_2_Int32_IntPtr_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x0114D770, String *, ValueTuple_2_Int32_IntPtr__System_IValueTupleInternal_ToStringEnd, (ValueTuple_2_Int32_IntPtr_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0072BFF0, int32_t, ValueTuple_2_Int32_IntPtr__System_Runtime_CompilerServices_ITuple_get_Length, (ValueTuple_2_Int32_IntPtr_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0114D510, String *, ValueTuple_2_Int32_IntPtr__ToString, (ValueTuple_2_Int32_IntPtr_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0114D850, void, ValueTuple_2_Int32_Object___ctor, (ValueTuple_2_Int32_Object_ * __this, int32_t item1, Object * item2, MethodInfo * method)); +DO_APP_FUNC(0x0114CED0, int32_t, ValueTuple_2_Int32_Object__CompareTo, (ValueTuple_2_Int32_Object_ * __this, ValueTuple_2_Int32_Object_ other, MethodInfo * method)); +DO_APP_FUNC(0x0114C960, bool, ValueTuple_2_Int32_Object__Equals, (ValueTuple_2_Int32_Object_ * __this, ValueTuple_2_Int32_Object_ other, MethodInfo * method)); +DO_APP_FUNC(0x0114C840, bool, ValueTuple_2_Int32_Object__Equals_1, (ValueTuple_2_Int32_Object_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x0114DF10, int32_t, ValueTuple_2_Int32_Object__GetHashCode, (ValueTuple_2_Int32_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0114DFC0, int32_t, ValueTuple_2_Int32_Object__GetHashCodeCore, (ValueTuple_2_Int32_Object_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x0114DC70, int32_t, ValueTuple_2_Int32_Object__System_Collections_IStructuralComparable_CompareTo, (ValueTuple_2_Int32_Object_ * __this, Object * other, IComparer * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD700, ValueTuple_2_Int32_Object__System_Collections_IStructuralComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x0114D8B0, bool, ValueTuple_2_Int32_Object__System_Collections_IStructuralEquatable_Equals, (ValueTuple_2_Int32_Object_ * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x0114DF70, int32_t, ValueTuple_2_Int32_Object__System_Collections_IStructuralEquatable_GetHashCode, (ValueTuple_2_Int32_Object_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x0114DA90, int32_t, ValueTuple_2_Int32_Object__System_IComparable_CompareTo, (ValueTuple_2_Int32_Object_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD6F0, ValueTuple_2_Int32_Object__System_IComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x0114DF70, int32_t, ValueTuple_2_Int32_Object__System_IValueTupleInternal_GetHashCode, (ValueTuple_2_Int32_Object_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x0114E2F0, String *, ValueTuple_2_Int32_Object__System_IValueTupleInternal_ToStringEnd, (ValueTuple_2_Int32_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0072BFF0, int32_t, ValueTuple_2_Int32_Object__System_Runtime_CompilerServices_ITuple_get_Length, (ValueTuple_2_Int32_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0114E0A0, String *, ValueTuple_2_Int32_Object__ToString, (ValueTuple_2_Int32_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0114E3C0, void, ValueTuple_2_Int32_UnityEngine_Vector2Int___ctor, (ValueTuple_2_Int32_UnityEngine_Vector2Int_ * __this, int32_t item1, Vector2Int item2, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C97DA8, ValueTuple_2_Int32_UnityEngine_Vector2Int___ctor__MethodInfo); -DO_APP_FUNC(0x0114EA70, int32_t, ValueTuple_2_Int32_UnityEngine_Vector2Int__CompareTo, (ValueTuple_2_Int32_UnityEngine_Vector2Int___Boxed * __this, ValueTuple_2_Int32_UnityEngine_Vector2Int_ other, MethodInfo * method)); -DO_APP_FUNC(0x0114E4F0, bool, ValueTuple_2_Int32_UnityEngine_Vector2Int__Equals, (ValueTuple_2_Int32_UnityEngine_Vector2Int___Boxed * __this, ValueTuple_2_Int32_UnityEngine_Vector2Int_ other, MethodInfo * method)); -DO_APP_FUNC(0x0114E3D0, bool, ValueTuple_2_Int32_UnityEngine_Vector2Int__Equals_1, (ValueTuple_2_Int32_UnityEngine_Vector2Int___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0114EED0, int32_t, ValueTuple_2_Int32_UnityEngine_Vector2Int__GetHashCode, (ValueTuple_2_Int32_UnityEngine_Vector2Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0114EF80, int32_t, ValueTuple_2_Int32_UnityEngine_Vector2Int__GetHashCodeCore, (ValueTuple_2_Int32_UnityEngine_Vector2Int___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x0114EB90, int32_t, ValueTuple_2_Int32_UnityEngine_Vector2Int__System_Collections_IStructuralComparable_CompareTo, (ValueTuple_2_Int32_UnityEngine_Vector2Int___Boxed * __this, Object * other, IComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x0114E610, bool, ValueTuple_2_Int32_UnityEngine_Vector2Int__System_Collections_IStructuralEquatable_Equals, (ValueTuple_2_Int32_UnityEngine_Vector2Int___Boxed * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x0114EF30, int32_t, ValueTuple_2_Int32_UnityEngine_Vector2Int__System_Collections_IStructuralEquatable_GetHashCode, (ValueTuple_2_Int32_UnityEngine_Vector2Int___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x0114E880, int32_t, ValueTuple_2_Int32_UnityEngine_Vector2Int__System_IComparable_CompareTo, (ValueTuple_2_Int32_UnityEngine_Vector2Int___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x0114EF30, int32_t, ValueTuple_2_Int32_UnityEngine_Vector2Int__System_IValueTupleInternal_GetHashCode, (ValueTuple_2_Int32_UnityEngine_Vector2Int___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x0114F300, String *, ValueTuple_2_Int32_UnityEngine_Vector2Int__System_IValueTupleInternal_ToStringEnd, (ValueTuple_2_Int32_UnityEngine_Vector2Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0072BFF0, int32_t, ValueTuple_2_Int32_UnityEngine_Vector2Int__System_Runtime_CompilerServices_ITuple_get_Length, (ValueTuple_2_Int32_UnityEngine_Vector2Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0114F0B0, String *, ValueTuple_2_Int32_UnityEngine_Vector2Int__ToString, (ValueTuple_2_Int32_UnityEngine_Vector2Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0114F3E0, void, ValueTuple_2_IntPtr_Object___ctor, (ValueTuple_2_IntPtr_Object___Boxed * __this, void * item1, Object * item2, MethodInfo * method)); -DO_APP_FUNC(0x0114FA40, int32_t, ValueTuple_2_IntPtr_Object__CompareTo, (ValueTuple_2_IntPtr_Object___Boxed * __this, ValueTuple_2_IntPtr_Object_ other, MethodInfo * method)); -DO_APP_FUNC(0x0114F560, bool, ValueTuple_2_IntPtr_Object__Equals, (ValueTuple_2_IntPtr_Object___Boxed * __this, ValueTuple_2_IntPtr_Object_ other, MethodInfo * method)); -DO_APP_FUNC(0x0114F440, bool, ValueTuple_2_IntPtr_Object__Equals_1, (ValueTuple_2_IntPtr_Object___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0114DF10, int32_t, ValueTuple_2_IntPtr_Object__GetHashCode, (ValueTuple_2_IntPtr_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0114FE50, int32_t, ValueTuple_2_IntPtr_Object__GetHashCodeCore, (ValueTuple_2_IntPtr_Object___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x0114FB60, int32_t, ValueTuple_2_IntPtr_Object__System_Collections_IStructuralComparable_CompareTo, (ValueTuple_2_IntPtr_Object___Boxed * __this, Object * other, IComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x0114F680, bool, ValueTuple_2_IntPtr_Object__System_Collections_IStructuralEquatable_Equals, (ValueTuple_2_IntPtr_Object___Boxed * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x0114FE00, int32_t, ValueTuple_2_IntPtr_Object__System_Collections_IStructuralEquatable_GetHashCode, (ValueTuple_2_IntPtr_Object___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x0114F860, int32_t, ValueTuple_2_IntPtr_Object__System_IComparable_CompareTo, (ValueTuple_2_IntPtr_Object___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x0114FE00, int32_t, ValueTuple_2_IntPtr_Object__System_IValueTupleInternal_GetHashCode, (ValueTuple_2_IntPtr_Object___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01150180, String *, ValueTuple_2_IntPtr_Object__System_IValueTupleInternal_ToStringEnd, (ValueTuple_2_IntPtr_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0072BFF0, int32_t, ValueTuple_2_IntPtr_Object__System_Runtime_CompilerServices_ITuple_get_Length, (ValueTuple_2_IntPtr_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0114FF30, String *, ValueTuple_2_IntPtr_Object__ToString, (ValueTuple_2_IntPtr_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01150250, void, ValueTuple_2_Object_ValueTuple_2_Object_Int32___ctor, (ValueTuple_2_Object_ValueTuple_2_Object_Int32___Boxed * __this, Object * item1, ValueTuple_2_Object_Int32_ item2, MethodInfo * method)); -DO_APP_FUNC(0x01150960, int32_t, ValueTuple_2_Object_ValueTuple_2_Object_Int32__CompareTo, (ValueTuple_2_Object_ValueTuple_2_Object_Int32___Boxed * __this, ValueTuple_2_Object_ValueTuple_2_Object_Int32_ other, MethodInfo * method)); -DO_APP_FUNC(0x01150420, bool, ValueTuple_2_Object_ValueTuple_2_Object_Int32__Equals, (ValueTuple_2_Object_ValueTuple_2_Object_Int32___Boxed * __this, ValueTuple_2_Object_ValueTuple_2_Object_Int32_ other, MethodInfo * method)); -DO_APP_FUNC(0x01150300, bool, ValueTuple_2_Object_ValueTuple_2_Object_Int32__Equals_1, (ValueTuple_2_Object_ValueTuple_2_Object_Int32___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x01150D90, int32_t, ValueTuple_2_Object_ValueTuple_2_Object_Int32__GetHashCode, (ValueTuple_2_Object_ValueTuple_2_Object_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01150E70, int32_t, ValueTuple_2_Object_ValueTuple_2_Object_Int32__GetHashCodeCore, (ValueTuple_2_Object_ValueTuple_2_Object_Int32___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01150AC0, int32_t, ValueTuple_2_Object_ValueTuple_2_Object_Int32__System_Collections_IStructuralComparable_CompareTo, (ValueTuple_2_Object_ValueTuple_2_Object_Int32___Boxed * __this, Object * other, IComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01150570, bool, ValueTuple_2_Object_ValueTuple_2_Object_Int32__System_Collections_IStructuralEquatable_Equals, (ValueTuple_2_Object_ValueTuple_2_Object_Int32___Boxed * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01150E20, int32_t, ValueTuple_2_Object_ValueTuple_2_Object_Int32__System_Collections_IStructuralEquatable_GetHashCode, (ValueTuple_2_Object_ValueTuple_2_Object_Int32___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01150770, int32_t, ValueTuple_2_Object_ValueTuple_2_Object_Int32__System_IComparable_CompareTo, (ValueTuple_2_Object_ValueTuple_2_Object_Int32___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x01150E20, int32_t, ValueTuple_2_Object_ValueTuple_2_Object_Int32__System_IValueTupleInternal_GetHashCode, (ValueTuple_2_Object_ValueTuple_2_Object_Int32___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x011511C0, String *, ValueTuple_2_Object_ValueTuple_2_Object_Int32__System_IValueTupleInternal_ToStringEnd, (ValueTuple_2_Object_ValueTuple_2_Object_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0072BFF0, int32_t, ValueTuple_2_Object_ValueTuple_2_Object_Int32__System_Runtime_CompilerServices_ITuple_get_Length, (ValueTuple_2_Object_ValueTuple_2_Object_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01150F60, String *, ValueTuple_2_Object_ValueTuple_2_Object_Int32__ToString, (ValueTuple_2_Object_ValueTuple_2_Object_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x011512A0, void, ValueTuple_2_Object_Boolean___ctor, (ValueTuple_2_Object_Boolean___Boxed * __this, Object * item1, bool item2, MethodInfo * method)); -DO_APP_FUNC(0x01151900, int32_t, ValueTuple_2_Object_Boolean__CompareTo, (ValueTuple_2_Object_Boolean___Boxed * __this, ValueTuple_2_Object_Boolean_ other, MethodInfo * method)); -DO_APP_FUNC(0x01151420, bool, ValueTuple_2_Object_Boolean__Equals, (ValueTuple_2_Object_Boolean___Boxed * __this, ValueTuple_2_Object_Boolean_ other, MethodInfo * method)); -DO_APP_FUNC(0x01151300, bool, ValueTuple_2_Object_Boolean__Equals_1, (ValueTuple_2_Object_Boolean___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x01151CD0, int32_t, ValueTuple_2_Object_Boolean__GetHashCode, (ValueTuple_2_Object_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01151DD0, int32_t, ValueTuple_2_Object_Boolean__GetHashCodeCore, (ValueTuple_2_Object_Boolean___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01151A20, int32_t, ValueTuple_2_Object_Boolean__System_Collections_IStructuralComparable_CompareTo, (ValueTuple_2_Object_Boolean___Boxed * __this, Object * other, IComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01151540, bool, ValueTuple_2_Object_Boolean__System_Collections_IStructuralEquatable_Equals, (ValueTuple_2_Object_Boolean___Boxed * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01151D80, int32_t, ValueTuple_2_Object_Boolean__System_Collections_IStructuralEquatable_GetHashCode, (ValueTuple_2_Object_Boolean___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01151720, int32_t, ValueTuple_2_Object_Boolean__System_IComparable_CompareTo, (ValueTuple_2_Object_Boolean___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x01151D80, int32_t, ValueTuple_2_Object_Boolean__System_IValueTupleInternal_GetHashCode, (ValueTuple_2_Object_Boolean___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01152160, String *, ValueTuple_2_Object_Boolean__System_IValueTupleInternal_ToStringEnd, (ValueTuple_2_Object_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0072BFF0, int32_t, ValueTuple_2_Object_Boolean__System_Runtime_CompilerServices_ITuple_get_Length, (ValueTuple_2_Object_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01151EC0, String *, ValueTuple_2_Object_Boolean__ToString, (ValueTuple_2_Object_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x004CB450, void, ValueTuple_2_Object_Int32___ctor, (ValueTuple_2_Object_Int32___Boxed * __this, Object * item1, int32_t item2, MethodInfo * method)); -DO_APP_FUNC(0x01152890, int32_t, ValueTuple_2_Object_Int32__CompareTo, (ValueTuple_2_Object_Int32___Boxed * __this, ValueTuple_2_Object_Int32_ other, MethodInfo * method)); -DO_APP_FUNC(0x011523B0, bool, ValueTuple_2_Object_Int32__Equals, (ValueTuple_2_Object_Int32___Boxed * __this, ValueTuple_2_Object_Int32_ other, MethodInfo * method)); -DO_APP_FUNC(0x01152290, bool, ValueTuple_2_Object_Int32__Equals_1, (ValueTuple_2_Object_Int32___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x01152C60, int32_t, ValueTuple_2_Object_Int32__GetHashCode, (ValueTuple_2_Object_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01152D20, int32_t, ValueTuple_2_Object_Int32__GetHashCodeCore, (ValueTuple_2_Object_Int32___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x011529B0, int32_t, ValueTuple_2_Object_Int32__System_Collections_IStructuralComparable_CompareTo, (ValueTuple_2_Object_Int32___Boxed * __this, Object * other, IComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x011524D0, bool, ValueTuple_2_Object_Int32__System_Collections_IStructuralEquatable_Equals, (ValueTuple_2_Object_Int32___Boxed * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01152CD0, int32_t, ValueTuple_2_Object_Int32__System_Collections_IStructuralEquatable_GetHashCode, (ValueTuple_2_Object_Int32___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x011526B0, int32_t, ValueTuple_2_Object_Int32__System_IComparable_CompareTo, (ValueTuple_2_Object_Int32___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x01152CD0, int32_t, ValueTuple_2_Object_Int32__System_IValueTupleInternal_GetHashCode, (ValueTuple_2_Object_Int32___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01153060, String *, ValueTuple_2_Object_Int32__System_IValueTupleInternal_ToStringEnd, (ValueTuple_2_Object_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0072BFF0, int32_t, ValueTuple_2_Object_Int32__System_Runtime_CompilerServices_ITuple_get_Length, (ValueTuple_2_Object_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01152E10, String *, ValueTuple_2_Object_Int32__ToString, (ValueTuple_2_Object_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00A76400, void, ValueTuple_2_Object_Object___ctor, (ValueTuple_2_Object_Object___Boxed * __this, Object * item1, Object * item2, MethodInfo * method)); -DO_APP_FUNC(0x0114FA40, int32_t, ValueTuple_2_Object_Object__CompareTo, (ValueTuple_2_Object_Object___Boxed * __this, ValueTuple_2_Object_Object_ other, MethodInfo * method)); -DO_APP_FUNC(0x0114F560, bool, ValueTuple_2_Object_Object__Equals, (ValueTuple_2_Object_Object___Boxed * __this, ValueTuple_2_Object_Object_ other, MethodInfo * method)); -DO_APP_FUNC(0x0114F440, bool, ValueTuple_2_Object_Object__Equals_1, (ValueTuple_2_Object_Object___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x01153680, int32_t, ValueTuple_2_Object_Object__GetHashCode, (ValueTuple_2_Object_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01153790, int32_t, ValueTuple_2_Object_Object__GetHashCodeCore, (ValueTuple_2_Object_Object___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01153470, int32_t, ValueTuple_2_Object_Object__System_Collections_IStructuralComparable_CompareTo, (ValueTuple_2_Object_Object___Boxed * __this, Object * other, IComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01153140, bool, ValueTuple_2_Object_Object__System_Collections_IStructuralEquatable_Equals, (ValueTuple_2_Object_Object___Boxed * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x011536F0, int32_t, ValueTuple_2_Object_Object__System_Collections_IStructuralEquatable_GetHashCode, (ValueTuple_2_Object_Object___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01153290, int32_t, ValueTuple_2_Object_Object__System_IComparable_CompareTo, (ValueTuple_2_Object_Object___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x011536F0, int32_t, ValueTuple_2_Object_Object__System_IValueTupleInternal_GetHashCode, (ValueTuple_2_Object_Object___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01153A60, String *, ValueTuple_2_Object_Object__System_IValueTupleInternal_ToStringEnd, (ValueTuple_2_Object_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0072BFF0, int32_t, ValueTuple_2_Object_Object__System_Runtime_CompilerServices_ITuple_get_Length, (ValueTuple_2_Object_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01153820, String *, ValueTuple_2_Object_Object__ToString, (ValueTuple_2_Object_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003CAF50, void, ValueTuple_2_Single_Single___ctor, (ValueTuple_2_Single_Single___Boxed * __this, float item1, float item2, MethodInfo * method)); -DO_APP_FUNC(0x011541C0, int32_t, ValueTuple_2_Single_Single__CompareTo, (ValueTuple_2_Single_Single___Boxed * __this, ValueTuple_2_Single_Single_ other, MethodInfo * method)); -DO_APP_FUNC(0x01153C40, bool, ValueTuple_2_Single_Single__Equals, (ValueTuple_2_Single_Single___Boxed * __this, ValueTuple_2_Single_Single_ other, MethodInfo * method)); -DO_APP_FUNC(0x01153B20, bool, ValueTuple_2_Single_Single__Equals_1, (ValueTuple_2_Single_Single___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x01154620, int32_t, ValueTuple_2_Single_Single__GetHashCode, (ValueTuple_2_Single_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01154700, int32_t, ValueTuple_2_Single_Single__GetHashCodeCore, (ValueTuple_2_Single_Single___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x011542E0, int32_t, ValueTuple_2_Single_Single__System_Collections_IStructuralComparable_CompareTo, (ValueTuple_2_Single_Single___Boxed * __this, Object * other, IComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01153D60, bool, ValueTuple_2_Single_Single__System_Collections_IStructuralEquatable_Equals, (ValueTuple_2_Single_Single___Boxed * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x011546B0, int32_t, ValueTuple_2_Single_Single__System_Collections_IStructuralEquatable_GetHashCode, (ValueTuple_2_Single_Single___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01153FE0, int32_t, ValueTuple_2_Single_Single__System_IComparable_CompareTo, (ValueTuple_2_Single_Single___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x011546B0, int32_t, ValueTuple_2_Single_Single__System_IValueTupleInternal_GetHashCode, (ValueTuple_2_Single_Single___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01154A90, String *, ValueTuple_2_Single_Single__System_IValueTupleInternal_ToStringEnd, (ValueTuple_2_Single_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0072BFF0, int32_t, ValueTuple_2_Single_Single__System_Runtime_CompilerServices_ITuple_get_Length, (ValueTuple_2_Single_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01154830, String *, ValueTuple_2_Single_Single__ToString, (ValueTuple_2_Single_Single___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01154B70, void, ValueTuple_2_UnityEngine_Vector3Int_Object___ctor, (ValueTuple_2_UnityEngine_Vector3Int_Object___Boxed * __this, Vector3Int item1, Object * item2, MethodInfo * method)); -DO_APP_FUNC(0x01155240, int32_t, ValueTuple_2_UnityEngine_Vector3Int_Object__CompareTo, (ValueTuple_2_UnityEngine_Vector3Int_Object___Boxed * __this, ValueTuple_2_UnityEngine_Vector3Int_Object_ other, MethodInfo * method)); -DO_APP_FUNC(0x01154D00, bool, ValueTuple_2_UnityEngine_Vector3Int_Object__Equals, (ValueTuple_2_UnityEngine_Vector3Int_Object___Boxed * __this, ValueTuple_2_UnityEngine_Vector3Int_Object_ other, MethodInfo * method)); -DO_APP_FUNC(0x01154BE0, bool, ValueTuple_2_UnityEngine_Vector3Int_Object__Equals_1, (ValueTuple_2_UnityEngine_Vector3Int_Object___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x01155670, int32_t, ValueTuple_2_UnityEngine_Vector3Int_Object__GetHashCode, (ValueTuple_2_UnityEngine_Vector3Int_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01155740, int32_t, ValueTuple_2_UnityEngine_Vector3Int_Object__GetHashCodeCore, (ValueTuple_2_UnityEngine_Vector3Int_Object___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x011553A0, int32_t, ValueTuple_2_UnityEngine_Vector3Int_Object__System_Collections_IStructuralComparable_CompareTo, (ValueTuple_2_UnityEngine_Vector3Int_Object___Boxed * __this, Object * other, IComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01154E50, bool, ValueTuple_2_UnityEngine_Vector3Int_Object__System_Collections_IStructuralEquatable_Equals, (ValueTuple_2_UnityEngine_Vector3Int_Object___Boxed * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x011556F0, int32_t, ValueTuple_2_UnityEngine_Vector3Int_Object__System_Collections_IStructuralEquatable_GetHashCode, (ValueTuple_2_UnityEngine_Vector3Int_Object___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01155050, int32_t, ValueTuple_2_UnityEngine_Vector3Int_Object__System_IComparable_CompareTo, (ValueTuple_2_UnityEngine_Vector3Int_Object___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x011556F0, int32_t, ValueTuple_2_UnityEngine_Vector3Int_Object__System_IValueTupleInternal_GetHashCode, (ValueTuple_2_UnityEngine_Vector3Int_Object___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01155A70, String *, ValueTuple_2_UnityEngine_Vector3Int_Object__System_IValueTupleInternal_ToStringEnd, (ValueTuple_2_UnityEngine_Vector3Int_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0072BFF0, int32_t, ValueTuple_2_UnityEngine_Vector3Int_Object__System_Runtime_CompilerServices_ITuple_get_Length, (ValueTuple_2_UnityEngine_Vector3Int_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01155820, String *, ValueTuple_2_UnityEngine_Vector3Int_Object__ToString, (ValueTuple_2_UnityEngine_Vector3Int_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01155B40, void, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel___ctor, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel___Boxed * __this, Vector3Int item1, RoomChannel item2, MethodInfo * method)); -DO_APP_FUNC(0x011563B0, int32_t, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel__CompareTo, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel___Boxed * __this, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_ other, MethodInfo * method)); -DO_APP_FUNC(0x01155D00, bool, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel__Equals, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel___Boxed * __this, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_ other, MethodInfo * method)); -DO_APP_FUNC(0x01155BC0, bool, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel__Equals_1, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x01156940, int32_t, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel__GetHashCode, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01156A80, int32_t, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel__GetHashCodeCore, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01156570, int32_t, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel__System_Collections_IStructuralComparable_CompareTo, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel___Boxed * __this, Object * other, IComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01155EA0, bool, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel__System_Collections_IStructuralEquatable_Equals, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel___Boxed * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01156A30, int32_t, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel__System_Collections_IStructuralEquatable_GetHashCode, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01156190, int32_t, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel__System_IComparable_CompareTo, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x01156A30, int32_t, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel__System_IValueTupleInternal_GetHashCode, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01156E50, String *, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel__System_IValueTupleInternal_ToStringEnd, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0072BFF0, int32_t, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel__System_Runtime_CompilerServices_ITuple_get_Length, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01156BD0, String *, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel__ToString, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01156F60, void, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership___ctor, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership___Boxed * __this, Vector3Int item1, RoomMembership item2, MethodInfo * method)); -DO_APP_FUNC(0x01157740, int32_t, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership__CompareTo, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership___Boxed * __this, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_ other, MethodInfo * method)); -DO_APP_FUNC(0x01157100, bool, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership__Equals, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership___Boxed * __this, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_ other, MethodInfo * method)); -DO_APP_FUNC(0x01156FD0, bool, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership__Equals_1, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x01157C60, int32_t, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership__GetHashCode, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01157E00, int32_t, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership__GetHashCodeCore, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x011578D0, int32_t, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership__System_Collections_IStructuralComparable_CompareTo, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership___Boxed * __this, Object * other, IComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01157280, bool, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership__System_Collections_IStructuralEquatable_Equals, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership___Boxed * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01157DB0, int32_t, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership__System_Collections_IStructuralEquatable_GetHashCode, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01157540, int32_t, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership__System_IComparable_CompareTo, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x01157DB0, int32_t, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership__System_IValueTupleInternal_GetHashCode, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x011581C0, String *, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership__System_IValueTupleInternal_ToStringEnd, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0072BFF0, int32_t, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership__System_Runtime_CompilerServices_ITuple_get_Length, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01157F40, String *, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership__ToString, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x011582D0, void, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int___ctor, (ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int___Boxed * __this, Vector4 item1, Vector2Int item2, MethodInfo * method)); +DO_APP_FUNC(0x0114EA70, int32_t, ValueTuple_2_Int32_UnityEngine_Vector2Int__CompareTo, (ValueTuple_2_Int32_UnityEngine_Vector2Int_ * __this, ValueTuple_2_Int32_UnityEngine_Vector2Int_ other, MethodInfo * method)); +DO_APP_FUNC(0x0114E4F0, bool, ValueTuple_2_Int32_UnityEngine_Vector2Int__Equals, (ValueTuple_2_Int32_UnityEngine_Vector2Int_ * __this, ValueTuple_2_Int32_UnityEngine_Vector2Int_ other, MethodInfo * method)); +DO_APP_FUNC(0x0114E3D0, bool, ValueTuple_2_Int32_UnityEngine_Vector2Int__Equals_1, (ValueTuple_2_Int32_UnityEngine_Vector2Int_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x0114EED0, int32_t, ValueTuple_2_Int32_UnityEngine_Vector2Int__GetHashCode, (ValueTuple_2_Int32_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0114EF80, int32_t, ValueTuple_2_Int32_UnityEngine_Vector2Int__GetHashCodeCore, (ValueTuple_2_Int32_UnityEngine_Vector2Int_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x0114EB90, int32_t, ValueTuple_2_Int32_UnityEngine_Vector2Int__System_Collections_IStructuralComparable_CompareTo, (ValueTuple_2_Int32_UnityEngine_Vector2Int_ * __this, Object * other, IComparer * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD670, ValueTuple_2_Int32_UnityEngine_Vector2Int__System_Collections_IStructuralComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x0114E610, bool, ValueTuple_2_Int32_UnityEngine_Vector2Int__System_Collections_IStructuralEquatable_Equals, (ValueTuple_2_Int32_UnityEngine_Vector2Int_ * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x0114EF30, int32_t, ValueTuple_2_Int32_UnityEngine_Vector2Int__System_Collections_IStructuralEquatable_GetHashCode, (ValueTuple_2_Int32_UnityEngine_Vector2Int_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x0114E880, int32_t, ValueTuple_2_Int32_UnityEngine_Vector2Int__System_IComparable_CompareTo, (ValueTuple_2_Int32_UnityEngine_Vector2Int_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD668, ValueTuple_2_Int32_UnityEngine_Vector2Int__System_IComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x0114EF30, int32_t, ValueTuple_2_Int32_UnityEngine_Vector2Int__System_IValueTupleInternal_GetHashCode, (ValueTuple_2_Int32_UnityEngine_Vector2Int_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x0114F300, String *, ValueTuple_2_Int32_UnityEngine_Vector2Int__System_IValueTupleInternal_ToStringEnd, (ValueTuple_2_Int32_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0072BFF0, int32_t, ValueTuple_2_Int32_UnityEngine_Vector2Int__System_Runtime_CompilerServices_ITuple_get_Length, (ValueTuple_2_Int32_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0114F0B0, String *, ValueTuple_2_Int32_UnityEngine_Vector2Int__ToString, (ValueTuple_2_Int32_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0114F3E0, void, ValueTuple_2_IntPtr_Object___ctor, (ValueTuple_2_IntPtr_Object_ * __this, void * item1, Object * item2, MethodInfo * method)); +DO_APP_FUNC(0x0114FA40, int32_t, ValueTuple_2_IntPtr_Object__CompareTo, (ValueTuple_2_IntPtr_Object_ * __this, ValueTuple_2_IntPtr_Object_ other, MethodInfo * method)); +DO_APP_FUNC(0x0114F560, bool, ValueTuple_2_IntPtr_Object__Equals, (ValueTuple_2_IntPtr_Object_ * __this, ValueTuple_2_IntPtr_Object_ other, MethodInfo * method)); +DO_APP_FUNC(0x0114F440, bool, ValueTuple_2_IntPtr_Object__Equals_1, (ValueTuple_2_IntPtr_Object_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x0114DF10, int32_t, ValueTuple_2_IntPtr_Object__GetHashCode, (ValueTuple_2_IntPtr_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0114FE50, int32_t, ValueTuple_2_IntPtr_Object__GetHashCodeCore, (ValueTuple_2_IntPtr_Object_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x0114FB60, int32_t, ValueTuple_2_IntPtr_Object__System_Collections_IStructuralComparable_CompareTo, (ValueTuple_2_IntPtr_Object_ * __this, Object * other, IComparer * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD648, ValueTuple_2_IntPtr_Object__System_Collections_IStructuralComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x0114F680, bool, ValueTuple_2_IntPtr_Object__System_Collections_IStructuralEquatable_Equals, (ValueTuple_2_IntPtr_Object_ * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x0114FE00, int32_t, ValueTuple_2_IntPtr_Object__System_Collections_IStructuralEquatable_GetHashCode, (ValueTuple_2_IntPtr_Object_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x0114F860, int32_t, ValueTuple_2_IntPtr_Object__System_IComparable_CompareTo, (ValueTuple_2_IntPtr_Object_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD640, ValueTuple_2_IntPtr_Object__System_IComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x0114FE00, int32_t, ValueTuple_2_IntPtr_Object__System_IValueTupleInternal_GetHashCode, (ValueTuple_2_IntPtr_Object_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01150180, String *, ValueTuple_2_IntPtr_Object__System_IValueTupleInternal_ToStringEnd, (ValueTuple_2_IntPtr_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0072BFF0, int32_t, ValueTuple_2_IntPtr_Object__System_Runtime_CompilerServices_ITuple_get_Length, (ValueTuple_2_IntPtr_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0114FF30, String *, ValueTuple_2_IntPtr_Object__ToString, (ValueTuple_2_IntPtr_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01150250, void, ValueTuple_2_Object_ValueTuple_2_Object_Int32___ctor, (ValueTuple_2_Object_ValueTuple_2_Object_Int32_ * __this, Object * item1, ValueTuple_2_Object_Int32_ item2, MethodInfo * method)); +DO_APP_FUNC(0x01150960, int32_t, ValueTuple_2_Object_ValueTuple_2_Object_Int32__CompareTo, (ValueTuple_2_Object_ValueTuple_2_Object_Int32_ * __this, ValueTuple_2_Object_ValueTuple_2_Object_Int32_ other, MethodInfo * method)); +DO_APP_FUNC(0x01150420, bool, ValueTuple_2_Object_ValueTuple_2_Object_Int32__Equals, (ValueTuple_2_Object_ValueTuple_2_Object_Int32_ * __this, ValueTuple_2_Object_ValueTuple_2_Object_Int32_ other, MethodInfo * method)); +DO_APP_FUNC(0x01150300, bool, ValueTuple_2_Object_ValueTuple_2_Object_Int32__Equals_1, (ValueTuple_2_Object_ValueTuple_2_Object_Int32_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x01150D90, int32_t, ValueTuple_2_Object_ValueTuple_2_Object_Int32__GetHashCode, (ValueTuple_2_Object_ValueTuple_2_Object_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01150E70, int32_t, ValueTuple_2_Object_ValueTuple_2_Object_Int32__GetHashCodeCore, (ValueTuple_2_Object_ValueTuple_2_Object_Int32_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01150AC0, int32_t, ValueTuple_2_Object_ValueTuple_2_Object_Int32__System_Collections_IStructuralComparable_CompareTo, (ValueTuple_2_Object_ValueTuple_2_Object_Int32_ * __this, Object * other, IComparer * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD5B8, ValueTuple_2_Object_ValueTuple_2_Object_Int32__System_Collections_IStructuralComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x01150570, bool, ValueTuple_2_Object_ValueTuple_2_Object_Int32__System_Collections_IStructuralEquatable_Equals, (ValueTuple_2_Object_ValueTuple_2_Object_Int32_ * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01150E20, int32_t, ValueTuple_2_Object_ValueTuple_2_Object_Int32__System_Collections_IStructuralEquatable_GetHashCode, (ValueTuple_2_Object_ValueTuple_2_Object_Int32_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01150770, int32_t, ValueTuple_2_Object_ValueTuple_2_Object_Int32__System_IComparable_CompareTo, (ValueTuple_2_Object_ValueTuple_2_Object_Int32_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD5B0, ValueTuple_2_Object_ValueTuple_2_Object_Int32__System_IComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x01150E20, int32_t, ValueTuple_2_Object_ValueTuple_2_Object_Int32__System_IValueTupleInternal_GetHashCode, (ValueTuple_2_Object_ValueTuple_2_Object_Int32_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x011511C0, String *, ValueTuple_2_Object_ValueTuple_2_Object_Int32__System_IValueTupleInternal_ToStringEnd, (ValueTuple_2_Object_ValueTuple_2_Object_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0072BFF0, int32_t, ValueTuple_2_Object_ValueTuple_2_Object_Int32__System_Runtime_CompilerServices_ITuple_get_Length, (ValueTuple_2_Object_ValueTuple_2_Object_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01150F60, String *, ValueTuple_2_Object_ValueTuple_2_Object_Int32__ToString, (ValueTuple_2_Object_ValueTuple_2_Object_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x011512A0, void, ValueTuple_2_Object_Boolean___ctor, (ValueTuple_2_Object_Boolean_ * __this, Object * item1, bool item2, MethodInfo * method)); +DO_APP_FUNC(0x01151900, int32_t, ValueTuple_2_Object_Boolean__CompareTo, (ValueTuple_2_Object_Boolean_ * __this, ValueTuple_2_Object_Boolean_ other, MethodInfo * method)); +DO_APP_FUNC(0x01151420, bool, ValueTuple_2_Object_Boolean__Equals, (ValueTuple_2_Object_Boolean_ * __this, ValueTuple_2_Object_Boolean_ other, MethodInfo * method)); +DO_APP_FUNC(0x01151300, bool, ValueTuple_2_Object_Boolean__Equals_1, (ValueTuple_2_Object_Boolean_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x01151CD0, int32_t, ValueTuple_2_Object_Boolean__GetHashCode, (ValueTuple_2_Object_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01151DD0, int32_t, ValueTuple_2_Object_Boolean__GetHashCodeCore, (ValueTuple_2_Object_Boolean_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01151A20, int32_t, ValueTuple_2_Object_Boolean__System_Collections_IStructuralComparable_CompareTo, (ValueTuple_2_Object_Boolean_ * __this, Object * other, IComparer * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD5A8, ValueTuple_2_Object_Boolean__System_Collections_IStructuralComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x01151540, bool, ValueTuple_2_Object_Boolean__System_Collections_IStructuralEquatable_Equals, (ValueTuple_2_Object_Boolean_ * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01151D80, int32_t, ValueTuple_2_Object_Boolean__System_Collections_IStructuralEquatable_GetHashCode, (ValueTuple_2_Object_Boolean_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01151720, int32_t, ValueTuple_2_Object_Boolean__System_IComparable_CompareTo, (ValueTuple_2_Object_Boolean_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD5A0, ValueTuple_2_Object_Boolean__System_IComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x01151D80, int32_t, ValueTuple_2_Object_Boolean__System_IValueTupleInternal_GetHashCode, (ValueTuple_2_Object_Boolean_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01152160, String *, ValueTuple_2_Object_Boolean__System_IValueTupleInternal_ToStringEnd, (ValueTuple_2_Object_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0072BFF0, int32_t, ValueTuple_2_Object_Boolean__System_Runtime_CompilerServices_ITuple_get_Length, (ValueTuple_2_Object_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01151EC0, String *, ValueTuple_2_Object_Boolean__ToString, (ValueTuple_2_Object_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x004CB450, void, ValueTuple_2_Object_Int32___ctor, (ValueTuple_2_Object_Int32_ * __this, Object * item1, int32_t item2, MethodInfo * method)); +DO_APP_FUNC(0x01152890, int32_t, ValueTuple_2_Object_Int32__CompareTo, (ValueTuple_2_Object_Int32_ * __this, ValueTuple_2_Object_Int32_ other, MethodInfo * method)); +DO_APP_FUNC(0x011523B0, bool, ValueTuple_2_Object_Int32__Equals, (ValueTuple_2_Object_Int32_ * __this, ValueTuple_2_Object_Int32_ other, MethodInfo * method)); +DO_APP_FUNC(0x01152290, bool, ValueTuple_2_Object_Int32__Equals_1, (ValueTuple_2_Object_Int32_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x01152C60, int32_t, ValueTuple_2_Object_Int32__GetHashCode, (ValueTuple_2_Object_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01152D20, int32_t, ValueTuple_2_Object_Int32__GetHashCodeCore, (ValueTuple_2_Object_Int32_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x011529B0, int32_t, ValueTuple_2_Object_Int32__System_Collections_IStructuralComparable_CompareTo, (ValueTuple_2_Object_Int32_ * __this, Object * other, IComparer * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD538, ValueTuple_2_Object_Int32__System_Collections_IStructuralComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x011524D0, bool, ValueTuple_2_Object_Int32__System_Collections_IStructuralEquatable_Equals, (ValueTuple_2_Object_Int32_ * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01152CD0, int32_t, ValueTuple_2_Object_Int32__System_Collections_IStructuralEquatable_GetHashCode, (ValueTuple_2_Object_Int32_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x011526B0, int32_t, ValueTuple_2_Object_Int32__System_IComparable_CompareTo, (ValueTuple_2_Object_Int32_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD530, ValueTuple_2_Object_Int32__System_IComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x01152CD0, int32_t, ValueTuple_2_Object_Int32__System_IValueTupleInternal_GetHashCode, (ValueTuple_2_Object_Int32_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01153060, String *, ValueTuple_2_Object_Int32__System_IValueTupleInternal_ToStringEnd, (ValueTuple_2_Object_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0072BFF0, int32_t, ValueTuple_2_Object_Int32__System_Runtime_CompilerServices_ITuple_get_Length, (ValueTuple_2_Object_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01152E10, String *, ValueTuple_2_Object_Int32__ToString, (ValueTuple_2_Object_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00A76400, void, ValueTuple_2_Object_Object___ctor, (ValueTuple_2_Object_Object_ * __this, Object * item1, Object * item2, MethodInfo * method)); +DO_APP_FUNC(0x0114FA40, int32_t, ValueTuple_2_Object_Object__CompareTo, (ValueTuple_2_Object_Object_ * __this, ValueTuple_2_Object_Object_ other, MethodInfo * method)); +DO_APP_FUNC(0x0114F560, bool, ValueTuple_2_Object_Object__Equals, (ValueTuple_2_Object_Object_ * __this, ValueTuple_2_Object_Object_ other, MethodInfo * method)); +DO_APP_FUNC(0x0114F440, bool, ValueTuple_2_Object_Object__Equals_1, (ValueTuple_2_Object_Object_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x01153680, int32_t, ValueTuple_2_Object_Object__GetHashCode, (ValueTuple_2_Object_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01153790, int32_t, ValueTuple_2_Object_Object__GetHashCodeCore, (ValueTuple_2_Object_Object_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01153470, int32_t, ValueTuple_2_Object_Object__System_Collections_IStructuralComparable_CompareTo, (ValueTuple_2_Object_Object_ * __this, Object * other, IComparer * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0160, ValueTuple_2_Object_Object__System_Collections_IStructuralComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x01153140, bool, ValueTuple_2_Object_Object__System_Collections_IStructuralEquatable_Equals, (ValueTuple_2_Object_Object_ * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x011536F0, int32_t, ValueTuple_2_Object_Object__System_Collections_IStructuralEquatable_GetHashCode, (ValueTuple_2_Object_Object_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01153290, int32_t, ValueTuple_2_Object_Object__System_IComparable_CompareTo, (ValueTuple_2_Object_Object_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0168, ValueTuple_2_Object_Object__System_IComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x011536F0, int32_t, ValueTuple_2_Object_Object__System_IValueTupleInternal_GetHashCode, (ValueTuple_2_Object_Object_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01153A60, String *, ValueTuple_2_Object_Object__System_IValueTupleInternal_ToStringEnd, (ValueTuple_2_Object_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0072BFF0, int32_t, ValueTuple_2_Object_Object__System_Runtime_CompilerServices_ITuple_get_Length, (ValueTuple_2_Object_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01153820, String *, ValueTuple_2_Object_Object__ToString, (ValueTuple_2_Object_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003CAF50, void, ValueTuple_2_Single_Single___ctor, (ValueTuple_2_Single_Single_ * __this, float item1, float item2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE8608, ValueTuple_2_Single_Single___ctor__MethodInfo); +DO_APP_FUNC(0x011541C0, int32_t, ValueTuple_2_Single_Single__CompareTo, (ValueTuple_2_Single_Single_ * __this, ValueTuple_2_Single_Single_ other, MethodInfo * method)); +DO_APP_FUNC(0x01153C40, bool, ValueTuple_2_Single_Single__Equals, (ValueTuple_2_Single_Single_ * __this, ValueTuple_2_Single_Single_ other, MethodInfo * method)); +DO_APP_FUNC(0x01153B20, bool, ValueTuple_2_Single_Single__Equals_1, (ValueTuple_2_Single_Single_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x01154620, int32_t, ValueTuple_2_Single_Single__GetHashCode, (ValueTuple_2_Single_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01154700, int32_t, ValueTuple_2_Single_Single__GetHashCodeCore, (ValueTuple_2_Single_Single_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x011542E0, int32_t, ValueTuple_2_Single_Single__System_Collections_IStructuralComparable_CompareTo, (ValueTuple_2_Single_Single_ * __this, Object * other, IComparer * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0158, ValueTuple_2_Single_Single__System_Collections_IStructuralComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x01153D60, bool, ValueTuple_2_Single_Single__System_Collections_IStructuralEquatable_Equals, (ValueTuple_2_Single_Single_ * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x011546B0, int32_t, ValueTuple_2_Single_Single__System_Collections_IStructuralEquatable_GetHashCode, (ValueTuple_2_Single_Single_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01153FE0, int32_t, ValueTuple_2_Single_Single__System_IComparable_CompareTo, (ValueTuple_2_Single_Single_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0150, ValueTuple_2_Single_Single__System_IComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x011546B0, int32_t, ValueTuple_2_Single_Single__System_IValueTupleInternal_GetHashCode, (ValueTuple_2_Single_Single_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01154A90, String *, ValueTuple_2_Single_Single__System_IValueTupleInternal_ToStringEnd, (ValueTuple_2_Single_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0072BFF0, int32_t, ValueTuple_2_Single_Single__System_Runtime_CompilerServices_ITuple_get_Length, (ValueTuple_2_Single_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01154830, String *, ValueTuple_2_Single_Single__ToString, (ValueTuple_2_Single_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01154B70, void, ValueTuple_2_UnityEngine_Vector3Int_Object___ctor, (ValueTuple_2_UnityEngine_Vector3Int_Object_ * __this, Vector3Int item1, Object * item2, MethodInfo * method)); +DO_APP_FUNC(0x01155240, int32_t, ValueTuple_2_UnityEngine_Vector3Int_Object__CompareTo, (ValueTuple_2_UnityEngine_Vector3Int_Object_ * __this, ValueTuple_2_UnityEngine_Vector3Int_Object_ other, MethodInfo * method)); +DO_APP_FUNC(0x01154D00, bool, ValueTuple_2_UnityEngine_Vector3Int_Object__Equals, (ValueTuple_2_UnityEngine_Vector3Int_Object_ * __this, ValueTuple_2_UnityEngine_Vector3Int_Object_ other, MethodInfo * method)); +DO_APP_FUNC(0x01154BE0, bool, ValueTuple_2_UnityEngine_Vector3Int_Object__Equals_1, (ValueTuple_2_UnityEngine_Vector3Int_Object_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x01155670, int32_t, ValueTuple_2_UnityEngine_Vector3Int_Object__GetHashCode, (ValueTuple_2_UnityEngine_Vector3Int_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01155740, int32_t, ValueTuple_2_UnityEngine_Vector3Int_Object__GetHashCodeCore, (ValueTuple_2_UnityEngine_Vector3Int_Object_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x011553A0, int32_t, ValueTuple_2_UnityEngine_Vector3Int_Object__System_Collections_IStructuralComparable_CompareTo, (ValueTuple_2_UnityEngine_Vector3Int_Object_ * __this, Object * other, IComparer * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0140, ValueTuple_2_UnityEngine_Vector3Int_Object__System_Collections_IStructuralComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x01154E50, bool, ValueTuple_2_UnityEngine_Vector3Int_Object__System_Collections_IStructuralEquatable_Equals, (ValueTuple_2_UnityEngine_Vector3Int_Object_ * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x011556F0, int32_t, ValueTuple_2_UnityEngine_Vector3Int_Object__System_Collections_IStructuralEquatable_GetHashCode, (ValueTuple_2_UnityEngine_Vector3Int_Object_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01155050, int32_t, ValueTuple_2_UnityEngine_Vector3Int_Object__System_IComparable_CompareTo, (ValueTuple_2_UnityEngine_Vector3Int_Object_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0148, ValueTuple_2_UnityEngine_Vector3Int_Object__System_IComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x011556F0, int32_t, ValueTuple_2_UnityEngine_Vector3Int_Object__System_IValueTupleInternal_GetHashCode, (ValueTuple_2_UnityEngine_Vector3Int_Object_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01155A70, String *, ValueTuple_2_UnityEngine_Vector3Int_Object__System_IValueTupleInternal_ToStringEnd, (ValueTuple_2_UnityEngine_Vector3Int_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0072BFF0, int32_t, ValueTuple_2_UnityEngine_Vector3Int_Object__System_Runtime_CompilerServices_ITuple_get_Length, (ValueTuple_2_UnityEngine_Vector3Int_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01155820, String *, ValueTuple_2_UnityEngine_Vector3Int_Object__ToString, (ValueTuple_2_UnityEngine_Vector3Int_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01155B40, void, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel___ctor, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_ * __this, Vector3Int item1, RoomChannel item2, MethodInfo * method)); +DO_APP_FUNC(0x011563B0, int32_t, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel__CompareTo, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_ * __this, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_ other, MethodInfo * method)); +DO_APP_FUNC(0x01155D00, bool, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel__Equals, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_ * __this, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_ other, MethodInfo * method)); +DO_APP_FUNC(0x01155BC0, bool, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel__Equals_1, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x01156940, int32_t, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel__GetHashCode, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01156A80, int32_t, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel__GetHashCodeCore, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01156570, int32_t, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel__System_Collections_IStructuralComparable_CompareTo, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_ * __this, Object * other, IComparer * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0138, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel__System_Collections_IStructuralComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x01155EA0, bool, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel__System_Collections_IStructuralEquatable_Equals, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_ * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01156A30, int32_t, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel__System_Collections_IStructuralEquatable_GetHashCode, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01156190, int32_t, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel__System_IComparable_CompareTo, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0130, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel__System_IComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x01156A30, int32_t, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel__System_IValueTupleInternal_GetHashCode, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01156E50, String *, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel__System_IValueTupleInternal_ToStringEnd, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0072BFF0, int32_t, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel__System_Runtime_CompilerServices_ITuple_get_Length, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01156BD0, String *, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel__ToString, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01156F60, void, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership___ctor, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_ * __this, Vector3Int item1, RoomMembership item2, MethodInfo * method)); +DO_APP_FUNC(0x01157740, int32_t, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership__CompareTo, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_ * __this, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_ other, MethodInfo * method)); +DO_APP_FUNC(0x01157100, bool, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership__Equals, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_ * __this, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_ other, MethodInfo * method)); +DO_APP_FUNC(0x01156FD0, bool, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership__Equals_1, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x01157C60, int32_t, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership__GetHashCode, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01157E00, int32_t, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership__GetHashCodeCore, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x011578D0, int32_t, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership__System_Collections_IStructuralComparable_CompareTo, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_ * __this, Object * other, IComparer * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0120, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership__System_Collections_IStructuralComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x01157280, bool, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership__System_Collections_IStructuralEquatable_Equals, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_ * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01157DB0, int32_t, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership__System_Collections_IStructuralEquatable_GetHashCode, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01157540, int32_t, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership__System_IComparable_CompareTo, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0128, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership__System_IComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x01157DB0, int32_t, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership__System_IValueTupleInternal_GetHashCode, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x011581C0, String *, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership__System_IValueTupleInternal_ToStringEnd, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0072BFF0, int32_t, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership__System_Runtime_CompilerServices_ITuple_get_Length, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01157F40, String *, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership__ToString, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x011582D0, void, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int___ctor, (ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int_ * __this, Vector4 item1, Vector2Int item2, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C979B8, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int___ctor__MethodInfo); -DO_APP_FUNC(0x011589B0, int32_t, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int__CompareTo, (ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int___Boxed * __this, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int_ other, MethodInfo * method)); -DO_APP_FUNC(0x01158400, bool, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int__Equals, (ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int___Boxed * __this, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int_ other, MethodInfo * method)); -DO_APP_FUNC(0x011582E0, bool, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int__Equals_1, (ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x01158E50, int32_t, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int__GetHashCode, (ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01158F10, int32_t, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int__GetHashCodeCore, (ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01158B00, int32_t, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int__System_Collections_IStructuralComparable_CompareTo, (ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int___Boxed * __this, Object * other, IComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01158540, bool, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int__System_Collections_IStructuralEquatable_Equals, (ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int___Boxed * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01158EC0, int32_t, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int__System_Collections_IStructuralEquatable_GetHashCode, (ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x011587C0, int32_t, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int__System_IComparable_CompareTo, (ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x01158EC0, int32_t, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int__System_IValueTupleInternal_GetHashCode, (ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01159290, String *, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int__System_IValueTupleInternal_ToStringEnd, (ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0072BFF0, int32_t, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int__System_Runtime_CompilerServices_ITuple_get_Length, (ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01159040, String *, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int__ToString, (ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01159370, void, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4___ctor, (ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4___Boxed * __this, Vector4 item1, Vector4 item2, MethodInfo * method)); +DO_APP_FUNC(0x011589B0, int32_t, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int__CompareTo, (ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int_ * __this, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int_ other, MethodInfo * method)); +DO_APP_FUNC(0x01158400, bool, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int__Equals, (ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int_ * __this, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int_ other, MethodInfo * method)); +DO_APP_FUNC(0x011582E0, bool, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int__Equals_1, (ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x01158E50, int32_t, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int__GetHashCode, (ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01158F10, int32_t, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int__GetHashCodeCore, (ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01158B00, int32_t, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int__System_Collections_IStructuralComparable_CompareTo, (ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int_ * __this, Object * other, IComparer * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0110, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int__System_Collections_IStructuralComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x01158540, bool, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int__System_Collections_IStructuralEquatable_Equals, (ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int_ * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01158EC0, int32_t, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int__System_Collections_IStructuralEquatable_GetHashCode, (ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x011587C0, int32_t, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int__System_IComparable_CompareTo, (ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0100, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int__System_IComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x01158EC0, int32_t, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int__System_IValueTupleInternal_GetHashCode, (ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01159290, String *, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int__System_IValueTupleInternal_ToStringEnd, (ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0072BFF0, int32_t, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int__System_Runtime_CompilerServices_ITuple_get_Length, (ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01159040, String *, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int__ToString, (ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01159370, void, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4___ctor, (ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4_ * __this, Vector4 item1, Vector4 item2, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C99DF8, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4___ctor__MethodInfo); -DO_APP_FUNC(0x01159A60, int32_t, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4__CompareTo, (ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4___Boxed * __this, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4_ other, MethodInfo * method)); -DO_APP_FUNC(0x011594A0, bool, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4__Equals, (ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4___Boxed * __this, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4_ other, MethodInfo * method)); -DO_APP_FUNC(0x01159380, bool, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4__Equals_1, (ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x01159F00, int32_t, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4__GetHashCode, (ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01159FD0, int32_t, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4__GetHashCodeCore, (ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01159BC0, int32_t, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4__System_Collections_IStructuralComparable_CompareTo, (ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4___Boxed * __this, Object * other, IComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x011595F0, bool, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4__System_Collections_IStructuralEquatable_Equals, (ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4___Boxed * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01159F80, int32_t, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4__System_Collections_IStructuralEquatable_GetHashCode, (ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01159870, int32_t, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4__System_IComparable_CompareTo, (ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x01159F80, int32_t, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4__System_IValueTupleInternal_GetHashCode, (ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x0115A360, String *, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4__System_IValueTupleInternal_ToStringEnd, (ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0072BFF0, int32_t, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4__System_Runtime_CompilerServices_ITuple_get_Length, (ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0115A100, String *, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4__ToString, (ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00FDBDC0, void, ValueTuple_3_Object_Int32_Int32___ctor, (ValueTuple_3_Object_Int32_Int32___Boxed * __this, Object * item1, int32_t item2, int32_t item3, MethodInfo * method)); -DO_APP_FUNC(0x0115AB70, int32_t, ValueTuple_3_Object_Int32_Int32__CompareTo, (ValueTuple_3_Object_Int32_Int32___Boxed * __this, ValueTuple_3_Object_Int32_Int32_ other, MethodInfo * method)); -DO_APP_FUNC(0x0115A560, bool, ValueTuple_3_Object_Int32_Int32__Equals, (ValueTuple_3_Object_Int32_Int32___Boxed * __this, ValueTuple_3_Object_Int32_Int32_ other, MethodInfo * method)); -DO_APP_FUNC(0x0115A440, bool, ValueTuple_3_Object_Int32_Int32__Equals_1, (ValueTuple_3_Object_Int32_Int32___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0115B080, int32_t, ValueTuple_3_Object_Int32_Int32__GetHashCode, (ValueTuple_3_Object_Int32_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0115B160, int32_t, ValueTuple_3_Object_Int32_Int32__GetHashCodeCore, (ValueTuple_3_Object_Int32_Int32___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x0115AD10, int32_t, ValueTuple_3_Object_Int32_Int32__System_Collections_IStructuralComparable_CompareTo, (ValueTuple_3_Object_Int32_Int32___Boxed * __this, Object * other, IComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x0115A6F0, bool, ValueTuple_3_Object_Int32_Int32__System_Collections_IStructuralEquatable_Equals, (ValueTuple_3_Object_Int32_Int32___Boxed * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x0115B110, int32_t, ValueTuple_3_Object_Int32_Int32__System_Collections_IStructuralEquatable_GetHashCode, (ValueTuple_3_Object_Int32_Int32___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x0115A990, int32_t, ValueTuple_3_Object_Int32_Int32__System_IComparable_CompareTo, (ValueTuple_3_Object_Int32_Int32___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x0115B110, int32_t, ValueTuple_3_Object_Int32_Int32__System_IValueTupleInternal_GetHashCode, (ValueTuple_3_Object_Int32_Int32___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x0115B5C0, String *, ValueTuple_3_Object_Int32_Int32__System_IValueTupleInternal_ToStringEnd, (ValueTuple_3_Object_Int32_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x007159C0, int32_t, ValueTuple_3_Object_Int32_Int32__System_Runtime_CompilerServices_ITuple_get_Length, (ValueTuple_3_Object_Int32_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0115B2B0, String *, ValueTuple_3_Object_Int32_Int32__ToString, (ValueTuple_3_Object_Int32_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0115B870, void, ValueTuple_3_Object_Object_Int32___ctor, (ValueTuple_3_Object_Object_Int32___Boxed * __this, Object * item1, Object * item2, int32_t item3, MethodInfo * method)); -DO_APP_FUNC(0x0115C020, int32_t, ValueTuple_3_Object_Object_Int32__CompareTo, (ValueTuple_3_Object_Object_Int32___Boxed * __this, ValueTuple_3_Object_Object_Int32_ other, MethodInfo * method)); -DO_APP_FUNC(0x0115BA50, bool, ValueTuple_3_Object_Object_Int32__Equals, (ValueTuple_3_Object_Object_Int32___Boxed * __this, ValueTuple_3_Object_Object_Int32_ other, MethodInfo * method)); -DO_APP_FUNC(0x0115B930, bool, ValueTuple_3_Object_Object_Int32__Equals_1, (ValueTuple_3_Object_Object_Int32___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0115C4F0, int32_t, ValueTuple_3_Object_Object_Int32__GetHashCode, (ValueTuple_3_Object_Object_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0115C5E0, int32_t, ValueTuple_3_Object_Object_Int32__GetHashCodeCore, (ValueTuple_3_Object_Object_Int32___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x0115C1F0, int32_t, ValueTuple_3_Object_Object_Int32__System_Collections_IStructuralComparable_CompareTo, (ValueTuple_3_Object_Object_Int32___Boxed * __this, Object * other, IComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x0115BC00, bool, ValueTuple_3_Object_Object_Int32__System_Collections_IStructuralEquatable_Equals, (ValueTuple_3_Object_Object_Int32___Boxed * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x0115C590, int32_t, ValueTuple_3_Object_Object_Int32__System_Collections_IStructuralEquatable_GetHashCode, (ValueTuple_3_Object_Object_Int32___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x0115BE30, int32_t, ValueTuple_3_Object_Object_Int32__System_IComparable_CompareTo, (ValueTuple_3_Object_Object_Int32___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x0115C590, int32_t, ValueTuple_3_Object_Object_Int32__System_IValueTupleInternal_GetHashCode, (ValueTuple_3_Object_Object_Int32___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x0115C9F0, String *, ValueTuple_3_Object_Object_Int32__System_IValueTupleInternal_ToStringEnd, (ValueTuple_3_Object_Object_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x007159C0, int32_t, ValueTuple_3_Object_Object_Int32__System_Runtime_CompilerServices_ITuple_get_Length, (ValueTuple_3_Object_Object_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0115C6E0, String *, ValueTuple_3_Object_Object_Int32__ToString, (ValueTuple_3_Object_Object_Int32___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0096DD20, void, ValueTuple_3_Object_Object_Object___ctor, (ValueTuple_3_Object_Object_Object___Boxed * __this, Object * item1, Object * item2, Object * item3, MethodInfo * method)); -DO_APP_FUNC(0x0115D2F0, int32_t, ValueTuple_3_Object_Object_Object__CompareTo, (ValueTuple_3_Object_Object_Object___Boxed * __this, ValueTuple_3_Object_Object_Object_ other, MethodInfo * method)); -DO_APP_FUNC(0x0115CDC0, bool, ValueTuple_3_Object_Object_Object__Equals, (ValueTuple_3_Object_Object_Object___Boxed * __this, ValueTuple_3_Object_Object_Object_ other, MethodInfo * method)); -DO_APP_FUNC(0x0115CCA0, bool, ValueTuple_3_Object_Object_Object__Equals_1, (ValueTuple_3_Object_Object_Object___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0115D720, int32_t, ValueTuple_3_Object_Object_Object__GetHashCode, (ValueTuple_3_Object_Object_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0115D800, int32_t, ValueTuple_3_Object_Object_Object__GetHashCodeCore, (ValueTuple_3_Object_Object_Object___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x0115D4C0, int32_t, ValueTuple_3_Object_Object_Object__System_Collections_IStructuralComparable_CompareTo, (ValueTuple_3_Object_Object_Object___Boxed * __this, Object * other, IComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x0115CF70, bool, ValueTuple_3_Object_Object_Object__System_Collections_IStructuralEquatable_Equals, (ValueTuple_3_Object_Object_Object___Boxed * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x0115D7C0, int32_t, ValueTuple_3_Object_Object_Object__System_Collections_IStructuralEquatable_GetHashCode, (ValueTuple_3_Object_Object_Object___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x0115D100, int32_t, ValueTuple_3_Object_Object_Object__System_IComparable_CompareTo, (ValueTuple_3_Object_Object_Object___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x0115D7C0, int32_t, ValueTuple_3_Object_Object_Object__System_IValueTupleInternal_GetHashCode, (ValueTuple_3_Object_Object_Object___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x0115DBB0, String *, ValueTuple_3_Object_Object_Object__System_IValueTupleInternal_ToStringEnd, (ValueTuple_3_Object_Object_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x007159C0, int32_t, ValueTuple_3_Object_Object_Object__System_Runtime_CompilerServices_ITuple_get_Length, (ValueTuple_3_Object_Object_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0115D8C0, String *, ValueTuple_3_Object_Object_Object__ToString, (ValueTuple_3_Object_Object_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0115DE50, void, ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4___ctor, (ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4___Boxed * __this, Vector4 item1, Vector4 item2, Vector4 item3, MethodInfo * method)); +DO_APP_FUNC(0x01159A60, int32_t, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4__CompareTo, (ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4_ * __this, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4_ other, MethodInfo * method)); +DO_APP_FUNC(0x011594A0, bool, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4__Equals, (ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4_ * __this, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4_ other, MethodInfo * method)); +DO_APP_FUNC(0x01159380, bool, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4__Equals_1, (ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x01159F00, int32_t, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4__GetHashCode, (ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01159FD0, int32_t, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4__GetHashCodeCore, (ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01159BC0, int32_t, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4__System_Collections_IStructuralComparable_CompareTo, (ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4_ * __this, Object * other, IComparer * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC00D0, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4__System_Collections_IStructuralComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x011595F0, bool, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4__System_Collections_IStructuralEquatable_Equals, (ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4_ * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01159F80, int32_t, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4__System_Collections_IStructuralEquatable_GetHashCode, (ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01159870, int32_t, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4__System_IComparable_CompareTo, (ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC00F0, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4__System_IComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x01159F80, int32_t, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4__System_IValueTupleInternal_GetHashCode, (ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x0115A360, String *, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4__System_IValueTupleInternal_ToStringEnd, (ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0072BFF0, int32_t, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4__System_Runtime_CompilerServices_ITuple_get_Length, (ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0115A100, String *, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4__ToString, (ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00FDBDC0, void, ValueTuple_3_Object_Int32_Int32___ctor, (ValueTuple_3_Object_Int32_Int32_ * __this, Object * item1, int32_t item2, int32_t item3, MethodInfo * method)); +DO_APP_FUNC(0x0115AB70, int32_t, ValueTuple_3_Object_Int32_Int32__CompareTo, (ValueTuple_3_Object_Int32_Int32_ * __this, ValueTuple_3_Object_Int32_Int32_ other, MethodInfo * method)); +DO_APP_FUNC(0x0115A560, bool, ValueTuple_3_Object_Int32_Int32__Equals, (ValueTuple_3_Object_Int32_Int32_ * __this, ValueTuple_3_Object_Int32_Int32_ other, MethodInfo * method)); +DO_APP_FUNC(0x0115A440, bool, ValueTuple_3_Object_Int32_Int32__Equals_1, (ValueTuple_3_Object_Int32_Int32_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x0115B080, int32_t, ValueTuple_3_Object_Int32_Int32__GetHashCode, (ValueTuple_3_Object_Int32_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0115B160, int32_t, ValueTuple_3_Object_Int32_Int32__GetHashCodeCore, (ValueTuple_3_Object_Int32_Int32_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x0115AD10, int32_t, ValueTuple_3_Object_Int32_Int32__System_Collections_IStructuralComparable_CompareTo, (ValueTuple_3_Object_Int32_Int32_ * __this, Object * other, IComparer * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC00C0, ValueTuple_3_Object_Int32_Int32__System_Collections_IStructuralComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x0115A6F0, bool, ValueTuple_3_Object_Int32_Int32__System_Collections_IStructuralEquatable_Equals, (ValueTuple_3_Object_Int32_Int32_ * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x0115B110, int32_t, ValueTuple_3_Object_Int32_Int32__System_Collections_IStructuralEquatable_GetHashCode, (ValueTuple_3_Object_Int32_Int32_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x0115A990, int32_t, ValueTuple_3_Object_Int32_Int32__System_IComparable_CompareTo, (ValueTuple_3_Object_Int32_Int32_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC00B0, ValueTuple_3_Object_Int32_Int32__System_IComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x0115B110, int32_t, ValueTuple_3_Object_Int32_Int32__System_IValueTupleInternal_GetHashCode, (ValueTuple_3_Object_Int32_Int32_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x0115B5C0, String *, ValueTuple_3_Object_Int32_Int32__System_IValueTupleInternal_ToStringEnd, (ValueTuple_3_Object_Int32_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x007159C0, int32_t, ValueTuple_3_Object_Int32_Int32__System_Runtime_CompilerServices_ITuple_get_Length, (ValueTuple_3_Object_Int32_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0115B2B0, String *, ValueTuple_3_Object_Int32_Int32__ToString, (ValueTuple_3_Object_Int32_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0115B870, void, ValueTuple_3_Object_Object_Int32___ctor, (ValueTuple_3_Object_Object_Int32_ * __this, Object * item1, Object * item2, int32_t item3, MethodInfo * method)); +DO_APP_FUNC(0x0115C020, int32_t, ValueTuple_3_Object_Object_Int32__CompareTo, (ValueTuple_3_Object_Object_Int32_ * __this, ValueTuple_3_Object_Object_Int32_ other, MethodInfo * method)); +DO_APP_FUNC(0x0115BA50, bool, ValueTuple_3_Object_Object_Int32__Equals, (ValueTuple_3_Object_Object_Int32_ * __this, ValueTuple_3_Object_Object_Int32_ other, MethodInfo * method)); +DO_APP_FUNC(0x0115B930, bool, ValueTuple_3_Object_Object_Int32__Equals_1, (ValueTuple_3_Object_Object_Int32_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x0115C4F0, int32_t, ValueTuple_3_Object_Object_Int32__GetHashCode, (ValueTuple_3_Object_Object_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0115C5E0, int32_t, ValueTuple_3_Object_Object_Int32__GetHashCodeCore, (ValueTuple_3_Object_Object_Int32_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x0115C1F0, int32_t, ValueTuple_3_Object_Object_Int32__System_Collections_IStructuralComparable_CompareTo, (ValueTuple_3_Object_Object_Int32_ * __this, Object * other, IComparer * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0050, ValueTuple_3_Object_Object_Int32__System_Collections_IStructuralComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x0115BC00, bool, ValueTuple_3_Object_Object_Int32__System_Collections_IStructuralEquatable_Equals, (ValueTuple_3_Object_Object_Int32_ * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x0115C590, int32_t, ValueTuple_3_Object_Object_Int32__System_Collections_IStructuralEquatable_GetHashCode, (ValueTuple_3_Object_Object_Int32_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x0115BE30, int32_t, ValueTuple_3_Object_Object_Int32__System_IComparable_CompareTo, (ValueTuple_3_Object_Object_Int32_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0040, ValueTuple_3_Object_Object_Int32__System_IComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x0115C590, int32_t, ValueTuple_3_Object_Object_Int32__System_IValueTupleInternal_GetHashCode, (ValueTuple_3_Object_Object_Int32_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x0115C9F0, String *, ValueTuple_3_Object_Object_Int32__System_IValueTupleInternal_ToStringEnd, (ValueTuple_3_Object_Object_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x007159C0, int32_t, ValueTuple_3_Object_Object_Int32__System_Runtime_CompilerServices_ITuple_get_Length, (ValueTuple_3_Object_Object_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0115C6E0, String *, ValueTuple_3_Object_Object_Int32__ToString, (ValueTuple_3_Object_Object_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0096DD20, void, ValueTuple_3_Object_Object_Object___ctor, (ValueTuple_3_Object_Object_Object_ * __this, Object * item1, Object * item2, Object * item3, MethodInfo * method)); +DO_APP_FUNC(0x0115D2F0, int32_t, ValueTuple_3_Object_Object_Object__CompareTo, (ValueTuple_3_Object_Object_Object_ * __this, ValueTuple_3_Object_Object_Object_ other, MethodInfo * method)); +DO_APP_FUNC(0x0115CDC0, bool, ValueTuple_3_Object_Object_Object__Equals, (ValueTuple_3_Object_Object_Object_ * __this, ValueTuple_3_Object_Object_Object_ other, MethodInfo * method)); +DO_APP_FUNC(0x0115CCA0, bool, ValueTuple_3_Object_Object_Object__Equals_1, (ValueTuple_3_Object_Object_Object_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x0115D720, int32_t, ValueTuple_3_Object_Object_Object__GetHashCode, (ValueTuple_3_Object_Object_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0115D800, int32_t, ValueTuple_3_Object_Object_Object__GetHashCodeCore, (ValueTuple_3_Object_Object_Object_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x0115D4C0, int32_t, ValueTuple_3_Object_Object_Object__System_Collections_IStructuralComparable_CompareTo, (ValueTuple_3_Object_Object_Object_ * __this, Object * other, IComparer * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0020, ValueTuple_3_Object_Object_Object__System_Collections_IStructuralComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x0115CF70, bool, ValueTuple_3_Object_Object_Object__System_Collections_IStructuralEquatable_Equals, (ValueTuple_3_Object_Object_Object_ * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x0115D7C0, int32_t, ValueTuple_3_Object_Object_Object__System_Collections_IStructuralEquatable_GetHashCode, (ValueTuple_3_Object_Object_Object_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x0115D100, int32_t, ValueTuple_3_Object_Object_Object__System_IComparable_CompareTo, (ValueTuple_3_Object_Object_Object_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0010, ValueTuple_3_Object_Object_Object__System_IComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x0115D7C0, int32_t, ValueTuple_3_Object_Object_Object__System_IValueTupleInternal_GetHashCode, (ValueTuple_3_Object_Object_Object_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x0115DBB0, String *, ValueTuple_3_Object_Object_Object__System_IValueTupleInternal_ToStringEnd, (ValueTuple_3_Object_Object_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x007159C0, int32_t, ValueTuple_3_Object_Object_Object__System_Runtime_CompilerServices_ITuple_get_Length, (ValueTuple_3_Object_Object_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0115D8C0, String *, ValueTuple_3_Object_Object_Object__ToString, (ValueTuple_3_Object_Object_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0115DE50, void, ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4___ctor, (ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4_ * __this, Vector4 item1, Vector4 item2, Vector4 item3, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C99DF0, ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4___ctor__MethodInfo); -DO_APP_FUNC(0x0115E6B0, int32_t, ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4__CompareTo, (ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4___Boxed * __this, ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4_ other, MethodInfo * method)); -DO_APP_FUNC(0x0115DFA0, bool, ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4__Equals, (ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4___Boxed * __this, ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4_ other, MethodInfo * method)); -DO_APP_FUNC(0x0115DE70, bool, ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4__Equals_1, (ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x0115ECC0, int32_t, ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4__GetHashCode, (ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0115EDC0, int32_t, ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4__GetHashCodeCore, (ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x0115E890, int32_t, ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4__System_Collections_IStructuralComparable_CompareTo, (ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4___Boxed * __this, Object * other, IComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x0115E170, bool, ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4__System_Collections_IStructuralEquatable_Equals, (ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4___Boxed * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x0115ED70, int32_t, ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4__System_Collections_IStructuralEquatable_GetHashCode, (ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x0115E4B0, int32_t, ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4__System_IComparable_CompareTo, (ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x0115ED70, int32_t, ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4__System_IValueTupleInternal_GetHashCode, (ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x0115F270, String *, ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4__System_IValueTupleInternal_ToStringEnd, (ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x007159C0, int32_t, ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4__System_Runtime_CompilerServices_ITuple_get_Length, (ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0115EF60, String *, ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4__ToString, (ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0115F530, void, ValueTuple_4_Boolean_Boolean_Object_Object___ctor, (ValueTuple_4_Boolean_Boolean_Object_Object___Boxed * __this, bool item1, bool item2, Object * item3, Object * item4, MethodInfo * method)); -DO_APP_FUNC(0x0115FE10, int32_t, ValueTuple_4_Boolean_Boolean_Object_Object__CompareTo, (ValueTuple_4_Boolean_Boolean_Object_Object___Boxed * __this, ValueTuple_4_Boolean_Boolean_Object_Object_ other, MethodInfo * method)); -DO_APP_FUNC(0x0115F710, bool, ValueTuple_4_Boolean_Boolean_Object_Object__Equals, (ValueTuple_4_Boolean_Boolean_Object_Object___Boxed * __this, ValueTuple_4_Boolean_Boolean_Object_Object_ other, MethodInfo * method)); -DO_APP_FUNC(0x0115F5F0, bool, ValueTuple_4_Boolean_Boolean_Object_Object__Equals_1, (ValueTuple_4_Boolean_Boolean_Object_Object___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x01160410, int32_t, ValueTuple_4_Boolean_Boolean_Object_Object__GetHashCode, (ValueTuple_4_Boolean_Boolean_Object_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01160570, int32_t, ValueTuple_4_Boolean_Boolean_Object_Object__GetHashCodeCore, (ValueTuple_4_Boolean_Boolean_Object_Object___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01160070, int32_t, ValueTuple_4_Boolean_Boolean_Object_Object__System_Collections_IStructuralComparable_CompareTo, (ValueTuple_4_Boolean_Boolean_Object_Object___Boxed * __this, Object * other, IComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x0115F950, bool, ValueTuple_4_Boolean_Boolean_Object_Object__System_Collections_IStructuralEquatable_Equals, (ValueTuple_4_Boolean_Boolean_Object_Object___Boxed * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01160520, int32_t, ValueTuple_4_Boolean_Boolean_Object_Object__System_Collections_IStructuralEquatable_GetHashCode, (ValueTuple_4_Boolean_Boolean_Object_Object___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x0115FC20, int32_t, ValueTuple_4_Boolean_Boolean_Object_Object__System_IComparable_CompareTo, (ValueTuple_4_Boolean_Boolean_Object_Object___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x01160520, int32_t, ValueTuple_4_Boolean_Boolean_Object_Object__System_IValueTupleInternal_GetHashCode, (ValueTuple_4_Boolean_Boolean_Object_Object___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01160B20, String *, ValueTuple_4_Boolean_Boolean_Object_Object__System_IValueTupleInternal_ToStringEnd, (ValueTuple_4_Boolean_Boolean_Object_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1E0, int32_t, ValueTuple_4_Boolean_Boolean_Object_Object__System_Runtime_CompilerServices_ITuple_get_Length, (ValueTuple_4_Boolean_Boolean_Object_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x011606E0, String *, ValueTuple_4_Boolean_Boolean_Object_Object__ToString, (ValueTuple_4_Boolean_Boolean_Object_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003D7030, void, ValueTuple_4_Object_Object_Object_Object___ctor, (ValueTuple_4_Object_Object_Object_Object___Boxed * __this, Object * item1, Object * item2, Object * item3, Object * item4, MethodInfo * method)); -DO_APP_FUNC(0x011615D0, int32_t, ValueTuple_4_Object_Object_Object_Object__CompareTo, (ValueTuple_4_Object_Object_Object_Object___Boxed * __this, ValueTuple_4_Object_Object_Object_Object_ other, MethodInfo * method)); -DO_APP_FUNC(0x01161020, bool, ValueTuple_4_Object_Object_Object_Object__Equals, (ValueTuple_4_Object_Object_Object_Object___Boxed * __this, ValueTuple_4_Object_Object_Object_Object_ other, MethodInfo * method)); -DO_APP_FUNC(0x01160F00, bool, ValueTuple_4_Object_Object_Object_Object__Equals_1, (ValueTuple_4_Object_Object_Object_Object___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x01161A80, int32_t, ValueTuple_4_Object_Object_Object_Object__GetHashCode, (ValueTuple_4_Object_Object_Object_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01161B90, int32_t, ValueTuple_4_Object_Object_Object_Object__GetHashCodeCore, (ValueTuple_4_Object_Object_Object_Object___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01161800, int32_t, ValueTuple_4_Object_Object_Object_Object__System_Collections_IStructuralComparable_CompareTo, (ValueTuple_4_Object_Object_Object_Object___Boxed * __this, Object * other, IComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01161230, bool, ValueTuple_4_Object_Object_Object_Object__System_Collections_IStructuralEquatable_Equals, (ValueTuple_4_Object_Object_Object_Object___Boxed * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01161B50, int32_t, ValueTuple_4_Object_Object_Object_Object__System_Collections_IStructuralEquatable_GetHashCode, (ValueTuple_4_Object_Object_Object_Object___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x011613E0, int32_t, ValueTuple_4_Object_Object_Object_Object__System_IComparable_CompareTo, (ValueTuple_4_Object_Object_Object_Object___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x01161B50, int32_t, ValueTuple_4_Object_Object_Object_Object__System_IValueTupleInternal_GetHashCode, (ValueTuple_4_Object_Object_Object_Object___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01162020, String *, ValueTuple_4_Object_Object_Object_Object__System_IValueTupleInternal_ToStringEnd, (ValueTuple_4_Object_Object_Object_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1E0, int32_t, ValueTuple_4_Object_Object_Object_Object__System_Runtime_CompilerServices_ITuple_get_Length, (ValueTuple_4_Object_Object_Object_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01161C80, String *, ValueTuple_4_Object_Object_Object_Object__ToString, (ValueTuple_4_Object_Object_Object_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01162360, void, ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean___ctor, (ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean___Boxed * __this, void * item1, int32_t item2, void * item3, int32_t item4, bool item5, MethodInfo * method)); -DO_APP_FUNC(0x01162DE0, int32_t, ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean__CompareTo, (ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean___Boxed * __this, ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean_ other, MethodInfo * method)); -DO_APP_FUNC(0x011624A0, bool, ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean__Equals, (ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean___Boxed * __this, ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean_ other, MethodInfo * method)); -DO_APP_FUNC(0x01162380, bool, ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean__Equals_1, (ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x01163660, int32_t, ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean__GetHashCode, (ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x011637B0, int32_t, ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean__GetHashCodeCore, (ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01163090, int32_t, ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean__System_Collections_IStructuralComparable_CompareTo, (ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean___Boxed * __this, Object * other, IComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01162730, bool, ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean__System_Collections_IStructuralEquatable_Equals, (ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean___Boxed * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01163760, int32_t, ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean__System_Collections_IStructuralEquatable_GetHashCode, (ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01162BF0, int32_t, ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean__System_IComparable_CompareTo, (ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x01163760, int32_t, ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean__System_IValueTupleInternal_GetHashCode, (ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01163F00, String *, ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean__System_IValueTupleInternal_ToStringEnd, (ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01164370, int32_t, ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean__System_Runtime_CompilerServices_ITuple_get_Length, (ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01163A30, String *, ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean__ToString, (ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01164380, void, ValueTuple_5_Object_Boolean_Boolean_Object_Object___ctor, (ValueTuple_5_Object_Boolean_Boolean_Object_Object___Boxed * __this, Object * item1, bool item2, bool item3, Object * item4, Object * item5, MethodInfo * method)); -DO_APP_FUNC(0x01164D50, int32_t, ValueTuple_5_Object_Boolean_Boolean_Object_Object__CompareTo, (ValueTuple_5_Object_Boolean_Boolean_Object_Object___Boxed * __this, ValueTuple_5_Object_Boolean_Boolean_Object_Object_ other, MethodInfo * method)); -DO_APP_FUNC(0x011645B0, bool, ValueTuple_5_Object_Boolean_Boolean_Object_Object__Equals, (ValueTuple_5_Object_Boolean_Boolean_Object_Object___Boxed * __this, ValueTuple_5_Object_Boolean_Boolean_Object_Object_ other, MethodInfo * method)); -DO_APP_FUNC(0x01164490, bool, ValueTuple_5_Object_Boolean_Boolean_Object_Object__Equals_1, (ValueTuple_5_Object_Boolean_Boolean_Object_Object___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x011653F0, int32_t, ValueTuple_5_Object_Boolean_Boolean_Object_Object__GetHashCode, (ValueTuple_5_Object_Boolean_Boolean_Object_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01165580, int32_t, ValueTuple_5_Object_Boolean_Boolean_Object_Object__GetHashCodeCore, (ValueTuple_5_Object_Boolean_Boolean_Object_Object___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01165000, int32_t, ValueTuple_5_Object_Boolean_Boolean_Object_Object__System_Collections_IStructuralComparable_CompareTo, (ValueTuple_5_Object_Boolean_Boolean_Object_Object___Boxed * __this, Object * other, IComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01164840, bool, ValueTuple_5_Object_Boolean_Boolean_Object_Object__System_Collections_IStructuralEquatable_Equals, (ValueTuple_5_Object_Boolean_Boolean_Object_Object___Boxed * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01165530, int32_t, ValueTuple_5_Object_Boolean_Boolean_Object_Object__System_Collections_IStructuralEquatable_GetHashCode, (ValueTuple_5_Object_Boolean_Boolean_Object_Object___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01164B60, int32_t, ValueTuple_5_Object_Boolean_Boolean_Object_Object__System_IComparable_CompareTo, (ValueTuple_5_Object_Boolean_Boolean_Object_Object___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x01165530, int32_t, ValueTuple_5_Object_Boolean_Boolean_Object_Object__System_IValueTupleInternal_GetHashCode, (ValueTuple_5_Object_Boolean_Boolean_Object_Object___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01165C10, String *, ValueTuple_5_Object_Boolean_Boolean_Object_Object__System_IValueTupleInternal_ToStringEnd, (ValueTuple_5_Object_Boolean_Boolean_Object_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01164370, int32_t, ValueTuple_5_Object_Boolean_Boolean_Object_Object__System_Runtime_CompilerServices_ITuple_get_Length, (ValueTuple_5_Object_Boolean_Boolean_Object_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01165720, String *, ValueTuple_5_Object_Boolean_Boolean_Object_Object__ToString, (ValueTuple_5_Object_Boolean_Boolean_Object_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x011660A0, void, ValueTuple_5_Object_Object_Object_Object_Object___ctor, (ValueTuple_5_Object_Object_Object_Object_Object___Boxed * __this, Object * item1, Object * item2, Object * item3, Object * item4, Object * item5, MethodInfo * method)); -DO_APP_FUNC(0x01166A40, int32_t, ValueTuple_5_Object_Object_Object_Object_Object__CompareTo, (ValueTuple_5_Object_Object_Object_Object_Object___Boxed * __this, ValueTuple_5_Object_Object_Object_Object_Object_ other, MethodInfo * method)); -DO_APP_FUNC(0x01166380, bool, ValueTuple_5_Object_Object_Object_Object_Object__Equals, (ValueTuple_5_Object_Object_Object_Object_Object___Boxed * __this, ValueTuple_5_Object_Object_Object_Object_Object_ other, MethodInfo * method)); -DO_APP_FUNC(0x01166250, bool, ValueTuple_5_Object_Object_Object_Object_Object__Equals_1, (ValueTuple_5_Object_Object_Object_Object_Object___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x01166FE0, int32_t, ValueTuple_5_Object_Object_Object_Object_Object__GetHashCode, (ValueTuple_5_Object_Object_Object_Object_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01167120, int32_t, ValueTuple_5_Object_Object_Object_Object_Object__GetHashCodeCore, (ValueTuple_5_Object_Object_Object_Object_Object___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01166D20, int32_t, ValueTuple_5_Object_Object_Object_Object_Object__System_Collections_IStructuralComparable_CompareTo, (ValueTuple_5_Object_Object_Object_Object_Object___Boxed * __this, Object * other, IComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01166640, bool, ValueTuple_5_Object_Object_Object_Object_Object__System_Collections_IStructuralEquatable_Equals, (ValueTuple_5_Object_Object_Object_Object_Object___Boxed * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x011670E0, int32_t, ValueTuple_5_Object_Object_Object_Object_Object__System_Collections_IStructuralEquatable_GetHashCode, (ValueTuple_5_Object_Object_Object_Object_Object___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01166830, int32_t, ValueTuple_5_Object_Object_Object_Object_Object__System_IComparable_CompareTo, (ValueTuple_5_Object_Object_Object_Object_Object___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x011670E0, int32_t, ValueTuple_5_Object_Object_Object_Object_Object__System_IValueTupleInternal_GetHashCode, (ValueTuple_5_Object_Object_Object_Object_Object___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01167670, String *, ValueTuple_5_Object_Object_Object_Object_Object__System_IValueTupleInternal_ToStringEnd, (ValueTuple_5_Object_Object_Object_Object_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01164370, int32_t, ValueTuple_5_Object_Object_Object_Object_Object__System_Runtime_CompilerServices_ITuple_get_Length, (ValueTuple_5_Object_Object_Object_Object_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01167230, String *, ValueTuple_5_Object_Object_Object_Object_Object__ToString, (ValueTuple_5_Object_Object_Object_Object_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01167A60, void, ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean___ctor, (ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean___Boxed * __this, void * item1, int32_t item2, void * item3, int32_t item4, void * item5, int32_t item6, bool item7, ValueTuple_1_Boolean_ rest, MethodInfo * method)); -DO_APP_FUNC(0x011689B0, int32_t, ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean__CompareTo, (ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean___Boxed * __this, ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean_ other, MethodInfo * method)); -DO_APP_FUNC(0x01167CA0, bool, ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean__Equals, (ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean___Boxed * __this, ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean_ other, MethodInfo * method)); -DO_APP_FUNC(0x01167B70, bool, ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean__Equals_1, (ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean___Boxed * __this, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x011695A0, int32_t, ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean__GetHashCode, (ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01169CD0, int32_t, ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean__GetHashCodeCore, (ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01168E00, int32_t, ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean__System_Collections_IStructuralComparable_CompareTo, (ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean___Boxed * __this, Object * other, IComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x011680D0, bool, ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean__System_Collections_IStructuralEquatable_Equals, (ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean___Boxed * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x01169C80, int32_t, ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean__System_Collections_IStructuralEquatable_GetHashCode, (ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x011687A0, int32_t, ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean__System_IComparable_CompareTo, (ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean___Boxed * __this, Object * other, MethodInfo * method)); -DO_APP_FUNC(0x01169C80, int32_t, ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean__System_IValueTupleInternal_GetHashCode, (ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean___Boxed * __this, IEqualityComparer * comparer, MethodInfo * method)); -DO_APP_FUNC(0x0116BA70, String *, ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean__System_IValueTupleInternal_ToStringEnd, (ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0116C6F0, int32_t, ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean__System_Runtime_CompilerServices_ITuple_get_Length, (ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0116AD50, String *, ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean__ToString, (ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x0115E6B0, int32_t, ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4__CompareTo, (ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4_ * __this, ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4_ other, MethodInfo * method)); +DO_APP_FUNC(0x0115DFA0, bool, ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4__Equals, (ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4_ * __this, ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4_ other, MethodInfo * method)); +DO_APP_FUNC(0x0115DE70, bool, ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4__Equals_1, (ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x0115ECC0, int32_t, ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4__GetHashCode, (ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0115EDC0, int32_t, ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4__GetHashCodeCore, (ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x0115E890, int32_t, ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4__System_Collections_IStructuralComparable_CompareTo, (ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4_ * __this, Object * other, IComparer * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBFFD8, ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4__System_Collections_IStructuralComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x0115E170, bool, ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4__System_Collections_IStructuralEquatable_Equals, (ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4_ * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x0115ED70, int32_t, ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4__System_Collections_IStructuralEquatable_GetHashCode, (ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x0115E4B0, int32_t, ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4__System_IComparable_CompareTo, (ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBFFD0, ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4__System_IComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x0115ED70, int32_t, ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4__System_IValueTupleInternal_GetHashCode, (ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x0115F270, String *, ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4__System_IValueTupleInternal_ToStringEnd, (ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x007159C0, int32_t, ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4__System_Runtime_CompilerServices_ITuple_get_Length, (ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0115EF60, String *, ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4__ToString, (ValueTuple_3_UnityEngine_Vector4_UnityEngine_Vector4_UnityEngine_Vector4_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0115F530, void, ValueTuple_4_Boolean_Boolean_Object_Object___ctor, (ValueTuple_4_Boolean_Boolean_Object_Object_ * __this, bool item1, bool item2, Object * item3, Object * item4, MethodInfo * method)); +DO_APP_FUNC(0x0115FE10, int32_t, ValueTuple_4_Boolean_Boolean_Object_Object__CompareTo, (ValueTuple_4_Boolean_Boolean_Object_Object_ * __this, ValueTuple_4_Boolean_Boolean_Object_Object_ other, MethodInfo * method)); +DO_APP_FUNC(0x0115F710, bool, ValueTuple_4_Boolean_Boolean_Object_Object__Equals, (ValueTuple_4_Boolean_Boolean_Object_Object_ * __this, ValueTuple_4_Boolean_Boolean_Object_Object_ other, MethodInfo * method)); +DO_APP_FUNC(0x0115F5F0, bool, ValueTuple_4_Boolean_Boolean_Object_Object__Equals_1, (ValueTuple_4_Boolean_Boolean_Object_Object_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x01160410, int32_t, ValueTuple_4_Boolean_Boolean_Object_Object__GetHashCode, (ValueTuple_4_Boolean_Boolean_Object_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01160570, int32_t, ValueTuple_4_Boolean_Boolean_Object_Object__GetHashCodeCore, (ValueTuple_4_Boolean_Boolean_Object_Object_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01160070, int32_t, ValueTuple_4_Boolean_Boolean_Object_Object__System_Collections_IStructuralComparable_CompareTo, (ValueTuple_4_Boolean_Boolean_Object_Object_ * __this, Object * other, IComparer * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBFFB0, ValueTuple_4_Boolean_Boolean_Object_Object__System_Collections_IStructuralComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x0115F950, bool, ValueTuple_4_Boolean_Boolean_Object_Object__System_Collections_IStructuralEquatable_Equals, (ValueTuple_4_Boolean_Boolean_Object_Object_ * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01160520, int32_t, ValueTuple_4_Boolean_Boolean_Object_Object__System_Collections_IStructuralEquatable_GetHashCode, (ValueTuple_4_Boolean_Boolean_Object_Object_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x0115FC20, int32_t, ValueTuple_4_Boolean_Boolean_Object_Object__System_IComparable_CompareTo, (ValueTuple_4_Boolean_Boolean_Object_Object_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBFFA8, ValueTuple_4_Boolean_Boolean_Object_Object__System_IComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x01160520, int32_t, ValueTuple_4_Boolean_Boolean_Object_Object__System_IValueTupleInternal_GetHashCode, (ValueTuple_4_Boolean_Boolean_Object_Object_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01160B20, String *, ValueTuple_4_Boolean_Boolean_Object_Object__System_IValueTupleInternal_ToStringEnd, (ValueTuple_4_Boolean_Boolean_Object_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1E0, int32_t, ValueTuple_4_Boolean_Boolean_Object_Object__System_Runtime_CompilerServices_ITuple_get_Length, (ValueTuple_4_Boolean_Boolean_Object_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x011606E0, String *, ValueTuple_4_Boolean_Boolean_Object_Object__ToString, (ValueTuple_4_Boolean_Boolean_Object_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x003D7030, void, ValueTuple_4_Object_Object_Object_Object___ctor, (ValueTuple_4_Object_Object_Object_Object_ * __this, Object * item1, Object * item2, Object * item3, Object * item4, MethodInfo * method)); +DO_APP_FUNC(0x011615D0, int32_t, ValueTuple_4_Object_Object_Object_Object__CompareTo, (ValueTuple_4_Object_Object_Object_Object_ * __this, ValueTuple_4_Object_Object_Object_Object_ other, MethodInfo * method)); +DO_APP_FUNC(0x01161020, bool, ValueTuple_4_Object_Object_Object_Object__Equals, (ValueTuple_4_Object_Object_Object_Object_ * __this, ValueTuple_4_Object_Object_Object_Object_ other, MethodInfo * method)); +DO_APP_FUNC(0x01160F00, bool, ValueTuple_4_Object_Object_Object_Object__Equals_1, (ValueTuple_4_Object_Object_Object_Object_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x01161A80, int32_t, ValueTuple_4_Object_Object_Object_Object__GetHashCode, (ValueTuple_4_Object_Object_Object_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01161B90, int32_t, ValueTuple_4_Object_Object_Object_Object__GetHashCodeCore, (ValueTuple_4_Object_Object_Object_Object_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01161800, int32_t, ValueTuple_4_Object_Object_Object_Object__System_Collections_IStructuralComparable_CompareTo, (ValueTuple_4_Object_Object_Object_Object_ * __this, Object * other, IComparer * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBFF90, ValueTuple_4_Object_Object_Object_Object__System_Collections_IStructuralComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x01161230, bool, ValueTuple_4_Object_Object_Object_Object__System_Collections_IStructuralEquatable_Equals, (ValueTuple_4_Object_Object_Object_Object_ * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01161B50, int32_t, ValueTuple_4_Object_Object_Object_Object__System_Collections_IStructuralEquatable_GetHashCode, (ValueTuple_4_Object_Object_Object_Object_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x011613E0, int32_t, ValueTuple_4_Object_Object_Object_Object__System_IComparable_CompareTo, (ValueTuple_4_Object_Object_Object_Object_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBFF70, ValueTuple_4_Object_Object_Object_Object__System_IComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x01161B50, int32_t, ValueTuple_4_Object_Object_Object_Object__System_IValueTupleInternal_GetHashCode, (ValueTuple_4_Object_Object_Object_Object_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01162020, String *, ValueTuple_4_Object_Object_Object_Object__System_IValueTupleInternal_ToStringEnd, (ValueTuple_4_Object_Object_Object_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1E0, int32_t, ValueTuple_4_Object_Object_Object_Object__System_Runtime_CompilerServices_ITuple_get_Length, (ValueTuple_4_Object_Object_Object_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01161C80, String *, ValueTuple_4_Object_Object_Object_Object__ToString, (ValueTuple_4_Object_Object_Object_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01162360, void, ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean___ctor, (ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean_ * __this, void * item1, int32_t item2, void * item3, int32_t item4, bool item5, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFFBB8, ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean___ctor__MethodInfo); +DO_APP_FUNC(0x01162DE0, int32_t, ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean__CompareTo, (ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean_ * __this, ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean_ other, MethodInfo * method)); +DO_APP_FUNC(0x011624A0, bool, ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean__Equals, (ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean_ * __this, ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean_ other, MethodInfo * method)); +DO_APP_FUNC(0x01162380, bool, ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean__Equals_1, (ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x01163660, int32_t, ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean__GetHashCode, (ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x011637B0, int32_t, ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean__GetHashCodeCore, (ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01163090, int32_t, ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean__System_Collections_IStructuralComparable_CompareTo, (ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean_ * __this, Object * other, IComparer * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBFF48, ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean__System_Collections_IStructuralComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x01162730, bool, ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean__System_Collections_IStructuralEquatable_Equals, (ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean_ * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01163760, int32_t, ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean__System_Collections_IStructuralEquatable_GetHashCode, (ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01162BF0, int32_t, ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean__System_IComparable_CompareTo, (ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBFF58, ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean__System_IComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x01163760, int32_t, ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean__System_IValueTupleInternal_GetHashCode, (ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01163F00, String *, ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean__System_IValueTupleInternal_ToStringEnd, (ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01164370, int32_t, ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean__System_Runtime_CompilerServices_ITuple_get_Length, (ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01163A30, String *, ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean__ToString, (ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01164380, void, ValueTuple_5_Object_Boolean_Boolean_Object_Object___ctor, (ValueTuple_5_Object_Boolean_Boolean_Object_Object_ * __this, Object * item1, bool item2, bool item3, Object * item4, Object * item5, MethodInfo * method)); +DO_APP_FUNC(0x01164D50, int32_t, ValueTuple_5_Object_Boolean_Boolean_Object_Object__CompareTo, (ValueTuple_5_Object_Boolean_Boolean_Object_Object_ * __this, ValueTuple_5_Object_Boolean_Boolean_Object_Object_ other, MethodInfo * method)); +DO_APP_FUNC(0x011645B0, bool, ValueTuple_5_Object_Boolean_Boolean_Object_Object__Equals, (ValueTuple_5_Object_Boolean_Boolean_Object_Object_ * __this, ValueTuple_5_Object_Boolean_Boolean_Object_Object_ other, MethodInfo * method)); +DO_APP_FUNC(0x01164490, bool, ValueTuple_5_Object_Boolean_Boolean_Object_Object__Equals_1, (ValueTuple_5_Object_Boolean_Boolean_Object_Object_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x011653F0, int32_t, ValueTuple_5_Object_Boolean_Boolean_Object_Object__GetHashCode, (ValueTuple_5_Object_Boolean_Boolean_Object_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01165580, int32_t, ValueTuple_5_Object_Boolean_Boolean_Object_Object__GetHashCodeCore, (ValueTuple_5_Object_Boolean_Boolean_Object_Object_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01165000, int32_t, ValueTuple_5_Object_Boolean_Boolean_Object_Object__System_Collections_IStructuralComparable_CompareTo, (ValueTuple_5_Object_Boolean_Boolean_Object_Object_ * __this, Object * other, IComparer * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBFEF0, ValueTuple_5_Object_Boolean_Boolean_Object_Object__System_Collections_IStructuralComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x01164840, bool, ValueTuple_5_Object_Boolean_Boolean_Object_Object__System_Collections_IStructuralEquatable_Equals, (ValueTuple_5_Object_Boolean_Boolean_Object_Object_ * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01165530, int32_t, ValueTuple_5_Object_Boolean_Boolean_Object_Object__System_Collections_IStructuralEquatable_GetHashCode, (ValueTuple_5_Object_Boolean_Boolean_Object_Object_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01164B60, int32_t, ValueTuple_5_Object_Boolean_Boolean_Object_Object__System_IComparable_CompareTo, (ValueTuple_5_Object_Boolean_Boolean_Object_Object_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBFF38, ValueTuple_5_Object_Boolean_Boolean_Object_Object__System_IComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x01165530, int32_t, ValueTuple_5_Object_Boolean_Boolean_Object_Object__System_IValueTupleInternal_GetHashCode, (ValueTuple_5_Object_Boolean_Boolean_Object_Object_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01165C10, String *, ValueTuple_5_Object_Boolean_Boolean_Object_Object__System_IValueTupleInternal_ToStringEnd, (ValueTuple_5_Object_Boolean_Boolean_Object_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01164370, int32_t, ValueTuple_5_Object_Boolean_Boolean_Object_Object__System_Runtime_CompilerServices_ITuple_get_Length, (ValueTuple_5_Object_Boolean_Boolean_Object_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01165720, String *, ValueTuple_5_Object_Boolean_Boolean_Object_Object__ToString, (ValueTuple_5_Object_Boolean_Boolean_Object_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x011660A0, void, ValueTuple_5_Object_Object_Object_Object_Object___ctor, (ValueTuple_5_Object_Object_Object_Object_Object_ * __this, Object * item1, Object * item2, Object * item3, Object * item4, Object * item5, MethodInfo * method)); +DO_APP_FUNC(0x01166A40, int32_t, ValueTuple_5_Object_Object_Object_Object_Object__CompareTo, (ValueTuple_5_Object_Object_Object_Object_Object_ * __this, ValueTuple_5_Object_Object_Object_Object_Object_ other, MethodInfo * method)); +DO_APP_FUNC(0x01166380, bool, ValueTuple_5_Object_Object_Object_Object_Object__Equals, (ValueTuple_5_Object_Object_Object_Object_Object_ * __this, ValueTuple_5_Object_Object_Object_Object_Object_ other, MethodInfo * method)); +DO_APP_FUNC(0x01166250, bool, ValueTuple_5_Object_Object_Object_Object_Object__Equals_1, (ValueTuple_5_Object_Object_Object_Object_Object_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x01166FE0, int32_t, ValueTuple_5_Object_Object_Object_Object_Object__GetHashCode, (ValueTuple_5_Object_Object_Object_Object_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01167120, int32_t, ValueTuple_5_Object_Object_Object_Object_Object__GetHashCodeCore, (ValueTuple_5_Object_Object_Object_Object_Object_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01166D20, int32_t, ValueTuple_5_Object_Object_Object_Object_Object__System_Collections_IStructuralComparable_CompareTo, (ValueTuple_5_Object_Object_Object_Object_Object_ * __this, Object * other, IComparer * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBFED8, ValueTuple_5_Object_Object_Object_Object_Object__System_Collections_IStructuralComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x01166640, bool, ValueTuple_5_Object_Object_Object_Object_Object__System_Collections_IStructuralEquatable_Equals, (ValueTuple_5_Object_Object_Object_Object_Object_ * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x011670E0, int32_t, ValueTuple_5_Object_Object_Object_Object_Object__System_Collections_IStructuralEquatable_GetHashCode, (ValueTuple_5_Object_Object_Object_Object_Object_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01166830, int32_t, ValueTuple_5_Object_Object_Object_Object_Object__System_IComparable_CompareTo, (ValueTuple_5_Object_Object_Object_Object_Object_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBFEC8, ValueTuple_5_Object_Object_Object_Object_Object__System_IComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x011670E0, int32_t, ValueTuple_5_Object_Object_Object_Object_Object__System_IValueTupleInternal_GetHashCode, (ValueTuple_5_Object_Object_Object_Object_Object_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01167670, String *, ValueTuple_5_Object_Object_Object_Object_Object__System_IValueTupleInternal_ToStringEnd, (ValueTuple_5_Object_Object_Object_Object_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01164370, int32_t, ValueTuple_5_Object_Object_Object_Object_Object__System_Runtime_CompilerServices_ITuple_get_Length, (ValueTuple_5_Object_Object_Object_Object_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01167230, String *, ValueTuple_5_Object_Object_Object_Object_Object__ToString, (ValueTuple_5_Object_Object_Object_Object_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01167A60, void, ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean___ctor, (ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean_ * __this, void * item1, int32_t item2, void * item3, int32_t item4, void * item5, int32_t item6, bool item7, ValueTuple_1_Boolean_ rest, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBFE80, ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean___ctor__MethodInfo); +DO_APP_FUNC(0x011689B0, int32_t, ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean__CompareTo, (ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean_ * __this, ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean_ other, MethodInfo * method)); +DO_APP_FUNC(0x01167CA0, bool, ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean__Equals, (ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean_ * __this, ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean_ other, MethodInfo * method)); +DO_APP_FUNC(0x01167B70, bool, ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean__Equals_1, (ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean_ * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x011695A0, int32_t, ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean__GetHashCode, (ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01169CD0, int32_t, ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean__GetHashCodeCore, (ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01168E00, int32_t, ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean__System_Collections_IStructuralComparable_CompareTo, (ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean_ * __this, Object * other, IComparer * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBFE30, ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean__System_Collections_IStructuralComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x011680D0, bool, ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean__System_Collections_IStructuralEquatable_Equals, (ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean_ * __this, Object * other, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x01169C80, int32_t, ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean__System_Collections_IStructuralEquatable_GetHashCode, (ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x011687A0, int32_t, ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean__System_IComparable_CompareTo, (ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean_ * __this, Object * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBFE28, ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean__System_IComparable_CompareTo__MethodInfo); +DO_APP_FUNC(0x01169C80, int32_t, ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean__System_IValueTupleInternal_GetHashCode, (ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean_ * __this, IEqualityComparer * comparer, MethodInfo * method)); +DO_APP_FUNC(0x0116BA70, String *, ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean__System_IValueTupleInternal_ToStringEnd, (ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0116C6F0, int32_t, ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean__System_Runtime_CompilerServices_ITuple_get_Length, (ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0116AD50, String *, ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean__ToString, (ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0116D170, void, ValueWatcher_1_System_Boolean___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0116C9E0, void, ValueWatcher_1_System_Boolean___ctor, (ValueWatcher_1_System_Boolean_ * __this, bool param_0000c5a2, bool param_0000c5a3, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF3D8, ValueWatcher_1_System_Boolean___ctor__MethodInfo); DO_APP_FUNC(0x0116C9F0, void, ValueWatcher_1_System_Boolean___ctor_1, (ValueWatcher_1_System_Boolean_ * __this, bool param_0000c5a4, Func_1_Boolean_ * param_0000c5a5, bool param_0000c5a6, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF3C0, ValueWatcher_1_System_Boolean___ctor_1__MethodInfo); DO_APP_FUNC(0x0116CD90, void, ValueWatcher_1_System_Boolean__AddEventListener, (ValueWatcher_1_System_Boolean_ * __this, ValueWatcher_jjzHjMtQjvaiBuvnPcrYNLPANNsN__Enum eventType, Delegate * listener, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBFD88, ValueWatcher_1_System_Boolean__AddEventListener__MethodInfo); DO_APP_FUNC(0x0116CF80, void, ValueWatcher_1_System_Boolean__RemoveEventListener, (ValueWatcher_1_System_Boolean_ * __this, ValueWatcher_jjzHjMtQjvaiBuvnPcrYNLPANNsN__Enum eventType, Delegate * listener, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBFDA8, ValueWatcher_1_System_Boolean__RemoveEventListener__MethodInfo); DO_APP_FUNC(0x0116CC80, bool, ValueWatcher_1_System_Boolean__Set, (ValueWatcher_1_System_Boolean_ * __this, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9778, ValueWatcher_1_System_Boolean__Set__MethodInfo); DO_APP_FUNC(0x0116CB90, bool, ValueWatcher_1_System_Boolean__TriggerEvent, (ValueWatcher_1_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0116CA90, bool, ValueWatcher_1_System_Boolean__Update, (ValueWatcher_1_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0116CB80, bool, ValueWatcher_1_System_Boolean__Use, (ValueWatcher_1_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0116C7A0, void, ValueWatcher_1_System_Boolean__add_ChangedEvent, (ValueWatcher_1_System_Boolean_ * __this, Action_1_Boolean_ * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC95C0, ValueWatcher_1_System_Boolean__add_ChangedEvent__MethodInfo); DO_APP_FUNC(0x00A7FC90, bool, ValueWatcher_1_System_Boolean__get_autoTriggerEvent, (ValueWatcher_1_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD20, bool, ValueWatcher_1_System_Boolean__get_changed, (ValueWatcher_1_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Func_1_Boolean_ *, ValueWatcher_1_System_Boolean__get_getValueDelegate, (ValueWatcher_1_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00424BF0, bool, ValueWatcher_1_System_Boolean__get_value, (ValueWatcher_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9800, ValueWatcher_1_System_Boolean__get_value__MethodInfo); DO_APP_FUNC(0x0116C8C0, void, ValueWatcher_1_System_Boolean__remove_ChangedEvent, (ValueWatcher_1_System_Boolean_ * __this, Action_1_Boolean_ * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC95A0, ValueWatcher_1_System_Boolean__remove_ChangedEvent__MethodInfo); DO_APP_FUNC(0x00A7FCA0, void, ValueWatcher_1_System_Boolean__set_autoTriggerEvent, (ValueWatcher_1_System_Boolean_ * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x003AE960, void, ValueWatcher_1_System_Boolean__set_getValueDelegate, (ValueWatcher_1_System_Boolean_ * __this, Func_1_Boolean_ * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9750, ValueWatcher_1_System_Boolean__set_getValueDelegate__MethodInfo); DO_APP_FUNC(0x0116D170, void, ValueWatcher_1_System_Int32___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0116D4D0, void, ValueWatcher_1_System_Int32___ctor, (ValueWatcher_1_System_Int32_ * __this, int32_t param_0000c5a2, bool param_0000c5a3, MethodInfo * method)); DO_APP_FUNC(0x0116D4E0, void, ValueWatcher_1_System_Int32___ctor_1, (ValueWatcher_1_System_Int32_ * __this, int32_t param_0000c5a4, Func_1_Int32_ * param_0000c5a5, bool param_0000c5a6, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF3D0, ValueWatcher_1_System_Int32___ctor_1__MethodInfo); DO_APP_FUNC(0x0116D870, void, ValueWatcher_1_System_Int32__AddEventListener, (ValueWatcher_1_System_Int32_ * __this, ValueWatcher_jjzHjMtQjvaiBuvnPcrYNLPANNsN__Enum eventType, Delegate * listener, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0EA0, ValueWatcher_1_System_Int32__AddEventListener__MethodInfo); DO_APP_FUNC(0x0116DA60, void, ValueWatcher_1_System_Int32__RemoveEventListener, (ValueWatcher_1_System_Int32_ * __this, ValueWatcher_jjzHjMtQjvaiBuvnPcrYNLPANNsN__Enum eventType, Delegate * listener, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0E90, ValueWatcher_1_System_Int32__RemoveEventListener__MethodInfo); DO_APP_FUNC(0x0116D760, bool, ValueWatcher_1_System_Int32__Set, (ValueWatcher_1_System_Int32_ * __this, int32_t value, MethodInfo * method)); DO_APP_FUNC(0x0116D670, bool, ValueWatcher_1_System_Int32__TriggerEvent, (ValueWatcher_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0116D580, bool, ValueWatcher_1_System_Int32__Update, (ValueWatcher_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0116CB80, bool, ValueWatcher_1_System_Int32__Use, (ValueWatcher_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0116D290, void, ValueWatcher_1_System_Int32__add_ChangedEvent, (ValueWatcher_1_System_Int32_ * __this, Action_1_Int32_ * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC95B0, ValueWatcher_1_System_Int32__add_ChangedEvent__MethodInfo); DO_APP_FUNC(0x003BCC40, bool, ValueWatcher_1_System_Int32__get_autoTriggerEvent, (ValueWatcher_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD20, bool, ValueWatcher_1_System_Int32__get_changed, (ValueWatcher_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, Func_1_Int32_ *, ValueWatcher_1_System_Int32__get_getValueDelegate, (ValueWatcher_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD70, int32_t, ValueWatcher_1_System_Int32__get_value, (ValueWatcher_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0116D3B0, void, ValueWatcher_1_System_Int32__remove_ChangedEvent, (ValueWatcher_1_System_Int32_ * __this, Action_1_Int32_ * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC95A8, ValueWatcher_1_System_Int32__remove_ChangedEvent__MethodInfo); DO_APP_FUNC(0x003BCC50, void, ValueWatcher_1_System_Int32__set_autoTriggerEvent, (ValueWatcher_1_System_Int32_ * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x003BCDE0, void, ValueWatcher_1_System_Int32__set_getValueDelegate, (ValueWatcher_1_System_Int32_ * __this, Func_1_Int32_ * value, MethodInfo * method)); DO_APP_FUNC(0x0116D170, void, ValueWatcher_1_System_IntPtr___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0116DE90, void, ValueWatcher_1_System_IntPtr___ctor, (ValueWatcher_1_System_IntPtr_ * __this, void * param_0000c5a2, bool param_0000c5a3, MethodInfo * method)); DO_APP_FUNC(0x0116DEA0, void, ValueWatcher_1_System_IntPtr___ctor_1, (ValueWatcher_1_System_IntPtr_ * __this, void * param_0000c5a4, Func_1_IntPtr_ * param_0000c5a5, bool param_0000c5a6, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD20F8, ValueWatcher_1_System_IntPtr___ctor_1__MethodInfo); DO_APP_FUNC(0x0116E230, void, ValueWatcher_1_System_IntPtr__AddEventListener, (ValueWatcher_1_System_IntPtr_ * __this, ValueWatcher_jjzHjMtQjvaiBuvnPcrYNLPANNsN__Enum eventType, Delegate * listener, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0EB8, ValueWatcher_1_System_IntPtr__AddEventListener__MethodInfo); DO_APP_FUNC(0x0116E420, void, ValueWatcher_1_System_IntPtr__RemoveEventListener, (ValueWatcher_1_System_IntPtr_ * __this, ValueWatcher_jjzHjMtQjvaiBuvnPcrYNLPANNsN__Enum eventType, Delegate * listener, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0EB0, ValueWatcher_1_System_IntPtr__RemoveEventListener__MethodInfo); DO_APP_FUNC(0x0116E120, bool, ValueWatcher_1_System_IntPtr__Set, (ValueWatcher_1_System_IntPtr_ * __this, void * value, MethodInfo * method)); DO_APP_FUNC(0x0116E030, bool, ValueWatcher_1_System_IntPtr__TriggerEvent, (ValueWatcher_1_System_IntPtr_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0116DF40, bool, ValueWatcher_1_System_IntPtr__Update, (ValueWatcher_1_System_IntPtr_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0116CB80, bool, ValueWatcher_1_System_IntPtr__Use, (ValueWatcher_1_System_IntPtr_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0116DC50, void, ValueWatcher_1_System_IntPtr__add_ChangedEvent, (ValueWatcher_1_System_IntPtr_ * __this, Action_1_IntPtr_ * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD20F0, ValueWatcher_1_System_IntPtr__add_ChangedEvent__MethodInfo); DO_APP_FUNC(0x005F7520, bool, ValueWatcher_1_System_IntPtr__get_autoTriggerEvent, (ValueWatcher_1_System_IntPtr_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BCD20, bool, ValueWatcher_1_System_IntPtr__get_changed, (ValueWatcher_1_System_IntPtr_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3B0, Func_1_IntPtr_ *, ValueWatcher_1_System_IntPtr__get_getValueDelegate, (ValueWatcher_1_System_IntPtr_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, void *, ValueWatcher_1_System_IntPtr__get_value, (ValueWatcher_1_System_IntPtr_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1F70, ValueWatcher_1_System_IntPtr__get_value__MethodInfo); DO_APP_FUNC(0x0116DD70, void, ValueWatcher_1_System_IntPtr__remove_ChangedEvent, (ValueWatcher_1_System_IntPtr_ * __this, Action_1_IntPtr_ * value, MethodInfo * method)); DO_APP_FUNC(0x00715340, void, ValueWatcher_1_System_IntPtr__set_autoTriggerEvent, (ValueWatcher_1_System_IntPtr_ * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x003C6500, void, ValueWatcher_1_System_IntPtr__set_getValueDelegate, (ValueWatcher_1_System_IntPtr_ * __this, Func_1_IntPtr_ * value, MethodInfo * method)); @@ -196256,7 +215405,9 @@ DO_APP_FUNC(0x0116D170, void, ValueWatcher_1_System_Object___cctor, (MethodInfo DO_APP_FUNC(0x0116E610, void, ValueWatcher_1_System_Object___ctor, (ValueWatcher_1_System_Object_ * __this, Object * param_0000c5a2, bool param_0000c5a3, MethodInfo * method)); DO_APP_FUNC(0x0116DEA0, void, ValueWatcher_1_System_Object___ctor_1, (ValueWatcher_1_System_Object_ * __this, Object * param_0000c5a4, Func_1_Object_ * param_0000c5a5, bool param_0000c5a6, MethodInfo * method)); DO_APP_FUNC(0x0116E7D0, void, ValueWatcher_1_System_Object__AddEventListener, (ValueWatcher_1_System_Object_ * __this, ValueWatcher_jjzHjMtQjvaiBuvnPcrYNLPANNsN__Enum eventType, Delegate * listener, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0ED0, ValueWatcher_1_System_Object__AddEventListener__MethodInfo); DO_APP_FUNC(0x0116E9C0, void, ValueWatcher_1_System_Object__RemoveEventListener, (ValueWatcher_1_System_Object_ * __this, ValueWatcher_jjzHjMtQjvaiBuvnPcrYNLPANNsN__Enum eventType, Delegate * listener, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0EC0, ValueWatcher_1_System_Object__RemoveEventListener__MethodInfo); DO_APP_FUNC(0x0116E670, bool, ValueWatcher_1_System_Object__Set, (ValueWatcher_1_System_Object_ * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x0116E030, bool, ValueWatcher_1_System_Object__TriggerEvent, (ValueWatcher_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0116DF40, bool, ValueWatcher_1_System_Object__Update, (ValueWatcher_1_System_Object_ * __this, MethodInfo * method)); @@ -196272,8 +215423,11 @@ DO_APP_FUNC(0x003C6500, void, ValueWatcher_1_System_Object__set_getValueDelegate DO_APP_FUNC(0x0116D170, void, ValueWatcher_1_System_Single___cctor, (MethodInfo * method)); DO_APP_FUNC(0x0116EBB0, void, ValueWatcher_1_System_Single___ctor, (ValueWatcher_1_System_Single_ * __this, float param_0000c5a2, bool param_0000c5a3, MethodInfo * method)); DO_APP_FUNC(0x0116EBC0, void, ValueWatcher_1_System_Single___ctor_1, (ValueWatcher_1_System_Single_ * __this, float param_0000c5a4, Func_1_Single_ * param_0000c5a5, bool param_0000c5a6, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEF3B0, ValueWatcher_1_System_Single___ctor_1__MethodInfo); DO_APP_FUNC(0x0116EF60, void, ValueWatcher_1_System_Single__AddEventListener, (ValueWatcher_1_System_Single_ * __this, ValueWatcher_jjzHjMtQjvaiBuvnPcrYNLPANNsN__Enum eventType, Delegate * listener, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0EE8, ValueWatcher_1_System_Single__AddEventListener__MethodInfo); DO_APP_FUNC(0x0116F150, void, ValueWatcher_1_System_Single__RemoveEventListener, (ValueWatcher_1_System_Single_ * __this, ValueWatcher_jjzHjMtQjvaiBuvnPcrYNLPANNsN__Enum eventType, Delegate * listener, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0EE0, ValueWatcher_1_System_Single__RemoveEventListener__MethodInfo); DO_APP_FUNC(0x0116EE50, bool, ValueWatcher_1_System_Single__Set, (ValueWatcher_1_System_Single_ * __this, float value, MethodInfo * method)); DO_APP_FUNC(0x0116ED50, bool, ValueWatcher_1_System_Single__TriggerEvent, (ValueWatcher_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0116EC60, bool, ValueWatcher_1_System_Single__Update, (ValueWatcher_1_System_Single_ * __this, MethodInfo * method)); @@ -196283,15 +215437,18 @@ DO_APP_FUNC(0x003BCC40, bool, ValueWatcher_1_System_Single__get_autoTriggerEvent DO_APP_FUNC(0x003BCD20, bool, ValueWatcher_1_System_Single__get_changed, (ValueWatcher_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3E0, Func_1_Single_ *, ValueWatcher_1_System_Single__get_getValueDelegate, (ValueWatcher_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BC310, float, ValueWatcher_1_System_Single__get_value, (ValueWatcher_1_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9690, ValueWatcher_1_System_Single__get_value__MethodInfo); DO_APP_FUNC(0x0116D3B0, void, ValueWatcher_1_System_Single__remove_ChangedEvent, (ValueWatcher_1_System_Single_ * __this, Action_1_Single_ * value, MethodInfo * method)); DO_APP_FUNC(0x003BCC50, void, ValueWatcher_1_System_Single__set_autoTriggerEvent, (ValueWatcher_1_System_Single_ * __this, bool value, MethodInfo * method)); DO_APP_FUNC(0x003BCDE0, void, ValueWatcher_1_System_Single__set_getValueDelegate, (ValueWatcher_1_System_Single_ * __this, Func_1_Single_ * value, MethodInfo * method)); DO_APP_FUNC(0x0116F5D0, void, StylePropertyAnimationSystem_ValuesDiscrete_1_Background___ctor, (StylePropertyAnimationSystem_ValuesDiscrete_1_Background_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDEC70, StylePropertyAnimationSystem_ValuesDiscrete_1_Background___ctor__MethodInfo); DO_APP_FUNC(0x0116F340, bool, StylePropertyAnimationSystem_ValuesDiscrete_1_Background__IsSame, (Background a, Background b, MethodInfo * method)); DO_APP_FUNC(0x0116F410, Background, StylePropertyAnimationSystem_ValuesDiscrete_1_Background__Lerp, (Background a, Background b, float t, MethodInfo * method)); DO_APP_FUNC(0x0116F440, void, StylePropertyAnimationSystem_ValuesDiscrete_1_Background__UpdateValues, (StylePropertyAnimationSystem_ValuesDiscrete_1_Background_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003C9200, Func_3_UnityEngine_UIElements_Background_UnityEngine_UIElements_Background_Boolean_ *, StylePropertyAnimationSystem_ValuesDiscrete_1_Background__get_SameFunc, (StylePropertyAnimationSystem_ValuesDiscrete_1_Background_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0116F5D0, void, StylePropertyAnimationSystem_ValuesDiscrete_1_FontDefinition___ctor, (StylePropertyAnimationSystem_ValuesDiscrete_1_FontDefinition_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDEC90, StylePropertyAnimationSystem_ValuesDiscrete_1_FontDefinition___ctor__MethodInfo); DO_APP_FUNC(0x0116F6C0, bool, StylePropertyAnimationSystem_ValuesDiscrete_1_FontDefinition__IsSame, (FontDefinition a, FontDefinition b, MethodInfo * method)); DO_APP_FUNC(0x0116F780, FontDefinition, StylePropertyAnimationSystem_ValuesDiscrete_1_FontDefinition__Lerp, (FontDefinition a, FontDefinition b, float t, MethodInfo * method)); DO_APP_FUNC(0x0116F7A0, void, StylePropertyAnimationSystem_ValuesDiscrete_1_FontDefinition__UpdateValues, (StylePropertyAnimationSystem_ValuesDiscrete_1_FontDefinition_ * __this, MethodInfo * method)); @@ -196309,7 +215466,7 @@ DO_APP_FUNC(0x011701A0, void, StylePropertyAnimationSystem_Values_1_Background__ DO_APP_FUNC(0x01172030, int32_t, StylePropertyAnimationSystem_Values_1_Background__ComputeReversingDelay, (StylePropertyAnimationSystem_Values_1_Background_ * __this, int32_t delayMs, float newReversingShorteningFactor, MethodInfo * method)); DO_APP_FUNC(0x01172010, int32_t, StylePropertyAnimationSystem_Values_1_Background__ComputeReversingDuration, (StylePropertyAnimationSystem_Values_1_Background_ * __this, int32_t newTransitionDurationMs, float newReversingShorteningFactor, MethodInfo * method)); DO_APP_FUNC(0x01171FA0, float, StylePropertyAnimationSystem_Values_1_Background__ComputeReversingShorteningFactor, (StylePropertyAnimationSystem_Values_1_Background_ * __this, int32_t oldIndex, MethodInfo * method)); -DO_APP_FUNC(0x01120490, bool, StylePropertyAnimationSystem_Values_1_Background__ConvertUnits, (StylePropertyAnimationSystem_Values_1_Background_ * __this, VisualElement * owner, StylePropertyId__Enum prop, Background a, Background b, MethodInfo * method)); +DO_APP_FUNC(0x01120490, bool, StylePropertyAnimationSystem_Values_1_Background__ConvertUnits, (StylePropertyAnimationSystem_Values_1_Background_ * __this, VisualElement * owner, StylePropertyId__Enum prop, Background * a, Background * b, MethodInfo * method)); DO_APP_FUNC(0x01172D50, void, StylePropertyAnimationSystem_Values_1_Background__ForceComputedStyleEndValue, (StylePropertyAnimationSystem_Values_1_Background_ * __this, int32_t runningIndex, MethodInfo * method)); DO_APP_FUNC(0x01171E70, void, StylePropertyAnimationSystem_Values_1_Background__GetAllAnimations, (StylePropertyAnimationSystem_Values_1_Background_ * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outPropertyIds, MethodInfo * method)); DO_APP_FUNC(0x01172ED0, void, StylePropertyAnimationSystem_Values_1_Background__ProcessEventQueue, (StylePropertyAnimationSystem_Values_1_Background_ * __this, MethodInfo * method)); @@ -196326,6 +215483,7 @@ DO_APP_FUNC(0x01171E10, void, StylePropertyAnimationSystem_Values_1_Background__ DO_APP_FUNC(0x01173310, void, StylePropertyAnimationSystem_Values_1_Background__UpdateProgress, (StylePropertyAnimationSystem_Values_1_Background_ * __this, int64_t currentTimeMs, MethodInfo * method)); DO_APP_FUNC(0x0116FAE0, bool, StylePropertyAnimationSystem_Values_1_Background__get_isEmpty, (StylePropertyAnimationSystem_Values_1_Background_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011736A0, void, StylePropertyAnimationSystem_Values_1_UnityEngine_Color___ctor, (StylePropertyAnimationSystem_Values_1_UnityEngine_Color_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDEC80, StylePropertyAnimationSystem_Values_1_UnityEngine_Color___ctor__MethodInfo); DO_APP_FUNC(0x01174ED0, void, StylePropertyAnimationSystem_Values_1_UnityEngine_Color__CancelAllAnimations, (StylePropertyAnimationSystem_Values_1_UnityEngine_Color_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011753F0, void, StylePropertyAnimationSystem_Values_1_UnityEngine_Color__CancelAllAnimations_1, (StylePropertyAnimationSystem_Values_1_UnityEngine_Color_ * __this, VisualElement * ve, MethodInfo * method)); DO_APP_FUNC(0x01175780, void, StylePropertyAnimationSystem_Values_1_UnityEngine_Color__CancelAnimation, (StylePropertyAnimationSystem_Values_1_UnityEngine_Color_ * __this, VisualElement * ve, StylePropertyId__Enum id, MethodInfo * method)); @@ -196333,7 +215491,7 @@ DO_APP_FUNC(0x01173C90, void, StylePropertyAnimationSystem_Values_1_UnityEngine_ DO_APP_FUNC(0x01172030, int32_t, StylePropertyAnimationSystem_Values_1_UnityEngine_Color__ComputeReversingDelay, (StylePropertyAnimationSystem_Values_1_UnityEngine_Color_ * __this, int32_t delayMs, float newReversingShorteningFactor, MethodInfo * method)); DO_APP_FUNC(0x01172010, int32_t, StylePropertyAnimationSystem_Values_1_UnityEngine_Color__ComputeReversingDuration, (StylePropertyAnimationSystem_Values_1_UnityEngine_Color_ * __this, int32_t newTransitionDurationMs, float newReversingShorteningFactor, MethodInfo * method)); DO_APP_FUNC(0x01171FA0, float, StylePropertyAnimationSystem_Values_1_UnityEngine_Color__ComputeReversingShorteningFactor, (StylePropertyAnimationSystem_Values_1_UnityEngine_Color_ * __this, int32_t oldIndex, MethodInfo * method)); -DO_APP_FUNC(0x01120490, bool, StylePropertyAnimationSystem_Values_1_UnityEngine_Color__ConvertUnits, (StylePropertyAnimationSystem_Values_1_UnityEngine_Color_ * __this, VisualElement * owner, StylePropertyId__Enum prop, Color a, Color b, MethodInfo * method)); +DO_APP_FUNC(0x01120490, bool, StylePropertyAnimationSystem_Values_1_UnityEngine_Color__ConvertUnits, (StylePropertyAnimationSystem_Values_1_UnityEngine_Color_ * __this, VisualElement * owner, StylePropertyId__Enum prop, Color * a, Color * b, MethodInfo * method)); DO_APP_FUNC(0x01176360, void, StylePropertyAnimationSystem_Values_1_UnityEngine_Color__ForceComputedStyleEndValue, (StylePropertyAnimationSystem_Values_1_UnityEngine_Color_ * __this, int32_t runningIndex, MethodInfo * method)); DO_APP_FUNC(0x01175960, void, StylePropertyAnimationSystem_Values_1_UnityEngine_Color__GetAllAnimations, (StylePropertyAnimationSystem_Values_1_UnityEngine_Color_ * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outPropertyIds, MethodInfo * method)); DO_APP_FUNC(0x011763B0, void, StylePropertyAnimationSystem_Values_1_UnityEngine_Color__ProcessEventQueue, (StylePropertyAnimationSystem_Values_1_UnityEngine_Color_ * __this, MethodInfo * method)); @@ -196357,7 +215515,7 @@ DO_APP_FUNC(0x01177140, void, StylePropertyAnimationSystem_Values_1_FontDefiniti DO_APP_FUNC(0x01172030, int32_t, StylePropertyAnimationSystem_Values_1_FontDefinition__ComputeReversingDelay, (StylePropertyAnimationSystem_Values_1_FontDefinition_ * __this, int32_t delayMs, float newReversingShorteningFactor, MethodInfo * method)); DO_APP_FUNC(0x01172010, int32_t, StylePropertyAnimationSystem_Values_1_FontDefinition__ComputeReversingDuration, (StylePropertyAnimationSystem_Values_1_FontDefinition_ * __this, int32_t newTransitionDurationMs, float newReversingShorteningFactor, MethodInfo * method)); DO_APP_FUNC(0x01171FA0, float, StylePropertyAnimationSystem_Values_1_FontDefinition__ComputeReversingShorteningFactor, (StylePropertyAnimationSystem_Values_1_FontDefinition_ * __this, int32_t oldIndex, MethodInfo * method)); -DO_APP_FUNC(0x01120490, bool, StylePropertyAnimationSystem_Values_1_FontDefinition__ConvertUnits, (StylePropertyAnimationSystem_Values_1_FontDefinition_ * __this, VisualElement * owner, StylePropertyId__Enum prop, FontDefinition a, FontDefinition b, MethodInfo * method)); +DO_APP_FUNC(0x01120490, bool, StylePropertyAnimationSystem_Values_1_FontDefinition__ConvertUnits, (StylePropertyAnimationSystem_Values_1_FontDefinition_ * __this, VisualElement * owner, StylePropertyId__Enum prop, FontDefinition * a, FontDefinition * b, MethodInfo * method)); DO_APP_FUNC(0x01179AA0, void, StylePropertyAnimationSystem_Values_1_FontDefinition__ForceComputedStyleEndValue, (StylePropertyAnimationSystem_Values_1_FontDefinition_ * __this, int32_t runningIndex, MethodInfo * method)); DO_APP_FUNC(0x01178E10, void, StylePropertyAnimationSystem_Values_1_FontDefinition__GetAllAnimations, (StylePropertyAnimationSystem_Values_1_FontDefinition_ * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outPropertyIds, MethodInfo * method)); DO_APP_FUNC(0x01179B40, void, StylePropertyAnimationSystem_Values_1_FontDefinition__ProcessEventQueue, (StylePropertyAnimationSystem_Values_1_FontDefinition_ * __this, MethodInfo * method)); @@ -196374,6 +215532,7 @@ DO_APP_FUNC(0x01178DB0, void, StylePropertyAnimationSystem_Values_1_FontDefiniti DO_APP_FUNC(0x01179F80, void, StylePropertyAnimationSystem_Values_1_FontDefinition__UpdateProgress, (StylePropertyAnimationSystem_Values_1_FontDefinition_ * __this, int64_t currentTimeMs, MethodInfo * method)); DO_APP_FUNC(0x0116FAE0, bool, StylePropertyAnimationSystem_Values_1_FontDefinition__get_isEmpty, (StylePropertyAnimationSystem_Values_1_FontDefinition_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0117A2F0, void, StylePropertyAnimationSystem_Values_1_System_Int32___ctor, (StylePropertyAnimationSystem_Values_1_System_Int32_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDEC40, StylePropertyAnimationSystem_Values_1_System_Int32___ctor__MethodInfo); DO_APP_FUNC(0x0117BB20, void, StylePropertyAnimationSystem_Values_1_System_Int32__CancelAllAnimations, (StylePropertyAnimationSystem_Values_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0117C040, void, StylePropertyAnimationSystem_Values_1_System_Int32__CancelAllAnimations_1, (StylePropertyAnimationSystem_Values_1_System_Int32_ * __this, VisualElement * ve, MethodInfo * method)); DO_APP_FUNC(0x0117C3D0, void, StylePropertyAnimationSystem_Values_1_System_Int32__CancelAnimation, (StylePropertyAnimationSystem_Values_1_System_Int32_ * __this, VisualElement * ve, StylePropertyId__Enum id, MethodInfo * method)); @@ -196381,7 +215540,7 @@ DO_APP_FUNC(0x0117A8E0, void, StylePropertyAnimationSystem_Values_1_System_Int32 DO_APP_FUNC(0x01172030, int32_t, StylePropertyAnimationSystem_Values_1_System_Int32__ComputeReversingDelay, (StylePropertyAnimationSystem_Values_1_System_Int32_ * __this, int32_t delayMs, float newReversingShorteningFactor, MethodInfo * method)); DO_APP_FUNC(0x01172010, int32_t, StylePropertyAnimationSystem_Values_1_System_Int32__ComputeReversingDuration, (StylePropertyAnimationSystem_Values_1_System_Int32_ * __this, int32_t newTransitionDurationMs, float newReversingShorteningFactor, MethodInfo * method)); DO_APP_FUNC(0x01171FA0, float, StylePropertyAnimationSystem_Values_1_System_Int32__ComputeReversingShorteningFactor, (StylePropertyAnimationSystem_Values_1_System_Int32_ * __this, int32_t oldIndex, MethodInfo * method)); -DO_APP_FUNC(0x01120490, bool, StylePropertyAnimationSystem_Values_1_System_Int32__ConvertUnits, (StylePropertyAnimationSystem_Values_1_System_Int32_ * __this, VisualElement * owner, StylePropertyId__Enum prop, int32_t a, int32_t b, MethodInfo * method)); +DO_APP_FUNC(0x01120490, bool, StylePropertyAnimationSystem_Values_1_System_Int32__ConvertUnits, (StylePropertyAnimationSystem_Values_1_System_Int32_ * __this, VisualElement * owner, StylePropertyId__Enum prop, int32_t * a, int32_t * b, MethodInfo * method)); DO_APP_FUNC(0x0117CE90, void, StylePropertyAnimationSystem_Values_1_System_Int32__ForceComputedStyleEndValue, (StylePropertyAnimationSystem_Values_1_System_Int32_ * __this, int32_t runningIndex, MethodInfo * method)); DO_APP_FUNC(0x0117C5B0, void, StylePropertyAnimationSystem_Values_1_System_Int32__GetAllAnimations, (StylePropertyAnimationSystem_Values_1_System_Int32_ * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outPropertyIds, MethodInfo * method)); DO_APP_FUNC(0x0117CEE0, void, StylePropertyAnimationSystem_Values_1_System_Int32__ProcessEventQueue, (StylePropertyAnimationSystem_Values_1_System_Int32_ * __this, MethodInfo * method)); @@ -196398,6 +215557,7 @@ DO_APP_FUNC(0x0117C550, void, StylePropertyAnimationSystem_Values_1_System_Int32 DO_APP_FUNC(0x0117D320, void, StylePropertyAnimationSystem_Values_1_System_Int32__UpdateProgress, (StylePropertyAnimationSystem_Values_1_System_Int32_ * __this, int64_t currentTimeMs, MethodInfo * method)); DO_APP_FUNC(0x0116FAE0, bool, StylePropertyAnimationSystem_Values_1_System_Int32__get_isEmpty, (StylePropertyAnimationSystem_Values_1_System_Int32_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0117D670, void, StylePropertyAnimationSystem_Values_1_Length___ctor, (StylePropertyAnimationSystem_Values_1_Length_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDEC60, StylePropertyAnimationSystem_Values_1_Length___ctor__MethodInfo); DO_APP_FUNC(0x0117EEA0, void, StylePropertyAnimationSystem_Values_1_Length__CancelAllAnimations, (StylePropertyAnimationSystem_Values_1_Length_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0117F3C0, void, StylePropertyAnimationSystem_Values_1_Length__CancelAllAnimations_1, (StylePropertyAnimationSystem_Values_1_Length_ * __this, VisualElement * ve, MethodInfo * method)); DO_APP_FUNC(0x0117F750, void, StylePropertyAnimationSystem_Values_1_Length__CancelAnimation, (StylePropertyAnimationSystem_Values_1_Length_ * __this, VisualElement * ve, StylePropertyId__Enum id, MethodInfo * method)); @@ -196405,7 +215565,7 @@ DO_APP_FUNC(0x0117DC60, void, StylePropertyAnimationSystem_Values_1_Length__Clea DO_APP_FUNC(0x01172030, int32_t, StylePropertyAnimationSystem_Values_1_Length__ComputeReversingDelay, (StylePropertyAnimationSystem_Values_1_Length_ * __this, int32_t delayMs, float newReversingShorteningFactor, MethodInfo * method)); DO_APP_FUNC(0x01172010, int32_t, StylePropertyAnimationSystem_Values_1_Length__ComputeReversingDuration, (StylePropertyAnimationSystem_Values_1_Length_ * __this, int32_t newTransitionDurationMs, float newReversingShorteningFactor, MethodInfo * method)); DO_APP_FUNC(0x01171FA0, float, StylePropertyAnimationSystem_Values_1_Length__ComputeReversingShorteningFactor, (StylePropertyAnimationSystem_Values_1_Length_ * __this, int32_t oldIndex, MethodInfo * method)); -DO_APP_FUNC(0x01120490, bool, StylePropertyAnimationSystem_Values_1_Length__ConvertUnits, (StylePropertyAnimationSystem_Values_1_Length_ * __this, VisualElement * owner, StylePropertyId__Enum prop, Length a, Length b, MethodInfo * method)); +DO_APP_FUNC(0x01120490, bool, StylePropertyAnimationSystem_Values_1_Length__ConvertUnits, (StylePropertyAnimationSystem_Values_1_Length_ * __this, VisualElement * owner, StylePropertyId__Enum prop, Length * a, Length * b, MethodInfo * method)); DO_APP_FUNC(0x01180230, void, StylePropertyAnimationSystem_Values_1_Length__ForceComputedStyleEndValue, (StylePropertyAnimationSystem_Values_1_Length_ * __this, int32_t runningIndex, MethodInfo * method)); DO_APP_FUNC(0x0117F930, void, StylePropertyAnimationSystem_Values_1_Length__GetAllAnimations, (StylePropertyAnimationSystem_Values_1_Length_ * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outPropertyIds, MethodInfo * method)); DO_APP_FUNC(0x01180280, void, StylePropertyAnimationSystem_Values_1_Length__ProcessEventQueue, (StylePropertyAnimationSystem_Values_1_Length_ * __this, MethodInfo * method)); @@ -196429,7 +215589,7 @@ DO_APP_FUNC(0x01181010, void, StylePropertyAnimationSystem_Values_1_System_Objec DO_APP_FUNC(0x01172030, int32_t, StylePropertyAnimationSystem_Values_1_System_Object__ComputeReversingDelay, (StylePropertyAnimationSystem_Values_1_System_Object_ * __this, int32_t delayMs, float newReversingShorteningFactor, MethodInfo * method)); DO_APP_FUNC(0x01172010, int32_t, StylePropertyAnimationSystem_Values_1_System_Object__ComputeReversingDuration, (StylePropertyAnimationSystem_Values_1_System_Object_ * __this, int32_t newTransitionDurationMs, float newReversingShorteningFactor, MethodInfo * method)); DO_APP_FUNC(0x01171FA0, float, StylePropertyAnimationSystem_Values_1_System_Object__ComputeReversingShorteningFactor, (StylePropertyAnimationSystem_Values_1_System_Object_ * __this, int32_t oldIndex, MethodInfo * method)); -DO_APP_FUNC(0x01120490, bool, StylePropertyAnimationSystem_Values_1_System_Object__ConvertUnits, (StylePropertyAnimationSystem_Values_1_System_Object_ * __this, VisualElement * owner, StylePropertyId__Enum prop, Object * a, Object * b, MethodInfo * method)); +DO_APP_FUNC(0x01120490, bool, StylePropertyAnimationSystem_Values_1_System_Object__ConvertUnits, (StylePropertyAnimationSystem_Values_1_System_Object_ * __this, VisualElement * owner, StylePropertyId__Enum prop, Object * * a, Object * * b, MethodInfo * method)); DO_APP_FUNC(0x01183850, void, StylePropertyAnimationSystem_Values_1_System_Object__ForceComputedStyleEndValue, (StylePropertyAnimationSystem_Values_1_System_Object_ * __this, int32_t runningIndex, MethodInfo * method)); DO_APP_FUNC(0x01182CE0, void, StylePropertyAnimationSystem_Values_1_System_Object__GetAllAnimations, (StylePropertyAnimationSystem_Values_1_System_Object_ * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outPropertyIds, MethodInfo * method)); DO_APP_FUNC(0x011838F0, void, StylePropertyAnimationSystem_Values_1_System_Object__ProcessEventQueue, (StylePropertyAnimationSystem_Values_1_System_Object_ * __this, MethodInfo * method)); @@ -196446,6 +215606,7 @@ DO_APP_FUNC(0x01182C80, void, StylePropertyAnimationSystem_Values_1_System_Objec DO_APP_FUNC(0x01183D30, void, StylePropertyAnimationSystem_Values_1_System_Object__UpdateProgress, (StylePropertyAnimationSystem_Values_1_System_Object_ * __this, int64_t currentTimeMs, MethodInfo * method)); DO_APP_FUNC(0x0116FAE0, bool, StylePropertyAnimationSystem_Values_1_System_Object__get_isEmpty, (StylePropertyAnimationSystem_Values_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01184090, void, StylePropertyAnimationSystem_Values_1_Rotate___ctor, (StylePropertyAnimationSystem_Values_1_Rotate_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDEC08, StylePropertyAnimationSystem_Values_1_Rotate___ctor__MethodInfo); DO_APP_FUNC(0x011858C0, void, StylePropertyAnimationSystem_Values_1_Rotate__CancelAllAnimations, (StylePropertyAnimationSystem_Values_1_Rotate_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01185DE0, void, StylePropertyAnimationSystem_Values_1_Rotate__CancelAllAnimations_1, (StylePropertyAnimationSystem_Values_1_Rotate_ * __this, VisualElement * ve, MethodInfo * method)); DO_APP_FUNC(0x01186170, void, StylePropertyAnimationSystem_Values_1_Rotate__CancelAnimation, (StylePropertyAnimationSystem_Values_1_Rotate_ * __this, VisualElement * ve, StylePropertyId__Enum id, MethodInfo * method)); @@ -196453,7 +215614,7 @@ DO_APP_FUNC(0x01184680, void, StylePropertyAnimationSystem_Values_1_Rotate__Clea DO_APP_FUNC(0x01172030, int32_t, StylePropertyAnimationSystem_Values_1_Rotate__ComputeReversingDelay, (StylePropertyAnimationSystem_Values_1_Rotate_ * __this, int32_t delayMs, float newReversingShorteningFactor, MethodInfo * method)); DO_APP_FUNC(0x01172010, int32_t, StylePropertyAnimationSystem_Values_1_Rotate__ComputeReversingDuration, (StylePropertyAnimationSystem_Values_1_Rotate_ * __this, int32_t newTransitionDurationMs, float newReversingShorteningFactor, MethodInfo * method)); DO_APP_FUNC(0x01171FA0, float, StylePropertyAnimationSystem_Values_1_Rotate__ComputeReversingShorteningFactor, (StylePropertyAnimationSystem_Values_1_Rotate_ * __this, int32_t oldIndex, MethodInfo * method)); -DO_APP_FUNC(0x01120490, bool, StylePropertyAnimationSystem_Values_1_Rotate__ConvertUnits, (StylePropertyAnimationSystem_Values_1_Rotate_ * __this, VisualElement * owner, StylePropertyId__Enum prop, Rotate_1 a, Rotate_1 b, MethodInfo * method)); +DO_APP_FUNC(0x01120490, bool, StylePropertyAnimationSystem_Values_1_Rotate__ConvertUnits, (StylePropertyAnimationSystem_Values_1_Rotate_ * __this, VisualElement * owner, StylePropertyId__Enum prop, Rotate_1 * a, Rotate_1 * b, MethodInfo * method)); DO_APP_FUNC(0x01186E70, void, StylePropertyAnimationSystem_Values_1_Rotate__ForceComputedStyleEndValue, (StylePropertyAnimationSystem_Values_1_Rotate_ * __this, int32_t runningIndex, MethodInfo * method)); DO_APP_FUNC(0x01186350, void, StylePropertyAnimationSystem_Values_1_Rotate__GetAllAnimations, (StylePropertyAnimationSystem_Values_1_Rotate_ * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outPropertyIds, MethodInfo * method)); DO_APP_FUNC(0x01186ED0, void, StylePropertyAnimationSystem_Values_1_Rotate__ProcessEventQueue, (StylePropertyAnimationSystem_Values_1_Rotate_ * __this, MethodInfo * method)); @@ -196470,6 +215631,7 @@ DO_APP_FUNC(0x011862F0, void, StylePropertyAnimationSystem_Values_1_Rotate__Upda DO_APP_FUNC(0x01187310, void, StylePropertyAnimationSystem_Values_1_Rotate__UpdateProgress, (StylePropertyAnimationSystem_Values_1_Rotate_ * __this, int64_t currentTimeMs, MethodInfo * method)); DO_APP_FUNC(0x0116FAE0, bool, StylePropertyAnimationSystem_Values_1_Rotate__get_isEmpty, (StylePropertyAnimationSystem_Values_1_Rotate_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01187690, void, StylePropertyAnimationSystem_Values_1_Scale___ctor, (StylePropertyAnimationSystem_Values_1_Scale_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDEBF0, StylePropertyAnimationSystem_Values_1_Scale___ctor__MethodInfo); DO_APP_FUNC(0x01188EC0, void, StylePropertyAnimationSystem_Values_1_Scale__CancelAllAnimations, (StylePropertyAnimationSystem_Values_1_Scale_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011893E0, void, StylePropertyAnimationSystem_Values_1_Scale__CancelAllAnimations_1, (StylePropertyAnimationSystem_Values_1_Scale_ * __this, VisualElement * ve, MethodInfo * method)); DO_APP_FUNC(0x01189770, void, StylePropertyAnimationSystem_Values_1_Scale__CancelAnimation, (StylePropertyAnimationSystem_Values_1_Scale_ * __this, VisualElement * ve, StylePropertyId__Enum id, MethodInfo * method)); @@ -196477,7 +215639,7 @@ DO_APP_FUNC(0x01187C80, void, StylePropertyAnimationSystem_Values_1_Scale__Clear DO_APP_FUNC(0x01172030, int32_t, StylePropertyAnimationSystem_Values_1_Scale__ComputeReversingDelay, (StylePropertyAnimationSystem_Values_1_Scale_ * __this, int32_t delayMs, float newReversingShorteningFactor, MethodInfo * method)); DO_APP_FUNC(0x01172010, int32_t, StylePropertyAnimationSystem_Values_1_Scale__ComputeReversingDuration, (StylePropertyAnimationSystem_Values_1_Scale_ * __this, int32_t newTransitionDurationMs, float newReversingShorteningFactor, MethodInfo * method)); DO_APP_FUNC(0x01171FA0, float, StylePropertyAnimationSystem_Values_1_Scale__ComputeReversingShorteningFactor, (StylePropertyAnimationSystem_Values_1_Scale_ * __this, int32_t oldIndex, MethodInfo * method)); -DO_APP_FUNC(0x01120490, bool, StylePropertyAnimationSystem_Values_1_Scale__ConvertUnits, (StylePropertyAnimationSystem_Values_1_Scale_ * __this, VisualElement * owner, StylePropertyId__Enum prop, Scale a, Scale b, MethodInfo * method)); +DO_APP_FUNC(0x01120490, bool, StylePropertyAnimationSystem_Values_1_Scale__ConvertUnits, (StylePropertyAnimationSystem_Values_1_Scale_ * __this, VisualElement * owner, StylePropertyId__Enum prop, Scale * a, Scale * b, MethodInfo * method)); DO_APP_FUNC(0x01176360, void, StylePropertyAnimationSystem_Values_1_Scale__ForceComputedStyleEndValue, (StylePropertyAnimationSystem_Values_1_Scale_ * __this, int32_t runningIndex, MethodInfo * method)); DO_APP_FUNC(0x01189950, void, StylePropertyAnimationSystem_Values_1_Scale__GetAllAnimations, (StylePropertyAnimationSystem_Values_1_Scale_ * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outPropertyIds, MethodInfo * method)); DO_APP_FUNC(0x0118A350, void, StylePropertyAnimationSystem_Values_1_Scale__ProcessEventQueue, (StylePropertyAnimationSystem_Values_1_Scale_ * __this, MethodInfo * method)); @@ -196494,6 +215656,7 @@ DO_APP_FUNC(0x011898F0, void, StylePropertyAnimationSystem_Values_1_Scale__Updat DO_APP_FUNC(0x0118A790, void, StylePropertyAnimationSystem_Values_1_Scale__UpdateProgress, (StylePropertyAnimationSystem_Values_1_Scale_ * __this, int64_t currentTimeMs, MethodInfo * method)); DO_APP_FUNC(0x0116FAE0, bool, StylePropertyAnimationSystem_Values_1_Scale__get_isEmpty, (StylePropertyAnimationSystem_Values_1_Scale_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0118AAF0, void, StylePropertyAnimationSystem_Values_1_System_Single___ctor, (StylePropertyAnimationSystem_Values_1_System_Single_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6778, StylePropertyAnimationSystem_Values_1_System_Single___ctor__MethodInfo); DO_APP_FUNC(0x0118C320, void, StylePropertyAnimationSystem_Values_1_System_Single__CancelAllAnimations, (StylePropertyAnimationSystem_Values_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0118C840, void, StylePropertyAnimationSystem_Values_1_System_Single__CancelAllAnimations_1, (StylePropertyAnimationSystem_Values_1_System_Single_ * __this, VisualElement * ve, MethodInfo * method)); DO_APP_FUNC(0x0118CBD0, void, StylePropertyAnimationSystem_Values_1_System_Single__CancelAnimation, (StylePropertyAnimationSystem_Values_1_System_Single_ * __this, VisualElement * ve, StylePropertyId__Enum id, MethodInfo * method)); @@ -196501,7 +215664,7 @@ DO_APP_FUNC(0x0118B0E0, void, StylePropertyAnimationSystem_Values_1_System_Singl DO_APP_FUNC(0x01172030, int32_t, StylePropertyAnimationSystem_Values_1_System_Single__ComputeReversingDelay, (StylePropertyAnimationSystem_Values_1_System_Single_ * __this, int32_t delayMs, float newReversingShorteningFactor, MethodInfo * method)); DO_APP_FUNC(0x01172010, int32_t, StylePropertyAnimationSystem_Values_1_System_Single__ComputeReversingDuration, (StylePropertyAnimationSystem_Values_1_System_Single_ * __this, int32_t newTransitionDurationMs, float newReversingShorteningFactor, MethodInfo * method)); DO_APP_FUNC(0x01171FA0, float, StylePropertyAnimationSystem_Values_1_System_Single__ComputeReversingShorteningFactor, (StylePropertyAnimationSystem_Values_1_System_Single_ * __this, int32_t oldIndex, MethodInfo * method)); -DO_APP_FUNC(0x01120490, bool, StylePropertyAnimationSystem_Values_1_System_Single__ConvertUnits, (StylePropertyAnimationSystem_Values_1_System_Single_ * __this, VisualElement * owner, StylePropertyId__Enum prop, float a, float b, MethodInfo * method)); +DO_APP_FUNC(0x01120490, bool, StylePropertyAnimationSystem_Values_1_System_Single__ConvertUnits, (StylePropertyAnimationSystem_Values_1_System_Single_ * __this, VisualElement * owner, StylePropertyId__Enum prop, float * a, float * b, MethodInfo * method)); DO_APP_FUNC(0x0117CE90, void, StylePropertyAnimationSystem_Values_1_System_Single__ForceComputedStyleEndValue, (StylePropertyAnimationSystem_Values_1_System_Single_ * __this, int32_t runningIndex, MethodInfo * method)); DO_APP_FUNC(0x0118CDB0, void, StylePropertyAnimationSystem_Values_1_System_Single__GetAllAnimations, (StylePropertyAnimationSystem_Values_1_System_Single_ * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outPropertyIds, MethodInfo * method)); DO_APP_FUNC(0x0118D6C0, void, StylePropertyAnimationSystem_Values_1_System_Single__ProcessEventQueue, (StylePropertyAnimationSystem_Values_1_System_Single_ * __this, MethodInfo * method)); @@ -196518,6 +215681,7 @@ DO_APP_FUNC(0x0118CD50, void, StylePropertyAnimationSystem_Values_1_System_Singl DO_APP_FUNC(0x0118DB00, void, StylePropertyAnimationSystem_Values_1_System_Single__UpdateProgress, (StylePropertyAnimationSystem_Values_1_System_Single_ * __this, int64_t currentTimeMs, MethodInfo * method)); DO_APP_FUNC(0x0116FAE0, bool, StylePropertyAnimationSystem_Values_1_System_Single__get_isEmpty, (StylePropertyAnimationSystem_Values_1_System_Single_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0118DE50, void, StylePropertyAnimationSystem_Values_1_TextShadow___ctor, (StylePropertyAnimationSystem_Values_1_TextShadow_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDEBE0, StylePropertyAnimationSystem_Values_1_TextShadow___ctor__MethodInfo); DO_APP_FUNC(0x0118F680, void, StylePropertyAnimationSystem_Values_1_TextShadow__CancelAllAnimations, (StylePropertyAnimationSystem_Values_1_TextShadow_ * __this, MethodInfo * method)); DO_APP_FUNC(0x0118FBA0, void, StylePropertyAnimationSystem_Values_1_TextShadow__CancelAllAnimations_1, (StylePropertyAnimationSystem_Values_1_TextShadow_ * __this, VisualElement * ve, MethodInfo * method)); DO_APP_FUNC(0x0118FF30, void, StylePropertyAnimationSystem_Values_1_TextShadow__CancelAnimation, (StylePropertyAnimationSystem_Values_1_TextShadow_ * __this, VisualElement * ve, StylePropertyId__Enum id, MethodInfo * method)); @@ -196525,7 +215689,7 @@ DO_APP_FUNC(0x0118E440, void, StylePropertyAnimationSystem_Values_1_TextShadow__ DO_APP_FUNC(0x01172030, int32_t, StylePropertyAnimationSystem_Values_1_TextShadow__ComputeReversingDelay, (StylePropertyAnimationSystem_Values_1_TextShadow_ * __this, int32_t delayMs, float newReversingShorteningFactor, MethodInfo * method)); DO_APP_FUNC(0x01172010, int32_t, StylePropertyAnimationSystem_Values_1_TextShadow__ComputeReversingDuration, (StylePropertyAnimationSystem_Values_1_TextShadow_ * __this, int32_t newTransitionDurationMs, float newReversingShorteningFactor, MethodInfo * method)); DO_APP_FUNC(0x01171FA0, float, StylePropertyAnimationSystem_Values_1_TextShadow__ComputeReversingShorteningFactor, (StylePropertyAnimationSystem_Values_1_TextShadow_ * __this, int32_t oldIndex, MethodInfo * method)); -DO_APP_FUNC(0x01120490, bool, StylePropertyAnimationSystem_Values_1_TextShadow__ConvertUnits, (StylePropertyAnimationSystem_Values_1_TextShadow_ * __this, VisualElement * owner, StylePropertyId__Enum prop, TextShadow a, TextShadow b, MethodInfo * method)); +DO_APP_FUNC(0x01120490, bool, StylePropertyAnimationSystem_Values_1_TextShadow__ConvertUnits, (StylePropertyAnimationSystem_Values_1_TextShadow_ * __this, VisualElement * owner, StylePropertyId__Enum prop, TextShadow * a, TextShadow * b, MethodInfo * method)); DO_APP_FUNC(0x01190CD0, void, StylePropertyAnimationSystem_Values_1_TextShadow__ForceComputedStyleEndValue, (StylePropertyAnimationSystem_Values_1_TextShadow_ * __this, int32_t runningIndex, MethodInfo * method)); DO_APP_FUNC(0x01190110, void, StylePropertyAnimationSystem_Values_1_TextShadow__GetAllAnimations, (StylePropertyAnimationSystem_Values_1_TextShadow_ * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outPropertyIds, MethodInfo * method)); DO_APP_FUNC(0x01190D40, void, StylePropertyAnimationSystem_Values_1_TextShadow__ProcessEventQueue, (StylePropertyAnimationSystem_Values_1_TextShadow_ * __this, MethodInfo * method)); @@ -196542,6 +215706,7 @@ DO_APP_FUNC(0x011900B0, void, StylePropertyAnimationSystem_Values_1_TextShadow__ DO_APP_FUNC(0x01191180, void, StylePropertyAnimationSystem_Values_1_TextShadow__UpdateProgress, (StylePropertyAnimationSystem_Values_1_TextShadow_ * __this, int64_t currentTimeMs, MethodInfo * method)); DO_APP_FUNC(0x0116FAE0, bool, StylePropertyAnimationSystem_Values_1_TextShadow__get_isEmpty, (StylePropertyAnimationSystem_Values_1_TextShadow_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01191510, void, StylePropertyAnimationSystem_Values_1_TransformOrigin___ctor, (StylePropertyAnimationSystem_Values_1_TransformOrigin_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDEB70, StylePropertyAnimationSystem_Values_1_TransformOrigin___ctor__MethodInfo); DO_APP_FUNC(0x01192D40, void, StylePropertyAnimationSystem_Values_1_TransformOrigin__CancelAllAnimations, (StylePropertyAnimationSystem_Values_1_TransformOrigin_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01193260, void, StylePropertyAnimationSystem_Values_1_TransformOrigin__CancelAllAnimations_1, (StylePropertyAnimationSystem_Values_1_TransformOrigin_ * __this, VisualElement * ve, MethodInfo * method)); DO_APP_FUNC(0x011935F0, void, StylePropertyAnimationSystem_Values_1_TransformOrigin__CancelAnimation, (StylePropertyAnimationSystem_Values_1_TransformOrigin_ * __this, VisualElement * ve, StylePropertyId__Enum id, MethodInfo * method)); @@ -196549,7 +215714,7 @@ DO_APP_FUNC(0x01191B00, void, StylePropertyAnimationSystem_Values_1_TransformOri DO_APP_FUNC(0x01172030, int32_t, StylePropertyAnimationSystem_Values_1_TransformOrigin__ComputeReversingDelay, (StylePropertyAnimationSystem_Values_1_TransformOrigin_ * __this, int32_t delayMs, float newReversingShorteningFactor, MethodInfo * method)); DO_APP_FUNC(0x01172010, int32_t, StylePropertyAnimationSystem_Values_1_TransformOrigin__ComputeReversingDuration, (StylePropertyAnimationSystem_Values_1_TransformOrigin_ * __this, int32_t newTransitionDurationMs, float newReversingShorteningFactor, MethodInfo * method)); DO_APP_FUNC(0x01171FA0, float, StylePropertyAnimationSystem_Values_1_TransformOrigin__ComputeReversingShorteningFactor, (StylePropertyAnimationSystem_Values_1_TransformOrigin_ * __this, int32_t oldIndex, MethodInfo * method)); -DO_APP_FUNC(0x01120490, bool, StylePropertyAnimationSystem_Values_1_TransformOrigin__ConvertUnits, (StylePropertyAnimationSystem_Values_1_TransformOrigin_ * __this, VisualElement * owner, StylePropertyId__Enum prop, TransformOrigin a, TransformOrigin b, MethodInfo * method)); +DO_APP_FUNC(0x01120490, bool, StylePropertyAnimationSystem_Values_1_TransformOrigin__ConvertUnits, (StylePropertyAnimationSystem_Values_1_TransformOrigin_ * __this, VisualElement * owner, StylePropertyId__Enum prop, TransformOrigin * a, TransformOrigin * b, MethodInfo * method)); DO_APP_FUNC(0x01194260, void, StylePropertyAnimationSystem_Values_1_TransformOrigin__ForceComputedStyleEndValue, (StylePropertyAnimationSystem_Values_1_TransformOrigin_ * __this, int32_t runningIndex, MethodInfo * method)); DO_APP_FUNC(0x011937D0, void, StylePropertyAnimationSystem_Values_1_TransformOrigin__GetAllAnimations, (StylePropertyAnimationSystem_Values_1_TransformOrigin_ * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outPropertyIds, MethodInfo * method)); DO_APP_FUNC(0x011942C0, void, StylePropertyAnimationSystem_Values_1_TransformOrigin__ProcessEventQueue, (StylePropertyAnimationSystem_Values_1_TransformOrigin_ * __this, MethodInfo * method)); @@ -196566,6 +215731,7 @@ DO_APP_FUNC(0x01193770, void, StylePropertyAnimationSystem_Values_1_TransformOri DO_APP_FUNC(0x01194700, void, StylePropertyAnimationSystem_Values_1_TransformOrigin__UpdateProgress, (StylePropertyAnimationSystem_Values_1_TransformOrigin_ * __this, int64_t currentTimeMs, MethodInfo * method)); DO_APP_FUNC(0x0116FAE0, bool, StylePropertyAnimationSystem_Values_1_TransformOrigin__get_isEmpty, (StylePropertyAnimationSystem_Values_1_TransformOrigin_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01194A70, void, StylePropertyAnimationSystem_Values_1_Translate___ctor, (StylePropertyAnimationSystem_Values_1_Translate_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDEC28, StylePropertyAnimationSystem_Values_1_Translate___ctor__MethodInfo); DO_APP_FUNC(0x011962A0, void, StylePropertyAnimationSystem_Values_1_Translate__CancelAllAnimations, (StylePropertyAnimationSystem_Values_1_Translate_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011967C0, void, StylePropertyAnimationSystem_Values_1_Translate__CancelAllAnimations_1, (StylePropertyAnimationSystem_Values_1_Translate_ * __this, VisualElement * ve, MethodInfo * method)); DO_APP_FUNC(0x01196B50, void, StylePropertyAnimationSystem_Values_1_Translate__CancelAnimation, (StylePropertyAnimationSystem_Values_1_Translate_ * __this, VisualElement * ve, StylePropertyId__Enum id, MethodInfo * method)); @@ -196573,7 +215739,7 @@ DO_APP_FUNC(0x01195060, void, StylePropertyAnimationSystem_Values_1_Translate__C DO_APP_FUNC(0x01172030, int32_t, StylePropertyAnimationSystem_Values_1_Translate__ComputeReversingDelay, (StylePropertyAnimationSystem_Values_1_Translate_ * __this, int32_t delayMs, float newReversingShorteningFactor, MethodInfo * method)); DO_APP_FUNC(0x01172010, int32_t, StylePropertyAnimationSystem_Values_1_Translate__ComputeReversingDuration, (StylePropertyAnimationSystem_Values_1_Translate_ * __this, int32_t newTransitionDurationMs, float newReversingShorteningFactor, MethodInfo * method)); DO_APP_FUNC(0x01171FA0, float, StylePropertyAnimationSystem_Values_1_Translate__ComputeReversingShorteningFactor, (StylePropertyAnimationSystem_Values_1_Translate_ * __this, int32_t oldIndex, MethodInfo * method)); -DO_APP_FUNC(0x01120490, bool, StylePropertyAnimationSystem_Values_1_Translate__ConvertUnits, (StylePropertyAnimationSystem_Values_1_Translate_ * __this, VisualElement * owner, StylePropertyId__Enum prop, Translate_1 a, Translate_1 b, MethodInfo * method)); +DO_APP_FUNC(0x01120490, bool, StylePropertyAnimationSystem_Values_1_Translate__ConvertUnits, (StylePropertyAnimationSystem_Values_1_Translate_ * __this, VisualElement * owner, StylePropertyId__Enum prop, Translate_1 * a, Translate_1 * b, MethodInfo * method)); DO_APP_FUNC(0x01186E70, void, StylePropertyAnimationSystem_Values_1_Translate__ForceComputedStyleEndValue, (StylePropertyAnimationSystem_Values_1_Translate_ * __this, int32_t runningIndex, MethodInfo * method)); DO_APP_FUNC(0x01196D30, void, StylePropertyAnimationSystem_Values_1_Translate__GetAllAnimations, (StylePropertyAnimationSystem_Values_1_Translate_ * __this, VisualElement * ve, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ * outPropertyIds, MethodInfo * method)); DO_APP_FUNC(0x01197850, void, StylePropertyAnimationSystem_Values_1_Translate__ProcessEventQueue, (StylePropertyAnimationSystem_Values_1_Translate_ * __this, MethodInfo * method)); @@ -196590,43 +215756,67 @@ DO_APP_FUNC(0x01196CD0, void, StylePropertyAnimationSystem_Values_1_Translate__U DO_APP_FUNC(0x01197C90, void, StylePropertyAnimationSystem_Values_1_Translate__UpdateProgress, (StylePropertyAnimationSystem_Values_1_Translate_ * __this, int64_t currentTimeMs, MethodInfo * method)); DO_APP_FUNC(0x0116FAE0, bool, StylePropertyAnimationSystem_Values_1_Translate__get_isEmpty, (StylePropertyAnimationSystem_Values_1_Translate_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011A08E0, void, Vector_1_System_UInt16___cctor, (MethodInfo * method)); -DO_APP_FUNC(0x01198630, void, Vector_1_System_UInt16___ctor, (Vector_1_System_UInt16___Boxed * __this, uint16_t value, MethodInfo * method)); -DO_APP_FUNC(0x0119B5D0, void, Vector_1_System_UInt16___ctor_1, (Vector_1_System_UInt16___Boxed * __this, Register existingRegister, MethodInfo * method)); -DO_APP_FUNC(0x0119A970, void, Vector_1_System_UInt16___ctor_2, (Vector_1_System_UInt16___Boxed * __this, Void * dataPointer, MethodInfo * method)); -DO_APP_FUNC(0x0119AA10, void, Vector_1_System_UInt16___ctor_3, (Vector_1_System_UInt16___Boxed * __this, Void * dataPointer, int32_t offset, MethodInfo * method)); -DO_APP_FUNC(0x0119C290, bool, Vector_1_System_UInt16__Equals, (Vector_1_System_UInt16___Boxed * __this, Vector_1_System_UInt16_ other, MethodInfo * method)); -DO_APP_FUNC(0x0119C130, bool, Vector_1_System_UInt16__Equals_1, (Vector_1_System_UInt16___Boxed * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x01198630, void, Vector_1_System_UInt16___ctor, (Vector_1_System_UInt16_ * __this, uint16_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04C30, Vector_1_System_UInt16___ctor__MethodInfo); +DO_APP_FUNC(0x0119B5D0, void, Vector_1_System_UInt16___ctor_1, (Vector_1_System_UInt16_ * __this, Register * existingRegister, MethodInfo * method)); +DO_APP_FUNC(0x0119A970, void, Vector_1_System_UInt16___ctor_2, (Vector_1_System_UInt16_ * __this, Void * dataPointer, MethodInfo * method)); +DO_APP_FUNC(0x0119AA10, void, Vector_1_System_UInt16___ctor_3, (Vector_1_System_UInt16_ * __this, Void * dataPointer, int32_t offset, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2208, Vector_1_System_UInt16___ctor_3__MethodInfo); +DO_APP_FUNC(0x0119C290, bool, Vector_1_System_UInt16__Equals, (Vector_1_System_UInt16_ * __this, Vector_1_System_UInt16_ other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC21F8, Vector_1_System_UInt16__Equals__MethodInfo); +DO_APP_FUNC(0x0119C130, bool, Vector_1_System_UInt16__Equals_1, (Vector_1_System_UInt16_ * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x0119DD30, Vector_1_System_UInt16_, Vector_1_System_UInt16__Equals_2, (Vector_1_System_UInt16_ left, Vector_1_System_UInt16_ right, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC21E0, Vector_1_System_UInt16__Equals_2__MethodInfo); DO_APP_FUNC(0x0119FEC0, uint16_t, Vector_1_System_UInt16__GetAllBitsSetValue, (MethodInfo * method)); -DO_APP_FUNC(0x0119C940, int32_t, Vector_1_System_UInt16__GetHashCode, (Vector_1_System_UInt16___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC21D0, Vector_1_System_UInt16__GetAllBitsSetValue__MethodInfo); +DO_APP_FUNC(0x0119C940, int32_t, Vector_1_System_UInt16__GetHashCode, (Vector_1_System_UInt16_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC21F0, Vector_1_System_UInt16__GetHashCode__MethodInfo); DO_APP_FUNC(0x0119F4A0, uint16_t, Vector_1_System_UInt16__GetOneValue, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC21C8, Vector_1_System_UInt16__GetOneValue__MethodInfo); DO_APP_FUNC(0x01198150, int32_t, Vector_1_System_UInt16__InitializeCount, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2228, Vector_1_System_UInt16__InitializeCount__MethodInfo); DO_APP_FUNC(0x0119E630, bool, Vector_1_System_UInt16__ScalarEquals, (uint16_t left, uint16_t right, MethodInfo * method)); -DO_APP_FUNC(0x0119D560, String *, Vector_1_System_UInt16__ToString, (Vector_1_System_UInt16___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x0119D690, String *, Vector_1_System_UInt16__ToString_1, (Vector_1_System_UInt16___Boxed * __this, String * format, IFormatProvider * formatProvider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC21E8, Vector_1_System_UInt16__ScalarEquals__MethodInfo); +DO_APP_FUNC(0x0119D560, String *, Vector_1_System_UInt16__ToString, (Vector_1_System_UInt16_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x0119D690, String *, Vector_1_System_UInt16__ToString_1, (Vector_1_System_UInt16_ * __this, String * format, IFormatProvider * formatProvider, MethodInfo * method)); DO_APP_FUNC(0x01198010, int32_t, Vector_1_System_UInt16__get_Count, (MethodInfo * method)); -DO_APP_FUNC(0x0119B5E0, uint16_t, Vector_1_System_UInt16__get_Item, (Vector_1_System_UInt16___Boxed * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04C48, Vector_1_System_UInt16__get_Count__MethodInfo); +DO_APP_FUNC(0x0119B5E0, uint16_t, Vector_1_System_UInt16__get_Item, (Vector_1_System_UInt16_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2218, Vector_1_System_UInt16__get_Item__MethodInfo); DO_APP_FUNC(0x011980B0, Vector_1_System_UInt16_, Vector_1_System_UInt16__get_Zero, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04C28, Vector_1_System_UInt16__get_Zero__MethodInfo); DO_APP_FUNC(0x0119DB60, bool, Vector_1_System_UInt16__op_Equality, (Vector_1_System_UInt16_ left, Vector_1_System_UInt16_ right, MethodInfo * method)); DO_APP_FUNC(0x0119DCE0, Vector_1_System_UInt64_, Vector_1_System_UInt16__op_Explicit, (Vector_1_System_UInt16_ value, MethodInfo * method)); DO_APP_FUNC(0x0119DC00, bool, Vector_1_System_UInt16__op_Inequality, (Vector_1_System_UInt16_ left, Vector_1_System_UInt16_ right, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04C40, Vector_1_System_UInt16__op_Inequality__MethodInfo); DO_APP_FUNC(0x011B85A0, void, Vector_1_System_UInt64___cctor, (MethodInfo * method)); -DO_APP_FUNC(0x011B03F0, void, Vector_1_System_UInt64___ctor, (Vector_1_System_UInt64___Boxed * __this, uint64_t value, MethodInfo * method)); -DO_APP_FUNC(0x0119B5D0, void, Vector_1_System_UInt64___ctor_1, (Vector_1_System_UInt64___Boxed * __this, Register existingRegister, MethodInfo * method)); -DO_APP_FUNC(0x011B2730, void, Vector_1_System_UInt64___ctor_2, (Vector_1_System_UInt64___Boxed * __this, Void * dataPointer, MethodInfo * method)); -DO_APP_FUNC(0x011B27D0, void, Vector_1_System_UInt64___ctor_3, (Vector_1_System_UInt64___Boxed * __this, Void * dataPointer, int32_t offset, MethodInfo * method)); -DO_APP_FUNC(0x011B4040, bool, Vector_1_System_UInt64__Equals, (Vector_1_System_UInt64___Boxed * __this, Vector_1_System_UInt64_ other, MethodInfo * method)); -DO_APP_FUNC(0x011B3EE0, bool, Vector_1_System_UInt64__Equals_1, (Vector_1_System_UInt64___Boxed * __this, Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x011B03F0, void, Vector_1_System_UInt64___ctor, (Vector_1_System_UInt64_ * __this, uint64_t value, MethodInfo * method)); +DO_APP_FUNC(0x0119B5D0, void, Vector_1_System_UInt64___ctor_1, (Vector_1_System_UInt64_ * __this, Register * existingRegister, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC21D8, Vector_1_System_UInt64___ctor_1__MethodInfo); +DO_APP_FUNC(0x011B2730, void, Vector_1_System_UInt64___ctor_2, (Vector_1_System_UInt64_ * __this, Void * dataPointer, MethodInfo * method)); +DO_APP_FUNC(0x011B27D0, void, Vector_1_System_UInt64___ctor_3, (Vector_1_System_UInt64_ * __this, Void * dataPointer, int32_t offset, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC4370, Vector_1_System_UInt64___ctor_3__MethodInfo); +DO_APP_FUNC(0x011B4040, bool, Vector_1_System_UInt64__Equals, (Vector_1_System_UInt64_ * __this, Vector_1_System_UInt64_ other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC4360, Vector_1_System_UInt64__Equals__MethodInfo); +DO_APP_FUNC(0x011B3EE0, bool, Vector_1_System_UInt64__Equals_1, (Vector_1_System_UInt64_ * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x011B5A00, Vector_1_System_UInt64_, Vector_1_System_UInt64__Equals_2, (Vector_1_System_UInt64_ left, Vector_1_System_UInt64_ right, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC4350, Vector_1_System_UInt64__Equals_2__MethodInfo); DO_APP_FUNC(0x011B7B80, uint64_t, Vector_1_System_UInt64__GetAllBitsSetValue, (MethodInfo * method)); -DO_APP_FUNC(0x011B46F0, int32_t, Vector_1_System_UInt64__GetHashCode, (Vector_1_System_UInt64___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC4348, Vector_1_System_UInt64__GetAllBitsSetValue__MethodInfo); +DO_APP_FUNC(0x011B46F0, int32_t, Vector_1_System_UInt64__GetHashCode, (Vector_1_System_UInt64_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC4368, Vector_1_System_UInt64__GetHashCode__MethodInfo); DO_APP_FUNC(0x011B7160, uint64_t, Vector_1_System_UInt64__GetOneValue, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC4340, Vector_1_System_UInt64__GetOneValue__MethodInfo); DO_APP_FUNC(0x011AFF10, int32_t, Vector_1_System_UInt64__InitializeCount, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC4380, Vector_1_System_UInt64__InitializeCount__MethodInfo); DO_APP_FUNC(0x011B6300, bool, Vector_1_System_UInt64__ScalarEquals, (uint64_t left, uint64_t right, MethodInfo * method)); -DO_APP_FUNC(0x011B5310, String *, Vector_1_System_UInt64__ToString, (Vector_1_System_UInt64___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x011B5440, String *, Vector_1_System_UInt64__ToString_1, (Vector_1_System_UInt64___Boxed * __this, String * format, IFormatProvider * formatProvider, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC4358, Vector_1_System_UInt64__ScalarEquals__MethodInfo); +DO_APP_FUNC(0x011B5310, String *, Vector_1_System_UInt64__ToString, (Vector_1_System_UInt64_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x011B5440, String *, Vector_1_System_UInt64__ToString_1, (Vector_1_System_UInt64_ * __this, String * format, IFormatProvider * formatProvider, MethodInfo * method)); DO_APP_FUNC(0x01198010, int32_t, Vector_1_System_UInt64__get_Count, (MethodInfo * method)); -DO_APP_FUNC(0x011B3390, uint64_t, Vector_1_System_UInt64__get_Item, (Vector_1_System_UInt64___Boxed * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04C18, Vector_1_System_UInt64__get_Count__MethodInfo); +DO_APP_FUNC(0x011B3390, uint64_t, Vector_1_System_UInt64__get_Item, (Vector_1_System_UInt64_ * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC4378, Vector_1_System_UInt64__get_Item__MethodInfo); DO_APP_FUNC(0x011980B0, Vector_1_System_UInt64_, Vector_1_System_UInt64__get_Zero, (MethodInfo * method)); DO_APP_FUNC(0x011B5910, bool, Vector_1_System_UInt64__op_Equality, (Vector_1_System_UInt64_ left, Vector_1_System_UInt64_ right, MethodInfo * method)); DO_APP_FUNC(0x011B59B0, Vector_1_System_UInt64_, Vector_1_System_UInt64__op_Explicit, (Vector_1_System_UInt64_ value, MethodInfo * method)); @@ -196664,25 +215854,36 @@ DO_APP_FUNC(0x011BC8F0, void, VoiceReceiver_1_Dissonance_Integrations_PhotonBolt DO_APP_FUNC(0x011BBC50, void, VoiceReceiver_1_Dissonance_Integrations_PhotonBolt_BoltPeer___ctor, (VoiceReceiver_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, ISession * session, IClientCollection_1_System_Nullable_1_ * clients, EventQueue * events, Rooms * rooms, ConcurrentPool_1_System_Collections_Generic_List_1_ * channelListPool, MethodInfo * method)); DO_APP_FUNC(0x011BC2B0, void, VoiceReceiver_1_Dissonance_Integrations_PhotonBolt_BoltPeer__CheckTimeouts, (VoiceReceiver_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, DateTime utcNow, MethodInfo * method)); DO_APP_FUNC(0x011BC010, void, VoiceReceiver_1_Dissonance_Integrations_PhotonBolt_BoltPeer__OnPlayerLeft, (VoiceReceiver_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, String * name, MethodInfo * method)); -DO_APP_FUNC(0x011BC450, void, VoiceReceiver_1_Dissonance_Integrations_PhotonBolt_BoltPeer__ReceiveVoiceData, (VoiceReceiver_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, PacketReader reader, Nullable_1_DateTime_ utcNow, MethodInfo * method)); +DO_APP_FUNC(0x011BC450, void, VoiceReceiver_1_Dissonance_Integrations_PhotonBolt_BoltPeer__ReceiveVoiceData, (VoiceReceiver_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, PacketReader * reader, Nullable_1_DateTime_ utcNow, MethodInfo * method)); DO_APP_FUNC(0x011BC160, void, VoiceReceiver_1_Dissonance_Integrations_PhotonBolt_BoltPeer__Stop, (VoiceReceiver_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011BC290, void, VoiceReceiver_1_Dissonance_Integrations_PhotonBolt_BoltPeer__Update, (VoiceReceiver_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, DateTime utcNow, MethodInfo * method)); DO_APP_FUNC(0x011C1AF0, void, VoiceSender_1_Dissonance_Integrations_PhotonBolt_BoltPeer___cctor, (MethodInfo * method)); DO_APP_FUNC(0x011BCBC0, void, VoiceSender_1_Dissonance_Integrations_PhotonBolt_BoltPeer___ctor, (VoiceSender_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, ISendQueue_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * sender, ISession * session, IClientCollection_1_System_Nullable_1_ * peers, EventQueue * events, PlayerChannels * playerChannels, RoomChannels * roomChannels, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC42C0, VoiceSender_1_Dissonance_Integrations_PhotonBolt_BoltPeer___ctor__MethodInfo); DO_APP_FUNC(0x011C1A40, void, VoiceSender_1_Dissonance_Integrations_PhotonBolt_BoltPeer__ApplyChannelDelta, (VoiceSender_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, VoiceSender_1_TPeer_ChannelDelta_Dissonance_Integrations_PhotonBolt_BoltPeer_ d, ReadonlyLockedValue_1_T_Unlocker_System_Collections_Generic_List_1__4 * openChannels, MethodInfo * method)); DO_APP_FUNC(0x011C14B0, void, VoiceSender_1_Dissonance_Integrations_PhotonBolt_BoltPeer__ApplyChannelDeltas, (VoiceSender_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, ReadonlyLockedValue_1_T_Unlocker_System_Collections_Generic_List_1__4 * openChannels, MethodInfo * method)); DO_APP_FUNC(0x011C1900, bool, VoiceSender_1_Dissonance_Integrations_PhotonBolt_BoltPeer__AreAllChannelsClosing, (ReadonlyLockedValue_1_T_Unlocker_System_Collections_Generic_List_1__4 * openChannels, MethodInfo * method)); DO_APP_FUNC(0x011C0380, void, VoiceSender_1_Dissonance_Integrations_PhotonBolt_BoltPeer__ClearClosedChannels, (VoiceSender_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011C0020, void, VoiceSender_1_Dissonance_Integrations_PhotonBolt_BoltPeer__CloseChannel, (VoiceSender_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, ChannelType__Enum type, ChannelProperties * properties, uint16_t id, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC41C8, VoiceSender_1_Dissonance_Integrations_PhotonBolt_BoltPeer__CloseChannel__MethodInfo); DO_APP_FUNC(0x011BF150, void, VoiceSender_1_Dissonance_Integrations_PhotonBolt_BoltPeer__ClosePlayerChannel, (VoiceSender_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, String * player, ChannelProperties * config, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC41F8, VoiceSender_1_Dissonance_Integrations_PhotonBolt_BoltPeer__ClosePlayerChannel__MethodInfo); DO_APP_FUNC(0x011BF8E0, void, VoiceSender_1_Dissonance_Integrations_PhotonBolt_BoltPeer__CloseRoomChannel, (VoiceSender_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, RoomName room, ChannelProperties * config, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC41D8, VoiceSender_1_Dissonance_Integrations_PhotonBolt_BoltPeer__CloseRoomChannel__MethodInfo); DO_APP_FUNC(0x011C0E40, List_1_Dissonance_Networking_ClientInfo_1_ *, VoiceSender_1_Dissonance_Integrations_PhotonBolt_BoltPeer__GetVoiceDestinations, (VoiceSender_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, IList_1_Dissonance_Networking_Client_OpenChannel_ * openChannels, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC4188, VoiceSender_1_Dissonance_Integrations_PhotonBolt_BoltPeer__GetVoiceDestinations__MethodInfo); DO_APP_FUNC(0x011BE5A0, void, VoiceSender_1_Dissonance_Integrations_PhotonBolt_BoltPeer__OnPlayerJoined, (VoiceSender_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, String * name, CodecSettings codecSettings, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC4200, VoiceSender_1_Dissonance_Integrations_PhotonBolt_BoltPeer__OnPlayerJoined__MethodInfo); DO_APP_FUNC(0x011BE780, void, VoiceSender_1_Dissonance_Integrations_PhotonBolt_BoltPeer__OnPlayerLeft, (VoiceSender_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC41E0, VoiceSender_1_Dissonance_Integrations_PhotonBolt_BoltPeer__OnPlayerLeft__MethodInfo); DO_APP_FUNC(0x011BFB30, void, VoiceSender_1_Dissonance_Integrations_PhotonBolt_BoltPeer__OpenChannel, (VoiceSender_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, ChannelType__Enum type, ChannelProperties * config, uint16_t recipient, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC41B8, VoiceSender_1_Dissonance_Integrations_PhotonBolt_BoltPeer__OpenChannel__MethodInfo); DO_APP_FUNC(0x011BED70, void, VoiceSender_1_Dissonance_Integrations_PhotonBolt_BoltPeer__OpenPlayerChannel, (VoiceSender_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, String * player, ChannelProperties * config, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC41E8, VoiceSender_1_Dissonance_Integrations_PhotonBolt_BoltPeer__OpenPlayerChannel__MethodInfo); DO_APP_FUNC(0x011BF690, void, VoiceSender_1_Dissonance_Integrations_PhotonBolt_BoltPeer__OpenRoomChannel, (VoiceSender_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, RoomName room, ChannelProperties * config, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC41D0, VoiceSender_1_Dissonance_Integrations_PhotonBolt_BoltPeer__OpenRoomChannel__MethodInfo); DO_APP_FUNC(0x011C0590, void, VoiceSender_1_Dissonance_Integrations_PhotonBolt_BoltPeer__Send, (VoiceSender_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, ArraySegment_1_Byte_ encodedAudio, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC4198, VoiceSender_1_Dissonance_Integrations_PhotonBolt_BoltPeer__Send__MethodInfo); DO_APP_FUNC(0x011BDCF0, void, VoiceSender_1_Dissonance_Integrations_PhotonBolt_BoltPeer__Stop, (VoiceSender_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011C1C90, void, VolumeParameter_1_System_Boolean___ctor, (VolumeParameter_1_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011C1CB0, void, VolumeParameter_1_System_Boolean___ctor_1, (VolumeParameter_1_System_Boolean_ * __this, bool value, bool overrideState, MethodInfo * method)); @@ -196830,10 +216031,12 @@ DO_APP_FUNC(0x011C24B0, void, VolumeParameter_1_UnityEngine_Vector4__set_value, DO_APP_FUNC(0x010B5EC0, void, WeakReference_1_Object___ctor, (WeakReference_1_Object_ * __this, Object * target, MethodInfo * method)); DO_APP_FUNC(0x011C63F0, void, WeakReference_1_Object___ctor_1, (WeakReference_1_Object_ * __this, Object * target, bool trackResurrection, MethodInfo * method)); DO_APP_FUNC(0x011C6420, void, WeakReference_1_Object___ctor_2, (WeakReference_1_Object_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC4160, WeakReference_1_Object___ctor_2__MethodInfo); DO_APP_FUNC(0x011C6800, void, WeakReference_1_Object__Finalize, (WeakReference_1_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011C6550, void, WeakReference_1_Object__GetObjectData, (WeakReference_1_Object_ * __this, SerializationInfo * info, StreamingContext context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC4150, WeakReference_1_Object__GetObjectData__MethodInfo); DO_APP_FUNC(0x011C6670, void, WeakReference_1_Object__SetTarget, (WeakReference_1_Object_ * __this, Object * target, MethodInfo * method)); -DO_APP_FUNC(0x011C6680, bool, WeakReference_1_Object__TryGetTarget, (WeakReference_1_Object_ * __this, Object * target, MethodInfo * method)); +DO_APP_FUNC(0x011C6680, bool, WeakReference_1_Object__TryGetTarget, (WeakReference_1_Object_ * __this, Object * * target, MethodInfo * method)); DO_APP_FUNC(0x011C6860, void, WebCompletionSource_1_System_ValueTuple_2__1__ctor, (WebCompletionSource_1_System_ValueTuple_2__1 * __this, bool runAsync, MethodInfo * method)); DO_APP_FUNC(0x011C7060, void, WebCompletionSource_1_System_ValueTuple_2__1_ThrowOnError, (WebCompletionSource_1_System_ValueTuple_2__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x011C6BD0, bool, WebCompletionSource_1_System_ValueTuple_2__1_TrySetCanceled, (WebCompletionSource_1_System_ValueTuple_2__1 * __this, MethodInfo * method)); @@ -196846,16 +216049,23 @@ DO_APP_FUNC(0x003BB3D0, WebCompletionSource_1_T_Result_System_ValueTuple_2__1 *, DO_APP_FUNC(0x011C6940, WebCompletionSource_1_T_Status_System_ValueTuple_2__1 *, WebCompletionSource_1_System_ValueTuple_2__1_get_CurrentStatus, (WebCompletionSource_1_System_ValueTuple_2__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x010C74D0, Task *, WebCompletionSource_1_System_ValueTuple_2__1_get_Task, (WebCompletionSource_1_System_ValueTuple_2__1 * __this, MethodInfo * method)); DO_APP_FUNC(0x011C6860, void, WebCompletionSource_1_System_Object___ctor, (WebCompletionSource_1_System_Object_ * __this, bool runAsync, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1AEB8, WebCompletionSource_1_System_Object___ctor__MethodInfo); DO_APP_FUNC(0x011C7060, void, WebCompletionSource_1_System_Object__ThrowOnError, (WebCompletionSource_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16E10, WebCompletionSource_1_System_Object__ThrowOnError__MethodInfo); DO_APP_FUNC(0x011C74E0, bool, WebCompletionSource_1_System_Object__TrySetCanceled, (WebCompletionSource_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17240, WebCompletionSource_1_System_Object__TrySetCanceled__MethodInfo); DO_APP_FUNC(0x011C6CA0, bool, WebCompletionSource_1_System_Object__TrySetCanceled_1, (WebCompletionSource_1_System_Object_ * __this, OperationCanceledException * error, MethodInfo * method)); DO_APP_FUNC(0x011C6AB0, bool, WebCompletionSource_1_System_Object__TrySetCompleted, (WebCompletionSource_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16E00, WebCompletionSource_1_System_Object__TrySetCompleted__MethodInfo); DO_APP_FUNC(0x011C73C0, bool, WebCompletionSource_1_System_Object__TrySetCompleted_1, (WebCompletionSource_1_System_Object_ * __this, Object * argument, MethodInfo * method)); DO_APP_FUNC(0x011C6E80, bool, WebCompletionSource_1_System_Object__TrySetException, (WebCompletionSource_1_System_Object_ * __this, Exception * error, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16DE8, WebCompletionSource_1_System_Object__TrySetException__MethodInfo); DO_APP_FUNC(0x011C75B0, Task_1_System_Object_ *, WebCompletionSource_1_System_Object__WaitForCompletion, (WebCompletionSource_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1AA70, WebCompletionSource_1_System_Object__WaitForCompletion__MethodInfo); DO_APP_FUNC(0x003BB3D0, WebCompletionSource_1_T_Result_System_Object_ *, WebCompletionSource_1_System_Object__get_CurrentResult, (WebCompletionSource_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011C6940, WebCompletionSource_1_T_Status_System_Object_ *, WebCompletionSource_1_System_Object__get_CurrentStatus, (WebCompletionSource_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x010C74D0, Task *, WebCompletionSource_1_System_Object__get_Task, (WebCompletionSource_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16E68, WebCompletionSource_1_System_Object__get_Task__MethodInfo); DO_APP_FUNC(0x003BCE40, void, WhereObservable_1_TValue_Where_System_Object___ctor, (WhereObservable_1_TValue_Where_System_Object_ * __this, WhereObservable_1_System_Object_ * observable, IObserver_1_Object_ * observer, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, WhereObservable_1_TValue_Where_System_Object__OnCompleted, (WhereObservable_1_TValue_Where_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011C7750, void, WhereObservable_1_TValue_Where_System_Object__OnError, (WhereObservable_1_TValue_Where_System_Object_ * __this, Exception * error, MethodInfo * method)); @@ -199119,10 +218329,11 @@ DO_APP_FUNC(0x00FD2310, EqualityComparerNoAlloc_1_T_WkVyLlrhUzOwpSBgObszqRFamgIG DO_APP_FUNC(0x011F6AD0, void, ConcurrentBag_1_T_WorkStealingQueue_System_Object___ctor, (ConcurrentBag_1_T_WorkStealingQueue_System_Object_ * __this, ConcurrentBag_1_T_WorkStealingQueue_System_Object_ * nextQueue, MethodInfo * method)); DO_APP_FUNC(0x011F7EF0, int32_t, ConcurrentBag_1_T_WorkStealingQueue_System_Object__DangerousCopyTo, (ConcurrentBag_1_T_WorkStealingQueue_System_Object_ * __this, Object__Array * array, int32_t arrayIndex, MethodInfo * method)); DO_APP_FUNC(0x011F7340, void, ConcurrentBag_1_T_WorkStealingQueue_System_Object__LocalClear, (ConcurrentBag_1_T_WorkStealingQueue_System_Object_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x011F6C00, void, ConcurrentBag_1_T_WorkStealingQueue_System_Object__LocalPush, (ConcurrentBag_1_T_WorkStealingQueue_System_Object_ * __this, Object * item, int64_t emptyToNonEmptyListTransitionCount, MethodInfo * method)); -DO_APP_FUNC(0x011F7850, bool, ConcurrentBag_1_T_WorkStealingQueue_System_Object__TryLocalPeek, (ConcurrentBag_1_T_WorkStealingQueue_System_Object_ * __this, Object * result, MethodInfo * method)); -DO_APP_FUNC(0x011F74D0, bool, ConcurrentBag_1_T_WorkStealingQueue_System_Object__TryLocalPop, (ConcurrentBag_1_T_WorkStealingQueue_System_Object_ * __this, Object * result, MethodInfo * method)); -DO_APP_FUNC(0x011F7A90, bool, ConcurrentBag_1_T_WorkStealingQueue_System_Object__TrySteal, (ConcurrentBag_1_T_WorkStealingQueue_System_Object_ * __this, Object * result, bool take, MethodInfo * method)); +DO_APP_FUNC(0x011F6C00, void, ConcurrentBag_1_T_WorkStealingQueue_System_Object__LocalPush, (ConcurrentBag_1_T_WorkStealingQueue_System_Object_ * __this, Object * item, int64_t * emptyToNonEmptyListTransitionCount, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7728, ConcurrentBag_1_T_WorkStealingQueue_System_Object__LocalPush__MethodInfo); +DO_APP_FUNC(0x011F7850, bool, ConcurrentBag_1_T_WorkStealingQueue_System_Object__TryLocalPeek, (ConcurrentBag_1_T_WorkStealingQueue_System_Object_ * __this, Object * * result, MethodInfo * method)); +DO_APP_FUNC(0x011F74D0, bool, ConcurrentBag_1_T_WorkStealingQueue_System_Object__TryLocalPop, (ConcurrentBag_1_T_WorkStealingQueue_System_Object_ * __this, Object * * result, MethodInfo * method)); +DO_APP_FUNC(0x011F7A90, bool, ConcurrentBag_1_T_WorkStealingQueue_System_Object__TrySteal, (ConcurrentBag_1_T_WorkStealingQueue_System_Object_ * __this, Object * * result, bool take, MethodInfo * method)); DO_APP_FUNC(0x011F8020, int32_t, ConcurrentBag_1_T_WorkStealingQueue_System_Object__get_DangerousCount, (ConcurrentBag_1_T_WorkStealingQueue_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011F6BE0, bool, ConcurrentBag_1_T_WorkStealingQueue_System_Object__get_IsEmpty, (ConcurrentBag_1_T_WorkStealingQueue_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011F8200, void, yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_u0001_WpetvRyZFspUtspIbLPeDkNbztZe_System_Boolean___ctor, (yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_u0001_WpetvRyZFspUtspIbLPeDkNbztZe_System_Boolean_ * __this, MethodInfo * method)); @@ -199151,18 +218362,20 @@ DO_APP_FUNC(0x011F8130, yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_u0001_WpetvRyZFspUtspIbLP DO_APP_FUNC(0x011F87A0, void, yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_u0001_WpetvRyZFspUtspIbLPeDkNbztZe_System_Object__ywnPQwRKhTeqhCfsGHWkglsjHBkq, (WaitCallback * param_0001443f, MethodInfo * method)); DO_APP_FUNC(0x011F8980, void, ObjectInstanceTracker_Wrapper_1_System_Object___ctor, (ObjectInstanceTracker_Wrapper_1_System_Object_ * __this, Object * param_0000c55c, MethodInfo * method)); DO_APP_FUNC(0x011F89D0, void, ObjectInstanceTracker_Wrapper_1_System_Object___ctor_1, (ObjectInstanceTracker_Wrapper_1_System_Object_ * __this, Object * param_0000c55d, ObjectInstanceTracker * param_0000c55e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9238, ObjectInstanceTracker_Wrapper_1_System_Object___ctor_1__MethodInfo); DO_APP_FUNC(0x011F8B60, void, ObjectInstanceTracker_Wrapper_1_System_Object__Dispose, (ObjectInstanceTracker_Wrapper_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011F8BD0, void, ObjectInstanceTracker_Wrapper_1_System_Object__Dispose_1, (ObjectInstanceTracker_Wrapper_1_System_Object_ * __this, bool disposing, MethodInfo * method)); DO_APP_FUNC(0x010F2250, void, ObjectInstanceTracker_Wrapper_1_System_Object__Finalize, (ObjectInstanceTracker_Wrapper_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011F8C00, void, XHashtable_1_TValue_XHashtableState_System_Object___ctor, (XHashtable_1_TValue_XHashtableState_System_Object_ * __this, XHashtable_1_TValue_ExtractKeyDelegate_System_Object_ * extractKey, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x011F9680, int32_t, XHashtable_1_TValue_XHashtableState_System_Object__ComputeHashCode, (String * key, int32_t index, int32_t count, MethodInfo * method)); -DO_APP_FUNC(0x011F9490, bool, XHashtable_1_TValue_XHashtableState_System_Object__FindEntry, (XHashtable_1_TValue_XHashtableState_System_Object_ * __this, int32_t hashCode, String * key, int32_t index, int32_t count, int32_t entryIndex, MethodInfo * method)); +DO_APP_FUNC(0x011F9490, bool, XHashtable_1_TValue_XHashtableState_System_Object__FindEntry, (XHashtable_1_TValue_XHashtableState_System_Object_ * __this, int32_t hashCode, String * key, int32_t index, int32_t count, int32_t * entryIndex, MethodInfo * method)); DO_APP_FUNC(0x011F8DA0, XHashtable_1_TValue_XHashtableState_System_Object_ *, XHashtable_1_TValue_XHashtableState_System_Object__Resize, (XHashtable_1_TValue_XHashtableState_System_Object_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x011F91F0, bool, XHashtable_1_TValue_XHashtableState_System_Object__TryAdd, (XHashtable_1_TValue_XHashtableState_System_Object_ * __this, Object * value, Object * newValue, MethodInfo * method)); -DO_APP_FUNC(0x011F90A0, bool, XHashtable_1_TValue_XHashtableState_System_Object__TryGetValue, (XHashtable_1_TValue_XHashtableState_System_Object_ * __this, String * key, int32_t index, int32_t count, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9210, XHashtable_1_TValue_XHashtableState_System_Object__Resize__MethodInfo); +DO_APP_FUNC(0x011F91F0, bool, XHashtable_1_TValue_XHashtableState_System_Object__TryAdd, (XHashtable_1_TValue_XHashtableState_System_Object_ * __this, Object * value, Object * * newValue, MethodInfo * method)); +DO_APP_FUNC(0x011F90A0, bool, XHashtable_1_TValue_XHashtableState_System_Object__TryGetValue, (XHashtable_1_TValue_XHashtableState_System_Object_ * __this, String * key, int32_t index, int32_t count, Object * * value, MethodInfo * method)); DO_APP_FUNC(0x011F9710, void, XHashtable_1_System_Object___ctor, (XHashtable_1_System_Object_ * __this, XHashtable_1_TValue_ExtractKeyDelegate_System_Object_ * extractKey, int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x011F9850, Object *, XHashtable_1_System_Object__Add, (XHashtable_1_System_Object_ * __this, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x011F9800, bool, XHashtable_1_System_Object__TryGetValue, (XHashtable_1_System_Object_ * __this, String * key, int32_t index, int32_t count, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x011F9800, bool, XHashtable_1_System_Object__TryGetValue, (XHashtable_1_System_Object_ * __this, String * key, int32_t index, int32_t count, Object * * value, MethodInfo * method)); DO_APP_FUNC(0x011F9A70, void, Player_ControllerHelper_ConflictCheckingHelper_ZZwRogcovycddgLNjZRoLiIZFlRIb_1_System_Object___ctor, (Player_ControllerHelper_ConflictCheckingHelper_ZZwRogcovycddgLNjZRoLiIZFlRIb_1_System_Object_ * __this, int32_t param_0000a905, MethodInfo * method)); DO_APP_FUNC(0x011F9AF0, bool, Player_ControllerHelper_ConflictCheckingHelper_ZZwRogcovycddgLNjZRoLiIZFlRIb_1_System_Object__MoveNext, (Player_ControllerHelper_ConflictCheckingHelper_ZZwRogcovycddgLNjZRoLiIZFlRIb_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011FA230, void, Player_ControllerHelper_ConflictCheckingHelper_ZZwRogcovycddgLNjZRoLiIZFlRIb_1_System_Object__QDNfcoFoaHbIufcPJbjePGvhmFBLb, (Player_ControllerHelper_ConflictCheckingHelper_ZZwRogcovycddgLNjZRoLiIZFlRIb_1_System_Object_ * __this, MethodInfo * method)); @@ -199170,6 +218383,7 @@ DO_APP_FUNC(0x011FA350, IEnumerator_1_Rewired_ElementAssignmentConflictInfo_ *, DO_APP_FUNC(0x00F95D10, ElementAssignmentConflictInfo, Player_ControllerHelper_ConflictCheckingHelper_ZZwRogcovycddgLNjZRoLiIZFlRIb_1_System_Object__System_Collections_Generic_IEnumerator_Rewired_ElementAssignmentConflictInfo__get_Current, (Player_ControllerHelper_ConflictCheckingHelper_ZZwRogcovycddgLNjZRoLiIZFlRIb_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F9B320, IEnumerator *, Player_ControllerHelper_ConflictCheckingHelper_ZZwRogcovycddgLNjZRoLiIZFlRIb_1_System_Object__System_Collections_IEnumerable_GetEnumerator, (Player_ControllerHelper_ConflictCheckingHelper_ZZwRogcovycddgLNjZRoLiIZFlRIb_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011FA290, void, Player_ControllerHelper_ConflictCheckingHelper_ZZwRogcovycddgLNjZRoLiIZFlRIb_1_System_Object__System_Collections_IEnumerator_Reset, (Player_ControllerHelper_ConflictCheckingHelper_ZZwRogcovycddgLNjZRoLiIZFlRIb_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9200, Player_ControllerHelper_ConflictCheckingHelper_ZZwRogcovycddgLNjZRoLiIZFlRIb_1_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x011FA2E0, Object *, Player_ControllerHelper_ConflictCheckingHelper_ZZwRogcovycddgLNjZRoLiIZFlRIb_1_System_Object__System_Collections_IEnumerator_get_Current, (Player_ControllerHelper_ConflictCheckingHelper_ZZwRogcovycddgLNjZRoLiIZFlRIb_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F8E250, void, Player_ControllerHelper_ConflictCheckingHelper_ZZwRogcovycddgLNjZRoLiIZFlRIb_1_System_Object__System_IDisposable_Dispose, (Player_ControllerHelper_ConflictCheckingHelper_ZZwRogcovycddgLNjZRoLiIZFlRIb_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, EqualityComparerNoAlloc_1_T_ZfRVUoDQALTuSmKYXlyTvgtayLIB_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb___ctor, (EqualityComparerNoAlloc_1_T_ZfRVUoDQALTuSmKYXlyTvgtayLIB_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb_ * __this, MethodInfo * method)); @@ -199246,6 +218460,7 @@ DO_APP_FUNC(0x011FB980, int32_t, EqualityComparerNoAlloc_1_T_ZfRVUoDQALTuSmKYXly DO_APP_FUNC(0x00FD2310, EqualityComparerNoAlloc_1_T_ZfRVUoDQALTuSmKYXlyTvgtayLIB_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ *, EqualityComparerNoAlloc_1_T_ZfRVUoDQALTuSmKYXlyTvgtayLIB_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__vDKbPXeMjezAhWFpTqlmMbBAocdgA, (MethodInfo * method)); DO_APP_FUNC(0x003BCD60, void, UpdateLoopDataSet_1_T_ZiclZXYpwdehzXmFmEsJccSZMPwKA_System_Object___ctor, (UpdateLoopDataSet_1_T_ZiclZXYpwdehzXmFmEsJccSZMPwKA_System_Object_ * __this, UpdateLoopType__Enum param_00009afd, MethodInfo * method)); DO_APP_FUNC(0x011FBA40, void, Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_System_Object_System_Object___ctor, (Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC91F8, Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_System_Object_System_Object___ctor__MethodInfo); DO_APP_FUNC(0x011FCB10, Controller *, Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_System_Object_System_Object__DsQAGrHtBEqymcTKzlewdnJDyerlB, (Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_System_Object_System_Object_ * __this, int32_t param_0000a929, MethodInfo * method)); DO_APP_FUNC(0x011FC560, int32_t, Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_System_Object_System_Object__FbVjLtHLJdWBRcHvdYaWJslulpRCb, (Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_System_Object_System_Object_ * __this, String * param_0000a923, MethodInfo * method)); DO_APP_FUNC(0x011FC4E0, int32_t, Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_System_Object_System_Object__HVujqEvIFcMKdvpImleAuaPcoEPv, (Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_System_Object_System_Object_ * __this, Object * param_0000a922, MethodInfo * method)); @@ -199424,6 +218639,7 @@ DO_APP_FUNC(0x011FFE90, IEnumerator_1_Rewired_ElementAssignmentConflictInfo_ *, DO_APP_FUNC(0x00F95D10, ElementAssignmentConflictInfo, Player_ControllerHelper_ConflictCheckingHelper_gQqMyMtywVcGcgvnrUdxtsGUOGbd_1_System_Object__System_Collections_Generic_IEnumerator_Rewired_ElementAssignmentConflictInfo__get_Current, (Player_ControllerHelper_ConflictCheckingHelper_gQqMyMtywVcGcgvnrUdxtsGUOGbd_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F9B320, IEnumerator *, Player_ControllerHelper_ConflictCheckingHelper_gQqMyMtywVcGcgvnrUdxtsGUOGbd_1_System_Object__System_Collections_IEnumerable_GetEnumerator, (Player_ControllerHelper_ConflictCheckingHelper_gQqMyMtywVcGcgvnrUdxtsGUOGbd_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x011FFDD0, void, Player_ControllerHelper_ConflictCheckingHelper_gQqMyMtywVcGcgvnrUdxtsGUOGbd_1_System_Object__System_Collections_IEnumerator_Reset, (Player_ControllerHelper_ConflictCheckingHelper_gQqMyMtywVcGcgvnrUdxtsGUOGbd_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC91E8, Player_ControllerHelper_ConflictCheckingHelper_gQqMyMtywVcGcgvnrUdxtsGUOGbd_1_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x011FFE20, Object *, Player_ControllerHelper_ConflictCheckingHelper_gQqMyMtywVcGcgvnrUdxtsGUOGbd_1_System_Object__System_Collections_IEnumerator_get_Current, (Player_ControllerHelper_ConflictCheckingHelper_gQqMyMtywVcGcgvnrUdxtsGUOGbd_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F8E250, void, Player_ControllerHelper_ConflictCheckingHelper_gQqMyMtywVcGcgvnrUdxtsGUOGbd_1_System_Object__System_IDisposable_Dispose, (Player_ControllerHelper_ConflictCheckingHelper_gQqMyMtywVcGcgvnrUdxtsGUOGbd_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, EqualityComparerNoAlloc_1_T_gmmNfVCEZqZfdjzIZmRniMfVitnv_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb___ctor, (EqualityComparerNoAlloc_1_T_gmmNfVCEZqZfdjzIZmRniMfVitnv_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb_ * __this, MethodInfo * method)); @@ -199519,6 +218735,7 @@ DO_APP_FUNC(0x01202100, IEnumerator_1_System_Object_ *, Player_ControllerHelper_ DO_APP_FUNC(0x003BB3D0, Object *, Player_ControllerHelper_MapHelper_kBAIbKelAKkpCJAkhTDqMuKFHhAVA_1_System_Object__System_Collections_Generic_IEnumerator_T__get_Current, (Player_ControllerHelper_MapHelper_kBAIbKelAKkpCJAkhTDqMuKFHhAVA_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F8E8E0, IEnumerator *, Player_ControllerHelper_MapHelper_kBAIbKelAKkpCJAkhTDqMuKFHhAVA_1_System_Object__System_Collections_IEnumerable_GetEnumerator, (Player_ControllerHelper_MapHelper_kBAIbKelAKkpCJAkhTDqMuKFHhAVA_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x012020B0, void, Player_ControllerHelper_MapHelper_kBAIbKelAKkpCJAkhTDqMuKFHhAVA_1_System_Object__System_Collections_IEnumerator_Reset, (Player_ControllerHelper_MapHelper_kBAIbKelAKkpCJAkhTDqMuKFHhAVA_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC91E0, Player_ControllerHelper_MapHelper_kBAIbKelAKkpCJAkhTDqMuKFHhAVA_1_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Player_ControllerHelper_MapHelper_kBAIbKelAKkpCJAkhTDqMuKFHhAVA_1_System_Object__System_Collections_IEnumerator_get_Current, (Player_ControllerHelper_MapHelper_kBAIbKelAKkpCJAkhTDqMuKFHhAVA_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Player_ControllerHelper_MapHelper_kBAIbKelAKkpCJAkhTDqMuKFHhAVA_1_System_Object__System_IDisposable_Dispose, (Player_ControllerHelper_MapHelper_kBAIbKelAKkpCJAkhTDqMuKFHhAVA_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01202260, void, SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Object___ctor, (SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Object_ * __this, Object * param_0000bf8f, MethodInfo * method)); @@ -199539,73 +218756,97 @@ DO_APP_FUNC(0x003AE050, void, ldnqCJRTNbykOZAyPczivAgtlhxQ_1_u0001_mOUXiAbqRPJeK DO_APP_FUNC(0x012033C0, bool, ldnqCJRTNbykOZAyPczivAgtlhxQ_1_u0001_mOUXiAbqRPJeKdHXELFIqAStEHCY_System_Object__ONfjMnwczSqiPIqnQBvVAutzvBeWA, (ldnqCJRTNbykOZAyPczivAgtlhxQ_1_u0001_mOUXiAbqRPJeKdHXELFIqAStEHCY_System_Object_ * __this, ldnqCJRTNbykOZAyPczivAgtlhxQ_1_u0001_ywtZPPrElpcINJiNufkjaDyFYDcAB_System_Object_ * param_00009ab7, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_oKrGfnOiRboCNxoHfTXuLPxHeKLM_1_System_Object___ctor, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_oKrGfnOiRboCNxoHfTXuLPxHeKLM_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01203450, bool, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_oKrGfnOiRboCNxoHfTXuLPxHeKLM_1_System_Object__rudJEMnaGZfBHjRsDzqDiGPIMtseA, (UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_oKrGfnOiRboCNxoHfTXuLPxHeKLM_1_System_Object_ * __this, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wzRiUTIKuqxDCQYCeJSGjaGZezQK * param_0000b81f, MethodInfo * method)); -DO_APP_FUNC(0x012034B0, void, RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_System_Object___ctor, (RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_System_Object___Boxed * __this, RingBuffer_1_System_Object_ * param_0000c680, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_System_Object__Dispose, (RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01203530, bool, RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_System_Object__MoveNext, (RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01203780, void, RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_System_Object__System_Collections_IEnumerator_Reset, (RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x012036F0, Object *, RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_System_Object__System_Collections_IEnumerator_get_Current, (RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_System_Object__get_Current, (RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01203660, bool, RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_System_Object__xqShjCyKaJzjcyOWbTSpXlBbjIot, (RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01203810, void, RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_aQHgSHeigtcamfIWbNaiXaCiVwuq___ctor, (RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_aQHgSHeigtcamfIWbNaiXaCiVwuq___Boxed * __this, RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * param_0000c680, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_aQHgSHeigtcamfIWbNaiXaCiVwuq__Dispose, (RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_aQHgSHeigtcamfIWbNaiXaCiVwuq___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01203890, bool, RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_aQHgSHeigtcamfIWbNaiXaCiVwuq__MoveNext, (RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_aQHgSHeigtcamfIWbNaiXaCiVwuq___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01203AF0, void, RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_aQHgSHeigtcamfIWbNaiXaCiVwuq__System_Collections_IEnumerator_Reset, (RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_aQHgSHeigtcamfIWbNaiXaCiVwuq___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01203A10, Object *, RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_aQHgSHeigtcamfIWbNaiXaCiVwuq__System_Collections_IEnumerator_get_Current, (RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_aQHgSHeigtcamfIWbNaiXaCiVwuq___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BCD50, aQHgSHeigtcamfIWbNaiXaCiVwuq, RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_aQHgSHeigtcamfIWbNaiXaCiVwuq__get_Current, (RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_aQHgSHeigtcamfIWbNaiXaCiVwuq___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01203980, bool, RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_aQHgSHeigtcamfIWbNaiXaCiVwuq__xqShjCyKaJzjcyOWbTSpXlBbjIot, (RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_aQHgSHeigtcamfIWbNaiXaCiVwuq___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x012034B0, void, RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_System_Object___ctor, (RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_System_Object_ * __this, RingBuffer_1_System_Object_ * param_0000c680, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_System_Object__Dispose, (RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01203530, bool, RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_System_Object__MoveNext, (RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01203780, void, RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_System_Object__System_Collections_IEnumerator_Reset, (RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9198, RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x012036F0, Object *, RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_System_Object__System_Collections_IEnumerator_get_Current, (RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC91A0, RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_System_Object__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x003BB3C0, Object *, RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_System_Object__get_Current, (RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01203660, bool, RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_System_Object__xqShjCyKaJzjcyOWbTSpXlBbjIot, (RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9188, RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_System_Object__xqShjCyKaJzjcyOWbTSpXlBbjIot__MethodInfo); +DO_APP_FUNC(0x01203810, void, RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_aQHgSHeigtcamfIWbNaiXaCiVwuq___ctor, (RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * __this, RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * param_0000c680, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_aQHgSHeigtcamfIWbNaiXaCiVwuq__Dispose, (RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01203890, bool, RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_aQHgSHeigtcamfIWbNaiXaCiVwuq__MoveNext, (RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01203AF0, void, RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_aQHgSHeigtcamfIWbNaiXaCiVwuq__System_Collections_IEnumerator_Reset, (RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC91C0, RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_aQHgSHeigtcamfIWbNaiXaCiVwuq__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x01203A10, Object *, RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_aQHgSHeigtcamfIWbNaiXaCiVwuq__System_Collections_IEnumerator_get_Current, (RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC91A8, RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_aQHgSHeigtcamfIWbNaiXaCiVwuq__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x003BCD50, aQHgSHeigtcamfIWbNaiXaCiVwuq, RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_aQHgSHeigtcamfIWbNaiXaCiVwuq__get_Current, (RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01203980, bool, RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_aQHgSHeigtcamfIWbNaiXaCiVwuq__xqShjCyKaJzjcyOWbTSpXlBbjIot, (RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_aQHgSHeigtcamfIWbNaiXaCiVwuq_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC91B0, RingBuffer_1_T_oQSzWNQxqLPtYnJrScQaARHwTxiNA_aQHgSHeigtcamfIWbNaiXaCiVwuq__xqShjCyKaJzjcyOWbTSpXlBbjIot__MethodInfo); DO_APP_FUNC(0x003BCD60, void, FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_u0001_onsIbIRYIhUabesHxMEGruPdrTci_System_Object___ctor, (FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_u0001_onsIbIRYIhUabesHxMEGruPdrTci_System_Object_ * __this, int32_t param_0000a4c5, MethodInfo * method)); DO_APP_FUNC(0x01203B80, bool, FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_u0001_onsIbIRYIhUabesHxMEGruPdrTci_System_Object__MoveNext, (FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_u0001_onsIbIRYIhUabesHxMEGruPdrTci_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_u0001_onsIbIRYIhUabesHxMEGruPdrTci_System_Object__System_Collections_Generic_IEnumerator_T__get_Current, (FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_u0001_onsIbIRYIhUabesHxMEGruPdrTci_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01203CD0, void, FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_u0001_onsIbIRYIhUabesHxMEGruPdrTci_System_Object__System_Collections_IEnumerator_Reset, (FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_u0001_onsIbIRYIhUabesHxMEGruPdrTci_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC91B8, FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_u0001_onsIbIRYIhUabesHxMEGruPdrTci_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_u0001_onsIbIRYIhUabesHxMEGruPdrTci_System_Object__System_Collections_IEnumerator_get_Current, (FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_u0001_onsIbIRYIhUabesHxMEGruPdrTci_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_u0001_onsIbIRYIhUabesHxMEGruPdrTci_System_Object__System_IDisposable_Dispose, (FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_u0001_onsIbIRYIhUabesHxMEGruPdrTci_System_Object_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x01203D20, void, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object___ctor, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object___Boxed * __this, AList_1_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object_ * param_0000c6fd, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object__Dispose, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01203DA0, bool, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object__MoveNext, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01203FF0, void, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object__System_Collections_IEnumerator_Reset, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01203F10, Object *, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object__System_Collections_IEnumerator_get_Current, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object_, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object__get_Current, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01203E80, bool, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object__xqShjCyKaJzjcyOWbTSpXlBbjIot, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01203D20, void, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object___ctor, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object___Boxed * __this, AList_1_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object_ * param_0000c6fd, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object__Dispose, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01204080, bool, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object__MoveNext, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x012042D0, void, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object__System_Collections_IEnumerator_Reset, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x012041F0, Object *, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object__System_Collections_IEnumerator_get_Current, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E382E0, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object_, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object__get_Current, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01204160, bool, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object__xqShjCyKaJzjcyOWbTSpXlBbjIot, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01204360, void, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___ctor, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Boxed * __this, AList_1_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * param_0000c6fd, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__Dispose, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x012043E0, bool, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__MoveNext, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01204670, void, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_IEnumerator_Reset, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01204580, Object *, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_IEnumerator_get_Current, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01204560, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__get_Current, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x012044C0, bool, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__xqShjCyKaJzjcyOWbTSpXlBbjIot, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01204700, void, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_System_Object___ctor, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_System_Object___Boxed * __this, AList_1_System_Object_ * param_0000c6fd, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_System_Object__Dispose, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01204780, bool, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_System_Object__MoveNext, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01204970, void, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_System_Object__System_Collections_IEnumerator_Reset, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x012048E0, Object *, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_System_Object__System_Collections_IEnumerator_get_Current, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, Object *, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_System_Object__get_Current, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01204850, bool, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_System_Object__xqShjCyKaJzjcyOWbTSpXlBbjIot, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_System_Object___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01204700, void, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy___ctor, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy___Boxed * __this, AList_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * param_0000c6fd, MethodInfo * method)); -DO_APP_FUNC(0x003AE050, void, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__Dispose, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01204A00, bool, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__MoveNext, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01204BF0, void, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__System_Collections_IEnumerator_Reset, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01204B10, Object *, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__System_Collections_IEnumerator_get_Current, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x003BB3C0, gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__get_Current, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy___Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x01204A80, bool, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__xqShjCyKaJzjcyOWbTSpXlBbjIot, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy___Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x01203D20, void, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object___ctor, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object_ * __this, AList_1_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object_ * param_0000c6fd, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object__Dispose, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01203DA0, bool, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object__MoveNext, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01203FF0, void, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object__System_Collections_IEnumerator_Reset, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9158, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x01203F10, Object *, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object__System_Collections_IEnumerator_get_Current, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9160, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x00E382E0, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object_, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object__get_Current, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01203E80, bool, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object__xqShjCyKaJzjcyOWbTSpXlBbjIot, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9148, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object__xqShjCyKaJzjcyOWbTSpXlBbjIot__MethodInfo); +DO_APP_FUNC(0x01203D20, void, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object___ctor, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object_ * __this, AList_1_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object_ * param_0000c6fd, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object__Dispose, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01204080, bool, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object__MoveNext, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x012042D0, void, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object__System_Collections_IEnumerator_Reset, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9180, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x012041F0, Object *, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object__System_Collections_IEnumerator_get_Current, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9168, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x00E382E0, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object_, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object__get_Current, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01204160, bool, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object__xqShjCyKaJzjcyOWbTSpXlBbjIot, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9170, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object__xqShjCyKaJzjcyOWbTSpXlBbjIot__MethodInfo); +DO_APP_FUNC(0x01204360, void, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___ctor, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, AList_1_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * param_0000c6fd, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__Dispose, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x012043E0, bool, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__MoveNext, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01204670, void, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_IEnumerator_Reset, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9108, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x01204580, Object *, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_IEnumerator_get_Current, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9110, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x01204560, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__get_Current, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x012044C0, bool, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__xqShjCyKaJzjcyOWbTSpXlBbjIot, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9178, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__xqShjCyKaJzjcyOWbTSpXlBbjIot__MethodInfo); +DO_APP_FUNC(0x01204700, void, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_System_Object___ctor, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_System_Object_ * __this, AList_1_System_Object_ * param_0000c6fd, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_System_Object__Dispose, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01204780, bool, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_System_Object__MoveNext, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01204970, void, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_System_Object__System_Collections_IEnumerator_Reset, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9130, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x012048E0, Object *, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_System_Object__System_Collections_IEnumerator_get_Current, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9118, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_System_Object__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x003BB3C0, Object *, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_System_Object__get_Current, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01204850, bool, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_System_Object__xqShjCyKaJzjcyOWbTSpXlBbjIot, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9120, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_System_Object__xqShjCyKaJzjcyOWbTSpXlBbjIot__MethodInfo); +DO_APP_FUNC(0x01204700, void, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy___ctor, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * __this, AList_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * param_0000c6fd, MethodInfo * method)); +DO_APP_FUNC(0x003AE050, void, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__Dispose, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01204A00, bool, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__MoveNext, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01204BF0, void, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__System_Collections_IEnumerator_Reset, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9138, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__System_Collections_IEnumerator_Reset__MethodInfo); +DO_APP_FUNC(0x01204B10, Object *, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__System_Collections_IEnumerator_get_Current, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9140, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__System_Collections_IEnumerator_get_Current__MethodInfo); +DO_APP_FUNC(0x003BB3C0, gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__get_Current, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * __this, MethodInfo * method)); +DO_APP_FUNC(0x01204A80, bool, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__xqShjCyKaJzjcyOWbTSpXlBbjIot, (AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9128, AList_1_T_rGNQyrscjtxEupYXLSJKYNelpiWR_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__xqShjCyKaJzjcyOWbTSpXlBbjIot__MethodInfo); DO_APP_FUNC(0x012060E0, void, rULHSySJJYaatQjUGwzXfVaVsuaC_3_System_Object_uOqstchGzYFsOAddzFFaQYYGenBDb_tSPvxZUJjzaTiAEejeAOLKctGpmKA___cctor, (MethodInfo * method)); DO_APP_FUNC(0x01204C80, void, rULHSySJJYaatQjUGwzXfVaVsuaC_3_System_Object_uOqstchGzYFsOAddzFFaQYYGenBDb_tSPvxZUJjzaTiAEejeAOLKctGpmKA___ctor, (rULHSySJJYaatQjUGwzXfVaVsuaC_3_System_Object_uOqstchGzYFsOAddzFFaQYYGenBDb_tSPvxZUJjzaTiAEejeAOLKctGpmKA_ * __this, HhyJayjEkazMHJnFosltszjdHjxA * param_00014581, Guid param_00014582, MethodInfo * method)); DO_APP_FUNC(0x01205050, void, rULHSySJJYaatQjUGwzXfVaVsuaC_3_System_Object_uOqstchGzYFsOAddzFFaQYYGenBDb_tSPvxZUJjzaTiAEejeAOLKctGpmKA__FUJfGaoxYLbetWRDXDFhFIDNfYKBA, (rULHSySJJYaatQjUGwzXfVaVsuaC_3_System_Object_uOqstchGzYFsOAddzFFaQYYGenBDb_tSPvxZUJjzaTiAEejeAOLKctGpmKA_ * __this, Object * param_00014583, MethodInfo * method)); DO_APP_FUNC(0x01205080, Object *, rULHSySJJYaatQjUGwzXfVaVsuaC_3_System_Object_uOqstchGzYFsOAddzFFaQYYGenBDb_tSPvxZUJjzaTiAEejeAOLKctGpmKA__KxfdpmJBpsDpzqdmlIiQUsKvGJbCA, (rULHSySJJYaatQjUGwzXfVaVsuaC_3_System_Object_uOqstchGzYFsOAddzFFaQYYGenBDb_tSPvxZUJjzaTiAEejeAOLKctGpmKA_ * __this, MethodInfo * method)); -DO_APP_FUNC(0x012050F0, void, rULHSySJJYaatQjUGwzXfVaVsuaC_3_System_Object_uOqstchGzYFsOAddzFFaQYYGenBDb_tSPvxZUJjzaTiAEejeAOLKctGpmKA__KxfdpmJBpsDpzqdmlIiQUsKvGJbCA_1, (rULHSySJJYaatQjUGwzXfVaVsuaC_3_System_Object_uOqstchGzYFsOAddzFFaQYYGenBDb_tSPvxZUJjzaTiAEejeAOLKctGpmKA_ * __this, Object * param_00014584, MethodInfo * method)); +DO_APP_FUNC(0x012050F0, void, rULHSySJJYaatQjUGwzXfVaVsuaC_3_System_Object_uOqstchGzYFsOAddzFFaQYYGenBDb_tSPvxZUJjzaTiAEejeAOLKctGpmKA__KxfdpmJBpsDpzqdmlIiQUsKvGJbCA_1, (rULHSySJJYaatQjUGwzXfVaVsuaC_3_System_Object_uOqstchGzYFsOAddzFFaQYYGenBDb_tSPvxZUJjzaTiAEejeAOLKctGpmKA_ * __this, Object * * param_00014584, MethodInfo * method)); DO_APP_FUNC(0x012052D0, pkfvdhAgvJBekrlDorTPuCftMpCU *, rULHSySJJYaatQjUGwzXfVaVsuaC_3_System_Object_uOqstchGzYFsOAddzFFaQYYGenBDb_tSPvxZUJjzaTiAEejeAOLKctGpmKA__ftMxFobREfNVfxwXoLCgnFOpzxbq, (rULHSySJJYaatQjUGwzXfVaVsuaC_3_System_Object_uOqstchGzYFsOAddzFFaQYYGenBDb_tSPvxZUJjzaTiAEejeAOLKctGpmKA_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9068, rULHSySJJYaatQjUGwzXfVaVsuaC_3_System_Object_uOqstchGzYFsOAddzFFaQYYGenBDb_tSPvxZUJjzaTiAEejeAOLKctGpmKA__ftMxFobREfNVfxwXoLCgnFOpzxbq__MethodInfo); DO_APP_FUNC(0x00FDB5B0, void, Player_ControllerHelper_MapHelper_wkXeiVjjhyefLdMGcpPdlFnPnQrD_1_System_Object___ctor, (Player_ControllerHelper_MapHelper_wkXeiVjjhyefLdMGcpPdlFnPnQrD_1_System_Object_ * __this, int32_t param_0000ad3e, MethodInfo * method)); DO_APP_FUNC(0x012061F0, bool, Player_ControllerHelper_MapHelper_wkXeiVjjhyefLdMGcpPdlFnPnQrD_1_System_Object__MoveNext, (Player_ControllerHelper_MapHelper_wkXeiVjjhyefLdMGcpPdlFnPnQrD_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01206970, IEnumerator_1_System_Object_ *, Player_ControllerHelper_MapHelper_wkXeiVjjhyefLdMGcpPdlFnPnQrD_1_System_Object__System_Collections_Generic_IEnumerable_T__GetEnumerator, (Player_ControllerHelper_MapHelper_wkXeiVjjhyefLdMGcpPdlFnPnQrD_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003BB3D0, Object *, Player_ControllerHelper_MapHelper_wkXeiVjjhyefLdMGcpPdlFnPnQrD_1_System_Object__System_Collections_Generic_IEnumerator_T__get_Current, (Player_ControllerHelper_MapHelper_wkXeiVjjhyefLdMGcpPdlFnPnQrD_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x00F8EE30, IEnumerator *, Player_ControllerHelper_MapHelper_wkXeiVjjhyefLdMGcpPdlFnPnQrD_1_System_Object__System_Collections_IEnumerable_GetEnumerator, (Player_ControllerHelper_MapHelper_wkXeiVjjhyefLdMGcpPdlFnPnQrD_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01206920, void, Player_ControllerHelper_MapHelper_wkXeiVjjhyefLdMGcpPdlFnPnQrD_1_System_Object__System_Collections_IEnumerator_Reset, (Player_ControllerHelper_MapHelper_wkXeiVjjhyefLdMGcpPdlFnPnQrD_1_System_Object_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9060, Player_ControllerHelper_MapHelper_wkXeiVjjhyefLdMGcpPdlFnPnQrD_1_System_Object__System_Collections_IEnumerator_Reset__MethodInfo); DO_APP_FUNC(0x003BB3D0, Object *, Player_ControllerHelper_MapHelper_wkXeiVjjhyefLdMGcpPdlFnPnQrD_1_System_Object__System_Collections_IEnumerator_get_Current, (Player_ControllerHelper_MapHelper_wkXeiVjjhyefLdMGcpPdlFnPnQrD_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Player_ControllerHelper_MapHelper_wkXeiVjjhyefLdMGcpPdlFnPnQrD_1_System_Object__System_IDisposable_Dispose, (Player_ControllerHelper_MapHelper_wkXeiVjjhyefLdMGcpPdlFnPnQrD_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, EqualityComparerNoAlloc_1_T_wohBRsiTzmaYnDWvJhurGJAsRIIP_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb___ctor, (EqualityComparerNoAlloc_1_T_wohBRsiTzmaYnDWvJhurGJAsRIIP_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb_ * __this, MethodInfo * method)); @@ -199681,16 +218922,24 @@ DO_APP_FUNC(0x01207D60, bool, EqualityComparerNoAlloc_1_T_wohBRsiTzmaYnDWvJhurGJ DO_APP_FUNC(0x01207E50, int32_t, EqualityComparerNoAlloc_1_T_wohBRsiTzmaYnDWvJhurGJAsRIIP_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__System_Collections_IEqualityComparer_GetHashCode, (EqualityComparerNoAlloc_1_T_wohBRsiTzmaYnDWvJhurGJAsRIIP_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * __this, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x00FD2310, EqualityComparerNoAlloc_1_T_wohBRsiTzmaYnDWvJhurGJAsRIIP_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ *, EqualityComparerNoAlloc_1_T_wohBRsiTzmaYnDWvJhurGJAsRIIP_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__vDKbPXeMjezAhWFpTqlmMbBAocdgA, (MethodInfo * method)); DO_APP_FUNC(0x01207F30, void, yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_System_Boolean___ctor, (yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_System_Boolean_ * __this, bool param_00014439, Func_1_Boolean_ * param_0001443a, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9050, yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_System_Boolean___ctor__MethodInfo); DO_APP_FUNC(0x01208250, void, yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_System_Boolean__IqeirVCUUEJhXFQOWXCdOtBiFkPb, (yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFAD0, yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_System_Boolean__IqeirVCUUEJhXFQOWXCdOtBiFkPb__MethodInfo); DO_APP_FUNC(0x012082D0, void, yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_System_Boolean__JuIEPvlTzFQMAsrLodtHMHxSwqIg, (yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_System_Boolean_ * __this, Object * param_0001443b, MethodInfo * method)); DO_APP_FUNC(0x01207F10, bool, yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_System_Boolean__MHFXnLCHBjIWBvHFZCUVEhCwIIXE, (yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCE730, yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_System_Boolean__MHFXnLCHBjIWBvHFZCUVEhCwIIXE__MethodInfo); DO_APP_FUNC(0x01208160, bool, yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_System_Boolean__fSiBAGQORirIHjSLxbZfXghAjhEo, (yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCE728, yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_System_Boolean__fSiBAGQORirIHjSLxbZfXghAjhEo__MethodInfo); DO_APP_FUNC(0x01208400, void, yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_System_Boolean__ixmAePEnLRGjkiYJbCTfPNBHXEcwB, (yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCE758, yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_System_Boolean__ixmAePEnLRGjkiYJbCTfPNBHXEcwB__MethodInfo); DO_APP_FUNC(0x01208470, void, yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_System_Boolean__ixmAePEnLRGjkiYJbCTfPNBHXEcwB_1, (yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_System_Boolean_ * __this, bool param_0001443c, MethodInfo * method)); DO_APP_FUNC(0x010F2250, void, yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_System_Boolean__koAztZrcZLyuMlaqoUCpAMQQIsgb, (yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_System_Boolean_ * __this, MethodInfo * method)); DO_APP_FUNC(0x006C3BB0, bool, yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_System_Boolean__xGrcbdURWhaVAdZWQTWYqrWsGkhM, (yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCE738, yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_System_Boolean__xGrcbdURWhaVAdZWQTWYqrWsGkhM__MethodInfo); DO_APP_FUNC(0x003CD410, bool, yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_System_Boolean__yzHwsiiQqVEpTLidEXPmLEnGyiii, (yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_System_Boolean_ * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCE718, yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_System_Boolean__yzHwsiiQqVEpTLidEXPmLEnGyiii__MethodInfo); DO_APP_FUNC(0x012084D0, void, yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_System_Object___ctor, (yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_System_Object_ * __this, bool param_00014439, Func_1_Object_ * param_0001443a, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9048, yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_System_Object___ctor__MethodInfo); DO_APP_FUNC(0x012087F0, void, yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_System_Object__IqeirVCUUEJhXFQOWXCdOtBiFkPb, (yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_System_Object_ * __this, MethodInfo * method)); DO_APP_FUNC(0x01208870, void, yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_System_Object__JuIEPvlTzFQMAsrLodtHMHxSwqIg, (yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_System_Object_ * __this, Object * param_0001443b, MethodInfo * method)); DO_APP_FUNC(0x01207F10, bool, yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_System_Object__MHFXnLCHBjIWBvHFZCUVEhCwIIXE, (yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_System_Object_ * __this, MethodInfo * method)); @@ -199748,10 +218997,13 @@ DO_APP_FUNC(0x00C7D3C0, void, AddressablesImpl__AutoReleaseHandleOnCompletion_b_ DO_APP_FUNC(0x00C7D3C0, void, AddressablesImpl__AutoReleaseHandleOnCompletion_b__110_0_2, (AddressablesImpl * __this, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ op, MethodInfo * method)); DO_APP_FUNC(0x00C7D3F0, void, AddressablesImpl__AutoReleaseHandleOnTypelessCompletion_b__112_0, (AddressablesImpl * __this, AsyncOperationHandle op, MethodInfo * method)); DO_APP_FUNC(0x00C7D420, void, AddressablesImpl_AutoReleaseHandleOnCompletion_1, (AddressablesImpl * __this, AsyncOperationHandle_1_System_Boolean_ handle, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE460, AddressablesImpl_AutoReleaseHandleOnCompletion_1__MethodInfo); DO_APP_FUNC(0x00C7D4B0, void, AddressablesImpl_AutoReleaseHandleOnCompletion_2, (AddressablesImpl * __this, AsyncOperationHandle_1_System_Object_ handle, MethodInfo * method)); DO_APP_FUNC(0x00C7D540, void, AddressablesImpl_AutoReleaseHandleOnCompletion_3, (AddressablesImpl * __this, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ handle, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE770, AddressablesImpl_AutoReleaseHandleOnCompletion_3__MethodInfo); DO_APP_FUNC(0x00C7D5D0, void, AddressablesImpl_AutoReleaseHandleOnCompletion_4, (AddressablesImpl * __this, AsyncOperationHandle_1_System_Object_ handle, bool unloadSceneOpExcludeReleaseCallback, MethodInfo * method)); DO_APP_FUNC(0x00C7D700, void, AddressablesImpl_AutoReleaseHandleOnCompletion_5, (AddressablesImpl * __this, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ handle, bool unloadSceneOpExcludeReleaseCallback, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE338, AddressablesImpl_AutoReleaseHandleOnCompletion_5__MethodInfo); DO_APP_FUNC(0x00C7D830, void, AddressablesImpl_AutoReleaseHandleOnTypelessCompletion, (AddressablesImpl * __this, AsyncOperationHandle_1_System_Object_ handle, MethodInfo * method)); DO_APP_FUNC(0x00C7D8D0, AsyncOperationHandle_1_System_Object_, AddressablesImpl_LoadAssetAsync, (AddressablesImpl * __this, IResourceLocation * location, MethodInfo * method)); DO_APP_FUNC(0x00C7D980, AsyncOperationHandle_1_System_Object_, AddressablesImpl_LoadAssetAsync_1, (AddressablesImpl * __this, Object * key, MethodInfo * method)); @@ -199766,6 +219018,7 @@ DO_APP_FUNC(0x00C7F2D0, void, AddressablesImpl_Release_2, (AddressablesImpl * __ DO_APP_FUNC(0x00C7F440, void, AddressablesImpl_Release_3, (AddressablesImpl * __this, AsyncOperationHandle_1_System_Object_ handle, MethodInfo * method)); DO_APP_FUNC(0x00C7F940, void, AddressablesImpl_Release_4, (AddressablesImpl * __this, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ handle, MethodInfo * method)); DO_APP_FUNC(0x00C7FE70, AsyncOperationHandle_1_System_Int64_, AddressablesImpl_TrackHandle_2, (AddressablesImpl * __this, AsyncOperationHandle_1_System_Int64_ handle, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE550, AddressablesImpl_TrackHandle_2__MethodInfo); DO_APP_FUNC(0x00C7FEC0, AsyncOperationHandle_1_System_Object_, AddressablesImpl_TrackHandle_3, (AddressablesImpl * __this, AsyncOperationHandle_1_System_Object_ handle, MethodInfo * method)); DO_APP_FUNC(0x00C7FF10, bool, AndroidJNIHelper_ConvertFromJNIArray, (void * array, MethodInfo * method)); DO_APP_FUNC(0x00C7FF10, uint16_t, AndroidJNIHelper_ConvertFromJNIArray_1, (void * array, MethodInfo * method)); @@ -199787,15 +219040,24 @@ DO_APP_FUNC(0x00C7FF50, void *, AndroidJNIHelper_GetMethodID_7, (void * jclass, DO_APP_FUNC(0x00C7FF50, void *, AndroidJNIHelper_GetMethodID_8, (void * jclass, String * methodName, Object__Array * args, bool isStatic, MethodInfo * method)); DO_APP_FUNC(0x00C7FF50, void *, AndroidJNIHelper_GetMethodID_9, (void * jclass, String * methodName, Object__Array * args, bool isStatic, MethodInfo * method)); DO_APP_FUNC(0x00C7FF30, bool, AndroidJavaObject_Call, (AndroidJavaObject * __this, String * methodName, Object__Array * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFBF40, AndroidJavaObject_Call__MethodInfo); DO_APP_FUNC(0x00C7FF30, uint16_t, AndroidJavaObject_Call_1, (AndroidJavaObject * __this, String * methodName, Object__Array * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFBF50, AndroidJavaObject_Call_1__MethodInfo); DO_APP_FUNC(0x00C7FF30, double, AndroidJavaObject_Call_2, (AndroidJavaObject * __this, String * methodName, Object__Array * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFBF48, AndroidJavaObject_Call_2__MethodInfo); DO_APP_FUNC(0x00C7FF30, int16_t, AndroidJavaObject_Call_3, (AndroidJavaObject * __this, String * methodName, Object__Array * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFBFB0, AndroidJavaObject_Call_3__MethodInfo); DO_APP_FUNC(0x00C7FF30, int32_t, AndroidJavaObject_Call_4, (AndroidJavaObject * __this, String * methodName, Object__Array * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFBFA8, AndroidJavaObject_Call_4__MethodInfo); DO_APP_FUNC(0x00C7FF30, int64_t, AndroidJavaObject_Call_5, (AndroidJavaObject * __this, String * methodName, Object__Array * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFBFA0, AndroidJavaObject_Call_5__MethodInfo); DO_APP_FUNC(0x00C7FF30, Object *, AndroidJavaObject_Call_6, (AndroidJavaObject * __this, String * methodName, Object__Array * args, MethodInfo * method)); DO_APP_FUNC(0x00C7FF30, int8_t, AndroidJavaObject_Call_7, (AndroidJavaObject * __this, String * methodName, Object__Array * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFBF98, AndroidJavaObject_Call_7__MethodInfo); DO_APP_FUNC(0x00C7FF30, float, AndroidJavaObject_Call_8, (AndroidJavaObject * __this, String * methodName, Object__Array * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFBF90, AndroidJavaObject_Call_8__MethodInfo); DO_APP_FUNC(0x00C7FF30, int32_t, AndroidJavaObject_CallStatic, (AndroidJavaObject * __this, String * methodName, Object__Array * args, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC080, AndroidJavaObject_CallStatic__MethodInfo); DO_APP_FUNC(0x00C7FF30, Object *, AndroidJavaObject_CallStatic_1, (AndroidJavaObject * __this, String * methodName, Object__Array * args, MethodInfo * method)); DO_APP_FUNC(0x00C7FF70, bool, AndroidJavaObject_FromJavaArrayDeleteLocalRef, (void * jobject, MethodInfo * method)); DO_APP_FUNC(0x00C800B0, uint16_t, AndroidJavaObject_FromJavaArrayDeleteLocalRef_1, (void * jobject, MethodInfo * method)); @@ -199909,208 +219171,411 @@ DO_APP_FUNC_METHODINFO(0x03C98DB0, Array_BinarySearch_34__MethodInfo); DO_APP_FUNC(0x00C91580, int32_t, Array_BinarySearch_35, (ValueTuple_2_Object_Object___Array * array, int32_t index, int32_t length, ValueTuple_2_Object_Object_ value, IComparer_1_System_ValueTuple_2__3 * comparer, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C98DB8, Array_BinarySearch_35__MethodInfo); DO_APP_FUNC(0x00DD5C30, int32_t, Array_BinarySearch_36, (ValueTuple_2_UnityEngine_Vector3Int_Object___Array * array, int32_t index, int32_t length, ValueTuple_2_UnityEngine_Vector3Int_Object_ value, IComparer_1_System_ValueTuple_2__4 * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE280, Array_BinarySearch_36__MethodInfo); DO_APP_FUNC(0x00DD5E50, int32_t, Array_BinarySearch_37, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel___Array * array, int32_t index, int32_t length, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_ value, IComparer_1_System_ValueTuple_2__5 * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE288, Array_BinarySearch_37__MethodInfo); DO_APP_FUNC(0x00DD6090, int32_t, Array_BinarySearch_38, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership___Array * array, int32_t index, int32_t length, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_ value, IComparer_1_System_ValueTuple_2__6 * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE290, Array_BinarySearch_38__MethodInfo); DO_APP_FUNC(0x00DD62C0, int32_t, Array_BinarySearch_39, (AnimatorClipInfo__Array * array, int32_t index, int32_t length, AnimatorClipInfo value, IComparer_1_UnityEngine_AnimatorClipInfo_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE298, Array_BinarySearch_39__MethodInfo); DO_APP_FUNC(0x00DD64C0, int32_t, Array_BinarySearch_40, (AsyncOperationHandle__Array * array, int32_t index, int32_t length, AsyncOperationHandle value, IComparer_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE260, Array_BinarySearch_40__MethodInfo); DO_APP_FUNC(0x00DD66E0, int32_t, Array_BinarySearch_41, (BoltPeer__Array * array, int32_t index, int32_t length, BoltPeer value, IComparer_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE268, Array_BinarySearch_41__MethodInfo); DO_APP_FUNC(0x00DD68E0, int32_t, Array_BinarySearch_42, (BoltPhysicsHit__Array * array, int32_t index, int32_t length, BoltPhysicsHit value, IComparer_1_Photon_Bolt_LagCompensation_BoltPhysicsHit_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE270, Array_BinarySearch_42__MethodInfo); DO_APP_FUNC(0x00DD6B00, int32_t, Array_BinarySearch_43, (BoneWeight__Array * array, int32_t index, int32_t length, BoneWeight value, IComparer_1_UnityEngine_BoneWeight_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE278, Array_BinarySearch_43__MethodInfo); DO_APP_FUNC(0x00DD6D20, int32_t, Array_BinarySearch_44, (Boolean__Array * array, int32_t index, int32_t length, bool value, IComparer_1_System_Boolean_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE240, Array_BinarySearch_44__MethodInfo); DO_APP_FUNC(0x00DD6F20, int32_t, Array_BinarySearch_45, (Byte__Array * array, int32_t index, int32_t length, uint8_t value, IComparer_1_System_Byte_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE248, Array_BinarySearch_45__MethodInfo); DO_APP_FUNC(0x00DD7120, int32_t, Array_BinarySearch_46, (CancellationToken__Array * array, int32_t index, int32_t length, CancellationToken value, IComparer_1_System_Threading_CancellationToken_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE250, Array_BinarySearch_46__MethodInfo); DO_APP_FUNC(0x00DD7320, int32_t, Array_BinarySearch_47, (Char__Array * array, int32_t index, int32_t length, uint16_t value, IComparer_1_System_Char_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE258, Array_BinarySearch_47__MethodInfo); DO_APP_FUNC(0x00DD7520, int32_t, Array_BinarySearch_48, (ClientInfo__Array * array, int32_t index, int32_t length, ClientInfo value, IComparer_1_Dissonance_Networking_ClientInfo_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE220, Array_BinarySearch_48__MethodInfo); DO_APP_FUNC(0x00DD7740, int32_t, Array_BinarySearch_49, (Color__Array * array, int32_t index, int32_t length, Color value, IComparer_1_UnityEngine_Color_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE228, Array_BinarySearch_49__MethodInfo); DO_APP_FUNC(0x00DD7950, int32_t, Array_BinarySearch_50, (Color32__Array * array, int32_t index, int32_t length, Color32 value, IComparer_1_UnityEngine_Color32_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE230, Array_BinarySearch_50__MethodInfo); DO_APP_FUNC(0x00DD7B50, int32_t, Array_BinarySearch_51, (CombineInstance__Array * array, int32_t index, int32_t length, CombineInstance value, IComparer_1_UnityEngine_CombineInstance_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE238, Array_BinarySearch_51__MethodInfo); DO_APP_FUNC(0x00DD7DB0, int32_t, Array_BinarySearch_52, (ComputedTransitionProperty__Array * array, int32_t index, int32_t length, ComputedTransitionProperty value, IComparer_1_UnityEngine_UIElements_ComputedTransitionProperty_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE200, Array_BinarySearch_52__MethodInfo); DO_APP_FUNC(0x00DD7FD0, int32_t, Array_BinarySearch_53, (Connection__Array * array, int32_t index, int32_t length, Connection value, IComparer_1_Pathfinding_Connection_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE208, Array_BinarySearch_53__MethodInfo); DO_APP_FUNC(0x00DD81E0, int32_t, Array_BinarySearch_54, (ControllerPollingInfo__Array * array, int32_t index, int32_t length, ControllerPollingInfo value, IComparer_1_Rewired_ControllerPollingInfo_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE210, Array_BinarySearch_54__MethodInfo); DO_APP_FUNC(0x00DD8420, int32_t, Array_BinarySearch_55, (ControllerTemplateElementTarget__Array * array, int32_t index, int32_t length, ControllerTemplateElementTarget value, IComparer_1_Rewired_ControllerTemplateElementTarget_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE218, Array_BinarySearch_55__MethodInfo); DO_APP_FUNC(0x00DD8630, int32_t, Array_BinarySearch_56, (CurveSample__Array * array, int32_t index, int32_t length, CurveSample value, IComparer_1_SplineMesh_CurveSample_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE1E0, Array_BinarySearch_56__MethodInfo); DO_APP_FUNC(0x00DD8870, int32_t, Array_BinarySearch_57, (DateTime__Array * array, int32_t index, int32_t length, DateTime value, IComparer_1_System_DateTime_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE1E8, Array_BinarySearch_57__MethodInfo); DO_APP_FUNC(0x00DD8A70, int32_t, Array_BinarySearch_58, (DateTimeOffset__Array * array, int32_t index, int32_t length, DateTimeOffset value, IComparer_1_System_DateTimeOffset_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE1F0, Array_BinarySearch_58__MethodInfo); DO_APP_FUNC(0x00DD8C80, int32_t, Array_BinarySearch_59, (Decimal__Array * array, int32_t index, int32_t length, Decimal value, IComparer_1_System_Decimal_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE1F8, Array_BinarySearch_59__MethodInfo); DO_APP_FUNC(0x00DD8E90, int32_t, Array_BinarySearch_60, (DiagnosticEvent__Array * array, int32_t index, int32_t length, DiagnosticEvent value, IComparer_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE1C0, Array_BinarySearch_60__MethodInfo); DO_APP_FUNC(0x00DD90B0, int32_t, Array_BinarySearch_61, (Double__Array * array, int32_t index, int32_t length, double value, IComparer_1_System_Double_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE1C8, Array_BinarySearch_61__MethodInfo); DO_APP_FUNC(0x00DD92B0, int32_t, Array_BinarySearch_62, (EasingFunction__Array * array, int32_t index, int32_t length, EasingFunction value, IComparer_1_UnityEngine_UIElements_EasingFunction_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE1D0, Array_BinarySearch_62__MethodInfo); DO_APP_FUNC(0x00DD94B0, int32_t, Array_BinarySearch_63, (ElementAssignmentConflictInfo__Array * array, int32_t index, int32_t length, ElementAssignmentConflictInfo value, IComparer_1_Rewired_ElementAssignmentConflictInfo_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE1D8, Array_BinarySearch_63__MethodInfo); DO_APP_FUNC(0x00DD96E0, int32_t, Array_BinarySearch_64, (Entitlement__Array * array, int32_t index, int32_t length, Entitlement value, IComparer_1_Discord_Entitlement_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE1A0, Array_BinarySearch_64__MethodInfo); DO_APP_FUNC(0x00DD9900, int32_t, Array_BinarySearch_65, (EventReliable__Array * array, int32_t index, int32_t length, EventReliable value, IComparer_1_Photon_Bolt_EventReliable_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE1A8, Array_BinarySearch_65__MethodInfo); DO_APP_FUNC(0x00DD9B10, int32_t, Array_BinarySearch_66, (EventUnreliable__Array * array, int32_t index, int32_t length, EventUnreliable value, IComparer_1_Photon_Bolt_EventUnreliable_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE1B0, Array_BinarySearch_66__MethodInfo); DO_APP_FUNC(0x00DD9D30, int32_t, Array_BinarySearch_67, (FileStat__Array * array, int32_t index, int32_t length, FileStat value, IComparer_1_Discord_FileStat_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE1B8, Array_BinarySearch_67__MethodInfo); DO_APP_FUNC(0x00DD9F50, int32_t, Array_BinarySearch_68, (GlyphPairAdjustmentRecord__Array * array, int32_t index, int32_t length, GlyphPairAdjustmentRecord value, IComparer_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE180, Array_BinarySearch_68__MethodInfo); DO_APP_FUNC(0x00DDA180, int32_t, Array_BinarySearch_69, (GlyphRect__Array * array, int32_t index, int32_t length, GlyphRect value, IComparer_1_UnityEngine_TextCore_GlyphRect_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE188, Array_BinarySearch_69__MethodInfo); DO_APP_FUNC(0x00DDA390, int32_t, Array_BinarySearch_70, (Guid__Array * array, int32_t index, int32_t length, Guid value, IComparer_1_System_Guid_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE190, Array_BinarySearch_70__MethodInfo); DO_APP_FUNC(0x00DDA5A0, int32_t, Array_BinarySearch_71, (InputActionSourceData__Array * array, int32_t index, int32_t length, InputActionSourceData value, IComparer_1_Rewired_InputActionSourceData_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE198, Array_BinarySearch_71__MethodInfo); DO_APP_FUNC(0x00DDA7C0, int32_t, Array_BinarySearch_72, (InputBinding__Array * array, int32_t index, int32_t length, InputBinding value, IComparer_1_UnityEngine_InputSystem_InputBinding_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE160, Array_BinarySearch_72__MethodInfo); DO_APP_FUNC(0x00DDAA10, int32_t, Array_BinarySearch_73, (InputDevice_1__Array * array, int32_t index, int32_t length, InputDevice_1 value, IComparer_1_UnityEngine_XR_InputDevice_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE168, Array_BinarySearch_73__MethodInfo); DO_APP_FUNC(0x00DDAC20, int32_t, Array_BinarySearch_74, (InputDeviceDescription__Array * array, int32_t index, int32_t length, InputDeviceDescription value, IComparer_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE170, Array_BinarySearch_74__MethodInfo); DO_APP_FUNC(0x00DDAE60, int32_t, Array_BinarySearch_75, (InputEventPtr__Array * array, int32_t index, int32_t length, InputEventPtr value, IComparer_1_UnityEngine_InputSystem_LowLevel_InputEventPtr_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE178, Array_BinarySearch_75__MethodInfo); DO_APP_FUNC(0x00DDB060, int32_t, Array_BinarySearch_76, (Int16__Array * array, int32_t index, int32_t length, int16_t value, IComparer_1_System_Int16_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE140, Array_BinarySearch_76__MethodInfo); DO_APP_FUNC(0x00DDB260, int32_t, Array_BinarySearch_77, (Int3__Array * array, int32_t index, int32_t length, Int3 value, IComparer_1_Pathfinding_Int3_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE148, Array_BinarySearch_77__MethodInfo); DO_APP_FUNC(0x00DDB480, int32_t, Array_BinarySearch_78, (Int32__Array * array, int32_t index, int32_t length, int32_t value, IComparer_1_System_Int32_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE150, Array_BinarySearch_78__MethodInfo); DO_APP_FUNC(0x00DDB680, int32_t, Array_BinarySearch_79, (Int32Enum__Enum__Array * array, int32_t index, int32_t length, Int32Enum__Enum value, IComparer_1_System_Int32Enum_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE158, Array_BinarySearch_79__MethodInfo); DO_APP_FUNC(0x00DDB880, int32_t, Array_BinarySearch_80, (Int64__Array * array, int32_t index, int32_t length, int64_t value, IComparer_1_System_Int64_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE120, Array_BinarySearch_80__MethodInfo); DO_APP_FUNC(0x00DDBA80, int32_t, Array_BinarySearch_81, (IntPoint__Array * array, int32_t index, int32_t length, IntPoint value, IComparer_1_Pathfinding_ClipperLib_IntPoint_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE128, Array_BinarySearch_81__MethodInfo); DO_APP_FUNC(0x00DDBC90, int32_t, Array_BinarySearch_82, (IntRect__Array * array, int32_t index, int32_t length, IntRect value, IComparer_1_Pathfinding_IntRect_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE130, Array_BinarySearch_82__MethodInfo); DO_APP_FUNC(0x00DDBEA0, int32_t, Array_BinarySearch_83, (InternedString__Array * array, int32_t index, int32_t length, InternedString value, IComparer_1_UnityEngine_InputSystem_Utilities_InternedString_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE138, Array_BinarySearch_83__MethodInfo); DO_APP_FUNC(0x00DDC0B0, int32_t, Array_BinarySearch_84, (InterpretedFrameInfo__Array * array, int32_t index, int32_t length, InterpretedFrameInfo value, IComparer_1_System_Linq_Expressions_Interpreter_InterpretedFrameInfo_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE100, Array_BinarySearch_84__MethodInfo); DO_APP_FUNC(0x00DDC2C0, int32_t, Array_BinarySearch_85, (IntervalTreeNode__Array * array, int32_t index, int32_t length, IntervalTreeNode value, IComparer_1_UnityEngine_Timeline_IntervalTreeNode_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE108, Array_BinarySearch_85__MethodInfo); DO_APP_FUNC(0x00DDC4E0, int32_t, Array_BinarySearch_86, (ItemDefinitionAmount__Array * array, int32_t index, int32_t length, ItemDefinitionAmount value, IComparer_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE110, Array_BinarySearch_86__MethodInfo); DO_APP_FUNC(0x00DDC700, int32_t, Array_BinarySearch_87, (KickedPlayer__Array * array, int32_t index, int32_t length, KickedPlayer value, IComparer_1_KickedPlayer_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE118, Array_BinarySearch_87__MethodInfo); DO_APP_FUNC(0x00DDC910, int32_t, Array_BinarySearch_88, (LayerMask__Array * array, int32_t index, int32_t length, LayerMask value, IComparer_1_UnityEngine_LayerMask_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE0E0, Array_BinarySearch_88__MethodInfo); DO_APP_FUNC(0x00DDCB10, int32_t, Array_BinarySearch_89, (ManipulatorActivationFilter__Array * array, int32_t index, int32_t length, ManipulatorActivationFilter value, IComparer_1_UnityEngine_UIElements_ManipulatorActivationFilter_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE0E8, Array_BinarySearch_89__MethodInfo); DO_APP_FUNC(0x00DDCD30, int32_t, Array_BinarySearch_90, (Matrix4x4__Array * array, int32_t index, int32_t length, Matrix4x4 value, IComparer_1_UnityEngine_Matrix4x4_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE0F0, Array_BinarySearch_90__MethodInfo); DO_APP_FUNC(0x00DDCF60, int32_t, Array_BinarySearch_91, (NameAndParameters__Array * array, int32_t index, int32_t length, NameAndParameters value, IComparer_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE0F8, Array_BinarySearch_91__MethodInfo); DO_APP_FUNC(0x00DDD180, int32_t, Array_BinarySearch_92, (NamedValue__Array * array, int32_t index, int32_t length, NamedValue value, IComparer_1_UnityEngine_InputSystem_Utilities_NamedValue_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE0C0, Array_BinarySearch_92__MethodInfo); DO_APP_FUNC(0x00DDD3A0, int32_t, Array_BinarySearch_93, (NetworkPropertyInfo__Array * array, int32_t index, int32_t length, NetworkPropertyInfo value, IComparer_1_Photon_Bolt_NetworkPropertyInfo_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE0C8, Array_BinarySearch_93__MethodInfo); DO_APP_FUNC(0x00DDD5C0, int32_t, Array_BinarySearch_94, (Object__Array * array, int32_t index, int32_t length, Object * value, IComparer_1_System_Object_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE0D0, Array_BinarySearch_94__MethodInfo); DO_APP_FUNC(0x00DDD7C0, int32_t, Array_BinarySearch_95, (ObjectInitializationData__Array * array, int32_t index, int32_t length, ObjectInitializationData value, IComparer_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE0D8, Array_BinarySearch_95__MethodInfo); DO_APP_FUNC(0x00DDD9E0, int32_t, Array_BinarySearch_96, (OpenChannel__Array * array, int32_t index, int32_t length, OpenChannel value, IComparer_1_Dissonance_Networking_Client_OpenChannel_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE0A0, Array_BinarySearch_96__MethodInfo); DO_APP_FUNC(0x00DDDC00, int32_t, Array_BinarySearch_97, (PacketStats__Array * array, int32_t index, int32_t length, PacketStats value, IComparer_1_Photon_Bolt_Internal_PacketStats_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE0A8, Array_BinarySearch_97__MethodInfo); DO_APP_FUNC(0x00DDDE20, int32_t, Array_BinarySearch_98, (ParticleCollisionEvent__Array * array, int32_t index, int32_t length, ParticleCollisionEvent value, IComparer_1_UnityEngine_ParticleCollisionEvent_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE0B0, Array_BinarySearch_98__MethodInfo); DO_APP_FUNC(0x00DDE050, int32_t, Array_BinarySearch_99, (Playable__Array * array, int32_t index, int32_t length, Playable value, IComparer_1_UnityEngine_Playables_Playable_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE0B8, Array_BinarySearch_99__MethodInfo); DO_APP_FUNC(0x00DDE260, int32_t, Array_BinarySearch_100, (PlayableBinding__Array * array, int32_t index, int32_t length, PlayableBinding value, IComparer_1_UnityEngine_Playables_PlayableBinding_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE080, Array_BinarySearch_100__MethodInfo); DO_APP_FUNC(0x00DDE480, int32_t, Array_BinarySearch_101, (Priority__Array * array, int32_t index, int32_t length, Priority value, IComparer_1_Photon_Bolt_Priority_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE088, Array_BinarySearch_101__MethodInfo); DO_APP_FUNC(0x00DDE6A0, int32_t, Array_BinarySearch_102, (Quaternion__Array * array, int32_t index, int32_t length, Quaternion value, IComparer_1_UnityEngine_Quaternion_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE090, Array_BinarySearch_102__MethodInfo); DO_APP_FUNC(0x00DDE8B0, int32_t, Array_BinarySearch_103, (RangePositionInfo__Array * array, int32_t index, int32_t length, RangePositionInfo value, IComparer_1_System_Xml_Schema_RangePositionInfo_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE098, Array_BinarySearch_103__MethodInfo); DO_APP_FUNC(0x00DDEAC0, int32_t, Array_BinarySearch_104, (RaycastHit__Array * array, int32_t index, int32_t length, RaycastHit value, IComparer_1_UnityEngine_RaycastHit_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE060, Array_BinarySearch_104__MethodInfo); DO_APP_FUNC(0x00DDECF0, int32_t, Array_BinarySearch_105, (RaycastHit2D__Array * array, int32_t index, int32_t length, RaycastHit2D value, IComparer_1_UnityEngine_RaycastHit2D_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE068, Array_BinarySearch_105__MethodInfo); DO_APP_FUNC(0x00DDEF10, int32_t, Array_BinarySearch_106, (RaycastResult__Array * array, int32_t index, int32_t length, RaycastResult value, IComparer_1_UnityEngine_EventSystems_RaycastResult_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE070, Array_BinarySearch_106__MethodInfo); DO_APP_FUNC(0x00DDF150, int32_t, Array_BinarySearch_107, (Rect__Array * array, int32_t index, int32_t length, Rect value, IComparer_1_UnityEngine_Rect_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE078, Array_BinarySearch_107__MethodInfo); DO_APP_FUNC(0x00DDF360, int32_t, Array_BinarySearch_108, (ReflectionProbeBlendInfo__Array * array, int32_t index, int32_t length, ReflectionProbeBlendInfo value, IComparer_1_UnityEngine_Rendering_ReflectionProbeBlendInfo_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE040, Array_BinarySearch_108__MethodInfo); DO_APP_FUNC(0x00DDF570, int32_t, Array_BinarySearch_109, (RemoteChannel__Array * array, int32_t index, int32_t length, RemoteChannel value, IComparer_1_Dissonance_RemoteChannel_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE048, Array_BinarySearch_109__MethodInfo); DO_APP_FUNC(0x00DDF790, int32_t, Array_BinarySearch_110, (RenderChainTextEntry__Array * array, int32_t index, int32_t length, RenderChainTextEntry value, IComparer_1_UnityEngine_UIElements_UIR_RenderChainTextEntry_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE050, Array_BinarySearch_110__MethodInfo); DO_APP_FUNC(0x00DDF9A0, int32_t, Array_BinarySearch_111, (RenderTargetIdentifier__Array * array, int32_t index, int32_t length, RenderTargetIdentifier value, IComparer_1_UnityEngine_Rendering_RenderTargetIdentifier_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE058, Array_BinarySearch_111__MethodInfo); DO_APP_FUNC(0x00DDFBD0, int32_t, Array_BinarySearch_112, (RendererList__Array * array, int32_t index, int32_t length, RendererList value, IComparer_1_UnityEngine_Rendering_RendererUtils_RendererList_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE020, Array_BinarySearch_112__MethodInfo); DO_APP_FUNC(0x00DDFDE0, int32_t, Array_BinarySearch_113, (RendererListHandle__Array * array, int32_t index, int32_t length, RendererListHandle value, IComparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE028, Array_BinarySearch_113__MethodInfo); DO_APP_FUNC(0x00DDFFE0, int32_t, Array_BinarySearch_114, (Resolution__Array * array, int32_t index, int32_t length, Resolution value, IComparer_1_UnityEngine_Resolution_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE030, Array_BinarySearch_114__MethodInfo); DO_APP_FUNC(0x00DE0200, int32_t, Array_BinarySearch_115, (ResourceHandle__Array * array, int32_t index, int32_t length, ResourceHandle value, IComparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE038, Array_BinarySearch_115__MethodInfo); DO_APP_FUNC(0x00DE0400, int32_t, Array_BinarySearch_116, (RoomMembership__Array * array, int32_t index, int32_t length, RoomMembership value, IComparer_1_Dissonance_RoomMembership_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE000, Array_BinarySearch_116__MethodInfo); DO_APP_FUNC(0x00DE0620, int32_t, Array_BinarySearch_117, (RuleMatcher__Array * array, int32_t index, int32_t length, RuleMatcher value, IComparer_1_UnityEngine_UIElements_RuleMatcher_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE008, Array_BinarySearch_117__MethodInfo); DO_APP_FUNC(0x00DE0830, int32_t, Array_BinarySearch_118, (SByte__Array * array, int32_t index, int32_t length, int8_t value, IComparer_1_System_SByte_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE010, Array_BinarySearch_118__MethodInfo); DO_APP_FUNC(0x00DE0A30, int32_t, Array_BinarySearch_119, (SelectorMatchRecord__Array * array, int32_t index, int32_t length, SelectorMatchRecord value, IComparer_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAE018, Array_BinarySearch_119__MethodInfo); DO_APP_FUNC(0x00DE0C50, int32_t, Array_BinarySearch_120, (Single__Array * array, int32_t index, int32_t length, float value, IComparer_1_System_Single_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADFE0, Array_BinarySearch_120__MethodInfo); DO_APP_FUNC(0x00DE0E50, int32_t, Array_BinarySearch_121, (Sku__Array * array, int32_t index, int32_t length, Sku value, IComparer_1_Discord_Sku_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADFE8, Array_BinarySearch_121__MethodInfo); DO_APP_FUNC(0x00DE1080, int32_t, Array_BinarySearch_122, (SslApplicationProtocol__Array * array, int32_t index, int32_t length, SslApplicationProtocol value, IComparer_1_System_Net_Security_SslApplicationProtocol_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADFF0, Array_BinarySearch_122__MethodInfo); DO_APP_FUNC(0x00DE1290, int32_t, Array_BinarySearch_123, (SteamItemDef_t__Array * array, int32_t index, int32_t length, SteamItemDef_t value, IComparer_1_Steamworks_SteamItemDef_t_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADFF8, Array_BinarySearch_123__MethodInfo); DO_APP_FUNC(0x00DE1490, int32_t, Array_BinarySearch_124, (SteamItemDetails_t__Array * array, int32_t index, int32_t length, SteamItemDetails_t value, IComparer_1_Steamworks_SteamItemDetails_t_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADFC0, Array_BinarySearch_124__MethodInfo); DO_APP_FUNC(0x00DE16A0, int32_t, Array_BinarySearch_125, (StylePropertyName__Array * array, int32_t index, int32_t length, StylePropertyName value, IComparer_1_UnityEngine_UIElements_StylePropertyName_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADFC8, Array_BinarySearch_125__MethodInfo); DO_APP_FUNC(0x00DE18B0, int32_t, Array_BinarySearch_126, (StylePropertyValue__Array * array, int32_t index, int32_t length, StylePropertyValue value, IComparer_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADFD0, Array_BinarySearch_126__MethodInfo); DO_APP_FUNC(0x00DE1AC0, int32_t, Array_BinarySearch_127, (StyleSelectorPart__Array * array, int32_t index, int32_t length, StyleSelectorPart value, IComparer_1_UnityEngine_UIElements_StyleSelectorPart_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADFD8, Array_BinarySearch_127__MethodInfo); DO_APP_FUNC(0x00DE1CE0, int32_t, Array_BinarySearch_128, (StyleSyntaxToken__Array * array, int32_t index, int32_t length, StyleSyntaxToken value, IComparer_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADFA0, Array_BinarySearch_128__MethodInfo); DO_APP_FUNC(0x00DE1F00, int32_t, Array_BinarySearch_129, (StyleValue__Array * array, int32_t index, int32_t length, StyleValue value, IComparer_1_UnityEngine_UIElements_StyleSheets_StyleValue_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADFA8, Array_BinarySearch_129__MethodInfo); DO_APP_FUNC(0x00DE2120, int32_t, Array_BinarySearch_130, (StyleValueManaged__Array * array, int32_t index, int32_t length, StyleValueManaged value, IComparer_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADFB0, Array_BinarySearch_130__MethodInfo); DO_APP_FUNC(0x00DE2330, int32_t, Array_BinarySearch_131, (StyleVariable__Array * array, int32_t index, int32_t length, StyleVariable value, IComparer_1_UnityEngine_UIElements_StyleVariable_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADFB8, Array_BinarySearch_131__MethodInfo); DO_APP_FUNC(0x00DE2550, int32_t, Array_BinarySearch_132, (SubMeshDescriptor__Array * array, int32_t index, int32_t length, SubMeshDescriptor value, IComparer_1_UnityEngine_Rendering_SubMeshDescriptor_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADF80, Array_BinarySearch_132__MethodInfo); DO_APP_FUNC(0x00DE2770, int32_t, Array_BinarySearch_133, (Substring__Array * array, int32_t index, int32_t length, Substring value, IComparer_1_UnityEngine_InputSystem_Utilities_Substring_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADF88, Array_BinarySearch_133__MethodInfo); DO_APP_FUNC(0x00DE2980, int32_t, Array_BinarySearch_134, (TimeSpan__Array * array, int32_t index, int32_t length, TimeSpan value, IComparer_1_System_TimeSpan_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADF90, Array_BinarySearch_134__MethodInfo); DO_APP_FUNC(0x00DE2B80, int32_t, Array_BinarySearch_135, (TimeValue__Array * array, int32_t index, int32_t length, TimeValue value, IComparer_1_UnityEngine_UIElements_TimeValue_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADF98, Array_BinarySearch_135__MethodInfo); DO_APP_FUNC(0x00DE2D80, int32_t, Array_BinarySearch_136, (TreeViewItemWrapper__Array * array, int32_t index, int32_t length, TreeViewItemWrapper value, IComparer_1_UnityEngine_UIElements_TreeViewItemWrapper_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADF60, Array_BinarySearch_136__MethodInfo); DO_APP_FUNC(0x00DE2FA0, int32_t, Array_BinarySearch_137, (TypeWrapper__Array * array, int32_t index, int32_t length, TypeWrapper value, IComparer_1_Rewired_Utils_Classes_Data_TypeWrapper_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADF68, Array_BinarySearch_137__MethodInfo); DO_APP_FUNC(0x00DE31C0, int32_t, Array_BinarySearch_138, (UICharInfo__Array * array, int32_t index, int32_t length, UICharInfo value, IComparer_1_UnityEngine_UICharInfo_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADF70, Array_BinarySearch_138__MethodInfo); DO_APP_FUNC(0x00DE33E0, int32_t, Array_BinarySearch_139, (UILineInfo__Array * array, int32_t index, int32_t length, UILineInfo value, IComparer_1_UnityEngine_UILineInfo_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADF78, Array_BinarySearch_139__MethodInfo); DO_APP_FUNC(0x00DE35F0, int32_t, Array_BinarySearch_140, (UIVertex__Array * array, int32_t index, int32_t length, UIVertex value, IComparer_1_UnityEngine_UIVertex_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADF40, Array_BinarySearch_140__MethodInfo); DO_APP_FUNC(0x00DE3860, int32_t, Array_BinarySearch_141, (UInt16__Array * array, int32_t index, int32_t length, uint16_t value, IComparer_1_System_UInt16_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADF48, Array_BinarySearch_141__MethodInfo); DO_APP_FUNC(0x00DE3A60, int32_t, Array_BinarySearch_142, (UInt32__Array * array, int32_t index, int32_t length, uint32_t value, IComparer_1_System_UInt32_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADF50, Array_BinarySearch_142__MethodInfo); DO_APP_FUNC(0x00DE3C60, int32_t, Array_BinarySearch_143, (UInt64__Array * array, int32_t index, int32_t length, uint64_t value, IComparer_1_System_UInt64_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADF58, Array_BinarySearch_143__MethodInfo); DO_APP_FUNC(0x00DE3E60, int32_t, Array_BinarySearch_144, (UVTexture__Array * array, int32_t index, int32_t length, UVTexture value, IComparer_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADF20, Array_BinarySearch_144__MethodInfo); DO_APP_FUNC(0x00DE4080, int32_t, Array_BinarySearch_145, (UdpEndPoint__Array * array, int32_t index, int32_t length, UdpEndPoint value, IComparer_1_UdpKit_UdpEndPoint_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADF28, Array_BinarySearch_145__MethodInfo); DO_APP_FUNC(0x00DE42A0, int32_t, Array_BinarySearch_146, (UdpIPv4Address__Array * array, int32_t index, int32_t length, UdpIPv4Address value, IComparer_1_UdpKit_UdpIPv4Address_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADF30, Array_BinarySearch_146__MethodInfo); DO_APP_FUNC(0x00DE44A0, int32_t, Array_BinarySearch_147, (UsageHint__Array * array, int32_t index, int32_t length, UsageHint value, IComparer_1_UnityEngine_InputSystem_XR_UsageHint_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADF38, Array_BinarySearch_147__MethodInfo); DO_APP_FUNC(0x00DE46A0, int32_t, Array_BinarySearch_148, (User__Array * array, int32_t index, int32_t length, User value, IComparer_1_Discord_User_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADF00, Array_BinarySearch_148__MethodInfo); DO_APP_FUNC(0x00DE48D0, int32_t, Array_BinarySearch_149, (Vector2__Array * array, int32_t index, int32_t length, Vector2 value, IComparer_1_UnityEngine_Vector2_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADF08, Array_BinarySearch_149__MethodInfo); DO_APP_FUNC(0x00DE4AD0, int32_t, Array_BinarySearch_150, (Vector3__Array * array, int32_t index, int32_t length, Vector3 value, IComparer_1_UnityEngine_Vector3_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADF10, Array_BinarySearch_150__MethodInfo); DO_APP_FUNC(0x00DE4CF0, int32_t, Array_BinarySearch_151, (Vector4__Array * array, int32_t index, int32_t length, Vector4 value, IComparer_1_UnityEngine_Vector4_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADF18, Array_BinarySearch_151__MethodInfo); DO_APP_FUNC(0x00DE4F00, int32_t, Array_BinarySearch_152, (VertexAttributeDescriptor__Array * array, int32_t index, int32_t length, VertexAttributeDescriptor value, IComparer_1_UnityEngine_Rendering_VertexAttributeDescriptor_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADEE0, Array_BinarySearch_152__MethodInfo); DO_APP_FUNC(0x00DE5110, int32_t, Array_BinarySearch_153, (ViewConfiguration__Array * array, int32_t index, int32_t length, ViewConfiguration value, IComparer_1_Microsoft_MixedReality_OpenXR_ViewConfiguration_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADEE8, Array_BinarySearch_153__MethodInfo); DO_APP_FUNC(0x00DE5330, int32_t, Array_BinarySearch_154, (VoicePacket__Array * array, int32_t index, int32_t length, VoicePacket value, IComparer_1_Dissonance_Networking_VoicePacket_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADEF0, Array_BinarySearch_154__MethodInfo); DO_APP_FUNC(0x00DE5570, int32_t, Array_BinarySearch_155, (VoxelContour__Array * array, int32_t index, int32_t length, VoxelContour value, IComparer_1_Pathfinding_Voxels_VoxelContour_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADEF8, Array_BinarySearch_155__MethodInfo); DO_APP_FUNC(0x00DE5790, int32_t, Array_BinarySearch_156, (Win32_IP_ADAPTER_ADDRESSES__Array * array, int32_t index, int32_t length, Win32_IP_ADAPTER_ADDRESSES value, IComparer_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADEC0, Array_BinarySearch_156__MethodInfo); DO_APP_FUNC(0x00DE5A10, int32_t, Array_BinarySearch_157, (Win32_IP_ADAPTER_INFO__Array * array, int32_t index, int32_t length, Win32_IP_ADAPTER_INFO value, IComparer_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADEC8, Array_BinarySearch_157__MethodInfo); DO_APP_FUNC(0x00DE5C90, int32_t, Array_BinarySearch_158, (X509ChainStatus__Array * array, int32_t index, int32_t length, X509ChainStatus value, IComparer_1_System_Security_Cryptography_X509Certificates_X509ChainStatus_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADED0, Array_BinarySearch_158__MethodInfo); DO_APP_FUNC(0x00DE5EA0, int32_t, Array_BinarySearch_159, (XRFeatureDescriptor__Array * array, int32_t index, int32_t length, XRFeatureDescriptor value, IComparer_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADED8, Array_BinarySearch_159__MethodInfo); DO_APP_FUNC(0x00DE60C0, int32_t, Array_BinarySearch_160, (XRNodeState__Array * array, int32_t index, int32_t length, XRNodeState value, IComparer_1_UnityEngine_XR_XRNodeState_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADEA0, Array_BinarySearch_160__MethodInfo); DO_APP_FUNC(0x00DE6310, int32_t, Array_BinarySearch_161, (AdvancedSmooth_Turn__Array * array, int32_t index, int32_t length, AdvancedSmooth_Turn value, IComparer_1_Pathfinding_AdvancedSmooth_Turn_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADEA8, Array_BinarySearch_161__MethodInfo); DO_APP_FUNC(0x00DE6520, int32_t, Array_BinarySearch_162, (AnimationOutputWeightProcessor_WeightInfo__Array * array, int32_t index, int32_t length, AnimationOutputWeightProcessor_WeightInfo value, IComparer_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADEB0, Array_BinarySearch_162__MethodInfo); DO_APP_FUNC(0x00DE6750, int32_t, Array_BinarySearch_163, (BeforeRenderHelper_OrderBlock__Array * array, int32_t index, int32_t length, BeforeRenderHelper_OrderBlock value, IComparer_1_UnityEngine_BeforeRenderHelper_OrderBlock_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADEB8, Array_BinarySearch_163__MethodInfo); DO_APP_FUNC(0x00DE6960, int32_t, Array_BinarySearch_164, (BitmapAllocator32_Page__Array * array, int32_t index, int32_t length, BitmapAllocator32_Page value, IComparer_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADE80, Array_BinarySearch_164__MethodInfo); DO_APP_FUNC(0x00DE6B60, int32_t, Array_BinarySearch_165, (Camera_RenderRequest__Array * array, int32_t index, int32_t length, Camera_RenderRequest value, IComparer_1_UnityEngine_Camera_RenderRequest_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADE88, Array_BinarySearch_165__MethodInfo); DO_APP_FUNC(0x00DE6D80, int32_t, Array_BinarySearch_166, (CameraState_CustomBlendable__Array * array, int32_t index, int32_t length, CameraState_CustomBlendable value, IComparer_1_Cinemachine_CameraState_CustomBlendable_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADE90, Array_BinarySearch_166__MethodInfo); DO_APP_FUNC(0x00DE6F90, int32_t, Array_BinarySearch_167, (CinemachineClearShot_Pair__Array * array, int32_t index, int32_t length, CinemachineClearShot_Pair value, IComparer_1_Cinemachine_CinemachineClearShot_Pair_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADE98, Array_BinarySearch_167__MethodInfo); DO_APP_FUNC(0x00DE7190, int32_t, Array_BinarySearch_168, (CinemachineStateDrivenCamera_HashPair__Array * array, int32_t index, int32_t length, CinemachineStateDrivenCamera_HashPair value, IComparer_1_Cinemachine_CinemachineStateDrivenCamera_HashPair_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADE60, Array_BinarySearch_168__MethodInfo); DO_APP_FUNC(0x00DE7390, int32_t, Array_BinarySearch_169, (ClipperLib_DoublePoint__Array * array, int32_t index, int32_t length, ClipperLib_DoublePoint value, IComparer_1_Cinemachine_ClipperLib_DoublePoint_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADE68, Array_BinarySearch_169__MethodInfo); DO_APP_FUNC(0x00DE75A0, int32_t, Array_BinarySearch_170, (ClipperLib_IntPoint__Array * array, int32_t index, int32_t length, ClipperLib_IntPoint value, IComparer_1_Cinemachine_ClipperLib_IntPoint_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADE70, Array_BinarySearch_170__MethodInfo); DO_APP_FUNC(0x00DE77B0, int32_t, Array_BinarySearch_171, (ConfinerOven_PolygonSolution__Array * array, int32_t index, int32_t length, ConfinerOven_PolygonSolution value, IComparer_1_Cinemachine_ConfinerOven_PolygonSolution_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADE78, Array_BinarySearch_171__MethodInfo); DO_APP_FUNC(0x00DE79C0, int32_t, Array_BinarySearch_172, (CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__Array * array, int32_t index, int32_t length, CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB value, IComparer_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADE40, Array_BinarySearch_172__MethodInfo); DO_APP_FUNC(0x00DE7BE0, int32_t, Array_BinarySearch_173, (DelayedActionManager_DelegateInfo__Array * array, int32_t index, int32_t length, DelayedActionManager_DelegateInfo value, IComparer_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADE48, Array_BinarySearch_173__MethodInfo); DO_APP_FUNC(0x00DE7E00, int32_t, Array_BinarySearch_174, (EventDispatcher_CallbackWrapper__Array * array, int32_t index, int32_t length, EventDispatcher_CallbackWrapper value, IComparer_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADE50, Array_BinarySearch_174__MethodInfo); DO_APP_FUNC(0x00DE8010, int32_t, Array_BinarySearch_175, (EventDispatcher_EventListener__Array * array, int32_t index, int32_t length, EventDispatcher_EventListener value, IComparer_1_Photon_Bolt_EventDispatcher_EventListener_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADE58, Array_BinarySearch_175__MethodInfo); DO_APP_FUNC(0x00DE8230, int32_t, Array_BinarySearch_176, (EventQueue_NetworkEvent__Array * array, int32_t index, int32_t length, EventQueue_NetworkEvent value, IComparer_1_Dissonance_Networking_Client_EventQueue_NetworkEvent_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADE20, Array_BinarySearch_176__MethodInfo); DO_APP_FUNC(0x00DE84B0, int32_t, Array_BinarySearch_177, (FocusController_FocusedElement__Array * array, int32_t index, int32_t length, FocusController_FocusedElement value, IComparer_1_UnityEngine_UIElements_FocusController_FocusedElement_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADE28, Array_BinarySearch_177__MethodInfo); DO_APP_FUNC(0x00DE86C0, int32_t, Array_BinarySearch_178, (Funnel_PathPart__Array * array, int32_t index, int32_t length, Funnel_PathPart value, IComparer_1_Pathfinding_Funnel_PathPart_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADE30, Array_BinarySearch_178__MethodInfo); DO_APP_FUNC(0x00DE88E0, int32_t, Array_BinarySearch_179, (HID_HIDCollectionDescriptor__Array * array, int32_t index, int32_t length, HID_HIDCollectionDescriptor value, IComparer_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADE38, Array_BinarySearch_179__MethodInfo); DO_APP_FUNC(0x00DE8B00, int32_t, Array_BinarySearch_180, (HID_HIDElementDescriptor__Array * array, int32_t index, int32_t length, HID_HIDElementDescriptor value, IComparer_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADE00, Array_BinarySearch_180__MethodInfo); DO_APP_FUNC(0x00DE8D40, int32_t, Array_BinarySearch_181, (HIDParser_HIDReportData__Array * array, int32_t index, int32_t length, HIDParser_HIDReportData value, IComparer_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADE08, Array_BinarySearch_181__MethodInfo); DO_APP_FUNC(0x00DE8F60, int32_t, Array_BinarySearch_182, (HairDesignerGeneratorFurShellBase_BufferData__Array * array, int32_t index, int32_t length, HairDesignerGeneratorFurShellBase_BufferData value, IComparer_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADE10, Array_BinarySearch_182__MethodInfo); DO_APP_FUNC(0x00DE9160, int32_t, Array_BinarySearch_183, (InputActionMap_BindingOverrideJson__Array * array, int32_t index, int32_t length, InputActionMap_BindingOverrideJson value, IComparer_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADE18, Array_BinarySearch_183__MethodInfo); DO_APP_FUNC(0x00DE9390, int32_t, Array_BinarySearch_184, (InputControlLayout_ControlItem__Array * array, int32_t index, int32_t length, InputControlLayout_ControlItem value, IComparer_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADDE0, Array_BinarySearch_184__MethodInfo); DO_APP_FUNC(0x00DE9630, int32_t, Array_BinarySearch_185, (InternalTreeView_TreeViewItemWrapper__Array * array, int32_t index, int32_t length, InternalTreeView_TreeViewItemWrapper value, IComparer_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADDE8, Array_BinarySearch_185__MethodInfo); DO_APP_FUNC(0x00DE9840, int32_t, Array_BinarySearch_186, (JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__Array * array, int32_t index, int32_t length, JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV value, IComparer_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADDF0, Array_BinarySearch_186__MethodInfo); DO_APP_FUNC(0x00DE9A50, int32_t, Array_BinarySearch_187, (JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__Array * array, int32_t index, int32_t length, JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb value, IComparer_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADDF8, Array_BinarySearch_187__MethodInfo); DO_APP_FUNC(0x00DE9C90, int32_t, Array_BinarySearch_188, (JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__Array * array, int32_t index, int32_t length, JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux value, IComparer_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADDC0, Array_BinarySearch_188__MethodInfo); DO_APP_FUNC(0x00DE9EA0, int32_t, Array_BinarySearch_189, (JsonParser_JsonValue__Array * array, int32_t index, int32_t length, JsonParser_JsonValue value, IComparer_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADDC8, Array_BinarySearch_189__MethodInfo); DO_APP_FUNC(0x00DEA0E0, int32_t, Array_BinarySearch_190, (Logs_LogMessage__Array * array, int32_t index, int32_t length, Logs_LogMessage value, IComparer_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADDD0, Array_BinarySearch_190__MethodInfo); DO_APP_FUNC(0x00DEA2F0, int32_t, Array_BinarySearch_191, (MagicLightProbes_VolumeParameters__Array * array, int32_t index, int32_t length, MagicLightProbes_VolumeParameters value, IComparer_1_MagicLightProbes_MagicLightProbes_VolumeParameters_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADDD8, Array_BinarySearch_191__MethodInfo); DO_APP_FUNC(0x00DEA510, int32_t, Array_BinarySearch_192, (NolanBehaviour_OverlappedCollider__Array * array, int32_t index, int32_t length, NolanBehaviour_OverlappedCollider value, IComparer_1_NolanBehaviour_OverlappedCollider_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADDA0, Array_BinarySearch_192__MethodInfo); DO_APP_FUNC(0x00DEA720, int32_t, Array_BinarySearch_193, (OpenXRInput_SerializedBinding__Array * array, int32_t index, int32_t length, OpenXRInput_SerializedBinding value, IComparer_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADDA8, Array_BinarySearch_193__MethodInfo); DO_APP_FUNC(0x00DEA930, int32_t, Array_BinarySearch_194, (PackedPlayModeBuildLogs_RuntimeBuildLog__Array * array, int32_t index, int32_t length, PackedPlayModeBuildLogs_RuntimeBuildLog value, IComparer_1_PackedPlayModeBuildLogs_RuntimeBuildLog_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADDB0, Array_BinarySearch_194__MethodInfo); DO_APP_FUNC(0x00DEAB40, int32_t, Array_BinarySearch_195, (ParticleSystem_Particle__Array * array, int32_t index, int32_t length, ParticleSystem_Particle value, IComparer_1_UnityEngine_ParticleSystem_Particle_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADDB8, Array_BinarySearch_195__MethodInfo); DO_APP_FUNC(0x00DEADC0, int32_t, Array_BinarySearch_196, (ProbeBrickIndex_Brick__Array * array, int32_t index, int32_t length, ProbeBrickIndex_Brick value, IComparer_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADD80, Array_BinarySearch_196__MethodInfo); DO_APP_FUNC(0x00DEAFD0, int32_t, Array_BinarySearch_197, (ProbeBrickIndex_ReservedBrick__Array * array, int32_t index, int32_t length, ProbeBrickIndex_ReservedBrick value, IComparer_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADD88, Array_BinarySearch_197__MethodInfo); DO_APP_FUNC(0x00DEB1F0, int32_t, Array_BinarySearch_198, (ProbeBrickIndex_VoxelMeta__Array * array, int32_t index, int32_t length, ProbeBrickIndex_VoxelMeta value, IComparer_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADD90, Array_BinarySearch_198__MethodInfo); DO_APP_FUNC(0x00DEB400, int32_t, Array_BinarySearch_199, (ProbeBrickPool_BrickChunkAlloc__Array * array, int32_t index, int32_t length, ProbeBrickPool_BrickChunkAlloc value, IComparer_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADD98, Array_BinarySearch_199__MethodInfo); DO_APP_FUNC(0x00DEB620, int32_t, Array_BinarySearch_200, (ProbeVolumePerSceneData_SerializableAssetItem__Array * array, int32_t index, int32_t length, ProbeVolumePerSceneData_SerializableAssetItem value, IComparer_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADD60, Array_BinarySearch_200__MethodInfo); DO_APP_FUNC(0x00DEB830, int32_t, Array_BinarySearch_201, (ProbeVolumeSceneData_SerializableBoundItem__Array * array, int32_t index, int32_t length, ProbeVolumeSceneData_SerializableBoundItem value, IComparer_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADD68, Array_BinarySearch_201__MethodInfo); DO_APP_FUNC(0x00DEBA50, int32_t, Array_BinarySearch_202, (ProbeVolumeSceneData_SerializableHasPVItem__Array * array, int32_t index, int32_t length, ProbeVolumeSceneData_SerializableHasPVItem value, IComparer_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADD70, Array_BinarySearch_202__MethodInfo); DO_APP_FUNC(0x00DEBC60, int32_t, Array_BinarySearch_203, (ProbeVolumeSceneData_SerializablePVBakeSettings__Array * array, int32_t index, int32_t length, ProbeVolumeSceneData_SerializablePVBakeSettings value, IComparer_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADD78, Array_BinarySearch_203__MethodInfo); DO_APP_FUNC(0x00DEBE90, int32_t, Array_BinarySearch_204, (ProbeVolumeSceneData_SerializablePVProfile__Array * array, int32_t index, int32_t length, ProbeVolumeSceneData_SerializablePVProfile value, IComparer_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADD40, Array_BinarySearch_204__MethodInfo); DO_APP_FUNC(0x00DEC0A0, int32_t, Array_BinarySearch_205, (RegexCharClass_SingleRange__Array * array, int32_t index, int32_t length, RegexCharClass_SingleRange value, IComparer_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADD48, Array_BinarySearch_205__MethodInfo); DO_APP_FUNC(0x00DEC2A0, int32_t, Array_BinarySearch_206, (RenderChain_RenderNodeData__Array * array, int32_t index, int32_t length, RenderChain_RenderNodeData value, IComparer_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADD50, Array_BinarySearch_206__MethodInfo); DO_APP_FUNC(0x00DEC4F0, int32_t, Array_BinarySearch_207, (RenderGraphDebugData_PassDebugData__Array * array, int32_t index, int32_t length, RenderGraphDebugData_PassDebugData value, IComparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADD58, Array_BinarySearch_207__MethodInfo); DO_APP_FUNC(0x00DEC710, int32_t, Array_BinarySearch_208, (RenderGraphDebugData_ResourceDebugData__Array * array, int32_t index, int32_t length, RenderGraphDebugData_ResourceDebugData value, IComparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADD20, Array_BinarySearch_208__MethodInfo); DO_APP_FUNC(0x00DEC940, int32_t, Array_BinarySearch_209, (ResourceManager_DeferredCallbackRegisterRequest__Array * array, int32_t index, int32_t length, ResourceManager_DeferredCallbackRegisterRequest value, IComparer_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADD28, Array_BinarySearch_209__MethodInfo); DO_APP_FUNC(0x00DECB50, int32_t, Array_BinarySearch_210, (RetainedGizmos_MeshWithHash__Array * array, int32_t index, int32_t length, RetainedGizmos_MeshWithHash value, IComparer_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADD30, Array_BinarySearch_210__MethodInfo); DO_APP_FUNC(0x00DECD70, int32_t, Array_BinarySearch_211, (TemplateAsset_AttributeOverride__Array * array, int32_t index, int32_t length, TemplateAsset_AttributeOverride value, IComparer_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADD38, Array_BinarySearch_211__MethodInfo); DO_APP_FUNC(0x00DECF90, int32_t, Array_BinarySearch_212, (TextSettings_FontReferenceMap__Array * array, int32_t index, int32_t length, TextSettings_FontReferenceMap value, IComparer_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADD00, Array_BinarySearch_212__MethodInfo); DO_APP_FUNC(0x00DED1A0, int32_t, Array_BinarySearch_213, (TextureBlitter_BlitInfo__Array * array, int32_t index, int32_t length, TextureBlitter_BlitInfo value, IComparer_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADD08, Array_BinarySearch_213__MethodInfo); DO_APP_FUNC(0x00DED3E0, int32_t, Array_BinarySearch_214, (TexturePacker_JsonArray_Frame__Array * array, int32_t index, int32_t length, TexturePacker_JsonArray_Frame value, IComparer_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADD10, Array_BinarySearch_214__MethodInfo); DO_APP_FUNC(0x00DED610, int32_t, Array_BinarySearch_215, (TextureRegistry_TextureInfo__Array * array, int32_t index, int32_t length, TextureRegistry_TextureInfo value, IComparer_1_UnityEngine_UIElements_TextureRegistry_TextureInfo_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADD18, Array_BinarySearch_215__MethodInfo); DO_APP_FUNC(0x00DED820, int32_t, Array_BinarySearch_216, (TimeNotificationBehaviour_NotificationEntry__Array * array, int32_t index, int32_t length, TimeNotificationBehaviour_NotificationEntry value, IComparer_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADCE0, Array_BinarySearch_216__MethodInfo); DO_APP_FUNC(0x00DEDA40, int32_t, Array_BinarySearch_217, (TrackedDeviceRaycaster_RaycastHitData__Array * array, int32_t index, int32_t length, TrackedDeviceRaycaster_RaycastHitData value, IComparer_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADCE8, Array_BinarySearch_217__MethodInfo); DO_APP_FUNC(0x00DEDC60, int32_t, Array_BinarySearch_218, (TrackedPoseDriverDataDescription_PoseData__Array * array, int32_t index, int32_t length, TrackedPoseDriverDataDescription_PoseData value, IComparer_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADCF0, Array_BinarySearch_218__MethodInfo); DO_APP_FUNC(0x00DEDE70, int32_t, Array_BinarySearch_219, (TreeView_TreeViewItemWrapper__Array * array, int32_t index, int32_t length, TreeView_TreeViewItemWrapper value, IComparer_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADCF8, Array_BinarySearch_219__MethodInfo); DO_APP_FUNC(0x00DEE080, int32_t, Array_BinarySearch_220, (TreeViewReorderableDragAndDropController_TreeItemState__Array * array, int32_t index, int32_t length, TreeViewReorderableDragAndDropController_TreeItemState value, IComparer_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADCB8, Array_BinarySearch_220__MethodInfo); DO_APP_FUNC(0x00DEE280, int32_t, Array_BinarySearch_221, (UIRStylePainter_Entry__Array * array, int32_t index, int32_t length, UIRStylePainter_Entry value, IComparer_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADCC8, Array_BinarySearch_221__MethodInfo); DO_APP_FUNC(0x00DEE4D0, int32_t, Array_BinarySearch_222, (UIRenderDevice_AllocToFree__Array * array, int32_t index, int32_t length, UIRenderDevice_AllocToFree value, IComparer_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADCD0, Array_BinarySearch_222__MethodInfo); DO_APP_FUNC(0x00DEE700, int32_t, Array_BinarySearch_223, (UIRenderDevice_AllocToUpdate__Array * array, int32_t index, int32_t length, UIRenderDevice_AllocToUpdate value, IComparer_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADCD8, Array_BinarySearch_223__MethodInfo); DO_APP_FUNC(0x00DEE940, int32_t, Array_BinarySearch_224, (UnitySynchronizationContext_WorkRequest__Array * array, int32_t index, int32_t length, UnitySynchronizationContext_WorkRequest value, IComparer_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADC90, Array_BinarySearch_224__MethodInfo); DO_APP_FUNC(0x00DEEB60, int32_t, Array_BinarySearch_225, (VisualTreeAsset_SlotDefinition__Array * array, int32_t index, int32_t length, VisualTreeAsset_SlotDefinition value, IComparer_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADC98, Array_BinarySearch_225__MethodInfo); DO_APP_FUNC(0x00DEED70, int32_t, Array_BinarySearch_226, (VisualTreeAsset_SlotUsageEntry__Array * array, int32_t index, int32_t length, VisualTreeAsset_SlotUsageEntry value, IComparer_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADCA0, Array_BinarySearch_226__MethodInfo); DO_APP_FUNC(0x00DEEF80, int32_t, Array_BinarySearch_227, (VisualTreeAsset_UsingEntry__Array * array, int32_t index, int32_t length, VisualTreeAsset_UsingEntry value, IComparer_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADCB0, Array_BinarySearch_227__MethodInfo); DO_APP_FUNC(0x00DEF1A0, int32_t, Array_BinarySearch_228, (XmlSchemaObjectTable_XmlSchemaObjectEntry__Array * array, int32_t index, int32_t length, XmlSchemaObjectTable_XmlSchemaObjectEntry value, IComparer_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADC60, Array_BinarySearch_228__MethodInfo); DO_APP_FUNC(0x00DEF3B0, int32_t, Array_BinarySearch_229, (ftLightmaps_LightmapAdditionalData__Array * array, int32_t index, int32_t length, ftLightmaps_LightmapAdditionalData value, IComparer_1_ftLightmaps_LightmapAdditionalData_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADC68, Array_BinarySearch_229__MethodInfo); DO_APP_FUNC(0x00DEF5D0, int32_t, Array_BinarySearch_230, (gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__Array * array, int32_t index, int32_t length, gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy value, IComparer_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADC70, Array_BinarySearch_230__MethodInfo); DO_APP_FUNC(0x00DEF7D0, int32_t, Array_BinarySearch_231, (DebugUI_Foldout_ContextMenuItem__Array * array, int32_t index, int32_t length, DebugUI_Foldout_ContextMenuItem value, IComparer_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADC80, Array_BinarySearch_231__MethodInfo); DO_APP_FUNC(0x00DEF9E0, int32_t, Array_BinarySearch_232, (InputControlLayout_Collection_LayoutMatcher__Array * array, int32_t index, int32_t length, InputControlLayout_Collection_LayoutMatcher value, IComparer_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADC38, Array_BinarySearch_232__MethodInfo); DO_APP_FUNC(0x00DEFC00, int32_t, Array_BinarySearch_233, (InstructionList_DebugView_InstructionView__Array * array, int32_t index, int32_t length, InstructionList_DebugView_InstructionView value, IComparer_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADC40, Array_BinarySearch_233__MethodInfo); DO_APP_FUNC(0x00DEFE20, int32_t, Array_BinarySearch_234, (PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__Array * array, int32_t index, int32_t length, PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb value, IComparer_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADC48, Array_BinarySearch_234__MethodInfo); DO_APP_FUNC(0x00DF0040, int32_t, Array_BinarySearch_235, (TargetPositionCache_CacheCurve_Item__Array * array, int32_t index, int32_t length, TargetPositionCache_CacheCurve_Item value, IComparer_1_Cinemachine_TargetPositionCache_CacheCurve_Item_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADC50, Array_BinarySearch_235__MethodInfo); DO_APP_FUNC(0x00DF0260, int32_t, Array_BinarySearch_236, (TargetPositionCache_CacheEntry_RecordingItem__Array * array, int32_t index, int32_t length, TargetPositionCache_CacheEntry_RecordingItem value, IComparer_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADC18, Array_BinarySearch_236__MethodInfo); DO_APP_FUNC(0x00DF0480, Int32__Array *, Array_ConvertAll, (Byte__Array * array, Converter_2_Byte_Int32_ * converter, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFE28, Array_ConvertAll__MethodInfo); DO_APP_FUNC(0x00DF0600, Object__Array *, Array_ConvertAll_1, (Object__Array * array, Converter_2_Object_Object_ * converter, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADC28, Array_ConvertAll_1__MethodInfo); DO_APP_FUNC(0x00454890, KeyValuePair_2_System_DateTime_System_UInt32___Array *, Array_Empty, (MethodInfo * method)); DO_APP_FUNC(0x00454890, KeyValuePair_2_System_Int32_System_Object___Array *, Array_Empty_1, (MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C99E30, Array_Empty_1__MethodInfo); @@ -200126,17 +219591,22 @@ DO_APP_FUNC_METHODINFO(0x03C96F48, Array_Empty_8__MethodInfo); DO_APP_FUNC(0x00454890, Char__Array *, Array_Empty_9, (MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C96420, Array_Empty_9__MethodInfo); DO_APP_FUNC(0x00454890, CustomAttributeNamedArgument__Array *, Array_Empty_10, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC468, Array_Empty_10__MethodInfo); DO_APP_FUNC(0x00454890, CustomAttributeTypedArgument__Array *, Array_Empty_11, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC470, Array_Empty_11__MethodInfo); DO_APP_FUNC(0x00454890, Int2__Array *, Array_Empty_12, (MethodInfo * method)); DO_APP_FUNC(0x00454890, Int3__Array *, Array_Empty_13, (MethodInfo * method)); DO_APP_FUNC(0x00454890, Int32__Array *, Array_Empty_14, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF0570, Array_Empty_14__MethodInfo); DO_APP_FUNC(0x00454890, Int32Enum__Enum__Array *, Array_Empty_15, (MethodInfo * method)); DO_APP_FUNC(0x00454890, LocalDefinition__Array *, Array_Empty_16, (MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C991C0, Array_Empty_16__MethodInfo); DO_APP_FUNC(0x00454890, Matrix4x4__Array *, Array_Empty_17, (MethodInfo * method)); DO_APP_FUNC(0x00454890, Object__Array *, Array_Empty_18, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D14A08, Array_Empty_18__MethodInfo); DO_APP_FUNC(0x00454890, OriginalMaterialValue__Array *, Array_Empty_19, (MethodInfo * method)); DO_APP_FUNC(0x00454890, ParameterModifier__Array *, Array_Empty_20, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08EE0, Array_Empty_20__MethodInfo); DO_APP_FUNC(0x00454890, Rect__Array *, Array_Empty_21, (MethodInfo * method)); DO_APP_FUNC(0x00454890, SpeechSession__Array *, Array_Empty_22, (MethodInfo * method)); DO_APP_FUNC(0x00454890, TextureId__Array *, Array_Empty_23, (MethodInfo * method)); @@ -200161,266 +219631,525 @@ DO_APP_FUNC(0x00454890, StyleVariableResolver_ResolveContext__Array *, Array_Emp DO_APP_FUNC(0x00454890, XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__Array *, Array_Empty_39, (MethodInfo * method)); DO_APP_FUNC(0x00DF07D0, bool, Array_Exists, (Object__Array * array, Predicate_1_Object_ * match, MethodInfo * method)); DO_APP_FUNC(0x00DF07F0, void, Array_Fill, (Object__Array * array, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADC30, Array_Fill__MethodInfo); DO_APP_FUNC(0x00DF08D0, void, Array_Fill_1, (Object__Array * array, Object * value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADC00, Array_Fill_1__MethodInfo); DO_APP_FUNC(0x00DF0AC0, Object *, Array_Find, (Object__Array * array, Predicate_1_Object_ * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADC08, Array_Find__MethodInfo); DO_APP_FUNC(0x00DF0C00, HID_HIDElementDescriptor, Array_Find_1, (HID_HIDElementDescriptor__Array * array, Predicate_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADC10, Array_Find_1__MethodInfo); DO_APP_FUNC(0x00DF0DE0, Object__Array *, Array_FindAll, (Object__Array * array, Predicate_1_Object_ * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADBE8, Array_FindAll__MethodInfo); DO_APP_FUNC(0x00DF1000, int32_t, Array_FindIndex, (Int32__Array * array, Predicate_1_Int32_ * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2D98, Array_FindIndex__MethodInfo); DO_APP_FUNC(0x00DF1090, int32_t, Array_FindIndex_1, (Object__Array * array, Predicate_1_Object_ * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADBF0, Array_FindIndex_1__MethodInfo); DO_APP_FUNC(0x00DF1120, int32_t, Array_FindIndex_2, (Object__Array * array, int32_t startIndex, Predicate_1_Object_ * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADBF8, Array_FindIndex_2__MethodInfo); DO_APP_FUNC(0x00DF11B0, int32_t, Array_FindIndex_3, (Int32__Array * array, int32_t startIndex, int32_t count, Predicate_1_Int32_ * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADBC0, Array_FindIndex_3__MethodInfo); DO_APP_FUNC(0x00DF13F0, int32_t, Array_FindIndex_4, (Object__Array * array, int32_t startIndex, int32_t count, Predicate_1_Object_ * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADBC8, Array_FindIndex_4__MethodInfo); DO_APP_FUNC(0x00DF1630, Object *, Array_FindLast, (Object__Array * array, Predicate_1_Object_ * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADBD8, Array_FindLast__MethodInfo); DO_APP_FUNC(0x00DF1760, int32_t, Array_FindLastIndex, (Object__Array * array, Predicate_1_Object_ * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADBE0, Array_FindLastIndex__MethodInfo); DO_APP_FUNC(0x00DF17F0, int32_t, Array_FindLastIndex_1, (Object__Array * array, int32_t startIndex, Predicate_1_Object_ * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADB98, Array_FindLastIndex_1__MethodInfo); DO_APP_FUNC(0x00DF1870, int32_t, Array_FindLastIndex_2, (Object__Array * array, int32_t startIndex, int32_t count, Predicate_1_Object_ * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADBA8, Array_FindLastIndex_2__MethodInfo); DO_APP_FUNC(0x00DF1B20, void, Array_ForEach, (Object__Array * array, Action_1_Object_ * action, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CADBB0, Array_ForEach__MethodInfo); DO_APP_FUNC(0x00ECA3A0, int32_t, Array_IndexOf_3, (Guid__Array * array, Guid value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06F18, Array_IndexOf_3__MethodInfo); DO_APP_FUNC(0x00ECA430, int32_t, Array_IndexOf_4, (Int32__Array * array, int32_t value, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C93248, Array_IndexOf_4__MethodInfo); DO_APP_FUNC(0x00ECA4C0, int32_t, Array_IndexOf_5, (Int32Enum__Enum__Array * array, Int32Enum__Enum value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06F10, Array_IndexOf_5__MethodInfo); DO_APP_FUNC(0x00ECA550, int32_t, Array_IndexOf_6, (Int64__Array * array, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06F08, Array_IndexOf_6__MethodInfo); DO_APP_FUNC(0x00ECA5E0, int32_t, Array_IndexOf_7, (Object__Array * array, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06EE0, Array_IndexOf_7__MethodInfo); DO_APP_FUNC(0x00ECA670, int32_t, Array_IndexOf_8, (Object__Array * array, Object * value, int32_t startIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06ED8, Array_IndexOf_8__MethodInfo); DO_APP_FUNC(0x00ECA700, int32_t, Array_IndexOf_9, (ArraySegment_1_Byte___Array * array, ArraySegment_1_Byte_ value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06ED0, Array_IndexOf_9__MethodInfo); DO_APP_FUNC(0x00ECA890, int32_t, Array_IndexOf_10, (AsyncOperationHandle_1_System_Object___Array * array, AsyncOperationHandle_1_System_Object_ value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06EC8, Array_IndexOf_10__MethodInfo); DO_APP_FUNC(0x00ECAA30, int32_t, Array_IndexOf_11, (VoiceSender_1_TPeer_ChannelDelta_Dissonance_Integrations_PhotonBolt_BoltPeer___Array * array, VoiceSender_1_TPeer_ChannelDelta_Dissonance_Integrations_PhotonBolt_BoltPeer_ value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06F00, Array_IndexOf_11__MethodInfo); DO_APP_FUNC(0x00ECABD0, int32_t, Array_IndexOf_12, (IntervalTree_1_T_Entry_System_Object___Array * array, IntervalTree_1_T_Entry_System_Object_ value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06EF8, Array_IndexOf_12__MethodInfo); DO_APP_FUNC(0x00ECAD70, int32_t, Array_IndexOf_13, (IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object___Array * array, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object_ value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06EF0, Array_IndexOf_13__MethodInfo); DO_APP_FUNC(0x00ECAF00, int32_t, Array_IndexOf_14, (IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object___Array * array, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object_ value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06EE8, Array_IndexOf_14__MethodInfo); DO_APP_FUNC(0x00ECB090, int32_t, Array_IndexOf_15, (IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Array * array, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06EA0, Array_IndexOf_15__MethodInfo); DO_APP_FUNC(0x00ECB230, int32_t, Array_IndexOf_16, (KeyValuePair_2_System_DateTime_System_UInt32___Array * array, KeyValuePair_2_System_DateTime_System_UInt32_ value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06E98, Array_IndexOf_16__MethodInfo); DO_APP_FUNC(0x00ECB3C0, int32_t, Array_IndexOf_17, (KeyValuePair_2_System_Guid_System_Object___Array * array, KeyValuePair_2_System_Guid_System_Object_ value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06E90, Array_IndexOf_17__MethodInfo); DO_APP_FUNC(0x00ECB560, int32_t, Array_IndexOf_18, (KeyValuePair_2_System_Int32_System_Int32___Array * array, KeyValuePair_2_System_Int32_System_Int32_ value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06E88, Array_IndexOf_18__MethodInfo); DO_APP_FUNC(0x00ECB6E0, int32_t, Array_IndexOf_19, (KeyValuePair_2_System_Int32_System_Object___Array * array, KeyValuePair_2_System_Int32_System_Object_ value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06EC0, Array_IndexOf_19__MethodInfo); DO_APP_FUNC(0x00ECB870, int32_t, Array_IndexOf_20, (KeyValuePair_2_System_Int32Enum_System_Object___Array * array, KeyValuePair_2_System_Int32Enum_System_Object_ value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06EB8, Array_IndexOf_20__MethodInfo); DO_APP_FUNC(0x00ECBA00, int32_t, Array_IndexOf_21, (KeyValuePair_2_System_Object_System_ArraySegment_1___Array * array, KeyValuePair_2_System_Object_System_ArraySegment_1_ value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06EB0, Array_IndexOf_21__MethodInfo); DO_APP_FUNC(0x00ECBBA0, int32_t, Array_IndexOf_22, (KeyValuePair_2_System_Object_System_Char___Array * array, KeyValuePair_2_System_Object_System_Char_ value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06EA8, Array_IndexOf_22__MethodInfo); DO_APP_FUNC(0x00ECBD30, int32_t, Array_IndexOf_23, (KeyValuePair_2_System_Object_System_Object___Array * array, KeyValuePair_2_System_Object_System_Object_ value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06E60, Array_IndexOf_23__MethodInfo); DO_APP_FUNC(0x00ECBEC0, int32_t, Array_IndexOf_24, (KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Array * array, KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06E58, Array_IndexOf_24__MethodInfo); DO_APP_FUNC(0x00ECC090, int32_t, Array_IndexOf_25, (KeyValuePair_2_UnityEngine_PropertyName_System_Object___Array * array, KeyValuePair_2_UnityEngine_PropertyName_System_Object_ value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06E50, Array_IndexOf_25__MethodInfo); DO_APP_FUNC(0x00ECC220, int32_t, Array_IndexOf_26, (KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer___Array * array, KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer_ value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06E48, Array_IndexOf_26__MethodInfo); DO_APP_FUNC(0x00ECC3B0, int32_t, Array_IndexOf_27, (KeyValuePair_2_System_UInt16_System_Object___Array * array, KeyValuePair_2_System_UInt16_System_Object_ value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06E80, Array_IndexOf_27__MethodInfo); DO_APP_FUNC(0x00ECC540, int32_t, Array_IndexOf_28, (KeyValuePair_2_System_UInt64_System_Object___Array * array, KeyValuePair_2_System_UInt64_System_Object_ value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06E78, Array_IndexOf_28__MethodInfo); DO_APP_FUNC(0x00ECC6D0, int32_t, Array_IndexOf_29, (KeyValuePair_2_UnityEngine_Vector3_System_Int32___Array * array, KeyValuePair_2_UnityEngine_Vector3_System_Int32_ value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06E70, Array_IndexOf_29__MethodInfo); DO_APP_FUNC(0x00ECC860, int32_t, Array_IndexOf_30, (NativeArray_1_System_UInt16___Array * array, NativeArray_1_System_UInt16_ value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06E68, Array_IndexOf_30__MethodInfo); DO_APP_FUNC(0x00ECC9F0, int32_t, Array_IndexOf_31, (NativeArray_1_UnityEngine_UIElements_Vertex___Array * array, NativeArray_1_UnityEngine_UIElements_Vertex_ value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06E20, Array_IndexOf_31__MethodInfo); DO_APP_FUNC(0x00ECCB80, int32_t, Array_IndexOf_32, (RenderGraphResourcePool_1_Type_ResourceLogInfo_System_Object___Array * array, RenderGraphResourcePool_1_Type_ResourceLogInfo_System_Object_ value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06E18, Array_IndexOf_32__MethodInfo); DO_APP_FUNC(0x00ECCD10, int32_t, Array_IndexOf_33, (STuple_2_System_Object_System_Object___Array * array, STuple_2_System_Object_System_Object_ value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06E10, Array_IndexOf_33__MethodInfo); DO_APP_FUNC(0x00ECCEA0, int32_t, Array_IndexOf_34, (ValueTuple_2_Int32_Object___Array * array, ValueTuple_2_Int32_Object_ value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06E08, Array_IndexOf_34__MethodInfo); DO_APP_FUNC(0x00ECD030, int32_t, Array_IndexOf_35, (ValueTuple_2_Int32_UnityEngine_Vector2Int___Array * array, ValueTuple_2_Int32_UnityEngine_Vector2Int_ value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06E40, Array_IndexOf_35__MethodInfo); DO_APP_FUNC(0x00ECD1D0, int32_t, Array_IndexOf_36, (ValueTuple_2_IntPtr_Object___Array * array, ValueTuple_2_IntPtr_Object_ value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06E38, Array_IndexOf_36__MethodInfo); DO_APP_FUNC(0x00ECD360, int32_t, Array_IndexOf_37, (ValueTuple_2_Object_ValueTuple_2_Object_Int32___Array * array, ValueTuple_2_Object_ValueTuple_2_Object_Int32_ value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06E30, Array_IndexOf_37__MethodInfo); DO_APP_FUNC(0x00ECD500, int32_t, Array_IndexOf_38, (ValueTuple_2_Object_Int32___Array * array, ValueTuple_2_Object_Int32_ value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06E28, Array_IndexOf_38__MethodInfo); DO_APP_FUNC(0x00ECD690, int32_t, Array_IndexOf_39, (ValueTuple_2_Object_Object___Array * array, ValueTuple_2_Object_Object_ value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06DE0, Array_IndexOf_39__MethodInfo); DO_APP_FUNC(0x00ECD820, int32_t, Array_IndexOf_40, (ValueTuple_2_UnityEngine_Vector3Int_Object___Array * array, ValueTuple_2_UnityEngine_Vector3Int_Object_ value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06DD8, Array_IndexOf_40__MethodInfo); DO_APP_FUNC(0x00ECD9C0, int32_t, Array_IndexOf_41, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel___Array * array, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_ value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06DD0, Array_IndexOf_41__MethodInfo); DO_APP_FUNC(0x00ECDB80, int32_t, Array_IndexOf_42, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership___Array * array, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_ value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06DC8, Array_IndexOf_42__MethodInfo); DO_APP_FUNC(0x00ECDD30, int32_t, Array_IndexOf_43, (AnimatorClipInfo__Array * array, AnimatorClipInfo value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06E00, Array_IndexOf_43__MethodInfo); DO_APP_FUNC(0x00ECDEB0, int32_t, Array_IndexOf_44, (AsyncOperationHandle__Array * array, AsyncOperationHandle value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06DF8, Array_IndexOf_44__MethodInfo); DO_APP_FUNC(0x00ECE050, int32_t, Array_IndexOf_45, (BoltPeer__Array * array, BoltPeer value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06DF0, Array_IndexOf_45__MethodInfo); DO_APP_FUNC(0x00ECE1D0, int32_t, Array_IndexOf_46, (BoltPhysicsHit__Array * array, BoltPhysicsHit value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06DE8, Array_IndexOf_46__MethodInfo); DO_APP_FUNC(0x00ECE370, int32_t, Array_IndexOf_47, (BoneWeight__Array * array, BoneWeight value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06DA0, Array_IndexOf_47__MethodInfo); DO_APP_FUNC(0x00ECE510, int32_t, Array_IndexOf_48, (Boolean__Array * array, bool value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06D98, Array_IndexOf_48__MethodInfo); DO_APP_FUNC(0x00ECE690, int32_t, Array_IndexOf_49, (Byte__Array * array, uint8_t value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06D90, Array_IndexOf_49__MethodInfo); DO_APP_FUNC(0x00ECE810, int32_t, Array_IndexOf_50, (CancellationToken__Array * array, CancellationToken value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06D88, Array_IndexOf_50__MethodInfo); DO_APP_FUNC(0x00ECE990, int32_t, Array_IndexOf_51, (Char__Array * array, uint16_t value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06DC0, Array_IndexOf_51__MethodInfo); DO_APP_FUNC(0x00ECEB10, int32_t, Array_IndexOf_52, (ClientInfo__Array * array, ClientInfo value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06DB8, Array_IndexOf_52__MethodInfo); DO_APP_FUNC(0x00ECECB0, int32_t, Array_IndexOf_53, (Color__Array * array, Color value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06DB0, Array_IndexOf_53__MethodInfo); DO_APP_FUNC(0x00ECEE40, int32_t, Array_IndexOf_54, (Color32__Array * array, Color32 value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06DA8, Array_IndexOf_54__MethodInfo); DO_APP_FUNC(0x00ECEFC0, int32_t, Array_IndexOf_55, (CombineInstance__Array * array, CombineInstance value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06D60, Array_IndexOf_55__MethodInfo); DO_APP_FUNC(0x00ECF1A0, int32_t, Array_IndexOf_56, (ComputedTransitionProperty__Array * array, ComputedTransitionProperty value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06D58, Array_IndexOf_56__MethodInfo); DO_APP_FUNC(0x00ECF340, int32_t, Array_IndexOf_57, (Connection__Array * array, Connection value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06D50, Array_IndexOf_57__MethodInfo); DO_APP_FUNC(0x00ECF4D0, int32_t, Array_IndexOf_58, (ControllerPollingInfo__Array * array, ControllerPollingInfo value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06D48, Array_IndexOf_58__MethodInfo); DO_APP_FUNC(0x00ECF690, int32_t, Array_IndexOf_59, (ControllerTemplateElementTarget__Array * array, ControllerTemplateElementTarget value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06D80, Array_IndexOf_59__MethodInfo); DO_APP_FUNC(0x00ECF820, int32_t, Array_IndexOf_60, (CurveSample__Array * array, CurveSample value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06D78, Array_IndexOf_60__MethodInfo); DO_APP_FUNC(0x00ECF9F0, int32_t, Array_IndexOf_61, (DateTime__Array * array, DateTime value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06D70, Array_IndexOf_61__MethodInfo); DO_APP_FUNC(0x00ECFB70, int32_t, Array_IndexOf_62, (DateTimeOffset__Array * array, DateTimeOffset value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06D68, Array_IndexOf_62__MethodInfo); DO_APP_FUNC(0x00ECFD00, int32_t, Array_IndexOf_63, (Decimal__Array * array, Decimal value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06D20, Array_IndexOf_63__MethodInfo); DO_APP_FUNC(0x00ECFE90, int32_t, Array_IndexOf_64, (DiagnosticEvent__Array * array, DiagnosticEvent value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06D18, Array_IndexOf_64__MethodInfo); DO_APP_FUNC(0x00ED0030, int32_t, Array_IndexOf_65, (Double__Array * array, double value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06D10, Array_IndexOf_65__MethodInfo); DO_APP_FUNC(0x00ED01B0, int32_t, Array_IndexOf_66, (EasingFunction__Array * array, EasingFunction value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06D08, Array_IndexOf_66__MethodInfo); DO_APP_FUNC(0x00ED0330, int32_t, Array_IndexOf_67, (ElementAssignmentConflictInfo__Array * array, ElementAssignmentConflictInfo value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06D40, Array_IndexOf_67__MethodInfo); DO_APP_FUNC(0x00ED04E0, int32_t, Array_IndexOf_68, (Entitlement__Array * array, Entitlement value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06D38, Array_IndexOf_68__MethodInfo); DO_APP_FUNC(0x00ED0680, int32_t, Array_IndexOf_69, (EventReliable__Array * array, EventReliable value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06D30, Array_IndexOf_69__MethodInfo); DO_APP_FUNC(0x00ED0810, int32_t, Array_IndexOf_70, (EventUnreliable__Array * array, EventUnreliable value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06D28, Array_IndexOf_70__MethodInfo); DO_APP_FUNC(0x00ED09B0, int32_t, Array_IndexOf_71, (FileStat__Array * array, FileStat value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06CE0, Array_IndexOf_71__MethodInfo); DO_APP_FUNC(0x00ED0B50, int32_t, Array_IndexOf_72, (GlyphPairAdjustmentRecord__Array * array, GlyphPairAdjustmentRecord value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06CD8, Array_IndexOf_72__MethodInfo); DO_APP_FUNC(0x00ED0D00, int32_t, Array_IndexOf_73, (GlyphRect__Array * array, GlyphRect value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06CD0, Array_IndexOf_73__MethodInfo); DO_APP_FUNC(0x00ED0E90, int32_t, Array_IndexOf_74, (Guid__Array * array, Guid value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06CC8, Array_IndexOf_74__MethodInfo); DO_APP_FUNC(0x00ED1020, int32_t, Array_IndexOf_75, (InputActionSourceData__Array * array, InputActionSourceData value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06D00, Array_IndexOf_75__MethodInfo); DO_APP_FUNC(0x00ED11C0, int32_t, Array_IndexOf_76, (InputBinding__Array * array, InputBinding value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06CF8, Array_IndexOf_76__MethodInfo); DO_APP_FUNC(0x00ED1390, int32_t, Array_IndexOf_77, (InputDevice_1__Array * array, InputDevice_1 value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06CF0, Array_IndexOf_77__MethodInfo); DO_APP_FUNC(0x00ED1520, int32_t, Array_IndexOf_78, (InputDeviceDescription__Array * array, InputDeviceDescription value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06CE8, Array_IndexOf_78__MethodInfo); DO_APP_FUNC(0x00ED16E0, int32_t, Array_IndexOf_79, (InputEventPtr__Array * array, InputEventPtr value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06CA0, Array_IndexOf_79__MethodInfo); DO_APP_FUNC(0x00ED1860, int32_t, Array_IndexOf_80, (Int16__Array * array, int16_t value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06C98, Array_IndexOf_80__MethodInfo); DO_APP_FUNC(0x00ED19E0, int32_t, Array_IndexOf_81, (Int2__Array * array, Int2 value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06C90, Array_IndexOf_81__MethodInfo); DO_APP_FUNC(0x00ED1B60, int32_t, Array_IndexOf_82, (Int3__Array * array, Int3 value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06C88, Array_IndexOf_82__MethodInfo); DO_APP_FUNC(0x00ED1D00, int32_t, Array_IndexOf_83, (Int32__Array * array, int32_t value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06CC0, Array_IndexOf_83__MethodInfo); DO_APP_FUNC(0x00ED1E80, int32_t, Array_IndexOf_84, (Int32Enum__Enum__Array * array, Int32Enum__Enum value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06CB8, Array_IndexOf_84__MethodInfo); DO_APP_FUNC(0x00ED2000, int32_t, Array_IndexOf_85, (Int64__Array * array, int64_t value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06CB0, Array_IndexOf_85__MethodInfo); DO_APP_FUNC(0x00ED2180, int32_t, Array_IndexOf_86, (IntPoint__Array * array, IntPoint value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06CA8, Array_IndexOf_86__MethodInfo); DO_APP_FUNC(0x00ED2310, int32_t, Array_IndexOf_87, (IntRect__Array * array, IntRect value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06C60, Array_IndexOf_87__MethodInfo); DO_APP_FUNC(0x00ED24A0, int32_t, Array_IndexOf_88, (InternedString__Array * array, InternedString value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06C58, Array_IndexOf_88__MethodInfo); DO_APP_FUNC(0x00ED2630, int32_t, Array_IndexOf_89, (InterpretedFrameInfo__Array * array, InterpretedFrameInfo value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06C50, Array_IndexOf_89__MethodInfo); DO_APP_FUNC(0x00ED27C0, int32_t, Array_IndexOf_90, (IntervalTreeNode__Array * array, IntervalTreeNode value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06C48, Array_IndexOf_90__MethodInfo); DO_APP_FUNC(0x00ED2960, int32_t, Array_IndexOf_91, (ItemDefinitionAmount__Array * array, ItemDefinitionAmount value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06C80, Array_IndexOf_91__MethodInfo); DO_APP_FUNC(0x00ED2B00, int32_t, Array_IndexOf_92, (KickedPlayer__Array * array, KickedPlayer value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06C78, Array_IndexOf_92__MethodInfo); DO_APP_FUNC(0x00ED2C90, int32_t, Array_IndexOf_93, (LayerMask__Array * array, LayerMask value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06C70, Array_IndexOf_93__MethodInfo); DO_APP_FUNC(0x00ED2E10, int32_t, Array_IndexOf_94, (ManipulatorActivationFilter__Array * array, ManipulatorActivationFilter value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06C68, Array_IndexOf_94__MethodInfo); DO_APP_FUNC(0x00ED2FB0, int32_t, Array_IndexOf_95, (Matrix4x4__Array * array, Matrix4x4 value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06C20, Array_IndexOf_95__MethodInfo); DO_APP_FUNC(0x00ED3170, int32_t, Array_IndexOf_96, (NameAndParameters__Array * array, NameAndParameters value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06C18, Array_IndexOf_96__MethodInfo); DO_APP_FUNC(0x00ED3310, int32_t, Array_IndexOf_97, (NamedValue__Array * array, NamedValue value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06C10, Array_IndexOf_97__MethodInfo); DO_APP_FUNC(0x00ED34B0, int32_t, Array_IndexOf_98, (NetworkPropertyInfo__Array * array, NetworkPropertyInfo value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06C08, Array_IndexOf_98__MethodInfo); DO_APP_FUNC(0x00ED3650, int32_t, Array_IndexOf_99, (Object__Array * array, Object * value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06C40, Array_IndexOf_99__MethodInfo); DO_APP_FUNC(0x00ED37D0, int32_t, Array_IndexOf_100, (ObjectInitializationData__Array * array, ObjectInitializationData value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06C38, Array_IndexOf_100__MethodInfo); DO_APP_FUNC(0x00ED3970, int32_t, Array_IndexOf_101, (OpenChannel__Array * array, OpenChannel value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06C30, Array_IndexOf_101__MethodInfo); DO_APP_FUNC(0x00ED3B10, int32_t, Array_IndexOf_102, (PacketStats__Array * array, PacketStats value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06C28, Array_IndexOf_102__MethodInfo); DO_APP_FUNC(0x00ED3CB0, int32_t, Array_IndexOf_103, (ParticleCollisionEvent__Array * array, ParticleCollisionEvent value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06BE0, Array_IndexOf_103__MethodInfo); DO_APP_FUNC(0x00ED3E60, int32_t, Array_IndexOf_104, (Playable__Array * array, Playable value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06BD8, Array_IndexOf_104__MethodInfo); DO_APP_FUNC(0x00ED3FF0, int32_t, Array_IndexOf_105, (PlayableBinding__Array * array, PlayableBinding value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06BD0, Array_IndexOf_105__MethodInfo); DO_APP_FUNC(0x00ED4190, int32_t, Array_IndexOf_106, (Priority__Array * array, Priority value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06BC8, Array_IndexOf_106__MethodInfo); DO_APP_FUNC(0x00ED4330, int32_t, Array_IndexOf_107, (Quaternion__Array * array, Quaternion value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06C00, Array_IndexOf_107__MethodInfo); DO_APP_FUNC(0x00ED44C0, int32_t, Array_IndexOf_108, (RangePositionInfo__Array * array, RangePositionInfo value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06BF8, Array_IndexOf_108__MethodInfo); DO_APP_FUNC(0x00ED4650, int32_t, Array_IndexOf_109, (RaycastHit__Array * array, RaycastHit value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06BF0, Array_IndexOf_109__MethodInfo); DO_APP_FUNC(0x00ED4800, int32_t, Array_IndexOf_110, (RaycastHit2D__Array * array, RaycastHit2D value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06BE8, Array_IndexOf_110__MethodInfo); DO_APP_FUNC(0x00ED49A0, int32_t, Array_IndexOf_111, (RaycastResult__Array * array, RaycastResult value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06BA0, Array_IndexOf_111__MethodInfo); DO_APP_FUNC(0x00ED4B70, int32_t, Array_IndexOf_112, (Rect__Array * array, Rect value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06B98, Array_IndexOf_112__MethodInfo); DO_APP_FUNC(0x00ED4D00, int32_t, Array_IndexOf_113, (ReflectionProbeBlendInfo__Array * array, ReflectionProbeBlendInfo value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06B90, Array_IndexOf_113__MethodInfo); DO_APP_FUNC(0x00ED4E90, int32_t, Array_IndexOf_114, (RemoteChannel__Array * array, RemoteChannel value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06B88, Array_IndexOf_114__MethodInfo); DO_APP_FUNC(0x00ED5030, int32_t, Array_IndexOf_115, (RenderChainTextEntry__Array * array, RenderChainTextEntry value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06BC0, Array_IndexOf_115__MethodInfo); DO_APP_FUNC(0x00ED51C0, int32_t, Array_IndexOf_116, (RenderTargetIdentifier__Array * array, RenderTargetIdentifier value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06BB8, Array_IndexOf_116__MethodInfo); DO_APP_FUNC(0x00ED5370, int32_t, Array_IndexOf_117, (RendererList__Array * array, RendererList value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06BB0, Array_IndexOf_117__MethodInfo); DO_APP_FUNC(0x00ED5500, int32_t, Array_IndexOf_118, (RendererListHandle__Array * array, RendererListHandle value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06BA8, Array_IndexOf_118__MethodInfo); DO_APP_FUNC(0x00ED5680, int32_t, Array_IndexOf_119, (Resolution__Array * array, Resolution value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06B60, Array_IndexOf_119__MethodInfo); DO_APP_FUNC(0x00ED5820, int32_t, Array_IndexOf_120, (ResourceHandle__Array * array, ResourceHandle value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06B58, Array_IndexOf_120__MethodInfo); DO_APP_FUNC(0x00ED59A0, int32_t, Array_IndexOf_121, (RoomMembership__Array * array, RoomMembership value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06B50, Array_IndexOf_121__MethodInfo); DO_APP_FUNC(0x00ED5B40, int32_t, Array_IndexOf_122, (RuleMatcher__Array * array, RuleMatcher value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06B48, Array_IndexOf_122__MethodInfo); DO_APP_FUNC(0x00ED5CD0, int32_t, Array_IndexOf_123, (SByte__Array * array, int8_t value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06B80, Array_IndexOf_123__MethodInfo); DO_APP_FUNC(0x00ED5E50, int32_t, Array_IndexOf_124, (SelectorMatchRecord__Array * array, SelectorMatchRecord value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06B78, Array_IndexOf_124__MethodInfo); DO_APP_FUNC(0x00ED5FF0, int32_t, Array_IndexOf_125, (Single__Array * array, float value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06B70, Array_IndexOf_125__MethodInfo); DO_APP_FUNC(0x00ED6170, int32_t, Array_IndexOf_126, (Sku__Array * array, Sku value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06B68, Array_IndexOf_126__MethodInfo); DO_APP_FUNC(0x00ED6320, int32_t, Array_IndexOf_127, (SpeechSession__Array * array, SpeechSession value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06B20, Array_IndexOf_127__MethodInfo); DO_APP_FUNC(0x00ED64E0, int32_t, Array_IndexOf_128, (SslApplicationProtocol__Array * array, SslApplicationProtocol value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06B18, Array_IndexOf_128__MethodInfo); DO_APP_FUNC(0x00ED6670, int32_t, Array_IndexOf_129, (SteamItemDef_t__Array * array, SteamItemDef_t value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06B10, Array_IndexOf_129__MethodInfo); DO_APP_FUNC(0x00ED67F0, int32_t, Array_IndexOf_130, (SteamItemDetails_t__Array * array, SteamItemDetails_t value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06B08, Array_IndexOf_130__MethodInfo); DO_APP_FUNC(0x00ED6980, int32_t, Array_IndexOf_131, (StylePropertyName__Array * array, StylePropertyName value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06B40, Array_IndexOf_131__MethodInfo); DO_APP_FUNC(0x00ED6B10, int32_t, Array_IndexOf_132, (StylePropertyValue__Array * array, StylePropertyValue value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06B38, Array_IndexOf_132__MethodInfo); DO_APP_FUNC(0x00ED6CA0, int32_t, Array_IndexOf_133, (StyleSelectorPart__Array * array, StyleSelectorPart value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06B30, Array_IndexOf_133__MethodInfo); DO_APP_FUNC(0x00ED6E40, int32_t, Array_IndexOf_134, (StyleSyntaxToken__Array * array, StyleSyntaxToken value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06B28, Array_IndexOf_134__MethodInfo); DO_APP_FUNC(0x00ED6FE0, int32_t, Array_IndexOf_135, (StyleValue__Array * array, StyleValue value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06AE0, Array_IndexOf_135__MethodInfo); DO_APP_FUNC(0x00ED7180, int32_t, Array_IndexOf_136, (StyleValueManaged__Array * array, StyleValueManaged value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06AD8, Array_IndexOf_136__MethodInfo); DO_APP_FUNC(0x00ED7310, int32_t, Array_IndexOf_137, (StyleVariable__Array * array, StyleVariable value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06AD0, Array_IndexOf_137__MethodInfo); DO_APP_FUNC(0x00ED74B0, int32_t, Array_IndexOf_138, (SubMeshDescriptor__Array * array, SubMeshDescriptor value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06AC8, Array_IndexOf_138__MethodInfo); DO_APP_FUNC(0x00ED7650, int32_t, Array_IndexOf_139, (Substring__Array * array, Substring value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06B00, Array_IndexOf_139__MethodInfo); DO_APP_FUNC(0x00ED77E0, int32_t, Array_IndexOf_140, (TimeSpan__Array * array, TimeSpan value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06AF8, Array_IndexOf_140__MethodInfo); DO_APP_FUNC(0x00ED7960, int32_t, Array_IndexOf_141, (TimeValue__Array * array, TimeValue value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06AF0, Array_IndexOf_141__MethodInfo); DO_APP_FUNC(0x00ED7AE0, int32_t, Array_IndexOf_142, (TreeViewItemWrapper__Array * array, TreeViewItemWrapper value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06AE8, Array_IndexOf_142__MethodInfo); DO_APP_FUNC(0x00ED7C80, int32_t, Array_IndexOf_143, (TypeWrapper__Array * array, TypeWrapper value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06AA0, Array_IndexOf_143__MethodInfo); DO_APP_FUNC(0x00ED7E20, int32_t, Array_IndexOf_144, (UICharInfo__Array * array, UICharInfo value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06A98, Array_IndexOf_144__MethodInfo); DO_APP_FUNC(0x00ED7FC0, int32_t, Array_IndexOf_145, (UILineInfo__Array * array, UILineInfo value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06A90, Array_IndexOf_145__MethodInfo); DO_APP_FUNC(0x00ED8150, int32_t, Array_IndexOf_146, (UIVertex__Array * array, UIVertex value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06A88, Array_IndexOf_146__MethodInfo); DO_APP_FUNC(0x00ED8340, int32_t, Array_IndexOf_147, (UInt16__Array * array, uint16_t value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06AC0, Array_IndexOf_147__MethodInfo); DO_APP_FUNC(0x00ED84C0, int32_t, Array_IndexOf_148, (UInt32__Array * array, uint32_t value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06AB8, Array_IndexOf_148__MethodInfo); DO_APP_FUNC(0x00ED8640, int32_t, Array_IndexOf_149, (UInt64__Array * array, uint64_t value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06AB0, Array_IndexOf_149__MethodInfo); DO_APP_FUNC(0x00ED87C0, int32_t, Array_IndexOf_150, (UVTexture__Array * array, UVTexture value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06AA8, Array_IndexOf_150__MethodInfo); DO_APP_FUNC(0x00ED8960, int32_t, Array_IndexOf_151, (UdpEndPoint__Array * array, UdpEndPoint value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06A60, Array_IndexOf_151__MethodInfo); DO_APP_FUNC(0x00ED8B00, int32_t, Array_IndexOf_152, (UdpEvent__Array * array, UdpEvent value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06A58, Array_IndexOf_152__MethodInfo); DO_APP_FUNC(0x00ED8CA0, int32_t, Array_IndexOf_153, (UdpIPv4Address__Array * array, UdpIPv4Address value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06A50, Array_IndexOf_153__MethodInfo); DO_APP_FUNC(0x00ED8E20, int32_t, Array_IndexOf_154, (UsageHint__Array * array, UsageHint value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06A48, Array_IndexOf_154__MethodInfo); DO_APP_FUNC(0x00ED8FA0, int32_t, Array_IndexOf_155, (User__Array * array, User value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06A80, Array_IndexOf_155__MethodInfo); DO_APP_FUNC(0x00ED9150, int32_t, Array_IndexOf_156, (Vector2__Array * array, Vector2 value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06A78, Array_IndexOf_156__MethodInfo); DO_APP_FUNC(0x00ED92D0, int32_t, Array_IndexOf_157, (Vector3__Array * array, Vector3 value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06A70, Array_IndexOf_157__MethodInfo); DO_APP_FUNC(0x00ED9470, int32_t, Array_IndexOf_158, (Vector4__Array * array, Vector4 value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06A68, Array_IndexOf_158__MethodInfo); DO_APP_FUNC(0x00ED9600, int32_t, Array_IndexOf_159, (VertexAttributeDescriptor__Array * array, VertexAttributeDescriptor value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06A20, Array_IndexOf_159__MethodInfo); DO_APP_FUNC(0x00ED9790, int32_t, Array_IndexOf_160, (ViewConfiguration__Array * array, ViewConfiguration value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06A18, Array_IndexOf_160__MethodInfo); DO_APP_FUNC(0x00ED9930, int32_t, Array_IndexOf_161, (VoicePacket__Array * array, VoicePacket value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06A10, Array_IndexOf_161__MethodInfo); DO_APP_FUNC(0x00ED9AF0, int32_t, Array_IndexOf_162, (VoxelContour__Array * array, VoxelContour value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06A08, Array_IndexOf_162__MethodInfo); DO_APP_FUNC(0x00ED9C90, int32_t, Array_IndexOf_163, (Win32_IP_ADAPTER_ADDRESSES__Array * array, Win32_IP_ADAPTER_ADDRESSES value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06A40, Array_IndexOf_163__MethodInfo); DO_APP_FUNC(0x00ED9EA0, int32_t, Array_IndexOf_164, (Win32_IP_ADAPTER_INFO__Array * array, Win32_IP_ADAPTER_INFO value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06A38, Array_IndexOf_164__MethodInfo); DO_APP_FUNC(0x00EDA0A0, int32_t, Array_IndexOf_165, (X509ChainStatus__Array * array, X509ChainStatus value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06A30, Array_IndexOf_165__MethodInfo); DO_APP_FUNC(0x00EDA230, int32_t, Array_IndexOf_166, (XRFeatureDescriptor__Array * array, XRFeatureDescriptor value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06A28, Array_IndexOf_166__MethodInfo); DO_APP_FUNC(0x00EDA3D0, int32_t, Array_IndexOf_167, (XRNodeState__Array * array, XRNodeState value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D069E0, Array_IndexOf_167__MethodInfo); DO_APP_FUNC(0x00EDA5A0, int32_t, Array_IndexOf_168, (AdvancedSmooth_Turn__Array * array, AdvancedSmooth_Turn value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D069D8, Array_IndexOf_168__MethodInfo); DO_APP_FUNC(0x00EDA730, int32_t, Array_IndexOf_169, (AnimationOutputWeightProcessor_WeightInfo__Array * array, AnimationOutputWeightProcessor_WeightInfo value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D069D0, Array_IndexOf_169__MethodInfo); DO_APP_FUNC(0x00EDA8E0, int32_t, Array_IndexOf_170, (BeforeRenderHelper_OrderBlock__Array * array, BeforeRenderHelper_OrderBlock value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D069C8, Array_IndexOf_170__MethodInfo); DO_APP_FUNC(0x00EDAA70, int32_t, Array_IndexOf_171, (BitmapAllocator32_Page__Array * array, BitmapAllocator32_Page value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06A00, Array_IndexOf_171__MethodInfo); DO_APP_FUNC(0x00EDABF0, int32_t, Array_IndexOf_172, (Camera_RenderRequest__Array * array, Camera_RenderRequest value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D069F8, Array_IndexOf_172__MethodInfo); DO_APP_FUNC(0x00EDAD90, int32_t, Array_IndexOf_173, (CameraState_CustomBlendable__Array * array, CameraState_CustomBlendable value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D069F0, Array_IndexOf_173__MethodInfo); DO_APP_FUNC(0x00EDAF20, int32_t, Array_IndexOf_174, (CinemachineClearShot_Pair__Array * array, CinemachineClearShot_Pair value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D069E8, Array_IndexOf_174__MethodInfo); DO_APP_FUNC(0x00EDB0A0, int32_t, Array_IndexOf_175, (CinemachineStateDrivenCamera_HashPair__Array * array, CinemachineStateDrivenCamera_HashPair value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D069A0, Array_IndexOf_175__MethodInfo); DO_APP_FUNC(0x00EDB220, int32_t, Array_IndexOf_176, (ClipperLib_DoublePoint__Array * array, ClipperLib_DoublePoint value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06998, Array_IndexOf_176__MethodInfo); DO_APP_FUNC(0x00EDB3B0, int32_t, Array_IndexOf_177, (ClipperLib_IntPoint__Array * array, ClipperLib_IntPoint value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06990, Array_IndexOf_177__MethodInfo); DO_APP_FUNC(0x00EDB540, int32_t, Array_IndexOf_178, (ConfinerOven_PolygonSolution__Array * array, ConfinerOven_PolygonSolution value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06988, Array_IndexOf_178__MethodInfo); DO_APP_FUNC(0x00EDB6D0, int32_t, Array_IndexOf_179, (CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__Array * array, CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D069C0, Array_IndexOf_179__MethodInfo); DO_APP_FUNC(0x00EDB870, int32_t, Array_IndexOf_180, (DelayedActionManager_DelegateInfo__Array * array, DelayedActionManager_DelegateInfo value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D069B8, Array_IndexOf_180__MethodInfo); DO_APP_FUNC(0x00EDBA10, int32_t, Array_IndexOf_181, (EventDispatcher_CallbackWrapper__Array * array, EventDispatcher_CallbackWrapper value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D069B0, Array_IndexOf_181__MethodInfo); DO_APP_FUNC(0x00EDBBA0, int32_t, Array_IndexOf_182, (EventDispatcher_EventListener__Array * array, EventDispatcher_EventListener value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D069A8, Array_IndexOf_182__MethodInfo); DO_APP_FUNC(0x00EDBD40, int32_t, Array_IndexOf_183, (EventDispatcher_EventRecord__Array * array, EventDispatcher_EventRecord value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06960, Array_IndexOf_183__MethodInfo); DO_APP_FUNC(0x00EDBED0, int32_t, Array_IndexOf_184, (EventQueue_NetworkEvent__Array * array, EventQueue_NetworkEvent value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06958, Array_IndexOf_184__MethodInfo); DO_APP_FUNC(0x00EDC0D0, int32_t, Array_IndexOf_185, (FocusController_FocusedElement__Array * array, FocusController_FocusedElement value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06950, Array_IndexOf_185__MethodInfo); DO_APP_FUNC(0x00EDC260, int32_t, Array_IndexOf_186, (Funnel_PathPart__Array * array, Funnel_PathPart value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06948, Array_IndexOf_186__MethodInfo); DO_APP_FUNC(0x00EDC400, int32_t, Array_IndexOf_187, (GraphUpdateProcessor_GUOSingle__Array * array, GraphUpdateProcessor_GUOSingle value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06980, Array_IndexOf_187__MethodInfo); DO_APP_FUNC(0x00EDC5A0, int32_t, Array_IndexOf_188, (HID_HIDCollectionDescriptor__Array * array, HID_HIDCollectionDescriptor value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06978, Array_IndexOf_188__MethodInfo); DO_APP_FUNC(0x00EDC740, int32_t, Array_IndexOf_189, (HID_HIDElementDescriptor__Array * array, HID_HIDElementDescriptor value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06970, Array_IndexOf_189__MethodInfo); DO_APP_FUNC(0x00EDC910, int32_t, Array_IndexOf_190, (HIDParser_HIDReportData__Array * array, HIDParser_HIDReportData value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06968, Array_IndexOf_190__MethodInfo); DO_APP_FUNC(0x00EDCAB0, int32_t, Array_IndexOf_191, (HairDesignerGeneratorFurShellBase_BufferData__Array * array, HairDesignerGeneratorFurShellBase_BufferData value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06920, Array_IndexOf_191__MethodInfo); DO_APP_FUNC(0x00EDCC30, int32_t, Array_IndexOf_192, (InputActionMap_BindingOverrideJson__Array * array, InputActionMap_BindingOverrideJson value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06918, Array_IndexOf_192__MethodInfo); DO_APP_FUNC(0x00EDCDE0, int32_t, Array_IndexOf_193, (InputControlLayout_ControlItem__Array * array, InputControlLayout_ControlItem value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06910, Array_IndexOf_193__MethodInfo); DO_APP_FUNC(0x00EDD000, int32_t, Array_IndexOf_194, (InternalTreeView_TreeViewItemWrapper__Array * array, InternalTreeView_TreeViewItemWrapper value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06908, Array_IndexOf_194__MethodInfo); DO_APP_FUNC(0x00EDD190, int32_t, Array_IndexOf_195, (JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__Array * array, JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06940, Array_IndexOf_195__MethodInfo); DO_APP_FUNC(0x00EDD320, int32_t, Array_IndexOf_196, (JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__Array * array, JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06938, Array_IndexOf_196__MethodInfo); DO_APP_FUNC(0x00EDD4F0, int32_t, Array_IndexOf_197, (JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__Array * array, JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06930, Array_IndexOf_197__MethodInfo); DO_APP_FUNC(0x00EDD680, int32_t, Array_IndexOf_198, (JsonParser_JsonValue__Array * array, JsonParser_JsonValue value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06928, Array_IndexOf_198__MethodInfo); DO_APP_FUNC(0x00EDD850, int32_t, Array_IndexOf_199, (Logs_LogMessage_1__Array * array, Logs_LogMessage_1 value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D068E0, Array_IndexOf_199__MethodInfo); DO_APP_FUNC(0x00EDD9E0, int32_t, Array_IndexOf_200, (Logs_LogMessage__Array * array, Logs_LogMessage value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D068D8, Array_IndexOf_200__MethodInfo); DO_APP_FUNC(0x00EDDB70, int32_t, Array_IndexOf_201, (MagicLightProbes_VolumeParameters__Array * array, MagicLightProbes_VolumeParameters value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D068D0, Array_IndexOf_201__MethodInfo); DO_APP_FUNC(0x00EDDD10, int32_t, Array_IndexOf_202, (NolanBehaviour_OverlappedCollider__Array * array, NolanBehaviour_OverlappedCollider value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D068C8, Array_IndexOf_202__MethodInfo); DO_APP_FUNC(0x00EDDEA0, int32_t, Array_IndexOf_203, (OpenXRInput_SerializedBinding__Array * array, OpenXRInput_SerializedBinding value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06900, Array_IndexOf_203__MethodInfo); DO_APP_FUNC(0x00EDE030, int32_t, Array_IndexOf_204, (PackedPlayModeBuildLogs_RuntimeBuildLog__Array * array, PackedPlayModeBuildLogs_RuntimeBuildLog value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D068F8, Array_IndexOf_204__MethodInfo); DO_APP_FUNC(0x00EDE1C0, int32_t, Array_IndexOf_205, (ParticleSystem_Particle__Array * array, ParticleSystem_Particle value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D068F0, Array_IndexOf_205__MethodInfo); DO_APP_FUNC(0x00EDE3C0, int32_t, Array_IndexOf_206, (ProbeBrickIndex_Brick__Array * array, ProbeBrickIndex_Brick value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D068E8, Array_IndexOf_206__MethodInfo); DO_APP_FUNC(0x00EDE550, int32_t, Array_IndexOf_207, (ProbeBrickIndex_ReservedBrick__Array * array, ProbeBrickIndex_ReservedBrick value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D068A0, Array_IndexOf_207__MethodInfo); DO_APP_FUNC(0x00EDE6F0, int32_t, Array_IndexOf_208, (ProbeBrickIndex_VoxelMeta__Array * array, ProbeBrickIndex_VoxelMeta value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06898, Array_IndexOf_208__MethodInfo); DO_APP_FUNC(0x00EDE880, int32_t, Array_IndexOf_209, (ProbeBrickPool_BrickChunkAlloc__Array * array, ProbeBrickPool_BrickChunkAlloc value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06890, Array_IndexOf_209__MethodInfo); DO_APP_FUNC(0x00EDEA20, int32_t, Array_IndexOf_210, (ProbeVolumePerSceneData_SerializableAssetItem__Array * array, ProbeVolumePerSceneData_SerializableAssetItem value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06888, Array_IndexOf_210__MethodInfo); DO_APP_FUNC(0x00EDEBB0, int32_t, Array_IndexOf_211, (ProbeVolumeSceneData_SerializableBoundItem__Array * array, ProbeVolumeSceneData_SerializableBoundItem value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D068C0, Array_IndexOf_211__MethodInfo); DO_APP_FUNC(0x00EDED50, int32_t, Array_IndexOf_212, (ProbeVolumeSceneData_SerializableHasPVItem__Array * array, ProbeVolumeSceneData_SerializableHasPVItem value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D068B8, Array_IndexOf_212__MethodInfo); DO_APP_FUNC(0x00EDEEE0, int32_t, Array_IndexOf_213, (ProbeVolumeSceneData_SerializablePVBakeSettings__Array * array, ProbeVolumeSceneData_SerializablePVBakeSettings value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D068B0, Array_IndexOf_213__MethodInfo); DO_APP_FUNC(0x00EDF090, int32_t, Array_IndexOf_214, (ProbeVolumeSceneData_SerializablePVProfile__Array * array, ProbeVolumeSceneData_SerializablePVProfile value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D068A8, Array_IndexOf_214__MethodInfo); DO_APP_FUNC(0x00EDF220, int32_t, Array_IndexOf_215, (RegexCharClass_SingleRange__Array * array, RegexCharClass_SingleRange value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06860, Array_IndexOf_215__MethodInfo); DO_APP_FUNC(0x00EDF3A0, int32_t, Array_IndexOf_216, (RenderChain_RenderNodeData__Array * array, RenderChain_RenderNodeData value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06858, Array_IndexOf_216__MethodInfo); DO_APP_FUNC(0x00EDF570, int32_t, Array_IndexOf_217, (RenderGraphDebugData_PassDebugData__Array * array, RenderGraphDebugData_PassDebugData value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06850, Array_IndexOf_217__MethodInfo); DO_APP_FUNC(0x00EDF710, int32_t, Array_IndexOf_218, (RenderGraphDebugData_ResourceDebugData__Array * array, RenderGraphDebugData_ResourceDebugData value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06848, Array_IndexOf_218__MethodInfo); DO_APP_FUNC(0x00EDF8C0, int32_t, Array_IndexOf_219, (ResourceManager_DeferredCallbackRegisterRequest__Array * array, ResourceManager_DeferredCallbackRegisterRequest value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06880, Array_IndexOf_219__MethodInfo); DO_APP_FUNC(0x00EDFA50, int32_t, Array_IndexOf_220, (RetainedGizmos_MeshWithHash__Array * array, RetainedGizmos_MeshWithHash value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06878, Array_IndexOf_220__MethodInfo); DO_APP_FUNC(0x00EDFBF0, int32_t, Array_IndexOf_221, (TemplateAsset_AttributeOverride__Array * array, TemplateAsset_AttributeOverride value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06870, Array_IndexOf_221__MethodInfo); DO_APP_FUNC(0x00EDFD90, int32_t, Array_IndexOf_222, (TextSettings_FontReferenceMap__Array * array, TextSettings_FontReferenceMap value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06868, Array_IndexOf_222__MethodInfo); DO_APP_FUNC(0x00EDFF20, int32_t, Array_IndexOf_223, (TextureBlitter_BlitInfo__Array * array, TextureBlitter_BlitInfo value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06820, Array_IndexOf_223__MethodInfo); DO_APP_FUNC(0x00EE00E0, int32_t, Array_IndexOf_224, (TexturePacker_JsonArray_Frame__Array * array, TexturePacker_JsonArray_Frame value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06818, Array_IndexOf_224__MethodInfo); DO_APP_FUNC(0x00EE02A0, int32_t, Array_IndexOf_225, (TextureRegistry_TextureInfo__Array * array, TextureRegistry_TextureInfo value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06810, Array_IndexOf_225__MethodInfo); DO_APP_FUNC(0x00EE0430, int32_t, Array_IndexOf_226, (TimeNotificationBehaviour_NotificationEntry__Array * array, TimeNotificationBehaviour_NotificationEntry value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06808, Array_IndexOf_226__MethodInfo); DO_APP_FUNC(0x00EE05D0, int32_t, Array_IndexOf_227, (TrackedDeviceRaycaster_RaycastHitData__Array * array, TrackedDeviceRaycaster_RaycastHitData value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06840, Array_IndexOf_227__MethodInfo); DO_APP_FUNC(0x00EE0770, int32_t, Array_IndexOf_228, (TrackedPoseDriverDataDescription_PoseData__Array * array, TrackedPoseDriverDataDescription_PoseData value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06838, Array_IndexOf_228__MethodInfo); DO_APP_FUNC(0x00EE0900, int32_t, Array_IndexOf_229, (TreeView_TreeViewItemWrapper__Array * array, TreeView_TreeViewItemWrapper value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06830, Array_IndexOf_229__MethodInfo); DO_APP_FUNC(0x00EE0A90, int32_t, Array_IndexOf_230, (TreeViewReorderableDragAndDropController_TreeItemState__Array * array, TreeViewReorderableDragAndDropController_TreeItemState value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06828, Array_IndexOf_230__MethodInfo); DO_APP_FUNC(0x00EE0C10, int32_t, Array_IndexOf_231, (UIRStylePainter_Entry__Array * array, UIRStylePainter_Entry value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D067E0, Array_IndexOf_231__MethodInfo); DO_APP_FUNC(0x00EE0DE0, int32_t, Array_IndexOf_232, (UIRenderDevice_AllocToFree__Array * array, UIRenderDevice_AllocToFree value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D067D8, Array_IndexOf_232__MethodInfo); DO_APP_FUNC(0x00EE0F90, int32_t, Array_IndexOf_233, (UIRenderDevice_AllocToUpdate__Array * array, UIRenderDevice_AllocToUpdate value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D067D0, Array_IndexOf_233__MethodInfo); DO_APP_FUNC(0x00EE1160, int32_t, Array_IndexOf_234, (UnitySynchronizationContext_WorkRequest__Array * array, UnitySynchronizationContext_WorkRequest value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D067C8, Array_IndexOf_234__MethodInfo); DO_APP_FUNC(0x00EE1300, int32_t, Array_IndexOf_235, (VisualTreeAsset_SlotDefinition__Array * array, VisualTreeAsset_SlotDefinition value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06800, Array_IndexOf_235__MethodInfo); DO_APP_FUNC(0x00EE1490, int32_t, Array_IndexOf_236, (VisualTreeAsset_SlotUsageEntry__Array * array, VisualTreeAsset_SlotUsageEntry value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D067F8, Array_IndexOf_236__MethodInfo); DO_APP_FUNC(0x00EE1620, int32_t, Array_IndexOf_237, (VisualTreeAsset_UsingEntry__Array * array, VisualTreeAsset_UsingEntry value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D067F0, Array_IndexOf_237__MethodInfo); DO_APP_FUNC(0x00EE17C0, int32_t, Array_IndexOf_238, (XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__Array * array, XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D067E8, Array_IndexOf_238__MethodInfo); DO_APP_FUNC(0x00EE1940, int32_t, Array_IndexOf_239, (XmlSchemaObjectTable_XmlSchemaObjectEntry__Array * array, XmlSchemaObjectTable_XmlSchemaObjectEntry value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D067A0, Array_IndexOf_239__MethodInfo); DO_APP_FUNC(0x00EE1AD0, int32_t, Array_IndexOf_240, (ftLightmaps_LightmapAdditionalData__Array * array, ftLightmaps_LightmapAdditionalData value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06798, Array_IndexOf_240__MethodInfo); DO_APP_FUNC(0x00EE1C70, int32_t, Array_IndexOf_241, (gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__Array * array, gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06790, Array_IndexOf_241__MethodInfo); DO_APP_FUNC(0x00EE1DF0, int32_t, Array_IndexOf_242, (DebugUI_Foldout_ContextMenuItem__Array * array, DebugUI_Foldout_ContextMenuItem value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06788, Array_IndexOf_242__MethodInfo); DO_APP_FUNC(0x00EE1F80, int32_t, Array_IndexOf_243, (InputControlLayout_Collection_LayoutMatcher__Array * array, InputControlLayout_Collection_LayoutMatcher value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D067C0, Array_IndexOf_243__MethodInfo); DO_APP_FUNC(0x00EE2120, int32_t, Array_IndexOf_244, (InstructionList_DebugView_InstructionView__Array * array, InstructionList_DebugView_InstructionView value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D067B8, Array_IndexOf_244__MethodInfo); DO_APP_FUNC(0x00EE22C0, int32_t, Array_IndexOf_245, (PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__Array * array, PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D067B0, Array_IndexOf_245__MethodInfo); DO_APP_FUNC(0x00EE2460, int32_t, Array_IndexOf_246, (TargetPositionCache_CacheCurve_Item__Array * array, TargetPositionCache_CacheCurve_Item value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D067A8, Array_IndexOf_246__MethodInfo); DO_APP_FUNC(0x00EE2600, int32_t, Array_IndexOf_247, (TargetPositionCache_CacheEntry_RecordingItem__Array * array, TargetPositionCache_CacheEntry_RecordingItem value, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06760, Array_IndexOf_247__MethodInfo); DO_APP_FUNC(0x00EE27A0, int32_t, Array_IndexOfImpl, (ArraySegment_1_Byte___Array * array, ArraySegment_1_Byte_ value, int32_t startIndex, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x00EE2830, int32_t, Array_IndexOfImpl_1, (AsyncOperationHandle_1_System_Object___Array * array, AsyncOperationHandle_1_System_Object_ value, int32_t startIndex, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x00EE2830, int32_t, Array_IndexOfImpl_2, (VoiceSender_1_TPeer_ChannelDelta_Dissonance_Integrations_PhotonBolt_BoltPeer___Array * array, VoiceSender_1_TPeer_ChannelDelta_Dissonance_Integrations_PhotonBolt_BoltPeer_ value, int32_t startIndex, int32_t count, MethodInfo * method)); @@ -200661,1615 +220390,3225 @@ DO_APP_FUNC(0x00EE2AB0, int32_t, Array_IndexOfImpl_236, (PlayerController_Elemen DO_APP_FUNC(0x00EE35D0, int32_t, Array_IndexOfImpl_237, (TargetPositionCache_CacheCurve_Item__Array * array, TargetPositionCache_CacheCurve_Item value, int32_t startIndex, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x00EE3430, int32_t, Array_IndexOfImpl_238, (TargetPositionCache_CacheEntry_RecordingItem__Array * array, TargetPositionCache_CacheEntry_RecordingItem value, int32_t startIndex, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x00EE3E10, void, Array_InternalArray__ICollection_Add, (Array * __this, ArraySegment_1_Byte_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06758, Array_InternalArray__ICollection_Add__MethodInfo); DO_APP_FUNC(0x00EE3E70, void, Array_InternalArray__ICollection_Add_1, (Array * __this, AsyncOperationHandle_1_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06750, Array_InternalArray__ICollection_Add_1__MethodInfo); DO_APP_FUNC(0x00EE3ED0, void, Array_InternalArray__ICollection_Add_2, (Array * __this, VoiceSender_1_TPeer_ChannelDelta_Dissonance_Integrations_PhotonBolt_BoltPeer_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06748, Array_InternalArray__ICollection_Add_2__MethodInfo); DO_APP_FUNC(0x00EE3F30, void, Array_InternalArray__ICollection_Add_3, (Array * __this, DynamicHeightVirtualizationController_1_T_ContentHeightCacheInfo_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06780, Array_InternalArray__ICollection_Add_3__MethodInfo); DO_APP_FUNC(0x00EE3F90, void, Array_InternalArray__ICollection_Add_4, (Array * __this, StylePropertyAnimationSystem_Values_1_T_EmptyData_Background_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06778, Array_InternalArray__ICollection_Add_4__MethodInfo); DO_APP_FUNC(0x00EE3FF0, void, Array_InternalArray__ICollection_Add_5, (Array * __this, StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06770, Array_InternalArray__ICollection_Add_5__MethodInfo); DO_APP_FUNC(0x00EE4050, void, Array_InternalArray__ICollection_Add_6, (Array * __this, StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06768, Array_InternalArray__ICollection_Add_6__MethodInfo); DO_APP_FUNC(0x00EE40B0, void, Array_InternalArray__ICollection_Add_7, (Array * __this, StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06720, Array_InternalArray__ICollection_Add_7__MethodInfo); DO_APP_FUNC(0x00EE4110, void, Array_InternalArray__ICollection_Add_8, (Array * __this, StylePropertyAnimationSystem_Values_1_T_EmptyData_Length_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06718, Array_InternalArray__ICollection_Add_8__MethodInfo); DO_APP_FUNC(0x00EE4170, void, Array_InternalArray__ICollection_Add_9, (Array * __this, StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06710, Array_InternalArray__ICollection_Add_9__MethodInfo); DO_APP_FUNC(0x00EE41D0, void, Array_InternalArray__ICollection_Add_10, (Array * __this, StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06708, Array_InternalArray__ICollection_Add_10__MethodInfo); DO_APP_FUNC(0x00EE4230, void, Array_InternalArray__ICollection_Add_11, (Array * __this, StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06740, Array_InternalArray__ICollection_Add_11__MethodInfo); DO_APP_FUNC(0x00EE4290, void, Array_InternalArray__ICollection_Add_12, (Array * __this, StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06738, Array_InternalArray__ICollection_Add_12__MethodInfo); DO_APP_FUNC(0x00EE42F0, void, Array_InternalArray__ICollection_Add_13, (Array * __this, StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06730, Array_InternalArray__ICollection_Add_13__MethodInfo); DO_APP_FUNC(0x00EE4350, void, Array_InternalArray__ICollection_Add_14, (Array * __this, StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06728, Array_InternalArray__ICollection_Add_14__MethodInfo); DO_APP_FUNC(0x00EE43B0, void, Array_InternalArray__ICollection_Add_15, (Array * __this, StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D066E0, Array_InternalArray__ICollection_Add_15__MethodInfo); DO_APP_FUNC(0x00EE4410, void, Array_InternalArray__ICollection_Add_16, (Array * __this, IntervalTree_1_T_Entry_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D066D8, Array_InternalArray__ICollection_Add_16__MethodInfo); DO_APP_FUNC(0x00EE4470, void, Array_InternalArray__ICollection_Add_17, (Array * __this, XHashtable_1_TValue_XHashtableState_TValue_Entry_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D066D0, Array_InternalArray__ICollection_Add_17__MethodInfo); DO_APP_FUNC(0x00EE44D0, void, Array_InternalArray__ICollection_Add_18, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_ValueTuple_2_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D066C8, Array_InternalArray__ICollection_Add_18__MethodInfo); DO_APP_FUNC(0x00EE4530, void, Array_InternalArray__ICollection_Add_19, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_ValueTuple_2_System_Object__1 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06700, Array_InternalArray__ICollection_Add_19__MethodInfo); DO_APP_FUNC(0x00EE4590, void, Array_InternalArray__ICollection_Add_20, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Byte_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D066F8, Array_InternalArray__ICollection_Add_20__MethodInfo); DO_APP_FUNC(0x00EE45F0, void, Array_InternalArray__ICollection_Add_21, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_ByteEnum_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D066F0, Array_InternalArray__ICollection_Add_21__MethodInfo); DO_APP_FUNC(0x00EE4650, void, Array_InternalArray__ICollection_Add_22, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_ByteEnum_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D066E8, Array_InternalArray__ICollection_Add_22__MethodInfo); DO_APP_FUNC(0x00EE46B0, void, Array_InternalArray__ICollection_Add_23, (Array * __this, Dictionary_2_TKey_TValue_Entry_Dissonance_Audio_Playback_FrameFormat_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D066A0, Array_InternalArray__ICollection_Add_23__MethodInfo); DO_APP_FUNC(0x00EE4710, void, Array_InternalArray__ICollection_Add_24, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Guid_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06698, Array_InternalArray__ICollection_Add_24__MethodInfo); DO_APP_FUNC(0x00EE4770, void, Array_InternalArray__ICollection_Add_25, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Guid_System_UInt32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06690, Array_InternalArray__ICollection_Add_25__MethodInfo); DO_APP_FUNC(0x00EE47D0, void, Array_InternalArray__ICollection_Add_26, (Array * __this, Dictionary_2_TKey_TValue_Entry_UnityEngine_Hash128_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06688, Array_InternalArray__ICollection_Add_26__MethodInfo); DO_APP_FUNC(0x00EE4830, void, Array_InternalArray__ICollection_Add_27, (Array * __this, Dictionary_2_TKey_TValue_Entry_Pathfinding_Int2_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D066C0, Array_InternalArray__ICollection_Add_27__MethodInfo); DO_APP_FUNC(0x00EE4890, void, Array_InternalArray__ICollection_Add_28, (Array * __this, Dictionary_2_TKey_TValue_Entry_Pathfinding_Int3_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D066B8, Array_InternalArray__ICollection_Add_28__MethodInfo); DO_APP_FUNC(0x00EE48F0, void, Array_InternalArray__ICollection_Add_29, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D066B0, Array_InternalArray__ICollection_Add_29__MethodInfo); DO_APP_FUNC(0x00EE4950, void, Array_InternalArray__ICollection_Add_30, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_System_ValueTuple_2_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D066A8, Array_InternalArray__ICollection_Add_30__MethodInfo); DO_APP_FUNC(0x00EE49B0, void, Array_InternalArray__ICollection_Add_31, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_System_Boolean_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06660, Array_InternalArray__ICollection_Add_31__MethodInfo); DO_APP_FUNC(0x00EE4A10, void, Array_InternalArray__ICollection_Add_32, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_System_ByteEnum_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06658, Array_InternalArray__ICollection_Add_32__MethodInfo); DO_APP_FUNC(0x00EE4A70, void, Array_InternalArray__ICollection_Add_33, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_System_Char_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06650, Array_InternalArray__ICollection_Add_33__MethodInfo); DO_APP_FUNC(0x00EE4AD0, void, Array_InternalArray__ICollection_Add_34, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06648, Array_InternalArray__ICollection_Add_34__MethodInfo); DO_APP_FUNC(0x00EE4B30, void, Array_InternalArray__ICollection_Add_35, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int16_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06680, Array_InternalArray__ICollection_Add_35__MethodInfo); DO_APP_FUNC(0x00EE4B90, void, Array_InternalArray__ICollection_Add_36, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_Pathfinding_Int3_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06678, Array_InternalArray__ICollection_Add_36__MethodInfo); DO_APP_FUNC(0x00EE4BF0, void, Array_InternalArray__ICollection_Add_37, (Array * __this, ADictionary_2_TKey_TValue_Entry_System_Int32_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06670, Array_InternalArray__ICollection_Add_37__MethodInfo); DO_APP_FUNC(0x00EE4C50, void, Array_InternalArray__ICollection_Add_38, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06668, Array_InternalArray__ICollection_Add_38__MethodInfo); DO_APP_FUNC(0x00EE4CB0, void, Array_InternalArray__ICollection_Add_39, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int32Enum_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06620, Array_InternalArray__ICollection_Add_39__MethodInfo); DO_APP_FUNC(0x00EE4D10, void, Array_InternalArray__ICollection_Add_40, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int64_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06618, Array_InternalArray__ICollection_Add_40__MethodInfo); DO_APP_FUNC(0x00EE4D70, void, Array_InternalArray__ICollection_Add_41, (Array * __this, ADictionary_2_TKey_TValue_Entry_System_Int32_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06610, Array_InternalArray__ICollection_Add_41__MethodInfo); DO_APP_FUNC(0x00EE4DD0, void, Array_InternalArray__ICollection_Add_42, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06608, Array_InternalArray__ICollection_Add_42__MethodInfo); DO_APP_FUNC(0x00EE4E30, void, Array_InternalArray__ICollection_Add_43, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_PlayerFlashlightBeam_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06640, Array_InternalArray__ICollection_Add_43__MethodInfo); DO_APP_FUNC(0x00EE4E90, void, Array_InternalArray__ICollection_Add_44, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_RenderInstancedDataLayout_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06638, Array_InternalArray__ICollection_Add_44__MethodInfo); DO_APP_FUNC(0x00EE4EF0, void, Array_InternalArray__ICollection_Add_45, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_System_Single_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06630, Array_InternalArray__ICollection_Add_45__MethodInfo); DO_APP_FUNC(0x00EE4F50, void, Array_InternalArray__ICollection_Add_46, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_TreeItem_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06628, Array_InternalArray__ICollection_Add_46__MethodInfo); DO_APP_FUNC(0x00EE4FB0, void, Array_InternalArray__ICollection_Add_47, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Vector2Int_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D065E0, Array_InternalArray__ICollection_Add_47__MethodInfo); DO_APP_FUNC(0x00EE5010, void, Array_InternalArray__ICollection_Add_48, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Vector4_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D065D8, Array_InternalArray__ICollection_Add_48__MethodInfo); DO_APP_FUNC(0x00EE5070, void, Array_InternalArray__ICollection_Add_49, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D065D0, Array_InternalArray__ICollection_Add_49__MethodInfo); DO_APP_FUNC(0x00EE50D0, void, Array_InternalArray__ICollection_Add_50, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32Enum_System_Int32Enum_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D065C8, Array_InternalArray__ICollection_Add_50__MethodInfo); DO_APP_FUNC(0x00EE5130, void, Array_InternalArray__ICollection_Add_51, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32Enum_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06600, Array_InternalArray__ICollection_Add_51__MethodInfo); DO_APP_FUNC(0x00EE5190, void, Array_InternalArray__ICollection_Add_52, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_UIElements_ComputedStyle_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D065F8, Array_InternalArray__ICollection_Add_52__MethodInfo); DO_APP_FUNC(0x00EE51F0, void, Array_InternalArray__ICollection_Add_53, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int64_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D065F0, Array_InternalArray__ICollection_Add_53__MethodInfo); DO_APP_FUNC(0x00EE5250, void, Array_InternalArray__ICollection_Add_54, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_IntPtr_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D065E8, Array_InternalArray__ICollection_Add_54__MethodInfo); DO_APP_FUNC(0x00EE52B0, void, Array_InternalArray__ICollection_Add_55, (Array * __this, Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D065A0, Array_InternalArray__ICollection_Add_55__MethodInfo); DO_APP_FUNC(0x00EE5310, void, Array_InternalArray__ICollection_Add_56, (Array * __this, Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06598, Array_InternalArray__ICollection_Add_56__MethodInfo); DO_APP_FUNC(0x00EE5370, void, Array_InternalArray__ICollection_Add_57, (Array * __this, Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06590, Array_InternalArray__ICollection_Add_57__MethodInfo); DO_APP_FUNC(0x00EE53D0, void, Array_InternalArray__ICollection_Add_58, (Array * __this, Dictionary_2_TKey_TValue_Entry_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06588, Array_InternalArray__ICollection_Add_58__MethodInfo); DO_APP_FUNC(0x00EE5430, void, Array_InternalArray__ICollection_Add_59, (Array * __this, Dictionary_2_TKey_TValue_Entry_Photon_Bolt_NetworkId_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D065C0, Array_InternalArray__ICollection_Add_59__MethodInfo); DO_APP_FUNC(0x00EE5490, void, Array_InternalArray__ICollection_Add_60, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D065B8, Array_InternalArray__ICollection_Add_60__MethodInfo); DO_APP_FUNC(0x00EE54F0, void, Array_InternalArray__ICollection_Add_61, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D065B0, Array_InternalArray__ICollection_Add_61__MethodInfo); DO_APP_FUNC(0x00EE5550, void, Array_InternalArray__ICollection_Add_62, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_System_Boolean_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D065A8, Array_InternalArray__ICollection_Add_62__MethodInfo); DO_APP_FUNC(0x00EE55B0, void, Array_InternalArray__ICollection_Add_63, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Bounds_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06560, Array_InternalArray__ICollection_Add_63__MethodInfo); DO_APP_FUNC(0x00EE5610, void, Array_InternalArray__ICollection_Add_64, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_System_Byte_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06558, Array_InternalArray__ICollection_Add_64__MethodInfo); DO_APP_FUNC(0x00EE5670, void, Array_InternalArray__ICollection_Add_65, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Color_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06550, Array_InternalArray__ICollection_Add_65__MethodInfo); DO_APP_FUNC(0x00EE56D0, void, Array_InternalArray__ICollection_Add_66, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Color32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06548, Array_InternalArray__ICollection_Add_66__MethodInfo); DO_APP_FUNC(0x00EE5730, void, Array_InternalArray__ICollection_Add_67, (Array * __this, ADictionary_2_TKey_TValue_Entry_System_Object_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06580, Array_InternalArray__ICollection_Add_67__MethodInfo); DO_APP_FUNC(0x00EE5790, void, Array_InternalArray__ICollection_Add_68, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06578, Array_InternalArray__ICollection_Add_68__MethodInfo); DO_APP_FUNC(0x00EE57F0, void, Array_InternalArray__ICollection_Add_69, (Array * __this, ADictionary_2_TKey_TValue_Entry_System_Object_System_Int32Enum_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06570, Array_InternalArray__ICollection_Add_69__MethodInfo); DO_APP_FUNC(0x00EE5850, void, Array_InternalArray__ICollection_Add_70, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_System_Int32Enum_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06568, Array_InternalArray__ICollection_Add_70__MethodInfo); DO_APP_FUNC(0x00EE58B0, void, Array_InternalArray__ICollection_Add_71, (Array * __this, ADictionary_2_TKey_TValue_Entry_System_Object_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06520, Array_InternalArray__ICollection_Add_71__MethodInfo); DO_APP_FUNC(0x00EE5910, void, Array_InternalArray__ICollection_Add_72, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06518, Array_InternalArray__ICollection_Add_72__MethodInfo); DO_APP_FUNC(0x00EE5970, void, Array_InternalArray__ICollection_Add_73, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06510, Array_InternalArray__ICollection_Add_73__MethodInfo); DO_APP_FUNC(0x00EE59D0, void, Array_InternalArray__ICollection_Add_74, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06508, Array_InternalArray__ICollection_Add_74__MethodInfo); DO_APP_FUNC(0x00EE5A30, void, Array_InternalArray__ICollection_Add_75, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Playables_Playable_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06540, Array_InternalArray__ICollection_Add_75__MethodInfo); DO_APP_FUNC(0x00EE5A90, void, Array_InternalArray__ICollection_Add_76, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06538, Array_InternalArray__ICollection_Add_76__MethodInfo); DO_APP_FUNC(0x00EE5AF0, void, Array_InternalArray__ICollection_Add_77, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_System_Resources_ResourceLocator_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06530, Array_InternalArray__ICollection_Add_77__MethodInfo); DO_APP_FUNC(0x00EE5B50, void, Array_InternalArray__ICollection_Add_78, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_System_Single_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06528, Array_InternalArray__ICollection_Add_78__MethodInfo); DO_APP_FUNC(0x00EE5BB0, void, Array_InternalArray__ICollection_Add_79, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D064E0, Array_InternalArray__ICollection_Add_79__MethodInfo); DO_APP_FUNC(0x00EE5C10, void, Array_InternalArray__ICollection_Add_80, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_UIElements_TextureId_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D064D8, Array_InternalArray__ICollection_Add_80__MethodInfo); DO_APP_FUNC(0x00EE5C70, void, Array_InternalArray__ICollection_Add_81, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_System_TimeSpan_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D064D0, Array_InternalArray__ICollection_Add_81__MethodInfo); DO_APP_FUNC(0x00EE5CD0, void, Array_InternalArray__ICollection_Add_82, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_UdpKit_UdpEndPoint_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D064C8, Array_InternalArray__ICollection_Add_82__MethodInfo); DO_APP_FUNC(0x00EE5D30, void, Array_InternalArray__ICollection_Add_83, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Vector2_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06500, Array_InternalArray__ICollection_Add_83__MethodInfo); DO_APP_FUNC(0x00EE5D90, void, Array_InternalArray__ICollection_Add_84, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Vector3_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D064F8, Array_InternalArray__ICollection_Add_84__MethodInfo); DO_APP_FUNC(0x00EE5DF0, void, Array_InternalArray__ICollection_Add_85, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D064F0, Array_InternalArray__ICollection_Add_85__MethodInfo); DO_APP_FUNC(0x00EE5E50, void, Array_InternalArray__ICollection_Add_86, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D064E8, Array_InternalArray__ICollection_Add_86__MethodInfo); DO_APP_FUNC(0x00EE5EB0, void, Array_InternalArray__ICollection_Add_87, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D064A0, Array_InternalArray__ICollection_Add_87__MethodInfo); DO_APP_FUNC(0x00EE5F10, void, Array_InternalArray__ICollection_Add_88, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06498, Array_InternalArray__ICollection_Add_88__MethodInfo); DO_APP_FUNC(0x00EE5F70, void, Array_InternalArray__ICollection_Add_89, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06490, Array_InternalArray__ICollection_Add_89__MethodInfo); DO_APP_FUNC(0x00EE5FD0, void, Array_InternalArray__ICollection_Add_90, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06488, Array_InternalArray__ICollection_Add_90__MethodInfo); DO_APP_FUNC(0x00EE6030, void, Array_InternalArray__ICollection_Add_91, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D064C0, Array_InternalArray__ICollection_Add_91__MethodInfo); DO_APP_FUNC(0x00EE6090, void, Array_InternalArray__ICollection_Add_92, (Array * __this, Dictionary_2_TKey_TValue_Entry_Photon_Bolt_PrefabId_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D064B8, Array_InternalArray__ICollection_Add_92__MethodInfo); DO_APP_FUNC(0x00EE60F0, void, Array_InternalArray__ICollection_Add_93, (Array * __this, Dictionary_2_TKey_TValue_Entry_UnityEngine_RaycastHit_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D064B0, Array_InternalArray__ICollection_Add_93__MethodInfo); DO_APP_FUNC(0x00EE6150, void, Array_InternalArray__ICollection_Add_94, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Single_SplineMesh_CurveSample_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D064A8, Array_InternalArray__ICollection_Add_94__MethodInfo); DO_APP_FUNC(0x00EE61B0, void, Array_InternalArray__ICollection_Add_95, (Array * __this, Dictionary_2_TKey_TValue_Entry_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06460, Array_InternalArray__ICollection_Add_95__MethodInfo); DO_APP_FUNC(0x00EE6210, void, Array_InternalArray__ICollection_Add_96, (Array * __this, Dictionary_2_TKey_TValue_Entry_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06458, Array_InternalArray__ICollection_Add_96__MethodInfo); DO_APP_FUNC(0x00EE6270, void, Array_InternalArray__ICollection_Add_97, (Array * __this, Dictionary_2_TKey_TValue_Entry_Photon_Bolt_TypeId_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06450, Array_InternalArray__ICollection_Add_97__MethodInfo); DO_APP_FUNC(0x00EE62D0, void, Array_InternalArray__ICollection_Add_98, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_UInt16_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06448, Array_InternalArray__ICollection_Add_98__MethodInfo); DO_APP_FUNC(0x00EE6330, void, Array_InternalArray__ICollection_Add_99, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_UInt16_Dissonance_PlayerChannel_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06480, Array_InternalArray__ICollection_Add_99__MethodInfo); DO_APP_FUNC(0x00EE6390, void, Array_InternalArray__ICollection_Add_100, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_UInt16_Dissonance_RoomChannel_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06478, Array_InternalArray__ICollection_Add_100__MethodInfo); DO_APP_FUNC(0x00EE63F0, void, Array_InternalArray__ICollection_Add_101, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_UInt32_System_Boolean_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06470, Array_InternalArray__ICollection_Add_101__MethodInfo); DO_APP_FUNC(0x00EE6450, void, Array_InternalArray__ICollection_Add_102, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06468, Array_InternalArray__ICollection_Add_102__MethodInfo); DO_APP_FUNC(0x00EE64B0, void, Array_InternalArray__ICollection_Add_103, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_UInt32_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06420, Array_InternalArray__ICollection_Add_103__MethodInfo); DO_APP_FUNC(0x00EE6510, void, Array_InternalArray__ICollection_Add_104, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_UInt32_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06418, Array_InternalArray__ICollection_Add_104__MethodInfo); DO_APP_FUNC(0x00EE6570, void, Array_InternalArray__ICollection_Add_105, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_UInt32_SessionClient_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06410, Array_InternalArray__ICollection_Add_105__MethodInfo); DO_APP_FUNC(0x00EE65D0, void, Array_InternalArray__ICollection_Add_106, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_UInt64_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06408, Array_InternalArray__ICollection_Add_106__MethodInfo); DO_APP_FUNC(0x00EE6630, void, Array_InternalArray__ICollection_Add_107, (Array * __this, Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06440, Array_InternalArray__ICollection_Add_107__MethodInfo); DO_APP_FUNC(0x00EE6690, void, Array_InternalArray__ICollection_Add_108, (Array * __this, Dictionary_2_TKey_TValue_Entry_UdpKit_UdpChannelName_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06438, Array_InternalArray__ICollection_Add_108__MethodInfo); DO_APP_FUNC(0x00EE66F0, void, Array_InternalArray__ICollection_Add_109, (Array * __this, Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06430, Array_InternalArray__ICollection_Add_109__MethodInfo); DO_APP_FUNC(0x00EE6750, void, Array_InternalArray__ICollection_Add_110, (Array * __this, Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_UInt32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06428, Array_InternalArray__ICollection_Add_110__MethodInfo); DO_APP_FUNC(0x00EE67B0, void, Array_InternalArray__ICollection_Add_111, (Array * __this, Dictionary_2_TKey_TValue_Entry_Photon_Bolt_UniqueId_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D063E0, Array_InternalArray__ICollection_Add_111__MethodInfo); DO_APP_FUNC(0x00EE6810, void, Array_InternalArray__ICollection_Add_112, (Array * __this, Dictionary_2_TKey_TValue_Entry_UnityEngine_Vector3_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D063D8, Array_InternalArray__ICollection_Add_112__MethodInfo); DO_APP_FUNC(0x00EE6870, void, Array_InternalArray__ICollection_Add_113, (Array * __this, Dictionary_2_TKey_TValue_Entry_UnityEngine_Vector3Int_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D063D0, Array_InternalArray__ICollection_Add_113__MethodInfo); DO_APP_FUNC(0x00EE68D0, void, Array_InternalArray__ICollection_Add_114, (Array * __this, Dictionary_2_TKey_TValue_Entry_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D063C8, Array_InternalArray__ICollection_Add_114__MethodInfo); DO_APP_FUNC(0x00EE6930, void, Array_InternalArray__ICollection_Add_115, (Array * __this, Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06400, Array_InternalArray__ICollection_Add_115__MethodInfo); DO_APP_FUNC(0x00EE6990, void, Array_InternalArray__ICollection_Add_116, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D063F8, Array_InternalArray__ICollection_Add_116__MethodInfo); DO_APP_FUNC(0x00EE69F0, void, Array_InternalArray__ICollection_Add_117, (Array * __this, Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D063F0, Array_InternalArray__ICollection_Add_117__MethodInfo); DO_APP_FUNC(0x00EE6A50, void, Array_InternalArray__ICollection_Add_118, (Array * __this, Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D063E8, Array_InternalArray__ICollection_Add_118__MethodInfo); DO_APP_FUNC(0x00EE6AB0, void, Array_InternalArray__ICollection_Add_119, (Array * __this, Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D063A0, Array_InternalArray__ICollection_Add_119__MethodInfo); DO_APP_FUNC(0x00EE6B10, void, Array_InternalArray__ICollection_Add_120, (Array * __this, Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06398, Array_InternalArray__ICollection_Add_120__MethodInfo); DO_APP_FUNC(0x00EE6B70, void, Array_InternalArray__ICollection_Add_121, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06390, Array_InternalArray__ICollection_Add_121__MethodInfo); DO_APP_FUNC(0x00EE6BD0, void, Array_InternalArray__ICollection_Add_122, (Array * __this, Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06388, Array_InternalArray__ICollection_Add_122__MethodInfo); DO_APP_FUNC(0x00EE6C30, void, Array_InternalArray__ICollection_Add_123, (Array * __this, Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D063C0, Array_InternalArray__ICollection_Add_123__MethodInfo); DO_APP_FUNC(0x00EE6C90, void, Array_InternalArray__ICollection_Add_124, (Array * __this, Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D063B8, Array_InternalArray__ICollection_Add_124__MethodInfo); DO_APP_FUNC(0x00EE6CF0, void, Array_InternalArray__ICollection_Add_125, (Array * __this, Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D063B0, Array_InternalArray__ICollection_Add_125__MethodInfo); DO_APP_FUNC(0x00EE6D50, void, Array_InternalArray__ICollection_Add_126, (Array * __this, Dictionary_2_TKey_TValue_Entry_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D063A8, Array_InternalArray__ICollection_Add_126__MethodInfo); DO_APP_FUNC(0x00EE6DB0, void, Array_InternalArray__ICollection_Add_127, (Array * __this, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06360, Array_InternalArray__ICollection_Add_127__MethodInfo); DO_APP_FUNC(0x00EE6E10, void, Array_InternalArray__ICollection_Add_128, (Array * __this, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06358, Array_InternalArray__ICollection_Add_128__MethodInfo); DO_APP_FUNC(0x00EE6E70, void, Array_InternalArray__ICollection_Add_129, (Array * __this, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06350, Array_InternalArray__ICollection_Add_129__MethodInfo); DO_APP_FUNC(0x00EE6ED0, void, Array_InternalArray__ICollection_Add_130, (Array * __this, KeyValuePair_2_System_ValueTuple_2_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06348, Array_InternalArray__ICollection_Add_130__MethodInfo); DO_APP_FUNC(0x00EE6F30, void, Array_InternalArray__ICollection_Add_131, (Array * __this, KeyValuePair_2_System_ValueTuple_2_System_Object__1 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06380, Array_InternalArray__ICollection_Add_131__MethodInfo); DO_APP_FUNC(0x00EE6F90, void, Array_InternalArray__ICollection_Add_132, (Array * __this, KeyValuePair_2_System_Byte_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06378, Array_InternalArray__ICollection_Add_132__MethodInfo); DO_APP_FUNC(0x00EE6FF0, void, Array_InternalArray__ICollection_Add_133, (Array * __this, KeyValuePair_2_System_ByteEnum_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06370, Array_InternalArray__ICollection_Add_133__MethodInfo); DO_APP_FUNC(0x00EE7050, void, Array_InternalArray__ICollection_Add_134, (Array * __this, KeyValuePair_2_System_ByteEnum_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06368, Array_InternalArray__ICollection_Add_134__MethodInfo); DO_APP_FUNC(0x00EE70B0, void, Array_InternalArray__ICollection_Add_135, (Array * __this, KeyValuePair_2_System_DateTime_System_UInt32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06320, Array_InternalArray__ICollection_Add_135__MethodInfo); DO_APP_FUNC(0x00EE7110, void, Array_InternalArray__ICollection_Add_136, (Array * __this, KeyValuePair_2_Dissonance_Audio_Playback_FrameFormat_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06318, Array_InternalArray__ICollection_Add_136__MethodInfo); DO_APP_FUNC(0x00EE7170, void, Array_InternalArray__ICollection_Add_137, (Array * __this, KeyValuePair_2_System_Guid_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06310, Array_InternalArray__ICollection_Add_137__MethodInfo); DO_APP_FUNC(0x00EE71D0, void, Array_InternalArray__ICollection_Add_138, (Array * __this, KeyValuePair_2_System_Guid_System_UInt32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06308, Array_InternalArray__ICollection_Add_138__MethodInfo); DO_APP_FUNC(0x00EE7230, void, Array_InternalArray__ICollection_Add_139, (Array * __this, KeyValuePair_2_UnityEngine_Hash128_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06340, Array_InternalArray__ICollection_Add_139__MethodInfo); DO_APP_FUNC(0x00EE7290, void, Array_InternalArray__ICollection_Add_140, (Array * __this, KeyValuePair_2_Pathfinding_Int2_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06338, Array_InternalArray__ICollection_Add_140__MethodInfo); DO_APP_FUNC(0x00EE72F0, void, Array_InternalArray__ICollection_Add_141, (Array * __this, KeyValuePair_2_Pathfinding_Int3_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06330, Array_InternalArray__ICollection_Add_141__MethodInfo); DO_APP_FUNC(0x00EE7350, void, Array_InternalArray__ICollection_Add_142, (Array * __this, KeyValuePair_2_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06328, Array_InternalArray__ICollection_Add_142__MethodInfo); DO_APP_FUNC(0x00EE73B0, void, Array_InternalArray__ICollection_Add_143, (Array * __this, KeyValuePair_2_System_Int32_System_ValueTuple_2__3 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D062E0, Array_InternalArray__ICollection_Add_143__MethodInfo); DO_APP_FUNC(0x00EE7410, void, Array_InternalArray__ICollection_Add_144, (Array * __this, KeyValuePair_2_System_Int32_System_ValueTuple_2__2 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D062D8, Array_InternalArray__ICollection_Add_144__MethodInfo); DO_APP_FUNC(0x00EE7470, void, Array_InternalArray__ICollection_Add_145, (Array * __this, KeyValuePair_2_System_Int32_System_Boolean_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D062D0, Array_InternalArray__ICollection_Add_145__MethodInfo); DO_APP_FUNC(0x00EE74D0, void, Array_InternalArray__ICollection_Add_146, (Array * __this, KeyValuePair_2_System_Int32_System_ByteEnum_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D062C8, Array_InternalArray__ICollection_Add_146__MethodInfo); DO_APP_FUNC(0x00EE7530, void, Array_InternalArray__ICollection_Add_147, (Array * __this, KeyValuePair_2_System_Int32_System_Char_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06300, Array_InternalArray__ICollection_Add_147__MethodInfo); DO_APP_FUNC(0x00EE7590, void, Array_InternalArray__ICollection_Add_148, (Array * __this, KeyValuePair_2_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D062F8, Array_InternalArray__ICollection_Add_148__MethodInfo); DO_APP_FUNC(0x00EE75F0, void, Array_InternalArray__ICollection_Add_149, (Array * __this, KeyValuePair_2_System_Int32_System_Int16_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D062F0, Array_InternalArray__ICollection_Add_149__MethodInfo); DO_APP_FUNC(0x00EE7650, void, Array_InternalArray__ICollection_Add_150, (Array * __this, KeyValuePair_2_System_Int32_Pathfinding_Int3_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D062E8, Array_InternalArray__ICollection_Add_150__MethodInfo); DO_APP_FUNC(0x00EE76B0, void, Array_InternalArray__ICollection_Add_151, (Array * __this, KeyValuePair_2_System_Int32_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D062A0, Array_InternalArray__ICollection_Add_151__MethodInfo); DO_APP_FUNC(0x00EE7710, void, Array_InternalArray__ICollection_Add_152, (Array * __this, KeyValuePair_2_System_Int32_System_Int32Enum_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06298, Array_InternalArray__ICollection_Add_152__MethodInfo); DO_APP_FUNC(0x00EE7770, void, Array_InternalArray__ICollection_Add_153, (Array * __this, KeyValuePair_2_System_Int32_System_Int64_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06290, Array_InternalArray__ICollection_Add_153__MethodInfo); DO_APP_FUNC(0x00EE77D0, void, Array_InternalArray__ICollection_Add_154, (Array * __this, KeyValuePair_2_System_Int32_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06288, Array_InternalArray__ICollection_Add_154__MethodInfo); DO_APP_FUNC(0x00EE7830, void, Array_InternalArray__ICollection_Add_155, (Array * __this, KeyValuePair_2_System_Int32_PlayerFlashlightBeam_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D062C0, Array_InternalArray__ICollection_Add_155__MethodInfo); DO_APP_FUNC(0x00EE7890, void, Array_InternalArray__ICollection_Add_156, (Array * __this, KeyValuePair_2_System_Int32_UnityEngine_RenderInstancedDataLayout_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D062B8, Array_InternalArray__ICollection_Add_156__MethodInfo); DO_APP_FUNC(0x00EE78F0, void, Array_InternalArray__ICollection_Add_157, (Array * __this, KeyValuePair_2_System_Int32_System_Single_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D062B0, Array_InternalArray__ICollection_Add_157__MethodInfo); DO_APP_FUNC(0x00EE7950, void, Array_InternalArray__ICollection_Add_158, (Array * __this, KeyValuePair_2_System_Int32_UnityEngine_UIElements_TreeItem_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D062A8, Array_InternalArray__ICollection_Add_158__MethodInfo); DO_APP_FUNC(0x00EE79B0, void, Array_InternalArray__ICollection_Add_159, (Array * __this, KeyValuePair_2_System_Int32_UnityEngine_Vector2Int_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06260, Array_InternalArray__ICollection_Add_159__MethodInfo); DO_APP_FUNC(0x00EE7A10, void, Array_InternalArray__ICollection_Add_160, (Array * __this, KeyValuePair_2_System_Int32_UnityEngine_Vector4_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06258, Array_InternalArray__ICollection_Add_160__MethodInfo); DO_APP_FUNC(0x00EE7A70, void, Array_InternalArray__ICollection_Add_161, (Array * __this, KeyValuePair_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06250, Array_InternalArray__ICollection_Add_161__MethodInfo); DO_APP_FUNC(0x00EE7AD0, void, Array_InternalArray__ICollection_Add_162, (Array * __this, KeyValuePair_2_System_Int32Enum_System_Int32Enum_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06248, Array_InternalArray__ICollection_Add_162__MethodInfo); DO_APP_FUNC(0x00EE7B30, void, Array_InternalArray__ICollection_Add_163, (Array * __this, KeyValuePair_2_System_Int32Enum_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06280, Array_InternalArray__ICollection_Add_163__MethodInfo); DO_APP_FUNC(0x00EE7B90, void, Array_InternalArray__ICollection_Add_164, (Array * __this, KeyValuePair_2_System_Int64_UnityEngine_UIElements_ComputedStyle_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06278, Array_InternalArray__ICollection_Add_164__MethodInfo); DO_APP_FUNC(0x00EE7BF0, void, Array_InternalArray__ICollection_Add_165, (Array * __this, KeyValuePair_2_System_Int64_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06270, Array_InternalArray__ICollection_Add_165__MethodInfo); DO_APP_FUNC(0x00EE7C50, void, Array_InternalArray__ICollection_Add_166, (Array * __this, KeyValuePair_2_System_IntPtr_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06268, Array_InternalArray__ICollection_Add_166__MethodInfo); DO_APP_FUNC(0x00EE7CB0, void, Array_InternalArray__ICollection_Add_167, (Array * __this, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06220, Array_InternalArray__ICollection_Add_167__MethodInfo); DO_APP_FUNC(0x00EE7D10, void, Array_InternalArray__ICollection_Add_168, (Array * __this, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06218, Array_InternalArray__ICollection_Add_168__MethodInfo); DO_APP_FUNC(0x00EE7D70, void, Array_InternalArray__ICollection_Add_169, (Array * __this, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06210, Array_InternalArray__ICollection_Add_169__MethodInfo); DO_APP_FUNC(0x00EE7DD0, void, Array_InternalArray__ICollection_Add_170, (Array * __this, KeyValuePair_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06208, Array_InternalArray__ICollection_Add_170__MethodInfo); DO_APP_FUNC(0x00EE7E30, void, Array_InternalArray__ICollection_Add_171, (Array * __this, KeyValuePair_2_Photon_Bolt_NetworkId_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06240, Array_InternalArray__ICollection_Add_171__MethodInfo); DO_APP_FUNC(0x00EE7E90, void, Array_InternalArray__ICollection_Add_172, (Array * __this, KeyValuePair_2_System_Object_System_ArraySegment_1_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06238, Array_InternalArray__ICollection_Add_172__MethodInfo); DO_APP_FUNC(0x00EE7EF0, void, Array_InternalArray__ICollection_Add_173, (Array * __this, KeyValuePair_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06230, Array_InternalArray__ICollection_Add_173__MethodInfo); DO_APP_FUNC(0x00EE7F50, void, Array_InternalArray__ICollection_Add_174, (Array * __this, KeyValuePair_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06228, Array_InternalArray__ICollection_Add_174__MethodInfo); DO_APP_FUNC(0x00EE7FB0, void, Array_InternalArray__ICollection_Add_175, (Array * __this, KeyValuePair_2_System_Object_System_Boolean_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D061E0, Array_InternalArray__ICollection_Add_175__MethodInfo); DO_APP_FUNC(0x00EE8010, void, Array_InternalArray__ICollection_Add_176, (Array * __this, KeyValuePair_2_System_Object_UnityEngine_Bounds_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D061D8, Array_InternalArray__ICollection_Add_176__MethodInfo); DO_APP_FUNC(0x00EE8070, void, Array_InternalArray__ICollection_Add_177, (Array * __this, KeyValuePair_2_System_Object_System_Byte_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D061D0, Array_InternalArray__ICollection_Add_177__MethodInfo); DO_APP_FUNC(0x00EE80D0, void, Array_InternalArray__ICollection_Add_178, (Array * __this, KeyValuePair_2_System_Object_System_Char_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D061C8, Array_InternalArray__ICollection_Add_178__MethodInfo); DO_APP_FUNC(0x00EE8130, void, Array_InternalArray__ICollection_Add_179, (Array * __this, KeyValuePair_2_System_Object_UnityEngine_Color_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06200, Array_InternalArray__ICollection_Add_179__MethodInfo); DO_APP_FUNC(0x00EE8190, void, Array_InternalArray__ICollection_Add_180, (Array * __this, KeyValuePair_2_System_Object_UnityEngine_Color32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D061F8, Array_InternalArray__ICollection_Add_180__MethodInfo); DO_APP_FUNC(0x00EE81F0, void, Array_InternalArray__ICollection_Add_181, (Array * __this, KeyValuePair_2_System_Object_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D061F0, Array_InternalArray__ICollection_Add_181__MethodInfo); DO_APP_FUNC(0x00EE8250, void, Array_InternalArray__ICollection_Add_182, (Array * __this, KeyValuePair_2_System_Object_System_Int32Enum_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D061E8, Array_InternalArray__ICollection_Add_182__MethodInfo); DO_APP_FUNC(0x00EE82B0, void, Array_InternalArray__ICollection_Add_183, (Array * __this, KeyValuePair_2_System_Object_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D061A0, Array_InternalArray__ICollection_Add_183__MethodInfo); DO_APP_FUNC(0x00EE8310, void, Array_InternalArray__ICollection_Add_184, (Array * __this, KeyValuePair_2_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06198, Array_InternalArray__ICollection_Add_184__MethodInfo); DO_APP_FUNC(0x00EE8370, void, Array_InternalArray__ICollection_Add_185, (Array * __this, KeyValuePair_2_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06190, Array_InternalArray__ICollection_Add_185__MethodInfo); DO_APP_FUNC(0x00EE83D0, void, Array_InternalArray__ICollection_Add_186, (Array * __this, KeyValuePair_2_System_Object_UnityEngine_Playables_Playable_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06188, Array_InternalArray__ICollection_Add_186__MethodInfo); DO_APP_FUNC(0x00EE8430, void, Array_InternalArray__ICollection_Add_187, (Array * __this, KeyValuePair_2_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D061C0, Array_InternalArray__ICollection_Add_187__MethodInfo); DO_APP_FUNC(0x00EE8490, void, Array_InternalArray__ICollection_Add_188, (Array * __this, KeyValuePair_2_System_Object_System_Resources_ResourceLocator_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D061B8, Array_InternalArray__ICollection_Add_188__MethodInfo); DO_APP_FUNC(0x00EE84F0, void, Array_InternalArray__ICollection_Add_189, (Array * __this, KeyValuePair_2_System_Object_System_Single_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D061B0, Array_InternalArray__ICollection_Add_189__MethodInfo); DO_APP_FUNC(0x00EE8550, void, Array_InternalArray__ICollection_Add_190, (Array * __this, KeyValuePair_2_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D061A8, Array_InternalArray__ICollection_Add_190__MethodInfo); DO_APP_FUNC(0x00EE85B0, void, Array_InternalArray__ICollection_Add_191, (Array * __this, KeyValuePair_2_System_Object_UnityEngine_UIElements_TextureId_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06160, Array_InternalArray__ICollection_Add_191__MethodInfo); DO_APP_FUNC(0x00EE8610, void, Array_InternalArray__ICollection_Add_192, (Array * __this, KeyValuePair_2_System_Object_System_TimeSpan_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06158, Array_InternalArray__ICollection_Add_192__MethodInfo); DO_APP_FUNC(0x00EE8670, void, Array_InternalArray__ICollection_Add_193, (Array * __this, KeyValuePair_2_System_Object_UdpKit_UdpEndPoint_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06150, Array_InternalArray__ICollection_Add_193__MethodInfo); DO_APP_FUNC(0x00EE86D0, void, Array_InternalArray__ICollection_Add_194, (Array * __this, KeyValuePair_2_System_Object_UnityEngine_Vector2_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06148, Array_InternalArray__ICollection_Add_194__MethodInfo); DO_APP_FUNC(0x00EE8730, void, Array_InternalArray__ICollection_Add_195, (Array * __this, KeyValuePair_2_System_Object_UnityEngine_Vector3_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06180, Array_InternalArray__ICollection_Add_195__MethodInfo); DO_APP_FUNC(0x00EE8790, void, Array_InternalArray__ICollection_Add_196, (Array * __this, KeyValuePair_2_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06178, Array_InternalArray__ICollection_Add_196__MethodInfo); DO_APP_FUNC(0x00EE87F0, void, Array_InternalArray__ICollection_Add_197, (Array * __this, KeyValuePair_2_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06170, Array_InternalArray__ICollection_Add_197__MethodInfo); DO_APP_FUNC(0x00EE8850, void, Array_InternalArray__ICollection_Add_198, (Array * __this, KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06168, Array_InternalArray__ICollection_Add_198__MethodInfo); DO_APP_FUNC(0x00EE88B0, void, Array_InternalArray__ICollection_Add_199, (Array * __this, KeyValuePair_2_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06140, Array_InternalArray__ICollection_Add_199__MethodInfo); DO_APP_FUNC(0x00EE8910, void, Array_InternalArray__ICollection_Add_200, (Array * __this, KeyValuePair_2_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06138, Array_InternalArray__ICollection_Add_200__MethodInfo); DO_APP_FUNC(0x00EE8970, void, Array_InternalArray__ICollection_Add_201, (Array * __this, KeyValuePair_2_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06130, Array_InternalArray__ICollection_Add_201__MethodInfo); DO_APP_FUNC(0x00EE89D0, void, Array_InternalArray__ICollection_Add_202, (Array * __this, KeyValuePair_2_System_Object_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D06128, Array_InternalArray__ICollection_Add_202__MethodInfo); DO_APP_FUNC(0x00EE8A30, void, Array_InternalArray__ICollection_Add_203, (Array * __this, KeyValuePair_2_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09EC8, Array_InternalArray__ICollection_Add_203__MethodInfo); DO_APP_FUNC(0x00EE8A90, void, Array_InternalArray__ICollection_Add_204, (Array * __this, KeyValuePair_2_Photon_Bolt_PrefabId_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09EC0, Array_InternalArray__ICollection_Add_204__MethodInfo); DO_APP_FUNC(0x00EE8AF0, void, Array_InternalArray__ICollection_Add_205, (Array * __this, KeyValuePair_2_UnityEngine_PropertyName_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09EB8, Array_InternalArray__ICollection_Add_205__MethodInfo); DO_APP_FUNC(0x00EE8B50, void, Array_InternalArray__ICollection_Add_206, (Array * __this, KeyValuePair_2_UnityEngine_RaycastHit_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09EB0, Array_InternalArray__ICollection_Add_206__MethodInfo); DO_APP_FUNC(0x00EE8BB0, void, Array_InternalArray__ICollection_Add_207, (Array * __this, KeyValuePair_2_System_Single_SplineMesh_CurveSample_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09E88, Array_InternalArray__ICollection_Add_207__MethodInfo); DO_APP_FUNC(0x00EE8C10, void, Array_InternalArray__ICollection_Add_208, (Array * __this, KeyValuePair_2_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09E80, Array_InternalArray__ICollection_Add_208__MethodInfo); DO_APP_FUNC(0x00EE8C70, void, Array_InternalArray__ICollection_Add_209, (Array * __this, KeyValuePair_2_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09E78, Array_InternalArray__ICollection_Add_209__MethodInfo); DO_APP_FUNC(0x00EE8CD0, void, Array_InternalArray__ICollection_Add_210, (Array * __this, KeyValuePair_2_Photon_Bolt_TypeId_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09E70, Array_InternalArray__ICollection_Add_210__MethodInfo); DO_APP_FUNC(0x00EE8D30, void, Array_InternalArray__ICollection_Add_211, (Array * __this, KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09EA8, Array_InternalArray__ICollection_Add_211__MethodInfo); DO_APP_FUNC(0x00EE8D90, void, Array_InternalArray__ICollection_Add_212, (Array * __this, KeyValuePair_2_System_UInt16_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09EA0, Array_InternalArray__ICollection_Add_212__MethodInfo); DO_APP_FUNC(0x00EE8DF0, void, Array_InternalArray__ICollection_Add_213, (Array * __this, KeyValuePair_2_System_UInt16_Dissonance_PlayerChannel_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09E98, Array_InternalArray__ICollection_Add_213__MethodInfo); DO_APP_FUNC(0x00EE8E50, void, Array_InternalArray__ICollection_Add_214, (Array * __this, KeyValuePair_2_System_UInt16_Dissonance_RoomChannel_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09E90, Array_InternalArray__ICollection_Add_214__MethodInfo); DO_APP_FUNC(0x00EE8EB0, void, Array_InternalArray__ICollection_Add_215, (Array * __this, KeyValuePair_2_System_UInt32_System_Boolean_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09E28, Array_InternalArray__ICollection_Add_215__MethodInfo); DO_APP_FUNC(0x00EE8F10, void, Array_InternalArray__ICollection_Add_216, (Array * __this, KeyValuePair_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09E18, Array_InternalArray__ICollection_Add_216__MethodInfo); DO_APP_FUNC(0x00EE8F70, void, Array_InternalArray__ICollection_Add_217, (Array * __this, KeyValuePair_2_System_UInt32_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09E08, Array_InternalArray__ICollection_Add_217__MethodInfo); DO_APP_FUNC(0x00EE8FD0, void, Array_InternalArray__ICollection_Add_218, (Array * __this, KeyValuePair_2_System_UInt32_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09DF8, Array_InternalArray__ICollection_Add_218__MethodInfo); DO_APP_FUNC(0x00EE9030, void, Array_InternalArray__ICollection_Add_219, (Array * __this, KeyValuePair_2_System_UInt32_SessionClient_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09E68, Array_InternalArray__ICollection_Add_219__MethodInfo); DO_APP_FUNC(0x00EE9090, void, Array_InternalArray__ICollection_Add_220, (Array * __this, KeyValuePair_2_System_UInt64_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09E58, Array_InternalArray__ICollection_Add_220__MethodInfo); DO_APP_FUNC(0x00EE90F0, void, Array_InternalArray__ICollection_Add_221, (Array * __this, KeyValuePair_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09E48, Array_InternalArray__ICollection_Add_221__MethodInfo); DO_APP_FUNC(0x00EE9150, void, Array_InternalArray__ICollection_Add_222, (Array * __this, KeyValuePair_2_UdpKit_UdpChannelName_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09E38, Array_InternalArray__ICollection_Add_222__MethodInfo); DO_APP_FUNC(0x00EE91B0, void, Array_InternalArray__ICollection_Add_223, (Array * __this, KeyValuePair_2_UdpKit_UdpEndPoint_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09DB8, Array_InternalArray__ICollection_Add_223__MethodInfo); DO_APP_FUNC(0x00EE9210, void, Array_InternalArray__ICollection_Add_224, (Array * __this, KeyValuePair_2_UdpKit_UdpEndPoint_System_UInt32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09DA8, Array_InternalArray__ICollection_Add_224__MethodInfo); DO_APP_FUNC(0x00EE9270, void, Array_InternalArray__ICollection_Add_225, (Array * __this, KeyValuePair_2_Photon_Bolt_UniqueId_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09DA0, Array_InternalArray__ICollection_Add_225__MethodInfo); DO_APP_FUNC(0x00EE92D0, void, Array_InternalArray__ICollection_Add_226, (Array * __this, KeyValuePair_2_UnityEngine_Vector3_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09D98, Array_InternalArray__ICollection_Add_226__MethodInfo); DO_APP_FUNC(0x00EE9330, void, Array_InternalArray__ICollection_Add_227, (Array * __this, KeyValuePair_2_UnityEngine_Vector3Int_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09DE8, Array_InternalArray__ICollection_Add_227__MethodInfo); DO_APP_FUNC(0x00EE9390, void, Array_InternalArray__ICollection_Add_228, (Array * __this, KeyValuePair_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09DE0, Array_InternalArray__ICollection_Add_228__MethodInfo); DO_APP_FUNC(0x00EE93F0, void, Array_InternalArray__ICollection_Add_229, (Array * __this, KeyValuePair_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09DD8, Array_InternalArray__ICollection_Add_229__MethodInfo); DO_APP_FUNC(0x00EE9450, void, Array_InternalArray__ICollection_Add_230, (Array * __this, KeyValuePair_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09DD0, Array_InternalArray__ICollection_Add_230__MethodInfo); DO_APP_FUNC(0x00EE94B0, void, Array_InternalArray__ICollection_Add_231, (Array * __this, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09D58, Array_InternalArray__ICollection_Add_231__MethodInfo); DO_APP_FUNC(0x00EE9510, void, Array_InternalArray__ICollection_Add_232, (Array * __this, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09D50, Array_InternalArray__ICollection_Add_232__MethodInfo); DO_APP_FUNC(0x00EE9570, void, Array_InternalArray__ICollection_Add_233, (Array * __this, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09D40, Array_InternalArray__ICollection_Add_233__MethodInfo); DO_APP_FUNC(0x00EE95D0, void, Array_InternalArray__ICollection_Add_234, (Array * __this, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09D38, Array_InternalArray__ICollection_Add_234__MethodInfo); DO_APP_FUNC(0x00EE9630, void, Array_InternalArray__ICollection_Add_235, (Array * __this, KeyValuePair_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09D88, Array_InternalArray__ICollection_Add_235__MethodInfo); DO_APP_FUNC(0x00EE9690, void, Array_InternalArray__ICollection_Add_236, (Array * __this, KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09D80, Array_InternalArray__ICollection_Add_236__MethodInfo); DO_APP_FUNC(0x00EE96F0, void, Array_InternalArray__ICollection_Add_237, (Array * __this, KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09D78, Array_InternalArray__ICollection_Add_237__MethodInfo); DO_APP_FUNC(0x00EE9750, void, Array_InternalArray__ICollection_Add_238, (Array * __this, KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09D68, Array_InternalArray__ICollection_Add_238__MethodInfo); DO_APP_FUNC(0x00EE97B0, void, Array_InternalArray__ICollection_Add_239, (Array * __this, KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09CF8, Array_InternalArray__ICollection_Add_239__MethodInfo); DO_APP_FUNC(0x00EE9810, void, Array_InternalArray__ICollection_Add_240, (Array * __this, KeyValuePair_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09CF0, Array_InternalArray__ICollection_Add_240__MethodInfo); DO_APP_FUNC(0x00EE9870, void, Array_InternalArray__ICollection_Add_241, (Array * __this, ThreadLocal_1_T_LinkedSlotVolatile_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09CE8, Array_InternalArray__ICollection_Add_241__MethodInfo); DO_APP_FUNC(0x00EE98D0, void, Array_InternalArray__ICollection_Add_242, (Array * __this, NativeArray_1_System_UInt16_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09CD8, Array_InternalArray__ICollection_Add_242__MethodInfo); DO_APP_FUNC(0x00EE9930, void, Array_InternalArray__ICollection_Add_243, (Array * __this, NativeArray_1_UnityEngine_UIElements_Vertex_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09D28, Array_InternalArray__ICollection_Add_243__MethodInfo); DO_APP_FUNC(0x00EE9990, void, Array_InternalArray__ICollection_Add_244, (Array * __this, NonAllocDictionary_2_K_V_Node_System_Byte_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09D20, Array_InternalArray__ICollection_Add_244__MethodInfo); DO_APP_FUNC(0x00EE99F0, void, Array_InternalArray__ICollection_Add_245, (Array * __this, NonAllocDictionary_2_K_V_Node_System_Int32_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09D10, Array_InternalArray__ICollection_Add_245__MethodInfo); DO_APP_FUNC(0x00EE9A50, void, Array_InternalArray__ICollection_Add_246, (Array * __this, NonAllocDictionary_2_K_V_Node_System_Object_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09D00, Array_InternalArray__ICollection_Add_246__MethodInfo); DO_APP_FUNC(0x00EE9AB0, void, Array_InternalArray__ICollection_Add_247, (Array * __this, InputStateHistory_1_TValue_Record_TouchState_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09CA0, Array_InternalArray__ICollection_Add_247__MethodInfo); DO_APP_FUNC(0x00EE9B10, void, Array_InternalArray__ICollection_Add_248, (Array * __this, RenderGraphResourcePool_1_Type_ResourceLogInfo_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09C98, Array_InternalArray__ICollection_Add_248__MethodInfo); DO_APP_FUNC(0x00EE9B70, void, Array_InternalArray__ICollection_Add_249, (Array * __this, STuple_2_System_Object_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09C90, Array_InternalArray__ICollection_Add_249__MethodInfo); DO_APP_FUNC(0x00EE9BD0, void, Array_InternalArray__ICollection_Add_250, (Array * __this, HashSet_1_T_Slot_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09C80, Array_InternalArray__ICollection_Add_250__MethodInfo); DO_APP_FUNC(0x00EE9C30, void, Array_InternalArray__ICollection_Add_251, (Array * __this, HashSet_1_T_Slot_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09CD0, Array_InternalArray__ICollection_Add_251__MethodInfo); DO_APP_FUNC(0x00EE9C90, void, Array_InternalArray__ICollection_Add_252, (Array * __this, Set_1_TElement_Slot_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09CC0, Array_InternalArray__ICollection_Add_252__MethodInfo); DO_APP_FUNC(0x00EE9CF0, void, Array_InternalArray__ICollection_Add_253, (Array * __this, HashSet_1_T_Slot_System_Int32Enum_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09CB8, Array_InternalArray__ICollection_Add_253__MethodInfo); DO_APP_FUNC(0x00EE9D50, void, Array_InternalArray__ICollection_Add_254, (Array * __this, HashSet_1_T_Slot_UnityEngine_InputSystem_Utilities_InternedString_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09CB0, Array_InternalArray__ICollection_Add_254__MethodInfo); DO_APP_FUNC(0x00EE9DB0, void, Array_InternalArray__ICollection_Add_255, (Array * __this, HashSet_1_T_Slot_Photon_Bolt_NetworkId_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09C40, Array_InternalArray__ICollection_Add_255__MethodInfo); DO_APP_FUNC(0x00EE9E10, void, Array_InternalArray__ICollection_Add_256, (Array * __this, HashSet_1_T_Slot_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09C30, Array_InternalArray__ICollection_Add_256__MethodInfo); DO_APP_FUNC(0x00EE9E70, void, Array_InternalArray__ICollection_Add_257, (Array * __this, Set_1_TElement_Slot_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09C20, Array_InternalArray__ICollection_Add_257__MethodInfo); DO_APP_FUNC(0x00EE9ED0, void, Array_InternalArray__ICollection_Add_258, (Array * __this, ConcurrentQueue_1_T_Segment_T_Slot_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09C18, Array_InternalArray__ICollection_Add_258__MethodInfo); DO_APP_FUNC(0x00EE9F30, void, Array_InternalArray__ICollection_Add_259, (Array * __this, HashSet_1_T_Slot_System_UInt32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09C70, Array_InternalArray__ICollection_Add_259__MethodInfo); DO_APP_FUNC(0x00EE9F90, void, Array_InternalArray__ICollection_Add_260, (Array * __this, HashSet_1_T_Slot_System_UInt64_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09C68, Array_InternalArray__ICollection_Add_260__MethodInfo); DO_APP_FUNC(0x00EE9FF0, void, Array_InternalArray__ICollection_Add_261, (Array * __this, HashSet_1_T_Slot_UdpKit_UdpEndPoint_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09C60, Array_InternalArray__ICollection_Add_261__MethodInfo); DO_APP_FUNC(0x00EEA050, void, Array_InternalArray__ICollection_Add_262, (Array * __this, HashSet_1_T_Slot_UdpKit_UdpIPv4Address_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09C50, Array_InternalArray__ICollection_Add_262__MethodInfo); DO_APP_FUNC(0x00EEA0B0, void, Array_InternalArray__ICollection_Add_263, (Array * __this, HashSet_1_T_Slot_UnityEngine_Vector3_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09BD8, Array_InternalArray__ICollection_Add_263__MethodInfo); DO_APP_FUNC(0x00EEA110, void, Array_InternalArray__ICollection_Add_264, (Array * __this, HashSet_1_T_Slot_UnityEngine_Vector3Int_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09BC8, Array_InternalArray__ICollection_Add_264__MethodInfo); DO_APP_FUNC(0x00EEA170, void, Array_InternalArray__ICollection_Add_265, (Array * __this, StylePropertyAnimationSystem_Values_1_T_StyleData_Background_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09BC0, Array_InternalArray__ICollection_Add_265__MethodInfo); DO_APP_FUNC(0x00EEA1D0, void, Array_InternalArray__ICollection_Add_266, (Array * __this, StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09BB0, Array_InternalArray__ICollection_Add_266__MethodInfo); DO_APP_FUNC(0x00EEA230, void, Array_InternalArray__ICollection_Add_267, (Array * __this, StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09C10, Array_InternalArray__ICollection_Add_267__MethodInfo); DO_APP_FUNC(0x00EEA290, void, Array_InternalArray__ICollection_Add_268, (Array * __this, StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09C00, Array_InternalArray__ICollection_Add_268__MethodInfo); DO_APP_FUNC(0x00EEA2F0, void, Array_InternalArray__ICollection_Add_269, (Array * __this, StylePropertyAnimationSystem_Values_1_T_StyleData_Length_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09BF8, Array_InternalArray__ICollection_Add_269__MethodInfo); DO_APP_FUNC(0x00EEA350, void, Array_InternalArray__ICollection_Add_270, (Array * __this, StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09BE8, Array_InternalArray__ICollection_Add_270__MethodInfo); DO_APP_FUNC(0x00EEA3B0, void, Array_InternalArray__ICollection_Add_271, (Array * __this, StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09B60, Array_InternalArray__ICollection_Add_271__MethodInfo); DO_APP_FUNC(0x00EEA410, void, Array_InternalArray__ICollection_Add_272, (Array * __this, StylePropertyAnimationSystem_Values_1_T_StyleData_Scale_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09B50, Array_InternalArray__ICollection_Add_272__MethodInfo); DO_APP_FUNC(0x00EEA470, void, Array_InternalArray__ICollection_Add_273, (Array * __this, StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09B38, Array_InternalArray__ICollection_Add_273__MethodInfo); DO_APP_FUNC(0x00EEA4D0, void, Array_InternalArray__ICollection_Add_274, (Array * __this, StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09B30, Array_InternalArray__ICollection_Add_274__MethodInfo); DO_APP_FUNC(0x00EEA530, void, Array_InternalArray__ICollection_Add_275, (Array * __this, StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09BA0, Array_InternalArray__ICollection_Add_275__MethodInfo); DO_APP_FUNC(0x00EEA590, void, Array_InternalArray__ICollection_Add_276, (Array * __this, StylePropertyAnimationSystem_Values_1_T_StyleData_Translate_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09B90, Array_InternalArray__ICollection_Add_276__MethodInfo); DO_APP_FUNC(0x00EEA5F0, void, Array_InternalArray__ICollection_Add_277, (Array * __this, TMP_TextProcessingStack_1_UnityEngine_Color32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09B80, Array_InternalArray__ICollection_Add_277__MethodInfo); DO_APP_FUNC(0x00EEA650, void, Array_InternalArray__ICollection_Add_278, (Array * __this, TMP_TextProcessingStack_1_HighlightState_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09B70, Array_InternalArray__ICollection_Add_278__MethodInfo); DO_APP_FUNC(0x00EEA6B0, void, Array_InternalArray__ICollection_Add_279, (Array * __this, TMP_TextProcessingStack_1_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09AF0, Array_InternalArray__ICollection_Add_279__MethodInfo); DO_APP_FUNC(0x00EEA710, void, Array_InternalArray__ICollection_Add_280, (Array * __this, TMP_TextProcessingStack_1_System_Int32Enum_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09AE0, Array_InternalArray__ICollection_Add_280__MethodInfo); DO_APP_FUNC(0x00EEA770, void, Array_InternalArray__ICollection_Add_281, (Array * __this, TMP_TextProcessingStack_1_MaterialReference_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09AD0, Array_InternalArray__ICollection_Add_281__MethodInfo); DO_APP_FUNC(0x00EEA7D0, void, Array_InternalArray__ICollection_Add_282, (Array * __this, TMP_TextProcessingStack_1_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09AC0, Array_InternalArray__ICollection_Add_282__MethodInfo); DO_APP_FUNC(0x00EEA830, void, Array_InternalArray__ICollection_Add_283, (Array * __this, TMP_TextProcessingStack_1_System_Single_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09B28, Array_InternalArray__ICollection_Add_283__MethodInfo); DO_APP_FUNC(0x00EEA890, void, Array_InternalArray__ICollection_Add_284, (Array * __this, TMP_TextProcessingStack_1_WordWrapState_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09B20, Array_InternalArray__ICollection_Add_284__MethodInfo); DO_APP_FUNC(0x00EEA8F0, void, Array_InternalArray__ICollection_Add_285, (Array * __this, StylePropertyAnimationSystem_Values_1_T_TimingData_Background_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09B18, Array_InternalArray__ICollection_Add_285__MethodInfo); DO_APP_FUNC(0x00EEA950, void, Array_InternalArray__ICollection_Add_286, (Array * __this, StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09B08, Array_InternalArray__ICollection_Add_286__MethodInfo); DO_APP_FUNC(0x00EEA9B0, void, Array_InternalArray__ICollection_Add_287, (Array * __this, StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09A70, Array_InternalArray__ICollection_Add_287__MethodInfo); DO_APP_FUNC(0x00EEAA10, void, Array_InternalArray__ICollection_Add_288, (Array * __this, StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09A68, Array_InternalArray__ICollection_Add_288__MethodInfo); DO_APP_FUNC(0x00EEAA70, void, Array_InternalArray__ICollection_Add_289, (Array * __this, StylePropertyAnimationSystem_Values_1_T_TimingData_Length_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09A60, Array_InternalArray__ICollection_Add_289__MethodInfo); DO_APP_FUNC(0x00EEAAD0, void, Array_InternalArray__ICollection_Add_290, (Array * __this, StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09A50, Array_InternalArray__ICollection_Add_290__MethodInfo); DO_APP_FUNC(0x00EEAB30, void, Array_InternalArray__ICollection_Add_291, (Array * __this, StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09AB8, Array_InternalArray__ICollection_Add_291__MethodInfo); DO_APP_FUNC(0x00EEAB90, void, Array_InternalArray__ICollection_Add_292, (Array * __this, StylePropertyAnimationSystem_Values_1_T_TimingData_Scale_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09AA8, Array_InternalArray__ICollection_Add_292__MethodInfo); DO_APP_FUNC(0x00EEABF0, void, Array_InternalArray__ICollection_Add_293, (Array * __this, StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09A90, Array_InternalArray__ICollection_Add_293__MethodInfo); DO_APP_FUNC(0x00EEAC50, void, Array_InternalArray__ICollection_Add_294, (Array * __this, StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09A80, Array_InternalArray__ICollection_Add_294__MethodInfo); DO_APP_FUNC(0x00EEACB0, void, Array_InternalArray__ICollection_Add_295, (Array * __this, StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09A18, Array_InternalArray__ICollection_Add_295__MethodInfo); DO_APP_FUNC(0x00EEAD10, void, Array_InternalArray__ICollection_Add_296, (Array * __this, StylePropertyAnimationSystem_Values_1_T_TimingData_Translate_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09A08, Array_InternalArray__ICollection_Add_296__MethodInfo); DO_APP_FUNC(0x00EEAD70, void, Array_InternalArray__ICollection_Add_297, (Array * __this, ValueTuple_1_Boolean_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D099F8, Array_InternalArray__ICollection_Add_297__MethodInfo); DO_APP_FUNC(0x00EEADD0, void, Array_InternalArray__ICollection_Add_298, (Array * __this, ValueTuple_2_Int32_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D099E8, Array_InternalArray__ICollection_Add_298__MethodInfo); DO_APP_FUNC(0x00EEAE30, void, Array_InternalArray__ICollection_Add_299, (Array * __this, ValueTuple_2_Int32_UnityEngine_Vector2Int_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09A48, Array_InternalArray__ICollection_Add_299__MethodInfo); DO_APP_FUNC(0x00EEAE90, void, Array_InternalArray__ICollection_Add_300, (Array * __this, ValueTuple_2_IntPtr_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09A40, Array_InternalArray__ICollection_Add_300__MethodInfo); DO_APP_FUNC(0x00EEAEF0, void, Array_InternalArray__ICollection_Add_301, (Array * __this, ValueTuple_2_Object_ValueTuple_2_Object_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09A38, Array_InternalArray__ICollection_Add_301__MethodInfo); DO_APP_FUNC(0x00EEAF50, void, Array_InternalArray__ICollection_Add_302, (Array * __this, ValueTuple_2_Object_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09A28, Array_InternalArray__ICollection_Add_302__MethodInfo); DO_APP_FUNC(0x00EEAFB0, void, Array_InternalArray__ICollection_Add_303, (Array * __this, ValueTuple_2_Object_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D099A8, Array_InternalArray__ICollection_Add_303__MethodInfo); DO_APP_FUNC(0x00EEB010, void, Array_InternalArray__ICollection_Add_304, (Array * __this, ValueTuple_2_UnityEngine_Vector3Int_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09998, Array_InternalArray__ICollection_Add_304__MethodInfo); DO_APP_FUNC(0x00EEB070, void, Array_InternalArray__ICollection_Add_305, (Array * __this, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09990, Array_InternalArray__ICollection_Add_305__MethodInfo); DO_APP_FUNC(0x00EEB0D0, void, Array_InternalArray__ICollection_Add_306, (Array * __this, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09988, Array_InternalArray__ICollection_Add_306__MethodInfo); DO_APP_FUNC(0x00EEB130, void, Array_InternalArray__ICollection_Add_307, (Array * __this, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D099E0, Array_InternalArray__ICollection_Add_307__MethodInfo); DO_APP_FUNC(0x00EEB190, void, Array_InternalArray__ICollection_Add_308, (Array * __this, ValueTuple_3_Object_Object_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D099D8, Array_InternalArray__ICollection_Add_308__MethodInfo); DO_APP_FUNC(0x00EEB1F0, void, Array_InternalArray__ICollection_Add_309, (Array * __this, AnimatorClipInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D099C8, Array_InternalArray__ICollection_Add_309__MethodInfo); DO_APP_FUNC(0x00EEB250, void, Array_InternalArray__ICollection_Add_310, (Array * __this, AstarWorkItem item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D099B8, Array_InternalArray__ICollection_Add_310__MethodInfo); DO_APP_FUNC(0x00EEB2B0, void, Array_InternalArray__ICollection_Add_311, (Array * __this, AsyncOperationHandle item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09948, Array_InternalArray__ICollection_Add_311__MethodInfo); DO_APP_FUNC(0x00EEB310, void, Array_InternalArray__ICollection_Add_312, (Array * __this, AxisCalibrationData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09940, Array_InternalArray__ICollection_Add_312__MethodInfo); DO_APP_FUNC(0x00EEB370, void, Array_InternalArray__ICollection_Add_313, (Array * __this, Background item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09938, Array_InternalArray__ICollection_Add_313__MethodInfo); DO_APP_FUNC(0x00EEB3D0, void, Array_InternalArray__ICollection_Add_314, (Array * __this, BatchVisibility item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09928, Array_InternalArray__ICollection_Add_314__MethodInfo); DO_APP_FUNC(0x00EEB430, void, Array_InternalArray__ICollection_Add_315, (Array * __this, BoltPeer item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09980, Array_InternalArray__ICollection_Add_315__MethodInfo); DO_APP_FUNC(0x00EEB490, void, Array_InternalArray__ICollection_Add_316, (Array * __this, BoltPhysicsHit item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09970, Array_InternalArray__ICollection_Add_316__MethodInfo); DO_APP_FUNC(0x00EEB4F0, void, Array_InternalArray__ICollection_Add_317, (Array * __this, BoneWeight item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09958, Array_InternalArray__ICollection_Add_317__MethodInfo); DO_APP_FUNC(0x00EEB550, void, Array_InternalArray__ICollection_Add_318, (Array * __this, BoneWeight1 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09950, Array_InternalArray__ICollection_Add_318__MethodInfo); DO_APP_FUNC(0x00EEB5B0, void, Array_InternalArray__ICollection_Add_319, (Array * __this, bool item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D098E0, Array_InternalArray__ICollection_Add_319__MethodInfo); DO_APP_FUNC(0x00EEB610, void, Array_InternalArray__ICollection_Add_320, (Array * __this, BoundedPlane item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D098D0, Array_InternalArray__ICollection_Add_320__MethodInfo); DO_APP_FUNC(0x00EEB670, void, Array_InternalArray__ICollection_Add_321, (Array * __this, BoundingSphere item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D098C8, Array_InternalArray__ICollection_Add_321__MethodInfo); DO_APP_FUNC(0x00EEB6D0, void, Array_InternalArray__ICollection_Add_322, (Array * __this, Bounds item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D098C0, Array_InternalArray__ICollection_Add_322__MethodInfo); DO_APP_FUNC(0x00EEB730, void, Array_InternalArray__ICollection_Add_323, (Array * __this, uint8_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09920, Array_InternalArray__ICollection_Add_323__MethodInfo); DO_APP_FUNC(0x00EEB790, void, Array_InternalArray__ICollection_Add_324, (Array * __this, ByteEnum__Enum item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09910, Array_InternalArray__ICollection_Add_324__MethodInfo); DO_APP_FUNC(0x00EEB7F0, void, Array_InternalArray__ICollection_Add_325, (Array * __this, CancellationToken item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09900, Array_InternalArray__ICollection_Add_325__MethodInfo); DO_APP_FUNC(0x00EEB850, void, Array_InternalArray__ICollection_Add_326, (Array * __this, CancellationTokenRegistration item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D098F0, Array_InternalArray__ICollection_Add_326__MethodInfo); DO_APP_FUNC(0x00EEB8B0, void, Array_InternalArray__ICollection_Add_327, (Array * __this, uint16_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09890, Array_InternalArray__ICollection_Add_327__MethodInfo); DO_APP_FUNC(0x00EEB910, void, Array_InternalArray__ICollection_Add_328, (Array * __this, ClientInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09880, Array_InternalArray__ICollection_Add_328__MethodInfo); DO_APP_FUNC(0x00EEB970, void, Array_InternalArray__ICollection_Add_329, (Array * __this, ClothSkinningCoefficient item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09878, Array_InternalArray__ICollection_Add_329__MethodInfo); DO_APP_FUNC(0x00EEB9D0, void, Array_InternalArray__ICollection_Add_330, (Array * __this, ClothSphereColliderPair item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09870, Array_InternalArray__ICollection_Add_330__MethodInfo); DO_APP_FUNC(0x00EEBA30, void, Array_InternalArray__ICollection_Add_331, (Array * __this, Color item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D098B8, Array_InternalArray__ICollection_Add_331__MethodInfo); DO_APP_FUNC(0x00EEBA90, void, Array_InternalArray__ICollection_Add_332, (Array * __this, Color32 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D098B0, Array_InternalArray__ICollection_Add_332__MethodInfo); DO_APP_FUNC(0x00EEBAF0, void, Array_InternalArray__ICollection_Add_333, (Array * __this, ColorBlock item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D098A8, Array_InternalArray__ICollection_Add_333__MethodInfo); DO_APP_FUNC(0x00EEBB50, void, Array_InternalArray__ICollection_Add_334, (Array * __this, CombineInstance item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09898, Array_InternalArray__ICollection_Add_334__MethodInfo); DO_APP_FUNC(0x00EEBBB0, void, Array_InternalArray__ICollection_Add_335, (Array * __this, CompactVoxelCell item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09828, Array_InternalArray__ICollection_Add_335__MethodInfo); DO_APP_FUNC(0x00EEBC10, void, Array_InternalArray__ICollection_Add_336, (Array * __this, CompactVoxelSpan item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09818, Array_InternalArray__ICollection_Add_336__MethodInfo); DO_APP_FUNC(0x00EEBC70, void, Array_InternalArray__ICollection_Add_337, (Array * __this, ComputedStyle item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09800, Array_InternalArray__ICollection_Add_337__MethodInfo); DO_APP_FUNC(0x00EEBCD0, void, Array_InternalArray__ICollection_Add_338, (Array * __this, ComputedTransitionProperty item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D097F8, Array_InternalArray__ICollection_Add_338__MethodInfo); DO_APP_FUNC(0x00EEBD30, void, Array_InternalArray__ICollection_Add_339, (Array * __this, ConfigurationDescriptor item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09858, Array_InternalArray__ICollection_Add_339__MethodInfo); DO_APP_FUNC(0x00EEBD90, void, Array_InternalArray__ICollection_Add_340, (Array * __this, Connection item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09848, Array_InternalArray__ICollection_Add_340__MethodInfo); DO_APP_FUNC(0x00EEBDF0, void, Array_InternalArray__ICollection_Add_341, (Array * __this, ContactPoint item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09840, Array_InternalArray__ICollection_Add_341__MethodInfo); DO_APP_FUNC(0x00EEBE50, void, Array_InternalArray__ICollection_Add_342, (Array * __this, ContactPoint2D item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09838, Array_InternalArray__ICollection_Add_342__MethodInfo); DO_APP_FUNC(0x00EEBEB0, void, Array_InternalArray__ICollection_Add_343, (Array * __this, ControllerPollingInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D097B8, Array_InternalArray__ICollection_Add_343__MethodInfo); DO_APP_FUNC(0x00EEBF10, void, Array_InternalArray__ICollection_Add_344, (Array * __this, ControllerTemplateElementTarget item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D097A0, Array_InternalArray__ICollection_Add_344__MethodInfo); DO_APP_FUNC(0x00EEBF70, void, Array_InternalArray__ICollection_Add_345, (Array * __this, CurveSample item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09790, Array_InternalArray__ICollection_Add_345__MethodInfo); DO_APP_FUNC(0x00EEBFD0, void, Array_InternalArray__ICollection_Add_346, (Array * __this, CustomAttributeNamedArgument item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09780, Array_InternalArray__ICollection_Add_346__MethodInfo); DO_APP_FUNC(0x00EEC030, void, Array_InternalArray__ICollection_Add_347, (Array * __this, CustomAttributeTypedArgument item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D097F0, Array_InternalArray__ICollection_Add_347__MethodInfo); DO_APP_FUNC(0x00EEC090, void, Array_InternalArray__ICollection_Add_348, (Array * __this, DateTime item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D097E8, Array_InternalArray__ICollection_Add_348__MethodInfo); DO_APP_FUNC(0x00EEC0F0, void, Array_InternalArray__ICollection_Add_349, (Array * __this, DateTimeOffset item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D097D8, Array_InternalArray__ICollection_Add_349__MethodInfo); DO_APP_FUNC(0x00EEC150, void, Array_InternalArray__ICollection_Add_350, (Array * __this, Decimal item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D097C8, Array_InternalArray__ICollection_Add_350__MethodInfo); DO_APP_FUNC(0x00EEC1B0, void, Array_InternalArray__ICollection_Add_351, (Array * __this, DetailInstanceTransform item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09750, Array_InternalArray__ICollection_Add_351__MethodInfo); DO_APP_FUNC(0x00EEC210, void, Array_InternalArray__ICollection_Add_352, (Array * __this, DiagnosticEvent item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09748, Array_InternalArray__ICollection_Add_352__MethodInfo); DO_APP_FUNC(0x00EEC270, void, Array_InternalArray__ICollection_Add_353, (Array * __this, DictionaryEntry item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09738, Array_InternalArray__ICollection_Add_353__MethodInfo); DO_APP_FUNC(0x00EEC2D0, void, Array_InternalArray__ICollection_Add_354, (Array * __this, Dimension item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09730, Array_InternalArray__ICollection_Add_354__MethodInfo); DO_APP_FUNC(0x00EEC330, void, Array_InternalArray__ICollection_Add_355, (Array * __this, double item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09770, Array_InternalArray__ICollection_Add_355__MethodInfo); DO_APP_FUNC(0x00EEC390, void, Array_InternalArray__ICollection_Add_356, (Array * __this, DrawBufferRange item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09768, Array_InternalArray__ICollection_Add_356__MethodInfo); DO_APP_FUNC(0x00EEC3F0, void, Array_InternalArray__ICollection_Add_357, (Array * __this, EasingFunction item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09760, Array_InternalArray__ICollection_Add_357__MethodInfo); DO_APP_FUNC(0x00EEC450, void, Array_InternalArray__ICollection_Add_358, (Array * __this, ElementAssignmentConflictInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09758, Array_InternalArray__ICollection_Add_358__MethodInfo); DO_APP_FUNC(0x00EEC4B0, void, Array_InternalArray__ICollection_Add_359, (Array * __this, Entitlement item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D096F8, Array_InternalArray__ICollection_Add_359__MethodInfo); DO_APP_FUNC(0x00EEC510, void, Array_InternalArray__ICollection_Add_360, (Array * __this, Ephemeron item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D096F0, Array_InternalArray__ICollection_Add_360__MethodInfo); DO_APP_FUNC(0x00EEC570, void, Array_InternalArray__ICollection_Add_361, (Array * __this, EventReliable item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D096E8, Array_InternalArray__ICollection_Add_361__MethodInfo); DO_APP_FUNC(0x00EEC5D0, void, Array_InternalArray__ICollection_Add_362, (Array * __this, EventUnreliable item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D096E0, Array_InternalArray__ICollection_Add_362__MethodInfo); DO_APP_FUNC(0x00EEC630, void, Array_InternalArray__ICollection_Add_363, (Array * __this, FORMATETC item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09720, Array_InternalArray__ICollection_Add_363__MethodInfo); DO_APP_FUNC(0x00EEC690, void, Array_InternalArray__ICollection_Add_364, (Array * __this, FileStat item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09718, Array_InternalArray__ICollection_Add_364__MethodInfo); DO_APP_FUNC(0x00EEC6F0, void, Array_InternalArray__ICollection_Add_365, (Array * __this, FontDefinition item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09708, Array_InternalArray__ICollection_Add_365__MethodInfo); DO_APP_FUNC(0x00EEC750, void, Array_InternalArray__ICollection_Add_366, (Array * __this, FontWeightPair item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09700, Array_InternalArray__ICollection_Add_366__MethodInfo); DO_APP_FUNC(0x00EEC7B0, void, Array_InternalArray__ICollection_Add_367, (Array * __this, FrameFormat item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D096A8, Array_InternalArray__ICollection_Add_367__MethodInfo); DO_APP_FUNC(0x00EEC810, void, Array_InternalArray__ICollection_Add_368, (Array * __this, GCHandle item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09698, Array_InternalArray__ICollection_Add_368__MethodInfo); DO_APP_FUNC(0x00EEC870, void, Array_InternalArray__ICollection_Add_369, (Array * __this, GfxUpdateBufferRange item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09690, Array_InternalArray__ICollection_Add_369__MethodInfo); DO_APP_FUNC(0x00EEC8D0, void, Array_InternalArray__ICollection_Add_370, (Array * __this, GlobalKeyword item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09688, Array_InternalArray__ICollection_Add_370__MethodInfo); DO_APP_FUNC(0x00EEC930, void, Array_InternalArray__ICollection_Add_371, (Array * __this, GlyphMarshallingStruct item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D096D8, Array_InternalArray__ICollection_Add_371__MethodInfo); DO_APP_FUNC(0x00EEC990, void, Array_InternalArray__ICollection_Add_372, (Array * __this, GlyphPairAdjustmentRecord item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D096D0, Array_InternalArray__ICollection_Add_372__MethodInfo); DO_APP_FUNC(0x00EEC9F0, void, Array_InternalArray__ICollection_Add_373, (Array * __this, GlyphRect item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D096C8, Array_InternalArray__ICollection_Add_373__MethodInfo); DO_APP_FUNC(0x00EECA50, void, Array_InternalArray__ICollection_Add_374, (Array * __this, GradientAlphaKey item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D096B8, Array_InternalArray__ICollection_Add_374__MethodInfo); DO_APP_FUNC(0x00EECAB0, void, Array_InternalArray__ICollection_Add_375, (Array * __this, GradientColorKey item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09650, Array_InternalArray__ICollection_Add_375__MethodInfo); DO_APP_FUNC(0x00EECB10, void, Array_InternalArray__ICollection_Add_376, (Array * __this, GradientSettings item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09640, Array_InternalArray__ICollection_Add_376__MethodInfo); DO_APP_FUNC(0x00EECB70, void, Array_InternalArray__ICollection_Add_377, (Array * __this, Guid item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09630, Array_InternalArray__ICollection_Add_377__MethodInfo); DO_APP_FUNC(0x00EECBD0, void, Array_InternalArray__ICollection_Add_378, (Array * __this, HandJointLocation item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09620, Array_InternalArray__ICollection_Add_378__MethodInfo); DO_APP_FUNC(0x00EECC30, void, Array_InternalArray__ICollection_Add_379, (Array * __this, Hash128 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09678, Array_InternalArray__ICollection_Add_379__MethodInfo); DO_APP_FUNC(0x00EECC90, void, Array_InternalArray__ICollection_Add_380, (Array * __this, HeaderVariantInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09668, Array_InternalArray__ICollection_Add_380__MethodInfo); DO_APP_FUNC(0x00EECCF0, void, Array_InternalArray__ICollection_Add_381, (Array * __this, HighlightState item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09660, Array_InternalArray__ICollection_Add_381__MethodInfo); DO_APP_FUNC(0x00EECD50, void, Array_InternalArray__ICollection_Add_382, (Array * __this, HumanBone item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09658, Array_InternalArray__ICollection_Add_382__MethodInfo); DO_APP_FUNC(0x00EECDB0, void, Array_InternalArray__ICollection_Add_383, (Array * __this, ImpactEffect item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D095D8, Array_InternalArray__ICollection_Add_383__MethodInfo); DO_APP_FUNC(0x00EECE10, void, Array_InternalArray__ICollection_Add_384, (Array * __this, InputActionSourceData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D095C8, Array_InternalArray__ICollection_Add_384__MethodInfo); DO_APP_FUNC(0x00EECE70, void, Array_InternalArray__ICollection_Add_385, (Array * __this, InputBinding item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D095B8, Array_InternalArray__ICollection_Add_385__MethodInfo); DO_APP_FUNC(0x00EECED0, void, Array_InternalArray__ICollection_Add_386, (Array * __this, InputControlScheme item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D095A8, Array_InternalArray__ICollection_Add_386__MethodInfo); DO_APP_FUNC(0x00EECF30, void, Array_InternalArray__ICollection_Add_387, (Array * __this, InputDevice_1 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09610, Array_InternalArray__ICollection_Add_387__MethodInfo); DO_APP_FUNC(0x00EECF90, void, Array_InternalArray__ICollection_Add_388, (Array * __this, InputDeviceDescription item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09608, Array_InternalArray__ICollection_Add_388__MethodInfo); DO_APP_FUNC(0x00EECFF0, void, Array_InternalArray__ICollection_Add_389, (Array * __this, InputEventPtr item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D095F8, Array_InternalArray__ICollection_Add_389__MethodInfo); DO_APP_FUNC(0x00EED050, void, Array_InternalArray__ICollection_Add_390, (Array * __this, InputUser item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D095E8, Array_InternalArray__ICollection_Add_390__MethodInfo); DO_APP_FUNC(0x00EED0B0, void, Array_InternalArray__ICollection_Add_391, (Array * __this, int16_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09578, Array_InternalArray__ICollection_Add_391__MethodInfo); DO_APP_FUNC(0x00EED110, void, Array_InternalArray__ICollection_Add_392, (Array * __this, Int2 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09570, Array_InternalArray__ICollection_Add_392__MethodInfo); DO_APP_FUNC(0x00EED170, void, Array_InternalArray__ICollection_Add_393, (Array * __this, Int3 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09568, Array_InternalArray__ICollection_Add_393__MethodInfo); DO_APP_FUNC(0x00EED1D0, void, Array_InternalArray__ICollection_Add_394, (Array * __this, int32_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09558, Array_InternalArray__ICollection_Add_394__MethodInfo); DO_APP_FUNC(0x00EED230, void, Array_InternalArray__ICollection_Add_395, (Array * __this, Int32Enum__Enum item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09598, Array_InternalArray__ICollection_Add_395__MethodInfo); DO_APP_FUNC(0x00EED290, void, Array_InternalArray__ICollection_Add_396, (Array * __this, int64_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09590, Array_InternalArray__ICollection_Add_396__MethodInfo); DO_APP_FUNC(0x00EED2F0, void, Array_InternalArray__ICollection_Add_397, (Array * __this, IntPoint item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09588, Array_InternalArray__ICollection_Add_397__MethodInfo); DO_APP_FUNC(0x00EED350, void, Array_InternalArray__ICollection_Add_398, (Array * __this, void * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09580, Array_InternalArray__ICollection_Add_398__MethodInfo); DO_APP_FUNC(0x00EED3B0, void, Array_InternalArray__ICollection_Add_399, (Array * __this, IntRect item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09528, Array_InternalArray__ICollection_Add_399__MethodInfo); DO_APP_FUNC(0x00EED410, void, Array_InternalArray__ICollection_Add_400, (Array * __this, InternalCodePageDataItem item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09520, Array_InternalArray__ICollection_Add_400__MethodInfo); DO_APP_FUNC(0x00EED470, void, Array_InternalArray__ICollection_Add_401, (Array * __this, InternalEncodingDataItem item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09518, Array_InternalArray__ICollection_Add_401__MethodInfo); DO_APP_FUNC(0x00EED4D0, void, Array_InternalArray__ICollection_Add_402, (Array * __this, InternedString item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09510, Array_InternalArray__ICollection_Add_402__MethodInfo); DO_APP_FUNC(0x00EED530, void, Array_InternalArray__ICollection_Add_403, (Array * __this, InterpretedFrameInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09550, Array_InternalArray__ICollection_Add_403__MethodInfo); DO_APP_FUNC(0x00EED590, void, Array_InternalArray__ICollection_Add_404, (Array * __this, IntervalTreeNode item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09548, Array_InternalArray__ICollection_Add_404__MethodInfo); DO_APP_FUNC(0x00EED5F0, void, Array_InternalArray__ICollection_Add_405, (Array * __this, IpQCkqlgJLyrFpAOyBfUxXQpJsWK item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09540, Array_InternalArray__ICollection_Add_405__MethodInfo); DO_APP_FUNC(0x00EED650, void, Array_InternalArray__ICollection_Add_406, (Array * __this, ItemDefinitionAmount item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09538, Array_InternalArray__ICollection_Add_406__MethodInfo); DO_APP_FUNC(0x00EED6B0, void, Array_InternalArray__ICollection_Add_407, (Array * __this, Keyframe item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D094E8, Array_InternalArray__ICollection_Add_407__MethodInfo); DO_APP_FUNC(0x00EED710, void, Array_InternalArray__ICollection_Add_408, (Array * __this, KickedPlayer item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D094E0, Array_InternalArray__ICollection_Add_408__MethodInfo); DO_APP_FUNC(0x00EED770, void, Array_InternalArray__ICollection_Add_409, (Array * __this, LOD item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D094D8, Array_InternalArray__ICollection_Add_409__MethodInfo); DO_APP_FUNC(0x00EED7D0, void, Array_InternalArray__ICollection_Add_410, (Array * __this, LayerMask item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D094D0, Array_InternalArray__ICollection_Add_410__MethodInfo); DO_APP_FUNC(0x00EED830, void, Array_InternalArray__ICollection_Add_411, (Array * __this, Length item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09508, Array_InternalArray__ICollection_Add_411__MethodInfo); DO_APP_FUNC(0x00EED890, void, Array_InternalArray__ICollection_Add_412, (Array * __this, LightDataGI item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09500, Array_InternalArray__ICollection_Add_412__MethodInfo); DO_APP_FUNC(0x00EED8F0, void, Array_InternalArray__ICollection_Add_413, (Array * __this, LineInfo_1 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D094F8, Array_InternalArray__ICollection_Add_413__MethodInfo); DO_APP_FUNC(0x00EED950, void, Array_InternalArray__ICollection_Add_414, (Array * __this, LinkInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D094F0, Array_InternalArray__ICollection_Add_414__MethodInfo); DO_APP_FUNC(0x00EED9B0, void, Array_InternalArray__ICollection_Add_415, (Array * __this, LocalDefinition item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D094A0, Array_InternalArray__ICollection_Add_415__MethodInfo); DO_APP_FUNC(0x00EEDA10, void, Array_InternalArray__ICollection_Add_416, (Array * __this, LocalKeyword item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09490, Array_InternalArray__ICollection_Add_416__MethodInfo); DO_APP_FUNC(0x00EEDA70, void, Array_InternalArray__ICollection_Add_417, (Array * __this, ManipulatorActivationFilter item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09488, Array_InternalArray__ICollection_Add_417__MethodInfo); DO_APP_FUNC(0x00EEDAD0, void, Array_InternalArray__ICollection_Add_418, (Array * __this, MaterialReference item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09480, Array_InternalArray__ICollection_Add_418__MethodInfo); DO_APP_FUNC(0x00EEDB30, void, Array_InternalArray__ICollection_Add_419, (Array * __this, MaterialReference_1 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D094C8, Array_InternalArray__ICollection_Add_419__MethodInfo); DO_APP_FUNC(0x00EEDB90, void, Array_InternalArray__ICollection_Add_420, (Array * __this, Matrix4x4 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D094C0, Array_InternalArray__ICollection_Add_420__MethodInfo); DO_APP_FUNC(0x00EEDBF0, void, Array_InternalArray__ICollection_Add_421, (Array * __this, MeshInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D094B8, Array_InternalArray__ICollection_Add_421__MethodInfo); DO_APP_FUNC(0x00EEDC50, void, Array_InternalArray__ICollection_Add_422, (Array * __this, MinMaxFloat item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D094B0, Array_InternalArray__ICollection_Add_422__MethodInfo); DO_APP_FUNC(0x00EEDCB0, void, Array_InternalArray__ICollection_Add_423, (Array * __this, MinMaxVector3 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09430, Array_InternalArray__ICollection_Add_423__MethodInfo); DO_APP_FUNC(0x00EEDD10, void, Array_InternalArray__ICollection_Add_424, (Array * __this, ModifiableContactPair item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09420, Array_InternalArray__ICollection_Add_424__MethodInfo); DO_APP_FUNC(0x00EEDD70, void, Array_InternalArray__ICollection_Add_425, (Array * __this, NameAndParameters item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09410, Array_InternalArray__ICollection_Add_425__MethodInfo); DO_APP_FUNC(0x00EEDDD0, void, Array_InternalArray__ICollection_Add_426, (Array * __this, NamedValue item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09400, Array_InternalArray__ICollection_Add_426__MethodInfo); DO_APP_FUNC(0x00EEDE30, void, Array_InternalArray__ICollection_Add_427, (Array * __this, NativeAnchor item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09470, Array_InternalArray__ICollection_Add_427__MethodInfo); DO_APP_FUNC(0x00EEDE90, void, Array_InternalArray__ICollection_Add_428, (Array * __this, NativePlane item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09460, Array_InternalArray__ICollection_Add_428__MethodInfo); DO_APP_FUNC(0x00EEDEF0, void, Array_InternalArray__ICollection_Add_429, (Array * __this, Navigation item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09450, Array_InternalArray__ICollection_Add_429__MethodInfo); DO_APP_FUNC(0x00EEDF50, void, Array_InternalArray__ICollection_Add_430, (Array * __this, NetworkId item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09440, Array_InternalArray__ICollection_Add_430__MethodInfo); DO_APP_FUNC(0x00EEDFB0, void, Array_InternalArray__ICollection_Add_431, (Array * __this, NetworkPropertyInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D093B0, Array_InternalArray__ICollection_Add_431__MethodInfo); DO_APP_FUNC(0x00EEE010, void, Array_InternalArray__ICollection_Add_432, (Array * __this, NetworkValue item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D093A0, Array_InternalArray__ICollection_Add_432__MethodInfo); DO_APP_FUNC(0x00EEE070, void, Array_InternalArray__ICollection_Add_433, (Array * __this, Object * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09390, Array_InternalArray__ICollection_Add_433__MethodInfo); DO_APP_FUNC(0x00EEE0D0, void, Array_InternalArray__ICollection_Add_434, (Array * __this, ObjectInitializationData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09380, Array_InternalArray__ICollection_Add_434__MethodInfo); DO_APP_FUNC(0x00EEE130, void, Array_InternalArray__ICollection_Add_435, (Array * __this, ObjectSurface item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D093F0, Array_InternalArray__ICollection_Add_435__MethodInfo); DO_APP_FUNC(0x00EEE190, void, Array_InternalArray__ICollection_Add_436, (Array * __this, OpenChannel item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D093E0, Array_InternalArray__ICollection_Add_436__MethodInfo); DO_APP_FUNC(0x00EEE1F0, void, Array_InternalArray__ICollection_Add_437, (Array * __this, OriginalMaterialValue item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D093D0, Array_InternalArray__ICollection_Add_437__MethodInfo); DO_APP_FUNC(0x00EEE250, void, Array_InternalArray__ICollection_Add_438, (Array * __this, PacketStats item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D093C0, Array_InternalArray__ICollection_Add_438__MethodInfo); DO_APP_FUNC(0x00EEE2B0, void, Array_InternalArray__ICollection_Add_439, (Array * __this, PageInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09350, Array_InternalArray__ICollection_Add_439__MethodInfo); DO_APP_FUNC(0x00EEE310, void, Array_InternalArray__ICollection_Add_440, (Array * __this, ParameterModifier item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09348, Array_InternalArray__ICollection_Add_440__MethodInfo); DO_APP_FUNC(0x00EEE370, void, Array_InternalArray__ICollection_Add_441, (Array * __this, ParticleCollisionEvent item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09338, Array_InternalArray__ICollection_Add_441__MethodInfo); DO_APP_FUNC(0x00EEE3D0, void, Array_InternalArray__ICollection_Add_442, (Array * __this, PatchExtents item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09328, Array_InternalArray__ICollection_Add_442__MethodInfo); DO_APP_FUNC(0x00EEE430, void, Array_InternalArray__ICollection_Add_443, (Array * __this, PidVid item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09370, Array_InternalArray__ICollection_Add_443__MethodInfo); DO_APP_FUNC(0x00EEE490, void, Array_InternalArray__ICollection_Add_444, (Array * __this, Plane item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09368, Array_InternalArray__ICollection_Add_444__MethodInfo); DO_APP_FUNC(0x00EEE4F0, void, Array_InternalArray__ICollection_Add_445, (Array * __this, Playable item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09360, Array_InternalArray__ICollection_Add_445__MethodInfo); DO_APP_FUNC(0x00EEE550, void, Array_InternalArray__ICollection_Add_446, (Array * __this, PlayableBinding item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09358, Array_InternalArray__ICollection_Add_446__MethodInfo); DO_APP_FUNC(0x00EEE5B0, void, Array_InternalArray__ICollection_Add_447, (Array * __this, PlayerChannel item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09300, Array_InternalArray__ICollection_Add_447__MethodInfo); DO_APP_FUNC(0x00EEE610, void, Array_InternalArray__ICollection_Add_448, (Array * __this, PlayerFlashlightBeam item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D092F8, Array_InternalArray__ICollection_Add_448__MethodInfo); DO_APP_FUNC(0x00EEE670, void, Array_InternalArray__ICollection_Add_449, (Array * __this, PlayerLoopSystem item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D092F0, Array_InternalArray__ICollection_Add_449__MethodInfo); DO_APP_FUNC(0x00EEE6D0, void, Array_InternalArray__ICollection_Add_450, (Array * __this, PointerModel item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D092E8, Array_InternalArray__ICollection_Add_450__MethodInfo); DO_APP_FUNC(0x00EEE730, void, Array_InternalArray__ICollection_Add_451, (Array * __this, PrefabId item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09320, Array_InternalArray__ICollection_Add_451__MethodInfo); DO_APP_FUNC(0x00EEE790, void, Array_InternalArray__ICollection_Add_452, (Array * __this, Priority item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09318, Array_InternalArray__ICollection_Add_452__MethodInfo); DO_APP_FUNC(0x00EEE7F0, void, Array_InternalArray__ICollection_Add_453, (Array * __this, ProbeVolumeBakingProcessSettings item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09310, Array_InternalArray__ICollection_Add_453__MethodInfo); DO_APP_FUNC(0x00EEE850, void, Array_InternalArray__ICollection_Add_454, (Array * __this, Progress item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09308, Array_InternalArray__ICollection_Add_454__MethodInfo); DO_APP_FUNC(0x00EEE8B0, void, Array_InternalArray__ICollection_Add_455, (Array * __this, PublishedFileId_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D092B0, Array_InternalArray__ICollection_Add_455__MethodInfo); DO_APP_FUNC(0x00EEE910, void, Array_InternalArray__ICollection_Add_456, (Array * __this, QeeoSydAJKtvhuMHtIdMCGTRHBDhA item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D092A0, Array_InternalArray__ICollection_Add_456__MethodInfo); DO_APP_FUNC(0x00EEE970, void, Array_InternalArray__ICollection_Add_457, (Array * __this, Quaternion item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09290, Array_InternalArray__ICollection_Add_457__MethodInfo); DO_APP_FUNC(0x00EEE9D0, void, Array_InternalArray__ICollection_Add_458, (Array * __this, RangePositionInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09280, Array_InternalArray__ICollection_Add_458__MethodInfo); DO_APP_FUNC(0x00EEEA30, void, Array_InternalArray__ICollection_Add_459, (Array * __this, RaycastHit item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D092E0, Array_InternalArray__ICollection_Add_459__MethodInfo); DO_APP_FUNC(0x00EEEA90, void, Array_InternalArray__ICollection_Add_460, (Array * __this, RaycastHit2D item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D092D0, Array_InternalArray__ICollection_Add_460__MethodInfo); DO_APP_FUNC(0x00EEEAF0, void, Array_InternalArray__ICollection_Add_461, (Array * __this, RaycastResult item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D092C0, Array_InternalArray__ICollection_Add_461__MethodInfo); DO_APP_FUNC(0x00EEEB50, void, Array_InternalArray__ICollection_Add_462, (Array * __this, Rect item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D092B8, Array_InternalArray__ICollection_Add_462__MethodInfo); DO_APP_FUNC(0x00EEEBB0, void, Array_InternalArray__ICollection_Add_463, (Array * __this, ReflectionProbeBlendInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09258, Array_InternalArray__ICollection_Add_463__MethodInfo); DO_APP_FUNC(0x00EEEC10, void, Array_InternalArray__ICollection_Add_464, (Array * __this, RemoteChannel item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09250, Array_InternalArray__ICollection_Add_464__MethodInfo); DO_APP_FUNC(0x00EEEC70, void, Array_InternalArray__ICollection_Add_465, (Array * __this, RenderChainTextEntry item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09248, Array_InternalArray__ICollection_Add_465__MethodInfo); DO_APP_FUNC(0x00EEECD0, void, Array_InternalArray__ICollection_Add_466, (Array * __this, RenderInstancedDataLayout item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09240, Array_InternalArray__ICollection_Add_466__MethodInfo); DO_APP_FUNC(0x00EEED30, void, Array_InternalArray__ICollection_Add_467, (Array * __this, RenderTargetIdentifier item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09278, Array_InternalArray__ICollection_Add_467__MethodInfo); DO_APP_FUNC(0x00EEED90, void, Array_InternalArray__ICollection_Add_468, (Array * __this, RendererList item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09270, Array_InternalArray__ICollection_Add_468__MethodInfo); DO_APP_FUNC(0x00EEEDF0, void, Array_InternalArray__ICollection_Add_469, (Array * __this, RendererListHandle item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09268, Array_InternalArray__ICollection_Add_469__MethodInfo); DO_APP_FUNC(0x00EEEE50, void, Array_InternalArray__ICollection_Add_470, (Array * __this, RendererListResource item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09260, Array_InternalArray__ICollection_Add_470__MethodInfo); DO_APP_FUNC(0x00EEEEB0, void, Array_InternalArray__ICollection_Add_471, (Array * __this, Resolution item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09218, Array_InternalArray__ICollection_Add_471__MethodInfo); DO_APP_FUNC(0x00EEEF10, void, Array_InternalArray__ICollection_Add_472, (Array * __this, ResourceHandle item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09210, Array_InternalArray__ICollection_Add_472__MethodInfo); DO_APP_FUNC(0x00EEEF70, void, Array_InternalArray__ICollection_Add_473, (Array * __this, ResourceLocator item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09208, Array_InternalArray__ICollection_Add_473__MethodInfo); DO_APP_FUNC(0x00EEEFD0, void, Array_InternalArray__ICollection_Add_474, (Array * __this, RichTextTagAttribute item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09200, Array_InternalArray__ICollection_Add_474__MethodInfo); DO_APP_FUNC(0x00EEF030, void, Array_InternalArray__ICollection_Add_475, (Array * __this, RichTextTagAttribute_1 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09238, Array_InternalArray__ICollection_Add_475__MethodInfo); DO_APP_FUNC(0x00EEF090, void, Array_InternalArray__ICollection_Add_476, (Array * __this, RoomChannel item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09230, Array_InternalArray__ICollection_Add_476__MethodInfo); DO_APP_FUNC(0x00EEF0F0, void, Array_InternalArray__ICollection_Add_477, (Array * __this, RoomMembership item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09228, Array_InternalArray__ICollection_Add_477__MethodInfo); DO_APP_FUNC(0x00EEF150, void, Array_InternalArray__ICollection_Add_478, (Array * __this, RoomName item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09220, Array_InternalArray__ICollection_Add_478__MethodInfo); DO_APP_FUNC(0x00EEF1B0, void, Array_InternalArray__ICollection_Add_479, (Array * __this, Rotate_1 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D091C0, Array_InternalArray__ICollection_Add_479__MethodInfo); DO_APP_FUNC(0x00EEF210, void, Array_InternalArray__ICollection_Add_480, (Array * __this, RuleMatcher item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D091B0, Array_InternalArray__ICollection_Add_480__MethodInfo); DO_APP_FUNC(0x00EEF270, void, Array_InternalArray__ICollection_Add_481, (Array * __this, RuntimeLabel item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D091A8, Array_InternalArray__ICollection_Add_481__MethodInfo); DO_APP_FUNC(0x00EEF2D0, void, Array_InternalArray__ICollection_Add_482, (Array * __this, int8_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D091A0, Array_InternalArray__ICollection_Add_482__MethodInfo); DO_APP_FUNC(0x00EEF330, void, Array_InternalArray__ICollection_Add_483, (Array * __this, SByteEnum__Enum item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D091F0, Array_InternalArray__ICollection_Add_483__MethodInfo); DO_APP_FUNC(0x00EEF390, void, Array_InternalArray__ICollection_Add_484, (Array * __this, STATDATA item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D091E0, Array_InternalArray__ICollection_Add_484__MethodInfo); DO_APP_FUNC(0x00EEF3F0, void, Array_InternalArray__ICollection_Add_485, (Array * __this, ScalableImage item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D091D8, Array_InternalArray__ICollection_Add_485__MethodInfo); DO_APP_FUNC(0x00EEF450, void, Array_InternalArray__ICollection_Add_486, (Array * __this, Scale item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D091D0, Array_InternalArray__ICollection_Add_486__MethodInfo); DO_APP_FUNC(0x00EEF4B0, void, Array_InternalArray__ICollection_Add_487, (Array * __this, SelectorMatchRecord item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09170, Array_InternalArray__ICollection_Add_487__MethodInfo); DO_APP_FUNC(0x00EEF510, void, Array_InternalArray__ICollection_Add_488, (Array * __this, SemanticMeaning item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09168, Array_InternalArray__ICollection_Add_488__MethodInfo); DO_APP_FUNC(0x00EEF570, void, Array_InternalArray__ICollection_Add_489, (Array * __this, SerializedType item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09160, Array_InternalArray__ICollection_Add_489__MethodInfo); DO_APP_FUNC(0x00EEF5D0, void, Array_InternalArray__ICollection_Add_490, (Array * __this, SessionClient item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09158, Array_InternalArray__ICollection_Add_490__MethodInfo); DO_APP_FUNC(0x00EEF630, void, Array_InternalArray__ICollection_Add_491, (Array * __this, ShaderKeyword item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09190, Array_InternalArray__ICollection_Add_491__MethodInfo); DO_APP_FUNC(0x00EEF690, void, Array_InternalArray__ICollection_Add_492, (Array * __this, ShaderTagId item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09188, Array_InternalArray__ICollection_Add_492__MethodInfo); DO_APP_FUNC(0x00EEF6F0, void, Array_InternalArray__ICollection_Add_493, (Array * __this, ShaderVariablesProbeVolumes item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09180, Array_InternalArray__ICollection_Add_493__MethodInfo); DO_APP_FUNC(0x00EEF750, void, Array_InternalArray__ICollection_Add_494, (Array * __this, float item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09178, Array_InternalArray__ICollection_Add_494__MethodInfo); DO_APP_FUNC(0x00EEF7B0, void, Array_InternalArray__ICollection_Add_495, (Array * __this, SkeletonBone item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09120, Array_InternalArray__ICollection_Add_495__MethodInfo); DO_APP_FUNC(0x00EEF810, void, Array_InternalArray__ICollection_Add_496, (Array * __this, Sku item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09118, Array_InternalArray__ICollection_Add_496__MethodInfo); DO_APP_FUNC(0x00EEF870, void, Array_InternalArray__ICollection_Add_497, (Array * __this, SpeechSession item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09110, Array_InternalArray__ICollection_Add_497__MethodInfo); DO_APP_FUNC(0x00EEF8D0, void, Array_InternalArray__ICollection_Add_498, (Array * __this, SphericalHarmonicsL2 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09108, Array_InternalArray__ICollection_Add_498__MethodInfo); DO_APP_FUNC(0x00EEF930, void, Array_InternalArray__ICollection_Add_499, (Array * __this, SpriteState item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09150, Array_InternalArray__ICollection_Add_499__MethodInfo); DO_APP_FUNC(0x00EEF990, void, Array_InternalArray__ICollection_Add_500, (Array * __this, SslApplicationProtocol item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09148, Array_InternalArray__ICollection_Add_500__MethodInfo); DO_APP_FUNC(0x00EEF9F0, void, Array_InternalArray__ICollection_Add_501, (Array * __this, SteamItemDef_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09138, Array_InternalArray__ICollection_Add_501__MethodInfo); DO_APP_FUNC(0x00EEFA50, void, Array_InternalArray__ICollection_Add_502, (Array * __this, SteamItemDetails_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09128, Array_InternalArray__ICollection_Add_502__MethodInfo); DO_APP_FUNC(0x00EEFAB0, void, Array_InternalArray__ICollection_Add_503, (Array * __this, StylePropertyName item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D090E0, Array_InternalArray__ICollection_Add_503__MethodInfo); DO_APP_FUNC(0x00EEFB10, void, Array_InternalArray__ICollection_Add_504, (Array * __this, StylePropertyValue item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D090D8, Array_InternalArray__ICollection_Add_504__MethodInfo); DO_APP_FUNC(0x00EEFB70, void, Array_InternalArray__ICollection_Add_505, (Array * __this, StyleSelectorPart item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D090D0, Array_InternalArray__ICollection_Add_505__MethodInfo); DO_APP_FUNC(0x00EEFBD0, void, Array_InternalArray__ICollection_Add_506, (Array * __this, StyleSyntaxToken item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D090C8, Array_InternalArray__ICollection_Add_506__MethodInfo); DO_APP_FUNC(0x00EEFC30, void, Array_InternalArray__ICollection_Add_507, (Array * __this, StyleValue item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09100, Array_InternalArray__ICollection_Add_507__MethodInfo); DO_APP_FUNC(0x00EEFC90, void, Array_InternalArray__ICollection_Add_508, (Array * __this, StyleValueHandle item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D090F8, Array_InternalArray__ICollection_Add_508__MethodInfo); DO_APP_FUNC(0x00EEFCF0, void, Array_InternalArray__ICollection_Add_509, (Array * __this, StyleValueManaged item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D090F0, Array_InternalArray__ICollection_Add_509__MethodInfo); DO_APP_FUNC(0x00EEFD50, void, Array_InternalArray__ICollection_Add_510, (Array * __this, StyleVariable item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D090E8, Array_InternalArray__ICollection_Add_510__MethodInfo); DO_APP_FUNC(0x00EEFDB0, void, Array_InternalArray__ICollection_Add_511, (Array * __this, SubMeshDescriptor item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09088, Array_InternalArray__ICollection_Add_511__MethodInfo); DO_APP_FUNC(0x00EEFE10, void, Array_InternalArray__ICollection_Add_512, (Array * __this, Substring item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09078, Array_InternalArray__ICollection_Add_512__MethodInfo); DO_APP_FUNC(0x00EEFE70, void, Array_InternalArray__ICollection_Add_513, (Array * __this, TMP_CharacterInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09068, Array_InternalArray__ICollection_Add_513__MethodInfo); DO_APP_FUNC(0x00EEFED0, void, Array_InternalArray__ICollection_Add_514, (Array * __this, TMP_FontWeightPair item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09058, Array_InternalArray__ICollection_Add_514__MethodInfo); DO_APP_FUNC(0x00EEFF30, void, Array_InternalArray__ICollection_Add_515, (Array * __this, TMP_LineInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D090C0, Array_InternalArray__ICollection_Add_515__MethodInfo); DO_APP_FUNC(0x00EEFF90, void, Array_InternalArray__ICollection_Add_516, (Array * __this, TMP_LinkInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D090B8, Array_InternalArray__ICollection_Add_516__MethodInfo); DO_APP_FUNC(0x00EEFFF0, void, Array_InternalArray__ICollection_Add_517, (Array * __this, TMP_MeshInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D090A8, Array_InternalArray__ICollection_Add_517__MethodInfo); DO_APP_FUNC(0x00EF0050, void, Array_InternalArray__ICollection_Add_518, (Array * __this, TMP_PageInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09098, Array_InternalArray__ICollection_Add_518__MethodInfo); DO_APP_FUNC(0x00EF00B0, void, Array_InternalArray__ICollection_Add_519, (Array * __this, TMP_WordInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09020, Array_InternalArray__ICollection_Add_519__MethodInfo); DO_APP_FUNC(0x00EF0110, void, Array_InternalArray__ICollection_Add_520, (Array * __this, TerrainTileCoord item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09018, Array_InternalArray__ICollection_Add_520__MethodInfo); DO_APP_FUNC(0x00EF0170, void, Array_InternalArray__ICollection_Add_521, (Array * __this, TextElementInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09010, Array_InternalArray__ICollection_Add_521__MethodInfo); DO_APP_FUNC(0x00EF01D0, void, Array_InternalArray__ICollection_Add_522, (Array * __this, TextShadow item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09008, Array_InternalArray__ICollection_Add_522__MethodInfo); DO_APP_FUNC(0x00EF0230, void, Array_InternalArray__ICollection_Add_523, (Array * __this, TextVertex_1 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09048, Array_InternalArray__ICollection_Add_523__MethodInfo); DO_APP_FUNC(0x00EF0290, void, Array_InternalArray__ICollection_Add_524, (Array * __this, TextureHandle item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09040, Array_InternalArray__ICollection_Add_524__MethodInfo); DO_APP_FUNC(0x00EF02F0, void, Array_InternalArray__ICollection_Add_525, (Array * __this, TextureId item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09038, Array_InternalArray__ICollection_Add_525__MethodInfo); DO_APP_FUNC(0x00EF0350, void, Array_InternalArray__ICollection_Add_526, (Array * __this, TileData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09028, Array_InternalArray__ICollection_Add_526__MethodInfo); DO_APP_FUNC(0x00EF03B0, void, Array_InternalArray__ICollection_Add_527, (Array * __this, TimeSpan item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08FD8, Array_InternalArray__ICollection_Add_527__MethodInfo); DO_APP_FUNC(0x00EF0410, void, Array_InternalArray__ICollection_Add_528, (Array * __this, TimeValue item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08FD0, Array_InternalArray__ICollection_Add_528__MethodInfo); DO_APP_FUNC(0x00EF0470, void, Array_InternalArray__ICollection_Add_529, (Array * __this, Touch item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08FC8, Array_InternalArray__ICollection_Add_529__MethodInfo); DO_APP_FUNC(0x00EF04D0, void, Array_InternalArray__ICollection_Add_530, (Array * __this, Touch_1 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08FC0, Array_InternalArray__ICollection_Add_530__MethodInfo); DO_APP_FUNC(0x00EF0530, void, Array_InternalArray__ICollection_Add_531, (Array * __this, TrackableId item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D09000, Array_InternalArray__ICollection_Add_531__MethodInfo); DO_APP_FUNC(0x00EF0590, void, Array_InternalArray__ICollection_Add_532, (Array * __this, Transform3x4 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08FF0, Array_InternalArray__ICollection_Add_532__MethodInfo); DO_APP_FUNC(0x00EF05F0, void, Array_InternalArray__ICollection_Add_533, (Array * __this, TransformOrigin item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08FE8, Array_InternalArray__ICollection_Add_533__MethodInfo); DO_APP_FUNC(0x00EF0650, void, Array_InternalArray__ICollection_Add_534, (Array * __this, Translate_1 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08FE0, Array_InternalArray__ICollection_Add_534__MethodInfo); DO_APP_FUNC(0x00EF06B0, void, Array_InternalArray__ICollection_Add_535, (Array * __this, TreeInstance item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08F98, Array_InternalArray__ICollection_Add_535__MethodInfo); DO_APP_FUNC(0x00EF0710, void, Array_InternalArray__ICollection_Add_536, (Array * __this, TreeItem item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08F90, Array_InternalArray__ICollection_Add_536__MethodInfo); DO_APP_FUNC(0x00EF0770, void, Array_InternalArray__ICollection_Add_537, (Array * __this, TreeViewItemWrapper item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08F88, Array_InternalArray__ICollection_Add_537__MethodInfo); DO_APP_FUNC(0x00EF07D0, void, Array_InternalArray__ICollection_Add_538, (Array * __this, TypeId item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08F78, Array_InternalArray__ICollection_Add_538__MethodInfo); DO_APP_FUNC(0x00EF0830, void, Array_InternalArray__ICollection_Add_539, (Array * __this, TypeWrapper item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08FB8, Array_InternalArray__ICollection_Add_539__MethodInfo); DO_APP_FUNC(0x00EF0890, void, Array_InternalArray__ICollection_Add_540, (Array * __this, UICharInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08FB0, Array_InternalArray__ICollection_Add_540__MethodInfo); DO_APP_FUNC(0x00EF08F0, void, Array_InternalArray__ICollection_Add_541, (Array * __this, UILineInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08FA8, Array_InternalArray__ICollection_Add_541__MethodInfo); DO_APP_FUNC(0x00EF0950, void, Array_InternalArray__ICollection_Add_542, (Array * __this, UIVertex item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08FA0, Array_InternalArray__ICollection_Add_542__MethodInfo); DO_APP_FUNC(0x00EF09B0, void, Array_InternalArray__ICollection_Add_543, (Array * __this, uint16_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08F38, Array_InternalArray__ICollection_Add_543__MethodInfo); DO_APP_FUNC(0x00EF0A10, void, Array_InternalArray__ICollection_Add_544, (Array * __this, UInt16Enum__Enum item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08F28, Array_InternalArray__ICollection_Add_544__MethodInfo); DO_APP_FUNC(0x00EF0A70, void, Array_InternalArray__ICollection_Add_545, (Array * __this, uint32_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08F20, Array_InternalArray__ICollection_Add_545__MethodInfo); DO_APP_FUNC(0x00EF0AD0, void, Array_InternalArray__ICollection_Add_546, (Array * __this, UInt32Enum__Enum item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08F18, Array_InternalArray__ICollection_Add_546__MethodInfo); DO_APP_FUNC(0x00EF0B30, void, Array_InternalArray__ICollection_Add_547, (Array * __this, uint64_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08F70, Array_InternalArray__ICollection_Add_547__MethodInfo); DO_APP_FUNC(0x00EF0B90, void, Array_InternalArray__ICollection_Add_548, (Array * __this, UVTexture item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08F68, Array_InternalArray__ICollection_Add_548__MethodInfo); DO_APP_FUNC(0x00EF0BF0, void, Array_InternalArray__ICollection_Add_549, (Array * __this, UdpChannelName item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08F58, Array_InternalArray__ICollection_Add_549__MethodInfo); DO_APP_FUNC(0x00EF0C50, void, Array_InternalArray__ICollection_Add_550, (Array * __this, UdpEndPoint item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08F48, Array_InternalArray__ICollection_Add_550__MethodInfo); DO_APP_FUNC(0x00EF0CB0, void, Array_InternalArray__ICollection_Add_551, (Array * __this, UdpEvent item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08ED8, Array_InternalArray__ICollection_Add_551__MethodInfo); DO_APP_FUNC(0x00EF0D10, void, Array_InternalArray__ICollection_Add_552, (Array * __this, UdpIPv4Address item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08EC8, Array_InternalArray__ICollection_Add_552__MethodInfo); DO_APP_FUNC(0x00EF0D70, void, Array_InternalArray__ICollection_Add_553, (Array * __this, UdpPipeHandle item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08EB8, Array_InternalArray__ICollection_Add_553__MethodInfo); DO_APP_FUNC(0x00EF0DD0, void, Array_InternalArray__ICollection_Add_554, (Array * __this, UniqueId item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08EA8, Array_InternalArray__ICollection_Add_554__MethodInfo); DO_APP_FUNC(0x00EF0E30, void, Array_InternalArray__ICollection_Add_555, (Array * __this, UsageHint item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08F08, Array_InternalArray__ICollection_Add_555__MethodInfo); DO_APP_FUNC(0x00EF0E90, void, Array_InternalArray__ICollection_Add_556, (Array * __this, User item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08EF8, Array_InternalArray__ICollection_Add_556__MethodInfo); DO_APP_FUNC(0x00EF0EF0, void, Array_InternalArray__ICollection_Add_557, (Array * __this, ValueWebSocketReceiveResult item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08EF0, Array_InternalArray__ICollection_Add_557__MethodInfo); DO_APP_FUNC(0x00EF0F50, void, Array_InternalArray__ICollection_Add_558, (Array * __this, Vector2 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08EE8, Array_InternalArray__ICollection_Add_558__MethodInfo); DO_APP_FUNC(0x00EF0FB0, void, Array_InternalArray__ICollection_Add_559, (Array * __this, Vector2Int item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08E68, Array_InternalArray__ICollection_Add_559__MethodInfo); DO_APP_FUNC(0x00EF1010, void, Array_InternalArray__ICollection_Add_560, (Array * __this, Vector3 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08E60, Array_InternalArray__ICollection_Add_560__MethodInfo); DO_APP_FUNC(0x00EF1070, void, Array_InternalArray__ICollection_Add_561, (Array * __this, Vector3Int item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08E58, Array_InternalArray__ICollection_Add_561__MethodInfo); DO_APP_FUNC(0x00EF10D0, void, Array_InternalArray__ICollection_Add_562, (Array * __this, Vector3_Array2D item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08E50, Array_InternalArray__ICollection_Add_562__MethodInfo); DO_APP_FUNC(0x00EF1130, void, Array_InternalArray__ICollection_Add_563, (Array * __this, Vector4 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08E98, Array_InternalArray__ICollection_Add_563__MethodInfo); DO_APP_FUNC(0x00EF1190, void, Array_InternalArray__ICollection_Add_564, (Array * __this, VectorImageVertex item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08E90, Array_InternalArray__ICollection_Add_564__MethodInfo); DO_APP_FUNC(0x00EF11F0, void, Array_InternalArray__ICollection_Add_565, (Array * __this, Vertex item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08E88, Array_InternalArray__ICollection_Add_565__MethodInfo); DO_APP_FUNC(0x00EF1250, void, Array_InternalArray__ICollection_Add_566, (Array * __this, VertexAttributeDescriptor item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08E78, Array_InternalArray__ICollection_Add_566__MethodInfo); DO_APP_FUNC(0x00EF12B0, void, Array_InternalArray__ICollection_Add_567, (Array * __this, ViewConfiguration item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08E20, Array_InternalArray__ICollection_Add_567__MethodInfo); DO_APP_FUNC(0x00EF1310, void, Array_InternalArray__ICollection_Add_568, (Array * __this, VoicePacket item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08E18, Array_InternalArray__ICollection_Add_568__MethodInfo); DO_APP_FUNC(0x00EF1370, void, Array_InternalArray__ICollection_Add_569, (Array * __this, VoxelCell item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08E08, Array_InternalArray__ICollection_Add_569__MethodInfo); DO_APP_FUNC(0x00EF13D0, void, Array_InternalArray__ICollection_Add_570, (Array * __this, VoxelContour item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08E00, Array_InternalArray__ICollection_Add_570__MethodInfo); DO_APP_FUNC(0x00EF1430, void, Array_InternalArray__ICollection_Add_571, (Array * __this, Win32_IP_ADAPTER_ADDRESSES item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08E48, Array_InternalArray__ICollection_Add_571__MethodInfo); DO_APP_FUNC(0x00EF1490, void, Array_InternalArray__ICollection_Add_572, (Array * __this, Win32_IP_ADAPTER_INFO item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08E38, Array_InternalArray__ICollection_Add_572__MethodInfo); DO_APP_FUNC(0x00EF14F0, void, Array_InternalArray__ICollection_Add_573, (Array * __this, Win32_IP_ADDR_STRING item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08E30, Array_InternalArray__ICollection_Add_573__MethodInfo); DO_APP_FUNC(0x00EF1550, void, Array_InternalArray__ICollection_Add_574, (Array * __this, WordInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08E28, Array_InternalArray__ICollection_Add_574__MethodInfo); DO_APP_FUNC(0x00EF15B0, void, Array_InternalArray__ICollection_Add_575, (Array * __this, WordWrapState item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08DC8, Array_InternalArray__ICollection_Add_575__MethodInfo); DO_APP_FUNC(0x00EF1610, void, Array_InternalArray__ICollection_Add_576, (Array * __this, X509ChainStatus item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08DC0, Array_InternalArray__ICollection_Add_576__MethodInfo); DO_APP_FUNC(0x00EF1670, void, Array_InternalArray__ICollection_Add_577, (Array * __this, XPathNode item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08DB8, Array_InternalArray__ICollection_Add_577__MethodInfo); DO_APP_FUNC(0x00EF16D0, void, Array_InternalArray__ICollection_Add_578, (Array * __this, XPathNodeRef item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08DB0, Array_InternalArray__ICollection_Add_578__MethodInfo); DO_APP_FUNC(0x00EF1730, void, Array_InternalArray__ICollection_Add_579, (Array * __this, XRAnchor item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08DF8, Array_InternalArray__ICollection_Add_579__MethodInfo); DO_APP_FUNC(0x00EF1790, void, Array_InternalArray__ICollection_Add_580, (Array * __this, XRFeatureDescriptor item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08DE8, Array_InternalArray__ICollection_Add_580__MethodInfo); DO_APP_FUNC(0x00EF17F0, void, Array_InternalArray__ICollection_Add_581, (Array * __this, XRNodeState item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08DE0, Array_InternalArray__ICollection_Add_581__MethodInfo); DO_APP_FUNC(0x00EF1850, void, Array_InternalArray__ICollection_Add_582, (Array * __this, XRRaycast item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08DD8, Array_InternalArray__ICollection_Add_582__MethodInfo); DO_APP_FUNC(0x00EF18B0, void, Array_InternalArray__ICollection_Add_583, (Array * __this, XmlTagAttribute item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08D80, Array_InternalArray__ICollection_Add_583__MethodInfo); DO_APP_FUNC(0x00EF1910, void, Array_InternalArray__ICollection_Add_584, (Array * __this, aOHEnKCFymegycPegEXPFUjlaUPpA item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08D70, Array_InternalArray__ICollection_Add_584__MethodInfo); DO_APP_FUNC(0x00EF1970, void, Array_InternalArray__ICollection_Add_585, (Array * __this, aQHgSHeigtcamfIWbNaiXaCiVwuq item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08D60, Array_InternalArray__ICollection_Add_585__MethodInfo); DO_APP_FUNC(0x00EF19D0, void, Array_InternalArray__ICollection_Add_586, (Array * __this, jvalue item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08D58, Array_InternalArray__ICollection_Add_586__MethodInfo); DO_APP_FUNC(0x00EF1A30, void, Array_InternalArray__ICollection_Add_587, (Array * __this, tSPvxZUJjzaTiAEejeAOLKctGpmKA item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08DA8, Array_InternalArray__ICollection_Add_587__MethodInfo); DO_APP_FUNC(0x00EF1A90, void, Array_InternalArray__ICollection_Add_588, (Array * __this, yUgrsNEvLzxrXGzkHTUPIBJYGDah item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08DA0, Array_InternalArray__ICollection_Add_588__MethodInfo); DO_APP_FUNC(0x00EF1AF0, void, Array_InternalArray__ICollection_Add_589, (Array * __this, AIObjectPool_PreloadedPrefab item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08D98, Array_InternalArray__ICollection_Add_589__MethodInfo); DO_APP_FUNC(0x00EF1B50, void, Array_InternalArray__ICollection_Add_590, (Array * __this, AdvancedSmooth_Turn item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08D90, Array_InternalArray__ICollection_Add_590__MethodInfo); DO_APP_FUNC(0x00EF1BB0, void, Array_InternalArray__ICollection_Add_591, (Array * __this, Agent_VO item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08D20, Array_InternalArray__ICollection_Add_591__MethodInfo); DO_APP_FUNC(0x00EF1C10, void, Array_InternalArray__ICollection_Add_592, (Array * __this, AnimationOutputWeightProcessor_WeightInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08D18, Array_InternalArray__ICollection_Add_592__MethodInfo); DO_APP_FUNC(0x00EF1C70, void, Array_InternalArray__ICollection_Add_593, (Array * __this, AstarDebugger_GraphPoint item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08D10, Array_InternalArray__ICollection_Add_593__MethodInfo); DO_APP_FUNC(0x00EF1CD0, void, Array_InternalArray__ICollection_Add_594, (Array * __this, AstarDebugger_PathTypeDebug item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08D08, Array_InternalArray__ICollection_Add_594__MethodInfo); DO_APP_FUNC(0x00EF1D30, void, Array_InternalArray__ICollection_Add_595, (Array * __this, AtlasAllocatorDynamic_AtlasNode item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08D50, Array_InternalArray__ICollection_Add_595__MethodInfo); DO_APP_FUNC(0x00EF1D90, void, Array_InternalArray__ICollection_Add_596, (Array * __this, AttributeCollection_AttributeEntry item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08D40, Array_InternalArray__ICollection_Add_596__MethodInfo); DO_APP_FUNC(0x00EF1DF0, void, Array_InternalArray__ICollection_Add_597, (Array * __this, BBTree_BBTreeBox item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08D38, Array_InternalArray__ICollection_Add_597__MethodInfo); DO_APP_FUNC(0x00EF1E50, void, Array_InternalArray__ICollection_Add_598, (Array * __this, BaseStyleMatcher_MatchContext item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08D30, Array_InternalArray__ICollection_Add_598__MethodInfo); DO_APP_FUNC(0x00EF1EB0, void, Array_InternalArray__ICollection_Add_599, (Array * __this, BeforeRenderHelper_OrderBlock item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08CD0, Array_InternalArray__ICollection_Add_599__MethodInfo); DO_APP_FUNC(0x00EF1F10, void, Array_InternalArray__ICollection_Add_600, (Array * __this, BehaviourPuppet_CollisionResistanceMultiplier item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08CC8, Array_InternalArray__ICollection_Add_600__MethodInfo); DO_APP_FUNC(0x00EF1F70, void, Array_InternalArray__ICollection_Add_601, (Array * __this, BehaviourPuppet_MusclePropsGroup item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08CC0, Array_InternalArray__ICollection_Add_601__MethodInfo); DO_APP_FUNC(0x00EF1FD0, void, Array_InternalArray__ICollection_Add_602, (Array * __this, BinaryHeap_Tuple item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08CB8, Array_InternalArray__ICollection_Add_602__MethodInfo); DO_APP_FUNC(0x00EF2030, void, Array_InternalArray__ICollection_Add_603, (Array * __this, BitmapAllocator32_Page item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08D00, Array_InternalArray__ICollection_Add_603__MethodInfo); DO_APP_FUNC(0x00EF2090, void, Array_InternalArray__ICollection_Add_604, (Array * __this, BloomRenderer_Level item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08CF8, Array_InternalArray__ICollection_Add_604__MethodInfo); DO_APP_FUNC(0x00EF20F0, void, Array_InternalArray__ICollection_Add_605, (Array * __this, BoltConsole_Line item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08CE8, Array_InternalArray__ICollection_Add_605__MethodInfo); DO_APP_FUNC(0x00EF2150, void, Array_InternalArray__ICollection_Add_606, (Array * __this, BoltProtocolTokenRegistry_TokenRegistry item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08CD8, Array_InternalArray__ICollection_Add_606__MethodInfo); DO_APP_FUNC(0x00EF21B0, void, Array_InternalArray__ICollection_Add_607, (Array * __this, CalendricalCalculationsHelper_EphemerisCorrectionAlgorithmMap item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08C68, Array_InternalArray__ICollection_Add_607__MethodInfo); DO_APP_FUNC(0x00EF2210, void, Array_InternalArray__ICollection_Add_608, (Array * __this, Camera_RenderRequest item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08C58, Array_InternalArray__ICollection_Add_608__MethodInfo); DO_APP_FUNC(0x00EF2270, void, Array_InternalArray__ICollection_Add_609, (Array * __this, CameraState_CustomBlendable item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08C48, Array_InternalArray__ICollection_Add_609__MethodInfo); DO_APP_FUNC(0x00EF22D0, void, Array_InternalArray__ICollection_Add_610, (Array * __this, CharacterFootEffects_Foot item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08C38, Array_InternalArray__ICollection_Add_610__MethodInfo); DO_APP_FUNC(0x00EF2330, void, Array_InternalArray__ICollection_Add_611, (Array * __this, CinemachineBlendListCamera_Instruction item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08CA8, Array_InternalArray__ICollection_Add_611__MethodInfo); DO_APP_FUNC(0x00EF2390, void, Array_InternalArray__ICollection_Add_612, (Array * __this, CinemachineBlenderSettings_CustomBlend item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08C98, Array_InternalArray__ICollection_Add_612__MethodInfo); DO_APP_FUNC(0x00EF23F0, void, Array_InternalArray__ICollection_Add_613, (Array * __this, CinemachineClearShot_Pair item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08C88, Array_InternalArray__ICollection_Add_613__MethodInfo); DO_APP_FUNC(0x00EF2450, void, Array_InternalArray__ICollection_Add_614, (Array * __this, CinemachineFreeLook_Orbit item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08C78, Array_InternalArray__ICollection_Add_614__MethodInfo); DO_APP_FUNC(0x00EF24B0, void, Array_InternalArray__ICollection_Add_615, (Array * __this, CinemachinePath_Waypoint item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08BF8, Array_InternalArray__ICollection_Add_615__MethodInfo); DO_APP_FUNC(0x00EF2510, void, Array_InternalArray__ICollection_Add_616, (Array * __this, CinemachineSmoothPath_Waypoint item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08BE8, Array_InternalArray__ICollection_Add_616__MethodInfo); DO_APP_FUNC(0x00EF2570, void, Array_InternalArray__ICollection_Add_617, (Array * __this, CinemachineStateDrivenCamera_HashPair item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08BD8, Array_InternalArray__ICollection_Add_617__MethodInfo); DO_APP_FUNC(0x00EF25D0, void, Array_InternalArray__ICollection_Add_618, (Array * __this, CinemachineStateDrivenCamera_Instruction item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08BD0, Array_InternalArray__ICollection_Add_618__MethodInfo); DO_APP_FUNC(0x00EF2630, void, Array_InternalArray__ICollection_Add_619, (Array * __this, CinemachineStateDrivenCamera_ParentHash item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08C28, Array_InternalArray__ICollection_Add_619__MethodInfo); DO_APP_FUNC(0x00EF2690, void, Array_InternalArray__ICollection_Add_620, (Array * __this, CinemachineTargetGroup_Target item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08C20, Array_InternalArray__ICollection_Add_620__MethodInfo); DO_APP_FUNC(0x00EF26F0, void, Array_InternalArray__ICollection_Add_621, (Array * __this, ClipperLib_DoublePoint item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08C18, Array_InternalArray__ICollection_Add_621__MethodInfo); DO_APP_FUNC(0x00EF2750, void, Array_InternalArray__ICollection_Add_622, (Array * __this, ClipperLib_IntPoint item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08C08, Array_InternalArray__ICollection_Add_622__MethodInfo); DO_APP_FUNC(0x00EF27B0, void, Array_InternalArray__ICollection_Add_623, (Array * __this, CodePointIndexer_TableRange item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08BA8, Array_InternalArray__ICollection_Add_623__MethodInfo); DO_APP_FUNC(0x00EF2810, void, Array_InternalArray__ICollection_Add_624, (Array * __this, ComboTimeout_ComboInputElement item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08BA0, Array_InternalArray__ICollection_Add_624__MethodInfo); DO_APP_FUNC(0x00EF2870, void, Array_InternalArray__ICollection_Add_625, (Array * __this, ConfinerOven_PolygonSolution item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08B98, Array_InternalArray__ICollection_Add_625__MethodInfo); DO_APP_FUNC(0x00EF28D0, void, Array_InternalArray__ICollection_Add_626, (Array * __this, ContentCatalogData_Bucket item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08B90, Array_InternalArray__ICollection_Add_626__MethodInfo); DO_APP_FUNC(0x00EF2930, void, Array_InternalArray__ICollection_Add_627, (Array * __this, ContextFlagsAdapterPal_ContextFlagMapping item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08BC8, Array_InternalArray__ICollection_Add_627__MethodInfo); DO_APP_FUNC(0x00EF2990, void, Array_InternalArray__ICollection_Add_628, (Array * __this, CookieTokenizer_RecognizedAttribute item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08BC0, Array_InternalArray__ICollection_Add_628__MethodInfo); DO_APP_FUNC(0x00EF29F0, void, Array_InternalArray__ICollection_Add_629, (Array * __this, CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08BB8, Array_InternalArray__ICollection_Add_629__MethodInfo); DO_APP_FUNC(0x00EF2A50, void, Array_InternalArray__ICollection_Add_630, (Array * __this, DamageIndicatorMonitor_DamageIndicator item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08BB0, Array_InternalArray__ICollection_Add_630__MethodInfo); DO_APP_FUNC(0x00EF2AB0, void, Array_InternalArray__ICollection_Add_631, (Array * __this, DelayedActionManager_DelegateInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08B50, Array_InternalArray__ICollection_Add_631__MethodInfo); DO_APP_FUNC(0x00EF2B10, void, Array_InternalArray__ICollection_Add_632, (Array * __this, DynamicResolutionHandler_ScalerContainer item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08B48, Array_InternalArray__ICollection_Add_632__MethodInfo); DO_APP_FUNC(0x00EF2B70, void, Array_InternalArray__ICollection_Add_633, (Array * __this, EventDispatcher_CallbackWrapper item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08B38, Array_InternalArray__ICollection_Add_633__MethodInfo); DO_APP_FUNC(0x00EF2BD0, void, Array_InternalArray__ICollection_Add_634, (Array * __this, EventDispatcher_EventListener item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08B30, Array_InternalArray__ICollection_Add_634__MethodInfo); DO_APP_FUNC(0x00EF2C30, void, Array_InternalArray__ICollection_Add_635, (Array * __this, EventDispatcher_DispatchContext item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08B88, Array_InternalArray__ICollection_Add_635__MethodInfo); DO_APP_FUNC(0x00EF2C90, void, Array_InternalArray__ICollection_Add_636, (Array * __this, EventDispatcher_EventRecord item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08B78, Array_InternalArray__ICollection_Add_636__MethodInfo); DO_APP_FUNC(0x00EF2CF0, void, Array_InternalArray__ICollection_Add_637, (Array * __this, EventQueue_NetworkEvent item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08B68, Array_InternalArray__ICollection_Add_637__MethodInfo); DO_APP_FUNC(0x00EF2D50, void, Array_InternalArray__ICollection_Add_638, (Array * __this, EventReliableRecvBuffer_Node item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08B58, Array_InternalArray__ICollection_Add_638__MethodInfo); DO_APP_FUNC(0x00EF2DB0, void, Array_InternalArray__ICollection_Add_639, (Array * __this, EventReliableSendBuffer_Node item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08AF8, Array_InternalArray__ICollection_Add_639__MethodInfo); DO_APP_FUNC(0x00EF2E10, void, Array_InternalArray__ICollection_Add_640, (Array * __this, FocusController_FocusedElement item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08AF0, Array_InternalArray__ICollection_Add_640__MethodInfo); DO_APP_FUNC(0x00EF2E70, void, Array_InternalArray__ICollection_Add_641, (Array * __this, Funnel_PathPart item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08AE8, Array_InternalArray__ICollection_Add_641__MethodInfo); DO_APP_FUNC(0x00EF2ED0, void, Array_InternalArray__ICollection_Add_642, (Array * __this, GraphUpdateProcessor_GUOSingle item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08AD8, Array_InternalArray__ICollection_Add_642__MethodInfo); DO_APP_FUNC(0x00EF2F30, void, Array_InternalArray__ICollection_Add_643, (Array * __this, HID_HIDCollectionDescriptor item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08B28, Array_InternalArray__ICollection_Add_643__MethodInfo); DO_APP_FUNC(0x00EF2F90, void, Array_InternalArray__ICollection_Add_644, (Array * __this, HID_HIDElementDescriptor item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08B20, Array_InternalArray__ICollection_Add_644__MethodInfo); DO_APP_FUNC(0x00EF2FF0, void, Array_InternalArray__ICollection_Add_645, (Array * __this, HIDParser_HIDReportData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08B18, Array_InternalArray__ICollection_Add_645__MethodInfo); DO_APP_FUNC(0x00EF3050, void, Array_InternalArray__ICollection_Add_646, (Array * __this, HIDSupport_HIDPageUsage item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08B08, Array_InternalArray__ICollection_Add_646__MethodInfo); DO_APP_FUNC(0x00EF30B0, void, Array_InternalArray__ICollection_Add_647, (Array * __this, HIDTouchpad_TouchData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08AA0, Array_InternalArray__ICollection_Add_647__MethodInfo); DO_APP_FUNC(0x00EF3110, void, Array_InternalArray__ICollection_Add_648, (Array * __this, HairDesignerColliderBase_DualSphere item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08A98, Array_InternalArray__ICollection_Add_648__MethodInfo); DO_APP_FUNC(0x00EF3170, void, Array_InternalArray__ICollection_Add_649, (Array * __this, HairDesignerGeneratorAdvancedFurBase_DualSphereCollider item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08A90, Array_InternalArray__ICollection_Add_649__MethodInfo); DO_APP_FUNC(0x00EF31D0, void, Array_InternalArray__ICollection_Add_650, (Array * __this, HairDesignerGeneratorAdvancedFurBase_SkinData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08A88, Array_InternalArray__ICollection_Add_650__MethodInfo); DO_APP_FUNC(0x00EF3230, void, Array_InternalArray__ICollection_Add_651, (Array * __this, HairDesignerGeneratorFurShellBase_BufferData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08AD0, Array_InternalArray__ICollection_Add_651__MethodInfo); DO_APP_FUNC(0x00EF3290, void, Array_InternalArray__ICollection_Add_652, (Array * __this, HairDesignerGeneratorFurShellBase_SkinData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08AC0, Array_InternalArray__ICollection_Add_652__MethodInfo); DO_APP_FUNC(0x00EF32F0, void, Array_InternalArray__ICollection_Add_653, (Array * __this, Hammersley_Hammersley2dSeq16 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08AB8, Array_InternalArray__ICollection_Add_653__MethodInfo); DO_APP_FUNC(0x00EF3350, void, Array_InternalArray__ICollection_Add_654, (Array * __this, Hammersley_Hammersley2dSeq256 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08AB0, Array_InternalArray__ICollection_Add_654__MethodInfo); DO_APP_FUNC(0x00EF33B0, void, Array_InternalArray__ICollection_Add_655, (Array * __this, Hammersley_Hammersley2dSeq32 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08A48, Array_InternalArray__ICollection_Add_655__MethodInfo); DO_APP_FUNC(0x00EF3410, void, Array_InternalArray__ICollection_Add_656, (Array * __this, Hammersley_Hammersley2dSeq64 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08A38, Array_InternalArray__ICollection_Add_656__MethodInfo); DO_APP_FUNC(0x00EF3470, void, Array_InternalArray__ICollection_Add_657, (Array * __this, Hashtable_bucket item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08A28, Array_InternalArray__ICollection_Add_657__MethodInfo); DO_APP_FUNC(0x00EF34D0, void, Array_InternalArray__ICollection_Add_658, (Array * __this, HeadingTracker_Item item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08A18, Array_InternalArray__ICollection_Add_658__MethodInfo); DO_APP_FUNC(0x00EF3530, void, Array_InternalArray__ICollection_Add_659, (Array * __this, HealthFlashMonitor_Flash item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08A78, Array_InternalArray__ICollection_Add_659__MethodInfo); DO_APP_FUNC(0x00EF3590, void, Array_InternalArray__ICollection_Add_660, (Array * __this, HebrewNumber_HebrewValue item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08A70, Array_InternalArray__ICollection_Add_660__MethodInfo); DO_APP_FUNC(0x00EF35F0, void, Array_InternalArray__ICollection_Add_661, (Array * __this, InputActionMap_BindingJson item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08A68, Array_InternalArray__ICollection_Add_661__MethodInfo); DO_APP_FUNC(0x00EF3650, void, Array_InternalArray__ICollection_Add_662, (Array * __this, InputActionMap_BindingOverrideJson item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08A58, Array_InternalArray__ICollection_Add_662__MethodInfo); DO_APP_FUNC(0x00EF36B0, void, Array_InternalArray__ICollection_Add_663, (Array * __this, InputActionMap_ReadActionJson item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D089E0, Array_InternalArray__ICollection_Add_663__MethodInfo); DO_APP_FUNC(0x00EF3710, void, Array_InternalArray__ICollection_Add_664, (Array * __this, InputActionMap_ReadMapJson item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D089D8, Array_InternalArray__ICollection_Add_664__MethodInfo); DO_APP_FUNC(0x00EF3770, void, Array_InternalArray__ICollection_Add_665, (Array * __this, InputActionMap_WriteActionJson item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D089C8, Array_InternalArray__ICollection_Add_665__MethodInfo); DO_APP_FUNC(0x00EF37D0, void, Array_InternalArray__ICollection_Add_666, (Array * __this, InputActionMap_WriteMapJson item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D089C0, Array_InternalArray__ICollection_Add_666__MethodInfo); DO_APP_FUNC(0x00EF3830, void, Array_InternalArray__ICollection_Add_667, (Array * __this, InputActionRebindingExtensions_Parameter item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08A08, Array_InternalArray__ICollection_Add_667__MethodInfo); DO_APP_FUNC(0x00EF3890, void, Array_InternalArray__ICollection_Add_668, (Array * __this, InputActionRebindingExtensions_ParameterOverride item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D089F8, Array_InternalArray__ICollection_Add_668__MethodInfo); DO_APP_FUNC(0x00EF38F0, void, Array_InternalArray__ICollection_Add_669, (Array * __this, InputActionTrace_ActionEventPtr item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D089F0, Array_InternalArray__ICollection_Add_669__MethodInfo); DO_APP_FUNC(0x00EF3950, void, Array_InternalArray__ICollection_Add_670, (Array * __this, InputBindingCompositeContext_PartBinding item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D089E8, Array_InternalArray__ICollection_Add_670__MethodInfo); DO_APP_FUNC(0x00EF39B0, void, Array_InternalArray__ICollection_Add_671, (Array * __this, InputControlLayout_ControlItem item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08998, Array_InternalArray__ICollection_Add_671__MethodInfo); DO_APP_FUNC(0x00EF3A10, void, Array_InternalArray__ICollection_Add_672, (Array * __this, InputControlPath_ParsedPathComponent item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08988, Array_InternalArray__ICollection_Add_672__MethodInfo); DO_APP_FUNC(0x00EF3A70, void, Array_InternalArray__ICollection_Add_673, (Array * __this, InputControlScheme_DeviceRequirement item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08978, Array_InternalArray__ICollection_Add_673__MethodInfo); DO_APP_FUNC(0x00EF3AD0, void, Array_InternalArray__ICollection_Add_674, (Array * __this, InputControlScheme_SchemeJson item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08970, Array_InternalArray__ICollection_Add_674__MethodInfo); DO_APP_FUNC(0x00EF3B30, void, Array_InternalArray__ICollection_Add_675, (Array * __this, InputDevice_ControlBitRangeNode item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D089B8, Array_InternalArray__ICollection_Add_675__MethodInfo); DO_APP_FUNC(0x00EF3B90, void, Array_InternalArray__ICollection_Add_676, (Array * __this, InputEventTrace_DeviceInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D089B0, Array_InternalArray__ICollection_Add_676__MethodInfo); DO_APP_FUNC(0x00EF3BF0, void, Array_InternalArray__ICollection_Add_677, (Array * __this, InputManager_AvailableDevice item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D089A8, Array_InternalArray__ICollection_Add_677__MethodInfo); DO_APP_FUNC(0x00EF3C50, void, Array_InternalArray__ICollection_Add_678, (Array * __this, InputManager_StateChangeMonitorListener item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D089A0, Array_InternalArray__ICollection_Add_678__MethodInfo); DO_APP_FUNC(0x00EF3CB0, void, Array_InternalArray__ICollection_Add_679, (Array * __this, InputManager_StateChangeMonitorTimeout item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08948, Array_InternalArray__ICollection_Add_679__MethodInfo); DO_APP_FUNC(0x00EF3D10, void, Array_InternalArray__ICollection_Add_680, (Array * __this, InputManager_StateChangeMonitorsForDevice item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08940, Array_InternalArray__ICollection_Add_680__MethodInfo); DO_APP_FUNC(0x00EF3D70, void, Array_InternalArray__ICollection_Add_681, (Array * __this, InputRemoting_RemoteInputDevice item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08938, Array_InternalArray__ICollection_Add_681__MethodInfo); DO_APP_FUNC(0x00EF3DD0, void, Array_InternalArray__ICollection_Add_682, (Array * __this, InputRemoting_RemoteSender item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08930, Array_InternalArray__ICollection_Add_682__MethodInfo); DO_APP_FUNC(0x00EF3E30, void, Array_InternalArray__ICollection_Add_683, (Array * __this, InputStateHistory_Record item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08968, Array_InternalArray__ICollection_Add_683__MethodInfo); DO_APP_FUNC(0x00EF3E90, void, Array_InternalArray__ICollection_Add_684, (Array * __this, InputSystemUIInputModule_InputActionReferenceState item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08960, Array_InternalArray__ICollection_Add_684__MethodInfo); DO_APP_FUNC(0x00EF3EF0, void, Array_InternalArray__ICollection_Add_685, (Array * __this, InputUser_OngoingAccountSelection item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08958, Array_InternalArray__ICollection_Add_685__MethodInfo); DO_APP_FUNC(0x00EF3F50, void, Array_InternalArray__ICollection_Add_686, (Array * __this, InputUser_UserData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08950, Array_InternalArray__ICollection_Add_686__MethodInfo); DO_APP_FUNC(0x00EF3FB0, void, Array_InternalArray__ICollection_Add_687, (Array * __this, InternalTreeView_TreeViewItemWrapper item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D088F0, Array_InternalArray__ICollection_Add_687__MethodInfo); DO_APP_FUNC(0x00EF4010, void, Array_InternalArray__ICollection_Add_688, (Array * __this, JSONDeserialization_TaskField item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D088E8, Array_InternalArray__ICollection_Add_688__MethodInfo); DO_APP_FUNC(0x00EF4070, void, Array_InternalArray__ICollection_Add_689, (Array * __this, JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D088D8, Array_InternalArray__ICollection_Add_689__MethodInfo); DO_APP_FUNC(0x00EF40D0, void, Array_InternalArray__ICollection_Add_690, (Array * __this, JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D088C8, Array_InternalArray__ICollection_Add_690__MethodInfo); DO_APP_FUNC(0x00EF4130, void, Array_InternalArray__ICollection_Add_691, (Array * __this, JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08928, Array_InternalArray__ICollection_Add_691__MethodInfo); DO_APP_FUNC(0x00EF4190, void, Array_InternalArray__ICollection_Add_692, (Array * __this, JsonParser_JsonValue item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08918, Array_InternalArray__ICollection_Add_692__MethodInfo); DO_APP_FUNC(0x00EF41F0, void, Array_InternalArray__ICollection_Add_693, (Array * __this, LayerGridGraph_HeightSample item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08908, Array_InternalArray__ICollection_Add_693__MethodInfo); DO_APP_FUNC(0x00EF4250, void, Array_InternalArray__ICollection_Add_694, (Array * __this, Logs_LogMessage_1 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D088F8, Array_InternalArray__ICollection_Add_694__MethodInfo); DO_APP_FUNC(0x00EF42B0, void, Array_InternalArray__ICollection_Add_695, (Array * __this, Logs_LogMessage item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08890, Array_InternalArray__ICollection_Add_695__MethodInfo); DO_APP_FUNC(0x00EF4310, void, Array_InternalArray__ICollection_Add_696, (Array * __this, MagicLightProbes_VolumeParameters item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08888, Array_InternalArray__ICollection_Add_696__MethodInfo); DO_APP_FUNC(0x00EF4370, void, Array_InternalArray__ICollection_Add_697, (Array * __this, MailHeaderInfo_HeaderInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08880, Array_InternalArray__ICollection_Add_697__MethodInfo); DO_APP_FUNC(0x00EF43D0, void, Array_InternalArray__ICollection_Add_698, (Array * __this, MemberRelationshipService_RelationshipEntry item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08870, Array_InternalArray__ICollection_Add_698__MethodInfo); DO_APP_FUNC(0x00EF4430, void, Array_InternalArray__ICollection_Add_699, (Array * __this, MemoryHelpers_BitRegion item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D088B8, Array_InternalArray__ICollection_Add_699__MethodInfo); DO_APP_FUNC(0x00EF4490, void, Array_InternalArray__ICollection_Add_700, (Array * __this, MotionSolver_GPUNodeData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D088B0, Array_InternalArray__ICollection_Add_700__MethodInfo); DO_APP_FUNC(0x00EF44F0, void, Array_InternalArray__ICollection_Add_701, (Array * __this, MotionSolver_GPUNodeInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D088A0, Array_InternalArray__ICollection_Add_701__MethodInfo); DO_APP_FUNC(0x00EF4550, void, Array_InternalArray__ICollection_Add_702, (Array * __this, MotionSolver_GPURootTransform item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08898, Array_InternalArray__ICollection_Add_702__MethodInfo); DO_APP_FUNC(0x00EF45B0, void, Array_InternalArray__ICollection_Add_703, (Array * __this, MovingPlatform_Waypoint item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08830, Array_InternalArray__ICollection_Add_703__MethodInfo); DO_APP_FUNC(0x00EF4610, void, Array_InternalArray__ICollection_Add_704, (Array * __this, NightmareStyling_WallMaterial item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08828, Array_InternalArray__ICollection_Add_704__MethodInfo); DO_APP_FUNC(0x00EF4670, void, Array_InternalArray__ICollection_Add_705, (Array * __this, NoiseSettings_TransformNoiseParams item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08820, Array_InternalArray__ICollection_Add_705__MethodInfo); DO_APP_FUNC(0x00EF46D0, void, Array_InternalArray__ICollection_Add_706, (Array * __this, NolanBehaviour_OverlappedCollider item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08810, Array_InternalArray__ICollection_Add_706__MethodInfo); DO_APP_FUNC(0x00EF4730, void, Array_InternalArray__ICollection_Add_707, (Array * __this, ObjectPoolBase_PreloadedPrefab item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08860, Array_InternalArray__ICollection_Add_707__MethodInfo); DO_APP_FUNC(0x00EF4790, void, Array_InternalArray__ICollection_Add_708, (Array * __this, OnScreenControl_OnScreenDeviceInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08850, Array_InternalArray__ICollection_Add_708__MethodInfo); DO_APP_FUNC(0x00EF47F0, void, Array_InternalArray__ICollection_Add_709, (Array * __this, OpenXRInput_SerializedBinding item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08848, Array_InternalArray__ICollection_Add_709__MethodInfo); DO_APP_FUNC(0x00EF4850, void, Array_InternalArray__ICollection_Add_710, (Array * __this, PackedPlayModeBuildLogs_RuntimeBuildLog item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08840, Array_InternalArray__ICollection_Add_710__MethodInfo); DO_APP_FUNC(0x00EF48B0, void, Array_InternalArray__ICollection_Add_711, (Array * __this, ParameterizedStrings_FormatParam item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D087E8, Array_InternalArray__ICollection_Add_711__MethodInfo); DO_APP_FUNC(0x00EF4910, void, Array_InternalArray__ICollection_Add_712, (Array * __this, ParticleSystem_Particle item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D087E0, Array_InternalArray__ICollection_Add_712__MethodInfo); DO_APP_FUNC(0x00EF4970, void, Array_InternalArray__ICollection_Add_713, (Array * __this, PlayerStatsController_Category item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D087D8, Array_InternalArray__ICollection_Add_713__MethodInfo); DO_APP_FUNC(0x00EF49D0, void, Array_InternalArray__ICollection_Add_714, (Array * __this, PointKDTree_Node item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D087D0, Array_InternalArray__ICollection_Add_714__MethodInfo); DO_APP_FUNC(0x00EF4A30, void, Array_InternalArray__ICollection_Add_715, (Array * __this, PointerDeviceState_PointerLocation item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08808, Array_InternalArray__ICollection_Add_715__MethodInfo); DO_APP_FUNC(0x00EF4A90, void, Array_InternalArray__ICollection_Add_716, (Array * __this, ProbeBrickIndex_Brick item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08800, Array_InternalArray__ICollection_Add_716__MethodInfo); DO_APP_FUNC(0x00EF4AF0, void, Array_InternalArray__ICollection_Add_717, (Array * __this, ProbeBrickIndex_BrickMeta item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D087F8, Array_InternalArray__ICollection_Add_717__MethodInfo); DO_APP_FUNC(0x00EF4B50, void, Array_InternalArray__ICollection_Add_718, (Array * __this, ProbeBrickIndex_CellIndexUpdateInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D087F0, Array_InternalArray__ICollection_Add_718__MethodInfo); DO_APP_FUNC(0x00EF4BB0, void, Array_InternalArray__ICollection_Add_719, (Array * __this, ProbeBrickIndex_ReservedBrick item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08788, Array_InternalArray__ICollection_Add_719__MethodInfo); DO_APP_FUNC(0x00EF4C10, void, Array_InternalArray__ICollection_Add_720, (Array * __this, ProbeBrickIndex_VoxelMeta item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08780, Array_InternalArray__ICollection_Add_720__MethodInfo); DO_APP_FUNC(0x00EF4C70, void, Array_InternalArray__ICollection_Add_721, (Array * __this, ProbeBrickPool_BrickChunkAlloc item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08770, Array_InternalArray__ICollection_Add_721__MethodInfo); DO_APP_FUNC(0x00EF4CD0, void, Array_InternalArray__ICollection_Add_722, (Array * __this, ProbeReferenceVolume_RegId item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08760, Array_InternalArray__ICollection_Add_722__MethodInfo); DO_APP_FUNC(0x00EF4D30, void, Array_InternalArray__ICollection_Add_723, (Array * __this, ProbeReferenceVolume_Volume item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D087C0, Array_InternalArray__ICollection_Add_723__MethodInfo); DO_APP_FUNC(0x00EF4D90, void, Array_InternalArray__ICollection_Add_724, (Array * __this, ProbeVolumePerSceneData_SerializableAssetItem item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D087B0, Array_InternalArray__ICollection_Add_724__MethodInfo); DO_APP_FUNC(0x00EF4DF0, void, Array_InternalArray__ICollection_Add_725, (Array * __this, ProbeVolumeSceneData_SerializableBoundItem item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D087A0, Array_InternalArray__ICollection_Add_725__MethodInfo); DO_APP_FUNC(0x00EF4E50, void, Array_InternalArray__ICollection_Add_726, (Array * __this, ProbeVolumeSceneData_SerializableHasPVItem item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08790, Array_InternalArray__ICollection_Add_726__MethodInfo); DO_APP_FUNC(0x00EF4EB0, void, Array_InternalArray__ICollection_Add_727, (Array * __this, ProbeVolumeSceneData_SerializablePVBakeSettings item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08738, Array_InternalArray__ICollection_Add_727__MethodInfo); DO_APP_FUNC(0x00EF4F10, void, Array_InternalArray__ICollection_Add_728, (Array * __this, ProbeVolumeSceneData_SerializablePVProfile item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08730, Array_InternalArray__ICollection_Add_728__MethodInfo); DO_APP_FUNC(0x00EF4F70, void, Array_InternalArray__ICollection_Add_729, (Array * __this, ProtocolClient_AckCallback item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08728, Array_InternalArray__ICollection_Add_729__MethodInfo); DO_APP_FUNC(0x00EF4FD0, void, Array_InternalArray__ICollection_Add_730, (Array * __this, ProtocolClient_MsgHandler item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08720, Array_InternalArray__ICollection_Add_730__MethodInfo); DO_APP_FUNC(0x00EF5030, void, Array_InternalArray__ICollection_Add_731, (Array * __this, RVOQuadtree_Node item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08758, Array_InternalArray__ICollection_Add_731__MethodInfo); DO_APP_FUNC(0x00EF5090, void, Array_InternalArray__ICollection_Add_732, (Array * __this, Regex_CachedCodeEntryKey item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08750, Array_InternalArray__ICollection_Add_732__MethodInfo); DO_APP_FUNC(0x00EF50F0, void, Array_InternalArray__ICollection_Add_733, (Array * __this, RegexCharClass_LowerCaseMapping item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08748, Array_InternalArray__ICollection_Add_733__MethodInfo); DO_APP_FUNC(0x00EF5150, void, Array_InternalArray__ICollection_Add_734, (Array * __this, RegexCharClass_SingleRange item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08740, Array_InternalArray__ICollection_Add_734__MethodInfo); DO_APP_FUNC(0x00EF51B0, void, Array_InternalArray__ICollection_Add_735, (Array * __this, RenderChain_RenderNodeData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D086F8, Array_InternalArray__ICollection_Add_735__MethodInfo); DO_APP_FUNC(0x00EF5210, void, Array_InternalArray__ICollection_Add_736, (Array * __this, RenderGraph_CompiledPassInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D086F0, Array_InternalArray__ICollection_Add_736__MethodInfo); DO_APP_FUNC(0x00EF5270, void, Array_InternalArray__ICollection_Add_737, (Array * __this, RenderGraph_CompiledResourceInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D086E8, Array_InternalArray__ICollection_Add_737__MethodInfo); DO_APP_FUNC(0x00EF52D0, void, Array_InternalArray__ICollection_Add_738, (Array * __this, RenderGraphDebugData_PassDebugData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D086E0, Array_InternalArray__ICollection_Add_738__MethodInfo); DO_APP_FUNC(0x00EF5330, void, Array_InternalArray__ICollection_Add_739, (Array * __this, RenderGraphDebugData_ResourceDebugData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08718, Array_InternalArray__ICollection_Add_739__MethodInfo); DO_APP_FUNC(0x00EF5390, void, Array_InternalArray__ICollection_Add_740, (Array * __this, ResourceManager_DeferredCallbackRegisterRequest item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08710, Array_InternalArray__ICollection_Add_740__MethodInfo); DO_APP_FUNC(0x00EF53F0, void, Array_InternalArray__ICollection_Add_741, (Array * __this, RetainedGizmos_MeshWithHash item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08708, Array_InternalArray__ICollection_Add_741__MethodInfo); DO_APP_FUNC(0x00EF5450, void, Array_InternalArray__ICollection_Add_742, (Array * __this, SendMouseEvents_HitInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08700, Array_InternalArray__ICollection_Add_742__MethodInfo); DO_APP_FUNC(0x00EF54B0, void, Array_InternalArray__ICollection_Add_743, (Array * __this, SequenceNode_SequenceConstructPosContext item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D086B8, Array_InternalArray__ICollection_Add_743__MethodInfo); DO_APP_FUNC(0x00EF5510, void, Array_InternalArray__ICollection_Add_744, (Array * __this, SerializedObject_Field item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D086B0, Array_InternalArray__ICollection_Add_744__MethodInfo); DO_APP_FUNC(0x00EF5570, void, Array_InternalArray__ICollection_Add_745, (Array * __this, SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D086A0, Array_InternalArray__ICollection_Add_745__MethodInfo); DO_APP_FUNC(0x00EF55D0, void, Array_InternalArray__ICollection_Add_746, (Array * __this, SlotEquip_ItemDefinitionStateName item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08690, Array_InternalArray__ICollection_Add_746__MethodInfo); DO_APP_FUNC(0x00EF5630, void, Array_InternalArray__ICollection_Add_747, (Array * __this, Socket_WSABUF item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D086D8, Array_InternalArray__ICollection_Add_747__MethodInfo); DO_APP_FUNC(0x00EF5690, void, Array_InternalArray__ICollection_Add_748, (Array * __this, StyleComplexSelector_PseudoStateData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D086D0, Array_InternalArray__ICollection_Add_748__MethodInfo); DO_APP_FUNC(0x00EF56F0, void, Array_InternalArray__ICollection_Add_749, (Array * __this, StylePropertyAnimationSystem_ElementPropertyPair item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D086C8, Array_InternalArray__ICollection_Add_749__MethodInfo); DO_APP_FUNC(0x00EF5750, void, Array_InternalArray__ICollection_Add_750, (Array * __this, StyleSheet_ImportStruct item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D086C0, Array_InternalArray__ICollection_Add_750__MethodInfo); DO_APP_FUNC(0x00EF57B0, void, Array_InternalArray__ICollection_Add_751, (Array * __this, StyleSheetCache_SheetHandleKey item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08658, Array_InternalArray__ICollection_Add_751__MethodInfo); DO_APP_FUNC(0x00EF5810, void, Array_InternalArray__ICollection_Add_752, (Array * __this, StyleVariableResolver_ResolveContext item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08650, Array_InternalArray__ICollection_Add_752__MethodInfo); DO_APP_FUNC(0x00EF5870, void, Array_InternalArray__ICollection_Add_753, (Array * __this, TMP_Text_UnicodeChar item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08648, Array_InternalArray__ICollection_Add_753__MethodInfo); DO_APP_FUNC(0x00EF58D0, void, Array_InternalArray__ICollection_Add_754, (Array * __this, TemplateAsset_AttributeOverride item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08640, Array_InternalArray__ICollection_Add_754__MethodInfo); DO_APP_FUNC(0x00EF5930, void, Array_InternalArray__ICollection_Add_755, (Array * __this, TextPic_IconName item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08688, Array_InternalArray__ICollection_Add_755__MethodInfo); DO_APP_FUNC(0x00EF5990, void, Array_InternalArray__ICollection_Add_756, (Array * __this, TextResourceManager_FontAssetRef item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08680, Array_InternalArray__ICollection_Add_756__MethodInfo); DO_APP_FUNC(0x00EF59F0, void, Array_InternalArray__ICollection_Add_757, (Array * __this, TextSettings_FontReferenceMap item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08670, Array_InternalArray__ICollection_Add_757__MethodInfo); DO_APP_FUNC(0x00EF5A50, void, Array_InternalArray__ICollection_Add_758, (Array * __this, TextureBlitter_BlitInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08660, Array_InternalArray__ICollection_Add_758__MethodInfo); DO_APP_FUNC(0x00EF5AB0, void, Array_InternalArray__ICollection_Add_759, (Array * __this, TexturePacker_JsonArray_Frame item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08608, Array_InternalArray__ICollection_Add_759__MethodInfo); DO_APP_FUNC(0x00EF5B10, void, Array_InternalArray__ICollection_Add_760, (Array * __this, TextureRegistry_TextureInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D085F8, Array_InternalArray__ICollection_Add_760__MethodInfo); DO_APP_FUNC(0x00EF5B70, void, Array_InternalArray__ICollection_Add_761, (Array * __this, TimeNotificationBehaviour_NotificationEntry item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D085E8, Array_InternalArray__ICollection_Add_761__MethodInfo); DO_APP_FUNC(0x00EF5BD0, void, Array_InternalArray__ICollection_Add_762, (Array * __this, TrackedDeviceRaycaster_RaycastHitData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D085D8, Array_InternalArray__ICollection_Add_762__MethodInfo); DO_APP_FUNC(0x00EF5C30, void, Array_InternalArray__ICollection_Add_763, (Array * __this, TrackedPoseDriverDataDescription_PoseData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08638, Array_InternalArray__ICollection_Add_763__MethodInfo); DO_APP_FUNC(0x00EF5C90, void, Array_InternalArray__ICollection_Add_764, (Array * __this, TreeView_TreeViewItemWrapper item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08628, Array_InternalArray__ICollection_Add_764__MethodInfo); DO_APP_FUNC(0x00EF5CF0, void, Array_InternalArray__ICollection_Add_765, (Array * __this, TreeViewReorderableDragAndDropController_TreeItemState item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08618, Array_InternalArray__ICollection_Add_765__MethodInfo); DO_APP_FUNC(0x00EF5D50, void, Array_InternalArray__ICollection_Add_766, (Array * __this, UIRStylePainter_Entry item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08610, Array_InternalArray__ICollection_Add_766__MethodInfo); DO_APP_FUNC(0x00EF5DB0, void, Array_InternalArray__ICollection_Add_767, (Array * __this, UIRenderDevice_AllocToFree item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08588, Array_InternalArray__ICollection_Add_767__MethodInfo); DO_APP_FUNC(0x00EF5E10, void, Array_InternalArray__ICollection_Add_768, (Array * __this, UIRenderDevice_AllocToUpdate item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08578, Array_InternalArray__ICollection_Add_768__MethodInfo); DO_APP_FUNC(0x00EF5E70, void, Array_InternalArray__ICollection_Add_769, (Array * __this, UIRenderDevice_DeviceToFree item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08568, Array_InternalArray__ICollection_Add_769__MethodInfo); DO_APP_FUNC(0x00EF5ED0, void, Array_InternalArray__ICollection_Add_770, (Array * __this, UdpPipe_Ack item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08560, Array_InternalArray__ICollection_Add_770__MethodInfo); DO_APP_FUNC(0x00EF5F30, void, Array_InternalArray__ICollection_Add_771, (Array * __this, UmAlQuraCalendar_DateMapping item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D085C8, Array_InternalArray__ICollection_Add_771__MethodInfo); DO_APP_FUNC(0x00EF5F90, void, Array_InternalArray__ICollection_Add_772, (Array * __this, UnitySynchronizationContext_WorkRequest item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D085B8, Array_InternalArray__ICollection_Add_772__MethodInfo); DO_APP_FUNC(0x00EF5FF0, void, Array_InternalArray__ICollection_Add_773, (Array * __this, VisualTreeAsset_SlotDefinition item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D085A8, Array_InternalArray__ICollection_Add_773__MethodInfo); DO_APP_FUNC(0x00EF6050, void, Array_InternalArray__ICollection_Add_774, (Array * __this, VisualTreeAsset_SlotUsageEntry item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08598, Array_InternalArray__ICollection_Add_774__MethodInfo); DO_APP_FUNC(0x00EF60B0, void, Array_InternalArray__ICollection_Add_775, (Array * __this, VisualTreeAsset_UsingEntry item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08538, Array_InternalArray__ICollection_Add_775__MethodInfo); DO_APP_FUNC(0x00EF6110, void, Array_InternalArray__ICollection_Add_776, (Array * __this, WetDecalSystem_MaterialBatchId item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08528, Array_InternalArray__ICollection_Add_776__MethodInfo); DO_APP_FUNC(0x00EF6170, void, Array_InternalArray__ICollection_Add_777, (Array * __this, XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08518, Array_InternalArray__ICollection_Add_777__MethodInfo); DO_APP_FUNC(0x00EF61D0, void, Array_InternalArray__ICollection_Add_778, (Array * __this, XmlEventCache_XmlEvent item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08508, Array_InternalArray__ICollection_Add_778__MethodInfo); DO_APP_FUNC(0x00EF6230, void, Array_InternalArray__ICollection_Add_779, (Array * __this, XmlNamespaceManager_NamespaceDeclaration item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08558, Array_InternalArray__ICollection_Add_779__MethodInfo); DO_APP_FUNC(0x00EF6290, void, Array_InternalArray__ICollection_Add_780, (Array * __this, XmlSchemaObjectTable_XmlSchemaObjectEntry item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08550, Array_InternalArray__ICollection_Add_780__MethodInfo); DO_APP_FUNC(0x00EF62F0, void, Array_InternalArray__ICollection_Add_781, (Array * __this, XmlTextReaderImpl_ParsingState item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08548, Array_InternalArray__ICollection_Add_781__MethodInfo); DO_APP_FUNC(0x00EF6350, void, Array_InternalArray__ICollection_Add_782, (Array * __this, XmlTextWriter_Namespace item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08540, Array_InternalArray__ICollection_Add_782__MethodInfo); DO_APP_FUNC(0x00EF63B0, void, Array_InternalArray__ICollection_Add_783, (Array * __this, XmlTextWriter_TagInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D084D0, Array_InternalArray__ICollection_Add_783__MethodInfo); DO_APP_FUNC(0x00EF6410, void, Array_InternalArray__ICollection_Add_784, (Array * __this, XmlWellFormedWriter_AttrName item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D084C8, Array_InternalArray__ICollection_Add_784__MethodInfo); DO_APP_FUNC(0x00EF6470, void, Array_InternalArray__ICollection_Add_785, (Array * __this, XmlWellFormedWriter_ElementScope item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D084B8, Array_InternalArray__ICollection_Add_785__MethodInfo); DO_APP_FUNC(0x00EF64D0, void, Array_InternalArray__ICollection_Add_786, (Array * __this, XmlWellFormedWriter_Namespace item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D084B0, Array_InternalArray__ICollection_Add_786__MethodInfo); DO_APP_FUNC(0x00EF6530, void, Array_InternalArray__ICollection_Add_787, (Array * __this, ftLightmaps_LightmapAdditionalData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D084F8, Array_InternalArray__ICollection_Add_787__MethodInfo); DO_APP_FUNC(0x00EF6590, void, Array_InternalArray__ICollection_Add_788, (Array * __this, gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D084F0, Array_InternalArray__ICollection_Add_788__MethodInfo); DO_APP_FUNC(0x00EF65F0, void, Array_InternalArray__ICollection_Add_789, (Array * __this, gWxrirpmIhQTmhziZnlXlEwmYtKB_QpfrOmwHesfdZMwAoLXiDrdPqtqG item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D084E8, Array_InternalArray__ICollection_Add_789__MethodInfo); DO_APP_FUNC(0x00EF6650, void, Array_InternalArray__ICollection_Add_790, (Array * __this, gWxrirpmIhQTmhziZnlXlEwmYtKB_vEAqJCAedocGOpCIXmtvTuaaVKZ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D084D8, Array_InternalArray__ICollection_Add_790__MethodInfo); DO_APP_FUNC(0x00EF66B0, void, Array_InternalArray__ICollection_Add_791, (Array * __this, jlOcQLgjodoHrMnRTMaZoBnVTQkmA_UQNUjWDnDBJiFEZHZdfMIOPkNvdGb item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08488, Array_InternalArray__ICollection_Add_791__MethodInfo); DO_APP_FUNC(0x00EF6710, void, Array_InternalArray__ICollection_Add_792, (Array * __this, DebugUI_Foldout_ContextMenuItem item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08480, Array_InternalArray__ICollection_Add_792__MethodInfo); DO_APP_FUNC(0x00EF6770, void, Array_InternalArray__ICollection_Add_793, (Array * __this, Decimal_DecCalc_PowerOvfl item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08470, Array_InternalArray__ICollection_Add_793__MethodInfo); DO_APP_FUNC(0x00EF67D0, void, Array_InternalArray__ICollection_Add_794, (Array * __this, FacetsChecker_FacetsCompiler_Map item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08460, Array_InternalArray__ICollection_Add_794__MethodInfo); DO_APP_FUNC(0x00EF6830, void, Array_InternalArray__ICollection_Add_795, (Array * __this, InputControlLayout_Collection_LayoutMatcher item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D084A8, Array_InternalArray__ICollection_Add_795__MethodInfo); DO_APP_FUNC(0x00EF6890, void, Array_InternalArray__ICollection_Add_796, (Array * __this, InputControlLayout_Collection_PrecompiledLayout item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D084A0, Array_InternalArray__ICollection_Add_796__MethodInfo); DO_APP_FUNC(0x00EF68F0, void, Array_InternalArray__ICollection_Add_797, (Array * __this, InputControlScheme_MatchResult_Match item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08498, Array_InternalArray__ICollection_Add_797__MethodInfo); DO_APP_FUNC(0x00EF6950, void, Array_InternalArray__ICollection_Add_798, (Array * __this, InputControlScheme_SchemeJson_DeviceJson item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08490, Array_InternalArray__ICollection_Add_798__MethodInfo); DO_APP_FUNC(0x00EF69B0, void, Array_InternalArray__ICollection_Add_799, (Array * __this, InputDeviceMatcher_MatcherJson_Capability item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08420, Array_InternalArray__ICollection_Add_799__MethodInfo); DO_APP_FUNC(0x00EF6A10, void, Array_InternalArray__ICollection_Add_800, (Array * __this, InstructionList_DebugView_InstructionView item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08418, Array_InternalArray__ICollection_Add_800__MethodInfo); DO_APP_FUNC(0x00EF6A70, void, Array_InternalArray__ICollection_Add_801, (Array * __this, Interop_SspiCli_SecBuffer item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08410, Array_InternalArray__ICollection_Add_801__MethodInfo); DO_APP_FUNC(0x00EF6AD0, void, Array_InternalArray__ICollection_Add_802, (Array * __this, PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08408, Array_InternalArray__ICollection_Add_802__MethodInfo); DO_APP_FUNC(0x00EF6B30, void, Array_InternalArray__ICollection_Add_803, (Array * __this, TargetPositionCache_CacheCurve_Item item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08450, Array_InternalArray__ICollection_Add_803__MethodInfo); DO_APP_FUNC(0x00EF6B90, void, Array_InternalArray__ICollection_Add_804, (Array * __this, TargetPositionCache_CacheEntry_RecordingItem item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08440, Array_InternalArray__ICollection_Add_804__MethodInfo); DO_APP_FUNC(0x00EF6BF0, bool, Array_InternalArray__ICollection_Contains, (Array * __this, ArraySegment_1_Byte_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D083D0, Array_InternalArray__ICollection_Contains__MethodInfo); DO_APP_FUNC(0x00EF6D80, bool, Array_InternalArray__ICollection_Contains_1, (Array * __this, AsyncOperationHandle_1_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D083C8, Array_InternalArray__ICollection_Contains_1__MethodInfo); DO_APP_FUNC(0x00EF6F10, bool, Array_InternalArray__ICollection_Contains_2, (Array * __this, VoiceSender_1_TPeer_ChannelDelta_Dissonance_Integrations_PhotonBolt_BoltPeer_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D083C0, Array_InternalArray__ICollection_Contains_2__MethodInfo); DO_APP_FUNC(0x00EF70A0, bool, Array_InternalArray__ICollection_Contains_3, (Array * __this, DynamicHeightVirtualizationController_1_T_ContentHeightCacheInfo_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D083B8, Array_InternalArray__ICollection_Contains_3__MethodInfo); DO_APP_FUNC(0x00EF7210, bool, Array_InternalArray__ICollection_Contains_4, (Array * __this, StylePropertyAnimationSystem_Values_1_T_EmptyData_Background_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08400, Array_InternalArray__ICollection_Contains_4__MethodInfo); DO_APP_FUNC(0x00EF7380, bool, Array_InternalArray__ICollection_Contains_5, (Array * __this, StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D083F0, Array_InternalArray__ICollection_Contains_5__MethodInfo); DO_APP_FUNC(0x00EF74F0, bool, Array_InternalArray__ICollection_Contains_6, (Array * __this, StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D083E8, Array_InternalArray__ICollection_Contains_6__MethodInfo); DO_APP_FUNC(0x00EF7660, bool, Array_InternalArray__ICollection_Contains_7, (Array * __this, StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D083E0, Array_InternalArray__ICollection_Contains_7__MethodInfo); DO_APP_FUNC(0x00EF77D0, bool, Array_InternalArray__ICollection_Contains_8, (Array * __this, StylePropertyAnimationSystem_Values_1_T_EmptyData_Length_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08388, Array_InternalArray__ICollection_Contains_8__MethodInfo); DO_APP_FUNC(0x00EF7940, bool, Array_InternalArray__ICollection_Contains_9, (Array * __this, StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08380, Array_InternalArray__ICollection_Contains_9__MethodInfo); DO_APP_FUNC(0x00EF7AB0, bool, Array_InternalArray__ICollection_Contains_10, (Array * __this, StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08378, Array_InternalArray__ICollection_Contains_10__MethodInfo); DO_APP_FUNC(0x00EF7C20, bool, Array_InternalArray__ICollection_Contains_11, (Array * __this, StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08370, Array_InternalArray__ICollection_Contains_11__MethodInfo); DO_APP_FUNC(0x00EF7D90, bool, Array_InternalArray__ICollection_Contains_12, (Array * __this, StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D083B0, Array_InternalArray__ICollection_Contains_12__MethodInfo); DO_APP_FUNC(0x00EF7F00, bool, Array_InternalArray__ICollection_Contains_13, (Array * __this, StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D083A8, Array_InternalArray__ICollection_Contains_13__MethodInfo); DO_APP_FUNC(0x00EF8070, bool, Array_InternalArray__ICollection_Contains_14, (Array * __this, StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D083A0, Array_InternalArray__ICollection_Contains_14__MethodInfo); DO_APP_FUNC(0x00EF81E0, bool, Array_InternalArray__ICollection_Contains_15, (Array * __this, StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08390, Array_InternalArray__ICollection_Contains_15__MethodInfo); DO_APP_FUNC(0x00EF8350, bool, Array_InternalArray__ICollection_Contains_16, (Array * __this, IntervalTree_1_T_Entry_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08338, Array_InternalArray__ICollection_Contains_16__MethodInfo); DO_APP_FUNC(0x00EF84F0, bool, Array_InternalArray__ICollection_Contains_17, (Array * __this, XHashtable_1_TValue_XHashtableState_TValue_Entry_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08330, Array_InternalArray__ICollection_Contains_17__MethodInfo); DO_APP_FUNC(0x00EF8670, bool, Array_InternalArray__ICollection_Contains_18, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_ValueTuple_2_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08328, Array_InternalArray__ICollection_Contains_18__MethodInfo); DO_APP_FUNC(0x00EF8800, bool, Array_InternalArray__ICollection_Contains_19, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_ValueTuple_2_System_Object__1 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08320, Array_InternalArray__ICollection_Contains_19__MethodInfo); DO_APP_FUNC(0x00EF8990, bool, Array_InternalArray__ICollection_Contains_20, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Byte_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08368, Array_InternalArray__ICollection_Contains_20__MethodInfo); DO_APP_FUNC(0x00EF8B30, bool, Array_InternalArray__ICollection_Contains_21, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_ByteEnum_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08360, Array_InternalArray__ICollection_Contains_21__MethodInfo); DO_APP_FUNC(0x00EF8CB0, bool, Array_InternalArray__ICollection_Contains_22, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_ByteEnum_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08350, Array_InternalArray__ICollection_Contains_22__MethodInfo); DO_APP_FUNC(0x00EF8E50, bool, Array_InternalArray__ICollection_Contains_23, (Array * __this, Dictionary_2_TKey_TValue_Entry_Dissonance_Audio_Playback_FrameFormat_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08340, Array_InternalArray__ICollection_Contains_23__MethodInfo); DO_APP_FUNC(0x00EF9010, bool, Array_InternalArray__ICollection_Contains_24, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Guid_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D082F0, Array_InternalArray__ICollection_Contains_24__MethodInfo); DO_APP_FUNC(0x00EF91A0, bool, Array_InternalArray__ICollection_Contains_25, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Guid_System_UInt32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D082E0, Array_InternalArray__ICollection_Contains_25__MethodInfo); DO_APP_FUNC(0x00EF9360, bool, Array_InternalArray__ICollection_Contains_26, (Array * __this, Dictionary_2_TKey_TValue_Entry_UnityEngine_Hash128_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D082D0, Array_InternalArray__ICollection_Contains_26__MethodInfo); DO_APP_FUNC(0x00EF94F0, bool, Array_InternalArray__ICollection_Contains_27, (Array * __this, Dictionary_2_TKey_TValue_Entry_Pathfinding_Int2_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D082C8, Array_InternalArray__ICollection_Contains_27__MethodInfo); DO_APP_FUNC(0x00EF9690, bool, Array_InternalArray__ICollection_Contains_28, (Array * __this, Dictionary_2_TKey_TValue_Entry_Pathfinding_Int3_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08318, Array_InternalArray__ICollection_Contains_28__MethodInfo); DO_APP_FUNC(0x00EF9830, bool, Array_InternalArray__ICollection_Contains_29, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08310, Array_InternalArray__ICollection_Contains_29__MethodInfo); DO_APP_FUNC(0x00EF99D0, bool, Array_InternalArray__ICollection_Contains_30, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_System_ValueTuple_2_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08308, Array_InternalArray__ICollection_Contains_30__MethodInfo); DO_APP_FUNC(0x00EF9B80, bool, Array_InternalArray__ICollection_Contains_31, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_System_Boolean_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08300, Array_InternalArray__ICollection_Contains_31__MethodInfo); DO_APP_FUNC(0x00EF9D00, bool, Array_InternalArray__ICollection_Contains_32, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_System_ByteEnum_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08288, Array_InternalArray__ICollection_Contains_32__MethodInfo); DO_APP_FUNC(0x00EF9E80, bool, Array_InternalArray__ICollection_Contains_33, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_System_Char_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08280, Array_InternalArray__ICollection_Contains_33__MethodInfo); DO_APP_FUNC(0x00EFA000, bool, Array_InternalArray__ICollection_Contains_34, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08270, Array_InternalArray__ICollection_Contains_34__MethodInfo); DO_APP_FUNC(0x00EFA1E0, bool, Array_InternalArray__ICollection_Contains_35, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int16_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08260, Array_InternalArray__ICollection_Contains_35__MethodInfo); DO_APP_FUNC(0x00EFA360, bool, Array_InternalArray__ICollection_Contains_36, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_Pathfinding_Int3_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D082C0, Array_InternalArray__ICollection_Contains_36__MethodInfo); DO_APP_FUNC(0x00EFA500, bool, Array_InternalArray__ICollection_Contains_37, (Array * __this, ADictionary_2_TKey_TValue_Entry_System_Int32_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D082B0, Array_InternalArray__ICollection_Contains_37__MethodInfo); DO_APP_FUNC(0x00EFA680, bool, Array_InternalArray__ICollection_Contains_38, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D082A0, Array_InternalArray__ICollection_Contains_38__MethodInfo); DO_APP_FUNC(0x00EFA800, bool, Array_InternalArray__ICollection_Contains_39, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int32Enum_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08290, Array_InternalArray__ICollection_Contains_39__MethodInfo); DO_APP_FUNC(0x00EFA980, bool, Array_InternalArray__ICollection_Contains_40, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int64_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08220, Array_InternalArray__ICollection_Contains_40__MethodInfo); DO_APP_FUNC(0x00EFAB20, bool, Array_InternalArray__ICollection_Contains_41, (Array * __this, ADictionary_2_TKey_TValue_Entry_System_Int32_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08210, Array_InternalArray__ICollection_Contains_41__MethodInfo); DO_APP_FUNC(0x00EFACC0, bool, Array_InternalArray__ICollection_Contains_42, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08200, Array_InternalArray__ICollection_Contains_42__MethodInfo); DO_APP_FUNC(0x00EFAE60, bool, Array_InternalArray__ICollection_Contains_43, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_PlayerFlashlightBeam_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D081F0, Array_InternalArray__ICollection_Contains_43__MethodInfo); DO_APP_FUNC(0x00EFAFF0, bool, Array_InternalArray__ICollection_Contains_44, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_RenderInstancedDataLayout_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08250, Array_InternalArray__ICollection_Contains_44__MethodInfo); DO_APP_FUNC(0x00EFB1B0, bool, Array_InternalArray__ICollection_Contains_45, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_System_Single_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08240, Array_InternalArray__ICollection_Contains_45__MethodInfo); DO_APP_FUNC(0x00EFB330, bool, Array_InternalArray__ICollection_Contains_46, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_TreeItem_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08230, Array_InternalArray__ICollection_Contains_46__MethodInfo); DO_APP_FUNC(0x00EFB4C0, bool, Array_InternalArray__ICollection_Contains_47, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Vector2Int_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08228, Array_InternalArray__ICollection_Contains_47__MethodInfo); DO_APP_FUNC(0x00EFB660, bool, Array_InternalArray__ICollection_Contains_48, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Vector4_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D081C8, Array_InternalArray__ICollection_Contains_48__MethodInfo); DO_APP_FUNC(0x00EFB820, bool, Array_InternalArray__ICollection_Contains_49, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D081C0, Array_InternalArray__ICollection_Contains_49__MethodInfo); DO_APP_FUNC(0x00EFB9E0, bool, Array_InternalArray__ICollection_Contains_50, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32Enum_System_Int32Enum_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D081B0, Array_InternalArray__ICollection_Contains_50__MethodInfo); DO_APP_FUNC(0x00EFBB60, bool, Array_InternalArray__ICollection_Contains_51, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32Enum_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D081A0, Array_InternalArray__ICollection_Contains_51__MethodInfo); DO_APP_FUNC(0x00EFBD00, bool, Array_InternalArray__ICollection_Contains_52, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_UIElements_ComputedStyle_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D081E8, Array_InternalArray__ICollection_Contains_52__MethodInfo); DO_APP_FUNC(0x00EFBF10, bool, Array_InternalArray__ICollection_Contains_53, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int64_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D081E0, Array_InternalArray__ICollection_Contains_53__MethodInfo); DO_APP_FUNC(0x00EFC0B0, bool, Array_InternalArray__ICollection_Contains_54, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_IntPtr_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D081D8, Array_InternalArray__ICollection_Contains_54__MethodInfo); DO_APP_FUNC(0x00EFC250, bool, Array_InternalArray__ICollection_Contains_55, (Array * __this, Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D081D0, Array_InternalArray__ICollection_Contains_55__MethodInfo); DO_APP_FUNC(0x00EFC410, bool, Array_InternalArray__ICollection_Contains_56, (Array * __this, Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08158, Array_InternalArray__ICollection_Contains_56__MethodInfo); DO_APP_FUNC(0x00EFC5A0, bool, Array_InternalArray__ICollection_Contains_57, (Array * __this, Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08150, Array_InternalArray__ICollection_Contains_57__MethodInfo); DO_APP_FUNC(0x00EFC760, bool, Array_InternalArray__ICollection_Contains_58, (Array * __this, Dictionary_2_TKey_TValue_Entry_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08148, Array_InternalArray__ICollection_Contains_58__MethodInfo); DO_APP_FUNC(0x00EFC900, bool, Array_InternalArray__ICollection_Contains_59, (Array * __this, Dictionary_2_TKey_TValue_Entry_Photon_Bolt_NetworkId_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08140, Array_InternalArray__ICollection_Contains_59__MethodInfo); DO_APP_FUNC(0x00EFCAA0, bool, Array_InternalArray__ICollection_Contains_60, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08190, Array_InternalArray__ICollection_Contains_60__MethodInfo); DO_APP_FUNC(0x00EFCC60, bool, Array_InternalArray__ICollection_Contains_61, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08180, Array_InternalArray__ICollection_Contains_61__MethodInfo); DO_APP_FUNC(0x00EFCE20, bool, Array_InternalArray__ICollection_Contains_62, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_System_Boolean_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08170, Array_InternalArray__ICollection_Contains_62__MethodInfo); DO_APP_FUNC(0x00EFCFC0, bool, Array_InternalArray__ICollection_Contains_63, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Bounds_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08160, Array_InternalArray__ICollection_Contains_63__MethodInfo); DO_APP_FUNC(0x00EFD180, bool, Array_InternalArray__ICollection_Contains_64, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_System_Byte_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08110, Array_InternalArray__ICollection_Contains_64__MethodInfo); DO_APP_FUNC(0x00EFD320, bool, Array_InternalArray__ICollection_Contains_65, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Color_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08108, Array_InternalArray__ICollection_Contains_65__MethodInfo); DO_APP_FUNC(0x00EFD4B0, bool, Array_InternalArray__ICollection_Contains_66, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Color32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08100, Array_InternalArray__ICollection_Contains_66__MethodInfo); DO_APP_FUNC(0x00EFD650, bool, Array_InternalArray__ICollection_Contains_67, (Array * __this, ADictionary_2_TKey_TValue_Entry_System_Object_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D080F8, Array_InternalArray__ICollection_Contains_67__MethodInfo); DO_APP_FUNC(0x00EFD7F0, bool, Array_InternalArray__ICollection_Contains_68, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08138, Array_InternalArray__ICollection_Contains_68__MethodInfo); DO_APP_FUNC(0x00EFD990, bool, Array_InternalArray__ICollection_Contains_69, (Array * __this, ADictionary_2_TKey_TValue_Entry_System_Object_System_Int32Enum_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08128, Array_InternalArray__ICollection_Contains_69__MethodInfo); DO_APP_FUNC(0x00EFDB30, bool, Array_InternalArray__ICollection_Contains_70, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_System_Int32Enum_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08120, Array_InternalArray__ICollection_Contains_70__MethodInfo); DO_APP_FUNC(0x00EFDCD0, bool, Array_InternalArray__ICollection_Contains_71, (Array * __this, ADictionary_2_TKey_TValue_Entry_System_Object_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08118, Array_InternalArray__ICollection_Contains_71__MethodInfo); DO_APP_FUNC(0x00EFDE70, bool, Array_InternalArray__ICollection_Contains_72, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D080C0, Array_InternalArray__ICollection_Contains_72__MethodInfo); DO_APP_FUNC(0x00EFE010, bool, Array_InternalArray__ICollection_Contains_73, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D080B8, Array_InternalArray__ICollection_Contains_73__MethodInfo); DO_APP_FUNC(0x00EFE1A0, bool, Array_InternalArray__ICollection_Contains_74, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D080B0, Array_InternalArray__ICollection_Contains_74__MethodInfo); DO_APP_FUNC(0x00EFE380, bool, Array_InternalArray__ICollection_Contains_75, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Playables_Playable_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D080A8, Array_InternalArray__ICollection_Contains_75__MethodInfo); DO_APP_FUNC(0x00EFE510, bool, Array_InternalArray__ICollection_Contains_76, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D080E8, Array_InternalArray__ICollection_Contains_76__MethodInfo); DO_APP_FUNC(0x00EFE6D0, bool, Array_InternalArray__ICollection_Contains_77, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_System_Resources_ResourceLocator_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D080D8, Array_InternalArray__ICollection_Contains_77__MethodInfo); DO_APP_FUNC(0x00EFE860, bool, Array_InternalArray__ICollection_Contains_78, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_System_Single_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D080D0, Array_InternalArray__ICollection_Contains_78__MethodInfo); DO_APP_FUNC(0x00EFEA00, bool, Array_InternalArray__ICollection_Contains_79, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D080C8, Array_InternalArray__ICollection_Contains_79__MethodInfo); DO_APP_FUNC(0x00EFEB90, bool, Array_InternalArray__ICollection_Contains_80, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_UIElements_TextureId_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08080, Array_InternalArray__ICollection_Contains_80__MethodInfo); DO_APP_FUNC(0x00EFED30, bool, Array_InternalArray__ICollection_Contains_81, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_System_TimeSpan_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08078, Array_InternalArray__ICollection_Contains_81__MethodInfo); DO_APP_FUNC(0x00EFEED0, bool, Array_InternalArray__ICollection_Contains_82, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_UdpKit_UdpEndPoint_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08070, Array_InternalArray__ICollection_Contains_82__MethodInfo); DO_APP_FUNC(0x00EFF090, bool, Array_InternalArray__ICollection_Contains_83, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Vector2_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08068, Array_InternalArray__ICollection_Contains_83__MethodInfo); DO_APP_FUNC(0x00EFF230, bool, Array_InternalArray__ICollection_Contains_84, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Vector3_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D080A0, Array_InternalArray__ICollection_Contains_84__MethodInfo); DO_APP_FUNC(0x00EFF3C0, bool, Array_InternalArray__ICollection_Contains_85, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08098, Array_InternalArray__ICollection_Contains_85__MethodInfo); DO_APP_FUNC(0x00EFF660, bool, Array_InternalArray__ICollection_Contains_86, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08090, Array_InternalArray__ICollection_Contains_86__MethodInfo); DO_APP_FUNC(0x00EFF800, bool, Array_InternalArray__ICollection_Contains_87, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08088, Array_InternalArray__ICollection_Contains_87__MethodInfo); DO_APP_FUNC(0x00EFF9F0, bool, Array_InternalArray__ICollection_Contains_88, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08040, Array_InternalArray__ICollection_Contains_88__MethodInfo); DO_APP_FUNC(0x00EFFB90, bool, Array_InternalArray__ICollection_Contains_89, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08038, Array_InternalArray__ICollection_Contains_89__MethodInfo); DO_APP_FUNC(0x00EFFD70, bool, Array_InternalArray__ICollection_Contains_90, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08030, Array_InternalArray__ICollection_Contains_90__MethodInfo); DO_APP_FUNC(0x00EFFF50, bool, Array_InternalArray__ICollection_Contains_91, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08028, Array_InternalArray__ICollection_Contains_91__MethodInfo); DO_APP_FUNC(0x00F000F0, bool, Array_InternalArray__ICollection_Contains_92, (Array * __this, Dictionary_2_TKey_TValue_Entry_Photon_Bolt_PrefabId_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08060, Array_InternalArray__ICollection_Contains_92__MethodInfo); DO_APP_FUNC(0x00F00290, bool, Array_InternalArray__ICollection_Contains_93, (Array * __this, Dictionary_2_TKey_TValue_Entry_UnityEngine_RaycastHit_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08058, Array_InternalArray__ICollection_Contains_93__MethodInfo); DO_APP_FUNC(0x00F00470, bool, Array_InternalArray__ICollection_Contains_94, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Single_SplineMesh_CurveSample_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08050, Array_InternalArray__ICollection_Contains_94__MethodInfo); DO_APP_FUNC(0x00F00660, bool, Array_InternalArray__ICollection_Contains_95, (Array * __this, Dictionary_2_TKey_TValue_Entry_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08048, Array_InternalArray__ICollection_Contains_95__MethodInfo); DO_APP_FUNC(0x00F00800, bool, Array_InternalArray__ICollection_Contains_96, (Array * __this, Dictionary_2_TKey_TValue_Entry_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08000, Array_InternalArray__ICollection_Contains_96__MethodInfo); DO_APP_FUNC(0x00F00990, bool, Array_InternalArray__ICollection_Contains_97, (Array * __this, Dictionary_2_TKey_TValue_Entry_Photon_Bolt_TypeId_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07FF8, Array_InternalArray__ICollection_Contains_97__MethodInfo); DO_APP_FUNC(0x00F00B30, bool, Array_InternalArray__ICollection_Contains_98, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_UInt16_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07FF0, Array_InternalArray__ICollection_Contains_98__MethodInfo); DO_APP_FUNC(0x00F00CD0, bool, Array_InternalArray__ICollection_Contains_99, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_UInt16_Dissonance_PlayerChannel_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07FE8, Array_InternalArray__ICollection_Contains_99__MethodInfo); DO_APP_FUNC(0x00F00E90, bool, Array_InternalArray__ICollection_Contains_100, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_UInt16_Dissonance_RoomChannel_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08020, Array_InternalArray__ICollection_Contains_100__MethodInfo); DO_APP_FUNC(0x00F01070, bool, Array_InternalArray__ICollection_Contains_101, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_UInt32_System_Boolean_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08018, Array_InternalArray__ICollection_Contains_101__MethodInfo); DO_APP_FUNC(0x00F011F0, bool, Array_InternalArray__ICollection_Contains_102, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08010, Array_InternalArray__ICollection_Contains_102__MethodInfo); DO_APP_FUNC(0x00F013D0, bool, Array_InternalArray__ICollection_Contains_103, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_UInt32_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D08008, Array_InternalArray__ICollection_Contains_103__MethodInfo); DO_APP_FUNC(0x00F01550, bool, Array_InternalArray__ICollection_Contains_104, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_UInt32_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07FC0, Array_InternalArray__ICollection_Contains_104__MethodInfo); DO_APP_FUNC(0x00F016F0, bool, Array_InternalArray__ICollection_Contains_105, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_UInt32_SessionClient_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07FB8, Array_InternalArray__ICollection_Contains_105__MethodInfo); DO_APP_FUNC(0x00F018D0, bool, Array_InternalArray__ICollection_Contains_106, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_UInt64_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07FB0, Array_InternalArray__ICollection_Contains_106__MethodInfo); DO_APP_FUNC(0x00F01A70, bool, Array_InternalArray__ICollection_Contains_107, (Array * __this, Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07FA8, Array_InternalArray__ICollection_Contains_107__MethodInfo); DO_APP_FUNC(0x00F01C30, bool, Array_InternalArray__ICollection_Contains_108, (Array * __this, Dictionary_2_TKey_TValue_Entry_UdpKit_UdpChannelName_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07FE0, Array_InternalArray__ICollection_Contains_108__MethodInfo); DO_APP_FUNC(0x00F01DC0, bool, Array_InternalArray__ICollection_Contains_109, (Array * __this, Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07FD8, Array_InternalArray__ICollection_Contains_109__MethodInfo); DO_APP_FUNC(0x00F01F80, bool, Array_InternalArray__ICollection_Contains_110, (Array * __this, Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_UInt32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07FD0, Array_InternalArray__ICollection_Contains_110__MethodInfo); DO_APP_FUNC(0x00F02140, bool, Array_InternalArray__ICollection_Contains_111, (Array * __this, Dictionary_2_TKey_TValue_Entry_Photon_Bolt_UniqueId_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07FC8, Array_InternalArray__ICollection_Contains_111__MethodInfo); DO_APP_FUNC(0x00F022D0, bool, Array_InternalArray__ICollection_Contains_112, (Array * __this, Dictionary_2_TKey_TValue_Entry_UnityEngine_Vector3_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07F80, Array_InternalArray__ICollection_Contains_112__MethodInfo); DO_APP_FUNC(0x00F02470, bool, Array_InternalArray__ICollection_Contains_113, (Array * __this, Dictionary_2_TKey_TValue_Entry_UnityEngine_Vector3Int_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07F78, Array_InternalArray__ICollection_Contains_113__MethodInfo); DO_APP_FUNC(0x00F02600, bool, Array_InternalArray__ICollection_Contains_114, (Array * __this, Dictionary_2_TKey_TValue_Entry_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07F70, Array_InternalArray__ICollection_Contains_114__MethodInfo); DO_APP_FUNC(0x00F027C0, bool, Array_InternalArray__ICollection_Contains_115, (Array * __this, Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07F68, Array_InternalArray__ICollection_Contains_115__MethodInfo); DO_APP_FUNC(0x00F02950, bool, Array_InternalArray__ICollection_Contains_116, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07FA0, Array_InternalArray__ICollection_Contains_116__MethodInfo); DO_APP_FUNC(0x00F02B30, bool, Array_InternalArray__ICollection_Contains_117, (Array * __this, Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07F98, Array_InternalArray__ICollection_Contains_117__MethodInfo); DO_APP_FUNC(0x00F02CD0, bool, Array_InternalArray__ICollection_Contains_118, (Array * __this, Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07F90, Array_InternalArray__ICollection_Contains_118__MethodInfo); DO_APP_FUNC(0x00F02E60, bool, Array_InternalArray__ICollection_Contains_119, (Array * __this, Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07F88, Array_InternalArray__ICollection_Contains_119__MethodInfo); DO_APP_FUNC(0x00F03030, bool, Array_InternalArray__ICollection_Contains_120, (Array * __this, Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07F40, Array_InternalArray__ICollection_Contains_120__MethodInfo); DO_APP_FUNC(0x00F03210, bool, Array_InternalArray__ICollection_Contains_121, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07F38, Array_InternalArray__ICollection_Contains_121__MethodInfo); DO_APP_FUNC(0x00F033D0, bool, Array_InternalArray__ICollection_Contains_122, (Array * __this, Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07F30, Array_InternalArray__ICollection_Contains_122__MethodInfo); DO_APP_FUNC(0x00F03560, bool, Array_InternalArray__ICollection_Contains_123, (Array * __this, Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07F28, Array_InternalArray__ICollection_Contains_123__MethodInfo); DO_APP_FUNC(0x00F036F0, bool, Array_InternalArray__ICollection_Contains_124, (Array * __this, Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07F60, Array_InternalArray__ICollection_Contains_124__MethodInfo); DO_APP_FUNC(0x00F03880, bool, Array_InternalArray__ICollection_Contains_125, (Array * __this, Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07F58, Array_InternalArray__ICollection_Contains_125__MethodInfo); DO_APP_FUNC(0x00F03A20, bool, Array_InternalArray__ICollection_Contains_126, (Array * __this, Dictionary_2_TKey_TValue_Entry_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07F50, Array_InternalArray__ICollection_Contains_126__MethodInfo); DO_APP_FUNC(0x00F03C60, bool, Array_InternalArray__ICollection_Contains_127, (Array * __this, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07F48, Array_InternalArray__ICollection_Contains_127__MethodInfo); DO_APP_FUNC(0x00F03DE0, bool, Array_InternalArray__ICollection_Contains_128, (Array * __this, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07F00, Array_InternalArray__ICollection_Contains_128__MethodInfo); DO_APP_FUNC(0x00F03F60, bool, Array_InternalArray__ICollection_Contains_129, (Array * __this, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07EF8, Array_InternalArray__ICollection_Contains_129__MethodInfo); DO_APP_FUNC(0x00F040F0, bool, Array_InternalArray__ICollection_Contains_130, (Array * __this, KeyValuePair_2_System_ValueTuple_2_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07EF0, Array_InternalArray__ICollection_Contains_130__MethodInfo); DO_APP_FUNC(0x00F04290, bool, Array_InternalArray__ICollection_Contains_131, (Array * __this, KeyValuePair_2_System_ValueTuple_2_System_Object__1 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07EE8, Array_InternalArray__ICollection_Contains_131__MethodInfo); DO_APP_FUNC(0x00F04430, bool, Array_InternalArray__ICollection_Contains_132, (Array * __this, KeyValuePair_2_System_Byte_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07F20, Array_InternalArray__ICollection_Contains_132__MethodInfo); DO_APP_FUNC(0x00F045B0, bool, Array_InternalArray__ICollection_Contains_133, (Array * __this, KeyValuePair_2_System_ByteEnum_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07F18, Array_InternalArray__ICollection_Contains_133__MethodInfo); DO_APP_FUNC(0x00F04720, bool, Array_InternalArray__ICollection_Contains_134, (Array * __this, KeyValuePair_2_System_ByteEnum_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07F10, Array_InternalArray__ICollection_Contains_134__MethodInfo); DO_APP_FUNC(0x00F048A0, bool, Array_InternalArray__ICollection_Contains_135, (Array * __this, KeyValuePair_2_System_DateTime_System_UInt32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07F08, Array_InternalArray__ICollection_Contains_135__MethodInfo); DO_APP_FUNC(0x00F04A20, bool, Array_InternalArray__ICollection_Contains_136, (Array * __this, KeyValuePair_2_Dissonance_Audio_Playback_FrameFormat_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07EC0, Array_InternalArray__ICollection_Contains_136__MethodInfo); DO_APP_FUNC(0x00F04BB0, bool, Array_InternalArray__ICollection_Contains_137, (Array * __this, KeyValuePair_2_System_Guid_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07EB8, Array_InternalArray__ICollection_Contains_137__MethodInfo); DO_APP_FUNC(0x00F04D50, bool, Array_InternalArray__ICollection_Contains_138, (Array * __this, KeyValuePair_2_System_Guid_System_UInt32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07EB0, Array_InternalArray__ICollection_Contains_138__MethodInfo); DO_APP_FUNC(0x00F04EF0, bool, Array_InternalArray__ICollection_Contains_139, (Array * __this, KeyValuePair_2_UnityEngine_Hash128_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07EA8, Array_InternalArray__ICollection_Contains_139__MethodInfo); DO_APP_FUNC(0x00F05090, bool, Array_InternalArray__ICollection_Contains_140, (Array * __this, KeyValuePair_2_Pathfinding_Int2_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07EE0, Array_InternalArray__ICollection_Contains_140__MethodInfo); DO_APP_FUNC(0x00F05220, bool, Array_InternalArray__ICollection_Contains_141, (Array * __this, KeyValuePair_2_Pathfinding_Int3_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07ED8, Array_InternalArray__ICollection_Contains_141__MethodInfo); DO_APP_FUNC(0x00F053A0, bool, Array_InternalArray__ICollection_Contains_142, (Array * __this, KeyValuePair_2_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07ED0, Array_InternalArray__ICollection_Contains_142__MethodInfo); DO_APP_FUNC(0x00F05530, bool, Array_InternalArray__ICollection_Contains_143, (Array * __this, KeyValuePair_2_System_Int32_System_ValueTuple_2__3 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07EC8, Array_InternalArray__ICollection_Contains_143__MethodInfo); DO_APP_FUNC(0x00F056D0, bool, Array_InternalArray__ICollection_Contains_144, (Array * __this, KeyValuePair_2_System_Int32_System_ValueTuple_2__2 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07E80, Array_InternalArray__ICollection_Contains_144__MethodInfo); DO_APP_FUNC(0x00F05890, bool, Array_InternalArray__ICollection_Contains_145, (Array * __this, KeyValuePair_2_System_Int32_System_Boolean_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07E78, Array_InternalArray__ICollection_Contains_145__MethodInfo); DO_APP_FUNC(0x00F05A00, bool, Array_InternalArray__ICollection_Contains_146, (Array * __this, KeyValuePair_2_System_Int32_System_ByteEnum_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07E70, Array_InternalArray__ICollection_Contains_146__MethodInfo); DO_APP_FUNC(0x00F05B70, bool, Array_InternalArray__ICollection_Contains_147, (Array * __this, KeyValuePair_2_System_Int32_System_Char_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07E68, Array_InternalArray__ICollection_Contains_147__MethodInfo); DO_APP_FUNC(0x00F05CE0, bool, Array_InternalArray__ICollection_Contains_148, (Array * __this, KeyValuePair_2_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07EA0, Array_InternalArray__ICollection_Contains_148__MethodInfo); DO_APP_FUNC(0x00F05EC0, bool, Array_InternalArray__ICollection_Contains_149, (Array * __this, KeyValuePair_2_System_Int32_System_Int16_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07E98, Array_InternalArray__ICollection_Contains_149__MethodInfo); DO_APP_FUNC(0x00F06030, bool, Array_InternalArray__ICollection_Contains_150, (Array * __this, KeyValuePair_2_System_Int32_Pathfinding_Int3_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07E90, Array_InternalArray__ICollection_Contains_150__MethodInfo); DO_APP_FUNC(0x00F061B0, bool, Array_InternalArray__ICollection_Contains_151, (Array * __this, KeyValuePair_2_System_Int32_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07E88, Array_InternalArray__ICollection_Contains_151__MethodInfo); DO_APP_FUNC(0x00F06320, bool, Array_InternalArray__ICollection_Contains_152, (Array * __this, KeyValuePair_2_System_Int32_System_Int32Enum_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07E40, Array_InternalArray__ICollection_Contains_152__MethodInfo); DO_APP_FUNC(0x00F06490, bool, Array_InternalArray__ICollection_Contains_153, (Array * __this, KeyValuePair_2_System_Int32_System_Int64_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07E38, Array_InternalArray__ICollection_Contains_153__MethodInfo); DO_APP_FUNC(0x00F06610, bool, Array_InternalArray__ICollection_Contains_154, (Array * __this, KeyValuePair_2_System_Int32_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07E30, Array_InternalArray__ICollection_Contains_154__MethodInfo); DO_APP_FUNC(0x00F06790, bool, Array_InternalArray__ICollection_Contains_155, (Array * __this, KeyValuePair_2_System_Int32_PlayerFlashlightBeam_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07E28, Array_InternalArray__ICollection_Contains_155__MethodInfo); DO_APP_FUNC(0x00F06930, bool, Array_InternalArray__ICollection_Contains_156, (Array * __this, KeyValuePair_2_System_Int32_UnityEngine_RenderInstancedDataLayout_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07E60, Array_InternalArray__ICollection_Contains_156__MethodInfo); DO_APP_FUNC(0x00F06AD0, bool, Array_InternalArray__ICollection_Contains_157, (Array * __this, KeyValuePair_2_System_Int32_System_Single_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07E58, Array_InternalArray__ICollection_Contains_157__MethodInfo); DO_APP_FUNC(0x00F06C40, bool, Array_InternalArray__ICollection_Contains_158, (Array * __this, KeyValuePair_2_System_Int32_UnityEngine_UIElements_TreeItem_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07E50, Array_InternalArray__ICollection_Contains_158__MethodInfo); DO_APP_FUNC(0x00F06DE0, bool, Array_InternalArray__ICollection_Contains_159, (Array * __this, KeyValuePair_2_System_Int32_UnityEngine_Vector2Int_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07E48, Array_InternalArray__ICollection_Contains_159__MethodInfo); DO_APP_FUNC(0x00F06F70, bool, Array_InternalArray__ICollection_Contains_160, (Array * __this, KeyValuePair_2_System_Int32_UnityEngine_Vector4_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07E00, Array_InternalArray__ICollection_Contains_160__MethodInfo); DO_APP_FUNC(0x00F07110, bool, Array_InternalArray__ICollection_Contains_161, (Array * __this, KeyValuePair_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07DF8, Array_InternalArray__ICollection_Contains_161__MethodInfo); DO_APP_FUNC(0x00F072D0, bool, Array_InternalArray__ICollection_Contains_162, (Array * __this, KeyValuePair_2_System_Int32Enum_System_Int32Enum_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07DF0, Array_InternalArray__ICollection_Contains_162__MethodInfo); DO_APP_FUNC(0x00F07440, bool, Array_InternalArray__ICollection_Contains_163, (Array * __this, KeyValuePair_2_System_Int32Enum_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07DE8, Array_InternalArray__ICollection_Contains_163__MethodInfo); DO_APP_FUNC(0x00F075C0, bool, Array_InternalArray__ICollection_Contains_164, (Array * __this, KeyValuePair_2_System_Int64_UnityEngine_UIElements_ComputedStyle_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07E20, Array_InternalArray__ICollection_Contains_164__MethodInfo); DO_APP_FUNC(0x00F077B0, bool, Array_InternalArray__ICollection_Contains_165, (Array * __this, KeyValuePair_2_System_Int64_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07E18, Array_InternalArray__ICollection_Contains_165__MethodInfo); DO_APP_FUNC(0x00F07930, bool, Array_InternalArray__ICollection_Contains_166, (Array * __this, KeyValuePair_2_System_IntPtr_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07E10, Array_InternalArray__ICollection_Contains_166__MethodInfo); DO_APP_FUNC(0x00F07AB0, bool, Array_InternalArray__ICollection_Contains_167, (Array * __this, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07E08, Array_InternalArray__ICollection_Contains_167__MethodInfo); DO_APP_FUNC(0x00F07C40, bool, Array_InternalArray__ICollection_Contains_168, (Array * __this, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07DC0, Array_InternalArray__ICollection_Contains_168__MethodInfo); DO_APP_FUNC(0x00F07DE0, bool, Array_InternalArray__ICollection_Contains_169, (Array * __this, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07DB8, Array_InternalArray__ICollection_Contains_169__MethodInfo); DO_APP_FUNC(0x00F07F70, bool, Array_InternalArray__ICollection_Contains_170, (Array * __this, KeyValuePair_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07DB0, Array_InternalArray__ICollection_Contains_170__MethodInfo); DO_APP_FUNC(0x00F080F0, bool, Array_InternalArray__ICollection_Contains_171, (Array * __this, KeyValuePair_2_Photon_Bolt_NetworkId_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07DA8, Array_InternalArray__ICollection_Contains_171__MethodInfo); DO_APP_FUNC(0x00F08270, bool, Array_InternalArray__ICollection_Contains_172, (Array * __this, KeyValuePair_2_System_Object_System_ArraySegment_1_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07DE0, Array_InternalArray__ICollection_Contains_172__MethodInfo); DO_APP_FUNC(0x00F08410, bool, Array_InternalArray__ICollection_Contains_173, (Array * __this, KeyValuePair_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07DD8, Array_InternalArray__ICollection_Contains_173__MethodInfo); DO_APP_FUNC(0x00F085D0, bool, Array_InternalArray__ICollection_Contains_174, (Array * __this, KeyValuePair_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07DD0, Array_InternalArray__ICollection_Contains_174__MethodInfo); DO_APP_FUNC(0x00F08760, bool, Array_InternalArray__ICollection_Contains_175, (Array * __this, KeyValuePair_2_System_Object_System_Boolean_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07DC8, Array_InternalArray__ICollection_Contains_175__MethodInfo); DO_APP_FUNC(0x00F088E0, bool, Array_InternalArray__ICollection_Contains_176, (Array * __this, KeyValuePair_2_System_Object_UnityEngine_Bounds_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07D80, Array_InternalArray__ICollection_Contains_176__MethodInfo); DO_APP_FUNC(0x00F08A70, bool, Array_InternalArray__ICollection_Contains_177, (Array * __this, KeyValuePair_2_System_Object_System_Byte_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07D78, Array_InternalArray__ICollection_Contains_177__MethodInfo); DO_APP_FUNC(0x00F08BF0, bool, Array_InternalArray__ICollection_Contains_178, (Array * __this, KeyValuePair_2_System_Object_System_Char_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07D70, Array_InternalArray__ICollection_Contains_178__MethodInfo); DO_APP_FUNC(0x00F08D70, bool, Array_InternalArray__ICollection_Contains_179, (Array * __this, KeyValuePair_2_System_Object_UnityEngine_Color_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07D68, Array_InternalArray__ICollection_Contains_179__MethodInfo); DO_APP_FUNC(0x00F08F10, bool, Array_InternalArray__ICollection_Contains_180, (Array * __this, KeyValuePair_2_System_Object_UnityEngine_Color32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07DA0, Array_InternalArray__ICollection_Contains_180__MethodInfo); DO_APP_FUNC(0x00F09090, bool, Array_InternalArray__ICollection_Contains_181, (Array * __this, KeyValuePair_2_System_Object_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07D98, Array_InternalArray__ICollection_Contains_181__MethodInfo); DO_APP_FUNC(0x00F09210, bool, Array_InternalArray__ICollection_Contains_182, (Array * __this, KeyValuePair_2_System_Object_System_Int32Enum_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07D90, Array_InternalArray__ICollection_Contains_182__MethodInfo); DO_APP_FUNC(0x00F09390, bool, Array_InternalArray__ICollection_Contains_183, (Array * __this, KeyValuePair_2_System_Object_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07D88, Array_InternalArray__ICollection_Contains_183__MethodInfo); DO_APP_FUNC(0x00F09510, bool, Array_InternalArray__ICollection_Contains_184, (Array * __this, KeyValuePair_2_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07D40, Array_InternalArray__ICollection_Contains_184__MethodInfo); DO_APP_FUNC(0x00F096B0, bool, Array_InternalArray__ICollection_Contains_185, (Array * __this, KeyValuePair_2_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07D38, Array_InternalArray__ICollection_Contains_185__MethodInfo); DO_APP_FUNC(0x00F09870, bool, Array_InternalArray__ICollection_Contains_186, (Array * __this, KeyValuePair_2_System_Object_UnityEngine_Playables_Playable_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07D30, Array_InternalArray__ICollection_Contains_186__MethodInfo); DO_APP_FUNC(0x00F09A10, bool, Array_InternalArray__ICollection_Contains_187, (Array * __this, KeyValuePair_2_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07D28, Array_InternalArray__ICollection_Contains_187__MethodInfo); DO_APP_FUNC(0x00F09BD0, bool, Array_InternalArray__ICollection_Contains_188, (Array * __this, KeyValuePair_2_System_Object_System_Resources_ResourceLocator_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07D60, Array_InternalArray__ICollection_Contains_188__MethodInfo); DO_APP_FUNC(0x00F09D70, bool, Array_InternalArray__ICollection_Contains_189, (Array * __this, KeyValuePair_2_System_Object_System_Single_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07D58, Array_InternalArray__ICollection_Contains_189__MethodInfo); DO_APP_FUNC(0x00F09EF0, bool, Array_InternalArray__ICollection_Contains_190, (Array * __this, KeyValuePair_2_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07D50, Array_InternalArray__ICollection_Contains_190__MethodInfo); DO_APP_FUNC(0x00F0A090, bool, Array_InternalArray__ICollection_Contains_191, (Array * __this, KeyValuePair_2_System_Object_UnityEngine_UIElements_TextureId_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07D48, Array_InternalArray__ICollection_Contains_191__MethodInfo); DO_APP_FUNC(0x00F0A210, bool, Array_InternalArray__ICollection_Contains_192, (Array * __this, KeyValuePair_2_System_Object_System_TimeSpan_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07D00, Array_InternalArray__ICollection_Contains_192__MethodInfo); DO_APP_FUNC(0x00F0A390, bool, Array_InternalArray__ICollection_Contains_193, (Array * __this, KeyValuePair_2_System_Object_UdpKit_UdpEndPoint_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07CF8, Array_InternalArray__ICollection_Contains_193__MethodInfo); DO_APP_FUNC(0x00F0A550, bool, Array_InternalArray__ICollection_Contains_194, (Array * __this, KeyValuePair_2_System_Object_UnityEngine_Vector2_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07CF0, Array_InternalArray__ICollection_Contains_194__MethodInfo); DO_APP_FUNC(0x00F0A6D0, bool, Array_InternalArray__ICollection_Contains_195, (Array * __this, KeyValuePair_2_System_Object_UnityEngine_Vector3_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07CE8, Array_InternalArray__ICollection_Contains_195__MethodInfo); DO_APP_FUNC(0x00F0A870, bool, Array_InternalArray__ICollection_Contains_196, (Array * __this, KeyValuePair_2_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07D20, Array_InternalArray__ICollection_Contains_196__MethodInfo); DO_APP_FUNC(0x00F0AB10, bool, Array_InternalArray__ICollection_Contains_197, (Array * __this, KeyValuePair_2_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07D18, Array_InternalArray__ICollection_Contains_197__MethodInfo); DO_APP_FUNC(0x00F0AC90, bool, Array_InternalArray__ICollection_Contains_198, (Array * __this, KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07D10, Array_InternalArray__ICollection_Contains_198__MethodInfo); DO_APP_FUNC(0x00F0AE70, bool, Array_InternalArray__ICollection_Contains_199, (Array * __this, KeyValuePair_2_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07D08, Array_InternalArray__ICollection_Contains_199__MethodInfo); DO_APP_FUNC(0x00F0AFF0, bool, Array_InternalArray__ICollection_Contains_200, (Array * __this, KeyValuePair_2_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07CC0, Array_InternalArray__ICollection_Contains_200__MethodInfo); DO_APP_FUNC(0x00F0B1B0, bool, Array_InternalArray__ICollection_Contains_201, (Array * __this, KeyValuePair_2_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07CB8, Array_InternalArray__ICollection_Contains_201__MethodInfo); DO_APP_FUNC(0x00F0B370, bool, Array_InternalArray__ICollection_Contains_202, (Array * __this, KeyValuePair_2_System_Object_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07CB0, Array_InternalArray__ICollection_Contains_202__MethodInfo); DO_APP_FUNC(0x00F0B500, bool, Array_InternalArray__ICollection_Contains_203, (Array * __this, KeyValuePair_2_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07CA8, Array_InternalArray__ICollection_Contains_203__MethodInfo); DO_APP_FUNC(0x00F0B680, bool, Array_InternalArray__ICollection_Contains_204, (Array * __this, KeyValuePair_2_Photon_Bolt_PrefabId_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07CE0, Array_InternalArray__ICollection_Contains_204__MethodInfo); DO_APP_FUNC(0x00F0B800, bool, Array_InternalArray__ICollection_Contains_205, (Array * __this, KeyValuePair_2_UnityEngine_PropertyName_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07CD8, Array_InternalArray__ICollection_Contains_205__MethodInfo); DO_APP_FUNC(0x00F0B980, bool, Array_InternalArray__ICollection_Contains_206, (Array * __this, KeyValuePair_2_UnityEngine_RaycastHit_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07CD0, Array_InternalArray__ICollection_Contains_206__MethodInfo); DO_APP_FUNC(0x00F0BB40, bool, Array_InternalArray__ICollection_Contains_207, (Array * __this, KeyValuePair_2_System_Single_SplineMesh_CurveSample_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07CC8, Array_InternalArray__ICollection_Contains_207__MethodInfo); DO_APP_FUNC(0x00F0BD30, bool, Array_InternalArray__ICollection_Contains_208, (Array * __this, KeyValuePair_2_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07C98, Array_InternalArray__ICollection_Contains_208__MethodInfo); DO_APP_FUNC(0x00F0BEB0, bool, Array_InternalArray__ICollection_Contains_209, (Array * __this, KeyValuePair_2_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07C90, Array_InternalArray__ICollection_Contains_209__MethodInfo); DO_APP_FUNC(0x00F0C050, bool, Array_InternalArray__ICollection_Contains_210, (Array * __this, KeyValuePair_2_Photon_Bolt_TypeId_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07C88, Array_InternalArray__ICollection_Contains_210__MethodInfo); DO_APP_FUNC(0x00F0C1D0, bool, Array_InternalArray__ICollection_Contains_211, (Array * __this, KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07C80, Array_InternalArray__ICollection_Contains_211__MethodInfo); DO_APP_FUNC(0x00F0C350, bool, Array_InternalArray__ICollection_Contains_212, (Array * __this, KeyValuePair_2_System_UInt16_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07CA0, Array_InternalArray__ICollection_Contains_212__MethodInfo); DO_APP_FUNC(0x00F0C4D0, bool, Array_InternalArray__ICollection_Contains_213, (Array * __this, KeyValuePair_2_System_UInt16_Dissonance_PlayerChannel_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B158, Array_InternalArray__ICollection_Contains_213__MethodInfo); DO_APP_FUNC(0x00F0C690, bool, Array_InternalArray__ICollection_Contains_214, (Array * __this, KeyValuePair_2_System_UInt16_Dissonance_RoomChannel_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B130, Array_InternalArray__ICollection_Contains_214__MethodInfo); DO_APP_FUNC(0x00F0C850, bool, Array_InternalArray__ICollection_Contains_215, (Array * __this, KeyValuePair_2_System_UInt32_System_Boolean_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B128, Array_InternalArray__ICollection_Contains_215__MethodInfo); DO_APP_FUNC(0x00F0C9C0, bool, Array_InternalArray__ICollection_Contains_216, (Array * __this, KeyValuePair_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B120, Array_InternalArray__ICollection_Contains_216__MethodInfo); DO_APP_FUNC(0x00F0CB80, bool, Array_InternalArray__ICollection_Contains_217, (Array * __this, KeyValuePair_2_System_UInt32_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B118, Array_InternalArray__ICollection_Contains_217__MethodInfo); DO_APP_FUNC(0x00F0CCF0, bool, Array_InternalArray__ICollection_Contains_218, (Array * __this, KeyValuePair_2_System_UInt32_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B150, Array_InternalArray__ICollection_Contains_218__MethodInfo); DO_APP_FUNC(0x00F0CE70, bool, Array_InternalArray__ICollection_Contains_219, (Array * __this, KeyValuePair_2_System_UInt32_SessionClient_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B148, Array_InternalArray__ICollection_Contains_219__MethodInfo); DO_APP_FUNC(0x00F0D050, bool, Array_InternalArray__ICollection_Contains_220, (Array * __this, KeyValuePair_2_System_UInt64_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B140, Array_InternalArray__ICollection_Contains_220__MethodInfo); DO_APP_FUNC(0x00F0D1D0, bool, Array_InternalArray__ICollection_Contains_221, (Array * __this, KeyValuePair_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B138, Array_InternalArray__ICollection_Contains_221__MethodInfo); DO_APP_FUNC(0x00F0D390, bool, Array_InternalArray__ICollection_Contains_222, (Array * __this, KeyValuePair_2_UdpKit_UdpChannelName_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B0F0, Array_InternalArray__ICollection_Contains_222__MethodInfo); DO_APP_FUNC(0x00F0D530, bool, Array_InternalArray__ICollection_Contains_223, (Array * __this, KeyValuePair_2_UdpKit_UdpEndPoint_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B0E8, Array_InternalArray__ICollection_Contains_223__MethodInfo); DO_APP_FUNC(0x00F0D6F0, bool, Array_InternalArray__ICollection_Contains_224, (Array * __this, KeyValuePair_2_UdpKit_UdpEndPoint_System_UInt32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B0E0, Array_InternalArray__ICollection_Contains_224__MethodInfo); DO_APP_FUNC(0x00F0D880, bool, Array_InternalArray__ICollection_Contains_225, (Array * __this, KeyValuePair_2_Photon_Bolt_UniqueId_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B0D8, Array_InternalArray__ICollection_Contains_225__MethodInfo); DO_APP_FUNC(0x00F0DA20, bool, Array_InternalArray__ICollection_Contains_226, (Array * __this, KeyValuePair_2_UnityEngine_Vector3_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B110, Array_InternalArray__ICollection_Contains_226__MethodInfo); DO_APP_FUNC(0x00F0DBA0, bool, Array_InternalArray__ICollection_Contains_227, (Array * __this, KeyValuePair_2_UnityEngine_Vector3Int_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B108, Array_InternalArray__ICollection_Contains_227__MethodInfo); DO_APP_FUNC(0x00F0DD40, bool, Array_InternalArray__ICollection_Contains_228, (Array * __this, KeyValuePair_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B100, Array_InternalArray__ICollection_Contains_228__MethodInfo); DO_APP_FUNC(0x00F0DED0, bool, Array_InternalArray__ICollection_Contains_229, (Array * __this, KeyValuePair_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B0F8, Array_InternalArray__ICollection_Contains_229__MethodInfo); DO_APP_FUNC(0x00F0E070, bool, Array_InternalArray__ICollection_Contains_230, (Array * __this, KeyValuePair_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B0B0, Array_InternalArray__ICollection_Contains_230__MethodInfo); DO_APP_FUNC(0x00F0E230, bool, Array_InternalArray__ICollection_Contains_231, (Array * __this, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B0A8, Array_InternalArray__ICollection_Contains_231__MethodInfo); DO_APP_FUNC(0x00F0E3B0, bool, Array_InternalArray__ICollection_Contains_232, (Array * __this, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B0A0, Array_InternalArray__ICollection_Contains_232__MethodInfo); DO_APP_FUNC(0x00F0E550, bool, Array_InternalArray__ICollection_Contains_233, (Array * __this, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B098, Array_InternalArray__ICollection_Contains_233__MethodInfo); DO_APP_FUNC(0x00F0E720, bool, Array_InternalArray__ICollection_Contains_234, (Array * __this, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B0D0, Array_InternalArray__ICollection_Contains_234__MethodInfo); DO_APP_FUNC(0x00F0E900, bool, Array_InternalArray__ICollection_Contains_235, (Array * __this, KeyValuePair_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B0C8, Array_InternalArray__ICollection_Contains_235__MethodInfo); DO_APP_FUNC(0x00F0EA90, bool, Array_InternalArray__ICollection_Contains_236, (Array * __this, KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B0C0, Array_InternalArray__ICollection_Contains_236__MethodInfo); DO_APP_FUNC(0x00F0EC30, bool, Array_InternalArray__ICollection_Contains_237, (Array * __this, KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B0B8, Array_InternalArray__ICollection_Contains_237__MethodInfo); DO_APP_FUNC(0x00F0EDD0, bool, Array_InternalArray__ICollection_Contains_238, (Array * __this, KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B070, Array_InternalArray__ICollection_Contains_238__MethodInfo); DO_APP_FUNC(0x00F0EF70, bool, Array_InternalArray__ICollection_Contains_239, (Array * __this, KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B068, Array_InternalArray__ICollection_Contains_239__MethodInfo); DO_APP_FUNC(0x00F0F0F0, bool, Array_InternalArray__ICollection_Contains_240, (Array * __this, KeyValuePair_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B060, Array_InternalArray__ICollection_Contains_240__MethodInfo); DO_APP_FUNC(0x00F0F310, bool, Array_InternalArray__ICollection_Contains_241, (Array * __this, ThreadLocal_1_T_LinkedSlotVolatile_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B058, Array_InternalArray__ICollection_Contains_241__MethodInfo); DO_APP_FUNC(0x00F0F480, bool, Array_InternalArray__ICollection_Contains_242, (Array * __this, NativeArray_1_System_UInt16_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B090, Array_InternalArray__ICollection_Contains_242__MethodInfo); DO_APP_FUNC(0x00F0F5C0, bool, Array_InternalArray__ICollection_Contains_243, (Array * __this, NativeArray_1_UnityEngine_UIElements_Vertex_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B088, Array_InternalArray__ICollection_Contains_243__MethodInfo); DO_APP_FUNC(0x00F0F700, bool, Array_InternalArray__ICollection_Contains_244, (Array * __this, NonAllocDictionary_2_K_V_Node_System_Byte_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B080, Array_InternalArray__ICollection_Contains_244__MethodInfo); DO_APP_FUNC(0x00F0F8A0, bool, Array_InternalArray__ICollection_Contains_245, (Array * __this, NonAllocDictionary_2_K_V_Node_System_Int32_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B078, Array_InternalArray__ICollection_Contains_245__MethodInfo); DO_APP_FUNC(0x00F0FA40, bool, Array_InternalArray__ICollection_Contains_246, (Array * __this, NonAllocDictionary_2_K_V_Node_System_Object_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B030, Array_InternalArray__ICollection_Contains_246__MethodInfo); DO_APP_FUNC(0x00F0FBD0, bool, Array_InternalArray__ICollection_Contains_247, (Array * __this, InputStateHistory_1_TValue_Record_TouchState_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B028, Array_InternalArray__ICollection_Contains_247__MethodInfo); DO_APP_FUNC(0x00F0FD10, bool, Array_InternalArray__ICollection_Contains_248, (Array * __this, RenderGraphResourcePool_1_Type_ResourceLogInfo_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B020, Array_InternalArray__ICollection_Contains_248__MethodInfo); DO_APP_FUNC(0x00F0FE90, bool, Array_InternalArray__ICollection_Contains_249, (Array * __this, STuple_2_System_Object_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B018, Array_InternalArray__ICollection_Contains_249__MethodInfo); DO_APP_FUNC(0x00F10010, bool, Array_InternalArray__ICollection_Contains_250, (Array * __this, HashSet_1_T_Slot_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B050, Array_InternalArray__ICollection_Contains_250__MethodInfo); DO_APP_FUNC(0x00F101A0, bool, Array_InternalArray__ICollection_Contains_251, (Array * __this, HashSet_1_T_Slot_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B048, Array_InternalArray__ICollection_Contains_251__MethodInfo); DO_APP_FUNC(0x00F10330, bool, Array_InternalArray__ICollection_Contains_252, (Array * __this, Set_1_TElement_Slot_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B040, Array_InternalArray__ICollection_Contains_252__MethodInfo); DO_APP_FUNC(0x00F104C0, bool, Array_InternalArray__ICollection_Contains_253, (Array * __this, HashSet_1_T_Slot_System_Int32Enum_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B038, Array_InternalArray__ICollection_Contains_253__MethodInfo); DO_APP_FUNC(0x00F10650, bool, Array_InternalArray__ICollection_Contains_254, (Array * __this, HashSet_1_T_Slot_UnityEngine_InputSystem_Utilities_InternedString_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AFF0, Array_InternalArray__ICollection_Contains_254__MethodInfo); DO_APP_FUNC(0x00F107F0, bool, Array_InternalArray__ICollection_Contains_255, (Array * __this, HashSet_1_T_Slot_Photon_Bolt_NetworkId_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AFE8, Array_InternalArray__ICollection_Contains_255__MethodInfo); DO_APP_FUNC(0x00F10970, bool, Array_InternalArray__ICollection_Contains_256, (Array * __this, HashSet_1_T_Slot_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AFE0, Array_InternalArray__ICollection_Contains_256__MethodInfo); DO_APP_FUNC(0x00F10AF0, bool, Array_InternalArray__ICollection_Contains_257, (Array * __this, Set_1_TElement_Slot_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AFD8, Array_InternalArray__ICollection_Contains_257__MethodInfo); DO_APP_FUNC(0x00F10C90, bool, Array_InternalArray__ICollection_Contains_258, (Array * __this, ConcurrentQueue_1_T_Segment_T_Slot_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B010, Array_InternalArray__ICollection_Contains_258__MethodInfo); DO_APP_FUNC(0x00F10E10, bool, Array_InternalArray__ICollection_Contains_259, (Array * __this, HashSet_1_T_Slot_System_UInt32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B008, Array_InternalArray__ICollection_Contains_259__MethodInfo); DO_APP_FUNC(0x00F10FA0, bool, Array_InternalArray__ICollection_Contains_260, (Array * __this, HashSet_1_T_Slot_System_UInt64_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B000, Array_InternalArray__ICollection_Contains_260__MethodInfo); DO_APP_FUNC(0x00F11120, bool, Array_InternalArray__ICollection_Contains_261, (Array * __this, HashSet_1_T_Slot_UdpKit_UdpEndPoint_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AFF8, Array_InternalArray__ICollection_Contains_261__MethodInfo); DO_APP_FUNC(0x00F112D0, bool, Array_InternalArray__ICollection_Contains_262, (Array * __this, HashSet_1_T_Slot_UdpKit_UdpIPv4Address_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AFB0, Array_InternalArray__ICollection_Contains_262__MethodInfo); DO_APP_FUNC(0x00F11460, bool, Array_InternalArray__ICollection_Contains_263, (Array * __this, HashSet_1_T_Slot_UnityEngine_Vector3_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AFA8, Array_InternalArray__ICollection_Contains_263__MethodInfo); DO_APP_FUNC(0x00F11600, bool, Array_InternalArray__ICollection_Contains_264, (Array * __this, HashSet_1_T_Slot_UnityEngine_Vector3Int_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AFA0, Array_InternalArray__ICollection_Contains_264__MethodInfo); DO_APP_FUNC(0x00F117A0, bool, Array_InternalArray__ICollection_Contains_265, (Array * __this, StylePropertyAnimationSystem_Values_1_T_StyleData_Background_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AF98, Array_InternalArray__ICollection_Contains_265__MethodInfo); DO_APP_FUNC(0x00F119C0, bool, Array_InternalArray__ICollection_Contains_266, (Array * __this, StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AFD0, Array_InternalArray__ICollection_Contains_266__MethodInfo); DO_APP_FUNC(0x00F11BA0, bool, Array_InternalArray__ICollection_Contains_267, (Array * __this, StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AFC8, Array_InternalArray__ICollection_Contains_267__MethodInfo); DO_APP_FUNC(0x00F11D80, bool, Array_InternalArray__ICollection_Contains_268, (Array * __this, StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AFC0, Array_InternalArray__ICollection_Contains_268__MethodInfo); DO_APP_FUNC(0x00F11F00, bool, Array_InternalArray__ICollection_Contains_269, (Array * __this, StylePropertyAnimationSystem_Values_1_T_StyleData_Length_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AFB8, Array_InternalArray__ICollection_Contains_269__MethodInfo); DO_APP_FUNC(0x00F12090, bool, Array_InternalArray__ICollection_Contains_270, (Array * __this, StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AF70, Array_InternalArray__ICollection_Contains_270__MethodInfo); DO_APP_FUNC(0x00F12220, bool, Array_InternalArray__ICollection_Contains_271, (Array * __this, StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AF68, Array_InternalArray__ICollection_Contains_271__MethodInfo); DO_APP_FUNC(0x00F12410, bool, Array_InternalArray__ICollection_Contains_272, (Array * __this, StylePropertyAnimationSystem_Values_1_T_StyleData_Scale_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AF60, Array_InternalArray__ICollection_Contains_272__MethodInfo); DO_APP_FUNC(0x00F125F0, bool, Array_InternalArray__ICollection_Contains_273, (Array * __this, StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AF58, Array_InternalArray__ICollection_Contains_273__MethodInfo); DO_APP_FUNC(0x00F12760, bool, Array_InternalArray__ICollection_Contains_274, (Array * __this, StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AF90, Array_InternalArray__ICollection_Contains_274__MethodInfo); DO_APP_FUNC(0x00F12970, bool, Array_InternalArray__ICollection_Contains_275, (Array * __this, StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AF88, Array_InternalArray__ICollection_Contains_275__MethodInfo); DO_APP_FUNC(0x00F12B50, bool, Array_InternalArray__ICollection_Contains_276, (Array * __this, StylePropertyAnimationSystem_Values_1_T_StyleData_Translate_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AF80, Array_InternalArray__ICollection_Contains_276__MethodInfo); DO_APP_FUNC(0x00F12D40, bool, Array_InternalArray__ICollection_Contains_277, (Array * __this, TMP_TextProcessingStack_1_UnityEngine_Color32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AF78, Array_InternalArray__ICollection_Contains_277__MethodInfo); DO_APP_FUNC(0x00F12ED0, bool, Array_InternalArray__ICollection_Contains_278, (Array * __this, TMP_TextProcessingStack_1_HighlightState_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AF30, Array_InternalArray__ICollection_Contains_278__MethodInfo); DO_APP_FUNC(0x00F13090, bool, Array_InternalArray__ICollection_Contains_279, (Array * __this, TMP_TextProcessingStack_1_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AF28, Array_InternalArray__ICollection_Contains_279__MethodInfo); DO_APP_FUNC(0x00F13220, bool, Array_InternalArray__ICollection_Contains_280, (Array * __this, TMP_TextProcessingStack_1_System_Int32Enum_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AF20, Array_InternalArray__ICollection_Contains_280__MethodInfo); DO_APP_FUNC(0x00F133B0, bool, Array_InternalArray__ICollection_Contains_281, (Array * __this, TMP_TextProcessingStack_1_MaterialReference_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AF18, Array_InternalArray__ICollection_Contains_281__MethodInfo); DO_APP_FUNC(0x00F135A0, bool, Array_InternalArray__ICollection_Contains_282, (Array * __this, TMP_TextProcessingStack_1_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AF50, Array_InternalArray__ICollection_Contains_282__MethodInfo); DO_APP_FUNC(0x00F13760, bool, Array_InternalArray__ICollection_Contains_283, (Array * __this, TMP_TextProcessingStack_1_System_Single_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AF48, Array_InternalArray__ICollection_Contains_283__MethodInfo); DO_APP_FUNC(0x00F138F0, bool, Array_InternalArray__ICollection_Contains_284, (Array * __this, TMP_TextProcessingStack_1_WordWrapState_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AF40, Array_InternalArray__ICollection_Contains_284__MethodInfo); DO_APP_FUNC(0x00F13B60, bool, Array_InternalArray__ICollection_Contains_285, (Array * __this, StylePropertyAnimationSystem_Values_1_T_TimingData_Background_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AF38, Array_InternalArray__ICollection_Contains_285__MethodInfo); DO_APP_FUNC(0x00F13D20, bool, Array_InternalArray__ICollection_Contains_286, (Array * __this, StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AEF0, Array_InternalArray__ICollection_Contains_286__MethodInfo); DO_APP_FUNC(0x00F13EE0, bool, Array_InternalArray__ICollection_Contains_287, (Array * __this, StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AEE8, Array_InternalArray__ICollection_Contains_287__MethodInfo); DO_APP_FUNC(0x00F140A0, bool, Array_InternalArray__ICollection_Contains_288, (Array * __this, StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AEE0, Array_InternalArray__ICollection_Contains_288__MethodInfo); DO_APP_FUNC(0x00F14260, bool, Array_InternalArray__ICollection_Contains_289, (Array * __this, StylePropertyAnimationSystem_Values_1_T_TimingData_Length_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AED8, Array_InternalArray__ICollection_Contains_289__MethodInfo); DO_APP_FUNC(0x00F14420, bool, Array_InternalArray__ICollection_Contains_290, (Array * __this, StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AF10, Array_InternalArray__ICollection_Contains_290__MethodInfo); DO_APP_FUNC(0x00F145E0, bool, Array_InternalArray__ICollection_Contains_291, (Array * __this, StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AF08, Array_InternalArray__ICollection_Contains_291__MethodInfo); DO_APP_FUNC(0x00F147A0, bool, Array_InternalArray__ICollection_Contains_292, (Array * __this, StylePropertyAnimationSystem_Values_1_T_TimingData_Scale_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AF00, Array_InternalArray__ICollection_Contains_292__MethodInfo); DO_APP_FUNC(0x00F14960, bool, Array_InternalArray__ICollection_Contains_293, (Array * __this, StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AEF8, Array_InternalArray__ICollection_Contains_293__MethodInfo); DO_APP_FUNC(0x00F14B20, bool, Array_InternalArray__ICollection_Contains_294, (Array * __this, StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AEB0, Array_InternalArray__ICollection_Contains_294__MethodInfo); DO_APP_FUNC(0x00F14CE0, bool, Array_InternalArray__ICollection_Contains_295, (Array * __this, StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AEA8, Array_InternalArray__ICollection_Contains_295__MethodInfo); DO_APP_FUNC(0x00F14EA0, bool, Array_InternalArray__ICollection_Contains_296, (Array * __this, StylePropertyAnimationSystem_Values_1_T_TimingData_Translate_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AEA0, Array_InternalArray__ICollection_Contains_296__MethodInfo); DO_APP_FUNC(0x00F15060, bool, Array_InternalArray__ICollection_Contains_297, (Array * __this, ValueTuple_1_Boolean_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AE98, Array_InternalArray__ICollection_Contains_297__MethodInfo); DO_APP_FUNC(0x00F15190, bool, Array_InternalArray__ICollection_Contains_298, (Array * __this, ValueTuple_2_Int32_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AED0, Array_InternalArray__ICollection_Contains_298__MethodInfo); DO_APP_FUNC(0x00F152D0, bool, Array_InternalArray__ICollection_Contains_299, (Array * __this, ValueTuple_2_Int32_UnityEngine_Vector2Int_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AEC8, Array_InternalArray__ICollection_Contains_299__MethodInfo); DO_APP_FUNC(0x00F15420, bool, Array_InternalArray__ICollection_Contains_300, (Array * __this, ValueTuple_2_IntPtr_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AEC0, Array_InternalArray__ICollection_Contains_300__MethodInfo); DO_APP_FUNC(0x00F15560, bool, Array_InternalArray__ICollection_Contains_301, (Array * __this, ValueTuple_2_Object_ValueTuple_2_Object_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AEB8, Array_InternalArray__ICollection_Contains_301__MethodInfo); DO_APP_FUNC(0x00F156C0, bool, Array_InternalArray__ICollection_Contains_302, (Array * __this, ValueTuple_2_Object_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AE70, Array_InternalArray__ICollection_Contains_302__MethodInfo); DO_APP_FUNC(0x00F15800, bool, Array_InternalArray__ICollection_Contains_303, (Array * __this, ValueTuple_2_Object_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AE68, Array_InternalArray__ICollection_Contains_303__MethodInfo); DO_APP_FUNC(0x00F15940, bool, Array_InternalArray__ICollection_Contains_304, (Array * __this, ValueTuple_2_UnityEngine_Vector3Int_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AE60, Array_InternalArray__ICollection_Contains_304__MethodInfo); DO_APP_FUNC(0x00F15AA0, bool, Array_InternalArray__ICollection_Contains_305, (Array * __this, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AE58, Array_InternalArray__ICollection_Contains_305__MethodInfo); DO_APP_FUNC(0x00F15C20, bool, Array_InternalArray__ICollection_Contains_306, (Array * __this, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AE90, Array_InternalArray__ICollection_Contains_306__MethodInfo); DO_APP_FUNC(0x00F15D90, bool, Array_InternalArray__ICollection_Contains_307, (Array * __this, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AE88, Array_InternalArray__ICollection_Contains_307__MethodInfo); DO_APP_FUNC(0x00F15EF0, bool, Array_InternalArray__ICollection_Contains_308, (Array * __this, ValueTuple_3_Object_Object_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AE80, Array_InternalArray__ICollection_Contains_308__MethodInfo); DO_APP_FUNC(0x00F16050, bool, Array_InternalArray__ICollection_Contains_309, (Array * __this, AnimatorClipInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AE78, Array_InternalArray__ICollection_Contains_309__MethodInfo); DO_APP_FUNC(0x00F161C0, bool, Array_InternalArray__ICollection_Contains_310, (Array * __this, AstarWorkItem item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AE30, Array_InternalArray__ICollection_Contains_310__MethodInfo); DO_APP_FUNC(0x00F16350, bool, Array_InternalArray__ICollection_Contains_311, (Array * __this, AsyncOperationHandle item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AE28, Array_InternalArray__ICollection_Contains_311__MethodInfo); DO_APP_FUNC(0x00F164F0, bool, Array_InternalArray__ICollection_Contains_312, (Array * __this, AxisCalibrationData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AE20, Array_InternalArray__ICollection_Contains_312__MethodInfo); DO_APP_FUNC(0x00F166D0, bool, Array_InternalArray__ICollection_Contains_313, (Array * __this, Background item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AE18, Array_InternalArray__ICollection_Contains_313__MethodInfo); DO_APP_FUNC(0x00F16830, bool, Array_InternalArray__ICollection_Contains_314, (Array * __this, BatchVisibility item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AE50, Array_InternalArray__ICollection_Contains_314__MethodInfo); DO_APP_FUNC(0x00F169C0, bool, Array_InternalArray__ICollection_Contains_315, (Array * __this, BoltPeer item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AE48, Array_InternalArray__ICollection_Contains_315__MethodInfo); DO_APP_FUNC(0x00F16B30, bool, Array_InternalArray__ICollection_Contains_316, (Array * __this, BoltPhysicsHit item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AE40, Array_InternalArray__ICollection_Contains_316__MethodInfo); DO_APP_FUNC(0x00F16CD0, bool, Array_InternalArray__ICollection_Contains_317, (Array * __this, BoneWeight item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AE38, Array_InternalArray__ICollection_Contains_317__MethodInfo); DO_APP_FUNC(0x00F16E30, bool, Array_InternalArray__ICollection_Contains_318, (Array * __this, BoneWeight1 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AE00, Array_InternalArray__ICollection_Contains_318__MethodInfo); DO_APP_FUNC(0x00F16F60, bool, Array_InternalArray__ICollection_Contains_319, (Array * __this, bool item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0ADF8, Array_InternalArray__ICollection_Contains_319__MethodInfo); DO_APP_FUNC(0x00F170D0, bool, Array_InternalArray__ICollection_Contains_320, (Array * __this, BoundedPlane item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AE10, Array_InternalArray__ICollection_Contains_320__MethodInfo); DO_APP_FUNC(0x00F172E0, bool, Array_InternalArray__ICollection_Contains_321, (Array * __this, BoundingSphere item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AE08, Array_InternalArray__ICollection_Contains_321__MethodInfo); DO_APP_FUNC(0x00F17450, bool, Array_InternalArray__ICollection_Contains_322, (Array * __this, Bounds item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0ADE0, Array_InternalArray__ICollection_Contains_322__MethodInfo); DO_APP_FUNC(0x00F175B0, bool, Array_InternalArray__ICollection_Contains_323, (Array * __this, uint8_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0ADD8, Array_InternalArray__ICollection_Contains_323__MethodInfo); DO_APP_FUNC(0x00F176E0, bool, Array_InternalArray__ICollection_Contains_324, (Array * __this, ByteEnum__Enum item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0ADD0, Array_InternalArray__ICollection_Contains_324__MethodInfo); DO_APP_FUNC(0x00F17850, bool, Array_InternalArray__ICollection_Contains_325, (Array * __this, CancellationToken item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0ADF0, Array_InternalArray__ICollection_Contains_325__MethodInfo); DO_APP_FUNC(0x00F179C0, bool, Array_InternalArray__ICollection_Contains_326, (Array * __this, CancellationTokenRegistration item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0ADE8, Array_InternalArray__ICollection_Contains_326__MethodInfo); DO_APP_FUNC(0x00F17B20, bool, Array_InternalArray__ICollection_Contains_327, (Array * __this, uint16_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0ADB0, Array_InternalArray__ICollection_Contains_327__MethodInfo); DO_APP_FUNC(0x00F17C90, bool, Array_InternalArray__ICollection_Contains_328, (Array * __this, ClientInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0ADA8, Array_InternalArray__ICollection_Contains_328__MethodInfo); DO_APP_FUNC(0x00F17E30, bool, Array_InternalArray__ICollection_Contains_329, (Array * __this, ClothSkinningCoefficient item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0ADA0, Array_InternalArray__ICollection_Contains_329__MethodInfo); DO_APP_FUNC(0x00F17FA0, bool, Array_InternalArray__ICollection_Contains_330, (Array * __this, ClothSphereColliderPair item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0ADC8, Array_InternalArray__ICollection_Contains_330__MethodInfo); DO_APP_FUNC(0x00F18120, bool, Array_InternalArray__ICollection_Contains_331, (Array * __this, Color item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0ADC0, Array_InternalArray__ICollection_Contains_331__MethodInfo); DO_APP_FUNC(0x00F18250, bool, Array_InternalArray__ICollection_Contains_332, (Array * __this, Color32 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0ADB8, Array_InternalArray__ICollection_Contains_332__MethodInfo); DO_APP_FUNC(0x00F183B0, bool, Array_InternalArray__ICollection_Contains_333, (Array * __this, ColorBlock item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AD78, Array_InternalArray__ICollection_Contains_333__MethodInfo); DO_APP_FUNC(0x00F185B0, bool, Array_InternalArray__ICollection_Contains_334, (Array * __this, CombineInstance item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AD70, Array_InternalArray__ICollection_Contains_334__MethodInfo); DO_APP_FUNC(0x00F187C0, bool, Array_InternalArray__ICollection_Contains_335, (Array * __this, CompactVoxelCell item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AD68, Array_InternalArray__ICollection_Contains_335__MethodInfo); DO_APP_FUNC(0x00F18930, bool, Array_InternalArray__ICollection_Contains_336, (Array * __this, CompactVoxelSpan item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AD98, Array_InternalArray__ICollection_Contains_336__MethodInfo); DO_APP_FUNC(0x00F18AB0, bool, Array_InternalArray__ICollection_Contains_337, (Array * __this, ComputedStyle item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AD90, Array_InternalArray__ICollection_Contains_337__MethodInfo); DO_APP_FUNC(0x00F18CA0, bool, Array_InternalArray__ICollection_Contains_338, (Array * __this, ComputedTransitionProperty item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AD88, Array_InternalArray__ICollection_Contains_338__MethodInfo); DO_APP_FUNC(0x00F18E40, bool, Array_InternalArray__ICollection_Contains_339, (Array * __this, ConfigurationDescriptor item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AD80, Array_InternalArray__ICollection_Contains_339__MethodInfo); DO_APP_FUNC(0x00F18FA0, bool, Array_InternalArray__ICollection_Contains_340, (Array * __this, Connection item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AD40, Array_InternalArray__ICollection_Contains_340__MethodInfo); DO_APP_FUNC(0x00F190E0, bool, Array_InternalArray__ICollection_Contains_341, (Array * __this, ContactPoint item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AD38, Array_InternalArray__ICollection_Contains_341__MethodInfo); DO_APP_FUNC(0x00F19290, bool, Array_InternalArray__ICollection_Contains_342, (Array * __this, ContactPoint2D item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AD30, Array_InternalArray__ICollection_Contains_342__MethodInfo); DO_APP_FUNC(0x00F19470, bool, Array_InternalArray__ICollection_Contains_343, (Array * __this, ControllerPollingInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AD28, Array_InternalArray__ICollection_Contains_343__MethodInfo); DO_APP_FUNC(0x00F19650, bool, Array_InternalArray__ICollection_Contains_344, (Array * __this, ControllerTemplateElementTarget item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AD60, Array_InternalArray__ICollection_Contains_344__MethodInfo); DO_APP_FUNC(0x00F197D0, bool, Array_InternalArray__ICollection_Contains_345, (Array * __this, CurveSample item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AD58, Array_InternalArray__ICollection_Contains_345__MethodInfo); DO_APP_FUNC(0x00F19970, bool, Array_InternalArray__ICollection_Contains_346, (Array * __this, CustomAttributeNamedArgument item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AD50, Array_InternalArray__ICollection_Contains_346__MethodInfo); DO_APP_FUNC(0x00F19AE0, bool, Array_InternalArray__ICollection_Contains_347, (Array * __this, CustomAttributeTypedArgument item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AD48, Array_InternalArray__ICollection_Contains_347__MethodInfo); DO_APP_FUNC(0x00F19C20, bool, Array_InternalArray__ICollection_Contains_348, (Array * __this, DateTime item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AD18, Array_InternalArray__ICollection_Contains_348__MethodInfo); DO_APP_FUNC(0x00F19D90, bool, Array_InternalArray__ICollection_Contains_349, (Array * __this, DateTimeOffset item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AD20, Array_InternalArray__ICollection_Contains_349__MethodInfo); DO_APP_FUNC(0x00F19F20, bool, Array_InternalArray__ICollection_Contains_350, (Array * __this, Decimal item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0ACF0, Array_InternalArray__ICollection_Contains_350__MethodInfo); DO_APP_FUNC(0x00F1A0B0, bool, Array_InternalArray__ICollection_Contains_351, (Array * __this, DetailInstanceTransform item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0ACE8, Array_InternalArray__ICollection_Contains_351__MethodInfo); DO_APP_FUNC(0x00F1A250, bool, Array_InternalArray__ICollection_Contains_352, (Array * __this, DiagnosticEvent item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0ACE0, Array_InternalArray__ICollection_Contains_352__MethodInfo); DO_APP_FUNC(0x00F1A410, bool, Array_InternalArray__ICollection_Contains_353, (Array * __this, DictionaryEntry item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0ACD8, Array_InternalArray__ICollection_Contains_353__MethodInfo); DO_APP_FUNC(0x00F1A590, bool, Array_InternalArray__ICollection_Contains_354, (Array * __this, Dimension item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AD10, Array_InternalArray__ICollection_Contains_354__MethodInfo); DO_APP_FUNC(0x00F1A6C0, bool, Array_InternalArray__ICollection_Contains_355, (Array * __this, double item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AD08, Array_InternalArray__ICollection_Contains_355__MethodInfo); DO_APP_FUNC(0x00F1A7F0, bool, Array_InternalArray__ICollection_Contains_356, (Array * __this, DrawBufferRange item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AD00, Array_InternalArray__ICollection_Contains_356__MethodInfo); DO_APP_FUNC(0x00F1A970, bool, Array_InternalArray__ICollection_Contains_357, (Array * __this, EasingFunction item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0ACF8, Array_InternalArray__ICollection_Contains_357__MethodInfo); DO_APP_FUNC(0x00F1AAF0, bool, Array_InternalArray__ICollection_Contains_358, (Array * __this, ElementAssignmentConflictInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0ACB0, Array_InternalArray__ICollection_Contains_358__MethodInfo); DO_APP_FUNC(0x00F1ACC0, bool, Array_InternalArray__ICollection_Contains_359, (Array * __this, Entitlement item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0ACA8, Array_InternalArray__ICollection_Contains_359__MethodInfo); DO_APP_FUNC(0x00F1AE60, bool, Array_InternalArray__ICollection_Contains_360, (Array * __this, Ephemeron item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0ACA0, Array_InternalArray__ICollection_Contains_360__MethodInfo); DO_APP_FUNC(0x00F1AFE0, bool, Array_InternalArray__ICollection_Contains_361, (Array * __this, EventReliable item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AC98, Array_InternalArray__ICollection_Contains_361__MethodInfo); DO_APP_FUNC(0x00F1B160, bool, Array_InternalArray__ICollection_Contains_362, (Array * __this, EventUnreliable item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0ACD0, Array_InternalArray__ICollection_Contains_362__MethodInfo); DO_APP_FUNC(0x00F1B300, bool, Array_InternalArray__ICollection_Contains_363, (Array * __this, FORMATETC item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0ACC8, Array_InternalArray__ICollection_Contains_363__MethodInfo); DO_APP_FUNC(0x00F1B490, bool, Array_InternalArray__ICollection_Contains_364, (Array * __this, FileStat item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0ACC0, Array_InternalArray__ICollection_Contains_364__MethodInfo); DO_APP_FUNC(0x00F1B630, bool, Array_InternalArray__ICollection_Contains_365, (Array * __this, FontDefinition item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0ACB8, Array_InternalArray__ICollection_Contains_365__MethodInfo); DO_APP_FUNC(0x00F1B770, bool, Array_InternalArray__ICollection_Contains_366, (Array * __this, FontWeightPair item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AC78, Array_InternalArray__ICollection_Contains_366__MethodInfo); DO_APP_FUNC(0x00F1B8F0, bool, Array_InternalArray__ICollection_Contains_367, (Array * __this, FrameFormat item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AC70, Array_InternalArray__ICollection_Contains_367__MethodInfo); DO_APP_FUNC(0x00F1BA50, bool, Array_InternalArray__ICollection_Contains_368, (Array * __this, GCHandle item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AC68, Array_InternalArray__ICollection_Contains_368__MethodInfo); DO_APP_FUNC(0x00F1BB80, bool, Array_InternalArray__ICollection_Contains_369, (Array * __this, GfxUpdateBufferRange item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AC60, Array_InternalArray__ICollection_Contains_369__MethodInfo); DO_APP_FUNC(0x00F1BD00, bool, Array_InternalArray__ICollection_Contains_370, (Array * __this, GlobalKeyword item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AC90, Array_InternalArray__ICollection_Contains_370__MethodInfo); DO_APP_FUNC(0x00F1BE80, bool, Array_InternalArray__ICollection_Contains_371, (Array * __this, GlyphMarshallingStruct item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AC88, Array_InternalArray__ICollection_Contains_371__MethodInfo); DO_APP_FUNC(0x00F1C050, bool, Array_InternalArray__ICollection_Contains_372, (Array * __this, GlyphPairAdjustmentRecord item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AC80, Array_InternalArray__ICollection_Contains_372__MethodInfo); DO_APP_FUNC(0x00F1C1C0, bool, Array_InternalArray__ICollection_Contains_373, (Array * __this, GlyphRect item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AC38, Array_InternalArray__ICollection_Contains_373__MethodInfo); DO_APP_FUNC(0x00F1C350, bool, Array_InternalArray__ICollection_Contains_374, (Array * __this, GradientAlphaKey item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AC30, Array_InternalArray__ICollection_Contains_374__MethodInfo); DO_APP_FUNC(0x00F1C4C0, bool, Array_InternalArray__ICollection_Contains_375, (Array * __this, GradientColorKey item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AC28, Array_InternalArray__ICollection_Contains_375__MethodInfo); DO_APP_FUNC(0x00F1C660, bool, Array_InternalArray__ICollection_Contains_376, (Array * __this, GradientSettings item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AC58, Array_InternalArray__ICollection_Contains_376__MethodInfo); DO_APP_FUNC(0x00F1C7F0, bool, Array_InternalArray__ICollection_Contains_377, (Array * __this, Guid item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AC50, Array_InternalArray__ICollection_Contains_377__MethodInfo); DO_APP_FUNC(0x00F1C930, bool, Array_InternalArray__ICollection_Contains_378, (Array * __this, HandJointLocation item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AC48, Array_InternalArray__ICollection_Contains_378__MethodInfo); DO_APP_FUNC(0x00F1CAE0, bool, Array_InternalArray__ICollection_Contains_379, (Array * __this, Hash128 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AC40, Array_InternalArray__ICollection_Contains_379__MethodInfo); DO_APP_FUNC(0x00F1CC20, bool, Array_InternalArray__ICollection_Contains_380, (Array * __this, HeaderVariantInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AC00, Array_InternalArray__ICollection_Contains_380__MethodInfo); DO_APP_FUNC(0x00F1CDA0, bool, Array_InternalArray__ICollection_Contains_381, (Array * __this, HighlightState item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0ABF8, Array_InternalArray__ICollection_Contains_381__MethodInfo); DO_APP_FUNC(0x00F1CEF0, bool, Array_InternalArray__ICollection_Contains_382, (Array * __this, HumanBone item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0ABF0, Array_InternalArray__ICollection_Contains_382__MethodInfo); DO_APP_FUNC(0x00F1D0D0, bool, Array_InternalArray__ICollection_Contains_383, (Array * __this, ImpactEffect item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0ABE8, Array_InternalArray__ICollection_Contains_383__MethodInfo); DO_APP_FUNC(0x00F1D250, bool, Array_InternalArray__ICollection_Contains_384, (Array * __this, InputActionSourceData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AC20, Array_InternalArray__ICollection_Contains_384__MethodInfo); DO_APP_FUNC(0x00F1D3F0, bool, Array_InternalArray__ICollection_Contains_385, (Array * __this, InputBinding item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AC18, Array_InternalArray__ICollection_Contains_385__MethodInfo); DO_APP_FUNC(0x00F1D5A0, bool, Array_InternalArray__ICollection_Contains_386, (Array * __this, InputControlScheme item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AC10, Array_InternalArray__ICollection_Contains_386__MethodInfo); DO_APP_FUNC(0x00F1D700, bool, Array_InternalArray__ICollection_Contains_387, (Array * __this, InputDevice_1 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AC08, Array_InternalArray__ICollection_Contains_387__MethodInfo); DO_APP_FUNC(0x00F1D840, bool, Array_InternalArray__ICollection_Contains_388, (Array * __this, InputDeviceDescription item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0ABC0, Array_InternalArray__ICollection_Contains_388__MethodInfo); DO_APP_FUNC(0x00F1D9C0, bool, Array_InternalArray__ICollection_Contains_389, (Array * __this, InputEventPtr item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0ABB8, Array_InternalArray__ICollection_Contains_389__MethodInfo); DO_APP_FUNC(0x00F1DAF0, bool, Array_InternalArray__ICollection_Contains_390, (Array * __this, InputUser item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0ABB0, Array_InternalArray__ICollection_Contains_390__MethodInfo); DO_APP_FUNC(0x00F1DC70, bool, Array_InternalArray__ICollection_Contains_391, (Array * __this, int16_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0ABA8, Array_InternalArray__ICollection_Contains_391__MethodInfo); DO_APP_FUNC(0x00F1DDA0, bool, Array_InternalArray__ICollection_Contains_392, (Array * __this, Int2 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0ABE0, Array_InternalArray__ICollection_Contains_392__MethodInfo); DO_APP_FUNC(0x00F1DF30, bool, Array_InternalArray__ICollection_Contains_393, (Array * __this, Int3 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0ABD8, Array_InternalArray__ICollection_Contains_393__MethodInfo); DO_APP_FUNC(0x00F1E080, bool, Array_InternalArray__ICollection_Contains_394, (Array * __this, int32_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0ABD0, Array_InternalArray__ICollection_Contains_394__MethodInfo); DO_APP_FUNC(0x00F1E1B0, bool, Array_InternalArray__ICollection_Contains_395, (Array * __this, Int32Enum__Enum item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0ABC8, Array_InternalArray__ICollection_Contains_395__MethodInfo); DO_APP_FUNC(0x00F1E320, bool, Array_InternalArray__ICollection_Contains_396, (Array * __this, int64_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AB80, Array_InternalArray__ICollection_Contains_396__MethodInfo); DO_APP_FUNC(0x00F1E450, bool, Array_InternalArray__ICollection_Contains_397, (Array * __this, IntPoint item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AB78, Array_InternalArray__ICollection_Contains_397__MethodInfo); DO_APP_FUNC(0x00F1E590, bool, Array_InternalArray__ICollection_Contains_398, (Array * __this, void * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AB70, Array_InternalArray__ICollection_Contains_398__MethodInfo); DO_APP_FUNC(0x00F1E6C0, bool, Array_InternalArray__ICollection_Contains_399, (Array * __this, IntRect item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AB68, Array_InternalArray__ICollection_Contains_399__MethodInfo); DO_APP_FUNC(0x00F1E800, bool, Array_InternalArray__ICollection_Contains_400, (Array * __this, InternalCodePageDataItem item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0ABA0, Array_InternalArray__ICollection_Contains_400__MethodInfo); DO_APP_FUNC(0x00F1E980, bool, Array_InternalArray__ICollection_Contains_401, (Array * __this, InternalEncodingDataItem item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AB98, Array_InternalArray__ICollection_Contains_401__MethodInfo); DO_APP_FUNC(0x00F1EB00, bool, Array_InternalArray__ICollection_Contains_402, (Array * __this, InternedString item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AB90, Array_InternalArray__ICollection_Contains_402__MethodInfo); DO_APP_FUNC(0x00F1EC40, bool, Array_InternalArray__ICollection_Contains_403, (Array * __this, InterpretedFrameInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AB88, Array_InternalArray__ICollection_Contains_403__MethodInfo); DO_APP_FUNC(0x00F1EDC0, bool, Array_InternalArray__ICollection_Contains_404, (Array * __this, IntervalTreeNode item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AB40, Array_InternalArray__ICollection_Contains_404__MethodInfo); DO_APP_FUNC(0x00F1EF60, bool, Array_InternalArray__ICollection_Contains_405, (Array * __this, IpQCkqlgJLyrFpAOyBfUxXQpJsWK item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AB38, Array_InternalArray__ICollection_Contains_405__MethodInfo); DO_APP_FUNC(0x00F1F0D0, bool, Array_InternalArray__ICollection_Contains_406, (Array * __this, ItemDefinitionAmount item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AB30, Array_InternalArray__ICollection_Contains_406__MethodInfo); DO_APP_FUNC(0x00F1F270, bool, Array_InternalArray__ICollection_Contains_407, (Array * __this, Keyframe item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AB28, Array_InternalArray__ICollection_Contains_407__MethodInfo); DO_APP_FUNC(0x00F1F430, bool, Array_InternalArray__ICollection_Contains_408, (Array * __this, KickedPlayer item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AB60, Array_InternalArray__ICollection_Contains_408__MethodInfo); DO_APP_FUNC(0x00F1F5B0, bool, Array_InternalArray__ICollection_Contains_409, (Array * __this, LOD item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AB58, Array_InternalArray__ICollection_Contains_409__MethodInfo); DO_APP_FUNC(0x00F1F730, bool, Array_InternalArray__ICollection_Contains_410, (Array * __this, LayerMask item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AB50, Array_InternalArray__ICollection_Contains_410__MethodInfo); DO_APP_FUNC(0x00F1F890, bool, Array_InternalArray__ICollection_Contains_411, (Array * __this, Length item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AB48, Array_InternalArray__ICollection_Contains_411__MethodInfo); DO_APP_FUNC(0x00F1F9C0, bool, Array_InternalArray__ICollection_Contains_412, (Array * __this, LightDataGI item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AB00, Array_InternalArray__ICollection_Contains_412__MethodInfo); DO_APP_FUNC(0x00F1FBB0, bool, Array_InternalArray__ICollection_Contains_413, (Array * __this, LineInfo_1 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AAF8, Array_InternalArray__ICollection_Contains_413__MethodInfo); DO_APP_FUNC(0x00F1FDA0, bool, Array_InternalArray__ICollection_Contains_414, (Array * __this, LinkInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AAF0, Array_InternalArray__ICollection_Contains_414__MethodInfo); DO_APP_FUNC(0x00F1FF30, bool, Array_InternalArray__ICollection_Contains_415, (Array * __this, LocalDefinition item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AAE8, Array_InternalArray__ICollection_Contains_415__MethodInfo); DO_APP_FUNC(0x00F20070, bool, Array_InternalArray__ICollection_Contains_416, (Array * __this, LocalKeyword item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AB20, Array_InternalArray__ICollection_Contains_416__MethodInfo); DO_APP_FUNC(0x00F201D0, bool, Array_InternalArray__ICollection_Contains_417, (Array * __this, ManipulatorActivationFilter item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AB18, Array_InternalArray__ICollection_Contains_417__MethodInfo); DO_APP_FUNC(0x00F20320, bool, Array_InternalArray__ICollection_Contains_418, (Array * __this, MaterialReference item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AB10, Array_InternalArray__ICollection_Contains_418__MethodInfo); DO_APP_FUNC(0x00F20500, bool, Array_InternalArray__ICollection_Contains_419, (Array * __this, MaterialReference_1 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AB08, Array_InternalArray__ICollection_Contains_419__MethodInfo); DO_APP_FUNC(0x00F206E0, bool, Array_InternalArray__ICollection_Contains_420, (Array * __this, Matrix4x4 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AAC0, Array_InternalArray__ICollection_Contains_420__MethodInfo); DO_APP_FUNC(0x00F20850, bool, Array_InternalArray__ICollection_Contains_421, (Array * __this, MeshInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AAB8, Array_InternalArray__ICollection_Contains_421__MethodInfo); DO_APP_FUNC(0x00F20A30, bool, Array_InternalArray__ICollection_Contains_422, (Array * __this, MinMaxFloat item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AAB0, Array_InternalArray__ICollection_Contains_422__MethodInfo); DO_APP_FUNC(0x00F20BA0, bool, Array_InternalArray__ICollection_Contains_423, (Array * __this, MinMaxVector3 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AAA8, Array_InternalArray__ICollection_Contains_423__MethodInfo); DO_APP_FUNC(0x00F20D50, bool, Array_InternalArray__ICollection_Contains_424, (Array * __this, ModifiableContactPair item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AAE0, Array_InternalArray__ICollection_Contains_424__MethodInfo); DO_APP_FUNC(0x00F20F60, bool, Array_InternalArray__ICollection_Contains_425, (Array * __this, NameAndParameters item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AAD8, Array_InternalArray__ICollection_Contains_425__MethodInfo); DO_APP_FUNC(0x00F21100, bool, Array_InternalArray__ICollection_Contains_426, (Array * __this, NamedValue item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AAD0, Array_InternalArray__ICollection_Contains_426__MethodInfo); DO_APP_FUNC(0x00F21260, bool, Array_InternalArray__ICollection_Contains_427, (Array * __this, NativeAnchor item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AAC8, Array_InternalArray__ICollection_Contains_427__MethodInfo); DO_APP_FUNC(0x00F21440, bool, Array_InternalArray__ICollection_Contains_428, (Array * __this, NativePlane item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AA80, Array_InternalArray__ICollection_Contains_428__MethodInfo); DO_APP_FUNC(0x00F21610, bool, Array_InternalArray__ICollection_Contains_429, (Array * __this, Navigation item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AA78, Array_InternalArray__ICollection_Contains_429__MethodInfo); DO_APP_FUNC(0x00F217D0, bool, Array_InternalArray__ICollection_Contains_430, (Array * __this, NetworkId item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AA70, Array_InternalArray__ICollection_Contains_430__MethodInfo); DO_APP_FUNC(0x00F21900, bool, Array_InternalArray__ICollection_Contains_431, (Array * __this, NetworkPropertyInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AA68, Array_InternalArray__ICollection_Contains_431__MethodInfo); DO_APP_FUNC(0x00F21A90, bool, Array_InternalArray__ICollection_Contains_432, (Array * __this, NetworkValue item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AAA0, Array_InternalArray__ICollection_Contains_432__MethodInfo); DO_APP_FUNC(0x00F21C30, bool, Array_InternalArray__ICollection_Contains_433, (Array * __this, Object * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AA98, Array_InternalArray__ICollection_Contains_433__MethodInfo); DO_APP_FUNC(0x00F21D40, bool, Array_InternalArray__ICollection_Contains_434, (Array * __this, ObjectInitializationData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AA90, Array_InternalArray__ICollection_Contains_434__MethodInfo); DO_APP_FUNC(0x00F21F00, bool, Array_InternalArray__ICollection_Contains_435, (Array * __this, ObjectSurface item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AA88, Array_InternalArray__ICollection_Contains_435__MethodInfo); DO_APP_FUNC(0x00F22080, bool, Array_InternalArray__ICollection_Contains_436, (Array * __this, OpenChannel item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AA40, Array_InternalArray__ICollection_Contains_436__MethodInfo); DO_APP_FUNC(0x00F22210, bool, Array_InternalArray__ICollection_Contains_437, (Array * __this, OriginalMaterialValue item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AA38, Array_InternalArray__ICollection_Contains_437__MethodInfo); DO_APP_FUNC(0x00F223D0, bool, Array_InternalArray__ICollection_Contains_438, (Array * __this, PacketStats item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AA30, Array_InternalArray__ICollection_Contains_438__MethodInfo); DO_APP_FUNC(0x00F22560, bool, Array_InternalArray__ICollection_Contains_439, (Array * __this, PageInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AA28, Array_InternalArray__ICollection_Contains_439__MethodInfo); DO_APP_FUNC(0x00F22700, bool, Array_InternalArray__ICollection_Contains_440, (Array * __this, ParameterModifier item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AA60, Array_InternalArray__ICollection_Contains_440__MethodInfo); DO_APP_FUNC(0x00F22870, bool, Array_InternalArray__ICollection_Contains_441, (Array * __this, ParticleCollisionEvent item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AA58, Array_InternalArray__ICollection_Contains_441__MethodInfo); DO_APP_FUNC(0x00F22A30, bool, Array_InternalArray__ICollection_Contains_442, (Array * __this, PatchExtents item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AA50, Array_InternalArray__ICollection_Contains_442__MethodInfo); DO_APP_FUNC(0x00F22BA0, bool, Array_InternalArray__ICollection_Contains_443, (Array * __this, PidVid item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AA48, Array_InternalArray__ICollection_Contains_443__MethodInfo); DO_APP_FUNC(0x00F22CD0, bool, Array_InternalArray__ICollection_Contains_444, (Array * __this, Plane item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AA00, Array_InternalArray__ICollection_Contains_444__MethodInfo); DO_APP_FUNC(0x00F22E40, bool, Array_InternalArray__ICollection_Contains_445, (Array * __this, Playable item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A9F8, Array_InternalArray__ICollection_Contains_445__MethodInfo); DO_APP_FUNC(0x00F22FC0, bool, Array_InternalArray__ICollection_Contains_446, (Array * __this, PlayableBinding item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A9F0, Array_InternalArray__ICollection_Contains_446__MethodInfo); DO_APP_FUNC(0x00F23150, bool, Array_InternalArray__ICollection_Contains_447, (Array * __this, PlayerChannel item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A9E8, Array_InternalArray__ICollection_Contains_447__MethodInfo); DO_APP_FUNC(0x00F232B0, bool, Array_InternalArray__ICollection_Contains_448, (Array * __this, PlayerFlashlightBeam item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AA20, Array_InternalArray__ICollection_Contains_448__MethodInfo); DO_APP_FUNC(0x00F23430, bool, Array_InternalArray__ICollection_Contains_449, (Array * __this, PlayerLoopSystem item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AA18, Array_InternalArray__ICollection_Contains_449__MethodInfo); DO_APP_FUNC(0x00F235F0, bool, Array_InternalArray__ICollection_Contains_450, (Array * __this, PointerModel item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AA10, Array_InternalArray__ICollection_Contains_450__MethodInfo); DO_APP_FUNC(0x00F23860, bool, Array_InternalArray__ICollection_Contains_451, (Array * __this, PrefabId item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0AA08, Array_InternalArray__ICollection_Contains_451__MethodInfo); DO_APP_FUNC(0x00F23990, bool, Array_InternalArray__ICollection_Contains_452, (Array * __this, Priority item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A9C8, Array_InternalArray__ICollection_Contains_452__MethodInfo); DO_APP_FUNC(0x00F23B20, bool, Array_InternalArray__ICollection_Contains_453, (Array * __this, ProbeVolumeBakingProcessSettings item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A9C0, Array_InternalArray__ICollection_Contains_453__MethodInfo); DO_APP_FUNC(0x00F23CB0, bool, Array_InternalArray__ICollection_Contains_454, (Array * __this, Progress item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A9B8, Array_InternalArray__ICollection_Contains_454__MethodInfo); DO_APP_FUNC(0x00F23E30, bool, Array_InternalArray__ICollection_Contains_455, (Array * __this, PublishedFileId_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A9E0, Array_InternalArray__ICollection_Contains_455__MethodInfo); DO_APP_FUNC(0x00F23FA0, bool, Array_InternalArray__ICollection_Contains_456, (Array * __this, QeeoSydAJKtvhuMHtIdMCGTRHBDhA item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A9D8, Array_InternalArray__ICollection_Contains_456__MethodInfo); DO_APP_FUNC(0x00F24130, bool, Array_InternalArray__ICollection_Contains_457, (Array * __this, Quaternion item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A9D0, Array_InternalArray__ICollection_Contains_457__MethodInfo); DO_APP_FUNC(0x00F24260, bool, Array_InternalArray__ICollection_Contains_458, (Array * __this, RangePositionInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A970, Array_InternalArray__ICollection_Contains_458__MethodInfo); DO_APP_FUNC(0x00F243E0, bool, Array_InternalArray__ICollection_Contains_459, (Array * __this, RaycastHit item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A960, Array_InternalArray__ICollection_Contains_459__MethodInfo); DO_APP_FUNC(0x00F245B0, bool, Array_InternalArray__ICollection_Contains_460, (Array * __this, RaycastHit2D item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A958, Array_InternalArray__ICollection_Contains_460__MethodInfo); DO_APP_FUNC(0x00F24760, bool, Array_InternalArray__ICollection_Contains_461, (Array * __this, RaycastResult item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A950, Array_InternalArray__ICollection_Contains_461__MethodInfo); DO_APP_FUNC(0x00F24940, bool, Array_InternalArray__ICollection_Contains_462, (Array * __this, Rect item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A9B0, Array_InternalArray__ICollection_Contains_462__MethodInfo); DO_APP_FUNC(0x00F24A80, bool, Array_InternalArray__ICollection_Contains_463, (Array * __this, ReflectionProbeBlendInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A9A0, Array_InternalArray__ICollection_Contains_463__MethodInfo); DO_APP_FUNC(0x00F24C00, bool, Array_InternalArray__ICollection_Contains_464, (Array * __this, RemoteChannel item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A990, Array_InternalArray__ICollection_Contains_464__MethodInfo); DO_APP_FUNC(0x00F24DA0, bool, Array_InternalArray__ICollection_Contains_465, (Array * __this, RenderChainTextEntry item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A980, Array_InternalArray__ICollection_Contains_465__MethodInfo); DO_APP_FUNC(0x00F24F20, bool, Array_InternalArray__ICollection_Contains_466, (Array * __this, RenderInstancedDataLayout item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A928, Array_InternalArray__ICollection_Contains_466__MethodInfo); DO_APP_FUNC(0x00F250A0, bool, Array_InternalArray__ICollection_Contains_467, (Array * __this, RenderTargetIdentifier item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A920, Array_InternalArray__ICollection_Contains_467__MethodInfo); DO_APP_FUNC(0x00F25210, bool, Array_InternalArray__ICollection_Contains_468, (Array * __this, RendererList item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A918, Array_InternalArray__ICollection_Contains_468__MethodInfo); DO_APP_FUNC(0x00F25390, bool, Array_InternalArray__ICollection_Contains_469, (Array * __this, RendererListHandle item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A910, Array_InternalArray__ICollection_Contains_469__MethodInfo); DO_APP_FUNC(0x00F25500, bool, Array_InternalArray__ICollection_Contains_470, (Array * __this, RendererListResource item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A948, Array_InternalArray__ICollection_Contains_470__MethodInfo); DO_APP_FUNC(0x00F257A0, bool, Array_InternalArray__ICollection_Contains_471, (Array * __this, Resolution item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A940, Array_InternalArray__ICollection_Contains_471__MethodInfo); DO_APP_FUNC(0x00F25930, bool, Array_InternalArray__ICollection_Contains_472, (Array * __this, ResourceHandle item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A938, Array_InternalArray__ICollection_Contains_472__MethodInfo); DO_APP_FUNC(0x00F25AA0, bool, Array_InternalArray__ICollection_Contains_473, (Array * __this, ResourceLocator item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A930, Array_InternalArray__ICollection_Contains_473__MethodInfo); DO_APP_FUNC(0x00F25C20, bool, Array_InternalArray__ICollection_Contains_474, (Array * __this, RichTextTagAttribute item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A8E8, Array_InternalArray__ICollection_Contains_474__MethodInfo); DO_APP_FUNC(0x00F25DC0, bool, Array_InternalArray__ICollection_Contains_475, (Array * __this, RichTextTagAttribute_1 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A8E0, Array_InternalArray__ICollection_Contains_475__MethodInfo); DO_APP_FUNC(0x00F25F60, bool, Array_InternalArray__ICollection_Contains_476, (Array * __this, RoomChannel item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A908, Array_InternalArray__ICollection_Contains_476__MethodInfo); DO_APP_FUNC(0x00F26110, bool, Array_InternalArray__ICollection_Contains_477, (Array * __this, RoomMembership item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A900, Array_InternalArray__ICollection_Contains_477__MethodInfo); DO_APP_FUNC(0x00F262B0, bool, Array_InternalArray__ICollection_Contains_478, (Array * __this, RoomName item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A8F8, Array_InternalArray__ICollection_Contains_478__MethodInfo); DO_APP_FUNC(0x00F26430, bool, Array_InternalArray__ICollection_Contains_479, (Array * __this, Rotate_1 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A8F0, Array_InternalArray__ICollection_Contains_479__MethodInfo); DO_APP_FUNC(0x00F26590, bool, Array_InternalArray__ICollection_Contains_480, (Array * __this, RuleMatcher item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A8A0, Array_InternalArray__ICollection_Contains_480__MethodInfo); DO_APP_FUNC(0x00F26710, bool, Array_InternalArray__ICollection_Contains_481, (Array * __this, RuntimeLabel item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A890, Array_InternalArray__ICollection_Contains_481__MethodInfo); DO_APP_FUNC(0x00F268A0, bool, Array_InternalArray__ICollection_Contains_482, (Array * __this, int8_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A880, Array_InternalArray__ICollection_Contains_482__MethodInfo); DO_APP_FUNC(0x00F269D0, bool, Array_InternalArray__ICollection_Contains_483, (Array * __this, SByteEnum__Enum item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A870, Array_InternalArray__ICollection_Contains_483__MethodInfo); DO_APP_FUNC(0x00F26B40, bool, Array_InternalArray__ICollection_Contains_484, (Array * __this, STATDATA item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A8D8, Array_InternalArray__ICollection_Contains_484__MethodInfo); DO_APP_FUNC(0x00F26D20, bool, Array_InternalArray__ICollection_Contains_485, (Array * __this, ScalableImage item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A8D0, Array_InternalArray__ICollection_Contains_485__MethodInfo); DO_APP_FUNC(0x00F26EA0, bool, Array_InternalArray__ICollection_Contains_486, (Array * __this, Scale item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A8C0, Array_InternalArray__ICollection_Contains_486__MethodInfo); DO_APP_FUNC(0x00F26FE0, bool, Array_InternalArray__ICollection_Contains_487, (Array * __this, SelectorMatchRecord item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A8B0, Array_InternalArray__ICollection_Contains_487__MethodInfo); DO_APP_FUNC(0x00F27180, bool, Array_InternalArray__ICollection_Contains_488, (Array * __this, SemanticMeaning item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A840, Array_InternalArray__ICollection_Contains_488__MethodInfo); DO_APP_FUNC(0x00F27300, bool, Array_InternalArray__ICollection_Contains_489, (Array * __this, SerializedType item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A830, Array_InternalArray__ICollection_Contains_489__MethodInfo); DO_APP_FUNC(0x00F27490, bool, Array_InternalArray__ICollection_Contains_490, (Array * __this, SessionClient item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A820, Array_InternalArray__ICollection_Contains_490__MethodInfo); DO_APP_FUNC(0x00F27670, bool, Array_InternalArray__ICollection_Contains_491, (Array * __this, ShaderKeyword item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A818, Array_InternalArray__ICollection_Contains_491__MethodInfo); DO_APP_FUNC(0x00F277F0, bool, Array_InternalArray__ICollection_Contains_492, (Array * __this, ShaderTagId item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A868, Array_InternalArray__ICollection_Contains_492__MethodInfo); DO_APP_FUNC(0x00F27970, bool, Array_InternalArray__ICollection_Contains_493, (Array * __this, ShaderVariablesProbeVolumes item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A858, Array_InternalArray__ICollection_Contains_493__MethodInfo); DO_APP_FUNC(0x00F27B50, bool, Array_InternalArray__ICollection_Contains_494, (Array * __this, float item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A850, Array_InternalArray__ICollection_Contains_494__MethodInfo); DO_APP_FUNC(0x00F27C80, bool, Array_InternalArray__ICollection_Contains_495, (Array * __this, SkeletonBone item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A848, Array_InternalArray__ICollection_Contains_495__MethodInfo); DO_APP_FUNC(0x00F27E60, bool, Array_InternalArray__ICollection_Contains_496, (Array * __this, Sku item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A7F0, Array_InternalArray__ICollection_Contains_496__MethodInfo); DO_APP_FUNC(0x00F28020, bool, Array_InternalArray__ICollection_Contains_497, (Array * __this, SpeechSession item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A7E8, Array_InternalArray__ICollection_Contains_497__MethodInfo); DO_APP_FUNC(0x00F28200, bool, Array_InternalArray__ICollection_Contains_498, (Array * __this, SphericalHarmonicsL2 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A7E0, Array_InternalArray__ICollection_Contains_498__MethodInfo); DO_APP_FUNC(0x00F283B0, bool, Array_InternalArray__ICollection_Contains_499, (Array * __this, SpriteState item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BE80, Array_InternalArray__ICollection_Contains_499__MethodInfo); DO_APP_FUNC(0x00F28540, bool, Array_InternalArray__ICollection_Contains_500, (Array * __this, SslApplicationProtocol item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BE48, Array_InternalArray__ICollection_Contains_500__MethodInfo); DO_APP_FUNC(0x00F286D0, bool, Array_InternalArray__ICollection_Contains_501, (Array * __this, SteamItemDef_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BE38, Array_InternalArray__ICollection_Contains_501__MethodInfo); DO_APP_FUNC(0x00F28800, bool, Array_InternalArray__ICollection_Contains_502, (Array * __this, SteamItemDetails_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BE70, Array_InternalArray__ICollection_Contains_502__MethodInfo); DO_APP_FUNC(0x00F28980, bool, Array_InternalArray__ICollection_Contains_503, (Array * __this, StylePropertyName item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BE60, Array_InternalArray__ICollection_Contains_503__MethodInfo); DO_APP_FUNC(0x00F28AC0, bool, Array_InternalArray__ICollection_Contains_504, (Array * __this, StylePropertyValue item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BE58, Array_InternalArray__ICollection_Contains_504__MethodInfo); DO_APP_FUNC(0x00F28C40, bool, Array_InternalArray__ICollection_Contains_505, (Array * __this, StyleSelectorPart item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BE50, Array_InternalArray__ICollection_Contains_505__MethodInfo); DO_APP_FUNC(0x00F28DE0, bool, Array_InternalArray__ICollection_Contains_506, (Array * __this, StyleSyntaxToken item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BE08, Array_InternalArray__ICollection_Contains_506__MethodInfo); DO_APP_FUNC(0x00F28F80, bool, Array_InternalArray__ICollection_Contains_507, (Array * __this, StyleValue item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BE00, Array_InternalArray__ICollection_Contains_507__MethodInfo); DO_APP_FUNC(0x00F29120, bool, Array_InternalArray__ICollection_Contains_508, (Array * __this, StyleValueHandle item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BDF8, Array_InternalArray__ICollection_Contains_508__MethodInfo); DO_APP_FUNC(0x00F29290, bool, Array_InternalArray__ICollection_Contains_509, (Array * __this, StyleValueManaged item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BDF0, Array_InternalArray__ICollection_Contains_509__MethodInfo); DO_APP_FUNC(0x00F29410, bool, Array_InternalArray__ICollection_Contains_510, (Array * __this, StyleVariable item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BE30, Array_InternalArray__ICollection_Contains_510__MethodInfo); DO_APP_FUNC(0x00F295B0, bool, Array_InternalArray__ICollection_Contains_511, (Array * __this, SubMeshDescriptor item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BE28, Array_InternalArray__ICollection_Contains_511__MethodInfo); DO_APP_FUNC(0x00F29770, bool, Array_InternalArray__ICollection_Contains_512, (Array * __this, Substring item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BE20, Array_InternalArray__ICollection_Contains_512__MethodInfo); DO_APP_FUNC(0x00F298B0, bool, Array_InternalArray__ICollection_Contains_513, (Array * __this, TMP_CharacterInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BE18, Array_InternalArray__ICollection_Contains_513__MethodInfo); DO_APP_FUNC(0x00F29B80, bool, Array_InternalArray__ICollection_Contains_514, (Array * __this, TMP_FontWeightPair item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BDC8, Array_InternalArray__ICollection_Contains_514__MethodInfo); DO_APP_FUNC(0x00F29D00, bool, Array_InternalArray__ICollection_Contains_515, (Array * __this, TMP_LineInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BDB8, Array_InternalArray__ICollection_Contains_515__MethodInfo); DO_APP_FUNC(0x00F29F10, bool, Array_InternalArray__ICollection_Contains_516, (Array * __this, TMP_LinkInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BDA8, Array_InternalArray__ICollection_Contains_516__MethodInfo); DO_APP_FUNC(0x00F2A0D0, bool, Array_InternalArray__ICollection_Contains_517, (Array * __this, TMP_MeshInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BDA0, Array_InternalArray__ICollection_Contains_517__MethodInfo); DO_APP_FUNC(0x00F2A2B0, bool, Array_InternalArray__ICollection_Contains_518, (Array * __this, TMP_PageInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BDE8, Array_InternalArray__ICollection_Contains_518__MethodInfo); DO_APP_FUNC(0x00F2A450, bool, Array_InternalArray__ICollection_Contains_519, (Array * __this, TMP_WordInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BDE0, Array_InternalArray__ICollection_Contains_519__MethodInfo); DO_APP_FUNC(0x00F2A5F0, bool, Array_InternalArray__ICollection_Contains_520, (Array * __this, TerrainTileCoord item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BDD8, Array_InternalArray__ICollection_Contains_520__MethodInfo); DO_APP_FUNC(0x00F2A760, bool, Array_InternalArray__ICollection_Contains_521, (Array * __this, TextElementInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BDD0, Array_InternalArray__ICollection_Contains_521__MethodInfo); DO_APP_FUNC(0x00F2AA10, bool, Array_InternalArray__ICollection_Contains_522, (Array * __this, TextShadow item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BD70, Array_InternalArray__ICollection_Contains_522__MethodInfo); DO_APP_FUNC(0x00F2AB70, bool, Array_InternalArray__ICollection_Contains_523, (Array * __this, TextVertex_1 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BD68, Array_InternalArray__ICollection_Contains_523__MethodInfo); DO_APP_FUNC(0x00F2AD10, bool, Array_InternalArray__ICollection_Contains_524, (Array * __this, TextureHandle item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BD60, Array_InternalArray__ICollection_Contains_524__MethodInfo); DO_APP_FUNC(0x00F2AE90, bool, Array_InternalArray__ICollection_Contains_525, (Array * __this, TextureId item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BD98, Array_InternalArray__ICollection_Contains_525__MethodInfo); DO_APP_FUNC(0x00F2B000, bool, Array_InternalArray__ICollection_Contains_526, (Array * __this, TileData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BD88, Array_InternalArray__ICollection_Contains_526__MethodInfo); DO_APP_FUNC(0x00F2B1F0, bool, Array_InternalArray__ICollection_Contains_527, (Array * __this, TimeSpan item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BD48, Array_InternalArray__ICollection_Contains_527__MethodInfo); DO_APP_FUNC(0x00F2B360, bool, Array_InternalArray__ICollection_Contains_528, (Array * __this, TimeValue item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BD40, Array_InternalArray__ICollection_Contains_528__MethodInfo); DO_APP_FUNC(0x00F2B490, bool, Array_InternalArray__ICollection_Contains_529, (Array * __this, Touch item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BD38, Array_InternalArray__ICollection_Contains_529__MethodInfo); DO_APP_FUNC(0x00F2B670, bool, Array_InternalArray__ICollection_Contains_530, (Array * __this, Touch_1 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BD58, Array_InternalArray__ICollection_Contains_530__MethodInfo); DO_APP_FUNC(0x00F2B800, bool, Array_InternalArray__ICollection_Contains_531, (Array * __this, TrackableId item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BD00, Array_InternalArray__ICollection_Contains_531__MethodInfo); DO_APP_FUNC(0x00F2B990, bool, Array_InternalArray__ICollection_Contains_532, (Array * __this, Transform3x4 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BCF8, Array_InternalArray__ICollection_Contains_532__MethodInfo); DO_APP_FUNC(0x00F2BB50, bool, Array_InternalArray__ICollection_Contains_533, (Array * __this, TransformOrigin item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BCE8, Array_InternalArray__ICollection_Contains_533__MethodInfo); DO_APP_FUNC(0x00F2BCA0, bool, Array_InternalArray__ICollection_Contains_534, (Array * __this, Translate_1 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BD28, Array_InternalArray__ICollection_Contains_534__MethodInfo); DO_APP_FUNC(0x00F2BE00, bool, Array_InternalArray__ICollection_Contains_535, (Array * __this, TreeInstance item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BD20, Array_InternalArray__ICollection_Contains_535__MethodInfo); DO_APP_FUNC(0x00F2BFC0, bool, Array_InternalArray__ICollection_Contains_536, (Array * __this, TreeItem item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BD18, Array_InternalArray__ICollection_Contains_536__MethodInfo); DO_APP_FUNC(0x00F2C140, bool, Array_InternalArray__ICollection_Contains_537, (Array * __this, TreeViewItemWrapper item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BD08, Array_InternalArray__ICollection_Contains_537__MethodInfo); DO_APP_FUNC(0x00F2C2E0, bool, Array_InternalArray__ICollection_Contains_538, (Array * __this, TypeId item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BC98, Array_InternalArray__ICollection_Contains_538__MethodInfo); DO_APP_FUNC(0x00F2C410, bool, Array_InternalArray__ICollection_Contains_539, (Array * __this, TypeWrapper item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BC88, Array_InternalArray__ICollection_Contains_539__MethodInfo); DO_APP_FUNC(0x00F2C5A0, bool, Array_InternalArray__ICollection_Contains_540, (Array * __this, UICharInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BC78, Array_InternalArray__ICollection_Contains_540__MethodInfo); DO_APP_FUNC(0x00F2C730, bool, Array_InternalArray__ICollection_Contains_541, (Array * __this, UILineInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BC68, Array_InternalArray__ICollection_Contains_541__MethodInfo); DO_APP_FUNC(0x00F2C8B0, bool, Array_InternalArray__ICollection_Contains_542, (Array * __this, UIVertex item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BCD8, Array_InternalArray__ICollection_Contains_542__MethodInfo); DO_APP_FUNC(0x00F2CAD0, bool, Array_InternalArray__ICollection_Contains_543, (Array * __this, uint16_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BCC8, Array_InternalArray__ICollection_Contains_543__MethodInfo); DO_APP_FUNC(0x00F2CC00, bool, Array_InternalArray__ICollection_Contains_544, (Array * __this, UInt16Enum__Enum item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BCB8, Array_InternalArray__ICollection_Contains_544__MethodInfo); DO_APP_FUNC(0x00F2CD70, bool, Array_InternalArray__ICollection_Contains_545, (Array * __this, uint32_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BCA8, Array_InternalArray__ICollection_Contains_545__MethodInfo); DO_APP_FUNC(0x00F2CEA0, bool, Array_InternalArray__ICollection_Contains_546, (Array * __this, UInt32Enum__Enum item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BC30, Array_InternalArray__ICollection_Contains_546__MethodInfo); DO_APP_FUNC(0x00F2D010, bool, Array_InternalArray__ICollection_Contains_547, (Array * __this, uint64_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BC28, Array_InternalArray__ICollection_Contains_547__MethodInfo); DO_APP_FUNC(0x00F2D140, bool, Array_InternalArray__ICollection_Contains_548, (Array * __this, UVTexture item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BC20, Array_InternalArray__ICollection_Contains_548__MethodInfo); DO_APP_FUNC(0x00F2D2E0, bool, Array_InternalArray__ICollection_Contains_549, (Array * __this, UdpChannelName item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BC18, Array_InternalArray__ICollection_Contains_549__MethodInfo); DO_APP_FUNC(0x00F2D460, bool, Array_InternalArray__ICollection_Contains_550, (Array * __this, UdpEndPoint item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BC48, Array_InternalArray__ICollection_Contains_550__MethodInfo); DO_APP_FUNC(0x00F2D610, bool, Array_InternalArray__ICollection_Contains_551, (Array * __this, UdpEvent item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BC38, Array_InternalArray__ICollection_Contains_551__MethodInfo); DO_APP_FUNC(0x00F2D7B0, bool, Array_InternalArray__ICollection_Contains_552, (Array * __this, UdpIPv4Address item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BBE0, Array_InternalArray__ICollection_Contains_552__MethodInfo); DO_APP_FUNC(0x00F2D920, bool, Array_InternalArray__ICollection_Contains_553, (Array * __this, UdpPipeHandle item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BBD0, Array_InternalArray__ICollection_Contains_553__MethodInfo); DO_APP_FUNC(0x00F2DAA0, bool, Array_InternalArray__ICollection_Contains_554, (Array * __this, UniqueId item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BC08, Array_InternalArray__ICollection_Contains_554__MethodInfo); DO_APP_FUNC(0x00F2DBE0, bool, Array_InternalArray__ICollection_Contains_555, (Array * __this, UsageHint item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BC00, Array_InternalArray__ICollection_Contains_555__MethodInfo); DO_APP_FUNC(0x00F2DD50, bool, Array_InternalArray__ICollection_Contains_556, (Array * __this, User item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BBF8, Array_InternalArray__ICollection_Contains_556__MethodInfo); DO_APP_FUNC(0x00F2DF10, bool, Array_InternalArray__ICollection_Contains_557, (Array * __this, ValueWebSocketReceiveResult item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BBE8, Array_InternalArray__ICollection_Contains_557__MethodInfo); DO_APP_FUNC(0x00F2E080, bool, Array_InternalArray__ICollection_Contains_558, (Array * __this, Vector2 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BB90, Array_InternalArray__ICollection_Contains_558__MethodInfo); DO_APP_FUNC(0x00F2E1A0, bool, Array_InternalArray__ICollection_Contains_559, (Array * __this, Vector2Int item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BB80, Array_InternalArray__ICollection_Contains_559__MethodInfo); DO_APP_FUNC(0x00F2E2C0, bool, Array_InternalArray__ICollection_Contains_560, (Array * __this, Vector3 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BB70, Array_InternalArray__ICollection_Contains_560__MethodInfo); DO_APP_FUNC(0x00F2E400, bool, Array_InternalArray__ICollection_Contains_561, (Array * __this, Vector3Int item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BB60, Array_InternalArray__ICollection_Contains_561__MethodInfo); DO_APP_FUNC(0x00F2E540, bool, Array_InternalArray__ICollection_Contains_562, (Array * __this, Vector3_Array2D item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BBC8, Array_InternalArray__ICollection_Contains_562__MethodInfo); DO_APP_FUNC(0x00F2E6B0, bool, Array_InternalArray__ICollection_Contains_563, (Array * __this, Vector4 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BBC0, Array_InternalArray__ICollection_Contains_563__MethodInfo); DO_APP_FUNC(0x00F2E7E0, bool, Array_InternalArray__ICollection_Contains_564, (Array * __this, VectorImageVertex item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BBB0, Array_InternalArray__ICollection_Contains_564__MethodInfo); DO_APP_FUNC(0x00F2E9A0, bool, Array_InternalArray__ICollection_Contains_565, (Array * __this, Vertex item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BBA0, Array_InternalArray__ICollection_Contains_565__MethodInfo); DO_APP_FUNC(0x00F2EB70, bool, Array_InternalArray__ICollection_Contains_566, (Array * __this, VertexAttributeDescriptor item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BB30, Array_InternalArray__ICollection_Contains_566__MethodInfo); DO_APP_FUNC(0x00F2ECB0, bool, Array_InternalArray__ICollection_Contains_567, (Array * __this, ViewConfiguration item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BB20, Array_InternalArray__ICollection_Contains_567__MethodInfo); DO_APP_FUNC(0x00F2EE50, bool, Array_InternalArray__ICollection_Contains_568, (Array * __this, VoicePacket item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BB18, Array_InternalArray__ICollection_Contains_568__MethodInfo); DO_APP_FUNC(0x00F2F030, bool, Array_InternalArray__ICollection_Contains_569, (Array * __this, VoxelCell item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BB10, Array_InternalArray__ICollection_Contains_569__MethodInfo); DO_APP_FUNC(0x00F2F1A0, bool, Array_InternalArray__ICollection_Contains_570, (Array * __this, VoxelContour item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BB50, Array_InternalArray__ICollection_Contains_570__MethodInfo); DO_APP_FUNC(0x00F2F330, bool, Array_InternalArray__ICollection_Contains_571, (Array * __this, Win32_IP_ADAPTER_ADDRESSES item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BB48, Array_InternalArray__ICollection_Contains_571__MethodInfo); DO_APP_FUNC(0x00F2F5A0, bool, Array_InternalArray__ICollection_Contains_572, (Array * __this, Win32_IP_ADAPTER_INFO item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BB40, Array_InternalArray__ICollection_Contains_572__MethodInfo); DO_APP_FUNC(0x00F2F7F0, bool, Array_InternalArray__ICollection_Contains_573, (Array * __this, Win32_IP_ADDR_STRING item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BB38, Array_InternalArray__ICollection_Contains_573__MethodInfo); DO_APP_FUNC(0x00F2F980, bool, Array_InternalArray__ICollection_Contains_574, (Array * __this, WordInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BAF8, Array_InternalArray__ICollection_Contains_574__MethodInfo); DO_APP_FUNC(0x00F2FB10, bool, Array_InternalArray__ICollection_Contains_575, (Array * __this, WordWrapState item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BAF0, Array_InternalArray__ICollection_Contains_575__MethodInfo); DO_APP_FUNC(0x00F2FDE0, bool, Array_InternalArray__ICollection_Contains_576, (Array * __this, X509ChainStatus item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BAE8, Array_InternalArray__ICollection_Contains_576__MethodInfo); DO_APP_FUNC(0x00F2FF60, bool, Array_InternalArray__ICollection_Contains_577, (Array * __this, XPathNode item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BAE0, Array_InternalArray__ICollection_Contains_577__MethodInfo); DO_APP_FUNC(0x00F300F0, bool, Array_InternalArray__ICollection_Contains_578, (Array * __this, XPathNodeRef item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BB08, Array_InternalArray__ICollection_Contains_578__MethodInfo); DO_APP_FUNC(0x00F30270, bool, Array_InternalArray__ICollection_Contains_579, (Array * __this, XRAnchor item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BB00, Array_InternalArray__ICollection_Contains_579__MethodInfo); DO_APP_FUNC(0x00F30460, bool, Array_InternalArray__ICollection_Contains_580, (Array * __this, XRFeatureDescriptor item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BAB8, Array_InternalArray__ICollection_Contains_580__MethodInfo); DO_APP_FUNC(0x00F30600, bool, Array_InternalArray__ICollection_Contains_581, (Array * __this, XRNodeState item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BAB0, Array_InternalArray__ICollection_Contains_581__MethodInfo); DO_APP_FUNC(0x00F307F0, bool, Array_InternalArray__ICollection_Contains_582, (Array * __this, XRRaycast item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BAD8, Array_InternalArray__ICollection_Contains_582__MethodInfo); DO_APP_FUNC(0x00F309D0, bool, Array_InternalArray__ICollection_Contains_583, (Array * __this, XmlTagAttribute item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BAD0, Array_InternalArray__ICollection_Contains_583__MethodInfo); DO_APP_FUNC(0x00F30B70, bool, Array_InternalArray__ICollection_Contains_584, (Array * __this, aOHEnKCFymegycPegEXPFUjlaUPpA item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BAC8, Array_InternalArray__ICollection_Contains_584__MethodInfo); DO_APP_FUNC(0x00F30CF0, bool, Array_InternalArray__ICollection_Contains_585, (Array * __this, aQHgSHeigtcamfIWbNaiXaCiVwuq item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BAC0, Array_InternalArray__ICollection_Contains_585__MethodInfo); DO_APP_FUNC(0x00F30E50, bool, Array_InternalArray__ICollection_Contains_586, (Array * __this, jvalue item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BA80, Array_InternalArray__ICollection_Contains_586__MethodInfo); DO_APP_FUNC(0x00F30FC0, bool, Array_InternalArray__ICollection_Contains_587, (Array * __this, tSPvxZUJjzaTiAEejeAOLKctGpmKA item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BA78, Array_InternalArray__ICollection_Contains_587__MethodInfo); DO_APP_FUNC(0x00F31140, bool, Array_InternalArray__ICollection_Contains_588, (Array * __this, yUgrsNEvLzxrXGzkHTUPIBJYGDah item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BA70, Array_InternalArray__ICollection_Contains_588__MethodInfo); DO_APP_FUNC(0x00F312C0, bool, Array_InternalArray__ICollection_Contains_589, (Array * __this, AIObjectPool_PreloadedPrefab item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BA68, Array_InternalArray__ICollection_Contains_589__MethodInfo); DO_APP_FUNC(0x00F31440, bool, Array_InternalArray__ICollection_Contains_590, (Array * __this, AdvancedSmooth_Turn item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BAA8, Array_InternalArray__ICollection_Contains_590__MethodInfo); DO_APP_FUNC(0x00F315C0, bool, Array_InternalArray__ICollection_Contains_591, (Array * __this, Agent_VO item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BAA0, Array_InternalArray__ICollection_Contains_591__MethodInfo); DO_APP_FUNC(0x00F317D0, bool, Array_InternalArray__ICollection_Contains_592, (Array * __this, AnimationOutputWeightProcessor_WeightInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BA90, Array_InternalArray__ICollection_Contains_592__MethodInfo); DO_APP_FUNC(0x00F31990, bool, Array_InternalArray__ICollection_Contains_593, (Array * __this, AstarDebugger_GraphPoint item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BA88, Array_InternalArray__ICollection_Contains_593__MethodInfo); DO_APP_FUNC(0x00F31B20, bool, Array_InternalArray__ICollection_Contains_594, (Array * __this, AstarDebugger_PathTypeDebug item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BA30, Array_InternalArray__ICollection_Contains_594__MethodInfo); DO_APP_FUNC(0x00F31CC0, bool, Array_InternalArray__ICollection_Contains_595, (Array * __this, AtlasAllocatorDynamic_AtlasNode item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BA28, Array_InternalArray__ICollection_Contains_595__MethodInfo); DO_APP_FUNC(0x00F31E50, bool, Array_InternalArray__ICollection_Contains_596, (Array * __this, AttributeCollection_AttributeEntry item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BA20, Array_InternalArray__ICollection_Contains_596__MethodInfo); DO_APP_FUNC(0x00F31FD0, bool, Array_InternalArray__ICollection_Contains_597, (Array * __this, BBTree_BBTreeBox item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BA18, Array_InternalArray__ICollection_Contains_597__MethodInfo); DO_APP_FUNC(0x00F32190, bool, Array_InternalArray__ICollection_Contains_598, (Array * __this, BaseStyleMatcher_MatchContext item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BA60, Array_InternalArray__ICollection_Contains_598__MethodInfo); DO_APP_FUNC(0x00F32300, bool, Array_InternalArray__ICollection_Contains_599, (Array * __this, BeforeRenderHelper_OrderBlock item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BA50, Array_InternalArray__ICollection_Contains_599__MethodInfo); DO_APP_FUNC(0x00F32480, bool, Array_InternalArray__ICollection_Contains_600, (Array * __this, BehaviourPuppet_CollisionResistanceMultiplier item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BA40, Array_InternalArray__ICollection_Contains_600__MethodInfo); DO_APP_FUNC(0x00F32610, bool, Array_InternalArray__ICollection_Contains_601, (Array * __this, BehaviourPuppet_MusclePropsGroup item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BA38, Array_InternalArray__ICollection_Contains_601__MethodInfo); DO_APP_FUNC(0x00F327F0, bool, Array_InternalArray__ICollection_Contains_602, (Array * __this, BinaryHeap_Tuple item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B9E0, Array_InternalArray__ICollection_Contains_602__MethodInfo); DO_APP_FUNC(0x00F32970, bool, Array_InternalArray__ICollection_Contains_603, (Array * __this, BitmapAllocator32_Page item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B9D0, Array_InternalArray__ICollection_Contains_603__MethodInfo); DO_APP_FUNC(0x00F32AE0, bool, Array_InternalArray__ICollection_Contains_604, (Array * __this, BloomRenderer_Level item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B9C0, Array_InternalArray__ICollection_Contains_604__MethodInfo); DO_APP_FUNC(0x00F32C50, bool, Array_InternalArray__ICollection_Contains_605, (Array * __this, BoltConsole_Line item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B9B0, Array_InternalArray__ICollection_Contains_605__MethodInfo); DO_APP_FUNC(0x00F32DF0, bool, Array_InternalArray__ICollection_Contains_606, (Array * __this, BoltProtocolTokenRegistry_TokenRegistry item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BA10, Array_InternalArray__ICollection_Contains_606__MethodInfo); DO_APP_FUNC(0x00F32F70, bool, Array_InternalArray__ICollection_Contains_607, (Array * __this, CalendricalCalculationsHelper_EphemerisCorrectionAlgorithmMap item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BA00, Array_InternalArray__ICollection_Contains_607__MethodInfo); DO_APP_FUNC(0x00F330E0, bool, Array_InternalArray__ICollection_Contains_608, (Array * __this, Camera_RenderRequest item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B9F8, Array_InternalArray__ICollection_Contains_608__MethodInfo); DO_APP_FUNC(0x00F33280, bool, Array_InternalArray__ICollection_Contains_609, (Array * __this, CameraState_CustomBlendable item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B9F0, Array_InternalArray__ICollection_Contains_609__MethodInfo); DO_APP_FUNC(0x00F33400, bool, Array_InternalArray__ICollection_Contains_610, (Array * __this, CharacterFootEffects_Foot item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B970, Array_InternalArray__ICollection_Contains_610__MethodInfo); DO_APP_FUNC(0x00F33580, bool, Array_InternalArray__ICollection_Contains_611, (Array * __this, CinemachineBlendListCamera_Instruction item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B968, Array_InternalArray__ICollection_Contains_611__MethodInfo); DO_APP_FUNC(0x00F33710, bool, Array_InternalArray__ICollection_Contains_612, (Array * __this, CinemachineBlenderSettings_CustomBlend item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B958, Array_InternalArray__ICollection_Contains_612__MethodInfo); DO_APP_FUNC(0x00F338A0, bool, Array_InternalArray__ICollection_Contains_613, (Array * __this, CinemachineClearShot_Pair item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B948, Array_InternalArray__ICollection_Contains_613__MethodInfo); DO_APP_FUNC(0x00F33A10, bool, Array_InternalArray__ICollection_Contains_614, (Array * __this, CinemachineFreeLook_Orbit item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B9A8, Array_InternalArray__ICollection_Contains_614__MethodInfo); DO_APP_FUNC(0x00F33B80, bool, Array_InternalArray__ICollection_Contains_615, (Array * __this, CinemachinePath_Waypoint item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B998, Array_InternalArray__ICollection_Contains_615__MethodInfo); DO_APP_FUNC(0x00F33D40, bool, Array_InternalArray__ICollection_Contains_616, (Array * __this, CinemachineSmoothPath_Waypoint item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B988, Array_InternalArray__ICollection_Contains_616__MethodInfo); DO_APP_FUNC(0x00F33EB0, bool, Array_InternalArray__ICollection_Contains_617, (Array * __this, CinemachineStateDrivenCamera_HashPair item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B980, Array_InternalArray__ICollection_Contains_617__MethodInfo); DO_APP_FUNC(0x00F34020, bool, Array_InternalArray__ICollection_Contains_618, (Array * __this, CinemachineStateDrivenCamera_Instruction item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B8F8, Array_InternalArray__ICollection_Contains_618__MethodInfo); DO_APP_FUNC(0x00F341C0, bool, Array_InternalArray__ICollection_Contains_619, (Array * __this, CinemachineStateDrivenCamera_ParentHash item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B8E8, Array_InternalArray__ICollection_Contains_619__MethodInfo); DO_APP_FUNC(0x00F34330, bool, Array_InternalArray__ICollection_Contains_620, (Array * __this, CinemachineTargetGroup_Target item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B8E0, Array_InternalArray__ICollection_Contains_620__MethodInfo); DO_APP_FUNC(0x00F344B0, bool, Array_InternalArray__ICollection_Contains_621, (Array * __this, ClipperLib_DoublePoint item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B8D8, Array_InternalArray__ICollection_Contains_621__MethodInfo); DO_APP_FUNC(0x00F34640, bool, Array_InternalArray__ICollection_Contains_622, (Array * __this, ClipperLib_IntPoint item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B938, Array_InternalArray__ICollection_Contains_622__MethodInfo); DO_APP_FUNC(0x00F34780, bool, Array_InternalArray__ICollection_Contains_623, (Array * __this, CodePointIndexer_TableRange item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B928, Array_InternalArray__ICollection_Contains_623__MethodInfo); DO_APP_FUNC(0x00F34920, bool, Array_InternalArray__ICollection_Contains_624, (Array * __this, ComboTimeout_ComboInputElement item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B918, Array_InternalArray__ICollection_Contains_624__MethodInfo); DO_APP_FUNC(0x00F34AA0, bool, Array_InternalArray__ICollection_Contains_625, (Array * __this, ConfinerOven_PolygonSolution item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B908, Array_InternalArray__ICollection_Contains_625__MethodInfo); DO_APP_FUNC(0x00F34C20, bool, Array_InternalArray__ICollection_Contains_626, (Array * __this, ContentCatalogData_Bucket item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B8A8, Array_InternalArray__ICollection_Contains_626__MethodInfo); DO_APP_FUNC(0x00F34DA0, bool, Array_InternalArray__ICollection_Contains_627, (Array * __this, ContextFlagsAdapterPal_ContextFlagMapping item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B8A0, Array_InternalArray__ICollection_Contains_627__MethodInfo); DO_APP_FUNC(0x00F34F10, bool, Array_InternalArray__ICollection_Contains_628, (Array * __this, CookieTokenizer_RecognizedAttribute item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B890, Array_InternalArray__ICollection_Contains_628__MethodInfo); DO_APP_FUNC(0x00F35090, bool, Array_InternalArray__ICollection_Contains_629, (Array * __this, CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B880, Array_InternalArray__ICollection_Contains_629__MethodInfo); DO_APP_FUNC(0x00F35220, bool, Array_InternalArray__ICollection_Contains_630, (Array * __this, DamageIndicatorMonitor_DamageIndicator item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B8C8, Array_InternalArray__ICollection_Contains_630__MethodInfo); DO_APP_FUNC(0x00F35400, bool, Array_InternalArray__ICollection_Contains_631, (Array * __this, DelayedActionManager_DelegateInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B8C0, Array_InternalArray__ICollection_Contains_631__MethodInfo); DO_APP_FUNC(0x00F35590, bool, Array_InternalArray__ICollection_Contains_632, (Array * __this, DynamicResolutionHandler_ScalerContainer item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B8B8, Array_InternalArray__ICollection_Contains_632__MethodInfo); DO_APP_FUNC(0x00F35710, bool, Array_InternalArray__ICollection_Contains_633, (Array * __this, EventDispatcher_CallbackWrapper item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B8B0, Array_InternalArray__ICollection_Contains_633__MethodInfo); DO_APP_FUNC(0x00F35890, bool, Array_InternalArray__ICollection_Contains_634, (Array * __this, EventDispatcher_EventListener item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B840, Array_InternalArray__ICollection_Contains_634__MethodInfo); DO_APP_FUNC(0x00F35A30, bool, Array_InternalArray__ICollection_Contains_635, (Array * __this, EventDispatcher_DispatchContext item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B830, Array_InternalArray__ICollection_Contains_635__MethodInfo); DO_APP_FUNC(0x00F35BB0, bool, Array_InternalArray__ICollection_Contains_636, (Array * __this, EventDispatcher_EventRecord item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B820, Array_InternalArray__ICollection_Contains_636__MethodInfo); DO_APP_FUNC(0x00F35D30, bool, Array_InternalArray__ICollection_Contains_637, (Array * __this, EventQueue_NetworkEvent item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B810, Array_InternalArray__ICollection_Contains_637__MethodInfo); DO_APP_FUNC(0x00F35F70, bool, Array_InternalArray__ICollection_Contains_638, (Array * __this, EventReliableRecvBuffer_Node item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B870, Array_InternalArray__ICollection_Contains_638__MethodInfo); DO_APP_FUNC(0x00F36110, bool, Array_InternalArray__ICollection_Contains_639, (Array * __this, EventReliableSendBuffer_Node item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B868, Array_InternalArray__ICollection_Contains_639__MethodInfo); DO_APP_FUNC(0x00F362B0, bool, Array_InternalArray__ICollection_Contains_640, (Array * __this, FocusController_FocusedElement item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B860, Array_InternalArray__ICollection_Contains_640__MethodInfo); DO_APP_FUNC(0x00F36430, bool, Array_InternalArray__ICollection_Contains_641, (Array * __this, Funnel_PathPart item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B850, Array_InternalArray__ICollection_Contains_641__MethodInfo); DO_APP_FUNC(0x00F365E0, bool, Array_InternalArray__ICollection_Contains_642, (Array * __this, GraphUpdateProcessor_GUOSingle item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B7E8, Array_InternalArray__ICollection_Contains_642__MethodInfo); DO_APP_FUNC(0x00F36780, bool, Array_InternalArray__ICollection_Contains_643, (Array * __this, HID_HIDCollectionDescriptor item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B7E0, Array_InternalArray__ICollection_Contains_643__MethodInfo); DO_APP_FUNC(0x00F36920, bool, Array_InternalArray__ICollection_Contains_644, (Array * __this, HID_HIDElementDescriptor item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B7D8, Array_InternalArray__ICollection_Contains_644__MethodInfo); DO_APP_FUNC(0x00F36B00, bool, Array_InternalArray__ICollection_Contains_645, (Array * __this, HIDParser_HIDReportData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B7D0, Array_InternalArray__ICollection_Contains_645__MethodInfo); DO_APP_FUNC(0x00F36C90, bool, Array_InternalArray__ICollection_Contains_646, (Array * __this, HIDSupport_HIDPageUsage item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B808, Array_InternalArray__ICollection_Contains_646__MethodInfo); DO_APP_FUNC(0x00F36E00, bool, Array_InternalArray__ICollection_Contains_647, (Array * __this, HIDTouchpad_TouchData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B800, Array_InternalArray__ICollection_Contains_647__MethodInfo); DO_APP_FUNC(0x00F36FB0, bool, Array_InternalArray__ICollection_Contains_648, (Array * __this, HairDesignerColliderBase_DualSphere item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B7F8, Array_InternalArray__ICollection_Contains_648__MethodInfo); DO_APP_FUNC(0x00F37160, bool, Array_InternalArray__ICollection_Contains_649, (Array * __this, HairDesignerGeneratorAdvancedFurBase_DualSphereCollider item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B7F0, Array_InternalArray__ICollection_Contains_649__MethodInfo); DO_APP_FUNC(0x00F372F0, bool, Array_InternalArray__ICollection_Contains_650, (Array * __this, HairDesignerGeneratorAdvancedFurBase_SkinData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B798, Array_InternalArray__ICollection_Contains_650__MethodInfo); DO_APP_FUNC(0x00F37480, bool, Array_InternalArray__ICollection_Contains_651, (Array * __this, HairDesignerGeneratorFurShellBase_BufferData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B790, Array_InternalArray__ICollection_Contains_651__MethodInfo); DO_APP_FUNC(0x00F375F0, bool, Array_InternalArray__ICollection_Contains_652, (Array * __this, HairDesignerGeneratorFurShellBase_SkinData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B788, Array_InternalArray__ICollection_Contains_652__MethodInfo); DO_APP_FUNC(0x00F37780, bool, Array_InternalArray__ICollection_Contains_653, (Array * __this, Hammersley_Hammersley2dSeq16 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B780, Array_InternalArray__ICollection_Contains_653__MethodInfo); DO_APP_FUNC(0x00F379D0, bool, Array_InternalArray__ICollection_Contains_654, (Array * __this, Hammersley_Hammersley2dSeq256 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B7C8, Array_InternalArray__ICollection_Contains_654__MethodInfo); DO_APP_FUNC(0x00F37BB0, bool, Array_InternalArray__ICollection_Contains_655, (Array * __this, Hammersley_Hammersley2dSeq32 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B7B8, Array_InternalArray__ICollection_Contains_655__MethodInfo); DO_APP_FUNC(0x00F37E00, bool, Array_InternalArray__ICollection_Contains_656, (Array * __this, Hammersley_Hammersley2dSeq64 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B7A8, Array_InternalArray__ICollection_Contains_656__MethodInfo); DO_APP_FUNC(0x00F38050, bool, Array_InternalArray__ICollection_Contains_657, (Array * __this, Hashtable_bucket item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B7A0, Array_InternalArray__ICollection_Contains_657__MethodInfo); DO_APP_FUNC(0x00F381F0, bool, Array_InternalArray__ICollection_Contains_658, (Array * __this, HeadingTracker_Item item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B758, Array_InternalArray__ICollection_Contains_658__MethodInfo); DO_APP_FUNC(0x00F38390, bool, Array_InternalArray__ICollection_Contains_659, (Array * __this, HealthFlashMonitor_Flash item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B748, Array_InternalArray__ICollection_Contains_659__MethodInfo); DO_APP_FUNC(0x00F38550, bool, Array_InternalArray__ICollection_Contains_660, (Array * __this, HebrewNumber_HebrewValue item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B740, Array_InternalArray__ICollection_Contains_660__MethodInfo); DO_APP_FUNC(0x00F386B0, bool, Array_InternalArray__ICollection_Contains_661, (Array * __this, InputActionMap_BindingJson item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B738, Array_InternalArray__ICollection_Contains_661__MethodInfo); DO_APP_FUNC(0x00F38890, bool, Array_InternalArray__ICollection_Contains_662, (Array * __this, InputActionMap_BindingOverrideJson item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B778, Array_InternalArray__ICollection_Contains_662__MethodInfo); DO_APP_FUNC(0x00F38A50, bool, Array_InternalArray__ICollection_Contains_663, (Array * __this, InputActionMap_ReadActionJson item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B770, Array_InternalArray__ICollection_Contains_663__MethodInfo); DO_APP_FUNC(0x00F38C30, bool, Array_InternalArray__ICollection_Contains_664, (Array * __this, InputActionMap_ReadMapJson item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B768, Array_InternalArray__ICollection_Contains_664__MethodInfo); DO_APP_FUNC(0x00F38DC0, bool, Array_InternalArray__ICollection_Contains_665, (Array * __this, InputActionMap_WriteActionJson item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B760, Array_InternalArray__ICollection_Contains_665__MethodInfo); DO_APP_FUNC(0x00F38FA0, bool, Array_InternalArray__ICollection_Contains_666, (Array * __this, InputActionMap_WriteMapJson item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B710, Array_InternalArray__ICollection_Contains_666__MethodInfo); DO_APP_FUNC(0x00F39130, bool, Array_InternalArray__ICollection_Contains_667, (Array * __this, InputActionRebindingExtensions_Parameter item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B700, Array_InternalArray__ICollection_Contains_667__MethodInfo); DO_APP_FUNC(0x00F392D0, bool, Array_InternalArray__ICollection_Contains_668, (Array * __this, InputActionRebindingExtensions_ParameterOverride item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B6F8, Array_InternalArray__ICollection_Contains_668__MethodInfo); DO_APP_FUNC(0x00F39500, bool, Array_InternalArray__ICollection_Contains_669, (Array * __this, InputActionTrace_ActionEventPtr item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B6F0, Array_InternalArray__ICollection_Contains_669__MethodInfo); DO_APP_FUNC(0x00F39680, bool, Array_InternalArray__ICollection_Contains_670, (Array * __this, InputBindingCompositeContext_PartBinding item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B730, Array_InternalArray__ICollection_Contains_670__MethodInfo); DO_APP_FUNC(0x00F39800, bool, Array_InternalArray__ICollection_Contains_671, (Array * __this, InputControlLayout_ControlItem item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B728, Array_InternalArray__ICollection_Contains_671__MethodInfo); DO_APP_FUNC(0x00F39AA0, bool, Array_InternalArray__ICollection_Contains_672, (Array * __this, InputControlPath_ParsedPathComponent item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B720, Array_InternalArray__ICollection_Contains_672__MethodInfo); DO_APP_FUNC(0x00F39C80, bool, Array_InternalArray__ICollection_Contains_673, (Array * __this, InputControlScheme_DeviceRequirement item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B718, Array_InternalArray__ICollection_Contains_673__MethodInfo); DO_APP_FUNC(0x00F39DC0, bool, Array_InternalArray__ICollection_Contains_674, (Array * __this, InputControlScheme_SchemeJson item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B6B0, Array_InternalArray__ICollection_Contains_674__MethodInfo); DO_APP_FUNC(0x00F39F60, bool, Array_InternalArray__ICollection_Contains_675, (Array * __this, InputDevice_ControlBitRangeNode item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B6A0, Array_InternalArray__ICollection_Contains_675__MethodInfo); DO_APP_FUNC(0x00F3A100, bool, Array_InternalArray__ICollection_Contains_676, (Array * __this, InputEventTrace_DeviceInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B690, Array_InternalArray__ICollection_Contains_676__MethodInfo); DO_APP_FUNC(0x00F3A290, bool, Array_InternalArray__ICollection_Contains_677, (Array * __this, InputManager_AvailableDevice item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B680, Array_InternalArray__ICollection_Contains_677__MethodInfo); DO_APP_FUNC(0x00F3A470, bool, Array_InternalArray__ICollection_Contains_678, (Array * __this, InputManager_StateChangeMonitorListener item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B6E8, Array_InternalArray__ICollection_Contains_678__MethodInfo); DO_APP_FUNC(0x00F3A600, bool, Array_InternalArray__ICollection_Contains_679, (Array * __this, InputManager_StateChangeMonitorTimeout item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B6E0, Array_InternalArray__ICollection_Contains_679__MethodInfo); DO_APP_FUNC(0x00F3A7C0, bool, Array_InternalArray__ICollection_Contains_680, (Array * __this, InputManager_StateChangeMonitorsForDevice item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B6D0, Array_InternalArray__ICollection_Contains_680__MethodInfo); DO_APP_FUNC(0x00F3A9A0, bool, Array_InternalArray__ICollection_Contains_681, (Array * __this, InputRemoting_RemoteInputDevice item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B6C0, Array_InternalArray__ICollection_Contains_681__MethodInfo); DO_APP_FUNC(0x00F3AB80, bool, Array_InternalArray__ICollection_Contains_682, (Array * __this, InputRemoting_RemoteSender item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B658, Array_InternalArray__ICollection_Contains_682__MethodInfo); DO_APP_FUNC(0x00F3AD20, bool, Array_InternalArray__ICollection_Contains_683, (Array * __this, InputStateHistory_Record item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B650, Array_InternalArray__ICollection_Contains_683__MethodInfo); DO_APP_FUNC(0x00F3AE60, bool, Array_InternalArray__ICollection_Contains_684, (Array * __this, InputSystemUIInputModule_InputActionReferenceState item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B648, Array_InternalArray__ICollection_Contains_684__MethodInfo); DO_APP_FUNC(0x00F3AFD0, bool, Array_InternalArray__ICollection_Contains_685, (Array * __this, InputUser_OngoingAccountSelection item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B640, Array_InternalArray__ICollection_Contains_685__MethodInfo); DO_APP_FUNC(0x00F3B150, bool, Array_InternalArray__ICollection_Contains_686, (Array * __this, InputUser_UserData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B678, Array_InternalArray__ICollection_Contains_686__MethodInfo); DO_APP_FUNC(0x00F3B3F0, bool, Array_InternalArray__ICollection_Contains_687, (Array * __this, InternalTreeView_TreeViewItemWrapper item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B670, Array_InternalArray__ICollection_Contains_687__MethodInfo); DO_APP_FUNC(0x00F3B570, bool, Array_InternalArray__ICollection_Contains_688, (Array * __this, JSONDeserialization_TaskField item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B668, Array_InternalArray__ICollection_Contains_688__MethodInfo); DO_APP_FUNC(0x00F3B6F0, bool, Array_InternalArray__ICollection_Contains_689, (Array * __this, JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B660, Array_InternalArray__ICollection_Contains_689__MethodInfo); DO_APP_FUNC(0x00F3B870, bool, Array_InternalArray__ICollection_Contains_690, (Array * __this, JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B608, Array_InternalArray__ICollection_Contains_690__MethodInfo); DO_APP_FUNC(0x00F3BA50, bool, Array_InternalArray__ICollection_Contains_691, (Array * __this, JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B5F8, Array_InternalArray__ICollection_Contains_691__MethodInfo); DO_APP_FUNC(0x00F3BBD0, bool, Array_InternalArray__ICollection_Contains_692, (Array * __this, JsonParser_JsonValue item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B5F0, Array_InternalArray__ICollection_Contains_692__MethodInfo); DO_APP_FUNC(0x00F3BD70, bool, Array_InternalArray__ICollection_Contains_693, (Array * __this, LayerGridGraph_HeightSample item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B5E8, Array_InternalArray__ICollection_Contains_693__MethodInfo); DO_APP_FUNC(0x00F3BF50, bool, Array_InternalArray__ICollection_Contains_694, (Array * __this, Logs_LogMessage_1 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B638, Array_InternalArray__ICollection_Contains_694__MethodInfo); DO_APP_FUNC(0x00F3C0D0, bool, Array_InternalArray__ICollection_Contains_695, (Array * __this, Logs_LogMessage item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B630, Array_InternalArray__ICollection_Contains_695__MethodInfo); DO_APP_FUNC(0x00F3C250, bool, Array_InternalArray__ICollection_Contains_696, (Array * __this, MagicLightProbes_VolumeParameters item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B628, Array_InternalArray__ICollection_Contains_696__MethodInfo); DO_APP_FUNC(0x00F3C410, bool, Array_InternalArray__ICollection_Contains_697, (Array * __this, MailHeaderInfo_HeaderInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B618, Array_InternalArray__ICollection_Contains_697__MethodInfo); DO_APP_FUNC(0x00F3C5B0, bool, Array_InternalArray__ICollection_Contains_698, (Array * __this, MemberRelationshipService_RelationshipEntry item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B5C0, Array_InternalArray__ICollection_Contains_698__MethodInfo); DO_APP_FUNC(0x00F3C710, bool, Array_InternalArray__ICollection_Contains_699, (Array * __this, MemoryHelpers_BitRegion item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B5B8, Array_InternalArray__ICollection_Contains_699__MethodInfo); DO_APP_FUNC(0x00F3C880, bool, Array_InternalArray__ICollection_Contains_700, (Array * __this, MotionSolver_GPUNodeData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B5B0, Array_InternalArray__ICollection_Contains_700__MethodInfo); DO_APP_FUNC(0x00F3CA40, bool, Array_InternalArray__ICollection_Contains_701, (Array * __this, MotionSolver_GPUNodeInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B5A8, Array_InternalArray__ICollection_Contains_701__MethodInfo); DO_APP_FUNC(0x00F3CC20, bool, Array_InternalArray__ICollection_Contains_702, (Array * __this, MotionSolver_GPURootTransform item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B5E0, Array_InternalArray__ICollection_Contains_702__MethodInfo); DO_APP_FUNC(0x00F3CE80, bool, Array_InternalArray__ICollection_Contains_703, (Array * __this, MovingPlatform_Waypoint item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B5D8, Array_InternalArray__ICollection_Contains_703__MethodInfo); DO_APP_FUNC(0x00F3D010, bool, Array_InternalArray__ICollection_Contains_704, (Array * __this, NightmareStyling_WallMaterial item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B5D0, Array_InternalArray__ICollection_Contains_704__MethodInfo); DO_APP_FUNC(0x00F3D190, bool, Array_InternalArray__ICollection_Contains_705, (Array * __this, NoiseSettings_TransformNoiseParams item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B5C8, Array_InternalArray__ICollection_Contains_705__MethodInfo); DO_APP_FUNC(0x00F3D340, bool, Array_InternalArray__ICollection_Contains_706, (Array * __this, NolanBehaviour_OverlappedCollider item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B570, Array_InternalArray__ICollection_Contains_706__MethodInfo); DO_APP_FUNC(0x00F3D4C0, bool, Array_InternalArray__ICollection_Contains_707, (Array * __this, ObjectPoolBase_PreloadedPrefab item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B560, Array_InternalArray__ICollection_Contains_707__MethodInfo); DO_APP_FUNC(0x00F3D640, bool, Array_InternalArray__ICollection_Contains_708, (Array * __this, OnScreenControl_OnScreenDeviceInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B550, Array_InternalArray__ICollection_Contains_708__MethodInfo); DO_APP_FUNC(0x00F3D800, bool, Array_InternalArray__ICollection_Contains_709, (Array * __this, OpenXRInput_SerializedBinding item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B540, Array_InternalArray__ICollection_Contains_709__MethodInfo); DO_APP_FUNC(0x00F3D980, bool, Array_InternalArray__ICollection_Contains_710, (Array * __this, PackedPlayModeBuildLogs_RuntimeBuildLog item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B5A0, Array_InternalArray__ICollection_Contains_710__MethodInfo); DO_APP_FUNC(0x00F3DB00, bool, Array_InternalArray__ICollection_Contains_711, (Array * __this, ParameterizedStrings_FormatParam item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B598, Array_InternalArray__ICollection_Contains_711__MethodInfo); DO_APP_FUNC(0x00F3DC80, bool, Array_InternalArray__ICollection_Contains_712, (Array * __this, ParticleSystem_Particle item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B590, Array_InternalArray__ICollection_Contains_712__MethodInfo); DO_APP_FUNC(0x00F3DEC0, bool, Array_InternalArray__ICollection_Contains_713, (Array * __this, PlayerStatsController_Category item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B580, Array_InternalArray__ICollection_Contains_713__MethodInfo); DO_APP_FUNC(0x00F3E060, bool, Array_InternalArray__ICollection_Contains_714, (Array * __this, PointKDTree_Node item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B4F0, Array_InternalArray__ICollection_Contains_714__MethodInfo); DO_APP_FUNC(0x00F3E1E0, bool, Array_InternalArray__ICollection_Contains_715, (Array * __this, PointerDeviceState_PointerLocation item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B4E0, Array_InternalArray__ICollection_Contains_715__MethodInfo); DO_APP_FUNC(0x00F3E380, bool, Array_InternalArray__ICollection_Contains_716, (Array * __this, ProbeBrickIndex_Brick item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B4D0, Array_InternalArray__ICollection_Contains_716__MethodInfo); DO_APP_FUNC(0x00F3E500, bool, Array_InternalArray__ICollection_Contains_717, (Array * __this, ProbeBrickIndex_BrickMeta item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B4C8, Array_InternalArray__ICollection_Contains_717__MethodInfo); DO_APP_FUNC(0x00F3E680, bool, Array_InternalArray__ICollection_Contains_718, (Array * __this, ProbeBrickIndex_CellIndexUpdateInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B530, Array_InternalArray__ICollection_Contains_718__MethodInfo); DO_APP_FUNC(0x00F3E840, bool, Array_InternalArray__ICollection_Contains_719, (Array * __this, ProbeBrickIndex_ReservedBrick item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B520, Array_InternalArray__ICollection_Contains_719__MethodInfo); DO_APP_FUNC(0x00F3E9E0, bool, Array_InternalArray__ICollection_Contains_720, (Array * __this, ProbeBrickIndex_VoxelMeta item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B510, Array_InternalArray__ICollection_Contains_720__MethodInfo); DO_APP_FUNC(0x00F3EB60, bool, Array_InternalArray__ICollection_Contains_721, (Array * __this, ProbeBrickPool_BrickChunkAlloc item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B500, Array_InternalArray__ICollection_Contains_721__MethodInfo); DO_APP_FUNC(0x00F3ECF0, bool, Array_InternalArray__ICollection_Contains_722, (Array * __this, ProbeReferenceVolume_RegId item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B480, Array_InternalArray__ICollection_Contains_722__MethodInfo); DO_APP_FUNC(0x00F3EE20, bool, Array_InternalArray__ICollection_Contains_723, (Array * __this, ProbeReferenceVolume_Volume item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B478, Array_InternalArray__ICollection_Contains_723__MethodInfo); DO_APP_FUNC(0x00F3F000, bool, Array_InternalArray__ICollection_Contains_724, (Array * __this, ProbeVolumePerSceneData_SerializableAssetItem item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B470, Array_InternalArray__ICollection_Contains_724__MethodInfo); DO_APP_FUNC(0x00F3F180, bool, Array_InternalArray__ICollection_Contains_725, (Array * __this, ProbeVolumeSceneData_SerializableBoundItem item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B460, Array_InternalArray__ICollection_Contains_725__MethodInfo); DO_APP_FUNC(0x00F3F310, bool, Array_InternalArray__ICollection_Contains_726, (Array * __this, ProbeVolumeSceneData_SerializableHasPVItem item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B4C0, Array_InternalArray__ICollection_Contains_726__MethodInfo); DO_APP_FUNC(0x00F3F490, bool, Array_InternalArray__ICollection_Contains_727, (Array * __this, ProbeVolumeSceneData_SerializablePVBakeSettings item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B4B0, Array_InternalArray__ICollection_Contains_727__MethodInfo); DO_APP_FUNC(0x00F3F650, bool, Array_InternalArray__ICollection_Contains_728, (Array * __this, ProbeVolumeSceneData_SerializablePVProfile item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B4A0, Array_InternalArray__ICollection_Contains_728__MethodInfo); DO_APP_FUNC(0x00F3F7D0, bool, Array_InternalArray__ICollection_Contains_729, (Array * __this, ProtocolClient_AckCallback item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B490, Array_InternalArray__ICollection_Contains_729__MethodInfo); DO_APP_FUNC(0x00F3F990, bool, Array_InternalArray__ICollection_Contains_730, (Array * __this, ProtocolClient_MsgHandler item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B430, Array_InternalArray__ICollection_Contains_730__MethodInfo); DO_APP_FUNC(0x00F3FB50, bool, Array_InternalArray__ICollection_Contains_731, (Array * __this, RVOQuadtree_Node item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B428, Array_InternalArray__ICollection_Contains_731__MethodInfo); DO_APP_FUNC(0x00F3FCF0, bool, Array_InternalArray__ICollection_Contains_732, (Array * __this, Regex_CachedCodeEntryKey item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B420, Array_InternalArray__ICollection_Contains_732__MethodInfo); DO_APP_FUNC(0x00F3FE50, bool, Array_InternalArray__ICollection_Contains_733, (Array * __this, RegexCharClass_LowerCaseMapping item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B418, Array_InternalArray__ICollection_Contains_733__MethodInfo); DO_APP_FUNC(0x00F3FFE0, bool, Array_InternalArray__ICollection_Contains_734, (Array * __this, RegexCharClass_SingleRange item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B458, Array_InternalArray__ICollection_Contains_734__MethodInfo); DO_APP_FUNC(0x00F40140, bool, Array_InternalArray__ICollection_Contains_735, (Array * __this, RenderChain_RenderNodeData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B450, Array_InternalArray__ICollection_Contains_735__MethodInfo); DO_APP_FUNC(0x00F40330, bool, Array_InternalArray__ICollection_Contains_736, (Array * __this, RenderGraph_CompiledPassInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B448, Array_InternalArray__ICollection_Contains_736__MethodInfo); DO_APP_FUNC(0x00F40510, bool, Array_InternalArray__ICollection_Contains_737, (Array * __this, RenderGraph_CompiledResourceInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B440, Array_InternalArray__ICollection_Contains_737__MethodInfo); DO_APP_FUNC(0x00F406B0, bool, Array_InternalArray__ICollection_Contains_738, (Array * __this, RenderGraphDebugData_PassDebugData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B3E8, Array_InternalArray__ICollection_Contains_738__MethodInfo); DO_APP_FUNC(0x00F40840, bool, Array_InternalArray__ICollection_Contains_739, (Array * __this, RenderGraphDebugData_ResourceDebugData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B3E0, Array_InternalArray__ICollection_Contains_739__MethodInfo); DO_APP_FUNC(0x00F40A00, bool, Array_InternalArray__ICollection_Contains_740, (Array * __this, ResourceManager_DeferredCallbackRegisterRequest item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B3D0, Array_InternalArray__ICollection_Contains_740__MethodInfo); DO_APP_FUNC(0x00F40B80, bool, Array_InternalArray__ICollection_Contains_741, (Array * __this, RetainedGizmos_MeshWithHash item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B3C8, Array_InternalArray__ICollection_Contains_741__MethodInfo); DO_APP_FUNC(0x00F40D20, bool, Array_InternalArray__ICollection_Contains_742, (Array * __this, SendMouseEvents_HitInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B410, Array_InternalArray__ICollection_Contains_742__MethodInfo); DO_APP_FUNC(0x00F40EA0, bool, Array_InternalArray__ICollection_Contains_743, (Array * __this, SequenceNode_SequenceConstructPosContext item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B400, Array_InternalArray__ICollection_Contains_743__MethodInfo); DO_APP_FUNC(0x00F41060, bool, Array_InternalArray__ICollection_Contains_744, (Array * __this, SerializedObject_Field item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B3F8, Array_InternalArray__ICollection_Contains_744__MethodInfo); DO_APP_FUNC(0x00F411F0, bool, Array_InternalArray__ICollection_Contains_745, (Array * __this, SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B3F0, Array_InternalArray__ICollection_Contains_745__MethodInfo); DO_APP_FUNC(0x00F41390, bool, Array_InternalArray__ICollection_Contains_746, (Array * __this, SlotEquip_ItemDefinitionStateName item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B390, Array_InternalArray__ICollection_Contains_746__MethodInfo); DO_APP_FUNC(0x00F41510, bool, Array_InternalArray__ICollection_Contains_747, (Array * __this, Socket_WSABUF item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B388, Array_InternalArray__ICollection_Contains_747__MethodInfo); DO_APP_FUNC(0x00F41690, bool, Array_InternalArray__ICollection_Contains_748, (Array * __this, StyleComplexSelector_PseudoStateData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B380, Array_InternalArray__ICollection_Contains_748__MethodInfo); DO_APP_FUNC(0x00F41800, bool, Array_InternalArray__ICollection_Contains_749, (Array * __this, StylePropertyAnimationSystem_ElementPropertyPair item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B378, Array_InternalArray__ICollection_Contains_749__MethodInfo); DO_APP_FUNC(0x00F41980, bool, Array_InternalArray__ICollection_Contains_750, (Array * __this, StyleSheet_ImportStruct item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B3C0, Array_InternalArray__ICollection_Contains_750__MethodInfo); DO_APP_FUNC(0x00F41B00, bool, Array_InternalArray__ICollection_Contains_751, (Array * __this, StyleSheetCache_SheetHandleKey item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B3B8, Array_InternalArray__ICollection_Contains_751__MethodInfo); DO_APP_FUNC(0x00F41C70, bool, Array_InternalArray__ICollection_Contains_752, (Array * __this, StyleVariableResolver_ResolveContext item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B3B0, Array_InternalArray__ICollection_Contains_752__MethodInfo); DO_APP_FUNC(0x00F41DF0, bool, Array_InternalArray__ICollection_Contains_753, (Array * __this, TMP_Text_UnicodeChar item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B3A0, Array_InternalArray__ICollection_Contains_753__MethodInfo); DO_APP_FUNC(0x00F41F80, bool, Array_InternalArray__ICollection_Contains_754, (Array * __this, TemplateAsset_AttributeOverride item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B350, Array_InternalArray__ICollection_Contains_754__MethodInfo); DO_APP_FUNC(0x00F42120, bool, Array_InternalArray__ICollection_Contains_755, (Array * __this, TextPic_IconName item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B348, Array_InternalArray__ICollection_Contains_755__MethodInfo); DO_APP_FUNC(0x00F422B0, bool, Array_InternalArray__ICollection_Contains_756, (Array * __this, TextResourceManager_FontAssetRef item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B340, Array_InternalArray__ICollection_Contains_756__MethodInfo); DO_APP_FUNC(0x00F42440, bool, Array_InternalArray__ICollection_Contains_757, (Array * __this, TextSettings_FontReferenceMap item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B338, Array_InternalArray__ICollection_Contains_757__MethodInfo); DO_APP_FUNC(0x00F425C0, bool, Array_InternalArray__ICollection_Contains_758, (Array * __this, TextureBlitter_BlitInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B370, Array_InternalArray__ICollection_Contains_758__MethodInfo); DO_APP_FUNC(0x00F427A0, bool, Array_InternalArray__ICollection_Contains_759, (Array * __this, TexturePacker_JsonArray_Frame item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B368, Array_InternalArray__ICollection_Contains_759__MethodInfo); DO_APP_FUNC(0x00F42980, bool, Array_InternalArray__ICollection_Contains_760, (Array * __this, TextureRegistry_TextureInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B360, Array_InternalArray__ICollection_Contains_760__MethodInfo); DO_APP_FUNC(0x00F42B00, bool, Array_InternalArray__ICollection_Contains_761, (Array * __this, TimeNotificationBehaviour_NotificationEntry item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B358, Array_InternalArray__ICollection_Contains_761__MethodInfo); DO_APP_FUNC(0x00F42CA0, bool, Array_InternalArray__ICollection_Contains_762, (Array * __this, TrackedDeviceRaycaster_RaycastHitData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B2E8, Array_InternalArray__ICollection_Contains_762__MethodInfo); DO_APP_FUNC(0x00F42E30, bool, Array_InternalArray__ICollection_Contains_763, (Array * __this, TrackedPoseDriverDataDescription_PoseData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B2D8, Array_InternalArray__ICollection_Contains_763__MethodInfo); DO_APP_FUNC(0x00F42FB0, bool, Array_InternalArray__ICollection_Contains_764, (Array * __this, TreeView_TreeViewItemWrapper item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B2C8, Array_InternalArray__ICollection_Contains_764__MethodInfo); DO_APP_FUNC(0x00F43130, bool, Array_InternalArray__ICollection_Contains_765, (Array * __this, TreeViewReorderableDragAndDropController_TreeItemState item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B2B8, Array_InternalArray__ICollection_Contains_765__MethodInfo); DO_APP_FUNC(0x00F432A0, bool, Array_InternalArray__ICollection_Contains_766, (Array * __this, UIRStylePainter_Entry item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B328, Array_InternalArray__ICollection_Contains_766__MethodInfo); DO_APP_FUNC(0x00F43490, bool, Array_InternalArray__ICollection_Contains_767, (Array * __this, UIRenderDevice_AllocToFree item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B318, Array_InternalArray__ICollection_Contains_767__MethodInfo); DO_APP_FUNC(0x00F43650, bool, Array_InternalArray__ICollection_Contains_768, (Array * __this, UIRenderDevice_AllocToUpdate item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B308, Array_InternalArray__ICollection_Contains_768__MethodInfo); DO_APP_FUNC(0x00F43830, bool, Array_InternalArray__ICollection_Contains_769, (Array * __this, UIRenderDevice_DeviceToFree item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B2F8, Array_InternalArray__ICollection_Contains_769__MethodInfo); DO_APP_FUNC(0x00F439B0, bool, Array_InternalArray__ICollection_Contains_770, (Array * __this, UdpPipe_Ack item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B290, Array_InternalArray__ICollection_Contains_770__MethodInfo); DO_APP_FUNC(0x00F43B40, bool, Array_InternalArray__ICollection_Contains_771, (Array * __this, UmAlQuraCalendar_DateMapping item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B288, Array_InternalArray__ICollection_Contains_771__MethodInfo); DO_APP_FUNC(0x00F43CC0, bool, Array_InternalArray__ICollection_Contains_772, (Array * __this, UnitySynchronizationContext_WorkRequest item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B280, Array_InternalArray__ICollection_Contains_772__MethodInfo); DO_APP_FUNC(0x00F43E60, bool, Array_InternalArray__ICollection_Contains_773, (Array * __this, VisualTreeAsset_SlotDefinition item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B278, Array_InternalArray__ICollection_Contains_773__MethodInfo); DO_APP_FUNC(0x00F43FE0, bool, Array_InternalArray__ICollection_Contains_774, (Array * __this, VisualTreeAsset_SlotUsageEntry item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B2B0, Array_InternalArray__ICollection_Contains_774__MethodInfo); DO_APP_FUNC(0x00F44160, bool, Array_InternalArray__ICollection_Contains_775, (Array * __this, VisualTreeAsset_UsingEntry item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B2A8, Array_InternalArray__ICollection_Contains_775__MethodInfo); DO_APP_FUNC(0x00F44300, bool, Array_InternalArray__ICollection_Contains_776, (Array * __this, WetDecalSystem_MaterialBatchId item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B2A0, Array_InternalArray__ICollection_Contains_776__MethodInfo); DO_APP_FUNC(0x00F444B0, bool, Array_InternalArray__ICollection_Contains_777, (Array * __this, XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B298, Array_InternalArray__ICollection_Contains_777__MethodInfo); DO_APP_FUNC(0x00F44620, bool, Array_InternalArray__ICollection_Contains_778, (Array * __this, XmlEventCache_XmlEvent item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B238, Array_InternalArray__ICollection_Contains_778__MethodInfo); DO_APP_FUNC(0x00F447E0, bool, Array_InternalArray__ICollection_Contains_779, (Array * __this, XmlNamespaceManager_NamespaceDeclaration item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B228, Array_InternalArray__ICollection_Contains_779__MethodInfo); DO_APP_FUNC(0x00F44980, bool, Array_InternalArray__ICollection_Contains_780, (Array * __this, XmlSchemaObjectTable_XmlSchemaObjectEntry item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B218, Array_InternalArray__ICollection_Contains_780__MethodInfo); DO_APP_FUNC(0x00F44B00, bool, Array_InternalArray__ICollection_Contains_781, (Array * __this, XmlTextReaderImpl_ParsingState item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B208, Array_InternalArray__ICollection_Contains_781__MethodInfo); DO_APP_FUNC(0x00F44D30, bool, Array_InternalArray__ICollection_Contains_782, (Array * __this, XmlTextWriter_Namespace item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B270, Array_InternalArray__ICollection_Contains_782__MethodInfo); DO_APP_FUNC(0x00F44ED0, bool, Array_InternalArray__ICollection_Contains_783, (Array * __this, XmlTextWriter_TagInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B260, Array_InternalArray__ICollection_Contains_783__MethodInfo); DO_APP_FUNC(0x00F450B0, bool, Array_InternalArray__ICollection_Contains_784, (Array * __this, XmlWellFormedWriter_AttrName item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0B250, Array_InternalArray__ICollection_Contains_784__MethodInfo); DO_APP_FUNC(0x00F45240, bool, Array_InternalArray__ICollection_Contains_785, (Array * __this, XmlWellFormedWriter_ElementScope item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10358, Array_InternalArray__ICollection_Contains_785__MethodInfo); DO_APP_FUNC(0x00F45400, bool, Array_InternalArray__ICollection_Contains_786, (Array * __this, XmlWellFormedWriter_Namespace item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10350, Array_InternalArray__ICollection_Contains_786__MethodInfo); DO_APP_FUNC(0x00F455A0, bool, Array_InternalArray__ICollection_Contains_787, (Array * __this, ftLightmaps_LightmapAdditionalData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D102E8, Array_InternalArray__ICollection_Contains_787__MethodInfo); DO_APP_FUNC(0x00F45730, bool, Array_InternalArray__ICollection_Contains_788, (Array * __this, gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D102E0, Array_InternalArray__ICollection_Contains_788__MethodInfo); DO_APP_FUNC(0x00F458A0, bool, Array_InternalArray__ICollection_Contains_789, (Array * __this, gWxrirpmIhQTmhziZnlXlEwmYtKB_QpfrOmwHesfdZMwAoLXiDrdPqtqG item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D102D8, Array_InternalArray__ICollection_Contains_789__MethodInfo); DO_APP_FUNC(0x00F45A80, bool, Array_InternalArray__ICollection_Contains_790, (Array * __this, gWxrirpmIhQTmhziZnlXlEwmYtKB_vEAqJCAedocGOpCIXmtvTuaaVKZ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D102C8, Array_InternalArray__ICollection_Contains_790__MethodInfo); DO_APP_FUNC(0x00F45C10, bool, Array_InternalArray__ICollection_Contains_791, (Array * __this, jlOcQLgjodoHrMnRTMaZoBnVTQkmA_UQNUjWDnDBJiFEZHZdfMIOPkNvdGb item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10328, Array_InternalArray__ICollection_Contains_791__MethodInfo); DO_APP_FUNC(0x00F45DB0, bool, Array_InternalArray__ICollection_Contains_792, (Array * __this, DebugUI_Foldout_ContextMenuItem item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10318, Array_InternalArray__ICollection_Contains_792__MethodInfo); DO_APP_FUNC(0x00F45F30, bool, Array_InternalArray__ICollection_Contains_793, (Array * __this, Decimal_DecCalc_PowerOvfl item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10308, Array_InternalArray__ICollection_Contains_793__MethodInfo); DO_APP_FUNC(0x00F460B0, bool, Array_InternalArray__ICollection_Contains_794, (Array * __this, FacetsChecker_FacetsCompiler_Map item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D102F8, Array_InternalArray__ICollection_Contains_794__MethodInfo); DO_APP_FUNC(0x00F46230, bool, Array_InternalArray__ICollection_Contains_795, (Array * __this, InputControlLayout_Collection_LayoutMatcher item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10288, Array_InternalArray__ICollection_Contains_795__MethodInfo); DO_APP_FUNC(0x00F463D0, bool, Array_InternalArray__ICollection_Contains_796, (Array * __this, InputControlLayout_Collection_PrecompiledLayout item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10278, Array_InternalArray__ICollection_Contains_796__MethodInfo); DO_APP_FUNC(0x00F46550, bool, Array_InternalArray__ICollection_Contains_797, (Array * __this, InputControlScheme_MatchResult_Match item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10268, Array_InternalArray__ICollection_Contains_797__MethodInfo); DO_APP_FUNC(0x00F46710, bool, Array_InternalArray__ICollection_Contains_798, (Array * __this, InputControlScheme_SchemeJson_DeviceJson item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10258, Array_InternalArray__ICollection_Contains_798__MethodInfo); DO_APP_FUNC(0x00F46890, bool, Array_InternalArray__ICollection_Contains_799, (Array * __this, InputDeviceMatcher_MatcherJson_Capability item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D102B8, Array_InternalArray__ICollection_Contains_799__MethodInfo); DO_APP_FUNC(0x00F46A10, bool, Array_InternalArray__ICollection_Contains_800, (Array * __this, InstructionList_DebugView_InstructionView item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D102B0, Array_InternalArray__ICollection_Contains_800__MethodInfo); DO_APP_FUNC(0x00F46BA0, bool, Array_InternalArray__ICollection_Contains_801, (Array * __this, Interop_SspiCli_SecBuffer item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D102A8, Array_InternalArray__ICollection_Contains_801__MethodInfo); DO_APP_FUNC(0x00F46D20, bool, Array_InternalArray__ICollection_Contains_802, (Array * __this, PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10298, Array_InternalArray__ICollection_Contains_802__MethodInfo); DO_APP_FUNC(0x00F46EB0, bool, Array_InternalArray__ICollection_Contains_803, (Array * __this, TargetPositionCache_CacheCurve_Item item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10220, Array_InternalArray__ICollection_Contains_803__MethodInfo); DO_APP_FUNC(0x00F47070, bool, Array_InternalArray__ICollection_Contains_804, (Array * __this, TargetPositionCache_CacheEntry_RecordingItem item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10218, Array_InternalArray__ICollection_Contains_804__MethodInfo); DO_APP_FUNC(0x00F47220, void, Array_InternalArray__ICollection_CopyTo, (Array * __this, ArraySegment_1_Byte___Array * array, int32_t arrayIndex, MethodInfo * method)); DO_APP_FUNC(0x00F47220, void, Array_InternalArray__ICollection_CopyTo_1, (Array * __this, AsyncOperationHandle_1_System_Object___Array * array, int32_t arrayIndex, MethodInfo * method)); DO_APP_FUNC(0x00F47220, void, Array_InternalArray__ICollection_CopyTo_2, (Array * __this, VoiceSender_1_TPeer_ChannelDelta_Dissonance_Integrations_PhotonBolt_BoltPeer___Array * array, int32_t arrayIndex, MethodInfo * method)); @@ -203076,810 +224415,1615 @@ DO_APP_FUNC(0x00F47220, void, Array_InternalArray__ICollection_CopyTo_802, (Arra DO_APP_FUNC(0x00F47220, void, Array_InternalArray__ICollection_CopyTo_803, (Array * __this, TargetPositionCache_CacheCurve_Item__Array * array, int32_t arrayIndex, MethodInfo * method)); DO_APP_FUNC(0x00F47220, void, Array_InternalArray__ICollection_CopyTo_804, (Array * __this, TargetPositionCache_CacheEntry_RecordingItem__Array * array, int32_t arrayIndex, MethodInfo * method)); DO_APP_FUNC(0x00F472B0, bool, Array_InternalArray__ICollection_Remove, (Array * __this, ArraySegment_1_Byte_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10208, Array_InternalArray__ICollection_Remove__MethodInfo); DO_APP_FUNC(0x00F47310, bool, Array_InternalArray__ICollection_Remove_1, (Array * __this, AsyncOperationHandle_1_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10200, Array_InternalArray__ICollection_Remove_1__MethodInfo); DO_APP_FUNC(0x00F47370, bool, Array_InternalArray__ICollection_Remove_2, (Array * __this, VoiceSender_1_TPeer_ChannelDelta_Dissonance_Integrations_PhotonBolt_BoltPeer_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10248, Array_InternalArray__ICollection_Remove_2__MethodInfo); DO_APP_FUNC(0x00F473D0, bool, Array_InternalArray__ICollection_Remove_3, (Array * __this, DynamicHeightVirtualizationController_1_T_ContentHeightCacheInfo_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10240, Array_InternalArray__ICollection_Remove_3__MethodInfo); DO_APP_FUNC(0x00F47430, bool, Array_InternalArray__ICollection_Remove_4, (Array * __this, StylePropertyAnimationSystem_Values_1_T_EmptyData_Background_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10238, Array_InternalArray__ICollection_Remove_4__MethodInfo); DO_APP_FUNC(0x00F47490, bool, Array_InternalArray__ICollection_Remove_5, (Array * __this, StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10228, Array_InternalArray__ICollection_Remove_5__MethodInfo); DO_APP_FUNC(0x00F474F0, bool, Array_InternalArray__ICollection_Remove_6, (Array * __this, StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D101D0, Array_InternalArray__ICollection_Remove_6__MethodInfo); DO_APP_FUNC(0x00F47550, bool, Array_InternalArray__ICollection_Remove_7, (Array * __this, StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D101C8, Array_InternalArray__ICollection_Remove_7__MethodInfo); DO_APP_FUNC(0x00F475B0, bool, Array_InternalArray__ICollection_Remove_8, (Array * __this, StylePropertyAnimationSystem_Values_1_T_EmptyData_Length_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D101C0, Array_InternalArray__ICollection_Remove_8__MethodInfo); DO_APP_FUNC(0x00F47610, bool, Array_InternalArray__ICollection_Remove_9, (Array * __this, StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D101B8, Array_InternalArray__ICollection_Remove_9__MethodInfo); DO_APP_FUNC(0x00F47670, bool, Array_InternalArray__ICollection_Remove_10, (Array * __this, StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D101F8, Array_InternalArray__ICollection_Remove_10__MethodInfo); DO_APP_FUNC(0x00F476D0, bool, Array_InternalArray__ICollection_Remove_11, (Array * __this, StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D101E8, Array_InternalArray__ICollection_Remove_11__MethodInfo); DO_APP_FUNC(0x00F47730, bool, Array_InternalArray__ICollection_Remove_12, (Array * __this, StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D101E0, Array_InternalArray__ICollection_Remove_12__MethodInfo); DO_APP_FUNC(0x00F47790, bool, Array_InternalArray__ICollection_Remove_13, (Array * __this, StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D101D8, Array_InternalArray__ICollection_Remove_13__MethodInfo); DO_APP_FUNC(0x00F477F0, bool, Array_InternalArray__ICollection_Remove_14, (Array * __this, StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10168, Array_InternalArray__ICollection_Remove_14__MethodInfo); DO_APP_FUNC(0x00F47850, bool, Array_InternalArray__ICollection_Remove_15, (Array * __this, StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10158, Array_InternalArray__ICollection_Remove_15__MethodInfo); DO_APP_FUNC(0x00F478B0, bool, Array_InternalArray__ICollection_Remove_16, (Array * __this, IntervalTree_1_T_Entry_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10148, Array_InternalArray__ICollection_Remove_16__MethodInfo); DO_APP_FUNC(0x00F47910, bool, Array_InternalArray__ICollection_Remove_17, (Array * __this, XHashtable_1_TValue_XHashtableState_TValue_Entry_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10138, Array_InternalArray__ICollection_Remove_17__MethodInfo); DO_APP_FUNC(0x00F47970, bool, Array_InternalArray__ICollection_Remove_18, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_ValueTuple_2_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D101A8, Array_InternalArray__ICollection_Remove_18__MethodInfo); DO_APP_FUNC(0x00F479D0, bool, Array_InternalArray__ICollection_Remove_19, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_ValueTuple_2_System_Object__1 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10198, Array_InternalArray__ICollection_Remove_19__MethodInfo); DO_APP_FUNC(0x00F47A30, bool, Array_InternalArray__ICollection_Remove_20, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Byte_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10188, Array_InternalArray__ICollection_Remove_20__MethodInfo); DO_APP_FUNC(0x00F47A90, bool, Array_InternalArray__ICollection_Remove_21, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_ByteEnum_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10178, Array_InternalArray__ICollection_Remove_21__MethodInfo); DO_APP_FUNC(0x00F47AF0, bool, Array_InternalArray__ICollection_Remove_22, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_ByteEnum_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D100F8, Array_InternalArray__ICollection_Remove_22__MethodInfo); DO_APP_FUNC(0x00F47B50, bool, Array_InternalArray__ICollection_Remove_23, (Array * __this, Dictionary_2_TKey_TValue_Entry_Dissonance_Audio_Playback_FrameFormat_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D100F0, Array_InternalArray__ICollection_Remove_23__MethodInfo); DO_APP_FUNC(0x00F47BB0, bool, Array_InternalArray__ICollection_Remove_24, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Guid_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D100E8, Array_InternalArray__ICollection_Remove_24__MethodInfo); DO_APP_FUNC(0x00F47C10, bool, Array_InternalArray__ICollection_Remove_25, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Guid_System_UInt32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D100E0, Array_InternalArray__ICollection_Remove_25__MethodInfo); DO_APP_FUNC(0x00F47C70, bool, Array_InternalArray__ICollection_Remove_26, (Array * __this, Dictionary_2_TKey_TValue_Entry_UnityEngine_Hash128_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10128, Array_InternalArray__ICollection_Remove_26__MethodInfo); DO_APP_FUNC(0x00F47CD0, bool, Array_InternalArray__ICollection_Remove_27, (Array * __this, Dictionary_2_TKey_TValue_Entry_Pathfinding_Int2_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10118, Array_InternalArray__ICollection_Remove_27__MethodInfo); DO_APP_FUNC(0x00F47D30, bool, Array_InternalArray__ICollection_Remove_28, (Array * __this, Dictionary_2_TKey_TValue_Entry_Pathfinding_Int3_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10108, Array_InternalArray__ICollection_Remove_28__MethodInfo); DO_APP_FUNC(0x00F47D90, bool, Array_InternalArray__ICollection_Remove_29, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10100, Array_InternalArray__ICollection_Remove_29__MethodInfo); DO_APP_FUNC(0x00F47DF0, bool, Array_InternalArray__ICollection_Remove_30, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_System_ValueTuple_2_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D100B8, Array_InternalArray__ICollection_Remove_30__MethodInfo); DO_APP_FUNC(0x00F47E50, bool, Array_InternalArray__ICollection_Remove_31, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_System_Boolean_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D100B0, Array_InternalArray__ICollection_Remove_31__MethodInfo); DO_APP_FUNC(0x00F47EB0, bool, Array_InternalArray__ICollection_Remove_32, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_System_ByteEnum_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D100A8, Array_InternalArray__ICollection_Remove_32__MethodInfo); DO_APP_FUNC(0x00F47F10, bool, Array_InternalArray__ICollection_Remove_33, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_System_Char_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D100A0, Array_InternalArray__ICollection_Remove_33__MethodInfo); DO_APP_FUNC(0x00F47F70, bool, Array_InternalArray__ICollection_Remove_34, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D100D8, Array_InternalArray__ICollection_Remove_34__MethodInfo); DO_APP_FUNC(0x00F47FD0, bool, Array_InternalArray__ICollection_Remove_35, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int16_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D100D0, Array_InternalArray__ICollection_Remove_35__MethodInfo); DO_APP_FUNC(0x00F48030, bool, Array_InternalArray__ICollection_Remove_36, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_Pathfinding_Int3_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D100C8, Array_InternalArray__ICollection_Remove_36__MethodInfo); DO_APP_FUNC(0x00F48090, bool, Array_InternalArray__ICollection_Remove_37, (Array * __this, ADictionary_2_TKey_TValue_Entry_System_Int32_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D100C0, Array_InternalArray__ICollection_Remove_37__MethodInfo); DO_APP_FUNC(0x00F480F0, bool, Array_InternalArray__ICollection_Remove_38, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10060, Array_InternalArray__ICollection_Remove_38__MethodInfo); DO_APP_FUNC(0x00F48150, bool, Array_InternalArray__ICollection_Remove_39, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int32Enum_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10050, Array_InternalArray__ICollection_Remove_39__MethodInfo); DO_APP_FUNC(0x00F481B0, bool, Array_InternalArray__ICollection_Remove_40, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int64_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10048, Array_InternalArray__ICollection_Remove_40__MethodInfo); DO_APP_FUNC(0x00F48210, bool, Array_InternalArray__ICollection_Remove_41, (Array * __this, ADictionary_2_TKey_TValue_Entry_System_Int32_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10038, Array_InternalArray__ICollection_Remove_41__MethodInfo); DO_APP_FUNC(0x00F48270, bool, Array_InternalArray__ICollection_Remove_42, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10090, Array_InternalArray__ICollection_Remove_42__MethodInfo); DO_APP_FUNC(0x00F482D0, bool, Array_InternalArray__ICollection_Remove_43, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_PlayerFlashlightBeam_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10088, Array_InternalArray__ICollection_Remove_43__MethodInfo); DO_APP_FUNC(0x00F48330, bool, Array_InternalArray__ICollection_Remove_44, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_RenderInstancedDataLayout_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10080, Array_InternalArray__ICollection_Remove_44__MethodInfo); DO_APP_FUNC(0x00F48390, bool, Array_InternalArray__ICollection_Remove_45, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_System_Single_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10070, Array_InternalArray__ICollection_Remove_45__MethodInfo); DO_APP_FUNC(0x00F483F0, bool, Array_InternalArray__ICollection_Remove_46, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_TreeItem_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10000, Array_InternalArray__ICollection_Remove_46__MethodInfo); DO_APP_FUNC(0x00F48450, bool, Array_InternalArray__ICollection_Remove_47, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Vector2Int_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FFF8, Array_InternalArray__ICollection_Remove_47__MethodInfo); DO_APP_FUNC(0x00F484B0, bool, Array_InternalArray__ICollection_Remove_48, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Vector4_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FFE8, Array_InternalArray__ICollection_Remove_48__MethodInfo); DO_APP_FUNC(0x00F48510, bool, Array_InternalArray__ICollection_Remove_49, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FFD8, Array_InternalArray__ICollection_Remove_49__MethodInfo); DO_APP_FUNC(0x00F48570, bool, Array_InternalArray__ICollection_Remove_50, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32Enum_System_Int32Enum_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10030, Array_InternalArray__ICollection_Remove_50__MethodInfo); DO_APP_FUNC(0x00F485D0, bool, Array_InternalArray__ICollection_Remove_51, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32Enum_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10028, Array_InternalArray__ICollection_Remove_51__MethodInfo); DO_APP_FUNC(0x00F48630, bool, Array_InternalArray__ICollection_Remove_52, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_UIElements_ComputedStyle_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10018, Array_InternalArray__ICollection_Remove_52__MethodInfo); DO_APP_FUNC(0x00F48690, bool, Array_InternalArray__ICollection_Remove_53, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int64_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10008, Array_InternalArray__ICollection_Remove_53__MethodInfo); DO_APP_FUNC(0x00F486F0, bool, Array_InternalArray__ICollection_Remove_54, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_IntPtr_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FFA8, Array_InternalArray__ICollection_Remove_54__MethodInfo); DO_APP_FUNC(0x00F48750, bool, Array_InternalArray__ICollection_Remove_55, (Array * __this, Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FFA0, Array_InternalArray__ICollection_Remove_55__MethodInfo); DO_APP_FUNC(0x00F487B0, bool, Array_InternalArray__ICollection_Remove_56, (Array * __this, Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FF98, Array_InternalArray__ICollection_Remove_56__MethodInfo); DO_APP_FUNC(0x00F48810, bool, Array_InternalArray__ICollection_Remove_57, (Array * __this, Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FF88, Array_InternalArray__ICollection_Remove_57__MethodInfo); DO_APP_FUNC(0x00F48870, bool, Array_InternalArray__ICollection_Remove_58, (Array * __this, Dictionary_2_TKey_TValue_Entry_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FFC8, Array_InternalArray__ICollection_Remove_58__MethodInfo); DO_APP_FUNC(0x00F488D0, bool, Array_InternalArray__ICollection_Remove_59, (Array * __this, Dictionary_2_TKey_TValue_Entry_Photon_Bolt_NetworkId_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FFC0, Array_InternalArray__ICollection_Remove_59__MethodInfo); DO_APP_FUNC(0x00F48930, bool, Array_InternalArray__ICollection_Remove_60, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FFB8, Array_InternalArray__ICollection_Remove_60__MethodInfo); DO_APP_FUNC(0x00F48990, bool, Array_InternalArray__ICollection_Remove_61, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FFB0, Array_InternalArray__ICollection_Remove_61__MethodInfo); DO_APP_FUNC(0x00F489F0, bool, Array_InternalArray__ICollection_Remove_62, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_System_Boolean_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FF48, Array_InternalArray__ICollection_Remove_62__MethodInfo); DO_APP_FUNC(0x00F48A50, bool, Array_InternalArray__ICollection_Remove_63, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Bounds_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FF38, Array_InternalArray__ICollection_Remove_63__MethodInfo); DO_APP_FUNC(0x00F48AB0, bool, Array_InternalArray__ICollection_Remove_64, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_System_Byte_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FF28, Array_InternalArray__ICollection_Remove_64__MethodInfo); DO_APP_FUNC(0x00F48B10, bool, Array_InternalArray__ICollection_Remove_65, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Color_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FF18, Array_InternalArray__ICollection_Remove_65__MethodInfo); DO_APP_FUNC(0x00F48B70, bool, Array_InternalArray__ICollection_Remove_66, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Color32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FF78, Array_InternalArray__ICollection_Remove_66__MethodInfo); DO_APP_FUNC(0x00F48BD0, bool, Array_InternalArray__ICollection_Remove_67, (Array * __this, ADictionary_2_TKey_TValue_Entry_System_Object_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FF70, Array_InternalArray__ICollection_Remove_67__MethodInfo); DO_APP_FUNC(0x00F48C30, bool, Array_InternalArray__ICollection_Remove_68, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FF68, Array_InternalArray__ICollection_Remove_68__MethodInfo); DO_APP_FUNC(0x00F48C90, bool, Array_InternalArray__ICollection_Remove_69, (Array * __this, ADictionary_2_TKey_TValue_Entry_System_Object_System_Int32Enum_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FF58, Array_InternalArray__ICollection_Remove_69__MethodInfo); DO_APP_FUNC(0x00F48CF0, bool, Array_InternalArray__ICollection_Remove_70, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_System_Int32Enum_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FED8, Array_InternalArray__ICollection_Remove_70__MethodInfo); DO_APP_FUNC(0x00F48D50, bool, Array_InternalArray__ICollection_Remove_71, (Array * __this, ADictionary_2_TKey_TValue_Entry_System_Object_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FEC8, Array_InternalArray__ICollection_Remove_71__MethodInfo); DO_APP_FUNC(0x00F48DB0, bool, Array_InternalArray__ICollection_Remove_72, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FEB8, Array_InternalArray__ICollection_Remove_72__MethodInfo); DO_APP_FUNC(0x00F48E10, bool, Array_InternalArray__ICollection_Remove_73, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FEB0, Array_InternalArray__ICollection_Remove_73__MethodInfo); DO_APP_FUNC(0x00F48E70, bool, Array_InternalArray__ICollection_Remove_74, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FF08, Array_InternalArray__ICollection_Remove_74__MethodInfo); DO_APP_FUNC(0x00F48ED0, bool, Array_InternalArray__ICollection_Remove_75, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Playables_Playable_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FEF8, Array_InternalArray__ICollection_Remove_75__MethodInfo); DO_APP_FUNC(0x00F48F30, bool, Array_InternalArray__ICollection_Remove_76, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FEE8, Array_InternalArray__ICollection_Remove_76__MethodInfo); DO_APP_FUNC(0x00F48F90, bool, Array_InternalArray__ICollection_Remove_77, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_System_Resources_ResourceLocator_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FEE0, Array_InternalArray__ICollection_Remove_77__MethodInfo); DO_APP_FUNC(0x00F48FF0, bool, Array_InternalArray__ICollection_Remove_78, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_System_Single_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FE78, Array_InternalArray__ICollection_Remove_78__MethodInfo); DO_APP_FUNC(0x00F49050, bool, Array_InternalArray__ICollection_Remove_79, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FE68, Array_InternalArray__ICollection_Remove_79__MethodInfo); DO_APP_FUNC(0x00F490B0, bool, Array_InternalArray__ICollection_Remove_80, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_UIElements_TextureId_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FE58, Array_InternalArray__ICollection_Remove_80__MethodInfo); DO_APP_FUNC(0x00F49110, bool, Array_InternalArray__ICollection_Remove_81, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_System_TimeSpan_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FE50, Array_InternalArray__ICollection_Remove_81__MethodInfo); DO_APP_FUNC(0x00F49170, bool, Array_InternalArray__ICollection_Remove_82, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_UdpKit_UdpEndPoint_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FEA8, Array_InternalArray__ICollection_Remove_82__MethodInfo); DO_APP_FUNC(0x00F491D0, bool, Array_InternalArray__ICollection_Remove_83, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Vector2_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FE98, Array_InternalArray__ICollection_Remove_83__MethodInfo); DO_APP_FUNC(0x00F49230, bool, Array_InternalArray__ICollection_Remove_84, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Vector3_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FE88, Array_InternalArray__ICollection_Remove_84__MethodInfo); DO_APP_FUNC(0x00F49290, bool, Array_InternalArray__ICollection_Remove_85, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FE80, Array_InternalArray__ICollection_Remove_85__MethodInfo); DO_APP_FUNC(0x00F492F0, bool, Array_InternalArray__ICollection_Remove_86, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FE20, Array_InternalArray__ICollection_Remove_86__MethodInfo); DO_APP_FUNC(0x00F49350, bool, Array_InternalArray__ICollection_Remove_87, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FE18, Array_InternalArray__ICollection_Remove_87__MethodInfo); DO_APP_FUNC(0x00F493B0, bool, Array_InternalArray__ICollection_Remove_88, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FE08, Array_InternalArray__ICollection_Remove_88__MethodInfo); DO_APP_FUNC(0x00F49410, bool, Array_InternalArray__ICollection_Remove_89, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FE00, Array_InternalArray__ICollection_Remove_89__MethodInfo); DO_APP_FUNC(0x00F49470, bool, Array_InternalArray__ICollection_Remove_90, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FE48, Array_InternalArray__ICollection_Remove_90__MethodInfo); DO_APP_FUNC(0x00F494D0, bool, Array_InternalArray__ICollection_Remove_91, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FE40, Array_InternalArray__ICollection_Remove_91__MethodInfo); DO_APP_FUNC(0x00F49530, bool, Array_InternalArray__ICollection_Remove_92, (Array * __this, Dictionary_2_TKey_TValue_Entry_Photon_Bolt_PrefabId_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FE38, Array_InternalArray__ICollection_Remove_92__MethodInfo); DO_APP_FUNC(0x00F49590, bool, Array_InternalArray__ICollection_Remove_93, (Array * __this, Dictionary_2_TKey_TValue_Entry_UnityEngine_RaycastHit_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FE28, Array_InternalArray__ICollection_Remove_93__MethodInfo); DO_APP_FUNC(0x00F495F0, bool, Array_InternalArray__ICollection_Remove_94, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Single_SplineMesh_CurveSample_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FDD8, Array_InternalArray__ICollection_Remove_94__MethodInfo); DO_APP_FUNC(0x00F49650, bool, Array_InternalArray__ICollection_Remove_95, (Array * __this, Dictionary_2_TKey_TValue_Entry_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FDC8, Array_InternalArray__ICollection_Remove_95__MethodInfo); DO_APP_FUNC(0x00F496B0, bool, Array_InternalArray__ICollection_Remove_96, (Array * __this, Dictionary_2_TKey_TValue_Entry_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FDB8, Array_InternalArray__ICollection_Remove_96__MethodInfo); DO_APP_FUNC(0x00F49710, bool, Array_InternalArray__ICollection_Remove_97, (Array * __this, Dictionary_2_TKey_TValue_Entry_Photon_Bolt_TypeId_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FDA8, Array_InternalArray__ICollection_Remove_97__MethodInfo); DO_APP_FUNC(0x00F49770, bool, Array_InternalArray__ICollection_Remove_98, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_UInt16_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FDF8, Array_InternalArray__ICollection_Remove_98__MethodInfo); DO_APP_FUNC(0x00F497D0, bool, Array_InternalArray__ICollection_Remove_99, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_UInt16_Dissonance_PlayerChannel_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FDF0, Array_InternalArray__ICollection_Remove_99__MethodInfo); DO_APP_FUNC(0x00F49830, bool, Array_InternalArray__ICollection_Remove_100, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_UInt16_Dissonance_RoomChannel_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FDE8, Array_InternalArray__ICollection_Remove_100__MethodInfo); DO_APP_FUNC(0x00F49890, bool, Array_InternalArray__ICollection_Remove_101, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_UInt32_System_Boolean_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FDE0, Array_InternalArray__ICollection_Remove_101__MethodInfo); DO_APP_FUNC(0x00F498F0, bool, Array_InternalArray__ICollection_Remove_102, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FD78, Array_InternalArray__ICollection_Remove_102__MethodInfo); DO_APP_FUNC(0x00F49950, bool, Array_InternalArray__ICollection_Remove_103, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_UInt32_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FD68, Array_InternalArray__ICollection_Remove_103__MethodInfo); DO_APP_FUNC(0x00F499B0, bool, Array_InternalArray__ICollection_Remove_104, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_UInt32_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FD60, Array_InternalArray__ICollection_Remove_104__MethodInfo); DO_APP_FUNC(0x00F49A10, bool, Array_InternalArray__ICollection_Remove_105, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_UInt32_SessionClient_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FD58, Array_InternalArray__ICollection_Remove_105__MethodInfo); DO_APP_FUNC(0x00F49A70, bool, Array_InternalArray__ICollection_Remove_106, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_UInt64_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FDA0, Array_InternalArray__ICollection_Remove_106__MethodInfo); DO_APP_FUNC(0x00F49AD0, bool, Array_InternalArray__ICollection_Remove_107, (Array * __this, Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FD98, Array_InternalArray__ICollection_Remove_107__MethodInfo); DO_APP_FUNC(0x00F49B30, bool, Array_InternalArray__ICollection_Remove_108, (Array * __this, Dictionary_2_TKey_TValue_Entry_UdpKit_UdpChannelName_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FD88, Array_InternalArray__ICollection_Remove_108__MethodInfo); DO_APP_FUNC(0x00F49B90, bool, Array_InternalArray__ICollection_Remove_109, (Array * __this, Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FD80, Array_InternalArray__ICollection_Remove_109__MethodInfo); DO_APP_FUNC(0x00F49BF0, bool, Array_InternalArray__ICollection_Remove_110, (Array * __this, Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_UInt32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FD20, Array_InternalArray__ICollection_Remove_110__MethodInfo); DO_APP_FUNC(0x00F49C50, bool, Array_InternalArray__ICollection_Remove_111, (Array * __this, Dictionary_2_TKey_TValue_Entry_Photon_Bolt_UniqueId_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FD10, Array_InternalArray__ICollection_Remove_111__MethodInfo); DO_APP_FUNC(0x00F49CB0, bool, Array_InternalArray__ICollection_Remove_112, (Array * __this, Dictionary_2_TKey_TValue_Entry_UnityEngine_Vector3_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FD00, Array_InternalArray__ICollection_Remove_112__MethodInfo); DO_APP_FUNC(0x00F49D10, bool, Array_InternalArray__ICollection_Remove_113, (Array * __this, Dictionary_2_TKey_TValue_Entry_UnityEngine_Vector3Int_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FCF8, Array_InternalArray__ICollection_Remove_113__MethodInfo); DO_APP_FUNC(0x00F49D70, bool, Array_InternalArray__ICollection_Remove_114, (Array * __this, Dictionary_2_TKey_TValue_Entry_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FD48, Array_InternalArray__ICollection_Remove_114__MethodInfo); DO_APP_FUNC(0x00F49DD0, bool, Array_InternalArray__ICollection_Remove_115, (Array * __this, Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FD38, Array_InternalArray__ICollection_Remove_115__MethodInfo); DO_APP_FUNC(0x00F49E30, bool, Array_InternalArray__ICollection_Remove_116, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FD30, Array_InternalArray__ICollection_Remove_116__MethodInfo); DO_APP_FUNC(0x00F49E90, bool, Array_InternalArray__ICollection_Remove_117, (Array * __this, Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FD28, Array_InternalArray__ICollection_Remove_117__MethodInfo); DO_APP_FUNC(0x00F49EF0, bool, Array_InternalArray__ICollection_Remove_118, (Array * __this, Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FCD0, Array_InternalArray__ICollection_Remove_118__MethodInfo); DO_APP_FUNC(0x00F49F50, bool, Array_InternalArray__ICollection_Remove_119, (Array * __this, Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FCC8, Array_InternalArray__ICollection_Remove_119__MethodInfo); DO_APP_FUNC(0x00F49FB0, bool, Array_InternalArray__ICollection_Remove_120, (Array * __this, Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FCC0, Array_InternalArray__ICollection_Remove_120__MethodInfo); DO_APP_FUNC(0x00F4A010, bool, Array_InternalArray__ICollection_Remove_121, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FCB8, Array_InternalArray__ICollection_Remove_121__MethodInfo); DO_APP_FUNC(0x00F4A070, bool, Array_InternalArray__ICollection_Remove_122, (Array * __this, Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FCF0, Array_InternalArray__ICollection_Remove_122__MethodInfo); DO_APP_FUNC(0x00F4A0D0, bool, Array_InternalArray__ICollection_Remove_123, (Array * __this, Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FCE8, Array_InternalArray__ICollection_Remove_123__MethodInfo); DO_APP_FUNC(0x00F4A130, bool, Array_InternalArray__ICollection_Remove_124, (Array * __this, Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FCE0, Array_InternalArray__ICollection_Remove_124__MethodInfo); DO_APP_FUNC(0x00F4A190, bool, Array_InternalArray__ICollection_Remove_125, (Array * __this, Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FCD8, Array_InternalArray__ICollection_Remove_125__MethodInfo); DO_APP_FUNC(0x00F4A1F0, bool, Array_InternalArray__ICollection_Remove_126, (Array * __this, Dictionary_2_TKey_TValue_Entry_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FC88, Array_InternalArray__ICollection_Remove_126__MethodInfo); DO_APP_FUNC(0x00F4A250, bool, Array_InternalArray__ICollection_Remove_127, (Array * __this, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FC80, Array_InternalArray__ICollection_Remove_127__MethodInfo); DO_APP_FUNC(0x00F4A2B0, bool, Array_InternalArray__ICollection_Remove_128, (Array * __this, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FC78, Array_InternalArray__ICollection_Remove_128__MethodInfo); DO_APP_FUNC(0x00F4A310, bool, Array_InternalArray__ICollection_Remove_129, (Array * __this, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FC70, Array_InternalArray__ICollection_Remove_129__MethodInfo); DO_APP_FUNC(0x00F4A370, bool, Array_InternalArray__ICollection_Remove_130, (Array * __this, KeyValuePair_2_System_ValueTuple_2_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FCB0, Array_InternalArray__ICollection_Remove_130__MethodInfo); DO_APP_FUNC(0x00F4A3D0, bool, Array_InternalArray__ICollection_Remove_131, (Array * __this, KeyValuePair_2_System_ValueTuple_2_System_Object__1 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FCA0, Array_InternalArray__ICollection_Remove_131__MethodInfo); DO_APP_FUNC(0x00F4A430, bool, Array_InternalArray__ICollection_Remove_132, (Array * __this, KeyValuePair_2_System_Byte_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FC98, Array_InternalArray__ICollection_Remove_132__MethodInfo); DO_APP_FUNC(0x00F4A490, bool, Array_InternalArray__ICollection_Remove_133, (Array * __this, KeyValuePair_2_System_ByteEnum_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FC90, Array_InternalArray__ICollection_Remove_133__MethodInfo); DO_APP_FUNC(0x00F4A4F0, bool, Array_InternalArray__ICollection_Remove_134, (Array * __this, KeyValuePair_2_System_ByteEnum_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FC30, Array_InternalArray__ICollection_Remove_134__MethodInfo); DO_APP_FUNC(0x00F4A550, bool, Array_InternalArray__ICollection_Remove_135, (Array * __this, KeyValuePair_2_System_DateTime_System_UInt32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FC28, Array_InternalArray__ICollection_Remove_135__MethodInfo); DO_APP_FUNC(0x00F4A5B0, bool, Array_InternalArray__ICollection_Remove_136, (Array * __this, KeyValuePair_2_Dissonance_Audio_Playback_FrameFormat_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FC20, Array_InternalArray__ICollection_Remove_136__MethodInfo); DO_APP_FUNC(0x00F4A610, bool, Array_InternalArray__ICollection_Remove_137, (Array * __this, KeyValuePair_2_System_Guid_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FC10, Array_InternalArray__ICollection_Remove_137__MethodInfo); DO_APP_FUNC(0x00F4A670, bool, Array_InternalArray__ICollection_Remove_138, (Array * __this, KeyValuePair_2_System_Guid_System_UInt32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FC60, Array_InternalArray__ICollection_Remove_138__MethodInfo); DO_APP_FUNC(0x00F4A6D0, bool, Array_InternalArray__ICollection_Remove_139, (Array * __this, KeyValuePair_2_UnityEngine_Hash128_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FC50, Array_InternalArray__ICollection_Remove_139__MethodInfo); DO_APP_FUNC(0x00F4A730, bool, Array_InternalArray__ICollection_Remove_140, (Array * __this, KeyValuePair_2_Pathfinding_Int2_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FC48, Array_InternalArray__ICollection_Remove_140__MethodInfo); DO_APP_FUNC(0x00F4A790, bool, Array_InternalArray__ICollection_Remove_141, (Array * __this, KeyValuePair_2_Pathfinding_Int3_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FC40, Array_InternalArray__ICollection_Remove_141__MethodInfo); DO_APP_FUNC(0x00F4A7F0, bool, Array_InternalArray__ICollection_Remove_142, (Array * __this, KeyValuePair_2_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FBD8, Array_InternalArray__ICollection_Remove_142__MethodInfo); DO_APP_FUNC(0x00F4A850, bool, Array_InternalArray__ICollection_Remove_143, (Array * __this, KeyValuePair_2_System_Int32_System_ValueTuple_2__3 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FBD0, Array_InternalArray__ICollection_Remove_143__MethodInfo); DO_APP_FUNC(0x00F4A8B0, bool, Array_InternalArray__ICollection_Remove_144, (Array * __this, KeyValuePair_2_System_Int32_System_ValueTuple_2__2 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FBC0, Array_InternalArray__ICollection_Remove_144__MethodInfo); DO_APP_FUNC(0x00F4A910, bool, Array_InternalArray__ICollection_Remove_145, (Array * __this, KeyValuePair_2_System_Int32_System_Boolean_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FBB8, Array_InternalArray__ICollection_Remove_145__MethodInfo); DO_APP_FUNC(0x00F4A970, bool, Array_InternalArray__ICollection_Remove_146, (Array * __this, KeyValuePair_2_System_Int32_System_ByteEnum_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FC08, Array_InternalArray__ICollection_Remove_146__MethodInfo); DO_APP_FUNC(0x00F4A9D0, bool, Array_InternalArray__ICollection_Remove_147, (Array * __this, KeyValuePair_2_System_Int32_System_Char_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FC00, Array_InternalArray__ICollection_Remove_147__MethodInfo); DO_APP_FUNC(0x00F4AA30, bool, Array_InternalArray__ICollection_Remove_148, (Array * __this, KeyValuePair_2_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FBF0, Array_InternalArray__ICollection_Remove_148__MethodInfo); DO_APP_FUNC(0x00F4AA90, bool, Array_InternalArray__ICollection_Remove_149, (Array * __this, KeyValuePair_2_System_Int32_System_Int16_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FBE0, Array_InternalArray__ICollection_Remove_149__MethodInfo); DO_APP_FUNC(0x00F4AAF0, bool, Array_InternalArray__ICollection_Remove_150, (Array * __this, KeyValuePair_2_System_Int32_Pathfinding_Int3_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FB80, Array_InternalArray__ICollection_Remove_150__MethodInfo); DO_APP_FUNC(0x00F4AB50, bool, Array_InternalArray__ICollection_Remove_151, (Array * __this, KeyValuePair_2_System_Int32_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FB70, Array_InternalArray__ICollection_Remove_151__MethodInfo); DO_APP_FUNC(0x00F4ABB0, bool, Array_InternalArray__ICollection_Remove_152, (Array * __this, KeyValuePair_2_System_Int32_System_Int32Enum_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FB68, Array_InternalArray__ICollection_Remove_152__MethodInfo); DO_APP_FUNC(0x00F4AC10, bool, Array_InternalArray__ICollection_Remove_153, (Array * __this, KeyValuePair_2_System_Int32_System_Int64_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FB60, Array_InternalArray__ICollection_Remove_153__MethodInfo); DO_APP_FUNC(0x00F4AC70, bool, Array_InternalArray__ICollection_Remove_154, (Array * __this, KeyValuePair_2_System_Int32_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FBB0, Array_InternalArray__ICollection_Remove_154__MethodInfo); DO_APP_FUNC(0x00F4ACD0, bool, Array_InternalArray__ICollection_Remove_155, (Array * __this, KeyValuePair_2_System_Int32_PlayerFlashlightBeam_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FBA8, Array_InternalArray__ICollection_Remove_155__MethodInfo); DO_APP_FUNC(0x00F4AD30, bool, Array_InternalArray__ICollection_Remove_156, (Array * __this, KeyValuePair_2_System_Int32_UnityEngine_RenderInstancedDataLayout_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FBA0, Array_InternalArray__ICollection_Remove_156__MethodInfo); DO_APP_FUNC(0x00F4AD90, bool, Array_InternalArray__ICollection_Remove_157, (Array * __this, KeyValuePair_2_System_Int32_System_Single_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FB90, Array_InternalArray__ICollection_Remove_157__MethodInfo); DO_APP_FUNC(0x00F4ADF0, bool, Array_InternalArray__ICollection_Remove_158, (Array * __this, KeyValuePair_2_System_Int32_UnityEngine_UIElements_TreeItem_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FB28, Array_InternalArray__ICollection_Remove_158__MethodInfo); DO_APP_FUNC(0x00F4AE50, bool, Array_InternalArray__ICollection_Remove_159, (Array * __this, KeyValuePair_2_System_Int32_UnityEngine_Vector2Int_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FB20, Array_InternalArray__ICollection_Remove_159__MethodInfo); DO_APP_FUNC(0x00F4AEB0, bool, Array_InternalArray__ICollection_Remove_160, (Array * __this, KeyValuePair_2_System_Int32_UnityEngine_Vector4_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FB10, Array_InternalArray__ICollection_Remove_160__MethodInfo); DO_APP_FUNC(0x00F4AF10, bool, Array_InternalArray__ICollection_Remove_161, (Array * __this, KeyValuePair_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FB08, Array_InternalArray__ICollection_Remove_161__MethodInfo); DO_APP_FUNC(0x00F4AF70, bool, Array_InternalArray__ICollection_Remove_162, (Array * __this, KeyValuePair_2_System_Int32Enum_System_Int32Enum_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FB50, Array_InternalArray__ICollection_Remove_162__MethodInfo); DO_APP_FUNC(0x00F4AFD0, bool, Array_InternalArray__ICollection_Remove_163, (Array * __this, KeyValuePair_2_System_Int32Enum_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FB48, Array_InternalArray__ICollection_Remove_163__MethodInfo); DO_APP_FUNC(0x00F4B030, bool, Array_InternalArray__ICollection_Remove_164, (Array * __this, KeyValuePair_2_System_Int64_UnityEngine_UIElements_ComputedStyle_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FB40, Array_InternalArray__ICollection_Remove_164__MethodInfo); DO_APP_FUNC(0x00F4B090, bool, Array_InternalArray__ICollection_Remove_165, (Array * __this, KeyValuePair_2_System_Int64_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FB30, Array_InternalArray__ICollection_Remove_165__MethodInfo); DO_APP_FUNC(0x00F4B0F0, bool, Array_InternalArray__ICollection_Remove_166, (Array * __this, KeyValuePair_2_System_IntPtr_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FAD8, Array_InternalArray__ICollection_Remove_166__MethodInfo); DO_APP_FUNC(0x00F4B150, bool, Array_InternalArray__ICollection_Remove_167, (Array * __this, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FAD0, Array_InternalArray__ICollection_Remove_167__MethodInfo); DO_APP_FUNC(0x00F4B1B0, bool, Array_InternalArray__ICollection_Remove_168, (Array * __this, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FAC0, Array_InternalArray__ICollection_Remove_168__MethodInfo); DO_APP_FUNC(0x00F4B210, bool, Array_InternalArray__ICollection_Remove_169, (Array * __this, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FAB0, Array_InternalArray__ICollection_Remove_169__MethodInfo); DO_APP_FUNC(0x00F4B270, bool, Array_InternalArray__ICollection_Remove_170, (Array * __this, KeyValuePair_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FB00, Array_InternalArray__ICollection_Remove_170__MethodInfo); DO_APP_FUNC(0x00F4B2D0, bool, Array_InternalArray__ICollection_Remove_171, (Array * __this, KeyValuePair_2_Photon_Bolt_NetworkId_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FAF0, Array_InternalArray__ICollection_Remove_171__MethodInfo); DO_APP_FUNC(0x00F4B330, bool, Array_InternalArray__ICollection_Remove_172, (Array * __this, KeyValuePair_2_System_Object_System_ArraySegment_1_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FAE8, Array_InternalArray__ICollection_Remove_172__MethodInfo); DO_APP_FUNC(0x00F4B390, bool, Array_InternalArray__ICollection_Remove_173, (Array * __this, KeyValuePair_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FAE0, Array_InternalArray__ICollection_Remove_173__MethodInfo); DO_APP_FUNC(0x00F4B3F0, bool, Array_InternalArray__ICollection_Remove_174, (Array * __this, KeyValuePair_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FA70, Array_InternalArray__ICollection_Remove_174__MethodInfo); DO_APP_FUNC(0x00F4B450, bool, Array_InternalArray__ICollection_Remove_175, (Array * __this, KeyValuePair_2_System_Object_System_Boolean_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FA60, Array_InternalArray__ICollection_Remove_175__MethodInfo); DO_APP_FUNC(0x00F4B4B0, bool, Array_InternalArray__ICollection_Remove_176, (Array * __this, KeyValuePair_2_System_Object_UnityEngine_Bounds_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FA50, Array_InternalArray__ICollection_Remove_176__MethodInfo); DO_APP_FUNC(0x00F4B510, bool, Array_InternalArray__ICollection_Remove_177, (Array * __this, KeyValuePair_2_System_Object_System_Byte_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FA40, Array_InternalArray__ICollection_Remove_177__MethodInfo); DO_APP_FUNC(0x00F4B570, bool, Array_InternalArray__ICollection_Remove_178, (Array * __this, KeyValuePair_2_System_Object_System_Char_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FAA0, Array_InternalArray__ICollection_Remove_178__MethodInfo); DO_APP_FUNC(0x00F4B5D0, bool, Array_InternalArray__ICollection_Remove_179, (Array * __this, KeyValuePair_2_System_Object_UnityEngine_Color_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FA90, Array_InternalArray__ICollection_Remove_179__MethodInfo); DO_APP_FUNC(0x00F4B630, bool, Array_InternalArray__ICollection_Remove_180, (Array * __this, KeyValuePair_2_System_Object_UnityEngine_Color32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FA88, Array_InternalArray__ICollection_Remove_180__MethodInfo); DO_APP_FUNC(0x00F4B690, bool, Array_InternalArray__ICollection_Remove_181, (Array * __this, KeyValuePair_2_System_Object_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FA80, Array_InternalArray__ICollection_Remove_181__MethodInfo); DO_APP_FUNC(0x00F4B6F0, bool, Array_InternalArray__ICollection_Remove_182, (Array * __this, KeyValuePair_2_System_Object_System_Int32Enum_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FA00, Array_InternalArray__ICollection_Remove_182__MethodInfo); DO_APP_FUNC(0x00F4B750, bool, Array_InternalArray__ICollection_Remove_183, (Array * __this, KeyValuePair_2_System_Object_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F9F0, Array_InternalArray__ICollection_Remove_183__MethodInfo); DO_APP_FUNC(0x00F4B7B0, bool, Array_InternalArray__ICollection_Remove_184, (Array * __this, KeyValuePair_2_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F9E8, Array_InternalArray__ICollection_Remove_184__MethodInfo); DO_APP_FUNC(0x00F4B810, bool, Array_InternalArray__ICollection_Remove_185, (Array * __this, KeyValuePair_2_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F9E0, Array_InternalArray__ICollection_Remove_185__MethodInfo); DO_APP_FUNC(0x00F4B870, bool, Array_InternalArray__ICollection_Remove_186, (Array * __this, KeyValuePair_2_System_Object_UnityEngine_Playables_Playable_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FA38, Array_InternalArray__ICollection_Remove_186__MethodInfo); DO_APP_FUNC(0x00F4B8D0, bool, Array_InternalArray__ICollection_Remove_187, (Array * __this, KeyValuePair_2_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FA30, Array_InternalArray__ICollection_Remove_187__MethodInfo); DO_APP_FUNC(0x00F4B930, bool, Array_InternalArray__ICollection_Remove_188, (Array * __this, KeyValuePair_2_System_Object_System_Resources_ResourceLocator_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FA20, Array_InternalArray__ICollection_Remove_188__MethodInfo); DO_APP_FUNC(0x00F4B990, bool, Array_InternalArray__ICollection_Remove_189, (Array * __this, KeyValuePair_2_System_Object_System_Single_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0FA10, Array_InternalArray__ICollection_Remove_189__MethodInfo); DO_APP_FUNC(0x00F4B9F0, bool, Array_InternalArray__ICollection_Remove_190, (Array * __this, KeyValuePair_2_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F9A8, Array_InternalArray__ICollection_Remove_190__MethodInfo); DO_APP_FUNC(0x00F4BA50, bool, Array_InternalArray__ICollection_Remove_191, (Array * __this, KeyValuePair_2_System_Object_UnityEngine_UIElements_TextureId_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F9A0, Array_InternalArray__ICollection_Remove_191__MethodInfo); DO_APP_FUNC(0x00F4BAB0, bool, Array_InternalArray__ICollection_Remove_192, (Array * __this, KeyValuePair_2_System_Object_System_TimeSpan_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F990, Array_InternalArray__ICollection_Remove_192__MethodInfo); DO_APP_FUNC(0x00F4BB10, bool, Array_InternalArray__ICollection_Remove_193, (Array * __this, KeyValuePair_2_System_Object_UdpKit_UdpEndPoint_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F980, Array_InternalArray__ICollection_Remove_193__MethodInfo); DO_APP_FUNC(0x00F4BB70, bool, Array_InternalArray__ICollection_Remove_194, (Array * __this, KeyValuePair_2_System_Object_UnityEngine_Vector2_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F9D0, Array_InternalArray__ICollection_Remove_194__MethodInfo); DO_APP_FUNC(0x00F4BBD0, bool, Array_InternalArray__ICollection_Remove_195, (Array * __this, KeyValuePair_2_System_Object_UnityEngine_Vector3_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F9C8, Array_InternalArray__ICollection_Remove_195__MethodInfo); DO_APP_FUNC(0x00F4BC30, bool, Array_InternalArray__ICollection_Remove_196, (Array * __this, KeyValuePair_2_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F9C0, Array_InternalArray__ICollection_Remove_196__MethodInfo); DO_APP_FUNC(0x00F4BC90, bool, Array_InternalArray__ICollection_Remove_197, (Array * __this, KeyValuePair_2_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F9B0, Array_InternalArray__ICollection_Remove_197__MethodInfo); DO_APP_FUNC(0x00F4BCF0, bool, Array_InternalArray__ICollection_Remove_198, (Array * __this, KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F950, Array_InternalArray__ICollection_Remove_198__MethodInfo); DO_APP_FUNC(0x00F4BD50, bool, Array_InternalArray__ICollection_Remove_199, (Array * __this, KeyValuePair_2_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F940, Array_InternalArray__ICollection_Remove_199__MethodInfo); DO_APP_FUNC(0x00F4BDB0, bool, Array_InternalArray__ICollection_Remove_200, (Array * __this, KeyValuePair_2_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F938, Array_InternalArray__ICollection_Remove_200__MethodInfo); DO_APP_FUNC(0x00F4BE10, bool, Array_InternalArray__ICollection_Remove_201, (Array * __this, KeyValuePair_2_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F930, Array_InternalArray__ICollection_Remove_201__MethodInfo); DO_APP_FUNC(0x00F4BE70, bool, Array_InternalArray__ICollection_Remove_202, (Array * __this, KeyValuePair_2_System_Object_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F978, Array_InternalArray__ICollection_Remove_202__MethodInfo); DO_APP_FUNC(0x00F4BED0, bool, Array_InternalArray__ICollection_Remove_203, (Array * __this, KeyValuePair_2_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F970, Array_InternalArray__ICollection_Remove_203__MethodInfo); DO_APP_FUNC(0x00F4BF30, bool, Array_InternalArray__ICollection_Remove_204, (Array * __this, KeyValuePair_2_Photon_Bolt_PrefabId_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F960, Array_InternalArray__ICollection_Remove_204__MethodInfo); DO_APP_FUNC(0x00F4BF90, bool, Array_InternalArray__ICollection_Remove_205, (Array * __this, KeyValuePair_2_UnityEngine_PropertyName_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F958, Array_InternalArray__ICollection_Remove_205__MethodInfo); DO_APP_FUNC(0x00F4BFF0, bool, Array_InternalArray__ICollection_Remove_206, (Array * __this, KeyValuePair_2_UnityEngine_RaycastHit_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F908, Array_InternalArray__ICollection_Remove_206__MethodInfo); DO_APP_FUNC(0x00F4C050, bool, Array_InternalArray__ICollection_Remove_207, (Array * __this, KeyValuePair_2_System_Single_SplineMesh_CurveSample_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F900, Array_InternalArray__ICollection_Remove_207__MethodInfo); DO_APP_FUNC(0x00F4C0B0, bool, Array_InternalArray__ICollection_Remove_208, (Array * __this, KeyValuePair_2_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F8F8, Array_InternalArray__ICollection_Remove_208__MethodInfo); DO_APP_FUNC(0x00F4C110, bool, Array_InternalArray__ICollection_Remove_209, (Array * __this, KeyValuePair_2_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F8F0, Array_InternalArray__ICollection_Remove_209__MethodInfo); DO_APP_FUNC(0x00F4C170, bool, Array_InternalArray__ICollection_Remove_210, (Array * __this, KeyValuePair_2_Photon_Bolt_TypeId_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F928, Array_InternalArray__ICollection_Remove_210__MethodInfo); DO_APP_FUNC(0x00F4C1D0, bool, Array_InternalArray__ICollection_Remove_211, (Array * __this, KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F920, Array_InternalArray__ICollection_Remove_211__MethodInfo); DO_APP_FUNC(0x00F4C230, bool, Array_InternalArray__ICollection_Remove_212, (Array * __this, KeyValuePair_2_System_UInt16_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F918, Array_InternalArray__ICollection_Remove_212__MethodInfo); DO_APP_FUNC(0x00F4C290, bool, Array_InternalArray__ICollection_Remove_213, (Array * __this, KeyValuePair_2_System_UInt16_Dissonance_PlayerChannel_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F910, Array_InternalArray__ICollection_Remove_213__MethodInfo); DO_APP_FUNC(0x00F4C2F0, bool, Array_InternalArray__ICollection_Remove_214, (Array * __this, KeyValuePair_2_System_UInt16_Dissonance_RoomChannel_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F8B8, Array_InternalArray__ICollection_Remove_214__MethodInfo); DO_APP_FUNC(0x00F4C350, bool, Array_InternalArray__ICollection_Remove_215, (Array * __this, KeyValuePair_2_System_UInt32_System_Boolean_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F8B0, Array_InternalArray__ICollection_Remove_215__MethodInfo); DO_APP_FUNC(0x00F4C3B0, bool, Array_InternalArray__ICollection_Remove_216, (Array * __this, KeyValuePair_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F8A0, Array_InternalArray__ICollection_Remove_216__MethodInfo); DO_APP_FUNC(0x00F4C410, bool, Array_InternalArray__ICollection_Remove_217, (Array * __this, KeyValuePair_2_System_UInt32_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F898, Array_InternalArray__ICollection_Remove_217__MethodInfo); DO_APP_FUNC(0x00F4C470, bool, Array_InternalArray__ICollection_Remove_218, (Array * __this, KeyValuePair_2_System_UInt32_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F8E0, Array_InternalArray__ICollection_Remove_218__MethodInfo); DO_APP_FUNC(0x00F4C4D0, bool, Array_InternalArray__ICollection_Remove_219, (Array * __this, KeyValuePair_2_System_UInt32_SessionClient_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F8D8, Array_InternalArray__ICollection_Remove_219__MethodInfo); DO_APP_FUNC(0x00F4C530, bool, Array_InternalArray__ICollection_Remove_220, (Array * __this, KeyValuePair_2_System_UInt64_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F8D0, Array_InternalArray__ICollection_Remove_220__MethodInfo); DO_APP_FUNC(0x00F4C590, bool, Array_InternalArray__ICollection_Remove_221, (Array * __this, KeyValuePair_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F8C0, Array_InternalArray__ICollection_Remove_221__MethodInfo); DO_APP_FUNC(0x00F4C5F0, bool, Array_InternalArray__ICollection_Remove_222, (Array * __this, KeyValuePair_2_UdpKit_UdpChannelName_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F860, Array_InternalArray__ICollection_Remove_222__MethodInfo); DO_APP_FUNC(0x00F4C650, bool, Array_InternalArray__ICollection_Remove_223, (Array * __this, KeyValuePair_2_UdpKit_UdpEndPoint_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F850, Array_InternalArray__ICollection_Remove_223__MethodInfo); DO_APP_FUNC(0x00F4C6B0, bool, Array_InternalArray__ICollection_Remove_224, (Array * __this, KeyValuePair_2_UdpKit_UdpEndPoint_System_UInt32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F840, Array_InternalArray__ICollection_Remove_224__MethodInfo); DO_APP_FUNC(0x00F4C710, bool, Array_InternalArray__ICollection_Remove_225, (Array * __this, KeyValuePair_2_Photon_Bolt_UniqueId_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F830, Array_InternalArray__ICollection_Remove_225__MethodInfo); DO_APP_FUNC(0x00F4C770, bool, Array_InternalArray__ICollection_Remove_226, (Array * __this, KeyValuePair_2_UnityEngine_Vector3_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F890, Array_InternalArray__ICollection_Remove_226__MethodInfo); DO_APP_FUNC(0x00F4C7D0, bool, Array_InternalArray__ICollection_Remove_227, (Array * __this, KeyValuePair_2_UnityEngine_Vector3Int_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F880, Array_InternalArray__ICollection_Remove_227__MethodInfo); DO_APP_FUNC(0x00F4C830, bool, Array_InternalArray__ICollection_Remove_228, (Array * __this, KeyValuePair_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F878, Array_InternalArray__ICollection_Remove_228__MethodInfo); DO_APP_FUNC(0x00F4C890, bool, Array_InternalArray__ICollection_Remove_229, (Array * __this, KeyValuePair_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F870, Array_InternalArray__ICollection_Remove_229__MethodInfo); DO_APP_FUNC(0x00F4C8F0, bool, Array_InternalArray__ICollection_Remove_230, (Array * __this, KeyValuePair_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F7F0, Array_InternalArray__ICollection_Remove_230__MethodInfo); DO_APP_FUNC(0x00F4C950, bool, Array_InternalArray__ICollection_Remove_231, (Array * __this, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F7E0, Array_InternalArray__ICollection_Remove_231__MethodInfo); DO_APP_FUNC(0x00F4C9B0, bool, Array_InternalArray__ICollection_Remove_232, (Array * __this, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F7D8, Array_InternalArray__ICollection_Remove_232__MethodInfo); DO_APP_FUNC(0x00F4CA10, bool, Array_InternalArray__ICollection_Remove_233, (Array * __this, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F7D0, Array_InternalArray__ICollection_Remove_233__MethodInfo); DO_APP_FUNC(0x00F4CA70, bool, Array_InternalArray__ICollection_Remove_234, (Array * __this, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F828, Array_InternalArray__ICollection_Remove_234__MethodInfo); DO_APP_FUNC(0x00F4CAD0, bool, Array_InternalArray__ICollection_Remove_235, (Array * __this, KeyValuePair_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F820, Array_InternalArray__ICollection_Remove_235__MethodInfo); DO_APP_FUNC(0x00F4CB30, bool, Array_InternalArray__ICollection_Remove_236, (Array * __this, KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F810, Array_InternalArray__ICollection_Remove_236__MethodInfo); DO_APP_FUNC(0x00F4CB90, bool, Array_InternalArray__ICollection_Remove_237, (Array * __this, KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F800, Array_InternalArray__ICollection_Remove_237__MethodInfo); DO_APP_FUNC(0x00F4CBF0, bool, Array_InternalArray__ICollection_Remove_238, (Array * __this, KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F788, Array_InternalArray__ICollection_Remove_238__MethodInfo); DO_APP_FUNC(0x00F4CC50, bool, Array_InternalArray__ICollection_Remove_239, (Array * __this, KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F780, Array_InternalArray__ICollection_Remove_239__MethodInfo); DO_APP_FUNC(0x00F4CCB0, bool, Array_InternalArray__ICollection_Remove_240, (Array * __this, KeyValuePair_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F770, Array_InternalArray__ICollection_Remove_240__MethodInfo); DO_APP_FUNC(0x00F4CD10, bool, Array_InternalArray__ICollection_Remove_241, (Array * __this, ThreadLocal_1_T_LinkedSlotVolatile_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F760, Array_InternalArray__ICollection_Remove_241__MethodInfo); DO_APP_FUNC(0x00F4CD70, bool, Array_InternalArray__ICollection_Remove_242, (Array * __this, NativeArray_1_System_UInt16_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F7C0, Array_InternalArray__ICollection_Remove_242__MethodInfo); DO_APP_FUNC(0x00F4CDD0, bool, Array_InternalArray__ICollection_Remove_243, (Array * __this, NativeArray_1_UnityEngine_UIElements_Vertex_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F7B0, Array_InternalArray__ICollection_Remove_243__MethodInfo); DO_APP_FUNC(0x00F4CE30, bool, Array_InternalArray__ICollection_Remove_244, (Array * __this, NonAllocDictionary_2_K_V_Node_System_Byte_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F7A0, Array_InternalArray__ICollection_Remove_244__MethodInfo); DO_APP_FUNC(0x00F4CE90, bool, Array_InternalArray__ICollection_Remove_245, (Array * __this, NonAllocDictionary_2_K_V_Node_System_Int32_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F790, Array_InternalArray__ICollection_Remove_245__MethodInfo); DO_APP_FUNC(0x00F4CEF0, bool, Array_InternalArray__ICollection_Remove_246, (Array * __this, NonAllocDictionary_2_K_V_Node_System_Object_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F730, Array_InternalArray__ICollection_Remove_246__MethodInfo); DO_APP_FUNC(0x00F4CF50, bool, Array_InternalArray__ICollection_Remove_247, (Array * __this, InputStateHistory_1_TValue_Record_TouchState_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F720, Array_InternalArray__ICollection_Remove_247__MethodInfo); DO_APP_FUNC(0x00F4CFB0, bool, Array_InternalArray__ICollection_Remove_248, (Array * __this, RenderGraphResourcePool_1_Type_ResourceLogInfo_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F718, Array_InternalArray__ICollection_Remove_248__MethodInfo); DO_APP_FUNC(0x00F4D010, bool, Array_InternalArray__ICollection_Remove_249, (Array * __this, STuple_2_System_Object_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F710, Array_InternalArray__ICollection_Remove_249__MethodInfo); DO_APP_FUNC(0x00F4D070, bool, Array_InternalArray__ICollection_Remove_250, (Array * __this, HashSet_1_T_Slot_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F758, Array_InternalArray__ICollection_Remove_250__MethodInfo); DO_APP_FUNC(0x00F4D0D0, bool, Array_InternalArray__ICollection_Remove_251, (Array * __this, HashSet_1_T_Slot_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F750, Array_InternalArray__ICollection_Remove_251__MethodInfo); DO_APP_FUNC(0x00F4D130, bool, Array_InternalArray__ICollection_Remove_252, (Array * __this, Set_1_TElement_Slot_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F740, Array_InternalArray__ICollection_Remove_252__MethodInfo); DO_APP_FUNC(0x00F4D190, bool, Array_InternalArray__ICollection_Remove_253, (Array * __this, HashSet_1_T_Slot_System_Int32Enum_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F738, Array_InternalArray__ICollection_Remove_253__MethodInfo); DO_APP_FUNC(0x00F4D1F0, bool, Array_InternalArray__ICollection_Remove_254, (Array * __this, HashSet_1_T_Slot_UnityEngine_InputSystem_Utilities_InternedString_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F6D0, Array_InternalArray__ICollection_Remove_254__MethodInfo); DO_APP_FUNC(0x00F4D250, bool, Array_InternalArray__ICollection_Remove_255, (Array * __this, HashSet_1_T_Slot_Photon_Bolt_NetworkId_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F6C8, Array_InternalArray__ICollection_Remove_255__MethodInfo); DO_APP_FUNC(0x00F4D2B0, bool, Array_InternalArray__ICollection_Remove_256, (Array * __this, HashSet_1_T_Slot_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F6C0, Array_InternalArray__ICollection_Remove_256__MethodInfo); DO_APP_FUNC(0x00F4D310, bool, Array_InternalArray__ICollection_Remove_257, (Array * __this, Set_1_TElement_Slot_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F6B8, Array_InternalArray__ICollection_Remove_257__MethodInfo); DO_APP_FUNC(0x00F4D370, bool, Array_InternalArray__ICollection_Remove_258, (Array * __this, ConcurrentQueue_1_T_Segment_T_Slot_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F700, Array_InternalArray__ICollection_Remove_258__MethodInfo); DO_APP_FUNC(0x00F4D3D0, bool, Array_InternalArray__ICollection_Remove_259, (Array * __this, HashSet_1_T_Slot_System_UInt32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F6F0, Array_InternalArray__ICollection_Remove_259__MethodInfo); DO_APP_FUNC(0x00F4D430, bool, Array_InternalArray__ICollection_Remove_260, (Array * __this, HashSet_1_T_Slot_System_UInt64_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F6E8, Array_InternalArray__ICollection_Remove_260__MethodInfo); DO_APP_FUNC(0x00F4D490, bool, Array_InternalArray__ICollection_Remove_261, (Array * __this, HashSet_1_T_Slot_UdpKit_UdpEndPoint_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F6E0, Array_InternalArray__ICollection_Remove_261__MethodInfo); DO_APP_FUNC(0x00F4D4F0, bool, Array_InternalArray__ICollection_Remove_262, (Array * __this, HashSet_1_T_Slot_UdpKit_UdpIPv4Address_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F688, Array_InternalArray__ICollection_Remove_262__MethodInfo); DO_APP_FUNC(0x00F4D550, bool, Array_InternalArray__ICollection_Remove_263, (Array * __this, HashSet_1_T_Slot_UnityEngine_Vector3_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F680, Array_InternalArray__ICollection_Remove_263__MethodInfo); DO_APP_FUNC(0x00F4D5B0, bool, Array_InternalArray__ICollection_Remove_264, (Array * __this, HashSet_1_T_Slot_UnityEngine_Vector3Int_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F670, Array_InternalArray__ICollection_Remove_264__MethodInfo); DO_APP_FUNC(0x00F4D610, bool, Array_InternalArray__ICollection_Remove_265, (Array * __this, StylePropertyAnimationSystem_Values_1_T_StyleData_Background_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F668, Array_InternalArray__ICollection_Remove_265__MethodInfo); DO_APP_FUNC(0x00F4D670, bool, Array_InternalArray__ICollection_Remove_266, (Array * __this, StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F6B0, Array_InternalArray__ICollection_Remove_266__MethodInfo); DO_APP_FUNC(0x00F4D6D0, bool, Array_InternalArray__ICollection_Remove_267, (Array * __this, StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F6A8, Array_InternalArray__ICollection_Remove_267__MethodInfo); DO_APP_FUNC(0x00F4D730, bool, Array_InternalArray__ICollection_Remove_268, (Array * __this, StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F6A0, Array_InternalArray__ICollection_Remove_268__MethodInfo); DO_APP_FUNC(0x00F4D790, bool, Array_InternalArray__ICollection_Remove_269, (Array * __this, StylePropertyAnimationSystem_Values_1_T_StyleData_Length_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F690, Array_InternalArray__ICollection_Remove_269__MethodInfo); DO_APP_FUNC(0x00F4D7F0, bool, Array_InternalArray__ICollection_Remove_270, (Array * __this, StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F630, Array_InternalArray__ICollection_Remove_270__MethodInfo); DO_APP_FUNC(0x00F4D850, bool, Array_InternalArray__ICollection_Remove_271, (Array * __this, StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F628, Array_InternalArray__ICollection_Remove_271__MethodInfo); DO_APP_FUNC(0x00F4D8B0, bool, Array_InternalArray__ICollection_Remove_272, (Array * __this, StylePropertyAnimationSystem_Values_1_T_StyleData_Scale_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F620, Array_InternalArray__ICollection_Remove_272__MethodInfo); DO_APP_FUNC(0x00F4D910, bool, Array_InternalArray__ICollection_Remove_273, (Array * __this, StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F618, Array_InternalArray__ICollection_Remove_273__MethodInfo); DO_APP_FUNC(0x00F4D970, bool, Array_InternalArray__ICollection_Remove_274, (Array * __this, StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F660, Array_InternalArray__ICollection_Remove_274__MethodInfo); DO_APP_FUNC(0x00F4D9D0, bool, Array_InternalArray__ICollection_Remove_275, (Array * __this, StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F650, Array_InternalArray__ICollection_Remove_275__MethodInfo); DO_APP_FUNC(0x00F4DA30, bool, Array_InternalArray__ICollection_Remove_276, (Array * __this, StylePropertyAnimationSystem_Values_1_T_StyleData_Translate_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F648, Array_InternalArray__ICollection_Remove_276__MethodInfo); DO_APP_FUNC(0x00F4DA90, bool, Array_InternalArray__ICollection_Remove_277, (Array * __this, TMP_TextProcessingStack_1_UnityEngine_Color32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F640, Array_InternalArray__ICollection_Remove_277__MethodInfo); DO_APP_FUNC(0x00F4DAF0, bool, Array_InternalArray__ICollection_Remove_278, (Array * __this, TMP_TextProcessingStack_1_HighlightState_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F5D0, Array_InternalArray__ICollection_Remove_278__MethodInfo); DO_APP_FUNC(0x00F4DB50, bool, Array_InternalArray__ICollection_Remove_279, (Array * __this, TMP_TextProcessingStack_1_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F5C8, Array_InternalArray__ICollection_Remove_279__MethodInfo); DO_APP_FUNC(0x00F4DBB0, bool, Array_InternalArray__ICollection_Remove_280, (Array * __this, TMP_TextProcessingStack_1_System_Int32Enum_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F5C0, Array_InternalArray__ICollection_Remove_280__MethodInfo); DO_APP_FUNC(0x00F4DC10, bool, Array_InternalArray__ICollection_Remove_281, (Array * __this, TMP_TextProcessingStack_1_MaterialReference_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F5B0, Array_InternalArray__ICollection_Remove_281__MethodInfo); DO_APP_FUNC(0x00F4DC70, bool, Array_InternalArray__ICollection_Remove_282, (Array * __this, TMP_TextProcessingStack_1_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F610, Array_InternalArray__ICollection_Remove_282__MethodInfo); DO_APP_FUNC(0x00F4DCD0, bool, Array_InternalArray__ICollection_Remove_283, (Array * __this, TMP_TextProcessingStack_1_System_Single_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F600, Array_InternalArray__ICollection_Remove_283__MethodInfo); DO_APP_FUNC(0x00F4DD30, bool, Array_InternalArray__ICollection_Remove_284, (Array * __this, TMP_TextProcessingStack_1_WordWrapState_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F5F0, Array_InternalArray__ICollection_Remove_284__MethodInfo); DO_APP_FUNC(0x00F4DD90, bool, Array_InternalArray__ICollection_Remove_285, (Array * __this, StylePropertyAnimationSystem_Values_1_T_TimingData_Background_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F5E0, Array_InternalArray__ICollection_Remove_285__MethodInfo); DO_APP_FUNC(0x00F4DDF0, bool, Array_InternalArray__ICollection_Remove_286, (Array * __this, StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F570, Array_InternalArray__ICollection_Remove_286__MethodInfo); DO_APP_FUNC(0x00F4DE50, bool, Array_InternalArray__ICollection_Remove_287, (Array * __this, StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F560, Array_InternalArray__ICollection_Remove_287__MethodInfo); DO_APP_FUNC(0x00F4DEB0, bool, Array_InternalArray__ICollection_Remove_288, (Array * __this, StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F550, Array_InternalArray__ICollection_Remove_288__MethodInfo); DO_APP_FUNC(0x00F4DF10, bool, Array_InternalArray__ICollection_Remove_289, (Array * __this, StylePropertyAnimationSystem_Values_1_T_TimingData_Length_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F540, Array_InternalArray__ICollection_Remove_289__MethodInfo); DO_APP_FUNC(0x00F4DF70, bool, Array_InternalArray__ICollection_Remove_290, (Array * __this, StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F5A0, Array_InternalArray__ICollection_Remove_290__MethodInfo); DO_APP_FUNC(0x00F4DFD0, bool, Array_InternalArray__ICollection_Remove_291, (Array * __this, StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F590, Array_InternalArray__ICollection_Remove_291__MethodInfo); DO_APP_FUNC(0x00F4E030, bool, Array_InternalArray__ICollection_Remove_292, (Array * __this, StylePropertyAnimationSystem_Values_1_T_TimingData_Scale_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F580, Array_InternalArray__ICollection_Remove_292__MethodInfo); DO_APP_FUNC(0x00F4E090, bool, Array_InternalArray__ICollection_Remove_293, (Array * __this, StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F578, Array_InternalArray__ICollection_Remove_293__MethodInfo); DO_APP_FUNC(0x00F4E0F0, bool, Array_InternalArray__ICollection_Remove_294, (Array * __this, StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F508, Array_InternalArray__ICollection_Remove_294__MethodInfo); DO_APP_FUNC(0x00F4E150, bool, Array_InternalArray__ICollection_Remove_295, (Array * __this, StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F500, Array_InternalArray__ICollection_Remove_295__MethodInfo); DO_APP_FUNC(0x00F4E1B0, bool, Array_InternalArray__ICollection_Remove_296, (Array * __this, StylePropertyAnimationSystem_Values_1_T_TimingData_Translate_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F4F0, Array_InternalArray__ICollection_Remove_296__MethodInfo); DO_APP_FUNC(0x00F4E210, bool, Array_InternalArray__ICollection_Remove_297, (Array * __this, ValueTuple_1_Boolean_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F4E8, Array_InternalArray__ICollection_Remove_297__MethodInfo); DO_APP_FUNC(0x00F4E270, bool, Array_InternalArray__ICollection_Remove_298, (Array * __this, ValueTuple_2_Int32_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F530, Array_InternalArray__ICollection_Remove_298__MethodInfo); DO_APP_FUNC(0x00F4E2D0, bool, Array_InternalArray__ICollection_Remove_299, (Array * __this, ValueTuple_2_Int32_UnityEngine_Vector2Int_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F528, Array_InternalArray__ICollection_Remove_299__MethodInfo); DO_APP_FUNC(0x00F4E330, bool, Array_InternalArray__ICollection_Remove_300, (Array * __this, ValueTuple_2_IntPtr_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F520, Array_InternalArray__ICollection_Remove_300__MethodInfo); DO_APP_FUNC(0x00F4E390, bool, Array_InternalArray__ICollection_Remove_301, (Array * __this, ValueTuple_2_Object_ValueTuple_2_Object_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F510, Array_InternalArray__ICollection_Remove_301__MethodInfo); DO_APP_FUNC(0x00F4E3F0, bool, Array_InternalArray__ICollection_Remove_302, (Array * __this, ValueTuple_2_Object_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F4B0, Array_InternalArray__ICollection_Remove_302__MethodInfo); DO_APP_FUNC(0x00F4E450, bool, Array_InternalArray__ICollection_Remove_303, (Array * __this, ValueTuple_2_Object_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F4A0, Array_InternalArray__ICollection_Remove_303__MethodInfo); DO_APP_FUNC(0x00F4E4B0, bool, Array_InternalArray__ICollection_Remove_304, (Array * __this, ValueTuple_2_UnityEngine_Vector3Int_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F498, Array_InternalArray__ICollection_Remove_304__MethodInfo); DO_APP_FUNC(0x00F4E510, bool, Array_InternalArray__ICollection_Remove_305, (Array * __this, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F490, Array_InternalArray__ICollection_Remove_305__MethodInfo); DO_APP_FUNC(0x00F4E570, bool, Array_InternalArray__ICollection_Remove_306, (Array * __this, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F4E0, Array_InternalArray__ICollection_Remove_306__MethodInfo); DO_APP_FUNC(0x00F4E5D0, bool, Array_InternalArray__ICollection_Remove_307, (Array * __this, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F4D0, Array_InternalArray__ICollection_Remove_307__MethodInfo); DO_APP_FUNC(0x00F4E630, bool, Array_InternalArray__ICollection_Remove_308, (Array * __this, ValueTuple_3_Object_Object_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F4C0, Array_InternalArray__ICollection_Remove_308__MethodInfo); DO_APP_FUNC(0x00F4E690, bool, Array_InternalArray__ICollection_Remove_309, (Array * __this, AnimatorClipInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F4B8, Array_InternalArray__ICollection_Remove_309__MethodInfo); DO_APP_FUNC(0x00F4E6F0, bool, Array_InternalArray__ICollection_Remove_310, (Array * __this, AstarWorkItem item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F468, Array_InternalArray__ICollection_Remove_310__MethodInfo); DO_APP_FUNC(0x00F4E750, bool, Array_InternalArray__ICollection_Remove_311, (Array * __this, AsyncOperationHandle item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F460, Array_InternalArray__ICollection_Remove_311__MethodInfo); DO_APP_FUNC(0x00F4E7B0, bool, Array_InternalArray__ICollection_Remove_312, (Array * __this, AxisCalibrationData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F458, Array_InternalArray__ICollection_Remove_312__MethodInfo); DO_APP_FUNC(0x00F4E810, bool, Array_InternalArray__ICollection_Remove_313, (Array * __this, Background item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F450, Array_InternalArray__ICollection_Remove_313__MethodInfo); DO_APP_FUNC(0x00F4E870, bool, Array_InternalArray__ICollection_Remove_314, (Array * __this, BatchVisibility item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F488, Array_InternalArray__ICollection_Remove_314__MethodInfo); DO_APP_FUNC(0x00F4E8D0, bool, Array_InternalArray__ICollection_Remove_315, (Array * __this, BoltPeer item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F480, Array_InternalArray__ICollection_Remove_315__MethodInfo); DO_APP_FUNC(0x00F4E930, bool, Array_InternalArray__ICollection_Remove_316, (Array * __this, BoltPhysicsHit item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F478, Array_InternalArray__ICollection_Remove_316__MethodInfo); DO_APP_FUNC(0x00F4E990, bool, Array_InternalArray__ICollection_Remove_317, (Array * __this, BoneWeight item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F470, Array_InternalArray__ICollection_Remove_317__MethodInfo); DO_APP_FUNC(0x00F4E9F0, bool, Array_InternalArray__ICollection_Remove_318, (Array * __this, BoneWeight1 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F420, Array_InternalArray__ICollection_Remove_318__MethodInfo); DO_APP_FUNC(0x00F4EA50, bool, Array_InternalArray__ICollection_Remove_319, (Array * __this, bool item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F410, Array_InternalArray__ICollection_Remove_319__MethodInfo); DO_APP_FUNC(0x00F4EAB0, bool, Array_InternalArray__ICollection_Remove_320, (Array * __this, BoundedPlane item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F408, Array_InternalArray__ICollection_Remove_320__MethodInfo); DO_APP_FUNC(0x00F4EB10, bool, Array_InternalArray__ICollection_Remove_321, (Array * __this, BoundingSphere item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F400, Array_InternalArray__ICollection_Remove_321__MethodInfo); DO_APP_FUNC(0x00F4EB70, bool, Array_InternalArray__ICollection_Remove_322, (Array * __this, Bounds item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F448, Array_InternalArray__ICollection_Remove_322__MethodInfo); DO_APP_FUNC(0x00F4EBD0, bool, Array_InternalArray__ICollection_Remove_323, (Array * __this, uint8_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F440, Array_InternalArray__ICollection_Remove_323__MethodInfo); DO_APP_FUNC(0x00F4EC30, bool, Array_InternalArray__ICollection_Remove_324, (Array * __this, ByteEnum__Enum item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F430, Array_InternalArray__ICollection_Remove_324__MethodInfo); DO_APP_FUNC(0x00F4EC90, bool, Array_InternalArray__ICollection_Remove_325, (Array * __this, CancellationToken item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F428, Array_InternalArray__ICollection_Remove_325__MethodInfo); DO_APP_FUNC(0x00F4ECF0, bool, Array_InternalArray__ICollection_Remove_326, (Array * __this, CancellationTokenRegistration item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F3C8, Array_InternalArray__ICollection_Remove_326__MethodInfo); DO_APP_FUNC(0x00F4ED50, bool, Array_InternalArray__ICollection_Remove_327, (Array * __this, uint16_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F3C0, Array_InternalArray__ICollection_Remove_327__MethodInfo); DO_APP_FUNC(0x00F4EDB0, bool, Array_InternalArray__ICollection_Remove_328, (Array * __this, ClientInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F3B0, Array_InternalArray__ICollection_Remove_328__MethodInfo); DO_APP_FUNC(0x00F4EE10, bool, Array_InternalArray__ICollection_Remove_329, (Array * __this, ClothSkinningCoefficient item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F3A0, Array_InternalArray__ICollection_Remove_329__MethodInfo); DO_APP_FUNC(0x00F4EE70, bool, Array_InternalArray__ICollection_Remove_330, (Array * __this, ClothSphereColliderPair item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F3F0, Array_InternalArray__ICollection_Remove_330__MethodInfo); DO_APP_FUNC(0x00F4EED0, bool, Array_InternalArray__ICollection_Remove_331, (Array * __this, Color item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F3E8, Array_InternalArray__ICollection_Remove_331__MethodInfo); DO_APP_FUNC(0x00F4EF30, bool, Array_InternalArray__ICollection_Remove_332, (Array * __this, Color32 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F3E0, Array_InternalArray__ICollection_Remove_332__MethodInfo); DO_APP_FUNC(0x00F4EF90, bool, Array_InternalArray__ICollection_Remove_333, (Array * __this, ColorBlock item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F3D0, Array_InternalArray__ICollection_Remove_333__MethodInfo); DO_APP_FUNC(0x00F4EFF0, bool, Array_InternalArray__ICollection_Remove_334, (Array * __this, CombineInstance item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F360, Array_InternalArray__ICollection_Remove_334__MethodInfo); DO_APP_FUNC(0x00F4F050, bool, Array_InternalArray__ICollection_Remove_335, (Array * __this, CompactVoxelCell item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F350, Array_InternalArray__ICollection_Remove_335__MethodInfo); DO_APP_FUNC(0x00F4F0B0, bool, Array_InternalArray__ICollection_Remove_336, (Array * __this, CompactVoxelSpan item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F340, Array_InternalArray__ICollection_Remove_336__MethodInfo); DO_APP_FUNC(0x00F4F110, bool, Array_InternalArray__ICollection_Remove_337, (Array * __this, ComputedStyle item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F330, Array_InternalArray__ICollection_Remove_337__MethodInfo); DO_APP_FUNC(0x00F4F170, bool, Array_InternalArray__ICollection_Remove_338, (Array * __this, ComputedTransitionProperty item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F390, Array_InternalArray__ICollection_Remove_338__MethodInfo); DO_APP_FUNC(0x00F4F1D0, bool, Array_InternalArray__ICollection_Remove_339, (Array * __this, ConfigurationDescriptor item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F380, Array_InternalArray__ICollection_Remove_339__MethodInfo); DO_APP_FUNC(0x00F4F230, bool, Array_InternalArray__ICollection_Remove_340, (Array * __this, Connection item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F378, Array_InternalArray__ICollection_Remove_340__MethodInfo); DO_APP_FUNC(0x00F4F290, bool, Array_InternalArray__ICollection_Remove_341, (Array * __this, ContactPoint item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F370, Array_InternalArray__ICollection_Remove_341__MethodInfo); DO_APP_FUNC(0x00F4F2F0, bool, Array_InternalArray__ICollection_Remove_342, (Array * __this, ContactPoint2D item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F2F0, Array_InternalArray__ICollection_Remove_342__MethodInfo); DO_APP_FUNC(0x00F4F350, bool, Array_InternalArray__ICollection_Remove_343, (Array * __this, ControllerPollingInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F2E0, Array_InternalArray__ICollection_Remove_343__MethodInfo); DO_APP_FUNC(0x00F4F3B0, bool, Array_InternalArray__ICollection_Remove_344, (Array * __this, ControllerTemplateElementTarget item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F2D0, Array_InternalArray__ICollection_Remove_344__MethodInfo); DO_APP_FUNC(0x00F4F410, bool, Array_InternalArray__ICollection_Remove_345, (Array * __this, CurveSample item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F2C8, Array_InternalArray__ICollection_Remove_345__MethodInfo); DO_APP_FUNC(0x00F4F470, bool, Array_InternalArray__ICollection_Remove_346, (Array * __this, CustomAttributeNamedArgument item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F328, Array_InternalArray__ICollection_Remove_346__MethodInfo); DO_APP_FUNC(0x00F4F4D0, bool, Array_InternalArray__ICollection_Remove_347, (Array * __this, CustomAttributeTypedArgument item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F320, Array_InternalArray__ICollection_Remove_347__MethodInfo); DO_APP_FUNC(0x00F4F530, bool, Array_InternalArray__ICollection_Remove_348, (Array * __this, DateTime item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F310, Array_InternalArray__ICollection_Remove_348__MethodInfo); DO_APP_FUNC(0x00F4F590, bool, Array_InternalArray__ICollection_Remove_349, (Array * __this, DateTimeOffset item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F300, Array_InternalArray__ICollection_Remove_349__MethodInfo); DO_APP_FUNC(0x00F4F5F0, bool, Array_InternalArray__ICollection_Remove_350, (Array * __this, Decimal item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F280, Array_InternalArray__ICollection_Remove_350__MethodInfo); DO_APP_FUNC(0x00F4F650, bool, Array_InternalArray__ICollection_Remove_351, (Array * __this, DetailInstanceTransform item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F270, Array_InternalArray__ICollection_Remove_351__MethodInfo); DO_APP_FUNC(0x00F4F6B0, bool, Array_InternalArray__ICollection_Remove_352, (Array * __this, DiagnosticEvent item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F260, Array_InternalArray__ICollection_Remove_352__MethodInfo); DO_APP_FUNC(0x00F4F710, bool, Array_InternalArray__ICollection_Remove_353, (Array * __this, DictionaryEntry item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F250, Array_InternalArray__ICollection_Remove_353__MethodInfo); DO_APP_FUNC(0x00F4F770, bool, Array_InternalArray__ICollection_Remove_354, (Array * __this, Dimension item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F2C0, Array_InternalArray__ICollection_Remove_354__MethodInfo); DO_APP_FUNC(0x00F4F7D0, bool, Array_InternalArray__ICollection_Remove_355, (Array * __this, double item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F2B0, Array_InternalArray__ICollection_Remove_355__MethodInfo); DO_APP_FUNC(0x00F4F830, bool, Array_InternalArray__ICollection_Remove_356, (Array * __this, DrawBufferRange item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F2A0, Array_InternalArray__ICollection_Remove_356__MethodInfo); DO_APP_FUNC(0x00F4F890, bool, Array_InternalArray__ICollection_Remove_357, (Array * __this, EasingFunction item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F290, Array_InternalArray__ICollection_Remove_357__MethodInfo); DO_APP_FUNC(0x00F4F8F0, bool, Array_InternalArray__ICollection_Remove_358, (Array * __this, ElementAssignmentConflictInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F210, Array_InternalArray__ICollection_Remove_358__MethodInfo); DO_APP_FUNC(0x00F4F950, bool, Array_InternalArray__ICollection_Remove_359, (Array * __this, Entitlement item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F200, Array_InternalArray__ICollection_Remove_359__MethodInfo); DO_APP_FUNC(0x00F4F9B0, bool, Array_InternalArray__ICollection_Remove_360, (Array * __this, Ephemeron item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F1F8, Array_InternalArray__ICollection_Remove_360__MethodInfo); DO_APP_FUNC(0x00F4FA10, bool, Array_InternalArray__ICollection_Remove_361, (Array * __this, EventReliable item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F1F0, Array_InternalArray__ICollection_Remove_361__MethodInfo); DO_APP_FUNC(0x00F4FA70, bool, Array_InternalArray__ICollection_Remove_362, (Array * __this, EventUnreliable item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F240, Array_InternalArray__ICollection_Remove_362__MethodInfo); DO_APP_FUNC(0x00F4FAD0, bool, Array_InternalArray__ICollection_Remove_363, (Array * __this, FORMATETC item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F230, Array_InternalArray__ICollection_Remove_363__MethodInfo); DO_APP_FUNC(0x00F4FB30, bool, Array_InternalArray__ICollection_Remove_364, (Array * __this, FileStat item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F220, Array_InternalArray__ICollection_Remove_364__MethodInfo); DO_APP_FUNC(0x00F4FB90, bool, Array_InternalArray__ICollection_Remove_365, (Array * __this, FontDefinition item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F218, Array_InternalArray__ICollection_Remove_365__MethodInfo); DO_APP_FUNC(0x00F4FBF0, bool, Array_InternalArray__ICollection_Remove_366, (Array * __this, FontWeightPair item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F1A0, Array_InternalArray__ICollection_Remove_366__MethodInfo); DO_APP_FUNC(0x00F4FC50, bool, Array_InternalArray__ICollection_Remove_367, (Array * __this, FrameFormat item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F190, Array_InternalArray__ICollection_Remove_367__MethodInfo); DO_APP_FUNC(0x00F4FCB0, bool, Array_InternalArray__ICollection_Remove_368, (Array * __this, GCHandle item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F180, Array_InternalArray__ICollection_Remove_368__MethodInfo); DO_APP_FUNC(0x00F4FD10, bool, Array_InternalArray__ICollection_Remove_369, (Array * __this, GfxUpdateBufferRange item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F170, Array_InternalArray__ICollection_Remove_369__MethodInfo); DO_APP_FUNC(0x00F4FD70, bool, Array_InternalArray__ICollection_Remove_370, (Array * __this, GlobalKeyword item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F1E0, Array_InternalArray__ICollection_Remove_370__MethodInfo); DO_APP_FUNC(0x00F4FDD0, bool, Array_InternalArray__ICollection_Remove_371, (Array * __this, GlyphMarshallingStruct item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F1D0, Array_InternalArray__ICollection_Remove_371__MethodInfo); DO_APP_FUNC(0x00F4FE30, bool, Array_InternalArray__ICollection_Remove_372, (Array * __this, GlyphPairAdjustmentRecord item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F1C0, Array_InternalArray__ICollection_Remove_372__MethodInfo); DO_APP_FUNC(0x00F4FE90, bool, Array_InternalArray__ICollection_Remove_373, (Array * __this, GlyphRect item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F1B0, Array_InternalArray__ICollection_Remove_373__MethodInfo); DO_APP_FUNC(0x00F4FEF0, bool, Array_InternalArray__ICollection_Remove_374, (Array * __this, GradientAlphaKey item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F120, Array_InternalArray__ICollection_Remove_374__MethodInfo); DO_APP_FUNC(0x00F4FF50, bool, Array_InternalArray__ICollection_Remove_375, (Array * __this, GradientColorKey item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F110, Array_InternalArray__ICollection_Remove_375__MethodInfo); DO_APP_FUNC(0x00F4FFB0, bool, Array_InternalArray__ICollection_Remove_376, (Array * __this, GradientSettings item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F100, Array_InternalArray__ICollection_Remove_376__MethodInfo); DO_APP_FUNC(0x00F50010, bool, Array_InternalArray__ICollection_Remove_377, (Array * __this, Guid item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F0F0, Array_InternalArray__ICollection_Remove_377__MethodInfo); DO_APP_FUNC(0x00F50070, bool, Array_InternalArray__ICollection_Remove_378, (Array * __this, HandJointLocation item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F160, Array_InternalArray__ICollection_Remove_378__MethodInfo); DO_APP_FUNC(0x00F500D0, bool, Array_InternalArray__ICollection_Remove_379, (Array * __this, Hash128 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F150, Array_InternalArray__ICollection_Remove_379__MethodInfo); DO_APP_FUNC(0x00F50130, bool, Array_InternalArray__ICollection_Remove_380, (Array * __this, HeaderVariantInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F140, Array_InternalArray__ICollection_Remove_380__MethodInfo); DO_APP_FUNC(0x00F50190, bool, Array_InternalArray__ICollection_Remove_381, (Array * __this, HighlightState item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F130, Array_InternalArray__ICollection_Remove_381__MethodInfo); DO_APP_FUNC(0x00F501F0, bool, Array_InternalArray__ICollection_Remove_382, (Array * __this, HumanBone item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F0A0, Array_InternalArray__ICollection_Remove_382__MethodInfo); DO_APP_FUNC(0x00F50250, bool, Array_InternalArray__ICollection_Remove_383, (Array * __this, ImpactEffect item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F090, Array_InternalArray__ICollection_Remove_383__MethodInfo); DO_APP_FUNC(0x00F502B0, bool, Array_InternalArray__ICollection_Remove_384, (Array * __this, InputActionSourceData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F080, Array_InternalArray__ICollection_Remove_384__MethodInfo); DO_APP_FUNC(0x00F50310, bool, Array_InternalArray__ICollection_Remove_385, (Array * __this, InputBinding item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F070, Array_InternalArray__ICollection_Remove_385__MethodInfo); DO_APP_FUNC(0x00F50370, bool, Array_InternalArray__ICollection_Remove_386, (Array * __this, InputControlScheme item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F0E0, Array_InternalArray__ICollection_Remove_386__MethodInfo); DO_APP_FUNC(0x00F503D0, bool, Array_InternalArray__ICollection_Remove_387, (Array * __this, InputDevice_1 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F0D0, Array_InternalArray__ICollection_Remove_387__MethodInfo); DO_APP_FUNC(0x00F50430, bool, Array_InternalArray__ICollection_Remove_388, (Array * __this, InputDeviceDescription item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F0C0, Array_InternalArray__ICollection_Remove_388__MethodInfo); DO_APP_FUNC(0x00F50490, bool, Array_InternalArray__ICollection_Remove_389, (Array * __this, InputEventPtr item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F0B0, Array_InternalArray__ICollection_Remove_389__MethodInfo); DO_APP_FUNC(0x00F504F0, bool, Array_InternalArray__ICollection_Remove_390, (Array * __this, InputUser item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F020, Array_InternalArray__ICollection_Remove_390__MethodInfo); DO_APP_FUNC(0x00F50550, bool, Array_InternalArray__ICollection_Remove_391, (Array * __this, int16_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F010, Array_InternalArray__ICollection_Remove_391__MethodInfo); DO_APP_FUNC(0x00F505B0, bool, Array_InternalArray__ICollection_Remove_392, (Array * __this, Int2 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F000, Array_InternalArray__ICollection_Remove_392__MethodInfo); DO_APP_FUNC(0x00F50610, bool, Array_InternalArray__ICollection_Remove_393, (Array * __this, Int3 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EFF0, Array_InternalArray__ICollection_Remove_393__MethodInfo); DO_APP_FUNC(0x00F50670, bool, Array_InternalArray__ICollection_Remove_394, (Array * __this, int32_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F060, Array_InternalArray__ICollection_Remove_394__MethodInfo); DO_APP_FUNC(0x00F506D0, bool, Array_InternalArray__ICollection_Remove_395, (Array * __this, Int32Enum__Enum item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F050, Array_InternalArray__ICollection_Remove_395__MethodInfo); DO_APP_FUNC(0x00F50730, bool, Array_InternalArray__ICollection_Remove_396, (Array * __this, int64_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F040, Array_InternalArray__ICollection_Remove_396__MethodInfo); DO_APP_FUNC(0x00F50790, bool, Array_InternalArray__ICollection_Remove_397, (Array * __this, IntPoint item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0F030, Array_InternalArray__ICollection_Remove_397__MethodInfo); DO_APP_FUNC(0x00F507F0, bool, Array_InternalArray__ICollection_Remove_398, (Array * __this, void * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EFB0, Array_InternalArray__ICollection_Remove_398__MethodInfo); DO_APP_FUNC(0x00F50850, bool, Array_InternalArray__ICollection_Remove_399, (Array * __this, IntRect item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EFA0, Array_InternalArray__ICollection_Remove_399__MethodInfo); DO_APP_FUNC(0x00F508B0, bool, Array_InternalArray__ICollection_Remove_400, (Array * __this, InternalCodePageDataItem item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EF90, Array_InternalArray__ICollection_Remove_400__MethodInfo); DO_APP_FUNC(0x00F50910, bool, Array_InternalArray__ICollection_Remove_401, (Array * __this, InternalEncodingDataItem item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EF80, Array_InternalArray__ICollection_Remove_401__MethodInfo); DO_APP_FUNC(0x00F50970, bool, Array_InternalArray__ICollection_Remove_402, (Array * __this, InternedString item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EFE8, Array_InternalArray__ICollection_Remove_402__MethodInfo); DO_APP_FUNC(0x00F509D0, bool, Array_InternalArray__ICollection_Remove_403, (Array * __this, InterpretedFrameInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EFE0, Array_InternalArray__ICollection_Remove_403__MethodInfo); DO_APP_FUNC(0x00F50A30, bool, Array_InternalArray__ICollection_Remove_404, (Array * __this, IntervalTreeNode item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EFD0, Array_InternalArray__ICollection_Remove_404__MethodInfo); DO_APP_FUNC(0x00F50A90, bool, Array_InternalArray__ICollection_Remove_405, (Array * __this, IpQCkqlgJLyrFpAOyBfUxXQpJsWK item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EFC0, Array_InternalArray__ICollection_Remove_405__MethodInfo); DO_APP_FUNC(0x00F50AF0, bool, Array_InternalArray__ICollection_Remove_406, (Array * __this, ItemDefinitionAmount item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EF40, Array_InternalArray__ICollection_Remove_406__MethodInfo); DO_APP_FUNC(0x00F50B50, bool, Array_InternalArray__ICollection_Remove_407, (Array * __this, Keyframe item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EF30, Array_InternalArray__ICollection_Remove_407__MethodInfo); DO_APP_FUNC(0x00F50BB0, bool, Array_InternalArray__ICollection_Remove_408, (Array * __this, KickedPlayer item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EF20, Array_InternalArray__ICollection_Remove_408__MethodInfo); DO_APP_FUNC(0x00F50C10, bool, Array_InternalArray__ICollection_Remove_409, (Array * __this, LOD item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EF10, Array_InternalArray__ICollection_Remove_409__MethodInfo); DO_APP_FUNC(0x00F50C70, bool, Array_InternalArray__ICollection_Remove_410, (Array * __this, LayerMask item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EF78, Array_InternalArray__ICollection_Remove_410__MethodInfo); DO_APP_FUNC(0x00F50CD0, bool, Array_InternalArray__ICollection_Remove_411, (Array * __this, Length item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EF70, Array_InternalArray__ICollection_Remove_411__MethodInfo); DO_APP_FUNC(0x00F50D30, bool, Array_InternalArray__ICollection_Remove_412, (Array * __this, LightDataGI item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EF60, Array_InternalArray__ICollection_Remove_412__MethodInfo); DO_APP_FUNC(0x00F50D90, bool, Array_InternalArray__ICollection_Remove_413, (Array * __this, LineInfo_1 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EF50, Array_InternalArray__ICollection_Remove_413__MethodInfo); DO_APP_FUNC(0x00F50DF0, bool, Array_InternalArray__ICollection_Remove_414, (Array * __this, LinkInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EEC0, Array_InternalArray__ICollection_Remove_414__MethodInfo); DO_APP_FUNC(0x00F50E50, bool, Array_InternalArray__ICollection_Remove_415, (Array * __this, LocalDefinition item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EEB0, Array_InternalArray__ICollection_Remove_415__MethodInfo); DO_APP_FUNC(0x00F50EB0, bool, Array_InternalArray__ICollection_Remove_416, (Array * __this, LocalKeyword item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EEA0, Array_InternalArray__ICollection_Remove_416__MethodInfo); DO_APP_FUNC(0x00F50F10, bool, Array_InternalArray__ICollection_Remove_417, (Array * __this, ManipulatorActivationFilter item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EE90, Array_InternalArray__ICollection_Remove_417__MethodInfo); DO_APP_FUNC(0x00F50F70, bool, Array_InternalArray__ICollection_Remove_418, (Array * __this, MaterialReference item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EF00, Array_InternalArray__ICollection_Remove_418__MethodInfo); DO_APP_FUNC(0x00F50FD0, bool, Array_InternalArray__ICollection_Remove_419, (Array * __this, MaterialReference_1 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EEF0, Array_InternalArray__ICollection_Remove_419__MethodInfo); DO_APP_FUNC(0x00F51030, bool, Array_InternalArray__ICollection_Remove_420, (Array * __this, Matrix4x4 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EEE0, Array_InternalArray__ICollection_Remove_420__MethodInfo); DO_APP_FUNC(0x00F51090, bool, Array_InternalArray__ICollection_Remove_421, (Array * __this, MeshInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EED0, Array_InternalArray__ICollection_Remove_421__MethodInfo); DO_APP_FUNC(0x00F510F0, bool, Array_InternalArray__ICollection_Remove_422, (Array * __this, MinMaxFloat item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EE40, Array_InternalArray__ICollection_Remove_422__MethodInfo); DO_APP_FUNC(0x00F51150, bool, Array_InternalArray__ICollection_Remove_423, (Array * __this, MinMaxVector3 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EE30, Array_InternalArray__ICollection_Remove_423__MethodInfo); DO_APP_FUNC(0x00F511B0, bool, Array_InternalArray__ICollection_Remove_424, (Array * __this, ModifiableContactPair item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EE20, Array_InternalArray__ICollection_Remove_424__MethodInfo); DO_APP_FUNC(0x00F51210, bool, Array_InternalArray__ICollection_Remove_425, (Array * __this, NameAndParameters item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EE10, Array_InternalArray__ICollection_Remove_425__MethodInfo); DO_APP_FUNC(0x00F51270, bool, Array_InternalArray__ICollection_Remove_426, (Array * __this, NamedValue item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EE80, Array_InternalArray__ICollection_Remove_426__MethodInfo); DO_APP_FUNC(0x00F512D0, bool, Array_InternalArray__ICollection_Remove_427, (Array * __this, NativeAnchor item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EE70, Array_InternalArray__ICollection_Remove_427__MethodInfo); DO_APP_FUNC(0x00F51330, bool, Array_InternalArray__ICollection_Remove_428, (Array * __this, NativePlane item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EE60, Array_InternalArray__ICollection_Remove_428__MethodInfo); DO_APP_FUNC(0x00F51390, bool, Array_InternalArray__ICollection_Remove_429, (Array * __this, Navigation item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EE50, Array_InternalArray__ICollection_Remove_429__MethodInfo); DO_APP_FUNC(0x00F513F0, bool, Array_InternalArray__ICollection_Remove_430, (Array * __this, NetworkId item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EDC0, Array_InternalArray__ICollection_Remove_430__MethodInfo); DO_APP_FUNC(0x00F51450, bool, Array_InternalArray__ICollection_Remove_431, (Array * __this, NetworkPropertyInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EDB0, Array_InternalArray__ICollection_Remove_431__MethodInfo); DO_APP_FUNC(0x00F514B0, bool, Array_InternalArray__ICollection_Remove_432, (Array * __this, NetworkValue item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EDA0, Array_InternalArray__ICollection_Remove_432__MethodInfo); DO_APP_FUNC(0x00F51510, bool, Array_InternalArray__ICollection_Remove_433, (Array * __this, Object * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0ED98, Array_InternalArray__ICollection_Remove_433__MethodInfo); DO_APP_FUNC(0x00F51570, bool, Array_InternalArray__ICollection_Remove_434, (Array * __this, ObjectInitializationData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EE00, Array_InternalArray__ICollection_Remove_434__MethodInfo); DO_APP_FUNC(0x00F515D0, bool, Array_InternalArray__ICollection_Remove_435, (Array * __this, ObjectSurface item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EDF0, Array_InternalArray__ICollection_Remove_435__MethodInfo); DO_APP_FUNC(0x00F51630, bool, Array_InternalArray__ICollection_Remove_436, (Array * __this, OpenChannel item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EDE0, Array_InternalArray__ICollection_Remove_436__MethodInfo); DO_APP_FUNC(0x00F51690, bool, Array_InternalArray__ICollection_Remove_437, (Array * __this, OriginalMaterialValue item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EDD0, Array_InternalArray__ICollection_Remove_437__MethodInfo); DO_APP_FUNC(0x00F516F0, bool, Array_InternalArray__ICollection_Remove_438, (Array * __this, PacketStats item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0ED68, Array_InternalArray__ICollection_Remove_438__MethodInfo); DO_APP_FUNC(0x00F51750, bool, Array_InternalArray__ICollection_Remove_439, (Array * __this, PageInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0ED58, Array_InternalArray__ICollection_Remove_439__MethodInfo); DO_APP_FUNC(0x00F517B0, bool, Array_InternalArray__ICollection_Remove_440, (Array * __this, ParameterModifier item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0ED48, Array_InternalArray__ICollection_Remove_440__MethodInfo); DO_APP_FUNC(0x00F51810, bool, Array_InternalArray__ICollection_Remove_441, (Array * __this, ParticleCollisionEvent item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0ED38, Array_InternalArray__ICollection_Remove_441__MethodInfo); DO_APP_FUNC(0x00F51870, bool, Array_InternalArray__ICollection_Remove_442, (Array * __this, PatchExtents item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0ED90, Array_InternalArray__ICollection_Remove_442__MethodInfo); DO_APP_FUNC(0x00F518D0, bool, Array_InternalArray__ICollection_Remove_443, (Array * __this, PidVid item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0ED88, Array_InternalArray__ICollection_Remove_443__MethodInfo); DO_APP_FUNC(0x00F51930, bool, Array_InternalArray__ICollection_Remove_444, (Array * __this, Plane item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0ED80, Array_InternalArray__ICollection_Remove_444__MethodInfo); DO_APP_FUNC(0x00F51990, bool, Array_InternalArray__ICollection_Remove_445, (Array * __this, Playable item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0ED78, Array_InternalArray__ICollection_Remove_445__MethodInfo); DO_APP_FUNC(0x00F519F0, bool, Array_InternalArray__ICollection_Remove_446, (Array * __this, PlayableBinding item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0ECE8, Array_InternalArray__ICollection_Remove_446__MethodInfo); DO_APP_FUNC(0x00F51A50, bool, Array_InternalArray__ICollection_Remove_447, (Array * __this, PlayerChannel item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0ECD8, Array_InternalArray__ICollection_Remove_447__MethodInfo); DO_APP_FUNC(0x00F51AB0, bool, Array_InternalArray__ICollection_Remove_448, (Array * __this, PlayerFlashlightBeam item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0ECC8, Array_InternalArray__ICollection_Remove_448__MethodInfo); DO_APP_FUNC(0x00F51B10, bool, Array_InternalArray__ICollection_Remove_449, (Array * __this, PlayerLoopSystem item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0ECB8, Array_InternalArray__ICollection_Remove_449__MethodInfo); DO_APP_FUNC(0x00F51B70, bool, Array_InternalArray__ICollection_Remove_450, (Array * __this, PointerModel item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0ED28, Array_InternalArray__ICollection_Remove_450__MethodInfo); DO_APP_FUNC(0x00F51BD0, bool, Array_InternalArray__ICollection_Remove_451, (Array * __this, PrefabId item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0ED18, Array_InternalArray__ICollection_Remove_451__MethodInfo); DO_APP_FUNC(0x00F51C30, bool, Array_InternalArray__ICollection_Remove_452, (Array * __this, Priority item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0ED08, Array_InternalArray__ICollection_Remove_452__MethodInfo); DO_APP_FUNC(0x00F51C90, bool, Array_InternalArray__ICollection_Remove_453, (Array * __this, ProbeVolumeBakingProcessSettings item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0ECF8, Array_InternalArray__ICollection_Remove_453__MethodInfo); DO_APP_FUNC(0x00F51CF0, bool, Array_InternalArray__ICollection_Remove_454, (Array * __this, Progress item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EC68, Array_InternalArray__ICollection_Remove_454__MethodInfo); DO_APP_FUNC(0x00F51D50, bool, Array_InternalArray__ICollection_Remove_455, (Array * __this, PublishedFileId_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EC58, Array_InternalArray__ICollection_Remove_455__MethodInfo); DO_APP_FUNC(0x00F51DB0, bool, Array_InternalArray__ICollection_Remove_456, (Array * __this, QeeoSydAJKtvhuMHtIdMCGTRHBDhA item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EC48, Array_InternalArray__ICollection_Remove_456__MethodInfo); DO_APP_FUNC(0x00F51E10, bool, Array_InternalArray__ICollection_Remove_457, (Array * __this, Quaternion item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EC38, Array_InternalArray__ICollection_Remove_457__MethodInfo); DO_APP_FUNC(0x00F51E70, bool, Array_InternalArray__ICollection_Remove_458, (Array * __this, RangePositionInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0ECA8, Array_InternalArray__ICollection_Remove_458__MethodInfo); DO_APP_FUNC(0x00F51ED0, bool, Array_InternalArray__ICollection_Remove_459, (Array * __this, RaycastHit item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EC98, Array_InternalArray__ICollection_Remove_459__MethodInfo); DO_APP_FUNC(0x00F51F30, bool, Array_InternalArray__ICollection_Remove_460, (Array * __this, RaycastHit2D item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EC88, Array_InternalArray__ICollection_Remove_460__MethodInfo); DO_APP_FUNC(0x00F51F90, bool, Array_InternalArray__ICollection_Remove_461, (Array * __this, RaycastResult item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EC78, Array_InternalArray__ICollection_Remove_461__MethodInfo); DO_APP_FUNC(0x00F51FF0, bool, Array_InternalArray__ICollection_Remove_462, (Array * __this, Rect item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EBE8, Array_InternalArray__ICollection_Remove_462__MethodInfo); DO_APP_FUNC(0x00F52050, bool, Array_InternalArray__ICollection_Remove_463, (Array * __this, ReflectionProbeBlendInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EBD8, Array_InternalArray__ICollection_Remove_463__MethodInfo); DO_APP_FUNC(0x00F520B0, bool, Array_InternalArray__ICollection_Remove_464, (Array * __this, RemoteChannel item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EBC8, Array_InternalArray__ICollection_Remove_464__MethodInfo); DO_APP_FUNC(0x00F52110, bool, Array_InternalArray__ICollection_Remove_465, (Array * __this, RenderChainTextEntry item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EBB8, Array_InternalArray__ICollection_Remove_465__MethodInfo); DO_APP_FUNC(0x00F52170, bool, Array_InternalArray__ICollection_Remove_466, (Array * __this, RenderInstancedDataLayout item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EC28, Array_InternalArray__ICollection_Remove_466__MethodInfo); DO_APP_FUNC(0x00F521D0, bool, Array_InternalArray__ICollection_Remove_467, (Array * __this, RenderTargetIdentifier item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EC18, Array_InternalArray__ICollection_Remove_467__MethodInfo); DO_APP_FUNC(0x00F52230, bool, Array_InternalArray__ICollection_Remove_468, (Array * __this, RendererList item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EC08, Array_InternalArray__ICollection_Remove_468__MethodInfo); DO_APP_FUNC(0x00F52290, bool, Array_InternalArray__ICollection_Remove_469, (Array * __this, RendererListHandle item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EBF8, Array_InternalArray__ICollection_Remove_469__MethodInfo); DO_APP_FUNC(0x00F522F0, bool, Array_InternalArray__ICollection_Remove_470, (Array * __this, RendererListResource item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EB68, Array_InternalArray__ICollection_Remove_470__MethodInfo); DO_APP_FUNC(0x00F52350, bool, Array_InternalArray__ICollection_Remove_471, (Array * __this, Resolution item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EB58, Array_InternalArray__ICollection_Remove_471__MethodInfo); DO_APP_FUNC(0x00F523B0, bool, Array_InternalArray__ICollection_Remove_472, (Array * __this, ResourceHandle item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EB48, Array_InternalArray__ICollection_Remove_472__MethodInfo); DO_APP_FUNC(0x00F52410, bool, Array_InternalArray__ICollection_Remove_473, (Array * __this, ResourceLocator item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EB38, Array_InternalArray__ICollection_Remove_473__MethodInfo); DO_APP_FUNC(0x00F52470, bool, Array_InternalArray__ICollection_Remove_474, (Array * __this, RichTextTagAttribute item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EBA8, Array_InternalArray__ICollection_Remove_474__MethodInfo); DO_APP_FUNC(0x00F524D0, bool, Array_InternalArray__ICollection_Remove_475, (Array * __this, RichTextTagAttribute_1 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EB98, Array_InternalArray__ICollection_Remove_475__MethodInfo); DO_APP_FUNC(0x00F52530, bool, Array_InternalArray__ICollection_Remove_476, (Array * __this, RoomChannel item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EB88, Array_InternalArray__ICollection_Remove_476__MethodInfo); DO_APP_FUNC(0x00F52590, bool, Array_InternalArray__ICollection_Remove_477, (Array * __this, RoomMembership item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EB78, Array_InternalArray__ICollection_Remove_477__MethodInfo); DO_APP_FUNC(0x00F525F0, bool, Array_InternalArray__ICollection_Remove_478, (Array * __this, RoomName item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EAE8, Array_InternalArray__ICollection_Remove_478__MethodInfo); DO_APP_FUNC(0x00F52650, bool, Array_InternalArray__ICollection_Remove_479, (Array * __this, Rotate_1 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EAD8, Array_InternalArray__ICollection_Remove_479__MethodInfo); DO_APP_FUNC(0x00F526B0, bool, Array_InternalArray__ICollection_Remove_480, (Array * __this, RuleMatcher item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EAC8, Array_InternalArray__ICollection_Remove_480__MethodInfo); DO_APP_FUNC(0x00F52710, bool, Array_InternalArray__ICollection_Remove_481, (Array * __this, RuntimeLabel item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EAB8, Array_InternalArray__ICollection_Remove_481__MethodInfo); DO_APP_FUNC(0x00F52770, bool, Array_InternalArray__ICollection_Remove_482, (Array * __this, int8_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EB28, Array_InternalArray__ICollection_Remove_482__MethodInfo); DO_APP_FUNC(0x00F527D0, bool, Array_InternalArray__ICollection_Remove_483, (Array * __this, SByteEnum__Enum item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EB18, Array_InternalArray__ICollection_Remove_483__MethodInfo); DO_APP_FUNC(0x00F52830, bool, Array_InternalArray__ICollection_Remove_484, (Array * __this, STATDATA item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EB08, Array_InternalArray__ICollection_Remove_484__MethodInfo); DO_APP_FUNC(0x00F52890, bool, Array_InternalArray__ICollection_Remove_485, (Array * __this, ScalableImage item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EAF8, Array_InternalArray__ICollection_Remove_485__MethodInfo); DO_APP_FUNC(0x00F528F0, bool, Array_InternalArray__ICollection_Remove_486, (Array * __this, Scale item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EA68, Array_InternalArray__ICollection_Remove_486__MethodInfo); DO_APP_FUNC(0x00F52950, bool, Array_InternalArray__ICollection_Remove_487, (Array * __this, SelectorMatchRecord item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EA58, Array_InternalArray__ICollection_Remove_487__MethodInfo); DO_APP_FUNC(0x00F529B0, bool, Array_InternalArray__ICollection_Remove_488, (Array * __this, SemanticMeaning item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EA48, Array_InternalArray__ICollection_Remove_488__MethodInfo); DO_APP_FUNC(0x00F52A10, bool, Array_InternalArray__ICollection_Remove_489, (Array * __this, SerializedType item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EA38, Array_InternalArray__ICollection_Remove_489__MethodInfo); DO_APP_FUNC(0x00F52A70, bool, Array_InternalArray__ICollection_Remove_490, (Array * __this, SessionClient item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EAA8, Array_InternalArray__ICollection_Remove_490__MethodInfo); DO_APP_FUNC(0x00F52AD0, bool, Array_InternalArray__ICollection_Remove_491, (Array * __this, ShaderKeyword item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EA98, Array_InternalArray__ICollection_Remove_491__MethodInfo); DO_APP_FUNC(0x00F52B30, bool, Array_InternalArray__ICollection_Remove_492, (Array * __this, ShaderTagId item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EA88, Array_InternalArray__ICollection_Remove_492__MethodInfo); DO_APP_FUNC(0x00F52B90, bool, Array_InternalArray__ICollection_Remove_493, (Array * __this, ShaderVariablesProbeVolumes item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EA78, Array_InternalArray__ICollection_Remove_493__MethodInfo); DO_APP_FUNC(0x00F52BF0, bool, Array_InternalArray__ICollection_Remove_494, (Array * __this, float item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E9E8, Array_InternalArray__ICollection_Remove_494__MethodInfo); DO_APP_FUNC(0x00F52C50, bool, Array_InternalArray__ICollection_Remove_495, (Array * __this, SkeletonBone item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E9D8, Array_InternalArray__ICollection_Remove_495__MethodInfo); DO_APP_FUNC(0x00F52CB0, bool, Array_InternalArray__ICollection_Remove_496, (Array * __this, Sku item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E9C8, Array_InternalArray__ICollection_Remove_496__MethodInfo); DO_APP_FUNC(0x00F52D10, bool, Array_InternalArray__ICollection_Remove_497, (Array * __this, SpeechSession item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E9B8, Array_InternalArray__ICollection_Remove_497__MethodInfo); DO_APP_FUNC(0x00F52D70, bool, Array_InternalArray__ICollection_Remove_498, (Array * __this, SphericalHarmonicsL2 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EA28, Array_InternalArray__ICollection_Remove_498__MethodInfo); DO_APP_FUNC(0x00F52DD0, bool, Array_InternalArray__ICollection_Remove_499, (Array * __this, SpriteState item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EA18, Array_InternalArray__ICollection_Remove_499__MethodInfo); DO_APP_FUNC(0x00F52E30, bool, Array_InternalArray__ICollection_Remove_500, (Array * __this, SslApplicationProtocol item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0EA08, Array_InternalArray__ICollection_Remove_500__MethodInfo); DO_APP_FUNC(0x00F52E90, bool, Array_InternalArray__ICollection_Remove_501, (Array * __this, SteamItemDef_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E9F8, Array_InternalArray__ICollection_Remove_501__MethodInfo); DO_APP_FUNC(0x00F52EF0, bool, Array_InternalArray__ICollection_Remove_502, (Array * __this, SteamItemDetails_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E970, Array_InternalArray__ICollection_Remove_502__MethodInfo); DO_APP_FUNC(0x00F52F50, bool, Array_InternalArray__ICollection_Remove_503, (Array * __this, StylePropertyName item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E960, Array_InternalArray__ICollection_Remove_503__MethodInfo); DO_APP_FUNC(0x00F52FB0, bool, Array_InternalArray__ICollection_Remove_504, (Array * __this, StylePropertyValue item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E958, Array_InternalArray__ICollection_Remove_504__MethodInfo); DO_APP_FUNC(0x00F53010, bool, Array_InternalArray__ICollection_Remove_505, (Array * __this, StyleSelectorPart item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E950, Array_InternalArray__ICollection_Remove_505__MethodInfo); DO_APP_FUNC(0x00F53070, bool, Array_InternalArray__ICollection_Remove_506, (Array * __this, StyleSyntaxToken item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E9A8, Array_InternalArray__ICollection_Remove_506__MethodInfo); DO_APP_FUNC(0x00F530D0, bool, Array_InternalArray__ICollection_Remove_507, (Array * __this, StyleValue item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E998, Array_InternalArray__ICollection_Remove_507__MethodInfo); DO_APP_FUNC(0x00F53130, bool, Array_InternalArray__ICollection_Remove_508, (Array * __this, StyleValueHandle item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E988, Array_InternalArray__ICollection_Remove_508__MethodInfo); DO_APP_FUNC(0x00F53190, bool, Array_InternalArray__ICollection_Remove_509, (Array * __this, StyleValueManaged item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E978, Array_InternalArray__ICollection_Remove_509__MethodInfo); DO_APP_FUNC(0x00F531F0, bool, Array_InternalArray__ICollection_Remove_510, (Array * __this, StyleVariable item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E900, Array_InternalArray__ICollection_Remove_510__MethodInfo); DO_APP_FUNC(0x00F53250, bool, Array_InternalArray__ICollection_Remove_511, (Array * __this, SubMeshDescriptor item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E8F0, Array_InternalArray__ICollection_Remove_511__MethodInfo); DO_APP_FUNC(0x00F532B0, bool, Array_InternalArray__ICollection_Remove_512, (Array * __this, Substring item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E8E0, Array_InternalArray__ICollection_Remove_512__MethodInfo); DO_APP_FUNC(0x00F53310, bool, Array_InternalArray__ICollection_Remove_513, (Array * __this, TMP_CharacterInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E8D0, Array_InternalArray__ICollection_Remove_513__MethodInfo); DO_APP_FUNC(0x00F53370, bool, Array_InternalArray__ICollection_Remove_514, (Array * __this, TMP_FontWeightPair item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E940, Array_InternalArray__ICollection_Remove_514__MethodInfo); DO_APP_FUNC(0x00F533D0, bool, Array_InternalArray__ICollection_Remove_515, (Array * __this, TMP_LineInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E930, Array_InternalArray__ICollection_Remove_515__MethodInfo); DO_APP_FUNC(0x00F53430, bool, Array_InternalArray__ICollection_Remove_516, (Array * __this, TMP_LinkInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E920, Array_InternalArray__ICollection_Remove_516__MethodInfo); DO_APP_FUNC(0x00F53490, bool, Array_InternalArray__ICollection_Remove_517, (Array * __this, TMP_MeshInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E910, Array_InternalArray__ICollection_Remove_517__MethodInfo); DO_APP_FUNC(0x00F534F0, bool, Array_InternalArray__ICollection_Remove_518, (Array * __this, TMP_PageInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E880, Array_InternalArray__ICollection_Remove_518__MethodInfo); DO_APP_FUNC(0x00F53550, bool, Array_InternalArray__ICollection_Remove_519, (Array * __this, TMP_WordInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E870, Array_InternalArray__ICollection_Remove_519__MethodInfo); DO_APP_FUNC(0x00F535B0, bool, Array_InternalArray__ICollection_Remove_520, (Array * __this, TerrainTileCoord item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E860, Array_InternalArray__ICollection_Remove_520__MethodInfo); DO_APP_FUNC(0x00F53610, bool, Array_InternalArray__ICollection_Remove_521, (Array * __this, TextElementInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E850, Array_InternalArray__ICollection_Remove_521__MethodInfo); DO_APP_FUNC(0x00F53670, bool, Array_InternalArray__ICollection_Remove_522, (Array * __this, TextShadow item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E8C0, Array_InternalArray__ICollection_Remove_522__MethodInfo); DO_APP_FUNC(0x00F536D0, bool, Array_InternalArray__ICollection_Remove_523, (Array * __this, TextVertex_1 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E8B0, Array_InternalArray__ICollection_Remove_523__MethodInfo); DO_APP_FUNC(0x00F53730, bool, Array_InternalArray__ICollection_Remove_524, (Array * __this, TextureHandle item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E8A0, Array_InternalArray__ICollection_Remove_524__MethodInfo); DO_APP_FUNC(0x00F53790, bool, Array_InternalArray__ICollection_Remove_525, (Array * __this, TextureId item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E890, Array_InternalArray__ICollection_Remove_525__MethodInfo); DO_APP_FUNC(0x00F537F0, bool, Array_InternalArray__ICollection_Remove_526, (Array * __this, TileData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E818, Array_InternalArray__ICollection_Remove_526__MethodInfo); DO_APP_FUNC(0x00F53850, bool, Array_InternalArray__ICollection_Remove_527, (Array * __this, TimeSpan item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E810, Array_InternalArray__ICollection_Remove_527__MethodInfo); DO_APP_FUNC(0x00F538B0, bool, Array_InternalArray__ICollection_Remove_528, (Array * __this, TimeValue item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E808, Array_InternalArray__ICollection_Remove_528__MethodInfo); DO_APP_FUNC(0x00F53910, bool, Array_InternalArray__ICollection_Remove_529, (Array * __this, Touch item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E800, Array_InternalArray__ICollection_Remove_529__MethodInfo); DO_APP_FUNC(0x00F53970, bool, Array_InternalArray__ICollection_Remove_530, (Array * __this, Touch_1 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E840, Array_InternalArray__ICollection_Remove_530__MethodInfo); DO_APP_FUNC(0x00F539D0, bool, Array_InternalArray__ICollection_Remove_531, (Array * __this, TrackableId item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E830, Array_InternalArray__ICollection_Remove_531__MethodInfo); DO_APP_FUNC(0x00F53A30, bool, Array_InternalArray__ICollection_Remove_532, (Array * __this, Transform3x4 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E828, Array_InternalArray__ICollection_Remove_532__MethodInfo); DO_APP_FUNC(0x00F53A90, bool, Array_InternalArray__ICollection_Remove_533, (Array * __this, TransformOrigin item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E820, Array_InternalArray__ICollection_Remove_533__MethodInfo); DO_APP_FUNC(0x00F53AF0, bool, Array_InternalArray__ICollection_Remove_534, (Array * __this, Translate_1 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E7C0, Array_InternalArray__ICollection_Remove_534__MethodInfo); DO_APP_FUNC(0x00F53B50, bool, Array_InternalArray__ICollection_Remove_535, (Array * __this, TreeInstance item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E7B0, Array_InternalArray__ICollection_Remove_535__MethodInfo); DO_APP_FUNC(0x00F53BB0, bool, Array_InternalArray__ICollection_Remove_536, (Array * __this, TreeItem item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E7A0, Array_InternalArray__ICollection_Remove_536__MethodInfo); DO_APP_FUNC(0x00F53C10, bool, Array_InternalArray__ICollection_Remove_537, (Array * __this, TreeViewItemWrapper item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E790, Array_InternalArray__ICollection_Remove_537__MethodInfo); DO_APP_FUNC(0x00F53C70, bool, Array_InternalArray__ICollection_Remove_538, (Array * __this, TypeId item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E7F8, Array_InternalArray__ICollection_Remove_538__MethodInfo); DO_APP_FUNC(0x00F53CD0, bool, Array_InternalArray__ICollection_Remove_539, (Array * __this, TypeWrapper item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E7F0, Array_InternalArray__ICollection_Remove_539__MethodInfo); DO_APP_FUNC(0x00F53D30, bool, Array_InternalArray__ICollection_Remove_540, (Array * __this, UICharInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E7E0, Array_InternalArray__ICollection_Remove_540__MethodInfo); DO_APP_FUNC(0x00F53D90, bool, Array_InternalArray__ICollection_Remove_541, (Array * __this, UILineInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E7D0, Array_InternalArray__ICollection_Remove_541__MethodInfo); DO_APP_FUNC(0x00F53DF0, bool, Array_InternalArray__ICollection_Remove_542, (Array * __this, UIVertex item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E740, Array_InternalArray__ICollection_Remove_542__MethodInfo); DO_APP_FUNC(0x00F53E50, bool, Array_InternalArray__ICollection_Remove_543, (Array * __this, uint16_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E730, Array_InternalArray__ICollection_Remove_543__MethodInfo); DO_APP_FUNC(0x00F53EB0, bool, Array_InternalArray__ICollection_Remove_544, (Array * __this, UInt16Enum__Enum item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E720, Array_InternalArray__ICollection_Remove_544__MethodInfo); DO_APP_FUNC(0x00F53F10, bool, Array_InternalArray__ICollection_Remove_545, (Array * __this, uint32_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E710, Array_InternalArray__ICollection_Remove_545__MethodInfo); DO_APP_FUNC(0x00F53F70, bool, Array_InternalArray__ICollection_Remove_546, (Array * __this, UInt32Enum__Enum item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E780, Array_InternalArray__ICollection_Remove_546__MethodInfo); DO_APP_FUNC(0x00F53FD0, bool, Array_InternalArray__ICollection_Remove_547, (Array * __this, uint64_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E770, Array_InternalArray__ICollection_Remove_547__MethodInfo); DO_APP_FUNC(0x00F54030, bool, Array_InternalArray__ICollection_Remove_548, (Array * __this, UVTexture item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E760, Array_InternalArray__ICollection_Remove_548__MethodInfo); DO_APP_FUNC(0x00F54090, bool, Array_InternalArray__ICollection_Remove_549, (Array * __this, UdpChannelName item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E750, Array_InternalArray__ICollection_Remove_549__MethodInfo); DO_APP_FUNC(0x00F540F0, bool, Array_InternalArray__ICollection_Remove_550, (Array * __this, UdpEndPoint item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E6C0, Array_InternalArray__ICollection_Remove_550__MethodInfo); DO_APP_FUNC(0x00F54150, bool, Array_InternalArray__ICollection_Remove_551, (Array * __this, UdpEvent item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E6B0, Array_InternalArray__ICollection_Remove_551__MethodInfo); DO_APP_FUNC(0x00F541B0, bool, Array_InternalArray__ICollection_Remove_552, (Array * __this, UdpIPv4Address item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E6A0, Array_InternalArray__ICollection_Remove_552__MethodInfo); DO_APP_FUNC(0x00F54210, bool, Array_InternalArray__ICollection_Remove_553, (Array * __this, UdpPipeHandle item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E690, Array_InternalArray__ICollection_Remove_553__MethodInfo); DO_APP_FUNC(0x00F54270, bool, Array_InternalArray__ICollection_Remove_554, (Array * __this, UniqueId item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E700, Array_InternalArray__ICollection_Remove_554__MethodInfo); DO_APP_FUNC(0x00F542D0, bool, Array_InternalArray__ICollection_Remove_555, (Array * __this, UsageHint item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E6F0, Array_InternalArray__ICollection_Remove_555__MethodInfo); DO_APP_FUNC(0x00F54330, bool, Array_InternalArray__ICollection_Remove_556, (Array * __this, User item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E6E0, Array_InternalArray__ICollection_Remove_556__MethodInfo); DO_APP_FUNC(0x00F54390, bool, Array_InternalArray__ICollection_Remove_557, (Array * __this, ValueWebSocketReceiveResult item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E6D0, Array_InternalArray__ICollection_Remove_557__MethodInfo); DO_APP_FUNC(0x00F543F0, bool, Array_InternalArray__ICollection_Remove_558, (Array * __this, Vector2 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E640, Array_InternalArray__ICollection_Remove_558__MethodInfo); DO_APP_FUNC(0x00F54450, bool, Array_InternalArray__ICollection_Remove_559, (Array * __this, Vector2Int item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E630, Array_InternalArray__ICollection_Remove_559__MethodInfo); DO_APP_FUNC(0x00F544B0, bool, Array_InternalArray__ICollection_Remove_560, (Array * __this, Vector3 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E620, Array_InternalArray__ICollection_Remove_560__MethodInfo); DO_APP_FUNC(0x00F54510, bool, Array_InternalArray__ICollection_Remove_561, (Array * __this, Vector3Int item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E610, Array_InternalArray__ICollection_Remove_561__MethodInfo); DO_APP_FUNC(0x00F54570, bool, Array_InternalArray__ICollection_Remove_562, (Array * __this, Vector3_Array2D item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E680, Array_InternalArray__ICollection_Remove_562__MethodInfo); DO_APP_FUNC(0x00F545D0, bool, Array_InternalArray__ICollection_Remove_563, (Array * __this, Vector4 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E670, Array_InternalArray__ICollection_Remove_563__MethodInfo); DO_APP_FUNC(0x00F54630, bool, Array_InternalArray__ICollection_Remove_564, (Array * __this, VectorImageVertex item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E660, Array_InternalArray__ICollection_Remove_564__MethodInfo); DO_APP_FUNC(0x00F54690, bool, Array_InternalArray__ICollection_Remove_565, (Array * __this, Vertex item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E650, Array_InternalArray__ICollection_Remove_565__MethodInfo); DO_APP_FUNC(0x00F546F0, bool, Array_InternalArray__ICollection_Remove_566, (Array * __this, VertexAttributeDescriptor item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E5C8, Array_InternalArray__ICollection_Remove_566__MethodInfo); DO_APP_FUNC(0x00F54750, bool, Array_InternalArray__ICollection_Remove_567, (Array * __this, ViewConfiguration item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E5C0, Array_InternalArray__ICollection_Remove_567__MethodInfo); DO_APP_FUNC(0x00F547B0, bool, Array_InternalArray__ICollection_Remove_568, (Array * __this, VoicePacket item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E5B0, Array_InternalArray__ICollection_Remove_568__MethodInfo); DO_APP_FUNC(0x00F54810, bool, Array_InternalArray__ICollection_Remove_569, (Array * __this, VoxelCell item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E5A0, Array_InternalArray__ICollection_Remove_569__MethodInfo); DO_APP_FUNC(0x00F54870, bool, Array_InternalArray__ICollection_Remove_570, (Array * __this, VoxelContour item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E600, Array_InternalArray__ICollection_Remove_570__MethodInfo); DO_APP_FUNC(0x00F548D0, bool, Array_InternalArray__ICollection_Remove_571, (Array * __this, Win32_IP_ADAPTER_ADDRESSES item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E5F0, Array_InternalArray__ICollection_Remove_571__MethodInfo); DO_APP_FUNC(0x00F54930, bool, Array_InternalArray__ICollection_Remove_572, (Array * __this, Win32_IP_ADAPTER_INFO item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E5E0, Array_InternalArray__ICollection_Remove_572__MethodInfo); DO_APP_FUNC(0x00F54990, bool, Array_InternalArray__ICollection_Remove_573, (Array * __this, Win32_IP_ADDR_STRING item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E5D0, Array_InternalArray__ICollection_Remove_573__MethodInfo); DO_APP_FUNC(0x00F549F0, bool, Array_InternalArray__ICollection_Remove_574, (Array * __this, WordInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E570, Array_InternalArray__ICollection_Remove_574__MethodInfo); DO_APP_FUNC(0x00F54A50, bool, Array_InternalArray__ICollection_Remove_575, (Array * __this, WordWrapState item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E568, Array_InternalArray__ICollection_Remove_575__MethodInfo); DO_APP_FUNC(0x00F54AB0, bool, Array_InternalArray__ICollection_Remove_576, (Array * __this, X509ChainStatus item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E560, Array_InternalArray__ICollection_Remove_576__MethodInfo); DO_APP_FUNC(0x00F54B10, bool, Array_InternalArray__ICollection_Remove_577, (Array * __this, XPathNode item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E558, Array_InternalArray__ICollection_Remove_577__MethodInfo); DO_APP_FUNC(0x00F54B70, bool, Array_InternalArray__ICollection_Remove_578, (Array * __this, XPathNodeRef item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E598, Array_InternalArray__ICollection_Remove_578__MethodInfo); DO_APP_FUNC(0x00F54BD0, bool, Array_InternalArray__ICollection_Remove_579, (Array * __this, XRAnchor item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E590, Array_InternalArray__ICollection_Remove_579__MethodInfo); DO_APP_FUNC(0x00F54C30, bool, Array_InternalArray__ICollection_Remove_580, (Array * __this, XRFeatureDescriptor item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E580, Array_InternalArray__ICollection_Remove_580__MethodInfo); DO_APP_FUNC(0x00F54C90, bool, Array_InternalArray__ICollection_Remove_581, (Array * __this, XRNodeState item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E578, Array_InternalArray__ICollection_Remove_581__MethodInfo); DO_APP_FUNC(0x00F54CF0, bool, Array_InternalArray__ICollection_Remove_582, (Array * __this, XRRaycast item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E538, Array_InternalArray__ICollection_Remove_582__MethodInfo); DO_APP_FUNC(0x00F54D50, bool, Array_InternalArray__ICollection_Remove_583, (Array * __this, XmlTagAttribute item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E528, Array_InternalArray__ICollection_Remove_583__MethodInfo); DO_APP_FUNC(0x00F54DB0, bool, Array_InternalArray__ICollection_Remove_584, (Array * __this, aOHEnKCFymegycPegEXPFUjlaUPpA item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E518, Array_InternalArray__ICollection_Remove_584__MethodInfo); DO_APP_FUNC(0x00F54E10, bool, Array_InternalArray__ICollection_Remove_585, (Array * __this, aQHgSHeigtcamfIWbNaiXaCiVwuq item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E510, Array_InternalArray__ICollection_Remove_585__MethodInfo); DO_APP_FUNC(0x00F54E70, bool, Array_InternalArray__ICollection_Remove_586, (Array * __this, jvalue item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E550, Array_InternalArray__ICollection_Remove_586__MethodInfo); DO_APP_FUNC(0x00F54ED0, bool, Array_InternalArray__ICollection_Remove_587, (Array * __this, tSPvxZUJjzaTiAEejeAOLKctGpmKA item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E548, Array_InternalArray__ICollection_Remove_587__MethodInfo); DO_APP_FUNC(0x00F54F30, bool, Array_InternalArray__ICollection_Remove_588, (Array * __this, yUgrsNEvLzxrXGzkHTUPIBJYGDah item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E540, Array_InternalArray__ICollection_Remove_588__MethodInfo); DO_APP_FUNC(0x00F54F90, bool, Array_InternalArray__ICollection_Remove_589, (Array * __this, AIObjectPool_PreloadedPrefab item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D160D0, Array_InternalArray__ICollection_Remove_589__MethodInfo); DO_APP_FUNC(0x00F54FF0, bool, Array_InternalArray__ICollection_Remove_590, (Array * __this, AdvancedSmooth_Turn item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D160F0, Array_InternalArray__ICollection_Remove_590__MethodInfo); DO_APP_FUNC(0x00F55050, bool, Array_InternalArray__ICollection_Remove_591, (Array * __this, Agent_VO item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D160E8, Array_InternalArray__ICollection_Remove_591__MethodInfo); DO_APP_FUNC(0x00F550B0, bool, Array_InternalArray__ICollection_Remove_592, (Array * __this, AnimationOutputWeightProcessor_WeightInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D160E0, Array_InternalArray__ICollection_Remove_592__MethodInfo); DO_APP_FUNC(0x00F55110, bool, Array_InternalArray__ICollection_Remove_593, (Array * __this, AstarDebugger_GraphPoint item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D160D8, Array_InternalArray__ICollection_Remove_593__MethodInfo); DO_APP_FUNC(0x00F55170, bool, Array_InternalArray__ICollection_Remove_594, (Array * __this, AstarDebugger_PathTypeDebug item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D160A8, Array_InternalArray__ICollection_Remove_594__MethodInfo); DO_APP_FUNC(0x00F551D0, bool, Array_InternalArray__ICollection_Remove_595, (Array * __this, AtlasAllocatorDynamic_AtlasNode item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D160A0, Array_InternalArray__ICollection_Remove_595__MethodInfo); DO_APP_FUNC(0x00F55230, bool, Array_InternalArray__ICollection_Remove_596, (Array * __this, AttributeCollection_AttributeEntry item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16098, Array_InternalArray__ICollection_Remove_596__MethodInfo); DO_APP_FUNC(0x00F55290, bool, Array_InternalArray__ICollection_Remove_597, (Array * __this, BBTree_BBTreeBox item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16090, Array_InternalArray__ICollection_Remove_597__MethodInfo); DO_APP_FUNC(0x00F552F0, bool, Array_InternalArray__ICollection_Remove_598, (Array * __this, BaseStyleMatcher_MatchContext item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D160C8, Array_InternalArray__ICollection_Remove_598__MethodInfo); DO_APP_FUNC(0x00F55350, bool, Array_InternalArray__ICollection_Remove_599, (Array * __this, BeforeRenderHelper_OrderBlock item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D160C0, Array_InternalArray__ICollection_Remove_599__MethodInfo); DO_APP_FUNC(0x00F553B0, bool, Array_InternalArray__ICollection_Remove_600, (Array * __this, BehaviourPuppet_CollisionResistanceMultiplier item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D160B8, Array_InternalArray__ICollection_Remove_600__MethodInfo); DO_APP_FUNC(0x00F55410, bool, Array_InternalArray__ICollection_Remove_601, (Array * __this, BehaviourPuppet_MusclePropsGroup item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D160B0, Array_InternalArray__ICollection_Remove_601__MethodInfo); DO_APP_FUNC(0x00F55470, bool, Array_InternalArray__ICollection_Remove_602, (Array * __this, BinaryHeap_Tuple item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16068, Array_InternalArray__ICollection_Remove_602__MethodInfo); DO_APP_FUNC(0x00F554D0, bool, Array_InternalArray__ICollection_Remove_603, (Array * __this, BitmapAllocator32_Page item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16060, Array_InternalArray__ICollection_Remove_603__MethodInfo); DO_APP_FUNC(0x00F55530, bool, Array_InternalArray__ICollection_Remove_604, (Array * __this, BloomRenderer_Level item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16058, Array_InternalArray__ICollection_Remove_604__MethodInfo); DO_APP_FUNC(0x00F55590, bool, Array_InternalArray__ICollection_Remove_605, (Array * __this, BoltConsole_Line item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16050, Array_InternalArray__ICollection_Remove_605__MethodInfo); DO_APP_FUNC(0x00F555F0, bool, Array_InternalArray__ICollection_Remove_606, (Array * __this, BoltProtocolTokenRegistry_TokenRegistry item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16088, Array_InternalArray__ICollection_Remove_606__MethodInfo); DO_APP_FUNC(0x00F55650, bool, Array_InternalArray__ICollection_Remove_607, (Array * __this, CalendricalCalculationsHelper_EphemerisCorrectionAlgorithmMap item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16080, Array_InternalArray__ICollection_Remove_607__MethodInfo); DO_APP_FUNC(0x00F556B0, bool, Array_InternalArray__ICollection_Remove_608, (Array * __this, Camera_RenderRequest item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16078, Array_InternalArray__ICollection_Remove_608__MethodInfo); DO_APP_FUNC(0x00F55710, bool, Array_InternalArray__ICollection_Remove_609, (Array * __this, CameraState_CustomBlendable item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16070, Array_InternalArray__ICollection_Remove_609__MethodInfo); DO_APP_FUNC(0x00F55770, bool, Array_InternalArray__ICollection_Remove_610, (Array * __this, CharacterFootEffects_Foot item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16028, Array_InternalArray__ICollection_Remove_610__MethodInfo); DO_APP_FUNC(0x00F557D0, bool, Array_InternalArray__ICollection_Remove_611, (Array * __this, CinemachineBlendListCamera_Instruction item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16020, Array_InternalArray__ICollection_Remove_611__MethodInfo); DO_APP_FUNC(0x00F55830, bool, Array_InternalArray__ICollection_Remove_612, (Array * __this, CinemachineBlenderSettings_CustomBlend item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16018, Array_InternalArray__ICollection_Remove_612__MethodInfo); DO_APP_FUNC(0x00F55890, bool, Array_InternalArray__ICollection_Remove_613, (Array * __this, CinemachineClearShot_Pair item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16010, Array_InternalArray__ICollection_Remove_613__MethodInfo); DO_APP_FUNC(0x00F558F0, bool, Array_InternalArray__ICollection_Remove_614, (Array * __this, CinemachineFreeLook_Orbit item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16048, Array_InternalArray__ICollection_Remove_614__MethodInfo); DO_APP_FUNC(0x00F55950, bool, Array_InternalArray__ICollection_Remove_615, (Array * __this, CinemachinePath_Waypoint item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16040, Array_InternalArray__ICollection_Remove_615__MethodInfo); DO_APP_FUNC(0x00F559B0, bool, Array_InternalArray__ICollection_Remove_616, (Array * __this, CinemachineSmoothPath_Waypoint item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16038, Array_InternalArray__ICollection_Remove_616__MethodInfo); DO_APP_FUNC(0x00F55A10, bool, Array_InternalArray__ICollection_Remove_617, (Array * __this, CinemachineStateDrivenCamera_HashPair item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16030, Array_InternalArray__ICollection_Remove_617__MethodInfo); DO_APP_FUNC(0x00F55A70, bool, Array_InternalArray__ICollection_Remove_618, (Array * __this, CinemachineStateDrivenCamera_Instruction item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15FE8, Array_InternalArray__ICollection_Remove_618__MethodInfo); DO_APP_FUNC(0x00F55AD0, bool, Array_InternalArray__ICollection_Remove_619, (Array * __this, CinemachineStateDrivenCamera_ParentHash item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15FE0, Array_InternalArray__ICollection_Remove_619__MethodInfo); DO_APP_FUNC(0x00F55B30, bool, Array_InternalArray__ICollection_Remove_620, (Array * __this, CinemachineTargetGroup_Target item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15FD8, Array_InternalArray__ICollection_Remove_620__MethodInfo); DO_APP_FUNC(0x00F55B90, bool, Array_InternalArray__ICollection_Remove_621, (Array * __this, ClipperLib_DoublePoint item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15FD0, Array_InternalArray__ICollection_Remove_621__MethodInfo); DO_APP_FUNC(0x00F55BF0, bool, Array_InternalArray__ICollection_Remove_622, (Array * __this, ClipperLib_IntPoint item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16008, Array_InternalArray__ICollection_Remove_622__MethodInfo); DO_APP_FUNC(0x00F55C50, bool, Array_InternalArray__ICollection_Remove_623, (Array * __this, CodePointIndexer_TableRange item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16000, Array_InternalArray__ICollection_Remove_623__MethodInfo); DO_APP_FUNC(0x00F55CB0, bool, Array_InternalArray__ICollection_Remove_624, (Array * __this, ComboTimeout_ComboInputElement item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15FF8, Array_InternalArray__ICollection_Remove_624__MethodInfo); DO_APP_FUNC(0x00F55D10, bool, Array_InternalArray__ICollection_Remove_625, (Array * __this, ConfinerOven_PolygonSolution item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15FF0, Array_InternalArray__ICollection_Remove_625__MethodInfo); DO_APP_FUNC(0x00F55D70, bool, Array_InternalArray__ICollection_Remove_626, (Array * __this, ContentCatalogData_Bucket item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15FA8, Array_InternalArray__ICollection_Remove_626__MethodInfo); DO_APP_FUNC(0x00F55DD0, bool, Array_InternalArray__ICollection_Remove_627, (Array * __this, ContextFlagsAdapterPal_ContextFlagMapping item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15FA0, Array_InternalArray__ICollection_Remove_627__MethodInfo); DO_APP_FUNC(0x00F55E30, bool, Array_InternalArray__ICollection_Remove_628, (Array * __this, CookieTokenizer_RecognizedAttribute item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15F98, Array_InternalArray__ICollection_Remove_628__MethodInfo); DO_APP_FUNC(0x00F55E90, bool, Array_InternalArray__ICollection_Remove_629, (Array * __this, CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15F90, Array_InternalArray__ICollection_Remove_629__MethodInfo); DO_APP_FUNC(0x00F55EF0, bool, Array_InternalArray__ICollection_Remove_630, (Array * __this, DamageIndicatorMonitor_DamageIndicator item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15FC8, Array_InternalArray__ICollection_Remove_630__MethodInfo); DO_APP_FUNC(0x00F55F50, bool, Array_InternalArray__ICollection_Remove_631, (Array * __this, DelayedActionManager_DelegateInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15FC0, Array_InternalArray__ICollection_Remove_631__MethodInfo); DO_APP_FUNC(0x00F55FB0, bool, Array_InternalArray__ICollection_Remove_632, (Array * __this, DynamicResolutionHandler_ScalerContainer item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15FB8, Array_InternalArray__ICollection_Remove_632__MethodInfo); DO_APP_FUNC(0x00F56010, bool, Array_InternalArray__ICollection_Remove_633, (Array * __this, EventDispatcher_CallbackWrapper item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15FB0, Array_InternalArray__ICollection_Remove_633__MethodInfo); DO_APP_FUNC(0x00F56070, bool, Array_InternalArray__ICollection_Remove_634, (Array * __this, EventDispatcher_EventListener item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15F68, Array_InternalArray__ICollection_Remove_634__MethodInfo); DO_APP_FUNC(0x00F560D0, bool, Array_InternalArray__ICollection_Remove_635, (Array * __this, EventDispatcher_DispatchContext item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15F60, Array_InternalArray__ICollection_Remove_635__MethodInfo); DO_APP_FUNC(0x00F56130, bool, Array_InternalArray__ICollection_Remove_636, (Array * __this, EventDispatcher_EventRecord item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15F58, Array_InternalArray__ICollection_Remove_636__MethodInfo); DO_APP_FUNC(0x00F56190, bool, Array_InternalArray__ICollection_Remove_637, (Array * __this, EventQueue_NetworkEvent item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15F50, Array_InternalArray__ICollection_Remove_637__MethodInfo); DO_APP_FUNC(0x00F561F0, bool, Array_InternalArray__ICollection_Remove_638, (Array * __this, EventReliableRecvBuffer_Node item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15F88, Array_InternalArray__ICollection_Remove_638__MethodInfo); DO_APP_FUNC(0x00F56250, bool, Array_InternalArray__ICollection_Remove_639, (Array * __this, EventReliableSendBuffer_Node item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15F80, Array_InternalArray__ICollection_Remove_639__MethodInfo); DO_APP_FUNC(0x00F562B0, bool, Array_InternalArray__ICollection_Remove_640, (Array * __this, FocusController_FocusedElement item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15F78, Array_InternalArray__ICollection_Remove_640__MethodInfo); DO_APP_FUNC(0x00F56310, bool, Array_InternalArray__ICollection_Remove_641, (Array * __this, Funnel_PathPart item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15F70, Array_InternalArray__ICollection_Remove_641__MethodInfo); DO_APP_FUNC(0x00F56370, bool, Array_InternalArray__ICollection_Remove_642, (Array * __this, GraphUpdateProcessor_GUOSingle item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15F28, Array_InternalArray__ICollection_Remove_642__MethodInfo); DO_APP_FUNC(0x00F563D0, bool, Array_InternalArray__ICollection_Remove_643, (Array * __this, HID_HIDCollectionDescriptor item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15F20, Array_InternalArray__ICollection_Remove_643__MethodInfo); DO_APP_FUNC(0x00F56430, bool, Array_InternalArray__ICollection_Remove_644, (Array * __this, HID_HIDElementDescriptor item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15F18, Array_InternalArray__ICollection_Remove_644__MethodInfo); DO_APP_FUNC(0x00F56490, bool, Array_InternalArray__ICollection_Remove_645, (Array * __this, HIDParser_HIDReportData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15F10, Array_InternalArray__ICollection_Remove_645__MethodInfo); DO_APP_FUNC(0x00F564F0, bool, Array_InternalArray__ICollection_Remove_646, (Array * __this, HIDSupport_HIDPageUsage item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15F48, Array_InternalArray__ICollection_Remove_646__MethodInfo); DO_APP_FUNC(0x00F56550, bool, Array_InternalArray__ICollection_Remove_647, (Array * __this, HIDTouchpad_TouchData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15F40, Array_InternalArray__ICollection_Remove_647__MethodInfo); DO_APP_FUNC(0x00F565B0, bool, Array_InternalArray__ICollection_Remove_648, (Array * __this, HairDesignerColliderBase_DualSphere item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15F38, Array_InternalArray__ICollection_Remove_648__MethodInfo); DO_APP_FUNC(0x00F56610, bool, Array_InternalArray__ICollection_Remove_649, (Array * __this, HairDesignerGeneratorAdvancedFurBase_DualSphereCollider item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15F30, Array_InternalArray__ICollection_Remove_649__MethodInfo); DO_APP_FUNC(0x00F56670, bool, Array_InternalArray__ICollection_Remove_650, (Array * __this, HairDesignerGeneratorAdvancedFurBase_SkinData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15EE8, Array_InternalArray__ICollection_Remove_650__MethodInfo); DO_APP_FUNC(0x00F566D0, bool, Array_InternalArray__ICollection_Remove_651, (Array * __this, HairDesignerGeneratorFurShellBase_BufferData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15EE0, Array_InternalArray__ICollection_Remove_651__MethodInfo); DO_APP_FUNC(0x00F56730, bool, Array_InternalArray__ICollection_Remove_652, (Array * __this, HairDesignerGeneratorFurShellBase_SkinData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15ED8, Array_InternalArray__ICollection_Remove_652__MethodInfo); DO_APP_FUNC(0x00F56790, bool, Array_InternalArray__ICollection_Remove_653, (Array * __this, Hammersley_Hammersley2dSeq16 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15ED0, Array_InternalArray__ICollection_Remove_653__MethodInfo); DO_APP_FUNC(0x00F567F0, bool, Array_InternalArray__ICollection_Remove_654, (Array * __this, Hammersley_Hammersley2dSeq256 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15F08, Array_InternalArray__ICollection_Remove_654__MethodInfo); DO_APP_FUNC(0x00F56850, bool, Array_InternalArray__ICollection_Remove_655, (Array * __this, Hammersley_Hammersley2dSeq32 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15F00, Array_InternalArray__ICollection_Remove_655__MethodInfo); DO_APP_FUNC(0x00F568B0, bool, Array_InternalArray__ICollection_Remove_656, (Array * __this, Hammersley_Hammersley2dSeq64 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15EF8, Array_InternalArray__ICollection_Remove_656__MethodInfo); DO_APP_FUNC(0x00F56910, bool, Array_InternalArray__ICollection_Remove_657, (Array * __this, Hashtable_bucket item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15EF0, Array_InternalArray__ICollection_Remove_657__MethodInfo); DO_APP_FUNC(0x00F56970, bool, Array_InternalArray__ICollection_Remove_658, (Array * __this, HeadingTracker_Item item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15EA8, Array_InternalArray__ICollection_Remove_658__MethodInfo); DO_APP_FUNC(0x00F569D0, bool, Array_InternalArray__ICollection_Remove_659, (Array * __this, HealthFlashMonitor_Flash item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15EA0, Array_InternalArray__ICollection_Remove_659__MethodInfo); DO_APP_FUNC(0x00F56A30, bool, Array_InternalArray__ICollection_Remove_660, (Array * __this, HebrewNumber_HebrewValue item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15E98, Array_InternalArray__ICollection_Remove_660__MethodInfo); DO_APP_FUNC(0x00F56A90, bool, Array_InternalArray__ICollection_Remove_661, (Array * __this, InputActionMap_BindingJson item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15E90, Array_InternalArray__ICollection_Remove_661__MethodInfo); DO_APP_FUNC(0x00F56AF0, bool, Array_InternalArray__ICollection_Remove_662, (Array * __this, InputActionMap_BindingOverrideJson item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15EC8, Array_InternalArray__ICollection_Remove_662__MethodInfo); DO_APP_FUNC(0x00F56B50, bool, Array_InternalArray__ICollection_Remove_663, (Array * __this, InputActionMap_ReadActionJson item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15EC0, Array_InternalArray__ICollection_Remove_663__MethodInfo); DO_APP_FUNC(0x00F56BB0, bool, Array_InternalArray__ICollection_Remove_664, (Array * __this, InputActionMap_ReadMapJson item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15EB8, Array_InternalArray__ICollection_Remove_664__MethodInfo); DO_APP_FUNC(0x00F56C10, bool, Array_InternalArray__ICollection_Remove_665, (Array * __this, InputActionMap_WriteActionJson item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15EB0, Array_InternalArray__ICollection_Remove_665__MethodInfo); DO_APP_FUNC(0x00F56C70, bool, Array_InternalArray__ICollection_Remove_666, (Array * __this, InputActionMap_WriteMapJson item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15E68, Array_InternalArray__ICollection_Remove_666__MethodInfo); DO_APP_FUNC(0x00F56CD0, bool, Array_InternalArray__ICollection_Remove_667, (Array * __this, InputActionRebindingExtensions_Parameter item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15E60, Array_InternalArray__ICollection_Remove_667__MethodInfo); DO_APP_FUNC(0x00F56D30, bool, Array_InternalArray__ICollection_Remove_668, (Array * __this, InputActionRebindingExtensions_ParameterOverride item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15E58, Array_InternalArray__ICollection_Remove_668__MethodInfo); DO_APP_FUNC(0x00F56D90, bool, Array_InternalArray__ICollection_Remove_669, (Array * __this, InputActionTrace_ActionEventPtr item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15E50, Array_InternalArray__ICollection_Remove_669__MethodInfo); DO_APP_FUNC(0x00F56DF0, bool, Array_InternalArray__ICollection_Remove_670, (Array * __this, InputBindingCompositeContext_PartBinding item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15E88, Array_InternalArray__ICollection_Remove_670__MethodInfo); DO_APP_FUNC(0x00F56E50, bool, Array_InternalArray__ICollection_Remove_671, (Array * __this, InputControlLayout_ControlItem item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15E80, Array_InternalArray__ICollection_Remove_671__MethodInfo); DO_APP_FUNC(0x00F56EB0, bool, Array_InternalArray__ICollection_Remove_672, (Array * __this, InputControlPath_ParsedPathComponent item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15E78, Array_InternalArray__ICollection_Remove_672__MethodInfo); DO_APP_FUNC(0x00F56F10, bool, Array_InternalArray__ICollection_Remove_673, (Array * __this, InputControlScheme_DeviceRequirement item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15E70, Array_InternalArray__ICollection_Remove_673__MethodInfo); DO_APP_FUNC(0x00F56F70, bool, Array_InternalArray__ICollection_Remove_674, (Array * __this, InputControlScheme_SchemeJson item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15E28, Array_InternalArray__ICollection_Remove_674__MethodInfo); DO_APP_FUNC(0x00F56FD0, bool, Array_InternalArray__ICollection_Remove_675, (Array * __this, InputDevice_ControlBitRangeNode item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15E20, Array_InternalArray__ICollection_Remove_675__MethodInfo); DO_APP_FUNC(0x00F57030, bool, Array_InternalArray__ICollection_Remove_676, (Array * __this, InputEventTrace_DeviceInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15E18, Array_InternalArray__ICollection_Remove_676__MethodInfo); DO_APP_FUNC(0x00F57090, bool, Array_InternalArray__ICollection_Remove_677, (Array * __this, InputManager_AvailableDevice item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15E10, Array_InternalArray__ICollection_Remove_677__MethodInfo); DO_APP_FUNC(0x00F570F0, bool, Array_InternalArray__ICollection_Remove_678, (Array * __this, InputManager_StateChangeMonitorListener item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15E48, Array_InternalArray__ICollection_Remove_678__MethodInfo); DO_APP_FUNC(0x00F57150, bool, Array_InternalArray__ICollection_Remove_679, (Array * __this, InputManager_StateChangeMonitorTimeout item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15E40, Array_InternalArray__ICollection_Remove_679__MethodInfo); DO_APP_FUNC(0x00F571B0, bool, Array_InternalArray__ICollection_Remove_680, (Array * __this, InputManager_StateChangeMonitorsForDevice item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15E38, Array_InternalArray__ICollection_Remove_680__MethodInfo); DO_APP_FUNC(0x00F57210, bool, Array_InternalArray__ICollection_Remove_681, (Array * __this, InputRemoting_RemoteInputDevice item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15E30, Array_InternalArray__ICollection_Remove_681__MethodInfo); DO_APP_FUNC(0x00F57270, bool, Array_InternalArray__ICollection_Remove_682, (Array * __this, InputRemoting_RemoteSender item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15DE8, Array_InternalArray__ICollection_Remove_682__MethodInfo); DO_APP_FUNC(0x00F572D0, bool, Array_InternalArray__ICollection_Remove_683, (Array * __this, InputStateHistory_Record item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15DE0, Array_InternalArray__ICollection_Remove_683__MethodInfo); DO_APP_FUNC(0x00F57330, bool, Array_InternalArray__ICollection_Remove_684, (Array * __this, InputSystemUIInputModule_InputActionReferenceState item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15DD8, Array_InternalArray__ICollection_Remove_684__MethodInfo); DO_APP_FUNC(0x00F57390, bool, Array_InternalArray__ICollection_Remove_685, (Array * __this, InputUser_OngoingAccountSelection item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15DD0, Array_InternalArray__ICollection_Remove_685__MethodInfo); DO_APP_FUNC(0x00F573F0, bool, Array_InternalArray__ICollection_Remove_686, (Array * __this, InputUser_UserData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15E08, Array_InternalArray__ICollection_Remove_686__MethodInfo); DO_APP_FUNC(0x00F57450, bool, Array_InternalArray__ICollection_Remove_687, (Array * __this, InternalTreeView_TreeViewItemWrapper item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15E00, Array_InternalArray__ICollection_Remove_687__MethodInfo); DO_APP_FUNC(0x00F574B0, bool, Array_InternalArray__ICollection_Remove_688, (Array * __this, JSONDeserialization_TaskField item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15DF8, Array_InternalArray__ICollection_Remove_688__MethodInfo); DO_APP_FUNC(0x00F57510, bool, Array_InternalArray__ICollection_Remove_689, (Array * __this, JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15DF0, Array_InternalArray__ICollection_Remove_689__MethodInfo); DO_APP_FUNC(0x00F57570, bool, Array_InternalArray__ICollection_Remove_690, (Array * __this, JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15DA8, Array_InternalArray__ICollection_Remove_690__MethodInfo); DO_APP_FUNC(0x00F575D0, bool, Array_InternalArray__ICollection_Remove_691, (Array * __this, JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15DA0, Array_InternalArray__ICollection_Remove_691__MethodInfo); DO_APP_FUNC(0x00F57630, bool, Array_InternalArray__ICollection_Remove_692, (Array * __this, JsonParser_JsonValue item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15D98, Array_InternalArray__ICollection_Remove_692__MethodInfo); DO_APP_FUNC(0x00F57690, bool, Array_InternalArray__ICollection_Remove_693, (Array * __this, LayerGridGraph_HeightSample item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15D90, Array_InternalArray__ICollection_Remove_693__MethodInfo); DO_APP_FUNC(0x00F576F0, bool, Array_InternalArray__ICollection_Remove_694, (Array * __this, Logs_LogMessage_1 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15DC8, Array_InternalArray__ICollection_Remove_694__MethodInfo); DO_APP_FUNC(0x00F57750, bool, Array_InternalArray__ICollection_Remove_695, (Array * __this, Logs_LogMessage item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15DC0, Array_InternalArray__ICollection_Remove_695__MethodInfo); DO_APP_FUNC(0x00F577B0, bool, Array_InternalArray__ICollection_Remove_696, (Array * __this, MagicLightProbes_VolumeParameters item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15DB8, Array_InternalArray__ICollection_Remove_696__MethodInfo); DO_APP_FUNC(0x00F57810, bool, Array_InternalArray__ICollection_Remove_697, (Array * __this, MailHeaderInfo_HeaderInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15DB0, Array_InternalArray__ICollection_Remove_697__MethodInfo); DO_APP_FUNC(0x00F57870, bool, Array_InternalArray__ICollection_Remove_698, (Array * __this, MemberRelationshipService_RelationshipEntry item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15D68, Array_InternalArray__ICollection_Remove_698__MethodInfo); DO_APP_FUNC(0x00F578D0, bool, Array_InternalArray__ICollection_Remove_699, (Array * __this, MemoryHelpers_BitRegion item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15D60, Array_InternalArray__ICollection_Remove_699__MethodInfo); DO_APP_FUNC(0x00F57930, bool, Array_InternalArray__ICollection_Remove_700, (Array * __this, MotionSolver_GPUNodeData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15D58, Array_InternalArray__ICollection_Remove_700__MethodInfo); DO_APP_FUNC(0x00F57990, bool, Array_InternalArray__ICollection_Remove_701, (Array * __this, MotionSolver_GPUNodeInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15D50, Array_InternalArray__ICollection_Remove_701__MethodInfo); DO_APP_FUNC(0x00F579F0, bool, Array_InternalArray__ICollection_Remove_702, (Array * __this, MotionSolver_GPURootTransform item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15D88, Array_InternalArray__ICollection_Remove_702__MethodInfo); DO_APP_FUNC(0x00F57A50, bool, Array_InternalArray__ICollection_Remove_703, (Array * __this, MovingPlatform_Waypoint item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15D80, Array_InternalArray__ICollection_Remove_703__MethodInfo); DO_APP_FUNC(0x00F57AB0, bool, Array_InternalArray__ICollection_Remove_704, (Array * __this, NightmareStyling_WallMaterial item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15D78, Array_InternalArray__ICollection_Remove_704__MethodInfo); DO_APP_FUNC(0x00F57B10, bool, Array_InternalArray__ICollection_Remove_705, (Array * __this, NoiseSettings_TransformNoiseParams item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15D70, Array_InternalArray__ICollection_Remove_705__MethodInfo); DO_APP_FUNC(0x00F57B70, bool, Array_InternalArray__ICollection_Remove_706, (Array * __this, NolanBehaviour_OverlappedCollider item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15D28, Array_InternalArray__ICollection_Remove_706__MethodInfo); DO_APP_FUNC(0x00F57BD0, bool, Array_InternalArray__ICollection_Remove_707, (Array * __this, ObjectPoolBase_PreloadedPrefab item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15D20, Array_InternalArray__ICollection_Remove_707__MethodInfo); DO_APP_FUNC(0x00F57C30, bool, Array_InternalArray__ICollection_Remove_708, (Array * __this, OnScreenControl_OnScreenDeviceInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15D18, Array_InternalArray__ICollection_Remove_708__MethodInfo); DO_APP_FUNC(0x00F57C90, bool, Array_InternalArray__ICollection_Remove_709, (Array * __this, OpenXRInput_SerializedBinding item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15D10, Array_InternalArray__ICollection_Remove_709__MethodInfo); DO_APP_FUNC(0x00F57CF0, bool, Array_InternalArray__ICollection_Remove_710, (Array * __this, PackedPlayModeBuildLogs_RuntimeBuildLog item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15D48, Array_InternalArray__ICollection_Remove_710__MethodInfo); DO_APP_FUNC(0x00F57D50, bool, Array_InternalArray__ICollection_Remove_711, (Array * __this, ParameterizedStrings_FormatParam item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15D40, Array_InternalArray__ICollection_Remove_711__MethodInfo); DO_APP_FUNC(0x00F57DB0, bool, Array_InternalArray__ICollection_Remove_712, (Array * __this, ParticleSystem_Particle item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15D38, Array_InternalArray__ICollection_Remove_712__MethodInfo); DO_APP_FUNC(0x00F57E10, bool, Array_InternalArray__ICollection_Remove_713, (Array * __this, PlayerStatsController_Category item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15D30, Array_InternalArray__ICollection_Remove_713__MethodInfo); DO_APP_FUNC(0x00F57E70, bool, Array_InternalArray__ICollection_Remove_714, (Array * __this, PointKDTree_Node item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15CE8, Array_InternalArray__ICollection_Remove_714__MethodInfo); DO_APP_FUNC(0x00F57ED0, bool, Array_InternalArray__ICollection_Remove_715, (Array * __this, PointerDeviceState_PointerLocation item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15CE0, Array_InternalArray__ICollection_Remove_715__MethodInfo); DO_APP_FUNC(0x00F57F30, bool, Array_InternalArray__ICollection_Remove_716, (Array * __this, ProbeBrickIndex_Brick item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15CD8, Array_InternalArray__ICollection_Remove_716__MethodInfo); DO_APP_FUNC(0x00F57F90, bool, Array_InternalArray__ICollection_Remove_717, (Array * __this, ProbeBrickIndex_BrickMeta item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15CD0, Array_InternalArray__ICollection_Remove_717__MethodInfo); DO_APP_FUNC(0x00F57FF0, bool, Array_InternalArray__ICollection_Remove_718, (Array * __this, ProbeBrickIndex_CellIndexUpdateInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15D08, Array_InternalArray__ICollection_Remove_718__MethodInfo); DO_APP_FUNC(0x00F58050, bool, Array_InternalArray__ICollection_Remove_719, (Array * __this, ProbeBrickIndex_ReservedBrick item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15D00, Array_InternalArray__ICollection_Remove_719__MethodInfo); DO_APP_FUNC(0x00F580B0, bool, Array_InternalArray__ICollection_Remove_720, (Array * __this, ProbeBrickIndex_VoxelMeta item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15CF8, Array_InternalArray__ICollection_Remove_720__MethodInfo); DO_APP_FUNC(0x00F58110, bool, Array_InternalArray__ICollection_Remove_721, (Array * __this, ProbeBrickPool_BrickChunkAlloc item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15CF0, Array_InternalArray__ICollection_Remove_721__MethodInfo); DO_APP_FUNC(0x00F58170, bool, Array_InternalArray__ICollection_Remove_722, (Array * __this, ProbeReferenceVolume_RegId item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15CA8, Array_InternalArray__ICollection_Remove_722__MethodInfo); DO_APP_FUNC(0x00F581D0, bool, Array_InternalArray__ICollection_Remove_723, (Array * __this, ProbeReferenceVolume_Volume item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15CA0, Array_InternalArray__ICollection_Remove_723__MethodInfo); DO_APP_FUNC(0x00F58230, bool, Array_InternalArray__ICollection_Remove_724, (Array * __this, ProbeVolumePerSceneData_SerializableAssetItem item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15C98, Array_InternalArray__ICollection_Remove_724__MethodInfo); DO_APP_FUNC(0x00F58290, bool, Array_InternalArray__ICollection_Remove_725, (Array * __this, ProbeVolumeSceneData_SerializableBoundItem item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15C90, Array_InternalArray__ICollection_Remove_725__MethodInfo); DO_APP_FUNC(0x00F582F0, bool, Array_InternalArray__ICollection_Remove_726, (Array * __this, ProbeVolumeSceneData_SerializableHasPVItem item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15CC8, Array_InternalArray__ICollection_Remove_726__MethodInfo); DO_APP_FUNC(0x00F58350, bool, Array_InternalArray__ICollection_Remove_727, (Array * __this, ProbeVolumeSceneData_SerializablePVBakeSettings item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15CC0, Array_InternalArray__ICollection_Remove_727__MethodInfo); DO_APP_FUNC(0x00F583B0, bool, Array_InternalArray__ICollection_Remove_728, (Array * __this, ProbeVolumeSceneData_SerializablePVProfile item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15CB8, Array_InternalArray__ICollection_Remove_728__MethodInfo); DO_APP_FUNC(0x00F58410, bool, Array_InternalArray__ICollection_Remove_729, (Array * __this, ProtocolClient_AckCallback item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15CB0, Array_InternalArray__ICollection_Remove_729__MethodInfo); DO_APP_FUNC(0x00F58470, bool, Array_InternalArray__ICollection_Remove_730, (Array * __this, ProtocolClient_MsgHandler item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15C60, Array_InternalArray__ICollection_Remove_730__MethodInfo); DO_APP_FUNC(0x00F584D0, bool, Array_InternalArray__ICollection_Remove_731, (Array * __this, RVOQuadtree_Node item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15C58, Array_InternalArray__ICollection_Remove_731__MethodInfo); DO_APP_FUNC(0x00F58530, bool, Array_InternalArray__ICollection_Remove_732, (Array * __this, Regex_CachedCodeEntryKey item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15C48, Array_InternalArray__ICollection_Remove_732__MethodInfo); DO_APP_FUNC(0x00F58590, bool, Array_InternalArray__ICollection_Remove_733, (Array * __this, RegexCharClass_LowerCaseMapping item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15C40, Array_InternalArray__ICollection_Remove_733__MethodInfo); DO_APP_FUNC(0x00F585F0, bool, Array_InternalArray__ICollection_Remove_734, (Array * __this, RegexCharClass_SingleRange item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15C88, Array_InternalArray__ICollection_Remove_734__MethodInfo); DO_APP_FUNC(0x00F58650, bool, Array_InternalArray__ICollection_Remove_735, (Array * __this, RenderChain_RenderNodeData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15C78, Array_InternalArray__ICollection_Remove_735__MethodInfo); DO_APP_FUNC(0x00F586B0, bool, Array_InternalArray__ICollection_Remove_736, (Array * __this, RenderGraph_CompiledPassInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15C70, Array_InternalArray__ICollection_Remove_736__MethodInfo); DO_APP_FUNC(0x00F58710, bool, Array_InternalArray__ICollection_Remove_737, (Array * __this, RenderGraph_CompiledResourceInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15C68, Array_InternalArray__ICollection_Remove_737__MethodInfo); DO_APP_FUNC(0x00F58770, bool, Array_InternalArray__ICollection_Remove_738, (Array * __this, RenderGraphDebugData_PassDebugData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15C18, Array_InternalArray__ICollection_Remove_738__MethodInfo); DO_APP_FUNC(0x00F587D0, bool, Array_InternalArray__ICollection_Remove_739, (Array * __this, RenderGraphDebugData_ResourceDebugData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15C10, Array_InternalArray__ICollection_Remove_739__MethodInfo); DO_APP_FUNC(0x00F58830, bool, Array_InternalArray__ICollection_Remove_740, (Array * __this, ResourceManager_DeferredCallbackRegisterRequest item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15C08, Array_InternalArray__ICollection_Remove_740__MethodInfo); DO_APP_FUNC(0x00F58890, bool, Array_InternalArray__ICollection_Remove_741, (Array * __this, RetainedGizmos_MeshWithHash item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15BF8, Array_InternalArray__ICollection_Remove_741__MethodInfo); DO_APP_FUNC(0x00F588F0, bool, Array_InternalArray__ICollection_Remove_742, (Array * __this, SendMouseEvents_HitInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15C38, Array_InternalArray__ICollection_Remove_742__MethodInfo); DO_APP_FUNC(0x00F58950, bool, Array_InternalArray__ICollection_Remove_743, (Array * __this, SequenceNode_SequenceConstructPosContext item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15C30, Array_InternalArray__ICollection_Remove_743__MethodInfo); DO_APP_FUNC(0x00F589B0, bool, Array_InternalArray__ICollection_Remove_744, (Array * __this, SerializedObject_Field item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15C28, Array_InternalArray__ICollection_Remove_744__MethodInfo); DO_APP_FUNC(0x00F58A10, bool, Array_InternalArray__ICollection_Remove_745, (Array * __this, SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15C20, Array_InternalArray__ICollection_Remove_745__MethodInfo); DO_APP_FUNC(0x00F58A70, bool, Array_InternalArray__ICollection_Remove_746, (Array * __this, SlotEquip_ItemDefinitionStateName item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15BC8, Array_InternalArray__ICollection_Remove_746__MethodInfo); DO_APP_FUNC(0x00F58AD0, bool, Array_InternalArray__ICollection_Remove_747, (Array * __this, Socket_WSABUF item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15BC0, Array_InternalArray__ICollection_Remove_747__MethodInfo); DO_APP_FUNC(0x00F58B30, bool, Array_InternalArray__ICollection_Remove_748, (Array * __this, StyleComplexSelector_PseudoStateData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15BB8, Array_InternalArray__ICollection_Remove_748__MethodInfo); DO_APP_FUNC(0x00F58B90, bool, Array_InternalArray__ICollection_Remove_749, (Array * __this, StylePropertyAnimationSystem_ElementPropertyPair item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15BB0, Array_InternalArray__ICollection_Remove_749__MethodInfo); DO_APP_FUNC(0x00F58BF0, bool, Array_InternalArray__ICollection_Remove_750, (Array * __this, StyleSheet_ImportStruct item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15BE8, Array_InternalArray__ICollection_Remove_750__MethodInfo); DO_APP_FUNC(0x00F58C50, bool, Array_InternalArray__ICollection_Remove_751, (Array * __this, StyleSheetCache_SheetHandleKey item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15BE0, Array_InternalArray__ICollection_Remove_751__MethodInfo); DO_APP_FUNC(0x00F58CB0, bool, Array_InternalArray__ICollection_Remove_752, (Array * __this, StyleVariableResolver_ResolveContext item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15BD8, Array_InternalArray__ICollection_Remove_752__MethodInfo); DO_APP_FUNC(0x00F58D10, bool, Array_InternalArray__ICollection_Remove_753, (Array * __this, TMP_Text_UnicodeChar item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15BD0, Array_InternalArray__ICollection_Remove_753__MethodInfo); DO_APP_FUNC(0x00F58D70, bool, Array_InternalArray__ICollection_Remove_754, (Array * __this, TemplateAsset_AttributeOverride item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15B88, Array_InternalArray__ICollection_Remove_754__MethodInfo); DO_APP_FUNC(0x00F58DD0, bool, Array_InternalArray__ICollection_Remove_755, (Array * __this, TextPic_IconName item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15B80, Array_InternalArray__ICollection_Remove_755__MethodInfo); DO_APP_FUNC(0x00F58E30, bool, Array_InternalArray__ICollection_Remove_756, (Array * __this, TextResourceManager_FontAssetRef item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15B70, Array_InternalArray__ICollection_Remove_756__MethodInfo); DO_APP_FUNC(0x00F58E90, bool, Array_InternalArray__ICollection_Remove_757, (Array * __this, TextSettings_FontReferenceMap item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15B68, Array_InternalArray__ICollection_Remove_757__MethodInfo); DO_APP_FUNC(0x00F58EF0, bool, Array_InternalArray__ICollection_Remove_758, (Array * __this, TextureBlitter_BlitInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15BA8, Array_InternalArray__ICollection_Remove_758__MethodInfo); DO_APP_FUNC(0x00F58F50, bool, Array_InternalArray__ICollection_Remove_759, (Array * __this, TexturePacker_JsonArray_Frame item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15BA0, Array_InternalArray__ICollection_Remove_759__MethodInfo); DO_APP_FUNC(0x00F58FB0, bool, Array_InternalArray__ICollection_Remove_760, (Array * __this, TextureRegistry_TextureInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15B98, Array_InternalArray__ICollection_Remove_760__MethodInfo); DO_APP_FUNC(0x00F59010, bool, Array_InternalArray__ICollection_Remove_761, (Array * __this, TimeNotificationBehaviour_NotificationEntry item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15B90, Array_InternalArray__ICollection_Remove_761__MethodInfo); DO_APP_FUNC(0x00F59070, bool, Array_InternalArray__ICollection_Remove_762, (Array * __this, TrackedDeviceRaycaster_RaycastHitData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15B40, Array_InternalArray__ICollection_Remove_762__MethodInfo); DO_APP_FUNC(0x00F590D0, bool, Array_InternalArray__ICollection_Remove_763, (Array * __this, TrackedPoseDriverDataDescription_PoseData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15B38, Array_InternalArray__ICollection_Remove_763__MethodInfo); DO_APP_FUNC(0x00F59130, bool, Array_InternalArray__ICollection_Remove_764, (Array * __this, TreeView_TreeViewItemWrapper item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15B30, Array_InternalArray__ICollection_Remove_764__MethodInfo); DO_APP_FUNC(0x00F59190, bool, Array_InternalArray__ICollection_Remove_765, (Array * __this, TreeViewReorderableDragAndDropController_TreeItemState item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15B28, Array_InternalArray__ICollection_Remove_765__MethodInfo); DO_APP_FUNC(0x00F591F0, bool, Array_InternalArray__ICollection_Remove_766, (Array * __this, UIRStylePainter_Entry item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15B60, Array_InternalArray__ICollection_Remove_766__MethodInfo); DO_APP_FUNC(0x00F59250, bool, Array_InternalArray__ICollection_Remove_767, (Array * __this, UIRenderDevice_AllocToFree item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15B58, Array_InternalArray__ICollection_Remove_767__MethodInfo); DO_APP_FUNC(0x00F592B0, bool, Array_InternalArray__ICollection_Remove_768, (Array * __this, UIRenderDevice_AllocToUpdate item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15B50, Array_InternalArray__ICollection_Remove_768__MethodInfo); DO_APP_FUNC(0x00F59310, bool, Array_InternalArray__ICollection_Remove_769, (Array * __this, UIRenderDevice_DeviceToFree item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15B48, Array_InternalArray__ICollection_Remove_769__MethodInfo); DO_APP_FUNC(0x00F59370, bool, Array_InternalArray__ICollection_Remove_770, (Array * __this, UdpPipe_Ack item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15B00, Array_InternalArray__ICollection_Remove_770__MethodInfo); DO_APP_FUNC(0x00F593D0, bool, Array_InternalArray__ICollection_Remove_771, (Array * __this, UmAlQuraCalendar_DateMapping item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15AF8, Array_InternalArray__ICollection_Remove_771__MethodInfo); DO_APP_FUNC(0x00F59430, bool, Array_InternalArray__ICollection_Remove_772, (Array * __this, UnitySynchronizationContext_WorkRequest item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15AF0, Array_InternalArray__ICollection_Remove_772__MethodInfo); DO_APP_FUNC(0x00F59490, bool, Array_InternalArray__ICollection_Remove_773, (Array * __this, VisualTreeAsset_SlotDefinition item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15AE8, Array_InternalArray__ICollection_Remove_773__MethodInfo); DO_APP_FUNC(0x00F594F0, bool, Array_InternalArray__ICollection_Remove_774, (Array * __this, VisualTreeAsset_SlotUsageEntry item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15B20, Array_InternalArray__ICollection_Remove_774__MethodInfo); DO_APP_FUNC(0x00F59550, bool, Array_InternalArray__ICollection_Remove_775, (Array * __this, VisualTreeAsset_UsingEntry item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15B18, Array_InternalArray__ICollection_Remove_775__MethodInfo); DO_APP_FUNC(0x00F595B0, bool, Array_InternalArray__ICollection_Remove_776, (Array * __this, WetDecalSystem_MaterialBatchId item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15B10, Array_InternalArray__ICollection_Remove_776__MethodInfo); DO_APP_FUNC(0x00F59610, bool, Array_InternalArray__ICollection_Remove_777, (Array * __this, XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15B08, Array_InternalArray__ICollection_Remove_777__MethodInfo); DO_APP_FUNC(0x00F59670, bool, Array_InternalArray__ICollection_Remove_778, (Array * __this, XmlEventCache_XmlEvent item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15AB8, Array_InternalArray__ICollection_Remove_778__MethodInfo); DO_APP_FUNC(0x00F596D0, bool, Array_InternalArray__ICollection_Remove_779, (Array * __this, XmlNamespaceManager_NamespaceDeclaration item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15AB0, Array_InternalArray__ICollection_Remove_779__MethodInfo); DO_APP_FUNC(0x00F59730, bool, Array_InternalArray__ICollection_Remove_780, (Array * __this, XmlSchemaObjectTable_XmlSchemaObjectEntry item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15AA8, Array_InternalArray__ICollection_Remove_780__MethodInfo); DO_APP_FUNC(0x00F59790, bool, Array_InternalArray__ICollection_Remove_781, (Array * __this, XmlTextReaderImpl_ParsingState item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15AA0, Array_InternalArray__ICollection_Remove_781__MethodInfo); DO_APP_FUNC(0x00F597F0, bool, Array_InternalArray__ICollection_Remove_782, (Array * __this, XmlTextWriter_Namespace item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15AE0, Array_InternalArray__ICollection_Remove_782__MethodInfo); DO_APP_FUNC(0x00F59850, bool, Array_InternalArray__ICollection_Remove_783, (Array * __this, XmlTextWriter_TagInfo item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15AD8, Array_InternalArray__ICollection_Remove_783__MethodInfo); DO_APP_FUNC(0x00F598B0, bool, Array_InternalArray__ICollection_Remove_784, (Array * __this, XmlWellFormedWriter_AttrName item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15AD0, Array_InternalArray__ICollection_Remove_784__MethodInfo); DO_APP_FUNC(0x00F59910, bool, Array_InternalArray__ICollection_Remove_785, (Array * __this, XmlWellFormedWriter_ElementScope item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15AC0, Array_InternalArray__ICollection_Remove_785__MethodInfo); DO_APP_FUNC(0x00F59970, bool, Array_InternalArray__ICollection_Remove_786, (Array * __this, XmlWellFormedWriter_Namespace item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15A60, Array_InternalArray__ICollection_Remove_786__MethodInfo); DO_APP_FUNC(0x00F599D0, bool, Array_InternalArray__ICollection_Remove_787, (Array * __this, ftLightmaps_LightmapAdditionalData item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15A50, Array_InternalArray__ICollection_Remove_787__MethodInfo); DO_APP_FUNC(0x00F59A30, bool, Array_InternalArray__ICollection_Remove_788, (Array * __this, gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15A40, Array_InternalArray__ICollection_Remove_788__MethodInfo); DO_APP_FUNC(0x00F59A90, bool, Array_InternalArray__ICollection_Remove_789, (Array * __this, gWxrirpmIhQTmhziZnlXlEwmYtKB_QpfrOmwHesfdZMwAoLXiDrdPqtqG item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15A30, Array_InternalArray__ICollection_Remove_789__MethodInfo); DO_APP_FUNC(0x00F59AF0, bool, Array_InternalArray__ICollection_Remove_790, (Array * __this, gWxrirpmIhQTmhziZnlXlEwmYtKB_vEAqJCAedocGOpCIXmtvTuaaVKZ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15A98, Array_InternalArray__ICollection_Remove_790__MethodInfo); DO_APP_FUNC(0x00F59B50, bool, Array_InternalArray__ICollection_Remove_791, (Array * __this, jlOcQLgjodoHrMnRTMaZoBnVTQkmA_UQNUjWDnDBJiFEZHZdfMIOPkNvdGb item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15A90, Array_InternalArray__ICollection_Remove_791__MethodInfo); DO_APP_FUNC(0x00F59BB0, bool, Array_InternalArray__ICollection_Remove_792, (Array * __this, DebugUI_Foldout_ContextMenuItem item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15A80, Array_InternalArray__ICollection_Remove_792__MethodInfo); DO_APP_FUNC(0x00F59C10, bool, Array_InternalArray__ICollection_Remove_793, (Array * __this, Decimal_DecCalc_PowerOvfl item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15A70, Array_InternalArray__ICollection_Remove_793__MethodInfo); DO_APP_FUNC(0x00F59C70, bool, Array_InternalArray__ICollection_Remove_794, (Array * __this, FacetsChecker_FacetsCompiler_Map item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15A00, Array_InternalArray__ICollection_Remove_794__MethodInfo); DO_APP_FUNC(0x00F59CD0, bool, Array_InternalArray__ICollection_Remove_795, (Array * __this, InputControlLayout_Collection_LayoutMatcher item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D159F8, Array_InternalArray__ICollection_Remove_795__MethodInfo); DO_APP_FUNC(0x00F59D30, bool, Array_InternalArray__ICollection_Remove_796, (Array * __this, InputControlLayout_Collection_PrecompiledLayout item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D159F0, Array_InternalArray__ICollection_Remove_796__MethodInfo); DO_APP_FUNC(0x00F59D90, bool, Array_InternalArray__ICollection_Remove_797, (Array * __this, InputControlScheme_MatchResult_Match item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D159E8, Array_InternalArray__ICollection_Remove_797__MethodInfo); DO_APP_FUNC(0x00F59DF0, bool, Array_InternalArray__ICollection_Remove_798, (Array * __this, InputControlScheme_SchemeJson_DeviceJson item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15A20, Array_InternalArray__ICollection_Remove_798__MethodInfo); DO_APP_FUNC(0x00F59E50, bool, Array_InternalArray__ICollection_Remove_799, (Array * __this, InputDeviceMatcher_MatcherJson_Capability item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15A18, Array_InternalArray__ICollection_Remove_799__MethodInfo); DO_APP_FUNC(0x00F59EB0, bool, Array_InternalArray__ICollection_Remove_800, (Array * __this, InstructionList_DebugView_InstructionView item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15A10, Array_InternalArray__ICollection_Remove_800__MethodInfo); DO_APP_FUNC(0x00F59F10, bool, Array_InternalArray__ICollection_Remove_801, (Array * __this, Interop_SspiCli_SecBuffer item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15A08, Array_InternalArray__ICollection_Remove_801__MethodInfo); DO_APP_FUNC(0x00F59F70, bool, Array_InternalArray__ICollection_Remove_802, (Array * __this, PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D159C0, Array_InternalArray__ICollection_Remove_802__MethodInfo); DO_APP_FUNC(0x00F59FD0, bool, Array_InternalArray__ICollection_Remove_803, (Array * __this, TargetPositionCache_CacheCurve_Item item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D159B8, Array_InternalArray__ICollection_Remove_803__MethodInfo); DO_APP_FUNC(0x00F5A030, bool, Array_InternalArray__ICollection_Remove_804, (Array * __this, TargetPositionCache_CacheEntry_RecordingItem item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D159B0, Array_InternalArray__ICollection_Remove_804__MethodInfo); DO_APP_FUNC(0x00F5A090, IEnumerator_1_System_ArraySegment_1_ *, Array_InternalArray__IEnumerable_GetEnumerator, (Array * __this, MethodInfo * method)); DO_APP_FUNC(0x00F5A090, IEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__2 *, Array_InternalArray__IEnumerable_GetEnumerator_1, (Array * __this, MethodInfo * method)); DO_APP_FUNC(0x00F5A090, IEnumerator_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta_ *, Array_InternalArray__IEnumerable_GetEnumerator_2, (Array * __this, MethodInfo * method)); @@ -204686,843 +226830,1681 @@ DO_APP_FUNC(0x00F5A090, IEnumerator_1_Rewired_PlayerController_Element_FBFSokzhe DO_APP_FUNC(0x00F5A090, IEnumerator_1_Cinemachine_TargetPositionCache_CacheCurve_Item_ *, Array_InternalArray__IEnumerable_GetEnumerator_803, (Array * __this, MethodInfo * method)); DO_APP_FUNC(0x00F5A090, IEnumerator_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ *, Array_InternalArray__IEnumerable_GetEnumerator_804, (Array * __this, MethodInfo * method)); DO_APP_FUNC(0x00F5A1A0, ArraySegment_1_Byte_, Array_InternalArray__IReadOnlyList_get_Item, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D159A8, Array_InternalArray__IReadOnlyList_get_Item__MethodInfo); DO_APP_FUNC(0x00F5A260, AsyncOperationHandle_1_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_1, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D159E0, Array_InternalArray__IReadOnlyList_get_Item_1__MethodInfo); DO_APP_FUNC(0x00F5A320, VoiceSender_1_TPeer_ChannelDelta_Dissonance_Integrations_PhotonBolt_BoltPeer_, Array_InternalArray__IReadOnlyList_get_Item_2, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D159D8, Array_InternalArray__IReadOnlyList_get_Item_2__MethodInfo); DO_APP_FUNC(0x00F5A3E0, DynamicHeightVirtualizationController_1_T_ContentHeightCacheInfo_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_3, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D159D0, Array_InternalArray__IReadOnlyList_get_Item_3__MethodInfo); DO_APP_FUNC(0x00F5A490, StylePropertyAnimationSystem_Values_1_T_EmptyData_Background_, Array_InternalArray__IReadOnlyList_get_Item_4, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D159C8, Array_InternalArray__IReadOnlyList_get_Item_4__MethodInfo); DO_APP_FUNC(0x00F5A540, StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color_, Array_InternalArray__IReadOnlyList_get_Item_5, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15980, Array_InternalArray__IReadOnlyList_get_Item_5__MethodInfo); DO_APP_FUNC(0x00F5A5F0, StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition_, Array_InternalArray__IReadOnlyList_get_Item_6, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15978, Array_InternalArray__IReadOnlyList_get_Item_6__MethodInfo); DO_APP_FUNC(0x00F5A6A0, StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32_, Array_InternalArray__IReadOnlyList_get_Item_7, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15970, Array_InternalArray__IReadOnlyList_get_Item_7__MethodInfo); DO_APP_FUNC(0x00F5A750, StylePropertyAnimationSystem_Values_1_T_EmptyData_Length_, Array_InternalArray__IReadOnlyList_get_Item_8, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15968, Array_InternalArray__IReadOnlyList_get_Item_8__MethodInfo); DO_APP_FUNC(0x00F5A800, StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_9, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D159A0, Array_InternalArray__IReadOnlyList_get_Item_9__MethodInfo); DO_APP_FUNC(0x00F5A8B0, StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate_, Array_InternalArray__IReadOnlyList_get_Item_10, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15998, Array_InternalArray__IReadOnlyList_get_Item_10__MethodInfo); DO_APP_FUNC(0x00F5A960, StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale_, Array_InternalArray__IReadOnlyList_get_Item_11, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15990, Array_InternalArray__IReadOnlyList_get_Item_11__MethodInfo); DO_APP_FUNC(0x00F5AA10, StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single_, Array_InternalArray__IReadOnlyList_get_Item_12, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15988, Array_InternalArray__IReadOnlyList_get_Item_12__MethodInfo); DO_APP_FUNC(0x00F5AAC0, StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow_, Array_InternalArray__IReadOnlyList_get_Item_13, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15940, Array_InternalArray__IReadOnlyList_get_Item_13__MethodInfo); DO_APP_FUNC(0x00F5AB70, StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin_, Array_InternalArray__IReadOnlyList_get_Item_14, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15938, Array_InternalArray__IReadOnlyList_get_Item_14__MethodInfo); DO_APP_FUNC(0x00F5AC20, StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate_, Array_InternalArray__IReadOnlyList_get_Item_15, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15930, Array_InternalArray__IReadOnlyList_get_Item_15__MethodInfo); DO_APP_FUNC(0x00F5ACD0, IntervalTree_1_T_Entry_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_16, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15928, Array_InternalArray__IReadOnlyList_get_Item_16__MethodInfo); DO_APP_FUNC(0x00F5AD90, XHashtable_1_TValue_XHashtableState_TValue_Entry_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_17, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15960, Array_InternalArray__IReadOnlyList_get_Item_17__MethodInfo); DO_APP_FUNC(0x00F5AE50, Dictionary_2_TKey_TValue_Entry_System_ValueTuple_2_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_18, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15958, Array_InternalArray__IReadOnlyList_get_Item_18__MethodInfo); DO_APP_FUNC(0x00F5AF10, Dictionary_2_TKey_TValue_Entry_System_ValueTuple_2_System_Object__1, Array_InternalArray__IReadOnlyList_get_Item_19, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15950, Array_InternalArray__IReadOnlyList_get_Item_19__MethodInfo); DO_APP_FUNC(0x00F5AFD0, Dictionary_2_TKey_TValue_Entry_System_Byte_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_20, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15948, Array_InternalArray__IReadOnlyList_get_Item_20__MethodInfo); DO_APP_FUNC(0x00F5B090, Dictionary_2_TKey_TValue_Entry_System_ByteEnum_System_Int32_, Array_InternalArray__IReadOnlyList_get_Item_21, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15900, Array_InternalArray__IReadOnlyList_get_Item_21__MethodInfo); DO_APP_FUNC(0x00F5B150, Dictionary_2_TKey_TValue_Entry_System_ByteEnum_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_22, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D158F8, Array_InternalArray__IReadOnlyList_get_Item_22__MethodInfo); DO_APP_FUNC(0x00F5B210, Dictionary_2_TKey_TValue_Entry_Dissonance_Audio_Playback_FrameFormat_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_23, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D158F0, Array_InternalArray__IReadOnlyList_get_Item_23__MethodInfo); DO_APP_FUNC(0x00F5B2D0, Dictionary_2_TKey_TValue_Entry_System_Guid_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_24, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D158E8, Array_InternalArray__IReadOnlyList_get_Item_24__MethodInfo); DO_APP_FUNC(0x00F5B390, Dictionary_2_TKey_TValue_Entry_System_Guid_System_UInt32_, Array_InternalArray__IReadOnlyList_get_Item_25, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15920, Array_InternalArray__IReadOnlyList_get_Item_25__MethodInfo); DO_APP_FUNC(0x00F5B450, Dictionary_2_TKey_TValue_Entry_UnityEngine_Hash128_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_26, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15918, Array_InternalArray__IReadOnlyList_get_Item_26__MethodInfo); DO_APP_FUNC(0x00F5B510, Dictionary_2_TKey_TValue_Entry_Pathfinding_Int2_System_Int32_, Array_InternalArray__IReadOnlyList_get_Item_27, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15910, Array_InternalArray__IReadOnlyList_get_Item_27__MethodInfo); DO_APP_FUNC(0x00F5B5D0, Dictionary_2_TKey_TValue_Entry_Pathfinding_Int3_System_Int32_, Array_InternalArray__IReadOnlyList_get_Item_28, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15908, Array_InternalArray__IReadOnlyList_get_Item_28__MethodInfo); DO_APP_FUNC(0x00F5B690, Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_, Array_InternalArray__IReadOnlyList_get_Item_29, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D158C0, Array_InternalArray__IReadOnlyList_get_Item_29__MethodInfo); DO_APP_FUNC(0x00F5B750, Dictionary_2_TKey_TValue_Entry_System_Int32_System_ValueTuple_2_, Array_InternalArray__IReadOnlyList_get_Item_30, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D158B0, Array_InternalArray__IReadOnlyList_get_Item_30__MethodInfo); DO_APP_FUNC(0x00F5B810, Dictionary_2_TKey_TValue_Entry_System_Int32_System_Boolean_, Array_InternalArray__IReadOnlyList_get_Item_31, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D158A0, Array_InternalArray__IReadOnlyList_get_Item_31__MethodInfo); DO_APP_FUNC(0x00F5B8D0, Dictionary_2_TKey_TValue_Entry_System_Int32_System_ByteEnum_, Array_InternalArray__IReadOnlyList_get_Item_32, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15890, Array_InternalArray__IReadOnlyList_get_Item_32__MethodInfo); DO_APP_FUNC(0x00F5B990, Dictionary_2_TKey_TValue_Entry_System_Int32_System_Char_, Array_InternalArray__IReadOnlyList_get_Item_33, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D158E0, Array_InternalArray__IReadOnlyList_get_Item_33__MethodInfo); DO_APP_FUNC(0x00F5BA50, Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_, Array_InternalArray__IReadOnlyList_get_Item_34, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D158D8, Array_InternalArray__IReadOnlyList_get_Item_34__MethodInfo); DO_APP_FUNC(0x00F5BB10, Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int16_, Array_InternalArray__IReadOnlyList_get_Item_35, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D158D0, Array_InternalArray__IReadOnlyList_get_Item_35__MethodInfo); DO_APP_FUNC(0x00F5BBD0, Dictionary_2_TKey_TValue_Entry_System_Int32_Pathfinding_Int3_, Array_InternalArray__IReadOnlyList_get_Item_36, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D158C8, Array_InternalArray__IReadOnlyList_get_Item_36__MethodInfo); DO_APP_FUNC(0x00F5BC90, ADictionary_2_TKey_TValue_Entry_System_Int32_System_Int32_, Array_InternalArray__IReadOnlyList_get_Item_37, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15840, Array_InternalArray__IReadOnlyList_get_Item_37__MethodInfo); DO_APP_FUNC(0x00F5BD50, Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int32_, Array_InternalArray__IReadOnlyList_get_Item_38, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15830, Array_InternalArray__IReadOnlyList_get_Item_38__MethodInfo); DO_APP_FUNC(0x00F5BE10, Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int32Enum_, Array_InternalArray__IReadOnlyList_get_Item_39, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15820, Array_InternalArray__IReadOnlyList_get_Item_39__MethodInfo); DO_APP_FUNC(0x00F5BED0, Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int64_, Array_InternalArray__IReadOnlyList_get_Item_40, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15810, Array_InternalArray__IReadOnlyList_get_Item_40__MethodInfo); DO_APP_FUNC(0x00F5BF90, ADictionary_2_TKey_TValue_Entry_System_Int32_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_41, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15880, Array_InternalArray__IReadOnlyList_get_Item_41__MethodInfo); DO_APP_FUNC(0x00F5C050, Dictionary_2_TKey_TValue_Entry_System_Int32_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_42, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15870, Array_InternalArray__IReadOnlyList_get_Item_42__MethodInfo); DO_APP_FUNC(0x00F5C110, Dictionary_2_TKey_TValue_Entry_System_Int32_PlayerFlashlightBeam_, Array_InternalArray__IReadOnlyList_get_Item_43, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15860, Array_InternalArray__IReadOnlyList_get_Item_43__MethodInfo); DO_APP_FUNC(0x00F5C1D0, Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_RenderInstancedDataLayout_, Array_InternalArray__IReadOnlyList_get_Item_44, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15850, Array_InternalArray__IReadOnlyList_get_Item_44__MethodInfo); DO_APP_FUNC(0x00F5C290, Dictionary_2_TKey_TValue_Entry_System_Int32_System_Single_, Array_InternalArray__IReadOnlyList_get_Item_45, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D157C0, Array_InternalArray__IReadOnlyList_get_Item_45__MethodInfo); DO_APP_FUNC(0x00F5C350, Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_TreeItem_, Array_InternalArray__IReadOnlyList_get_Item_46, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D157B0, Array_InternalArray__IReadOnlyList_get_Item_46__MethodInfo); DO_APP_FUNC(0x00F5C410, Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Vector2Int_, Array_InternalArray__IReadOnlyList_get_Item_47, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D157A0, Array_InternalArray__IReadOnlyList_get_Item_47__MethodInfo); DO_APP_FUNC(0x00F5C4D0, Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Vector4_, Array_InternalArray__IReadOnlyList_get_Item_48, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15790, Array_InternalArray__IReadOnlyList_get_Item_48__MethodInfo); DO_APP_FUNC(0x00F5C590, Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_, Array_InternalArray__IReadOnlyList_get_Item_49, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15800, Array_InternalArray__IReadOnlyList_get_Item_49__MethodInfo); DO_APP_FUNC(0x00F5C650, Dictionary_2_TKey_TValue_Entry_System_Int32Enum_System_Int32Enum_, Array_InternalArray__IReadOnlyList_get_Item_50, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D157F0, Array_InternalArray__IReadOnlyList_get_Item_50__MethodInfo); DO_APP_FUNC(0x00F5C710, Dictionary_2_TKey_TValue_Entry_System_Int32Enum_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_51, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D157E0, Array_InternalArray__IReadOnlyList_get_Item_51__MethodInfo); DO_APP_FUNC(0x00F5C7D0, Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_UIElements_ComputedStyle_, Array_InternalArray__IReadOnlyList_get_Item_52, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D157D0, Array_InternalArray__IReadOnlyList_get_Item_52__MethodInfo); DO_APP_FUNC(0x00F5C8A0, Dictionary_2_TKey_TValue_Entry_System_Int64_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_53, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15740, Array_InternalArray__IReadOnlyList_get_Item_53__MethodInfo); DO_APP_FUNC(0x00F5C960, Dictionary_2_TKey_TValue_Entry_System_IntPtr_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_54, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15730, Array_InternalArray__IReadOnlyList_get_Item_54__MethodInfo); DO_APP_FUNC(0x00F5CA20, Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_, Array_InternalArray__IReadOnlyList_get_Item_55, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15720, Array_InternalArray__IReadOnlyList_get_Item_55__MethodInfo); DO_APP_FUNC(0x00F5CAE0, Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_56, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15710, Array_InternalArray__IReadOnlyList_get_Item_56__MethodInfo); DO_APP_FUNC(0x00F5CBA0, Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_, Array_InternalArray__IReadOnlyList_get_Item_57, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15780, Array_InternalArray__IReadOnlyList_get_Item_57__MethodInfo); DO_APP_FUNC(0x00F5CC60, Dictionary_2_TKey_TValue_Entry_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_58, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15770, Array_InternalArray__IReadOnlyList_get_Item_58__MethodInfo); DO_APP_FUNC(0x00F5CD20, Dictionary_2_TKey_TValue_Entry_Photon_Bolt_NetworkId_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_59, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15760, Array_InternalArray__IReadOnlyList_get_Item_59__MethodInfo); DO_APP_FUNC(0x00F5CDE0, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_, Array_InternalArray__IReadOnlyList_get_Item_60, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15750, Array_InternalArray__IReadOnlyList_get_Item_60__MethodInfo); DO_APP_FUNC(0x00F5CEA0, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_, Array_InternalArray__IReadOnlyList_get_Item_61, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D156C0, Array_InternalArray__IReadOnlyList_get_Item_61__MethodInfo); DO_APP_FUNC(0x00F5CF60, Dictionary_2_TKey_TValue_Entry_System_Object_System_Boolean_, Array_InternalArray__IReadOnlyList_get_Item_62, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D156B0, Array_InternalArray__IReadOnlyList_get_Item_62__MethodInfo); DO_APP_FUNC(0x00F5D020, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Bounds_, Array_InternalArray__IReadOnlyList_get_Item_63, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D156A0, Array_InternalArray__IReadOnlyList_get_Item_63__MethodInfo); DO_APP_FUNC(0x00F5D0E0, Dictionary_2_TKey_TValue_Entry_System_Object_System_Byte_, Array_InternalArray__IReadOnlyList_get_Item_64, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15690, Array_InternalArray__IReadOnlyList_get_Item_64__MethodInfo); DO_APP_FUNC(0x00F5D1A0, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Color_, Array_InternalArray__IReadOnlyList_get_Item_65, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15700, Array_InternalArray__IReadOnlyList_get_Item_65__MethodInfo); DO_APP_FUNC(0x00F5D260, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Color32_, Array_InternalArray__IReadOnlyList_get_Item_66, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D156F0, Array_InternalArray__IReadOnlyList_get_Item_66__MethodInfo); DO_APP_FUNC(0x00F5D320, ADictionary_2_TKey_TValue_Entry_System_Object_System_Int32_, Array_InternalArray__IReadOnlyList_get_Item_67, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D156E0, Array_InternalArray__IReadOnlyList_get_Item_67__MethodInfo); DO_APP_FUNC(0x00F5D3E0, Dictionary_2_TKey_TValue_Entry_System_Object_System_Int32_, Array_InternalArray__IReadOnlyList_get_Item_68, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D156D0, Array_InternalArray__IReadOnlyList_get_Item_68__MethodInfo); DO_APP_FUNC(0x00F5D4A0, ADictionary_2_TKey_TValue_Entry_System_Object_System_Int32Enum_, Array_InternalArray__IReadOnlyList_get_Item_69, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15640, Array_InternalArray__IReadOnlyList_get_Item_69__MethodInfo); DO_APP_FUNC(0x00F5D560, Dictionary_2_TKey_TValue_Entry_System_Object_System_Int32Enum_, Array_InternalArray__IReadOnlyList_get_Item_70, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15630, Array_InternalArray__IReadOnlyList_get_Item_70__MethodInfo); DO_APP_FUNC(0x00F5D620, ADictionary_2_TKey_TValue_Entry_System_Object_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_71, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15620, Array_InternalArray__IReadOnlyList_get_Item_71__MethodInfo); DO_APP_FUNC(0x00F5D6E0, Dictionary_2_TKey_TValue_Entry_System_Object_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_72, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15610, Array_InternalArray__IReadOnlyList_get_Item_72__MethodInfo); DO_APP_FUNC(0x00F5D7A0, Dictionary_2_TKey_TValue_Entry_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_, Array_InternalArray__IReadOnlyList_get_Item_73, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15680, Array_InternalArray__IReadOnlyList_get_Item_73__MethodInfo); DO_APP_FUNC(0x00F5D860, Dictionary_2_TKey_TValue_Entry_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_, Array_InternalArray__IReadOnlyList_get_Item_74, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15670, Array_InternalArray__IReadOnlyList_get_Item_74__MethodInfo); DO_APP_FUNC(0x00F5D930, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Playables_Playable_, Array_InternalArray__IReadOnlyList_get_Item_75, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15660, Array_InternalArray__IReadOnlyList_get_Item_75__MethodInfo); DO_APP_FUNC(0x00F5D9F0, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_, Array_InternalArray__IReadOnlyList_get_Item_76, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15650, Array_InternalArray__IReadOnlyList_get_Item_76__MethodInfo); DO_APP_FUNC(0x00F5DAB0, Dictionary_2_TKey_TValue_Entry_System_Object_System_Resources_ResourceLocator_, Array_InternalArray__IReadOnlyList_get_Item_77, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D155C8, Array_InternalArray__IReadOnlyList_get_Item_77__MethodInfo); DO_APP_FUNC(0x00F5DB70, Dictionary_2_TKey_TValue_Entry_System_Object_System_Single_, Array_InternalArray__IReadOnlyList_get_Item_78, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D155C0, Array_InternalArray__IReadOnlyList_get_Item_78__MethodInfo); DO_APP_FUNC(0x00F5DC30, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue_, Array_InternalArray__IReadOnlyList_get_Item_79, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D155B8, Array_InternalArray__IReadOnlyList_get_Item_79__MethodInfo); DO_APP_FUNC(0x00F5DCF0, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_UIElements_TextureId_, Array_InternalArray__IReadOnlyList_get_Item_80, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D155B0, Array_InternalArray__IReadOnlyList_get_Item_80__MethodInfo); DO_APP_FUNC(0x00F5DDB0, Dictionary_2_TKey_TValue_Entry_System_Object_System_TimeSpan_, Array_InternalArray__IReadOnlyList_get_Item_81, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D15600, Array_InternalArray__IReadOnlyList_get_Item_81__MethodInfo); DO_APP_FUNC(0x00F5DE70, Dictionary_2_TKey_TValue_Entry_System_Object_UdpKit_UdpEndPoint_, Array_InternalArray__IReadOnlyList_get_Item_82, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D155F0, Array_InternalArray__IReadOnlyList_get_Item_82__MethodInfo); DO_APP_FUNC(0x00F5DF30, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Vector2_, Array_InternalArray__IReadOnlyList_get_Item_83, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D155E0, Array_InternalArray__IReadOnlyList_get_Item_83__MethodInfo); DO_APP_FUNC(0x00F5DFF0, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Vector3_, Array_InternalArray__IReadOnlyList_get_Item_84, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D155D0, Array_InternalArray__IReadOnlyList_get_Item_84__MethodInfo); DO_APP_FUNC(0x00F5E0B0, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_, Array_InternalArray__IReadOnlyList_get_Item_85, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D155A8, Array_InternalArray__IReadOnlyList_get_Item_85__MethodInfo); DO_APP_FUNC(0x00F5E170, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_, Array_InternalArray__IReadOnlyList_get_Item_86, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D155A0, Array_InternalArray__IReadOnlyList_get_Item_86__MethodInfo); DO_APP_FUNC(0x00F5E230, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_, Array_InternalArray__IReadOnlyList_get_Item_87, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19C18, Array_InternalArray__IReadOnlyList_get_Item_87__MethodInfo); DO_APP_FUNC(0x00F5E300, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_, Array_InternalArray__IReadOnlyList_get_Item_88, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19C08, Array_InternalArray__IReadOnlyList_get_Item_88__MethodInfo); DO_APP_FUNC(0x00F5E3C0, Dictionary_2_TKey_TValue_Entry_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback_, Array_InternalArray__IReadOnlyList_get_Item_89, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19BF8, Array_InternalArray__IReadOnlyList_get_Item_89__MethodInfo); DO_APP_FUNC(0x00F5E490, Dictionary_2_TKey_TValue_Entry_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_, Array_InternalArray__IReadOnlyList_get_Item_90, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19C48, Array_InternalArray__IReadOnlyList_get_Item_90__MethodInfo); DO_APP_FUNC(0x00F5E560, Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_, Array_InternalArray__IReadOnlyList_get_Item_91, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19C40, Array_InternalArray__IReadOnlyList_get_Item_91__MethodInfo); DO_APP_FUNC(0x00F5E620, Dictionary_2_TKey_TValue_Entry_Photon_Bolt_PrefabId_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_92, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19C30, Array_InternalArray__IReadOnlyList_get_Item_92__MethodInfo); DO_APP_FUNC(0x00F5E6E0, Dictionary_2_TKey_TValue_Entry_UnityEngine_RaycastHit_System_Int32_, Array_InternalArray__IReadOnlyList_get_Item_93, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19C20, Array_InternalArray__IReadOnlyList_get_Item_93__MethodInfo); DO_APP_FUNC(0x00F5E7B0, Dictionary_2_TKey_TValue_Entry_System_Single_SplineMesh_CurveSample_, Array_InternalArray__IReadOnlyList_get_Item_94, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19BC8, Array_InternalArray__IReadOnlyList_get_Item_94__MethodInfo); DO_APP_FUNC(0x00F5E880, Dictionary_2_TKey_TValue_Entry_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_95, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19BC0, Array_InternalArray__IReadOnlyList_get_Item_95__MethodInfo); DO_APP_FUNC(0x00F5E940, Dictionary_2_TKey_TValue_Entry_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_96, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19BB8, Array_InternalArray__IReadOnlyList_get_Item_96__MethodInfo); DO_APP_FUNC(0x00F5EA00, Dictionary_2_TKey_TValue_Entry_Photon_Bolt_TypeId_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_97, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19BB0, Array_InternalArray__IReadOnlyList_get_Item_97__MethodInfo); DO_APP_FUNC(0x00F5EAC0, Dictionary_2_TKey_TValue_Entry_System_UInt16_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_98, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19BE8, Array_InternalArray__IReadOnlyList_get_Item_98__MethodInfo); DO_APP_FUNC(0x00F5EB80, Dictionary_2_TKey_TValue_Entry_System_UInt16_Dissonance_PlayerChannel_, Array_InternalArray__IReadOnlyList_get_Item_99, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19BE0, Array_InternalArray__IReadOnlyList_get_Item_99__MethodInfo); DO_APP_FUNC(0x00F5EC40, Dictionary_2_TKey_TValue_Entry_System_UInt16_Dissonance_RoomChannel_, Array_InternalArray__IReadOnlyList_get_Item_100, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19BD8, Array_InternalArray__IReadOnlyList_get_Item_100__MethodInfo); DO_APP_FUNC(0x00F5ED10, Dictionary_2_TKey_TValue_Entry_System_UInt32_System_Boolean_, Array_InternalArray__IReadOnlyList_get_Item_101, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19BD0, Array_InternalArray__IReadOnlyList_get_Item_101__MethodInfo); DO_APP_FUNC(0x00F5EDD0, Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_, Array_InternalArray__IReadOnlyList_get_Item_102, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19B80, Array_InternalArray__IReadOnlyList_get_Item_102__MethodInfo); DO_APP_FUNC(0x00F5EEA0, Dictionary_2_TKey_TValue_Entry_System_UInt32_System_Int32_, Array_InternalArray__IReadOnlyList_get_Item_103, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19B70, Array_InternalArray__IReadOnlyList_get_Item_103__MethodInfo); DO_APP_FUNC(0x00F5EF60, Dictionary_2_TKey_TValue_Entry_System_UInt32_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_104, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19B68, Array_InternalArray__IReadOnlyList_get_Item_104__MethodInfo); DO_APP_FUNC(0x00F5F020, Dictionary_2_TKey_TValue_Entry_System_UInt32_SessionClient_, Array_InternalArray__IReadOnlyList_get_Item_105, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19B60, Array_InternalArray__IReadOnlyList_get_Item_105__MethodInfo); DO_APP_FUNC(0x00F5F0F0, Dictionary_2_TKey_TValue_Entry_System_UInt64_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_106, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19BA8, Array_InternalArray__IReadOnlyList_get_Item_106__MethodInfo); DO_APP_FUNC(0x00F5F1B0, Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_, Array_InternalArray__IReadOnlyList_get_Item_107, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19B98, Array_InternalArray__IReadOnlyList_get_Item_107__MethodInfo); DO_APP_FUNC(0x00F5F270, Dictionary_2_TKey_TValue_Entry_UdpKit_UdpChannelName_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_108, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19B90, Array_InternalArray__IReadOnlyList_get_Item_108__MethodInfo); DO_APP_FUNC(0x00F5F330, Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_109, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19B88, Array_InternalArray__IReadOnlyList_get_Item_109__MethodInfo); DO_APP_FUNC(0x00F5F3F0, Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_UInt32_, Array_InternalArray__IReadOnlyList_get_Item_110, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19B20, Array_InternalArray__IReadOnlyList_get_Item_110__MethodInfo); DO_APP_FUNC(0x00F5F4B0, Dictionary_2_TKey_TValue_Entry_Photon_Bolt_UniqueId_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_111, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19B18, Array_InternalArray__IReadOnlyList_get_Item_111__MethodInfo); DO_APP_FUNC(0x00F5F570, Dictionary_2_TKey_TValue_Entry_UnityEngine_Vector3_System_Int32_, Array_InternalArray__IReadOnlyList_get_Item_112, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19B10, Array_InternalArray__IReadOnlyList_get_Item_112__MethodInfo); DO_APP_FUNC(0x00F5F630, Dictionary_2_TKey_TValue_Entry_UnityEngine_Vector3Int_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_113, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19B08, Array_InternalArray__IReadOnlyList_get_Item_113__MethodInfo); DO_APP_FUNC(0x00F5F6F0, Dictionary_2_TKey_TValue_Entry_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_, Array_InternalArray__IReadOnlyList_get_Item_114, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19B50, Array_InternalArray__IReadOnlyList_get_Item_114__MethodInfo); DO_APP_FUNC(0x00F5F7B0, Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_115, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19B48, Array_InternalArray__IReadOnlyList_get_Item_115__MethodInfo); DO_APP_FUNC(0x00F5F870, Dictionary_2_TKey_TValue_Entry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_, Array_InternalArray__IReadOnlyList_get_Item_116, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19B40, Array_InternalArray__IReadOnlyList_get_Item_116__MethodInfo); DO_APP_FUNC(0x00F5F940, Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_117, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19B30, Array_InternalArray__IReadOnlyList_get_Item_117__MethodInfo); DO_APP_FUNC(0x00F5FA00, Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_, Array_InternalArray__IReadOnlyList_get_Item_118, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19AE0, Array_InternalArray__IReadOnlyList_get_Item_118__MethodInfo); DO_APP_FUNC(0x00F5FAC0, Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_, Array_InternalArray__IReadOnlyList_get_Item_119, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19AD0, Array_InternalArray__IReadOnlyList_get_Item_119__MethodInfo); DO_APP_FUNC(0x00F5FB90, Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_120, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19AC8, Array_InternalArray__IReadOnlyList_get_Item_120__MethodInfo); DO_APP_FUNC(0x00F5FC60, Dictionary_2_TKey_TValue_Entry_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_121, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19AC0, Array_InternalArray__IReadOnlyList_get_Item_121__MethodInfo); DO_APP_FUNC(0x00F5FD20, Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_, Array_InternalArray__IReadOnlyList_get_Item_122, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19B00, Array_InternalArray__IReadOnlyList_get_Item_122__MethodInfo); DO_APP_FUNC(0x00F5FDE0, Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_, Array_InternalArray__IReadOnlyList_get_Item_123, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19AF8, Array_InternalArray__IReadOnlyList_get_Item_123__MethodInfo); DO_APP_FUNC(0x00F5FEA0, Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_124, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19AF0, Array_InternalArray__IReadOnlyList_get_Item_124__MethodInfo); DO_APP_FUNC(0x00F5FF60, Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_125, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19AE8, Array_InternalArray__IReadOnlyList_get_Item_125__MethodInfo); DO_APP_FUNC(0x00F60020, Dictionary_2_TKey_TValue_Entry_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_126, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19A60, Array_InternalArray__IReadOnlyList_get_Item_126__MethodInfo); DO_APP_FUNC(0x00F60100, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_127, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19A50, Array_InternalArray__IReadOnlyList_get_Item_127__MethodInfo); DO_APP_FUNC(0x00F601C0, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_128, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19A48, Array_InternalArray__IReadOnlyList_get_Item_128__MethodInfo); DO_APP_FUNC(0x00F60280, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_, Array_InternalArray__IReadOnlyList_get_Item_129, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19A40, Array_InternalArray__IReadOnlyList_get_Item_129__MethodInfo); DO_APP_FUNC(0x00F60340, KeyValuePair_2_System_ValueTuple_2_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_130, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19AB0, Array_InternalArray__IReadOnlyList_get_Item_130__MethodInfo); DO_APP_FUNC(0x00F60400, KeyValuePair_2_System_ValueTuple_2_System_Object__1, Array_InternalArray__IReadOnlyList_get_Item_131, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19AA0, Array_InternalArray__IReadOnlyList_get_Item_131__MethodInfo); DO_APP_FUNC(0x00F604C0, KeyValuePair_2_System_Byte_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_132, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19A90, Array_InternalArray__IReadOnlyList_get_Item_132__MethodInfo); DO_APP_FUNC(0x00F60580, KeyValuePair_2_System_ByteEnum_System_Int32_, Array_InternalArray__IReadOnlyList_get_Item_133, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19A78, Array_InternalArray__IReadOnlyList_get_Item_133__MethodInfo); DO_APP_FUNC(0x00F60630, KeyValuePair_2_System_ByteEnum_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_134, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D199F0, Array_InternalArray__IReadOnlyList_get_Item_134__MethodInfo); DO_APP_FUNC(0x00F606F0, KeyValuePair_2_System_DateTime_System_UInt32_, Array_InternalArray__IReadOnlyList_get_Item_135, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D199E0, Array_InternalArray__IReadOnlyList_get_Item_135__MethodInfo); DO_APP_FUNC(0x00F607B0, KeyValuePair_2_Dissonance_Audio_Playback_FrameFormat_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_136, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D199D0, Array_InternalArray__IReadOnlyList_get_Item_136__MethodInfo); DO_APP_FUNC(0x00F60870, KeyValuePair_2_System_Guid_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_137, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D199C8, Array_InternalArray__IReadOnlyList_get_Item_137__MethodInfo); DO_APP_FUNC(0x00F60930, KeyValuePair_2_System_Guid_System_UInt32_, Array_InternalArray__IReadOnlyList_get_Item_138, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19A38, Array_InternalArray__IReadOnlyList_get_Item_138__MethodInfo); DO_APP_FUNC(0x00F609F0, KeyValuePair_2_UnityEngine_Hash128_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_139, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19A30, Array_InternalArray__IReadOnlyList_get_Item_139__MethodInfo); DO_APP_FUNC(0x00F60AB0, KeyValuePair_2_Pathfinding_Int2_System_Int32_, Array_InternalArray__IReadOnlyList_get_Item_140, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19A20, Array_InternalArray__IReadOnlyList_get_Item_140__MethodInfo); DO_APP_FUNC(0x00F60B70, KeyValuePair_2_Pathfinding_Int3_System_Int32_, Array_InternalArray__IReadOnlyList_get_Item_141, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19A08, Array_InternalArray__IReadOnlyList_get_Item_141__MethodInfo); DO_APP_FUNC(0x00F60C30, KeyValuePair_2_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_, Array_InternalArray__IReadOnlyList_get_Item_142, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19980, Array_InternalArray__IReadOnlyList_get_Item_142__MethodInfo); DO_APP_FUNC(0x00F60CF0, KeyValuePair_2_System_Int32_System_ValueTuple_2__3, Array_InternalArray__IReadOnlyList_get_Item_143, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19978, Array_InternalArray__IReadOnlyList_get_Item_143__MethodInfo); DO_APP_FUNC(0x00F60DB0, KeyValuePair_2_System_Int32_System_ValueTuple_2__2, Array_InternalArray__IReadOnlyList_get_Item_144, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19970, Array_InternalArray__IReadOnlyList_get_Item_144__MethodInfo); DO_APP_FUNC(0x00F60E70, KeyValuePair_2_System_Int32_System_Boolean_, Array_InternalArray__IReadOnlyList_get_Item_145, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19960, Array_InternalArray__IReadOnlyList_get_Item_145__MethodInfo); DO_APP_FUNC(0x00F60F20, KeyValuePair_2_System_Int32_System_ByteEnum_, Array_InternalArray__IReadOnlyList_get_Item_146, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D199C0, Array_InternalArray__IReadOnlyList_get_Item_146__MethodInfo); DO_APP_FUNC(0x00F60FD0, KeyValuePair_2_System_Int32_System_Char_, Array_InternalArray__IReadOnlyList_get_Item_147, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D199B0, Array_InternalArray__IReadOnlyList_get_Item_147__MethodInfo); DO_APP_FUNC(0x00F61080, KeyValuePair_2_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_, Array_InternalArray__IReadOnlyList_get_Item_148, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D199A0, Array_InternalArray__IReadOnlyList_get_Item_148__MethodInfo); DO_APP_FUNC(0x00F61150, KeyValuePair_2_System_Int32_System_Int16_, Array_InternalArray__IReadOnlyList_get_Item_149, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19990, Array_InternalArray__IReadOnlyList_get_Item_149__MethodInfo); DO_APP_FUNC(0x00F61200, KeyValuePair_2_System_Int32_Pathfinding_Int3_, Array_InternalArray__IReadOnlyList_get_Item_150, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19920, Array_InternalArray__IReadOnlyList_get_Item_150__MethodInfo); DO_APP_FUNC(0x00F612C0, KeyValuePair_2_System_Int32_System_Int32_, Array_InternalArray__IReadOnlyList_get_Item_151, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19918, Array_InternalArray__IReadOnlyList_get_Item_151__MethodInfo); DO_APP_FUNC(0x00F61370, KeyValuePair_2_System_Int32_System_Int32Enum_, Array_InternalArray__IReadOnlyList_get_Item_152, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19910, Array_InternalArray__IReadOnlyList_get_Item_152__MethodInfo); DO_APP_FUNC(0x00F61420, KeyValuePair_2_System_Int32_System_Int64_, Array_InternalArray__IReadOnlyList_get_Item_153, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19908, Array_InternalArray__IReadOnlyList_get_Item_153__MethodInfo); DO_APP_FUNC(0x00F614E0, KeyValuePair_2_System_Int32_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_154, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19950, Array_InternalArray__IReadOnlyList_get_Item_154__MethodInfo); DO_APP_FUNC(0x00F615A0, KeyValuePair_2_System_Int32_PlayerFlashlightBeam_, Array_InternalArray__IReadOnlyList_get_Item_155, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19948, Array_InternalArray__IReadOnlyList_get_Item_155__MethodInfo); DO_APP_FUNC(0x00F61660, KeyValuePair_2_System_Int32_UnityEngine_RenderInstancedDataLayout_, Array_InternalArray__IReadOnlyList_get_Item_156, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19940, Array_InternalArray__IReadOnlyList_get_Item_156__MethodInfo); DO_APP_FUNC(0x00F61720, KeyValuePair_2_System_Int32_System_Single_, Array_InternalArray__IReadOnlyList_get_Item_157, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19930, Array_InternalArray__IReadOnlyList_get_Item_157__MethodInfo); DO_APP_FUNC(0x00F617D0, KeyValuePair_2_System_Int32_UnityEngine_UIElements_TreeItem_, Array_InternalArray__IReadOnlyList_get_Item_158, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D198D0, Array_InternalArray__IReadOnlyList_get_Item_158__MethodInfo); DO_APP_FUNC(0x00F61890, KeyValuePair_2_System_Int32_UnityEngine_Vector2Int_, Array_InternalArray__IReadOnlyList_get_Item_159, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D198C8, Array_InternalArray__IReadOnlyList_get_Item_159__MethodInfo); DO_APP_FUNC(0x00F61950, KeyValuePair_2_System_Int32_UnityEngine_Vector4_, Array_InternalArray__IReadOnlyList_get_Item_160, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D198C0, Array_InternalArray__IReadOnlyList_get_Item_160__MethodInfo); DO_APP_FUNC(0x00F61A10, KeyValuePair_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_, Array_InternalArray__IReadOnlyList_get_Item_161, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D198B0, Array_InternalArray__IReadOnlyList_get_Item_161__MethodInfo); DO_APP_FUNC(0x00F61AD0, KeyValuePair_2_System_Int32Enum_System_Int32Enum_, Array_InternalArray__IReadOnlyList_get_Item_162, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19900, Array_InternalArray__IReadOnlyList_get_Item_162__MethodInfo); DO_APP_FUNC(0x00F61B80, KeyValuePair_2_System_Int32Enum_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_163, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D198F0, Array_InternalArray__IReadOnlyList_get_Item_163__MethodInfo); DO_APP_FUNC(0x00F61C40, KeyValuePair_2_System_Int64_UnityEngine_UIElements_ComputedStyle_, Array_InternalArray__IReadOnlyList_get_Item_164, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D198E0, Array_InternalArray__IReadOnlyList_get_Item_164__MethodInfo); DO_APP_FUNC(0x00F61D10, KeyValuePair_2_System_Int64_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_165, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D198D8, Array_InternalArray__IReadOnlyList_get_Item_165__MethodInfo); DO_APP_FUNC(0x00F61DD0, KeyValuePair_2_System_IntPtr_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_166, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19888, Array_InternalArray__IReadOnlyList_get_Item_166__MethodInfo); DO_APP_FUNC(0x00F61E90, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_, Array_InternalArray__IReadOnlyList_get_Item_167, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19878, Array_InternalArray__IReadOnlyList_get_Item_167__MethodInfo); DO_APP_FUNC(0x00F61F50, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_168, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19868, Array_InternalArray__IReadOnlyList_get_Item_168__MethodInfo); DO_APP_FUNC(0x00F62010, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_, Array_InternalArray__IReadOnlyList_get_Item_169, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19858, Array_InternalArray__IReadOnlyList_get_Item_169__MethodInfo); DO_APP_FUNC(0x00F620D0, KeyValuePair_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_170, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D198A8, Array_InternalArray__IReadOnlyList_get_Item_170__MethodInfo); DO_APP_FUNC(0x00F62190, KeyValuePair_2_Photon_Bolt_NetworkId_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_171, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D198A0, Array_InternalArray__IReadOnlyList_get_Item_171__MethodInfo); DO_APP_FUNC(0x00F62250, KeyValuePair_2_System_Object_System_ArraySegment_1_, Array_InternalArray__IReadOnlyList_get_Item_172, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19898, Array_InternalArray__IReadOnlyList_get_Item_172__MethodInfo); DO_APP_FUNC(0x00F62310, KeyValuePair_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_, Array_InternalArray__IReadOnlyList_get_Item_173, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19890, Array_InternalArray__IReadOnlyList_get_Item_173__MethodInfo); DO_APP_FUNC(0x00F623D0, KeyValuePair_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_, Array_InternalArray__IReadOnlyList_get_Item_174, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19820, Array_InternalArray__IReadOnlyList_get_Item_174__MethodInfo); DO_APP_FUNC(0x00F62490, KeyValuePair_2_System_Object_System_Boolean_, Array_InternalArray__IReadOnlyList_get_Item_175, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19818, Array_InternalArray__IReadOnlyList_get_Item_175__MethodInfo); DO_APP_FUNC(0x00F62550, KeyValuePair_2_System_Object_UnityEngine_Bounds_, Array_InternalArray__IReadOnlyList_get_Item_176, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19810, Array_InternalArray__IReadOnlyList_get_Item_176__MethodInfo); DO_APP_FUNC(0x00F62610, KeyValuePair_2_System_Object_System_Byte_, Array_InternalArray__IReadOnlyList_get_Item_177, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19808, Array_InternalArray__IReadOnlyList_get_Item_177__MethodInfo); DO_APP_FUNC(0x00F626D0, KeyValuePair_2_System_Object_System_Char_, Array_InternalArray__IReadOnlyList_get_Item_178, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19848, Array_InternalArray__IReadOnlyList_get_Item_178__MethodInfo); DO_APP_FUNC(0x00F62790, KeyValuePair_2_System_Object_UnityEngine_Color_, Array_InternalArray__IReadOnlyList_get_Item_179, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19838, Array_InternalArray__IReadOnlyList_get_Item_179__MethodInfo); DO_APP_FUNC(0x00F62850, KeyValuePair_2_System_Object_UnityEngine_Color32_, Array_InternalArray__IReadOnlyList_get_Item_180, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19830, Array_InternalArray__IReadOnlyList_get_Item_180__MethodInfo); DO_APP_FUNC(0x00F62910, KeyValuePair_2_System_Object_System_Int32_, Array_InternalArray__IReadOnlyList_get_Item_181, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19828, Array_InternalArray__IReadOnlyList_get_Item_181__MethodInfo); DO_APP_FUNC(0x00F629D0, KeyValuePair_2_System_Object_System_Int32Enum_, Array_InternalArray__IReadOnlyList_get_Item_182, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D197D8, Array_InternalArray__IReadOnlyList_get_Item_182__MethodInfo); DO_APP_FUNC(0x00F62A90, KeyValuePair_2_System_Object_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_183, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D197D0, Array_InternalArray__IReadOnlyList_get_Item_183__MethodInfo); DO_APP_FUNC(0x00F62B50, KeyValuePair_2_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_, Array_InternalArray__IReadOnlyList_get_Item_184, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D197C8, Array_InternalArray__IReadOnlyList_get_Item_184__MethodInfo); DO_APP_FUNC(0x00F62C10, KeyValuePair_2_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_, Array_InternalArray__IReadOnlyList_get_Item_185, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D197C0, Array_InternalArray__IReadOnlyList_get_Item_185__MethodInfo); DO_APP_FUNC(0x00F62CD0, KeyValuePair_2_System_Object_UnityEngine_Playables_Playable_, Array_InternalArray__IReadOnlyList_get_Item_186, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19800, Array_InternalArray__IReadOnlyList_get_Item_186__MethodInfo); DO_APP_FUNC(0x00F62D90, KeyValuePair_2_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_, Array_InternalArray__IReadOnlyList_get_Item_187, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D197F8, Array_InternalArray__IReadOnlyList_get_Item_187__MethodInfo); DO_APP_FUNC(0x00F62E50, KeyValuePair_2_System_Object_System_Resources_ResourceLocator_, Array_InternalArray__IReadOnlyList_get_Item_188, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D197E8, Array_InternalArray__IReadOnlyList_get_Item_188__MethodInfo); DO_APP_FUNC(0x00F62F10, KeyValuePair_2_System_Object_System_Single_, Array_InternalArray__IReadOnlyList_get_Item_189, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D197E0, Array_InternalArray__IReadOnlyList_get_Item_189__MethodInfo); DO_APP_FUNC(0x00F62FD0, KeyValuePair_2_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue_, Array_InternalArray__IReadOnlyList_get_Item_190, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19788, Array_InternalArray__IReadOnlyList_get_Item_190__MethodInfo); DO_APP_FUNC(0x00F63090, KeyValuePair_2_System_Object_UnityEngine_UIElements_TextureId_, Array_InternalArray__IReadOnlyList_get_Item_191, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19778, Array_InternalArray__IReadOnlyList_get_Item_191__MethodInfo); DO_APP_FUNC(0x00F63150, KeyValuePair_2_System_Object_System_TimeSpan_, Array_InternalArray__IReadOnlyList_get_Item_192, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19770, Array_InternalArray__IReadOnlyList_get_Item_192__MethodInfo); DO_APP_FUNC(0x00F63210, KeyValuePair_2_System_Object_UdpKit_UdpEndPoint_, Array_InternalArray__IReadOnlyList_get_Item_193, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19768, Array_InternalArray__IReadOnlyList_get_Item_193__MethodInfo); DO_APP_FUNC(0x00F632D0, KeyValuePair_2_System_Object_UnityEngine_Vector2_, Array_InternalArray__IReadOnlyList_get_Item_194, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D197B8, Array_InternalArray__IReadOnlyList_get_Item_194__MethodInfo); DO_APP_FUNC(0x00F63390, KeyValuePair_2_System_Object_UnityEngine_Vector3_, Array_InternalArray__IReadOnlyList_get_Item_195, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D197B0, Array_InternalArray__IReadOnlyList_get_Item_195__MethodInfo); DO_APP_FUNC(0x00F63450, KeyValuePair_2_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_, Array_InternalArray__IReadOnlyList_get_Item_196, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D197A8, Array_InternalArray__IReadOnlyList_get_Item_196__MethodInfo); DO_APP_FUNC(0x00F63510, KeyValuePair_2_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_, Array_InternalArray__IReadOnlyList_get_Item_197, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19798, Array_InternalArray__IReadOnlyList_get_Item_197__MethodInfo); DO_APP_FUNC(0x00F635D0, KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_, Array_InternalArray__IReadOnlyList_get_Item_198, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19738, Array_InternalArray__IReadOnlyList_get_Item_198__MethodInfo); DO_APP_FUNC(0x00F636A0, KeyValuePair_2_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_, Array_InternalArray__IReadOnlyList_get_Item_199, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19730, Array_InternalArray__IReadOnlyList_get_Item_199__MethodInfo); DO_APP_FUNC(0x00F63760, KeyValuePair_2_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback_, Array_InternalArray__IReadOnlyList_get_Item_200, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19728, Array_InternalArray__IReadOnlyList_get_Item_200__MethodInfo); DO_APP_FUNC(0x00F63820, KeyValuePair_2_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_, Array_InternalArray__IReadOnlyList_get_Item_201, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19720, Array_InternalArray__IReadOnlyList_get_Item_201__MethodInfo); DO_APP_FUNC(0x00F638E0, KeyValuePair_2_System_Object_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_, Array_InternalArray__IReadOnlyList_get_Item_202, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19760, Array_InternalArray__IReadOnlyList_get_Item_202__MethodInfo); DO_APP_FUNC(0x00F639A0, KeyValuePair_2_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_, Array_InternalArray__IReadOnlyList_get_Item_203, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19758, Array_InternalArray__IReadOnlyList_get_Item_203__MethodInfo); DO_APP_FUNC(0x00F63A60, KeyValuePair_2_Photon_Bolt_PrefabId_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_204, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19750, Array_InternalArray__IReadOnlyList_get_Item_204__MethodInfo); DO_APP_FUNC(0x00F63B20, KeyValuePair_2_UnityEngine_PropertyName_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_205, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19748, Array_InternalArray__IReadOnlyList_get_Item_205__MethodInfo); DO_APP_FUNC(0x00F63BE0, KeyValuePair_2_UnityEngine_RaycastHit_System_Int32_, Array_InternalArray__IReadOnlyList_get_Item_206, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D196E8, Array_InternalArray__IReadOnlyList_get_Item_206__MethodInfo); DO_APP_FUNC(0x00F63CA0, KeyValuePair_2_System_Single_SplineMesh_CurveSample_, Array_InternalArray__IReadOnlyList_get_Item_207, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D196E0, Array_InternalArray__IReadOnlyList_get_Item_207__MethodInfo); DO_APP_FUNC(0x00F63D70, KeyValuePair_2_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_208, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D196D8, Array_InternalArray__IReadOnlyList_get_Item_208__MethodInfo); DO_APP_FUNC(0x00F63E30, KeyValuePair_2_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_209, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D196C8, Array_InternalArray__IReadOnlyList_get_Item_209__MethodInfo); DO_APP_FUNC(0x00F63EF0, KeyValuePair_2_Photon_Bolt_TypeId_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_210, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19718, Array_InternalArray__IReadOnlyList_get_Item_210__MethodInfo); DO_APP_FUNC(0x00F63FB0, KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer_, Array_InternalArray__IReadOnlyList_get_Item_211, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19710, Array_InternalArray__IReadOnlyList_get_Item_211__MethodInfo); DO_APP_FUNC(0x00F64070, KeyValuePair_2_System_UInt16_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_212, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19708, Array_InternalArray__IReadOnlyList_get_Item_212__MethodInfo); DO_APP_FUNC(0x00F64130, KeyValuePair_2_System_UInt16_Dissonance_PlayerChannel_, Array_InternalArray__IReadOnlyList_get_Item_213, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D196F8, Array_InternalArray__IReadOnlyList_get_Item_213__MethodInfo); DO_APP_FUNC(0x00F641F0, KeyValuePair_2_System_UInt16_Dissonance_RoomChannel_, Array_InternalArray__IReadOnlyList_get_Item_214, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19698, Array_InternalArray__IReadOnlyList_get_Item_214__MethodInfo); DO_APP_FUNC(0x00F642B0, KeyValuePair_2_System_UInt32_System_Boolean_, Array_InternalArray__IReadOnlyList_get_Item_215, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19690, Array_InternalArray__IReadOnlyList_get_Item_215__MethodInfo); DO_APP_FUNC(0x00F64360, KeyValuePair_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_, Array_InternalArray__IReadOnlyList_get_Item_216, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19688, Array_InternalArray__IReadOnlyList_get_Item_216__MethodInfo); DO_APP_FUNC(0x00F64420, KeyValuePair_2_System_UInt32_System_Int32_, Array_InternalArray__IReadOnlyList_get_Item_217, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19678, Array_InternalArray__IReadOnlyList_get_Item_217__MethodInfo); DO_APP_FUNC(0x00F644D0, KeyValuePair_2_System_UInt32_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_218, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D196C0, Array_InternalArray__IReadOnlyList_get_Item_218__MethodInfo); DO_APP_FUNC(0x00F64590, KeyValuePair_2_System_UInt32_SessionClient_, Array_InternalArray__IReadOnlyList_get_Item_219, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D196B8, Array_InternalArray__IReadOnlyList_get_Item_219__MethodInfo); DO_APP_FUNC(0x00F64650, KeyValuePair_2_System_UInt64_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_220, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D196B0, Array_InternalArray__IReadOnlyList_get_Item_220__MethodInfo); DO_APP_FUNC(0x00F64710, KeyValuePair_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_, Array_InternalArray__IReadOnlyList_get_Item_221, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D196A8, Array_InternalArray__IReadOnlyList_get_Item_221__MethodInfo); DO_APP_FUNC(0x00F647D0, KeyValuePair_2_UdpKit_UdpChannelName_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_222, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19648, Array_InternalArray__IReadOnlyList_get_Item_222__MethodInfo); DO_APP_FUNC(0x00F64890, KeyValuePair_2_UdpKit_UdpEndPoint_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_223, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19638, Array_InternalArray__IReadOnlyList_get_Item_223__MethodInfo); DO_APP_FUNC(0x00F64950, KeyValuePair_2_UdpKit_UdpEndPoint_System_UInt32_, Array_InternalArray__IReadOnlyList_get_Item_224, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19628, Array_InternalArray__IReadOnlyList_get_Item_224__MethodInfo); DO_APP_FUNC(0x00F64A10, KeyValuePair_2_Photon_Bolt_UniqueId_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_225, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19620, Array_InternalArray__IReadOnlyList_get_Item_225__MethodInfo); DO_APP_FUNC(0x00F64AD0, KeyValuePair_2_UnityEngine_Vector3_System_Int32_, Array_InternalArray__IReadOnlyList_get_Item_226, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19668, Array_InternalArray__IReadOnlyList_get_Item_226__MethodInfo); DO_APP_FUNC(0x00F64B90, KeyValuePair_2_UnityEngine_Vector3Int_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_227, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19660, Array_InternalArray__IReadOnlyList_get_Item_227__MethodInfo); DO_APP_FUNC(0x00F64C50, KeyValuePair_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_, Array_InternalArray__IReadOnlyList_get_Item_228, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19658, Array_InternalArray__IReadOnlyList_get_Item_228__MethodInfo); DO_APP_FUNC(0x00F64D10, KeyValuePair_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_229, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19650, Array_InternalArray__IReadOnlyList_get_Item_229__MethodInfo); DO_APP_FUNC(0x00F64DD0, KeyValuePair_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_, Array_InternalArray__IReadOnlyList_get_Item_230, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D195E8, Array_InternalArray__IReadOnlyList_get_Item_230__MethodInfo); DO_APP_FUNC(0x00F64E90, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_231, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D195D8, Array_InternalArray__IReadOnlyList_get_Item_231__MethodInfo); DO_APP_FUNC(0x00F64F50, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_, Array_InternalArray__IReadOnlyList_get_Item_232, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D195C8, Array_InternalArray__IReadOnlyList_get_Item_232__MethodInfo); DO_APP_FUNC(0x00F65010, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_, Array_InternalArray__IReadOnlyList_get_Item_233, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D195B8, Array_InternalArray__IReadOnlyList_get_Item_233__MethodInfo); DO_APP_FUNC(0x00F650D0, KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_234, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19618, Array_InternalArray__IReadOnlyList_get_Item_234__MethodInfo); DO_APP_FUNC(0x00F65190, KeyValuePair_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_235, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19610, Array_InternalArray__IReadOnlyList_get_Item_235__MethodInfo); DO_APP_FUNC(0x00F65250, KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_, Array_InternalArray__IReadOnlyList_get_Item_236, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19608, Array_InternalArray__IReadOnlyList_get_Item_236__MethodInfo); DO_APP_FUNC(0x00F65310, KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_, Array_InternalArray__IReadOnlyList_get_Item_237, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D195F8, Array_InternalArray__IReadOnlyList_get_Item_237__MethodInfo); DO_APP_FUNC(0x00F653D0, KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_238, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19580, Array_InternalArray__IReadOnlyList_get_Item_238__MethodInfo); DO_APP_FUNC(0x00F65490, KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_239, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19578, Array_InternalArray__IReadOnlyList_get_Item_239__MethodInfo); DO_APP_FUNC(0x00F65550, KeyValuePair_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_240, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19570, Array_InternalArray__IReadOnlyList_get_Item_240__MethodInfo); DO_APP_FUNC(0x00F65620, ThreadLocal_1_T_LinkedSlotVolatile_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_241, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19560, Array_InternalArray__IReadOnlyList_get_Item_241__MethodInfo); DO_APP_FUNC(0x00F656D0, NativeArray_1_System_UInt16_, Array_InternalArray__IReadOnlyList_get_Item_242, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D195A8, Array_InternalArray__IReadOnlyList_get_Item_242__MethodInfo); DO_APP_FUNC(0x00F65790, NativeArray_1_UnityEngine_UIElements_Vertex_, Array_InternalArray__IReadOnlyList_get_Item_243, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D195A0, Array_InternalArray__IReadOnlyList_get_Item_243__MethodInfo); DO_APP_FUNC(0x00F65850, NonAllocDictionary_2_K_V_Node_System_Byte_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_244, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19598, Array_InternalArray__IReadOnlyList_get_Item_244__MethodInfo); DO_APP_FUNC(0x00F65910, NonAllocDictionary_2_K_V_Node_System_Int32_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_245, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19590, Array_InternalArray__IReadOnlyList_get_Item_245__MethodInfo); DO_APP_FUNC(0x00F659D0, NonAllocDictionary_2_K_V_Node_System_Object_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_246, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19530, Array_InternalArray__IReadOnlyList_get_Item_246__MethodInfo); DO_APP_FUNC(0x00F65A90, InputStateHistory_1_TValue_Record_TouchState_, Array_InternalArray__IReadOnlyList_get_Item_247, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19520, Array_InternalArray__IReadOnlyList_get_Item_247__MethodInfo); DO_APP_FUNC(0x00F65B50, RenderGraphResourcePool_1_Type_ResourceLogInfo_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_248, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19510, Array_InternalArray__IReadOnlyList_get_Item_248__MethodInfo); DO_APP_FUNC(0x00F65C10, STuple_2_System_Object_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_249, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19508, Array_InternalArray__IReadOnlyList_get_Item_249__MethodInfo); DO_APP_FUNC(0x00F65CD0, HashSet_1_T_Slot_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_, Array_InternalArray__IReadOnlyList_get_Item_250, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19550, Array_InternalArray__IReadOnlyList_get_Item_250__MethodInfo); DO_APP_FUNC(0x00F65D90, HashSet_1_T_Slot_System_Int32_, Array_InternalArray__IReadOnlyList_get_Item_251, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19548, Array_InternalArray__IReadOnlyList_get_Item_251__MethodInfo); DO_APP_FUNC(0x00F65E50, Set_1_TElement_Slot_System_Int32_, Array_InternalArray__IReadOnlyList_get_Item_252, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19540, Array_InternalArray__IReadOnlyList_get_Item_252__MethodInfo); DO_APP_FUNC(0x00F65F10, HashSet_1_T_Slot_System_Int32Enum_, Array_InternalArray__IReadOnlyList_get_Item_253, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19538, Array_InternalArray__IReadOnlyList_get_Item_253__MethodInfo); DO_APP_FUNC(0x00F65FD0, HashSet_1_T_Slot_UnityEngine_InputSystem_Utilities_InternedString_, Array_InternalArray__IReadOnlyList_get_Item_254, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D194D8, Array_InternalArray__IReadOnlyList_get_Item_254__MethodInfo); DO_APP_FUNC(0x00F66090, HashSet_1_T_Slot_Photon_Bolt_NetworkId_, Array_InternalArray__IReadOnlyList_get_Item_255, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D194D0, Array_InternalArray__IReadOnlyList_get_Item_255__MethodInfo); DO_APP_FUNC(0x00F66150, HashSet_1_T_Slot_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_256, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D194C8, Array_InternalArray__IReadOnlyList_get_Item_256__MethodInfo); DO_APP_FUNC(0x00F66210, Set_1_TElement_Slot_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_257, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D194C0, Array_InternalArray__IReadOnlyList_get_Item_257__MethodInfo); DO_APP_FUNC(0x00F662D0, ConcurrentQueue_1_T_Segment_T_Slot_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_258, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19500, Array_InternalArray__IReadOnlyList_get_Item_258__MethodInfo); DO_APP_FUNC(0x00F66390, HashSet_1_T_Slot_System_UInt32_, Array_InternalArray__IReadOnlyList_get_Item_259, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D194F8, Array_InternalArray__IReadOnlyList_get_Item_259__MethodInfo); DO_APP_FUNC(0x00F66450, HashSet_1_T_Slot_System_UInt64_, Array_InternalArray__IReadOnlyList_get_Item_260, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D194F0, Array_InternalArray__IReadOnlyList_get_Item_260__MethodInfo); DO_APP_FUNC(0x00F66510, HashSet_1_T_Slot_UdpKit_UdpEndPoint_, Array_InternalArray__IReadOnlyList_get_Item_261, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D194E8, Array_InternalArray__IReadOnlyList_get_Item_261__MethodInfo); DO_APP_FUNC(0x00F665D0, HashSet_1_T_Slot_UdpKit_UdpIPv4Address_, Array_InternalArray__IReadOnlyList_get_Item_262, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19490, Array_InternalArray__IReadOnlyList_get_Item_262__MethodInfo); DO_APP_FUNC(0x00F66690, HashSet_1_T_Slot_UnityEngine_Vector3_, Array_InternalArray__IReadOnlyList_get_Item_263, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19488, Array_InternalArray__IReadOnlyList_get_Item_263__MethodInfo); DO_APP_FUNC(0x00F66750, HashSet_1_T_Slot_UnityEngine_Vector3Int_, Array_InternalArray__IReadOnlyList_get_Item_264, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19480, Array_InternalArray__IReadOnlyList_get_Item_264__MethodInfo); DO_APP_FUNC(0x00F66810, StylePropertyAnimationSystem_Values_1_T_StyleData_Background_, Array_InternalArray__IReadOnlyList_get_Item_265, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19478, Array_InternalArray__IReadOnlyList_get_Item_265__MethodInfo); DO_APP_FUNC(0x00F668E0, StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color_, Array_InternalArray__IReadOnlyList_get_Item_266, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D194B8, Array_InternalArray__IReadOnlyList_get_Item_266__MethodInfo); DO_APP_FUNC(0x00F669A0, StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition_, Array_InternalArray__IReadOnlyList_get_Item_267, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D194A8, Array_InternalArray__IReadOnlyList_get_Item_267__MethodInfo); DO_APP_FUNC(0x00F66A60, StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32_, Array_InternalArray__IReadOnlyList_get_Item_268, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D194A0, Array_InternalArray__IReadOnlyList_get_Item_268__MethodInfo); DO_APP_FUNC(0x00F66B20, StylePropertyAnimationSystem_Values_1_T_StyleData_Length_, Array_InternalArray__IReadOnlyList_get_Item_269, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19498, Array_InternalArray__IReadOnlyList_get_Item_269__MethodInfo); DO_APP_FUNC(0x00F66BE0, StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_270, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19448, Array_InternalArray__IReadOnlyList_get_Item_270__MethodInfo); DO_APP_FUNC(0x00F66CA0, StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate_, Array_InternalArray__IReadOnlyList_get_Item_271, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19440, Array_InternalArray__IReadOnlyList_get_Item_271__MethodInfo); DO_APP_FUNC(0x00F66D70, StylePropertyAnimationSystem_Values_1_T_StyleData_Scale_, Array_InternalArray__IReadOnlyList_get_Item_272, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19438, Array_InternalArray__IReadOnlyList_get_Item_272__MethodInfo); DO_APP_FUNC(0x00F66E30, StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single_, Array_InternalArray__IReadOnlyList_get_Item_273, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19430, Array_InternalArray__IReadOnlyList_get_Item_273__MethodInfo); DO_APP_FUNC(0x00F66EF0, StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow_, Array_InternalArray__IReadOnlyList_get_Item_274, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19468, Array_InternalArray__IReadOnlyList_get_Item_274__MethodInfo); DO_APP_FUNC(0x00F66FC0, StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin_, Array_InternalArray__IReadOnlyList_get_Item_275, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19460, Array_InternalArray__IReadOnlyList_get_Item_275__MethodInfo); DO_APP_FUNC(0x00F67090, StylePropertyAnimationSystem_Values_1_T_StyleData_Translate_, Array_InternalArray__IReadOnlyList_get_Item_276, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19458, Array_InternalArray__IReadOnlyList_get_Item_276__MethodInfo); DO_APP_FUNC(0x00F67160, TMP_TextProcessingStack_1_UnityEngine_Color32_, Array_InternalArray__IReadOnlyList_get_Item_277, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19450, Array_InternalArray__IReadOnlyList_get_Item_277__MethodInfo); DO_APP_FUNC(0x00F67220, TMP_TextProcessingStack_1_HighlightState_, Array_InternalArray__IReadOnlyList_get_Item_278, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19400, Array_InternalArray__IReadOnlyList_get_Item_278__MethodInfo); DO_APP_FUNC(0x00F672E0, TMP_TextProcessingStack_1_System_Int32_, Array_InternalArray__IReadOnlyList_get_Item_279, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D193F8, Array_InternalArray__IReadOnlyList_get_Item_279__MethodInfo); DO_APP_FUNC(0x00F673A0, TMP_TextProcessingStack_1_System_Int32Enum_, Array_InternalArray__IReadOnlyList_get_Item_280, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D193F0, Array_InternalArray__IReadOnlyList_get_Item_280__MethodInfo); DO_APP_FUNC(0x00F67460, TMP_TextProcessingStack_1_MaterialReference_, Array_InternalArray__IReadOnlyList_get_Item_281, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D193E8, Array_InternalArray__IReadOnlyList_get_Item_281__MethodInfo); DO_APP_FUNC(0x00F67530, TMP_TextProcessingStack_1_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_282, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19428, Array_InternalArray__IReadOnlyList_get_Item_282__MethodInfo); DO_APP_FUNC(0x00F675F0, TMP_TextProcessingStack_1_System_Single_, Array_InternalArray__IReadOnlyList_get_Item_283, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19418, Array_InternalArray__IReadOnlyList_get_Item_283__MethodInfo); DO_APP_FUNC(0x00F676B0, TMP_TextProcessingStack_1_WordWrapState_, Array_InternalArray__IReadOnlyList_get_Item_284, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19410, Array_InternalArray__IReadOnlyList_get_Item_284__MethodInfo); DO_APP_FUNC(0x00F67770, StylePropertyAnimationSystem_Values_1_T_TimingData_Background_, Array_InternalArray__IReadOnlyList_get_Item_285, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19408, Array_InternalArray__IReadOnlyList_get_Item_285__MethodInfo); DO_APP_FUNC(0x00F67830, StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color_, Array_InternalArray__IReadOnlyList_get_Item_286, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D193B8, Array_InternalArray__IReadOnlyList_get_Item_286__MethodInfo); DO_APP_FUNC(0x00F678F0, StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition_, Array_InternalArray__IReadOnlyList_get_Item_287, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D193B0, Array_InternalArray__IReadOnlyList_get_Item_287__MethodInfo); DO_APP_FUNC(0x00F679B0, StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32_, Array_InternalArray__IReadOnlyList_get_Item_288, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D193A8, Array_InternalArray__IReadOnlyList_get_Item_288__MethodInfo); DO_APP_FUNC(0x00F67A70, StylePropertyAnimationSystem_Values_1_T_TimingData_Length_, Array_InternalArray__IReadOnlyList_get_Item_289, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D193A0, Array_InternalArray__IReadOnlyList_get_Item_289__MethodInfo); DO_APP_FUNC(0x00F67B30, StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_, Array_InternalArray__IReadOnlyList_get_Item_290, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D193E0, Array_InternalArray__IReadOnlyList_get_Item_290__MethodInfo); DO_APP_FUNC(0x00F67BF0, StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate_, Array_InternalArray__IReadOnlyList_get_Item_291, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D193D8, Array_InternalArray__IReadOnlyList_get_Item_291__MethodInfo); DO_APP_FUNC(0x00F67CB0, StylePropertyAnimationSystem_Values_1_T_TimingData_Scale_, Array_InternalArray__IReadOnlyList_get_Item_292, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D193C8, Array_InternalArray__IReadOnlyList_get_Item_292__MethodInfo); DO_APP_FUNC(0x00F67D70, StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single_, Array_InternalArray__IReadOnlyList_get_Item_293, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D193C0, Array_InternalArray__IReadOnlyList_get_Item_293__MethodInfo); DO_APP_FUNC(0x00F67E30, StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow_, Array_InternalArray__IReadOnlyList_get_Item_294, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19368, Array_InternalArray__IReadOnlyList_get_Item_294__MethodInfo); DO_APP_FUNC(0x00F67EF0, StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin_, Array_InternalArray__IReadOnlyList_get_Item_295, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19360, Array_InternalArray__IReadOnlyList_get_Item_295__MethodInfo); DO_APP_FUNC(0x00F67FB0, StylePropertyAnimationSystem_Values_1_T_TimingData_Translate_, Array_InternalArray__IReadOnlyList_get_Item_296, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19358, Array_InternalArray__IReadOnlyList_get_Item_296__MethodInfo); DO_APP_FUNC(0x00F68070, ValueTuple_1_Boolean_, Array_InternalArray__IReadOnlyList_get_Item_297, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19350, Array_InternalArray__IReadOnlyList_get_Item_297__MethodInfo); DO_APP_FUNC(0x00F68120, ValueTuple_2_Int32_Object_, Array_InternalArray__IReadOnlyList_get_Item_298, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19390, Array_InternalArray__IReadOnlyList_get_Item_298__MethodInfo); DO_APP_FUNC(0x00F681E0, ValueTuple_2_Int32_UnityEngine_Vector2Int_, Array_InternalArray__IReadOnlyList_get_Item_299, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19388, Array_InternalArray__IReadOnlyList_get_Item_299__MethodInfo); DO_APP_FUNC(0x00F682A0, ValueTuple_2_IntPtr_Object_, Array_InternalArray__IReadOnlyList_get_Item_300, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19380, Array_InternalArray__IReadOnlyList_get_Item_300__MethodInfo); DO_APP_FUNC(0x00F68360, ValueTuple_2_Object_ValueTuple_2_Object_Int32_, Array_InternalArray__IReadOnlyList_get_Item_301, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19370, Array_InternalArray__IReadOnlyList_get_Item_301__MethodInfo); DO_APP_FUNC(0x00F68420, ValueTuple_2_Object_Int32_, Array_InternalArray__IReadOnlyList_get_Item_302, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19310, Array_InternalArray__IReadOnlyList_get_Item_302__MethodInfo); DO_APP_FUNC(0x00F684E0, ValueTuple_2_Object_Object_, Array_InternalArray__IReadOnlyList_get_Item_303, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19300, Array_InternalArray__IReadOnlyList_get_Item_303__MethodInfo); DO_APP_FUNC(0x00F685A0, ValueTuple_2_UnityEngine_Vector3Int_Object_, Array_InternalArray__IReadOnlyList_get_Item_304, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D192F0, Array_InternalArray__IReadOnlyList_get_Item_304__MethodInfo); DO_APP_FUNC(0x00F68660, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_, Array_InternalArray__IReadOnlyList_get_Item_305, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D192E0, Array_InternalArray__IReadOnlyList_get_Item_305__MethodInfo); DO_APP_FUNC(0x00F68730, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_, Array_InternalArray__IReadOnlyList_get_Item_306, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19340, Array_InternalArray__IReadOnlyList_get_Item_306__MethodInfo); DO_APP_FUNC(0x00F687F0, ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int_, Array_InternalArray__IReadOnlyList_get_Item_307, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19338, Array_InternalArray__IReadOnlyList_get_Item_307__MethodInfo); DO_APP_FUNC(0x00F688B0, ValueTuple_3_Object_Object_Object_, Array_InternalArray__IReadOnlyList_get_Item_308, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19330, Array_InternalArray__IReadOnlyList_get_Item_308__MethodInfo); DO_APP_FUNC(0x00F68970, AnimatorClipInfo, Array_InternalArray__IReadOnlyList_get_Item_309, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19320, Array_InternalArray__IReadOnlyList_get_Item_309__MethodInfo); DO_APP_FUNC(0x00F68A20, AstarWorkItem, Array_InternalArray__IReadOnlyList_get_Item_310, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D192B0, Array_InternalArray__IReadOnlyList_get_Item_310__MethodInfo); DO_APP_FUNC(0x00F68AE0, AsyncOperationHandle, Array_InternalArray__IReadOnlyList_get_Item_311, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D192A8, Array_InternalArray__IReadOnlyList_get_Item_311__MethodInfo); DO_APP_FUNC(0x00F68BA0, AxisCalibrationData, Array_InternalArray__IReadOnlyList_get_Item_312, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19298, Array_InternalArray__IReadOnlyList_get_Item_312__MethodInfo); DO_APP_FUNC(0x00F68C70, Background, Array_InternalArray__IReadOnlyList_get_Item_313, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19288, Array_InternalArray__IReadOnlyList_get_Item_313__MethodInfo); DO_APP_FUNC(0x00F68D30, BatchVisibility, Array_InternalArray__IReadOnlyList_get_Item_314, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D192D8, Array_InternalArray__IReadOnlyList_get_Item_314__MethodInfo); DO_APP_FUNC(0x00F68DF0, BoltPeer, Array_InternalArray__IReadOnlyList_get_Item_315, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D192D0, Array_InternalArray__IReadOnlyList_get_Item_315__MethodInfo); DO_APP_FUNC(0x00F68EA0, BoltPhysicsHit, Array_InternalArray__IReadOnlyList_get_Item_316, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D192C8, Array_InternalArray__IReadOnlyList_get_Item_316__MethodInfo); DO_APP_FUNC(0x00F68F60, BoneWeight, Array_InternalArray__IReadOnlyList_get_Item_317, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D192B8, Array_InternalArray__IReadOnlyList_get_Item_317__MethodInfo); DO_APP_FUNC(0x00F69020, BoneWeight1, Array_InternalArray__IReadOnlyList_get_Item_318, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19258, Array_InternalArray__IReadOnlyList_get_Item_318__MethodInfo); DO_APP_FUNC(0x00F690D0, bool, Array_InternalArray__IReadOnlyList_get_Item_319, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19250, Array_InternalArray__IReadOnlyList_get_Item_319__MethodInfo); DO_APP_FUNC(0x00F69180, BoundedPlane, Array_InternalArray__IReadOnlyList_get_Item_320, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19248, Array_InternalArray__IReadOnlyList_get_Item_320__MethodInfo); DO_APP_FUNC(0x00F69250, BoundingSphere, Array_InternalArray__IReadOnlyList_get_Item_321, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19240, Array_InternalArray__IReadOnlyList_get_Item_321__MethodInfo); DO_APP_FUNC(0x00F69310, Bounds, Array_InternalArray__IReadOnlyList_get_Item_322, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19280, Array_InternalArray__IReadOnlyList_get_Item_322__MethodInfo); DO_APP_FUNC(0x00F693D0, uint8_t, Array_InternalArray__IReadOnlyList_get_Item_323, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19278, Array_InternalArray__IReadOnlyList_get_Item_323__MethodInfo); DO_APP_FUNC(0x00F69480, ByteEnum__Enum, Array_InternalArray__IReadOnlyList_get_Item_324, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19270, Array_InternalArray__IReadOnlyList_get_Item_324__MethodInfo); DO_APP_FUNC(0x00F69530, CancellationToken, Array_InternalArray__IReadOnlyList_get_Item_325, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19260, Array_InternalArray__IReadOnlyList_get_Item_325__MethodInfo); DO_APP_FUNC(0x00F695E0, CancellationTokenRegistration, Array_InternalArray__IReadOnlyList_get_Item_326, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19218, Array_InternalArray__IReadOnlyList_get_Item_326__MethodInfo); DO_APP_FUNC(0x00F696A0, uint16_t, Array_InternalArray__IReadOnlyList_get_Item_327, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19210, Array_InternalArray__IReadOnlyList_get_Item_327__MethodInfo); DO_APP_FUNC(0x00F69750, ClientInfo, Array_InternalArray__IReadOnlyList_get_Item_328, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19200, Array_InternalArray__IReadOnlyList_get_Item_328__MethodInfo); DO_APP_FUNC(0x00F69810, ClothSkinningCoefficient, Array_InternalArray__IReadOnlyList_get_Item_329, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D191F0, Array_InternalArray__IReadOnlyList_get_Item_329__MethodInfo); DO_APP_FUNC(0x00F698C0, ClothSphereColliderPair, Array_InternalArray__IReadOnlyList_get_Item_330, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19238, Array_InternalArray__IReadOnlyList_get_Item_330__MethodInfo); DO_APP_FUNC(0x00F69980, Color, Array_InternalArray__IReadOnlyList_get_Item_331, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19230, Array_InternalArray__IReadOnlyList_get_Item_331__MethodInfo); DO_APP_FUNC(0x00F69A40, Color32, Array_InternalArray__IReadOnlyList_get_Item_332, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19228, Array_InternalArray__IReadOnlyList_get_Item_332__MethodInfo); DO_APP_FUNC(0x00F69AF0, ColorBlock, Array_InternalArray__IReadOnlyList_get_Item_333, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19220, Array_InternalArray__IReadOnlyList_get_Item_333__MethodInfo); DO_APP_FUNC(0x00F69BC0, CombineInstance, Array_InternalArray__IReadOnlyList_get_Item_334, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D191C8, Array_InternalArray__IReadOnlyList_get_Item_334__MethodInfo); DO_APP_FUNC(0x00F69C90, CompactVoxelCell, Array_InternalArray__IReadOnlyList_get_Item_335, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D191C0, Array_InternalArray__IReadOnlyList_get_Item_335__MethodInfo); DO_APP_FUNC(0x00F69D40, CompactVoxelSpan, Array_InternalArray__IReadOnlyList_get_Item_336, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D191B0, Array_InternalArray__IReadOnlyList_get_Item_336__MethodInfo); DO_APP_FUNC(0x00F69E00, ComputedStyle, Array_InternalArray__IReadOnlyList_get_Item_337, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D191A0, Array_InternalArray__IReadOnlyList_get_Item_337__MethodInfo); DO_APP_FUNC(0x00F69ED0, ComputedTransitionProperty, Array_InternalArray__IReadOnlyList_get_Item_338, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D191E8, Array_InternalArray__IReadOnlyList_get_Item_338__MethodInfo); DO_APP_FUNC(0x00F69F90, ConfigurationDescriptor, Array_InternalArray__IReadOnlyList_get_Item_339, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D191E0, Array_InternalArray__IReadOnlyList_get_Item_339__MethodInfo); DO_APP_FUNC(0x00F6A050, Connection, Array_InternalArray__IReadOnlyList_get_Item_340, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D191D8, Array_InternalArray__IReadOnlyList_get_Item_340__MethodInfo); DO_APP_FUNC(0x00F6A110, ContactPoint, Array_InternalArray__IReadOnlyList_get_Item_341, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D191D0, Array_InternalArray__IReadOnlyList_get_Item_341__MethodInfo); DO_APP_FUNC(0x00F6A1D0, ContactPoint2D, Array_InternalArray__IReadOnlyList_get_Item_342, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19170, Array_InternalArray__IReadOnlyList_get_Item_342__MethodInfo); DO_APP_FUNC(0x00F6A2A0, ControllerPollingInfo, Array_InternalArray__IReadOnlyList_get_Item_343, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19168, Array_InternalArray__IReadOnlyList_get_Item_343__MethodInfo); DO_APP_FUNC(0x00F6A370, ControllerTemplateElementTarget, Array_InternalArray__IReadOnlyList_get_Item_344, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19160, Array_InternalArray__IReadOnlyList_get_Item_344__MethodInfo); DO_APP_FUNC(0x00F6A430, CurveSample, Array_InternalArray__IReadOnlyList_get_Item_345, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19158, Array_InternalArray__IReadOnlyList_get_Item_345__MethodInfo); DO_APP_FUNC(0x00F6A500, CustomAttributeNamedArgument, Array_InternalArray__IReadOnlyList_get_Item_346, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19198, Array_InternalArray__IReadOnlyList_get_Item_346__MethodInfo); DO_APP_FUNC(0x00F6A5C0, CustomAttributeTypedArgument, Array_InternalArray__IReadOnlyList_get_Item_347, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19190, Array_InternalArray__IReadOnlyList_get_Item_347__MethodInfo); DO_APP_FUNC(0x00F6A680, DateTime, Array_InternalArray__IReadOnlyList_get_Item_348, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19188, Array_InternalArray__IReadOnlyList_get_Item_348__MethodInfo); DO_APP_FUNC(0x00F6A730, DateTimeOffset, Array_InternalArray__IReadOnlyList_get_Item_349, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19178, Array_InternalArray__IReadOnlyList_get_Item_349__MethodInfo); DO_APP_FUNC(0x00F6A7F0, Decimal, Array_InternalArray__IReadOnlyList_get_Item_350, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19120, Array_InternalArray__IReadOnlyList_get_Item_350__MethodInfo); DO_APP_FUNC(0x00F6A8B0, DetailInstanceTransform, Array_InternalArray__IReadOnlyList_get_Item_351, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19110, Array_InternalArray__IReadOnlyList_get_Item_351__MethodInfo); DO_APP_FUNC(0x00F6A970, DiagnosticEvent, Array_InternalArray__IReadOnlyList_get_Item_352, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19108, Array_InternalArray__IReadOnlyList_get_Item_352__MethodInfo); DO_APP_FUNC(0x00F6AA30, DictionaryEntry, Array_InternalArray__IReadOnlyList_get_Item_353, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19100, Array_InternalArray__IReadOnlyList_get_Item_353__MethodInfo); DO_APP_FUNC(0x00F6AAF0, Dimension, Array_InternalArray__IReadOnlyList_get_Item_354, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19150, Array_InternalArray__IReadOnlyList_get_Item_354__MethodInfo); DO_APP_FUNC(0x00F6ABA0, double, Array_InternalArray__IReadOnlyList_get_Item_355, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19140, Array_InternalArray__IReadOnlyList_get_Item_355__MethodInfo); DO_APP_FUNC(0x00F6AC50, DrawBufferRange, Array_InternalArray__IReadOnlyList_get_Item_356, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19138, Array_InternalArray__IReadOnlyList_get_Item_356__MethodInfo); DO_APP_FUNC(0x00F6AD10, EasingFunction, Array_InternalArray__IReadOnlyList_get_Item_357, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19130, Array_InternalArray__IReadOnlyList_get_Item_357__MethodInfo); DO_APP_FUNC(0x00F6ADC0, ElementAssignmentConflictInfo, Array_InternalArray__IReadOnlyList_get_Item_358, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D190C8, Array_InternalArray__IReadOnlyList_get_Item_358__MethodInfo); DO_APP_FUNC(0x00F6AE80, Entitlement, Array_InternalArray__IReadOnlyList_get_Item_359, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D190C0, Array_InternalArray__IReadOnlyList_get_Item_359__MethodInfo); DO_APP_FUNC(0x00F6AF40, Ephemeron, Array_InternalArray__IReadOnlyList_get_Item_360, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D190B8, Array_InternalArray__IReadOnlyList_get_Item_360__MethodInfo); DO_APP_FUNC(0x00F6B000, EventReliable, Array_InternalArray__IReadOnlyList_get_Item_361, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D190B0, Array_InternalArray__IReadOnlyList_get_Item_361__MethodInfo); DO_APP_FUNC(0x00F6B0C0, EventUnreliable, Array_InternalArray__IReadOnlyList_get_Item_362, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D190F0, Array_InternalArray__IReadOnlyList_get_Item_362__MethodInfo); DO_APP_FUNC(0x00F6B180, FORMATETC, Array_InternalArray__IReadOnlyList_get_Item_363, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D190E8, Array_InternalArray__IReadOnlyList_get_Item_363__MethodInfo); DO_APP_FUNC(0x00F6B240, FileStat, Array_InternalArray__IReadOnlyList_get_Item_364, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D190E0, Array_InternalArray__IReadOnlyList_get_Item_364__MethodInfo); DO_APP_FUNC(0x00F6B300, FontDefinition, Array_InternalArray__IReadOnlyList_get_Item_365, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D190D8, Array_InternalArray__IReadOnlyList_get_Item_365__MethodInfo); DO_APP_FUNC(0x00F6B3C0, FontWeightPair, Array_InternalArray__IReadOnlyList_get_Item_366, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19088, Array_InternalArray__IReadOnlyList_get_Item_366__MethodInfo); DO_APP_FUNC(0x00F6B480, FrameFormat, Array_InternalArray__IReadOnlyList_get_Item_367, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19080, Array_InternalArray__IReadOnlyList_get_Item_367__MethodInfo); DO_APP_FUNC(0x00F6B540, GCHandle, Array_InternalArray__IReadOnlyList_get_Item_368, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19078, Array_InternalArray__IReadOnlyList_get_Item_368__MethodInfo); DO_APP_FUNC(0x00F6B5F0, GfxUpdateBufferRange, Array_InternalArray__IReadOnlyList_get_Item_369, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19068, Array_InternalArray__IReadOnlyList_get_Item_369__MethodInfo); DO_APP_FUNC(0x00F6B6B0, GlobalKeyword, Array_InternalArray__IReadOnlyList_get_Item_370, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D190A8, Array_InternalArray__IReadOnlyList_get_Item_370__MethodInfo); DO_APP_FUNC(0x00F6B770, GlyphMarshallingStruct, Array_InternalArray__IReadOnlyList_get_Item_371, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D190A0, Array_InternalArray__IReadOnlyList_get_Item_371__MethodInfo); DO_APP_FUNC(0x00F6B830, GlyphPairAdjustmentRecord, Array_InternalArray__IReadOnlyList_get_Item_372, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19098, Array_InternalArray__IReadOnlyList_get_Item_372__MethodInfo); DO_APP_FUNC(0x00F6B8F0, GlyphRect, Array_InternalArray__IReadOnlyList_get_Item_373, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19090, Array_InternalArray__IReadOnlyList_get_Item_373__MethodInfo); DO_APP_FUNC(0x00F6B9B0, GradientAlphaKey, Array_InternalArray__IReadOnlyList_get_Item_374, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19038, Array_InternalArray__IReadOnlyList_get_Item_374__MethodInfo); DO_APP_FUNC(0x00F6BA60, GradientColorKey, Array_InternalArray__IReadOnlyList_get_Item_375, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19030, Array_InternalArray__IReadOnlyList_get_Item_375__MethodInfo); DO_APP_FUNC(0x00F6BB20, GradientSettings, Array_InternalArray__IReadOnlyList_get_Item_376, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19028, Array_InternalArray__IReadOnlyList_get_Item_376__MethodInfo); DO_APP_FUNC(0x00F6BBE0, Guid, Array_InternalArray__IReadOnlyList_get_Item_377, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19018, Array_InternalArray__IReadOnlyList_get_Item_377__MethodInfo); DO_APP_FUNC(0x00F6BCA0, HandJointLocation, Array_InternalArray__IReadOnlyList_get_Item_378, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19060, Array_InternalArray__IReadOnlyList_get_Item_378__MethodInfo); DO_APP_FUNC(0x00F6BD60, Hash128, Array_InternalArray__IReadOnlyList_get_Item_379, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19058, Array_InternalArray__IReadOnlyList_get_Item_379__MethodInfo); DO_APP_FUNC(0x00F6BE20, HeaderVariantInfo, Array_InternalArray__IReadOnlyList_get_Item_380, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19048, Array_InternalArray__IReadOnlyList_get_Item_380__MethodInfo); DO_APP_FUNC(0x00F6BEE0, HighlightState, Array_InternalArray__IReadOnlyList_get_Item_381, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19040, Array_InternalArray__IReadOnlyList_get_Item_381__MethodInfo); DO_APP_FUNC(0x00F6BFA0, HumanBone, Array_InternalArray__IReadOnlyList_get_Item_382, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18FE0, Array_InternalArray__IReadOnlyList_get_Item_382__MethodInfo); DO_APP_FUNC(0x00F6C060, ImpactEffect, Array_InternalArray__IReadOnlyList_get_Item_383, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18FD8, Array_InternalArray__IReadOnlyList_get_Item_383__MethodInfo); DO_APP_FUNC(0x00F6C120, InputActionSourceData, Array_InternalArray__IReadOnlyList_get_Item_384, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18FD0, Array_InternalArray__IReadOnlyList_get_Item_384__MethodInfo); DO_APP_FUNC(0x00F6C1E0, InputBinding, Array_InternalArray__IReadOnlyList_get_Item_385, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18FC8, Array_InternalArray__IReadOnlyList_get_Item_385__MethodInfo); DO_APP_FUNC(0x00F6C2B0, InputControlScheme, Array_InternalArray__IReadOnlyList_get_Item_386, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19008, Array_InternalArray__IReadOnlyList_get_Item_386__MethodInfo); DO_APP_FUNC(0x00F6C370, InputDevice_1, Array_InternalArray__IReadOnlyList_get_Item_387, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19000, Array_InternalArray__IReadOnlyList_get_Item_387__MethodInfo); DO_APP_FUNC(0x00F6C430, InputDeviceDescription, Array_InternalArray__IReadOnlyList_get_Item_388, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18FF8, Array_InternalArray__IReadOnlyList_get_Item_388__MethodInfo); DO_APP_FUNC(0x00F6C500, InputEventPtr, Array_InternalArray__IReadOnlyList_get_Item_389, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18FE8, Array_InternalArray__IReadOnlyList_get_Item_389__MethodInfo); DO_APP_FUNC(0x00F6C5B0, InputUser, Array_InternalArray__IReadOnlyList_get_Item_390, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18FA0, Array_InternalArray__IReadOnlyList_get_Item_390__MethodInfo); DO_APP_FUNC(0x00F6C660, int16_t, Array_InternalArray__IReadOnlyList_get_Item_391, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18F98, Array_InternalArray__IReadOnlyList_get_Item_391__MethodInfo); DO_APP_FUNC(0x00F6C710, Int2, Array_InternalArray__IReadOnlyList_get_Item_392, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18F90, Array_InternalArray__IReadOnlyList_get_Item_392__MethodInfo); DO_APP_FUNC(0x00F6C7C0, Int3, Array_InternalArray__IReadOnlyList_get_Item_393, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18F88, Array_InternalArray__IReadOnlyList_get_Item_393__MethodInfo); DO_APP_FUNC(0x00F6C880, int32_t, Array_InternalArray__IReadOnlyList_get_Item_394, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18FC0, Array_InternalArray__IReadOnlyList_get_Item_394__MethodInfo); DO_APP_FUNC(0x00F6C930, Int32Enum__Enum, Array_InternalArray__IReadOnlyList_get_Item_395, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18FB8, Array_InternalArray__IReadOnlyList_get_Item_395__MethodInfo); DO_APP_FUNC(0x00F6C9E0, int64_t, Array_InternalArray__IReadOnlyList_get_Item_396, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18FB0, Array_InternalArray__IReadOnlyList_get_Item_396__MethodInfo); DO_APP_FUNC(0x00F6CA90, IntPoint, Array_InternalArray__IReadOnlyList_get_Item_397, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18FA8, Array_InternalArray__IReadOnlyList_get_Item_397__MethodInfo); DO_APP_FUNC(0x00F6CB50, void *, Array_InternalArray__IReadOnlyList_get_Item_398, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18F58, Array_InternalArray__IReadOnlyList_get_Item_398__MethodInfo); DO_APP_FUNC(0x00F6CC00, IntRect, Array_InternalArray__IReadOnlyList_get_Item_399, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18F48, Array_InternalArray__IReadOnlyList_get_Item_399__MethodInfo); DO_APP_FUNC(0x00F6CCC0, InternalCodePageDataItem, Array_InternalArray__IReadOnlyList_get_Item_400, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18F40, Array_InternalArray__IReadOnlyList_get_Item_400__MethodInfo); DO_APP_FUNC(0x00F6CD80, InternalEncodingDataItem, Array_InternalArray__IReadOnlyList_get_Item_401, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18F38, Array_InternalArray__IReadOnlyList_get_Item_401__MethodInfo); DO_APP_FUNC(0x00F6CE40, InternedString, Array_InternalArray__IReadOnlyList_get_Item_402, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18F80, Array_InternalArray__IReadOnlyList_get_Item_402__MethodInfo); DO_APP_FUNC(0x00F6CF00, InterpretedFrameInfo, Array_InternalArray__IReadOnlyList_get_Item_403, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18F78, Array_InternalArray__IReadOnlyList_get_Item_403__MethodInfo); DO_APP_FUNC(0x00F6CFC0, IntervalTreeNode, Array_InternalArray__IReadOnlyList_get_Item_404, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18F68, Array_InternalArray__IReadOnlyList_get_Item_404__MethodInfo); DO_APP_FUNC(0x00F6D080, IpQCkqlgJLyrFpAOyBfUxXQpJsWK, Array_InternalArray__IReadOnlyList_get_Item_405, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18F60, Array_InternalArray__IReadOnlyList_get_Item_405__MethodInfo); DO_APP_FUNC(0x00F6D130, ItemDefinitionAmount, Array_InternalArray__IReadOnlyList_get_Item_406, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18F00, Array_InternalArray__IReadOnlyList_get_Item_406__MethodInfo); DO_APP_FUNC(0x00F6D1F0, Keyframe, Array_InternalArray__IReadOnlyList_get_Item_407, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18EF8, Array_InternalArray__IReadOnlyList_get_Item_407__MethodInfo); DO_APP_FUNC(0x00F6D2B0, KickedPlayer, Array_InternalArray__IReadOnlyList_get_Item_408, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18EF0, Array_InternalArray__IReadOnlyList_get_Item_408__MethodInfo); DO_APP_FUNC(0x00F6D370, LOD, Array_InternalArray__IReadOnlyList_get_Item_409, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18EE8, Array_InternalArray__IReadOnlyList_get_Item_409__MethodInfo); DO_APP_FUNC(0x00F6D430, LayerMask, Array_InternalArray__IReadOnlyList_get_Item_410, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18F28, Array_InternalArray__IReadOnlyList_get_Item_410__MethodInfo); DO_APP_FUNC(0x00F6D4E0, Length, Array_InternalArray__IReadOnlyList_get_Item_411, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18F20, Array_InternalArray__IReadOnlyList_get_Item_411__MethodInfo); DO_APP_FUNC(0x00F6D590, LightDataGI, Array_InternalArray__IReadOnlyList_get_Item_412, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18F18, Array_InternalArray__IReadOnlyList_get_Item_412__MethodInfo); DO_APP_FUNC(0x00F6D660, LineInfo_1, Array_InternalArray__IReadOnlyList_get_Item_413, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18F08, Array_InternalArray__IReadOnlyList_get_Item_413__MethodInfo); DO_APP_FUNC(0x00F6D730, LinkInfo, Array_InternalArray__IReadOnlyList_get_Item_414, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18EB0, Array_InternalArray__IReadOnlyList_get_Item_414__MethodInfo); DO_APP_FUNC(0x00F6D7F0, LocalDefinition, Array_InternalArray__IReadOnlyList_get_Item_415, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18EA0, Array_InternalArray__IReadOnlyList_get_Item_415__MethodInfo); DO_APP_FUNC(0x00F6D8B0, LocalKeyword, Array_InternalArray__IReadOnlyList_get_Item_416, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18E90, Array_InternalArray__IReadOnlyList_get_Item_416__MethodInfo); DO_APP_FUNC(0x00F6D970, ManipulatorActivationFilter, Array_InternalArray__IReadOnlyList_get_Item_417, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18E80, Array_InternalArray__IReadOnlyList_get_Item_417__MethodInfo); DO_APP_FUNC(0x00F6DA30, MaterialReference, Array_InternalArray__IReadOnlyList_get_Item_418, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18EE0, Array_InternalArray__IReadOnlyList_get_Item_418__MethodInfo); DO_APP_FUNC(0x00F6DB00, MaterialReference_1, Array_InternalArray__IReadOnlyList_get_Item_419, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18ED0, Array_InternalArray__IReadOnlyList_get_Item_419__MethodInfo); DO_APP_FUNC(0x00F6DBD0, Matrix4x4, Array_InternalArray__IReadOnlyList_get_Item_420, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18EC8, Array_InternalArray__IReadOnlyList_get_Item_420__MethodInfo); DO_APP_FUNC(0x00F6DC90, MeshInfo, Array_InternalArray__IReadOnlyList_get_Item_421, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18EC0, Array_InternalArray__IReadOnlyList_get_Item_421__MethodInfo); DO_APP_FUNC(0x00F6DD60, MinMaxFloat, Array_InternalArray__IReadOnlyList_get_Item_422, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18E50, Array_InternalArray__IReadOnlyList_get_Item_422__MethodInfo); DO_APP_FUNC(0x00F6DE10, MinMaxVector3, Array_InternalArray__IReadOnlyList_get_Item_423, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18E48, Array_InternalArray__IReadOnlyList_get_Item_423__MethodInfo); DO_APP_FUNC(0x00F6DED0, ModifiableContactPair, Array_InternalArray__IReadOnlyList_get_Item_424, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18E40, Array_InternalArray__IReadOnlyList_get_Item_424__MethodInfo); DO_APP_FUNC(0x00F6DFA0, NameAndParameters, Array_InternalArray__IReadOnlyList_get_Item_425, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18E38, Array_InternalArray__IReadOnlyList_get_Item_425__MethodInfo); DO_APP_FUNC(0x00F6E060, NamedValue, Array_InternalArray__IReadOnlyList_get_Item_426, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18E78, Array_InternalArray__IReadOnlyList_get_Item_426__MethodInfo); DO_APP_FUNC(0x00F6E120, NativeAnchor, Array_InternalArray__IReadOnlyList_get_Item_427, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18E70, Array_InternalArray__IReadOnlyList_get_Item_427__MethodInfo); DO_APP_FUNC(0x00F6E1F0, NativePlane, Array_InternalArray__IReadOnlyList_get_Item_428, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18E68, Array_InternalArray__IReadOnlyList_get_Item_428__MethodInfo); DO_APP_FUNC(0x00F6E2C0, Navigation, Array_InternalArray__IReadOnlyList_get_Item_429, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18E58, Array_InternalArray__IReadOnlyList_get_Item_429__MethodInfo); DO_APP_FUNC(0x00F6E380, NetworkId, Array_InternalArray__IReadOnlyList_get_Item_430, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18DF8, Array_InternalArray__IReadOnlyList_get_Item_430__MethodInfo); DO_APP_FUNC(0x00F6E430, NetworkPropertyInfo, Array_InternalArray__IReadOnlyList_get_Item_431, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18DF0, Array_InternalArray__IReadOnlyList_get_Item_431__MethodInfo); DO_APP_FUNC(0x00F6E4F0, NetworkValue, Array_InternalArray__IReadOnlyList_get_Item_432, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18DE8, Array_InternalArray__IReadOnlyList_get_Item_432__MethodInfo); DO_APP_FUNC(0x00F6E5B0, Object *, Array_InternalArray__IReadOnlyList_get_Item_433, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18DE0, Array_InternalArray__IReadOnlyList_get_Item_433__MethodInfo); DO_APP_FUNC(0x00F6E660, ObjectInitializationData, Array_InternalArray__IReadOnlyList_get_Item_434, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18E28, Array_InternalArray__IReadOnlyList_get_Item_434__MethodInfo); DO_APP_FUNC(0x00F6E720, ObjectSurface, Array_InternalArray__IReadOnlyList_get_Item_435, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18E20, Array_InternalArray__IReadOnlyList_get_Item_435__MethodInfo); DO_APP_FUNC(0x00F6E7E0, OpenChannel, Array_InternalArray__IReadOnlyList_get_Item_436, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18E10, Array_InternalArray__IReadOnlyList_get_Item_436__MethodInfo); DO_APP_FUNC(0x00F6E8A0, OriginalMaterialValue, Array_InternalArray__IReadOnlyList_get_Item_437, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18E00, Array_InternalArray__IReadOnlyList_get_Item_437__MethodInfo); DO_APP_FUNC(0x00F6E960, PacketStats, Array_InternalArray__IReadOnlyList_get_Item_438, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18DB8, Array_InternalArray__IReadOnlyList_get_Item_438__MethodInfo); DO_APP_FUNC(0x00F6EA20, PageInfo, Array_InternalArray__IReadOnlyList_get_Item_439, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18DB0, Array_InternalArray__IReadOnlyList_get_Item_439__MethodInfo); DO_APP_FUNC(0x00F6EAE0, ParameterModifier, Array_InternalArray__IReadOnlyList_get_Item_440, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18DA0, Array_InternalArray__IReadOnlyList_get_Item_440__MethodInfo); DO_APP_FUNC(0x00F6EB90, ParticleCollisionEvent, Array_InternalArray__IReadOnlyList_get_Item_441, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18D98, Array_InternalArray__IReadOnlyList_get_Item_441__MethodInfo); DO_APP_FUNC(0x00F6EC50, PatchExtents, Array_InternalArray__IReadOnlyList_get_Item_442, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18DD8, Array_InternalArray__IReadOnlyList_get_Item_442__MethodInfo); DO_APP_FUNC(0x00F6ED00, PidVid, Array_InternalArray__IReadOnlyList_get_Item_443, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18DD0, Array_InternalArray__IReadOnlyList_get_Item_443__MethodInfo); DO_APP_FUNC(0x00F6EDB0, Plane, Array_InternalArray__IReadOnlyList_get_Item_444, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18DC8, Array_InternalArray__IReadOnlyList_get_Item_444__MethodInfo); DO_APP_FUNC(0x00F6EE70, Playable, Array_InternalArray__IReadOnlyList_get_Item_445, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18DC0, Array_InternalArray__IReadOnlyList_get_Item_445__MethodInfo); DO_APP_FUNC(0x00F6EF30, PlayableBinding, Array_InternalArray__IReadOnlyList_get_Item_446, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18D70, Array_InternalArray__IReadOnlyList_get_Item_446__MethodInfo); DO_APP_FUNC(0x00F6EFF0, PlayerChannel, Array_InternalArray__IReadOnlyList_get_Item_447, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18D68, Array_InternalArray__IReadOnlyList_get_Item_447__MethodInfo); DO_APP_FUNC(0x00F6F0B0, PlayerFlashlightBeam, Array_InternalArray__IReadOnlyList_get_Item_448, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18D60, Array_InternalArray__IReadOnlyList_get_Item_448__MethodInfo); DO_APP_FUNC(0x00F6F170, PlayerLoopSystem, Array_InternalArray__IReadOnlyList_get_Item_449, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18D58, Array_InternalArray__IReadOnlyList_get_Item_449__MethodInfo); DO_APP_FUNC(0x00F6F230, PointerModel, Array_InternalArray__IReadOnlyList_get_Item_450, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18D90, Array_InternalArray__IReadOnlyList_get_Item_450__MethodInfo); DO_APP_FUNC(0x00F6F2F0, PrefabId, Array_InternalArray__IReadOnlyList_get_Item_451, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18D88, Array_InternalArray__IReadOnlyList_get_Item_451__MethodInfo); DO_APP_FUNC(0x00F6F3A0, Priority, Array_InternalArray__IReadOnlyList_get_Item_452, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18D80, Array_InternalArray__IReadOnlyList_get_Item_452__MethodInfo); DO_APP_FUNC(0x00F6F460, ProbeVolumeBakingProcessSettings, Array_InternalArray__IReadOnlyList_get_Item_453, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18D78, Array_InternalArray__IReadOnlyList_get_Item_453__MethodInfo); DO_APP_FUNC(0x00F6F520, Progress, Array_InternalArray__IReadOnlyList_get_Item_454, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18D30, Array_InternalArray__IReadOnlyList_get_Item_454__MethodInfo); DO_APP_FUNC(0x00F6F5E0, PublishedFileId_t, Array_InternalArray__IReadOnlyList_get_Item_455, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18D28, Array_InternalArray__IReadOnlyList_get_Item_455__MethodInfo); DO_APP_FUNC(0x00F6F690, QeeoSydAJKtvhuMHtIdMCGTRHBDhA, Array_InternalArray__IReadOnlyList_get_Item_456, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18D20, Array_InternalArray__IReadOnlyList_get_Item_456__MethodInfo); DO_APP_FUNC(0x00F6F750, Quaternion, Array_InternalArray__IReadOnlyList_get_Item_457, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18D18, Array_InternalArray__IReadOnlyList_get_Item_457__MethodInfo); DO_APP_FUNC(0x00F6F810, RangePositionInfo, Array_InternalArray__IReadOnlyList_get_Item_458, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18D50, Array_InternalArray__IReadOnlyList_get_Item_458__MethodInfo); DO_APP_FUNC(0x00F6F8D0, RaycastHit, Array_InternalArray__IReadOnlyList_get_Item_459, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18D48, Array_InternalArray__IReadOnlyList_get_Item_459__MethodInfo); DO_APP_FUNC(0x00F6F990, RaycastHit2D, Array_InternalArray__IReadOnlyList_get_Item_460, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18D40, Array_InternalArray__IReadOnlyList_get_Item_460__MethodInfo); DO_APP_FUNC(0x00F6FA50, RaycastResult, Array_InternalArray__IReadOnlyList_get_Item_461, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18D38, Array_InternalArray__IReadOnlyList_get_Item_461__MethodInfo); DO_APP_FUNC(0x00F6FB20, Rect, Array_InternalArray__IReadOnlyList_get_Item_462, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18CE0, Array_InternalArray__IReadOnlyList_get_Item_462__MethodInfo); DO_APP_FUNC(0x00F6FBE0, ReflectionProbeBlendInfo, Array_InternalArray__IReadOnlyList_get_Item_463, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18CD8, Array_InternalArray__IReadOnlyList_get_Item_463__MethodInfo); DO_APP_FUNC(0x00F6FCA0, RemoteChannel, Array_InternalArray__IReadOnlyList_get_Item_464, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18CD0, Array_InternalArray__IReadOnlyList_get_Item_464__MethodInfo); DO_APP_FUNC(0x00F6FD60, RenderChainTextEntry, Array_InternalArray__IReadOnlyList_get_Item_465, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18CC8, Array_InternalArray__IReadOnlyList_get_Item_465__MethodInfo); DO_APP_FUNC(0x00F6FE20, RenderInstancedDataLayout, Array_InternalArray__IReadOnlyList_get_Item_466, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18D10, Array_InternalArray__IReadOnlyList_get_Item_466__MethodInfo); DO_APP_FUNC(0x00F6FEE0, RenderTargetIdentifier, Array_InternalArray__IReadOnlyList_get_Item_467, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18D00, Array_InternalArray__IReadOnlyList_get_Item_467__MethodInfo); DO_APP_FUNC(0x00F6FFA0, RendererList, Array_InternalArray__IReadOnlyList_get_Item_468, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18CF8, Array_InternalArray__IReadOnlyList_get_Item_468__MethodInfo); DO_APP_FUNC(0x00F70060, RendererListHandle, Array_InternalArray__IReadOnlyList_get_Item_469, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18CF0, Array_InternalArray__IReadOnlyList_get_Item_469__MethodInfo); DO_APP_FUNC(0x00F70110, RendererListResource, Array_InternalArray__IReadOnlyList_get_Item_470, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18C98, Array_InternalArray__IReadOnlyList_get_Item_470__MethodInfo); DO_APP_FUNC(0x00F701D0, Resolution, Array_InternalArray__IReadOnlyList_get_Item_471, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18C90, Array_InternalArray__IReadOnlyList_get_Item_471__MethodInfo); DO_APP_FUNC(0x00F70290, ResourceHandle, Array_InternalArray__IReadOnlyList_get_Item_472, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18C88, Array_InternalArray__IReadOnlyList_get_Item_472__MethodInfo); DO_APP_FUNC(0x00F70340, ResourceLocator, Array_InternalArray__IReadOnlyList_get_Item_473, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18C80, Array_InternalArray__IReadOnlyList_get_Item_473__MethodInfo); DO_APP_FUNC(0x00F70400, RichTextTagAttribute, Array_InternalArray__IReadOnlyList_get_Item_474, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18CC0, Array_InternalArray__IReadOnlyList_get_Item_474__MethodInfo); DO_APP_FUNC(0x00F704C0, RichTextTagAttribute_1, Array_InternalArray__IReadOnlyList_get_Item_475, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18CB8, Array_InternalArray__IReadOnlyList_get_Item_475__MethodInfo); DO_APP_FUNC(0x00F70580, RoomChannel, Array_InternalArray__IReadOnlyList_get_Item_476, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18CB0, Array_InternalArray__IReadOnlyList_get_Item_476__MethodInfo); DO_APP_FUNC(0x00F70640, RoomMembership, Array_InternalArray__IReadOnlyList_get_Item_477, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18CA0, Array_InternalArray__IReadOnlyList_get_Item_477__MethodInfo); DO_APP_FUNC(0x00F70700, RoomName, Array_InternalArray__IReadOnlyList_get_Item_478, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18C58, Array_InternalArray__IReadOnlyList_get_Item_478__MethodInfo); DO_APP_FUNC(0x00F707C0, Rotate_1, Array_InternalArray__IReadOnlyList_get_Item_479, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18C50, Array_InternalArray__IReadOnlyList_get_Item_479__MethodInfo); DO_APP_FUNC(0x00F70880, RuleMatcher, Array_InternalArray__IReadOnlyList_get_Item_480, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18C48, Array_InternalArray__IReadOnlyList_get_Item_480__MethodInfo); DO_APP_FUNC(0x00F70940, RuntimeLabel, Array_InternalArray__IReadOnlyList_get_Item_481, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18C40, Array_InternalArray__IReadOnlyList_get_Item_481__MethodInfo); DO_APP_FUNC(0x00F70A00, int8_t, Array_InternalArray__IReadOnlyList_get_Item_482, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18C78, Array_InternalArray__IReadOnlyList_get_Item_482__MethodInfo); DO_APP_FUNC(0x00F70AB0, SByteEnum__Enum, Array_InternalArray__IReadOnlyList_get_Item_483, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18C70, Array_InternalArray__IReadOnlyList_get_Item_483__MethodInfo); DO_APP_FUNC(0x00F70B60, STATDATA, Array_InternalArray__IReadOnlyList_get_Item_484, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18C68, Array_InternalArray__IReadOnlyList_get_Item_484__MethodInfo); DO_APP_FUNC(0x00F70C30, ScalableImage, Array_InternalArray__IReadOnlyList_get_Item_485, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18C60, Array_InternalArray__IReadOnlyList_get_Item_485__MethodInfo); DO_APP_FUNC(0x00F70CF0, Scale, Array_InternalArray__IReadOnlyList_get_Item_486, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18C18, Array_InternalArray__IReadOnlyList_get_Item_486__MethodInfo); DO_APP_FUNC(0x00F70DB0, SelectorMatchRecord, Array_InternalArray__IReadOnlyList_get_Item_487, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18C10, Array_InternalArray__IReadOnlyList_get_Item_487__MethodInfo); DO_APP_FUNC(0x00F70E70, SemanticMeaning, Array_InternalArray__IReadOnlyList_get_Item_488, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18C08, Array_InternalArray__IReadOnlyList_get_Item_488__MethodInfo); DO_APP_FUNC(0x00F70F30, SerializedType, Array_InternalArray__IReadOnlyList_get_Item_489, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18C00, Array_InternalArray__IReadOnlyList_get_Item_489__MethodInfo); DO_APP_FUNC(0x00F70FF0, SessionClient, Array_InternalArray__IReadOnlyList_get_Item_490, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18C38, Array_InternalArray__IReadOnlyList_get_Item_490__MethodInfo); DO_APP_FUNC(0x00F710C0, ShaderKeyword, Array_InternalArray__IReadOnlyList_get_Item_491, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18C30, Array_InternalArray__IReadOnlyList_get_Item_491__MethodInfo); DO_APP_FUNC(0x00F71180, ShaderTagId, Array_InternalArray__IReadOnlyList_get_Item_492, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18C28, Array_InternalArray__IReadOnlyList_get_Item_492__MethodInfo); DO_APP_FUNC(0x00F71230, ShaderVariablesProbeVolumes, Array_InternalArray__IReadOnlyList_get_Item_493, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18C20, Array_InternalArray__IReadOnlyList_get_Item_493__MethodInfo); DO_APP_FUNC(0x00F712F0, float, Array_InternalArray__IReadOnlyList_get_Item_494, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18BD8, Array_InternalArray__IReadOnlyList_get_Item_494__MethodInfo); DO_APP_FUNC(0x00F713A0, SkeletonBone, Array_InternalArray__IReadOnlyList_get_Item_495, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18BD0, Array_InternalArray__IReadOnlyList_get_Item_495__MethodInfo); DO_APP_FUNC(0x00F71470, Sku, Array_InternalArray__IReadOnlyList_get_Item_496, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18BC8, Array_InternalArray__IReadOnlyList_get_Item_496__MethodInfo); DO_APP_FUNC(0x00F71530, SpeechSession, Array_InternalArray__IReadOnlyList_get_Item_497, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18BC0, Array_InternalArray__IReadOnlyList_get_Item_497__MethodInfo); DO_APP_FUNC(0x00F71600, SphericalHarmonicsL2, Array_InternalArray__IReadOnlyList_get_Item_498, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18BF8, Array_InternalArray__IReadOnlyList_get_Item_498__MethodInfo); DO_APP_FUNC(0x00F716D0, SpriteState, Array_InternalArray__IReadOnlyList_get_Item_499, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18BF0, Array_InternalArray__IReadOnlyList_get_Item_499__MethodInfo); DO_APP_FUNC(0x00F71790, SslApplicationProtocol, Array_InternalArray__IReadOnlyList_get_Item_500, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18BE8, Array_InternalArray__IReadOnlyList_get_Item_500__MethodInfo); DO_APP_FUNC(0x00F71850, SteamItemDef_t, Array_InternalArray__IReadOnlyList_get_Item_501, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18BE0, Array_InternalArray__IReadOnlyList_get_Item_501__MethodInfo); DO_APP_FUNC(0x00F71900, SteamItemDetails_t, Array_InternalArray__IReadOnlyList_get_Item_502, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18B98, Array_InternalArray__IReadOnlyList_get_Item_502__MethodInfo); DO_APP_FUNC(0x00F719C0, StylePropertyName, Array_InternalArray__IReadOnlyList_get_Item_503, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18B90, Array_InternalArray__IReadOnlyList_get_Item_503__MethodInfo); DO_APP_FUNC(0x00F71A80, StylePropertyValue, Array_InternalArray__IReadOnlyList_get_Item_504, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18B88, Array_InternalArray__IReadOnlyList_get_Item_504__MethodInfo); DO_APP_FUNC(0x00F71B40, StyleSelectorPart, Array_InternalArray__IReadOnlyList_get_Item_505, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18B80, Array_InternalArray__IReadOnlyList_get_Item_505__MethodInfo); DO_APP_FUNC(0x00F71C00, StyleSyntaxToken, Array_InternalArray__IReadOnlyList_get_Item_506, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18BB8, Array_InternalArray__IReadOnlyList_get_Item_506__MethodInfo); DO_APP_FUNC(0x00F71CC0, StyleValue, Array_InternalArray__IReadOnlyList_get_Item_507, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18BB0, Array_InternalArray__IReadOnlyList_get_Item_507__MethodInfo); DO_APP_FUNC(0x00F71D80, StyleValueHandle, Array_InternalArray__IReadOnlyList_get_Item_508, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18BA8, Array_InternalArray__IReadOnlyList_get_Item_508__MethodInfo); DO_APP_FUNC(0x00F71E30, StyleValueManaged, Array_InternalArray__IReadOnlyList_get_Item_509, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18BA0, Array_InternalArray__IReadOnlyList_get_Item_509__MethodInfo); DO_APP_FUNC(0x00F71EF0, StyleVariable, Array_InternalArray__IReadOnlyList_get_Item_510, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18B58, Array_InternalArray__IReadOnlyList_get_Item_510__MethodInfo); DO_APP_FUNC(0x00F71FB0, SubMeshDescriptor, Array_InternalArray__IReadOnlyList_get_Item_511, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18B50, Array_InternalArray__IReadOnlyList_get_Item_511__MethodInfo); DO_APP_FUNC(0x00F72070, Substring, Array_InternalArray__IReadOnlyList_get_Item_512, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18B48, Array_InternalArray__IReadOnlyList_get_Item_512__MethodInfo); DO_APP_FUNC(0x00F72130, TMP_CharacterInfo, Array_InternalArray__IReadOnlyList_get_Item_513, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18B40, Array_InternalArray__IReadOnlyList_get_Item_513__MethodInfo); DO_APP_FUNC(0x00F721F0, TMP_FontWeightPair, Array_InternalArray__IReadOnlyList_get_Item_514, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18B78, Array_InternalArray__IReadOnlyList_get_Item_514__MethodInfo); DO_APP_FUNC(0x00F722B0, TMP_LineInfo, Array_InternalArray__IReadOnlyList_get_Item_515, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18B70, Array_InternalArray__IReadOnlyList_get_Item_515__MethodInfo); DO_APP_FUNC(0x00F72380, TMP_LinkInfo, Array_InternalArray__IReadOnlyList_get_Item_516, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18B68, Array_InternalArray__IReadOnlyList_get_Item_516__MethodInfo); DO_APP_FUNC(0x00F72440, TMP_MeshInfo, Array_InternalArray__IReadOnlyList_get_Item_517, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18B60, Array_InternalArray__IReadOnlyList_get_Item_517__MethodInfo); DO_APP_FUNC(0x00F72510, TMP_PageInfo, Array_InternalArray__IReadOnlyList_get_Item_518, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18B18, Array_InternalArray__IReadOnlyList_get_Item_518__MethodInfo); DO_APP_FUNC(0x00F725D0, TMP_WordInfo, Array_InternalArray__IReadOnlyList_get_Item_519, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18B10, Array_InternalArray__IReadOnlyList_get_Item_519__MethodInfo); DO_APP_FUNC(0x00F72690, TerrainTileCoord, Array_InternalArray__IReadOnlyList_get_Item_520, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18B08, Array_InternalArray__IReadOnlyList_get_Item_520__MethodInfo); DO_APP_FUNC(0x00F72740, TextElementInfo, Array_InternalArray__IReadOnlyList_get_Item_521, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18B00, Array_InternalArray__IReadOnlyList_get_Item_521__MethodInfo); DO_APP_FUNC(0x00F72800, TextShadow, Array_InternalArray__IReadOnlyList_get_Item_522, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18B38, Array_InternalArray__IReadOnlyList_get_Item_522__MethodInfo); DO_APP_FUNC(0x00F728C0, TextVertex_1, Array_InternalArray__IReadOnlyList_get_Item_523, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18B30, Array_InternalArray__IReadOnlyList_get_Item_523__MethodInfo); DO_APP_FUNC(0x00F72980, TextureHandle, Array_InternalArray__IReadOnlyList_get_Item_524, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18B28, Array_InternalArray__IReadOnlyList_get_Item_524__MethodInfo); DO_APP_FUNC(0x00F72A40, TextureId, Array_InternalArray__IReadOnlyList_get_Item_525, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18B20, Array_InternalArray__IReadOnlyList_get_Item_525__MethodInfo); DO_APP_FUNC(0x00F72AF0, TileData, Array_InternalArray__IReadOnlyList_get_Item_526, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18AD8, Array_InternalArray__IReadOnlyList_get_Item_526__MethodInfo); DO_APP_FUNC(0x00F72BC0, TimeSpan, Array_InternalArray__IReadOnlyList_get_Item_527, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18AD0, Array_InternalArray__IReadOnlyList_get_Item_527__MethodInfo); DO_APP_FUNC(0x00F72C70, TimeValue, Array_InternalArray__IReadOnlyList_get_Item_528, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18AC8, Array_InternalArray__IReadOnlyList_get_Item_528__MethodInfo); DO_APP_FUNC(0x00F72D20, Touch, Array_InternalArray__IReadOnlyList_get_Item_529, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18AC0, Array_InternalArray__IReadOnlyList_get_Item_529__MethodInfo); DO_APP_FUNC(0x00F72DF0, Touch_1, Array_InternalArray__IReadOnlyList_get_Item_530, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18AF8, Array_InternalArray__IReadOnlyList_get_Item_530__MethodInfo); DO_APP_FUNC(0x00F72EB0, TrackableId, Array_InternalArray__IReadOnlyList_get_Item_531, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18AF0, Array_InternalArray__IReadOnlyList_get_Item_531__MethodInfo); DO_APP_FUNC(0x00F72F70, Transform3x4, Array_InternalArray__IReadOnlyList_get_Item_532, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18AE8, Array_InternalArray__IReadOnlyList_get_Item_532__MethodInfo); DO_APP_FUNC(0x00F73030, TransformOrigin, Array_InternalArray__IReadOnlyList_get_Item_533, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18AE0, Array_InternalArray__IReadOnlyList_get_Item_533__MethodInfo); DO_APP_FUNC(0x00F730F0, Translate_1, Array_InternalArray__IReadOnlyList_get_Item_534, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18A98, Array_InternalArray__IReadOnlyList_get_Item_534__MethodInfo); DO_APP_FUNC(0x00F731B0, TreeInstance, Array_InternalArray__IReadOnlyList_get_Item_535, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18A90, Array_InternalArray__IReadOnlyList_get_Item_535__MethodInfo); DO_APP_FUNC(0x00F73270, TreeItem, Array_InternalArray__IReadOnlyList_get_Item_536, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18A88, Array_InternalArray__IReadOnlyList_get_Item_536__MethodInfo); DO_APP_FUNC(0x00F73330, TreeViewItemWrapper, Array_InternalArray__IReadOnlyList_get_Item_537, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18A80, Array_InternalArray__IReadOnlyList_get_Item_537__MethodInfo); DO_APP_FUNC(0x00F733F0, TypeId, Array_InternalArray__IReadOnlyList_get_Item_538, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18AB8, Array_InternalArray__IReadOnlyList_get_Item_538__MethodInfo); DO_APP_FUNC(0x00F734A0, TypeWrapper, Array_InternalArray__IReadOnlyList_get_Item_539, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18AB0, Array_InternalArray__IReadOnlyList_get_Item_539__MethodInfo); DO_APP_FUNC(0x00F73560, UICharInfo, Array_InternalArray__IReadOnlyList_get_Item_540, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18AA8, Array_InternalArray__IReadOnlyList_get_Item_540__MethodInfo); DO_APP_FUNC(0x00F73620, UILineInfo, Array_InternalArray__IReadOnlyList_get_Item_541, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18AA0, Array_InternalArray__IReadOnlyList_get_Item_541__MethodInfo); DO_APP_FUNC(0x00F736E0, UIVertex, Array_InternalArray__IReadOnlyList_get_Item_542, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18A58, Array_InternalArray__IReadOnlyList_get_Item_542__MethodInfo); DO_APP_FUNC(0x00F737B0, uint16_t, Array_InternalArray__IReadOnlyList_get_Item_543, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18A50, Array_InternalArray__IReadOnlyList_get_Item_543__MethodInfo); DO_APP_FUNC(0x00F73860, UInt16Enum__Enum, Array_InternalArray__IReadOnlyList_get_Item_544, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18A48, Array_InternalArray__IReadOnlyList_get_Item_544__MethodInfo); DO_APP_FUNC(0x00F73910, uint32_t, Array_InternalArray__IReadOnlyList_get_Item_545, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18A40, Array_InternalArray__IReadOnlyList_get_Item_545__MethodInfo); DO_APP_FUNC(0x00F739C0, UInt32Enum__Enum, Array_InternalArray__IReadOnlyList_get_Item_546, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18A78, Array_InternalArray__IReadOnlyList_get_Item_546__MethodInfo); DO_APP_FUNC(0x00F73A70, uint64_t, Array_InternalArray__IReadOnlyList_get_Item_547, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18A70, Array_InternalArray__IReadOnlyList_get_Item_547__MethodInfo); DO_APP_FUNC(0x00F73B20, UVTexture, Array_InternalArray__IReadOnlyList_get_Item_548, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18A68, Array_InternalArray__IReadOnlyList_get_Item_548__MethodInfo); DO_APP_FUNC(0x00F73BE0, UdpChannelName, Array_InternalArray__IReadOnlyList_get_Item_549, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18A60, Array_InternalArray__IReadOnlyList_get_Item_549__MethodInfo); DO_APP_FUNC(0x00F73CA0, UdpEndPoint, Array_InternalArray__IReadOnlyList_get_Item_550, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18A18, Array_InternalArray__IReadOnlyList_get_Item_550__MethodInfo); DO_APP_FUNC(0x00F73D60, UdpEvent, Array_InternalArray__IReadOnlyList_get_Item_551, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18A10, Array_InternalArray__IReadOnlyList_get_Item_551__MethodInfo); DO_APP_FUNC(0x00F73E20, UdpIPv4Address, Array_InternalArray__IReadOnlyList_get_Item_552, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18A08, Array_InternalArray__IReadOnlyList_get_Item_552__MethodInfo); DO_APP_FUNC(0x00F73ED0, UdpPipeHandle, Array_InternalArray__IReadOnlyList_get_Item_553, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18A00, Array_InternalArray__IReadOnlyList_get_Item_553__MethodInfo); DO_APP_FUNC(0x00F73F90, UniqueId, Array_InternalArray__IReadOnlyList_get_Item_554, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18A38, Array_InternalArray__IReadOnlyList_get_Item_554__MethodInfo); DO_APP_FUNC(0x00F74050, UsageHint, Array_InternalArray__IReadOnlyList_get_Item_555, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18A30, Array_InternalArray__IReadOnlyList_get_Item_555__MethodInfo); DO_APP_FUNC(0x00F74100, User, Array_InternalArray__IReadOnlyList_get_Item_556, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18A28, Array_InternalArray__IReadOnlyList_get_Item_556__MethodInfo); DO_APP_FUNC(0x00F741C0, ValueWebSocketReceiveResult, Array_InternalArray__IReadOnlyList_get_Item_557, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18A20, Array_InternalArray__IReadOnlyList_get_Item_557__MethodInfo); DO_APP_FUNC(0x00F74270, Vector2, Array_InternalArray__IReadOnlyList_get_Item_558, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D189D8, Array_InternalArray__IReadOnlyList_get_Item_558__MethodInfo); DO_APP_FUNC(0x00F74320, Vector2Int, Array_InternalArray__IReadOnlyList_get_Item_559, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D189D0, Array_InternalArray__IReadOnlyList_get_Item_559__MethodInfo); DO_APP_FUNC(0x00F743D0, Vector3, Array_InternalArray__IReadOnlyList_get_Item_560, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D189C8, Array_InternalArray__IReadOnlyList_get_Item_560__MethodInfo); DO_APP_FUNC(0x00F74490, Vector3Int, Array_InternalArray__IReadOnlyList_get_Item_561, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D189C0, Array_InternalArray__IReadOnlyList_get_Item_561__MethodInfo); DO_APP_FUNC(0x00F74550, Vector3_Array2D, Array_InternalArray__IReadOnlyList_get_Item_562, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D189F8, Array_InternalArray__IReadOnlyList_get_Item_562__MethodInfo); DO_APP_FUNC(0x00F74600, Vector4, Array_InternalArray__IReadOnlyList_get_Item_563, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D189F0, Array_InternalArray__IReadOnlyList_get_Item_563__MethodInfo); DO_APP_FUNC(0x00F746C0, VectorImageVertex, Array_InternalArray__IReadOnlyList_get_Item_564, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D189E8, Array_InternalArray__IReadOnlyList_get_Item_564__MethodInfo); DO_APP_FUNC(0x00F74780, Vertex, Array_InternalArray__IReadOnlyList_get_Item_565, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D189E0, Array_InternalArray__IReadOnlyList_get_Item_565__MethodInfo); DO_APP_FUNC(0x00F74850, VertexAttributeDescriptor, Array_InternalArray__IReadOnlyList_get_Item_566, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18998, Array_InternalArray__IReadOnlyList_get_Item_566__MethodInfo); DO_APP_FUNC(0x00F74910, ViewConfiguration, Array_InternalArray__IReadOnlyList_get_Item_567, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18990, Array_InternalArray__IReadOnlyList_get_Item_567__MethodInfo); DO_APP_FUNC(0x00F749D0, VoicePacket, Array_InternalArray__IReadOnlyList_get_Item_568, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18988, Array_InternalArray__IReadOnlyList_get_Item_568__MethodInfo); DO_APP_FUNC(0x00F74AA0, VoxelCell, Array_InternalArray__IReadOnlyList_get_Item_569, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18980, Array_InternalArray__IReadOnlyList_get_Item_569__MethodInfo); DO_APP_FUNC(0x00F74B50, VoxelContour, Array_InternalArray__IReadOnlyList_get_Item_570, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D189B8, Array_InternalArray__IReadOnlyList_get_Item_570__MethodInfo); DO_APP_FUNC(0x00F74C10, Win32_IP_ADAPTER_ADDRESSES, Array_InternalArray__IReadOnlyList_get_Item_571, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D189B0, Array_InternalArray__IReadOnlyList_get_Item_571__MethodInfo); DO_APP_FUNC(0x00F74CD0, Win32_IP_ADAPTER_INFO, Array_InternalArray__IReadOnlyList_get_Item_572, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D189A8, Array_InternalArray__IReadOnlyList_get_Item_572__MethodInfo); DO_APP_FUNC(0x00F74D90, Win32_IP_ADDR_STRING, Array_InternalArray__IReadOnlyList_get_Item_573, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D189A0, Array_InternalArray__IReadOnlyList_get_Item_573__MethodInfo); DO_APP_FUNC(0x00F74E50, WordInfo, Array_InternalArray__IReadOnlyList_get_Item_574, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18958, Array_InternalArray__IReadOnlyList_get_Item_574__MethodInfo); DO_APP_FUNC(0x00F74F10, WordWrapState, Array_InternalArray__IReadOnlyList_get_Item_575, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18950, Array_InternalArray__IReadOnlyList_get_Item_575__MethodInfo); DO_APP_FUNC(0x00F74FD0, X509ChainStatus, Array_InternalArray__IReadOnlyList_get_Item_576, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18948, Array_InternalArray__IReadOnlyList_get_Item_576__MethodInfo); DO_APP_FUNC(0x00F75090, XPathNode, Array_InternalArray__IReadOnlyList_get_Item_577, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18940, Array_InternalArray__IReadOnlyList_get_Item_577__MethodInfo); DO_APP_FUNC(0x00F75150, XPathNodeRef, Array_InternalArray__IReadOnlyList_get_Item_578, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18978, Array_InternalArray__IReadOnlyList_get_Item_578__MethodInfo); DO_APP_FUNC(0x00F75210, XRAnchor, Array_InternalArray__IReadOnlyList_get_Item_579, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18970, Array_InternalArray__IReadOnlyList_get_Item_579__MethodInfo); DO_APP_FUNC(0x00F752E0, XRFeatureDescriptor, Array_InternalArray__IReadOnlyList_get_Item_580, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18968, Array_InternalArray__IReadOnlyList_get_Item_580__MethodInfo); DO_APP_FUNC(0x00F753A0, XRNodeState, Array_InternalArray__IReadOnlyList_get_Item_581, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18960, Array_InternalArray__IReadOnlyList_get_Item_581__MethodInfo); DO_APP_FUNC(0x00F75470, XRRaycast, Array_InternalArray__IReadOnlyList_get_Item_582, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18918, Array_InternalArray__IReadOnlyList_get_Item_582__MethodInfo); DO_APP_FUNC(0x00F75540, XmlTagAttribute, Array_InternalArray__IReadOnlyList_get_Item_583, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18910, Array_InternalArray__IReadOnlyList_get_Item_583__MethodInfo); DO_APP_FUNC(0x00F75600, aOHEnKCFymegycPegEXPFUjlaUPpA, Array_InternalArray__IReadOnlyList_get_Item_584, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18908, Array_InternalArray__IReadOnlyList_get_Item_584__MethodInfo); DO_APP_FUNC(0x00F756C0, aQHgSHeigtcamfIWbNaiXaCiVwuq, Array_InternalArray__IReadOnlyList_get_Item_585, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18900, Array_InternalArray__IReadOnlyList_get_Item_585__MethodInfo); DO_APP_FUNC(0x00F75770, jvalue, Array_InternalArray__IReadOnlyList_get_Item_586, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18938, Array_InternalArray__IReadOnlyList_get_Item_586__MethodInfo); DO_APP_FUNC(0x00F75820, tSPvxZUJjzaTiAEejeAOLKctGpmKA, Array_InternalArray__IReadOnlyList_get_Item_587, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18930, Array_InternalArray__IReadOnlyList_get_Item_587__MethodInfo); DO_APP_FUNC(0x00F758E0, yUgrsNEvLzxrXGzkHTUPIBJYGDah, Array_InternalArray__IReadOnlyList_get_Item_588, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18928, Array_InternalArray__IReadOnlyList_get_Item_588__MethodInfo); DO_APP_FUNC(0x00F759A0, AIObjectPool_PreloadedPrefab, Array_InternalArray__IReadOnlyList_get_Item_589, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18920, Array_InternalArray__IReadOnlyList_get_Item_589__MethodInfo); DO_APP_FUNC(0x00F75A60, AdvancedSmooth_Turn, Array_InternalArray__IReadOnlyList_get_Item_590, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D188D8, Array_InternalArray__IReadOnlyList_get_Item_590__MethodInfo); DO_APP_FUNC(0x00F75B20, Agent_VO, Array_InternalArray__IReadOnlyList_get_Item_591, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D188D0, Array_InternalArray__IReadOnlyList_get_Item_591__MethodInfo); DO_APP_FUNC(0x00F75BF0, AnimationOutputWeightProcessor_WeightInfo, Array_InternalArray__IReadOnlyList_get_Item_592, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D188C8, Array_InternalArray__IReadOnlyList_get_Item_592__MethodInfo); DO_APP_FUNC(0x00F75CB0, AstarDebugger_GraphPoint, Array_InternalArray__IReadOnlyList_get_Item_593, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D188C0, Array_InternalArray__IReadOnlyList_get_Item_593__MethodInfo); DO_APP_FUNC(0x00F75D70, AstarDebugger_PathTypeDebug, Array_InternalArray__IReadOnlyList_get_Item_594, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D188F8, Array_InternalArray__IReadOnlyList_get_Item_594__MethodInfo); DO_APP_FUNC(0x00F75E30, AtlasAllocatorDynamic_AtlasNode, Array_InternalArray__IReadOnlyList_get_Item_595, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D188F0, Array_InternalArray__IReadOnlyList_get_Item_595__MethodInfo); DO_APP_FUNC(0x00F75EF0, AttributeCollection_AttributeEntry, Array_InternalArray__IReadOnlyList_get_Item_596, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D188E8, Array_InternalArray__IReadOnlyList_get_Item_596__MethodInfo); DO_APP_FUNC(0x00F75FB0, BBTree_BBTreeBox, Array_InternalArray__IReadOnlyList_get_Item_597, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D188E0, Array_InternalArray__IReadOnlyList_get_Item_597__MethodInfo); DO_APP_FUNC(0x00F76070, BaseStyleMatcher_MatchContext, Array_InternalArray__IReadOnlyList_get_Item_598, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18898, Array_InternalArray__IReadOnlyList_get_Item_598__MethodInfo); DO_APP_FUNC(0x00F76120, BeforeRenderHelper_OrderBlock, Array_InternalArray__IReadOnlyList_get_Item_599, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18890, Array_InternalArray__IReadOnlyList_get_Item_599__MethodInfo); DO_APP_FUNC(0x00F761E0, BehaviourPuppet_CollisionResistanceMultiplier, Array_InternalArray__IReadOnlyList_get_Item_600, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18888, Array_InternalArray__IReadOnlyList_get_Item_600__MethodInfo); DO_APP_FUNC(0x00F762A0, BehaviourPuppet_MusclePropsGroup, Array_InternalArray__IReadOnlyList_get_Item_601, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18880, Array_InternalArray__IReadOnlyList_get_Item_601__MethodInfo); DO_APP_FUNC(0x00F76370, BinaryHeap_Tuple, Array_InternalArray__IReadOnlyList_get_Item_602, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D188B8, Array_InternalArray__IReadOnlyList_get_Item_602__MethodInfo); DO_APP_FUNC(0x00F76430, BitmapAllocator32_Page, Array_InternalArray__IReadOnlyList_get_Item_603, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D188B0, Array_InternalArray__IReadOnlyList_get_Item_603__MethodInfo); DO_APP_FUNC(0x00F764E0, BloomRenderer_Level, Array_InternalArray__IReadOnlyList_get_Item_604, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D188A8, Array_InternalArray__IReadOnlyList_get_Item_604__MethodInfo); DO_APP_FUNC(0x00F76590, BoltConsole_Line, Array_InternalArray__IReadOnlyList_get_Item_605, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D188A0, Array_InternalArray__IReadOnlyList_get_Item_605__MethodInfo); DO_APP_FUNC(0x00F76650, BoltProtocolTokenRegistry_TokenRegistry, Array_InternalArray__IReadOnlyList_get_Item_606, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18858, Array_InternalArray__IReadOnlyList_get_Item_606__MethodInfo); DO_APP_FUNC(0x00F76710, CalendricalCalculationsHelper_EphemerisCorrectionAlgorithmMap, Array_InternalArray__IReadOnlyList_get_Item_607, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18850, Array_InternalArray__IReadOnlyList_get_Item_607__MethodInfo); DO_APP_FUNC(0x00F767C0, Camera_RenderRequest, Array_InternalArray__IReadOnlyList_get_Item_608, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18848, Array_InternalArray__IReadOnlyList_get_Item_608__MethodInfo); DO_APP_FUNC(0x00F76880, CameraState_CustomBlendable, Array_InternalArray__IReadOnlyList_get_Item_609, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18840, Array_InternalArray__IReadOnlyList_get_Item_609__MethodInfo); DO_APP_FUNC(0x00F76940, CharacterFootEffects_Foot, Array_InternalArray__IReadOnlyList_get_Item_610, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18878, Array_InternalArray__IReadOnlyList_get_Item_610__MethodInfo); DO_APP_FUNC(0x00F76A00, CinemachineBlendListCamera_Instruction, Array_InternalArray__IReadOnlyList_get_Item_611, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18870, Array_InternalArray__IReadOnlyList_get_Item_611__MethodInfo); DO_APP_FUNC(0x00F76AC0, CinemachineBlenderSettings_CustomBlend, Array_InternalArray__IReadOnlyList_get_Item_612, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18868, Array_InternalArray__IReadOnlyList_get_Item_612__MethodInfo); DO_APP_FUNC(0x00F76B80, CinemachineClearShot_Pair, Array_InternalArray__IReadOnlyList_get_Item_613, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18860, Array_InternalArray__IReadOnlyList_get_Item_613__MethodInfo); DO_APP_FUNC(0x00F76C30, CinemachineFreeLook_Orbit, Array_InternalArray__IReadOnlyList_get_Item_614, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18818, Array_InternalArray__IReadOnlyList_get_Item_614__MethodInfo); DO_APP_FUNC(0x00F76CE0, CinemachinePath_Waypoint, Array_InternalArray__IReadOnlyList_get_Item_615, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18810, Array_InternalArray__IReadOnlyList_get_Item_615__MethodInfo); DO_APP_FUNC(0x00F76DA0, CinemachineSmoothPath_Waypoint, Array_InternalArray__IReadOnlyList_get_Item_616, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18808, Array_InternalArray__IReadOnlyList_get_Item_616__MethodInfo); DO_APP_FUNC(0x00F76E60, CinemachineStateDrivenCamera_HashPair, Array_InternalArray__IReadOnlyList_get_Item_617, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18800, Array_InternalArray__IReadOnlyList_get_Item_617__MethodInfo); DO_APP_FUNC(0x00F76F10, CinemachineStateDrivenCamera_Instruction, Array_InternalArray__IReadOnlyList_get_Item_618, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18838, Array_InternalArray__IReadOnlyList_get_Item_618__MethodInfo); DO_APP_FUNC(0x00F76FD0, CinemachineStateDrivenCamera_ParentHash, Array_InternalArray__IReadOnlyList_get_Item_619, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18830, Array_InternalArray__IReadOnlyList_get_Item_619__MethodInfo); DO_APP_FUNC(0x00F77080, CinemachineTargetGroup_Target, Array_InternalArray__IReadOnlyList_get_Item_620, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18828, Array_InternalArray__IReadOnlyList_get_Item_620__MethodInfo); DO_APP_FUNC(0x00F77140, ClipperLib_DoublePoint, Array_InternalArray__IReadOnlyList_get_Item_621, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18820, Array_InternalArray__IReadOnlyList_get_Item_621__MethodInfo); DO_APP_FUNC(0x00F77200, ClipperLib_IntPoint, Array_InternalArray__IReadOnlyList_get_Item_622, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D187D8, Array_InternalArray__IReadOnlyList_get_Item_622__MethodInfo); DO_APP_FUNC(0x00F772C0, CodePointIndexer_TableRange, Array_InternalArray__IReadOnlyList_get_Item_623, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D187D0, Array_InternalArray__IReadOnlyList_get_Item_623__MethodInfo); DO_APP_FUNC(0x00F77380, ComboTimeout_ComboInputElement, Array_InternalArray__IReadOnlyList_get_Item_624, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D187C8, Array_InternalArray__IReadOnlyList_get_Item_624__MethodInfo); DO_APP_FUNC(0x00F77440, ConfinerOven_PolygonSolution, Array_InternalArray__IReadOnlyList_get_Item_625, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D187C0, Array_InternalArray__IReadOnlyList_get_Item_625__MethodInfo); DO_APP_FUNC(0x00F77500, ContentCatalogData_Bucket, Array_InternalArray__IReadOnlyList_get_Item_626, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D187F8, Array_InternalArray__IReadOnlyList_get_Item_626__MethodInfo); DO_APP_FUNC(0x00F775C0, ContextFlagsAdapterPal_ContextFlagMapping, Array_InternalArray__IReadOnlyList_get_Item_627, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D187F0, Array_InternalArray__IReadOnlyList_get_Item_627__MethodInfo); DO_APP_FUNC(0x00F77670, CookieTokenizer_RecognizedAttribute, Array_InternalArray__IReadOnlyList_get_Item_628, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D187E8, Array_InternalArray__IReadOnlyList_get_Item_628__MethodInfo); DO_APP_FUNC(0x00F77730, CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB, Array_InternalArray__IReadOnlyList_get_Item_629, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D187E0, Array_InternalArray__IReadOnlyList_get_Item_629__MethodInfo); DO_APP_FUNC(0x00F777F0, DamageIndicatorMonitor_DamageIndicator, Array_InternalArray__IReadOnlyList_get_Item_630, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18798, Array_InternalArray__IReadOnlyList_get_Item_630__MethodInfo); DO_APP_FUNC(0x00F778C0, DelayedActionManager_DelegateInfo, Array_InternalArray__IReadOnlyList_get_Item_631, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18790, Array_InternalArray__IReadOnlyList_get_Item_631__MethodInfo); DO_APP_FUNC(0x00F77980, DynamicResolutionHandler_ScalerContainer, Array_InternalArray__IReadOnlyList_get_Item_632, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18788, Array_InternalArray__IReadOnlyList_get_Item_632__MethodInfo); DO_APP_FUNC(0x00F77A40, EventDispatcher_CallbackWrapper, Array_InternalArray__IReadOnlyList_get_Item_633, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18780, Array_InternalArray__IReadOnlyList_get_Item_633__MethodInfo); DO_APP_FUNC(0x00F77B00, EventDispatcher_EventListener, Array_InternalArray__IReadOnlyList_get_Item_634, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D187B8, Array_InternalArray__IReadOnlyList_get_Item_634__MethodInfo); DO_APP_FUNC(0x00F77BC0, EventDispatcher_DispatchContext, Array_InternalArray__IReadOnlyList_get_Item_635, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D187B0, Array_InternalArray__IReadOnlyList_get_Item_635__MethodInfo); DO_APP_FUNC(0x00F77C80, EventDispatcher_EventRecord, Array_InternalArray__IReadOnlyList_get_Item_636, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D187A8, Array_InternalArray__IReadOnlyList_get_Item_636__MethodInfo); DO_APP_FUNC(0x00F77D40, EventQueue_NetworkEvent, Array_InternalArray__IReadOnlyList_get_Item_637, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D187A0, Array_InternalArray__IReadOnlyList_get_Item_637__MethodInfo); DO_APP_FUNC(0x00F77E20, EventReliableRecvBuffer_Node, Array_InternalArray__IReadOnlyList_get_Item_638, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18758, Array_InternalArray__IReadOnlyList_get_Item_638__MethodInfo); DO_APP_FUNC(0x00F77EE0, EventReliableSendBuffer_Node, Array_InternalArray__IReadOnlyList_get_Item_639, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18750, Array_InternalArray__IReadOnlyList_get_Item_639__MethodInfo); DO_APP_FUNC(0x00F77FA0, FocusController_FocusedElement, Array_InternalArray__IReadOnlyList_get_Item_640, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18748, Array_InternalArray__IReadOnlyList_get_Item_640__MethodInfo); DO_APP_FUNC(0x00F78060, Funnel_PathPart, Array_InternalArray__IReadOnlyList_get_Item_641, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18740, Array_InternalArray__IReadOnlyList_get_Item_641__MethodInfo); DO_APP_FUNC(0x00F78120, GraphUpdateProcessor_GUOSingle, Array_InternalArray__IReadOnlyList_get_Item_642, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18778, Array_InternalArray__IReadOnlyList_get_Item_642__MethodInfo); DO_APP_FUNC(0x00F781E0, HID_HIDCollectionDescriptor, Array_InternalArray__IReadOnlyList_get_Item_643, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18770, Array_InternalArray__IReadOnlyList_get_Item_643__MethodInfo); DO_APP_FUNC(0x00F782A0, HID_HIDElementDescriptor, Array_InternalArray__IReadOnlyList_get_Item_644, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18768, Array_InternalArray__IReadOnlyList_get_Item_644__MethodInfo); DO_APP_FUNC(0x00F78370, HIDParser_HIDReportData, Array_InternalArray__IReadOnlyList_get_Item_645, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18760, Array_InternalArray__IReadOnlyList_get_Item_645__MethodInfo); DO_APP_FUNC(0x00F78430, HIDSupport_HIDPageUsage, Array_InternalArray__IReadOnlyList_get_Item_646, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18718, Array_InternalArray__IReadOnlyList_get_Item_646__MethodInfo); DO_APP_FUNC(0x00F784E0, HIDTouchpad_TouchData, Array_InternalArray__IReadOnlyList_get_Item_647, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18710, Array_InternalArray__IReadOnlyList_get_Item_647__MethodInfo); DO_APP_FUNC(0x00F785A0, HairDesignerColliderBase_DualSphere, Array_InternalArray__IReadOnlyList_get_Item_648, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18708, Array_InternalArray__IReadOnlyList_get_Item_648__MethodInfo); DO_APP_FUNC(0x00F78660, HairDesignerGeneratorAdvancedFurBase_DualSphereCollider, Array_InternalArray__IReadOnlyList_get_Item_649, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18700, Array_InternalArray__IReadOnlyList_get_Item_649__MethodInfo); DO_APP_FUNC(0x00F78720, HairDesignerGeneratorAdvancedFurBase_SkinData, Array_InternalArray__IReadOnlyList_get_Item_650, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18738, Array_InternalArray__IReadOnlyList_get_Item_650__MethodInfo); DO_APP_FUNC(0x00F787E0, HairDesignerGeneratorFurShellBase_BufferData, Array_InternalArray__IReadOnlyList_get_Item_651, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18730, Array_InternalArray__IReadOnlyList_get_Item_651__MethodInfo); DO_APP_FUNC(0x00F78890, HairDesignerGeneratorFurShellBase_SkinData, Array_InternalArray__IReadOnlyList_get_Item_652, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18728, Array_InternalArray__IReadOnlyList_get_Item_652__MethodInfo); DO_APP_FUNC(0x00F78950, Hammersley_Hammersley2dSeq16, Array_InternalArray__IReadOnlyList_get_Item_653, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18720, Array_InternalArray__IReadOnlyList_get_Item_653__MethodInfo); DO_APP_FUNC(0x00F78A10, Hammersley_Hammersley2dSeq256, Array_InternalArray__IReadOnlyList_get_Item_654, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D186D8, Array_InternalArray__IReadOnlyList_get_Item_654__MethodInfo); DO_APP_FUNC(0x00F78B10, Hammersley_Hammersley2dSeq32, Array_InternalArray__IReadOnlyList_get_Item_655, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D186D0, Array_InternalArray__IReadOnlyList_get_Item_655__MethodInfo); DO_APP_FUNC(0x00F78BD0, Hammersley_Hammersley2dSeq64, Array_InternalArray__IReadOnlyList_get_Item_656, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D186C8, Array_InternalArray__IReadOnlyList_get_Item_656__MethodInfo); DO_APP_FUNC(0x00F78C90, Hashtable_bucket, Array_InternalArray__IReadOnlyList_get_Item_657, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D186C0, Array_InternalArray__IReadOnlyList_get_Item_657__MethodInfo); DO_APP_FUNC(0x00F78D50, HeadingTracker_Item, Array_InternalArray__IReadOnlyList_get_Item_658, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D186F8, Array_InternalArray__IReadOnlyList_get_Item_658__MethodInfo); DO_APP_FUNC(0x00F78E10, HealthFlashMonitor_Flash, Array_InternalArray__IReadOnlyList_get_Item_659, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D186F0, Array_InternalArray__IReadOnlyList_get_Item_659__MethodInfo); DO_APP_FUNC(0x00F78ED0, HebrewNumber_HebrewValue, Array_InternalArray__IReadOnlyList_get_Item_660, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D186E8, Array_InternalArray__IReadOnlyList_get_Item_660__MethodInfo); DO_APP_FUNC(0x00F78F80, InputActionMap_BindingJson, Array_InternalArray__IReadOnlyList_get_Item_661, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D186E0, Array_InternalArray__IReadOnlyList_get_Item_661__MethodInfo); DO_APP_FUNC(0x00F79040, InputActionMap_BindingOverrideJson, Array_InternalArray__IReadOnlyList_get_Item_662, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18698, Array_InternalArray__IReadOnlyList_get_Item_662__MethodInfo); DO_APP_FUNC(0x00F79100, InputActionMap_ReadActionJson, Array_InternalArray__IReadOnlyList_get_Item_663, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18690, Array_InternalArray__IReadOnlyList_get_Item_663__MethodInfo); DO_APP_FUNC(0x00F791D0, InputActionMap_ReadMapJson, Array_InternalArray__IReadOnlyList_get_Item_664, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18688, Array_InternalArray__IReadOnlyList_get_Item_664__MethodInfo); DO_APP_FUNC(0x00F79290, InputActionMap_WriteActionJson, Array_InternalArray__IReadOnlyList_get_Item_665, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18680, Array_InternalArray__IReadOnlyList_get_Item_665__MethodInfo); DO_APP_FUNC(0x00F79360, InputActionMap_WriteMapJson, Array_InternalArray__IReadOnlyList_get_Item_666, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D186B8, Array_InternalArray__IReadOnlyList_get_Item_666__MethodInfo); DO_APP_FUNC(0x00F79420, InputActionRebindingExtensions_Parameter, Array_InternalArray__IReadOnlyList_get_Item_667, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D186B0, Array_InternalArray__IReadOnlyList_get_Item_667__MethodInfo); DO_APP_FUNC(0x00F794E0, InputActionRebindingExtensions_ParameterOverride, Array_InternalArray__IReadOnlyList_get_Item_668, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D186A8, Array_InternalArray__IReadOnlyList_get_Item_668__MethodInfo); DO_APP_FUNC(0x00F795C0, InputActionTrace_ActionEventPtr, Array_InternalArray__IReadOnlyList_get_Item_669, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D186A0, Array_InternalArray__IReadOnlyList_get_Item_669__MethodInfo); DO_APP_FUNC(0x00F79680, InputBindingCompositeContext_PartBinding, Array_InternalArray__IReadOnlyList_get_Item_670, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18658, Array_InternalArray__IReadOnlyList_get_Item_670__MethodInfo); DO_APP_FUNC(0x00F79740, InputControlLayout_ControlItem, Array_InternalArray__IReadOnlyList_get_Item_671, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18650, Array_InternalArray__IReadOnlyList_get_Item_671__MethodInfo); DO_APP_FUNC(0x00F79800, InputControlPath_ParsedPathComponent, Array_InternalArray__IReadOnlyList_get_Item_672, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18648, Array_InternalArray__IReadOnlyList_get_Item_672__MethodInfo); DO_APP_FUNC(0x00F798D0, InputControlScheme_DeviceRequirement, Array_InternalArray__IReadOnlyList_get_Item_673, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18640, Array_InternalArray__IReadOnlyList_get_Item_673__MethodInfo); DO_APP_FUNC(0x00F79990, InputControlScheme_SchemeJson, Array_InternalArray__IReadOnlyList_get_Item_674, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18678, Array_InternalArray__IReadOnlyList_get_Item_674__MethodInfo); DO_APP_FUNC(0x00F79A50, InputDevice_ControlBitRangeNode, Array_InternalArray__IReadOnlyList_get_Item_675, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18670, Array_InternalArray__IReadOnlyList_get_Item_675__MethodInfo); DO_APP_FUNC(0x00F79B10, InputEventTrace_DeviceInfo, Array_InternalArray__IReadOnlyList_get_Item_676, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18668, Array_InternalArray__IReadOnlyList_get_Item_676__MethodInfo); DO_APP_FUNC(0x00F79BD0, InputManager_AvailableDevice, Array_InternalArray__IReadOnlyList_get_Item_677, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18660, Array_InternalArray__IReadOnlyList_get_Item_677__MethodInfo); DO_APP_FUNC(0x00F79C90, InputManager_StateChangeMonitorListener, Array_InternalArray__IReadOnlyList_get_Item_678, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18618, Array_InternalArray__IReadOnlyList_get_Item_678__MethodInfo); DO_APP_FUNC(0x00F79D50, InputManager_StateChangeMonitorTimeout, Array_InternalArray__IReadOnlyList_get_Item_679, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18610, Array_InternalArray__IReadOnlyList_get_Item_679__MethodInfo); DO_APP_FUNC(0x00F79E10, InputManager_StateChangeMonitorsForDevice, Array_InternalArray__IReadOnlyList_get_Item_680, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18608, Array_InternalArray__IReadOnlyList_get_Item_680__MethodInfo); DO_APP_FUNC(0x00F79EE0, InputRemoting_RemoteInputDevice, Array_InternalArray__IReadOnlyList_get_Item_681, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18600, Array_InternalArray__IReadOnlyList_get_Item_681__MethodInfo); DO_APP_FUNC(0x00F79FA0, InputRemoting_RemoteSender, Array_InternalArray__IReadOnlyList_get_Item_682, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18638, Array_InternalArray__IReadOnlyList_get_Item_682__MethodInfo); DO_APP_FUNC(0x00F7A060, InputStateHistory_Record, Array_InternalArray__IReadOnlyList_get_Item_683, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18630, Array_InternalArray__IReadOnlyList_get_Item_683__MethodInfo); DO_APP_FUNC(0x00F7A120, InputSystemUIInputModule_InputActionReferenceState, Array_InternalArray__IReadOnlyList_get_Item_684, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18628, Array_InternalArray__IReadOnlyList_get_Item_684__MethodInfo); DO_APP_FUNC(0x00F7A1D0, InputUser_OngoingAccountSelection, Array_InternalArray__IReadOnlyList_get_Item_685, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18620, Array_InternalArray__IReadOnlyList_get_Item_685__MethodInfo); DO_APP_FUNC(0x00F7A290, InputUser_UserData, Array_InternalArray__IReadOnlyList_get_Item_686, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D185D8, Array_InternalArray__IReadOnlyList_get_Item_686__MethodInfo); DO_APP_FUNC(0x00F7A350, InternalTreeView_TreeViewItemWrapper, Array_InternalArray__IReadOnlyList_get_Item_687, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D185D0, Array_InternalArray__IReadOnlyList_get_Item_687__MethodInfo); DO_APP_FUNC(0x00F7A410, JSONDeserialization_TaskField, Array_InternalArray__IReadOnlyList_get_Item_688, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D185C8, Array_InternalArray__IReadOnlyList_get_Item_688__MethodInfo); DO_APP_FUNC(0x00F7A4D0, JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV, Array_InternalArray__IReadOnlyList_get_Item_689, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D185C0, Array_InternalArray__IReadOnlyList_get_Item_689__MethodInfo); DO_APP_FUNC(0x00F7A590, JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb, Array_InternalArray__IReadOnlyList_get_Item_690, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D185F8, Array_InternalArray__IReadOnlyList_get_Item_690__MethodInfo); DO_APP_FUNC(0x00F7A660, JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux, Array_InternalArray__IReadOnlyList_get_Item_691, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D185F0, Array_InternalArray__IReadOnlyList_get_Item_691__MethodInfo); DO_APP_FUNC(0x00F7A720, JsonParser_JsonValue, Array_InternalArray__IReadOnlyList_get_Item_692, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D185E8, Array_InternalArray__IReadOnlyList_get_Item_692__MethodInfo); DO_APP_FUNC(0x00F7A7F0, LayerGridGraph_HeightSample, Array_InternalArray__IReadOnlyList_get_Item_693, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D185E0, Array_InternalArray__IReadOnlyList_get_Item_693__MethodInfo); DO_APP_FUNC(0x00F7A8B0, Logs_LogMessage_1, Array_InternalArray__IReadOnlyList_get_Item_694, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18598, Array_InternalArray__IReadOnlyList_get_Item_694__MethodInfo); DO_APP_FUNC(0x00F7A970, Logs_LogMessage, Array_InternalArray__IReadOnlyList_get_Item_695, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18590, Array_InternalArray__IReadOnlyList_get_Item_695__MethodInfo); DO_APP_FUNC(0x00F7AA30, MagicLightProbes_VolumeParameters, Array_InternalArray__IReadOnlyList_get_Item_696, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18588, Array_InternalArray__IReadOnlyList_get_Item_696__MethodInfo); DO_APP_FUNC(0x00F7AAF0, MailHeaderInfo_HeaderInfo, Array_InternalArray__IReadOnlyList_get_Item_697, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18580, Array_InternalArray__IReadOnlyList_get_Item_697__MethodInfo); DO_APP_FUNC(0x00F7ABB0, MemberRelationshipService_RelationshipEntry, Array_InternalArray__IReadOnlyList_get_Item_698, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D185B8, Array_InternalArray__IReadOnlyList_get_Item_698__MethodInfo); DO_APP_FUNC(0x00F7AC70, MemoryHelpers_BitRegion, Array_InternalArray__IReadOnlyList_get_Item_699, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D185B0, Array_InternalArray__IReadOnlyList_get_Item_699__MethodInfo); DO_APP_FUNC(0x00F7AD20, MotionSolver_GPUNodeData, Array_InternalArray__IReadOnlyList_get_Item_700, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D185A8, Array_InternalArray__IReadOnlyList_get_Item_700__MethodInfo); DO_APP_FUNC(0x00F7ADE0, MotionSolver_GPUNodeInfo, Array_InternalArray__IReadOnlyList_get_Item_701, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D185A0, Array_InternalArray__IReadOnlyList_get_Item_701__MethodInfo); DO_APP_FUNC(0x00F7AEA0, MotionSolver_GPURootTransform, Array_InternalArray__IReadOnlyList_get_Item_702, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18558, Array_InternalArray__IReadOnlyList_get_Item_702__MethodInfo); DO_APP_FUNC(0x00F7AF80, MovingPlatform_Waypoint, Array_InternalArray__IReadOnlyList_get_Item_703, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18550, Array_InternalArray__IReadOnlyList_get_Item_703__MethodInfo); DO_APP_FUNC(0x00F7B040, NightmareStyling_WallMaterial, Array_InternalArray__IReadOnlyList_get_Item_704, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18548, Array_InternalArray__IReadOnlyList_get_Item_704__MethodInfo); DO_APP_FUNC(0x00F7B100, NoiseSettings_TransformNoiseParams, Array_InternalArray__IReadOnlyList_get_Item_705, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18540, Array_InternalArray__IReadOnlyList_get_Item_705__MethodInfo); DO_APP_FUNC(0x00F7B1C0, NolanBehaviour_OverlappedCollider, Array_InternalArray__IReadOnlyList_get_Item_706, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18578, Array_InternalArray__IReadOnlyList_get_Item_706__MethodInfo); DO_APP_FUNC(0x00F7B280, ObjectPoolBase_PreloadedPrefab, Array_InternalArray__IReadOnlyList_get_Item_707, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18570, Array_InternalArray__IReadOnlyList_get_Item_707__MethodInfo); DO_APP_FUNC(0x00F7B340, OnScreenControl_OnScreenDeviceInfo, Array_InternalArray__IReadOnlyList_get_Item_708, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18568, Array_InternalArray__IReadOnlyList_get_Item_708__MethodInfo); DO_APP_FUNC(0x00F7B400, OpenXRInput_SerializedBinding, Array_InternalArray__IReadOnlyList_get_Item_709, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18560, Array_InternalArray__IReadOnlyList_get_Item_709__MethodInfo); DO_APP_FUNC(0x00F7B4C0, PackedPlayModeBuildLogs_RuntimeBuildLog, Array_InternalArray__IReadOnlyList_get_Item_710, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18518, Array_InternalArray__IReadOnlyList_get_Item_710__MethodInfo); DO_APP_FUNC(0x00F7B580, ParameterizedStrings_FormatParam, Array_InternalArray__IReadOnlyList_get_Item_711, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18510, Array_InternalArray__IReadOnlyList_get_Item_711__MethodInfo); DO_APP_FUNC(0x00F7B640, ParticleSystem_Particle, Array_InternalArray__IReadOnlyList_get_Item_712, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18508, Array_InternalArray__IReadOnlyList_get_Item_712__MethodInfo); DO_APP_FUNC(0x00F7B720, PlayerStatsController_Category, Array_InternalArray__IReadOnlyList_get_Item_713, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18500, Array_InternalArray__IReadOnlyList_get_Item_713__MethodInfo); DO_APP_FUNC(0x00F7B7E0, PointKDTree_Node, Array_InternalArray__IReadOnlyList_get_Item_714, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18538, Array_InternalArray__IReadOnlyList_get_Item_714__MethodInfo); DO_APP_FUNC(0x00F7B8A0, PointerDeviceState_PointerLocation, Array_InternalArray__IReadOnlyList_get_Item_715, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18530, Array_InternalArray__IReadOnlyList_get_Item_715__MethodInfo); DO_APP_FUNC(0x00F7B960, ProbeBrickIndex_Brick, Array_InternalArray__IReadOnlyList_get_Item_716, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18528, Array_InternalArray__IReadOnlyList_get_Item_716__MethodInfo); DO_APP_FUNC(0x00F7BA20, ProbeBrickIndex_BrickMeta, Array_InternalArray__IReadOnlyList_get_Item_717, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18520, Array_InternalArray__IReadOnlyList_get_Item_717__MethodInfo); DO_APP_FUNC(0x00F7BAE0, ProbeBrickIndex_CellIndexUpdateInfo, Array_InternalArray__IReadOnlyList_get_Item_718, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D184D8, Array_InternalArray__IReadOnlyList_get_Item_718__MethodInfo); DO_APP_FUNC(0x00F7BBA0, ProbeBrickIndex_ReservedBrick, Array_InternalArray__IReadOnlyList_get_Item_719, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D184D0, Array_InternalArray__IReadOnlyList_get_Item_719__MethodInfo); DO_APP_FUNC(0x00F7BC60, ProbeBrickIndex_VoxelMeta, Array_InternalArray__IReadOnlyList_get_Item_720, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D184C8, Array_InternalArray__IReadOnlyList_get_Item_720__MethodInfo); DO_APP_FUNC(0x00F7BD20, ProbeBrickPool_BrickChunkAlloc, Array_InternalArray__IReadOnlyList_get_Item_721, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D184C0, Array_InternalArray__IReadOnlyList_get_Item_721__MethodInfo); DO_APP_FUNC(0x00F7BDE0, ProbeReferenceVolume_RegId, Array_InternalArray__IReadOnlyList_get_Item_722, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D184F8, Array_InternalArray__IReadOnlyList_get_Item_722__MethodInfo); DO_APP_FUNC(0x00F7BE90, ProbeReferenceVolume_Volume, Array_InternalArray__IReadOnlyList_get_Item_723, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D184F0, Array_InternalArray__IReadOnlyList_get_Item_723__MethodInfo); DO_APP_FUNC(0x00F7BF60, ProbeVolumePerSceneData_SerializableAssetItem, Array_InternalArray__IReadOnlyList_get_Item_724, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D184E8, Array_InternalArray__IReadOnlyList_get_Item_724__MethodInfo); DO_APP_FUNC(0x00F7C020, ProbeVolumeSceneData_SerializableBoundItem, Array_InternalArray__IReadOnlyList_get_Item_725, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D184E0, Array_InternalArray__IReadOnlyList_get_Item_725__MethodInfo); DO_APP_FUNC(0x00F7C0E0, ProbeVolumeSceneData_SerializableHasPVItem, Array_InternalArray__IReadOnlyList_get_Item_726, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18498, Array_InternalArray__IReadOnlyList_get_Item_726__MethodInfo); DO_APP_FUNC(0x00F7C1A0, ProbeVolumeSceneData_SerializablePVBakeSettings, Array_InternalArray__IReadOnlyList_get_Item_727, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18490, Array_InternalArray__IReadOnlyList_get_Item_727__MethodInfo); DO_APP_FUNC(0x00F7C260, ProbeVolumeSceneData_SerializablePVProfile, Array_InternalArray__IReadOnlyList_get_Item_728, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18488, Array_InternalArray__IReadOnlyList_get_Item_728__MethodInfo); DO_APP_FUNC(0x00F7C320, ProtocolClient_AckCallback, Array_InternalArray__IReadOnlyList_get_Item_729, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18480, Array_InternalArray__IReadOnlyList_get_Item_729__MethodInfo); DO_APP_FUNC(0x00F7C3E0, ProtocolClient_MsgHandler, Array_InternalArray__IReadOnlyList_get_Item_730, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D184B8, Array_InternalArray__IReadOnlyList_get_Item_730__MethodInfo); DO_APP_FUNC(0x00F7C4A0, RVOQuadtree_Node, Array_InternalArray__IReadOnlyList_get_Item_731, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D184B0, Array_InternalArray__IReadOnlyList_get_Item_731__MethodInfo); DO_APP_FUNC(0x00F7C560, Regex_CachedCodeEntryKey, Array_InternalArray__IReadOnlyList_get_Item_732, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D184A8, Array_InternalArray__IReadOnlyList_get_Item_732__MethodInfo); DO_APP_FUNC(0x00F7C620, RegexCharClass_LowerCaseMapping, Array_InternalArray__IReadOnlyList_get_Item_733, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D184A0, Array_InternalArray__IReadOnlyList_get_Item_733__MethodInfo); DO_APP_FUNC(0x00F7C6E0, RegexCharClass_SingleRange, Array_InternalArray__IReadOnlyList_get_Item_734, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18458, Array_InternalArray__IReadOnlyList_get_Item_734__MethodInfo); DO_APP_FUNC(0x00F7C790, RenderChain_RenderNodeData, Array_InternalArray__IReadOnlyList_get_Item_735, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18450, Array_InternalArray__IReadOnlyList_get_Item_735__MethodInfo); DO_APP_FUNC(0x00F7C860, RenderGraph_CompiledPassInfo, Array_InternalArray__IReadOnlyList_get_Item_736, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18448, Array_InternalArray__IReadOnlyList_get_Item_736__MethodInfo); DO_APP_FUNC(0x00F7C930, RenderGraph_CompiledResourceInfo, Array_InternalArray__IReadOnlyList_get_Item_737, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18440, Array_InternalArray__IReadOnlyList_get_Item_737__MethodInfo); DO_APP_FUNC(0x00F7C9F0, RenderGraphDebugData_PassDebugData, Array_InternalArray__IReadOnlyList_get_Item_738, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18478, Array_InternalArray__IReadOnlyList_get_Item_738__MethodInfo); DO_APP_FUNC(0x00F7CAB0, RenderGraphDebugData_ResourceDebugData, Array_InternalArray__IReadOnlyList_get_Item_739, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18470, Array_InternalArray__IReadOnlyList_get_Item_739__MethodInfo); DO_APP_FUNC(0x00F7CB70, ResourceManager_DeferredCallbackRegisterRequest, Array_InternalArray__IReadOnlyList_get_Item_740, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18468, Array_InternalArray__IReadOnlyList_get_Item_740__MethodInfo); DO_APP_FUNC(0x00F7CC30, RetainedGizmos_MeshWithHash, Array_InternalArray__IReadOnlyList_get_Item_741, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18460, Array_InternalArray__IReadOnlyList_get_Item_741__MethodInfo); DO_APP_FUNC(0x00F7CCF0, SendMouseEvents_HitInfo, Array_InternalArray__IReadOnlyList_get_Item_742, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18418, Array_InternalArray__IReadOnlyList_get_Item_742__MethodInfo); DO_APP_FUNC(0x00F7CDB0, SequenceNode_SequenceConstructPosContext, Array_InternalArray__IReadOnlyList_get_Item_743, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18410, Array_InternalArray__IReadOnlyList_get_Item_743__MethodInfo); DO_APP_FUNC(0x00F7CE70, SerializedObject_Field, Array_InternalArray__IReadOnlyList_get_Item_744, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18408, Array_InternalArray__IReadOnlyList_get_Item_744__MethodInfo); DO_APP_FUNC(0x00F7CF30, SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo, Array_InternalArray__IReadOnlyList_get_Item_745, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18400, Array_InternalArray__IReadOnlyList_get_Item_745__MethodInfo); DO_APP_FUNC(0x00F7CFF0, SlotEquip_ItemDefinitionStateName, Array_InternalArray__IReadOnlyList_get_Item_746, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18438, Array_InternalArray__IReadOnlyList_get_Item_746__MethodInfo); DO_APP_FUNC(0x00F7D0B0, Socket_WSABUF, Array_InternalArray__IReadOnlyList_get_Item_747, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18430, Array_InternalArray__IReadOnlyList_get_Item_747__MethodInfo); DO_APP_FUNC(0x00F7D170, StyleComplexSelector_PseudoStateData, Array_InternalArray__IReadOnlyList_get_Item_748, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18428, Array_InternalArray__IReadOnlyList_get_Item_748__MethodInfo); DO_APP_FUNC(0x00F7D220, StylePropertyAnimationSystem_ElementPropertyPair, Array_InternalArray__IReadOnlyList_get_Item_749, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18420, Array_InternalArray__IReadOnlyList_get_Item_749__MethodInfo); DO_APP_FUNC(0x00F7D2E0, StyleSheet_ImportStruct, Array_InternalArray__IReadOnlyList_get_Item_750, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D183D8, Array_InternalArray__IReadOnlyList_get_Item_750__MethodInfo); DO_APP_FUNC(0x00F7D3A0, StyleSheetCache_SheetHandleKey, Array_InternalArray__IReadOnlyList_get_Item_751, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D183D0, Array_InternalArray__IReadOnlyList_get_Item_751__MethodInfo); DO_APP_FUNC(0x00F7D450, StyleVariableResolver_ResolveContext, Array_InternalArray__IReadOnlyList_get_Item_752, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D183C8, Array_InternalArray__IReadOnlyList_get_Item_752__MethodInfo); DO_APP_FUNC(0x00F7D510, TMP_Text_UnicodeChar, Array_InternalArray__IReadOnlyList_get_Item_753, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D183C0, Array_InternalArray__IReadOnlyList_get_Item_753__MethodInfo); DO_APP_FUNC(0x00F7D5D0, TemplateAsset_AttributeOverride, Array_InternalArray__IReadOnlyList_get_Item_754, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D183F8, Array_InternalArray__IReadOnlyList_get_Item_754__MethodInfo); DO_APP_FUNC(0x00F7D690, TextPic_IconName, Array_InternalArray__IReadOnlyList_get_Item_755, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D183F0, Array_InternalArray__IReadOnlyList_get_Item_755__MethodInfo); DO_APP_FUNC(0x00F7D750, TextResourceManager_FontAssetRef, Array_InternalArray__IReadOnlyList_get_Item_756, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D183E8, Array_InternalArray__IReadOnlyList_get_Item_756__MethodInfo); DO_APP_FUNC(0x00F7D810, TextSettings_FontReferenceMap, Array_InternalArray__IReadOnlyList_get_Item_757, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D183E0, Array_InternalArray__IReadOnlyList_get_Item_757__MethodInfo); DO_APP_FUNC(0x00F7D8D0, TextureBlitter_BlitInfo, Array_InternalArray__IReadOnlyList_get_Item_758, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18398, Array_InternalArray__IReadOnlyList_get_Item_758__MethodInfo); DO_APP_FUNC(0x00F7D9A0, TexturePacker_JsonArray_Frame, Array_InternalArray__IReadOnlyList_get_Item_759, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18390, Array_InternalArray__IReadOnlyList_get_Item_759__MethodInfo); DO_APP_FUNC(0x00F7DA60, TextureRegistry_TextureInfo, Array_InternalArray__IReadOnlyList_get_Item_760, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18388, Array_InternalArray__IReadOnlyList_get_Item_760__MethodInfo); DO_APP_FUNC(0x00F7DB20, TimeNotificationBehaviour_NotificationEntry, Array_InternalArray__IReadOnlyList_get_Item_761, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18380, Array_InternalArray__IReadOnlyList_get_Item_761__MethodInfo); DO_APP_FUNC(0x00F7DBE0, TrackedDeviceRaycaster_RaycastHitData, Array_InternalArray__IReadOnlyList_get_Item_762, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D183B8, Array_InternalArray__IReadOnlyList_get_Item_762__MethodInfo); DO_APP_FUNC(0x00F7DCA0, TrackedPoseDriverDataDescription_PoseData, Array_InternalArray__IReadOnlyList_get_Item_763, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D183B0, Array_InternalArray__IReadOnlyList_get_Item_763__MethodInfo); DO_APP_FUNC(0x00F7DD60, TreeView_TreeViewItemWrapper, Array_InternalArray__IReadOnlyList_get_Item_764, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D183A8, Array_InternalArray__IReadOnlyList_get_Item_764__MethodInfo); DO_APP_FUNC(0x00F7DE20, TreeViewReorderableDragAndDropController_TreeItemState, Array_InternalArray__IReadOnlyList_get_Item_765, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D183A0, Array_InternalArray__IReadOnlyList_get_Item_765__MethodInfo); DO_APP_FUNC(0x00F7DED0, UIRStylePainter_Entry, Array_InternalArray__IReadOnlyList_get_Item_766, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18358, Array_InternalArray__IReadOnlyList_get_Item_766__MethodInfo); DO_APP_FUNC(0x00F7DFA0, UIRenderDevice_AllocToFree, Array_InternalArray__IReadOnlyList_get_Item_767, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18350, Array_InternalArray__IReadOnlyList_get_Item_767__MethodInfo); DO_APP_FUNC(0x00F7E060, UIRenderDevice_AllocToUpdate, Array_InternalArray__IReadOnlyList_get_Item_768, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18348, Array_InternalArray__IReadOnlyList_get_Item_768__MethodInfo); DO_APP_FUNC(0x00F7E130, UIRenderDevice_DeviceToFree, Array_InternalArray__IReadOnlyList_get_Item_769, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18340, Array_InternalArray__IReadOnlyList_get_Item_769__MethodInfo); DO_APP_FUNC(0x00F7E1F0, UdpPipe_Ack, Array_InternalArray__IReadOnlyList_get_Item_770, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18378, Array_InternalArray__IReadOnlyList_get_Item_770__MethodInfo); DO_APP_FUNC(0x00F7E2B0, UmAlQuraCalendar_DateMapping, Array_InternalArray__IReadOnlyList_get_Item_771, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18370, Array_InternalArray__IReadOnlyList_get_Item_771__MethodInfo); DO_APP_FUNC(0x00F7E370, UnitySynchronizationContext_WorkRequest, Array_InternalArray__IReadOnlyList_get_Item_772, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18368, Array_InternalArray__IReadOnlyList_get_Item_772__MethodInfo); DO_APP_FUNC(0x00F7E430, VisualTreeAsset_SlotDefinition, Array_InternalArray__IReadOnlyList_get_Item_773, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18360, Array_InternalArray__IReadOnlyList_get_Item_773__MethodInfo); DO_APP_FUNC(0x00F7E4F0, VisualTreeAsset_SlotUsageEntry, Array_InternalArray__IReadOnlyList_get_Item_774, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18318, Array_InternalArray__IReadOnlyList_get_Item_774__MethodInfo); DO_APP_FUNC(0x00F7E5B0, VisualTreeAsset_UsingEntry, Array_InternalArray__IReadOnlyList_get_Item_775, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18310, Array_InternalArray__IReadOnlyList_get_Item_775__MethodInfo); DO_APP_FUNC(0x00F7E670, WetDecalSystem_MaterialBatchId, Array_InternalArray__IReadOnlyList_get_Item_776, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18308, Array_InternalArray__IReadOnlyList_get_Item_776__MethodInfo); DO_APP_FUNC(0x00F7E750, XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK, Array_InternalArray__IReadOnlyList_get_Item_777, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18300, Array_InternalArray__IReadOnlyList_get_Item_777__MethodInfo); DO_APP_FUNC(0x00F7E800, XmlEventCache_XmlEvent, Array_InternalArray__IReadOnlyList_get_Item_778, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18338, Array_InternalArray__IReadOnlyList_get_Item_778__MethodInfo); DO_APP_FUNC(0x00F7E8C0, XmlNamespaceManager_NamespaceDeclaration, Array_InternalArray__IReadOnlyList_get_Item_779, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18330, Array_InternalArray__IReadOnlyList_get_Item_779__MethodInfo); DO_APP_FUNC(0x00F7E980, XmlSchemaObjectTable_XmlSchemaObjectEntry, Array_InternalArray__IReadOnlyList_get_Item_780, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18328, Array_InternalArray__IReadOnlyList_get_Item_780__MethodInfo); DO_APP_FUNC(0x00F7EA40, XmlTextReaderImpl_ParsingState, Array_InternalArray__IReadOnlyList_get_Item_781, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18320, Array_InternalArray__IReadOnlyList_get_Item_781__MethodInfo); DO_APP_FUNC(0x00F7EB20, XmlTextWriter_Namespace, Array_InternalArray__IReadOnlyList_get_Item_782, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D182D8, Array_InternalArray__IReadOnlyList_get_Item_782__MethodInfo); DO_APP_FUNC(0x00F7EBE0, XmlTextWriter_TagInfo, Array_InternalArray__IReadOnlyList_get_Item_783, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D182D0, Array_InternalArray__IReadOnlyList_get_Item_783__MethodInfo); DO_APP_FUNC(0x00F7ECB0, XmlWellFormedWriter_AttrName, Array_InternalArray__IReadOnlyList_get_Item_784, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D182C8, Array_InternalArray__IReadOnlyList_get_Item_784__MethodInfo); DO_APP_FUNC(0x00F7ED70, XmlWellFormedWriter_ElementScope, Array_InternalArray__IReadOnlyList_get_Item_785, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D182C0, Array_InternalArray__IReadOnlyList_get_Item_785__MethodInfo); DO_APP_FUNC(0x00F7EE30, XmlWellFormedWriter_Namespace, Array_InternalArray__IReadOnlyList_get_Item_786, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D182F8, Array_InternalArray__IReadOnlyList_get_Item_786__MethodInfo); DO_APP_FUNC(0x00F7EEF0, ftLightmaps_LightmapAdditionalData, Array_InternalArray__IReadOnlyList_get_Item_787, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D182F0, Array_InternalArray__IReadOnlyList_get_Item_787__MethodInfo); DO_APP_FUNC(0x00F7EFB0, gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy, Array_InternalArray__IReadOnlyList_get_Item_788, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D182E8, Array_InternalArray__IReadOnlyList_get_Item_788__MethodInfo); DO_APP_FUNC(0x00F7F060, gWxrirpmIhQTmhziZnlXlEwmYtKB_QpfrOmwHesfdZMwAoLXiDrdPqtqG, Array_InternalArray__IReadOnlyList_get_Item_789, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D182E0, Array_InternalArray__IReadOnlyList_get_Item_789__MethodInfo); DO_APP_FUNC(0x00F7F120, gWxrirpmIhQTmhziZnlXlEwmYtKB_vEAqJCAedocGOpCIXmtvTuaaVKZ, Array_InternalArray__IReadOnlyList_get_Item_790, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18298, Array_InternalArray__IReadOnlyList_get_Item_790__MethodInfo); DO_APP_FUNC(0x00F7F1E0, jlOcQLgjodoHrMnRTMaZoBnVTQkmA_UQNUjWDnDBJiFEZHZdfMIOPkNvdGb, Array_InternalArray__IReadOnlyList_get_Item_791, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18290, Array_InternalArray__IReadOnlyList_get_Item_791__MethodInfo); DO_APP_FUNC(0x00F7F2A0, DebugUI_Foldout_ContextMenuItem, Array_InternalArray__IReadOnlyList_get_Item_792, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18288, Array_InternalArray__IReadOnlyList_get_Item_792__MethodInfo); DO_APP_FUNC(0x00F7F360, Decimal_DecCalc_PowerOvfl, Array_InternalArray__IReadOnlyList_get_Item_793, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18280, Array_InternalArray__IReadOnlyList_get_Item_793__MethodInfo); DO_APP_FUNC(0x00F7F420, FacetsChecker_FacetsCompiler_Map, Array_InternalArray__IReadOnlyList_get_Item_794, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D182B8, Array_InternalArray__IReadOnlyList_get_Item_794__MethodInfo); DO_APP_FUNC(0x00F7F4E0, InputControlLayout_Collection_LayoutMatcher, Array_InternalArray__IReadOnlyList_get_Item_795, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D182B0, Array_InternalArray__IReadOnlyList_get_Item_795__MethodInfo); DO_APP_FUNC(0x00F7F5A0, InputControlLayout_Collection_PrecompiledLayout, Array_InternalArray__IReadOnlyList_get_Item_796, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D182A8, Array_InternalArray__IReadOnlyList_get_Item_796__MethodInfo); DO_APP_FUNC(0x00F7F660, InputControlScheme_MatchResult_Match, Array_InternalArray__IReadOnlyList_get_Item_797, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D182A0, Array_InternalArray__IReadOnlyList_get_Item_797__MethodInfo); DO_APP_FUNC(0x00F7F720, InputControlScheme_SchemeJson_DeviceJson, Array_InternalArray__IReadOnlyList_get_Item_798, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18260, Array_InternalArray__IReadOnlyList_get_Item_798__MethodInfo); DO_APP_FUNC(0x00F7F7E0, InputDeviceMatcher_MatcherJson_Capability, Array_InternalArray__IReadOnlyList_get_Item_799, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18258, Array_InternalArray__IReadOnlyList_get_Item_799__MethodInfo); DO_APP_FUNC(0x00F7F8A0, InstructionList_DebugView_InstructionView, Array_InternalArray__IReadOnlyList_get_Item_800, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18250, Array_InternalArray__IReadOnlyList_get_Item_800__MethodInfo); DO_APP_FUNC(0x00F7F960, Interop_SspiCli_SecBuffer, Array_InternalArray__IReadOnlyList_get_Item_801, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18248, Array_InternalArray__IReadOnlyList_get_Item_801__MethodInfo); DO_APP_FUNC(0x00F7FA20, PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb, Array_InternalArray__IReadOnlyList_get_Item_802, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18278, Array_InternalArray__IReadOnlyList_get_Item_802__MethodInfo); DO_APP_FUNC(0x00F7FAE0, TargetPositionCache_CacheCurve_Item, Array_InternalArray__IReadOnlyList_get_Item_803, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18270, Array_InternalArray__IReadOnlyList_get_Item_803__MethodInfo); DO_APP_FUNC(0x00F7FBA0, TargetPositionCache_CacheEntry_RecordingItem, Array_InternalArray__IReadOnlyList_get_Item_804, (Array * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18268, Array_InternalArray__IReadOnlyList_get_Item_804__MethodInfo); DO_APP_FUNC(0x00F7FC60, int32_t, Array_InternalArray__IndexOf, (Array * __this, ArraySegment_1_Byte_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18220, Array_InternalArray__IndexOf__MethodInfo); DO_APP_FUNC(0x00F7FE50, int32_t, Array_InternalArray__IndexOf_1, (Array * __this, AsyncOperationHandle_1_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18218, Array_InternalArray__IndexOf_1__MethodInfo); DO_APP_FUNC(0x00F80060, int32_t, Array_InternalArray__IndexOf_2, (Array * __this, VoiceSender_1_TPeer_ChannelDelta_Dissonance_Integrations_PhotonBolt_BoltPeer_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18210, Array_InternalArray__IndexOf_2__MethodInfo); DO_APP_FUNC(0x00F80270, int32_t, Array_InternalArray__IndexOf_3, (Array * __this, DynamicHeightVirtualizationController_1_T_ContentHeightCacheInfo_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18240, Array_InternalArray__IndexOf_3__MethodInfo); DO_APP_FUNC(0x00F80440, int32_t, Array_InternalArray__IndexOf_4, (Array * __this, StylePropertyAnimationSystem_Values_1_T_EmptyData_Background_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18238, Array_InternalArray__IndexOf_4__MethodInfo); DO_APP_FUNC(0x00F80620, int32_t, Array_InternalArray__IndexOf_5, (Array * __this, StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18230, Array_InternalArray__IndexOf_5__MethodInfo); DO_APP_FUNC(0x00F80800, int32_t, Array_InternalArray__IndexOf_6, (Array * __this, StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18228, Array_InternalArray__IndexOf_6__MethodInfo); DO_APP_FUNC(0x00F809E0, int32_t, Array_InternalArray__IndexOf_7, (Array * __this, StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D181E8, Array_InternalArray__IndexOf_7__MethodInfo); DO_APP_FUNC(0x00F80BC0, int32_t, Array_InternalArray__IndexOf_8, (Array * __this, StylePropertyAnimationSystem_Values_1_T_EmptyData_Length_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D181E0, Array_InternalArray__IndexOf_8__MethodInfo); DO_APP_FUNC(0x00F80DA0, int32_t, Array_InternalArray__IndexOf_9, (Array * __this, StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D181D8, Array_InternalArray__IndexOf_9__MethodInfo); DO_APP_FUNC(0x00F80F80, int32_t, Array_InternalArray__IndexOf_10, (Array * __this, StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D181D0, Array_InternalArray__IndexOf_10__MethodInfo); DO_APP_FUNC(0x00F81160, int32_t, Array_InternalArray__IndexOf_11, (Array * __this, StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18208, Array_InternalArray__IndexOf_11__MethodInfo); DO_APP_FUNC(0x00F81340, int32_t, Array_InternalArray__IndexOf_12, (Array * __this, StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18200, Array_InternalArray__IndexOf_12__MethodInfo); DO_APP_FUNC(0x00F81520, int32_t, Array_InternalArray__IndexOf_13, (Array * __this, StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D181F8, Array_InternalArray__IndexOf_13__MethodInfo); DO_APP_FUNC(0x00F81700, int32_t, Array_InternalArray__IndexOf_14, (Array * __this, StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D181F0, Array_InternalArray__IndexOf_14__MethodInfo); DO_APP_FUNC(0x00F818E0, int32_t, Array_InternalArray__IndexOf_15, (Array * __this, StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D181A8, Array_InternalArray__IndexOf_15__MethodInfo); DO_APP_FUNC(0x00F81AC0, int32_t, Array_InternalArray__IndexOf_16, (Array * __this, IntervalTree_1_T_Entry_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D181A0, Array_InternalArray__IndexOf_16__MethodInfo); DO_APP_FUNC(0x00F81CD0, int32_t, Array_InternalArray__IndexOf_17, (Array * __this, XHashtable_1_TValue_XHashtableState_TValue_Entry_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18198, Array_InternalArray__IndexOf_17__MethodInfo); DO_APP_FUNC(0x00F81EB0, int32_t, Array_InternalArray__IndexOf_18, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_ValueTuple_2_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18190, Array_InternalArray__IndexOf_18__MethodInfo); DO_APP_FUNC(0x00F820C0, int32_t, Array_InternalArray__IndexOf_19, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_ValueTuple_2_System_Object__1 item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D181C8, Array_InternalArray__IndexOf_19__MethodInfo); DO_APP_FUNC(0x00F822D0, int32_t, Array_InternalArray__IndexOf_20, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Byte_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D181C0, Array_InternalArray__IndexOf_20__MethodInfo); DO_APP_FUNC(0x00F824E0, int32_t, Array_InternalArray__IndexOf_21, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_ByteEnum_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D181B8, Array_InternalArray__IndexOf_21__MethodInfo); DO_APP_FUNC(0x00F826C0, int32_t, Array_InternalArray__IndexOf_22, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_ByteEnum_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D181B0, Array_InternalArray__IndexOf_22__MethodInfo); DO_APP_FUNC(0x00F828D0, int32_t, Array_InternalArray__IndexOf_23, (Array * __this, Dictionary_2_TKey_TValue_Entry_Dissonance_Audio_Playback_FrameFormat_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18168, Array_InternalArray__IndexOf_23__MethodInfo); DO_APP_FUNC(0x00F82B00, int32_t, Array_InternalArray__IndexOf_24, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Guid_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18160, Array_InternalArray__IndexOf_24__MethodInfo); DO_APP_FUNC(0x00F82D10, int32_t, Array_InternalArray__IndexOf_25, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Guid_System_UInt32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18158, Array_InternalArray__IndexOf_25__MethodInfo); DO_APP_FUNC(0x00F82F30, int32_t, Array_InternalArray__IndexOf_26, (Array * __this, Dictionary_2_TKey_TValue_Entry_UnityEngine_Hash128_System_Object_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18150, Array_InternalArray__IndexOf_26__MethodInfo); DO_APP_FUNC(0x00F83140, int32_t, Array_InternalArray__IndexOf_27, (Array * __this, Dictionary_2_TKey_TValue_Entry_Pathfinding_Int2_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18188, Array_InternalArray__IndexOf_27__MethodInfo); DO_APP_FUNC(0x00F83340, int32_t, Array_InternalArray__IndexOf_28, (Array * __this, Dictionary_2_TKey_TValue_Entry_Pathfinding_Int3_System_Int32_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18180, Array_InternalArray__IndexOf_28__MethodInfo); DO_APP_FUNC(0x00F83550, int32_t, Array_InternalArray__IndexOf_29, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18178, Array_InternalArray__IndexOf_29__MethodInfo); DO_APP_FUNC(0x00F83750, int32_t, Array_InternalArray__IndexOf_30, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_System_ValueTuple_2_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18170, Array_InternalArray__IndexOf_30__MethodInfo); DO_APP_FUNC(0x00F83970, int32_t, Array_InternalArray__IndexOf_31, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_System_Boolean_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18148, Array_InternalArray__IndexOf_31__MethodInfo); DO_APP_FUNC(0x00F83B50, int32_t, Array_InternalArray__IndexOf_32, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_System_ByteEnum_ item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18140, Array_InternalArray__IndexOf_32__MethodInfo); DO_APP_FUNC(0x00C91790, int32_t, Array_InternalArray__IndexOf_33, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_System_Char_ item, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9B090, Array_InternalArray__IndexOf_33__MethodInfo); DO_APP_FUNC(0x00C91970, int32_t, Array_InternalArray__IndexOf_34, (Array * __this, Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ item, MethodInfo * method)); @@ -211991,260 +234973,264 @@ DO_APP_FUNC(0x00D77F80, int32_t, Array_LastIndexOfImpl_16, (ProbeBrickPool_Brick DO_APP_FUNC(0x00D77C90, int32_t, Array_LastIndexOfImpl_17, (SequenceNode_SequenceConstructPosContext__Array * array, SequenceNode_SequenceConstructPosContext value, int32_t startIndex, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x00D77930, int32_t, Array_LastIndexOfImpl_18, (StyleVariableResolver_ResolveContext__Array * array, StyleVariableResolver_ResolveContext value, int32_t startIndex, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x00D77E50, int32_t, Array_LastIndexOfImpl_19, (gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__Array * array, gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy value, int32_t startIndex, int32_t count, MethodInfo * method)); -DO_APP_FUNC(0x00D78020, void, Array_Resize, (StylePropertyAnimationSystem_Values_1_T_EmptyData_Background___Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D78020, void, Array_Resize, (StylePropertyAnimationSystem_Values_1_T_EmptyData_Background___Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA80A8, Array_Resize__MethodInfo); -DO_APP_FUNC(0x00D781A0, void, Array_Resize_1, (StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color___Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D781A0, void, Array_Resize_1, (StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color___Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA80B0, Array_Resize_1__MethodInfo); -DO_APP_FUNC(0x00D78320, void, Array_Resize_2, (StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition___Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D78320, void, Array_Resize_2, (StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition___Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA80B8, Array_Resize_2__MethodInfo); -DO_APP_FUNC(0x00D784A0, void, Array_Resize_3, (StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32___Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D784A0, void, Array_Resize_3, (StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32___Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA80C0, Array_Resize_3__MethodInfo); -DO_APP_FUNC(0x00D78620, void, Array_Resize_4, (StylePropertyAnimationSystem_Values_1_T_EmptyData_Length___Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D78620, void, Array_Resize_4, (StylePropertyAnimationSystem_Values_1_T_EmptyData_Length___Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA8068, Array_Resize_4__MethodInfo); -DO_APP_FUNC(0x00D787A0, void, Array_Resize_5, (StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object___Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D787A0, void, Array_Resize_5, (StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object___Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA8078, Array_Resize_5__MethodInfo); -DO_APP_FUNC(0x00D78920, void, Array_Resize_6, (StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate___Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D78920, void, Array_Resize_6, (StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate___Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA8088, Array_Resize_6__MethodInfo); -DO_APP_FUNC(0x00D78AA0, void, Array_Resize_7, (StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale___Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D78AA0, void, Array_Resize_7, (StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale___Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA8098, Array_Resize_7__MethodInfo); -DO_APP_FUNC(0x00D78C20, void, Array_Resize_8, (StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single___Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D78C20, void, Array_Resize_8, (StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single___Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA8040, Array_Resize_8__MethodInfo); -DO_APP_FUNC(0x00D78DA0, void, Array_Resize_9, (StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow___Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D78DA0, void, Array_Resize_9, (StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow___Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA8048, Array_Resize_9__MethodInfo); -DO_APP_FUNC(0x00D78F20, void, Array_Resize_10, (StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin___Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D78F20, void, Array_Resize_10, (StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin___Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA8050, Array_Resize_10__MethodInfo); -DO_APP_FUNC(0x00D790A0, void, Array_Resize_11, (StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate___Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D790A0, void, Array_Resize_11, (StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate___Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA8058, Array_Resize_11__MethodInfo); -DO_APP_FUNC(0x00D79220, void, Array_Resize_12, (KeyValuePair_2_System_DateTime_System_UInt32___Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D79220, void, Array_Resize_12, (KeyValuePair_2_System_DateTime_System_UInt32___Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA8010, Array_Resize_12__MethodInfo); -DO_APP_FUNC(0x00D793A0, void, Array_Resize_13, (KeyValuePair_2_System_Int32_System_Int32___Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D793A0, void, Array_Resize_13, (KeyValuePair_2_System_Int32_System_Int32___Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA8020, Array_Resize_13__MethodInfo); -DO_APP_FUNC(0x00D79520, void, Array_Resize_14, (KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object___Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D79520, void, Array_Resize_14, (KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object___Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA8030, Array_Resize_14__MethodInfo); -DO_APP_FUNC(0x00D796A0, void, Array_Resize_15, (KeyValuePair_2_System_Object_System_Char___Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D796A0, void, Array_Resize_15, (KeyValuePair_2_System_Object_System_Char___Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA8038, Array_Resize_15__MethodInfo); -DO_APP_FUNC(0x00D79820, void, Array_Resize_16, (KeyValuePair_2_System_Object_System_Object___Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D79820, void, Array_Resize_16, (KeyValuePair_2_System_Object_System_Object___Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7FE0, Array_Resize_16__MethodInfo); -DO_APP_FUNC(0x00D799A0, void, Array_Resize_17, (KeyValuePair_2_System_UInt64_System_Object___Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D799A0, void, Array_Resize_17, (KeyValuePair_2_System_UInt64_System_Object___Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7FF0, Array_Resize_17__MethodInfo); -DO_APP_FUNC(0x00D79B20, void, Array_Resize_18, (KeyValuePair_2_UnityEngine_Vector3_System_Int32___Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D79B20, void, Array_Resize_18, (KeyValuePair_2_UnityEngine_Vector3_System_Int32___Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7FF8, Array_Resize_18__MethodInfo); -DO_APP_FUNC(0x00D79CA0, void, Array_Resize_19, (StylePropertyAnimationSystem_Values_1_T_StyleData_Background___Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D79CA0, void, Array_Resize_19, (StylePropertyAnimationSystem_Values_1_T_StyleData_Background___Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA8000, Array_Resize_19__MethodInfo); -DO_APP_FUNC(0x00D79E20, void, Array_Resize_20, (StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color___Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D79E20, void, Array_Resize_20, (StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color___Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7FA8, Array_Resize_20__MethodInfo); -DO_APP_FUNC(0x00D79FA0, void, Array_Resize_21, (StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition___Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D79FA0, void, Array_Resize_21, (StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition___Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7FB8, Array_Resize_21__MethodInfo); -DO_APP_FUNC(0x00D7A120, void, Array_Resize_22, (StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32___Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7A120, void, Array_Resize_22, (StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32___Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7FC0, Array_Resize_22__MethodInfo); -DO_APP_FUNC(0x00D7A2A0, void, Array_Resize_23, (StylePropertyAnimationSystem_Values_1_T_StyleData_Length___Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7A2A0, void, Array_Resize_23, (StylePropertyAnimationSystem_Values_1_T_StyleData_Length___Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7FD0, Array_Resize_23__MethodInfo); -DO_APP_FUNC(0x00D7A420, void, Array_Resize_24, (StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object___Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7A420, void, Array_Resize_24, (StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object___Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7F80, Array_Resize_24__MethodInfo); -DO_APP_FUNC(0x00D7A5A0, void, Array_Resize_25, (StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate___Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7A5A0, void, Array_Resize_25, (StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate___Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7F88, Array_Resize_25__MethodInfo); -DO_APP_FUNC(0x00D7A720, void, Array_Resize_26, (StylePropertyAnimationSystem_Values_1_T_StyleData_Scale___Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7A720, void, Array_Resize_26, (StylePropertyAnimationSystem_Values_1_T_StyleData_Scale___Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7F90, Array_Resize_26__MethodInfo); -DO_APP_FUNC(0x00D7A8A0, void, Array_Resize_27, (StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single___Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7A8A0, void, Array_Resize_27, (StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single___Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7FA0, Array_Resize_27__MethodInfo); -DO_APP_FUNC(0x00D7AA20, void, Array_Resize_28, (StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow___Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7AA20, void, Array_Resize_28, (StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow___Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7F48, Array_Resize_28__MethodInfo); -DO_APP_FUNC(0x00D7ABA0, void, Array_Resize_29, (StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin___Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7ABA0, void, Array_Resize_29, (StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin___Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7F58, Array_Resize_29__MethodInfo); -DO_APP_FUNC(0x00D7AD20, void, Array_Resize_30, (StylePropertyAnimationSystem_Values_1_T_StyleData_Translate___Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7AD20, void, Array_Resize_30, (StylePropertyAnimationSystem_Values_1_T_StyleData_Translate___Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7F68, Array_Resize_30__MethodInfo); -DO_APP_FUNC(0x00D7AEA0, void, Array_Resize_31, (StylePropertyAnimationSystem_Values_1_T_TimingData_Background___Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7AEA0, void, Array_Resize_31, (StylePropertyAnimationSystem_Values_1_T_TimingData_Background___Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7F78, Array_Resize_31__MethodInfo); -DO_APP_FUNC(0x00D7B020, void, Array_Resize_32, (StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color___Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7B020, void, Array_Resize_32, (StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color___Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7F18, Array_Resize_32__MethodInfo); -DO_APP_FUNC(0x00D7B1A0, void, Array_Resize_33, (StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition___Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7B1A0, void, Array_Resize_33, (StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition___Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7F28, Array_Resize_33__MethodInfo); -DO_APP_FUNC(0x00D7B320, void, Array_Resize_34, (StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32___Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7B320, void, Array_Resize_34, (StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32___Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7F38, Array_Resize_34__MethodInfo); -DO_APP_FUNC(0x00D7B4A0, void, Array_Resize_35, (StylePropertyAnimationSystem_Values_1_T_TimingData_Length___Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7B4A0, void, Array_Resize_35, (StylePropertyAnimationSystem_Values_1_T_TimingData_Length___Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7F40, Array_Resize_35__MethodInfo); -DO_APP_FUNC(0x00D7B620, void, Array_Resize_36, (StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object___Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7B620, void, Array_Resize_36, (StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object___Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7EF0, Array_Resize_36__MethodInfo); -DO_APP_FUNC(0x00D7B7A0, void, Array_Resize_37, (StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate___Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7B7A0, void, Array_Resize_37, (StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate___Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7EF8, Array_Resize_37__MethodInfo); -DO_APP_FUNC(0x00D7B920, void, Array_Resize_38, (StylePropertyAnimationSystem_Values_1_T_TimingData_Scale___Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7B920, void, Array_Resize_38, (StylePropertyAnimationSystem_Values_1_T_TimingData_Scale___Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7F00, Array_Resize_38__MethodInfo); -DO_APP_FUNC(0x00D7BAA0, void, Array_Resize_39, (StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single___Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7BAA0, void, Array_Resize_39, (StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single___Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7F10, Array_Resize_39__MethodInfo); -DO_APP_FUNC(0x00D7BC20, void, Array_Resize_40, (StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow___Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7BC20, void, Array_Resize_40, (StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow___Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7EC0, Array_Resize_40__MethodInfo); -DO_APP_FUNC(0x00D7BDA0, void, Array_Resize_41, (StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin___Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7BDA0, void, Array_Resize_41, (StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin___Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7EC8, Array_Resize_41__MethodInfo); -DO_APP_FUNC(0x00D7BF20, void, Array_Resize_42, (StylePropertyAnimationSystem_Values_1_T_TimingData_Translate___Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7BF20, void, Array_Resize_42, (StylePropertyAnimationSystem_Values_1_T_TimingData_Translate___Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7ED0, Array_Resize_42__MethodInfo); -DO_APP_FUNC(0x00D7C0A0, void, Array_Resize_43, (ValueTuple_2_IntPtr_Object___Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7C0A0, void, Array_Resize_43, (ValueTuple_2_IntPtr_Object___Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7EE0, Array_Resize_43__MethodInfo); -DO_APP_FUNC(0x00D7C220, void, Array_Resize_44, (Background__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7C220, void, Array_Resize_44, (Background__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7E98, Array_Resize_44__MethodInfo); -DO_APP_FUNC(0x00D7C3A0, void, Array_Resize_45, (Boolean__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7C3A0, void, Array_Resize_45, (Boolean__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7EA0, Array_Resize_45__MethodInfo); -DO_APP_FUNC(0x00D7C520, void, Array_Resize_46, (Byte__Array * array, int32_t newSize, MethodInfo * method)); -DO_APP_FUNC(0x00D7C6A0, void, Array_Resize_47, (Char__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7C520, void, Array_Resize_46, (Byte__Array * * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA498, Array_Resize_46__MethodInfo); +DO_APP_FUNC(0x00D7C6A0, void, Array_Resize_47, (Char__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7EA8, Array_Resize_47__MethodInfo); -DO_APP_FUNC(0x00D7C820, void, Array_Resize_48, (Color__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7C820, void, Array_Resize_48, (Color__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7EB8, Array_Resize_48__MethodInfo); -DO_APP_FUNC(0x00D7C9A0, void, Array_Resize_49, (Color32__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7C9A0, void, Array_Resize_49, (Color32__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7E68, Array_Resize_49__MethodInfo); -DO_APP_FUNC(0x00D7CB20, void, Array_Resize_50, (FontDefinition__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7CB20, void, Array_Resize_50, (FontDefinition__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7E78, Array_Resize_50__MethodInfo); -DO_APP_FUNC(0x00D7CCA0, void, Array_Resize_51, (GCHandle__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7CCA0, void, Array_Resize_51, (GCHandle__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7E80, Array_Resize_51__MethodInfo); -DO_APP_FUNC(0x00D7CE20, void, Array_Resize_52, (GlyphPairAdjustmentRecord__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7CE20, void, Array_Resize_52, (GlyphPairAdjustmentRecord__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7E90, Array_Resize_52__MethodInfo); -DO_APP_FUNC(0x00D7CFA0, void, Array_Resize_53, (HighlightState__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7CFA0, void, Array_Resize_53, (HighlightState__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7E38, Array_Resize_53__MethodInfo); -DO_APP_FUNC(0x00D7D120, void, Array_Resize_54, (InputBinding__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7D120, void, Array_Resize_54, (InputBinding__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7E48, Array_Resize_54__MethodInfo); -DO_APP_FUNC(0x00D7D2A0, void, Array_Resize_55, (InputControlScheme__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7D2A0, void, Array_Resize_55, (InputControlScheme__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7E58, Array_Resize_55__MethodInfo); -DO_APP_FUNC(0x00D7D420, void, Array_Resize_56, (InputUser__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7D420, void, Array_Resize_56, (InputUser__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7E60, Array_Resize_56__MethodInfo); -DO_APP_FUNC(0x00D7D5A0, void, Array_Resize_57, (Int2__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7D5A0, void, Array_Resize_57, (Int2__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7E08, Array_Resize_57__MethodInfo); -DO_APP_FUNC(0x00D7D720, void, Array_Resize_58, (Int3__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7D720, void, Array_Resize_58, (Int3__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7E18, Array_Resize_58__MethodInfo); -DO_APP_FUNC(0x00D7D8A0, void, Array_Resize_59, (Int32__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7D8A0, void, Array_Resize_59, (Int32__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7E20, Array_Resize_59__MethodInfo); -DO_APP_FUNC(0x00D7DA20, void, Array_Resize_60, (Int32Enum__Enum__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7DA20, void, Array_Resize_60, (Int32Enum__Enum__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7E28, Array_Resize_60__MethodInfo); -DO_APP_FUNC(0x00D7DBA0, void, Array_Resize_61, (InternedString__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7DBA0, void, Array_Resize_61, (InternedString__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7DD8, Array_Resize_61__MethodInfo); -DO_APP_FUNC(0x00D7DD20, void, Array_Resize_62, (ItemDefinitionAmount__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7DD20, void, Array_Resize_62, (ItemDefinitionAmount__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7DE0, Array_Resize_62__MethodInfo); -DO_APP_FUNC(0x00D7DEA0, void, Array_Resize_63, (Length__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7DEA0, void, Array_Resize_63, (Length__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7DF0, Array_Resize_63__MethodInfo); -DO_APP_FUNC(0x00D7E020, void, Array_Resize_64, (LinkInfo__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7E020, void, Array_Resize_64, (LinkInfo__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7E00, Array_Resize_64__MethodInfo); -DO_APP_FUNC(0x00D7E1A0, void, Array_Resize_65, (MaterialReference__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7E1A0, void, Array_Resize_65, (MaterialReference__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7DA8, Array_Resize_65__MethodInfo); -DO_APP_FUNC(0x00D7E320, void, Array_Resize_66, (MaterialReference_1__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7E320, void, Array_Resize_66, (MaterialReference_1__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7DB0, Array_Resize_66__MethodInfo); -DO_APP_FUNC(0x00D7E4A0, void, Array_Resize_67, (Matrix4x4__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7E4A0, void, Array_Resize_67, (Matrix4x4__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7DC0, Array_Resize_67__MethodInfo); -DO_APP_FUNC(0x00D7E620, void, Array_Resize_68, (MeshInfo__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7E620, void, Array_Resize_68, (MeshInfo__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7DD0, Array_Resize_68__MethodInfo); -DO_APP_FUNC(0x00D7E7A0, void, Array_Resize_69, (Object__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7E7A0, void, Array_Resize_69, (Object__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7D80, Array_Resize_69__MethodInfo); -DO_APP_FUNC(0x00D7E920, void, Array_Resize_70, (OriginalMaterialValue__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7E920, void, Array_Resize_70, (OriginalMaterialValue__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7D90, Array_Resize_70__MethodInfo); -DO_APP_FUNC(0x00D7EAA0, void, Array_Resize_71, (PageInfo__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7EAA0, void, Array_Resize_71, (PageInfo__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7D98, Array_Resize_71__MethodInfo); -DO_APP_FUNC(0x00D7EC20, void, Array_Resize_72, (PointerModel__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7EC20, void, Array_Resize_72, (PointerModel__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7DA0, Array_Resize_72__MethodInfo); -DO_APP_FUNC(0x00D7EDA0, void, Array_Resize_73, (Rect__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7EDA0, void, Array_Resize_73, (Rect__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7D50, Array_Resize_73__MethodInfo); -DO_APP_FUNC(0x00D7EF20, void, Array_Resize_74, (Resolution__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7EF20, void, Array_Resize_74, (Resolution__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7D58, Array_Resize_74__MethodInfo); -DO_APP_FUNC(0x00D7F0A0, void, Array_Resize_75, (Rotate_1__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7F0A0, void, Array_Resize_75, (Rotate_1__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7D68, Array_Resize_75__MethodInfo); -DO_APP_FUNC(0x00D7F220, void, Array_Resize_76, (Scale__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7F220, void, Array_Resize_76, (Scale__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7D70, Array_Resize_76__MethodInfo); -DO_APP_FUNC(0x00D7F3A0, void, Array_Resize_77, (Single__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7F3A0, void, Array_Resize_77, (Single__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8FCA8, Array_Resize_77__MethodInfo); -DO_APP_FUNC(0x00D7F520, void, Array_Resize_78, (SpeechSession__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7F520, void, Array_Resize_78, (SpeechSession__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7D28, Array_Resize_78__MethodInfo); -DO_APP_FUNC(0x00D7F6A0, void, Array_Resize_79, (Substring__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7F6A0, void, Array_Resize_79, (Substring__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7D30, Array_Resize_79__MethodInfo); -DO_APP_FUNC(0x00D7F820, void, Array_Resize_80, (TMP_CharacterInfo__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7F820, void, Array_Resize_80, (TMP_CharacterInfo__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7D38, Array_Resize_80__MethodInfo); -DO_APP_FUNC(0x00D7F9A0, void, Array_Resize_81, (TMP_LinkInfo__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7F9A0, void, Array_Resize_81, (TMP_LinkInfo__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7D48, Array_Resize_81__MethodInfo); -DO_APP_FUNC(0x00D7FB20, void, Array_Resize_82, (TMP_MeshInfo__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7FB20, void, Array_Resize_82, (TMP_MeshInfo__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7CF8, Array_Resize_82__MethodInfo); -DO_APP_FUNC(0x00D7FCA0, void, Array_Resize_83, (TMP_PageInfo__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7FCA0, void, Array_Resize_83, (TMP_PageInfo__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7D08, Array_Resize_83__MethodInfo); -DO_APP_FUNC(0x00D7FE20, void, Array_Resize_84, (TMP_WordInfo__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7FE20, void, Array_Resize_84, (TMP_WordInfo__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7D18, Array_Resize_84__MethodInfo); -DO_APP_FUNC(0x00D7FFA0, void, Array_Resize_85, (TextElementInfo__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D7FFA0, void, Array_Resize_85, (TextElementInfo__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7D20, Array_Resize_85__MethodInfo); -DO_APP_FUNC(0x00D80120, void, Array_Resize_86, (TextShadow__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D80120, void, Array_Resize_86, (TextShadow__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7CC8, Array_Resize_86__MethodInfo); -DO_APP_FUNC(0x00D802A0, void, Array_Resize_87, (TextureId__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D802A0, void, Array_Resize_87, (TextureId__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7CD8, Array_Resize_87__MethodInfo); -DO_APP_FUNC(0x00D80420, void, Array_Resize_88, (TransformOrigin__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D80420, void, Array_Resize_88, (TransformOrigin__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7CE0, Array_Resize_88__MethodInfo); -DO_APP_FUNC(0x00D805A0, void, Array_Resize_89, (Translate_1__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D805A0, void, Array_Resize_89, (Translate_1__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7CE8, Array_Resize_89__MethodInfo); -DO_APP_FUNC(0x00D80720, void, Array_Resize_90, (UInt16__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D80720, void, Array_Resize_90, (UInt16__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7C90, Array_Resize_90__MethodInfo); -DO_APP_FUNC(0x00D808A0, void, Array_Resize_91, (UInt32__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D808A0, void, Array_Resize_91, (UInt32__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7C98, Array_Resize_91__MethodInfo); -DO_APP_FUNC(0x00D80A20, void, Array_Resize_92, (UInt64__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D80A20, void, Array_Resize_92, (UInt64__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7CA8, Array_Resize_92__MethodInfo); -DO_APP_FUNC(0x00D80BA0, void, Array_Resize_93, (UdpEvent__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D80BA0, void, Array_Resize_93, (UdpEvent__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7CB8, Array_Resize_93__MethodInfo); -DO_APP_FUNC(0x00D80D20, void, Array_Resize_94, (Vector2__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D80D20, void, Array_Resize_94, (Vector2__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7C60, Array_Resize_94__MethodInfo); -DO_APP_FUNC(0x00D80EA0, void, Array_Resize_95, (Vector3__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D80EA0, void, Array_Resize_95, (Vector3__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7C70, Array_Resize_95__MethodInfo); -DO_APP_FUNC(0x00D81020, void, Array_Resize_96, (Vector4__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D81020, void, Array_Resize_96, (Vector4__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7C80, Array_Resize_96__MethodInfo); -DO_APP_FUNC(0x00D811A0, void, Array_Resize_97, (WordInfo__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D811A0, void, Array_Resize_97, (WordInfo__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7C88, Array_Resize_97__MethodInfo); -DO_APP_FUNC(0x00D81320, void, Array_Resize_98, (WordWrapState__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D81320, void, Array_Resize_98, (WordWrapState__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7C30, Array_Resize_98__MethodInfo); -DO_APP_FUNC(0x00D814A0, void, Array_Resize_99, (BaseStyleMatcher_MatchContext__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D814A0, void, Array_Resize_99, (BaseStyleMatcher_MatchContext__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7C40, Array_Resize_99__MethodInfo); -DO_APP_FUNC(0x00D81620, void, Array_Resize_100, (DamageIndicatorMonitor_DamageIndicator__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D81620, void, Array_Resize_100, (DamageIndicatorMonitor_DamageIndicator__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7C50, Array_Resize_100__MethodInfo); -DO_APP_FUNC(0x00D817A0, void, Array_Resize_101, (EventDispatcher_DispatchContext__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D817A0, void, Array_Resize_101, (EventDispatcher_DispatchContext__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7C58, Array_Resize_101__MethodInfo); -DO_APP_FUNC(0x00D81920, void, Array_Resize_102, (EventDispatcher_EventRecord__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D81920, void, Array_Resize_102, (EventDispatcher_EventRecord__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7C08, Array_Resize_102__MethodInfo); -DO_APP_FUNC(0x00D81AA0, void, Array_Resize_103, (GraphUpdateProcessor_GUOSingle__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D81AA0, void, Array_Resize_103, (GraphUpdateProcessor_GUOSingle__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7C10, Array_Resize_103__MethodInfo); -DO_APP_FUNC(0x00D81C20, void, Array_Resize_104, (InputActionRebindingExtensions_ParameterOverride__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D81C20, void, Array_Resize_104, (InputActionRebindingExtensions_ParameterOverride__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7C20, Array_Resize_104__MethodInfo); -DO_APP_FUNC(0x00D81DA0, void, Array_Resize_105, (InputControlLayout_ControlItem__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D81DA0, void, Array_Resize_105, (InputControlLayout_ControlItem__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7C28, Array_Resize_105__MethodInfo); -DO_APP_FUNC(0x00D81F20, void, Array_Resize_106, (InputControlScheme_DeviceRequirement__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D81F20, void, Array_Resize_106, (InputControlScheme_DeviceRequirement__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7BE0, Array_Resize_106__MethodInfo); -DO_APP_FUNC(0x00D820A0, void, Array_Resize_107, (InputDevice_ControlBitRangeNode__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D820A0, void, Array_Resize_107, (InputDevice_ControlBitRangeNode__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7BF0, Array_Resize_107__MethodInfo); -DO_APP_FUNC(0x00D82220, void, Array_Resize_108, (InputEventTrace_DeviceInfo__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D82220, void, Array_Resize_108, (InputEventTrace_DeviceInfo__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7BF8, Array_Resize_108__MethodInfo); -DO_APP_FUNC(0x00D823A0, void, Array_Resize_109, (InputManager_AvailableDevice__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D823A0, void, Array_Resize_109, (InputManager_AvailableDevice__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7C00, Array_Resize_109__MethodInfo); -DO_APP_FUNC(0x00D82520, void, Array_Resize_110, (InputManager_StateChangeMonitorListener__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D82520, void, Array_Resize_110, (InputManager_StateChangeMonitorListener__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7BB0, Array_Resize_110__MethodInfo); -DO_APP_FUNC(0x00D826A0, void, Array_Resize_111, (InputManager_StateChangeMonitorTimeout__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D826A0, void, Array_Resize_111, (InputManager_StateChangeMonitorTimeout__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7BB8, Array_Resize_111__MethodInfo); -DO_APP_FUNC(0x00D82820, void, Array_Resize_112, (InputManager_StateChangeMonitorsForDevice__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D82820, void, Array_Resize_112, (InputManager_StateChangeMonitorsForDevice__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7BC0, Array_Resize_112__MethodInfo); -DO_APP_FUNC(0x00D829A0, void, Array_Resize_113, (InputRemoting_RemoteInputDevice__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D829A0, void, Array_Resize_113, (InputRemoting_RemoteInputDevice__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7BD0, Array_Resize_113__MethodInfo); -DO_APP_FUNC(0x00D82B20, void, Array_Resize_114, (InputRemoting_RemoteSender__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D82B20, void, Array_Resize_114, (InputRemoting_RemoteSender__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7B80, Array_Resize_114__MethodInfo); -DO_APP_FUNC(0x00D82CA0, void, Array_Resize_115, (InputUser_OngoingAccountSelection__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D82CA0, void, Array_Resize_115, (InputUser_OngoingAccountSelection__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7B88, Array_Resize_115__MethodInfo); -DO_APP_FUNC(0x00D82E20, void, Array_Resize_116, (InputUser_UserData__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D82E20, void, Array_Resize_116, (InputUser_UserData__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7B90, Array_Resize_116__MethodInfo); -DO_APP_FUNC(0x00D82FA0, void, Array_Resize_117, (MemoryHelpers_BitRegion__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D82FA0, void, Array_Resize_117, (MemoryHelpers_BitRegion__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7BA0, Array_Resize_117__MethodInfo); -DO_APP_FUNC(0x00D83120, void, Array_Resize_118, (OnScreenControl_OnScreenDeviceInfo__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D83120, void, Array_Resize_118, (OnScreenControl_OnScreenDeviceInfo__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7B50, Array_Resize_118__MethodInfo); -DO_APP_FUNC(0x00D832A0, void, Array_Resize_119, (ProbeBrickPool_BrickChunkAlloc__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D832A0, void, Array_Resize_119, (ProbeBrickPool_BrickChunkAlloc__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7B60, Array_Resize_119__MethodInfo); -DO_APP_FUNC(0x00D83420, void, Array_Resize_120, (SequenceNode_SequenceConstructPosContext__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D83420, void, Array_Resize_120, (SequenceNode_SequenceConstructPosContext__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7B70, Array_Resize_120__MethodInfo); -DO_APP_FUNC(0x00D835A0, void, Array_Resize_121, (StyleVariableResolver_ResolveContext__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D835A0, void, Array_Resize_121, (StyleVariableResolver_ResolveContext__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7B78, Array_Resize_121__MethodInfo); -DO_APP_FUNC(0x00D83720, void, Array_Resize_122, (TMP_Text_UnicodeChar__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D83720, void, Array_Resize_122, (TMP_Text_UnicodeChar__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7B28, Array_Resize_122__MethodInfo); -DO_APP_FUNC(0x00D838A0, void, Array_Resize_123, (XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D838A0, void, Array_Resize_123, (XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7B38, Array_Resize_123__MethodInfo); -DO_APP_FUNC(0x00D83A20, void, Array_Resize_124, (InputDeviceMatcher_MatcherJson_Capability__Array * array, int32_t newSize, MethodInfo * method)); +DO_APP_FUNC(0x00D83A20, void, Array_Resize_124, (InputDeviceMatcher_MatcherJson_Capability__Array * * array, int32_t newSize, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7B40, Array_Resize_124__MethodInfo); DO_APP_FUNC(0x00D83BA0, void, Array_Reverse_2, (Byte__Array * array, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBF120, Array_Reverse_2__MethodInfo); DO_APP_FUNC(0x00D83C20, void, Array_Reverse_3, (Char__Array * array, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C3D8, Array_Reverse_3__MethodInfo); DO_APP_FUNC(0x00D83CA0, void, Array_Reverse_4, (Object__Array * array, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7B48, Array_Reverse_4__MethodInfo); DO_APP_FUNC(0x00D83D20, void, Array_Reverse_5, (Vector3__Array * array, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBC678, Array_Reverse_5__MethodInfo); DO_APP_FUNC(0x00D83DA0, void, Array_Reverse_6, (ArraySegment_1_Byte___Array * array, int32_t index, int32_t length, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA7B10, Array_Reverse_6__MethodInfo); DO_APP_FUNC(0x00D83FE0, void, Array_Reverse_7, (AsyncOperationHandle_1_System_Object___Array * array, int32_t index, int32_t length, MethodInfo * method)); @@ -212905,11 +235891,13 @@ DO_APP_FUNC_METHODINFO(0x03CAA780, Array_Sort_108__MethodInfo); DO_APP_FUNC(0x00DAE120, void, Array_Sort_109, (PlayableBinding__Array * array, int32_t index, int32_t length, IComparer_1_UnityEngine_Playables_PlayableBinding_ * comparer, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CAA790, Array_Sort_109__MethodInfo); DO_APP_FUNC(0x00DAE310, void, Array_Sort_110, (Priority__Array * array, int32_t index, int32_t length, IComparer_1_Photon_Bolt_Priority_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC23B8, Array_Sort_110__MethodInfo); DO_APP_FUNC(0x00DAE500, void, Array_Sort_111, (Quaternion__Array * array, int32_t index, int32_t length, IComparer_1_UnityEngine_Quaternion_ * comparer, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CAA798, Array_Sort_111__MethodInfo); DO_APP_FUNC(0x00DAE6F0, void, Array_Sort_112, (RangePositionInfo__Array * array, int32_t index, int32_t length, IComparer_1_System_Xml_Schema_RangePositionInfo_ * comparer, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CAA748, Array_Sort_112__MethodInfo); DO_APP_FUNC(0x00DAE8E0, void, Array_Sort_113, (RaycastHit__Array * array, int32_t index, int32_t length, IComparer_1_UnityEngine_RaycastHit_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB83D8, Array_Sort_113__MethodInfo); DO_APP_FUNC(0x00DAEAD0, void, Array_Sort_114, (RaycastHit2D__Array * array, int32_t index, int32_t length, IComparer_1_UnityEngine_RaycastHit2D_ * comparer, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CAA750, Array_Sort_114__MethodInfo); DO_APP_FUNC(0x00DAECC0, void, Array_Sort_115, (RaycastResult__Array * array, int32_t index, int32_t length, IComparer_1_UnityEngine_EventSystems_RaycastResult_ * comparer, MethodInfo * method)); @@ -213047,129 +236035,221 @@ DO_APP_FUNC_METHODINFO(0x03CAA2E8, Array_Sort_180__MethodInfo); DO_APP_FUNC(0x00DB6CA0, void, Array_Sort_181, (CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__Array * array, int32_t index, int32_t length, IComparer_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ * comparer, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CAA290, Array_Sort_181__MethodInfo); DO_APP_FUNC(0x00DB6E90, void, Array_Sort_182, (DelayedActionManager_DelegateInfo__Array * array, int32_t index, int32_t length, IComparer_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD3F0, Array_Sort_182__MethodInfo); DO_APP_FUNC(0x00DB7080, void, Array_Sort_183, (EventDispatcher_CallbackWrapper__Array * array, int32_t index, int32_t length, IComparer_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD3F8, Array_Sort_183__MethodInfo); DO_APP_FUNC(0x00DB7270, void, Array_Sort_184, (EventDispatcher_EventListener__Array * array, int32_t index, int32_t length, IComparer_1_Photon_Bolt_EventDispatcher_EventListener_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD3B0, Array_Sort_184__MethodInfo); DO_APP_FUNC(0x00DB7460, void, Array_Sort_185, (EventQueue_NetworkEvent__Array * array, int32_t index, int32_t length, IComparer_1_Dissonance_Networking_Client_EventQueue_NetworkEvent_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD3B8, Array_Sort_185__MethodInfo); DO_APP_FUNC(0x00DB7650, void, Array_Sort_186, (FocusController_FocusedElement__Array * array, int32_t index, int32_t length, IComparer_1_UnityEngine_UIElements_FocusController_FocusedElement_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD3C8, Array_Sort_186__MethodInfo); DO_APP_FUNC(0x00DB7840, void, Array_Sort_187, (Funnel_PathPart__Array * array, int32_t index, int32_t length, IComparer_1_Pathfinding_Funnel_PathPart_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD3D8, Array_Sort_187__MethodInfo); DO_APP_FUNC(0x00DB7A30, void, Array_Sort_188, (HID_HIDCollectionDescriptor__Array * array, int32_t index, int32_t length, IComparer_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD390, Array_Sort_188__MethodInfo); DO_APP_FUNC(0x00DB7C20, void, Array_Sort_189, (HID_HIDElementDescriptor__Array * array, int32_t index, int32_t length, IComparer_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD398, Array_Sort_189__MethodInfo); DO_APP_FUNC(0x00DB7E10, void, Array_Sort_190, (HIDParser_HIDReportData__Array * array, int32_t index, int32_t length, IComparer_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD3A0, Array_Sort_190__MethodInfo); DO_APP_FUNC(0x00DB8000, void, Array_Sort_191, (HairDesignerGeneratorFurShellBase_BufferData__Array * array, int32_t index, int32_t length, IComparer_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD3A8, Array_Sort_191__MethodInfo); DO_APP_FUNC(0x00DB81F0, void, Array_Sort_192, (InputActionMap_BindingOverrideJson__Array * array, int32_t index, int32_t length, IComparer_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD370, Array_Sort_192__MethodInfo); DO_APP_FUNC(0x00DB83E0, void, Array_Sort_193, (InputControlLayout_ControlItem__Array * array, int32_t index, int32_t length, IComparer_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD378, Array_Sort_193__MethodInfo); DO_APP_FUNC(0x00DB85D0, void, Array_Sort_194, (InternalTreeView_TreeViewItemWrapper__Array * array, int32_t index, int32_t length, IComparer_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD380, Array_Sort_194__MethodInfo); DO_APP_FUNC(0x00DB87C0, void, Array_Sort_195, (JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__Array * array, int32_t index, int32_t length, IComparer_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD388, Array_Sort_195__MethodInfo); DO_APP_FUNC(0x00DB89B0, void, Array_Sort_196, (JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb__Array * array, int32_t index, int32_t length, IComparer_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD338, Array_Sort_196__MethodInfo); DO_APP_FUNC(0x00DB8BA0, void, Array_Sort_197, (JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__Array * array, int32_t index, int32_t length, IComparer_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD348, Array_Sort_197__MethodInfo); DO_APP_FUNC(0x00DB8D90, void, Array_Sort_198, (JsonParser_JsonValue__Array * array, int32_t index, int32_t length, IComparer_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD358, Array_Sort_198__MethodInfo); DO_APP_FUNC(0x00DB8F80, void, Array_Sort_199, (Logs_LogMessage__Array * array, int32_t index, int32_t length, IComparer_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD368, Array_Sort_199__MethodInfo); DO_APP_FUNC(0x00DB9170, void, Array_Sort_200, (MagicLightProbes_VolumeParameters__Array * array, int32_t index, int32_t length, IComparer_1_MagicLightProbes_MagicLightProbes_VolumeParameters_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD2F8, Array_Sort_200__MethodInfo); DO_APP_FUNC(0x00DB9360, void, Array_Sort_201, (NolanBehaviour_OverlappedCollider__Array * array, int32_t index, int32_t length, IComparer_1_NolanBehaviour_OverlappedCollider_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD308, Array_Sort_201__MethodInfo); DO_APP_FUNC(0x00DB9550, void, Array_Sort_202, (OpenXRInput_SerializedBinding__Array * array, int32_t index, int32_t length, IComparer_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD318, Array_Sort_202__MethodInfo); DO_APP_FUNC(0x00DB9740, void, Array_Sort_203, (PackedPlayModeBuildLogs_RuntimeBuildLog__Array * array, int32_t index, int32_t length, IComparer_1_PackedPlayModeBuildLogs_RuntimeBuildLog_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD328, Array_Sort_203__MethodInfo); DO_APP_FUNC(0x00DB9930, void, Array_Sort_204, (ParticleSystem_Particle__Array * array, int32_t index, int32_t length, IComparer_1_UnityEngine_ParticleSystem_Particle_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD2D0, Array_Sort_204__MethodInfo); DO_APP_FUNC(0x00DB9B20, void, Array_Sort_205, (ProbeBrickIndex_Brick__Array * array, int32_t index, int32_t length, IComparer_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD2D8, Array_Sort_205__MethodInfo); DO_APP_FUNC(0x00DB9D10, void, Array_Sort_206, (ProbeBrickIndex_ReservedBrick__Array * array, int32_t index, int32_t length, IComparer_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD2E0, Array_Sort_206__MethodInfo); DO_APP_FUNC(0x00DB9F00, void, Array_Sort_207, (ProbeBrickIndex_VoxelMeta__Array * array, int32_t index, int32_t length, IComparer_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD2E8, Array_Sort_207__MethodInfo); DO_APP_FUNC(0x00DBA0F0, void, Array_Sort_208, (ProbeBrickPool_BrickChunkAlloc__Array * array, int32_t index, int32_t length, IComparer_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD298, Array_Sort_208__MethodInfo); DO_APP_FUNC(0x00DBA2E0, void, Array_Sort_209, (ProbeVolumePerSceneData_SerializableAssetItem__Array * array, int32_t index, int32_t length, IComparer_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD2A8, Array_Sort_209__MethodInfo); DO_APP_FUNC(0x00DBA4D0, void, Array_Sort_210, (ProbeVolumeSceneData_SerializableBoundItem__Array * array, int32_t index, int32_t length, IComparer_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD2B8, Array_Sort_210__MethodInfo); DO_APP_FUNC(0x00DBA6C0, void, Array_Sort_211, (ProbeVolumeSceneData_SerializableHasPVItem__Array * array, int32_t index, int32_t length, IComparer_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD2C8, Array_Sort_211__MethodInfo); DO_APP_FUNC(0x00DBA8B0, void, Array_Sort_212, (ProbeVolumeSceneData_SerializablePVBakeSettings__Array * array, int32_t index, int32_t length, IComparer_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD268, Array_Sort_212__MethodInfo); DO_APP_FUNC(0x00DBAAA0, void, Array_Sort_213, (ProbeVolumeSceneData_SerializablePVProfile__Array * array, int32_t index, int32_t length, IComparer_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD278, Array_Sort_213__MethodInfo); DO_APP_FUNC(0x00DBAC90, void, Array_Sort_214, (RegexCharClass_SingleRange__Array * array, int32_t index, int32_t length, IComparer_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD280, Array_Sort_214__MethodInfo); DO_APP_FUNC(0x00DBAE80, void, Array_Sort_215, (RenderChain_RenderNodeData__Array * array, int32_t index, int32_t length, IComparer_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD288, Array_Sort_215__MethodInfo); DO_APP_FUNC(0x00DBB070, void, Array_Sort_216, (RenderGraphDebugData_PassDebugData__Array * array, int32_t index, int32_t length, IComparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD240, Array_Sort_216__MethodInfo); DO_APP_FUNC(0x00DBB260, void, Array_Sort_217, (RenderGraphDebugData_ResourceDebugData__Array * array, int32_t index, int32_t length, IComparer_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD248, Array_Sort_217__MethodInfo); DO_APP_FUNC(0x00DBB450, void, Array_Sort_218, (ResourceManager_DeferredCallbackRegisterRequest__Array * array, int32_t index, int32_t length, IComparer_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD258, Array_Sort_218__MethodInfo); DO_APP_FUNC(0x00DBB640, void, Array_Sort_219, (RetainedGizmos_MeshWithHash__Array * array, int32_t index, int32_t length, IComparer_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD260, Array_Sort_219__MethodInfo); DO_APP_FUNC(0x00DBB830, void, Array_Sort_220, (TemplateAsset_AttributeOverride__Array * array, int32_t index, int32_t length, IComparer_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD220, Array_Sort_220__MethodInfo); DO_APP_FUNC(0x00DBBA20, void, Array_Sort_221, (TextSettings_FontReferenceMap__Array * array, int32_t index, int32_t length, IComparer_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD228, Array_Sort_221__MethodInfo); DO_APP_FUNC(0x00DBBC10, void, Array_Sort_222, (TextureBlitter_BlitInfo__Array * array, int32_t index, int32_t length, IComparer_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD230, Array_Sort_222__MethodInfo); DO_APP_FUNC(0x00DBBE00, void, Array_Sort_223, (TexturePacker_JsonArray_Frame__Array * array, int32_t index, int32_t length, IComparer_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD238, Array_Sort_223__MethodInfo); DO_APP_FUNC(0x00DBBFF0, void, Array_Sort_224, (TextureRegistry_TextureInfo__Array * array, int32_t index, int32_t length, IComparer_1_UnityEngine_UIElements_TextureRegistry_TextureInfo_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD200, Array_Sort_224__MethodInfo); DO_APP_FUNC(0x00DBC1E0, void, Array_Sort_225, (TimeNotificationBehaviour_NotificationEntry__Array * array, int32_t index, int32_t length, IComparer_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD208, Array_Sort_225__MethodInfo); DO_APP_FUNC(0x00DBC3D0, void, Array_Sort_226, (TrackedDeviceRaycaster_RaycastHitData__Array * array, int32_t index, int32_t length, IComparer_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD210, Array_Sort_226__MethodInfo); DO_APP_FUNC(0x00DBC5C0, void, Array_Sort_227, (TrackedPoseDriverDataDescription_PoseData__Array * array, int32_t index, int32_t length, IComparer_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD218, Array_Sort_227__MethodInfo); DO_APP_FUNC(0x00DBC7B0, void, Array_Sort_228, (TreeView_TreeViewItemWrapper__Array * array, int32_t index, int32_t length, IComparer_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD1C8, Array_Sort_228__MethodInfo); DO_APP_FUNC(0x00DBC9A0, void, Array_Sort_229, (TreeViewReorderableDragAndDropController_TreeItemState__Array * array, int32_t index, int32_t length, IComparer_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD1D0, Array_Sort_229__MethodInfo); DO_APP_FUNC(0x00DBCB90, void, Array_Sort_230, (UIRStylePainter_Entry__Array * array, int32_t index, int32_t length, IComparer_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD1E0, Array_Sort_230__MethodInfo); DO_APP_FUNC(0x00DBCD80, void, Array_Sort_231, (UIRenderDevice_AllocToFree__Array * array, int32_t index, int32_t length, IComparer_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD1F0, Array_Sort_231__MethodInfo); DO_APP_FUNC(0x00DBCF70, void, Array_Sort_232, (UIRenderDevice_AllocToUpdate__Array * array, int32_t index, int32_t length, IComparer_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD1A0, Array_Sort_232__MethodInfo); DO_APP_FUNC(0x00DBD160, void, Array_Sort_233, (UnitySynchronizationContext_WorkRequest__Array * array, int32_t index, int32_t length, IComparer_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD1A8, Array_Sort_233__MethodInfo); DO_APP_FUNC(0x00DBD350, void, Array_Sort_234, (VisualTreeAsset_SlotDefinition__Array * array, int32_t index, int32_t length, IComparer_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD1B0, Array_Sort_234__MethodInfo); DO_APP_FUNC(0x00DBD540, void, Array_Sort_235, (VisualTreeAsset_SlotUsageEntry__Array * array, int32_t index, int32_t length, IComparer_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD1C0, Array_Sort_235__MethodInfo); DO_APP_FUNC(0x00DBD730, void, Array_Sort_236, (VisualTreeAsset_UsingEntry__Array * array, int32_t index, int32_t length, IComparer_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD170, Array_Sort_236__MethodInfo); DO_APP_FUNC(0x00DBD920, void, Array_Sort_237, (XmlSchemaObjectTable_XmlSchemaObjectEntry__Array * array, int32_t index, int32_t length, IComparer_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD178, Array_Sort_237__MethodInfo); DO_APP_FUNC(0x00DBDB10, void, Array_Sort_238, (ftLightmaps_LightmapAdditionalData__Array * array, int32_t index, int32_t length, IComparer_1_ftLightmaps_LightmapAdditionalData_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD180, Array_Sort_238__MethodInfo); DO_APP_FUNC(0x00DBDD00, void, Array_Sort_239, (gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__Array * array, int32_t index, int32_t length, IComparer_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD190, Array_Sort_239__MethodInfo); DO_APP_FUNC(0x00DBDEF0, void, Array_Sort_240, (DebugUI_Foldout_ContextMenuItem__Array * array, int32_t index, int32_t length, IComparer_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD130, Array_Sort_240__MethodInfo); DO_APP_FUNC(0x00DBE0E0, void, Array_Sort_241, (InputControlLayout_Collection_LayoutMatcher__Array * array, int32_t index, int32_t length, IComparer_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD140, Array_Sort_241__MethodInfo); DO_APP_FUNC(0x00DBE2D0, void, Array_Sort_242, (InstructionList_DebugView_InstructionView__Array * array, int32_t index, int32_t length, IComparer_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD150, Array_Sort_242__MethodInfo); DO_APP_FUNC(0x00DBE4C0, void, Array_Sort_243, (PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__Array * array, int32_t index, int32_t length, IComparer_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD160, Array_Sort_243__MethodInfo); DO_APP_FUNC(0x00DBE6B0, void, Array_Sort_244, (TargetPositionCache_CacheCurve_Item__Array * array, int32_t index, int32_t length, IComparer_1_Cinemachine_TargetPositionCache_CacheCurve_Item_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD100, Array_Sort_244__MethodInfo); DO_APP_FUNC(0x00DBE8A0, void, Array_Sort_245, (TargetPositionCache_CacheEntry_RecordingItem__Array * array, int32_t index, int32_t length, IComparer_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD108, Array_Sort_245__MethodInfo); DO_APP_FUNC(0x00DBEA90, void, Array_Sort_246, (Object__Array * keys, Object__Array * items, int32_t index, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x00DBEAC0, void, Array_Sort_247, (Int32__Array * keys, ValueTuple_2_Object_Int32___Array * items, int32_t index, int32_t length, IComparer_1_System_Int32_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD110, Array_Sort_247__MethodInfo); DO_APP_FUNC(0x00DBED00, void, Array_Sort_248, (Object__Array * keys, Object__Array * items, int32_t index, int32_t length, IComparer_1_System_Object_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD120, Array_Sort_248__MethodInfo); DO_APP_FUNC(0x00DBEF40, void, Array_Sort_249, (Single__Array * keys, Object__Array * items, int32_t index, int32_t length, IComparer_1_System_Single_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD0D0, Array_Sort_249__MethodInfo); DO_APP_FUNC(0x00DBF180, void, Array_Sort_250, (UInt64__Array * keys, Object__Array * items, int32_t index, int32_t length, IComparer_1_System_UInt64_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD0E0, Array_Sort_250__MethodInfo); DO_APP_FUNC(0x00DBF3C0, bool, Array_TrueForAll, (Object__Array * array, Predicate_1_Object_ * match, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD0E8, Array_TrueForAll__MethodInfo); DO_APP_FUNC(0x00DBF4F0, Object *, Array_UnsafeLoad, (Object__Array * array, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x00C3C210, int32_t, Array_UnsafeMov, (ByteEnum__Enum instance, MethodInfo * method)); DO_APP_FUNC(0x00959BB0, int32_t, Array_UnsafeMov_1, (Int32Enum__Enum instance, MethodInfo * method)); DO_APP_FUNC(0x00A1B820, Object *, Array_UnsafeMov_2, (Object * instance, MethodInfo * method)); DO_APP_FUNC(0x00DBF520, void, Array_UnsafeStore, (Object__Array * array, int32_t index, Object * value, MethodInfo * method)); DO_APP_FUNC(0x00DBF540, ReadOnlyCollection_1_System_Object_ *, ArrayBuilderExtensions_ToReadOnly, (ArrayBuilder_1_System_Object_ builder, MethodInfo * method)); -DO_APP_FUNC(0x00DBF5C0, void, ArrayExtensions_ResizeArray_1, (Object__Array * array, int32_t capacity, MethodInfo * method)); -DO_APP_FUNC(0x00DBF660, void, ArrayExtensions_ResizeArray_2, (NativeArray_1_System_UInt32_ array, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC(0x00DBF5C0, void, ArrayExtensions_ResizeArray_1, (Object__Array * * array, int32_t capacity, MethodInfo * method)); +DO_APP_FUNC(0x00DBF660, void, ArrayExtensions_ResizeArray_2, (NativeArray_1_System_UInt32_ * array, int32_t capacity, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C95DE0, ArrayExtensions_ResizeArray_2__MethodInfo); -DO_APP_FUNC(0x00DBF6F0, int32_t, ArrayHelpers_Append, (KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object___Array * array, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object_ value, MethodInfo * method)); -DO_APP_FUNC(0x00DBF8D0, int32_t, ArrayHelpers_Append_1, (InputBinding__Array * array, InputBinding value, MethodInfo * method)); -DO_APP_FUNC(0x00DBF6F0, int32_t, ArrayHelpers_Append_2, (InputControlScheme__Array * array, InputControlScheme value, MethodInfo * method)); -DO_APP_FUNC(0x00DBFA40, int32_t, ArrayHelpers_Append_3, (Int32__Array * array, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00DBFB40, int32_t, ArrayHelpers_Append_4, (InternedString__Array * array, InternedString value, MethodInfo * method)); -DO_APP_FUNC(0x00DBFD10, int32_t, ArrayHelpers_Append_5, (Object__Array * array, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x00DBFE10, int32_t, ArrayHelpers_Append_6, (Object__Array * array, IEnumerable_1_System_Object_ * values, MethodInfo * method)); -DO_APP_FUNC(0x00DC0140, int32_t, ArrayHelpers_Append_7, (Vector2__Array * array, Vector2 value, MethodInfo * method)); -DO_APP_FUNC(0x00DBFB40, int32_t, ArrayHelpers_Append_8, (InputControlScheme_DeviceRequirement__Array * array, InputControlScheme_DeviceRequirement value, MethodInfo * method)); -DO_APP_FUNC(0x00DC0260, int32_t, ArrayHelpers_Append_9, (InputEventTrace_DeviceInfo__Array * array, InputEventTrace_DeviceInfo value, MethodInfo * method)); -DO_APP_FUNC(0x00DC0450, int32_t, ArrayHelpers_Append_10, (InputRemoting_RemoteInputDevice__Array * array, InputRemoting_RemoteInputDevice value, MethodInfo * method)); -DO_APP_FUNC(0x00DC0660, int32_t, ArrayHelpers_Append_11, (InputRemoting_RemoteSender__Array * array, InputRemoting_RemoteSender value, MethodInfo * method)); -DO_APP_FUNC(0x00DBFB40, int32_t, ArrayHelpers_Append_12, (InputDeviceMatcher_MatcherJson_Capability__Array * array, InputDeviceMatcher_MatcherJson_Capability value, MethodInfo * method)); -DO_APP_FUNC(0x00DC0850, int32_t, ArrayHelpers_AppendListWithCapacity, (Object__Array * array, int32_t length, InputControlList_1_System_Object_ values, int32_t capacityIncrement, MethodInfo * method)); -DO_APP_FUNC(0x00DC0B20, int32_t, ArrayHelpers_AppendListWithCapacity_1, (Object__Array * array, int32_t length, ReadOnlyArray_1_System_Object_ values, int32_t capacityIncrement, MethodInfo * method)); -DO_APP_FUNC(0x00DC0DF0, int32_t, ArrayHelpers_AppendListWithCapacity_2, (Object__Array * array, int32_t length, Object * values, int32_t capacityIncrement, MethodInfo * method)); -DO_APP_FUNC(0x00DC11F0, int32_t, ArrayHelpers_AppendToImmutable, (InternedString__Array * array, InternedString__Array * values, MethodInfo * method)); -DO_APP_FUNC(0x00DC11F0, int32_t, ArrayHelpers_AppendToImmutable_1, (Object__Array * array, Object__Array * values, MethodInfo * method)); -DO_APP_FUNC(0x00DC12D0, int32_t, ArrayHelpers_AppendWithCapacity, (KeyValuePair_2_System_Int32_System_Int32___Array * array, int32_t count, KeyValuePair_2_System_Int32_System_Int32_ value, int32_t capacityIncrement, MethodInfo * method)); -DO_APP_FUNC(0x00DC12D0, int32_t, ArrayHelpers_AppendWithCapacity_1, (GCHandle__Array * array, int32_t count, GCHandle value, int32_t capacityIncrement, MethodInfo * method)); -DO_APP_FUNC(0x00DC13F0, int32_t, ArrayHelpers_AppendWithCapacity_2, (InputUser__Array * array, int32_t count, InputUser value, int32_t capacityIncrement, MethodInfo * method)); -DO_APP_FUNC(0x00DC1510, int32_t, ArrayHelpers_AppendWithCapacity_3, (Int32__Array * array, int32_t count, int32_t value, int32_t capacityIncrement, MethodInfo * method)); -DO_APP_FUNC(0x00DC1630, int32_t, ArrayHelpers_AppendWithCapacity_4, (InternedString__Array * array, int32_t count, InternedString value, int32_t capacityIncrement, MethodInfo * method)); -DO_APP_FUNC(0x00DC1820, int32_t, ArrayHelpers_AppendWithCapacity_5, (Object__Array * array, int32_t count, Object * value, int32_t capacityIncrement, MethodInfo * method)); -DO_APP_FUNC(0x00DC1940, int32_t, ArrayHelpers_AppendWithCapacity_6, (PointerModel__Array * array, int32_t count, PointerModel value, int32_t capacityIncrement, MethodInfo * method)); -DO_APP_FUNC(0x00DC1B50, int32_t, ArrayHelpers_AppendWithCapacity_7, (Single__Array * array, int32_t count, float value, int32_t capacityIncrement, MethodInfo * method)); -DO_APP_FUNC(0x00DC1630, int32_t, ArrayHelpers_AppendWithCapacity_8, (Substring__Array * array, int32_t count, Substring value, int32_t capacityIncrement, MethodInfo * method)); -DO_APP_FUNC(0x00DC1C70, int32_t, ArrayHelpers_AppendWithCapacity_9, (UInt64__Array * array, int32_t count, uint64_t value, int32_t capacityIncrement, MethodInfo * method)); -DO_APP_FUNC(0x00DC1D90, int32_t, ArrayHelpers_AppendWithCapacity_10, (InputActionRebindingExtensions_ParameterOverride__Array * array, int32_t count, InputActionRebindingExtensions_ParameterOverride value, int32_t capacityIncrement, MethodInfo * method)); -DO_APP_FUNC(0x00DC1F60, int32_t, ArrayHelpers_AppendWithCapacity_11, (InputControlLayout_ControlItem__Array * array, int32_t count, InputControlLayout_ControlItem value, int32_t capacityIncrement, MethodInfo * method)); +DO_APP_FUNC(0x00DBF6F0, int32_t, ArrayHelpers_Append, (KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object___Array * * array, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object_ value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5420, ArrayHelpers_Append__MethodInfo); +DO_APP_FUNC(0x00DBF8D0, int32_t, ArrayHelpers_Append_1, (InputBinding__Array * * array, InputBinding value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2A30, ArrayHelpers_Append_1__MethodInfo); +DO_APP_FUNC(0x00DBF6F0, int32_t, ArrayHelpers_Append_2, (InputControlScheme__Array * * array, InputControlScheme value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2950, ArrayHelpers_Append_2__MethodInfo); +DO_APP_FUNC(0x00DBFA40, int32_t, ArrayHelpers_Append_3, (Int32__Array * * array, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB028, ArrayHelpers_Append_3__MethodInfo); +DO_APP_FUNC(0x00DBFB40, int32_t, ArrayHelpers_Append_4, (InternedString__Array * * array, InternedString value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB1C0, ArrayHelpers_Append_4__MethodInfo); +DO_APP_FUNC(0x00DBFD10, int32_t, ArrayHelpers_Append_5, (Object__Array * * array, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x00DBFE10, int32_t, ArrayHelpers_Append_6, (Object__Array * * array, IEnumerable_1_System_Object_ * values, MethodInfo * method)); +DO_APP_FUNC(0x00DC0140, int32_t, ArrayHelpers_Append_7, (Vector2__Array * * array, Vector2 value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1400, ArrayHelpers_Append_7__MethodInfo); +DO_APP_FUNC(0x00DBFB40, int32_t, ArrayHelpers_Append_8, (InputControlScheme_DeviceRequirement__Array * * array, InputControlScheme_DeviceRequirement value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2740, ArrayHelpers_Append_8__MethodInfo); +DO_APP_FUNC(0x00DC0260, int32_t, ArrayHelpers_Append_9, (InputEventTrace_DeviceInfo__Array * * array, InputEventTrace_DeviceInfo value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0EC8, ArrayHelpers_Append_9__MethodInfo); +DO_APP_FUNC(0x00DC0450, int32_t, ArrayHelpers_Append_10, (InputRemoting_RemoteInputDevice__Array * * array, InputRemoting_RemoteInputDevice value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB048, ArrayHelpers_Append_10__MethodInfo); +DO_APP_FUNC(0x00DC0660, int32_t, ArrayHelpers_Append_11, (InputRemoting_RemoteSender__Array * * array, InputRemoting_RemoteSender value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB290, ArrayHelpers_Append_11__MethodInfo); +DO_APP_FUNC(0x00DBFB40, int32_t, ArrayHelpers_Append_12, (InputDeviceMatcher_MatcherJson_Capability__Array * * array, InputDeviceMatcher_MatcherJson_Capability value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC53C0, ArrayHelpers_Append_12__MethodInfo); +DO_APP_FUNC(0x00DC0850, int32_t, ArrayHelpers_AppendListWithCapacity, (Object__Array * * array, int32_t * length, InputControlList_1_System_Object_ values, int32_t capacityIncrement, MethodInfo * method)); +DO_APP_FUNC(0x00DC0B20, int32_t, ArrayHelpers_AppendListWithCapacity_1, (Object__Array * * array, int32_t * length, ReadOnlyArray_1_System_Object_ values, int32_t capacityIncrement, MethodInfo * method)); +DO_APP_FUNC(0x00DC0DF0, int32_t, ArrayHelpers_AppendListWithCapacity_2, (Object__Array * * array, int32_t * length, Object * values, int32_t capacityIncrement, MethodInfo * method)); +DO_APP_FUNC(0x00DC11F0, int32_t, ArrayHelpers_AppendToImmutable, (InternedString__Array * * array, InternedString__Array * values, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5558, ArrayHelpers_AppendToImmutable__MethodInfo); +DO_APP_FUNC(0x00DC11F0, int32_t, ArrayHelpers_AppendToImmutable_1, (Object__Array * * array, Object__Array * values, MethodInfo * method)); +DO_APP_FUNC(0x00DC12D0, int32_t, ArrayHelpers_AppendWithCapacity, (KeyValuePair_2_System_Int32_System_Int32___Array * * array, int32_t * count, KeyValuePair_2_System_Int32_System_Int32_ value, int32_t capacityIncrement, MethodInfo * method)); +DO_APP_FUNC(0x00DC12D0, int32_t, ArrayHelpers_AppendWithCapacity_1, (GCHandle__Array * * array, int32_t * count, GCHandle value, int32_t capacityIncrement, MethodInfo * method)); +DO_APP_FUNC(0x00DC13F0, int32_t, ArrayHelpers_AppendWithCapacity_2, (InputUser__Array * * array, int32_t * count, InputUser value, int32_t capacityIncrement, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD6F8, ArrayHelpers_AppendWithCapacity_2__MethodInfo); +DO_APP_FUNC(0x00DC1510, int32_t, ArrayHelpers_AppendWithCapacity_3, (Int32__Array * * array, int32_t * count, int32_t value, int32_t capacityIncrement, MethodInfo * method)); +DO_APP_FUNC(0x00DC1630, int32_t, ArrayHelpers_AppendWithCapacity_4, (InternedString__Array * * array, int32_t * count, InternedString value, int32_t capacityIncrement, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC72F8, ArrayHelpers_AppendWithCapacity_4__MethodInfo); +DO_APP_FUNC(0x00DC1820, int32_t, ArrayHelpers_AppendWithCapacity_5, (Object__Array * * array, int32_t * count, Object * value, int32_t capacityIncrement, MethodInfo * method)); +DO_APP_FUNC(0x00DC1940, int32_t, ArrayHelpers_AppendWithCapacity_6, (PointerModel__Array * * array, int32_t * count, PointerModel value, int32_t capacityIncrement, MethodInfo * method)); +DO_APP_FUNC(0x00DC1B50, int32_t, ArrayHelpers_AppendWithCapacity_7, (Single__Array * * array, int32_t * count, float value, int32_t capacityIncrement, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0D48, ArrayHelpers_AppendWithCapacity_7__MethodInfo); +DO_APP_FUNC(0x00DC1630, int32_t, ArrayHelpers_AppendWithCapacity_8, (Substring__Array * * array, int32_t * count, Substring value, int32_t capacityIncrement, MethodInfo * method)); +DO_APP_FUNC(0x00DC1C70, int32_t, ArrayHelpers_AppendWithCapacity_9, (UInt64__Array * * array, int32_t * count, uint64_t value, int32_t capacityIncrement, MethodInfo * method)); +DO_APP_FUNC(0x00DC1D90, int32_t, ArrayHelpers_AppendWithCapacity_10, (InputActionRebindingExtensions_ParameterOverride__Array * * array, int32_t * count, InputActionRebindingExtensions_ParameterOverride value, int32_t capacityIncrement, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC10D0, ArrayHelpers_AppendWithCapacity_10__MethodInfo); +DO_APP_FUNC(0x00DC1F60, int32_t, ArrayHelpers_AppendWithCapacity_11, (InputControlLayout_ControlItem__Array * * array, int32_t * count, InputControlLayout_ControlItem value, int32_t capacityIncrement, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8BC58, ArrayHelpers_AppendWithCapacity_11__MethodInfo); -DO_APP_FUNC(0x00DC2190, int32_t, ArrayHelpers_AppendWithCapacity_12, (InputManager_AvailableDevice__Array * array, int32_t count, InputManager_AvailableDevice value, int32_t capacityIncrement, MethodInfo * method)); -DO_APP_FUNC(0x00DC23B0, int32_t, ArrayHelpers_AppendWithCapacity_13, (InputManager_StateChangeMonitorListener__Array * array, int32_t count, InputManager_StateChangeMonitorListener value, int32_t capacityIncrement, MethodInfo * method)); -DO_APP_FUNC(0x00DC25B0, int32_t, ArrayHelpers_AppendWithCapacity_14, (InputManager_StateChangeMonitorTimeout__Array * array, int32_t count, InputManager_StateChangeMonitorTimeout value, int32_t capacityIncrement, MethodInfo * method)); -DO_APP_FUNC(0x00DC1630, int32_t, ArrayHelpers_AppendWithCapacity_15, (InputUser_OngoingAccountSelection__Array * array, int32_t count, InputUser_OngoingAccountSelection value, int32_t capacityIncrement, MethodInfo * method)); -DO_APP_FUNC(0x00DC27D0, int32_t, ArrayHelpers_AppendWithCapacity_16, (InputUser_UserData__Array * array, int32_t count, InputUser_UserData value, int32_t capacityIncrement, MethodInfo * method)); -DO_APP_FUNC(0x00DC12D0, int32_t, ArrayHelpers_AppendWithCapacity_17, (MemoryHelpers_BitRegion__Array * array, int32_t count, MemoryHelpers_BitRegion value, int32_t capacityIncrement, MethodInfo * method)); -DO_APP_FUNC(0x00DC2A00, int32_t, ArrayHelpers_AppendWithCapacity_18, (OnScreenControl_OnScreenDeviceInfo__Array * array, int32_t count, OnScreenControl_OnScreenDeviceInfo value, int32_t capacityIncrement, MethodInfo * method)); -DO_APP_FUNC(0x00DC2C20, int32_t, ArrayHelpers_AppendWithCapacity_19, (NativeArray_1_System_UInt64_ array, int32_t count, uint64_t value, int32_t capacityIncrement, Allocator__Enum allocator, MethodInfo * method)); +DO_APP_FUNC(0x00DC2190, int32_t, ArrayHelpers_AppendWithCapacity_12, (InputManager_AvailableDevice__Array * * array, int32_t * count, InputManager_AvailableDevice value, int32_t capacityIncrement, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9DF8, ArrayHelpers_AppendWithCapacity_12__MethodInfo); +DO_APP_FUNC(0x00DC23B0, int32_t, ArrayHelpers_AppendWithCapacity_13, (InputManager_StateChangeMonitorListener__Array * * array, int32_t * count, InputManager_StateChangeMonitorListener value, int32_t capacityIncrement, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCE010, ArrayHelpers_AppendWithCapacity_13__MethodInfo); +DO_APP_FUNC(0x00DC25B0, int32_t, ArrayHelpers_AppendWithCapacity_14, (InputManager_StateChangeMonitorTimeout__Array * * array, int32_t * count, InputManager_StateChangeMonitorTimeout value, int32_t capacityIncrement, MethodInfo * method)); +DO_APP_FUNC(0x00DC1630, int32_t, ArrayHelpers_AppendWithCapacity_15, (InputUser_OngoingAccountSelection__Array * * array, int32_t * count, InputUser_OngoingAccountSelection value, int32_t capacityIncrement, MethodInfo * method)); +DO_APP_FUNC(0x00DC27D0, int32_t, ArrayHelpers_AppendWithCapacity_16, (InputUser_UserData__Array * * array, int32_t * count, InputUser_UserData value, int32_t capacityIncrement, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD700, ArrayHelpers_AppendWithCapacity_16__MethodInfo); +DO_APP_FUNC(0x00DC12D0, int32_t, ArrayHelpers_AppendWithCapacity_17, (MemoryHelpers_BitRegion__Array * * array, int32_t * count, MemoryHelpers_BitRegion value, int32_t capacityIncrement, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCE008, ArrayHelpers_AppendWithCapacity_17__MethodInfo); +DO_APP_FUNC(0x00DC2A00, int32_t, ArrayHelpers_AppendWithCapacity_18, (OnScreenControl_OnScreenDeviceInfo__Array * * array, int32_t * count, OnScreenControl_OnScreenDeviceInfo value, int32_t capacityIncrement, MethodInfo * method)); +DO_APP_FUNC(0x00DC2C20, int32_t, ArrayHelpers_AppendWithCapacity_19, (NativeArray_1_System_UInt64_ * array, int32_t * count, uint64_t value, int32_t capacityIncrement, Allocator__Enum allocator, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4748, ArrayHelpers_AppendWithCapacity_19__MethodInfo); DO_APP_FUNC(0x00DC2C90, void, ArrayHelpers_Clear, (Object__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x00DC2CB0, void, ArrayHelpers_Clear_1, (Object__Array * array, int32_t count, MethodInfo * method)); +DO_APP_FUNC(0x00DC2CB0, void, ArrayHelpers_Clear_1, (Object__Array * array, int32_t * count, MethodInfo * method)); DO_APP_FUNC(0x00DC2CE0, void, ArrayHelpers_Clear_2, (Object__Array * array, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x00DC2CE0, void, ArrayHelpers_Clear_3, (InputManager_StateChangeMonitorListener__Array * array, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCE018, ArrayHelpers_Clear_3__MethodInfo); DO_APP_FUNC(0x00DC2D00, Object__Array *, ArrayHelpers_Clone, (Object__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00DC2F20, bool, ArrayHelpers_Contains, (Int32__Array * array, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCAFE0, ArrayHelpers_Contains__MethodInfo); DO_APP_FUNC(0x00DC2FC0, bool, ArrayHelpers_Contains_1, (Object__Array * array, Object * value, MethodInfo * method)); DO_APP_FUNC(0x00DC3060, bool, ArrayHelpers_ContainsReference, (Object__Array * array, Object * value, MethodInfo * method)); DO_APP_FUNC(0x00DC3080, bool, ArrayHelpers_ContainsReference_1, (Object__Array * array, int32_t count, Object * value, MethodInfo * method)); @@ -213185,55 +236265,71 @@ DO_APP_FUNC(0x00DC30F0, UInt64__Array *, ArrayHelpers_Copy_7, (UInt64__Array * a DO_APP_FUNC(0x00DC30F0, InputManager_StateChangeMonitorTimeout__Array *, ArrayHelpers_Copy_8, (InputManager_StateChangeMonitorTimeout__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00DC30F0, InputUser_OngoingAccountSelection__Array *, ArrayHelpers_Copy_9, (InputUser_OngoingAccountSelection__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00DC30F0, OnScreenControl_OnScreenDeviceInfo__Array *, ArrayHelpers_Copy_10, (OnScreenControl_OnScreenDeviceInfo__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x00DC3220, void, ArrayHelpers_DuplicateWithCapacity, (Object__Array * array, int32_t count, int32_t capacity, int32_t capacityIncrement, MethodInfo * method)); -DO_APP_FUNC(0x00DC34E0, void, ArrayHelpers_DuplicateWithCapacity_1, (Touch_1__Array * array, int32_t count, int32_t capacity, int32_t capacityIncrement, MethodInfo * method)); -DO_APP_FUNC(0x00DC37A0, void, ArrayHelpers_EnsureCapacity, (Object__Array * array, int32_t count, int32_t capacity, int32_t capacityIncrement, MethodInfo * method)); -DO_APP_FUNC(0x00DC38D0, void, ArrayHelpers_EnsureCapacity_1, (Touch_1__Array * array, int32_t count, int32_t capacity, int32_t capacityIncrement, MethodInfo * method)); -DO_APP_FUNC(0x00DC3A00, bool, ArrayHelpers_Erase, (Int32__Array * array, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00DC3A00, bool, ArrayHelpers_Erase_1, (Object__Array * array, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x00DC3A70, void, ArrayHelpers_EraseAt, (InputBinding__Array * array, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00DC3A70, void, ArrayHelpers_EraseAt_1, (InputControlScheme__Array * array, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00DC3A70, void, ArrayHelpers_EraseAt_2, (Int32__Array * array, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00DC3A70, void, ArrayHelpers_EraseAt_3, (Object__Array * array, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00DC3A70, void, ArrayHelpers_EraseAt_4, (Vector2__Array * array, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00DC3A70, void, ArrayHelpers_EraseAt_5, (InputRemoting_RemoteSender__Array * array, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00DC3B50, void, ArrayHelpers_EraseAtByMovingTail, (KeyValuePair_2_System_Int32_System_Int32___Array * array, int32_t count, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00DC3B50, void, ArrayHelpers_EraseAtByMovingTail_1, (GCHandle__Array * array, int32_t count, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00DC3BC0, void, ArrayHelpers_EraseAtByMovingTail_2, (Int32__Array * array, int32_t count, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00DC3C20, void, ArrayHelpers_EraseAtByMovingTail_3, (InternedString__Array * array, int32_t count, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00DC3D60, void, ArrayHelpers_EraseAtByMovingTail_4, (Object__Array * array, int32_t count, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00DC3DD0, void, ArrayHelpers_EraseAtByMovingTail_5, (PointerModel__Array * array, int32_t count, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00DC3C20, void, ArrayHelpers_EraseAtByMovingTail_6, (Substring__Array * array, int32_t count, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00DC3F80, void, ArrayHelpers_EraseAtByMovingTail_7, (UInt64__Array * array, int32_t count, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00DC3FE0, void, ArrayHelpers_EraseAtByMovingTail_8, (InputManager_StateChangeMonitorTimeout__Array * array, int32_t count, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00DC3C20, void, ArrayHelpers_EraseAtByMovingTail_9, (InputUser_OngoingAccountSelection__Array * array, int32_t count, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00DC4170, void, ArrayHelpers_EraseAtByMovingTail_10, (OnScreenControl_OnScreenDeviceInfo__Array * array, int32_t count, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00DC4300, void, ArrayHelpers_EraseAtWithCapacity, (KeyValuePair_2_System_Int32_System_Int32___Array * array, int32_t count, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00DC4300, void, ArrayHelpers_EraseAtWithCapacity_1, (GCHandle__Array * array, int32_t count, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00DC4370, void, ArrayHelpers_EraseAtWithCapacity_2, (InputUser__Array * array, int32_t count, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00DC4370, void, ArrayHelpers_EraseAtWithCapacity_3, (Int32__Array * array, int32_t count, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00DC43E0, void, ArrayHelpers_EraseAtWithCapacity_4, (InternedString__Array * array, int32_t count, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00DC44B0, void, ArrayHelpers_EraseAtWithCapacity_5, (Object__Array * array, int32_t count, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00DC4520, void, ArrayHelpers_EraseAtWithCapacity_6, (PointerModel__Array * array, int32_t count, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00DC4370, void, ArrayHelpers_EraseAtWithCapacity_7, (Single__Array * array, int32_t count, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00DC43E0, void, ArrayHelpers_EraseAtWithCapacity_8, (Substring__Array * array, int32_t count, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00DC4630, void, ArrayHelpers_EraseAtWithCapacity_9, (NativeArray_1_System_UInt64_ array, int32_t count, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00DC4300, void, ArrayHelpers_EraseAtWithCapacity_10, (UInt64__Array * array, int32_t count, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00DC46E0, void, ArrayHelpers_EraseAtWithCapacity_11, (InputManager_AvailableDevice__Array * array, int32_t count, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00DC47D0, void, ArrayHelpers_EraseAtWithCapacity_12, (InputManager_StateChangeMonitorListener__Array * array, int32_t count, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00DC48B0, void, ArrayHelpers_EraseAtWithCapacity_13, (InputManager_StateChangeMonitorTimeout__Array * array, int32_t count, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00DC49A0, void, ArrayHelpers_EraseAtWithCapacity_14, (InputManager_StateChangeMonitorsForDevice__Array * array, int32_t count, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00DC43E0, void, ArrayHelpers_EraseAtWithCapacity_15, (InputUser_OngoingAccountSelection__Array * array, int32_t count, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00DC4AA0, void, ArrayHelpers_EraseAtWithCapacity_16, (InputUser_UserData__Array * array, int32_t count, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00DC4300, void, ArrayHelpers_EraseAtWithCapacity_17, (MemoryHelpers_BitRegion__Array * array, int32_t count, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00DC4BB0, void, ArrayHelpers_EraseAtWithCapacity_18, (OnScreenControl_OnScreenDeviceInfo__Array * array, int32_t count, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00DC4CA0, void, ArrayHelpers_EraseSliceWithCapacity, (Object__Array * array, int32_t length, int32_t index, int32_t count, MethodInfo * method)); -DO_APP_FUNC(0x00DC4D80, int32_t, ArrayHelpers_GrowBy, (Object__Array * array, int32_t count, MethodInfo * method)); -DO_APP_FUNC(0x00DC4E40, int32_t, ArrayHelpers_GrowBy_1, (NativeArray_1_System_UInt64_ array, int32_t count, Allocator__Enum allocator, MethodInfo * method)); -DO_APP_FUNC(0x00DC4F60, int32_t, ArrayHelpers_GrowWithCapacity, (Object__Array * array, int32_t count, int32_t growBy, int32_t capacityIncrement, MethodInfo * method)); +DO_APP_FUNC(0x00DC3220, void, ArrayHelpers_DuplicateWithCapacity, (Object__Array * * array, int32_t count, int32_t capacity, int32_t capacityIncrement, MethodInfo * method)); +DO_APP_FUNC(0x00DC34E0, void, ArrayHelpers_DuplicateWithCapacity_1, (Touch_1__Array * * array, int32_t count, int32_t capacity, int32_t capacityIncrement, MethodInfo * method)); +DO_APP_FUNC(0x00DC37A0, void, ArrayHelpers_EnsureCapacity, (Object__Array * * array, int32_t count, int32_t capacity, int32_t capacityIncrement, MethodInfo * method)); +DO_APP_FUNC(0x00DC38D0, void, ArrayHelpers_EnsureCapacity_1, (Touch_1__Array * * array, int32_t count, int32_t capacity, int32_t capacityIncrement, MethodInfo * method)); +DO_APP_FUNC(0x00DC3A00, bool, ArrayHelpers_Erase, (Int32__Array * * array, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCAFE8, ArrayHelpers_Erase__MethodInfo); +DO_APP_FUNC(0x00DC3A00, bool, ArrayHelpers_Erase_1, (Object__Array * * array, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x00DC3A70, void, ArrayHelpers_EraseAt, (InputBinding__Array * * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC28D8, ArrayHelpers_EraseAt__MethodInfo); +DO_APP_FUNC(0x00DC3A70, void, ArrayHelpers_EraseAt_1, (InputControlScheme__Array * * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC29D0, ArrayHelpers_EraseAt_1__MethodInfo); +DO_APP_FUNC(0x00DC3A70, void, ArrayHelpers_EraseAt_2, (Int32__Array * * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1450, ArrayHelpers_EraseAt_2__MethodInfo); +DO_APP_FUNC(0x00DC3A70, void, ArrayHelpers_EraseAt_3, (Object__Array * * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00DC3A70, void, ArrayHelpers_EraseAt_4, (Vector2__Array * * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1448, ArrayHelpers_EraseAt_4__MethodInfo); +DO_APP_FUNC(0x00DC3A70, void, ArrayHelpers_EraseAt_5, (InputRemoting_RemoteSender__Array * * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB268, ArrayHelpers_EraseAt_5__MethodInfo); +DO_APP_FUNC(0x00DC3B50, void, ArrayHelpers_EraseAtByMovingTail, (KeyValuePair_2_System_Int32_System_Int32___Array * array, int32_t * count, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00DC3B50, void, ArrayHelpers_EraseAtByMovingTail_1, (GCHandle__Array * array, int32_t * count, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00DC3BC0, void, ArrayHelpers_EraseAtByMovingTail_2, (Int32__Array * array, int32_t * count, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00DC3C20, void, ArrayHelpers_EraseAtByMovingTail_3, (InternedString__Array * array, int32_t * count, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00DC3D60, void, ArrayHelpers_EraseAtByMovingTail_4, (Object__Array * array, int32_t * count, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00DC3DD0, void, ArrayHelpers_EraseAtByMovingTail_5, (PointerModel__Array * array, int32_t * count, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00DC3C20, void, ArrayHelpers_EraseAtByMovingTail_6, (Substring__Array * array, int32_t * count, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00DC3F80, void, ArrayHelpers_EraseAtByMovingTail_7, (UInt64__Array * array, int32_t * count, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00DC3FE0, void, ArrayHelpers_EraseAtByMovingTail_8, (InputManager_StateChangeMonitorTimeout__Array * array, int32_t * count, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00DC3C20, void, ArrayHelpers_EraseAtByMovingTail_9, (InputUser_OngoingAccountSelection__Array * array, int32_t * count, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00DC4170, void, ArrayHelpers_EraseAtByMovingTail_10, (OnScreenControl_OnScreenDeviceInfo__Array * array, int32_t * count, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00DC4300, void, ArrayHelpers_EraseAtWithCapacity, (KeyValuePair_2_System_Int32_System_Int32___Array * array, int32_t * count, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00DC4300, void, ArrayHelpers_EraseAtWithCapacity_1, (GCHandle__Array * array, int32_t * count, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00DC4370, void, ArrayHelpers_EraseAtWithCapacity_2, (InputUser__Array * array, int32_t * count, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD708, ArrayHelpers_EraseAtWithCapacity_2__MethodInfo); +DO_APP_FUNC(0x00DC4370, void, ArrayHelpers_EraseAtWithCapacity_3, (Int32__Array * array, int32_t * count, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00DC43E0, void, ArrayHelpers_EraseAtWithCapacity_4, (InternedString__Array * array, int32_t * count, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC72E0, ArrayHelpers_EraseAtWithCapacity_4__MethodInfo); +DO_APP_FUNC(0x00DC44B0, void, ArrayHelpers_EraseAtWithCapacity_5, (Object__Array * array, int32_t * count, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00DC4520, void, ArrayHelpers_EraseAtWithCapacity_6, (PointerModel__Array * array, int32_t * count, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00DC4370, void, ArrayHelpers_EraseAtWithCapacity_7, (Single__Array * array, int32_t * count, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0D58, ArrayHelpers_EraseAtWithCapacity_7__MethodInfo); +DO_APP_FUNC(0x00DC43E0, void, ArrayHelpers_EraseAtWithCapacity_8, (Substring__Array * array, int32_t * count, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00DC4630, void, ArrayHelpers_EraseAtWithCapacity_9, (NativeArray_1_System_UInt64_ array, int32_t * count, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4790, ArrayHelpers_EraseAtWithCapacity_9__MethodInfo); +DO_APP_FUNC(0x00DC4300, void, ArrayHelpers_EraseAtWithCapacity_10, (UInt64__Array * array, int32_t * count, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00DC46E0, void, ArrayHelpers_EraseAtWithCapacity_11, (InputManager_AvailableDevice__Array * array, int32_t * count, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA640, ArrayHelpers_EraseAtWithCapacity_11__MethodInfo); +DO_APP_FUNC(0x00DC47D0, void, ArrayHelpers_EraseAtWithCapacity_12, (InputManager_StateChangeMonitorListener__Array * array, int32_t * count, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9BD0, ArrayHelpers_EraseAtWithCapacity_12__MethodInfo); +DO_APP_FUNC(0x00DC48B0, void, ArrayHelpers_EraseAtWithCapacity_13, (InputManager_StateChangeMonitorTimeout__Array * array, int32_t * count, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00DC49A0, void, ArrayHelpers_EraseAtWithCapacity_14, (InputManager_StateChangeMonitorsForDevice__Array * array, int32_t * count, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA638, ArrayHelpers_EraseAtWithCapacity_14__MethodInfo); +DO_APP_FUNC(0x00DC43E0, void, ArrayHelpers_EraseAtWithCapacity_15, (InputUser_OngoingAccountSelection__Array * array, int32_t * count, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00DC4AA0, void, ArrayHelpers_EraseAtWithCapacity_16, (InputUser_UserData__Array * array, int32_t * count, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD6B0, ArrayHelpers_EraseAtWithCapacity_16__MethodInfo); +DO_APP_FUNC(0x00DC4300, void, ArrayHelpers_EraseAtWithCapacity_17, (MemoryHelpers_BitRegion__Array * array, int32_t * count, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9C28, ArrayHelpers_EraseAtWithCapacity_17__MethodInfo); +DO_APP_FUNC(0x00DC4BB0, void, ArrayHelpers_EraseAtWithCapacity_18, (OnScreenControl_OnScreenDeviceInfo__Array * array, int32_t * count, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00DC4CA0, void, ArrayHelpers_EraseSliceWithCapacity, (Object__Array * * array, int32_t * length, int32_t index, int32_t count, MethodInfo * method)); +DO_APP_FUNC(0x00DC4D80, int32_t, ArrayHelpers_GrowBy, (Object__Array * * array, int32_t count, MethodInfo * method)); +DO_APP_FUNC(0x00DC4E40, int32_t, ArrayHelpers_GrowBy_1, (NativeArray_1_System_UInt64_ * array, int32_t count, Allocator__Enum allocator, MethodInfo * method)); +DO_APP_FUNC(0x00DC4F60, int32_t, ArrayHelpers_GrowWithCapacity, (Object__Array * * array, int32_t * count, int32_t growBy, int32_t capacityIncrement, MethodInfo * method)); DO_APP_FUNC(0x00DC4FC0, bool, ArrayHelpers_HaveDuplicateReferences, (Object__Array * first, int32_t index, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x00DC5040, bool, ArrayHelpers_HaveEqualElements, (Object__Array * first, Object__Array * second, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x00DC5150, int32_t, ArrayHelpers_IndexOf, (InputBinding__Array * array, Predicate_1_UnityEngine_InputSystem_InputBinding_ * predicate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2BB8, ArrayHelpers_IndexOf__MethodInfo); DO_APP_FUNC(0x00DC5240, int32_t, ArrayHelpers_IndexOf_1, (Object__Array * array, Predicate_1_Object_ * predicate, MethodInfo * method)); DO_APP_FUNC(0x00DC52E0, int32_t, ArrayHelpers_IndexOf_2, (Int32__Array * array, int32_t value, int32_t startIndex, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x00DC53A0, int32_t, ArrayHelpers_IndexOf_3, (Object__Array * array, Object * value, int32_t startIndex, int32_t count, MethodInfo * method)); @@ -213241,11 +236337,16 @@ DO_APP_FUNC(0x00DC5460, int32_t, ArrayHelpers_IndexOf_4, (Object__Array * array, DO_APP_FUNC(0x00DC5510, int32_t, ArrayHelpers_IndexOfReference, (Object__Array * array, Object * value, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x00DC5540, int32_t, ArrayHelpers_IndexOfReference_1, (Object__Array * array, Object * value, int32_t startIndex, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x00DC55A0, int32_t, ArrayHelpers_IndexOfValue, (InternedString__Array * array, InternedString value, int32_t startIndex, int32_t count, MethodInfo * method)); -DO_APP_FUNC(0x00DC5610, void, ArrayHelpers_InsertAt, (InputBinding__Array * array, int32_t index, InputBinding value, MethodInfo * method)); -DO_APP_FUNC(0x00DC5810, void, ArrayHelpers_InsertAt_1, (Object__Array * array, int32_t index, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x00DC5980, void, ArrayHelpers_InsertAt_2, (UInt16__Array * array, int32_t index, uint16_t value, MethodInfo * method)); -DO_APP_FUNC(0x00DC5B00, void, ArrayHelpers_InsertAtWithCapacity, (Object__Array * array, int32_t count, int32_t index, Object * value, int32_t capacityIncrement, MethodInfo * method)); -DO_APP_FUNC(0x00DC5BA0, void, ArrayHelpers_InsertAtWithCapacity_1, (Touch_1__Array * array, int32_t count, int32_t index, Touch_1 value, int32_t capacityIncrement, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC72D8, ArrayHelpers_IndexOfValue__MethodInfo); +DO_APP_FUNC(0x00DC5610, void, ArrayHelpers_InsertAt, (InputBinding__Array * * array, int32_t index, InputBinding value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD0A8, ArrayHelpers_InsertAt__MethodInfo); +DO_APP_FUNC(0x00DC5810, void, ArrayHelpers_InsertAt_1, (Object__Array * * array, int32_t index, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD090, ArrayHelpers_InsertAt_1__MethodInfo); +DO_APP_FUNC(0x00DC5980, void, ArrayHelpers_InsertAt_2, (UInt16__Array * * array, int32_t index, uint16_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD098, ArrayHelpers_InsertAt_2__MethodInfo); +DO_APP_FUNC(0x00DC5B00, void, ArrayHelpers_InsertAtWithCapacity, (Object__Array * * array, int32_t * count, int32_t index, Object * value, int32_t capacityIncrement, MethodInfo * method)); +DO_APP_FUNC(0x00DC5BA0, void, ArrayHelpers_InsertAtWithCapacity_1, (Touch_1__Array * * array, int32_t * count, int32_t index, Touch_1 value, int32_t capacityIncrement, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1470, ArrayHelpers_InsertAtWithCapacity_1__MethodInfo); DO_APP_FUNC(0x00DC5CB0, KeyValuePair_2_System_Int32_System_Int32___Array *, ArrayHelpers_Join, (KeyValuePair_2_System_Int32_System_Int32_ value, KeyValuePair_2_System_Int32_System_Int32___Array * values, MethodInfo * method)); DO_APP_FUNC(0x00DC5CB0, GCHandle__Array *, ArrayHelpers_Join_1, (GCHandle value, GCHandle__Array * values, MethodInfo * method)); DO_APP_FUNC(0x00DC5D70, Int32__Array *, ArrayHelpers_Join_2, (int32_t value, Int32__Array * values, MethodInfo * method)); @@ -213258,31 +236359,42 @@ DO_APP_FUNC(0x00DC6200, InputManager_StateChangeMonitorTimeout__Array *, ArrayHe DO_APP_FUNC(0x00DC5E30, InputUser_OngoingAccountSelection__Array *, ArrayHelpers_Join_9, (InputUser_OngoingAccountSelection value, InputUser_OngoingAccountSelection__Array * values, MethodInfo * method)); DO_APP_FUNC(0x00DC6320, OnScreenControl_OnScreenDeviceInfo__Array *, ArrayHelpers_Join_10, (OnScreenControl_OnScreenDeviceInfo value, OnScreenControl_OnScreenDeviceInfo__Array * values, MethodInfo * method)); DO_APP_FUNC(0x00DC6440, int32_t, ArrayHelpers_LengthSafe, (InputBinding__Array * array, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC14F0, ArrayHelpers_LengthSafe__MethodInfo); DO_APP_FUNC(0x00DC6440, int32_t, ArrayHelpers_LengthSafe_1, (InputControlScheme__Array * array, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC13D0, ArrayHelpers_LengthSafe_1__MethodInfo); DO_APP_FUNC(0x00DC6440, int32_t, ArrayHelpers_LengthSafe_2, (Object__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00DC6440, int32_t, ArrayHelpers_LengthSafe_3, (UInt32__Array * array, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7578, ArrayHelpers_LengthSafe_3__MethodInfo); DO_APP_FUNC(0x00DC6440, int32_t, ArrayHelpers_LengthSafe_4, (InputEventTrace_DeviceInfo__Array * array, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0EF8, ArrayHelpers_LengthSafe_4__MethodInfo); DO_APP_FUNC(0x00DC6440, int32_t, ArrayHelpers_LengthSafe_5, (InputManager_StateChangeMonitorsForDevice__Array * array, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA5D8, ArrayHelpers_LengthSafe_5__MethodInfo); DO_APP_FUNC(0x00DC6450, InternedString__Array *, ArrayHelpers_Merge, (InternedString__Array * first, InternedString__Array * second, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8BD50, ArrayHelpers_Merge__MethodInfo); DO_APP_FUNC(0x00DC6670, Object__Array *, ArrayHelpers_Merge_1, (Object__Array * first, Object__Array * second, MethodInfo * method)); DO_APP_FUNC(0x00DC6880, Object__Array *, ArrayHelpers_Merge_2, (Object__Array * first, Object__Array * second, IEqualityComparer_1_System_Object_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00DC6B70, void, ArrayHelpers_MoveSlice, (Object__Array * array, int32_t sourceIndex, int32_t destinationIndex, int32_t count, MethodInfo * method)); -DO_APP_FUNC(0x00DC6D20, void, ArrayHelpers_PutAtIfNotSet, (Object__Array * array, int32_t index, Func_1_Object_ * valueFn, MethodInfo * method)); -DO_APP_FUNC(0x00DC6E10, void, ArrayHelpers_Resize, (NativeArray_1_System_UInt64_ array, int32_t newSize, Allocator__Enum allocator, MethodInfo * method)); +DO_APP_FUNC(0x00DC6D20, void, ArrayHelpers_PutAtIfNotSet, (Object__Array * * array, int32_t index, Func_1_Object_ * valueFn, MethodInfo * method)); +DO_APP_FUNC(0x00DC6E10, void, ArrayHelpers_Resize, (NativeArray_1_System_UInt64_ * array, int32_t newSize, Allocator__Enum allocator, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4808, ArrayHelpers_Resize__MethodInfo); DO_APP_FUNC(0x00DC6F30, Object__Array *, ArrayHelpers_Select, (InternedString__Array * array, Func_2_UnityEngine_InputSystem_Utilities_InternedString_Object_ * converter, MethodInfo * method)); DO_APP_FUNC(0x00DC7080, InternedString__Array *, ArrayHelpers_Select_1, (Object__Array * array, Func_2_Object_UnityEngine_InputSystem_Utilities_InternedString_ * converter, MethodInfo * method)); DO_APP_FUNC(0x00DC71E0, Object__Array *, ArrayHelpers_Select_2, (Object__Array * array, Func_2_Object_Object_ * converter, MethodInfo * method)); -DO_APP_FUNC(0x00DC7320, void, ArrayHelpers_Swap, (Object * first, Object * second, MethodInfo * method)); +DO_APP_FUNC(0x00DC7320, void, ArrayHelpers_Swap, (Object * * first, Object * * second, MethodInfo * method)); DO_APP_FUNC(0x00DC73D0, void, ArrayHelpers_SwapElements, (Object__Array * array, int32_t index1, int32_t index2, MethodInfo * method)); DO_APP_FUNC(0x00DC7420, void, ArrayHelpers_SwapElements_1, (Single__Array * array, int32_t index1, int32_t index2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0C98, ArrayHelpers_SwapElements_1__MethodInfo); DO_APP_FUNC(0x00DC7470, void, ArrayHelpers_SwapElements_2, (NativeArray_1_System_UInt64_ array, int32_t index1, int32_t index2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4710, ArrayHelpers_SwapElements_2__MethodInfo); DO_APP_FUNC(0x00DC74A0, void, ArrayHelpers_SwapElements_3, (InputManager_StateChangeMonitorListener__Array * array, int32_t index1, int32_t index2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCDFF8, ArrayHelpers_SwapElements_3__MethodInfo); DO_APP_FUNC(0x00DC73D0, void, ArrayHelpers_SwapElements_4, (MemoryHelpers_BitRegion__Array * array, int32_t index1, int32_t index2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCE000, ArrayHelpers_SwapElements_4__MethodInfo); DO_APP_FUNC(0x00DC7500, void, ArraySegmentExtensions_Clear, (ArraySegment_1_Object_ segment, MethodInfo * method)); DO_APP_FUNC(0x00DC7500, void, ArraySegmentExtensions_Clear_1, (ArraySegment_1_Single_ segment, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C93720, ArraySegmentExtensions_Clear_1__MethodInfo); DO_APP_FUNC(0x00DC7550, int32_t, ArraySegmentExtensions_CopyFrom, (ArraySegment_1_Object_ destination, Object__Array * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD080, ArraySegmentExtensions_CopyFrom__MethodInfo); DO_APP_FUNC(0x00DC7660, int32_t, ArraySegmentExtensions_CopyFrom_1, (ArraySegment_1_Single_ destination, Single__Array * source, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C95248, ArraySegmentExtensions_CopyFrom_1__MethodInfo); DO_APP_FUNC(0x00DC7770, ArraySegment_1_Byte_, ArraySegmentExtensions_CopyToSegment, (ArraySegment_1_Byte_ source, Byte__Array * destination, int32_t destinationOffset, MethodInfo * method)); @@ -213292,60 +236404,77 @@ DO_APP_FUNC_METHODINFO(0x03C933F8, ArraySegmentExtensions_Pin__MethodInfo); DO_APP_FUNC(0x00DC7A60, ArraySegmentExtensions_DisposableHandle, ArraySegmentExtensions_Pin_1, (ArraySegment_1_Single_ segment, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C93400, ArraySegmentExtensions_Pin_1__MethodInfo); DO_APP_FUNC(0x00DC7B80, Object__Array *, ArrayTools_Add, (Object__Array * array, Object * item, MethodInfo * method)); -DO_APP_FUNC(0x00DC7CB0, int32_t, ArrayTools_Add_1, (Object__Array * array, Object * item, MethodInfo * method)); +DO_APP_FUNC(0x00DC7CB0, int32_t, ArrayTools_Add_1, (Object__Array * * array, Object * item, MethodInfo * method)); DO_APP_FUNC(0x00DC7E40, Object__Array *, ArrayTools_AddIfUnique_1, (Object__Array * array, Object * item, MethodInfo * method)); -DO_APP_FUNC(0x00DC7EC0, int32_t, ArrayTools_AddIfUnique_2, (Object__Array * array, Object * item, MethodInfo * method)); +DO_APP_FUNC(0x00DC7EC0, int32_t, ArrayTools_AddIfUnique_2, (Object__Array * * array, Object * item, MethodInfo * method)); DO_APP_FUNC(0x00DC7F40, Object__Array *, ArrayTools_Combine_4, (Object__Array * array1, Object__Array * array2, MethodInfo * method)); -DO_APP_FUNC(0x00DC8130, void, ArrayTools_Combine_5, (Object__Array * array1, Object__Array * array2, MethodInfo * method)); -DO_APP_FUNC(0x00DC84A0, void, ArrayTools_Compact, (Object__Array * array, MethodInfo * method)); +DO_APP_FUNC(0x00DC8130, void, ArrayTools_Combine_5, (Object__Array * * array1, Object__Array * array2, MethodInfo * method)); +DO_APP_FUNC(0x00DC84A0, void, ArrayTools_Compact, (Object__Array * * array, MethodInfo * method)); DO_APP_FUNC(0x00DC85A0, bool, ArrayTools_Contains_1, (Guid__Array * array, Guid item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCFAA0, ArrayTools_Contains_1__MethodInfo); DO_APP_FUNC(0x00DC8660, bool, ArrayTools_Contains_2, (Int32__Array * array, int32_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC0E8, ArrayTools_Contains_2__MethodInfo); DO_APP_FUNC(0x00DC8700, bool, ArrayTools_Contains_3, (Object__Array * array, Object * item, MethodInfo * method)); DO_APP_FUNC(0x00DC87B0, bool, ArrayTools_Contains_4, (PidVid__Array * array, PidVid item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9660, ArrayTools_Contains_4__MethodInfo); DO_APP_FUNC(0x00DC8850, int32_t, ArrayTools_Count, (Object__Array * array, Predicate_1_Object_ * predicate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD048, ArrayTools_Count__MethodInfo); DO_APP_FUNC(0x00DC8940, Object__Array *, ArrayTools_DeepClone, (Object__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x00DC8AC0, void, ArrayTools_Expand, (Object__Array * array, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x00DC8AC0, void, ArrayTools_Expand, (Object__Array * * array, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x00DC8CB0, void, ArrayTools_Fill, (Int32__Array * array, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB9088, ArrayTools_Fill__MethodInfo); DO_APP_FUNC(0x00DC8CF0, void, ArrayTools_Fill_1, (Object__Array * array, Object * value, MethodInfo * method)); DO_APP_FUNC(0x00DC8D80, void, ArrayTools_Fill_2, (Object__Array * array, Object * value, int32_t startIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD028, ArrayTools_Fill_2__MethodInfo); DO_APP_FUNC(0x00DC8E70, void, ArrayTools_Fill_3, (Object__Array * array, Object * value, int32_t startIndex, int32_t length, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD038, ArrayTools_Fill_3__MethodInfo); DO_APP_FUNC(0x00DC8F60, Object *, ArrayTools_Find, (Object__Array * array, Predicate_1_Object_ * predicate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD008, ArrayTools_Find__MethodInfo); DO_APP_FUNC(0x00DC9050, int32_t, ArrayTools_IndexOf_9, (Object__Array * array, Object * item, MethodInfo * method)); DO_APP_FUNC(0x00DC9100, Object__Array *, ArrayTools_Insert, (Object__Array * array, int32_t index, Object * item, MethodInfo * method)); -DO_APP_FUNC(0x00DC9320, int32_t, ArrayTools_Insert_1, (Object__Array * array, int32_t index, Object * item, MethodInfo * method)); +DO_APP_FUNC(0x00DC9320, int32_t, ArrayTools_Insert_1, (Object__Array * * array, int32_t index, Object * item, MethodInfo * method)); DO_APP_FUNC(0x00DC9580, bool, ArrayTools_IsNullOrEmpty, (Object__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00DC9670, void, ArrayTools_MoveEntryDown, (Object__Array * array, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x00DC96F0, void, ArrayTools_MoveEntryUp, (Object__Array * array, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x00DC9760, Object__Array *, ArrayTools_ParseArray, (String * line, MethodInfo * method)); DO_APP_FUNC(0x00DC9C00, void, ArrayTools_Populate, (Object__Array * array, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACFF0, ArrayTools_Populate__MethodInfo); DO_APP_FUNC(0x00DC9C80, void, ArrayTools_Populate_1, (Object__Array * array, Func_1_Object_ * instantiator, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAD000, ArrayTools_Populate_1__MethodInfo); DO_APP_FUNC(0x00DC9D10, void, ArrayTools_Populate_2, (Object__Array * array, int32_t startIndex, int32_t length, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACFC8, ArrayTools_Populate_2__MethodInfo); DO_APP_FUNC(0x00DC9F40, void, ArrayTools_Populate_3, (Object__Array * array, int32_t startIndex, int32_t length, Func_1_Object_ * instantiator, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACFC0, ArrayTools_Populate_3__MethodInfo); DO_APP_FUNC(0x00DCA190, Object__Array *, ArrayTools_Remove_1, (Object__Array * array, Object * item, MethodInfo * method)); -DO_APP_FUNC(0x00DCA270, bool, ArrayTools_Remove_2, (Object__Array * array, Object * item, MethodInfo * method)); +DO_APP_FUNC(0x00DCA270, bool, ArrayTools_Remove_2, (Object__Array * * array, Object * item, MethodInfo * method)); DO_APP_FUNC(0x00DCA340, Object__Array *, ArrayTools_RemoveAt, (Object__Array * array, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00DCA510, bool, ArrayTools_RemoveAt_1, (Object__Array * array, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00DCA510, bool, ArrayTools_RemoveAt_1, (Object__Array * * array, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x00DCA740, Int32__Array *, ArrayTools_ShallowCopy_3, (Int32__Array * array, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF96C0, ArrayTools_ShallowCopy_3__MethodInfo); DO_APP_FUNC(0x00DCA740, Int32Enum__Enum__Array *, ArrayTools_ShallowCopy_4, (Int32Enum__Enum__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00DCA740, Object__Array *, ArrayTools_ShallowCopy_5, (Object__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00DCA870, void, ArrayTools_ShallowCopy_6, (Object__Array * sourceArray, Object__Array * targetArray, MethodInfo * method)); -DO_APP_FUNC(0x00DCA950, Object__Array *, ArrayTools_SortAscending, (Object__Array * array, Int32__Array * sortedIndices, MethodInfo * method)); -DO_APP_FUNC(0x00DCAC60, Object__Array *, ArrayTools_SortDescending, (Object__Array * array, Int32__Array * sortedIndices, bool ascending, MethodInfo * method)); -DO_APP_FUNC(0x00DCAF80, bool, ArrayTools_SubArray, (Object__Array * array, int32_t startIndex, MethodInfo * method)); -DO_APP_FUNC(0x00DCB120, bool, ArrayTools_SubArray_1, (Object__Array * array, int32_t startIndex, int32_t count, MethodInfo * method)); +DO_APP_FUNC(0x00DCA950, Object__Array *, ArrayTools_SortAscending, (Object__Array * array, Int32__Array * * sortedIndices, MethodInfo * method)); +DO_APP_FUNC(0x00DCAC60, Object__Array *, ArrayTools_SortDescending, (Object__Array * array, Int32__Array * * sortedIndices, bool ascending, MethodInfo * method)); +DO_APP_FUNC(0x00DCAF80, bool, ArrayTools_SubArray, (Object__Array * * array, int32_t startIndex, MethodInfo * method)); +DO_APP_FUNC(0x00DCB120, bool, ArrayTools_SubArray_1, (Object__Array * * array, int32_t startIndex, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x003AE050, void, Assert_1_Equal_1, (Object * a, Object * b, MethodInfo * method)); DO_APP_FUNC(0x00DCB2C0, void, Assert_1_False_1, (bool condition, Object * extraInfo, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACFA8, Assert_1_False_1__MethodInfo); DO_APP_FUNC(0x003AE050, void, Assert_1_NotEqual_1, (Object * a, Object * b, MethodInfo * method)); DO_APP_FUNC(0x00DCB330, void, Assert_1_True_2, (bool condition, Object * extraInfo, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACFB0, Assert_1_True_2__MethodInfo); DO_APP_FUNC(0x00DCB3A0, void, Assert_AreEqual_2, (Int32Enum__Enum expected, Int32Enum__Enum actual, MethodInfo * method)); DO_APP_FUNC(0x00DCB410, void, Assert_AreEqual_3, (Object * expected, Object * actual, MethodInfo * method)); DO_APP_FUNC(0x00DCB490, void, Assert_AreEqual_4, (int32_t expected, int32_t actual, String * message, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D12530, Assert_AreEqual_4__MethodInfo); DO_APP_FUNC(0x00DCB540, void, Assert_AreEqual_5, (Int32Enum__Enum expected, Int32Enum__Enum actual, String * message, MethodInfo * method)); DO_APP_FUNC(0x00DCB5F0, void, Assert_AreEqual_6, (Object * expected, Object * actual, String * message, MethodInfo * method)); DO_APP_FUNC(0x00DCB6A0, void, Assert_AreEqual_7, (int32_t expected, int32_t actual, String * message, IEqualityComparer_1_System_Int32_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00DCBAF0, void, Assert_AreEqual_8, (Int32Enum__Enum expected, Int32Enum__Enum actual, String * message, IEqualityComparer_1_System_Int32Enum_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00DCBF40, void, Assert_AreEqual_9, (Object * expected, Object * actual, String * message, IEqualityComparer_1_System_Object_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00DCC2D0, void, Assert_AreNotEqual_1, (bool expected, bool actual, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1478, Assert_AreNotEqual_1__MethodInfo); DO_APP_FUNC(0x00DCC350, void, Assert_AreNotEqual_2, (Object * expected, Object * actual, MethodInfo * method)); DO_APP_FUNC(0x00DCC3D0, void, Assert_AreNotEqual_3, (bool expected, bool actual, String * message, MethodInfo * method)); DO_APP_FUNC(0x00DCC480, void, Assert_AreNotEqual_4, (Object * expected, Object * actual, String * message, MethodInfo * method)); @@ -213359,9 +236488,11 @@ DO_APP_FUNC(0x00DCD320, AssetBundleRequest *, AssetBundle_LoadAllAssetsAsync_2, DO_APP_FUNC(0x00DCD410, AsyncOperationHandle_1_System_Object_, AssetReference_CreateFailedOperation, (MethodInfo * method)); DO_APP_FUNC(0x00DCD5C0, AsyncOperationHandle_1_System_Object_, AssetReference_LoadAsset, (AssetReference * __this, MethodInfo * method)); DO_APP_FUNC(0x00DCD620, AsyncOperationHandle_1_System_Object_, AssetReference_LoadAssetAsync, (AssetReference * __this, MethodInfo * method)); -DO_APP_FUNC(0x00DCD7F0, NativeArray_1_System_Byte_, AsyncGPUReadbackRequest_GetData, (AsyncGPUReadbackRequest__Boxed * __this, int32_t layer, MethodInfo * method)); -DO_APP_FUNC(0x00DCDAB0, AsyncOperationHandle_1_System_Object_, AsyncOperationHandle_Convert, (AsyncOperationHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00DCDAB0, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_, AsyncOperationHandle_Convert_1, (AsyncOperationHandle__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00DCD7F0, NativeArray_1_System_Byte_, AsyncGPUReadbackRequest_GetData, (AsyncGPUReadbackRequest * __this, int32_t layer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB8B8, AsyncGPUReadbackRequest_GetData__MethodInfo); +DO_APP_FUNC(0x00DCDAB0, AsyncOperationHandle_1_System_Object_, AsyncOperationHandle_Convert, (AsyncOperationHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x00DCDAB0, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_, AsyncOperationHandle_Convert_1, (AsyncOperationHandle * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE778, AsyncOperationHandle_Convert_1__MethodInfo); DO_APP_FUNC(0x00DCDB10, Task_1_System_Nullable_1_ *, AsyncTaskCache_CreateCacheableTask, (Nullable_1_Int32_ result, MethodInfo * method)); DO_APP_FUNC(0x00DCDB90, Task_1_System_ValueTuple_2_ *, AsyncTaskCache_CreateCacheableTask_1, (ValueTuple_2_Boolean_Object_ result, MethodInfo * method)); DO_APP_FUNC(0x00DCDC20, Task_1_System_ValueTuple_3__1 *, AsyncTaskCache_CreateCacheableTask_2, (ValueTuple_3_Object_Object_Int32_ result, MethodInfo * method)); @@ -213374,158 +236505,272 @@ DO_APP_FUNC(0x00DCDDE0, Task_1_System_Int32Enum_ *, AsyncTaskCache_CreateCacheab DO_APP_FUNC(0x00DCDE60, Task_1_System_Object_ *, AsyncTaskCache_CreateCacheableTask_7, (Object * result, MethodInfo * method)); DO_APP_FUNC(0x00DCDB10, Task_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ *, AsyncTaskCache_CreateCacheableTask_8, (ValueWebSocketReceiveResult result, MethodInfo * method)); DO_APP_FUNC(0x00DCDEE0, Task_1_VoidTaskResult_ *, AsyncTaskCache_CreateCacheableTask_9, (VoidTaskResult result, MethodInfo * method)); -DO_APP_FUNC(0x00DCDF60, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted, (AsyncTaskMethodBuilder__Boxed * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Nullable_1_ awaiter, AsyncProtocolRequest_ProcessOperation_d_24 stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00DCDF60, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted, (AsyncTaskMethodBuilder * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Nullable_1_ * awaiter, AsyncProtocolRequest_ProcessOperation_d_24 * stateMachine, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA1F28, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted__MethodInfo); -DO_APP_FUNC(0x00DCDFE0, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_1, (AsyncTaskMethodBuilder__Boxed * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_3__1 awaiter, WebConnectionTunnel_Initialize_d_42 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DCE060, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_2, (AsyncTaskMethodBuilder__Boxed * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32_ awaiter, MonoChunkStream_FinishReading_d_8 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DCE0E0, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_3, (AsyncTaskMethodBuilder__Boxed * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32_ awaiter, WebResponseStream_InitReadAsync_d_52 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DCE160, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_4, (AsyncTaskMethodBuilder__Boxed * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ awaiter, MobileAuthenticatedStream_ProcessAuthentication_d_48 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DCE1E0, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_5, (AsyncTaskMethodBuilder__Boxed * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ awaiter, ServicePointScheduler_RunScheduler_d_32 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DCE260, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_6, (AsyncTaskMethodBuilder__Boxed * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ awaiter, WebRequestStream_WriteChunkTrailer_d_40 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DCE2E0, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_7, (AsyncTaskMethodBuilder__Boxed * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ awaiter, WebResponseStream_ReadAllAsync_d_48 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DCE360, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_8, (AsyncTaskMethodBuilder__Boxed * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ awaiter, WebSocketHandle_ConnectAsyncCore_d_26 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DCE3E0, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_9, (AsyncTaskMethodBuilder__Boxed * __this, ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Int32_ awaiter, ManagedWebSocket_EnsureBufferContainsAsync_d_71 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DCE460, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_10, (AsyncTaskMethodBuilder__Boxed * __this, ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Int32_ awaiter, ManagedWebSocket_WaitForServerToCloseConnectionAsync_d_63 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DCE4E0, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_11, (AsyncTaskMethodBuilder__Boxed * __this, ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Int32_ awaiter, Stream_CopyToAsyncInternal_d_28 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DCE560, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_12, (AsyncTaskMethodBuilder__Boxed * __this, ForceAsyncAwaiter awaiter, CryptoStream_WriteAsyncInternal_d_46 stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00DCDFE0, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_1, (AsyncTaskMethodBuilder * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_3__1 * awaiter, WebConnectionTunnel_Initialize_d_42 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00DCE060, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_2, (AsyncTaskMethodBuilder * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32_ * awaiter, MonoChunkStream_FinishReading_d_8 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D168B8, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_2__MethodInfo); +DO_APP_FUNC(0x00DCE0E0, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_3, (AsyncTaskMethodBuilder * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32_ * awaiter, WebResponseStream_InitReadAsync_d_52 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A8F0, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_3__MethodInfo); +DO_APP_FUNC(0x00DCE160, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_4, (AsyncTaskMethodBuilder * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ * awaiter, MobileAuthenticatedStream_ProcessAuthentication_d_48 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00DCE1E0, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_5, (AsyncTaskMethodBuilder * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ * awaiter, ServicePointScheduler_RunScheduler_d_32 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00DCE260, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_6, (AsyncTaskMethodBuilder * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ * awaiter, WebRequestStream_WriteChunkTrailer_d_40 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00DCE2E0, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_7, (AsyncTaskMethodBuilder * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ * awaiter, WebResponseStream_ReadAllAsync_d_48 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00DCE360, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_8, (AsyncTaskMethodBuilder * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ * awaiter, WebSocketHandle_ConnectAsyncCore_d_26 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00DCE3E0, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_9, (AsyncTaskMethodBuilder * __this, ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Int32_ * awaiter, ManagedWebSocket_EnsureBufferContainsAsync_d_71 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22308, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_9__MethodInfo); +DO_APP_FUNC(0x00DCE460, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_10, (AsyncTaskMethodBuilder * __this, ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Int32_ * awaiter, ManagedWebSocket_WaitForServerToCloseConnectionAsync_d_63 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22380, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_10__MethodInfo); +DO_APP_FUNC(0x00DCE4E0, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_11, (AsyncTaskMethodBuilder * __this, ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Int32_ * awaiter, Stream_CopyToAsyncInternal_d_28 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEA58, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_11__MethodInfo); +DO_APP_FUNC(0x00DCE560, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_12, (AsyncTaskMethodBuilder * __this, ForceAsyncAwaiter * awaiter, CryptoStream_WriteAsyncInternal_d_46 * stateMachine, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C998B8, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_12__MethodInfo); -DO_APP_FUNC(0x00DCE5E0, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_13, (AsyncTaskMethodBuilder__Boxed * __this, Object * awaiter, Object * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DCE660, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_14, (AsyncTaskMethodBuilder__Boxed * __this, TaskAwaiter awaiter, BoltCore_ShutdownProcedure_d_107 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DCE6E0, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_15, (AsyncTaskMethodBuilder__Boxed * __this, TaskAwaiter awaiter, CryptoStream_WriteAsyncInternal_d_46 stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00DCE5E0, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_13, (AsyncTaskMethodBuilder * __this, Object * * awaiter, Object * * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00DCE660, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_14, (AsyncTaskMethodBuilder * __this, TaskAwaiter * awaiter, BoltCore_ShutdownProcedure_d_107 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9D08, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_14__MethodInfo); +DO_APP_FUNC(0x00DCE6E0, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_15, (AsyncTaskMethodBuilder * __this, TaskAwaiter * awaiter, CryptoStream_WriteAsyncInternal_d_46 * stateMachine, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C998C0, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_15__MethodInfo); -DO_APP_FUNC(0x00DCE760, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_16, (AsyncTaskMethodBuilder__Boxed * __this, TaskAwaiter awaiter, WebRequestStream_Initialize_d_36 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DCE7E0, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_17, (AsyncTaskMethodBuilder__Boxed * __this, TaskAwaiter awaiter, WebRequestStream_WriteAsyncInner_d_33 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DCE860, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_18, (AsyncTaskMethodBuilder__Boxed * __this, TaskAwaiter awaiter, WebRequestStream_WriteRequestAsync_d_38 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DCE8E0, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_19, (AsyncTaskMethodBuilder__Boxed * __this, ValueTaskAwaiter awaiter, CryptoStream_WriteAsyncCore_d_49 stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00DCE760, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_16, (AsyncTaskMethodBuilder * __this, TaskAwaiter * awaiter, WebRequestStream_Initialize_d_36 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1AAD8, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_16__MethodInfo); +DO_APP_FUNC(0x00DCE7E0, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_17, (AsyncTaskMethodBuilder * __this, TaskAwaiter * awaiter, WebRequestStream_WriteAsyncInner_d_33 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1AAA8, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_17__MethodInfo); +DO_APP_FUNC(0x00DCE860, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_18, (AsyncTaskMethodBuilder * __this, TaskAwaiter * awaiter, WebRequestStream_WriteRequestAsync_d_38 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1AA10, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_18__MethodInfo); +DO_APP_FUNC(0x00DCE8E0, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_19, (AsyncTaskMethodBuilder * __this, ValueTaskAwaiter * awaiter, CryptoStream_WriteAsyncCore_d_49 * stateMachine, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C998F8, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_19__MethodInfo); -DO_APP_FUNC(0x00DCE960, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_20, (AsyncTaskMethodBuilder__Boxed * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter awaiter, AsyncProtocolRequest_ProcessOperation_d_24 stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00DCE960, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_20, (AsyncTaskMethodBuilder * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * awaiter, AsyncProtocolRequest_ProcessOperation_d_24 * stateMachine, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA1F30, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_20__MethodInfo); -DO_APP_FUNC(0x00DCE9E0, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_21, (AsyncTaskMethodBuilder__Boxed * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter awaiter, ClientWebSocket_ConnectAsyncCore_d_16 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DCEA60, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_22, (AsyncTaskMethodBuilder__Boxed * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter awaiter, ManagedWebSocket_CloseAsyncPrivate_d_68 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DCEAE0, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_23, (AsyncTaskMethodBuilder__Boxed * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter awaiter, ManagedWebSocket_CloseWithReceiveErrorAndThrowAsync_d_66 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DCEB60, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_24, (AsyncTaskMethodBuilder__Boxed * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter awaiter, ManagedWebSocket_HandleReceivedCloseAsync_d_62 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DCEBE0, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_25, (AsyncTaskMethodBuilder__Boxed * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter awaiter, ManagedWebSocket_HandleReceivedPingPongAsync_d_64 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DCEC60, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_26, (AsyncTaskMethodBuilder__Boxed * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter awaiter, ManagedWebSocket_SendCloseFrameAsync_d_69 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DCECE0, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_27, (AsyncTaskMethodBuilder__Boxed * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter awaiter, ManagedWebSocket_SendFrameFallbackAsync_d_56 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DCED60, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_28, (AsyncTaskMethodBuilder__Boxed * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter awaiter, MobileAuthenticatedStream_InnerWrite_d_67 stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00DCE9E0, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_21, (AsyncTaskMethodBuilder * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * awaiter, ClientWebSocket_ConnectAsyncCore_d_16 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25450, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_21__MethodInfo); +DO_APP_FUNC(0x00DCEA60, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_22, (AsyncTaskMethodBuilder * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * awaiter, ManagedWebSocket_CloseAsyncPrivate_d_68 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D222B8, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_22__MethodInfo); +DO_APP_FUNC(0x00DCEAE0, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_23, (AsyncTaskMethodBuilder * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * awaiter, ManagedWebSocket_CloseWithReceiveErrorAndThrowAsync_d_66 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D222E0, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_23__MethodInfo); +DO_APP_FUNC(0x00DCEB60, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_24, (AsyncTaskMethodBuilder * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * awaiter, ManagedWebSocket_HandleReceivedCloseAsync_d_62 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D223B0, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_24__MethodInfo); +DO_APP_FUNC(0x00DCEBE0, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_25, (AsyncTaskMethodBuilder * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * awaiter, ManagedWebSocket_HandleReceivedPingPongAsync_d_64 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D222D8, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_25__MethodInfo); +DO_APP_FUNC(0x00DCEC60, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_26, (AsyncTaskMethodBuilder * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * awaiter, ManagedWebSocket_SendCloseFrameAsync_d_69 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22330, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_26__MethodInfo); +DO_APP_FUNC(0x00DCECE0, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_27, (AsyncTaskMethodBuilder * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * awaiter, ManagedWebSocket_SendFrameFallbackAsync_d_56 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22360, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_27__MethodInfo); +DO_APP_FUNC(0x00DCED60, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_28, (AsyncTaskMethodBuilder * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * awaiter, MobileAuthenticatedStream_InnerWrite_d_67 * stateMachine, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA1758, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_28__MethodInfo); -DO_APP_FUNC(0x00DCEDE0, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_29, (AsyncTaskMethodBuilder__Boxed * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter awaiter, MonoChunkStream_FinishReading_d_8 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DCEE60, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_30, (AsyncTaskMethodBuilder__Boxed * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter awaiter, Stream_FinishWriteAsync_d_57 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DCEEE0, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_31, (AsyncTaskMethodBuilder__Boxed * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter awaiter, WebConnection_Connect_d_16 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DCEF60, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_32, (AsyncTaskMethodBuilder__Boxed * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter awaiter, WebConnectionTunnel_Initialize_d_42 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DCEFE0, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_33, (AsyncTaskMethodBuilder__Boxed * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter awaiter, WebRequestStream_FinishWriting_d_31 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DCF060, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_34, (AsyncTaskMethodBuilder__Boxed * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter awaiter, WebRequestStream_Initialize_d_36 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DCF0E0, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_35, (AsyncTaskMethodBuilder__Boxed * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter awaiter, WebRequestStream_ProcessWrite_d_34 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DCF160, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_36, (AsyncTaskMethodBuilder__Boxed * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter awaiter, WebRequestStream_SetHeadersAsync_d_37 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DCF1E0, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_37, (AsyncTaskMethodBuilder__Boxed * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter awaiter, WebRequestStream_WriteAsyncInner_d_33 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DCF260, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_38, (AsyncTaskMethodBuilder__Boxed * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter awaiter, WebRequestStream_WriteChunkTrailer_d_40 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DCF2E0, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_39, (AsyncTaskMethodBuilder__Boxed * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter awaiter, WebRequestStream_WriteChunkTrailer_inner_d_39 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DCF360, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_40, (AsyncTaskMethodBuilder__Boxed * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter awaiter, WebRequestStream_WriteRequestAsync_d_38 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DCF3E0, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_41, (AsyncTaskMethodBuilder__Boxed * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter awaiter, WebSocket_SendWithArrayPoolAsync_d_16 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DCF460, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_42, (AsyncTaskMethodBuilder__Boxed * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter awaiter, WebSocketHandle_ConnectAsyncCore_d_26 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DCF4E0, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_43, (AsyncTaskMethodBuilder__Boxed * __this, ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter awaiter, ManagedWebSocket_HandleReceivedPingPongAsync_d_64 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DCF560, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_44, (AsyncTaskMethodBuilder__Boxed * __this, ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter awaiter, ManagedWebSocket_SendCloseFrameAsync_d_69 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DCF5E0, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_45, (AsyncTaskMethodBuilder__Boxed * __this, ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter awaiter, ManagedWebSocket_SendFrameFallbackAsync_d_56 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DCF660, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_46, (AsyncTaskMethodBuilder__Boxed * __this, ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter awaiter, ManagedWebSocket_WaitForWriteTaskAsync_d_55 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DCF6E0, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_47, (AsyncTaskMethodBuilder__Boxed * __this, ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter awaiter, Stream_CopyToAsyncInternal_d_28 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DCF760, void, AsyncTaskMethodBuilder_Start, (AsyncTaskMethodBuilder__Boxed * __this, Object * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DCF8E0, void, AsyncTaskMethodBuilder_Start_1, (AsyncTaskMethodBuilder__Boxed * __this, AsyncProtocolRequest_ProcessOperation_d_24 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DCF9F0, void, AsyncTaskMethodBuilder_Start_2, (AsyncTaskMethodBuilder__Boxed * __this, BoltCore_ShutdownProcedure_d_107 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DCFB00, void, AsyncTaskMethodBuilder_Start_3, (AsyncTaskMethodBuilder__Boxed * __this, ClientWebSocket_ConnectAsyncCore_d_16 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DCFC10, void, AsyncTaskMethodBuilder_Start_4, (AsyncTaskMethodBuilder__Boxed * __this, CryptoStream_WriteAsyncCore_d_49 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DCFD20, void, AsyncTaskMethodBuilder_Start_5, (AsyncTaskMethodBuilder__Boxed * __this, CryptoStream_WriteAsyncInternal_d_46 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DCFE30, void, AsyncTaskMethodBuilder_Start_6, (AsyncTaskMethodBuilder__Boxed * __this, ManagedWebSocket_CloseAsyncPrivate_d_68 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DCFF40, void, AsyncTaskMethodBuilder_Start_7, (AsyncTaskMethodBuilder__Boxed * __this, ManagedWebSocket_CloseWithReceiveErrorAndThrowAsync_d_66 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DD0050, void, AsyncTaskMethodBuilder_Start_8, (AsyncTaskMethodBuilder__Boxed * __this, ManagedWebSocket_EnsureBufferContainsAsync_d_71 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DD0160, void, AsyncTaskMethodBuilder_Start_9, (AsyncTaskMethodBuilder__Boxed * __this, ManagedWebSocket_HandleReceivedCloseAsync_d_62 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DD0270, void, AsyncTaskMethodBuilder_Start_10, (AsyncTaskMethodBuilder__Boxed * __this, ManagedWebSocket_HandleReceivedPingPongAsync_d_64 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DD0380, void, AsyncTaskMethodBuilder_Start_11, (AsyncTaskMethodBuilder__Boxed * __this, ManagedWebSocket_SendCloseFrameAsync_d_69 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DD0490, void, AsyncTaskMethodBuilder_Start_12, (AsyncTaskMethodBuilder__Boxed * __this, ManagedWebSocket_SendFrameFallbackAsync_d_56 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DD05A0, void, AsyncTaskMethodBuilder_Start_13, (AsyncTaskMethodBuilder__Boxed * __this, ManagedWebSocket_WaitForServerToCloseConnectionAsync_d_63 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DD06B0, void, AsyncTaskMethodBuilder_Start_14, (AsyncTaskMethodBuilder__Boxed * __this, ManagedWebSocket_WaitForWriteTaskAsync_d_55 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DD07C0, void, AsyncTaskMethodBuilder_Start_15, (AsyncTaskMethodBuilder__Boxed * __this, MobileAuthenticatedStream_InnerWrite_d_67 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DD08D0, void, AsyncTaskMethodBuilder_Start_16, (AsyncTaskMethodBuilder__Boxed * __this, MobileAuthenticatedStream_ProcessAuthentication_d_48 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DD09E0, void, AsyncTaskMethodBuilder_Start_17, (AsyncTaskMethodBuilder__Boxed * __this, MonoChunkStream_FinishReading_d_8 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DD0AF0, void, AsyncTaskMethodBuilder_Start_18, (AsyncTaskMethodBuilder__Boxed * __this, ServicePointScheduler_RunScheduler_d_32 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DD0C00, void, AsyncTaskMethodBuilder_Start_19, (AsyncTaskMethodBuilder__Boxed * __this, Stream_CopyToAsyncInternal_d_28 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DD0D10, void, AsyncTaskMethodBuilder_Start_20, (AsyncTaskMethodBuilder__Boxed * __this, Stream_FinishWriteAsync_d_57 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DD0E20, void, AsyncTaskMethodBuilder_Start_21, (AsyncTaskMethodBuilder__Boxed * __this, WebConnection_Connect_d_16 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DD0F30, void, AsyncTaskMethodBuilder_Start_22, (AsyncTaskMethodBuilder__Boxed * __this, WebConnectionTunnel_Initialize_d_42 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DD1040, void, AsyncTaskMethodBuilder_Start_23, (AsyncTaskMethodBuilder__Boxed * __this, WebRequestStream_FinishWriting_d_31 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DD1150, void, AsyncTaskMethodBuilder_Start_24, (AsyncTaskMethodBuilder__Boxed * __this, WebRequestStream_Initialize_d_36 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DD1260, void, AsyncTaskMethodBuilder_Start_25, (AsyncTaskMethodBuilder__Boxed * __this, WebRequestStream_ProcessWrite_d_34 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DD1370, void, AsyncTaskMethodBuilder_Start_26, (AsyncTaskMethodBuilder__Boxed * __this, WebRequestStream_SetHeadersAsync_d_37 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DD1480, void, AsyncTaskMethodBuilder_Start_27, (AsyncTaskMethodBuilder__Boxed * __this, WebRequestStream_WriteAsyncInner_d_33 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DD1590, void, AsyncTaskMethodBuilder_Start_28, (AsyncTaskMethodBuilder__Boxed * __this, WebRequestStream_WriteChunkTrailer_d_40 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DD16A0, void, AsyncTaskMethodBuilder_Start_29, (AsyncTaskMethodBuilder__Boxed * __this, WebRequestStream_WriteChunkTrailer_inner_d_39 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DD17B0, void, AsyncTaskMethodBuilder_Start_30, (AsyncTaskMethodBuilder__Boxed * __this, WebRequestStream_WriteRequestAsync_d_38 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DD18C0, void, AsyncTaskMethodBuilder_Start_31, (AsyncTaskMethodBuilder__Boxed * __this, WebResponseStream_InitReadAsync_d_52 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DD19D0, void, AsyncTaskMethodBuilder_Start_32, (AsyncTaskMethodBuilder__Boxed * __this, WebResponseStream_ReadAllAsync_d_48 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DD1AE0, void, AsyncTaskMethodBuilder_Start_33, (AsyncTaskMethodBuilder__Boxed * __this, WebSocket_SendWithArrayPoolAsync_d_16 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DD1BF0, void, AsyncTaskMethodBuilder_Start_34, (AsyncTaskMethodBuilder__Boxed * __this, WebSocketHandle_ConnectAsyncCore_d_26 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DD1D00, void, AsyncVoidMethodBuilder_AwaitUnsafeOnCompleted, (AsyncVoidMethodBuilder__Boxed * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ awaiter, WebClient_DownloadBitsAsync_d_150 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DD1EF0, void, AsyncVoidMethodBuilder_AwaitUnsafeOnCompleted_1, (AsyncVoidMethodBuilder__Boxed * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ awaiter, WebClient_UploadBitsAsync_d_152 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DD2100, void, AsyncVoidMethodBuilder_AwaitUnsafeOnCompleted_2, (AsyncVoidMethodBuilder__Boxed * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ awaiter, WebOperation_Run_d_58 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DD22D0, void, AsyncVoidMethodBuilder_AwaitUnsafeOnCompleted_3, (AsyncVoidMethodBuilder__Boxed * __this, ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Int32_ awaiter, WebClient_DownloadBitsAsync_d_150 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DD2430, void, AsyncVoidMethodBuilder_AwaitUnsafeOnCompleted_4, (AsyncVoidMethodBuilder__Boxed * __this, ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Int32_ awaiter, WebClient_UploadBitsAsync_d_152 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DD25B0, void, AsyncVoidMethodBuilder_AwaitUnsafeOnCompleted_5, (AsyncVoidMethodBuilder__Boxed * __this, Object * awaiter, Object * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DD27A0, void, AsyncVoidMethodBuilder_AwaitUnsafeOnCompleted_6, (AsyncVoidMethodBuilder__Boxed * __this, TaskAwaiter awaiter, BoltCore_BeginShutdown_d_105 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DD2940, void, AsyncVoidMethodBuilder_AwaitUnsafeOnCompleted_7, (AsyncVoidMethodBuilder__Boxed * __this, TaskAwaiter awaiter, BoltCore_ShutdownImmediate_d_106 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DD2AE0, void, AsyncVoidMethodBuilder_AwaitUnsafeOnCompleted_8, (AsyncVoidMethodBuilder__Boxed * __this, TaskAwaiter awaiter, UdpSocket_OnEventClose_d_110 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DD2CA0, void, AsyncVoidMethodBuilder_AwaitUnsafeOnCompleted_9, (AsyncVoidMethodBuilder__Boxed * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter awaiter, FtpWebRequest_CreateConnectionAsync_d_86 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DD2E60, void, AsyncVoidMethodBuilder_AwaitUnsafeOnCompleted_10, (AsyncVoidMethodBuilder__Boxed * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter awaiter, WebOperation_Run_d_58 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DD3030, void, AsyncVoidMethodBuilder_AwaitUnsafeOnCompleted_11, (AsyncVoidMethodBuilder__Boxed * __this, ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter awaiter, WebClient_DownloadBitsAsync_d_150 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DD3190, void, AsyncVoidMethodBuilder_AwaitUnsafeOnCompleted_12, (AsyncVoidMethodBuilder__Boxed * __this, ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter awaiter, WebClient_UploadBitsAsync_d_152 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DD3310, void, AsyncVoidMethodBuilder_Start, (AsyncVoidMethodBuilder__Boxed * __this, Object * stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DD3490, void, AsyncVoidMethodBuilder_Start_1, (AsyncVoidMethodBuilder__Boxed * __this, BoltCore_BeginShutdown_d_105 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DD35A0, void, AsyncVoidMethodBuilder_Start_2, (AsyncVoidMethodBuilder__Boxed * __this, BoltCore_ShutdownImmediate_d_106 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DD36B0, void, AsyncVoidMethodBuilder_Start_3, (AsyncVoidMethodBuilder__Boxed * __this, FtpWebRequest_CreateConnectionAsync_d_86 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DD37C0, void, AsyncVoidMethodBuilder_Start_4, (AsyncVoidMethodBuilder__Boxed * __this, UdpSocket_OnEventClose_d_110 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DD38D0, void, AsyncVoidMethodBuilder_Start_5, (AsyncVoidMethodBuilder__Boxed * __this, WebClient_DownloadBitsAsync_d_150 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DD39E0, void, AsyncVoidMethodBuilder_Start_6, (AsyncVoidMethodBuilder__Boxed * __this, WebClient_UploadBitsAsync_d_152 stateMachine, MethodInfo * method)); -DO_APP_FUNC(0x00DD3AF0, void, AsyncVoidMethodBuilder_Start_7, (AsyncVoidMethodBuilder__Boxed * __this, WebOperation_Run_d_58 stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00DCEDE0, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_29, (AsyncTaskMethodBuilder * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * awaiter, MonoChunkStream_FinishReading_d_8 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D168C0, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_29__MethodInfo); +DO_APP_FUNC(0x00DCEE60, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_30, (AsyncTaskMethodBuilder * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * awaiter, Stream_FinishWriteAsync_d_57 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEA48, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_30__MethodInfo); +DO_APP_FUNC(0x00DCEEE0, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_31, (AsyncTaskMethodBuilder * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * awaiter, WebConnection_Connect_d_16 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1AE70, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_31__MethodInfo); +DO_APP_FUNC(0x00DCEF60, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_32, (AsyncTaskMethodBuilder * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * awaiter, WebConnectionTunnel_Initialize_d_42 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1ACB8, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_32__MethodInfo); +DO_APP_FUNC(0x00DCEFE0, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_33, (AsyncTaskMethodBuilder * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * awaiter, WebRequestStream_FinishWriting_d_31 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1AA98, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_33__MethodInfo); +DO_APP_FUNC(0x00DCF060, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_34, (AsyncTaskMethodBuilder * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * awaiter, WebRequestStream_Initialize_d_36 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1AAE0, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_34__MethodInfo); +DO_APP_FUNC(0x00DCF0E0, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_35, (AsyncTaskMethodBuilder * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * awaiter, WebRequestStream_ProcessWrite_d_34 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1AAF0, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_35__MethodInfo); +DO_APP_FUNC(0x00DCF160, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_36, (AsyncTaskMethodBuilder * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * awaiter, WebRequestStream_SetHeadersAsync_d_37 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1AA38, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_36__MethodInfo); +DO_APP_FUNC(0x00DCF1E0, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_37, (AsyncTaskMethodBuilder * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * awaiter, WebRequestStream_WriteAsyncInner_d_33 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1AAB0, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_37__MethodInfo); +DO_APP_FUNC(0x00DCF260, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_38, (AsyncTaskMethodBuilder * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * awaiter, WebRequestStream_WriteChunkTrailer_d_40 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1AA60, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_38__MethodInfo); +DO_APP_FUNC(0x00DCF2E0, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_39, (AsyncTaskMethodBuilder * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * awaiter, WebRequestStream_WriteChunkTrailer_inner_d_39 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1AA90, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_39__MethodInfo); +DO_APP_FUNC(0x00DCF360, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_40, (AsyncTaskMethodBuilder * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * awaiter, WebRequestStream_WriteRequestAsync_d_38 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1AA18, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_40__MethodInfo); +DO_APP_FUNC(0x00DCF3E0, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_41, (AsyncTaskMethodBuilder * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * awaiter, WebSocket_SendWithArrayPoolAsync_d_16 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D250F8, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_41__MethodInfo); +DO_APP_FUNC(0x00DCF460, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_42, (AsyncTaskMethodBuilder * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * awaiter, WebSocketHandle_ConnectAsyncCore_d_26 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25370, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_42__MethodInfo); +DO_APP_FUNC(0x00DCF4E0, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_43, (AsyncTaskMethodBuilder * __this, ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter * awaiter, ManagedWebSocket_HandleReceivedPingPongAsync_d_64 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D222C8, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_43__MethodInfo); +DO_APP_FUNC(0x00DCF560, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_44, (AsyncTaskMethodBuilder * __this, ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter * awaiter, ManagedWebSocket_SendCloseFrameAsync_d_69 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22328, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_44__MethodInfo); +DO_APP_FUNC(0x00DCF5E0, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_45, (AsyncTaskMethodBuilder * __this, ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter * awaiter, ManagedWebSocket_SendFrameFallbackAsync_d_56 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22358, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_45__MethodInfo); +DO_APP_FUNC(0x00DCF660, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_46, (AsyncTaskMethodBuilder * __this, ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter * awaiter, ManagedWebSocket_WaitForWriteTaskAsync_d_55 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D22370, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_46__MethodInfo); +DO_APP_FUNC(0x00DCF6E0, void, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_47, (AsyncTaskMethodBuilder * __this, ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter * awaiter, Stream_CopyToAsyncInternal_d_28 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEA60, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_47__MethodInfo); +DO_APP_FUNC(0x00DCF760, void, AsyncTaskMethodBuilder_Start, (AsyncTaskMethodBuilder * __this, Object * * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACF58, AsyncTaskMethodBuilder_Start__MethodInfo); +DO_APP_FUNC(0x00DCF8E0, void, AsyncTaskMethodBuilder_Start_1, (AsyncTaskMethodBuilder * __this, AsyncProtocolRequest_ProcessOperation_d_24 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACF50, AsyncTaskMethodBuilder_Start_1__MethodInfo); +DO_APP_FUNC(0x00DCF9F0, void, AsyncTaskMethodBuilder_Start_2, (AsyncTaskMethodBuilder * __this, BoltCore_ShutdownProcedure_d_107 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA618, AsyncTaskMethodBuilder_Start_2__MethodInfo); +DO_APP_FUNC(0x00DCFB00, void, AsyncTaskMethodBuilder_Start_3, (AsyncTaskMethodBuilder * __this, ClientWebSocket_ConnectAsyncCore_d_16 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACF48, AsyncTaskMethodBuilder_Start_3__MethodInfo); +DO_APP_FUNC(0x00DCFC10, void, AsyncTaskMethodBuilder_Start_4, (AsyncTaskMethodBuilder * __this, CryptoStream_WriteAsyncCore_d_49 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACF40, AsyncTaskMethodBuilder_Start_4__MethodInfo); +DO_APP_FUNC(0x00DCFD20, void, AsyncTaskMethodBuilder_Start_5, (AsyncTaskMethodBuilder * __this, CryptoStream_WriteAsyncInternal_d_46 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACF38, AsyncTaskMethodBuilder_Start_5__MethodInfo); +DO_APP_FUNC(0x00DCFE30, void, AsyncTaskMethodBuilder_Start_6, (AsyncTaskMethodBuilder * __this, ManagedWebSocket_CloseAsyncPrivate_d_68 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACF30, AsyncTaskMethodBuilder_Start_6__MethodInfo); +DO_APP_FUNC(0x00DCFF40, void, AsyncTaskMethodBuilder_Start_7, (AsyncTaskMethodBuilder * __this, ManagedWebSocket_CloseWithReceiveErrorAndThrowAsync_d_66 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACF28, AsyncTaskMethodBuilder_Start_7__MethodInfo); +DO_APP_FUNC(0x00DD0050, void, AsyncTaskMethodBuilder_Start_8, (AsyncTaskMethodBuilder * __this, ManagedWebSocket_EnsureBufferContainsAsync_d_71 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACF20, AsyncTaskMethodBuilder_Start_8__MethodInfo); +DO_APP_FUNC(0x00DD0160, void, AsyncTaskMethodBuilder_Start_9, (AsyncTaskMethodBuilder * __this, ManagedWebSocket_HandleReceivedCloseAsync_d_62 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACF18, AsyncTaskMethodBuilder_Start_9__MethodInfo); +DO_APP_FUNC(0x00DD0270, void, AsyncTaskMethodBuilder_Start_10, (AsyncTaskMethodBuilder * __this, ManagedWebSocket_HandleReceivedPingPongAsync_d_64 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACF10, AsyncTaskMethodBuilder_Start_10__MethodInfo); +DO_APP_FUNC(0x00DD0380, void, AsyncTaskMethodBuilder_Start_11, (AsyncTaskMethodBuilder * __this, ManagedWebSocket_SendCloseFrameAsync_d_69 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACF08, AsyncTaskMethodBuilder_Start_11__MethodInfo); +DO_APP_FUNC(0x00DD0490, void, AsyncTaskMethodBuilder_Start_12, (AsyncTaskMethodBuilder * __this, ManagedWebSocket_SendFrameFallbackAsync_d_56 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACF00, AsyncTaskMethodBuilder_Start_12__MethodInfo); +DO_APP_FUNC(0x00DD05A0, void, AsyncTaskMethodBuilder_Start_13, (AsyncTaskMethodBuilder * __this, ManagedWebSocket_WaitForServerToCloseConnectionAsync_d_63 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACEF8, AsyncTaskMethodBuilder_Start_13__MethodInfo); +DO_APP_FUNC(0x00DD06B0, void, AsyncTaskMethodBuilder_Start_14, (AsyncTaskMethodBuilder * __this, ManagedWebSocket_WaitForWriteTaskAsync_d_55 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACEF0, AsyncTaskMethodBuilder_Start_14__MethodInfo); +DO_APP_FUNC(0x00DD07C0, void, AsyncTaskMethodBuilder_Start_15, (AsyncTaskMethodBuilder * __this, MobileAuthenticatedStream_InnerWrite_d_67 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACEE8, AsyncTaskMethodBuilder_Start_15__MethodInfo); +DO_APP_FUNC(0x00DD08D0, void, AsyncTaskMethodBuilder_Start_16, (AsyncTaskMethodBuilder * __this, MobileAuthenticatedStream_ProcessAuthentication_d_48 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACEE0, AsyncTaskMethodBuilder_Start_16__MethodInfo); +DO_APP_FUNC(0x00DD09E0, void, AsyncTaskMethodBuilder_Start_17, (AsyncTaskMethodBuilder * __this, MonoChunkStream_FinishReading_d_8 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACED8, AsyncTaskMethodBuilder_Start_17__MethodInfo); +DO_APP_FUNC(0x00DD0AF0, void, AsyncTaskMethodBuilder_Start_18, (AsyncTaskMethodBuilder * __this, ServicePointScheduler_RunScheduler_d_32 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACED0, AsyncTaskMethodBuilder_Start_18__MethodInfo); +DO_APP_FUNC(0x00DD0C00, void, AsyncTaskMethodBuilder_Start_19, (AsyncTaskMethodBuilder * __this, Stream_CopyToAsyncInternal_d_28 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACEC8, AsyncTaskMethodBuilder_Start_19__MethodInfo); +DO_APP_FUNC(0x00DD0D10, void, AsyncTaskMethodBuilder_Start_20, (AsyncTaskMethodBuilder * __this, Stream_FinishWriteAsync_d_57 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACEC0, AsyncTaskMethodBuilder_Start_20__MethodInfo); +DO_APP_FUNC(0x00DD0E20, void, AsyncTaskMethodBuilder_Start_21, (AsyncTaskMethodBuilder * __this, WebConnection_Connect_d_16 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACEB8, AsyncTaskMethodBuilder_Start_21__MethodInfo); +DO_APP_FUNC(0x00DD0F30, void, AsyncTaskMethodBuilder_Start_22, (AsyncTaskMethodBuilder * __this, WebConnectionTunnel_Initialize_d_42 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACEB0, AsyncTaskMethodBuilder_Start_22__MethodInfo); +DO_APP_FUNC(0x00DD1040, void, AsyncTaskMethodBuilder_Start_23, (AsyncTaskMethodBuilder * __this, WebRequestStream_FinishWriting_d_31 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACEA8, AsyncTaskMethodBuilder_Start_23__MethodInfo); +DO_APP_FUNC(0x00DD1150, void, AsyncTaskMethodBuilder_Start_24, (AsyncTaskMethodBuilder * __this, WebRequestStream_Initialize_d_36 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACEA0, AsyncTaskMethodBuilder_Start_24__MethodInfo); +DO_APP_FUNC(0x00DD1260, void, AsyncTaskMethodBuilder_Start_25, (AsyncTaskMethodBuilder * __this, WebRequestStream_ProcessWrite_d_34 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACE98, AsyncTaskMethodBuilder_Start_25__MethodInfo); +DO_APP_FUNC(0x00DD1370, void, AsyncTaskMethodBuilder_Start_26, (AsyncTaskMethodBuilder * __this, WebRequestStream_SetHeadersAsync_d_37 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACE90, AsyncTaskMethodBuilder_Start_26__MethodInfo); +DO_APP_FUNC(0x00DD1480, void, AsyncTaskMethodBuilder_Start_27, (AsyncTaskMethodBuilder * __this, WebRequestStream_WriteAsyncInner_d_33 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACE88, AsyncTaskMethodBuilder_Start_27__MethodInfo); +DO_APP_FUNC(0x00DD1590, void, AsyncTaskMethodBuilder_Start_28, (AsyncTaskMethodBuilder * __this, WebRequestStream_WriteChunkTrailer_d_40 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACE80, AsyncTaskMethodBuilder_Start_28__MethodInfo); +DO_APP_FUNC(0x00DD16A0, void, AsyncTaskMethodBuilder_Start_29, (AsyncTaskMethodBuilder * __this, WebRequestStream_WriteChunkTrailer_inner_d_39 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACE78, AsyncTaskMethodBuilder_Start_29__MethodInfo); +DO_APP_FUNC(0x00DD17B0, void, AsyncTaskMethodBuilder_Start_30, (AsyncTaskMethodBuilder * __this, WebRequestStream_WriteRequestAsync_d_38 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACE70, AsyncTaskMethodBuilder_Start_30__MethodInfo); +DO_APP_FUNC(0x00DD18C0, void, AsyncTaskMethodBuilder_Start_31, (AsyncTaskMethodBuilder * __this, WebResponseStream_InitReadAsync_d_52 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACE68, AsyncTaskMethodBuilder_Start_31__MethodInfo); +DO_APP_FUNC(0x00DD19D0, void, AsyncTaskMethodBuilder_Start_32, (AsyncTaskMethodBuilder * __this, WebResponseStream_ReadAllAsync_d_48 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACE60, AsyncTaskMethodBuilder_Start_32__MethodInfo); +DO_APP_FUNC(0x00DD1AE0, void, AsyncTaskMethodBuilder_Start_33, (AsyncTaskMethodBuilder * __this, WebSocket_SendWithArrayPoolAsync_d_16 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACE58, AsyncTaskMethodBuilder_Start_33__MethodInfo); +DO_APP_FUNC(0x00DD1BF0, void, AsyncTaskMethodBuilder_Start_34, (AsyncTaskMethodBuilder * __this, WebSocketHandle_ConnectAsyncCore_d_26 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACE50, AsyncTaskMethodBuilder_Start_34__MethodInfo); +DO_APP_FUNC(0x00DD1D00, void, AsyncVoidMethodBuilder_AwaitUnsafeOnCompleted, (AsyncVoidMethodBuilder * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ * awaiter, WebClient_DownloadBitsAsync_d_150 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00DD1EF0, void, AsyncVoidMethodBuilder_AwaitUnsafeOnCompleted_1, (AsyncVoidMethodBuilder * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ * awaiter, WebClient_UploadBitsAsync_d_152 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00DD2100, void, AsyncVoidMethodBuilder_AwaitUnsafeOnCompleted_2, (AsyncVoidMethodBuilder * __this, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ * awaiter, WebOperation_Run_d_58 * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00DD22D0, void, AsyncVoidMethodBuilder_AwaitUnsafeOnCompleted_3, (AsyncVoidMethodBuilder * __this, ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Int32_ * awaiter, WebClient_DownloadBitsAsync_d_150 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E0D0, AsyncVoidMethodBuilder_AwaitUnsafeOnCompleted_3__MethodInfo); +DO_APP_FUNC(0x00DD2430, void, AsyncVoidMethodBuilder_AwaitUnsafeOnCompleted_4, (AsyncVoidMethodBuilder * __this, ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Int32_ * awaiter, WebClient_UploadBitsAsync_d_152 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E070, AsyncVoidMethodBuilder_AwaitUnsafeOnCompleted_4__MethodInfo); +DO_APP_FUNC(0x00DD25B0, void, AsyncVoidMethodBuilder_AwaitUnsafeOnCompleted_5, (AsyncVoidMethodBuilder * __this, Object * * awaiter, Object * * stateMachine, MethodInfo * method)); +DO_APP_FUNC(0x00DD27A0, void, AsyncVoidMethodBuilder_AwaitUnsafeOnCompleted_6, (AsyncVoidMethodBuilder * __this, TaskAwaiter * awaiter, BoltCore_BeginShutdown_d_105 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9DB0, AsyncVoidMethodBuilder_AwaitUnsafeOnCompleted_6__MethodInfo); +DO_APP_FUNC(0x00DD2940, void, AsyncVoidMethodBuilder_AwaitUnsafeOnCompleted_7, (AsyncVoidMethodBuilder * __this, TaskAwaiter * awaiter, BoltCore_ShutdownImmediate_d_106 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9D60, AsyncVoidMethodBuilder_AwaitUnsafeOnCompleted_7__MethodInfo); +DO_APP_FUNC(0x00DD2AE0, void, AsyncVoidMethodBuilder_AwaitUnsafeOnCompleted_8, (AsyncVoidMethodBuilder * __this, TaskAwaiter * awaiter, UdpSocket_OnEventClose_d_110 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7AB8, AsyncVoidMethodBuilder_AwaitUnsafeOnCompleted_8__MethodInfo); +DO_APP_FUNC(0x00DD2CA0, void, AsyncVoidMethodBuilder_AwaitUnsafeOnCompleted_9, (AsyncVoidMethodBuilder * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * awaiter, FtpWebRequest_CreateConnectionAsync_d_86 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB5068, AsyncVoidMethodBuilder_AwaitUnsafeOnCompleted_9__MethodInfo); +DO_APP_FUNC(0x00DD2E60, void, AsyncVoidMethodBuilder_AwaitUnsafeOnCompleted_10, (AsyncVoidMethodBuilder * __this, ConfiguredTaskAwaitable_ConfiguredTaskAwaiter * awaiter, WebOperation_Run_d_58 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1AB60, AsyncVoidMethodBuilder_AwaitUnsafeOnCompleted_10__MethodInfo); +DO_APP_FUNC(0x00DD3030, void, AsyncVoidMethodBuilder_AwaitUnsafeOnCompleted_11, (AsyncVoidMethodBuilder * __this, ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter * awaiter, WebClient_DownloadBitsAsync_d_150 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E0D8, AsyncVoidMethodBuilder_AwaitUnsafeOnCompleted_11__MethodInfo); +DO_APP_FUNC(0x00DD3190, void, AsyncVoidMethodBuilder_AwaitUnsafeOnCompleted_12, (AsyncVoidMethodBuilder * __this, ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter * awaiter, WebClient_UploadBitsAsync_d_152 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0E058, AsyncVoidMethodBuilder_AwaitUnsafeOnCompleted_12__MethodInfo); +DO_APP_FUNC(0x00DD3310, void, AsyncVoidMethodBuilder_Start, (AsyncVoidMethodBuilder * __this, Object * * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACE40, AsyncVoidMethodBuilder_Start__MethodInfo); +DO_APP_FUNC(0x00DD3490, void, AsyncVoidMethodBuilder_Start_1, (AsyncVoidMethodBuilder * __this, BoltCore_BeginShutdown_d_105 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA650, AsyncVoidMethodBuilder_Start_1__MethodInfo); +DO_APP_FUNC(0x00DD35A0, void, AsyncVoidMethodBuilder_Start_2, (AsyncVoidMethodBuilder * __this, BoltCore_ShutdownImmediate_d_106 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA630, AsyncVoidMethodBuilder_Start_2__MethodInfo); +DO_APP_FUNC(0x00DD36B0, void, AsyncVoidMethodBuilder_Start_3, (AsyncVoidMethodBuilder * __this, FtpWebRequest_CreateConnectionAsync_d_86 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACE38, AsyncVoidMethodBuilder_Start_3__MethodInfo); +DO_APP_FUNC(0x00DD37C0, void, AsyncVoidMethodBuilder_Start_4, (AsyncVoidMethodBuilder * __this, UdpSocket_OnEventClose_d_110 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACE30, AsyncVoidMethodBuilder_Start_4__MethodInfo); +DO_APP_FUNC(0x00DD38D0, void, AsyncVoidMethodBuilder_Start_5, (AsyncVoidMethodBuilder * __this, WebClient_DownloadBitsAsync_d_150 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACE28, AsyncVoidMethodBuilder_Start_5__MethodInfo); +DO_APP_FUNC(0x00DD39E0, void, AsyncVoidMethodBuilder_Start_6, (AsyncVoidMethodBuilder * __this, WebClient_UploadBitsAsync_d_152 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACE20, AsyncVoidMethodBuilder_Start_6__MethodInfo); +DO_APP_FUNC(0x00DD3AF0, void, AsyncVoidMethodBuilder_Start_7, (AsyncVoidMethodBuilder * __this, WebOperation_Run_d_58 * stateMachine, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACE18, AsyncVoidMethodBuilder_Start_7__MethodInfo); DO_APP_FUNC(0x00DD3C00, Object *, AttributeHelperEngine_GetCustomAttributeOfType, (Type * klass, MethodInfo * method)); DO_APP_FUNC(0x00DD3CF0, void, BKsJJnAdrRntLMuBtHLhFtlqOUnH_YyXmIoTNmAiiuIgDGtuVHxNNBhcbb, (Object * param_0000bf62, Object * param_0000bf63, BKsJJnAdrRntLMuBtHLhFtlqOUnH_EventFunction_2_System_Object_System_Object_ * param_0000bf64, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACDF8, BKsJJnAdrRntLMuBtHLhFtlqOUnH_YyXmIoTNmAiiuIgDGtuVHxNNBhcbb__MethodInfo); DO_APP_FUNC(0x00DD3E40, void, BKsJJnAdrRntLMuBtHLhFtlqOUnH_YyXmIoTNmAiiuIgDGtuVHxNNBhcbb_1, (IList_1_System_Object_ * param_0000bf65, Object * param_0000bf66, BKsJJnAdrRntLMuBtHLhFtlqOUnH_EventFunction_2_System_Object_System_Object_ * param_0000bf67, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACDE8, BKsJJnAdrRntLMuBtHLhFtlqOUnH_YyXmIoTNmAiiuIgDGtuVHxNNBhcbb_1__MethodInfo); DO_APP_FUNC(0x00DD4060, void, BKsJJnAdrRntLMuBtHLhFtlqOUnH_znawCppbUiDQvpCSheYkHrolkdik, (IList_1_System_Object_ * param_0000bf68, bool param_0000bf69, BKsJJnAdrRntLMuBtHLhFtlqOUnH_EventFunction_2_System_Object_System_Boolean_ * param_0000bf6a, bool param_0000bf6b, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACDD8, BKsJJnAdrRntLMuBtHLhFtlqOUnH_znawCppbUiDQvpCSheYkHrolkdik__MethodInfo); DO_APP_FUNC(0x00DD4410, void, BKsJJnAdrRntLMuBtHLhFtlqOUnH_znawCppbUiDQvpCSheYkHrolkdik_1, (IList_1_System_Object_ * param_0000bf68, Object * param_0000bf69, BKsJJnAdrRntLMuBtHLhFtlqOUnH_EventFunction_2_System_Object_System_Object_ * param_0000bf6a, bool param_0000bf6b, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACDE0, BKsJJnAdrRntLMuBtHLhFtlqOUnH_znawCppbUiDQvpCSheYkHrolkdik_1__MethodInfo); DO_APP_FUNC(0x00DD47C0, void, BKsJJnAdrRntLMuBtHLhFtlqOUnH_znawCppbUiDQvpCSheYkHrolkdik_2, (IList_1_System_Object_ * param_0000bf68, Vector2 param_0000bf69, BKsJJnAdrRntLMuBtHLhFtlqOUnH_EventFunction_2_System_Object_UnityEngine_Vector2_ * param_0000bf6a, bool param_0000bf6b, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACDD0, BKsJJnAdrRntLMuBtHLhFtlqOUnH_znawCppbUiDQvpCSheYkHrolkdik_2__MethodInfo); DO_APP_FUNC(0x00DD4B80, void, BaseInvokableCall_ThrowOnInvalidArg, (Object * arg, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACDB8, BaseInvokableCall_ThrowOnInvalidArg__MethodInfo); DO_APP_FUNC(0x00DD4CE0, void, BaseInvokableCall_ThrowOnInvalidArg_1, (Object * arg, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACDC0, BaseInvokableCall_ThrowOnInvalidArg_1__MethodInfo); DO_APP_FUNC(0x00DD4E40, void, BaseInvokableCall_ThrowOnInvalidArg_2, (Object * arg, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACDC8, BaseInvokableCall_ThrowOnInvalidArg_2__MethodInfo); DO_APP_FUNC(0x00DD4FA0, void, BaseInvokableCall_ThrowOnInvalidArg_3, (Object * arg, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACD90, BaseInvokableCall_ThrowOnInvalidArg_3__MethodInfo); DO_APP_FUNC(0x00DD5100, void, BaseInvokableCall_ThrowOnInvalidArg_4, (Object * arg, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACD98, BaseInvokableCall_ThrowOnInvalidArg_4__MethodInfo); DO_APP_FUNC(0x00DD5260, void, BaseInvokableCall_ThrowOnInvalidArg_5, (Object * arg, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACDA0, BaseInvokableCall_ThrowOnInvalidArg_5__MethodInfo); DO_APP_FUNC(0x00DD53C0, void, BaseInvokableCall_ThrowOnInvalidArg_6, (Object * arg, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACDA8, BaseInvokableCall_ThrowOnInvalidArg_6__MethodInfo); DO_APP_FUNC(0x00DD5520, void, BaseInvokableCall_ThrowOnInvalidArg_7, (Object * arg, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACD70, BaseInvokableCall_ThrowOnInvalidArg_7__MethodInfo); DO_APP_FUNC(0x00DD5680, void, BaseInvokableCall_ThrowOnInvalidArg_8, (Object * arg, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACD78, BaseInvokableCall_ThrowOnInvalidArg_8__MethodInfo); DO_APP_FUNC(0x00DD57E0, void, BaseInvokableCall_ThrowOnInvalidArg_9, (Object * arg, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACD80, BaseInvokableCall_ThrowOnInvalidArg_9__MethodInfo); DO_APP_FUNC(0x00DD5940, void, BaseVerticalCollectionView_CreateVirtualizationController_1, (BaseVerticalCollectionView * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CACD68, BaseVerticalCollectionView_CreateVirtualizationController_1__MethodInfo); DO_APP_FUNC(0x00DD5B70, Int32__Array *, BatchCulling_EnsureArrayCapacity, (Int32__Array * array, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFD6B0, BatchCulling_EnsureArrayCapacity__MethodInfo); DO_APP_FUNC(0x00DF1C40, Object__Array *, BatchCulling_EnsureArrayCapacity_1, (Object__Array * array, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x00DF1CF0, Object *, Behavior_FindTask, (Behavior * __this, MethodInfo * method)); DO_APP_FUNC(0x00DF1D80, Object *, Behavior_FindTask_1, (Behavior * __this, Task_1 * task, MethodInfo * method)); DO_APP_FUNC(0x00DF1FA0, List_1_System_Object_ *, Behavior_FindTasks, (Behavior * __this, MethodInfo * method)); -DO_APP_FUNC(0x00DF2090, void, Behavior_FindTasks_1, (Behavior * __this, Task_1 * task, List_1_System_Object_ * taskList, MethodInfo * method)); +DO_APP_FUNC(0x00DF2090, void, Behavior_FindTasks_1, (Behavior * __this, Task_1 * task, List_1_System_Object_ * * taskList, MethodInfo * method)); DO_APP_FUNC(0x00A4C140, void, Behavior_RegisterEvent_2, (Behavior * __this, String * name, Action_1_Object_ * handler, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4A80, Behavior_RegisterEvent_2__MethodInfo); DO_APP_FUNC(0x00A4C140, void, Behavior_RegisterEvent_3, (Behavior * __this, String * name, Action_2_Object_Object_ * handler, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4A78, Behavior_RegisterEvent_3__MethodInfo); DO_APP_FUNC(0x00A4C140, void, Behavior_RegisterEvent_4, (Behavior * __this, String * name, Action_3_Object_Object_Object_ * handler, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4A90, Behavior_RegisterEvent_4__MethodInfo); DO_APP_FUNC(0x00DF2280, void, Behavior_SendEvent_1, (Behavior * __this, String * name, Object * arg1, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4CF8, Behavior_SendEvent_1__MethodInfo); DO_APP_FUNC(0x00DF2360, void, Behavior_SendEvent_2, (Behavior * __this, String * name, Object * arg1, Object * arg2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4CF0, Behavior_SendEvent_2__MethodInfo); DO_APP_FUNC(0x00DF2440, void, Behavior_SendEvent_3, (Behavior * __this, String * name, Object * arg1, Object * arg2, Object * arg3, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4D08, Behavior_SendEvent_3__MethodInfo); DO_APP_FUNC(0x00A4C570, void, Behavior_UnregisterEvent_2, (Behavior * __this, String * name, Action_1_Object_ * handler, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4A48, Behavior_UnregisterEvent_2__MethodInfo); DO_APP_FUNC(0x00A4C570, void, Behavior_UnregisterEvent_3, (Behavior * __this, String * name, Action_2_Object_Object_ * handler, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4A40, Behavior_UnregisterEvent_3__MethodInfo); DO_APP_FUNC(0x00A4C570, void, Behavior_UnregisterEvent_4, (Behavior * __this, String * name, Action_3_Object_Object_Object_ * handler, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4A50, Behavior_UnregisterEvent_4__MethodInfo); DO_APP_FUNC(0x00DF2530, void, BoltEntity_AddEventCallback, (BoltEntity * __this, Action_1_Object_ * callback, MethodInfo * method)); DO_APP_FUNC(0x00DF2580, Object *, BoltEntity_GetState, (BoltEntity * __this, MethodInfo * method)); DO_APP_FUNC(0x00DF2530, void, BoltEntity_RemoveEventCallback, (BoltEntity * __this, Action_1_Object_ * callback, MethodInfo * method)); DO_APP_FUNC(0x00DF2640, bool, BoltEntity_StateIs_1, (BoltEntity * __this, MethodInfo * method)); -DO_APP_FUNC(0x00DF26A0, bool, BoltEntity_TryFindState, (BoltEntity * __this, Object * state, MethodInfo * method)); +DO_APP_FUNC(0x00DF26A0, bool, BoltEntity_TryFindState, (BoltEntity * __this, Object * * state, MethodInfo * method)); DO_APP_FUNC(0x00DF2800, void, BoltLog_Add, (Object * instance, MethodInfo * method)); DO_APP_FUNC(0x00DF2AC0, void, BoltNetwork_AddGlobalEventCallback, (Action_1_Object_ * callback, MethodInfo * method)); DO_APP_FUNC(0x00DF2B50, void, BoltNetwork_RegisterTokenClass, (MethodInfo * method)); DO_APP_FUNC(0x00DF2BE0, void, BoltNetwork_RemoveGlobalEventCallback, (Action_1_Object_ * callback, MethodInfo * method)); DO_APP_FUNC(0x00DF2C70, Int32__Array *, BoltUtils_AddFirst, (Int32__Array * array, int32_t item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2628, BoltUtils_AddFirst__MethodInfo); DO_APP_FUNC(0x00DF2D40, Object__Array *, BoltUtils_AddFirst_1, (Object__Array * array, Object * item, MethodInfo * method)); DO_APP_FUNC(0x00DF2E20, Object__Array *, BoltUtils_CloneArray, (Object__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00DF2E90, Object *, BoltUtils_FindComponent, (Component * component, MethodInfo * method)); @@ -213534,18 +236779,20 @@ DO_APP_FUNC(0x00DF2F90, Object *, BoltUtils_FindComponent_2, (Transform * transf DO_APP_FUNC(0x00DF3140, bool, BoltUtils_Has, (Object__Array * array, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x00DF3180, bool, BoltUtils_Has_1, (Object__Array * array, uint32_t index, MethodInfo * method)); DO_APP_FUNC(0x00DF31C0, String *, BoltUtils_Join, (IEnumerable_1_System_Object_ * items, String * seperator, MethodInfo * method)); -DO_APP_FUNC(0x00DF34E0, bool, BoltUtils_TryGetIndex, (Object__Array * array, int32_t index, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x00DF3570, bool, BoltUtils_TryGetIndex_1, (Object__Array * array, uint32_t index, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x00DF3600, bool, BoltUtils_TryGetValue, (Dictionary_2_System_String_System_Object_ * data, String * key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x00DF37D0, bool, BoxSlider_SetClass, (Object * currentValue, Object * newValue, MethodInfo * method)); -DO_APP_FUNC(0x00DF3870, bool, BoxSlider_SetStruct, (bool currentValue, bool newValue, MethodInfo * method)); -DO_APP_FUNC(0x00DF3980, bool, BoxSlider_SetStruct_1, (float currentValue, float newValue, MethodInfo * method)); -DO_APP_FUNC(0x00DF3A10, void, Buffer_Memmove_1, (uint8_t destination, uint8_t source, uint64_t elementCount, MethodInfo * method)); -DO_APP_FUNC(0x00DF3AB0, void, Buffer_Memmove_2, (uint16_t destination, uint16_t source, uint64_t elementCount, MethodInfo * method)); -DO_APP_FUNC(0x00DF3B50, void, Buffer_Memmove_3, (int32_t destination, int32_t source, uint64_t elementCount, MethodInfo * method)); -DO_APP_FUNC(0x00DF3BF0, void, Buffer_Memmove_4, (Object * destination, Object * source, uint64_t elementCount, MethodInfo * method)); -DO_APP_FUNC(0x00DF3CB0, void, Buffer_Memmove_5, (uint16_t destination, uint16_t source, uint64_t elementCount, MethodInfo * method)); -DO_APP_FUNC(0x00DF3D50, void, Buffer_Memmove_6, (uint32_t destination, uint32_t source, uint64_t elementCount, MethodInfo * method)); +DO_APP_FUNC(0x00DF34E0, bool, BoltUtils_TryGetIndex, (Object__Array * array, int32_t index, Object * * value, MethodInfo * method)); +DO_APP_FUNC(0x00DF3570, bool, BoltUtils_TryGetIndex_1, (Object__Array * array, uint32_t index, Object * * value, MethodInfo * method)); +DO_APP_FUNC(0x00DF3600, bool, BoltUtils_TryGetValue, (Dictionary_2_System_String_System_Object_ * data, String * key, Object * * value, MethodInfo * method)); +DO_APP_FUNC(0x00DF37D0, bool, BoxSlider_SetClass, (Object * * currentValue, Object * newValue, MethodInfo * method)); +DO_APP_FUNC(0x00DF3870, bool, BoxSlider_SetStruct, (bool * currentValue, bool newValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6158, BoxSlider_SetStruct__MethodInfo); +DO_APP_FUNC(0x00DF3980, bool, BoxSlider_SetStruct_1, (float * currentValue, float newValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6178, BoxSlider_SetStruct_1__MethodInfo); +DO_APP_FUNC(0x00DF3A10, void, Buffer_Memmove_1, (uint8_t * destination, uint8_t * source, uint64_t elementCount, MethodInfo * method)); +DO_APP_FUNC(0x00DF3AB0, void, Buffer_Memmove_2, (uint16_t * destination, uint16_t * source, uint64_t elementCount, MethodInfo * method)); +DO_APP_FUNC(0x00DF3B50, void, Buffer_Memmove_3, (int32_t * destination, int32_t * source, uint64_t elementCount, MethodInfo * method)); +DO_APP_FUNC(0x00DF3BF0, void, Buffer_Memmove_4, (Object * * destination, Object * * source, uint64_t elementCount, MethodInfo * method)); +DO_APP_FUNC(0x00DF3CB0, void, Buffer_Memmove_5, (uint16_t * destination, uint16_t * source, uint64_t elementCount, MethodInfo * method)); +DO_APP_FUNC(0x00DF3D50, void, Buffer_Memmove_6, (uint32_t * destination, uint32_t * source, uint64_t elementCount, MethodInfo * method)); DO_APP_FUNC(0x00DF3DF0, Object__Array *, CFArray_ArrayFromHandle, (void * handle, Func_2_IntPtr_Object_ * creation, MethodInfo * method)); DO_APP_FUNC(0x00DF4050, void, CallbackEventHandler_RegisterCallback, (CallbackEventHandler * __this, EventCallback_1_System_Object_ * callback, TrickleDown__Enum useTrickleDown, MethodInfo * method)); DO_APP_FUNC(0x00DF4140, void, CallbackEventHandler_RegisterCallback_1, (CallbackEventHandler * __this, EventCallback_1_System_Object_ * callback, InvokePolicy__Enum invokePolicy, TrickleDown__Enum useTrickleDown, MethodInfo * method)); @@ -213558,18 +236805,20 @@ DO_APP_FUNC(0x00DF4C50, void, CinemachineVirtualCamera_DestroyCinemachineCompone DO_APP_FUNC(0x00DF4D60, Object *, CinemachineVirtualCamera_GetCinemachineComponent_1, (CinemachineVirtualCamera * __this, MethodInfo * method)); DO_APP_FUNC(0x00DF4E80, Object *, CollectionExtensions_GetValueOrDefault, (IReadOnlyDictionary_2_System_Object_System_Object_ * dictionary, Object * key, MethodInfo * method)); DO_APP_FUNC(0x00DF4EA0, Object *, CollectionExtensions_GetValueOrDefault_1, (IReadOnlyDictionary_2_System_Object_System_Object_ * dictionary, Object * key, Object * defaultValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB10A8, CollectionExtensions_GetValueOrDefault_1__MethodInfo); DO_APP_FUNC(0x00DF4FC0, Object__Array *, CollectionExtensions_1_RemoveFirst, (Object__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00DF5040, Object__Array *, CollectionExtensions_1_RemoveLast, (Object__Array * array, MethodInfo * method)); DO_APP_FUNC(0x00DF50C0, ReadOnlyCollection_1_System_Object_ *, CollectionExtensions_1_ToReadOnly, (IEnumerable_1_System_Object_ * enumerable, MethodInfo * method)); DO_APP_FUNC(0x00DF5290, void, CollectionTools_Clear, (IObjectPool_1_System_Object__1 * pool, RingBuffer_1_System_Object_ * buffer, MethodInfo * method)); DO_APP_FUNC(0x00DF53E0, Dictionary_2_System_Object_System_Object_ *, CollectionTools_CreateInverseDictionary, (Dictionary_2_System_Object_System_Object_ * dict, MethodInfo * method)); -DO_APP_FUNC(0x00DF5590, void, CollectionTools_Enqueue, (IObjectPool_1_System_Object__1 * pool, RingBuffer_1_System_Object_ * buffer, Object * item, bool overrun, MethodInfo * method)); +DO_APP_FUNC(0x00DF5590, void, CollectionTools_Enqueue, (IObjectPool_1_System_Object__1 * pool, RingBuffer_1_System_Object_ * buffer, Object * item, bool * overrun, MethodInfo * method)); DO_APP_FUNC(0x00DF5680, Object *, CollectionTools_GetDictionaryValueSafe_1, (Dictionary_2_System_String_System_Object_ * dictionary, String * key, MethodInfo * method)); DO_APP_FUNC(0x00DF5680, Object *, CollectionTools_GetDictionaryValueSafe_2, (Dictionary_2_System_Object_System_Object_ * dictionary, Object * key, MethodInfo * method)); -DO_APP_FUNC(0x00DF56B0, Object *, CollectionTools_GetDictionaryValueSafe_3, (Dictionary_2_System_String_System_Object_ * dictionary, String * key, bool success, MethodInfo * method)); -DO_APP_FUNC(0x00DF5880, bool, CollectionTools_GetDictionaryValueSafe_4, (Dictionary_2_System_String_System_Object_ * dictionary, String * key, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x00DF5C50, Object *, CollectionTools_GetDictionaryValueSafe_5, (Dictionary_2_System_Object_System_Object_ * dictionary, Object * key, bool success, MethodInfo * method)); +DO_APP_FUNC(0x00DF56B0, Object *, CollectionTools_GetDictionaryValueSafe_3, (Dictionary_2_System_String_System_Object_ * dictionary, String * key, bool * success, MethodInfo * method)); +DO_APP_FUNC(0x00DF5880, bool, CollectionTools_GetDictionaryValueSafe_4, (Dictionary_2_System_String_System_Object_ * dictionary, String * key, Object * * value, MethodInfo * method)); +DO_APP_FUNC(0x00DF5C50, Object *, CollectionTools_GetDictionaryValueSafe_5, (Dictionary_2_System_Object_System_Object_ * dictionary, Object * key, bool * success, MethodInfo * method)); DO_APP_FUNC(0x00DF5CA0, Object *, CollectionTools_GetValue, (IEnumerable_1_System_Object_ * enumerable, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBBAB0, CollectionTools_GetValue__MethodInfo); DO_APP_FUNC(0x00DF5D90, Object *, CollectionTools_GetValue_1, (IEnumerable * enumerable, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x00DF5EB0, void, CommonAcl_RemoveAces, (CommonAcl * __this, CommonAcl_RemoveAcesCallback_1_System_Object_ * callback, MethodInfo * method)); DO_APP_FUNC(0x00DF6030, Object *, Component_GetComponent_1, (Component * __this, MethodInfo * method)); @@ -213585,14 +236834,18 @@ DO_APP_FUNC(0x00DF6550, void, Component_GetComponentsInChildren_4, (Component * DO_APP_FUNC(0x00DF6490, Object__Array *, Component_GetComponentsInParent, (Component * __this, MethodInfo * method)); DO_APP_FUNC(0x00DF64A0, Object__Array *, Component_GetComponentsInParent_1, (Component * __this, bool includeInactive, MethodInfo * method)); DO_APP_FUNC(0x00DF6550, void, Component_GetComponentsInParent_2, (Component * __this, bool includeInactive, List_1_System_Object_ * results, MethodInfo * method)); -DO_APP_FUNC(0x00DF65F0, bool, Component_TryGetComponent, (Component * __this, Object * component, MethodInfo * method)); +DO_APP_FUNC(0x00DF65F0, bool, Component_TryGetComponent, (Component * __this, Object * * component, MethodInfo * method)); DO_APP_FUNC(0x00DF6680, void, ComputeBuffer_SetData_1, (ComputeBuffer * __this, List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * data, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1098, ComputeBuffer_SetData_1__MethodInfo); DO_APP_FUNC(0x00DF68F0, EasingFunction, ComputedTransitionUtils_GetWrappingTransitionData, (List_1_UnityEngine_UIElements_EasingFunction_ * list, int32_t i, EasingFunction defaultValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5F28, ComputedTransitionUtils_GetWrappingTransitionData__MethodInfo); DO_APP_FUNC(0x00DF6980, Object *, ComputedTransitionUtils_GetWrappingTransitionData_1, (List_1_System_Object_ * list, int32_t i, Object * defaultValue, MethodInfo * method)); DO_APP_FUNC(0x00DF6A10, TimeValue, ComputedTransitionUtils_GetWrappingTransitionData_2, (List_1_UnityEngine_UIElements_TimeValue_ * list, int32_t i, TimeValue defaultValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5F30, ComputedTransitionUtils_GetWrappingTransitionData_2__MethodInfo); DO_APP_FUNC(0x00DF6AA0, Object *, ConfigVars_Editor_GetAllSerializedPlatformVar, (ConfigVars * __this, ConfigVars_AllPlatformVar__Enum var, MethodInfo * method)); -DO_APP_FUNC(0x00DF6C00, Object *, ConfigVars_GetOrCreatePlatformVars, (ConfigVars * __this, Object * var, MethodInfo * method)); -DO_APP_FUNC(0x00DF6C80, void, ConstantBuffer_PushGlobal, (CommandBuffer * cmd, ShaderVariablesProbeVolumes data, int32_t shaderId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1090, ConfigVars_Editor_GetAllSerializedPlatformVar__MethodInfo); +DO_APP_FUNC(0x00DF6C00, Object *, ConfigVars_GetOrCreatePlatformVars, (ConfigVars * __this, Object * * var, MethodInfo * method)); +DO_APP_FUNC(0x00DF6C80, void, ConstantBuffer_PushGlobal, (CommandBuffer * cmd, ShaderVariablesProbeVolumes * data, int32_t shaderId, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C92A20, ConstantBuffer_PushGlobal__MethodInfo); DO_APP_FUNC(0x00DF6D10, void, ConstantBuffer_Set, (CommandBuffer * cmd, ComputeShader * cs, int32_t shaderId, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C97FB0, ConstantBuffer_Set__MethodInfo); @@ -213602,19 +236855,23 @@ DO_APP_FUNC(0x00DF6D10, void, ConstantBuffer_Set_2, (CommandBuffer * cmd, Comput DO_APP_FUNC_METHODINFO(0x03C97FD0, ConstantBuffer_Set_2__MethodInfo); DO_APP_FUNC(0x00DF6D10, void, ConstantBuffer_Set_3, (CommandBuffer * cmd, ComputeShader * cs, int32_t shaderId, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C97FD8, ConstantBuffer_Set_3__MethodInfo); -DO_APP_FUNC(0x00DF6D80, void, ConstantBuffer_UpdateData, (Hammersley_Hammersley2dSeq16 data, MethodInfo * method)); +DO_APP_FUNC(0x00DF6D80, void, ConstantBuffer_UpdateData, (Hammersley_Hammersley2dSeq16 * data, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C98128, ConstantBuffer_UpdateData__MethodInfo); -DO_APP_FUNC(0x00DF6D80, void, ConstantBuffer_UpdateData_1, (Hammersley_Hammersley2dSeq256 data, MethodInfo * method)); +DO_APP_FUNC(0x00DF6D80, void, ConstantBuffer_UpdateData_1, (Hammersley_Hammersley2dSeq256 * data, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C98138, ConstantBuffer_UpdateData_1__MethodInfo); -DO_APP_FUNC(0x00DF6D80, void, ConstantBuffer_UpdateData_2, (Hammersley_Hammersley2dSeq32 data, MethodInfo * method)); +DO_APP_FUNC(0x00DF6D80, void, ConstantBuffer_UpdateData_2, (Hammersley_Hammersley2dSeq32 * data, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C98140, ConstantBuffer_UpdateData_2__MethodInfo); -DO_APP_FUNC(0x00DF6D80, void, ConstantBuffer_UpdateData_3, (Hammersley_Hammersley2dSeq64 data, MethodInfo * method)); +DO_APP_FUNC(0x00DF6D80, void, ConstantBuffer_UpdateData_3, (Hammersley_Hammersley2dSeq64 * data, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C98150, ConstantBuffer_UpdateData_3__MethodInfo); DO_APP_FUNC(0x00DF6DD0, Object *, Context_1_CreateMessage_1, (Context_1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1078, Context_1_CreateMessage_1__MethodInfo); DO_APP_FUNC(0x00DF7010, Object *, Context_1_CreateMessage_2, (Context_1 * __this, Query * query, MethodInfo * method)); DO_APP_FUNC(0x00DF7050, void, Context_1_RegisterMessageType, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1068, Context_1_RegisterMessageType__MethodInfo); DO_APP_FUNC(0x00DF7230, bool, Contract_ForAll, (IEnumerable_1_System_Object_ * collection, Predicate_1_Object_ * predicate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1060, Contract_ForAll__MethodInfo); DO_APP_FUNC(0x00DF7470, void, ContractUtils_RequiresNotNullItems, (IList_1_System_Object_ * array, String * arrayName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB1050, ContractUtils_RequiresNotNullItems__MethodInfo); DO_APP_FUNC(0x00DF75C0, IList_1_System_Object_ *, ControlPlayableAsset_GetComponent, (ControlPlayableAsset * __this, GameObject * gameObject, MethodInfo * method)); DO_APP_FUNC(0x00DF7760, Object *, Controller_GetExtension, (Controller * __this, MethodInfo * method)); DO_APP_FUNC(0x00DF7870, Object *, Controller_GetTemplate_2, (Controller * __this, MethodInfo * method)); @@ -213626,7 +236883,7 @@ DO_APP_FUNC(0x00DF7CE0, Object *, ControllerTemplate_GetElement_1, (ControllerTe DO_APP_FUNC(0x00DF7D70, Object *, ControllerTemplate_Rewired_IControllerTemplate_GetElement_1, (ControllerTemplate * __this, int32_t id, MethodInfo * method)); DO_APP_FUNC(0x00DF7E30, void, CoreUnsafeUtils_CombineHashes_1, (int32_t count, Void * hashes, Hash128 * outHash, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C95D30, CoreUnsafeUtils_CombineHashes_1__MethodInfo); -DO_APP_FUNC(0x00DF7F70, int32_t, CoreUnsafeUtils_CompareHashes_1, (int32_t oldHashCount, Void * oldHashes, int32_t newHashCount, Void * newHashes, int32_t * addIndices, int32_t * removeIndices, int32_t addCount, int32_t remCount, MethodInfo * method)); +DO_APP_FUNC(0x00DF7F70, int32_t, CoreUnsafeUtils_CompareHashes_1, (int32_t oldHashCount, Void * oldHashes, int32_t newHashCount, Void * newHashes, int32_t * addIndices, int32_t * removeIndices, int32_t * addCount, int32_t * remCount, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C95D28, CoreUnsafeUtils_CompareHashes_1__MethodInfo); DO_APP_FUNC(0x00DF8280, void, CoreUnsafeUtils_CopyTo, (Int32__Array * list, Void * dest, int32_t count, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C95D00, CoreUnsafeUtils_CopyTo__MethodInfo); @@ -213641,9 +236898,11 @@ DO_APP_FUNC(0x00DF8590, IEnumerable_1_System_Type_ *, CoreUtils_GetAllTypesDeriv DO_APP_FUNC(0x00DF8790, Int32Enum__Enum, CoreUtils_GetLastEnumValue, (MethodInfo * method)); DO_APP_FUNC(0x00DF8840, Object *, CoreUtils_GetLastEnumValue_1, (MethodInfo * method)); DO_APP_FUNC(0x00DF88F0, bool, CoreUtils_HasFlag, (Object * mask, Object * flag, MethodInfo * method)); -DO_APP_FUNC(0x00DC7320, void, CoreUtils_Swap, (Object * a, Object * b, MethodInfo * method)); +DO_APP_FUNC(0x00DC7320, void, CoreUtils_Swap, (Object * * a, Object * * b, MethodInfo * method)); DO_APP_FUNC(0x00DF8970, CustomAttributeNamedArgument__Array *, CustomAttributeData_UnboxValues, (Object__Array * values, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC478, CustomAttributeData_UnboxValues__MethodInfo); DO_APP_FUNC(0x00DF8AE0, CustomAttributeTypedArgument__Array *, CustomAttributeData_UnboxValues_1, (Object__Array * values, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC480, CustomAttributeData_UnboxValues_1__MethodInfo); DO_APP_FUNC(0x00DF8C30, Object__Array *, CustomAttributeData_UnboxValues_2, (Object__Array * values, MethodInfo * method)); DO_APP_FUNC(0x00DF8D90, Object *, CustomAttributeExtensions_GetCustomAttribute_3, (Assembly * element, MethodInfo * method)); DO_APP_FUNC(0x00DF8EF0, Object *, CustomAttributeExtensions_GetCustomAttribute_4, (MemberInfo_1 * element, MethodInfo * method)); @@ -213651,25 +236910,34 @@ DO_APP_FUNC(0x00DF8FB0, Object *, CustomAttributeExtensions_GetCustomAttribute_5 DO_APP_FUNC(0x00DF9080, IEnumerable_1_System_Object_ *, CustomAttributeExtensions_GetCustomAttributes_2, (MemberInfo_1 * element, MethodInfo * method)); DO_APP_FUNC(0x00DF9140, IEnumerable_1_System_Object_ *, CustomAttributeExtensions_GetCustomAttributes_3, (MemberInfo_1 * element, bool inherit, MethodInfo * method)); DO_APP_FUNC(0x00DF9210, void, CustomController_Editor_DeleteElement_1, (CustomController_Editor * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0FB8, CustomController_Editor_DeleteElement_1__MethodInfo); DO_APP_FUNC(0x00DF9600, Object *, CustomController_Editor_GetElement, (CustomController_Editor * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0FA0, CustomController_Editor_GetElement__MethodInfo); DO_APP_FUNC(0x00DF98D0, String__Array *, CustomController_Editor_GetElementNames_1, (CustomController_Editor * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0F90, CustomController_Editor_GetElementNames_1__MethodInfo); DO_APP_FUNC(0x00DF9A20, void, CustomController_Editor_LrpaQemiFqjAqmcSpRyEEJtfSKGR, (CustomController_Editor * __this, int32_t param_0000b5b3, List_1_System_Object_ * param_0000b5b4, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0F88, CustomController_Editor_LrpaQemiFqjAqmcSpRyEEJtfSKGR__MethodInfo); DO_APP_FUNC(0x00DF9C80, void, DebugInformation_ThxeOHFEsWrNZaEFBJRKcVsEghgJb, (ControllerType__Enum param_0000c9e3, IList_1_System_Object_ * param_0000c9e4, String * param_0000c9e5, IDictionary_2_System_String_System_Boolean_ * param_0000c9e6, String * param_0000c9e7, MethodInfo * method)); DO_APP_FUNC(0x00DFA660, Object *, DebugUIHandlerWidget_CastWidget, (DebugUIHandlerWidget * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0F30, DebugUIHandlerWidget_CastWidget__MethodInfo); DO_APP_FUNC(0x00DFA8F0, void, DefaultEventSystem_SendFocusBasedEvent, (DefaultEventSystem * __this, Func_2_Object_UnityEngine_UIElements_EventBase_ * evtFactory, Object * arg, MethodInfo * method)); DO_APP_FUNC(0x00DFAD80, void, DefaultEventSystem_SendPositionBasedEvent, (DefaultEventSystem * __this, Vector3 mousePosition, Vector3 delta, int32_t pointerId, Nullable_1_Int32_ targetDisplay, Func_4_UnityEngine_Vector3_UnityEngine_Vector3_Object_UnityEngine_UIElements_EventBase_ * evtFactory, Object * arg, bool deselectIfNoTarget, MethodInfo * method)); DO_APP_FUNC(0x00DFB680, void, DefaultEventSystem_SendPositionBasedEvent_1, (DefaultEventSystem * __this, Vector3 mousePosition, Vector3 delta, int32_t pointerId, Nullable_1_Int32_ targetDisplay, Func_4_UnityEngine_Vector3_UnityEngine_Vector3_UnityEngine_Touch_UnityEngine_UIElements_EventBase_ * evtFactory, Touch arg, bool deselectIfNoTarget, MethodInfo * method)); -DO_APP_FUNC(0x00DFBFD0, void, DelegateHelpers_InvokeCallbacksSafe_1, (CallbackArray_1_System_Action_1__4 callbacks, InputEventPtr argument, String * callbackName, Object * context, MethodInfo * method)); -DO_APP_FUNC(0x00DFC1E0, void, DelegateHelpers_InvokeCallbacksSafe_2, (CallbackArray_1_System_Action_1_ callbacks, Object * argument, String * callbackName, Object * context, MethodInfo * method)); -DO_APP_FUNC(0x00DFC3F0, void, DelegateHelpers_InvokeCallbacksSafe_3, (CallbackArray_1_System_Action_1__1 callbacks, InputAction_CallbackContext argument, String * callbackName, Object * context, MethodInfo * method)); -DO_APP_FUNC(0x00DFC610, void, DelegateHelpers_InvokeCallbacksSafe_4, (CallbackArray_1_System_Action_2__6 callbacks, InputEventPtr argument1, Object * argument2, String * callbackName, Object * context, MethodInfo * method)); -DO_APP_FUNC(0x00DFC830, void, DelegateHelpers_InvokeCallbacksSafe_5, (CallbackArray_1_System_Action_2__7 callbacks, Object * argument1, InputEventPtr argument2, String * callbackName, Object * context, MethodInfo * method)); -DO_APP_FUNC(0x00DFCA50, void, DelegateHelpers_InvokeCallbacksSafe_6, (CallbackArray_1_System_Action_2__8 callbacks, Object * argument1, Int32Enum__Enum argument2, String * callbackName, Object * context, MethodInfo * method)); -DO_APP_FUNC(0x00DFCC70, void, DelegateHelpers_InvokeCallbacksSafe_7, (CallbackArray_1_System_Action_2__9 callbacks, Object * argument1, Object * argument2, String * callbackName, Object * context, MethodInfo * method)); -DO_APP_FUNC(0x00DFCE90, void, DelegateHelpers_InvokeCallbacksSafe_AndInvokeReturnedActions, (CallbackArray_1_System_Func_2_ callbacks, Object * argument, String * callbackName, Object * context, MethodInfo * method)); -DO_APP_FUNC(0x00DFD0B0, bool, DelegateHelpers_InvokeCallbacksSafe_AnyCallbackReturnsObject, (CallbackArray_1_System_Func_2__1 callbacks, Object * argument, String * callbackName, Object * context, MethodInfo * method)); -DO_APP_FUNC(0x00DFD2E0, bool, DelegateHelpers_InvokeCallbacksSafe_AnyCallbackReturnsTrue, (CallbackArray_1_System_Func_3__1 callbacks, Object * argument1, InputEventPtr argument2, String * callbackName, Object * context, MethodInfo * method)); -DO_APP_FUNC(0x00DFD530, bool, DelegateHelpers_InvokeCallbacksSafe_AnyCallbackReturnsTrue_1, (CallbackArray_1_System_Func_3__2 callbacks, Object * argument1, Object * argument2, String * callbackName, Object * context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3328, DefaultEventSystem_SendPositionBasedEvent_1__MethodInfo); +DO_APP_FUNC(0x00DFBFD0, void, DelegateHelpers_InvokeCallbacksSafe_1, (CallbackArray_1_System_Action_1__5 * callbacks, InputEventPtr argument, String * callbackName, Object * context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0ED8, DelegateHelpers_InvokeCallbacksSafe_1__MethodInfo); +DO_APP_FUNC(0x00DFC1E0, void, DelegateHelpers_InvokeCallbacksSafe_2, (CallbackArray_1_System_Action_1_ * callbacks, Object * argument, String * callbackName, Object * context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC25E0, DelegateHelpers_InvokeCallbacksSafe_2__MethodInfo); +DO_APP_FUNC(0x00DFC3F0, void, DelegateHelpers_InvokeCallbacksSafe_3, (CallbackArray_1_System_Action_1__1 * callbacks, InputAction_CallbackContext argument, String * callbackName, Object * context, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2670, DelegateHelpers_InvokeCallbacksSafe_3__MethodInfo); +DO_APP_FUNC(0x00DFC610, void, DelegateHelpers_InvokeCallbacksSafe_4, (CallbackArray_1_System_Action_2__6 * callbacks, InputEventPtr argument1, Object * argument2, String * callbackName, Object * context, MethodInfo * method)); +DO_APP_FUNC(0x00DFC830, void, DelegateHelpers_InvokeCallbacksSafe_5, (CallbackArray_1_System_Action_2__8 * callbacks, Object * argument1, InputEventPtr argument2, String * callbackName, Object * context, MethodInfo * method)); +DO_APP_FUNC(0x00DFCA50, void, DelegateHelpers_InvokeCallbacksSafe_6, (CallbackArray_1_System_Action_2__10 * callbacks, Object * argument1, Int32Enum__Enum argument2, String * callbackName, Object * context, MethodInfo * method)); +DO_APP_FUNC(0x00DFCC70, void, DelegateHelpers_InvokeCallbacksSafe_7, (CallbackArray_1_System_Action_2__12 * callbacks, Object * argument1, Object * argument2, String * callbackName, Object * context, MethodInfo * method)); +DO_APP_FUNC(0x00DFCE90, void, DelegateHelpers_InvokeCallbacksSafe_AndInvokeReturnedActions, (CallbackArray_1_System_Func_2_ * callbacks, Object * argument, String * callbackName, Object * context, MethodInfo * method)); +DO_APP_FUNC(0x00DFD0B0, bool, DelegateHelpers_InvokeCallbacksSafe_AnyCallbackReturnsObject, (CallbackArray_1_System_Func_2__2 * callbacks, Object * argument, String * callbackName, Object * context, MethodInfo * method)); +DO_APP_FUNC(0x00DFD2E0, bool, DelegateHelpers_InvokeCallbacksSafe_AnyCallbackReturnsTrue, (CallbackArray_1_System_Func_3__1 * callbacks, Object * argument1, InputEventPtr argument2, String * callbackName, Object * context, MethodInfo * method)); +DO_APP_FUNC(0x00DFD530, bool, DelegateHelpers_InvokeCallbacksSafe_AnyCallbackReturnsTrue_1, (CallbackArray_1_System_Func_3__3 * callbacks, Object * argument1, Object * argument2, String * callbackName, Object * context, MethodInfo * method)); DO_APP_FUNC(0x00DFD780, Object *, Dropdown_GetOrAddComponent, (GameObject * go, MethodInfo * method)); DO_APP_FUNC(0x00DFD830, int32_t, DynamicArrayExtensions_Partition, (Object__Array * data, int32_t left, int32_t right, MethodInfo * method)); DO_APP_FUNC(0x00DFDB00, void, DynamicArrayExtensions_QuickSort, (DynamicArray_1_System_Object_ * array, MethodInfo * method)); @@ -213677,33 +236945,55 @@ DO_APP_FUNC(0x00DF84F0, void, DynamicArrayExtensions_QuickSort_1, (Object__Array DO_APP_FUNC(0x00DFDB70, Dictionary_2_System_Object_IList_1_UnityEngine_GameObject_ *, EasyCombine_GetObjectsByProperty, (IList_1_UnityEngine_GameObject_ * gameObjects, EasyCombine_RendererPropertySelector_1_System_Object_ * selector, MethodInfo * method)); DO_APP_FUNC(0x00DFE280, List_1_System_Object_ *, EasyCombine_GetProperties, (IList_1_UnityEngine_GameObject_ * gameObjects, EasyCombine_RendererPropertySelector_1_System_Object_ * selector, MethodInfo * method)); DO_APP_FUNC(0x00DFE6C0, Color__Array *, EasyCombine_GetVertextData, (IList_1_UnityEngine_Color_ * source, Dictionary_2_System_Int32_System_Int32_ * triangles, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCDE8, EasyCombine_GetVertextData__MethodInfo); DO_APP_FUNC(0x00DFEB00, Color__Array *, EasyCombine_GetVertextData_1, (IList_1_UnityEngine_Color_ * source, Int32__Array * triangles, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCD70, EasyCombine_GetVertextData_1__MethodInfo); DO_APP_FUNC(0x00DFECA0, Object__Array *, EasyCombine_GetVertextData_2, (IList_1_System_Object_ * source, Dictionary_2_System_Int32_System_Int32_ * triangles, MethodInfo * method)); DO_APP_FUNC(0x00DFF110, Object__Array *, EasyCombine_GetVertextData_3, (IList_1_System_Object_ * source, Int32__Array * triangles, MethodInfo * method)); DO_APP_FUNC(0x00DFF310, Vector2__Array *, EasyCombine_GetVertextData_4, (IList_1_UnityEngine_Vector2_ * source, Dictionary_2_System_Int32_System_Int32_ * triangles, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCDE0, EasyCombine_GetVertextData_4__MethodInfo); DO_APP_FUNC(0x00DFF740, Vector2__Array *, EasyCombine_GetVertextData_5, (IList_1_UnityEngine_Vector2_ * source, Int32__Array * triangles, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCD60, EasyCombine_GetVertextData_5__MethodInfo); DO_APP_FUNC(0x00DFF8D0, Vector3__Array *, EasyCombine_GetVertextData_6, (IList_1_UnityEngine_Vector3_ * source, Dictionary_2_System_Int32_System_Int32_ * triangles, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCDD8, EasyCombine_GetVertextData_6__MethodInfo); DO_APP_FUNC(0x00DFFD10, Vector3__Array *, EasyCombine_GetVertextData_7, (IList_1_UnityEngine_Vector3_ * source, Int32__Array * triangles, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCD30, EasyCombine_GetVertextData_7__MethodInfo); DO_APP_FUNC(0x00DFFEB0, Vector4__Array *, EasyCombine_GetVertextData_8, (IList_1_UnityEngine_Vector4_ * source, Dictionary_2_System_Int32_System_Int32_ * triangles, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCDD0, EasyCombine_GetVertextData_8__MethodInfo); DO_APP_FUNC(0x00DFEB00, Vector4__Array *, EasyCombine_GetVertextData_9, (IList_1_UnityEngine_Vector4_ * source, Int32__Array * triangles, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCD28, EasyCombine_GetVertextData_9__MethodInfo); DO_APP_FUNC(0x00E002F0, void, EasyCombine_InitializeProgressReport_1, (Dictionary_2_System_Object_IList_1_UnityEngine_GameObject_ * data, MethodInfo * method)); DO_APP_FUNC(0x00E005B0, Object__Array *, Entity_QueryComponents, (Entity * __this, QueryComponentOptions__Enum queryComponentOption, bool queryIncludesInactiveChildren, bool returnNullOnEmpty, MethodInfo * method)); DO_APP_FUNC(0x00E00710, Object *, Enumerable_Aggregate, (IEnumerable_1_System_Object_ * source, Object * seed, Func_3_Object_Object_Object_ * func, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0E00, Enumerable_Aggregate__MethodInfo); DO_APP_FUNC(0x00E00980, bool, Enumerable_All, (IEnumerable_1_System_Char_ * source, Func_2_Char_Boolean_ * predicate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0DF8, Enumerable_All__MethodInfo); DO_APP_FUNC(0x00E00B80, bool, Enumerable_All_1, (IEnumerable_1_System_Object_ * source, Func_2_Object_Boolean_ * predicate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0DE8, Enumerable_All_1__MethodInfo); DO_APP_FUNC(0x00E00D80, bool, Enumerable_Any, (IEnumerable_1_KeyValuePair_2_System_UInt16_System_Object_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0DE0, Enumerable_Any__MethodInfo); DO_APP_FUNC(0x00E00EE0, bool, Enumerable_Any_1, (IEnumerable_1_System_Int32_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0DD0, Enumerable_Any_1__MethodInfo); DO_APP_FUNC(0x00E01040, bool, Enumerable_Any_2, (IEnumerable_1_System_Object_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0DD8, Enumerable_Any_2__MethodInfo); DO_APP_FUNC(0x00E011A0, bool, Enumerable_Any_3, (IEnumerable_1_KickedPlayer_ * source, Func_2_KickedPlayer_Boolean_ * predicate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDAA08, Enumerable_Any_3__MethodInfo); DO_APP_FUNC(0x00E01430, bool, Enumerable_Any_4, (IEnumerable_1_System_Object_ * source, Func_2_Object_Boolean_ * predicate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0DC0, Enumerable_Any_4__MethodInfo); DO_APP_FUNC(0x00E01630, bool, Enumerable_Any_5, (IEnumerable_1_Steamworks_SteamItemDef_t_ * source, Func_2_Steamworks_SteamItemDef_t_Boolean_ * predicate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC728, Enumerable_Any_5__MethodInfo); DO_APP_FUNC(0x00E01830, IEnumerable_1_System_Object_ *, Enumerable_Append, (IEnumerable_1_System_Object_ * source, Object * element, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0DC8, Enumerable_Append__MethodInfo); DO_APP_FUNC(0x00E01890, IEnumerable_1_System_Object_ *, Enumerable_AppendIterator, (IEnumerable_1_System_Object_ * source, Object * element, MethodInfo * method)); DO_APP_FUNC(0x00A1B820, IEnumerable_1_System_Object_ *, Enumerable_AsEnumerable, (IEnumerable_1_System_Object_ * source, MethodInfo * method)); DO_APP_FUNC(0x00A1B820, IEnumerable_1_UnityEngine_Vector2_ *, Enumerable_AsEnumerable_1, (IEnumerable_1_UnityEngine_Vector2_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFB0D8, Enumerable_AsEnumerable_1__MethodInfo); DO_APP_FUNC(0x00E019C0, IEnumerable_1_System_Int32Enum_ *, Enumerable_Cast, (IEnumerable * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0D98, Enumerable_Cast__MethodInfo); DO_APP_FUNC(0x00E01A50, IEnumerable_1_System_Object_ *, Enumerable_Cast_1, (IEnumerable * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0DA8, Enumerable_Cast_1__MethodInfo); DO_APP_FUNC(0x00E01AE0, IEnumerable_1_System_Single_ *, Enumerable_Cast_2, (IEnumerable * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF61D0, Enumerable_Cast_2__MethodInfo); DO_APP_FUNC(0x00E01B70, IEnumerable_1_System_Int32Enum_ *, Enumerable_CastIterator, (IEnumerable * source, MethodInfo * method)); DO_APP_FUNC(0x00E01C30, IEnumerable_1_System_Object_ *, Enumerable_CastIterator_1, (IEnumerable * source, MethodInfo * method)); DO_APP_FUNC(0x00E01B70, IEnumerable_1_System_Single_ *, Enumerable_CastIterator_2, (IEnumerable * source, MethodInfo * method)); @@ -213849,77 +237139,130 @@ DO_APP_FUNC(0x00E01E60, Func_2_UnityEngine_Experimental_Rendering_ProbeVolumeSce DO_APP_FUNC(0x00E01E60, Func_2_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData_ *, Enumerable_CombineSelectors_122, (Func_2_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile_Object_ * selector1, Func_2_Object_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData_ * selector2, MethodInfo * method)); DO_APP_FUNC(0x00E01E60, Func_2_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo_ *, Enumerable_CombineSelectors_123, (Func_2_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile_Object_ * selector1, Func_2_Object_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo_ * selector2, MethodInfo * method)); DO_APP_FUNC(0x00E01FD0, IEnumerable_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ *, Enumerable_Concat, (IEnumerable_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * first, IEnumerable_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * second, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0DB8, Enumerable_Concat__MethodInfo); DO_APP_FUNC(0x00E02060, IEnumerable_1_System_Int32_ *, Enumerable_Concat_1, (IEnumerable_1_System_Int32_ * first, IEnumerable_1_System_Int32_ * second, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1BA90, Enumerable_Concat_1__MethodInfo); DO_APP_FUNC(0x00E020F0, IEnumerable_1_System_Object_ *, Enumerable_Concat_2, (IEnumerable_1_System_Object_ * first, IEnumerable_1_System_Object_ * second, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0D78, Enumerable_Concat_2__MethodInfo); DO_APP_FUNC(0x00E02180, IEnumerable_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ *, Enumerable_ConcatIterator, (IEnumerable_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * first, IEnumerable_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * second, MethodInfo * method)); DO_APP_FUNC(0x00E022B0, IEnumerable_1_System_Int32_ *, Enumerable_ConcatIterator_1, (IEnumerable_1_System_Int32_ * first, IEnumerable_1_System_Int32_ * second, MethodInfo * method)); DO_APP_FUNC(0x00E01890, IEnumerable_1_System_Object_ *, Enumerable_ConcatIterator_2, (IEnumerable_1_System_Object_ * first, IEnumerable_1_System_Object_ * second, MethodInfo * method)); DO_APP_FUNC(0x00E023E0, bool, Enumerable_Contains, (IEnumerable_1_System_Int32_ * source, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D17480, Enumerable_Contains__MethodInfo); DO_APP_FUNC(0x00E023E0, bool, Enumerable_Contains_1, (IEnumerable_1_System_Int32Enum_ * source, Int32Enum__Enum value, MethodInfo * method)); DO_APP_FUNC(0x00E02480, bool, Enumerable_Contains_2, (IEnumerable_1_System_Object_ * source, Object * value, MethodInfo * method)); DO_APP_FUNC(0x00E023E0, bool, Enumerable_Contains_3, (IEnumerable_1_System_UInt32_ * source, uint32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1BB28, Enumerable_Contains_3__MethodInfo); DO_APP_FUNC(0x00E02530, bool, Enumerable_Contains_4, (IEnumerable_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage_ * source, HIDSupport_HIDPageUsage value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF288, Enumerable_Contains_4__MethodInfo); DO_APP_FUNC(0x00E02640, bool, Enumerable_Contains_5, (IEnumerable_1_System_Int32_ * source, int32_t value, IEqualityComparer_1_System_Int32_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0D48, Enumerable_Contains_5__MethodInfo); DO_APP_FUNC(0x00E02850, bool, Enumerable_Contains_6, (IEnumerable_1_System_Int32Enum_ * source, Int32Enum__Enum value, IEqualityComparer_1_System_Int32Enum_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0D68, Enumerable_Contains_6__MethodInfo); DO_APP_FUNC(0x00E02A60, bool, Enumerable_Contains_7, (IEnumerable_1_System_Object_ * source, Object * value, IEqualityComparer_1_System_Object_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0D30, Enumerable_Contains_7__MethodInfo); DO_APP_FUNC(0x00E02C70, bool, Enumerable_Contains_8, (IEnumerable_1_System_UInt32_ * source, uint32_t value, IEqualityComparer_1_System_UInt32_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0D20, Enumerable_Contains_8__MethodInfo); DO_APP_FUNC(0x00E02E80, bool, Enumerable_Contains_9, (IEnumerable_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage_ * source, HIDSupport_HIDPageUsage value, IEqualityComparer_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0D10, Enumerable_Contains_9__MethodInfo); DO_APP_FUNC(0x00E03160, int32_t, Enumerable_Count, (IEnumerable_1_KeyValuePair_2_System_Int32_System_Int32_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0D18, Enumerable_Count__MethodInfo); DO_APP_FUNC(0x00E03390, int32_t, Enumerable_Count_1, (IEnumerable_1_KeyValuePair_2_System_UInt16_System_Object_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0D00, Enumerable_Count_1__MethodInfo); DO_APP_FUNC(0x00E035C0, int32_t, Enumerable_Count_2, (IEnumerable_1_KeyValuePair_2_UnityEngine_Vector3_System_Int32_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0CF0, Enumerable_Count_2__MethodInfo); DO_APP_FUNC(0x00E037F0, int32_t, Enumerable_Count_3, (IEnumerable_1_System_Runtime_InteropServices_GCHandle_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0CD0, Enumerable_Count_3__MethodInfo); DO_APP_FUNC(0x00E03A20, int32_t, Enumerable_Count_4, (IEnumerable_1_System_Int32_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0CE0, Enumerable_Count_4__MethodInfo); DO_APP_FUNC(0x00E03C50, int32_t, Enumerable_Count_5, (IEnumerable_1_UnityEngine_InputSystem_Utilities_InternedString_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0CC0, Enumerable_Count_5__MethodInfo); DO_APP_FUNC(0x00E03E80, int32_t, Enumerable_Count_6, (IEnumerable_1_System_Object_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0CA0, Enumerable_Count_6__MethodInfo); DO_APP_FUNC(0x00E040B0, int32_t, Enumerable_Count_7, (IEnumerable_1_UnityEngine_InputSystem_UI_PointerModel_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0C88, Enumerable_Count_7__MethodInfo); DO_APP_FUNC(0x00E042E0, int32_t, Enumerable_Count_8, (IEnumerable_1_UnityEngine_InputSystem_Utilities_Substring_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0C90, Enumerable_Count_8__MethodInfo); DO_APP_FUNC(0x00E04510, int32_t, Enumerable_Count_9, (IEnumerable_1_System_UInt32_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0C78, Enumerable_Count_9__MethodInfo); DO_APP_FUNC(0x00E04740, int32_t, Enumerable_Count_10, (IEnumerable_1_System_UInt64_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0C50, Enumerable_Count_10__MethodInfo); DO_APP_FUNC(0x00E04970, int32_t, Enumerable_Count_11, (IEnumerable_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTimeout_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0C30, Enumerable_Count_11__MethodInfo); DO_APP_FUNC(0x00E04BA0, int32_t, Enumerable_Count_12, (IEnumerable_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0C38, Enumerable_Count_12__MethodInfo); DO_APP_FUNC(0x00E04DD0, int32_t, Enumerable_Count_13, (IEnumerable_1_UnityEngine_InputSystem_OnScreen_OnScreenControl_OnScreenDeviceInfo_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0C20, Enumerable_Count_13__MethodInfo); DO_APP_FUNC(0x00E05000, int32_t, Enumerable_Count_14, (IEnumerable_1_System_Object_ * source, Func_2_Object_Boolean_ * predicate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0BF0, Enumerable_Count_14__MethodInfo); DO_APP_FUNC(0x00E05220, IEnumerable_1_System_Int32_ *, Enumerable_Distinct, (IEnumerable_1_System_Int32_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1BA80, Enumerable_Distinct__MethodInfo); DO_APP_FUNC(0x00E05280, IEnumerable_1_System_Object_ *, Enumerable_Distinct_1, (IEnumerable_1_System_Object_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0C00, Enumerable_Distinct_1__MethodInfo); DO_APP_FUNC(0x00E052E0, IEnumerable_1_System_Int32_ *, Enumerable_DistinctIterator, (IEnumerable_1_System_Int32_ * source, IEqualityComparer_1_System_Int32_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00E05410, IEnumerable_1_System_Object_ *, Enumerable_DistinctIterator_1, (IEnumerable_1_System_Object_ * source, IEqualityComparer_1_System_Object_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00E05540, Object *, Enumerable_ElementAt, (IEnumerable_1_System_Object_ * source, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0BD8, Enumerable_ElementAt__MethodInfo); DO_APP_FUNC(0x00E05810, uint32_t, Enumerable_ElementAt_1, (IEnumerable_1_System_UInt32_ * source, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0BA8, Enumerable_ElementAt_1__MethodInfo); DO_APP_FUNC(0x00454890, IEnumerable_1_System_Int32_ *, Enumerable_Empty, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE4568, Enumerable_Empty__MethodInfo); DO_APP_FUNC(0x00454890, IEnumerable_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ *, Enumerable_Empty_1, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5AD0, Enumerable_Empty_1__MethodInfo); DO_APP_FUNC(0x00454890, IEnumerable_1_System_Object_ *, Enumerable_Empty_2, (MethodInfo * method)); DO_APP_FUNC(0x00E05AD0, IEnumerable_1_System_Object_ *, Enumerable_Except, (IEnumerable_1_System_Object_ * first, IEnumerable_1_System_Object_ * second, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0BB8, Enumerable_Except__MethodInfo); DO_APP_FUNC(0x00E05B60, IEnumerable_1_System_Object_ *, Enumerable_ExceptIterator, (IEnumerable_1_System_Object_ * first, IEnumerable_1_System_Object_ * second, IEqualityComparer_1_System_Object_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00E05CF0, KeyValuePair_2_System_Object_System_Object_, Enumerable_First, (IEnumerable_1_KeyValuePair_2_System_Object_System_Object_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0B90, Enumerable_First__MethodInfo); DO_APP_FUNC(0x00E05F40, AsyncOperationHandle, Enumerable_First_1, (IEnumerable_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ * source, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C98FB0, Enumerable_First_1__MethodInfo); DO_APP_FUNC(0x00E061B0, int32_t, Enumerable_First_2, (IEnumerable_1_System_Int32_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0B80, Enumerable_First_2__MethodInfo); DO_APP_FUNC(0x00E063E0, Object *, Enumerable_First_3, (IEnumerable_1_System_Object_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0B70, Enumerable_First_3__MethodInfo); DO_APP_FUNC(0x00E06610, Resolution, Enumerable_First_4, (IEnumerable_1_UnityEngine_Resolution_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD3CB0, Enumerable_First_4__MethodInfo); DO_APP_FUNC(0x00E06880, KeyValuePair_2_System_Int32Enum_System_Object_, Enumerable_First_5, (IEnumerable_1_KeyValuePair_2_System_Int32Enum_System_Object_ * source, Func_2_System_Collections_Generic_KeyValuePair_2_Boolean__2 * predicate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0B68, Enumerable_First_5__MethodInfo); DO_APP_FUNC(0x00E06B20, Object *, Enumerable_First_6, (IEnumerable_1_System_Object_ * source, Func_2_Object_Boolean_ * predicate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0B40, Enumerable_First_6__MethodInfo); DO_APP_FUNC(0x00E06D10, PlayableBinding, Enumerable_First_7, (IEnumerable_1_UnityEngine_Playables_PlayableBinding_ * source, Func_2_UnityEngine_Playables_PlayableBinding_Boolean_ * predicate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B3F8, Enumerable_First_7__MethodInfo); DO_APP_FUNC(0x00E06FD0, KeyValuePair_2_System_Int32Enum_System_Object_, Enumerable_FirstOrDefault, (IEnumerable_1_KeyValuePair_2_System_Int32Enum_System_Object_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0B18, Enumerable_FirstOrDefault__MethodInfo); DO_APP_FUNC(0x00E07230, Object *, Enumerable_FirstOrDefault_1, (IEnumerable_1_System_Object_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0B20, Enumerable_FirstOrDefault_1__MethodInfo); DO_APP_FUNC(0x00E07470, KeyValuePair_2_System_Int32Enum_System_Object_, Enumerable_FirstOrDefault_2, (IEnumerable_1_KeyValuePair_2_System_Int32Enum_System_Object_ * source, Func_2_System_Collections_Generic_KeyValuePair_2_Boolean__2 * predicate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0B10, Enumerable_FirstOrDefault_2__MethodInfo); DO_APP_FUNC(0x00E07710, KeyValuePair_2_System_UInt32_SessionClient_, Enumerable_FirstOrDefault_3, (IEnumerable_1_KeyValuePair_2_System_UInt32_SessionClient_ * source, Func_2_System_Collections_Generic_KeyValuePair_2_Boolean__7 * predicate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6350, Enumerable_FirstOrDefault_3__MethodInfo); DO_APP_FUNC(0x00E079C0, Object *, Enumerable_FirstOrDefault_4, (IEnumerable_1_System_Object_ * source, Func_2_Object_Boolean_ * predicate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0AF0, Enumerable_FirstOrDefault_4__MethodInfo); DO_APP_FUNC(0x00E07BC0, JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb, Enumerable_FirstOrDefault_5, (IEnumerable_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ * source, Func_2_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_Boolean_ * predicate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0AE8, Enumerable_FirstOrDefault_5__MethodInfo); DO_APP_FUNC(0x00E07EB0, IEnumerable_1_System_Linq_IGrouping_2_ *, Enumerable_GroupBy, (IEnumerable_1_KeyValuePair_2_UnityEngine_Vector3_System_Int32_ * source, Func_2_System_Collections_Generic_KeyValuePair_2_UnityEngine_Vector3_ * keySelector, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE890, Enumerable_GroupBy__MethodInfo); DO_APP_FUNC(0x00E07EB0, IEnumerable_1_System_Linq_IGrouping_2__1 *, Enumerable_GroupBy_1, (IEnumerable_1_System_Object_ * source, Func_2_Object_Object_ * keySelector, MethodInfo * method)); DO_APP_FUNC(0x00E07EB0, IEnumerable_1_System_Linq_IGrouping_2__2 *, Enumerable_GroupBy_2, (IEnumerable_1_UnityEngine_Resolution_ * source, Func_2_UnityEngine_Resolution_Object_ * keySelector, MethodInfo * method)); DO_APP_FUNC(0x00E07F60, IEnumerable_1_System_Linq_IGrouping_2__3 *, Enumerable_GroupBy_3, (IEnumerable_1_System_ValueTuple_2__5 * source, Func_2_ValueTuple_2_Object_Int32_Int32_ * keySelector, Func_2_ValueTuple_2_Object_Int32_Object_ * elementSelector, MethodInfo * method)); DO_APP_FUNC(0x00E07F60, IEnumerable_1_System_Linq_IGrouping_2__1 *, Enumerable_GroupBy_4, (IEnumerable_1_System_Object_ * source, Func_2_Object_Object_ * keySelector, Func_2_Object_Object_ * elementSelector, MethodInfo * method)); DO_APP_FUNC(0x00E08000, Int32Enum__Enum, Enumerable_Last, (IEnumerable_1_System_Int32Enum_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0AE0, Enumerable_Last__MethodInfo); DO_APP_FUNC(0x00E08330, Object *, Enumerable_Last_1, (IEnumerable_1_System_Object_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0AD0, Enumerable_Last_1__MethodInfo); DO_APP_FUNC(0x00E08660, Vector2, Enumerable_Last_2, (IEnumerable_1_UnityEngine_Vector2_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0AD8, Enumerable_Last_2__MethodInfo); DO_APP_FUNC(0x00E089A0, Object *, Enumerable_LastOrDefault, (IEnumerable_1_System_Object_ * source, Func_2_Object_Boolean_ * predicate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0AC0, Enumerable_LastOrDefault__MethodInfo); DO_APP_FUNC(0x00E08C10, IEnumerable_1_System_Object_ *, Enumerable_OfType, (IEnumerable * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0AC8, Enumerable_OfType__MethodInfo); DO_APP_FUNC(0x00E01C30, IEnumerable_1_System_Object_ *, Enumerable_OfTypeIterator, (IEnumerable * source, MethodInfo * method)); DO_APP_FUNC(0x00E08C70, IOrderedEnumerable_1_System_Collections_Generic_KeyValuePair_2_ *, Enumerable_OrderBy, (IEnumerable_1_KeyValuePair_2_System_Object_System_Object_ * source, Func_2_System_Collections_Generic_KeyValuePair_2_Object__1 * keySelector, MethodInfo * method)); DO_APP_FUNC(0x00E08C70, IOrderedEnumerable_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ *, Enumerable_OrderBy_1, (IEnumerable_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ * source, Func_2_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_Int32_ * keySelector, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9DF90, Enumerable_OrderBy_1__MethodInfo); DO_APP_FUNC(0x00E08C70, IOrderedEnumerable_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ *, Enumerable_OrderBy_2, (IEnumerable_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * source, Func_2_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_UInt32_ * keySelector, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D208D8, Enumerable_OrderBy_2__MethodInfo); DO_APP_FUNC(0x00E08C70, IOrderedEnumerable_1_System_Object_ *, Enumerable_OrderBy_3, (IEnumerable_1_System_Object_ * source, Func_2_Object_Boolean_ * keySelector, MethodInfo * method)); DO_APP_FUNC(0x00E08C70, IOrderedEnumerable_1_System_Object_ *, Enumerable_OrderBy_4, (IEnumerable_1_System_Object_ * source, Func_2_Object_Int32_ * keySelector, MethodInfo * method)); DO_APP_FUNC(0x00E08C70, IOrderedEnumerable_1_System_Object_ *, Enumerable_OrderBy_5, (IEnumerable_1_System_Object_ * source, Func_2_Object_Object_ * keySelector, MethodInfo * method)); @@ -213929,133 +237272,219 @@ DO_APP_FUNC(0x00E08D00, IOrderedEnumerable_1_System_Object_ *, Enumerable_OrderB DO_APP_FUNC(0x00E08D00, IOrderedEnumerable_1_System_Object_ *, Enumerable_OrderByDescending_1, (IEnumerable_1_System_Object_ * source, Func_2_Object_Int32_ * keySelector, MethodInfo * method)); DO_APP_FUNC(0x00E08D00, IOrderedEnumerable_1_System_Object_ *, Enumerable_OrderByDescending_2, (IEnumerable_1_System_Object_ * source, Func_2_Object_Object_ * keySelector, MethodInfo * method)); DO_APP_FUNC(0x00E08D90, IEnumerable_1_System_Object_ *, Enumerable_Reverse, (IEnumerable_1_System_Object_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0AA0, Enumerable_Reverse__MethodInfo); DO_APP_FUNC(0x00E08DF0, IEnumerable_1_UnityEngine_Vector2_ *, Enumerable_Reverse_1, (IEnumerable_1_UnityEngine_Vector2_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0AA8, Enumerable_Reverse_1__MethodInfo); DO_APP_FUNC(0x00E01C30, IEnumerable_1_System_Object_ *, Enumerable_ReverseIterator, (IEnumerable_1_System_Object_ * source, MethodInfo * method)); DO_APP_FUNC(0x00E01B70, IEnumerable_1_UnityEngine_Vector2_ *, Enumerable_ReverseIterator_1, (IEnumerable_1_UnityEngine_Vector2_ * source, MethodInfo * method)); DO_APP_FUNC(0x00E08E50, IEnumerable_1_System_Object_ *, Enumerable_Select, (IEnumerable_1_KeyValuePair_2_System_Guid_System_Object_ * source, Func_2_System_Collections_Generic_KeyValuePair_2_Object_ * selector, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0AB0, Enumerable_Select__MethodInfo); DO_APP_FUNC(0x00E09200, IEnumerable_1_System_Object_ *, Enumerable_Select_1, (IEnumerable_1_KeyValuePair_2_System_Object_System_Object_ * source, Func_2_System_Collections_Generic_KeyValuePair_2_Object__1 * selector, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0AB8, Enumerable_Select_1__MethodInfo); DO_APP_FUNC(0x00E095B0, IEnumerable_1_System_Object_ *, Enumerable_Select_2, (IEnumerable_1_KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * source, Func_2_System_Collections_Generic_KeyValuePair_2_Object__2 * selector, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0A80, Enumerable_Select_2__MethodInfo); DO_APP_FUNC(0x00E09960, IEnumerable_1_System_Object_ *, Enumerable_Select_3, (IEnumerable_1_System_Int32_ * source, Func_2_Int32_Object_ * selector, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0A88, Enumerable_Select_3__MethodInfo); DO_APP_FUNC(0x00E09D10, IEnumerable_1_System_Int32_ *, Enumerable_Select_4, (IEnumerable_1_System_Int32Enum_ * source, Func_2_Int32Enum_Int32_ * selector, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0A90, Enumerable_Select_4__MethodInfo); DO_APP_FUNC(0x00E0A0C0, IEnumerable_1_System_Object_ *, Enumerable_Select_5, (IEnumerable_1_UnityEngine_InputSystem_Utilities_InternedString_ * source, Func_2_UnityEngine_InputSystem_Utilities_InternedString_Object_ * selector, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0A98, Enumerable_Select_5__MethodInfo); DO_APP_FUNC(0x00E0A470, IEnumerable_1_System_Object_ *, Enumerable_Select_6, (IEnumerable_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ * source, Func_2_UnityEngine_InputSystem_Utilities_NameAndParameters_Object_ * selector, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0A60, Enumerable_Select_6__MethodInfo); DO_APP_FUNC(0x00E0A820, IEnumerable_1_System_Object_ *, Enumerable_Select_7, (IEnumerable_1_UnityEngine_InputSystem_Utilities_NamedValue_ * source, Func_2_UnityEngine_InputSystem_Utilities_NamedValue_Object_ * selector, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0A68, Enumerable_Select_7__MethodInfo); DO_APP_FUNC(0x00E0ABD0, IEnumerable_1_KeyValuePair_2_System_UInt16_System_Object_ *, Enumerable_Select_8, (IEnumerable_1_System_Object_ * source, Func_3_Object_Int32_System_Collections_Generic_KeyValuePair_2_ * selector, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0A70, Enumerable_Select_8__MethodInfo); DO_APP_FUNC(0x00E0AC60, IEnumerable_1_System_ValueTuple_2__5 *, Enumerable_Select_9, (IEnumerable_1_System_Object_ * source, Func_3_Object_Int32_ValueTuple_2_Object_Int32_ * selector, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0A78, Enumerable_Select_9__MethodInfo); DO_APP_FUNC(0x00E0ACF0, IEnumerable_1_System_Int32_ *, Enumerable_Select_10, (IEnumerable_1_System_Object_ * source, Func_2_Object_Int32_ * selector, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0A30, Enumerable_Select_10__MethodInfo); DO_APP_FUNC(0x00E0B0A0, IEnumerable_1_UnityEngine_InputSystem_Utilities_InternedString_ *, Enumerable_Select_11, (IEnumerable_1_System_Object_ * source, Func_2_Object_UnityEngine_InputSystem_Utilities_InternedString_ * selector, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0A40, Enumerable_Select_11__MethodInfo); DO_APP_FUNC(0x00E0B450, IEnumerable_1_System_Object_ *, Enumerable_Select_12, (IEnumerable_1_System_Object_ * source, Func_2_Object_Object_ * selector, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0A50, Enumerable_Select_12__MethodInfo); DO_APP_FUNC(0x00E0B800, IEnumerable_1_System_Object_ *, Enumerable_Select_13, (IEnumerable_1_System_Object_ * source, Func_3_Object_Int32_Object_ * selector, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0A58, Enumerable_Select_13__MethodInfo); DO_APP_FUNC(0x00E0B890, IEnumerable_1_System_UInt32_ *, Enumerable_Select_14, (IEnumerable_1_System_Object_ * source, Func_2_Object_UInt32_ * selector, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0A00, Enumerable_Select_14__MethodInfo); DO_APP_FUNC(0x00E0BC40, IEnumerable_1_UnityEngine_Vector2_ *, Enumerable_Select_15, (IEnumerable_1_System_Object_ * source, Func_2_Object_UnityEngine_Vector2_ * selector, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0A10, Enumerable_Select_15__MethodInfo); DO_APP_FUNC(0x00E0BFF0, IEnumerable_1_UnityEngine_Vector3_ *, Enumerable_Select_16, (IEnumerable_1_System_Object_ * source, Func_2_Object_UnityEngine_Vector3_ * selector, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0A18, Enumerable_Select_16__MethodInfo); DO_APP_FUNC(0x00E0C3A0, IEnumerable_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere_ *, Enumerable_Select_17, (IEnumerable_1_System_Object_ * source, Func_2_Object_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere_ * selector, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0A20, Enumerable_Select_17__MethodInfo); DO_APP_FUNC(0x00E0C750, IEnumerable_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData_ *, Enumerable_Select_18, (IEnumerable_1_System_Object_ * source, Func_2_Object_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData_ * selector, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB09D0, Enumerable_Select_18__MethodInfo); DO_APP_FUNC(0x00E0CB00, IEnumerable_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo_ *, Enumerable_Select_19, (IEnumerable_1_System_Object_ * source, Func_2_Object_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo_ * selector, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB09E0, Enumerable_Select_19__MethodInfo); DO_APP_FUNC(0x00E0CEB0, IEnumerable_1_System_Int32_ *, Enumerable_Select_20, (IEnumerable_1_Photon_Bolt_Internal_PacketStats_ * source, Func_2_Photon_Bolt_Internal_PacketStats_Int32_ * selector, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCA958, Enumerable_Select_20__MethodInfo); DO_APP_FUNC(0x00E0D260, IEnumerable_1_System_Int32_ *, Enumerable_Select_21, (IEnumerable_1_Steamworks_SteamItemDetails_t_ * source, Func_2_Steamworks_SteamItemDetails_t_Int32_ * selector, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1BA70, Enumerable_Select_21__MethodInfo); DO_APP_FUNC(0x00E0D610, IEnumerable_1_Steamworks_SteamItemDef_t_ *, Enumerable_Select_22, (IEnumerable_1_Steamworks_SteamItemDetails_t_ * source, Func_2_Steamworks_SteamItemDetails_t_Steamworks_SteamItemDef_t_ * selector, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1BE10, Enumerable_Select_22__MethodInfo); DO_APP_FUNC(0x00E0D9C0, IEnumerable_1_System_Object_ *, Enumerable_Select_23, (IEnumerable_1_UnityEngine_UIElements_StyleSelectorPart_ * source, Func_2_UnityEngine_UIElements_StyleSelectorPart_Object_ * selector, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB09F0, Enumerable_Select_23__MethodInfo); DO_APP_FUNC(0x00E0DD70, IEnumerable_1_System_Object_ *, Enumerable_Select_24, (IEnumerable_1_UnityEngine_InputSystem_Utilities_Substring_ * source, Func_2_UnityEngine_InputSystem_Utilities_Substring_Object_ * selector, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB09F8, Enumerable_Select_24__MethodInfo); DO_APP_FUNC(0x00E0E120, IEnumerable_1_UnityEngine_Vector2_ *, Enumerable_Select_25, (IEnumerable_1_UnityEngine_Vector2_ * source, Func_2_UnityEngine_Vector2_UnityEngine_Vector2_ * selector, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB09B0, Enumerable_Select_25__MethodInfo); DO_APP_FUNC(0x00E0E4D0, IEnumerable_1_KeyValuePair_2_UnityEngine_Vector3_System_Int32_ *, Enumerable_Select_26, (IEnumerable_1_UnityEngine_Vector3_ * source, Func_3_UnityEngine_Vector3_Int32_System_Collections_Generic_KeyValuePair_2_ * selector, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB09B8, Enumerable_Select_26__MethodInfo); DO_APP_FUNC(0x00E0E560, IEnumerable_1_System_Object_ *, Enumerable_Select_27, (IEnumerable_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ * source, Func_2_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_Object_ * selector, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB09C0, Enumerable_Select_27__MethodInfo); DO_APP_FUNC(0x00E0E910, IEnumerable_1_System_Object_ *, Enumerable_Select_28, (IEnumerable_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * source, Func_2_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_Object_ * selector, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB09C8, Enumerable_Select_28__MethodInfo); DO_APP_FUNC(0x00E0ECC0, IEnumerable_1_System_Object_ *, Enumerable_Select_29, (IEnumerable_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile_ * source, Func_2_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile_Object_ * selector, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0990, Enumerable_Select_29__MethodInfo); DO_APP_FUNC(0x00E0F070, IEnumerable_1_KeyValuePair_2_System_UInt16_System_Object_ *, Enumerable_SelectIterator, (IEnumerable_1_System_Object_ * source, Func_3_Object_Int32_System_Collections_Generic_KeyValuePair_2_ * selector, MethodInfo * method)); DO_APP_FUNC(0x00E0F070, IEnumerable_1_System_ValueTuple_2__5 *, Enumerable_SelectIterator_1, (IEnumerable_1_System_Object_ * source, Func_3_Object_Int32_ValueTuple_2_Object_Int32_ * selector, MethodInfo * method)); DO_APP_FUNC(0x00E01890, IEnumerable_1_System_Object_ *, Enumerable_SelectIterator_2, (IEnumerable_1_System_Object_ * source, Func_3_Object_Int32_Object_ * selector, MethodInfo * method)); DO_APP_FUNC(0x00E01890, IEnumerable_1_KeyValuePair_2_UnityEngine_Vector3_System_Int32_ *, Enumerable_SelectIterator_3, (IEnumerable_1_UnityEngine_Vector3_ * source, Func_3_UnityEngine_Vector3_Int32_System_Collections_Generic_KeyValuePair_2_ * selector, MethodInfo * method)); DO_APP_FUNC(0x00E0F1A0, IEnumerable_1_System_Object_ *, Enumerable_SelectMany, (IEnumerable_1_System_Object_ * source, Func_2_Object_System_Collections_Generic_IEnumerable_1_ * selector, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0998, Enumerable_SelectMany__MethodInfo); DO_APP_FUNC(0x00E0F230, IEnumerable_1_System_Object_ *, Enumerable_SelectMany_1, (IEnumerable_1_System_Object_ * source, Func_2_Object_System_Collections_Generic_IEnumerable_1_ * collectionSelector, Func_3_Object_Object_Object_ * resultSelector, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB09A0, Enumerable_SelectMany_1__MethodInfo); DO_APP_FUNC(0x00E01890, IEnumerable_1_System_Object_ *, Enumerable_SelectManyIterator, (IEnumerable_1_System_Object_ * source, Func_2_Object_System_Collections_Generic_IEnumerable_1_ * selector, MethodInfo * method)); DO_APP_FUNC(0x00E0F300, IEnumerable_1_System_Object_ *, Enumerable_SelectManyIterator_1, (IEnumerable_1_System_Object_ * source, Func_2_Object_System_Collections_Generic_IEnumerable_1_ * collectionSelector, Func_3_Object_Object_Object_ * resultSelector, MethodInfo * method)); DO_APP_FUNC(0x00DF4E80, bool, Enumerable_SequenceEqual, (IEnumerable_1_System_Byte__2 * first, IEnumerable_1_System_Byte__2 * second, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0A468, Enumerable_SequenceEqual__MethodInfo); DO_APP_FUNC(0x00DF4E80, bool, Enumerable_SequenceEqual_1, (IEnumerable_1_System_Object_ * first, IEnumerable_1_System_Object_ * second, MethodInfo * method)); DO_APP_FUNC(0x00E0F490, bool, Enumerable_SequenceEqual_2, (IEnumerable_1_System_Byte__2 * first, IEnumerable_1_System_Byte__2 * second, IEqualityComparer_1_System_Byte_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0988, Enumerable_SequenceEqual_2__MethodInfo); DO_APP_FUNC(0x00E0F840, bool, Enumerable_SequenceEqual_3, (IEnumerable_1_System_Object_ * first, IEnumerable_1_System_Object_ * second, IEqualityComparer_1_System_Object_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0970, Enumerable_SequenceEqual_3__MethodInfo); DO_APP_FUNC(0x00E0FBF0, Object *, Enumerable_SingleOrDefault, (IEnumerable_1_System_Object_ * source, Func_2_Object_Boolean_ * predicate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0960, Enumerable_SingleOrDefault__MethodInfo); DO_APP_FUNC(0x00E0FEA0, int32_t, Enumerable_Sum_1, (IEnumerable_1_System_Object_ * source, Func_2_Object_Int32_ * selector, MethodInfo * method)); DO_APP_FUNC(0x00E0FED0, IEnumerable_1_System_Object_ *, Enumerable_Take, (IEnumerable_1_System_Object_ * source, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0950, Enumerable_Take__MethodInfo); DO_APP_FUNC(0x00E0FF30, IEnumerable_1_System_Object_ *, Enumerable_TakeIterator, (IEnumerable_1_System_Object_ * source, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x00E10000, IOrderedEnumerable_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ *, Enumerable_ThenBy, (IOrderedEnumerable_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * source, Func_2_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_UInt32_ * keySelector, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0920, Enumerable_ThenBy__MethodInfo); DO_APP_FUNC(0x00E10110, IOrderedEnumerable_1_System_Object_ *, Enumerable_ThenBy_1, (IOrderedEnumerable_1_System_Object_ * source, Func_2_Object_Int32_ * keySelector, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0928, Enumerable_ThenBy_1__MethodInfo); DO_APP_FUNC(0x00E10170, IOrderedEnumerable_1_System_Object_ *, Enumerable_ThenBy_2, (IOrderedEnumerable_1_System_Object_ * source, Func_2_Object_Object_ * keySelector, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0930, Enumerable_ThenBy_2__MethodInfo); DO_APP_FUNC(0x00E101D0, IOrderedEnumerable_1_System_Object_ *, Enumerable_ThenBy_3, (IOrderedEnumerable_1_System_Object_ * source, Func_2_Object_UInt32_ * keySelector, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0938, Enumerable_ThenBy_3__MethodInfo); DO_APP_FUNC(0x00E102E0, IOrderedEnumerable_1_System_Object_ *, Enumerable_ThenByDescending, (IOrderedEnumerable_1_System_Object_ * source, Func_2_Object_Boolean_ * keySelector, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB08F8, Enumerable_ThenByDescending__MethodInfo); DO_APP_FUNC(0x00E103F0, IOrderedEnumerable_1_System_Object_ *, Enumerable_ThenByDescending_1, (IOrderedEnumerable_1_System_Object_ * source, Func_2_Object_Int32_ * keySelector, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0908, Enumerable_ThenByDescending_1__MethodInfo); DO_APP_FUNC(0x00E10450, IOrderedEnumerable_1_System_Object_ *, Enumerable_ThenByDescending_2, (IOrderedEnumerable_1_System_Object_ * source, Func_2_Object_Object_ * keySelector, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0910, Enumerable_ThenByDescending_2__MethodInfo); DO_APP_FUNC(0x00E104B0, Int32__Array *, Enumerable_ToArray, (IEnumerable_1_System_Int32_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1BA60, Enumerable_ToArray__MethodInfo); DO_APP_FUNC(0x00E10530, InternedString__Array *, Enumerable_ToArray_1, (IEnumerable_1_UnityEngine_InputSystem_Utilities_InternedString_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0918, Enumerable_ToArray_1__MethodInfo); DO_APP_FUNC(0x00E105B0, NameAndParameters__Array *, Enumerable_ToArray_2, (IEnumerable_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB08D0, Enumerable_ToArray_2__MethodInfo); DO_APP_FUNC(0x00E10630, Object__Array *, Enumerable_ToArray_3, (IEnumerable_1_System_Object_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB08D8, Enumerable_ToArray_3__MethodInfo); DO_APP_FUNC(0x00E106B0, UInt32__Array *, Enumerable_ToArray_4, (IEnumerable_1_System_UInt32_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB08E8, Enumerable_ToArray_4__MethodInfo); DO_APP_FUNC(0x00E10730, UdpIPv4Address__Array *, Enumerable_ToArray_5, (IEnumerable_1_UdpKit_UdpIPv4Address_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB08F0, Enumerable_ToArray_5__MethodInfo); DO_APP_FUNC(0x00E107B0, Vector2__Array *, Enumerable_ToArray_6, (IEnumerable_1_UnityEngine_Vector2_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB08B0, Enumerable_ToArray_6__MethodInfo); DO_APP_FUNC(0x00E10830, Vector3__Array *, Enumerable_ToArray_7, (IEnumerable_1_UnityEngine_Vector3_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA5C8, Enumerable_ToArray_7__MethodInfo); DO_APP_FUNC(0x00E108B0, HairDesignerColliderBase_DualSphere__Array *, Enumerable_ToArray_8, (IEnumerable_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB08B8, Enumerable_ToArray_8__MethodInfo); DO_APP_FUNC(0x00E10930, InputControlScheme_DeviceRequirement__Array *, Enumerable_ToArray_9, (IEnumerable_1_UnityEngine_InputSystem_InputControlScheme_DeviceRequirement_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB08C0, Enumerable_ToArray_9__MethodInfo); DO_APP_FUNC(0x00E109B0, MotionSolver_GPUNodeData__Array *, Enumerable_ToArray_10, (IEnumerable_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB08C8, Enumerable_ToArray_10__MethodInfo); DO_APP_FUNC(0x00E10A30, MotionSolver_GPUNodeInfo__Array *, Enumerable_ToArray_11, (IEnumerable_1_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB08A0, Enumerable_ToArray_11__MethodInfo); DO_APP_FUNC(0x00E10AB0, Dictionary_2_System_Object_System_Object_ *, Enumerable_ToDictionary, (IEnumerable_1_System_Object_ * source, Func_2_Object_Object_ * keySelector, MethodInfo * method)); DO_APP_FUNC(0x00E10AB0, Dictionary_2_Photon_Bolt_UniqueId_System_Object_ *, Enumerable_ToDictionary_1, (IEnumerable_1_System_Object_ * source, Func_2_Object_Photon_Bolt_UniqueId_ * keySelector, MethodInfo * method)); DO_APP_FUNC(0x00E10B10, Dictionary_2_System_Object_System_Object_ *, Enumerable_ToDictionary_2, (IEnumerable_1_KeyValuePair_2_System_Object_System_Object_ * source, Func_2_System_Collections_Generic_KeyValuePair_2_Object__1 * keySelector, Func_2_System_Collections_Generic_KeyValuePair_2_Object__1 * elementSelector, MethodInfo * method)); DO_APP_FUNC(0x00E10B10, Dictionary_2_System_Object_System_Object_ *, Enumerable_ToDictionary_3, (IEnumerable_1_System_Object_ * source, Func_2_Object_Object_ * keySelector, Func_2_Object_Object_ * elementSelector, MethodInfo * method)); DO_APP_FUNC(0x00E10B30, Dictionary_2_System_Object_System_Object_ *, Enumerable_ToDictionary_4, (IEnumerable_1_KeyValuePair_2_System_Object_System_Object_ * source, Func_2_System_Collections_Generic_KeyValuePair_2_Object__1 * keySelector, Func_2_System_Collections_Generic_KeyValuePair_2_Object__1 * elementSelector, IEqualityComparer_1_System_Object_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB08A8, Enumerable_ToDictionary_4__MethodInfo); DO_APP_FUNC(0x00E10E80, Dictionary_2_System_Object_System_Object_ *, Enumerable_ToDictionary_5, (IEnumerable_1_System_Object_ * source, Func_2_Object_Object_ * keySelector, Func_2_Object_Object_ * elementSelector, IEqualityComparer_1_System_Object_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0898, Enumerable_ToDictionary_5__MethodInfo); DO_APP_FUNC(0x00E11140, Dictionary_2_Photon_Bolt_UniqueId_System_Object_ *, Enumerable_ToDictionary_6, (IEnumerable_1_System_Object_ * source, Func_2_Object_Photon_Bolt_UniqueId_ * keySelector, Func_2_Object_Object_ * elementSelector, IEqualityComparer_1_Photon_Bolt_UniqueId_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0878, Enumerable_ToDictionary_6__MethodInfo); DO_APP_FUNC(0x00E11430, List_1_Pathfinding_Connection_ *, Enumerable_ToList, (IEnumerable_1_Pathfinding_Connection__1 * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7B90, Enumerable_ToList__MethodInfo); DO_APP_FUNC(0x00E114E0, List_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ *, Enumerable_ToList_1, (IEnumerable_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0880, Enumerable_ToList_1__MethodInfo); DO_APP_FUNC(0x00E11590, List_1_System_Int32_ *, Enumerable_ToList_2, (IEnumerable_1_System_Int32_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0888, Enumerable_ToList_2__MethodInfo); DO_APP_FUNC(0x00E11640, List_1_System_Object_ *, Enumerable_ToList_3, (IEnumerable_1_System_Object_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0870, Enumerable_ToList_3__MethodInfo); DO_APP_FUNC(0x00E116F0, List_1_System_Single_ *, Enumerable_ToList_4, (IEnumerable_1_System_Single_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF61C0, Enumerable_ToList_4__MethodInfo); DO_APP_FUNC(0x00E117A0, List_1_Steamworks_SteamItemDef_t_ *, Enumerable_ToList_5, (IEnumerable_1_Steamworks_SteamItemDef_t_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1BE00, Enumerable_ToList_5__MethodInfo); DO_APP_FUNC(0x00E11850, IEnumerable_1_System_Object_ *, Enumerable_Union, (IEnumerable_1_System_Object_ * first, IEnumerable_1_System_Object_ * second, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2A38, Enumerable_Union__MethodInfo); DO_APP_FUNC(0x00E118E0, IEnumerable_1_System_Object_ *, Enumerable_UnionIterator, (IEnumerable_1_System_Object_ * first, IEnumerable_1_System_Object_ * second, IEqualityComparer_1_System_Object_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00E11A70, IEnumerable_1_KeyValuePair_2_System_Int32Enum_System_Object_ *, Enumerable_Where, (IEnumerable_1_KeyValuePair_2_System_Int32Enum_System_Object_ * source, Func_2_System_Collections_Generic_KeyValuePair_2_Boolean__2 * predicate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2A40, Enumerable_Where__MethodInfo); DO_APP_FUNC(0x00E11E00, IEnumerable_1_KeyValuePair_2_System_Object_System_Object_ *, Enumerable_Where_1, (IEnumerable_1_KeyValuePair_2_System_Object_System_Object_ * source, Func_2_System_Collections_Generic_KeyValuePair_2_Boolean__3 * predicate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2A48, Enumerable_Where_1__MethodInfo); DO_APP_FUNC(0x00E12190, IEnumerable_1_KeyValuePair_2_System_UInt16_System_Object_ *, Enumerable_Where_2, (IEnumerable_1_KeyValuePair_2_System_UInt16_System_Object_ * source, Func_2_System_Collections_Generic_KeyValuePair_2_Boolean__4 * predicate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2A50, Enumerable_Where_2__MethodInfo); DO_APP_FUNC(0x00E12520, IEnumerable_1_Pathfinding_Connection__1 *, Enumerable_Where_3, (IEnumerable_1_Pathfinding_Connection__1 * source, Func_2_Pathfinding_Connection_Boolean_ * predicate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7BB8, Enumerable_Where_3__MethodInfo); DO_APP_FUNC(0x00E128B0, IEnumerable_1_System_Object_ *, Enumerable_Where_4, (IEnumerable_1_System_Object_ * source, Func_2_Object_Boolean_ * predicate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2A20, Enumerable_Where_4__MethodInfo); DO_APP_FUNC(0x00E12C40, IEnumerable_1_System_Security_Cryptography_X509Certificates_X509ChainStatus_ *, Enumerable_Where_5, (IEnumerable_1_System_Security_Cryptography_X509Certificates_X509ChainStatus_ * source, Func_2_System_Security_Cryptography_X509Certificates_X509ChainStatus_Boolean_ * predicate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C0E0, Enumerable_Where_5__MethodInfo); DO_APP_FUNC(0x00E12FD0, IEnumerable_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ *, Enumerable_Where_6, (IEnumerable_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * source, Func_2_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_Boolean_ * predicate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2A28, Enumerable_Where_6__MethodInfo); DO_APP_FUNC(0x00E13360, IEnumerable_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ *, Enumerable_Where_7, (IEnumerable_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ * source, Func_2_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_Boolean_ * predicate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2A30, Enumerable_Where_7__MethodInfo); DO_APP_FUNC(0x00E136F0, Object__Array *, EnumerableHelpers_ToArray, (IEnumerable_1_System_Object_ * source, MethodInfo * method)); -DO_APP_FUNC(0x00E13860, KeyValuePair_2_System_DateTime_System_UInt32___Array *, EnumerableHelpers_ToArray_1, (IEnumerable_1_KeyValuePair_2_System_DateTime_System_UInt32_ * source, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x00E13CD0, KeyValuePair_2_System_Object_System_Char___Array *, EnumerableHelpers_ToArray_2, (IEnumerable_1_KeyValuePair_2_System_Object_System_Char_ * source, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x00E14140, KeyValuePair_2_System_Object_System_Object___Array *, EnumerableHelpers_ToArray_3, (IEnumerable_1_KeyValuePair_2_System_Object_System_Object_ * source, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x00E145B0, KeyValuePair_2_System_UInt64_System_Object___Array *, EnumerableHelpers_ToArray_4, (IEnumerable_1_KeyValuePair_2_System_UInt64_System_Object_ * source, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x00E14A20, ValueTuple_2_IntPtr_Object___Array *, EnumerableHelpers_ToArray_5, (IEnumerable_1_System_ValueTuple_2__13 * source, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x00E14EF0, Int2__Array *, EnumerableHelpers_ToArray_6, (IEnumerable_1_Pathfinding_Int2_ * source, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x00E15340, Int3__Array *, EnumerableHelpers_ToArray_7, (IEnumerable_1_Pathfinding_Int3_ * source, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x00E15760, Int32__Array *, EnumerableHelpers_ToArray_8, (IEnumerable_1_System_Int32_ * source, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x00E15B50, Object__Array *, EnumerableHelpers_ToArray_9, (IEnumerable_1_System_Object_ * source, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x00E15F20, SpeechSession__Array *, EnumerableHelpers_ToArray_10, (IEnumerable_1_Dissonance_Audio_Playback_SpeechSession_ * source, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x00E163F0, UInt32__Array *, EnumerableHelpers_ToArray_11, (IEnumerable_1_System_UInt32_ * source, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x00E167E0, UdpEvent__Array *, EnumerableHelpers_ToArray_12, (IEnumerable_1_UdpKit_UdpEvent_ * source, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x00E16C80, EventDispatcher_EventRecord__Array *, EnumerableHelpers_ToArray_13, (IEnumerable_1_UnityEngine_UIElements_EventDispatcher_EventRecord_ * source, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x00E17150, GraphUpdateProcessor_GUOSingle__Array *, EnumerableHelpers_ToArray_14, (IEnumerable_1_Pathfinding_GraphUpdateProcessor_GUOSingle_ * source, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x00E175F0, XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__Array *, EnumerableHelpers_ToArray_15, (IEnumerable_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK_ * source, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x00E13860, KeyValuePair_2_System_DateTime_System_UInt32___Array *, EnumerableHelpers_ToArray_1, (IEnumerable_1_KeyValuePair_2_System_DateTime_System_UInt32_ * source, int32_t * length, MethodInfo * method)); +DO_APP_FUNC(0x00E13CD0, KeyValuePair_2_System_Object_System_Char___Array *, EnumerableHelpers_ToArray_2, (IEnumerable_1_KeyValuePair_2_System_Object_System_Char_ * source, int32_t * length, MethodInfo * method)); +DO_APP_FUNC(0x00E14140, KeyValuePair_2_System_Object_System_Object___Array *, EnumerableHelpers_ToArray_3, (IEnumerable_1_KeyValuePair_2_System_Object_System_Object_ * source, int32_t * length, MethodInfo * method)); +DO_APP_FUNC(0x00E145B0, KeyValuePair_2_System_UInt64_System_Object___Array *, EnumerableHelpers_ToArray_4, (IEnumerable_1_KeyValuePair_2_System_UInt64_System_Object_ * source, int32_t * length, MethodInfo * method)); +DO_APP_FUNC(0x00E14A20, ValueTuple_2_IntPtr_Object___Array *, EnumerableHelpers_ToArray_5, (IEnumerable_1_System_ValueTuple_2__13 * source, int32_t * length, MethodInfo * method)); +DO_APP_FUNC(0x00E14EF0, Int2__Array *, EnumerableHelpers_ToArray_6, (IEnumerable_1_Pathfinding_Int2_ * source, int32_t * length, MethodInfo * method)); +DO_APP_FUNC(0x00E15340, Int3__Array *, EnumerableHelpers_ToArray_7, (IEnumerable_1_Pathfinding_Int3_ * source, int32_t * length, MethodInfo * method)); +DO_APP_FUNC(0x00E15760, Int32__Array *, EnumerableHelpers_ToArray_8, (IEnumerable_1_System_Int32_ * source, int32_t * length, MethodInfo * method)); +DO_APP_FUNC(0x00E15B50, Object__Array *, EnumerableHelpers_ToArray_9, (IEnumerable_1_System_Object_ * source, int32_t * length, MethodInfo * method)); +DO_APP_FUNC(0x00E15F20, SpeechSession__Array *, EnumerableHelpers_ToArray_10, (IEnumerable_1_Dissonance_Audio_Playback_SpeechSession_ * source, int32_t * length, MethodInfo * method)); +DO_APP_FUNC(0x00E163F0, UInt32__Array *, EnumerableHelpers_ToArray_11, (IEnumerable_1_System_UInt32_ * source, int32_t * length, MethodInfo * method)); +DO_APP_FUNC(0x00E167E0, UdpEvent__Array *, EnumerableHelpers_ToArray_12, (IEnumerable_1_UdpKit_UdpEvent_ * source, int32_t * length, MethodInfo * method)); +DO_APP_FUNC(0x00E16C80, EventDispatcher_EventRecord__Array *, EnumerableHelpers_ToArray_13, (IEnumerable_1_UnityEngine_UIElements_EventDispatcher_EventRecord_ * source, int32_t * length, MethodInfo * method)); +DO_APP_FUNC(0x00E17150, GraphUpdateProcessor_GUOSingle__Array *, EnumerableHelpers_ToArray_14, (IEnumerable_1_Pathfinding_GraphUpdateProcessor_GUOSingle_ * source, int32_t * length, MethodInfo * method)); +DO_APP_FUNC(0x00E175F0, XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__Array *, EnumerableHelpers_ToArray_15, (IEnumerable_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK_ * source, int32_t * length, MethodInfo * method)); DO_APP_FUNC(0x00E17A40, void, EventCallbackRegistry_RegisterCallback, (EventCallbackRegistry * __this, EventCallback_1_System_Object_ * callback, TrickleDown__Enum useTrickleDown, InvokePolicy__Enum invokePolicy, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2A18, EventCallbackRegistry_RegisterCallback__MethodInfo); DO_APP_FUNC(0x00E17D40, bool, EventCallbackRegistry_UnregisterCallback_1, (EventCallbackRegistry * __this, EventCallback_1_System_Object_ * callback, TrickleDown__Enum useTrickleDown, MethodInfo * method)); DO_APP_FUNC(0x00E17EF0, void, EventDispatcher_Add_1, (EventDispatcher * __this, Action_1_Object_ * callback, MethodInfo * method)); DO_APP_FUNC(0x00E183C0, void, EventDispatcher_Remove_1, (EventDispatcher * __this, Action_1_Object_ * callback, MethodInfo * method)); DO_APP_FUNC(0x00E185B0, void, EventHandler_1_ExecuteEvent_2, (String * eventName, bool arg1, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2CB0, EventHandler_1_ExecuteEvent_2__MethodInfo); DO_APP_FUNC(0x00E18760, void, EventHandler_1_ExecuteEvent_3, (String * eventName, int32_t arg1, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDFC28, EventHandler_1_ExecuteEvent_3__MethodInfo); DO_APP_FUNC(0x00E18910, void, EventHandler_1_ExecuteEvent_4, (String * eventName, Int32Enum__Enum arg1, MethodInfo * method)); DO_APP_FUNC(0x00E18AC0, void, EventHandler_1_ExecuteEvent_5, (String * eventName, Object * arg1, MethodInfo * method)); DO_APP_FUNC(0x00E18C70, void, EventHandler_1_ExecuteEvent_6, (Object * obj, String * eventName, bool arg1, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11E30, EventHandler_1_ExecuteEvent_6__MethodInfo); DO_APP_FUNC(0x00E18E30, void, EventHandler_1_ExecuteEvent_7, (Object * obj, String * eventName, int32_t arg1, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA910, EventHandler_1_ExecuteEvent_7__MethodInfo); DO_APP_FUNC(0x00E18FF0, void, EventHandler_1_ExecuteEvent_8, (Object * obj, String * eventName, Object * arg1, MethodInfo * method)); DO_APP_FUNC(0x00E191B0, void, EventHandler_1_ExecuteEvent_9, (Object * obj, String * eventName, float arg1, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D14040, EventHandler_1_ExecuteEvent_9__MethodInfo); DO_APP_FUNC(0x00E19360, void, EventHandler_1_ExecuteEvent_10, (Object * obj, String * eventName, Vector3 arg1, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5718, EventHandler_1_ExecuteEvent_10__MethodInfo); DO_APP_FUNC(0x00E19530, void, EventHandler_1_ExecuteEvent_11, (String * eventName, int32_t arg1, Object * arg2, MethodInfo * method)); DO_APP_FUNC(0x00E196E0, void, EventHandler_1_ExecuteEvent_12, (String * eventName, Object * arg1, int32_t arg2, MethodInfo * method)); DO_APP_FUNC(0x00E19890, void, EventHandler_1_ExecuteEvent_13, (String * eventName, Object * arg1, Object * arg2, MethodInfo * method)); DO_APP_FUNC(0x00E19A40, void, EventHandler_1_ExecuteEvent_14, (Object * obj, String * eventName, bool arg1, bool arg2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D214B0, EventHandler_1_ExecuteEvent_14__MethodInfo); DO_APP_FUNC(0x00E19C00, void, EventHandler_1_ExecuteEvent_15, (Object * obj, String * eventName, bool arg1, Object * arg2, MethodInfo * method)); DO_APP_FUNC(0x00E19DC0, void, EventHandler_1_ExecuteEvent_16, (Object * obj, String * eventName, int32_t arg1, bool arg2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21798, EventHandler_1_ExecuteEvent_16__MethodInfo); DO_APP_FUNC(0x00E19F80, void, EventHandler_1_ExecuteEvent_17, (Object * obj, String * eventName, int32_t arg1, int32_t arg2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23E18, EventHandler_1_ExecuteEvent_17__MethodInfo); DO_APP_FUNC(0x00E1A140, void, EventHandler_1_ExecuteEvent_18, (Object * obj, String * eventName, Object * arg1, bool arg2, MethodInfo * method)); DO_APP_FUNC(0x00E1A300, void, EventHandler_1_ExecuteEvent_19, (Object * obj, String * eventName, Object * arg1, int32_t arg2, MethodInfo * method)); DO_APP_FUNC(0x00E1A4C0, void, EventHandler_1_ExecuteEvent_20, (Object * obj, String * eventName, Object * arg1, Object * arg2, MethodInfo * method)); @@ -214065,15 +237494,19 @@ DO_APP_FUNC(0x00E1AA50, void, EventHandler_1_ExecuteEvent_23, (String * eventNam DO_APP_FUNC(0x00E1AC20, void, EventHandler_1_ExecuteEvent_24, (String * eventName, Object * arg1, Object * arg2, bool arg3, MethodInfo * method)); DO_APP_FUNC(0x00E1ADF0, void, EventHandler_1_ExecuteEvent_25, (String * eventName, Object * arg1, Object * arg2, Object * arg3, MethodInfo * method)); DO_APP_FUNC(0x00E1AFC0, void, EventHandler_1_ExecuteEvent_26, (Object * obj, String * eventName, int32_t arg1, int32_t arg2, int32_t arg3, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23E28, EventHandler_1_ExecuteEvent_26__MethodInfo); DO_APP_FUNC(0x00E1B190, void, EventHandler_1_ExecuteEvent_27, (Object * obj, String * eventName, Object * arg1, Object * arg2, int32_t arg3, MethodInfo * method)); DO_APP_FUNC(0x00E1B370, void, EventHandler_1_ExecuteEvent_28, (Object * obj, String * eventName, Object * arg1, Object * arg2, Object * arg3, MethodInfo * method)); DO_APP_FUNC(0x00E1B550, void, EventHandler_1_ExecuteEvent_29, (Object * obj, String * eventName, float arg1, float arg2, float arg3, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D25510, EventHandler_1_ExecuteEvent_29__MethodInfo); DO_APP_FUNC(0x00E1B750, void, EventHandler_1_ExecuteEvent_30, (Object * obj, String * eventName, Vector3 arg1, Vector3 arg2, Object * arg3, MethodInfo * method)); DO_APP_FUNC(0x00E1B960, void, EventHandler_1_ExecuteEvent_31, (Object * obj, String * eventName, Vector3 arg1, Vector3 arg2, float arg3, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D214A0, EventHandler_1_ExecuteEvent_31__MethodInfo); DO_APP_FUNC(0x00E1BB80, void, EventHandler_1_ExecuteEvent_32, (String * eventName, Object * arg1, Object * arg2, Object * arg3, Object * arg4, MethodInfo * method)); DO_APP_FUNC(0x00E1BD70, void, EventHandler_1_ExecuteEvent_33, (String * eventName, Object * arg1, Object * arg2, float arg3, bool arg4, MethodInfo * method)); DO_APP_FUNC(0x00E1BF60, void, EventHandler_1_ExecuteEvent_34, (Object * obj, String * eventName, int32_t arg1, Object * arg2, bool arg3, bool arg4, MethodInfo * method)); DO_APP_FUNC(0x00E1C160, void, EventHandler_1_ExecuteEvent_35, (Object * obj, String * eventName, int32_t arg1, Vector3 arg2, Vector3 arg3, bool arg4, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D214A8, EventHandler_1_ExecuteEvent_35__MethodInfo); DO_APP_FUNC(0x00E1C380, void, EventHandler_1_ExecuteEvent_36, (Object * obj, String * eventName, Object * arg1, int32_t arg2, bool arg3, bool arg4, MethodInfo * method)); DO_APP_FUNC(0x00E1C580, void, EventHandler_1_ExecuteEvent_37, (Object * obj, String * eventName, Object * arg1, Object * arg2, Object * arg3, Object * arg4, MethodInfo * method)); DO_APP_FUNC(0x00E1C770, void, EventHandler_1_ExecuteEvent_38, (String * eventName, Object * arg1, Object * arg2, Object * arg3, Object * arg4, Object * arg5, MethodInfo * method)); @@ -214083,7 +237516,9 @@ DO_APP_FUNC(0x00E1CDC0, void, EventHandler_1_ExecuteEvent_41, (String * eventNam DO_APP_FUNC(0x00E1CFE0, void, EventHandler_1_ExecuteEvent_42, (Object * obj, String * eventName, Object * arg1, Object * arg2, Object * arg3, Object * arg4, Object * arg5, Object * arg6, MethodInfo * method)); DO_APP_FUNC(0x00E1D200, void, EventHandler_1_ExecuteEvent_43, (Object * obj, String * eventName, float arg1, Vector3 arg2, Vector3 arg3, Object * arg4, Object * arg5, Object * arg6, MethodInfo * method)); DO_APP_FUNC(0x00E1D440, void, EventHandler_1_RegisterEvent_4, (String * eventName, Action_1_Boolean_ * action, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A020, EventHandler_1_RegisterEvent_4__MethodInfo); DO_APP_FUNC(0x00E1D510, void, EventHandler_1_RegisterEvent_5, (String * eventName, Action_1_Int32_ * action, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B848, EventHandler_1_RegisterEvent_5__MethodInfo); DO_APP_FUNC(0x00E1D5E0, void, EventHandler_1_RegisterEvent_6, (String * eventName, Action_1_Int32Enum_ * action, MethodInfo * method)); DO_APP_FUNC(0x00E1D6B0, void, EventHandler_1_RegisterEvent_7, (String * eventName, Action_1_Object_ * action, MethodInfo * method)); DO_APP_FUNC(0x00E1D780, void, EventHandler_1_RegisterEvent_8, (String * eventName, Action_2_Int32_Object_ * action, MethodInfo * method)); @@ -214097,14 +237532,21 @@ DO_APP_FUNC(0x00E1DD30, void, EventHandler_1_RegisterEvent_15, (String * eventNa DO_APP_FUNC(0x00E1DE00, void, EventHandler_1_RegisterEvent_16, (String * eventName, Action_5_System_Object_System_Object_System_Object_System_Object_System_Object_ * action, MethodInfo * method)); DO_APP_FUNC(0x00E1DED0, void, EventHandler_1_RegisterEvent_17, (String * eventName, Action_6_System_Object_System_Object_System_Object_System_Object_System_Object_System_Object_ * action, MethodInfo * method)); DO_APP_FUNC(0x00E1DFA0, void, EventHandler_1_RegisterEvent_18, (Object * obj, String * eventName, Action_1_Boolean_ * action, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D154C0, EventHandler_1_RegisterEvent_18__MethodInfo); DO_APP_FUNC(0x00E1E080, void, EventHandler_1_RegisterEvent_19, (Object * obj, String * eventName, Action_1_Int32_ * action, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA9E8, EventHandler_1_RegisterEvent_19__MethodInfo); DO_APP_FUNC(0x00E1E160, void, EventHandler_1_RegisterEvent_20, (Object * obj, String * eventName, Action_1_Object_ * action, MethodInfo * method)); DO_APP_FUNC(0x00E1E240, void, EventHandler_1_RegisterEvent_21, (Object * obj, String * eventName, Action_1_Single_ * action, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D14368, EventHandler_1_RegisterEvent_21__MethodInfo); DO_APP_FUNC(0x00E1E320, void, EventHandler_1_RegisterEvent_22, (Object * obj, String * eventName, Action_1_UnityEngine_Vector3_ * action, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A660, EventHandler_1_RegisterEvent_22__MethodInfo); DO_APP_FUNC(0x00E1E400, void, EventHandler_1_RegisterEvent_23, (Object * obj, String * eventName, Action_2_Boolean_Boolean_ * action, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16818, EventHandler_1_RegisterEvent_23__MethodInfo); DO_APP_FUNC(0x00E1E4E0, void, EventHandler_1_RegisterEvent_24, (Object * obj, String * eventName, Action_2_Boolean_Object_ * action, MethodInfo * method)); DO_APP_FUNC(0x00E1E5C0, void, EventHandler_1_RegisterEvent_25, (Object * obj, String * eventName, Action_2_Int32_Boolean_ * action, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D165D0, EventHandler_1_RegisterEvent_25__MethodInfo); DO_APP_FUNC(0x00E1E6A0, void, EventHandler_1_RegisterEvent_26, (Object * obj, String * eventName, Action_2_Int32_Int32_ * action, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23F18, EventHandler_1_RegisterEvent_26__MethodInfo); DO_APP_FUNC(0x00E1E780, void, EventHandler_1_RegisterEvent_27, (Object * obj, String * eventName, Action_2_Object_Boolean_ * action, MethodInfo * method)); DO_APP_FUNC(0x00E1E860, void, EventHandler_1_RegisterEvent_28, (Object * obj, String * eventName, Action_2_Object_Int32_ * action, MethodInfo * method)); DO_APP_FUNC(0x00E1E940, void, EventHandler_1_RegisterEvent_29, (Object * obj, String * eventName, Action_2_Object_Object_ * action, MethodInfo * method)); @@ -214113,17 +237555,22 @@ DO_APP_FUNC(0x00E1EB00, void, EventHandler_1_RegisterEvent_31, (Object * obj, St DO_APP_FUNC(0x00E1EBE0, void, EventHandler_1_RegisterEvent_32, (Object * obj, String * eventName, Action_3_Object_Object_Int32_ * action, MethodInfo * method)); DO_APP_FUNC(0x00E1ECC0, void, EventHandler_1_RegisterEvent_33, (Object * obj, String * eventName, Action_3_Object_Object_Object_ * action, MethodInfo * method)); DO_APP_FUNC(0x00E1EDA0, void, EventHandler_1_RegisterEvent_34, (Object * obj, String * eventName, Action_3_Single_Single_Single_ * action, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D256F0, EventHandler_1_RegisterEvent_34__MethodInfo); DO_APP_FUNC(0x00E1EE80, void, EventHandler_1_RegisterEvent_35, (Object * obj, String * eventName, Action_3_UnityEngine_Vector3_UnityEngine_Vector3_Object_ * action, MethodInfo * method)); DO_APP_FUNC(0x00E1EF60, void, EventHandler_1_RegisterEvent_36, (Object * obj, String * eventName, Action_3_UnityEngine_Vector3_UnityEngine_Vector3_Single_ * action, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA368, EventHandler_1_RegisterEvent_36__MethodInfo); DO_APP_FUNC(0x00E1F040, void, EventHandler_1_RegisterEvent_37, (Object * obj, String * eventName, Action_4_Int32_Object_Boolean_Boolean_ * action, MethodInfo * method)); DO_APP_FUNC(0x00E1F120, void, EventHandler_1_RegisterEvent_38, (Object * obj, String * eventName, Action_4_Int32_UnityEngine_Vector3_UnityEngine_Vector3_Boolean_ * action, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D256F8, EventHandler_1_RegisterEvent_38__MethodInfo); DO_APP_FUNC(0x00E1F200, void, EventHandler_1_RegisterEvent_39, (Object * obj, String * eventName, Action_4_Object_Int32_Boolean_Boolean_ * action, MethodInfo * method)); DO_APP_FUNC(0x00E1F2E0, void, EventHandler_1_RegisterEvent_40, (Object * obj, String * eventName, Action_4_Object_Object_Object_Object_ * action, MethodInfo * method)); DO_APP_FUNC(0x00E1F3C0, void, EventHandler_1_RegisterEvent_41, (Object * obj, String * eventName, Action_5_System_Object_System_Object_System_Object_System_Object_System_Object_ * action, MethodInfo * method)); DO_APP_FUNC(0x00E1F4A0, void, EventHandler_1_RegisterEvent_42, (Object * obj, String * eventName, Action_5_System_Single_UnityEngine_Vector3_UnityEngine_Vector3_System_Object_System_Object_ * action, MethodInfo * method)); DO_APP_FUNC(0x00E1F580, void, EventHandler_1_RegisterEvent_43, (Object * obj, String * eventName, Action_6_System_Object_System_Object_System_Object_System_Object_System_Object_System_Object_ * action, MethodInfo * method)); DO_APP_FUNC(0x00E1F660, void, EventHandler_1_UnregisterEvent_2, (String * eventName, Action_1_Boolean_ * action, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A008, EventHandler_1_UnregisterEvent_2__MethodInfo); DO_APP_FUNC(0x00E1F860, void, EventHandler_1_UnregisterEvent_3, (String * eventName, Action_1_Int32_ * action, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B5F0, EventHandler_1_UnregisterEvent_3__MethodInfo); DO_APP_FUNC(0x00E1FA60, void, EventHandler_1_UnregisterEvent_4, (String * eventName, Action_1_Int32Enum_ * action, MethodInfo * method)); DO_APP_FUNC(0x00E1FC60, void, EventHandler_1_UnregisterEvent_5, (String * eventName, Action_1_Object_ * action, MethodInfo * method)); DO_APP_FUNC(0x00E1FE60, void, EventHandler_1_UnregisterEvent_6, (String * eventName, Action_2_Int32_Object_ * action, MethodInfo * method)); @@ -214137,14 +237584,21 @@ DO_APP_FUNC(0x00E20C60, void, EventHandler_1_UnregisterEvent_13, (String * event DO_APP_FUNC(0x00E20E60, void, EventHandler_1_UnregisterEvent_14, (String * eventName, Action_5_System_Object_System_Object_System_Object_System_Object_System_Object_ * action, MethodInfo * method)); DO_APP_FUNC(0x00E21060, void, EventHandler_1_UnregisterEvent_15, (String * eventName, Action_6_System_Object_System_Object_System_Object_System_Object_System_Object_System_Object_ * action, MethodInfo * method)); DO_APP_FUNC(0x00E21260, void, EventHandler_1_UnregisterEvent_16, (Object * obj, String * eventName, Action_1_Boolean_ * action, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D14FB8, EventHandler_1_UnregisterEvent_16__MethodInfo); DO_APP_FUNC(0x00E21460, void, EventHandler_1_UnregisterEvent_17, (Object * obj, String * eventName, Action_1_Int32_ * action, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA9B0, EventHandler_1_UnregisterEvent_17__MethodInfo); DO_APP_FUNC(0x00E21660, void, EventHandler_1_UnregisterEvent_18, (Object * obj, String * eventName, Action_1_Object_ * action, MethodInfo * method)); DO_APP_FUNC(0x00E21860, void, EventHandler_1_UnregisterEvent_19, (Object * obj, String * eventName, Action_1_Single_ * action, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D14360, EventHandler_1_UnregisterEvent_19__MethodInfo); DO_APP_FUNC(0x00E21A60, void, EventHandler_1_UnregisterEvent_20, (Object * obj, String * eventName, Action_1_UnityEngine_Vector3_ * action, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A5D0, EventHandler_1_UnregisterEvent_20__MethodInfo); DO_APP_FUNC(0x00E21C60, void, EventHandler_1_UnregisterEvent_21, (Object * obj, String * eventName, Action_2_Boolean_Boolean_ * action, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D16810, EventHandler_1_UnregisterEvent_21__MethodInfo); DO_APP_FUNC(0x00E21E60, void, EventHandler_1_UnregisterEvent_22, (Object * obj, String * eventName, Action_2_Boolean_Object_ * action, MethodInfo * method)); DO_APP_FUNC(0x00E22060, void, EventHandler_1_UnregisterEvent_23, (Object * obj, String * eventName, Action_2_Int32_Boolean_ * action, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D165C8, EventHandler_1_UnregisterEvent_23__MethodInfo); DO_APP_FUNC(0x00E22260, void, EventHandler_1_UnregisterEvent_24, (Object * obj, String * eventName, Action_2_Int32_Int32_ * action, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23F00, EventHandler_1_UnregisterEvent_24__MethodInfo); DO_APP_FUNC(0x00E22460, void, EventHandler_1_UnregisterEvent_25, (Object * obj, String * eventName, Action_2_Object_Boolean_ * action, MethodInfo * method)); DO_APP_FUNC(0x00E22660, void, EventHandler_1_UnregisterEvent_26, (Object * obj, String * eventName, Action_2_Object_Int32_ * action, MethodInfo * method)); DO_APP_FUNC(0x00E22860, void, EventHandler_1_UnregisterEvent_27, (Object * obj, String * eventName, Action_2_Object_Object_ * action, MethodInfo * method)); @@ -214153,10 +237607,13 @@ DO_APP_FUNC(0x00E22C60, void, EventHandler_1_UnregisterEvent_29, (Object * obj, DO_APP_FUNC(0x00E22E60, void, EventHandler_1_UnregisterEvent_30, (Object * obj, String * eventName, Action_3_Object_Object_Int32_ * action, MethodInfo * method)); DO_APP_FUNC(0x00E23060, void, EventHandler_1_UnregisterEvent_31, (Object * obj, String * eventName, Action_3_Object_Object_Object_ * action, MethodInfo * method)); DO_APP_FUNC(0x00E23260, void, EventHandler_1_UnregisterEvent_32, (Object * obj, String * eventName, Action_3_Single_Single_Single_ * action, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D255E8, EventHandler_1_UnregisterEvent_32__MethodInfo); DO_APP_FUNC(0x00E23460, void, EventHandler_1_UnregisterEvent_33, (Object * obj, String * eventName, Action_3_UnityEngine_Vector3_UnityEngine_Vector3_Object_ * action, MethodInfo * method)); DO_APP_FUNC(0x00E23660, void, EventHandler_1_UnregisterEvent_34, (Object * obj, String * eventName, Action_3_UnityEngine_Vector3_UnityEngine_Vector3_Single_ * action, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA350, EventHandler_1_UnregisterEvent_34__MethodInfo); DO_APP_FUNC(0x00E23860, void, EventHandler_1_UnregisterEvent_35, (Object * obj, String * eventName, Action_4_Int32_Object_Boolean_Boolean_ * action, MethodInfo * method)); DO_APP_FUNC(0x00E23A60, void, EventHandler_1_UnregisterEvent_36, (Object * obj, String * eventName, Action_4_Int32_UnityEngine_Vector3_UnityEngine_Vector3_Boolean_ * action, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D255F0, EventHandler_1_UnregisterEvent_36__MethodInfo); DO_APP_FUNC(0x00E23C60, void, EventHandler_1_UnregisterEvent_37, (Object * obj, String * eventName, Action_4_Object_Int32_Boolean_Boolean_ * action, MethodInfo * method)); DO_APP_FUNC(0x00E23E60, void, EventHandler_1_UnregisterEvent_38, (Object * obj, String * eventName, Action_4_Object_Object_Object_Object_ * action, MethodInfo * method)); DO_APP_FUNC(0x00E24060, void, EventHandler_1_UnregisterEvent_39, (Object * obj, String * eventName, Action_5_System_Object_System_Object_System_Object_System_Object_System_Object_ * action, MethodInfo * method)); @@ -214176,8 +237633,10 @@ DO_APP_FUNC(0x00E24BB0, bool, ExecuteEvents_Execute_18, (GameObject * target, Ba DO_APP_FUNC(0x00E24F70, GameObject *, ExecuteEvents_ExecuteHierarchy, (GameObject * root, BaseEventData * eventData, ExecuteEvents_EventFunction_1_System_Object_ * callbackFunction, MethodInfo * method)); DO_APP_FUNC(0x00E25150, GameObject *, ExecuteEvents_GetEventHandler, (GameObject * root, MethodInfo * method)); DO_APP_FUNC(0x00E25410, void, ExecuteEvents_GetEventList, (GameObject * go, IList_1_UnityEngine_EventSystems_IEventSystemHandler_ * results, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2930, ExecuteEvents_GetEventList__MethodInfo); DO_APP_FUNC(0x00E257A0, bool, ExecuteEvents_ShouldSendToComponent, (Component * component, MethodInfo * method)); DO_APP_FUNC(0x00E25980, Object *, ExecuteEvents_ValidateEventData, (BaseEventData * data, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2928, ExecuteEvents_ValidateEventData__MethodInfo); DO_APP_FUNC(0x00E25B30, Expression_1_System_Object_ *, Expression_1_Lambda_2, (Expression_1 * body, ParameterExpression__Array * parameters, MethodInfo * method)); DO_APP_FUNC(0x00E25BB0, Expression_1_System_Object_ *, Expression_1_Lambda_3, (Expression_1 * body, bool tailCall, IEnumerable_1_System_Linq_Expressions_ParameterExpression_ * parameters, MethodInfo * method)); DO_APP_FUNC(0x00E25C40, Expression_1_System_Object_ *, Expression_1_Lambda_4, (Expression_1 * body, String * name, bool tailCall, IEnumerable_1_System_Linq_Expressions_ParameterExpression_ * parameters, MethodInfo * method)); @@ -214185,34 +237644,47 @@ DO_APP_FUNC(0x00E25DD0, void, ExpressionStringBuilder_VisitExpressions, (Express DO_APP_FUNC(0x00E25E60, void, ExpressionStringBuilder_VisitExpressions_1, (ExpressionStringBuilder * __this, uint16_t open, ReadOnlyCollection_1_System_Object_ * expressions, uint16_t close, String * seperator, MethodInfo * method)); DO_APP_FUNC(0x00E260D0, Expression_1 *, ExpressionStringBuilder_VisitLambda, (ExpressionStringBuilder * __this, Expression_1_System_Object_ * node, MethodInfo * method)); DO_APP_FUNC(0x00E26310, Object *, ExpressionUtils_ReturnObject, (Object * collectionOrT, MethodInfo * method)); -DO_APP_FUNC(0x00E26470, ReadOnlyCollection_1_System_Object_ *, ExpressionUtils_ReturnReadOnly, (IReadOnlyList_1_System_Object_ * collection, MethodInfo * method)); -DO_APP_FUNC(0x00E26570, bool, ExpressionUtils_SameElements, (IEnumerable_1_System_Object_ * replacement, IReadOnlyList_1_System_Object_ * current, MethodInfo * method)); +DO_APP_FUNC(0x00E26470, ReadOnlyCollection_1_System_Object_ *, ExpressionUtils_ReturnReadOnly, (IReadOnlyList_1_System_Object_ * * collection, MethodInfo * method)); +DO_APP_FUNC(0x00E26570, bool, ExpressionUtils_SameElements, (IEnumerable_1_System_Object_ * * replacement, IReadOnlyList_1_System_Object_ * current, MethodInfo * method)); DO_APP_FUNC(0x00E26680, bool, ExpressionUtils_SameElementsInCollection, (ICollection_1_System_Object_ * replacement, IReadOnlyList_1_System_Object_ * current, MethodInfo * method)); DO_APP_FUNC(0x00E268A0, ReadOnlyCollection_1_System_Object_ *, ExpressionVisitor_Visit_2, (ReadOnlyCollection_1_System_Object_ * nodes, Func_2_Object_Object_ * elementVisitor, MethodInfo * method)); DO_APP_FUNC(0x00E26B30, Object *, ExpressionVisitor_VisitAndConvert, (ExpressionVisitor * __this, Object * node, String * callerName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2908, ExpressionVisitor_VisitAndConvert__MethodInfo); DO_APP_FUNC(0x00E26C50, ReadOnlyCollection_1_System_Object_ *, ExpressionVisitor_VisitAndConvert_1, (ExpressionVisitor * __this, ReadOnlyCollection_1_System_Object_ * nodes, String * callerName, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB28F8, ExpressionVisitor_VisitAndConvert_1__MethodInfo); DO_APP_FUNC(0x00E26F50, Expression_1 *, ExpressionVisitor_VisitLambda, (ExpressionVisitor * __this, Expression_1_System_Object_ * node, MethodInfo * method)); DO_APP_FUNC(0x00E27020, void, ExtensionMethods_1_CTAddRange, (IDictionary_2_System_Object_System_Object_ * dict, IDictionary_2_System_Object_System_Object_ * collection, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB28E8, ExtensionMethods_1_CTAddRange__MethodInfo); DO_APP_FUNC(0x00E273F0, String *, ExtensionMethods_1_CTDump_8, (IList_1_System_Object_ * list, String * prefix, String * postfix, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB28D0, ExtensionMethods_1_CTDump_8__MethodInfo); DO_APP_FUNC(0x00E276D0, String *, ExtensionMethods_1_CTDump_9, (Object__Array * array, String * prefix, String * postfix, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB28C0, ExtensionMethods_1_CTDump_9__MethodInfo); DO_APP_FUNC(0x00E27850, String *, ExtensionMethods_1_CTDump_10, (IDictionary_2_System_Object_System_Object_ * dict, String * prefix, String * postfix, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB28B0, ExtensionMethods_1_CTDump_10__MethodInfo); DO_APP_FUNC(0x00E27BD0, void, ExtensionMethods_1_CTShuffle, (IList_1_System_Object_ * list, int32_t seed, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2898, ExtensionMethods_1_CTShuffle__MethodInfo); DO_APP_FUNC(0x00E27F90, void, ExtensionMethods_1_CTShuffle_1, (Object__Array * array, int32_t seed, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB28A0, ExtensionMethods_1_CTShuffle_1__MethodInfo); DO_APP_FUNC(0x00E281D0, List_1_System_String_ *, ExtensionMethods_1_CTToString, (IList_1_System_Object_ * list, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2890, ExtensionMethods_1_CTToString__MethodInfo); DO_APP_FUNC(0x00E284C0, String__Array *, ExtensionMethods_1_CTToString_1, (Object__Array * array, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2888, ExtensionMethods_1_CTToString_1__MethodInfo); DO_APP_FUNC(0x00E28630, String *, Extensions_ToStringFull_2, (List_1_System_Int32_ * data, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE5340, Extensions_ToStringFull_2__MethodInfo); DO_APP_FUNC(0x00E28890, String *, Extensions_ToStringFull_3, (List_1_System_Object_ * data, MethodInfo * method)); DO_APP_FUNC(0x00E28AD0, Object *, ExtentionMethods_GetOrAddComponent, (GameObject * child, MethodInfo * method)); DO_APP_FUNC(0x00E28C20, Object *, ExternalBehavior_FindTask, (ExternalBehavior * __this, MethodInfo * method)); DO_APP_FUNC(0x00E28C70, Object *, ExternalBehavior_FindTask_1, (ExternalBehavior * __this, Task_1 * task, MethodInfo * method)); DO_APP_FUNC(0x00E28E90, List_1_System_Object_ *, ExternalBehavior_FindTasks, (ExternalBehavior * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E28F30, void, ExternalBehavior_FindTasks_1, (ExternalBehavior * __this, Task_1 * task, List_1_System_Object_ * taskList, MethodInfo * method)); +DO_APP_FUNC(0x00E28F30, void, ExternalBehavior_FindTasks_1, (ExternalBehavior * __this, Task_1 * task, List_1_System_Object_ * * taskList, MethodInfo * method)); DO_APP_FUNC(0x00E29120, uint8_t, Factory_1_GetTokenId_2, (MethodInfo * method)); -DO_APP_FUNC(0x00E291B0, void, FontAsset_CopyListDataToArray, (FontAsset * __this, List_1_System_Object_ * srcList, Object__Array * dstArray, MethodInfo * method)); -DO_APP_FUNC(0x00E29360, void, FontEngine_GenericListToMarshallingArray, (List_1_System_Object_ * srcList, Object__Array * dstArray, MethodInfo * method)); -DO_APP_FUNC(0x00E29580, void, FontEngine_GenericListToMarshallingArray_1, (List_1_System_UInt32_ * srcList, UInt32__Array * dstArray, MethodInfo * method)); -DO_APP_FUNC(0x00E29720, void, FontEngine_SetMarshallingArraySize, (GlyphPairAdjustmentRecord__Array * marshallingArray, int32_t recordCount, MethodInfo * method)); -DO_APP_FUNC(0x00E29720, void, FontEngine_SetMarshallingArraySize_1, (Object__Array * marshallingArray, int32_t recordCount, MethodInfo * method)); +DO_APP_FUNC(0x00E291B0, void, FontAsset_CopyListDataToArray, (FontAsset * __this, List_1_System_Object_ * srcList, Object__Array * * dstArray, MethodInfo * method)); +DO_APP_FUNC(0x00E29360, void, FontEngine_GenericListToMarshallingArray, (List_1_System_Object_ * * srcList, Object__Array * * dstArray, MethodInfo * method)); +DO_APP_FUNC(0x00E29580, void, FontEngine_GenericListToMarshallingArray_1, (List_1_System_UInt32_ * * srcList, UInt32__Array * * dstArray, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E150, FontEngine_GenericListToMarshallingArray_1__MethodInfo); +DO_APP_FUNC(0x00E29720, void, FontEngine_SetMarshallingArraySize, (GlyphPairAdjustmentRecord__Array * * marshallingArray, int32_t recordCount, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E188, FontEngine_SetMarshallingArraySize__MethodInfo); +DO_APP_FUNC(0x00E29720, void, FontEngine_SetMarshallingArraySize_1, (Object__Array * * marshallingArray, int32_t recordCount, MethodInfo * method)); DO_APP_FUNC(0x00E29830, Object *, GameObject_AddComponent_1, (GameObject * __this, MethodInfo * method)); DO_APP_FUNC(0x00E29950, Object *, GameObject_GetComponent_2, (GameObject * __this, MethodInfo * method)); DO_APP_FUNC(0x00DF6490, Object *, GameObject_GetComponentInChildren_2, (GameObject * __this, MethodInfo * method)); @@ -214228,17 +237700,21 @@ DO_APP_FUNC(0x00E29ED0, void, GameObject_GetComponentsInChildren_5, (GameObject DO_APP_FUNC(0x00DF6490, Object__Array *, GameObject_GetComponentsInParent_2, (GameObject * __this, MethodInfo * method)); DO_APP_FUNC(0x00E29FB0, Object__Array *, GameObject_GetComponentsInParent_3, (GameObject * __this, bool includeInactive, MethodInfo * method)); DO_APP_FUNC(0x00E2A0E0, void, GameObject_GetComponentsInParent_4, (GameObject * __this, bool includeInactive, List_1_System_Object_ * results, MethodInfo * method)); -DO_APP_FUNC(0x00E2A1C0, bool, GameObject_TryGetComponent_1, (GameObject * __this, Object * component, MethodInfo * method)); +DO_APP_FUNC(0x00E2A1C0, bool, GameObject_TryGetComponent_1, (GameObject * __this, Object * * component, MethodInfo * method)); DO_APP_FUNC(0x00E2A2E0, Object *, GameObjectExtensions_GetCachedComponent, (GameObject * gameObject, MethodInfo * method)); DO_APP_FUNC(0x00E2A630, Object__Array *, GameObjectExtensions_GetCachedComponents, (GameObject * gameObject, MethodInfo * method)); DO_APP_FUNC(0x00E2A990, Object *, GameObjectExtensions_GetCachedParentComponent, (GameObject * gameObject, MethodInfo * method)); DO_APP_FUNC(0x00E2ACE0, Object__Array *, GameObjectExtensions_GetCachedParentComponents, (GameObject * gameObject, MethodInfo * method)); DO_APP_FUNC(0x00E2B040, Object *, GenericObjectPool_Get, (MethodInfo * method)); DO_APP_FUNC(0x00E2B340, OriginalMaterialValue, GenericObjectPool_Get_1, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24060, GenericObjectPool_Get_1__MethodInfo); DO_APP_FUNC(0x00E2B690, DamageIndicatorMonitor_DamageIndicator, GenericObjectPool_Get_2, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D166C8, GenericObjectPool_Get_2__MethodInfo); DO_APP_FUNC(0x00E2B9F0, void, GenericObjectPool_Return, (Object * obj, MethodInfo * method)); DO_APP_FUNC(0x00E2BC40, void, GenericObjectPool_Return_1, (OriginalMaterialValue obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24098, GenericObjectPool_Return_1__MethodInfo); DO_APP_FUNC(0x00E2BED0, void, GenericObjectPool_Return_2, (DamageIndicatorMonitor_DamageIndicator obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D166B0, GenericObjectPool_Return_2__MethodInfo); DO_APP_FUNC(0x00E2C170, Nullable_1_Microsoft_MixedReality_OpenXR_ManipulationEventData_, GestureSubsystemExtensions_Get, (NativeGestureEventData eventData, ManipulationEventData value, bool hasValue, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8F070, GestureSubsystemExtensions_Get__MethodInfo); DO_APP_FUNC(0x00E2C1B0, Nullable_1_Microsoft_MixedReality_OpenXR_NavigationEventData_, GestureSubsystemExtensions_Get_1, (NativeGestureEventData eventData, NavigationEventData value, bool hasValue, MethodInfo * method)); @@ -214248,149 +237724,248 @@ DO_APP_FUNC_METHODINFO(0x03C8F060, GestureSubsystemExtensions_Get_2__MethodInfo) DO_APP_FUNC(0x00E2C230, List_1_System_Object_ *, GraphModifier_GetModifiersOfType, (MethodInfo * method)); DO_APP_FUNC(0x00E2C530, void, GroupBoxUtility_OnOptionSelected, (Object * selectedOption, MethodInfo * method)); DO_APP_FUNC(0x00E2C670, void, GroupBoxUtility_RegisterGroupBoxOptionCallbacks, (Object * option, MethodInfo * method)); -DO_APP_FUNC(0x00E2C790, Object *, HardwareJoystickMap_GetUniversalDefaultMap, (HardwareJoystickMap * __this, InputPlatform__Enum actualInputPlatform, int32_t variantIndex, MethodInfo * method)); -DO_APP_FUNC(0x00E2C9C0, Object *, HardwareJoystickMap_GetUniversalDefaultMapRoot, (HardwareJoystickMap * __this, Type * type, InputPlatform__Enum actualInputPlatform, MethodInfo * method)); -DO_APP_FUNC(0x00E2CBE0, Object *, HardwareJoystickMap_TryGetFirstMatchingMap, (HardwareJoystickMap * __this, Object * mainMap, BridgedControllerHWInfo * bridgedControllerHWInfo, bool strictMatch, bool isDefaultMap, InputPlatform__Enum actualInputPlatform, int32_t variantIndex, MethodInfo * method)); -DO_APP_FUNC(0x00E2CEC0, Object *, HardwareJoystickMap_TryGetFirstValidMap, (HardwareJoystickMap * __this, Object * mainMap, bool isDefaultMap, InputPlatform__Enum actualInputPlatform, int32_t variantIndex, MethodInfo * method)); -DO_APP_FUNC(0x00E2D260, bool, HashtableExtensions_TryGetValue, (Hashtable * table, Object * key, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00E2D320, bool, HashtableExtensions_TryGetValue_1, (Hashtable * table, Object * key, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x00E2C790, Object *, HardwareJoystickMap_GetUniversalDefaultMap, (HardwareJoystickMap * __this, InputPlatform__Enum * actualInputPlatform, int32_t * variantIndex, MethodInfo * method)); +DO_APP_FUNC(0x00E2C9C0, Object *, HardwareJoystickMap_GetUniversalDefaultMapRoot, (HardwareJoystickMap * __this, Type * type, InputPlatform__Enum * actualInputPlatform, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB27D0, HardwareJoystickMap_GetUniversalDefaultMapRoot__MethodInfo); +DO_APP_FUNC(0x00E2CBE0, Object *, HardwareJoystickMap_TryGetFirstMatchingMap, (HardwareJoystickMap * __this, Object * mainMap, BridgedControllerHWInfo * bridgedControllerHWInfo, bool strictMatch, bool isDefaultMap, InputPlatform__Enum * actualInputPlatform, int32_t * variantIndex, MethodInfo * method)); +DO_APP_FUNC(0x00E2CEC0, Object *, HardwareJoystickMap_TryGetFirstValidMap, (HardwareJoystickMap * __this, Object * mainMap, bool isDefaultMap, InputPlatform__Enum * actualInputPlatform, int32_t * variantIndex, MethodInfo * method)); +DO_APP_FUNC(0x00E2D260, bool, HashtableExtensions_TryGetValue, (Hashtable * table, Object * key, int32_t * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF04C8, HashtableExtensions_TryGetValue__MethodInfo); +DO_APP_FUNC(0x00E2D320, bool, HashtableExtensions_TryGetValue_1, (Hashtable * table, Object * key, Object * * value, MethodInfo * method)); DO_APP_FUNC(0x00E2D470, bool, HttpWebRequest__RunWithTimeout_b__242_0, (HttpWebRequest * __this, MethodInfo * method)); DO_APP_FUNC(0x00E2D490, Task_1_System_Object_ *, HttpWebRequest_RunWithTimeout, (HttpWebRequest * __this, Func_2_System_Threading_CancellationToken_System_Threading_Tasks_Task_1_ * func, MethodInfo * method)); DO_APP_FUNC(0x00E2D620, Task_1_System_Int32_ *, HttpWebRequest_RunWithTimeout_1, (Func_2_System_Threading_CancellationToken_System_Threading_Tasks_Task_1__1 * func, int32_t timeout, Action * abort, Func_1_Boolean_ * aborted, CancellationToken cancellationToken, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1A9B0, HttpWebRequest_RunWithTimeout_1__MethodInfo); DO_APP_FUNC(0x00E2D730, Task_1_System_Object_ *, HttpWebRequest_RunWithTimeout_2, (Func_2_System_Threading_CancellationToken_System_Threading_Tasks_Task_1_ * func, int32_t timeout, Action * abort, Func_1_Boolean_ * aborted, CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x00E2D840, Task_1_System_Int32_ *, HttpWebRequest_RunWithTimeoutWorker, (Task_1_System_Int32_ * workerTask, int32_t timeout, Action * abort, Func_1_Boolean_ * aborted, CancellationTokenSource * cts, MethodInfo * method)); DO_APP_FUNC(0x00E2DAF0, Task_1_System_Object_ *, HttpWebRequest_RunWithTimeoutWorker_1, (Task_1_System_Object_ * workerTask, int32_t timeout, Action * abort, Func_1_Boolean_ * aborted, CancellationTokenSource * cts, MethodInfo * method)); DO_APP_FUNC(0x00E2DDA0, IEnumerable_1_System_Object_ *, IEnumerableExtensions_Concat, (IEnumerable_1_System_Object_ * enumerable, Object * tail, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB27B8, IEnumerableExtensions_Concat__MethodInfo); DO_APP_FUNC(0x00E01890, IEnumerable_1_System_Object_ *, IEnumerableExtensions_ConcatUnsafe, (IEnumerable_1_System_Object_ * enumerable, Object * tail, MethodInfo * method)); DO_APP_FUNC(0x00E2DE20, void, IListExtensions_Shuffle, (IList_1_System_Int32_ * ts, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF7C18, IListExtensions_Shuffle__MethodInfo); DO_APP_FUNC(0x00E2E150, void, IListExtensions_Shuffle_1, (IList_1_System_Object_ * ts, MethodInfo * method)); DO_APP_FUNC(0x00E2E480, void, IListExtensions_1_RemoveNulls, (IList_1_System_Object_ * list, int32_t nulls, MethodInfo * method)); DO_APP_FUNC(0x00E2EA00, bool, INotifyValueChangedExtensions_RegisterValueChangedCallback, (INotifyValueChanged_1_System_Boolean_ * control, EventCallback_1_ChangeEvent_1_System_Boolean_ * callback, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE0420, INotifyValueChangedExtensions_RegisterValueChangedCallback__MethodInfo); DO_APP_FUNC(0x00E2EAB0, bool, INotifyValueChangedExtensions_RegisterValueChangedCallback_1, (INotifyValueChanged_1_System_Object_ * control, EventCallback_1_ChangeEvent_1_System_Object_ * callback, MethodInfo * method)); DO_APP_FUNC(0x00E2EB60, bool, INotifyValueChangedExtensions_RegisterValueChangedCallback_2, (INotifyValueChanged_1_System_Single_ * control, EventCallback_1_ChangeEvent_1_System_Single_ * callback, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE1F88, INotifyValueChangedExtensions_RegisterValueChangedCallback_2__MethodInfo); DO_APP_FUNC(0x00E2EC10, bool, INotifyValueChangedExtensions_UnregisterValueChangedCallback, (INotifyValueChanged_1_System_Boolean_ * control, EventCallback_1_ChangeEvent_1_System_Boolean_ * callback, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2250, INotifyValueChangedExtensions_UnregisterValueChangedCallback__MethodInfo); DO_APP_FUNC(0x00E2ECC0, bool, INotifyValueChangedExtensions_UnregisterValueChangedCallback_1, (INotifyValueChanged_1_System_Object_ * control, EventCallback_1_ChangeEvent_1_System_Object_ * callback, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6CE0, ISerializableJsonDictionary_Set__MethodInfo); DO_APP_FUNC(0x00E2ED70, bool, InlineStyleAccess_SetStyleValue_3, (InlineStyleAccess * __this, StylePropertyId__Enum id, StyleEnum_1_System_Int32Enum_ inlineValue, MethodInfo * method)); DO_APP_FUNC(0x00E2EED0, int32_t, InputAction_1_ReadValue, (InputAction_1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCDAF0, InputAction_1_ReadValue__MethodInfo); DO_APP_FUNC(0x00E2EFB0, Quaternion, InputAction_1_ReadValue_1, (InputAction_1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCDAE0, InputAction_1_ReadValue_1__MethodInfo); DO_APP_FUNC(0x00E2F0C0, float, InputAction_1_ReadValue_2, (InputAction_1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0018, InputAction_1_ReadValue_2__MethodInfo); DO_APP_FUNC(0x00E2F1B0, Vector2, InputAction_1_ReadValue_3, (InputAction_1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5F88, InputAction_1_ReadValue_3__MethodInfo); DO_APP_FUNC(0x00E2F290, Vector3, InputAction_1_ReadValue_4, (InputAction_1 * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCDAE8, InputAction_1_ReadValue_4__MethodInfo); DO_APP_FUNC(0x00E2F3C0, InputActionRebindingExtensions_ParameterOverride, InputActionRebindingExtensions_ExtractParameterOverride, (Expression_1_System_Func_2_ * expr, InputBinding bindingMask, PrimitiveValue value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2760, InputActionRebindingExtensions_ExtractParameterOverride__MethodInfo); DO_APP_FUNC(0x00E2FAA0, int32_t, InputActionState_ApplyProcessors, (InputActionState * __this, int32_t bindingIndex, int32_t value, InputControl_1_System_Int32_ * controlOfType, MethodInfo * method)); DO_APP_FUNC(0x00E2FBD0, Quaternion, InputActionState_ApplyProcessors_1, (InputActionState * __this, int32_t bindingIndex, Quaternion value, InputControl_1_UnityEngine_Quaternion_ * controlOfType, MethodInfo * method)); DO_APP_FUNC(0x00E2FD20, float, InputActionState_ApplyProcessors_2, (InputActionState * __this, int32_t bindingIndex, float value, InputControl_1_System_Single_ * controlOfType, MethodInfo * method)); DO_APP_FUNC(0x00E2FE50, Vector2, InputActionState_ApplyProcessors_3, (InputActionState * __this, int32_t bindingIndex, Vector2 value, InputControl_1_UnityEngine_Vector2_ * controlOfType, MethodInfo * method)); DO_APP_FUNC(0x00E2FF90, Vector3, InputActionState_ApplyProcessors_4, (InputActionState * __this, int32_t bindingIndex, Vector3 value, InputControl_1_UnityEngine_Vector3_ * controlOfType, MethodInfo * method)); -DO_APP_FUNC(0x00E30100, float, InputActionState_ReadCompositePartValue_1, (InputActionState * __this, int32_t bindingIndex, int32_t partNumber, bool * buttonValuePtr, int32_t controlIndex, InputBindingCompositeContext_DefaultComparer_1_System_Single_ comparer, MethodInfo * method)); +DO_APP_FUNC(0x00E30100, float, InputActionState_ReadCompositePartValue_1, (InputActionState * __this, int32_t bindingIndex, int32_t partNumber, bool * buttonValuePtr, int32_t * controlIndex, InputBindingCompositeContext_DefaultComparer_1_System_Single_ comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC2308, InputActionState_ReadCompositePartValue_1__MethodInfo); DO_APP_FUNC(0x00E30340, int32_t, InputActionState_ReadValue_1, (InputActionState * __this, int32_t bindingIndex, int32_t controlIndex, bool ignoreComposites, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2718, InputActionState_ReadValue_1__MethodInfo); DO_APP_FUNC(0x00E30A40, Quaternion, InputActionState_ReadValue_2, (InputActionState * __this, int32_t bindingIndex, int32_t controlIndex, bool ignoreComposites, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2708, InputActionState_ReadValue_2__MethodInfo); DO_APP_FUNC(0x00E31170, float, InputActionState_ReadValue_3, (InputActionState * __this, int32_t bindingIndex, int32_t controlIndex, bool ignoreComposites, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB26F8, InputActionState_ReadValue_3__MethodInfo); DO_APP_FUNC(0x00E31870, Vector2, InputActionState_ReadValue_4, (InputActionState * __this, int32_t bindingIndex, int32_t controlIndex, bool ignoreComposites, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB26F0, InputActionState_ReadValue_4__MethodInfo); DO_APP_FUNC(0x00E31F60, Vector3, InputActionState_ReadValue_5, (InputActionState * __this, int32_t bindingIndex, int32_t controlIndex, bool ignoreComposites, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB26E0, InputActionState_ReadValue_5__MethodInfo); DO_APP_FUNC(0x00E32680, bool, InputArrayExtensions_Contains, (InlinedArray_1_System_Object_ array, Object * value, MethodInfo * method)); DO_APP_FUNC(0x00E32710, bool, InputArrayExtensions_ContainsReference, (InlinedArray_1_System_Object_ array, Object * value, MethodInfo * method)); DO_APP_FUNC(0x00E32750, int32_t, InputArrayExtensions_IndexOfReference, (InlinedArray_1_System_Object_ array, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x00E327C0, float, InputBindingCompositeContext_ReadValue_1, (InputBindingCompositeContext__Boxed * __this, int32_t partNumber, MethodInfo * method)); -DO_APP_FUNC(0x00E32810, int32_t, InputBindingResolver_InstantiateWithParameters, (InputBindingResolver__Boxed * __this, TypeTable registrations, String * namesAndParameters, Object__Array * array, int32_t count, InputActionMap * actionMap, InputBinding binding, MethodInfo * method)); +DO_APP_FUNC(0x00E327C0, float, InputBindingCompositeContext_ReadValue_1, (InputBindingCompositeContext * __this, int32_t partNumber, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC56E8, InputBindingCompositeContext_ReadValue_1__MethodInfo); +DO_APP_FUNC(0x00E32810, int32_t, InputBindingResolver_InstantiateWithParameters, (InputBindingResolver * __this, TypeTable registrations, String * namesAndParameters, Object__Array * * array, int32_t * count, InputActionMap * actionMap, InputBinding * binding, MethodInfo * method)); DO_APP_FUNC(0x00E330E0, Object *, InputControl_GetChildControl_1, (InputControl * __this, String * path, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2670, InputControl_GetChildControl_1__MethodInfo); DO_APP_FUNC(0x00E334E0, Object *, InputControl_TryGetChildControl_1, (InputControl * __this, String * path, MethodInfo * method)); -DO_APP_FUNC(0x00E33830, void, InputControlExtensions_CopyState_1, (InputDevice * device, MouseState state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2678, InputControl_TryGetChildControl_1__MethodInfo); +DO_APP_FUNC(0x00E33830, void, InputControlExtensions_CopyState_1, (InputDevice * device, MouseState * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2640, InputControlExtensions_CopyState_1__MethodInfo); DO_APP_FUNC(0x00E33B20, void, InputControlExtensions_FindControlsRecursive, (InputControl * parent, IList_1_System_Object_ * controls, Func_2_Object_Boolean_ * predicate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2628, InputControlExtensions_FindControlsRecursive__MethodInfo); DO_APP_FUNC(0x00E33E90, Object *, InputControlExtensions_FindInParentChain, (InputControl * control, MethodInfo * method)); -DO_APP_FUNC(0x00E33FB0, bool, InputControlExtensions_ReadUnprocessedValueFromEvent, (InputControl_1_System_Single_ * control, InputEventPtr inputEvent, float value, MethodInfo * method)); -DO_APP_FUNC(0x00E340F0, bool, InputControlExtensions_ReadUnprocessedValueFromEvent_1, (InputControl_1_UnityEngine_Vector2_ * control, InputEventPtr inputEvent, Vector2 value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2608, InputControlExtensions_FindInParentChain__MethodInfo); +DO_APP_FUNC(0x00E33FB0, bool, InputControlExtensions_ReadUnprocessedValueFromEvent, (InputControl_1_System_Single_ * control, InputEventPtr inputEvent, float * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2610, InputControlExtensions_ReadUnprocessedValueFromEvent__MethodInfo); +DO_APP_FUNC(0x00E340F0, bool, InputControlExtensions_ReadUnprocessedValueFromEvent_1, (InputControl_1_UnityEngine_Vector2_ * control, InputEventPtr inputEvent, Vector2 * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB25F0, InputControlExtensions_ReadUnprocessedValueFromEvent_1__MethodInfo); DO_APP_FUNC(0x00E34220, void, InputControlExtensions_WriteValueIntoEvent, (InputControl_1_System_Single_ * control, float value, InputEventPtr eventPtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB25F8, InputControlExtensions_WriteValueIntoEvent__MethodInfo); DO_APP_FUNC(0x00E34320, void, InputControlExtensions_WriteValueIntoEvent_1, (InputControl_1_UnityEngine_Vector2_ * control, Vector2 value, InputEventPtr eventPtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB25D8, InputControlExtensions_WriteValueIntoEvent_1__MethodInfo); DO_APP_FUNC(0x00E34420, void, InputControlExtensions_WriteValueIntoState_1, (InputControl * control, bool value, Void * statePtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB25E0, InputControlExtensions_WriteValueIntoState_1__MethodInfo); DO_APP_FUNC(0x00E346F0, void, InputControlExtensions_WriteValueIntoState_2, (InputControl * control, uint32_t value, Void * statePtr, MethodInfo * method)); -DO_APP_FUNC(0x00E349B0, Object *, InputControlPath_MatchByUsageAtDeviceRootRecursive, (InputDevice * device, String * path, int32_t indexInPath, InputControlList_1_System_Object_ matches, bool matchMultiple, MethodInfo * method)); -DO_APP_FUNC(0x00E34D50, Object *, InputControlPath_MatchChildrenRecursive, (InputControl * control, String * path, int32_t indexInPath, InputControlList_1_System_Object_ matches, bool matchMultiple, MethodInfo * method)); -DO_APP_FUNC(0x00E34EA0, Object *, InputControlPath_MatchControlsRecursive, (InputControl * control, String * path, int32_t indexInPath, InputControlList_1_System_Object_ matches, bool matchMultiple, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB25C8, InputControlExtensions_WriteValueIntoState_2__MethodInfo); +DO_APP_FUNC(0x00E349B0, Object *, InputControlPath_MatchByUsageAtDeviceRootRecursive, (InputDevice * device, String * path, int32_t indexInPath, InputControlList_1_System_Object_ * matches, bool matchMultiple, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB25A0, InputControlPath_MatchByUsageAtDeviceRootRecursive__MethodInfo); +DO_APP_FUNC(0x00E34D50, Object *, InputControlPath_MatchChildrenRecursive, (InputControl * control, String * path, int32_t indexInPath, InputControlList_1_System_Object_ * matches, bool matchMultiple, MethodInfo * method)); +DO_APP_FUNC(0x00E34EA0, Object *, InputControlPath_MatchControlsRecursive, (InputControl * control, String * path, int32_t indexInPath, InputControlList_1_System_Object_ * matches, bool matchMultiple, MethodInfo * method)); DO_APP_FUNC(0x00E356D0, Object *, InputControlPath_TryFindChild_1, (InputControl * control, String * path, int32_t indexInPath, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2568, InputControlPath_TryFindChild_1__MethodInfo); DO_APP_FUNC(0x00E35870, Object *, InputControlPath_TryFindControl_1, (InputControl * control, String * path, int32_t indexInPath, MethodInfo * method)); -DO_APP_FUNC(0x00E35940, int32_t, InputControlPath_TryFindControls_2, (InputControl * control, String * path, int32_t indexInPath, InputControlList_1_System_Object_ matches, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2570, InputControlPath_TryFindControl_1__MethodInfo); +DO_APP_FUNC(0x00E35940, int32_t, InputControlPath_TryFindControls_2, (InputControl * control, String * path, int32_t indexInPath, InputControlList_1_System_Object_ * matches, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2578, InputControlPath_TryFindControls_2__MethodInfo); DO_APP_FUNC(0x00E35A60, Nullable_1_UnityEngine_InputSystem_InputControlScheme_, InputControlScheme_FindControlSchemeForDevice, (InputDevice * device, Object * schemes, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2510, InputControlScheme_FindControlSchemeForDevice__MethodInfo); DO_APP_FUNC(0x00E35C20, Nullable_1_UnityEngine_InputSystem_InputControlScheme_, InputControlScheme_FindControlSchemeForDevices, (InputControlList_1_System_Object_ devices, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_ schemes, InputDevice * mustIncludeDevice, bool allowUnsuccesfulMatch, MethodInfo * method)); DO_APP_FUNC(0x00E35E00, Nullable_1_UnityEngine_InputSystem_InputControlScheme_, InputControlScheme_FindControlSchemeForDevices_1, (OneOrMore_2_System_Object_ReadOnlyArray_1_System_Object_ devices, Object * schemes, InputDevice * mustIncludeDevice, bool allowUnsuccesfulMatch, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB24F8, InputControlScheme_FindControlSchemeForDevices_1__MethodInfo); DO_APP_FUNC(0x00E36040, Nullable_1_UnityEngine_InputSystem_InputControlScheme_, InputControlScheme_FindControlSchemeForDevices_2, (ReadOnlyArray_1_System_Object_ devices, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_ schemes, InputDevice * mustIncludeDevice, bool allowUnsuccesfulMatch, MethodInfo * method)); DO_APP_FUNC(0x00E36220, Nullable_1_UnityEngine_InputSystem_InputControlScheme_, InputControlScheme_FindControlSchemeForDevices_3, (Object * devices, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_ schemes, InputDevice * mustIncludeDevice, bool allowUnsuccesfulMatch, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB24F0, InputControlScheme_FindControlSchemeForDevices_3__MethodInfo); DO_APP_FUNC(0x00E36480, Nullable_1_UnityEngine_InputSystem_InputControlScheme_, InputControlScheme_FindControlSchemeForDevices_4, (Object * devices, Object * schemes, InputDevice * mustIncludeDevice, bool allowUnsuccesfulMatch, MethodInfo * method)); -DO_APP_FUNC(0x00E366C0, bool, InputControlScheme_FindControlSchemeForDevices_5, (InputControlList_1_System_Object_ devices, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_ schemes, InputControlScheme controlScheme, InputControlScheme_MatchResult matchResult, InputDevice * mustIncludeDevice, bool allowUnsuccessfulMatch, MethodInfo * method)); -DO_APP_FUNC(0x00E36DA0, bool, InputControlScheme_FindControlSchemeForDevices_6, (OneOrMore_2_System_Object_ReadOnlyArray_1_System_Object_ devices, Object * schemes, InputControlScheme controlScheme, InputControlScheme_MatchResult matchResult, InputDevice * mustIncludeDevice, bool allowUnsuccessfulMatch, MethodInfo * method)); -DO_APP_FUNC(0x00E374E0, bool, InputControlScheme_FindControlSchemeForDevices_7, (ReadOnlyArray_1_System_Object_ devices, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_ schemes, InputControlScheme controlScheme, InputControlScheme_MatchResult matchResult, InputDevice * mustIncludeDevice, bool allowUnsuccessfulMatch, MethodInfo * method)); -DO_APP_FUNC(0x00E37BC0, bool, InputControlScheme_FindControlSchemeForDevices_8, (Object * devices, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_ schemes, InputControlScheme controlScheme, InputControlScheme_MatchResult matchResult, InputDevice * mustIncludeDevice, bool allowUnsuccessfulMatch, MethodInfo * method)); -DO_APP_FUNC(0x00E382F0, bool, InputControlScheme_FindControlSchemeForDevices_9, (Object * devices, Object * schemes, InputControlScheme controlScheme, InputControlScheme_MatchResult matchResult, InputDevice * mustIncludeDevice, bool allowUnsuccessfulMatch, MethodInfo * method)); -DO_APP_FUNC(0x00E38A80, InputControlScheme_MatchResult, InputControlScheme_PickDevicesFrom, (InputControlScheme__Boxed * __this, InputControlList_1_System_Object_ devices, InputDevice * favorDevice, MethodInfo * method)); -DO_APP_FUNC(0x00E392A0, InputControlScheme_MatchResult, InputControlScheme_PickDevicesFrom_1, (InputControlScheme__Boxed * __this, OneOrMore_2_System_Object_ReadOnlyArray_1_System_Object_ devices, InputDevice * favorDevice, MethodInfo * method)); -DO_APP_FUNC(0x00E39AC0, InputControlScheme_MatchResult, InputControlScheme_PickDevicesFrom_2, (InputControlScheme__Boxed * __this, ReadOnlyArray_1_System_Object_ devices, InputDevice * favorDevice, MethodInfo * method)); -DO_APP_FUNC(0x00E3A2A0, InputControlScheme_MatchResult, InputControlScheme_PickDevicesFrom_3, (InputControlScheme__Boxed * __this, Object * devices, InputDevice * favorDevice, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB24E8, InputControlScheme_FindControlSchemeForDevices_4__MethodInfo); +DO_APP_FUNC(0x00E366C0, bool, InputControlScheme_FindControlSchemeForDevices_5, (InputControlList_1_System_Object_ devices, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_ schemes, InputControlScheme * controlScheme, InputControlScheme_MatchResult * matchResult, InputDevice * mustIncludeDevice, bool allowUnsuccessfulMatch, MethodInfo * method)); +DO_APP_FUNC(0x00E36DA0, bool, InputControlScheme_FindControlSchemeForDevices_6, (OneOrMore_2_System_Object_ReadOnlyArray_1_System_Object_ devices, Object * schemes, InputControlScheme * controlScheme, InputControlScheme_MatchResult * matchResult, InputDevice * mustIncludeDevice, bool allowUnsuccessfulMatch, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2468, InputControlScheme_FindControlSchemeForDevices_6__MethodInfo); +DO_APP_FUNC(0x00E374E0, bool, InputControlScheme_FindControlSchemeForDevices_7, (ReadOnlyArray_1_System_Object_ devices, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_ schemes, InputControlScheme * controlScheme, InputControlScheme_MatchResult * matchResult, InputDevice * mustIncludeDevice, bool allowUnsuccessfulMatch, MethodInfo * method)); +DO_APP_FUNC(0x00E37BC0, bool, InputControlScheme_FindControlSchemeForDevices_8, (Object * devices, ReadOnlyArray_1_UnityEngine_InputSystem_InputControlScheme_ schemes, InputControlScheme * controlScheme, InputControlScheme_MatchResult * matchResult, InputDevice * mustIncludeDevice, bool allowUnsuccessfulMatch, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB2438, InputControlScheme_FindControlSchemeForDevices_8__MethodInfo); +DO_APP_FUNC(0x00E382F0, bool, InputControlScheme_FindControlSchemeForDevices_9, (Object * devices, Object * schemes, InputControlScheme * controlScheme, InputControlScheme_MatchResult * matchResult, InputDevice * mustIncludeDevice, bool allowUnsuccessfulMatch, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC3F0, InputControlScheme_FindControlSchemeForDevices_9__MethodInfo); +DO_APP_FUNC(0x00E38A80, InputControlScheme_MatchResult, InputControlScheme_PickDevicesFrom, (InputControlScheme * __this, InputControlList_1_System_Object_ devices, InputDevice * favorDevice, MethodInfo * method)); +DO_APP_FUNC(0x00E392A0, InputControlScheme_MatchResult, InputControlScheme_PickDevicesFrom_1, (InputControlScheme * __this, OneOrMore_2_System_Object_ReadOnlyArray_1_System_Object_ devices, InputDevice * favorDevice, MethodInfo * method)); +DO_APP_FUNC(0x00E39AC0, InputControlScheme_MatchResult, InputControlScheme_PickDevicesFrom_2, (InputControlScheme * __this, ReadOnlyArray_1_System_Object_ devices, InputDevice * favorDevice, MethodInfo * method)); +DO_APP_FUNC(0x00E3A2A0, InputControlScheme_MatchResult, InputControlScheme_PickDevicesFrom_3, (InputControlScheme * __this, Object * devices, InputDevice * favorDevice, MethodInfo * method)); DO_APP_FUNC(0x00E3A990, Object *, InputDevice_Build, (String * layoutName, String * layoutVariants, InputDeviceDescription deviceDescription, bool noPrecompiledLayouts, MethodInfo * method)); -DO_APP_FUNC(0x00E3B0B0, int64_t, InputDevice_ExecuteCommand_1, (InputDevice * __this, DisableDeviceCommand command, MethodInfo * method)); -DO_APP_FUNC(0x00E3B320, int64_t, InputDevice_ExecuteCommand_2, (InputDevice * __this, DualMotorRumbleCommand command, MethodInfo * method)); -DO_APP_FUNC(0x00E3B590, int64_t, InputDevice_ExecuteCommand_3, (InputDevice * __this, DualSenseHIDUSBOutputReport command, MethodInfo * method)); -DO_APP_FUNC(0x00E3B800, int64_t, InputDevice_ExecuteCommand_4, (InputDevice * __this, DualShockHIDOutputReport command, MethodInfo * method)); -DO_APP_FUNC(0x00E3BA70, int64_t, InputDevice_ExecuteCommand_5, (InputDevice * __this, EnableDeviceCommand command, MethodInfo * method)); -DO_APP_FUNC(0x00E3BCE0, int64_t, InputDevice_ExecuteCommand_6, (InputDevice * __this, EnableIMECompositionCommand command, MethodInfo * method)); -DO_APP_FUNC(0x00E3BF50, int64_t, InputDevice_ExecuteCommand_7, (InputDevice * __this, GetHapticCapabilitiesCommand command, MethodInfo * method)); -DO_APP_FUNC(0x00E3C1C0, int64_t, InputDevice_ExecuteCommand_8, (InputDevice * __this, InitiateUserAccountPairingCommand command, MethodInfo * method)); -DO_APP_FUNC(0x00E3C430, int64_t, InputDevice_ExecuteCommand_9, (InputDevice * __this, QueryCanRunInBackground command, MethodInfo * method)); -DO_APP_FUNC(0x00E3C6A0, int64_t, InputDevice_ExecuteCommand_10, (InputDevice * __this, QueryEnabledStateCommand command, MethodInfo * method)); -DO_APP_FUNC(0x00E3C910, int64_t, InputDevice_ExecuteCommand_11, (InputDevice * __this, QueryKeyNameCommand command, MethodInfo * method)); -DO_APP_FUNC(0x00E3CB80, int64_t, InputDevice_ExecuteCommand_12, (InputDevice * __this, QueryKeyboardLayoutCommand command, MethodInfo * method)); -DO_APP_FUNC(0x00E3CDF0, int64_t, InputDevice_ExecuteCommand_13, (InputDevice * __this, QueryPairedUserAccountCommand command, MethodInfo * method)); -DO_APP_FUNC(0x00E3D060, int64_t, InputDevice_ExecuteCommand_14, (InputDevice * __this, QuerySamplingFrequencyCommand command, MethodInfo * method)); -DO_APP_FUNC(0x00E3D2D0, int64_t, InputDevice_ExecuteCommand_15, (InputDevice * __this, RequestResetCommand command, MethodInfo * method)); -DO_APP_FUNC(0x00E3D540, int64_t, InputDevice_ExecuteCommand_16, (InputDevice * __this, RequestSyncCommand command, MethodInfo * method)); -DO_APP_FUNC(0x00E3D7B0, int64_t, InputDevice_ExecuteCommand_17, (InputDevice * __this, SendBufferedHapticCommand command, MethodInfo * method)); -DO_APP_FUNC(0x00E3DA20, int64_t, InputDevice_ExecuteCommand_18, (InputDevice * __this, SendHapticImpulseCommand command, MethodInfo * method)); -DO_APP_FUNC(0x00E3DC90, int64_t, InputDevice_ExecuteCommand_19, (InputDevice * __this, SetIMECursorPositionCommand command, MethodInfo * method)); -DO_APP_FUNC(0x00E3DF00, int64_t, InputDevice_ExecuteCommand_20, (InputDevice * __this, SetSamplingFrequencyCommand command, MethodInfo * method)); -DO_APP_FUNC(0x00E3E170, int64_t, InputDevice_ExecuteCommand_21, (InputDevice * __this, WarpMousePositionCommand command, MethodInfo * method)); -DO_APP_FUNC(0x00E3E3E0, int64_t, InputDevice_ExecuteCommand_22, (InputDevice * __this, OpenXRInput_GetInternalDeviceIdCommand command, MethodInfo * method)); -DO_APP_FUNC(0x00E3E650, int64_t, InputDevice_ExecuteCommand_23, (InputDevice * __this, SwitchProControllerHID_SwitchMagicOutputHIDBluetooth command, MethodInfo * method)); -DO_APP_FUNC(0x00E3E8C0, int64_t, InputDevice_ExecuteCommand_24, (InputDevice * __this, SwitchProControllerHID_SwitchMagicOutputHIDUSB command, MethodInfo * method)); -DO_APP_FUNC(0x00E3EB30, bool, InputDevice_1_CheckValidAndSetDefault, (InputDevice_1__Boxed * __this, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x00E3EB60, bool, InputDevice_1_CheckValidAndSetDefault_1, (InputDevice_1__Boxed * __this, Quaternion value, MethodInfo * method)); -DO_APP_FUNC(0x00E3EB90, bool, InputDevice_1_CheckValidAndSetDefault_2, (InputDevice_1__Boxed * __this, Vector3 value, MethodInfo * method)); -DO_APP_FUNC(0x00E3EBC0, InputDeviceMatcher, InputDeviceMatcher_WithCapability, (InputDeviceMatcher__Boxed * __this, String * path, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00E3ECA0, InputDeviceMatcher, InputDeviceMatcher_WithCapability_1, (InputDeviceMatcher__Boxed * __this, String * path, Int32Enum__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x00E3ED80, InputDeviceMatcher, InputDeviceMatcher_WithCapability_2, (InputDeviceMatcher__Boxed * __this, String * path, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x00E3EE20, bool, InputEventPtr_IsA, (InputEventPtr__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E3EE40, bool, InputEventPtr_IsA_1, (InputEventPtr__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E3EE60, bool, InputEventPtr_IsA_2, (InputEventPtr__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E3EE80, bool, InputEventPtr_IsA_3, (InputEventPtr__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC370, InputDevice_Build__MethodInfo); +DO_APP_FUNC(0x00E3B0B0, int64_t, InputDevice_ExecuteCommand_1, (InputDevice * __this, DisableDeviceCommand * command, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7270, InputDevice_ExecuteCommand_1__MethodInfo); +DO_APP_FUNC(0x00E3B320, int64_t, InputDevice_ExecuteCommand_2, (InputDevice * __this, DualMotorRumbleCommand * command, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1330, InputDevice_ExecuteCommand_2__MethodInfo); +DO_APP_FUNC(0x00E3B590, int64_t, InputDevice_ExecuteCommand_3, (InputDevice * __this, DualSenseHIDUSBOutputReport * command, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1370, InputDevice_ExecuteCommand_3__MethodInfo); +DO_APP_FUNC(0x00E3B800, int64_t, InputDevice_ExecuteCommand_4, (InputDevice * __this, DualShockHIDOutputReport * command, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1388, InputDevice_ExecuteCommand_4__MethodInfo); +DO_APP_FUNC(0x00E3BA70, int64_t, InputDevice_ExecuteCommand_5, (InputDevice * __this, EnableDeviceCommand * command, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7280, InputDevice_ExecuteCommand_5__MethodInfo); +DO_APP_FUNC(0x00E3BCE0, int64_t, InputDevice_ExecuteCommand_6, (InputDevice * __this, EnableIMECompositionCommand * command, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8AE8, InputDevice_ExecuteCommand_6__MethodInfo); +DO_APP_FUNC(0x00E3BF50, int64_t, InputDevice_ExecuteCommand_7, (InputDevice * __this, GetHapticCapabilitiesCommand * command, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD878, InputDevice_ExecuteCommand_7__MethodInfo); +DO_APP_FUNC(0x00E3C1C0, int64_t, InputDevice_ExecuteCommand_8, (InputDevice * __this, InitiateUserAccountPairingCommand * command, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD6A0, InputDevice_ExecuteCommand_8__MethodInfo); +DO_APP_FUNC(0x00E3C430, int64_t, InputDevice_ExecuteCommand_9, (InputDevice * __this, QueryCanRunInBackground * command, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7348, InputDevice_ExecuteCommand_9__MethodInfo); +DO_APP_FUNC(0x00E3C6A0, int64_t, InputDevice_ExecuteCommand_10, (InputDevice * __this, QueryEnabledStateCommand * command, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC72F0, InputDevice_ExecuteCommand_10__MethodInfo); +DO_APP_FUNC(0x00E3C910, int64_t, InputDevice_ExecuteCommand_11, (InputDevice * __this, QueryKeyNameCommand * command, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC52D8, InputDevice_ExecuteCommand_11__MethodInfo); +DO_APP_FUNC(0x00E3CB80, int64_t, InputDevice_ExecuteCommand_12, (InputDevice * __this, QueryKeyboardLayoutCommand * command, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC88B8, InputDevice_ExecuteCommand_12__MethodInfo); +DO_APP_FUNC(0x00E3CDF0, int64_t, InputDevice_ExecuteCommand_13, (InputDevice * __this, QueryPairedUserAccountCommand * command, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD650, InputDevice_ExecuteCommand_13__MethodInfo); +DO_APP_FUNC(0x00E3D060, int64_t, InputDevice_ExecuteCommand_14, (InputDevice * __this, QuerySamplingFrequencyCommand * command, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCAF08, InputDevice_ExecuteCommand_14__MethodInfo); +DO_APP_FUNC(0x00E3D2D0, int64_t, InputDevice_ExecuteCommand_15, (InputDevice * __this, RequestResetCommand * command, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7278, InputDevice_ExecuteCommand_15__MethodInfo); +DO_APP_FUNC(0x00E3D540, int64_t, InputDevice_ExecuteCommand_16, (InputDevice * __this, RequestSyncCommand * command, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC72E8, InputDevice_ExecuteCommand_16__MethodInfo); +DO_APP_FUNC(0x00E3D7B0, int64_t, InputDevice_ExecuteCommand_17, (InputDevice * __this, SendBufferedHapticCommand * command, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD880, InputDevice_ExecuteCommand_17__MethodInfo); +DO_APP_FUNC(0x00E3DA20, int64_t, InputDevice_ExecuteCommand_18, (InputDevice * __this, SendHapticImpulseCommand * command, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCDBD8, InputDevice_ExecuteCommand_18__MethodInfo); +DO_APP_FUNC(0x00E3DC90, int64_t, InputDevice_ExecuteCommand_19, (InputDevice * __this, SetIMECursorPositionCommand * command, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8AF0, InputDevice_ExecuteCommand_19__MethodInfo); +DO_APP_FUNC(0x00E3DF00, int64_t, InputDevice_ExecuteCommand_20, (InputDevice * __this, SetSamplingFrequencyCommand * command, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCAF38, InputDevice_ExecuteCommand_20__MethodInfo); +DO_APP_FUNC(0x00E3E170, int64_t, InputDevice_ExecuteCommand_21, (InputDevice * __this, WarpMousePositionCommand * command, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC87D8, InputDevice_ExecuteCommand_21__MethodInfo); +DO_APP_FUNC(0x00E3E3E0, int64_t, InputDevice_ExecuteCommand_22, (InputDevice * __this, OpenXRInput_GetInternalDeviceIdCommand * command, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB0628, InputDevice_ExecuteCommand_22__MethodInfo); +DO_APP_FUNC(0x00E3E650, int64_t, InputDevice_ExecuteCommand_23, (InputDevice * __this, SwitchProControllerHID_SwitchMagicOutputHIDBluetooth * command, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF3C0, InputDevice_ExecuteCommand_23__MethodInfo); +DO_APP_FUNC(0x00E3E8C0, int64_t, InputDevice_ExecuteCommand_24, (InputDevice * __this, SwitchProControllerHID_SwitchMagicOutputHIDUSB * command, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF3B8, InputDevice_ExecuteCommand_24__MethodInfo); +DO_APP_FUNC(0x00E3EB30, bool, InputDevice_1_CheckValidAndSetDefault, (InputDevice_1 * __this, Object * * value, MethodInfo * method)); +DO_APP_FUNC(0x00E3EB60, bool, InputDevice_1_CheckValidAndSetDefault_1, (InputDevice_1 * __this, Quaternion * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4560, InputDevice_1_CheckValidAndSetDefault_1__MethodInfo); +DO_APP_FUNC(0x00E3EB90, bool, InputDevice_1_CheckValidAndSetDefault_2, (InputDevice_1 * __this, Vector3 * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF46B0, InputDevice_1_CheckValidAndSetDefault_2__MethodInfo); +DO_APP_FUNC(0x00E3EBC0, InputDeviceMatcher, InputDeviceMatcher_WithCapability, (InputDeviceMatcher * __this, String * path, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF340, InputDeviceMatcher_WithCapability__MethodInfo); +DO_APP_FUNC(0x00E3ECA0, InputDeviceMatcher, InputDeviceMatcher_WithCapability_1, (InputDeviceMatcher * __this, String * path, Int32Enum__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x00E3ED80, InputDeviceMatcher, InputDeviceMatcher_WithCapability_2, (InputDeviceMatcher * __this, String * path, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x00E3EE20, bool, InputEventPtr_IsA, (InputEventPtr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD12A8, InputEventPtr_IsA__MethodInfo); +DO_APP_FUNC(0x00E3EE40, bool, InputEventPtr_IsA_1, (InputEventPtr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1200, InputEventPtr_IsA_1__MethodInfo); +DO_APP_FUNC(0x00E3EE60, bool, InputEventPtr_IsA_2, (InputEventPtr * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7550, InputEventPtr_IsA_2__MethodInfo); +DO_APP_FUNC(0x00E3EE80, bool, InputEventPtr_IsA_3, (InputEventPtr * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8C448, InputEventPtr_IsA_3__MethodInfo); -DO_APP_FUNC(0x00E3EEA0, int64_t, InputManager_1_ExecuteGlobalCommand, (InputManager_1 * __this, UseWindowsGamingInputCommand command, MethodInfo * method)); -DO_APP_FUNC(0x00E3EF10, int32_t, InputManager_1_GetControls, (InputManager_1 * __this, String * path, InputControlList_1_System_Object_ controls, MethodInfo * method)); -DO_APP_FUNC(0x00E3EFE0, void, InputManager_1_QueueEvent_2, (InputManager_1 * __this, DeviceConfigurationEvent inputEvent, MethodInfo * method)); -DO_APP_FUNC(0x00E3EFE0, void, InputManager_1_QueueEvent_3, (InputManager_1 * __this, TextEvent inputEvent, MethodInfo * method)); +DO_APP_FUNC(0x00E3EEA0, int64_t, InputManager_1_ExecuteGlobalCommand, (InputManager_1 * __this, UseWindowsGamingInputCommand * command, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC9E98, InputManager_1_ExecuteGlobalCommand__MethodInfo); +DO_APP_FUNC(0x00E3EF10, int32_t, InputManager_1_GetControls, (InputManager_1 * __this, String * path, InputControlList_1_System_Object_ * controls, MethodInfo * method)); +DO_APP_FUNC(0x00E3EFE0, void, InputManager_1_QueueEvent_2, (InputManager_1 * __this, DeviceConfigurationEvent * inputEvent, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7D80, InputManager_1_QueueEvent_2__MethodInfo); +DO_APP_FUNC(0x00E3EFE0, void, InputManager_1_QueueEvent_3, (InputManager_1 * __this, TextEvent * inputEvent, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC7D70, InputManager_1_QueueEvent_3__MethodInfo); DO_APP_FUNC(0x00E3EFF0, void, InputManager_1_RegisterPrecompiledLayout, (InputManager_1 * __this, String * metadata, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC308, InputManager_1_RegisterPrecompiledLayout__MethodInfo); DO_APP_FUNC(0x00E3F440, Object *, InputRemoting_DeserializeData, (Byte__Array * data, MethodInfo * method)); DO_APP_FUNC(0x00E3F4A0, InputRemoting_ChangeUsageMsg_Data, InputRemoting_DeserializeData_1, (Byte__Array * data, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB090, InputRemoting_DeserializeData_1__MethodInfo); DO_APP_FUNC(0x00E3F520, InputRemoting_NewDeviceMsg_Data, InputRemoting_DeserializeData_2, (Byte__Array * data, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB068, InputRemoting_DeserializeData_2__MethodInfo); DO_APP_FUNC(0x00E3F5D0, InputRemoting_NewLayoutMsg_Data, InputRemoting_DeserializeData_3, (Byte__Array * data, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB138, InputRemoting_DeserializeData_3__MethodInfo); DO_APP_FUNC(0x00E3F650, Byte__Array *, InputRemoting_SerializeData, (Object * data, MethodInfo * method)); DO_APP_FUNC(0x00E3F6A0, Byte__Array *, InputRemoting_SerializeData_1, (InputRemoting_ChangeUsageMsg_Data data, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB0B0, InputRemoting_SerializeData_1__MethodInfo); DO_APP_FUNC(0x00E3F720, Byte__Array *, InputRemoting_SerializeData_2, (InputRemoting_NewDeviceMsg_Data data, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB140, InputRemoting_SerializeData_2__MethodInfo); DO_APP_FUNC(0x00E3F7D0, Byte__Array *, InputRemoting_SerializeData_3, (InputRemoting_NewLayoutMsg_Data data, MethodInfo * method)); -DO_APP_FUNC(0x00E3F850, int64_t, InputRuntimeExtensions_DeviceCommand, (IInputRuntime * runtime, int32_t deviceId, DisableDeviceCommand command, MethodInfo * method)); -DO_APP_FUNC(0x00E3F900, int64_t, InputRuntimeExtensions_DeviceCommand_1, (IInputRuntime * runtime, int32_t deviceId, EnableDeviceCommand command, MethodInfo * method)); -DO_APP_FUNC(0x00E3F9B0, int64_t, InputRuntimeExtensions_DeviceCommand_2, (IInputRuntime * runtime, int32_t deviceId, InputDeviceCommand command, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB108, InputRemoting_SerializeData_3__MethodInfo); +DO_APP_FUNC(0x00E3F850, int64_t, InputRuntimeExtensions_DeviceCommand, (IInputRuntime * runtime, int32_t deviceId, DisableDeviceCommand * command, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC320, InputRuntimeExtensions_DeviceCommand__MethodInfo); +DO_APP_FUNC(0x00E3F900, int64_t, InputRuntimeExtensions_DeviceCommand_1, (IInputRuntime * runtime, int32_t deviceId, EnableDeviceCommand * command, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC2F8, InputRuntimeExtensions_DeviceCommand_1__MethodInfo); +DO_APP_FUNC(0x00E3F9B0, int64_t, InputRuntimeExtensions_DeviceCommand_2, (IInputRuntime * runtime, int32_t deviceId, InputDeviceCommand * command, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC300, InputRuntimeExtensions_DeviceCommand_2__MethodInfo); DO_APP_FUNC(0x00E3FA60, void, InputState_Change_1, (InputControl * control, uint8_t state, InputUpdateType__Enum updateType, InputEventPtr eventPtr, MethodInfo * method)); -DO_APP_FUNC(0x00E3FA90, void, InputState_Change_2, (InputControl * control, uint8_t state, InputUpdateType__Enum updateType, InputEventPtr eventPtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCAB50, InputState_Change_1__MethodInfo); +DO_APP_FUNC(0x00E3FA90, void, InputState_Change_2, (InputControl * control, uint8_t * state, InputUpdateType__Enum updateType, InputEventPtr eventPtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC2F0, InputState_Change_2__MethodInfo); DO_APP_FUNC(0x00E3FDF0, void, InputState_Change_3, (InputControl * control, Int32Enum__Enum state, InputUpdateType__Enum updateType, InputEventPtr eventPtr, MethodInfo * method)); -DO_APP_FUNC(0x00E3FE20, void, InputState_Change_4, (InputControl * control, Int32Enum__Enum state, InputUpdateType__Enum updateType, InputEventPtr eventPtr, MethodInfo * method)); +DO_APP_FUNC(0x00E3FE20, void, InputState_Change_4, (InputControl * control, Int32Enum__Enum * state, InputUpdateType__Enum updateType, InputEventPtr eventPtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC2D8, InputState_Change_4__MethodInfo); DO_APP_FUNC(0x00E40180, void, InputState_Change_5, (InputControl * control, MouseState state, InputUpdateType__Enum updateType, InputEventPtr eventPtr, MethodInfo * method)); -DO_APP_FUNC(0x00E401A0, void, InputState_Change_6, (InputControl * control, MouseState state, InputUpdateType__Enum updateType, InputEventPtr eventPtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF418, InputState_Change_5__MethodInfo); +DO_APP_FUNC(0x00E401A0, void, InputState_Change_6, (InputControl * control, MouseState * state, InputUpdateType__Enum updateType, InputEventPtr eventPtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC2D0, InputState_Change_6__MethodInfo); DO_APP_FUNC(0x00E40180, void, InputState_Change_7, (InputControl * control, TouchState state, InputUpdateType__Enum updateType, InputEventPtr eventPtr, MethodInfo * method)); -DO_APP_FUNC(0x00E40500, void, InputState_Change_8, (InputControl * control, TouchState state, InputUpdateType__Enum updateType, InputEventPtr eventPtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1390, InputState_Change_7__MethodInfo); +DO_APP_FUNC(0x00E40500, void, InputState_Change_8, (InputControl * control, TouchState * state, InputUpdateType__Enum updateType, InputEventPtr eventPtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC2E0, InputState_Change_8__MethodInfo); DO_APP_FUNC(0x00E40860, void, InputState_Change_9, (InputControl * control, Vector2 state, InputUpdateType__Enum updateType, InputEventPtr eventPtr, MethodInfo * method)); -DO_APP_FUNC(0x00E40890, void, InputState_Change_10, (InputControl * control, Vector2 state, InputUpdateType__Enum updateType, InputEventPtr eventPtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC8810, InputState_Change_9__MethodInfo); +DO_APP_FUNC(0x00E40890, void, InputState_Change_10, (InputControl * control, Vector2 * state, InputUpdateType__Enum updateType, InputEventPtr eventPtr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC2B8, InputState_Change_10__MethodInfo); DO_APP_FUNC(0x00E40BF0, TouchState, InputStateHistory_ReadValue, (InputStateHistory * __this, InputStateHistory_RecordHeader * data, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC2C0, InputStateHistory_ReadValue__MethodInfo); DO_APP_FUNC(0x00E40F50, Object *, InputSystem_AddDevice_3, (String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC2A0, InputSystem_AddDevice_3__MethodInfo); DO_APP_FUNC(0x00E412D0, InputControlList_1_System_Object_, InputSystem_FindControls_1, (String * path, MethodInfo * method)); -DO_APP_FUNC(0x00E41350, int32_t, InputSystem_FindControls_2, (String * path, InputControlList_1_System_Object_ controls, MethodInfo * method)); +DO_APP_FUNC(0x00E41350, int32_t, InputSystem_FindControls_2, (String * path, InputControlList_1_System_Object_ * controls, MethodInfo * method)); DO_APP_FUNC(0x00E413F0, Object *, InputSystem_GetDevice_2, (MethodInfo * method)); DO_APP_FUNC(0x00E414D0, Object *, InputSystem_GetDevice_3, (InternedString usage, MethodInfo * method)); DO_APP_FUNC(0x00E41820, Object *, InputSystem_GetDevice_4, (String * usage, MethodInfo * method)); @@ -214402,7 +237977,8 @@ DO_APP_FUNC(0x00E41E30, void, InputSystem_RegisterLayoutMatcher_1, (InputDeviceM DO_APP_FUNC(0x00E41F00, void, InputSystem_RegisterPrecompiledLayout, (String * metadata, MethodInfo * method)); DO_APP_FUNC(0x00E41F80, void, InputSystem_RegisterProcessor_1, (String * name, MethodInfo * method)); DO_APP_FUNC(0x00E42020, float, InputValue_Get_1, (InputValue * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E420E0, Object *, InstantiationParameters_Instantiate, (InstantiationParameters__Boxed * __this, Object * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC258, InputValue_Get_1__MethodInfo); +DO_APP_FUNC(0x00E420E0, Object *, InstantiationParameters_Instantiate, (InstantiationParameters * __this, Object * source, MethodInfo * method)); DO_APP_FUNC(0x00E42350, void, InstructionList_EmitIntSwitch, (InstructionList * __this, Dictionary_2_System_Int32_System_Int32_ * cases, MethodInfo * method)); DO_APP_FUNC(0x00E42350, void, InstructionList_EmitIntSwitch_1, (InstructionList * __this, Dictionary_2_System_Object_System_Int32_ * cases, MethodInfo * method)); DO_APP_FUNC(0x00E423E0, Object *, JitHelpers_UnsafeCast, (Object * o, MethodInfo * method)); @@ -214410,38 +237986,51 @@ DO_APP_FUNC(0x00E423E0, int32_t, JitHelpers_UnsafeEnumCast, (ByteEnum__Enum val, DO_APP_FUNC(0x00E423E0, int32_t, JitHelpers_UnsafeEnumCast_1, (Int32Enum__Enum val, MethodInfo * method)); DO_APP_FUNC(0x00E42400, Object *, JsonParser_FromJson_2, (String * json, MethodInfo * method)); DO_APP_FUNC(0x00E42470, Object *, JsonParser_FromJson_3, (String * json, Type * preferredAnonymousObjectType, MethodInfo * method)); -DO_APP_FUNC(0x00E42750, bool, JsonParser_TryFromJson, (String * json, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x00E427D0, bool, JsonParser_TryFromJson_1, (String * json, Object * value, Type * preferredAnonymousObjectType, MethodInfo * method)); +DO_APP_FUNC(0x00E42750, bool, JsonParser_TryFromJson, (String * json, Object * * value, MethodInfo * method)); +DO_APP_FUNC(0x00E427D0, bool, JsonParser_TryFromJson_1, (String * json, Object * * value, Type * preferredAnonymousObjectType, MethodInfo * method)); DO_APP_FUNC(0x00E42BB0, Object *, JsonTools_Clone, (Object * obj, MethodInfo * method)); DO_APP_FUNC(0x00E42C40, DiagnosticEvent, JsonUtility_FromJson_1, (String * json, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9E030, JsonUtility_FromJson_1__MethodInfo); DO_APP_FUNC(0x00E42D30, Object *, JsonUtility_FromJson_2, (String * json, MethodInfo * method)); DO_APP_FUNC(0x00E42DF0, HID_HIDDeviceDescriptor, JsonUtility_FromJson_3, (String * json, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF280, JsonUtility_FromJson_3__MethodInfo); DO_APP_FUNC(0x00E42EE0, InputActionAsset_ReadFileJson, JsonUtility_FromJson_4, (String * json, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC1428, JsonUtility_FromJson_4__MethodInfo); DO_APP_FUNC(0x00E42FD0, InputActionMap_BindingOverrideListJson, JsonUtility_FromJson_5, (String * json, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC0F48, JsonUtility_FromJson_5__MethodInfo); DO_APP_FUNC(0x00E43090, InputActionMap_ReadFileJson, JsonUtility_FromJson_6, (String * json, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC1280, JsonUtility_FromJson_6__MethodInfo); DO_APP_FUNC(0x00E43170, InputControlLayout_LayoutJson, JsonUtility_FromJson_7, (String * json, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8BE00, JsonUtility_FromJson_7__MethodInfo); DO_APP_FUNC(0x00E432A0, InputControlLayout_LayoutJsonNameAndDescriptorOnly, JsonUtility_FromJson_8, (String * json, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8BD00, JsonUtility_FromJson_8__MethodInfo); DO_APP_FUNC(0x00E433C0, InputDeviceDescription_DeviceDescriptionJson, JsonUtility_FromJson_9, (String * json, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC53E8, JsonUtility_FromJson_9__MethodInfo); DO_APP_FUNC(0x00E434C0, XInputController_Capabilities, JsonUtility_FromJson_10, (String * json, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCD860, JsonUtility_FromJson_10__MethodInfo); DO_APP_FUNC(0x00E435A0, InputRemoting_ChangeUsageMsg_Data, JsonUtility_FromJson_11, (String * json, MethodInfo * method)); DO_APP_FUNC(0x00E43680, InputRemoting_NewDeviceMsg_Data, JsonUtility_FromJson_12, (String * json, MethodInfo * method)); DO_APP_FUNC(0x00E437A0, InputRemoting_NewLayoutMsg_Data, JsonUtility_FromJson_13, (String * json, MethodInfo * method)); DO_APP_FUNC(0x00E43890, Object *, LabelInfo_CommonNode, (Object * first, Object * second, Func_2_Object_Object_ * parent, MethodInfo * method)); -DO_APP_FUNC(0x00E43A00, void, LayoutGroup_SetProperty, (LayoutGroup * __this, bool currentValue, bool newValue, MethodInfo * method)); -DO_APP_FUNC(0x00E43B10, void, LayoutGroup_SetProperty_1, (LayoutGroup * __this, int32_t currentValue, int32_t newValue, MethodInfo * method)); -DO_APP_FUNC(0x00E43BE0, void, LayoutGroup_SetProperty_2, (LayoutGroup * __this, Int32Enum__Enum currentValue, Int32Enum__Enum newValue, MethodInfo * method)); -DO_APP_FUNC(0x00E43C90, void, LayoutGroup_SetProperty_3, (LayoutGroup * __this, Object * currentValue, Object * newValue, MethodInfo * method)); -DO_APP_FUNC(0x00E43D30, void, LayoutGroup_SetProperty_4, (LayoutGroup * __this, float currentValue, float newValue, MethodInfo * method)); -DO_APP_FUNC(0x00E43DC0, void, LayoutGroup_SetProperty_5, (LayoutGroup * __this, Vector2 currentValue, Vector2 newValue, MethodInfo * method)); -DO_APP_FUNC(0x00E43E40, Object *, LazyInitializer_EnsureInitialized, (Object * target, MethodInfo * method)); -DO_APP_FUNC(0x00E43E80, Object *, LazyInitializer_EnsureInitialized_1, (Object * target, Func_1_Object_ * valueFactory, MethodInfo * method)); -DO_APP_FUNC(0x00E43EC0, Object *, LazyInitializer_EnsureInitialized_2, (Object * target, Object * syncLock, Func_1_Object_ * valueFactory, MethodInfo * method)); -DO_APP_FUNC(0x00E43F00, Object *, LazyInitializer_EnsureInitializedCore, (Object * target, MethodInfo * method)); -DO_APP_FUNC(0x00E43FD0, Object *, LazyInitializer_EnsureInitializedCore_1, (Object * target, Func_1_Object_ * valueFactory, MethodInfo * method)); -DO_APP_FUNC(0x00E44070, Object *, LazyInitializer_EnsureInitializedCore_2, (Object * target, Object * syncLock, Func_1_Object_ * valueFactory, MethodInfo * method)); +DO_APP_FUNC(0x00E43A00, void, LayoutGroup_SetProperty, (LayoutGroup * __this, bool * currentValue, bool newValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEE240, LayoutGroup_SetProperty__MethodInfo); +DO_APP_FUNC(0x00E43B10, void, LayoutGroup_SetProperty_1, (LayoutGroup * __this, int32_t * currentValue, int32_t newValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEE220, LayoutGroup_SetProperty_1__MethodInfo); +DO_APP_FUNC(0x00E43BE0, void, LayoutGroup_SetProperty_2, (LayoutGroup * __this, Int32Enum__Enum * currentValue, Int32Enum__Enum newValue, MethodInfo * method)); +DO_APP_FUNC(0x00E43C90, void, LayoutGroup_SetProperty_3, (LayoutGroup * __this, Object * * currentValue, Object * newValue, MethodInfo * method)); +DO_APP_FUNC(0x00E43D30, void, LayoutGroup_SetProperty_4, (LayoutGroup * __this, float * currentValue, float newValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEE230, LayoutGroup_SetProperty_4__MethodInfo); +DO_APP_FUNC(0x00E43DC0, void, LayoutGroup_SetProperty_5, (LayoutGroup * __this, Vector2 * currentValue, Vector2 newValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEE260, LayoutGroup_SetProperty_5__MethodInfo); +DO_APP_FUNC(0x00E43E40, Object *, LazyInitializer_EnsureInitialized, (Object * * target, MethodInfo * method)); +DO_APP_FUNC(0x00E43E80, Object *, LazyInitializer_EnsureInitialized_1, (Object * * target, Func_1_Object_ * valueFactory, MethodInfo * method)); +DO_APP_FUNC(0x00E43EC0, Object *, LazyInitializer_EnsureInitialized_2, (Object * * target, Object * * syncLock, Func_1_Object_ * valueFactory, MethodInfo * method)); +DO_APP_FUNC(0x00E43F00, Object *, LazyInitializer_EnsureInitializedCore, (Object * * target, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC228, LazyInitializer_EnsureInitializedCore__MethodInfo); +DO_APP_FUNC(0x00E43FD0, Object *, LazyInitializer_EnsureInitializedCore_1, (Object * * target, Func_1_Object_ * valueFactory, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC248, LazyInitializer_EnsureInitializedCore_1__MethodInfo); +DO_APP_FUNC(0x00E44070, Object *, LazyInitializer_EnsureInitializedCore_2, (Object * * target, Object * * syncLock, Func_1_Object_ * valueFactory, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC240, LazyInitializer_EnsureInitializedCore_2__MethodInfo); DO_APP_FUNC(0x00E44380, void, LightCompiler_CompileIntSwitchExpression, (LightCompiler * __this, SwitchExpression * node, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C99678, LightCompiler_CompileIntSwitchExpression__MethodInfo); DO_APP_FUNC(0x00E44AC0, void, LightCompiler_CompileIntSwitchExpression_1, (LightCompiler * __this, SwitchExpression * node, MethodInfo * method)); @@ -214508,27 +238097,35 @@ DO_APP_FUNC(0x00E4C170, void, LightLambda_RunVoid6, (LightLambda * __this, Objec DO_APP_FUNC(0x00E4C490, void, LightLambda_RunVoid7, (LightLambda * __this, Object * arg0, Object * arg1, Object * arg2, Object * arg3, Object * arg4, Object * arg5, Object * arg6, MethodInfo * method)); DO_APP_FUNC(0x00E4C810, void, LightLambda_RunVoid8, (LightLambda * __this, Object * arg0, Object * arg1, Object * arg2, Object * arg3, Object * arg4, Object * arg5, Object * arg6, Object * arg7, MethodInfo * method)); DO_APP_FUNC(0x00E4CBF0, void, LightLambda_RunVoid9, (LightLambda * __this, Object * arg0, Object * arg1, Object * arg2, Object * arg3, Object * arg4, Object * arg5, Object * arg6, Object * arg7, Object * arg8, MethodInfo * method)); -DO_APP_FUNC(0x00E4D030, void, LightLambda_RunVoidRef2, (LightLambda * __this, Object * arg0, Object * arg1, MethodInfo * method)); +DO_APP_FUNC(0x00E4D030, void, LightLambda_RunVoidRef2, (LightLambda * __this, Object * * arg0, Object * * arg1, MethodInfo * method)); DO_APP_FUNC(0x00E01890, IEnumerable_1_System_Object_ *, LinqExtensions_DistinctBy, (IEnumerable_1_System_Object_ * source, Func_2_Object_Object_ * keySelector, MethodInfo * method)); DO_APP_FUNC(0x00E022B0, IEnumerable_1_Steamworks_SteamItemDef_t_ *, LinqExtensions_DistinctBy_1, (IEnumerable_1_Steamworks_SteamItemDef_t_ * source, Func_2_Steamworks_SteamItemDef_t_Int32_ * keySelector, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1BDE0, LinqExtensions_DistinctBy_1__MethodInfo); DO_APP_FUNC(0x00E4D490, void, ListExtensions_ClearFast, (List_1_UnityEngine_Color32_ * list, MethodInfo * method)); DO_APP_FUNC(0x00E4D490, void, ListExtensions_ClearFast_1, (List_1_Pathfinding_Connection_ * list, MethodInfo * method)); DO_APP_FUNC(0x00E4D490, void, ListExtensions_ClearFast_2, (List_1_Pathfinding_Int3_ * list, MethodInfo * method)); DO_APP_FUNC(0x00E4D490, void, ListExtensions_ClearFast_3, (List_1_System_Int32_ * list, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8028, ListExtensions_ClearFast_3__MethodInfo); DO_APP_FUNC(0x00E4D490, void, ListExtensions_ClearFast_4, (List_1_Pathfinding_ClipperLib_IntPoint_ * list, MethodInfo * method)); DO_APP_FUNC(0x00E4D490, void, ListExtensions_ClearFast_5, (List_1_Pathfinding_IntRect_ * list, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA488, ListExtensions_ClearFast_5__MethodInfo); DO_APP_FUNC(0x00E4D490, void, ListExtensions_ClearFast_6, (List_1_System_Object_ * list, MethodInfo * method)); DO_APP_FUNC(0x00E4D490, void, ListExtensions_ClearFast_7, (List_1_System_Single_ * list, MethodInfo * method)); DO_APP_FUNC(0x00E4D490, void, ListExtensions_ClearFast_8, (List_1_System_UInt32_ * list, MethodInfo * method)); DO_APP_FUNC(0x00E4D490, void, ListExtensions_ClearFast_9, (List_1_UnityEngine_Vector2_ * list, MethodInfo * method)); DO_APP_FUNC(0x00E4D490, void, ListExtensions_ClearFast_10, (List_1_UnityEngine_Vector3_ * list, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7178, ListExtensions_ClearFast_10__MethodInfo); DO_APP_FUNC(0x00E4D490, void, ListExtensions_ClearFast_11, (List_1_Pathfinding_Funnel_PathPart_ * list, MethodInfo * method)); DO_APP_FUNC(0x00E4D540, Connection__Array *, ListExtensions_ToArrayFromPool, (List_1_Pathfinding_Connection_ * list, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB8180, ListExtensions_ToArrayFromPool__MethodInfo); DO_APP_FUNC(0x00E4D690, Object__Array *, ListExtensions_ToArrayFromPool_1, (List_1_System_Object_ * list, MethodInfo * method)); -DO_APP_FUNC(0x00E4D7C0, int32_t, ListTools_AddAndCreateList, (IList_1_Rewired_ControllerTemplateElementTarget_ * list, ControllerTemplateElementTarget item, MethodInfo * method)); -DO_APP_FUNC(0x00E4D960, int32_t, ListTools_AddAndCreateList_1, (IList_1_System_Object_ * list, Object * item, MethodInfo * method)); +DO_APP_FUNC(0x00E4D7C0, int32_t, ListTools_AddAndCreateList, (IList_1_Rewired_ControllerTemplateElementTarget_ * * list, ControllerTemplateElementTarget item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDB70, ListTools_AddAndCreateList__MethodInfo); +DO_APP_FUNC(0x00E4D960, int32_t, ListTools_AddAndCreateList_1, (IList_1_System_Object_ * * list, Object * item, MethodInfo * method)); DO_APP_FUNC(0x00E4DA90, bool, ListTools_AddIfUnique, (IList_1_System_Object_ * list, Object * item, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03EC0, ListTools_AddIfUnique__MethodInfo); DO_APP_FUNC(0x00E4DB30, List_1_System_Int32_ *, ListTools_Combine, (IList_1_System_Int32_ * list1, IList_1_System_Int32_ * list2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF4BD0, ListTools_Combine__MethodInfo); DO_APP_FUNC(0x00E4DDC0, List_1_System_Object_ *, ListTools_Combine_1, (IList_1_System_Object_ * list1, IList_1_System_Object_ * list2, MethodInfo * method)); DO_APP_FUNC(0x00E4E050, void, ListTools_Concat, (IList_1_System_Object_ * list1, IList_1_System_Object_ * list2, MethodInfo * method)); DO_APP_FUNC(0x00E4E260, List_1_System_Object_ *, ListTools_ConvertToObjeclist, (IList_1_System_Object_ * list, MethodInfo * method)); @@ -214540,6 +238137,7 @@ DO_APP_FUNC(0x00E4E890, Object *, ListTools_Find, (IList_1_System_Object_ * list DO_APP_FUNC(0x00E4E990, bool, ListTools_IsNullOrEmpty, (IList_1_System_Object_ * list, MethodInfo * method)); DO_APP_FUNC(0x00E4EAD0, bool, ListTools_OffsetAtIndex, (IList_1_System_Object_ * list, int32_t index, bool offsetDown, bool offsetNow, MethodInfo * method)); DO_APP_FUNC(0x00E4EC60, List_1_System_Int32_ *, ListTools_ShallowCopy, (List_1_System_Int32_ * list, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF6988, ListTools_ShallowCopy__MethodInfo); DO_APP_FUNC(0x00E4ED60, List_1_System_Object_ *, ListTools_ShallowCopy_1, (List_1_System_Object_ * list, MethodInfo * method)); DO_APP_FUNC(0x00E4EE60, Object__Array *, ListTools_ToArray, (IList_1_System_Object_ * list, MethodInfo * method)); DO_APP_FUNC(0x00E4F040, void, ListTools_TryClear, (IList_1_System_Object_ * list, MethodInfo * method)); @@ -214556,15 +238154,20 @@ DO_APP_FUNC(0x00E4F910, void, LocalVoicePlayerState_OnChannelOpened, (LocalVoice DO_APP_FUNC(0x00E4FA00, void, LocalVoicePlayerState_OnChannelOpened_1, (LocalVoicePlayerState * __this, RoomName channel, ChannelProperties * properties, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8F108, LocalVoicePlayerState_OnChannelOpened_1__MethodInfo); DO_APP_FUNC(0x00E4FAF0, bool, Log_AssertAndLogError_1, (Log * __this, bool assertion, String * guid, String * format, int32_t arg0, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCAD70, Log_AssertAndLogError_1__MethodInfo); DO_APP_FUNC(0x00E4FBE0, bool, Log_AssertAndLogError_2, (Log * __this, bool assertion, String * guid, String * format, Object * arg0, MethodInfo * method)); DO_APP_FUNC(0x00E4FC90, bool, Log_AssertAndLogError_3, (Log * __this, bool assertion, String * guid, String * format, Object * arg0, Object * arg1, MethodInfo * method)); DO_APP_FUNC(0x00E4FD50, bool, Log_AssertAndLogWarn_1, (Log * __this, bool assertion, String * format, Object * arg0, MethodInfo * method)); DO_APP_FUNC(0x00E4FDA0, void, Log_AssertAndThrowPossibleBug_1, (Log * __this, bool assertion, String * guid, String * format, Object * arg0, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC1E8, Log_AssertAndThrowPossibleBug_1__MethodInfo); DO_APP_FUNC(0x00E4FE00, void, Log_AssertAndThrowPossibleBug_2, (Log * __this, bool assertion, String * guid, String * format, uint16_t arg0, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8E5E8, Log_AssertAndThrowPossibleBug_2__MethodInfo); DO_APP_FUNC(0x00E4FE80, void, Log_AssertAndThrowPossibleBug_3, (Log * __this, bool assertion, String * guid, String * format, Object * arg0, Object * arg1, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC1E0, Log_AssertAndThrowPossibleBug_3__MethodInfo); DO_APP_FUNC(0x00E4FEE0, void, Log_AssertAndThrowPossibleBug_4, (Log * __this, bool assertion, String * guid, String * format, Object * arg0, Object * arg1, Object * arg2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC1D8, Log_AssertAndThrowPossibleBug_4__MethodInfo); DO_APP_FUNC(0x00E4FF50, Exception *, Log_CreatePossibleBugException_1, (Log * __this, Func_2_String_Object_ * factory, String * problem, String * guid, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC1C8, Log_CreatePossibleBugException_1__MethodInfo); DO_APP_FUNC(0x00E4FFF0, void, Log_Debug_1, (Log * __this, String * format, Object * p0, MethodInfo * method)); DO_APP_FUNC(0x00E50020, void, Log_Debug_2, (Log * __this, String * format, Object * p0, Object * p1, MethodInfo * method)); DO_APP_FUNC(0x00E50050, void, Log_Debug_3, (Log * __this, String * format, Object * p0, Object * p1, Object * p2, MethodInfo * method)); @@ -214582,6 +238185,7 @@ DO_APP_FUNC(0x00E50340, void, Log_Error_5, (Log * __this, String * format, Objec DO_APP_FUNC(0x00E50370, void, Log_Error_6, (Log * __this, String * format, Object * p0, Object * p1, Object * p2, MethodInfo * method)); DO_APP_FUNC(0x00E503B0, void, Log_Info_1, (Log * __this, String * format, Object * p0, MethodInfo * method)); DO_APP_FUNC(0x00E503E0, void, Log_Info_2, (Log * __this, String * format, uint32_t p0, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCDC0, Log_Info_2__MethodInfo); DO_APP_FUNC(0x00E50410, void, Log_Info_3, (Log * __this, String * format, Object * p0, int32_t p1, MethodInfo * method)); DO_APP_FUNC(0x00E50410, void, Log_Info_4, (Log * __this, String * format, Object * p0, Int32Enum__Enum p1, MethodInfo * method)); DO_APP_FUNC(0x00E50440, void, Log_Info_5, (Log * __this, String * format, Object * p0, Object * p1, MethodInfo * method)); @@ -214596,6 +238200,7 @@ DO_APP_FUNC(0x00E50650, void, Log_Warn_1, (Log * __this, String * format, int32_ DO_APP_FUNC_METHODINFO(0x03C937A8, Log_Warn_1__MethodInfo); DO_APP_FUNC(0x00E50680, void, Log_Warn_2, (Log * __this, String * format, Object * p0, MethodInfo * method)); DO_APP_FUNC(0x00E506B0, void, Log_Warn_3, (Log * __this, String * format, uint16_t p0, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF16F8, Log_Warn_3__MethodInfo); DO_APP_FUNC(0x00E50650, void, Log_Warn_4, (Log * __this, String * format, uint32_t p0, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C93778, Log_Warn_4__MethodInfo); DO_APP_FUNC(0x00E506E0, void, Log_Warn_5, (Log * __this, String * format, int32_t p0, double p1, MethodInfo * method)); @@ -214607,6 +238212,7 @@ DO_APP_FUNC(0x00E50770, void, Log_Warn_8, (Log * __this, String * format, float DO_APP_FUNC_METHODINFO(0x03C93620, Log_Warn_8__MethodInfo); DO_APP_FUNC(0x00E507A0, void, Log_Warn_9, (Log * __this, String * format, uint16_t p0, Object * p1, MethodInfo * method)); DO_APP_FUNC(0x00E50710, void, Log_Warn_10, (Log * __this, String * format, uint32_t p0, uint32_t p1, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCD48, Log_Warn_10__MethodInfo); DO_APP_FUNC(0x00E507D0, void, Log_Warn_11, (Log * __this, String * format, ByteEnum__Enum p0, uint32_t p1, uint32_t p2, MethodInfo * method)); DO_APP_FUNC(0x00E50810, void, Log_Warn_12, (Log * __this, String * format, Object * p0, Object * p1, Object * p2, MethodInfo * method)); DO_APP_FUNC(0x00E50850, void, Log_Warn_13, (Log * __this, String * format, uint32_t p0, uint32_t p1, float p2, MethodInfo * method)); @@ -214643,8 +238249,11 @@ DO_APP_FUNC(0x00E526E0, void, Log_WriteLogFormat_24, (Log * __this, LogLevel__En DO_APP_FUNC(0x00E529F0, bool, Log_1_AssertAndLogError_1, (Log_1 * __this, bool assertion, String * guid, String * format, Object * arg0, MethodInfo * method)); DO_APP_FUNC(0x00E4FD50, bool, Log_1_AssertAndLogWarn_1, (Log_1 * __this, bool assertion, String * format, Object * arg0, MethodInfo * method)); DO_APP_FUNC(0x00E52AA0, void, Log_1_AssertAndThrowPossibleBug_1, (Log_1 * __this, bool assertion, String * guid, String * format, Object * arg0, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC1C0, Log_1_AssertAndThrowPossibleBug_1__MethodInfo); DO_APP_FUNC(0x00E52B00, void, Log_1_AssertAndThrowPossibleBug_2, (Log_1 * __this, bool assertion, String * guid, String * format, Object * arg0, Object * arg1, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC1B8, Log_1_AssertAndThrowPossibleBug_2__MethodInfo); DO_APP_FUNC(0x00E52B60, void, Log_1_AssertAndThrowPossibleBug_3, (Log_1 * __this, bool assertion, String * guid, String * format, Object * arg0, Object * arg1, Object * arg2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC1B0, Log_1_AssertAndThrowPossibleBug_3__MethodInfo); DO_APP_FUNC(0x00E52BD0, Object *, Log_1_CreatePossibleBugException_1, (Log_1 * __this, Func_2_String_Object_ * factory, String * problem, String * guid, MethodInfo * method)); DO_APP_FUNC(0x00E4FFF0, void, Log_1_Debug_2, (Log_1 * __this, String * format, Object * p0, MethodInfo * method)); DO_APP_FUNC(0x00E50020, void, Log_1_Debug_3, (Log_1 * __this, String * format, Object * p0, Object * p1, MethodInfo * method)); @@ -214668,168 +238277,257 @@ DO_APP_FUNC(0x00E53050, void, Log_1_WriteLogFormat_5, (Log_1 * __this, LogLevel_ DO_APP_FUNC(0x00E53140, ValueTask_1_System_Object_, ManagedWebSocket_ReceiveAsyncPrivate, (ManagedWebSocket * __this, Memory_1_Byte_ payloadBuffer, CancellationToken cancellationToken, ManagedWebSocket_WebSocketReceiveResultGetter resultGetter, MethodInfo * method)); DO_APP_FUNC(0x00E533E0, Object *, Marshal_GetDelegateForFunctionPointer_1, (void * ptr, MethodInfo * method)); DO_APP_FUNC(0x00E534D0, void *, Marshal_GetFunctionPointerForDelegate_1, (Object * d, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC198, Marshal_GetFunctionPointerForDelegate_1__MethodInfo); DO_APP_FUNC(0x00E535C0, NativeAnchorData, Marshal_PtrToStructure_2, (void * ptr, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8F1C0, Marshal_PtrToStructure_2__MethodInfo); DO_APP_FUNC(0x00E536C0, Object *, Marshal_PtrToStructure_3, (void * ptr, MethodInfo * method)); DO_APP_FUNC(0x00E537B0, Win32_FIXED_INFO, Marshal_PtrToStructure_4, (void * ptr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F160, Marshal_PtrToStructure_4__MethodInfo); DO_APP_FUNC(0x00E538E0, Win32_IP_ADAPTER_ADDRESSES, Marshal_PtrToStructure_5, (void * ptr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F1A8, Marshal_PtrToStructure_5__MethodInfo); DO_APP_FUNC(0x00E53A50, Win32_IP_ADAPTER_INFO, Marshal_PtrToStructure_6, (void * ptr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1F120, Marshal_PtrToStructure_6__MethodInfo); DO_APP_FUNC(0x00E53BB0, void, Marshal_PtrToStructure_7, (void * ptr, Object * structure, MethodInfo * method)); DO_APP_FUNC(0x00E53CB0, int32_t, Marshal_SizeOf_2, (MethodInfo * method)); DO_APP_FUNC(0x00E53D40, int32_t, Marshal_SizeOf_3, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA8E8, Marshal_SizeOf_3__MethodInfo); DO_APP_FUNC(0x00E53DD0, int32_t, Marshal_SizeOf_4, (MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C94BF8, Marshal_SizeOf_4__MethodInfo); DO_APP_FUNC(0x00E53E60, int32_t, Marshal_SizeOf_5, (Object * structure, MethodInfo * method)); DO_APP_FUNC(0x00E53ED0, int32_t, Marshal_SizeOf_6, (AchievementManager_FFIEvents structure, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05698, Marshal_SizeOf_6__MethodInfo); DO_APP_FUNC(0x00E53F50, int32_t, Marshal_SizeOf_7, (ActivityManager_FFIEvents structure, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05688, Marshal_SizeOf_7__MethodInfo); DO_APP_FUNC(0x00E53FD0, int32_t, Marshal_SizeOf_8, (ApplicationManager_FFIEvents structure, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05650, Marshal_SizeOf_8__MethodInfo); DO_APP_FUNC(0x00E54050, int32_t, Marshal_SizeOf_9, (Discord_FFIEvents structure, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05660, Marshal_SizeOf_9__MethodInfo); DO_APP_FUNC(0x00E540D0, int32_t, Marshal_SizeOf_10, (ImageManager_FFIEvents structure, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05678, Marshal_SizeOf_10__MethodInfo); DO_APP_FUNC(0x00E54150, int32_t, Marshal_SizeOf_11, (LobbyManager_FFIEvents structure, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05680, Marshal_SizeOf_11__MethodInfo); DO_APP_FUNC(0x00E541D0, int32_t, Marshal_SizeOf_12, (NativeMethods_SECURITY_ATTRIBUTES structure, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0BCE0, Marshal_SizeOf_12__MethodInfo); DO_APP_FUNC(0x00E54250, int32_t, Marshal_SizeOf_13, (NetworkManager_FFIEvents structure, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05638, Marshal_SizeOf_13__MethodInfo); DO_APP_FUNC(0x00E542D0, int32_t, Marshal_SizeOf_14, (OverlayManager_FFIEvents structure, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05670, Marshal_SizeOf_14__MethodInfo); DO_APP_FUNC(0x00E54350, int32_t, Marshal_SizeOf_15, (RelationshipManager_FFIEvents structure, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05658, Marshal_SizeOf_15__MethodInfo); DO_APP_FUNC(0x00E543D0, int32_t, Marshal_SizeOf_16, (StorageManager_FFIEvents structure, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05640, Marshal_SizeOf_16__MethodInfo); DO_APP_FUNC(0x00E54450, int32_t, Marshal_SizeOf_17, (StoreManager_FFIEvents structure, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05668, Marshal_SizeOf_17__MethodInfo); DO_APP_FUNC(0x00E544D0, int32_t, Marshal_SizeOf_18, (UserManager_FFIEvents structure, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05648, Marshal_SizeOf_18__MethodInfo); DO_APP_FUNC(0x00E54550, int32_t, Marshal_SizeOf_19, (VoiceManager_FFIEvents structure, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05690, Marshal_SizeOf_19__MethodInfo); DO_APP_FUNC(0x00E545D0, void, Marshal_StructureToPtr_1, (Object * structure, void * ptr, bool fDeleteOld, MethodInfo * method)); DO_APP_FUNC(0x00E54640, void, Marshal_StructureToPtr_2, (AchievementManager_FFIEvents structure, void * ptr, bool fDeleteOld, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C4B0, Marshal_StructureToPtr_2__MethodInfo); DO_APP_FUNC(0x00E546F0, void, Marshal_StructureToPtr_3, (ActivityManager_FFIEvents structure, void * ptr, bool fDeleteOld, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF248, Marshal_StructureToPtr_3__MethodInfo); DO_APP_FUNC(0x00E547B0, void, Marshal_StructureToPtr_4, (ApplicationManager_FFIEvents structure, void * ptr, bool fDeleteOld, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D054F0, Marshal_StructureToPtr_4__MethodInfo); DO_APP_FUNC(0x00E54850, void, Marshal_StructureToPtr_5, (Discord_FFIEvents structure, void * ptr, bool fDeleteOld, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05628, Marshal_StructureToPtr_5__MethodInfo); DO_APP_FUNC(0x00E548F0, void, Marshal_StructureToPtr_6, (ImageManager_FFIEvents structure, void * ptr, bool fDeleteOld, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D053B8, Marshal_StructureToPtr_6__MethodInfo); DO_APP_FUNC(0x00E54990, void, Marshal_StructureToPtr_7, (LobbyManager_FFIEvents structure, void * ptr, bool fDeleteOld, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05200, Marshal_StructureToPtr_7__MethodInfo); DO_APP_FUNC(0x00E54A60, void, Marshal_StructureToPtr_8, (NetworkManager_FFIEvents structure, void * ptr, bool fDeleteOld, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04EC8, Marshal_StructureToPtr_8__MethodInfo); DO_APP_FUNC(0x00E54B10, void, Marshal_StructureToPtr_9, (OverlayManager_FFIEvents structure, void * ptr, bool fDeleteOld, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04E00, Marshal_StructureToPtr_9__MethodInfo); DO_APP_FUNC(0x00E54BC0, void, Marshal_StructureToPtr_10, (RelationshipManager_FFIEvents structure, void * ptr, bool fDeleteOld, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05330, Marshal_StructureToPtr_10__MethodInfo); DO_APP_FUNC(0x00E54C70, void, Marshal_StructureToPtr_11, (StorageManager_FFIEvents structure, void * ptr, bool fDeleteOld, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C8E8, Marshal_StructureToPtr_11__MethodInfo); DO_APP_FUNC(0x00E54D10, void, Marshal_StructureToPtr_12, (StoreManager_FFIEvents structure, void * ptr, bool fDeleteOld, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C778, Marshal_StructureToPtr_12__MethodInfo); DO_APP_FUNC(0x00E54DC0, void, Marshal_StructureToPtr_13, (UserManager_FFIEvents structure, void * ptr, bool fDeleteOld, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D05440, Marshal_StructureToPtr_13__MethodInfo); DO_APP_FUNC(0x00E54E70, void, Marshal_StructureToPtr_14, (VoiceManager_FFIEvents structure, void * ptr, bool fDeleteOld, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0C5F0, Marshal_StructureToPtr_14__MethodInfo); DO_APP_FUNC(0x00E54F20, void *, Marshal_UnsafeAddrOfPinnedArrayElement_1, (Byte__Array * arr, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E550, Marshal_UnsafeAddrOfPinnedArrayElement_1__MethodInfo); DO_APP_FUNC(0x00E54F90, void *, Marshal_UnsafeAddrOfPinnedArrayElement_2, (Object__Array * arr, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x00E55000, void, Math_ThrowMinMaxException, (int32_t min, int32_t max, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC188, Math_ThrowMinMaxException__MethodInfo); DO_APP_FUNC(0x00E550C0, void, Math_ThrowMinMaxException_1, (Object * min, Object * max, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC180, Math_ThrowMinMaxException_1__MethodInfo); DO_APP_FUNC(0x00E55140, void, Memory_MemSet, (Boolean__Array * array, bool value, int32_t byteSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA740, Memory_MemSet__MethodInfo); DO_APP_FUNC(0x00E552A0, void, Memory_MemSet_1, (Int32__Array * array, int32_t value, int32_t byteSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA850, Memory_MemSet_1__MethodInfo); DO_APP_FUNC(0x00E55400, void, Memory_MemSet_2, (UInt16__Array * array, uint16_t value, int32_t byteSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA7B8, Memory_MemSet_2__MethodInfo); DO_APP_FUNC(0x00E55560, void, Memory_MemSet_3, (UInt16__Array * array, uint16_t value, int32_t totalSize, int32_t byteSize, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA710, Memory_MemSet_3__MethodInfo); DO_APP_FUNC(0x00E556C0, Int3__Array *, Memory_ShrinkArray, (Int3__Array * arr, int32_t newLength, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA820, Memory_ShrinkArray__MethodInfo); DO_APP_FUNC(0x00E55840, Int32__Array *, Memory_ShrinkArray_1, (Int32__Array * arr, int32_t newLength, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBA840, Memory_ShrinkArray_1__MethodInfo); DO_APP_FUNC(0x00E559C0, Object__Array *, Memory_ShrinkArray_2, (Object__Array * arr, int32_t newLength, MethodInfo * method)); -DO_APP_FUNC(0x00E55B40, void, Memory_Swap, (int32_t a, int32_t b, MethodInfo * method)); -DO_APP_FUNC(0x00DC7320, void, Memory_Swap_1, (Object * a, Object * b, MethodInfo * method)); +DO_APP_FUNC(0x00E55B40, void, Memory_Swap, (int32_t * a, int32_t * b, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB7F20, Memory_Swap__MethodInfo); +DO_APP_FUNC(0x00DC7320, void, Memory_Swap_1, (Object * * a, Object * * b, MethodInfo * method)); DO_APP_FUNC(0x00E55B50, Span_1_Byte_, MemoryExtensions_AsSpan_3, (Byte__Array * array, int32_t start, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0DB50, MemoryExtensions_AsSpan_3__MethodInfo); DO_APP_FUNC(0x00E55BE0, Span_1_Object_, MemoryExtensions_AsSpan_4, (Object__Array * array, int32_t start, MethodInfo * method)); DO_APP_FUNC(0x00E55CD0, Span_1_Byte_, MemoryExtensions_AsSpan_5, (Byte__Array * array, int32_t start, int32_t length, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEAD20, MemoryExtensions_AsSpan_5__MethodInfo); DO_APP_FUNC(0x00E55D70, Span_1_Char_, MemoryExtensions_AsSpan_6, (Char__Array * array, int32_t start, int32_t length, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEEA0, MemoryExtensions_AsSpan_6__MethodInfo); DO_APP_FUNC(0x00E55E10, Span_1_Object_, MemoryExtensions_AsSpan_7, (Object__Array * array, int32_t start, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x00E55E40, void, MemoryExtensions_CopyTo, (Byte__Array * source, Span_1_Byte_ destination, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E560, MemoryExtensions_CopyTo__MethodInfo); DO_APP_FUNC(0x00E55E40, void, MemoryExtensions_CopyTo_1, (Object__Array * source, Span_1_Object_ destination, MethodInfo * method)); DO_APP_FUNC(0x00E55F30, bool, MemoryExtensions_EndsWith_1, (ReadOnlySpan_1_Char_ span, ReadOnlySpan_1_Char_ value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02998, MemoryExtensions_EndsWith_1__MethodInfo); DO_APP_FUNC(0x00E56140, bool, MemoryExtensions_EndsWith_2, (ReadOnlySpan_1_Object_ span, ReadOnlySpan_1_Object_ value, MethodInfo * method)); DO_APP_FUNC(0x00E561F0, int32_t, MemoryExtensions_IndexOf, (ReadOnlySpan_1_Char_ span, uint16_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02B38, MemoryExtensions_IndexOf__MethodInfo); DO_APP_FUNC(0x00E56370, int32_t, MemoryExtensions_IndexOf_1, (ReadOnlySpan_1_Object_ span, Object * value, MethodInfo * method)); DO_APP_FUNC(0x00E564F0, int32_t, MemoryExtensions_IndexOfAny, (ReadOnlySpan_1_Char_ span, ReadOnlySpan_1_Char_ values, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFF778, MemoryExtensions_IndexOfAny__MethodInfo); DO_APP_FUNC(0x00E56630, int32_t, MemoryExtensions_IndexOfAny_1, (ReadOnlySpan_1_Object_ span, ReadOnlySpan_1_Object_ values, MethodInfo * method)); -DO_APP_FUNC(0x00E56770, bool, MemoryExtensions_IsTypeComparableAsBytes, (uint64_t size, MethodInfo * method)); -DO_APP_FUNC(0x00E56B00, bool, MemoryExtensions_IsTypeComparableAsBytes_1, (uint64_t size, MethodInfo * method)); -DO_APP_FUNC(0x00E56E90, bool, MemoryExtensions_IsTypeComparableAsBytes_2, (uint64_t size, MethodInfo * method)); +DO_APP_FUNC(0x00E56770, bool, MemoryExtensions_IsTypeComparableAsBytes, (uint64_t * size, MethodInfo * method)); +DO_APP_FUNC(0x00E56B00, bool, MemoryExtensions_IsTypeComparableAsBytes_1, (uint64_t * size, MethodInfo * method)); +DO_APP_FUNC(0x00E56E90, bool, MemoryExtensions_IsTypeComparableAsBytes_2, (uint64_t * size, MethodInfo * method)); DO_APP_FUNC(0x00E57220, bool, MemoryExtensions_SequenceEqual, (ReadOnlySpan_1_Byte_ span, ReadOnlySpan_1_Byte_ other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD9880, MemoryExtensions_SequenceEqual__MethodInfo); DO_APP_FUNC(0x00E57220, bool, MemoryExtensions_SequenceEqual_1, (ReadOnlySpan_1_Char_ span, ReadOnlySpan_1_Char_ other, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C960A0, MemoryExtensions_SequenceEqual_1__MethodInfo); DO_APP_FUNC(0x00E57340, bool, MemoryExtensions_SequenceEqual_2, (ReadOnlySpan_1_Object_ span, ReadOnlySpan_1_Object_ other, MethodInfo * method)); DO_APP_FUNC(0x00E573F0, bool, MemoryExtensions_StartsWith, (ReadOnlySpan_1_Char_ span, ReadOnlySpan_1_Char_ value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02928, MemoryExtensions_StartsWith__MethodInfo); DO_APP_FUNC(0x00E57510, bool, MemoryExtensions_StartsWith_1, (ReadOnlySpan_1_Object_ span, ReadOnlySpan_1_Object_ value, MethodInfo * method)); -DO_APP_FUNC(0x00DC7320, void, MemoryHelpers_Swap, (Object * a, Object * b, MethodInfo * method)); -DO_APP_FUNC(0x00E575C0, void, MemoryHelpers_Swap_1, (float a, float b, MethodInfo * method)); -DO_APP_FUNC(0x00E575D0, void, MemoryHelpers_Swap_2, (InputManager_StateChangeMonitorListener a, InputManager_StateChangeMonitorListener b, MethodInfo * method)); -DO_APP_FUNC(0x00E576B0, void, MemoryHelpers_Swap_3, (MemoryHelpers_BitRegion a, MemoryHelpers_BitRegion b, MethodInfo * method)); +DO_APP_FUNC(0x00DC7320, void, MemoryHelpers_Swap, (Object * * a, Object * * b, MethodInfo * method)); +DO_APP_FUNC(0x00E575C0, void, MemoryHelpers_Swap_1, (float * a, float * b, MethodInfo * method)); +DO_APP_FUNC(0x00E575D0, void, MemoryHelpers_Swap_2, (InputManager_StateChangeMonitorListener * a, InputManager_StateChangeMonitorListener * b, MethodInfo * method)); +DO_APP_FUNC(0x00E576B0, void, MemoryHelpers_Swap_3, (MemoryHelpers_BitRegion * a, MemoryHelpers_BitRegion * b, MethodInfo * method)); DO_APP_FUNC(0x00E576C0, Span_1_Byte_, MemoryMarshal_AsBytes, (Span_1_Char_ span, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC170, MemoryMarshal_AsBytes__MethodInfo); DO_APP_FUNC(0x00E577A0, ReadOnlySpan_1_Byte_, MemoryMarshal_AsBytes_1, (ReadOnlySpan_1_UInt16_ span, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC160, MemoryMarshal_AsBytes_1__MethodInfo); DO_APP_FUNC(0x00E57880, ReadOnlySpan_1_Byte_, MemoryMarshal_AsBytes_2, (ReadOnlySpan_1_UInt32_ span, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC168, MemoryMarshal_AsBytes_2__MethodInfo); DO_APP_FUNC(0x00C2FFD0, Memory_1_Byte_, MemoryMarshal_AsMemory, (ReadOnlyMemory_1_Byte_ memory, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1ED60, MemoryMarshal_AsMemory__MethodInfo); DO_APP_FUNC(0x00C2FFD0, Memory_1_Object_, MemoryMarshal_AsMemory_1, (ReadOnlyMemory_1_Object_ memory, MethodInfo * method)); -DO_APP_FUNC(0x00E57960, ReadOnlySpan_1_Char_, MemoryMarshal_CreateReadOnlySpan, (uint16_t reference, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x00E57960, ReadOnlySpan_1_Object_, MemoryMarshal_CreateReadOnlySpan_1, (Object * reference, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x00E57960, ReadOnlySpan_1_UInt32_, MemoryMarshal_CreateReadOnlySpan_2, (uint32_t reference, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x00E57980, uint8_t, MemoryMarshal_GetNonNullPinnableReference, (ReadOnlySpan_1_Byte_ span, MethodInfo * method)); +DO_APP_FUNC(0x00E57960, ReadOnlySpan_1_Char_, MemoryMarshal_CreateReadOnlySpan, (uint16_t * reference, int32_t length, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D01E18, MemoryMarshal_CreateReadOnlySpan__MethodInfo); +DO_APP_FUNC(0x00E57960, ReadOnlySpan_1_Object_, MemoryMarshal_CreateReadOnlySpan_1, (Object * * reference, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x00E57960, ReadOnlySpan_1_UInt32_, MemoryMarshal_CreateReadOnlySpan_2, (uint32_t * reference, int32_t length, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFA278, MemoryMarshal_CreateReadOnlySpan_2__MethodInfo); +DO_APP_FUNC(0x00E57980, uint8_t *, MemoryMarshal_GetNonNullPinnableReference, (ReadOnlySpan_1_Byte_ span, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C98B80, MemoryMarshal_GetNonNullPinnableReference__MethodInfo); -DO_APP_FUNC(0x00E57980, uint16_t, MemoryMarshal_GetNonNullPinnableReference_1, (Span_1_Char_ span, MethodInfo * method)); -DO_APP_FUNC(0x00E57980, Object *, MemoryMarshal_GetNonNullPinnableReference_2, (ReadOnlySpan_1_Object_ span, MethodInfo * method)); -DO_APP_FUNC(0x00E57980, Object *, MemoryMarshal_GetNonNullPinnableReference_3, (Span_1_Object_ span, MethodInfo * method)); -DO_APP_FUNC(0x00471910, uint8_t, MemoryMarshal_GetReference, (ReadOnlySpan_1_Byte_ span, MethodInfo * method)); +DO_APP_FUNC(0x00E57980, uint16_t *, MemoryMarshal_GetNonNullPinnableReference_1, (Span_1_Char_ span, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10E80, MemoryMarshal_GetNonNullPinnableReference_1__MethodInfo); +DO_APP_FUNC(0x00E57980, Object * *, MemoryMarshal_GetNonNullPinnableReference_2, (ReadOnlySpan_1_Object_ span, MethodInfo * method)); +DO_APP_FUNC(0x00E57980, Object * *, MemoryMarshal_GetNonNullPinnableReference_3, (Span_1_Object_ span, MethodInfo * method)); +DO_APP_FUNC(0x00471910, uint8_t *, MemoryMarshal_GetReference, (ReadOnlySpan_1_Byte_ span, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CAB340, MemoryMarshal_GetReference__MethodInfo); -DO_APP_FUNC(0x00471910, uint8_t, MemoryMarshal_GetReference_1, (Span_1_Byte_ span, MethodInfo * method)); +DO_APP_FUNC(0x00471910, uint8_t *, MemoryMarshal_GetReference_1, (Span_1_Byte_ span, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C97548, MemoryMarshal_GetReference_1__MethodInfo); -DO_APP_FUNC(0x00471910, uint16_t, MemoryMarshal_GetReference_2, (ReadOnlySpan_1_Char_ span, MethodInfo * method)); +DO_APP_FUNC(0x00471910, uint16_t *, MemoryMarshal_GetReference_2, (ReadOnlySpan_1_Char_ span, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C94918, MemoryMarshal_GetReference_2__MethodInfo); -DO_APP_FUNC(0x00471910, uint16_t, MemoryMarshal_GetReference_3, (Span_1_Char_ span, MethodInfo * method)); +DO_APP_FUNC(0x00471910, uint16_t *, MemoryMarshal_GetReference_3, (Span_1_Char_ span, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C94A68, MemoryMarshal_GetReference_3__MethodInfo); -DO_APP_FUNC(0x00471910, Object *, MemoryMarshal_GetReference_4, (ReadOnlySpan_1_Object_ span, MethodInfo * method)); -DO_APP_FUNC(0x00471910, Object *, MemoryMarshal_GetReference_5, (Span_1_Object_ span, MethodInfo * method)); -DO_APP_FUNC(0x00471910, uint16_t, MemoryMarshal_GetReference_6, (ReadOnlySpan_1_UInt16_ span, MethodInfo * method)); -DO_APP_FUNC(0x00471910, uint32_t, MemoryMarshal_GetReference_7, (ReadOnlySpan_1_UInt32_ span, MethodInfo * method)); -DO_APP_FUNC(0x00E57990, bool, MemoryMarshal_TryGetArray, (ReadOnlyMemory_1_Byte_ memory, ArraySegment_1_Byte_ segment, MethodInfo * method)); -DO_APP_FUNC(0x00E57990, bool, MemoryMarshal_TryGetArray_1, (ReadOnlyMemory_1_Object_ memory, ArraySegment_1_Object_ segment, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Object * *, MemoryMarshal_GetReference_4, (ReadOnlySpan_1_Object_ span, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Object * *, MemoryMarshal_GetReference_5, (Span_1_Object_ span, MethodInfo * method)); +DO_APP_FUNC(0x00471910, uint16_t *, MemoryMarshal_GetReference_6, (ReadOnlySpan_1_UInt16_ span, MethodInfo * method)); +DO_APP_FUNC(0x00471910, uint32_t *, MemoryMarshal_GetReference_7, (ReadOnlySpan_1_UInt32_ span, MethodInfo * method)); +DO_APP_FUNC(0x00E57990, bool, MemoryMarshal_TryGetArray, (ReadOnlyMemory_1_Byte_ memory, ArraySegment_1_Byte_ * segment, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEF78, MemoryMarshal_TryGetArray__MethodInfo); +DO_APP_FUNC(0x00E57990, bool, MemoryMarshal_TryGetArray_1, (ReadOnlyMemory_1_Object_ memory, ArraySegment_1_Object_ * segment, MethodInfo * method)); DO_APP_FUNC(0x00E57D20, Color__Array *, Mesh_GetAllocArrayFromChannel, (Mesh * __this, VertexAttribute__Enum channel, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03B98, Mesh_GetAllocArrayFromChannel__MethodInfo); DO_APP_FUNC(0x00E57D20, Object__Array *, Mesh_GetAllocArrayFromChannel_1, (Mesh * __this, VertexAttribute__Enum channel, MethodInfo * method)); DO_APP_FUNC(0x00E57D20, Vector2__Array *, Mesh_GetAllocArrayFromChannel_2, (Mesh * __this, VertexAttribute__Enum channel, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03BF8, Mesh_GetAllocArrayFromChannel_2__MethodInfo); DO_APP_FUNC(0x00E57D20, Vector3__Array *, Mesh_GetAllocArrayFromChannel_3, (Mesh * __this, VertexAttribute__Enum channel, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03C70, Mesh_GetAllocArrayFromChannel_3__MethodInfo); DO_APP_FUNC(0x00E57D20, Vector4__Array *, Mesh_GetAllocArrayFromChannel_4, (Mesh * __this, VertexAttribute__Enum channel, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03C90, Mesh_GetAllocArrayFromChannel_4__MethodInfo); DO_APP_FUNC(0x00E57D70, Color__Array *, Mesh_GetAllocArrayFromChannel_5, (Mesh * __this, VertexAttribute__Enum channel, VertexAttributeFormat__Enum format, int32_t dim, MethodInfo * method)); DO_APP_FUNC(0x00E57D70, Color32__Array *, Mesh_GetAllocArrayFromChannel_6, (Mesh * __this, VertexAttribute__Enum channel, VertexAttributeFormat__Enum format, int32_t dim, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03BA0, Mesh_GetAllocArrayFromChannel_6__MethodInfo); DO_APP_FUNC(0x00E57D70, Object__Array *, Mesh_GetAllocArrayFromChannel_7, (Mesh * __this, VertexAttribute__Enum channel, VertexAttributeFormat__Enum format, int32_t dim, MethodInfo * method)); DO_APP_FUNC(0x00E57D70, Vector2__Array *, Mesh_GetAllocArrayFromChannel_8, (Mesh * __this, VertexAttribute__Enum channel, VertexAttributeFormat__Enum format, int32_t dim, MethodInfo * method)); DO_APP_FUNC(0x00E57D70, Vector3__Array *, Mesh_GetAllocArrayFromChannel_9, (Mesh * __this, VertexAttribute__Enum channel, VertexAttributeFormat__Enum format, int32_t dim, MethodInfo * method)); DO_APP_FUNC(0x00E57D70, Vector4__Array *, Mesh_GetAllocArrayFromChannel_10, (Mesh * __this, VertexAttribute__Enum channel, VertexAttributeFormat__Enum format, int32_t dim, MethodInfo * method)); DO_APP_FUNC(0x00E57F30, void, Mesh_GetListForChannel, (Mesh * __this, List_1_UnityEngine_Color_ * buffer, int32_t capacity, VertexAttribute__Enum channel, int32_t dim, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03B70, Mesh_GetListForChannel__MethodInfo); DO_APP_FUNC(0x00E57F30, void, Mesh_GetListForChannel_1, (Mesh * __this, List_1_System_Object_ * buffer, int32_t capacity, VertexAttribute__Enum channel, int32_t dim, MethodInfo * method)); DO_APP_FUNC(0x00E57F30, void, Mesh_GetListForChannel_2, (Mesh * __this, List_1_UnityEngine_Vector2_ * buffer, int32_t capacity, VertexAttribute__Enum channel, int32_t dim, MethodInfo * method)); DO_APP_FUNC(0x00E57F30, void, Mesh_GetListForChannel_3, (Mesh * __this, List_1_UnityEngine_Vector3_ * buffer, int32_t capacity, VertexAttribute__Enum channel, int32_t dim, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03BC8, Mesh_GetListForChannel_3__MethodInfo); DO_APP_FUNC(0x00E57F30, void, Mesh_GetListForChannel_4, (Mesh * __this, List_1_UnityEngine_Vector4_ * buffer, int32_t capacity, VertexAttribute__Enum channel, int32_t dim, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03B50, Mesh_GetListForChannel_4__MethodInfo); DO_APP_FUNC(0x00E57F60, void, Mesh_GetListForChannel_5, (Mesh * __this, List_1_UnityEngine_Color_ * buffer, int32_t capacity, VertexAttribute__Enum channel, int32_t dim, VertexAttributeFormat__Enum channelType, MethodInfo * method)); DO_APP_FUNC(0x00E57F60, void, Mesh_GetListForChannel_6, (Mesh * __this, List_1_UnityEngine_Color32_ * buffer, int32_t capacity, VertexAttribute__Enum channel, int32_t dim, VertexAttributeFormat__Enum channelType, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03AE0, Mesh_GetListForChannel_6__MethodInfo); DO_APP_FUNC(0x00E57F60, void, Mesh_GetListForChannel_7, (Mesh * __this, List_1_System_Object_ * buffer, int32_t capacity, VertexAttribute__Enum channel, int32_t dim, VertexAttributeFormat__Enum channelType, MethodInfo * method)); DO_APP_FUNC(0x00E57F60, void, Mesh_GetListForChannel_8, (Mesh * __this, List_1_UnityEngine_Vector2_ * buffer, int32_t capacity, VertexAttribute__Enum channel, int32_t dim, VertexAttributeFormat__Enum channelType, MethodInfo * method)); DO_APP_FUNC(0x00E57F60, void, Mesh_GetListForChannel_9, (Mesh * __this, List_1_UnityEngine_Vector3_ * buffer, int32_t capacity, VertexAttribute__Enum channel, int32_t dim, VertexAttributeFormat__Enum channelType, MethodInfo * method)); DO_APP_FUNC(0x00E57F60, void, Mesh_GetListForChannel_10, (Mesh * __this, List_1_UnityEngine_Vector4_ * buffer, int32_t capacity, VertexAttribute__Enum channel, int32_t dim, VertexAttributeFormat__Enum channelType, MethodInfo * method)); DO_APP_FUNC(0x00E58120, void, Mesh_GetUVsImpl, (Mesh * __this, int32_t uvIndex, List_1_System_Object_ * uvs, int32_t dim, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE888, Mesh_GetUVsImpl__MethodInfo); DO_APP_FUNC(0x00E582B0, void, Mesh_GetUVsImpl_1, (Mesh * __this, int32_t uvIndex, List_1_UnityEngine_Vector2_ * uvs, int32_t dim, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE870, Mesh_GetUVsImpl_1__MethodInfo); DO_APP_FUNC(0x00E58440, void, Mesh_GetUVsImpl_2, (Mesh * __this, int32_t uvIndex, List_1_UnityEngine_Vector3_ * uvs, int32_t dim, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE868, Mesh_GetUVsImpl_2__MethodInfo); DO_APP_FUNC(0x00E585D0, void, Mesh_GetUVsImpl_3, (Mesh * __this, int32_t uvIndex, List_1_UnityEngine_Vector4_ * uvs, int32_t dim, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE860, Mesh_GetUVsImpl_3__MethodInfo); DO_APP_FUNC(0x00E58760, void, Mesh_SetArrayForChannel, (Mesh * __this, VertexAttribute__Enum channel, Color__Array * values, MeshUpdateFlags__Enum flags, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03BA8, Mesh_SetArrayForChannel__MethodInfo); DO_APP_FUNC(0x00E58760, void, Mesh_SetArrayForChannel_1, (Mesh * __this, VertexAttribute__Enum channel, Object__Array * values, MeshUpdateFlags__Enum flags, MethodInfo * method)); DO_APP_FUNC(0x00E58760, void, Mesh_SetArrayForChannel_2, (Mesh * __this, VertexAttribute__Enum channel, Vector2__Array * values, MeshUpdateFlags__Enum flags, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03C08, Mesh_SetArrayForChannel_2__MethodInfo); DO_APP_FUNC(0x00E58760, void, Mesh_SetArrayForChannel_3, (Mesh * __this, VertexAttribute__Enum channel, Vector3__Array * values, MeshUpdateFlags__Enum flags, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03C98, Mesh_SetArrayForChannel_3__MethodInfo); DO_APP_FUNC(0x00E58760, void, Mesh_SetArrayForChannel_4, (Mesh * __this, VertexAttribute__Enum channel, Vector4__Array * values, MeshUpdateFlags__Enum flags, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03C00, Mesh_SetArrayForChannel_4__MethodInfo); DO_APP_FUNC(0x00E587F0, void, Mesh_SetArrayForChannel_5, (Mesh * __this, VertexAttribute__Enum channel, VertexAttributeFormat__Enum format, int32_t dim, Color32__Array * values, MeshUpdateFlags__Enum flags, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03BD0, Mesh_SetArrayForChannel_5__MethodInfo); DO_APP_FUNC(0x00E587F0, void, Mesh_SetArrayForChannel_6, (Mesh * __this, VertexAttribute__Enum channel, VertexAttributeFormat__Enum format, int32_t dim, Object__Array * values, MeshUpdateFlags__Enum flags, MethodInfo * method)); DO_APP_FUNC(0x00E58890, void, Mesh_SetListForChannel, (Mesh * __this, VertexAttribute__Enum channel, List_1_UnityEngine_Color_ * values, int32_t start, int32_t length, MeshUpdateFlags__Enum flags, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03B80, Mesh_SetListForChannel__MethodInfo); DO_APP_FUNC(0x00E58890, void, Mesh_SetListForChannel_1, (Mesh * __this, VertexAttribute__Enum channel, List_1_System_Object_ * values, int32_t start, int32_t length, MeshUpdateFlags__Enum flags, MethodInfo * method)); DO_APP_FUNC(0x00E58890, void, Mesh_SetListForChannel_2, (Mesh * __this, VertexAttribute__Enum channel, List_1_UnityEngine_Vector3_ * values, int32_t start, int32_t length, MeshUpdateFlags__Enum flags, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03BE0, Mesh_SetListForChannel_2__MethodInfo); DO_APP_FUNC(0x00E58890, void, Mesh_SetListForChannel_3, (Mesh * __this, VertexAttribute__Enum channel, List_1_UnityEngine_Vector4_ * values, int32_t start, int32_t length, MeshUpdateFlags__Enum flags, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03B78, Mesh_SetListForChannel_3__MethodInfo); DO_APP_FUNC(0x00E58980, void, Mesh_SetListForChannel_4, (Mesh * __this, VertexAttribute__Enum channel, VertexAttributeFormat__Enum format, int32_t dim, List_1_UnityEngine_Color32_ * values, int32_t start, int32_t length, MeshUpdateFlags__Enum flags, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03AC8, Mesh_SetListForChannel_4__MethodInfo); DO_APP_FUNC(0x00E58980, void, Mesh_SetListForChannel_5, (Mesh * __this, VertexAttribute__Enum channel, VertexAttributeFormat__Enum format, int32_t dim, List_1_System_Object_ * values, int32_t start, int32_t length, MeshUpdateFlags__Enum flags, MethodInfo * method)); DO_APP_FUNC(0x00E58980, void, Mesh_SetListForChannel_6, (Mesh * __this, VertexAttribute__Enum channel, VertexAttributeFormat__Enum format, int32_t dim, List_1_UnityEngine_Vector2_ * values, int32_t start, int32_t length, MeshUpdateFlags__Enum flags, MethodInfo * method)); DO_APP_FUNC(0x00E58980, void, Mesh_SetListForChannel_7, (Mesh * __this, VertexAttribute__Enum channel, VertexAttributeFormat__Enum format, int32_t dim, List_1_UnityEngine_Vector3_ * values, int32_t start, int32_t length, MeshUpdateFlags__Enum flags, MethodInfo * method)); DO_APP_FUNC(0x00E58980, void, Mesh_SetListForChannel_8, (Mesh * __this, VertexAttribute__Enum channel, VertexAttributeFormat__Enum format, int32_t dim, List_1_UnityEngine_Vector4_ * values, int32_t start, int32_t length, MeshUpdateFlags__Enum flags, MethodInfo * method)); DO_APP_FUNC(0x00E58A80, void, Mesh_SetUvsImpl_1, (Mesh * __this, int32_t uvIndex, int32_t dim, List_1_System_Object_ * uvs, int32_t start, int32_t length, MeshUpdateFlags__Enum flags, MethodInfo * method)); DO_APP_FUNC(0x00E58B70, void, Mesh_SetUvsImpl_2, (Mesh * __this, int32_t uvIndex, int32_t dim, List_1_UnityEngine_Vector2_ * uvs, int32_t start, int32_t length, MeshUpdateFlags__Enum flags, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03B00, Mesh_SetUvsImpl_2__MethodInfo); DO_APP_FUNC(0x00E58C60, void, Mesh_SetUvsImpl_3, (Mesh * __this, int32_t uvIndex, int32_t dim, List_1_UnityEngine_Vector3_ * uvs, int32_t start, int32_t length, MeshUpdateFlags__Enum flags, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03AF8, Mesh_SetUvsImpl_3__MethodInfo); DO_APP_FUNC(0x00E58D50, void, Mesh_SetUvsImpl_4, (Mesh * __this, int32_t uvIndex, int32_t dim, List_1_UnityEngine_Vector4_ * uvs, int32_t start, int32_t length, MeshUpdateFlags__Enum flags, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03AF0, Mesh_SetUvsImpl_4__MethodInfo); DO_APP_FUNC(0x00E58E40, void, MeshExtensions_AddRange, (List_1_UnityEngine_Color_ * target, IList_1_UnityEngine_Color_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCD08, MeshExtensions_AddRange__MethodInfo); DO_APP_FUNC(0x00E58E40, void, MeshExtensions_AddRange_1, (List_1_System_Int32_ * target, IList_1_System_Int32_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCD20, MeshExtensions_AddRange_1__MethodInfo); DO_APP_FUNC(0x00E58E40, void, MeshExtensions_AddRange_2, (List_1_System_Object_ * target, IList_1_System_Object_ * source, MethodInfo * method)); DO_APP_FUNC(0x00E58E40, void, MeshExtensions_AddRange_3, (List_1_UnityEngine_Vector2_ * target, IList_1_UnityEngine_Vector2_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCD18, MeshExtensions_AddRange_3__MethodInfo); DO_APP_FUNC(0x00E58E40, void, MeshExtensions_AddRange_4, (List_1_UnityEngine_Vector3_ * target, IList_1_UnityEngine_Vector3_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCCE0, MeshExtensions_AddRange_4__MethodInfo); DO_APP_FUNC(0x00E58E40, void, MeshExtensions_AddRange_5, (List_1_UnityEngine_Vector4_ * target, IList_1_UnityEngine_Vector4_ * source, MethodInfo * method)); -DO_APP_FUNC(0x00E58E60, void, Message_Create, (Message * __this, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCCCD0, MeshExtensions_AddRange_5__MethodInfo); +DO_APP_FUNC(0x00E58E60, void, Message_Create, (Message * __this, Object * * value, MethodInfo * method)); DO_APP_FUNC(0x00E58ED0, int32_t, Message_EnumToInt, (Int32Enum__Enum value, MethodInfo * method)); DO_APP_FUNC(0x00E58F70, Int32Enum__Enum, Message_IntToEnum, (int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00E59010, void, Message_Serialize_12, (Message * __this, Int32Enum__Enum value, MethodInfo * method)); +DO_APP_FUNC(0x00E59010, void, Message_Serialize_12, (Message * __this, Int32Enum__Enum * value, MethodInfo * method)); DO_APP_FUNC(0x00E59160, IEnumerable_1_System_Object_ *, MiscHelpers_EveryNth, (IEnumerable_1_System_Object_ * enumerable, int32_t n, int32_t start, MethodInfo * method)); DO_APP_FUNC(0x00E59240, Object *, MiscHelpers_GetValueOrDefault, (Dictionary_2_System_Object_System_Object_ * dictionary, Object * key, MethodInfo * method)); DO_APP_FUNC(0x00E59280, int32_t, MiscHelpers_IndexOf, (IEnumerable_1_System_Object_ * enumerable, Object * value, MethodInfo * method)); @@ -214840,8 +238538,8 @@ DO_APP_FUNC(0x00E59740, Object__Array *, MiscTools_DeepClone_2, (Object__Array * DO_APP_FUNC(0x00E598A0, Dictionary_2_System_Int32_System_Object_ *, MiscTools_DeepClone_3, (Dictionary_2_System_Int32_System_Object_ * dictionary, MethodInfo * method)); DO_APP_FUNC(0x00E59A80, Dictionary_2_System_Object_System_Object_ *, MiscTools_DeepClone_4, (Dictionary_2_System_Object_System_Object_ * dictionary, MethodInfo * method)); DO_APP_FUNC(0x00E59C60, Object *, MiscTools_DeepClone_5, (Object * obj, bool createIfNull, MethodInfo * method)); -DO_APP_FUNC(0x00DC7320, void, MiscTools_Swap, (Object * a, Object * b, MethodInfo * method)); -DO_APP_FUNC(0x00E59D40, void, MonoBtlsContext_Dispose_1, (MonoBtlsContext * __this, Object * disposable, MethodInfo * method)); +DO_APP_FUNC(0x00DC7320, void, MiscTools_Swap, (Object * * a, Object * * b, MethodInfo * method)); +DO_APP_FUNC(0x00E59D40, void, MonoBtlsContext_Dispose_1, (MonoBtlsContext * __this, Object * * disposable, MethodInfo * method)); DO_APP_FUNC(0x00E423E0, Object__Array *, MonoLinqHelper_ToArray, (IEnumerable_1_System_Object_ * source, MethodInfo * method)); DO_APP_FUNC(0x00E59DD0, void, MouseEventsHelper_SendEnterLeave, (VisualElement * previousTopElementUnderMouse, VisualElement * currentTopElementUnderMouse, IMouseEvent * triggerEvent, Vector2 mousePosition, MethodInfo * method)); DO_APP_FUNC(0x00E5A4B0, Object *, MovementUtility_GetComponentForType, (GameObject * target, MethodInfo * method)); @@ -214849,22 +238547,36 @@ DO_APP_FUNC(0x00E5A8A0, Object__Array *, MovementUtility_GetComponentsForType, ( DO_APP_FUNC(0x00E5AC00, Object *, MovementUtility_GetParentComponentForType, (GameObject * target, MethodInfo * method)); DO_APP_FUNC(0x00E5AFF0, IList_1_System_Object_ *, NEKNFNnBnMerBGmvtGdFgVoKfnGUA_QiyKOhVVagkMHbNvnJYMYZPXNyCp, (NEKNFNnBnMerBGmvtGdFgVoKfnGUA * __this, MethodInfo * method)); DO_APP_FUNC(0x00E5B230, void, NamedValue_ApplyAllToObject, (Object * instance, ReadOnlyArray_1_NamedValue_ parameters, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5560, NamedValue_ApplyAllToObject__MethodInfo); DO_APP_FUNC(0x00E5B410, void, NamedValue_ApplyAllToObject_1, (Object * instance, Object * parameters, MethodInfo * method)); DO_APP_FUNC(0x00E5B610, NativeArray_1_UnityEngine_Rendering_BatchVisibility_, NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray, (Void * dataPointer, int32_t length, Allocator__Enum allocator, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11198, NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray__MethodInfo); DO_APP_FUNC(0x00E5B610, NativeArray_1_UnityEngine_BoneWeight1_, NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_1, (Void * dataPointer, int32_t length, Allocator__Enum allocator, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03CA8, NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_1__MethodInfo); DO_APP_FUNC(0x00E5B610, NativeArray_1_System_Byte_, NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_2, (Void * dataPointer, int32_t length, Allocator__Enum allocator, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1190, NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_2__MethodInfo); DO_APP_FUNC(0x00E5B610, NativeArray_1_UnityEngine_Color_, NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_3, (Void * dataPointer, int32_t length, Allocator__Enum allocator, MethodInfo * method)); DO_APP_FUNC(0x00E5B610, NativeArray_1_UnityEngine_Color32_, NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_4, (Void * dataPointer, int32_t length, Allocator__Enum allocator, MethodInfo * method)); DO_APP_FUNC(0x00E5B610, NativeArray_1_System_Int32_, NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_5, (Void * dataPointer, int32_t length, Allocator__Enum allocator, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11190, NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_5__MethodInfo); DO_APP_FUNC(0x00E5B610, NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI_, NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_6, (Void * dataPointer, int32_t length, Allocator__Enum allocator, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D125A0, NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_6__MethodInfo); DO_APP_FUNC(0x00E5B610, NativeArray_1_UnityEngine_ModifiableContactPair_, NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_7, (Void * dataPointer, int32_t length, Allocator__Enum allocator, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B030, NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_7__MethodInfo); DO_APP_FUNC(0x00E5B610, NativeArray_1_UnityEngine_Plane_, NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_8, (Void * dataPointer, int32_t length, Allocator__Enum allocator, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D11188, NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_8__MethodInfo); DO_APP_FUNC(0x00E5B610, NativeArray_1_UnityEngine_Tilemaps_TileData_, NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_9, (Void * dataPointer, int32_t length, Allocator__Enum allocator, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21BC0, NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_9__MethodInfo); DO_APP_FUNC(0x00E5B610, NativeArray_1_UnityEngine_Vector2_, NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_10, (Void * dataPointer, int32_t length, Allocator__Enum allocator, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC6C8, NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_10__MethodInfo); DO_APP_FUNC(0x00E5B610, NativeArray_1_UnityEngine_Vector3Int_, NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_11, (Void * dataPointer, int32_t length, Allocator__Enum allocator, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21BF8, NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_11__MethodInfo); DO_APP_FUNC(0x00E5B640, Void *, NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks, (NativeArray_1_System_Byte_ nativeArray, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1180, NativeArrayUnsafeUtility_GetUnsafeBufferPointerWithoutChecks__MethodInfo); DO_APP_FUNC(0x00E5B640, Void *, NativeArrayUnsafeUtility_GetUnsafePtr, (NativeArray_1_System_Byte_ nativeArray, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCAB68, NativeArrayUnsafeUtility_GetUnsafePtr__MethodInfo); DO_APP_FUNC(0x00E5B640, Void *, NativeArrayUnsafeUtility_GetUnsafePtr_1, (NativeArray_1_UnityEngine_Color32_ nativeArray, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC59D0, NativeArrayUnsafeUtility_GetUnsafePtr_1__MethodInfo); DO_APP_FUNC(0x00E5B640, Void *, NativeArrayUnsafeUtility_GetUnsafePtr_2, (NativeArray_1_System_Guid_ nativeArray, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8E370, NativeArrayUnsafeUtility_GetUnsafePtr_2__MethodInfo); DO_APP_FUNC(0x00E5B640, Void *, NativeArrayUnsafeUtility_GetUnsafePtr_3, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor_ nativeArray, MethodInfo * method)); @@ -214872,27 +238584,43 @@ DO_APP_FUNC_METHODINFO(0x03C8E210, NativeArrayUnsafeUtility_GetUnsafePtr_3__Meth DO_APP_FUNC(0x00E5B640, Void *, NativeArrayUnsafeUtility_GetUnsafePtr_4, (NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane_ nativeArray, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8DEE0, NativeArrayUnsafeUtility_GetUnsafePtr_4__MethodInfo); DO_APP_FUNC(0x00E5B640, Void *, NativeArrayUnsafeUtility_GetUnsafePtr_5, (NativeArray_1_UnityEngine_UIElements_TextVertex_ nativeArray, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC728, NativeArrayUnsafeUtility_GetUnsafePtr_5__MethodInfo); DO_APP_FUNC(0x00E5B640, Void *, NativeArrayUnsafeUtility_GetUnsafePtr_6, (NativeArray_1_System_UInt32_ nativeArray, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C95DE8, NativeArrayUnsafeUtility_GetUnsafePtr_6__MethodInfo); DO_APP_FUNC(0x00E5B640, Void *, NativeArrayUnsafeUtility_GetUnsafePtr_7, (NativeArray_1_System_UInt64_ nativeArray, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB4760, NativeArrayUnsafeUtility_GetUnsafePtr_7__MethodInfo); DO_APP_FUNC(0x00E5B640, Void *, NativeArrayUnsafeUtility_GetUnsafePtr_8, (NativeArray_1_UnityEngine_Vector2_ nativeArray, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAC6D8, NativeArrayUnsafeUtility_GetUnsafePtr_8__MethodInfo); DO_APP_FUNC(0x00E5B640, Void *, NativeArrayUnsafeUtility_GetUnsafePtr_9, (NativeArray_1_UnityEngine_ParticleSystem_Particle_ nativeArray, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18138, NativeArrayUnsafeUtility_GetUnsafePtr_9__MethodInfo); DO_APP_FUNC(0x00E5B640, Void *, NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr, (NativeArray_1_UnityEngine_BoneWeight1_ nativeArray, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03CB8, NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr__MethodInfo); DO_APP_FUNC(0x00E5B640, Void *, NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_1, (NativeArray_1_System_Byte_ nativeArray, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03CB0, NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_1__MethodInfo); DO_APP_FUNC(0x00E5B640, Void *, NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_2, (NativeArray_1_System_UInt16_ nativeArray, MethodInfo * method)); DO_APP_FUNC(0x00E5B640, Void *, NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_3, (NativeArray_1_System_UInt64_ nativeArray, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D0D250, NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_3__MethodInfo); DO_APP_FUNC(0x00E5B640, Void *, NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_4, (NativeArray_1_UnityEngine_UIElements_Vertex_ nativeArray, MethodInfo * method)); DO_APP_FUNC(0x00E5B640, Void *, NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_5, (NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor_ nativeArray, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03A58, NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_5__MethodInfo); DO_APP_FUNC(0x00E5B640, Void *, NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_6, (NativeArray_1_UnityEngine_ParticleSystem_Particle_ nativeArray, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D18130, NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_6__MethodInfo); DO_APP_FUNC(0x00E5B650, NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_, NativeSliceExtensions_Slice, (NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ thisArray, int32_t start, int32_t length, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C95480, NativeSliceExtensions_Slice__MethodInfo); DO_APP_FUNC(0x00E5B650, NativeSlice_1_System_UInt16_, NativeSliceExtensions_Slice_1, (NativeArray_1_System_UInt16_ thisArray, int32_t start, int32_t length, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7BC8, NativeSliceExtensions_Slice_1__MethodInfo); DO_APP_FUNC(0x00E5B710, NativeSlice_1_System_UInt16_, NativeSliceExtensions_Slice_2, (NativeSlice_1_System_UInt16_ thisSlice, int32_t start, int32_t length, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7848, NativeSliceExtensions_Slice_2__MethodInfo); DO_APP_FUNC(0x00E5B650, NativeSlice_1_UnityEngine_UIElements_Vertex_, NativeSliceExtensions_Slice_3, (NativeArray_1_UnityEngine_UIElements_Vertex_ thisArray, int32_t start, int32_t length, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7B98, NativeSliceExtensions_Slice_3__MethodInfo); DO_APP_FUNC(0x00E5B710, NativeSlice_1_UnityEngine_UIElements_Vertex_, NativeSliceExtensions_Slice_4, (NativeSlice_1_UnityEngine_UIElements_Vertex_ thisSlice, int32_t start, int32_t length, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7830, NativeSliceExtensions_Slice_4__MethodInfo); DO_APP_FUNC(0x00E5B750, NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange_, NativeSliceUnsafeUtility_ConvertExistingDataToNativeSlice, (Void * dataPointer, int32_t stride, int32_t length, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE790, NativeSliceUnsafeUtility_ConvertExistingDataToNativeSlice__MethodInfo); DO_APP_FUNC(0x00E5B640, Void *, NativeSliceUnsafeUtility_GetUnsafePtr, (NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange_ nativeSlice, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D037E0, NativeSliceUnsafeUtility_GetUnsafePtr__MethodInfo); DO_APP_FUNC(0x00E5B640, Void *, NativeSliceUnsafeUtility_GetUnsafePtr_1, (NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ nativeSlice, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF2DB0, NativeSliceUnsafeUtility_GetUnsafePtr_1__MethodInfo); DO_APP_FUNC(0x00E5B640, Void *, NativeSliceUnsafeUtility_GetUnsafePtr_2, (NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4_ nativeSlice, MethodInfo * method)); DO_APP_FUNC(0x00E5B640, Void *, NativeSliceUnsafeUtility_GetUnsafePtr_3, (NativeSlice_1_System_UInt16_ nativeSlice, MethodInfo * method)); DO_APP_FUNC(0x00E5B640, Void *, NativeSliceUnsafeUtility_GetUnsafePtr_4, (NativeSlice_1_UnityEngine_Vector4_ nativeSlice, MethodInfo * method)); @@ -214904,47 +238632,83 @@ DO_APP_FUNC(0x00E5B640, Void *, NativeSliceUnsafeUtility_GetUnsafeReadOnlyPtr_3, DO_APP_FUNC(0x00E5B640, Void *, NativeSliceUnsafeUtility_GetUnsafeReadOnlyPtr_4, (NativeSlice_1_UnityEngine_Vector4_ nativeSlice, MethodInfo * method)); DO_APP_FUNC(0x00E5B640, Void *, NativeSliceUnsafeUtility_GetUnsafeReadOnlyPtr_5, (NativeSlice_1_UnityEngine_UIElements_Vertex_ nativeSlice, MethodInfo * method)); DO_APP_FUNC(0x00E5B8C0, void, NoAllocHelpers_EnsureListElemCount, (List_1_UnityEngine_BoneWeight_ * list, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03938, NoAllocHelpers_EnsureListElemCount__MethodInfo); DO_APP_FUNC(0x00E5B8C0, void, NoAllocHelpers_EnsureListElemCount_1, (List_1_UnityEngine_Color_ * list, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03D00, NoAllocHelpers_EnsureListElemCount_1__MethodInfo); DO_APP_FUNC(0x00E5B8C0, void, NoAllocHelpers_EnsureListElemCount_2, (List_1_UnityEngine_Color32_ * list, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x00E5B8C0, void, NoAllocHelpers_EnsureListElemCount_3, (List_1_System_Int32_ * list, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03A20, NoAllocHelpers_EnsureListElemCount_3__MethodInfo); DO_APP_FUNC(0x00E5B8C0, void, NoAllocHelpers_EnsureListElemCount_4, (List_1_UnityEngine_Matrix4x4_ * list, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03E20, NoAllocHelpers_EnsureListElemCount_4__MethodInfo); DO_APP_FUNC(0x00E5B8C0, void, NoAllocHelpers_EnsureListElemCount_5, (List_1_System_Object_ * list, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x00E5B8C0, void, NoAllocHelpers_EnsureListElemCount_6, (List_1_UnityEngine_Rect_ * list, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07700, NoAllocHelpers_EnsureListElemCount_6__MethodInfo); DO_APP_FUNC(0x00E5B8C0, void, NoAllocHelpers_EnsureListElemCount_7, (List_1_System_Single_ * list, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03DF8, NoAllocHelpers_EnsureListElemCount_7__MethodInfo); DO_APP_FUNC(0x00E5B8C0, void, NoAllocHelpers_EnsureListElemCount_8, (List_1_System_UInt16_ * list, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03A40, NoAllocHelpers_EnsureListElemCount_8__MethodInfo); DO_APP_FUNC(0x00E5B8C0, void, NoAllocHelpers_EnsureListElemCount_9, (List_1_UnityEngine_Vector2_ * list, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x00E5B8C0, void, NoAllocHelpers_EnsureListElemCount_10, (List_1_UnityEngine_Vector3_ * list, int32_t count, MethodInfo * method)); DO_APP_FUNC(0x00E5B8C0, void, NoAllocHelpers_EnsureListElemCount_11, (List_1_UnityEngine_Vector4_ * list, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03DE0, NoAllocHelpers_EnsureListElemCount_11__MethodInfo); DO_APP_FUNC(0x00E5B950, BoneWeight__Array *, NoAllocHelpers_ExtractArrayFromListT, (List_1_UnityEngine_BoneWeight_ * list, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03930, NoAllocHelpers_ExtractArrayFromListT__MethodInfo); DO_APP_FUNC(0x00E5B950, Color__Array *, NoAllocHelpers_ExtractArrayFromListT_1, (List_1_UnityEngine_Color_ * list, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03D08, NoAllocHelpers_ExtractArrayFromListT_1__MethodInfo); DO_APP_FUNC(0x00E5B950, Int32__Array *, NoAllocHelpers_ExtractArrayFromListT_2, (List_1_System_Int32_ * list, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03A18, NoAllocHelpers_ExtractArrayFromListT_2__MethodInfo); DO_APP_FUNC(0x00E5B950, Matrix4x4__Array *, NoAllocHelpers_ExtractArrayFromListT_3, (List_1_UnityEngine_Matrix4x4_ * list, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03DB0, NoAllocHelpers_ExtractArrayFromListT_3__MethodInfo); DO_APP_FUNC(0x00E5B950, Object__Array *, NoAllocHelpers_ExtractArrayFromListT_4, (List_1_System_Object_ * list, MethodInfo * method)); DO_APP_FUNC(0x00E5B950, Rect__Array *, NoAllocHelpers_ExtractArrayFromListT_5, (List_1_UnityEngine_Rect_ * list, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07760, NoAllocHelpers_ExtractArrayFromListT_5__MethodInfo); DO_APP_FUNC(0x00E5B950, Single__Array *, NoAllocHelpers_ExtractArrayFromListT_6, (List_1_System_Single_ * list, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03E48, NoAllocHelpers_ExtractArrayFromListT_6__MethodInfo); DO_APP_FUNC(0x00E5B950, SubMeshDescriptor__Array *, NoAllocHelpers_ExtractArrayFromListT_7, (List_1_UnityEngine_Rendering_SubMeshDescriptor_ * list, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D038B0, NoAllocHelpers_ExtractArrayFromListT_7__MethodInfo); DO_APP_FUNC(0x00E5B950, UInt16__Array *, NoAllocHelpers_ExtractArrayFromListT_8, (List_1_System_UInt16_ * list, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03A38, NoAllocHelpers_ExtractArrayFromListT_8__MethodInfo); DO_APP_FUNC(0x00E5B950, Vector4__Array *, NoAllocHelpers_ExtractArrayFromListT_9, (List_1_UnityEngine_Vector4_ * list, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03E40, NoAllocHelpers_ExtractArrayFromListT_9__MethodInfo); DO_APP_FUNC(0x00E5B9F0, void, NoAllocHelpers_ResizeList, (List_1_UnityEngine_BoneWeight_ * list, int32_t size, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE720, NoAllocHelpers_ResizeList__MethodInfo); DO_APP_FUNC(0x00E5BB20, void, NoAllocHelpers_ResizeList_1, (List_1_UnityEngine_Color_ * list, int32_t size, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE770, NoAllocHelpers_ResizeList_1__MethodInfo); DO_APP_FUNC(0x00E5BC50, void, NoAllocHelpers_ResizeList_2, (List_1_UnityEngine_Color32_ * list, int32_t size, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE760, NoAllocHelpers_ResizeList_2__MethodInfo); DO_APP_FUNC(0x00E5BD80, void, NoAllocHelpers_ResizeList_3, (List_1_System_Int32_ * list, int32_t size, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE750, NoAllocHelpers_ResizeList_3__MethodInfo); DO_APP_FUNC(0x00E5BEB0, void, NoAllocHelpers_ResizeList_4, (List_1_UnityEngine_Matrix4x4_ * list, int32_t size, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE740, NoAllocHelpers_ResizeList_4__MethodInfo); DO_APP_FUNC(0x00E5BFE0, void, NoAllocHelpers_ResizeList_5, (List_1_System_Object_ * list, int32_t size, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE6E8, NoAllocHelpers_ResizeList_5__MethodInfo); DO_APP_FUNC(0x00E5C110, void, NoAllocHelpers_ResizeList_6, (List_1_UnityEngine_Rect_ * list, int32_t size, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE6E0, NoAllocHelpers_ResizeList_6__MethodInfo); DO_APP_FUNC(0x00E5C240, void, NoAllocHelpers_ResizeList_7, (List_1_System_Single_ * list, int32_t size, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE6D8, NoAllocHelpers_ResizeList_7__MethodInfo); DO_APP_FUNC(0x00E5C370, void, NoAllocHelpers_ResizeList_8, (List_1_System_UInt16_ * list, int32_t size, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE6D0, NoAllocHelpers_ResizeList_8__MethodInfo); DO_APP_FUNC(0x00E5C4A0, void, NoAllocHelpers_ResizeList_9, (List_1_UnityEngine_Vector2_ * list, int32_t size, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE700, NoAllocHelpers_ResizeList_9__MethodInfo); DO_APP_FUNC(0x00E5C5D0, void, NoAllocHelpers_ResizeList_10, (List_1_UnityEngine_Vector3_ * list, int32_t size, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE6F8, NoAllocHelpers_ResizeList_10__MethodInfo); DO_APP_FUNC(0x00E5C700, void, NoAllocHelpers_ResizeList_11, (List_1_UnityEngine_Vector4_ * list, int32_t size, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE6F0, NoAllocHelpers_ResizeList_11__MethodInfo); DO_APP_FUNC(0x00E5C830, int32_t, NoAllocHelpers_SafeLength_1, (List_1_UnityEngine_Color_ * values, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03B90, NoAllocHelpers_SafeLength_1__MethodInfo); DO_APP_FUNC(0x00E5C830, int32_t, NoAllocHelpers_SafeLength_2, (List_1_UnityEngine_Color32_ * values, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03AD0, NoAllocHelpers_SafeLength_2__MethodInfo); DO_APP_FUNC(0x00E5C830, int32_t, NoAllocHelpers_SafeLength_3, (List_1_System_Int32_ * values, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03988, NoAllocHelpers_SafeLength_3__MethodInfo); DO_APP_FUNC(0x00E5C830, int32_t, NoAllocHelpers_SafeLength_4, (List_1_System_Object_ * values, MethodInfo * method)); DO_APP_FUNC(0x00E5C830, int32_t, NoAllocHelpers_SafeLength_5, (List_1_System_UInt16_ * values, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D039B0, NoAllocHelpers_SafeLength_5__MethodInfo); DO_APP_FUNC(0x00E5C830, int32_t, NoAllocHelpers_SafeLength_6, (List_1_UnityEngine_Vector2_ * values, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03AE8, NoAllocHelpers_SafeLength_6__MethodInfo); DO_APP_FUNC(0x00E5C830, int32_t, NoAllocHelpers_SafeLength_7, (List_1_UnityEngine_Vector3_ * values, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03BE8, NoAllocHelpers_SafeLength_7__MethodInfo); DO_APP_FUNC(0x00E5C830, int32_t, NoAllocHelpers_SafeLength_8, (List_1_UnityEngine_Vector4_ * values, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03B28, NoAllocHelpers_SafeLength_8__MethodInfo); DO_APP_FUNC(0x00E5C830, int32_t, NoAllocHelpers_SafeLength_9, (List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_ * values, MethodInfo * method)); DO_APP_FUNC(0x00E5C860, Object *, Object_1_FindAnyObjectByType_2, (MethodInfo * method)); DO_APP_FUNC(0x00E5C950, Object *, Object_1_FindAnyObjectByType_3, (FindObjectsInactive__Enum findObjectsInactive, MethodInfo * method)); @@ -214957,25 +238721,37 @@ DO_APP_FUNC(0x00E5CEF0, Object__Array *, Object_1_FindObjectsByType_3, (FindObje DO_APP_FUNC(0x00E5CFF0, Object__Array *, Object_1_FindObjectsOfType_2, (MethodInfo * method)); DO_APP_FUNC(0x00E5D0D0, Object__Array *, Object_1_FindObjectsOfType_3, (bool includeInactive, MethodInfo * method)); DO_APP_FUNC(0x00E5D1C0, Object *, Object_1_Instantiate_5, (Object * original, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE6A8, Object_1_Instantiate_5__MethodInfo); DO_APP_FUNC(0x00E5D420, Object *, Object_1_Instantiate_6, (Object * original, Transform * parent, MethodInfo * method)); DO_APP_FUNC(0x00E5D4A0, Object *, Object_1_Instantiate_7, (Object * original, Transform * parent, bool worldPositionStays, MethodInfo * method)); DO_APP_FUNC(0x00E5D560, Object *, Object_1_Instantiate_8, (Object * original, Vector3 position, Quaternion rotation, MethodInfo * method)); DO_APP_FUNC(0x00E5D640, Object *, Object_1_Instantiate_9, (Object * original, Vector3 position, Quaternion rotation, Transform * parent, MethodInfo * method)); -DO_APP_FUNC(0x00E5D730, Object *, ObjectInitializationData_CreateInstance, (ObjectInitializationData__Boxed * __this, String * idOverride, MethodInfo * method)); -DO_APP_FUNC(0x00E5D890, bool, ObjectInstanceTracker_TryGetInstance, (ObjectInstanceTracker * __this, uint32_t instanceId, Object * instance, MethodInfo * method)); +DO_APP_FUNC(0x00E5D730, Object *, ObjectInitializationData_CreateInstance, (ObjectInitializationData * __this, String * idOverride, MethodInfo * method)); +DO_APP_FUNC(0x00E5D890, bool, ObjectInstanceTracker_TryGetInstance, (ObjectInstanceTracker * __this, uint32_t instanceId, Object * * instance, MethodInfo * method)); DO_APP_FUNC(0x00E5DC80, Object *, ObjectPool_Get, (MethodInfo * method)); DO_APP_FUNC(0x00E5E100, void, ObjectPool_Return, (KeyValuePair_2_System_Object_System_Object_ obj, MethodInfo * method)); DO_APP_FUNC(0x00E5E510, void, ObjectPool_Return_1, (Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBF4E0, ObjectPool_Return_1__MethodInfo); DO_APP_FUNC(0x00E5E900, IDisposable *, Observable_Call, (IObservable_1_Object_ * source, Action_1_Object_ * action, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE628, Observable_Call__MethodInfo); DO_APP_FUNC(0x00E5EA60, IDisposable *, Observable_CallOnce, (IObservable_1_Object_ * source, Action_1_Object_ * action, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE648, Observable_CallOnce__MethodInfo); DO_APP_FUNC(0x00E5ED30, IObservable_1_UnityEngine_InputSystem_LowLevel_InputEventPtr_ *, Observable_ForDevice_1, (IObservable_1_UnityEngine_InputSystem_LowLevel_InputEventPtr_ * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE5F8, Observable_ForDevice_1__MethodInfo); DO_APP_FUNC(0x00E5EE40, IObservable_1_Object_ *, Observable_Select, (IObservable_1_UnityEngine_InputSystem_LowLevel_InputEventPtr_ * source, Func_2_UnityEngine_InputSystem_LowLevel_InputEventPtr_Object_ * filter, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE5F0, Observable_Select__MethodInfo); DO_APP_FUNC(0x00E5EF70, IObservable_1_Object_ *, Observable_Select_1, (IObservable_1_Object_ * source, Func_2_Object_Object_ * filter, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE620, Observable_Select_1__MethodInfo); DO_APP_FUNC(0x00E5F0A0, IObservable_1_Object_ *, Observable_SelectMany, (IObservable_1_Object_ * source, Func_2_Object_System_Collections_Generic_IEnumerable_1_ * filter, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE618, Observable_SelectMany__MethodInfo); DO_APP_FUNC(0x00E5F1D0, IObservable_1_Object_ *, Observable_Take, (IObservable_1_Object_ * source, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE610, Observable_Take__MethodInfo); DO_APP_FUNC(0x00E5F300, IObservable_1_Object_ *, Observable_Where, (IObservable_1_Object_ * source, Func_2_Object_Boolean_ * predicate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE608, Observable_Where__MethodInfo); DO_APP_FUNC(0x00E5F430, void, OnScreenControl_SendValueToControl, (OnScreenControl * __this, float value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE5D0, OnScreenControl_SendValueToControl__MethodInfo); DO_APP_FUNC(0x00E5F7A0, void, OnScreenControl_SendValueToControl_1, (OnScreenControl * __this, Vector2 value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE5A0, OnScreenControl_SendValueToControl_1__MethodInfo); DO_APP_FUNC(0x00E5FB10, void, OpenXRFeature_CreateSubsystem, (OpenXRFeature * __this, List_1_System_Object_ * descriptors, String * id, MethodInfo * method)); DO_APP_FUNC(0x00E5FD20, void, OpenXRFeature_DestroySubsystem, (OpenXRFeature * __this, MethodInfo * method)); DO_APP_FUNC(0x00E5FF10, void, OpenXRFeature_StartSubsystem, (OpenXRFeature * __this, MethodInfo * method)); @@ -214987,10 +238763,14 @@ DO_APP_FUNC(0x00C73820, void, OpenXRLoaderBase_StopSubsystem, (OpenXRLoaderBase DO_APP_FUNC(0x00E602F0, Object *, OpenXRSettings_GetFeature_1, (OpenXRSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x00E60420, OpenXRFeature__Array *, OpenXRSettings_GetFeatures_4, (OpenXRSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x00E60590, int32_t, OpenXRSettings_GetFeatures_5, (OpenXRSettings * __this, List_1_System_Object_ * featuresOut, MethodInfo * method)); -DO_APP_FUNC(0x00E606C0, PacketWriter, PacketWriter_WriteHandshakeResponse_1, (PacketWriter__Boxed * __this, uint32_t session, uint16_t clientId, List_1_Dissonance_Networking_ClientInfo_1__2 * clients, Dictionary_2_System_String_List_1_Dissonance_Networking_ClientInfo_1__2 * peersByRoom, MethodInfo * method)); -DO_APP_FUNC(0x00E60FD0, PacketWriter, PacketWriter_WriteRelay, (PacketWriter__Boxed * __this, uint32_t session, List_1_Dissonance_Networking_ClientInfo_1_ * destinations, ArraySegment_1_Byte_ segment, bool reliable, MethodInfo * method)); -DO_APP_FUNC(0x00E61300, PacketWriter, PacketWriter_WriteRelay_1, (PacketWriter__Boxed * __this, uint32_t session, List_1_Dissonance_Networking_ClientInfo_1__2 * destinations, ArraySegment_1_Byte_ segment, bool reliable, MethodInfo * method)); -DO_APP_FUNC(0x00E61630, bool, ParameterDictionary_TryGetValue_1, (ParameterDictionary * __this, uint8_t key, int32_t value, MethodInfo * method)); +DO_APP_FUNC(0x00E606C0, PacketWriter, PacketWriter_WriteHandshakeResponse_1, (PacketWriter * __this, uint32_t session, uint16_t clientId, List_1_Dissonance_Networking_ClientInfo_1__4 * clients, Dictionary_2_System_String_List_1_Dissonance_Networking_ClientInfo_1__2 * peersByRoom, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE560, PacketWriter_WriteHandshakeResponse_1__MethodInfo); +DO_APP_FUNC(0x00E60FD0, PacketWriter, PacketWriter_WriteRelay, (PacketWriter * __this, uint32_t session, List_1_Dissonance_Networking_ClientInfo_1_ * destinations, ArraySegment_1_Byte_ segment, bool reliable, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE570, PacketWriter_WriteRelay__MethodInfo); +DO_APP_FUNC(0x00E61300, PacketWriter, PacketWriter_WriteRelay_1, (PacketWriter * __this, uint32_t session, List_1_Dissonance_Networking_ClientInfo_1__4 * destinations, ArraySegment_1_Byte_ segment, bool reliable, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE540, PacketWriter_WriteRelay_1__MethodInfo); +DO_APP_FUNC(0x00E61630, bool, ParameterDictionary_TryGetValue_1, (ParameterDictionary * __this, uint8_t key, int32_t * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2F50, ParameterDictionary_TryGetValue_1__MethodInfo); DO_APP_FUNC(0x00E617F0, bool, ParameterOverride_GetValue, (ParameterOverride * __this, MethodInfo * method)); DO_APP_FUNC(0x00E618B0, Color, ParameterOverride_GetValue_1, (ParameterOverride * __this, MethodInfo * method)); DO_APP_FUNC(0x00E61980, int32_t, ParameterOverride_GetValue_2, (ParameterOverride * __this, MethodInfo * method)); @@ -215002,41 +238782,53 @@ DO_APP_FUNC(0x00E61C90, Vector3, ParameterOverride_GetValue_7, (ParameterOverrid DO_APP_FUNC(0x00E618B0, Vector4, ParameterOverride_GetValue_8, (ParameterOverride * __this, MethodInfo * method)); DO_APP_FUNC(0x00E61D70, Object *, PathPool_GetPath, (MethodInfo * method)); DO_APP_FUNC(0x00E62320, void, PhotonPoller_RegisterInstance, (MethodInfo * method)); -DO_APP_FUNC(0x00E62410, bool, Playable_IsPlayableOfType, (Playable__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E62590, bool, Playable_IsPlayableOfType_1, (Playable__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E62410, bool, Playable_IsPlayableOfType, (Playable * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD29E0, Playable_IsPlayableOfType__MethodInfo); +DO_APP_FUNC(0x00E62590, bool, Playable_IsPlayableOfType_1, (Playable * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA9F90, Playable_IsPlayableOfType_1__MethodInfo); -DO_APP_FUNC(0x00E62710, bool, Playable_IsPlayableOfType_2, (Playable__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E62710, bool, Playable_IsPlayableOfType_2, (Playable * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA9F98, Playable_IsPlayableOfType_2__MethodInfo); DO_APP_FUNC(0x00E62890, int32_t, PlayableExtensions_AddInput, (AnimationLayerMixerPlayable playable, AnimationClipPlayable sourcePlayable, int32_t sourceOutputIndex, float weight, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2A38, PlayableExtensions_AddInput__MethodInfo); DO_APP_FUNC(0x00E62960, void, PlayableExtensions_ConnectInput, (AnimationLayerMixerPlayable playable, int32_t inputIndex, AnimationClipPlayable sourcePlayable, int32_t sourceOutputIndex, float weight, MethodInfo * method)); DO_APP_FUNC(0x00E62AA0, void, PlayableExtensions_Destroy, (AnimationClipPlayable playable, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2A40, PlayableExtensions_Destroy__MethodInfo); DO_APP_FUNC(0x00E62B00, double, PlayableExtensions_GetDuration, (ScriptPlayable_1_System_Object_ playable, MethodInfo * method)); DO_APP_FUNC(0x00E62C00, double, PlayableExtensions_GetDuration_1, (Playable playable, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCE468, PlayableExtensions_GetDuration_1__MethodInfo); DO_APP_FUNC(0x00E62D00, PlayableGraph, PlayableExtensions_GetGraph, (AnimationLayerMixerPlayable playable, MethodInfo * method)); DO_APP_FUNC(0x00E62E20, PlayableGraph, PlayableExtensions_GetGraph_1, (Playable playable, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CAADB0, PlayableExtensions_GetGraph_1__MethodInfo); DO_APP_FUNC(0x00E62F40, Playable, PlayableExtensions_GetInput, (Playable playable, int32_t inputPort, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D007C0, PlayableExtensions_GetInput__MethodInfo); DO_APP_FUNC(0x00E63000, int32_t, PlayableExtensions_GetInputCount, (AnimationLayerMixerPlayable playable, MethodInfo * method)); DO_APP_FUNC(0x00E63100, int32_t, PlayableExtensions_GetInputCount_1, (Playable playable, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D007D0, PlayableExtensions_GetInputCount_1__MethodInfo); DO_APP_FUNC(0x00E63200, float, PlayableExtensions_GetInputWeight, (Playable playable, int32_t inputIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D007C8, PlayableExtensions_GetInputWeight__MethodInfo); DO_APP_FUNC(0x00E632A0, PlayState__Enum, PlayableExtensions_GetPlayState, (Playable playable, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCE478, PlayableExtensions_GetPlayState__MethodInfo); DO_APP_FUNC(0x00E633A0, double, PlayableExtensions_GetPreviousTime, (Playable playable, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA9BC0, PlayableExtensions_GetPreviousTime__MethodInfo); DO_APP_FUNC(0x00E634A0, double, PlayableExtensions_GetTime, (ScriptPlayable_1_System_Object_ playable, MethodInfo * method)); DO_APP_FUNC(0x00E635A0, double, PlayableExtensions_GetTime_1, (Playable playable, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCE450, PlayableExtensions_GetTime_1__MethodInfo); DO_APP_FUNC(0x00E636A0, DirectorWrapMode__Enum, PlayableExtensions_GetTimeWrapMode, (Playable playable, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CAB168, PlayableExtensions_GetTimeWrapMode__MethodInfo); DO_APP_FUNC(0x00E637A0, bool, PlayableExtensions_IsDone, (Playable playable, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CAB208, PlayableExtensions_IsDone__MethodInfo); DO_APP_FUNC(0x00E638A0, bool, PlayableExtensions_IsValid, (ScriptPlayable_1_System_Object_ playable, MethodInfo * method)); DO_APP_FUNC(0x00E639A0, bool, PlayableExtensions_IsValid_1, (AnimationClipPlayable playable, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2A28, PlayableExtensions_IsValid_1__MethodInfo); DO_APP_FUNC(0x00E63A70, bool, PlayableExtensions_IsValid_2, (Playable playable, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2A30, PlayableExtensions_IsValid_2__MethodInfo); DO_APP_FUNC(0x00E63B70, void, PlayableExtensions_Pause, (Playable playable, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA9D90, PlayableExtensions_Pause__MethodInfo); DO_APP_FUNC(0x00E63C70, void, PlayableExtensions_Play, (Playable playable, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA9D98, PlayableExtensions_Play__MethodInfo); DO_APP_FUNC(0x00E63D70, void, PlayableExtensions_SetDuration, (ScriptPlayable_1_System_Object_ playable, double value, MethodInfo * method)); DO_APP_FUNC(0x00E63E80, void, PlayableExtensions_SetDuration_1, (AudioClipPlayable playable, double value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE780, PlayableExtensions_SetDuration_1__MethodInfo); DO_APP_FUNC(0x00E63F60, void, PlayableExtensions_SetDuration_2, (Playable playable, double value, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CAA130, PlayableExtensions_SetDuration_2__MethodInfo); DO_APP_FUNC(0x00E64070, void, PlayableExtensions_SetInputCount, (ScriptPlayable_1_System_Object_ playable, int32_t value, MethodInfo * method)); @@ -215066,49 +238858,65 @@ DO_APP_FUNC_METHODINFO(0x03CA9E80, PlayableExtensions_SetPropagateSetTime_1__Met DO_APP_FUNC(0x00E64D50, void, PlayableExtensions_SetSpeed, (Playable playable, double value, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CAA048, PlayableExtensions_SetSpeed__MethodInfo); DO_APP_FUNC(0x00E64E60, void, PlayableExtensions_SetTime, (AnimationClipPlayable playable, double value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2A18, PlayableExtensions_SetTime__MethodInfo); DO_APP_FUNC(0x00E64F40, void, PlayableExtensions_SetTime_1, (Playable playable, double value, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA9D88, PlayableExtensions_SetTime_1__MethodInfo); DO_APP_FUNC(0x00E65050, void, PlayableExtensions_SetTimeWrapMode, (ScriptPlayable_1_System_Object_ playable, DirectorWrapMode__Enum value, MethodInfo * method)); DO_APP_FUNC(0x00E65160, void, PlayableExtensions_SetTimeWrapMode_1, (Playable playable, DirectorWrapMode__Enum value, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CAB170, PlayableExtensions_SetTimeWrapMode_1__MethodInfo); DO_APP_FUNC(0x00E65260, void, PlayableExtensions_SetTraversalMode, (ScriptPlayable_1_System_Object_ playable, PlayableTraversalMode__Enum mode, MethodInfo * method)); -DO_APP_FUNC(0x00E65370, bool, PlayableGraph_Connect, (PlayableGraph__Boxed * __this, AnimationClipPlayable source, int32_t sourceOutputPort, AnimationLayerMixerPlayable destination, int32_t destinationInputPort, MethodInfo * method)); -DO_APP_FUNC(0x00E65450, bool, PlayableGraph_Connect_1, (PlayableGraph__Boxed * __this, Playable source, int32_t sourceOutputPort, ScriptPlayable_1_System_Object_ destination, int32_t destinationInputPort, MethodInfo * method)); -DO_APP_FUNC(0x00E65550, bool, PlayableGraph_Connect_2, (PlayableGraph__Boxed * __this, Playable source, int32_t sourceOutputPort, AnimationLayerMixerPlayable destination, int32_t destinationInputPort, MethodInfo * method)); +DO_APP_FUNC(0x00E65370, bool, PlayableGraph_Connect, (PlayableGraph * __this, AnimationClipPlayable source, int32_t sourceOutputPort, AnimationLayerMixerPlayable destination, int32_t destinationInputPort, MethodInfo * method)); +DO_APP_FUNC(0x00E65450, bool, PlayableGraph_Connect_1, (PlayableGraph * __this, Playable source, int32_t sourceOutputPort, ScriptPlayable_1_System_Object_ destination, int32_t destinationInputPort, MethodInfo * method)); +DO_APP_FUNC(0x00E65550, bool, PlayableGraph_Connect_2, (PlayableGraph * __this, Playable source, int32_t sourceOutputPort, AnimationLayerMixerPlayable destination, int32_t destinationInputPort, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CAACF0, PlayableGraph_Connect_2__MethodInfo); -DO_APP_FUNC(0x00E65650, bool, PlayableGraph_Connect_3, (PlayableGraph__Boxed * __this, Playable source, int32_t sourceOutputPort, AnimationMixerPlayable destination, int32_t destinationInputPort, MethodInfo * method)); +DO_APP_FUNC(0x00E65650, bool, PlayableGraph_Connect_3, (PlayableGraph * __this, Playable source, int32_t sourceOutputPort, AnimationMixerPlayable destination, int32_t destinationInputPort, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CAAD80, PlayableGraph_Connect_3__MethodInfo); -DO_APP_FUNC(0x00E65750, bool, PlayableGraph_Connect_4, (PlayableGraph__Boxed * __this, Playable source, int32_t sourceOutputPort, AnimationMotionXToDeltaPlayable destination, int32_t destinationInputPort, MethodInfo * method)); +DO_APP_FUNC(0x00E65750, bool, PlayableGraph_Connect_4, (PlayableGraph * __this, Playable source, int32_t sourceOutputPort, AnimationMotionXToDeltaPlayable destination, int32_t destinationInputPort, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CAACF8, PlayableGraph_Connect_4__MethodInfo); -DO_APP_FUNC(0x00E65850, bool, PlayableGraph_Connect_5, (PlayableGraph__Boxed * __this, Playable source, int32_t sourceOutputPort, AnimationOffsetPlayable destination, int32_t destinationInputPort, MethodInfo * method)); +DO_APP_FUNC(0x00E65850, bool, PlayableGraph_Connect_5, (PlayableGraph * __this, Playable source, int32_t sourceOutputPort, AnimationOffsetPlayable destination, int32_t destinationInputPort, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CAAE40, PlayableGraph_Connect_5__MethodInfo); -DO_APP_FUNC(0x00E65950, bool, PlayableGraph_Connect_6, (PlayableGraph__Boxed * __this, Playable source, int32_t sourceOutputPort, AnimationRemoveScalePlayable destination, int32_t destinationInputPort, MethodInfo * method)); +DO_APP_FUNC(0x00E65950, bool, PlayableGraph_Connect_6, (PlayableGraph * __this, Playable source, int32_t sourceOutputPort, AnimationRemoveScalePlayable destination, int32_t destinationInputPort, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CAAE48, PlayableGraph_Connect_6__MethodInfo); -DO_APP_FUNC(0x00E65A50, bool, PlayableGraph_Connect_7, (PlayableGraph__Boxed * __this, Playable source, int32_t sourceOutputPort, AudioMixerPlayable destination, int32_t destinationInputPort, MethodInfo * method)); +DO_APP_FUNC(0x00E65A50, bool, PlayableGraph_Connect_7, (PlayableGraph * __this, Playable source, int32_t sourceOutputPort, AudioMixerPlayable destination, int32_t destinationInputPort, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA9F18, PlayableGraph_Connect_7__MethodInfo); -DO_APP_FUNC(0x00E65B30, bool, PlayableGraph_Connect_8, (PlayableGraph__Boxed * __this, Playable source, int32_t sourceOutputPort, Playable destination, int32_t destinationInputPort, MethodInfo * method)); +DO_APP_FUNC(0x00E65B30, bool, PlayableGraph_Connect_8, (PlayableGraph * __this, Playable source, int32_t sourceOutputPort, Playable destination, int32_t destinationInputPort, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CAA138, PlayableGraph_Connect_8__MethodInfo); -DO_APP_FUNC(0x00E65C10, void, PlayableGraph_DestroyPlayable, (PlayableGraph__Boxed * __this, Playable playable, MethodInfo * method)); -DO_APP_FUNC(0x00E65CB0, PlayableOutput, PlayableGraph_GetOutputByType, (PlayableGraph__Boxed * __this, int32_t index, MethodInfo * method)); -DO_APP_FUNC(0x00E65E10, Object *, PlayableHandle_GetObject, (PlayableHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E65EE0, bool, PlayableHandle_IsPlayableOfType, (PlayableHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E65F80, bool, PlayableHandle_IsPlayableOfType_1, (PlayableHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E66020, bool, PlayableHandle_IsPlayableOfType_2, (PlayableHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E660C0, bool, PlayableHandle_IsPlayableOfType_3, (PlayableHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E66160, bool, PlayableHandle_IsPlayableOfType_4, (PlayableHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E66200, bool, PlayableHandle_IsPlayableOfType_5, (PlayableHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E662A0, bool, PlayableHandle_IsPlayableOfType_6, (PlayableHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E66340, bool, PlayableHandle_IsPlayableOfType_7, (PlayableHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E663E0, bool, PlayableHandle_IsPlayableOfType_8, (PlayableHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E66480, bool, PlayableHandle_IsPlayableOfType_9, (PlayableHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E66520, bool, PlayableHandle_IsPlayableOfType_10, (PlayableHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E665C0, bool, PlayableHandle_IsPlayableOfType_11, (PlayableHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E66660, bool, PlayableOutput_IsPlayableOutputOfType, (PlayableOutput__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E65C10, void, PlayableGraph_DestroyPlayable, (PlayableGraph * __this, Playable playable, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10DA8, PlayableGraph_DestroyPlayable__MethodInfo); +DO_APP_FUNC(0x00E65CB0, PlayableOutput, PlayableGraph_GetOutputByType, (PlayableGraph * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2A20, PlayableGraph_GetOutputByType__MethodInfo); +DO_APP_FUNC(0x00E65E10, Object *, PlayableHandle_GetObject, (PlayableHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E65EE0, bool, PlayableHandle_IsPlayableOfType, (PlayableHandle * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFD788, PlayableHandle_IsPlayableOfType__MethodInfo); +DO_APP_FUNC(0x00E65F80, bool, PlayableHandle_IsPlayableOfType_1, (PlayableHandle * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFD6F0, PlayableHandle_IsPlayableOfType_1__MethodInfo); +DO_APP_FUNC(0x00E66020, bool, PlayableHandle_IsPlayableOfType_2, (PlayableHandle * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFD670, PlayableHandle_IsPlayableOfType_2__MethodInfo); +DO_APP_FUNC(0x00E660C0, bool, PlayableHandle_IsPlayableOfType_3, (PlayableHandle * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFD6A0, PlayableHandle_IsPlayableOfType_3__MethodInfo); +DO_APP_FUNC(0x00E66160, bool, PlayableHandle_IsPlayableOfType_4, (PlayableHandle * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFD628, PlayableHandle_IsPlayableOfType_4__MethodInfo); +DO_APP_FUNC(0x00E66200, bool, PlayableHandle_IsPlayableOfType_5, (PlayableHandle * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFD5C0, PlayableHandle_IsPlayableOfType_5__MethodInfo); +DO_APP_FUNC(0x00E662A0, bool, PlayableHandle_IsPlayableOfType_6, (PlayableHandle * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFD610, PlayableHandle_IsPlayableOfType_6__MethodInfo); +DO_APP_FUNC(0x00E66340, bool, PlayableHandle_IsPlayableOfType_7, (PlayableHandle * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFD520, PlayableHandle_IsPlayableOfType_7__MethodInfo); +DO_APP_FUNC(0x00E663E0, bool, PlayableHandle_IsPlayableOfType_8, (PlayableHandle * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFD580, PlayableHandle_IsPlayableOfType_8__MethodInfo); +DO_APP_FUNC(0x00E66480, bool, PlayableHandle_IsPlayableOfType_9, (PlayableHandle * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE7C8, PlayableHandle_IsPlayableOfType_9__MethodInfo); +DO_APP_FUNC(0x00E66520, bool, PlayableHandle_IsPlayableOfType_10, (PlayableHandle * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE688, PlayableHandle_IsPlayableOfType_10__MethodInfo); +DO_APP_FUNC(0x00E665C0, bool, PlayableHandle_IsPlayableOfType_11, (PlayableHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E66660, bool, PlayableOutput_IsPlayableOutputOfType, (PlayableOutput * __this, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CAB160, PlayableOutput_IsPlayableOutputOfType__MethodInfo); DO_APP_FUNC(0x00E667E0, void, PlayableOutputExtensions_AddNotificationReceiver, (PlayableOutput output, INotificationReceiver * receiver, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CAB138, PlayableOutputExtensions_AddNotificationReceiver__MethodInfo); DO_APP_FUNC(0x00E668F0, int32_t, PlayableOutputExtensions_GetSourceOutputPort, (AnimationPlayableOutput output, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD29F8, PlayableOutputExtensions_GetSourceOutputPort__MethodInfo); DO_APP_FUNC(0x00E669C0, Playable, PlayableOutputExtensions_GetSourcePlayable, (AnimationPlayableOutput output, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD2A08, PlayableOutputExtensions_GetSourcePlayable__MethodInfo); DO_APP_FUNC(0x00E66AB0, void, PlayableOutputExtensions_PushNotification, (PlayableOutput output, Playable origin, INotification * notification, Object * context, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CAB178, PlayableOutputExtensions_PushNotification__MethodInfo); DO_APP_FUNC(0x00E66C10, void, PlayableOutputExtensions_SetReferenceObject, (PlayableOutput output, Object_1 * value, MethodInfo * method)); @@ -215121,10 +238929,13 @@ DO_APP_FUNC(0x00E66F80, void, PlayableOutputExtensions_SetWeight, (AnimationPlay DO_APP_FUNC_METHODINFO(0x03CAAEA8, PlayableOutputExtensions_SetWeight__MethodInfo); DO_APP_FUNC(0x00E67060, void, PlayableOutputExtensions_SetWeight_1, (PlayableOutput output, float value, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CAB158, PlayableOutputExtensions_SetWeight_1__MethodInfo); -DO_APP_FUNC(0x00E67170, bool, PlayableOutputHandle_IsPlayableOutputOfType, (PlayableOutputHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E67210, bool, PlayableOutputHandle_IsPlayableOutputOfType_1, (PlayableOutputHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E672B0, bool, PlayableOutputHandle_IsPlayableOutputOfType_2, (PlayableOutputHandle__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E67350, bool, PlayableOutputHandle_IsPlayableOutputOfType_3, (PlayableOutputHandle__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E67170, bool, PlayableOutputHandle_IsPlayableOutputOfType, (PlayableOutputHandle * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFD5B8, PlayableOutputHandle_IsPlayableOutputOfType__MethodInfo); +DO_APP_FUNC(0x00E67210, bool, PlayableOutputHandle_IsPlayableOutputOfType_1, (PlayableOutputHandle * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE5A8, PlayableOutputHandle_IsPlayableOutputOfType_1__MethodInfo); +DO_APP_FUNC(0x00E672B0, bool, PlayableOutputHandle_IsPlayableOutputOfType_2, (PlayableOutputHandle * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E67350, bool, PlayableOutputHandle_IsPlayableOutputOfType_3, (PlayableOutputHandle * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D10C90, PlayableOutputHandle_IsPlayableOutputOfType_3__MethodInfo); DO_APP_FUNC(0x00E673F0, Object *, PlayerController_GetElement_1, (PlayerController * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x00E67480, int32_t, PlayerController_hZwtLBTeYoOUxeVgSWkTGPmGXfDl, (IList_1_System_Object_ * param_00009e5c, Predicate_1_Object_ * param_00009e5d, int32_t param_00009e5e, MethodInfo * method)); DO_APP_FUNC(0x00E67580, Object *, PlayerController_1_GetElement_1, (PlayerController_1 * __this, int32_t index, MethodInfo * method)); @@ -215140,18 +238951,20 @@ DO_APP_FUNC(0x00E68610, Object *, PostProcessProfile_AddSettings_2, (PostProcess DO_APP_FUNC(0x00E686D0, Object *, PostProcessProfile_GetSetting, (PostProcessProfile * __this, MethodInfo * method)); DO_APP_FUNC(0x00E688D0, bool, PostProcessProfile_HasSettings_1, (PostProcessProfile * __this, MethodInfo * method)); DO_APP_FUNC(0x00E68940, void, PostProcessProfile_RemoveSettings_1, (PostProcessProfile * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E68B30, bool, PostProcessProfile_TryGetSettings, (PostProcessProfile * __this, Object * outSetting, MethodInfo * method)); -DO_APP_FUNC(0x00E68DB0, void, Preferences_Get, (String * key, int32_t output, Func_3_String_Int32_Int32_ * get, Log * log, MethodInfo * method)); +DO_APP_FUNC(0x00E68B30, bool, PostProcessProfile_TryGetSettings, (PostProcessProfile * __this, Object * * outSetting, MethodInfo * method)); +DO_APP_FUNC(0x00E68DB0, void, Preferences_Get, (String * key, int32_t * output, Func_3_String_Int32_Int32_ * get, Log * log, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C93BE0, Preferences_Get__MethodInfo); -DO_APP_FUNC(0x00E68DB0, void, Preferences_Get_1, (String * key, Int32Enum__Enum output, Func_3_String_Int32Enum_Int32Enum_ * get, Log * log, MethodInfo * method)); -DO_APP_FUNC(0x00E68E50, void, Preferences_Get_2, (String * key, Object * output, Func_3_String_Object_Object_ * get, Log * log, MethodInfo * method)); -DO_APP_FUNC(0x00E68F30, void, Preferences_Get_3, (String * key, float output, Func_3_String_Single_Single_ * get, Log * log, MethodInfo * method)); +DO_APP_FUNC(0x00E68DB0, void, Preferences_Get_1, (String * key, Int32Enum__Enum * output, Func_3_String_Int32Enum_Int32Enum_ * get, Log * log, MethodInfo * method)); +DO_APP_FUNC(0x00E68E50, void, Preferences_Get_2, (String * key, Object * * output, Func_3_String_Object_Object_ * get, Log * log, MethodInfo * method)); +DO_APP_FUNC(0x00E68F30, void, Preferences_Get_3, (String * key, float * output, Func_3_String_Single_Single_ * get, Log * log, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C93BE8, Preferences_Get_3__MethodInfo); -DO_APP_FUNC(0x00E68FD0, void, Preferences_Set, (String * key, int32_t field, int32_t value, Action_2_String_Int32_ * save, Log * log, IEqualityComparer_1_System_Int32_ * equality, bool setAtRuntime, MethodInfo * method)); +DO_APP_FUNC(0x00E68FD0, void, Preferences_Set, (String * key, int32_t * field, int32_t value, Action_2_String_Int32_ * save, Log * log, IEqualityComparer_1_System_Int32_ * equality, bool setAtRuntime, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C93E40, Preferences_Set__MethodInfo); -DO_APP_FUNC(0x00E691F0, void, Preferences_Set_1, (String * key, Int32Enum__Enum field, Int32Enum__Enum value, Action_2_String_Int32Enum_ * save, Log * log, IEqualityComparer_1_System_Int32Enum_ * equality, bool setAtRuntime, MethodInfo * method)); -DO_APP_FUNC(0x00E69410, void, Preferences_Set_2, (String * key, Object * field, Object * value, Action_2_String_Object_ * save, Log * log, IEqualityComparer_1_System_Object_ * equality, bool setAtRuntime, MethodInfo * method)); -DO_APP_FUNC(0x00E69680, void, Preferences_Set_3, (String * key, float field, float value, Action_2_String_Single_ * save, Log * log, IEqualityComparer_1_System_Single_ * equality, bool setAtRuntime, MethodInfo * method)); +DO_APP_FUNC(0x00E691F0, void, Preferences_Set_1, (String * key, Int32Enum__Enum * field, Int32Enum__Enum value, Action_2_String_Int32Enum_ * save, Log * log, IEqualityComparer_1_System_Int32Enum_ * equality, bool setAtRuntime, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE2C8, Preferences_Set_1__MethodInfo); +DO_APP_FUNC(0x00E69410, void, Preferences_Set_2, (String * key, Object * * field, Object * value, Action_2_String_Object_ * save, Log * log, IEqualityComparer_1_System_Object_ * equality, bool setAtRuntime, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE2A8, Preferences_Set_2__MethodInfo); +DO_APP_FUNC(0x00E69680, void, Preferences_Set_3, (String * key, float * field, float value, Action_2_String_Single_ * save, Log * log, IEqualityComparer_1_System_Single_ * equality, bool setAtRuntime, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C93DA0, Preferences_Set_3__MethodInfo); DO_APP_FUNC(0x00E698C0, void, ProbeReferenceVolume_DebugCellIndexChanged, (ProbeReferenceVolume * __this, DebugUI_Field_1_System_Object_ * field, Object * value, MethodInfo * method)); DO_APP_FUNC(0x00E698D0, void, ProbeReferenceVolume_RefreshDebug, (ProbeReferenceVolume * __this, DebugUI_Field_1_System_Boolean_ * field, bool value, MethodInfo * method)); @@ -215160,6 +238973,7 @@ DO_APP_FUNC(0x00E698D0, void, ProbeReferenceVolume_RefreshDebug_1, (ProbeReferen DO_APP_FUNC_METHODINFO(0x03C928E8, ProbeReferenceVolume_RefreshDebug_1__MethodInfo); DO_APP_FUNC(0x00E698D0, void, ProbeReferenceVolume_RefreshDebug_2, (ProbeReferenceVolume * __this, DebugUI_Field_1_System_Object_ * field, Object * value, MethodInfo * method)); DO_APP_FUNC(0x00E69900, List_1_System_Object_ *, ProcessThreadCollection_ConvertAll, (ProcessThreadCollection * __this, Converter_2_System_Diagnostics_ProcessThread_Object_ * converter, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFE268, ProcessThreadCollection_ConvertAll__MethodInfo); DO_APP_FUNC(0x00E69950, ProfilingSampler *, ProfilingSampler_Get, (Int32Enum__Enum marker, MethodInfo * method)); DO_APP_FUNC(0x00E699F0, ProfilingSampler *, ProfilingSampler_Get_1, (Object * marker, MethodInfo * method)); DO_APP_FUNC(0x00E69A90, void, ProtocolClient_SetCallback, (ProtocolClient * __this, Action_1_Object_ * callback, MethodInfo * method)); @@ -215169,21 +238983,25 @@ DO_APP_FUNC(0x00E69D70, void, ProtocolClient_SetHandler_1, (ProtocolClient * __t DO_APP_FUNC(0x00E69FE0, void, ProtocolService_Send_1, (ProtocolService * __this, UdpEndPoint endpoint, MethodInfo * method)); DO_APP_FUNC(0x00E6A0B0, void, ProtocolService_Send_2, (ProtocolService * __this, UdpEndPoint endpoint, Action_1_Object_ * setup, MethodInfo * method)); DO_APP_FUNC(0x00E6A1C0, Object *, ProtocolTokenUtils_GetToken, (MethodInfo * method)); -DO_APP_FUNC(0x00E6A2A0, void, ProvideHandle_Complete, (ProvideHandle__Boxed * __this, Object * result, bool status, Exception * exception, MethodInfo * method)); +DO_APP_FUNC(0x00E6A2A0, void, ProvideHandle_Complete, (ProvideHandle * __this, Object * result, bool status, Exception * exception, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9E1B0, ProvideHandle_Complete__MethodInfo); -DO_APP_FUNC(0x00E6A3B0, Object *, ProvideHandle_GetDependency, (ProvideHandle__Boxed * __this, int32_t index, MethodInfo * method)); +DO_APP_FUNC(0x00E6A3B0, Object *, ProvideHandle_GetDependency, (ProvideHandle * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x00E6A3F0, int32_t, QuickSelect_Partition, (Object__Array * array, int32_t startIndex, int32_t endIndex, IComparer_1_System_Object_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00E6A5D0, int32_t, QuickSelect_Partition_1, (RaycastHit__Array * array, int32_t startIndex, int32_t endIndex, IComparer_1_UnityEngine_RaycastHit_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00E6A870, Object *, QuickSelect_SmallestK, (Object__Array * array, int32_t arrayCount, int32_t k, IComparer_1_System_Object_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00E6A8C0, RaycastHit, QuickSelect_SmallestK_1, (RaycastHit__Array * array, int32_t arrayCount, int32_t k, IComparer_1_UnityEngine_RaycastHit_ * comparer, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D167B0, QuickSelect_SmallestK_1__MethodInfo); DO_APP_FUNC(0x00E6A950, Object *, QuickSelect_SmallestK_2, (Object__Array * array, int32_t startIndex, int32_t endIndex, int32_t k, IComparer_1_System_Object_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00E6AA40, RaycastHit, QuickSelect_SmallestK_3, (RaycastHit__Array * array, int32_t startIndex, int32_t endIndex, int32_t k, IComparer_1_UnityEngine_RaycastHit_ * comparer, MethodInfo * method)); DO_APP_FUNC(0x00E6AB80, void, QuickSelect_Swap, (Object__Array * array, int32_t firstIndex, int32_t secondIndex, MethodInfo * method)); DO_APP_FUNC(0x00E6ABF0, void, QuickSelect_Swap_1, (RaycastHit__Array * array, int32_t firstIndex, int32_t secondIndex, MethodInfo * method)); -DO_APP_FUNC(0x00DF37D0, bool, RangeSlider_SetClass, (Object * currentValue, Object * newValue, MethodInfo * method)); -DO_APP_FUNC(0x00E6ACA0, bool, RangeSlider_SetStruct, (bool currentValue, bool newValue, MethodInfo * method)); -DO_APP_FUNC(0x00DF3980, bool, RangeSlider_SetStruct_1, (float currentValue, float newValue, MethodInfo * method)); +DO_APP_FUNC(0x00DF37D0, bool, RangeSlider_SetClass, (Object * * currentValue, Object * newValue, MethodInfo * method)); +DO_APP_FUNC(0x00E6ACA0, bool, RangeSlider_SetStruct, (bool * currentValue, bool newValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5DD8, RangeSlider_SetStruct__MethodInfo); +DO_APP_FUNC(0x00DF3980, bool, RangeSlider_SetStruct_1, (float * currentValue, float newValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF5DC8, RangeSlider_SetStruct_1__MethodInfo); DO_APP_FUNC(0x00E6ADB0, bool, ReadOnlyArrayExtensions_Contains, (ReadOnlyArray_1_InternedString_ array, InternedString value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFC290, ReadOnlyArrayExtensions_Contains__MethodInfo); DO_APP_FUNC(0x00E6AE60, bool, ReadOnlyArrayExtensions_Contains_1, (ReadOnlyArray_1_System_Object_ array, Object * value, MethodInfo * method)); DO_APP_FUNC(0x00E6AF20, bool, ReadOnlyArrayExtensions_ContainsReference, (ReadOnlyArray_1_System_Object_ array, Object * value, MethodInfo * method)); DO_APP_FUNC(0x00E6AF50, bool, ReadOnlyArrayExtensions_HaveEqualReferences, (ReadOnlyArray_1_System_Object_ array1, IReadOnlyList_1_System_Object_ * array2, int32_t count, MethodInfo * method)); @@ -215194,9 +239012,9 @@ DO_APP_FUNC(0x00E6B3B0, Object *, ReflectionTools_GetPrivateField, (Object * obj DO_APP_FUNC(0x00E6B4C0, Object *, ReflectionTools_GetPrivateProperty, (Object * obj, String * name, MethodInfo * method)); DO_APP_FUNC(0x00E6B650, void, ReflectionTools_SetPrivateField, (Object * obj, String * name, Object * value, MethodInfo * method)); DO_APP_FUNC(0x00E6B710, void, ReflectionTools_SetPrivateProperty, (Object * obj, String * name, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x00E6B850, RenderGraphBuilder, RenderGraph_AddRenderPass, (RenderGraph * __this, String * passName, Object * passData, MethodInfo * method)); -DO_APP_FUNC(0x00E6B9E0, RenderGraphBuilder, RenderGraph_AddRenderPass_1, (RenderGraph * __this, String * passName, Object * passData, ProfilingSampler * sampler, MethodInfo * method)); -DO_APP_FUNC(0x00E6BBB0, void, RenderGraphBuilder_SetRenderFunc, (RenderGraphBuilder__Boxed * __this, RenderFunc_1_System_Object_ * renderFunc, MethodInfo * method)); +DO_APP_FUNC(0x00E6B850, RenderGraphBuilder, RenderGraph_AddRenderPass, (RenderGraph * __this, String * passName, Object * * passData, MethodInfo * method)); +DO_APP_FUNC(0x00E6B9E0, RenderGraphBuilder, RenderGraph_AddRenderPass_1, (RenderGraph * __this, String * passName, Object * * passData, ProfilingSampler * sampler, MethodInfo * method)); +DO_APP_FUNC(0x00E6BBB0, void, RenderGraphBuilder_SetRenderFunc, (RenderGraphBuilder * __this, RenderFunc_1_System_Object_ * renderFunc, MethodInfo * method)); DO_APP_FUNC(0x00E6BCE0, Object *, RenderGraphObjectPool_Get, (RenderGraphObjectPool * __this, MethodInfo * method)); DO_APP_FUNC(0x00E6BD50, Object__Array *, RenderGraphObjectPool_GetTempArray, (RenderGraphObjectPool * __this, int32_t size, MethodInfo * method)); DO_APP_FUNC(0x00E6C2B0, RenderTargetIdentifier__Array *, RenderGraphObjectPool_GetTempArray_1, (RenderGraphObjectPool * __this, int32_t size, MethodInfo * method)); @@ -215204,32 +239022,43 @@ DO_APP_FUNC_METHODINFO(0x03C91A20, RenderGraphObjectPool_GetTempArray_1__MethodI DO_APP_FUNC(0x00E6C810, void, RenderGraphObjectPool_Release, (RenderGraphObjectPool * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x00E6C890, RenderFunc_1_System_Object_ *, RenderGraphPass_GetExecuteDelegate, (RenderGraphPass * __this, MethodInfo * method)); DO_APP_FUNC(0x00E6C930, AsyncOperationHandle_1_System_Boolean_, ResourceManager_1_CreateChainOperation, (ResourceManager_1 * __this, AsyncOperationHandle dependentOp, Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__2 * callback, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE468, ResourceManager_1_CreateChainOperation__MethodInfo); DO_APP_FUNC(0x00E6C930, AsyncOperationHandle_1_System_Int64_, ResourceManager_1_CreateChainOperation_1, (ResourceManager_1 * __this, AsyncOperationHandle dependentOp, Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * callback, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE568, ResourceManager_1_CreateChainOperation_1__MethodInfo); DO_APP_FUNC(0x00E6C930, AsyncOperationHandle_1_System_Object_, ResourceManager_1_CreateChainOperation_2, (ResourceManager_1 * __this, AsyncOperationHandle dependentOp, Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__1 * callback, MethodInfo * method)); DO_APP_FUNC(0x00E6C930, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_, ResourceManager_1_CreateChainOperation_3, (ResourceManager_1 * __this, AsyncOperationHandle dependentOp, Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__3 * callback, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE3C0, ResourceManager_1_CreateChainOperation_3__MethodInfo); DO_APP_FUNC(0x00E6CA40, AsyncOperationHandle_1_System_Object_, ResourceManager_1_CreateChainOperation_4, (ResourceManager_1 * __this, AsyncOperationHandle_1_System_Object_ dependentOp, Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * callback, MethodInfo * method)); DO_APP_FUNC(0x00E6CBF0, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_, ResourceManager_1_CreateChainOperation_5, (ResourceManager_1 * __this, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ dependentOp, Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__1 * callback, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE360, ResourceManager_1_CreateChainOperation_5__MethodInfo); DO_APP_FUNC(0x00E6CDA0, AsyncOperationHandle_1_System_Object_, ResourceManager_1_CreateChainOperation_6, (ResourceManager_1 * __this, AsyncOperationHandle dependentOp, Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__1 * callback, bool releaseDependenciesOnFailure, MethodInfo * method)); DO_APP_FUNC(0x00E6CEB0, AsyncOperationHandle_1_System_Object_, ResourceManager_1_CreateChainOperation_7, (ResourceManager_1 * __this, AsyncOperationHandle_1_System_Object_ dependentOp, Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ * callback, bool releaseDependenciesOnFailure, MethodInfo * method)); DO_APP_FUNC(0x00E6D060, AsyncOperationHandle_1_System_Boolean_, ResourceManager_1_CreateCompletedOperation, (ResourceManager_1 * __this, bool result, String * errorMsg, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE430, ResourceManager_1_CreateCompletedOperation__MethodInfo); DO_APP_FUNC(0x00E6D160, AsyncOperationHandle_1_System_Int64_, ResourceManager_1_CreateCompletedOperation_1, (ResourceManager_1 * __this, int64_t result, String * errorMsg, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE4C8, ResourceManager_1_CreateCompletedOperation_1__MethodInfo); DO_APP_FUNC(0x00E6D260, AsyncOperationHandle_1_System_Object_, ResourceManager_1_CreateCompletedOperation_2, (ResourceManager_1 * __this, Object * result, String * errorMsg, MethodInfo * method)); DO_APP_FUNC(0x00E6D360, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_, ResourceManager_1_CreateCompletedOperation_3, (ResourceManager_1 * __this, SceneInstance result, String * errorMsg, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE330, ResourceManager_1_CreateCompletedOperation_3__MethodInfo); DO_APP_FUNC(0x00E6D470, AsyncOperationHandle_1_System_Boolean_, ResourceManager_1_CreateCompletedOperationInternal, (ResourceManager_1 * __this, bool result, bool success, Exception * exception, bool releaseDependenciesOnFailure, MethodInfo * method)); DO_APP_FUNC(0x00E6D5F0, AsyncOperationHandle_1_System_Int64_, ResourceManager_1_CreateCompletedOperationInternal_1, (ResourceManager_1 * __this, int64_t result, bool success, Exception * exception, bool releaseDependenciesOnFailure, MethodInfo * method)); DO_APP_FUNC(0x00E6D770, AsyncOperationHandle_1_System_Object_, ResourceManager_1_CreateCompletedOperationInternal_2, (ResourceManager_1 * __this, Object * result, bool success, Exception * exception, bool releaseDependenciesOnFailure, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9E850, ResourceManager_1_CreateCompletedOperationInternal_2__MethodInfo); DO_APP_FUNC(0x00E6D8F0, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_, ResourceManager_1_CreateCompletedOperationInternal_3, (ResourceManager_1 * __this, SceneInstance result, bool success, Exception * exception, bool releaseDependenciesOnFailure, MethodInfo * method)); DO_APP_FUNC(0x00E6DA80, AsyncOperationHandle_1_System_Int64_, ResourceManager_1_CreateCompletedOperationWithException, (ResourceManager_1 * __this, int64_t result, Exception * exception, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE4D0, ResourceManager_1_CreateCompletedOperationWithException__MethodInfo); DO_APP_FUNC(0x00E6DA80, AsyncOperationHandle_1_System_Object_, ResourceManager_1_CreateCompletedOperationWithException_1, (ResourceManager_1 * __this, Object * result, Exception * exception, MethodInfo * method)); DO_APP_FUNC(0x00E6DAF0, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_, ResourceManager_1_CreateCompletedOperationWithException_2, (ResourceManager_1 * __this, SceneInstance result, Exception * exception, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE320, ResourceManager_1_CreateCompletedOperationWithException_2__MethodInfo); DO_APP_FUNC(0x00E6DB70, AsyncOperationHandle_1_System_Collections_Generic_IList_1__1, ResourceManager_1_CreateGroupOperation, (ResourceManager_1 * __this, IList_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_ * locations, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBE0C8, ResourceManager_1_CreateGroupOperation__MethodInfo); DO_APP_FUNC(0x00E6E090, AsyncOperationHandle_1_System_Collections_Generic_IList_1__1, ResourceManager_1_CreateGroupOperation_1, (ResourceManager_1 * __this, IList_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_ * locations, bool allowFailedDependencies, MethodInfo * method)); DO_APP_FUNC(0x00E6E6A0, Object *, ResourceManager_1_CreateOperation, (ResourceManager_1 * __this, Type * actualType, int32_t typeHash, IOperationCacheKey * cacheKey, Action_1_UnityEngine_ResourceManagement_AsyncOperations_IAsyncOperation_ * onDestroyAction, MethodInfo * method)); DO_APP_FUNC(0x00E6E910, AsyncOperationHandle_1_System_Object_, ResourceManager_1_ProvideResource_1, (ResourceManager_1 * __this, IResourceLocation * location, MethodInfo * method)); DO_APP_FUNC(0x00E6EAB0, AsyncOperationHandle_1_System_Collections_Generic_IList_1__4, ResourceManager_1_ProvideResources, (ResourceManager_1 * __this, IList_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_ * locations, Action_1_Object_ * callback, MethodInfo * method)); DO_APP_FUNC(0x00E6EB00, AsyncOperationHandle_1_System_Collections_Generic_IList_1__4, ResourceManager_1_ProvideResources_1, (ResourceManager_1 * __this, IList_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_ * locations, bool releaseDependenciesOnFailure, Action_1_Object_ * callback, MethodInfo * method)); DO_APP_FUNC(0x00E6EED0, AsyncOperationHandle_1_System_Boolean_, ResourceManager_1_StartOperation_1, (ResourceManager_1 * __this, AsyncOperationBase_1_System_Boolean_ * operation, AsyncOperationHandle dependency, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBDC68, ResourceManager_1_StartOperation_1__MethodInfo); DO_APP_FUNC(0x00E6EED0, AsyncOperationHandle_1_System_Int64_, ResourceManager_1_StartOperation_2, (ResourceManager_1 * __this, AsyncOperationBase_1_System_Int64_ * operation, AsyncOperationHandle dependency, MethodInfo * method)); DO_APP_FUNC(0x00E6EED0, AsyncOperationHandle_1_System_Object_, ResourceManager_1_StartOperation_3, (ResourceManager_1 * __this, AsyncOperationBase_1_System_Object_ * operation, AsyncOperationHandle dependency, MethodInfo * method)); DO_APP_FUNC(0x00E6EED0, AsyncOperationHandle_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_, ResourceManager_1_StartOperation_4, (ResourceManager_1 * __this, AsyncOperationBase_1_UnityEngine_ResourceManagement_ResourceProviders_SceneInstance_ * operation, AsyncOperationHandle dependency, MethodInfo * method)); @@ -215532,12 +239361,14 @@ DO_APP_FUNC(0x00E84870, bool, RuntimeHelpers_IsReferenceOrContainsReferences_286 DO_APP_FUNC(0x00E849A0, bool, RuntimeHelpers_IsReferenceOrContainsReferences_287, (MethodInfo * method)); DO_APP_FUNC(0x00E84AD0, Object *, RuntimePropertyInfo_GetterAdapterFrame, (RuntimePropertyInfo_Getter_2_System_Object_System_Object_ * getter, Object * obj, MethodInfo * method)); DO_APP_FUNC(0x00E84B70, Object *, RuntimePropertyInfo_StaticGetterAdapterFrame, (RuntimePropertyInfo_StaticGetter_1_System_Object_ * getter, Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x00E84BA0, void, RuntimeUtilities_CreateIfNull, (Object * obj, MethodInfo * method)); +DO_APP_FUNC(0x00E84BA0, void, RuntimeUtilities_CreateIfNull, (Object * * obj, MethodInfo * method)); DO_APP_FUNC(0x00E84C10, IEnumerable_1_System_Object_ *, RuntimeUtilities_GetAllSceneObjects, (MethodInfo * method)); DO_APP_FUNC(0x00E84C70, IEnumerable_1_System_Type_ *, RuntimeUtilities_GetAllTypesDerivedFrom, (MethodInfo * method)); DO_APP_FUNC(0x00E84E70, Object *, RuntimeUtilities_GetAttribute, (Type * type, MethodInfo * method)); DO_APP_FUNC(0x00E84F60, String *, RuntimeUtilities_GetFieldPath, (Expression_1_System_Func_2_ * expr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00A90, RuntimeUtilities_GetFieldPath__MethodInfo); DO_APP_FUNC(0x00E85260, Attribute__Array *, RuntimeUtilities_GetMemberAttributes, (Expression_1_System_Func_2_ * expr, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00A78, RuntimeUtilities_GetMemberAttributes__MethodInfo); DO_APP_FUNC(0x00E85580, IList_1_System_Object_ *, SDL2InputSource_GetJoysticks, (SDL2InputSource * __this, MethodInfo * method)); DO_APP_FUNC(0x00E85A70, ScheduledEventBase *, SchedulerBase_AddEventInternal_1, (SchedulerBase * __this, float delay, ScheduledEventBase_InvokeLocation__Enum invokeLocation, Action_1_Nullable_1_UnityEngine_RaycastHit_ * action, Nullable_1_UnityEngine_RaycastHit_ value, MethodInfo * method)); DO_APP_FUNC(0x00E85C30, ScheduledEventBase *, SchedulerBase_AddEventInternal_2, (SchedulerBase * __this, float delay, ScheduledEventBase_InvokeLocation__Enum invokeLocation, Action_1_Boolean_ * action, bool value, MethodInfo * method)); @@ -215552,99 +239383,136 @@ DO_APP_FUNC(0x00E867E0, ScheduledEventBase *, SchedulerBase_AddEventInternal_10, DO_APP_FUNC(0x00E86970, ScheduledEventBase *, SchedulerBase_AddEventInternal_11, (SchedulerBase * __this, float delay, ScheduledEventBase_InvokeLocation__Enum invokeLocation, Action_3_Boolean_UnityEngine_Vector3_UnityEngine_Vector3_ * action, bool value1, Vector3 value2, Vector3 value3, MethodInfo * method)); DO_APP_FUNC(0x00E86B80, ScheduledEventBase *, SchedulerBase_AddEventInternal_12, (SchedulerBase * __this, float delay, ScheduledEventBase_InvokeLocation__Enum invokeLocation, Action_3_Object_Object_Object_ * action, Object * value1, Object * value2, Object * value3, MethodInfo * method)); DO_APP_FUNC(0x00E86D20, ScheduledEventBase *, SchedulerBase_Schedule_1, (float delay, Action_1_Boolean_ * action, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D198F8, SchedulerBase_Schedule_1__MethodInfo); DO_APP_FUNC(0x00E86E90, ScheduledEventBase *, SchedulerBase_Schedule_2, (float delay, Action_1_Object_ * action, Object * value, MethodInfo * method)); DO_APP_FUNC(0x00E87000, ScheduledEventBase *, SchedulerBase_Schedule_3, (float delay, Action_1_Single_ * action, float value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D21468, SchedulerBase_Schedule_3__MethodInfo); DO_APP_FUNC(0x00E87170, ScheduledEventBase *, SchedulerBase_Schedule_4, (float delay, Action_1_UnityEngine_Vector3_ * action, Vector3 value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5A10, SchedulerBase_Schedule_4__MethodInfo); DO_APP_FUNC(0x00E872F0, ScheduledEventBase *, SchedulerBase_Schedule_5, (float delay, Action_2_Object_Boolean_ * action, Object * value1, bool value2, MethodInfo * method)); DO_APP_FUNC(0x00E87470, ScheduledEventBase *, SchedulerBase_Schedule_6, (float delay, Action_2_Object_Object_ * action, Object * value1, Object * value2, MethodInfo * method)); DO_APP_FUNC(0x00E875F0, ScheduledEventBase *, SchedulerBase_Schedule_7, (float delay, Action_2_Single_Single_ * action, float value1, float value2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D24108, SchedulerBase_Schedule_7__MethodInfo); DO_APP_FUNC(0x00E87770, ScheduledEventBase *, SchedulerBase_Schedule_8, (float delay, Action_3_Object_Object_Object_ * action, Object * value1, Object * value2, Object * value3, MethodInfo * method)); DO_APP_FUNC(0x00E878F0, ScheduledEventBase *, SchedulerBase_ScheduleFixed_1, (float delay, Action_1_Nullable_1_UnityEngine_RaycastHit_ * action, Nullable_1_UnityEngine_RaycastHit_ value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EA48, SchedulerBase_ScheduleFixed_1__MethodInfo); DO_APP_FUNC(0x00E87A80, ScheduledEventBase *, SchedulerBase_ScheduleFixed_2, (float delay, Action_1_Boolean_ * action, bool value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D19928, SchedulerBase_ScheduleFixed_2__MethodInfo); DO_APP_FUNC(0x00E87BF0, ScheduledEventBase *, SchedulerBase_ScheduleFixed_3, (float delay, Action_1_Int32_ * action, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA660, SchedulerBase_ScheduleFixed_3__MethodInfo); DO_APP_FUNC(0x00E87D60, ScheduledEventBase *, SchedulerBase_ScheduleFixed_4, (float delay, Action_1_Object_ * action, Object * value, MethodInfo * method)); DO_APP_FUNC(0x00E87ED0, ScheduledEventBase *, SchedulerBase_ScheduleFixed_5, (float delay, Action_1_UnityEngine_Vector3_ * action, Vector3 value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D214C0, SchedulerBase_ScheduleFixed_5__MethodInfo); DO_APP_FUNC(0x00E88050, ScheduledEventBase *, SchedulerBase_ScheduleFixed_6, (float delay, Action_2_Int32_Boolean_ * action, int32_t value1, bool value2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA858, SchedulerBase_ScheduleFixed_6__MethodInfo); DO_APP_FUNC(0x00E881D0, ScheduledEventBase *, SchedulerBase_ScheduleFixed_7, (float delay, Action_2_Object_Object_ * action, Object * value1, Object * value2, MethodInfo * method)); DO_APP_FUNC(0x00E88350, ScheduledEventBase *, SchedulerBase_ScheduleFixed_8, (float delay, Action_3_Boolean_UnityEngine_Vector3_UnityEngine_Vector3_ * action, bool value1, Vector3 value2, Vector3 value3, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD8950, SchedulerBase_ScheduleFixed_8__MethodInfo); DO_APP_FUNC(0x00E88510, ScheduledEventBase *, SchedulerBase_ScheduleFixed_9, (float delay, Action_3_Object_Object_Object_ * action, Object * value1, Object * value2, Object * value3, MethodInfo * method)); DO_APP_FUNC(0x00E886A0, Object *, ScriptableObject_CreateInstance_1, (MethodInfo * method)); DO_APP_FUNC(0x00E88790, void, ScrollRectEx_DoForParents, (ScrollRectEx * __this, Action_1_Object_ * action, MethodInfo * method)); DO_APP_FUNC(0x00E88AC0, Serialization__Array *, Serialization_Serialize_1, (IList_1_System_Object_ * list, MethodInfo * method)); DO_APP_FUNC(0x00E88D50, Serialization *, Serialization_Serialize_2, (Object * obj, MethodInfo * method)); DO_APP_FUNC(0x00E88DE0, Object *, SerializationTools_ReadXmlElement_1, (XmlReader * reader, String * name, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00990, SerializationTools_ReadXmlElement_1__MethodInfo); DO_APP_FUNC(0x00E89B80, String *, SerializationTools_SerializeObjectToXmlString, (Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x00E89D20, bool, SerializationTools_TryReadXmlElement_1, (XmlReader * reader, String * name, Object * outValue, MethodInfo * method)); -DO_APP_FUNC(0x00E8B450, bool, SerializationTools_TryReadXmlElement_2, (XmlReader * reader, String * name, Object * outValue, Object * defaultValue, MethodInfo * method)); +DO_APP_FUNC(0x00E89D20, bool, SerializationTools_TryReadXmlElement_1, (XmlReader * reader, String * name, Object * * outValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00958, SerializationTools_TryReadXmlElement_1__MethodInfo); +DO_APP_FUNC(0x00E8B450, bool, SerializationTools_TryReadXmlElement_2, (XmlReader * reader, String * name, Object * * outValue, Object * defaultValue, MethodInfo * method)); DO_APP_FUNC(0x00E8B4E0, void, SerializationTools_WriteXmlElement_1, (XmlWriter * writer, String * name, Object * value, MethodInfo * method)); DO_APP_FUNC(0x00E8B4F0, void, SerializedObject_Add_2, (SerializedObject * __this, String * fieldName, bool value, SerializedObject_FieldOptions__Enum options, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD820, SerializedObject_Add_2__MethodInfo); DO_APP_FUNC(0x00E8B5D0, void, SerializedObject_Add_3, (SerializedObject * __this, String * fieldName, Guid value, SerializedObject_FieldOptions__Enum options, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD3F8, SerializedObject_Add_3__MethodInfo); DO_APP_FUNC(0x00E8B6B0, void, SerializedObject_Add_4, (SerializedObject * __this, String * fieldName, int32_t value, SerializedObject_FieldOptions__Enum options, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD840, SerializedObject_Add_4__MethodInfo); DO_APP_FUNC(0x00E8B790, void, SerializedObject_Add_5, (SerializedObject * __this, String * fieldName, Int32Enum__Enum value, SerializedObject_FieldOptions__Enum options, MethodInfo * method)); DO_APP_FUNC(0x00E8B870, void, SerializedObject_Add_6, (SerializedObject * __this, String * fieldName, Object * value, SerializedObject_FieldOptions__Enum options, MethodInfo * method)); DO_APP_FUNC(0x00E8B920, void, SerializedObject_Add_7, (SerializedObject * __this, String * fieldName, float value, SerializedObject_FieldOptions__Enum options, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC4DF0, SerializedObject_Add_7__MethodInfo); DO_APP_FUNC(0x00E8BA00, Object *, SerializedObject_GetOriginalValue_2, (SerializedObject * __this, int32_t index, MethodInfo * method)); DO_APP_FUNC(0x00E8BAC0, Object *, SerializedObject_GetOriginalValue_3, (SerializedObject * __this, String * fieldName, MethodInfo * method)); -DO_APP_FUNC(0x00E8BB90, bool, SerializedObject_TryGetDeserializedValue, (SerializedObject * __this, String * fieldName, bool value, MethodInfo * method)); -DO_APP_FUNC(0x00E8BCB0, bool, SerializedObject_TryGetDeserializedValue_1, (SerializedObject * __this, String * fieldName, Guid value, MethodInfo * method)); -DO_APP_FUNC(0x00E8BDD0, bool, SerializedObject_TryGetDeserializedValue_2, (SerializedObject * __this, String * fieldName, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00E8BEF0, bool, SerializedObject_TryGetDeserializedValue_3, (SerializedObject * __this, String * fieldName, Int32Enum__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x00E8C010, bool, SerializedObject_TryGetDeserializedValue_4, (SerializedObject * __this, int32_t index, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x00E8C2F0, bool, SerializedObject_TryGetDeserializedValue_5, (SerializedObject * __this, String * fieldName, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x00E8C410, bool, SerializedObject_TryGetDeserializedValue_6, (SerializedObject * __this, String * fieldName, float value, MethodInfo * method)); -DO_APP_FUNC(0x00E8C530, bool, SerializedObject_TryGetDeserializedValueByRef, (SerializedObject * __this, String * fieldName, bool value, MethodInfo * method)); -DO_APP_FUNC(0x00E8C580, bool, SerializedObject_TryGetDeserializedValueByRef_1, (SerializedObject * __this, String * fieldName, Guid value, MethodInfo * method)); -DO_APP_FUNC(0x00E8C5D0, bool, SerializedObject_TryGetDeserializedValueByRef_2, (SerializedObject * __this, String * fieldName, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00E8C5D0, bool, SerializedObject_TryGetDeserializedValueByRef_3, (SerializedObject * __this, String * fieldName, Int32Enum__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x00E8C620, bool, SerializedObject_TryGetDeserializedValueByRef_4, (SerializedObject * __this, int32_t index, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x00E8C720, bool, SerializedObject_TryGetDeserializedValueByRef_5, (SerializedObject * __this, String * fieldName, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x00E8C7C0, bool, SerializedObject_TryGetDeserializedValueByRef_6, (SerializedObject * __this, String * fieldName, float value, MethodInfo * method)); -DO_APP_FUNC(0x00E8C810, bool, SerializedObject_lbHphJnfMMARIhdTOlsYlhPqzNJm_1, (Object * param_0000c730, bool param_0000c731, NumberStyles__Enum param_0000c732, CultureInfo * param_0000c733, MethodInfo * method)); -DO_APP_FUNC(0x00E8C940, bool, SerializedObject_lbHphJnfMMARIhdTOlsYlhPqzNJm_2, (Object * param_0000c730, Guid param_0000c731, NumberStyles__Enum param_0000c732, CultureInfo * param_0000c733, MethodInfo * method)); -DO_APP_FUNC(0x00E8CA80, bool, SerializedObject_lbHphJnfMMARIhdTOlsYlhPqzNJm_3, (Object * param_0000c730, int32_t param_0000c731, NumberStyles__Enum param_0000c732, CultureInfo * param_0000c733, MethodInfo * method)); -DO_APP_FUNC(0x00E8CBB0, bool, SerializedObject_lbHphJnfMMARIhdTOlsYlhPqzNJm_4, (Object * param_0000c730, Int32Enum__Enum param_0000c731, NumberStyles__Enum param_0000c732, CultureInfo * param_0000c733, MethodInfo * method)); -DO_APP_FUNC(0x00E8CCE0, bool, SerializedObject_lbHphJnfMMARIhdTOlsYlhPqzNJm_5, (Object * param_0000c730, Object * param_0000c731, NumberStyles__Enum param_0000c732, CultureInfo * param_0000c733, MethodInfo * method)); -DO_APP_FUNC(0x00E8CF50, bool, SerializedObject_lbHphJnfMMARIhdTOlsYlhPqzNJm_6, (Object * param_0000c730, float param_0000c731, NumberStyles__Enum param_0000c732, CultureInfo * param_0000c733, MethodInfo * method)); -DO_APP_FUNC(0x00DF37D0, bool, SetPropertyUtility_SetClass, (Object * currentValue, Object * newValue, MethodInfo * method)); -DO_APP_FUNC(0x00E8D080, bool, SetPropertyUtility_SetEquatableStruct, (Object * currentValue, Object * newValue, MethodInfo * method)); -DO_APP_FUNC(0x00E8D140, bool, SetPropertyUtility_SetStruct, (bool currentValue, bool newValue, MethodInfo * method)); +DO_APP_FUNC(0x00E8BB90, bool, SerializedObject_TryGetDeserializedValue, (SerializedObject * __this, String * fieldName, bool * value, MethodInfo * method)); +DO_APP_FUNC(0x00E8BCB0, bool, SerializedObject_TryGetDeserializedValue_1, (SerializedObject * __this, String * fieldName, Guid * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD268, SerializedObject_TryGetDeserializedValue_1__MethodInfo); +DO_APP_FUNC(0x00E8BDD0, bool, SerializedObject_TryGetDeserializedValue_2, (SerializedObject * __this, String * fieldName, int32_t * value, MethodInfo * method)); +DO_APP_FUNC(0x00E8BEF0, bool, SerializedObject_TryGetDeserializedValue_3, (SerializedObject * __this, String * fieldName, Int32Enum__Enum * value, MethodInfo * method)); +DO_APP_FUNC(0x00E8C010, bool, SerializedObject_TryGetDeserializedValue_4, (SerializedObject * __this, int32_t index, Object * * value, MethodInfo * method)); +DO_APP_FUNC(0x00E8C2F0, bool, SerializedObject_TryGetDeserializedValue_5, (SerializedObject * __this, String * fieldName, Object * * value, MethodInfo * method)); +DO_APP_FUNC(0x00E8C410, bool, SerializedObject_TryGetDeserializedValue_6, (SerializedObject * __this, String * fieldName, float * value, MethodInfo * method)); +DO_APP_FUNC(0x00E8C530, bool, SerializedObject_TryGetDeserializedValueByRef, (SerializedObject * __this, String * fieldName, bool * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD7D0, SerializedObject_TryGetDeserializedValueByRef__MethodInfo); +DO_APP_FUNC(0x00E8C580, bool, SerializedObject_TryGetDeserializedValueByRef_1, (SerializedObject * __this, String * fieldName, Guid * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5730, SerializedObject_TryGetDeserializedValueByRef_1__MethodInfo); +DO_APP_FUNC(0x00E8C5D0, bool, SerializedObject_TryGetDeserializedValueByRef_2, (SerializedObject * __this, String * fieldName, int32_t * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD7C0, SerializedObject_TryGetDeserializedValueByRef_2__MethodInfo); +DO_APP_FUNC(0x00E8C5D0, bool, SerializedObject_TryGetDeserializedValueByRef_3, (SerializedObject * __this, String * fieldName, Int32Enum__Enum * value, MethodInfo * method)); +DO_APP_FUNC(0x00E8C620, bool, SerializedObject_TryGetDeserializedValueByRef_4, (SerializedObject * __this, int32_t index, Object * * value, MethodInfo * method)); +DO_APP_FUNC(0x00E8C720, bool, SerializedObject_TryGetDeserializedValueByRef_5, (SerializedObject * __this, String * fieldName, Object * * value, MethodInfo * method)); +DO_APP_FUNC(0x00E8C7C0, bool, SerializedObject_TryGetDeserializedValueByRef_6, (SerializedObject * __this, String * fieldName, float * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC4D40, SerializedObject_TryGetDeserializedValueByRef_6__MethodInfo); +DO_APP_FUNC(0x00E8C810, bool, SerializedObject_lbHphJnfMMARIhdTOlsYlhPqzNJm_1, (Object * param_0000c730, bool * param_0000c731, NumberStyles__Enum param_0000c732, CultureInfo * param_0000c733, MethodInfo * method)); +DO_APP_FUNC(0x00E8C940, bool, SerializedObject_lbHphJnfMMARIhdTOlsYlhPqzNJm_2, (Object * param_0000c730, Guid * param_0000c731, NumberStyles__Enum param_0000c732, CultureInfo * param_0000c733, MethodInfo * method)); +DO_APP_FUNC(0x00E8CA80, bool, SerializedObject_lbHphJnfMMARIhdTOlsYlhPqzNJm_3, (Object * param_0000c730, int32_t * param_0000c731, NumberStyles__Enum param_0000c732, CultureInfo * param_0000c733, MethodInfo * method)); +DO_APP_FUNC(0x00E8CBB0, bool, SerializedObject_lbHphJnfMMARIhdTOlsYlhPqzNJm_4, (Object * param_0000c730, Int32Enum__Enum * param_0000c731, NumberStyles__Enum param_0000c732, CultureInfo * param_0000c733, MethodInfo * method)); +DO_APP_FUNC(0x00E8CCE0, bool, SerializedObject_lbHphJnfMMARIhdTOlsYlhPqzNJm_5, (Object * param_0000c730, Object * * param_0000c731, NumberStyles__Enum param_0000c732, CultureInfo * param_0000c733, MethodInfo * method)); +DO_APP_FUNC(0x00E8CF50, bool, SerializedObject_lbHphJnfMMARIhdTOlsYlhPqzNJm_6, (Object * param_0000c730, float * param_0000c731, NumberStyles__Enum param_0000c732, CultureInfo * param_0000c733, MethodInfo * method)); +DO_APP_FUNC(0x00DF37D0, bool, SetPropertyUtility_SetClass, (Object * * currentValue, Object * newValue, MethodInfo * method)); +DO_APP_FUNC(0x00E8D080, bool, SetPropertyUtility_SetEquatableStruct, (Object * * currentValue, Object * newValue, MethodInfo * method)); +DO_APP_FUNC(0x00E8D140, bool, SetPropertyUtility_SetStruct, (bool * currentValue, bool newValue, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA2850, SetPropertyUtility_SetStruct__MethodInfo); -DO_APP_FUNC(0x00E8D250, bool, SetPropertyUtility_SetStruct_1, (uint16_t currentValue, uint16_t newValue, MethodInfo * method)); +DO_APP_FUNC(0x00E8D250, bool, SetPropertyUtility_SetStruct_1, (uint16_t * currentValue, uint16_t newValue, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA26F0, SetPropertyUtility_SetStruct_1__MethodInfo); -DO_APP_FUNC(0x00E8D360, bool, SetPropertyUtility_SetStruct_2, (int32_t currentValue, int32_t newValue, MethodInfo * method)); +DO_APP_FUNC(0x00E8D360, bool, SetPropertyUtility_SetStruct_2, (int32_t * currentValue, int32_t newValue, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA2778, SetPropertyUtility_SetStruct_2__MethodInfo); -DO_APP_FUNC(0x00E8D420, bool, SetPropertyUtility_SetStruct_3, (Int32Enum__Enum currentValue, Int32Enum__Enum newValue, MethodInfo * method)); -DO_APP_FUNC(0x00DF3980, bool, SetPropertyUtility_SetStruct_4, (float currentValue, float newValue, MethodInfo * method)); +DO_APP_FUNC(0x00E8D420, bool, SetPropertyUtility_SetStruct_3, (Int32Enum__Enum * currentValue, Int32Enum__Enum newValue, MethodInfo * method)); +DO_APP_FUNC(0x00DF3980, bool, SetPropertyUtility_SetStruct_4, (float * currentValue, float newValue, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA2770, SetPropertyUtility_SetStruct_4__MethodInfo); -DO_APP_FUNC(0x00DF37D0, bool, SetPropertyUtility_2_SetClass, (Object * currentValue, Object * newValue, MethodInfo * method)); -DO_APP_FUNC(0x00E8D4D0, bool, SetPropertyUtility_2_SetStruct, (bool currentValue, bool newValue, MethodInfo * method)); -DO_APP_FUNC(0x00E8D540, bool, SetPropertyUtility_2_SetStruct_1, (uint16_t currentValue, uint16_t newValue, MethodInfo * method)); -DO_APP_FUNC(0x00E8D5B0, bool, SetPropertyUtility_2_SetStruct_2, (ColorBlock currentValue, ColorBlock newValue, MethodInfo * method)); -DO_APP_FUNC(0x00E8D6F0, bool, SetPropertyUtility_2_SetStruct_3, (int32_t currentValue, int32_t newValue, MethodInfo * method)); -DO_APP_FUNC(0x00E8D6F0, bool, SetPropertyUtility_2_SetStruct_4, (Int32Enum__Enum currentValue, Int32Enum__Enum newValue, MethodInfo * method)); -DO_APP_FUNC(0x00E8D760, bool, SetPropertyUtility_2_SetStruct_5, (Navigation currentValue, Navigation newValue, MethodInfo * method)); -DO_APP_FUNC(0x00E8D870, bool, SetPropertyUtility_2_SetStruct_6, (float currentValue, float newValue, MethodInfo * method)); -DO_APP_FUNC(0x00E8D8E0, bool, SetPropertyUtility_2_SetStruct_7, (SpriteState currentValue, SpriteState newValue, MethodInfo * method)); -DO_APP_FUNC(0x00DF37D0, bool, SetPropertyUtility_1_SetClass, (Object * currentValue, Object * newValue, MethodInfo * method)); -DO_APP_FUNC(0x00E8D9D0, bool, SetPropertyUtility_1_SetStruct, (Vector2 currentValue, Vector2 newValue, MethodInfo * method)); -DO_APP_FUNC(0x00E8DA40, int32_t, SpanHelpers_IndexOf_2, (uint16_t searchSpace, uint16_t value, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x00E8DCE0, int32_t, SpanHelpers_IndexOf_3, (Object * searchSpace, Object * value, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x00E8E070, int32_t, SpanHelpers_IndexOfAny_1, (uint16_t searchSpace, int32_t searchSpaceLength, uint16_t value, int32_t valueLength, MethodInfo * method)); -DO_APP_FUNC(0x00E8E110, int32_t, SpanHelpers_IndexOfAny_2, (Object * searchSpace, int32_t searchSpaceLength, Object * value, int32_t valueLength, MethodInfo * method)); -DO_APP_FUNC(0x00E8E1B0, bool, SpanHelpers_SequenceEqual_1, (uint8_t first, uint8_t second, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x00E8E320, bool, SpanHelpers_SequenceEqual_2, (uint16_t first, uint16_t second, int32_t length, MethodInfo * method)); -DO_APP_FUNC(0x00E8E650, bool, SpanHelpers_SequenceEqual_3, (Object * first, Object * second, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x00DF37D0, bool, SetPropertyUtility_2_SetClass, (Object * * currentValue, Object * newValue, MethodInfo * method)); +DO_APP_FUNC(0x00E8D4D0, bool, SetPropertyUtility_2_SetStruct, (bool * currentValue, bool newValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23548, SetPropertyUtility_2_SetStruct__MethodInfo); +DO_APP_FUNC(0x00E8D540, bool, SetPropertyUtility_2_SetStruct_1, (uint16_t * currentValue, uint16_t newValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEE310, SetPropertyUtility_2_SetStruct_1__MethodInfo); +DO_APP_FUNC(0x00E8D5B0, bool, SetPropertyUtility_2_SetStruct_2, (ColorBlock * currentValue, ColorBlock newValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF11C8, SetPropertyUtility_2_SetStruct_2__MethodInfo); +DO_APP_FUNC(0x00E8D6F0, bool, SetPropertyUtility_2_SetStruct_3, (int32_t * currentValue, int32_t newValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23510, SetPropertyUtility_2_SetStruct_3__MethodInfo); +DO_APP_FUNC(0x00E8D6F0, bool, SetPropertyUtility_2_SetStruct_4, (Int32Enum__Enum * currentValue, Int32Enum__Enum newValue, MethodInfo * method)); +DO_APP_FUNC(0x00E8D760, bool, SetPropertyUtility_2_SetStruct_5, (Navigation * currentValue, Navigation newValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF11B8, SetPropertyUtility_2_SetStruct_5__MethodInfo); +DO_APP_FUNC(0x00E8D870, bool, SetPropertyUtility_2_SetStruct_6, (float * currentValue, float newValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D23518, SetPropertyUtility_2_SetStruct_6__MethodInfo); +DO_APP_FUNC(0x00E8D8E0, bool, SetPropertyUtility_2_SetStruct_7, (SpriteState * currentValue, SpriteState newValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF11C0, SetPropertyUtility_2_SetStruct_7__MethodInfo); +DO_APP_FUNC(0x00DF37D0, bool, SetPropertyUtility_1_SetClass, (Object * * currentValue, Object * newValue, MethodInfo * method)); +DO_APP_FUNC(0x00E8D9D0, bool, SetPropertyUtility_1_SetStruct, (Vector2 * currentValue, Vector2 newValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CF9908, SetPropertyUtility_1_SetStruct__MethodInfo); +DO_APP_FUNC(0x00E8DA40, int32_t, SpanHelpers_IndexOf_2, (uint16_t * searchSpace, uint16_t value, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x00E8DCE0, int32_t, SpanHelpers_IndexOf_3, (Object * * searchSpace, Object * value, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x00E8E070, int32_t, SpanHelpers_IndexOfAny_1, (uint16_t * searchSpace, int32_t searchSpaceLength, uint16_t * value, int32_t valueLength, MethodInfo * method)); +DO_APP_FUNC(0x00E8E110, int32_t, SpanHelpers_IndexOfAny_2, (Object * * searchSpace, int32_t searchSpaceLength, Object * * value, int32_t valueLength, MethodInfo * method)); +DO_APP_FUNC(0x00E8E1B0, bool, SpanHelpers_SequenceEqual_1, (uint8_t * first, uint8_t * second, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x00E8E320, bool, SpanHelpers_SequenceEqual_2, (uint16_t * first, uint16_t * second, int32_t length, MethodInfo * method)); +DO_APP_FUNC(0x00E8E650, bool, SpanHelpers_SequenceEqual_3, (Object * * first, Object * * second, int32_t length, MethodInfo * method)); DO_APP_FUNC(0x00E8EB10, void, StackGuard_1_RunOnEmptyStack, (StackGuard_1 * __this, Action_2_Object_Object_ * action, Object * arg1, Object * arg2, MethodInfo * method)); DO_APP_FUNC(0x00E8ED30, Object *, StackGuard_1_RunOnEmptyStackCore, (StackGuard_1 * __this, Func_2_Object_Object_ * action, Object * state, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00840, StackGuard_1_RunOnEmptyStackCore__MethodInfo); DO_APP_FUNC(0x00E8EFE0, int32_t, StateEvent_GetEventSizeWithPayload, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCAB70, StateEvent_GetEventSizeWithPayload__MethodInfo); DO_APP_FUNC(0x00E8F000, String *, String_Create, (int32_t length, ValueTuple_3_Object_Int32_Int32_ state, SpanAction_2_System_Char_System_ValueTuple_3__1 * action, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00828, String_Create__MethodInfo); DO_APP_FUNC(0x00E8F1A0, String *, String_Create_1, (int32_t length, ValueTuple_5_IntPtr_Int32_IntPtr_Int32_Boolean_ state, SpanAction_2_System_Char_System_ValueTuple_5_ * action, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00838, String_Create_1__MethodInfo); DO_APP_FUNC(0x00E8F350, String *, String_Create_2, (int32_t length, ValueTuple_8_IntPtr_Int32_IntPtr_Int32_IntPtr_Int32_Boolean_ValueTuple_1_Boolean_ state, SpanAction_2_System_Char_System_ValueTuple_8_ * action, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D007F8, String_Create_2__MethodInfo); DO_APP_FUNC(0x00E8F500, String *, String_Create_3, (int32_t length, Object * state, SpanAction_2_System_Char_System_Object_ * action, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00818, String_Create_3__MethodInfo); DO_APP_FUNC(0x00E8F690, String *, String_Join_3, (String * separator, IEnumerable_1_System_Int32Enum_ * values, MethodInfo * method)); DO_APP_FUNC(0x00E8F720, String *, String_Join_4, (String * separator, IEnumerable_1_System_Object_ * values, MethodInfo * method)); DO_APP_FUNC(0x00E8F7B0, String *, String_JoinCore_1, (uint16_t * separator, int32_t separatorLength, IEnumerable_1_System_Int32Enum_ * values, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D007D8, String_JoinCore_1__MethodInfo); DO_APP_FUNC(0x00E8FC50, String *, String_JoinCore_2, (uint16_t * separator, int32_t separatorLength, IEnumerable_1_System_Object_ * values, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00778, String_JoinCore_2__MethodInfo); DO_APP_FUNC(0x00E900C0, StringBuilder *, StringBuilder_AppendSpanFormattable, (StringBuilder * __this, uint8_t value, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C971F8, StringBuilder_AppendSpanFormattable__MethodInfo); DO_APP_FUNC(0x00E90200, StringBuilder *, StringBuilder_AppendSpanFormattable_1, (StringBuilder * __this, double value, MethodInfo * method)); @@ -215663,16 +239531,23 @@ DO_APP_FUNC_METHODINFO(0x03C971B0, StringBuilder_AppendSpanFormattable_7__Method DO_APP_FUNC(0x00E909D0, String *, StringHelpers_Join, (IEnumerable_1_System_Object_ * values, String * separator, MethodInfo * method)); DO_APP_FUNC(0x00E90CF0, String *, StringHelpers_Join_1, (String * separator, Object__Array * values, MethodInfo * method)); DO_APP_FUNC(0x00E90D10, String *, StringHelpers_MakeUniqueName, (String * baseName, IEnumerable_1_System_Object_ * existingSet, Func_2_Object_String_ * getNameFunc, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D006D8, StringHelpers_MakeUniqueName__MethodInfo); DO_APP_FUNC(0x00E91190, String *, StringHelpers_MakeUniqueName_1, (String * baseName, IEnumerable_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ * existingSet, Func_2_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_String_ * getNameFunc, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00688, StringHelpers_MakeUniqueName_1__MethodInfo); DO_APP_FUNC(0x00E916A0, String *, StringTools_ToString_11, (List_1_System_Object_ * inList, MethodInfo * method)); DO_APP_FUNC(0x00E917C0, String *, StringTools_ToString_12, (Object__Array * inArray, MethodInfo * method)); -DO_APP_FUNC(0x00E918B0, bool, StringTools_TryParseEnum, (String * value, Object * enumeration, MethodInfo * method)); +DO_APP_FUNC(0x00E918B0, bool, StringTools_TryParseEnum, (String * value, Object * * enumeration, MethodInfo * method)); DO_APP_FUNC(0x00E91A50, StructWrapper_1_System_Double_ *, StructWrapperPools_Acquire_2, (StructWrapperPools * __this, double value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2C90, StructWrapperPools_Acquire_2__MethodInfo); DO_APP_FUNC(0x00E91AF0, StructWrapper_1_System_Int16_ *, StructWrapperPools_Acquire_3, (StructWrapperPools * __this, int16_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2C98, StructWrapperPools_Acquire_3__MethodInfo); DO_APP_FUNC(0x00E91B90, StructWrapper_1_System_Int32_ *, StructWrapperPools_Acquire_4, (StructWrapperPools * __this, int32_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2C80, StructWrapperPools_Acquire_4__MethodInfo); DO_APP_FUNC(0x00E91C30, StructWrapper_1_System_Int64_ *, StructWrapperPools_Acquire_5, (StructWrapperPools * __this, int64_t value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2C88, StructWrapperPools_Acquire_5__MethodInfo); DO_APP_FUNC(0x00E91CD0, StructWrapper_1_System_Object_ *, StructWrapperPools_Acquire_6, (StructWrapperPools * __this, Object * value, MethodInfo * method)); DO_APP_FUNC(0x00E91D70, StructWrapper_1_System_Single_ *, StructWrapperPools_Acquire_7, (StructWrapperPools * __this, float value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2C78, StructWrapperPools_Acquire_7__MethodInfo); DO_APP_FUNC(0x00E91E10, StructWrapperPool_1_System_Double_ *, StructWrapperPools_GetPoolForType, (StructWrapperPools * __this, MethodInfo * method)); DO_APP_FUNC(0x00E91FE0, StructWrapperPool_1_System_Int16_ *, StructWrapperPools_GetPoolForType_1, (StructWrapperPools * __this, MethodInfo * method)); DO_APP_FUNC(0x00E921B0, StructWrapperPool_1_System_Int32_ *, StructWrapperPools_GetPoolForType_2, (StructWrapperPools * __this, MethodInfo * method)); @@ -215680,28 +239555,47 @@ DO_APP_FUNC(0x00E92380, StructWrapperPool_1_System_Int64_ *, StructWrapperPools_ DO_APP_FUNC(0x00E92550, StructWrapperPool_1_System_Object_ *, StructWrapperPools_GetPoolForType_4, (StructWrapperPools * __this, MethodInfo * method)); DO_APP_FUNC(0x00E92720, StructWrapperPool_1_System_Single_ *, StructWrapperPools_GetPoolForType_5, (StructWrapperPools * __this, MethodInfo * method)); DO_APP_FUNC(0x00E928F0, bool, StructWrapperUtility_Get, (Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2DC8, StructWrapperUtility_Get__MethodInfo); DO_APP_FUNC(0x00E928F0, uint8_t, StructWrapperUtility_Get_1, (Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2DD0, StructWrapperUtility_Get_1__MethodInfo); DO_APP_FUNC(0x00E929A0, double, StructWrapperUtility_Get_2, (Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2DB8, StructWrapperUtility_Get_2__MethodInfo); DO_APP_FUNC(0x00E92A50, int16_t, StructWrapperUtility_Get_3, (Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2DC0, StructWrapperUtility_Get_3__MethodInfo); DO_APP_FUNC(0x00E92B00, int32_t, StructWrapperUtility_Get_4, (Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2DA8, StructWrapperUtility_Get_4__MethodInfo); DO_APP_FUNC(0x00E92BB0, int64_t, StructWrapperUtility_Get_5, (Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2DB0, StructWrapperUtility_Get_5__MethodInfo); DO_APP_FUNC(0x00E92C60, Object *, StructWrapperUtility_Get_6, (Object * obj, MethodInfo * method)); DO_APP_FUNC(0x00E92D10, float, StructWrapperUtility_Get_7, (Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2D98, StructWrapperUtility_Get_7__MethodInfo); DO_APP_FUNC(0x00E92DC0, uint8_t, StructWrapperUtility_Unwrap, (Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE2C48, StructWrapperUtility_Unwrap__MethodInfo); DO_APP_FUNC(0x00E92E90, Object *, StructWrapperUtility_Unwrap_1, (Object * obj, MethodInfo * method)); -DO_APP_FUNC(0x00E92F60, Object *, StylePropertyAnimationSystem_GetOrCreate, (StylePropertyAnimationSystem * __this, Object * values, MethodInfo * method)); +DO_APP_FUNC(0x00E92F60, Object *, StylePropertyAnimationSystem_GetOrCreate, (StylePropertyAnimationSystem * __this, Object * * values, MethodInfo * method)); DO_APP_FUNC(0x00E92FD0, bool, StylePropertyAnimationSystem_StartTransition_12, (StylePropertyAnimationSystem * __this, VisualElement * owner, StylePropertyId__Enum prop, Background startValue, Background endValue, int32_t durationMs, int32_t delayMs, Func_2_Single_Single_ * easingCurve, StylePropertyAnimationSystem_Values_1_Background_ * values, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6858, StylePropertyAnimationSystem_StartTransition_12__MethodInfo); DO_APP_FUNC(0x00E93140, bool, StylePropertyAnimationSystem_StartTransition_13, (StylePropertyAnimationSystem * __this, VisualElement * owner, StylePropertyId__Enum prop, Color startValue, Color endValue, int32_t durationMs, int32_t delayMs, Func_2_Single_Single_ * easingCurve, StylePropertyAnimationSystem_Values_1_UnityEngine_Color_ * values, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6868, StylePropertyAnimationSystem_StartTransition_13__MethodInfo); DO_APP_FUNC(0x00E932A0, bool, StylePropertyAnimationSystem_StartTransition_14, (StylePropertyAnimationSystem * __this, VisualElement * owner, StylePropertyId__Enum prop, FontDefinition startValue, FontDefinition endValue, int32_t durationMs, int32_t delayMs, Func_2_Single_Single_ * easingCurve, StylePropertyAnimationSystem_Values_1_FontDefinition_ * values, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6888, StylePropertyAnimationSystem_StartTransition_14__MethodInfo); DO_APP_FUNC(0x00E93400, bool, StylePropertyAnimationSystem_StartTransition_15, (StylePropertyAnimationSystem * __this, VisualElement * owner, StylePropertyId__Enum prop, int32_t startValue, int32_t endValue, int32_t durationMs, int32_t delayMs, Func_2_Single_Single_ * easingCurve, StylePropertyAnimationSystem_Values_1_System_Int32_ * values, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6848, StylePropertyAnimationSystem_StartTransition_15__MethodInfo); DO_APP_FUNC(0x00E93530, bool, StylePropertyAnimationSystem_StartTransition_16, (StylePropertyAnimationSystem * __this, VisualElement * owner, StylePropertyId__Enum prop, Length startValue, Length endValue, int32_t durationMs, int32_t delayMs, Func_2_Single_Single_ * easingCurve, StylePropertyAnimationSystem_Values_1_Length_ * values, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6838, StylePropertyAnimationSystem_StartTransition_16__MethodInfo); DO_APP_FUNC(0x00E93660, bool, StylePropertyAnimationSystem_StartTransition_17, (StylePropertyAnimationSystem * __this, VisualElement * owner, StylePropertyId__Enum prop, Object * startValue, Object * endValue, int32_t durationMs, int32_t delayMs, Func_2_Single_Single_ * easingCurve, StylePropertyAnimationSystem_Values_1_System_Object_ * values, MethodInfo * method)); DO_APP_FUNC(0x00E93790, bool, StylePropertyAnimationSystem_StartTransition_18, (StylePropertyAnimationSystem * __this, VisualElement * owner, StylePropertyId__Enum prop, Rotate_1 startValue, Rotate_1 endValue, int32_t durationMs, int32_t delayMs, Func_2_Single_Single_ * easingCurve, StylePropertyAnimationSystem_Values_1_Rotate_ * values, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD67C8, StylePropertyAnimationSystem_StartTransition_18__MethodInfo); DO_APP_FUNC(0x00E93910, bool, StylePropertyAnimationSystem_StartTransition_19, (StylePropertyAnimationSystem * __this, VisualElement * owner, StylePropertyId__Enum prop, Scale startValue, Scale endValue, int32_t durationMs, int32_t delayMs, Func_2_Single_Single_ * easingCurve, StylePropertyAnimationSystem_Values_1_Scale_ * values, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6798, StylePropertyAnimationSystem_StartTransition_19__MethodInfo); DO_APP_FUNC(0x00E93A70, bool, StylePropertyAnimationSystem_StartTransition_20, (StylePropertyAnimationSystem * __this, VisualElement * owner, StylePropertyId__Enum prop, float startValue, float endValue, int32_t durationMs, int32_t delayMs, Func_2_Single_Single_ * easingCurve, StylePropertyAnimationSystem_Values_1_System_Single_ * values, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6810, StylePropertyAnimationSystem_StartTransition_20__MethodInfo); DO_APP_FUNC(0x00E93BB0, bool, StylePropertyAnimationSystem_StartTransition_21, (StylePropertyAnimationSystem * __this, VisualElement * owner, StylePropertyId__Enum prop, TextShadow startValue, TextShadow endValue, int32_t durationMs, int32_t delayMs, Func_2_Single_Single_ * easingCurve, StylePropertyAnimationSystem_Values_1_TextShadow_ * values, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD67A8, StylePropertyAnimationSystem_StartTransition_21__MethodInfo); DO_APP_FUNC(0x00E93D40, bool, StylePropertyAnimationSystem_StartTransition_22, (StylePropertyAnimationSystem * __this, VisualElement * owner, StylePropertyId__Enum prop, TransformOrigin startValue, TransformOrigin endValue, int32_t durationMs, int32_t delayMs, Func_2_Single_Single_ * easingCurve, StylePropertyAnimationSystem_Values_1_TransformOrigin_ * values, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD67E8, StylePropertyAnimationSystem_StartTransition_22__MethodInfo); DO_APP_FUNC(0x00E93EB0, bool, StylePropertyAnimationSystem_StartTransition_23, (StylePropertyAnimationSystem * __this, VisualElement * owner, StylePropertyId__Enum prop, Translate_1 startValue, Translate_1 endValue, int32_t durationMs, int32_t delayMs, Func_2_Single_Single_ * easingCurve, StylePropertyAnimationSystem_Values_1_Translate_ * values, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD67B8, StylePropertyAnimationSystem_StartTransition_23__MethodInfo); DO_APP_FUNC(0x00E94030, void, StylePropertyAnimationSystem_UpdateTracking, (StylePropertyAnimationSystem * __this, StylePropertyAnimationSystem_Values_1_Background_ * values, MethodInfo * method)); DO_APP_FUNC(0x00E94110, void, StylePropertyAnimationSystem_UpdateTracking_1, (StylePropertyAnimationSystem * __this, StylePropertyAnimationSystem_Values_1_UnityEngine_Color_ * values, MethodInfo * method)); DO_APP_FUNC(0x00E941F0, void, StylePropertyAnimationSystem_UpdateTracking_2, (StylePropertyAnimationSystem * __this, StylePropertyAnimationSystem_Values_1_FontDefinition_ * values, MethodInfo * method)); @@ -215715,30 +239609,50 @@ DO_APP_FUNC(0x00E94810, void, StylePropertyAnimationSystem_UpdateTracking_9, (St DO_APP_FUNC(0x00E948F0, void, StylePropertyAnimationSystem_UpdateTracking_10, (StylePropertyAnimationSystem * __this, StylePropertyAnimationSystem_Values_1_TransformOrigin_ * values, MethodInfo * method)); DO_APP_FUNC(0x00E949D0, void, StylePropertyAnimationSystem_UpdateTracking_11, (StylePropertyAnimationSystem * __this, StylePropertyAnimationSystem_Values_1_Translate_ * values, MethodInfo * method)); DO_APP_FUNC(0x00E94AB0, Color, StyleSheet_CheckAccess, (Color__Array * list, StyleValueType__Enum type, StyleValueHandle handle, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEAD00, StyleSheet_CheckAccess__MethodInfo); DO_APP_FUNC(0x00E94CB0, Dimension, StyleSheet_CheckAccess_1, (Dimension__Array * list, StyleValueType__Enum type, StyleValueHandle handle, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEACC0, StyleSheet_CheckAccess_1__MethodInfo); DO_APP_FUNC(0x00E94EA0, Object *, StyleSheet_CheckAccess_2, (Object__Array * list, StyleValueType__Enum type, StyleValueHandle handle, MethodInfo * method)); DO_APP_FUNC(0x00E95090, ScalableImage, StyleSheet_CheckAccess_3, (ScalableImage__Array * list, StyleValueType__Enum type, StyleValueHandle handle, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEABA8, StyleSheet_CheckAccess_3__MethodInfo); DO_APP_FUNC(0x00E95290, float, StyleSheet_CheckAccess_4, (Single__Array * list, StyleValueType__Enum type, StyleValueHandle handle, MethodInfo * method)); -DO_APP_FUNC(0x00E95480, bool, StyleSheet_TryCheckAccess, (Color__Array * list, StyleValueType__Enum type, StyleValueHandle handle, Color value, MethodInfo * method)); -DO_APP_FUNC(0x00E95650, bool, StyleSheet_TryCheckAccess_1, (Dimension__Array * list, StyleValueType__Enum type, StyleValueHandle handle, Dimension value, MethodInfo * method)); -DO_APP_FUNC(0x00E95820, bool, StyleSheet_TryCheckAccess_2, (Object__Array * list, StyleValueType__Enum type, StyleValueHandle handle, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x00E95A30, bool, StyleSheet_TryCheckAccess_3, (Single__Array * list, StyleValueType__Enum type, StyleValueHandle handle, float value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEACD8, StyleSheet_CheckAccess_4__MethodInfo); +DO_APP_FUNC(0x00E95480, bool, StyleSheet_TryCheckAccess, (Color__Array * list, StyleValueType__Enum type, StyleValueHandle handle, Color * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEACF0, StyleSheet_TryCheckAccess__MethodInfo); +DO_APP_FUNC(0x00E95650, bool, StyleSheet_TryCheckAccess_1, (Dimension__Array * list, StyleValueType__Enum type, StyleValueHandle handle, Dimension * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEAC88, StyleSheet_TryCheckAccess_1__MethodInfo); +DO_APP_FUNC(0x00E95820, bool, StyleSheet_TryCheckAccess_2, (Object__Array * list, StyleValueType__Enum type, StyleValueHandle handle, Object * * value, MethodInfo * method)); +DO_APP_FUNC(0x00E95A30, bool, StyleSheet_TryCheckAccess_3, (Single__Array * list, StyleValueType__Enum type, StyleValueHandle handle, float * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEAC98, StyleSheet_TryCheckAccess_3__MethodInfo); DO_APP_FUNC(0x00E95C00, void, StyleValueExtensions_CopyFrom, (List_1_UnityEngine_UIElements_EasingFunction_ * list, List_1_UnityEngine_UIElements_EasingFunction_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC250, StyleValueExtensions_CopyFrom__MethodInfo); DO_APP_FUNC(0x00E95C00, void, StyleValueExtensions_CopyFrom_1, (List_1_System_Object_ * list, List_1_System_Object_ * other, MethodInfo * method)); DO_APP_FUNC(0x00E95C00, void, StyleValueExtensions_CopyFrom_2, (List_1_UnityEngine_UIElements_StylePropertyName_ * list, List_1_UnityEngine_UIElements_StylePropertyName_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC258, StyleValueExtensions_CopyFrom_2__MethodInfo); DO_APP_FUNC(0x00E95C00, void, StyleValueExtensions_CopyFrom_3, (List_1_UnityEngine_UIElements_TimeValue_ * list, List_1_UnityEngine_UIElements_TimeValue_ * other, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDC238, StyleValueExtensions_CopyFrom_3__MethodInfo); DO_APP_FUNC(0x00E95C60, String *, StyleValueExtensions_DebugString, (IStyleValue_1_UnityEngine_Color_ * styleValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB2A0, StyleValueExtensions_DebugString__MethodInfo); DO_APP_FUNC(0x00E95DC0, String *, StyleValueExtensions_DebugString_1, (IStyleValue_1_Cursor_ * styleValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB188, StyleValueExtensions_DebugString_1__MethodInfo); DO_APP_FUNC(0x00E95FA0, String *, StyleValueExtensions_DebugString_2, (IStyleValue_1_System_Int32_ * styleValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB200, StyleValueExtensions_DebugString_2__MethodInfo); DO_APP_FUNC(0x00E960F0, String *, StyleValueExtensions_DebugString_3, (IStyleValue_1_System_Int32Enum_ * styleValue, MethodInfo * method)); DO_APP_FUNC(0x00E96240, String *, StyleValueExtensions_DebugString_4, (IStyleValue_1_Length_ * styleValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB1E0, StyleValueExtensions_DebugString_4__MethodInfo); DO_APP_FUNC(0x00E96410, String *, StyleValueExtensions_DebugString_5, (IStyleValue_1_System_Object_ * styleValue, MethodInfo * method)); DO_APP_FUNC(0x00E96540, String *, StyleValueExtensions_DebugString_6, (IStyleValue_1_Rotate_ * styleValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB220, StyleValueExtensions_DebugString_6__MethodInfo); DO_APP_FUNC(0x00E96720, String *, StyleValueExtensions_DebugString_7, (IStyleValue_1_Scale_ * styleValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB0A0, StyleValueExtensions_DebugString_7__MethodInfo); DO_APP_FUNC(0x00E96880, String *, StyleValueExtensions_DebugString_8, (IStyleValue_1_System_Single_ * styleValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB1D0, StyleValueExtensions_DebugString_8__MethodInfo); DO_APP_FUNC(0x00E969E0, String *, StyleValueExtensions_DebugString_9, (IStyleValue_1_TextShadow_ * styleValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB0C0, StyleValueExtensions_DebugString_9__MethodInfo); DO_APP_FUNC(0x00E96BC0, String *, StyleValueExtensions_DebugString_10, (IStyleValue_1_TransformOrigin_ * styleValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB110, StyleValueExtensions_DebugString_10__MethodInfo); DO_APP_FUNC(0x00E96DA0, String *, StyleValueExtensions_DebugString_11, (IStyleValue_1_Translate_ * styleValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEB0F8, StyleValueExtensions_DebugString_11__MethodInfo); DO_APP_FUNC(0x00E96F80, void, SubsystemDescriptorStore_AddDescriptorSubset, (List_1_System_Object_ * copyFrom, List_1_System_Object_ * copyTo, MethodInfo * method)); DO_APP_FUNC(0x00E97130, void, SubsystemDescriptorStore_GetSubsystemDescriptors, (List_1_System_Object_ * descriptors, MethodInfo * method)); DO_APP_FUNC(0x00E97210, void, SubsystemDescriptorStore_RegisterDescriptor_1, (Object * descriptor, List_1_System_Object_ * storeInList, MethodInfo * method)); @@ -215747,51 +239661,65 @@ DO_APP_FUNC(0x00E974F0, void, SubsystemManager_GetInstances, (List_1_System_Obje DO_APP_FUNC(0x00E97560, void, SubsystemManager_GetSubsystemDescriptors, (List_1_System_Object_ * descriptors, MethodInfo * method)); DO_APP_FUNC(0x00E975D0, void, SubsystemManager_GetSubsystems, (List_1_System_Object_ * subsystems, MethodInfo * method)); DO_APP_FUNC(0x00E976B0, Object *, TMP_Dropdown_GetOrAddComponent, (GameObject * go, MethodInfo * method)); -DO_APP_FUNC(0x00E291B0, void, TMP_FontAsset_CopyListDataToArray, (TMP_FontAsset * __this, List_1_System_Object_ * srcList, Object__Array * dstArray, MethodInfo * method)); -DO_APP_FUNC(0x00E97760, void, TMP_Text_ResizeInternalArray, (TMP_Text * __this, Object__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x00E97760, void, TMP_Text_ResizeInternalArray_1, (TMP_Text * __this, TMP_Text_UnicodeChar__Array * array, MethodInfo * method)); +DO_APP_FUNC(0x00E291B0, void, TMP_FontAsset_CopyListDataToArray, (TMP_FontAsset * __this, List_1_System_Object_ * srcList, Object__Array * * dstArray, MethodInfo * method)); +DO_APP_FUNC(0x00E97760, void, TMP_Text_ResizeInternalArray, (TMP_Text * __this, Object__Array * * array, MethodInfo * method)); +DO_APP_FUNC(0x00E97760, void, TMP_Text_ResizeInternalArray_1, (TMP_Text * __this, TMP_Text_UnicodeChar__Array * * array, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA5350, TMP_Text_ResizeInternalArray_1__MethodInfo); -DO_APP_FUNC(0x00E977F0, void, TMP_Text_ResizeInternalArray_2, (TMP_Text * __this, Object__Array * array, int32_t size, MethodInfo * method)); -DO_APP_FUNC(0x00E977F0, void, TMP_Text_ResizeInternalArray_3, (TMP_Text * __this, TMP_Text_UnicodeChar__Array * array, int32_t size, MethodInfo * method)); +DO_APP_FUNC(0x00E977F0, void, TMP_Text_ResizeInternalArray_2, (TMP_Text * __this, Object__Array * * array, int32_t size, MethodInfo * method)); +DO_APP_FUNC(0x00E977F0, void, TMP_Text_ResizeInternalArray_3, (TMP_Text * __this, TMP_Text_UnicodeChar__Array * * array, int32_t size, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA5320, TMP_Text_ResizeInternalArray_3__MethodInfo); -DO_APP_FUNC(0x00E97870, void, TMP_TextInfo_Resize, (Object__Array * array, int32_t size, MethodInfo * method)); -DO_APP_FUNC(0x00E97870, void, TMP_TextInfo_Resize_1, (TMP_LinkInfo__Array * array, int32_t size, MethodInfo * method)); +DO_APP_FUNC(0x00E97870, void, TMP_TextInfo_Resize, (Object__Array * * array, int32_t size, MethodInfo * method)); +DO_APP_FUNC(0x00E97870, void, TMP_TextInfo_Resize_1, (TMP_LinkInfo__Array * * array, int32_t size, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA52E8, TMP_TextInfo_Resize_1__MethodInfo); -DO_APP_FUNC(0x00E97870, void, TMP_TextInfo_Resize_2, (TMP_WordInfo__Array * array, int32_t size, MethodInfo * method)); +DO_APP_FUNC(0x00E97870, void, TMP_TextInfo_Resize_2, (TMP_WordInfo__Array * * array, int32_t size, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9EA28, TMP_TextInfo_Resize_2__MethodInfo); -DO_APP_FUNC(0x00E97900, void, TMP_TextInfo_Resize_3, (Object__Array * array, int32_t size, bool isBlockAllocated, MethodInfo * method)); -DO_APP_FUNC(0x00E97900, void, TMP_TextInfo_Resize_4, (TMP_CharacterInfo__Array * array, int32_t size, bool isBlockAllocated, MethodInfo * method)); +DO_APP_FUNC(0x00E97900, void, TMP_TextInfo_Resize_3, (Object__Array * * array, int32_t size, bool isBlockAllocated, MethodInfo * method)); +DO_APP_FUNC(0x00E97900, void, TMP_TextInfo_Resize_4, (TMP_CharacterInfo__Array * * array, int32_t size, bool isBlockAllocated, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9ED30, TMP_TextInfo_Resize_4__MethodInfo); -DO_APP_FUNC(0x00E97900, void, TMP_TextInfo_Resize_5, (TMP_MeshInfo__Array * array, int32_t size, bool isBlockAllocated, MethodInfo * method)); +DO_APP_FUNC(0x00E97900, void, TMP_TextInfo_Resize_5, (TMP_MeshInfo__Array * * array, int32_t size, bool isBlockAllocated, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9ECE0, TMP_TextInfo_Resize_5__MethodInfo); -DO_APP_FUNC(0x00E97900, void, TMP_TextInfo_Resize_6, (TMP_PageInfo__Array * array, int32_t size, bool isBlockAllocated, MethodInfo * method)); +DO_APP_FUNC(0x00E97900, void, TMP_TextInfo_Resize_6, (TMP_PageInfo__Array * * array, int32_t size, bool isBlockAllocated, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C9EA20, TMP_TextInfo_Resize_6__MethodInfo); DO_APP_FUNC(0x00E979B0, int32_t, TMPro_ExtensionMethods_FindInstanceID, (List_1_System_Object_ * list, Object * target, MethodInfo * method)); DO_APP_FUNC(0x00E97A80, Object *, Task_1_GetComponent_1, (Task_1 * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E97AB0, void, Task_1_TryGetComponent_1, (Task_1 * __this, Object * component, MethodInfo * method)); +DO_APP_FUNC(0x00E97AB0, void, Task_1_TryGetComponent_1, (Task_1 * __this, Object * * component, MethodInfo * method)); DO_APP_FUNC(0x00E97AE0, Task_1_System_Int32_ *, Task_FromCanceled_1, (CancellationToken cancellationToken, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEF90, Task_FromCanceled_1__MethodInfo); DO_APP_FUNC(0x00E97B50, Task_1_System_Object_ *, Task_FromCanceled_2, (CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x00E97BC0, Task_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ *, Task_FromCanceled_3, (CancellationToken cancellationToken, MethodInfo * method)); DO_APP_FUNC(0x00E97C30, Task_1_System_Boolean_ *, Task_FromCancellation_1, (CancellationToken cancellationToken, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D000E8, Task_FromCancellation_1__MethodInfo); DO_APP_FUNC(0x00E97D50, Task_1_System_Int32_ *, Task_FromCancellation_2, (CancellationToken cancellationToken, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00048, Task_FromCancellation_2__MethodInfo); DO_APP_FUNC(0x00E97E70, Task_1_System_Int32_ *, Task_FromCancellation_3, (OperationCanceledException * exception, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00020, Task_FromCancellation_3__MethodInfo); DO_APP_FUNC(0x00E97F50, Task_1_System_Object_ *, Task_FromCancellation_4, (CancellationToken cancellationToken, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00070, Task_FromCancellation_4__MethodInfo); DO_APP_FUNC(0x00E98070, Task_1_System_Object_ *, Task_FromCancellation_5, (OperationCanceledException * exception, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00060, Task_FromCancellation_5__MethodInfo); DO_APP_FUNC(0x00E98150, Task_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ *, Task_FromCancellation_6, (CancellationToken cancellationToken, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFFFA8, Task_FromCancellation_6__MethodInfo); DO_APP_FUNC(0x00E98270, Task_1_VoidTaskResult_ *, Task_FromCancellation_7, (OperationCanceledException * exception, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFFFA0, Task_FromCancellation_7__MethodInfo); DO_APP_FUNC(0x00E98350, Task_1_System_Int32_ *, Task_FromException_1, (Exception * exception, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D00018, Task_FromException_1__MethodInfo); DO_APP_FUNC(0x00E98420, Task_1_System_Object_ *, Task_FromException_2, (Exception * exception, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFFFE8, Task_FromException_2__MethodInfo); DO_APP_FUNC(0x00E984F0, Task_1_System_Net_WebSockets_ValueWebSocketReceiveResult_ *, Task_FromException_3, (Exception * exception, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFFFD0, Task_FromException_3__MethodInfo); DO_APP_FUNC(0x00E985C0, Task_1_VoidTaskResult_ *, Task_FromException_4, (Exception * exception, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFFF80, Task_FromException_4__MethodInfo); DO_APP_FUNC(0x00E98690, Task_1_System_Boolean_ *, Task_FromResult, (bool result, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA5128, Task_FromResult__MethodInfo); DO_APP_FUNC(0x00E98700, Task_1_System_Int32_ *, Task_FromResult_1, (int32_t result, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFEF88, Task_FromResult_1__MethodInfo); DO_APP_FUNC(0x00E98770, Task_1_System_Object_ *, Task_FromResult_2, (Object * result, MethodInfo * method)); DO_APP_FUNC(0x00E987E0, Task_1_System_Int32_ *, Task_Run_3, (Func_1_Int32_ * function, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03CA17D0, Task_Run_3__MethodInfo); DO_APP_FUNC(0x00E988B0, Task_1_System_Object_ *, Task_Run_4, (Func_1_Object_ * function, MethodInfo * method)); DO_APP_FUNC(0x00E98980, Task_1_System_Object_ *, Task_Run_5, (Func_1_System_Threading_Tasks_Task_1_ * function, MethodInfo * method)); DO_APP_FUNC(0x00E989F0, Task_1_System_Object_ *, Task_Run_6, (Func_1_System_Threading_Tasks_Task_1_ * function, CancellationToken cancellationToken, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFFF40, Task_Run_6__MethodInfo); DO_APP_FUNC(0x00E98BE0, Task *, TaskFactory_FromAsync_2, (TaskFactory * __this, Func_4_Object_AsyncCallback_Object_IAsyncResult_ * beginMethod, Action_1_IAsyncResult_ * endMethod, Object * arg1, Object * state, MethodInfo * method)); DO_APP_FUNC(0x00E98C20, Task *, TaskFactory_FromAsync_3, (TaskFactory * __this, Func_4_Object_AsyncCallback_Object_IAsyncResult_ * beginMethod, Action_1_IAsyncResult_ * endMethod, Object * arg1, Object * state, TaskCreationOptions__Enum creationOptions, MethodInfo * method)); DO_APP_FUNC(0x00E98C50, Task *, TaskFactory_FromAsync_4, (TaskFactory * __this, Func_5_Object_Int32_AsyncCallback_Object_IAsyncResult_ * beginMethod, Action_1_IAsyncResult_ * endMethod, Object * arg1, int32_t arg2, Object * state, MethodInfo * method)); @@ -215800,42 +239728,60 @@ DO_APP_FUNC(0x00E98CF0, Task *, TaskFactory_FromAsync_6, (TaskFactory * __this, DO_APP_FUNC(0x00E98CF0, Task *, TaskFactory_FromAsync_7, (TaskFactory * __this, Func_5_Object_Object_AsyncCallback_Object_IAsyncResult_ * beginMethod, Action_1_IAsyncResult_ * endMethod, Object * arg1, Object * arg2, Object * state, TaskCreationOptions__Enum creationOptions, MethodInfo * method)); DO_APP_FUNC(0x00E98D20, Task_1_System_Object_ *, TaskFactory_StartNew_1, (TaskFactory * __this, Func_1_Object_ * function, CancellationToken cancellationToken, TaskCreationOptions__Enum creationOptions, TaskScheduler * scheduler, MethodInfo * method)); DO_APP_FUNC(0x00E98E00, Task_1_System_Boolean_ *, TaskFactory_StartNew_2, (TaskFactory * __this, Func_2_Object_Boolean_ * function, Object * state, CancellationToken cancellationToken, TaskCreationOptions__Enum creationOptions, TaskScheduler * scheduler, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1B008, TaskFactory_StartNew_2__MethodInfo); DO_APP_FUNC(0x00E98F00, Task_1_System_Object_ *, TaskFactory_StartNew_3, (TaskFactory * __this, Func_2_Object_Object_ * function, Object * state, CancellationToken cancellationToken, TaskCreationOptions__Enum creationOptions, TaskScheduler * scheduler, MethodInfo * method)); DO_APP_FUNC(0x00E99000, int32_t, TaskToApm_End_1, (IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFFF10, TaskToApm_End_1__MethodInfo); DO_APP_FUNC(0x00E99170, Object *, TaskToApm_End_2, (IAsyncResult * asyncResult, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFFE70, TaskToApm_End_2__MethodInfo); DO_APP_FUNC(0x00E992E0, List_1_System_Int32_ *, TempListPool_Get, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEEDB8, TempListPool_Get__MethodInfo); DO_APP_FUNC(0x00E992E0, List_1_System_Object_ *, TempListPool_Get_1, (MethodInfo * method)); DO_APP_FUNC(0x00E992F0, List_1_Rewired_ControllerTemplateElementTarget_ *, TempListPool_Get_2, (int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x00E99850, List_1_System_Int32_ *, TempListPool_Get_3, (int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x00E99DB0, List_1_System_Int32Enum_ *, TempListPool_Get_4, (int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x00E9A310, List_1_System_Object_ *, TempListPool_Get_5, (int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x00E992E0, TempListPool_TList_1_Rewired_ControllerTemplateElementTarget_ *, TempListPool_GetTList, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CBD1F0, TempListPool_GetTList__MethodInfo); DO_APP_FUNC(0x00E992E0, TempListPool_TList_1_System_Object_ *, TempListPool_GetTList_1, (MethodInfo * method)); DO_APP_FUNC(0x00E9A870, TempListPool_TList_1_Rewired_ControllerTemplateElementTarget_ *, TempListPool_GetTList_2, (int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x00E9A870, TempListPool_TList_1_System_Int32Enum_ *, TempListPool_GetTList_3, (int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x00E9A870, TempListPool_TList_1_System_Object_ *, TempListPool_GetTList_4, (int32_t capacity, MethodInfo * method)); DO_APP_FUNC(0x00E9A8B0, void, TempListPool_Return, (List_1_Rewired_ControllerTemplateElementTarget_ * list, MethodInfo * method)); DO_APP_FUNC(0x00E9AB10, void, TempListPool_Return_1, (List_1_System_Int32_ * list, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEEDC0, TempListPool_Return_1__MethodInfo); DO_APP_FUNC(0x00E9AD70, void, TempListPool_Return_2, (List_1_System_Int32Enum_ * list, MethodInfo * method)); DO_APP_FUNC(0x00E9AFD0, void, TempListPool_Return_3, (List_1_System_Object_ * list, MethodInfo * method)); DO_APP_FUNC(0x00E9B230, void, TempListPool_Return_4, (List_1_System_Object_ * list1, List_1_System_Object_ * list2, MethodInfo * method)); DO_APP_FUNC(0x00E9B270, void, TempListPool_Return_5, (List_1_System_Object_ * list1, List_1_System_Object_ * list2, List_1_System_Object_ * list3, MethodInfo * method)); DO_APP_FUNC(0x00E9B2D0, void, TempListPool_ReturnTList, (TempListPool_TList_1_System_Object_ * tList, MethodInfo * method)); -DO_APP_FUNC(0x00E9B2F0, void, TextGeneratorUtilities_ResizeInternalArray, (Int32__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x00E9B2F0, void, TextGeneratorUtilities_ResizeInternalArray_1, (Object__Array * array, MethodInfo * method)); -DO_APP_FUNC(0x00E97870, void, TextInfo_1_Resize, (LinkInfo__Array * array, int32_t size, MethodInfo * method)); -DO_APP_FUNC(0x00E97870, void, TextInfo_1_Resize_1, (Object__Array * array, int32_t size, MethodInfo * method)); -DO_APP_FUNC(0x00E97870, void, TextInfo_1_Resize_2, (WordInfo__Array * array, int32_t size, MethodInfo * method)); -DO_APP_FUNC(0x00E97900, void, TextInfo_1_Resize_3, (MeshInfo__Array * array, int32_t size, bool isBlockAllocated, MethodInfo * method)); -DO_APP_FUNC(0x00E97900, void, TextInfo_1_Resize_4, (Object__Array * array, int32_t size, bool isBlockAllocated, MethodInfo * method)); -DO_APP_FUNC(0x00E97900, void, TextInfo_1_Resize_5, (PageInfo__Array * array, int32_t size, bool isBlockAllocated, MethodInfo * method)); -DO_APP_FUNC(0x00E97900, void, TextInfo_1_Resize_6, (TextElementInfo__Array * array, int32_t size, bool isBlockAllocated, MethodInfo * method)); +DO_APP_FUNC(0x00E9B2F0, void, TextGeneratorUtilities_ResizeInternalArray, (Int32__Array * * array, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D20330, TextGeneratorUtilities_ResizeInternalArray__MethodInfo); +DO_APP_FUNC(0x00E9B2F0, void, TextGeneratorUtilities_ResizeInternalArray_1, (Object__Array * * array, MethodInfo * method)); +DO_APP_FUNC(0x00E97870, void, TextInfo_1_Resize, (LinkInfo__Array * * array, int32_t size, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1EA40, TextInfo_1_Resize__MethodInfo); +DO_APP_FUNC(0x00E97870, void, TextInfo_1_Resize_1, (Object__Array * * array, int32_t size, MethodInfo * method)); +DO_APP_FUNC(0x00E97870, void, TextInfo_1_Resize_2, (WordInfo__Array * * array, int32_t size, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E380, TextInfo_1_Resize_2__MethodInfo); +DO_APP_FUNC(0x00E97900, void, TextInfo_1_Resize_3, (MeshInfo__Array * * array, int32_t size, bool isBlockAllocated, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E918, TextInfo_1_Resize_3__MethodInfo); +DO_APP_FUNC(0x00E97900, void, TextInfo_1_Resize_4, (Object__Array * * array, int32_t size, bool isBlockAllocated, MethodInfo * method)); +DO_APP_FUNC(0x00E97900, void, TextInfo_1_Resize_5, (PageInfo__Array * * array, int32_t size, bool isBlockAllocated, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E388, TextInfo_1_Resize_5__MethodInfo); +DO_APP_FUNC(0x00E97900, void, TextInfo_1_Resize_6, (TextElementInfo__Array * * array, int32_t size, bool isBlockAllocated, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D1E908, TextInfo_1_Resize_6__MethodInfo); DO_APP_FUNC(0x00E9B380, NativeArray_1_UnityEngine_Color_, Texture2D_GetRawTextureData_1, (Texture2D * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFFD88, Texture2D_GetRawTextureData_1__MethodInfo); DO_APP_FUNC(0x00E9B4E0, NativeArray_1_UnityEngine_Color32_, Texture2D_GetRawTextureData_2, (Texture2D * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFFCE8, Texture2D_GetRawTextureData_2__MethodInfo); DO_APP_FUNC(0x00E9B640, void, Texture2D_SetPixelData, (Texture2D * __this, Object__Array * data, int32_t mipLevel, int32_t sourceDataStartIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFFD10, Texture2D_SetPixelData__MethodInfo); DO_APP_FUNC(0x00E9B890, void, Texture2DArray_SetPixelData, (Texture2DArray * __this, NativeArray_1_System_Byte_ data, int32_t mipLevel, int32_t element, int32_t sourceDataStartIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCB8B0, Texture2DArray_SetPixelData__MethodInfo); DO_APP_FUNC(0x00E9BAA0, void, Texture3D_SetPixelData, (Texture3D * __this, Object__Array * data, int32_t mipLevel, int32_t sourceDataStartIndex, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFFCA8, Texture3D_SetPixelData__MethodInfo); DO_APP_FUNC(0x00E9BCF0, bool, ThreadPool_QueueUserWorkItem_2, (Action_1_Object_ * callBack, Object * state, bool preferLocal, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFFC08, ThreadPool_QueueUserWorkItem_2__MethodInfo); DO_APP_FUNC(0x00E9BE90, void, ThrowHelper_1_IfNullAndNullsAreIllegalThenThrow, (Object * value, ExceptionArgument__Enum argName, MethodInfo * method)); DO_APP_FUNC(0x00E9BE90, void, ThrowHelper_1_IfNullAndNullsAreIllegalThenThrow_1, (Object * value, ExceptionArgument__Enum argName, MethodInfo * method)); DO_APP_FUNC(0x00E9BE90, void, ThrowHelper_1_IfNullAndNullsAreIllegalThenThrow_2, (Object * value, ExceptionArgument__Enum argName, MethodInfo * method)); @@ -216103,12 +240049,16 @@ DO_APP_FUNC(0x00E9C6F0, Tuple_3_Object_Memory_1_Byte_Object_ *, Tuple_Create_1, DO_APP_FUNC(0x00E9C790, Tuple_3_Object_Object_Object_ *, Tuple_Create_2, (Object * item1, Object * item2, Object * item3, MethodInfo * method)); DO_APP_FUNC(0x00E9C820, Object *, TypeHelpers_As, (Object * obj, MethodInfo * method)); DO_APP_FUNC(0x00E9C880, void, UIRenderDevice_DrawRanges, (UIRenderDevice * __this, Utility_GPUBuffer_1_System_UInt16_ * ib, Utility_GPUBuffer_1_UnityEngine_UIElements_Vertex_ * vb, NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange_ ranges, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D037F0, UIRenderDevice_DrawRanges__MethodInfo); DO_APP_FUNC(0x00E9C9F0, NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange_, UIRenderDevice_PtrToSlice, (Void * p, int32_t count, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7A40, UIRenderDevice_PtrToSlice__MethodInfo); DO_APP_FUNC(0x00E9CA70, Object *, UQueryExtensions_Q_1, (VisualElement * e, String * name, String * className, MethodInfo * method)); DO_APP_FUNC(0x00E9D8B0, UQueryBuilder_1_System_Object_, UQueryExtensions_Query, (VisualElement * e, String * name, String * className, MethodInfo * method)); -DO_APP_FUNC(0x00E9DC40, Object *, UdpEvent_As, (UdpEvent__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00E9DCA0, void, UdpEvent_As_1, (UdpEvent__Boxed * __this, Object * a, Object * b, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03790, UQueryExtensions_Query__MethodInfo); +DO_APP_FUNC(0x00E9DC40, Object *, UdpEvent_As, (UdpEvent * __this, MethodInfo * method)); +DO_APP_FUNC(0x00E9DCA0, void, UdpEvent_As_1, (UdpEvent * __this, Object * * a, Object * * b, MethodInfo * method)); DO_APP_FUNC(0x00E9DE90, String *, UdpSessionFilter_ToDebugString, (UdpSessionFilter * __this, IDictionary_2_System_Object_System_Object_ * dictionary, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CB6678, UdpSessionFilter_ToDebugString__MethodInfo); DO_APP_FUNC(0x00E9E210, Object *, UdpSocket_GetSocket, (UdpSocket * __this, MethodInfo * method)); DO_APP_FUNC(0x00E9E2A0, String *, UdpUtils_Join, (IEnumerable_1_System_Object_ * items, String * seperator, MethodInfo * method)); DO_APP_FUNC(0x00E9E5C0, Object__Array *, UltimateCharacterLocomotion_GetAbilities_2, (UltimateCharacterLocomotion * __this, MethodInfo * method)); @@ -216124,9 +240074,13 @@ DO_APP_FUNC(0x00E9EFD0, void, UnityTools_ForEachComponent_2, (Transform * transf DO_APP_FUNC(0x00E9F050, void, UnityTools_ForEachComponent_3, (Component * component, Action_1_Object_ * delegate, bool includeChildren, MethodInfo * method)); DO_APP_FUNC(0x00E9F130, void, UnityTools_ForEachComponent_4, (GameObject * gameObject, Action_1_Object_ * delegate, bool includeChildren, MethodInfo * method)); DO_APP_FUNC(0x00E9F210, void, UnityTools_ForEachComponent_5, (Transform * transform, Action_1_Object_ * delegate, bool includeChildren, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D036B8, UnityTools_ForEachComponent_5__MethodInfo); DO_APP_FUNC(0x00E9F760, void, UnityTools_ForEachComponentInChildren, (Component * component, Action_1_Object_ * delegate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03638, UnityTools_ForEachComponentInChildren__MethodInfo); DO_APP_FUNC(0x00E9F940, void, UnityTools_ForEachComponentInChildren_1, (GameObject * gameObject, Action_1_Object_ * delegate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03668, UnityTools_ForEachComponentInChildren_1__MethodInfo); DO_APP_FUNC(0x00E9FB20, void, UnityTools_ForEachComponentInChildren_2, (Transform * transform, Action_1_Object_ * delegate, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03608, UnityTools_ForEachComponentInChildren_2__MethodInfo); DO_APP_FUNC(0x00E9FDD0, Object *, UnityTools_GetComponent_6, (Component * component, MethodInfo * method)); DO_APP_FUNC(0x00E9FF60, Object *, UnityTools_GetComponent_7, (GameObject * gameObject, MethodInfo * method)); DO_APP_FUNC(0x00EA01C0, Object *, UnityTools_GetComponent_8, (Transform * transform, MethodInfo * method)); @@ -216155,798 +240109,829 @@ DO_APP_FUNC(0x00EA2F30, List_1_System_Object_ *, UnityTools_GetComponents_15, (C DO_APP_FUNC(0x00EA3120, List_1_System_Object_ *, UnityTools_GetComponents_16, (GameObject * gameObject, bool includeInactive, MethodInfo * method)); DO_APP_FUNC(0x00EA34C0, List_1_System_Object_ *, UnityTools_GetComponents_17, (Transform * transform, bool includeInactive, MethodInfo * method)); DO_APP_FUNC(0x00EA36B0, int32_t, UnityTools_GetComponents_18, (Component * component, List_1_System_Object_ * results, bool append, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D034C0, UnityTools_GetComponents_18__MethodInfo); DO_APP_FUNC(0x00EA38B0, int32_t, UnityTools_GetComponents_19, (GameObject * gameObject, List_1_System_Object_ * results, bool append, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03478, UnityTools_GetComponents_19__MethodInfo); DO_APP_FUNC(0x00EA3D30, int32_t, UnityTools_GetComponents_20, (Transform * transform, List_1_System_Object_ * results, bool append, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03498, UnityTools_GetComponents_20__MethodInfo); DO_APP_FUNC(0x00EA3F30, int32_t, UnityTools_GetComponents_21, (Component * component, bool includeInactive, List_1_System_Object_ * results, bool append, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03440, UnityTools_GetComponents_21__MethodInfo); DO_APP_FUNC(0x00EA4130, int32_t, UnityTools_GetComponents_22, (GameObject * gameObject, bool includeInactive, List_1_System_Object_ * results, bool append, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03428, UnityTools_GetComponents_22__MethodInfo); DO_APP_FUNC(0x00EA45F0, int32_t, UnityTools_GetComponents_23, (Transform * transform, bool includeInactive, List_1_System_Object_ * results, bool append, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03458, UnityTools_GetComponents_23__MethodInfo); DO_APP_FUNC(0x00EA47F0, List_1_System_Object_ *, UnityTools_GetComponentsInChildren_6, (Component * component, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03410, UnityTools_GetComponentsInChildren_6__MethodInfo); DO_APP_FUNC(0x00EA49C0, List_1_System_Object_ *, UnityTools_GetComponentsInChildren_7, (GameObject * gameObject, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03420, UnityTools_GetComponentsInChildren_7__MethodInfo); DO_APP_FUNC(0x00EA4B90, List_1_System_Object_ *, UnityTools_GetComponentsInChildren_8, (Transform * transform, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03418, UnityTools_GetComponentsInChildren_8__MethodInfo); DO_APP_FUNC(0x00EA4E30, List_1_System_Object_ *, UnityTools_GetComponentsInChildren_9, (Component * component, bool includeInactive, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D033F8, UnityTools_GetComponentsInChildren_9__MethodInfo); DO_APP_FUNC(0x00EA5010, List_1_System_Object_ *, UnityTools_GetComponentsInChildren_10, (GameObject * gameObject, bool includeInactive, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03408, UnityTools_GetComponentsInChildren_10__MethodInfo); DO_APP_FUNC(0x00EA51F0, List_1_System_Object_ *, UnityTools_GetComponentsInChildren_11, (Transform * transform, bool includeInactive, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D033D8, UnityTools_GetComponentsInChildren_11__MethodInfo); DO_APP_FUNC(0x00EA54A0, int32_t, UnityTools_GetComponentsInChildren_12, (Component * component, List_1_System_Object_ * results, bool append, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D033D0, UnityTools_GetComponentsInChildren_12__MethodInfo); DO_APP_FUNC(0x00EA56A0, int32_t, UnityTools_GetComponentsInChildren_13, (GameObject * gameObject, List_1_System_Object_ * results, bool append, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D033E8, UnityTools_GetComponentsInChildren_13__MethodInfo); DO_APP_FUNC(0x00EA58A0, int32_t, UnityTools_GetComponentsInChildren_14, (Transform * transform, List_1_System_Object_ * results, bool append, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D033B0, UnityTools_GetComponentsInChildren_14__MethodInfo); DO_APP_FUNC(0x00EA5B80, int32_t, UnityTools_GetComponentsInChildren_15, (Component * component, bool includeInactive, List_1_System_Object_ * results, bool append, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D033C8, UnityTools_GetComponentsInChildren_15__MethodInfo); DO_APP_FUNC(0x00EA5D80, int32_t, UnityTools_GetComponentsInChildren_16, (GameObject * gameObject, bool includeInactive, List_1_System_Object_ * results, bool append, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D033C0, UnityTools_GetComponentsInChildren_16__MethodInfo); DO_APP_FUNC(0x00EA5F80, int32_t, UnityTools_GetComponentsInChildren_17, (Transform * transform, bool includeInactive, List_1_System_Object_ * results, bool append, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D033A0, UnityTools_GetComponentsInChildren_17__MethodInfo); DO_APP_FUNC(0x00EA6270, List_1_System_Object_ *, UnityTools_GetComponentsInParents_6, (Component * component, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D033A8, UnityTools_GetComponentsInParents_6__MethodInfo); DO_APP_FUNC(0x00EA6440, List_1_System_Object_ *, UnityTools_GetComponentsInParents_7, (GameObject * gameObject, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03388, UnityTools_GetComponentsInParents_7__MethodInfo); DO_APP_FUNC(0x00EA6610, List_1_System_Object_ *, UnityTools_GetComponentsInParents_8, (Transform * transform, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03378, UnityTools_GetComponentsInParents_8__MethodInfo); DO_APP_FUNC(0x00EA6910, int32_t, UnityTools_GetComponentsInParents_9, (Component * component, List_1_System_Object_ * results, bool append, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03398, UnityTools_GetComponentsInParents_9__MethodInfo); DO_APP_FUNC(0x00EA6B10, int32_t, UnityTools_GetComponentsInParents_10, (GameObject * gameObject, List_1_System_Object_ * results, bool append, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03360, UnityTools_GetComponentsInParents_10__MethodInfo); DO_APP_FUNC(0x00EA6F00, int32_t, UnityTools_GetComponentsInParents_11, (Transform * transform, List_1_System_Object_ * results, bool append, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03368, UnityTools_GetComponentsInParents_11__MethodInfo); DO_APP_FUNC(0x00EA7100, List_1_System_Object_ *, UnityTools_GetComponentsInSelfAndChildren_3, (Component * component, MethodInfo * method)); DO_APP_FUNC(0x00EA72D0, List_1_System_Object_ *, UnityTools_GetComponentsInSelfAndChildren_4, (GameObject * gameObject, MethodInfo * method)); DO_APP_FUNC(0x00EA7620, List_1_System_Object_ *, UnityTools_GetComponentsInSelfAndChildren_5, (Transform * transform, MethodInfo * method)); DO_APP_FUNC(0x00EA77F0, int32_t, UnityTools_GetComponentsInSelfAndChildren_6, (Component * component, List_1_System_Object_ * results, bool append, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03350, UnityTools_GetComponentsInSelfAndChildren_6__MethodInfo); DO_APP_FUNC(0x00EA79F0, int32_t, UnityTools_GetComponentsInSelfAndChildren_7, (GameObject * gameObject, List_1_System_Object_ * results, bool append, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03340, UnityTools_GetComponentsInSelfAndChildren_7__MethodInfo); DO_APP_FUNC(0x00EA7BF0, int32_t, UnityTools_GetComponentsInSelfAndChildren_8, (Transform * transform, List_1_System_Object_ * results, bool append, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03320, UnityTools_GetComponentsInSelfAndChildren_8__MethodInfo); DO_APP_FUNC(0x00EA8150, int32_t, UnityTools_GetComponentsInSelfAndChildren_9, (Component * component, bool includeInactive, List_1_System_Object_ * results, bool append, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03348, UnityTools_GetComponentsInSelfAndChildren_9__MethodInfo); DO_APP_FUNC(0x00EA8350, int32_t, UnityTools_GetComponentsInSelfAndChildren_10, (GameObject * gameObject, bool includeInactive, List_1_System_Object_ * results, bool append, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03308, UnityTools_GetComponentsInSelfAndChildren_10__MethodInfo); DO_APP_FUNC(0x00EA8550, int32_t, UnityTools_GetComponentsInSelfAndChildren_11, (Transform * transform, bool includeInactive, List_1_System_Object_ * results, bool append, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03318, UnityTools_GetComponentsInSelfAndChildren_11__MethodInfo); DO_APP_FUNC(0x00EA8B10, Object *, UnityTools_Instantiate_2, (Object_1 * original, Transform * parent, bool instantiateInWorldSpace, MethodInfo * method)); DO_APP_FUNC(0x00EA8C40, Object *, UnityTools_Instantiate_3, (Object_1 * original, Vector3 position, Quaternion rotation, Transform * parent, bool instantiateInWorldSpace, MethodInfo * method)); DO_APP_FUNC(0x00EA9AC0, bool, UnityTools_IsNullOrDestroyed_1, (Object * object, MethodInfo * method)); DO_APP_FUNC(0x00EA9C60, bool, UnityTools_IsObjectInScene, (Object * object, MethodInfo * method)); DO_APP_FUNC(0x00EA9E50, Object *, UnityTools_dCVRyeIJDsIwDOBlXEDTsOjAHsUg, (Object * param_0000c44b, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, ArraySegment_1_Byte_, Unsafe_Add, (ArraySegment_1_Byte_ source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FF0, AsyncOperationHandle_1_System_Object_, Unsafe_Add_1, (AsyncOperationHandle_1_System_Object_ source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FF0, VoiceSender_1_TPeer_ChannelDelta_Dissonance_Integrations_PhotonBolt_BoltPeer_, Unsafe_Add_2, (VoiceSender_1_TPeer_ChannelDelta_Dissonance_Integrations_PhotonBolt_BoltPeer_ source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA000, IntervalTree_1_T_Entry_System_Object_, Unsafe_Add_3, (IntervalTree_1_T_Entry_System_Object_ source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object_, Unsafe_Add_4, (IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object_ source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object_, Unsafe_Add_5, (IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object_ source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FF0, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_, Unsafe_Add_6, (IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA000, KeyValuePair_2_System_Guid_System_Object_, Unsafe_Add_7, (KeyValuePair_2_System_Guid_System_Object_ source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA010, KeyValuePair_2_System_Int32_System_Int32_, Unsafe_Add_8, (KeyValuePair_2_System_Int32_System_Int32_ source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, KeyValuePair_2_System_Int32_System_Object_, Unsafe_Add_9, (KeyValuePair_2_System_Int32_System_Object_ source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, KeyValuePair_2_System_Int32Enum_System_Object_, Unsafe_Add_10, (KeyValuePair_2_System_Int32Enum_System_Object_ source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA000, KeyValuePair_2_System_Object_System_ArraySegment_1_, Unsafe_Add_11, (KeyValuePair_2_System_Object_System_ArraySegment_1_ source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, KeyValuePair_2_System_Object_System_Char_, Unsafe_Add_12, (KeyValuePair_2_System_Object_System_Char_ source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, KeyValuePair_2_System_Object_System_Object_, Unsafe_Add_13, (KeyValuePair_2_System_Object_System_Object_ source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA020, KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_, Unsafe_Add_14, (KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, KeyValuePair_2_UnityEngine_PropertyName_System_Object_, Unsafe_Add_15, (KeyValuePair_2_UnityEngine_PropertyName_System_Object_ source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer_, Unsafe_Add_16, (KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer_ source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, KeyValuePair_2_System_UInt16_System_Object_, Unsafe_Add_17, (KeyValuePair_2_System_UInt16_System_Object_ source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, KeyValuePair_2_System_UInt64_System_Object_, Unsafe_Add_18, (KeyValuePair_2_System_UInt64_System_Object_ source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, NativeArray_1_System_UInt16_, Unsafe_Add_19, (NativeArray_1_System_UInt16_ source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, NativeArray_1_UnityEngine_UIElements_Vertex_, Unsafe_Add_20, (NativeArray_1_UnityEngine_UIElements_Vertex_ source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, RenderGraphResourcePool_1_Type_ResourceLogInfo_System_Object_, Unsafe_Add_21, (RenderGraphResourcePool_1_Type_ResourceLogInfo_System_Object_ source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, STuple_2_System_Object_System_Object_, Unsafe_Add_22, (STuple_2_System_Object_System_Object_ source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, ValueTuple_2_Int32_Object_, Unsafe_Add_23, (ValueTuple_2_Int32_Object_ source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA030, ValueTuple_2_Int32_UnityEngine_Vector2Int_, Unsafe_Add_24, (ValueTuple_2_Int32_UnityEngine_Vector2Int_ source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA000, ValueTuple_2_Object_ValueTuple_2_Object_Int32_, Unsafe_Add_25, (ValueTuple_2_Object_ValueTuple_2_Object_Int32_ source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, ValueTuple_2_Object_Object_, Unsafe_Add_26, (ValueTuple_2_Object_Object_ source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA000, ValueTuple_2_UnityEngine_Vector3Int_Object_, Unsafe_Add_27, (ValueTuple_2_UnityEngine_Vector3Int_Object_ source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA040, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_, Unsafe_Add_28, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_ source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA050, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_, Unsafe_Add_29, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_ source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA010, AnimatorClipInfo, Unsafe_Add_30, (AnimatorClipInfo source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA000, AsyncOperationHandle, Unsafe_Add_31, (AsyncOperationHandle source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA010, BoltPeer, Unsafe_Add_32, (BoltPeer source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA000, BoltPhysicsHit, Unsafe_Add_33, (BoltPhysicsHit source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FF0, BoneWeight, Unsafe_Add_34, (BoneWeight source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA060, bool, Unsafe_Add_35, (bool source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA060, uint8_t, Unsafe_Add_36, (uint8_t source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA070, uint8_t, Unsafe_Add_37, (uint8_t source, void * elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, ArraySegment_1_Byte_ *, Unsafe_Add, (ArraySegment_1_Byte_ * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FF0, AsyncOperationHandle_1_System_Object_ *, Unsafe_Add_1, (AsyncOperationHandle_1_System_Object_ * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FF0, VoiceSender_1_TPeer_ChannelDelta_Dissonance_Integrations_PhotonBolt_BoltPeer_ *, Unsafe_Add_2, (VoiceSender_1_TPeer_ChannelDelta_Dissonance_Integrations_PhotonBolt_BoltPeer_ * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA000, IntervalTree_1_T_Entry_System_Object_ *, Unsafe_Add_3, (IntervalTree_1_T_Entry_System_Object_ * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object_ *, Unsafe_Add_4, (IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object_ * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object_ *, Unsafe_Add_5, (IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object_ * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FF0, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ *, Unsafe_Add_6, (IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA000, KeyValuePair_2_System_Guid_System_Object_ *, Unsafe_Add_7, (KeyValuePair_2_System_Guid_System_Object_ * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA010, KeyValuePair_2_System_Int32_System_Int32_ *, Unsafe_Add_8, (KeyValuePair_2_System_Int32_System_Int32_ * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, KeyValuePair_2_System_Int32_System_Object_ *, Unsafe_Add_9, (KeyValuePair_2_System_Int32_System_Object_ * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, KeyValuePair_2_System_Int32Enum_System_Object_ *, Unsafe_Add_10, (KeyValuePair_2_System_Int32Enum_System_Object_ * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA000, KeyValuePair_2_System_Object_System_ArraySegment_1_ *, Unsafe_Add_11, (KeyValuePair_2_System_Object_System_ArraySegment_1_ * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, KeyValuePair_2_System_Object_System_Char_ *, Unsafe_Add_12, (KeyValuePair_2_System_Object_System_Char_ * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, KeyValuePair_2_System_Object_System_Object_ *, Unsafe_Add_13, (KeyValuePair_2_System_Object_System_Object_ * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA020, KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ *, Unsafe_Add_14, (KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, KeyValuePair_2_UnityEngine_PropertyName_System_Object_ *, Unsafe_Add_15, (KeyValuePair_2_UnityEngine_PropertyName_System_Object_ * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer_ *, Unsafe_Add_16, (KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer_ * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, KeyValuePair_2_System_UInt16_System_Object_ *, Unsafe_Add_17, (KeyValuePair_2_System_UInt16_System_Object_ * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, KeyValuePair_2_System_UInt64_System_Object_ *, Unsafe_Add_18, (KeyValuePair_2_System_UInt64_System_Object_ * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, NativeArray_1_System_UInt16_ *, Unsafe_Add_19, (NativeArray_1_System_UInt16_ * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, NativeArray_1_UnityEngine_UIElements_Vertex_ *, Unsafe_Add_20, (NativeArray_1_UnityEngine_UIElements_Vertex_ * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, RenderGraphResourcePool_1_Type_ResourceLogInfo_System_Object_ *, Unsafe_Add_21, (RenderGraphResourcePool_1_Type_ResourceLogInfo_System_Object_ * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, STuple_2_System_Object_System_Object_ *, Unsafe_Add_22, (STuple_2_System_Object_System_Object_ * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, ValueTuple_2_Int32_Object_ *, Unsafe_Add_23, (ValueTuple_2_Int32_Object_ * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA030, ValueTuple_2_Int32_UnityEngine_Vector2Int_ *, Unsafe_Add_24, (ValueTuple_2_Int32_UnityEngine_Vector2Int_ * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA000, ValueTuple_2_Object_ValueTuple_2_Object_Int32_ *, Unsafe_Add_25, (ValueTuple_2_Object_ValueTuple_2_Object_Int32_ * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, ValueTuple_2_Object_Object_ *, Unsafe_Add_26, (ValueTuple_2_Object_Object_ * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA000, ValueTuple_2_UnityEngine_Vector3Int_Object_ *, Unsafe_Add_27, (ValueTuple_2_UnityEngine_Vector3Int_Object_ * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA040, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_ *, Unsafe_Add_28, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_ * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA050, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_ *, Unsafe_Add_29, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_ * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA010, AnimatorClipInfo *, Unsafe_Add_30, (AnimatorClipInfo * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA000, AsyncOperationHandle *, Unsafe_Add_31, (AsyncOperationHandle * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA010, BoltPeer *, Unsafe_Add_32, (BoltPeer * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA000, BoltPhysicsHit *, Unsafe_Add_33, (BoltPhysicsHit * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FF0, BoneWeight *, Unsafe_Add_34, (BoneWeight * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA060, bool *, Unsafe_Add_35, (bool * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA060, uint8_t *, Unsafe_Add_36, (uint8_t * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA070, uint8_t *, Unsafe_Add_37, (uint8_t * source, void * elementOffset, MethodInfo * method)); DO_APP_FUNC(0x00EAA060, Void *, Unsafe_Add_38, (Void * source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA010, CancellationToken, Unsafe_Add_39, (CancellationToken source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA080, uint16_t, Unsafe_Add_40, (uint16_t source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA090, uint16_t, Unsafe_Add_41, (uint16_t source, void * elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA000, ClientInfo, Unsafe_Add_42, (ClientInfo source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, Color, Unsafe_Add_43, (Color source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA0A0, Color32, Unsafe_Add_44, (Color32 source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA0B0, CombineInstance, Unsafe_Add_45, (CombineInstance source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA000, ComputedTransitionProperty, Unsafe_Add_46, (ComputedTransitionProperty source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, Connection, Unsafe_Add_47, (Connection source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA040, ControllerPollingInfo, Unsafe_Add_48, (ControllerPollingInfo source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, ControllerTemplateElementTarget, Unsafe_Add_49, (ControllerTemplateElementTarget source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA0C0, CurveSample, Unsafe_Add_50, (CurveSample source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA010, DateTime, Unsafe_Add_51, (DateTime source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, DateTimeOffset, Unsafe_Add_52, (DateTimeOffset source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, Decimal, Unsafe_Add_53, (Decimal source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA0D0, DiagnosticEvent, Unsafe_Add_54, (DiagnosticEvent source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA010, double, Unsafe_Add_55, (double source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA0A0, EasingFunction, Unsafe_Add_56, (EasingFunction source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA0E0, ElementAssignmentConflictInfo, Unsafe_Add_57, (ElementAssignmentConflictInfo source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA000, Entitlement, Unsafe_Add_58, (Entitlement source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, EventReliable, Unsafe_Add_59, (EventReliable source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA000, EventUnreliable, Unsafe_Add_60, (EventUnreliable source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA000, FileStat, Unsafe_Add_61, (FileStat source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA0E0, GlyphPairAdjustmentRecord, Unsafe_Add_62, (GlyphPairAdjustmentRecord source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, GlyphRect, Unsafe_Add_63, (GlyphRect source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, Guid, Unsafe_Add_64, (Guid source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA000, InputActionSourceData, Unsafe_Add_65, (InputActionSourceData source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA0F0, InputBinding, Unsafe_Add_66, (InputBinding source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, InputDevice_1, Unsafe_Add_67, (InputDevice_1 source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA040, InputDeviceDescription, Unsafe_Add_68, (InputDeviceDescription source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA010, InputEventPtr, Unsafe_Add_69, (InputEventPtr source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA080, int16_t, Unsafe_Add_70, (int16_t source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA030, Int3, Unsafe_Add_71, (Int3 source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA0A0, int32_t, Unsafe_Add_72, (int32_t source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA0A0, Int32Enum__Enum, Unsafe_Add_73, (Int32Enum__Enum source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA010, int64_t, Unsafe_Add_74, (int64_t source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, IntPoint, Unsafe_Add_75, (IntPoint source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA010, void *, Unsafe_Add_76, (void * source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA100, void *, Unsafe_Add_77, (void * source, void * elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, IntRect, Unsafe_Add_78, (IntRect source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, InternedString, Unsafe_Add_79, (InternedString source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, InterpretedFrameInfo, Unsafe_Add_80, (InterpretedFrameInfo source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA000, IntervalTreeNode, Unsafe_Add_81, (IntervalTreeNode source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA000, ItemDefinitionAmount, Unsafe_Add_82, (ItemDefinitionAmount source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, KickedPlayer, Unsafe_Add_83, (KickedPlayer source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA0A0, LayerMask, Unsafe_Add_84, (LayerMask source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA030, ManipulatorActivationFilter, Unsafe_Add_85, (ManipulatorActivationFilter source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA110, Matrix4x4, Unsafe_Add_86, (Matrix4x4 source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA000, NameAndParameters, Unsafe_Add_87, (NameAndParameters source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA000, NamedValue, Unsafe_Add_88, (NamedValue source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FF0, NetworkPropertyInfo, Unsafe_Add_89, (NetworkPropertyInfo source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA010, Object *, Unsafe_Add_90, (Object * source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA100, Object *, Unsafe_Add_91, (Object * source, void * elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA010, CancellationToken *, Unsafe_Add_39, (CancellationToken * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA080, uint16_t *, Unsafe_Add_40, (uint16_t * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA090, uint16_t *, Unsafe_Add_41, (uint16_t * source, void * elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA000, ClientInfo *, Unsafe_Add_42, (ClientInfo * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, Color *, Unsafe_Add_43, (Color * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA0A0, Color32 *, Unsafe_Add_44, (Color32 * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA0B0, CombineInstance *, Unsafe_Add_45, (CombineInstance * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA000, ComputedTransitionProperty *, Unsafe_Add_46, (ComputedTransitionProperty * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, Connection *, Unsafe_Add_47, (Connection * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA040, ControllerPollingInfo *, Unsafe_Add_48, (ControllerPollingInfo * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, ControllerTemplateElementTarget *, Unsafe_Add_49, (ControllerTemplateElementTarget * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA0C0, CurveSample *, Unsafe_Add_50, (CurveSample * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA010, DateTime *, Unsafe_Add_51, (DateTime * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, DateTimeOffset *, Unsafe_Add_52, (DateTimeOffset * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, Decimal *, Unsafe_Add_53, (Decimal * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA0D0, DiagnosticEvent *, Unsafe_Add_54, (DiagnosticEvent * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA010, double *, Unsafe_Add_55, (double * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA0A0, EasingFunction *, Unsafe_Add_56, (EasingFunction * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA0E0, ElementAssignmentConflictInfo *, Unsafe_Add_57, (ElementAssignmentConflictInfo * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA000, Entitlement *, Unsafe_Add_58, (Entitlement * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, EventReliable *, Unsafe_Add_59, (EventReliable * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA000, EventUnreliable *, Unsafe_Add_60, (EventUnreliable * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA000, FileStat *, Unsafe_Add_61, (FileStat * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA0E0, GlyphPairAdjustmentRecord *, Unsafe_Add_62, (GlyphPairAdjustmentRecord * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, GlyphRect *, Unsafe_Add_63, (GlyphRect * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, Guid *, Unsafe_Add_64, (Guid * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA000, InputActionSourceData *, Unsafe_Add_65, (InputActionSourceData * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA0F0, InputBinding *, Unsafe_Add_66, (InputBinding * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, InputDevice_1 *, Unsafe_Add_67, (InputDevice_1 * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA040, InputDeviceDescription *, Unsafe_Add_68, (InputDeviceDescription * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA010, InputEventPtr *, Unsafe_Add_69, (InputEventPtr * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA080, int16_t *, Unsafe_Add_70, (int16_t * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA030, Int3 *, Unsafe_Add_71, (Int3 * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA0A0, int32_t *, Unsafe_Add_72, (int32_t * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA0A0, Int32Enum__Enum *, Unsafe_Add_73, (Int32Enum__Enum * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA010, int64_t *, Unsafe_Add_74, (int64_t * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, IntPoint *, Unsafe_Add_75, (IntPoint * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA010, void * *, Unsafe_Add_76, (void * * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA100, void * *, Unsafe_Add_77, (void * * source, void * elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, IntRect *, Unsafe_Add_78, (IntRect * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, InternedString *, Unsafe_Add_79, (InternedString * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, InterpretedFrameInfo *, Unsafe_Add_80, (InterpretedFrameInfo * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA000, IntervalTreeNode *, Unsafe_Add_81, (IntervalTreeNode * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA000, ItemDefinitionAmount *, Unsafe_Add_82, (ItemDefinitionAmount * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, KickedPlayer *, Unsafe_Add_83, (KickedPlayer * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA0A0, LayerMask *, Unsafe_Add_84, (LayerMask * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA030, ManipulatorActivationFilter *, Unsafe_Add_85, (ManipulatorActivationFilter * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA110, Matrix4x4 *, Unsafe_Add_86, (Matrix4x4 * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA000, NameAndParameters *, Unsafe_Add_87, (NameAndParameters * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA000, NamedValue *, Unsafe_Add_88, (NamedValue * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FF0, NetworkPropertyInfo *, Unsafe_Add_89, (NetworkPropertyInfo * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA010, Object * *, Unsafe_Add_90, (Object * * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA100, Object * *, Unsafe_Add_91, (Object * * source, void * elementOffset, MethodInfo * method)); DO_APP_FUNC(0x00EAA010, Void *, Unsafe_Add_92, (Void * source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA0D0, ObjectInitializationData, Unsafe_Add_93, (ObjectInitializationData source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FF0, OpenChannel, Unsafe_Add_94, (OpenChannel source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA030, PacketStats, Unsafe_Add_95, (PacketStats source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA050, ParticleCollisionEvent, Unsafe_Add_96, (ParticleCollisionEvent source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, Playable, Unsafe_Add_97, (Playable source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FF0, PlayableBinding, Unsafe_Add_98, (PlayableBinding source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA030, Priority, Unsafe_Add_99, (Priority source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, Quaternion, Unsafe_Add_100, (Quaternion source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, RangePositionInfo, Unsafe_Add_101, (RangePositionInfo source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA0E0, RaycastHit, Unsafe_Add_102, (RaycastHit source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA120, RaycastHit2D, Unsafe_Add_103, (RaycastHit2D source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA020, RaycastResult, Unsafe_Add_104, (RaycastResult source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, Rect, Unsafe_Add_105, (Rect source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, ReflectionProbeBlendInfo, Unsafe_Add_106, (ReflectionProbeBlendInfo source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA000, RemoteChannel, Unsafe_Add_107, (RemoteChannel source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, RenderChainTextEntry, Unsafe_Add_108, (RenderChainTextEntry source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA050, RenderTargetIdentifier, Unsafe_Add_109, (RenderTargetIdentifier source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, RendererList, Unsafe_Add_110, (RendererList source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA010, RendererListHandle, Unsafe_Add_111, (RendererListHandle source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA030, Resolution, Unsafe_Add_112, (Resolution source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA010, ResourceHandle, Unsafe_Add_113, (ResourceHandle source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA000, RoomMembership, Unsafe_Add_114, (RoomMembership source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, RuleMatcher, Unsafe_Add_115, (RuleMatcher source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA060, int8_t, Unsafe_Add_116, (int8_t source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA000, SelectorMatchRecord, Unsafe_Add_117, (SelectorMatchRecord source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA0A0, float, Unsafe_Add_118, (float source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA050, Sku, Unsafe_Add_119, (Sku source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, SslApplicationProtocol, Unsafe_Add_120, (SslApplicationProtocol source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA0A0, SteamItemDef_t, Unsafe_Add_121, (SteamItemDef_t source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, SteamItemDetails_t, Unsafe_Add_122, (SteamItemDetails_t source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, StylePropertyName, Unsafe_Add_123, (StylePropertyName source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, StylePropertyValue, Unsafe_Add_124, (StylePropertyValue source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA000, StyleSelectorPart, Unsafe_Add_125, (StyleSelectorPart source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA000, StyleSyntaxToken, Unsafe_Add_126, (StyleSyntaxToken source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA000, StyleValue, Unsafe_Add_127, (StyleValue source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, StyleValueManaged, Unsafe_Add_128, (StyleValueManaged source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA000, StyleVariable, Unsafe_Add_129, (StyleVariable source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA0D0, SubMeshDescriptor, Unsafe_Add_130, (SubMeshDescriptor source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, Substring, Unsafe_Add_131, (Substring source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA010, TimeSpan, Unsafe_Add_132, (TimeSpan source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA010, TimeValue, Unsafe_Add_133, (TimeValue source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA000, TreeViewItemWrapper, Unsafe_Add_134, (TreeViewItemWrapper source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FF0, TypeWrapper, Unsafe_Add_135, (TypeWrapper source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA030, UICharInfo, Unsafe_Add_136, (UICharInfo source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, UILineInfo, Unsafe_Add_137, (UILineInfo source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA130, UIVertex, Unsafe_Add_138, (UIVertex source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA080, uint16_t, Unsafe_Add_139, (uint16_t source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA0A0, uint32_t, Unsafe_Add_140, (uint32_t source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA010, uint64_t, Unsafe_Add_141, (uint64_t source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA000, UVTexture, Unsafe_Add_142, (UVTexture source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA140, UdpEndPoint, Unsafe_Add_143, (UdpEndPoint source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA0A0, UdpIPv4Address, Unsafe_Add_144, (UdpIPv4Address source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA010, UsageHint, Unsafe_Add_145, (UsageHint source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA050, User, Unsafe_Add_146, (User source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA010, Vector2, Unsafe_Add_147, (Vector2 source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA030, Vector3, Unsafe_Add_148, (Vector3 source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, Vector4, Unsafe_Add_149, (Vector4 source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, VertexAttributeDescriptor, Unsafe_Add_150, (VertexAttributeDescriptor source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA000, ViewConfiguration, Unsafe_Add_151, (ViewConfiguration source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA040, VoicePacket, Unsafe_Add_152, (VoicePacket source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FF0, VoxelContour, Unsafe_Add_153, (VoxelContour source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA150, Win32_IP_ADAPTER_ADDRESSES, Unsafe_Add_154, (Win32_IP_ADAPTER_ADDRESSES source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA160, Win32_IP_ADAPTER_INFO, Unsafe_Add_155, (Win32_IP_ADAPTER_INFO source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, X509ChainStatus, Unsafe_Add_156, (X509ChainStatus source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA000, XRFeatureDescriptor, Unsafe_Add_157, (XRFeatureDescriptor source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA170, XRNodeState, Unsafe_Add_158, (XRNodeState source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, AdvancedSmooth_Turn, Unsafe_Add_159, (AdvancedSmooth_Turn source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA050, AnimationOutputWeightProcessor_WeightInfo, Unsafe_Add_160, (AnimationOutputWeightProcessor_WeightInfo source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, BeforeRenderHelper_OrderBlock, Unsafe_Add_161, (BeforeRenderHelper_OrderBlock source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA010, BitmapAllocator32_Page, Unsafe_Add_162, (BitmapAllocator32_Page source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA000, Camera_RenderRequest, Unsafe_Add_163, (Camera_RenderRequest source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, CameraState_CustomBlendable, Unsafe_Add_164, (CameraState_CustomBlendable source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA010, CinemachineClearShot_Pair, Unsafe_Add_165, (CinemachineClearShot_Pair source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA010, CinemachineStateDrivenCamera_HashPair, Unsafe_Add_166, (CinemachineStateDrivenCamera_HashPair source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, ClipperLib_DoublePoint, Unsafe_Add_167, (ClipperLib_DoublePoint source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, ClipperLib_IntPoint, Unsafe_Add_168, (ClipperLib_IntPoint source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, ConfinerOven_PolygonSolution, Unsafe_Add_169, (ConfinerOven_PolygonSolution source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA030, CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB, Unsafe_Add_170, (CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FF0, DelayedActionManager_DelegateInfo, Unsafe_Add_171, (DelayedActionManager_DelegateInfo source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, EventDispatcher_CallbackWrapper, Unsafe_Add_172, (EventDispatcher_CallbackWrapper source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA000, EventDispatcher_EventListener, Unsafe_Add_173, (EventDispatcher_EventListener source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA180, EventQueue_NetworkEvent, Unsafe_Add_174, (EventQueue_NetworkEvent source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, FocusController_FocusedElement, Unsafe_Add_175, (FocusController_FocusedElement source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA120, Funnel_PathPart, Unsafe_Add_176, (Funnel_PathPart source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA000, HID_HIDCollectionDescriptor, Unsafe_Add_177, (HID_HIDCollectionDescriptor source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA0C0, HID_HIDElementDescriptor, Unsafe_Add_178, (HID_HIDElementDescriptor source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA030, HIDParser_HIDReportData, Unsafe_Add_179, (HIDParser_HIDReportData source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA0A0, HairDesignerGeneratorFurShellBase_BufferData, Unsafe_Add_180, (HairDesignerGeneratorFurShellBase_BufferData source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA050, InputActionMap_BindingOverrideJson, Unsafe_Add_181, (InputActionMap_BindingOverrideJson source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA190, InputControlLayout_ControlItem, Unsafe_Add_182, (InputControlLayout_ControlItem source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, InternalTreeView_TreeViewItemWrapper, Unsafe_Add_183, (InternalTreeView_TreeViewItemWrapper source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV, Unsafe_Add_184, (JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA0C0, JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb, Unsafe_Add_185, (JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux, Unsafe_Add_186, (JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA0C0, JsonParser_JsonValue, Unsafe_Add_187, (JsonParser_JsonValue source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, Logs_LogMessage, Unsafe_Add_188, (Logs_LogMessage source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA140, MagicLightProbes_VolumeParameters, Unsafe_Add_189, (MagicLightProbes_VolumeParameters source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, NolanBehaviour_OverlappedCollider, Unsafe_Add_190, (NolanBehaviour_OverlappedCollider source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, OpenXRInput_SerializedBinding, Unsafe_Add_191, (OpenXRInput_SerializedBinding source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, PackedPlayModeBuildLogs_RuntimeBuildLog, Unsafe_Add_192, (PackedPlayModeBuildLogs_RuntimeBuildLog source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1A0, ParticleSystem_Particle, Unsafe_Add_193, (ParticleSystem_Particle source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, ProbeBrickIndex_Brick, Unsafe_Add_194, (ProbeBrickIndex_Brick source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1B0, ProbeBrickIndex_ReservedBrick, Unsafe_Add_195, (ProbeBrickIndex_ReservedBrick source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, ProbeBrickIndex_VoxelMeta, Unsafe_Add_196, (ProbeBrickIndex_VoxelMeta source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA030, ProbeBrickPool_BrickChunkAlloc, Unsafe_Add_197, (ProbeBrickPool_BrickChunkAlloc source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, ProbeVolumePerSceneData_SerializableAssetItem, Unsafe_Add_198, (ProbeVolumePerSceneData_SerializableAssetItem source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FF0, ProbeVolumeSceneData_SerializableBoundItem, Unsafe_Add_199, (ProbeVolumeSceneData_SerializableBoundItem source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, ProbeVolumeSceneData_SerializableHasPVItem, Unsafe_Add_200, (ProbeVolumeSceneData_SerializableHasPVItem source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA050, ProbeVolumeSceneData_SerializablePVBakeSettings, Unsafe_Add_201, (ProbeVolumeSceneData_SerializablePVBakeSettings source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, ProbeVolumeSceneData_SerializablePVProfile, Unsafe_Add_202, (ProbeVolumeSceneData_SerializablePVProfile source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA0A0, RegexCharClass_SingleRange, Unsafe_Add_203, (RegexCharClass_SingleRange source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA170, RenderChain_RenderNodeData, Unsafe_Add_204, (RenderChain_RenderNodeData source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FF0, RenderGraphDebugData_PassDebugData, Unsafe_Add_205, (RenderGraphDebugData_PassDebugData source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA050, RenderGraphDebugData_ResourceDebugData, Unsafe_Add_206, (RenderGraphDebugData_ResourceDebugData source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, ResourceManager_DeferredCallbackRegisterRequest, Unsafe_Add_207, (ResourceManager_DeferredCallbackRegisterRequest source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA000, RetainedGizmos_MeshWithHash, Unsafe_Add_208, (RetainedGizmos_MeshWithHash source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA000, TemplateAsset_AttributeOverride, Unsafe_Add_209, (TemplateAsset_AttributeOverride source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, TextSettings_FontReferenceMap, Unsafe_Add_210, (TextSettings_FontReferenceMap source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA040, TextureBlitter_BlitInfo, Unsafe_Add_211, (TextureBlitter_BlitInfo source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA110, TexturePacker_JsonArray_Frame, Unsafe_Add_212, (TexturePacker_JsonArray_Frame source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, TextureRegistry_TextureInfo, Unsafe_Add_213, (TextureRegistry_TextureInfo source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA000, TimeNotificationBehaviour_NotificationEntry, Unsafe_Add_214, (TimeNotificationBehaviour_NotificationEntry source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FF0, TrackedDeviceRaycaster_RaycastHitData, Unsafe_Add_215, (TrackedDeviceRaycaster_RaycastHitData source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, TrackedPoseDriverDataDescription_PoseData, Unsafe_Add_216, (TrackedPoseDriverDataDescription_PoseData source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, TreeView_TreeViewItemWrapper, Unsafe_Add_217, (TreeView_TreeViewItemWrapper source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA010, TreeViewReorderableDragAndDropController_TreeItemState, Unsafe_Add_218, (TreeViewReorderableDragAndDropController_TreeItemState source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA170, UIRStylePainter_Entry, Unsafe_Add_219, (UIRStylePainter_Entry source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA050, UIRenderDevice_AllocToFree, Unsafe_Add_220, (UIRenderDevice_AllocToFree source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA020, UIRenderDevice_AllocToUpdate, Unsafe_Add_221, (UIRenderDevice_AllocToUpdate source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA000, UnitySynchronizationContext_WorkRequest, Unsafe_Add_222, (UnitySynchronizationContext_WorkRequest source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, VisualTreeAsset_SlotDefinition, Unsafe_Add_223, (VisualTreeAsset_SlotDefinition source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, VisualTreeAsset_SlotUsageEntry, Unsafe_Add_224, (VisualTreeAsset_SlotUsageEntry source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA000, VisualTreeAsset_UsingEntry, Unsafe_Add_225, (VisualTreeAsset_UsingEntry source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, XmlSchemaObjectTable_XmlSchemaObjectEntry, Unsafe_Add_226, (XmlSchemaObjectTable_XmlSchemaObjectEntry source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FF0, ftLightmaps_LightmapAdditionalData, Unsafe_Add_227, (ftLightmaps_LightmapAdditionalData source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA010, gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy, Unsafe_Add_228, (gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FE0, DebugUI_Foldout_ContextMenuItem, Unsafe_Add_229, (DebugUI_Foldout_ContextMenuItem source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA000, InputControlLayout_Collection_LayoutMatcher, Unsafe_Add_230, (InputControlLayout_Collection_LayoutMatcher source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EA9FF0, InstructionList_DebugView_InstructionView, Unsafe_Add_231, (InstructionList_DebugView_InstructionView source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA030, PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb, Unsafe_Add_232, (PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA140, TargetPositionCache_CacheCurve_Item, Unsafe_Add_233, (TargetPositionCache_CacheCurve_Item source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA120, TargetPositionCache_CacheEntry_RecordingItem, Unsafe_Add_234, (TargetPositionCache_CacheEntry_RecordingItem source, int32_t elementOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA070, uint8_t, Unsafe_AddByteOffset, (uint8_t source, void * byteOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA070, uint8_t, Unsafe_AddByteOffset_1, (uint8_t source, uint64_t byteOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA070, uint16_t, Unsafe_AddByteOffset_2, (uint16_t source, void * byteOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA070, uint16_t, Unsafe_AddByteOffset_3, (uint16_t source, uint64_t byteOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA070, int32_t, Unsafe_AddByteOffset_4, (int32_t source, void * byteOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA070, int32_t, Unsafe_AddByteOffset_5, (int32_t source, uint64_t byteOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA070, Object *, Unsafe_AddByteOffset_6, (Object * source, void * byteOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA070, Object *, Unsafe_AddByteOffset_7, (Object * source, uint64_t byteOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA070, uint16_t, Unsafe_AddByteOffset_8, (uint16_t source, void * byteOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA070, uint16_t, Unsafe_AddByteOffset_9, (uint16_t source, uint64_t byteOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA070, uint32_t, Unsafe_AddByteOffset_10, (uint32_t source, void * byteOffset, MethodInfo * method)); -DO_APP_FUNC(0x00EAA070, uint32_t, Unsafe_AddByteOffset_11, (uint32_t source, uint64_t byteOffset, MethodInfo * method)); -DO_APP_FUNC(0x00A89090, bool, Unsafe_AreSame, (uint8_t left, uint8_t right, MethodInfo * method)); -DO_APP_FUNC(0x00A89090, bool, Unsafe_AreSame_1, (uint16_t left, uint16_t right, MethodInfo * method)); -DO_APP_FUNC(0x00A89090, bool, Unsafe_AreSame_2, (Object * left, Object * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA0D0, ObjectInitializationData *, Unsafe_Add_93, (ObjectInitializationData * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FF0, OpenChannel *, Unsafe_Add_94, (OpenChannel * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA030, PacketStats *, Unsafe_Add_95, (PacketStats * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA050, ParticleCollisionEvent *, Unsafe_Add_96, (ParticleCollisionEvent * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, Playable *, Unsafe_Add_97, (Playable * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FF0, PlayableBinding *, Unsafe_Add_98, (PlayableBinding * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA030, Priority *, Unsafe_Add_99, (Priority * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, Quaternion *, Unsafe_Add_100, (Quaternion * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, RangePositionInfo *, Unsafe_Add_101, (RangePositionInfo * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA0E0, RaycastHit *, Unsafe_Add_102, (RaycastHit * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA120, RaycastHit2D *, Unsafe_Add_103, (RaycastHit2D * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA020, RaycastResult *, Unsafe_Add_104, (RaycastResult * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, Rect *, Unsafe_Add_105, (Rect * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, ReflectionProbeBlendInfo *, Unsafe_Add_106, (ReflectionProbeBlendInfo * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA000, RemoteChannel *, Unsafe_Add_107, (RemoteChannel * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, RenderChainTextEntry *, Unsafe_Add_108, (RenderChainTextEntry * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA050, RenderTargetIdentifier *, Unsafe_Add_109, (RenderTargetIdentifier * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, RendererList *, Unsafe_Add_110, (RendererList * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA010, RendererListHandle *, Unsafe_Add_111, (RendererListHandle * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA030, Resolution *, Unsafe_Add_112, (Resolution * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA010, ResourceHandle *, Unsafe_Add_113, (ResourceHandle * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA000, RoomMembership *, Unsafe_Add_114, (RoomMembership * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, RuleMatcher *, Unsafe_Add_115, (RuleMatcher * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA060, int8_t *, Unsafe_Add_116, (int8_t * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA000, SelectorMatchRecord *, Unsafe_Add_117, (SelectorMatchRecord * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA0A0, float *, Unsafe_Add_118, (float * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA050, Sku *, Unsafe_Add_119, (Sku * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, SslApplicationProtocol *, Unsafe_Add_120, (SslApplicationProtocol * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA0A0, SteamItemDef_t *, Unsafe_Add_121, (SteamItemDef_t * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, SteamItemDetails_t *, Unsafe_Add_122, (SteamItemDetails_t * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, StylePropertyName *, Unsafe_Add_123, (StylePropertyName * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, StylePropertyValue *, Unsafe_Add_124, (StylePropertyValue * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA000, StyleSelectorPart *, Unsafe_Add_125, (StyleSelectorPart * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA000, StyleSyntaxToken *, Unsafe_Add_126, (StyleSyntaxToken * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA000, StyleValue *, Unsafe_Add_127, (StyleValue * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, StyleValueManaged *, Unsafe_Add_128, (StyleValueManaged * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA000, StyleVariable *, Unsafe_Add_129, (StyleVariable * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA0D0, SubMeshDescriptor *, Unsafe_Add_130, (SubMeshDescriptor * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, Substring *, Unsafe_Add_131, (Substring * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA010, TimeSpan *, Unsafe_Add_132, (TimeSpan * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA010, TimeValue *, Unsafe_Add_133, (TimeValue * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA000, TreeViewItemWrapper *, Unsafe_Add_134, (TreeViewItemWrapper * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FF0, TypeWrapper *, Unsafe_Add_135, (TypeWrapper * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA030, UICharInfo *, Unsafe_Add_136, (UICharInfo * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, UILineInfo *, Unsafe_Add_137, (UILineInfo * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA130, UIVertex *, Unsafe_Add_138, (UIVertex * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA080, uint16_t *, Unsafe_Add_139, (uint16_t * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA0A0, uint32_t *, Unsafe_Add_140, (uint32_t * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA010, uint64_t *, Unsafe_Add_141, (uint64_t * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA000, UVTexture *, Unsafe_Add_142, (UVTexture * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA140, UdpEndPoint *, Unsafe_Add_143, (UdpEndPoint * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA0A0, UdpIPv4Address *, Unsafe_Add_144, (UdpIPv4Address * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA010, UsageHint *, Unsafe_Add_145, (UsageHint * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA050, User *, Unsafe_Add_146, (User * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA010, Vector2 *, Unsafe_Add_147, (Vector2 * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA030, Vector3 *, Unsafe_Add_148, (Vector3 * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, Vector4 *, Unsafe_Add_149, (Vector4 * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, VertexAttributeDescriptor *, Unsafe_Add_150, (VertexAttributeDescriptor * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA000, ViewConfiguration *, Unsafe_Add_151, (ViewConfiguration * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA040, VoicePacket *, Unsafe_Add_152, (VoicePacket * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FF0, VoxelContour *, Unsafe_Add_153, (VoxelContour * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA150, Win32_IP_ADAPTER_ADDRESSES *, Unsafe_Add_154, (Win32_IP_ADAPTER_ADDRESSES * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA160, Win32_IP_ADAPTER_INFO *, Unsafe_Add_155, (Win32_IP_ADAPTER_INFO * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, X509ChainStatus *, Unsafe_Add_156, (X509ChainStatus * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA000, XRFeatureDescriptor *, Unsafe_Add_157, (XRFeatureDescriptor * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA170, XRNodeState *, Unsafe_Add_158, (XRNodeState * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, AdvancedSmooth_Turn *, Unsafe_Add_159, (AdvancedSmooth_Turn * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA050, AnimationOutputWeightProcessor_WeightInfo *, Unsafe_Add_160, (AnimationOutputWeightProcessor_WeightInfo * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, BeforeRenderHelper_OrderBlock *, Unsafe_Add_161, (BeforeRenderHelper_OrderBlock * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA010, BitmapAllocator32_Page *, Unsafe_Add_162, (BitmapAllocator32_Page * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA000, Camera_RenderRequest *, Unsafe_Add_163, (Camera_RenderRequest * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, CameraState_CustomBlendable *, Unsafe_Add_164, (CameraState_CustomBlendable * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA010, CinemachineClearShot_Pair *, Unsafe_Add_165, (CinemachineClearShot_Pair * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA010, CinemachineStateDrivenCamera_HashPair *, Unsafe_Add_166, (CinemachineStateDrivenCamera_HashPair * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, ClipperLib_DoublePoint *, Unsafe_Add_167, (ClipperLib_DoublePoint * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, ClipperLib_IntPoint *, Unsafe_Add_168, (ClipperLib_IntPoint * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, ConfinerOven_PolygonSolution *, Unsafe_Add_169, (ConfinerOven_PolygonSolution * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA030, CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB *, Unsafe_Add_170, (CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FF0, DelayedActionManager_DelegateInfo *, Unsafe_Add_171, (DelayedActionManager_DelegateInfo * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, EventDispatcher_CallbackWrapper *, Unsafe_Add_172, (EventDispatcher_CallbackWrapper * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA000, EventDispatcher_EventListener *, Unsafe_Add_173, (EventDispatcher_EventListener * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA180, EventQueue_NetworkEvent *, Unsafe_Add_174, (EventQueue_NetworkEvent * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, FocusController_FocusedElement *, Unsafe_Add_175, (FocusController_FocusedElement * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA120, Funnel_PathPart *, Unsafe_Add_176, (Funnel_PathPart * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA000, HID_HIDCollectionDescriptor *, Unsafe_Add_177, (HID_HIDCollectionDescriptor * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA0C0, HID_HIDElementDescriptor *, Unsafe_Add_178, (HID_HIDElementDescriptor * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA030, HIDParser_HIDReportData *, Unsafe_Add_179, (HIDParser_HIDReportData * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA0A0, HairDesignerGeneratorFurShellBase_BufferData *, Unsafe_Add_180, (HairDesignerGeneratorFurShellBase_BufferData * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA050, InputActionMap_BindingOverrideJson *, Unsafe_Add_181, (InputActionMap_BindingOverrideJson * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA190, InputControlLayout_ControlItem *, Unsafe_Add_182, (InputControlLayout_ControlItem * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, InternalTreeView_TreeViewItemWrapper *, Unsafe_Add_183, (InternalTreeView_TreeViewItemWrapper * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV *, Unsafe_Add_184, (JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA0C0, JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb *, Unsafe_Add_185, (JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux *, Unsafe_Add_186, (JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA0C0, JsonParser_JsonValue *, Unsafe_Add_187, (JsonParser_JsonValue * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, Logs_LogMessage *, Unsafe_Add_188, (Logs_LogMessage * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA140, MagicLightProbes_VolumeParameters *, Unsafe_Add_189, (MagicLightProbes_VolumeParameters * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, NolanBehaviour_OverlappedCollider *, Unsafe_Add_190, (NolanBehaviour_OverlappedCollider * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, OpenXRInput_SerializedBinding *, Unsafe_Add_191, (OpenXRInput_SerializedBinding * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, PackedPlayModeBuildLogs_RuntimeBuildLog *, Unsafe_Add_192, (PackedPlayModeBuildLogs_RuntimeBuildLog * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1A0, ParticleSystem_Particle *, Unsafe_Add_193, (ParticleSystem_Particle * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, ProbeBrickIndex_Brick *, Unsafe_Add_194, (ProbeBrickIndex_Brick * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1B0, ProbeBrickIndex_ReservedBrick *, Unsafe_Add_195, (ProbeBrickIndex_ReservedBrick * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, ProbeBrickIndex_VoxelMeta *, Unsafe_Add_196, (ProbeBrickIndex_VoxelMeta * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA030, ProbeBrickPool_BrickChunkAlloc *, Unsafe_Add_197, (ProbeBrickPool_BrickChunkAlloc * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, ProbeVolumePerSceneData_SerializableAssetItem *, Unsafe_Add_198, (ProbeVolumePerSceneData_SerializableAssetItem * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FF0, ProbeVolumeSceneData_SerializableBoundItem *, Unsafe_Add_199, (ProbeVolumeSceneData_SerializableBoundItem * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, ProbeVolumeSceneData_SerializableHasPVItem *, Unsafe_Add_200, (ProbeVolumeSceneData_SerializableHasPVItem * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA050, ProbeVolumeSceneData_SerializablePVBakeSettings *, Unsafe_Add_201, (ProbeVolumeSceneData_SerializablePVBakeSettings * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, ProbeVolumeSceneData_SerializablePVProfile *, Unsafe_Add_202, (ProbeVolumeSceneData_SerializablePVProfile * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA0A0, RegexCharClass_SingleRange *, Unsafe_Add_203, (RegexCharClass_SingleRange * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA170, RenderChain_RenderNodeData *, Unsafe_Add_204, (RenderChain_RenderNodeData * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FF0, RenderGraphDebugData_PassDebugData *, Unsafe_Add_205, (RenderGraphDebugData_PassDebugData * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA050, RenderGraphDebugData_ResourceDebugData *, Unsafe_Add_206, (RenderGraphDebugData_ResourceDebugData * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, ResourceManager_DeferredCallbackRegisterRequest *, Unsafe_Add_207, (ResourceManager_DeferredCallbackRegisterRequest * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA000, RetainedGizmos_MeshWithHash *, Unsafe_Add_208, (RetainedGizmos_MeshWithHash * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA000, TemplateAsset_AttributeOverride *, Unsafe_Add_209, (TemplateAsset_AttributeOverride * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, TextSettings_FontReferenceMap *, Unsafe_Add_210, (TextSettings_FontReferenceMap * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA040, TextureBlitter_BlitInfo *, Unsafe_Add_211, (TextureBlitter_BlitInfo * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA110, TexturePacker_JsonArray_Frame *, Unsafe_Add_212, (TexturePacker_JsonArray_Frame * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, TextureRegistry_TextureInfo *, Unsafe_Add_213, (TextureRegistry_TextureInfo * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA000, TimeNotificationBehaviour_NotificationEntry *, Unsafe_Add_214, (TimeNotificationBehaviour_NotificationEntry * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FF0, TrackedDeviceRaycaster_RaycastHitData *, Unsafe_Add_215, (TrackedDeviceRaycaster_RaycastHitData * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, TrackedPoseDriverDataDescription_PoseData *, Unsafe_Add_216, (TrackedPoseDriverDataDescription_PoseData * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, TreeView_TreeViewItemWrapper *, Unsafe_Add_217, (TreeView_TreeViewItemWrapper * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA010, TreeViewReorderableDragAndDropController_TreeItemState *, Unsafe_Add_218, (TreeViewReorderableDragAndDropController_TreeItemState * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA170, UIRStylePainter_Entry *, Unsafe_Add_219, (UIRStylePainter_Entry * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA050, UIRenderDevice_AllocToFree *, Unsafe_Add_220, (UIRenderDevice_AllocToFree * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA020, UIRenderDevice_AllocToUpdate *, Unsafe_Add_221, (UIRenderDevice_AllocToUpdate * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA000, UnitySynchronizationContext_WorkRequest *, Unsafe_Add_222, (UnitySynchronizationContext_WorkRequest * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, VisualTreeAsset_SlotDefinition *, Unsafe_Add_223, (VisualTreeAsset_SlotDefinition * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, VisualTreeAsset_SlotUsageEntry *, Unsafe_Add_224, (VisualTreeAsset_SlotUsageEntry * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA000, VisualTreeAsset_UsingEntry *, Unsafe_Add_225, (VisualTreeAsset_UsingEntry * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, XmlSchemaObjectTable_XmlSchemaObjectEntry *, Unsafe_Add_226, (XmlSchemaObjectTable_XmlSchemaObjectEntry * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FF0, ftLightmaps_LightmapAdditionalData *, Unsafe_Add_227, (ftLightmaps_LightmapAdditionalData * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA010, gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy *, Unsafe_Add_228, (gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FE0, DebugUI_Foldout_ContextMenuItem *, Unsafe_Add_229, (DebugUI_Foldout_ContextMenuItem * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA000, InputControlLayout_Collection_LayoutMatcher *, Unsafe_Add_230, (InputControlLayout_Collection_LayoutMatcher * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EA9FF0, InstructionList_DebugView_InstructionView *, Unsafe_Add_231, (InstructionList_DebugView_InstructionView * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA030, PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb *, Unsafe_Add_232, (PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA140, TargetPositionCache_CacheCurve_Item *, Unsafe_Add_233, (TargetPositionCache_CacheCurve_Item * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA120, TargetPositionCache_CacheEntry_RecordingItem *, Unsafe_Add_234, (TargetPositionCache_CacheEntry_RecordingItem * source, int32_t elementOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA070, uint8_t *, Unsafe_AddByteOffset, (uint8_t * source, void * byteOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA070, uint8_t *, Unsafe_AddByteOffset_1, (uint8_t * source, uint64_t byteOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA070, uint16_t *, Unsafe_AddByteOffset_2, (uint16_t * source, void * byteOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA070, uint16_t *, Unsafe_AddByteOffset_3, (uint16_t * source, uint64_t byteOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA070, int32_t *, Unsafe_AddByteOffset_4, (int32_t * source, void * byteOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA070, int32_t *, Unsafe_AddByteOffset_5, (int32_t * source, uint64_t byteOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA070, Object * *, Unsafe_AddByteOffset_6, (Object * * source, void * byteOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA070, Object * *, Unsafe_AddByteOffset_7, (Object * * source, uint64_t byteOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA070, uint16_t *, Unsafe_AddByteOffset_8, (uint16_t * source, void * byteOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA070, uint16_t *, Unsafe_AddByteOffset_9, (uint16_t * source, uint64_t byteOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA070, uint32_t *, Unsafe_AddByteOffset_10, (uint32_t * source, void * byteOffset, MethodInfo * method)); +DO_APP_FUNC(0x00EAA070, uint32_t *, Unsafe_AddByteOffset_11, (uint32_t * source, uint64_t byteOffset, MethodInfo * method)); +DO_APP_FUNC(0x00A89090, bool, Unsafe_AreSame, (uint8_t * left, uint8_t * right, MethodInfo * method)); +DO_APP_FUNC(0x00A89090, bool, Unsafe_AreSame_1, (uint16_t * left, uint16_t * right, MethodInfo * method)); +DO_APP_FUNC(0x00A89090, bool, Unsafe_AreSame_2, (Object * * left, Object * * right, MethodInfo * method)); DO_APP_FUNC(0x00A1B820, Object *, Unsafe_As, (Object * o, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, ReadOnlyMemory_1_Byte_, Unsafe_As_1, (Memory_1_Byte_ source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, ReadOnlyMemory_1_Object_, Unsafe_As_2, (Memory_1_Object_ source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Memory_1_Byte_, Unsafe_As_3, (ReadOnlyMemory_1_Byte_ source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Memory_1_Object_, Unsafe_As_4, (ReadOnlyMemory_1_Object_ source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Volatile_VolatileBoolean, Unsafe_As_5, (bool source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, ArraySegment_1_Byte_, Unsafe_As_6, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, AsyncOperationHandle_1_System_Object_, Unsafe_As_7, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, VoiceSender_1_TPeer_ChannelDelta_Dissonance_Integrations_PhotonBolt_BoltPeer_, Unsafe_As_8, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, IntervalTree_1_T_Entry_System_Object_, Unsafe_As_9, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object_, Unsafe_As_10, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object_, Unsafe_As_11, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_, Unsafe_As_12, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, KeyValuePair_2_System_Guid_System_Object_, Unsafe_As_13, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, KeyValuePair_2_System_Int32_System_Int32_, Unsafe_As_14, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, KeyValuePair_2_System_Int32_System_Object_, Unsafe_As_15, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, KeyValuePair_2_System_Int32Enum_System_Object_, Unsafe_As_16, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, KeyValuePair_2_System_Object_System_ArraySegment_1_, Unsafe_As_17, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, KeyValuePair_2_System_Object_System_Char_, Unsafe_As_18, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, KeyValuePair_2_System_Object_System_Object_, Unsafe_As_19, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_, Unsafe_As_20, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, KeyValuePair_2_UnityEngine_PropertyName_System_Object_, Unsafe_As_21, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer_, Unsafe_As_22, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, KeyValuePair_2_System_UInt16_System_Object_, Unsafe_As_23, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, KeyValuePair_2_System_UInt64_System_Object_, Unsafe_As_24, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, NativeArray_1_System_UInt16_, Unsafe_As_25, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, NativeArray_1_UnityEngine_UIElements_Vertex_, Unsafe_As_26, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, RenderGraphResourcePool_1_Type_ResourceLogInfo_System_Object_, Unsafe_As_27, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, STuple_2_System_Object_System_Object_, Unsafe_As_28, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, ValueTuple_2_Int32_Object_, Unsafe_As_29, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, ValueTuple_2_Int32_UnityEngine_Vector2Int_, Unsafe_As_30, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, ValueTuple_2_Object_ValueTuple_2_Object_Int32_, Unsafe_As_31, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, ValueTuple_2_Object_Object_, Unsafe_As_32, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, ValueTuple_2_UnityEngine_Vector3Int_Object_, Unsafe_As_33, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_, Unsafe_As_34, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_, Unsafe_As_35, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, AnimatorClipInfo, Unsafe_As_36, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, AsyncOperationHandle, Unsafe_As_37, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, BoltPeer, Unsafe_As_38, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, BoltPhysicsHit, Unsafe_As_39, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, BoneWeight, Unsafe_As_40, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, bool, Unsafe_As_41, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, uint8_t, Unsafe_As_42, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, CancellationToken, Unsafe_As_43, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, uint16_t, Unsafe_As_44, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, ClientInfo, Unsafe_As_45, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Color, Unsafe_As_46, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Color32, Unsafe_As_47, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, CombineInstance, Unsafe_As_48, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, ComputedTransitionProperty, Unsafe_As_49, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Connection, Unsafe_As_50, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, ControllerPollingInfo, Unsafe_As_51, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, ControllerTemplateElementTarget, Unsafe_As_52, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, CurveSample, Unsafe_As_53, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, DateTime, Unsafe_As_54, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, DateTimeOffset, Unsafe_As_55, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Decimal, Unsafe_As_56, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, DiagnosticEvent, Unsafe_As_57, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, double, Unsafe_As_58, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, EasingFunction, Unsafe_As_59, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, ElementAssignmentConflictInfo, Unsafe_As_60, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Entitlement, Unsafe_As_61, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, EventReliable, Unsafe_As_62, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, EventUnreliable, Unsafe_As_63, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, FileStat, Unsafe_As_64, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, GlyphPairAdjustmentRecord, Unsafe_As_65, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, GlyphRect, Unsafe_As_66, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Guid, Unsafe_As_67, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, InputActionSourceData, Unsafe_As_68, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, InputBinding, Unsafe_As_69, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, InputDevice_1, Unsafe_As_70, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, InputDeviceDescription, Unsafe_As_71, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, InputEventPtr, Unsafe_As_72, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, int16_t, Unsafe_As_73, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Int3, Unsafe_As_74, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, int32_t, Unsafe_As_75, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Int32Enum__Enum, Unsafe_As_76, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, int64_t, Unsafe_As_77, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, IntPoint, Unsafe_As_78, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, void *, Unsafe_As_79, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, IntRect, Unsafe_As_80, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, InternedString, Unsafe_As_81, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, InterpretedFrameInfo, Unsafe_As_82, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, IntervalTreeNode, Unsafe_As_83, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, ItemDefinitionAmount, Unsafe_As_84, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, KickedPlayer, Unsafe_As_85, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, LayerMask, Unsafe_As_86, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, ManipulatorActivationFilter, Unsafe_As_87, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Matrix4x4, Unsafe_As_88, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, NameAndParameters, Unsafe_As_89, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, NamedValue, Unsafe_As_90, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, NetworkPropertyInfo, Unsafe_As_91, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Object *, Unsafe_As_92, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, ObjectInitializationData, Unsafe_As_93, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, OpenChannel, Unsafe_As_94, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, PacketStats, Unsafe_As_95, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, ParticleCollisionEvent, Unsafe_As_96, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Playable, Unsafe_As_97, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, PlayableBinding, Unsafe_As_98, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Priority, Unsafe_As_99, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Quaternion, Unsafe_As_100, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, RangePositionInfo, Unsafe_As_101, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, RaycastHit, Unsafe_As_102, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, RaycastHit2D, Unsafe_As_103, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, RaycastResult, Unsafe_As_104, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Rect, Unsafe_As_105, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, ReflectionProbeBlendInfo, Unsafe_As_106, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, RemoteChannel, Unsafe_As_107, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, RenderChainTextEntry, Unsafe_As_108, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, RenderTargetIdentifier, Unsafe_As_109, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, RendererList, Unsafe_As_110, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, RendererListHandle, Unsafe_As_111, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Resolution, Unsafe_As_112, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, ResourceHandle, Unsafe_As_113, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, RoomMembership, Unsafe_As_114, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, RuleMatcher, Unsafe_As_115, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, int8_t, Unsafe_As_116, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, SelectorMatchRecord, Unsafe_As_117, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, float, Unsafe_As_118, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Sku, Unsafe_As_119, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, SslApplicationProtocol, Unsafe_As_120, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, SteamItemDef_t, Unsafe_As_121, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, SteamItemDetails_t, Unsafe_As_122, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, StylePropertyName, Unsafe_As_123, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, StylePropertyValue, Unsafe_As_124, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, StyleSelectorPart, Unsafe_As_125, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, StyleSyntaxToken, Unsafe_As_126, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, StyleValue, Unsafe_As_127, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, StyleValueManaged, Unsafe_As_128, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, StyleVariable, Unsafe_As_129, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, SubMeshDescriptor, Unsafe_As_130, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Substring, Unsafe_As_131, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, TimeSpan, Unsafe_As_132, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, TimeValue, Unsafe_As_133, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, TreeViewItemWrapper, Unsafe_As_134, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, TypeWrapper, Unsafe_As_135, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, UICharInfo, Unsafe_As_136, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, UILineInfo, Unsafe_As_137, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, UIVertex, Unsafe_As_138, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, uint16_t, Unsafe_As_139, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, uint32_t, Unsafe_As_140, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, uint64_t, Unsafe_As_141, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, UVTexture, Unsafe_As_142, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, UdpEndPoint, Unsafe_As_143, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, UdpIPv4Address, Unsafe_As_144, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, UsageHint, Unsafe_As_145, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, User, Unsafe_As_146, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Vector2, Unsafe_As_147, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Vector3, Unsafe_As_148, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Vector4, Unsafe_As_149, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, VertexAttributeDescriptor, Unsafe_As_150, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, ViewConfiguration, Unsafe_As_151, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, VoicePacket, Unsafe_As_152, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, VoxelContour, Unsafe_As_153, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Win32_IP_ADAPTER_ADDRESSES, Unsafe_As_154, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Win32_IP_ADAPTER_INFO, Unsafe_As_155, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, X509ChainStatus, Unsafe_As_156, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, XRFeatureDescriptor, Unsafe_As_157, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, XRNodeState, Unsafe_As_158, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, AdvancedSmooth_Turn, Unsafe_As_159, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, AnimationOutputWeightProcessor_WeightInfo, Unsafe_As_160, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, BeforeRenderHelper_OrderBlock, Unsafe_As_161, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, BitmapAllocator32_Page, Unsafe_As_162, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Camera_RenderRequest, Unsafe_As_163, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, CameraState_CustomBlendable, Unsafe_As_164, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, CinemachineClearShot_Pair, Unsafe_As_165, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, CinemachineStateDrivenCamera_HashPair, Unsafe_As_166, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, ClipperLib_DoublePoint, Unsafe_As_167, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, ClipperLib_IntPoint, Unsafe_As_168, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, ConfinerOven_PolygonSolution, Unsafe_As_169, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB, Unsafe_As_170, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, DelayedActionManager_DelegateInfo, Unsafe_As_171, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, EventDispatcher_CallbackWrapper, Unsafe_As_172, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, EventDispatcher_EventListener, Unsafe_As_173, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, EventQueue_NetworkEvent, Unsafe_As_174, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, FocusController_FocusedElement, Unsafe_As_175, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Funnel_PathPart, Unsafe_As_176, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, HID_HIDCollectionDescriptor, Unsafe_As_177, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, HID_HIDElementDescriptor, Unsafe_As_178, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, HIDParser_HIDReportData, Unsafe_As_179, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, HairDesignerGeneratorFurShellBase_BufferData, Unsafe_As_180, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, InputActionMap_BindingOverrideJson, Unsafe_As_181, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, InputControlLayout_ControlItem, Unsafe_As_182, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, InternalTreeView_TreeViewItemWrapper, Unsafe_As_183, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV, Unsafe_As_184, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb, Unsafe_As_185, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux, Unsafe_As_186, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, JsonParser_JsonValue, Unsafe_As_187, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Logs_LogMessage, Unsafe_As_188, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, MagicLightProbes_VolumeParameters, Unsafe_As_189, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, NolanBehaviour_OverlappedCollider, Unsafe_As_190, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, OpenXRInput_SerializedBinding, Unsafe_As_191, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, PackedPlayModeBuildLogs_RuntimeBuildLog, Unsafe_As_192, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, ParticleSystem_Particle, Unsafe_As_193, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, ProbeBrickIndex_Brick, Unsafe_As_194, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, ProbeBrickIndex_ReservedBrick, Unsafe_As_195, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, ProbeBrickIndex_VoxelMeta, Unsafe_As_196, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, ProbeBrickPool_BrickChunkAlloc, Unsafe_As_197, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, ProbeVolumePerSceneData_SerializableAssetItem, Unsafe_As_198, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, ProbeVolumeSceneData_SerializableBoundItem, Unsafe_As_199, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, ProbeVolumeSceneData_SerializableHasPVItem, Unsafe_As_200, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, ProbeVolumeSceneData_SerializablePVBakeSettings, Unsafe_As_201, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, ProbeVolumeSceneData_SerializablePVProfile, Unsafe_As_202, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, RegexCharClass_SingleRange, Unsafe_As_203, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, RenderChain_RenderNodeData, Unsafe_As_204, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, RenderGraphDebugData_PassDebugData, Unsafe_As_205, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, RenderGraphDebugData_ResourceDebugData, Unsafe_As_206, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, ResourceManager_DeferredCallbackRegisterRequest, Unsafe_As_207, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, RetainedGizmos_MeshWithHash, Unsafe_As_208, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, TemplateAsset_AttributeOverride, Unsafe_As_209, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, TextSettings_FontReferenceMap, Unsafe_As_210, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, TextureBlitter_BlitInfo, Unsafe_As_211, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, TexturePacker_JsonArray_Frame, Unsafe_As_212, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, TextureRegistry_TextureInfo, Unsafe_As_213, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, TimeNotificationBehaviour_NotificationEntry, Unsafe_As_214, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, TrackedDeviceRaycaster_RaycastHitData, Unsafe_As_215, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, TrackedPoseDriverDataDescription_PoseData, Unsafe_As_216, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, TreeView_TreeViewItemWrapper, Unsafe_As_217, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, TreeViewReorderableDragAndDropController_TreeItemState, Unsafe_As_218, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, UIRStylePainter_Entry, Unsafe_As_219, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, UIRenderDevice_AllocToFree, Unsafe_As_220, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, UIRenderDevice_AllocToUpdate, Unsafe_As_221, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, UnitySynchronizationContext_WorkRequest, Unsafe_As_222, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, VisualTreeAsset_SlotDefinition, Unsafe_As_223, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, VisualTreeAsset_SlotUsageEntry, Unsafe_As_224, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, VisualTreeAsset_UsingEntry, Unsafe_As_225, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, XmlSchemaObjectTable_XmlSchemaObjectEntry, Unsafe_As_226, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, ftLightmaps_LightmapAdditionalData, Unsafe_As_227, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy, Unsafe_As_228, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, DebugUI_Foldout_ContextMenuItem, Unsafe_As_229, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, InputControlLayout_Collection_LayoutMatcher, Unsafe_As_230, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, InstructionList_DebugView_InstructionView, Unsafe_As_231, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb, Unsafe_As_232, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, TargetPositionCache_CacheCurve_Item, Unsafe_As_233, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, TargetPositionCache_CacheEntry_RecordingItem, Unsafe_As_234, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, uint8_t, Unsafe_As_235, (uint16_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, uint16_t, Unsafe_As_236, (uint16_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, void *, Unsafe_As_237, (uint16_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Object *, Unsafe_As_238, (uint16_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Decimal_DecCalc, Unsafe_As_239, (Decimal source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, uint8_t, Unsafe_As_240, (int32_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, uint16_t, Unsafe_As_241, (int32_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, void *, Unsafe_As_242, (int32_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, uint32_t, Unsafe_As_243, (int32_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Volatile_VolatileInt32, Unsafe_As_244, (int32_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, uint64_t, Unsafe_As_245, (int64_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, uint8_t, Unsafe_As_246, (Object * source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, uint16_t, Unsafe_As_247, (Object * source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, void *, Unsafe_As_248, (Object * source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Object *, Unsafe_As_249, (Object * source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Volatile_VolatileObject, Unsafe_As_250, (Object * source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, uint8_t, Unsafe_As_251, (uint16_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, uint16_t, Unsafe_As_252, (uint16_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, void *, Unsafe_As_253, (uint16_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, uint8_t, Unsafe_As_254, (uint32_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, uint16_t, Unsafe_As_255, (uint32_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, void *, Unsafe_As_256, (uint32_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Void *, Unsafe_AsPointer, (uint8_t value, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Void *, Unsafe_AsPointer_1, (uint16_t value, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Void *, Unsafe_AsPointer_2, (Object * value, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Void *, Unsafe_AsPointer_3, (Number_NumberBuffer_DigitsAndNullTerminator value, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, uint8_t, Unsafe_AsRef, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, uint8_t, Unsafe_AsRef_1, (Void * source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, uint16_t, Unsafe_AsRef_2, (Void * source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Object *, Unsafe_AsRef_3, (Object * source, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Object *, Unsafe_AsRef_4, (Void * source, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan, (ArraySegment_1_Byte_ left, ArraySegment_1_Byte_ right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_1, (AsyncOperationHandle_1_System_Object_ left, AsyncOperationHandle_1_System_Object_ right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_2, (VoiceSender_1_TPeer_ChannelDelta_Dissonance_Integrations_PhotonBolt_BoltPeer_ left, VoiceSender_1_TPeer_ChannelDelta_Dissonance_Integrations_PhotonBolt_BoltPeer_ right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_3, (IntervalTree_1_T_Entry_System_Object_ left, IntervalTree_1_T_Entry_System_Object_ right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_4, (IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object_ left, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object_ right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_5, (IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object_ left, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object_ right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_6, (IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ left, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_7, (KeyValuePair_2_System_Guid_System_Object_ left, KeyValuePair_2_System_Guid_System_Object_ right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_8, (KeyValuePair_2_System_Int32_System_Int32_ left, KeyValuePair_2_System_Int32_System_Int32_ right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_9, (KeyValuePair_2_System_Int32_System_Object_ left, KeyValuePair_2_System_Int32_System_Object_ right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_10, (KeyValuePair_2_System_Int32Enum_System_Object_ left, KeyValuePair_2_System_Int32Enum_System_Object_ right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_11, (KeyValuePair_2_System_Object_System_ArraySegment_1_ left, KeyValuePair_2_System_Object_System_ArraySegment_1_ right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_12, (KeyValuePair_2_System_Object_System_Char_ left, KeyValuePair_2_System_Object_System_Char_ right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_13, (KeyValuePair_2_System_Object_System_Object_ left, KeyValuePair_2_System_Object_System_Object_ right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_14, (KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ left, KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_15, (KeyValuePair_2_UnityEngine_PropertyName_System_Object_ left, KeyValuePair_2_UnityEngine_PropertyName_System_Object_ right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_16, (KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer_ left, KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer_ right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_17, (KeyValuePair_2_System_UInt16_System_Object_ left, KeyValuePair_2_System_UInt16_System_Object_ right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_18, (KeyValuePair_2_System_UInt64_System_Object_ left, KeyValuePair_2_System_UInt64_System_Object_ right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_19, (NativeArray_1_System_UInt16_ left, NativeArray_1_System_UInt16_ right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_20, (NativeArray_1_UnityEngine_UIElements_Vertex_ left, NativeArray_1_UnityEngine_UIElements_Vertex_ right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_21, (RenderGraphResourcePool_1_Type_ResourceLogInfo_System_Object_ left, RenderGraphResourcePool_1_Type_ResourceLogInfo_System_Object_ right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_22, (STuple_2_System_Object_System_Object_ left, STuple_2_System_Object_System_Object_ right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_23, (ValueTuple_2_Int32_Object_ left, ValueTuple_2_Int32_Object_ right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_24, (ValueTuple_2_Int32_UnityEngine_Vector2Int_ left, ValueTuple_2_Int32_UnityEngine_Vector2Int_ right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_25, (ValueTuple_2_Object_ValueTuple_2_Object_Int32_ left, ValueTuple_2_Object_ValueTuple_2_Object_Int32_ right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_26, (ValueTuple_2_Object_Object_ left, ValueTuple_2_Object_Object_ right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_27, (ValueTuple_2_UnityEngine_Vector3Int_Object_ left, ValueTuple_2_UnityEngine_Vector3Int_Object_ right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_28, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_ left, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_ right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_29, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_ left, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_ right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_30, (AnimatorClipInfo left, AnimatorClipInfo right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_31, (AsyncOperationHandle left, AsyncOperationHandle right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_32, (BoltPeer left, BoltPeer right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_33, (BoltPhysicsHit left, BoltPhysicsHit right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_34, (BoneWeight left, BoneWeight right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_35, (bool left, bool right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_36, (uint8_t left, uint8_t right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_37, (CancellationToken left, CancellationToken right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_38, (uint16_t left, uint16_t right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_39, (ClientInfo left, ClientInfo right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_40, (Color left, Color right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_41, (Color32 left, Color32 right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_42, (CombineInstance left, CombineInstance right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_43, (ComputedTransitionProperty left, ComputedTransitionProperty right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_44, (Connection left, Connection right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_45, (ControllerPollingInfo left, ControllerPollingInfo right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_46, (ControllerTemplateElementTarget left, ControllerTemplateElementTarget right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_47, (CurveSample left, CurveSample right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_48, (DateTime left, DateTime right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_49, (DateTimeOffset left, DateTimeOffset right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_50, (Decimal left, Decimal right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_51, (DiagnosticEvent left, DiagnosticEvent right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_52, (double left, double right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_53, (EasingFunction left, EasingFunction right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_54, (ElementAssignmentConflictInfo left, ElementAssignmentConflictInfo right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_55, (Entitlement left, Entitlement right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_56, (EventReliable left, EventReliable right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_57, (EventUnreliable left, EventUnreliable right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_58, (FileStat left, FileStat right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_59, (GlyphPairAdjustmentRecord left, GlyphPairAdjustmentRecord right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_60, (GlyphRect left, GlyphRect right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_61, (Guid left, Guid right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_62, (InputActionSourceData left, InputActionSourceData right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_63, (InputBinding left, InputBinding right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_64, (InputDevice_1 left, InputDevice_1 right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_65, (InputDeviceDescription left, InputDeviceDescription right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_66, (InputEventPtr left, InputEventPtr right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_67, (int16_t left, int16_t right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_68, (Int3 left, Int3 right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_69, (int32_t left, int32_t right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_70, (Int32Enum__Enum left, Int32Enum__Enum right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_71, (int64_t left, int64_t right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_72, (IntPoint left, IntPoint right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_73, (IntRect left, IntRect right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_74, (InternedString left, InternedString right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_75, (InterpretedFrameInfo left, InterpretedFrameInfo right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_76, (IntervalTreeNode left, IntervalTreeNode right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_77, (ItemDefinitionAmount left, ItemDefinitionAmount right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_78, (KickedPlayer left, KickedPlayer right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_79, (LayerMask left, LayerMask right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_80, (ManipulatorActivationFilter left, ManipulatorActivationFilter right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_81, (Matrix4x4 left, Matrix4x4 right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_82, (NameAndParameters left, NameAndParameters right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_83, (NamedValue left, NamedValue right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_84, (NetworkPropertyInfo left, NetworkPropertyInfo right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_85, (Object * left, Object * right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_86, (ObjectInitializationData left, ObjectInitializationData right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_87, (OpenChannel left, OpenChannel right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_88, (PacketStats left, PacketStats right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_89, (ParticleCollisionEvent left, ParticleCollisionEvent right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_90, (Playable left, Playable right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_91, (PlayableBinding left, PlayableBinding right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_92, (Priority left, Priority right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_93, (Quaternion left, Quaternion right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_94, (RangePositionInfo left, RangePositionInfo right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_95, (RaycastHit left, RaycastHit right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_96, (RaycastHit2D left, RaycastHit2D right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_97, (RaycastResult left, RaycastResult right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_98, (Rect left, Rect right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_99, (ReflectionProbeBlendInfo left, ReflectionProbeBlendInfo right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_100, (RemoteChannel left, RemoteChannel right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_101, (RenderChainTextEntry left, RenderChainTextEntry right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_102, (RenderTargetIdentifier left, RenderTargetIdentifier right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_103, (RendererList left, RendererList right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_104, (RendererListHandle left, RendererListHandle right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_105, (Resolution left, Resolution right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_106, (ResourceHandle left, ResourceHandle right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_107, (RoomMembership left, RoomMembership right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_108, (RuleMatcher left, RuleMatcher right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_109, (int8_t left, int8_t right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_110, (SelectorMatchRecord left, SelectorMatchRecord right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_111, (float left, float right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_112, (Sku left, Sku right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_113, (SslApplicationProtocol left, SslApplicationProtocol right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_114, (SteamItemDef_t left, SteamItemDef_t right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_115, (SteamItemDetails_t left, SteamItemDetails_t right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_116, (StylePropertyName left, StylePropertyName right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_117, (StylePropertyValue left, StylePropertyValue right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_118, (StyleSelectorPart left, StyleSelectorPart right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_119, (StyleSyntaxToken left, StyleSyntaxToken right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_120, (StyleValue left, StyleValue right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_121, (StyleValueManaged left, StyleValueManaged right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_122, (StyleVariable left, StyleVariable right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_123, (SubMeshDescriptor left, SubMeshDescriptor right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_124, (Substring left, Substring right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_125, (TimeSpan left, TimeSpan right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_126, (TimeValue left, TimeValue right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_127, (TreeViewItemWrapper left, TreeViewItemWrapper right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_128, (TypeWrapper left, TypeWrapper right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_129, (UICharInfo left, UICharInfo right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_130, (UILineInfo left, UILineInfo right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_131, (UIVertex left, UIVertex right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_132, (uint16_t left, uint16_t right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_133, (uint32_t left, uint32_t right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_134, (uint64_t left, uint64_t right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_135, (UVTexture left, UVTexture right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_136, (UdpEndPoint left, UdpEndPoint right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_137, (UdpIPv4Address left, UdpIPv4Address right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_138, (UsageHint left, UsageHint right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_139, (User left, User right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_140, (Vector2 left, Vector2 right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_141, (Vector3 left, Vector3 right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_142, (Vector4 left, Vector4 right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_143, (VertexAttributeDescriptor left, VertexAttributeDescriptor right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_144, (ViewConfiguration left, ViewConfiguration right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_145, (VoicePacket left, VoicePacket right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_146, (VoxelContour left, VoxelContour right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_147, (Win32_IP_ADAPTER_ADDRESSES left, Win32_IP_ADAPTER_ADDRESSES right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_148, (Win32_IP_ADAPTER_INFO left, Win32_IP_ADAPTER_INFO right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_149, (X509ChainStatus left, X509ChainStatus right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_150, (XRFeatureDescriptor left, XRFeatureDescriptor right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_151, (XRNodeState left, XRNodeState right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_152, (AdvancedSmooth_Turn left, AdvancedSmooth_Turn right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_153, (AnimationOutputWeightProcessor_WeightInfo left, AnimationOutputWeightProcessor_WeightInfo right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_154, (BeforeRenderHelper_OrderBlock left, BeforeRenderHelper_OrderBlock right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_155, (BitmapAllocator32_Page left, BitmapAllocator32_Page right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_156, (Camera_RenderRequest left, Camera_RenderRequest right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_157, (CameraState_CustomBlendable left, CameraState_CustomBlendable right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_158, (CinemachineClearShot_Pair left, CinemachineClearShot_Pair right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_159, (CinemachineStateDrivenCamera_HashPair left, CinemachineStateDrivenCamera_HashPair right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_160, (ClipperLib_DoublePoint left, ClipperLib_DoublePoint right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_161, (ClipperLib_IntPoint left, ClipperLib_IntPoint right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_162, (ConfinerOven_PolygonSolution left, ConfinerOven_PolygonSolution right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_163, (CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB left, CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_164, (DelayedActionManager_DelegateInfo left, DelayedActionManager_DelegateInfo right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_165, (EventDispatcher_CallbackWrapper left, EventDispatcher_CallbackWrapper right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_166, (EventDispatcher_EventListener left, EventDispatcher_EventListener right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_167, (EventQueue_NetworkEvent left, EventQueue_NetworkEvent right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_168, (FocusController_FocusedElement left, FocusController_FocusedElement right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_169, (Funnel_PathPart left, Funnel_PathPart right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_170, (HID_HIDCollectionDescriptor left, HID_HIDCollectionDescriptor right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_171, (HID_HIDElementDescriptor left, HID_HIDElementDescriptor right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_172, (HIDParser_HIDReportData left, HIDParser_HIDReportData right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_173, (HairDesignerGeneratorFurShellBase_BufferData left, HairDesignerGeneratorFurShellBase_BufferData right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_174, (InputActionMap_BindingOverrideJson left, InputActionMap_BindingOverrideJson right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_175, (InputControlLayout_ControlItem left, InputControlLayout_ControlItem right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_176, (InternalTreeView_TreeViewItemWrapper left, InternalTreeView_TreeViewItemWrapper right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_177, (JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV left, JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_178, (JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb left, JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_179, (JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux left, JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_180, (JsonParser_JsonValue left, JsonParser_JsonValue right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_181, (Logs_LogMessage left, Logs_LogMessage right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_182, (MagicLightProbes_VolumeParameters left, MagicLightProbes_VolumeParameters right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_183, (NolanBehaviour_OverlappedCollider left, NolanBehaviour_OverlappedCollider right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_184, (OpenXRInput_SerializedBinding left, OpenXRInput_SerializedBinding right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_185, (PackedPlayModeBuildLogs_RuntimeBuildLog left, PackedPlayModeBuildLogs_RuntimeBuildLog right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_186, (ParticleSystem_Particle left, ParticleSystem_Particle right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_187, (ProbeBrickIndex_Brick left, ProbeBrickIndex_Brick right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_188, (ProbeBrickIndex_ReservedBrick left, ProbeBrickIndex_ReservedBrick right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_189, (ProbeBrickIndex_VoxelMeta left, ProbeBrickIndex_VoxelMeta right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_190, (ProbeBrickPool_BrickChunkAlloc left, ProbeBrickPool_BrickChunkAlloc right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_191, (ProbeVolumePerSceneData_SerializableAssetItem left, ProbeVolumePerSceneData_SerializableAssetItem right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_192, (ProbeVolumeSceneData_SerializableBoundItem left, ProbeVolumeSceneData_SerializableBoundItem right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_193, (ProbeVolumeSceneData_SerializableHasPVItem left, ProbeVolumeSceneData_SerializableHasPVItem right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_194, (ProbeVolumeSceneData_SerializablePVBakeSettings left, ProbeVolumeSceneData_SerializablePVBakeSettings right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_195, (ProbeVolumeSceneData_SerializablePVProfile left, ProbeVolumeSceneData_SerializablePVProfile right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_196, (RegexCharClass_SingleRange left, RegexCharClass_SingleRange right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_197, (RenderChain_RenderNodeData left, RenderChain_RenderNodeData right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_198, (RenderGraphDebugData_PassDebugData left, RenderGraphDebugData_PassDebugData right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_199, (RenderGraphDebugData_ResourceDebugData left, RenderGraphDebugData_ResourceDebugData right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_200, (ResourceManager_DeferredCallbackRegisterRequest left, ResourceManager_DeferredCallbackRegisterRequest right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_201, (RetainedGizmos_MeshWithHash left, RetainedGizmos_MeshWithHash right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_202, (TemplateAsset_AttributeOverride left, TemplateAsset_AttributeOverride right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_203, (TextSettings_FontReferenceMap left, TextSettings_FontReferenceMap right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_204, (TextureBlitter_BlitInfo left, TextureBlitter_BlitInfo right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_205, (TexturePacker_JsonArray_Frame left, TexturePacker_JsonArray_Frame right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_206, (TextureRegistry_TextureInfo left, TextureRegistry_TextureInfo right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_207, (TimeNotificationBehaviour_NotificationEntry left, TimeNotificationBehaviour_NotificationEntry right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_208, (TrackedDeviceRaycaster_RaycastHitData left, TrackedDeviceRaycaster_RaycastHitData right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_209, (TrackedPoseDriverDataDescription_PoseData left, TrackedPoseDriverDataDescription_PoseData right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_210, (TreeView_TreeViewItemWrapper left, TreeView_TreeViewItemWrapper right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_211, (TreeViewReorderableDragAndDropController_TreeItemState left, TreeViewReorderableDragAndDropController_TreeItemState right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_212, (UIRStylePainter_Entry left, UIRStylePainter_Entry right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_213, (UIRenderDevice_AllocToFree left, UIRenderDevice_AllocToFree right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_214, (UIRenderDevice_AllocToUpdate left, UIRenderDevice_AllocToUpdate right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_215, (UnitySynchronizationContext_WorkRequest left, UnitySynchronizationContext_WorkRequest right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_216, (VisualTreeAsset_SlotDefinition left, VisualTreeAsset_SlotDefinition right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_217, (VisualTreeAsset_SlotUsageEntry left, VisualTreeAsset_SlotUsageEntry right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_218, (VisualTreeAsset_UsingEntry left, VisualTreeAsset_UsingEntry right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_219, (XmlSchemaObjectTable_XmlSchemaObjectEntry left, XmlSchemaObjectTable_XmlSchemaObjectEntry right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_220, (ftLightmaps_LightmapAdditionalData left, ftLightmaps_LightmapAdditionalData right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_221, (gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy left, gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_222, (DebugUI_Foldout_ContextMenuItem left, DebugUI_Foldout_ContextMenuItem right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_223, (InputControlLayout_Collection_LayoutMatcher left, InputControlLayout_Collection_LayoutMatcher right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_224, (InstructionList_DebugView_InstructionView left, InstructionList_DebugView_InstructionView right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_225, (PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb left, PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_226, (TargetPositionCache_CacheCurve_Item left, TargetPositionCache_CacheCurve_Item right, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_227, (TargetPositionCache_CacheEntry_RecordingItem left, TargetPositionCache_CacheEntry_RecordingItem right, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, ReadOnlyMemory_1_Byte_ *, Unsafe_As_1, (Memory_1_Byte_ * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, ReadOnlyMemory_1_Object_ *, Unsafe_As_2, (Memory_1_Object_ * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Memory_1_Byte_ *, Unsafe_As_3, (ReadOnlyMemory_1_Byte_ * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Memory_1_Object_ *, Unsafe_As_4, (ReadOnlyMemory_1_Object_ * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Volatile_VolatileBoolean *, Unsafe_As_5, (bool * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, ArraySegment_1_Byte_ *, Unsafe_As_6, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, AsyncOperationHandle_1_System_Object_ *, Unsafe_As_7, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, VoiceSender_1_TPeer_ChannelDelta_Dissonance_Integrations_PhotonBolt_BoltPeer_ *, Unsafe_As_8, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, IntervalTree_1_T_Entry_System_Object_ *, Unsafe_As_9, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object_ *, Unsafe_As_10, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object_ *, Unsafe_As_11, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ *, Unsafe_As_12, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, KeyValuePair_2_System_Guid_System_Object_ *, Unsafe_As_13, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, KeyValuePair_2_System_Int32_System_Int32_ *, Unsafe_As_14, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, KeyValuePair_2_System_Int32_System_Object_ *, Unsafe_As_15, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, KeyValuePair_2_System_Int32Enum_System_Object_ *, Unsafe_As_16, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, KeyValuePair_2_System_Object_System_ArraySegment_1_ *, Unsafe_As_17, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, KeyValuePair_2_System_Object_System_Char_ *, Unsafe_As_18, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, KeyValuePair_2_System_Object_System_Object_ *, Unsafe_As_19, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ *, Unsafe_As_20, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, KeyValuePair_2_UnityEngine_PropertyName_System_Object_ *, Unsafe_As_21, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer_ *, Unsafe_As_22, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, KeyValuePair_2_System_UInt16_System_Object_ *, Unsafe_As_23, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, KeyValuePair_2_System_UInt64_System_Object_ *, Unsafe_As_24, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, NativeArray_1_System_UInt16_ *, Unsafe_As_25, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, NativeArray_1_UnityEngine_UIElements_Vertex_ *, Unsafe_As_26, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, RenderGraphResourcePool_1_Type_ResourceLogInfo_System_Object_ *, Unsafe_As_27, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, STuple_2_System_Object_System_Object_ *, Unsafe_As_28, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, ValueTuple_2_Int32_Object_ *, Unsafe_As_29, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, ValueTuple_2_Int32_UnityEngine_Vector2Int_ *, Unsafe_As_30, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, ValueTuple_2_Object_ValueTuple_2_Object_Int32_ *, Unsafe_As_31, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, ValueTuple_2_Object_Object_ *, Unsafe_As_32, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, ValueTuple_2_UnityEngine_Vector3Int_Object_ *, Unsafe_As_33, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_ *, Unsafe_As_34, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_ *, Unsafe_As_35, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, AnimatorClipInfo *, Unsafe_As_36, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, AsyncOperationHandle *, Unsafe_As_37, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, BoltPeer *, Unsafe_As_38, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, BoltPhysicsHit *, Unsafe_As_39, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, BoneWeight *, Unsafe_As_40, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, bool *, Unsafe_As_41, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, uint8_t *, Unsafe_As_42, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, CancellationToken *, Unsafe_As_43, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, uint16_t *, Unsafe_As_44, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, ClientInfo *, Unsafe_As_45, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Color *, Unsafe_As_46, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Color32 *, Unsafe_As_47, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, CombineInstance *, Unsafe_As_48, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, ComputedTransitionProperty *, Unsafe_As_49, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Connection *, Unsafe_As_50, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, ControllerPollingInfo *, Unsafe_As_51, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, ControllerTemplateElementTarget *, Unsafe_As_52, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, CurveSample *, Unsafe_As_53, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, DateTime *, Unsafe_As_54, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, DateTimeOffset *, Unsafe_As_55, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Decimal *, Unsafe_As_56, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, DiagnosticEvent *, Unsafe_As_57, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, double *, Unsafe_As_58, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, EasingFunction *, Unsafe_As_59, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, ElementAssignmentConflictInfo *, Unsafe_As_60, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Entitlement *, Unsafe_As_61, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, EventReliable *, Unsafe_As_62, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, EventUnreliable *, Unsafe_As_63, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, FileStat *, Unsafe_As_64, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, GlyphPairAdjustmentRecord *, Unsafe_As_65, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, GlyphRect *, Unsafe_As_66, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Guid *, Unsafe_As_67, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, InputActionSourceData *, Unsafe_As_68, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, InputBinding *, Unsafe_As_69, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, InputDevice_1 *, Unsafe_As_70, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, InputDeviceDescription *, Unsafe_As_71, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, InputEventPtr *, Unsafe_As_72, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, int16_t *, Unsafe_As_73, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Int3 *, Unsafe_As_74, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, int32_t *, Unsafe_As_75, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Int32Enum__Enum *, Unsafe_As_76, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, int64_t *, Unsafe_As_77, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, IntPoint *, Unsafe_As_78, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, void * *, Unsafe_As_79, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, IntRect *, Unsafe_As_80, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, InternedString *, Unsafe_As_81, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, InterpretedFrameInfo *, Unsafe_As_82, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, IntervalTreeNode *, Unsafe_As_83, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, ItemDefinitionAmount *, Unsafe_As_84, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, KickedPlayer *, Unsafe_As_85, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, LayerMask *, Unsafe_As_86, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, ManipulatorActivationFilter *, Unsafe_As_87, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Matrix4x4 *, Unsafe_As_88, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, NameAndParameters *, Unsafe_As_89, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, NamedValue *, Unsafe_As_90, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, NetworkPropertyInfo *, Unsafe_As_91, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Object * *, Unsafe_As_92, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, ObjectInitializationData *, Unsafe_As_93, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, OpenChannel *, Unsafe_As_94, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, PacketStats *, Unsafe_As_95, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, ParticleCollisionEvent *, Unsafe_As_96, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Playable *, Unsafe_As_97, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, PlayableBinding *, Unsafe_As_98, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Priority *, Unsafe_As_99, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Quaternion *, Unsafe_As_100, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, RangePositionInfo *, Unsafe_As_101, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, RaycastHit *, Unsafe_As_102, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, RaycastHit2D *, Unsafe_As_103, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, RaycastResult *, Unsafe_As_104, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Rect *, Unsafe_As_105, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, ReflectionProbeBlendInfo *, Unsafe_As_106, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, RemoteChannel *, Unsafe_As_107, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, RenderChainTextEntry *, Unsafe_As_108, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, RenderTargetIdentifier *, Unsafe_As_109, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, RendererList *, Unsafe_As_110, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, RendererListHandle *, Unsafe_As_111, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Resolution *, Unsafe_As_112, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, ResourceHandle *, Unsafe_As_113, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, RoomMembership *, Unsafe_As_114, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, RuleMatcher *, Unsafe_As_115, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, int8_t *, Unsafe_As_116, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, SelectorMatchRecord *, Unsafe_As_117, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, float *, Unsafe_As_118, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Sku *, Unsafe_As_119, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, SslApplicationProtocol *, Unsafe_As_120, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, SteamItemDef_t *, Unsafe_As_121, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, SteamItemDetails_t *, Unsafe_As_122, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, StylePropertyName *, Unsafe_As_123, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, StylePropertyValue *, Unsafe_As_124, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, StyleSelectorPart *, Unsafe_As_125, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, StyleSyntaxToken *, Unsafe_As_126, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, StyleValue *, Unsafe_As_127, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, StyleValueManaged *, Unsafe_As_128, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, StyleVariable *, Unsafe_As_129, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, SubMeshDescriptor *, Unsafe_As_130, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Substring *, Unsafe_As_131, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, TimeSpan *, Unsafe_As_132, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, TimeValue *, Unsafe_As_133, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, TreeViewItemWrapper *, Unsafe_As_134, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, TypeWrapper *, Unsafe_As_135, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, UICharInfo *, Unsafe_As_136, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, UILineInfo *, Unsafe_As_137, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, UIVertex *, Unsafe_As_138, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, uint16_t *, Unsafe_As_139, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, uint32_t *, Unsafe_As_140, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, uint64_t *, Unsafe_As_141, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, UVTexture *, Unsafe_As_142, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, UdpEndPoint *, Unsafe_As_143, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, UdpIPv4Address *, Unsafe_As_144, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, UsageHint *, Unsafe_As_145, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, User *, Unsafe_As_146, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Vector2 *, Unsafe_As_147, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Vector3 *, Unsafe_As_148, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Vector4 *, Unsafe_As_149, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, VertexAttributeDescriptor *, Unsafe_As_150, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, ViewConfiguration *, Unsafe_As_151, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, VoicePacket *, Unsafe_As_152, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, VoxelContour *, Unsafe_As_153, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Win32_IP_ADAPTER_ADDRESSES *, Unsafe_As_154, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Win32_IP_ADAPTER_INFO *, Unsafe_As_155, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, X509ChainStatus *, Unsafe_As_156, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, XRFeatureDescriptor *, Unsafe_As_157, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, XRNodeState *, Unsafe_As_158, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, AdvancedSmooth_Turn *, Unsafe_As_159, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, AnimationOutputWeightProcessor_WeightInfo *, Unsafe_As_160, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, BeforeRenderHelper_OrderBlock *, Unsafe_As_161, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, BitmapAllocator32_Page *, Unsafe_As_162, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Camera_RenderRequest *, Unsafe_As_163, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, CameraState_CustomBlendable *, Unsafe_As_164, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, CinemachineClearShot_Pair *, Unsafe_As_165, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, CinemachineStateDrivenCamera_HashPair *, Unsafe_As_166, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, ClipperLib_DoublePoint *, Unsafe_As_167, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, ClipperLib_IntPoint *, Unsafe_As_168, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, ConfinerOven_PolygonSolution *, Unsafe_As_169, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB *, Unsafe_As_170, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, DelayedActionManager_DelegateInfo *, Unsafe_As_171, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, EventDispatcher_CallbackWrapper *, Unsafe_As_172, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, EventDispatcher_EventListener *, Unsafe_As_173, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, EventQueue_NetworkEvent *, Unsafe_As_174, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, FocusController_FocusedElement *, Unsafe_As_175, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Funnel_PathPart *, Unsafe_As_176, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, HID_HIDCollectionDescriptor *, Unsafe_As_177, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, HID_HIDElementDescriptor *, Unsafe_As_178, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, HIDParser_HIDReportData *, Unsafe_As_179, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, HairDesignerGeneratorFurShellBase_BufferData *, Unsafe_As_180, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, InputActionMap_BindingOverrideJson *, Unsafe_As_181, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, InputControlLayout_ControlItem *, Unsafe_As_182, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, InternalTreeView_TreeViewItemWrapper *, Unsafe_As_183, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV *, Unsafe_As_184, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb *, Unsafe_As_185, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux *, Unsafe_As_186, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, JsonParser_JsonValue *, Unsafe_As_187, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Logs_LogMessage *, Unsafe_As_188, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, MagicLightProbes_VolumeParameters *, Unsafe_As_189, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, NolanBehaviour_OverlappedCollider *, Unsafe_As_190, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, OpenXRInput_SerializedBinding *, Unsafe_As_191, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, PackedPlayModeBuildLogs_RuntimeBuildLog *, Unsafe_As_192, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, ParticleSystem_Particle *, Unsafe_As_193, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, ProbeBrickIndex_Brick *, Unsafe_As_194, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, ProbeBrickIndex_ReservedBrick *, Unsafe_As_195, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, ProbeBrickIndex_VoxelMeta *, Unsafe_As_196, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, ProbeBrickPool_BrickChunkAlloc *, Unsafe_As_197, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, ProbeVolumePerSceneData_SerializableAssetItem *, Unsafe_As_198, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, ProbeVolumeSceneData_SerializableBoundItem *, Unsafe_As_199, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, ProbeVolumeSceneData_SerializableHasPVItem *, Unsafe_As_200, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, ProbeVolumeSceneData_SerializablePVBakeSettings *, Unsafe_As_201, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, ProbeVolumeSceneData_SerializablePVProfile *, Unsafe_As_202, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, RegexCharClass_SingleRange *, Unsafe_As_203, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, RenderChain_RenderNodeData *, Unsafe_As_204, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, RenderGraphDebugData_PassDebugData *, Unsafe_As_205, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, RenderGraphDebugData_ResourceDebugData *, Unsafe_As_206, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, ResourceManager_DeferredCallbackRegisterRequest *, Unsafe_As_207, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, RetainedGizmos_MeshWithHash *, Unsafe_As_208, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, TemplateAsset_AttributeOverride *, Unsafe_As_209, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, TextSettings_FontReferenceMap *, Unsafe_As_210, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, TextureBlitter_BlitInfo *, Unsafe_As_211, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, TexturePacker_JsonArray_Frame *, Unsafe_As_212, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, TextureRegistry_TextureInfo *, Unsafe_As_213, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, TimeNotificationBehaviour_NotificationEntry *, Unsafe_As_214, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, TrackedDeviceRaycaster_RaycastHitData *, Unsafe_As_215, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, TrackedPoseDriverDataDescription_PoseData *, Unsafe_As_216, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, TreeView_TreeViewItemWrapper *, Unsafe_As_217, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, TreeViewReorderableDragAndDropController_TreeItemState *, Unsafe_As_218, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, UIRStylePainter_Entry *, Unsafe_As_219, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, UIRenderDevice_AllocToFree *, Unsafe_As_220, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, UIRenderDevice_AllocToUpdate *, Unsafe_As_221, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, UnitySynchronizationContext_WorkRequest *, Unsafe_As_222, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, VisualTreeAsset_SlotDefinition *, Unsafe_As_223, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, VisualTreeAsset_SlotUsageEntry *, Unsafe_As_224, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, VisualTreeAsset_UsingEntry *, Unsafe_As_225, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, XmlSchemaObjectTable_XmlSchemaObjectEntry *, Unsafe_As_226, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, ftLightmaps_LightmapAdditionalData *, Unsafe_As_227, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy *, Unsafe_As_228, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, DebugUI_Foldout_ContextMenuItem *, Unsafe_As_229, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, InputControlLayout_Collection_LayoutMatcher *, Unsafe_As_230, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, InstructionList_DebugView_InstructionView *, Unsafe_As_231, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb *, Unsafe_As_232, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, TargetPositionCache_CacheCurve_Item *, Unsafe_As_233, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, TargetPositionCache_CacheEntry_RecordingItem *, Unsafe_As_234, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, uint8_t *, Unsafe_As_235, (uint16_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, uint16_t *, Unsafe_As_236, (uint16_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, void * *, Unsafe_As_237, (uint16_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Object * *, Unsafe_As_238, (uint16_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Decimal_DecCalc *, Unsafe_As_239, (Decimal * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, uint8_t *, Unsafe_As_240, (int32_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, uint16_t *, Unsafe_As_241, (int32_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, void * *, Unsafe_As_242, (int32_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, uint32_t *, Unsafe_As_243, (int32_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Volatile_VolatileInt32 *, Unsafe_As_244, (int32_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, uint64_t *, Unsafe_As_245, (int64_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, uint8_t *, Unsafe_As_246, (Object * * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, uint16_t *, Unsafe_As_247, (Object * * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, void * *, Unsafe_As_248, (Object * * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Object * *, Unsafe_As_249, (Object * * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Volatile_VolatileObject *, Unsafe_As_250, (Object * * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, uint8_t *, Unsafe_As_251, (uint16_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, uint16_t *, Unsafe_As_252, (uint16_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, void * *, Unsafe_As_253, (uint16_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, uint8_t *, Unsafe_As_254, (uint32_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, uint16_t *, Unsafe_As_255, (uint32_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, void * *, Unsafe_As_256, (uint32_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Void *, Unsafe_AsPointer, (uint8_t * value, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Void *, Unsafe_AsPointer_1, (uint16_t * value, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Void *, Unsafe_AsPointer_2, (Object * * value, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Void *, Unsafe_AsPointer_3, (Number_NumberBuffer_DigitsAndNullTerminator * value, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, uint8_t *, Unsafe_AsRef, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAB750, Unsafe_AsRef__MethodInfo); +DO_APP_FUNC(0x00A1B820, uint8_t *, Unsafe_AsRef_1, (Void * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, uint16_t *, Unsafe_AsRef_2, (Void * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Object * *, Unsafe_AsRef_3, (Object * * source, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Object * *, Unsafe_AsRef_4, (Void * source, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan, (ArraySegment_1_Byte_ * left, ArraySegment_1_Byte_ * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_1, (AsyncOperationHandle_1_System_Object_ * left, AsyncOperationHandle_1_System_Object_ * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_2, (VoiceSender_1_TPeer_ChannelDelta_Dissonance_Integrations_PhotonBolt_BoltPeer_ * left, VoiceSender_1_TPeer_ChannelDelta_Dissonance_Integrations_PhotonBolt_BoltPeer_ * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_3, (IntervalTree_1_T_Entry_System_Object_ * left, IntervalTree_1_T_Entry_System_Object_ * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_4, (IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object_ * left, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object_ * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_5, (IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object_ * left, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object_ * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_6, (IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * left, IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_7, (KeyValuePair_2_System_Guid_System_Object_ * left, KeyValuePair_2_System_Guid_System_Object_ * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_8, (KeyValuePair_2_System_Int32_System_Int32_ * left, KeyValuePair_2_System_Int32_System_Int32_ * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_9, (KeyValuePair_2_System_Int32_System_Object_ * left, KeyValuePair_2_System_Int32_System_Object_ * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_10, (KeyValuePair_2_System_Int32Enum_System_Object_ * left, KeyValuePair_2_System_Int32Enum_System_Object_ * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_11, (KeyValuePair_2_System_Object_System_ArraySegment_1_ * left, KeyValuePair_2_System_Object_System_ArraySegment_1_ * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_12, (KeyValuePair_2_System_Object_System_Char_ * left, KeyValuePair_2_System_Object_System_Char_ * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_13, (KeyValuePair_2_System_Object_System_Object_ * left, KeyValuePair_2_System_Object_System_Object_ * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_14, (KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * left, KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_15, (KeyValuePair_2_UnityEngine_PropertyName_System_Object_ * left, KeyValuePair_2_UnityEngine_PropertyName_System_Object_ * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_16, (KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer_ * left, KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer_ * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_17, (KeyValuePair_2_System_UInt16_System_Object_ * left, KeyValuePair_2_System_UInt16_System_Object_ * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_18, (KeyValuePair_2_System_UInt64_System_Object_ * left, KeyValuePair_2_System_UInt64_System_Object_ * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_19, (NativeArray_1_System_UInt16_ * left, NativeArray_1_System_UInt16_ * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_20, (NativeArray_1_UnityEngine_UIElements_Vertex_ * left, NativeArray_1_UnityEngine_UIElements_Vertex_ * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_21, (RenderGraphResourcePool_1_Type_ResourceLogInfo_System_Object_ * left, RenderGraphResourcePool_1_Type_ResourceLogInfo_System_Object_ * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_22, (STuple_2_System_Object_System_Object_ * left, STuple_2_System_Object_System_Object_ * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_23, (ValueTuple_2_Int32_Object_ * left, ValueTuple_2_Int32_Object_ * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_24, (ValueTuple_2_Int32_UnityEngine_Vector2Int_ * left, ValueTuple_2_Int32_UnityEngine_Vector2Int_ * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_25, (ValueTuple_2_Object_ValueTuple_2_Object_Int32_ * left, ValueTuple_2_Object_ValueTuple_2_Object_Int32_ * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_26, (ValueTuple_2_Object_Object_ * left, ValueTuple_2_Object_Object_ * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_27, (ValueTuple_2_UnityEngine_Vector3Int_Object_ * left, ValueTuple_2_UnityEngine_Vector3Int_Object_ * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_28, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_ * left, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_ * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_29, (ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_ * left, ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_ * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_30, (AnimatorClipInfo * left, AnimatorClipInfo * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_31, (AsyncOperationHandle * left, AsyncOperationHandle * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_32, (BoltPeer * left, BoltPeer * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_33, (BoltPhysicsHit * left, BoltPhysicsHit * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_34, (BoneWeight * left, BoneWeight * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_35, (bool * left, bool * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_36, (uint8_t * left, uint8_t * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_37, (CancellationToken * left, CancellationToken * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_38, (uint16_t * left, uint16_t * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_39, (ClientInfo * left, ClientInfo * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_40, (Color * left, Color * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_41, (Color32 * left, Color32 * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_42, (CombineInstance * left, CombineInstance * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_43, (ComputedTransitionProperty * left, ComputedTransitionProperty * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_44, (Connection * left, Connection * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_45, (ControllerPollingInfo * left, ControllerPollingInfo * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_46, (ControllerTemplateElementTarget * left, ControllerTemplateElementTarget * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_47, (CurveSample * left, CurveSample * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_48, (DateTime * left, DateTime * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_49, (DateTimeOffset * left, DateTimeOffset * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_50, (Decimal * left, Decimal * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_51, (DiagnosticEvent * left, DiagnosticEvent * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_52, (double * left, double * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_53, (EasingFunction * left, EasingFunction * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_54, (ElementAssignmentConflictInfo * left, ElementAssignmentConflictInfo * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_55, (Entitlement * left, Entitlement * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_56, (EventReliable * left, EventReliable * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_57, (EventUnreliable * left, EventUnreliable * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_58, (FileStat * left, FileStat * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_59, (GlyphPairAdjustmentRecord * left, GlyphPairAdjustmentRecord * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_60, (GlyphRect * left, GlyphRect * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_61, (Guid * left, Guid * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_62, (InputActionSourceData * left, InputActionSourceData * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_63, (InputBinding * left, InputBinding * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_64, (InputDevice_1 * left, InputDevice_1 * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_65, (InputDeviceDescription * left, InputDeviceDescription * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_66, (InputEventPtr * left, InputEventPtr * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_67, (int16_t * left, int16_t * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_68, (Int3 * left, Int3 * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_69, (int32_t * left, int32_t * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_70, (Int32Enum__Enum * left, Int32Enum__Enum * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_71, (int64_t * left, int64_t * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_72, (IntPoint * left, IntPoint * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_73, (IntRect * left, IntRect * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_74, (InternedString * left, InternedString * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_75, (InterpretedFrameInfo * left, InterpretedFrameInfo * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_76, (IntervalTreeNode * left, IntervalTreeNode * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_77, (ItemDefinitionAmount * left, ItemDefinitionAmount * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_78, (KickedPlayer * left, KickedPlayer * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_79, (LayerMask * left, LayerMask * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_80, (ManipulatorActivationFilter * left, ManipulatorActivationFilter * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_81, (Matrix4x4 * left, Matrix4x4 * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_82, (NameAndParameters * left, NameAndParameters * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_83, (NamedValue * left, NamedValue * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_84, (NetworkPropertyInfo * left, NetworkPropertyInfo * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_85, (Object * * left, Object * * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_86, (ObjectInitializationData * left, ObjectInitializationData * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_87, (OpenChannel * left, OpenChannel * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_88, (PacketStats * left, PacketStats * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_89, (ParticleCollisionEvent * left, ParticleCollisionEvent * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_90, (Playable * left, Playable * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_91, (PlayableBinding * left, PlayableBinding * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_92, (Priority * left, Priority * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_93, (Quaternion * left, Quaternion * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_94, (RangePositionInfo * left, RangePositionInfo * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_95, (RaycastHit * left, RaycastHit * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_96, (RaycastHit2D * left, RaycastHit2D * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_97, (RaycastResult * left, RaycastResult * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_98, (Rect * left, Rect * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_99, (ReflectionProbeBlendInfo * left, ReflectionProbeBlendInfo * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_100, (RemoteChannel * left, RemoteChannel * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_101, (RenderChainTextEntry * left, RenderChainTextEntry * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_102, (RenderTargetIdentifier * left, RenderTargetIdentifier * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_103, (RendererList * left, RendererList * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_104, (RendererListHandle * left, RendererListHandle * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_105, (Resolution * left, Resolution * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_106, (ResourceHandle * left, ResourceHandle * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_107, (RoomMembership * left, RoomMembership * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_108, (RuleMatcher * left, RuleMatcher * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_109, (int8_t * left, int8_t * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_110, (SelectorMatchRecord * left, SelectorMatchRecord * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_111, (float * left, float * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_112, (Sku * left, Sku * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_113, (SslApplicationProtocol * left, SslApplicationProtocol * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_114, (SteamItemDef_t * left, SteamItemDef_t * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_115, (SteamItemDetails_t * left, SteamItemDetails_t * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_116, (StylePropertyName * left, StylePropertyName * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_117, (StylePropertyValue * left, StylePropertyValue * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_118, (StyleSelectorPart * left, StyleSelectorPart * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_119, (StyleSyntaxToken * left, StyleSyntaxToken * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_120, (StyleValue * left, StyleValue * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_121, (StyleValueManaged * left, StyleValueManaged * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_122, (StyleVariable * left, StyleVariable * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_123, (SubMeshDescriptor * left, SubMeshDescriptor * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_124, (Substring * left, Substring * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_125, (TimeSpan * left, TimeSpan * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_126, (TimeValue * left, TimeValue * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_127, (TreeViewItemWrapper * left, TreeViewItemWrapper * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_128, (TypeWrapper * left, TypeWrapper * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_129, (UICharInfo * left, UICharInfo * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_130, (UILineInfo * left, UILineInfo * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_131, (UIVertex * left, UIVertex * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_132, (uint16_t * left, uint16_t * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_133, (uint32_t * left, uint32_t * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_134, (uint64_t * left, uint64_t * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_135, (UVTexture * left, UVTexture * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_136, (UdpEndPoint * left, UdpEndPoint * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_137, (UdpIPv4Address * left, UdpIPv4Address * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_138, (UsageHint * left, UsageHint * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_139, (User * left, User * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_140, (Vector2 * left, Vector2 * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_141, (Vector3 * left, Vector3 * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_142, (Vector4 * left, Vector4 * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_143, (VertexAttributeDescriptor * left, VertexAttributeDescriptor * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_144, (ViewConfiguration * left, ViewConfiguration * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_145, (VoicePacket * left, VoicePacket * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_146, (VoxelContour * left, VoxelContour * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_147, (Win32_IP_ADAPTER_ADDRESSES * left, Win32_IP_ADAPTER_ADDRESSES * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_148, (Win32_IP_ADAPTER_INFO * left, Win32_IP_ADAPTER_INFO * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_149, (X509ChainStatus * left, X509ChainStatus * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_150, (XRFeatureDescriptor * left, XRFeatureDescriptor * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_151, (XRNodeState * left, XRNodeState * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_152, (AdvancedSmooth_Turn * left, AdvancedSmooth_Turn * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_153, (AnimationOutputWeightProcessor_WeightInfo * left, AnimationOutputWeightProcessor_WeightInfo * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_154, (BeforeRenderHelper_OrderBlock * left, BeforeRenderHelper_OrderBlock * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_155, (BitmapAllocator32_Page * left, BitmapAllocator32_Page * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_156, (Camera_RenderRequest * left, Camera_RenderRequest * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_157, (CameraState_CustomBlendable * left, CameraState_CustomBlendable * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_158, (CinemachineClearShot_Pair * left, CinemachineClearShot_Pair * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_159, (CinemachineStateDrivenCamera_HashPair * left, CinemachineStateDrivenCamera_HashPair * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_160, (ClipperLib_DoublePoint * left, ClipperLib_DoublePoint * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_161, (ClipperLib_IntPoint * left, ClipperLib_IntPoint * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_162, (ConfinerOven_PolygonSolution * left, ConfinerOven_PolygonSolution * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_163, (CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB * left, CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_164, (DelayedActionManager_DelegateInfo * left, DelayedActionManager_DelegateInfo * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_165, (EventDispatcher_CallbackWrapper * left, EventDispatcher_CallbackWrapper * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_166, (EventDispatcher_EventListener * left, EventDispatcher_EventListener * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_167, (EventQueue_NetworkEvent * left, EventQueue_NetworkEvent * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_168, (FocusController_FocusedElement * left, FocusController_FocusedElement * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_169, (Funnel_PathPart * left, Funnel_PathPart * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_170, (HID_HIDCollectionDescriptor * left, HID_HIDCollectionDescriptor * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_171, (HID_HIDElementDescriptor * left, HID_HIDElementDescriptor * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_172, (HIDParser_HIDReportData * left, HIDParser_HIDReportData * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_173, (HairDesignerGeneratorFurShellBase_BufferData * left, HairDesignerGeneratorFurShellBase_BufferData * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_174, (InputActionMap_BindingOverrideJson * left, InputActionMap_BindingOverrideJson * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_175, (InputControlLayout_ControlItem * left, InputControlLayout_ControlItem * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_176, (InternalTreeView_TreeViewItemWrapper * left, InternalTreeView_TreeViewItemWrapper * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_177, (JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV * left, JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_178, (JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb * left, JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_179, (JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux * left, JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_180, (JsonParser_JsonValue * left, JsonParser_JsonValue * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_181, (Logs_LogMessage * left, Logs_LogMessage * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_182, (MagicLightProbes_VolumeParameters * left, MagicLightProbes_VolumeParameters * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_183, (NolanBehaviour_OverlappedCollider * left, NolanBehaviour_OverlappedCollider * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_184, (OpenXRInput_SerializedBinding * left, OpenXRInput_SerializedBinding * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_185, (PackedPlayModeBuildLogs_RuntimeBuildLog * left, PackedPlayModeBuildLogs_RuntimeBuildLog * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_186, (ParticleSystem_Particle * left, ParticleSystem_Particle * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_187, (ProbeBrickIndex_Brick * left, ProbeBrickIndex_Brick * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_188, (ProbeBrickIndex_ReservedBrick * left, ProbeBrickIndex_ReservedBrick * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_189, (ProbeBrickIndex_VoxelMeta * left, ProbeBrickIndex_VoxelMeta * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_190, (ProbeBrickPool_BrickChunkAlloc * left, ProbeBrickPool_BrickChunkAlloc * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_191, (ProbeVolumePerSceneData_SerializableAssetItem * left, ProbeVolumePerSceneData_SerializableAssetItem * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_192, (ProbeVolumeSceneData_SerializableBoundItem * left, ProbeVolumeSceneData_SerializableBoundItem * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_193, (ProbeVolumeSceneData_SerializableHasPVItem * left, ProbeVolumeSceneData_SerializableHasPVItem * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_194, (ProbeVolumeSceneData_SerializablePVBakeSettings * left, ProbeVolumeSceneData_SerializablePVBakeSettings * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_195, (ProbeVolumeSceneData_SerializablePVProfile * left, ProbeVolumeSceneData_SerializablePVProfile * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_196, (RegexCharClass_SingleRange * left, RegexCharClass_SingleRange * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_197, (RenderChain_RenderNodeData * left, RenderChain_RenderNodeData * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_198, (RenderGraphDebugData_PassDebugData * left, RenderGraphDebugData_PassDebugData * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_199, (RenderGraphDebugData_ResourceDebugData * left, RenderGraphDebugData_ResourceDebugData * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_200, (ResourceManager_DeferredCallbackRegisterRequest * left, ResourceManager_DeferredCallbackRegisterRequest * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_201, (RetainedGizmos_MeshWithHash * left, RetainedGizmos_MeshWithHash * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_202, (TemplateAsset_AttributeOverride * left, TemplateAsset_AttributeOverride * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_203, (TextSettings_FontReferenceMap * left, TextSettings_FontReferenceMap * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_204, (TextureBlitter_BlitInfo * left, TextureBlitter_BlitInfo * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_205, (TexturePacker_JsonArray_Frame * left, TexturePacker_JsonArray_Frame * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_206, (TextureRegistry_TextureInfo * left, TextureRegistry_TextureInfo * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_207, (TimeNotificationBehaviour_NotificationEntry * left, TimeNotificationBehaviour_NotificationEntry * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_208, (TrackedDeviceRaycaster_RaycastHitData * left, TrackedDeviceRaycaster_RaycastHitData * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_209, (TrackedPoseDriverDataDescription_PoseData * left, TrackedPoseDriverDataDescription_PoseData * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_210, (TreeView_TreeViewItemWrapper * left, TreeView_TreeViewItemWrapper * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_211, (TreeViewReorderableDragAndDropController_TreeItemState * left, TreeViewReorderableDragAndDropController_TreeItemState * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_212, (UIRStylePainter_Entry * left, UIRStylePainter_Entry * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_213, (UIRenderDevice_AllocToFree * left, UIRenderDevice_AllocToFree * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_214, (UIRenderDevice_AllocToUpdate * left, UIRenderDevice_AllocToUpdate * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_215, (UnitySynchronizationContext_WorkRequest * left, UnitySynchronizationContext_WorkRequest * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_216, (VisualTreeAsset_SlotDefinition * left, VisualTreeAsset_SlotDefinition * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_217, (VisualTreeAsset_SlotUsageEntry * left, VisualTreeAsset_SlotUsageEntry * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_218, (VisualTreeAsset_UsingEntry * left, VisualTreeAsset_UsingEntry * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_219, (XmlSchemaObjectTable_XmlSchemaObjectEntry * left, XmlSchemaObjectTable_XmlSchemaObjectEntry * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_220, (ftLightmaps_LightmapAdditionalData * left, ftLightmaps_LightmapAdditionalData * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_221, (gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy * left, gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_222, (DebugUI_Foldout_ContextMenuItem * left, DebugUI_Foldout_ContextMenuItem * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_223, (InputControlLayout_Collection_LayoutMatcher * left, InputControlLayout_Collection_LayoutMatcher * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_224, (InstructionList_DebugView_InstructionView * left, InstructionList_DebugView_InstructionView * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_225, (PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb * left, PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_226, (TargetPositionCache_CacheCurve_Item * left, TargetPositionCache_CacheCurve_Item * right, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1C0, bool, Unsafe_IsAddressLessThan_227, (TargetPositionCache_CacheEntry_RecordingItem * left, TargetPositionCache_CacheEntry_RecordingItem * right, MethodInfo * method)); DO_APP_FUNC(0x00C2FFD0, Vector_1_System_UInt16_, Unsafe_Read, (Void * source, MethodInfo * method)); DO_APP_FUNC(0x00471910, Object *, Unsafe_Read_1, (Void * source, MethodInfo * method)); -DO_APP_FUNC(0x00C2FFD0, Vector_1_System_UInt16_, Unsafe_ReadUnaligned, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00EAA1D0, double, Unsafe_ReadUnaligned_1, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00C15E20, int16_t, Unsafe_ReadUnaligned_2, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, int32_t, Unsafe_ReadUnaligned_3, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00471910, int64_t, Unsafe_ReadUnaligned_4, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00471910, Object *, Unsafe_ReadUnaligned_5, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00C15E20, uint16_t, Unsafe_ReadUnaligned_6, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00A9EFB0, uint32_t, Unsafe_ReadUnaligned_7, (uint8_t source, MethodInfo * method)); -DO_APP_FUNC(0x00471910, void *, Unsafe_ReadUnaligned_8, (uint8_t source, MethodInfo * method)); +DO_APP_FUNC(0x00C2FFD0, Vector_1_System_UInt16_, Unsafe_ReadUnaligned, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00EAA1D0, double, Unsafe_ReadUnaligned_1, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00C15E20, int16_t, Unsafe_ReadUnaligned_2, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, int32_t, Unsafe_ReadUnaligned_3, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00471910, int64_t, Unsafe_ReadUnaligned_4, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00471910, Object *, Unsafe_ReadUnaligned_5, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00C15E20, uint16_t, Unsafe_ReadUnaligned_6, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00A9EFB0, uint32_t, Unsafe_ReadUnaligned_7, (uint8_t * source, MethodInfo * method)); +DO_APP_FUNC(0x00471910, void *, Unsafe_ReadUnaligned_8, (uint8_t * source, MethodInfo * method)); DO_APP_FUNC(0x003D2F30, int32_t, Unsafe_SizeOf, (MethodInfo * method)); DO_APP_FUNC(0x007205E0, int32_t, Unsafe_SizeOf_1, (MethodInfo * method)); DO_APP_FUNC(0x0072BFF0, int32_t, Unsafe_SizeOf_2, (MethodInfo * method)); @@ -216954,58 +240939,58 @@ DO_APP_FUNC(0x00EAA1E0, int32_t, Unsafe_SizeOf_3, (MethodInfo * method)); DO_APP_FUNC(0x00EAA1F0, int32_t, Unsafe_SizeOf_4, (MethodInfo * method)); DO_APP_FUNC(0x0072BFF0, int32_t, Unsafe_SizeOf_5, (MethodInfo * method)); DO_APP_FUNC(0x00EAA1E0, int32_t, Unsafe_SizeOf_6, (MethodInfo * method)); -DO_APP_FUNC(0x003BC280, void, Unsafe_WriteUnaligned, (uint8_t destination, Object * value, MethodInfo * method)); -DO_APP_FUNC(0x00959BA0, void, Unsafe_WriteUnaligned_1, (uint8_t destination, uint32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf, (Bone output, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_1, (bool output, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_2, (uint8_t output, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_3, (Color32 output, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_4, (DeviceConfigurationEvent output, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_5, (DeviceResetEvent output, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_6, (DisableDeviceCommand output, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_7, (double output, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_8, (DualMotorRumbleCommand output, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_9, (DualSenseHIDUSBOutputReport output, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_10, (DualShockHIDOutputReport output, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_11, (EnableDeviceCommand output, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_12, (EnableIMECompositionCommand output, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_13, (Eyes output, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_14, (GetHapticCapabilitiesCommand output, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_15, (Haptic output, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_16, (InitiateUserAccountPairingCommand output, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_17, (InputDeviceCommand output, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_18, (InputEvent output, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_19, (int32_t output, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_20, (Int32Enum__Enum output, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_21, (MouseState output, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_22, (NativeAnchor output, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_23, (Pose_1 output, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_24, (PoseState output, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_25, (PrimitiveValue output, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_26, (Quaternion output, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_27, (QueryCanRunInBackground output, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_28, (QueryEnabledStateCommand output, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_29, (QueryKeyNameCommand output, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_30, (QueryKeyboardLayoutCommand output, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_31, (QueryPairedUserAccountCommand output, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_32, (QuerySamplingFrequencyCommand output, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_33, (RequestResetCommand output, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_34, (RequestSyncCommand output, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_35, (SendBufferedHapticCommand output, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_36, (SendHapticImpulseCommand output, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_37, (SetIMECursorPositionCommand output, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_38, (SetSamplingFrequencyCommand output, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_39, (float output, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_40, (TextEvent output, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_41, (TouchState output, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_42, (uint32_t output, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_43, (UseWindowsGamingInputCommand output, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_44, (Vector2 output, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_45, (Vector3 output, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_46, (WarpMousePositionCommand output, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_47, (OpenXRInput_GetInternalDeviceIdCommand output, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_48, (SwitchProControllerHID_SwitchMagicOutputHIDBluetooth output, MethodInfo * method)); -DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_49, (SwitchProControllerHID_SwitchMagicOutputHIDUSB output, MethodInfo * method)); +DO_APP_FUNC(0x003BC280, void, Unsafe_WriteUnaligned, (uint8_t * destination, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x00959BA0, void, Unsafe_WriteUnaligned_1, (uint8_t * destination, uint32_t value, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf, (Bone * output, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_1, (bool * output, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_2, (uint8_t * output, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_3, (Color32 * output, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_4, (DeviceConfigurationEvent * output, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_5, (DeviceResetEvent * output, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_6, (DisableDeviceCommand * output, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_7, (double * output, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_8, (DualMotorRumbleCommand * output, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_9, (DualSenseHIDUSBOutputReport * output, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_10, (DualShockHIDOutputReport * output, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_11, (EnableDeviceCommand * output, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_12, (EnableIMECompositionCommand * output, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_13, (Eyes * output, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_14, (GetHapticCapabilitiesCommand * output, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_15, (Haptic * output, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_16, (InitiateUserAccountPairingCommand * output, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_17, (InputDeviceCommand * output, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_18, (InputEvent * output, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_19, (int32_t * output, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_20, (Int32Enum__Enum * output, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_21, (MouseState * output, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_22, (NativeAnchor * output, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_23, (Pose_1 * output, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_24, (PoseState * output, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_25, (PrimitiveValue * output, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_26, (Quaternion * output, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_27, (QueryCanRunInBackground * output, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_28, (QueryEnabledStateCommand * output, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_29, (QueryKeyNameCommand * output, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_30, (QueryKeyboardLayoutCommand * output, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_31, (QueryPairedUserAccountCommand * output, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_32, (QuerySamplingFrequencyCommand * output, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_33, (RequestResetCommand * output, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_34, (RequestSyncCommand * output, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_35, (SendBufferedHapticCommand * output, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_36, (SendHapticImpulseCommand * output, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_37, (SetIMECursorPositionCommand * output, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_38, (SetSamplingFrequencyCommand * output, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_39, (float * output, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_40, (TextEvent * output, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_41, (TouchState * output, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_42, (uint32_t * output, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_43, (UseWindowsGamingInputCommand * output, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_44, (Vector2 * output, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_45, (Vector3 * output, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_46, (WarpMousePositionCommand * output, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_47, (OpenXRInput_GetInternalDeviceIdCommand * output, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_48, (SwitchProControllerHID_SwitchMagicOutputHIDBluetooth * output, MethodInfo * method)); +DO_APP_FUNC(0x00A1B820, Void *, UnsafeUtility_AddressOf_49, (SwitchProControllerHID_SwitchMagicOutputHIDUSB * output, MethodInfo * method)); DO_APP_FUNC(0x00EAA200, int32_t, UnsafeUtility_AlignOf, (MethodInfo * method)); DO_APP_FUNC(0x00EAA200, int32_t, UnsafeUtility_AlignOf_1, (MethodInfo * method)); DO_APP_FUNC(0x00EAA200, int32_t, UnsafeUtility_AlignOf_2, (MethodInfo * method)); @@ -217018,6 +241003,7 @@ DO_APP_FUNC(0x00EAA200, int32_t, UnsafeUtility_AlignOf_8, (MethodInfo * method)) DO_APP_FUNC(0x00EAA200, int32_t, UnsafeUtility_AlignOf_9, (MethodInfo * method)); DO_APP_FUNC(0x00EAA200, int32_t, UnsafeUtility_AlignOf_10, (MethodInfo * method)); DO_APP_FUNC(0x00EAA200, int32_t, UnsafeUtility_AlignOf_11, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07B58, UnsafeUtility_AlignOf_11__MethodInfo); DO_APP_FUNC(0x00EAA200, int32_t, UnsafeUtility_AlignOf_12, (MethodInfo * method)); DO_APP_FUNC(0x00EAA200, int32_t, UnsafeUtility_AlignOf_13, (MethodInfo * method)); DO_APP_FUNC(0x00EAA200, int32_t, UnsafeUtility_AlignOf_14, (MethodInfo * method)); @@ -217041,8 +241027,8 @@ DO_APP_FUNC(0x00EAA200, int32_t, UnsafeUtility_AlignOf_31, (MethodInfo * method) DO_APP_FUNC(0x00AFE200, bool, UnsafeUtility_EnumEquals, (Int32Enum__Enum lhs, Int32Enum__Enum rhs, MethodInfo * method)); DO_APP_FUNC(0x00EAA250, int32_t, UnsafeUtility_EnumToInt, (Int32Enum__Enum enumValue, MethodInfo * method)); DO_APP_FUNC(0x00EAA290, String *, UnsafeUtility_GetReasonForGenericListNonBlittable, (MethodInfo * method)); -DO_APP_FUNC(0x00EAA320, void, UnsafeUtility_InternalEnumToInt, (Int32Enum__Enum enumValue, int32_t intValue, MethodInfo * method)); -DO_APP_FUNC(0x00EAA320, void, UnsafeUtility_InternalEnumToInt_1, (Object * enumValue, int32_t intValue, MethodInfo * method)); +DO_APP_FUNC(0x00EAA320, void, UnsafeUtility_InternalEnumToInt, (Int32Enum__Enum * enumValue, int32_t * intValue, MethodInfo * method)); +DO_APP_FUNC(0x00EAA320, void, UnsafeUtility_InternalEnumToInt_1, (Object * * enumValue, int32_t * intValue, MethodInfo * method)); DO_APP_FUNC(0x00EAA330, bool, UnsafeUtility_IsBlittable_1, (MethodInfo * method)); DO_APP_FUNC(0x00EAA3D0, bool, UnsafeUtility_IsGenericListBlittable, (MethodInfo * method)); DO_APP_FUNC(0x00EAA3F0, BatchVisibility, UnsafeUtility_ReadArrayElement, (Void * source, int32_t index, MethodInfo * method)); @@ -217126,6 +241112,7 @@ DO_APP_FUNC(0x00EAA850, int32_t, UnsafeUtility_SizeOf_37, (MethodInfo * method)) DO_APP_FUNC(0x007205E0, int32_t, UnsafeUtility_SizeOf_38, (MethodInfo * method)); DO_APP_FUNC(0x003D2F30, int32_t, UnsafeUtility_SizeOf_39, (MethodInfo * method)); DO_APP_FUNC(0x00EAA1E0, int32_t, UnsafeUtility_SizeOf_40, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC59A0, UnsafeUtility_SizeOf_40__MethodInfo); DO_APP_FUNC(0x00EAA7E0, int32_t, UnsafeUtility_SizeOf_41, (MethodInfo * method)); DO_APP_FUNC(0x00EAA1F0, int32_t, UnsafeUtility_SizeOf_42, (MethodInfo * method)); DO_APP_FUNC(0x003D2F30, int32_t, UnsafeUtility_SizeOf_43, (MethodInfo * method)); @@ -217134,9 +241121,11 @@ DO_APP_FUNC(0x003D2F30, int32_t, UnsafeUtility_SizeOf_45, (MethodInfo * method)) DO_APP_FUNC(0x003D2F30, int32_t, UnsafeUtility_SizeOf_46, (MethodInfo * method)); DO_APP_FUNC(0x007205E0, int32_t, UnsafeUtility_SizeOf_47, (MethodInfo * method)); DO_APP_FUNC(0x00EAA7D0, int32_t, UnsafeUtility_SizeOf_48, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD0EB8, UnsafeUtility_SizeOf_48__MethodInfo); DO_APP_FUNC(0x00EAA1E0, int32_t, UnsafeUtility_SizeOf_49, (MethodInfo * method)); DO_APP_FUNC(0x00EAA1E0, int32_t, UnsafeUtility_SizeOf_50, (MethodInfo * method)); DO_APP_FUNC(0x00EAA1F0, int32_t, UnsafeUtility_SizeOf_51, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D07B50, UnsafeUtility_SizeOf_51__MethodInfo); DO_APP_FUNC(0x00EAA870, int32_t, UnsafeUtility_SizeOf_52, (MethodInfo * method)); DO_APP_FUNC(0x00EAA850, int32_t, UnsafeUtility_SizeOf_53, (MethodInfo * method)); DO_APP_FUNC(0x00AEF240, int32_t, UnsafeUtility_SizeOf_54, (MethodInfo * method)); @@ -217149,8 +241138,10 @@ DO_APP_FUNC(0x003D2F30, int32_t, UnsafeUtility_SizeOf_60, (MethodInfo * method)) DO_APP_FUNC(0x00AEFEA0, int32_t, UnsafeUtility_SizeOf_61, (MethodInfo * method)); DO_APP_FUNC(0x00EAA1E0, int32_t, UnsafeUtility_SizeOf_62, (MethodInfo * method)); DO_APP_FUNC(0x00EAA7E0, int32_t, UnsafeUtility_SizeOf_63, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEC718, UnsafeUtility_SizeOf_63__MethodInfo); DO_APP_FUNC(0x00EAA870, int32_t, UnsafeUtility_SizeOf_64, (MethodInfo * method)); DO_APP_FUNC(0x00EAA880, int32_t, UnsafeUtility_SizeOf_65, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC5258, UnsafeUtility_SizeOf_65__MethodInfo); DO_APP_FUNC(0x003D2F30, int32_t, UnsafeUtility_SizeOf_66, (MethodInfo * method)); DO_APP_FUNC(0x00EAA8A0, int32_t, UnsafeUtility_SizeOf_67, (MethodInfo * method)); DO_APP_FUNC(0x0072BFF0, int32_t, UnsafeUtility_SizeOf_68, (MethodInfo * method)); @@ -217169,8 +241160,10 @@ DO_APP_FUNC(0x00EAA8D0, int32_t, UnsafeUtility_SizeOf_80, (MethodInfo * method)) DO_APP_FUNC(0x00AF2B00, int32_t, UnsafeUtility_SizeOf_81, (MethodInfo * method)); DO_APP_FUNC(0x00EAA8E0, int32_t, UnsafeUtility_SizeOf_82, (MethodInfo * method)); DO_APP_FUNC(0x00EAA8F0, int32_t, UnsafeUtility_SizeOf_83, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CC74C0, UnsafeUtility_SizeOf_83__MethodInfo); DO_APP_FUNC(0x00EAA900, int32_t, UnsafeUtility_SizeOf_84, (MethodInfo * method)); DO_APP_FUNC(0x00EAA7B0, int32_t, UnsafeUtility_SizeOf_85, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1650, UnsafeUtility_SizeOf_85__MethodInfo); DO_APP_FUNC(0x00EAA910, void, UnsafeUtility_WriteArrayElement, (Void * destination, int32_t index, BatchVisibility value, MethodInfo * method)); DO_APP_FUNC(0x00EAA930, void, UnsafeUtility_WriteArrayElement_1, (Void * destination, int32_t index, BoneWeight1 value, MethodInfo * method)); DO_APP_FUNC(0x00EAA940, void, UnsafeUtility_WriteArrayElement_2, (Void * destination, int32_t index, BoundedPlane value, MethodInfo * method)); @@ -217211,26 +241204,39 @@ DO_APP_FUNC(0x00EAACF0, void, UnsafeUtility_WriteArrayElementWithStride_4, (Void DO_APP_FUNC(0x00EAAC30, void, UnsafeUtility_WriteArrayElementWithStride_5, (Void * destination, int32_t index, int32_t stride, Vector4 value, MethodInfo * method)); DO_APP_FUNC(0x00EAAD00, void, UnsafeUtility_WriteArrayElementWithStride_6, (Void * destination, int32_t index, int32_t stride, Vertex value, MethodInfo * method)); DO_APP_FUNC(0x00EAAD40, void, Utility_1_SetVectorArray_1, (MaterialPropertyBlock * props, int32_t name, NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4_ vector4s, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7B78, Utility_1_SetVectorArray_1__MethodInfo); DO_APP_FUNC(0x00EAAE00, void, Utility_1_SetVectorArray_2, (MaterialPropertyBlock * props, int32_t name, NativeSlice_1_UnityEngine_Vector4_ vector4s, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD7B80, Utility_1_SetVectorArray_2__MethodInfo); DO_APP_FUNC(0x00EAAEC0, bool, UxmlAttributeDescription_GetValueFromBag, (UxmlAttributeDescription * __this, IUxmlAttributes * bag, CreationContext cc, Func_3_String_Boolean_Boolean_ * converterFunc, bool defaultValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D032F0, UxmlAttributeDescription_GetValueFromBag__MethodInfo); DO_APP_FUNC(0x00EAAF90, int32_t, UxmlAttributeDescription_GetValueFromBag_1, (UxmlAttributeDescription * __this, IUxmlAttributes * bag, CreationContext cc, Func_3_String_Int32_Int32_ * converterFunc, int32_t defaultValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D032E0, UxmlAttributeDescription_GetValueFromBag_1__MethodInfo); DO_APP_FUNC(0x00EAB060, Int32Enum__Enum, UxmlAttributeDescription_GetValueFromBag_2, (UxmlAttributeDescription * __this, IUxmlAttributes * bag, CreationContext cc, Func_3_String_Int32Enum_Int32Enum_ * converterFunc, Int32Enum__Enum defaultValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D032D0, UxmlAttributeDescription_GetValueFromBag_2__MethodInfo); DO_APP_FUNC(0x00EAB130, int64_t, UxmlAttributeDescription_GetValueFromBag_3, (UxmlAttributeDescription * __this, IUxmlAttributes * bag, CreationContext cc, Func_3_String_Int64_Int64_ * converterFunc, int64_t defaultValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03290, UxmlAttributeDescription_GetValueFromBag_3__MethodInfo); DO_APP_FUNC(0x00EAB200, Object *, UxmlAttributeDescription_GetValueFromBag_4, (UxmlAttributeDescription * __this, IUxmlAttributes * bag, CreationContext cc, Func_3_String_Object_Object_ * converterFunc, Object * defaultValue, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03280, UxmlAttributeDescription_GetValueFromBag_4__MethodInfo); DO_APP_FUNC(0x00EAB2D0, float, UxmlAttributeDescription_GetValueFromBag_5, (UxmlAttributeDescription * __this, IUxmlAttributes * bag, CreationContext cc, Func_3_String_Single_Single_ * converterFunc, float defaultValue, MethodInfo * method)); -DO_APP_FUNC(0x00EAB3B0, bool, UxmlAttributeDescription_TryGetValueFromBag, (UxmlAttributeDescription * __this, IUxmlAttributes * bag, CreationContext cc, Func_3_String_Boolean_Boolean_ * converterFunc, bool defaultValue, bool value, MethodInfo * method)); -DO_APP_FUNC(0x00EAB450, bool, UxmlAttributeDescription_TryGetValueFromBag_1, (UxmlAttributeDescription * __this, IUxmlAttributes * bag, CreationContext cc, Func_3_String_Int32_Int32_ * converterFunc, int32_t defaultValue, int32_t value, MethodInfo * method)); -DO_APP_FUNC(0x00EAB450, bool, UxmlAttributeDescription_TryGetValueFromBag_2, (UxmlAttributeDescription * __this, IUxmlAttributes * bag, CreationContext cc, Func_3_String_Int32Enum_Int32Enum_ * converterFunc, Int32Enum__Enum defaultValue, Int32Enum__Enum value, MethodInfo * method)); -DO_APP_FUNC(0x00EAB4F0, bool, UxmlAttributeDescription_TryGetValueFromBag_3, (UxmlAttributeDescription * __this, IUxmlAttributes * bag, CreationContext cc, Func_3_String_Object_Object_ * converterFunc, Object * defaultValue, Object * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03270, UxmlAttributeDescription_GetValueFromBag_5__MethodInfo); +DO_APP_FUNC(0x00EAB3B0, bool, UxmlAttributeDescription_TryGetValueFromBag, (UxmlAttributeDescription * __this, IUxmlAttributes * bag, CreationContext cc, Func_3_String_Boolean_Boolean_ * converterFunc, bool defaultValue, bool * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CE9DA8, UxmlAttributeDescription_TryGetValueFromBag__MethodInfo); +DO_APP_FUNC(0x00EAB450, bool, UxmlAttributeDescription_TryGetValueFromBag_1, (UxmlAttributeDescription * __this, IUxmlAttributes * bag, CreationContext cc, Func_3_String_Int32_Int32_ * converterFunc, int32_t defaultValue, int32_t * value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CEA010, UxmlAttributeDescription_TryGetValueFromBag_1__MethodInfo); +DO_APP_FUNC(0x00EAB450, bool, UxmlAttributeDescription_TryGetValueFromBag_2, (UxmlAttributeDescription * __this, IUxmlAttributes * bag, CreationContext cc, Func_3_String_Int32Enum_Int32Enum_ * converterFunc, Int32Enum__Enum defaultValue, Int32Enum__Enum * value, MethodInfo * method)); +DO_APP_FUNC(0x00EAB4F0, bool, UxmlAttributeDescription_TryGetValueFromBag_3, (UxmlAttributeDescription * __this, IUxmlAttributes * bag, CreationContext cc, Func_3_String_Object_Object_ * converterFunc, Object * defaultValue, Object * * value, MethodInfo * method)); DO_APP_FUNC(0x00EAB640, Vector_1_System_UInt64_, Vector_AsVectorUInt64, (Vector_1_System_UInt16_ value, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04C58, Vector_AsVectorUInt64__MethodInfo); DO_APP_FUNC(0x00EAB6C0, Vector_1_System_UInt16_, Vector_Equals, (Vector_1_System_UInt16_ left, Vector_1_System_UInt16_ right, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04C20, Vector_Equals__MethodInfo); DO_APP_FUNC(0x00EAB760, Object *, VisualElement_GetFirstAncestorOfType, (VisualElement * __this, MethodInfo * method)); DO_APP_FUNC(0x00EAB840, Object *, VisualElement_GetFirstOfType, (VisualElement * __this, MethodInfo * method)); DO_APP_FUNC(0x00EAB8F0, ValueAnimation_1_System_Object_ *, VisualElement_StartAnimation, (ValueAnimation_1_System_Object_ * anim, Func_2_UnityEngine_UIElements_VisualElement_Object_ * fromValueGetter, Object * to, int32_t durationMs, Action_2_UnityEngine_UIElements_VisualElement_Object_ * onValueChanged, MethodInfo * method)); DO_APP_FUNC(0x00EAB9A0, ValueAnimation_1_StyleValues_ *, VisualElement_StartAnimation_1, (ValueAnimation_1_StyleValues_ * anim, Func_2_UnityEngine_UIElements_VisualElement_UnityEngine_UIElements_Experimental_StyleValues_ * fromValueGetter, StyleValues to, int32_t durationMs, Action_2_UnityEngine_UIElements_VisualElement_UnityEngine_UIElements_Experimental_StyleValues_ * onValueChanged, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD6AC0, VisualElement_StartAnimation_1__MethodInfo); DO_APP_FUNC(0x00EABA50, void, VisualTreeUpdater_SetUpdater, (VisualTreeUpdater * __this, VisualTreeUpdatePhase__Enum phase, MethodInfo * method)); -DO_APP_FUNC(0x00EABC40, Object *, Volatile_Read_3, (Object * location, MethodInfo * method)); -DO_APP_FUNC(0x00EABC50, void, Volatile_Write_2, (Object * location, Object * value, MethodInfo * method)); +DO_APP_FUNC(0x00EABC40, Object *, Volatile_Read_3, (Object * * location, MethodInfo * method)); +DO_APP_FUNC(0x00EABC50, void, Volatile_Write_2, (Object * * location, Object * value, MethodInfo * method)); DO_APP_FUNC(0x00EABCB0, bool, VolumeManager_IsComponentActiveInMask, (VolumeManager * __this, LayerMask layerMask, MethodInfo * method)); DO_APP_FUNC(0x00EAC110, bool, VolumeParameter_GetValue, (VolumeParameter * __this, MethodInfo * method)); DO_APP_FUNC(0x00EAC1E0, Color, VolumeParameter_GetValue_1, (VolumeParameter * __this, MethodInfo * method)); @@ -217244,10 +241250,10 @@ DO_APP_FUNC(0x00EAC1E0, Vector4, VolumeParameter_GetValue_8, (VolumeParameter * DO_APP_FUNC(0x00EAC4A0, Object *, VolumeProfile_Add_1, (VolumeProfile * __this, bool overrides, MethodInfo * method)); DO_APP_FUNC(0x00EAC720, bool, VolumeProfile_Has_1, (VolumeProfile * __this, MethodInfo * method)); DO_APP_FUNC(0x00EAC790, void, VolumeProfile_Remove_1, (VolumeProfile * __this, MethodInfo * method)); -DO_APP_FUNC(0x00EAC930, bool, VolumeProfile_TryGet, (VolumeProfile * __this, Object * component, MethodInfo * method)); -DO_APP_FUNC(0x00EAC9D0, bool, VolumeProfile_TryGet_1, (VolumeProfile * __this, Type * type, Object * component, MethodInfo * method)); +DO_APP_FUNC(0x00EAC930, bool, VolumeProfile_TryGet, (VolumeProfile * __this, Object * * component, MethodInfo * method)); +DO_APP_FUNC(0x00EAC9D0, bool, VolumeProfile_TryGet_1, (VolumeProfile * __this, Type * type, Object * * component, MethodInfo * method)); DO_APP_FUNC(0x00EACC20, bool, VolumeProfile_TryGetAllSubclassOf, (VolumeProfile * __this, Type * type, List_1_System_Object_ * result, MethodInfo * method)); -DO_APP_FUNC(0x00EACE80, bool, VolumeProfile_TryGetSubclassOf, (VolumeProfile * __this, Type * type, Object * component, MethodInfo * method)); +DO_APP_FUNC(0x00EACE80, bool, VolumeProfile_TryGetSubclassOf, (VolumeProfile * __this, Type * type, Object * * component, MethodInfo * method)); DO_APP_FUNC(0x00EAD0D0, Object *, VolumeStack_GetComponent_1, (VolumeStack * __this, MethodInfo * method)); DO_APP_FUNC(0x00EAD190, void, WebClient_HandleCompletion, (WebClient * __this, TaskCompletionSource_1_System_Object_ * tcs, Object * e, Func_2_Object_Object_ * getResult, Object * handler, Action_2_System_Net_WebClient_Object_ * unregisterHandler, MethodInfo * method)); DO_APP_FUNC(0x00EAD3B0, Object *, XDocument_GetFirstNode, (XDocument * __this, MethodInfo * method)); @@ -217255,6 +241261,7 @@ DO_APP_FUNC(0x00EAD4D0, bool, XKHfzUVAieDxXBogCMTJRCSldnQzA_DHoJMWJxuckjIjbQLshE DO_APP_FUNC(0x00EAD590, IList_1_System_Object_ *, XKHfzUVAieDxXBogCMTJRCSldnQzA_GeAAOyhcepifUUPPcKyuRjYpTMteA, (XKHfzUVAieDxXBogCMTJRCSldnQzA * __this, MethodInfo * method)); DO_APP_FUNC(0x00EAD5C0, bool, XKHfzUVAieDxXBogCMTJRCSldnQzA_IdoBsBWhwLzhUQzyXbTpuhSwcbbw_3, (XKHfzUVAieDxXBogCMTJRCSldnQzA * __this, IList_1_System_Object_ * param_0000a03e, MethodInfo * method)); DO_APP_FUNC(0x00EAD680, Object *, XKHfzUVAieDxXBogCMTJRCSldnQzA_LsIzBFwMYteiZfckNBrRUNxPnrmY_2, (XKHfzUVAieDxXBogCMTJRCSldnQzA * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03138, XKHfzUVAieDxXBogCMTJRCSldnQzA_LsIzBFwMYteiZfckNBrRUNxPnrmY_2__MethodInfo); DO_APP_FUNC(0x00EADB00, bool, XKHfzUVAieDxXBogCMTJRCSldnQzA_RVyZTLSrmmGgmhirYsrAYLilGgix_3, (XKHfzUVAieDxXBogCMTJRCSldnQzA * __this, IList_1_System_Object_ * param_0000a040, MethodInfo * method)); DO_APP_FUNC(0x00EADBC0, bool, XKHfzUVAieDxXBogCMTJRCSldnQzA_jwzGjIatPRhWXTpXZrztrNhJxAbaA_3, (XKHfzUVAieDxXBogCMTJRCSldnQzA * __this, IList_1_System_Object_ * param_0000a03a, MethodInfo * method)); DO_APP_FUNC(0x00EADC80, bool, XKHfzUVAieDxXBogCMTJRCSldnQzA_lTydDngNomYHuigfhNfxundkPAOhA_3, (XKHfzUVAieDxXBogCMTJRCSldnQzA * __this, IList_1_System_Object_ * param_0000a038, MethodInfo * method)); @@ -217262,41 +241269,72 @@ DO_APP_FUNC(0x00EADD40, Object *, XObject_Annotation, (XObject * __this, MethodI DO_APP_FUNC(0x00EADEE0, void, XRLoaderHelper_CreateIntegratedSubsystem, (XRLoaderHelper * __this, List_1_System_Object_ * descriptors, String * id, MethodInfo * method)); DO_APP_FUNC(0x00EADEE0, void, XRLoaderHelper_CreateStandaloneSubsystem, (XRLoaderHelper * __this, List_1_System_Object_ * descriptors, String * id, MethodInfo * method)); DO_APP_FUNC(0x00EADEF0, void, XRLoaderHelper_CreateSubsystem, (XRLoaderHelper * __this, List_1_System_Object_ * descriptors, String * id, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D030D8, XRLoaderHelper_CreateSubsystem__MethodInfo); DO_APP_FUNC(0x00EAE1C0, void, XRLoaderHelper_DestroySubsystem, (XRLoaderHelper * __this, MethodInfo * method)); DO_APP_FUNC(0x00EAE320, Object *, XRLoaderHelper_GetLoadedSubsystem, (XRLoaderHelper * __this, MethodInfo * method)); DO_APP_FUNC(0x00EAE4A0, void, XRLoaderHelper_StartSubsystem, (XRLoaderHelper * __this, MethodInfo * method)); DO_APP_FUNC(0x00EAE530, void, XRLoaderHelper_StopSubsystem, (XRLoaderHelper * __this, MethodInfo * method)); DO_APP_FUNC(0x00EAE5C0, Object *, XRManagerSettings_ActiveLoaderAs, (XRManagerSettings * __this, MethodInfo * method)); DO_APP_FUNC(0x00EAE650, Object *, XmlHelper_DeserializeFromFile, (String * filename, bool skipBOM, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03080, XmlHelper_DeserializeFromFile__MethodInfo); DO_APP_FUNC(0x00EAE7D0, Object *, XmlHelper_DeserializeFromResource, (String * resourceName, bool skipBOM, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03058, XmlHelper_DeserializeFromResource__MethodInfo); DO_APP_FUNC(0x00EAE9D0, Object *, XmlHelper_DeserializeFromString, (String * xmlAsString, bool skipBOM, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02FE0, XmlHelper_DeserializeFromString__MethodInfo); DO_APP_FUNC(0x00EAECB0, void, XmlHelper_SerializeToFile, (Object * obj, String * filename, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03018, XmlHelper_SerializeToFile__MethodInfo); DO_APP_FUNC(0x00EAEDE0, String *, XmlHelper_SerializeToString, (Object * obj, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02F98, XmlHelper_SerializeToString__MethodInfo); DO_APP_FUNC(0x00EAF0D0, Boolean__Array *, XmlListConverter_ToArray, (XmlListConverter * __this, Object * list, IXmlNamespaceResolver * nsResolver, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF208, XmlListConverter_ToArray__MethodInfo); DO_APP_FUNC(0x00EAF630, Byte__Array *, XmlListConverter_ToArray_1, (XmlListConverter * __this, Object * list, IXmlNamespaceResolver * nsResolver, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF288, XmlListConverter_ToArray_1__MethodInfo); DO_APP_FUNC(0x00EAFB90, DateTime__Array *, XmlListConverter_ToArray_2, (XmlListConverter * __this, Object * list, IXmlNamespaceResolver * nsResolver, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF298, XmlListConverter_ToArray_2__MethodInfo); DO_APP_FUNC(0x00EB00F0, DateTimeOffset__Array *, XmlListConverter_ToArray_3, (XmlListConverter * __this, Object * list, IXmlNamespaceResolver * nsResolver, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF290, XmlListConverter_ToArray_3__MethodInfo); DO_APP_FUNC(0x00EB0660, Decimal__Array *, XmlListConverter_ToArray_4, (XmlListConverter * __this, Object * list, IXmlNamespaceResolver * nsResolver, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF2A0, XmlListConverter_ToArray_4__MethodInfo); DO_APP_FUNC(0x00EB0BD0, Double__Array *, XmlListConverter_ToArray_5, (XmlListConverter * __this, Object * list, IXmlNamespaceResolver * nsResolver, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF268, XmlListConverter_ToArray_5__MethodInfo); DO_APP_FUNC(0x00EB1140, Int16__Array *, XmlListConverter_ToArray_6, (XmlListConverter * __this, Object * list, IXmlNamespaceResolver * nsResolver, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF270, XmlListConverter_ToArray_6__MethodInfo); DO_APP_FUNC(0x00EB16B0, Int32__Array *, XmlListConverter_ToArray_7, (XmlListConverter * __this, Object * list, IXmlNamespaceResolver * nsResolver, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF278, XmlListConverter_ToArray_7__MethodInfo); DO_APP_FUNC(0x00EB1C10, Int64__Array *, XmlListConverter_ToArray_8, (XmlListConverter * __this, Object * list, IXmlNamespaceResolver * nsResolver, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF280, XmlListConverter_ToArray_8__MethodInfo); DO_APP_FUNC(0x00EB2170, Object__Array *, XmlListConverter_ToArray_9, (XmlListConverter * __this, Object * list, IXmlNamespaceResolver * nsResolver, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF248, XmlListConverter_ToArray_9__MethodInfo); DO_APP_FUNC(0x00EB2730, SByte__Array *, XmlListConverter_ToArray_10, (XmlListConverter * __this, Object * list, IXmlNamespaceResolver * nsResolver, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF250, XmlListConverter_ToArray_10__MethodInfo); DO_APP_FUNC(0x00EB2C90, Single__Array *, XmlListConverter_ToArray_11, (XmlListConverter * __this, Object * list, IXmlNamespaceResolver * nsResolver, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF258, XmlListConverter_ToArray_11__MethodInfo); DO_APP_FUNC(0x00EB3200, TimeSpan__Array *, XmlListConverter_ToArray_12, (XmlListConverter * __this, Object * list, IXmlNamespaceResolver * nsResolver, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF228, XmlListConverter_ToArray_12__MethodInfo); DO_APP_FUNC(0x00EB3760, UInt16__Array *, XmlListConverter_ToArray_13, (XmlListConverter * __this, Object * list, IXmlNamespaceResolver * nsResolver, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF230, XmlListConverter_ToArray_13__MethodInfo); DO_APP_FUNC(0x00EB3CD0, UInt32__Array *, XmlListConverter_ToArray_14, (XmlListConverter * __this, Object * list, IXmlNamespaceResolver * nsResolver, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF238, XmlListConverter_ToArray_14__MethodInfo); DO_APP_FUNC(0x00EB4230, UInt64__Array *, XmlListConverter_ToArray_15, (XmlListConverter * __this, Object * list, IXmlNamespaceResolver * nsResolver, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CAF240, XmlListConverter_ToArray_15__MethodInfo); DO_APP_FUNC(0x00EB4790, bool, _AndroidJNIHelper_ConvertFromJNIArray, (void * array, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02EC0, _AndroidJNIHelper_ConvertFromJNIArray__MethodInfo); DO_APP_FUNC(0x00EB52C0, uint16_t, _AndroidJNIHelper_ConvertFromJNIArray_1, (void * array, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02ED0, _AndroidJNIHelper_ConvertFromJNIArray_1__MethodInfo); DO_APP_FUNC(0x00EB5DF0, double, _AndroidJNIHelper_ConvertFromJNIArray_2, (void * array, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02EA8, _AndroidJNIHelper_ConvertFromJNIArray_2__MethodInfo); DO_APP_FUNC(0x00EB6920, int16_t, _AndroidJNIHelper_ConvertFromJNIArray_3, (void * array, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02EB8, _AndroidJNIHelper_ConvertFromJNIArray_3__MethodInfo); DO_APP_FUNC(0x00EB7450, int32_t, _AndroidJNIHelper_ConvertFromJNIArray_4, (void * array, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02EB0, _AndroidJNIHelper_ConvertFromJNIArray_4__MethodInfo); DO_APP_FUNC(0x00EB7F80, int64_t, _AndroidJNIHelper_ConvertFromJNIArray_5, (void * array, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02E98, _AndroidJNIHelper_ConvertFromJNIArray_5__MethodInfo); DO_APP_FUNC(0x00EB8AB0, Object *, _AndroidJNIHelper_ConvertFromJNIArray_6, (void * array, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D02EA0, _AndroidJNIHelper_ConvertFromJNIArray_6__MethodInfo); DO_APP_FUNC(0x00EB9630, int8_t, _AndroidJNIHelper_ConvertFromJNIArray_7, (void * array, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04078, _AndroidJNIHelper_ConvertFromJNIArray_7__MethodInfo); DO_APP_FUNC(0x00EBA160, float, _AndroidJNIHelper_ConvertFromJNIArray_8, (void * array, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04088, _AndroidJNIHelper_ConvertFromJNIArray_8__MethodInfo); DO_APP_FUNC(0x00EBAC90, void *, _AndroidJNIHelper_GetFieldID_1, (void * jclass, String * fieldName, bool isStatic, MethodInfo * method)); DO_APP_FUNC(0x00EBAD40, void *, _AndroidJNIHelper_GetMethodID_1, (void * jclass, String * methodName, Object__Array * args, bool isStatic, MethodInfo * method)); DO_APP_FUNC(0x00EBAD40, void *, _AndroidJNIHelper_GetMethodID_2, (void * jclass, String * methodName, Object__Array * args, bool isStatic, MethodInfo * method)); @@ -217324,48 +241362,58 @@ DO_APP_FUNC_METHODINFO(0x03C8CEF0, ltZyyyCOqCBvCsdArfJhhYuMkHIuA_eefeIEXSweXnHOI DO_APP_FUNC(0x00EBC480, String *, ltZyyyCOqCBvCsdArfJhhYuMkHIuA_eefeIEXSweXnHOIJkACIIwxNVlqTA_2, (String * param_0001447e, Object__Array * param_0001447f, MethodInfo * method)); DO_APP_FUNC(0x00EBC570, int32_t, ltZyyyCOqCBvCsdArfJhhYuMkHIuA_uCyrisZMMPsIwXuWnKSFsmSSyYuL, (MethodInfo * method)); DO_APP_FUNC(0x00EBC600, int32_t, ltZyyyCOqCBvCsdArfJhhYuMkHIuA_uCyrisZMMPsIwXuWnKSFsmSSyYuL_1, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1A48, ltZyyyCOqCBvCsdArfJhhYuMkHIuA_uCyrisZMMPsIwXuWnKSFsmSSyYuL_1__MethodInfo); DO_APP_FUNC(0x00EBC690, int32_t, ltZyyyCOqCBvCsdArfJhhYuMkHIuA_uCyrisZMMPsIwXuWnKSFsmSSyYuL_2, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1A80, ltZyyyCOqCBvCsdArfJhhYuMkHIuA_uCyrisZMMPsIwXuWnKSFsmSSyYuL_2__MethodInfo); DO_APP_FUNC(0x00EBC720, int32_t, ltZyyyCOqCBvCsdArfJhhYuMkHIuA_uCyrisZMMPsIwXuWnKSFsmSSyYuL_3, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD1A28, ltZyyyCOqCBvCsdArfJhhYuMkHIuA_uCyrisZMMPsIwXuWnKSFsmSSyYuL_3__MethodInfo); DO_APP_FUNC(0x00EBC7B0, int32_t, ltZyyyCOqCBvCsdArfJhhYuMkHIuA_uCyrisZMMPsIwXuWnKSFsmSSyYuL_4, (MethodInfo * method)); DO_APP_FUNC(0x00EBC840, int32_t, ltZyyyCOqCBvCsdArfJhhYuMkHIuA_uCyrisZMMPsIwXuWnKSFsmSSyYuL_5, (MethodInfo * method)); DO_APP_FUNC(0x00EBC8D0, int32_t, ltZyyyCOqCBvCsdArfJhhYuMkHIuA_uCyrisZMMPsIwXuWnKSFsmSSyYuL_6, (MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCE4B0, ltZyyyCOqCBvCsdArfJhhYuMkHIuA_uCyrisZMMPsIwXuWnKSFsmSSyYuL_6__MethodInfo); DO_APP_FUNC(0x00EBC960, int32_t, ltZyyyCOqCBvCsdArfJhhYuMkHIuA_uCyrisZMMPsIwXuWnKSFsmSSyYuL_7, (MethodInfo * method)); DO_APP_FUNC(0x00EBC9F0, int32_t, ltZyyyCOqCBvCsdArfJhhYuMkHIuA_uCyrisZMMPsIwXuWnKSFsmSSyYuL_8, (MethodInfo * method)); DO_APP_FUNC(0x00EBCA80, int32_t, ltZyyyCOqCBvCsdArfJhhYuMkHIuA_uCyrisZMMPsIwXuWnKSFsmSSyYuL_9, (MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8D0F8, ltZyyyCOqCBvCsdArfJhhYuMkHIuA_uCyrisZMMPsIwXuWnKSFsmSSyYuL_9__MethodInfo); DO_APP_FUNC(0x00EBCB10, int32_t, ltZyyyCOqCBvCsdArfJhhYuMkHIuA_uCyrisZMMPsIwXuWnKSFsmSSyYuL_10, (MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8D0E8, ltZyyyCOqCBvCsdArfJhhYuMkHIuA_uCyrisZMMPsIwXuWnKSFsmSSyYuL_10__MethodInfo); -DO_APP_FUNC(0x00EBCBA0, bool, qlXPRsOLELaMvIYaABRChqDOoeYd_BjtoENHodgmGSnoLUcZiiCgBYiPvA_1, (ControllerType__Enum param_00009f2f, MethodInfo * method)); +DO_APP_FUNC(0x00EBCBA0, bool, qlXPRsOLELaMvIYaABRChqDOoeYd_BjtoENHodgmGSnoLUcZiiCgBYiPvA_1, (ControllerType__Enum * param_00009f2f, MethodInfo * method)); DO_APP_FUNC(0x00EBCC10, ControllerType__Enum, qlXPRsOLELaMvIYaABRChqDOoeYd_JzkfOWekIiPiQECEzrZBviaNlfPh_1, (MethodInfo * method)); DO_APP_FUNC(0x00EBCC70, ControllerType__Enum, qlXPRsOLELaMvIYaABRChqDOoeYd_LUkoYkYyGZJpIUKiaAwIFuXAqamEb_1, (MethodInfo * method)); DO_APP_FUNC(0x00EBCCD0, Type *, qlXPRsOLELaMvIYaABRChqDOoeYd_XBCjYlBEkvCwnvrQFJdZNRBdbIbcb_1, (MethodInfo * method)); DO_APP_FUNC(0x00EBCD30, ControllerType__Enum, qlXPRsOLELaMvIYaABRChqDOoeYd_fQAhNNldoShfGKItXqYBOccffulFb_1, (MethodInfo * method)); -DO_APP_FUNC(0x00EBCD90, void, ydldxpSsOZLZMTNrfDcYRQNMEqkP_bppFrdbgqMNmXADrgtjQeYQUmtawB, (ydldxpSsOZLZMTNrfDcYRQNMEqkP * __this, EdKxELrGeTTkBPBCRbJfXHAozIVk param_0001463f, MethodInfo * method)); +DO_APP_FUNC(0x00EBCD90, void, ydldxpSsOZLZMTNrfDcYRQNMEqkP_bppFrdbgqMNmXADrgtjQeYQUmtawB, (ydldxpSsOZLZMTNrfDcYRQNMEqkP * __this, EdKxELrGeTTkBPBCRbJfXHAozIVk * param_0001463f, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8CEC0, ydldxpSsOZLZMTNrfDcYRQNMEqkP_bppFrdbgqMNmXADrgtjQeYQUmtawB__MethodInfo); -DO_APP_FUNC(0x00EBCD90, void, ydldxpSsOZLZMTNrfDcYRQNMEqkP_bppFrdbgqMNmXADrgtjQeYQUmtawB_1, (ydldxpSsOZLZMTNrfDcYRQNMEqkP * __this, EdKxELrGeTTkBPBCRbJfXHAozIVk param_0001463f, MethodInfo * method)); +DO_APP_FUNC(0x00EBCD90, void, ydldxpSsOZLZMTNrfDcYRQNMEqkP_bppFrdbgqMNmXADrgtjQeYQUmtawB_1, (ydldxpSsOZLZMTNrfDcYRQNMEqkP * __this, EdKxELrGeTTkBPBCRbJfXHAozIVk * param_0001463f, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8CF50, ydldxpSsOZLZMTNrfDcYRQNMEqkP_bppFrdbgqMNmXADrgtjQeYQUmtawB_1__MethodInfo); -DO_APP_FUNC(0x00EBCD90, void, ydldxpSsOZLZMTNrfDcYRQNMEqkP_bppFrdbgqMNmXADrgtjQeYQUmtawB_2, (ydldxpSsOZLZMTNrfDcYRQNMEqkP * __this, EdKxELrGeTTkBPBCRbJfXHAozIVk param_0001463f, MethodInfo * method)); +DO_APP_FUNC(0x00EBCD90, void, ydldxpSsOZLZMTNrfDcYRQNMEqkP_bppFrdbgqMNmXADrgtjQeYQUmtawB_2, (ydldxpSsOZLZMTNrfDcYRQNMEqkP * __this, EdKxELrGeTTkBPBCRbJfXHAozIVk * param_0001463f, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8CEA8, ydldxpSsOZLZMTNrfDcYRQNMEqkP_bppFrdbgqMNmXADrgtjQeYQUmtawB_2__MethodInfo); -DO_APP_FUNC(0x00EBCD90, void, ydldxpSsOZLZMTNrfDcYRQNMEqkP_bppFrdbgqMNmXADrgtjQeYQUmtawB_3, (ydldxpSsOZLZMTNrfDcYRQNMEqkP * __this, EdKxELrGeTTkBPBCRbJfXHAozIVk param_0001463f, MethodInfo * method)); +DO_APP_FUNC(0x00EBCD90, void, ydldxpSsOZLZMTNrfDcYRQNMEqkP_bppFrdbgqMNmXADrgtjQeYQUmtawB_3, (ydldxpSsOZLZMTNrfDcYRQNMEqkP * __this, EdKxELrGeTTkBPBCRbJfXHAozIVk * param_0001463f, MethodInfo * method)); DO_APP_FUNC_METHODINFO(0x03C8CF68, ydldxpSsOZLZMTNrfDcYRQNMEqkP_bppFrdbgqMNmXADrgtjQeYQUmtawB_3__MethodInfo); DO_APP_FUNC(0x00EBCDE0, Object *, BundledAssetProvider_InternalOp_LoadBundleFromDependecies, (IList_1_System_Object_ * results, MethodInfo * method)); DO_APP_FUNC(0x00EBD040, Object *, Controller_CompoundElement_FKqoMXwksyYwglCiMZjznCnUOvvD_1, (Controller_CompoundElement * __this, int32_t param_00009bec, MethodInfo * method)); -DO_APP_FUNC(0x00EBD130, Object *, Controller_CompoundElement_LtyGAmlsKmPsiiPMNTTQGWOJDnuI, (Controller_CompoundElement * __this, int32_t param_00009bed, int32_t param_00009bee, MethodInfo * method)); +DO_APP_FUNC(0x00EBD130, Object *, Controller_CompoundElement_LtyGAmlsKmPsiiPMNTTQGWOJDnuI, (Controller_CompoundElement * __this, int32_t param_00009bed, int32_t * param_00009bee, MethodInfo * method)); DO_APP_FUNC(0x00EBD250, Object *, Controller_Extension_GetController, (Controller_Extension * __this, MethodInfo * method)); DO_APP_FUNC(0x00EBD2F0, Object *, HardwareJoystickTemplateMap_SpecialElementEntry_Rewired_Data_Mapping_IControllerTemplateMapSpecialElement_Internal_GetMapping, (HardwareJoystickTemplateMap_SpecialElementEntry * __this, MethodInfo * method)); -DO_APP_FUNC(0x00EBD370, int32_t, InputAction_CallbackContext_ReadValue_1, (InputAction_CallbackContext__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00EBD460, Quaternion, InputAction_CallbackContext_ReadValue_2, (InputAction_CallbackContext__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00EBD560, float, InputAction_CallbackContext_ReadValue_3, (InputAction_CallbackContext__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00EBD650, Vector2, InputAction_CallbackContext_ReadValue_4, (InputAction_CallbackContext__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00EBD770, Vector3, InputAction_CallbackContext_ReadValue_5, (InputAction_CallbackContext__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00EBD370, int32_t, InputAction_CallbackContext_ReadValue_1, (InputAction_CallbackContext * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCDB90, InputAction_CallbackContext_ReadValue_1__MethodInfo); +DO_APP_FUNC(0x00EBD460, Quaternion, InputAction_CallbackContext_ReadValue_2, (InputAction_CallbackContext * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CD5E58, InputAction_CallbackContext_ReadValue_2__MethodInfo); +DO_APP_FUNC(0x00EBD560, float, InputAction_CallbackContext_ReadValue_3, (InputAction_CallbackContext * __this, MethodInfo * method)); +DO_APP_FUNC(0x00EBD650, Vector2, InputAction_CallbackContext_ReadValue_4, (InputAction_CallbackContext * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CCF518, InputAction_CallbackContext_ReadValue_4__MethodInfo); +DO_APP_FUNC(0x00EBD770, Vector3, InputAction_CallbackContext_ReadValue_5, (InputAction_CallbackContext * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CDA548, InputAction_CallbackContext_ReadValue_5__MethodInfo); DO_APP_FUNC(0x00EBD890, InputActionRebindingExtensions_RebindingOperation *, InputActionRebindingExtensions_RebindingOperation_WithExpectedControlType_2, (InputActionRebindingExtensions_RebindingOperation * __this, MethodInfo * method)); -DO_APP_FUNC(0x00EBD910, InputActionSetupExtensions_BindingSyntax, InputActionSetupExtensions_BindingSyntax_WithInteraction_1, (InputActionSetupExtensions_BindingSyntax__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00EBDB70, InputActionSetupExtensions_BindingSyntax, InputActionSetupExtensions_BindingSyntax_WithProcessor_1, (InputActionSetupExtensions_BindingSyntax__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00EBDDD0, String *, InputActionSetupExtensions_ControlSchemeSyntax_DeviceTypeToControlPath, (InputActionSetupExtensions_ControlSchemeSyntax__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00EBDF50, InputActionSetupExtensions_ControlSchemeSyntax, InputActionSetupExtensions_ControlSchemeSyntax_OrWithOptionalDevice_1, (InputActionSetupExtensions_ControlSchemeSyntax__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00EBDFB0, InputActionSetupExtensions_ControlSchemeSyntax, InputActionSetupExtensions_ControlSchemeSyntax_OrWithRequiredDevice_1, (InputActionSetupExtensions_ControlSchemeSyntax__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00EBE010, InputActionSetupExtensions_ControlSchemeSyntax, InputActionSetupExtensions_ControlSchemeSyntax_WithOptionalDevice_1, (InputActionSetupExtensions_ControlSchemeSyntax__Boxed * __this, MethodInfo * method)); -DO_APP_FUNC(0x00EBE070, InputActionSetupExtensions_ControlSchemeSyntax, InputActionSetupExtensions_ControlSchemeSyntax_WithRequiredDevice_1, (InputActionSetupExtensions_ControlSchemeSyntax__Boxed * __this, MethodInfo * method)); +DO_APP_FUNC(0x00EBD910, InputActionSetupExtensions_BindingSyntax, InputActionSetupExtensions_BindingSyntax_WithInteraction_1, (InputActionSetupExtensions_BindingSyntax * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04028, InputActionSetupExtensions_BindingSyntax_WithInteraction_1__MethodInfo); +DO_APP_FUNC(0x00EBDB70, InputActionSetupExtensions_BindingSyntax, InputActionSetupExtensions_BindingSyntax_WithProcessor_1, (InputActionSetupExtensions_BindingSyntax * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D04038, InputActionSetupExtensions_BindingSyntax_WithProcessor_1__MethodInfo); +DO_APP_FUNC(0x00EBDDD0, String *, InputActionSetupExtensions_ControlSchemeSyntax_DeviceTypeToControlPath, (InputActionSetupExtensions_ControlSchemeSyntax * __this, MethodInfo * method)); +DO_APP_FUNC(0x00EBDF50, InputActionSetupExtensions_ControlSchemeSyntax, InputActionSetupExtensions_ControlSchemeSyntax_OrWithOptionalDevice_1, (InputActionSetupExtensions_ControlSchemeSyntax * __this, MethodInfo * method)); +DO_APP_FUNC(0x00EBDFB0, InputActionSetupExtensions_ControlSchemeSyntax, InputActionSetupExtensions_ControlSchemeSyntax_OrWithRequiredDevice_1, (InputActionSetupExtensions_ControlSchemeSyntax * __this, MethodInfo * method)); +DO_APP_FUNC(0x00EBE010, InputActionSetupExtensions_ControlSchemeSyntax, InputActionSetupExtensions_ControlSchemeSyntax_WithOptionalDevice_1, (InputActionSetupExtensions_ControlSchemeSyntax * __this, MethodInfo * method)); +DO_APP_FUNC(0x00EBE070, InputActionSetupExtensions_ControlSchemeSyntax, InputActionSetupExtensions_ControlSchemeSyntax_WithRequiredDevice_1, (InputActionSetupExtensions_ControlSchemeSyntax * __this, MethodInfo * method)); DO_APP_FUNC(0x00EBE0D0, InputControlLayout_Builder *, InputControlLayout_Builder_WithType, (InputControlLayout_Builder * __this, MethodInfo * method)); DO_APP_FUNC(0x00EBE180, Object *, InputMapper_Options_ichabkfdhlzsWfhnsmXygQienhiab, (InputMapper_Options * __this, String * param_0000a5b6, MethodInfo * method)); DO_APP_FUNC(0x00EBE2E0, void, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_xvNKKEpAWWwboGaVfSwahpqKBiXt, (InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR * __this, InputMapper_LHIKMCjQdqDNBdfhNEqxmrgcNERkA__Enum param_0000a58e, Object * param_0000a58f, MethodInfo * method)); @@ -217373,9 +241421,12 @@ DO_APP_FUNC(0x00EBE3C0, Expression_1 *, LightCompiler_QuoteVisitor_VisitLambda, DO_APP_FUNC(0x00EBE570, void, NEKNFNnBnMerBGmvtGdFgVoKfnGUA_RifmWctMhNdhIJYvjlOuqmVzJHgX_PKQCbLFovsNQQFCpDkQheCxlMBrQb, (NEKNFNnBnMerBGmvtGdFgVoKfnGUA_RifmWctMhNdhIJYvjlOuqmVzJHgX * __this, MethodInfo * method)); DO_APP_FUNC(0x00EBE850, IList_1_System_Object_ *, NEKNFNnBnMerBGmvtGdFgVoKfnGUA_RifmWctMhNdhIJYvjlOuqmVzJHgX_QiyKOhVVagkMHbNvnJYMYZPXNyCp, (NEKNFNnBnMerBGmvtGdFgVoKfnGUA_RifmWctMhNdhIJYvjlOuqmVzJHgX * __this, MethodInfo * method)); DO_APP_FUNC(0x00EBE8B0, void, Player_ControllerHelper_AddController_2, (Player_ControllerHelper * __this, int32_t controllerId, bool removeFromOtherPlayers, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03FC8, Player_ControllerHelper_AddController_2__MethodInfo); DO_APP_FUNC(0x00EBEC70, void, Player_ControllerHelper_ClearControllersOfType_1, (Player_ControllerHelper * __this, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03FC0, Player_ControllerHelper_ClearControllersOfType_1__MethodInfo); DO_APP_FUNC(0x00EBF040, bool, Player_ControllerHelper_ContainsController_2, (Player_ControllerHelper * __this, int32_t controllerId, MethodInfo * method)); -DO_APP_FUNC(0x00EBF310, bool, Player_ControllerHelper_EgoPSUkCWtdfXdKKqumVwoPtWqJF, (Player_ControllerHelper * __this, ControllerWithAxes * param_0000a768, int32_t param_0000a769, int32_t param_0000a76a, ActionElementMap * param_0000a76b, FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_System_Object_ * param_0000a76c, int32_t param_0000a76d, float param_0000a76e, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03FB0, Player_ControllerHelper_ContainsController_2__MethodInfo); +DO_APP_FUNC(0x00EBF310, bool, Player_ControllerHelper_EgoPSUkCWtdfXdKKqumVwoPtWqJF, (Player_ControllerHelper * __this, ControllerWithAxes * param_0000a768, int32_t param_0000a769, int32_t param_0000a76a, ActionElementMap * param_0000a76b, FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_System_Object_ * param_0000a76c, int32_t param_0000a76d, float * param_0000a76e, MethodInfo * method)); DO_APP_FUNC(0x00EBF660, bool, Player_ControllerHelper_EkUIXrhWcNgYrPwOwTiMqRDNJWDF, (Player_ControllerHelper * __this, UnknownControllerHat_HatButtons * param_0000a76f, int32_t param_0000a770, FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_System_Object_ * param_0000a771, MethodInfo * method)); DO_APP_FUNC(0x00EBF720, Object *, Player_ControllerHelper_GetController_1, (Player_ControllerHelper * __this, int32_t controllerId, MethodInfo * method)); DO_APP_FUNC(0x00EBF850, IList_1_System_Object_ *, Player_ControllerHelper_GetControllerTemplates, (Player_ControllerHelper * __this, MethodInfo * method)); @@ -217384,18 +241435,25 @@ DO_APP_FUNC(0x00EBFA40, Controller *, Player_ControllerHelper_GetFirstController DO_APP_FUNC(0x00EBFC00, Controller *, Player_ControllerHelper_GetLastActiveController_2, (Player_ControllerHelper * __this, MethodInfo * method)); DO_APP_FUNC(0x00EBFC30, bool, Player_ControllerHelper_MtKjyNIZgIjfpFBsSjcEXWqThpFS, (Player_ControllerHelper * __this, UnknownControllerHat_HatButtons * param_0000a772, int32_t param_0000a773, FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_System_Object_ * param_0000a774, MethodInfo * method)); DO_APP_FUNC(0x00EBFDA0, void, Player_ControllerHelper_RemoveController_2, (Player_ControllerHelper * __this, int32_t controllerId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03F90, Player_ControllerHelper_RemoveController_2__MethodInfo); DO_APP_FUNC(0x00EC0080, Controller *, Player_ControllerHelper_qOveubmDNlEDlbfVcHZmqLnkLXnq, (Player_ControllerHelper * __this, ControllerType__Enum param_0000a749, Func_3_Rewired_Controller_Guid_Boolean_ * param_0000a74a, Guid param_0000a74b, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03F78, Player_ControllerHelper_qOveubmDNlEDlbfVcHZmqLnkLXnq__MethodInfo); DO_APP_FUNC(0x00EC0330, Controller *, Player_ControllerHelper_qOveubmDNlEDlbfVcHZmqLnkLXnq_1, (Player_ControllerHelper * __this, ControllerType__Enum param_0000a749, Func_3_Rewired_Controller_Object_Boolean_ * param_0000a74a, Object * param_0000a74b, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03F88, Player_ControllerHelper_qOveubmDNlEDlbfVcHZmqLnkLXnq_1__MethodInfo); DO_APP_FUNC(0x00EC05B0, void, Player_ControllerHelper_zgmTShtuMZjevpPPVHquKEyKSmEmA, (Player_ControllerHelper * __this, ControllerType__Enum param_0000a766, Action_3_Boolean_Int32_Int32_ * param_0000a767, MethodInfo * method)); DO_APP_FUNC(0x00EC0E10, Object *, PlayerController_CompoundElement_FKqoMXwksyYwglCiMZjznCnUOvvD, (PlayerController_CompoundElement * __this, int32_t param_00009e7a, MethodInfo * method)); DO_APP_FUNC(0x00EC0F10, Expression_1 *, QuoteInstruction_ExpressionQuoter_VisitLambda, (QuoteInstruction_ExpressionQuoter * __this, Expression_1_System_Object_ * node, MethodInfo * method)); DO_APP_FUNC(0x00EC1110, Object *, ReInput_ControllerHelper_GetController_2, (ReInput_ControllerHelper * __this, int32_t controllerId, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03F38, ReInput_ControllerHelper_GetController_2__MethodInfo); DO_APP_FUNC(0x00EC15F0, IList_1_System_Object_ *, ReInput_ControllerHelper_GetControllerTemplates, (ReInput_ControllerHelper * __this, MethodInfo * method)); DO_APP_FUNC(0x00EC16A0, Object *, ReInput_ControllerHelper_GetLastActiveController_2, (ReInput_ControllerHelper * __this, MethodInfo * method)); -DO_APP_FUNC(0x00EC1740, int32_t, RenderGraphResourceRegistry_RenderGraphResourcesData_AddNewRenderGraphResource, (RenderGraphResourceRegistry_RenderGraphResourcesData * __this, Object * outRes, bool pooledResource, MethodInfo * method)); +DO_APP_FUNC(0x00EC1740, int32_t, RenderGraphResourceRegistry_RenderGraphResourcesData_AddNewRenderGraphResource, (RenderGraphResourceRegistry_RenderGraphResourcesData * __this, Object * * outRes, bool pooledResource, MethodInfo * method)); DO_APP_FUNC(0x00EC1A60, TempListPool_TList_1_Rewired_ControllerTemplateElementTarget_ *, TempListPool_PjDAHtdxqqebxCpLhOqfFcxXTcRR_WmwbBYvcMgWNiAkYmGokAOzlhKHxA, (List_1_Rewired_ControllerTemplateElementTarget_ * param_0000bfd2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03EF8, TempListPool_PjDAHtdxqqebxCpLhOqfFcxXTcRR_WmwbBYvcMgWNiAkYmGokAOzlhKHxA__MethodInfo); DO_APP_FUNC(0x00EC1E40, TempListPool_TList_1_System_Int32Enum_ *, TempListPool_PjDAHtdxqqebxCpLhOqfFcxXTcRR_WmwbBYvcMgWNiAkYmGokAOzlhKHxA_1, (List_1_System_Int32Enum_ * param_0000bfd2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03ED0, TempListPool_PjDAHtdxqqebxCpLhOqfFcxXTcRR_WmwbBYvcMgWNiAkYmGokAOzlhKHxA_1__MethodInfo); DO_APP_FUNC(0x00EC2220, TempListPool_TList_1_System_Object_ *, TempListPool_PjDAHtdxqqebxCpLhOqfFcxXTcRR_WmwbBYvcMgWNiAkYmGokAOzlhKHxA_2, (List_1_System_Object_ * param_0000bfd2, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03ED8, TempListPool_PjDAHtdxqqebxCpLhOqfFcxXTcRR_WmwbBYvcMgWNiAkYmGokAOzlhKHxA_2__MethodInfo); DO_APP_FUNC(0x00EC2600, void, TempListPool_PjDAHtdxqqebxCpLhOqfFcxXTcRR_pKIANUGrvBNRltFXCoehFBlmVRUyA, (TempListPool_TList_1_Rewired_ControllerTemplateElementTarget_ * param_0000bfd3, MethodInfo * method)); DO_APP_FUNC(0x00EC2850, void, TempListPool_PjDAHtdxqqebxCpLhOqfFcxXTcRR_pKIANUGrvBNRltFXCoehFBlmVRUyA_1, (TempListPool_TList_1_System_Int32Enum_ * param_0000bfd3, MethodInfo * method)); DO_APP_FUNC(0x00EC2AA0, void, TempListPool_PjDAHtdxqqebxCpLhOqfFcxXTcRR_pKIANUGrvBNRltFXCoehFBlmVRUyA_2, (TempListPool_TList_1_System_Object_ * param_0000bfd3, MethodInfo * method)); @@ -217408,10 +241466,13 @@ DO_APP_FUNC(0x00EC4100, void, WebRtcPreprocessingPipeline_RnnoisePreprocessor_Bi DO_APP_FUNC_METHODINFO(0x03C950D0, WebRtcPreprocessingPipeline_RnnoisePreprocessor_Bind_2__MethodInfo); DO_APP_FUNC(0x00EC43E0, void, WebRtcPreprocessingPipeline_WebRtcPreprocessor_Bind, (WebRtcPreprocessingPipeline_WebRtcPreprocessor * __this, Func_2_Dissonance_Config_VoiceSettings_Int32Enum_ * getValue, String * propertyName, Action_1_Int32Enum_ * setValue, MethodInfo * method)); DO_APP_FUNC(0x00EC46C0, void, WebRtcPreprocessingPipeline_WebRtcPreprocessor_Bind_1, (WebRtcPreprocessingPipeline_WebRtcPreprocessor * __this, Func_2_Dissonance_Config_VoiceSettings_Object_ * getValue, String * propertyName, Action_1_Object_ * setValue, MethodInfo * method)); -DO_APP_FUNC(0x00EC49A0, void, WetDecalRenderer_DecalBatch_EnsureArrayCapacity, (Matrix4x4__Array * array, int32_t count, int32_t maxGrowth, MethodInfo * method)); -DO_APP_FUNC(0x00EC4B20, void, WetDecalRenderer_DecalBatch_EnsureArrayCapacity_1, (Object__Array * array, int32_t count, int32_t maxGrowth, MethodInfo * method)); -DO_APP_FUNC(0x00EC4CA0, void, WetDecalRenderer_DecalBatch_EnsureArrayCapacity_2, (Single__Array * array, int32_t count, int32_t maxGrowth, MethodInfo * method)); -DO_APP_FUNC(0x00EC4E20, void, WetDecalRenderer_DecalBatch_EnsureArrayCapacity_3, (Vector4__Array * array, int32_t count, int32_t maxGrowth, MethodInfo * method)); +DO_APP_FUNC(0x00EC49A0, void, WetDecalRenderer_DecalBatch_EnsureArrayCapacity, (Matrix4x4__Array * * array, int32_t count, int32_t maxGrowth, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFD390, WetDecalRenderer_DecalBatch_EnsureArrayCapacity__MethodInfo); +DO_APP_FUNC(0x00EC4B20, void, WetDecalRenderer_DecalBatch_EnsureArrayCapacity_1, (Object__Array * * array, int32_t count, int32_t maxGrowth, MethodInfo * method)); +DO_APP_FUNC(0x00EC4CA0, void, WetDecalRenderer_DecalBatch_EnsureArrayCapacity_2, (Single__Array * * array, int32_t count, int32_t maxGrowth, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFD388, WetDecalRenderer_DecalBatch_EnsureArrayCapacity_2__MethodInfo); +DO_APP_FUNC(0x00EC4E20, void, WetDecalRenderer_DecalBatch_EnsureArrayCapacity_3, (Vector4__Array * * array, int32_t count, int32_t maxGrowth, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03CFD380, WetDecalRenderer_DecalBatch_EnsureArrayCapacity_3__MethodInfo); DO_APP_FUNC(0x00EC4FA0, IEnumerable_1_Rewired_ElementAssignmentConflictInfo_ *, Player_ControllerHelper_ConflictCheckingHelper_ESHersLUOAHgbZGzLxNHTWiFIRvE, (Player_ControllerHelper_ConflictCheckingHelper * __this, ElementAssignmentConflictCheck param_0000a8d5, bool param_0000a8d6, bool param_0000a8d7, FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_System_Object_ * param_0000a8d8, MethodInfo * method)); DO_APP_FUNC(0x00EC5120, IEnumerable_1_Rewired_ElementAssignmentConflictInfo_ *, Player_ControllerHelper_ConflictCheckingHelper_ESHersLUOAHgbZGzLxNHTWiFIRvE_1, (Player_ControllerHelper_ConflictCheckingHelper * __this, ControllerType__Enum param_0000a8c8, int32_t param_0000a8c9, Object * param_0000a8ca, bool param_0000a8cb, bool param_0000a8cc, FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_System_Object_ * param_0000a8cd, MethodInfo * method)); DO_APP_FUNC(0x00EC52D0, IEnumerable_1_Rewired_ElementAssignmentConflictInfo_ *, Player_ControllerHelper_ConflictCheckingHelper_ESHersLUOAHgbZGzLxNHTWiFIRvE_2, (Player_ControllerHelper_ConflictCheckingHelper * __this, ControllerType__Enum param_0000a8ce, int32_t param_0000a8cf, Object * param_0000a8d0, ActionElementMap * param_0000a8d1, bool param_0000a8d2, bool param_0000a8d3, FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_System_Object_ * param_0000a8d4, MethodInfo * method)); @@ -217450,9 +241511,11 @@ DO_APP_FUNC(0x00EC7E60, Object__Array *, Player_ControllerHelper_MapHelper_Fhooe DO_APP_FUNC(0x00EC81D0, Object__Array *, Player_ControllerHelper_MapHelper_GetAllMapSaveData_2, (Player_ControllerHelper_MapHelper * __this, bool userAssignableMapsOnly, MethodInfo * method)); DO_APP_FUNC(0x00E01B70, IEnumerable_1_System_Object_ *, Player_ControllerHelper_MapHelper_GetAllMaps_4, (Player_ControllerHelper_MapHelper * __this, MethodInfo * method)); DO_APP_FUNC(0x00EC82A0, int32_t, Player_ControllerHelper_MapHelper_GetAllMaps_5, (Player_ControllerHelper_MapHelper * __this, List_1_System_Object_ * results, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03DF0, Player_ControllerHelper_MapHelper_GetAllMaps_5__MethodInfo); DO_APP_FUNC(0x00EC8750, IEnumerable_1_System_Object_ *, Player_ControllerHelper_MapHelper_GetAllMapsInCategory_8, (Player_ControllerHelper_MapHelper * __this, int32_t categoryId, MethodInfo * method)); DO_APP_FUNC(0x00EC8820, IEnumerable_1_System_Object_ *, Player_ControllerHelper_MapHelper_GetAllMapsInCategory_9, (Player_ControllerHelper_MapHelper * __this, String * categoryName, MethodInfo * method)); DO_APP_FUNC(0x00EC8950, int32_t, Player_ControllerHelper_MapHelper_GetAllMapsInCategory_10, (Player_ControllerHelper_MapHelper * __this, int32_t categoryId, List_1_System_Object_ * results, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03E00, Player_ControllerHelper_MapHelper_GetAllMapsInCategory_10__MethodInfo); DO_APP_FUNC(0x00EC8E50, int32_t, Player_ControllerHelper_MapHelper_GetAllMapsInCategory_11, (Player_ControllerHelper_MapHelper * __this, String * categoryName, List_1_System_Object_ * results, MethodInfo * method)); DO_APP_FUNC(0x00EC8F50, Object *, Player_ControllerHelper_MapHelper_GetFirstMapInCategory_4, (Player_ControllerHelper_MapHelper * __this, int32_t controllerId, int32_t categoryId, MethodInfo * method)); DO_APP_FUNC(0x00EC9080, Object *, Player_ControllerHelper_MapHelper_GetFirstMapInCategory_5, (Player_ControllerHelper_MapHelper * __this, int32_t controllerId, String * categoryName, MethodInfo * method)); @@ -217464,6 +241527,7 @@ DO_APP_FUNC(0x00EC95F0, IList_1_System_Object_ *, Player_ControllerHelper_MapHel DO_APP_FUNC(0x00EC96C0, IEnumerable_1_System_Object_ *, Player_ControllerHelper_MapHelper_GetMapsInCategory_8, (Player_ControllerHelper_MapHelper * __this, int32_t controllerId, int32_t categoryId, MethodInfo * method)); DO_APP_FUNC(0x00EC9790, IEnumerable_1_System_Object_ *, Player_ControllerHelper_MapHelper_GetMapsInCategory_9, (Player_ControllerHelper_MapHelper * __this, int32_t controllerId, String * categoryName, MethodInfo * method)); DO_APP_FUNC(0x00EC98B0, int32_t, Player_ControllerHelper_MapHelper_GetMapsInCategory_10, (Player_ControllerHelper_MapHelper * __this, int32_t controllerId, int32_t categoryId, List_1_System_Object_ * results, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x03D03DB8, Player_ControllerHelper_MapHelper_GetMapsInCategory_10__MethodInfo); DO_APP_FUNC(0x00EC9AC0, int32_t, Player_ControllerHelper_MapHelper_GetMapsInCategory_11, (Player_ControllerHelper_MapHelper * __this, int32_t controllerId, String * categoryName, List_1_System_Object_ * results, MethodInfo * method)); DO_APP_FUNC(0x00EC9BF0, void, Player_ControllerHelper_MapHelper_LoadMap_4, (Player_ControllerHelper_MapHelper * __this, int32_t controllerId, int32_t categoryId, int32_t layoutId, MethodInfo * method)); DO_APP_FUNC(0x00EC9BF0, void, Player_ControllerHelper_MapHelper_LoadMap_5, (Player_ControllerHelper_MapHelper * __this, int32_t controllerId, String * categoryName, String * layoutName, MethodInfo * method)); @@ -217477,6 +241541,7 @@ DO_APP_FUNC(0x00ECA030, IList_1_System_Object_ *, Player_ControllerHelper_MapHel DO_APP_FUNC(0x00ECA130, Player_ControllerHelper_fsFeIeGDhTZoJrGbaYxAfXlTfeQO *, Player_ControllerHelper_MapHelper_caZkXGUNiPzlKhDJMWgjidPkvpHf, (Player_ControllerHelper_MapHelper * __this, MethodInfo * method)); DO_APP_FUNC(0x00ECA180, void, Player_ControllerHelper_MapHelper_uICeDyIZlbdfloeAyQHjAnrjoOXhb_2, (Player_ControllerHelper_MapHelper * __this, int32_t param_0000a965, int32_t param_0000a966, int32_t param_0000a967, BoolOption__Enum param_0000a968, MethodInfo * method)); DO_APP_FUNC(0x00ECA260, void, Player_ControllerHelper_MapHelper_uICeDyIZlbdfloeAyQHjAnrjoOXhb_3, (Player_ControllerHelper_MapHelper * __this, int32_t param_0000a969, String * param_0000a96a, String * param_0000a96b, BoolOption__Enum param_0000a96c, MethodInfo * method)); +DO_APP_FUNC_METHODINFO(0x038B3A58, HashSetPool_1_T_c_T____cctor_b__4_0__MethodInfo); DO_APP_FUNC_METHODINFO(0x03C8BA70, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout__set_Item__MethodInfo); DO_APP_FUNC_METHODINFO(0x03C8BA90, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_String__TryGetValue__MethodInfo); DO_APP_FUNC_METHODINFO(0x03C8BA98, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_Func_1__TryGetValue__MethodInfo); @@ -218389,10 +242454,10 @@ DO_APP_FUNC_METHODINFO(0x03C95E78, ObjectPool_1_CommandBuffer___ctor__MethodInfo DO_APP_FUNC_METHODINFO(0x03C95E88, ObservableList_1_DebugUI_Widget__Remove_1__MethodInfo); DO_APP_FUNC_METHODINFO(0x03C95F48, RenderGraphResource_2_TextureDesc_UnityEngine_Rendering_RTHandle___ctor__MethodInfo); DO_APP_FUNC_METHODINFO(0x03C95F58, Dictionary_2_TKey_TValue_Enumerator_System_Int32_SortedList_2_System_Int32_System_ValueTuple_2__Dispose__MethodInfo); -DO_APP_FUNC_METHODINFO(0x03C95F70, SortedList_2_System_Int32_System_ValueTuple_2__1_Remove__MethodInfo); -DO_APP_FUNC_METHODINFO(0x03C95F78, SortedList_2_System_Int32_System_ValueTuple_2__1_get_Count__MethodInfo); -DO_APP_FUNC_METHODINFO(0x03C95F80, SortedList_2_System_Int32_System_ValueTuple_2__1_get_Keys__MethodInfo); -DO_APP_FUNC_METHODINFO(0x03C95F88, SortedList_2_System_Int32_System_ValueTuple_2__1_get_Values__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03C95F70, SortedList_2_System_Int32_System_ValueTuple_2__2_Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03C95F78, SortedList_2_System_Int32_System_ValueTuple_2__2_get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03C95F80, SortedList_2_System_Int32_System_ValueTuple_2__2_get_Keys__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03C95F88, SortedList_2_System_Int32_System_ValueTuple_2__2_get_Values__MethodInfo); DO_APP_FUNC_METHODINFO(0x03C95F90, RenderGraphResourcePool_1_UnityEngine_Rendering_RTHandle___ctor__MethodInfo); DO_APP_FUNC_METHODINFO(0x03C95F98, Dictionary_2_System_Int32_SortedList_2_System_Int32_System_ValueTuple_2__1_GetEnumerator__MethodInfo); DO_APP_FUNC_METHODINFO(0x03C95FA0, Dictionary_2_TKey_TValue_Enumerator_System_Int32_SortedList_2_System_Int32_System_ValueTuple_2__MoveNext__MethodInfo); @@ -219512,3 +243577,9940 @@ DO_APP_FUNC_METHODINFO(0x03CAB308, Dictionary_2_System_Xml_XmlQualifiedName_Syst DO_APP_FUNC_METHODINFO(0x03CAB3C8, Dictionary_2_System_String_System_Globalization_ISimpleCollator__TryGetValue__MethodInfo); DO_APP_FUNC_METHODINFO(0x03CAB3D0, Dictionary_2_System_String_System_Globalization_ISimpleCollator___ctor__MethodInfo); DO_APP_FUNC_METHODINFO(0x03CAB3E0, Dictionary_2_System_String_System_Globalization_ISimpleCollator__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAB8A0, Dictionary_2_System_String_System_String___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAC3B8, List_1_System_Reflection_Module__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAC3C0, List_1_System_Reflection_Module__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAC3C8, List_1_System_Reflection_Module___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAC4E0, Component_GetComponent_25__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAC4E8, Component_GetComponent_26__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAC720, ARTrackable_2_UnityEngine_XR_ARSubsystems_BoundedPlane_ARPlane___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAC748, SubsystemWithProvider_3_UnityEngine_XR_ARSubsystems_XRPlaneSubsystem_UnityEngine_XR_ARSubsystems_XRPlaneSubsystemDescriptor_UnityEngine_XR_ARSubsystems_XRPlaneSubsystem_Provider__get_subsystemDescriptor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAC7A0, ARTrackableManager_5_UnityEngine_XR_ARSubsystems_XRAnchorSubsystem_UnityEngine_XR_ARSubsystems_XRAnchorSubsystemDescriptor_UnityEngine_XR_ARSubsystems_XRAnchorSubsystem_Provider_UnityEngine_XR_ARSubsystems_XRAnchor_ARAnchor___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAC7B8, Dictionary_2_UnityEngine_XR_ARSubsystems_TrackableId_UnityEngine_XR_ARFoundation_ARAnchor__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAC7C8, Dictionary_2_UnityEngine_XR_ARSubsystems_TrackableId_UnityEngine_XR_ARFoundation_ARAnchor__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAC7F8, Dictionary_2_UnityEngine_XR_ARSubsystems_TrackableId_UnityEngine_XR_ARFoundation_ARAnchor__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAC840, ARTrackable_2_UnityEngine_XR_ARSubsystems_BoundedPlane_ARPlane__get_sessionRelativeData__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAC870, List_1_UnityEngine_XR_ARFoundation_ARAnchor__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAC898, ARTrackableManager_5_UnityEngine_XR_ARSubsystems_XRAnchorSubsystem_UnityEngine_XR_ARSubsystems_XRAnchorSubsystemDescriptor_UnityEngine_XR_ARSubsystems_XRAnchorSubsystem_Provider_UnityEngine_XR_ARSubsystems_XRAnchor_ARAnchor__CreateTrackableImmediate__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAC8A0, ARTrackableManager_5_UnityEngine_XR_ARSubsystems_XRAnchorSubsystem_UnityEngine_XR_ARSubsystems_XRAnchorSubsystemDescriptor_UnityEngine_XR_ARSubsystems_XRAnchorSubsystem_Provider_UnityEngine_XR_ARSubsystems_XRAnchor_ARAnchor__get_sessionOrigin__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAC8C0, ARTrackable_2_UnityEngine_XR_ARSubsystems_XRAnchor_ARAnchor___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAC8E8, ARTrackableManager_5_UnityEngine_XR_ARSubsystems_XRAnchorSubsystem_UnityEngine_XR_ARSubsystems_XRAnchorSubsystemDescriptor_UnityEngine_XR_ARSubsystems_XRAnchorSubsystem_Provider_UnityEngine_XR_ARSubsystems_XRAnchor_ARAnchor__DestroyPendingTrackable__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAC908, ARTrackableManager_5_UnityEngine_XR_ARSubsystems_XRAnchorSubsystem_UnityEngine_XR_ARSubsystems_XRAnchorSubsystemDescriptor_UnityEngine_XR_ARSubsystems_XRAnchorSubsystem_Provider_UnityEngine_XR_ARSubsystems_XRAnchor_ARAnchor__CanBeAddedToSubsystem__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAC918, ARTrackableManager_5_UnityEngine_XR_ARSubsystems_XRAnchorSubsystem_UnityEngine_XR_ARSubsystems_XRAnchorSubsystemDescriptor_UnityEngine_XR_ARSubsystems_XRAnchorSubsystem_Provider_UnityEngine_XR_ARSubsystems_XRAnchor_ARAnchor__CreateTrackableFromExisting__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAC938, ARTrackable_2_UnityEngine_XR_ARSubsystems_BoundedPlane_ARPlane__get_trackableId__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAC9A0, ARTrackable_2_UnityEngine_XR_ARSubsystems_XRAnchor_ARAnchor__set_pending__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAC9B0, ARTrackable_2_UnityEngine_XR_ARSubsystems_XRAnchor_ARAnchor__get_trackableId__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAC9D0, ARTrackable_2_UnityEngine_XR_ARSubsystems_XRAnchor_ARAnchor__get_sessionRelativeData__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAC9F8, ARTrackableManager_5_UnityEngine_XR_ARSubsystems_XRAnchorSubsystem_UnityEngine_XR_ARSubsystems_XRAnchorSubsystemDescriptor_UnityEngine_XR_ARSubsystems_XRAnchorSubsystem_Provider_UnityEngine_XR_ARSubsystems_XRAnchor_ARAnchor__get_instance__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAD010, SubsystemProvider_1_UnityEngine_XR_ARSubsystems_XRSessionSubsystem___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAD030, SubsystemWithProvider_3_UnityEngine_XR_ARSubsystems_XRSessionSubsystem_UnityEngine_XR_ARSubsystems_XRSessionSubsystemDescriptor_UnityEngine_XR_ARSubsystems_XRSessionSubsystem_Provider___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAD088, SubsystemDescriptorWithProvider_2_UnityEngine_XR_ARSubsystems_XRSessionSubsystem_UnityEngine_XR_ARSubsystems_XRSessionSubsystem_Provider___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAD0A0, SubsystemWithProvider_3_UnityEngine_XR_ARSubsystems_XRRaycastSubsystem_UnityEngine_XR_ARSubsystems_XRRaycastSubsystemDescriptor_UnityEngine_XR_ARSubsystems_XRRaycastSubsystem_Provider__get_provider__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAD0B8, TrackingSubsystem_4_XRRaycast_XRRaycastSubsystem_XRRaycastSubsystemDescriptor_XRRaycastSubsystem_Provider___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAD0D8, SubsystemProvider_1_UnityEngine_XR_ARSubsystems_XRRaycastSubsystem___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAD118, SubsystemDescriptorWithProvider_2_UnityEngine_XR_ARSubsystems_XRRaycastSubsystem_UnityEngine_XR_ARSubsystems_XRRaycastSubsystem_Provider___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAD188, SubsystemProvider_1_UnityEngine_XR_ARSubsystems_XRPlaneSubsystem___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAD198, TrackingSubsystem_4_BoundedPlane_XRPlaneSubsystem_XRPlaneSubsystemDescriptor_XRPlaneSubsystem_Provider___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAD1B8, SubsystemWithProvider_3_UnityEngine_XR_ARSubsystems_XRPlaneSubsystem_UnityEngine_XR_ARSubsystems_XRPlaneSubsystemDescriptor_UnityEngine_XR_ARSubsystems_XRPlaneSubsystem_Provider__get_provider__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAD270, SubsystemDescriptorWithProvider_2_UnityEngine_XR_ARSubsystems_XRPlaneSubsystem_UnityEngine_XR_ARSubsystems_XRPlaneSubsystem_Provider___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAD4A8, SubsystemWithProvider_3_UnityEngine_XR_ARSubsystems_XRAnchorSubsystem_UnityEngine_XR_ARSubsystems_XRAnchorSubsystemDescriptor_UnityEngine_XR_ARSubsystems_XRAnchorSubsystem_Provider__get_provider__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAD4C0, TrackingSubsystem_4_XRAnchor_XRAnchorSubsystem_XRAnchorSubsystemDescriptor_XRAnchorSubsystem_Provider___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAD4D0, SubsystemDescriptorWithProvider_2_UnityEngine_XR_ARSubsystems_XRAnchorSubsystem_UnityEngine_XR_ARSubsystems_XRAnchorSubsystem_Provider___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAD4D8, SubsystemProvider_1_UnityEngine_XR_ARSubsystems_XRAnchorSubsystem___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAD5C8, List_1_UnityEngine_Rendering_GraphicsDeviceType__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAD5D0, List_1_UnityEngine_Rendering_GraphicsDeviceType__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAD5F0, List_1_UnityEngine_XR_Management_XRLoader__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAD5F8, List_1_UnityEngine_XR_Management_XRLoader___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAD608, HashSet_1_UnityEngine_XR_Management_XRLoader__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAD610, HashSet_1_UnityEngine_XR_Management_XRLoader___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAD630, List_1_UnityEngine_XR_Management_XRLoader___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAD6D0, List_1_T_Enumerator_UnityEngine_XR_Management_XRLoader__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAD6E0, List_1_T_Enumerator_UnityEngine_XR_Management_XRLoader__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAD6F0, List_1_UnityEngine_Rendering_GraphicsDeviceType___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAD708, Dictionary_2_System_Type_UnityEngine_ISubsystem__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAD718, Dictionary_2_System_Type_UnityEngine_ISubsystem___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAD720, HashSet_1_UnityEngine_XR_Management_XRLoader__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAD728, List_1_UnityEngine_XR_Management_XRLoader__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAD730, List_1_UnityEngine_XR_Management_XRLoader__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAD738, List_1_UnityEngine_XR_Management_XRLoader__Insert__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAD740, List_1_UnityEngine_XR_Management_XRLoader__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAD748, List_1_UnityEngine_XR_Management_XRLoader__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAD750, List_1_T_Enumerator_UnityEngine_XR_Management_XRLoader__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAD758, List_1_UnityEngine_XR_Management_XRLoader__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CADA70, List_1_System_Xml_Schema_XmlSchema___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CADA78, List_1_System_Xml_Schema_XmlSchema__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CADA80, List_1_System_Xml_Schema_XmlSchema__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CADAB0, List_1_System_Xml_Schema_XmlSchemaElement__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CADAB8, List_1_System_Xml_Schema_XmlSchemaElement___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CADAC0, List_1_System_Xml_Schema_XmlSchemaElement__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CADAC8, List_1_System_Xml_Schema_XmlSchemaElement__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAE630, String_Create_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAE648, ValueTuple_3_Byte_Int32_Int32___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAE6E8, List_1_System_Exception__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAE6F0, List_1_System_AggregateException__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAE6F8, List_1_System_AggregateException___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAE700, List_1_System_Exception___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAE708, List_1_System_AggregateException__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAE710, List_1_System_AggregateException__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAE720, ReadOnlyCollection_1_System_Exception__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAE728, List_1_System_Runtime_ExceptionServices_ExceptionDispatchInfo___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAE768, ReadOnlyCollection_1_System_Exception__CopyTo__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAE770, ReadOnlyCollection_1_System_Exception__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAE780, List_1_System_Exception___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAE7C0, Array_Empty_43__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAE7C8, ReadOnlyCollection_1_System_Exception___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAEBA8, Dictionary_2_System_String_System_TimeZoneInfo__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAEBC8, Dictionary_2_System_String_System_TimeZoneInfo__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAEE88, Dictionary_2_System_String_System_TimeZoneInfo__get_Values__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAEE90, List_1_System_TimeZoneInfo___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAEE98, ReadOnlyCollection_1_System_TimeZoneInfo___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAEF78, List_1_T_Enumerator_System_TimeZoneInfo__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAEF88, List_1_T_Enumerator_System_TimeZoneInfo__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAEF90, List_1_System_TimeZoneInfo__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAEFA0, List_1_System_TimeZoneInfo__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAEFA8, List_1_System_TimeZoneInfo__Sort__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAEFB0, List_1_System_TimeZoneInfo___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAEFC0, List_1_System_TimeZoneInfo__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAEFF0, List_1_System_TimeZoneInfo_AdjustmentRule___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAF008, ReadOnlyCollection_1_System_TimeZoneInfo__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAF020, List_1_T_Enumerator_System_TimeZoneInfo__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAF030, Dictionary_2_System_String_System_TimeZoneInfo__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAF038, Dictionary_2_System_String_System_TimeZoneInfo___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAF090, List_1_System_TimeZoneInfo_AdjustmentRule__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAF098, List_1_System_TimeZoneInfo_AdjustmentRule__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAF0A0, List_1_System_TimeZoneInfo_AdjustmentRule___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAF0A8, List_1_System_TimeZoneInfo_AdjustmentRule__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAF1A0, XmlListConverter_ToArray_16__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAF1B0, XmlListConverter_ToArray_17__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAF1B8, XmlListConverter_ToArray_18__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAF1C0, XmlListConverter_ToArray_19__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAF1C8, XmlListConverter_ToArray_20__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAF210, XmlListConverter_ToArray_21__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAF260, XmlListConverter_ToArray_22__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAF6E8, Dictionary_2_System_String_System_String__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAFC48, InputControl_GetChildControl_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAFD08, Dictionary_2_System_String_MS_Internal_Xml_XPath_Axis_AxisType___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAFD60, Dictionary_2_System_String_MS_Internal_Xml_XPath_Axis_AxisType__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAFDB8, Array_Empty_44__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAFDD0, Dictionary_2_System_String_MS_Internal_Xml_XPath_Axis_AxisType__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAFE08, Dictionary_2_System_String_MS_Internal_Xml_XPath_XPathParser_ParamInfo__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAFE10, Dictionary_2_System_String_MS_Internal_Xml_XPath_XPathParser_ParamInfo___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAFE58, List_1_MS_Internal_Xml_XPath_AstNode__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAFE80, Dictionary_2_System_String_MS_Internal_Xml_XPath_XPathParser_ParamInfo__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAFE88, List_1_MS_Internal_Xml_XPath_AstNode__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAFE98, List_1_MS_Internal_Xml_XPath_AstNode__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAFFA0, Enumerable_Any_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAFFB0, Enumerable_Distinct_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CAFFB8, Enumerable_ToList_14__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0040, List_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionBinding__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB01A8, List_1_MS_Internal_Xml_XPath_AstNode__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB01B8, List_1_MS_Internal_Xml_XPath_AstNode___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB01C8, List_1_MS_Internal_Xml_XPath_AstNode___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB02A8, Enumerable_Any_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB02B8, Enumerable_FirstOrDefault_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB02C8, Enumerable_Where_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB02D0, Enumerable_Where_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0318, CollectionPool_2_System_Collections_Generic_List_1_System_Int32__Release__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0340, CollectionPool_2_System_Collections_Generic_List_1_System_Int32__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0360, OpenXRSettings_GetFeatures_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0390, Dictionary_2_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_InteractionProfileType_Dictionary_2_System_String_System_Boolean___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB04D8, List_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionMapConfig__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0608, Dictionary_2_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0610, Dictionary_2_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0630, List_1_T_Enumerator_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionConfig__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0638, List_1_T_Enumerator_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionConfig__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0640, List_1_T_Enumerator_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionBinding__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0668, List_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionConfig__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0670, Dictionary_2_System_String_List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0678, Dictionary_2_System_String_List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0680, Enumerable_SelectMany_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0688, Enumerable_Select_44__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0690, Enumerable_Union_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0698, Enumerable_Where_12__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB06A0, List_1_T_Enumerator_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionBinding__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB06A8, OpenXRSettings_GetFeature_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB06B0, List_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionBinding__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB06E0, KeyValuePair_2_System_String_List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB06E8, List_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionMapConfig__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB06F8, List_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionMapConfig___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0700, List_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionMapConfig__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0710, List_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionMapConfig__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0720, Enumerable_OfType_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0728, Enumerable_Where_13__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0730, Dictionary_2_TKey_TValue_Enumerator_System_String_List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0738, Dictionary_2_TKey_TValue_Enumerator_System_String_List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0758, KeyValuePair_2_System_String_List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__get_Key__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0760, List_1_T_Enumerator_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_DeviceConfig__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0768, List_1_T_Enumerator_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_DeviceConfig__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0770, List_1_T_Enumerator_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionMapConfig__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0778, List_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionMapConfig__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0780, List_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_DeviceConfig__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0788, List_1_T_Enumerator_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionConfig__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0790, List_1_T_Enumerator_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionBinding__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB07B0, List_1_T_Enumerator_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionMapConfig__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB07B8, List_1_T_Enumerator_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_DeviceConfig__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB07C0, List_1_T_Enumerator_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionMapConfig__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB07D0, InputSystem_RegisterLayout_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB07D8, InputSystem_RegisterLayout_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB07E0, InputSystem_RegisterLayout_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0808, Dictionary_2_TKey_TValue_Enumerator_System_String_List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0810, Dictionary_2_System_String_List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0818, Dictionary_2_System_String_List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0828, InputSystem_RegisterLayout_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0848, List_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionConfig__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0850, List_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_DeviceConfig__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB09D8, List_1_UnityEngine_XR_XRDisplaySubsystemDescriptor___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0A28, GameObject_AddComponent_31__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0A38, GameObject_GetComponent_26__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0AF8, List_1_UnityEngine_XR_OpenXR_OpenXRLoaderBase_LoaderState__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0B00, List_1_UnityEngine_XR_OpenXR_OpenXRLoaderBase_LoaderState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0C08, OpenXRLoaderBase_CreateSubsystem_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0C10, OpenXRLoaderBase_CreateSubsystem_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0C80, OpenXRLoaderBase_StopSubsystem_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0C98, OpenXRLoaderBase_DestroySubsystem_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0CA8, OpenXRLoaderBase_DestroySubsystem_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0CB8, OpenXRLoaderBase_StartSubsystem_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0CC8, OpenXRLoaderBase_StartSubsystem_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0CD8, OpenXRLoaderBase_StopSubsystem_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0CE8, XRLoaderHelper_GetLoadedSubsystem_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0CF8, XRLoaderHelper_GetLoadedSubsystem_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0D08, List_1_UnityEngine_XR_OpenXR_OpenXRLoaderBase_LoaderState__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0D38, Enumerable_OrderByDescending_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0D40, Enumerable_ThenBy_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0D50, Enumerable_ToArray_17__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0E80, Enumerable_Select_45__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0E88, Enumerable_Where_14__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0EF0, PointerEventBase_1_PointerUpEvent__get_pressedButtons__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0EF8, EventBase_1_PointerDownEvent__TypeId__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0F00, EventBase_1_PointerUpEvent__TypeId__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0F10, List_1_UnityEngine_UIElements_Panel__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0F18, List_1_UnityEngine_UIElements_Panel__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0F38, ScriptableObject_CreateInstance_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0F98, List_1_UnityEngine_XR_OpenXR_Features_OpenXRFeature__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0FA8, List_1_UnityEngine_XR_OpenXR_Features_OpenXRFeature__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0FC0, List_1_UnityEngine_XR_OpenXR_Features_OpenXRFeature__AddRange__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0FC8, List_1_Rewired_Data_CustomController_Editor_Axis__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0FD0, List_1_Rewired_ControllerElementIdentifier__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0FD8, List_1_UnityEngine_XR_OpenXR_Features_OpenXRFeature__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0FE0, List_1_Rewired_Data_CustomController_Editor_Button__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0FE8, List_1_UnityEngine_XR_OpenXR_Features_OpenXRFeature__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0FF0, List_1_UnityEngine_XR_OpenXR_Features_OpenXRFeature___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB0FF8, List_1_Rewired_Data_CustomController_Editor_Axis__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB1008, List_1_Rewired_Data_CustomController_Editor_Button__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB1010, List_1_Rewired_ControllerElementIdentifier__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB1018, List_1_Rewired_ControllerElementIdentifier__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB1038, Enumerable_Where_15__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB10B8, Dictionary_2_Cinemachine_ICinemachineCamera_System_Object___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB10C0, Dictionary_2_Cinemachine_ICinemachineCamera_System_Object__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB10D0, KeyValuePair_2_Cinemachine_ICinemachineCamera_System_Object__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB10D8, Dictionary_2_Cinemachine_ICinemachineCamera_System_Object__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB10E0, Dictionary_2_Cinemachine_ICinemachineCamera_System_Object__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB10E8, Dictionary_2_TKey_TValue_Enumerator_Cinemachine_ICinemachineCamera_System_Object__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB10F0, Dictionary_2_TKey_TValue_Enumerator_Cinemachine_ICinemachineCamera_System_Object__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB10F8, Dictionary_2_TKey_TValue_Enumerator_Cinemachine_ICinemachineCamera_System_Object__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB1128, List_1_Photon_Bolt_Utils_BoltLog_IWriter__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB1130, List_1_Photon_Bolt_Utils_BoltLog_IWriter__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB1148, Dictionary_2_System_String_UnityEngine_XR_OpenXR_Features_Mock_MockRuntime_BeforeFunctionDelegate__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB1150, Dictionary_2_System_String_UnityEngine_XR_OpenXR_Features_Mock_MockRuntime_AfterFunctionDelegate__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB1158, Dictionary_2_System_String_UnityEngine_XR_OpenXR_Features_Mock_MockRuntime_AfterFunctionDelegate__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB1160, Dictionary_2_System_String_UnityEngine_XR_OpenXR_Features_Mock_MockRuntime_BeforeFunctionDelegate__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB1168, Dictionary_2_System_String_UnityEngine_XR_OpenXR_Features_Mock_MockRuntime_AfterFunctionDelegate__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB11B0, Dictionary_2_System_String_UnityEngine_XR_OpenXR_Features_Mock_MockRuntime_BeforeFunctionDelegate__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB11B8, Dictionary_2_System_String_UnityEngine_XR_OpenXR_Features_Mock_MockRuntime_AfterFunctionDelegate__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB11C0, Dictionary_2_System_String_UnityEngine_XR_OpenXR_Features_Mock_MockRuntime_AfterFunctionDelegate___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB11C8, Dictionary_2_System_String_UnityEngine_XR_OpenXR_Features_Mock_MockRuntime_BeforeFunctionDelegate___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB11D0, Dictionary_2_System_String_UnityEngine_XR_OpenXR_Features_Mock_MockRuntime_BeforeFunctionDelegate__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB11D8, OpenXRSettings_GetFeature_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB1540, Array_Resize_135__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB1FF0, Dictionary_2_System_String_System_Int32__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB24D0, InputControlList_1_InputDevice__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB2540, OneOrMore_2_UnityEngine_InputSystem_InputDevice_ReadOnlyArray_1_UnityEngine_InputSystem_InputDevice___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB25A8, ArrayHelpers_LengthSafe_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB2618, ReadOnlyArray_1_UnityEngine_InputSystem_InputControl__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB2620, ReadOnlyArray_1_UnityEngine_InputSystem_InputControl__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB2810, CallbackEventHandler_RegisterCallback_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB2818, CallbackEventHandler_RegisterCallback_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB2828, Dictionary_2_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB2840, Dictionary_2_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB2848, Dictionary_2_System_Type_System_Object__1__ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB2858, Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB2860, Dictionary_2_System_Type_System_Object__1_Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB2868, Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB2870, Dictionary_2_System_Type_System_Object__1_TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB2878, Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1_Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB2880, Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1_TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB2920, CollectionExtensions_1_ToReadOnly_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB2940, List_1_UnityEngine_Component__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB2948, List_1_UnityEngine_Component__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB2968, GameObject_GetComponents_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB2980, CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_Component__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB2988, CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_Component__Release__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB2990, List_1_UnityEngine_EventSystems_IEventSystemHandler__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB29A0, CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_EventSystems_IEventSystemHandler__Release__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB29B0, List_1_UnityEngine_EventSystems_IEventSystemHandler__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB29C0, CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_EventSystems_IEventSystemHandler__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB29C8, List_1_Opsive_Shared_Events_InvokableActionBase__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB29D8, List_1_Opsive_Shared_Events_InvokableActionBase__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB29E0, List_1_Opsive_Shared_Events_InvokableActionBase__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB2A00, Dictionary_2_System_Type_List_1_Photon_Bolt_EventDispatcher_CallbackWrapper__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB2E78, Dictionary_2_System_String_System_Globalization_CultureInfo___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB2E80, Dictionary_2_System_Int32_System_Globalization_CultureInfo___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB2E88, Dictionary_2_System_Int32_System_Globalization_CultureInfo__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB2E90, Dictionary_2_System_String_System_Globalization_CultureInfo__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB2EA8, Dictionary_2_System_Int32_System_Globalization_CultureInfo__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB2EB8, Dictionary_2_System_String_System_Globalization_CultureInfo__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB3068, Array_IndexOf_248__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB3100, Dictionary_2_System_Int32_System_Globalization_CodePageDataItem__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB3108, Dictionary_2_System_Int32_System_Globalization_CodePageDataItem__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB3190, Dictionary_2_System_String_System_Int32__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB3EA0, Dictionary_2_System_String_System_Int32___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB3EA8, Dictionary_2_System_Int32_System_Globalization_CodePageDataItem___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB40A0, Dictionary_2_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaEntity__get_Values__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB40A8, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaEntity__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB40B0, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaEntity__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB40C0, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaEntity__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB40E8, Dictionary_2_TKey_TValue_ValueCollection_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaEntity__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB4240, Dictionary_2_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaAttDef__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB43B8, Object_1_FindObjectOfType_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB4470, MiscTools_DeepClone_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB44A0, ArrayTools_DeepClone_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB44D8, MiscTools_DeepClone_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB44E8, ArrayTools_ShallowCopy_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB44F0, ArrayTools_DeepClone_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB4500, ArrayTools_DeepClone_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB4508, ArrayTools_DeepClone_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB4548, MiscTools_DeepClone_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB4560, MiscTools_DeepClone_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB4660, ArrayHelpers_IndexOfReference_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB4788, EventBase_1_FocusEvent__TypeId__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB47A8, EventBase_1_BlurEvent__TypeId__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB47B8, KeyboardEventBase_1_KeyDownEvent__get_character__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB4850, CallbackEventHandler_UnregisterCallback_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB4890, CallbackEventHandler_RegisterCallback_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB48D0, List_1_UnityEngine_UIElements_DropdownMenuItem__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB48D8, KeyboardEventBase_1_KeyDownEvent__get_keyCode__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB4900, EventBase_1_ContextualMenuPopulateEvent__TypeId__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB4920, EventBase_1_KeyDownEvent__TypeId__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB4928, EventBase_1_FocusOutEvent__TypeId__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB4940, EventBase_1_FocusInEvent__TypeId__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB4A98, PanelChangedEventBase_1_AttachToPanelEvent__get_destinationPanel__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB4AF0, CommandEventBase_1_ExecuteCommandEvent__GetPooled__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB4BA8, CallbackEventHandler_RegisterCallback_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB4D40, TaskCompletionSource_1_System_Byte___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB4D48, TaskCompletionSource_1_System_IO_Stream__get_Task__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB4D50, TaskCompletionSource_1_System_IO_Stream___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB4DA0, TaskCompletionSource_1_System_Byte__get_Task__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB4E10, TaskCompletionSource_1_System_String___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB4E20, TaskCompletionSource_1_System_String__get_Task__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB4FC0, AsyncTaskMethodBuilder_1_System_Net_WebResponse__Start__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB4FC8, AsyncTaskMethodBuilder_1_System_Net_WebResponse__Create__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB4FD0, AsyncTaskMethodBuilder_1_System_Net_WebResponse__get_Task__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB5088, LazyInitializer_EnsureInitialized_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB56E0, Queue_1_Pathfinding_GraphUpdateObject__Dequeue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB5700, Queue_1_Pathfinding_GraphUpdateObject__Enqueue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB5740, Queue_1_Pathfinding_GraphUpdateObject___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB5770, Queue_1_Pathfinding_GraphUpdateObject__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB5780, Dictionary_2_System_UInt64_Pathfinding_GraphModifier___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB5788, Dictionary_2_System_UInt64_Pathfinding_GraphModifier__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB5790, Dictionary_2_System_UInt64_Pathfinding_GraphModifier__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB5798, Dictionary_2_System_UInt64_Pathfinding_GraphModifier__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB59A0, ListPool_1_Pathfinding_GraphNode__GetSize__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB59C0, GameObject_AddComponent_32__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB59E8, Component_GetComponent_27__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB59F0, Component_GetComponent_28__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB5B28, Array_IndexOf_249__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB5B48, List_1_Pathfinding_NavGraph__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB5BA8, List_1_Pathfinding_NavGraph__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB5BC0, List_1_Pathfinding_NavGraph__AddRange__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB5BD0, List_1_Pathfinding_NavGraph___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB5BD8, List_1_Pathfinding_NavGraph__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB5D08, ListPool_1_Pathfinding_GraphNode__Claim__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB60C0, ListTools_OffsetAtIndex_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB60D0, List_1_Rewired_ActionElementMap__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB60E0, List_1_Rewired_ActionElementMap__Insert__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6138, List_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap_ElementIdentifierMap__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6160, TempListPool_GetTList_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6168, TempListPool_TList_1_Rewired_ActionElementMap__get_list__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6178, TempListPool_GetTList_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6180, List_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap_ElementIdentifierMap__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6188, List_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap_ElementIdentifierMap__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6190, TempListPool_TList_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap_ElementIdentifierMap__get_list__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6198, List_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap_ElementIdentifierMap__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB61D0, List_1_Rewired_ControllerTemplateElementIdentifier___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB61D8, List_1_Rewired_ControllerTemplateElementIdentifier__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB61E0, List_1_Rewired_ControllerTemplateElementIdentifier__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB61E8, List_1_Rewired_ControllerTemplateElementIdentifier__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB61F8, List_1_Rewired_ActionElementMap__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6200, ListTools_CopyTo_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6208, List_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap_Entry__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6210, List_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap_Entry__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6248, MiscTools_DeepClone_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6268, ArrayTools_DeepClone_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6270, ArrayTools_DeepClone_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6278, ArrayTools_DeepClone_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6298, ArrayTools_ShallowCopy_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB62D8, MiscTools_DeepClone_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB62E0, MiscTools_DeepClone_12__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6308, ArrayTools_DeepClone_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6318, ArrayTools_DeepClone_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6328, MiscTools_DeepClone_13__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6338, MiscTools_DeepClone_14__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6340, MiscTools_DeepClone_15__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6368, ArrayTools_DeepClone_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6370, ArrayTools_DeepClone_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6388, MiscTools_DeepClone_16__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB63C0, MiscTools_DeepClone_17__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB63C8, MiscTools_DeepClone_18__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB63E0, MiscTools_DeepClone_19__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB63F0, ArrayTools_DeepClone_12__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6400, ArrayTools_DeepClone_13__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6478, MiscTools_DeepClone_20__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB64A0, MiscTools_DeepClone_21__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB64A8, Message_Serialize_13__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB64B0, Query_1_PeerConnectResult___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB64B8, Query_1_ProbeEndPointResult___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB64C0, Context_1_RegisterMessageType_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB64C8, Context_1_RegisterMessageType_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB64D0, Context_1_RegisterMessageType_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB64D8, Context_1_RegisterMessageType_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB64E0, Context_1_RegisterMessageType_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB64E8, Context_1_RegisterMessageType_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB64F0, Context_1_RegisterMessageType_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB64F8, Context_1_RegisterMessageType_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6500, Context_1_RegisterMessageType_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6508, Context_1_RegisterMessageType_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6510, Context_1_RegisterMessageType_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6518, Context_1_RegisterMessageType_12__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6520, Context_1_RegisterMessageType_13__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6528, Context_1_RegisterMessageType_14__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6538, Message_Create_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6540, Message_Serialize_14__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6548, Message_Create_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6570, Dictionary_2_System_Net_IPEndPoint_UdpKit_UdpEndPoint__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6578, Dictionary_2_System_Net_IPEndPoint_UdpKit_UdpEndPoint__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6580, Dictionary_2_UdpKit_UdpEndPoint_System_Net_IPEndPoint__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6588, Dictionary_2_UdpKit_UdpEndPoint_System_Net_IPEndPoint__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6590, Dictionary_2_UdpKit_UdpEndPoint_System_Net_IPEndPoint__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6598, Context_1_RegisterMessageType_15__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB65A0, Context_1_RegisterMessageType_16__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB65A8, Context_1_RegisterMessageType_17__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB65B0, Context_1_RegisterMessageType_18__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB65B8, Context_1_RegisterMessageType_19__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB65C0, Context_1_RegisterMessageType_20__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB65C8, Context_1_RegisterMessageType_21__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB65D0, Context_1_RegisterMessageType_22__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB65D8, Dictionary_2_UdpKit_UdpEndPoint_System_Net_IPEndPoint___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB65E0, Dictionary_2_System_Net_IPEndPoint_UdpKit_UdpEndPoint___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6638, Dictionary_2_System_Net_IPEndPoint_UdpKit_UdpEndPoint__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB67B8, ArrayPool_1_Pathfinding_GridNodeBase__Release__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB67C0, ArrayPool_1_Pathfinding_GridNodeBase__Claim__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB67C8, List_1_UnityEngine_Events_BaseInvokableCall__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB67F0, List_1_UnityEngine_Events_BaseInvokableCall__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB68A8, EqualityComparer_1_List_1_UnityEngine_UIElements_RuleMatcher__get_Default__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB68B0, EqualityComparer_1_UnityEngine_UIElements_VisualElement__get_Default__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB68E8, EqualityComparer_1_List_1_UnityEngine_UIElements_StyleSelector__get_Default__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB68F0, EqualityComparer_1_List_1_UnityEngine_UIElements_StyleSelectorPart__get_Default__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6908, List_1_UnityEngine_UIElements_StyleSelector__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6920, List_1_UnityEngine_UIElements_StyleSelector__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6928, List_1_UnityEngine_UIElements_StyleSelector__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6948, List_1_UnityEngine_UIElements_StyleSelector__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6998, List_1_UnityEngine_UIElements_StyleSelector___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6AC0, List_1_Pathfinding_GraphNode__set_Capacity__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6AD0, List_1_Pathfinding_GraphNode__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6AD8, List_1_Pathfinding_GraphNode__get_Capacity__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6D78, Queue_1_Pathfinding_Path__Dequeue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6D90, Queue_1_Pathfinding_Path__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6D98, Queue_1_Pathfinding_Path__Enqueue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6DB0, Queue_1_Pathfinding_Path___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6E80, Dictionary_2_System_Type_Stack_1_Pathfinding_Path___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6E88, Dictionary_2_System_Type_System_Int32___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6EA0, Stack_1_Pathfinding_Path__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6EA8, Dictionary_2_System_Type_System_Int32__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6EB8, Stack_1_Pathfinding_Path___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6ED0, Dictionary_2_System_Type_Stack_1_Pathfinding_Path__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6ED8, Stack_1_Pathfinding_Path__Push__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6EE0, Dictionary_2_System_Type_Stack_1_Pathfinding_Path__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6EF0, Dictionary_2_Pathfinding_GraphNode_Pathfinding_NodeLink3___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6F08, ObjectPool_1_System_Collections_Generic_Queue_1__1__ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6F20, ObjectPool_1_System_Collections_Generic_Queue_1__1_Release__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6F30, KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_Queue_1_UnityEngine_UIElements_EventBase__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6F38, Queue_1_UnityEngine_UIElements_EventBase__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6F48, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_UnityEngine_UIElements_StylePropertyAnimationSystem_TransitionState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6F58, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_Queue_1_UnityEngine_UIElements_EventBase___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6F60, Dictionary_2_Pathfinding_GraphNode_Pathfinding_NodeLink3__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6F68, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_Queue_1_UnityEngine_UIElements_EventBase__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6F70, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_Queue_1_UnityEngine_UIElements_EventBase__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6F78, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_Queue_1_UnityEngine_UIElements_EventBase__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6F80, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_UnityEngine_UIElements_StylePropertyAnimationSystem_TransitionState__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6F88, KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_Queue_1_UnityEngine_UIElements_EventBase__get_Key__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6F90, PointGraph_AddNode_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6F98, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_Queue_1_UnityEngine_UIElements_EventBase__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6FA0, Dictionary_2_Pathfinding_GraphNode_Pathfinding_NodeLink3__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6FC8, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_Queue_1_UnityEngine_UIElements_EventBase__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6FD0, Dictionary_2_Pathfinding_GraphNode_Pathfinding_NodeLink3__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB6FD8, ObjectPool_1_System_Collections_Generic_Queue_1__1_Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7018, Dictionary_2_Pathfinding_GraphNode_Pathfinding_NodeLink2___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7050, List_1_Pathfinding_NodeLink2__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7058, List_1_T_Enumerator_Pathfinding_NodeLink2__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7060, List_1_T_Enumerator_Pathfinding_NodeLink2__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7068, List_1_Pathfinding_NodeLink2__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7070, GraphModifier_GetModifiersOfType_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7078, List_1_T_Enumerator_Pathfinding_NodeLink2__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7088, Dictionary_2_Pathfinding_GraphNode_Pathfinding_NodeLink2__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7090, Dictionary_2_Pathfinding_GraphNode_Pathfinding_NodeLink2__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7098, Dictionary_2_Pathfinding_GraphNode_Pathfinding_NodeLink2__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB70D0, ObjectPool_1_RetainedGizmos_Builder__Claim__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB70E0, Queue_1_Pathfinding_GraphNode__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB70F0, Queue_1_Pathfinding_GraphNode__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB70F8, Queue_1_Pathfinding_GraphNode__Enqueue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7100, Queue_1_Pathfinding_GraphNode__Dequeue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7110, ListExtensions_ClearFast_12__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7140, Queue_1_Pathfinding_GraphNode___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7190, HashSet_1_Pathfinding_GridNodeBase__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB71A8, HashSet_1_Pathfinding_GridNodeBase___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7220, BKsJJnAdrRntLMuBtHLhFtlqOUnH_HierarchyEventHelper_2_Rewired_ComponentControls_TouchJoystick_IValueChangedHandler_UnityEngine_Vector2__ExecuteOnAll__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7228, BKsJJnAdrRntLMuBtHLhFtlqOUnH_HierarchyEventHelper_2_Rewired_ComponentControls_TouchJoystick_IStickPositionChangedHandler_UnityEngine_Vector2__ExecuteOnAll__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7298, BKsJJnAdrRntLMuBtHLhFtlqOUnH_HierarchyEventHelper_2_Rewired_ComponentControls_TouchJoystick_IStickPositionChangedHandler_UnityEngine_Vector2__GetHandlers__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB72A0, BKsJJnAdrRntLMuBtHLhFtlqOUnH_HierarchyEventHelper_2_Rewired_ComponentControls_TouchJoystick_IValueChangedHandler_UnityEngine_Vector2__GetHandlers__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB72A8, BKsJJnAdrRntLMuBtHLhFtlqOUnH_HierarchyEventHelper_2_Rewired_ComponentControls_TouchJoystick_IValueChangedHandler_UnityEngine_Vector2___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB72B0, BKsJJnAdrRntLMuBtHLhFtlqOUnH_HierarchyEventHelper_2_Rewired_ComponentControls_TouchJoystick_IStickPositionChangedHandler_UnityEngine_Vector2___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7338, UnityEvent_1_Rewired_ComponentControls_TouchInteractable_InteractionStateTransitionArgs___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7378, UnityEvent_1_Rewired_ComponentControls_TouchInteractable_InteractionStateTransitionArgs__Invoke__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7380, BKsJJnAdrRntLMuBtHLhFtlqOUnH_HierarchyEventHelper_2_Rewired_ComponentControls_TouchInteractable_IInteractionStateTransitionHandler_Rewired_ComponentControls_TouchInteractable_InteractionStateTransitionArgs__ExecuteOnAll__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7398, BKsJJnAdrRntLMuBtHLhFtlqOUnH_HierarchyEventHelper_2_Rewired_UI_IVisibilityChangedHandler_System_Boolean__ExecuteOnAll__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB73B0, BKsJJnAdrRntLMuBtHLhFtlqOUnH_HierarchyEventHelper_2_Rewired_ComponentControls_TouchInteractable_IInteractionStateTransitionHandler_Rewired_ComponentControls_TouchInteractable_InteractionStateTransitionArgs___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB73B8, BKsJJnAdrRntLMuBtHLhFtlqOUnH_HierarchyEventHelper_2_Rewired_ComponentControls_TouchInteractable_IInteractionStateTransitionHandler_Rewired_ComponentControls_TouchInteractable_InteractionStateTransitionArgs__GetHandlers__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB73C0, List_1_UnityEngine_CanvasGroup__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB73C8, Component_GetComponents_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB73D0, List_1_UnityEngine_CanvasGroup__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB73D8, GameObject_GetComponent_27__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7408, List_1_UnityEngine_CanvasGroup___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7420, UnityTools_GetComponentInSelfOrParents_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7438, BKsJJnAdrRntLMuBtHLhFtlqOUnH_HierarchyEventHelper_2_Rewired_UI_IVisibilityChangedHandler_System_Boolean___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7440, BKsJJnAdrRntLMuBtHLhFtlqOUnH_HierarchyEventHelper_2_Rewired_UI_IVisibilityChangedHandler_System_Boolean__GetHandlers__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7450, UnityEvent_1_Rewired_ComponentControls_TouchInteractable_InteractionStateTransitionArgs__RemoveListener__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7458, UnityEvent_1_Rewired_ComponentControls_TouchInteractable_InteractionStateTransitionArgs__AddListener__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7470, Dictionary_2_System_Int32_UnityEngine_EventSystems_PointerEventData__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7490, Dictionary_2_System_Int32_UnityEngine_EventSystems_PointerEventData___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7498, Dictionary_2_System_Int32_UnityEngine_EventSystems_PointerEventData__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB75A0, List_1_UdpKit_Async_Task___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB75B8, Singleton_1_UdpKit_Async_ThreadManager___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7620, List_1_UdpKit_Async_Task__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7630, List_1_UdpKit_Async_Task__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7638, List_1_UdpKit_Async_Task__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7640, Singleton_1_UdpKit_Async_ThreadManager__get_Instance__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7650, List_1_UdpKit_Async_Task__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7660, Enumerable_Count_17__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB76B8, List_1_UdpKit_Protocol_Query__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB76C0, List_1_UdpKit_UdpSession___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB76C8, UnityTools_GetComponentInSelfOrParents_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7708, Dictionary_2_System_Type_UdpKit_Protocol_ProtocolClient_AckCallback___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7720, Dictionary_2_System_Type_UdpKit_Protocol_ProtocolClient_MsgHandler___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7750, List_1_UdpKit_Protocol_Query__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7770, Dictionary_2_System_Type_UdpKit_Protocol_ProtocolClient_AckCallback__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7778, Dictionary_2_System_Type_UdpKit_Protocol_ProtocolClient_MsgHandler__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7780, List_1_UdpKit_Protocol_Query___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7798, ArrayTools_Contains_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB77A8, List_1_UdpKit_Protocol_Query__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB77B8, List_1_UdpKit_Protocol_Query__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB77E8, List_1_Rewired_ComponentControls_IComponentControl__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB77F8, ListTools_AddIfUnique_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7810, List_1_Rewired_ComponentControls_IComponentControl__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7818, List_1_Rewired_ComponentControls_IComponentControl__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7850, Singleton_1_UdpKit_Security_PacketIdValidator___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7860, Singleton_1_UdpKit_Security_EncryptionManager___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB78A0, Singleton_1_UdpKit_Security_PacketIdValidator__get_Instance__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB78A8, List_1_Rewired_ComponentControls_IComponentControl__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB78B8, List_1_Rewired_ComponentControls_IComponentControl__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB78C8, List_1_Rewired_ComponentControls_IComponentControl___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7930, Stack_1_UdpKit_UdpPacket__Push__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7950, Stack_1_UdpKit_UdpPacket__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7960, Stack_1_UdpKit_UdpPacket__Pop__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB79A0, Stack_1_UdpKit_UdpPacket___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB79E0, Queue_1_UdpKit_UdpStreamOp__Dequeue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB79E8, Queue_1_UdpKit_UdpStreamOp__Peek__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB79F0, SortedDictionary_2_System_UInt64_UdpKit_UdpStreamOp__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB79F8, SortedDictionary_2_System_UInt64_UdpKit_UdpStreamOp__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7A00, SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_UdpKit_UdpStreamOp__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7A08, Queue_1_UdpKit_UdpStreamOp__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7A10, SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_UdpKit_UdpStreamOp__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7A18, SortedDictionary_2_System_UInt64_UdpKit_UdpStreamOp__get_Values__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7A20, SortedDictionary_2_System_UInt64_UdpKit_UdpStreamOp__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7A28, SortedDictionary_2_TKey_TValue_ValueCollection_System_UInt64_UdpKit_UdpStreamOp__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7A30, ComponentWrapper_1_Rewired_PlayerController__Deinitialize__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7A58, SortedDictionary_2_System_UInt64_UdpKit_UdpStreamOp__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7A68, ObjectPool_1_UdpKit_UdpStreamOpBlock__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7AB0, Dictionary_2_UdpKit_UdpEndPoint_UdpKit_UdpConnection__get_Values__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7AC0, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_UdpKit_UdpConnection__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7AC8, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_UdpKit_UdpConnection__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7AD0, Dictionary_2_TKey_TValue_ValueCollection_UdpKit_UdpEndPoint_UdpKit_UdpConnection__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7AD8, UdpEvent_As_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7AF0, SortedDictionary_2_System_UInt64_UdpKit_UdpStreamOp___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7B18, Queue_1_UdpKit_UdpStreamOp__Enqueue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7B28, SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_UdpKit_UdpStreamOp__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7B40, ObjectPool_1_UdpKit_UdpStreamOpBlock___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7B50, Queue_1_UdpKit_UdpStreamOp___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7B68, List_1_UdpKit_UdpSession__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7B88, Map_2_System_Guid_UdpSession__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7BA0, Dictionary_2_Pathfinding_TriangleMeshNode_Pathfinding_Connection__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7BC0, Map_2_System_Guid_UdpSession__Update__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7BC8, ComponentWrapper_1_Rewired_PlayerController___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7BE0, List_1_T_Enumerator_UdpKit_UdpSession__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7C00, List_1_T_Enumerator_UdpKit_UdpSession__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7C10, List_1_T_Enumerator_UdpKit_UdpSession__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7C18, List_1_Rewired_Components_PlayerController_ElementInfo__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7C40, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_UdpKit_UdpConnection__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7C58, Dictionary_2_UdpKit_UdpEndPoint_UdpKit_UdpConnection__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7C68, List_1_UdpKit_UdpConnection__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7C80, Dictionary_2_UdpKit_UdpEndPoint_System_Byte__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7CA0, Enumerable_ToDictionary_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7CA8, Enumerable_SelectMany_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7D28, ProtocolClient_SetHandler_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7D30, List_1_Rewired_Components_PlayerController_ElementInfo__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7D60, ProtocolClient_SetHandler_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7DC8, ProtocolService_Send_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7E00, List_1_Rewired_PlayerController_Element_Definition___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7E18, List_1_Rewired_PlayerController_Element_Definition__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7EB8, ComponentWrapper_1_Rewired_PlayerController__OnReset__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7EC0, Context_1_CreateMessage_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7ED8, Context_1_CreateMessage_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7EE0, List_1_Rewired_Components_PlayerController_ElementInfo___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7EE8, List_1_Pathfinding_MeshNode___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7EF8, ComponentWrapper_1_Rewired_PlayerController__OnValidated__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7F28, ComponentWrapper_1_Rewired_PlayerController__OnDisabled__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7F68, ComponentWrapper_1_Rewired_PlayerController__OnEnabled__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7FE0, ComponentWrapper_1_Rewired_PlayerController__Unsubscribe__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB7FF8, ComponentWrapper_1_Rewired_PlayerController__Subscribe__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB8018, List_1_Pathfinding_MeshNode__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB8058, ListExtensions_ClearFast_13__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB8060, UdpEvent_As_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB8068, List_1_Pathfinding_MeshNode__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB8070, List_1_Pathfinding_MeshNode__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB8080, UdpEvent_As_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB8090, UdpEvent_As_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB80C0, UdpEvent_As_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB80F8, ArrayPool_1_Pathfinding_TriangleMeshNode__Release__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB8130, ArrayPool_1_Pathfinding_TriangleMeshNode__Claim__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB8140, ComponentWrapper_1_Rewired_PlayerController__OnAwakeFinished__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB8160, ComponentWrapper_1_Rewired_PlayerController__OnAwake__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB8168, ObjectPoolSimple_1_System_Collections_Generic_Dictionary_2__Release__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB8170, ObjectPoolSimple_1_System_Collections_Generic_Dictionary_2__Claim__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB8188, Dictionary_2_UdpKit_UdpChannelName_UdpKit_UdpStreamChannel__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB8198, Dictionary_2_UdpKit_UdpChannelName_UdpKit_UdpStreamChannel__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB81D8, UdpEvent_As_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB81E0, UdpEvent_As_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB81E8, EmptyObjects_1_Rewired_PlayerController_Element__get_EmptyReadOnlyIListT__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB81F0, UdpEvent_As_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB8200, UdpEvent_As_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB8208, EmptyObjects_1_Rewired_PlayerController_Axis__get_EmptyReadOnlyIListT__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB8218, Dictionary_2_UdpKit_UdpEndPoint_System_Byte__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB8220, EmptyObjects_1_Rewired_PlayerController_Button__get_EmptyReadOnlyIListT__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB8230, Dictionary_2_UdpKit_UdpEndPoint_System_Byte__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB8240, ObjectPool_1_Pathfinding_BBTree__Claim__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB8258, UdpEvent_As_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB8280, UdpEvent_As_12__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB8288, ObjectPool_1_Pathfinding_BBTree__Release__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB8290, EmptyObjects_1_Rewired_ControllerExtensions_SteamControllerActionOrigin__get_EmptyReadOnlyIListT__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB82A0, UdpEvent_As_13__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB82A8, Dictionary_2_UdpKit_UdpEndPoint_System_Byte__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB82B0, List_1_UdpKit_UdpConnection__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB82B8, Dictionary_2_UdpKit_UdpEndPoint_UdpKit_UdpConnection__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB82D0, UdpEvent_As_14__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB8348, Dictionary_2_UdpKit_UdpEndPoint_UdpKit_UdpConnection__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB8368, Dictionary_2_UdpKit_UdpEndPoint_UdpKit_UdpConnection__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB8378, List_1_UdpKit_UdpConnection__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB8380, List_1_UdpKit_UdpConnection__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB8388, Dictionary_2_UdpKit_UdpEndPoint_UdpKit_UdpConnection__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB8398, Dictionary_2_UdpKit_UdpEndPoint_UdpKit_UdpConnection__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB83A8, List_1_UdpKit_UdpConnection__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB83C0, Dictionary_2_UdpKit_UdpEndPoint_System_Byte__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB83D0, Dictionary_2_UdpKit_UdpEndPoint_System_Byte__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB8400, Dictionary_2_UdpKit_UdpChannelName_UdpKit_UdpStreamChannel__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB8498, UdpEvent_As_15__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB8590, List_1_UdpKit_UdpConnection___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB85C8, Dictionary_2_UdpKit_UdpEndPoint_System_Byte___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB85D8, Dictionary_2_UdpKit_UdpEndPoint_UdpKit_UdpConnection___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB85E0, Dictionary_2_UdpKit_UdpChannelName_UdpKit_UdpStreamChannel___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB8658, Dictionary_2_UdpKit_UdpChannelName_UdpKit_UdpChannelStreamer__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB8668, List_1_UdpKit_UdpChannelStreamer__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB8670, List_1_UdpKit_UdpChannelStreamer__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB8678, List_1_UdpKit_UdpChannelStreamer__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB8680, List_1_UdpKit_UdpChannelStreamer__Sort__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB8688, Queue_1_UdpKit_UdpStreamOp__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB8690, List_1_UdpKit_UdpChannelStreamer__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB86A0, ObjectPool_1_UdpKit_UdpStreamOpBlock__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB86B0, SortedDictionary_2_System_UInt64_UdpKit_UdpStreamOp__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB86C0, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpChannelName_UdpKit_UdpChannelStreamer__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB86D0, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpChannelName_UdpKit_UdpChannelStreamer__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB86D8, Dictionary_2_UdpKit_UdpChannelName_UdpKit_UdpChannelStreamer__get_Values__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB8710, Dictionary_2_UdpKit_UdpChannelName_UdpKit_UdpChannelStreamer__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB8718, Dictionary_2_TKey_TValue_ValueCollection_UdpKit_UdpChannelName_UdpKit_UdpChannelStreamer__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB8720, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpChannelName_UdpKit_UdpChannelStreamer__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB8728, Dictionary_2_UdpKit_UdpChannelName_UdpKit_UdpChannelStreamer__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB8730, Dictionary_2_UdpKit_UdpChannelName_UdpKit_UdpChannelStreamer__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB8760, Dictionary_2_UdpKit_UdpChannelName_UdpKit_UdpChannelStreamer___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB8768, List_1_UdpKit_UdpChannelStreamer___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB87A0, Singleton_1_UdpKit_Security_EncryptionManager__get_Instance__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB8948, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControl__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB8950, ReadOnlyArray_1_UnityEngine_InputSystem_InputControl__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB8958, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControl__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB8968, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControl__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB8EA8, List_1_UdpKit_Platform_UdpPlatformInterface___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB8EB0, List_1_UdpKit_Platform_UdpPlatformInterface__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB8FF8, BaseFieldTraits_2_System_String_UxmlStringAttributeDescription___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9008, TypedUxmlAttributeDescription_1_System_String__set_defaultValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9030, BaseFieldTraits_2_System_String_UxmlStringAttributeDescription__Init__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9080, List_1_Rewired_UpdateLoopType__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9090, TempListPool_TList_1_Rewired_UpdateLoopType__get_list__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9098, List_1_Rewired_UpdateLoopType__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB90A0, TempListPool_GetTList_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB90D0, ReadOnlyCollection_1_System_Runtime_ExceptionServices_ExceptionDispatchInfo__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB90D8, ReadOnlyCollection_1_System_Runtime_ExceptionServices_ExceptionDispatchInfo__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB90E0, Task_1_Task__get_Result__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9158, List_1_Pathfinding_RecastMeshObj___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9168, List_1_Pathfinding_RecastMeshObj__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB91A8, List_1_Pathfinding_RecastMeshObj__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB91B8, List_1_Pathfinding_RecastMeshObj__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB91D0, List_1_Pathfinding_RecastMeshObj__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9200, List_1_Pathfinding_GraphNode__Sort__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9208, Stack_1_Pathfinding_GraphNode__Pop__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9210, Stack_1_Pathfinding_GraphNode__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9218, Stack_1_Pathfinding_GraphNode__Push__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9230, List_1_Pathfinding_GraphNode___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9238, Stack_1_Pathfinding_GraphNode___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9370, List_1_Pathfinding_GraphNode__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB94A0, List_1_Pathfinding_NavmeshTile___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9510, List_1_Pathfinding_Voxels_RasterizationMesh__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9528, ListPool_1_Pathfinding_Voxels_RasterizationMesh__Claim__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9550, List_1_Pathfinding_NavmeshTile__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9558, List_1_Pathfinding_NavmeshTile__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9570, List_1_Pathfinding_NavmeshTile__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9580, List_1_Pathfinding_NavmeshTile__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9588, List_1_Pathfinding_NavmeshTile__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9590, ListPool_1_Pathfinding_Voxels_RasterizationMesh__Release__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB95A0, List_1_Pathfinding_Voxels_RasterizationMesh__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB95A8, List_1_Pathfinding_Voxels_RasterizationMesh__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB95C8, List_1_Pathfinding_GraphNode___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9640, PointGraph_AddNode_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9658, Nullable_1_UnityEngine_RuntimePlatform__ToString__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9670, Dictionary_2_System_Int32_Photon_Realtime_RoomInfo__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9678, List_1_T_Enumerator_Photon_Realtime_TypedLobbyInfo__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9680, List_1_T_Enumerator_Photon_Realtime_TypedLobbyInfo__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9688, List_1_Photon_Realtime_TypedLobbyInfo__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB96A0, List_1_T_Enumerator_Photon_Realtime_TypedLobbyInfo__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB96D0, Dictionary_2_System_Int32_Photon_Realtime_RoomInfo__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB96D8, Dictionary_2_System_Int32_Photon_Realtime_RoomInfo__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB96E0, Dictionary_2_System_Int32_Photon_Realtime_RoomInfo__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB96E8, Dictionary_2_System_Int32_Photon_Realtime_RoomInfo___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB96F0, Dictionary_2_TKey_TValue_Enumerator_System_Int32_Photon_Realtime_RoomInfo__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB96F8, Dictionary_2_System_Int32_Photon_Realtime_RoomInfo__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9700, Dictionary_2_TKey_TValue_Enumerator_System_Int32_Photon_Realtime_RoomInfo__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9708, Dictionary_2_TKey_TValue_Enumerator_System_Int32_Photon_Realtime_RoomInfo__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9710, List_1_Photon_Realtime_RoomInfo__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9718, KeyValuePair_2_System_Int32_Photon_Realtime_RoomInfo__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9720, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UdpKit_Platform_Photon_Puncher_StunManager_PingTarget__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9728, Dictionary_2_System_Int32_UdpKit_Platform_Photon_Puncher_StunManager_PingTarget__get_Values__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9730, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UdpKit_Platform_Photon_Puncher_StunManager_PingTarget__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9738, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UdpKit_Platform_Photon_Puncher_StunManager_PingTarget__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9740, Dictionary_2_TKey_TValue_ValueCollection_System_Int32_UdpKit_Platform_Photon_Puncher_StunManager_PingTarget__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9780, Dictionary_2_System_Int32_UdpKit_Platform_Photon_Puncher_StunManager_PingTarget__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9790, Dictionary_2_System_Int32_UdpKit_Platform_Photon_Puncher_StunManager_PingTarget___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9798, Dictionary_2_System_Int32_UdpKit_Platform_Photon_Puncher_StunManager_PingTarget__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB97A0, Dictionary_2_System_Int32_UdpKit_Platform_Photon_Puncher_StunManager_PingTarget__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB97D0, SynchronizedQueue_1_System_Collections_IEnumerator___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB98E0, Dictionary_2_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB98E8, Dictionary_2_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9A50, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9A58, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9A68, Dictionary_2_TKey_TValue_ValueCollection_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9A70, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9BC0, Array_IndexOf_250__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9BC8, Dictionary_2_UdpKit_Platform_Photon_ConnectState_UdpKit_Platform_Photon_ConnectState__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9C00, ArrayTools_RemoveAt_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9C28, ArrayTools_Add_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9C48, Dictionary_2_UdpKit_Platform_Photon_ConnectState_UdpKit_Platform_Photon_ConnectState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9C50, Dictionary_2_UdpKit_Platform_Photon_ConnectState_UdpKit_Platform_Photon_ConnectState__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9C58, SynchronizedQueue_1_UdpKit_Platform_Photon_PhotonPoller_PhotonPacket___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9C68, ADictionary_2_System_Type_System_Collections_Generic_List_1__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9C78, ADictionary_2_System_Type_System_Collections_Generic_List_1___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9CC0, SafeDelegate_1_System_Action__GetCombinedDelegate__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9CE0, ADictionary_2_System_Type_System_Collections_Generic_List_1__1_Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9CF8, ADictionary_2_System_Type_System_Collections_Generic_List_1__1__ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9D28, SafeDelegate_1_System_Action___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9D38, SafeDelegate_1_System_Action__Invoke__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9D50, SafeDelegate_1_System_Action___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9D70, SafeDelegate_1_System_Action___ctor_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9D90, SafeDelegate_1_System_Action__RemoveDelegate__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9DA0, Dictionary_2_Pathfinding_GraphNode_List_1_Pathfinding_SingleNodeBlocker___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9DA8, SafeDelegate_1_System_Action__AddDelegate__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9E30, List_1_Pathfinding_SingleNodeBlocker__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9E40, List_1_Pathfinding_SingleNodeBlocker__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9E78, Dictionary_2_Pathfinding_GraphNode_List_1_Pathfinding_SingleNodeBlocker__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9E88, Nullable_1_UnityEngine_RuntimePlatform__GetValueOrDefault__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9EA8, Nullable_1_UnityEngine_RuntimePlatform__get_HasValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9EE8, PathPool_GetPath_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9F30, PathPool_GetPath_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9F40, List_1_Photon_Realtime_RoomInfo__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9F90, Object_1_FindObjectsOfType_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CB9FA0, GameObject_AddComponent_33__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA018, Component_GetComponent_29__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA030, GameObject_GetComponent_28__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA038, GameObject_AddComponent_34__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA078, ListPool_1_Pathfinding_GraphNode__Release__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA080, List_1_T_Enumerator_Photon_Realtime_RoomInfo__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA088, List_1_T_Enumerator_Photon_Realtime_RoomInfo__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA090, List_1_UdpKit_UdpSession__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA0A0, List_1_T_Enumerator_Photon_Realtime_RoomInfo__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA0B0, PathPool_GetPath_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA130, PathPool_GetPath_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA178, Dictionary_2_Pathfinding_GraphNode_Pathfinding_GraphNode__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA188, UnityTools_GetComponentInSelfOrParents_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA198, Resources_GetBuiltinResource_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA1D0, GameObject_AddComponent_35__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA1D8, GameObject_AddComponent_36__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA1E8, GameObject_GetComponent_29__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA1F0, Dictionary_2_Pathfinding_GraphNode_Pathfinding_GraphNode___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA200, GameObject_AddComponent_37__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA210, PathPool_GetPath_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA238, List_1_Rewired_ComponentControls_Effects_TouchJoystickAngleIndicator___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA240, Dictionary_2_Pathfinding_GraphNode_Pathfinding_GraphNode__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA248, Dictionary_2_Pathfinding_GraphNode_Pathfinding_GraphNode__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA250, List_1_Rewired_ComponentControls_Effects_TouchJoystickAngleIndicator__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA258, PathPool_GetPath_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA260, Component_GetComponent_30__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA278, Nullable_1_UnityEngine_RuntimePlatform___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA2B8, ListTools_AddIfUnique_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA2C0, List_1_Rewired_ComponentControls_Effects_TouchJoystickAngleIndicator__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA2D0, PathPool_GetPath_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA2E8, UnityTools_GetComponentInSelfOrParents_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA350, List_1_Rewired_ComponentControls_Effects_TouchJoystickAngleIndicator__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA360, List_1_Rewired_ComponentControls_Effects_TouchJoystickAngleIndicator__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA370, List_1_Rewired_ComponentControls_Effects_TouchJoystickAngleIndicator__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA398, List_1_Rewired_ComponentControls_Effects_TouchJoystickAngleIndicator__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA3E8, PathPool_GetPath_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA410, UnityEvent_1_UnityEngine_EventSystems_PointerEventData___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA428, GridLookup_1_Pathfinding_NavmeshClipper__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA430, GridLookup_1_Pathfinding_NavmeshClipper__GetRoot__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA438, GridLookup_1_Pathfinding_NavmeshClipper__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA460, GridLookup_1_Pathfinding_NavmeshClipper__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA480, ListPool_1_Pathfinding_NavmeshClipper__Claim__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA498, ListPool_1_Pathfinding_NavmeshClipper__Release__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA4A0, GridLookup_1_Pathfinding_NavmeshClipper__get_AllItems__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA4A8, GridLookup_1_Pathfinding_NavmeshClipper__Move__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA4C0, UnityEvent_1_UnityEngine_EventSystems_PointerEventData__Invoke__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA528, ArrayTools_Populate_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA548, List_1_List_1_UnityEngine_Vector3__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA550, List_1_List_1_UnityEngine_Vector3__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA558, ListPool_1_System_Collections_Generic_List_1__Release__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA560, ListPool_1_System_Collections_Generic_List_1__Claim__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA568, List_1_List_1_UnityEngine_Vector3__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA588, List_1_UnityEngine_Vector3__1__ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA590, List_1_UnityEngine_Vector3__1_ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA5A0, UnityEvent_1_UnityEngine_EventSystems_PointerEventData__RemoveListener__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA5B0, UnityEvent_1_UnityEngine_EventSystems_PointerEventData__AddListener__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA5B8, List_1_UnityEngine_Vector3__1_Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA5D8, List_1_Pathfinding_NavmeshClipper___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA5E0, List_1_Pathfinding_NavmeshClipper__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA5E8, List_1_Pathfinding_NavmeshClipper__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA5F0, List_1_Pathfinding_NavmeshClipper__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA600, List_1_Pathfinding_NavmeshClipper__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA610, List_1_Pathfinding_NavmeshClipper__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA6D0, Memory_Swap_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA738, Memory_Swap_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA7F8, List_1_Coffee_UIEffects_UISyncEffect__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA818, List_1_Coffee_UIEffects_UISyncEffect__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA828, List_1_T_Enumerator_Coffee_UIEffects_UIShadow__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA830, Component_GetComponent_31__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA838, List_1_T_Enumerator_Coffee_UIEffects_UIShadow__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA848, Component_GetComponents_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA878, List_1_Coffee_UIEffects_UIShadow___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA8A0, List_1_Coffee_UIEffects_UIShadow__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA8B0, List_1_T_Enumerator_Coffee_UIEffects_UIShadow__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA8D0, List_1_Coffee_UIEffects_UIShadow__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBA9A8, Resources_Load_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBAA80, Dictionary_2_Pathfinding_GraphNode_System_Int32__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBAA88, Dictionary_2_Pathfinding_GraphNode_System_Int32__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBAA90, Stack_1_Pathfinding_GraphNode__1_Push__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBAA98, HashSet_1_Pathfinding_GraphNode__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBAAE0, Dictionary_2_UnityEngine_Hash128_Coffee_UIEffects_MaterialCache_MaterialEntry__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBAAF0, Dictionary_2_UnityEngine_Hash128_Coffee_UIEffects_MaterialCache_MaterialEntry__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBAB10, Dictionary_2_UnityEngine_Hash128_Coffee_UIEffects_MaterialCache_MaterialEntry__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBAB28, Dictionary_2_System_Type_Coffee_UIEffects_GraphicConnector___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBAB40, List_1_Coffee_UIEffects_GraphicConnector___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBAB58, Dictionary_2_Pathfinding_GraphNode_System_Int32__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBAB60, Dictionary_2_Pathfinding_GraphNode_System_Int32___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBAB88, Dictionary_2_Pathfinding_GraphNode_System_Int32__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBAB90, Stack_1_Pathfinding_GraphNode__1_get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBAB98, Stack_1_Pathfinding_GraphNode__1_Pop__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBABB0, Dictionary_2_UnityEngine_Hash128_Coffee_UIEffects_MaterialCache_MaterialEntry___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBABC0, StackPool_1_Pathfinding_GraphNode__Claim__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBABD8, StackPool_1_Pathfinding_GraphNode__Release__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBABE8, List_1_Pathfinding_GraphNode__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBABF0, List_1_Coffee_UIEffects_GraphicConnector__Sort__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBABF8, HashSet_1_Pathfinding_GraphNode___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBAC00, List_1_Coffee_UIEffects_GraphicConnector__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBAC18, List_1_T_Enumerator_Coffee_UIEffects_GraphicConnector__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBAC20, List_1_System_Action__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBAC78, Dictionary_2_System_Type_Coffee_UIEffects_GraphicConnector__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBAC90, List_1_T_Enumerator_Coffee_UIEffects_GraphicConnector__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBAC98, Dictionary_2_System_Type_Coffee_UIEffects_GraphicConnector__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBACA8, List_1_Coffee_UIEffects_GraphicConnector__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBACB8, List_1_T_Enumerator_Coffee_UIEffects_GraphicConnector__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBAD10, Dictionary_2_System_String_Pathfinding_AstarProfiler_ProfilePoint___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBAD48, KeyValuePair_2_System_String_Pathfinding_AstarProfiler_ProfilePoint__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBAD50, List_1_System_Action__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBAD58, KeyValuePair_2_System_String_Pathfinding_AstarProfiler_ProfilePoint__get_Key__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBAD80, Dictionary_2_System_String_Pathfinding_AstarProfiler_ProfilePoint__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBAD88, Dictionary_2_TKey_TValue_Enumerator_System_String_Pathfinding_AstarProfiler_ProfilePoint__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBAD90, Dictionary_2_TKey_TValue_Enumerator_System_String_Pathfinding_AstarProfiler_ProfilePoint__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBADA0, List_1_Coffee_UIEffects_UISyncEffect___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBADA8, Dictionary_2_TKey_TValue_Enumerator_System_String_Pathfinding_AstarProfiler_ProfilePoint__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBADE0, List_1_T_Enumerator_Coffee_UIEffects_UISyncEffect__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBADF8, List_1_Coffee_UIEffects_UISyncEffect__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBAE08, List_1_T_Enumerator_Coffee_UIEffects_UISyncEffect__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBAE18, Dictionary_2_System_String_Pathfinding_AstarProfiler_ProfilePoint__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBAE38, Dictionary_2_System_String_Pathfinding_AstarProfiler_ProfilePoint__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBAE40, Dictionary_2_System_String_Pathfinding_AstarProfiler_ProfilePoint__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBAE48, Dictionary_2_System_String_Pathfinding_AstarProfiler_ProfilePoint__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBAE50, List_1_T_Enumerator_Coffee_UIEffects_UISyncEffect__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBAE68, Dictionary_2_System_String_Pathfinding_AstarProfiler_ProfilePoint__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBAEC0, Enumerable_Select_46__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBAEC8, List_1_Pathfinding_SingleNodeBlocker__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBAED0, ListPool_1_Pathfinding_SingleNodeBlocker__Release__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBAED8, List_1_Pathfinding_SingleNodeBlocker__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBAEE0, Dictionary_2_Pathfinding_GraphNode_List_1_Pathfinding_SingleNodeBlocker__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBAEF0, Dictionary_2_Pathfinding_GraphNode_List_1_Pathfinding_SingleNodeBlocker__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBAF18, ListPool_1_Pathfinding_SingleNodeBlocker__Claim__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB048, Component_GetComponentsInChildren_15__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB070, Component_GetComponentInChildren_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB0F8, Component_GetComponent_32__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB110, Component_GetComponent_33__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB140, Queue_1_System_Action__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB188, Queue_1_System_Action___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB1A0, GameObject_AddComponent_38__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB1A8, MiscTools_Swap_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB1B0, Queue_1_System_Action__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB1B8, Queue_1_System_Action__Dequeue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB1E8, Queue_1_System_Action__Enqueue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB218, Component_GetComponent_34__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB270, Component_GetComponentInParent_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB2A8, Component_GetComponentInParent_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB2D8, List_1_DynamicBone__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB2E0, List_1_DynamicBone__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB2E8, List_1_DynamicBone_ParticleTree___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB300, List_1_DynamicBone__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB310, List_1_DynamicBone_Particle___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB320, List_1_DynamicBone___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB350, Stack_1_List_1_System_String___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB368, List_1_DynamicBone__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB3A0, List_1_DynamicBone_Particle__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB3C0, List_1_DynamicBone_Particle__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB3C8, Enumerable_ToDictionary_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB3D0, List_1_DynamicBoneColliderBase__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB3D8, Dictionary_2_System_String_System_Reflection_FieldInfo__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB3E0, List_1_DynamicBoneColliderBase__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB3E8, Enumerable_Where_16__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB3F0, List_1_DynamicBone_ParticleTree__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB3F8, Enumerable_ToDictionary_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB400, Dictionary_2_System_String_System_Reflection_PropertyInfo__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB408, Dictionary_2_System_Type_Dictionary_2_System_String_System_Reflection_PropertyInfo__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB410, Dictionary_2_System_Type_Dictionary_2_System_String_System_Reflection_PropertyInfo__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB418, Dictionary_2_System_Type_Dictionary_2_System_String_System_Reflection_FieldInfo__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB428, Dictionary_2_System_Type_Dictionary_2_System_String_System_Reflection_FieldInfo__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB438, Dictionary_2_System_Type_Dictionary_2_System_String_System_Reflection_FieldInfo___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB448, Dictionary_2_System_Type_Dictionary_2_System_String_System_Reflection_PropertyInfo___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB468, Stack_1_List_1_System_String__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB470, Stack_1_List_1_System_String__Pop__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB478, List_1_DynamicBone_ParticleTree__Exists__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB480, List_1_DynamicBone_ParticleTree__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB488, List_1_DynamicBone_Particle__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB498, List_1_DynamicBone_ParticleTree__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB4F8, GameObject_GetComponentInChildren_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB528, Dictionary_2_System_String_System_Object___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB548, GameObject_GetComponents_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB560, List_1_DynamicBoneColliderBase__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB568, List_1_DynamicBone_ParticleTree__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB570, Stack_1_List_1_System_String__Push__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB578, List_1_DynamicBoneColliderBase___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB630, UnityTools_Instantiate_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB6D0, List_1_UnityEngine_Component__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB6E0, UnityTools_IsNullOrDestroyed_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB6F8, List_1_UnityEngine_Component__AddRange__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB890, List_1_List_1_Pathfinding_ClipperLib_IntPoint__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB8A8, List_1_List_1_Pathfinding_ClipperLib_IntPoint__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB8C0, Stack_1_Pathfinding_Poly2Tri_Polygon__Push__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB8D8, List_1_Pathfinding_Util_TileHandler_Cut__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB8E8, ListPool_1_TileHandler_Cut__Claim__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB8F8, List_1_List_1_UnityEngine_Vector3__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB908, ReflectionTools_GetAttribute_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB958, Stack_1_Pathfinding_Poly2Tri_Polygon__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB970, StackPool_1_Pathfinding_Poly2Tri_Polygon__Release__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB978, StackPool_1_Pathfinding_Poly2Tri_Polygon__Claim__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB988, Stack_1_Pathfinding_Poly2Tri_Polygon__Pop__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB9C0, List_1_Pathfinding_NavmeshCut__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB9C8, List_1_Pathfinding_NavmeshAdd__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB9D8, List_1_Pathfinding_ClipperLib_PolyNode__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBB9E8, List_1_Pathfinding_Util_TileHandler_Cut__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBBA00, List_1_Pathfinding_NavmeshAdd__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBBA10, List_1_Pathfinding_Util_TileHandler_Cut__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBBA18, List_1_Pathfinding_NavmeshCut__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBBA28, List_1_Pathfinding_Poly2Tri_PolygonPoint__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBBA48, List_1_Pathfinding_ClipperLib_PolyNode__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBBA88, List_1_Pathfinding_Poly2Tri_PolygonPoint__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBBAA0, ListPool_1_Pathfinding_Poly2Tri_PolygonPoint__Release__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBBAD0, ListPool_1_Pathfinding_NavmeshCut__Release__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBBAE0, ListPool_1_TileHandler_Cut__Release__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBBAF0, ListPool_1_System_Collections_Generic_List_1__1_Release__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBBAF8, ListPool_1_System_Collections_Generic_List_1__1_Claim__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBBB00, ListPool_1_Pathfinding_NavmeshCut__Claim__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBBB28, GridLookup_1_Pathfinding_NavmeshClipper__QueryRect__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBBB30, ListPool_1_Pathfinding_Poly2Tri_PolygonPoint__Claim__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBBB48, Dictionary_2_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBBB50, Dictionary_2_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBBB58, GridLookup_1_Pathfinding_NavmeshClipper__QueryRect_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBBB68, Dictionary_2_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBBB70, Dictionary_2_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBBC20, GridLookup_1_Pathfinding_NavmeshClipper___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBBCC8, Object_1_FindObjectsOfType_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBBD48, GameObject_AddComponent_39__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBBD60, GameObject_GetComponent_30__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBBD98, Dictionary_2_System_Type_System_Action_1__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBBDA0, Dictionary_2_System_Type_System_Action_1__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBBE50, Dictionary_2_System_Type_System_Action_1__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBBE58, Dictionary_2_System_Type_System_Action_1___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBBF20, Dictionary_2_Pathfinding_NavGraph_System_Int32__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBBF30, List_1_Pathfinding_NavGraph___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBBF40, Dictionary_2_Pathfinding_NavGraph_System_Int32__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBBF48, Dictionary_2_Pathfinding_NavGraph_System_Int32___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBC118, List_1_Pathfinding_Recast_RecastMeshGatherer_CapsuleCache__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBC128, List_1_Pathfinding_Recast_RecastMeshGatherer_CapsuleCache__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBC130, List_1_Pathfinding_Recast_RecastMeshGatherer_CapsuleCache__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBC150, GameObject_GetComponent_31__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBC178, ListPool_1_Pathfinding_RecastMeshObj__Release__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBC188, List_1_Pathfinding_Recast_RecastMeshGatherer_CapsuleCache__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBC190, ListPool_1_Pathfinding_RecastMeshObj__Claim__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBC1A0, Object_1_FindObjectsOfType_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBC1C0, List_1_UnityEngine_MeshFilter__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBC1C8, List_1_UnityEngine_MeshFilter__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBC1D0, Dictionary_2_UnityEngine_Mesh_UnityEngine_Vector3__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBC1D8, Dictionary_2_UnityEngine_Mesh_System_Int32__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBC1E0, Dictionary_2_UnityEngine_Mesh_System_Int32__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBC1E8, Dictionary_2_UnityEngine_Mesh_UnityEngine_Vector3__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBC1F0, Dictionary_2_UnityEngine_Mesh_UnityEngine_Vector3__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBC1F8, Dictionary_2_UnityEngine_Mesh_UnityEngine_Vector3___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBC200, Dictionary_2_UnityEngine_Mesh_System_Int32___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBC208, List_1_UnityEngine_MeshFilter___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBC210, List_1_UnityEngine_MeshFilter__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBC228, Component_GetComponent_35__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBC238, List_1_Pathfinding_Recast_RecastMeshGatherer_CapsuleCache___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBC250, ObjectPoolSimple_1_System_Collections_Generic_Dictionary_2__1_Release__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBC258, ObjectPoolSimple_1_System_Collections_Generic_Dictionary_2__1_Claim__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBC460, GameObject_GetComponent_32__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBC488, List_1_LTDescr___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBC490, List_1_LTDescr__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBC4A0, List_1_LTDescr__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBC5D0, List_1_Pathfinding_SingleNodeBlocker___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBC5F8, List_1_Pathfinding_RVO_Sampled_Agent__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBC658, List_1_UnityEngine_Vector3__1_get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBC660, List_1_UnityEngine_Vector3__1_Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBC668, List_1_UnityEngine_Vector3__1_get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBC6A0, List_1_Pathfinding_RVO_ObstacleVertex__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBC6A8, List_1_Pathfinding_RVO_ObstacleVertex__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBC6B8, List_1_Pathfinding_RVO_ObstacleVertex__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBC710, List_1_Pathfinding_RVO_ObstacleVertex__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBC768, List_1_Pathfinding_RVO_ObstacleVertex__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBC790, List_1_Pathfinding_RVO_Sampled_Agent__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBC7B0, List_1_Pathfinding_RVO_Sampled_Agent__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBC7C8, List_1_Pathfinding_RVO_Sampled_Agent__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBC7D8, List_1_Pathfinding_RVO_Sampled_Agent__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBC7E0, List_1_Pathfinding_RVO_Sampled_Agent__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBC808, List_1_Pathfinding_RVO_ObstacleVertex___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBC810, List_1_Pathfinding_RVO_Sampled_Agent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBC828, List_1_UnityEngine_Mesh___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBC850, List_1_UnityEngine_Mesh__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBC888, List_1_UnityEngine_Mesh__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBC898, List_1_UnityEngine_Mesh__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBC8B0, List_1_UnityEngine_Mesh__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBC8B8, Stack_1_UnityEngine_Mesh___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBC920, Stack_1_UnityEngine_Mesh__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBC930, Stack_1_UnityEngine_Mesh__Push__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBC938, Stack_1_UnityEngine_Mesh__Pop__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBC940, ObjectPool_1_GraphGizmoHelper__Claim__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBC948, ObjectPool_1_GraphGizmoHelper__Release__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBC950, ObjectPool_1_RetainedGizmos_Builder__Release__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBC9E8, List_1_UnityEngine_Texture2D___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBC9F0, List_1_UnityEngine_TextAsset__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBCA08, List_1_UnityEngine_Terrain___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBCA78, GameObject_AddComponent_40__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBCAB8, List_1_UnityEngine_TextAsset__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBCAC8, List_1_UnityEngine_TextAsset__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBCB18, List_1_UnityEngine_Texture2D__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBCB28, List_1_UnityEngine_LightmapData__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBCB40, List_1_UnityEngine_LightmapData__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBCB48, GameObject_GetComponent_33__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBCB50, List_1_UnityEngine_Renderer__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBCB60, List_1_UnityEngine_Renderer__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBCB70, List_1_UnityEngine_Terrain__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBCB78, List_1_UnityEngine_Terrain__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBCB80, List_1_UnityEngine_LightmapData__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBCB88, List_1_UnityEngine_Texture2D__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBCBA0, List_1_UnityEngine_LightmapData___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBCBA8, List_1_UnityEngine_LightmapData__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBCBB0, List_1_UnityEngine_Light__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBCBC8, GameObject_GetComponent_34__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBCBD8, List_1_UnityEngine_LightmapData__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBCBE0, UnityTools_IsObjectInScene_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBCC18, UnityTools_GetComponentInSelfOrChildren_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBCC30, UnityTools_Instantiate_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBCC60, List_1_System_String__RemoveRange__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBCD88, PlayerController_hZwtLBTeYoOUxeVgSWkTGPmGXfDl_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBCE10, PlayerController_CompoundElement_FKqoMXwksyYwglCiMZjznCnUOvvD_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBCE30, PlayerController_CompoundElement_FKqoMXwksyYwglCiMZjznCnUOvvD_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBCE60, List_1_Rewired_PlayerController_Button__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBCE68, List_1_Rewired_PlayerController_Element__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBCE70, TempListPool_GetTList_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBCE78, TempListPool_TList_1_Rewired_PlayerController_Element__get_list__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBCE88, PlayerController_CompoundElement_FKqoMXwksyYwglCiMZjznCnUOvvD_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBCEB0, AsyncOperationHandle_1_UnityEngine_AddressableAssets_ResourceLocators_IResourceLocator__add_Completed__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBCED8, ResourceManager_1_CreateChainOperation_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBCEE8, ResourceManager_1_CreateOperation_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBCEF0, ResourceManager_1_CreateGroupOperation_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBCF00, ResourceManager_1_StartOperation_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBCF08, AList_1_Rewired_PlayerController_Axis__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBCF28, List_1_Rewired_PlayerController_Axis__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBCF38, AList_1_Rewired_PlayerController_Axis__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBCF40, AList_1_Rewired_PlayerController_Button__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBCF48, AList_1_Rewired_PlayerController_Element__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBCF50, AddressablesImpl_Release_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBCF58, AsyncOperationBase_1_UnityEngine_AddressableAssets_ResourceLocators_IResourceLocator__set_Result__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBCF60, AsyncOperationBase_1_UnityEngine_AddressableAssets_ResourceLocators_IResourceLocator__Complete__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBCF68, AsyncOperationHandle_1_UnityEngine_AddressableAssets_ResourceLocators_IResourceLocator__get_Result__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBCF78, AsyncOperationHandle_1_UnityEngine_AddressableAssets_ResourceLocators_IResourceLocator__get_OperationException__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBCFC8, List_1_T_Enumerator_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBCFD0, List_1_T_Enumerator_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBCFE0, List_1_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBCFF8, ObjectInitializationData_CreateInstance_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD000, ObjectInitializationData_CreateInstance_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD008, AList_1_Rewired_PlayerController_Button__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD018, ResourceManager_1_CreateCompletedOperationWithException_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD020, ProviderOperation_1_UnityEngine_AddressableAssets_ResourceLocators_ContentCatalogData__Init__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD030, ObjectInitializationData_CreateInstance_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD048, AddressablesImpl_Release_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD058, AsyncOperationHandle_1_UnityEngine_AddressableAssets_ResourceLocators_ContentCatalogData__get_OperationException__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD068, ReadOnlyCollection_1_Rewired_PlayerController_Button___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD070, AsyncOperationHandle_1_UnityEngine_AddressableAssets_Initialization_ResourceManagerRuntimeData__op_Implicit__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD078, ReadOnlyCollection_1_Rewired_PlayerController_Element___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD098, ReadOnlyCollection_1_Rewired_PlayerController_Axis___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD0C0, ResourceManager_1_ProvideResource_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD0E0, List_1_Rewired_PlayerController_Element___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD0E8, List_1_Rewired_PlayerController_Axis___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD0F8, AsyncOperationHandle_1_UnityEngine_AddressableAssets_Initialization_ResourceManagerRuntimeData__get_PercentComplete__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD100, List_1_Rewired_PlayerController_Button___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD128, List_1_Rewired_PlayerController_Element__AddRange__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD130, AsyncOperationHandle_1_UnityEngine_AddressableAssets_ResourceLocators_IResourceLocator__WaitForCompletion__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD138, AList_1_Rewired_PlayerController_Element__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD140, AsyncOperationBase_1_UnityEngine_AddressableAssets_ResourceLocators_IResourceLocator__get_IsDone__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD148, List_1_T_Enumerator_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD150, AddressablesImpl_Release_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD158, AsyncOperationBase_1_UnityEngine_AddressableAssets_ResourceLocators_IResourceLocator__get_Result__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD160, AsyncOperationBase_1_UnityEngine_AddressableAssets_ResourceLocators_IResourceLocator__Complete_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD170, ResourceManager_1_StartOperation_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD198, AsyncOperationBase_1_UnityEngine_AddressableAssets_ResourceLocators_IResourceLocator__InvokeExecute__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD1E0, JsonUtility_FromJson_14__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD240, AList_1_Rewired_PlayerController_Element___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD250, AList_1_Rewired_PlayerController_Button___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD258, AsyncOperationBase_1_UnityEngine_AddressableAssets_ResourceLocators_IResourceLocator___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD260, AList_1_Rewired_PlayerController_Axis___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD2A0, Dictionary_2_System_String_System_String__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD2C8, Dictionary_2_System_Object_IList_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD2D8, Dictionary_2_System_Object_IList_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD318, Stack_1_System_String___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD330, List_1_Rewired_ControllerTemplateActionElementMap__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD338, List_1_Rewired_ControllerTemplateActionElementMap__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD350, SerializedObject_TryGetDeserializedValue_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD358, SerializedObject_TryGetDeserializedValueByRef_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD360, Stack_1_System_String__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD368, Stack_1_System_String__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD370, Stack_1_System_String__Push__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD378, Stack_1_System_String__Pop__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD380, Dictionary_2_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD390, Dictionary_2_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD398, Dictionary_2_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD3A0, Dictionary_2_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD3B0, Dictionary_2_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD3B8, EmptyObjects_1_Rewired_ControllerTemplateActionElementMap__get_EmptyReadOnlyIListT__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD3C0, Dictionary_2_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD3C8, Dictionary_2_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD3D0, Dictionary_2_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD3D8, Dictionary_2_System_Object_IList_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD3E0, Dictionary_2_TKey_TValue_Enumerator_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD408, List_1_Rewired_Utils_Classes_Data_SerializedObject_XmlInfo_cSbMSwulYDylVSNioizqhnQVHFieA__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD418, SerializedObject_Add_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD420, Dictionary_2_System_Object_IList_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation__get_Keys__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD438, List_1_Rewired_ControllerTemplateActionElementMap__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD448, Dictionary_2_TKey_TValue_Enumerator_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD458, Dictionary_2_TKey_TValue_Enumerator_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD460, List_1_Rewired_ControllerTemplateActionElementMap__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD478, KeyValuePair_2_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD480, KeyValuePair_2_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase__get_Key__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD490, ObjectPool_1_OPozBwLHHQdOXXBAjdfoHzmJkpRuA__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD4A8, ObjectPool_1_OPozBwLHHQdOXXBAjdfoHzmJkpRuA___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD4B8, ObjectPool_1_OPozBwLHHQdOXXBAjdfoHzmJkpRuA__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD510, List_1_Rewired_ControllerTemplateActionElementMap___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD518, ReadOnlyCollection_1_Rewired_ControllerTemplateActionElementMap___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD548, AssetBundle_LoadAllAssetsAsync_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD5E8, JsonUtility_FromJson_15__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD5F8, SerializedObject_Add_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD600, AsyncOperationHandle_1_UnityEngine_AddressableAssets_ResourceLocators_ContentCatalogData__get_LocationName__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD678, SerializedObject_TryGetDeserializedValue_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD698, SerializedObject_TryGetDeserializedValueByRef_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD6A8, SerializedObject_Add_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD6E8, SerializedObject_TryGetDeserializedValueByRef_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD718, AsyncOperationHandle_1_UnityEngine_AddressableAssets_ResourceLocators_ContentCatalogData__WaitForCompletion__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD720, AsyncOperationHandle_1_UnityEngine_AddressableAssets_ResourceLocators_ContentCatalogData__get_IsDone__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD738, Dictionary_2_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_UnityEngine_AddressableAssets_ResourceProviders_ContentCatalogProvider_InternalOp__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD7A0, ProvideHandle_Complete_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD7B0, ResourceManager_1_ProvideResource_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD7D8, AsyncOperationHandle_1_UnityEngine_AddressableAssets_ResourceLocators_ContentCatalogData__op_Implicit__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD7E0, AsyncOperationHandle_1_UnityEngine_AddressableAssets_ResourceLocators_ContentCatalogData__get_Result__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD810, SerializedObject_Add_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD818, AsyncOperationHandle_1_UnityEngine_AddressableAssets_ResourceLocators_ContentCatalogData__add_Completed__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD848, ComponentSingleton_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEventCollectorSingleton__DestroySingleton__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD850, ComponentSingleton_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEventCollectorSingleton__get_Exists__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD870, Dictionary_2_System_Int32_UnityEngine_AddressableAssets_Utility_DiagnosticInfo__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD878, Dictionary_2_System_Int32_UnityEngine_AddressableAssets_Utility_DiagnosticInfo__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD890, Dictionary_2_System_Int32_UnityEngine_AddressableAssets_Utility_DiagnosticInfo__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD8A8, Dictionary_2_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_UnityEngine_AddressableAssets_ResourceProviders_ContentCatalogProvider_InternalOp__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD8B8, Dictionary_2_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_UnityEngine_AddressableAssets_ResourceProviders_ContentCatalogProvider_InternalOp__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD8C8, Dictionary_2_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_UnityEngine_AddressableAssets_ResourceProviders_ContentCatalogProvider_InternalOp__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD8E8, Dictionary_2_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_UnityEngine_AddressableAssets_ResourceProviders_ContentCatalogProvider_InternalOp___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD8F8, Dictionary_2_System_Int32_UnityEngine_AddressableAssets_Utility_DiagnosticInfo___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD920, Dictionary_2_UnityEngine_RuntimePlatform_UnityEngine_AddressableAssets_AddressablesPlatform__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD938, Dictionary_2_UnityEngine_RuntimePlatform_UnityEngine_AddressableAssets_AddressablesPlatform___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBD978, ComponentSingleton_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEventCollectorSingleton__get_Instance__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBDA90, Enumerable_ToArray_18__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBDAA8, Dictionary_2_UnityEngine_RuntimePlatform_UnityEngine_AddressableAssets_AddressablesPlatform__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBDAB0, Dictionary_2_UnityEngine_RuntimePlatform_UnityEngine_AddressableAssets_AddressablesPlatform__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBDAB8, List_1_UnityEngine_AddressableAssets_ResourceLocators_IResourceLocator__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBDAC0, AsyncOperationBase_1_System_Collections_Generic_List_1__1_Complete__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBDAD8, List_1_UnityEngine_AddressableAssets_ResourceLocators_IResourceLocator___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBDAE8, AsyncOperationBase_1_System_Collections_Generic_List_1__1_InvokeExecute__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBDAF8, AsyncOperationBase_1_System_Collections_Generic_List_1__1_get_IsDone__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBDB48, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_IList_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBDB78, AsyncOperationBase_1_System_Collections_Generic_List_1__1__ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBDB90, ResourceManager_1_StartOperation_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBDB98, ResourceManager_1_CreateCompletedOperation_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBDBC0, Dictionary_2_System_Object_IList_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation__get_Values__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBDBD0, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_IList_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBDBE0, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_IList_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBDBF0, Dictionary_2_TKey_TValue_ValueCollection_System_Object_IList_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBDC18, AsyncOperationBase_1_System_Collections_Generic_List_1__Complete__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBDC20, AsyncOperationBase_1_System_Collections_Generic_List_1__get_IsDone__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBDC30, AsyncOperationBase_1_System_Collections_Generic_List_1__InvokeExecute__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBDD08, List_1_UnityEngine_AddressableAssets_AddressablesImpl_ResourceLocatorInfo__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBDD18, List_1_UnityEngine_AddressableAssets_AddressablesImpl_ResourceLocatorInfo___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBDD30, ResourceManager_1_StartOperation_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBDD40, ResourceManager_1_CreateGroupOperation_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBDD90, ListTools_ToArray_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBDDB0, AsyncOperationBase_1_System_Collections_Generic_List_1___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBDDE8, Enumerable_FirstOrDefault_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBDE00, AssetReferenceT_1_UnityEngine_Texture3D___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBDE10, AssetReferenceT_1_UnityEngine_Sprite___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBDE60, AssetReferenceT_1_UnityEngine_Texture___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBDE70, AssetReferenceT_1_UnityEngine_Texture2D___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBDF80, AsyncOperationBase_1_System_Collections_Generic_IList_1__2__ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBDFE8, AssetReferenceT_1_UnityEngine_GameObject___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE028, AsyncOperationHandle_Convert_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE138, AsyncOperationBase_1_System_Collections_Generic_IList_1__2_InvokeExecute__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE148, AsyncOperationBase_1_System_Collections_Generic_IList_1__2_Complete__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE1F0, Enumerable_Where_17__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE200, Enumerable_Select_47__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE210, AddressablesImpl_Release_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE220, AddressablesImpl_AutoReleaseHandleOnTypelessCompletion_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE240, AsyncOperationHandle_1_System_Collections_Generic_List_1__IsValid__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE260, ResourceManager_1_CreateChainOperation_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE280, ResourceManager_1_CreateChainOperation_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE2F0, Enumerable_Any_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE300, AddressablesImpl_AutoReleaseHandleOnTypelessCompletion_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE378, AsyncOperationHandle_1_UnityEngine_GameObject__add_CompletedTypeless__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE388, ResourceManager_1_CreateChainOperation_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE398, ResourceManager_1_CreateCompletedOperationWithException_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE3F0, List_1_T_Enumerator_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE400, List_1_T_Enumerator_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE408, List_1_T_Enumerator_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE410, List_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE478, AsyncOperationHandle_1_System_Collections_Generic_IList_1__3_op_Implicit__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE480, AddressablesImpl_AutoReleaseHandleOnCompletion_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE488, ResourceManager_1_CreateChainOperation_12__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE4A8, List_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE4B0, List_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation__AddRange__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE4B8, List_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE4C0, List_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE4D8, ResourceManager_1_CreateCompletedOperationWithException_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE4E0, AddressablesImpl_LoadAssetsAsync_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE4F8, List_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE508, List_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE510, List_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE548, Enumerable_Distinct_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE5C0, ResourceManager_1_CreateChainOperation_13__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE5D8, AddressablesImpl_TrackHandle_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE5E0, ResourceManager_1_StartOperation_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE5F8, ResourceManager_1_CreateChainOperation_14__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE628, List_1_UnityEngine_AddressableAssets_AddressablesImpl_ResourceLocatorInfo__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE640, ResourceManager_1_CreateCompletedOperation_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE658, HashSet_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE660, HashSet_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation__IntersectWith__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE668, HashSet_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE680, AddressablesImpl_AutoReleaseHandleOnCompletion_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE6C8, Array_Empty_45__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE6D8, List_1_UnityEngine_AddressableAssets_AddressablesImpl_ResourceLocatorInfo__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE6E8, List_1_UnityEngine_AddressableAssets_AddressablesImpl_ResourceLocatorInfo__RemoveAll__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE700, Enumerable_Select_48__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE718, HashSet_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation__UnionWith__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE720, HashSet_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE730, HashSet_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE740, List_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation___ctor_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE758, List_1_UnityEngine_AddressableAssets_AddressablesImpl_ResourceLocatorInfo__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE7C8, List_1_UnityEngine_AddressableAssets_AddressablesImpl_ResourceLocatorInfo___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE7E8, AsyncOperationHandle_1_System_Collections_Generic_List_1__1_op_Implicit__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE7F0, AsyncOperationHandle_1_UnityEngine_AddressableAssets_ResourceLocators_IResourceLocator__get_IsDone__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE800, AsyncOperationHandle_1_UnityEngine_AddressableAssets_ResourceLocators_IResourceLocator__op_Implicit__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE818, AsyncOperationHandle_1_System_Collections_Generic_List_1__1_IsValid__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE820, AsyncOperationHandle_1_System_Collections_Generic_List_1__1_get_IsDone__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE828, AsyncOperationHandle_1_UnityEngine_AddressableAssets_ResourceLocators_IResourceLocator__IsValid__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE850, List_1_Outline_ListVector3__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE858, List_1_UnityEngine_Mesh__IndexOf__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE868, List_1_Outline_ListVector3__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE8D8, List_1_Outline_ListVector3___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE908, Enumerable_Where_18__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE910, Enumerable_ToArray_19__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE928, Enumerable_ToList_15__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE948, List_1_UnityEngine_Material__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE950, List_1_Outline_ListVector3__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE958, List_1_Outline_ListVector3__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE960, HashSet_1_UnityEngine_Mesh___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE968, HashSet_1_UnityEngine_Mesh__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE980, Component_GetComponentsInChildren_16__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE988, AddressablesImpl_Release_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE9E8, Dictionary_2_TKey_TValue_Enumerator_System_Type_List_1_System_String__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE9F0, Dictionary_2_TKey_TValue_Enumerator_System_Type_List_1_System_String__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBE9F8, KeyValuePair_2_System_Type_List_1_System_String__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBEA00, KeyValuePair_2_System_Type_List_1_System_String__get_Key__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBEA08, Nullable_1_UnityEngine_AddressableAssets_Addressables_MergeMode__GetValueOrDefault__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBEA20, Nullable_1_UnityEngine_AddressableAssets_Addressables_MergeMode__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBEA28, Dictionary_2_System_Type_List_1_System_String__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBEA30, HashSet_1_System_Type___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBEA38, HashSet_1_System_Type__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBEA60, Dictionary_2_System_Type_List_1_System_String__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBEAB0, Nullable_1_UnityEngine_AddressableAssets_Addressables_MergeMode__get_HasValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBEAC8, Dictionary_2_TKey_TValue_Enumerator_System_Type_List_1_System_String__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBEAD0, Dictionary_2_System_Type_List_1_System_String__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBEAE0, Dictionary_2_System_Type_List_1_System_String___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBEAE8, HashSet_1_T_Enumerator_System_Type__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBEAF0, HashSet_1_T_Enumerator_System_Type__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBEAF8, HashSet_1_System_Type__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBEB00, HashSet_1_T_Enumerator_System_Type__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBEB10, HashSet_1_System_Type__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBEB40, AddressablesImpl_Release_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBEB90, Nullable_1_UnityEngine_AddressableAssets_Addressables_MergeMode___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBEBA0, AsyncOperationHandle_1_System_Collections_Generic_IList_1__1_get_DebugName__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBEBC8, JsonUtility_FromJson_16__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBEC30, AsyncOperationHandle_1_System_Collections_Generic_IList_1__1_add_Completed__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBEC48, AsyncOperationHandle_1_UnityEngine_AddressableAssets_Initialization_ResourceManagerRuntimeData__get_Result__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBEC68, AsyncOperationHandle_1_UnityEngine_AddressableAssets_Initialization_ResourceManagerRuntimeData__IsValid__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBEC78, AsyncOperationHandle_1_UnityEngine_AddressableAssets_Initialization_ResourceManagerRuntimeData__get_IsDone__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBEC88, AsyncOperationHandle_1_UnityEngine_AddressableAssets_Initialization_ResourceManagerRuntimeData__WaitForCompletion__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBEE30, List_1_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF0D0, Dictionary_2_System_UInt32_System_String___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF110, Dictionary_2_System_UInt32_System_String__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF118, Dictionary_2_System_UInt32_System_String__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF1D0, Dictionary_2_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF1E0, Dictionary_2_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF1E8, Dictionary_2_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF258, List_1_System_Reflection_FieldInfo___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF260, List_1_System_Reflection_FieldInfo__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF2D8, ObjectPool_Return_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF300, ObjectPool_Get_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF310, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF318, Dictionary_2_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32__get_Keys__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF320, Dictionary_2_TKey_TValue_KeyCollection_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF328, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF330, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF338, Dictionary_2_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF358, Dictionary_2_System_String_System_Int32___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF360, Dictionary_2_System_String_System_Int32__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF368, Dictionary_2_System_String_System_Int32__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF370, Dictionary_2_System_String_System_Int32__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF380, List_1_BehaviorDesigner_Runtime_SharedVariable___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF390, Dictionary_2_System_String_System_Int32__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF398, List_1_BehaviorDesigner_Runtime_SharedVariable__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF3A0, Dictionary_2_System_String_System_Int32__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF3D0, ObjectPool_Return_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF3E8, List_1_List_1_System_Int32__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF3F0, List_1_Stack_1_System_Int32__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF3F8, ObjectPool_Return_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF400, List_1_BehaviorDesigner_Runtime_Tasks_Task__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF408, Dictionary_2_System_Int32_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree_ConditionalReevaluate__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF410, List_1_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree_ConditionalReevaluate__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF418, List_1_BehaviorDesigner_Runtime_Tasks_TaskStatus__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF438, List_1_Stack_1_System_Int32___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF440, List_1_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree_ConditionalReevaluate___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF448, List_1_BehaviorDesigner_Runtime_Tasks_TaskStatus___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF450, List_1_List_1_System_Int32___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF460, Dictionary_2_System_Int32_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree_ConditionalReevaluate___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF468, Dictionary_2_System_Object_BehaviorDesigner_Runtime_BehaviorManager_ThirdPartyTask__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF488, ObjectPool_Get_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF4A0, Dictionary_2_BehaviorDesigner_Runtime_BehaviorManager_ThirdPartyTask_System_Object__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF4A8, Dictionary_2_System_Object_BehaviorDesigner_Runtime_BehaviorManager_ThirdPartyTask__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF4B0, Dictionary_2_System_Object_BehaviorDesigner_Runtime_BehaviorManager_ThirdPartyTask__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF4B8, ObjectPool_Get_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF4C8, ObjectPool_Return_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF4D0, ObjectPool_Return_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF4D8, List_1_BehaviorDesigner_Runtime_Tasks_TaskStatus__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF4E8, List_1_Stack_1_System_Int32__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF4F0, Dictionary_2_BehaviorDesigner_Runtime_BehaviorManager_ThirdPartyTask_System_Object__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF4F8, Dictionary_2_System_Object_BehaviorDesigner_Runtime_BehaviorManager_ThirdPartyTask__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF500, Dictionary_2_System_Object_BehaviorDesigner_Runtime_BehaviorManager_ThirdPartyTask__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF508, Dictionary_2_BehaviorDesigner_Runtime_BehaviorManager_ThirdPartyTask_System_Object__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF528, ObjectPool_Get_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF530, Dictionary_2_System_Int32_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree_ConditionalReevaluate__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF538, Dictionary_2_System_Int32_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree_ConditionalReevaluate__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF548, List_1_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree_ConditionalReevaluate__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF558, List_1_List_1_System_Int32__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF568, List_1_BehaviorDesigner_Runtime_Tasks_TaskStatus__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF588, ObjectPool_Return_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF598, List_1_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree_ConditionalReevaluate__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF5A0, Dictionary_2_System_Int32_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree_ConditionalReevaluate__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF5A8, List_1_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree_ConditionalReevaluate__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF5B0, List_1_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree_ConditionalReevaluate__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF5B8, List_1_BehaviorDesigner_Runtime_Tasks_TaskStatus__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF5C0, List_1_BehaviorDesigner_Runtime_Tasks_TaskStatus__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF5D0, Dictionary_2_BehaviorDesigner_Runtime_Behavior_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF5D8, ObjectPool_Return_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF5E0, Dictionary_2_BehaviorDesigner_Runtime_Behavior_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF5F8, List_1_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF600, List_1_BehaviorDesigner_Runtime_BehaviorManager_BehaviorThreadLoader__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF608, List_1_BehaviorDesigner_Runtime_BehaviorManager_BehaviorThreadLoader__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF610, List_1_BehaviorDesigner_Runtime_BehaviorManager_BehaviorThreadLoader__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF620, Dictionary_2_BehaviorDesigner_Runtime_Behavior_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF6A0, SharedVariable_1_NamedVariable__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF6A8, ObjectPool_Return_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF6C0, ObjectPool_Get_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF6C8, ObjectPool_Get_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF6D0, ObjectPool_Return_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF6D8, ObjectPool_Get_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF6E0, KeyValuePair_2_System_String_BehaviorDesigner_Runtime_BehaviorManager_TaskAddData_OverrideFieldValue__get_Key__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF6E8, Dictionary_2_TKey_TValue_Enumerator_System_String_BehaviorDesigner_Runtime_BehaviorManager_TaskAddData_OverrideFieldValue__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF6F0, ObjectPool_Get_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF6F8, KeyValuePair_2_System_String_BehaviorDesigner_Runtime_BehaviorManager_TaskAddData_OverrideFieldValue__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF700, Dictionary_2_System_String_BehaviorDesigner_Runtime_BehaviorManager_TaskAddData_OverrideFieldValue__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF708, Dictionary_2_System_String_BehaviorDesigner_Runtime_BehaviorManager_TaskAddData_OverrideFieldValue__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF710, Dictionary_2_TKey_TValue_Enumerator_System_String_BehaviorDesigner_Runtime_BehaviorManager_TaskAddData_OverrideFieldValue__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF718, Dictionary_2_System_String_BehaviorDesigner_Runtime_BehaviorManager_TaskAddData_OverrideFieldValue__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF740, Dictionary_2_System_String_BehaviorDesigner_Runtime_BehaviorManager_TaskAddData_OverrideFieldValue__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF748, Dictionary_2_System_String_BehaviorDesigner_Runtime_BehaviorManager_TaskAddData_OverrideFieldValue__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF760, ObjectPool_Get_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF770, List_1_Stack_1_System_Int32__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF778, Dictionary_2_TKey_TValue_Enumerator_System_String_BehaviorDesigner_Runtime_BehaviorManager_TaskAddData_OverrideFieldValue__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF788, List_1_BehaviorDesigner_Runtime_Tasks_TaskStatus__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF790, Dictionary_2_BehaviorDesigner_Runtime_Behavior_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF7A8, GameObject_GetComponent_35__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF7B8, GameObject_GetComponent_36__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF7D8, ObjectPool_Return_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF7F0, ObjectPool_Get_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF7F8, ObjectPool_Get_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF820, List_1_BehaviorDesigner_Runtime_BehaviorManager_BehaviorThreadLoader__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF830, List_1_BehaviorDesigner_Runtime_BehaviorManager_BehaviorThreadLoader___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF838, List_1_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF850, Component_GetComponentInChildren_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF860, Dictionary_2_BehaviorDesigner_Runtime_Behavior_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF868, Dictionary_2_BehaviorDesigner_Runtime_Behavior_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF8C8, GameObject_GetComponent_37__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF8D8, List_1_T_Enumerator_ShatterableGlass_Figure__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF8E0, List_1_T_Enumerator_ShatterableGlass_Figure__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF8F0, List_1_ShatterableGlass_Figure__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF908, Component_GetComponent_36__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF930, List_1_ShatterableGlass_Figure___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF938, List_1_ShatterableGlass_Figure__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF960, List_1_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF988, Dictionary_2_System_Object_BehaviorDesigner_Runtime_BehaviorManager_ThirdPartyTask___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF990, Dictionary_2_BehaviorDesigner_Runtime_BehaviorManager_ThirdPartyTask_System_Object___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF9B0, Array_IndexOf_251__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBF9B8, Dictionary_2_BehaviorDesigner_Runtime_Behavior_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFA08, List_1_Stack_1_System_Int32__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFA10, List_1_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFA20, List_1_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFA30, List_1_Stack_1_System_Int32__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFA48, Object_1_FindObjectsOfType_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFA60, GameObject_AddComponent_41__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFA70, KeyValuePair_2_System_String_System_Object__get_Key__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFA78, Dictionary_2_TKey_TValue_Enumerator_System_String_System_Object__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFA80, KeyValuePair_2_System_String_System_Object__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFA90, Dictionary_2_System_String_System_Object__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFA98, Dictionary_2_TKey_TValue_Enumerator_System_String_System_Object__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFAA0, List_1_T_Enumerator_ShatterableGlass_Figure__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFAA8, Dictionary_2_BehaviorDesigner_Runtime_Tasks_Task_Dictionary_2_System_String_System_Object__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFAB8, KeyValuePair_2_BehaviorDesigner_Runtime_SharedVariable_System_Object__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFAC0, KeyValuePair_2_BehaviorDesigner_Runtime_SharedVariable_System_Object__get_Key__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFAD0, Dictionary_2_TKey_TValue_Enumerator_System_String_System_Object__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFAD8, Dictionary_2_BehaviorDesigner_Runtime_SharedVariable_System_Object__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFAE0, Dictionary_2_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_SharedVariable_System_Object__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFAE8, Dictionary_2_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_SharedVariable_System_Object__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFAF0, Dictionary_2_BehaviorDesigner_Runtime_Tasks_Task_Dictionary_2_System_String_System_Object__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFAF8, Dictionary_2_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_SharedVariable_System_Object__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFB00, Dictionary_2_BehaviorDesigner_Runtime_SharedVariable_System_Object__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFB10, Dictionary_2_BehaviorDesigner_Runtime_SharedVariable_System_Object___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFB28, Dictionary_2_BehaviorDesigner_Runtime_Tasks_Task_Dictionary_2_System_String_System_Object___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFB50, Dictionary_2_System_Type_Dictionary_2_System_String_System_Delegate___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFB60, Dictionary_2_System_String_System_Delegate__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFB70, Dictionary_2_System_String_System_Delegate__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFB78, Dictionary_2_System_String_System_Delegate___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFB80, Dictionary_2_System_Type_Dictionary_2_System_String_System_Delegate__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFB88, Dictionary_2_System_Type_Dictionary_2_System_String_System_Delegate__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFB90, Dictionary_2_System_String_System_Delegate__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFBA0, HashSet_1_BehaviorDesigner_Runtime_Tasks_Task__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFBA8, HashSet_1_BehaviorDesigner_Runtime_Tasks_Task___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFBB8, Dictionary_2_System_String_List_1_BehaviorDesigner_Runtime_TaskCoroutine__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFBC0, List_1_BehaviorDesigner_Runtime_TaskCoroutine__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFBC8, Dictionary_2_TKey_TValue_Enumerator_System_String_List_1_BehaviorDesigner_Runtime_TaskCoroutine__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFBD0, Dictionary_2_TKey_TValue_Enumerator_System_String_List_1_BehaviorDesigner_Runtime_TaskCoroutine__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFBD8, KeyValuePair_2_System_String_List_1_BehaviorDesigner_Runtime_TaskCoroutine__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFBE0, Dictionary_2_TKey_TValue_Enumerator_System_String_List_1_BehaviorDesigner_Runtime_TaskCoroutine__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFBE8, Dictionary_2_System_String_List_1_BehaviorDesigner_Runtime_TaskCoroutine__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFBF0, List_1_BehaviorDesigner_Runtime_TaskCoroutine__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFBF8, List_1_BehaviorDesigner_Runtime_TaskCoroutine__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFC18, List_1_BehaviorDesigner_Runtime_TaskCoroutine__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFC30, List_1_BehaviorDesigner_Runtime_TaskCoroutine___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFC38, Dictionary_2_System_String_List_1_BehaviorDesigner_Runtime_TaskCoroutine___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFC40, Dictionary_2_System_String_List_1_BehaviorDesigner_Runtime_TaskCoroutine__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFC48, Dictionary_2_System_String_List_1_BehaviorDesigner_Runtime_TaskCoroutine__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFC50, Dictionary_2_System_String_List_1_BehaviorDesigner_Runtime_TaskCoroutine__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFC58, Dictionary_2_System_String_List_1_BehaviorDesigner_Runtime_TaskCoroutine__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFC60, List_1_BehaviorDesigner_Runtime_Tasks_Task__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFC70, List_1_BehaviorDesigner_Runtime_Tasks_Task___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFC98, List_1_VolumetricLights_VolumetricLightsTranslucency__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFCA0, List_1_VolumetricLights_VolumetricLightsTranslucency__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFCB0, List_1_VolumetricLights_VolumetricLightsTranslucency__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFCB8, List_1_VolumetricLights_VolumetricLightsTranslucency___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFCC0, List_1_VolumetricLights_VolumetricLight__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFDD0, Component_GetComponent_37__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFE00, Object_1_FindObjectsOfType_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFE40, List_1_VolumetricLights_VolumetricLight___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFF78, List_1_VolumetricLights_VolumetricLightsTranslucency__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFF88, List_1_VolumetricLights_VolumetricLightsTranslucency__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CBFFF8, List_1_VolumetricLights_VolumetricLight__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0018, List_1_T_Enumerator_VolumetricLights_VolumetricLight__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0028, List_1_T_Enumerator_VolumetricLights_VolumetricLight__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC00E0, List_1_VolumetricLights_VolumetricLight__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC00E8, List_1_VolumetricLights_VolumetricLight__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC00F8, List_1_VolumetricLights_VolumetricLight__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0118, List_1_T_Enumerator_VolumetricLights_VolumetricLight__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC03D8, List_1_Rewired_Utils_Classes_Data_SerializedObject_HgMZjbfCwvsfHSWFxndJjdoFInHZ_kRxMFLDibTKOsYJdDBbSabXKgmsVA__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC03E0, List_1_Rewired_Utils_Classes_Data_SerializedObject_HgMZjbfCwvsfHSWFxndJjdoFInHZ_kRxMFLDibTKOsYJdDBbSabXKgmsVA___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC03E8, List_1_Rewired_Utils_Classes_Data_SerializedObject_HgMZjbfCwvsfHSWFxndJjdoFInHZ_kRxMFLDibTKOsYJdDBbSabXKgmsVA__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC03F8, Dictionary_2_System_String_System_String__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0428, List_1_Rewired_Utils_Classes_Data_SerializedObject_HgMZjbfCwvsfHSWFxndJjdoFInHZ_kRxMFLDibTKOsYJdDBbSabXKgmsVA__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0430, List_1_T_Enumerator_Rewired_Utils_Classes_Data_SerializedObject_HgMZjbfCwvsfHSWFxndJjdoFInHZ_kRxMFLDibTKOsYJdDBbSabXKgmsVA__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0448, List_1_T_Enumerator_Rewired_Utils_Classes_Data_SerializedObject_HgMZjbfCwvsfHSWFxndJjdoFInHZ_kRxMFLDibTKOsYJdDBbSabXKgmsVA__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0450, List_1_T_Enumerator_Rewired_Utils_Classes_Data_SerializedObject_HgMZjbfCwvsfHSWFxndJjdoFInHZ_kRxMFLDibTKOsYJdDBbSabXKgmsVA__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0470, IndexedDictionary_2_System_String_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0488, List_1_Rewired_Utils_Classes_Data_SerializedObject_HgMZjbfCwvsfHSWFxndJjdoFInHZ_kRxMFLDibTKOsYJdDBbSabXKgmsVA__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC04E8, JsonParser_FromJson_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0530, List_1_Rewired_Utils_Classes_Data_SerializedObject_XmlInfo_cSbMSwulYDylVSNioizqhnQVHFieA___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0550, IndexedDictionary_2_System_String_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__get_ContainsDuplicateKeys__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0570, List_1_Rewired_Utils_Classes_Data_SerializedObject_XmlInfo_cSbMSwulYDylVSNioizqhnQVHFieA__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0578, List_1_Rewired_Utils_Classes_Data_SerializedObject_XmlInfo_cSbMSwulYDylVSNioizqhnQVHFieA__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC05C8, KeyValuePair_2_System_String_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__get_Key__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC05D0, IndexedDictionary_2_System_String_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__GetEntry__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0638, IndexedDictionary_2_System_String_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__set_AllowDuplicateKeys__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0650, IndexedDictionary_2_System_String_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0668, IndexedDictionary_2_System_String_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0678, IndexedDictionary_2_System_String_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0680, IndexedDictionary_2_System_String_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__SetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0688, IndexedDictionary_2_System_String_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC06A0, IndexedDictionary_2_System_String_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC06A8, IndexedDictionary_2_System_String_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__GetKeyAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC07A8, MiscTools_Swap_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC07D8, SharedVariable_1_GenericVariable___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC07F0, SharedVariable_1_NamedVariable___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0800, Expression_1_Lambda_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0808, Expression_1_System_Action_1__Compile__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0830, Array_Empty_46__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0838, Expression_1_Lambda_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0840, Expression_1_System_Func_1__Compile__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC08F0, List_1_BehaviorDesigner_Runtime_VariableSynchronizer_SynchronizedVariable__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0900, List_1_BehaviorDesigner_Runtime_VariableSynchronizer_SynchronizedVariable__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0908, List_1_BehaviorDesigner_Runtime_VariableSynchronizer_SynchronizedVariable__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0928, List_1_BehaviorDesigner_Runtime_VariableSynchronizer_SynchronizedVariable___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0940, Dictionary_2_System_Reflection_FieldInfo_Dictionary_2_System_Type_System_Boolean___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0948, Dictionary_2_System_String_System_Type___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0958, Dictionary_2_System_Type_System_Reflection_FieldInfo___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0968, Dictionary_2_System_Type_System_Boolean___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0970, Dictionary_2_System_Reflection_FieldInfo_Dictionary_2_System_Type_System_Boolean__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0978, Dictionary_2_System_Type_System_Boolean__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0980, Dictionary_2_System_Type_System_Boolean__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0988, Dictionary_2_System_Reflection_FieldInfo_Dictionary_2_System_Type_System_Boolean__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC09B0, List_1_System_Reflection_Assembly___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC09B8, List_1_System_Reflection_Assembly__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC09C0, List_1_System_Reflection_Assembly__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC09C8, List_1_System_Reflection_Assembly__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC09D0, Dictionary_2_System_String_System_Type__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC09D8, Dictionary_2_System_String_System_Type__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC09F0, ObjectPool_Return_12__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC09F8, ObjectPool_Get_12__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0A00, Dictionary_2_System_Type_System_Reflection_FieldInfo__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0A08, Dictionary_2_System_Type_System_Reflection_FieldInfo__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0A10, List_1_System_Reflection_FieldInfo__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0A18, List_1_System_Reflection_FieldInfo__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0A48, List_1_UnityEngine_Object___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0A60, List_1_BehaviorDesigner_Runtime_Tasks_Task__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0A68, List_1_BehaviorDesigner_Runtime_Tasks_Task__Insert__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0A70, Dictionary_2_System_Type_System_Object__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0A78, List_1_System_Reflection_FieldInfo__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0A80, List_1_System_Reflection_FieldInfo__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0A88, List_1_System_Reflection_FieldInfo__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0B10, Dictionary_2_System_String_System_Object__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0B30, Dictionary_2_System_Int32_Dictionary_2_System_String_System_Object___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0B60, Dictionary_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_List_1_System_Int32__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0BB8, Dictionary_2_System_Int32_BehaviorDesigner_Runtime_Tasks_Task__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0BC8, Dictionary_2_System_String_System_Object__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0BE0, Dictionary_2_TKey_TValue_KeyCollection_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_List_1_System_Int32__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0BE8, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_List_1_System_Int32__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0C08, Dictionary_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_List_1_System_Int32__get_Keys__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0C10, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_List_1_System_Int32__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0C20, Dictionary_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_List_1_System_Int32__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0C28, Dictionary_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_List_1_System_Int32___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0C30, Dictionary_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_List_1_System_Int32__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0C38, Dictionary_2_System_Int32_BehaviorDesigner_Runtime_Tasks_Task__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0C40, Dictionary_2_System_Int32_Dictionary_2_System_String_System_Object__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0C48, Dictionary_2_System_Int32_Dictionary_2_System_String_System_Object__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0C50, Dictionary_2_System_Int32_BehaviorDesigner_Runtime_Tasks_Task___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0C58, Dictionary_2_System_Int32_BehaviorDesigner_Runtime_Tasks_Task__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0C60, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_List_1_System_Int32__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0C80, Dictionary_2_UnityEngine_InputSystem_InputControl_System_Single___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0C88, InputControlList_1_InputControl__SwapElements__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0CA0, InputControlList_1_InputControl__set_Capacity__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0CA8, InputControlList_1_InputControl__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0CE8, InputControlList_1_InputControl__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0CF0, Dictionary_2_UnityEngine_InputSystem_InputControl_System_Single__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0CF8, Dictionary_2_UnityEngine_InputSystem_InputControl_System_Single__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0D00, Dictionary_2_UnityEngine_InputSystem_InputControl_System_Single__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0D08, Dictionary_2_UnityEngine_InputSystem_InputControl_System_Single__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0D10, Dictionary_2_UnityEngine_InputSystem_InputControl_System_Single__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0D38, ArrayHelpers_AppendWithCapacity_20__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0D40, InputControlList_1_InputControl__IndexOf__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0D80, InputControlList_1_InputControl__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0DA0, InputControlList_1_InputControl__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0E10, TransitionEventBase_1_TransitionEndEvent__GetPooled__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0E20, TransitionEventBase_1_TransitionCancelEvent__GetPooled__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0E28, TransitionEventBase_1_TransitionRunEvent__GetPooled__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0E30, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_UnityEngine_UIElements_StylePropertyAnimationSystem_TransitionState__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0E48, TransitionEventBase_1_TransitionStartEvent__GetPooled__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0E50, Queue_1_UnityEngine_UIElements_EventBase__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0E58, Queue_1_UnityEngine_UIElements_EventBase__Dequeue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0E60, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_UnityEngine_UIElements_StylePropertyAnimationSystem_TransitionState__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0E68, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_UnityEngine_UIElements_StylePropertyAnimationSystem_TransitionState__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0E70, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_Queue_1_UnityEngine_UIElements_EventBase__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0E80, Queue_1_UnityEngine_UIElements_EventBase__Enqueue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC0E88, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_Queue_1_UnityEngine_UIElements_EventBase__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC1040, StringHelpers_Join_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC1138, List_1_List_1_UnityEngine_InputSystem_InputBinding__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC1140, List_1_UnityEngine_InputSystem_InputActionMap__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC11C0, Enumerable_Count_18__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC11D0, List_1_List_1_UnityEngine_InputSystem_InputAction___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC11E0, List_1_UnityEngine_InputSystem_InputAction___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC11E8, List_1_List_1_UnityEngine_InputSystem_InputBinding___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC11F8, List_1_UnityEngine_InputSystem_InputActionMap___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC1200, List_1_List_1_UnityEngine_InputSystem_InputAction__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC1208, List_1_UnityEngine_InputSystem_InputActionMap__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC1218, List_1_List_1_UnityEngine_InputSystem_InputBinding__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC1220, List_1_UnityEngine_InputSystem_InputActionMap__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC1228, List_1_List_1_UnityEngine_InputSystem_InputAction__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC1230, List_1_UnityEngine_InputSystem_InputAction__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC1238, List_1_UnityEngine_InputSystem_InputActionMap__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC1240, List_1_UnityEngine_InputSystem_InputAction__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC1250, ReadOnlyArray_1_UnityEngine_InputSystem_InputDevice__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC1258, ReadOnlyArrayExtensions_HaveEqualReferences_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC12A8, ReadOnlyArray_1_UnityEngine_InputSystem_InputDevice___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC12B0, Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC12B8, ArrayHelpers_Clear_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC12C0, ArrayHelpers_AppendListWithCapacity_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC12C8, ArrayHelpers_IndexOfReference_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC12D0, ArrayHelpers_EraseAtWithCapacity_19__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC12F0, ArrayHelpers_ContainsReference_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC12F8, ArrayHelpers_ContainsReference_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC1308, ArrayHelpers_HaveDuplicateReferences_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC1310, OneOrMore_2_UnityEngine_InputSystem_InputActionMap_ReadOnlyArray_1_UnityEngine_InputSystem_InputActionMap__op_Implicit__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC1318, OneOrMore_2_UnityEngine_InputSystem_InputActionMap_ReadOnlyArray_1_UnityEngine_InputSystem_InputActionMap__op_Implicit_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC1328, OneOrMore_2_UnityEngine_InputSystem_InputActionMap_ReadOnlyArray_1_UnityEngine_InputSystem_InputActionMap__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC1350, ReadOnlyArray_1_UnityEngine_InputSystem_InputAction__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC1368, ReadOnlyArray_1_UnityEngine_InputSystem_InputControl___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC1380, ReadOnlyArray_1_UnityEngine_InputSystem_InputAction__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC1390, ReadOnlyArray_1_UnityEngine_InputSystem_InputAction__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC13B0, ReadOnlyArray_1_UnityEngine_InputSystem_InputAction___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC13F8, ScriptableObject_CreateInstance_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC1438, ArrayHelpers_LengthSafe_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC1480, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputActionMap__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC1488, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputActionMap__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC14C8, ReadOnlyArray_1_UnityEngine_InputSystem_InputActionMap__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC14D0, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputActionMap__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC14D8, ReadOnlyArray_1_UnityEngine_InputSystem_InputActionMap___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC1508, Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1__get_HasValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC1510, ReadOnlyArrayExtensions_ContainsReference_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC1518, Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC1520, CallbackArray_1_System_Action_1__1_RemoveCallback__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC1548, CallbackArray_1_System_Action_1__1_AddCallback__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC15D0, CustomAttributeExtensions_GetCustomAttribute_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC17F0, Dictionary_2_System_String_System_Boolean___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC1978, List_1_Rewired_ControllerMapEnabler_RuleSet__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC1980, List_1_Rewired_ControllerMapEnabler_RuleSet__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC1A88, List_1_Rewired_ControllerMapLayoutManager_RuleSet__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC1AA0, List_1_Rewired_ControllerMapLayoutManager_RuleSet__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC1DD8, Player_ControllerHelper_MapHelper_GetMaps_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC1DE0, Player_ControllerHelper_MapHelper_GetMaps_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC1DF8, List_1_Rewired_InputAction___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC1E00, List_1_Rewired_InputAction__Sort__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC1E08, Player_ControllerHelper_MapHelper_GetMaps_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC1E10, Player_ControllerHelper_MapHelper_GetMaps_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC1F00, DebugInformation_ThxeOHFEsWrNZaEFBJRKcVsEghgJb_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC1F08, ListTools_Count_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC1F18, DebugInformation_ThxeOHFEsWrNZaEFBJRKcVsEghgJb_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC1F28, DebugInformation_ThxeOHFEsWrNZaEFBJRKcVsEghgJb_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC1F30, DebugInformation_ThxeOHFEsWrNZaEFBJRKcVsEghgJb_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC20B8, Component_GetComponent_38__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC20C0, Dictionary_2_System_Int32_OXcOHDpoGGXVUtAOolfnMbASfEDk_hetUcKmEoUtrYIpdaWCDeGGUhEHn__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC20C8, Dictionary_2_System_Int32_OXcOHDpoGGXVUtAOolfnMbASfEDk_hetUcKmEoUtrYIpdaWCDeGGUhEHn__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC20D0, Dictionary_2_System_Int32_OXcOHDpoGGXVUtAOolfnMbASfEDk_hetUcKmEoUtrYIpdaWCDeGGUhEHn__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC20E0, Dictionary_2_System_Int32_OXcOHDpoGGXVUtAOolfnMbASfEDk_hetUcKmEoUtrYIpdaWCDeGGUhEHn___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2110, Dictionary_2_System_Int32_OXcOHDpoGGXVUtAOolfnMbASfEDk_hetUcKmEoUtrYIpdaWCDeGGUhEHn__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2230, List_1_Photon_Bolt_PropertyCallback__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2238, List_1_Photon_Bolt_PropertyCallback__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2240, List_1_Photon_Bolt_PropertyCallbackSimple__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2248, List_1_Photon_Bolt_PropertyCallbackSimple__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2250, BoltDoubleList_1_Photon_Bolt_Internal_EntityProxy__GetIterator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2258, BoltIterator_1_Photon_Bolt_Internal_EntityProxy__Next__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2260, BoltDoubleList_1_Photon_Bolt_Internal_EntityProxy__get_count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2268, BoltDoubleList_1_Photon_Bolt_NetworkStorage__GetIterator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2270, BoltIterator_1_Photon_Bolt_NetworkStorage__Next__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2278, CustomAttributeExtensions_GetCustomAttribute_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2288, Dictionary_2_System_String_List_1_Photon_Bolt_PropertyCallbackSimple__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC22A8, CustomAttributeExtensions_GetCustomAttribute_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC22B0, List_1_Photon_Bolt_PropertyCallbackSimple__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC22C0, Dictionary_2_System_String_List_1_Photon_Bolt_PropertyCallback__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC22D0, List_1_Photon_Bolt_PropertyCallback__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC22E0, CustomAttributeExtensions_GetCustomAttribute_12__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC22E8, List_1_Photon_Bolt_PropertyCallbackSimple___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC22F0, List_1_Photon_Bolt_PropertyCallbackSimple__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2310, Dictionary_2_System_String_List_1_Photon_Bolt_PropertyCallbackSimple__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2318, Dictionary_2_System_String_List_1_Photon_Bolt_PropertyCallbackSimple__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2320, List_1_Photon_Bolt_PropertyCallback__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2328, Dictionary_2_System_String_List_1_Photon_Bolt_PropertyCallback__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2338, List_1_Photon_Bolt_PropertyCallback___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2340, Dictionary_2_System_String_List_1_Photon_Bolt_PropertyCallback__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2350, HashSet_1_System_String__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC23D0, BoltDoubleList_1_Photon_Bolt_NetworkStorage__get_last__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC23E0, BoltDoubleList_1_Photon_Bolt_NetworkStorage__RemoveFirst__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC23F0, BoltDoubleList_1_Photon_Bolt_NetworkStorage__Next__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2400, BoltDoubleList_1_Photon_Bolt_NetworkStorage__get_count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2458, BoltDoubleList_1_Photon_Bolt_NetworkStorage__AddLast__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2538, List_1_UnityEngine_Animator__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2540, List_1_UnityEngine_Animator__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2548, List_1_UnityEngine_Animator___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2568, Dictionary_2_System_String_List_1_Photon_Bolt_PropertyCallback___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2590, Dictionary_2_System_String_List_1_Photon_Bolt_PropertyCallbackSimple___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC25A0, BoltDoubleList_1_Photon_Bolt_NetworkStorage__get_first__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC25A8, CallbackArray_1_System_Action_2__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC25B0, BoltDoubleList_1_Photon_Bolt_NetworkStorage___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC25B8, CallbackArray_1_System_Action_1__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC25C0, List_1_UnityEngine_InputSystem_InputAction__AddRange__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC25C8, List_1_UnityEngine_Animator__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC25D0, List_1_UnityEngine_Animator__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2630, DelegateHelpers_InvokeCallbacksSafe_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2638, Enumerable_Select_49__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2640, BoltUtils_AddFirst_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2650, Stack_1_Photon_Bolt_NetworkStorage__Push__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2668, Stack_1_Photon_Bolt_NetworkStorage__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2678, CallbackArray_1_System_Action_1__1_get_length__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2680, Stack_1_Photon_Bolt_NetworkStorage__Pop__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2690, Stack_1_Photon_Bolt_NetworkStorage___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC26B8, CallbackArray_1_System_Action_2__get_length__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC26C8, ArrayHelpers_LengthSafe_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC26D8, List_1_Photon_Bolt_NetworkObj___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC26E8, List_1_Photon_Bolt_NetworkObj__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2718, ArrayHelpers_Copy_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2720, ArrayHelpers_Copy_12__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2758, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputAction__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2780, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputAction__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2788, Dictionary_2_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2790, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputAction__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2798, InputControlList_1_InputControl__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC27A8, InputControlList_1_InputControl__Resize__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC27B0, Dictionary_2_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC27B8, ArrayHelpers_Copy_13__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC27C8, ArrayHelpers_Copy_14__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC27D0, ArrayHelpers_Copy_15__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC27D8, Dictionary_2_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC27E0, Enumerable_Contains_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC27F8, NetworkArray_Values_1_NetworkTransform___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2838, NetworkArray_Values_1_NetworkTransform__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2858, NetworkArray_Values_1_System_String___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2898, NetworkArray_Values_1_IProtocolToken___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2900, NetworkArray_Values_1_BoltEntity___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2918, Enumerable_ToArray_20__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2990, Enumerable_Select_50__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC29A0, Dictionary_2_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion__get_Values__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2A38, HashSet_1_System_String__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2A40, HashSet_1_System_String__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2A50, HashSet_1_System_String___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2B08, ArrayHelpers_Append_13__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2B40, ArrayHelpers_Erase_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2B90, PhotonPoller_RegisterInstance_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2BB0, ArrayHelpers_EraseAt_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2BC8, ArrayHelpers_IndexOfReference_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2BF8, Enumerable_Contains_12__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2C80, ArrayHelpers_Append_14__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2C90, ScriptableObject_CreateInstance_12__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2CA0, List_1_plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2CB0, List_1_plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2CD8, List_1_plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2D08, List_1_plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG__Sort__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2D30, Queue_1_Photon_Bolt_Event___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2D38, ADictionary_2_System_Int32_Rewired_InputBehavior__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2D58, List_1_Rewired_InputBehavior___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2D68, ADictionary_2_System_Int32_Rewired_InputBehavior___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2D70, ADictionary_2_System_Int32_Rewired_InputBehavior__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2D78, List_1_plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2DA0, List_1_Rewired_Controller__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2DC8, List_1_Rewired_Joystick__Sort__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2DD8, Queue_1_Photon_Bolt_Event__Dequeue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2DE0, List_1_Rewired_Joystick__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2DF0, Queue_1_Photon_Bolt_Event__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2E10, Queue_1_Photon_Bolt_Event__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2E18, Queue_1_Photon_Bolt_Event__Enqueue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2E30, Dictionary_2_System_Type_List_1_Photon_Bolt_EventDispatcher_CallbackWrapper___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2E40, List_1_Rewired_CustomController__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2E50, List_1_Rewired_CustomController__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2EF0, ReadOnlyCollection_1_Rewired_Joystick___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2F18, Dictionary_2_System_Type_List_1_Photon_Bolt_EventDispatcher_CallbackWrapper__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2F38, ReadOnlyCollection_1_Rewired_CustomController___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2F50, ArrayTools_Populate_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2F80, List_1_Rewired_CustomController___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2F90, ADictionary_2_System_Int32_XKHfzUVAieDxXBogCMTJRCSldnQzA_ZKepnRKpLuSRvtfTUZewbgDXdBHc__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC2FB8, ADictionary_2_System_Int32_XKHfzUVAieDxXBogCMTJRCSldnQzA_ZKepnRKpLuSRvtfTUZewbgDXdBHc___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3080, iodYpqMJIZFiggHnRPtbBYdCAZfVB_1_Rewired_PlayerActiveControllerChangedDelegate___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3090, iodYpqMJIZFiggHnRPtbBYdCAZfVB_1_Rewired_ActiveControllerChangedDelegate___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC30A0, iodYpqMJIZFiggHnRPtbBYdCAZfVB_1_Rewired_PlayerActiveControllerChangedDelegate__LWvZAgWUgFSrMTEyoUTNQXBVREAh__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3108, iodYpqMJIZFiggHnRPtbBYdCAZfVB_1_Rewired_PlayerActiveControllerChangedDelegate__LWvZAgWUgFSrMTEyoUTNQXBVREAh_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3130, iodYpqMJIZFiggHnRPtbBYdCAZfVB_1_Rewired_ActiveControllerChangedDelegate__ilxyGSEjXznIhEbmncUNdSsFqjdg__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3148, iodYpqMJIZFiggHnRPtbBYdCAZfVB_1_Rewired_ActiveControllerChangedDelegate__sjgQXMMRIHmhSmDrVpgFKxoFoOIy__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3160, iodYpqMJIZFiggHnRPtbBYdCAZfVB_1_Rewired_ActiveControllerChangedDelegate__ilxyGSEjXznIhEbmncUNdSsFqjdg_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC31C0, iodYpqMJIZFiggHnRPtbBYdCAZfVB_1_Rewired_PlayerActiveControllerChangedDelegate__CsqFTjKavXMkgQSnWYUvsnJkhllhb__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC31F0, iodYpqMJIZFiggHnRPtbBYdCAZfVB_1_Rewired_ActiveControllerChangedDelegate__CsqFTjKavXMkgQSnWYUvsnJkhllhb__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3220, iodYpqMJIZFiggHnRPtbBYdCAZfVB_1_Rewired_PlayerActiveControllerChangedDelegate__sjgQXMMRIHmhSmDrVpgFKxoFoOIy__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3240, iodYpqMJIZFiggHnRPtbBYdCAZfVB_1_Rewired_PlayerActiveControllerChangedDelegate__ilxyGSEjXznIhEbmncUNdSsFqjdg__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3250, iodYpqMJIZFiggHnRPtbBYdCAZfVB_1_Rewired_PlayerActiveControllerChangedDelegate__ilxyGSEjXznIhEbmncUNdSsFqjdg_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3280, XKHfzUVAieDxXBogCMTJRCSldnQzA_RVyZTLSrmmGgmhirYsrAYLilGgix_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC32A0, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_Photon_Bolt_Internal_EntityProxy__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC32A8, XKHfzUVAieDxXBogCMTJRCSldnQzA_IdoBsBWhwLzhUQzyXbTpuhSwcbbw_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC32B8, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_Photon_Bolt_Internal_EntityProxy__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC32C0, XKHfzUVAieDxXBogCMTJRCSldnQzA_IdoBsBWhwLzhUQzyXbTpuhSwcbbw_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC32D0, Dictionary_2_Photon_Bolt_NetworkId_Photon_Bolt_Internal_EntityProxy__get_Values__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC32E0, Dictionary_2_TKey_TValue_ValueCollection_Photon_Bolt_NetworkId_Photon_Bolt_Internal_EntityProxy__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC32F0, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_Photon_Bolt_Internal_EntityProxy__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3310, XKHfzUVAieDxXBogCMTJRCSldnQzA_DHoJMWJxuckjIjbQLshEgvCscShu_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3330, XKHfzUVAieDxXBogCMTJRCSldnQzA_DHoJMWJxuckjIjbQLshEgvCscShu_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3340, Dictionary_2_Photon_Bolt_NetworkId_Photon_Bolt_Internal_EntityProxy__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3350, Dictionary_2_Photon_Bolt_NetworkId_Photon_Bolt_Internal_EntityProxy__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3358, iodYpqMJIZFiggHnRPtbBYdCAZfVB_1_Rewired_ActiveControllerChangedDelegate__LWvZAgWUgFSrMTEyoUTNQXBVREAh__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3368, List_1_Photon_Bolt_Entity__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3370, iodYpqMJIZFiggHnRPtbBYdCAZfVB_1_Rewired_ActiveControllerChangedDelegate__LWvZAgWUgFSrMTEyoUTNQXBVREAh_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3378, List_1_T_Enumerator_Photon_Bolt_Entity__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3380, List_1_T_Enumerator_Photon_Bolt_Entity__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3388, List_1_T_Enumerator_Photon_Bolt_Entity__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3390, XKHfzUVAieDxXBogCMTJRCSldnQzA_RVyZTLSrmmGgmhirYsrAYLilGgix_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3398, List_1_Photon_Bolt_Entity__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC33D8, BoltDoubleList_1_Photon_Bolt_Internal_EntityProxy___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3400, BoltDoubleList_1_Photon_Bolt_Command___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3418, XKHfzUVAieDxXBogCMTJRCSldnQzA_jwzGjIatPRhWXTpXZrztrNhJxAbaA_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3420, XKHfzUVAieDxXBogCMTJRCSldnQzA_jwzGjIatPRhWXTpXZrztrNhJxAbaA_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3428, XKHfzUVAieDxXBogCMTJRCSldnQzA_lTydDngNomYHuigfhNfxundkPAOhA_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3438, XKHfzUVAieDxXBogCMTJRCSldnQzA_lTydDngNomYHuigfhNfxundkPAOhA_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3450, BoltDoubleList_1_Photon_Bolt_Command__get_lastOrDefault__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3458, BoltDoubleList_1_Photon_Bolt_Command__get_first__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3468, BoltIterator_1_Photon_Bolt_Command__Next__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3478, BoltDoubleList_1_Photon_Bolt_Command__GetIterator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3480, EmptyObjects_1_Rewired_CustomController__get_array__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3488, Entity_QueryComponents_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3490, Component_GetComponentInParent_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3498, Entity_QueryComponents_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC34A0, Entity_QueryComponents_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC34B8, List_1_Rewired_Controller__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC34C8, BoltDoubleList_1_Photon_Bolt_Entity__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC34F0, BoltDoubleList_1_Photon_Bolt_Internal_EntityProxy__AddLast__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC34F8, ADictionary_2_System_Int32_XKHfzUVAieDxXBogCMTJRCSldnQzA_ZKepnRKpLuSRvtfTUZewbgDXdBHc__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3500, ADictionary_2_System_Int32_XKHfzUVAieDxXBogCMTJRCSldnQzA_ZKepnRKpLuSRvtfTUZewbgDXdBHc__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3508, List_1_Rewired_CustomController__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3510, BoltDoubleList_1_Photon_Bolt_Entity__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3518, BoltDoubleList_1_Photon_Bolt_Entity__AddLast__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3520, LinkedList_1_T_Enumerator_Photon_Bolt_BoltConnection__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3528, LinkedList_1_T_Enumerator_Photon_Bolt_BoltConnection__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3530, List_1_Rewired_Joystick__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3538, LinkedList_1_Photon_Bolt_BoltConnection__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3548, EmptyObjects_1_Rewired_Joystick__get_array__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3560, List_1_Rewired_Controller___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3568, List_1_Rewired_Controller__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3578, BoltDoubleList_1_Photon_Bolt_Command__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3588, List_1_Photon_Bolt_Entity__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3598, List_1_Rewired_CustomController__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC35A0, List_1_Photon_Bolt_Entity__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC35A8, List_1_Rewired_Joystick__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC35F0, ReadOnlyCollection_1_Rewired_Controller___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3610, BoltDoubleList_1_Photon_Bolt_Command__RemoveFirst__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3628, List_1_Rewired_InputAction__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3638, ADictionary_2_System_String_awbjHmZDZGaFbpFdVngkjOlucOb_GAaWAhihtaBrVEgxHmuQgkOpejeO__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3650, BoltDoubleList_1_Photon_Bolt_Command__AddLast__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3658, ADictionary_2_System_String_awbjHmZDZGaFbpFdVngkjOlucOb_GAaWAhihtaBrVEgxHmuQgkOpejeO___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3660, ADictionary_2_System_Int32_cgAhWyfsfnPBbygscaxJCrsKfviSB_QZZonLoWlgxcyWKuMqtizlbVFpT_pGjmwaQuQZuHgNirXIspTBHcQXUr__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC36B0, ADictionary_2_System_String_awbjHmZDZGaFbpFdVngkjOlucOb_GAaWAhihtaBrVEgxHmuQgkOpejeO__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC36D0, BoltDoubleList_1_Photon_Bolt_Command__get_count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC36D8, ADictionary_2_System_String_awbjHmZDZGaFbpFdVngkjOlucOb_GAaWAhihtaBrVEgxHmuQgkOpejeO__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3768, Assert_1_False_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3798, ADictionary_2_System_Int32_cgAhWyfsfnPBbygscaxJCrsKfviSB_QZZonLoWlgxcyWKuMqtizlbVFpT_pGjmwaQuQZuHgNirXIspTBHcQXUr___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC37A8, ADictionary_2_System_Int32_cgAhWyfsfnPBbygscaxJCrsKfviSB_QZZonLoWlgxcyWKuMqtizlbVFpT_pGjmwaQuQZuHgNirXIspTBHcQXUr__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC38A8, KeyValuePair_2_Photon_Bolt_NetworkId_Photon_Bolt_Internal_EntityProxy__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC38B8, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_Photon_Bolt_Internal_EntityProxy__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC38E8, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_Photon_Bolt_Internal_EntityProxy__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC38F8, Dictionary_2_Photon_Bolt_NetworkId_Photon_Bolt_Internal_EntityProxy__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3920, ArrayTools_Expand_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3970, Queue_1_System_Byte__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3980, Queue_1_System_Byte__Dequeue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC39A0, Queue_1_System_Byte__Enqueue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3A68, List_1_Photon_Bolt_Entity___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3BC0, UpdateLoopDataSet_1_QWCZHCNDmpDloSdqwdUrqIUsGkjX_maTEitTqrfublisfyhueruzJbaIw___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3C38, ArrayTools_Populate_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3C70, List_1_Photon_Bolt_NetworkObj__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3D00, Map_2_System_Guid_UdpSession___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3D18, UpdateLoopDataSet_1_QWCZHCNDmpDloSdqwdUrqIUsGkjX_maTEitTqrfublisfyhueruzJbaIw__SetUpdateLoop__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3D30, ObjectPool_1_QWCZHCNDmpDloSdqwdUrqIUsGkjX__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3D88, Map_2_System_Guid_UdpSession__TryFind__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3DA0, Map_2_System_Guid_UdpSession__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3DE0, Map_2_System_Guid_UdpSession__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3DF8, KeyValuePair_2_System_Guid_UdpKit_UdpSession__get_Key__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3E08, UpdateLoopDataSet_1_QWCZHCNDmpDloSdqwdUrqIUsGkjX_maTEitTqrfublisfyhueruzJbaIw__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3E10, UpdateLoopDataSet_1_QWCZHCNDmpDloSdqwdUrqIUsGkjX_maTEitTqrfublisfyhueruzJbaIw__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3E40, UpdateLoopDataSet_1_QWCZHCNDmpDloSdqwdUrqIUsGkjX_maTEitTqrfublisfyhueruzJbaIw__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3E78, ObjectPool_1_QWCZHCNDmpDloSdqwdUrqIUsGkjX__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3E90, UpdateLoopDataSet_1_UnityUnifiedMouseSource_VfDxCbYROgLLrrqQJZnvCkuaHSaJ__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3EC8, ObjectPool_1_QWCZHCNDmpDloSdqwdUrqIUsGkjX___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3F20, UpdateLoopDataSet_1_UnityUnifiedMouseSource_VfDxCbYROgLLrrqQJZnvCkuaHSaJ__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3F28, UpdateLoopDataSet_1_UnityUnifiedMouseSource_VfDxCbYROgLLrrqQJZnvCkuaHSaJ__Get_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3F48, UpdateLoopDataSet_1_UnityUnifiedMouseSource_VfDxCbYROgLLrrqQJZnvCkuaHSaJ___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3FD0, Enumerable_OfType_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3FE0, Enumerable_FirstOrDefault_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC3FE8, Enumerable_FirstOrDefault_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4008, Enumerable_OfType_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4058, Dictionary_2_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity__get_Values__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4070, ExpandableArray_DataContainer_1_aFmJpwxQsLcpqNsVpQUVNGddslvo_KKctsriiMZhFbEJSCKNPCsivbPjAb_TkYqOpldVGYAcSDtGYaHrNqSSLEE__InjectIfUnique__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC40C0, LinkedList_1_Photon_Bolt_BoltConnection__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC40C8, ExpandableArray_DataContainer_1_aFmJpwxQsLcpqNsVpQUVNGddslvo_KKctsriiMZhFbEJSCKNPCsivbPjAb_TkYqOpldVGYAcSDtGYaHrNqSSLEE__Inject__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC40D0, ExpandableArray_DataContainer_1_aFmJpwxQsLcpqNsVpQUVNGddslvo_KKctsriiMZhFbEJSCKNPCsivbPjAb_TkYqOpldVGYAcSDtGYaHrNqSSLEE__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC40D8, ExpandableArray_DataContainer_1_aFmJpwxQsLcpqNsVpQUVNGddslvo_KKctsriiMZhFbEJSCKNPCsivbPjAb_TkYqOpldVGYAcSDtGYaHrNqSSLEE__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC40E0, ExpandableArray_DataContainer_1_aFmJpwxQsLcpqNsVpQUVNGddslvo_KKctsriiMZhFbEJSCKNPCsivbPjAb_TkYqOpldVGYAcSDtGYaHrNqSSLEE__get_Length__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC40E8, ExpandableArray_DataContainer_1_aFmJpwxQsLcpqNsVpQUVNGddslvo_KKctsriiMZhFbEJSCKNPCsivbPjAb_TkYqOpldVGYAcSDtGYaHrNqSSLEE__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC40F8, ExpandableArray_DataContainer_1_aFmJpwxQsLcpqNsVpQUVNGddslvo_KKctsriiMZhFbEJSCKNPCsivbPjAb_TkYqOpldVGYAcSDtGYaHrNqSSLEE___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4208, KeyValuePair_2_System_String_Dissonance_ChannelProperties___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4218, List_1_KeyValuePair_2_System_String_Dissonance_ChannelProperties__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4230, ReadonlyLockedValue_1_T_Unlocker_System_Collections_Generic_List_1__4_get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4238, KeyValuePair_2_System_String_Dissonance_ChannelProperties__get_Key__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4240, List_1_KeyValuePair_2_System_String_Dissonance_ChannelProperties__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4248, KeyValuePair_2_System_String_Dissonance_ChannelProperties__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4250, List_1_KeyValuePair_2_System_String_Dissonance_ChannelProperties__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4258, List_1_KeyValuePair_2_System_String_Dissonance_ChannelProperties__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4268, Channels_2_PlayerChannel_System_String__remove_ClosedChannel__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4270, Channels_2_PlayerChannel_System_String__remove_OpenedChannel__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4280, ReadonlyLockedValue_1_System_Collections_Generic_List_1__4_Lock__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4290, List_1_KeyValuePair_2_System_String_Dissonance_ChannelProperties___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC42B8, ReadonlyLockedValue_1_System_Collections_Generic_List_1__4__ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC42D0, List_1_Dissonance_Networking_Client_PeerVoiceReceiver__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC42D8, List_1_Dissonance_Networking_Client_PeerVoiceReceiver__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC42E0, List_1_Dissonance_Networking_Client_PeerVoiceReceiver__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC42E8, List_1_Dissonance_Networking_Client_PeerVoiceReceiver__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC42F0, List_1_Dissonance_Networking_Client_PeerVoiceReceiver__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC42F8, List_1_Dissonance_Networking_Client_PeerVoiceReceiver___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4320, StyleEnum_1_DisplayStyle__op_Implicit__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4330, StyleEnum_1_DisplayStyle__op_Equality__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4388, ObjectPool_1_GoatState__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4398, ObjectPool_1_GoatState__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC43A8, ObjectPool_1_GoatState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC43C0, ObjectPool_1_TownPentagramState__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC43D0, ObjectPool_1_TownPentagramState__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC43E0, ObjectPool_1_TownPentagramState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC43F0, NetworkArray_Objects_1_Candle___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4410, ObjectPool_1_SteamInventoryState__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4418, ObjectPool_1_SteamInventoryState__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4420, ObjectPool_1_SteamInventoryState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4430, NetworkArray_Objects_1_SteamInventoryPlayer___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4448, ObjectPool_1_IntroState__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4458, ObjectPool_1_IntroState__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4460, ObjectPool_1_IntroState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4478, ObjectPool_1_CrowState__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4490, ObjectPool_1_CrowState__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC44A0, ObjectPool_1_CrowState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC44A8, ObjectPool_1_ManorMirrorState__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC44B8, ObjectPool_1_ManorMirrorState__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC44C0, ObjectPool_1_ManorMirrorState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC44D8, ObjectPool_1_ManorSpiritState__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC44F0, ObjectPool_1_ManorSpiritState__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4500, ObjectPool_1_ManorSpiritState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4510, ObjectPool_1_InnWebState__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4518, ObjectPool_1_InnWebState__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4540, ObjectPool_1_InnWebState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4548, ObjectPool_1_MapState__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4558, ObjectPool_1_MapState__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4568, ObjectPool_1_MapState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4578, List_1_Rewired_ControllerMapLayoutManager_Rule__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4590, List_1_Rewired_ControllerMapLayoutManager_Rule__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC45A0, ObjectPool_1_HidingSpotState__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC45A8, ObjectPool_1_HidingSpotState__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC45B8, ObjectPool_1_HidingSpotState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC45D0, List_1_Rewired_ControllerMapLayoutManager_Rule__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC45D8, List_1_Rewired_ControllerMapLayoutManager_Rule__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC45E0, ObjectPool_1_PetState__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC45E8, ObjectPool_1_PetState__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC45F8, ObjectPool_1_PetState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4600, List_1_Rewired_ControllerMapLayoutManager_Rule__Insert__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4628, List_1_Rewired_ControllerMapLayoutManager_Rule__CopyTo__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4638, ObjectPool_1_EnemyState__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4640, List_1_Rewired_ControllerMapLayoutManager_Rule__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4648, ObjectPool_1_EnemyState__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4650, ObjectPool_1_EnemyState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4658, List_1_Rewired_ControllerMapLayoutManager_Rule__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4678, MiscTools_DeepClone_22__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4690, ObjectPool_1_PlayerState__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC46A0, ObjectPool_1_PlayerState__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4710, List_1_Rewired_ControllerMapLayoutManager_Rule__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4720, List_1_Rewired_ControllerMapLayoutManager_Rule__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4748, ObjectPool_1_PlayerState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4770, SerializedObject_TryGetDeserializedValueByRef_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4780, SerializedObject_Add_12__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4788, ObjectPool_1_SurvivalLobbyState__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4798, ObjectPool_1_SurvivalLobbyState__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC47A8, ObjectPool_1_SurvivalLobbyState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC47C0, NetworkArray_Objects_1_SurvivalPlayer___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC47D0, List_1_Rewired_Controller__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC47D8, List_1_Rewired_Controller__AddRange__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC47E0, TempListPool_GetTList_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC47F0, TempListPool_TList_1_Rewired_Controller__get_list__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4810, ObjectPool_1_InnFountainState__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4820, List_1_Rewired_ControllerMapLayoutManager_RuleSet___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4828, ObjectPool_1_InnFountainState__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4840, ObjectPool_1_InnFountainState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4850, ObjectPool_1_Candle__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4858, List_1_Rewired_ControllerMapLayoutManager_RuleSet__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4868, ObjectPool_1_Candle__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4870, List_1_Rewired_ControllerMapEnabler_Rule__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4890, List_1_Rewired_ControllerMapEnabler_Rule__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC48A0, List_1_Rewired_ControllerMapEnabler_Rule__CopyTo__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC48A8, ObjectPool_1_Candle___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC48B0, List_1_Rewired_ControllerMapEnabler_Rule__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC48B8, ObjectPool_1_InnMazeWeb__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC48D0, ObjectPool_1_InnMazeWeb__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC48E0, List_1_Rewired_ControllerMapEnabler_Rule__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC48E8, ObjectPool_1_InnMazeWeb___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4930, ObjectPool_1_SteamInventoryPlayer__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4938, List_1_Rewired_ControllerMapEnabler_Rule__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4940, List_1_Rewired_ControllerMapEnabler_Rule__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4950, ObjectPool_1_SteamInventoryPlayer__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4968, List_1_Rewired_ControllerMapEnabler_Rule__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4998, ObjectPool_1_SteamInventoryPlayer___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC49A8, List_1_Rewired_ControllerMapEnabler_Rule__Insert__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC49B0, List_1_Rewired_ControllerMapEnabler_Rule__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC49C0, ObjectPool_1_SurvivalPlayer__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC49D0, ObjectPool_1_SurvivalPlayer__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC49F0, MiscTools_DeepClone_23__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4A08, ObjectPool_1_SurvivalPlayer___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4A58, MiscTools_DeepClone_24__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4A60, ObjectPool_1_InventorySlot__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4A78, SerializedObject_TryGetDeserializedValueByRef_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4A80, ObjectPool_1_InventorySlot__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4A98, ObjectPool_1_InventorySlot___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4AF0, List_1_Rewired_ControllerMapEnabler_RuleSet__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4B00, TempListPool_TList_1_Rewired_ControllerMap__get_list__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4B20, TempListPool_GetTList_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4B30, List_1_Rewired_ControllerMapEnabler_RuleSet___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4B70, SerializedObject_Add_13__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4D28, Dictionary_2_TKey_TValue_Enumerator_System_Int32_Rewired_Data_Mapping_AxisCalibrationInfo__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4D30, Dictionary_2_System_Int32_Rewired_Data_Mapping_AxisCalibrationInfo__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4D38, SerializedObject_TryGetDeserializedValueByRef_12__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4D48, SerializedObject_TryGetDeserializedValueByRef_13__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4D88, Dictionary_2_System_Int32_Rewired_Data_Mapping_AxisCalibrationInfo__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4D90, KeyValuePair_2_System_Int32_Rewired_Data_Mapping_AxisCalibrationInfo__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4D98, Dictionary_2_TKey_TValue_Enumerator_System_Int32_Rewired_Data_Mapping_AxisCalibrationInfo__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4DA0, Dictionary_2_System_Int32_Rewired_Data_Mapping_AxisCalibrationInfo__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4DA8, KeyValuePair_2_System_Int32_Rewired_Data_Mapping_AxisCalibrationInfo__get_Key__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4DB0, Dictionary_2_TKey_TValue_Enumerator_System_Int32_Rewired_Data_Mapping_AxisCalibrationInfo__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4DD8, SerializedObject_Add_14__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4DE0, SerializedObject_Add_15__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4E00, MiscTools_DeepClone_25__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4E08, ReadOnlyCollection_1_Rewired_AxisCalibration___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4E58, SerializedObject_Add_16__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4E98, SerializedObject_TryGetDeserializedValueByRef_14__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4EA0, SerializedObject_TryGetDeserializedValueByRef_15__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4EA8, SerializedObject_TryGetDeserializedValueByRef_16__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4EC8, SerializedObject_Add_17__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4ED0, SerializedObject_Add_18__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4F30, List_1_plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA_QEirwUTXDJlRbyOtHactBdFdXgSR__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4F48, List_1_plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA_QEirwUTXDJlRbyOtHactBdFdXgSR__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4F50, List_1_plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA_QEirwUTXDJlRbyOtHactBdFdXgSR__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4F58, List_1_plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA_QEirwUTXDJlRbyOtHactBdFdXgSR__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4F80, ReadOnlyCollection_1_Rewired_Player___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC4FD0, List_1_plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA_QEirwUTXDJlRbyOtHactBdFdXgSR___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5050, Enumerable_Select_51__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5058, Enumerable_Select_52__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC50C0, CallbackArray_1_System_Action__LockForChanges__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC50C8, CallbackArray_1_System_Action__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC50D0, CallbackArray_1_System_Action__UnlockForChanges__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC50E8, CallbackArray_1_System_Action__get_length__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5108, InlinedArray_1_UnityEngine_InputSystem_InputActionState__Append__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5110, InlinedArray_1_UnityEngine_InputSystem_InputActionState__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5158, InlinedArray_1_UnityEngine_InputSystem_InputActionState__AppendWithCapacity__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5160, InputArrayExtensions_IndexOfReference_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5168, InlinedArray_1_UnityEngine_InputSystem_InputActionState__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5170, InlinedArray_1_UnityEngine_InputSystem_InputActionState__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5180, InlinedArray_1_UnityEngine_InputSystem_InputActionState__ClearWithCapacity__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5198, InlinedArray_1_UnityEngine_InputSystem_InputAction__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC51A0, InlinedArray_1_UnityEngine_InputSystem_InputActionMap__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC51B0, InlinedArray_1_UnityEngine_InputSystem_InputAction__AppendWithCapacity__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC51D0, InputArrayExtensions_IndexOfReference_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC51D8, InputArrayExtensions_IndexOfReference_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC51E0, InlinedArray_1_UnityEngine_InputSystem_InputActionMap__RemoveAtWithCapacity__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC51F8, InlinedArray_1_UnityEngine_InputSystem_InputActionMap__AppendWithCapacity__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5208, InlinedArray_1_UnityEngine_InputSystem_InputAction__RemoveAtWithCapacity__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5260, InputControl_GetChildControl_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5268, InputControl_GetChildControl_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC52B8, InputControl_1_TouchPhase___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC52F8, InputControl_GetChildControl_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5300, InputControl_GetChildControl_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5308, InputControl_1_TouchPhase__get_value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5388, ArrayHelpers_Append_15__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5390, InputDeviceMatcher_WithCapability_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC53A0, KeyValuePair_2_System_String_System_Object___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC54D8, ArrayHelpers_InsertAt_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5500, Dictionary_2_System_String_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5510, Dictionary_2_System_String_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5540, Dictionary_2_System_String_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5568, Dictionary_2_System_String_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5590, ArrayHelpers_GrowBy_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC55B0, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5720, SerializedObject_Add_19__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5738, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_Type___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5748, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Type__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5750, SerializedObject_TryGetDeserializedValueByRef_17__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5760, AList_1_Rewired_ActionElementMap__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5768, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_Type__get_Keys__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5778, AList_1_Rewired_ActionElementMap__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5780, Enumerable_Select_53__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5798, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_Type__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC57C0, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_Type__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC57C8, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_Type__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC57D0, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Type__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC57D8, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Type__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC57E0, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_System_Type__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC57F0, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_System_Type__get_Key__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5858, AList_1_Rewired_ActionElementMap__Sort__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5888, AList_1_Rewired_ActionElementMap__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5AB8, ListTools_TryClear_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5B68, KeyValuePair_2_System_String_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__get_Key__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5B78, KeyValuePair_2_System_String_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5B80, ListTools_ToArray_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5B88, Enumerable_Select_54__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5BC0, AList_1_Rewired_ActionElementMap__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5C10, List_1_Rewired_ActionElementMap__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5C18, EmptyObjects_1_Rewired_ActionElementMap__get_array__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5C20, List_1_Rewired_ActionElementMap___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5C48, EmptyObjects_1_Rewired_ActionElementMap__get_EmptyReadOnlyIListT__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5C50, AList_1_Rewired_ActionElementMap__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5C58, AList_1_Rewired_ActionElementMap__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5C60, ReadOnlyCollection_1_Rewired_ActionElementMap___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5C80, AList_1_Rewired_ActionElementMap___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5CB8, ObjectPool_1_VoteEvent__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5CC8, ObjectPool_1_VoteEvent__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5CD8, ObjectPool_1_VoteEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5D00, ObjectPool_1_VoteRequestEvent__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5D08, ObjectPool_1_VoteRequestEvent__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5D18, ObjectPool_1_VoteRequestEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5D40, ObjectPool_1_SystemChatMessageEvent__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5D48, ObjectPool_1_SystemChatMessageEvent__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5D58, ObjectPool_1_SystemChatMessageEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5D90, ObjectPool_1_UseBatteryEvent__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5D98, ObjectPool_1_UseBatteryEvent__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5DA8, ObjectPool_1_UseBatteryEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5DD0, ObjectPool_1_EndingEvent__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5DD8, ObjectPool_1_EndingEvent__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5DF8, ObjectPool_1_EndingEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5E20, ObjectPool_1_CreatePortalEvent__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5E28, ObjectPool_1_CreatePortalEvent__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5E48, ObjectPool_1_CreatePortalEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5E70, ObjectPool_1_LobbyReadyEvent__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5E78, ObjectPool_1_LobbyReadyEvent__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5E98, ObjectPool_1_LobbyReadyEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5EC0, ObjectPool_1_DropObjectEvent__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5EC8, ObjectPool_1_DropObjectEvent__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5ED8, ObjectPool_1_DropObjectEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5F00, ObjectPool_1_KnockoutGrabRagdollEvent__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5F10, ObjectPool_1_KnockoutGrabRagdollEvent__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5F18, ObjectPool_1_KnockoutGrabRagdollEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5F50, ObjectPool_1_PlayerPickedUpEvent__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5F58, ObjectPool_1_PlayerPickedUpEvent__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5F60, ObjectPool_1_PlayerPickedUpEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5FA0, ObjectPool_1_SurvivalChangePlayerEvent__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5FA8, ObjectPool_1_SurvivalChangePlayerEvent__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5FB8, ObjectPool_1_SurvivalChangePlayerEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC5FF0, ObjectPool_1_ReviveEvent__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6000, ObjectPool_1_ReviveEvent__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6010, ObjectPool_1_ReviveEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6040, ObjectPool_1_KnockoutEvent__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6048, ObjectPool_1_KnockoutEvent__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6050, ObjectPool_1_KnockoutEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6090, ObjectPool_1_DissonanceToServer__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6098, ObjectPool_1_DissonanceToServer__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC60A8, ObjectPool_1_DissonanceToServer___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC60D0, ObjectPool_1_DissonanceToClient__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC60E0, ObjectPool_1_DissonanceToClient__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC60E8, ObjectPool_1_DissonanceToClient___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6130, ObjectPool_1_HostStartedGameEvent__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6138, ObjectPool_1_HostStartedGameEvent__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6148, ObjectPool_1_HostStartedGameEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6178, ObjectPool_1_KnockoutBoxEvent__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6188, ObjectPool_1_KnockoutBoxEvent__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6198, ObjectPool_1_KnockoutBoxEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC61C8, ObjectPool_1_InteractObjectResponseEvent__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC61D8, ObjectPool_1_InteractObjectResponseEvent__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC61E8, ObjectPool_1_InteractObjectResponseEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6220, ObjectPool_1_InteractPlopEvent__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6228, ObjectPool_1_InteractPlopEvent__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6238, ObjectPool_1_InteractPlopEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6260, ObjectPool_1_InteractObjectRequestEvent__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6268, ObjectPool_1_InteractObjectRequestEvent__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6288, ObjectPool_1_InteractObjectRequestEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC62A0, ObjectPool_1_InteractTriggerEvent__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC62B0, ObjectPool_1_InteractTriggerEvent__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC62C0, ObjectPool_1_InteractTriggerEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6300, ObjectPool_1_InteractEvent__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6308, ObjectPool_1_InteractEvent__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6320, ObjectPool_1_InteractEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6350, ObjectPool_1_EnemyBasicState__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6358, ObjectPool_1_EnemyBasicState__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6370, ObjectPool_1_EnemyBasicState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6388, ObjectPool_1_InnShrineState__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6390, ObjectPool_1_InnShrineState__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC63A0, ObjectPool_1_InnShrineState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC63B0, ObjectPool_1_DoorNumberState__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC63B8, ObjectPool_1_DoorNumberState__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC63D0, ObjectPool_1_DoorNumberState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC63E8, ObjectPool_1_InnMazeState__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC63F0, ObjectPool_1_InnMazeState__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6400, ObjectPool_1_InnMazeState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6408, NetworkArray_Objects_1_InnMazeWeb___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6438, ObjectPool_1_PlaceObjectState__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6440, ObjectPool_1_PlaceObjectState__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6450, ObjectPool_1_PlaceObjectState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6468, ObjectPool_1_BurnTrapState__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6470, ObjectPool_1_BurnTrapState__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6478, ObjectPool_1_BurnTrapState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6498, ObjectPool_1_DoorState__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC64B0, ObjectPool_1_DoorState__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC64C0, ObjectPool_1_DoorState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC64D0, ObjectPool_1_JumpScareState__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC64D8, ObjectPool_1_JumpScareState__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6500, ObjectPool_1_JumpScareState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6508, ObjectPool_1_DissonancePlayerState__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6518, ObjectPool_1_DissonancePlayerState__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6520, ObjectPool_1_DissonancePlayerState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6540, ObjectPool_1_SwitchState__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6550, ObjectPool_1_SwitchState__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6560, ObjectPool_1_SwitchState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6570, ObjectPool_1_InteractObjectState__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6578, ObjectPool_1_InteractObjectState__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC65A0, ObjectPool_1_InteractObjectState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC65A8, Dictionary_2_System_Int32_System_String__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC65B0, Dictionary_2_System_String_System_Int32__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC65B8, Dictionary_2_System_Int32_System_String__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC65C0, Dictionary_2_System_String_System_Int32__get_Keys__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC65D0, Dictionary_2_System_Int32_System_String___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC65D8, Dictionary_2_System_String_System_Int32___ctor_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6A50, ObjectPool_1_PlaceObjectEvent__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6A60, ObjectPool_1_PlaceObjectEvent__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6A88, ObjectPool_1_PlaceObjectEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6AB0, ObjectPool_1_VoteCompletedEvent__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6AB8, ObjectPool_1_VoteCompletedEvent__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6AC8, ObjectPool_1_VoteCompletedEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6AF0, ObjectPool_1_RangedAttackEvent__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6B00, ObjectPool_1_RangedAttackEvent__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6B28, ObjectPool_1_RangedAttackEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6B70, Player_ControllerHelper_MapHelper_GetAllMapSaveData_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6B78, Player_ControllerHelper_MapHelper_GetAllMapSaveData_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6B80, Player_ControllerHelper_MapHelper_GetAllMapSaveData_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6B88, Player_ControllerHelper_MapHelper_GetAllMapSaveData_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6CC0, KeyValuePair_2_System_String_Rewired_Utils_SafeDelegate__get_Key__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6CC8, Dictionary_2_TKey_TValue_Enumerator_System_String_Rewired_Utils_SafeDelegate__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6CD0, MiscTools_Clone_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6CD8, KeyValuePair_2_System_String_Rewired_Utils_SafeDelegate__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6CE0, Dictionary_2_TKey_TValue_Enumerator_System_String_Rewired_Utils_SafeDelegate__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6CE8, Dictionary_2_System_String_Rewired_Utils_SafeDelegate__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6CF0, Dictionary_2_TKey_TValue_Enumerator_System_String_Rewired_Utils_SafeDelegate__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6CF8, Dictionary_2_System_String_Rewired_Utils_SafeDelegate__get_Keys__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6D08, Dictionary_2_System_String_Rewired_Utils_SafeDelegate__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6D10, Dictionary_2_System_String_Rewired_Utils_SafeDelegate__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6D58, Dictionary_2_System_String_Rewired_Utils_SafeDelegate___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6D60, Dictionary_2_System_String_Rewired_Utils_SafeDelegate__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6D80, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_xvNKKEpAWWwboGaVfSwahpqKBiXt_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6D90, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_xvNKKEpAWWwboGaVfSwahpqKBiXt_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6DA0, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_xvNKKEpAWWwboGaVfSwahpqKBiXt_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6DB8, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_xvNKKEpAWWwboGaVfSwahpqKBiXt_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6DC8, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_xvNKKEpAWWwboGaVfSwahpqKBiXt_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6DE8, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_xvNKKEpAWWwboGaVfSwahpqKBiXt_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6DF8, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_xvNKKEpAWWwboGaVfSwahpqKBiXt_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6E28, List_1_Rewired_Player__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6E68, List_1_Rewired_Player__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6E70, ListTools_AddIfUnique_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6E78, List_1_Rewired_Player__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6E90, InputMapper_Options_ichabkfdhlzsWfhnsmXygQienhiab_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6F20, List_1_Rewired_Player___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6F38, Dictionary_2_TKey_TValue_Enumerator_Rewired_InputMapper_LHIKMCjQdqDNBdfhNEqxmrgcNERkA_Rewired_Utils_SafeDelegate__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6F68, SafeAction_1_Rewired_InputMapper_TimedOutEventData___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6F70, SafeAction_1_Rewired_InputMapper_ConflictFoundEventData___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6F88, SafeAction_1_Rewired_InputMapper_StoppedEventData___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6F90, SafeAction_1_Rewired_InputMapper_StartedEventData___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6F98, SafeAction_1_Rewired_InputMapper_CanceledEventData___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6FA0, SafeAction_1_Rewired_InputMapper_ErrorEventData___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6FC8, KeyValuePair_2_Rewired_InputMapper_LHIKMCjQdqDNBdfhNEqxmrgcNERkA_Rewired_Utils_SafeDelegate__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6FD0, Dictionary_2_TKey_TValue_Enumerator_Rewired_InputMapper_LHIKMCjQdqDNBdfhNEqxmrgcNERkA_Rewired_Utils_SafeDelegate__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6FD8, Dictionary_2_TKey_TValue_Enumerator_Rewired_InputMapper_LHIKMCjQdqDNBdfhNEqxmrgcNERkA_Rewired_Utils_SafeDelegate__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6FE0, Dictionary_2_Rewired_InputMapper_LHIKMCjQdqDNBdfhNEqxmrgcNERkA_Rewired_Utils_SafeDelegate__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6FE8, SafeAction_1_Rewired_InputMapper_StoppedEventData__op_Addition__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC6FF8, SafeAction_1_Rewired_InputMapper_StartedEventData__op_Subtraction__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC7008, SafeAction_1_Rewired_InputMapper_StartedEventData__op_Addition__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC7018, SafeAction_1_Rewired_InputMapper_TimedOutEventData__op_Subtraction__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC7020, Dictionary_2_Rewired_InputMapper_LHIKMCjQdqDNBdfhNEqxmrgcNERkA_Rewired_Utils_SafeDelegate___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC7028, Dictionary_2_Rewired_InputMapper_LHIKMCjQdqDNBdfhNEqxmrgcNERkA_Rewired_Utils_SafeDelegate__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC7030, SafeAction_1_Rewired_InputMapper_InputMappedEventData___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC7040, SafeAction_1_Rewired_InputMapper_ConflictFoundEventData__op_Subtraction__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC7058, SafeAction_1_Rewired_InputMapper_ConflictFoundEventData__op_Addition__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC7060, SafeAction_1_Rewired_InputMapper_StoppedEventData__op_Subtraction__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC7068, SafeAction_1_Rewired_InputMapper_InputMappedEventData__op_Subtraction__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC7070, Dictionary_2_Rewired_InputMapper_LHIKMCjQdqDNBdfhNEqxmrgcNERkA_Rewired_Utils_SafeDelegate__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC7080, SafeAction_1_Rewired_InputMapper_InputMappedEventData__op_Addition__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC7090, SafeAction_1_Rewired_InputMapper_CanceledEventData__op_Subtraction__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC7098, SafeAction_1_Rewired_InputMapper_TimedOutEventData__op_Addition__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC70A8, SafeAction_1_Rewired_InputMapper_CanceledEventData__op_Addition__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC70B0, SafeAction_1_Rewired_InputMapper_ErrorEventData__op_Subtraction__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC70B8, SafeAction_1_Rewired_InputMapper_ErrorEventData__op_Addition__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC7148, SerializedObject_TryGetDeserializedValueByRef_18__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC7150, SerializedObject_TryGetDeserializedValueByRef_19__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC7158, SerializedObject_TryGetDeserializedValueByRef_20__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC7198, SerializedObject_Add_20__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC71B0, SerializedObject_Add_21__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC71B8, SerializedObject_Add_22__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC71C8, ADictionary_2_System_Int32_Rewired_ControllerElementIdentifier__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC71D0, ADictionary_2_System_Int32_Rewired_ControllerElementIdentifier__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC71E0, ADictionary_2_System_Int32_Rewired_ControllerElementIdentifier__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC71F0, ArrayTools_DeepClone_14__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC7218, ADictionary_2_System_Int32_Rewired_ControllerElementIdentifier___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC7220, ADictionary_2_System_Int32_Rewired_ControllerElementIdentifier__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC7228, ArrayHelpers_AppendWithCapacity_21__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC7230, ArrayHelpers_EraseAtWithCapacity_20__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC7238, ArrayHelpers_IndexOfReference_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC7240, InputControl_TryGetChildControl_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC7248, InputControl_TryGetChildControl_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC7290, ReadOnlyArray_1_UnityEngine_InputSystem_Joystick___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC7300, ArrayHelpers_IndexOfReference_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC7308, ArrayHelpers_EraseAtWithCapacity_21__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC7338, ArrayHelpers_AppendWithCapacity_22__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC7340, ReadOnlyArray_1_UnityEngine_InputSystem_InputControl___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC73C8, ReadOnlyArray_1_UnityEngine_InputSystem_Gamepad___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC73D0, InputControl_GetChildControl_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC73E0, InputControl_GetChildControl_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC7448, InputControlList_1_InputControl__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC7458, InputControlPath_TryFindChild_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC7460, InputControlPath_TryFindControl_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC7470, Enumerable_Select_55__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC74B8, InlinedArray_1_Substring__ToArray_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC7B40, Resources_FindObjectsOfTypeAll_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC7B68, ScriptableObject_CreateInstance_13__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC7BD8, Enumerable_FirstOrDefault_12__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC7CC0, CallbackArray_1_System_Action_2__RemoveCallback__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC7D10, CallbackArray_1_System_Action_2__AddCallback__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC7D28, Observable_Where_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC7D60, Observable_Select_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC7DB0, InputSystem_FindControls_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC7F08, InputControlList_1_InputDevice__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC7F10, InputControlList_1_InputDevice__set_Capacity__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC7F18, InputControlList_1_InputDevice__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC7F88, InputControlList_1_InputDevice__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC7FA8, ArrayHelpers_AppendWithCapacity_23__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC7FB0, ArrayHelpers_AppendWithCapacity_24__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC7FB8, InputBindingResolver_InstantiateWithParameters_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC7FC0, InputBindingResolver_InstantiateWithParameters_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC7FC8, InputSystem_FindControls_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC7FD0, InputControlPath_TryFindControls_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC7FE0, ReadOnlyArray_1_UnityEngine_InputSystem_InputDevice__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC7FF0, ArrayHelpers_AppendListWithCapacity_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8080, BoltSingleList_1_Photon_Bolt_SceneManagement_BoltSceneLoader_LoadSceneOperation__RemoveFirst__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8090, BoltSingleList_1_Photon_Bolt_SceneManagement_BoltSceneLoader_LoadSceneOperation___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC80A0, BoltSingleList_1_Photon_Bolt_SceneManagement_BoltSceneLoader_LoadSceneOperation__AddLast__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC80B0, BoltSingleList_1_Photon_Bolt_SceneManagement_BoltSceneLoader_LoadSceneOperation__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC80C0, BoltSingleList_1_Photon_Bolt_SceneManagement_BoltSceneLoader_LoadSceneOperation__get_count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC80D0, BoltSingleList_1_Photon_Bolt_SceneManagement_BoltSceneLoader_LoadSceneOperation__get_first__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8140, Dictionary_2_Photon_Bolt_PrefabId_UnityEngine_GameObject__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8160, Resources_LoadAsync_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8180, Dictionary_2_Photon_Bolt_PrefabId_UnityEngine_GameObject__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8188, Dictionary_2_Photon_Bolt_PrefabId_UnityEngine_GameObject__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8190, Dictionary_2_Photon_Bolt_PrefabId_UnityEngine_GameObject__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8198, Dictionary_2_Photon_Bolt_PrefabId_UnityEngine_GameObject___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC81B0, Resources_Load_12__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC81B8, Stack_1_Photon_Bolt_Internal_Packet___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC81C8, Stack_1_Photon_Bolt_Internal_Packet__Push__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC81D0, Stack_1_Photon_Bolt_Internal_Packet__Pop__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC81E0, Stack_1_Photon_Bolt_Internal_Packet__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC83D8, Dictionary_2_System_Int32_Photon_Bolt_Internal_IDebugDrawerObjectArray__get_Values__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC83E0, Dictionary_2_TKey_TValue_ValueCollection_System_Int32_Photon_Bolt_Internal_IDebugDrawerObjectArray__CopyTo__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC83E8, Dictionary_2_System_Int32_Photon_Bolt_Internal_IDebugDrawerObjectArray__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC83F0, Dictionary_2_System_Int32_Photon_Bolt_Internal_IDebugDrawerObjectArray__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8400, Dictionary_2_System_Int32_Photon_Bolt_Internal_IDebugDrawerObjectArray__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8408, Dictionary_2_System_Int32_Photon_Bolt_Internal_IDebugDrawerObjectArray___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8618, List_1_Rewired_ControllerMapSaveData___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8620, List_1_Rewired_ControllerMapSaveData__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8628, List_1_Rewired_ControllerMapSaveData__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8670, FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_Rewired_CustomControllerMap__VJsfGkCeXFnNPjNkvMaQfRowrhXo__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8678, FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_Rewired_CustomControllerMap__RqlQXVCuqdhJnxcXhpOqbWpqutCF__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8688, FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_Rewired_CustomControllerMap__sjgQXMMRIHmhSmDrVpgFKxoFoOIy__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8698, FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_Rewired_JoystickMap__sjgQXMMRIHmhSmDrVpgFKxoFoOIy__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC86A0, FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_Rewired_JoystickMap__VJsfGkCeXFnNPjNkvMaQfRowrhXo__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC86B8, FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_Rewired_JoystickMap__RqlQXVCuqdhJnxcXhpOqbWpqutCF__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC86C0, FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_Rewired_CustomControllerMap__lvbMDsoxEFvYCrmdvbCPUOXygBBP__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC86C8, FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_Rewired_JoystickMap__lvbMDsoxEFvYCrmdvbCPUOXygBBP__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC86E0, EmptyObjects_1_Rewired_InputBehavior__get_EmptyReadOnlyIListT__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8700, EmptyObjects_1_Rewired_ControllerMapSaveData__get_array__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8790, ArrayTools_Combine_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8890, ReadOnlyArray_1_UnityEngine_InputSystem_Controls_KeyControl__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8898, ReadOnlyArray_1_UnityEngine_InputSystem_Controls_KeyControl__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC88A8, InlinedArray_1_System_Action_1__3_get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC88C0, InlinedArray_1_System_Action_1__2_get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8AE0, InlinedArray_1_System_Action_1__3_Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8AF8, InlinedArray_1_System_Action_1__2_Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8B00, InlinedArray_1_System_Action_1__3_Append__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8B10, InputArrayExtensions_Contains_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8B20, InputControl_GetChildControl_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8B28, InputControl_GetChildControl_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8B48, ReadOnlyArray_1_UnityEngine_InputSystem_Controls_KeyControl___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8B58, InlinedArray_1_System_Action_1__2_Append__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8B68, InputArrayExtensions_Contains_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8B70, ListTools_TryClear_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8B90, EmptyObjects_1_Rewired_ControllerMap__get_EmptyReadOnlyIListT__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8BB0, List_1_Rewired_Player_ControllerHelper_eRpAeFxcyMygNogiZCgHnqGANSDc_FMbXBAQaLWPhxjqsNoyCTWZtsDfI__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8BC0, List_1_Rewired_Player_ControllerHelper_eRpAeFxcyMygNogiZCgHnqGANSDc_FMbXBAQaLWPhxjqsNoyCTWZtsDfI__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8BC8, List_1_Rewired_Player_ControllerHelper_eRpAeFxcyMygNogiZCgHnqGANSDc_FMbXBAQaLWPhxjqsNoyCTWZtsDfI__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8C00, Player_ControllerHelper_ConflictCheckingHelper_ESHersLUOAHgbZGzLxNHTWiFIRvE_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8C08, Player_ControllerHelper_ConflictCheckingHelper_ESHersLUOAHgbZGzLxNHTWiFIRvE_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8C18, List_1_Rewired_Player_ControllerHelper_eRpAeFxcyMygNogiZCgHnqGANSDc_FMbXBAQaLWPhxjqsNoyCTWZtsDfI__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8C30, List_1_Rewired_Player_ControllerHelper_eRpAeFxcyMygNogiZCgHnqGANSDc_FMbXBAQaLWPhxjqsNoyCTWZtsDfI___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8C58, Player_ControllerHelper_ConflictCheckingHelper_ESHersLUOAHgbZGzLxNHTWiFIRvE_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8C70, Player_ControllerHelper_ConflictCheckingHelper_ESHersLUOAHgbZGzLxNHTWiFIRvE_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8C80, Player_ControllerHelper_ConflictCheckingHelper_ESHersLUOAHgbZGzLxNHTWiFIRvE_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8C88, Player_ControllerHelper_ConflictCheckingHelper_ZkpNxxqhMVJGhJxKimpPuFZEhsRh_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8C90, Player_ControllerHelper_ConflictCheckingHelper_ZkpNxxqhMVJGhJxKimpPuFZEhsRh_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8C98, Player_ControllerHelper_ConflictCheckingHelper_ZkpNxxqhMVJGhJxKimpPuFZEhsRh_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8CA0, Player_ControllerHelper_ConflictCheckingHelper_ZkpNxxqhMVJGhJxKimpPuFZEhsRh_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8CA8, Player_ControllerHelper_ConflictCheckingHelper_ZkpNxxqhMVJGhJxKimpPuFZEhsRh_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8CB0, Player_ControllerHelper_ConflictCheckingHelper_ESHersLUOAHgbZGzLxNHTWiFIRvE_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8CC0, Player_ControllerHelper_ConflictCheckingHelper_ZkpNxxqhMVJGhJxKimpPuFZEhsRh_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8CC8, Player_ControllerHelper_ConflictCheckingHelper_ZkpNxxqhMVJGhJxKimpPuFZEhsRh_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8CD0, Player_ControllerHelper_ConflictCheckingHelper_ZMFxMkYOKynCHMoufJmNhVlvkQFH_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8CD8, Player_ControllerHelper_ConflictCheckingHelper_ZMFxMkYOKynCHMoufJmNhVlvkQFH_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8CE0, Player_ControllerHelper_ConflictCheckingHelper_ZMFxMkYOKynCHMoufJmNhVlvkQFH_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8CE8, Player_ControllerHelper_ConflictCheckingHelper_ZMFxMkYOKynCHMoufJmNhVlvkQFH_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8CF0, Player_ControllerHelper_ConflictCheckingHelper_ZMFxMkYOKynCHMoufJmNhVlvkQFH_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8CF8, Player_ControllerHelper_ConflictCheckingHelper_ZMFxMkYOKynCHMoufJmNhVlvkQFH_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8D00, Player_ControllerHelper_ConflictCheckingHelper_ZkpNxxqhMVJGhJxKimpPuFZEhsRh_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8D08, Player_ControllerHelper_ConflictCheckingHelper_ZkpNxxqhMVJGhJxKimpPuFZEhsRh_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8D10, Player_ControllerHelper_ConflictCheckingHelper_ZkpNxxqhMVJGhJxKimpPuFZEhsRh_12__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8D18, Player_ControllerHelper_ConflictCheckingHelper_ZkpNxxqhMVJGhJxKimpPuFZEhsRh_13__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8D20, Player_ControllerHelper_ConflictCheckingHelper_ZkpNxxqhMVJGhJxKimpPuFZEhsRh_14__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8D28, Player_ControllerHelper_ConflictCheckingHelper_ZMFxMkYOKynCHMoufJmNhVlvkQFH_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8D48, Player_ControllerHelper_ConflictCheckingHelper_ESHersLUOAHgbZGzLxNHTWiFIRvE_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8D50, Player_ControllerHelper_ConflictCheckingHelper_ZMFxMkYOKynCHMoufJmNhVlvkQFH_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8D58, Player_ControllerHelper_ConflictCheckingHelper_ZMFxMkYOKynCHMoufJmNhVlvkQFH_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8D60, Player_ControllerHelper_ConflictCheckingHelper_ZMFxMkYOKynCHMoufJmNhVlvkQFH_12__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8D68, Player_ControllerHelper_ConflictCheckingHelper_ZMFxMkYOKynCHMoufJmNhVlvkQFH_13__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8D70, Player_ControllerHelper_ConflictCheckingHelper_ZMFxMkYOKynCHMoufJmNhVlvkQFH_14__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8D88, Player_ControllerHelper_ConflictCheckingHelper_yTOqqNNzfzHMUpDJOskdeCIXDDBc_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8D90, Player_ControllerHelper_ConflictCheckingHelper_yTOqqNNzfzHMUpDJOskdeCIXDDBc_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8D98, Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_CustomController_CustomControllerMap__VJsfGkCeXFnNPjNkvMaQfRowrhXo__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8DA0, Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_CustomController_CustomControllerMap__RqlQXVCuqdhJnxcXhpOqbWpqutCF__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8DA8, Player_ControllerHelper_ConflictCheckingHelper_ESHersLUOAHgbZGzLxNHTWiFIRvE_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8DB0, Player_ControllerHelper_ConflictCheckingHelper_ESHersLUOAHgbZGzLxNHTWiFIRvE_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8DB8, Player_ControllerHelper_ConflictCheckingHelper_ESHersLUOAHgbZGzLxNHTWiFIRvE_12__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8DC0, Player_ControllerHelper_ConflictCheckingHelper_ESHersLUOAHgbZGzLxNHTWiFIRvE_13__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8DD0, Player_ControllerHelper_ConflictCheckingHelper_ESHersLUOAHgbZGzLxNHTWiFIRvE_14__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8DD8, Player_ControllerHelper_ConflictCheckingHelper_yTOqqNNzfzHMUpDJOskdeCIXDDBc_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8DE0, Player_ControllerHelper_ConflictCheckingHelper_yTOqqNNzfzHMUpDJOskdeCIXDDBc_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8DE8, Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_Joystick_JoystickMap__VJsfGkCeXFnNPjNkvMaQfRowrhXo__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8DF0, Player_ControllerHelper_ConflictCheckingHelper_yTOqqNNzfzHMUpDJOskdeCIXDDBc_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8DF8, Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_Joystick_JoystickMap__RqlQXVCuqdhJnxcXhpOqbWpqutCF__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8E00, Player_ControllerHelper_ConflictCheckingHelper_yTOqqNNzfzHMUpDJOskdeCIXDDBc_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8E08, Player_ControllerHelper_ConflictCheckingHelper_yTOqqNNzfzHMUpDJOskdeCIXDDBc_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8E10, Player_ControllerHelper_ConflictCheckingHelper_yTOqqNNzfzHMUpDJOskdeCIXDDBc_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8E18, Player_ControllerHelper_ConflictCheckingHelper_yTOqqNNzfzHMUpDJOskdeCIXDDBc_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8E20, Player_ControllerHelper_ConflictCheckingHelper_yTOqqNNzfzHMUpDJOskdeCIXDDBc_12__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8E28, Player_ControllerHelper_ConflictCheckingHelper_yTOqqNNzfzHMUpDJOskdeCIXDDBc_13__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8E30, Player_ControllerHelper_ConflictCheckingHelper_yTOqqNNzfzHMUpDJOskdeCIXDDBc_14__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8EA0, FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_Rewired_CustomControllerMap___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8EB0, Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_CustomController_CustomControllerMap___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8EC0, Player_ControllerHelper_zgmTShtuMZjevpPPVHquKEyKSmEmA_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8EC8, Player_ControllerHelper_zgmTShtuMZjevpPPVHquKEyKSmEmA_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8ED0, Player_ControllerHelper_qOveubmDNlEDlbfVcHZmqLnkLXnq_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8ED8, FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_Rewired_KeyboardMap___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8EE0, Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_Joystick_JoystickMap___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8F00, FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_Rewired_JoystickMap___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8F08, Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_Mouse_MouseMap___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8F10, FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_Rewired_MouseMap___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8F20, Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_Keyboard_KeyboardMap___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8F68, Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_CustomController_CustomControllerMap__iocEQujuhvfIjkXLMvPAcYMVqtPsA__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8F70, EmptyObjects_1_Rewired_CustomController__get_EmptyReadOnlyIListT__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8F78, Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_Joystick_JoystickMap__iocEQujuhvfIjkXLMvPAcYMVqtPsA__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8F80, EmptyObjects_1_Rewired_Joystick__get_EmptyReadOnlyIListT__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8FC0, Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_Mouse_MouseMap___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8FC8, Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_Keyboard_KeyboardMap___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8FD0, Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_CustomController_CustomControllerMap___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8FD8, Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_Joystick_JoystickMap___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC8FF8, SafeAction_1_Rewired_ControllerAssignmentChangedEventArgs___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9000, SafeAction_1_Rewired_ControllerAssignmentChangedEventArgs__Invoke__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9010, SafeDelegate_1_System_Action_1__RemoveDelegate__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9018, SafeDelegate_1_System_Action_1__AddDelegate__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC90C0, Dictionary_2_System_String_jlOcQLgjodoHrMnRTMaZoBnVTQkmA__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC90C8, List_1_jlOcQLgjodoHrMnRTMaZoBnVTQkmA__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC90D0, Dictionary_2_System_String_jlOcQLgjodoHrMnRTMaZoBnVTQkmA__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC90D8, List_1_jlOcQLgjodoHrMnRTMaZoBnVTQkmA___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC90E0, List_1_jlOcQLgjodoHrMnRTMaZoBnVTQkmA__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9100, Dictionary_2_System_String_jlOcQLgjodoHrMnRTMaZoBnVTQkmA___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9658, SafeAction_1_Rewired_ControllerStatusChangedEventArgs__Invoke__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC96B8, UnityTools_GetComponentsInSelfAndChildren_12__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC96D0, List_1_Rewired_Utils_Interfaces_IExternalInputManager__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC96D8, List_1_Rewired_Utils_Interfaces_IExternalInputManager__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9708, List_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9720, ListTools_AddIfUnique_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9728, EmptyObjects_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap__get_EmptyReadOnlyIListT__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9780, UnityTools_GetComponent_12__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC97C0, ValueWatcher_1_System_String__get_value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC97D0, Dictionary_2_Photon_Bolt_NetworkId_Photon_Bolt_Internal_EntityProxy__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC97D8, BoltDoubleList_1_Photon_Bolt_Internal_EntityProxy__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC97F8, Queue_1_Photon_Bolt_Internal_EntityProxyEnvelope__Enqueue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9808, Enumerable_ToArray_21__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9810, Queue_1_Photon_Bolt_Internal_EntityProxyEnvelope__Dequeue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9820, List_1_Photon_Bolt_Internal_EntityProxy__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9828, List_1_Photon_Bolt_Internal_EntityProxy__Sort__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9830, List_1_Photon_Bolt_Internal_EntityProxy__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9838, List_1_Photon_Bolt_Internal_EntityProxy__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9848, Dictionary_2_Photon_Bolt_NetworkId_Photon_Bolt_Internal_EntityProxy__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9850, List_1_Photon_Bolt_Internal_EntityProxy__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9858, Queue_1_Photon_Bolt_Internal_EntityProxyEnvelope__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9860, Dictionary_2_Photon_Bolt_NetworkId_Photon_Bolt_Internal_EntityProxy__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9890, List_1_Photon_Bolt_Internal_EntityProxy___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC98A0, Dictionary_2_Photon_Bolt_NetworkId_Photon_Bolt_Internal_EntityProxy___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC98B0, Queue_1_System_Byte___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC98B8, Queue_1_System_Byte__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC98C8, ObjectPool_1_Photon_Bolt_Internal_PooledProtocolTokenBase__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9900, Stack_1_Photon_Bolt_Internal_EntityProxyEnvelope__Push__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9908, Stack_1_Photon_Bolt_Internal_EntityProxyEnvelope___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9910, Stack_1_Photon_Bolt_Internal_EntityProxyEnvelope__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9918, Stack_1_Photon_Bolt_Internal_EntityProxyEnvelope__Pop__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9960, Queue_1_Photon_Bolt_Internal_EntityProxyEnvelope___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9970, Queue_1_Photon_Bolt_Internal_EntityProxyEnvelope__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9978, BoltDoubleList_1_Photon_Bolt_Internal_GlobalEventListenerBase___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9988, SafeAction_1_Rewired_ControllerStatusChangedEventArgs__op_Subtraction__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9990, SafeAction_1_Rewired_ControllerStatusChangedEventArgs__op_Addition__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC99A8, SafeAction_1_Rewired_ControllerStatusChangedEventArgs___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC99D0, BoltDoubleList_1_Photon_Bolt_Internal_GlobalEventListenerBase__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC99D8, BoltDoubleList_1_Photon_Bolt_Internal_GlobalEventListenerBase__AddLast__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC99E8, BoltDoubleList_1_Photon_Bolt_Internal_GlobalEventListenerBase__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9A50, Dictionary_2_System_Type_System_Byte__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9A58, Dictionary_2_System_Byte_System_Type__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9A68, ObjectPool_1_Photon_Bolt_Internal_PooledProtocolTokenBase___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9A70, Dictionary_2_System_Type_System_Byte__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9A78, Dictionary_2_System_Byte_System_Type__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9A80, Dictionary_2_System_Type_Photon_Bolt_ObjectPool_1__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9A90, Dictionary_2_System_Type_System_Byte__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9AC0, Dictionary_2_System_Type_Photon_Bolt_Internal_IFactory___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9AD8, Dictionary_2_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9AE0, Dictionary_2_System_Byte_System_Type___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9AE8, Dictionary_2_System_Type_Photon_Bolt_ObjectPool_1___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9AF0, Dictionary_2_System_Type_System_Byte___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9AF8, Dictionary_2_System_Byte_System_Type__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9B00, Dictionary_2_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9B08, Dictionary_2_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9B10, Dictionary_2_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9B18, Dictionary_2_System_Type_System_Byte__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9B20, Dictionary_2_System_Type_Photon_Bolt_ObjectPool_1__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9B28, Dictionary_2_System_Type_Photon_Bolt_Internal_IFactory__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9B48, ObjectPool_1_Photon_Bolt_Internal_PooledProtocolTokenBase__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9B50, Dictionary_2_System_Byte_System_Type__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9B58, ObjectPool_1_Photon_Bolt_Internal_PooledProtocolTokenBase__get_Available__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9B68, Dictionary_2_System_Type_Photon_Bolt_ObjectPool_1__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9B80, Dictionary_2_System_Type_System_Byte__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9B98, Dictionary_2_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9BA0, Dictionary_2_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9BB0, Dictionary_2_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9BB8, Dictionary_2_System_Type_Photon_Bolt_Internal_IFactory__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9BC0, Dictionary_2_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9BC8, Dictionary_2_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9BE8, Queue_1_Photon_Bolt_Internal_ControlCommand___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9BF8, Queue_1_Photon_Bolt_Internal_ControlCommand__Peek__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9C00, Queue_1_Photon_Bolt_Internal_ControlCommand__Dequeue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9C08, Queue_1_Photon_Bolt_Internal_ControlCommand__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9C10, Queue_1_Photon_Bolt_Internal_ControlCommand__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9C20, Queue_1_T_Enumerator_Photon_Bolt_Internal_ControlCommand__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9C30, Queue_1_T_Enumerator_Photon_Bolt_Internal_ControlCommand__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9C38, Queue_1_T_Enumerator_Photon_Bolt_Internal_ControlCommand__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9C48, Queue_1_Photon_Bolt_Internal_ControlCommand__Enqueue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9C50, List_1_System_Action__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9C60, List_1_System_Action__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9C90, DelegateHelpers_InvokeCallbacksSafe_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9D00, GameObject_GetComponent_38__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9D10, List_1_Photon_Bolt_Collections_STuple_2__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9D18, LinkedList_1_Photon_Bolt_BoltConnection__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9D28, List_1_System_Action___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9D30, DelegateHelpers_InvokeCallbacksSafe_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9D38, CallbackArray_1_System_Action_2__4_get_length__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9D50, List_1_T_Enumerator_System_Action__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9D70, List_1_System_Action__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9D78, List_1_T_Enumerator_System_Action__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9D88, List_1_T_Enumerator_System_Action__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9E30, LinkedList_1_Photon_Bolt_BoltConnection___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9E40, List_1_Photon_Bolt_Collections_STuple_2___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9E60, Dictionary_2_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9E80, BoltNetwork_RegisterTokenClass_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9E90, BoltDoubleList_1_Photon_Bolt_Entity___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9EA8, BoltNetwork_RegisterTokenClass_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9EE8, Dictionary_2_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9F30, Dictionary_2_TKey_TValue_ValueCollection_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9F40, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9F50, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9F70, Enumerable_Cast_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9F80, Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_CustomController_CustomControllerMap__wlIXihzDaiWJqyTKSzVwLUmcSFne__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9F88, Enumerable_Where_19__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9F98, Enumerable_ToDictionary_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9FA8, StringHelpers_MakeUniqueName_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9FB8, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CC9FE8, Dictionary_2_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA180, LinkedList_1_Photon_Bolt_BoltConnection__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA1A0, LinkedList_1_Photon_Bolt_BoltConnection__AddLast__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA1C0, Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_Joystick_JoystickMap__wlIXihzDaiWJqyTKSzVwLUmcSFne__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA1D0, UdpEvent_As_16__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA1E0, UdpEvent_As_17__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA208, UdpEvent_As_18__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA218, UdpEvent_As_19__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA228, UdpEvent_As_20__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA238, UdpEvent_As_21__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA248, UdpEvent_As_22__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA258, UdpEvent_As_23__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA268, UdpEvent_As_24__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA280, UdpEvent_As_25__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA290, UdpEvent_As_26__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA2A8, UdpEvent_As_27__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA2C0, UdpEvent_As_28__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA2D0, UdpEvent_As_29__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA2F0, List_1_Photon_Bolt_Entity__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA2F8, InputManager_1_RegisterPrecompiledLayout_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA308, InputManager_1_RegisterPrecompiledLayout_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA318, InputManager_1_RegisterPrecompiledLayout_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA328, List_1_Photon_Bolt_Entity__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA510, Dictionary_2_System_Int32_UnityEngine_InputSystem_InputDevice___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA540, List_1_Photon_Bolt_Collections_STuple_2__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA550, List_1_T_Enumerator_Photon_Bolt_Collections_STuple_2__1_get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA5B0, List_1_T_Enumerator_Photon_Bolt_Collections_STuple_2__1_MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA5C8, Dictionary_2_System_Int32_UnityEngine_InputSystem_InputDevice__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA5F0, Array_FindIndex_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA5F8, List_1_T_Enumerator_Photon_Bolt_Collections_STuple_2__1_Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA600, ArrayHelpers_Clear_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA680, Dictionary_2_System_Int32_UnityEngine_InputSystem_InputDevice__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA6C8, BoltIterator_1_Photon_Bolt_Entity__Next__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA6F0, BoltDoubleList_1_Photon_Bolt_Entity__GetIterator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA708, DelegateHelpers_InvokeCallbacksSafe_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA710, BoltDoubleList_1_Photon_Bolt_Entity__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA718, GameObject_AddComponent_42__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA728, Enumerable_ToArray_22__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA758, ArrayHelpers_Contains_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA768, ArrayHelpers_AppendWithCapacity_25__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA780, Dictionary_2_System_Int32_UnityEngine_InputSystem_InputDevice__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA7E8, CallbackArray_1_UnityEngine_InputSystem_Layouts_InputDeviceFindControlLayoutDelegate__UnlockForChanges__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA7F0, CallbackArray_1_UnityEngine_InputSystem_Layouts_InputDeviceFindControlLayoutDelegate__LockForChanges__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA7F8, CallbackArray_1_UnityEngine_InputSystem_Layouts_InputDeviceFindControlLayoutDelegate__get_length__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA800, CallbackArray_1_UnityEngine_InputSystem_Layouts_InputDeviceFindControlLayoutDelegate__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA808, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_String__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA828, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_Func_1__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA830, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_Type__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA840, ReadOnlyArray_1_System_String__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA848, ReadOnlyArray_1_System_String__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA890, List_1_UnityEngine_InputSystem_InputDevice__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA898, Enumerable_Where_20__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA8C0, Enumerable_Select_56__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA8E0, List_1_UnityEngine_InputSystem_InputDevice__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA8E8, List_1_UnityEngine_InputSystem_InputDevice__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA8F0, List_1_UnityEngine_InputSystem_InputDevice___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA8F8, InputDevice_Build_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA938, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_String__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA940, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__1_TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA950, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__1_set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA990, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_Func_1__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCA9A8, DelegateHelpers_InvokeCallbacksSafe_12__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCAA28, CallbackArray_1_System_Action_2__3_AddCallback__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCAA38, CallbackArray_1_System_Action_2__3_RemoveCallback__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCAA40, CallbackArray_1_UnityEngine_InputSystem_LowLevel_InputDeviceCommandDelegate__RemoveCallback__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCAA68, CallbackArray_1_UnityEngine_InputSystem_Layouts_InputDeviceFindControlLayoutDelegate__AddCallback__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCAA78, CallbackArray_1_UnityEngine_InputSystem_Layouts_InputDeviceFindControlLayoutDelegate__RemoveCallback__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCAA90, CallbackArray_1_System_Action__RemoveCallback__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCAAB8, CallbackArray_1_System_Action_2__4_AddCallback__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCAAC0, CallbackArray_1_System_Action_2__4_RemoveCallback__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCAAD0, CallbackArray_1_System_Action__AddCallback__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCAAF0, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_Func_1__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCAAF8, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__1_get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCAB00, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_Type__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCAB08, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_String__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCAB10, CallbackArray_1_System_Action_2__2_AddCallback__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCAB18, CallbackArray_1_System_Action_2__2_RemoveCallback__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCAB20, CallbackArray_1_UnityEngine_InputSystem_LowLevel_InputDeviceCommandDelegate__AddCallback__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCAB28, CallbackArray_1_System_Action_2__1_AddCallback__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCAB30, CallbackArray_1_System_Action_2__1_RemoveCallback__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCAB48, ReadOnlyArray_1_UnityEngine_InputSystem_Controls_TouchControl__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCAB58, ReadOnlyArray_1_UnityEngine_InputSystem_Controls_TouchControl__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCAB78, InputControlExtensions_FindInParentChain_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCAB80, InputState_Change_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCABA0, Queue_1_System_String__Dequeue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCABB0, Queue_1_System_String__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCABC0, Queue_1_System_String__Enqueue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCABE0, Queue_1_System_String___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCABE8, ReadOnlyArray_1_UnityEngine_InputSystem_Controls_TouchControl___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCABF0, InputControl_GetChildControl_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCAC48, List_1_Photon_Bolt_Utils_BoltLog_IWriter__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCAC60, List_1_Photon_Bolt_Utils_BoltLog_IWriter__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCAC70, List_1_Photon_Bolt_Utils_BoltLog_IWriter___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCAD48, Enumerable_Count_19__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCAD50, Enumerable_Any_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCAD78, Enumerable_Count_20__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCAE30, ArrayHelpers_Erase_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCAEA0, Enumerable_Where_21__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCAED0, BoltDoubleList_1_Photon_Bolt_Entity__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCAED8, Enumerable_OrderBy_14__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCAEF0, Enumerable_FirstOrDefault_13__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCAF60, GameObject_AddComponent_43__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCB008, ArrayHelpers_Append_16__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCB0F0, ArrayHelpers_Erase_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCB1D0, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_System_Func_1__get_Key__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCB220, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Func_1__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCB228, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_Func_1__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCB238, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Func_1__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCB240, ObjectPool_1_Photon_Bolt_LagCompensation_BoltPhysicsHits___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCB248, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Func_1__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCB270, ObjectPool_1_Photon_Bolt_LagCompensation_BoltPhysicsHits__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCB2C0, BoltDoubleList_1_Photon_Bolt_LagCompensation_BoltHitboxWorldSnapshot___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCB2C8, BoltDoubleList_1_Photon_Bolt_LagCompensation_BoltHitboxBody___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCB2D0, BoltDoubleList_1_Photon_Bolt_LagCompensation_BoltHitboxWorldSnapshot__GetIterator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCB2E8, BoltIterator_1_Photon_Bolt_LagCompensation_BoltHitboxWorldSnapshot__Next__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCB2F0, BoltDoubleList_1_Photon_Bolt_LagCompensation_BoltHitboxWorldSnapshot__get_last__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCB320, ObjectPool_1_Photon_Bolt_LagCompensation_BoltPhysicsHits__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCB328, BoltSingleList_1_Photon_Bolt_LagCompensation_BoltHitboxBodySnapshot__GetIterator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCB340, ArrayHelpers_Append_17__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCB350, BoltIterator_1_Photon_Bolt_LagCompensation_BoltHitboxBodySnapshot__Next__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCB368, BoltIterator_1_Photon_Bolt_LagCompensation_BoltHitboxBody__Next__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCB370, BoltDoubleList_1_Photon_Bolt_LagCompensation_BoltHitboxWorldSnapshot__get_count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCB388, ObjectPool_1_Photon_Bolt_LagCompensation_BoltHitboxWorldSnapshot__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCB390, BoltDoubleList_1_Photon_Bolt_LagCompensation_BoltHitboxWorldSnapshot__AddLast__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCB398, BoltDoubleList_1_Photon_Bolt_LagCompensation_BoltHitboxWorldSnapshot__RemoveFirst__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCB3A8, BoltDoubleList_1_Photon_Bolt_LagCompensation_BoltHitboxBody__GetIterator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCB3B0, BoltDoubleList_1_Photon_Bolt_LagCompensation_BoltHitboxBody__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCB3C0, BoltDoubleList_1_Photon_Bolt_LagCompensation_BoltHitboxBody__AddLast__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCB3E0, ObjectPool_1_Photon_Bolt_LagCompensation_BoltHitboxWorldSnapshot___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCB3F0, ObjectPool_1_Photon_Bolt_LagCompensation_BoltHitboxWorldSnapshot__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCB3F8, BoltSingleList_1_Photon_Bolt_LagCompensation_BoltHitboxBodySnapshot___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCB418, BoltSingleList_1_Photon_Bolt_LagCompensation_BoltHitboxBodySnapshot__get_count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCB420, BoltSingleList_1_Photon_Bolt_LagCompensation_BoltHitboxBodySnapshot__RemoveFirst__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCB428, BoltSingleList_1_Photon_Bolt_LagCompensation_BoltHitboxBodySnapshot__AddLast__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCB440, ObjectPool_1_Photon_Bolt_LagCompensation_BoltHitboxBodySnapshot___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCB468, ObjectPool_1_Photon_Bolt_LagCompensation_BoltHitboxBodySnapshot__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCB480, ObjectPool_1_Photon_Bolt_LagCompensation_BoltHitboxBodySnapshot__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCB580, ObjectPool_1_Photon_Bolt_Channel_CommandHistory_CommandRecord___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCB588, ObjectPool_1_Photon_Bolt_Channel_CommandHistory_CommandRecord__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCB590, ObjectPool_1_Photon_Bolt_Channel_CommandHistory_CommandRecord__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCB598, BoltDoubleList_1_Photon_Bolt_Channel_CommandHistory_CommandRecord__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCB5A0, Dictionary_2_System_Int32_Photon_Bolt_Collections_BoltDoubleList_1__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCB5A8, BoltDoubleList_1_Photon_Bolt_Channel_CommandHistory_CommandRecord___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCB5B0, BoltDoubleList_1_Photon_Bolt_Channel_CommandHistory_CommandRecord__RemoveLast__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCB5C8, BoltDoubleList_1_Photon_Bolt_Channel_CommandHistory_CommandRecord__AddFirst__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCB5D0, BoltDoubleList_1_Photon_Bolt_Channel_CommandHistory_CommandRecord__get_count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCB5D8, BoltDoubleList_1_Photon_Bolt_Channel_CommandHistory_CommandRecord__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCB5E0, Dictionary_2_System_Int32_Photon_Bolt_Collections_BoltDoubleList_1__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCB5F0, Dictionary_2_System_Int32_Photon_Bolt_Collections_BoltDoubleList_1___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCB5F8, BoltDoubleList_1_Photon_Bolt_Command__Next__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCB600, BoltDoubleList_1_Photon_Bolt_Command__get_last__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCB608, BoltDoubleList_1_Photon_Bolt_Command__Prev__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCB610, Dictionary_2_Photon_Bolt_NetworkId_Photon_Bolt_Internal_EntityProxy__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCB618, Component_GetComponent_39__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCB630, GameObject_GetComponent_39__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCB840, Object_1_FindObjectsOfType_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCB898, Resources_Load_13__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCB9A8, Resources_Load_14__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCB9C0, GameObject_GetComponent_40__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCB9C8, GameObject_AddComponent_44__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCC178, List_1_TheVegetationEngine_TVETerrainLayerSettings__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCC180, List_1_TheVegetationEngine_TVETerrainLayerSettings__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCC188, List_1_TheVegetationEngine_TVETerrainLayerSettings__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCC190, Component_GetComponent_40__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCC1C0, Resources_Load_15__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCC1D0, GameObject_GetComponent_41__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCC1D8, GameObject_GetComponent_42__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCC1E0, GameObject_GetComponent_43__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCC1E8, GameObject_GetComponent_44__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCC1F0, GameObject_AddComponent_45__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCC1F8, GameObject_AddComponent_46__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCC200, GameObject_AddComponent_47__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCC208, GameObject_AddComponent_48__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCC210, GameObject_AddComponent_49__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCC218, GameObject_AddComponent_50__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCC248, List_1_TheVegetationEngine_TVEElement__Sort__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCC268, List_1_TheVegetationEngine_TVEElement__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCC278, List_1_UnityEngine_Renderer__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCC280, Resources_Load_16__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCC2E0, List_1_TheVegetationEngine_TVEInstanced___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCC2F8, List_1_TheVegetationEngine_TVERenderData___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCC538, Resources_Load_17__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCC540, Resources_Load_18__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCC5B0, List_1_TheVegetationEngine_TVEElementPropertyData__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCC5C0, List_1_TheVegetationEngine_TVEElementPropertyData__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCC5F8, List_1_TheVegetationEngine_TVEInstanced__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCC608, List_1_TheVegetationEngine_TVEInstanced__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCC628, List_1_TheVegetationEngine_TVEElement__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCC638, List_1_TheVegetationEngine_TVEInstanced__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCC650, List_1_TheVegetationEngine_TVEElement__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCC660, List_1_TheVegetationEngine_TVEElement__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCC728, List_1_TheVegetationEngine_TVETerrainLayerSettings___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCC788, List_1_TheVegetationEngine_TVEElement___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCC7C0, List_1_TheVegetationEngine_TVERenderData__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCC7D0, List_1_TheVegetationEngine_TVERenderData__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCC7E8, List_1_TheVegetationEngine_TVERenderData__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCC7F8, List_1_TheVegetationEngine_TVERenderData__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCC808, List_1_TheVegetationEngine_TVERenderData__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCCB38, List_1_Kalagaan_BlendShapesPresetTool_BlendShapesPresetTemplateBase_BlendShapeData___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCCB48, List_1_Kalagaan_BlendShapesPresetTool_BlendShapesPresetTemplateBase_PresetData___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCCB60, List_1_Kalagaan_BlendShapesPresetTool_BlendShapesPresetControllerBase___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCCB70, List_1_Kalagaan_BlendShapesPresetTool_BlendShapesPresetControllerBase_PresetState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCCB88, List_1_Kalagaan_BlendShapesPresetTool_BlendShapesPresetControllerBase_PresetState__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCCB90, List_1_Kalagaan_BlendShapesPresetTool_BlendShapesPresetTemplateBase_PresetData__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCCB98, List_1_Kalagaan_BlendShapesPresetTool_BlendShapesPresetTemplateBase_BlendShapeData__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCCBA0, List_1_Kalagaan_BlendShapesPresetTool_BlendShapesPresetTemplateBase_BlendShapeData__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCCBA8, List_1_UnityEngine_SkinnedMeshRenderer__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCCBB8, List_1_Kalagaan_BlendShapesPresetTool_BlendShapesPresetControllerBase_PresetState__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCCBD0, List_1_Kalagaan_BlendShapesPresetTool_BlendShapesPresetTemplateBase_PresetData__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCCC28, ChangeEvent_1_System_String__get_newValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCCC30, CallbackEventHandler_UnregisterCallback_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCCC38, CallbackEventHandler_RegisterCallback_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCCC50, INotifyValueChangedExtensions_UnregisterValueChangedCallback_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCCC58, INotifyValueChangedExtensions_RegisterValueChangedCallback_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCCC70, EventBase_1_GeometryChangedEvent__TypeId__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCCC88, StyleEnum_1_Visibility__op_Implicit__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCCCB0, KeyboardEventBase_1_KeyDownEvent__get_shiftKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCCD68, CallbackEventHandler_RegisterCallback_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCCDA8, List_1_UnityEngine_GameObject__AddRange__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCCDF0, List_1_ch_sycoforge_Combine_MeshTransform__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCCE08, List_1_ch_sycoforge_Combine_MeshTransform___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCCE10, Dictionary_2_UnityEngine_Material_List_1_ch_sycoforge_Combine_MeshTransform__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCCE18, Dictionary_2_UnityEngine_Material_List_1_ch_sycoforge_Combine_MeshTransform___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCCE20, Dictionary_2_UnityEngine_Material_List_1_ch_sycoforge_Combine_MeshTransform__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCCE30, List_1_ch_sycoforge_Combine_MeshTransform__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCCE40, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Material_List_1_ch_sycoforge_Combine_MeshTransform__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCCE48, List_1_T_Enumerator_ch_sycoforge_Combine_MeshTransform__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCCE50, Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_Material_List_1_ch_sycoforge_Combine_MeshTransform__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCCE58, List_1_T_Enumerator_ch_sycoforge_Combine_MeshTransform__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCCE60, Dictionary_2_UnityEngine_Material_List_1_ch_sycoforge_Combine_MeshTransform__get_Keys__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCCE68, Dictionary_2_UnityEngine_Material_List_1_ch_sycoforge_Combine_MeshTransform__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCCE70, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Material_List_1_ch_sycoforge_Combine_MeshTransform__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCCE90, Dictionary_2_UnityEngine_Material_ch_sycoforge_Combine_MeshTransform__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCCE98, Dictionary_2_UnityEngine_Material_ch_sycoforge_Combine_MeshTransform___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCCEA0, Dictionary_2_UnityEngine_Material_ch_sycoforge_Combine_MeshTransform__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCCEA8, Object_1_FindObjectsOfType_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCCEB0, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Material_List_1_ch_sycoforge_Combine_MeshTransform__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCCEB8, List_1_Dissonance_VoiceProximityReceiptTrigger__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCCEC8, Object_1_FindObjectsOfType_12__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCCED0, List_1_T_Enumerator_ch_sycoforge_Combine_MeshTransform__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCCEE8, EasyCombine_GetObjectsByProperty_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCCEF0, List_1_T_Enumerator_Dissonance_VoiceProximityReceiptTrigger__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCCEF8, EasyCombine_GetObjectsByProperty_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCCF00, Enumerable_Where_22__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCCF08, List_1_T_Enumerator_Dissonance_VoiceProximityBroadcastTrigger__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCCF18, List_1_T_Enumerator_Dissonance_VoiceProximityBroadcastTrigger__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCCF38, List_1_T_Enumerator_Dissonance_VoiceProximityReceiptTrigger__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCCF40, List_1_Dissonance_VoiceProximityBroadcastTrigger__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCCF58, List_1_T_Enumerator_Dissonance_VoiceProximityReceiptTrigger__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCCF70, Enumerable_ToList_16__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCCF80, Enumerable_Where_23__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCCF88, Enumerable_ToList_17__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCCFB0, List_1_UnityEngine_Material___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCCFC8, List_1_T_Enumerator_Dissonance_VoiceProximityBroadcastTrigger__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCCFE8, Dictionary_2_UnityEngine_Material_ch_sycoforge_Combine_MeshTransform__get_Keys__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCCFF8, List_1_UnityEngine_Material__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD010, Dictionary_2_UnityEngine_Material_ch_sycoforge_Combine_MeshTransform__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD028, GameObject_AddComponent_51__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD030, Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_Material_IList_1_UnityEngine_GameObject__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD038, Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_Shader_IList_1_UnityEngine_GameObject__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD048, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Shader_IList_1_UnityEngine_GameObject__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD050, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Shader_IList_1_UnityEngine_GameObject__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD060, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Material_IList_1_UnityEngine_GameObject__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD068, EasyCombine_InitializeProgressReport_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD070, Dictionary_2_UnityEngine_Material_IList_1_UnityEngine_GameObject__get_Keys__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD078, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Material_IList_1_UnityEngine_GameObject__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD080, EasyCombine_InitializeProgressReport_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD088, Dictionary_2_UnityEngine_Shader_IList_1_UnityEngine_GameObject__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD098, Dictionary_2_UnityEngine_Shader_IList_1_UnityEngine_GameObject__get_Keys__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD0A0, Dictionary_2_UnityEngine_Material_IList_1_UnityEngine_GameObject__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD0A8, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Shader_IList_1_UnityEngine_GameObject__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD0B0, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Material_IList_1_UnityEngine_GameObject__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD218, Log_Warn_18__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD238, Log_Error_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD258, Log_Error_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD280, Pool_1_System_Byte___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD290, ReadonlyLockedValue_1_Dissonance_Datastructures_Pool_1___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD2F8, EmptyObjects_1_Rewired_InputLayout__get_EmptyReadOnlyIListT__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD300, EmptyObjects_1_Rewired_InputAction__get_EmptyReadOnlyIListT__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD320, EmptyObjects_1_Rewired_InputMapCategory__get_EmptyReadOnlyIListT__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD330, EmptyObjects_1_Rewired_InputCategory__get_EmptyReadOnlyIListT__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD5B0, EmptyObjects_1_Rewired_Controller__get_array__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD5B8, EmptyObjects_1_Rewired_Controller__get_EmptyReadOnlyIListT__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD5F8, CallbackArray_1_System_Action_2__5_LockForChanges__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD600, CallbackArray_1_System_Action_2__5_get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD608, CallbackArray_1_System_Action_2__5_UnlockForChanges__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD618, DelegateHelpers_InvokeCallbacksSafe_AnyCallbackReturnsTrue_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD660, InputControlList_1_InputDevice__AddSlice__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD670, InputControlList_1_InputDevice__Sort__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD678, InputControlList_1_InputDevice__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD688, InputControlScheme_PickDevicesFrom_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD6B8, CallbackArray_1_System_Action_3__LockForChanges__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD6C8, CallbackArray_1_System_Action_3__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD6D0, CallbackArray_1_System_Action_3__UnlockForChanges__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD6F0, CallbackArray_1_System_Action_3__get_length__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD710, ArrayHelpers_MoveSlice_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD718, ArrayHelpers_IndexOfReference_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD730, InputControlList_1_InputDevice___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD738, ArrayHelpers_ContainsReference_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD758, ArrayHelpers_EraseSliceWithCapacity_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD7A8, String_Join_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD7B8, CallbackArray_1_System_Func_3__AddCallback__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD7C8, CallbackArray_1_System_Func_3__RemoveCallback__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD808, CallbackArray_1_System_Action_3__AddCallback__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD818, CallbackArray_1_System_Action_2__5_RemoveCallback__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD828, CallbackArray_1_System_Action_2__5_get_length__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD838, CallbackArray_1_System_Action_3__RemoveCallback__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD848, CallbackArray_1_System_Action_2__5_AddCallback__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD868, InputSystem_RegisterLayout_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD890, InputSystem_RegisterLayout_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD8B8, InputSystem_RegisterLayout_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD8C0, InputSystem_RegisterLayout_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD8D0, InputSystem_RegisterLayout_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD8F8, InputSystem_RegisterLayout_12__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD900, InputSystem_RegisterLayout_13__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD908, InputSystem_RegisterLayout_14__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD910, InputSystem_RegisterLayout_15__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD918, InputSystem_RegisterLayout_16__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD920, InputSystem_RegisterLayout_17__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD928, InputSystem_RegisterLayout_18__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD930, InputSystem_RegisterLayout_19__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD9E0, InputSystem_RegisterLayout_20__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD9E8, InputSystem_RegisterLayout_21__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD9F0, InputSystem_RegisterLayout_22__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCD9F8, InputSystem_RegisterLayout_23__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCDA00, InputSystem_RegisterLayout_24__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCDA08, InputSystem_RegisterLayout_25__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCDA10, InputSystem_RegisterLayout_26__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCDA18, InputSystem_RegisterLayout_27__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCDA30, InputSystem_RegisterLayout_28__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCDA38, InputSystem_RegisterLayout_29__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCDA40, InputSystem_RegisterLayout_30__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCDA48, InputSystem_RegisterLayout_31__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCDA98, JsonUtility_FromJson_17__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCDC00, InputSystem_GetDevice_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCDCB0, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_PlayerInput__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCDCB8, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_PlayerInput__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCDCC0, ReadOnlyArray_1_UnityEngine_InputSystem_PlayerInput__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCDCC8, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_PlayerInput__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCDCF8, ArrayHelpers_ContainsReference_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCDD00, ReadOnlyArray_1_UnityEngine_InputSystem_PlayerInput__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCDD08, InputControlList_1_InputDevice__IndexOf__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCDD10, InputControlScheme_FindControlSchemeForDevices_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCDD18, InputControlList_1_InputDevice__SwapElements__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCDD20, UnityEvent_1_UnityEngine_InputSystem_PlayerInput___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCDD48, ArrayHelpers_IndexOfReference_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCDD50, ArrayHelpers_EraseAtWithCapacity_22__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCDDA0, UnityEvent_1_UnityEngine_InputSystem_PlayerInput__Invoke__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCDDA8, DelegateHelpers_InvokeCallbacksSafe_13__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCDDC0, InputControlList_1_InputDevice__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCDDC8, InputControlScheme_FindControlSchemeForDevices_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCDDD0, InputControlScheme_FindControlSchemeForDevices_12__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCDE08, ArrayHelpers_SwapElements_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCDE10, ArrayHelpers_AppendWithCapacity_26__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCDE68, GameObject_GetComponentInChildren_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCDE78, Object_1_Instantiate_18__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCDE80, ReadOnlyArray_1_UnityEngine_InputSystem_InputActionMap__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCDE88, ReadOnlyArray_1_UnityEngine_InputSystem_InputActionMap__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCDEB8, InputControlScheme_FindControlSchemeForDevices_13__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCDEE0, ReadOnlyArray_1_UnityEngine_InputSystem_PlayerInput___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCDF00, ReadOnlyArray_1_UnityEngine_InputSystem_PlayerInput_ActionEvent__op_Implicit__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCDF08, ReadOnlyArray_1_UnityEngine_InputSystem_PlayerInput_ActionEvent__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCDF10, CallbackArray_1_System_Action_1__3_AddCallback__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCDF20, CallbackArray_1_System_Action_1__3_RemoveCallback__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCDF98, ReadOnlyArray_1_System_String___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCDFA0, ReadOnlyArray_1_System_String__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE020, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_String__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE028, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_String__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE030, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_String__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE038, KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_System_String__get_Key__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE040, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_String__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE068, List_1_Cinemachine_CinemachineVirtualCameraBase__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE078, Dictionary_2_Cinemachine_CinemachineVirtualCameraBase_System_Int32___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE080, Dictionary_2_Cinemachine_CinemachineVirtualCameraBase_System_Int32__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE098, Dictionary_2_Cinemachine_CinemachineVirtualCameraBase_System_Int32__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE0D0, GameObject_AddComponent_52__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE0D8, CinemachineVirtualCamera_GetCinemachineComponent_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE0E0, GameObject_AddComponent_53__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE0E8, GameObject_AddComponent_54__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE0F0, CinemachineVirtualCamera_GetCinemachineComponent_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE0F8, CinemachineVirtualCamera_AddCinemachineComponent_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE100, Component_GetComponent_41__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE130, CinemachineExtension_GetExtraState_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE140, CinemachineExtension_GetExtraState_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE148, List_1_List_1_UnityEngine_Vector2__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE158, List_1_List_1_UnityEngine_Vector2__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE160, List_1_List_1_UnityEngine_Vector2___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE180, List_1_List_1_UnityEngine_Vector2__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE190, CinemachineExtension_GetExtraState_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE1C0, List_1_List_1_UnityEngine_Vector3___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE1C8, List_1_T_Enumerator_Cinemachine_CinemachineCollider_VcamExtraState__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE1D0, CinemachineExtension_GetAllExtraStates_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE1D8, List_1_Cinemachine_CinemachineCollider_VcamExtraState__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE1E0, List_1_T_Enumerator_Cinemachine_CinemachineCollider_VcamExtraState__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE1E8, List_1_T_Enumerator_Cinemachine_CinemachineCollider_VcamExtraState__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE1F0, CinemachineExtension_GetExtraState_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE250, UnityEvent_2_Cinemachine_ICinemachineCamera_Cinemachine_ICinemachineCamera___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE258, UnityEvent_1_Cinemachine_CinemachineBrain___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE260, List_1_Cinemachine_CinemachineBrain_BrainFrame___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE288, UnityEvent_1_Cinemachine_CinemachineBrain__Invoke__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE298, UnityEvent_2_Cinemachine_ICinemachineCamera_Cinemachine_ICinemachineCamera__Invoke__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE2A0, List_1_Cinemachine_CinemachineBrain_BrainFrame__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE2B8, List_1_Cinemachine_CinemachineBrain_BrainFrame__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE2E0, List_1_Cinemachine_CinemachineBrain_BrainFrame__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE2F8, List_1_Cinemachine_CinemachineBrain_BrainFrame__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE300, List_1_Cinemachine_CinemachineBrain_BrainFrame__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE318, Component_TryGetComponent_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE330, List_1_Cinemachine_CinemachineVirtualCameraBase___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE338, Component_GetComponentsInChildren_17__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE340, List_1_Cinemachine_CinemachineVirtualCameraBase__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE348, List_1_Cinemachine_CinemachineVirtualCameraBase__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE380, UnityEvent_1_Cinemachine_CinemachineBrain__RemoveListener__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE388, UnityEvent_1_Cinemachine_CinemachineBrain__AddListener__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE3B0, ScriptPlayable_1_CinemachineMixer__op_Implicit__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE3B8, ScriptPlayable_1_CinemachineMixer__Create__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE3C0, PlayableExtensions_SetInputCount_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE410, IPropertyCollector_AddFromName_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE420, IPropertyCollector_AddFromName_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE428, ScriptPlayable_1_CinemachineShotPlayable__op_Implicit__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE430, ScriptPlayable_1_CinemachineShotPlayable__Create__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE438, ExposedReference_1_Cinemachine_CinemachineVirtualCameraBase__Resolve__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE448, PlayableExtensions_GetTime_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE458, ScriptPlayable_1_CinemachineShotPlayable__op_Explicit__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE460, ScriptPlayable_1_CinemachineShotPlayable__GetBehaviour__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE470, GameObject_GetComponent_45__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE480, PlayableExtensions_GetDuration_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE4D8, List_1_kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ__Sort__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE4F8, List_1_kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE500, List_1_kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE510, List_1_kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE528, List_1_kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE538, List_1_kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE540, List_1_kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ__ForEach__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE550, List_1_IEpqttsJBVpdPbiISguYNqxToTKd__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE560, List_1_IEpqttsJBVpdPbiISguYNqxToTKd___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE5A0, List_1_YbqFPqlOhPbwgAIFLLewBFaMbWuFb_bmycphkAyqKNoaTIKLUfvetjHrnTA_wAEbikHXPiUhjCZkCxpMjGhOLrYn__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE5B0, List_1_YbqFPqlOhPbwgAIFLLewBFaMbWuFb_bmycphkAyqKNoaTIKLUfvetjHrnTA_wAEbikHXPiUhjCZkCxpMjGhOLrYn__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE5B8, List_1_YbqFPqlOhPbwgAIFLLewBFaMbWuFb_bmycphkAyqKNoaTIKLUfvetjHrnTA_wAEbikHXPiUhjCZkCxpMjGhOLrYn__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE5C0, List_1_YbqFPqlOhPbwgAIFLLewBFaMbWuFb_bmycphkAyqKNoaTIKLUfvetjHrnTA_wAEbikHXPiUhjCZkCxpMjGhOLrYn__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE5D0, List_1_YbqFPqlOhPbwgAIFLLewBFaMbWuFb_bmycphkAyqKNoaTIKLUfvetjHrnTA_wAEbikHXPiUhjCZkCxpMjGhOLrYn___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE650, rULHSySJJYaatQjUGwzXfVaVsuaC_3_eIOeMVETDBCpONALFPUSmkDfCaEg_uOqstchGzYFsOAddzFFaQYYGenBDb_tSPvxZUJjzaTiAEejeAOLKctGpmKA__FUJfGaoxYLbetWRDXDFhFIDNfYKBA__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE678, yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_System_Collections_Generic_List_1__fSiBAGQORirIHjSLxbZfXghAjhEo__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE680, yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_System_Collections_Generic_List_1__yzHwsiiQqVEpTLidEXPmLEnGyiii__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE688, yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_System_Collections_Generic_List_1__MHFXnLCHBjIWBvHFZCUVEhCwIIXE__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE6A8, List_1_YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE6C8, List_1_YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE6D0, List_1_YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE6D8, List_1_YbqFPqlOhPbwgAIFLLewBFaMbWuFb_WCWrnemrMnIApfYLoPRnewDeJmzbA__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE6E0, List_1_YbqFPqlOhPbwgAIFLLewBFaMbWuFb_WCWrnemrMnIApfYLoPRnewDeJmzbA__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE6F8, List_1_YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE__Sort__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE710, EmptyObjects_1_IEpqttsJBVpdPbiISguYNqxToTKd__get_EmptyReadOnlyIListT__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE720, List_1_YbqFPqlOhPbwgAIFLLewBFaMbWuFb_WCWrnemrMnIApfYLoPRnewDeJmzbA__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE740, yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_System_Collections_Generic_List_1__xGrcbdURWhaVAdZWQTWYqrWsGkhM__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE748, List_1_YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE750, List_1_YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE760, yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_System_Collections_Generic_List_1__ixmAePEnLRGjkiYJbCTfPNBHXEcwB__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE780, List_1_YbqFPqlOhPbwgAIFLLewBFaMbWuFb_WCWrnemrMnIApfYLoPRnewDeJmzbA___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE7D0, InputSourceWrapper_1_HhyJayjEkazMHJnFosltszjdHjxA___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE7E0, yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_System_Collections_Generic_List_1___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE890, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_GetJoysticks_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCE9C0, rULHSySJJYaatQjUGwzXfVaVsuaC_3_eIOeMVETDBCpONALFPUSmkDfCaEg_uOqstchGzYFsOAddzFFaQYYGenBDb_tSPvxZUJjzaTiAEejeAOLKctGpmKA__KxfdpmJBpsDpzqdmlIiQUsKvGJbCA__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCEA18, InputSourceWrapper_1_HhyJayjEkazMHJnFosltszjdHjxA__get_source__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCEB68, Enumerable_Any_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCEBA0, Component_GetComponent_42__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCEBC0, List_1_Cinemachine_CinemachineComponentBase__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCEBC8, List_1_Cinemachine_CinemachineComponentBase__Sort__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCEBE0, List_1_Cinemachine_CinemachineComponentBase___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCEBF8, List_1_Cinemachine_CinemachineComponentBase__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCEC00, Component_GetComponents_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCEC10, GameObject_AddComponent_55__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCEC38, Component_GetComponent_43__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCEC50, CinemachineVirtualCamera_AddCinemachineComponent_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCEC58, CinemachineVirtualCamera_AddCinemachineComponent_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCEC98, List_1_Cinemachine_CinemachineStoryboard_CanvasInfo___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCED10, List_1_Cinemachine_CinemachineStoryboard_CanvasInfo__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCED50, GameObject_AddComponent_56__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCED58, GameObject_AddComponent_57__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCED78, GameObject_AddComponent_58__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCED80, List_1_Cinemachine_CinemachineStoryboard_CanvasInfo__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCED90, GameObject_GetComponentsInChildren_12__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCEDB0, GameObject_GetComponentInChildren_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCEE10, List_1_Cinemachine_CinemachineStoryboard_CanvasInfo__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCEE20, List_1_Cinemachine_CinemachineStoryboard_CanvasInfo__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCEE28, List_1_Cinemachine_CinemachineStoryboard_CanvasInfo__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCEF20, Dictionary_2_UnityEngine_AnimationClip_List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCEF40, Dictionary_2_UnityEngine_AnimationClip_List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCEF48, List_1_System_Threading_WaitHandle__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCEF50, Dictionary_2_UnityEngine_AnimationClip_List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCEF70, List_1_System_Threading_WaitHandle___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCEFA8, List_1_System_Threading_WaitHandle__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCEFB0, List_1_System_Threading_WaitHandle__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCEFB8, List_1_System_Threading_WaitHandle__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCEFC0, List_1_System_Threading_WaitHandle__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCF0C0, Array_Empty_47__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCF1F0, InputDeviceMatcher_WithCapability_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCF290, Nullable_1_UnityEngine_RenderMode__GetValueOrDefault__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCF298, Nullable_1_UnityEngine_RenderMode__get_HasValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCF2A0, Nullable_1_UnityEngine_RenderMode___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCF2F0, Component_GetComponentInParent_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCF338, InputSystem_RegisterLayoutMatcher_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCF350, InputSystem_RegisterLayout_32__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCF3D0, Nullable_1_UnityEngine_InputSystem_LowLevel_MouseButton__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCF3D8, Nullable_1_UnityEngine_InputSystem_LowLevel_MouseButton__get_HasValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCF410, Nullable_1_UnityEngine_InputSystem_LowLevel_MouseButton___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCF460, InlinedArray_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster__RemoveAtByMovingTailWithCapacity__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCF468, InputArrayExtensions_IndexOfReference_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCF4F8, InlinedArray_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster__AppendWithCapacity__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCF508, Dictionary_2_UnityEngine_InputSystem_InputAction_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCF510, Component_GetComponent_44__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCF528, InlinedArray_1_UnityEngine_InputSystem_InputControl__RemoveAtByMovingTailWithCapacity__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCF530, Dictionary_2_UnityEngine_InputSystem_InputAction_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCF538, Dictionary_2_UnityEngine_InputSystem_InputAction_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCF540, Dictionary_2_UnityEngine_InputSystem_InputAction_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCF548, Dictionary_2_UnityEngine_InputSystem_InputAction_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCF550, CallbackArray_1_System_Action_1__RemoveCallback__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCF558, Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1__2_get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCF560, Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1__2_get_HasValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCF580, InlinedArray_1_UnityEngine_InputSystem_InputControl__AppendWithCapacity__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCF590, InputArrayExtensions_IndexOfReference_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCF598, Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1__2__ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCF5B0, GameObject_GetComponent_46__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCF5B8, ExecuteEvents_Execute_19__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCF5C0, ExecuteEvents_Execute_20__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCF5C8, ExecuteEvents_Execute_21__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCF5E8, CallbackArray_1_System_Action_1__AddCallback__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCF608, ReadOnlyArrayExtensions_IndexOfReference_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCF620, InlinedArray_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCF6E8, List_1_NJXNwLLrhxyDOSGduoygSsnoYkiK__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCF6F0, List_1_rnwGumBskXMryeokghSZPtEShGNbB__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCF758, List_1_VmygOaZMePMYixMwHDTZwiDTgTwx_ynkBgOqbpMPRxusAAQsgHOtlPSzd___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCF760, List_1_rnwGumBskXMryeokghSZPtEShGNbB___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCF770, List_1_VmygOaZMePMYixMwHDTZwiDTgTwx_BOxQKWlqJkCqZgYbdmKoWcSioOHg___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCF780, List_1_NJXNwLLrhxyDOSGduoygSsnoYkiK__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCF788, List_1_VmygOaZMePMYixMwHDTZwiDTgTwx_KSREqnFwehoxndHZqHzDjWxKkJsRA___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCF790, List_1_NJXNwLLrhxyDOSGduoygSsnoYkiK___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCF798, List_1_VmygOaZMePMYixMwHDTZwiDTgTwx_ynkBgOqbpMPRxusAAQsgHOtlPSzd__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCF7A0, List_1_VmygOaZMePMYixMwHDTZwiDTgTwx_BOxQKWlqJkCqZgYbdmKoWcSioOHg__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCF7A8, List_1_VmygOaZMePMYixMwHDTZwiDTgTwx_KSREqnFwehoxndHZqHzDjWxKkJsRA__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCF7B0, List_1_rnwGumBskXMryeokghSZPtEShGNbB__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCF7B8, List_1_VmygOaZMePMYixMwHDTZwiDTgTwx_BOxQKWlqJkCqZgYbdmKoWcSioOHg__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCF7C8, List_1_VmygOaZMePMYixMwHDTZwiDTgTwx_ynkBgOqbpMPRxusAAQsgHOtlPSzd__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCF7D0, List_1_VmygOaZMePMYixMwHDTZwiDTgTwx_KSREqnFwehoxndHZqHzDjWxKkJsRA__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCF918, ObjectInstanceTracker_TryGetInstance_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCFA40, MiscTools_Swap_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCFA50, List_1_XWKLBhMJByLmRjCmXYTJulYaPqwJ_YaWBSOGSSrYuejjxIPgOgikwrUfr_LlnZLsKOkGcztEBJUXEELsmJjENbA___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCFA70, List_1_XWKLBhMJByLmRjCmXYTJulYaPqwJ_YaWBSOGSSrYuejjxIPgOgikwrUfr_LlnZLsKOkGcztEBJUXEELsmJjENbA__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCFA78, List_1_XWKLBhMJByLmRjCmXYTJulYaPqwJ_YaWBSOGSSrYuejjxIPgOgikwrUfr_LlnZLsKOkGcztEBJUXEELsmJjENbA__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCFA80, List_1_XWKLBhMJByLmRjCmXYTJulYaPqwJ_YaWBSOGSSrYuejjxIPgOgikwrUfr_LlnZLsKOkGcztEBJUXEELsmJjENbA__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCFB68, List_1_YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb_TKPMPusWChpubsSueSSSVXEvmtou___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCFB70, List_1_YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb_TKPMPusWChpubsSueSSSVXEvmtou__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCFB88, List_1_YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb_TKPMPusWChpubsSueSSSVXEvmtou__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCFB98, List_1_YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb_TKPMPusWChpubsSueSSSVXEvmtou__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCFBA8, List_1_YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb_TKPMPusWChpubsSueSSSVXEvmtou__Sort__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCFBB0, List_1_YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb_TKPMPusWChpubsSueSSSVXEvmtou__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCFC08, IndexedDictionary_2_System_Int32_Rewired_PlatformInputManager__GetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCFC30, IndexedDictionary_2_System_Int32_Rewired_PlatformInputManager__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCFC48, IndexedDictionary_2_System_Int32_Rewired_PlatformInputManager__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCFC50, IndexedDictionary_2_System_Int32_Rewired_PlatformInputManager___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCFC68, IndexedDictionary_2_System_Int32_Rewired_PlatformInputManager__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCFDD8, List_1_kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ_IPxIzDRSRdPphfeFncEoTAbRXhKJ__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCFE90, List_1_kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ_IPxIzDRSRdPphfeFncEoTAbRXhKJ__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCFEA0, List_1_kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ_IPxIzDRSRdPphfeFncEoTAbRXhKJ__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCFEA8, List_1_kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ_IPxIzDRSRdPphfeFncEoTAbRXhKJ__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCFEE0, List_1_kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ_IPxIzDRSRdPphfeFncEoTAbRXhKJ___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCFF40, Component_GetComponent_45__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCFF60, GameObject_GetComponent_47__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCFF80, HashSet_1_UnityEngine_GameObject__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCFF88, HashSet_1_UnityEngine_GameObject___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCFFA0, HashSet_1_UnityEngine_GameObject__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCFFA8, HashSet_1_UnityEngine_GameObject__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CCFFC0, Enumerable_First_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0030, Dictionary_2_UnityEngine_Transform_Cinemachine_UpdateTracker_UpdateStatus___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0038, Dictionary_2_UnityEngine_Transform_Cinemachine_UpdateTracker_UpdateStatus__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0040, Dictionary_2_UnityEngine_Transform_Cinemachine_UpdateTracker_UpdateStatus__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0050, KeyValuePair_2_UnityEngine_Transform_Cinemachine_UpdateTracker_UpdateStatus__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0058, KeyValuePair_2_UnityEngine_Transform_Cinemachine_UpdateTracker_UpdateStatus__get_Key__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0060, Dictionary_2_UnityEngine_Transform_Cinemachine_UpdateTracker_UpdateStatus__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0068, Dictionary_2_UnityEngine_Transform_Cinemachine_UpdateTracker_UpdateStatus__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0070, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Transform_Cinemachine_UpdateTracker_UpdateStatus__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0080, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Transform_Cinemachine_UpdateTracker_UpdateStatus__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0090, Dictionary_2_UnityEngine_Transform_Cinemachine_UpdateTracker_UpdateStatus__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0138, Dictionary_2_UnityEngine_Transform_Cinemachine_TargetPositionCache_CacheEntry__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0148, Dictionary_2_UnityEngine_Transform_Cinemachine_TargetPositionCache_CacheEntry__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0150, KeyValuePair_2_UnityEngine_Transform_Cinemachine_TargetPositionCache_CacheEntry__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0158, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Transform_Cinemachine_TargetPositionCache_CacheEntry__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0168, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Transform_Cinemachine_TargetPositionCache_CacheEntry__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0170, Dictionary_2_UnityEngine_Transform_Cinemachine_TargetPositionCache_CacheEntry__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0180, Dictionary_2_UnityEngine_Transform_Cinemachine_TargetPositionCache_CacheEntry___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0190, EventBase_1_PointerMoveEvent__TypeId__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD01A0, PointerEventBase_1_PointerMoveEvent__get_pointerId__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD01B8, GameObject_AddComponent_59__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD01C0, GameObject_AddComponent_60__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0200, List_1_T_Enumerator_List_1_Cinemachine_ClipperLib_IntPoint__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0208, Pool_1_Dissonance_ChannelProperties__Put__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0210, List_1_T_Enumerator_List_1_Cinemachine_ClipperLib_IntPoint__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0228, List_1_List_1_Cinemachine_ClipperLib_IntPoint__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0230, List_1_T_Enumerator_List_1_Cinemachine_ClipperLib_IntPoint__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0240, Pool_1_Dissonance_ChannelProperties__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0278, List_1_List_1_Cinemachine_ClipperLib_IntPoint__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0290, Pool_1_Dissonance_ChannelProperties___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD02B0, List_1_List_1_Cinemachine_ClipperLib_IntPoint__AddRange__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD02D8, List_1_List_1_Cinemachine_ClipperLib_IntPoint__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD02E0, List_1_List_1_Cinemachine_ClipperLib_IntPoint___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0300, List_1_List_1_Cinemachine_ClipperLib_IntPoint__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0308, List_1_List_1_Cinemachine_ClipperLib_IntPoint__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0328, List_1_List_1_Cinemachine_ClipperLib_IntPoint___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0340, Component_TryGetComponent_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0350, Component_TryGetComponent_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0358, Component_GetComponents_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0368, Component_GetComponentsInChildren_18__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0370, Component_GetComponentsInChildren_19__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0390, Enumerable_Any_12__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0398, List_1_Cinemachine_CinemachineExtension__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD03A0, List_1_Cinemachine_CinemachineExtension__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD03A8, List_1_Cinemachine_CinemachineExtension__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD03B8, List_1_Cinemachine_CinemachineExtension___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD03C0, List_1_Cinemachine_CinemachineExtension__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD03C8, List_1_Cinemachine_CinemachineExtension__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD03E8, List_1_Cinemachine_CinemachineBrain___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD03F0, List_1_List_1_Cinemachine_CinemachineVirtualCameraBase___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0418, Dictionary_2_Cinemachine_CinemachineVirtualCameraBase_Cinemachine_CinemachineCore_UpdateStatus__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0420, Dictionary_2_Cinemachine_CinemachineVirtualCameraBase_Cinemachine_CinemachineCore_UpdateStatus___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0428, Dictionary_2_Cinemachine_CinemachineVirtualCameraBase_Cinemachine_CinemachineCore_UpdateStatus__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0430, List_1_Cinemachine_CinemachineVirtualCameraBase__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0438, List_1_List_1_Cinemachine_CinemachineVirtualCameraBase__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0440, List_1_List_1_Cinemachine_CinemachineVirtualCameraBase__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0448, Dictionary_2_Cinemachine_CinemachineVirtualCameraBase_Cinemachine_CinemachineCore_UpdateStatus__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0450, List_1_List_1_Cinemachine_CinemachineVirtualCameraBase__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0458, List_1_Cinemachine_CinemachineVirtualCameraBase__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0460, Dictionary_2_Cinemachine_CinemachineVirtualCameraBase_Cinemachine_CinemachineCore_UpdateStatus__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0468, List_1_Cinemachine_CinemachineVirtualCameraBase__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0478, List_1_Cinemachine_CinemachineVirtualCameraBase__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0488, List_1_Cinemachine_CinemachineVirtualCameraBase__Sort__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0498, List_1_Cinemachine_CinemachineBrain__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD04A0, List_1_Cinemachine_CinemachineBrain__Insert__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD04A8, List_1_Cinemachine_CinemachineBrain__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD04B0, List_1_Cinemachine_CinemachineBrain__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD09D0, List_1_Cinemachine_ClipperLib_PolyNode__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD09D8, List_1_T_Enumerator_Cinemachine_ClipperLib_PolyNode__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD09E0, List_1_T_Enumerator_Cinemachine_ClipperLib_PolyNode__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD09E8, List_1_T_Enumerator_Cinemachine_ClipperLib_PolyNode__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0A20, List_1_Cinemachine_ClipperLib_PolyNode__set_Capacity__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0A38, List_1_List_1_Cinemachine_ClipperLib_IntPoint__set_Capacity__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0A50, List_1_Cinemachine_ClipperLib_IntersectNode__Sort__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0A58, List_1_Cinemachine_ClipperLib_IntersectNode__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0A60, List_1_Cinemachine_ClipperLib_IntersectNode__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0A70, List_1_Cinemachine_ClipperLib_IntersectNode__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0A80, List_1_Cinemachine_ClipperLib_IntersectNode__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0A90, List_1_Cinemachine_ClipperLib_IntersectNode__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0AA0, List_1_Cinemachine_ClipperLib_Join__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0AA8, List_1_Cinemachine_ClipperLib_Join__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0AB0, List_1_Cinemachine_ClipperLib_Join__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0AC0, List_1_Cinemachine_ClipperLib_OutRec__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0AC8, List_1_T_Enumerator_Cinemachine_ClipperLib_OutRec__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0AD0, List_1_T_Enumerator_Cinemachine_ClipperLib_OutRec__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0AD8, List_1_Cinemachine_ClipperLib_OutRec__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0AE0, List_1_T_Enumerator_Cinemachine_ClipperLib_OutRec__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0AE8, List_1_Cinemachine_ClipperLib_Join__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0B18, List_1_Cinemachine_ClipperLib_IntersectNode___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0B30, List_1_Cinemachine_ClipperLib_Join___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0B38, List_1_Cinemachine_ClipperLib_OutRec___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0B40, List_1_Cinemachine_ClipperLib_OutRec__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0B48, List_1_Cinemachine_ClipperLib_OutRec__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0B68, List_1_Cinemachine_ClipperLib_OutRec__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0B78, List_1_Cinemachine_ClipperLib_OutRec__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0B90, List_1_Cinemachine_ClipperLib_TEdge__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0B98, List_1_Cinemachine_ClipperLib_TEdge___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0BB0, List_1_List_1_Cinemachine_ClipperLib_TEdge__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0BB8, List_1_Cinemachine_ClipperLib_TEdge__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0BD8, List_1_Cinemachine_ClipperLib_TEdge__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0BE8, List_1_Cinemachine_ClipperLib_TEdge__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0BF0, List_1_Cinemachine_ClipperLib_TEdge__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0BF8, List_1_List_1_Cinemachine_ClipperLib_TEdge__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0C00, List_1_List_1_Cinemachine_ClipperLib_TEdge__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0C10, List_1_List_1_Cinemachine_ClipperLib_TEdge__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0C18, List_1_List_1_Cinemachine_ClipperLib_TEdge___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0C38, List_1_Cinemachine_ClipperLib_PolyNode__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0C48, List_1_Cinemachine_ClipperLib_PolyNode___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0C50, List_1_Cinemachine_ClipperLib_PolyNode__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0C58, List_1_Cinemachine_ClipperLib_PolyNode__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0C60, List_1_Cinemachine_ClipperLib_PolyNode__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0C68, List_1_Cinemachine_ClipperLib_PolyNode__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0C78, List_1_Cinemachine_CinemachineImpulseManager_ImpulseEvent__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0C90, List_1_Cinemachine_CinemachineImpulseManager_ImpulseEvent__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0C98, List_1_Cinemachine_CinemachineImpulseManager_ImpulseEvent__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0CA0, List_1_Cinemachine_CinemachineImpulseManager_ImpulseEvent__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0CA8, List_1_Cinemachine_CinemachineImpulseManager_ImpulseEvent__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0CB0, List_1_Cinemachine_CinemachineImpulseManager_ImpulseEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0EE0, CallbackArray_1_System_Action_1__5_get_length__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0F30, CallbackArray_1_System_Action_1__5_AddCallback__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD0F40, CallbackArray_1_System_Action_1__5_RemoveCallback__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1078, InlinedArray_1_System_IObserver_1__AppendWithCapacity__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD10C8, InputArrayExtensions_IndexOfReference_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1130, InlinedArray_1_System_IObserver_1__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1138, InlinedArray_1_System_IObserver_1__RemoveAtWithCapacity__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD12F0, InputSystem_RegisterLayoutMatcher_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD12F8, InputSystem_RegisterLayoutMatcher_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1300, InputSystem_RegisterLayout_33__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1308, InputSystem_RegisterLayout_34__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1310, InputSystem_RegisterLayout_35__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1318, InputSystem_RegisterLayout_36__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD13A8, InputSystem_AddDevice_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD13C0, ArrayHelpers_Clear_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD13C8, ArrayHelpers_Clear_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD13F0, ArrayHelpers_AppendWithCapacity_27__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD13F8, ArrayHelpers_ContainsReference_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1418, GameObject_AddComponent_61__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1420, ArrayHelpers_IndexOfReference_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1428, ArrayHelpers_IndexOfReference_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1430, ArrayHelpers_IndexOfReference_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1440, ArrayHelpers_EraseAtWithCapacity_23__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1460, ArrayHelpers_IndexOfReference_12__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1468, ArrayHelpers_AppendWithCapacity_28__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1478, ArrayHelpers_Clear_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1488, ArrayHelpers_EnsureCapacity_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1490, ArrayHelpers_AppendWithCapacity_29__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD14A0, ArrayHelpers_EraseSliceWithCapacity_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD14D8, InlinedArray_1_UnityEngine_InputSystem_Touchscreen__AppendWithCapacity__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1520, InputArrayExtensions_IndexOfReference_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1528, InlinedArray_1_UnityEngine_InputSystem_Touchscreen__RemoveAtWithCapacity__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1548, CallbackArray_1_System_Action_1__4_AddCallback__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1558, CallbackArray_1_System_Action_1__4_RemoveCallback__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1560, ReadOnlyArray_1_UnityEngine_InputSystem_EnhancedTouch_Finger___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1620, DelegateHelpers_InvokeCallbacksSafe_14__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1658, InputSystem_RegisterLayout_37__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1820, List_1_System_Text_StringBuilder___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1830, List_1_System_Text_StringBuilder__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1840, List_1_System_Text_StringBuilder__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1848, List_1_System_Text_StringBuilder__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1850, List_1_System_Text_StringBuilder__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1858, HashSet_1_UnityEngine_Object___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1860, HashSet_1_UnityEngine_Object__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1870, HashSet_1_T_Enumerator_UnityEngine_Object__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1878, HashSet_1_UnityEngine_Object__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1880, HashSet_1_T_Enumerator_UnityEngine_Object__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1888, HashSet_1_UnityEngine_Object__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1890, HashSet_1_UnityEngine_Object__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1898, HashSet_1_T_Enumerator_UnityEngine_Object__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD18A8, PooledObject_1_System_Collections_Generic_List_1__3_System_IDisposable_Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD18B0, CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD18B8, List_1_UnityEngine_Rendering_PostProcessing_PostProcessEffectSettings__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD18C0, List_1_UnityEngine_Rendering_PostProcessing_PostProcessEffectSettings__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD18D0, ScriptableObject_CreateInstance_14__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD18E0, Object_1_Instantiate_19__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD18E8, List_1_T_Enumerator_UnityEngine_Rendering_PostProcessing_PostProcessEffectSettings__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD18F0, List_1_T_Enumerator_UnityEngine_Rendering_PostProcessing_PostProcessEffectSettings__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1900, List_1_UnityEngine_Rendering_PostProcessing_PostProcessVolume___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1908, List_1_T_Enumerator_UnityEngine_Rendering_PostProcessing_PostProcessEffectSettings__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1920, Dictionary_2_Cinemachine_CinemachineBrain_UnityEngine_Rendering_PostProcessing_PostProcessLayer___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1940, Dictionary_2_TKey_TValue_Enumerator_Cinemachine_CinemachineBrain_UnityEngine_Rendering_PostProcessing_PostProcessLayer__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1948, Dictionary_2_TKey_TValue_Enumerator_Cinemachine_CinemachineBrain_UnityEngine_Rendering_PostProcessing_PostProcessLayer__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1950, KeyValuePair_2_Cinemachine_CinemachineBrain_UnityEngine_Rendering_PostProcessing_PostProcessLayer__get_Key__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1958, Dictionary_2_Cinemachine_CinemachineBrain_UnityEngine_Rendering_PostProcessing_PostProcessLayer__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1960, Dictionary_2_Cinemachine_CinemachineBrain_UnityEngine_Rendering_PostProcessing_PostProcessLayer__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1968, Dictionary_2_Cinemachine_CinemachineBrain_UnityEngine_Rendering_PostProcessing_PostProcessLayer__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1970, Component_TryGetComponent_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1978, Dictionary_2_Cinemachine_CinemachineBrain_UnityEngine_Rendering_PostProcessing_PostProcessLayer__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1980, Dictionary_2_Cinemachine_CinemachineBrain_UnityEngine_Rendering_PostProcessing_PostProcessLayer__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1988, List_1_UnityEngine_Rendering_PostProcessing_PostProcessVolume__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1998, GameObject_AddComponent_62__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD19A0, List_1_UnityEngine_Rendering_PostProcessing_PostProcessVolume__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD19A8, GameObject_GetComponents_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD19B0, List_1_UnityEngine_Rendering_PostProcessing_PostProcessVolume__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD19B8, List_1_UnityEngine_Rendering_PostProcessing_PostProcessVolume__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD19D0, CinemachineExtension_GetExtraState_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD19D8, List_1_Cinemachine_PostFX_CinemachinePostProcessing_VcamExtraState__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD19E0, List_1_Cinemachine_PostFX_CinemachinePostProcessing_VcamExtraState__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD19E8, CinemachineExtension_GetAllExtraStates_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD19F0, List_1_UnityEngine_Rendering_PostProcessing_PostProcessEffectSettings__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD19F8, List_1_List_1_Cinemachine_ClipperLib_IntPoint__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1A70, List_1_OTOWXECUgLIzgwXfEeXoDsFfLoRQ__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1AF0, List_1_System_Type__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1AF8, List_1_System_Type__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1B00, List_1_System_Type__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1B08, Dictionary_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_DtqAEEJiDJPjNlUOxJfuxiAZflzJ__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1B10, List_1_T_Enumerator_System_Type__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1B18, List_1_T_Enumerator_System_Type__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1B28, List_1_T_Enumerator_System_Type__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1B38, Dictionary_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_DtqAEEJiDJPjNlUOxJfuxiAZflzJ___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1B48, Dictionary_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_DtqAEEJiDJPjNlUOxJfuxiAZflzJ__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1B50, Dictionary_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_DtqAEEJiDJPjNlUOxJfuxiAZflzJ__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1CC8, UpdateLoopDataSet_1_mnnDsnejpZEXCYBwEaOUubxgEUzu_JjBAfNDEcTONUYMfiYbXwYKVVOcAA__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1CE8, UpdateLoopDataSet_1_mnnDsnejpZEXCYBwEaOUubxgEUzu_JjBAfNDEcTONUYMfiYbXwYKVVOcAA__SetUpdateLoop__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1D20, UpdateLoopDataSet_1_mnnDsnejpZEXCYBwEaOUubxgEUzu_JjBAfNDEcTONUYMfiYbXwYKVVOcAA__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1D28, UpdateLoopDataSet_1_mnnDsnejpZEXCYBwEaOUubxgEUzu_JjBAfNDEcTONUYMfiYbXwYKVVOcAA___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1D38, UpdateLoopDataSet_1_mnnDsnejpZEXCYBwEaOUubxgEUzu_JjBAfNDEcTONUYMfiYbXwYKVVOcAA__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1D40, UpdateLoopDataSet_1_mnnDsnejpZEXCYBwEaOUubxgEUzu_JjBAfNDEcTONUYMfiYbXwYKVVOcAA__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1D48, UpdateLoopDataSet_1_mnnDsnejpZEXCYBwEaOUubxgEUzu_JjBAfNDEcTONUYMfiYbXwYKVVOcAA__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1D50, UpdateLoopDataSet_1_AJsmGXHTskPzBiTBDSfAEVsAgBQd_ScAUiPDVTJpqftJwGhLKjPCZiivt__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1D58, UpdateLoopDataSet_1_AJsmGXHTskPzBiTBDSfAEVsAgBQd_ScAUiPDVTJpqftJwGhLKjPCZiivt__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1D60, Dictionary_2_System_Int32_Dictionary_2_System_Int32_UnityEngine_KeyCode__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1D68, Dictionary_2_System_Int32_UnityEngine_KeyCode__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1D70, Dictionary_2_System_Int32_Dictionary_2_System_Int32_UnityEngine_KeyCode__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1D88, UpdateLoopDataSet_1_AJsmGXHTskPzBiTBDSfAEVsAgBQd_ScAUiPDVTJpqftJwGhLKjPCZiivt__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1D90, UpdateLoopDataSet_1_AJsmGXHTskPzBiTBDSfAEVsAgBQd_ScAUiPDVTJpqftJwGhLKjPCZiivt___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1DC8, Dictionary_2_System_Int32_Dictionary_2_System_Int32_UnityEngine_KeyCode___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1DD0, Dictionary_2_System_Int32_UnityEngine_KeyCode__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1DE0, Dictionary_2_System_Int32_UnityEngine_KeyCode___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1DE8, UpdateLoopDataSet_1_AJsmGXHTskPzBiTBDSfAEVsAgBQd_ScAUiPDVTJpqftJwGhLKjPCZiivt__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1DF0, UpdateLoopDataSet_1_AJsmGXHTskPzBiTBDSfAEVsAgBQd_ScAUiPDVTJpqftJwGhLKjPCZiivt__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1E00, UpdateLoopDataSet_1_AJsmGXHTskPzBiTBDSfAEVsAgBQd_ScAUiPDVTJpqftJwGhLKjPCZiivt__SetUpdateLoop__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD1E10, Dictionary_2_System_Int32_Dictionary_2_System_Int32_UnityEngine_KeyCode__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2018, List_1_OTOWXECUgLIzgwXfEeXoDsFfLoRQ__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2020, List_1_OTOWXECUgLIzgwXfEeXoDsFfLoRQ__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2038, List_1_znMZhiOLtznjGEIVUrVliWSuIivu__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2048, List_1_OTOWXECUgLIzgwXfEeXoDsFfLoRQ___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2050, List_1_System_String__Find__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2068, List_1_znMZhiOLtznjGEIVUrVliWSuIivu__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2080, Array_Sort_253__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2088, Array_Find_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2090, List_1_znMZhiOLtznjGEIVUrVliWSuIivu__ForEach__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2110, ReadOnlyCollection_1_znMZhiOLtznjGEIVUrVliWSuIivu___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2140, List_1_znMZhiOLtznjGEIVUrVliWSuIivu___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2150, List_1_znMZhiOLtznjGEIVUrVliWSuIivu__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2158, List_1_znMZhiOLtznjGEIVUrVliWSuIivu__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2170, List_1_znMZhiOLtznjGEIVUrVliWSuIivu__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2458, List_1_System_Threading_WaitCallback__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2460, List_1_System_Threading_WaitCallback__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2468, MiscTools_Swap_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2470, List_1_System_Threading_WaitCallback__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2488, List_1_System_Threading_WaitCallback___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD24A8, List_1_System_Threading_WaitCallback__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2658, PointerCaptureEventBase_1_MouseCaptureEvent__GetPooled__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2660, PointerCaptureEventBase_1_MouseCaptureOutEvent__GetPooled__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2668, PointerCaptureEventBase_1_PointerCaptureOutEvent__GetPooled__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2678, PointerCaptureEventBase_1_PointerCaptureEvent__GetPooled__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2680, List_1_T_Enumerator_UnityEngine_UIElements_IRuntimePanelComponent__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2690, ObjectListPool_1_IRuntimePanelComponent__Release__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2698, ObjectListPool_1_IRuntimePanelComponent__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD26A8, List_1_UnityEngine_UIElements_IRuntimePanelComponent__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD26B0, List_1_T_Enumerator_UnityEngine_UIElements_IRuntimePanelComponent__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD26B8, GameObject_GetComponents_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD26C0, List_1_T_Enumerator_UnityEngine_UIElements_IRuntimePanelComponent__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD26E0, List_1_UnityEngine_UIElements_VisualElement__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD27C0, KeyboardEventBase_1_KeyDownEvent__get_actionKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD27F8, UxmlFactory_2_IMGUIContainer_IMGUIContainer_UxmlTraits___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2800, CallbackEventHandler_RegisterCallback_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2810, CallbackEventHandler_RegisterCallback_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2818, CallbackEventHandler_RegisterCallback_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2858, List_1_RankHelpers_RankSprite___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2860, List_1_RankHelpers_RankSprite__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2868, List_1_T_Enumerator_RankHelpers_RankSprite__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2870, List_1_T_Enumerator_RankHelpers_RankSprite__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2878, CallbackEventHandler_UnregisterCallback_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2880, CallbackEventHandler_UnregisterCallback_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2888, CallbackEventHandler_UnregisterCallback_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2898, CallbackEventHandler_UnregisterCallback_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD28A0, List_1_T_Enumerator_RankHelpers_RankSprite__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD28A8, EventBase_1_MouseMoveEvent__TypeId__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD28C8, EventBase_1_MouseDownEvent__TypeId__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD28D8, EventBase_1_MouseUpEvent__TypeId__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2958, EventBase_1_DetachFromPanelEvent__TypeId__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2968, EventBase_1_AttachToPanelEvent__TypeId__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2990, FocusEventBase_1_FocusEvent__get_direction__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD29A0, GameObject_AddComponent_63__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD29B0, FocusEventBase_1_FocusEvent__get_IsFocusDelegated__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2A10, KeyboardEventBase_1_KeyDownEvent__GetPooled__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2A50, Component_GetComponent_46__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2A60, Component_GetComponent_47__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2A80, Component_GetComponent_48__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2A98, List_1_UnityEngine_UIElements_IGroupBoxOption__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2AA0, List_1_UnityEngine_UIElements_IGroupBoxOption__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2AB0, List_1_T_Enumerator_UnityEngine_UIElements_IGroupBoxOption__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2AB8, List_1_UnityEngine_UIElements_IGroupBoxOption__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2AC0, List_1_T_Enumerator_UnityEngine_UIElements_IGroupBoxOption__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2AD0, List_1_UnityEngine_UIElements_IGroupBoxOption___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2AE0, List_1_UnityEngine_UIElements_IGroupBoxOption__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2B68, Dictionary_2_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2B88, Dictionary_2_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2B90, Dictionary_2_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2BB0, Dictionary_2_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2BC0, Dictionary_2_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2BD8, Dictionary_2_System_String_System_Action___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2BE8, Dictionary_2_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2C20, List_1_T_Enumerator_UnityEngine_UIElements_IGroupBoxOption__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2C58, Dictionary_2_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2C80, Dictionary_2_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2CA8, GameObject_GetComponent_48__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2CB8, FocusEventBase_1_FocusInEvent__GetPooled__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2CC0, FocusEventBase_1_BlurEvent__GetPooled__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2CC8, FocusEventBase_1_FocusOutEvent__GetPooled__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2CD8, FocusEventBase_1_FocusEvent__GetPooled__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2CE0, Object_1_FindObjectsByType_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2CE8, List_1_UnityEngine_UI_Dropdown_OptionData__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2DB0, ObjectPool_1_System_Collections_Generic_Queue_1___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2DB8, GameObject_GetComponent_49__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2DF8, Component_GetComponent_49__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2E30, List_1_UnityEngine_UI_Button__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2E38, List_1_UnityEngine_UI_Dropdown__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2E50, List_1_UnityEngine_UI_Dropdown___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2E58, List_1_UnityEngine_UI_Button___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2E68, List_1_UnityEngine_UI_Toggle__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2E70, List_1_UnityEngine_UI_Button__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2E78, GameObject_GetComponent_50__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2E88, List_1_UnityEngine_UI_Dropdown__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2E98, List_1_T_Enumerator_UnityEngine_UI_Dropdown__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2EA0, GameObject_AddComponent_64__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2EA8, List_1_T_Enumerator_UnityEngine_UI_Button__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2EB0, ObjectPool_1_System_Collections_Generic_Queue_1__Release__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2EB8, List_1_T_Enumerator_UnityEngine_UI_Toggle__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2EC0, List_1_T_Enumerator_UnityEngine_UI_Dropdown__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2EC8, List_1_T_Enumerator_UnityEngine_UI_Toggle__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2EE0, List_1_T_Enumerator_UnityEngine_UI_Button__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2EE8, List_1_T_Enumerator_UnityEngine_UI_Toggle__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2EF0, EventBase_1_IMGUIEvent__TypeId__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2EF8, List_1_T_Enumerator_UnityEngine_UI_Button__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2F00, List_1_T_Enumerator_UnityEngine_UI_Dropdown__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2F10, List_1_T_Enumerator_UnityEngine_UIElements_VisualElement__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2F20, List_1_T_Enumerator_CharacterOutfit__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2F30, List_1_CharacterOutfit__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2F38, List_1_T_Enumerator_CharacterOutfit__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2F40, List_1_T_Enumerator_UnityEngine_UIElements_IEventDispatchingStrategy__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2F48, List_1_T_Enumerator_CharacterOutfit__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2F60, List_1_UnityEngine_UIElements_VisualElement__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2F68, List_1_CharacterOutfit__Find__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2F80, List_1_T_Enumerator_UnityEngine_UIElements_VisualElement__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2F88, List_1_T_Enumerator_UnityEngine_UIElements_VisualElement__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2F98, List_1_UnityEngine_UIElements_IEventDispatchingStrategy__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2FB8, List_1_T_Enumerator_UnityEngine_UIElements_IEventDispatchingStrategy__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2FC8, List_1_T_Enumerator_UnityEngine_UIElements_IEventDispatchingStrategy__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2FD8, List_1_T_Enumerator_UnityEngine_UIElements_DropdownMenuItem__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD2FE8, List_1_T_Enumerator_UnityEngine_UIElements_DropdownMenuItem__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3008, List_1_T_Enumerator_UnityEngine_UIElements_DropdownMenuItem__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3020, List_1_UnityEngine_UIElements_DropdownMenuItem__Insert__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3030, List_1_UnityEngine_UIElements_DropdownMenuItem__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3088, List_1_UnityEngine_UIElements_DropdownMenuItem__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3098, List_1_UnityEngine_UIElements_DropdownMenuItem__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3138, ObjectPool_1_System_Collections_Generic_Queue_1__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3148, List_1_UnityEngine_UIElements_IEventDispatchingStrategy__AddRange__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3158, List_1_UnityEngine_UIElements_IEventDispatchingStrategy___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD31B0, EventBase_1_NavigationCancelEvent__GetPooled__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD31E0, EventBase_1_NavigationSubmitEvent__GetPooled__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD31E8, List_1_CharacterEmote__Find__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3228, List_1_CharacterPet__Find__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3250, List_1_CharacterFlashlight__Find__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3268, List_1_UnityEngine_UIElements_DropdownMenuItem__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD32B0, List_1_CharacterPerk__Find__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD32C8, List_1_T_Enumerator_CharacterPerk__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD32E0, List_1_CharacterPerk__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD32F0, List_1_T_Enumerator_CharacterPerk__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3308, List_1_T_Enumerator_CharacterPerk__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3338, PointerEventBase_1_PointerStationaryEvent__GetPooled__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3348, PointerEventBase_1_PointerCancelEvent__GetPooled__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3360, PointerEventBase_1_PointerDownEvent__GetPooled__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3370, PointerEventBase_1_PointerMoveEvent__GetPooled__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3378, Enumerable_Where_24__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3380, PointerEventBase_1_PointerUpEvent__GetPooled__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD33A8, Enumerable_FirstOrDefault_14__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3438, Enumerable_Where_25__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3450, Enumerable_FirstOrDefault_15__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3468, List_1_UnityEngine_UIElements_ClickDetector_ButtonClickStatus__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3588, DefaultEventSystem_SendFocusBasedEvent_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3590, DefaultEventSystem_SendPositionBasedEvent_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD35F8, Collection_1_System_Net_Mail_Attachment__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3608, List_1_UnityEngine_UIElements_ClickDetector_ButtonClickStatus__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3638, List_1_UnityEngine_UIElements_ClickDetector_ButtonClickStatus__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3648, List_1_UnityEngine_UIElements_ClickDetector_ButtonClickStatus___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3658, EventBase_1_PointerCancelEvent__TypeId__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD36D8, List_1_T_Enumerator_UnityEngine_UIElements_ClickDetector_ButtonClickStatus__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD36E8, List_1_UnityEngine_UIElements_VisualElement__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3710, List_1_T_Enumerator_UnityEngine_UIElements_ClickDetector_ButtonClickStatus__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3720, List_1_T_Enumerator_UnityEngine_UIElements_ClickDetector_ButtonClickStatus__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3748, Collection_1_System_Net_Mail_AlternateView__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3758, Collection_1_System_Net_Mail_AlternateView__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3768, PointerEventBase_1_PointerDownEvent__get_localPosition__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3778, PointerEventBase_1_PointerDownEvent__get_pointerId__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3790, Collection_1_System_Net_Mail_Attachment__Insert__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD37A0, Collection_1_System_Net_Mail_Attachment__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD37C8, PointerEventBase_1_PointerCancelEvent__get_pointerId__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD37E0, PointerEventBase_1_PointerUpEvent__get_pointerId__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3810, PointerEventBase_1_PointerUpEvent__get_localPosition__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3820, PointerEventBase_1_PointerMoveEvent__get_localPosition__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3878, PointerCaptureEventBase_1_PointerCaptureOutEvent__get_pointerId__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD38C8, Collection_1_System_Net_Mail_AlternateView__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD38E0, Collection_1_System_Net_Mail_LinkedResource__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD38E8, GameObject_GetComponent_51__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3908, Collection_1_System_Net_Mail_AlternateView__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3910, GameObject_GetComponent_52__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3918, Collection_1_System_Net_Mail_AlternateView__Insert__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3920, GameObject_GetComponent_53__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3940, GameObject_GetComponent_54__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD39B8, CallbackEventHandler_UnregisterCallback_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD39C8, CallbackEventHandler_UnregisterCallback_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD39E0, List_1_System_Net_Mail_SmtpFailedRecipientException__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3A20, CallbackEventHandler_UnregisterCallback_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3A38, CallbackEventHandler_UnregisterCallback_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3A48, CallbackEventHandler_UnregisterCallback_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3A58, CallbackEventHandler_UnregisterCallback_12__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3A68, CallbackEventHandler_UnregisterCallback_13__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3A78, CallbackEventHandler_UnregisterCallback_14__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3A80, CallbackEventHandler_UnregisterCallback_15__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3A98, MouseEventBase_1_MouseUpEvent__get_localMousePosition__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3AA0, MouseEventBase_1_MouseMoveEvent__get_localMousePosition__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3AB0, MouseEventBase_1_MouseDownEvent__get_localMousePosition__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3B50, List_1_UnityEngine_UI_Toggle__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3B80, List_1_UnityEngine_UI_Toggle__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3B88, CallbackEventHandler_RegisterCallback_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3BA0, CallbackEventHandler_RegisterCallback_12__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3BB0, List_1_UnityEngine_UI_Toggle___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3BB8, CallbackEventHandler_RegisterCallback_13__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3BC8, List_1_UnityEngine_UI_Toggle__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3BD0, CallbackEventHandler_RegisterCallback_14__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3BE8, CallbackEventHandler_RegisterCallback_15__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3C00, CallbackEventHandler_RegisterCallback_16__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3C20, GameObject_GetComponent_55__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3C28, CallbackEventHandler_RegisterCallback_17__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3C38, GameObject_GetComponent_56__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3C48, List_1_System_Net_Mail_SmtpFailedRecipientException__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3C50, GameObject_AddComponent_65__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3C60, List_1_System_Net_Mail_SmtpFailedRecipientException___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3C68, GameObject_GetComponentInChildren_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3C78, Enumerable_GroupBy_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3CB8, CallbackEventHandler_RegisterCallback_18__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3CC0, List_1_System_Net_Mail_SmtpFailedRecipientException__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3CC8, CallbackEventHandler_RegisterCallback_19__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3CD8, Dictionary_2_UnityEngine_Texture_UnityEngine_UIElements_DynamicAtlas_TextureInfo___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3D10, Dictionary_2_UnityEngine_Texture_UnityEngine_UIElements_DynamicAtlas_TextureInfo__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3D18, Object_1_FindAnyObjectByType_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3D20, LinkedPool_1_UnityEngine_UIElements_DynamicAtlas_TextureInfo__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3D28, LinkedPoolItem_1_UnityEngine_UIElements_DynamicAtlas_TextureInfo___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3D40, List_1_UnityEngine_UIElements_IPanel___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3D78, List_1_System_String__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3DA8, LinkedPool_1_UnityEngine_UIElements_DynamicAtlas_TextureInfo___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3DD8, Object_1_FindAnyObjectByType_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3DE8, UxmlFactory_2_BindableElement_BindableElement_UxmlTraits___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3DF8, List_1_UnityEngine_UIElements_IPanel__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3E20, List_1_UnityEngine_UIElements_IPanel__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3E28, Collection_1_System_Net_Mail_MailAddress__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3E38, GameObject_GetComponent_57__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3E40, Collection_1_System_Net_Mail_MailAddress__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3E48, Object_1_FindObjectsByType_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3E50, List_1_UnityEngine_UIElements_IPanel__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3E58, List_1_UnityEngine_UIElements_IPanel__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3E60, Collection_1_System_Net_Mail_MailAddress__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3E78, Dictionary_2_UnityEngine_Texture_UnityEngine_UIElements_DynamicAtlas_TextureInfo__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3EC0, Component_GetComponent_50__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3EC8, Dictionary_2_UnityEngine_Texture_UnityEngine_UIElements_DynamicAtlas_TextureInfo__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3ED0, LinkedPool_1_UnityEngine_UIElements_DynamicAtlas_TextureInfo__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3EE8, Dictionary_2_UnityEngine_Texture_UnityEngine_UIElements_DynamicAtlas_TextureInfo__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3F08, Collection_1_System_Net_Mail_LinkedResource__SetItem__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3F28, Collection_1_System_Net_Mail_LinkedResource__InsertItem__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3F38, Collection_1_System_Net_Mail_LinkedResource__ClearItems__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3F40, Collection_1_System_Net_Mail_LinkedResource__RemoveItem__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3FC0, Collection_1_System_Net_Mail_Attachment__SetItem__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD3FF8, Collection_1_System_Net_Mail_Attachment__InsertItem__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD4000, GameObjectExtensions_GetCachedComponent_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD4008, GameObject_GetComponent_58__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD4010, Object_1_FindAnyObjectByType_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD4018, Collection_1_System_Net_Mail_Attachment__RemoveItem__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD4020, Component_GetComponent_51__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD4030, Collection_1_System_Net_Mail_LinkedResource___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD4170, Collection_1_System_Net_Mail_Attachment__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD4180, Collection_1_System_Net_Mail_Attachment___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD4198, Collection_1_System_Net_Mail_Attachment__ClearItems__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD41A8, Collection_1_System_Net_Mail_Attachment__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD42D0, JsonUtility_FromJson_18__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD4320, Object_1_FindObjectsByType_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD4348, Singleton_1_Crosstales_BWF_BWFManager__get_Instance__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD44A8, GameObject_AddComponent_66__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD4588, KeyValuePair_2_UnityEngine_GameObject_NolanPerkController__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD45C0, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_GameObject_NolanPerkController__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD45D0, KeyValuePair_2_UnityEngine_GameObject_NolanPerkController__get_Key__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD45E0, Dictionary_2_UnityEngine_GameObject_NolanPerkController__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD45F0, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_GameObject_NolanPerkController__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD4608, Dictionary_2_UnityEngine_GameObject_NolanPerkController__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD4618, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_GameObject_NolanPerkController__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD4730, Component_GetComponent_52__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD4758, Component_GetComponent_53__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD47A0, List_1_HidingSpotController__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD47B0, List_1_HidingSpotController__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD47C8, GameObject_GetComponent_59__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD4850, List_1_HidingSpotController___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD5798, Array_Resize_136__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD57A8, Component_GetComponentInChildren_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD57E0, EventHandler_1_UnregisterEvent_42__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD5820, EventHandler_1_RegisterEvent_44__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD59C8, List_1_List_1_UnityEngine_Transform__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD59D0, List_1_List_1_UnityEngine_Transform__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD59D8, List_1_List_1_UnityEngine_Transform__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD5A28, List_1_List_1_UnityEngine_Transform___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD5A58, Collection_1_System_Net_Mail_AlternateView__ClearItems__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD5A60, Collection_1_System_Net_Mail_AlternateView___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD5A70, Collection_1_System_Net_Mail_AlternateView__InsertItem__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD5A80, Collection_1_System_Net_Mail_LinkedResource__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD5AB0, Collection_1_System_Net_Mail_AlternateView__RemoveItem__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD5AC8, Collection_1_System_Net_Mail_AlternateView__SetItem__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD5BC8, UnityEvent_2_Opsive_UltimateCharacterController_Camera_ViewTypes_ViewType_System_Boolean___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD5C60, Collection_1_System_Net_Mail_MailAddress__SetItem__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD5C70, UnityEvent_2_Opsive_UltimateCharacterController_Items_Item_System_Int32___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD5C78, UnityEvent_1_Opsive_UltimateCharacterController_Items_Item___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD5C80, Collection_1_System_Net_Mail_MailAddress__InsertItem__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD5C90, UnityEvent_2_Opsive_UltimateCharacterController_Character_Abilities_Items_ItemAbility_System_Boolean___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD5C98, UnityEvent_2_Opsive_UltimateCharacterController_Character_Abilities_Ability_System_Boolean___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD5CA8, UnityEvent_2_Opsive_UltimateCharacterController_Character_MovementTypes_MovementType_System_Boolean___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD5CB0, Collection_1_System_Net_Mail_MailAddress___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD5CB8, UnityEvent_1_UnityEngine_Transform___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD5CC0, UnityEvent_4_System_Single_UnityEngine_Vector3_UnityEngine_Vector3_UnityEngine_GameObject___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD5CE0, UnityEvent_3_UnityEngine_Vector3_UnityEngine_Vector3_UnityEngine_GameObject___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD5CE8, UnityEvent_4_Opsive_Shared_Inventory_IItemIdentifier_System_Single_System_Boolean_System_Boolean___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD5CF0, Dictionary_2_System_String_System_Int32___ctor_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD5CF8, Collection_1_System_Net_Mail_MailAddress__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD5D08, UnityEvent_4_Opsive_UltimateCharacterController_Items_Item_System_Single_System_Boolean_System_Boolean___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD5D10, UnityEvent_2_Opsive_Shared_Inventory_IItemIdentifier_System_Single___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD5D18, Collection_1_System_Net_Mail_MailAddress__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD5DF8, AsyncOperationHandle_1_System_Collections_Generic_IList_1__1_Acquire__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD5E18, AsyncOperationHandle_1_System_Collections_Generic_IList_1__1_get_IsDone__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD5E20, AsyncOperationHandle_1_System_Collections_Generic_IList_1__1_InternalGetDownloadStatus__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD5E28, AsyncOperationHandle_1_System_Collections_Generic_IList_1__1_WaitForCompletion__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD5E98, Component_GetComponent_54__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD5EC0, Component_GetComponent_55__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD5EF0, KeyValuePair_2_UnityEngine_AnimatorControllerParameter_System_Object__get_Key__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD5EF8, KeyValuePair_2_UnityEngine_AnimatorControllerParameter_System_Object__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD5F00, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_AnimatorControllerParameter_System_Object__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD5F08, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_AnimatorControllerParameter_System_Object__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD5F10, Dictionary_2_UnityEngine_AnimatorControllerParameter_System_Object___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD5F20, Dictionary_2_UnityEngine_AnimatorControllerParameter_System_Object__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD5F28, Dictionary_2_UnityEngine_AnimatorControllerParameter_System_Object__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD5F30, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_AnimatorControllerParameter_System_Object__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD5F38, Component_GetComponentsInChildren_20__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD5F78, Component_GetComponent_56__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD60B0, GameObject_AddComponent_67__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6158, GameObject_GetComponent_60__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6178, Component_GetComponent_57__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD61B0, GameObject_GetComponent_61__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD61E8, GameObject_GetComponent_62__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD61F0, GameObject_GetComponent_63__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD61F8, GameObject_GetComponent_64__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6200, GameObject_GetComponent_65__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6208, Component_GetComponent_58__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6210, GameObject_GetComponent_66__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6238, Component_GetComponent_59__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6380, List_1_System_String__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD63F8, JsonUtility_FromJson_19__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6438, JsonUtility_FromJson_20__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD64C8, Enumerable_Concat_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD64F0, JsonUtility_FromJson_21__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6630, GameObject_AddComponent_68__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD66F8, Dictionary_2_System_String_System_String__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6700, Dictionary_2_System_String_System_String___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6738, Dictionary_2_System_String_System_String__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6740, Dictionary_2_System_String_System_String__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6748, List_1_Rewired_ActionElementMap__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6758, GameObject_AddComponent_69__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6768, List_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6770, List_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD67A0, StylePropertyAnimationSystem_GetOrCreate_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD67B0, StylePropertyAnimationSystem_GetOrCreate_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD67C0, StylePropertyAnimationSystem_GetOrCreate_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD67D0, StylePropertyAnimationSystem_GetOrCreate_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD67D8, List_1_T_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_Values__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD67E0, List_1_T_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_Values__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD67F0, List_1_T_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_Values__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD67F8, StylePropertyAnimationSystem_GetOrCreate_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6800, Dictionary_2_UnityEngine_UIElements_StyleSheets_StylePropertyId_UnityEngine_UIElements_StylePropertyAnimationSystem_Values__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6808, List_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6818, StylePropertyAnimationSystem_GetOrCreate_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6830, List_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6840, StylePropertyAnimationSystem_GetOrCreate_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6850, StylePropertyAnimationSystem_GetOrCreate_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6860, StylePropertyAnimationSystem_GetOrCreate_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6870, StylePropertyAnimationSystem_GetOrCreate_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6878, StylePropertyAnimationSystem_StartTransition_24__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6880, StylePropertyAnimationSystem_GetOrCreate_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6890, StylePropertyAnimationSystem_GetOrCreate_12__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6898, Dictionary_2_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyValue__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD68B8, CustomStyleProperty_1_UnityEngine_Sprite__get_name__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD68C0, CustomStyleProperty_1_UnityEngine_Texture2D__get_name__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD68C8, CustomStyleProperty_1_System_String__get_name__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD68D0, CustomStyleProperty_1_VectorImage__get_name__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD68D8, Dictionary_2_UnityEngine_UIElements_StyleSheets_StylePropertyId_UnityEngine_UIElements_StylePropertyAnimationSystem_Values___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD68E8, List_1_UnityEngine_UIElements_VisualElement__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6900, VisualElement_VisualElementScheduledItem_1_System_Action_1___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6910, VisualElement_VisualElementScheduledItem_1_System_Action___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6928, List_1_UnityEngine_UIElements_VisualElement__IndexOf__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6950, List_1_UnityEngine_UIElements_VisualElement__Insert__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6958, UxmlEnumAttributeDescription_1_UsageHints___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD69A0, UxmlEnumAttributeDescription_1_PickingMode___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6A20, List_1_UnityEngine_UIElements_VisualElement___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6A30, Dictionary_2_System_Type_UnityEngine_UIElements_VisualElement_TypeData___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6A38, UxmlFactory_2_VisualElement_VisualElement_UxmlTraits___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6A68, CallbackEventHandler_RegisterCallback_20__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6A78, Dictionary_2_System_Type_UnityEngine_UIElements_VisualElement_TypeData__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6A80, Dictionary_2_System_Type_UnityEngine_UIElements_VisualElement_TypeData__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6B20, List_1_UnityEngine_UIElements_VisualElement__AddRange__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6B50, List_1_UnityEngine_UIElements_Experimental_IValueAnimationUpdate__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6B58, List_1_UnityEngine_UIElements_Experimental_IValueAnimationUpdate___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6B68, List_1_UnityEngine_UIElements_Experimental_IValueAnimationUpdate__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6B70, List_1_UnityEngine_UIElements_Experimental_IValueAnimationUpdate__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6B98, ObjectListPool_1_System_String__Release__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6BC0, GameObjectExtensions_GetCachedParentComponent_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6C30, UltimateCharacterLocomotion_IsAbilityTypeActive_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6C48, Array_Resize_137__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6C58, GameObjectExtensions_GetCachedComponents_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6CB0, PanelChangedEventBase_1_AttachToPanelEvent__GetPooled__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6CC0, PanelChangedEventBase_1_DetachFromPanelEvent__GetPooled__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6CD8, StyleEnum_1_Visibility__op_Implicit_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6CF0, ObjectListPool_1_System_String__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6D30, EventBase_1_TooltipEvent__TypeId__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6D38, EventBase_1_PointerCaptureEvent__TypeId__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6D40, EventBase_1_PointerLeaveEvent__TypeId__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6D48, EventBase_1_PointerCaptureOutEvent__TypeId__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6D50, EventBase_1_MouseOutEvent__TypeId__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6D58, EventBase_1_PointerEnterEvent__TypeId__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6D60, EventBase_1_MouseOverEvent__TypeId__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6DC8, StyleEnum_1_Position__op_Implicit__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6DE0, EventHandler_1_RegisterEvent_45__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6DF8, StyleEnum_1_Position__op_Implicit_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6E18, EventHandler_1_UnregisterEvent_43__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6E20, Assert_AreEqual_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6E38, List_1_UnityEngine_UIElements_ScheduledItem___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6E48, HashSet_1_UnityEngine_UIElements_ScheduledItem___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6E60, UnityEvent_2_Opsive_UltimateCharacterController_Character_Abilities_Items_ItemAbility_System_Boolean__Invoke__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6E70, EventHandler_1_ExecuteEvent_44__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6E78, UnityEvent_2_Opsive_UltimateCharacterController_Character_Abilities_Ability_System_Boolean__Invoke__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6E80, EventHandler_1_ExecuteEvent_45__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6E88, UnityEvent_1_UnityEngine_Transform__Invoke__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6E90, EventHandler_1_ExecuteEvent_46__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6E98, HashSet_1_UnityEngine_UIElements_ScheduledItem__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6EA0, List_1_UnityEngine_UIElements_ScheduledItem__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6EF0, List_1_UnityEngine_UIElements_ScheduledItem__IndexOf__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6F18, HashSet_1_UnityEngine_UIElements_ScheduledItem__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6F20, List_1_UnityEngine_UIElements_ScheduledItem__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6F28, List_1_UnityEngine_UIElements_ScheduledItem__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6F30, EventHandler_1_ExecuteEvent_47__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6F38, List_1_T_Enumerator_UnityEngine_UIElements_ScheduledItem__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6F40, UnityEvent_2_Opsive_UltimateCharacterController_Character_MovementTypes_MovementType_System_Boolean__Invoke__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6F48, HashSet_1_T_Enumerator_UnityEngine_UIElements_ScheduledItem__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6F50, HashSet_1_UnityEngine_UIElements_ScheduledItem__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6F58, HashSet_1_UnityEngine_UIElements_ScheduledItem__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6F60, HashSet_1_T_Enumerator_UnityEngine_UIElements_ScheduledItem__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6F68, HashSet_1_T_Enumerator_UnityEngine_UIElements_ScheduledItem__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6F70, List_1_T_Enumerator_UnityEngine_UIElements_ScheduledItem__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6F80, List_1_UnityEngine_UIElements_ScheduledItem__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6F90, List_1_UnityEngine_UIElements_ScheduledItem__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6F98, List_1_T_Enumerator_UnityEngine_UIElements_ScheduledItem__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6FA0, List_1_UnityEngine_UIElements_ScheduledItem__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6FB0, EventHandler_1_ExecuteEvent_48__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6FC8, List_1_UnityEngine_UIElements_ScheduledItem__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6FD0, List_1_UnityEngine_UIElements_ScheduledItem__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6FD8, HashSet_1_UnityEngine_UIElements_ScheduledItem__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6FE0, Component_GetComponentInParent_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD6FE8, Component_GetComponentInParent_12__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD7008, Component_GetComponent_60__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD7030, EntityEventListener_1_ICrowState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD7038, Dictionary_2_UnityEngine_Material_UnityEngine_Color___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD7078, EventHandler_1_ExecuteEvent_49__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD7140, Dictionary_2_UnityEngine_Material_UnityEngine_Color__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD7148, Component_GetComponent_61__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD7190, EntityEventListener_1_IEnemyBasicState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD7198, Dictionary_2_System_String_UnityEngine_Color___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD71E8, EventHandler_1_ExecuteEvent_50__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD7248, Component_GetComponent_62__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD7250, Dictionary_2_System_String_UnityEngine_Color__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD7258, Ability_GetComponent_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD72E0, GameObject_GetComponent_67__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD72F0, List_1_Photon_Bolt_BoltEntity__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD72F8, List_1_Photon_Bolt_BoltEntity___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD7300, List_1_Photon_Bolt_BoltEntity__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD7308, List_1_Pathfinding_GraphNode__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD7310, List_1_T_Enumerator_Pathfinding_GraphNode__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD7318, List_1_Photon_Bolt_BoltEntity__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD7328, List_1_T_Enumerator_Pathfinding_GraphNode__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD7338, List_1_T_Enumerator_Pathfinding_GraphNode__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD7368, Component_GetComponent_63__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD7370, GameObject_GetComponent_68__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD7378, Component_GetComponent_64__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD7400, EventHandler_1_UnregisterEvent_44__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD7408, EventHandler_1_UnregisterEvent_45__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD7438, UltimateCharacterLocomotion_GetAbility_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD7440, UltimateCharacterLocomotion_GetAbility_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD7448, UltimateCharacterLocomotion_GetAbility_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD7450, UltimateCharacterLocomotion_GetAbility_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD74D8, EventHandler_1_RegisterEvent_46__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD74E0, GameObject_GetComponent_69__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD74F0, EventHandler_1_RegisterEvent_47__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD7508, Component_GetComponent_65__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD7510, Object_1_FindAnyObjectByType_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD7528, Component_GetComponent_66__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD7530, Component_GetComponent_67__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD7860, List_1_UnityEngine_Material___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD7868, List_1_UnityEngine_RenderTexture___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD78D0, LinkedPoolItem_1_RenderChainCommand___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD78E0, LinkedPool_1_BestFitAllocator_Block___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD7910, LinkedPoolItem_1_BestFitAllocator_Block___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD7958, List_1_System_Attribute__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD7968, List_1_System_Attribute__CopyTo__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD7990, List_1_System_Attribute___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD79A0, List_1_System_Attribute__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD79C8, Array_IndexOf_252__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD79F8, LinkedPool_1_BestFitAllocator_Block__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD7A08, LinkedPool_1_BestFitAllocator_Block__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD7A10, List_1_System_ComponentModel_EventDescriptor__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD7A18, List_1_System_ComponentModel_EventDescriptor__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD7A30, List_1_System_ComponentModel_EventDescriptor___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD7AD8, Array_Empty_48__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD7AE8, LinkedPool_1_MeshHandle__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD7AF0, List_1_List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD7B00, List_1_List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD7B48, List_1_UnityEngine_Material__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD7BA0, Array_Empty_49__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD7BA8, LinkedPool_1_MeshHandle__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD7BF8, List_1_List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD7C08, List_1_List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD7CC0, List_1_List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD7D40, LinkedPoolItem_1_MeshHandle___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD7DC8, List_1_List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD7DD0, List_1_List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD7DD8, List_1_List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD7DE0, LinkedPool_1_MeshHandle___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD80E8, Dictionary_2_UnityEngine_UIElements_VectorImage_UnityEngine_UIElements_UIR_VectorImageRenderInfo__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD8108, List_1_UnityEngine_UIElements_UIR_VectorImageManager__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD8120, LinkedPool_1_VectorImageRenderInfo__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD8130, LinkedPool_1_GradientRemap__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD8158, LinkedPool_1_VectorImageRenderInfo__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD8178, Dictionary_2_UnityEngine_UIElements_VectorImage_UnityEngine_UIElements_UIR_VectorImageRenderInfo__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD8188, LinkedPool_1_GradientRemap__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD81C8, List_1_UnityEngine_UIElements_UIR_VectorImageManager___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD8288, LinkedPool_1_GradientRemap___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD82D0, LinkedPoolItem_1_GradientRemap___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD8328, List_1_UnityEngine_UIElements_UIR_VectorImageManager__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD8360, Dictionary_2_UnityEngine_UIElements_VectorImage_UnityEngine_UIElements_UIR_VectorImageRenderInfo___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD8388, Dictionary_2_UnityEngine_UIElements_VectorImage_UnityEngine_UIElements_UIR_VectorImageRenderInfo__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD8490, LinkedPool_1_VectorImageRenderInfo___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD84E8, LinkedPoolItem_1_VectorImageRenderInfo___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD8698, UltimateCharacterLocomotion_GetAbility_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD8800, UltimateCharacterLocomotion_GetAbility_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD88E8, UltimateCharacterLocomotion_GetAbility_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD8A08, GameObjectExtensions_GetCachedComponent_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD8D18, UltimateCharacterLocomotion_GetAbilities_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD8D28, UltimateCharacterLocomotion_GetAbility_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD8D90, Component_GetComponent_68__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD8E50, HashSet_1_Opsive_UltimateCharacterController_Character_Abilities_Items_ItemAbility___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD8FB0, GameObjectExtensions_GetCachedParentComponent_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD8FD8, HashSet_1_Opsive_UltimateCharacterController_Character_Abilities_Items_ItemAbility__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD9000, HashSet_1_Opsive_UltimateCharacterController_Character_Abilities_Items_ItemAbility__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD9038, HashSet_1_Opsive_UltimateCharacterController_Character_Abilities_Items_ItemAbility__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD9048, HashSet_1_Opsive_UltimateCharacterController_Character_Abilities_Items_ItemAbility__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD9088, SortedList_2_System_String_System_Object___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD90A8, SortedList_2_System_String_System_Object__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD90C0, SortedList_2_System_String_System_Object__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD90E0, SortedList_2_System_String_System_Object__get_Comparer__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD90F8, Array_Resize_138__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD9100, SchedulerBase_ScheduleFixed_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD9138, GameObjectExtensions_GetCachedParentComponents_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD9148, GameObjectExtensions_GetCachedComponents_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD91F0, GameObject_GetComponentsInChildren_13__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD92E8, Array_Empty_50__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD9310, List_1_Rewired_ControllerMap__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD9320, GameObjectExtensions_GetCachedParentComponents_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD9328, List_1_Rewired_ControllerMap__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD9350, GameObjectExtensions_GetCachedParentComponent_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD9560, Nullable_1_System_ComponentModel_DesignerSerializationVisibility__get_HasValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD9568, Nullable_1_System_ComponentModel_DesignerSerializationVisibility__GetValueOrDefault__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD9570, Nullable_1_System_ComponentModel_DesignerSerializationVisibility___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD9758, TaskFactory_FromAsync_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD9BC8, HashSet_1_UnityEngine_UIElements_StyleSheets_StylePropertyId__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD9E80, Dictionary_2_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD9EA0, HashSet_1_UnityEngine_UIElements_StyleSheets_StylePropertyId___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD9EA8, Dictionary_2_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD9EB8, Dictionary_2_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD9EC0, Dictionary_2_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CD9FE0, List_1_UnityEngine_UIElements_MeshWriteData___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDA048, List_1_UnityEngine_UIElements_MeshWriteData__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDA068, List_1_UnityEngine_UIElements_MeshWriteData__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDA070, List_1_UnityEngine_UIElements_MeshWriteData__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDA360, EventHandler_1_ExecuteEvent_51__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDA3E0, UnityEvent_2_Opsive_UltimateCharacterController_Camera_ViewTypes_ViewType_System_Boolean__Invoke__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDA3F0, EventHandler_1_ExecuteEvent_52__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDA400, Dictionary_2_Horror_DevourMap_Horror_Menu_MapReleasedState__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDA408, Dictionary_2_Horror_DevourMap_Horror_Menu_MapReleasedState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDA410, GameObjectExtensions_GetCachedComponent_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDA458, GameObject_GetComponent_70__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDA490, UltimateCharacterLocomotion_GetAbility_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDA4A0, Ability_GetComponent_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDA4E0, EventHandler_1_ExecuteEvent_53__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDA4E8, EventHandler_1_ExecuteEvent_54__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDA590, Component_GetComponent_69__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDA618, HashSet_1_Opsive_UltimateCharacterController_Items_Item__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDA620, HashSet_1_Opsive_UltimateCharacterController_Items_Item__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDA668, HashSet_1_Opsive_UltimateCharacterController_Items_Item___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDA670, EventHandler_1_UnregisterEvent_46__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDA690, Array_Resize_139__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDA698, HashSet_1_Opsive_UltimateCharacterController_Items_Item__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDA7B0, EventHandler_1_RegisterEvent_48__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDA7E0, Ability_GetAbilities_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDA900, UltimateCharacterLocomotion_IsAbilityTypeActive_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDA920, Dictionary_2_Opsive_Shared_Inventory_IItemIdentifier_System_Int32__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDAB10, Enumerable_FirstOrDefault_16__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDAC00, Enumerable_Where_26__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDAC18, Dictionary_2_System_String_System_Object__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDAC28, Enumerable_FirstOrDefault_17__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDAC30, Component_GetComponent_70__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDACA0, Dictionary_2_TKey_TValue_Enumerator_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDACA8, KeyValuePair_2_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion__get_Key__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDACB0, Enumerable_Contains_13__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDACB8, Dictionary_2_TKey_TValue_Enumerator_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDACC0, Dictionary_2_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDACC8, Dictionary_2_TKey_TValue_Enumerator_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDADE8, List_1_Horror_GameStatsPlayerToken__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDADF0, List_1_Horror_GameStatsPlayerToken__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDADF8, List_1_Horror_GameStatsPlayerToken__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDAE00, List_1_Horror_GameStatsPlayerToken___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDAE18, Enumerable_OrderBy_15__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDAE20, Enumerable_ToArray_23__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDAE28, Enumerable_OrderByDescending_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDAEB0, Component_GetComponent_71__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDAEC0, Dictionary_2_System_String_System_Object__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDAEF8, Enumerable_Select_57__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDAF00, Enumerable_Where_27__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDAFD0, Component_GetComponent_72__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDAFD8, Component_GetComponent_73__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB040, List_1_UIEmoteSelectionType__Find__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB048, List_1_UIOutfitSelectionType__Find__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB050, List_1_UIFlashlightSelectionType__Find__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB060, Component_GetComponent_74__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB068, Component_GetComponentsInChildren_21__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB078, List_1_UIEmoteSelectionType__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB088, Enumerable_Where_28__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB0A0, Enumerable_Where_29__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB0A8, List_1_UIFlashlightSelectionType__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB0B8, List_1_UIPetSelectionType__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB0C8, Enumerable_Where_30__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB0E0, List_1_UIPerkSelectionType__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB0F0, Enumerable_Where_31__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB108, List_1_UIOutfitSelectionType__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB138, List_1_UIPetSelectionType__Find__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB140, List_1_UIPetSelectionType__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB160, List_1_CharacterFlashlight__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB180, List_1_T_Enumerator_CharacterFlashlight__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB190, Enumerable_Where_32__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB198, List_1_T_Enumerator_CharacterFlashlight__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB1A0, Enumerable_Where_33__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB1A8, Enumerable_Where_34__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB1B0, Enumerable_ToList_18__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB1B8, Enumerable_ToList_19__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB1C0, Enumerable_ToList_20__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB1C8, List_1_T_Enumerator_CharacterFlashlight__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB1E0, List_1_UIPerkSelectionType__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB1E8, List_1_UIPerkSelectionType__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB1F0, List_1_T_Enumerator_UIPerkSelectionType__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB200, Enumerable_ToList_21__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB208, List_1_T_Enumerator_UIPerkSelectionType__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB210, Enumerable_ElementAt_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB218, Enumerable_OrderByDescending_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB220, Enumerable_Concat_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB228, Enumerable_Count_21__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB230, Component_GetComponentsInChildren_22__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB238, List_1_T_Enumerator_UIPerkSelectionType__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB298, List_1_UIFlashlightSelectionType__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB2A8, List_1_UIEmoteSelectionType__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB2B0, List_1_UIOutfitSelectionType__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB2C0, List_1_UIPetSelectionType__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB2E8, List_1_T_Enumerator_UIEmoteSelectionType__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB2F0, List_1_T_Enumerator_UIPetSelectionType__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB2F8, List_1_T_Enumerator_UIOutfitSelectionType__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB300, List_1_T_Enumerator_UIFlashlightSelectionType__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB308, List_1_T_Enumerator_UIEmoteSelectionType__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB310, List_1_T_Enumerator_UIFlashlightSelectionType__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB318, List_1_T_Enumerator_UIOutfitSelectionType__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB320, List_1_T_Enumerator_UIPetSelectionType__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB328, Enumerable_ToList_22__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB330, Enumerable_Where_35__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB338, Enumerable_ToList_23__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB340, Enumerable_ToList_24__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB348, Enumerable_ThenBy_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB350, Enumerable_ToList_25__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB358, Enumerable_ThenByDescending_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB360, Enumerable_ThenBy_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB368, Enumerable_OrderByDescending_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB370, Enumerable_ThenByDescending_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB378, Enumerable_ElementAt_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB380, Enumerable_OrderByDescending_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB388, Enumerable_Count_22__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB398, Enumerable_ElementAt_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB3A0, Component_GetComponentsInChildren_23__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB3A8, Enumerable_Count_23__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB3B0, Component_GetComponentsInChildren_24__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB3B8, Component_GetComponentsInChildren_25__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB3C8, Component_GetComponentsInChildren_26__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB3D0, List_1_T_Enumerator_UIPetSelectionType__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB3E0, List_1_T_Enumerator_UIFlashlightSelectionType__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB3E8, List_1_T_Enumerator_UIEmoteSelectionType__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB3F0, List_1_T_Enumerator_UIOutfitSelectionType__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB410, Component_GetComponent_75__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB438, Component_GetComponent_76__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB450, Component_GetComponent_77__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB4C8, Stack_1_UnityEngine_UIElements_StyleSheets_Syntax_ExpressionCombinator___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB4D8, Stack_1_UnityEngine_UIElements_StyleSheets_Syntax_Expression___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB4E0, List_1_CharacterOutfit__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB4E8, List_1_UnityEngine_UIElements_StyleSheets_Syntax_Expression___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB4F0, Component_GetComponent_78__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB500, List_1_CharacterOutfit__FindAll__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB508, Dictionary_2_System_String_UnityEngine_UIElements_StyleSheets_Syntax_Expression___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB520, GameObject_GetComponent_71__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB550, GameObject_GetComponent_72__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB590, GameObject_GetComponent_73__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB5B0, List_1_UnityEngine_UIElements_StyleSheets_Syntax_Expression__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB5B8, GameObject_GetComponents_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB5C8, List_1_UnityEngine_UIElements_StyleSheets_Syntax_Expression__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB5D0, List_1_UnityEngine_UIElements_StyleSheets_Syntax_Expression__Insert__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB5D8, GameObject_GetComponent_74__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB5E8, List_1_UnityEngine_UIElements_StyleSheets_Syntax_Expression__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB610, GameObject_GetComponent_75__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB620, GameObject_GetComponent_76__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB690, List_1_T_Enumerator_UIMapSelectionType__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB698, List_1_UIMapSelectionType__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB6A0, Enumerable_ToList_26__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB6A8, List_1_T_Enumerator_UIMapSelectionType__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB6C0, Component_GetComponentsInChildren_27__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB6C8, List_1_T_Enumerator_UIMapSelectionType__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB6E8, GameObject_GetComponent_77__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB6F0, List_1_Horror_Menu_MapListItem__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB6F8, List_1_T_Enumerator_Horror_Menu_MapListItem__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB700, List_1_T_Enumerator_Horror_Menu_MapListItem__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB708, Dictionary_2_Horror_DevourMap_Horror_Menu_MapReleasedState__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB710, List_1_T_Enumerator_Horror_Menu_MapListItem__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB720, Stack_1_UnityEngine_UIElements_StyleSheets_Syntax_ExpressionCombinator__Pop__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB728, Stack_1_UnityEngine_UIElements_StyleSheets_Syntax_Expression__Pop__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB730, Stack_1_UnityEngine_UIElements_StyleSheets_Syntax_ExpressionCombinator__Peek__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB748, Dictionary_2_System_String_UnityEngine_UIElements_StyleSheets_Syntax_Expression__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB750, Dictionary_2_System_String_UnityEngine_UIElements_StyleSheets_Syntax_Expression__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB768, Stack_1_UnityEngine_UIElements_StyleSheets_Syntax_ExpressionCombinator__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB778, Stack_1_UnityEngine_UIElements_StyleSheets_Syntax_ExpressionCombinator__Push__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB788, Stack_1_UnityEngine_UIElements_StyleSheets_Syntax_Expression__Push__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB7A8, KeyValuePair_2_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB7B0, Dictionary_2_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB7B8, Enumerable_First_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDB890, GameObject_GetComponent_78__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDBD70, Dictionary_2_System_String_UnityEngine_Color32___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDBE60, Dictionary_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDBE68, Dictionary_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDBE70, Dictionary_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDBE78, Dictionary_2_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDBE80, Dictionary_2_System_String_UnityEngine_Color32__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDBE88, Dictionary_2_System_String_UnityEngine_Color32__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDBF78, List_1_Pathfinding_ClipperLib_OutRec__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDBF88, List_1_T_Enumerator_Pathfinding_ClipperLib_OutRec__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDBF98, List_1_T_Enumerator_Pathfinding_ClipperLib_OutRec__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDBFA8, List_1_T_Enumerator_Pathfinding_ClipperLib_OutRec__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDC078, List_1_Pathfinding_ClipperLib_PolyNode__set_Capacity__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDC0A8, List_1_List_1_Pathfinding_ClipperLib_IntPoint__set_Capacity__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDC0B8, List_1_List_1_Pathfinding_ClipperLib_IntPoint__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDC0F8, List_1_Pathfinding_ClipperLib_Join__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDC108, List_1_Pathfinding_ClipperLib_Join__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDC148, List_1_Pathfinding_ClipperLib_Join__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDC170, List_1_Pathfinding_ClipperLib_OutRec__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDC180, List_1_Pathfinding_ClipperLib_OutRec__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDC1F0, List_1_Pathfinding_ClipperLib_OutRec__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDC240, List_1_Pathfinding_ClipperLib_OutRec___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDC260, List_1_Pathfinding_ClipperLib_Join___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDC290, List_1_Pathfinding_ClipperLib_TEdge___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDC298, List_1_Pathfinding_ClipperLib_TEdge__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDC2A0, List_1_List_1_Pathfinding_ClipperLib_TEdge__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDC2A8, List_1_Pathfinding_ClipperLib_TEdge__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDC2B0, List_1_Pathfinding_ClipperLib_OutRec__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDC2B8, List_1_Pathfinding_ClipperLib_OutRec__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDC2E8, List_1_Pathfinding_ClipperLib_Join__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDC2F0, List_1_List_1_Pathfinding_ClipperLib_IntPoint__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDC348, List_1_Pathfinding_ClipperLib_PolyNode__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDC358, List_1_Pathfinding_ClipperLib_TEdge__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDC368, List_1_List_1_Pathfinding_ClipperLib_TEdge__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDC370, List_1_List_1_Pathfinding_ClipperLib_TEdge__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDC378, List_1_Pathfinding_ClipperLib_TEdge__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDC380, List_1_Pathfinding_ClipperLib_TEdge__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDC388, List_1_List_1_Pathfinding_ClipperLib_TEdge__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDC398, List_1_List_1_Pathfinding_ClipperLib_TEdge___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDC3B0, List_1_Pathfinding_ClipperLib_PolyNode__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDC3B8, List_1_Pathfinding_ClipperLib_PolyNode__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDC3C8, List_1_Pathfinding_ClipperLib_PolyNode___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDC638, List_1_CharacterPerk__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDC648, List_1_CharacterPet__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDC650, List_1_CharacterFlashlight__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDC658, List_1_CharacterPet__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDC660, List_1_CharacterOutfit__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDC668, List_1_CharacterFlashlight__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDC670, List_1_CharacterPerk__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDC678, List_1_CharacterOutfit__AddRange__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDC680, List_1_CharacterPet__Reverse__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDC6A8, Enumerable_Where_36__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDC6B8, Enumerable_ToList_27__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDC6C0, Enumerable_Where_37__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDC6C8, Enumerable_ThenBy_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDC6D0, Enumerable_ToList_28__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDC6D8, Enumerable_ThenByDescending_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDC6E0, Enumerable_ThenByDescending_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDC6E8, Enumerable_OrderByDescending_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDC6F0, Enumerable_OrderByDescending_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDC6F8, Enumerable_OrderByDescending_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDC710, List_1_CharacterOutfit__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDC748, Enumerable_Any_13__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDC7E8, UnityEvent_1_System_String__AddListener__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDC818, PostProcessProfile_TryGetSettings_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDCD08, List_1_UnityEngine_UI_Dropdown_OptionData__FindIndex__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDCD90, Component_GetComponents_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDCD98, Component_GetComponent_79__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDCDA0, Component_GetComponent_80__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDCDC0, PostProcessProfile_TryGetSettings_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDCDE8, Component_GetComponentsInChildren_28__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDCE00, EntityEventListener_1_IJumpScareState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDCE08, EventHandler_1_UnregisterEvent_47__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDCE30, EntityEventListenerBase_1_Photon_Bolt_IJumpScareState__get_state__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDCE50, Component_GetComponentsInChildren_29__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDCE58, EventHandler_1_RegisterEvent_49__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDCE78, List_1_System_Enum___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDCE88, List_1_System_Enum__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDCE90, List_1_System_Enum__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDD028, List_1_Pathfinding_Ionic_Zip_ZipEntry__AsReadOnly__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDD030, List_1_Pathfinding_Ionic_Zip_ZipEntry___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDD048, List_1_Pathfinding_Ionic_Zip_ZipEntry__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDD050, Dictionary_2_System_String_Pathfinding_Ionic_Zip_ZipEntry__get_Values__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDD068, Dictionary_2_System_String_Pathfinding_Ionic_Zip_ZipEntry__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDD070, Array_Empty_51__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDD078, Dictionary_2_System_String_Pathfinding_Ionic_Zip_ZipEntry___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDD088, Dictionary_2_System_String_Pathfinding_Ionic_Zip_ZipEntry___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDD200, Dictionary_2_System_String_Pathfinding_Ionic_Zip_ZipEntry___ctor_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDD208, Dictionary_2_System_String_Pathfinding_Ionic_Zip_ZipEntry__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDD240, Dictionary_2_System_String_Pathfinding_Ionic_Zip_ZipEntry__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDD2A0, Dictionary_2_System_String_Pathfinding_Ionic_Zip_ZipEntry__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDD428, List_1_System_ComponentModel_PropertyDescriptor___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDD438, List_1_System_ComponentModel_PropertyDescriptor__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDD448, List_1_System_ComponentModel_PropertyDescriptor__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDD4B0, Array_Empty_52__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDD4E8, Array_IndexOf_253__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDD990, List_1_T_Enumerator_System_ComponentModel_MaskedTextProvider_CharDescriptor__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDD9A0, List_1_System_ComponentModel_MaskedTextProvider_CharDescriptor__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDD9A8, List_1_T_Enumerator_System_ComponentModel_MaskedTextProvider_CharDescriptor__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDD9B0, List_1_System_ComponentModel_MaskedTextProvider_CharDescriptor__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDD9B8, List_1_T_Enumerator_System_ComponentModel_MaskedTextProvider_CharDescriptor__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDD9C0, List_1_System_ComponentModel_MaskedTextProvider_CharDescriptor___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDD9E8, List_1_System_ComponentModel_MaskedTextProvider_CharDescriptor__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDDEF8, Dictionary_2_TKey_TValue_ValueCollection_System_String_Pathfinding_Ionic_Zip_ZipEntry__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDDF00, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_Pathfinding_Ionic_Zip_ZipEntry__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDDF08, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_Pathfinding_Ionic_Zip_ZipEntry__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDDF60, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_Pathfinding_Ionic_Zip_ZipEntry__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE018, List_1_UnityEngine_UIElements_IBinding__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE020, List_1_UnityEngine_UIElements_IBinding__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE028, List_1_T_Enumerator_UnityEngine_UIElements_IBinding__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE030, List_1_UnityEngine_UIElements_IBinding__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE038, List_1_T_Enumerator_UnityEngine_UIElements_IBinding__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE060, List_1_UnityEngine_UIElements_IBinding___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE080, Assert_IsNotNull_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE098, List_1_T_Enumerator_UnityEngine_UIElements_IBindingRequest__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE0A0, List_1_T_Enumerator_UnityEngine_UIElements_IBindingRequest__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE0B0, Enumerable_FirstOrDefault_18__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE0B8, List_1_T_Enumerator_UnityEngine_UIElements_IBindingRequest__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE0C0, List_1_T_Enumerator_UnityEngine_UIElements_IBinding__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE0C8, ObjectListPool_1_IBindingRequest__Release__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE0D8, List_1_UnityEngine_UIElements_IBindingRequest__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE0E8, HashSet_1_UnityEngine_UIElements_VisualElement__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE108, HashSet_1_UnityEngine_UIElements_VisualElement__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE148, VisualTreeUpdater_SetUpdater_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE150, VisualTreeUpdater_SetUpdater_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE158, VisualTreeUpdater_SetUpdater_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE160, VisualTreeUpdater_SetUpdater_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE168, VisualTreeUpdater_SetUpdater_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE170, VisualTreeUpdater_SetUpdater_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE178, VisualTreeUpdater_SetUpdater_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE1D0, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE1F0, List_1_UnityEngine_UIElements_StyleSheet__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE1F8, HashSet_1_UnityEngine_UIElements_VisualElement__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE208, EventBase_1_CustomStyleResolvedEvent__GetPooled__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE218, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE220, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE228, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StylePropertyId__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE230, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE238, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StylePropertyId__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE240, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StylePropertyId__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE248, HashSet_1_T_Enumerator_UnityEngine_UIElements_VisualElement__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE250, HashSet_1_T_Enumerator_UnityEngine_UIElements_VisualElement__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE260, HashSet_1_T_Enumerator_UnityEngine_UIElements_VisualElement__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE268, HashSet_1_UnityEngine_UIElements_VisualElement__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE270, HashSet_1_UnityEngine_UIElements_VisualElement___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE278, HashSet_1_UnityEngine_UIElements_VisualElement__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE280, HashSet_1_UnityEngine_UIElements_VisualElement__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE2A0, List_1_UnityEngine_UIElements_StyleSheet__RemoveRange__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE2C0, Dictionary_2_System_Int32_UnityEngine_UIElements_StyleVariableContext__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE2C8, Dictionary_2_System_Int32_UnityEngine_UIElements_StyleVariableContext__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE2D8, Dictionary_2_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE2E0, Dictionary_2_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE2E8, Dictionary_2_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE308, Dictionary_2_System_Int32_UnityEngine_UIElements_StyleVariableContext___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE318, List_1_T_Enumerator_UnityEngine_UIElements_Experimental_IValueAnimationUpdate__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE320, HashSet_1_UnityEngine_UIElements_Experimental_IValueAnimationUpdate__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE328, HashSet_1_UnityEngine_UIElements_Experimental_IValueAnimationUpdate__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE330, List_1_T_Enumerator_UnityEngine_UIElements_Experimental_IValueAnimationUpdate__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE338, List_1_UnityEngine_UIElements_Experimental_IValueAnimationUpdate__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE340, List_1_T_Enumerator_UnityEngine_UIElements_Experimental_IValueAnimationUpdate__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE348, HashSet_1_UnityEngine_UIElements_Experimental_IValueAnimationUpdate___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE358, Enumerable_ToList_29__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE388, List_1_UnityEngine_UIElements_StyleSheet__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE398, List_1_UnityEngine_UIElements_StyleSheet___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE3A8, List_1_UnityEngine_UIElements_StyleSheet__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE3B0, List_1_UnityEngine_UIElements_StyleSheet__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE3C0, List_1_UnityEngine_UIElements_StyleSheet__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE3E0, List_1_UnityEngine_UIElements_VisualElementFocusRing_FocusRingRecord__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE3E8, List_1_T_Enumerator_UnityEngine_UIElements_VisualElementFocusRing_FocusRingRecord__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE3F8, List_1_UnityEngine_UIElements_VisualElementFocusRing_FocusRingRecord__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE400, List_1_UnityEngine_UIElements_VisualElementFocusRing_FocusRingRecord__Sort__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE410, List_1_T_Enumerator_UnityEngine_UIElements_VisualElementFocusRing_FocusRingRecord__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE418, List_1_UnityEngine_UIElements_VisualElementFocusRing_FocusRingRecord__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE428, List_1_T_Enumerator_UnityEngine_UIElements_VisualElementFocusRing_FocusRingRecord__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE440, List_1_UnityEngine_UIElements_VisualElementFocusRing_FocusRingRecord__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE448, List_1_UnityEngine_UIElements_VisualElementFocusRing_FocusRingRecord__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE450, CallbackEventHandler_UnregisterCallback_16__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE460, CallbackEventHandler_UnregisterCallback_17__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE468, KeyboardEventBase_1_KeyDownEvent__get_modifiers__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE488, ObjectPool_1_VisualElementFocusChangeTarget__Release__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE4A0, ObjectPool_1_VisualElementFocusChangeTarget__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE4A8, ObjectPool_1_VisualElementFocusChangeTarget___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE4B8, List_1_UnityEngine_UIElements_VisualElementFocusRing_FocusRingRecord___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE4C8, ObjectPool_1_System_Collections_Generic_List_1__8_Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE4E0, UQueryBuilder_1_VisualElement__Name__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE4F0, UQueryBuilder_1_VisualElement__SingleBaseType__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE500, UQueryBuilder_1_VisualElement__Build__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE510, UQueryBuilder_1_VisualElement__Class__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE530, ObjectPool_1_System_Collections_Generic_List_1__8_Release__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE538, List_1_UnityEngine_UIElements_VisualElement__set_Capacity__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE558, List_1_UnityEngine_UIElements_VisualElement__get_Capacity__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE578, ObjectPool_1_System_Collections_Generic_List_1__8__ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE5D8, Dictionary_2_System_Int32_UnityEngine_UIElements_Panel__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE5E8, List_1_UnityEngine_UIElements_Panel__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE638, Stack_1_UnityEngine_UIElements_IMGUIContainer___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE650, Dictionary_2_System_Int32_UnityEngine_UIElements_Panel___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE6F0, Stack_1_UnityEngine_UIElements_IMGUIContainer__Push__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE6F8, Dictionary_2_System_Int32_UnityEngine_UIElements_Panel__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE700, KeyboardEventBase_1_KeyDownEvent__GetPooled_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE708, KeyboardEventBase_1_KeyUpEvent__GetPooled__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE710, CommandEventBase_1_ValidateCommandEvent__GetPooled__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE718, CommandEventBase_1_ExecuteCommandEvent__GetPooled_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE748, PointerEventBase_1_PointerMoveEvent__GetPooled_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE758, PointerEventBase_1_PointerUpEvent__GetPooled_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE760, PointerEventBase_1_PointerDownEvent__GetPooled_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE768, MouseEventBase_1_MouseEnterWindowEvent__GetPooled__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE770, MouseEventBase_1_ContextClickEvent__GetPooled__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE778, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_Panel__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE780, KeyValuePair_2_System_Int32_UnityEngine_UIElements_Panel__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE788, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_UIElements_Panel__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE7A0, List_1_Pathfinding_Ionic_Zlib_WorkItem__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE7B0, List_1_T_Enumerator_Pathfinding_Ionic_Zlib_WorkItem__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE7B8, List_1_T_Enumerator_Pathfinding_Ionic_Zlib_WorkItem__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE7C8, List_1_T_Enumerator_Pathfinding_Ionic_Zlib_WorkItem__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE7D0, Stack_1_UnityEngine_UIElements_IMGUIContainer__Peek__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE7E0, Stack_1_UnityEngine_UIElements_IMGUIContainer__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE818, Dictionary_2_System_Int32_UnityEngine_UIElements_Panel__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE858, Dictionary_2_System_Int32_UnityEngine_UIElements_Panel__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE868, Stack_1_UnityEngine_UIElements_IMGUIContainer__Pop__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE8E0, List_1_T_Enumerator_UnityEngine_UIElements_IUIElementsUtility__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE8E8, List_1_T_Enumerator_UnityEngine_UIElements_IUIElementsUtility__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE8F8, List_1_UnityEngine_UIElements_IUIElementsUtility__Insert__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE900, List_1_T_Enumerator_UnityEngine_UIElements_IUIElementsUtility__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE938, List_1_Pathfinding_Ionic_Zlib_WorkItem__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE950, List_1_UnityEngine_UIElements_IUIElementsUtility__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE978, List_1_Pathfinding_Ionic_Zlib_WorkItem___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE988, List_1_Pathfinding_Ionic_Zlib_WorkItem__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE998, List_1_UnityEngine_UIElements_Panel__Sort__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDE9E0, List_1_UnityEngine_UIElements_IUIElementsUtility___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDEA28, List_1_UnityEngine_UIElements_PanelSettings__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDEA30, List_1_T_Enumerator_UnityEngine_UIElements_PanelSettings__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDEA38, List_1_UnityEngine_UIElements_PanelSettings__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDEA40, List_1_UnityEngine_UIElements_UIDocument__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDEA48, List_1_UnityEngine_UIElements_PanelSettings__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDEA50, List_1_UnityEngine_UIElements_PanelSettings__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDEA58, List_1_T_Enumerator_UnityEngine_UIElements_PanelSettings__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDEA60, List_1_T_Enumerator_UnityEngine_UIElements_PanelSettings__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDEA98, List_1_T_Enumerator_UnityEngine_UIElements_Panel__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDEAA0, List_1_UnityEngine_UIElements_Panel__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDEAA8, List_1_T_Enumerator_UnityEngine_UIElements_Panel__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDEAB0, List_1_T_Enumerator_UnityEngine_UIElements_Panel__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDEAB8, List_1_UnityEngine_UIElements_Panel__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDEAC0, UxmlFactory_2_TextElement_TextElement_UxmlTraits___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDEB20, List_1_UnityEngine_UIElements_Panel___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDEB28, List_1_UnityEngine_UIElements_PanelSettings___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDEB60, ChangeEvent_1_System_String__GetPooled__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDEB68, Dictionary_2_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDEBB0, UxmlFactory_2_TemplateContainer_TemplateContainer_UxmlTraits___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDEC88, StylePropertyAnimationSystem_ValuesDiscrete_1_UnityEngine_Font___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDECB0, List_1_Pathfinding_Poly2Tri_DTSweepConstraint__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDECC0, List_1_Pathfinding_Poly2Tri_DTSweepConstraint___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDECE0, List_1_Pathfinding_Poly2Tri_TriangulationPoint__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDED78, List_1_Pathfinding_Poly2Tri_TriangulationPoint__Sort__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDED98, List_1_T_Enumerator_Pathfinding_Poly2Tri_TriangulationPoint__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDEDA0, List_1_Pathfinding_Poly2Tri_TriangulationPoint__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDEDB8, List_1_Pathfinding_Poly2Tri_DelaunayTriangle___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDEDC0, List_1_Pathfinding_Poly2Tri_TriangulationPoint___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDEE30, FixedArray3_1_DelaunayTriangle__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDEE48, List_1_T_Enumerator_Pathfinding_Poly2Tri_TriangulationPoint__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDEE50, List_1_T_Enumerator_Pathfinding_Poly2Tri_TriangulationPoint__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDEE78, List_1_Pathfinding_Poly2Tri_DelaunayTriangle__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDEEC8, List_1_T_Enumerator_Pathfinding_Poly2Tri_DTSweepConstraint__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDEED0, List_1_Pathfinding_Poly2Tri_DTSweepConstraint__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDEED8, List_1_T_Enumerator_Pathfinding_Poly2Tri_DTSweepConstraint__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDEEE0, List_1_T_Enumerator_Pathfinding_Poly2Tri_DTSweepConstraint__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDEF28, List_1_Rewired_Integration_UnityUI_RewiredPointerInputModule_ButtonState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDEF58, List_1_Rewired_Integration_UnityUI_RewiredPointerInputModule_ButtonState__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDEF88, List_1_Rewired_Integration_UnityUI_RewiredPointerInputModule_ButtonState__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDEF98, List_1_Rewired_Integration_UnityUI_RewiredPointerInputModule_ButtonState__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDEFC0, List_1_Rewired_UI_IMouseInputSource___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDEFE8, Dictionary_2_System_Int32_Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDEFF0, FixedArray3_1_DelaunayTriangle__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF000, FixedArray3_1_TriangulationPoint__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF020, ExecuteEvents_GetEventHandler_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF028, FixedArray3_1_TriangulationPoint__IndexOf__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF030, FixedArray3_1_TriangulationPoint__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF060, KeyValuePair_2_System_Int32_Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData__get_Key__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF068, KeyValuePair_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData__get_Key__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF070, Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF078, Dictionary_2_TKey_TValue_Enumerator_System_Int32_Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF080, FixedArray3_1_DelaunayTriangle__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF088, KeyValuePair_2_System_Int32_Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF098, Dictionary_2_System_Int32_Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF0A0, Dictionary_2_TKey_TValue_Enumerator_System_Int32_Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF0A8, FixedArray3_1_TriangulationPoint__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF0C0, List_1_Pathfinding_Poly2Tri_DelaunayTriangle__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF0C8, Dictionary_2_TKey_TValue_Enumerator_System_Int32_Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF0E0, ExecuteEvents_Execute_22__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF0F0, List_1_Pathfinding_Poly2Tri_TriangulationPoint__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF0F8, ExecuteEvents_Execute_23__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF110, ExecuteEvents_Execute_24__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF120, List_1_Pathfinding_Poly2Tri_Polygon__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF128, List_1_Pathfinding_Poly2Tri_Polygon___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF148, KeyValuePair_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF158, Dictionary_2_TKey_TValue_Enumerator_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF160, Dictionary_2_TKey_TValue_Enumerator_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF168, List_1_Pathfinding_Poly2Tri_DelaunayTriangle___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF178, Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF180, List_1_Pathfinding_Poly2Tri_TriangulationPoint__AddRange__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF188, Dictionary_2_TKey_TValue_Enumerator_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF190, List_1_Pathfinding_Poly2Tri_Polygon__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF1A0, List_1_T_Enumerator_Pathfinding_Poly2Tri_Polygon__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF1A8, List_1_T_Enumerator_Pathfinding_Poly2Tri_Polygon__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF1B0, List_1_Pathfinding_Poly2Tri_DelaunayTriangle__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF1B8, List_1_T_Enumerator_Pathfinding_Poly2Tri_Polygon__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF1D8, List_1_Pathfinding_Poly2Tri_DelaunayTriangle__AddRange__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF1F0, Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF200, Dictionary_2_System_Int32_Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF218, Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF220, Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF228, Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF230, Dictionary_2_System_Int32_Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF240, Dictionary_2_System_Int32_Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF268, List_1_Pathfinding_Poly2Tri_TriangulationPoint__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF270, List_1_Pathfinding_Poly2Tri_TriangulationPoint__set_Capacity__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF278, List_1_Rewired_UI_IMouseInputSource__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF280, List_1_Pathfinding_Poly2Tri_TriangulationPoint___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF298, List_1_Pathfinding_Poly2Tri_TriangulationPoint__get_Capacity__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF2A0, List_1_Pathfinding_Poly2Tri_TriangulationPoint__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF2A8, List_1_Pathfinding_Poly2Tri_TriangulationPoint__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF2B8, UnityTools_IsNullOrDestroyed_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF2D0, List_1_Rewired_UI_IMouseInputSource__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF300, List_1_Rewired_UI_IMouseInputSource__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF318, UnityTools_IsNullOrDestroyed_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF328, List_1_Rewired_UI_IMouseInputSource__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF330, List_1_Rewired_UI_IMouseInputSource__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF510, List_1_Rewired_Joystick__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF518, List_1_Rewired_Joystick___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF670, JsonParser_FromJson_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF6B8, Dictionary_2_System_String_System_ComponentModel_EventDescriptor__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF6C8, Dictionary_2_System_String_System_ComponentModel_EventDescriptor__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF6D8, List_1_Rewired_Data_UserDataStore_PlayerPrefs_JoystickAssignmentHistoryInfo___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF6E0, List_1_Rewired_Data_UserDataStore_PlayerPrefs_JoystickAssignmentHistoryInfo__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF6E8, List_1_Rewired_Data_UserDataStore_PlayerPrefs_JoystickAssignmentHistoryInfo__Find__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF6F8, List_1_Rewired_Joystick__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF700, List_1_Rewired_Data_UserDataStore_PlayerPrefs_JoystickAssignmentHistoryInfo__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF708, List_1_Rewired_Data_UserDataStore_PlayerPrefs_JoystickAssignmentHistoryInfo__FindIndex__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF718, List_1_T_Enumerator_Rewired_Joystick__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF728, List_1_T_Enumerator_Rewired_Joystick__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF730, Dictionary_2_System_String_System_ComponentModel_PropertyDescriptor__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF738, List_1_T_Enumerator_Rewired_Joystick__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF740, Dictionary_2_System_String_System_ComponentModel_PropertyDescriptor__get_Values__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF748, Dictionary_2_System_String_System_ComponentModel_PropertyDescriptor__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF750, Dictionary_2_System_String_System_ComponentModel_PropertyDescriptor___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF770, Dictionary_2_TKey_TValue_ValueCollection_System_String_System_ComponentModel_PropertyDescriptor__CopyTo__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF778, Dictionary_2_System_String_System_ComponentModel_EventDescriptor__get_Values__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF788, Dictionary_2_System_String_System_ComponentModel_EventDescriptor___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF790, Dictionary_2_System_String_System_ComponentModel_EventDescriptor__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF798, Dictionary_2_System_String_System_ComponentModel_PropertyDescriptor__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF7A0, Dictionary_2_TKey_TValue_ValueCollection_System_String_System_ComponentModel_EventDescriptor__CopyTo__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDF9F8, ControllerTemplate_GetElement_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDFB20, ControllerTemplate_GetElement_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDFB50, ControllerTemplate_GetElement_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDFB58, ControllerTemplate_GetElement_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDFB60, ControllerTemplate_GetElement_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDFB88, ControllerTemplate_GetElement_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDFB90, ControllerTemplate_GetElement_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDFB98, ControllerTemplate_GetElement_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDFBA0, ControllerTemplate_GetElement_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDFC10, EventHandler_1_ExecuteEvent_55__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDFC30, EventHandler_1_ExecuteEvent_56__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDFC38, EventHandler_1_ExecuteEvent_57__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDFC40, EventHandler_1_ExecuteEvent_58__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDFC48, Component_GetComponent_81__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDFC58, Component_GetComponent_82__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDFC60, Component_GetComponent_83__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDFC68, BoltEntity_GetState_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDFCB8, _f_AnonymousType2_3_UdpKit_Platform_Photon_PhotonSession_Horror_RoomProtocolToken_Horror_GameConfigToken___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDFCC8, KeyValuePair_2_System_Guid_UdpKit_UdpSession__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDFD08, _f_AnonymousType2_3_UdpKit_Platform_Photon_PhotonSession_Horror_RoomProtocolToken_Horror_GameConfigToken__get_token__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDFD18, _f_AnonymousType2_3_UdpKit_Platform_Photon_PhotonSession_Horror_RoomProtocolToken_Horror_GameConfigToken__get_gameConfigToken__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDFD20, _f_AnonymousType2_3_UdpKit_Platform_Photon_PhotonSession_Horror_RoomProtocolToken_Horror_GameConfigToken__get_photonSession__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDFD58, Map_2_System_Guid_UdpSession__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDFD68, List_1_f_AnonymousType2_3__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDFD70, List_1_f_AnonymousType2_3__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDFD80, GameObject_GetComponent_79__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDFD98, List_1_T_Enumerator_f_AnonymousType2_3__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDFDA0, List_1_T_Enumerator_f_AnonymousType2_3__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDFDA8, Enumerable_ToList_30__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDFDB0, Enumerable_Where_38__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDFDB8, Enumerable_OrderBy_16__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDFDC0, Enumerable_Select_58__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDFDC8, Component_GetComponent_84__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDFDD0, List_1_T_Enumerator_f_AnonymousType2_3__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDFFB0, UxmlFactory_2_ListView_ListView_UxmlTraits___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDFFF0, TypedUxmlAttributeDescription_1_AlternatingRowBackground__set_defaultValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CDFFF8, TypedUxmlAttributeDescription_1_CollectionVirtualizationMethod__set_defaultValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0000, TypedUxmlAttributeDescription_1_SelectionType__set_defaultValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0008, TypedUxmlAttributeDescription_1_ListViewReorderMode__set_defaultValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0038, UxmlEnumAttributeDescription_1_CollectionVirtualizationMethod___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0040, UxmlEnumAttributeDescription_1_AlternatingRowBackground___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0048, UxmlEnumAttributeDescription_1_ListViewReorderMode___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0050, UxmlEnumAttributeDescription_1_SelectionType___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0128, UxmlFactory_2_Label_Label_UxmlTraits___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0138, TextInputBaseField_1_System_String__set_isDelayed__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0148, BaseField_1_System_String__set_label__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0160, ChangeEvent_1_System_String__get_previousValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0178, BaseVerticalCollectionView_CreateVirtualizationController_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0188, MouseEventBase_1_MouseUpEvent__get_button__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0190, MouseEventBase_1_MouseDownEvent__get_shiftKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE01A0, MouseEventBase_1_MouseDownEvent__get_clickCount__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE01A8, MouseEventBase_1_MouseMoveEvent__get_shiftKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE01B0, MouseEventBase_1_MouseMoveEvent__get_button__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE01B8, CommandEventBase_1_ValidateCommandEvent__get_commandName__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE01C8, KeyboardEventBase_1_KeyDownEvent__get_altKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE01D0, CommandEventBase_1_ExecuteCommandEvent__get_commandName__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE01E0, CustomStyleProperty_1_VectorImage___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE01E8, CustomStyleProperty_1_UnityEngine_Sprite___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE01F0, CustomStyleProperty_1_UnityEngine_Texture2D___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE01F8, UxmlFactory_2_Image_Image_UxmlTraits___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0218, CustomStyleProperty_1_System_String___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0228, EventBase_1_ExecuteCommandEvent__TypeId__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0238, EventBase_1_ValidateCommandEvent__TypeId__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0290, TypedUxmlAttributeDescription_1_HelpBoxMessageType__set_defaultValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0298, UxmlEnumAttributeDescription_1_HelpBoxMessageType___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE02A0, UxmlFactory_2_HelpBox_HelpBox_UxmlTraits___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE02F8, UxmlFactory_2_GroupBox_GroupBox_UxmlTraits___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0310, PointerEventBase_1_PointerDownEvent__get_position__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0318, List_1_UnityEngine_UIElements_GenericDropdownMenu_MenuItem__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0320, List_1_UnityEngine_UIElements_GenericDropdownMenu_MenuItem__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0328, PointerEventBase_1_PointerMoveEvent__get_position__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0340, List_1_UnityEngine_UIElements_GenericDropdownMenu_MenuItem__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0350, UxmlFactory_2_Foldout_Foldout_UxmlTraits___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0370, List_1_UnityEngine_UIElements_GenericDropdownMenu_MenuItem___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE03D8, BaseField_1_TValueType_UxmlTraits_System_String___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE03E0, BaseField_1_TValueType_UxmlTraits_System_String__ParseChoiceList__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE03E8, BaseField_1_TValueType_UxmlTraits_System_String__Init__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0430, BaseField_1_System_String__get_value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0438, BaseField_1_System_String__get_rawValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0448, MouseEventBase_1_MouseDownEvent__get_button__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0450, BaseField_1_System_String__SetValueWithoutNotify__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0458, BaseField_1_System_String__set_value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0460, BaseField_1_System_String__get_showMixedValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0468, MouseEventBase_1_MouseDownEvent__get_mousePosition__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0470, UxmlFactory_2_DropdownField_DropdownField_UxmlTraits___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0498, List_1_UnityEngine_UIElements_Button__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE04A0, List_1_UnityEngine_UIElements_Button__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE04B8, UxmlFactory_2_ButtonStripField_ButtonStripField_UxmlTraits___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE04C0, BaseField_1_System_String__get_visualInput__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE04D0, BaseField_1_System_String___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE04D8, BaseField_1_System_String__get_labelElement__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0528, UxmlFactory_1_Box___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0538, List_1_UnityEngine_UIElements_Button__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0540, UQueryBuilder_1_Button__ToList__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0548, UxmlFactory_2_Button_Button_UxmlTraits___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0560, List_1_UnityEngine_UIElements_Button___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0570, UQueryExtensions_Query_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0578, FocusEventBase_1_BlurEvent__get_relatedTarget__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0588, EventBase_1_NavigationSubmitEvent__TypeId__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE05A0, List_1_UnityEngine_UIElements_ReusableCollectionItem___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0600, PointerEventBase_1_PointerUpEvent__get_pointerType__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0608, PointerEventBase_1_PointerCancelEvent__get_isPrimary__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0610, PointerEventBase_1_PointerDownEvent__get_pointerType__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0630, Enumerable_FirstOrDefault_19__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0640, CallbackEventHandler_RegisterCallback_21__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0648, CallbackEventHandler_RegisterCallback_22__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0680, PanelChangedEventBase_1_DetachFromPanelEvent__get_originPanel__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0690, CallbackEventHandler_RegisterCallback_23__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0698, CallbackEventHandler_RegisterCallback_24__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE06A0, PointerEventBase_1_PointerMoveEvent__get_button__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE06A8, PointerEventBase_1_PointerMoveEvent__get_pressedButtons__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE06B0, BaseVerticalCollectionView_CreateVirtualizationController_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0748, EventBase_1_ClickEvent__TypeId__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE07B8, LinkedList_1_ExitGames_Client_Photon_SimulationItem__RemoveFirst__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE07E0, LinkedList_1_ExitGames_Client_Photon_SimulationItem__get_First__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE07F0, LinkedList_1_ExitGames_Client_Photon_SimulationItem__AddLast__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE07F8, LinkedList_1_ExitGames_Client_Photon_SimulationItem__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0800, LinkedListNode_1_ExitGames_Client_Photon_SimulationItem__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0808, LinkedList_1_ExitGames_Client_Photon_SimulationItem__AddBefore__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0810, Queue_1_ExitGames_Client_Photon_StreamBuffer___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0858, LinkedListNode_1_ExitGames_Client_Photon_SimulationItem__get_Next__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0880, Queue_1_ExitGames_Client_Photon_PeerBase_MyAction__Enqueue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0928, Dictionary_2_System_String_System_String__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0990, Queue_1_ExitGames_Client_Photon_PeerBase_MyAction___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE09B0, LinkedList_1_ExitGames_Client_Photon_SimulationItem___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE09C0, KeyValuePair_2_System_String_System_String__get_Key__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE09C8, KeyValuePair_2_System_String_System_String__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE09D0, Dictionary_2_TKey_TValue_Enumerator_System_String_System_String__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE09D8, Dictionary_2_TKey_TValue_Enumerator_System_String_System_String__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE09E0, Dictionary_2_System_String_System_String__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE09E8, Dictionary_2_TKey_TValue_Enumerator_System_String_System_String__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE09F0, Queue_1_ExitGames_Client_Photon_StreamBuffer__Enqueue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE09F8, Queue_1_ExitGames_Client_Photon_StreamBuffer__Dequeue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0A00, Queue_1_ExitGames_Client_Photon_StreamBuffer__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0A40, LinkedList_1_T_Enumerator_ExitGames_Client_Photon_SimulationItem__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0A88, LinkedList_1_ExitGames_Client_Photon_SimulationItem__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0A90, LinkedList_1_ExitGames_Client_Photon_SimulationItem__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0A98, LinkedList_1_T_Enumerator_ExitGames_Client_Photon_SimulationItem__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0AA0, LinkedList_1_T_Enumerator_ExitGames_Client_Photon_SimulationItem__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0AD8, Stack_1_ExitGames_Client_Photon_NCommand___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0AE0, Stack_1_ExitGames_Client_Photon_NCommand__Push__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0AE8, Stack_1_ExitGames_Client_Photon_NCommand__Pop__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0AF0, Stack_1_ExitGames_Client_Photon_NCommand__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0B08, Enumerable_Select_59__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0B10, Array_Sort_254__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0B88, List_1_ExitGames_Client_Photon_NCommand__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0B90, List_1_ExitGames_Client_Photon_NCommand__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0B98, List_1_T_Enumerator_ExitGames_Client_Photon_NCommand__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0BA0, List_1_T_Enumerator_ExitGames_Client_Photon_NCommand__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0BB0, List_1_T_Enumerator_ExitGames_Client_Photon_NCommand__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0D00, List_1_ExitGames_Client_Photon_NCommand__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0D20, Queue_1_ExitGames_Client_Photon_NCommand__Peek__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0D30, List_1_ExitGames_Client_Photon_NCommand__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0D38, List_1_ExitGames_Client_Photon_NCommand__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0D80, List_1_ExitGames_Client_Photon_NCommand__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0D88, Queue_1_ExitGames_Client_Photon_NCommand__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0D90, Queue_1_ExitGames_Client_Photon_PeerBase_MyAction__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0D98, Queue_1_ExitGames_Client_Photon_NCommand__Dequeue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0DA0, Queue_1_ExitGames_Client_Photon_PeerBase_MyAction__Dequeue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0DA8, NonAllocDictionary_2_System_Int32_NCommand__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0DB0, NonAllocDictionary_2_System_Int32_NCommand__get_Keys__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0DB8, NonAllocDictionary_2_K_V_KeyIterator_System_Int32_NCommand__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0DC0, NonAllocDictionary_2_K_V_KeyIterator_System_Int32_NCommand__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0DC8, NonAllocDictionary_2_K_V_KeyIterator_System_Int32_NCommand__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0DD0, NonAllocDictionary_2_K_V_KeyIterator_System_Int32_NCommand__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0DE8, NonAllocDictionary_2_System_Int32_NCommand__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0DF0, NonAllocDictionary_2_System_Int32_NCommand__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0DF8, NonAllocDictionary_2_System_Int32_NCommand__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0E00, NonAllocDictionary_2_System_Int32_NCommand__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0E08, Queue_1_ExitGames_Client_Photon_NCommand___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0E28, List_1_ExitGames_Client_Photon_NCommand___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0E48, NonAllocDictionary_2_System_Int32_NCommand__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0E50, Queue_1_ExitGames_Client_Photon_NCommand__Enqueue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0E58, NonAllocDictionary_2_System_Int32_NCommand__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0E60, Queue_1_ExitGames_Client_Photon_NCommand__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0EB0, Queue_1_ExitGames_Client_Photon_NCommand___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0EB8, NonAllocDictionary_2_System_Int32_NCommand___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0EF0, Stack_1_ExitGames_Client_Photon_ByteArraySlice__Push__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0EF8, Stack_1_ExitGames_Client_Photon_ByteArraySlice__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0F08, Stack_1_ExitGames_Client_Photon_ByteArraySlice__Pop__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0F50, Stack_1_ExitGames_Client_Photon_ByteArraySlice___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0F68, List_1_Rewired_Demos_SimpleCombinedKeyboardMouseRemapping_Row___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0F80, List_1_Rewired_Demos_SimpleCombinedKeyboardMouseRemapping_Row__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0F98, List_1_Rewired_Demos_SimpleCombinedKeyboardMouseRemapping_Row__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0FA8, List_1_Rewired_Demos_SimpleCombinedKeyboardMouseRemapping_Row__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0FE0, List_1_Rewired_Demos_PressStartToJoinExample_Assigner_PlayerMap__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE0FF8, List_1_Rewired_Demos_PressStartToJoinExample_Assigner_PlayerMap___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1018, List_1_Rewired_Demos_PressStartToJoinExample_Assigner_PlayerMap__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1020, List_1_Rewired_Demos_PressStartToJoinExample_Assigner_PlayerMap__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1028, Component_GetComponentInChildren_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1098, List_1_System_String__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE10D0, GameObject_GetComponentInChildren_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE10F0, Queue_1_Rewired_Joystick__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE10F8, Queue_1_Rewired_Joystick__Dequeue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1100, Queue_1_Rewired_Joystick__Peek__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1118, Queue_1_Rewired_Joystick___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1148, Queue_1_Rewired_Demos_DualShock4SpecialFeaturesExample_Touch__Dequeue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1150, List_1_Rewired_Demos_DualShock4SpecialFeaturesExample_Touch__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1158, List_1_Rewired_Demos_DualShock4SpecialFeaturesExample_Touch__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1160, List_1_Rewired_Demos_DualShock4SpecialFeaturesExample_Touch__Find__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1168, List_1_Rewired_Demos_DualShock4SpecialFeaturesExample_Touch__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1170, List_1_Rewired_Demos_DualShock4SpecialFeaturesExample_Touch__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1180, Queue_1_Rewired_Demos_DualShock4SpecialFeaturesExample_Touch___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1198, Queue_1_Rewired_Demos_DualShock4SpecialFeaturesExample_Touch__Enqueue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE11A0, List_1_Rewired_Demos_DualShock4SpecialFeaturesExample_Touch___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE11A8, Controller_GetExtension_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1268, Component_GetComponent_85__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE12A8, Component_GetComponentsInChildren_30__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE12B0, Player_ControllerHelper_GetControllerWithTag_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE12C8, Component_GetComponentsInChildren_31__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1300, UxmlFactory_2_TwoPaneSplitView_TwoPaneSplitView_UxmlTraits___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1350, UxmlEnumAttributeDescription_1_TwoPaneSplitViewOrientation___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1360, TypedUxmlAttributeDescription_1_TwoPaneSplitViewOrientation__set_defaultValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1368, UxmlFactory_2_TreeView_TreeView_UxmlTraits___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1380, Stack_1_IEnumerator_1_UnityEngine_UIElements_ITreeViewItem__Push__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1388, Stack_1_IEnumerator_1_UnityEngine_UIElements_ITreeViewItem___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1390, Stack_1_IEnumerator_1_UnityEngine_UIElements_ITreeViewItem__Pop__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE13C0, Stack_1_IEnumerator_1_UnityEngine_UIElements_ITreeViewItem__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE13F0, Queue_1_Rewired_Demos_ControlRemappingDemo1_QueueEntry__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1540, List_1_UnityEngine_UIElements_ITreeViewItem___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1550, List_1_UnityEngine_UIElements_ITreeViewItem__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE15B0, List_1_UnityEngine_UIElements_ITreeViewItem__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE15C8, Queue_1_Rewired_Demos_ControlRemappingDemo1_QueueEntry__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE15D8, Queue_1_Rewired_Demos_ControlRemappingDemo1_QueueEntry__Dequeue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE15E0, UQueryExtensions_Q_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE15E8, Queue_1_Rewired_Demos_ControlRemappingDemo1_QueueEntry__Enqueue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE15F8, MouseEventBase_1_MouseUpEvent__get_modifiers__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1600, UxmlFactory_2_Toggle_Toggle_UxmlTraits___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1608, Queue_1_T_Enumerator_Rewired_Demos_ControlRemappingDemo1_QueueEntry__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1610, Queue_1_Rewired_Demos_ControlRemappingDemo1_QueueEntry__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1618, Queue_1_T_Enumerator_Rewired_Demos_ControlRemappingDemo1_QueueEntry__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1628, Queue_1_T_Enumerator_Rewired_Demos_ControlRemappingDemo1_QueueEntry__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1658, CallbackEventHandler_RegisterCallback_25__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1690, PointerEventBase_1_PointerUpEvent__get_position__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1730, TextInputBaseField_1_TValueType_TextInputBase_System_String__get_text__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1738, TextInputBaseField_1_TValueType_TextInputBase_System_String__set_text__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1758, TextInputBaseField_1_TValueType_TextInputBase_System_String__get_editorEngine__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1768, TextInputBaseField_1_TValueType_TextInputBase_System_String__SyncTextEngine__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1770, TextInputBaseField_1_TValueType_TextInputBase_System_String__set_isPasswordField__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1788, TextInputBaseField_1_System_String__get_isDelayed__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1790, TextInputBaseField_1_TValueType_TextInputBase_System_String__ExecuteDefaultActionAtTarget__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1798, Queue_1_Rewired_Demos_ControlRemappingDemo1_QueueEntry__Peek__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE17A0, EventBase_1_NavigationMoveEvent__TypeId__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE17B0, EventBase_1_NavigationCancelEvent__TypeId__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE17C0, TextInputBaseField_1_TValueType_TextInputBase_System_String___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE17D0, TextInputBaseField_1_TValueType_TextInputBase_System_String__ExecuteDefaultAction__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE17E0, TextInputBaseField_1_System_String__get_textInputBase__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE17F8, TextInputBaseField_1_System_String__set_text__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1808, TextInputBaseField_1_System_String___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1818, TextInputBaseField_1_System_String__set_isPasswordField__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1830, BaseField_1_System_String__OnViewDataReady__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1848, TextInputBaseField_1_TValueType_UxmlTraits_System_String___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1868, TextInputBaseField_1_TValueType_UxmlTraits_System_String__Init__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1878, UxmlFactory_2_TextField_TextField_UxmlTraits___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1918, UxmlFactory_2_SliderInt_SliderInt_UxmlTraits___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1988, BaseFieldTraits_2_System_Single_UxmlFloatAttributeDescription__Init__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1998, UxmlFactory_2_Slider_Slider_UxmlTraits___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE19C0, BaseFieldTraits_2_System_Single_UxmlFloatAttributeDescription___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE19E8, Queue_1_Rewired_Demos_ControlRemappingDemo1_QueueEntry___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1A30, UxmlEnumAttributeDescription_1_ScrollView_TouchScrollBehavior___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1A40, UxmlEnumAttributeDescription_1_ScrollerVisibility___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1A50, UxmlEnumAttributeDescription_1_ScrollView_NestedInteractionKind___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1A58, TypedUxmlAttributeDescription_1_ScrollView_TouchScrollBehavior__set_defaultValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1A68, TypedUxmlAttributeDescription_1_ScrollViewMode__set_defaultValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1A78, List_1_Rewired_Components_PlayerMouse__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1A80, TypedUxmlAttributeDescription_1_ScrollView_NestedInteractionKind__set_defaultValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1A88, List_1_Rewired_Components_PlayerMouse__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1A98, List_1_T_Enumerator_Rewired_Components_PlayerMouse__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1AB0, List_1_T_Enumerator_Rewired_Components_PlayerMouse__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1AE0, List_1_T_Enumerator_Rewired_Components_PlayerMouse__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1AE8, UxmlEnumAttributeDescription_1_ScrollViewMode___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1B88, List_1_Rewired_Components_PlayerMouse__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1B98, UnityTools_IsNullOrDestroyed_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1BA8, List_1_Rewired_Components_PlayerMouse__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1BF8, StyleEnum_1_DisplayStyle__op_Inequality__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1C50, UxmlEnumAttributeDescription_1_ScrollerVisibility__TryGetValueFromBag__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1C58, ExecuteEvents_Execute_25__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1C60, UxmlFactory_2_ScrollView_ScrollView_UxmlTraits___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1C88, ExecuteEvents_ExecuteHierarchy_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1C90, ExecuteEvents_GetEventHandler_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1CC8, CallbackEventHandler_RegisterCallback_26__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1CE0, ExecuteEvents_Execute_26__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1CE8, PointerCaptureEventBase_1_PointerCaptureEvent__get_pointerId__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1CF8, CallbackEventHandler_UnregisterCallback_18__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1D00, ExecuteEvents_Execute_27__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1D08, CallbackEventHandler_UnregisterCallback_19__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1D10, ExecuteEvents_Execute_28__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1D18, ExecuteEvents_GetEventHandler_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1D28, ExecuteEvents_Execute_29__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1D30, ExecuteEvents_GetEventHandler_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1D40, ExecuteEvents_Execute_30__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1D50, ExecuteEvents_Execute_31__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1D58, ExecuteEvents_ExecuteHierarchy_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1D60, ExecuteEvents_ExecuteHierarchy_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1D68, PointerEventBase_1_PointerMoveEvent__get_pointerType__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1D78, ExecuteEvents_ExecuteHierarchy_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1D80, PointerEventBase_1_PointerMoveEvent__get_isPrimary__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1D90, PointerEventBase_1_PointerDownEvent__get_isPrimary__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1E10, CallbackEventHandler_RegisterCallback_27__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1E48, Component_GetComponent_86__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1EA0, CallbackEventHandler_RegisterCallback_28__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1EC8, TypedUxmlAttributeDescription_1_SliderDirection__set_defaultValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1ED8, UxmlEnumAttributeDescription_1_SliderDirection___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1EE0, UxmlFactory_2_Scroller_Scroller_UxmlTraits___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1EF0, List_1_Rewired_Components_PlayerMouse___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1F10, List_1_Rewired_Components_PlayerMouse___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE1FA8, StyleEnum_1_FlexDirection__op_Implicit__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE2098, UxmlFactory_2_RepeatButton_RepeatButton_UxmlTraits___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE2138, List_1_UnityEngine_UIElements_RadioButton___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE2140, List_1_UnityEngine_UIElements_RadioButton__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE2158, List_1_UnityEngine_UIElements_RadioButton__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE2160, List_1_UnityEngine_UIElements_RadioButton__IndexOf__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE2170, BaseFieldTraits_2_System_Int32_UxmlIntAttributeDescription__Init__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE2178, UxmlFactory_2_RadioButtonGroup_RadioButtonGroup_UxmlTraits___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE2198, BaseFieldTraits_2_System_Int32_UxmlIntAttributeDescription___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE21D8, UxmlFactory_2_RadioButton_RadioButton_UxmlTraits___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE21F8, List_1_T_Enumerator_UnityEngine_UIElements_RadioButton__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE2208, BaseFieldTraits_2_System_Boolean_UxmlBoolAttributeDescription___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE2218, BaseFieldTraits_2_System_Boolean_UxmlBoolAttributeDescription__Init__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE2238, List_1_UnityEngine_UIElements_RadioButton__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE2248, List_1_UnityEngine_UIElements_RadioButton__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE2258, List_1_UnityEngine_UIElements_RadioButton__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE2268, List_1_T_Enumerator_UnityEngine_UIElements_RadioButton__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE2278, List_1_T_Enumerator_UnityEngine_UIElements_RadioButton__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE22E8, UxmlFactory_2_ProgressBar_AbstractProgressBar_UxmlTraits___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE2300, GroupBoxUtility_RegisterGroupBoxOptionCallbacks_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE2310, GroupBoxUtility_OnOptionSelected_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE2390, UxmlFactory_2_PopupWindow_PopupWindow_UxmlTraits___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE2438, UxmlFactory_2_MinMaxSlider_MinMaxSlider_UxmlTraits___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE26E8, Dictionary_2_System_Type_System_Object__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE2728, Dictionary_2_TKey_TValue_ValueCollection_System_Type_System_Object__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE2738, Dictionary_2_System_Type_System_Object__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE2740, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Type_System_Object__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE2750, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Type_System_Object__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE2758, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Type_System_Object__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE2760, Dictionary_2_System_Type_System_Object__get_Values__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE2EC8, Dictionary_2_System_Type_ExitGames_Client_Photon_CustomType__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE2EE8, Dictionary_2_System_Byte_ExitGames_Client_Photon_CustomType___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE2F48, Dictionary_2_System_Byte_ExitGames_Client_Photon_CustomType__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE2F70, Dictionary_2_System_Type_ExitGames_Client_Photon_CustomType___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE2F78, Dictionary_2_System_Type_ExitGames_Client_Photon_CustomType__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE2F80, Dictionary_2_System_Type_ExitGames_Client_Photon_CustomType__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE2F88, Dictionary_2_System_Byte_ExitGames_Client_Photon_CustomType__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE2F98, Dictionary_2_System_Byte_ExitGames_Client_Photon_CustomType__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3038, Dictionary_2_ExitGames_Client_Photon_ConnectionProtocol_System_Type___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3040, Dictionary_2_ExitGames_Client_Photon_ConnectionProtocol_System_Type__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3088, Dictionary_2_ExitGames_Client_Photon_ConnectionProtocol_System_Type__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3168, Task_1_System_Net_WebSockets_WebSocketReceiveResult__get_Result__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3188, List_1_Kalagaan_HairDesignerExtension_HairDesignerShaderAdvancedFur_LODData___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE31A0, List_1_Kalagaan_HairDesignerExtension_HairDesignerShaderAdvancedFur_LODData__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE31B0, List_1_Kalagaan_HairDesignerExtension_HairDesignerShaderAdvancedFur_LODData__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3378, List_1_Kalagaan_HairDesignerExtension_HairDesignerRuntimeLayerBase___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3388, List_1_UnityEngine_CapsuleCollider___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3390, List_1_Kalagaan_HairDesignerExtension_HairDesignerRuntimeLayerBase__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3398, List_1_Kalagaan_HairDesignerExtension_HairDesignerRuntimeLayerBase__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE33A0, List_1_UnityEngine_CapsuleCollider__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE33A8, Component_GetComponent_87__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE33C0, Object_1_FindObjectOfType_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE33E8, BaseServer_3_Dissonance_Integrations_PhotonBolt_BoltServer_Dissonance_Integrations_PhotonBolt_BoltClient_Dissonance_Integrations_PhotonBolt_BoltPeer__Disconnect__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE33F0, BaseServer_3_Dissonance_Integrations_PhotonBolt_BoltServer_Dissonance_Integrations_PhotonBolt_BoltClient_Dissonance_Integrations_PhotonBolt_BoltPeer__Connect__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE33F8, BaseServer_3_Dissonance_Integrations_PhotonBolt_BoltServer_Dissonance_Integrations_PhotonBolt_BoltClient_Dissonance_Integrations_PhotonBolt_BoltPeer__NetworkReceivedPacket__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3400, BaseServer_3_Dissonance_Integrations_PhotonBolt_BoltServer_Dissonance_Integrations_PhotonBolt_BoltClient_Dissonance_Integrations_PhotonBolt_BoltPeer__ClientDisconnected__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3408, BaseServer_3_Dissonance_Integrations_PhotonBolt_BoltServer_Dissonance_Integrations_PhotonBolt_BoltClient_Dissonance_Integrations_PhotonBolt_BoltPeer___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3410, BaseCommsNetwork_5_Dissonance_Integrations_PhotonBolt_BoltServer_Dissonance_Integrations_PhotonBolt_BoltClient_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3418, BaseCommsNetwork_5_Dissonance_Integrations_PhotonBolt_BoltServer_Dissonance_Integrations_PhotonBolt_BoltClient_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit__get_Mode__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3428, BaseCommsNetwork_5_Dissonance_Integrations_PhotonBolt_BoltServer_Dissonance_Integrations_PhotonBolt_BoltClient_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit__Update__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3430, BaseCommsNetwork_5_Dissonance_Integrations_PhotonBolt_BoltServer_Dissonance_Integrations_PhotonBolt_BoltClient_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit__get_IsInitialized__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3438, BaseCommsNetwork_5_Dissonance_Integrations_PhotonBolt_BoltServer_Dissonance_Integrations_PhotonBolt_BoltClient_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit__RunAsHost__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3440, BaseCommsNetwork_5_Dissonance_Integrations_PhotonBolt_BoltServer_Dissonance_Integrations_PhotonBolt_BoltClient_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit__Stop__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3448, BaseCommsNetwork_5_Dissonance_Integrations_PhotonBolt_BoltServer_Dissonance_Integrations_PhotonBolt_BoltClient_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit__RunAsClient__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3460, GameObject_AddComponent_70__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3468, Component_GetComponent_88__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3498, List_1_Dissonance_Integrations_PhotonBolt_BoltDissonanceRelay_IBoltDisconnectListener___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE34A0, List_1_Dissonance_Integrations_PhotonBolt_BoltDissonanceRelay_IBoltPacketListener___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE34D0, List_1_Dissonance_Integrations_PhotonBolt_BoltDissonanceRelay_IBoltPacketListener__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE34D8, List_1_T_Enumerator_Dissonance_Integrations_PhotonBolt_BoltDissonanceRelay_IBoltPacketListener__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE34E0, List_1_T_Enumerator_Dissonance_Integrations_PhotonBolt_BoltDissonanceRelay_IBoltPacketListener__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE34E8, List_1_T_Enumerator_Dissonance_Integrations_PhotonBolt_BoltDissonanceRelay_IBoltPacketListener__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3510, List_1_Dissonance_Integrations_PhotonBolt_BoltDissonanceRelay_IBoltDisconnectListener__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3518, List_1_T_Enumerator_Dissonance_Integrations_PhotonBolt_BoltDissonanceRelay_IBoltDisconnectListener__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3520, List_1_T_Enumerator_Dissonance_Integrations_PhotonBolt_BoltDissonanceRelay_IBoltDisconnectListener__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3528, List_1_Dissonance_Integrations_PhotonBolt_BoltDissonanceRelay_IBoltDisconnectListener__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3530, List_1_T_Enumerator_Dissonance_Integrations_PhotonBolt_BoltDissonanceRelay_IBoltDisconnectListener__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3538, List_1_Dissonance_Integrations_PhotonBolt_BoltDissonanceRelay_IBoltPacketListener__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3540, List_1_Dissonance_Integrations_PhotonBolt_BoltDissonanceRelay_IBoltDisconnectListener__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3548, List_1_Dissonance_Integrations_PhotonBolt_BoltDissonanceRelay_IBoltPacketListener__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3568, BaseClient_3_Dissonance_Integrations_PhotonBolt_BoltServer_Dissonance_Integrations_PhotonBolt_BoltClient_Dissonance_Integrations_PhotonBolt_BoltPeer__Disconnect__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3570, BaseClient_3_Dissonance_Integrations_PhotonBolt_BoltServer_Dissonance_Integrations_PhotonBolt_BoltClient_Dissonance_Integrations_PhotonBolt_BoltPeer__Connected__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3578, BaseClient_3_Dissonance_Integrations_PhotonBolt_BoltServer_Dissonance_Integrations_PhotonBolt_BoltClient_Dissonance_Integrations_PhotonBolt_BoltPeer__NetworkReceivedPacket__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3580, BaseClient_3_Dissonance_Integrations_PhotonBolt_BoltServer_Dissonance_Integrations_PhotonBolt_BoltClient_Dissonance_Integrations_PhotonBolt_BoltPeer___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE35B8, List_1_MagicLightProbes_MLPPointData__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3678, List_1_MagicLightProbes_MLPPointData__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3688, List_1_MagicLightProbes_MLPPointData__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3690, List_1_MagicLightProbes_MLPPointData__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3698, List_1_MagicLightProbes_MLPPointData__AddRange__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE36B8, List_1_MagicLightProbes_MLPTracePoint___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE36C8, UnityEvent_1_System_String___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3710, List_1_System_Collections_IEnumerator___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3718, List_1_MagicLightProbes_MagicLightProbes___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3728, List_1_UnityEngine_Collider___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3730, List_1_MagicLightProbes_MLPLight___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3738, List_1_MagicLightProbes_MLPPointData___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3748, List_1_MagicLightProbes_MLPPointData__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3750, List_1_MagicLightProbes_MLPPointData__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3758, List_1_T_Enumerator_MagicLightProbes_MLPPointData__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3760, List_1_T_Enumerator_MagicLightProbes_MLPPointData__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3770, List_1_T_Enumerator_MagicLightProbes_MLPPointData__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE37E8, Component_GetComponentsInChildren_32__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3800, GameObject_AddComponent_71__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3810, Component_GetComponentInChildren_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3818, GameObject_GetComponent_80__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3860, Component_GetComponent_89__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3870, Dictionary_2_UnityEngine_Material_List_1_UnityEngine_Renderer___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3888, List_1_UnityEngine_Renderer__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3890, Dictionary_2_UnityEngine_Material_List_1_UnityEngine_Renderer__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3898, Dictionary_2_UnityEngine_Material_List_1_UnityEngine_Renderer__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE38B8, Ability_GetComponent_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE38C0, List_1_Opsive_UltimateCharacterController_Character_Abilities_Ability___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE38D0, List_1_Opsive_UltimateCharacterController_Character_Abilities_Ability__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE38F0, List_1_Opsive_UltimateCharacterController_Character_Abilities_Ability__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3900, List_1_Opsive_UltimateCharacterController_Character_Abilities_Ability__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3908, List_1_Opsive_UltimateCharacterController_Character_Abilities_Ability__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3910, List_1_Opsive_UltimateCharacterController_Character_Abilities_Ability__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3918, List_1_Opsive_UltimateCharacterController_Character_Abilities_Ability__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3920, List_1_T_Enumerator_Opsive_UltimateCharacterController_Character_Abilities_Ability__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3928, List_1_Opsive_UltimateCharacterController_Character_Abilities_Ability__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3930, List_1_T_Enumerator_Opsive_UltimateCharacterController_Character_Abilities_Ability__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3938, List_1_T_Enumerator_Opsive_UltimateCharacterController_Character_Abilities_Ability__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3968, EventHandler_1_UnregisterEvent_48__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3980, EventHandler_1_RegisterEvent_50__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3998, EventHandler_1_UnregisterEvent_49__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE39A8, GameObjectExtensions_GetCachedComponent_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE39C0, EventHandler_1_RegisterEvent_51__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE39F0, Component_GetComponent_90__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3A28, Dictionary_2_System_Int32_Rewired_Demos_GamepadTemplateUI_ControllerUIElement___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3A48, Player_ControllerHelper_GetFirstControllerWithTemplate_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3A80, Controller_GetTemplate_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3A88, Dictionary_2_System_Int32_Rewired_Demos_GamepadTemplateUI_ControllerUIElement__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3AC0, Dictionary_2_System_Int32_Rewired_Demos_GamepadTemplateUI_ControllerUIElement__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3AE0, List_1_Rewired_Demos_SimpleControlRemapping_Row___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3AF0, List_1_Rewired_Demos_SimpleControlRemapping_Row__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3B10, List_1_Rewired_Demos_SimpleControlRemapping_Row__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3B20, List_1_Rewired_Demos_SimpleControlRemapping_Row__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3BA8, List_1_System_IDisposable___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3BB0, Dictionary_2_System_Type_ExitGames_Client_Photon_StructWrapping_StructWrapperPool___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3BF0, List_1_System_IDisposable__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3BF8, List_1_T_Enumerator_System_IDisposable__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3C00, List_1_System_IDisposable__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3C08, List_1_T_Enumerator_System_IDisposable__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3C10, List_1_T_Enumerator_System_IDisposable__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3C20, List_1_ExitGames_Client_Photon_StreamBuffer__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3C28, List_1_ExitGames_Client_Photon_StreamBuffer__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3C30, List_1_ExitGames_Client_Photon_StreamBuffer__RemoveRange__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3C38, Queue_1_ExitGames_Client_Photon_StreamBuffer__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3C70, List_1_ExitGames_Client_Photon_StreamBuffer__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3CB8, List_1_ExitGames_Client_Photon_StreamBuffer___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3CC8, List_1_T_Enumerator_System_Threading_Thread__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3CF8, List_1_System_Threading_Thread__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3D00, List_1_System_Threading_Thread__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3D08, List_1_System_Threading_Thread___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3D10, List_1_System_Threading_Thread__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3D18, List_1_System_Threading_Thread__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3D50, List_1_System_Threading_Thread__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3D58, List_1_System_Threading_Thread__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3D60, List_1_T_Enumerator_System_Threading_Thread__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3D68, List_1_T_Enumerator_System_Threading_Thread__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3DF0, PointerEventBase_1_PointerUpEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3E00, PointerEventBase_1_PointerUpEvent__Init__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3E30, PointerEventBase_1_PointerUpEvent__PostDispatch__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3E60, PointerEventBase_1_PointerDownEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3E70, PointerEventBase_1_PointerDownEvent__Init__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3E80, PointerEventBase_1_PointerMoveEvent__Init__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3E90, PointerEventBase_1_PointerDownEvent__PostDispatch__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3EA8, PointerEventBase_1_PointerMoveEvent__PostDispatch__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3EB0, PointerEventBase_1_PointerMoveEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3EE0, PointerEventBase_1_PointerStationaryEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3EF0, PointerEventBase_1_PointerStationaryEvent__Init__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3FC8, NavigationEventBase_1_NavigationSubmitEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3FD0, NavigationEventBase_1_NavigationCancelEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3FE0, NavigationEventBase_1_NavigationTabEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3FE8, PanelChangedEventBase_1_DetachFromPanelEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE3FF0, PanelChangedEventBase_1_AttachToPanelEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4040, MouseEventBase_1_MouseOutEvent__GetPooled__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4048, MouseEventBase_1_MouseOverEvent__GetPooled__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4050, MouseEventBase_1_ContextualMenuPopulateEvent__PostDispatch__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4060, PointerEventBase_1_PointerOverEvent__GetPooled__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4068, PointerEventBase_1_PointerOutEvent__GetPooled__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4070, NavigationEventBase_1_NavigationMoveEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4078, NavigationEventBase_1_NavigationMoveEvent__Init__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4098, EventBase_1_NavigationMoveEvent__GetPooled__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE40A0, NavigationEventBase_1_NavigationTabEvent__Init__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE40A8, EventBase_1_NavigationTabEvent__GetPooled__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE40B8, MouseEventBase_1_MouseLeaveWindowEvent__Init__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE40C0, MouseEventBase_1_MouseEnterWindowEvent__PostDispatch__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE40C8, MouseEventBase_1_MouseEnterWindowEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE40D0, MouseEventBase_1_MouseLeaveWindowEvent__GetPooled__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE40D8, MouseEventBase_1_MouseLeaveWindowEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE40E0, MouseEventBase_1_MouseOverEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE40E8, MouseEventBase_1_MouseLeaveWindowEvent__PostDispatch__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE40F0, MouseEventBase_1_ContextualMenuPopulateEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE40F8, MouseEventBase_1_ContextualMenuPopulateEvent__Init__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4100, MouseEventBase_1_MouseOutEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4108, MouseEventBase_1_WheelEvent__GetPooled__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4110, MouseEventBase_1_ContextClickEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4118, MouseEventBase_1_MouseMoveEvent__GetPooled__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4120, MouseEventBase_1_WheelEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4128, MouseEventBase_1_WheelEvent__Init__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4130, MouseEventBase_1_WheelEvent__GetPooled_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4138, MouseEventBase_1_MouseEnterEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4140, MouseEventBase_1_MouseEnterEvent__Init__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4148, MouseEventBase_1_MouseEnterWindowEvent__Init__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4150, MouseEventBase_1_MouseLeaveEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4158, MouseEventBase_1_MouseLeaveEvent__Init__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4160, MouseEventBase_1_MouseLeaveWindowEvent__get_pressedButtons__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4170, MouseEventBase_1_MouseDownEvent__GetPooled__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4178, MouseEventBase_1_MouseDownEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4180, MouseEventBase_1_MouseDownEvent__Init__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4188, MouseEventBase_1_MouseUpEvent__GetPooled__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4190, MouseEventBase_1_MouseUpEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4198, MouseEventBase_1_MouseUpEvent__Init__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE41A0, MouseEventBase_1_MouseMoveEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE41A8, MouseEventBase_1_MouseMoveEvent__Init__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE41B0, EventBase_1_InputEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE41B8, EventBase_1_GeometryChangedEvent__GetPooled__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE41C0, KeyboardEventBase_1_KeyUpEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE41C8, KeyboardEventBase_1_KeyDownEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE41D0, EventBase_1_GeometryChangedEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE41D8, EventBase_1_GeometryChangedEvent__Init__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE41E0, EventBase_1_MouseCaptureOutEvent__TypeId__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE41F0, FocusEventBase_1_FocusInEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE41F8, FocusEventBase_1_FocusInEvent__Init__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4208, FocusEventBase_1_FocusEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4210, FocusEventBase_1_FocusEvent__get_focusController__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4218, EventBase_1_InputEvent__GetPooled__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4228, EventBase_1_InputEvent__Init__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4230, List_1_UnityEngine_UIElements_EventCallbackFunctorBase__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4240, FocusEventBase_1_FocusOutEvent__Init__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4248, FocusEventBase_1_BlurEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4250, FocusEventBase_1_BlurEvent__get_focusController__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4258, FocusEventBase_1_FocusOutEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4260, Stack_1_UnityEngine_UIElements_EventCallbackList___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4270, Stack_1_UnityEngine_UIElements_EventCallbackList__Push__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4278, List_1_UnityEngine_UIElements_EventCallbackFunctorBase__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4280, List_1_UnityEngine_UIElements_EventCallbackFunctorBase___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4288, List_1_UnityEngine_UIElements_EventCallbackFunctorBase___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4298, List_1_UnityEngine_UIElements_EventCallbackFunctorBase__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE42A0, List_1_T_Enumerator_UnityEngine_UIElements_EventCallbackFunctorBase__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE42A8, List_1_UnityEngine_UIElements_EventCallbackFunctorBase__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE42B0, List_1_UnityEngine_UIElements_EventCallbackFunctorBase__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE42B8, List_1_UnityEngine_UIElements_EventCallbackFunctorBase__AddRange__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE42C0, List_1_UnityEngine_UIElements_EventCallbackFunctorBase__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE42C8, List_1_T_Enumerator_UnityEngine_UIElements_EventCallbackFunctorBase__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE42D0, List_1_T_Enumerator_UnityEngine_UIElements_EventCallbackFunctorBase__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE42E8, List_1_UnityEngine_UIElements_IEventHandler__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE42F0, List_1_UnityEngine_UIElements_IEventHandler__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE42F8, Stack_1_UnityEngine_UIElements_EventCallbackList__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4308, Stack_1_UnityEngine_UIElements_EventCallbackList__Pop__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4310, List_1_UnityEngine_UIElements_IEventHandler___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4328, CommandEventBase_1_ExecuteCommandEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4330, CommandEventBase_1_ValidateCommandEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4340, EventBase_1_MouseEnterWindowEvent__TypeId__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4350, EventBase_1_MouseLeaveWindowEvent__TypeId__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4358, EventBase_1_WheelEvent__TypeId__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4378, MouseEventsHelper_SendEnterLeave_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4380, PointerEventsHelper_SendEnterLeave_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4388, CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4398, PooledObject_1_System_Collections_Generic_List_1__4_System_IDisposable_Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE43A0, PointerCaptureEventBase_1_PointerCaptureOutEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE43B8, MouseCaptureEventBase_1_MouseCaptureEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE43C0, MouseCaptureEventBase_1_MouseCaptureOutEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE43C8, PointerCaptureEventBase_1_PointerCaptureEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE43D0, List_1_UnityEngine_UIElements_IEventHandler__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4490, STuple_2_Photon_Bolt_BoltGlobalBehaviourAttribute_System_Type___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE44A8, List_1_Photon_Bolt_Collections_STuple_2__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE44C0, Array_Find_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE44C8, CollectionPool_2_System_Collections_Generic_List_1_System_Int32__Get_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE44D0, CustomAttributeExtensions_GetCustomAttribute_13__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE44D8, PooledObject_1_System_Collections_Generic_List_1__System_IDisposable_Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4558, VisualElement_GetFirstOfType_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4590, Enumerable_ToArray_24__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE45B0, Assert_IsNotNull_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE45D8, CallbackEventHandler_RegisterCallback_29__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE45E8, PointerEventBase_1_PointerDownEvent__get_button__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE45F0, CallbackEventHandler_UnregisterCallback_20__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4610, UxmlFactory_2_InternalTreeView_InternalTreeView_UxmlTraits___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4638, UQueryExtensions_Q_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE48B0, Dictionary_2_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyValue__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE48B8, Dictionary_2_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyValue__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE48C8, Dictionary_2_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyValue___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE48D0, Dictionary_2_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyValue__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE48D8, Dictionary_2_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyValue__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4908, Task_1_GetComponent_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4910, SharedVariable_1_System_String__set_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4918, BoltEntity_GetState_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4920, Task_1_GetComponent_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4938, Enumerable_ToArray_25__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4948, Enumerable_Select_60__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4950, SharedVariable_1_System_Collections_Generic_List_1__7_get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4980, GameObject_GetComponent_81__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4988, Task_1_GetComponent_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4990, Task_1_GetComponent_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4998, Task_1_GetComponent_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE49A0, SharedVariable_1_System_Collections_Generic_List_1__5_set_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE49B0, GameObjectExtensions_GetCachedComponent_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE49C8, SharedVariable_1_System_Collections_Generic_List_1__5_get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE49F0, Task_1_GetComponent_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE49F8, GameObject_GetComponent_82__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4A00, GameObject_GetComponent_83__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4A08, SharedVariable_1_System_Collections_Generic_List_1__1_get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4A38, SharedVariable_1_UnityEngine_GameObject__set_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4BB8, List_1_BehaviorDesigner_Runtime_Tasks_Task__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4C50, List_1_BehaviorDesigner_Runtime_Tasks_Task__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4CB8, List_1_BehaviorDesigner_Runtime_SharedVariable__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4CC8, List_1_BehaviorDesigner_Runtime_SharedVariable__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4D98, List_1_System_Type___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4DA0, List_1_System_Type__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4DB0, List_1_System_Type__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4DF8, SharedVariable_1_UnityEngine_GameObject__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4E00, SharedVariable_1_System_String__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4E10, EventHandler_1_UnregisterEvent_50__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4E30, EventHandler_1_RegisterEvent_52__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4E48, SharedVariable_1_System_Collections_Generic_List_1___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4E58, SharedVariable_1_PatrolRoute___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4E68, SharedVariable_1_System_Collections_Generic_List_1__8__ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4E78, SharedVariable_1_System_Collections_Generic_List_1__7__ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4E88, SharedVariable_1_System_Collections_Generic_List_1__6__ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4E98, SharedVariable_1_System_Collections_Generic_List_1__5__ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4EA8, SharedVariable_1_System_Collections_Generic_List_1__4__ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4F20, SharedVariable_1_System_Collections_Generic_List_1__3__ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4F28, SharedVariable_1_UnityEngine_Transform___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4F38, SharedVariable_1_System_String___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4F68, SharedVariable_1_System_Collections_Generic_List_1__2__ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4F78, SharedVariable_1_UnityEngine_Object___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4F88, SharedVariable_1_UnityEngine_Material___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4FC0, SharedVariable_1_UnityEngine_HumanBodyBones___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4FC8, SharedVariable_1_UnityEngine_HumanBodyBones__set_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4FD8, SharedVariable_1_System_Collections_Generic_List_1__1__ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE4FE0, SharedVariable_1_UnityEngine_GameObject___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5018, SharedVariable_1_UnityEngine_Collider___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5038, SharedVariable_1_UnityEngine_Behaviour___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5048, SharedVariable_1_UnityEngine_AnimationCurve___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5070, List_1_Kalagaan_BlendShapesPresetTool_BlendShapesPresetControllerBase_PresetState__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5080, Component_GetComponent_91__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5350, List_1_T_Enumerator_Photon_Realtime_Region__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5358, List_1_Photon_Realtime_Region__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5360, List_1_T_Enumerator_Photon_Realtime_Region__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5368, List_1_T_Enumerator_Photon_Realtime_Region__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE53B0, List_1_Photon_Realtime_Region__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE53B8, List_1_Photon_Realtime_Region___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE53C0, Array_Sort_255__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE53D0, List_1_Photon_Realtime_RegionPinger__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE53E0, List_1_T_Enumerator_Photon_Realtime_RegionPinger__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE53E8, List_1_T_Enumerator_Photon_Realtime_RegionPinger__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5420, List_1_Photon_Realtime_Region__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5430, List_1_Photon_Realtime_RegionPinger__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5438, List_1_Photon_Realtime_Region__Find__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5448, List_1_Photon_Realtime_RegionPinger__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5450, List_1_Photon_Realtime_RegionPinger___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5478, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_Photon_Realtime_Player__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5480, Dictionary_2_TKey_TValue_KeyCollection_System_Int32_Photon_Realtime_Player__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5488, List_1_T_Enumerator_Photon_Realtime_RegionPinger__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5498, List_1_Photon_Realtime_Region__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE54B0, List_1_Photon_Realtime_Region__Sort__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE54F0, Dictionary_2_System_Int32_Photon_Realtime_Player__get_Keys__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE54F8, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_Photon_Realtime_Player__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5500, Dictionary_2_System_Int32_Photon_Realtime_Player__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5508, Dictionary_2_System_Int32_Photon_Realtime_Player__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5510, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_Photon_Realtime_Player__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE55A8, Pool_1_ParameterDictionary__Acquire__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE55B0, Pool_1_ParameterDictionary__Release__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5658, Pool_1_ParameterDictionary___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE56B8, List_1_T_Enumerator_Photon_Realtime_IWebRpcCallback__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE56C0, List_1_Photon_Realtime_IWebRpcCallback___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE56C8, List_1_Photon_Realtime_ILobbyCallbacks__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE56D0, List_1_T_Enumerator_Photon_Realtime_ILobbyCallbacks__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE56E0, List_1_Photon_Realtime_IErrorInfoCallback__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE56E8, List_1_T_Enumerator_Photon_Realtime_IErrorInfoCallback__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE56F8, List_1_T_Enumerator_Photon_Realtime_IErrorInfoCallback__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5700, List_1_T_Enumerator_Photon_Realtime_IErrorInfoCallback__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5708, List_1_Photon_Realtime_IErrorInfoCallback___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5720, List_1_Photon_Realtime_IWebRpcCallback__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5728, List_1_T_Enumerator_Photon_Realtime_IWebRpcCallback__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5730, List_1_T_Enumerator_Photon_Realtime_IWebRpcCallback__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5740, List_1_Photon_Realtime_IInRoomCallbacks__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5748, List_1_T_Enumerator_Photon_Realtime_IInRoomCallbacks__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5750, List_1_T_Enumerator_Photon_Realtime_IInRoomCallbacks__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5760, List_1_T_Enumerator_Photon_Realtime_IInRoomCallbacks__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5768, List_1_Photon_Realtime_IInRoomCallbacks___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5770, List_1_T_Enumerator_Photon_Realtime_ILobbyCallbacks__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5778, List_1_T_Enumerator_Photon_Realtime_ILobbyCallbacks__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5780, List_1_Photon_Realtime_ILobbyCallbacks___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5798, List_1_Photon_Realtime_IConnectionCallbacks__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE57A0, List_1_T_Enumerator_Photon_Realtime_IConnectionCallbacks__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE57A8, List_1_T_Enumerator_Photon_Realtime_IConnectionCallbacks__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE57B0, List_1_Photon_Realtime_IMatchmakingCallbacks__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE57B8, List_1_T_Enumerator_Photon_Realtime_IMatchmakingCallbacks__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE57C8, List_1_T_Enumerator_Photon_Realtime_IMatchmakingCallbacks__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE57D0, List_1_T_Enumerator_Photon_Realtime_IMatchmakingCallbacks__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE57D8, List_1_Photon_Realtime_IMatchmakingCallbacks___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE57E8, LoadBalancingClient_UpdateCallbackTarget_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE57F0, LoadBalancingClient_UpdateCallbackTarget_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE57F8, LoadBalancingClient_UpdateCallbackTarget_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5800, LoadBalancingClient_UpdateCallbackTarget_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5810, Queue_1_Photon_Realtime_LoadBalancingClient_CallbackTargetChange__Enqueue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5838, List_1_T_Enumerator_Photon_Realtime_IConnectionCallbacks__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5840, List_1_Photon_Realtime_IConnectionCallbacks___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5850, Dictionary_2_ExitGames_Client_Photon_ConnectionProtocol_System_Int32__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5858, Dictionary_2_ExitGames_Client_Photon_ConnectionProtocol_System_Int32___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5860, Queue_1_Photon_Realtime_LoadBalancingClient_CallbackTargetChange__Dequeue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5868, Queue_1_Photon_Realtime_LoadBalancingClient_CallbackTargetChange__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5870, LoadBalancingClient_UpdateCallbackTarget_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5878, LoadBalancingClient_UpdateCallbackTarget_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5880, List_1_Photon_Realtime_TypedLobbyInfo__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5898, List_1_Photon_Realtime_TypedLobbyInfo__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5938, List_1_Photon_Realtime_FriendInfo___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5948, List_1_Photon_Realtime_FriendInfo__Insert__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5950, List_1_Photon_Realtime_RoomInfo___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5960, List_1_Photon_Realtime_RoomInfo__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5978, Nullable_1_ExitGames_Client_Photon_ConnectionProtocol__GetValueOrDefault__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5BB0, Nullable_1_ExitGames_Client_Photon_ConnectionProtocol__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5BF0, Nullable_1_ExitGames_Client_Photon_ConnectionProtocol___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5C20, Dictionary_2_ExitGames_Client_Photon_ConnectionProtocol_System_Int32__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5C70, Nullable_1_ExitGames_Client_Photon_ConnectionProtocol__get_HasValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5CA8, Queue_1_Photon_Realtime_LoadBalancingClient_CallbackTargetChange___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5CD8, List_1_Photon_Realtime_TypedLobbyInfo___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5E00, InlineStyleAccess_SetStyleValue_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5E08, InlineStyleAccess_SetStyleValue_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5E10, InlineStyleAccess_SetStyleValue_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5E18, InlineStyleAccess_SetStyleValue_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE5E20, StyleEnum_1_DisplayStyle___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE6060, List_1_Photon_Realtime_RoomInfo__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE60E8, Dictionary_2_UnityEngine_Texture_UnityEngine_UIElements_TextureId__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE6130, Dictionary_2_UnityEngine_Texture_UnityEngine_UIElements_TextureId__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE6170, Dictionary_2_UnityEngine_Texture_UnityEngine_UIElements_TextureId___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE61A0, Dictionary_2_UnityEngine_Texture_UnityEngine_UIElements_TextureId__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE62D0, Dictionary_2_System_Int32_Photon_Realtime_Player__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE62E0, Dictionary_2_System_Int32_Photon_Realtime_Player___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE6320, Dictionary_2_System_Int32_Photon_Realtime_Player__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE6328, Dictionary_2_System_Int32_Photon_Realtime_Player__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE6340, Dictionary_2_System_Int32_Photon_Realtime_Player__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE6350, GameObject_AddComponent_72__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE63B0, ObjectPool_1_UIRAtlasAllocator_Row__Release__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE63B8, ObjectPool_1_UIRAtlasAllocator_Row__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE63C8, ObjectPool_1_UIRAtlasAllocator_AreaNode__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE63D0, ObjectPool_1_UIRAtlasAllocator_Row___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE63E0, ObjectPool_1_UIRAtlasAllocator_AreaNode___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE63E8, Assert_IsNull_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE63F0, ObjectPool_1_UIRAtlasAllocator_AreaNode__Release__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE6418, List_1_UnityEngine_UIElements_UIDocument__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE6420, List_1_UnityEngine_UIElements_UIDocument___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE6428, List_1_UnityEngine_UIElements_UIDocument__AddRange__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE6450, List_1_UnityEngine_UIElements_UIDocument__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE6458, List_1_UnityEngine_UIElements_UIDocument__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE6460, List_1_T_Enumerator_UnityEngine_UIElements_UIDocument__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE6468, List_1_T_Enumerator_UnityEngine_UIElements_UIDocument__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE6470, List_1_UnityEngine_UIElements_UIDocument__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE6478, List_1_T_Enumerator_UnityEngine_UIElements_UIDocument__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE6480, List_1_UnityEngine_UIElements_UIDocument___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE6490, List_1_UnityEngine_UIElements_UIDocument__Insert__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE6498, List_1_UnityEngine_UIElements_UIDocument__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE64A8, Assert_AreEqual_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE64B0, Component_GetComponentsInParent_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE64D0, List_1_UnityEngine_UIElements_IEventDispatchingStrategy__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE6510, TransitionEventBase_1_TransitionStartEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE6518, TransitionEventBase_1_TransitionRunEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE6520, EventBase_1_IMGUIEvent__GetPooled__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE6528, TransitionEventBase_1_TransitionCancelEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE6530, TransitionEventBase_1_TransitionEndEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE6540, EventBase_1_IMGUIEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE6548, EventBase_1_IMGUIEvent__Init__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE6560, EventBase_1_TooltipEvent__Init__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE6568, EventBase_1_CustomStyleResolvedEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE6578, EventBase_1_TooltipEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE65A0, PointerEventBase_1_PointerLeaveEvent__Init__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE65A8, PointerEventBase_1_PointerEnterEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE65B0, PointerEventBase_1_PointerEnterEvent__Init__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE65B8, PointerEventBase_1_PointerOverEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE65C0, PointerEventBase_1_PointerLeaveEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE65C8, ObjectPool_1_PropagationPaths__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE65D0, List_1_UnityEngine_UIElements_VisualElement___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE65D8, PointerEventBase_1_PointerOutEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE65E0, ObjectPool_1_PropagationPaths___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE65F0, ObjectPool_1_PropagationPaths__Release__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE65F8, PointerEventBase_1_PointerCancelEvent__Init__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE6600, PointerEventBase_1_ClickEvent__Init__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE6608, PointerEventBase_1_PointerCancelEvent__get_pointerType__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE6610, PointerEventBase_1_PointerCancelEvent__PostDispatch__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE6618, PointerEventBase_1_PointerCancelEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE6620, PointerEventBase_1_ClickEvent__set_clickCount__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE6628, PointerEventBase_1_ClickEvent__GetPooled__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE6630, PointerEventBase_1_ClickEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE6798, GameObject_GetComponent_84__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE6880, SharedVariable_1_UnityEngine_Material__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE68A8, GameObject_GetComponent_85__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE6BD8, GameObject_GetComponent_86__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE6C10, Task_1_GetComponent_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE6C58, SharedVariable_1_System_Collections_Generic_List_1__3_set_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE6C90, SharedVariable_1_System_Collections_Generic_List_1__2_set_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE6C98, SharedVariable_1_UnityEngine_Object__set_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE6CB0, SharedVariable_1_System_Collections_Generic_List_1__1_set_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE6CF0, SharedVariable_1_System_Collections_Generic_List_1__3_get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE6D00, List_1_UnityEngine_Transform__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE6D30, SharedVariable_1_System_Collections_Generic_List_1__2_get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE6D48, List_1_UnityEngine_Object__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE6D50, List_1_UnityEngine_Object__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE6D68, SharedVariable_1_UnityEngine_Object__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE6DD8, GameObject_GetComponent_87__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE6E28, SharedVariable_1_GenericVariable__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE7038, SharedVariable_1_UnityEngine_Transform__set_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE7048, SharedVariable_1_UnityEngine_Transform__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE7050, GameObject_GetComponent_88__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE8510, ValueTuple_2_IntPtr_String___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE8528, Queue_1_System_ValueTuple_2__Dequeue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE8530, Queue_1_System_ValueTuple_2__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE8578, Queue_1_System_ValueTuple_2___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE8588, Queue_1_System_ValueTuple_2__Enqueue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE86D0, Component_GetComponent_92__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE8720, Enumerable_Select_61__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE8790, ReadOnlyCollection_1_System_Linq_Expressions_ParameterExpression__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE8798, ReadOnlyCollection_1_System_Linq_Expressions_ParameterExpression__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE87E8, ExpressionUtils_ReturnObject_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE92E0, SharedVariable_1_UnityEngine_Behaviour__set_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE92F0, SharedVariable_1_UnityEngine_Behaviour__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9350, GameObject_GetComponent_89__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE93F0, GameObject_GetComponent_90__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9400, ListTools_AddIfUnique_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9408, ListTools_AddIfUnique_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9418, List_1_UnityEngine_UIElements_UIR_Allocator2D_Area__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9420, List_1_UnityEngine_UIElements_UIR_Allocator2D_Area__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9430, LinkedPool_1_Allocator2D_Row__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9450, List_1_UnityEngine_UIElements_UIR_Allocator2D_Area__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9470, LinkedPool_1_Allocator2D_Row__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE94B8, EmptyObjects_1_Rewired_IControllerTemplate__get_EmptyReadOnlyIListT__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE94C8, HashSet_1_UnityEngine_UIElements_StyleSheet___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE94E0, HashSet_1_UnityEngine_UIElements_StyleSheet__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE94F0, HashSet_1_UnityEngine_UIElements_StyleSheet__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9520, EqualityComparer_1_UnityEngine_UIElements_VisualTreeAsset__get_Default__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9538, List_1_UnityEngine_UIElements_UIR_Allocator2D_Area___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9550, EqualityComparer_1_Dictionary_2_System_String_UnityEngine_UIElements_VisualElement__get_Default__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE95B0, GameObject_GetComponent_91__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE95E0, Dictionary_2_System_String_UnityEngine_UIElements_VisualElement___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE95F0, HashSet_1_UnityEngine_UIElements_VisualTreeAsset__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9660, HashSet_1_UnityEngine_UIElements_VisualTreeAsset__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9668, HashSet_1_UnityEngine_UIElements_VisualTreeAsset___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9670, GameObject_GetComponent_92__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9688, Dictionary_2_System_String_UnityEngine_UIElements_VisualElement__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9698, Dictionary_2_System_String_UnityEngine_UIElements_VisualElement__get_Keys__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE96A8, Dictionary_2_System_String_UnityEngine_UIElements_VisualElement__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE96C8, SharedVariable_1_UnityEngine_Collider__set_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9710, SharedVariable_1_UnityEngine_Collider__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE97D8, Dictionary_2_System_String_UnityEngine_UIElements_VisualElement__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9810, EmptyObjects_1_Rewired_ControllerElementIdentifier__get_EmptyReadOnlyIListT__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9818, Dictionary_2_System_Int32_List_1_UnityEngine_UIElements_VisualElementAsset__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9820, Assert_IsNotNull_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9830, List_1_T_Enumerator_UnityEngine_UIElements_VisualElementAsset__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9850, EmptyObjects_1_Rewired_Controller_Button__get_EmptyReadOnlyIListT__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9860, List_1_UnityEngine_UIElements_VisualElementAsset__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9878, List_1_UnityEngine_UIElements_VisualElementAsset__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9880, List_1_T_Enumerator_UnityEngine_UIElements_VisualElementAsset__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9890, List_1_UnityEngine_UIElements_VisualElementAsset__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE98A8, ReadOnlyCollection_1_Rewired_IControllerTemplate___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE98B0, List_1_T_Enumerator_UnityEngine_UIElements_VisualElementAsset__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE98C0, Dictionary_2_System_Int32_List_1_UnityEngine_UIElements_VisualElementAsset__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE98C8, ReadOnlyCollection_1_Rewired_Controller_Button___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE98D0, Dictionary_2_System_Int32_List_1_UnityEngine_UIElements_VisualElementAsset___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE98E0, ReadOnlyCollection_1_Rewired_Controller_CompoundElement___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9900, ReadOnlyCollection_1_Rewired_Controller_Element___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9910, List_1_Rewired_Controller_CompoundElement___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9930, List_1_UnityEngine_UIElements_TemplateAsset__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9948, List_1_UnityEngine_UIElements_VisualElementAsset__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9958, List_1_Rewired_Controller_Element___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9960, List_1_UnityEngine_UIElements_VisualElementAsset__Sort__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9978, List_1_UnityEngine_UIElements_VisualElementAsset___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9980, EmptyObjects_1_Rewired_IControllerTemplate__get_array__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE99F0, GameObjectExtensions_GetCachedComponent_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9A38, HashSet_1_System_String___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9A40, EmptyObjects_1_Rewired_Controller_CompoundElement__get_EmptyReadOnlyIListT__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9A50, GameObject_GetComponent_93__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9A78, EmptyObjects_1_Rewired_Controller_Element__get_EmptyReadOnlyIListT__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9AA0, List_1_IntDataAnimation__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9AB8, SharedVariable_1_System_Collections_Generic_List_1__6_get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9AC0, List_1_UnityEngine_UIElements_VisualElementAsset__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9AD0, List_1_IntDataAnimation__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9AE8, List_1_UnityEngine_UIElements_TemplateAsset__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9B00, List_1_UnityEngine_UIElements_IUxmlFactory__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9B08, List_1_Rewired_ControllerElementIdentifier__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9B18, List_1_UnityEngine_UIElements_IUxmlFactory__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9B20, List_1_Rewired_ControllerElementIdentifier___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9B28, List_1_T_Enumerator_UnityEngine_UIElements_IUxmlFactory__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9B40, List_1_Rewired_ControllerElementIdentifier__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9B48, _f_AnonymousType0_2_System_Collections_Generic_List_1_System_Int32___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9B50, Dictionary_2_System_String_List_1_UnityEngine_UIElements_IUxmlFactory__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9B58, List_1_T_Enumerator_UnityEngine_UIElements_IUxmlFactory__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9B70, _f_AnonymousType0_2_System_Collections_Generic_List_1_System_Int32__get_vectorPath__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9B78, Dictionary_2_System_String_List_1_UnityEngine_UIElements_IUxmlFactory__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9BD0, List_1_UnityEngine_UIElements_IUxmlFactory___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9C20, _f_AnonymousType0_2_System_Collections_Generic_List_1_System_Int32__get_index__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9C68, Enumerable_Where_39__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9C90, Enumerable_Select_62__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9CA8, Enumerable_ToArray_26__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9E88, List_1_T_Enumerator_UnityEngine_UIElements_IUxmlFactory__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9ED0, Dictionary_2_System_String_List_1_UnityEngine_UIElements_IUxmlFactory___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CE9EE0, ReadOnlyCollection_1_Rewired_ControllerElementIdentifier___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEA030, List_1_CrowPerchController__FindAll__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEA040, List_1_CrowPerchController__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEA088, Enumerable_Select_63__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEA0A8, Enumerable_ToList_31__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEA0D0, Enumerable_Select_64__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEA138, Object_1_FindAnyObjectByType_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEA1D8, Task_1_GetComponent_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEA1F0, UxmlAttributeDescription_GetValueFromBag_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEA208, TypedUxmlAttributeDescription_1_System_String__get_defaultValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEA260, TypedUxmlAttributeDescription_1_System_String___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEA270, Enumerable_ToList_32__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEA368, UxmlFactory_2_VisualElement_UxmlStyleTraits___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEA390, List_1_List_1_UnityEngine_Vector3__FindIndex__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEA3B0, Enumerable_ToList_33__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEA408, UxmlFactory_2_VisualElement_UxmlTemplateTraits___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEA420, Enumerable_Select_65__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEA518, UxmlFactory_2_VisualElement_UxmlAttributeOverridesTraits___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEA570, Collection_1_System_String__get_Items__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEA580, Collection_1_System_String__SetItem__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEA588, List_1_InnHoleController__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEA5B8, List_1_InnHoleController__FindAll__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEA5D0, Enumerable_ToList_34__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEA5E0, Enumerable_Select_66__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEA5E8, Task_1_GetComponent_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEA600, MemoryExtensions_AsSpan_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEA608, MemoryExtensions_AsSpan_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEA610, UxmlFactory_2_VisualElement_UxmlRootElementTraits___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEA628, Span_1_String__CopyTo__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEA630, List_1_UnityEngine_GameObject__FindAll__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEA638, Span_1_String__op_Implicit__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEA670, IListExtensions_Shuffle_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEA690, Enumerable_ToArray_27__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEA6A8, Enumerable_Select_67__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEA6C8, Collection_1_System_String___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEA6D0, Collection_1_System_String__InsertItem__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEA6F8, Assert_IsNotNull_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEA740, Stack_1_System_String___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEA750, ScriptableObject_CreateInstance_15__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEA780, List_1_UnityEngine_TextCore_Text_FontAsset__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEA7A0, Dictionary_2_UnityEngine_SystemLanguage_System_String__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEA7B0, Dictionary_2_UnityEngine_SystemLanguage_System_String__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEA7C8, Dictionary_2_UnityEngine_SystemLanguage_System_String___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEA7D8, List_1_Rewired_UpdateLoopType__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEA7E8, List_1_Rewired_UpdateLoopType__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEA7F8, EnumNameValueCache_1_Rewired_Config_UpdateLoopSetting__get_Default__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEA800, EnumNameValueCache_1_Rewired_UpdateLoopType__get_Default__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEA818, EnumNameValueCache_1_Rewired_UpdateLoopType__GetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEA828, EnumNameValueCache_1_Rewired_Config_UpdateLoopSetting__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEA838, EnumNameValueCache_1_Rewired_Config_UpdateLoopSetting__GetName__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEA848, EnumNameValueCache_1_Rewired_Config_UpdateLoopSetting__GetValueAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEA858, Dictionary_2_System_String_Rewired_SteamAction___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEA8B8, Collection_1_System_String__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEA8C8, Collection_1_System_String__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEA920, Collection_1_System_String__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEA928, Dictionary_2_System_String_Rewired_SteamAction__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEA938, Collection_1_System_String__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEA9E0, AList_1_MRGkKzhgDCfculrfXakxXfUSFUsK_pEhrOFQDNlWhiCRQwqLfhdkKHswE__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEAA08, UpdateLoopDataSet_1_ButtonLoopSet_ButtonData__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEAA28, UpdateLoopDataSet_1_ButtonLoopSet_ButtonData__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEAA38, UpdateLoopDataSet_1_ButtonLoopSet_ButtonData__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEAA40, UpdateLoopDataSet_1_ButtonLoopSet_ButtonData__GetUpdateLoopType__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEAA48, UpdateLoopDataSet_1_ButtonLoopSet_ButtonData___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEAAA8, AList_1_MRGkKzhgDCfculrfXakxXfUSFUsK_pEhrOFQDNlWhiCRQwqLfhdkKHswE___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEAAE0, StyleSheet_TryCheckAccess_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEAAE8, StyleSheet_CheckAccess_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEAB58, AList_1_MRGkKzhgDCfculrfXakxXfUSFUsK_pEhrOFQDNlWhiCRQwqLfhdkKHswE__RemoveAll__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEAB78, StyleSheet_CheckAccess_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEABF0, StyleSheet_TryCheckAccess_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEAC10, List_1_UnityEngine_UIElements_StyleSheet__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEAC28, ArrayTools_Populate_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEAC30, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheet__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEAC40, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheet__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEAC70, Dictionary_2_System_String_UnityEngine_UIElements_StyleComplexSelector___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEAC78, Dictionary_2_System_String_UnityEngine_UIElements_StyleComplexSelector__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEAC80, Dictionary_2_System_String_UnityEngine_UIElements_StyleComplexSelector__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEACF8, AList_1_MRGkKzhgDCfculrfXakxXfUSFUsK_pEhrOFQDNlWhiCRQwqLfhdkKHswE__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEAD68, Enumerable_Select_68__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEAD88, AList_1_Rewired_IControllerTemplate__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEADA0, AList_1_Rewired_IControllerTemplate__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEADD8, AList_1_Rewired_IControllerTemplate___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEADE0, Enumerable_Select_69__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEAE58, List_1_T_Enumerator_UnityEngine_UIElements_StyleSheet__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEAE90, ArrayTools_Populate_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEAF60, AList_1_NEKNFNnBnMerBGmvtGdFgVoKfnGUA_RifmWctMhNdhIJYvjlOuqmVzJHgX__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEAF70, AList_1_NEKNFNnBnMerBGmvtGdFgVoKfnGUA_RifmWctMhNdhIJYvjlOuqmVzJHgX___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEAF78, Dictionary_2_System_String_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEAF80, Dictionary_2_System_String_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEAF90, Dictionary_2_System_String_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEAF98, MiscTools_Swap_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEB178, Dictionary_2_System_String_System_IO_FileData__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEB180, Dictionary_2_TKey_TValue_Enumerator_System_String_System_IO_FileData__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEB198, Dictionary_2_System_String_System_IO_FileData__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEB1A0, Dictionary_2_TKey_TValue_Enumerator_System_String_System_IO_FileData__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEB1B0, Dictionary_2_System_String_System_IO_FileData__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEB1B8, GameObject_GetComponent_94__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEB1C0, Dictionary_2_System_String_System_IO_FileData__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEB210, KeyValuePair_2_System_String_System_IO_FileData__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEB218, Dictionary_2_TKey_TValue_Enumerator_System_String_System_IO_FileData__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEB228, KeyValuePair_2_System_String_System_IO_FileData__get_Key__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEB298, Dictionary_2_System_String_System_IO_FileData___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEB3B8, List_1_UnityEngine_UIElements_UIR_RenderChain___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEB478, List_1_UnityEngine_UIElements_UIR_RenderChain__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEB480, List_1_UnityEngine_UIElements_VisualElement__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEB488, List_1_UnityEngine_UIElements_UIR_RenderChain__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEB490, List_1_UnityEngine_UIElements_UIR_RenderChain__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEB498, List_1_UnityEngine_UIElements_UIR_RenderChain__IndexOf__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEB4A0, List_1_UnityEngine_UIElements_UIR_RenderChain__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEB4B0, LinkedPool_1_BasicNode_1_TextureEntry__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEB4B8, LinkedPool_1_BasicNode_1_TextureEntry__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEB570, LinkedPool_1_RenderChainCommand__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEB578, LinkedPool_1_RenderChainCommand__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEB580, Dictionary_2_UnityEngine_UIElements_VisualElement_UnityEngine_Vector2__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEB588, Dictionary_2_UnityEngine_UIElements_VisualElement_UnityEngine_Vector2__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEB610, Dictionary_2_UnityEngine_UIElements_VisualElement_UnityEngine_Vector2__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEB658, LinkedPool_1_RenderChainCommand___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEB660, Dictionary_2_UnityEngine_UIElements_VisualElement_UnityEngine_Vector2___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEB788, LinkedPoolItem_1_Allocator2D_Row___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEB7B0, LinkedPool_1_Allocator2D_Row___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEB828, ListTools_AddAndCreateList_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEB898, ADictionary_2_System_Int32_Rewired_IControllerTemplateElement__GetValueSafe__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEB8A0, Task_1_GetComponent_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEB8D0, List_1_Rewired_ControllerTemplate_kvOnxGBUMwSXiAWzvbgaylKBYqUs___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEB8F0, List_1_Rewired_ControllerTemplate_kvOnxGBUMwSXiAWzvbgaylKBYqUs__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEB928, ADictionary_2_System_Int32_Rewired_IControllerTemplateElement__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEB9F0, ReadOnlyCollection_1_Rewired_IControllerTemplateElement___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEBA28, List_1_Rewired_IControllerTemplateButton__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEBA30, GameObject_GetComponentsInChildren_14__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEBA40, SharedVariable_1_UnityEngine_HumanBodyBones__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEBA48, List_1_Rewired_IControllerTemplateElement__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEBA58, List_1_Rewired_IControllerTemplateAxis__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEBA60, GameObject_GetComponentsInChildren_15__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEBA80, SharedVariable_1_BehaviorDesigner_Runtime_Tasks_Movement_DetectionMode__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEBA90, SharedVariable_1_BehaviorDesigner_Runtime_Tasks_Movement_DetectionMode___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEBAA0, SharedVariable_1_BehaviorDesigner_Runtime_Tasks_Movement_DetectionMode__set_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEBAF8, IControllerTemplateMapSpecialElement_Internal_GetMapping_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEBB00, Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEBB08, IControllerTemplateMapSpecialElement_Internal_GetMapping_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEBB28, Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1__ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEBB38, Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEBB60, Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1_Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEBB68, ADictionary_2_System_Int32_Rewired_IControllerTemplateElement___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEBB78, ADictionary_2_System_Int32_Rewired_IControllerTemplateElement__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEBB88, ADictionary_2_System_String_Rewired_IControllerTemplateElement___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEBB90, MovementUtility_GetComponentsForType_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEBBA0, ADictionary_2_System_String_Rewired_IControllerTemplateElement__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEBBB0, List_1_Rewired_IControllerTemplateAxis__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEBBB8, List_1_Rewired_IControllerTemplateElement__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEBBC0, List_1_Rewired_IControllerTemplateElement___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEBBD0, List_1_Rewired_IControllerTemplateButton__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEBBD8, List_1_Rewired_IControllerTemplateButton___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEBBE8, List_1_Rewired_IControllerTemplateAxis___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEBBF8, List_1_Rewired_IControllerTemplateAxis__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEBC00, MovementUtility_GetParentComponentForType_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEBC08, List_1_Rewired_IControllerTemplateElement__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEBC10, List_1_Rewired_IControllerTemplateElement__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEBC18, MovementUtility_GetComponentForType_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEBC28, List_1_Rewired_IControllerTemplateButton__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEBC30, MovementUtility_GetComponentForType_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEBC40, IControllerTemplateMapSpecialElement_Internal_GetMapping_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEBC58, IControllerTemplateMapSpecialElement_Internal_GetMapping_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEBC60, IControllerTemplateMapSpecialElement_Internal_GetMapping_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEBC68, IControllerTemplateMapSpecialElement_Internal_GetMapping_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEBC70, IControllerTemplateMapSpecialElement_Internal_GetMapping_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEBCA8, GameObjectExtensions_GetCachedComponent_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEBCC0, GameObjectExtensions_GetCachedComponent_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEBCE8, UltimateCharacterLocomotion_GetAbility_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEBD08, UltimateCharacterLocomotion_GetAbility_12__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEBD38, EventHandler_1_ExecuteEvent_59__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEBD58, EventHandler_1_ExecuteEvent_60__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEBD88, UltimateCharacterLocomotion_GetAbility_13__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEBDC0, UltimateCharacterLocomotion_GetAbilities_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEBE10, UltimateCharacterLocomotion_GetAbilities_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEBE40, UltimateCharacterLocomotion_GetAbilities_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEBE58, GameObjectExtensions_GetCachedComponent_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEBEB0, GameObjectExtensions_GetCachedComponent_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEBED8, UltimateCharacterLocomotion_GetAbilities_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEBEF8, GameObjectExtensions_GetCachedParentComponent_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEBF40, EventHandler_1_RegisterEvent_53__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEBF50, EventHandler_1_UnregisterEvent_51__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEBF68, SharedVariable_1_Opsive_UltimateCharacterController_Inventory_ItemType__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEBF70, GameObjectExtensions_GetCachedComponent_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEBFD8, List_1_Rewired_IControllerTemplate___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEBFE8, List_1_Rewired_IControllerTemplate__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEBFF8, List_1_Rewired_IControllerTemplate__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEC000, GameObjectExtensions_GetCachedComponent_12__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEC010, SharedVariable_1_Opsive_UltimateCharacterController_Inventory_ItemType___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEC030, ArrayTools_Populate_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEC058, ReadOnlyCollection_1_Rewired_Controller_Hat___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEC060, SharedVariable_1_Opsive_Shared_Inventory_ItemDefinitionBase___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEC088, ReadOnlyCollection_1_Rewired_JoystickType___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEC098, List_1_Rewired_Controller_Button__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEC0A0, List_1_Rewired_Controller_Button___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEC0C0, List_1_Rewired_Controller_Button__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEC128, EmptyObjects_1_Rewired_JoystickType__get_EmptyReadOnlyIListT__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEC148, EmptyObjects_1_Rewired_Controller_Hat__get_EmptyReadOnlyIListT__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEC458, EmptyObjects_1_Rewired_Controller_Axis2D__get_EmptyReadOnlyIListT__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEC478, EmptyObjects_1_Rewired_Controller_Axis__get_EmptyReadOnlyIListT__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEC4B8, ReadOnlyCollection_1_Rewired_Controller_Axis2D___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEC4C0, ReadOnlyCollection_1_Rewired_Controller_Axis___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEC5B0, Controller_CompoundElement_LtyGAmlsKmPsiiPMNTTQGWOJDnuI_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEC5E0, Controller_CompoundElement_FKqoMXwksyYwglCiMZjznCnUOvvD_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEC600, Controller_CompoundElement_FKqoMXwksyYwglCiMZjznCnUOvvD_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEC6B0, Enumerable_Empty_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEC7A8, List_1_UnityEngine_Yoga_YogaNode___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEC7C8, List_1_UnityEngine_Yoga_YogaNode__Insert__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEC7D0, List_1_UnityEngine_Yoga_YogaNode__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEC7F8, List_1_UnityEngine_Yoga_YogaNode__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEC800, List_1_UnityEngine_Yoga_YogaNode__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEC8D8, ReadOnlyCollection_1_Rewired_Controller_Element_xOoJsIJJrYLeLMCcefuYYRHXEZwJ_yShTYqkGIvmtEnfpaLxCqsdlnJlO___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CED0C8, SharedVariable_1_PatrolRoute__set_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CED0D0, SharedVariable_1_System_Collections_Generic_List_1__set_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CED0D8, List_1_Waypoint___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CED0E8, Behavior_FindTask_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CED0F0, GameObject_GetComponent_95__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CED118, Task_1_GetComponent_12__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CED148, SharedVariable_1_PatrolRoute__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CED158, GameObject_GetComponentsInChildren_16__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CED170, Task_1_GetComponent_13__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CED1A0, Enumerable_Select_70__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CED1A8, Enumerable_ToArray_28__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CED1E0, EventHandler_1_ExecuteEvent_61__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CED220, EventHandler_1_ExecuteEvent_62__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CED250, UltimateCharacterLocomotion_GetAbility_14__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CED2E8, Object_1_FindAnyObjectByType_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CED340, EventHandler_1_ExecuteEvent_63__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CED438, GameObject_GetComponent_96__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CED510, EventHandler_1_ExecuteEvent_64__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CED5E8, Dictionary_2_UnityEngine_Material_UnityEngine_Color__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CED5F0, Component_GetComponent_93__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CED6E0, Dictionary_2_UnityEngine_Material_UnityEngine_Color__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CED710, Dictionary_2_System_String_System_UriParser__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CED718, Dictionary_2_System_String_System_UriParser__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CED728, Dictionary_2_System_String_System_UriParser___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CED740, Dictionary_2_System_String_System_UriParser__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CED790, Dictionary_2_System_String_System_UriParser__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CED9C8, Stack_1_System_Security_Cryptography_DerSequenceReader___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CED9D0, Stack_1_System_Security_Cryptography_DerSequenceReader__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CED9D8, Stack_1_System_Security_Cryptography_DerSequenceReader__Pop__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CED9E0, Stack_1_System_Security_Cryptography_DerSequenceReader__Push__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEDA10, List_1_System_Security_Cryptography_X509Certificates_X509Extension__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEDA18, List_1_System_Security_Cryptography_X509Certificates_X509Extension___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEDA20, Nullable_1_Internal_Cryptography_Pal_GeneralNameType___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEDA28, Nullable_1_Internal_Cryptography_Pal_GeneralNameType__get_HasValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEDA30, List_1_T_Enumerator_System_Security_Cryptography_X509Certificates_X509Extension__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEDA38, List_1_System_Security_Cryptography_X509Certificates_X509Extension__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEDA48, Nullable_1_Internal_Cryptography_Pal_GeneralNameType__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEDA58, List_1_T_Enumerator_System_Security_Cryptography_X509Certificates_X509Extension__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEDA60, List_1_T_Enumerator_System_Security_Cryptography_X509Certificates_X509Extension__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEDC28, List_1_UnityEngine_UI_RectMask2D__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEDC38, List_1_UnityEngine_UI_RectMask2D__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEDC50, Component_GetComponentsInParent_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEDC60, GameObject_GetComponentsInParent_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEDC78, CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_UI_RectMask2D__Release__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEDDA0, Component_GetComponentsInChildren_33__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEDE40, CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_UI_RectMask2D__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEDE78, CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_UI_Mask__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEDE88, CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_UI_Mask__Release__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE060, Dictionary_2_System_String_System_String___ctor_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE068, Enumerable_ToDictionary_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE0A0, ConcurrentDictionary_2_System_String_System_String___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE0B0, ConcurrentDictionary_2_System_String_System_String___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE0D0, ConcurrentDictionary_2_System_String_System_String__TryAdd__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE0F0, ConcurrentDictionary_2_System_String_System_String__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE148, ObjectPool_1_UnityEngine_UI_LayoutRebuilder___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE158, List_1_UnityEngine_Component__RemoveAll__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE180, ObjectPool_1_UnityEngine_UI_LayoutRebuilder__Release__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE188, ObjectPool_1_UnityEngine_UI_LayoutRebuilder__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE1B0, List_1_UnityEngine_RectTransform___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE1C0, List_1_UnityEngine_RectTransform__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE1C8, List_1_UnityEngine_RectTransform__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE1F8, LayoutGroup_SetProperty_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE210, LayoutGroup_SetProperty_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE218, List_1_UnityEngine_RectTransform__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE228, LayoutGroup_SetProperty_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE238, List_1_UnityEngine_RectTransform__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE250, SetPropertyUtility_2_SetStruct_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE258, LayoutGroup_SetProperty_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE268, LayoutGroup_SetProperty_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE288, SetPropertyUtility_2_SetStruct_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE2E0, SetPropertyUtility_2_SetStruct_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE2E8, SetPropertyUtility_2_SetStruct_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE2F8, SetPropertyUtility_2_SetStruct_12__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE300, SetPropertyUtility_2_SetStruct_13__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE308, SetPropertyUtility_2_SetStruct_14__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE338, SetPropertyUtility_2_SetClass_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE340, SetPropertyUtility_2_SetClass_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE360, SetPropertyUtility_2_SetClass_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE368, SetPropertyUtility_2_SetClass_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE370, SetPropertyUtility_2_SetClass_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE378, SetPropertyUtility_2_SetClass_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE4F0, List_1_Waypoint__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE4F8, SharedVariable_1_System_Collections_Generic_List_1__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE500, List_1_UnityEngine_Collider__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE508, SharedVariable_1_System_Collections_Generic_List_1__4_get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE510, List_1_T_Enumerator_UnityEngine_Collider__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE518, List_1_UnityEngine_Collider__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE520, List_1_T_Enumerator_UnityEngine_Collider__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE528, List_1_T_Enumerator_UnityEngine_Collider__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE548, Task_1_GetComponent_14__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE570, List_1_Photon_Bolt_BoltEntity__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE580, List_1_Photon_Bolt_BoltEntity__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE590, List_1_T_Enumerator_Photon_Bolt_BoltEntity__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE598, List_1_T_Enumerator_Photon_Bolt_BoltEntity__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE5A8, List_1_T_Enumerator_Photon_Bolt_BoltEntity__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE608, GameObjectExtensions_GetCachedComponent_13__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE618, GameObjectExtensions_GetCachedComponent_14__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE680, GameObject_GetComponent_97__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE690, ObjectPool_1_Rewired_HID_HIDGyroscope_DeAenLGYTqNyWDVKOCMDwbfhHVkGA___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE6B8, RingBuffer_1_Rewired_HID_HIDGyroscope_DeAenLGYTqNyWDVKOCMDwbfhHVkGA__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE6C0, RingBuffer_1_Rewired_HID_HIDGyroscope_DeAenLGYTqNyWDVKOCMDwbfhHVkGA__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE6C8, CollectionTools_Enqueue_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE6D0, ObjectPool_1_Rewired_HID_HIDGyroscope_DeAenLGYTqNyWDVKOCMDwbfhHVkGA__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE6D8, CollectionTools_Clear_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE6F0, RingBuffer_1_Rewired_HID_HIDGyroscope_DeAenLGYTqNyWDVKOCMDwbfhHVkGA___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE708, List_1_Rewired_HID_HIDControllerElementWithDataSet_oBWNdsGlGNkIvPlfnFirbraBbQXRA__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE710, List_1_Rewired_HID_HIDControllerElementWithDataSet_oBWNdsGlGNkIvPlfnFirbraBbQXRA___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE718, List_1_Rewired_HID_HIDControllerElementWithDataSet_oBWNdsGlGNkIvPlfnFirbraBbQXRA__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE778, List_1_Rewired_InputManagers_CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ_seWhRdmkWxldKiJZidihirlhHhzS__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE780, List_1_Rewired_InputManagers_CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ_seWhRdmkWxldKiJZidihirlhHhzS__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE788, List_1_Rewired_InputManagers_CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ_seWhRdmkWxldKiJZidihirlhHhzS__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE7A0, List_1_Rewired_InputManagers_CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ_seWhRdmkWxldKiJZidihirlhHhzS__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE7C8, List_1_Rewired_InputManagers_CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ_seWhRdmkWxldKiJZidihirlhHhzS___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE7F8, List_1_Rewired_InputManagers_CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE858, List_1_Rewired_InputManagers_CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf__Sort__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE860, List_1_Rewired_InputManagers_CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE870, List_1_Rewired_InputManagers_CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE880, List_1_Rewired_InputManagers_CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE930, UpdateLoopDataSet_1_ButtonLoopSet_ButtonData__SetUpdateLoop__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE948, UpdateLoopDataSet_1_ButtonLoopSet_ButtonData__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE950, ADictionary_2_System_Int32_nPRqIoqySXhujbVkqhHKfdEBznFW__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE958, ADictionary_2_System_Int32_nPRqIoqySXhujbVkqhHKfdEBznFW__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE960, ADictionary_2_System_Int32_nPRqIoqySXhujbVkqhHKfdEBznFW__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE968, ADictionary_2_System_Int32_nPRqIoqySXhujbVkqhHKfdEBznFW__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE970, ADictionary_2_System_Int32_nPRqIoqySXhujbVkqhHKfdEBznFW__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE978, ADictionary_2_System_Int32_PLVuESYMpevStRCbBgaqaHaZvFblA__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE980, ADictionary_2_System_Int32_nPRqIoqySXhujbVkqhHKfdEBznFW__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE990, ADictionary_2_System_Int32_PLVuESYMpevStRCbBgaqaHaZvFblA__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE998, ADictionary_2_System_Int32_nPRqIoqySXhujbVkqhHKfdEBznFW__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE9A0, ADictionary_2_System_Int32_PLVuESYMpevStRCbBgaqaHaZvFblA__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE9A8, ADictionary_2_System_Int32_PLVuESYMpevStRCbBgaqaHaZvFblA__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE9B0, ADictionary_2_System_Int32_PLVuESYMpevStRCbBgaqaHaZvFblA__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE9B8, ADictionary_2_System_Int32_PLVuESYMpevStRCbBgaqaHaZvFblA__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE9C0, ADictionary_2_System_Int32_PLVuESYMpevStRCbBgaqaHaZvFblA__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE9E8, ADictionary_2_System_Int32_PLVuESYMpevStRCbBgaqaHaZvFblA___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEE9F8, ADictionary_2_System_Int32_nPRqIoqySXhujbVkqhHKfdEBznFW___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEEA28, List_1_OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB_UEUxULqgOKjFFoCtJehseWLRVSuFA__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEEA30, List_1_OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB_UEUxULqgOKjFFoCtJehseWLRVSuFA__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEEA38, List_1_OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB_UEUxULqgOKjFFoCtJehseWLRVSuFA__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEEA48, List_1_OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB_UEUxULqgOKjFFoCtJehseWLRVSuFA___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEEA78, List_1_OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB_UEUxULqgOKjFFoCtJehseWLRVSuFA__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEEB38, List_1_Dissonance_Networking_Server_Admin_IServerClientState__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEEB50, List_1_Dissonance_Networking_Server_Admin_IServerClientState__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEEB80, List_1_Dissonance_Networking_Server_Admin_IServerClientState__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEEB88, List_1_Dissonance_Networking_Server_Admin_IServerClientState__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEEBA0, ReadOnlyCollection_1_Dissonance_Networking_Server_Admin_IServerClientState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEEBB8, List_1_OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEEBC0, List_1_Dissonance_Networking_Server_Admin_IServerClientState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEEBE0, List_1_OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEEBF8, List_1_OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEEC20, List_1_OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb__Sort__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEEC38, IInputSource_GetJoysticks_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEEC70, ReadonlyLockedValue_1_T_Unlocker_System_Collections_Generic_List_1__2_get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEEC80, ReadonlyLockedValue_1_System_Collections_Generic_List_1__2_Lock__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEECA0, List_1_System_Byte__1_Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEECA8, List_1_System_Byte__1_Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEECB0, List_1_OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEECC0, List_1_System_Byte__1_get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEECC8, List_1_System_Byte__1_get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEECF8, ReadonlyLockedValue_1_System_Collections_Generic_List_1__2__ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEED08, List_1_System_Byte__1__ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEED70, List_1_System_Delegate__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEED78, List_1_System_Delegate___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEEDD8, List_1_System_Delegate__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEEDE0, List_1_System_Delegate__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEEE18, Pool_1_System_Collections_Generic_List_1___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEEE20, Dictionary_2_System_UInt16_List_1_System_String___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEEE30, Dictionary_2_System_UInt16_List_1_System_String__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEEE38, Pool_1_System_Collections_Generic_List_1__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEEE40, Dictionary_2_System_UInt16_List_1_System_String__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEEE48, Dictionary_2_System_UInt16_List_1_System_String__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEEE50, Pool_1_System_Collections_Generic_List_1__Put__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEF240, List_1_Rewired_ControllerMap__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEF250, List_1_Rewired_ControllerMap__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEF268, IndexedDictionary_2_System_Int32_oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEF278, List_1_Rewired_ControllerMap__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEF280, IndexedDictionary_2_System_Int32_oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEF288, IndexedDictionary_2_System_Int32_oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB__GetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEF298, List_1_Rewired_ControllerMap___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEF2B0, ReadOnlyCollection_1_Rewired_ControllerMap___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEF2D8, IndexedDictionary_2_System_Int32_oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEF2E0, List_1_Rewired_ControllerMap__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEF2E8, IndexedDictionary_2_System_Int32_oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEF2F0, List_1_Rewired_ControllerMap__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEF2F8, List_1_Rewired_ControllerMap__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEF3C8, ValueWatcher_1_System_String___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEF3E0, List_1_Rewired_Utils_Classes_Utility_ValueWatcher___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEF3F0, List_1_Rewired_Utils_Classes_Utility_ValueWatcher__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEF3F8, List_1_Rewired_Utils_Classes_Utility_ValueWatcher__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEF400, ADictionary_2_System_Int32_Rewired_ReInput_DmhbSZjMCnZgLPemnolJFUVnzbICA_NGtafHDtYZIXfpyTnVUJzXoLNIRb___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEF410, ADictionary_2_System_Int32_Rewired_ReInput_DmhbSZjMCnZgLPemnolJFUVnzbICA_NGtafHDtYZIXfpyTnVUJzXoLNIRb__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEF430, ADictionary_2_System_Int32_Rewired_ReInput_DmhbSZjMCnZgLPemnolJFUVnzbICA_NGtafHDtYZIXfpyTnVUJzXoLNIRb__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEF440, EmptyObjects_1_Rewired_Player__get_EmptyReadOnlyIListT__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEF448, EmptyObjects_1_System_String__get_array__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEFD20, Component_GetComponent_94__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEFE28, LinqExtensions_DistinctBy_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEFE58, _f_AnonymousType1_3_Photon_Bolt_PrefabId_System_String_System_String___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEFEF0, EventHandler_1_ExecuteEvent_65__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CEFFA0, WeakReference_1_System_Text_RegularExpressions_RegexReplacement___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF0028, Object_1_FindAnyObjectByType_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF00B8, List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__1_Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF00F0, GameObject_GetComponent_98__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF00F8, List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF0108, Component_GetComponentsInChildren_34__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF0118, Array_ConvertAll_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF0120, Array_IndexOf_254__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF0150, List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__1__ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF0160, Dictionary_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Text_RegularExpressions_Regex_CachedCodeEntry___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF0178, List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF0188, List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__1_GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF0198, List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF01A0, List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__1_get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF01A8, List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__2_get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF01B0, List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__1_MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF01C0, List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__2_MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF01C8, List_1_System_String__Reverse__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF01D0, List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__2_Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF01E0, List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__1_Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF0280, Dictionary_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Text_RegularExpressions_Regex_CachedCodeEntry__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF02A0, Dictionary_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Text_RegularExpressions_Regex_CachedCodeEntry__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF02A8, Dictionary_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Text_RegularExpressions_Regex_CachedCodeEntry__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF02B8, EventHandler_1_ExecuteEvent_66__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF0368, List_1_System_Text_RegularExpressions_Match__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF03A8, Dictionary_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Text_RegularExpressions_Regex_CachedCodeEntry__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF03F0, List_1_System_Text_RegularExpressions_Match__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF0410, List_1_System_Text_RegularExpressions_Match___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF0418, List_1_System_Text_RegularExpressions_Match__CopyTo__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF0420, List_1_System_Text_RegularExpressions_Match__IndexOf__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF0438, List_1_System_Text_RegularExpressions_Match__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF0440, List_1_System_Text_RegularExpressions_Match__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF04B0, EqualityComparer_1_System_Text_RegularExpressions_Group__get_Default__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF05D8, EqualityComparer_1_System_Text_RegularExpressions_Capture__get_Default__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF0848, CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_UIVertex__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF0858, CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_UIVertex__Release__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF0B18, CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_Vector3__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF0B38, CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_Color32__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF0B48, CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_Vector4__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF0B78, CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_Vector4__Release__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF0B90, CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_Color32__Release__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF0BA0, CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_Vector3__Release__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF0D70, Enumerable_Count_24__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF0D90, List_1_UnityEngine_UI_Toggle__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF0DD8, List_1_UnityEngine_UI_Toggle__Find__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF0E30, Enumerable_First_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF0E58, Enumerable_Where_40__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF0EF0, SortedDictionary_2_System_String_System_Char__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF0F70, SortedDictionary_2_System_String_System_Char___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF0F90, List_1_UnityEngine_UI_Toggle__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF0FB8, List_1_UnityEngine_UI_StencilMaterial_MatEntry___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF0FC0, List_1_UnityEngine_UI_StencilMaterial_MatEntry__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF0FD8, Lazy_1_System_Web_Util_HttpEncoder___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1038, List_1_UnityEngine_UI_StencilMaterial_MatEntry__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1040, List_1_UnityEngine_UI_StencilMaterial_MatEntry__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1050, List_1_UnityEngine_UI_StencilMaterial_MatEntry__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1090, Lazy_1_System_Web_Util_HttpEncoder__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF10C0, List_1_UnityEngine_UI_StencilMaterial_MatEntry__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1100, SetPropertyUtility_2_SetStruct_15__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1198, List_1_UnityEngine_UI_Selectable___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF11B0, SetPropertyUtility_2_SetStruct_16__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF11D8, SetPropertyUtility_2_SetClass_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1248, SetPropertyUtility_2_SetClass_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1250, HashSet_1_UnityEngine_UI_MaskableGraphic__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1258, HashSet_1_UnityEngine_UI_IClippable__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1268, SetPropertyUtility_2_SetStruct_17__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1290, List_1_UnityEngine_UI_RectMask2D___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1298, HashSet_1_UnityEngine_UI_IClippable___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF12A8, HashSet_1_UnityEngine_UI_MaskableGraphic___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF12B0, HashSet_1_T_Enumerator_UnityEngine_UI_IClippable__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF12B8, HashSet_1_T_Enumerator_UnityEngine_UI_MaskableGraphic__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF12C0, HashSet_1_UnityEngine_UI_IClippable__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF12C8, HashSet_1_UnityEngine_UI_MaskableGraphic__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF12D0, HashSet_1_UnityEngine_UI_IClippable__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF12D8, HashSet_1_UnityEngine_UI_MaskableGraphic__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF12E0, HashSet_1_T_Enumerator_UnityEngine_UI_IClippable__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF12E8, HashSet_1_T_Enumerator_UnityEngine_UI_MaskableGraphic__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF12F0, HashSet_1_T_Enumerator_UnityEngine_UI_MaskableGraphic__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF12F8, HashSet_1_T_Enumerator_UnityEngine_UI_IClippable__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1300, HashSet_1_UnityEngine_UI_IClippable__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1308, HashSet_1_UnityEngine_UI_MaskableGraphic__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1590, Log_Warn_19__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF15E0, KeyValuePair_2_System_String_List_1_System_UInt16__get_Key__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1600, Dictionary_2_System_String_List_1_System_UInt16___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1680, List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphObjectPool_SharedObjectPoolBase__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1770, WeakReference_1_System_Text_RegularExpressions_RegexReplacement__SetTarget__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1780, WeakReference_1_System_Text_RegularExpressions_RegexReplacement__TryGetTarget__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1798, List_1_System_Text_RegularExpressions_RegexOptions__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF17A8, List_1_System_Text_RegularExpressions_RegexOptions__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF17B0, List_1_System_Text_RegularExpressions_RegexOptions__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF18E8, List_1_System_Text_RegularExpressions_RegexOptions__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF18F0, List_1_System_Text_RegularExpressions_RegexOptions__RemoveRange__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1950, List_1_System_Text_RegularExpressions_RegexNode__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1958, List_1_System_Text_RegularExpressions_RegexNode___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1960, List_1_System_Text_RegularExpressions_RegexNode__InsertRange__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1968, List_1_System_Text_RegularExpressions_RegexNode__RemoveRange__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1970, List_1_System_Text_RegularExpressions_RegexNode__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1980, List_1_System_Text_RegularExpressions_RegexOptions___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF19B8, List_1_System_Text_RegularExpressions_RegexNode__Reverse__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF19E0, List_1_System_Text_RegularExpressions_RegexFC__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF19F0, List_1_System_Text_RegularExpressions_RegexFC__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF19F8, List_1_System_Text_RegularExpressions_RegexFC__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1A08, List_1_System_Text_RegularExpressions_RegexFC__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1A18, List_1_System_Text_RegularExpressions_RegexNode__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1A20, List_1_System_Text_RegularExpressions_RegexNode__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1A58, List_1_System_Text_RegularExpressions_RegexFC___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1AE0, List_1_UnityEngine_SkinnedMeshRenderer___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1B48, GameObject_GetComponent_99__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1B98, GameObject_GetComponent_100__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1BB0, KeyValuePair_2_UnityEngine_AudioSource_System_Single__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1BB8, KeyValuePair_2_UnityEngine_AudioSource_System_Single__get_Key__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1BC0, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_AudioSource_System_Single__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1BC8, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_AudioSource_System_Single__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1BD0, Dictionary_2_UnityEngine_AudioSource_System_Single__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1BD8, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_AudioSource_System_Single__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1BE0, Dictionary_2_UnityEngine_AudioSource_System_Single___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1BF0, Dictionary_2_UnityEngine_AudioSource_System_Single__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1BF8, Component_GetComponentInParent_13__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1C60, Component_GetComponentInParent_14__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1C90, List_1_OutdoorsAudioWindowPoint__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1C98, List_1_OutdoorsAudioWindowPoint__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1CA0, List_1_OutdoorsAudioWindowPoint__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1CA8, List_1_OutdoorsAudioWindowPoint__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1CB0, GameObject_AddComponent_73__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1CB8, GameObject_AddComponent_74__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1CC0, List_1_T_Enumerator_OutdoorsAudioWindowPoint__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1CC8, List_1_T_Enumerator_OutdoorsAudioWindowPoint__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1CD0, Component_GetComponentsInChildren_35__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1CD8, List_1_T_Enumerator_OutdoorsAudioWindowPoint__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1CF0, List_1_OutdoorsAudioWindowPoint___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1D80, EventHandler_1_UnregisterEvent_52__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1D98, EventHandler_1_RegisterEvent_54__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1DC0, ConfigVars_GetOrCreatePlatformVars_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1DC8, List_1_BGMController_BGM__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1DD0, List_1_BGMController_BGM__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1DD8, ConfigVars_GetOrCreatePlatformVars_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1DE0, List_1_BGMController_BGM__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1DE8, List_1_BGMController_BGM__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1DF0, List_1_BGMController_BGM__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1DF8, List_1_BGMController_BGM__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1E00, ConfigVars_GetOrCreatePlatformVars_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1E08, List_1_BGMController_BGM__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1E10, List_1_T_Enumerator_BGMController_BGM__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1E18, List_1_T_Enumerator_BGMController_BGM__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1E20, ConfigVars_GetOrCreatePlatformVars_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1E30, List_1_T_Enumerator_BGMController_BGM__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1E40, ConfigVars_GetOrCreatePlatformVars_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1E48, List_1_BGMController_BGM___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1EA8, Component_GetComponentInParent_15__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1EF0, Array_IndexOf_255__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1EF8, ConfigVars_GetOrCreatePlatformVars_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1F00, ConfigVars_GetOrCreatePlatformVars_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1F50, Object_1_FindAnyObjectByType_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF1FA0, Component_GetComponentInParent_16__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF2080, Object_1_FindAnyObjectByType_12__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF20A8, GetSetValue_1_Rewired_Platforms_XboxOnePrimaryInputSource___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF20B0, GetSetValue_1_Rewired_Platforms_PS5PrimaryInputSource___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF20B8, GetSetValue_1_Rewired_Platforms_LinuxStandalonePrimaryInputSource___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF20C0, GetSetValue_1_Rewired_DeadZone2DType___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF20D0, GetSetValue_1_Rewired_Platforms_WebGLPrimaryInputSource___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF20E0, GetSetValue_1_Rewired_Platforms_PS4PrimaryInputSource___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF20F0, GetSetValue_1_Rewired_AxisSensitivityType___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF20F8, GetSetValue_1_Rewired_Config_UpdateLoopSetting___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF2100, GetSetValue_1_Rewired_Platforms_OSXStandalonePrimaryInputSource___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF2170, GetSetValue_1_Rewired_Platforms_StadiaPrimaryInputSource___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF2188, GetSetValue_1_Rewired_Config_LogLevelFlags___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF2190, GetSetValue_1_Rewired_Platforms_WindowsUWPPrimaryInputSource___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF2198, GetSetValue_1_Rewired_Config_ThrottleCalibrationMode___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF21A0, GetSetValue_1_Rewired_AxisSensitivity2DType___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF21B0, GetSetValue_1_Rewired_Platforms_WindowsStandalonePrimaryInputSource___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF21B8, GetSetValue_1_Rewired_Platforms_GameCoreXboxOnePrimaryInputSource___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF21C0, GetSetValue_1_Rewired_Platforms_GameCoreScarlettPrimaryInputSource___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF21C8, Component_GetComponent_95__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF2210, List_1_AnimalGateSpawnPoint__Find__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF2530, KeyedGetSetValueStore_1_System_String___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF25D8, KeyValuePair_2_System_Int32_Rewired_Data_ConfigVars_azUEuvNbipTVExojWRFquaZJFmGY__get_Key__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF25E0, Dictionary_2_TKey_TValue_Enumerator_System_Int32_Rewired_Data_ConfigVars_azUEuvNbipTVExojWRFquaZJFmGY__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF25E8, Dictionary_2_TKey_TValue_Enumerator_System_Int32_Rewired_Data_ConfigVars_azUEuvNbipTVExojWRFquaZJFmGY__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF25F0, Dictionary_2_System_Int32_Rewired_Data_ConfigVars_azUEuvNbipTVExojWRFquaZJFmGY__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF25F8, Dictionary_2_System_Int32_Rewired_Data_ConfigVars_hqPFCXOAONldUTOJGhDJeyDIdhxHb__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF2690, Dictionary_2_System_Int32_Rewired_Data_ConfigVars_hqPFCXOAONldUTOJGhDJeyDIdhxHb__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF2698, Dictionary_2_TKey_TValue_Enumerator_System_Int32_Rewired_Data_ConfigVars_azUEuvNbipTVExojWRFquaZJFmGY__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF26A8, ConfigVars_GetOrCreatePlatformVars_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF26B8, Dictionary_2_System_Int32_Rewired_Data_ConfigVars_azUEuvNbipTVExojWRFquaZJFmGY__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF26C0, Dictionary_2_System_Int32_Rewired_Data_ConfigVars_azUEuvNbipTVExojWRFquaZJFmGY__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF2770, Dictionary_2_System_Int32_Rewired_Data_ConfigVars_hqPFCXOAONldUTOJGhDJeyDIdhxHb__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF2778, Dictionary_2_System_Int32_Rewired_Data_ConfigVars_hqPFCXOAONldUTOJGhDJeyDIdhxHb___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF27F8, ReadOnlyCollection_1_Rewired_Platforms_Custom_CustomInputSource_Axis___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF2800, ReadOnlyCollection_1_Rewired_Platforms_Custom_CustomInputSource_Button___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF2838, Dictionary_2_System_Int32_Rewired_Data_ConfigVars_azUEuvNbipTVExojWRFquaZJFmGY___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF2850, Dictionary_2_System_Int32_Rewired_Data_ConfigVars_azUEuvNbipTVExojWRFquaZJFmGY__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF28A8, List_1_Rewired_Platforms_Custom_CustomInputSource_Joystick__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF28D0, ReadOnlyCollection_1_Rewired_Platforms_Custom_CustomInputSource_Joystick___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF28E0, List_1_Rewired_Platforms_Custom_CustomInputSource_Joystick___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF28E8, List_1_Rewired_Platforms_Custom_CustomInputSource_Joystick__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF28F0, List_1_Rewired_Platforms_Custom_CustomInputSource_Joystick__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF28F8, List_1_Rewired_Platforms_Custom_CustomInputSource_Joystick__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF2900, List_1_Rewired_Platforms_Custom_CustomInputSource_Joystick___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF2908, List_1_Rewired_Platforms_Custom_CustomInputSource_Joystick__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF2918, List_1_Rewired_Platforms_Custom_CustomInputSource_Joystick__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF2A08, Controller_Extension_GetController_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF2B80, RingBuffer_1_Rewired_HID_HIDTouchpad_MEbbjOIqfeMIvctgibbviaUtKhNTA__Dequeue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF2B88, RingBuffer_1_Rewired_HID_HIDTouchpad_MEbbjOIqfeMIvctgibbviaUtKhNTA__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF2B90, ObjectPool_1_Rewired_HID_HIDTouchpad_MEbbjOIqfeMIvctgibbviaUtKhNTA__Return__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF2B98, ObjectPool_1_Rewired_HID_HIDTouchpad_MEbbjOIqfeMIvctgibbviaUtKhNTA__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF2BA0, CollectionTools_Enqueue_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF2BB0, RingBuffer_1_Rewired_HID_HIDTouchpad_MEbbjOIqfeMIvctgibbviaUtKhNTA___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF2BC0, ObjectPool_1_Rewired_HID_HIDTouchpad_MEbbjOIqfeMIvctgibbviaUtKhNTA___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF2C78, MiscTools_Swap_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF2D08, KeyValuePair_2_System_Int32_UnityEngine_EventSystems_PointerEventData__ToString__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF2D10, List_1_UnityEngine_EventSystems_BaseRaycaster__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF2D18, List_1_UnityEngine_EventSystems_BaseRaycaster__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF2D20, List_1_UnityEngine_EventSystems_BaseRaycaster__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF2D28, Component_GetComponentsInParent_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF2D40, List_1_UnityEngine_EventSystems_BaseRaycaster___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF2D70, List_1_UnityEngine_EventSystems_PointerInputModule_ButtonState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF2D88, List_1_UnityEngine_EventSystems_PointerInputModule_ButtonState__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF2D98, Dictionary_2_System_Int32_UnityEngine_EventSystems_PointerEventData__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF2DA0, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_EventSystems_PointerEventData__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF2DB8, Dictionary_2_System_Int32_UnityEngine_EventSystems_PointerEventData__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF2DC0, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_EventSystems_PointerEventData__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF2DC8, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_EventSystems_PointerEventData__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF2DD0, Dictionary_2_TKey_TValue_ValueCollection_System_Int32_UnityEngine_EventSystems_PointerEventData__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF2DD8, Dictionary_2_System_Int32_UnityEngine_EventSystems_PointerEventData__get_Values__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF2DE0, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_EventSystems_PointerEventData__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF2DF0, KeyValuePair_2_System_Int32_UnityEngine_EventSystems_PointerEventData__get_Key__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF2DF8, KeyValuePair_2_System_Int32_UnityEngine_EventSystems_PointerEventData__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF2E00, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_EventSystems_PointerEventData__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF2E08, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_EventSystems_PointerEventData__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF2E10, List_1_UnityEngine_EventSystems_PointerInputModule_ButtonState__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF2E18, List_1_UnityEngine_EventSystems_PointerInputModule_ButtonState__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF2E28, Component_GetComponents_12__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF2E30, GameObject_AddComponent_75__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF2E40, GameObject_GetComponentInParent_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF2E48, GameObject_GetComponent_101__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF2E58, Dictionary_2_System_Int32_UnityEngine_EventSystems_PointerEventData__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF2F20, List_1_UnityEngine_Transform___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF2FB8, ExecuteEvents_ValidateEventData_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3020, List_1_UnityEngine_EventSystems_EventSystem___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3048, List_1_UnityEngine_EventSystems_EventTrigger_Entry___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3058, UnityEvent_1_UnityEngine_EventSystems_BaseEventData___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3060, List_1_UnityEngine_EventSystems_EventTrigger_Entry__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3068, UnityEvent_1_UnityEngine_EventSystems_BaseEventData__Invoke__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3070, List_1_UnityEngine_EventSystems_EventTrigger_Entry__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3078, ExecuteEvents_ValidateEventData_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF30B0, List_1_UnityEngine_EventSystems_EventSystem__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF30C0, List_1_UnityEngine_EventSystems_EventSystem__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF30D0, List_1_UnityEngine_EventSystems_BaseInputModule___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF30E0, List_1_UnityEngine_EventSystems_EventSystem__Insert__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF30E8, List_1_UnityEngine_EventSystems_EventSystem__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF30F0, ExecuteEvents_Execute_32__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF30F8, List_1_UnityEngine_EventSystems_BaseInputModule__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3100, List_1_UnityEngine_EventSystems_BaseInputModule__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3108, List_1_UnityEngine_EventSystems_BaseInputModule__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3110, Component_GetComponents_13__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3128, ExecuteEvents_Execute_33__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3138, List_1_UnityEngine_EventSystems_BaseRaycaster__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3150, List_1_UnityEngine_EventSystems_BaseRaycaster__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF31D8, List_1_UnityEngine_EventSystems_EventSystem__IndexOf__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF31E0, List_1_UnityEngine_EventSystems_EventSystem__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF31E8, List_1_UnityEngine_EventSystems_EventSystem__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3200, KeyboardEventBase_1_KeyUpEvent__GetPooled_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3238, CallbackEventHandler_RegisterCallback_30__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3248, CallbackEventHandler_RegisterCallback_31__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3250, CallbackEventHandler_UnregisterCallback_21__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3258, CallbackEventHandler_UnregisterCallback_22__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3260, PointerEventBase_1_PointerDownEvent__GetPooled_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3268, PointerEventBase_1_PointerUpEvent__GetPooled_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3270, PointerEventBase_1_PointerMoveEvent__GetPooled_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3278, PointerEventBase_1_PointerCancelEvent__GetPooled_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF35B8, GameObject_AddComponent_76__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF36B0, List_1_WinEndingController_PlayerPrefab__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF36C0, List_1_WinEndingController_PlayerPrefab__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF36E0, List_1_WinEndingController_PlayerPrefab___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3740, List_1_WinEndingController_PlayerPrefab__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3758, List_1_WinEndingController_PlayerPrefab__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3760, GameObject_GetComponent_102__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF38B0, Component_GetComponent_96__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3950, Enumerable_Where_41__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3A00, Enumerable_Where_42__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3A40, Enumerable_Where_43__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3A90, Enumerable_Where_44__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3AD0, Enumerable_Where_45__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3B40, GameObject_GetComponentsInChildren_17__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3B98, GameObject_GetComponent_103__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3BD0, Object_1_FindAnyObjectByType_13__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3BE8, Enumerable_OrderBy_17__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3C00, GameObject_GetComponent_104__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3C30, List_1_AsylumWinEndingController_PlayerPrefab__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3C40, List_1_AsylumWinEndingController_PlayerPrefab__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3C50, List_1_AsylumWinEndingController_PlayerPrefab___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3C70, List_1_AsylumWinEndingController_PlayerPrefab__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3C80, List_1_AsylumWinEndingController_PlayerPrefab__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3D58, GameObject_GetComponent_105__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3D70, Enumerable_First_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3E50, ReadOnlyCollection_1_Rewired_Data_Mapping_ControllerMap_Editor___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3E60, ReadOnlyCollection_1_Rewired_InputAction___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3E68, ReadOnlyCollection_1_Rewired_Data_Player_Editor___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3E70, ReadOnlyCollection_1_Rewired_InputLayout___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3E78, ReadOnlyCollection_1_Rewired_InputCategory___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3E80, ReadOnlyCollection_1_Rewired_Data_ControllerMapLayoutManager_RuleSet_Editor___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3E88, ReadOnlyCollection_1_Rewired_InputBehavior___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3E90, ReadOnlyCollection_1_Rewired_InputMapCategory___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3E98, ReadOnlyCollection_1_Rewired_Data_ControllerMapEnabler_RuleSet_Editor___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3EC8, List_1_Rewired_Data_Mapping_ControllerMap_Editor__Sort__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3EE0, ListTools_ShallowCopy_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3F10, ListTools_OffsetAtIndex_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3F20, List_1_Rewired_Data_ControllerMapEnabler_RuleSet_Editor__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3F28, List_1_Rewired_Data_ControllerMapEnabler_RuleSet_Editor__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3F30, List_1_Rewired_Data_ControllerMapEnabler_RuleSet_Editor__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3F40, List_1_Rewired_Data_ControllerMapEnabler_RuleSet_Editor__Insert__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3F48, List_1_Rewired_Data_ControllerMapEnabler_RuleSet_Editor__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3F50, List_1_Rewired_Data_ControllerMapLayoutManager_RuleSet_Editor__Insert__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3F58, List_1_Rewired_Data_ControllerMapLayoutManager_RuleSet_Editor__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3F60, List_1_Rewired_Data_ControllerMapLayoutManager_RuleSet_Editor__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3F70, ListTools_OffsetAtIndex_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3F80, List_1_Rewired_Data_Player_Editor_RuleSetMapping__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3F88, List_1_Rewired_Data_ControllerMapLayoutManager_RuleSet_Editor__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3F90, List_1_Rewired_Data_ControllerMapLayoutManager_RuleSet_Editor__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3FA8, ListTools_OffsetAtIndex_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3FB0, List_1_Rewired_Data_CustomController_Editor__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3FC0, List_1_Rewired_Data_CustomController_Editor__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3FE8, List_1_Rewired_Data_CustomController_Editor__Insert__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3FF0, List_1_Rewired_Data_CustomController_Editor__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF3FF8, List_1_Rewired_Data_CustomController_Editor__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4070, List_1_Rewired_Data_Mapping_ControllerMap_Editor__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF40E8, ListTools_OffsetAtIndex_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4100, List_1_Rewired_InputLayout__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4108, List_1_Rewired_InputLayout__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4110, List_1_Rewired_InputLayout__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4120, List_1_Rewired_InputLayout__Insert__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4178, ListTools_OffsetAtIndex_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF42D0, List_1_Rewired_InputMapCategory__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF42E0, List_1_Rewired_InputMapCategory__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4300, List_1_Rewired_Data_Mapping_ControllerMap_Editor__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4320, List_1_Rewired_InputMapCategory__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4348, List_1_Rewired_InputMapCategory__Insert__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4418, ListTools_OffsetAtIndex_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4448, List_1_Rewired_InputBehavior__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4478, List_1_Rewired_InputBehavior__Insert__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4498, IntegratedSubsystemDescriptor_1_UnityEngine_XR_XRInputSubsystem___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF44A0, ListTools_OffsetAtIndex_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF44A8, IntegratedSubsystem_1_UnityEngine_XR_XRInputSubsystemDescriptor___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF44B0, List_1_Rewired_InputCategory__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF44D0, List_1_Rewired_InputCategory__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF44E8, List_1_Rewired_InputCategory__Insert__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF44F0, List_1_Rewired_InputCategory__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4500, IntegratedSubsystemDescriptor_1_UnityEngine_XR_XRMeshSubsystem___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4510, IntegratedSubsystem_1_UnityEngine_XR_XRMeshSubsystemDescriptor___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4520, IntegratedSubsystem_1_UnityEngine_XR_XRDisplaySubsystemDescriptor___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4530, IntegratedSubsystemDescriptor_1_UnityEngine_XR_XRDisplaySubsystem___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4558, List_1_Rewired_InputAction__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF45B8, List_1_Rewired_InputAction__Insert__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4618, List_1_Rewired_Data_Player_Editor__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4650, ListTools_OffsetAtIndex_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4700, List_1_Rewired_Data_Mapping_ControllerMap_Editor__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4710, List_1_Rewired_Data_Mapping_ControllerMap_Editor__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4720, List_1_Rewired_KeyboardMap__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4728, List_1_Rewired_KeyboardMap___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4740, List_1_Rewired_InputBehavior__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4748, InputFeatureUsage_1_InputTrackingState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4758, List_1_Rewired_InputBehavior__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4760, List_1_Rewired_InputAction__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4778, List_1_Rewired_Data_Player_Editor__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF47A8, List_1_Rewired_Data_Player_Editor__Insert__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF47C8, List_1_Rewired_Data_Player_Editor__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4808, List_1_Rewired_MouseMap__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4818, List_1_Rewired_MouseMap___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4830, List_1_Rewired_InputAction___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4840, List_1_Rewired_InputCategory___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4848, List_1_Rewired_InputBehavior___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4850, List_1_Rewired_Data_ControllerMapLayoutManager_RuleSet_Editor___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4858, List_1_Rewired_Data_CustomController_Editor___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4860, List_1_Rewired_Data_ControllerMapEnabler_RuleSet_Editor___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4868, List_1_Rewired_Data_Player_Editor___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4870, List_1_Rewired_InputMapCategory___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4878, List_1_Rewired_InputLayout___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4880, List_1_Rewired_InputLayout__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4888, List_1_Rewired_Data_Mapping_ControllerMap_Editor___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4890, List_1_Rewired_InputCategory__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4898, List_1_Rewired_Data_Player_Editor__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF48A0, List_1_Rewired_InputAction__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF48A8, List_1_Rewired_InputAction__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4928, List_1_Rewired_InputMapCategory__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4930, List_1_Rewired_InputBehavior__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF49A8, List_1_Rewired_Data_Player_Editor_RuleSetMapping__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF49B0, List_1_Rewired_Data_Player_Editor_RuleSetMapping__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF49B8, List_1_XXNesqlLzdVyNWEawBsQGxYGjphX__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF49C0, List_1_XXNesqlLzdVyNWEawBsQGxYGjphX___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF49C8, List_1_XXNesqlLzdVyNWEawBsQGxYGjphX__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF49E0, MiscTools_DeepClone_26__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4A00, MiscTools_DeepClone_27__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4A08, List_1_Rewired_Data_Player_Editor_Mapping__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4A10, MiscTools_DeepClone_28__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4A18, List_1_Rewired_Data_Player_Editor_CreateControllerInfo__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4A20, List_1_Rewired_Data_Player_Editor_CreateControllerInfo__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4A28, List_1_Rewired_Data_Player_Editor_CreateControllerInfo__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4A30, List_1_Rewired_Data_Player_Editor_Mapping__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4A40, List_1_Rewired_Data_Player_Editor_Mapping__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4A50, List_1_Rewired_Data_Player_Editor_RuleSetMapping___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4A80, MiscTools_DeepClone_29__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4AA8, List_1_Rewired_Data_Player_Editor_Mapping___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4AB0, List_1_Rewired_Data_Player_Editor_CreateControllerInfo___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4AD0, CustomController_Editor_LrpaQemiFqjAqmcSpRyEEJtfSKGR_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4AE0, ListTools_OffsetAtIndex_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4AE8, ListTools_OffsetAtIndex_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4AF0, CustomController_Editor_DeleteElement_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4B00, CustomController_Editor_DeleteElement_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4B10, List_1_Rewired_Data_CustomController_Editor_Button__Insert__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4B38, List_1_Rewired_ControllerElementIdentifier__Insert__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4B40, CustomController_Editor_LrpaQemiFqjAqmcSpRyEEJtfSKGR_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4B50, ListTools_Combine_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4B60, List_1_Rewired_Data_CustomController_Editor_Axis__Insert__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4B78, List_1_Rewired_Data_CustomController_Editor_Button__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4B80, List_1_Rewired_Data_CustomController_Editor_Button___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4B90, List_1_Rewired_Data_CustomController_Editor_Axis__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4BA8, List_1_Rewired_ControllerElementIdentifier___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4BB8, List_1_Rewired_Data_CustomController_Editor_Axis___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4BC0, List_1_Rewired_Data_CustomController_Editor_Button___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4BD8, ListTools_Combine_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4BE8, List_1_Rewired_Data_CustomController_Editor_Axis___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4BF8, List_1_Rewired_Data_CustomController_Editor_Axis__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4C00, List_1_Rewired_Data_CustomController_Editor_Button__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4C10, ArrayTools_IsNullOrEmpty_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4C18, ArrayTools_IsNullOrEmpty_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4E80, Collection_1_System_String___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4E88, List_1_System_Diagnostics_Process__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4EA0, List_1_System_Diagnostics_Process__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4EA8, List_1_System_Diagnostics_Process___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4EC8, Array_Resize_140__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF4F18, Collection_1_System_String__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF54E8, Dictionary_2_UnityEngine_Vector3Int_System_String__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5510, Dictionary_2_UnityEngine_Vector3Int_System_String__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5518, Dictionary_2_UnityEngine_Vector3Int_System_String__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5528, Dictionary_2_UnityEngine_Vector3Int_System_String__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5540, List_1_UnityEngine_UI_Image___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5548, Dictionary_2_NolanBehaviour_UnityEngine_GameObject___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF55C0, Dictionary_2_UnityEngine_Vector3Int_System_String___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF55E8, List_1_UnityEngine_UI_Image__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5608, List_1_UnityEngine_UI_Image__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5618, Component_GetComponent_97__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5620, List_1_UnityEngine_UI_Image__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5758, List_1_System_WeakReference__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5780, List_1_System_WeakReference__AddRange__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5788, List_1_System_WeakReference__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5790, List_1_System_WeakReference___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5798, List_1_System_WeakReference__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF57A0, List_1_System_WeakReference__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF57B0, List_1_System_WeakReference__TrimExcess__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5808, List_1_System_WeakReference___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5930, KeyValuePair_2_NolanBehaviour_UnityEngine_GameObject__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5938, Dictionary_2_TKey_TValue_Enumerator_NolanBehaviour_UnityEngine_GameObject__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5940, Dictionary_2_TKey_TValue_Enumerator_NolanBehaviour_UnityEngine_GameObject__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5950, Dictionary_2_NolanBehaviour_UnityEngine_GameObject__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5958, Dictionary_2_TKey_TValue_Enumerator_NolanBehaviour_UnityEngine_GameObject__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5998, Dictionary_2_NolanBehaviour_UnityEngine_GameObject__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF59A8, Dictionary_2_NolanBehaviour_UnityEngine_GameObject__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF59B0, Dictionary_2_NolanBehaviour_UnityEngine_GameObject__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5A00, GameObject_GetComponent_106__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5A18, Dictionary_2_NolanBehaviour_UnityEngine_GameObject__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5A90, Component_GetComponentsInChildren_36__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5AC8, Component_GetComponent_98__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5B30, Component_GetComponent_99__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5B38, Component_GetComponent_100__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5B40, GameObject_GetComponent_107__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5B50, Array_IndexOf_256__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5B80, GameObject_GetComponent_108__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5BF0, ExtentionMethods_GetOrAddComponent_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5BF8, Component_GetComponent_101__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5C08, Component_GetComponent_102__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5C20, GameObject_GetComponent_109__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5C60, List_1_UnityEngine_UI_Extensions_ReorderableListElement___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5C70, List_1_UnityEngine_Transform__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5C78, List_1_UnityEngine_UI_Extensions_ReorderableListElement__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5C80, GameObject_AddComponent_77__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5C90, List_1_UnityEngine_UI_Extensions_ReorderableListElement__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5CD8, Object_1_FindObjectsOfType_13__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5D38, ExtentionMethods_GetOrAddComponent_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5D98, GameObject_GetComponent_110__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5DB0, RangeSlider_SetClass_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5DB8, Component_GetComponent_103__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5DF0, List_1_UnityEngine_ParticleSystem__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5E08, UnityEvent_1_UnityEngine_EventSystems_PointerEventData_InputButton__Invoke__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5E10, Component_GetComponent_104__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5E18, UnityEvent_1_UnityEngine_EventSystems_PointerEventData_InputButton___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5E48, List_1_ShakeObject___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5E60, Dictionary_2_UnityEngine_Rigidbody_UnityEngine_Vector3___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5E88, List_1_ShakeObject__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5E90, List_1_T_Enumerator_ShakeObject__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5E98, List_1_UnityEngine_UI_Extensions_DropDownListItem__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5EA0, List_1_T_Enumerator_ShakeObject__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5EA8, List_1_UnityEngine_UI_Extensions_DropDownListButton__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5EB0, List_1_UnityEngine_UI_Extensions_DropDownListItem__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5EB8, List_1_T_Enumerator_ShakeObject__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5EC0, List_1_UnityEngine_UI_Extensions_DropDownListButton__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5EC8, List_1_ShakeObject__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5ED0, List_1_UnityEngine_UI_Extensions_DropDownListButton__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5ED8, List_1_ShakeObject__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5EE0, Dictionary_2_UnityEngine_Rigidbody_UnityEngine_Vector3__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5EE8, Dictionary_2_UnityEngine_Rigidbody_UnityEngine_Vector3__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5EF0, Dictionary_2_UnityEngine_Rigidbody_UnityEngine_Vector3__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5EF8, KeyValuePair_2_UnityEngine_Rigidbody_UnityEngine_Vector3__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5F00, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Rigidbody_UnityEngine_Vector3__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5F08, KeyValuePair_2_UnityEngine_Rigidbody_UnityEngine_Vector3__get_Key__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5F18, Dictionary_2_UnityEngine_Rigidbody_UnityEngine_Vector3__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5F28, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Rigidbody_UnityEngine_Vector3__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5F30, Object_1_FindObjectsByType_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5F38, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Rigidbody_UnityEngine_Vector3__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5F70, List_1_UnityEngine_UI_Extensions_DropDownListButton___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5F88, List_1_UnityEngine_UI_Extensions_DropDownListItem__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5F90, List_1_T_Enumerator_NightmareLightData__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5F98, List_1_NightmareLightData__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5FA0, List_1_T_Enumerator_NightmareLightData__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5FA8, List_1_UnityEngine_UI_Extensions_DropDownListItem__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5FB0, List_1_T_Enumerator_NightmareLightData__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5FB8, List_1_UnityEngine_UI_Extensions_DropDownListItem___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5FC0, List_1_UnityEngine_UI_Extensions_DropDownListItem__AddRange__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF5FC8, List_1_UnityEngine_UI_Extensions_DropDownListItem__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6008, Dictionary_2_System_String_UnityEngine_GameObject__get_Values__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6010, Dictionary_2_System_String_UnityEngine_GameObject__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6020, Dictionary_2_System_String_UnityEngine_GameObject__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6028, Dictionary_2_System_String_UnityEngine_GameObject__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6038, Component_GetComponent_105__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6070, Component_GetComponent_106__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6080, Component_GetComponent_107__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF60E0, Dictionary_2_System_String_UnityEngine_GameObject___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6140, BoxSlider_SetClass_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6208, Component_GetComponent_108__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6210, Component_GetComponent_109__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6218, GameObject_GetComponentInParent_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6228, GameObject_GetComponent_111__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6268, List_1_UnityEngine_UI_ExtensionsToggle__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6278, List_1_UnityEngine_UI_ExtensionsToggle__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF62A0, List_1_UnityEngine_UI_ExtensionsToggle__Find__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF62C8, Enumerable_Where_46__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6300, List_1_UnityEngine_GameObject__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6308, GameObject_GetComponentInParent_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6310, List_1_UnityEngine_GameObject__IndexOf__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6318, UnityEvent_1_UnityEngine_UI_ExtensionsToggle__Invoke__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6330, SchedulerBase_Schedule_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6338, List_1_UnityEngine_UI_ExtensionsToggle___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6340, Component_GetComponentInParent_17__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6358, Component_GetComponentInParent_18__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6360, UnityEvent_1_UnityEngine_UI_ExtensionsToggle___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6368, List_1_UnityEngine_UI_ExtensionsToggle__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6370, EntityEventListener_1_IDoorNumberState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6378, List_1_UnityEngine_UI_ExtensionsToggle__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6390, List_1_UnityEngine_UI_ExtensionsToggle__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF63D0, Dictionary_2_Photon_Bolt_BoltEntity_System_Int32___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF63E0, KeyValuePair_2_Photon_Bolt_BoltEntity_System_Int32__get_Key__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF63E8, KeyValuePair_2_Photon_Bolt_BoltEntity_System_Int32__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF63F0, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_BoltEntity_System_Int32__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF63F8, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_BoltEntity_System_Int32__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6400, Dictionary_2_Photon_Bolt_BoltEntity_System_Int32__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6408, Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_BoltEntity_System_Int32__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6418, GameObject_GetComponent_112__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6428, Dictionary_2_Photon_Bolt_BoltEntity_System_Int32__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6430, Dictionary_2_Photon_Bolt_BoltEntity_System_Int32__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6438, Dictionary_2_Photon_Bolt_BoltEntity_System_Int32__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6450, GameObject_AddComponent_78__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6480, BoltPlayer_1_Photon_Bolt_IPlayerState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF66B0, HardwareJoystickMap_GetUniversalDefaultMap_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF66B8, HardwareJoystickMap_TryGetFirstValidMap_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF66C0, HardwareJoystickMap_TryGetFirstValidMap_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF66C8, HardwareJoystickMap_GetUniversalDefaultMap_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF66D0, HardwareJoystickMap_TryGetFirstMatchingMap_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6700, MiscTools_DeepClone_30__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6730, ArrayTools_ShallowCopy_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6738, MiscTools_DeepClone_31__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6740, MiscTools_DeepClone_32__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6748, MiscTools_DeepClone_33__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6750, MiscTools_DeepClone_34__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6758, MiscTools_DeepClone_35__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6760, MiscTools_DeepClone_36__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6768, MiscTools_DeepClone_37__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6770, MiscTools_DeepClone_38__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6778, MiscTools_DeepClone_39__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6780, MiscTools_DeepClone_40__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6788, MiscTools_DeepClone_41__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6790, MiscTools_DeepClone_42__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6798, MiscTools_DeepClone_43__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF67A0, MiscTools_DeepClone_44__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF67A8, MiscTools_DeepClone_45__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF67B0, MiscTools_DeepClone_46__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6878, List_1_Rewired_Data_Mapping_ActionCategoryMap_Entry___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6898, List_1_Rewired_Data_Mapping_ActionCategoryMap_Entry__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF68A8, List_1_Rewired_Data_Mapping_ActionCategoryMap_Entry__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF68B0, List_1_Rewired_Data_Mapping_ActionCategoryMap_Entry__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF68B8, List_1_Rewired_Data_Mapping_ActionCategoryMap_Entry__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF68C0, List_1_Rewired_Data_Mapping_ActionCategoryMap_Entry___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF68C8, List_1_Rewired_Data_Mapping_ActionCategoryMap_Entry__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF68E0, List_1_Rewired_ControllerMapLayoutManager_Rule__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF68E8, List_1_Rewired_ControllerMapLayoutManager_Rule___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF68F0, MiscTools_DeepClone_47__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6900, List_1_Rewired_Data_ControllerMapLayoutManager_Rule_Editor___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6940, List_1_Rewired_ControllerMapEnabler_Rule__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6948, List_1_Rewired_ControllerMapEnabler_Rule___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6950, MiscTools_DeepClone_48__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6960, List_1_Rewired_Data_ControllerMapEnabler_Rule_Editor___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6990, MiscTools_DeepClone_49__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6A10, List_1_Rewired_Data_Player_Editor_Mapping__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6A48, List_1_Rewired_InputLayout__FindIndex__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6B28, JsonTools_Clone_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6B88, JsonTools_Clone_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6BA0, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_mgaeNlBrOrbQfQxfnbzpJqktZmPVA_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6BC0, List_1_Rewired_ActionElementMap__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6BD0, JsonTools_Clone_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6BD8, List_1_Rewired_Data_Player_Editor_RuleSetMapping__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6C30, List_1_Rewired_Data_ControllerMapEnabler_Rule_Editor__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6C38, List_1_Rewired_Data_ControllerMapEnabler_Rule_Editor__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6C90, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_mgaeNlBrOrbQfQxfnbzpJqktZmPVA_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6C98, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_mgaeNlBrOrbQfQxfnbzpJqktZmPVA_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6CB0, List_1_Rewired_Data_Player_Editor_Mapping__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6CB8, List_1_Rewired_Data_Player_Editor_CreateControllerInfo__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6CC8, JsonTools_Clone_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6CD0, JsonTools_Clone_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6CD8, JsonTools_Clone_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6CE0, JsonTools_Clone_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6D10, List_1_Rewired_Data_ControllerMapLayoutManager_Rule_Editor__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6D28, List_1_Rewired_Data_ControllerMapLayoutManager_Rule_Editor__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6D38, JsonTools_Clone_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6DA0, JsonTools_Clone_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF6DA8, JsonTools_Clone_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7028, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_NGtTjQgYbQdvKgaaxDirujApcpoO_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7030, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_NGtTjQgYbQdvKgaaxDirujApcpoO_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7038, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_NGtTjQgYbQdvKgaaxDirujApcpoO_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7040, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_NGtTjQgYbQdvKgaaxDirujApcpoO_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7148, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_NGtTjQgYbQdvKgaaxDirujApcpoO_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7150, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_NGtTjQgYbQdvKgaaxDirujApcpoO_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7158, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_NGtTjQgYbQdvKgaaxDirujApcpoO_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7160, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_NGtTjQgYbQdvKgaaxDirujApcpoO_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7168, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_NGtTjQgYbQdvKgaaxDirujApcpoO_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7170, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_NGtTjQgYbQdvKgaaxDirujApcpoO_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7198, JsonTools_Clone_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF71A0, List_1_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wzRiUTIKuqxDCQYCeJSGjaGZezQK___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF71B0, JsonTools_Clone_12__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7330, GameObject_AddComponent_79__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7358, UnityEvent_1_UnityEngine_EventSystems_BaseEventData__AddListener__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7388, List_1_UnityEngine_UI_Extensions_TextPic_HrefInfo___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF73A8, ExtentionMethods_GetOrAddComponent_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF73B0, ExtentionMethods_GetOrAddComponent_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF73F0, List_1_UnityEngine_EventSystems_EventTrigger_Entry__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF73F8, List_1_UnityEngine_EventSystems_EventTrigger_Entry__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7420, List_1_UnityEngine_UI_Extensions_TextPic_HrefInfo__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7448, UnityEvent_1_System_String__RemoveListener__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7460, Component_GetComponentInParent_19__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7488, List_1_UnityEngine_UI_Image__RemoveAll__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7498, Component_GetComponentsInChildren_37__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF74A0, List_1_UnityEngine_UI_Extensions_TextPic_HrefInfo__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF74A8, List_1_UnityEngine_UI_Extensions_TextPic_HrefInfo__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF74B8, List_1_UnityEngine_UI_Extensions_TextPic_HrefInfo__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF74C0, UnityEvent_1_UnityEngine_UI_Extensions_IBoxSelectable__Invoke__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF74D0, UnityEvent_1_UnityEngine_UI_Extensions_IBoxSelectable___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF74F0, Component_GetComponent_110__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7510, List_1_UnityEngine_MonoBehaviour___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7520, List_1_UnityEngine_MonoBehaviour__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7528, List_1_UnityEngine_MonoBehaviour__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7538, Object_1_FindObjectsOfType_14__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7540, List_1_UnityEngine_UI_Extensions_IBoxSelectable__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7548, List_1_UnityEngine_UI_Extensions_IBoxSelectable___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7550, List_1_UnityEngine_UI_Extensions_IBoxSelectable__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF79D0, EntityEventListener_1_IInnMazeState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF79E8, List_1_InnHoleController__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF79F0, PostProcessProfile_GetSetting_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF79F8, List_1_InnHoleController__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7A08, Object_1_FindAnyObjectByType_14__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7A18, List_1_InnMazeBlocker__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7A28, List_1_InnMazeBlocker___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7A30, List_1_InnMazeBlocker__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7A38, List_1_InnMazeBlocker__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7A50, List_1_InnMazeBlocker__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7A58, Dictionary_2_System_Int32_List_1_InnMazeBlocker___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7A60, Dictionary_2_System_Int32_List_1_InnMazeBlocker__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7A68, Component_GetComponentsInChildren_38__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7A70, Dictionary_2_System_Int32_List_1_InnMazeBlocker__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7A80, Object_1_Instantiate_20__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7A88, Component_GetComponentsInChildren_39__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7A90, List_1_InitialGoatSpawn___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7AA0, List_1_InnShrineController___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7AE8, List_1_UnityEngine_Transform___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7AF8, List_1_InitialGoatSpawn__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7B00, List_1_InitialGoatSpawn___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7B08, List_1_InitialGoatSpawn__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7B10, List_1_InnShrineController__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7B20, IListExtensions_Shuffle_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7B48, List_1_T_Enumerator_InitialGoatSpawn__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7B50, List_1_T_Enumerator_InitialGoatSpawn__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7B58, Enumerable_Select_71__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7B60, Enumerable_Take_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7B68, Enumerable_Select_72__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7B70, Enumerable_Select_73__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7B78, Enumerable_Concat_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7B80, Enumerable_Except_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7B88, Object_1_FindObjectsByType_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7B90, List_1_T_Enumerator_InitialGoatSpawn__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7B98, List_1_InnMazeController__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7BA8, List_1_InnMazeController___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7BB0, List_1_InnMazeController__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7BB8, List_1_T_Enumerator_InnSymbol__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7BC0, List_1_InnSymbol__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7BC8, List_1_T_Enumerator_InnSymbol__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7BD0, List_1_T_Enumerator_InnSymbol__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7BE0, List_1_InnMazeController__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7BE8, Component_GetComponent_111__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7BF8, Object_1_FindObjectsByType_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7C08, List_1_InnHoleController___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7C20, List_1_InnHoleController__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7C28, List_1_T_Enumerator_InnHoleController__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7C30, List_1_T_Enumerator_InnHoleController__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7C40, List_1_T_Enumerator_InnHoleController__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7C70, EntityEventListener_1_IInnFountainState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7C90, EntityEventListenerBase_1_Photon_Bolt_IInnFountainState__get_state__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7CD8, List_1_IngameStatsTracker_StatsPlayer__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7CE0, List_1_IngameStatsTracker_StatsPlayer__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7CF8, List_1_IngameStatsTracker_StatsPlayer__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7D00, List_1_IngameStatsTracker_StatsPlayer__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7D08, List_1_T_Enumerator_IngameStatsTracker_StatsPlayer__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7D10, List_1_T_Enumerator_IngameStatsTracker_StatsPlayer__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7D18, List_1_T_Enumerator_IngameStatsTracker_StatsPlayer__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7D28, List_1_IngameStatsTracker_StatsPlayer___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7D68, GameObject_AddComponent_80__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7D78, Component_GetComponent_112__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7D80, EntityEventListener_1_IHidingSpotState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7D88, EventHandler_1_UnregisterEvent_53__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7DC0, EventHandler_1_RegisterEvent_55__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF7DF8, Component_GetComponent_113__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF8230, List_1_System_Security_Cryptography_X509Certificates_X509CertificateImpl__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF8330, List_1_T_Enumerator_System_Security_Cryptography_X509Certificates_X509CertificateImpl__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF8348, List_1_System_Security_Cryptography_X509Certificates_X509CertificateImpl___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF8370, List_1_System_Security_Cryptography_X509Certificates_X509CertificateImpl__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF8378, List_1_T_Enumerator_System_Security_Cryptography_X509Certificates_X509CertificateImpl__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF8380, List_1_System_Security_Cryptography_X509Certificates_X509CertificateImpl__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF8388, List_1_T_Enumerator_System_Security_Cryptography_X509Certificates_X509CertificateImpl__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF8390, List_1_System_Security_Cryptography_X509Certificates_X509CertificateImpl__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF8398, List_1_System_Security_Cryptography_X509Certificates_X509CertificateImpl__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF8458, LayoutGroup_SetProperty_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF8558, List_1_UnityEngine_RectTransform__Insert__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF86C8, Component_GetComponent_114__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF86D0, Component_GetComponent_115__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF8758, Component_GetComponent_116__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF8818, GameObject_AddComponent_81__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF8828, GameObject_GetComponent_113__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF8840, Component_GetComponent_117__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF8880, List_1_System_Byte__2_Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF88D8, List_1_System_Byte__2__ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF88E0, Component_GetComponent_118__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF8970, List_1_System_Security_Cryptography_Oid___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF8980, List_1_System_Security_Cryptography_Oid__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF8988, List_1_System_Security_Cryptography_Oid__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF89A8, List_1_System_Security_Cryptography_Oid__CopyTo__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF89B8, List_1_System_Security_Cryptography_Oid__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF89C0, List_1_T_Enumerator_System_Security_Cryptography_Oid__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF89C8, List_1_System_Security_Cryptography_Oid__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF89D0, List_1_T_Enumerator_System_Security_Cryptography_Oid__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF89D8, List_1_T_Enumerator_System_Security_Cryptography_Oid__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF89E0, List_1_System_Security_Cryptography_AsnEncodedData__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF8A08, List_1_System_Security_Cryptography_AsnEncodedData__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF8A40, List_1_System_Security_Cryptography_AsnEncodedData__CopyTo__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF8A78, LazyInitializer_EnsureInitialized_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF8A90, List_1_System_Security_Cryptography_AsnEncodedData___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF8AA0, List_1_System_Security_Cryptography_AsnEncodedData__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF8AA8, List_1_System_Security_Cryptography_AsnEncodedData__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF8AE8, LazyInitializer_EnsureInitialized_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF8B50, Array_Sort_256__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF8D68, ArrayTools_DeepClone_15__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF8D70, ArrayTools_DeepClone_16__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF8D88, MiscTools_DeepClone_50__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF8DD0, MiscTools_DeepClone_51__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF8E10, ArrayTools_DeepClone_17__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF8E20, ArrayTools_DeepClone_18__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF8E98, MiscTools_DeepClone_52__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF8EF0, MiscTools_DeepClone_53__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF8F08, MiscTools_DeepClone_54__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF8F10, MiscTools_DeepClone_55__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF8F20, ArrayTools_DeepClone_19__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF8F30, ArrayTools_DeepClone_20__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF8F60, List_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_OSX_Base_Axis___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF8F68, List_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_OSX_Base_Axis__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF8F78, List_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_OSX_Base_Axis__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9040, ArrayTools_DeepClone_21__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9058, ArrayTools_DeepClone_22__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9080, MiscTools_DeepClone_56__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9148, ArrayTools_ShallowCopy_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9160, MiscTools_DeepClone_57__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9168, MiscTools_DeepClone_58__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF91F8, ArrayTools_DeepClone_23__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9200, ArrayTools_DeepClone_24__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9228, MiscTools_DeepClone_59__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9308, MiscTools_DeepClone_60__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9360, ArrayTools_DeepClone_25__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9380, ArrayTools_DeepClone_26__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF93C0, MiscTools_DeepClone_61__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9400, MiscTools_DeepClone_62__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9418, MiscTools_DeepClone_63__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9490, MiscTools_DeepClone_64__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF94C8, MiscTools_DeepClone_65__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF94D8, MiscTools_DeepClone_66__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF94F0, ArrayTools_DeepClone_27__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF95A8, Dictionary_2_System_Int32_Rewired_Data_Mapping_AxisCalibrationInfo___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF95D0, Dictionary_2_System_Int32_Rewired_Data_Mapping_AxisCalibrationInfo__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF95D8, Dictionary_2_System_Int32_Rewired_Data_Mapping_AxisCalibrationInfo__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9608, MiscTools_DeepClone_67__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9628, ArrayTools_ShallowCopy_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9670, MiscTools_DeepClone_68__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9688, SetPropertyUtility_1_SetClass_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9700, List_1_UnityEngine_Vector2__1_GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9758, MiscTools_DeepClone_69__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9800, List_1_UnityEngine_UIVertex__2_get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9810, List_1_UnityEngine_UIVertex__2__ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9818, List_1_UnityEngine_UIVertex__2_get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9828, List_1_UnityEngine_Vector2__1_get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9830, List_1_UnityEngine_Vector2__1_get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9838, List_1_T_Enumerator_UnityEngine_Vector2__1_MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9840, List_1_T_Enumerator_UnityEngine_Vector2__1_get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9858, List_1_T_Enumerator_UnityEngine_Vector2__1_Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9890, Stack_1_UnityEngine_UI_Extensions_Menu___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF98A0, Stack_1_UnityEngine_UI_Extensions_Menu__Pop__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF98A8, GameObject_GetComponent_114__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF98B8, List_1_UnityEngine_UIVertex__2_Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF98C8, Stack_1_T_Enumerator_UnityEngine_UI_Extensions_Menu__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF98D8, Stack_1_UnityEngine_UI_Extensions_Menu__Push__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF98E0, Stack_1_UnityEngine_UI_Extensions_Menu__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF98E8, Stack_1_UnityEngine_UI_Extensions_Menu__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF98F0, Stack_1_UnityEngine_UI_Extensions_Menu__Peek__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF98F8, Stack_1_T_Enumerator_UnityEngine_UI_Extensions_Menu__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9900, Stack_1_T_Enumerator_UnityEngine_UI_Extensions_Menu__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9940, LayoutGroup_SetProperty_12__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9948, LayoutGroup_SetProperty_13__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9998, ExtentionMethods_GetOrAddComponent_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF99C0, Component_GetComponent_119__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF99C8, GameObject_AddComponent_82__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9B18, Dictionary_2_UnityEngine_Light_System_Single___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9B20, Dictionary_2_UnityEngine_Light_System_Single__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9B38, Dictionary_2_UnityEngine_Light_System_Single__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9B40, GameObject_GetComponentsInChildren_18__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9B48, Component_GetComponent_120__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9B70, EntityEventListener_1_IMapState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9B98, EntityEventListener_1_IPlaceObjectState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9BE0, EntityEventListener_1_IManorSpiritState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9C10, GameObject_GetComponentInChildren_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9C18, Component_GetComponent_121__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9C78, EntityEventListenerBase_1_Photon_Bolt_IManorSpiritState__get_state__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9CB8, Component_GetComponent_122__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9CD8, EntityEventListener_1_IManorMirrorState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9D30, EntityEventListenerBase_1_Photon_Bolt_IManorMirrorState__get_state__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9D48, Component_GetComponentsInChildren_40__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9D60, List_1_ManorSpiritController___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9D88, List_1_ManorMirrorController___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9D90, Dictionary_2_ManorSpirit_InitialGoatSpawn___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9DA0, List_1_ManorSpiritController__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9DA8, List_1_T_Enumerator_ManorSpiritController__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9DB0, List_1_T_Enumerator_ManorSpiritController__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9DD8, List_1_T_Enumerator_ManorSpiritController__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9E18, List_1_ManorSpirit___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9E38, GameObject_GetComponent_115__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9E40, List_1_ManorMirrorController__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9E48, Component_GetComponent_123__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9E50, Enumerable_FirstOrDefault_20__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9E58, List_1_ManorSpiritController__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9E60, List_1_ManorSpiritController__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9E68, KeyValuePair_2_ManorSpirit_InitialGoatSpawn__get_Key__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9E70, KeyValuePair_2_ManorSpirit_InitialGoatSpawn__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9E78, Dictionary_2_ManorSpirit_InitialGoatSpawn__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9E80, Enumerable_First_12__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9E88, List_1_ManorMirrorController__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9EA8, List_1_ManorLocation__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9EB0, List_1_ManorSpirit__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9EB8, List_1_ManorLocation__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9EC0, List_1_ManorSpirit__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9EC8, IListExtensions_Shuffle_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9ED0, IListExtensions_Shuffle_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9ED8, Dictionary_2_ManorSpirit_InitialGoatSpawn__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9EE0, Enumerable_First_13__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9F10, KeyValuePair_2_UnityEngine_GameObject_UnityEngine_GameObject__get_Key__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9F18, KeyValuePair_2_UnityEngine_GameObject_UnityEngine_GameObject__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9F28, Dictionary_2_UnityEngine_GameObject_UnityEngine_GameObject___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9F38, Dictionary_2_UnityEngine_GameObject_UnityEngine_GameObject__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9F40, Dictionary_2_UnityEngine_GameObject_UnityEngine_GameObject__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9F48, Dictionary_2_UnityEngine_GameObject_UnityEngine_GameObject__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9F68, Enumerable_Where_47__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9F78, Enumerable_Select_74__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9F98, Enumerable_Select_75__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9FA8, Dictionary_2_UnityEngine_GameObject_UnityEngine_GameObject__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9FB8, Dictionary_2_UnityEngine_Light_UnityEngine_LightShadows___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9FC8, Dictionary_2_UnityEngine_Light_UnityEngine_LightShadows__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CF9FD0, Dictionary_2_UnityEngine_Light_UnityEngine_LightShadows__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFA008, GameObject_GetComponent_116__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFA010, Component_GetComponentsInChildren_41__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFA028, Component_GetComponent_124__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFA090, Component_GetComponent_125__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFA128, Dictionary_2_UnityEngine_MeshRenderer_UnityEngine_Vector3__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFA140, EntityEventListener_1_IInnWebState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFA158, Dictionary_2_UnityEngine_MeshRenderer_UnityEngine_Material___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFA160, Dictionary_2_UnityEngine_MeshRenderer_UnityEngine_Vector3___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFA168, Dictionary_2_UnityEngine_MeshRenderer_UnityEngine_Material__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFA190, EntityEventListenerBase_1_Photon_Bolt_IInnWebState__get_state__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFA1B8, Dictionary_2_UnityEngine_MeshRenderer_UnityEngine_Material__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFA1C0, Dictionary_2_UnityEngine_MeshRenderer_UnityEngine_Vector3__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFA200, EntityEventListener_1_IInnShrineState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFA350, Dictionary_2_System_String_System_Net_TrackingValidationObjectDictionary_ValidateAndParseValue__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFA358, Dictionary_2_System_String_System_Object__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFA410, BidirectionalDictionary_2_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode__TryGetForward__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFA420, BidirectionalDictionary_2_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode__TryGetBackward__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFA448, BidirectionalDictionary_2_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFA450, BidirectionalDictionary_2_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFA7B8, Marshal_SizeOf_20__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFA820, Marshal_SizeOf_21__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFA8C0, Marshal_SizeOf_22__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFA8C8, Marshal_SizeOf_23__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFA8D0, Marshal_PtrToStructure_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFAD30, Component_GetComponent_126__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFAD40, Component_GetComponent_127__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFAD58, Component_GetComponent_128__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFADA0, GameObject_GetComponentInParent_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFAE20, Dictionary_2_System_String_UnityEngine_Shader__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFAE28, Dictionary_2_System_String_UnityEngine_Shader__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFAE30, Dictionary_2_System_String_UnityEngine_Shader__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFAE40, Dictionary_2_System_String_UnityEngine_Shader___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFAE68, GameObject_GetComponentInChildren_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFAE78, Component_GetComponent_129__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFAEE8, ScrollRectEx_DoForParents_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFAF08, ScrollRectEx_DoForParents_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFAF20, ScrollRectEx_DoForParents_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFAF50, ScrollRectEx_DoForParents_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFAF70, ScrollRectEx_DoForParents_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFAF98, Component_GetComponent_130__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFAFA8, Component_GetComponents_14__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFAFB0, Component_GetComponents_15__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFAFB8, Component_GetComponents_16__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFAFF8, List_1_UnityEngine_UI_Toggle__IndexOf__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB010, Component_GetComponentsInChildren_42__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB018, Enumerable_ToList_35__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB090, Object_1_FindObjectOfType_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB098, Object_1_FindObjectOfType_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB0B0, Component_GetComponentInChildren_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB108, Component_GetComponent_131__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB138, Component_GetComponent_132__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB1C0, List_1_Pathfinding_IPathModifier__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB1D0, List_1_Pathfinding_IPathModifier__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB1D8, List_1_Pathfinding_IPathModifier__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB1E8, List_1_Pathfinding_IPathModifier__Sort__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB200, List_1_Pathfinding_IPathModifier__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB250, List_1_Pathfinding_IPathModifier___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB278, Queue_1_Pathfinding_TriangleMeshNode___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB280, Dictionary_2_Pathfinding_TriangleMeshNode_Pathfinding_TriangleMeshNode___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB2A0, JsonUtility_FromJson_22__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB328, Queue_1_Pathfinding_TriangleMeshNode__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB330, Queue_1_Pathfinding_TriangleMeshNode__Dequeue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB338, Queue_1_Pathfinding_TriangleMeshNode__Enqueue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB340, ListExtensions_ClearFast_14__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB348, List_1_Pathfinding_TriangleMeshNode__IndexOf__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB350, Dictionary_2_Pathfinding_TriangleMeshNode_Pathfinding_TriangleMeshNode__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB358, Dictionary_2_Pathfinding_TriangleMeshNode_Pathfinding_TriangleMeshNode__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB360, Dictionary_2_Pathfinding_TriangleMeshNode_Pathfinding_TriangleMeshNode__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB380, List_1_Pathfinding_TriangleMeshNode__RemoveRange__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB398, List_1_Pathfinding_TriangleMeshNode__InsertRange__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB3C0, List_1_Pathfinding_GraphNode__RemoveRange__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB3D8, List_1_Pathfinding_GraphNode__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB3E0, List_1_Pathfinding_GraphNode__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB3F0, List_1_Pathfinding_GraphNode__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB3F8, List_1_Pathfinding_TriangleMeshNode__set_Capacity__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB408, List_1_Pathfinding_TriangleMeshNode__get_Capacity__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB410, List_1_Pathfinding_TriangleMeshNode__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB420, List_1_Pathfinding_TriangleMeshNode__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB428, ListPool_1_Pathfinding_GraphNode__Claim_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB438, ListPool_1_Pathfinding_GraphNode__Release_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB448, List_1_Pathfinding_TriangleMeshNode__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB450, List_1_Pathfinding_TriangleMeshNode__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB470, List_1_Pathfinding_TriangleMeshNode___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB490, MiscTools_DeepClone_70__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB498, MiscTools_DeepClone_71__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB4E8, ObjectPool_1_Pathfinding_RichFunnel__Release__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB4F0, ObjectPool_1_Pathfinding_RichSpecial__Release__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB4F8, ObjectPool_1_Pathfinding_RichFunnel__Claim__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB500, ObjectPool_1_Pathfinding_RichSpecial__Claim__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB518, ArrayTools_DeepClone_28__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB520, List_1_Pathfinding_RichPathPart__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB528, ArrayTools_DeepClone_29__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB538, List_1_Pathfinding_RichPathPart__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB540, List_1_Pathfinding_RichPathPart__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB558, List_1_Pathfinding_RichPathPart__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB570, List_1_Pathfinding_RichPathPart___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB590, MiscTools_DeepClone_72__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB598, GameObject_AddComponent_83__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB5A0, Component_GetComponent_133__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB5F0, MiscTools_DeepClone_73__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB5F8, MiscTools_DeepClone_74__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB618, ArrayTools_DeepClone_30__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB628, ArrayTools_DeepClone_31__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB638, List_1_Pathfinding_GraphNode__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB640, List_1_Pathfinding_GraphNode__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB6D8, ArrayTools_DeepClone_32__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB6E0, ArrayTools_DeepClone_33__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB6F8, ArrayTools_ShallowCopy_12__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB708, MiscTools_DeepClone_75__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB768, MiscTools_DeepClone_76__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB770, MiscTools_DeepClone_77__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB788, Component_GetComponent_134__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB7A0, GameObject_AddComponent_84__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB7A8, ArrayTools_DeepClone_34__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB7B0, ArrayTools_DeepClone_35__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB7D0, Component_GetComponent_135__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB7D8, MiscTools_DeepClone_78__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB860, MiscTools_DeepClone_79__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB880, MiscTools_DeepClone_80__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB8F8, ArrayTools_DeepClone_36__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB920, MiscTools_DeepClone_81__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB978, ArrayTools_DeepClone_37__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB9D8, MiscTools_DeepClone_82__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB9E8, MiscTools_DeepClone_83__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFB9F8, MiscTools_DeepClone_84__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFBA70, MiscTools_DeepClone_85__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFBA88, MiscTools_DeepClone_86__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFBAD8, ArrayTools_DeepClone_38__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFBAE8, ArrayTools_DeepClone_39__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFBB40, MiscTools_DeepClone_87__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFBBC0, MiscTools_DeepClone_88__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFBBD0, MiscTools_DeepClone_89__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFBBF0, ArrayTools_DeepClone_40__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFBC00, ArrayTools_DeepClone_41__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFBC90, AndroidJavaObject_GetStatic_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFBD18, List_1_System_Xml_XmlQualifiedName___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFBD60, List_1_System_Xml_XmlQualifiedName__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFBDD0, List_1_System_Xml_XmlQualifiedName___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFBE50, AndroidJavaObject_Get_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFBF38, AndroidJavaObject_Call_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFC078, AndroidJavaObject_Call_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFC088, AndroidJavaObject_CallStatic_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFC210, ReadOnlyCollection_1_System_Linq_Expressions_SwitchCase__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFC218, ReadOnlyCollection_1_System_Linq_Expressions_SwitchCase__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFC220, ReadOnlyCollection_1_System_Linq_Expressions_Expression__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFC278, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputDevice__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFC280, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputDevice__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFC288, ReadOnlyArray_1_UnityEngine_InputSystem_InputDevice__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFC298, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputDevice__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFC380, CallbackArray_1_UnityEngine_InputSystem_LowLevel_InputDeviceCommandDelegate__get_length__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFC388, CallbackArray_1_UnityEngine_InputSystem_LowLevel_InputDeviceCommandDelegate__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFC390, CallbackArray_1_UnityEngine_InputSystem_LowLevel_InputDeviceCommandDelegate__UnlockForChanges__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFC398, CallbackArray_1_UnityEngine_InputSystem_LowLevel_InputDeviceCommandDelegate__LockForChanges__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFC3C0, InputControlList_1_InputControl__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFC3C8, InputControlList_1_InputControl__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFC3E0, InputControlList_1_InputControl___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFC3E8, InputControlList_1_InputControl__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFC468, Dictionary_2_System_String_System_Xml_DtdParser_UndeclaredNotation___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFC470, Dictionary_2_System_String_System_Xml_DtdParser_UndeclaredNotation__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFC478, Dictionary_2_System_String_System_Xml_DtdParser_UndeclaredNotation__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFC490, Dictionary_2_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaEntity__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFC4A0, Dictionary_2_System_String_System_Xml_DtdParser_UndeclaredNotation__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFC4B8, Dictionary_2_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaElementDecl__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFC4F0, Dictionary_2_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaEntity__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFC4F8, Stack_1_System_Xml_DtdParser_ParseElementOnlyContent_LocalFrame__Peek__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFC508, Stack_1_System_Xml_DtdParser_ParseElementOnlyContent_LocalFrame__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFC510, Stack_1_System_Xml_DtdParser_ParseElementOnlyContent_LocalFrame___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFC518, Stack_1_System_Xml_DtdParser_ParseElementOnlyContent_LocalFrame__Push__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFC520, Stack_1_System_Xml_DtdParser_ParseElementOnlyContent_LocalFrame__Pop__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFC528, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_System_Xml_DtdParser_UndeclaredNotation__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFC530, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_System_Xml_DtdParser_UndeclaredNotation__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFC538, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_System_Xml_DtdParser_UndeclaredNotation__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFC540, Dictionary_2_System_String_System_Xml_DtdParser_UndeclaredNotation__get_Values__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFC5A8, Dictionary_2_TKey_TValue_ValueCollection_System_String_System_Xml_DtdParser_UndeclaredNotation__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFC8A8, LazyInitializer_EnsureInitialized_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFCD30, ConditionalWeakTable_2_System_Object_System_Runtime_Serialization_SerializationInfo___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFCD60, CustomAttributeExtensions_GetCustomAttributes_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFCDC0, List_1_System_Diagnostics_StackFrame___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFCDC8, List_1_System_Diagnostics_StackFrame__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFCDD0, List_1_System_Diagnostics_StackFrame__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFCE40, List_1_System_Diagnostics_StackFrame__AddRange__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFD010, List_1_PlaceholderSoftware_WetStuff_ParticleWetSplatter_Splatter__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFD020, List_1_PlaceholderSoftware_WetStuff_ParticleWetSplatter_Splatter__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFD040, List_1_PlaceholderSoftware_WetStuff_ParticleWetSplatter_Splatter__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFD048, IListExtensions_1_RemoveNulls_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFD050, List_1_PlaceholderSoftware_WetStuff_ParticleWetSplatter_Splatter__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFD058, List_1_PlaceholderSoftware_WetStuff_ParticleWetSplatter_Splatter__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFD060, List_1_PlaceholderSoftware_WetStuff_ParticleWetSplatter_Splatter__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFD068, List_1_PlaceholderSoftware_WetStuff_ParticleWetSplatter_Splatter__AddRange__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFD070, Component_GetComponents_17__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFD078, Component_GetComponent_136__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFD0B0, List_1_PlaceholderSoftware_WetStuff_ParticleWetSplatter_Splatter___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFD118, Log_1_Warn_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFD120, Log_1_Error_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFD148, List_1_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFD150, Dictionary_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFD158, Dictionary_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFD160, List_1_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFD168, List_1_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFD170, List_1_T_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFD178, List_1_T_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFD180, Dictionary_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFD188, List_1_T_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFD1B8, ReadOnlyCollection_1_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFD1D0, List_1_PlaceholderSoftware_WetStuff_IWetDecal___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFD1D8, List_1_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFD1E8, Dictionary_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFD1F0, List_1_PlaceholderSoftware_WetStuff_WetDecalSystem_DecalRenderInstance__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFD1F8, List_1_PlaceholderSoftware_WetStuff_WetDecalSystem_DecalRenderInstance__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFD200, List_1_PlaceholderSoftware_WetStuff_WetDecalSystem_DecalRenderInstance__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFD208, List_1_PlaceholderSoftware_WetStuff_WetDecalSystem_DecalRenderInstance__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFD280, ReadOnlyCollection_1_PlaceholderSoftware_WetStuff_WetDecalSystem_DecalRenderInstance___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFD290, List_1_PlaceholderSoftware_WetStuff_WetDecalSystem_DecalRenderInstance___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFD2C0, Pool_1_PlaceholderSoftware_WetStuff_WetDecalSystem_DecalRenderInstance___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFD2F8, Pool_1_PlaceholderSoftware_WetStuff_WetDecalSystem_DecalRenderInstance__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFD300, Pool_1_PlaceholderSoftware_WetStuff_WetDecalSystem_DecalRenderInstance__Put__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFD328, List_1_PlaceholderSoftware_WetStuff_IWetDecal__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFD330, List_1_PlaceholderSoftware_WetStuff_IWetDecal__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFD338, List_1_PlaceholderSoftware_WetStuff_IWetDecal__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFD340, List_1_PlaceholderSoftware_WetStuff_IWetDecal__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFD360, RcSharedState_1_WetDecalSystem_State___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFD370, RcSharedState_1_WetDecalSystem_State__get_SharedState__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFD3B8, ReadOnlyCollection_1_PlaceholderSoftware_WetStuff_WetDecalSystem_DecalRenderInstance__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFD400, ReadOnlyCollection_1_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFD408, ReadOnlyCollection_1_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFD428, List_1_PlaceholderSoftware_WetStuff_WetDecalRenderer_DecalBatch__Sort__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFD430, List_1_PlaceholderSoftware_WetStuff_WetDecalRenderer_DecalBatch__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFD438, Dictionary_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch_PlaceholderSoftware_WetStuff_WetDecalRenderer_DecalBatch__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFD440, Dictionary_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch_PlaceholderSoftware_WetStuff_WetDecalRenderer_DecalBatch__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFD450, List_1_PlaceholderSoftware_WetStuff_WetDecalRenderer_DecalBatch__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFD458, List_1_PlaceholderSoftware_WetStuff_WetDecalRenderer_DecalBatch__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFD460, List_1_PlaceholderSoftware_WetStuff_WetDecalRenderer_DecalBatch__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFD468, Dictionary_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch_PlaceholderSoftware_WetStuff_WetDecalRenderer_DecalBatch__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFD498, List_1_PlaceholderSoftware_WetStuff_WetDecalRenderer_DecalBatch___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFD4A8, Dictionary_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch_PlaceholderSoftware_WetStuff_WetDecalRenderer_DecalBatch___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFD708, ReadOnlyCollection_1_PlaceholderSoftware_WetStuff_WetDecalSystem_DecalRenderInstance__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFD890, Component_GetComponent_137__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFDF00, CustomAttributeExtensions_GetCustomAttribute_14__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFDFE8, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_IO_Stream__get_IsCompleted__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFDFF0, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_IO_Stream__GetResult__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFDFF8, ConfiguredTaskAwaitable_1_System_IO_Stream__GetAwaiter__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFE000, AsyncTaskMethodBuilder_1_System_Object__AwaitUnsafeOnCompleted_27__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFE010, Task_1_System_IO_Stream__ConfigureAwait__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFE0C0, Dictionary_2_System_String_System_String__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFE0F0, AsyncOperationHandle_1_System_Collections_Generic_IList_1__1_op_Implicit__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFE0F8, AsyncOperationHandle_1_System_Collections_Generic_IList_1__1_Release__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFE128, ResourceManager_1_CreateOperation_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFE150, ResourceManager_1_StartOperation_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFE198, ValueTuple_2_Object_ValueTuple_2_Type_Int32___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFE1A8, ValueTuple_2_Type_Int32___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFE1C8, Dictionary_2_System_ValueTuple_2_Stack_1_System_Object__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFE1F0, List_1_System_ValueTuple_2__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFE1F8, Dictionary_2_System_ValueTuple_2_Stack_1_System_Object__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFE200, Task_1_System_Net_WebResponse__get_Factory__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFE208, List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphPass__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFE210, List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphPass__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFE240, Dictionary_2_System_Type_UdpKit_Protocol_ProtocolClient_MsgHandler__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFE258, Task_Run_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFE288, Dictionary_2_System_Type_UdpKit_Protocol_ProtocolClient_AckCallback__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFE2A0, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_WebResponse__get_IsCompleted__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFE2B0, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_WebResponse__GetResult__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFE2B8, ConfiguredTaskAwaitable_1_System_Net_WebResponse__GetAwaiter__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFE2C0, AsyncTaskMethodBuilder_1_System_IO_Stream__AwaitUnsafeOnCompleted_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFE2D0, Task_1_System_Net_WebResponse__ConfigureAwait__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFE2D8, TaskFactory_1_System_Net_WebResponse__FromAsync__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFE2F0, AsyncTaskMethodBuilder_1_System_IO_Stream__Start_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFE338, ComponentWrapper_1_Rewired_PlayerController__get_initialized__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFE340, ComponentWrapper_1_Rewired_PlayerController__get_source__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFE520, Dictionary_2_System_Type_System_Int32__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFE528, Dictionary_2_System_Type_System_Int32__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFE530, Dictionary_2_System_Type_System_Int32__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFE538, Stack_1_Pathfinding_Path__Pop__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFE660, Dictionary_2_System_Type_System_Object__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFE668, Dictionary_2_System_Type_System_Object__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFE7D8, Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1_Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFE7E0, Dictionary_2_System_Type_UnityEngine_Component__2_Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFE7F0, Dictionary_2_System_Type_UnityEngine_Component__2__ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFE7F8, Dictionary_2_System_Type_UnityEngine_Component__2_TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFE800, Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1_TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFE808, Dictionary_2_System_Type_UnityEngine_Component__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFE810, Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFE820, Dictionary_2_System_Type_UnityEngine_Component___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFE828, Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFE830, Dictionary_2_System_Type_UnityEngine_Component__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFE840, List_1_UnityEngine_UIElements_VisualElement__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFE848, List_1_UnityEngine_UIElements_VisualElement__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFE850, List_1_UnityEngine_UIElements_VisualElement__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFEAB8, LazyInitializer_EnsureInitialized_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFEB38, TaskFactory_1_VoidTaskResult__FromAsyncTrim_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFEBA8, TaskFactory_1_System_Int32__FromAsyncTrim_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFECD0, MonoLinqHelper_ToArray_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFF120, EqualityComparer_1_System_String___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFF3B8, Dictionary_2_TKey_TValue_ValueCollection_System_String_MantisLODEditor_Lod_Mesh_Table__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFF3C0, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_MantisLODEditor_Lod_Mesh_Table__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFF3D0, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_MantisLODEditor_Lod_Mesh_Table__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFF3D8, Dictionary_2_System_String_MantisLODEditor_Lod_Mesh_Table__get_Values__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFF3E8, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_MantisLODEditor_Lod_Mesh_Table__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFF3F0, List_1_UnityEngine_Component__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFF3F8, KeyValuePair_2_System_String_MantisLODEditor_Lod_Mesh_Table__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFF400, KeyValuePair_2_System_String_MantisLODEditor_Lod_Mesh_Table__get_Key__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFF408, Dictionary_2_TKey_TValue_Enumerator_System_String_MantisLODEditor_Lod_Mesh_Table__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFF410, List_1_T_Enumerator_UnityEngine_Component__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFF418, Dictionary_2_TKey_TValue_Enumerator_System_String_MantisLODEditor_Lod_Mesh_Table__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFF428, List_1_T_Enumerator_UnityEngine_Component__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFF430, Dictionary_2_System_String_MantisLODEditor_Lod_Mesh_Table__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFF438, List_1_T_Enumerator_UnityEngine_Component__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFF440, Dictionary_2_TKey_TValue_Enumerator_System_String_MantisLODEditor_Lod_Mesh_Table__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFF450, Object_1_Instantiate_21__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFF480, List_1_UnityEngine_Component___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFF488, List_1_UnityEngine_Component__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFF4A0, Dictionary_2_System_String_MantisLODEditor_Lod_Mesh_Table__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFF4B0, Dictionary_2_System_String_MantisLODEditor_Lod_Mesh_Table___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFF4B8, Dictionary_2_System_String_MantisLODEditor_Lod_Mesh_Table__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFF4C0, Dictionary_2_System_String_MantisLODEditor_Lod_Mesh_Table__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFF4D0, Array_IndexOf_257__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFF4E0, Resources_Load_19__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFF550, List_1_MantisLOD_Progressive_Mesh___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFF570, List_1_MantisLOD_Progressive_Mesh__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFF578, List_1_MantisLOD_Progressive_Mesh__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFF580, List_1_MantisLOD_Progressive_Mesh__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFF590, List_1_MantisLOD_Progressive_Mesh__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFF5B0, List_1_MantisLOD_My_Half_edge_index__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFF5C0, List_1_T_Enumerator_MantisLOD_My_Half_edge_index__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFF5D0, List_1_T_Enumerator_MantisLOD_My_Half_edge_index__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFF600, List_1_T_Enumerator_MantisLOD_My_Half_edge_index__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFF668, List_1_MantisLOD_My_Half_edge__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFF678, List_1_MantisLOD_My_Half_trace__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFF690, List_1_MantisLOD_My_Half_edge_index__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFF7D8, List_1_MantisLOD_My_Half_edge__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFF7E8, List_1_T_Enumerator_MantisLOD_My_Half_edge__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFF7F0, List_1_T_Enumerator_MantisLOD_My_Half_edge__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFF800, List_1_T_Enumerator_MantisLOD_My_Half_edge__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFF840, List_1_MantisLOD_My_Half_vertex__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFF848, List_1_MantisLOD_My_Half_face__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFF850, List_1_MantisLOD_My_Half_vertex__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFF888, List_1_MantisLOD_My_Half_vertex__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFF898, List_1_MantisLOD_My_Half_face__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFF908, FileSystemEnumerable_1_System_String__set_ShouldIncludePredicate__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFF910, FileSystemEnumerable_1_System_String___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFF938, List_1_List_1_System_Int32__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFF940, List_1_MantisLOD_My_Half_trace__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFF968, List_1_List_1_System_Int32___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFF988, List_1_MantisLOD_My_Half_face__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFF9A8, List_1_List_1_System_Int32__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFF9C0, List_1_T_Enumerator_MantisLOD_My_Half_face__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFF9C8, List_1_T_Enumerator_MantisLOD_My_Half_face__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFF9D8, List_1_T_Enumerator_MantisLOD_My_Half_face__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFF9F0, List_1_MantisLOD_My_Half_trace__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFFA60, List_1_MantisLOD_My_Half_trace___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFFA98, List_1_MantisLOD_My_Half_vertex___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFFAE8, List_1_MantisLOD_My_Half_edge__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFFB10, List_1_MantisLOD_My_Half_edge__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFFB20, List_1_MantisLOD_My_Half_edge__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFFB30, List_1_MantisLOD_My_Half_edge__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFFB50, List_1_MantisLOD_My_Half_edge___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFFB68, List_1_MantisLOD_My_Half_edge__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFFBA0, List_1_MantisLOD_My_Half_edge_index___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFFBA8, List_1_MantisLOD_My_Half_face___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFFBE0, List_1_MantisLOD_My_Half_edge___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFFDC0, ListTools_AddIfUnique_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFFDC8, ADictionary_2_System_Type_System_Collections_Generic_List_1__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFFDE0, List_1_System_Collections_IList__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFFDF0, List_1_System_Collections_IList__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFFE38, ADictionary_2_System_Type_System_Collections_Generic_List_1__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFFE80, List_1_System_Collections_IList___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFFE90, List_1_System_Collections_IList__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFFEA0, ADictionary_2_System_Type_System_Collections_Generic_List_1__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFFEB8, ADictionary_2_System_Type_System_Collections_Generic_List_1__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFFEE0, List_1_System_Xml_Serialization_XmlReflectionMember___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFFEF8, List_1_System_Xml_Serialization_XmlReflectionMember__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03CFFFF0, ScriptableObject_CreateInstance_16__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D00008, Resources_Load_20__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D00028, List_1_PlaceholderSoftware_WetStuff_Debugging_LogLevel__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D00038, List_1_PlaceholderSoftware_WetStuff_Debugging_LogLevel__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D00078, List_1_PlaceholderSoftware_WetStuff_Debugging_LogLevel__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D00088, List_1_PlaceholderSoftware_WetStuff_Debugging_LogLevel__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D00108, List_1_PlaceholderSoftware_WetStuff_Debugging_LogLevel___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D00128, Enumerable_Select_76__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D00158, List_1_T_Enumerator_System_Xml_Serialization_XmlReflectionMember__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D00198, List_1_System_Xml_Serialization_XmlReflectionMember__Sort__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D001A0, List_1_System_Xml_Serialization_XmlReflectionMember__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D001A8, List_1_T_Enumerator_System_Xml_Serialization_XmlReflectionMember__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D001C8, ScriptableObject_CreateInstance_17__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D001D8, Resources_Load_21__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D001E8, List_1_T_Enumerator_System_Xml_Serialization_XmlReflectionMember__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D002D8, EqualityComparer_1_UnityEngine_Texture2D__get_Default__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D00320, EqualityComparer_1_PlaceholderSoftware_WetStuff_ProjectionMode__get_Default__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D00330, EqualityComparer_1_PlaceholderSoftware_WetStuff_DecalShape__get_Default__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D00340, EqualityComparer_1_PlaceholderSoftware_WetStuff_WetDecalMode__get_Default__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D00348, EqualityComparer_1_PlaceholderSoftware_WetStuff_LayerMode__get_Default__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D00420, List_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D00438, List_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D00530, Dictionary_2_UnityEngine_UIElements_StyleSheets_StylePropertyId_UnityEngine_UIElements_StylePropertyAnimationSystem_Values__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D00598, Dictionary_2_System_Type_ExitGames_Client_Photon_StructWrapping_StructWrapperPool__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D005A8, Dictionary_2_System_Type_ExitGames_Client_Photon_StructWrapping_StructWrapperPool__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D00610, TemplatedTimeline_6_TData_TClip_TMixer_TTrack_TIntermediate_TBinding_BaseTrack_PlaceholderSoftware_WetStuff_Timeline_Saturation_Data_PlaceholderSoftware_WetStuff_Timeline_Saturation_Clip_PlaceholderSoftware_WetStuff_Timeline_Saturation_Mixer_PlaceholderSoftware_WetStuff_Timeline_Saturation_Track_System_Single_PlaceholderSoftware_WetStuff_WetDecal___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D00630, TemplatedTimeline_6_TData_TClip_TMixer_TTrack_TIntermediate_TBinding_BaseMixer_PlaceholderSoftware_WetStuff_Timeline_Saturation_Data_PlaceholderSoftware_WetStuff_Timeline_Saturation_Clip_PlaceholderSoftware_WetStuff_Timeline_Saturation_Mixer_PlaceholderSoftware_WetStuff_Timeline_Saturation_Track_System_Single_PlaceholderSoftware_WetStuff_WetDecal___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D00650, ScriptPlayable_1_PlaceholderSoftware_WetStuff_Timeline_Saturation_Data__op_Explicit__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D00660, ScriptPlayable_1_PlaceholderSoftware_WetStuff_Timeline_Saturation_Data__GetBehaviour__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D00668, TemplatedTimeline_6_TData_TClip_TMixer_TTrack_TIntermediate_TBinding_BaseMixer_PlaceholderSoftware_WetStuff_Timeline_Saturation_Data_PlaceholderSoftware_WetStuff_Timeline_Saturation_Clip_PlaceholderSoftware_WetStuff_Timeline_Saturation_Mixer_PlaceholderSoftware_WetStuff_Timeline_Saturation_Track_System_Single_PlaceholderSoftware_WetStuff_WetDecal__get_Default__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D00670, List_1_System_IDisposable__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D00690, TemplatedTimeline_6_TData_TClip_TMixer_TTrack_TIntermediate_TBinding_BaseData_PlaceholderSoftware_WetStuff_Timeline_Saturation_Data_PlaceholderSoftware_WetStuff_Timeline_Saturation_Clip_PlaceholderSoftware_WetStuff_Timeline_Saturation_Mixer_PlaceholderSoftware_WetStuff_Timeline_Saturation_Track_System_Single_PlaceholderSoftware_WetStuff_WetDecal___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D00698, TemplatedTimeline_6_TData_TClip_TMixer_TTrack_TIntermediate_TBinding_BaseClip_PlaceholderSoftware_WetStuff_Timeline_Saturation_Data_PlaceholderSoftware_WetStuff_Timeline_Saturation_Clip_PlaceholderSoftware_WetStuff_Timeline_Saturation_Mixer_PlaceholderSoftware_WetStuff_Timeline_Saturation_Track_System_Single_PlaceholderSoftware_WetStuff_WetDecal___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D006A8, TemplatedTimeline_6_TData_TClip_TMixer_TTrack_TIntermediate_TBinding_BaseTrack_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsDataContainer_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsClip_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsMixer_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsTrack_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsDataContainer_DecalSettingsData_PlaceholderSoftware_WetStuff_WetDecal___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D00798, TemplatedTimeline_6_TData_TClip_TMixer_TTrack_TIntermediate_TBinding_BaseMixer_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsDataContainer_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsClip_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsMixer_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsTrack_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsDataContainer_DecalSettingsData_PlaceholderSoftware_WetStuff_WetDecal___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D007B0, ScriptPlayable_1_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsDataContainer__op_Explicit__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D007B8, ScriptPlayable_1_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsDataContainer__GetBehaviour__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D007E0, TemplatedTimeline_6_TData_TClip_TMixer_TTrack_TIntermediate_TBinding_BaseMixer_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsDataContainer_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsClip_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsMixer_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsTrack_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsDataContainer_DecalSettingsData_PlaceholderSoftware_WetStuff_WetDecal__get_Default__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D00810, TemplatedTimeline_6_TData_TClip_TMixer_TTrack_TIntermediate_TBinding_BaseData_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsDataContainer_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsClip_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsMixer_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsTrack_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsDataContainer_DecalSettingsData_PlaceholderSoftware_WetStuff_WetDecal___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D00820, TemplatedTimeline_6_TData_TClip_TMixer_TTrack_TIntermediate_TBinding_BaseClip_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsDataContainer_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsClip_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsMixer_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsTrack_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsDataContainer_DecalSettingsData_PlaceholderSoftware_WetStuff_WetDecal___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D00880, List_1_PlaceholderSoftware_WetStuff_Weather_RainPuddle_RainDecal__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D00888, Stack_1_PlaceholderSoftware_WetStuff_Weather_RainPuddle_RainDecal__Push__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D00890, List_1_PlaceholderSoftware_WetStuff_Weather_RainPuddle_RainDecal__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D00898, List_1_PlaceholderSoftware_WetStuff_Weather_RainPuddle_RainDecal__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D008A0, List_1_PlaceholderSoftware_WetStuff_Weather_RainPuddle_RainDecal__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D008A8, Stack_1_PlaceholderSoftware_WetStuff_Weather_RainPuddle_RainDecal__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D008B0, Stack_1_PlaceholderSoftware_WetStuff_Weather_RainPuddle_RainDecal__Pop__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D008C0, Object_1_Instantiate_22__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D008C8, List_1_PlaceholderSoftware_WetStuff_Weather_RainPuddle_RainDecal__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D008D8, KeyValuePair_2_System_String_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D008E0, Stack_1_PlaceholderSoftware_WetStuff_Weather_RainPuddle_RainDecal___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D008E8, IndexedDictionary_2_System_String_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D008F8, IndexedDictionary_2_System_String_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__GetEntryAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D00900, List_1_PlaceholderSoftware_WetStuff_Weather_RainPuddle_RainDecal___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D00920, IndexedDictionary_2_System_String_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D00938, Log_1_Error_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D00948, Component_GetComponent_138__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D009A8, List_1_Opsive_Shared_Utility_Serialization___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D009B0, List_1_Opsive_Shared_Utility_Serialization__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D009B8, List_1_Opsive_Shared_Utility_Serialization__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D009E0, Component_GetComponents_18__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D009F8, List_1_gzbiKNGlSyvLxnIubujCpzSuqtOe___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D00A00, List_1_gzbiKNGlSyvLxnIubujCpzSuqtOe__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D00A08, KeyValuePair_2_System_Int32_nPRqIoqySXhujbVkqhHKfdEBznFW__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D00A10, KeyValuePair_2_System_Int32_PLVuESYMpevStRCbBgaqaHaZvFblA__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D00A20, ADictionary_2_System_Int32_PLVuESYMpevStRCbBgaqaHaZvFblA__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D00A28, ADictionary_2_System_Int32_nPRqIoqySXhujbVkqhHKfdEBznFW__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D00A30, ADictionary_2_TKey_TValue_Enumerator_System_Int32_PLVuESYMpevStRCbBgaqaHaZvFblA__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D00A38, ADictionary_2_TKey_TValue_Enumerator_System_Int32_nPRqIoqySXhujbVkqhHKfdEBznFW__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D00A40, ADictionary_2_TKey_TValue_Enumerator_System_Int32_PLVuESYMpevStRCbBgaqaHaZvFblA__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D00A48, ADictionary_2_TKey_TValue_Enumerator_System_Int32_nPRqIoqySXhujbVkqhHKfdEBznFW__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D00A58, Enumerable_ToArray_29__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D00A60, Enumerable_Cast_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D00A68, ADictionary_2_TKey_TValue_Enumerator_System_Int32_PLVuESYMpevStRCbBgaqaHaZvFblA__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D00A70, ADictionary_2_TKey_TValue_Enumerator_System_Int32_nPRqIoqySXhujbVkqhHKfdEBznFW__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D01D08, LazyInitializer_EnsureInitialized_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D02510, Stack_1_System_Xml_Schema_InteriorNode__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D02518, Stack_1_System_Xml_Schema_InteriorNode___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D02520, Stack_1_System_Xml_Schema_InteriorNode__Push__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D02528, Stack_1_System_Xml_Schema_InteriorNode__Pop__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D03090, Dictionary_2_System_Type_UnityEngine_ISubsystem__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D03098, Dictionary_2_System_Type_UnityEngine_ISubsystem__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D030A8, Dictionary_2_System_Type_UnityEngine_ISubsystem__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D030F8, Dictionary_2_System_Type_UnityEngine_ISubsystem__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D03190, List_1_T_Enumerator_UnityEngine_Rendering_VolumeComponent__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D031A8, List_1_T_Enumerator_UnityEngine_Rendering_VolumeComponent__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D031B8, List_1_UnityEngine_Rendering_VolumeComponent__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D031C0, List_1_T_Enumerator_UnityEngine_Rendering_VolumeComponent__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D031E8, List_1_UnityEngine_Rendering_Volume__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D031F8, KeyValuePair_2_System_Int32_List_1_UnityEngine_Rendering_Volume__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D03208, KeyValuePair_2_System_Int32_List_1_UnityEngine_Rendering_Volume__get_Key__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D03218, Dictionary_2_TKey_TValue_Enumerator_System_Int32_List_1_UnityEngine_Rendering_Volume__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D03230, List_1_T_Enumerator_UnityEngine_Rendering_Volume__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D03238, Dictionary_2_TKey_TValue_Enumerator_System_Int32_List_1_UnityEngine_Rendering_Volume__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D03240, List_1_T_Enumerator_UnityEngine_Rendering_Volume__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D03248, Dictionary_2_TKey_TValue_Enumerator_System_Int32_List_1_UnityEngine_Rendering_Volume__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D03250, List_1_T_Enumerator_UnityEngine_Rendering_Volume__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D03258, Dictionary_2_System_Int32_List_1_UnityEngine_Rendering_Volume__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D03288, List_1_System_Xml_Schema_XmlSchemaObject__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D032C8, List_1_System_Xml_Schema_XmlSchemaObject__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D032D8, List_1_System_Xml_Schema_XmlSchemaObject___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D032E8, List_1_System_Xml_Schema_XmlSchemaObject__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D03690, Component_GetComponents_19__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D036C0, TempListPool_GetTList_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D036D0, TempListPool_TList_1_UnityEngine_Component__get_list__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D03798, UQueryBuilder_1_VisualElement___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D037A0, UQueryState_1_VisualElement__First__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D037D0, UQueryState_1_VisualElement__RebuildOn__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D03A78, NoAllocHelpers_ExtractArrayFromListT_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D03E80, List_1_Rewired_ActionElementMap__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D03E88, List_1_System_ComponentModel_PropertyChangedEventHandler__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D03EA0, List_1_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wzRiUTIKuqxDCQYCeJSGjaGZezQK__Find__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D03EA8, List_1_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wzRiUTIKuqxDCQYCeJSGjaGZezQK__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D03EC8, ADictionary_2_System_Type_System_Collections_Generic_List_1__1_TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D03EE0, ADictionary_2_System_Type_System_Collections_Generic_List_1__1_Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D03EF0, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_IRenderGraphResource__get_size__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D03F00, ADictionary_2_System_Type_System_Collections_Generic_List_1__1_get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D03F08, ADictionary_2_System_Type_System_Collections_Generic_List_1__1_ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D03F10, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_IRenderGraphResource__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D03F18, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_IRenderGraphResource__Resize__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D03F20, Stack_1_HashSet_1_System_Linq_Expressions_ParameterExpression__Push__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D03F28, Stack_1_HashSet_1_System_Linq_Expressions_ParameterExpression__Pop__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D03F40, List_1_Rewired_PlayerController_Element__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D03F48, List_1_Rewired_PlayerController_Element__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D03F50, HashSet_1_System_Linq_Expressions_ParameterExpression___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D03F58, HashSet_1_System_Linq_Expressions_ParameterExpression__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D03FD0, List_1_System_Linq_Expressions_ParameterExpression__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D03FD8, Dictionary_2_Rewired_InputMapper_LHIKMCjQdqDNBdfhNEqxmrgcNERkA_Rewired_Utils_SafeDelegate__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D04008, List_1_System_Linq_Expressions_ParameterExpression___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D04010, Dictionary_2_System_String_Rewired_Utils_SafeDelegate__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D06F28, RuntimeType_ListBuilder_1_System_Reflection_MethodInfo__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D070C0, List_1_System_Reflection_MethodBase__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D070C8, List_1_System_Reflection_MethodBase___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D070D0, List_1_System_Reflection_MethodBase__CopyTo__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D070D8, List_1_System_Reflection_MethodBase__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D07140, List_1_System_Reflection_MethodInfo__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D07148, List_1_System_Reflection_MethodInfo___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D07150, List_1_System_Reflection_MethodInfo__CopyTo__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D07260, RuntimeType_ListBuilder_1_Type__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D07288, RuntimeType_ListBuilder_1_System_Reflection_MethodInfo__CopyTo__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D07290, RuntimeType_ListBuilder_1_System_Reflection_PropertyInfo__CopyTo__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D07298, RuntimeType_ListBuilder_1_System_Reflection_EventInfo__CopyTo__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D072A0, RuntimeType_ListBuilder_1_System_Reflection_ConstructorInfo__CopyTo__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D072A8, RuntimeType_ListBuilder_1_System_Reflection_FieldInfo__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D072B0, RuntimeType_ListBuilder_1_System_Reflection_EventInfo__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D072B8, RuntimeType_ListBuilder_1_System_Reflection_PropertyInfo__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D072C0, RuntimeType_ListBuilder_1_System_Reflection_ConstructorInfo__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D072D0, RuntimeType_ListBuilder_1_System_Reflection_PropertyInfo__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D072D8, RuntimeType_ListBuilder_1_System_Reflection_ConstructorInfo__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D072E0, RuntimeType_ListBuilder_1_System_Reflection_EventInfo__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D072E8, RuntimeType_ListBuilder_1_Type__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D072F0, RuntimeType_ListBuilder_1_System_Reflection_PropertyInfo__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D072F8, RuntimeType_ListBuilder_1_System_Reflection_MethodInfo__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D07300, RuntimeType_ListBuilder_1_System_Reflection_FieldInfo__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D07308, RuntimeType_ListBuilder_1_System_Reflection_ConstructorInfo__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D07310, RuntimeType_ListBuilder_1_System_Reflection_FieldInfo__CopyTo__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D07318, RuntimeType_ListBuilder_1_Type__CopyTo__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D07330, RuntimeType_ListBuilder_1_System_Reflection_PropertyInfo___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D07340, RuntimeType_ListBuilder_1_System_Reflection_PropertyInfo__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D07348, RuntimeType_ListBuilder_1_System_Reflection_ConstructorInfo___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D07350, RuntimeType_ListBuilder_1_System_Reflection_ConstructorInfo__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D07368, RuntimeType_ListBuilder_1_System_Reflection_MethodInfo___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D07378, RuntimeType_ListBuilder_1_System_Reflection_MethodInfo__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D073B8, RuntimeType_ListBuilder_1_System_Reflection_MethodInfo__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D073D8, RuntimeType_ListBuilder_1_Type___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D073E8, RuntimeType_ListBuilder_1_Type__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D073F8, RuntimeType_ListBuilder_1_System_Reflection_FieldInfo___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D07400, RuntimeType_ListBuilder_1_System_Reflection_FieldInfo__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D07410, RuntimeType_ListBuilder_1_System_Reflection_EventInfo___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D07418, RuntimeType_ListBuilder_1_System_Reflection_EventInfo__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D07828, Array_Sort_257__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D07938, Contract_ForAll_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D079E8, Dictionary_2_System_String_System_LocalDataStoreSlot__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D079F0, CollectionExtensions_GetValueOrDefault_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D079F8, Dictionary_2_System_String_System_LocalDataStoreSlot__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D07A20, List_1_System_LocalDataStore__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D07A40, List_1_System_LocalDataStore___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D07A50, Dictionary_2_System_String_System_LocalDataStoreSlot___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D07A68, List_1_System_LocalDataStore__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D07A70, List_1_System_LocalDataStore__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D07A90, List_1_System_LocalDataStore__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D088C0, Dictionary_2_System_Type_System_AttributeUsageAttribute__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D088D0, Dictionary_2_System_Type_System_AttributeUsageAttribute___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D088E0, Dictionary_2_System_Type_System_AttributeUsageAttribute__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D08990, Array_LastIndexOf_40__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D08A10, List_1_System_Reflection_CustomAttributeData___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D08A20, List_1_System_Reflection_CustomAttributeData__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D08A30, List_1_System_Reflection_CustomAttributeData__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D08A60, Array_Empty_53__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D08B40, Array_AsReadOnly_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D08C80, Dictionary_2_System_Type_System_MonoCustomAttrs_AttributeInfo___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D08C90, Dictionary_2_System_Type_System_MonoCustomAttrs_AttributeInfo__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D08CA0, Dictionary_2_System_Type_System_MonoCustomAttrs_AttributeInfo__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D09810, Dictionary_2_System_String_System_Object__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D09ED8, Dictionary_2_System_IntPtr_Mono_Btls_MonoBtlsX509Lookup__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D09EE0, Dictionary_2_System_IntPtr_Mono_Btls_MonoBtlsX509Lookup___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D09EE8, Dictionary_2_System_IntPtr_Mono_Btls_MonoBtlsX509Lookup__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D09EF0, Dictionary_2_System_IntPtr_Mono_Btls_MonoBtlsX509Lookup__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D09F10, Dictionary_2_TKey_TValue_ValueCollection_System_IntPtr_Mono_Btls_MonoBtlsX509Lookup__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D09F18, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_IntPtr_Mono_Btls_MonoBtlsX509Lookup__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D09F20, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_IntPtr_Mono_Btls_MonoBtlsX509Lookup__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D09F28, Dictionary_2_System_IntPtr_Mono_Btls_MonoBtlsX509Lookup__get_Values__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D09F48, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_IntPtr_Mono_Btls_MonoBtlsX509Lookup__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D09FC0, List_1_T_Enumerator_Mono_Btls_MonoBtlsX509LookupMono__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D09FC8, List_1_T_Enumerator_Mono_Btls_MonoBtlsX509LookupMono__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D09FD0, List_1_Mono_Btls_MonoBtlsX509LookupMono__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D09FD8, List_1_T_Enumerator_Mono_Btls_MonoBtlsX509LookupMono__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D09FF8, Marshal_GetFunctionPointerForDelegate_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0A028, List_1_Mono_Btls_MonoBtlsX509LookupMono__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0A050, List_1_Mono_Btls_MonoBtlsX509LookupMono___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0A1D0, Marshal_GetFunctionPointerForDelegate_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0A1F0, Marshal_GetFunctionPointerForDelegate_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0A1F8, Marshal_GetFunctionPointerForDelegate_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0A290, Marshal_GetFunctionPointerForDelegate_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0A3F8, MonoBtlsContext_Dispose_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0A400, MonoBtlsContext_Dispose_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0A408, MonoBtlsContext_Dispose_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0A430, MonoBtlsContext_Dispose_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0A438, MonoBtlsContext_Dispose_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0A440, MonoBtlsContext_Dispose_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0A470, Nullable_1_Mono_Security_Interface_TlsProtocolCode__get_HasValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0A490, Nullable_1_Mono_Security_Interface_TlsProtocolCode__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0A500, Marshal_GetFunctionPointerForDelegate_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0A508, Marshal_GetFunctionPointerForDelegate_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0A510, Marshal_GetFunctionPointerForDelegate_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0A5D0, ConditionalWeakTable_2_System_Net_HttpWebRequest_Mono_Http_NtlmSession___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0A5E0, ConditionalWeakTable_2_System_Net_HttpWebRequest_Mono_Http_NtlmSession__GetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0A720, AsyncTaskMethodBuilder_1_System_IO_Stream__Start_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0A738, AsyncTaskMethodBuilder_1_System_IO_Stream__AwaitUnsafeOnCompleted_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0A750, Tuple_2_Guid_String___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0A778, Dictionary_2_System_String_System_Tuple_2___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0A780, Dictionary_2_System_Guid_Mono_Net_Security_MobileTlsProvider___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0A788, Dictionary_2_System_String_System_Tuple_2__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0A798, Dictionary_2_System_String_System_Tuple_2__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0A7D8, Dictionary_2_System_String_System_Tuple_2__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0A808, Dictionary_2_System_Guid_Mono_Net_Security_MobileTlsProvider__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0A810, Dictionary_2_System_Guid_Mono_Net_Security_MobileTlsProvider__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0A838, Tuple_2_Guid_String__get_Item1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0A898, Tuple_2_Guid_String__get_Item2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0A8C8, Dictionary_2_System_Guid_Mono_Net_Security_MobileTlsProvider__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0B168, Singleton_1_Crosstales_BWF_BWFManager___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0B178, UnityEvent_2_System_String_System_String__Invoke__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0B180, List_1_System_String__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0B188, UnityEvent_2_System_String_System_Boolean__Invoke__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0B198, Enumerable_ToList_36__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0B1A0, Enumerable_Distinct_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0B1C0, BaseManager_2_BadWordManager_Crosstales_BWF_Filter_BadWordFilter__Unmark__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0B240, List_1_System_String__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0B258, Enumerable_Where_48__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0B268, Enumerable_Aggregate_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0B2E0, List_1_Crosstales_BWF_Data_Source___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0B2F0, List_1_Crosstales_BWF_Data_Source__AddRange__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0B310, Enumerable_ToList_37__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0B320, Enumerable_OrderBy_18__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0B330, Enumerable_Distinct_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0B3A8, Singleton_1_Crosstales_BWF_BWFManager__OnApplicationQuit__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0B4B8, Enumerable_Sum_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0B518, Singleton_1_Crosstales_BWF_Manager_CapitalizationManager__get_Instance__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0B528, Singleton_1_Crosstales_BWF_Manager_DomainManager__get_Instance__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0B538, Singleton_1_Crosstales_BWF_Manager_PunctuationManager__get_Instance__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0B548, Singleton_1_Crosstales_BWF_Manager_BadWordManager__get_Instance__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0B558, BaseManager_2_DomainManager_Crosstales_BWF_Filter_DomainFilter__get_isReady__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0B568, BaseManager_2_CapitalizationManager_Crosstales_BWF_Filter_CapitalizationFilter__get_isReady__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0B578, BaseManager_2_PunctuationManager_Crosstales_BWF_Filter_PunctuationFilter__get_isReady__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0B588, BaseManager_2_BadWordManager_Crosstales_BWF_Filter_BadWordFilter__get_isReady__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0B7C0, Component_GetComponent_139__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0B858, Enumerable_Where_49__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0B898, List_1_Crosstales_Common_Model_Enum_Platform__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0BFE0, List_1_System_String___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0BFE8, List_1_System_String__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0C078, List_1_System_String___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0C080, List_1_System_String__AddRange__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0C090, Enumerable_ToArray_30__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0C098, Enumerable_OrderBy_19__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0C108, GameObject_AddComponent_85__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0C1C0, Singleton_1_TakeScreenshot___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0C1E8, Singleton_1_SurviveSceneSwitch___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0C218, Enumerable_Where_50__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0C368, Enumerable_All_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0C390, Enumerable_Any_14__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0C640, UnityEvent_1_UnityEngine_SpriteRenderer__Invoke__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0C920, Marshal_GetFunctionPointerForDelegate_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0C958, ConditionalWeakTable_2_System_Object_System_Threading_OSSpecificSynchronizationContext__GetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0C980, ConditionalWeakTable_2_System_Object_System_Threading_OSSpecificSynchronizationContext___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0CAF0, List_1_T_Enumerator_System_Threading_IAsyncLocal__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0CB00, List_1_System_Threading_IAsyncLocal___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0CB08, List_1_System_Threading_IAsyncLocal___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0CB10, List_1_System_Threading_IAsyncLocal__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0CB28, Dictionary_2_System_Threading_IAsyncLocal_System_Object__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0CB30, Dictionary_2_System_Threading_IAsyncLocal_System_Object___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0CB38, Dictionary_2_System_Threading_IAsyncLocal_System_Object___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0CB40, Dictionary_2_System_Threading_IAsyncLocal_System_Object__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0CB78, List_1_System_Threading_IAsyncLocal__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0CB80, List_1_T_Enumerator_System_Threading_IAsyncLocal__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0CB88, List_1_T_Enumerator_System_Threading_IAsyncLocal__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0CC08, Task_1_Task__ConfigureAwait__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0CC18, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Threading_Tasks_Task__get_IsCompleted__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0CC20, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Threading_Tasks_Task__GetResult__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0CC28, ConfiguredTaskAwaitable_1_System_Threading_Tasks_Task__GetAwaiter__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0CC40, AsyncTaskMethodBuilder_1_System_Boolean__AwaitUnsafeOnCompleted_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0CDF0, LowLevelList_1_System_Exception__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0CE58, LowLevelListWithIList_1_System_Exception___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0CE68, SparselyPopulatedArray_1_CancellationCallbackInfo__get_Tail__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0CE78, SparselyPopulatedArrayFragment_1_CancellationCallbackInfo__get_Prev__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0CE80, SparselyPopulatedArrayFragment_1_CancellationCallbackInfo__get_Length__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0CE88, SparselyPopulatedArrayFragment_1_CancellationCallbackInfo__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0CEB8, SparselyPopulatedArray_1_CancellationCallbackInfo___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0CEC0, SparselyPopulatedArray_1_CancellationCallbackInfo__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0CEE0, KeyValuePair_2_System_Byte_System_Text_Encoding__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0CEE8, KeyValuePair_2_System_Byte_System_Text_Encoding__get_Key__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0CF10, KeyValuePair_2_System_Byte_System_Text_Encoding___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0CF50, SparselyPopulatedArrayFragment_1_CancellationCallbackInfo__SafeAtomicRemove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0CF58, SparselyPopulatedArrayAddInfo_1_CancellationCallbackInfo__get_Source__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0CF60, SparselyPopulatedArrayAddInfo_1_CancellationCallbackInfo__get_Index__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0D558, AttributeHelperEngine_GetCustomAttributeOfType_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0D6E0, List_1_System_ModifierSpec___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0D6E8, List_1_System_ModifierSpec__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0D6F8, List_1_System_TypeIdentifier___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0D700, List_1_System_TypeIdentifier__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0D778, List_1_System_TypeSpec___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0D780, List_1_System_TypeSpec__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0D788, List_1_T_Enumerator_System_ModifierSpec__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0D790, List_1_System_TypeSpec__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0D798, List_1_System_TypeSpec__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0D7A0, List_1_System_TypeIdentifier__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0D7A8, List_1_T_Enumerator_System_TypeIdentifier__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0D7B0, List_1_T_Enumerator_System_TypeIdentifier__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0D7B8, List_1_T_Enumerator_System_TypeIdentifier__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0D7F8, List_1_System_ModifierSpec__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0D800, List_1_T_Enumerator_System_ModifierSpec__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0D808, List_1_T_Enumerator_System_ModifierSpec__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0DCA8, List_1_T_Enumerator_System_Net_IPAddress__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0DCF0, List_1_T_Enumerator_System_Net_IPAddress__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0DCF8, List_1_T_Enumerator_System_Net_IPAddress__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0DD00, List_1_System_Net_IPAddress__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0DD08, List_1_System_Net_IPAddress___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0DD10, List_1_System_Net_IPAddress__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0DD18, List_1_System_Net_IPAddress__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0DEC0, WebClient_HandleCompletion_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0DEE0, WebClient_HandleCompletion_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0DEE8, WebClient_HandleCompletion_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0DF30, WebClient_HandleCompletion_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0DF88, WebClient_HandleCompletion_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0DF90, WebClient_HandleCompletion_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0DFC0, WebClient_HandleCompletion_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0DFF0, WebClient_HandleCompletion_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0E048, WebClient_HandleCompletion_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0E060, AsyncVoidMethodBuilder_AwaitUnsafeOnCompleted_13__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0E0C8, AsyncTaskMethodBuilder_1_System_Net_WebResponse__SetStateMachine__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0E0E0, AsyncVoidMethodBuilder_AwaitUnsafeOnCompleted_14__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0E0F0, AsyncTaskMethodBuilder_1_System_Net_WebResponse__SetResult__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0E0F8, AsyncTaskMethodBuilder_1_System_Net_WebResponse__AwaitUnsafeOnCompleted__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0E100, AsyncTaskMethodBuilder_1_System_Net_WebResponse__SetException__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0E108, RendezvousAwaitable_1_System_IAsyncResult__get_IsCompleted__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0E110, RendezvousAwaitable_1_System_IAsyncResult__GetResult__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0E118, RendezvousAwaitable_1_System_IAsyncResult__GetAwaiter__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0E160, _f_AnonymousType7_2_System_Text_RegularExpressions_Regex_System_Text_RegularExpressions_Match__get_match__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0E170, _f_AnonymousType7_2_System_Text_RegularExpressions_Regex_System_Text_RegularExpressions_Match___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0E180, _f_AnonymousType6_2_Crosstales_BWF_Provider_DomainProvider_Crosstales_BWF_Data_Source___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0E188, _f_AnonymousType6_2_Crosstales_BWF_Provider_DomainProvider_Crosstales_BWF_Data_Source__get_src__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0E220, Enumerable_SelectMany_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0E228, Enumerable_SelectMany_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0E230, Enumerable_Aggregate_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0E348, Enumerable_Where_51__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0E350, Enumerable_Where_52__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0E358, Enumerable_Select_77__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0E360, Enumerable_SelectMany_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0E368, Enumerable_Any_15__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0E388, List_1_Crosstales_BWF_Provider_DomainProvider__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0E390, List_1_Crosstales_BWF_Provider_DomainProvider___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0E398, List_1_Crosstales_BWF_Provider_DomainProvider__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0E3A0, List_1_T_Enumerator_Crosstales_BWF_Provider_DomainProvider__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0E3A8, List_1_T_Enumerator_Crosstales_BWF_Provider_DomainProvider__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0E3B0, List_1_T_Enumerator_Crosstales_BWF_Provider_DomainProvider__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0E3F8, KeyValuePair_2_System_String_Crosstales_BWF_Data_Source__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0E400, KeyValuePair_2_System_String_Crosstales_BWF_Data_Source__get_Key__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0E410, Dictionary_2_System_String_Crosstales_BWF_Data_Source___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0E468, List_1_Crosstales_BWF_Data_Source___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0E480, Enumerable_Select_78__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0E488, Enumerable_OrderBy_20__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0E498, _f_AnonymousType5_2_System_Text_RegularExpressions_Match_System_Text_RegularExpressions_Capture__get_capture__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0E4A8, _f_AnonymousType5_2_System_Text_RegularExpressions_Match_System_Text_RegularExpressions_Capture___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0E4B0, _f_AnonymousType4_2_f_AnonymousType3_2_System_Text_RegularExpressions_MatchCollection_System_Text_RegularExpressions_Match_System_Text_RegularExpressions_Capture__get_capture__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0E4C0, _f_AnonymousType4_2_f_AnonymousType3_2_System_Text_RegularExpressions_MatchCollection_System_Text_RegularExpressions_Match_System_Text_RegularExpressions_Capture___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0E4C8, _f_AnonymousType3_2_System_Text_RegularExpressions_MatchCollection_System_Text_RegularExpressions_Match__get_match__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0E4D8, _f_AnonymousType3_2_System_Text_RegularExpressions_MatchCollection_System_Text_RegularExpressions_Match___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0E4E0, Enumerable_Cast_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0E4E8, _f_AnonymousType2_2_System_Collections_Generic_List_1_System_String__get_simpleWord__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0E4F8, _f_AnonymousType2_2_System_Collections_Generic_List_1_System_String___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0E508, _f_AnonymousType1_2_Crosstales_BWF_Provider_BadWordProvider_Crosstales_BWF_Data_Source___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0E530, _f_AnonymousType0_2_Crosstales_BWF_Provider_BadWordProvider_Crosstales_BWF_Data_Source___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0E588, _f_AnonymousType1_2_Crosstales_BWF_Provider_BadWordProvider_Crosstales_BWF_Data_Source__get_src__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0E5A8, _f_AnonymousType0_2_Crosstales_BWF_Provider_BadWordProvider_Crosstales_BWF_Data_Source__get_src__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0E5B8, Dictionary_2_System_String_Crosstales_BWF_Data_Source__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0E908, List_1_System_String__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0E928, List_1_T_Enumerator_System_String__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0E938, List_1_T_Enumerator_System_String__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0E948, Enumerable_SelectMany_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0E968, List_1_T_Enumerator_System_String__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0EB80, List_1_System_String__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0ECB0, Enumerable_Where_53__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0ECC0, Enumerable_Where_54__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0ECD0, Enumerable_Where_55__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0ECE0, Enumerable_Select_79__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0ECF0, Enumerable_Select_80__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0ED00, Enumerable_Select_81__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0ED10, Enumerable_Select_82__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0ED20, Enumerable_SelectMany_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0ED30, Enumerable_SelectMany_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0ED40, Enumerable_SelectMany_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0ED50, Enumerable_SelectMany_12__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0ED60, Enumerable_SelectMany_13__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0ED70, Enumerable_Cast_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0EDE8, Dictionary_2_TKey_TValue_ValueCollection_System_String_List_1_System_Text_RegularExpressions_Regex__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0EDF8, Dictionary_2_TKey_TValue_ValueCollection_System_String_List_1_System_String__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0EE68, List_1_System_Text_RegularExpressions_Regex__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0EE98, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_List_1_System_String__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0EEA8, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_List_1_System_Text_RegularExpressions_Regex__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0EEB8, List_1_T_Enumerator_System_Text_RegularExpressions_Regex__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0EEC8, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_List_1_System_String__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0EED8, List_1_T_Enumerator_System_Text_RegularExpressions_Regex__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0EEE8, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_List_1_System_Text_RegularExpressions_Regex__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0EEF8, Enumerable_Any_16__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0EF08, Enumerable_Any_17__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0EF18, Dictionary_2_System_String_System_Text_RegularExpressions_Regex__get_Values__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0EF28, Dictionary_2_System_String_List_1_System_Text_RegularExpressions_Regex__get_Values__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0EF38, Dictionary_2_System_String_List_1_System_String__get_Values__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0EF48, Dictionary_2_System_String_List_1_System_Text_RegularExpressions_Regex__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0EF58, Dictionary_2_System_String_System_Text_RegularExpressions_Regex__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0EF68, Dictionary_2_System_String_List_1_System_String__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0EF88, List_1_T_Enumerator_System_Text_RegularExpressions_Regex__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0EF98, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_List_1_System_Text_RegularExpressions_Regex__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0EFA8, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_List_1_System_String__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0EFB8, Dictionary_2_System_String_List_1_System_String___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0EFC8, Dictionary_2_System_String_List_1_System_Text_RegularExpressions_Regex___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0EFD8, Dictionary_2_System_String_System_Text_RegularExpressions_Regex___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0F148, Enumerable_Where_56__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0F158, Enumerable_Where_57__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0F168, Enumerable_Where_58__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0F178, Enumerable_Select_83__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0F188, Enumerable_Select_84__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0F198, Enumerable_SelectMany_14__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0F1A8, Enumerable_SelectMany_15__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0F1B8, Enumerable_Any_18__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0F1C8, Dictionary_2_System_String_Crosstales_BWF_Data_Source__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0F248, List_1_Crosstales_BWF_Provider_BadWordProvider__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0F258, List_1_Crosstales_BWF_Provider_BadWordProvider___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0F268, List_1_Crosstales_BWF_Provider_BadWordProvider__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0F278, ExtensionMethods_1_CTAddRange_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0F288, ExtensionMethods_1_CTAddRange_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0F298, ExtensionMethods_1_CTAddRange_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0F2A8, List_1_T_Enumerator_Crosstales_BWF_Provider_BadWordProvider__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0F2B8, List_1_T_Enumerator_Crosstales_BWF_Provider_BadWordProvider__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0F2D8, List_1_T_Enumerator_Crosstales_BWF_Provider_BadWordProvider__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0F318, BaseManager_2_PunctuationManager_Crosstales_BWF_Filter_PunctuationFilter__onReplaceAllComplete__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0F368, BaseManager_2_PunctuationManager_Crosstales_BWF_Filter_PunctuationFilter__onGetAllComplete__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0F3B8, BaseManager_2_PunctuationManager_Crosstales_BWF_Filter_PunctuationFilter__onContainsComplete__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0F3D8, BaseManager_2_PunctuationManager_Crosstales_BWF_Filter_PunctuationFilter___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0F4C8, Singleton_1_Crosstales_BWF_Manager_PunctuationManager__DeleteInstance__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0F4F8, Singleton_1_Crosstales_BWF_Manager_PunctuationManager__OnApplicationQuit__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0F518, Singleton_1_Crosstales_BWF_Manager_PunctuationManager__Awake__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0F568, BaseManager_2_DomainManager_Crosstales_BWF_Filter_DomainFilter__onReplaceAllComplete__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0F5B8, BaseManager_2_DomainManager_Crosstales_BWF_Filter_DomainFilter__onGetAllComplete__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0F608, BaseManager_2_DomainManager_Crosstales_BWF_Filter_DomainFilter__onContainsComplete__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0F638, BaseManager_2_DomainManager_Crosstales_BWF_Filter_DomainFilter___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0F6F8, Singleton_1_Crosstales_BWF_Manager_DomainManager__DeleteInstance__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0F728, Singleton_1_Crosstales_BWF_Manager_DomainManager__OnApplicationQuit__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0F748, Singleton_1_Crosstales_BWF_Manager_DomainManager__Awake__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0F7C8, BaseManager_2_CapitalizationManager_Crosstales_BWF_Filter_CapitalizationFilter__onReplaceAllComplete__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0F818, BaseManager_2_CapitalizationManager_Crosstales_BWF_Filter_CapitalizationFilter__onGetAllComplete__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0F868, BaseManager_2_CapitalizationManager_Crosstales_BWF_Filter_CapitalizationFilter__onContainsComplete__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0F888, BaseManager_2_CapitalizationManager_Crosstales_BWF_Filter_CapitalizationFilter___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0F948, Array_Empty_54__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0F988, Singleton_1_Crosstales_BWF_Manager_CapitalizationManager__DeleteInstance__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0F9B8, Singleton_1_Crosstales_BWF_Manager_CapitalizationManager__OnApplicationQuit__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0F9D8, Singleton_1_Crosstales_BWF_Manager_CapitalizationManager__Awake__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0FA28, BaseManager_2_BadWordManager_Crosstales_BWF_Filter_BadWordFilter__onReplaceAllComplete__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0FA78, BaseManager_2_BadWordManager_Crosstales_BWF_Filter_BadWordFilter__onGetAllComplete__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0FAC8, BaseManager_2_BadWordManager_Crosstales_BWF_Filter_BadWordFilter__onContainsComplete__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0FAF8, BaseManager_2_BadWordManager_Crosstales_BWF_Filter_BadWordFilter___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0FBE8, Singleton_1_Crosstales_BWF_Manager_BadWordManager__DeleteInstance__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0FC18, Singleton_1_Crosstales_BWF_Manager_BadWordManager__OnApplicationQuit__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0FC38, Singleton_1_Crosstales_BWF_Manager_BadWordManager__Awake__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0FDC0, List_1_Crosstales_BWF_Model_Domains__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0FED0, List_1_Crosstales_BWF_Model_Domains___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0FF30, List_1_Crosstales_BWF_Model_Domains__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0FF40, List_1_T_Enumerator_Crosstales_BWF_Model_Domains__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0FF50, List_1_T_Enumerator_Crosstales_BWF_Model_Domains__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0FF80, List_1_T_Enumerator_Crosstales_BWF_Model_Domains__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D0FF90, List_1_Crosstales_BWF_Model_Domains__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D10180, List_1_System_String__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D10190, List_1_Crosstales_BWF_Model_BadWords__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D102A0, Enumerable_Where_59__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D10300, List_1_Crosstales_BWF_Model_BadWords___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D10338, Dictionary_2_System_String_System_Text_RegularExpressions_Regex___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D10340, Dictionary_2_System_String_List_1_System_Text_RegularExpressions_Regex___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D10348, Dictionary_2_System_String_List_1_System_String___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D10370, ExtensionMethods_1_CTDump_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D103B0, List_1_System_Text_RegularExpressions_Regex___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D103B8, List_1_Crosstales_BWF_Model_BadWords__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D103C0, List_1_System_Text_RegularExpressions_Regex__AddRange__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D103D0, List_1_T_Enumerator_Crosstales_BWF_Model_BadWords__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D103D8, List_1_T_Enumerator_Crosstales_BWF_Model_BadWords__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D103E0, Enumerable_Select_85__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D103E8, Dictionary_2_System_String_System_Text_RegularExpressions_Regex__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D103F0, Dictionary_2_System_String_List_1_System_String__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D103F8, Dictionary_2_System_String_List_1_System_Text_RegularExpressions_Regex__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D10400, Dictionary_2_System_String_List_1_System_Text_RegularExpressions_Regex__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D10408, Dictionary_2_System_String_System_Text_RegularExpressions_Regex__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D10410, Dictionary_2_System_String_List_1_System_String__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D10418, Dictionary_2_System_String_List_1_System_String__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D10420, Dictionary_2_System_String_System_Text_RegularExpressions_Regex__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D10428, Dictionary_2_System_String_List_1_System_Text_RegularExpressions_Regex__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D10438, List_1_T_Enumerator_Crosstales_BWF_Model_BadWords__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D10440, List_1_Crosstales_BWF_Model_BadWords__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D10480, UnityEvent_2_System_String_System_String___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D10488, UnityEvent_2_System_String_System_Boolean___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D10800, LinkedList_1_System_WeakReference___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D10810, LinkedList_1_System_WeakReference__AddLast__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D10828, LinkedListNode_1_System_WeakReference__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D10830, LinkedListNode_1_System_WeakReference__get_Next__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D10838, LinkedList_1_System_WeakReference__get_First__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D10840, LinkedList_1_System_WeakReference__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D10848, LinkedList_1_System_WeakReference__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D10850, LinkedList_1_System_WeakReference__AddLast_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D108A0, List_1_System_Uri___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D108D8, List_1_System_Uri__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D108E0, List_1_System_Uri__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D10900, List_1_System_Uri__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D10AE8, Task_1_System_IO_Stream__get_Factory__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D10B00, TaskFactory_1_System_IO_Stream__FromAsync__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D10B50, Task_Run_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D10BA0, Task_Run_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D10FA8, List_1_UnityEngine_Camera___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D10FD8, List_1_UnityEngine_Camera__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11018, Task_1_Task__TrySetResult__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11028, Task_1_Task___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11058, List_1_UnityEngine_Camera__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11068, List_1_UnityEngine_Camera__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11088, List_1_UnityEngine_Camera__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D110B8, LowLevelList_1_System_Runtime_ExceptionServices_ExceptionDispatchInfo__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D110E0, LowLevelList_1_System_Runtime_ExceptionServices_ExceptionDispatchInfo__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D110F0, LowLevelList_1_System_Runtime_ExceptionServices_ExceptionDispatchInfo__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D110F8, LowLevelList_1_System_Runtime_ExceptionServices_ExceptionDispatchInfo__AddRange__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11108, LowLevelListWithIList_1_System_Runtime_ExceptionServices_ExceptionDispatchInfo___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D111F8, Dictionary_2_System_Int32_System_Threading_Tasks_Task__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11200, Dictionary_2_System_Int32_System_Threading_Tasks_Task__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11210, LowLevelList_1_System_Threading_Tasks_Task__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11278, Dictionary_2_System_Int32_System_Threading_Tasks_Task___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11280, TaskFactory_StartNew_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11470, ReadOnlyCollection_1_System_Runtime_ExceptionServices_ExceptionDispatchInfo___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11478, Array_Empty_55__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D114B0, LowLevelList_1_System_Threading_Tasks_Task__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D114C0, LowLevelListWithIList_1_System_Threading_Tasks_Task___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D114D8, LowLevelList_1_System_Threading_Tasks_Task__RemoveAll__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D114F8, LazyInitializer_EnsureInitialized_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D115C8, UnityEvent_1_UnityEngine_Networking_PlayerConnection_MessageEventArgs___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D115E8, EntityEventListener_1_IGoatState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D115F8, EventHandler_1_UnregisterEvent_54__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11600, LowLevelDictionary_2_System_Int32_System_Threading_Tasks_Task___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11610, EventHandler_1_UnregisterEvent_55__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11638, Tuple_3_System_Threading_Tasks_Task_System_Threading_Tasks_Task_System_Threading_Tasks_TaskContinuation__get_Item3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11640, Tuple_3_System_Threading_Tasks_Task_System_Threading_Tasks_Task_System_Threading_Tasks_TaskContinuation__get_Item2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11650, Tuple_3_System_Threading_Tasks_Task_System_Threading_Tasks_Task_System_Threading_Tasks_TaskContinuation__get_Item1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11660, GameObject_GetComponent_117__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11668, GameObject_GetComponent_118__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11678, Tuple_3_System_Threading_Tasks_Task_System_Threading_Tasks_Task_System_Threading_Tasks_TaskContinuation___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D116A8, Enumerable_Where_60__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D116B8, Enumerable_Any_19__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D116D8, RendezvousAwaitable_1_System_IAsyncResult__set_RunContinuationsAsynchronously__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D116E8, RendezvousAwaitable_1_System_IAsyncResult___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D116F0, List_1_UnityEngine_Networking_PlayerConnection_PlayerEditorConnectionEvents_MessageTypeSubscribers__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D116F8, Enumerable_SingleOrDefault_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11728, UnityEvent_1_UnityEngine_Networking_PlayerConnection_MessageEventArgs__Invoke__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11750, List_1_UnityEngine_Networking_PlayerConnection_PlayerEditorConnectionEvents_MessageTypeSubscribers__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11758, LowLevelDictionary_2_System_Int32_System_Threading_Tasks_Task__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11778, LowLevelDictionary_2_System_Int32_System_Threading_Tasks_Task__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11798, List_1_UnityEngine_Networking_PlayerConnection_PlayerEditorConnectionEvents_MessageTypeSubscribers___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D117A8, RendezvousAwaitable_1_System_IAsyncResult__SetResult__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D117C0, UnityEvent_1_UnityEngine_Networking_PlayerConnection_MessageEventArgs__RemoveListener__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11880, Object_1_FindAnyObjectByType_15__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D118D8, EntityEventListenerBase_1_Photon_Bolt_IGoatState__get_state__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D118E0, List_1_System_Threading_Timer__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D118E8, List_1_System_Threading_Timer__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D118F0, List_1_System_Threading_Timer__Sort__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11900, List_1_System_Threading_Timer__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11910, EventHandler_1_RegisterEvent_56__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11958, List_1_System_Threading_Timer__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11968, List_1_System_Threading_Timer__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11990, EventHandler_1_RegisterEvent_57__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D119A8, Component_GetComponents_20__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D119B8, Component_GetComponent_140__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D119C0, Component_GetComponent_141__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D119D0, ScriptableObject_CreateInstance_18__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D119F8, UnityEvent_1_UnityEngine_Networking_PlayerConnection_MessageEventArgs__AddListener__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11A30, Enumerable_Any_20__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11A48, Dictionary_2_System_Type_System_Object___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11A78, Dictionary_2_System_Int32_Stack_1_UnityEngine_GameObject___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11AE0, Stack_1_UnityEngine_GameObject___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11AF0, Stack_1_UnityEngine_GameObject__Push__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11AF8, List_1_System_Threading_Timer___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11B18, GameObjectExtensions_GetCachedComponent_15__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11B28, Dictionary_2_System_Int32_Stack_1_UnityEngine_GameObject__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11BC8, List_1_UnityEngine_GameObject__set_Capacity__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11BE0, List_1_UnityEngine_GameObject__get_Capacity__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11C20, Stack_1_UnityEngine_GameObject__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11C30, Stack_1_UnityEngine_GameObject__Pop__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11C38, Dictionary_2_System_Int32_Stack_1_UnityEngine_GameObject__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11C60, Object_1_Instantiate_23__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11C90, List_1_UnityEngine_GameObject__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11CA0, List_1_UnityEngine_GameObject__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11CB0, List_1_UnityEngine_GameObject__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11CC0, List_1_UnityEngine_GameObject___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11CD0, List_1_UnityEngine_GameObject__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11D18, GameObject_AddComponent_86__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11DD8, List_1_UnityEngine_Events_PersistentCall__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11DF0, List_1_T_Enumerator_UnityEngine_Events_PersistentCall__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11E08, List_1_T_Enumerator_UnityEngine_Events_PersistentCall__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11E38, List_1_T_Enumerator_UnityEngine_Events_PersistentCall__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11E48, List_1_UnityEngine_Events_BaseInvokableCall___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11E58, List_1_UnityEngine_Events_BaseInvokableCall__RemoveAll__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11E60, List_1_UnityEngine_Events_BaseInvokableCall__AddRange__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11E70, AsyncOperationHandle_1_UnityEngine_GameObject__add_Completed__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11E80, List_1_UnityEngine_Events_BaseInvokableCall__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11E88, List_1_UnityEngine_Events_BaseInvokableCall___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11E98, List_1_UnityEngine_Events_BaseInvokableCall__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11EC8, List_1_UnityEngine_Events_BaseInvokableCall___ctor_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11F18, List_1_UnityEngine_Renderer___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11F28, List_1_UnityEngine_Renderer__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11F30, List_1_T_Enumerator_UnityEngine_Renderer__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11F38, List_1_T_Enumerator_UnityEngine_Renderer__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11F50, List_1_T_Enumerator_UnityEngine_Renderer__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11F60, CachedInvokableCall_1_System_String___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11F68, Component_GetComponent_142__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11F70, List_1_UnityEngine_Renderer__AddRange__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11F80, Component_GetComponentsInChildren_43__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D11FD8, List_1_UnityEngine_Events_PersistentCall___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12010, Component_GetComponent_143__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12020, ThreadPoolWorkQueue_SparseArray_1_ThreadPoolWorkQueue_WorkStealingQueue__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12030, GameObject_GetComponent_119__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12038, ThreadPoolWorkQueue_SparseArray_1_ThreadPoolWorkQueue_WorkStealingQueue__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D120A8, Component_GetComponent_144__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D120B8, ThreadPoolWorkQueue_SparseArray_1_ThreadPoolWorkQueue_WorkStealingQueue___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D120D8, ThreadPoolWorkQueue_SparseArray_1_ThreadPoolWorkQueue_WorkStealingQueue__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D120F8, PostProcessProfile_TryGetSettings_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D121B0, GameObject_GetComponent_120__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D121E0, AsyncLocal_1_System_Globalization_CultureInfo__set_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D121F0, AsyncLocal_1_System_Globalization_CultureInfo___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12218, Dictionary_2_System_Int32_BehaviorDesigner_Runtime_BehaviorTree___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12238, Dictionary_2_System_Int32_BehaviorDesigner_Runtime_BehaviorTree__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12278, AsyncLocalValueChangedArgs_1_System_Globalization_CultureInfo__get_CurrentValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12288, GameObject_GetComponent_121__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12370, Array_Empty_56__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12380, GameObject_GetComponents_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12388, Dictionary_2_System_Int32_BehaviorDesigner_Runtime_BehaviorTree__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12390, Component_GetComponents_21__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D125B8, Dictionary_2_UnityEngine_GameObject_UnityEngine_Camera___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D125C8, Dictionary_2_UnityEngine_GameObject_UnityEngine_Camera__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D125D0, Object_1_FindObjectsOfType_15__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D125E0, Dictionary_2_UnityEngine_GameObject_UnityEngine_Camera__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D125E8, Dictionary_2_UnityEngine_GameObject_UnityEngine_Camera__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D125F0, Dictionary_2_UnityEngine_GameObject_UnityEngine_Camera__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D125F8, Component_GetComponent_145__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12608, GenericObjectPool_Return_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12618, GenericObjectPool_Get_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12620, Dictionary_2_System_String_List_1_Opsive_Shared_Events_InvokableActionBase__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12628, Dictionary_2_System_Object_Dictionary_2_System_String_List_1_Opsive_Shared_Events_InvokableActionBase__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12638, Dictionary_2_System_Object_Dictionary_2_System_String_List_1_Opsive_Shared_Events_InvokableActionBase___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12640, Dictionary_2_System_String_List_1_Opsive_Shared_Events_InvokableActionBase__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12648, Dictionary_2_System_Object_Dictionary_2_System_String_List_1_Opsive_Shared_Events_InvokableActionBase__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12650, List_1_Opsive_Shared_Events_InvokableActionBase___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12658, List_1_Opsive_Shared_Events_InvokableActionBase__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12660, Dictionary_2_System_String_List_1_Opsive_Shared_Events_InvokableActionBase__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12668, Dictionary_2_System_String_List_1_Opsive_Shared_Events_InvokableActionBase__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12670, Dictionary_2_System_String_List_1_Opsive_Shared_Events_InvokableActionBase__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12680, Dictionary_2_System_String_List_1_Opsive_Shared_Events_InvokableActionBase___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12688, Dictionary_2_System_Object_Dictionary_2_System_String_List_1_Opsive_Shared_Events_InvokableActionBase__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12690, Dictionary_2_System_Object_Dictionary_2_System_String_List_1_Opsive_Shared_Events_InvokableActionBase__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D126A0, GenericObjectPool_Get_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D126C0, GenericObjectPool_Return_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D126E0, Dictionary_2_System_Int32_UnityEngine_GameObject__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D126E8, Dictionary_2_System_Int32_UnityEngine_GameObject__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D126F8, GameObject_AddComponent_87__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12700, Dictionary_2_System_Int32_UnityEngine_GameObject__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12718, Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12720, Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1__ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12738, GameObject_AddComponent_88__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12748, Dictionary_2_System_Int32_UnityEngine_GameObject___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12750, Array_Resize_141__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12760, Dictionary_2_System_Reflection_PropertyInfo_Dictionary_2_System_Type_System_Boolean___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12768, Dictionary_2_System_Reflection_PropertyInfo_Dictionary_2_System_Type_System_Boolean__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12770, Dictionary_2_System_Reflection_PropertyInfo_Dictionary_2_System_Type_System_Boolean__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12860, List_1_System_Reflection_PropertyInfo___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12870, List_1_System_Reflection_PropertyInfo__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12880, List_1_System_Reflection_PropertyInfo__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D128A0, Dictionary_2_System_Type_System_Reflection_PropertyInfo___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D128B0, Dictionary_2_System_Type_System_Reflection_PropertyInfo__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D128C0, Dictionary_2_System_Type_System_Reflection_PropertyInfo__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12A18, EntityEventListenerBase_1_Photon_Bolt_IMapState__get_state__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12A50, EventHandler_1_ExecuteEvent_67__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12A58, Component_GetComponent_146__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12A70, UltimateCharacterLocomotion_GetAbilities_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12AC0, Array_Find_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12AD8, Object_1_FindAnyObjectByType_16__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12AF8, GameObject_GetComponentsInChildren_19__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12B00, GameObject_GetComponent_122__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12B08, GameObject_GetComponent_123__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12B10, Component_GetComponent_147__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12B58, EventHandler_1_UnregisterEvent_56__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12B60, EventHandler_1_UnregisterEvent_57__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12B90, EventHandler_1_ExecuteEvent_68__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12B98, EventHandler_1_ExecuteEvent_69__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12BE8, EventHandler_1_RegisterEvent_58__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12BF0, EventHandler_1_RegisterEvent_59__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12C88, Array_Find_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12D48, Object_1_Instantiate_24__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12D50, GameObject_GetComponent_124__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12DD0, Component_GetComponent_148__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12DD8, Component_GetComponent_149__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12DE0, Component_GetComponent_150__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12E40, EventHandler_1_UnregisterEvent_58__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12E50, EventHandler_1_RegisterEvent_60__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12E90, UltimateCharacterLocomotion_GetAbility_15__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12E98, UltimateCharacterLocomotion_GetAbility_16__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12EA0, UltimateCharacterLocomotion_GetAbilities_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12EC8, Array_Find_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12ED0, Component_GetComponent_151__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12F00, Dictionary_2_UnityEngine_Collider_System_Int32___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12F08, Dictionary_2_UnityEngine_Collider_System_Int32__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12F10, Dictionary_2_UnityEngine_Collider_System_Int32__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12F18, Dictionary_2_UnityEngine_Collider_System_Int32__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12F20, Dictionary_2_UnityEngine_Collider_System_Int32__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12F38, EntityEventListener_1_IEnemyState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12F40, List_1_UnityEngine_SkinnedMeshRenderer__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12F48, List_1_T_Enumerator_UnityEngine_SkinnedMeshRenderer__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12F50, List_1_T_Enumerator_UnityEngine_SkinnedMeshRenderer__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12F58, List_1_T_Enumerator_UnityEngine_SkinnedMeshRenderer__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12FB8, Object_1_FindAnyObjectByType_17__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12FC0, List_1_UnityEngine_SkinnedMeshRenderer__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12FC8, List_1_UnityEngine_SkinnedMeshRenderer__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12FD0, List_1_UnityEngine_SkinnedMeshRenderer__FindIndex__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12FD8, Enumerable_ToList_38__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D12FF8, List_1_UnityEngine_Material__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D13000, List_1_T_Enumerator_UnityEngine_Material__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D13008, List_1_T_Enumerator_UnityEngine_Material__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D13010, List_1_T_Enumerator_UnityEngine_Material__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D13058, BoltEntity_GetState_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D13090, List_1_UnityEngine_Material___ctor_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D130A0, Dictionary_2_KnockoutRagdoll_GenericLookAt___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D130C0, Component_GetComponent_152__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D13110, Dictionary_2_KnockoutRagdoll_GenericLookAt__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D13120, GameObject_AddComponent_89__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D13128, Dictionary_2_KnockoutRagdoll_GenericLookAt__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D13140, List_1_BehaviorDesigner_Runtime_Tasks_MapProgressResumableWait__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D13148, Behavior_FindTasks_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D13160, EventHandler_1_UnregisterEvent_59__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D13190, EventHandler_1_RegisterEvent_61__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D13198, EntityEventListenerBase_1_Photon_Bolt_IEnemyState__get_state__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D131F0, List_1_UnityEngine_Material__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D131F8, GameObject_GetComponent_125__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D13208, Component_GetComponentsInChildren_44__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D13210, Component_GetComponent_153__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D13268, Component_GetComponent_154__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D13270, Component_GetComponent_155__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D132B0, EntityEventListener_1_IDoorState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D132B8, Task_1_System_Security_Cryptography_X509Certificates_X509Certificate2__get_Factory__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D132C0, TaskFactory_1_System_Security_Cryptography_X509Certificates_X509Certificate2__FromAsync__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D13358, Component_GetComponent_156__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D13360, Component_GetComponent_157__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D13450, List_1_System_String__CopyTo__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D13498, Task_1_System_Net_HttpListenerContext__get_Factory__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D134A0, TaskFactory_1_System_Net_HttpListenerContext__FromAsync__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D135E0, List_1_T_Enumerator_System_Net_HttpConnection__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D135E8, List_1_T_Enumerator_System_Net_HttpConnection__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D135F0, Dictionary_2_System_Net_HttpConnection_System_Net_HttpConnection__get_Keys__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D135F8, Dictionary_2_System_Net_HttpConnection_System_Net_HttpConnection__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D13608, List_1_System_Net_HttpConnection___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D13610, List_1_System_Net_HttpConnection__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D13638, Dictionary_2_System_Net_HttpConnection_System_Net_HttpConnection__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D13640, Dictionary_2_System_Net_HttpConnection_System_Net_HttpConnection__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D13658, List_1_T_Enumerator_System_Net_HttpConnection__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D13690, TaskFactory_1_System_Net_IPHostEntry__FromAsync__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D136A8, Dictionary_2_System_Net_HttpConnection_System_Net_HttpConnection___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D136B0, Task_1_System_Net_IPAddress__get_Factory__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D136B8, TaskFactory_1_System_Net_IPAddress__FromAsync__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D136C0, Task_1_System_Net_IPHostEntry__get_Factory__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D136C8, TaskFactory_1_System_Net_IPHostEntry__FromAsync_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D13AB8, List_1_UnityEngine_GUILayoutEntry__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D13BA8, List_1_UnityEngine_GUILayoutEntry___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D13C50, Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_GUIStyle__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D13C60, EventHandler_1_UnregisterEvent_60__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D13C68, EventHandler_1_UnregisterEvent_61__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D13D28, EventHandler_1_RegisterEvent_62__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D13D38, EventHandler_1_RegisterEvent_63__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D13D58, Dictionary_2_Opsive_Shared_Inventory_ItemDefinitionBase_System_String___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D13D68, Dictionary_2_Opsive_Shared_Inventory_ItemDefinitionBase_System_String__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D13D78, Component_GetComponent_158__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D13D98, Dictionary_2_Opsive_Shared_Inventory_ItemDefinitionBase_System_String__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D13DC8, EventHandler_1_ExecuteEvent_70__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D13DD0, Dictionary_2_System_String_UnityEngine_GUIStyle__get_Values__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D13E18, Ability_GetComponent_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D13E80, UltimateCharacterLocomotion_GetAbilities_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D13E88, Dictionary_2_System_String_UnityEngine_GUIStyle__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D13E90, Dictionary_2_System_String_UnityEngine_GUIStyle___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D13E98, Dictionary_2_System_String_UnityEngine_GUIStyle__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D13EB8, Component_GetComponentInChildren_12__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D13EF8, Dictionary_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D13F28, Dictionary_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D13F30, Dictionary_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D13F48, List_1_UnityEngine_GUILayoutEntry__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D13F50, List_1_T_Enumerator_UnityEngine_GUILayoutEntry__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D13F58, List_1_T_Enumerator_UnityEngine_GUILayoutEntry__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D13F60, List_1_T_Enumerator_UnityEngine_GUILayoutEntry__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14050, List_1_UnityEngine_GUILayoutEntry__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14060, List_1_UnityEngine_GUILayoutEntry__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14070, GenericObjectPool_Get_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14088, GameObjectExtensions_GetCachedComponent_16__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D140B8, GameObjectExtensions_GetCachedComponent_17__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D140D8, GenericObjectPool_Return_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D140F0, EventHandler_1_UnregisterEvent_62__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14100, GameObjectExtensions_GetCachedComponent_18__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14118, Array_Resize_142__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14128, GameObjectExtensions_GetCachedComponent_19__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14138, UltimateCharacterLocomotion_GetAbility_17__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14190, GameObject_GetComponent_126__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14198, EventHandler_1_RegisterEvent_64__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D141A0, Component_GetComponentsInChildren_45__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D141A8, Component_GetComponentInParent_20__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D141C0, SubsystemManager_GetInstances_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D141C8, List_1_UnityEngine_XR_XRInputSubsystem__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D141D0, List_1_UnityEngine_XR_XRInputSubsystem__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D141F8, UltimateCharacterLocomotion_GetAbilities_12__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14208, GameObjectExtensions_GetCachedComponent_20__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14210, Component_GetComponentInChildren_13__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14230, List_1_UnityEngine_XR_XRInputSubsystem___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14248, EventHandler_1_UnregisterEvent_63__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14258, EventHandler_1_ExecuteEvent_71__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D142F0, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_Hold_StopAction___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D142F8, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_FlickReload_StartFlickDirection___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14318, EventHandler_1_RegisterEvent_65__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14330, GameObjectExtensions_GetCachedParentComponent_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14338, GameObjectExtensions_GetCachedComponent_21__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14340, Component_GetComponent_159__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D143C8, Object_1_FindObjectOfType_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D143D0, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_MoveInPlace_HandMovementOptions___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14438, GameObject_GetComponent_127__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14440, GameObject_AddComponent_90__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14448, GameObject_GetComponent_128__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14450, Component_GetComponent_160__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14470, GameObject_AddComponent_91__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14478, GameObject_AddComponent_92__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14480, GameObject_AddComponent_93__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14488, GameObject_AddComponent_94__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14490, Component_GetComponentInChildren_14__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14578, GameObject_GetComponent_129__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14580, GameObject_AddComponent_95__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14588, GameObject_AddComponent_96__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14598, GameObject_AddComponent_97__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D145A0, GameObject_AddComponent_98__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D145F8, GameObject_AddComponent_99__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14658, GameObject_GetComponent_130__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14668, GameObject_GetComponent_131__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14678, GameObject_GetComponentInChildren_12__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14688, Component_GetComponentsInChildren_46__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D146B0, List_1_Opsive_UltimateCharacterController_Inventory_ItemType__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D146B8, List_1_Opsive_UltimateCharacterController_Inventory_ItemType__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D146E0, List_1_Opsive_UltimateCharacterController_Inventory_ItemType___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D146E8, List_1_Opsive_UltimateCharacterController_Inventory_ItemType__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D146F8, GameObject_GetComponentsInChildren_20__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14700, GameObject_GetComponent_132__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14730, GameObject_GetComponent_133__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14748, Object_1_FindObjectsOfType_16__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14750, Object_1_FindObjectOfType_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14758, CameraController_GetViewType_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14780, Object_1_FindObjectOfType_12__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14788, GameObject_GetComponentInChildren_13__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D147D0, List_1_UnityEngine_Transform___ctor_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D147D8, List_1_Opsive_UltimateCharacterController_Character_Abilities_Interact___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D147F0, EntityEventListener_1_IPlayerState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14808, Component_GetComponent_161__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14860, Component_GetComponent_162__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14868, UltimateCharacterLocomotion_GetEffect_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14878, List_1_UnityEngine_GameObject__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D148F0, GameObject_GetComponent_134__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D149E8, Object_1_FindObjectsByType_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D149F8, EventHandler_1_ExecuteEvent_72__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14A18, GameObject_GetComponent_135__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14B98, GameObject_GetComponent_136__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14BA8, EventHandler_1_ExecuteEvent_73__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14BC8, List_1_HidingSpotController__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14BE8, List_1_T_Enumerator_HidingSpotController__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14BF8, List_1_T_Enumerator_HidingSpotController__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14C08, EntityEventListenerBase_1_Photon_Bolt_IHidingSpotState__get_state__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14C28, List_1_T_Enumerator_HidingSpotController__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14D10, Dictionary_2_UnityEngine_Event_UnityEngine_TextEditor_TextEditOp__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14D50, Dictionary_2_UnityEngine_Event_UnityEngine_TextEditor_TextEditOp___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14E08, Dictionary_2_UnityEngine_Event_UnityEngine_TextEditor_TextEditOp__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14E10, Dictionary_2_UnityEngine_Event_UnityEngine_TextEditor_TextEditOp__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14E48, List_1_UnityEngine_Transform__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14E68, List_1_Opsive_UltimateCharacterController_Character_Abilities_Interact__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14E70, List_1_UnityEngine_GameObject__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14E80, List_1_UnityEngine_Transform__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14E88, List_1_UnityEngine_Transform__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14EA0, List_1_UnityEngine_Transform__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14EA8, List_1_UnityEngine_Transform__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14EC8, List_1_T_Enumerator_UnityEngine_Transform__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14ED8, List_1_T_Enumerator_UnityEngine_GameObject__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14EE0, List_1_T_Enumerator_Opsive_UltimateCharacterController_Character_Abilities_Interact__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14EE8, List_1_T_Enumerator_Opsive_UltimateCharacterController_Character_Abilities_Interact__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14EF0, List_1_T_Enumerator_UnityEngine_Transform__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14EF8, List_1_T_Enumerator_UnityEngine_GameObject__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14F10, List_1_T_Enumerator_Opsive_UltimateCharacterController_Character_Abilities_Interact__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14F18, List_1_T_Enumerator_UnityEngine_Transform__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14F28, List_1_T_Enumerator_UnityEngine_GameObject__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14F58, Object_1_FindObjectsByType_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14F60, GameObject_GetComponent_137__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14F68, EventHandler_1_UnregisterEvent_64__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14F70, EventHandler_1_UnregisterEvent_65__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14F78, EventHandler_1_UnregisterEvent_66__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14F80, EventHandler_1_UnregisterEvent_67__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14F88, EventHandler_1_UnregisterEvent_68__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14F90, EventHandler_1_UnregisterEvent_69__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14F98, EventHandler_1_UnregisterEvent_70__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14FA0, EventHandler_1_UnregisterEvent_71__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14FA8, EventHandler_1_UnregisterEvent_72__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14FB0, EventHandler_1_UnregisterEvent_73__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14FC0, EventHandler_1_UnregisterEvent_74__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14FC8, EventHandler_1_UnregisterEvent_75__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14FD0, EventHandler_1_UnregisterEvent_76__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14FD8, EventHandler_1_UnregisterEvent_77__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14FE0, EventHandler_1_UnregisterEvent_78__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14FE8, EventHandler_1_UnregisterEvent_79__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D14FF0, Component_GetComponent_163__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D15240, UltimateCharacterLocomotion_GetAbility_18__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D15248, UltimateCharacterLocomotion_GetAbility_19__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D15250, UltimateCharacterLocomotion_GetAbility_20__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D15258, UltimateCharacterLocomotion_GetAbility_21__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D15260, UltimateCharacterLocomotion_GetAbility_22__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D15268, UltimateCharacterLocomotion_GetAbility_23__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D15270, UltimateCharacterLocomotion_GetAbility_24__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D15278, UltimateCharacterLocomotion_GetAbility_25__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D15280, UltimateCharacterLocomotion_GetAbility_26__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D15288, UltimateCharacterLocomotion_GetAbility_27__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D15290, UltimateCharacterLocomotion_GetAbility_28__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D15298, UltimateCharacterLocomotion_GetAbility_29__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D152A0, UltimateCharacterLocomotion_GetAbility_30__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D152A8, UltimateCharacterLocomotion_GetAbilities_13__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D152B8, Object_1_FindAnyObjectByType_18__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D152C0, Object_1_FindAnyObjectByType_19__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D15440, List_1_Opsive_UltimateCharacterController_Character_Abilities_Interact__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D15448, List_1_NolanBehaviour__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D15450, GameObject_GetComponent_138__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D15458, GameObject_GetComponent_139__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D15460, GameObject_AddComponent_100__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D15468, GameObject_AddComponent_101__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D15470, EventHandler_1_RegisterEvent_66__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D15478, EventHandler_1_RegisterEvent_67__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D15480, EventHandler_1_RegisterEvent_68__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D15488, EventHandler_1_RegisterEvent_69__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D15490, EventHandler_1_RegisterEvent_70__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D15498, EventHandler_1_RegisterEvent_71__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D154A0, EventHandler_1_RegisterEvent_72__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D154A8, EventHandler_1_RegisterEvent_73__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D154B0, EventHandler_1_RegisterEvent_74__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D154B8, EventHandler_1_RegisterEvent_75__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D154C8, EventHandler_1_RegisterEvent_76__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D154D0, EventHandler_1_RegisterEvent_77__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D154D8, EventHandler_1_RegisterEvent_78__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D154E0, EventHandler_1_RegisterEvent_79__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D154E8, EventHandler_1_RegisterEvent_80__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D154F0, EventHandler_1_RegisterEvent_81__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D154F8, EntityEventListenerBase_1_Photon_Bolt_IPlayerState__get_state__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D15500, Dictionary_2_UnityEngine_GameObject_NolanPerkController__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D15508, Component_GetComponentsInChildren_47__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D15510, Component_GetComponent_164__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D15518, Component_GetComponent_165__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D15520, CameraController_GetViewType_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D156D8, UltimateCharacterLocomotion_GetEffect_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D15758, Object_1_FindObjectsByType_12__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D15768, Object_1_FindAnyObjectByType_20__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D15778, GameObject_GetComponent_140__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D15788, GameObject_GetComponent_141__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D15798, GameObject_GetComponent_142__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D157A8, GameObject_GetComponent_143__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D157B8, GameObject_GetComponent_144__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D157C8, GameObject_GetComponent_145__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D157D8, Component_GetComponents_22__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D157E8, Component_GetComponents_23__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D157F8, Component_GetComponent_166__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D15808, Component_GetComponent_167__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D15818, Component_GetComponent_168__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D15828, Component_GetComponent_169__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D15838, Component_GetComponent_170__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D15848, Component_GetComponent_171__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D15858, Component_GetComponent_172__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D15868, Component_GetComponent_173__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D15878, Component_GetComponent_174__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D15888, Component_GetComponent_175__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D15898, Component_GetComponent_176__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16138, LinkedListNode_1_System_Net_WebOperation__get_Next__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16140, LinkedList_1_System_Net_WebOperation__AddLast__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16148, LinkedList_1_System_Net_WebOperation__get_First__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16150, LinkedList_1_System_Net_WebOperation__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16158, LinkedListNode_1_System_Net_WebOperation__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16160, LinkedList_1_System_Net_WebConnection__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16168, LinkedList_1_System_Net_WebOperation__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16170, LinkedList_1_T_Enumerator_System_Net_WebConnection__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16178, LinkedList_1_T_Enumerator_System_Net_WebOperation__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16180, LinkedList_1_System_Net_WebOperation__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16188, LinkedList_1_System_Net_WebConnection__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16198, ValueTuple_2_System_Net_WebConnection_Boolean___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D161A0, LinkedList_1_System_Net_WebOperation__Remove_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D161A8, LinkedList_1_System_Net_WebConnection__AddFirst__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D161C0, LinkedList_1_System_Net_WebConnection___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D161C8, LinkedList_1_System_Net_WebOperation__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D161D0, LinkedList_1_System_Net_WebConnection__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D161E0, Dictionary_2_System_String_System_Net_ServicePointScheduler_ConnectionGroup___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D161E8, Dictionary_2_System_String_System_Net_ServicePointScheduler_ConnectionGroup__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D161F0, LinkedList_1_System_Net_WebOperation___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D161F8, LinkedList_1_T_Enumerator_System_Net_WebConnection__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16208, LinkedList_1_T_Enumerator_System_Net_WebOperation__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16210, LinkedList_1_System_Net_WebConnection__get_First__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16220, LinkedList_1_T_Enumerator_System_Net_WebConnection__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16228, LinkedList_1_T_Enumerator_System_Net_WebOperation__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16230, LinkedList_1_System_Net_WebConnection__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16238, LinkedList_1_System_Net_WebConnection__Remove_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16240, LinkedListNode_1_System_Net_WebConnection__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16248, LinkedListNode_1_System_Net_WebConnection__get_Next__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16250, WebCompletionSource_1_System_ValueTuple_2__get_CurrentResult__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16260, ValueTuple_3_System_Net_ServicePointScheduler_ConnectionGroup_System_Net_WebConnection_System_Threading_Tasks_Task___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16268, LinkedListNode_1_System_ValueTuple_2__get_Next__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16278, LinkedList_1_System_ValueTuple_3__AddLast__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16288, ValueTuple_2_System_Net_ServicePointScheduler_ConnectionGroup_System_Net_WebOperation___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16290, WebCompletionSource_1_T_Result_System_ValueTuple_2__get_Success__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16298, WebCompletionSource_1_T_Result_System_ValueTuple_2__get_Argument__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D162A0, LinkedList_1_System_ValueTuple_2__AddLast__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D162B0, LinkedList_1_System_ValueTuple_3__get_First__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D162C0, Dictionary_2_System_String_System_Net_ServicePointScheduler_ConnectionGroup__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D162C8, LinkedList_1_System_ValueTuple_2__get_First__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D162D0, LinkedList_1_System_ValueTuple_2__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D162D8, LinkedListNode_1_System_ValueTuple_2__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D162E0, LinkedList_1_System_ValueTuple_3__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D162E8, LinkedListNode_1_System_ValueTuple_3__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D162F0, LinkedListNode_1_System_ValueTuple_3__get_Next__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16340, LinkedList_1_System_ValueTuple_2___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16348, LinkedList_1_System_ValueTuple_3___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16370, Dictionary_2_TKey_TValue_Enumerator_System_String_System_Net_ServicePointScheduler_ConnectionGroup__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16378, Dictionary_2_TKey_TValue_KeyCollection_System_String_System_Net_ServicePointScheduler_ConnectionGroup__CopyTo__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16380, KeyValuePair_2_System_String_System_Net_ServicePointScheduler_ConnectionGroup__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16390, Dictionary_2_TKey_TValue_Enumerator_System_String_System_Net_ServicePointScheduler_ConnectionGroup__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16398, Dictionary_2_TKey_TValue_Enumerator_System_String_System_Net_ServicePointScheduler_ConnectionGroup__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D163A0, Dictionary_2_System_String_System_Net_ServicePointScheduler_ConnectionGroup__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D163A8, Dictionary_2_System_String_System_Net_ServicePointScheduler_ConnectionGroup__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D163B8, Dictionary_2_System_String_System_Net_ServicePointScheduler_ConnectionGroup__get_Keys__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D163C8, Dictionary_2_System_String_System_Net_ServicePointScheduler_ConnectionGroup__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D163D8, Dictionary_2_System_String_System_Net_ServicePointScheduler_ConnectionGroup__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D163E8, Dictionary_2_System_String_System_Net_ServicePointScheduler_ConnectionGroup__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16408, ConcurrentDictionary_2_System_Net_ServicePointManager_SPKey_System_Net_ServicePoint__get_Values__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16410, ConcurrentDictionary_2_System_Net_ServicePointManager_SPKey_System_Net_ServicePoint__TryRemove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16430, ConcurrentDictionary_2_System_Net_ServicePointManager_SPKey_System_Net_ServicePoint__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D164C8, ConcurrentDictionary_2_System_Net_ServicePointManager_SPKey_System_Net_ServicePoint__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D164D8, ConcurrentDictionary_2_System_Net_ServicePointManager_SPKey_System_Net_ServicePoint__GetOrAdd__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D165A8, Component_GetComponentInChildren_15__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16600, EventHandler_1_UnregisterEvent_80__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16610, EventHandler_1_UnregisterEvent_81__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16618, EventHandler_1_UnregisterEvent_82__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16620, ConcurrentDictionary_2_System_Net_ServicePointManager_SPKey_System_Net_ServicePoint___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16628, EventHandler_1_RegisterEvent_82__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16630, EventHandler_1_RegisterEvent_83__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16638, EventHandler_1_RegisterEvent_84__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16710, Component_GetComponentsInChildren_48__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16758, Component_GetComponent_177__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16808, GameObjectExtensions_GetCachedComponent_22__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16840, Serialization_Serialize_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16858, List_1_Opsive_UltimateCharacterController_Camera_ViewTypes_ViewType___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16868, List_1_Opsive_UltimateCharacterController_Camera_ViewTypes_ViewType__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D168C8, Component_GetComponent_178__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D168F0, GameObject_AddComponent_102__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16910, GameObject_GetComponent_146__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16918, GameObject_AddComponent_103__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16920, GameObject_AddComponent_104__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16928, List_1_T_Enumerator_System_Net_MonoChunkParser_Chunk__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16938, GameObject_AddComponent_105__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16948, GameObject_AddComponent_106__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16960, GameObject_AddComponent_107__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16968, GameObject_AddComponent_108__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16980, Array_Resize_143__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D169A0, GameObject_GetComponents_12__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D169B0, List_1_System_Net_MonoChunkParser_Chunk__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D169B8, List_1_T_Enumerator_System_Net_MonoChunkParser_Chunk__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D169C0, List_1_T_Enumerator_System_Net_MonoChunkParser_Chunk__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D169C8, GameObject_GetComponent_147__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D169D8, GameObject_GetComponent_148__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D169E8, List_1_System_Net_MonoChunkParser_Chunk___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D169F8, List_1_System_Net_MonoChunkParser_Chunk__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16A00, GameObject_AddComponent_109__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16A38, GameObject_GetComponents_13__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16A48, GameObject_AddComponent_110__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16A50, Component_GetComponents_24__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16A58, GameObject_GetComponentsInChildren_21__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16A80, GameObject_AddComponent_111__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16A88, GameObject_AddComponent_112__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16A98, GameObject_AddComponent_113__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16AA0, GameObject_AddComponent_114__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16AA8, GameObject_AddComponent_115__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16AB8, GameObject_AddComponent_116__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16AC8, GameObject_AddComponent_117__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16AE0, Component_GetComponents_25__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16B00, GameObject_AddComponent_118__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16B10, GameObject_AddComponent_119__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16B28, GameObject_AddComponent_120__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16B40, GameObject_GetComponent_149__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16B58, GameObject_AddComponent_121__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16B68, List_1_Opsive_UltimateCharacterController_Inventory_ItemSet__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16B70, List_1_Opsive_UltimateCharacterController_Inventory_ItemSet__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16B80, List_1_Opsive_UltimateCharacterController_Inventory_ItemSet__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16B88, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_BufferOffsetSize__get_IsCompleted__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16B90, GameObject_AddComponent_122__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16B98, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_BufferOffsetSize__GetResult__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16BA0, GameObject_AddComponent_123__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16BA8, ConfiguredTaskAwaitable_1_System_Net_BufferOffsetSize__GetAwaiter__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16BB0, GameObject_AddComponent_124__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16BB8, AsyncTaskMethodBuilder_1_System_ValueTuple_5__SetResult__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16BC8, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16BD0, ValueTuple_5_System_Net_HttpWebResponse_Boolean_Boolean_System_Net_BufferOffsetSize_System_Net_WebOperation___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16BD8, Task_1_System_Net_BufferOffsetSize__ConfigureAwait__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16BE8, GameObject_GetComponent_150__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16BF8, AsyncTaskMethodBuilder_1_System_Net_HttpWebResponse__SetStateMachine__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16C00, GameObject_AddComponent_125__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16C08, AsyncTaskMethodBuilder_1_System_Net_HttpWebResponse__SetException__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16C10, GameObject_AddComponent_126__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16C18, AsyncTaskMethodBuilder_1_System_ValueTuple_5__AwaitUnsafeOnCompleted__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16C20, AbilityBuilder_RemoveAbility_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16C28, AsyncTaskMethodBuilder_1_System_ValueTuple_5__AwaitUnsafeOnCompleted_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16C30, GameObject_GetComponent_151__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16C40, AsyncTaskMethodBuilder_1_System_Net_BufferOffsetSize__SetException__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16C48, GameObject_GetComponent_152__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16C50, AsyncTaskMethodBuilder_1_System_Net_BufferOffsetSize__SetResult__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16C58, GameObject_GetComponent_153__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16C60, GameObject_AddComponent_127__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16C70, GameObject_AddComponent_128__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16C80, GameObject_AddComponent_129__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16C90, AsyncTaskMethodBuilder_1_System_Net_BufferOffsetSize__SetStateMachine__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16CA0, GameObject_GetComponentsInChildren_22__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16CA8, AsyncTaskMethodBuilder_1_System_ValueTuple_5__SetException__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16CC0, AsyncTaskMethodBuilder_1_System_Net_BufferOffsetSize__AwaitUnsafeOnCompleted__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16CC8, GameObject_GetComponent_154__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16CD0, GameObject_GetComponentInChildren_14__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16CE0, AsyncTaskMethodBuilder_1_System_ValueTuple_5__SetStateMachine__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16CE8, GameObject_AddComponent_130__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16CF0, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_5__get_IsCompleted__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16D00, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_WebRequestStream__GetResult__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16D10, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_5__GetResult__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16D20, ConfiguredTaskAwaitable_1_System_ValueTuple_5__1_GetAwaiter__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16D28, Task_1_System_ValueTuple_5__ConfigureAwait__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16D30, TaskAwaiter_1_System_Net_WebResponseStream__get_IsCompleted__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16D38, TaskAwaiter_1_System_Net_WebResponseStream__GetResult__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16D40, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_WebRequestStream__get_IsCompleted__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16D48, Serialization_Serialize_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16D50, AsyncTaskMethodBuilder_1_System_Net_HttpWebResponse__AwaitUnsafeOnCompleted__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16D60, AsyncTaskMethodBuilder_1_System_Net_HttpWebResponse__AwaitUnsafeOnCompleted_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16D70, List_1_Opsive_UltimateCharacterController_Character_MovementTypes_MovementType___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16D78, Array_Resize_144__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16D80, List_1_Opsive_UltimateCharacterController_Character_MovementTypes_MovementType__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16D88, Array_Resize_145__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16D90, ConfiguredTaskAwaitable_1_System_Net_WebRequestStream__GetAwaiter__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16D98, List_1_Opsive_UltimateCharacterController_Character_MovementTypes_MovementType__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16DA0, AsyncTaskMethodBuilder_1_System_Net_HttpWebResponse__SetResult__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16DA8, List_1_Opsive_UltimateCharacterController_Character_MovementTypes_MovementType__AddRange__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16DB0, AsyncTaskMethodBuilder_1_System_Net_HttpWebResponse__AwaitUnsafeOnCompleted_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16DC0, AsyncTaskMethodBuilder_1_System_Net_HttpWebResponse__AwaitUnsafeOnCompleted_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16DD0, UltimateCharacterLocomotion_GetAbilities_14__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16DD8, UltimateCharacterLocomotion_GetAbilities_15__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16E20, Task_1_System_Net_WebResponseStream__GetAwaiter__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16E30, Task_1_System_Net_WebRequestStream__ConfigureAwait__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16E88, GameObject_GetComponent_155__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16E90, GameObject_GetComponent_156__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16E98, GameObject_AddComponent_131__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16EA0, GameObject_AddComponent_132__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16EA8, GameObject_AddComponent_133__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16EB0, GameObject_AddComponent_134__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16EC0, GameObject_AddComponent_135__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16ED0, GameObject_GetComponents_14__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16ED8, ValueTuple_2_System_Threading_Tasks_Task_1_System_Net_WebException___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16EE0, GameObject_AddComponent_136__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16EE8, Task_FromResult_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16F10, ValueTuple_4_Boolean_Boolean_System_Threading_Tasks_Task_1_System_Net_WebException___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16F28, Component_GetComponent_179__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16F38, Component_GetComponent_180__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16F60, AsyncTaskMethodBuilder_1_System_Net_BufferOffsetSize__get_Task__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16F68, GameObject_GetComponent_157__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16F70, AsyncTaskMethodBuilder_1_System_Net_BufferOffsetSize__Start__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16F78, GameObject_AddComponent_137__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16F80, AsyncTaskMethodBuilder_1_System_Net_BufferOffsetSize__Create__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16FC8, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultObjectDetection___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16FD8, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAbilityIntData___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16FE8, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAllowRotationalInput___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16FF0, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultStopType___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D16FF8, Dictionary_2_System_Type_Opsive_UltimateCharacterController_StateSystem_AddState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17008, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseRootMotionPosition___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17010, GameObject_AddComponent_138__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17018, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultStartType___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17020, Component_GetComponentsInChildren_49__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17028, Dictionary_2_System_Type_UnityEngine_RequireComponent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17030, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultEquippedSlots___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17040, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultDetectVerticalCollisions___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17050, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultItemStateIndex___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17060, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultReequipSlots___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17068, Component_GetComponent_181__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17078, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultInputName___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17080, Component_GetComponent_182__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17088, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseGravity___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17098, ValueTuple_2_System_Net_WebOperation_Boolean___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D170D0, List_1_DynamicBoneColliderBase__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17108, List_1_DynamicBoneColliderBase__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17120, GameObject_GetComponent_158__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17158, GameObject_AddComponent_139__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17170, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultReequipSlots__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D171A8, HttpWebRequest_RunWithTimeout_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D171B0, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultEquippedSlots__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D171C0, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultEquippedSlots__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17208, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultCastOffset__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17218, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultCastOffset__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17220, AsyncOperationHandle_1_UnityEngine_GameObject__get_Status__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17230, AsyncOperationHandle_1_UnityEngine_GameObject__get_IsDone__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17248, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAbilityIndex___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17258, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17260, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseLookDirection___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17270, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseRootMotionRotation___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17278, Addressables_Release_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17288, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAllowPositionalInput___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17298, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultDetectHorizontalCollisions___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D172A8, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultCastOffset___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D172B0, GameObject_GetComponent_159__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D172B8, AsyncOperationHandle_1_UnityEngine_GameObject__get_Result__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D172C8, AsyncOperationHandle_1_UnityEngine_GameObject__IsValid__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D172D0, TaskToApm_End_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D172D8, Dictionary_2_System_Type_Opsive_UltimateCharacterController_StateSystem_AddState__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D172E0, Dictionary_2_System_Type_Opsive_UltimateCharacterController_StateSystem_AddState__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D172F0, Task_1_System_Net_WebResponse__get_Result__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17310, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultReequipSlots__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17328, HttpWebRequest_RunWithTimeout_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17338, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultDetectHorizontalCollisions__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17340, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultDetectHorizontalCollisions__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17370, TaskToApm_End_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17380, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseRootMotionRotation__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17390, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseRootMotionRotation__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D173C0, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseRootMotionPosition__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D173D0, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseLookDirection__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D173E0, AsyncTaskMethodBuilder_1_System_Net_HttpWebResponse__get_Task__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D173E8, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseLookDirection__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D173F0, AsyncTaskMethodBuilder_1_System_Net_HttpWebResponse__Start__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17400, AsyncTaskMethodBuilder_1_System_ValueTuple_5__get_Task__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17418, AsyncTaskMethodBuilder_1_System_ValueTuple_5__Start__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17420, AsyncTaskMethodBuilder_1_System_ValueTuple_5__Create__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17428, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultObjectDetection__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17438, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultObjectDetection__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17460, NetworkArray_Objects_1_SteamInventoryPlayer__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17468, Task_1_System_IO_Stream__get_Result__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17478, AsyncTaskMethodBuilder_1_System_Net_HttpWebResponse__Create__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17488, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultDetectVerticalCollisions__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17490, EntityEventListenerBase_1_Photon_Bolt_ISteamInventoryState__get_state__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17498, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultDetectVerticalCollisions__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D174A8, EntityEventListener_1_IPetState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D174B0, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAllowPositionalInput__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D174C0, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAllowPositionalInput__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D174C8, Dictionary_2_UnityEngine_Renderer_UnityEngine_Material___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D174E8, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultState__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D174F0, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultState__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17510, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultItemStateIndex__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17520, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultItemStateIndex__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17530, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseRootMotionPosition__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17570, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseGravity__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17580, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseGravity__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D175B0, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAllowRotationalInput__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D175C0, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAllowRotationalInput__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D175E8, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultStopType__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17610, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultStartType__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17620, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultStartType__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17670, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultInputName__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17688, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultInputName__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D176B0, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAbilityIntData__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D176C0, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAbilityIntData__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D176F8, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAbilityIndex__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17708, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAbilityIndex__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17730, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultStopType__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17740, List_1_Opsive_UltimateCharacterController_Character_Abilities_Items_ItemAbility___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17750, List_1_Opsive_UltimateCharacterController_Character_Abilities_Items_ItemAbility___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17760, List_1_Opsive_UltimateCharacterController_Character_Abilities_Items_ItemAbility__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17780, Serialization_Serialize_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17790, List_1_Opsive_UltimateCharacterController_Character_Abilities_Ability___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D177A0, List_1_Opsive_UltimateCharacterController_Character_Abilities_Ability__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D177A8, EntityEventListenerBase_1_Photon_Bolt_IPetState__get_state__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D177C8, Component_GetComponentsInChildren_50__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D177D0, Array_Resize_146__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D177D8, Component_GetComponent_183__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D177E0, Component_GetComponent_184__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17820, Dictionary_2_System_Type_UnityEngine_RequireComponent__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17828, Dictionary_2_System_Type_UnityEngine_RequireComponent__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17858, Serialization_Serialize_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17898, GameObjectExtensions_GetCachedComponent_23__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D178C0, Component_GetComponent_185__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D178D0, Array_Resize_147__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D178D8, Component_GetComponentInChildren_16__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17900, List_1_UnityEngine_GameObject__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17910, List_1_UnityEngine_GameObject__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17950, Object_1_FindObjectsOfType_17__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17970, Component_GetComponent_186__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17998, Component_GetComponent_187__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D179A0, List_1_System_Reflection_Assembly__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D179A8, Dictionary_2_System_Reflection_FieldInfo_Dictionary_2_System_Type_System_Boolean__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D179C0, Dictionary_2_System_String_System_Type__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D179D8, Dictionary_2_System_Reflection_PropertyInfo_Dictionary_2_System_Type_System_Boolean__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D179E0, List_1_UnityEngine_Light___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D179F0, List_1_UnityEngine_ParticleSystem___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17A18, List_1_UnityEngine_Light__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17A28, List_1_UnityEngine_ParticleSystem__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17A38, List_1_T_Enumerator_UnityEngine_Light__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17A48, List_1_T_Enumerator_UnityEngine_ParticleSystem__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17A60, List_1_T_Enumerator_UnityEngine_Light__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17A78, List_1_T_Enumerator_UnityEngine_ParticleSystem__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17A98, List_1_T_Enumerator_UnityEngine_ParticleSystem__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17AB0, List_1_T_Enumerator_UnityEngine_Light__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17AC0, Dictionary_2_UnityEngine_Collider_UnityEngine_Transform___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17AE8, List_1_UnityEngine_Light__AddRange__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17AF0, List_1_UnityEngine_ParticleSystem__AddRange__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17AF8, GameObject_GetComponentsInChildren_23__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17B08, GameObject_GetComponentsInChildren_24__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17B10, GameObject_GetComponentsInChildren_25__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17B18, EventHandler_1_UnregisterEvent_83__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17B68, EventHandler_1_RegisterEvent_85__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17BF8, Dictionary_2_UnityEngine_Collider_UnityEngine_Transform__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17C00, UltimateCharacterLocomotion_GetAbility_31__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17C10, Dictionary_2_UnityEngine_Collider_UnityEngine_Transform__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17CA0, Object_1_FindAnyObjectByType_21__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17CB0, EntityEventListenerBase_1_Photon_Bolt_ISurvivalLobbyState__get_state__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17E60, Component_GetComponent_188__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17EC8, Object_1_FindAnyObjectByType_22__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17ED0, NetworkArray_Objects_1_SteamInventoryPlayer__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17EF0, BoltEntity_GetState_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17F00, List_1_CharacterEmote__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17F08, List_1_CharacterEmote__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17F10, List_1_CharacterEmote__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17F18, List_1_T_Enumerator_CharacterEmote__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17F20, List_1_T_Enumerator_CharacterEmote__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D17F28, List_1_T_Enumerator_CharacterEmote__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D18000, Addressables_Release_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D18048, Object_1_FindAnyObjectByType_23__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D18070, Component_GetComponent_189__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D18078, AsyncOperationHandle_1_System_Collections_Generic_IList_1__get_Status__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D18080, AsyncOperationHandle_1_System_Collections_Generic_IList_1__get_Result__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D18088, AsyncOperationHandle_1_System_Collections_Generic_IList_1__IsValid__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D18098, List_1_System_String___ctor_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D180A0, AsyncOperationHandle_1_System_Collections_Generic_IList_1__add_Completed__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D180A8, Addressables_LoadAssetsAsync_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D180D8, GameObject_GetComponents_15__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D180E0, GameObject_GetComponent_160__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D180E8, GameObject_GetComponent_161__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D180F0, GameObject_GetComponent_162__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D18110, List_1_UnityEngine_ParticleSystemVertexStream___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D18118, List_1_UnityEngine_ParticleSystemVertexStream__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D18120, List_1_UnityEngine_ParticleSystemVertexStream__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D18128, List_1_UnityEngine_ParticleSystemVertexStream__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D18CA8, UltimateCharacterLocomotion_GetAbility_32__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D18CE8, UltimateCharacterLocomotion_GetAbility_33__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D18E30, Object_1_Instantiate_25__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D18EB8, Component_GetComponent_190__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D18F10, Component_GetComponents_26__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D18F30, Component_GetComponent_191__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D18F50, Component_GetComponentInParent_21__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19010, Component_GetComponent_192__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19020, Component_GetComponent_193__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D190D0, GameObjectExtensions_GetCachedComponent_24__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19180, UltimateCharacterLocomotion_GetAbility_34__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D191B8, Component_GetComponent_194__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D191F8, GameObjectExtensions_GetCachedComponent_25__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19208, GameObjectExtensions_GetCachedComponent_26__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19268, Component_GetComponentInParent_22__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D192C0, GameObjectExtensions_GetCachedComponent_27__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19308, EventHandler_1_RegisterEvent_86__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19318, Component_GetComponents_27__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19348, Component_GetComponentInParent_23__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19398, EventHandler_1_UnregisterEvent_84__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D194E0, Array_Resize_148__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19588, UltimateCharacterLocomotion_IsAbilityTypeActive_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19600, Component_GetComponent_195__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19670, Object_1_FindObjectOfType_13__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19680, Object_1_FindObjectOfType_14__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D196A0, EventHandler_1_UnregisterEvent_85__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D197F0, EventHandler_1_UnregisterEvent_86__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19860, EventHandler_1_RegisterEvent_87__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19958, UltimateCharacterLocomotion_IsAbilityTypeActive_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19968, UltimateCharacterLocomotion_IsAbilityTypeActive_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19A18, EventHandler_1_RegisterEvent_88__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19B78, Component_GetComponentsInChildren_51__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19BA0, GameObject_GetComponents_16__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19BF0, List_1_Opsive_UltimateCharacterController_Demo_Objects_Door___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19C10, Dictionary_2_Opsive_UltimateCharacterController_Demo_DemoZoneTrigger_Opsive_UltimateCharacterController_Demo_DemoManager_DemoZone___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19C60, Component_GetComponentInParent_24__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19C68, Component_GetComponentsInChildren_52__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19C80, List_1_Opsive_UltimateCharacterController_Demo_Objects_Door__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19C88, List_1_Opsive_UltimateCharacterController_Demo_Objects_Door__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19C90, GameObject_GetComponent_163__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19C98, GameObject_GetComponent_164__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19CA0, Component_GetComponentsInChildren_53__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19CB0, List_1_Opsive_UltimateCharacterController_Demo_DemoManager_DemoZone__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19CC0, List_1_Opsive_UltimateCharacterController_Demo_DemoManager_DemoZone__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19CC8, List_1_UnityEngine_Rigidbody2D___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19CD0, List_1_Opsive_UltimateCharacterController_Demo_DemoManager_DemoZone___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19CD8, List_1_Opsive_UltimateCharacterController_Demo_DemoManager_DemoZone__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19CE0, List_1_Opsive_UltimateCharacterController_Demo_DemoManager_DemoZone__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19D00, Dictionary_2_Opsive_UltimateCharacterController_Demo_DemoZoneTrigger_Opsive_UltimateCharacterController_Demo_DemoManager_DemoZone__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19D10, List_1_Opsive_UltimateCharacterController_Demo_Objects_Door__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19D18, Object_1_FindObjectOfType_15__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19D20, Dictionary_2_Opsive_UltimateCharacterController_Demo_DemoZoneTrigger_Opsive_UltimateCharacterController_Demo_DemoManager_DemoZone__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19D28, Component_GetComponentInParent_25__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19D38, Component_GetComponent_196__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19D50, GameObject_GetComponent_165__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19D60, Dictionary_2_UnityEngine_ParticleSystem_System_Single___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19D68, List_1_UnityEngine_GameObject___ctor_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19D70, GameObject_GetComponent_166__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19D78, IListExtensions_Shuffle_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19D88, List_1_AnimalGateSpawnPoint__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19D98, EntityEventListenerBase_1_Photon_Bolt_IDoorNumberState__get_state__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19DA0, Component_GetComponent_197__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19DA8, Component_GetComponent_198__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19DB8, IListExtensions_Shuffle_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19DC0, GameObject_GetComponent_167__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19DC8, List_1_NolanBehaviour__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19DD0, List_1_NolanBehaviour__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19DF0, EventHandler_1_ExecuteEvent_74__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19E18, Dictionary_2_UnityEngine_ParticleSystem_System_Single__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19EA8, List_1_AnimalGateSpawnPoint___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19EB0, List_1_AnimalGateSpawnPoint__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19EB8, IListExtensions_Shuffle_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19EC8, List_1_T_Enumerator_AnimalGateSpawnPoint__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19ED0, List_1_T_Enumerator_AnimalGateSpawnPoint__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19ED8, Enumerable_Select_86__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19EE0, Dictionary_2_UnityEngine_ParticleSystem_System_Single__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19EE8, Component_GetComponentInChildren_17__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19EF0, List_1_T_Enumerator_AnimalGateSpawnPoint__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19F30, Dictionary_2_Horror_DoorBehaviour_System_Boolean___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19F50, KeyValuePair_2_Horror_DoorBehaviour_System_Boolean__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19F58, KeyValuePair_2_Horror_DoorBehaviour_System_Boolean__get_Key__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19F60, Dictionary_2_TKey_TValue_Enumerator_Horror_DoorBehaviour_System_Boolean__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19F68, Dictionary_2_TKey_TValue_Enumerator_Horror_DoorBehaviour_System_Boolean__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19F70, Dictionary_2_Horror_DoorBehaviour_System_Boolean__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19F78, Dictionary_2_TKey_TValue_Enumerator_Horror_DoorBehaviour_System_Boolean__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19F98, EntityEventListenerBase_1_Photon_Bolt_IDoorState__get_state__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19FA0, Dictionary_2_Horror_DoorBehaviour_System_Boolean__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19FA8, Dictionary_2_Horror_DoorBehaviour_System_Boolean__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D19FB8, List_1_UnityEngine_GameObject__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A028, Component_GetComponent_199__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A040, Component_GetComponent_200__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A0A8, Object_1_FindObjectsByType_13__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A0B0, List_1_ManorSpirit__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A0C0, List_1_T_Enumerator_ManorSpirit__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A0C8, List_1_T_Enumerator_ManorSpirit__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A0D0, EntityEventListenerBase_1_Photon_Bolt_ITownPentagramState__get_state__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A0D8, List_1_T_Enumerator_ManorSpirit__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A110, GameObject_GetComponent_168__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A118, GameObject_GetComponent_169__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A120, GameObject_GetComponent_170__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A128, EntityEventListenerBase_1_Photon_Bolt_ICrowState__get_state__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A138, Object_1_FindObjectsByType_14__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A148, GameObject_GetComponent_171__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A150, EntityEventListenerBase_1_Photon_Bolt_IBurnTrapState__get_state__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A190, GameObject_GetComponent_172__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A198, GameObject_GetComponent_173__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A1A0, EntityEventListenerBase_1_Photon_Bolt_IInteractObjectState__get_state__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A1A8, EntityEventListenerBase_1_Photon_Bolt_IInnShrineState__get_state__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A1B0, EntityEventListenerBase_1_Photon_Bolt_IEnemyBasicState__get_state__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A208, Object_1_FindAnyObjectByType_24__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A220, Log_Error_12__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A228, Component_GetComponent_201__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A278, GameObject_GetComponent_174__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A280, GameObject_GetComponent_175__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A288, GameObject_GetComponent_176__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A290, GameObject_GetComponent_177__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A298, GameObject_GetComponent_178__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A2A0, GameObject_GetComponent_179__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A2A8, Object_1_FindObjectsByType_15__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A2D8, Object_1_FindAnyObjectByType_25__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A2E0, GameObject_GetComponent_180__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A2E8, Component_GetComponent_202__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A2F0, Component_GetComponent_203__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A3C8, PostProcessProfile_TryGetSettings_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A480, PostProcessProfile_TryGetSettings_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A488, PostProcessProfile_TryGetSettings_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A4F8, Component_GetComponent_204__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A500, Component_GetComponent_205__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A518, GameObject_GetComponent_181__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A520, EventHandler_1_ExecuteEvent_75__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A5B0, GameObject_GetComponent_182__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A5C8, GameObject_GetComponent_183__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A5D8, Collection_1_System_Net_NetworkInformation_MulticastIPAddressInformation__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A5F0, Collection_1_System_Net_NetworkInformation_MulticastIPAddressInformation__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A668, Component_GetComponent_206__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A678, TaskFactory_1_System_Net_NetworkInformation_UnicastIPAddressInformationCollection__FromAsync__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A6A0, Task_1_System_Net_NetworkInformation_UnicastIPAddressInformationCollection__get_Factory__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A6A8, EntityEventListener_1_ISwitchState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A6C0, Collection_1_System_Net_NetworkInformation_IPAddressInformation__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A6E8, Collection_1_System_Net_NetworkInformation_MulticastIPAddressInformation__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A708, Collection_1_System_Net_NetworkInformation_MulticastIPAddressInformation__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A720, EntityEventListenerBase_1_Photon_Bolt_ISwitchState__get_state__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A730, Collection_1_System_Net_NetworkInformation_MulticastIPAddressInformation___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A740, Collection_1_System_Net_NetworkInformation_MulticastIPAddressInformation__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A750, Collection_1_System_Net_NetworkInformation_MulticastIPAddressInformation__CopyTo__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A758, EventHandler_1_UnregisterEvent_87__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A778, Collection_1_System_Net_IPAddress__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A7A0, Collection_1_System_Net_NetworkInformation_IPAddressInformation___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A7A8, Object_1_Instantiate_26__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A7B0, EventHandler_1_RegisterEvent_89__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A7B8, Component_GetComponentsInChildren_54__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A7C0, Collection_1_System_Net_IPAddress__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A7C8, Component_GetComponent_207__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A7D8, Collection_1_System_Net_IPAddress__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A7E0, Collection_1_System_Net_NetworkInformation_IPAddressInformation__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A7E8, Collection_1_System_Net_NetworkInformation_IPAddressInformation__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A7F0, Collection_1_System_Net_NetworkInformation_IPAddressInformation__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A7F8, Collection_1_System_Net_NetworkInformation_IPAddressInformation__CopyTo__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A808, Collection_1_System_Net_NetworkInformation_IPAddressInformation__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A810, Collection_1_System_Net_NetworkInformation_GatewayIPAddressInformation__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A818, Collection_1_System_Net_NetworkInformation_GatewayIPAddressInformation__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A820, Collection_1_System_Net_NetworkInformation_GatewayIPAddressInformation__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A828, Collection_1_System_Net_NetworkInformation_GatewayIPAddressInformation__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A838, Collection_1_System_Net_NetworkInformation_GatewayIPAddressInformation__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A840, Collection_1_System_Net_IPAddress__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A848, Collection_1_System_Net_IPAddress__CopyTo__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A850, Collection_1_System_Net_IPAddress__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A878, Collection_1_System_Net_IPAddress___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A888, Task_1_System_Byte__ConfigureAwait__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A890, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Byte__get_IsCompleted__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A898, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Byte__GetResult__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A8A0, AsyncTaskMethodBuilder_1_System_Byte__SetStateMachine__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A8A8, ConfiguredTaskAwaitable_1_System_Byte__GetAwaiter__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A8B0, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_49__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A8B8, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_50__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A8C0, Collection_1_System_Net_NetworkInformation_GatewayIPAddressInformation___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A8C8, Collection_1_System_Net_NetworkInformation_GatewayIPAddressInformation__CopyTo__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A938, AsyncTaskMethodBuilder_1_System_Byte__SetException__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A948, AsyncTaskMethodBuilder_1_System_Byte__SetResult__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A950, AsyncTaskMethodBuilder_1_System_Byte__AwaitUnsafeOnCompleted__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A9D0, AsyncTaskMethodBuilder_1_System_Byte__Create__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A9E0, AsyncTaskMethodBuilder_1_System_Byte__get_Task__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1A9E8, AsyncTaskMethodBuilder_1_System_Byte__Start__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1AA78, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_51__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1AB68, AsyncVoidMethodBuilder_AwaitUnsafeOnCompleted_15__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1AB78, WebCompletionSource_1_WebResponseStream__TrySetCompleted__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1AB98, WebCompletionSource_1_WebRequestStream__WaitForCompletion__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1ABA0, AsyncTaskMethodBuilder_1_System_IO_Stream__Start_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1ABD0, WebCompletionSource_1_System_ValueTuple_2__TrySetException__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1ABD8, WebCompletionSource_1_System_ValueTuple_2__TrySetCompleted__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1ABE0, ValueTuple_2_Boolean_System_Net_WebOperation___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1ABE8, AsyncTaskMethodBuilder_1_System_IO_Stream__AwaitUnsafeOnCompleted_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1ABF0, WebCompletionSource_1_WebResponseStream__WaitForCompletion__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1ABF8, WebCompletionSource_1_WebRequestStream__TrySetCompleted__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1AC00, WebCompletionSource_1_WebResponseStream__TrySetCanceled__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1AC10, WebCompletionSource_1_WebRequestStream__TrySetException__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1AC18, WebCompletionSource_1_WebRequestStream__TrySetCanceled__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1AC20, WebCompletionSource_1_WebRequestStream___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1AC28, AsyncTaskMethodBuilder_1_System_ValueTuple_3__SetStateMachine__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1AC40, WebCompletionSource_1_WebResponseStream___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1AC48, WebCompletionSource_1_System_ValueTuple_2___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1AC50, ValueTuple_2_System_Runtime_ExceptionServices_ExceptionDispatchInfo_Boolean___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1AC58, WebCompletionSource_1_WebResponseStream__TrySetException__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1AC78, Task_1_System_ValueTuple_3__ConfigureAwait__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1AC80, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_3__get_IsCompleted__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1ACA8, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_3__GetResult__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1ACB0, ConfiguredTaskAwaitable_1_System_ValueTuple_3__1_GetAwaiter__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1ACC0, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_52__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1ACD0, ValueTuple_3_System_Net_WebHeaderCollection_Byte_Int32___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1ACE0, AsyncTaskMethodBuilder_1_System_ValueTuple_3__SetResult__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1ACE8, AsyncTaskMethodBuilder_1_System_ValueTuple_3__SetException__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1AD10, AsyncTaskMethodBuilder_1_System_ValueTuple_3__AwaitUnsafeOnCompleted__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1AD60, AsyncTaskMethodBuilder_1_System_ValueTuple_3__get_Task__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1AD68, AsyncTaskMethodBuilder_1_System_ValueTuple_3__Start__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1AD70, AsyncTaskMethodBuilder_1_System_ValueTuple_3__Create__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1ADC0, AsyncTaskMethodBuilder_1_System_Boolean__AwaitUnsafeOnCompleted_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1ADE8, TaskFactory_FromAsync_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1ADF0, AsyncTaskMethodBuilder_1_System_Net_WebRequestStream__SetStateMachine__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1AE08, AsyncTaskMethodBuilder_1_System_Net_WebRequestStream__SetResult__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1AE10, AsyncTaskMethodBuilder_1_System_Net_WebRequestStream__AwaitUnsafeOnCompleted__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1AE18, AsyncTaskMethodBuilder_1_System_Net_WebRequestStream__AwaitUnsafeOnCompleted_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1AE20, AsyncTaskMethodBuilder_1_System_Net_WebRequestStream__SetException__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1AE40, AsyncTaskMethodBuilder_1_System_Net_WebRequestStream__get_Task__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1AE48, AsyncTaskMethodBuilder_1_System_Net_WebRequestStream__Start__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1AE50, AsyncTaskMethodBuilder_1_System_Net_WebRequestStream__Create__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1AF58, List_1_System_Threading_Tasks_Task__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1AF60, LinkedList_1_System_ValueTuple_2__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1AF68, LinkedList_1_System_ValueTuple_3__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1AF70, LinkedList_1_System_ValueTuple_3__Remove_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1AF88, List_1_System_Threading_Tasks_Task__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1AF90, List_1_System_Threading_Tasks_Task___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1AFA0, LinkedList_1_System_ValueTuple_2__Remove_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1AFA8, LinkedList_1_System_ValueTuple_2__CopyTo__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1AFB0, LinkedList_1_System_ValueTuple_3__CopyTo__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1AFB8, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_53__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1AFC0, WebCompletionSource_1_System_ValueTuple_2__get_Task__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1AFD8, AsyncTaskMethodBuilder_1_System_Boolean__AwaitUnsafeOnCompleted_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B088, List_1_UnityEngine_SpatialTracking_TrackedPoseDriver_TrackedPose__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B098, List_1_UnityEngine_SpatialTracking_TrackedPoseDriver_TrackedPose__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B0A8, List_1_UnityEngine_SpatialTracking_TrackedPoseDriver_TrackedPose__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B0D8, List_1_UnityEngine_SpatialTracking_TrackedPoseDriver_TrackedPose___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B160, List_1_Outline___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B178, Dictionary_2_UnityEngine_GameObject_NolanPerkController___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B198, GameObject_GetComponents_17__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B1A0, List_1_NolanBehaviour__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B1A8, List_1_T_Enumerator_NolanBehaviour__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B1B0, List_1_T_Enumerator_NolanBehaviour__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B1B8, List_1_T_Enumerator_NolanBehaviour__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B1C0, Component_GetComponent_208__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B1C8, Component_GetComponent_209__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B208, Enumerable_OrderBy_21__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B210, Enumerable_ElementAt_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B238, Object_1_FindObjectsByType_16__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B308, Object_1_FindObjectsByType_17__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B310, Object_1_FindObjectsByType_18__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B318, GameObject_GetComponent_184__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B320, List_1_Outline__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B328, List_1_T_Enumerator_Outline__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B330, List_1_T_Enumerator_Outline__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B338, List_1_T_Enumerator_Outline__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B340, Object_1_FindObjectsByType_19__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B348, List_1_Outline__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B350, List_1_Outline__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B3E0, GameObject_GetComponent_185__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B3E8, GameObject_AddComponent_140__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B400, Component_GetComponent_210__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B408, Component_GetComponent_211__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B410, Component_GetComponent_212__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B418, Component_GetComponent_213__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B420, Component_GetComponent_214__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B428, Component_GetComponent_215__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B430, Component_GetComponent_216__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B438, Component_GetComponent_217__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B478, Component_GetComponent_218__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B490, Object_1_Instantiate_27__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B4C0, Enumerable_Contains_14__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B4C8, Enumerable_Concat_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B520, GameObject_GetComponent_186__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B528, Enumerable_ToArray_31__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B530, Enumerable_Count_25__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B538, Enumerable_Count_26__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B540, Enumerable_Append_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B550, GameObject_GetComponent_187__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B5C0, Enumerable_Take_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B5C8, Component_GetComponentsInChildren_55__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B5D0, Component_GetComponent_219__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B5D8, Component_GetComponent_220__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B618, Component_GetComponent_221__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B648, Component_GetComponent_222__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B690, GameObject_GetComponent_188__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B6A0, Enumerable_OrderBy_22__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B708, EventHandler_1_ExecuteEvent_76__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B7A8, Object_1_Instantiate_28__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B7B0, Object_1_FindObjectsByType_20__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B7B8, Object_1_FindObjectsByType_21__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B7C8, EventHandler_1_ExecuteEvent_77__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B7D8, Dictionary_2_System_String_System_Object___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B7E0, Dictionary_2_System_String_System_Object__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B8F8, Object_1_FindObjectsByType_22__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B900, Object_1_FindObjectsByType_23__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B910, List_1_HidingSpotController___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B918, GameObject_GetComponent_189__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B928, Enumerable_ToArray_32__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B930, Enumerable_Select_87__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B938, Component_GetComponent_223__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B940, Component_GetComponent_224__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B998, List_1_UnityEngine_Subsystem__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B9A8, List_1_UnityEngine_SubsystemsImplementation_SubsystemWithProvider__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B9B0, List_1_T_Enumerator_UnityEngine_SubsystemsImplementation_SubsystemWithProvider__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B9B8, List_1_T_Enumerator_UnityEngine_SubsystemsImplementation_SubsystemWithProvider__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B9C8, List_1_T_Enumerator_UnityEngine_IntegratedSubsystemDescriptor__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B9D8, List_1_T_Enumerator_UnityEngine_IntegratedSubsystemDescriptor__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B9E0, GameObject_AddComponent_141__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B9E8, List_1_T_Enumerator_UnityEngine_IntegratedSubsystemDescriptor__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1B9F8, List_1_UnityEngine_IntegratedSubsystemDescriptor__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BA08, SubsystemDescriptorStore_RegisterDescriptor_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BA38, List_1_UnityEngine_IntegratedSubsystemDescriptor__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BA48, List_1_UnityEngine_IntegratedSubsystemDescriptor__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BA68, List_1_UnityEngine_SubsystemDescriptor___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BA78, List_1_UnityEngine_SubsystemsImplementation_SubsystemDescriptorWithProvider___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BA88, List_1_UnityEngine_IntegratedSubsystemDescriptor___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BAA0, SubsystemDescriptorStore_RegisterDescriptor_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BAA8, List_1_UnityEngine_IntegratedSubsystem__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BAB0, List_1_UnityEngine_Subsystem__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BAC0, List_1_UnityEngine_IntegratedSubsystem__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BAC8, List_1_UnityEngine_SubsystemsImplementation_SubsystemWithProvider__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BAD0, List_1_T_Enumerator_UnityEngine_IntegratedSubsystem__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BAD8, EntityEventListener_1_ISteamInventoryState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BAE0, List_1_T_Enumerator_UnityEngine_IntegratedSubsystem__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BAF8, List_1_UnityEngine_Subsystem___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BB08, List_1_UnityEngine_SubsystemsImplementation_SubsystemWithProvider___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BB18, List_1_UnityEngine_IntegratedSubsystem___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BB20, Enumerable_Select_88__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BB30, List_1_UnityEngine_IntegratedSubsystem__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BB38, List_1_UnityEngine_IntegratedSubsystem__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BB50, List_1_T_Enumerator_UnityEngine_SubsystemsImplementation_SubsystemWithProvider__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BB58, List_1_UnityEngine_SubsystemsImplementation_SubsystemWithProvider__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BB60, List_1_UnityEngine_SubsystemsImplementation_SubsystemWithProvider__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BB68, List_1_UnityEngine_IntegratedSubsystem__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BB98, NetworkArray_Objects_1_SteamInventoryPlayer__get_Length__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BBB0, List_1_T_Enumerator_UnityEngine_IntegratedSubsystem__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BBB8, _f_AnonymousType3_2_System_Globalization_CultureInfo_System_Globalization_RegionInfo__get_r__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BBC0, List_1_UnityEngine_IntegratedSubsystem__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BBC8, _f_AnonymousType3_2_System_Globalization_CultureInfo_System_Globalization_RegionInfo__get_c__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BBD8, _f_AnonymousType3_2_System_Globalization_CultureInfo_System_Globalization_RegionInfo___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BBF8, List_1_SteamInventoryItem___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BC90, Enumerable_Where_61__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BC98, Enumerable_Select_89__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BCA0, Enumerable_Select_90__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BCA8, Enumerable_FirstOrDefault_21__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BCD8, Dictionary_2_System_String_Opsive_Shared_Game_ScheduledEventBase__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BCF0, SchedulerBase_Schedule_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BD18, Dictionary_2_System_String_Opsive_Shared_Game_ScheduledEventBase___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BD20, List_1_SteamInventoryItem__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BD80, Dictionary_2_System_Object_Dictionary_2_System_String_Opsive_UltimateCharacterController_StateSystem_State___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BD90, Dictionary_2_Opsive_UltimateCharacterController_StateSystem_State_Opsive_UltimateCharacterController_StateSystem_State___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BDA0, Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_String_List_1_Opsive_UltimateCharacterController_StateSystem_State___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BDB0, Dictionary_2_UnityEngine_GameObject_List_1_UnityEngine_GameObject___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BDB8, Object_1_FindAnyObjectByType_26__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BDC0, Dictionary_2_UnityEngine_GameObject_HashSet_1_System_String___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BE08, Dictionary_2_UnityEngine_GameObject_List_1_UnityEngine_GameObject__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BE18, Dictionary_2_UnityEngine_GameObject_List_1_UnityEngine_GameObject__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BE38, List_1_Opsive_UltimateCharacterController_StateSystem_State___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BE48, List_1_Opsive_UltimateCharacterController_StateSystem_State__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BE58, HashSet_1_System_String__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BE60, List_1_SteamInventoryItem__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BE68, HashSet_1_System_String__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BE70, List_1_SteamInventoryItem__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BE78, GameObjectExtensions_GetCachedParentComponent_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BE80, Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_String_Opsive_Shared_Game_ScheduledEventBase___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BE88, Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_String_Opsive_Shared_Game_ScheduledEventBase__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BE90, Dictionary_2_System_String_Opsive_Shared_Game_ScheduledEventBase__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BE98, Dictionary_2_System_String_Opsive_Shared_Game_ScheduledEventBase__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BEA0, Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_String_Opsive_Shared_Game_ScheduledEventBase__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BED0, List_1_Opsive_UltimateCharacterController_StateSystem_State__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BED8, List_1_Opsive_UltimateCharacterController_StateSystem_State__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BEF8, Dictionary_2_Opsive_UltimateCharacterController_StateSystem_State_Opsive_UltimateCharacterController_StateSystem_State__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BF10, Dictionary_2_System_Object_Dictionary_2_System_String_Opsive_UltimateCharacterController_StateSystem_State__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BF30, HashSet_1_T_Enumerator_System_String__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BF80, GameObject_AddComponent_142__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BFB0, HashSet_1_T_Enumerator_System_String__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BFB8, HashSet_1_T_Enumerator_System_String__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BFD0, Dictionary_2_System_String_Opsive_UltimateCharacterController_StateSystem_State___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BFD8, Object_1_FindObjectsByType_24__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BFE0, Dictionary_2_System_String_List_1_Opsive_UltimateCharacterController_StateSystem_State___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BFE8, Dictionary_2_System_String_List_1_Opsive_UltimateCharacterController_StateSystem_State__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1BFF0, Dictionary_2_System_Object_Dictionary_2_System_String_Opsive_UltimateCharacterController_StateSystem_State__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C000, Dictionary_2_UnityEngine_GameObject_HashSet_1_System_String__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C008, Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_String_List_1_Opsive_UltimateCharacterController_StateSystem_State__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C010, Dictionary_2_UnityEngine_GameObject_HashSet_1_System_String__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C018, Dictionary_2_Opsive_UltimateCharacterController_StateSystem_State_Opsive_UltimateCharacterController_StateSystem_State__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C020, Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_String_List_1_Opsive_UltimateCharacterController_StateSystem_State__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C028, Dictionary_2_System_String_Opsive_UltimateCharacterController_StateSystem_State__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C030, Dictionary_2_UnityEngine_GameObject_HashSet_1_System_String__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C038, Dictionary_2_System_String_List_1_Opsive_UltimateCharacterController_StateSystem_State__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C060, Dictionary_2_System_Type_Opsive_UltimateCharacterController_StateSystem_StateConfiguration_Profile_StateElement__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C070, Dictionary_2_System_String_Dictionary_2_System_Type_Opsive_UltimateCharacterController_StateSystem_StateConfiguration_Profile_StateElement___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C080, Dictionary_2_System_Type_Opsive_UltimateCharacterController_StateSystem_StateConfiguration_Profile_StateElement___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C090, Dictionary_2_System_Type_Opsive_UltimateCharacterController_StateSystem_StateConfiguration_Profile_StateElement__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C098, Dictionary_2_System_String_Dictionary_2_System_Type_Opsive_UltimateCharacterController_StateSystem_StateConfiguration_Profile_StateElement__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C0A0, Dictionary_2_System_Type_Opsive_UltimateCharacterController_StateSystem_StateConfiguration_Profile_StateElement__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C0B0, Array_Resize_149__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C0B8, Component_GetComponent_225__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C0C8, Component_GetComponentsInChildren_56__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C0D0, Serialization_Serialize_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C0E8, List_1_Opsive_UltimateCharacterController_Character_MovementTypes_MovementType___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C0F0, List_1_Opsive_UltimateCharacterController_Character_Effects_Effect___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C0F8, List_1_Opsive_UltimateCharacterController_Character_Effects_Effect__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C110, Enumerable_ToArray_33__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C118, Dictionary_2_System_String_Dictionary_2_System_Type_Opsive_UltimateCharacterController_StateSystem_StateConfiguration_Profile_StateElement__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C120, Enumerable_Cast_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C128, Dictionary_2_System_Type_Opsive_UltimateCharacterController_StateSystem_StateConfiguration_Profile_StateElement__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C140, GameObject_GetComponents_18__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C158, ScriptableObject_CreateInstance_19__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C168, GameObject_GetComponentsInChildren_26__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C170, GameObject_GetComponent_190__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C1A8, Array_Resize_150__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C1B8, ScriptableObject_CreateInstance_20__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C1C8, Dictionary_2_System_Reflection_MethodInfo_System_Int32__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C1D8, EntityEventListener_1_IIntroState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C208, Dictionary_2_System_String_Opsive_UltimateCharacterController_StateSystem_State__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C210, Array_Resize_151__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C218, Object_1_Instantiate_29__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C2E0, Dictionary_2_System_Reflection_MethodInfo_System_Int32___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C2F0, Dictionary_2_System_Reflection_MethodInfo_System_Int32__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C2F8, ScriptableObject_CreateInstance_21__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C330, GameObject_GetComponent_191__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C340, GameObject_GetComponent_192__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C3B0, EntityEventListenerBase_1_Photon_Bolt_IIntroState__get_state__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C8A0, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_ShootableWeapon_ReloadClipType___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C8B0, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Traits_Respawner_SpawnPositioningMode___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C8B8, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_RotateInterpolationMode___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C8C0, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_ShootableWeapon_ProjectileVisiblityType___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C8D0, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_PathMovementType___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C8D8, Preset_GenericDelegate_1_UnityEngine_Object___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C8E8, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_RestrictPosition_RestrictionType___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C8F0, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Ability_AbilityBoolOverride___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C8F8, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_MagicItem_CastInterruptSource___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C900, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Effects_Shake_ShakeTarget___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C918, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Audio_AudioClipSet___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C958, Preset_GenericDelegate_1_UnityEngine_AnimationCurve___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C968, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_MagicItem_CastDirection___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C980, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_DetectObjectAbilityBase_ObjectDetectionMode___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C990, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Utility_ObjectSpawnInfo___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C998, Preset_GenericDelegate_1_UnityEngine_QueryTriggerInteraction___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C9A0, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C9A8, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_FootstepPlacementMode___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C9B0, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Utility_AnimationEventTrigger___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C9B8, Preset_GenericDelegate_1_UnityEngine_HumanBodyBones___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C9E0, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Ability_AbilityStartType___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1C9F0, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_MagicItem_CastUseType___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1CA08, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Items_Reload_AutoReloadType___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1CA10, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Traits_Attribute_AutoUpdateValue___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1CA18, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_PathDirection___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1CA20, Preset_GenericDelegate_1_UnityEngine_GameObject___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1CA28, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Ability_AbilityStopType___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1CA30, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Items_EquipUnequip_AutoEquipType___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1CA38, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_MovementInterpolationMode___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1CA68, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Input_PlayerInput_LookVectorMode___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1CA70, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_ShootableWeapon_FireType___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1CA78, Preset_GenericDelegate_1_UnityEngine_ForceMode___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1CA90, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_ShootableWeapon_FireMode___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1CA98, Preset_GenericDelegate_1_System_String___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1CB20, Preset_GenericDelegate_1_UnityEngine_Transform___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1CB28, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Game_SpawnPoint_SpawnShape___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1CDF8, Dictionary_2_UnityEngine_Collider_UnityEngine_Terrain___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1CE00, Dictionary_2_UnityEngine_Collider_UnityEngine_Texture___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1CE08, Dictionary_2_UnityEngine_Collider_UnityEngine_Mesh___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1CE10, Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceType_Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceEffect___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1CEA8, Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceEffect___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1CEB0, Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceType_Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceEffect__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1CEB8, Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceEffect__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1CEC0, Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceType_Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceEffect__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1CEC8, Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceEffect__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1CED0, Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceEffect__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1CED8, Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceEffect__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1CEE0, Dictionary_2_UnityEngine_Texture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1CEE8, Dictionary_2_UnityEngine_Texture_List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1CEF0, Dictionary_2_UnityEngine_Collider_UnityEngine_Renderer___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1CEF8, Dictionary_2_UnityEngine_Collider_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceType___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1CF00, Dictionary_2_UnityEngine_Collider_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceIdentifier___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1CF08, Dictionary_2_UnityEngine_Texture_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceType___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1CF10, Dictionary_2_UnityEngine_Collider_System_Boolean___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1CF48, Dictionary_2_UnityEngine_Collider_UnityEngine_Mesh__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1CF50, Dictionary_2_UnityEngine_Collider_UnityEngine_Mesh__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1CF58, Component_GetComponentInParent_26__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1CF60, Component_GetComponentInChildren_18__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1CF68, Dictionary_2_UnityEngine_Collider_UnityEngine_Terrain__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1CF70, Dictionary_2_UnityEngine_Collider_UnityEngine_Terrain__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1CF80, Dictionary_2_UnityEngine_Collider_UnityEngine_Renderer__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1CF88, Dictionary_2_UnityEngine_Collider_UnityEngine_Renderer__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1CF90, Component_GetComponentsInParent_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1CF98, Dictionary_2_UnityEngine_Collider_System_Boolean__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1CFA0, Dictionary_2_UnityEngine_Collider_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceType__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1CFA8, Dictionary_2_UnityEngine_Texture_List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1CFB0, Dictionary_2_UnityEngine_Collider_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceType__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1CFB8, Dictionary_2_UnityEngine_Collider_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceIdentifier__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1CFC0, Dictionary_2_UnityEngine_Texture_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceType__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1CFC8, Dictionary_2_UnityEngine_Texture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1CFD0, Dictionary_2_UnityEngine_Collider_UnityEngine_Texture__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1CFD8, Dictionary_2_UnityEngine_Collider_UnityEngine_Texture__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1CFF8, Dictionary_2_UnityEngine_Texture_List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D008, Dictionary_2_UnityEngine_Texture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D010, Dictionary_2_UnityEngine_Texture_List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D018, Dictionary_2_UnityEngine_Texture_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceType__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D038, Object_1_FindObjectsOfType_18__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D040, Dictionary_2_UnityEngine_Collider_System_Boolean__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D048, Dictionary_2_UnityEngine_Collider_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceIdentifier__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D050, Dictionary_2_UnityEngine_Collider_System_Boolean__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D058, Component_GetComponent_226__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D060, Component_GetComponentInParent_27__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D068, Component_GetComponentInChildren_19__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D078, Dictionary_2_UnityEngine_GameObject_UnityEngine_Renderer___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D080, Dictionary_2_UnityEngine_GameObject_UnityEngine_Mesh___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D088, Dictionary_2_UnityEngine_GameObject_UnityEngine_Renderer__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D0A8, GameObject_AddComponent_143__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D0C0, GameObject_AddComponent_144__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D0F0, Component_GetComponentsInChildren_57__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D0F8, Dictionary_2_UnityEngine_GameObject_UnityEngine_Mesh__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D100, Dictionary_2_UnityEngine_GameObject_UnityEngine_Renderer__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D108, Dictionary_2_UnityEngine_GameObject_UnityEngine_Mesh__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D110, Dictionary_2_UnityEngine_GameObject_UnityEngine_Renderer__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D120, GameObject_GetComponentsInChildren_27__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D128, Component_GetComponentInChildren_20__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D140, GameObjectExtensions_GetCachedComponent_28__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D170, GameObject_GetComponentsInChildren_28__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D178, Component_GetComponentInParent_28__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D1A0, Component_GetComponentsInChildren_58__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D1B0, UnityEvent_3_UnityEngine_Vector3_UnityEngine_Vector3_UnityEngine_GameObject__Invoke__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D1D8, Dictionary_2_UnityEngine_Collider_Opsive_UltimateCharacterController_Traits_Hitbox__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D1E0, Component_GetComponent_227__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D200, GameObjectExtensions_GetCachedComponent_29__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D208, EventHandler_1_ExecuteEvent_78__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D210, UnityEvent_4_System_Single_UnityEngine_Vector3_UnityEngine_Vector3_UnityEngine_GameObject__Invoke__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D220, Dictionary_2_UnityEngine_Collider_Opsive_UltimateCharacterController_Traits_Hitbox__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D228, Dictionary_2_UnityEngine_Collider_Opsive_UltimateCharacterController_Traits_Hitbox__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D230, GameObjectExtensions_GetCachedComponent_30__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D238, GameObjectExtensions_GetCachedComponent_31__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D248, Dictionary_2_UnityEngine_Collider_Opsive_UltimateCharacterController_Traits_Hitbox___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D250, Dictionary_2_System_String_Opsive_UltimateCharacterController_Traits_Attribute__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D258, Dictionary_2_System_String_Opsive_UltimateCharacterController_Traits_Attribute__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D268, EventHandler_1_ExecuteEvent_79__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D290, Dictionary_2_System_String_Opsive_UltimateCharacterController_Traits_Attribute___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D2A8, Dictionary_2_System_String_Opsive_UltimateCharacterController_Traits_Attribute__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D2C0, EventHandler_1_ExecuteEvent_80__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D3A0, Queue_1_UnityEngine_Transform__Dequeue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D3B8, Queue_1_UnityEngine_Transform__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D3C0, Queue_1_UnityEngine_Transform___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D3C8, Queue_1_UnityEngine_Transform__Enqueue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D4B8, AsyncOperationHandle_Convert_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D4C0, AsyncOperationHandle_1_System_Collections_Generic_IList_1__1_get_Status__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D4E0, AsyncOperationHandle_1_System_Collections_Generic_IList_1__1_get_OperationException__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D518, Queue_1_UnityEngine_UIElements_EventBase___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D5C8, Dictionary_2_UnityEngine_GameObject_Opsive_UltimateCharacterController_Audio_AudioManager_AudioSourcesIndex__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D630, Array_Resize_152__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D660, GameObject_GetComponents_19__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D690, Dictionary_2_UnityEngine_GameObject_Opsive_UltimateCharacterController_Audio_AudioManager_AudioSourcesIndex___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D6C8, Dictionary_2_UnityEngine_GameObject_Opsive_UltimateCharacterController_Audio_AudioManager_AudioSourcesIndex__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D6D0, Dictionary_2_UnityEngine_GameObject_Opsive_UltimateCharacterController_Audio_AudioManager_AudioSourcesIndex__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D6D8, Dictionary_2_UnityEngine_GameObject_Opsive_UltimateCharacterController_Audio_AudioManager_AudioSourcesIndex__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D6F8, GameObject_AddComponent_145__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D708, List_1_Opsive_UltimateCharacterController_Input_ActiveInputEvent___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D710, List_1_Opsive_UltimateCharacterController_Input_ActiveInputEvent__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D718, List_1_Opsive_UltimateCharacterController_Input_ActiveInputEvent__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D720, List_1_Opsive_UltimateCharacterController_Input_ActiveInputEvent__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D728, GameObject_GetComponent_193__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D748, List_1_Opsive_UltimateCharacterController_Input_ActiveInputEvent__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D7C0, Object_1_FindAnyObjectByType_27__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D808, Component_GetComponentsInChildren_59__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D810, Component_GetComponentInChildren_21__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D818, Component_GetComponentInChildren_22__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D820, Component_GetComponentInChildren_23__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D830, Component_GetComponent_228__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D850, EntityEventListener_1_ISurvivalLobbyState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D860, Dictionary_2_System_Int32_Dissonance_VoicePlayerState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D868, AsyncOperationHandle_1_UnityEngine_Material__IsValid__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D870, Addressables_Release_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D8A0, Dictionary_2_System_Int32_UnityEngine_TerrainUtils_TerrainMap__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D8B0, Dictionary_2_System_Int32_UnityEngine_TerrainUtils_TerrainMap___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D8C0, Dictionary_2_System_Int32_UnityEngine_TerrainUtils_TerrainMap__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D8D0, Dictionary_2_System_Int32_UnityEngine_TerrainUtils_TerrainMap__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D8D8, Dictionary_2_System_Int32_UnityEngine_TerrainUtils_TerrainMap__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D8E0, Dictionary_2_UnityEngine_TerrainUtils_TerrainTileCoord_UnityEngine_Terrain__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D8F8, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_UnityEngine_Terrain__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D900, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_TerrainUtils_TerrainMap__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D918, Component_GetComponent_229__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D920, KeyValuePair_2_System_Int32_UnityEngine_TerrainUtils_TerrainMap__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D930, KeyValuePair_2_UnityEngine_TerrainUtils_TerrainTileCoord_UnityEngine_Terrain__get_Key__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D938, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_UnityEngine_Terrain__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D940, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_TerrainUtils_TerrainMap__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D948, Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_TerrainUtils_TerrainMap__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D950, KeyValuePair_2_System_Int32_Dissonance_VoicePlayerState__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D958, Dictionary_2_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_UnityEngine_Terrain__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D960, KeyValuePair_2_System_Int32_Dissonance_VoicePlayerState__get_Key__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D968, Dictionary_2_TKey_TValue_Enumerator_System_Int32_Dissonance_VoicePlayerState__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D970, Dictionary_2_TKey_TValue_Enumerator_System_Int32_Dissonance_VoicePlayerState__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D978, Dictionary_2_System_Int32_Dissonance_VoicePlayerState__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D980, Dictionary_2_TKey_TValue_Enumerator_System_Int32_Dissonance_VoicePlayerState__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D990, Dictionary_2_System_Int32_Dissonance_VoicePlayerState__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D998, Dictionary_2_UnityEngine_TerrainUtils_TerrainTileCoord_UnityEngine_Terrain__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D9B8, Dictionary_2_UnityEngine_TerrainUtils_TerrainTileCoord_UnityEngine_Terrain__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D9D0, Dictionary_2_UnityEngine_TerrainUtils_TerrainTileCoord_UnityEngine_Terrain__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D9E0, Dictionary_2_UnityEngine_TerrainUtils_TerrainTileCoord_UnityEngine_Terrain___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1D9F0, Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_TerrainUtils_TerrainTileCoord_UnityEngine_Terrain__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1DA00, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_UnityEngine_Terrain__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1DA10, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_UnityEngine_Terrain__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1DA18, Dictionary_2_UnityEngine_TerrainUtils_TerrainTileCoord_UnityEngine_Terrain__get_Keys__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1DA20, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_UnityEngine_Terrain__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1DA28, ReadOnlyCollection_1_Dissonance_VoicePlayerState__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1DA58, NetworkArray_Objects_1_SurvivalPlayer__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1DA88, Array_FindIndex_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1DA98, Dictionary_2_System_Int32_Dissonance_VoicePlayerState__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1DAA0, Dictionary_2_System_Int32_Dissonance_VoicePlayerState__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1DAD0, NetworkArray_Objects_1_SurvivalPlayer__get_Length__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1DBA8, Object_1_FindAnyObjectByType_28__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1DBB8, NetworkArray_Objects_1_SurvivalPlayer__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1DBC0, GameObject_GetComponentsInChildren_29__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1DBC8, GameObject_GetComponent_194__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1DBD0, GameObject_GetComponent_195__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1DBE0, GameObject_GetComponent_196__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1DBE8, GameObject_GetComponent_197__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1DBF0, GameObject_GetComponent_198__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1DBF8, GameObject_GetComponent_199__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1DC00, GameObject_AddComponent_146__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1DD18, Component_GetComponent_230__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1DD38, Addressables_LoadAssetAsync_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1DDA0, Object_1_FindAnyObjectByType_29__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1DDA8, GameObject_GetComponent_200__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1DDB0, GameObject_GetComponent_201__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1DDB8, GameObject_GetComponent_202__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1DDC0, Component_GetComponent_231__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1DE58, GameObject_GetComponent_203__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1DE60, GameObject_AddComponent_147__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1DE68, Enumerable_OrderBy_23__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1DF60, Component_GetComponent_232__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1DF68, Component_GetComponent_233__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1DF70, Component_GetComponent_234__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1DF78, Component_GetComponent_235__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1DF80, Component_GetComponent_236__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1DF88, Component_GetComponent_237__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1DF90, Component_GetComponent_238__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1DFA0, Component_GetComponent_239__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1DFA8, Component_GetComponent_240__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1DFB0, Component_GetComponent_241__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1DFC0, Component_GetComponent_242__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1DFD0, Component_GetComponent_243__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1DFE0, Component_GetComponent_244__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1DFF0, Component_GetComponent_245__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1DFF8, Component_GetComponent_246__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1E038, Enumerable_Count_27__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1E140, GameObject_GetComponent_204__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1E3D8, TextProcessingStack_1_TextFontWeight__SetDefault__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1E3E8, TextProcessingStack_1_TextColorGradient__SetDefault__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1E410, TextProcessingStack_1_TextAlignment__SetDefault__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1E5A0, Array_Resize_153__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1E5A8, EventHandler_1_ExecuteEvent_81__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1E610, GameObject_GetComponentInChildren_15__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1E618, GameObjectExtensions_GetCachedComponent_32__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1E630, Task_1_System_Net_IPAddress__ContinueWith__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1E640, UltimateCharacterLocomotion_GetAbility_35__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1E648, GameObjectExtensions_GetCachedParentComponent_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1E6D8, EventHandler_1_ExecuteEvent_82__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1E728, UltimateCharacterLocomotion_GetAbility_36__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1E750, GameObjectExtensions_GetCachedComponent_33__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1E768, GameObjectExtensions_GetCachedComponents_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1E7E0, TextProcessingStack_1_TextAlignment___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1E820, TextProcessingStack_1_TextFontWeight___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1E828, TextProcessingStack_1_TextColorGradient___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1E840, Component_GetComponents_28__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1E898, List_1_System_Net_Sockets_Socket__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1E8B8, List_1_System_Net_Sockets_Socket___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1E8C0, List_1_System_Net_Sockets_Socket__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1E8E0, List_1_System_Net_Sockets_Socket__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1E930, List_1_UnityEngine_TextCore_Text_SpriteCharacter__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1EA18, List_1_UnityEngine_TextCore_Text_FontAsset__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1EA20, GameObjectExtensions_GetCachedParentComponent_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1EA50, Resources_Load_22__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1EA68, Resources_Load_23__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1EA78, Resources_Load_24__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1EA80, GameObjectExtensions_GetCachedParentComponent_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1EA88, List_1_UnityEngine_TextCore_Text_SpriteCharacter__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1EA98, GameObjectExtensions_GetCachedParentComponent_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1EAA8, EventHandler_1_ExecuteEvent_83__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1EAC8, TextProcessingStack_1_TextFontWeight__Peek__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1EAD8, TextProcessingStack_1_TextColorGradient__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1EAF0, TextProcessingStack_1_TextAlignment__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1EAF8, TextProcessingStack_1_TextFontWeight__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1EB40, TextProcessingStack_1_TextColorGradient__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1EB50, GameObjectExtensions_GetCachedParentComponent_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1EB58, TextProcessingStack_1_TextAlignment__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1EB60, GameObjectExtensions_GetCachedParentComponent_12__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1EBE0, TextProcessingStack_1_TextFontWeight__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1EBF0, Dictionary_2_UnityEngine_GameObject_System_Int32__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1EC08, Dictionary_2_UnityEngine_GameObject_System_Int32___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1EC50, Component_GetComponent_247__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1EC80, Dictionary_2_UnityEngine_GameObject_System_Int32__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1EC90, Dictionary_2_UnityEngine_GameObject_System_Int32__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1ECC8, AsyncTaskMethodBuilder_1_System_Net_Sockets_Socket__SetException__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1ECD8, AsyncTaskMethodBuilder_1_System_Net_Sockets_Socket__SetResult__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1ED00, Socket_StateTaskCompletionSource_3_SocketFlags_System_Net_EndPoint_SocketReceiveMessageFromResult___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1ED38, Socket_StateTaskCompletionSource_2_System_Net_EndPoint_SocketReceiveFromResult___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1ED58, Tuple_Create_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1ED90, LazyInitializer_EnsureInitialized_12__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1EDB8, Tuple_Create_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1EDF0, AsyncTaskMethodBuilder_1_System_Net_Sockets_Socket__get_Task__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1EE00, Socket_TaskSocketAsyncEventArgs_1_Socket__GetCompletionResponsibility__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1EE08, LazyInitializer_EnsureInitialized_13__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1EE48, TaskCompletionSource_1_System_Net_Sockets_Socket__get_Task__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1EE50, TaskCompletionSource_1_System_Net_Sockets_Socket___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1EE68, Task_FromResult_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1EE70, Task_FromException_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1EE80, Socket_TaskSocketAsyncEventArgs_1_Socket___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1F2B8, List_1_System_Net_NetworkInformation_Win32IPGlobalProperties_Win32_MIB_TCP6ROW__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1F2C0, List_1_System_Net_NetworkInformation_Win32IPGlobalProperties_Win32_MIB_TCPROW__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1F2C8, List_1_System_Net_NetworkInformation_Win32IPGlobalProperties_Win32_MIB_TCP6ROW__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1F2D8, List_1_System_Net_NetworkInformation_Win32IPGlobalProperties_Win32_MIB_TCPROW__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1F2E8, Marshal_PtrToStructure_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1F2F0, Marshal_PtrToStructure_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1F348, List_1_Microsoft_MixedReality_OpenXR_SubsystemController___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1F390, List_1_System_Net_IPEndPoint___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1F3A0, List_1_System_Net_IPEndPoint__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1F3B0, List_1_System_Net_IPEndPoint__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1F3C0, Marshal_PtrToStructure_12__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1F3C8, Marshal_PtrToStructure_13__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1F410, List_1_System_Net_NetworkInformation_Win32IPGlobalProperties_Win32_MIB_TCP6ROW__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1F420, List_1_System_Net_NetworkInformation_Win32IPGlobalProperties_Win32_MIB_TCP6ROW___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1F428, List_1_System_Net_NetworkInformation_Win32IPGlobalProperties_Win32_MIB_TCPROW___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1F430, List_1_System_Net_NetworkInformation_Win32IPGlobalProperties_Win32_MIB_TCPROW__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1F468, TaskFactory_1_System_Net_NetworkInformation_PingReply__StartNew__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1F4A0, Task_1_System_Net_NetworkInformation_PingReply__get_Factory__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1F4A8, Task_1_System_Net_NetworkInformation_PingReply__ContinueWith__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1F4B8, List_1_Microsoft_MixedReality_OpenXR_SubsystemController__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1F4C0, List_1_Microsoft_MixedReality_OpenXR_SubsystemController__ForEach__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1F4D8, Task_1_System_Net_NetworkInformation_PingReply__get_Result__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1F670, List_1_UnityEngine_Rendering_VolumeParameter__AsReadOnly__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1F6A8, ReadOnlyCollection_1_UnityEngine_Rendering_VolumeParameter__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1F6C0, ReadOnlyCollection_1_UnityEngine_Rendering_VolumeParameter__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1F718, Enumerable_OrderBy_24__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1F758, Enumerable_Where_62__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1F760, Enumerable_ToList_39__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1F768, Enumerable_Select_91__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1F990, Collection_1_System_Net_NetworkInformation_UnicastIPAddressInformation__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1F998, Collection_1_System_Net_NetworkInformation_UnicastIPAddressInformation__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1F9A8, Collection_1_System_Net_NetworkInformation_UnicastIPAddressInformation__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1FA58, Collection_1_System_Net_NetworkInformation_UnicastIPAddressInformation__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1FA70, Collection_1_System_Net_NetworkInformation_UnicastIPAddressInformation__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1FA80, Collection_1_System_Net_NetworkInformation_UnicastIPAddressInformation___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1FA98, Collection_1_System_Net_NetworkInformation_UnicastIPAddressInformation__CopyTo__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1FC10, List_1_Language___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1FC18, List_1_UnityEngine_TextAsset___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1FC20, List_1_LanguageUniqueFont___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1FC28, List_1_Crosstales_BWF_Provider_BadWordProvider__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1FC48, Resources_FindObjectsOfTypeAll_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1FC50, Resources_FindObjectsOfTypeAll_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1FC58, GameObject_GetComponent_205__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1FC60, GameObject_GetComponent_206__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1FC68, GameObject_GetComponent_207__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1FC70, GameObject_GetComponent_208__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1FC78, GameObject_GetComponent_209__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1FC90, List_1_TextKeyValue__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1FC98, List_1_Language__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1FCA0, List_1_T_Enumerator_TextKeyValue__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1FCA8, List_1_T_Enumerator_Language__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1FCB0, List_1_T_Enumerator_Language__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1FCB8, List_1_T_Enumerator_TextKeyValue__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1FCC0, List_1_T_Enumerator_TextKeyValue__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1FCC8, List_1_T_Enumerator_Language__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1FCD0, Resources_FindObjectsOfTypeAll_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1FCD8, Component_GetComponent_248__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1FCF0, List_1_LanguageUniqueFont__Find__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1FD20, List_1_UnityEngine_TextAsset__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1FD28, List_1_Language__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1FD30, List_1_TextKeyValue__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1FD50, List_1_T_Enumerator_UnityEngine_TextAsset__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1FD58, List_1_T_Enumerator_UnityEngine_TextAsset__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1FD60, List_1_T_Enumerator_UnityEngine_TextAsset__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1FD78, List_1_UnityEngine_UI_Dropdown_OptionData__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1FD80, List_1_UnityEngine_UI_Dropdown_OptionData__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1FDA0, Component_GetComponent_249__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1FE08, List_1_Rewired_ActionElementMap___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1FE10, List_1_Rewired_ActionElementMap__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1FE18, List_1_T_Enumerator_Rewired_ActionElementMap__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1FE20, List_1_T_Enumerator_Rewired_ActionElementMap__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1FE28, List_1_T_Enumerator_Rewired_ActionElementMap__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1FE60, EventHandler_1_ExecuteEvent_84__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1FEA8, List_1_Waypoint__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1FEC0, Component_GetComponent_250__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1FEF8, Component_GetComponentsInChildren_60__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1FF08, Component_GetComponent_251__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1FF10, Component_GetComponent_252__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1FF88, EntityEventListener_1_ITownPentagramState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1FF98, Component_GetComponent_253__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1FFA0, NetworkArray_Objects_1_Candle__get_Length__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1FFA8, NetworkArray_Objects_1_Candle__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D1FFC8, NetworkArray_Objects_1_Candle__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20008, Object_1_FindAnyObjectByType_30__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20010, List_1_TownPentagramCandle__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20018, List_1_TownPentagramCandle__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20020, Component_GetComponentInChildren_24__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D200D0, EventHandler_1_ExecuteEvent_85__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D200F0, List_1_TownLocation__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20100, GameObject_GetComponent_210__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20110, GameObject_GetComponent_211__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20120, List_1_UnityEngine_AudioSource___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20130, Dictionary_2_System_String_KeySpawnPoint___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20140, List_1_UnityEngine_Light__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20148, List_1_UnityEngine_Material__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20170, KeyValuePair_2_System_String_KeySpawnPoint__get_Value__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20178, KeyValuePair_2_System_String_KeySpawnPoint__get_Key__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20180, Dictionary_2_TKey_TValue_Enumerator_System_String_KeySpawnPoint__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20188, Dictionary_2_TKey_TValue_Enumerator_System_String_KeySpawnPoint__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20190, Dictionary_2_System_String_KeySpawnPoint__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20198, Dictionary_2_TKey_TValue_Enumerator_System_String_KeySpawnPoint__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20200, Enumerable_Select_92__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20210, Dictionary_2_System_String_KeySpawnPoint__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20220, Component_GetComponent_254__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20270, List_1_TownLocation__Find__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20318, GameObject_GetComponentInChildren_16__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20328, GameObject_GetComponentInChildren_17__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20338, List_1_TownLocation__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20350, IListExtensions_Shuffle_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20360, GameObject_GetComponent_212__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20428, List_1_UnityEngine_AudioSource__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D204B0, Enumerable_ToList_40__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D204C0, Enumerable_OrderBy_25__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D204D8, List_1_LockboxSpawnPoint___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D204E8, List_1_TownLocation__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D204F8, List_1_LockboxSpawnPoint__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20508, List_1_UnityEngine_AudioSource__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20510, Enumerable_ToList_41__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20518, List_1_UnityEngine_Light__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20528, GameObject_GetComponentsInChildren_30__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20540, List_1_UnityEngine_TextCore_Text_SpriteCharacter___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20548, List_1_T_Enumerator_TownLocation__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20550, List_1_UnityEngine_TextCore_Text_SpriteGlyph___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20558, List_1_T_Enumerator_LockboxSpawnPoint__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20560, List_1_T_Enumerator_LockboxSpawnPoint__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20568, List_1_T_Enumerator_TownLocation__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20578, Enumerable_Select_93__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20588, Component_GetComponentInParent_29__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20598, List_1_T_Enumerator_TownLocation__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D205A0, List_1_T_Enumerator_LockboxSpawnPoint__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D205C0, Dictionary_2_System_UInt32_UnityEngine_TextCore_Text_SpriteCharacter___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D205C8, Dictionary_2_System_UInt32_UnityEngine_TextCore_Text_SpriteGlyph___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D205D0, Dictionary_2_System_UInt32_UnityEngine_TextCore_Text_SpriteCharacter__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D205E0, Dictionary_2_System_UInt32_UnityEngine_TextCore_Text_SpriteGlyph__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D205F0, Dictionary_2_System_UInt32_UnityEngine_TextCore_Text_SpriteCharacter__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20600, Dictionary_2_System_UInt32_UnityEngine_TextCore_Text_SpriteGlyph__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20608, Dictionary_2_System_UInt32_UnityEngine_TextCore_Text_SpriteCharacter__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20610, Dictionary_2_System_UInt32_UnityEngine_TextCore_Text_SpriteGlyph__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20618, EntityEventListener_1_IInteractObjectState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20620, List_1_UnityEngine_TextCore_Text_SpriteGlyph__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20628, List_1_UnityEngine_TextCore_Text_SpriteGlyph__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20648, Dictionary_2_System_UInt32_UnityEngine_TextCore_Text_SpriteGlyph__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20670, Enumerable_OrderBy_26__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20690, Dictionary_2_System_Int32_UnityEngine_TextCore_Text_FontAsset__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20698, Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextColorGradient__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D206A0, Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextColorGradient__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D206A8, Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextColorGradient__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D206B0, Dictionary_2_System_Int32_UnityEngine_TextCore_Text_SpriteAsset__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D206C8, List_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D206D8, List_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D206E8, List_1_Kalagaan_HairDesignerExtension_HairDesignerShader___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D206F0, Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextColorGradient___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D206F8, List_1_Kalagaan_HairDesignerExtension_MotionZone___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20708, Dictionary_2_System_Int32_UnityEngine_TextCore_Text_FontAsset___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20720, Dictionary_2_System_Int32_UnityEngine_TextCore_Text_SpriteAsset___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20748, Component_GetComponent_255__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20750, List_1_Kalagaan_HairDesignerExtension_HairToolLayer___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20768, Dictionary_2_System_Int64_UnityEngine_Material__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20778, Dictionary_2_System_Int64_UnityEngine_Material__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20790, EntityEventListener_1_IBurnTrapState___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20798, List_1_Kalagaan_HairDesignerExtension_HairDesignerGenerator__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D207A8, List_1_Kalagaan_HairDesignerExtension_HairDesignerShader__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D207B0, Dictionary_2_System_Int64_UnityEngine_Material___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D207B8, Component_GetComponentsInChildren_61__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D207C0, Dictionary_2_System_Int32_UnityEngine_TextCore_Text_FontAsset__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20820, Dictionary_2_System_Int32_UnityEngine_TextCore_Text_SpriteAsset__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20838, Dictionary_2_System_Int32_UnityEngine_TextCore_Text_SpriteAsset__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20848, Dictionary_2_System_Int32_UnityEngine_TextCore_Text_FontAsset__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20858, Dictionary_2_System_UInt32_UnityEngine_TextCore_Text_Character__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20888, List_1_Kalagaan_HairDesignerExtension_HairToolLayer__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20898, List_1_Kalagaan_HairDesignerExtension_HairToolLayer__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D208A0, List_1_UnityEngine_TextCore_Text_SpriteAsset__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D208A8, List_1_UnityEngine_TextCore_Text_SpriteAsset__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D208B0, Dictionary_2_System_UInt32_UnityEngine_TextCore_Text_SpriteCharacter__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D208C0, List_1_Kalagaan_HairDesignerExtension_MotionZone__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D208F8, List_1_Kalagaan_HairDesignerExtension_MotionZone__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20900, GameObject_AddComponent_148__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20908, GameObject_AddComponent_149__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20938, List_1_Kalagaan_HairDesignerExtension_HairDesignerShader__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20940, Enumerable_ToList_42__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20950, List_1_Kalagaan_HairDesignerExtension_HairDesignerShader__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20958, List_1_Kalagaan_HairDesignerExtension_HairDesignerShader__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20980, List_1_UnityEngine_TextCore_Text_FontAsset___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20988, List_1_Kalagaan_HairDesignerExtension_TextureToolColor___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20990, List_1_Kalagaan_HairDesignerExtension_TextureToolColor__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D209A8, List_1_Kalagaan_HairDesignerExtension_TextureToolShaderParameters___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D209B0, List_1_UnityEngine_TextCore_Text_Character___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20A00, List_1_UnityEngine_Texture2D__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20A08, Component_GetComponents_29__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20A10, Component_GetComponents_30__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20A18, List_1_UnityEngine_TextCore_Text_FontAsset__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20A20, List_1_UnityEngine_TextCore_Text_FontAsset__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20A28, List_1_UnityEngine_TextCore_Text_Character__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20A40, List_1_Kalagaan_HairDesignerExtension_HairDesignerGenerator___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20A48, List_1_UnityEngine_Texture2D__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20A78, List_1_UnityEngine_TextCore_Text_Character__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20A88, List_1_UnityEngine_TextCore_Text_Character__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20AA8, Enumerable_ToList_43__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20AB0, Enumerable_OrderBy_27__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20B18, List_1_UnityEngine_TextCore_Text_FontAsset__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20B28, List_1_Kalagaan_HairDesignerExtension_HairDesignerGenerator__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20B30, List_1_Kalagaan_HairDesignerExtension_HairDesignerGenerator__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20B40, List_1_Kalagaan_HairDesignerExtension_HairDesignerStrandMeshCollectionBase_StrandMesh__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20B48, List_1_Kalagaan_HairDesignerExtension_HairDesignerStrandMeshCollectionBase_StrandMesh__Find__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20B58, Dictionary_2_System_UInt32_UnityEngine_TextCore_Text_Character__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20B60, Dictionary_2_System_UInt32_UnityEngine_TextCore_Text_Character__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20B78, List_1_UnityEngine_TextCore_Text_Character__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20B80, List_1_UnityEngine_TextCore_Text_Character__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20B98, List_1_Kalagaan_HairDesignerExtension_HairDesignerStrandMeshCollectionBase_StrandMesh___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20BA0, Dictionary_2_System_UInt32_UnityEngine_TextCore_Text_Character___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20BA8, Dictionary_2_System_UInt32_UnityEngine_TextCore_Text_Character__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20BB8, Dictionary_2_System_UInt32_UnityEngine_TextCore_Text_Character__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20C08, List_1_Kalagaan_HairDesignerExtension_MotionSolver_Link__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20C18, List_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20C38, List_1_Kalagaan_HairDesignerExtension_HairDesignerMotionConstraintAreaBase___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20CB8, List_1_Kalagaan_HairDesignerExtension_MotionSolver_Link___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20CC0, ScriptableObject_CreateInstance_22__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20D40, List_1_Kalagaan_HairDesignerExtension_HairDesignerMotionConstraintAreaBase__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20D60, Enumerable_Select_94__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20D78, Object_1_Instantiate_30__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20DB0, Resources_Load_25__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20DE8, List_1_Kalagaan_HairDesignerExtension_MotionSolver_Link__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20DF0, List_1_Kalagaan_HairDesignerExtension_MotionSolver_Link__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20E00, Enumerable_Select_95__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20E08, Enumerable_Select_96__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20E30, List_1_Kalagaan_HairDesignerExtension_HairDesignerMotionConstraintAreaBase__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20E38, List_1_Kalagaan_HairDesignerExtension_HairDesignerMotionConstraintAreaBase__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20E48, List_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20E50, List_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20E58, List_1_Kalagaan_HairDesignerExtension_MotionSolver_Node__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20E60, List_1_Kalagaan_HairDesignerExtension_MotionSolver_Node__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20E68, List_1_Kalagaan_HairDesignerExtension_HairDesignerMotionConstraintAreaBase_Area__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20E70, List_1_Kalagaan_HairDesignerExtension_HairDesignerMotionConstraintAreaBase_Area__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20E78, List_1_Kalagaan_HairDesignerExtension_MotionSolver_Node__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20E80, List_1_Kalagaan_HairDesignerExtension_MotionSolver_Node__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20E98, List_1_Kalagaan_HairDesignerExtension_HairDesignerMotionConstraintAreaBase_Area___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20EA0, List_1_Kalagaan_HairDesignerExtension_MotionSolver_Node___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20EB8, List_1_Kalagaan_HairDesignerExtension_MotionSolver_Node__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20ED0, Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextStyle___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20ED8, Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextStyle__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20EE0, Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextStyle__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20EE8, Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextStyle__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20EF8, List_1_UnityEngine_TextCore_Text_TextStyle___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20F00, List_1_UnityEngine_TextCore_Text_TextStyle__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20F08, List_1_UnityEngine_TextCore_Text_TextStyle__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20F20, Resources_Load_26__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20F78, Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextStyle__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20F80, Dictionary_2_System_Int32_UnityEngine_TextCore_Text_FontAsset__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20F88, Dictionary_2_System_Int64_UnityEngine_TextCore_Text_FontAsset__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20F98, Dictionary_2_System_Int64_UnityEngine_TextCore_Text_FontAsset__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20FB0, Dictionary_2_System_Int64_UnityEngine_TextCore_Text_FontAsset___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D20FD0, Dictionary_2_System_Int64_UnityEngine_TextCore_Text_FontAsset__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21000, Dictionary_2_System_Int32_UnityEngine_TextCore_Text_FontAsset__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21060, List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorLongHairBase_MirrorModifier___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21070, List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorLongHairBase_HairGroup__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21080, List_1_UnityEngine_Transform__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21088, List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorLongHairBase_HairGroup___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D210C8, List_1_UnityEngine_Transform__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D210D8, List_1_Kalagaan_HairDesignerExtension_StrandData__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D210E8, List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorLongHairBase_MirrorModifier__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D210F0, List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorLongHairBase_MirrorModifier__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21120, GameObject_AddComponent_150__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21128, Enumerable_ToList_44__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21180, List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorLongHairBase_HairGroup__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21188, List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorLongHairBase_HairGroup__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21190, List_1_Kalagaan_HairDesignerExtension_StrandData__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21198, List_1_UnityEngine_CapsuleCollider__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D211A8, List_1_UnityEngine_CapsuleCollider__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D211B0, List_1_UnityEngine_CapsuleCollider__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D211B8, List_1_Kalagaan_HairDesignerExtension_HairPID_V3__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D211C0, List_1_Kalagaan_HairDesignerExtension_HairPID_V3__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D211D0, Component_GetComponent_256__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D211E0, List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_LODGroup___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D211F0, EventHandler_1_UnregisterEvent_88__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21208, List_1_UnityEngine_MeshFilter___ctor_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21230, GameObject_GetComponentsInChildren_31__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21298, Component_GetComponent_257__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D212E8, GameObjectExtensions_GetCachedComponent_34__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21330, List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_LODGroup__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21338, List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_LODGroup__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21348, Dictionary_2_Opsive_UltimateCharacterController_Items_Item_System_Int32__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21350, Dictionary_2_Opsive_UltimateCharacterController_Items_Item_System_Int32___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21358, Dictionary_2_Opsive_UltimateCharacterController_Items_Item_System_Int32__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21360, Component_GetComponents_31__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21368, EventHandler_1_UnregisterEvent_89__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21388, EventHandler_1_ExecuteEvent_86__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21398, List_1_UnityEngine_MeshFilter__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D213A0, GameObjectExtensions_GetCachedComponent_35__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D213A8, GameObjectExtensions_GetCachedComponent_36__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D213D8, List_1_UnityEngine_MeshRenderer__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D213E0, SchedulerBase_Schedule_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D213E8, List_1_UnityEngine_MeshRenderer__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21408, GameObjectExtensions_GetCachedComponents_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21448, SchedulerBase_ScheduleFixed_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21450, GameObject_AddComponent_151__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21480, List_1_UnityEngine_MeshRenderer__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D214B8, GameObjectExtensions_GetCachedComponent_37__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D214D8, EventHandler_1_RegisterEvent_90__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D214E8, Component_GetComponent_258__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21570, EventHandler_1_ExecuteEvent_87__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21588, EventHandler_1_RegisterEvent_91__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21598, EventHandler_1_ExecuteEvent_88__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D215F0, GameObjectExtensions_GetCachedComponent_38__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D215F8, Array_Sort_258__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21600, Component_GetComponents_32__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D216D0, GameObjectExtensions_GetCachedComponent_39__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D216D8, GameObjectExtensions_GetCachedComponent_40__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D216F0, Serialization_Serialize_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21718, GameObject_GetComponentInParent_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21750, Dictionary_2_System_Int32_Opsive_UltimateCharacterController_Items_Actions_ItemAction__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21758, EventHandler_1_ExecuteEvent_89__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21760, GameObjectExtensions_GetCachedComponent_41__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21770, Dictionary_2_System_Int32_Opsive_UltimateCharacterController_Items_Actions_ItemAction___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21778, Dictionary_2_System_Int32_Opsive_UltimateCharacterController_Items_Actions_ItemAction__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21780, Component_GetComponents_33__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21788, Component_GetComponents_34__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21A80, List_1_UnityEngine_SphereCollider___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21B38, List_1_UnityEngine_SphereCollider__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21BD0, List_1_Kalagaan_HairDesignerExtension_HairDesignerGenerator__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21BF0, Dictionary_2_System_String_UnityEngine_Transform___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21C00, List_1_UnityEngine_CapsuleCollider__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21C10, List_1_UnityEngine_SphereCollider__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21C18, List_1_UnityEngine_CapsuleCollider__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21C20, List_1_UnityEngine_SphereCollider__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21C28, List_1_UnityEngine_SphereCollider__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21C30, Dictionary_2_System_String_UnityEngine_Transform__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21C38, Component_GetComponentsInChildren_62__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21C40, GameObject_GetComponentsInChildren_32__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21C48, GameObject_GetComponent_213__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21C50, GameObject_GetComponent_214__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21C58, Dictionary_2_System_String_UnityEngine_Transform__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21C60, List_1_Kalagaan_HairDesignerExtension_HairDesignerShader__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21C68, List_1_UnityEngine_CapsuleCollider__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21CA0, List_1_Kalagaan_HairDesignerExtension_StrandData__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21CA8, List_1_Kalagaan_HairDesignerExtension_StrandData___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21CC0, List_1_Kalagaan_HairDesignerExtension_HairPID_V3___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21CE0, List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorLongHairBase_HairGroup__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21CE8, List_1_Kalagaan_HairDesignerExtension_StrandData__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21CF0, List_1_Kalagaan_HairDesignerExtension_StrandData__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21E08, InputControl_GetChildControl_12__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21E10, InputControl_GetChildControl_13__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21E18, InputControl_GetChildControl_14__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21E20, InputControl_GetChildControl_15__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21E28, InputControl_GetChildControl_16__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21E30, InputControl_GetChildControl_17__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D21E38, InputControl_GetChildControl_18__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22040, List_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionBinding__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22048, List_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_DeviceConfig__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22060, List_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionBinding___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22068, List_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_DeviceConfig___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22070, List_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionConfig___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22078, List_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionConfig__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D222C0, GameObjectExtensions_GetCachedComponent_42__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D222D0, Component_GetComponent_259__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22318, String_Join_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22338, Component_GetComponent_260__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22388, Component_GetComponent_261__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D223A8, Nullable_1_System_Net_WebSockets_WebSocketCloseStatus___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D223F0, GameObject_GetComponent_215__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22418, Task_FromResult_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22430, GameObjectExtensions_GetCachedComponent_43__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22440, GameObjectExtensions_GetCachedComponent_44__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22450, Component_GetComponentInParent_30__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22488, List_1_CharacterEmote___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22490, List_1_CharacterEmote__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22498, List_1_CharacterEmote__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D224E8, List_1_CharacterEmote__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22578, Task_FromException_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22598, ValueTask_1_System_Net_WebSockets_WebSocketReceiveResult__AsTask__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D225A8, ManagedWebSocket_ReceiveAsyncPrivate_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D225F0, Component_GetComponent_262__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22610, Object_1_FindAnyObjectByType_31__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22670, Array_Resize_154__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D226A8, OpenXRSettings_GetFeature_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D226C8, Dictionary_2_System_String_System_Single__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D226D0, Dictionary_2_System_String_System_Single___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D226E0, Dictionary_2_System_String_System_Single__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D226E8, Dictionary_2_System_String_System_Single__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D226F0, Dictionary_2_System_String_System_Single__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D226F8, Dictionary_2_System_String_System_Single__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22700, Dictionary_2_System_String_System_Single__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22728, Enumerable_FirstOrDefault_22__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22760, EventHandler_1_ExecuteEvent_90__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22798, TaskFactory_1_System_Net_Sockets_SocketReceiveFromResult__FromAsync_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D227B0, Ability_GetComponent_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D227D0, TaskFactory_1_System_Int32__FromAsync_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22810, Component_GetComponent_263__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22818, Component_GetComponent_264__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22858, TaskFactory_FromAsync_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22868, Ability_GetComponent_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22888, TaskFactory_1_System_Int32__FromAsync_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D228E0, TaskFactory_1_System_Int32__FromAsync_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22910, Ability_GetComponent_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22930, GameObject_GetComponent_216__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22950, TaskFactory_1_System_Net_Sockets_Socket__FromAsync__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22988, Enumerable_Contains_15__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22998, Component_GetComponentsInChildren_63__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D229A0, BoltEntity_GetState_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D229D0, UltimateCharacterLocomotion_GetAbility_37__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D229D8, UltimateCharacterLocomotion_GetAbility_38__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22A30, Dictionary_2_System_Threading_Thread_System_Diagnostics_StackTrace__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22A50, Dictionary_2_System_Threading_Thread_System_Diagnostics_StackTrace__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22A80, Dictionary_2_System_Threading_Thread_System_Diagnostics_StackTrace___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22AA0, List_1_System_Threading_Thread__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22AA8, List_1_System_Threading_Thread__IndexOf__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22AB0, Dictionary_2_System_Threading_Thread_System_Diagnostics_StackTrace__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22AB8, Component_GetComponent_265__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22AC8, TaskFactory_1_System_Int32__FromAsync_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22AF8, Object_1_FindAnyObjectByType_32__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22B40, TaskFactory_1_System_Int32__FromAsync_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22B48, Object_1_FindObjectsByType_25__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22B50, Component_GetComponent_266__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22B60, Component_GetComponentInParent_31__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22B80, Object_1_FindAnyObjectByType_33__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22C10, GameObject_GetComponent_217__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22C20, GameObject_AddComponent_152__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22C60, List_1_ScreenEffectType__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22C70, List_1_T_Enumerator_ScreenEffectType__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22C78, List_1_T_Enumerator_ScreenEffectType__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22C80, Task_1_System_Net_Sockets_TcpClient__get_Factory__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22C90, List_1_T_Enumerator_ScreenEffectType__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22DA8, List_1_ScreenEffectType__Find__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22DB8, Task_1_System_Net_Sockets_Socket__get_Factory__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22DC8, TaskFactory_1_System_Net_Sockets_Socket__FromAsync_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22DD0, Component_GetComponent_267__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22DE0, TaskFactory_1_System_Net_Sockets_TcpClient__FromAsync__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D22EC0, TaskFactory_FromAsync_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23078, GameObject_GetComponent_218__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23088, GameObject_GetComponent_219__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23098, TaskFactory_FromAsync_12__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D230D8, TaskFactory_FromAsync_13__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D230E0, Component_GetComponent_268__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23108, Task_1_System_Net_IPAddress__get_Result__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23118, GameObject_GetComponentsInChildren_33__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23190, List_1_UnityEngine_MeshRenderer___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23198, List_1_UnityEngine_MeshRenderer__ToArray__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D231A8, List_1_UnityEngine_MeshRenderer__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D231B8, List_1_UnityEngine_MeshRenderer__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D231C8, GameObject_GetComponentsInChildren_34__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D231D8, GameObject_GetComponentInChildren_18__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D231E0, List_1_T_Enumerator_UnityEngine_MeshRenderer__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D231E8, List_1_T_Enumerator_UnityEngine_MeshRenderer__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D231F0, List_1_T_Enumerator_UnityEngine_MeshRenderer__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23220, AsyncOperationHandle_1_UnityEngine_Material__get_Status__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23228, AsyncOperationHandle_1_UnityEngine_Material__get_Result__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23230, AsyncOperationHandle_1_UnityEngine_Material__get_IsDone__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23250, GameObject_AddComponent_153__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23258, GameObject_AddComponent_154__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23270, Tuple_2_System_Threading_Tasks_TaskCompletionSource_1_Byte__get_Item1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23288, Tuple_2_System_Threading_Tasks_TaskCompletionSource_1_Byte__get_Item2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D232B0, List_1_OutfitPreviewLoader_OutfitPreviewAvatar__Find__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D232C8, Component_GetComponent_269__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D232D8, Tuple_3_System_Threading_Tasks_TaskCompletionSource_1_Memory_1_Byte_Byte__get_Item3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23318, Enumerable_Where_63__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23320, Enumerable_ToArray_34__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23328, Component_GetComponentsInChildren_64__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23358, Tuple_3_System_Threading_Tasks_TaskCompletionSource_1_Memory_1_Byte_Byte__get_Item2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23360, Tuple_3_System_Threading_Tasks_TaskCompletionSource_1_Memory_1_Byte_Byte__get_Item1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D233C0, Tuple_3_System_Net_Sockets_Socket_AwaitableSocketAsyncEventArgs_Action_1_Object_Object__get_Item3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D233E0, Tuple_2_Action_1_Object_Object__get_Item2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D233E8, Tuple_2_Action_1_Object_Object__get_Item1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D233F0, TaskCompletionSource_1_System_Net_Sockets_Socket__TrySetResult__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23408, TaskCompletionSource_1_System_Net_Sockets_Socket__TrySetException__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23410, List_1_TMPro_TMP_Dropdown_OptionData__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23418, List_1_TMPro_TMP_Dropdown_OptionData__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23428, Component_GetComponent_270__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23430, List_1_UnityEngine_UI_Image__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23450, Tuple_Create_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23478, List_1_TextKeyValue___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23490, Tuple_3_System_Net_Sockets_Socket_AwaitableSocketAsyncEventArgs_Action_1_Object_Object__get_Item2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23498, Tuple_3_System_Net_Sockets_Socket_AwaitableSocketAsyncEventArgs_Action_1_Object_Object__get_Item1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D234E0, Tuple_Create_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D234E8, List_1_UnityEngine_UI_Image__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D234F0, List_1_UnityEngine_UI_Image__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23520, IndexedSet_1_UnityEngine_UI_Graphic__DisableItem__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23528, IndexedSet_1_UnityEngine_UI_Graphic__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23530, SetPropertyUtility_2_SetStruct_18__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23538, SetPropertyUtility_2_SetClass_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23540, SetPropertyUtility_2_SetStruct_19__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23550, Dictionary_2_UnityEngine_Canvas_UnityEngine_UI_Collections_IndexedSet_1___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23578, Dictionary_2_UnityEngine_UI_IClipper_System_Int32___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23580, Dictionary_2_UnityEngine_UI_Graphic_System_Int32___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23588, Dictionary_2_UnityEngine_UI_ICanvasElement_System_Int32___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23590, IndexedSet_1_UnityEngine_UI_Graphic___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23598, IndexedSet_1_UnityEngine_UI_Graphic__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D235A0, IndexedSet_1_UnityEngine_UI_Graphic__AddUnique__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D235A8, Dictionary_2_UnityEngine_Canvas_UnityEngine_UI_Collections_IndexedSet_1__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D235B0, Dictionary_2_UnityEngine_Canvas_UnityEngine_UI_Collections_IndexedSet_1__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D235B8, IndexedSet_1_UnityEngine_UI_Graphic__get_Capacity__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D235C0, IndexedSet_1_UnityEngine_UI_Graphic__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D235C8, Dictionary_2_UnityEngine_Canvas_UnityEngine_UI_Collections_IndexedSet_1__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D235E8, List_1_UnityEngine_UI_Graphic___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D235F0, List_1_UnityEngine_UI_Graphic__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D235F8, List_1_UnityEngine_UI_Graphic__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23600, List_1_UnityEngine_UI_Graphic__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23618, List_1_UnityEngine_UI_Graphic__Sort__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23620, List_1_UnityEngine_UI_Graphic__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D236A0, HashSet_1_UnityEngine_UI_Text___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D236A8, HashSet_1_UnityEngine_UI_Text__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D236C0, Dictionary_2_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D236C8, Dictionary_2_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D236D0, Dictionary_2_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D236D8, HashSet_1_UnityEngine_UI_Text__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D236E0, HashSet_1_T_Enumerator_UnityEngine_UI_Text__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D236E8, HashSet_1_T_Enumerator_UnityEngine_UI_Text__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D236F0, HashSet_1_T_Enumerator_UnityEngine_UI_Text__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23700, Dictionary_2_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23708, HashSet_1_UnityEngine_UI_Text__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23710, HashSet_1_UnityEngine_UI_Text__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23718, Dictionary_2_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23738, List_1_UnityEngine_UI_Dropdown_OptionData___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23740, Component_GetComponentInParent_32__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23760, List_1_UnityEngine_UI_Dropdown_DropdownItem__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23768, List_1_UnityEngine_UI_Dropdown_DropdownItem__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23770, List_1_UnityEngine_UI_Dropdown_DropdownItem__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23778, GameObject_GetComponentInChildren_19__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23788, CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_Canvas__Release__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23790, CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_Canvas__Get__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23798, GameObject_AddComponent_155__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D237B0, Object_1_Instantiate_31__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D237C8, List_1_UnityEngine_UI_Dropdown_DropdownItem__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23838, List_1_UnityEngine_UI_Dropdown_OptionData__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23840, List_1_UnityEngine_UI_Dropdown_OptionData__AddRange__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23850, GameObject_TryGetComponent_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23860, GameObject_AddComponent_156__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23868, Dropdown_GetOrAddComponent_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23870, Dropdown_GetOrAddComponent_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23890, List_1_UnityEngine_UI_Dropdown_OptionData__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D238A0, GameObject_GetComponent_220__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D238B0, GameObject_GetComponent_221__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23950, List_1_UnityEngine_UI_Dropdown_DropdownItem___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23A48, GameObject_GetComponent_222__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23A68, Marshal_GetDelegateForFunctionPointer_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23A70, Marshal_GetDelegateForFunctionPointer_3__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23A78, Marshal_GetDelegateForFunctionPointer_4__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23A88, Marshal_GetDelegateForFunctionPointer_5__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23A90, Marshal_GetDelegateForFunctionPointer_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23A98, Marshal_GetDelegateForFunctionPointer_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23AA0, Marshal_GetDelegateForFunctionPointer_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23AA8, Marshal_GetDelegateForFunctionPointer_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23AB0, Marshal_GetDelegateForFunctionPointer_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23AB8, Marshal_GetDelegateForFunctionPointer_11__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23AC8, Marshal_GetDelegateForFunctionPointer_12__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23AD8, Marshal_GetDelegateForFunctionPointer_13__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23AE0, GameObject_GetComponent_223__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23AF8, Marshal_GetDelegateForFunctionPointer_14__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23B08, Marshal_GetDelegateForFunctionPointer_15__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23B58, IndexedSet_1_UnityEngine_UI_IClipper___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23B60, IndexedSet_1_UnityEngine_UI_IClipper__AddUnique__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23B68, IndexedSet_1_UnityEngine_UI_IClipper__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23B70, IndexedSet_1_UnityEngine_UI_IClipper__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23B80, List_1_UnityEngine_UI_RectMask2D__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23B88, List_1_UnityEngine_UI_RectMask2D__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23B90, IndexedSet_1_UnityEngine_UI_IClipper__DisableItem__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23B98, IndexedSet_1_UnityEngine_UI_IClipper__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23BB0, IndexedSet_1_UnityEngine_UI_ICanvasElement__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23BB8, IndexedSet_1_UnityEngine_UI_ICanvasElement__DisableItem__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23BE0, IndexedSet_1_UnityEngine_UI_ICanvasElement__Sort__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23BE8, IndexedSet_1_UnityEngine_UI_ICanvasElement__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23BF0, IndexedSet_1_UnityEngine_UI_ICanvasElement__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23BF8, IndexedSet_1_UnityEngine_UI_ICanvasElement__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23C00, IndexedSet_1_UnityEngine_UI_ICanvasElement__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23C08, IndexedSet_1_UnityEngine_UI_ICanvasElement__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23C10, IndexedSet_1_UnityEngine_UI_ICanvasElement__AddUnique__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23C68, IndexedSet_1_UnityEngine_UI_ICanvasElement___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23C88, GenericObjectPool_Get_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23C90, Array_Resize_155__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23C98, GenericObjectPool_Return_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23CA0, GenericObjectPool_Return_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23CA8, GenericObjectPool_Return_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23CC8, Object_1_FindObjectsOfType_19__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23CE8, GameObject_AddComponent_157__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23CF8, GenericObjectPool_Get_7__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23D00, Array_Resize_156__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23D18, GenericObjectPool_Get_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23D20, Array_Resize_157__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23D28, Dictionary_2_System_String_Opsive_UltimateCharacterController_Input_VirtualControls_VirtualControl__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23D30, Dictionary_2_System_String_Opsive_UltimateCharacterController_Input_VirtualControls_VirtualControl__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23D38, Dictionary_2_System_String_Opsive_UltimateCharacterController_Input_VirtualControls_VirtualControl__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23D58, Component_GetComponentInParent_33__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23D68, Dictionary_2_System_String_Opsive_UltimateCharacterController_Input_VirtualControls_VirtualControl___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23D88, Component_GetComponentInParent_34__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23DB0, HashSet_1_System_String__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23DD8, HashSet_1_Opsive_Shared_Inventory_IItemIdentifier___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23DF8, ScriptableObject_CreateInstance_23__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23E10, List_1_Opsive_UltimateCharacterController_Inventory_ItemSet__Insert__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23E30, HashSet_1_Opsive_Shared_Inventory_IItemIdentifier__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23E38, HashSet_1_Opsive_Shared_Inventory_IItemIdentifier__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23E40, HashSet_1_Opsive_Shared_Inventory_IItemIdentifier__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23E58, Dictionary_2_Opsive_Shared_Inventory_IItemCategoryIdentifier_System_Int32___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23E60, Dictionary_2_Opsive_Shared_Inventory_IItemCategoryIdentifier_System_Int32__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23E68, Dictionary_2_Opsive_Shared_Inventory_IItemCategoryIdentifier_System_Int32__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23E80, Array_Resize_158__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23EB0, Dictionary_2_Opsive_Shared_Inventory_IItemCategoryIdentifier_System_Int32__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23EE0, List_1_Opsive_UltimateCharacterController_Items_Item___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23EE8, List_1_Opsive_Shared_Inventory_IItemIdentifier___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23EF8, List_1_Opsive_UltimateCharacterController_Inventory_ItemSet___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23F28, UnityEvent_2_Opsive_UltimateCharacterController_Items_Item_System_Int32__Invoke__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23F30, UnityEvent_4_Opsive_Shared_Inventory_IItemIdentifier_System_Single_System_Boolean_System_Boolean__Invoke__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23F38, UnityEvent_4_Opsive_UltimateCharacterController_Items_Item_System_Single_System_Boolean_System_Boolean__Invoke__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23F40, List_1_Opsive_Shared_Inventory_IItemIdentifier__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23F48, List_1_Opsive_Shared_Inventory_IItemIdentifier__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23F50, EventHandler_1_ExecuteEvent_91__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23F58, EventHandler_1_ExecuteEvent_92__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23F68, List_1_Opsive_UltimateCharacterController_Items_Item__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23F70, List_1_Opsive_UltimateCharacterController_Items_Item__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23F78, List_1_Opsive_Shared_Inventory_IItemIdentifier__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23F80, List_1_Opsive_UltimateCharacterController_Items_Item__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23F88, UnityEvent_2_Opsive_Shared_Inventory_IItemIdentifier_System_Single__Invoke__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23F90, EventHandler_1_ExecuteEvent_93__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23FA0, Dictionary_2_Opsive_Shared_Inventory_IItemIdentifier_System_Int32___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23FB8, Dictionary_2_Opsive_Shared_Inventory_IItemIdentifier_Opsive_UltimateCharacterController_Items_Item__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23FC0, List_1_Opsive_UltimateCharacterController_Items_Item__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23FC8, UnityEvent_1_Opsive_UltimateCharacterController_Items_Item__Invoke__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23FD0, List_1_Opsive_UltimateCharacterController_Items_Item__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23FD8, EventHandler_1_ExecuteEvent_94__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D23FF8, Dictionary_2_Opsive_Shared_Inventory_IItemIdentifier_Opsive_UltimateCharacterController_Items_Item___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D24008, Dictionary_2_Opsive_Shared_Inventory_IItemIdentifier_System_Int32__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D24010, Dictionary_2_Opsive_Shared_Inventory_IItemIdentifier_System_Int32__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D24040, Dictionary_2_Opsive_Shared_Inventory_IItemIdentifier_System_Int32__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D24048, Dictionary_2_Opsive_Shared_Inventory_IItemIdentifier_Opsive_UltimateCharacterController_Items_Item__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D24050, Dictionary_2_Opsive_Shared_Inventory_IItemIdentifier_Opsive_UltimateCharacterController_Items_Item__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D24058, Dictionary_2_Opsive_Shared_Inventory_IItemIdentifier_System_Int32__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D24068, GameObjectExtensions_GetCachedComponent_45__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D24070, Dictionary_2_UnityEngine_Material_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D24080, List_1_UnityEngine_Material__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D24088, List_1_UnityEngine_Material__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D24090, HashSet_1_UnityEngine_Material__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D240A8, Dictionary_2_UnityEngine_Material_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D240B0, Dictionary_2_UnityEngine_Material_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D240B8, Dictionary_2_UnityEngine_Material_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D240C8, HashSet_1_UnityEngine_Material___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D240D8, Dictionary_2_UnityEngine_Material_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D240E0, Dictionary_2_UnityEngine_Material_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D240E8, HashSet_1_UnityEngine_Material__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D240F0, HashSet_1_UnityEngine_Material__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D240F8, GameObject_GetComponent_224__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D24110, GameObject_GetComponentsInChildren_35__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D24158, GameObject_GetComponent_225__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D24160, Component_GetComponentsInChildren_65__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D24178, Dictionary_2_System_UInt32_UnityEngine_ParticleSystem__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D24180, Dictionary_2_System_UInt32_UnityEngine_ParticleSystem__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D241B8, Dictionary_2_System_UInt32_UnityEngine_ParticleSystem___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D241C8, GenericObjectPool_Return_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D241D0, GenericObjectPool_Get_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D241D8, GameObjectExtensions_GetCachedParentComponent_13__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D241E0, EventHandler_1_RegisterEvent_92__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D241F8, Dictionary_2_System_UInt32_HashSet_1_UnityEngine_Transform___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D24200, HashSet_1_UnityEngine_Transform__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D24228, EventHandler_1_UnregisterEvent_90__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D24250, HashSet_1_UnityEngine_Transform___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D24258, HashSet_1_UnityEngine_Transform__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D24260, HashSet_1_UnityEngine_Transform__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D24268, Dictionary_2_System_UInt32_HashSet_1_UnityEngine_Transform__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D24270, Dictionary_2_System_UInt32_HashSet_1_UnityEngine_Transform__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D24298, Dictionary_2_UnityEngine_Renderer_UnityEngine_Material__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D242A0, Dictionary_2_UnityEngine_Renderer_UnityEngine_Material__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D242A8, Dictionary_2_UnityEngine_Renderer_UnityEngine_Material__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D242E0, GameObject_GetComponent_226__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D242E8, GameObject_GetComponent_227__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D242F8, Component_GetComponentsInChildren_66__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D24308, GameObject_AddComponent_158__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D24448, GameObject_AddComponent_159__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D246D0, List_1_System_Net_Mail_MailAddress___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D246E0, List_1_System_Net_Mail_MailAddress__Insert__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D247D0, Dictionary_2_System_String_System_TimeSpan__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D24928, Dictionary_2_System_String_System_TimeSpan___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D24938, Dictionary_2_System_String_System_TimeSpan__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D24AA8, GameObject_AddComponent_160__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D24AF0, GameObject_GetComponent_228__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D24B18, Component_GetComponentInParent_35__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D24B58, List_1_NolanBehaviour___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D24B60, List_1_NolanBehaviour__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D24B70, List_1_NolanBehaviour__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D24B88, Collection_1_System_Net_Mime_MimeBasePart__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D24C08, Collection_1_System_Net_Mime_MimeBasePart___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D24C38, List_1_SurvivalInteractableMeshSwapper_SurvivalInteractableMesh__GetEnumerator__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D24C40, List_1_T_Enumerator_SurvivalInteractableMeshSwapper_SurvivalInteractableMesh__get_Current__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D24C48, List_1_T_Enumerator_SurvivalInteractableMeshSwapper_SurvivalInteractableMesh__MoveNext__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D24C60, List_1_T_Enumerator_SurvivalInteractableMeshSwapper_SurvivalInteractableMesh__Dispose__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D24C78, BoltEntity_GetState_6__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D24C88, Component_GetComponentInChildren_25__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D24CB0, Ability_GetAbility_2__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D24CD0, GameObject_GetComponent_229__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D24CF0, Component_GetComponent_271__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D24D18, Object_1_FindAnyObjectByType_34__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D24D68, UltimateCharacterLocomotion_GetAbility_39__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D24DD0, Component_GetComponentInParent_36__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D24E88, Dictionary_2_System_String_System_Net_TrackingValidationObjectDictionary_ValidateAndParseValue___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D24E90, Dictionary_2_System_String_System_Net_TrackingValidationObjectDictionary_ValidateAndParseValue__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D24EB0, Component_GetComponent_272__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D24EE8, Object_1_FindAnyObjectByType_35__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D24EF0, Component_GetComponent_273__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D24F00, Component_GetComponentInParent_37__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D24FB8, Component_GetComponent_274__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D24FC0, Component_GetComponent_275__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D24FD0, Component_GetComponent_276__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D24FE8, UltimateCharacterLocomotion_GetAbility_40__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D25018, Ability_GetComponent_8__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D25078, Ability_GetComponent_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D250A0, EventHandler_1_ExecuteEvent_95__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D25190, Task_1_System_Net_WebSockets_WebSocketReceiveResult__ConfigureAwait__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D25198, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_WebSockets_WebSocketReceiveResult__get_IsCompleted__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D251A0, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_WebSockets_WebSocketReceiveResult__GetResult__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D251A8, ConfiguredTaskAwaitable_1_System_Net_WebSockets_WebSocketReceiveResult__GetAwaiter__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D251D8, AsyncValueTaskMethodBuilder_1_System_Net_WebSockets_ValueWebSocketReceiveResult__AwaitUnsafeOnCompleted_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D251E0, AsyncTaskMethodBuilder_1_System_String__SetException__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D251F0, AsyncTaskMethodBuilder_1_System_String__SetStateMachine__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D25210, AsyncTaskMethodBuilder_1_System_String__SetResult__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D25250, AsyncTaskMethodBuilder_1_System_String__AwaitUnsafeOnCompleted__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D25270, Task_1_System_String__ConfigureAwait__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D25278, Task_1_System_Net_Sockets_Socket__ConfigureAwait__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D25288, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_Socket__GetResult__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D25290, ConfiguredTaskAwaitable_1_System_Net_Sockets_Socket__GetAwaiter__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D25298, ConfiguredTaskAwaitable_1_System_String__GetAwaiter__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D252A0, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_54__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D252B0, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_String__get_IsCompleted__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D252B8, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_Socket__get_IsCompleted__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D252C0, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_String__GetResult__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D252D8, AsyncTaskMethodBuilder_1_System_String__AwaitUnsafeOnCompleted_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D252E0, AsyncTaskMethodBuilder_1_System_Net_Sockets_Socket__SetStateMachine__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D252E8, ConfiguredTaskAwaitable_1_System_Net_IPAddress__GetAwaiter__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D252F0, AsyncTaskMethodBuilder_1_System_Net_Sockets_Socket__AwaitUnsafeOnCompleted__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D252F8, AsyncTaskMethodBuilder_1_System_Net_Sockets_Socket__AwaitUnsafeOnCompleted_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D25308, Task_1_System_Net_IPAddress__ConfigureAwait__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D25310, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_IPAddress__get_IsCompleted__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D25318, ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_IPAddress__GetResult__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D25340, AsyncTaskMethodBuilder_1_System_String__Start__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D25350, KeyValuePair_2_System_String_System_String___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D25358, AsyncTaskMethodBuilder_1_System_String__get_Task__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D25360, AsyncTaskMethodBuilder_1_System_String__Start_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D25368, AsyncTaskMethodBuilder_1_System_String__Create__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D25378, AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_55__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D253F8, AsyncTaskMethodBuilder_1_System_Net_Sockets_Socket__Start__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D25400, AsyncTaskMethodBuilder_1_System_Net_Sockets_Socket__Create__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D25460, EventHandler_1_UnregisterEvent_91__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D25468, GameObjectExtensions_GetCachedComponent_46__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D25480, EventHandler_1_RegisterEvent_93__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D254D0, GameObjectExtensions_GetCachedComponent_47__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D254D8, List_1_UnityEngine_Material__1_get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D254E0, List_1_UnityEngine_Material__1_Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D254E8, HashSet_1_UnityEngine_Renderer__Contains__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D254F0, HashSet_1_UnityEngine_Renderer__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D25548, List_1_UnityEngine_Material__1_Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D25550, List_1_UnityEngine_Renderer__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D25558, HashSet_1_UnityEngine_Renderer__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D25560, GameObject_GetComponentsInChildren_36__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D25568, GameObject_GetComponentsInChildren_37__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D25578, List_1_UnityEngine_Material__1__ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D25588, HashSet_1_UnityEngine_Renderer___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D25590, TransformExtensions_GetComponentInParentIncludeInactive_1__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D25598, Dictionary_2_Opsive_UltimateCharacterController_Items_Item_UnityEngine_GameObject__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D255A0, Dictionary_2_Opsive_UltimateCharacterController_Items_Item_UnityEngine_GameObject__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D255A8, Dictionary_2_Opsive_UltimateCharacterController_Items_Item_UnityEngine_GameObject___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D255B0, EventHandler_1_UnregisterEvent_92__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D255C8, HashSet_1_UnityEngine_GameObject__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D255D0, Dictionary_2_Opsive_UltimateCharacterController_Items_Item_UnityEngine_GameObject__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D25628, EventHandler_1_RegisterEvent_94__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D25630, Component_GetComponentsInChildren_67__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D25638, Array_Resize_159__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D25648, GameObject_GetComponentInChildren_20__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D25650, Component_GetComponentInChildren_26__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D25678, GameObject_GetComponentInParent_9__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D256B0, EventHandler_1_ExecuteEvent_96__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D256B8, Dictionary_2_System_Int32_Opsive_UltimateCharacterController_Game_SpawnPoint___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D256C0, Dictionary_2_System_Int32_List_1_Opsive_UltimateCharacterController_Game_SpawnPoint___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D256C8, List_1_Opsive_UltimateCharacterController_Game_SpawnPoint__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D256D0, Dictionary_2_System_Int32_Opsive_UltimateCharacterController_Game_SpawnPoint__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D256D8, Dictionary_2_System_Int32_Opsive_UltimateCharacterController_Game_SpawnPoint__Remove__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D25700, Component_GetComponentsInChildren_68__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D25708, Component_GetComponent_277__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D25728, Component_GetComponent_278__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D25740, Dictionary_2_System_Int32_Opsive_UltimateCharacterController_Game_SpawnPoint__ContainsKey__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D25748, Dictionary_2_System_Int32_Opsive_UltimateCharacterController_Game_SpawnPoint__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D25750, Dictionary_2_System_Int32_List_1_Opsive_UltimateCharacterController_Game_SpawnPoint__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D25770, GameObject_AddComponent_161__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D25778, List_1_Opsive_UltimateCharacterController_Game_SpawnPoint__set_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D25788, List_1_Opsive_UltimateCharacterController_Game_SpawnPoint__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D25790, List_1_Opsive_UltimateCharacterController_Game_SpawnPoint__get_Count__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D25798, Dictionary_2_System_Int32_Opsive_UltimateCharacterController_Game_SpawnPoint__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D257A8, List_1_Opsive_UltimateCharacterController_Game_SpawnPoint___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D257B0, List_1_Opsive_UltimateCharacterController_Game_SpawnPoint__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D257B8, Dictionary_2_System_Int32_List_1_Opsive_UltimateCharacterController_Game_SpawnPoint__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D257C0, Dictionary_2_UnityEngine_Collider_List_1_UnityEngine_Collider__TryGetValue__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D257C8, Dictionary_2_UnityEngine_Collider_List_1_UnityEngine_Collider__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D257E8, GameObject_AddComponent_162__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D257F0, List_1_UnityEngine_Collider__get_Item__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D257F8, List_1_UnityEngine_Collider__RemoveAt__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D25800, List_1_UnityEngine_Collider__Clear__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D25808, List_1_UnityEngine_Collider__Add__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D25818, Dictionary_2_UnityEngine_Collider_List_1_UnityEngine_Collider___ctor__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D25830, Component_GetComponent_279__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D25848, GenericObjectPool_Get_10__MethodInfo); +DO_APP_FUNC_METHODINFO(0x03D25850, GenericObjectPool_Return_10__MethodInfo); diff --git a/appdata/il2cpp-metadata-version.h b/appdata/il2cpp-metadata-version.h index 331483e..c7097ab 100644 --- a/appdata/il2cpp-metadata-version.h +++ b/appdata/il2cpp-metadata-version.h @@ -1,4 +1,4 @@ // Generated C++ file by Il2CppInspector - http://www.djkaty.com - https://github.com/djkaty -// Target Unity version: 2021.2.0+ +// Target Unity version: 2021.2.0 - 2021.2.99 #define __IL2CPP_METADATA_VERSION 290 diff --git a/appdata/il2cpp-types-ptr.h b/appdata/il2cpp-types-ptr.h index e17f13d..6d9687d 100644 --- a/appdata/il2cpp-types-ptr.h +++ b/appdata/il2cpp-types-ptr.h @@ -1,78 +1,229 @@ // Generated C++ file by Il2CppInspector - http://www.djkaty.com - https://github.com/djkaty -// Target Unity version: 2021.2.0+ +// Target Unity version: 2021.2.0 - 2021.2.99 // ****************************************************************************** // * IL2CPP application-specific type definition addresses // ****************************************************************************** +DO_TYPEDEF(0x03D24BE0, Object); DO_TYPEDEF(0x03CA2E00, ValueType); +DO_TYPEDEF(0x03D00318, Boolean); +DO_TYPEDEF(0x03CFD5A8, Int32); +DO_TYPEDEF(0x03D122A0, Char); +DO_TYPEDEF(0x03D0C0E8, String); +DO_TYPEDEF(0x03D05008, Byte); +DO_TYPEDEF(0x03D00130, Enum); DO_TYPEDEF(0x03C9C3D0, TypeCode__Enum); +DO_TYPEDEF(0x03CF2D68, Array); +DO_TYPEDEF(0x03D0C398, Char__Array); +DO_TYPEDEF(0x03D0C2C0, IEnumerator); +DO_TYPEDEF(0x03CB6C40, IComparer); +DO_TYPEDEF(0x03CB6C08, IEqualityComparer); DO_TYPEDEF(0x03C97120, IFormatProvider); +DO_TYPEDEF(0x03CC0A90, SByte); +DO_TYPEDEF(0x03CC0A98, Int16); +DO_TYPEDEF(0x03CBF150, UInt16); +DO_TYPEDEF(0x03D05AA8, UInt32); +DO_TYPEDEF(0x03D05A18, Int64); +DO_TYPEDEF(0x03D04E68, UInt64); +DO_TYPEDEF(0x03CFD728, Single); +DO_TYPEDEF(0x03D0BFC8, Double); +DO_TYPEDEF(0x03D1BCB0, Decimal); +DO_TYPEDEF(0x03CFD0D0, DateTime); +DO_TYPEDEF(0x03CFD9C8, Int32__Array); DO_TYPEDEF(0x03CA2D78, MemberInfo_1); +DO_TYPEDEF(0x03CFF2D0, IntPtr); +DO_TYPEDEF(0x03D08678, RuntimeTypeHandle); +DO_TYPEDEF(0x03CFD680, Type); +DO_TYPEDEF(0x03CFD598, Object__Array); DO_TYPEDEF(0x03C99050, RuntimeType); +DO_TYPEDEF(0x03CACCE8, Module); +DO_TYPEDEF(0x03CFC1A8, Delegate); +DO_TYPEDEF(0x03D089D0, MulticastDelegate); +DO_TYPEDEF(0x03CACCF0, TypeFilter); DO_TYPEDEF(0x03CA56C0, SerializationInfo); +DO_TYPEDEF(0x03CFFD90, String__Array); +DO_TYPEDEF(0x03CDF3C8, Type__Array); +DO_TYPEDEF(0x03CBF350, Dictionary_2_System_String_System_Int32_); +DO_TYPEDEF(0x03D0FD40, IEnumerator_1_System_String_); +DO_TYPEDEF(0x03CB9488, IEnumerator_1_System_Int32_); +DO_TYPEDEF(0x03CF45D8, ICollection_1_System_String_); +DO_TYPEDEF(0x03CCCCC0, ICollection_1_System_Int32_); +DO_TYPEDEF(0x03CBBDB0, ICollection); DO_TYPEDEF(0x03C908A0, IDictionaryEnumerator); +DO_TYPEDEF(0x03D0FD50, IEnumerable_1_System_String_); +DO_TYPEDEF(0x03CB9470, IEnumerable_1_System_Int32_); DO_TYPEDEF(0x03CA2828, StreamingContext); DO_TYPEDEF(0x03CA2860, IFormatterConverter); DO_TYPEDEF(0x03CA1C70, MethodBase); DO_TYPEDEF(0x03CA0EB8, MethodInfo_1); DO_TYPEDEF(0x03CA3828, RuntimeMethodInfo); DO_TYPEDEF(0x03CA1C80, ParameterInfo); +DO_TYPEDEF(0x03CAC1F0, ParameterInfo__Array); +DO_TYPEDEF(0x03D04A30, DefaultBinder); +DO_TYPEDEF(0x03D077C0, DefaultBinder_Primitives__Enum__Array); +DO_TYPEDEF(0x03D00A50, FieldInfo_1); DO_TYPEDEF(0x03CA31F0, SerializationFieldInfo); DO_TYPEDEF(0x03CA3038, RtFieldInfo); +DO_TYPEDEF(0x03D088A8, RuntimeFieldHandle); DO_TYPEDEF(0x03CA31E8, RuntimeFieldInfo); +DO_TYPEDEF(0x03D0C3F0, CultureInfo); +DO_TYPEDEF(0x03CAF800, NumberFormatInfo); +DO_TYPEDEF(0x03CAF708, DateTimeFormatInfo_TokenHashValue); +DO_TYPEDEF(0x03CAF9D8, DateTimeFormatInfo); +DO_TYPEDEF(0x03CB1BC0, CalendarData); +DO_TYPEDEF(0x03CB3F08, CultureData); +DO_TYPEDEF(0x03CB3F00, CalendarData__Array); DO_TYPEDEF(0x03C96608, CompareInfo); +DO_TYPEDEF(0x03CB3F70, CompareOptions__Enum); +DO_TYPEDEF(0x03CDCD00, Guid); DO_TYPEDEF(0x03CAB460, SortVersion); DO_TYPEDEF(0x03CAB410, ISimpleCollator); DO_TYPEDEF(0x03CAB3F0, Dictionary_2_System_String_System_Globalization_ISimpleCollator_); DO_TYPEDEF(0x03C93C30, SortKey); +DO_TYPEDEF(0x03CAF9E8, Calendar); +DO_TYPEDEF(0x03CB1C98, PersianCalendar); +DO_TYPEDEF(0x03CAE7E0, DayOfWeek__Enum); +DO_TYPEDEF(0x03CAF940, CalendarWeekRule__Enum); +DO_TYPEDEF(0x03CB3EF8, CalendarId__Enum__Array); +DO_TYPEDEF(0x03CAF7F0, DateTimeFormatInfo_TokenHashValue__Array); +DO_TYPEDEF(0x03CB4090, TextInfo); +DO_TYPEDEF(0x03CB2E98, Dictionary_2_System_Int32_System_Globalization_CultureInfo_); +DO_TYPEDEF(0x03CD8FB8, CultureInfo__Array); DO_TYPEDEF(0x03CA8248, IEnumerator_1_System_Globalization_CultureInfo_); +DO_TYPEDEF(0x03CB2EA0, Dictionary_2_System_String_System_Globalization_CultureInfo_); +DO_TYPEDEF(0x03CB2F60, Calendar__Array); DO_TYPEDEF(0x03CA3310, FieldInfo_1__Array); +DO_TYPEDEF(0x03D078C0, MethodBase__Array); +DO_TYPEDEF(0x03CFD900, Boolean__Array); +DO_TYPEDEF(0x03CFDF78, ParameterModifier__Array); DO_TYPEDEF(0x03CA5690, PropertyInfo_1); +DO_TYPEDEF(0x03CAC758, RuntimePropertyInfo); +DO_TYPEDEF(0x03D08F80, Delegate__Array); +DO_TYPEDEF(0x03CAC888, PropertyInfo_1__Array); +DO_TYPEDEF(0x03D08818, RuntimeMethodHandle); +DO_TYPEDEF(0x03D090B0, DelegateData); +DO_TYPEDEF(0x03CAC008, Assembly); DO_TYPEDEF(0x03CA1BE8, MarshalByRefObject); +DO_TYPEDEF(0x03D0BA08, Stream); DO_TYPEDEF(0x03CA1B88, ObjRef); DO_TYPEDEF(0x03CA1A20, IChannelInfo); DO_TYPEDEF(0x03CA1B70, IRemotingTypeInfo); DO_TYPEDEF(0x03CA1BC0, IEnvoyInfo); DO_TYPEDEF(0x03C97DD0, Task); +DO_TYPEDEF(0x03CFEBA0, Task_1_System_Int32_); +DO_TYPEDEF(0x03CFEB68, Stream_ReadWriteTask); +DO_TYPEDEF(0x03CCAA60, TaskScheduler); DO_TYPEDEF(0x03C95560, Ephemeron__Array); -DO_TYPEDEF(0x03CA8650, AggregateException); -DO_TYPEDEF(0x03CA29C0, SafeSerializationEventArgs); -DO_TYPEDEF(0x03CA29E8, IEnumerator_1_System_Object_); +DO_TYPEDEF(0x03D0BDC0, EventArgs); +DO_TYPEDEF(0x03D110A0, UnobservedTaskExceptionEventArgs); +DO_TYPEDEF(0x03CFCDB0, StackFrame); DO_TYPEDEF(0x03CA88B0, StackTrace); +DO_TYPEDEF(0x03CFFC38, Exception); +DO_TYPEDEF(0x03CA8650, AggregateException); +DO_TYPEDEF(0x03CC0AF0, IDictionary); +DO_TYPEDEF(0x03D074E0, SafeSerializationManager); +DO_TYPEDEF(0x03D04050, IList_1_System_Object_); +DO_TYPEDEF(0x03CA29C0, SafeSerializationEventArgs); +DO_TYPEDEF(0x03CE4D88, List_1_System_Object_); +DO_TYPEDEF(0x03CA29E8, IEnumerator_1_System_Object_); DO_TYPEDEF(0x03CA8948, StackTrace__Array); DO_TYPEDEF(0x03C8C540, IntPtr__Array); +DO_TYPEDEF(0x03CAE7D0, ReadOnlyCollection_1_System_Exception_); +DO_TYPEDEF(0x03CAE778, IList_1_System_Exception_); DO_TYPEDEF(0x03CA8640, Exception__Array); +DO_TYPEDEF(0x03D11050, IEnumerator_1_System_Exception_); +DO_TYPEDEF(0x03D10F48, Lock); +DO_TYPEDEF(0x03D10F40, ThreadPoolTaskScheduler); +DO_TYPEDEF(0x03D122B8, ParameterizedThreadStart); DO_TYPEDEF(0x03C9BB68, CancellationToken); +DO_TYPEDEF(0x03D115E0, Task_ContingentProperties); DO_TYPEDEF(0x03C98628, ExecutionContext); +DO_TYPEDEF(0x03D0C9F8, SynchronizationContext); DO_TYPEDEF(0x03CA86D0, SendOrPostCallback); DO_TYPEDEF(0x03CA0A28, LogicalCallContext); DO_TYPEDEF(0x03C989D8, Hashtable); +DO_TYPEDEF(0x03CFC7D0, Hashtable_bucket__Array); +DO_TYPEDEF(0x03CFCD28, ConditionalWeakTable_2_System_Object_System_Runtime_Serialization_SerializationInfo_); DO_TYPEDEF(0x03C9F438, CallContextRemotingData); DO_TYPEDEF(0x03C9F448, CallContextSecurityData); +DO_TYPEDEF(0x03D22270, IPrincipal); DO_TYPEDEF(0x03CA5588, Header__Array); DO_TYPEDEF(0x03C9F418, IllogicalCallContext); +DO_TYPEDEF(0x03D0CB20, Dictionary_2_System_Threading_IAsyncLocal_System_Object_); +DO_TYPEDEF(0x03D0CB18, IAsyncLocal); +DO_TYPEDEF(0x03D04040, ICollection_1_System_Object_); DO_TYPEDEF(0x03CA29D8, IEnumerable_1_System_Object_); +DO_TYPEDEF(0x03D0CAF8, List_1_System_Threading_IAsyncLocal_); +DO_TYPEDEF(0x03CBC708, ManualResetEventSlim); +DO_TYPEDEF(0x03CB5668, WaitHandle); +DO_TYPEDEF(0x03CB5760, ManualResetEvent); +DO_TYPEDEF(0x03CFA4B0, SafeHandle); +DO_TYPEDEF(0x03D0CBF8, SafeWaitHandle); DO_TYPEDEF(0x03C94B70, SafeLibraryHandle); +DO_TYPEDEF(0x03CFD018, TimeSpan); +DO_TYPEDEF(0x03CE4A98, Action_1_Object_); +DO_TYPEDEF(0x03D11480, TaskExceptionHolder); DO_TYPEDEF(0x03CA88C0, ExceptionDispatchInfo); +DO_TYPEDEF(0x03D11100, LowLevelListWithIList_1_System_Runtime_ExceptionServices_ExceptionDispatchInfo_); +DO_TYPEDEF(0x03D0CEB0, SparselyPopulatedArray_1_CancellationCallbackInfo_); +DO_TYPEDEF(0x03CB27C0, CancellationTokenSource); +DO_TYPEDEF(0x03D0CED8, CancellationCallbackInfo); DO_TYPEDEF(0x03CA8680, ContextCallback); +DO_TYPEDEF(0x03D0CED0, SparselyPopulatedArray_1_CancellationCallbackInfo___Array); DO_TYPEDEF(0x03CA0160, Timer); DO_TYPEDEF(0x03CA0150, TimerCallback); +DO_TYPEDEF(0x03D114B8, LowLevelListWithIList_1_System_Threading_Tasks_Task_); +DO_TYPEDEF(0x03D0CC10, Task__Array); +DO_TYPEDEF(0x03D11438, IEnumerator_1_System_Threading_Tasks_Task_); +DO_TYPEDEF(0x03D11510, StackGuard); +DO_TYPEDEF(0x03D11268, Func_1_System_Threading_Tasks_Task_ContingentProperties_); +DO_TYPEDEF(0x03D11250, TaskFactory); +DO_TYPEDEF(0x03D11260, Predicate_1_System_Threading_Tasks_Task_); +DO_TYPEDEF(0x03D11258, Predicate_1_Object_); +DO_TYPEDEF(0x03D11270, Dictionary_2_System_Int32_System_Threading_Tasks_Task_); +DO_TYPEDEF(0x03D10FB8, ICollection_1_System_Threading_Tasks_Task_); +DO_TYPEDEF(0x03D11440, IEnumerable_1_System_Threading_Tasks_Task_); DO_TYPEDEF(0x03C93C90, SystemException); +DO_TYPEDEF(0x03CB6DE0, ThreadAbortException); DO_TYPEDEF(0x03C98048, AsyncCallback); DO_TYPEDEF(0x03C98018, IAsyncResult); +DO_TYPEDEF(0x03CCF010, SemaphoreSlim); +DO_TYPEDEF(0x03D0CD10, Task_1_System_Boolean_); +DO_TYPEDEF(0x03D0CCF0, SemaphoreSlim_TaskNode); DO_TYPEDEF(0x03C987E8, CryptoStream); DO_TYPEDEF(0x03C90940, ICryptoTransform); +DO_TYPEDEF(0x03CBD9C8, ValueTask); +DO_TYPEDEF(0x03CAC6C0, AssemblyNameFlags__Enum); +DO_TYPEDEF(0x03CAC6A0, AssemblyHashAlgorithm__Enum); +DO_TYPEDEF(0x03CAC580, AssemblyVersionCompatibility__Enum); DO_TYPEDEF(0x03CA2970, AssemblyName); +DO_TYPEDEF(0x03CAC598, StrongNameKeyPair); +DO_TYPEDEF(0x03CFB918, Version); +DO_TYPEDEF(0x03CAC380, ManifestResourceInfo); +DO_TYPEDEF(0x03CCF0B8, ConstructorInfo); +DO_TYPEDEF(0x03CAC890, RuntimeConstructorInfo); +DO_TYPEDEF(0x03CAC860, ConstructorInfo__Array); DO_TYPEDEF(0x03CA78C0, EventInfo_1); +DO_TYPEDEF(0x03D06F58, RuntimeEventInfo); +DO_TYPEDEF(0x03CAC868, EventInfo_1__Array); DO_TYPEDEF(0x03CA31D8, MemberInfo_1__Array); +DO_TYPEDEF(0x03CAC878, MethodInfo_1__Array); +DO_TYPEDEF(0x03CC2768, IEnumerable_1_System_Type_); +DO_TYPEDEF(0x03D06FD0, MonoTypeInfo); +DO_TYPEDEF(0x03D049D0, MemberFilter); +DO_TYPEDEF(0x03D05388, Byte__Array); +DO_TYPEDEF(0x03D054D0, StringBuilder); +DO_TYPEDEF(0x03D00568, FileMode__Enum); DO_TYPEDEF(0x03C94A88, SafeFileHandle); DO_TYPEDEF(0x03C94AD0, SafeFindHandle); DO_TYPEDEF(0x03C9BAA8, DateTimeOffset); DO_TYPEDEF(0x03C948F0, SafeRegistryHandle); +DO_TYPEDEF(0x03D05978, Int64__Array); DO_TYPEDEF(0x03C94860, DataConverter); DO_TYPEDEF(0x03C94710, DataConverter_CopyConverter); DO_TYPEDEF(0x03C94800, DataConverter_PackContext); +DO_TYPEDEF(0x03CBBDA8, IList); DO_TYPEDEF(0x03C94720, DataConverter_SwapConverter); DO_TYPEDEF(0x03C945C0, ISystemDependencyProvider); DO_TYPEDEF(0x03C94518, RuntimeClassHandle); @@ -81,12 +232,15 @@ DO_TYPEDEF(0x03C94548, RuntimePropertyHandle); DO_TYPEDEF(0x03CA1878, SmallXmlParser); DO_TYPEDEF(0x03C969E8, SecurityParser); DO_TYPEDEF(0x03C94368, SmallXmlParser_IContentHandler); +DO_TYPEDEF(0x03CFEF48, TextReader); DO_TYPEDEF(0x03C94420, Stack); DO_TYPEDEF(0x03C943A8, SmallXmlParser_AttrListImpl); +DO_TYPEDEF(0x03D0C070, List_1_System_String_); DO_TYPEDEF(0x03C94448, SecurityElement); DO_TYPEDEF(0x03C90C58, ArrayList); DO_TYPEDEF(0x03C94440, SmallXmlParser_IAttrList); DO_TYPEDEF(0x03C943C0, SmallXmlParserException); +DO_TYPEDEF(0x03CD9348, Attribute); DO_TYPEDEF(0x03C93DD0, CodePointIndexer); DO_TYPEDEF(0x03C94128, CodePointIndexer_TableRange__Array); DO_TYPEDEF(0x03C93E88, TailoringInfo); @@ -104,8 +258,10 @@ DO_TYPEDEF(0x03C91918, CspParameters); DO_TYPEDEF(0x03C916A0, HashAlgorithm); DO_TYPEDEF(0x03C969D8, MD2Managed); DO_TYPEDEF(0x03C969A0, MD4Managed); -DO_TYPEDEF(0x03C908A8, RSA); +DO_TYPEDEF(0x03D1BC20, UInt32__Array); DO_TYPEDEF(0x03C912C8, KeySizes); +DO_TYPEDEF(0x03CF8430, AsymmetricAlgorithm); +DO_TYPEDEF(0x03C908A8, RSA); DO_TYPEDEF(0x03C913C8, KeySizes__Array); DO_TYPEDEF(0x03C9AEF8, RSAManaged); DO_TYPEDEF(0x03C96978, BigInteger); @@ -126,50 +282,180 @@ DO_TYPEDEF(0x03C967C8, SequentialSearchPrimeGeneratorBase); DO_TYPEDEF(0x03C96778, RegistryKey); DO_TYPEDEF(0x03C9DE48, SafePasswordHandle); DO_TYPEDEF(0x03C98A28, SecureString); +DO_TYPEDEF(0x03D1F8A0, SafeSocketHandle); +DO_TYPEDEF(0x03D0BD78, Thread); +DO_TYPEDEF(0x03CE3CE8, List_1_System_Threading_Thread_); DO_TYPEDEF(0x03C9FC90, LocalDataStoreMgr); +DO_TYPEDEF(0x03D07AA8, LocalDataStoreElement); +DO_TYPEDEF(0x03D07A80, LocalDataStore); +DO_TYPEDEF(0x03D07A38, List_1_System_LocalDataStore_); +DO_TYPEDEF(0x03D07AD0, LocalDataStoreElement__Array); +DO_TYPEDEF(0x03D07A48, Dictionary_2_System_String_System_LocalDataStoreSlot_); +DO_TYPEDEF(0x03D07A08, LocalDataStoreSlot); +DO_TYPEDEF(0x03D07A88, LocalDataStoreHolder); +DO_TYPEDEF(0x03D121D8, AsyncLocal_1_System_Globalization_CultureInfo_); +DO_TYPEDEF(0x03D121F8, Action_1_System_Threading_AsyncLocalValueChangedArgs_1_); +DO_TYPEDEF(0x03CCB070, UIntPtr); +DO_TYPEDEF(0x03CB6E50, Thread__Array); +DO_TYPEDEF(0x03D22A78, Dictionary_2_System_Threading_Thread_System_Diagnostics_StackTrace_); +DO_TYPEDEF(0x03CD99F8, SafeCredentialReference); +DO_TYPEDEF(0x03CD9A10, SafeFreeCredential_SECURITY); DO_TYPEDEF(0x03C96648, ReflectionExecutionDomainCallbacks); +DO_TYPEDEF(0x03D1F2A0, RuntimeThread); DO_TYPEDEF(0x03C97400, Encoding); DO_TYPEDEF(0x03C98C90, Dictionary_2_System_Int32_System_Text_Encoding_); +DO_TYPEDEF(0x03CB4D00, Encoding__Array); +DO_TYPEDEF(0x03CB3EE0, CodePageDataItem); DO_TYPEDEF(0x03C975C8, EncoderFallback); DO_TYPEDEF(0x03C97668, InternalEncoderBestFitFallback); DO_TYPEDEF(0x03C973F8, EncoderNLS); DO_TYPEDEF(0x03C97658, InternalEncoderBestFitFallbackBuffer); DO_TYPEDEF(0x03C98CC8, DecoderFallback); DO_TYPEDEF(0x03C98CB8, InternalDecoderBestFitFallback); +DO_TYPEDEF(0x03D10EC0, InternalDecoderBestFitFallbackBuffer); DO_TYPEDEF(0x03C98BD8, ASCIIEncoding); +DO_TYPEDEF(0x03D10F08, ASCIIEncoding_ASCIIEncodingSealed); DO_TYPEDEF(0x03C97488, DecoderNLS); DO_TYPEDEF(0x03C961E0, ParamsArray); DO_TYPEDEF(0x03C960E0, StringSplitOptions__Enum); +DO_TYPEDEF(0x03CAEF60, TimeZoneInfo_CachedData); +DO_TYPEDEF(0x03CAEA78, TimeZoneInfo_OffsetAndRule); +DO_TYPEDEF(0x03CAE968, TimeZoneInfo_TransitionTime); +DO_TYPEDEF(0x03CAE9C8, TimeZoneInfo_AdjustmentRule); +DO_TYPEDEF(0x03CAF108, TimeZoneInfo); +DO_TYPEDEF(0x03CAEB50, Lazy_1_Boolean_); DO_TYPEDEF(0x03C94D60, LazyHelper); +DO_TYPEDEF(0x03CB27C8, Func_1_Boolean_); +DO_TYPEDEF(0x03CAF118, TimeZoneInfo_AdjustmentRule__Array); +DO_TYPEDEF(0x03CAEF70, Dictionary_2_System_String_System_TimeZoneInfo_); +DO_TYPEDEF(0x03CAF000, IEnumerator_1_System_TimeZoneInfo_); +DO_TYPEDEF(0x03CAEEA8, ReadOnlyCollection_1_System_TimeZoneInfo_); +DO_TYPEDEF(0x03CAFA20, Nullable_1_Int32_); +DO_TYPEDEF(0x03CAEFE0, TimeZoneInfo_c); +DO_TYPEDEF(0x03CAF028, Comparison_1_TimeZoneInfo_); +DO_TYPEDEF(0x03CFD650, Action); +DO_TYPEDEF(0x03D11070, IEnumerable_1_System_Exception_); +DO_TYPEDEF(0x03D11060, IEnumerable_1_System_Runtime_ExceptionServices_ExceptionDispatchInfo_); +DO_TYPEDEF(0x03CAE7B0, IList_1_System_Runtime_ExceptionServices_ExceptionDispatchInfo_); DO_TYPEDEF(0x03CA8978, ApplicationException); +DO_TYPEDEF(0x03CFD4D0, ArgumentException); +DO_TYPEDEF(0x03CFD6F8, ArgumentNullException); +DO_TYPEDEF(0x03CFFDB8, ArgumentOutOfRangeException); DO_TYPEDEF(0x03C90EC8, ArithmeticException); +DO_TYPEDEF(0x03D1F878, ArrayTypeMismatchException); +DO_TYPEDEF(0x03D09820, AssemblyLoadEventArgs); +DO_TYPEDEF(0x03CD4188, AssemblyLoadEventHandler); +DO_TYPEDEF(0x03CAE670, AttributeUsageAttribute); DO_TYPEDEF(0x03CA5518, BadImageFormatException); +DO_TYPEDEF(0x03CAE640, BitConverter_c); +DO_TYPEDEF(0x03CAE628, SpanAction_2_System_Char_System_ValueTuple_3_); DO_TYPEDEF(0x03C96380, CharEnumerator); +DO_TYPEDEF(0x03CB1030, IConvertible); +DO_TYPEDEF(0x03CAC1B0, DBNull); +DO_TYPEDEF(0x03D0D370, DivideByZeroException); DO_TYPEDEF(0x03CA5508, TypeLoadException); +DO_TYPEDEF(0x03D1B970, DllNotFoundException); +DO_TYPEDEF(0x03CAF058, EntryPointNotFoundException); +DO_TYPEDEF(0x03D0BE40, EventHandler); +DO_TYPEDEF(0x03CAC048, MemberAccessException); +DO_TYPEDEF(0x03CAC268, FieldAccessException); +DO_TYPEDEF(0x03CBC990, FormatException); DO_TYPEDEF(0x03CA8868, FormattableStringFactory_ConcreteFormattableString); DO_TYPEDEF(0x03CA8B20, GCHandle); +DO_TYPEDEF(0x03D01DF0, Gen2GcCallback); +DO_TYPEDEF(0x03CB4618, Func_2_Object_Boolean_); +DO_TYPEDEF(0x03CAF750, _DTString); +DO_TYPEDEF(0x03D02BB8, DateTimeParse_MatchNumberDelegate); +DO_TYPEDEF(0x03D01CF8, DateTimeParse_c); +DO_TYPEDEF(0x03D01CC8, Func_1_DateTimeParse_MatchNumberDelegate_); +DO_TYPEDEF(0x03CFD640, IndexOutOfRangeException); +DO_TYPEDEF(0x03D1F888, InvalidCastException); +DO_TYPEDEF(0x03CFD218, InvalidOperationException); DO_TYPEDEF(0x03C984D8, InvalidProgramException); +DO_TYPEDEF(0x03CAF100, InvalidTimeZoneException); +DO_TYPEDEF(0x03D029D0, MidpointRounding__Enum); +DO_TYPEDEF(0x03CAC1A0, MethodAccessException); +DO_TYPEDEF(0x03CFC238, MissingMemberException); DO_TYPEDEF(0x03C99040, MissingMethodException); +DO_TYPEDEF(0x03D08F40, MulticastNotSupportedException); DO_TYPEDEF(0x03CA7A78, NonSerializedAttribute); +DO_TYPEDEF(0x03CDF138, NotImplementedException); +DO_TYPEDEF(0x03D104C8, NotSupportedException); +DO_TYPEDEF(0x03CFBAD0, NullReferenceException); +DO_TYPEDEF(0x03CFD320, ObjectDisposedException); +DO_TYPEDEF(0x03D0C628, ObsoleteAttribute); +DO_TYPEDEF(0x03D1D510, OperationCanceledException); +DO_TYPEDEF(0x03CC9230, OverflowException); +DO_TYPEDEF(0x03CB6D88, PlatformNotSupportedException); +DO_TYPEDEF(0x03D0C138, Random); DO_TYPEDEF(0x03C9B098, RankException); +DO_TYPEDEF(0x03D09978, ResolveEventArgs); +DO_TYPEDEF(0x03D09968, ResolveEventHandler); +DO_TYPEDEF(0x03D08CE0, SerializableAttribute); +DO_TYPEDEF(0x03D04C38, Vector_1_System_UInt16_); +DO_TYPEDEF(0x03D0DCA0, StackOverflowException); DO_TYPEDEF(0x03C8F1A8, StringComparer); +DO_TYPEDEF(0x03CAF6C8, CultureAwareComparer); +DO_TYPEDEF(0x03D04B90, OrdinalComparer); +DO_TYPEDEF(0x03D04BC8, OrdinalCaseSensitiveComparer); +DO_TYPEDEF(0x03D04BC0, OrdinalIgnoreCaseComparer); +DO_TYPEDEF(0x03D04B18, TimeZone); +DO_TYPEDEF(0x03CAF010, TimeZoneNotFoundException); DO_TYPEDEF(0x03CA54E0, Func_2_System_Reflection_AssemblyName_System_Reflection_Assembly_); DO_TYPEDEF(0x03CA54E8, Func_4_System_Reflection_Assembly_String_Boolean_Type_); +DO_TYPEDEF(0x03CB1568, TypeInitializationException); DO_TYPEDEF(0x03C96768, UnauthorizedAccessException); +DO_TYPEDEF(0x03D096C0, UnhandledExceptionEventHandler); +DO_TYPEDEF(0x03D04938, ValueTuple); +DO_TYPEDEF(0x03D09130, ConsoleCancelEventHandler); +DO_TYPEDEF(0x03D09140, ConsoleCancelEventArgs); +DO_TYPEDEF(0x03D04850, ConsoleKeyInfo); +DO_TYPEDEF(0x03D04840, ExceptionArgument__Enum); +DO_TYPEDEF(0x03D046F8, ExceptionResource__Enum); +DO_TYPEDEF(0x03CBB940, KeyNotFoundException); +DO_TYPEDEF(0x03D04638, PlatformID__Enum); +DO_TYPEDEF(0x03D046C8, OperatingSystem); +DO_TYPEDEF(0x03D07940, MissingFieldException); DO_TYPEDEF(0x03C955D0, OutOfMemoryException); +DO_TYPEDEF(0x03D044C0, Array_ArrayEnumerator); +DO_TYPEDEF(0x03D07988, Attribute__Array); +DO_TYPEDEF(0x03D078C8, DefaultBinder_BinderState); +DO_TYPEDEF(0x03D07920, DefaultBinder_c); +DO_TYPEDEF(0x03D07930, Predicate_1_Type_); +DO_TYPEDEF(0x03D07958, Empty); +DO_TYPEDEF(0x03D07808, Enum_ValuesAndNames); +DO_TYPEDEF(0x03D1BE30, UInt64__Array); DO_TYPEDEF(0x03CA3250, RuntimeType__Array); DO_TYPEDEF(0x03C93F58, RuntimeAssembly); +DO_TYPEDEF(0x03CAC400, Assembly_ResolveEventHolder); +DO_TYPEDEF(0x03D06FA8, RuntimeMethodInfo__Array); +DO_TYPEDEF(0x03D06FA0, RuntimeConstructorInfo__Array); +DO_TYPEDEF(0x03D06F48, RuntimePropertyInfo__Array); +DO_TYPEDEF(0x03D06F68, RuntimeFieldInfo__Array); +DO_TYPEDEF(0x03D06F60, RuntimeEventInfo__Array); +DO_TYPEDEF(0x03D07110, ReflectionOnlyType); DO_TYPEDEF(0x03C98AF8, SharedStatics); +DO_TYPEDEF(0x03D09D08, Tokenizer_StringMaker); +DO_TYPEDEF(0x03D09868, AppDomain); +DO_TYPEDEF(0x03D1B7D0, Dictionary_2_System_String_System_Object_); +DO_TYPEDEF(0x03CC5360, KeyValuePair_2_System_String_System_Object_); +DO_TYPEDEF(0x03CC0658, IEnumerator_1_KeyValuePair_2_System_String_System_Object_); DO_TYPEDEF(0x03CA0AA0, Context); DO_TYPEDEF(0x03CA0910, IMessageSink); -DO_TYPEDEF(0x03C9FE08, List_1_System_Runtime_Remoting_Contexts_IContextProperty_); DO_TYPEDEF(0x03C9FF40, IContextProperty); +DO_TYPEDEF(0x03C9FE08, List_1_System_Runtime_Remoting_Contexts_IContextProperty_); DO_TYPEDEF(0x03C9FF98, IContextProperty__Array); DO_TYPEDEF(0x03CA1D68, DynamicPropertyCollection); DO_TYPEDEF(0x03C9FD00, ContextCallbackObject); DO_TYPEDEF(0x03CA3F38, CADMethodCallMessage); DO_TYPEDEF(0x03CA3FA8, CADArgHolder); DO_TYPEDEF(0x03CA3E68, CADMethodReturnMessage); +DO_TYPEDEF(0x03CFEE88, TextWriter); +DO_TYPEDEF(0x03CCABA8, StreamWriter); +DO_TYPEDEF(0x03D00570, FileAccess__Enum); +DO_TYPEDEF(0x03D091F8, Console_WindowsConsole_WindowsCancelHandler); +DO_TYPEDEF(0x03D08FF8, IConsoleDriver); +DO_TYPEDEF(0x03D08D78, DelegateSerializationHolder_DelegateEntry); DO_TYPEDEF(0x03CA0B48, Identity); DO_TYPEDEF(0x03CA0E00, ServerIdentity); DO_TYPEDEF(0x03CA0B78, ClientIdentity); @@ -184,13 +470,119 @@ DO_TYPEDEF(0x03CA3F58, IMessage); DO_TYPEDEF(0x03CA1C50, ICustomAttributeProvider); DO_TYPEDEF(0x03CA7938, CustomAttributeData); DO_TYPEDEF(0x03CA8158, IList_1_System_Reflection_CustomAttributeTypedArgument_); +DO_TYPEDEF(0x03CAC448, IList_1_System_Reflection_CustomAttributeNamedArgument_); +DO_TYPEDEF(0x03CAC4D8, CustomAttributeData_LazyCAttrData); DO_TYPEDEF(0x03CA7928, CustomAttributeData__Array); +DO_TYPEDEF(0x03D08A40, IList_1_System_Reflection_CustomAttributeData_); +DO_TYPEDEF(0x03D08CB0, MonoCustomAttrs_AttributeInfo); +DO_TYPEDEF(0x03D09198, NullConsoleDriver); +DO_TYPEDEF(0x03CFFA58, TermInfoDriver); +DO_TYPEDEF(0x03D08630, TermInfoReader); +DO_TYPEDEF(0x03D0BCD0, StreamReader); +DO_TYPEDEF(0x03D09298, CStreamWriter); +DO_TYPEDEF(0x03D082B8, ByteMatcher); +DO_TYPEDEF(0x03D08398, TermInfoStrings__Enum); +DO_TYPEDEF(0x03D08478, ParameterizedStrings_FormatParam__Array); +DO_TYPEDEF(0x03D08218, ParameterizedStrings_LowLevelStack); +DO_TYPEDEF(0x03D0D810, TypeName); +DO_TYPEDEF(0x03D0D7C0, TypeIdentifiers_Display); +DO_TYPEDEF(0x03D06F50, TypeIdentifier); +DO_TYPEDEF(0x03D0D6C0, ArraySpec); +DO_TYPEDEF(0x03D0D768, PointerSpec); +DO_TYPEDEF(0x03D0D760, TypeSpec); +DO_TYPEDEF(0x03D0D6F0, List_1_System_TypeIdentifier_); +DO_TYPEDEF(0x03D0D770, List_1_System_TypeSpec_); +DO_TYPEDEF(0x03D0D7F0, ModifierSpec); +DO_TYPEDEF(0x03D0D6D8, List_1_System_ModifierSpec_); +DO_TYPEDEF(0x03D09030, WindowsConsoleDriver); +DO_TYPEDEF(0x03D0D5F0, Decimal_DecCalc); DO_TYPEDEF(0x03CA3FE8, Double__Array); +DO_TYPEDEF(0x03D0D1E0, Decimal_DecCalc_PowerOvfl__Array); +DO_TYPEDEF(0x03D11EA8, AbandonedMutexException); +DO_TYPEDEF(0x03D0D100, Mutex); +DO_TYPEDEF(0x03CB5768, AutoResetEvent); +DO_TYPEDEF(0x03D0CBC8, LockRecursionException); +DO_TYPEDEF(0x03D0CCA8, SemaphoreFullException); +DO_TYPEDEF(0x03D0CBB0, SynchronizationLockException); +DO_TYPEDEF(0x03D0BD80, ThreadStart); +DO_TYPEDEF(0x03D12120, ThreadStateException); +DO_TYPEDEF(0x03D0CF48, CancellationTokenRegistration); +DO_TYPEDEF(0x03D0D030, CancellationToken_c); +DO_TYPEDEF(0x03CEED48, SpinWait); +DO_TYPEDEF(0x03D0CEA0, CancellationCallbackCoreWorkArguments); +DO_TYPEDEF(0x03D0CDE0, CancellationTokenSource_Linked1CancellationTokenSource); +DO_TYPEDEF(0x03D0CDD8, CancellationTokenSource_Linked2CancellationTokenSource); +DO_TYPEDEF(0x03D0CDD0, CancellationTokenSource_LinkedNCancellationTokenSource); +DO_TYPEDEF(0x03D0CE00, CancellationTokenRegistration__Array); +DO_TYPEDEF(0x03D0CD70, CancellationTokenSource_LinkedNCancellationTokenSource_c); +DO_TYPEDEF(0x03D0CEA8, CancellationCallbackInfo_WithSyncContext); +DO_TYPEDEF(0x03D0CCC8, AsyncTaskMethodBuilder_1_System_Boolean_); DO_TYPEDEF(0x03C984B8, IAsyncStateMachine); +DO_TYPEDEF(0x03CB90C8, Task_1_Task_); +DO_TYPEDEF(0x03D0CCA0, SpinLock); +DO_TYPEDEF(0x03D0CA00, OSSpecificSynchronizationContext); +DO_TYPEDEF(0x03D0C978, ConditionalWeakTable_2_System_Object_System_Threading_OSSpecificSynchronizationContext_); +DO_TYPEDEF(0x03D0C928, OSSpecificSynchronizationContext_InvocationEntryDelegate); +DO_TYPEDEF(0x03D0C930, OSSpecificSynchronizationContext_InvocationContext); +DO_TYPEDEF(0x03D0C940, OSSpecificSynchronizationContext_c); +DO_TYPEDEF(0x03D0C950, ConditionalWeakTable_2_TKey_TValue_CreateValueCallback_System_Object_System_Threading_OSSpecificSynchronizationContext_); +DO_TYPEDEF(0x03D122A8, ThreadHelper); +DO_TYPEDEF(0x03CB75E8, ThreadInterruptedException); +DO_TYPEDEF(0x03CFFC30, WaitCallback); +DO_TYPEDEF(0x03CCAA58, WaitOrTimerCallback); +DO_TYPEDEF(0x03D12188, ThreadPoolWorkQueue); +DO_TYPEDEF(0x03D120C8, IThreadPoolWorkItem); +DO_TYPEDEF(0x03D12168, ThreadPoolWorkQueue_QueueSegment); +DO_TYPEDEF(0x03D12108, IThreadPoolWorkItem__Array); +DO_TYPEDEF(0x03D12028, ThreadPoolWorkQueue_WorkStealingQueue); +DO_TYPEDEF(0x03D120B0, ThreadPoolWorkQueue_SparseArray_1_ThreadPoolWorkQueue_WorkStealingQueue_); +DO_TYPEDEF(0x03D12148, ThreadPoolWorkQueueThreadLocals); +DO_TYPEDEF(0x03D12000, QueueUserWorkItemCallback); +DO_TYPEDEF(0x03CCAA00, RegisteredWaitHandle); +DO_TYPEDEF(0x03D11E20, WaitHandle__Array); +DO_TYPEDEF(0x03D11BF8, LockQueue); DO_TYPEDEF(0x03C9CAB8, ReaderWriterLock); +DO_TYPEDEF(0x03D11AC0, Timer_Scheduler); +DO_TYPEDEF(0x03D11AE8, List_1_System_Threading_Timer_); +DO_TYPEDEF(0x03D118D0, Timer_TimerComparer); DO_TYPEDEF(0x03CA87B0, TaskCanceledException); +DO_TYPEDEF(0x03D11490, TaskSchedulerException); +DO_TYPEDEF(0x03CFFF28, TaskToApm_TaskWrapperAsyncResult); +DO_TYPEDEF(0x03D11800, TaskToApm_c_DisplayClass3_0); DO_TYPEDEF(0x03C99070, IValueTaskSource); DO_TYPEDEF(0x03C982C0, ValueTaskAwaiter); +DO_TYPEDEF(0x03D118A8, Task_1_VoidTaskResult_); +DO_TYPEDEF(0x03D118B8, ValueTask_ValueTaskSourceAsTask); +DO_TYPEDEF(0x03D11740, ValueTask_ValueTaskSourceAsTask_c); +DO_TYPEDEF(0x03D116C0, RendezvousAwaitable_1_System_IAsyncResult_); +DO_TYPEDEF(0x03D116B0, BeginEndAwaitableAdapter); +DO_TYPEDEF(0x03D11690, BeginEndAwaitableAdapter_c); +DO_TYPEDEF(0x03D11368, TaskContinuation); +DO_TYPEDEF(0x03D11370, StandardTaskContinuation); +DO_TYPEDEF(0x03CE3160, TaskStatus__Enum); +DO_TYPEDEF(0x03D114F0, ReadOnlyCollection_1_System_Runtime_ExceptionServices_ExceptionDispatchInfo_); +DO_TYPEDEF(0x03D111E0, Action_1_System_Threading_Tasks_Task_); +DO_TYPEDEF(0x03CFEB78, Action_2_System_Threading_Tasks_Task_Object_); +DO_TYPEDEF(0x03D11388, ITaskCompletionAction); +DO_TYPEDEF(0x03D16320, Func_1_System_Threading_Tasks_Task_); +DO_TYPEDEF(0x03D11450, Task_SetOnInvokeMres); +DO_TYPEDEF(0x03D11328, Task_DelayPromise); +DO_TYPEDEF(0x03D11300, Task_c); +DO_TYPEDEF(0x03D11390, CompletionActionInvoker); +DO_TYPEDEF(0x03D11360, ContinuationTaskFromTask); +DO_TYPEDEF(0x03D11148, AwaitTaskContinuation); +DO_TYPEDEF(0x03D11430, SynchronizationContextAwaitTaskContinuation); +DO_TYPEDEF(0x03D11138, SynchronizationContextAwaitTaskContinuation_c); +DO_TYPEDEF(0x03D11420, TaskSchedulerAwaitTaskContinuation); +DO_TYPEDEF(0x03D11110, TaskSchedulerAwaitTaskContinuation_c); +DO_TYPEDEF(0x03CFE2E0, Func_3_AsyncCallback_Object_IAsyncResult_); +DO_TYPEDEF(0x03D1AE78, Action_1_IAsyncResult_); +DO_TYPEDEF(0x03D10FB0, IList_1_System_Threading_Tasks_Task_); +DO_TYPEDEF(0x03D10FC0, TaskFactory_CompleteOnInvokePromise); +DO_TYPEDEF(0x03D10F90, ThreadPoolTaskScheduler_c); +DO_TYPEDEF(0x03D10EA8, DecoderExceptionFallback); +DO_TYPEDEF(0x03D10EB0, DecoderExceptionFallbackBuffer); +DO_TYPEDEF(0x03D10E18, DecoderFallbackException); DO_TYPEDEF(0x03C97758, DecoderReplacementFallback); DO_TYPEDEF(0x03C97750, DecoderReplacementFallbackBuffer); DO_TYPEDEF(0x03C97610, EncoderExceptionFallback); @@ -209,6 +601,7 @@ DO_TYPEDEF(0x03C96DB8, UTF7Encoding_Decoder); DO_TYPEDEF(0x03C96E20, UTF7Encoding_Encoder); DO_TYPEDEF(0x03C96F10, UTF7Encoding_DecoderUTF7Fallback); DO_TYPEDEF(0x03C96D80, UTF7Encoding_DecoderUTF7FallbackBuffer); +DO_TYPEDEF(0x03CBC0C0, UTF8Encoding); DO_TYPEDEF(0x03C96CB8, UTF8Encoding_UTF8EncodingSealed); DO_TYPEDEF(0x03C96D60, UTF8Encoding_UTF8Encoder); DO_TYPEDEF(0x03C96CD0, UTF8Encoding_UTF8Decoder); @@ -236,6 +629,8 @@ DO_TYPEDEF(0x03C988B0, TokenizerStringBlock); DO_TYPEDEF(0x03C988C0, Tokenizer_StreamTokenReader); DO_TYPEDEF(0x03C988B8, Evidence_EvidenceEnumerator); DO_TYPEDEF(0x03C987B0, AsyncTaskMethodBuilder_1_System_Int32_); +DO_TYPEDEF(0x03CACF60, AsyncTaskMethodBuilder_1_System_Threading_Tasks_VoidTaskResult_); +DO_TYPEDEF(0x03CCA608, AsyncTaskMethodBuilder); DO_TYPEDEF(0x03C98760, CryptoStream_c); DO_TYPEDEF(0x03C98748, Func_1_System_Threading_SemaphoreSlim_); DO_TYPEDEF(0x03C99710, HashAlgorithmName); @@ -264,6 +659,7 @@ DO_TYPEDEF(0x03C99130, RC2CryptoServiceProvider); DO_TYPEDEF(0x03C99128, RijndaelManagedTransform); DO_TYPEDEF(0x03C99288, RIPEMD160Managed); DO_TYPEDEF(0x03C90520, RSACryptoServiceProvider); +DO_TYPEDEF(0x03CBF128, SHA1Managed); DO_TYPEDEF(0x03C99200, SHA256Managed); DO_TYPEDEF(0x03C99208, SHA384Managed); DO_TYPEDEF(0x03C99210, SHA512Managed); @@ -274,6 +670,7 @@ DO_TYPEDEF(0x03C9A768, RSAPKCS1SHA512SignatureDescription); DO_TYPEDEF(0x03C9A7B0, DSASignatureDescription); DO_TYPEDEF(0x03C90500, DSACryptoServiceProvider); DO_TYPEDEF(0x03C99138, RC2Transform); +DO_TYPEDEF(0x03CBA8A8, UInt16__Array); DO_TYPEDEF(0x03C90580, RSAPKCS1SignatureDeformatter); DO_TYPEDEF(0x03C9A770, RSAPKCS1SignatureFormatter); DO_TYPEDEF(0x03C9DE70, SHA1Internal); @@ -282,16 +679,37 @@ DO_TYPEDEF(0x03C9A7D0, TripleDESTransform); DO_TYPEDEF(0x03C903A0, X509Certificate); DO_TYPEDEF(0x03C9DD10, X509CertificateImpl); DO_TYPEDEF(0x03CA2430, X509Certificate2Impl); +DO_TYPEDEF(0x03D0A4D8, X509CertificateImplBtls); +DO_TYPEDEF(0x03CF84F0, X509ContentType__Enum); +DO_TYPEDEF(0x03CF8620, IEnumerable_1_System_Security_Cryptography_X509Certificates_X509Extension_); +DO_TYPEDEF(0x03D0A0D8, AsnEncodedData); +DO_TYPEDEF(0x03D0A198, X500DistinguishedName); +DO_TYPEDEF(0x03CF8B08, Oid); +DO_TYPEDEF(0x03D09680, PublicKey); +DO_TYPEDEF(0x03D097A8, X509CertificateImplCollection); +DO_TYPEDEF(0x03CF8358, List_1_System_Security_Cryptography_X509Certificates_X509CertificateImpl_); +DO_TYPEDEF(0x03D0C0B0, X509Certificate2); +DO_TYPEDEF(0x03CF8618, X509ExtensionCollection); DO_TYPEDEF(0x03C9DD48, X509KeyStorageFlags__Enum); +DO_TYPEDEF(0x03CEDA08, X509Extension); +DO_TYPEDEF(0x03CEDA00, List_1_System_Security_Cryptography_X509Certificates_X509Extension_); +DO_TYPEDEF(0x03CF8610, IEnumerator_1_System_Security_Cryptography_X509Certificates_X509Extension_); +DO_TYPEDEF(0x03D0A370, MonoBtlsX509); +DO_TYPEDEF(0x03D0A560, MonoBtlsBio_BoringBioHandle); +DO_TYPEDEF(0x03D0A3C0, MonoBtlsKey); DO_TYPEDEF(0x03C9DD18, ISystemCertificateProvider); DO_TYPEDEF(0x03C9D520, ClaimsIdentity); DO_TYPEDEF(0x03C9DCD8, GenericIdentity); -DO_TYPEDEF(0x03C9D558, List_1_System_Security_Claims_Claim_); DO_TYPEDEF(0x03C9DCE0, Claim); +DO_TYPEDEF(0x03C9D558, List_1_System_Security_Claims_Claim_); +DO_TYPEDEF(0x03CD66E8, Dictionary_2_System_String_System_String_); +DO_TYPEDEF(0x03CEB310, KeyValuePair_2_System_String_System_String_); +DO_TYPEDEF(0x03CAD860, IEnumerator_1_KeyValuePair_2_System_String_System_String_); DO_TYPEDEF(0x03C9D428, IEnumerator_1_System_Security_Claims_Claim_); DO_TYPEDEF(0x03C9D538, Collection_1_System_Collections_Generic_IEnumerable_1_); DO_TYPEDEF(0x03C9D420, IEnumerable_1_System_Security_Claims_Claim_); DO_TYPEDEF(0x03C9DCF8, ClaimsPrincipal); +DO_TYPEDEF(0x03D13448, GenericPrincipal); DO_TYPEDEF(0x03C9D198, List_1_System_Security_Claims_ClaimsIdentity_); DO_TYPEDEF(0x03C9D278, IEnumerator_1_System_Security_Claims_ClaimsIdentity_); DO_TYPEDEF(0x03C9D000, Func_2_System_Collections_Generic_IEnumerable_1_System_Security_Claims_ClaimsIdentity_); @@ -311,9 +729,9 @@ DO_TYPEDEF(0x03C9CB50, PrivilegeNotHeldException); DO_TYPEDEF(0x03C9CB40, AceEnumerator); DO_TYPEDEF(0x03C9CFE0, GenericAcl); DO_TYPEDEF(0x03C9CFF0, RawAcl); -DO_TYPEDEF(0x03C9CA08, List_1_System_Security_AccessControl_GenericAce_); DO_TYPEDEF(0x03C9CA68, AceType__Enum); DO_TYPEDEF(0x03C9CB80, GenericAce); +DO_TYPEDEF(0x03C9CA08, List_1_System_Security_AccessControl_GenericAce_); DO_TYPEDEF(0x03C9CDE0, KnownAce); DO_TYPEDEF(0x03C9CE10, QualifiedAce); DO_TYPEDEF(0x03C9CE40, CommonAce); @@ -326,6 +744,7 @@ DO_TYPEDEF(0x03C9CDB8, CommonAcl_c_DisplayClass53_0); DO_TYPEDEF(0x03C9CCA0, CommonAcl_c_DisplayClass57_0); DO_TYPEDEF(0x03C9CA80, CommonSecurityDescriptor); DO_TYPEDEF(0x03C9CBE8, SystemAcl); +DO_TYPEDEF(0x03CED3A8, SemaphoreSecurity); DO_TYPEDEF(0x03C9CB60, NativeObjectSecurity_ExceptionFromErrorCode); DO_TYPEDEF(0x03C9CC18, RawSecurityDescriptor); DO_TYPEDEF(0x03C9CAE0, NativeObjectSecurity_GetSecurityInfoNativeCall); @@ -350,6 +769,7 @@ DO_TYPEDEF(0x03CA1D08, RemotingException); DO_TYPEDEF(0x03CA03D8, IMethodReturnMessage); DO_TYPEDEF(0x03CA03C8, IMethodCallMessage); DO_TYPEDEF(0x03CA0B08, RemotingProxy); +DO_TYPEDEF(0x03D098E8, MethodCall); DO_TYPEDEF(0x03CA03A8, ConstructionCall); DO_TYPEDEF(0x03C9F648, IActivator); DO_TYPEDEF(0x03CA0EA8, IMethodMessage); @@ -357,12 +777,14 @@ DO_TYPEDEF(0x03CA09F0, RemotingServices_CACD); DO_TYPEDEF(0x03CA0AD0, SingletonIdentity); DO_TYPEDEF(0x03CA0AC0, SingleCallIdentity); DO_TYPEDEF(0x03CA0850, DisposerReplySink); +DO_TYPEDEF(0x03D0C2D8, IDisposable); DO_TYPEDEF(0x03CA0728, SoapServices_TypeInfo); DO_TYPEDEF(0x03CA19F8, TypeInfo_1); DO_TYPEDEF(0x03CA0D18, ProxyAttribute); DO_TYPEDEF(0x03C9FCD0, IConstructionCallMessage); DO_TYPEDEF(0x03CA0C88, TransparentProxy); DO_TYPEDEF(0x03CA0528, MonoMethodMessage); +DO_TYPEDEF(0x03D00468, AsyncResult); DO_TYPEDEF(0x03CA40C8, MessageDictionary); DO_TYPEDEF(0x03CA3C38, MCMDictionary); DO_TYPEDEF(0x03CA00D0, LeaseManager); @@ -381,6 +803,7 @@ DO_TYPEDEF(0x03CA1B60, CrossAppDomainData); DO_TYPEDEF(0x03CA0938, CrossAppDomainChannel); DO_TYPEDEF(0x03CA0B88, CrossAppDomainSink); DO_TYPEDEF(0x03C9F788, CrossAppDomainSink_ProcessMessageRes); +DO_TYPEDEF(0x03D0C230, MemoryStream); DO_TYPEDEF(0x03C9F7C0, AsyncRequest); DO_TYPEDEF(0x03CA1320, SinkProviderData); DO_TYPEDEF(0x03C9F668, AppDomainLevelActivator); @@ -412,6 +835,7 @@ DO_TYPEDEF(0x03C9FEB8, ServerContextTerminatorSink); DO_TYPEDEF(0x03C9FDA8, ServerObjectTerminatorSink); DO_TYPEDEF(0x03CA36E0, ServerObjectReplySink); DO_TYPEDEF(0x03C9FDB8, StackBuilderSink); +DO_TYPEDEF(0x03CF34A0, SerializationException); DO_TYPEDEF(0x03CA35B0, SerializationEntry); DO_TYPEDEF(0x03CA28D0, SerializationInfoEnumerator); DO_TYPEDEF(0x03CA2CD0, DeserializationEventHandler); @@ -423,13 +847,14 @@ DO_TYPEDEF(0x03CA33A8, List_1_System_Reflection_MethodInfo_); DO_TYPEDEF(0x03CA3330, SerializationEventsCache_c); DO_TYPEDEF(0x03CA3418, Func_2_Type_System_Runtime_Serialization_SerializationEvents_); DO_TYPEDEF(0x03CA54A0, SerializationObjectManager); +DO_TYPEDEF(0x03CC2A60, Dictionary_2_System_Object_System_Object_); DO_TYPEDEF(0x03CA2B10, ValueTypeFixupInfo); DO_TYPEDEF(0x03CA3148, FormatterServices_c_DisplayClass9_0); DO_TYPEDEF(0x03CA2F60, ObjectIDGenerator); -DO_TYPEDEF(0x03CA5620, ObjectManager); DO_TYPEDEF(0x03CA2EE8, ObjectHolder); -DO_TYPEDEF(0x03CA2B38, FixupHolderList); +DO_TYPEDEF(0x03CA5620, ObjectManager); DO_TYPEDEF(0x03CA2C80, FixupHolder); +DO_TYPEDEF(0x03CA2B38, FixupHolderList); DO_TYPEDEF(0x03CA2AF0, FixupHolder__Array); DO_TYPEDEF(0x03CA2B48, LongList); DO_TYPEDEF(0x03CA2C40, TypeLoadExceptionHolder); @@ -444,6 +869,7 @@ DO_TYPEDEF(0x03CA5650, SerStack); DO_TYPEDEF(0x03CA27C0, InternalPrimitiveTypeE__Enum); DO_TYPEDEF(0x03CA57C0, ObjectWriter); DO_TYPEDEF(0x03CA57C8, _BinaryWriter); +DO_TYPEDEF(0x03CBC050, BinaryWriter); DO_TYPEDEF(0x03CA5748, BinaryMethodCall); DO_TYPEDEF(0x03CA2710, BinaryMethodReturn); DO_TYPEDEF(0x03CA5718, BinaryObject); @@ -459,8 +885,12 @@ DO_TYPEDEF(0x03CA53F8, InternalObjectTypeE__Enum); DO_TYPEDEF(0x03CA5538, InternalArrayTypeE__Enum); DO_TYPEDEF(0x03CA5910, ParseRecord); DO_TYPEDEF(0x03CA5648, ReadObjectInfo); +DO_TYPEDEF(0x03CE4D80, List_1_System_Type_); +DO_TYPEDEF(0x03CC2760, IEnumerator_1_System_Type_); DO_TYPEDEF(0x03CA5590, PrimitiveArray); +DO_TYPEDEF(0x03CFD8F0, Single__Array); DO_TYPEDEF(0x03CA5928, BinaryAssemblyInfo); +DO_TYPEDEF(0x03CBBEA8, BinaryReader); DO_TYPEDEF(0x03CA5710, BinaryObjectWithMap); DO_TYPEDEF(0x03CA5750, BinaryObjectWithMapTyped); DO_TYPEDEF(0x03CA5920, BinaryTypeEnum__Enum__Array); @@ -490,6 +920,13 @@ DO_TYPEDEF(0x03CA5500, ObjectReader_TopLevelAssemblyTypeResolver); DO_TYPEDEF(0x03CA5580, ValueFixup); DO_TYPEDEF(0x03CA8CA0, OSPlatform); DO_TYPEDEF(0x03CA8C80, SafeBuffer); +DO_TYPEDEF(0x03CAC148, CallingConvention__Enum); +DO_TYPEDEF(0x03D08CF0, ComImportAttribute); +DO_TYPEDEF(0x03CAC138, PreserveSigAttribute); +DO_TYPEDEF(0x03CABF00, InAttribute); +DO_TYPEDEF(0x03CABF20, OutAttribute); +DO_TYPEDEF(0x03CABF10, OptionalAttribute); +DO_TYPEDEF(0x03CAC158, CharSet__Enum); DO_TYPEDEF(0x03CA8C60, DllImportAttribute); DO_TYPEDEF(0x03CA7A68, FieldOffsetAttribute); DO_TYPEDEF(0x03CA8AD8, Marshal_SecureStringAllocator); @@ -531,20 +968,222 @@ DO_TYPEDEF(0x03CA82A0, ManifestBasedResourceGroveler); DO_TYPEDEF(0x03CA7E50, ResourceTypeCode__Enum); DO_TYPEDEF(0x03CA8008, ResourceReader_ResourceEnumerator); DO_TYPEDEF(0x03CA8958, AmbiguousMatchException); +DO_TYPEDEF(0x03D08C30, CustomAttributeFormatException); +DO_TYPEDEF(0x03D06FC0, DefaultMemberAttribute); +DO_TYPEDEF(0x03CACCC0, InvalidFilterCriteriaException); +DO_TYPEDEF(0x03CACD08, Missing); +DO_TYPEDEF(0x03CACC58, Pointer_1); +DO_TYPEDEF(0x03CACA40, SignatureType); +DO_TYPEDEF(0x03CACBD0, SignatureArrayType); +DO_TYPEDEF(0x03CACBE0, SignatureByRefType); +DO_TYPEDEF(0x03D049E0, SignatureConstructedGenericType); +DO_TYPEDEF(0x03CACB48, SignaturePointerType); +DO_TYPEDEF(0x03CAC2D8, TargetException); DO_TYPEDEF(0x03C9F9D0, TargetInvocationException); +DO_TYPEDEF(0x03CAC1B8, TargetParameterCountException); DO_TYPEDEF(0x03CA78E8, TypeDelegator); +DO_TYPEDEF(0x03CAC9A8, CustomAttributeTypedArgument); +DO_TYPEDEF(0x03CAC9E8, CustomAttributeNamedArgument); DO_TYPEDEF(0x03C96650, MissingMetadataException); +DO_TYPEDEF(0x03CAC3D8, ExceptionHandlingClauseOptions__Enum); +DO_TYPEDEF(0x03CAC398, RuntimeAssembly_UnmanagedMemoryStreamForModule); +DO_TYPEDEF(0x03CABE50, RuntimeParameterInfo); +DO_TYPEDEF(0x03CB2EF0, CultureNotFoundException); +DO_TYPEDEF(0x03CAF780, DateTimeFormatInfoScanner); +DO_TYPEDEF(0x03CAF748, HebrewNumber); +DO_TYPEDEF(0x03CAF698, HebrewNumber_HebrewValue__Array); +DO_TYPEDEF(0x03CAF6E0, HebrewNumber_HS__Enum__Array); +DO_TYPEDEF(0x03CAF618, CalendricalCalculationsHelper); +DO_TYPEDEF(0x03CAF5E0, CalendricalCalculationsHelper_EphemerisCorrectionAlgorithmMap__Array); +DO_TYPEDEF(0x03CB1888, EastAsianLunisolarCalendar); +DO_TYPEDEF(0x03CB18C8, ChineseLunisolarCalendar); +DO_TYPEDEF(0x03CB1588, EraInfo); +DO_TYPEDEF(0x03CB1580, EraInfo__Array); +DO_TYPEDEF(0x03CB1890, Int32__Array_1); +DO_TYPEDEF(0x03CB17C8, GregorianCalendarTypes__Enum); +DO_TYPEDEF(0x03CAF9F8, GregorianCalendar); +DO_TYPEDEF(0x03CB1758, GregorianCalendarHelper); +DO_TYPEDEF(0x03CB1698, HebrewCalendar); +DO_TYPEDEF(0x03CB1680, HebrewCalendar_DateBuffer); +DO_TYPEDEF(0x03CB1628, HijriCalendar); +DO_TYPEDEF(0x03CAF7D0, JapaneseCalendar); +DO_TYPEDEF(0x03CB1558, JapaneseLunisolarCalendar); +DO_TYPEDEF(0x03CB1508, JulianCalendar); +DO_TYPEDEF(0x03CB14C8, KoreanCalendar); +DO_TYPEDEF(0x03CB14E8, KoreanLunisolarCalendar); +DO_TYPEDEF(0x03CB1280, StringInfo); +DO_TYPEDEF(0x03CB1240, TextElementEnumerator); +DO_TYPEDEF(0x03CAF7E0, TaiwanCalendar); +DO_TYPEDEF(0x03CB1228, TaiwanLunisolarCalendar); +DO_TYPEDEF(0x03CB3FF8, ThaiBuddhistCalendar); +DO_TYPEDEF(0x03CB3FC8, UmAlQuraCalendar_DateMapping__Array); +DO_TYPEDEF(0x03CB3FD8, UmAlQuraCalendar); +DO_TYPEDEF(0x03CB3180, EncodingInfo__Array); +DO_TYPEDEF(0x03CB3078, CultureTypes__Enum); +DO_TYPEDEF(0x03CB2A80, CultureInfo_OnCultureInfoChangedDelegate); +DO_TYPEDEF(0x03CFCF78, IdnMapping); +DO_TYPEDEF(0x03CFCFE0, Punycode); +DO_TYPEDEF(0x03D1BBE0, RegionInfo); +DO_TYPEDEF(0x03D16200, Comparer); +DO_TYPEDEF(0x03D074B8, ListDictionaryInternal); +DO_TYPEDEF(0x03CFCCA0, ListDictionaryInternal_DictionaryNode); +DO_TYPEDEF(0x03CFCCD8, ListDictionaryInternal_NodeEnumerator); +DO_TYPEDEF(0x03CFCC90, ListDictionaryInternal_NodeKeyValueCollection); +DO_TYPEDEF(0x03CFCC48, ListDictionaryInternal_NodeKeyValueCollection_NodeKeyValueEnumerator); +DO_TYPEDEF(0x03CFC7B0, CompatibleComparer); +DO_TYPEDEF(0x03CFCC20, IHashCodeProvider); +DO_TYPEDEF(0x03CFCC78, CaseInsensitiveComparer); +DO_TYPEDEF(0x03CFCC68, CaseInsensitiveHashCodeProvider); +DO_TYPEDEF(0x03CFCBF0, Queue_QueueEnumerator); +DO_TYPEDEF(0x03CFCB80, SortedList); +DO_TYPEDEF(0x03CFCAC8, SortedList_KeyList); +DO_TYPEDEF(0x03CFCAC0, SortedList_ValueList); +DO_TYPEDEF(0x03CFCAA0, SortedList_SyncSortedList); +DO_TYPEDEF(0x03CFCB68, SortedList_SortedListEnumerator); +DO_TYPEDEF(0x03CFCA78, Stack_StackEnumerator); +DO_TYPEDEF(0x03CFCA18, BitArray); +DO_TYPEDEF(0x03CFCA10, BitArray_BitArrayEnumeratorSimple); +DO_TYPEDEF(0x03CFC9A0, ArrayList_IListWrapper); +DO_TYPEDEF(0x03CFC930, ArrayList_ReadOnlyArrayList); +DO_TYPEDEF(0x03CFC980, ArrayList_ArrayListEnumeratorSimple); +DO_TYPEDEF(0x03CFC728, Hashtable_KeyCollection); +DO_TYPEDEF(0x03CFC720, Hashtable_ValueCollection); +DO_TYPEDEF(0x03CFC798, Hashtable_SyncHashtable); +DO_TYPEDEF(0x03CFC7E0, Hashtable_HashtableEnumerator); DO_TYPEDEF(0x03C955C8, CDSCollectionETWBCLProvider); +DO_TYPEDEF(0x03CDFAE8, ByteEqualityComparer); +DO_TYPEDEF(0x03CDFAA8, InternalStringComparer); +DO_TYPEDEF(0x03CB4620, ArrayPoolEventSource); +DO_TYPEDEF(0x03CFF150, IPinnable); +DO_TYPEDEF(0x03CFF0E0, DisableMediaInsertionPrompt); +DO_TYPEDEF(0x03CFF090, FileSystem_UnitySafeFindHandle); +DO_TYPEDEF(0x03D0B9B8, IOException); DO_TYPEDEF(0x03C9CB48, DirectoryNotFoundException); DO_TYPEDEF(0x03CA5430, EndOfStreamException); DO_TYPEDEF(0x03CA5510, FileLoadException); +DO_TYPEDEF(0x03CBBF50, FileNotFoundException); +DO_TYPEDEF(0x03CFED90, PathTooLongException); DO_TYPEDEF(0x03CA7D60, PinnedBufferMemoryStream); +DO_TYPEDEF(0x03CFEED8, StreamReader_NullStreamReader); +DO_TYPEDEF(0x03CFEE70, TextReader_NullTextReader); +DO_TYPEDEF(0x03CFEE60, TextReader_SyncTextReader); +DO_TYPEDEF(0x03CFEE38, TextWriter_NullTextWriter); +DO_TYPEDEF(0x03CFEE28, TextWriter_SyncTextWriter); +DO_TYPEDEF(0x03CFEA10, DriveNotFoundException); +DO_TYPEDEF(0x03CFECE8, DirectoryInfo); +DO_TYPEDEF(0x03CE8618, EnumerationOptions); +DO_TYPEDEF(0x03D0BCF0, FileStream); +DO_TYPEDEF(0x03CE27C8, FileInfo); +DO_TYPEDEF(0x03CFEBF8, Func_2_Object_Int32_); +DO_TYPEDEF(0x03CFEAE0, Stream_NullStream); +DO_TYPEDEF(0x03CFEB18, Stream_SynchronousAsyncResult); +DO_TYPEDEF(0x03CFEAA8, Stream_SynchronousAsyncResult_c); +DO_TYPEDEF(0x03CFEAC0, Func_1_System_Threading_ManualResetEvent_); +DO_TYPEDEF(0x03CFEBD0, Stream_c); +DO_TYPEDEF(0x03CFEBB0, Func_5_System_IO_Stream_System_IO_Stream_ReadWriteParameters_AsyncCallback_Object_IAsyncResult_); +DO_TYPEDEF(0x03CFEBB8, Func_3_System_IO_Stream_IAsyncResult_Int32_); +DO_TYPEDEF(0x03CFEB40, Func_3_System_IO_Stream_IAsyncResult_System_Threading_Tasks_VoidTaskResult_); +DO_TYPEDEF(0x03CB92F0, StringReader); +DO_TYPEDEF(0x03D00970, StringWriter); +DO_TYPEDEF(0x03D004C0, FileStream_ReadDelegate); +DO_TYPEDEF(0x03D00520, FileStream_WriteDelegate); +DO_TYPEDEF(0x03D00528, FileStreamAsyncResult); +DO_TYPEDEF(0x03D00220, MonoIOError__Enum); +DO_TYPEDEF(0x03CFFBC0, Path_c); +DO_TYPEDEF(0x03CFFBF0, SpanAction_2_System_Char_System_ValueTuple_5_); +DO_TYPEDEF(0x03CFFB98, SpanAction_2_System_Char_System_ValueTuple_8_); +DO_TYPEDEF(0x03CFF9B0, UnexceptionalStreamReader); +DO_TYPEDEF(0x03D09288, UnexceptionalStreamWriter); +DO_TYPEDEF(0x03D092A8, CStreamReader); +DO_TYPEDEF(0x03CFF768, FileSystemEnumerableFactory_c_DisplayClass3_0); +DO_TYPEDEF(0x03CFF760, FileSystemEnumerableFactory_c); +DO_TYPEDEF(0x03CFF8D8, FileSystemEnumerable_1_TResult_FindTransform_System_String_); +DO_TYPEDEF(0x03CFF718, FileSystemEnumerableFactory_c_DisplayClass4_0); +DO_TYPEDEF(0x03CFF6E8, FileSystemEnumerableFactory_c_DisplayClass5_0); +DO_TYPEDEF(0x03CFD9D8, Object_1); +DO_TYPEDEF(0x03CBBD50, Component); +DO_TYPEDEF(0x03CE1030, Behaviour); +DO_TYPEDEF(0x03CF6420, MonoBehaviour); +DO_TYPEDEF(0x03CFD730, Color); +DO_TYPEDEF(0x03D11530, BuiltinRenderTextureType__Enum); +DO_TYPEDEF(0x03D11570, CubemapFace__Enum); +DO_TYPEDEF(0x03D11560, RenderTargetIdentifier); DO_TYPEDEF(0x03C8F518, RenderTextureFormat__Enum); +DO_TYPEDEF(0x03CD6298, Texture); +DO_TYPEDEF(0x03CFD888, RenderTexture); +DO_TYPEDEF(0x03D124D0, AmplifyOcclusionEffect); +DO_TYPEDEF(0x03CE31C8, Camera); +DO_TYPEDEF(0x03CE31C0, Camera_CameraCallback); +DO_TYPEDEF(0x03CFD4B0, RenderTargetIdentifier__Array); +DO_TYPEDEF(0x03CFD128, CommandBuffer); +DO_TYPEDEF(0x03CFD9B8, Mesh); +DO_TYPEDEF(0x03CFD8A0, Material); DO_TYPEDEF(0x03C99D40, GraphicsFormat__Enum); DO_TYPEDEF(0x03C99D10, TextureDimension__Enum); +DO_TYPEDEF(0x03CFD8F8, RenderTexture__Array); +DO_TYPEDEF(0x03CFD000, Matrix4x4); +DO_TYPEDEF(0x03D12398, AmplifyOcclusionViewProjMatrix); +DO_TYPEDEF(0x03D0C100, GameObject); +DO_TYPEDEF(0x03CFCFF8, Vector3); +DO_TYPEDEF(0x03D115B8, Quaternion); +DO_TYPEDEF(0x03D12368, AstarBehaviorSelection_BehaviorSelectionType__Enum); +DO_TYPEDEF(0x03D1B548, GameObject__Array); DO_TYPEDEF(0x03CAA188, ScriptableObject); -DO_TYPEDEF(0x03C8E348, List_1_UnityEngine_Rendering_PostProcessing_PostProcessEffectSettings_); +DO_TYPEDEF(0x03CFD948, GUIStyle); +DO_TYPEDEF(0x03D13E30, GUISkin); +DO_TYPEDEF(0x03D21678, Font); +DO_TYPEDEF(0x03D21680, Action_1_UnityEngine_Font_); +DO_TYPEDEF(0x03D13C88, GUIStyleState); +DO_TYPEDEF(0x03CFD928, RectOffset); +DO_TYPEDEF(0x03CCACB0, GUIStyle__Array); +DO_TYPEDEF(0x03D13E38, GUISettings); +DO_TYPEDEF(0x03D13E78, Dictionary_2_System_String_UnityEngine_GUIStyle_); +DO_TYPEDEF(0x03CFD9A8, Vector3__Array); +DO_TYPEDEF(0x03D12378, Quaternion__Array); +DO_TYPEDEF(0x03D12208, Dictionary_2_System_Int32_BehaviorDesigner_Runtime_BehaviorTree_); +DO_TYPEDEF(0x03CBF580, TaskStatus__Enum_1); +DO_TYPEDEF(0x03CBF2B0, Behavior); +DO_TYPEDEF(0x03CBFC90, BehaviorSource); +DO_TYPEDEF(0x03CBF658, Task_1); +DO_TYPEDEF(0x03D0C250, Transform); +DO_TYPEDEF(0x03CFCFE8, Vector2); +DO_TYPEDEF(0x03CBF238, NodeData); +DO_TYPEDEF(0x03CBF240, List_1_System_Reflection_FieldInfo_); +DO_TYPEDEF(0x03CBBA20, IEnumerator_1_System_Reflection_FieldInfo_); +DO_TYPEDEF(0x03D1B020, Collider); +DO_TYPEDEF(0x03D1B048, ContactPoint__Array); +DO_TYPEDEF(0x03D19CE8, ContactPoint2D__Array); +DO_TYPEDEF(0x03D19D08, Collider2D); +DO_TYPEDEF(0x03CBFC68, List_1_BehaviorDesigner_Runtime_Tasks_Task_); +DO_TYPEDEF(0x03CE4D70, SharedVariable); +DO_TYPEDEF(0x03CBF378, List_1_BehaviorDesigner_Runtime_SharedVariable_); +DO_TYPEDEF(0x03D1CAB8, Func_1_UnityEngine_AnimationCurve_); +DO_TYPEDEF(0x03D009D8, AnimationCurve); +DO_TYPEDEF(0x03D1CBF8, Action_1_UnityEngine_AnimationCurve_); +DO_TYPEDEF(0x03CFF928, List_1_System_Int32_); +DO_TYPEDEF(0x03CC0A38, FieldSerializationData); +DO_TYPEDEF(0x03CC0A50, List_1_UnityEngine_Object_); +DO_TYPEDEF(0x03D12980, Object_1__Array); +DO_TYPEDEF(0x03CC0A58, List_1_System_Byte_); +DO_TYPEDEF(0x03D0DD70, IEnumerator_1_System_Byte_); +DO_TYPEDEF(0x03CBF348, IBehavior); +DO_TYPEDEF(0x03CBFB08, Dictionary_2_BehaviorDesigner_Runtime_Tasks_Task_Dictionary_2_System_String_System_Object_); +DO_TYPEDEF(0x03CBFB18, Dictionary_2_BehaviorDesigner_Runtime_SharedVariable_System_Object_); +DO_TYPEDEF(0x03CBFC20, Dictionary_2_System_String_List_1_BehaviorDesigner_Runtime_TaskCoroutine_); +DO_TYPEDEF(0x03CBFC08, TaskCoroutine); +DO_TYPEDEF(0x03CBFC28, List_1_BehaviorDesigner_Runtime_TaskCoroutine_); +DO_TYPEDEF(0x03D13218, Behavior_BehaviorHandler); +DO_TYPEDEF(0x03CBFB40, Dictionary_2_System_Type_Dictionary_2_System_String_System_Delegate_); +DO_TYPEDEF(0x03CBFB38, Dictionary_2_System_String_System_Delegate_); +DO_TYPEDEF(0x03D12228, AstarBehaviorSelection_EnableBehavior_d_24); +DO_TYPEDEF(0x03D121B8, BehaviorSelection_BehaviorSelectionType__Enum); +DO_TYPEDEF(0x03D12138, BehaviorSelection_EnableBehavior_d_25); +DO_TYPEDEF(0x03CBE9A0, MobileBlur); +DO_TYPEDEF(0x03CFD1A8, Texture2D); +DO_TYPEDEF(0x03D12110, BlurController_BlurOut_d_4); +DO_TYPEDEF(0x03CD19C0, PostProcessProfile); DO_TYPEDEF(0x03C8E948, PostProcessEffectSettings); +DO_TYPEDEF(0x03C8E348, List_1_UnityEngine_Rendering_PostProcessing_PostProcessEffectSettings_); DO_TYPEDEF(0x03C8EAF8, ParameterOverride); DO_TYPEDEF(0x03C8CAB0, BoolParameter); DO_TYPEDEF(0x03C8EA58, IEnumerator_1_UnityEngine_Rendering_PostProcessing_ParameterOverride_); @@ -552,66 +1191,1149 @@ DO_TYPEDEF(0x03C8EAE8, PostProcessRenderContext); DO_TYPEDEF(0x03CA3288, Texture2D__Array); DO_TYPEDEF(0x03C8E008, PostProcessResources_Shaders); DO_TYPEDEF(0x03C8E028, PostProcessResources_ComputeShaders); +DO_TYPEDEF(0x03D21B48, ComputeShader); DO_TYPEDEF(0x03C8EAB0, PropertySheetFactory); DO_TYPEDEF(0x03C8DE38, Dictionary_2_UnityEngine_Shader_UnityEngine_Rendering_PostProcessing_PropertySheet_); DO_TYPEDEF(0x03C8DEF8, PropertySheet); +DO_TYPEDEF(0x03CFD3E8, MaterialPropertyBlock); +DO_TYPEDEF(0x03CE3648, ComputeBuffer); DO_TYPEDEF(0x03C8EB60, Dictionary_2_UnityEngine_Rendering_PostProcessing_MonitorType_UnityEngine_Rendering_PostProcessing_Monitor_); DO_TYPEDEF(0x03C8CA50, RenderTexture__Array__Array); DO_TYPEDEF(0x03C8EAA8, LogHistogram); DO_TYPEDEF(0x03C8CA68, Vector2Parameter); DO_TYPEDEF(0x03C8CAC0, FloatParameter); DO_TYPEDEF(0x03C8CA60, EyeAdaptationParameter); +DO_TYPEDEF(0x03CE36E8, List_1_UnityEngine_Collider_); +DO_TYPEDEF(0x03D147F8, Collider__Array); DO_TYPEDEF(0x03C8C8E0, GradingModeParameter); DO_TYPEDEF(0x03C8CA28, TextureParameter); DO_TYPEDEF(0x03C8C8F8, TonemapperParameter); DO_TYPEDEF(0x03C8CAB8, ColorParameter); +DO_TYPEDEF(0x03CFCFF0, Vector4); DO_TYPEDEF(0x03C8C900, Vector4Parameter); DO_TYPEDEF(0x03C8C8E8, SplineParameter); DO_TYPEDEF(0x03C8C8F0, Spline); +DO_TYPEDEF(0x03D120F0, CameraFadeController_FadeIn_d_6); +DO_TYPEDEF(0x03D120E8, CameraFadeController_FadeOut_d_7); +DO_TYPEDEF(0x03CBBD08, LayerMask); +DO_TYPEDEF(0x03CFF3B0, Renderer); +DO_TYPEDEF(0x03CBCB08, MeshRenderer); +DO_TYPEDEF(0x03CF1B28, MeshRenderer__Array); +DO_TYPEDEF(0x03D11FF8, LightAnimationAdvanced_LightAnim_d_10); +DO_TYPEDEF(0x03D11FC0, LightAnimationSimple_FlameAnimation_d_8); +DO_TYPEDEF(0x03CFE8C0, AudioSource); +DO_TYPEDEF(0x03CEC6D0, AudioClip); DO_TYPEDEF(0x03C93518, AudioClip_PCMReaderCallback); +DO_TYPEDEF(0x03CFE910, AudioClip_PCMSetPositionCallback); +DO_TYPEDEF(0x03D11F10, List_1_UnityEngine_Renderer_); +DO_TYPEDEF(0x03CF9B68, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_); +DO_TYPEDEF(0x03D17210, AsyncOperationHandle_1_UnityEngine_GameObject_); +DO_TYPEDEF(0x03CCB500, AsyncOperationStatus__Enum); +DO_TYPEDEF(0x03CFE148, ResourceManager_1); +DO_TYPEDEF(0x03CBE670, Action_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_Exception_); +DO_TYPEDEF(0x03CFE118, IAsyncOperation); +DO_TYPEDEF(0x03CD5E00, IResourceLocation); DO_TYPEDEF(0x03C9E098, UnityWebRequest); +DO_TYPEDEF(0x03CBCFB8, CertificateHandler); +DO_TYPEDEF(0x03D0C008, Uri); +DO_TYPEDEF(0x03CDA1A8, UriParser); +DO_TYPEDEF(0x03CED748, Dictionary_2_System_String_System_UriParser_); +DO_TYPEDEF(0x03D107D8, UriFormatException); +DO_TYPEDEF(0x03CDA0F8, UriComponents__Enum); +DO_TYPEDEF(0x03CDA190, Uri_UriInfo); +DO_TYPEDEF(0x03CDA248, Uri_MoreInfo); +DO_TYPEDEF(0x03CDA170, UriKind__Enum); DO_TYPEDEF(0x03C9E970, ListWithEvents_1_UnityEngine_ResourceManagement_ResourceProviders_IResourceProvider_); DO_TYPEDEF(0x03C98080, IResourceProvider); +DO_TYPEDEF(0x03CBD9D0, IEnumerator_1_UnityEngine_ResourceManagement_ResourceProviders_IResourceProvider_); DO_TYPEDEF(0x03C9E908, Action_1_UnityEngine_ResourceManagement_ResourceProviders_IResourceProvider_); +DO_TYPEDEF(0x03CFE120, IAllocationStrategy); DO_TYPEDEF(0x03C9E968, ListWithEvents_1_UnityEngine_ResourceManagement_IUpdateReceiver_); +DO_TYPEDEF(0x03CCB4D0, IUpdateReceiver); DO_TYPEDEF(0x03C9E900, List_1_UnityEngine_ResourceManagement_IUpdateReceiver_); DO_TYPEDEF(0x03C9E910, Action_1_UnityEngine_ResourceManagement_IUpdateReceiver_); DO_TYPEDEF(0x03C9E9A8, Dictionary_2_System_Int32_UnityEngine_ResourceManagement_ResourceProviders_IResourceProvider_); +DO_TYPEDEF(0x03CBD090, ICollection_1_UnityEngine_ResourceManagement_ResourceProviders_IResourceProvider_); +DO_TYPEDEF(0x03CBD9A8, IEnumerable_1_UnityEngine_ResourceManagement_ResourceProviders_IResourceProvider_); DO_TYPEDEF(0x03C9E9A0, Dictionary_2_UnityEngine_ResourceManagement_Util_IOperationCacheKey_UnityEngine_ResourceManagement_AsyncOperations_IAsyncOperation_); DO_TYPEDEF(0x03C9E938, HashSet_1_UnityEngine_ResourceManagement_ResourceManager_InstanceOperation_); DO_TYPEDEF(0x03C92338, Scene); DO_TYPEDEF(0x03C9E870, ResourceManager_InstanceOperation); DO_TYPEDEF(0x03C9E698, IInstanceProvider); +DO_TYPEDEF(0x03CBF3D8, HashSet_1_System_Object_); DO_TYPEDEF(0x03C9E918, Action_1_UnityEngine_ResourceManagement_AsyncOperations_IAsyncOperation_); +DO_TYPEDEF(0x03CFE130, List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_); +DO_TYPEDEF(0x03D1D4A8, IEnumerator_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_); DO_TYPEDEF(0x03C98FF8, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_); +DO_TYPEDEF(0x03D11DA0, Action_1_Single_); DO_TYPEDEF(0x03C9E898, List_1_UnityEngine_ResourceManagement_AsyncOperations_IAsyncOperation_); DO_TYPEDEF(0x03C9E758, List_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest_); +DO_TYPEDEF(0x03CBD948, Action_1_UnityEngine_ResourceManagement_ResourceManager_DiagnosticEventContext_); DO_TYPEDEF(0x03C9E998, Dictionary_2_System_Type_System_Type_); +DO_TYPEDEF(0x03CCAA70, TaskCompletionSource_1_System_Object_); +DO_TYPEDEF(0x03CC34D0, BoltEntity); +DO_TYPEDEF(0x03CC36B8, UniqueId); +DO_TYPEDEF(0x03CC3558, NetworkId); +DO_TYPEDEF(0x03CC36C0, PrefabId); +DO_TYPEDEF(0x03CC3F88, EntityFlags); +DO_TYPEDEF(0x03CC35E8, IEntityBehaviour); +DO_TYPEDEF(0x03CC3408, Entity); +DO_TYPEDEF(0x03CC8068, Scene_1); +DO_TYPEDEF(0x03CCAB38, BoltConnection); +DO_TYPEDEF(0x03CC4140, UdpIPv4Address); +DO_TYPEDEF(0x03CB66E0, UdpIPv6Address); +DO_TYPEDEF(0x03CC4138, UdpEndPoint); +DO_TYPEDEF(0x03D1A340, UdpConnectionDisconnectReason__Enum); +DO_TYPEDEF(0x03D1B7A0, UdpConnectionType__Enum); +DO_TYPEDEF(0x03CCA300, UdpConnection); +DO_TYPEDEF(0x03CDAB28, UdpChannelName); +DO_TYPEDEF(0x03CB8770, Dictionary_2_UdpKit_UdpChannelName_UdpKit_UdpChannelStreamer_); +DO_TYPEDEF(0x03CB8740, UdpChannelStreamer); +DO_TYPEDEF(0x03CB81B8, UdpStreamChannel); +DO_TYPEDEF(0x03CB8158, UdpChannelConfig); +DO_TYPEDEF(0x03CB7B10, SortedDictionary_2_System_UInt64_UdpKit_UdpStreamOp_); +DO_TYPEDEF(0x03CB86C8, UdpStreamOp); +DO_TYPEDEF(0x03CB7B58, ObjectPool_1_UdpKit_UdpStreamOpBlock_); +DO_TYPEDEF(0x03CB8750, UdpStreamOpBlock); +DO_TYPEDEF(0x03CB7AF8, Queue_1_UdpKit_UdpStreamOp_); +DO_TYPEDEF(0x03CE34F0, IEqualityComparer_1_UdpKit_UdpChannelName_); +DO_TYPEDEF(0x03CB8778, UdpPipe); +DO_TYPEDEF(0x03CB8648, UdpRingBuffer_1_UdpPipeHandle_); +DO_TYPEDEF(0x03CB8650, UdpRingBuffer_1_UdpPipe_Ack_); +DO_TYPEDEF(0x03CB8450, UdpSocketState__Enum); +DO_TYPEDEF(0x03CCA690, UdpSocket); +DO_TYPEDEF(0x03CCB550, RuntimePlatform__Enum); +DO_TYPEDEF(0x03CC9ED0, UdpConfig); +DO_TYPEDEF(0x03CE8690, Func_1_Single_); +DO_TYPEDEF(0x03CDA460, PhotonPlatform); +DO_TYPEDEF(0x03CE0BE0, ConnectionProtocol__Enum); +DO_TYPEDEF(0x03CE0C08, SerializationProtocol__Enum); +DO_TYPEDEF(0x03CDA478, PhotonPlatformConfig); +DO_TYPEDEF(0x03CE5558, CustomAuthenticationType__Enum); +DO_TYPEDEF(0x03CDA470, AuthenticationValues); +DO_TYPEDEF(0x03CDB790, PhotonRegion); +DO_TYPEDEF(0x03CB98F8, Dictionary_2_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion_); +DO_TYPEDEF(0x03CDA428, PhotonRegion_Regions__Enum__Array); +DO_TYPEDEF(0x03CDABE8, KeyValuePair_2_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion_); +DO_TYPEDEF(0x03D22640, EndPoint); +DO_TYPEDEF(0x03D0DB90, IPEndPoint); +DO_TYPEDEF(0x03CE0AC0, AddressFamily__Enum); +DO_TYPEDEF(0x03D0DB70, SocketAddress); +DO_TYPEDEF(0x03CE0B18, IPAddress); +DO_TYPEDEF(0x03CC9CA0, DotNetPlatform); +DO_TYPEDEF(0x03CB7EA0, UdpSessionSource__Enum); +DO_TYPEDEF(0x03CB6658, UdpSession); +DO_TYPEDEF(0x03CB6650, UdpSessionImpl); +DO_TYPEDEF(0x03D24488, PhotonSession); +DO_TYPEDEF(0x03CE0EE8, Hashtable_1); +DO_TYPEDEF(0x03CB76D0, List_1_UdpKit_UdpSession_); +DO_TYPEDEF(0x03CB8530, UdpSession__Array); +DO_TYPEDEF(0x03CB8248, Action_2_Boolean_UdpKit_UdpSessionError_); +DO_TYPEDEF(0x03CDAAC0, UdpSessionError__Enum); +DO_TYPEDEF(0x03CB8EA0, DotNetSocket); +DO_TYPEDEF(0x03CE3F40, Socket); +DO_TYPEDEF(0x03D13650, EventHandler_1_System_Net_Sockets_SocketAsyncEventArgs_); +DO_TYPEDEF(0x03D231A0, IPPacketInformation); +DO_TYPEDEF(0x03D23388, TransmitFileOptions__Enum); +DO_TYPEDEF(0x03CE3F78, SocketError__Enum); +DO_TYPEDEF(0x03D22758, SocketFlags__Enum); +DO_TYPEDEF(0x03D13648, SocketAsyncEventArgs); +DO_TYPEDEF(0x03D1E280, SocketOperation__Enum); +DO_TYPEDEF(0x03D1E780, SocketAsyncResult); +DO_TYPEDEF(0x03CE0B70, IPAddress__Array); +DO_TYPEDEF(0x03D1E558, IList_1_System_ArraySegment_1_); +DO_TYPEDEF(0x03CE34B0, ArraySegment_1_Byte_); +DO_TYPEDEF(0x03CEED18, List_1_System_ArraySegment_1_); +DO_TYPEDEF(0x03D1E938, ArraySegment_1_Byte___Array); +DO_TYPEDEF(0x03D1EE18, AsyncTaskMethodBuilder_1_System_Net_Sockets_Socket_); +DO_TYPEDEF(0x03D1EE78, Socket_TaskSocketAsyncEventArgs_1_Socket_); +DO_TYPEDEF(0x03D1EC28, Socket_Int32TaskSocketAsyncEventArgs); +DO_TYPEDEF(0x03D233F8, Socket_CachedEventArgs); +DO_TYPEDEF(0x03D1EBF8, Socket_AwaitableSocketAsyncEventArgs); +DO_TYPEDEF(0x03D1E478, IOAsyncCallback); +DO_TYPEDEF(0x03CBA220, PhotonSocket); +DO_TYPEDEF(0x03CB8EC0, List_1_UdpKit_Platform_UdpPlatformInterface_); +DO_TYPEDEF(0x03CB8D60, DotNetInterface); +DO_TYPEDEF(0x03CB75C8, List_1_UdpKit_UdpEndPoint_); +DO_TYPEDEF(0x03CB8320, Action_2_Boolean_UdpKit_UdpConnectionDisconnectReason_); +DO_TYPEDEF(0x03CBA378, StunManager); +DO_TYPEDEF(0x03CFB8D8, Stopwatch); +DO_TYPEDEF(0x03CB9788, Dictionary_2_System_Int32_UdpKit_Platform_Photon_Puncher_StunManager_PingTarget_); +DO_TYPEDEF(0x03CB97A8, StunManager_PingTarget); +DO_TYPEDEF(0x03CB9750, StunMsgHeader); +DO_TYPEDEF(0x03CB85B0, UdpPacketPool); +DO_TYPEDEF(0x03CC81F8, UdpPacket); +DO_TYPEDEF(0x03CB79B0, Stack_1_UdpKit_UdpPacket_); +DO_TYPEDEF(0x03CB85B8, UdpSocket_SessionManager); +DO_TYPEDEF(0x03CC3CB8, Map_2_System_Guid_UdpSession_); +DO_TYPEDEF(0x03CC3DC0, IEnumerator_1_KeyValuePair_2_System_Guid_UdpKit_UdpSession_); +DO_TYPEDEF(0x03CB7D80, ProtocolService); +DO_TYPEDEF(0x03CB1070, Context_1); +DO_TYPEDEF(0x03CB7D50, ProtocolClient); +DO_TYPEDEF(0x03CB6558, Message); +DO_TYPEDEF(0x03CB76A8, Query); +DO_TYPEDEF(0x03CB77A0, List_1_UdpKit_Protocol_Query_); +DO_TYPEDEF(0x03CB7698, Result); +DO_TYPEDEF(0x03CB7710, Dictionary_2_System_Type_UdpKit_Protocol_ProtocolClient_MsgHandler_); +DO_TYPEDEF(0x03CFE248, Action_1_UdpKit_Protocol_Message_); +DO_TYPEDEF(0x03CB7788, Dictionary_2_System_Type_UdpKit_Protocol_ProtocolClient_AckCallback_); +DO_TYPEDEF(0x03CFE298, Action_1_UdpKit_Protocol_Query_); +DO_TYPEDEF(0x03CB85C0, UdpSocket_Broadcaster); +DO_TYPEDEF(0x03CB7F18, UdpClient); +DO_TYPEDEF(0x03CB85A0, Queue_1_UdpKit_UdpEvent_); +DO_TYPEDEF(0x03CB85A8, List_1_UdpKit_UdpConnection_); +DO_TYPEDEF(0x03CB8598, Dictionary_2_UdpKit_UdpEndPoint_System_Byte_); +DO_TYPEDEF(0x03D0A208, Byte__Array__Array); +DO_TYPEDEF(0x03CB8580, Dictionary_2_UdpKit_UdpEndPoint_UdpKit_UdpConnection_); +DO_TYPEDEF(0x03CB8588, Dictionary_2_UdpKit_UdpChannelName_UdpKit_UdpStreamChannel_); +DO_TYPEDEF(0x03CB8780, List_1_UdpKit_UdpChannelStreamer_); +DO_TYPEDEF(0x03CC3A30, EventChannel); +DO_TYPEDEF(0x03CC31A8, List_1_Photon_Bolt_EventUnreliable_); +DO_TYPEDEF(0x03CC9B90, Event); +DO_TYPEDEF(0x03CC26E0, List_1_Photon_Bolt_NetworkObj_); +DO_TYPEDEF(0x03CC24C8, TypeId); +DO_TYPEDEF(0x03CC26D0, BitSet); +DO_TYPEDEF(0x03CC3C98, NetworkObj_Meta); +DO_TYPEDEF(0x03CC26B0, BitSet__Array); +DO_TYPEDEF(0x03CC25F8, Priority__Array); +DO_TYPEDEF(0x03CC4A40, NetworkProperty_Bool); +DO_TYPEDEF(0x03CC8398, NetworkTrigger); +DO_TYPEDEF(0x03CC8368, Color32); +DO_TYPEDEF(0x03CC2688, NetworkStorage); +DO_TYPEDEF(0x03CC83C8, NetworkValue__Array); +DO_TYPEDEF(0x03CC26F8, NetworkState); +DO_TYPEDEF(0x03CC08F8, Animator); +DO_TYPEDEF(0x03CC2558, List_1_UnityEngine_Animator_); +DO_TYPEDEF(0x03CED138, Animator__Array); +DO_TYPEDEF(0x03CC2770, NetworkState_Meta); +DO_TYPEDEF(0x03CC4C60, InnFountainState_Meta); +DO_TYPEDEF(0x03CC4830, ObjectPool_1_InnFountainState_); +DO_TYPEDEF(0x03CC47F8, InnFountainState); +DO_TYPEDEF(0x03CC82A8, ProxyFlags); +DO_TYPEDEF(0x03CC34E8, EntityProxy); +DO_TYPEDEF(0x03CC9928, EntityProxyEnvelope); +DO_TYPEDEF(0x03CC9948, Queue_1_Photon_Bolt_Internal_EntityProxyEnvelope_); +DO_TYPEDEF(0x03CC9920, List_1_Photon_Bolt_Priority_); +DO_TYPEDEF(0x03CC8390, IProtocolToken); +DO_TYPEDEF(0x03D1DD10, PropertyCallback); +DO_TYPEDEF(0x03D11888, IState); +DO_TYPEDEF(0x03CC8328, ArrayIndices); +DO_TYPEDEF(0x03D11878, PropertyCallbackSimple); +DO_TYPEDEF(0x03CC8388, NetworkTransform); +DO_TYPEDEF(0x03CC83C0, Func_3_Photon_Bolt_BoltEntity_UnityEngine_Vector3_UnityEngine_Vector3_); +DO_TYPEDEF(0x03CC2570, BoltDoubleList_1_Photon_Bolt_NetworkStorage_); +DO_TYPEDEF(0x03CC2448, NetworkState_PropertyField); +DO_TYPEDEF(0x03CC83F8, Dictionary_2_System_Int32_Photon_Bolt_Internal_IDebugDrawerObjectArray_); +DO_TYPEDEF(0x03CC83D0, IDebugDrawerObjectArray__Array); +DO_TYPEDEF(0x03CC2580, Dictionary_2_System_String_List_1_Photon_Bolt_PropertyCallback_); +DO_TYPEDEF(0x03CC2330, List_1_Photon_Bolt_PropertyCallback_); +DO_TYPEDEF(0x03CC2550, Dictionary_2_System_String_List_1_Photon_Bolt_PropertyCallbackSimple_); +DO_TYPEDEF(0x03CC2300, List_1_Photon_Bolt_PropertyCallbackSimple_); +DO_TYPEDEF(0x03CC4AB8, NetworkPropertyInfo__Array); +DO_TYPEDEF(0x03CC2A78, HashSet_1_System_String_); +DO_TYPEDEF(0x03CC26A8, Stack_1_Photon_Bolt_NetworkStorage_); +DO_TYPEDEF(0x03CC2698, List_1_Photon_Bolt_NetworkPropertyInfo_); +DO_TYPEDEF(0x03CC26F0, NetworkArray_Meta); +DO_TYPEDEF(0x03CC4C58, InteractEvent_Meta); +DO_TYPEDEF(0x03CC6330, ObjectPool_1_InteractEvent_); +DO_TYPEDEF(0x03CC6340, InteractEvent); +DO_TYPEDEF(0x03CC2CA8, EventReliable); +DO_TYPEDEF(0x03CC3200, EventReliableSendBuffer); +DO_TYPEDEF(0x03CC2CE0, EventReliableSendBuffer_Node__Array); +DO_TYPEDEF(0x03CC31D0, EventReliableRecvBuffer); +DO_TYPEDEF(0x03CC2CF8, EventReliableRecvBuffer_Node__Array); +DO_TYPEDEF(0x03CC81D8, Packet); +DO_TYPEDEF(0x03CC9968, List_1_Photon_Bolt_EventReliable_); +DO_TYPEDEF(0x03CC3AE0, BoltChannel__Array); +DO_TYPEDEF(0x03CC3A10, PacketTypeStats); +DO_TYPEDEF(0x03CC3AB8, BinaryDataChannel); +DO_TYPEDEF(0x03CC98A8, Queue_1_System_Byte_); +DO_TYPEDEF(0x03CC3A00, SceneLoadChannel); +DO_TYPEDEF(0x03CC3A98, EntityChannel); +DO_TYPEDEF(0x03CC9870, EntityLookup); +DO_TYPEDEF(0x03CC9878, Dictionary_2_Photon_Bolt_NetworkId_Photon_Bolt_Internal_EntityProxy_); +DO_TYPEDEF(0x03CC9880, List_1_Photon_Bolt_Internal_EntityProxy_); +DO_TYPEDEF(0x03CC3AA8, EntityChannel_CommandChannel); +DO_TYPEDEF(0x03CC3A50, List_1_Photon_Bolt_Entity_); +DO_TYPEDEF(0x03CC3F38, IEnumerator_1_Photon_Bolt_Entity_); +DO_TYPEDEF(0x03CC3A40, EntityList); +DO_TYPEDEF(0x03CC3A78, BoltRingBuffer_1_Photon_Bolt_Internal_PacketStats_); +DO_TYPEDEF(0x03CC35C0, IEntitySerializer); +DO_TYPEDEF(0x03CC3118, IPriorityCalculator); +DO_TYPEDEF(0x03CC9840, IEntityReplicationFilter); +DO_TYPEDEF(0x03CC3BD0, CommandFlags); +DO_TYPEDEF(0x03CC3CC8, Command); +DO_TYPEDEF(0x03CC33C0, EventDispatcher); +DO_TYPEDEF(0x03CC2D48, List_1_Photon_Bolt_EventDispatcher_EventListener_); +DO_TYPEDEF(0x03CC2F48, IEventListener); +DO_TYPEDEF(0x03CC2E28, Dictionary_2_System_Type_List_1_Photon_Bolt_EventDispatcher_CallbackWrapper_); +DO_TYPEDEF(0x03CB29F8, List_1_Photon_Bolt_EventDispatcher_CallbackWrapper_); +DO_TYPEDEF(0x03CC2D20, Action_1_Photon_Bolt_Event_); +DO_TYPEDEF(0x03CC2D28, Queue_1_Photon_Bolt_Event_); +DO_TYPEDEF(0x03CC33C8, BoltDoubleList_1_Photon_Bolt_Command_); +DO_TYPEDEF(0x03CC33E8, BoltDoubleList_1_Photon_Bolt_Internal_EntityProxy_); +DO_TYPEDEF(0x03CC33B0, CommandHistory); +DO_TYPEDEF(0x03CCB5E8, Dictionary_2_System_Int32_Photon_Bolt_Collections_BoltDoubleList_1_); +DO_TYPEDEF(0x03CCB5C0, BoltDoubleList_1_Photon_Bolt_Channel_CommandHistory_CommandRecord_); +DO_TYPEDEF(0x03CCB5B8, CommandHistory_CommandRecord); +DO_TYPEDEF(0x03CCB578, ObjectPool_1_Photon_Bolt_Channel_CommandHistory_CommandRecord_); +DO_TYPEDEF(0x03D11A28, Dictionary_2_System_Int32_System_Int32_); +DO_TYPEDEF(0x03CC33B8, BoltRingBuffer_1_System_Int32_); +DO_TYPEDEF(0x03CC6108, DissonanceToClient); +DO_TYPEDEF(0x03CC60C8, DissonanceToServer); +DO_TYPEDEF(0x03CF62E8, AudioClipSet); +DO_TYPEDEF(0x03CF3D80, AudioClip__Array); +DO_TYPEDEF(0x03D11C80, List_1_UnityEngine_GameObject_); +DO_TYPEDEF(0x03D0C200, IEnumerator_1_UnityEngine_GameObject_); +DO_TYPEDEF(0x03D1D778, Material__Array); +DO_TYPEDEF(0x03D11D88, AINearbyPerks_c_DisplayClass12_0); +DO_TYPEDEF(0x03D11D20, AIObjectPool); +DO_TYPEDEF(0x03D11A40, Dictionary_2_System_Int32_Stack_1_UnityEngine_GameObject_); +DO_TYPEDEF(0x03D11AD8, Stack_1_UnityEngine_GameObject_); +DO_TYPEDEF(0x03D11A38, Dictionary_2_System_Type_System_Object_); +DO_TYPEDEF(0x03CBFA18, Action_1); +DO_TYPEDEF(0x03CE5000, SharedFloat); +DO_TYPEDEF(0x03CE5030, SharedBool); +DO_TYPEDEF(0x03CFD678, Action_1_Boolean_); +DO_TYPEDEF(0x03CE38A8, IAstarAI); +DO_TYPEDEF(0x03D1C0C0, State); +DO_TYPEDEF(0x03D1BFA0, StateBehavior); +DO_TYPEDEF(0x03CF0D38, RaycastHit); +DO_TYPEDEF(0x03CF0D58, Ray); +DO_TYPEDEF(0x03D009C0, Serialization); +DO_TYPEDEF(0x03D1BF98, StateObject); +DO_TYPEDEF(0x03D16D58, MovementType); +DO_TYPEDEF(0x03D178E0, Ability); +DO_TYPEDEF(0x03D177B0, ItemAbility); +DO_TYPEDEF(0x03CD6F78, Effect); +DO_TYPEDEF(0x03D1C138, UltimateCharacterLocomotion); +DO_TYPEDEF(0x03D1C198, Preset_BaseDelegate); +DO_TYPEDEF(0x03D1C1A0, Preset_BaseDelegate__Array); +DO_TYPEDEF(0x03D1BEE8, IStateOwner); +DO_TYPEDEF(0x03D1C200, State__Array); +DO_TYPEDEF(0x03D242F0, Transform__Array); DO_TYPEDEF(0x03C8FDD0, Rigidbody); +DO_TYPEDEF(0x03CD7000, ChildAnimatorMonitor); +DO_TYPEDEF(0x03D212C8, ItemAction); +DO_TYPEDEF(0x03CD5B78, AnimatorMonitor); +DO_TYPEDEF(0x03D146F0, ItemType); +DO_TYPEDEF(0x03D23EA0, IItemCategoryIdentifier); +DO_TYPEDEF(0x03D16548, IItemIdentifier); +DO_TYPEDEF(0x03D22878, AnimationEventTrigger); +DO_TYPEDEF(0x03D216E0, AnimatorAudioStateSet_AnimatorAudioState); +DO_TYPEDEF(0x03D216A8, AnimatorAudioStateSet); +DO_TYPEDEF(0x03CC0950, Dictionary_2_System_Type_System_Reflection_FieldInfo_); +DO_TYPEDEF(0x03D129C0, Dictionary_2_System_Type_System_Reflection_FieldInfo___Array); +DO_TYPEDEF(0x03D12890, Dictionary_2_System_Type_System_Reflection_PropertyInfo_); +DO_TYPEDEF(0x03D128D0, Dictionary_2_System_Type_System_Reflection_PropertyInfo___Array); +DO_TYPEDEF(0x03D216E8, AnimatorAudioStateSet_AnimatorAudioState__Array); +DO_TYPEDEF(0x03D21700, AnimatorAudioStateSelector); +DO_TYPEDEF(0x03CDBEC0, Sprite); +DO_TYPEDEF(0x03CB73E8, UnityEvent); +DO_TYPEDEF(0x03D11ED8, InvokableCallList); +DO_TYPEDEF(0x03D11F98, BaseInvokableCall); +DO_TYPEDEF(0x03D11EB8, List_1_UnityEngine_Events_BaseInvokableCall_); +DO_TYPEDEF(0x03CB67F8, InvokableCall); +DO_TYPEDEF(0x03D17980, UnityAction); +DO_TYPEDEF(0x03D11D48, PersistentCallGroup); +DO_TYPEDEF(0x03D11FD0, List_1_UnityEngine_Events_PersistentCall_); +DO_TYPEDEF(0x03D11FE8, ArgumentCache); +DO_TYPEDEF(0x03D23ED0, List_1_Opsive_UltimateCharacterController_Items_Item_); +DO_TYPEDEF(0x03D23ED8, List_1_Opsive_Shared_Inventory_IItemIdentifier_); +DO_TYPEDEF(0x03D13D18, IItemIdentifier__Array); +DO_TYPEDEF(0x03D23FF0, Dictionary_2_Opsive_Shared_Inventory_IItemIdentifier_Opsive_UltimateCharacterController_Items_Item_); +DO_TYPEDEF(0x03D16AF8, ItemDefinitionAmount__Array); +DO_TYPEDEF(0x03D24000, Dictionary_2_Opsive_Shared_Inventory_IItemIdentifier_Opsive_UltimateCharacterController_Items_Item___Array); +DO_TYPEDEF(0x03D23F98, Dictionary_2_Opsive_Shared_Inventory_IItemIdentifier_System_Int32_); DO_TYPEDEF(0x03C8FE90, HumanBodyBones__Enum); +DO_TYPEDEF(0x03CD5928, CharacterIKBase_IKGoal__Enum); +DO_TYPEDEF(0x03D255E0, Spring); +DO_TYPEDEF(0x03D130B8, ILookSource); +DO_TYPEDEF(0x03CF1CF8, SpeedChange); +DO_TYPEDEF(0x03D21698, AttributeModifier); +DO_TYPEDEF(0x03D1D298, Attribute_1); +DO_TYPEDEF(0x03D23EB8, ItemDefinitionBase__Array); +DO_TYPEDEF(0x03D16890, ViewType); +DO_TYPEDEF(0x03D1C148, CameraController); +DO_TYPEDEF(0x03D16978, FirstPerson); +DO_TYPEDEF(0x03D16898, ViewType__Array); +DO_TYPEDEF(0x03D168B0, Transition); +DO_TYPEDEF(0x03CD6CC8, AbilityStarter); +DO_TYPEDEF(0x03CFD9B0, Vector2__Array); +DO_TYPEDEF(0x03D226C0, Dictionary_2_System_String_System_Single_); +DO_TYPEDEF(0x03D21790, ChildAnimatorMonitor__Array); +DO_TYPEDEF(0x03D21768, Dictionary_2_System_Int32_Opsive_UltimateCharacterController_Items_Actions_ItemAction_); +DO_TYPEDEF(0x03D216C8, IVRHandHandler); +DO_TYPEDEF(0x03D14168, Item__Array); +DO_TYPEDEF(0x03D15748, RaycastHit__Array); +DO_TYPEDEF(0x03D16730, UnityEngineUtility_RaycastHitComparer); +DO_TYPEDEF(0x03CD5788, Dictionary_2_UnityEngine_RaycastHit_System_Int32_); +DO_TYPEDEF(0x03D19640, Combat_1); +DO_TYPEDEF(0x03CD6FA8, MovementType__Array); +DO_TYPEDEF(0x03D178E8, Ability__Array); +DO_TYPEDEF(0x03D19050, MoveTowards); +DO_TYPEDEF(0x03CED128, SpeedChange__Array); +DO_TYPEDEF(0x03CD8FF0, EquipUnequip); +DO_TYPEDEF(0x03CD6F88, ItemEquipVerifier); +DO_TYPEDEF(0x03D23E70, CategoryItemSet); +DO_TYPEDEF(0x03D16AF0, ItemSet); +DO_TYPEDEF(0x03D23EF0, List_1_Opsive_UltimateCharacterController_Inventory_ItemSet_); +DO_TYPEDEF(0x03D23E78, CategoryItemSet__Array); +DO_TYPEDEF(0x03D23DD0, HashSet_1_Opsive_Shared_Inventory_IItemIdentifier_); +DO_TYPEDEF(0x03D23E50, Dictionary_2_Opsive_Shared_Inventory_IItemCategoryIdentifier_System_Int32_); +DO_TYPEDEF(0x03D23E90, IReadOnlyList_1_Opsive_Shared_Inventory_IItemCategoryIdentifier_); +DO_TYPEDEF(0x03D23E00, Category__Array); +DO_TYPEDEF(0x03CDA988, EquipUnequip_EquipUnequipAction__Enum__Array); +DO_TYPEDEF(0x03D126B0, ScheduledEventBase__Array); +DO_TYPEDEF(0x03CD8E60, HashSet_1_Opsive_UltimateCharacterController_Character_Abilities_Items_ItemAbility_); +DO_TYPEDEF(0x03D177C0, ItemAbility__Array); +DO_TYPEDEF(0x03CD6EE8, Effect__Array); +DO_TYPEDEF(0x03CE4E50, SharedWaypointList); +DO_TYPEDEF(0x03CED0E0, List_1_Waypoint_); +DO_TYPEDEF(0x03CE4E60, SharedPatrolRoute); +DO_TYPEDEF(0x03CFB728, AIBase); +DO_TYPEDEF(0x03CEFAB0, RichAI); +DO_TYPEDEF(0x03CFB228, StartEndModifier); +DO_TYPEDEF(0x03CFB9C0, PathState__Enum); +DO_TYPEDEF(0x03CB70C0, Int3); +DO_TYPEDEF(0x03CB6B98, Path_1); +DO_TYPEDEF(0x03CB6A10, PathNode); +DO_TYPEDEF(0x03CB6E70, PathHandler); +DO_TYPEDEF(0x03CB6A20, BinaryHeap); +DO_TYPEDEF(0x03CB6C00, Connection); +DO_TYPEDEF(0x03CB7040, PointNode); +DO_TYPEDEF(0x03CB7B30, Connection__Array); +DO_TYPEDEF(0x03CFBC10, Action_1_Pathfinding_GraphNode_); +DO_TYPEDEF(0x03CFFA48, List_1_UnityEngine_Vector3_); +DO_TYPEDEF(0x03D0C288, IEnumerator_1_UnityEngine_Vector3_); +DO_TYPEDEF(0x03CBC028, GraphSerializationContext); +DO_TYPEDEF(0x03CB7158, GraphNode__Array); +DO_TYPEDEF(0x03CBC0B0, GraphMeta); +DO_TYPEDEF(0x03CB5800, BinaryHeap_Tuple__Array); +DO_TYPEDEF(0x03CB6A18, PathNode__Array); +DO_TYPEDEF(0x03CD74C8, OnPathDelegate); +DO_TYPEDEF(0x03CB6B80, ITraversalProvider); +DO_TYPEDEF(0x03CB95D0, List_1_Pathfinding_GraphNode_); +DO_TYPEDEF(0x03CB5D48, NNConstraint); +DO_TYPEDEF(0x03CB5BC8, Guid_1); +DO_TYPEDEF(0x03CB5B70, NavGraph); +DO_TYPEDEF(0x03D16EF0, AstarPath); +DO_TYPEDEF(0x03CB4480, AstarData); +DO_TYPEDEF(0x03CFB400, MeshNode); +DO_TYPEDEF(0x03CFB4C8, TriangleMeshNode); +DO_TYPEDEF(0x03CB8250, NavmeshTile); +DO_TYPEDEF(0x03CFB530, NavmeshBase); +DO_TYPEDEF(0x03CB5C20, NavMeshGraph); +DO_TYPEDEF(0x03CB5A48, Int3__Array); +DO_TYPEDEF(0x03CB7910, INavmeshHolder); +DO_TYPEDEF(0x03CB7948, INavmeshHolder__Array); +DO_TYPEDEF(0x03CB5CC0, IntRect); +DO_TYPEDEF(0x03CB94E8, BBTree); +DO_TYPEDEF(0x03CFB798, GraphTransform); +DO_TYPEDEF(0x03CB7CF0, NavmeshTile__Array); +DO_TYPEDEF(0x03CB7E88, NavmeshUpdates_NavmeshUpdateSettings); +DO_TYPEDEF(0x03CBBBF0, TileHandler_TileType); +DO_TYPEDEF(0x03CBA448, TileHandler); +DO_TYPEDEF(0x03CBBC28, Clipper); +DO_TYPEDEF(0x03CDC268, LocalMinima); +DO_TYPEDEF(0x03CDC320, IntPoint); +DO_TYPEDEF(0x03CDC288, TEdge); +DO_TYPEDEF(0x03CDC280, List_1_Pathfinding_ClipperLib_TEdge_); +DO_TYPEDEF(0x03CDC390, List_1_List_1_Pathfinding_ClipperLib_TEdge_); +DO_TYPEDEF(0x03CDC200, OutRec); +DO_TYPEDEF(0x03CDC248, List_1_Pathfinding_ClipperLib_OutRec_); +DO_TYPEDEF(0x03CDC1C8, OutPt); +DO_TYPEDEF(0x03CDC068, PolyNode); +DO_TYPEDEF(0x03CDC3A0, List_1_Pathfinding_ClipperLib_IntPoint_); +DO_TYPEDEF(0x03CDC3C0, List_1_Pathfinding_ClipperLib_PolyNode_); +DO_TYPEDEF(0x03CDC308, Scanbeam); +DO_TYPEDEF(0x03CDC0E8, IntersectNode); +DO_TYPEDEF(0x03CDC138, Join); +DO_TYPEDEF(0x03CDC318, List_1_Pathfinding_ClipperLib_Join_); +DO_TYPEDEF(0x03CB70B8, Int2); +DO_TYPEDEF(0x03CBA518, Dictionary_2_Pathfinding_Int2_System_Int32_); +DO_TYPEDEF(0x03CBBC00, TileHandler_TileType__Array); +DO_TYPEDEF(0x03CBBC08, GridLookup_1_Pathfinding_NavmeshClipper_); +DO_TYPEDEF(0x03CBA638, NavmeshClipper); +DO_TYPEDEF(0x03CBA630, Action_1_Pathfinding_NavmeshClipper_); +DO_TYPEDEF(0x03CBA5D0, List_1_Pathfinding_NavmeshClipper_); +DO_TYPEDEF(0x03CBA640, NavmeshAdd); +DO_TYPEDEF(0x03CBF180, Rect); +DO_TYPEDEF(0x03CBA468, List_1_Pathfinding_IntRect_); +DO_TYPEDEF(0x03CB7E98, List_1_Pathfinding_MeshNode_); +DO_TYPEDEF(0x03CFBA40, IEnumerable_1_Pathfinding_Progress_); +DO_TYPEDEF(0x03CB43F8, RetainedGizmos); +DO_TYPEDEF(0x03CBC8C0, List_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_); +DO_TYPEDEF(0x03CBC8E0, HashSet_1_System_UInt64_); +DO_TYPEDEF(0x03CBC8C8, Stack_1_UnityEngine_Mesh_); +DO_TYPEDEF(0x03CFD9C0, Mesh__Array); +DO_TYPEDEF(0x03D12910, Bounds); +DO_TYPEDEF(0x03D1FE80, GraphUpdateObject); +DO_TYPEDEF(0x03CD62E0, List_1_System_UInt32_); +DO_TYPEDEF(0x03CF63A0, GraphUpdateShape); +DO_TYPEDEF(0x03CB6800, GridNodeBase); +DO_TYPEDEF(0x03CB5D20, GridNode); +DO_TYPEDEF(0x03CB5C40, GridGraph); +DO_TYPEDEF(0x03CB68D0, GraphCollision); +DO_TYPEDEF(0x03CB68C8, GridGraph_TextureData); +DO_TYPEDEF(0x03CB84F8, GridGraph_TextureData_ChannelUse__Enum__Array); +DO_TYPEDEF(0x03D124C8, Color32__Array); +DO_TYPEDEF(0x03CB8438, LevelGridNode); +DO_TYPEDEF(0x03CB5C50, LayerGridGraph); +DO_TYPEDEF(0x03CB83A0, LevelGridNode__Array); +DO_TYPEDEF(0x03CB8360, LayerGridGraph_HitComparer); +DO_TYPEDEF(0x03CB83C8, LayerGridGraph_HeightSample__Array); +DO_TYPEDEF(0x03CB8310, LayerGridGraph__Array); +DO_TYPEDEF(0x03CB7A38, GridGraph__Array); +DO_TYPEDEF(0x03CB6770, GridNode__Array); +DO_TYPEDEF(0x03CB5C30, PointGraph); +DO_TYPEDEF(0x03CB9638, PointKDTree); +DO_TYPEDEF(0x03CB9240, PointKDTree_Node__Array); +DO_TYPEDEF(0x03CB9228, Stack_1_Pathfinding_GraphNode_); +DO_TYPEDEF(0x03CB91E0, IComparer_1_Pathfinding_GraphNode___Array); +DO_TYPEDEF(0x03CB9630, PointNode__Array); +DO_TYPEDEF(0x03CB5C10, RecastGraph); +DO_TYPEDEF(0x03CB9598, Voxelize); +DO_TYPEDEF(0x03CBC198, RasterizationMesh); +DO_TYPEDEF(0x03CFF458, MeshFilter); +DO_TYPEDEF(0x03CBA810, VoxelArea); +DO_TYPEDEF(0x03CBA940, VoxelSpan); +DO_TYPEDEF(0x03CBA968, VoxelCell__Array); +DO_TYPEDEF(0x03CBA7F0, CompactVoxelSpan__Array); +DO_TYPEDEF(0x03CBA978, CompactVoxelCell__Array); +DO_TYPEDEF(0x03CB94F0, VoxelContourSet); +DO_TYPEDEF(0x03CBA8B8, List_1_Pathfinding_Voxels_VoxelContour_); +DO_TYPEDEF(0x03CB9498, List_1_Pathfinding_NavmeshTile_); +DO_TYPEDEF(0x03CFBAF8, NavGraph__Array); +DO_TYPEDEF(0x03D03038, TextAsset); +DO_TYPEDEF(0x03CE5320, List_1_System_Boolean_); +DO_TYPEDEF(0x03CFBAB0, AstarColor); +DO_TYPEDEF(0x03CFD9D0, Color__Array); +DO_TYPEDEF(0x03CB4458, GraphUpdateProcessor); +DO_TYPEDEF(0x03D0C568, Sampler); +DO_TYPEDEF(0x03CB5710, CustomSampler); +DO_TYPEDEF(0x03CB5750, Queue_1_Pathfinding_GraphUpdateObject_); +DO_TYPEDEF(0x03CB5650, GraphUpdateProcessor_GraphUpdateOrder__Enum); +DO_TYPEDEF(0x03CB5758, Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle_); +DO_TYPEDEF(0x03CB5AD0, IUpdatableGraph); +DO_TYPEDEF(0x03CB4420, HierarchicalGraph); +DO_TYPEDEF(0x03CB7130, List_1_Pathfinding_GraphNode___Array); +DO_TYPEDEF(0x03CB7148, List_1_System_Int32___Array); +DO_TYPEDEF(0x03CB7128, Queue_1_Pathfinding_GraphNode_); +DO_TYPEDEF(0x03CE4AB0, Stack_1_System_Int32_); +DO_TYPEDEF(0x03CB4410, NavmeshUpdates); +DO_TYPEDEF(0x03CB43F0, WorkItemProcessor); +DO_TYPEDEF(0x03CB6CA8, WorkItemProcessor_IndexedQueue_1_AstarWorkItem_); +DO_TYPEDEF(0x03CB6CF0, Action_1_Pathfinding_IWorkItemContext_); +DO_TYPEDEF(0x03CBB820, IWorkItemContext); +DO_TYPEDEF(0x03CB5730, Func_2_Boolean_Boolean_); +DO_TYPEDEF(0x03CB6D10, Func_3_Pathfinding_IWorkItemContext_Boolean_Boolean_); +DO_TYPEDEF(0x03CB4438, PathProcessor); +DO_TYPEDEF(0x03CFBB30, Action_1_Pathfinding_Path_); +DO_TYPEDEF(0x03CB6E58, ThreadControlQueue); +DO_TYPEDEF(0x03CB4428, PathReturnQueue); +DO_TYPEDEF(0x03CB6DA8, Queue_1_Pathfinding_Path_); +DO_TYPEDEF(0x03CB6E78, PathHandler__Array); +DO_TYPEDEF(0x03CB9360, HeuristicOptimizationMode__Enum); +DO_TYPEDEF(0x03CB4468, EuclideanEmbedding); +DO_TYPEDEF(0x03CEE568, ABPath); +DO_TYPEDEF(0x03CFB6C0, Func_1_UnityEngine_Vector3_); +DO_TYPEDEF(0x03CFB1C8, IPathModifier); +DO_TYPEDEF(0x03CFB258, List_1_Pathfinding_IPathModifier_); +DO_TYPEDEF(0x03D19CF8, Rigidbody2D); +DO_TYPEDEF(0x03CBC6D8, IAgent); +DO_TYPEDEF(0x03CBC7F8, Simulator_Worker); +DO_TYPEDEF(0x03CBC600, Simulator); +DO_TYPEDEF(0x03CBC7E8, Simulator_WorkerContext); +DO_TYPEDEF(0x03CBC700, Agent_VOBuffer); +DO_TYPEDEF(0x03CBC5E0, Agent_VO__Array); +DO_TYPEDEF(0x03CBC800, Simulator_Worker__Array); +DO_TYPEDEF(0x03CBC7D0, Agent); +DO_TYPEDEF(0x03CBC820, List_1_Pathfinding_RVO_Sampled_Agent_); +DO_TYPEDEF(0x03CE36B0, List_1_System_Single_); +DO_TYPEDEF(0x03CBC748, ObstacleVertex); +DO_TYPEDEF(0x03CBC818, List_1_Pathfinding_RVO_ObstacleVertex_); +DO_TYPEDEF(0x03CBC7F0, RVOQuadtree); +DO_TYPEDEF(0x03CBC6E8, RVOQuadtree_Node__Array); +DO_TYPEDEF(0x03CED0B0, IMovementPlane); +DO_TYPEDEF(0x03D13118, StrafeRichAI); +DO_TYPEDEF(0x03CEFB78, RichFunnel); +DO_TYPEDEF(0x03CFB478, List_1_Pathfinding_TriangleMeshNode_); +DO_TYPEDEF(0x03CFB588, RichPath); +DO_TYPEDEF(0x03CFB560, List_1_Pathfinding_RichPathPart_); +DO_TYPEDEF(0x03CFB370, ITransform); +DO_TYPEDEF(0x03CFB268, Queue_1_Pathfinding_TriangleMeshNode_); +DO_TYPEDEF(0x03CFB270, Dictionary_2_Pathfinding_TriangleMeshNode_Pathfinding_TriangleMeshNode_); +DO_TYPEDEF(0x03CEFB88, RichSpecial); +DO_TYPEDEF(0x03CF7DE8, GraphModifier); +DO_TYPEDEF(0x03CFB508, NodeLink2); +DO_TYPEDEF(0x03CB5778, Dictionary_2_System_UInt64_Pathfinding_GraphModifier_); +DO_TYPEDEF(0x03CB57A8, GraphModifier__Array); +DO_TYPEDEF(0x03CB7000, Dictionary_2_Pathfinding_GraphNode_Pathfinding_NodeLink2_); +DO_TYPEDEF(0x03D13200, Func_2_Pathfinding_RichSpecial_System_Collections_IEnumerator_); +DO_TYPEDEF(0x03CF63A8, BoxCollider); +DO_TYPEDEF(0x03D12D10, Survival_AI__Enum); +DO_TYPEDEF(0x03CBE860, Outline); +DO_TYPEDEF(0x03CBE978, HashSet_1_UnityEngine_Mesh_); +DO_TYPEDEF(0x03CBC838, List_1_UnityEngine_Mesh_); +DO_TYPEDEF(0x03CBE970, Outline_ListVector3); +DO_TYPEDEF(0x03CBE8E0, List_1_Outline_ListVector3_); +DO_TYPEDEF(0x03CC37F8, GlobalEventListenerBase); +DO_TYPEDEF(0x03CFF448, SkinnedMeshRenderer); +DO_TYPEDEF(0x03D1B7E8, DevourGameMode__Enum); +DO_TYPEDEF(0x03CC9980, BoltDoubleList_1_Photon_Bolt_Internal_GlobalEventListenerBase_); +DO_TYPEDEF(0x03CC99C8, IEnumerator_1_Photon_Bolt_Internal_GlobalEventListenerBase_); +DO_TYPEDEF(0x03CC9DD0, AddCallback); +DO_TYPEDEF(0x03CB8708, UdpStreamData); +DO_TYPEDEF(0x03CC62E8, InteractTriggerEvent); +DO_TYPEDEF(0x03CC6298, InteractObjectRequestEvent); +DO_TYPEDEF(0x03CC6248, InteractPlopEvent); +DO_TYPEDEF(0x03CC6200, InteractObjectResponseEvent); +DO_TYPEDEF(0x03CC61A8, KnockoutBoxEvent); +DO_TYPEDEF(0x03CC6158, HostStartedGameEvent); +DO_TYPEDEF(0x03CC6078, KnockoutEvent); +DO_TYPEDEF(0x03CC6028, ReviveEvent); +DO_TYPEDEF(0x03CC5FE8, SurvivalChangePlayerEvent); +DO_TYPEDEF(0x03CC5F88, PlayerPickedUpEvent); +DO_TYPEDEF(0x03CC5F38, KnockoutGrabRagdollEvent); +DO_TYPEDEF(0x03CC5EF8, DropObjectEvent); +DO_TYPEDEF(0x03CC5EA8, LobbyReadyEvent); +DO_TYPEDEF(0x03CC5E58, CreatePortalEvent); +DO_TYPEDEF(0x03CC5E08, EndingEvent); +DO_TYPEDEF(0x03CC5DB8, UseBatteryEvent); +DO_TYPEDEF(0x03CC5D78, SystemChatMessageEvent); +DO_TYPEDEF(0x03CC5D28, VoteRequestEvent); +DO_TYPEDEF(0x03CC5CE8, VoteEvent); +DO_TYPEDEF(0x03CC6B38, RangedAttackEvent); +DO_TYPEDEF(0x03CC6AE8, VoteCompletedEvent); +DO_TYPEDEF(0x03CC6A98, PlaceObjectEvent); +DO_TYPEDEF(0x03D1B170, Dictionary_2_UnityEngine_GameObject_NolanPerkController_); +DO_TYPEDEF(0x03CDF940, Graphic); +DO_TYPEDEF(0x03CEDF50, MaskableGraphic); +DO_TYPEDEF(0x03CB73A0, Image); +DO_TYPEDEF(0x03D23210, AsyncOperationHandle_1_UnityEngine_Material_); +DO_TYPEDEF(0x03D232F8, ColorBlock); DO_TYPEDEF(0x03CA3738, Selectable); +DO_TYPEDEF(0x03CF11A8, Selectable__Array); +DO_TYPEDEF(0x03CB73F8, AnimationTriggers); +DO_TYPEDEF(0x03CE1228, RectTransform); +DO_TYPEDEF(0x03D0C8F8, RectTransform_ReapplyDrivenProperties); +DO_TYPEDEF(0x03D23638, Canvas); +DO_TYPEDEF(0x03CBAD60, Canvas_WillRenderCanvases); +DO_TYPEDEF(0x03D1B850, Action_1_Int32_); +DO_TYPEDEF(0x03D23F20, Action_2_Int32_Int32_); DO_TYPEDEF(0x03CA25E8, VertexHelper); +DO_TYPEDEF(0x03CBC840, List_1_UnityEngine_Color32_); +DO_TYPEDEF(0x03CFFA08, List_1_UnityEngine_Vector4_); +DO_TYPEDEF(0x03D003E0, Vector4__Array); +DO_TYPEDEF(0x03D0C270, IEnumerator_1_UnityEngine_Vector4_); +DO_TYPEDEF(0x03D23688, TweenRunner_1_ColorTween_); DO_TYPEDEF(0x03CA2600, UIVertex); +DO_TYPEDEF(0x03CBAD18, List_1_UnityEngine_UIVertex_); DO_TYPEDEF(0x03CA25F8, UIVertex__Array); +DO_TYPEDEF(0x03D23640, CanvasGroup); +DO_TYPEDEF(0x03CB7400, List_1_UnityEngine_CanvasGroup_); +DO_TYPEDEF(0x03CF3118, BaseEventData); +DO_TYPEDEF(0x03CCF658, MoveDirection__Enum); +DO_TYPEDEF(0x03CF2E50, AxisEventData); +DO_TYPEDEF(0x03D1DC08, EventSystem); +DO_TYPEDEF(0x03CF30C8, List_1_UnityEngine_EventSystems_BaseInputModule_); +DO_TYPEDEF(0x03CCF310, List_1_UnityEngine_EventSystems_RaycastResult_); +DO_TYPEDEF(0x03CCF640, TrackedDeviceRaycaster); +DO_TYPEDEF(0x03CCF408, List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_); +DO_TYPEDEF(0x03CCF6C0, PointerEventData_InputButton__Enum); +DO_TYPEDEF(0x03CB74A0, PointerEventData); +DO_TYPEDEF(0x03CDF338, IMouseInputSource); +DO_TYPEDEF(0x03CDEFD8, List_1_Rewired_UI_IMouseInputSource_); +DO_TYPEDEF(0x03CDF208, Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData_); +DO_TYPEDEF(0x03CDEFF8, Dictionary_2_System_Int32_Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData_); +DO_TYPEDEF(0x03CDF3B0, PointerEventType__Enum); +DO_TYPEDEF(0x03CDF1F8, PlayerPointerEventData); +DO_TYPEDEF(0x03CE1E18, ITouchInputSource); +DO_TYPEDEF(0x03CDF238, Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData___Array); +DO_TYPEDEF(0x03CDF348, RewiredPointerInputModule_UnityInputSource); +DO_TYPEDEF(0x03CDEFA8, RewiredPointerInputModule_MouseState); +DO_TYPEDEF(0x03CDEF50, RewiredPointerInputModule_ButtonState); +DO_TYPEDEF(0x03CDEF10, List_1_Rewired_Integration_UnityUI_RewiredPointerInputModule_ButtonState_); +DO_TYPEDEF(0x03CDEF30, RewiredPointerInputModule_MouseButtonEventData); +DO_TYPEDEF(0x03CBCCD0, EditorPlatform__Enum); +DO_TYPEDEF(0x03CEEAF0, Platform__Enum); +DO_TYPEDEF(0x03CEE7D8, WebplayerPlatform__Enum); +DO_TYPEDEF(0x03CF70C0, UserData); +DO_TYPEDEF(0x03CF2640, WindowsStandalonePrimaryInputSource__Enum); +DO_TYPEDEF(0x03CF2678, OSXStandalonePrimaryInputSource__Enum); +DO_TYPEDEF(0x03CF2670, LinuxStandalonePrimaryInputSource__Enum); +DO_TYPEDEF(0x03CF2648, WindowsUWPPrimaryInputSource__Enum); +DO_TYPEDEF(0x03CF2630, XboxOnePrimaryInputSource__Enum); +DO_TYPEDEF(0x03CF2688, GameCoreXboxOnePrimaryInputSource__Enum); +DO_TYPEDEF(0x03CF2680, GameCoreScarlettPrimaryInputSource__Enum); +DO_TYPEDEF(0x03CF2660, PS4PrimaryInputSource__Enum); +DO_TYPEDEF(0x03CF2668, PS5PrimaryInputSource__Enum); +DO_TYPEDEF(0x03CF2658, WebGLPrimaryInputSource__Enum); +DO_TYPEDEF(0x03CF2650, StadiaPrimaryInputSource__Enum); +DO_TYPEDEF(0x03CC2068, AxisSensitivityType__Enum); +DO_TYPEDEF(0x03CF4940, ConfigVars); +DO_TYPEDEF(0x03CF26A0, ConfigVars_PlatformVars); +DO_TYPEDEF(0x03CF25C8, ConfigVars_PlatformVars_WindowsStandalone); +DO_TYPEDEF(0x03CF2610, ConfigVars_PlatformVars_OSXStandalone); +DO_TYPEDEF(0x03CCD6E8, ConfigVars_PlatformVars_WindowsUWP); +DO_TYPEDEF(0x03CF2600, ConfigVars_PlatformVars_PS5); +DO_TYPEDEF(0x03CF2608, ConfigVars_PlatformVars_GameCoreXboxOne); +DO_TYPEDEF(0x03CF2618, ConfigVars_PlatformVars_GameCoreScarlett); +DO_TYPEDEF(0x03CF25D0, ConfigVars_PlatformVars_Stadia); +DO_TYPEDEF(0x03CF2840, Dictionary_2_System_Int32_Rewired_Data_ConfigVars_azUEuvNbipTVExojWRFquaZJFmGY_); +DO_TYPEDEF(0x03CF26E0, ConfigVars_azUEuvNbipTVExojWRFquaZJFmGY); +DO_TYPEDEF(0x03CF2828, Func_1_Rewired_Data_ConfigVars_PlatformVars_); +DO_TYPEDEF(0x03CF2760, Dictionary_2_System_Int32_Rewired_Data_ConfigVars_hqPFCXOAONldUTOJGhDJeyDIdhxHb_); +DO_TYPEDEF(0x03CF2758, ConfigVars_hqPFCXOAONldUTOJGhDJeyDIdhxHb); +DO_TYPEDEF(0x03CF2768, Func_2_Rewired_Platforms_Platform_Object_); +DO_TYPEDEF(0x03CF27B0, Action_2_Rewired_Platforms_Platform_Object_); +DO_TYPEDEF(0x03CF2538, KeyedGetSetValueStore_1_System_String_); +DO_TYPEDEF(0x03CF49F8, Player_Editor); +DO_TYPEDEF(0x03CF4900, List_1_Rewired_Data_Player_Editor_); +DO_TYPEDEF(0x03CF4A60, Player_Editor_Mapping); +DO_TYPEDEF(0x03CF4AA0, List_1_Rewired_Data_Player_Editor_Mapping_); +DO_TYPEDEF(0x03CF4A38, Player_Editor_CreateControllerInfo); +DO_TYPEDEF(0x03CF4A98, List_1_Rewired_Data_Player_Editor_CreateControllerInfo_); +DO_TYPEDEF(0x03CF4AC0, Player_Editor_ControllerMapLayoutManagerSettings); +DO_TYPEDEF(0x03CF4970, Player_Editor_RuleSetMapping); +DO_TYPEDEF(0x03CF4A48, List_1_Rewired_Data_Player_Editor_RuleSetMapping_); +DO_TYPEDEF(0x03CF4AB8, Player_Editor_ControllerMapEnablerSettings); +DO_TYPEDEF(0x03CF3EF8, InputAction); +DO_TYPEDEF(0x03CF4828, List_1_Rewired_InputAction_); +DO_TYPEDEF(0x03CD38D0, IEnumerator_1_Rewired_InputAction_); +DO_TYPEDEF(0x03CF4508, InputCategory); +DO_TYPEDEF(0x03CF48B8, List_1_Rewired_InputCategory_); +DO_TYPEDEF(0x03CD38A8, IEnumerator_1_Rewired_InputCategory_); +DO_TYPEDEF(0x03CF4938, ActionCategoryMap); +DO_TYPEDEF(0x03CF68A0, ActionCategoryMap_Entry); +DO_TYPEDEF(0x03CF6880, List_1_Rewired_Data_Mapping_ActionCategoryMap_Entry_); +DO_TYPEDEF(0x03CC1CB8, MouseXYAxisMode__Enum); +DO_TYPEDEF(0x03CC1CB0, MouseOtherAxisMode__Enum); +DO_TYPEDEF(0x03CC1CC0, MouseXYAxisDeltaCalc__Enum); +DO_TYPEDEF(0x03CF3EF0, InputBehavior); +DO_TYPEDEF(0x03CF48E8, List_1_Rewired_InputBehavior_); +DO_TYPEDEF(0x03CC6C10, InputBehavior__Array); +DO_TYPEDEF(0x03CF4140, InputMapCategory); +DO_TYPEDEF(0x03CF48D0, List_1_Rewired_InputMapCategory_); +DO_TYPEDEF(0x03CEA3D8, ReadOnlyCollection_1_System_Int32_); +DO_TYPEDEF(0x03CCCCA0, IList_1_System_Int32_); +DO_TYPEDEF(0x03CE1828, IEnumerator_1_Rewired_InputMapCategory_); +DO_TYPEDEF(0x03CF3F00, InputLayout); +DO_TYPEDEF(0x03CF4820, List_1_Rewired_InputLayout_); +DO_TYPEDEF(0x03CF4058, ControllerMap_Editor); +DO_TYPEDEF(0x03CF48E0, List_1_Rewired_Data_Mapping_ControllerMap_Editor_); +DO_TYPEDEF(0x03CB99D8, ControllerElementType__Enum); +DO_TYPEDEF(0x03CC1B30, AxisRange__Enum); +DO_TYPEDEF(0x03CC1A70, Pole__Enum); +DO_TYPEDEF(0x03CC1B88, KeyboardKeyCode__Enum); +DO_TYPEDEF(0x03CC1A58, ModifierKey__Enum); +DO_TYPEDEF(0x03CC4E90, ModifierKeyFlags__Enum); +DO_TYPEDEF(0x03CB61F0, ActionElementMap); +DO_TYPEDEF(0x03D1FE00, List_1_Rewired_ActionElementMap_); +DO_TYPEDEF(0x03CDA658, ControllerType__Enum); +DO_TYPEDEF(0x03CC5C78, ControllerMap); +DO_TYPEDEF(0x03CC5C68, AList_1_Rewired_ActionElementMap_); +DO_TYPEDEF(0x03CDF548, IEnumerator_1_Rewired_ActionElementMap_); +DO_TYPEDEF(0x03CC5C70, ReadOnlyCollection_1_Rewired_ActionElementMap_); +DO_TYPEDEF(0x03D03F98, IList_1_Rewired_ActionElementMap_); +DO_TYPEDEF(0x03CE37D0, KeyCode__Enum); +DO_TYPEDEF(0x03CC9220, IEnumerable_1_Rewired_ElementAssignmentConflictInfo_); +DO_TYPEDEF(0x03CEB820, IControllerElementTarget); +DO_TYPEDEF(0x03CC0608, SerializedObject_ObjectType__Enum); +DO_TYPEDEF(0x03D00908, SerializedObject); +DO_TYPEDEF(0x03CC0660, IndexedDictionary_2_System_String_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_); +DO_TYPEDEF(0x03CC0540, SerializedObject_FieldOptions__Enum); +DO_TYPEDEF(0x03CC05D8, SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo); +DO_TYPEDEF(0x03CC0460, IEnumerator_1_KeyValuePair_2_System_String_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_); +DO_TYPEDEF(0x03CBD2F8, SerializedObject_XmlInfo); +DO_TYPEDEF(0x03CC0518, List_1_Rewired_Utils_Classes_Data_SerializedObject_XmlInfo_cSbMSwulYDylVSNioizqhnQVHFieA_); +DO_TYPEDEF(0x03CBB460, Dictionary_2_System_Type_Dictionary_2_System_String_System_Reflection_FieldInfo_); +DO_TYPEDEF(0x03CC09E8, ICollection_1_System_Reflection_FieldInfo__1); +DO_TYPEDEF(0x03CBBA90, IEnumerable_1_System_Reflection_FieldInfo__1); +DO_TYPEDEF(0x03CBB450, Dictionary_2_System_Type_Dictionary_2_System_String_System_Reflection_PropertyInfo_); +DO_TYPEDEF(0x03CBBA30, IEnumerator_1_System_Reflection_PropertyInfo__1); +DO_TYPEDEF(0x03CBBA60, IEnumerable_1_System_Reflection_PropertyInfo__1); +DO_TYPEDEF(0x03CC0510, IEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_Field_); DO_TYPEDEF(0x03CA4E78, XmlRawWriter); +DO_TYPEDEF(0x03CB2518, XmlRawWriterBase64Encoder); DO_TYPEDEF(0x03CA4F80, IXmlNamespaceResolver); +DO_TYPEDEF(0x03CFE4D0, XmlCharType); DO_TYPEDEF(0x03CA4E80, XmlStandalone__Enum); +DO_TYPEDEF(0x03CFBDA0, XmlEncodedRawTextWriter); DO_TYPEDEF(0x03CA5078, HtmlEncodedRawTextWriter); DO_TYPEDEF(0x03CA4ED0, CharEntityEncoderFallback); DO_TYPEDEF(0x03CA5108, CharEntityEncoderFallbackBuffer); DO_TYPEDEF(0x03CA50C8, ByteStack); DO_TYPEDEF(0x03CA50D8, TernaryTreeReadOnly); +DO_TYPEDEF(0x03CBB340, Action_2_System_Text_StringBuilder_Object_); +DO_TYPEDEF(0x03CC5C30, ActionElementMap__Array); +DO_TYPEDEF(0x03CF4BE0, CustomController_Editor); +DO_TYPEDEF(0x03CF4838, List_1_Rewired_Data_CustomController_Editor_); +DO_TYPEDEF(0x03CE9EC8, ControllerElementIdentifier); +DO_TYPEDEF(0x03CE9D30, List_1_Rewired_ControllerElementIdentifier_); +DO_TYPEDEF(0x03CE9EF0, ControllerElementIdentifier__Array); +DO_TYPEDEF(0x03CB60F0, IEnumerator_1_Rewired_ControllerElementIdentifier_); +DO_TYPEDEF(0x03CF4B98, CustomController_Editor_Axis); +DO_TYPEDEF(0x03CF4BA0, List_1_Rewired_Data_CustomController_Editor_Axis_); +DO_TYPEDEF(0x03CF4B88, CustomController_Editor_Button); +DO_TYPEDEF(0x03CF4A78, HardwareAxisInfo); +DO_TYPEDEF(0x03CF4BB0, List_1_Rewired_Data_CustomController_Editor_Button_); +DO_TYPEDEF(0x03CF3EB8, ControllerMapLayoutManager_RuleSet_Editor); +DO_TYPEDEF(0x03CF48F8, List_1_Rewired_Data_ControllerMapLayoutManager_RuleSet_Editor_); +DO_TYPEDEF(0x03CF6918, ControllerMapLayoutManager_Rule_Editor); +DO_TYPEDEF(0x03CF6908, List_1_Rewired_Data_ControllerMapLayoutManager_Rule_Editor_); +DO_TYPEDEF(0x03CEB0F0, ControllerSetSelector_Type__Enum); +DO_TYPEDEF(0x03CF6998, ControllerSetSelector_Editor); +DO_TYPEDEF(0x03CF3EE8, ControllerMapEnabler_RuleSet_Editor); +DO_TYPEDEF(0x03CF48F0, List_1_Rewired_Data_ControllerMapEnabler_RuleSet_Editor_); +DO_TYPEDEF(0x03CF6970, ControllerMapEnabler_Rule_Editor); +DO_TYPEDEF(0x03CF6968, List_1_Rewired_Data_ControllerMapEnabler_Rule_Editor_); +DO_TYPEDEF(0x03CF6D70, IList_1_Rewired_Data_Player_Editor_); +DO_TYPEDEF(0x03CDF8B0, IList_1_Rewired_InputAction_); +DO_TYPEDEF(0x03CF6DB0, IList_1_Rewired_InputCategory_); +DO_TYPEDEF(0x03CDF7A8, IList_1_Rewired_InputBehavior_); +DO_TYPEDEF(0x03CDF7D8, IList_1_Rewired_InputMapCategory_); +DO_TYPEDEF(0x03CDF7D0, IList_1_Rewired_InputLayout_); +DO_TYPEDEF(0x03CF6B40, IList_1_Rewired_Data_Mapping_ControllerMap_Editor_); +DO_TYPEDEF(0x03CF6DC8, IList_1_Rewired_Data_ControllerMapLayoutManager_RuleSet_Editor_); +DO_TYPEDEF(0x03CF6D80, IList_1_Rewired_Data_ControllerMapEnabler_RuleSet_Editor_); +DO_TYPEDEF(0x03CE1290, Func_2_Int32_Boolean_); +DO_TYPEDEF(0x03CB6260, JoystickType__Enum); +DO_TYPEDEF(0x03CF6728, HardwareJoystickMap_CompoundElement); +DO_TYPEDEF(0x03CF6710, HardwareJoystickMap); +DO_TYPEDEF(0x03CEBB30, ControllerTemplateElementType__Enum); +DO_TYPEDEF(0x03CC4D20, ControllerTemplateElementIdentifier); +DO_TYPEDEF(0x03CF69B8, ControllerTemplateElementIdentifier_Editor); +DO_TYPEDEF(0x03CEC0B0, JoystickType__Enum__Array); +DO_TYPEDEF(0x03CF6720, HardwareJoystickMap_CompoundElement__Array); +DO_TYPEDEF(0x03CF9680, HardwareJoystickMap_Platform_RawOrDirectInput); +DO_TYPEDEF(0x03CF94B0, HardwareJoystickMap_Platform_DirectInput_Base); +DO_TYPEDEF(0x03CF67D8, HardwareJoystickMap_Platform_DirectInput); +DO_TYPEDEF(0x03CF9500, HardwareJoystickMap_Platform_RawOrDirectInput_CustomCalculationSourceData); +DO_TYPEDEF(0x03CF95E0, AlternateAxisCalibrationType__Enum); +DO_TYPEDEF(0x03CF96B8, HardwareJoystickMap_AxisCalibrationInfoEntry); +DO_TYPEDEF(0x03CF9550, HardwareJoystickMap_Platform_DirectInput_Base_Axis); +DO_TYPEDEF(0x03CF9558, HardwareJoystickMap_Platform_DirectInput_Base_Button); +DO_TYPEDEF(0x03CF9440, HardwareJoystickMap_Platform_DirectInput_Base_Elements); +DO_TYPEDEF(0x03CBB240, List_1_Rewired_Utils_Classes_Data_TypeWrapper_); +DO_TYPEDEF(0x03CE9938, HardwareButtonInfo); +DO_TYPEDEF(0x03CF95E8, AxisCalibrationInfo); +DO_TYPEDEF(0x03CF9548, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_RawOrDirectInput_Axis_Base_); +DO_TYPEDEF(0x03CF9540, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_RawOrDirectInput_Button_Base_); +DO_TYPEDEF(0x03CEEAE8, InputSource__Enum); +DO_TYPEDEF(0x03CEA760, PidVid); +DO_TYPEDEF(0x03CCFA90, XInputDeviceSubType__Enum); +DO_TYPEDEF(0x03CEEB60, BridgedControllerHWInfo); +DO_TYPEDEF(0x03CB27F0, IList_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_); +DO_TYPEDEF(0x03CF95C0, Dictionary_2_System_Int32_Rewired_Data_Mapping_AxisCalibrationInfo_); +DO_TYPEDEF(0x03CF4B28, AxisCalibrationData__Array); +DO_TYPEDEF(0x03CF4B18, AxisRange__Enum__Array); +DO_TYPEDEF(0x03CF4B20, HardwareAxisInfo__Array); +DO_TYPEDEF(0x03CF4A88, HardwareButtonInfo__Array); +DO_TYPEDEF(0x03CF96C8, HardwareJoystickMap_MatchingCriteria_Base_ElementCount_Base); +DO_TYPEDEF(0x03CF9620, HardwareJoystickMap_Platform_RawOrDirectInput_MatchingCriteria_ElementCount); +DO_TYPEDEF(0x03CF9640, HardwareJoystickMap_Platform_RawOrDirectInput_MatchingCriteria); +DO_TYPEDEF(0x03CF9310, HardwareJoystickMap_Platform_RawInput_Base); +DO_TYPEDEF(0x03CF6838, HardwareJoystickMap_Platform_RawInput); +DO_TYPEDEF(0x03CF9390, HardwareJoystickMap_Platform_RawInput_Base_Axis); +DO_TYPEDEF(0x03CF9398, HardwareJoystickMap_Platform_RawInput_Base_Button); +DO_TYPEDEF(0x03CF92C0, HardwareJoystickMap_Platform_RawInput_Base_Elements); +DO_TYPEDEF(0x03CF9188, HardwareJoystickMap_Platform_XInput_Base); +DO_TYPEDEF(0x03CF6800, HardwareJoystickMap_Platform_XInput); +DO_TYPEDEF(0x03CF9158, HardwareJoystickMap_Platform_XInput_Base_MatchingCriteria); +DO_TYPEDEF(0x03CF9008, HardwareJoystickMap_Platform_XInput_Base_Axis); +DO_TYPEDEF(0x03CF9020, HardwareJoystickMap_Platform_XInput_Base_Button); +DO_TYPEDEF(0x03CF9068, HardwareJoystickMap_Platform_XInput_Base_Elements); +DO_TYPEDEF(0x03CF8FA8, HardwareJoystickMap_Platform_OSX_Base); +DO_TYPEDEF(0x03CF6840, HardwareJoystickMap_Platform_OSX); +DO_TYPEDEF(0x03CF8EF8, HardwareJoystickMap_Platform_OSX_Base_MatchingCriteria_ElementCount); +DO_TYPEDEF(0x03CF8F00, HardwareJoystickMap_Platform_OSX_Base_MatchingCriteria); +DO_TYPEDEF(0x03CF8EB8, HardwareJoystickMap_Platform_OSX_Base_Axis); +DO_TYPEDEF(0x03CF8EC0, HardwareJoystickMap_Platform_OSX_Base_Button); +DO_TYPEDEF(0x03CF8F38, HardwareJoystickMap_Platform_OSX_Base_Elements); +DO_TYPEDEF(0x03CF8EA0, HardwareJoystickMap_Platform_Linux_Base); +DO_TYPEDEF(0x03CF67B8, HardwareJoystickMap_Platform_Linux); +DO_TYPEDEF(0x03CF8E88, HardwareJoystickMap_Platform_Linux_Base_MatchingCriteria_ElementCount); +DO_TYPEDEF(0x03CF8E90, HardwareJoystickMap_Platform_Linux_Base_MatchingCriteria); +DO_TYPEDEF(0x03CF8E50, HardwareJoystickMap_Platform_Linux_Base_Axis); +DO_TYPEDEF(0x03CF8E58, HardwareJoystickMap_Platform_Linux_Base_Button); +DO_TYPEDEF(0x03CF8E28, HardwareJoystickMap_Platform_Linux_Base_Elements); +DO_TYPEDEF(0x03CF8D90, HardwareJoystickMap_Platform_WindowsUWP_Base); +DO_TYPEDEF(0x03CF6818, HardwareJoystickMap_Platform_WindowsUWP); +DO_TYPEDEF(0x03CF8DC0, HardwareJoystickMap_Platform_WindowsUWP_Base_MatchingCriteria_ElementCount); +DO_TYPEDEF(0x03CF8DC8, HardwareJoystickMap_Platform_WindowsUWP_Base_MatchingCriteria); +DO_TYPEDEF(0x03CF8D80, HardwareJoystickMap_Platform_WindowsUWP_Base_Axis); +DO_TYPEDEF(0x03CF8D50, HardwareJoystickMap_Platform_WindowsUWP_Base_Button); +DO_TYPEDEF(0x03CF8D78, HardwareJoystickMap_Platform_WindowsUWP_Base_Elements); +DO_TYPEDEF(0x03CB4540, HardwareJoystickMap_Platform_Fallback_Base); +DO_TYPEDEF(0x03CF67E0, HardwareJoystickMap_Platform_Fallback); +DO_TYPEDEF(0x03CB44D0, HardwareJoystickMap_Platform_Fallback_Base_MatchingCriteria); +DO_TYPEDEF(0x03CB44F8, HardwareJoystickMap_Platform_Fallback_Base_CustomCalculationSourceData); +DO_TYPEDEF(0x03CB4490, HardwareJoystickMap_Platform_Fallback_Base_Axis); +DO_TYPEDEF(0x03CB44E0, HardwareJoystickMap_Platform_Fallback_Base_Button); +DO_TYPEDEF(0x03CB44C8, HardwareJoystickMap_Platform_Fallback_Base_Elements); +DO_TYPEDEF(0x03CEE7A8, HardwareJoystickMap_Platform_Custom); +DO_TYPEDEF(0x03CB44B0, HardwareJoystickMap_Platform_Custom_CustomCalculationSourceData); +DO_TYPEDEF(0x03CB4498, HardwareJoystickMap_Platform_Custom_Axis); +DO_TYPEDEF(0x03CB44A8, HardwareJoystickMap_Platform_Custom_Button); +DO_TYPEDEF(0x03CFB600, HardwareJoystickMap_Platform_PS5_Base); +DO_TYPEDEF(0x03CF6830, HardwareJoystickMap_Platform_PS5); +DO_TYPEDEF(0x03CFBBE0, HardwareJoystickMap_Platform_XboxOne_Base); +DO_TYPEDEF(0x03CB44B8, HardwareJoystickMap_Platform_Custom_MatchingCriteria); +DO_TYPEDEF(0x03CFBBB0, HardwareJoystickMap_Platform_XboxOne_Base_MatchingCriteria); +DO_TYPEDEF(0x03CB4440, HardwareJoystickMap_Platform_XboxOne_Base_Axis); +DO_TYPEDEF(0x03CB4460, HardwareJoystickMap_Platform_XboxOne_Base_Button); +DO_TYPEDEF(0x03CFBC08, HardwareJoystickMap_Platform_XboxOne_Base_Elements); +DO_TYPEDEF(0x03CB43E0, HardwareJoystickMap_Platform_Custom_Axis__Array); +DO_TYPEDEF(0x03CB43C8, HardwareJoystickMap_Platform_Custom_Button__Array); +DO_TYPEDEF(0x03CB4450, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Axis_); +DO_TYPEDEF(0x03CB4418, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Button_); +DO_TYPEDEF(0x03CFB5E8, HardwareJoystickMap_Platform_PS5_Base_MatchingCriteria); +DO_TYPEDEF(0x03CFB6B8, HardwareJoystickMap_Platform_PS5_Base_Axis); +DO_TYPEDEF(0x03CFB6B0, HardwareJoystickMap_Platform_PS5_Base_Button); +DO_TYPEDEF(0x03CFB630, HardwareJoystickMap_Platform_PS5_Base_Elements); +DO_TYPEDEF(0x03CB6348, HardwareJoystickMap_Platform_WebGL_Base); +DO_TYPEDEF(0x03CF6810, HardwareJoystickMap_Platform_WebGL); +DO_TYPEDEF(0x03CB6360, HardwareJoystickMap_Platform_WebGL_Base_MatchingCriteria_ClientInfo); +DO_TYPEDEF(0x03CB6378, HardwareJoystickMap_Platform_WebGL_Base_MatchingCriteria); +DO_TYPEDEF(0x03CB63A8, HardwareJoystickMap_Platform_WebGL_Base_Axis); +DO_TYPEDEF(0x03CB63B0, HardwareJoystickMap_Platform_WebGL_Base_Button); +DO_TYPEDEF(0x03CB6310, HardwareJoystickMap_Platform_WebGL_Base_Elements); +DO_TYPEDEF(0x03CF6808, HardwareJoystickMap_Platform_XboxOne); +DO_TYPEDEF(0x03CFB778, HardwareJoystickMap_Platform_GameCore_Base); +DO_TYPEDEF(0x03CF67C8, HardwareJoystickMap_Platform_GameCore); +DO_TYPEDEF(0x03CFB700, HardwareJoystickMap_Platform_GameCore_Base_MatchingCriteria); +DO_TYPEDEF(0x03CFB740, HardwareJoystickMap_Platform_GameCore_Base_Axis); +DO_TYPEDEF(0x03CFB738, HardwareJoystickMap_Platform_GameCore_Base_Button); +DO_TYPEDEF(0x03CFB6E8, HardwareJoystickMap_Platform_GameCore_Base_Elements); +DO_TYPEDEF(0x03CFB678, HardwareJoystickMap_Platform_GameCore_Base_Axis__Array); +DO_TYPEDEF(0x03CFB668, HardwareJoystickMap_Platform_GameCore_Base_Button__Array); +DO_TYPEDEF(0x03CFB670, HardwareJoystickMap_Platform_GameCore_Base__Array); +DO_TYPEDEF(0x03CFBA98, HardwareJoystickMap_Platform_PS4_Base); +DO_TYPEDEF(0x03CF6848, HardwareJoystickMap_Platform_PS4); +DO_TYPEDEF(0x03CFBB20, HardwareJoystickMap_Platform_PS4_Base_MatchingCriteria); +DO_TYPEDEF(0x03CFBB68, HardwareJoystickMap_Platform_PS4_Base_Axis); +DO_TYPEDEF(0x03CFBB70, HardwareJoystickMap_Platform_PS4_Base_Button); +DO_TYPEDEF(0x03CFBB00, HardwareJoystickMap_Platform_PS4_Base_Elements); +DO_TYPEDEF(0x03CFB938, HardwareJoystickMap_Platform_NintendoSwitch_Base); +DO_TYPEDEF(0x03CF67C0, HardwareJoystickMap_Platform_NintendoSwitch); +DO_TYPEDEF(0x03CFB9B8, HardwareJoystickMap_Platform_NintendoSwitch_Base_MatchingCriteria); +DO_TYPEDEF(0x03CFBA48, HardwareJoystickMap_Platform_NintendoSwitch_Base_Axis); +DO_TYPEDEF(0x03CFB958, HardwareJoystickMap_Platform_NintendoSwitch_Base_Button); +DO_TYPEDEF(0x03CFB988, HardwareJoystickMap_Platform_NintendoSwitch_Base_Elements); +DO_TYPEDEF(0x03CFB890, HardwareJoystickMap_Platform_Stadia_Base); +DO_TYPEDEF(0x03CF6828, HardwareJoystickMap_Platform_Stadia); +DO_TYPEDEF(0x03CFB850, HardwareJoystickMap_Platform_Stadia_Base_MatchingCriteria); +DO_TYPEDEF(0x03CFB830, HardwareJoystickMap_Platform_Stadia_Base_Axis); +DO_TYPEDEF(0x03CFB838, HardwareJoystickMap_Platform_Stadia_Base_Button); +DO_TYPEDEF(0x03CFB7B8, HardwareJoystickMap_Platform_Stadia_Base_Elements); +DO_TYPEDEF(0x03CFB4A0, HardwareJoystickMap_Platform_InternalDriver_Base); +DO_TYPEDEF(0x03CF67D0, HardwareJoystickMap_Platform_InternalDriver); +DO_TYPEDEF(0x03CFB568, HardwareJoystickMap_Platform_InternalDriver_Base_MatchingCriteria); +DO_TYPEDEF(0x03CFB5B8, HardwareJoystickMap_Platform_InternalDriver_Base_Axis); +DO_TYPEDEF(0x03CFB5C8, HardwareJoystickMap_Platform_InternalDriver_Base_Button); +DO_TYPEDEF(0x03CFB548, HardwareJoystickMap_Platform_InternalDriver_Base_Elements); +DO_TYPEDEF(0x03CEEAB8, HardwareJoystickMap_Platform_SDL2_Base); +DO_TYPEDEF(0x03CF6820, HardwareJoystickMap_Platform_SDL2); +DO_TYPEDEF(0x03CB6470, HardwareJoystickMap_Platform_SDL2_Base_MatchingCriteria); +DO_TYPEDEF(0x03CB6428, HardwareJoystickMap_Platform_SDL2_Base_Axis); +DO_TYPEDEF(0x03CB6438, HardwareJoystickMap_Platform_SDL2_Base_Button); +DO_TYPEDEF(0x03CB6408, HardwareJoystickMap_Platform_SDL2_Base_Elements); +DO_TYPEDEF(0x03CB62B0, HardwareJoystickMap_Platform_AppleGCController_Base_CompoundElement); +DO_TYPEDEF(0x03CB62E8, HardwareJoystickMap_Platform_AppleGCController_Base); +DO_TYPEDEF(0x03CF67E8, HardwareJoystickMap_Platform_AppleGCController); +DO_TYPEDEF(0x03CB6290, HardwareJoystickMap_Platform_AppleGCController_Base_MatchingCriteria); +DO_TYPEDEF(0x03CB62C0, HardwareJoystickMap_Platform_AppleGCController_Base_Axis); +DO_TYPEDEF(0x03CB62B8, HardwareJoystickMap_Platform_AppleGCController_Base_Button); +DO_TYPEDEF(0x03CB6288, HardwareJoystickMap_Platform_AppleGCController_Base_Elements); +DO_TYPEDEF(0x03CB6230, HardwareJoystickMap_Platform_AppleGCController_Base_Axis__Array); +DO_TYPEDEF(0x03CB6240, HardwareJoystickMap_Platform_AppleGCController_Base_Button__Array); +DO_TYPEDEF(0x03CB6320, HardwareJoystickMap_Platform_AppleGCController_Base_CompoundElement__Array); +DO_TYPEDEF(0x03CB6238, HardwareJoystickMap_Platform_AppleGCController_Base__Array); +DO_TYPEDEF(0x03CB60B8, IEnumerable_1_Rewired_Interfaces_IControllerElementIdentifierCommon_Internal_); +DO_TYPEDEF(0x03CEBB40, IControllerElementIdentifierCommon_Internal); +DO_TYPEDEF(0x03CB61A8, HardwareJoystickTemplateMap_SpecialElementEntry__Array); +DO_TYPEDEF(0x03CEBB20, IControllerTemplateElementIdentifier); +DO_TYPEDEF(0x03CB61B0, tAekPsTTZodxujISbkMNBntFDmVT); +DO_TYPEDEF(0x03CE9970, Controller_Button); +DO_TYPEDEF(0x03CE3A68, IControllerTemplate); +DO_TYPEDEF(0x03CE93B8, Controller); +DO_TYPEDEF(0x03CEBCF8, TimerAbs); +DO_TYPEDEF(0x03CF2980, XboxOneGamepadExtension); +DO_TYPEDEF(0x03CF29C8, XboxOneGamepadExtension_PZaFFUqGOEFzYOmcdYQMDePDRcqv); +DO_TYPEDEF(0x03CF29D0, IXboxOneInputSource); +DO_TYPEDEF(0x03CEBFD0, TimerAbs__Array); +DO_TYPEDEF(0x03CBCBF0, UpdateLoopType__Enum); +DO_TYPEDEF(0x03CEC940, Controller_Axis_uhqOmXTiLElTXIZtOYVnJdaftXTd_QSVAgwaBeezkIoCzOGSkLOZFTEZk); +DO_TYPEDEF(0x03CEC958, Controller_Element_xOoJsIJJrYLeLMCcefuYYRHXEZwJ_yShTYqkGIvmtEnfpaLxCqsdlnJlO__Array); +DO_TYPEDEF(0x03CEC948, ReadOnlyCollection_1_Rewired_Controller_Element_xOoJsIJJrYLeLMCcefuYYRHXEZwJ_yShTYqkGIvmtEnfpaLxCqsdlnJlO_); +DO_TYPEDEF(0x03CEC858, IList_1_Rewired_Controller_Element_xOoJsIJJrYLeLMCcefuYYRHXEZwJ_yShTYqkGIvmtEnfpaLxCqsdlnJlO_); +DO_TYPEDEF(0x03CEC650, Controller_CompoundElement_mJYIgZkmlllSlDyuAQEGSrlBRGZn); +DO_TYPEDEF(0x03CEC6A0, Controller_CompoundElement_mJYIgZkmlllSlDyuAQEGSrlBRGZn__Array); +DO_TYPEDEF(0x03CEC4F0, Controller_Axis2D); +DO_TYPEDEF(0x03CB9FE0, AxisCalibration); +DO_TYPEDEF(0x03CEC4E8, CalibrationMap); +DO_TYPEDEF(0x03CC4E10, AxisCalibration__Array); +DO_TYPEDEF(0x03D03F70, IList_1_Rewired_AxisCalibration_); +DO_TYPEDEF(0x03CE97D0, Controller_Button__Array); +DO_TYPEDEF(0x03CE9888, ReadOnlyCollection_1_Rewired_Controller_Button_); +DO_TYPEDEF(0x03CC1B70, IList_1_Rewired_Controller_Button_); +DO_TYPEDEF(0x03CE9898, ReadOnlyCollection_1_Rewired_Controller_Element_); +DO_TYPEDEF(0x03CE96F0, IList_1_Rewired_Controller_CompoundElement_); +DO_TYPEDEF(0x03CE9870, ReadOnlyCollection_1_Rewired_Controller_CompoundElement_); +DO_TYPEDEF(0x03CEEA50, UnknownControllerHat); +DO_TYPEDEF(0x03CEC258, ControllerDataUpdater); +DO_TYPEDEF(0x03CEEA58, UnknownControllerHat_HatButtons); +DO_TYPEDEF(0x03CEEA60, UnknownControllerHat__Array); +DO_TYPEDEF(0x03CF4A90, HardwareControllerMap_Game); +DO_TYPEDEF(0x03CC71D8, ADictionary_2_System_Int32_Rewired_ControllerElementIdentifier_); +DO_TYPEDEF(0x03CE16E0, ICollection_1_Rewired_ControllerElementIdentifier_); +DO_TYPEDEF(0x03CE16F0, IList_1_Rewired_ControllerElementIdentifier_); +DO_TYPEDEF(0x03CE98B8, ReadOnlyCollection_1_Rewired_IControllerTemplate_); +DO_TYPEDEF(0x03CEAF00, IList_1_Rewired_IControllerTemplate_); +DO_TYPEDEF(0x03CE93C8, Func_3_Rewired_Controller_Guid_Boolean_); +DO_TYPEDEF(0x03CE9328, Func_3_Rewired_Controller_Type_Boolean_); +DO_TYPEDEF(0x03CEC4D8, Controller_Axis); +DO_TYPEDEF(0x03CC1B90, ControllerWithAxes); +DO_TYPEDEF(0x03CE1308, CustomController); +DO_TYPEDEF(0x03CEC578, ControllerPollingInfo); +DO_TYPEDEF(0x03CEC2C0, IEnumerable_1_Rewired_ControllerPollingInfo_); +DO_TYPEDEF(0x03CEC4F8, Controller_Axis__Array); +DO_TYPEDEF(0x03CEC4B0, ReadOnlyCollection_1_Rewired_Controller_Axis_); +DO_TYPEDEF(0x03D03F68, IList_1_Rewired_Controller_Axis_); +DO_TYPEDEF(0x03CEC508, Controller_Axis2D__Array); +DO_TYPEDEF(0x03CEC4A8, ReadOnlyCollection_1_Rewired_Controller_Axis2D_); +DO_TYPEDEF(0x03CEC4C8, Func_2_Int32_Int32_); +DO_TYPEDEF(0x03CE1278, Func_2_Int32_Single_); +DO_TYPEDEF(0x03CEC008, IExternalTools); +DO_TYPEDEF(0x03CE1EF8, List_1_Rewired_Components_PlayerMouse_); +DO_TYPEDEF(0x03CBCE58, PlayerController); +DO_TYPEDEF(0x03CBCE00, PlayerController_Element); +DO_TYPEDEF(0x03CBD220, AList_1_Rewired_PlayerController_Element_); +DO_TYPEDEF(0x03CBCF30, PlayerController_ElementWithSource); +DO_TYPEDEF(0x03CBCEA0, PlayerController_Button); +DO_TYPEDEF(0x03CBD228, AList_1_Rewired_PlayerController_Button_); +DO_TYPEDEF(0x03CBCEA8, PlayerController_Axis); +DO_TYPEDEF(0x03CBD238, AList_1_Rewired_PlayerController_Axis_); +DO_TYPEDEF(0x03CBD088, ReadOnlyCollection_1_Rewired_PlayerController_Element_); +DO_TYPEDEF(0x03CBCDC0, IList_1_Rewired_PlayerController_Element_); +DO_TYPEDEF(0x03CBD190, ReadOnlyCollection_1_Rewired_PlayerController_Button_); +DO_TYPEDEF(0x03CBCDA8, IList_1_Rewired_PlayerController_Button_); +DO_TYPEDEF(0x03CBD188, ReadOnlyCollection_1_Rewired_PlayerController_Axis_); +DO_TYPEDEF(0x03CBCDB8, IList_1_Rewired_PlayerController_Axis_); +DO_TYPEDEF(0x03CBD0A8, List_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_); +DO_TYPEDEF(0x03D165E0, Action_2_Int32_Boolean_); +DO_TYPEDEF(0x03CB8040, Action_2_Int32_Single_); +DO_TYPEDEF(0x03CB7D48, PlayerController_ElementWithSourceInfo); +DO_TYPEDEF(0x03CB7DA0, PlayerController_ElementInfo); +DO_TYPEDEF(0x03CB8030, List_1_Rewired_Components_PlayerController_ElementInfo_); +DO_TYPEDEF(0x03CB7D90, PlayerController_ElementWithSourceInfo__Array); +DO_TYPEDEF(0x03CB7DE8, IEnumerator_1_Rewired_Components_PlayerController_ElementInfo_); +DO_TYPEDEF(0x03CB7EC8, PlayerController_ButtonStateChangedHandler); +DO_TYPEDEF(0x03CB7F08, PlayerController_AxisValueChangedHandler); +DO_TYPEDEF(0x03CB7EF0, PlayerController_EnabledStateChangedHandler); +DO_TYPEDEF(0x03CB7A60, PlayerMouse_ScreenPositionChangedHandler); +DO_TYPEDEF(0x03CBCE90, PlayerController_MouseAxis); +DO_TYPEDEF(0x03CBCF18, PlayerController_CompoundElement); +DO_TYPEDEF(0x03CBCE80, PlayerController_Axis2D); +DO_TYPEDEF(0x03CBCD70, PlayerController_MouseWheel); +DO_TYPEDEF(0x03CBD0B8, List_1_Rewired_PlayerController_Element_); +DO_TYPEDEF(0x03CE10D8, Action_1_UnityEngine_Vector2_); +DO_TYPEDEF(0x03CF3050, List_1_UnityEngine_EventSystems_EventSystem_); +DO_TYPEDEF(0x03CF3028, Comparison_1_UnityEngine_EventSystems_RaycastResult_); +DO_TYPEDEF(0x03D23C18, Button_ButtonClickedEvent); +DO_TYPEDEF(0x03CBAC70, Text); +DO_TYPEDEF(0x03CBF138, Vector2Int); +DO_TYPEDEF(0x03CF1280, RectangularVertexClipper); +DO_TYPEDEF(0x03CF12A0, HashSet_1_UnityEngine_UI_MaskableGraphic_); +DO_TYPEDEF(0x03CF1288, HashSet_1_UnityEngine_UI_IClippable_); +DO_TYPEDEF(0x03CEDE20, IClippable); +DO_TYPEDEF(0x03CF1278, List_1_UnityEngine_UI_RectMask2D_); +DO_TYPEDEF(0x03CEDDC0, MaskableGraphic_CullStateChangedEvent); +DO_TYPEDEF(0x03D23748, FontData); +DO_TYPEDEF(0x03CEE398, TextGenerator); +DO_TYPEDEF(0x03D21728, List_1_UnityEngine_UICharInfo_); +DO_TYPEDEF(0x03D21720, List_1_UnityEngine_UILineInfo_); +DO_TYPEDEF(0x03CF5520, List_1_UnityEngine_UI_Image_); +DO_TYPEDEF(0x03D1BA98, CSteamID); +DO_TYPEDEF(0x03CDAC08, HAuthTicket); +DO_TYPEDEF(0x03CDB6D8, Menu); +DO_TYPEDEF(0x03D0C968, TouchScreenKeyboardType__Enum); +DO_TYPEDEF(0x03CEE318, InputField); +DO_TYPEDEF(0x03D0C960, TouchScreenKeyboard); +DO_TYPEDEF(0x03CEE388, InputField_SubmitEvent); +DO_TYPEDEF(0x03CEE390, InputField_EndEditEvent); +DO_TYPEDEF(0x03CEE380, InputField_OnChangeEvent); +DO_TYPEDEF(0x03CEE328, InputField_OnValidateInput); +DO_TYPEDEF(0x03D19F18, WaitForSecondsRealtime); DO_TYPEDEF(0x03CA27F8, Event_1); +DO_TYPEDEF(0x03CD3B28, List_1_UnityEngine_UI_Toggle_); DO_TYPEDEF(0x03C9B268, Toggle__Array); +DO_TYPEDEF(0x03CF0E18, IEnumerator_1_UnityEngine_UI_Toggle_); +DO_TYPEDEF(0x03CF0F08, Toggle_ToggleEvent); +DO_TYPEDEF(0x03D24480, RoomProtocolToken); +DO_TYPEDEF(0x03CDAED8, GameConfigToken); +DO_TYPEDEF(0x03D23808, Dropdown); +DO_TYPEDEF(0x03D237E8, Dropdown_OptionDataList); +DO_TYPEDEF(0x03D23900, Dropdown_OptionData); +DO_TYPEDEF(0x03D23730, List_1_UnityEngine_UI_Dropdown_OptionData_); +DO_TYPEDEF(0x03D23960, Dropdown_DropdownEvent); +DO_TYPEDEF(0x03D237F8, List_1_UnityEngine_UI_Dropdown_DropdownItem_); +DO_TYPEDEF(0x03D23828, TweenRunner_1_FloatTween_); +DO_TYPEDEF(0x03D174B8, Dictionary_2_UnityEngine_Renderer_UnityEngine_Material_); +DO_TYPEDEF(0x03CC1270, InputActionType__Enum_1); +DO_TYPEDEF(0x03CC1378, InputBinding); +DO_TYPEDEF(0x03D233B0, Action_1_UnityEngine_InputSystem_InputAction_CallbackContext_); +DO_TYPEDEF(0x03D233A0, InputAction_1); +DO_TYPEDEF(0x03CC1560, InputBinding__Array); +DO_TYPEDEF(0x03CB2648, FourCC); +DO_TYPEDEF(0x03CB2658, InputStateBlock); +DO_TYPEDEF(0x03CC55F8, InternedString); +DO_TYPEDEF(0x03CC5B20, PrimitiveValue); +DO_TYPEDEF(0x03CC5550, InputControl); +DO_TYPEDEF(0x03CC53D0, InputDeviceDescription); +DO_TYPEDEF(0x03CC5548, InputDevice); +DO_TYPEDEF(0x03CC1500, InputActionMap); +DO_TYPEDEF(0x03CC7F30, InputControlScheme_DeviceRequirement); +DO_TYPEDEF(0x03CC7FA0, InputControlScheme); +DO_TYPEDEF(0x03CC5100, InputActionAsset); +DO_TYPEDEF(0x03CC7F58, InputControlScheme_DeviceRequirement__Array); +DO_TYPEDEF(0x03CC7ED0, InputControlScheme__Array); +DO_TYPEDEF(0x03CC2608, IInputInteraction); +DO_TYPEDEF(0x03CB2770, InputProcessor); +DO_TYPEDEF(0x03CB2798, InputBindingComposite); +DO_TYPEDEF(0x03CD1228, InputEventPtr); +DO_TYPEDEF(0x03CC1330, InputActionState); +DO_TYPEDEF(0x03CC7548, InternedString__Array); +DO_TYPEDEF(0x03CC5480, InputDevice_ControlBitRangeNode__Array); +DO_TYPEDEF(0x03CD1288, InputDeviceCommand); +DO_TYPEDEF(0x03CC1300, InputControl__Array); +DO_TYPEDEF(0x03CC5728, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_Type_); +DO_TYPEDEF(0x03CC5118, Action_2_Object_UnityEngine_InputSystem_InputActionChange_); +DO_TYPEDEF(0x03CB6A08, InputActionState_GlobalState); +DO_TYPEDEF(0x03D1E5E0, GCHandle__Array); +DO_TYPEDEF(0x03CC0FB8, IEnumerable_1_UnityEngine_InputSystem_InputBinding_); +DO_TYPEDEF(0x03CC27E8, ReadOnlyArray_1_UnityEngine_InputSystem_InputDevice_); +DO_TYPEDEF(0x03CCD668, IEnumerator_1_UnityEngine_InputSystem_InputDevice_); +DO_TYPEDEF(0x03CB24C0, IEnumerator_1_UnityEngine_InputSystem_InputControlScheme_); +DO_TYPEDEF(0x03CC0FA0, IEnumerator_1_UnityEngine_InputSystem_InputAction_); +DO_TYPEDEF(0x03CD6088, InputAction_1__Array); +DO_TYPEDEF(0x03CBC138, CapsuleCollider); DO_TYPEDEF(0x03C8F958, DissonanceComms); DO_TYPEDEF(0x03C8F698, Log); DO_TYPEDEF(0x03C8F990, Rooms); DO_TYPEDEF(0x03C8F240, RoomMembershipComparer); DO_TYPEDEF(0x03C8F2C0, List_1_Dissonance_RoomMembership_); DO_TYPEDEF(0x03C8F2D0, ReadOnlyCollection_1_System_String_); +DO_TYPEDEF(0x03CEA6B8, IList_1_System_String_); +DO_TYPEDEF(0x03D17B70, Action_1_String_); DO_TYPEDEF(0x03C8F9A8, PlayerChannels); DO_TYPEDEF(0x03C8FB18, PlayerChannel); +DO_TYPEDEF(0x03D1D4E8, ChannelProperties); DO_TYPEDEF(0x03C8FB50, IChannelPriorityProvider); +DO_TYPEDEF(0x03CD0288, Pool_1_Dissonance_ChannelProperties_); +DO_TYPEDEF(0x03CD0280, Func_1_Dissonance_ChannelProperties_); DO_TYPEDEF(0x03C8FB10, Action_2_String_Dissonance_ChannelProperties_); DO_TYPEDEF(0x03C8F988, RoomChannels); DO_TYPEDEF(0x03C8FAC0, RoomChannel); @@ -619,6 +2341,7 @@ DO_TYPEDEF(0x03C8FA88, Action_2_Dissonance_RoomName_Dissonance_ChannelProperties DO_TYPEDEF(0x03C8F970, TextChat); DO_TYPEDEF(0x03C8F9C8, Func_1_Dissonance_Networking_ICommsNetwork_); DO_TYPEDEF(0x03C8F938, ICommsNetwork); +DO_TYPEDEF(0x03CDBB28, Action_1_Dissonance_Networking_TextMessage_); DO_TYPEDEF(0x03C943E8, ChannelType__Enum); DO_TYPEDEF(0x03C8F998, OpenChannelVolumeDuck); DO_TYPEDEF(0x03C8F978, PlayerTrackerManager); @@ -627,12 +2350,14 @@ DO_TYPEDEF(0x03C8FBD8, IDissonancePlayer); DO_TYPEDEF(0x03C8F9B0, PlayerCollection); DO_TYPEDEF(0x03C8F488, Dictionary_2_System_String_Dissonance_VoicePlayerState_); DO_TYPEDEF(0x03C8F190, VoicePlayerState); +DO_TYPEDEF(0x03D1DD20, Action_1_Dissonance_VoicePlayerState_); DO_TYPEDEF(0x03C8F9D0, Action_2_Dissonance_VoicePlayerState_String_); DO_TYPEDEF(0x03C8F438, LocalVoicePlayerState); DO_TYPEDEF(0x03C8F0A0, IAmplitudeProvider); DO_TYPEDEF(0x03C8F050, ILossEstimator); DO_TYPEDEF(0x03C8F788, IVoicePlaybackInternal); DO_TYPEDEF(0x03C93A58, List_1_Dissonance_RemoteChannel_); +DO_TYPEDEF(0x03D1DA30, IEnumerator_1_Dissonance_VoicePlayerState_); DO_TYPEDEF(0x03C8F460, List_1_Dissonance_VoicePlayerState_); DO_TYPEDEF(0x03C8F478, ReadOnlyCollection_1_Dissonance_VoicePlayerState_); DO_TYPEDEF(0x03C8F9A0, PlaybackPool); @@ -663,16 +2388,16 @@ DO_TYPEDEF(0x03C8FCA0, Double__Array_1); DO_TYPEDEF(0x03C95270, ISampleProvider); DO_TYPEDEF(0x03C93028, IFrameProvider); DO_TYPEDEF(0x03C8FB90, ArraySegment_1_Single_); -DO_TYPEDEF(0x03C931C8, List_1_Dissonance_VAD_IVoiceActivationListener_); DO_TYPEDEF(0x03C93070, IVoiceActivationListener); -DO_TYPEDEF(0x03C93200, List_1_Dissonance_Audio_Capture_IMicrophoneSubscriber_); +DO_TYPEDEF(0x03C931C8, List_1_Dissonance_VAD_IVoiceActivationListener_); DO_TYPEDEF(0x03C930C0, IMicrophoneSubscriber); +DO_TYPEDEF(0x03C93200, List_1_Dissonance_Audio_Capture_IMicrophoneSubscriber_); DO_TYPEDEF(0x03C93748, FrameFormat); DO_TYPEDEF(0x03C93500, VoicePlayback); DO_TYPEDEF(0x03C93A88, SpeechSessionStream); -DO_TYPEDEF(0x03C935F8, Queue_1_Dissonance_Audio_Playback_SpeechSession_); DO_TYPEDEF(0x03C93660, SessionContext); DO_TYPEDEF(0x03C93AC8, SpeechSession); +DO_TYPEDEF(0x03C935F8, Queue_1_Dissonance_Audio_Playback_SpeechSession_); DO_TYPEDEF(0x03C8EEE8, IRemoteChannelProvider); DO_TYPEDEF(0x03C93640, IDecoderPipeline); DO_TYPEDEF(0x03C93A98, IJitterEstimator); @@ -700,64 +2425,101 @@ DO_TYPEDEF(0x03C93950, ISampleSource); DO_TYPEDEF(0x03C93918, Resampler_1); DO_TYPEDEF(0x03C936E0, IRateProvider); DO_TYPEDEF(0x03C93600, WindowDeviationCalculator); +DO_TYPEDEF(0x03C93688, IAudioOutputSubscriber); DO_TYPEDEF(0x03C936D0, SamplePlaybackComponent); DO_TYPEDEF(0x03C93680, ReaderWriterLockSlim); DO_TYPEDEF(0x03C9BE28, ReaderWriterCount); -DO_TYPEDEF(0x03C93688, IAudioOutputSubscriber); DO_TYPEDEF(0x03C8FC18, TokenSet); DO_TYPEDEF(0x03C8F1D8, IComparer_1_System_String_); DO_TYPEDEF(0x03C8F6C8, SemanticVersion); DO_TYPEDEF(0x03CA26C8, ScrollRect); +DO_TYPEDEF(0x03CF1260, Scrollbar_ScrollEvent); +DO_TYPEDEF(0x03CF1240, ScrollRect_ScrollRectEvent); +DO_TYPEDEF(0x03CF1120, Slider_SliderEvent); +DO_TYPEDEF(0x03CD1D30, KeyCode__Enum__Array); +DO_TYPEDEF(0x03D22FB0, PlayerStatsController_Stat); +DO_TYPEDEF(0x03D22FB8, PlayerStatsController_Stat__Array); +DO_TYPEDEF(0x03D22FC0, PlayerStatsController_Category__Array); +DO_TYPEDEF(0x03CC2CF0, InputActionReference); +DO_TYPEDEF(0x03CDB968, Callback_1_T_DispatchDelegate_LobbyCreated_t_); +DO_TYPEDEF(0x03D1BD08, EResult__Enum); +DO_TYPEDEF(0x03CDB958, Callback_1_T_DispatchDelegate_GameLobbyJoinRequested_t_); +DO_TYPEDEF(0x03CDB920, Callback_1_T_DispatchDelegate_LobbyEnter_t_); +DO_TYPEDEF(0x03CDB948, Callback_1_T_DispatchDelegate_FloatingGamepadTextInputDismissed_t_); +DO_TYPEDEF(0x03CDB938, Callback_1_T_DispatchDelegate_GamepadTextInputDismissed_t_); +DO_TYPEDEF(0x03CD41A0, AppId_t); +DO_TYPEDEF(0x03D24490, PhotonRoomProperties); DO_TYPEDEF(0x03C8C7E8, KernelSizeParameter); +DO_TYPEDEF(0x03CDA3F8, Dictionary_2_Horror_DevourMap_Horror_Menu_MapReleasedState_); DO_TYPEDEF(0x03C8ECF0, VolumeFaderSettings); +DO_TYPEDEF(0x03D1D858, Dictionary_2_System_Int32_Dissonance_VoicePlayerState_); +DO_TYPEDEF(0x03D1D2A0, Attribute_1__Array); +DO_TYPEDEF(0x03D1D288, Dictionary_2_System_String_Opsive_UltimateCharacterController_Traits_Attribute_); +DO_TYPEDEF(0x03CBB580, DynamicBone); +DO_TYPEDEF(0x03CC00D8, VolumetricLight); +DO_TYPEDEF(0x03CC00C8, PropertiesChangedEvent); DO_TYPEDEF(0x03C8DDB0, Texture3D); +DO_TYPEDEF(0x03CBFE38, List_1_VolumetricLights_VolumetricLight_); DO_TYPEDEF(0x03C92AD8, Plane__Array); -DO_TYPEDEF(0x03CA3B10, Extents); +DO_TYPEDEF(0x03D14A30, InnMapController); +DO_TYPEDEF(0x03CF5550, Dictionary_2_NolanBehaviour_UnityEngine_GameObject_); +DO_TYPEDEF(0x03CE9838, NolanBehaviour__Array); +DO_TYPEDEF(0x03CCD058, ICollection_1_UnityEngine_GameObject_); +DO_TYPEDEF(0x03D0C208, IEnumerable_1_UnityEngine_GameObject_); +DO_TYPEDEF(0x03CF5538, Dictionary_2_System_UInt32_System_Boolean_); +DO_TYPEDEF(0x03CDED00, IEnumerable_1_System_Boolean_); +DO_TYPEDEF(0x03CA3C10, TMP_Vertex); DO_TYPEDEF(0x03C9EA18, TMP_Offset); DO_TYPEDEF(0x03CA39F8, HighlightState); +DO_TYPEDEF(0x03CA3B10, Extents); +DO_TYPEDEF(0x03CA39C8, TMP_ColorGradient); DO_TYPEDEF(0x03C9EA90, TMP_Text); DO_TYPEDEF(0x03C9EBA0, TextMeshProUGUI); DO_TYPEDEF(0x03CA53F0, ITextPreprocessor); -DO_TYPEDEF(0x03CA2BA0, List_1_UnityEngine_TextCore_Glyph_); +DO_TYPEDEF(0x03D1FC38, TMP_FontAsset); +DO_TYPEDEF(0x03D1E1B0, GlyphMetrics); DO_TYPEDEF(0x03C9B9E8, GlyphRect); DO_TYPEDEF(0x03CA31F8, Glyph); +DO_TYPEDEF(0x03CA2BA0, List_1_UnityEngine_TextCore_Glyph_); +DO_TYPEDEF(0x03D1E190, Glyph__Array); DO_TYPEDEF(0x03CA3168, Dictionary_2_System_UInt32_UnityEngine_TextCore_Glyph_); -DO_TYPEDEF(0x03CA2BB0, List_1_TMPro_TMP_Character_); DO_TYPEDEF(0x03C9ED40, TMP_Character); +DO_TYPEDEF(0x03CA2BB0, List_1_TMPro_TMP_Character_); DO_TYPEDEF(0x03CA3110, Dictionary_2_System_UInt32_TMPro_TMP_Character_); DO_TYPEDEF(0x03CA3320, List_1_UnityEngine_TextCore_GlyphRect_); +DO_TYPEDEF(0x03D1E180, GlyphRect__Array); DO_TYPEDEF(0x03CA2A50, TMP_Glyph); DO_TYPEDEF(0x03CA2B80, KerningTable); -DO_TYPEDEF(0x03CA2AD0, List_1_TMPro_KerningPair_); DO_TYPEDEF(0x03CA2AA8, KerningPair); +DO_TYPEDEF(0x03CA2AD0, List_1_TMPro_KerningPair_); DO_TYPEDEF(0x03CA2E40, TMP_FontFeatureTable); -DO_TYPEDEF(0x03CA2C00, List_1_TMPro_TMP_GlyphPairAdjustmentRecord_); DO_TYPEDEF(0x03CA2E48, TMP_GlyphPairAdjustmentRecord); +DO_TYPEDEF(0x03CA2C00, List_1_TMPro_TMP_GlyphPairAdjustmentRecord_); DO_TYPEDEF(0x03CA3240, Dictionary_2_System_UInt32_TMPro_TMP_GlyphPairAdjustmentRecord_); DO_TYPEDEF(0x03CA2D30, List_1_TMPro_TMP_FontAsset_); DO_TYPEDEF(0x03CA2BC0, TMP_FontWeightPair__Array); +DO_TYPEDEF(0x03CB71D8, HashSet_1_System_Int32_); DO_TYPEDEF(0x03CA2B68, HashSet_1_System_UInt32_); DO_TYPEDEF(0x03C9ED28, TMP_SpriteAsset); -DO_TYPEDEF(0x03CA6A30, List_1_TMPro_TMP_SpriteCharacter_); +DO_TYPEDEF(0x03D24188, Dictionary_2_System_UInt32_System_Int32_); DO_TYPEDEF(0x03CA6A78, TMP_SpriteCharacter); +DO_TYPEDEF(0x03CA6A30, List_1_TMPro_TMP_SpriteCharacter_); DO_TYPEDEF(0x03CA6AB0, Dictionary_2_System_UInt32_TMPro_TMP_SpriteCharacter_); -DO_TYPEDEF(0x03CA6A20, List_1_TMPro_TMP_SpriteGlyph_); DO_TYPEDEF(0x03CA6A80, TMP_SpriteGlyph); +DO_TYPEDEF(0x03CA6A20, List_1_TMPro_TMP_SpriteGlyph_); DO_TYPEDEF(0x03CA6AB8, Dictionary_2_System_UInt32_TMPro_TMP_SpriteGlyph_); DO_TYPEDEF(0x03CA5200, MaterialReference__Array); -DO_TYPEDEF(0x03CA39C8, TMP_ColorGradient); -DO_TYPEDEF(0x03CA6930, List_1_TMPro_TMP_Style_); DO_TYPEDEF(0x03CA68F8, TMP_Style); +DO_TYPEDEF(0x03CA6930, List_1_TMPro_TMP_Style_); DO_TYPEDEF(0x03CA6978, Dictionary_2_System_Int32_TMPro_TMP_Style_); DO_TYPEDEF(0x03CA51B8, HorizontalAlignmentOptions__Enum__Array); +DO_TYPEDEF(0x03C9EA10, TMP_MeshInfo); DO_TYPEDEF(0x03C9EA30, TMP_TextInfo); -DO_TYPEDEF(0x03CA3C10, TMP_Vertex); DO_TYPEDEF(0x03CA5318, TMP_CharacterInfo__Array); DO_TYPEDEF(0x03CA67C0, TMP_WordInfo__Array); DO_TYPEDEF(0x03CA67A8, TMP_LinkInfo__Array); DO_TYPEDEF(0x03CA5310, TMP_LineInfo__Array); DO_TYPEDEF(0x03CA67B8, TMP_PageInfo__Array); -DO_TYPEDEF(0x03C9EA10, TMP_MeshInfo); DO_TYPEDEF(0x03CA67B0, TMP_MeshInfo__Array); DO_TYPEDEF(0x03CA5460, Func_3_Int32_String_TMPro_TMP_FontAsset_); DO_TYPEDEF(0x03CA53C0, Func_3_Int32_String_TMPro_TMP_SpriteAsset_); @@ -770,34 +2532,262 @@ DO_TYPEDEF(0x03CA51C0, TMP_ColorGradient__Array); DO_TYPEDEF(0x03CA51C8, TMP_TextProcessingStack_1_System_Int32___Array); DO_TYPEDEF(0x03CA3FD8, Decimal__Array); DO_TYPEDEF(0x03C9EB98, TMP_SubMeshUI__Array); +DO_TYPEDEF(0x03D14328, VRInputTracker); +DO_TYPEDEF(0x03D14220, List_1_UnityEngine_XR_XRNodeState_); +DO_TYPEDEF(0x03CF4548, InputDevice_1); +DO_TYPEDEF(0x03CD60C0, List_1_UnityEngine_XR_InputDevice_); +DO_TYPEDEF(0x03CF4538, XRInputSubsystem); +DO_TYPEDEF(0x03D14218, List_1_UnityEngine_XR_XRInputSubsystem_); +DO_TYPEDEF(0x03D001F0, ISubsystemDescriptor); DO_TYPEDEF(0x03C8F0A8, Action_1_UnityEngine_XR_XRInputSubsystem_); +DO_TYPEDEF(0x03D14CF8, HeightChange); +DO_TYPEDEF(0x03D17D70, Hiding); +DO_TYPEDEF(0x03D22A00, AnimatedInteractable); +DO_TYPEDEF(0x03D1E6E0, AnimatedInteractable__Array); +DO_TYPEDEF(0x03D14D08, Crawl); +DO_TYPEDEF(0x03D14D00, Generic); +DO_TYPEDEF(0x03CF1D00, Jump); +DO_TYPEDEF(0x03D1D750, List_1_Opsive_UltimateCharacterController_Input_ActiveInputEvent_); +DO_TYPEDEF(0x03D14038, ActiveInputEvent__Array); +DO_TYPEDEF(0x03CF1B10, SkinnedMeshRenderer__Array); +DO_TYPEDEF(0x03D14838, SurvivalTownAltarController); +DO_TYPEDEF(0x03CF1E28, List_1_BGMController_BGM_); +DO_TYPEDEF(0x03CF9AD8, IntroTrigger_OnAllPlayersExitedDelegate); +DO_TYPEDEF(0x03D1C2E8, IntroTrigger_OnPlayerEnteredDelegate); +DO_TYPEDEF(0x03CFA0B8, IntroTrigger_OnPlayerExitedDelegate); +DO_TYPEDEF(0x03D179B0, List_1_UnityEngine_Light_); +DO_TYPEDEF(0x03D179C8, List_1_UnityEngine_ParticleSystem_); DO_TYPEDEF(0x03CA9F00, IEnumerator_1_UnityEngine_ParticleSystem_); +DO_TYPEDEF(0x03D222E8, ObjectInteractable); +DO_TYPEDEF(0x03D24F40, SurvivalPlopLongInteractable); +DO_TYPEDEF(0x03D24B50, List_1_NolanBehaviour_); +DO_TYPEDEF(0x03D204D0, List_1_LockboxSpawnPoint_); +DO_TYPEDEF(0x03D13088, List_1_UnityEngine_Material_); +DO_TYPEDEF(0x03D18058, IEnumerator_1_UnityEngine_Material__1); +DO_TYPEDEF(0x03D20118, List_1_UnityEngine_AudioSource_); +DO_TYPEDEF(0x03D20128, Dictionary_2_System_String_KeySpawnPoint_); +DO_TYPEDEF(0x03D201D0, IEnumerator_1_KeySpawnPoint_); +DO_TYPEDEF(0x03D201E0, IEnumerable_1_KeySpawnPoint_); +DO_TYPEDEF(0x03D1A1F0, ManorMapController); +DO_TYPEDEF(0x03CF9E10, List_1_ManorSpirit_); +DO_TYPEDEF(0x03CF9D58, List_1_ManorSpiritController_); +DO_TYPEDEF(0x03CF9D68, List_1_ManorMirrorController_); +DO_TYPEDEF(0x03D041C8, ReflectionProbe); DO_TYPEDEF(0x03C99E10, Cubemap); +DO_TYPEDEF(0x03CED2F0, Rigidbody__Array); +DO_TYPEDEF(0x03CF9D78, Dictionary_2_ManorSpirit_InitialGoatSpawn_); +DO_TYPEDEF(0x03CC4F68, Player); +DO_TYPEDEF(0x03CC3C08, othBwbjJCfqjCkCuDgXhdkQCXIPtA); +DO_TYPEDEF(0x03D03F60, cgAhWyfsfnPBbygscaxJCrsKfviSB); +DO_TYPEDEF(0x03CEA9A8, InputActionEventType__Enum); +DO_TYPEDEF(0x03CEACD0, MRGkKzhgDCfculrfXakxXfUSFUsK_pEhrOFQDNlWhiCRQwqLfhdkKHswE); +DO_TYPEDEF(0x03CEAA78, AList_1_MRGkKzhgDCfculrfXakxXfUSFUsK_pEhrOFQDNlWhiCRQwqLfhdkKHswE_); +DO_TYPEDEF(0x03CEAC48, MRGkKzhgDCfculrfXakxXfUSFUsK); +DO_TYPEDEF(0x03CC3028, iodYpqMJIZFiggHnRPtbBYdCAZfVB_1_Rewired_PlayerActiveControllerChangedDelegate_); +DO_TYPEDEF(0x03CC9748, XKHfzUVAieDxXBogCMTJRCSldnQzA); +DO_TYPEDEF(0x03CEC0D8, Controller_Hat); +DO_TYPEDEF(0x03CD6648, Joystick); +DO_TYPEDEF(0x03CDF500, List_1_Rewired_Joystick_); +DO_TYPEDEF(0x03CEC108, IInputManagerJoystickPublic); +DO_TYPEDEF(0x03CEC070, ReadOnlyCollection_1_Rewired_JoystickType_); +DO_TYPEDEF(0x03CEC0D0, Controller_Hat__Array); +DO_TYPEDEF(0x03CEC040, ReadOnlyCollection_1_Rewired_Controller_Hat_); +DO_TYPEDEF(0x03CC3540, Joystick__Array); +DO_TYPEDEF(0x03CDF810, IEnumerator_1_Rewired_Joystick_); +DO_TYPEDEF(0x03CC2F70, List_1_Rewired_CustomController_); +DO_TYPEDEF(0x03CC3470, CustomController__Array); +DO_TYPEDEF(0x03CF3B10, IEnumerator_1_Rewired_CustomController_); +DO_TYPEDEF(0x03CC35D8, List_1_Rewired_Controller_); +DO_TYPEDEF(0x03CC33F8, Controller__Array); +DO_TYPEDEF(0x03CDF4F0, IEnumerator_1_Rewired_Controller_); +DO_TYPEDEF(0x03CC35E0, ReadOnlyCollection_1_Rewired_Controller_); +DO_TYPEDEF(0x03CEBE98, Keyboard); +DO_TYPEDEF(0x03CEBE88, IUnifiedKeyboardSource); +DO_TYPEDEF(0x03CEBEA8, KeyboardKeyCode__Enum__Array); +DO_TYPEDEF(0x03CEBC98, Mouse); +DO_TYPEDEF(0x03CEBC78, IUnifiedMouseSource); +DO_TYPEDEF(0x03CC3748, cgAhWyfsfnPBbygscaxJCrsKfviSB_gtktRJZQdSncUUzoSqggqmYQqHdH_FwBhSBrMyioEuRlEnBadBwkINECm); +DO_TYPEDEF(0x03CC3BE8, cgAhWyfsfnPBbygscaxJCrsKfviSB_gtktRJZQdSncUUzoSqggqmYQqHdH); +DO_TYPEDEF(0x03CEC638, cKBosMZgwzQDFDHHaseiqMerSbrR); +DO_TYPEDEF(0x03CEAE88, cKBosMZgwzQDFDHHaseiqMerSbrR_wuUroopWlwdhyAHAcIaftMsMkHHs__Array); +DO_TYPEDEF(0x03CEAEC0, ButtonStateRecorder_JDiVicHFWBujKckmMiMaaElYkWADb); +DO_TYPEDEF(0x03CEC720, ButtonStateRecorder); +DO_TYPEDEF(0x03CEAEB0, ButtonStateRecorder_JDiVicHFWBujKckmMiMaaElYkWADb__Array); +DO_TYPEDEF(0x03CC3810, bltYvSitjPywwmJtwAjtAAgZkNaj); +DO_TYPEDEF(0x03CC3738, cgAhWyfsfnPBbygscaxJCrsKfviSB_gtktRJZQdSncUUzoSqggqmYQqHdH_FwBhSBrMyioEuRlEnBadBwkINECm__Array); +DO_TYPEDEF(0x03CC3A58, cgAhWyfsfnPBbygscaxJCrsKfviSB_QZZonLoWlgxcyWKuMqtizlbVFpT); +DO_TYPEDEF(0x03CC3680, ADictionary_2_System_Int32_cgAhWyfsfnPBbygscaxJCrsKfviSB_QZZonLoWlgxcyWKuMqtizlbVFpT_pGjmwaQuQZuHgNirXIspTBHcQXUr_); +DO_TYPEDEF(0x03CC3670, cgAhWyfsfnPBbygscaxJCrsKfviSB_QZZonLoWlgxcyWKuMqtizlbVFpT_pGjmwaQuQZuHgNirXIspTBHcQXUr); +DO_TYPEDEF(0x03CC3C18, othBwbjJCfqjCkCuDgXhdkQCXIPtA__Array); +DO_TYPEDEF(0x03CC3C60, List_1_Rewired_InputActionSourceData_); +DO_TYPEDEF(0x03CC3BF8, ReadOnlyCollection_1_Rewired_InputActionSourceData_); +DO_TYPEDEF(0x03CE3A50, IList_1_Rewired_InputActionSourceData_); +DO_TYPEDEF(0x03CC3C78, TTThSetrNwcNFnjvmLttoQrcZXbI); +DO_TYPEDEF(0x03CC3068, cgAhWyfsfnPBbygscaxJCrsKfviSB__Array); +DO_TYPEDEF(0x03CC2EC0, cgAhWyfsfnPBbygscaxJCrsKfviSB__Array_1); +DO_TYPEDEF(0x03CC4100, aFmJpwxQsLcpqNsVpQUVNGddslvo_KKctsriiMZhFbEJSCKNPCsivbPjAb); +DO_TYPEDEF(0x03CC35C8, aFmJpwxQsLcpqNsVpQUVNGddslvo); +DO_TYPEDEF(0x03CC40F0, ExpandableArray_DataContainer_1_aFmJpwxQsLcpqNsVpQUVNGddslvo_KKctsriiMZhFbEJSCKNPCsivbPjAb_TkYqOpldVGYAcSDtGYaHrNqSSLEE_); +DO_TYPEDEF(0x03CC4108, aFmJpwxQsLcpqNsVpQUVNGddslvo_KKctsriiMZhFbEJSCKNPCsivbPjAb__Array); +DO_TYPEDEF(0x03CEAC58, MRGkKzhgDCfculrfXakxXfUSFUsK_pEhrOFQDNlWhiCRQwqLfhdkKHswE__Array); +DO_TYPEDEF(0x03CEAC18, AList_1_MRGkKzhgDCfculrfXakxXfUSFUsK_pEhrOFQDNlWhiCRQwqLfhdkKHswE___Array); +DO_TYPEDEF(0x03CC2F08, MRGkKzhgDCfculrfXakxXfUSFUsK__Array); +DO_TYPEDEF(0x03CC3018, iodYpqMJIZFiggHnRPtbBYdCAZfVB_1_Rewired_ActiveControllerChangedDelegate_); +DO_TYPEDEF(0x03D1FE40, ActiveControllerChangedDelegate); +DO_TYPEDEF(0x03CC91C8, PlayerActiveControllerChangedDelegate); +DO_TYPEDEF(0x03CC3058, iodYpqMJIZFiggHnRPtbBYdCAZfVB_1_Rewired_PlayerActiveControllerChangedDelegate___Array); +DO_TYPEDEF(0x03CC2FA8, ADictionary_2_System_Int32_XKHfzUVAieDxXBogCMTJRCSldnQzA_ZKepnRKpLuSRvtfTUZewbgDXdBHc_); +DO_TYPEDEF(0x03CC2ED8, XKHfzUVAieDxXBogCMTJRCSldnQzA_ZKepnRKpLuSRvtfTUZewbgDXdBHc); +DO_TYPEDEF(0x03CC2D60, ADictionary_2_System_Int32_Rewired_InputBehavior_); +DO_TYPEDEF(0x03CDF7B8, ICollection_1_Rewired_InputBehavior_); +DO_TYPEDEF(0x03CC35D0, NEKNFNnBnMerBGmvtGdFgVoKfnGUA); +DO_TYPEDEF(0x03CEAF50, NEKNFNnBnMerBGmvtGdFgVoKfnGUA_RifmWctMhNdhIJYvjlOuqmVzJHgX); +DO_TYPEDEF(0x03CEAF40, AList_1_NEKNFNnBnMerBGmvtGdFgVoKfnGUA_RifmWctMhNdhIJYvjlOuqmVzJHgX_); +DO_TYPEDEF(0x03CEADE8, AList_1_Rewired_IControllerTemplate_); +DO_TYPEDEF(0x03CD6710, IList_1_Rewired_Joystick_); +DO_TYPEDEF(0x03D03F80, IList_1_Rewired_CustomController_); +DO_TYPEDEF(0x03CC35F8, awbjHmZDZGaFbpFdVngkjOlucOb_GAaWAhihtaBrVEgxHmuQgkOpejeO); +DO_TYPEDEF(0x03CC9758, awbjHmZDZGaFbpFdVngkjOlucOb); +DO_TYPEDEF(0x03CC3648, ADictionary_2_System_String_awbjHmZDZGaFbpFdVngkjOlucOb_GAaWAhihtaBrVEgxHmuQgkOpejeO_); +DO_TYPEDEF(0x03CC3608, awbjHmZDZGaFbpFdVngkjOlucOb_GAaWAhihtaBrVEgxHmuQgkOpejeO__Array); +DO_TYPEDEF(0x03CF3E58, ReadOnlyCollection_1_Rewired_InputAction_); +DO_TYPEDEF(0x03CC9740, rmOEevBvfrQDGKHWQeGbdjrwKrIx); +DO_TYPEDEF(0x03CC4F70, Player__Array); +DO_TYPEDEF(0x03CDF828, IList_1_Rewired_Player_); +DO_TYPEDEF(0x03CEED00, Action_2_Int32_Rewired_ControllerDataUpdater_); +DO_TYPEDEF(0x03CC2F60, Action_3_Boolean_Int32_Int32_); +DO_TYPEDEF(0x03CDA448, Action_1_Rewired_ControllerStatusChangedEventArgs_); +DO_TYPEDEF(0x03CC2DA8, ControllerStatusChangedEventArgs); +DO_TYPEDEF(0x03CC3570, Action_2_Rewired_ControllerType_Int32_); +DO_TYPEDEF(0x03CC6B50, Player_ControllerHelper); +DO_TYPEDEF(0x03D03FA8, Player_ControllerHelper_fsFeIeGDhTZoJrGbaYxAfXlTfeQO); +DO_TYPEDEF(0x03CC8FB8, Player_ControllerHelper_dQSYPTHvbqNnvMJggKPUmplchfgjA); +DO_TYPEDEF(0x03CC8C40, ControllerType__Enum__Array); +DO_TYPEDEF(0x03CC8C38, Player_ControllerHelper_fsFeIeGDhTZoJrGbaYxAfXlTfeQO__Array); +DO_TYPEDEF(0x03CEEA68, SafeDelegate); +DO_TYPEDEF(0x03CC8FF0, SafeAction_1_Rewired_ControllerAssignmentChangedEventArgs_); +DO_TYPEDEF(0x03CC7048, Action_1_Exception_); +DO_TYPEDEF(0x03CB9DF0, SafeAction); +DO_TYPEDEF(0x03CB9DD0, Action_2_Object_Action_); +DO_TYPEDEF(0x03CC9008, ControllerAssignmentChangedEventArgs); +DO_TYPEDEF(0x03CC8F98, Player_ControllerHelper_eRpAeFxcyMygNogiZCgHnqGANSDc); +DO_TYPEDEF(0x03CC8C20, Player_ControllerHelper_eRpAeFxcyMygNogiZCgHnqGANSDc_FMbXBAQaLWPhxjqsNoyCTWZtsDfI); +DO_TYPEDEF(0x03CC8C28, List_1_Rewired_Player_ControllerHelper_eRpAeFxcyMygNogiZCgHnqGANSDc_FMbXBAQaLWPhxjqsNoyCTWZtsDfI_); +DO_TYPEDEF(0x03CC8EE8, FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_Rewired_JoystickMap_); +DO_TYPEDEF(0x03CEF290, List_1_Rewired_ControllerMap_); +DO_TYPEDEF(0x03CC8630, ControllerMap__Array); +DO_TYPEDEF(0x03CCD2D8, IEnumerator_1_Rewired_ControllerMap_); +DO_TYPEDEF(0x03CC8658, IList_1_Rewired_ControllerMap_); +DO_TYPEDEF(0x03CB0F70, ControllerMapWithAxes); +DO_TYPEDEF(0x03CB6100, JoystickMap); +DO_TYPEDEF(0x03CCD410, IList_1_Rewired_JoystickMap_); +DO_TYPEDEF(0x03CCD2E0, IEnumerable_1_Rewired_ControllerMap_); +DO_TYPEDEF(0x03CC8FE8, Player_ControllerHelper_MapHelper); +DO_TYPEDEF(0x03CF4A58, QrmFKaXWCucaXPGsKbkrhZUVAexX); +DO_TYPEDEF(0x03CF4A68, QYIvqhKfoKYTEUONdLAPWBueYUGd); +DO_TYPEDEF(0x03CF4A70, QrmFKaXWCucaXPGsKbkrhZUVAexX__Array); +DO_TYPEDEF(0x03CC8BF0, ControllerMapEnabler); +DO_TYPEDEF(0x03CF4968, XXNesqlLzdVyNWEawBsQGxYGjphX); +DO_TYPEDEF(0x03CF49E8, ControllerMapEnabler_OKJjdMVAalCqZcLQzdQgZmMptzek); +DO_TYPEDEF(0x03CF6938, ControllerMapEnabler_RuleSet); +DO_TYPEDEF(0x03CC4B50, List_1_Rewired_ControllerMapEnabler_RuleSet_); +DO_TYPEDEF(0x03CF6978, ControllerMapEnabler_Rule); +DO_TYPEDEF(0x03CF6930, List_1_Rewired_ControllerMapEnabler_Rule_); +DO_TYPEDEF(0x03CEB028, ControllerSetSelector); +DO_TYPEDEF(0x03CC8BE8, ControllerMapLayoutManager); +DO_TYPEDEF(0x03CF49D0, ControllerMapLayoutManager_OAjbFOivILIoOuJJWeCBbjSYTLeUA); +DO_TYPEDEF(0x03CF68D8, ControllerMapLayoutManager_RuleSet); +DO_TYPEDEF(0x03CC4800, List_1_Rewired_ControllerMapLayoutManager_RuleSet_); +DO_TYPEDEF(0x03CF6920, ControllerMapLayoutManager_Rule); +DO_TYPEDEF(0x03CF68D0, List_1_Rewired_ControllerMapLayoutManager_Rule_); +DO_TYPEDEF(0x03CC9028, Player_ControllerHelper_ConflictCheckingHelper); +DO_TYPEDEF(0x03CC8FE0, Player_ControllerHelper_PollingHelper); +DO_TYPEDEF(0x03D180C0, Action_1_UnityEngine_Playables_PlayableDirector_); +DO_TYPEDEF(0x03D0D628, PropertyName); +DO_TYPEDEF(0x03CF9FC0, Dictionary_2_UnityEngine_Light_UnityEngine_LightShadows_); +DO_TYPEDEF(0x03CF7BA0, List_1_InnMazeController_); +DO_TYPEDEF(0x03CF7C10, List_1_InnHoleController_); +DO_TYPEDEF(0x03CF7A98, List_1_InnShrineController_); +DO_TYPEDEF(0x03CF7AF0, List_1_InitialGoatSpawn_); DO_TYPEDEF(0x03CAAF70, AnimationClip); +DO_TYPEDEF(0x03D22480, List_1_CharacterEmote_); +DO_TYPEDEF(0x03CF1AD8, List_1_UnityEngine_SkinnedMeshRenderer_); +DO_TYPEDEF(0x03CC4920, SteamInventoryPlayer); +DO_TYPEDEF(0x03D147C8, List_1_NolanBehaviour_OverlappedCollider_); +DO_TYPEDEF(0x03D147C0, List_1_UnityEngine_RaycastHit_); +DO_TYPEDEF(0x03D147B8, List_1_UnityEngine_Transform_); +DO_TYPEDEF(0x03CF7B18, IEnumerator_1_UnityEngine_Transform_); +DO_TYPEDEF(0x03CBB390, List_1_DynamicBoneColliderBase_); +DO_TYPEDEF(0x03CBB4B8, DynamicBone_ParticleTree); +DO_TYPEDEF(0x03CBB318, List_1_DynamicBone_ParticleTree_); +DO_TYPEDEF(0x03CBB490, DynamicBone_Particle); +DO_TYPEDEF(0x03CBB330, List_1_DynamicBone_Particle_); +DO_TYPEDEF(0x03CBB308, List_1_DynamicBone_); +DO_TYPEDEF(0x03CBB2F0, Semaphore); +DO_TYPEDEF(0x03CD59B8, CharacterFootEffects_Foot__Array); +DO_TYPEDEF(0x03CD58E0, List_1_List_1_UnityEngine_Transform_); +DO_TYPEDEF(0x03D24248, HashSet_1_UnityEngine_Transform_); +DO_TYPEDEF(0x03CF7B30, IEnumerable_1_UnityEngine_Transform_); +DO_TYPEDEF(0x03D177F0, DetectObjectAbilityBase); +DO_TYPEDEF(0x03D14820, Interact); +DO_TYPEDEF(0x03D147B0, List_1_Opsive_UltimateCharacterController_Character_Abilities_Interact_); +DO_TYPEDEF(0x03D1D190, IInteractableTarget); +DO_TYPEDEF(0x03D1D198, IInteractableTarget__Array); +DO_TYPEDEF(0x03D1D7F8, SurvivalMollyAltarLightbulb); +DO_TYPEDEF(0x03D24C18, SurvivalMollyAltarController); +DO_TYPEDEF(0x03D1D800, SurvivalMollyAltarLightbulb__Array); +DO_TYPEDEF(0x03D14F50, SlaughterhouseAltarController); +DO_TYPEDEF(0x03D1C108, SlaughterhouseTrap__Array__Array); +DO_TYPEDEF(0x03D1C100, Transform__Array__Array); +DO_TYPEDEF(0x03D24F48, SlaughterhouseCrankInteractable); +DO_TYPEDEF(0x03D19D58, Dictionary_2_UnityEngine_ParticleSystem_System_Single_); DO_TYPEDEF(0x03CA9E18, ICollection_1_UnityEngine_ParticleSystem_); DO_TYPEDEF(0x03CA9EF8, IEnumerable_1_UnityEngine_ParticleSystem_); +DO_TYPEDEF(0x03D19EA0, List_1_AnimalGateSpawnPoint_); +DO_TYPEDEF(0x03D19F28, Dictionary_2_Horror_DoorBehaviour_System_Boolean_); +DO_TYPEDEF(0x03D22960, BoltEntity__Array); +DO_TYPEDEF(0x03D229A8, AnnaDoorInteractable); DO_TYPEDEF(0x03C8E860, PostProcessLayer_SerializedBundleRef); DO_TYPEDEF(0x03C8E940, PostProcessBundle); DO_TYPEDEF(0x03C8ECE0, PostProcessEffectRenderer); +DO_TYPEDEF(0x03C8CA40, IAmbientOcclusionMethod); DO_TYPEDEF(0x03C8CA70, AmbientOcclusionModeParameter); DO_TYPEDEF(0x03C8CA78, AmbientOcclusionQualityParameter); -DO_TYPEDEF(0x03C8CA40, IAmbientOcclusionMethod); DO_TYPEDEF(0x03C8CA90, IAmbientOcclusionMethod__Array); DO_TYPEDEF(0x03C8E908, Dictionary_2_UnityEngine_Rendering_PostProcessing_PostProcessEvent_List_1_UnityEngine_Rendering_PostProcessing_PostProcessLayer_SerializedBundleRef_); DO_TYPEDEF(0x03C8E9C8, Dictionary_2_System_Type_UnityEngine_Rendering_PostProcessing_PostProcessBundle_); DO_TYPEDEF(0x03C8EAB8, TargetPool); DO_TYPEDEF(0x03C8E420, List_1_UnityEngine_Rendering_PostProcessing_PostProcessEffectRenderer_); DO_TYPEDEF(0x03C8E428, List_1_UnityEngine_Rendering_RenderTargetIdentifier_); +DO_TYPEDEF(0x03CF0168, KnockoutRagdoll__Array); +DO_TYPEDEF(0x03CF0158, List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_); +DO_TYPEDEF(0x03CF0148, List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__1); +DO_TYPEDEF(0x03D131E0, RagdollLoader_OnRagdollsLoadedHandler); +DO_TYPEDEF(0x03D131E8, RagdollLoader_OnRagdollLoadedHandler); +DO_TYPEDEF(0x03D130B0, LocalLookSource); +DO_TYPEDEF(0x03D1B7C0, MainSceneToken); +DO_TYPEDEF(0x03CED1B0, BoxCollider__Array); +DO_TYPEDEF(0x03CF9F20, Dictionary_2_UnityEngine_GameObject_UnityEngine_GameObject_); +DO_TYPEDEF(0x03D1B150, List_1_Outline_); +DO_TYPEDEF(0x03D1B908, List_1_HidingSpotController_); +DO_TYPEDEF(0x03CF6440, VoiceReverbTrigger_ReverbPreset); +DO_TYPEDEF(0x03CF63D8, Dictionary_2_Photon_Bolt_BoltEntity_System_Int32_); +DO_TYPEDEF(0x03D11828, GoatBehaviour_DelayBah_d_35); +DO_TYPEDEF(0x03D11810, GoatBehaviour_FleeBah_d_36); +DO_TYPEDEF(0x03D11790, GoatBehaviour_WaitUntilEndOfFrameToEatHay_d_43); +DO_TYPEDEF(0x03D132E0, GoatEscapeDoorOpen_TurnOffAnnaOpeningDoor_d_11); +DO_TYPEDEF(0x03D13280, PigBehaviour_WanderGrunt_d_5); +DO_TYPEDEF(0x03D13080, AzazelAprilBehaviour); +DO_TYPEDEF(0x03C90168, Muscle_TargetChild); +DO_TYPEDEF(0x03C8FF40, Muscle); DO_TYPEDEF(0x03C8FDC8, PuppetMaster); DO_TYPEDEF(0x03C8D2F8, Muscle_Group__Enum); DO_TYPEDEF(0x03C90130, Muscle_Props); -DO_TYPEDEF(0x03C90110, Muscle_InternalCollisionIgnoreSettings); DO_TYPEDEF(0x03C8FDC0, Joint); +DO_TYPEDEF(0x03C90110, Muscle_InternalCollisionIgnoreSettings); DO_TYPEDEF(0x03C901D0, ConfigurableJoint__Array); DO_TYPEDEF(0x03C901D8, Muscle_Group__Enum__Array); DO_TYPEDEF(0x03C90DD8, PuppetMasterHumanoidConfig_HumanoidMuscle__Array); -DO_TYPEDEF(0x03C8FF40, Muscle); -DO_TYPEDEF(0x03C90168, Muscle_TargetChild); DO_TYPEDEF(0x03C90160, Muscle_TargetChild__Array); DO_TYPEDEF(0x03C90070, Muscle__Array); DO_TYPEDEF(0x03C90D70, PhysicMaterial__Array); @@ -810,20 +2800,193 @@ DO_TYPEDEF(0x03C8D378, MuscleCollision); DO_TYPEDEF(0x03C8FD10, BehaviourBase__Array); DO_TYPEDEF(0x03C8FD20, List_1_RootMotion_SolverManager_); DO_TYPEDEF(0x03C8FD28, MuscleDisconnectMode__Enum__Array); +DO_TYPEDEF(0x03CF5E50, List_1_ShakeObject_); +DO_TYPEDEF(0x03CF5E68, Dictionary_2_UnityEngine_Rigidbody_UnityEngine_Vector3_); +DO_TYPEDEF(0x03CCCCA8, ICollection_1_UnityEngine_Vector3_); +DO_TYPEDEF(0x03D0C290, IEnumerable_1_UnityEngine_Vector3_); +DO_TYPEDEF(0x03D13098, Dictionary_2_KnockoutRagdoll_GenericLookAt_); +DO_TYPEDEF(0x03D13138, AzazelAprilBehaviour_OnTraverseOffMeshLink_d_30); +DO_TYPEDEF(0x03D13130, AzazelAprilBehaviour_CheckLanded_d_31); +DO_TYPEDEF(0x03D13108, AzazelAprilBehaviour_KnockoutScream_d_38); +DO_TYPEDEF(0x03D130E8, AzazelAprilBehaviour_c_DisplayClass39_0); +DO_TYPEDEF(0x03D130E0, AzazelAprilBehaviour_WaitForPurgatoryToSwitchRenderersBack_d_40); +DO_TYPEDEF(0x03D13050, IPlayerState); +DO_TYPEDEF(0x03D13030, AzazelAprilBehaviour_c_DisplayClass45_0); +DO_TYPEDEF(0x03D13020, AzazelAprilBehaviour_c_DisplayClass45_1); +DO_TYPEDEF(0x03D130D8, AzazelAprilBehaviour_EnragedEyes_d_45); +DO_TYPEDEF(0x03D130D0, AzazelAprilBehaviour_Glitch_d_46); +DO_TYPEDEF(0x03D130C8, AzazelAprilBehaviour_PlayEnrageEffect_d_47); +DO_TYPEDEF(0x03D12F98, AzazelFlickerController_c); +DO_TYPEDEF(0x03D12FB0, Predicate_1_UnityEngine_SkinnedMeshRenderer_); +DO_TYPEDEF(0x03D12EF8, Dictionary_2_UnityEngine_Collider_System_Int32_); +DO_TYPEDEF(0x03D12D60, AzazelNathanBehaviour); +DO_TYPEDEF(0x03D12EA8, AzazelNathanBehaviour_c); +DO_TYPEDEF(0x03D12EC0, Predicate_1_GenericIntData_); +DO_TYPEDEF(0x03D12E28, AzazelNathanBehaviour_WaitForScreamEnd_d_53); +DO_TYPEDEF(0x03D12E10, AzazelNathanBehaviour_WaitToSetCurrentVentState_d_55); +DO_TYPEDEF(0x03D12E00, AzazelNathanBehaviour_OnTraverseOffMeshLink_d_58); +DO_TYPEDEF(0x03D12DF8, AzazelNathanBehaviour_CheckLanded_d_59); +DO_TYPEDEF(0x03D12DF0, AzazelNathanBehaviour_DelayUpdateDynamicBones_d_61); +DO_TYPEDEF(0x03D12DE8, AzazelNathanBehaviour_ContinueKnockout_d_65); +DO_TYPEDEF(0x03D12DB0, AzazelNathanBehaviour_c_DisplayClass66_0); +DO_TYPEDEF(0x03D12D78, AzazelNathanBehaviour_c_DisplayClass67_0); +DO_TYPEDEF(0x03D12D70, AzazelNathanBehaviour_WaitToLerpAlignToGroundToZero_d_68); +DO_TYPEDEF(0x03D12D68, AzazelNathanBehaviour_WaitForPurgatoryToSwitchRenderersBack_d_69); +DO_TYPEDEF(0x03D12D58, AzazelNathanBehaviour_EnragedEyes_d_75); +DO_TYPEDEF(0x03D12D40, AzazelNathanBehaviour_DelayDisableDynamicBoneCollider_d_81); +DO_TYPEDEF(0x03D12D38, AzazelNathanBehaviour_StoodUpDynamicBoneColliderCenterLerp_d_82); +DO_TYPEDEF(0x03D12C50, AzazelSamBehaviour_c); +DO_TYPEDEF(0x03D12C60, Predicate_1_Opsive_UltimateCharacterController_StateSystem_State_); +DO_TYPEDEF(0x03D12BA8, AzazelSamBehaviour_c_DisplayClass30_0); +DO_TYPEDEF(0x03D12BA0, AzazelSamBehaviour_WaitForPurgatoryToSwitchRenderersBack_d_31); +DO_TYPEDEF(0x03D12B68, AzazelSamBehaviour_DelayShowMuzzleFlash_d_34); +DO_TYPEDEF(0x03D12B50, AzazelSamBehaviour_OnTraverseOffMeshLink_d_39); +DO_TYPEDEF(0x03D12B48, AzazelSamBehaviour_CheckLanded_d_40); +DO_TYPEDEF(0x03D12A78, AzazelZaraBehaviour_c); +DO_TYPEDEF(0x03D12A88, Predicate_1_Opsive_UltimateCharacterController_Character_Abilities_Generic_); +DO_TYPEDEF(0x03D12A00, AzazelZaraBehaviour_IntroCoroutine_d_56); +DO_TYPEDEF(0x03D129F0, AzazelZaraBehaviour_WaitForCrawlingToSwitchRenderersBack_d_59); +DO_TYPEDEF(0x03D129E8, AzazelZaraBehaviour_OnIntroCompleteInternal_d_66); +DO_TYPEDEF(0x03D129E0, AzazelZaraBehaviour_Vomit_d_68); +DO_TYPEDEF(0x03CD7500, SurvivalAzazelBehaviour_SetMollyHairRendererFlag_d_131); +DO_TYPEDEF(0x03CD7460, SurvivalAzazelBehaviour_c); +DO_TYPEDEF(0x03CD7410, SurvivalAzazelBehaviour_WaitToResetRecentlyAttached_d_133); +DO_TYPEDEF(0x03CD73F0, SurvivalAzazelBehaviour_PlayEnrageEffect_d_140); +DO_TYPEDEF(0x03CD73E8, SurvivalAzazelBehaviour_EnragedEyes_d_141); +DO_TYPEDEF(0x03CD73E0, SurvivalAzazelBehaviour_DelayBreathing_d_146); +DO_TYPEDEF(0x03CD73D8, SurvivalAzazelBehaviour_DelayBreathingVolume_d_148); +DO_TYPEDEF(0x03CD73D0, SurvivalAzazelBehaviour_DelayStartWatchingClip_d_150); +DO_TYPEDEF(0x03CD7380, SurvivalAzazelBehaviour_c_DisplayClass158_0); +DO_TYPEDEF(0x03CD7350, SurvivalAzazelBehaviour_DeactivateKnockoutRagdoll_d_161); +DO_TYPEDEF(0x03CD7348, SurvivalAzazelBehaviour_FinalGoatBurnt_d_165); +DO_TYPEDEF(0x03CD7340, SurvivalAzazelBehaviour_DelayScream_d_166); +DO_TYPEDEF(0x03CD7330, SurvivalAzazelBehaviour_DelayEnableMainAudioSource_d_168); +DO_TYPEDEF(0x03D14870, BoarBehaviour); +DO_TYPEDEF(0x03CD71A0, Dictionary_2_System_String_UnityEngine_Color_); +DO_TYPEDEF(0x03CD71F0, BoarBehaviour_FinishSpawn_d_60); +DO_TYPEDEF(0x03CD71D0, BoarBehaviour_Die_d_67); +DO_TYPEDEF(0x03CD71C8, BoarBehaviour_Dissolve_d_68); +DO_TYPEDEF(0x03CD71C0, BoarBehaviour_AttackPlayer_d_70); +DO_TYPEDEF(0x03CD71B8, BoarBehaviour_ReverseDissolve_d_74); +DO_TYPEDEF(0x03CD71B0, BoarBehaviour_WanderGrunt_d_80); +DO_TYPEDEF(0x03CD71A8, BoarBehaviour_ChaseGrunt_d_81); +DO_TYPEDEF(0x03CD7040, Dictionary_2_UnityEngine_Material_UnityEngine_Color_); +DO_TYPEDEF(0x03D18068, ICollection_1_UnityEngine_Material__1); +DO_TYPEDEF(0x03D18060, IEnumerable_1_UnityEngine_Material__1); +DO_TYPEDEF(0x03CED678, CrowFlightController); +DO_TYPEDEF(0x03CD7070, CrowBehaviour_Die_d_71); +DO_TYPEDEF(0x03CD7068, CrowBehaviour_Dissolve_d_72); +DO_TYPEDEF(0x03CD7060, CrowBehaviour_FadeIn_d_75); +DO_TYPEDEF(0x03CD7058, CrowBehaviour_PlayFleeClips_d_80); +DO_TYPEDEF(0x03CD7050, CrowBehaviour_AttackPlayer_d_89); +DO_TYPEDEF(0x03CD7048, CrowBehaviour_TriggerRandomIdles_d_93); +DO_TYPEDEF(0x03CED670, CrowFlightController_TakeOff_d_46); +DO_TYPEDEF(0x03CED658, CrowFlightController_Land_d_47); +DO_TYPEDEF(0x03CED648, CrowFlightController_Flying_d_48); +DO_TYPEDEF(0x03CED4A8, GhostBehaviour_Die_d_85); +DO_TYPEDEF(0x03CED490, GhostBehaviour_Dissolve_d_86); +DO_TYPEDEF(0x03CED470, GhostBehaviour_AttackPlayer_d_90); +DO_TYPEDEF(0x03CED448, GhostBehaviour_FadeIn_d_93); +DO_TYPEDEF(0x03CED338, SpiderBehaviour_Die_d_61); +DO_TYPEDEF(0x03CED330, SpiderBehaviour_Dissolve_d_62); +DO_TYPEDEF(0x03CED328, SpiderBehaviour_AttackPlayer_d_65); +DO_TYPEDEF(0x03CED320, SpiderBehaviour_FadeIn_d_68); +DO_TYPEDEF(0x03CED248, SurvivalDemonBehaviour_c); +DO_TYPEDEF(0x03CED210, SurvivalDemonBehaviour_WaitForSpawn_d_96); +DO_TYPEDEF(0x03CED208, SurvivalDemonBehaviour_Dissolve_d_97); +DO_TYPEDEF(0x03CED200, SurvivalDemonBehaviour_ReverseDissolve_d_98); +DO_TYPEDEF(0x03CED1F8, SurvivalDemonBehaviour_Spawned_d_99); +DO_TYPEDEF(0x03CED1E8, SurvivalDemonBehaviour_LetGoFallback_d_111); +DO_TYPEDEF(0x03CF02D8, CorpseBehaviour_FinishSpawn_d_47); +DO_TYPEDEF(0x03CF02B0, CorpseBehaviour_Die_d_52); +DO_TYPEDEF(0x03CF0298, CorpseBehaviour_Dissolve_d_53); +DO_TYPEDEF(0x03CF0288, CorpseBehaviour_FadeIn_d_55); +DO_TYPEDEF(0x03CF0278, CorpseBehaviour_PlayFleeClips_d_61); +DO_TYPEDEF(0x03CF0270, CorpseBehaviour_PlayIntroPainClips_d_62); +DO_TYPEDEF(0x03CEFCF8, ForceLoadRagdoll_OnRagdollLoadedHandler); +DO_TYPEDEF(0x03CF0138, ForceLoadRagdoll_c); +DO_TYPEDEF(0x03CF0110, Converter_2_UnityEngine_Renderer_UnityEngine_SkinnedMeshRenderer_); +DO_TYPEDEF(0x03CF01F8, ForceLoadRagdoll_LoadRagdoll_d_14); +DO_TYPEDEF(0x03CF01F0, ForceLoadRagdoll_LoadRobeTexture_d_15); +DO_TYPEDEF(0x03CF0090, PetCrowFlightController_TakeOff_d_9); +DO_TYPEDEF(0x03CF0080, PetCrowFlightController_Land_d_10); +DO_TYPEDEF(0x03CF0070, PetCrowFlightController_Flying_d_11); +DO_TYPEDEF(0x03CF0008, PurgatoryCorpseBehaviour_Die_d_42); +DO_TYPEDEF(0x03CF0000, PurgatoryCorpseBehaviour_Dissolve_d_43); +DO_TYPEDEF(0x03CEFFE0, PurgatoryCorpseBehaviour_PlayFleeClips_d_45); +DO_TYPEDEF(0x03CEFF50, PurgatoryGhostBehaviour_Die_d_70); +DO_TYPEDEF(0x03CEFF38, PurgatoryGhostBehaviour_Dissolve_d_71); +DO_TYPEDEF(0x03CEFF28, PurgatoryGhostBehaviour_AttackPlayer_d_72); +DO_TYPEDEF(0x03CEFF18, PurgatoryGhostBehaviour_FadeIn_d_74); +DO_TYPEDEF(0x03CEFE80, RagdollLoader_c); +DO_TYPEDEF(0x03CEFE18, Func_2_UnityEngine_GameObject_f_AnonymousType1_3_); +DO_TYPEDEF(0x03CEFE68, _f_AnonymousType1_3_Photon_Bolt_PrefabId_System_String_System_String_); +DO_TYPEDEF(0x03CEFED0, RagdollLoader_LoadRagdolls_d_13); +DO_TYPEDEF(0x03CEFEB8, RagdollLoader_CreateRagdoll_d_14); +DO_TYPEDEF(0x03CEFEB0, RagdollLoader_LoadRobeTexture_d_15); +DO_TYPEDEF(0x03CEFE98, RagdollLoader_OnReconnectOutfitLoadedInternal_d_18); +DO_TYPEDEF(0x03CF38B8, SimpleMoveTowards_HasArrived); +DO_TYPEDEF(0x03CEFC90, SimulateKnockout_NathanKnockout_d_15); +DO_TYPEDEF(0x03CEFC80, SimulateKnockout_NathanVentKnockout_d_16); +DO_TYPEDEF(0x03CEFC50, SimulateKnockout_DelaySetAnimatorBoolValue_d_17); +DO_TYPEDEF(0x03CEFC40, SimulateKnockout_Dissolve_d_19); +DO_TYPEDEF(0x03CCCBC0, BlendShapesPresetControllerBase_BlendShapeState); +DO_TYPEDEF(0x03CE5058, BlendShapesPresetControllerBase); +DO_TYPEDEF(0x03CCCB40, List_1_Kalagaan_BlendShapesPresetTool_BlendShapesPresetTemplateBase_PresetData_); +DO_TYPEDEF(0x03CCCB30, List_1_Kalagaan_BlendShapesPresetTool_BlendShapesPresetTemplateBase_BlendShapeData_); +DO_TYPEDEF(0x03CCCBD8, BlendShapesPresetControllerBase_BlendShapeState__Array); +DO_TYPEDEF(0x03CCCBC8, BlendShapesPresetControllerBase_PresetState); +DO_TYPEDEF(0x03CCCB68, List_1_Kalagaan_BlendShapesPresetTool_BlendShapesPresetControllerBase_PresetState_); +DO_TYPEDEF(0x03CCCB58, List_1_Kalagaan_BlendShapesPresetTool_BlendShapesPresetControllerBase_); +DO_TYPEDEF(0x03CF21A8, AnnaBlendShapes_DelayClear_d_8); +DO_TYPEDEF(0x03CF2118, AnnaIntro_AnnaExit_d_22); +DO_TYPEDEF(0x03CF2010, AmbientRandomAudio_FadeOutRandomAudioSource_d_31); +DO_TYPEDEF(0x03CF1D90, DialogueHint_PlayDialogue_d_15); +DO_TYPEDEF(0x03CF1D58, DialogueManager_PlayDialogueLine_d_9); +DO_TYPEDEF(0x03CF1D38, DialogueManual_PlayDialogue_d_2); +DO_TYPEDEF(0x03CF1D18, DialogueTrigger_PlayDialogue_d_7); +DO_TYPEDEF(0x03CF1CE0, List_1_OutdoorsAudioWindowPoint_); +DO_TYPEDEF(0x03CF1C68, AudioLowPassFilter__Array); +DO_TYPEDEF(0x03CF1C80, OutdoorsAudio_c_DisplayClass39_0); +DO_TYPEDEF(0x03CF1C70, OutdoorsAudio_c_DisplayClass41_0); +DO_TYPEDEF(0x03CF1C40, PlayRandomAudioClip_PlayAgain_d_19); +DO_TYPEDEF(0x03CF1C38, PlayRandomAudioClip_DisableOnPlayed_d_20); +DO_TYPEDEF(0x03CF1C20, RoomReverbEffect_FadeReverbIn_d_5); +DO_TYPEDEF(0x03CF1C18, RoomReverbEffect_FadeReverbOut_d_6); +DO_TYPEDEF(0x03CF1BE8, Dictionary_2_UnityEngine_AudioSource_System_Single_); +DO_TYPEDEF(0x03CF1B80, CandleBehaviour_c_DisplayClass6_0); +DO_TYPEDEF(0x03CF1B70, CarryGoatController_Bah_d_5); +DO_TYPEDEF(0x03CF1B08, CharacterLoader_WaitForValidation_d_36); +DO_TYPEDEF(0x03CF1B00, CharacterLoader_LoadOutfit_d_37); +DO_TYPEDEF(0x03CF1AF8, CharacterLoader_LoadRobeTexture_d_38); +DO_TYPEDEF(0x03CF1AF0, CharacterLoader_LoadFlashlight_d_39); +DO_TYPEDEF(0x03CF1AE8, CharacterLoader_DisableUpdateWhenOffscreen_d_40); +DO_TYPEDEF(0x03CF3DC8, CutsceneCharacterLoader_LoadOutfit_d_4); +DO_TYPEDEF(0x03CF3DC0, CutsceneCharacterLoader_LoadRobeTexture_d_5); +DO_TYPEDEF(0x03CF3DB8, CutsceneCharacterLoader_LoadFlashlight_d_6); +DO_TYPEDEF(0x03CF3D48, AsylumAltarEndingController_c_DisplayClass15_0); DO_TYPEDEF(0x03CAAD70, PlayableAsset); +DO_TYPEDEF(0x03CAAD18, TimelineClip); DO_TYPEDEF(0x03CAAA60, DiscreteTime); +DO_TYPEDEF(0x03CCE3A0, TrackAsset); +DO_TYPEDEF(0x03CFE518, PlayableHandle); +DO_TYPEDEF(0x03CD29F0, Playable); +DO_TYPEDEF(0x03CFE368, PlayableOutputHandle); +DO_TYPEDEF(0x03CFE408, PlayableOutput); DO_TYPEDEF(0x03CAA270, IEnumerable_1_UnityEngine_Playables_PlayableBinding_); DO_TYPEDEF(0x03CAA8E0, List_1_UnityEngine_Timeline_TrackAsset_); DO_TYPEDEF(0x03CA9FD0, TrackAsset__Array); +DO_TYPEDEF(0x03CF3948, IEnumerator_1_UnityEngine_Timeline_TrackAsset_); DO_TYPEDEF(0x03CAA4D8, List_1_UnityEngine_Timeline_TimelineClip_); -DO_TYPEDEF(0x03CAAD18, TimelineClip); DO_TYPEDEF(0x03CAAFA8, TimelineClip__Array); -DO_TYPEDEF(0x03CAA010, List_1_UnityEngine_Timeline_IMarker_); +DO_TYPEDEF(0x03CF3D08, IEnumerator_1_UnityEngine_Timeline_TimelineClip_); DO_TYPEDEF(0x03CAA388, IMarker); +DO_TYPEDEF(0x03CAA010, List_1_UnityEngine_Timeline_IMarker_); DO_TYPEDEF(0x03CAA370, IEnumerator_1_UnityEngine_Timeline_IMarker_); DO_TYPEDEF(0x03CAA3C0, Action_3_UnityEngine_Timeline_TimelineClip_UnityEngine_GameObject_UnityEngine_Playables_Playable_); DO_TYPEDEF(0x03CAA2F0, Action_3_UnityEngine_Timeline_TrackAsset_UnityEngine_GameObject_UnityEngine_Playables_Playable_); DO_TYPEDEF(0x03CAA6B0, List_1_UnityEngine_ScriptableObject_); +DO_TYPEDEF(0x03CF3940, IEnumerable_1_UnityEngine_Timeline_TrackAsset_); DO_TYPEDEF(0x03CA9FC8, Dictionary_2_System_Type_UnityEngine_Timeline_TrackBindingTypeAttribute_); DO_TYPEDEF(0x03CA9FF8, TrackBindingTypeAttribute); DO_TYPEDEF(0x03CAAE68, IPropertyCollector); @@ -832,44 +2995,1141 @@ DO_TYPEDEF(0x03CAAFC8, IntervalTree_1_RuntimeElement_); DO_TYPEDEF(0x03CAB088, List_1_UnityEngine_Timeline_IntervalTree_1_Entry_); DO_TYPEDEF(0x03CAAD10, InfiniteRuntimeClip); DO_TYPEDEF(0x03C8B9B0, List_1_UnityEngine_Timeline_IntervalTreeNode_); +DO_TYPEDEF(0x03CF3D10, AsylumAltarEndingController_TriggerZap_d_17); +DO_TYPEDEF(0x03CF3CF8, AsylumAltarEndingController_c_DisplayClass18_0); +DO_TYPEDEF(0x03CF3CD8, AsylumCanteenEndingController_c_DisplayClass11_0); +DO_TYPEDEF(0x03CF3CB8, AsylumCanteenEndingController_c_DisplayClass12_0); +DO_TYPEDEF(0x03CF3CA0, AsylumMorgueEndingController_CloseMorgueLockerDoors_d_20); +DO_TYPEDEF(0x03CF3C78, AsylumWinEndingController_PlayerPrefab); +DO_TYPEDEF(0x03CF3C58, List_1_AsylumWinEndingController_PlayerPrefab_); +DO_TYPEDEF(0x03CF3C88, AsylumWinEndingController_SetHairLayer_d_14); +DO_TYPEDEF(0x03CF3C20, AsylumWinEndingController_c_DisplayClass17_0); +DO_TYPEDEF(0x03D1B3C0, PlayableBinding); +DO_TYPEDEF(0x03CFD748, PlayableBinding_CreateOutputMethod); +DO_TYPEDEF(0x03D10DD0, PlayableBinding__Array); +DO_TYPEDEF(0x03CF3C68, AsylumWinEndingController_SpawnPlayersInternal_d_17); +DO_TYPEDEF(0x03CF3C60, AsylumWinEndingController_BurnMollyInternal_d_19); +DO_TYPEDEF(0x03CF3BF8, FailEnding2Controller_DisableIKTarget_d_18); +DO_TYPEDEF(0x03CF3BC0, FailEnding3Controller_c_DisplayClass17_0); +DO_TYPEDEF(0x03CF3BD8, Func_2_UnityEngine_AudioClip_Int32_); +DO_TYPEDEF(0x03CF3BB0, FailEnding3Controller_c_DisplayClass17_1); +DO_TYPEDEF(0x03CF3B90, FailEnding3Controller_c_DisplayClass23_0); +DO_TYPEDEF(0x03CF3B80, InnCaveEndingController_c_DisplayClass21_0); +DO_TYPEDEF(0x03CF3B70, InnCaveEndingController_c_DisplayClass21_1); +DO_TYPEDEF(0x03CF3B50, InnCaveEndingController_c_DisplayClass25_0); +DO_TYPEDEF(0x03CF3B30, InnWinEndingController_PlayHoleDust_d_14); +DO_TYPEDEF(0x03CF3B08, IntroDirectorController_Stopped_d_13); DO_TYPEDEF(0x03CA9CB8, SignalEmitter); +DO_TYPEDEF(0x03CF3AB0, ParameterizedEmitter2_2_UnityEngine_Vector3_System_Single_); DO_TYPEDEF(0x03CA9D40, SignalAsset); DO_TYPEDEF(0x03CA9D38, Action_1_UnityEngine_Timeline_SignalAsset_); +DO_TYPEDEF(0x03CF3A78, ParameterizedEmitter2_2_UnityEngine_Vector3_UnityEngine_Vector3_); +DO_TYPEDEF(0x03CF3A20, ParameterizedEmitter_1_UnityEngine_Vector3_); +DO_TYPEDEF(0x03CF39E8, ParameterizedEmitter3_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Single_); DO_TYPEDEF(0x03CAA110, INotification); +DO_TYPEDEF(0x03CF3AA0, SignalReceiverWithTransformOffsets_c_DisplayClass2_0); +DO_TYPEDEF(0x03CF3A68, SignalReceiverWithTransformOffsetsFullRot_c_DisplayClass2_0); +DO_TYPEDEF(0x03CF3A10, SignalReceiverWithVector3_c_DisplayClass2_0); +DO_TYPEDEF(0x03CF39D8, SignalReceiverWithVector3Vector3Float_c_DisplayClass2_0); +DO_TYPEDEF(0x03CF39A0, SlaughterhouseBoarEndingController_c_DisplayClass7_0); +DO_TYPEDEF(0x03CF3988, SlaughterhouseBoarEndingController_c_DisplayClass10_0); +DO_TYPEDEF(0x03CF3960, SlaughterhouseDunkerEndingController_c); +DO_TYPEDEF(0x03CF3D78, Func_2_UnityEngine_Timeline_TrackAsset_Boolean_); +DO_TYPEDEF(0x03CF3938, SlaughterhouseKitchenEndingController_c); +DO_TYPEDEF(0x03CF3908, SlaughterhouseWinEndingController_c); +DO_TYPEDEF(0x03CF38F8, SlaughterhouseWinEndingController_FadeOutParticlesInternal_d_14); +DO_TYPEDEF(0x03CF3888, TownGhostEndingController_c_DisplayClass17_0); +DO_TYPEDEF(0x03CF3880, TownGhostEndingController_c_DisplayClass17_1); +DO_TYPEDEF(0x03CF3870, TownGhostEndingController_c_DisplayClass23_0); +DO_TYPEDEF(0x03CF3860, TownSaloonEndingController_Ragdoll_d_7); +DO_TYPEDEF(0x03D18050, IList_1_UnityEngine_Material_); +DO_TYPEDEF(0x03CF3750, WinEndingController_PlayerPrefab); +DO_TYPEDEF(0x03CF36D0, List_1_WinEndingController_PlayerPrefab_); +DO_TYPEDEF(0x03CF36A0, WinEndingController_c_DisplayClass32_0); +DO_TYPEDEF(0x03CF3728, WinEndingController_SpawnAltarPlayersInternal_d_32); +DO_TYPEDEF(0x03CF3720, WinEndingController_BoostFlamesInternal_d_34); +DO_TYPEDEF(0x03CF3708, WinEndingController_SlowDissolve_d_36); +DO_TYPEDEF(0x03CF3658, WinLeadupMusic_FadeOutOnAnnaApproach_d_10); +DO_TYPEDEF(0x03CF35F8, SurvivalDebugScripts); +DO_TYPEDEF(0x03D17F88, GlobalVariables); +DO_TYPEDEF(0x03CC0BC0, VariableSerializationData); +DO_TYPEDEF(0x03CF63B0, DevourGraphUpdateObject); +DO_TYPEDEF(0x03CF35B0, DiscordManager); +DO_TYPEDEF(0x03CFF190, Discord); +DO_TYPEDEF(0x03D055E8, ApplicationManager); +DO_TYPEDEF(0x03D05448, UserManager_FFIEvents_CurrentUserUpdateHandler); +DO_TYPEDEF(0x03D055E0, UserManager); +DO_TYPEDEF(0x03D05458, UserManager_CurrentUserUpdateHandler); +DO_TYPEDEF(0x03D055D8, ImageManager); +DO_TYPEDEF(0x03CFF290, ActivityManager_FFIEvents_ActivityJoinHandler); +DO_TYPEDEF(0x03CFF258, ActivityManager_FFIEvents_ActivitySpectateHandler); +DO_TYPEDEF(0x03CFF288, ActivityManager_FFIEvents_ActivityJoinRequestHandler); +DO_TYPEDEF(0x03CFF180, User); +DO_TYPEDEF(0x03CFF298, ActivityManager_FFIEvents_ActivityInviteHandler); +DO_TYPEDEF(0x03CFF178, ActivityActionType__Enum); +DO_TYPEDEF(0x03CFF170, Activity); +DO_TYPEDEF(0x03D055D0, ActivityManager); +DO_TYPEDEF(0x03CFF320, ActivityManager_ActivityJoinHandler); +DO_TYPEDEF(0x03CFF310, ActivityManager_ActivitySpectateHandler); +DO_TYPEDEF(0x03CFF308, ActivityManager_ActivityJoinRequestHandler); +DO_TYPEDEF(0x03CFF2F8, ActivityManager_ActivityInviteHandler); +DO_TYPEDEF(0x03D05328, RelationshipManager_FFIEvents_RefreshHandler); +DO_TYPEDEF(0x03D05310, RelationshipManager_FFIEvents_RelationshipUpdateHandler); +DO_TYPEDEF(0x03D052D8, Relationship); +DO_TYPEDEF(0x03D055C8, RelationshipManager); +DO_TYPEDEF(0x03D05348, RelationshipManager_RefreshHandler); +DO_TYPEDEF(0x03D05340, RelationshipManager_RelationshipUpdateHandler); +DO_TYPEDEF(0x03D05208, LobbyManager_FFIEvents_LobbyUpdateHandler); +DO_TYPEDEF(0x03D05258, LobbyManager_FFIEvents_LobbyDeleteHandler); +DO_TYPEDEF(0x03D051F8, LobbyManager_FFIEvents_MemberConnectHandler); +DO_TYPEDEF(0x03D051E8, LobbyManager_FFIEvents_MemberUpdateHandler); +DO_TYPEDEF(0x03D051F0, LobbyManager_FFIEvents_MemberDisconnectHandler); +DO_TYPEDEF(0x03D05210, LobbyManager_FFIEvents_LobbyMessageHandler); +DO_TYPEDEF(0x03D051D8, LobbyManager_FFIEvents_SpeakingHandler); +DO_TYPEDEF(0x03D051E0, LobbyManager_FFIEvents_NetworkMessageHandler); +DO_TYPEDEF(0x03D055C0, LobbyManager); +DO_TYPEDEF(0x03D052A0, LobbyManager_LobbyUpdateHandler); +DO_TYPEDEF(0x03D05298, LobbyManager_LobbyDeleteHandler); +DO_TYPEDEF(0x03D05290, LobbyManager_MemberConnectHandler); +DO_TYPEDEF(0x03D05288, LobbyManager_MemberUpdateHandler); +DO_TYPEDEF(0x03D05280, LobbyManager_MemberDisconnectHandler); +DO_TYPEDEF(0x03D05278, LobbyManager_LobbyMessageHandler); +DO_TYPEDEF(0x03D05270, LobbyManager_SpeakingHandler); +DO_TYPEDEF(0x03D05268, LobbyManager_NetworkMessageHandler); +DO_TYPEDEF(0x03D04EC0, NetworkManager_FFIEvents_MessageHandler); +DO_TYPEDEF(0x03D04EA8, NetworkManager_FFIEvents_RouteUpdateHandler); +DO_TYPEDEF(0x03D055B8, NetworkManager); +DO_TYPEDEF(0x03D04EE0, NetworkManager_MessageHandler); +DO_TYPEDEF(0x03D04ED8, NetworkManager_RouteUpdateHandler); +DO_TYPEDEF(0x03D04DF0, OverlayManager_FFIEvents_ToggleHandler); +DO_TYPEDEF(0x03D055B0, OverlayManager); +DO_TYPEDEF(0x03D04E10, OverlayManager_ToggleHandler); +DO_TYPEDEF(0x03D055A8, StorageManager); +DO_TYPEDEF(0x03D0C790, StoreManager_FFIEvents_EntitlementCreateHandler); +DO_TYPEDEF(0x03D0C6B8, Entitlement); +DO_TYPEDEF(0x03D0C788, StoreManager_FFIEvents_EntitlementDeleteHandler); +DO_TYPEDEF(0x03D055A0, StoreManager); +DO_TYPEDEF(0x03D0C7B0, StoreManager_EntitlementCreateHandler); +DO_TYPEDEF(0x03D0C7A8, StoreManager_EntitlementDeleteHandler); +DO_TYPEDEF(0x03D0C5E8, VoiceManager_FFIEvents_SettingsUpdateHandler); +DO_TYPEDEF(0x03D05598, VoiceManager); +DO_TYPEDEF(0x03D0C620, VoiceManager_SettingsUpdateHandler); +DO_TYPEDEF(0x03D0C4A8, AchievementManager_FFIEvents_UserAchievementUpdateHandler); +DO_TYPEDEF(0x03D0C448, UserAchievement); +DO_TYPEDEF(0x03D05590, AchievementManager); +DO_TYPEDEF(0x03D0C4C8, AchievementManager_UserAchievementUpdateHandler); +DO_TYPEDEF(0x03CF3590, DiscordManager_c); +DO_TYPEDEF(0x03CFF228, ActivityManager_UpdateActivityHandler); +DO_TYPEDEF(0x03D05A88, Result__Enum); +DO_TYPEDEF(0x03CF3580, DiscordManager_DelayUpdateActivityInternal_d_10); +DO_TYPEDEF(0x03CF6488, BoltPlayer_1_Photon_Bolt_IPlayerState_); +DO_TYPEDEF(0x03CF6470, Func_2_Photon_Bolt_IPlayerState_String_); +DO_TYPEDEF(0x03CF6490, Action_2_Photon_Bolt_IPlayerState_String_); +DO_TYPEDEF(0x03CF6468, DissonancePlayerTracking_c); +DO_TYPEDEF(0x03CF6410, VoiceReverbTrigger_FadePreset_d_12); +DO_TYPEDEF(0x03CF62D0, EasingFunctions_Back); +DO_TYPEDEF(0x03CF6288, ElevatorBehaviour_GetLocalCharacterLocomotion_d_9); +DO_TYPEDEF(0x03CF6170, ClockController_DelayedChime_d_14); +DO_TYPEDEF(0x03CF6168, ClockController_GoBackToTicking_d_15); +DO_TYPEDEF(0x03CF6160, ClockController_EnrageEnd_d_18); +DO_TYPEDEF(0x03CF60B8, Dictionary_2_System_Int32_PlayerFlashlightBeam_); +DO_TYPEDEF(0x03CF6078, HeightFogScaler_c_DisplayClass9_0); +DO_TYPEDEF(0x03CF6058, LowerFog_FadeInFog_d_6); +DO_TYPEDEF(0x03CF6050, LowerFog_FadeOutFog_d_7); +DO_TYPEDEF(0x03CF6000, MoveClothInWind_SetClothExternalAcceleration_d_11); +DO_TYPEDEF(0x03CF5F48, NightmareStyling_StartBloodDrip_d_6); +DO_TYPEDEF(0x03CF5E80, ObjectShaker_SetPropRigidbodiesKinematicAfterSeconds_d_23); +DO_TYPEDEF(0x03CF2C98, SpriteRenderer); +DO_TYPEDEF(0x03CF5E28, Silhouette_FadeOutSprite_d_5); +DO_TYPEDEF(0x03CF5D80, TVJumpScare_JumpScare_d_6); +DO_TYPEDEF(0x03CF5D00, FireTrapBehaviour_CloseTrap_d_13); +DO_TYPEDEF(0x03CF5CF0, FireTrapBehaviour_FadeOutLight_d_14); +DO_TYPEDEF(0x03CF8368, GameUI_c); +DO_TYPEDEF(0x03CDC800, Predicate_1_UnityEngine_UI_Dropdown_OptionData_); +DO_TYPEDEF(0x03CF5C00, GameUI_Start_d_367); +DO_TYPEDEF(0x03CF5BA8, GameUI_ControllerReselectDelayed_d_374); +DO_TYPEDEF(0x03CF5B78, GameUI_ShowGoatCount_d_378); +DO_TYPEDEF(0x03CF5B58, GameUI_ShowCollectableModalInternal_d_384); +DO_TYPEDEF(0x03CF5B48, GameUI_ShowCurrentPerkCoroutine_d_385); +DO_TYPEDEF(0x03CF5B28, GameUI_ShowKeyPickupModalInternal_d_389); +DO_TYPEDEF(0x03CF59E0, GameUI_c_DisplayClass414_0); +DO_TYPEDEF(0x03CF5988, GameUI_WaitForPlayerVote_d_419); +DO_TYPEDEF(0x03CF5980, GameUI_WaitForGlobalVote_d_420); +DO_TYPEDEF(0x03CF5908, GameUI_OnApplicationFocus_d_439); +DO_TYPEDEF(0x03CF58F8, GameUI_FadeBatteryGauge_d_447); +DO_TYPEDEF(0x03CF58F0, GameUI_ShowFocusFlashlightTutorial_d_448); +DO_TYPEDEF(0x03CF58E8, GameUI_ShowFocusInnWebTutorial_d_449); +DO_TYPEDEF(0x03CF58E0, GameUI_ShowDropTutorial_d_450); +DO_TYPEDEF(0x03CF58D8, GameUI_ShowFlashlightTutorialInternal_d_456); +DO_TYPEDEF(0x03CF58D0, GameUI_HideFlashlightTutorial_d_457); +DO_TYPEDEF(0x03CF58C8, GameUI_ShowLockedDoorHintInternal_d_459); +DO_TYPEDEF(0x03CF58C0, GameUI_ShowCalmDownTutorialInternal_d_461); +DO_TYPEDEF(0x03CF58B8, GameUI_ShowStaggerToCalmDownTutorialInternal_d_463); +DO_TYPEDEF(0x03CF58B0, GameUI_ShowAzazelUVTutorialInternal_d_465); +DO_TYPEDEF(0x03CF58A0, GameUI_ShowBatteryTutorialInternal_d_467); +DO_TYPEDEF(0x03CF5898, GameUI_ShowViewKeysTutorial_d_468); +DO_TYPEDEF(0x03CF5890, GameUI_DisplayTutorial_d_469); +DO_TYPEDEF(0x03CF5888, GameUI_ShowDirtyEggShrineTutorialInternal_d_471); +DO_TYPEDEF(0x03CF5880, GameUI_ShowIncorrectShrineTutorialInternal_d_473); +DO_TYPEDEF(0x03CF5878, GameUI_ShowDirtyEggFountainTutorialInternal_d_475); +DO_TYPEDEF(0x03CF5868, GameUI_ShowAltarRitualBookTutorialInternal_d_477); +DO_TYPEDEF(0x03CF5858, GameUI_ShowPentagramCandleTutorialInternal_d_479); +DO_TYPEDEF(0x03CF5848, GameUI_ShowPentagramBookTutorialInternal_d_481); +DO_TYPEDEF(0x03CF5840, GameUI_ShowPentagramInactiveTutorialInternal_d_483); +DO_TYPEDEF(0x03CF5828, GameUI_ShowManorIncorrectPhotoTutorialInternal_d_485); +DO_TYPEDEF(0x03CF5818, GameUI_ShowHidingPlayerFoundTutorialInternal_d_487); +DO_TYPEDEF(0x03CF5800, GameUI_ShowKeysList_d_493); +DO_TYPEDEF(0x03CF57F0, GameUI_HideKeysList_d_494); +DO_TYPEDEF(0x03CF57D8, GameUI_AutoHideKeysList_d_495); +DO_TYPEDEF(0x03CF5768, GameUI_ShowMessageList_d_509); +DO_TYPEDEF(0x03CF5750, GameUI_HideMessageList_d_510); +DO_TYPEDEF(0x03CF5738, GameUI_c_DisplayClass515_0); +DO_TYPEDEF(0x03CF5710, GameUI_DelayPositionCanvasesInVRInternal_d_526); +DO_TYPEDEF(0x03CF5650, GameUI_ShowBoarChargeItemDropTutorialInternal_d_544); +DO_TYPEDEF(0x03CF5610, GameUI_c_DisplayClass548_0); +DO_TYPEDEF(0x03CF5600, GameUI_c_DisplayClass548_1); +DO_TYPEDEF(0x03CF55A8, GameUI_DelayEnableKeyBindingsScrollToSelection_d_556); +DO_TYPEDEF(0x03CBA970, UIGradient); +DO_TYPEDEF(0x03CBACD0, GraphicConnector); +DO_TYPEDEF(0x03CBAB30, List_1_Coffee_UIEffects_GraphicConnector_); +DO_TYPEDEF(0x03CBAB20, Dictionary_2_System_Type_Coffee_UIEffects_GraphicConnector_); +DO_TYPEDEF(0x03CBD868, Hash128); +DO_TYPEDEF(0x03CBAE28, BaseMaterialEffect); +DO_TYPEDEF(0x03CBAD98, List_1_Coffee_UIEffects_UISyncEffect_); +DO_TYPEDEF(0x03CBAA78, ParameterTexture); +DO_TYPEDEF(0x03CC9D20, List_1_System_Action_); +DO_TYPEDEF(0x03CF7D70, IngameStatsTracker); +DO_TYPEDEF(0x03CF7CF0, IngameStatsTracker_StatsPlayer); +DO_TYPEDEF(0x03CF7D30, List_1_IngameStatsTracker_StatsPlayer_); +DO_TYPEDEF(0x03CF7CC8, IngameStatsTracker_StatsPlayer_PlayerInfo); +DO_TYPEDEF(0x03CF7CD0, IngameStatsTracker_StatsPlayer_Stats); +DO_TYPEDEF(0x03CF7D20, IngameStatsTracker_StatsGame); +DO_TYPEDEF(0x03CDFE58, GameStatsToken); +DO_TYPEDEF(0x03CDFE48, GameStatsPlayerToken); +DO_TYPEDEF(0x03CF7CA8, InnEggRenderer_c_DisplayClass10_0); +DO_TYPEDEF(0x03CF7C48, InnIntro_EndIntroDelayed_d_18); +DO_TYPEDEF(0x03CF7AD0, InnMapController_c); +DO_TYPEDEF(0x03CF7B28, Func_2_UnityEngine_GameObject_InitialGoatSpawn_); +DO_TYPEDEF(0x03CF7B38, Func_2_UnityEngine_GameObject_UnityEngine_Transform_); +DO_TYPEDEF(0x03CF7B40, Func_2_InitialGoatSpawn_UnityEngine_Transform_); +DO_TYPEDEF(0x03CF7AB8, InnMapController_c_DisplayClass29_0); +DO_TYPEDEF(0x03D1B698, Func_2_UnityEngine_GameObject_Int32_); +DO_TYPEDEF(0x03CF7A00, InnMazeController_c); +DO_TYPEDEF(0x03CF7A78, Comparison_1_Int32_); +DO_TYPEDEF(0x03CF79E0, InnMazeController_c_DisplayClass12_0); +DO_TYPEDEF(0x03CFA230, InnShojiDoorCrawlRendering_SetTransparentInternal_d_12); +DO_TYPEDEF(0x03CFA208, InnShrineController_DestroyShrine_d_34); +DO_TYPEDEF(0x03CE9858, Fry__Array); +DO_TYPEDEF(0x03CFA148, Dictionary_2_UnityEngine_MeshRenderer_UnityEngine_Material_); +DO_TYPEDEF(0x03CFA150, Dictionary_2_UnityEngine_MeshRenderer_UnityEngine_Vector3_); +DO_TYPEDEF(0x03CFA180, InnWebController_WaitToEnableCollider_d_37); +DO_TYPEDEF(0x03CFA178, InnWebController_FadeIn_d_39); +DO_TYPEDEF(0x03CFA170, InnWebController_Dissolve_d_40); +DO_TYPEDEF(0x03CFA110, InnWebTrigger); +DO_TYPEDEF(0x03CFA108, InnWebTrigger_DisableShootRun_d_3); +DO_TYPEDEF(0x03CFA0E0, SurvivalEggController_DelayEnableInteract_d_10); +DO_TYPEDEF(0x03CFA068, JumpScare_ShowCamera_d_41); +DO_TYPEDEF(0x03CFA060, JumpScare_TransitionToNormalAudio_d_42); +DO_TYPEDEF(0x03CFA050, JumpScare_c); +DO_TYPEDEF(0x03CF9FE8, List_1_UnityEngine_Color_); +DO_TYPEDEF(0x03CF9FF8, EndingLightFade_FadeLightsOut_d_5); +DO_TYPEDEF(0x03CF9F90, CrowPerchManager_c); +DO_TYPEDEF(0x03CF9FA0, Func_2_UnityEngine_GameObject_UnityEngine_GameObject_); +DO_TYPEDEF(0x03CF9F70, Func_2_System_Collections_Generic_KeyValuePair_2_Boolean_); +DO_TYPEDEF(0x03CF9F58, Func_2_System_Collections_Generic_KeyValuePair_2_UnityEngine_GameObject_); +DO_TYPEDEF(0x03CF9F00, ManorIntro_ResetRecentlyAttached_d_7); +DO_TYPEDEF(0x03CF9EF8, ManorIntro_FinishIntro_d_12); +DO_TYPEDEF(0x03CF9E20, ManorMapController_c); +DO_TYPEDEF(0x03D0C210, Func_2_UnityEngine_GameObject_Boolean_); +DO_TYPEDEF(0x03CF9E00, ManorMapController_c_DisplayClass24_0); +DO_TYPEDEF(0x03CF9D08, ManorMirrorController_WaitToRenderProbe_d_33); +DO_TYPEDEF(0x03CF9CF8, ManorMirrorController_DelayFreezeRigidbodies_d_37); +DO_TYPEDEF(0x03CF9CA8, ManorPhotoRenderer_c_DisplayClass7_0); +DO_TYPEDEF(0x03CF9BF0, ManorSpiritController_BanishSpirit_d_30); +DO_TYPEDEF(0x03CF9BB0, SurvivalPhotoController_DelayEnableInteract_d_6); +DO_TYPEDEF(0x03CF9BA0, SurvivalSaltController_WaitToDestroy_d_1); +DO_TYPEDEF(0x03CF9B08, Dictionary_2_UnityEngine_Light_System_Single_); +DO_TYPEDEF(0x03CF9B28, MapEnvironmentLoader_FadeInLights_d_4); +DO_TYPEDEF(0x03CF9AB8, MollyIntro_WaitToDestroyDetachedInitialTrashCan_d_33); +DO_TYPEDEF(0x03CF9AB0, MollyIntro_DisableHairUpdateWhenOffscreen_d_34); +DO_TYPEDEF(0x03CF9AA0, MollyIntro_OpenElevator_d_35); +DO_TYPEDEF(0x03CF9A90, MollyIntro_SlamDoor_d_38); +DO_TYPEDEF(0x03CF9A88, MollyIntro_ResetTreatmentDoorVolume_d_39); +DO_TYPEDEF(0x03CF9A80, MollyIntro_ActivateMollyInternal_d_43); +DO_TYPEDEF(0x03D180B0, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__2); +DO_TYPEDEF(0x03D149B8, NolanBehaviour_FlashlightFlickerOptions); +DO_TYPEDEF(0x03D156E8, NolanBehaviour_c); +DO_TYPEDEF(0x03D158A8, Comparison_1_UnityEngine_RaycastHit_); +DO_TYPEDEF(0x03D15028, NolanBehaviour_WaitForPlayerDetailsForMenu_d_260); +DO_TYPEDEF(0x03D14B08, NolanBehaviour_ActivateCarryObject_d_288); +DO_TYPEDEF(0x03D14AB0, NolanBehaviour_TransitionInToFrying_d_292); +DO_TYPEDEF(0x03D14AA8, NolanBehaviour_TransitionOutOfFrying_d_293); +DO_TYPEDEF(0x03D14AA0, NolanBehaviour_TransitionInToRitualBookPlace_d_294); +DO_TYPEDEF(0x03D14A98, NolanBehaviour_TransitionOutOfRitualBookPlace_d_295); +DO_TYPEDEF(0x03D14A38, NolanBehaviour_DelayCreateDroppedObject_d_301); +DO_TYPEDEF(0x03D14A20, NolanBehaviour_DelayEnableKnockedOutEffects_d_303); +DO_TYPEDEF(0x03D149E0, NolanBehaviour_DelayRespawn_d_310); +DO_TYPEDEF(0x03D149B0, NolanBehaviour_Zoom_d_318); +DO_TYPEDEF(0x03D14978, NolanBehaviour_FlashlightFlicker_d_325); +DO_TYPEDEF(0x03D14970, NolanBehaviour_DelaySetIsBeingKnockedOut_d_328); +DO_TYPEDEF(0x03D148A0, NolanBehaviour_BeingHeld_d_345); +DO_TYPEDEF(0x03D14848, NolanBehaviour_TeleportToPurgatory_d_390); +DO_TYPEDEF(0x03D17F40, NolanEmoteController_WaitForValidation_d_12); +DO_TYPEDEF(0x03D17F38, NolanEmoteController_StoreEmotesOwnedOnSteam_d_13); +DO_TYPEDEF(0x03D17F30, NolanEmoteController_DelayForceEmoteAbility_d_16); +DO_TYPEDEF(0x03D17E20, NolanPerkController_c); +DO_TYPEDEF(0x03D17DF0, NolanPerkController_WaitForValidation_d_16); +DO_TYPEDEF(0x03D17D98, NolanPerkController_UpdateSurvivalLobbyController_d_21); +DO_TYPEDEF(0x03D17CF0, NolanPerkController_DelayDisableState_d_28); +DO_TYPEDEF(0x03D17CE8, NolanPerkController_DelayDisableAttributeState_d_29); +DO_TYPEDEF(0x03D17C68, NolanRankController_UpdateSurvivalLobbyController_d_6); +DO_TYPEDEF(0x03D17C18, NolanVoiceOvers_c); +DO_TYPEDEF(0x03D17BB8, NolanVoiceOvers_DelayLaugh_d_21); +DO_TYPEDEF(0x03D17888, PerkInspiredOutline); +DO_TYPEDEF(0x03D17870, PerkInspiredOutline_EnableOutlineInternal_d_16); +DO_TYPEDEF(0x03D17810, PerkTrapperOutline_EnableOutline_d_6); +DO_TYPEDEF(0x03D17710, PetController_WaitForValidation_d_28); +DO_TYPEDEF(0x03D176B8, PetController_WaitForCanEnablePetAI_d_30); +DO_TYPEDEF(0x03D175C8, PetController_PlayBurnVocal_d_37); +DO_TYPEDEF(0x03D17518, PetController_SetHidingInternal_d_46); +DO_TYPEDEF(0x03D17508, PetController_LobbyIdling_d_47); +DO_TYPEDEF(0x03D174E0, PetController_TriggerRandomIdles_d_50); +DO_TYPEDEF(0x03D17320, PetLoader_LoadPet_d_3); +DO_TYPEDEF(0x03D17300, PetLoader_WaitForSteamInventoryItems_d_4); +DO_TYPEDEF(0x03D16F88, PhysicsProps_DelayDisableRigidbodies_d_5); +DO_TYPEDEF(0x03D1A6E0, PigExcrementBehaviour_FadeOut_d_15); +DO_TYPEDEF(0x03D1A528, PoisonBox_PoisonPlayer_d_8); +DO_TYPEDEF(0x03D1A4E8, ColorGradingController_FadeInInternal_d_7); +DO_TYPEDEF(0x03D1A4E0, ColorGradingController_FadeToBlackInternal_d_9); +DO_TYPEDEF(0x03D1A4B8, ColorGradingController_FadeExposureInternal_d_14); +DO_TYPEDEF(0x03D1A458, CustomPostProcessing_EnableChromaticAberration_d_24); +DO_TYPEDEF(0x03D1A450, CustomPostProcessing_DisableChromaticAberration_d_25); +DO_TYPEDEF(0x03D1A448, CustomPostProcessing_EnableDepthOfField_d_26); +DO_TYPEDEF(0x03D1A440, CustomPostProcessing_DisableDepthOfField_d_27); +DO_TYPEDEF(0x03D1A438, CustomPostProcessing_EnableCrawlColorGrading_d_28); +DO_TYPEDEF(0x03D1A430, CustomPostProcessing_DisableCrawlColorGrading_d_29); +DO_TYPEDEF(0x03D1A428, CustomPostProcessing_DisableAnnaPickedUpDepthOfField_d_32); +DO_TYPEDEF(0x03D1A3E8, EndingColorGrading_DoEvilColorGrading_d_2); +DO_TYPEDEF(0x03D1A3E0, EndingColorGrading_FadeToBlack_d_3); DO_TYPEDEF(0x03C8C770, IntParameter); +DO_TYPEDEF(0x03D1A3B0, PresentMesh_DisableSelfDelayed_d_7); +DO_TYPEDEF(0x03D1A358, ReconnectManager_ClientReconnectedTimeout_d_6); +DO_TYPEDEF(0x03D1A350, ReconnectManager_StartWeatherInternal_d_9); +DO_TYPEDEF(0x03D1A2B8, ReconnectManager_WaitToKnockoutPlayer_d_20); +DO_TYPEDEF(0x03D1A2B0, ReconnectManager_WaitForOutfitLoaded_d_21); +DO_TYPEDEF(0x03D1A1F8, RitualObjectChecker_CheckConstantly_d_10); +DO_TYPEDEF(0x03D1A050, SecretEndingFadeOut_ReturnToMainMenu_d_2); +DO_TYPEDEF(0x03D19FC0, FreezerRoomController_WaitToResetRecentlyAttached_d_35); +DO_TYPEDEF(0x03D19FB0, FreezerRoomController_Activate_d_37); +DO_TYPEDEF(0x03D19F48, FreezerRoomController_CheckStopPursueOnAzazel_d_44); +DO_TYPEDEF(0x03D19F40, FreezerRoomController_UpdateParticleSystem_d_51); +DO_TYPEDEF(0x03D19F38, FreezerRoomController_PeriodicallyActivate_d_55); +DO_TYPEDEF(0x03D19E78, SlaughterhouseAltarController_c); +DO_TYPEDEF(0x03D19EC0, Func_2_UnityEngine_GameObject_AnimalGateSpawnPoint_); +DO_TYPEDEF(0x03D19E30, SlaughterhouseAltarController_Cranking_d_75); +DO_TYPEDEF(0x03D1C460, SlaughterhouseAltarController_c_DisplayClass81_0); +DO_TYPEDEF(0x03D19E00, SlaughterhouseAltarController_GrindingPig_d_81); +DO_TYPEDEF(0x03D19DF8, SlaughterhouseAltarController_DestroyGoat_d_82); +DO_TYPEDEF(0x03D19DD8, SlaughterhouseAltarController_FailedLeverPull_d_88); +DO_TYPEDEF(0x03D19DB0, SlaughterhouseAltarController_TeleportPlayerBack_d_95); +DO_TYPEDEF(0x03D1C360, SlaughterhouseIntro_WaitForLocalCharacter_d_40); +DO_TYPEDEF(0x03D1C310, SlaughterhouseIntro_ResetRecentlyAttached_d_42); +DO_TYPEDEF(0x03D1C300, SlaughterhouseIntro_SpawnIntroPigs_d_45); +DO_TYPEDEF(0x03D1C248, SlaughterhouseIntro_OpenTruckShutter_d_49); +DO_TYPEDEF(0x03D1C228, SlaughterhouseIntro_PigsEscape_d_50); +DO_TYPEDEF(0x03D1C1F0, SlaughterhouseIntro_FinishIntro_d_56); +DO_TYPEDEF(0x03D1C088, SlaughterhouseTrapCattleFlamethrower); +DO_TYPEDEF(0x03D12200, WaitForSeconds); +DO_TYPEDEF(0x03D1C048, SlaughterhouseTrapCattleFlamethrower_TimeFlamethrower_d_13); +DO_TYPEDEF(0x03D1BFA8, SteamInventoryResult_t); DO_TYPEDEF(0x03C8BDC0, SteamItemInstanceID_t); DO_TYPEDEF(0x03C8BDD8, SteamItemDef_t); +DO_TYPEDEF(0x03D16E78, SteamInventoryManager); +DO_TYPEDEF(0x03D1BDA8, SteamItemDetails_t__Array); +DO_TYPEDEF(0x03D1BF28, Callback_1_T_DispatchDelegate_SteamInventoryResultReady_t_); +DO_TYPEDEF(0x03D1BF38, Callback_1_T_DispatchDelegate_SteamInventoryFullUpdate_t_); +DO_TYPEDEF(0x03D1BF20, Callback_1_T_DispatchDelegate_SteamInventoryDefinitionUpdate_t_); DO_TYPEDEF(0x03C8C4E0, SteamAPICall_t); +DO_TYPEDEF(0x03D1BF88, CallResult_1_T_APIDispatchDelegate_SteamInventoryStartPurchaseResult_t_); +DO_TYPEDEF(0x03D1BF90, CallResult_1_T_APIDispatchDelegate_SteamInventoryRequestPricesResult_t_); +DO_TYPEDEF(0x03D1BE50, SteamInventoryItem); +DO_TYPEDEF(0x03D1BBE8, List_1_SteamInventoryItem_); +DO_TYPEDEF(0x03D1BBF0, List_1_Steamworks_SteamItemDef_t_); +DO_TYPEDEF(0x03D1BE40, SteamItemDef_t__Array); +DO_TYPEDEF(0x03D1BD78, SteamInventoryManager_c); +DO_TYPEDEF(0x03D1BDF8, Func_2_Steamworks_SteamItemDetails_t_Steamworks_SteamItemDef_t_); +DO_TYPEDEF(0x03D1BDF0, Func_2_Steamworks_SteamItemDef_t_Int32_); +DO_TYPEDEF(0x03D1BC88, Func_2_System_Globalization_CultureInfo_f_AnonymousType3_2_); +DO_TYPEDEF(0x03D1BBD0, _f_AnonymousType3_2_System_Globalization_CultureInfo_System_Globalization_RegionInfo_); +DO_TYPEDEF(0x03D1BC80, Func_2_f_AnonymousType3_2_System_Globalization_CultureInfo_); +DO_TYPEDEF(0x03D1BC58, SteamInventoryManager_c_DisplayClass40_0); +DO_TYPEDEF(0x03D1BC18, SteamInventoryManager_AddPromoItemInternal_d_46); +DO_TYPEDEF(0x03D1BC10, SteamInventoryManager_AddPromoItemTimeout_d_47); +DO_TYPEDEF(0x03D1BB80, SteamInventoryValidator_WaitForValidateCompletion_d_3); +DO_TYPEDEF(0x03D1BAF0, SteamInventoryValidator_c); +DO_TYPEDEF(0x03D1BA50, Func_2_Steamworks_SteamItemDetails_t_Int32_); +DO_TYPEDEF(0x03D1BB10, Func_2_Photon_Bolt_BoltConnection_UInt32_); +DO_TYPEDEF(0x03D1BB78, SteamInventoryValidator_ContinueValidate_d_4); +DO_TYPEDEF(0x03D1B9D0, SteamManager); +DO_TYPEDEF(0x03D1B960, SteamAPIWarningMessageHook_t); +DO_TYPEDEF(0x03D1B8E8, Survival_c); +DO_TYPEDEF(0x03D1B920, Func_2_UnityEngine_GameObject_TrashCanSpawnPoint_); +DO_TYPEDEF(0x03D1B3F0, Func_2_UnityEngine_Playables_PlayableBinding_Boolean_); +DO_TYPEDEF(0x03D1B6C8, Survival_DarkenSky_d_190); +DO_TYPEDEF(0x03D1B6C0, Survival_GameOverCheck_d_193); +DO_TYPEDEF(0x03D1B6B0, Survival_TriggerFailEnding_d_195); +DO_TYPEDEF(0x03D1B6A8, Survival_TriggerWinEnding_d_196); +DO_TYPEDEF(0x03D1B678, Survival_c_DisplayClass197_0); +DO_TYPEDEF(0x03D1E078, Survival_c_DisplayClass198_0); +DO_TYPEDEF(0x03D1B658, Survival_SpawnExtraDemons_d_198); +DO_TYPEDEF(0x03D1E060, Survival_c_DisplayClass199_0); +DO_TYPEDEF(0x03D1B650, Survival_SpawnExtraCrows_d_199); +DO_TYPEDEF(0x03D1B630, Survival_c_DisplayClass201_0); +DO_TYPEDEF(0x03D1E048, Survival_c_DisplayClass202_0); +DO_TYPEDEF(0x03D1B620, Survival_SpawnExtraFoodSources_d_202); +DO_TYPEDEF(0x03D1B600, Survival_c_DisplayClass204_0); +DO_TYPEDEF(0x03D1B5E8, Survival_StartGameDebug_d_206); +DO_TYPEDEF(0x03D1B5E0, Survival_SpawnAzazelInternal_d_208); +DO_TYPEDEF(0x03D1B570, Survival_c_DisplayClass212_0); +DO_TYPEDEF(0x03D1B508, Survival_c_DisplayClass222_0); +DO_TYPEDEF(0x03D1B4B0, Survival_c_DisplayClass224_0); +DO_TYPEDEF(0x03D1B4A0, Survival_PlayFailEnding_d_229); +DO_TYPEDEF(0x03D1DE40, Survival_c_DisplayClass230_0); +DO_TYPEDEF(0x03D1DE30, Survival_c_DisplayClass230_1); +DO_TYPEDEF(0x03D1B498, Survival_InstantiateCutscenePlayers_d_230); +DO_TYPEDEF(0x03D1B488, Survival_DelayEndingDirector_d_233); +DO_TYPEDEF(0x03D1B480, Survival_ForceEndGame_d_235); +DO_TYPEDEF(0x03D1B228, Survival_CheckGraphHasTagsInternal_d_259); +DO_TYPEDEF(0x03D1B218, Survival_ShowDropTutorialAgain_d_266); +DO_TYPEDEF(0x03D1B1F0, Survival_c_DisplayClass268_0); +DO_TYPEDEF(0x03D1B1E0, Survival_c_DisplayClass269_0); +DO_TYPEDEF(0x03D1B1D0, Survival_c_DisplayClass270_0); +DO_TYPEDEF(0x03D1DD08, Robe__Enum); +DO_TYPEDEF(0x03D1DD60, SurvivalLobbyController_c_DisplayClass31_0); +DO_TYPEDEF(0x03D1DB08, SurvivalLobbyController_ToggleRenderers_d_36); +DO_TYPEDEF(0x03D1DA90, SurvivalLobbyController_EnableLocomotionOnSurvivalPlayer_d_48); +DO_TYPEDEF(0x03D1DA68, SurvivalLobbyController_c_DisplayClass53_0); +DO_TYPEDEF(0x03D1D928, SurvivalLobbyController_FadeSpeakingAlpha_d_73); +DO_TYPEDEF(0x03D1D878, SurvivalLobbyController_c_DisplayClass79_0); +DO_TYPEDEF(0x03D1D7D0, SurvivalMollyAltarController_PlayEnragedAudio_d_45); +DO_TYPEDEF(0x03D1D7B8, SurvivalMollyAltarController_DestroyGoat_d_49); +DO_TYPEDEF(0x03D1D7B0, SurvivalMollyAltarController_FailedLeverPull_d_50); +DO_TYPEDEF(0x03D1D7A8, SurvivalMollyAltarController_PlayZap_d_51); +DO_TYPEDEF(0x03D1D7A0, SurvivalMollyAltarController_PlayMollyZap_d_52); +DO_TYPEDEF(0x03D1D798, SurvivalMollyAltarController_FadeInLightbulbs_d_54); +DO_TYPEDEF(0x03D20830, SurvivalObjectBurnController_FadeOutLight_d_41); +DO_TYPEDEF(0x03D20808, SurvivalObjectBurnController_FadeInLight_d_42); +DO_TYPEDEF(0x03D207E8, SurvivalObjectBurnController_DestroyGoat_d_43); +DO_TYPEDEF(0x03D20680, ObjectSwinger_StopSwingingToStationary_d_29); +DO_TYPEDEF(0x03D20678, ObjectSwinger_DecreaseCurrentMaxRotationM_d_31); +DO_TYPEDEF(0x03D205B0, SurvivalRitualBookController_DelayEnableInteract_d_8); +DO_TYPEDEF(0x03D204A8, SurvivalTownAltarController_c); +DO_TYPEDEF(0x03D20538, Func_2_UnityEngine_GameObject_LockboxSpawnPoint_); +DO_TYPEDEF(0x03D201F0, Func_2_UnityEngine_GameObject_KeySpawnPoint_); +DO_TYPEDEF(0x03D203F8, SurvivalTownAltarController_c_DisplayClass25_0); +DO_TYPEDEF(0x03D203B0, SurvivalTownAltarController_SwingBell_d_27); +DO_TYPEDEF(0x03D202F8, SurvivalTownAltarController_c_DisplayClass32_0); +DO_TYPEDEF(0x03D202C8, SurvivalTownAltarController_c_DisplayClass32_1); +DO_TYPEDEF(0x03D20240, SurvivalTownAltarController_c_DisplayClass33_0); +DO_TYPEDEF(0x03D201A8, SurvivalTownAltarController_c_DisplayClass34_0); +DO_TYPEDEF(0x03D20158, SurvivalTownAltarController_SpawnPurgatoryGhostsInternal_d_40); +DO_TYPEDEF(0x03D20150, SurvivalTownAltarController_TeleportPlayerBack_d_42); +DO_TYPEDEF(0x03D200D8, TownIntro_ResetRecentlyAttached_d_49); +DO_TYPEDEF(0x03D20068, TownIntro_StopPlayingPiano_d_59); +DO_TYPEDEF(0x03D20060, TownIntro_WaitToPlayThud_d_60); +DO_TYPEDEF(0x03D20058, TownIntro_SaloonGhostJumpScare_d_67); +DO_TYPEDEF(0x03D20050, TownIntro_ChurchIntro_d_70); +DO_TYPEDEF(0x03D1FFB0, TownPentagramController_PlayCompleteEffects_d_25); +DO_TYPEDEF(0x03D1FF90, TownPentagramController_ActivateBook_d_38); +DO_TYPEDEF(0x03D1FF28, TownRitualBookRenderer_DissolveInternal_d_21); +DO_TYPEDEF(0x03D1FED8, TrashCanBehaviour_DisablePhysics_d_27); +DO_TYPEDEF(0x03D1FED0, TrashCanBehaviour_FadeAndDestroy_d_28); +DO_TYPEDEF(0x03D1FEC8, TrashCanBehaviour_SpawnEscapedRats_d_30); +DO_TYPEDEF(0x03D1FE50, TruckShutterBehaviour_GetLocalCharacterLocomotion_d_10); +DO_TYPEDEF(0x03D1FDF8, ControllerGlyphManager); +DO_TYPEDEF(0x03D1FDE8, ControllerGlyphTutorialText_ActivateGlyph_d_15); +DO_TYPEDEF(0x03D1FDB8, GamepadUISelectOnly_Deselect_d_1); +DO_TYPEDEF(0x03D14790, LocalizationManager); +DO_TYPEDEF(0x03D1FC00, List_1_UnityEngine_TextAsset_); +DO_TYPEDEF(0x03D1FD38, Language); +DO_TYPEDEF(0x03D1FBF8, List_1_Language_); +DO_TYPEDEF(0x03D1FD18, TextKeyValue); +DO_TYPEDEF(0x03D23470, List_1_TextKeyValue_); +DO_TYPEDEF(0x03D1FC08, List_1_LanguageUniqueFont_); +DO_TYPEDEF(0x03D105A0, Source); +DO_TYPEDEF(0x03D0B2D0, List_1_Crosstales_BWF_Data_Source_); +DO_TYPEDEF(0x03D10270, IEnumerator_1_Crosstales_BWF_Data_Source_); +DO_TYPEDEF(0x03D101B0, BadWords); +DO_TYPEDEF(0x03D102F0, List_1_Crosstales_BWF_Model_BadWords_); +DO_TYPEDEF(0x03D10310, Dictionary_2_System_String_System_Text_RegularExpressions_Regex_); +DO_TYPEDEF(0x03D0C130, Regex); +DO_TYPEDEF(0x03CEFF20, Regex_CachedCodeEntryKey); +DO_TYPEDEF(0x03CF0170, Dictionary_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Text_RegularExpressions_Regex_CachedCodeEntry_); +DO_TYPEDEF(0x03CF0290, Regex_CachedCodeEntry); +DO_TYPEDEF(0x03CF1AA0, RegexPrefix); +DO_TYPEDEF(0x03CF1728, RegexCode); +DO_TYPEDEF(0x03CF1720, RegexBoyerMoore); +DO_TYPEDEF(0x03CFF528, Int32__Array__Array); +DO_TYPEDEF(0x03CEFF98, ExclusiveReference); +DO_TYPEDEF(0x03CF0610, Capture); +DO_TYPEDEF(0x03CF0568, Group); +DO_TYPEDEF(0x03CFE4B0, Match); +DO_TYPEDEF(0x03CF0598, CaptureCollection); +DO_TYPEDEF(0x03CF05F8, Capture__Array); +DO_TYPEDEF(0x03D0EB90, IEnumerator_1_System_Text_RegularExpressions_Capture_); +DO_TYPEDEF(0x03CF0448, GroupCollection); +DO_TYPEDEF(0x03CF04A0, Group__Array); +DO_TYPEDEF(0x03CF0020, RegexInterpreter); +DO_TYPEDEF(0x03CEFFB0, WeakReference_1_System_Text_RegularExpressions_RegexReplacement_); +DO_TYPEDEF(0x03D0D908, Regex__Array); +DO_TYPEDEF(0x03D10330, Dictionary_2_System_String_List_1_System_Text_RegularExpressions_Regex_); +DO_TYPEDEF(0x03D103A8, List_1_System_Text_RegularExpressions_Regex_); +DO_TYPEDEF(0x03D10320, Dictionary_2_System_String_List_1_System_String_); +DO_TYPEDEF(0x03D0B508, Singleton_1_Crosstales_BWF_Manager_BadWordManager_); +DO_TYPEDEF(0x03D0FBF8, BadWordManager); +DO_TYPEDEF(0x03D0FBC8, BadWordFilter); +DO_TYPEDEF(0x03D0E408, Dictionary_2_System_String_Crosstales_BWF_Data_Source_); +DO_TYPEDEF(0x03D10280, IEnumerable_1_Crosstales_BWF_Data_Source_); +DO_TYPEDEF(0x03D0F238, List_1_Crosstales_BWF_Provider_BadWordProvider_); +DO_TYPEDEF(0x03D0B438, ContainsComplete); +DO_TYPEDEF(0x03D0B408, GetAllComplete); +DO_TYPEDEF(0x03D0B3D8, ReplaceAllComplete); DO_TYPEDEF(0x03C9B328, Text__Array); +DO_TYPEDEF(0x03D233D0, MouseGlyphManager); +DO_TYPEDEF(0x03D23300, MultiImageButton_c); +DO_TYPEDEF(0x03D23310, Func_2_UnityEngine_UI_Graphic_Boolean_); +DO_TYPEDEF(0x03D232C0, OutfitPreviewLoader_PreviewInternal_d_31); +DO_TYPEDEF(0x03D232B8, OutfitPreviewLoader_LoadRobeTexture_d_32); +DO_TYPEDEF(0x03D23290, OutfitPreviewLoader_c_DisplayClass33_0); +DO_TYPEDEF(0x03D23278, OutfitPreviewLoader_c_DisplayClass34_0); +DO_TYPEDEF(0x03D23170, OutfitPreviewLoader_c_DisplayClass35_0); +DO_TYPEDEF(0x03D23268, OutfitPreviewLoader_PreviewFlashlightInternal_d_35); +DO_TYPEDEF(0x03D23260, OutfitPreviewLoader_PreviewPetInternal_d_36); +DO_TYPEDEF(0x03D230F8, OutfitPreviewLoaderEventHandler_WaitToStartAgain_d_3); +DO_TYPEDEF(0x03D22FD0, PlayerStatsController_SelectFirstStatInternal_d_9); +DO_TYPEDEF(0x03D22D80, ScreenEffect_c_DisplayClass3_0); +DO_TYPEDEF(0x03D22D60, ScreenEffect_PulseScreenEffectInternal_d_4); +DO_TYPEDEF(0x03D22D38, ScreenEffect_c_DisplayClass5_0); +DO_TYPEDEF(0x03D22D20, ScreenEffect_FadeInScreenEffectInternal_d_6); +DO_TYPEDEF(0x03D22D10, ScreenEffect_FadeOutScreenEffectInternal_d_7); +DO_TYPEDEF(0x03D22CE8, ScreenEffect_c_DisplayClass8_0); +DO_TYPEDEF(0x03D22CD0, ScreenEffect_c_DisplayClass9_0); +DO_TYPEDEF(0x03D22CB0, ScreenEffect_c); +DO_TYPEDEF(0x03D22DA0, Predicate_1_ScreenEffectType_); +DO_TYPEDEF(0x03D22C98, ScreenEffect_TrapDeathInternal_d_11); +DO_TYPEDEF(0x03D22BF0, ScreenEffectDecals_WaitToFadeOutDecal_d_9); +DO_TYPEDEF(0x03D22BD8, ScreenEffectDecals_DestroyDecals_d_11); DO_TYPEDEF(0x03CA3798, TMP_Dropdown); DO_TYPEDEF(0x03CA3730, TMP_Dropdown_OptionDataList); -DO_TYPEDEF(0x03CA34C0, List_1_TMPro_TMP_Dropdown_OptionData_); DO_TYPEDEF(0x03CA38A0, TMP_Dropdown_OptionData); +DO_TYPEDEF(0x03CA34C0, List_1_TMPro_TMP_Dropdown_OptionData_); DO_TYPEDEF(0x03CA3708, TMP_Dropdown_DropdownEvent); DO_TYPEDEF(0x03CA3720, List_1_TMPro_TMP_Dropdown_DropdownItem_); DO_TYPEDEF(0x03CA37D0, TweenRunner_1_FloatTween__1); +DO_TYPEDEF(0x03D22A98, UISoundEvents_DisableHoverSound_d_10); +DO_TYPEDEF(0x03D22708, DevourInput_c); +DO_TYPEDEF(0x03D22720, Func_2_Opsive_UltimateCharacterController_StateSystem_State_Boolean_); +DO_TYPEDEF(0x03D223A0, GoatEscapeBehaviour_SpeedUp_d_13); +DO_TYPEDEF(0x03CE38E8, IconInteractable); +DO_TYPEDEF(0x03D22300, InControlAnimatedInteractable); +DO_TYPEDEF(0x03D24F68, InnFountainInteractable); +DO_TYPEDEF(0x03D24F60, InnShrineInteractable); +DO_TYPEDEF(0x03D222F8, LockedFeedbackInteractable); +DO_TYPEDEF(0x03CE38D8, RevivePlayer); +DO_TYPEDEF(0x03D24FF0, LongInteract_c); +DO_TYPEDEF(0x03D222F0, ManorMirrorInteractable); +DO_TYPEDEF(0x03D24F50, PlaceObjectInteractable); +DO_TYPEDEF(0x03D24D78, RevivePlayer_c); +DO_TYPEDEF(0x03D24D30, SlaughterhouseCrankInteractable_WaitToStopInteracting_d_9); +DO_TYPEDEF(0x03D1A178, IInteractObjectState); +DO_TYPEDEF(0x03D17D68, UseBattery); DO_TYPEDEF(0x03C8BE50, CGameID); +DO_TYPEDEF(0x03D24AB0, AchievementHelpers); +DO_TYPEDEF(0x03D24A60, Callback_1_T_DispatchDelegate_UserStatsReceived_t_); +DO_TYPEDEF(0x03D24A68, Callback_1_T_DispatchDelegate_UserAchievementStored_t_); +DO_TYPEDEF(0x03D244D8, AudioFadeController_FadeIn_d_0); +DO_TYPEDEF(0x03D244D0, AudioFadeController_FadeOut_d_1); +DO_TYPEDEF(0x03D244C8, AudioFadeController_FadeInDistance_d_2); +DO_TYPEDEF(0x03D244C0, AudioFadeController_FadeOutDistance_d_3); +DO_TYPEDEF(0x03D24498, BoltTokenHelpers); +DO_TYPEDEF(0x03D24470, CanvasFadeController_FadeIn_d_0); +DO_TYPEDEF(0x03D24468, CanvasFadeController_FadeOut_d_1); +DO_TYPEDEF(0x03D24450, ChallengeHelpers); +DO_TYPEDEF(0x03D24358, ChallengeHelpers_ChallengeInstance); +DO_TYPEDEF(0x03D24360, ChallengeHelpers_ChallengeInstance__Array); +DO_TYPEDEF(0x03D24310, CharacterHelpers); +DO_TYPEDEF(0x03D242D8, CharacterHelpers_Dissolve_d_12); +DO_TYPEDEF(0x03D242B8, CharacterHelpers_ExecuteReverseDissolve_d_14); +DO_TYPEDEF(0x03D242B0, CharacterHelpers_ExecuteDissolve_d_15); +DO_TYPEDEF(0x03CD47F8, InGameHelpers_NearbyPerks); +DO_TYPEDEF(0x03CD4820, InGameHelpers); +DO_TYPEDEF(0x03CD4830, InGameHelpers_NearbyPerks__Array); +DO_TYPEDEF(0x03CD44B8, KeyHelpers); +DO_TYPEDEF(0x03CD4310, DevourTextMessage); +DO_TYPEDEF(0x03CD42E0, MessageHelpers_Message); +DO_TYPEDEF(0x03D13068, OptionsHelpers); +DO_TYPEDEF(0x03CD2BD0, List_1_UnityEngine_Resolution_); +DO_TYPEDEF(0x03CD2BE0, Dictionary_2_System_String_System_Action_); +DO_TYPEDEF(0x03CD2E48, List_1_UnityEngine_UI_Button_); +DO_TYPEDEF(0x03D19420, Button__Array); +DO_TYPEDEF(0x03CD2E40, List_1_UnityEngine_UI_Dropdown_); +DO_TYPEDEF(0x03CD4040, OptionsHelpers_DetectInjectedAssemblies_d_77); +DO_TYPEDEF(0x03CD3B10, OptionsHelpers_c_DisplayClass111_0); +DO_TYPEDEF(0x03CD3AF0, OptionsHelpers_c_DisplayClass111_1); +DO_TYPEDEF(0x03CD3B00, OptionsHelpers_c); +DO_TYPEDEF(0x03CD3C88, Func_2_UnityEngine_Resolution_String_); +DO_TYPEDEF(0x03CD3930, Action_1_Rewired_InputMapper_StoppedEventData_); +DO_TYPEDEF(0x03CC6DC0, InputMapper_StoppedEventData); +DO_TYPEDEF(0x03CD6708, InputMapper); +DO_TYPEDEF(0x03CC6F40, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR); +DO_TYPEDEF(0x03CC6D48, InputMapper_ConflictResponse__Enum); +DO_TYPEDEF(0x03CC7088, InputMapper_Options); +DO_TYPEDEF(0x03CC6D68, Dictionary_2_System_String_Rewired_Utils_SafeDelegate_); +DO_TYPEDEF(0x03CC6EF8, InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_ktfcPBlLMXTfubNjdRHamORfRcXM); +DO_TYPEDEF(0x03CD6658, InputMapper_Context); +DO_TYPEDEF(0x03CC7038, Dictionary_2_Rewired_InputMapper_LHIKMCjQdqDNBdfhNEqxmrgcNERkA_Rewired_Utils_SafeDelegate_); +DO_TYPEDEF(0x03CC6F18, List_1_Rewired_Player_); +DO_TYPEDEF(0x03CDF760, IEnumerator_1_Rewired_Player_); +DO_TYPEDEF(0x03CC6F00, List_1_Rewired_ControllerPollingInfo_); +DO_TYPEDEF(0x03CEC2C8, IEnumerator_1_Rewired_ControllerPollingInfo_); +DO_TYPEDEF(0x03CD3880, OptionsHelpers_c_DisplayClass120_0); +DO_TYPEDEF(0x03CC6DA8, InputMapper_InputMappedEventData); +DO_TYPEDEF(0x03CC6DD8, InputMapper_ConflictFoundEventData); +DO_TYPEDEF(0x03CC6DE0, Action_1_Rewired_InputMapper_ConflictResponse_); +DO_TYPEDEF(0x03CC6E48, ElementAssignmentInfo); +DO_TYPEDEF(0x03CD2AF0, IList_1_Rewired_ElementAssignmentConflictInfo_); +DO_TYPEDEF(0x03CD3860, OptionsHelpers_c_DisplayClass120_1); +DO_TYPEDEF(0x03CD3850, OptionsHelpers_c_DisplayClass120_2); +DO_TYPEDEF(0x03CD34E8, OptionsHelpers_DelayListeningForBinding_d_122); +DO_TYPEDEF(0x03CD34D0, OptionsHelpers_ListeningForBinding_d_123); +DO_TYPEDEF(0x03CD34A8, OptionsHelpers_DelayClearListeningForBinding_d_125); +DO_TYPEDEF(0x03CD3430, OptionsHelpers_c_DisplayClass131_0); +DO_TYPEDEF(0x03CD33F0, OptionsHelpers_c_DisplayClass132_0); +DO_TYPEDEF(0x03CD33B8, OptionsHelpers_c_DisplayClass133_0); +DO_TYPEDEF(0x03CD3368, OptionsHelpers_c_DisplayClass134_0); +DO_TYPEDEF(0x03CD3330, OptionsHelpers_c_DisplayClass135_0); +DO_TYPEDEF(0x03CD32A0, OptionsHelpers_c_DisplayClass137_0); +DO_TYPEDEF(0x03CD3248, OptionsHelpers_c_DisplayClass138_0); +DO_TYPEDEF(0x03CD3210, OptionsHelpers_c_DisplayClass139_0); +DO_TYPEDEF(0x03CD31D8, OptionsHelpers_c_DisplayClass140_0); +DO_TYPEDEF(0x03CD31A8, OptionsHelpers_c_DisplayClass141_0); +DO_TYPEDEF(0x03CD3178, OptionsHelpers_c_DisplayClass142_0); +DO_TYPEDEF(0x03CD2F58, OptionsHelpers_c_DisplayClass147_0); +DO_TYPEDEF(0x03CD2D70, OptionsHelpers_c_DisplayClass160_0); +DO_TYPEDEF(0x03CD2D48, OptionsHelpers_c_DisplayClass161_0); +DO_TYPEDEF(0x03D17E70, RankHelpers); +DO_TYPEDEF(0x03CD2838, List_1_RankHelpers_RankSprite_); +DO_TYPEDEF(0x03CD2980, RankHelpers_ExpGainInfo); +DO_TYPEDEF(0x03D12A40, RewiredHelpers); +DO_TYPEDEF(0x03CD3958, Action_1_Rewired_InputMapper_InputMappedEventData_); +DO_TYPEDEF(0x03CD3970, Action_1_Rewired_InputMapper_ConflictFoundEventData_); +DO_TYPEDEF(0x03CD6730, RewiredHelpers_StartListeningDelayed_d_25); +DO_TYPEDEF(0x03CD6728, RewiredHelpers_HeartbeatVibration_d_32); +DO_TYPEDEF(0x03CD6720, RewiredHelpers_SetVibrationInternal_d_33); +DO_TYPEDEF(0x03CD6620, SaveHelpers); +DO_TYPEDEF(0x03CD6608, CallResult_1_T_APIDispatchDelegate_RemoteStorageFileWriteAsyncComplete_t_); +DO_TYPEDEF(0x03CD65F8, CallResult_1_T_APIDispatchDelegate_RemoteStorageFileReadAsyncComplete_t_); +DO_TYPEDEF(0x03CD6508, CollectablesJSON); +DO_TYPEDEF(0x03CD6448, EventsJSON); +DO_TYPEDEF(0x03CD63C8, ChallengesJSON); +DO_TYPEDEF(0x03CD6390, SessionHelpers); +DO_TYPEDEF(0x03D1A2F8, SessionClient); +DO_TYPEDEF(0x03CD63B0, Dictionary_2_System_UInt32_SessionClient_); +DO_TYPEDEF(0x03CD6330, KeyValuePair_2_System_UInt32_SessionClient_); +DO_TYPEDEF(0x03CD63A0, List_1_KickedPlayer_); +DO_TYPEDEF(0x03CD6320, SessionHelpers_c_DisplayClass42_0); +DO_TYPEDEF(0x03CD6310, SessionHelpers_c_DisplayClass43_0); +DO_TYPEDEF(0x03CD6240, SteamHelpers); +DO_TYPEDEF(0x03CD6220, UIHelpers); +DO_TYPEDEF(0x03CD6218, SurvivalVR_Start_d_95); +DO_TYPEDEF(0x03CD61B8, SurvivalVR_CreateFollowVRCameraCanvas_d_97); +DO_TYPEDEF(0x03CD6128, SurvivalVR_StartXR_d_113); +DO_TYPEDEF(0x03CDCE10, WindowSmasher_SmashWindowAfterSeconds_d_37); +DO_TYPEDEF(0x03CDCDD0, WindowSmasherMultipleParent_SmashWindowsAfterSeconds_d_21); DO_TYPEDEF(0x03C8C570, VignetteModeParameter); +DO_TYPEDEF(0x03CDCDB0, VignetteController_VignetteOut_d_7); +DO_TYPEDEF(0x03CC29D8, BoltConfig); +DO_TYPEDEF(0x03CDAEA0, MenuSceneToken); +DO_TYPEDEF(0x03CDB9D8, Menu_c); +DO_TYPEDEF(0x03D0B248, Func_3_String_String_String_); +DO_TYPEDEF(0x03CD3440, Func_2_CharacterData_Boolean_); +DO_TYPEDEF(0x03CDB188, Func_2_CharacterPerk_Boolean_); +DO_TYPEDEF(0x03CDC688, Func_2_CharacterPerk_Int32_); +DO_TYPEDEF(0x03CDB178, Func_2_CharacterFlashlight_Boolean_); +DO_TYPEDEF(0x03CDC6B0, Func_2_CharacterFlashlight_Int32_); +DO_TYPEDEF(0x03CDB170, Func_2_CharacterEmote_Boolean_); +DO_TYPEDEF(0x03CDC6A0, Func_2_CharacterEmote_Int32_); +DO_TYPEDEF(0x03CDB2E0, Func_2_UIOutfitSelectionType_Boolean_); +DO_TYPEDEF(0x03CDB2C8, Func_2_UIFlashlightSelectionType_Boolean_); +DO_TYPEDEF(0x03CDB2B8, Func_2_UIFlashlightSelectionType_Int32_); +DO_TYPEDEF(0x03CDB2D8, Func_2_UIEmoteSelectionType_Boolean_); +DO_TYPEDEF(0x03CDB2D0, Func_2_UIEmoteSelectionType_Int32_); +DO_TYPEDEF(0x03CDB1F8, Func_2_UIPerkSelectionType_Boolean_); +DO_TYPEDEF(0x03CDB128, Predicate_1_UIPetSelectionType_); +DO_TYPEDEF(0x03CDB030, Predicate_1_UIFlashlightSelectionType_); +DO_TYPEDEF(0x03CDB020, Predicate_1_UIEmoteSelectionType_); +DO_TYPEDEF(0x03CDB038, Predicate_1_UIOutfitSelectionType_); +DO_TYPEDEF(0x03CDAEE8, Func_2_Dissonance_VoicePlayerState_Boolean_); +DO_TYPEDEF(0x03CDAEF0, Func_2_Dissonance_VoicePlayerState_String_); +DO_TYPEDEF(0x03CDAE08, Func_2_Horror_Menu_GameStatsAwardEntry_Int32_); +DO_TYPEDEF(0x03CDB9F8, Menu_Start_d_550); +DO_TYPEDEF(0x03CDB8B8, Menu_WaitToWarnNoSteamworks_d_553); +DO_TYPEDEF(0x03CDB7E0, Menu_ControllerReselectDelayed_d_556); +DO_TYPEDEF(0x03CDB718, Menu_GamepadKeyboardDismissed_d_568); +DO_TYPEDEF(0x03CDB6D0, Menu_c_DisplayClass572_0); +DO_TYPEDEF(0x03CDC760, Menu_c_DisplayClass576_0); +DO_TYPEDEF(0x03CDB660, Menu_PopulateRobesWhenAvailable_d_576); +DO_TYPEDEF(0x03CDC5D0, Menu_c_DisplayClass577_0); +DO_TYPEDEF(0x03CDC740, Menu_c_DisplayClass577_1); +DO_TYPEDEF(0x03CDC720, Menu_c_DisplayClass577_2); +DO_TYPEDEF(0x03CDC700, Menu_c_DisplayClass577_3); +DO_TYPEDEF(0x03CDB638, Menu_PopulateInventoryWhenAvailable_d_577); +DO_TYPEDEF(0x03CDB608, Menu_c_DisplayClass578_0); +DO_TYPEDEF(0x03CDB5A0, Menu_c_DisplayClass579_0); +DO_TYPEDEF(0x03CDB580, Menu_c_DisplayClass580_0); +DO_TYPEDEF(0x03CDB540, Menu_c_DisplayClass581_0); +DO_TYPEDEF(0x03CDB518, Menu_c_DisplayClass582_0); +DO_TYPEDEF(0x03CDB4A0, Menu_c_DisplayClass583_0); +DO_TYPEDEF(0x03CDB448, Menu_c_DisplayClass584_0); +DO_TYPEDEF(0x03CDB420, Menu_c_DisplayClass585_0); +DO_TYPEDEF(0x03CDB408, Menu_c_DisplayClass586_0); +DO_TYPEDEF(0x03CDB148, Menu_c_DisplayClass592_0); +DO_TYPEDEF(0x03CDC5B0, Menu_c_DisplayClass592_1); +DO_TYPEDEF(0x03CDC5A0, Menu_c_DisplayClass592_2); +DO_TYPEDEF(0x03CDC590, Menu_c_DisplayClass592_3); +DO_TYPEDEF(0x03CDB100, Menu_c_DisplayClass606_0); +DO_TYPEDEF(0x03CDC580, Menu_c_DisplayClass606_1); +DO_TYPEDEF(0x03CDB0D8, Menu_c_DisplayClass607_0); +DO_TYPEDEF(0x03CDC570, Menu_c_DisplayClass607_1); +DO_TYPEDEF(0x03CDB0B0, Menu_c_DisplayClass608_0); +DO_TYPEDEF(0x03CDC560, Menu_c_DisplayClass608_1); +DO_TYPEDEF(0x03CDB098, Menu_c_DisplayClass609_0); +DO_TYPEDEF(0x03CDC550, Menu_c_DisplayClass609_1); +DO_TYPEDEF(0x03CDB070, Menu_c_DisplayClass610_0); +DO_TYPEDEF(0x03CDC540, Menu_c_DisplayClass610_1); +DO_TYPEDEF(0x03CDAFF8, Menu_WaitForPurchasedOutfitValidation_d_613); +DO_TYPEDEF(0x03CDAFF0, Menu_WaitForPurchasedFlashlightValidation_d_614); +DO_TYPEDEF(0x03CDAFE8, Menu_WaitForPurchasedPetValidation_d_615); +DO_TYPEDEF(0x03CDAFE0, Menu_WaitForPurchasedEmoteValidation_d_616); +DO_TYPEDEF(0x03CDAFC8, Menu_c_DisplayClass629_0); +DO_TYPEDEF(0x03CDAFB8, Menu_DelayEnableBuyButton_d_630); +DO_TYPEDEF(0x03CDAFA8, Menu_c_DisplayClass632_0); +DO_TYPEDEF(0x03CDAF80, Menu_c_DisplayClass633_0); +DO_TYPEDEF(0x03CDAF50, Menu_c_DisplayClass634_0); +DO_TYPEDEF(0x03CDAEC8, Menu_WaitForSurvivalLobbyPlayersDetached_d_651); +DO_TYPEDEF(0x03CDADD0, Menu_c_DisplayClass659_0); +DO_TYPEDEF(0x03CDADC0, Menu_c_DisplayClass659_1); +DO_TYPEDEF(0x03CDACE0, Menu_UpdateNolanRank_d_661); +DO_TYPEDEF(0x03CDABD8, Menu_c_DisplayClass694_0); +DO_TYPEDEF(0x03CDABC8, Menu_c_DisplayClass694_1); +DO_TYPEDEF(0x03CDAB00, Menu_c_DisplayClass700_0); +DO_TYPEDEF(0x03CDA9C8, Menu_c_DisplayClass707_0); +DO_TYPEDEF(0x03D1A320, ServerConnectToken); +DO_TYPEDEF(0x03CDA950, Menu_SendInventoryItemsWhenAvailable_d_711); +DO_TYPEDEF(0x03CDA928, Menu_WaitForSteamCatalog_d_712); +DO_TYPEDEF(0x03CDA918, Menu_WaitForInventoryItems_d_713); +DO_TYPEDEF(0x03CDA908, Menu_WaitForSLC_d_714); +DO_TYPEDEF(0x03CDA8F8, Menu_WaitForUserStats_d_715); +DO_TYPEDEF(0x03CDA7B8, Menu_c_DisplayClass743_0); +DO_TYPEDEF(0x03CDA6E8, Menu_ShowUnlockedModalInternal_d_777); +DO_TYPEDEF(0x03CDA6C8, Menu_ShowUnlockedRobeModalInternal_d_778); +DO_TYPEDEF(0x03CDA6A0, Menu_ShowUnlockedSpriteTextModalInternal_d_779); +DO_TYPEDEF(0x03CDA678, Menu_c_DisplayClass784_0); +DO_TYPEDEF(0x03CDA628, Menu_ShowMessageModalInternal_d_789); +DO_TYPEDEF(0x03CDA5F0, Menu_c_DisplayClass791_0); +DO_TYPEDEF(0x03CDA510, Menu_StartXR_d_813); +DO_TYPEDEF(0x03CDA4F0, Menu_WaitToEnableConfirmModalButtons_d_821); +DO_TYPEDEF(0x03CDA4C8, Menu_c_DisplayClass822_0); +DO_TYPEDEF(0x03CDA4B8, Menu_DelayEnableKeyBindingsScrollToSelection_d_826); +DO_TYPEDEF(0x03D1A308, ServerAcceptToken); +DO_TYPEDEF(0x03D1A300, ServerRefuseToken); +DO_TYPEDEF(0x03D1A348, ServerDisconnectToken); +DO_TYPEDEF(0x03D17EC0, SteamInventoryItemsToken); +DO_TYPEDEF(0x03CDFDD8, ServerBrowser_ShowEmptyMessage_d_21); +DO_TYPEDEF(0x03CDFD38, ServerBrowser_c_DisplayClass22_0); +DO_TYPEDEF(0x03CDFCC0, _f_AnonymousType2_3_UdpKit_Platform_Photon_PhotonSession_Horror_RoomProtocolToken_Horror_GameConfigToken_); +DO_TYPEDEF(0x03CDFD28, ServerBrowser_c_DisplayClass22_1); +DO_TYPEDEF(0x03CDFD30, ServerBrowser_c); +DO_TYPEDEF(0x03CDFD90, Func_2_System_Collections_Generic_KeyValuePair_2_f_AnonymousType2_3_); +DO_TYPEDEF(0x03CDFD78, Func_2_f_AnonymousType2_3_String_); +DO_TYPEDEF(0x03CDFCF0, ServerBrowser_ReselectServerSessionByIndex_d_23); +DO_TYPEDEF(0x03CDFCE8, ServerBrowser_ControllerReselectDelayed_d_37); +DO_TYPEDEF(0x03CDFC88, SurvivalNetworkCallbacks_WaitForHost_d_9); +DO_TYPEDEF(0x03CDFBB0, DACPrefabPool); +DO_TYPEDEF(0x03CE3A60, IControllerTemplateElement); +DO_TYPEDEF(0x03CC58C0, ControllerTemplate); +DO_TYPEDEF(0x03CDFB80, GamepadTemplate); +DO_TYPEDEF(0x03CEBB48, ADictionary_2_System_Int32_Rewired_IControllerTemplateElement_); +DO_TYPEDEF(0x03CEBB70, ADictionary_2_System_String_Rewired_IControllerTemplateElement_); +DO_TYPEDEF(0x03CEB9F8, ReadOnlyCollection_1_Rewired_IControllerTemplateElement_); +DO_TYPEDEF(0x03CC18D0, IList_1_Rewired_IControllerTemplateElement_); +DO_TYPEDEF(0x03CE3A58, IList_1_Rewired_ControllerTemplateElementTarget_); +DO_TYPEDEF(0x03CBDA80, IControllerTemplateButton); +DO_TYPEDEF(0x03CBDAC8, IControllerTemplateAxis); +DO_TYPEDEF(0x03CC1958, IControllerTemplateThumbStick); +DO_TYPEDEF(0x03CC1960, IControllerTemplateDPad); +DO_TYPEDEF(0x03CDFB68, RacingWheelTemplate); +DO_TYPEDEF(0x03CDFB48, HOTASTemplate); +DO_TYPEDEF(0x03CC1948, IControllerTemplateStick); +DO_TYPEDEF(0x03CC1970, IControllerTemplateHat); +DO_TYPEDEF(0x03CC1940, IControllerTemplateThrottle); +DO_TYPEDEF(0x03CDFB00, FlightYokeTemplate); +DO_TYPEDEF(0x03CC1950, IControllerTemplateYoke); +DO_TYPEDEF(0x03CDFAD0, FlightPedalsTemplate); +DO_TYPEDEF(0x03CDF9F0, SixDofControllerTemplate); +DO_TYPEDEF(0x03CC1968, IControllerTemplateStick6D); +DO_TYPEDEF(0x03CDF9E0, ExternalTools); +DO_TYPEDEF(0x03CDF978, Action_2_UInt32_Boolean_); +DO_TYPEDEF(0x03CDF630, UserDataStore_PlayerPrefs_ControllerAssignmentSaveInfo_JoystickInfo); +DO_TYPEDEF(0x03CDF620, UserDataStore_PlayerPrefs_ControllerAssignmentSaveInfo_PlayerInfo); +DO_TYPEDEF(0x03CDF638, UserDataStore_PlayerPrefs_ControllerAssignmentSaveInfo); +DO_TYPEDEF(0x03CDF628, UserDataStore_PlayerPrefs_ControllerAssignmentSaveInfo_JoystickInfo__Array); +DO_TYPEDEF(0x03CDF448, UserDataStore_PlayerPrefs_ControllerAssignmentSaveInfo_PlayerInfo__Array); +DO_TYPEDEF(0x03CC5CA8, JoystickMapSaveData); +DO_TYPEDEF(0x03CC5CA0, KeyboardMapSaveData); +DO_TYPEDEF(0x03CC5C90, MouseMapSaveData); +DO_TYPEDEF(0x03CC5C98, CustomControllerMapSaveData); +DO_TYPEDEF(0x03CDF720, UserDataStore_PlayerPrefs_JoystickAssignmentHistoryInfo); +DO_TYPEDEF(0x03CDF6B0, UserDataStore_PlayerPrefs_c_DisplayClass78_0); +DO_TYPEDEF(0x03CDF6A0, UserDataStore_PlayerPrefs_c_DisplayClass78_1); +DO_TYPEDEF(0x03CDF688, UserDataStore_PlayerPrefs_c_DisplayClass78_2); +DO_TYPEDEF(0x03CDF660, UserDataStore_PlayerPrefs_LoadJoystickAssignmentsDeferred_d_80); +DO_TYPEDEF(0x03CE1A38, RewiredStandaloneInputModule_PlayerSetting); +DO_TYPEDEF(0x03CE19E0, ControlRemappingDemo1_DialogHelper); +DO_TYPEDEF(0x03CE13A8, GUI_WindowFunction); +DO_TYPEDEF(0x03CE15A0, Action_2_String_String_); +DO_TYPEDEF(0x03CE15B8, Action_2_Int32_Rewired_Demos_ControlRemappingDemo1_UserResponse_); +DO_TYPEDEF(0x03CE19F8, ControlRemappingDemo1_ControllerSelection); +DO_TYPEDEF(0x03CE1340, ControlRemappingDemo1_QueueEntry); +DO_TYPEDEF(0x03CE19D0, Queue_1_Rewired_Demos_ControlRemappingDemo1_QueueEntry_); +DO_TYPEDEF(0x03CE18E0, ControlRemappingDemo1_JoystickAssignmentChange); +DO_TYPEDEF(0x03CE17F0, ControlRemappingDemo1_ElementAssignmentChange); +DO_TYPEDEF(0x03CE1740, ControlRemappingDemo1_FallbackJoystickIdentification); +DO_TYPEDEF(0x03CE1860, ControlRemappingDemo1_Calibration); +DO_TYPEDEF(0x03CAD070, ScreenOrientation__Enum); +DO_TYPEDEF(0x03CE1178, DualShock4SpecialFeaturesExample_Touch); +DO_TYPEDEF(0x03CE1190, List_1_Rewired_Demos_DualShock4SpecialFeaturesExample_Touch_); +DO_TYPEDEF(0x03CE1188, Queue_1_Rewired_Demos_DualShock4SpecialFeaturesExample_Touch_); +DO_TYPEDEF(0x03CE1220, IDualShock4Extension); +DO_TYPEDEF(0x03CE1138, DualShock4SpecialFeaturesExample_c_DisplayClass20_0); +DO_TYPEDEF(0x03CE1110, Queue_1_Rewired_Joystick_); +DO_TYPEDEF(0x03CB7AE0, PlayerMouse_1); +DO_TYPEDEF(0x03CE1008, PressStartToJoinExample_Assigner); +DO_TYPEDEF(0x03CE0FE8, PressStartToJoinExample_Assigner_PlayerMap); +DO_TYPEDEF(0x03CE1000, List_1_Rewired_Demos_PressStartToJoinExample_Assigner_PlayerMap_); +DO_TYPEDEF(0x03CE0F78, SimpleCombinedKeyboardMouseRemapping_Row); +DO_TYPEDEF(0x03CE0F60, List_1_Rewired_Demos_SimpleCombinedKeyboardMouseRemapping_Row_); +DO_TYPEDEF(0x03CE0F88, SimpleCombinedKeyboardMouseRemapping_c_DisplayClass17_0); +DO_TYPEDEF(0x03CE0F70, SimpleCombinedKeyboardMouseRemapping_StartListeningDelayed_d_22); +DO_TYPEDEF(0x03CE3AF8, SimpleControlRemapping_Row); +DO_TYPEDEF(0x03CE3AD8, List_1_Rewired_Demos_SimpleControlRemapping_Row_); +DO_TYPEDEF(0x03CE3B08, SimpleControlRemapping_c_DisplayClass21_0); +DO_TYPEDEF(0x03CE3AE8, SimpleControlRemapping_StartListeningDelayed_d_28); +DO_TYPEDEF(0x03CE3AC8, ControllerUIElement__Array); +DO_TYPEDEF(0x03CE3A98, GamepadTemplateUI_UIElement); +DO_TYPEDEF(0x03CE3AA8, GamepadTemplateUI_Stick); +DO_TYPEDEF(0x03CE3A90, GamepadTemplateUI_UIElement__Array); +DO_TYPEDEF(0x03CE3A18, Dictionary_2_System_Int32_Rewired_Demos_GamepadTemplateUI_ControllerUIElement_); +DO_TYPEDEF(0x03CE3AA0, GamepadTemplateUI_Stick__Array); +DO_TYPEDEF(0x03CFD110, WetStuff); +DO_TYPEDEF(0x03CFD570, SemanticVersion_1); +DO_TYPEDEF(0x03CFFF60, Log_1); +DO_TYPEDEF(0x03CFD488, WetDecalRenderer); +DO_TYPEDEF(0x03CFD448, WetDecalRenderer_DecalBatch); +DO_TYPEDEF(0x03CFD490, List_1_PlaceholderSoftware_WetStuff_WetDecalRenderer_DecalBatch_); +DO_TYPEDEF(0x03CFD6A8, BatchCulling); +DO_TYPEDEF(0x03CFD2D0, MaterialProperties); +DO_TYPEDEF(0x03CFD230, DecalShape__Enum); +DO_TYPEDEF(0x03D00360, MaterialPermutation); +DO_TYPEDEF(0x03CFD140, WetDecalSystem_MaterialBatch); +DO_TYPEDEF(0x03CFD378, InstanceProperties); +DO_TYPEDEF(0x03CFD348, WetDecalSystem_DecalRenderInstance); +DO_TYPEDEF(0x03CFD288, List_1_PlaceholderSoftware_WetStuff_WetDecalSystem_DecalRenderInstance_); +DO_TYPEDEF(0x03CFD2B8, Pool_1_PlaceholderSoftware_WetStuff_WetDecalSystem_DecalRenderInstance_); +DO_TYPEDEF(0x03CFD2C8, Func_1_PlaceholderSoftware_WetStuff_WetDecalSystem_DecalRenderInstance_); +DO_TYPEDEF(0x03CFD480, WetDecalSystem); +DO_TYPEDEF(0x03CFD138, WetDecalSystem_State); +DO_TYPEDEF(0x03CFD2A0, WetDecalSystem_MaterialBatchId); +DO_TYPEDEF(0x03CFD1E0, Dictionary_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch_); +DO_TYPEDEF(0x03CFD1C8, List_1_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch_); +DO_TYPEDEF(0x03CFD1B0, ReadOnlyCollection_1_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch_); +DO_TYPEDEF(0x03CFD3A8, IWetDecal); +DO_TYPEDEF(0x03CFD1C0, List_1_PlaceholderSoftware_WetStuff_IWetDecal_); +DO_TYPEDEF(0x03CFD298, BoundingSphere__Array); +DO_TYPEDEF(0x03CFD278, ReadOnlyCollection_1_PlaceholderSoftware_WetStuff_WetDecalSystem_DecalRenderInstance_); +DO_TYPEDEF(0x03CFD718, CullingGroup); +DO_TYPEDEF(0x03D041D8, CullingGroup_StateChanged); +DO_TYPEDEF(0x03CFD3E0, Matrix4x4__Array); +DO_TYPEDEF(0x03CFD4A0, Dictionary_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch_PlaceholderSoftware_WetStuff_WetDecalRenderer_DecalBatch_); +DO_TYPEDEF(0x03CFD500, WetAttributeModifier); +DO_TYPEDEF(0x03CFD130, Action_1_UnityEngine_Rendering_CommandBuffer_); +DO_TYPEDEF(0x03CE3990, AlignToGroundAnimated); +DO_TYPEDEF(0x03CE38C8, List_1_Opsive_UltimateCharacterController_Character_Abilities_Ability_); +DO_TYPEDEF(0x03CE3868, Dictionary_2_UnityEngine_Material_List_1_UnityEngine_Renderer_); +DO_TYPEDEF(0x03CFF398, Component__Array); +DO_TYPEDEF(0x03CE37C0, DoorScript_DoorControls); +DO_TYPEDEF(0x03CE37B8, DoorScript_AnimNames); +DO_TYPEDEF(0x03CE37A8, DoorScript_DoorSounds); +DO_TYPEDEF(0x03CE37B0, DoorScript_DoorTexts); +DO_TYPEDEF(0x03CE3798, DoorScript_KeySystem); +DO_TYPEDEF(0x03CE36D0, MagicLightProbes); +DO_TYPEDEF(0x03CE36D8, List_1_MagicLightProbes_MLPLight_); +DO_TYPEDEF(0x03CE36C0, List_1_MagicLightProbes_MLPTracePoint_); +DO_TYPEDEF(0x03CE3680, MLPPointData); +DO_TYPEDEF(0x03CE3740, List_1_MagicLightProbes_MLPPointData_); +DO_TYPEDEF(0x03CE36E0, List_1_System_Collections_IEnumerator_); +DO_TYPEDEF(0x03CBA028, IEnumerator__Array); +DO_TYPEDEF(0x03CE36F0, List_1_MagicLightProbes_MagicLightProbes_VolumeParameters_); +DO_TYPEDEF(0x03CE3700, List_1_MagicLightProbes_MagicLightProbes_); +DO_TYPEDEF(0x03CE36F8, List_1_UnityEngine_LayerMask_); +DO_TYPEDEF(0x03CE36A0, DublicateVertical_ExecutePass_d_0); +DO_TYPEDEF(0x03CE3650, EquivalentProbesOptimization_ExecutePass_d_0); +DO_TYPEDEF(0x03CE3600, PartialVolumeFilling_ExecutePass_d_1); +DO_TYPEDEF(0x03CE35C0, RemoveUnusedPoints_ExecutePass_d_0); +DO_TYPEDEF(0x03CE35A0, SetDistanceFromGeometry_ExecutePass_d_0); +DO_TYPEDEF(0x03CE3450, BoltClient); DO_TYPEDEF(0x03C946C8, EventQueue); DO_TYPEDEF(0x03C94760, ReadonlyLockedValue_1_System_Collections_Generic_List_1__1); DO_TYPEDEF(0x03C94740, List_1_Dissonance_Networking_Client_EventQueue_NetworkEvent_); +DO_TYPEDEF(0x03CCD288, ReadonlyLockedValue_1_Dissonance_Datastructures_Pool_1_); +DO_TYPEDEF(0x03CCD278, Pool_1_System_Byte_); DO_TYPEDEF(0x03C946D0, IRecycler_1_System_Collections_Generic_List_1_); DO_TYPEDEF(0x03C8F8C8, Action_2_String_Dissonance_CodecSettings_); DO_TYPEDEF(0x03C8F8B8, Action_1_Dissonance_Networking_RoomEvent_); DO_TYPEDEF(0x03C8E958, ClientIdCollection); DO_TYPEDEF(0x03C8E9F0, List_1_System_UInt16_); +DO_TYPEDEF(0x03CE34C0, BoltPeer); DO_TYPEDEF(0x03C94478, PeerVoiceReceiver); DO_TYPEDEF(0x03C94470, IVoiceEventQueue); DO_TYPEDEF(0x03C943B8, IRooms); +DO_TYPEDEF(0x03CEEE28, Dictionary_2_System_UInt16_List_1_System_String_); +DO_TYPEDEF(0x03CEEE08, Pool_1_System_Collections_Generic_List_1_); +DO_TYPEDEF(0x03CEEE10, Func_1_System_Collections_Generic_List_1__2); +DO_TYPEDEF(0x03CBB348, Stack_1_List_1_System_String_); DO_TYPEDEF(0x03C8E6E0, PacketReader); +DO_TYPEDEF(0x03CF15A8, ISession); +DO_TYPEDEF(0x03CEED30, ReadonlyLockedValue_1_System_Collections_Generic_List_1__2); +DO_TYPEDEF(0x03CEECE8, List_1_System_Byte__1); +DO_TYPEDEF(0x03CCD268, PacketDelaySimulator); +DO_TYPEDEF(0x03CC4300, List_1_Dissonance_Networking_Client_PeerVoiceReceiver_); +DO_TYPEDEF(0x03CC42B0, ReadonlyLockedValue_1_System_Collections_Generic_List_1__4); DO_TYPEDEF(0x03C8E288, OpenChannel); +DO_TYPEDEF(0x03CC42A0, List_1_Dissonance_Networking_Client_OpenChannel_); +DO_TYPEDEF(0x03CC42A8, List_1_KeyValuePair_2_System_String_Dissonance_ChannelProperties_); +DO_TYPEDEF(0x03CCD2A0, TrafficCounter); DO_TYPEDEF(0x03C94828, Queue_1_KeyValuePair_2_System_DateTime_System_UInt32_); +DO_TYPEDEF(0x03CE3500, BoltDissonanceRelay); +DO_TYPEDEF(0x03CE34C8, BoltDissonanceRelay_IBoltPacketListener); +DO_TYPEDEF(0x03CE3488, List_1_Dissonance_Integrations_PhotonBolt_BoltDissonanceRelay_IBoltPacketListener_); +DO_TYPEDEF(0x03CE3508, BoltDissonanceRelay_IBoltDisconnectListener); +DO_TYPEDEF(0x03CE3490, List_1_Dissonance_Integrations_PhotonBolt_BoltDissonanceRelay_IBoltDisconnectListener_); DO_TYPEDEF(0x03C8E778, NetworkMode__Enum); +DO_TYPEDEF(0x03CE3458, BoltServer); DO_TYPEDEF(0x03C8E600, Dictionary_2_System_UInt16_System_String_); +DO_TYPEDEF(0x03CEEC18, Action_1_Dissonance_Networking_Server_Admin_IServerClientState_); +DO_TYPEDEF(0x03CEEBF0, Action_2_Dissonance_Networking_Server_Admin_IServerClientState_Dissonance_Networking_Server_Admin_IServerClientState_); +DO_TYPEDEF(0x03CEEBD0, List_1_Dissonance_Networking_Server_Admin_IServerClientState_); +DO_TYPEDEF(0x03CEEBB0, ReadOnlyCollection_1_Dissonance_Networking_Server_Admin_IServerClientState_); DO_TYPEDEF(0x03C95390, Action_1_Dissonance_Networking_NetworkMode_); +DO_TYPEDEF(0x03CE3420, Unit); +DO_TYPEDEF(0x03CE3558, BoltDissonanceChannels); +DO_TYPEDEF(0x03CE33B8, HairDesignerBase); +DO_TYPEDEF(0x03D20870, HairDesignerGenerator); +DO_TYPEDEF(0x03D20A38, List_1_Kalagaan_HairDesignerExtension_HairDesignerGenerator_); +DO_TYPEDEF(0x03D20710, GeneratorParams); +DO_TYPEDEF(0x03D20BB0, BZCurv); +DO_TYPEDEF(0x03D20760, StrandRenderingData); +DO_TYPEDEF(0x03D21CF8, StrandData); +DO_TYPEDEF(0x03D20B20, MBZCurv); +DO_TYPEDEF(0x03D20B10, BZCurv__Array); +DO_TYPEDEF(0x03D21068, TriangleLock); +DO_TYPEDEF(0x03D21C80, TriangleLock_TriangleData); +DO_TYPEDEF(0x03D21C88, TriangleLock_ComputedData); +DO_TYPEDEF(0x03D20800, StrandTmpData); +DO_TYPEDEF(0x03CFFA20, List_1_UnityEngine_Vector2_); +DO_TYPEDEF(0x03D0C2A0, IEnumerator_1_UnityEngine_Vector2_); +DO_TYPEDEF(0x03D07B60, BoneWeight); +DO_TYPEDEF(0x03D209E8, List_1_UnityEngine_BoneWeight_); +DO_TYPEDEF(0x03D20920, HairPID_V3); +DO_TYPEDEF(0x03D21138, HairDesignerPID_Parameters); +DO_TYPEDEF(0x03D21CD0, HairDesignerPID); +DO_TYPEDEF(0x03D20730, List_1_Kalagaan_HairDesignerExtension_MotionZone_); +DO_TYPEDEF(0x03D21C70, HairDesignerShader); +DO_TYPEDEF(0x03D20740, List_1_Kalagaan_HairDesignerExtension_HairDesignerShader_); +DO_TYPEDEF(0x03D20738, List_1_Kalagaan_HairDesignerExtension_HairToolLayer_); +DO_TYPEDEF(0x03D207C8, HairDesignerGenerator_CreateMeshReferenceData); +DO_TYPEDEF(0x03CBC148, MeshCollider); +DO_TYPEDEF(0x03CBC140, SphereCollider); +DO_TYPEDEF(0x03CE31A8, HairDesignerGeneratorAdvancedFurBase); +DO_TYPEDEF(0x03D21A78, List_1_UnityEngine_SphereCollider_); +DO_TYPEDEF(0x03CE3380, List_1_UnityEngine_CapsuleCollider_); +DO_TYPEDEF(0x03CF1B40, CapsuleCollider__Array); +DO_TYPEDEF(0x03D21B58, HairDesignerGeneratorAdvancedFurBase_CSMotionData); +DO_TYPEDEF(0x03D21B78, HairDesignerGeneratorAdvancedFurBase_SkinData__Array); +DO_TYPEDEF(0x03D23188, List_1_UnityEngine_MeshRenderer_); +DO_TYPEDEF(0x03CBC218, List_1_UnityEngine_MeshFilter_); +DO_TYPEDEF(0x03D21C08, HairDesignerGeneratorAdvancedFurBase_DualSphereCollider__Array); +DO_TYPEDEF(0x03CE51C0, HairDesignerGeneratorFurShellBase); +DO_TYPEDEF(0x03D211F8, List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_LODGroup_); +DO_TYPEDEF(0x03D21378, ComputeBuffer__Array); +DO_TYPEDEF(0x03D21200, List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData_); +DO_TYPEDEF(0x03D212A0, HairDesignerGeneratorFurShellBase_SkinData__Array); +DO_TYPEDEF(0x03D21C78, HairDesignerGeneratorLongHairBase); +DO_TYPEDEF(0x03D21078, HairDesignerGeneratorLongHairBase_HairGroup); +DO_TYPEDEF(0x03D21050, List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorLongHairBase_HairGroup_); +DO_TYPEDEF(0x03D21CB0, List_1_Kalagaan_HairDesignerExtension_StrandData_); +DO_TYPEDEF(0x03D21CB8, List_1_UnityEngine_Quaternion_); +DO_TYPEDEF(0x03D0C2C8, IEnumerator_1_UnityEngine_Quaternion_); +DO_TYPEDEF(0x03D21CD8, List_1_Kalagaan_HairDesignerExtension_HairPID_V3_); +DO_TYPEDEF(0x03D20B88, List_1_Kalagaan_HairDesignerExtension_HairDesignerStrandMeshCollectionBase_StrandMesh_); +DO_TYPEDEF(0x03D21048, HairDesignerGeneratorLongHairBase_MotionBoneData); +DO_TYPEDEF(0x03D21058, List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorLongHairBase_MirrorModifier_); +DO_TYPEDEF(0x03D21090, HairDesignerGeneratorLongHairBase_EditorData); +DO_TYPEDEF(0x03CBA5A8, List_1_UnityEngine_Vector3__1); +DO_TYPEDEF(0x03D14160, Vector3__Array__Array); +DO_TYPEDEF(0x03D21160, MotionSolver); +DO_TYPEDEF(0x03D21158, MotionSolver_Node); +DO_TYPEDEF(0x03D20E90, List_1_Kalagaan_HairDesignerExtension_MotionSolver_Node_); +DO_TYPEDEF(0x03D20BE8, MotionSolver_Link); +DO_TYPEDEF(0x03D20C20, List_1_Kalagaan_HairDesignerExtension_MotionSolver_Link_); +DO_TYPEDEF(0x03D20DE0, MotionSolver_SolverSettings); +DO_TYPEDEF(0x03D20C28, List_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_); +DO_TYPEDEF(0x03D20C30, List_1_Kalagaan_HairDesignerExtension_HairDesignerMotionConstraintAreaBase_); +DO_TYPEDEF(0x03D20D70, Action_1_Kalagaan_HairDesignerExtension_HairDesignerMotionConstraintAreaBase_); +DO_TYPEDEF(0x03D20E88, List_1_Kalagaan_HairDesignerExtension_HairDesignerMotionConstraintAreaBase_Area_); +DO_TYPEDEF(0x03D20D90, MotionSolver_GPURootTransform__Array); +DO_TYPEDEF(0x03CE33B0, HairDesignerRuntimeLayerBase); +DO_TYPEDEF(0x03D21BE0, Dictionary_2_System_String_UnityEngine_Transform_); +DO_TYPEDEF(0x03CF2F58, ICollection_1_UnityEngine_Transform_); +DO_TYPEDEF(0x03CE3370, List_1_Kalagaan_HairDesignerExtension_HairDesignerRuntimeLayerBase_); +DO_TYPEDEF(0x03CE3198, HairDesignerShaderAdvancedFur_EditorSettings); +DO_TYPEDEF(0x03D20998, List_1_Kalagaan_HairDesignerExtension_TextureToolShaderParameters_); +DO_TYPEDEF(0x03D20968, TextureToolColor); +DO_TYPEDEF(0x03D20978, List_1_Kalagaan_HairDesignerExtension_TextureToolColor_); +DO_TYPEDEF(0x03CE3190, List_1_Kalagaan_HairDesignerExtension_HairDesignerShaderAdvancedFur_LODData_); +DO_TYPEDEF(0x03CE5050, SharedAnimationCurve); +DO_TYPEDEF(0x03CE5040, SharedBehaviour); +DO_TYPEDEF(0x03CE5020, SharedCollider); +DO_TYPEDEF(0x03CE5010, SharedColor); +DO_TYPEDEF(0x03D1CC30, Func_1_UnityEngine_Color_); +DO_TYPEDEF(0x03D13040, Action_1_UnityEngine_Color_); +DO_TYPEDEF(0x03CE4FE8, SharedGameObject); +DO_TYPEDEF(0x03D1CBA8, Func_1_UnityEngine_GameObject_); +DO_TYPEDEF(0x03D119C8, Action_1_UnityEngine_GameObject_); +DO_TYPEDEF(0x03D1A260, SharedGameObjectList); +DO_TYPEDEF(0x03CE4FD0, SharedHumanBodyBones); +DO_TYPEDEF(0x03D1CB38, Func_1_UnityEngine_HumanBodyBones_); +DO_TYPEDEF(0x03D1CD70, Action_1_UnityEngine_HumanBodyBones_); +DO_TYPEDEF(0x03CE4FB8, SharedInt); +DO_TYPEDEF(0x03CB58F8, Func_1_Int32_); +DO_TYPEDEF(0x03CE4FA0, SharedLayerMask); +DO_TYPEDEF(0x03D1CAF8, Func_1_UnityEngine_LayerMask_); +DO_TYPEDEF(0x03D1CCF8, Action_1_UnityEngine_LayerMask_); +DO_TYPEDEF(0x03CE4F90, SharedMaterial); +DO_TYPEDEF(0x03CE4F80, SharedObject); +DO_TYPEDEF(0x03D1CBE0, Func_1_UnityEngine_Object_); +DO_TYPEDEF(0x03D1CCD8, Action_1_UnityEngine_Object_); +DO_TYPEDEF(0x03CE4F70, SharedObjectList); +DO_TYPEDEF(0x03CE4F60, SharedQuaternion); +DO_TYPEDEF(0x03D1CAC8, Func_1_UnityEngine_Quaternion_); +DO_TYPEDEF(0x03D1CD28, Action_1_UnityEngine_Quaternion_); +DO_TYPEDEF(0x03CE4F50, SharedRect); +DO_TYPEDEF(0x03D1CC68, Func_1_UnityEngine_Rect_); +DO_TYPEDEF(0x03D1CD58, Action_1_UnityEngine_Rect_); +DO_TYPEDEF(0x03CE4F40, SharedString); +DO_TYPEDEF(0x03D1CC90, Func_1_String_); +DO_TYPEDEF(0x03CE4F30, SharedTransform); +DO_TYPEDEF(0x03D1CC48, Func_1_UnityEngine_Transform_); +DO_TYPEDEF(0x03D15590, Action_1_UnityEngine_Transform_); +DO_TYPEDEF(0x03CE4F18, SharedTransformList); +DO_TYPEDEF(0x03CE4F10, SharedUInt); +DO_TYPEDEF(0x03D1CB40, Func_1_UInt32_); +DO_TYPEDEF(0x03D1CCC8, Action_1_UInt32_); +DO_TYPEDEF(0x03CE4F00, SharedVector2); +DO_TYPEDEF(0x03D1CAA0, Func_1_UnityEngine_Vector2_); +DO_TYPEDEF(0x03CE4EF0, SharedVector2Int); +DO_TYPEDEF(0x03CE4EE0, SharedVector3); +DO_TYPEDEF(0x03D1A670, Action_1_UnityEngine_Vector3_); +DO_TYPEDEF(0x03CBF148, Vector3Int); +DO_TYPEDEF(0x03CE4ED0, SharedVector3Int); +DO_TYPEDEF(0x03CE4EC0, SharedVector4); +DO_TYPEDEF(0x03D1CC20, Func_1_UnityEngine_Vector4_); +DO_TYPEDEF(0x03D1CCC0, Action_1_UnityEngine_Vector4_); +DO_TYPEDEF(0x03CE4EB0, SharedColliderList); +DO_TYPEDEF(0x03CE4EA0, SharedFloatList); +DO_TYPEDEF(0x03CE4E90, SharedIntDataAnimationList); +DO_TYPEDEF(0x03CE4E80, SharedIntList); +DO_TYPEDEF(0x03CE4E70, SharedRageSpeedChangeList); +DO_TYPEDEF(0x03CBF618, SharedNamedVariable); +DO_TYPEDEF(0x03CBF758, BehaviorReference); +DO_TYPEDEF(0x03CBF628, GenericVariable); +DO_TYPEDEF(0x03CBF638, NamedVariable); +DO_TYPEDEF(0x03CBFC78, ParentTask); +DO_TYPEDEF(0x03CBF578, Decorator); +DO_TYPEDEF(0x03CBF730, Composite); +DO_TYPEDEF(0x03CE4C30, TaskStatus__Enum_1__Array); +DO_TYPEDEF(0x03CBF720, Conditional); +DO_TYPEDEF(0x03CE49C0, EnrageWait_DelayEnrage_d_33); +DO_TYPEDEF(0x03CE4930, ShouldSpawnEgg_c); +DO_TYPEDEF(0x03CE4940, Func_2_UnityEngine_GameObject_InnShrineController_); +DO_TYPEDEF(0x03CBF630, SharedGenericVariable); +DO_TYPEDEF(0x03CEA688, GetEggSpawnPoint_c); +DO_TYPEDEF(0x03CEA698, Func_2_UnityEngine_GameObject_InnHoleController_); +DO_TYPEDEF(0x03CEA620, GetExitHole_c); +DO_TYPEDEF(0x03D1DA80, Predicate_1_UnityEngine_GameObject_); +DO_TYPEDEF(0x03CEA560, GetNearestHole_c); +DO_TYPEDEF(0x03CEA598, Predicate_1_InnHoleController_); +DO_TYPEDEF(0x03CEA5A8, Func_2_InnHoleController_UnityEngine_Vector3_); +DO_TYPEDEF(0x03CEA538, GetNearestHole_ConstructPath_d_11); +DO_TYPEDEF(0x03CEA418, GetRandomHidingSpot_c); +DO_TYPEDEF(0x03CEA430, Func_2_UnityEngine_GameObject_UnityEngine_Vector3_); +DO_TYPEDEF(0x03CEA3C8, GetRandomHidingSpot_ConstructPath_d_13); +DO_TYPEDEF(0x03CEA250, GetValidHidingSpots_c_DisplayClass5_0); +DO_TYPEDEF(0x03CE9FA8, GetNearestPerch_c_DisplayClass9_0); +DO_TYPEDEF(0x03CE9FC0, GetNearestPerch_c); +DO_TYPEDEF(0x03CEA058, Func_2_UnityEngine_GameObject_CrowPerchController_); +DO_TYPEDEF(0x03CEA070, Func_2_CrowPerchController_UnityEngine_Vector3_); +DO_TYPEDEF(0x03CE9F70, GetNearestPerch_ConstructPath_d_10); +DO_TYPEDEF(0x03CE9B10, _f_AnonymousType0_2_System_Collections_Generic_List_1_System_Int32_); +DO_TYPEDEF(0x03CE9D60, GetRandomGameObject_c); +DO_TYPEDEF(0x03CE9C38, Func_3_System_Collections_Generic_List_1_Int32_f_AnonymousType0_2_); +DO_TYPEDEF(0x03CE9D50, GetRandomGameObject_ConstructPath_d_14); +DO_TYPEDEF(0x03CE97A0, Crawl__Array); +DO_TYPEDEF(0x03CEC390, SetBoolParameter_ResetValue_d_9); +DO_TYPEDEF(0x03CEC340, SetFloatParameter_ResetValue_d_9); +DO_TYPEDEF(0x03CEC320, SetIntegerParameter_ResetValue_d_9); +DO_TYPEDEF(0x03CC0B48, WrapMode__Enum); +DO_TYPEDEF(0x03CEC0A8, SharedItemDefinitionBase); +DO_TYPEDEF(0x03CEC050, SharedItemType); +DO_TYPEDEF(0x03D1D218, IForceObject); +DO_TYPEDEF(0x03D1D240, Dictionary_2_UnityEngine_Collider_Opsive_UltimateCharacterController_Traits_Hitbox_); +DO_TYPEDEF(0x03CDA740, IReloadableItem); +DO_TYPEDEF(0x03CDABA0, Reload_1); +DO_TYPEDEF(0x03CDA7C0, IReloadableItem__Array); +DO_TYPEDEF(0x03CDA5A0, HashSet_1_Opsive_UltimateCharacterController_Items_Item_); +DO_TYPEDEF(0x03D164B8, IUsableItem); +DO_TYPEDEF(0x03D14528, Use); +DO_TYPEDEF(0x03CDA598, IUsableItem__Array); +DO_TYPEDEF(0x03CEB8E0, NavMeshAgent__Array); +DO_TYPEDEF(0x03CEBA78, Collider2D__Array); +DO_TYPEDEF(0x03CEBAC8, SharedDetectionMode); +DO_TYPEDEF(0x03CED188, GhostGetWanderDestination_c); +DO_TYPEDEF(0x03CED190, Func_2_UnityEngine_GameObject_UnityEngine_BoxCollider_); +DO_TYPEDEF(0x03CED130, UltimateCharacterLocomotion__Array); +DO_TYPEDEF(0x03CEE678, IAstarAI__Array); +DO_TYPEDEF(0x03CEE5D0, AnnaWander_SetGoatBurntDuringEnrage_d_62); +DO_TYPEDEF(0x03CD72E8, List_1_Photon_Bolt_BoltEntity_); +DO_TYPEDEF(0x03CEE3A0, VersionInfo); +DO_TYPEDEF(0x03CFA858, Interop_SspiCli_ContextAttribute__Enum); +DO_TYPEDEF(0x03CD99D8, SafeFreeContextBuffer); DO_TYPEDEF(0x03CA2518, SafeFreeContextBuffer_SECURITY); +DO_TYPEDEF(0x03CD9A08, Interop_SspiCli_SEC_WINNT_AUTH_IDENTITY_W); DO_TYPEDEF(0x03CA2520, SafeSspiAuthDataHandle); +DO_TYPEDEF(0x03CD99F0, Interop_SspiCli_SCHANNEL_CRED); +DO_TYPEDEF(0x03CFA490, Interop_SECURITY_STATUS__Enum); +DO_TYPEDEF(0x03CFA8D8, Interop_SspiCli_SecPkgContext_IssuerListInfoEx); DO_TYPEDEF(0x03CA2508, CFString); +DO_TYPEDEF(0x03CB1108, CFArray); DO_TYPEDEF(0x03CA24D8, INativeObject); DO_TYPEDEF(0x03CA24B8, CFNumber); DO_TYPEDEF(0x03CA24D0, CFData); @@ -880,27 +4140,99 @@ DO_TYPEDEF(0x03CA2438, CFBoolean); DO_TYPEDEF(0x03CA2458, CFDate); DO_TYPEDEF(0x03CA2420, SystemCertificateProvider); DO_TYPEDEF(0x03C91A28, MonoTlsProvider); +DO_TYPEDEF(0x03D0A8B8, MobileTlsProvider); +DO_TYPEDEF(0x03D0A7B8, UnityTlsProvider); DO_TYPEDEF(0x03C91A10, TlsProtocols__Enum); +DO_TYPEDEF(0x03C91A08, CipherSuiteCode__Enum); DO_TYPEDEF(0x03C91A40, MonoTlsSettings); +DO_TYPEDEF(0x03D0A6D0, MonoRemoteCertificateValidationCallback); DO_TYPEDEF(0x03CA21C8, X509Chain); DO_TYPEDEF(0x03CA23A0, UnityTls_unitytls_x509list_ref); DO_TYPEDEF(0x03CA21D0, X509ChainImplUnityTls); DO_TYPEDEF(0x03CA2120, X509ChainElementCollection); DO_TYPEDEF(0x03CA2160, X509ChainPolicy); +DO_TYPEDEF(0x03CFAE50, OidCollection); +DO_TYPEDEF(0x03CF8978, List_1_System_Security_Cryptography_Oid_); DO_TYPEDEF(0x03C919D0, X509CertificateCollection); +DO_TYPEDEF(0x03D09728, X509Certificate2Collection); +DO_TYPEDEF(0x03CFAE60, X509ChainStatusFlags__Enum); +DO_TYPEDEF(0x03CF8048, X509ChainStatus); DO_TYPEDEF(0x03CA2110, List_1_System_Security_Cryptography_X509Certificates_X509ChainStatus_); DO_TYPEDEF(0x03CA2138, X509ChainStatus__Array); +DO_TYPEDEF(0x03D0C0C8, IEnumerator_1_System_Security_Cryptography_X509Certificates_X509ChainStatus_); DO_TYPEDEF(0x03CA1E58, MonoSslPolicyErrors__Enum); -DO_TYPEDEF(0x03C91A08, CipherSuiteCode__Enum); +DO_TYPEDEF(0x03D0A640, MonoLocalCertificateSelectionCallback); DO_TYPEDEF(0x03CA2168, MobileAuthenticatedStream); DO_TYPEDEF(0x03CA1EB0, ChainValidationHelper); DO_TYPEDEF(0x03CA1E90, WeakReference_1_System_Net_Security_SslStream_); DO_TYPEDEF(0x03CA1E10, ServerCertValidationCallback); DO_TYPEDEF(0x03CA1E00, RemoteCertificateValidationCallback); +DO_TYPEDEF(0x03CD9778, SslPolicyErrors__Enum); DO_TYPEDEF(0x03CA1EA0, LocalCertSelectionCallback); +DO_TYPEDEF(0x03D0DB40, WebExceptionStatus__Enum); +DO_TYPEDEF(0x03D1ADB0, MonoTlsStream); +DO_TYPEDEF(0x03D13570, NetworkStream); +DO_TYPEDEF(0x03CC8108, WebRequest); +DO_TYPEDEF(0x03D16F48, HttpWebRequest_NtlmAuthState__Enum); +DO_TYPEDEF(0x03D0BA48, HttpWebRequest); +DO_TYPEDEF(0x03D10808, TimerThread_TimerQueue); +DO_TYPEDEF(0x03D107C8, TimerThread_TimerNode); +DO_TYPEDEF(0x03CB5290, TimerThread_Callback); +DO_TYPEDEF(0x03D1F008, RequestCacheLevel__Enum); +DO_TYPEDEF(0x03D17878, RequestCachePolicy); +DO_TYPEDEF(0x03D10BF0, RequestCacheProtocol); +DO_TYPEDEF(0x03D10D38, RequestCacheBinding); +DO_TYPEDEF(0x03D1F0C0, RequestCache); +DO_TYPEDEF(0x03D10AF8, WebRequest_DesignerWebRequestCreate); +DO_TYPEDEF(0x03D10B78, IWebProxy); +DO_TYPEDEF(0x03D0DC20, IWebRequestCreate); +DO_TYPEDEF(0x03CE2370, NameObjectCollectionBase); +DO_TYPEDEF(0x03D0DAE0, NameValueCollection); +DO_TYPEDEF(0x03D0DB30, WebHeaderCollection); +DO_TYPEDEF(0x03CE1E88, NameObjectCollectionBase_NameObjectEntry); +DO_TYPEDEF(0x03CE1BB0, NameObjectCollectionBase_KeysCollection); +DO_TYPEDEF(0x03D0D9B0, HeaderInfoTable); +DO_TYPEDEF(0x03D10A00, HeaderInfo); +DO_TYPEDEF(0x03D109F8, HeaderParser); +DO_TYPEDEF(0x03D0D9A8, WebHeaderCollection_RfcChar__Enum__Array); +DO_TYPEDEF(0x03D0A5B8, ICredentials); +DO_TYPEDEF(0x03D13AC8, WebResponse); +DO_TYPEDEF(0x03D104F0, CookieContainer); +DO_TYPEDEF(0x03D104E0, HeaderVariantInfo__Array); +DO_TYPEDEF(0x03D16420, ServicePoint); +DO_TYPEDEF(0x03D13720, IPHostEntry); +DO_TYPEDEF(0x03D16428, ServicePointManager_SPKey); +DO_TYPEDEF(0x03D166D8, ServicePointScheduler); +DO_TYPEDEF(0x03D16328, ServicePointScheduler_AsyncManualResetEvent); +DO_TYPEDEF(0x03D1AFE8, TaskCompletionSource_1_System_Boolean_); +DO_TYPEDEF(0x03D16350, ServicePointScheduler_ConnectionGroup); +DO_TYPEDEF(0x03D161B0, LinkedList_1_System_Net_WebConnection_); +DO_TYPEDEF(0x03D16190, WebConnection); DO_TYPEDEF(0x03CA1FA8, NetworkCredential); +DO_TYPEDEF(0x03D1ADA8, WebConnectionTunnel); +DO_TYPEDEF(0x03D17578, WebOperation); +DO_TYPEDEF(0x03D0DBC8, BufferOffsetSize); +DO_TYPEDEF(0x03D1AC30, WebCompletionSource_1_WebRequestStream_); +DO_TYPEDEF(0x03D1AE30, WebRequestStream); +DO_TYPEDEF(0x03D16E58, WebCompletionSource); +DO_TYPEDEF(0x03D1AC38, WebCompletionSource_1_WebResponseStream_); +DO_TYPEDEF(0x03D108B8, HttpStatusCode__Enum); +DO_TYPEDEF(0x03D1AB70, WebResponseStream); +DO_TYPEDEF(0x03D138C0, WebReadStream); +DO_TYPEDEF(0x03D1A9B8, BufferedReadStream); +DO_TYPEDEF(0x03D1AC08, WebCompletionSource_1_System_ValueTuple_2_); +DO_TYPEDEF(0x03D161B8, LinkedList_1_System_Net_WebOperation_); +DO_TYPEDEF(0x03D161D8, Dictionary_2_System_String_System_Net_ServicePointScheduler_ConnectionGroup_); +DO_TYPEDEF(0x03D16308, LinkedList_1_System_ValueTuple_2_); +DO_TYPEDEF(0x03D1AFD0, ValueTuple_2_System_Net_ServicePointScheduler_ConnectionGroup_System_Net_WebOperation___Array); +DO_TYPEDEF(0x03D16338, LinkedList_1_System_ValueTuple_3_); +DO_TYPEDEF(0x03D1AFC8, ValueTuple_3_System_Net_ServicePointScheduler_ConnectionGroup_System_Net_WebConnection_System_Threading_Tasks_Task___Array); +DO_TYPEDEF(0x03D16BE0, HttpWebResponse); +DO_TYPEDEF(0x03D10560, CookieCollection); DO_TYPEDEF(0x03CA1E20, SslStream); +DO_TYPEDEF(0x03D0A608, LocalCertificateSelectionCallback); DO_TYPEDEF(0x03CA1E48, ValidationResult); +DO_TYPEDEF(0x03CD96D8, ServerCertSelectionCallback); DO_TYPEDEF(0x03CA1CC8, MonoSslClientAuthenticationOptions); DO_TYPEDEF(0x03CA1478, SslClientAuthenticationOptions); DO_TYPEDEF(0x03C9D690, SslApplicationProtocol); @@ -917,6 +4249,7 @@ DO_TYPEDEF(0x03CA18C8, AsyncHandshakeRequest); DO_TYPEDEF(0x03CA1E60, BufferOffsetSize_1); DO_TYPEDEF(0x03CA1C10, BufferOffsetSize2); DO_TYPEDEF(0x03CA2178, UnityTlsStream); +DO_TYPEDEF(0x03CD99B8, SafeFreeContextBufferChannelBinding_SECURITY); DO_TYPEDEF(0x03CA23C0, X509PalImpl); DO_TYPEDEF(0x03CA2400, X509PalImplMono); DO_TYPEDEF(0x03CA2428, SystemDependencyProvider); @@ -974,60 +4307,917 @@ DO_TYPEDEF(0x03CA1B10, AsyncRenegotiateRequest); DO_TYPEDEF(0x03CA1DE0, ChainValidationHelper_c_DisplayClass11_0); DO_TYPEDEF(0x03CA17F8, MobileAuthenticatedStream_c_DisplayClass66_0); DO_TYPEDEF(0x03CA1C98, MonoSslServerAuthenticationOptions); +DO_TYPEDEF(0x03D0A968, SslServerAuthenticationOptions); +DO_TYPEDEF(0x03D0A648, ServerCertificateSelectionCallback); +DO_TYPEDEF(0x03D0A5B0, MonoServerCertificateSelectionCallback); DO_TYPEDEF(0x03C8ECA0, AsyncTaskMethodBuilder_1_System_IO_Stream_); +DO_TYPEDEF(0x03D13558, HttpListenerContext); +DO_TYPEDEF(0x03D13488, HttpListenerRequest); +DO_TYPEDEF(0x03D13240, HttpListenerRequest_GCCDelegate); +DO_TYPEDEF(0x03D13480, HttpListenerResponse); +DO_TYPEDEF(0x03D13598, ResponseStream); +DO_TYPEDEF(0x03D13628, HttpConnection); +DO_TYPEDEF(0x03D13630, EndPointListener); +DO_TYPEDEF(0x03D16AD8, AuthenticationSchemes__Enum); +DO_TYPEDEF(0x03D0A6F8, HttpListener); +DO_TYPEDEF(0x03D134D0, HttpListenerPrefixCollection); +DO_TYPEDEF(0x03D134C8, ServiceNameStore); +DO_TYPEDEF(0x03D10890, ServiceNameCollection); +DO_TYPEDEF(0x03D134D8, ExtendedProtectionPolicy); +DO_TYPEDEF(0x03D136A0, Dictionary_2_System_Net_HttpConnection_System_Net_HttpConnection_); +DO_TYPEDEF(0x03D13510, HttpConnection__Array); +DO_TYPEDEF(0x03D13668, ListenerPrefix); +DO_TYPEDEF(0x03D13588, RequestStream); +DO_TYPEDEF(0x03D0A678, RemoteCertValidationCallback); +DO_TYPEDEF(0x03D0A6C0, CallbackHelpers_c_DisplayClass0_0); +DO_TYPEDEF(0x03D0A6D8, CallbackHelpers_c_DisplayClass1_0); +DO_TYPEDEF(0x03D0A628, CallbackHelpers_c_DisplayClass2_0); +DO_TYPEDEF(0x03D0A610, CallbackHelpers_c_DisplayClass3_0); +DO_TYPEDEF(0x03D0A618, CallbackHelpers_c_DisplayClass4_0); +DO_TYPEDEF(0x03D0A668, CallbackHelpers_c_DisplayClass5_0); +DO_TYPEDEF(0x03D0A650, CallbackHelpers_c_DisplayClass6_0); +DO_TYPEDEF(0x03D0A658, CallbackHelpers_c_DisplayClass7_0); +DO_TYPEDEF(0x03D0A5A0, CallbackHelpers_c_DisplayClass8_0); +DO_TYPEDEF(0x03D0A558, NtlmSession); DO_TYPEDEF(0x03C91AC8, MessageBase); +DO_TYPEDEF(0x03D0A598, Type1Message); +DO_TYPEDEF(0x03D0A5C0, Authorization); +DO_TYPEDEF(0x03D0A600, NtlmClient); +DO_TYPEDEF(0x03D0A5C8, ConditionalWeakTable_2_System_Net_HttpWebRequest_Mono_Http_NtlmSession_); +DO_TYPEDEF(0x03D0A5F0, NtlmClient_c); +DO_TYPEDEF(0x03D0A5D8, ConditionalWeakTable_2_TKey_TValue_CreateValueCallback_System_Net_HttpWebRequest_Mono_Http_NtlmSession_); +DO_TYPEDEF(0x03D0A120, MonoBtlsBioMemory); +DO_TYPEDEF(0x03D0A550, MonoBtlsBioMono); +DO_TYPEDEF(0x03D0A4F0, MonoBtlsBioMono_BioReadFunc); +DO_TYPEDEF(0x03D0A518, MonoBtlsBioMono_BioWriteFunc); +DO_TYPEDEF(0x03D0A4F8, MonoBtlsBioMono_BioControlFunc); +DO_TYPEDEF(0x03D0A4E8, MonoBtlsBioMono_ControlCommand__Enum); +DO_TYPEDEF(0x03D0A4D0, IMonoBtlsBioMono); +DO_TYPEDEF(0x03D0A548, MonoBtlsBioMono_StreamBackend); +DO_TYPEDEF(0x03D0A528, MonoBtlsBioMono_StringBackend); +DO_TYPEDEF(0x03D0A188, MonoBtlsContext); +DO_TYPEDEF(0x03D0A480, MonoBtlsSslCtx); +DO_TYPEDEF(0x03D0A1D8, MonoBtlsSslCtx_NativeVerifyFunc); +DO_TYPEDEF(0x03D0A1E8, MonoBtlsSslCtx_NativeSelectFunc); +DO_TYPEDEF(0x03D0A1E0, MonoBtlsSslCtx_NativeServerNameFunc); +DO_TYPEDEF(0x03D0A478, MonoBtlsVerifyCallback); +DO_TYPEDEF(0x03D0A328, MonoBtlsX509StoreCtx); +DO_TYPEDEF(0x03D0A4A8, MonoBtlsSelectCallback); +DO_TYPEDEF(0x03D0A488, MonoBtlsServerNameCallback); +DO_TYPEDEF(0x03D0A338, MonoBtlsX509Store); +DO_TYPEDEF(0x03D09F40, Dictionary_2_System_IntPtr_Mono_Btls_MonoBtlsX509Lookup_); +DO_TYPEDEF(0x03D09F38, MonoBtlsX509Lookup); +DO_TYPEDEF(0x03D0A008, MonoBtlsX509LookupMono); +DO_TYPEDEF(0x03D0A048, List_1_Mono_Btls_MonoBtlsX509LookupMono_); +DO_TYPEDEF(0x03D0A000, MonoBtlsX509LookupMono_BySubjectFunc); +DO_TYPEDEF(0x03D09F50, MonoBtlsX509LookupMonoCollection); +DO_TYPEDEF(0x03D09FE8, MonoBtlsX509__Array); +DO_TYPEDEF(0x03D0A170, MonoBtlsX509Name); +DO_TYPEDEF(0x03D0A460, MonoBtlsSsl); +DO_TYPEDEF(0x03D0A2A0, MonoBtlsSsl_PrintErrorsCallbackFunc); +DO_TYPEDEF(0x03D0A7A0, MonoBtlsProvider); +DO_TYPEDEF(0x03D0A450, MonoBtlsSslError__Enum); +DO_TYPEDEF(0x03D0A458, MonoBtlsException); +DO_TYPEDEF(0x03D0A3B8, MonoBtlsKey_BoringKeyHandle); +DO_TYPEDEF(0x03D096B0, MonoBtlsPkcs12); +DO_TYPEDEF(0x03D0A3C8, MonoBtlsPkcs12_BoringPkcs12Handle); +DO_TYPEDEF(0x03D09BD0, MonoBtlsX509VerifyParam); +DO_TYPEDEF(0x03D0A2D8, MonoBtlsX509Chain); +DO_TYPEDEF(0x03D0A300, MonoBtlsX509Error__Enum); +DO_TYPEDEF(0x03D0A260, MonoBtlsSsl_BoringSslHandle); +DO_TYPEDEF(0x03D0A218, MonoBtlsSslCtx_BoringSslCtxHandle); +DO_TYPEDEF(0x03D0A2E0, MonoBtlsStream); +DO_TYPEDEF(0x03D0A358, MonoBtlsX509_BoringX509Handle); +DO_TYPEDEF(0x03D0A098, MonoBtlsX509Chain_BoringX509ChainHandle); +DO_TYPEDEF(0x03D0A090, MonoBtlsX509Crl); +DO_TYPEDEF(0x03D0A0A8, MonoBtlsX509Crl_BoringX509CrlHandle); +DO_TYPEDEF(0x03D0A080, MonoBtlsX509Revoked); +DO_TYPEDEF(0x03D09D70, MonoBtlsX509Exception); +DO_TYPEDEF(0x03D0A060, MonoBtlsX509Lookup_BoringX509LookupHandle); +DO_TYPEDEF(0x03D09FB8, MonoBtlsX509LookupMono_BoringX509LookupMonoHandle); +DO_TYPEDEF(0x03D0A178, MonoBtlsX509Name_BoringX509NameHandle); +DO_TYPEDEF(0x03D0A070, MonoBtlsX509Revoked_BoringX509RevokedHandle); +DO_TYPEDEF(0x03D09F58, MonoBtlsX509Store_BoringX509StoreHandle); +DO_TYPEDEF(0x03D09F30, MonoBtlsX509StoreCtx_BoringX509StoreCtxHandle); +DO_TYPEDEF(0x03D09DC0, MonoBtlsX509VerifyParam_BoringX509VerifyParamHandle); +DO_TYPEDEF(0x03D0A4E0, X509ChainImplBtls); +DO_TYPEDEF(0x03D09560, X509Certificate2__Array); DO_TYPEDEF(0x03CA23F8, X509PalImplBtls); +DO_TYPEDEF(0x03D09618, SafeProcessHandle); +DO_TYPEDEF(0x03CEE090, OidLookup_c); +DO_TYPEDEF(0x03CAD870, IEnumerable_1_KeyValuePair_2_System_String_System_String_); +DO_TYPEDEF(0x03CED9B0, CertificateData_ReadReverseRdns_d_21); +DO_TYPEDEF(0x03CEDAE8, DerSequenceReader); +DO_TYPEDEF(0x03CED9E8, Stack_1_System_Security_Cryptography_DerSequenceReader_); +DO_TYPEDEF(0x03CE58F8, UriBuilder); +DO_TYPEDEF(0x03CDCEA0, InvariantComparer); +DO_TYPEDEF(0x03CED720, UriParser_BuiltInUriParser); +DO_TYPEDEF(0x03D1E7B0, IOSelectorJob); +DO_TYPEDEF(0x03CD95A8, DescriptionAttribute); +DO_TYPEDEF(0x03CD7E00, TypeConverter); +DO_TYPEDEF(0x03CDD3E0, ITypeDescriptorContext); +DO_TYPEDEF(0x03CDFAF8, MemberDescriptor); +DO_TYPEDEF(0x03CDD500, PropertyDescriptor); +DO_TYPEDEF(0x03CD9308, PropertyDescriptorCollection); +DO_TYPEDEF(0x03CD93C0, AttributeCollection); +DO_TYPEDEF(0x03CD93E0, AttributeCollection_AttributeEntry__Array); +DO_TYPEDEF(0x03CD9498, ArrayConverter_ArrayPropertyDescriptor); +DO_TYPEDEF(0x03CD9318, PropertyDescriptor__Array); +DO_TYPEDEF(0x03CD9160, TypeConverter_StandardValuesCollection); +DO_TYPEDEF(0x03CED530, BarrierPostPhaseException); +DO_TYPEDEF(0x03CED478, Barrier); +DO_TYPEDEF(0x03CED410, FrameworkName); +DO_TYPEDEF(0x03CF1150, ElapsedEventHandler); +DO_TYPEDEF(0x03CF1190, ElapsedEventArgs); +DO_TYPEDEF(0x03D1F6B8, Component_1); +DO_TYPEDEF(0x03CD95B8, ISite); +DO_TYPEDEF(0x03CDDA70, EventHandlerList); +DO_TYPEDEF(0x03CD9598, EventHandlerList_ListEntry); +DO_TYPEDEF(0x03CEB030, ISynchronizeInvoke); +DO_TYPEDEF(0x03CF1028, HttpUtility_HttpQSCollection); +DO_TYPEDEF(0x03CF10F0, Helpers_1); +DO_TYPEDEF(0x03CF0EE0, IDictionary_2_System_String_System_Char_); +DO_TYPEDEF(0x03CF1180, HttpEncoder); +DO_TYPEDEF(0x03CF0F80, SortedDictionary_2_System_String_System_Char_); +DO_TYPEDEF(0x03CF0FF0, Lazy_1_System_Web_Util_HttpEncoder_); +DO_TYPEDEF(0x03CF0FE0, Func_1_System_Web_Util_HttpEncoder_); +DO_TYPEDEF(0x03CF0FE8, HttpEncoder_c); +DO_TYPEDEF(0x03CF05B0, CaptureCollection_Enumerator); +DO_TYPEDEF(0x03CF04C0, GroupCollection_Enumerator); +DO_TYPEDEF(0x03CF1718, MatchSparse); +DO_TYPEDEF(0x03CF0200, MatchCollection); +DO_TYPEDEF(0x03CF0400, List_1_System_Text_RegularExpressions_Match_); +DO_TYPEDEF(0x03CF0430, MatchCollection_Enumerator); +DO_TYPEDEF(0x03CEFF80, RegexCharClass); DO_TYPEDEF(0x03C8D500, String__Array__Array); +DO_TYPEDEF(0x03CEFE70, RegexCharClass_LowerCaseMapping__Array); +DO_TYPEDEF(0x03CEFF40, List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_); +DO_TYPEDEF(0x03CEFDB8, RegexCharClass_SingleRangeComparer); +DO_TYPEDEF(0x03CF1A28, RegexFC); +DO_TYPEDEF(0x03CF1A90, List_1_System_Text_RegularExpressions_RegexFC_); +DO_TYPEDEF(0x03CF1988, RegexTree); +DO_TYPEDEF(0x03CF19C0, RegexNode); +DO_TYPEDEF(0x03CF1948, List_1_System_Text_RegularExpressions_RegexNode_); +DO_TYPEDEF(0x03CF1760, RegexMatchTimeoutException); +DO_TYPEDEF(0x03CF1978, RegexReplacement); +DO_TYPEDEF(0x03CF0060, RegexParser); +DO_TYPEDEF(0x03CF18E0, List_1_System_Text_RegularExpressions_RegexOptions_); +DO_TYPEDEF(0x03D10A10, StringCollection); +DO_TYPEDEF(0x03CF5990, Switch); +DO_TYPEDEF(0x03CDCF80, BooleanSwitch); +DO_TYPEDEF(0x03CF5778, StringDictionary); +DO_TYPEDEF(0x03CF5760, List_1_System_WeakReference_); +DO_TYPEDEF(0x03CF5730, CorrelationManager); +DO_TYPEDEF(0x03CF55D0, TraceListenerCollection); +DO_TYPEDEF(0x03CF54C0, TraceListener); +DO_TYPEDEF(0x03CF5188, SourceLevels__Enum); +DO_TYPEDEF(0x03CF55D8, TraceEventCache); +DO_TYPEDEF(0x03CF5810, TraceEventType__Enum); +DO_TYPEDEF(0x03CF51E8, SourceSwitch); +DO_TYPEDEF(0x03CF57E0, SwitchAttribute__Array); +DO_TYPEDEF(0x03CF5740, Trace); +DO_TYPEDEF(0x03CF56B0, TraceSource); +DO_TYPEDEF(0x03CDCF50, TraceSwitch); +DO_TYPEDEF(0x03CF4FD0, UserCallBack); +DO_TYPEDEF(0x03CF4FA8, AsyncStreamReader); +DO_TYPEDEF(0x03CF5070, ProcessPriorityClass__Enum); +DO_TYPEDEF(0x03D1F590, Process); +DO_TYPEDEF(0x03CF4F20, ProcessThreadCollection); +DO_TYPEDEF(0x03CF4F40, ProcessModuleCollection); +DO_TYPEDEF(0x03CF4E28, ProcessWindowStyle__Enum); +DO_TYPEDEF(0x03CF5050, ProcessStartInfo); +DO_TYPEDEF(0x03CF4E78, Collection_1_System_String_); +DO_TYPEDEF(0x03D0BE10, DataReceivedEventHandler); +DO_TYPEDEF(0x03D0BBA8, DataReceivedEventArgs); +DO_TYPEDEF(0x03CF4E70, ProcessModule); +DO_TYPEDEF(0x03CF8D40, FileVersionInfo); +DO_TYPEDEF(0x03CF50E8, ProcessThreadTimes); +DO_TYPEDEF(0x03CF4E98, Process__Array); +DO_TYPEDEF(0x03CF4E30, OrdinalCaseInsensitiveComparer); +DO_TYPEDEF(0x03CF4DF0, ProcessThread); +DO_TYPEDEF(0x03CF4F30, ProcessThread__Array); +DO_TYPEDEF(0x03CF50D0, ProcessWaitHandle); +DO_TYPEDEF(0x03CF55C8, DefaultTraceListener); +DO_TYPEDEF(0x03CF8C58, SemaphoreAccessRule); +DO_TYPEDEF(0x03CF8C50, SemaphoreAuditRule); +DO_TYPEDEF(0x03CF8CA8, TypeDescriptorPermissionFlags__Enum); +DO_TYPEDEF(0x03CF8C38, TypeDescriptorPermission); DO_TYPEDEF(0x03CA1C00, AuthenticationException); +DO_TYPEDEF(0x03CF61C8, IEnumerable); +DO_TYPEDEF(0x03CF8BA0, Byte__Array__Array__Array); +DO_TYPEDEF(0x03CF8B18, IEnumerable_1_System_Byte__1); +DO_TYPEDEF(0x03CE3BB8, BigInteger_1); +DO_TYPEDEF(0x03CF8B58, DerEncoder_AsnSetValueComparer); +DO_TYPEDEF(0x03CF8AE0, DerSequenceReader_c); +DO_TYPEDEF(0x03CF8B10, Func_1_System_Text_Encoding_); +DO_TYPEDEF(0x03CF8A88, Func_1_System_Globalization_DateTimeFormatInfo_); +DO_TYPEDEF(0x03CF8A98, List_1_System_Security_Cryptography_AsnEncodedData_); +DO_TYPEDEF(0x03CF89F0, AsnEncodedDataEnumerator); +DO_TYPEDEF(0x03CF89A0, OidEnumerator); +DO_TYPEDEF(0x03CF8938, GeneralNameEncoder); +DO_TYPEDEF(0x03CF88A0, List_1_System_Byte__2); +DO_TYPEDEF(0x03CF8B20, IEnumerator_1_System_Byte__2); DO_TYPEDEF(0x03C90AE8, X509Certificate_1); DO_TYPEDEF(0x03C90C20, ASN1_1); DO_TYPEDEF(0x03C905A8, X509ExtensionCollection_1); +DO_TYPEDEF(0x03CF8960, X509BasicConstraintsExtension); +DO_TYPEDEF(0x03CF8528, X509FindType__Enum); +DO_TYPEDEF(0x03CF8538, X509Certificate2Enumerator); DO_TYPEDEF(0x03CA23B8, X509Certificate2ImplMono); +DO_TYPEDEF(0x03CF83D0, X509CertificateCollection_X509CertificateEnumerator); +DO_TYPEDEF(0x03CF8280, X509ChainElement); +DO_TYPEDEF(0x03CF82A0, X509ChainElementEnumerator); +DO_TYPEDEF(0x03CF8180, X509ChainImplMono); +DO_TYPEDEF(0x03CD99B0, X509Store); DO_TYPEDEF(0x03C90338, X509Store_1); DO_TYPEDEF(0x03C90AE0, X509CertificateCollection_1); DO_TYPEDEF(0x03C90398, X509Crl); DO_TYPEDEF(0x03C90408, X509Extension_1); DO_TYPEDEF(0x03C905A0, X509Crl_X509CrlEntry); +DO_TYPEDEF(0x03D0A710, X509EnhancedKeyUsageExtension); +DO_TYPEDEF(0x03CFAD68, X509ExtensionEnumerator); +DO_TYPEDEF(0x03CD99C8, X509KeyUsageFlags__Enum); +DO_TYPEDEF(0x03D0A708, X509KeyUsageExtension); +DO_TYPEDEF(0x03CFAC50, StoreName__Enum); DO_TYPEDEF(0x03C90330, X509Stores); +DO_TYPEDEF(0x03CF8918, X509SubjectKeyIdentifierExtension); +DO_TYPEDEF(0x03CFA8F0, SecPkgContext_ConnectionInfo); +DO_TYPEDEF(0x03CD9968, NegotiationInfoClass); +DO_TYPEDEF(0x03CFAA58, SSPIAuthType); +DO_TYPEDEF(0x03CFA918, SecurityPackageInfoClass); +DO_TYPEDEF(0x03CFA970, SecurityPackageInfoClass__Array); +DO_TYPEDEF(0x03CD99E8, Interop_SspiCli_CredentialUse__Enum); +DO_TYPEDEF(0x03CD33C0, SafeDeleteContext); +DO_TYPEDEF(0x03CD33B0, SafeDeleteContext_SECURITY); +DO_TYPEDEF(0x03CD9928, SecurityBuffer); +DO_TYPEDEF(0x03CD99A8, SecurityBuffer__Array); +DO_TYPEDEF(0x03CFAA60, SSPISecureChannelType); +DO_TYPEDEF(0x03CFA968, SSPIInterface); +DO_TYPEDEF(0x03CFA868, SSPIWrapper_OP__Enum); +DO_TYPEDEF(0x03CD9900, SecPkgContext_Sizes); +DO_TYPEDEF(0x03CFA8E0, SecPkgContext_StreamSizes); +DO_TYPEDEF(0x03D109D8, LazyAsyncResult); +DO_TYPEDEF(0x03CFA680, ContextAwareResult); +DO_TYPEDEF(0x03D109B8, LazyAsyncResult_ThreadContext); +DO_TYPEDEF(0x03CFA788, CallbackClosure); +DO_TYPEDEF(0x03CFA6A0, ContextAwareResult_c); +DO_TYPEDEF(0x03D1EFB8, NetEventSource); +DO_TYPEDEF(0x03CFA458, SecurityStatusPalErrorCode__Enum); +DO_TYPEDEF(0x03CB54F8, TlsStream); +DO_TYPEDEF(0x03D24D90, Base64Stream); +DO_TYPEDEF(0x03D24DA8, WriteStateInfoBase); +DO_TYPEDEF(0x03D24DF0, Base64WriteStateInfo); +DO_TYPEDEF(0x03CFA3D8, Base64Stream_ReadStateInfo); +DO_TYPEDEF(0x03CFA3C0, Base64Stream_ReadAsyncResult); +DO_TYPEDEF(0x03CFA3D0, Base64Stream_WriteAsyncResult); +DO_TYPEDEF(0x03D25030, ClosableStream); +DO_TYPEDEF(0x03D24EB8, TrackingStringDictionary); +DO_TYPEDEF(0x03D24FD8, TrackingValidationObjectDictionary); +DO_TYPEDEF(0x03D24E80, Dictionary_2_System_String_System_Net_TrackingValidationObjectDictionary_ValidateAndParseValue_); +DO_TYPEDEF(0x03D24EC0, TrackingValidationObjectDictionary_ValidateAndParseValue); +DO_TYPEDEF(0x03D133B0, HttpVersion); +DO_TYPEDEF(0x03CFA260, IPAddress_ReadOnlyIPAddress); +DO_TYPEDEF(0x03CB5480, CommandStream_PipelineEntry); +DO_TYPEDEF(0x03CB5610, CommandStream); +DO_TYPEDEF(0x03D22D58, TcpClient); +DO_TYPEDEF(0x03CB5470, CommandStream_PipelineEntry__Array); +DO_TYPEDEF(0x03CB55C0, ResponseDescription); +DO_TYPEDEF(0x03D108C8, FtpStatusCode__Enum); +DO_TYPEDEF(0x03CB55B8, ReceiveState); +DO_TYPEDEF(0x03CB5510, FtpControlStream); +DO_TYPEDEF(0x03CB5160, FtpWebRequest_RequestStage__Enum); +DO_TYPEDEF(0x03CB5638, FtpWebRequest); +DO_TYPEDEF(0x03CB52B8, FtpMethodInfo); +DO_TYPEDEF(0x03CB5330, FtpMethodInfo__Array); +DO_TYPEDEF(0x03CB52D0, FtpWebResponse); +DO_TYPEDEF(0x03CB5578, FtpControlStream_c_DisplayClass31_0); +DO_TYPEDEF(0x03CB5500, FtpDataStream); +DO_TYPEDEF(0x03CB52C8, CloseExState__Enum); +DO_TYPEDEF(0x03CB5098, FtpWebRequest_c); +DO_TYPEDEF(0x03CB50C8, Func_1_System_Security_Cryptography_X509Certificates_X509CertificateCollection_); +DO_TYPEDEF(0x03D10CA0, FtpWebRequestCreator); +DO_TYPEDEF(0x03CB5110, FtpWebResponse_EmptyStream); +DO_TYPEDEF(0x03D0BA98, WebClient); +DO_TYPEDEF(0x03CB5000, WebClient_ProgressData); +DO_TYPEDEF(0x03CD9618, AsyncOperation); +DO_TYPEDEF(0x03CB5040, DownloadStringCompletedEventHandler); +DO_TYPEDEF(0x03CD3548, AsyncCompletedEventArgs); +DO_TYPEDEF(0x03CB4E68, DownloadStringCompletedEventArgs); +DO_TYPEDEF(0x03CB5048, DownloadDataCompletedEventHandler); +DO_TYPEDEF(0x03CB4EA8, DownloadDataCompletedEventArgs); +DO_TYPEDEF(0x03CB5038, AsyncCompletedEventHandler); +DO_TYPEDEF(0x03CB5058, UploadStringCompletedEventHandler); +DO_TYPEDEF(0x03CB4DF0, UploadStringCompletedEventArgs); +DO_TYPEDEF(0x03CB5060, UploadDataCompletedEventHandler); +DO_TYPEDEF(0x03D0E0A8, UploadDataCompletedEventArgs); +DO_TYPEDEF(0x03CB5050, UploadFileCompletedEventHandler); +DO_TYPEDEF(0x03D0E018, UploadFileCompletedEventArgs); +DO_TYPEDEF(0x03CB4FE8, UploadValuesCompletedEventHandler); +DO_TYPEDEF(0x03D0E010, UploadValuesCompletedEventArgs); +DO_TYPEDEF(0x03CB4FF0, OpenReadCompletedEventHandler); +DO_TYPEDEF(0x03D0E0B0, OpenReadCompletedEventArgs); +DO_TYPEDEF(0x03CB4FD8, OpenWriteCompletedEventHandler); +DO_TYPEDEF(0x03D0E0A0, OpenWriteCompletedEventArgs); +DO_TYPEDEF(0x03CB4FE0, DownloadProgressChangedEventHandler); +DO_TYPEDEF(0x03CD9600, ProgressChangedEventArgs); +DO_TYPEDEF(0x03CB4D20, DownloadProgressChangedEventArgs); +DO_TYPEDEF(0x03CB5028, UploadProgressChangedEventHandler); +DO_TYPEDEF(0x03CB4CF0, UploadProgressChangedEventArgs); +DO_TYPEDEF(0x03CB4EA0, Action_3_Byte_Exception_System_ComponentModel_AsyncOperation_); +DO_TYPEDEF(0x03D0E098, WebClient_WebClientWriteStream); +DO_TYPEDEF(0x03D0E0E8, AsyncTaskMethodBuilder_1_System_Net_WebResponse_); +DO_TYPEDEF(0x03CB4E78, WebClient_c_DisplayClass164_0); +DO_TYPEDEF(0x03CB4E58, WebClient_c_DisplayClass167_0); +DO_TYPEDEF(0x03CB4E00, WebClient_c_DisplayClass182_0); +DO_TYPEDEF(0x03CB4DE0, WebClient_c_DisplayClass185_0); +DO_TYPEDEF(0x03CB4E38, WebClient_c_DisplayClass188_0); +DO_TYPEDEF(0x03CB4E28, WebClient_c_DisplayClass192_0); +DO_TYPEDEF(0x03CB4E18, TaskCompletionSource_1_System_String_); +DO_TYPEDEF(0x03D0DFF8, WebClient_c); +DO_TYPEDEF(0x03D0E020, Func_2_System_Net_DownloadStringCompletedEventArgs_String_); +DO_TYPEDEF(0x03D0E028, Action_2_System_Net_WebClient_System_Net_DownloadStringCompletedEventHandler_); +DO_TYPEDEF(0x03D0E038, Func_2_System_Net_OpenReadCompletedEventArgs_System_IO_Stream_); +DO_TYPEDEF(0x03D0E040, Action_2_System_Net_WebClient_System_Net_OpenReadCompletedEventHandler_); +DO_TYPEDEF(0x03D0DF70, Func_2_System_Net_OpenWriteCompletedEventArgs_System_IO_Stream_); +DO_TYPEDEF(0x03D0DF78, Action_2_System_Net_WebClient_System_Net_OpenWriteCompletedEventHandler_); +DO_TYPEDEF(0x03D0DF48, Func_2_System_Net_UploadStringCompletedEventArgs_String_); +DO_TYPEDEF(0x03D0DF80, Action_2_System_Net_WebClient_System_Net_UploadStringCompletedEventHandler_); +DO_TYPEDEF(0x03D0DF50, Func_2_System_Net_DownloadDataCompletedEventArgs_Byte_); +DO_TYPEDEF(0x03D0DF58, Action_2_System_Net_WebClient_System_Net_DownloadDataCompletedEventHandler_); +DO_TYPEDEF(0x03D0DFE0, Func_2_System_ComponentModel_AsyncCompletedEventArgs_Object_); +DO_TYPEDEF(0x03D0DFE8, Action_2_System_Net_WebClient_System_ComponentModel_AsyncCompletedEventHandler_); +DO_TYPEDEF(0x03D0DFB0, Func_2_System_Net_UploadDataCompletedEventArgs_Byte_); +DO_TYPEDEF(0x03D0DFB8, Action_2_System_Net_WebClient_System_Net_UploadDataCompletedEventHandler_); +DO_TYPEDEF(0x03D0DF00, Func_2_System_Net_UploadFileCompletedEventArgs_Byte_); +DO_TYPEDEF(0x03D0DED8, Action_2_System_Net_WebClient_System_Net_UploadFileCompletedEventHandler_); +DO_TYPEDEF(0x03D0DEB0, Func_2_System_Net_UploadValuesCompletedEventArgs_Byte_); +DO_TYPEDEF(0x03D0DEB8, Action_2_System_Net_WebClient_System_Net_UploadValuesCompletedEventHandler_); +DO_TYPEDEF(0x03CB4D68, WebClient_c_DisplayClass194_0); +DO_TYPEDEF(0x03CB4D60, TaskCompletionSource_1_System_IO_Stream_); +DO_TYPEDEF(0x03CB4D28, WebClient_c_DisplayClass198_0); +DO_TYPEDEF(0x03CB4D38, WebClient_c_DisplayClass202_0); +DO_TYPEDEF(0x03CB4DA8, WebClient_c_DisplayClass204_0); +DO_TYPEDEF(0x03CB4D98, TaskCompletionSource_1_System_Byte_); +DO_TYPEDEF(0x03CB4D78, WebClient_c_DisplayClass206_0); +DO_TYPEDEF(0x03CB4D88, WebClient_c_DisplayClass210_0); +DO_TYPEDEF(0x03CB4D08, WebClient_c_DisplayClass214_0); +DO_TYPEDEF(0x03CB4D18, WebClient_c_DisplayClass218_0); +DO_TYPEDEF(0x03D0DE60, CredentialCache_CredentialEnumerator); +DO_TYPEDEF(0x03D0DDD0, ICredentials__Array); +DO_TYPEDEF(0x03D0DE48, SystemNetworkCredential); +DO_TYPEDEF(0x03D0DE50, CredentialHostKey); +DO_TYPEDEF(0x03D0DEA0, CredentialKey); +DO_TYPEDEF(0x03D0DDD8, DnsEndPoint); +DO_TYPEDEF(0x03CD9988, Win32Exception); +DO_TYPEDEF(0x03D138C8, HttpListenerException); +DO_TYPEDEF(0x03D0DDA8, HttpListenerRequestUriBuilder); +DO_TYPEDEF(0x03D0DD78, IEnumerable_1_System_Byte__2); +DO_TYPEDEF(0x03D0DC60, InternalException); +DO_TYPEDEF(0x03D1FAD8, WebException); +DO_TYPEDEF(0x03D10D90, WebRequestPrefixElement); +DO_TYPEDEF(0x03D108F0, HttpAbortDelegate); +DO_TYPEDEF(0x03D0DC10, KnownHttpVerb); +DO_TYPEDEF(0x03D0DC08, ListDictionary); +DO_TYPEDEF(0x03CE2470, ListDictionary_DictionaryNode); +DO_TYPEDEF(0x03D0DBD0, BufferOffsetSize__Array); +DO_TYPEDEF(0x03D0DBA0, ProtocolViolationException); +DO_TYPEDEF(0x03D0DBF0, CaseInsensitiveAscii); +DO_TYPEDEF(0x03D0D928, DelayedRegex); +DO_TYPEDEF(0x03D0D900, WebPermission); +DO_TYPEDEF(0x03D13A18, WebProxy); +DO_TYPEDEF(0x03D13A60, AutoWebProxyScriptEngine); +DO_TYPEDEF(0x03D10898, List_1_System_Uri_); +DO_TYPEDEF(0x03D0DCD8, Uri__Array); +DO_TYPEDEF(0x03D108A8, ProxyChain_ProxyEnumerator); +DO_TYPEDEF(0x03D139E0, ProxyScriptChain); +DO_TYPEDEF(0x03D0DD88, WebRequest_WebProxyWrapper); +DO_TYPEDEF(0x03D10B90, WebRequest_c_DisplayClass78_0); +DO_TYPEDEF(0x03D10B68, WebRequest_c_DisplayClass79_0); +DO_TYPEDEF(0x03D10AE0, WebUtility_UrlDecoder); +DO_TYPEDEF(0x03D10928, BaseLoggingObject); +DO_TYPEDEF(0x03D107C0, DirectProxy); +DO_TYPEDEF(0x03D10878, ScatterGatherBuffers_MemoryChunk); +DO_TYPEDEF(0x03D10818, TimerThread_InfiniteTimerQueue); +DO_TYPEDEF(0x03D107E0, TimerThread_InfiniteTimer); +DO_TYPEDEF(0x03D107E8, WebProxyData); +DO_TYPEDEF(0x03D0DD80, EmptyWebProxy); +DO_TYPEDEF(0x03D10738, Cookie); +DO_TYPEDEF(0x03D106D0, Comparer_1); +DO_TYPEDEF(0x03D10698, CookieTokenizer); +DO_TYPEDEF(0x03D10670, CookieTokenizer_RecognizedAttribute__Array); +DO_TYPEDEF(0x03D10518, CookieParser); +DO_TYPEDEF(0x03D10658, CookieCollection_CookieCollectionEnumerator); +DO_TYPEDEF(0x03D10558, PathList); +DO_TYPEDEF(0x03D13BE8, PathList_PathListComparer); +DO_TYPEDEF(0x03D10730, CookieException); +DO_TYPEDEF(0x03D13BC0, FileWebRequest); +DO_TYPEDEF(0x03D10CA8, FileWebRequestCreator); +DO_TYPEDEF(0x03D13A88, FileWebStream); +DO_TYPEDEF(0x03D13B00, FileWebResponse); +DO_TYPEDEF(0x03D139A0, ServerCertValidationCallback_CallbackContext); +DO_TYPEDEF(0x03D139B0, AuthenticationManager); +DO_TYPEDEF(0x03D13938, IAuthenticationModule); +DO_TYPEDEF(0x03D139D0, BasicClient); +DO_TYPEDEF(0x03D13590, ChunkedInputStream); +DO_TYPEDEF(0x03D13930, MonoChunkParser); +DO_TYPEDEF(0x03D13910, ChunkedInputStream_ReadBufferState); +DO_TYPEDEF(0x03D13918, HttpStreamAsyncResult); +DO_TYPEDEF(0x03D138E8, ContentDecodeStream); DO_TYPEDEF(0x03CA1DA0, DefaultCertificatePolicy); +DO_TYPEDEF(0x03D13878, DigestHeaderParser); +DO_TYPEDEF(0x03D13898, DigestSession); +DO_TYPEDEF(0x03D139C8, DigestClient); +DO_TYPEDEF(0x03D13768, Dns_GetHostByNameCallback); +DO_TYPEDEF(0x03D13738, Dns_ResolveCallback); +DO_TYPEDEF(0x03D137C8, Dns_GetHostEntryNameCallback); +DO_TYPEDEF(0x03D13788, Dns_GetHostEntryIPCallback); +DO_TYPEDEF(0x03D13750, Dns_GetHostAddressesCallback); +DO_TYPEDEF(0x03D13660, EndPointManager); +DO_TYPEDEF(0x03D1AF38, TransportType__Enum); +DO_TYPEDEF(0x03D135B0, EndpointPermission); +DO_TYPEDEF(0x03D1A9F8, FixedSizeReadStream); +DO_TYPEDEF(0x03D13440, HttpListenerBasicIdentity); +DO_TYPEDEF(0x03CE3150, WebSocketState__Enum); +DO_TYPEDEF(0x03D22208, WebSocketCloseStatus__Enum); +DO_TYPEDEF(0x03D1D4F0, ManagedWebSocket); +DO_TYPEDEF(0x03D22428, WebSocketState__Enum__Array); +DO_TYPEDEF(0x03D223E0, Task_1_System_Net_WebSockets_WebSocketReceiveResult_); +DO_TYPEDEF(0x03D22438, WebSocketReceiveResult); +DO_TYPEDEF(0x03D224F8, ManagedWebSocket_Utf8MessageState); +DO_TYPEDEF(0x03D132A8, HttpListenerRequest_Context); +DO_TYPEDEF(0x03D10D60, HttpRequestCreator); +DO_TYPEDEF(0x03D173C8, AsyncTaskMethodBuilder_1_System_Net_HttpWebResponse_); +DO_TYPEDEF(0x03D17200, AsyncTaskMethodBuilder_1_System_ValueTuple_5_); +DO_TYPEDEF(0x03D16F58, AsyncTaskMethodBuilder_1_System_Net_BufferOffsetSize_); +DO_TYPEDEF(0x03D134E8, ListenerAsyncResult); +DO_TYPEDEF(0x03D169D0, MonoChunkParser_Chunk); +DO_TYPEDEF(0x03D1A9F0, MonoChunkStream); +DO_TYPEDEF(0x03D17818, MonoHttpDate); +DO_TYPEDEF(0x03D139C0, NtlmClient_1); DO_TYPEDEF(0x03C90418, ServicePointManager); +DO_TYPEDEF(0x03D16520, ConcurrentDictionary_2_System_Net_ServicePointManager_SPKey_System_Net_ServicePoint_); +DO_TYPEDEF(0x03D16400, IEnumerable_1_System_Net_ServicePoint_); DO_TYPEDEF(0x03CA1E30, ICertificatePolicy); +DO_TYPEDEF(0x03D16468, SecurityProtocolType__Enum); +DO_TYPEDEF(0x03D1AFF8, ServicePointScheduler_AsyncManualResetEvent_c); +DO_TYPEDEF(0x03D1AF80, List_1_System_Threading_Tasks_Task_); +DO_TYPEDEF(0x03D1AF08, SocketPermission); +DO_TYPEDEF(0x03D1AE80, WebConnection_c); +DO_TYPEDEF(0x03D1AE68, Func_4_System_Net_IPEndPoint_AsyncCallback_Object_IAsyncResult_); +DO_TYPEDEF(0x03D1AE60, AsyncTaskMethodBuilder_1_System_Net_WebRequestStream_); +DO_TYPEDEF(0x03D1AD58, AsyncTaskMethodBuilder_1_System_ValueTuple_3_); +DO_TYPEDEF(0x03D1A9C0, WebResponseStream_c_DisplayClass41_0); +DO_TYPEDEF(0x03D1A9D8, AsyncTaskMethodBuilder_1_System_Byte_); +DO_TYPEDEF(0x03D1F9F8, SystemGatewayIPAddressInformation); +DO_TYPEDEF(0x03D1FA40, GatewayIPAddressInformationCollection); +DO_TYPEDEF(0x03D1A8D0, Collection_1_System_Net_NetworkInformation_GatewayIPAddressInformation_); +DO_TYPEDEF(0x03CB8CC0, IEnumerator_1_System_Net_NetworkInformation_GatewayIPAddressInformation_); +DO_TYPEDEF(0x03D1A870, Collection_1_System_Net_IPAddress_); +DO_TYPEDEF(0x03D1FA00, IEnumerator_1_System_Net_IPAddress_); +DO_TYPEDEF(0x03D1FA18, SystemIPAddressInformation); +DO_TYPEDEF(0x03D1F1E8, IPAddressInformationCollection); +DO_TYPEDEF(0x03D1A790, Collection_1_System_Net_NetworkInformation_IPAddressInformation_); +DO_TYPEDEF(0x03D1FA28, IEnumerator_1_System_Net_NetworkInformation_IPAddressInformation_); +DO_TYPEDEF(0x03D1F1F0, Win32IPGlobalProperties); +DO_TYPEDEF(0x03D1F238, SystemTcpConnectionInformation); +DO_TYPEDEF(0x03D1F2D0, TcpConnectionInformation__Array); +DO_TYPEDEF(0x03D1F268, Win32TcpStatistics); +DO_TYPEDEF(0x03D1F2B0, Win32UdpStatistics); +DO_TYPEDEF(0x03D1F360, Win32IcmpV4Statistics); +DO_TYPEDEF(0x03D1F270, Win32IcmpV6Statistics); +DO_TYPEDEF(0x03D1F280, Win32IPGlobalStatistics); +DO_TYPEDEF(0x03D1F1F8, UnicastIPAddressInformationCollection); +DO_TYPEDEF(0x03D1FAA8, Collection_1_System_Net_NetworkInformation_UnicastIPAddressInformation_); +DO_TYPEDEF(0x03D1F188, Win32_IP_ADAPTER_UNICAST_ADDRESS); +DO_TYPEDEF(0x03D1F218, Win32UnicastIPAddressInformation); +DO_TYPEDEF(0x03CB8DE0, IEnumerator_1_System_Net_NetworkInformation_UnicastIPAddressInformation_); +DO_TYPEDEF(0x03D1F168, Win32IPInterfaceProperties2); +DO_TYPEDEF(0x03D1FA20, MulticastIPAddressInformationCollection); +DO_TYPEDEF(0x03D1A728, Collection_1_System_Net_NetworkInformation_MulticastIPAddressInformation_); +DO_TYPEDEF(0x03D1FA10, SystemMulticastIPAddressInformation); +DO_TYPEDEF(0x03CB8DA0, IEnumerator_1_System_Net_NetworkInformation_MulticastIPAddressInformation_); +DO_TYPEDEF(0x03D1F1E0, Win32IPv4InterfaceProperties); +DO_TYPEDEF(0x03D1F458, Win32_IP_ADDR_STRING); +DO_TYPEDEF(0x03D1F190, Win32_IP_PER_ADAPTER_INFO); +DO_TYPEDEF(0x03D1F1D8, Win32IPv6InterfaceProperties); +DO_TYPEDEF(0x03D1F178, Win32IPv4InterfaceStatistics); +DO_TYPEDEF(0x03D1F848, NetworkAvailabilityEventArgs); +DO_TYPEDEF(0x03D1F940, NetworkAddressChangedEventHandler); +DO_TYPEDEF(0x03D1F930, NetworkAvailabilityChangedEventHandler); +DO_TYPEDEF(0x03D1F350, NetworkInformationException); +DO_TYPEDEF(0x03D1A648, NetworkInformationPermission); +DO_TYPEDEF(0x03D1A4D8, PhysicalAddress); +DO_TYPEDEF(0x03D1F808, NetworkInterface__Array); +DO_TYPEDEF(0x03D1F740, PingOptions); +DO_TYPEDEF(0x03D1F5D8, PingReply); +DO_TYPEDEF(0x03D1F970, NetworkChange); +DO_TYPEDEF(0x03D1F978, INetworkChange); +DO_TYPEDEF(0x03D1F898, MacNetworkChange_NetworkReachabilityFlags__Enum); +DO_TYPEDEF(0x03D1F860, MacNetworkChange_SCNetworkReachabilityCallback); +DO_TYPEDEF(0x03D1F9D0, MacNetworkChange); +DO_TYPEDEF(0x03D1F9B0, LinuxNetworkChange); +DO_TYPEDEF(0x03D1F150, Win32NetworkInterfaceAPI); +DO_TYPEDEF(0x03D1F6E0, Ping); +DO_TYPEDEF(0x03D1F528, BackgroundWorker); +DO_TYPEDEF(0x03D1F520, DoWorkEventHandler); +DO_TYPEDEF(0x03CD9610, DoWorkEventArgs); +DO_TYPEDEF(0x03CD95F8, ProgressChangedEventHandler); +DO_TYPEDEF(0x03D1F518, RunWorkerCompletedEventHandler); +DO_TYPEDEF(0x03CD9668, RunWorkerCompletedEventArgs); +DO_TYPEDEF(0x03D1F6C8, PingCompletedEventHandler); +DO_TYPEDEF(0x03D1F4D0, PingCompletedEventArgs); +DO_TYPEDEF(0x03D1F5F0, Ping_IcmpMessage); +DO_TYPEDEF(0x03D1F538, Ping_c_DisplayClass39_0); +DO_TYPEDEF(0x03D1F4E8, Ping_c_DisplayClass50_0); +DO_TYPEDEF(0x03D1F408, Win32IPAddressCollection); +DO_TYPEDEF(0x03D1F300, Win32IPGlobalProperties_Win32_MIB_TCPROW); +DO_TYPEDEF(0x03D1F418, List_1_System_Net_NetworkInformation_Win32IPGlobalProperties_Win32_MIB_TCPROW_); +DO_TYPEDEF(0x03D1F310, Win32IPGlobalProperties_Win32_MIB_TCP6ROW); +DO_TYPEDEF(0x03D1F2F8, List_1_System_Net_NetworkInformation_Win32IPGlobalProperties_Win32_MIB_TCP6ROW_); +DO_TYPEDEF(0x03D1F318, Win32IPGlobalProperties_Win32_MIB_UDPROW); +DO_TYPEDEF(0x03D1F330, Win32IPGlobalProperties_Win32_MIB_UDP6ROW); +DO_TYPEDEF(0x03D1F1B8, Win32NetworkInterface2); +DO_TYPEDEF(0x03D1F158, Win32NetworkInterface); +DO_TYPEDEF(0x03D1F100, DefaultProxySectionInternal); +DO_TYPEDEF(0x03D0DDB0, SettingsSectionInternal); +DO_TYPEDEF(0x03D10D10, RequestCacheManager); +DO_TYPEDEF(0x03D1F028, RequestCachingSectionInternal); +DO_TYPEDEF(0x03D1F040, HttpRequestCacheLevel__Enum); +DO_TYPEDEF(0x03D1F020, HttpRequestCachePolicy); +DO_TYPEDEF(0x03D1EA28, SingleSocketMultipleConnectAsync); +DO_TYPEDEF(0x03D1EA30, DualSocketMultipleConnectAsync); +DO_TYPEDEF(0x03D1EE30, SocketShutdown__Enum); +DO_TYPEDEF(0x03D1EA58, LingerOption); +DO_TYPEDEF(0x03D1E8D8, List_1_System_Net_Sockets_Socket_); +DO_TYPEDEF(0x03D234D0, Socket_AwaitableSocketAsyncEventArgs_c); +DO_TYPEDEF(0x03D1E430, Socket_SendFileHandler); +DO_TYPEDEF(0x03D1E440, Socket_SendFileAsyncResult); +DO_TYPEDEF(0x03D1EE88, Socket_c); +DO_TYPEDEF(0x03D1EE10, Func_1_System_Net_Sockets_Socket_CachedEventArgs_); +DO_TYPEDEF(0x03D1ED98, Func_1_System_Net_Sockets_Socket_AwaitableSocketAsyncEventArgs_); +DO_TYPEDEF(0x03D1E6A0, Socket_c_DisplayClass240_0); +DO_TYPEDEF(0x03D1E458, Socket_c_DisplayClass298_0); +DO_TYPEDEF(0x03D1E398, Socket_c_DisplayClass311_0); +DO_TYPEDEF(0x03D1E420, Socket_c_DisplayClass316_0); +DO_TYPEDEF(0x03D1E2A8, Socket_c_DisplayClass355_0); +DO_TYPEDEF(0x03CE3F10, SocketException); +DO_TYPEDEF(0x03D1E338, MulticastOption); +DO_TYPEDEF(0x03D1E2E8, IPv6MulticastOption); +DO_TYPEDEF(0x03D22F58, TcpListener); +DO_TYPEDEF(0x03D22A68, UdpReceiveResult); +DO_TYPEDEF(0x03D22B58, UdpClient_c_DisplayClass64_0); +DO_TYPEDEF(0x03D22908, SocketAsyncResult_c); +DO_TYPEDEF(0x03D22928, SocketTaskExtensions_c); +DO_TYPEDEF(0x03D22DD8, Func_2_IAsyncResult_System_Net_Sockets_Socket_); +DO_TYPEDEF(0x03D22958, Func_5_System_Net_Sockets_Socket_Int32_AsyncCallback_Object_IAsyncResult_); +DO_TYPEDEF(0x03D22860, Func_4_System_Net_EndPoint_AsyncCallback_Object_IAsyncResult_); +DO_TYPEDEF(0x03D230E8, Func_5_System_Net_IPAddress_Int32_AsyncCallback_Object_IAsyncResult_); +DO_TYPEDEF(0x03D22ED0, Func_5_System_Net_IPAddress_Int32_AsyncCallback_Object_IAsyncResult__1); +DO_TYPEDEF(0x03D230A8, Func_5_String_Int32_AsyncCallback_Object_IAsyncResult_); +DO_TYPEDEF(0x03D228F0, Func_5_ArraySegment_1_Byte_System_Net_Sockets_SocketFlags_AsyncCallback_Object_IAsyncResult_); +DO_TYPEDEF(0x03D22AD8, Func_2_IAsyncResult_Int32_); +DO_TYPEDEF(0x03D22890, Func_5_System_Collections_Generic_IList_1_System_Net_Sockets_SocketFlags_AsyncCallback_Object_IAsyncResult_); +DO_TYPEDEF(0x03D227A0, Func_2_IAsyncResult_System_Net_Sockets_SocketReceiveFromResult_); +DO_TYPEDEF(0x03D22768, Func_4_ArraySegment_1_Byte_AsyncCallback_Object_IAsyncResult_); +DO_TYPEDEF(0x03D227A8, Func_2_IAsyncResult_System_Net_Sockets_SocketReceiveMessageFromResult_); +DO_TYPEDEF(0x03D227D8, Func_6_ArraySegment_1_Byte_System_Net_Sockets_SocketFlags_System_Net_EndPoint_AsyncCallback_Object_IAsyncResult_); +DO_TYPEDEF(0x03D227E0, SocketTaskExtensions_c_DisplayClass14_0); +DO_TYPEDEF(0x03D250F0, WebSocketError__Enum); +DO_TYPEDEF(0x03D22508, ManagedWebSocket_c); +DO_TYPEDEF(0x03CE3170, ClientWebSocket); +DO_TYPEDEF(0x03D221C8, ClientWebSocketOptions); +DO_TYPEDEF(0x03D221B8, WebSocketHandle); +DO_TYPEDEF(0x03D221C0, ClientWebSocket_DefaultWebProxy); +DO_TYPEDEF(0x03D25380, WebSocketHandle_c); +DO_TYPEDEF(0x03D25200, WebSocketHandle_c_DisplayClass30_0); +DO_TYPEDEF(0x03D25338, AsyncTaskMethodBuilder_1_System_String_); +DO_TYPEDEF(0x03D1FB68, WebSocketException); +DO_TYPEDEF(0x03D25060, BaseWriter); +DO_TYPEDEF(0x03D25010, BufferBuilder); +DO_TYPEDEF(0x03D24C70, MimeWriter); +DO_TYPEDEF(0x03D24F58, MultiAsyncResult); +DO_TYPEDEF(0x03D24F98, ContentDisposition); +DO_TYPEDEF(0x03D24CE0, HeaderCollection); +DO_TYPEDEF(0x03D24EA0, MimeBasePart); +DO_TYPEDEF(0x03D24CE8, ContentType); +DO_TYPEDEF(0x03D24EC8, ContentDisposition_c); +DO_TYPEDEF(0x03D25048, EightBitStream); +DO_TYPEDEF(0x03D24C98, EncodedStreamFactory); +DO_TYPEDEF(0x03D24C90, IEncodableStream); +DO_TYPEDEF(0x03D24BB8, TransferEncoding__Enum); +DO_TYPEDEF(0x03D24CD8, MimeBasePart_MimePartAsyncResult); +DO_TYPEDEF(0x03D24B48, MimeMultiPart); +DO_TYPEDEF(0x03D24C00, Collection_1_System_Net_Mime_MimeBasePart_); +DO_TYPEDEF(0x03D24C58, IEnumerator_1_System_Net_Mime_MimeBasePart_); +DO_TYPEDEF(0x03D24C28, MimeMultiPartType__Enum); +DO_TYPEDEF(0x03D24C68, MimeMultiPart_MimePartContext); +DO_TYPEDEF(0x03D24D40, MimePart); +DO_TYPEDEF(0x03D24B10, MimePart_MimePartContext); +DO_TYPEDEF(0x03D24DF8, QEncodedStream); +DO_TYPEDEF(0x03D24AE0, QEncodedStream_ReadStateInfo); +DO_TYPEDEF(0x03D24AD0, QEncodedStream_WriteAsyncResult); +DO_TYPEDEF(0x03D24DE8, QuotedPrintableStream); +DO_TYPEDEF(0x03D24A78, QuotedPrintableStream_ReadStateInfo); +DO_TYPEDEF(0x03D24A18, QuotedPrintableStream_WriteAsyncResult); +DO_TYPEDEF(0x03D24918, Dictionary_2_System_String_System_TimeSpan_); DO_TYPEDEF(0x03CA58E8, TimeSpan__Array); +DO_TYPEDEF(0x03D24FA8, SmtpDateTime); +DO_TYPEDEF(0x03D24710, MailAddress); +DO_TYPEDEF(0x03D246C0, List_1_System_Net_Mail_MailAddress_); +DO_TYPEDEF(0x03CD5CC8, IEnumerator_1_System_Net_Mail_MailAddress_); +DO_TYPEDEF(0x03CD3F10, MailAddressCollection); +DO_TYPEDEF(0x03CD5D20, IList_1_System_Net_Mail_MailAddress_); +DO_TYPEDEF(0x03CD5AF8, AlternateView); +DO_TYPEDEF(0x03CD5AE0, LinkedResourceCollection); +DO_TYPEDEF(0x03CD4068, LinkedResource); +DO_TYPEDEF(0x03CD5A88, IEnumerator_1_System_Net_Mail_LinkedResource_); +DO_TYPEDEF(0x03CD3F18, AlternateViewCollection); +DO_TYPEDEF(0x03CD38F8, IEnumerator_1_System_Net_Mail_AlternateView_); +DO_TYPEDEF(0x03CD59E8, Attachment); +DO_TYPEDEF(0x03CD5A18, AttachmentBase_MimeTypes); +DO_TYPEDEF(0x03CD3F20, AttachmentCollection); +DO_TYPEDEF(0x03CD3610, IEnumerator_1_System_Net_Mail_Attachment_); +DO_TYPEDEF(0x03CD59A8, MailMessage); +DO_TYPEDEF(0x03CD3D30, SendCompletedEventHandler); +DO_TYPEDEF(0x03CD36C8, ICredentialsByHost); +DO_TYPEDEF(0x03CD34E0, SmtpStatusCode__Enum); +DO_TYPEDEF(0x03CD3D88, SmtpClient_CancellationException); +DO_TYPEDEF(0x03CD3968, SmtpClient_c_DisplayClass85_0); +DO_TYPEDEF(0x03CD3A50, SmtpClient_c_DisplayClass90_0); +DO_TYPEDEF(0x03CD5D30, SmtpException); +DO_TYPEDEF(0x03CD3C98, SmtpFailedRecipientException); +DO_TYPEDEF(0x03CD39C0, SmtpFailedRecipientsException); +DO_TYPEDEF(0x03CD3310, SmtpFailedRecipientException__Array); +DO_TYPEDEF(0x03CD99E0, SafeFreeCertContext); +DO_TYPEDEF(0x03CD9720, NegotiateStream_c_DisplayClass69_0); +DO_TYPEDEF(0x03CD96D0, SslStream_c_DisplayClass21_0); +DO_TYPEDEF(0x03CD96A8, SslStream_c_DisplayClass22_0); +DO_TYPEDEF(0x03CFDB70, DefaultValueAttribute); +DO_TYPEDEF(0x03CD9630, EditorBrowsableAttribute); +DO_TYPEDEF(0x03CD9608, BrowsableAttribute); +DO_TYPEDEF(0x03CDCF30, ComponentCollection); +DO_TYPEDEF(0x03CD95B0, IComponent); +DO_TYPEDEF(0x03CDCF10, IComponent__Array); +DO_TYPEDEF(0x03CD95C8, DesignOnlyAttribute); +DO_TYPEDEF(0x03CD95C0, DesignerCategoryAttribute); +DO_TYPEDEF(0x03CD9588, DesignerSerializationVisibilityAttribute); +DO_TYPEDEF(0x03CD95A0, DisplayNameAttribute); +DO_TYPEDEF(0x03CD9520, ImmutableObjectAttribute); +DO_TYPEDEF(0x03CF5040, InvalidEnumArgumentException); +DO_TYPEDEF(0x03CD94E8, LocalizableAttribute); +DO_TYPEDEF(0x03CD9558, MergablePropertyAttribute); +DO_TYPEDEF(0x03CD9550, ReadOnlyAttribute); +DO_TYPEDEF(0x03CCF098, AddingNewEventArgs); +DO_TYPEDEF(0x03CCF0A8, AddingNewEventHandler); +DO_TYPEDEF(0x03CD94D0, AmbientValueAttribute); +DO_TYPEDEF(0x03CDF988, AttributeProviderAttribute); +DO_TYPEDEF(0x03CD9280, BindableAttribute); +DO_TYPEDEF(0x03CD9158, BooleanConverter); +DO_TYPEDEF(0x03CD9178, ComplexBindingPropertiesAttribute); +DO_TYPEDEF(0x03CD90E8, SortedList_2_System_String_System_Object_); +DO_TYPEDEF(0x03CDCF20, ContainerFilterService); +DO_TYPEDEF(0x03CD8FA8, CultureInfoConverter_CultureComparer); +DO_TYPEDEF(0x03CD7E08, ICustomTypeDescriptor); +DO_TYPEDEF(0x03CD79F0, EventDescriptor); +DO_TYPEDEF(0x03CDD358, ReflectEventDescriptor); +DO_TYPEDEF(0x03CD7E10, EventDescriptorCollection); +DO_TYPEDEF(0x03CD7AA0, EventDescriptor__Array); +DO_TYPEDEF(0x03CD7D70, DataObjectAttribute); +DO_TYPEDEF(0x03CD7D18, DataObjectFieldAttribute); +DO_TYPEDEF(0x03CD7D48, DataObjectMethodAttribute); +DO_TYPEDEF(0x03CD7C88, DefaultBindingPropertyAttribute); +DO_TYPEDEF(0x03CD7CB8, DefaultEventAttribute); +DO_TYPEDEF(0x03CD7D08, DefaultPropertyAttribute); +DO_TYPEDEF(0x03CDF458, TypeDescriptionProvider); +DO_TYPEDEF(0x03CDF198, DelegatingTypeDescriptionProvider); +DO_TYPEDEF(0x03CDD138, TypeDescriptionProvider_EmptyCustomTypeDescriptor); +DO_TYPEDEF(0x03CDDA58, IServiceProvider); +DO_TYPEDEF(0x03CDFA28, IExtenderProvider); +DO_TYPEDEF(0x03CDF860, IExtenderProvider__Array); +DO_TYPEDEF(0x03CD7BF0, InheritanceLevel__Enum); +DO_TYPEDEF(0x03CD7D00, InheritanceAttribute); +DO_TYPEDEF(0x03CD7C20, PropertyTabAttribute); +DO_TYPEDEF(0x03CD7BB0, PropertyTabScope__Enum__Array); +DO_TYPEDEF(0x03CD7B38, ToolboxItemAttribute); +DO_TYPEDEF(0x03CD7B58, DesignTimeVisibleAttribute); +DO_TYPEDEF(0x03CD7AD0, EditorAttribute); +DO_TYPEDEF(0x03CD79A8, EventDescriptorCollection_ArraySubsetEnumerator); +DO_TYPEDEF(0x03CDF7C0, ExtendedPropertyDescriptor); +DO_TYPEDEF(0x03CE24B8, BitVector32); +DO_TYPEDEF(0x03CD7940, ReflectPropertyDescriptor); +DO_TYPEDEF(0x03CD7920, ExtenderProvidedPropertyAttribute); +DO_TYPEDEF(0x03CDDB48, InstallerTypeAttribute); +DO_TYPEDEF(0x03CDDAC0, LicenseProvider); +DO_TYPEDEF(0x03CDDB28, LicFileLicenseProvider_LicFileLicense); +DO_TYPEDEF(0x03CDDAF8, LicenseManager); +DO_TYPEDEF(0x03CDDAE8, LicenseProviderAttribute); +DO_TYPEDEF(0x03CDDA78, ListBindableAttribute); +DO_TYPEDEF(0x03CCF088, ListChangedEventArgs); +DO_TYPEDEF(0x03CCF0A0, ListChangedEventHandler); +DO_TYPEDEF(0x03CDDA98, ListSortDescription); +DO_TYPEDEF(0x03CDDA00, LookupBindingPropertiesAttribute); +DO_TYPEDEF(0x03CDDA68, MarshalByValueComponent); +DO_TYPEDEF(0x03CDDA48, IContainer); +DO_TYPEDEF(0x03CDD958, MaskedTextProvider); +DO_TYPEDEF(0x03CDD7E8, MaskedTextProvider_CaseConversion__Enum); +DO_TYPEDEF(0x03CDD808, MaskedTextProvider_CharType__Enum); +DO_TYPEDEF(0x03CDD9D8, MaskedTextProvider_CharDescriptor); +DO_TYPEDEF(0x03CDD9D0, List_1_System_ComponentModel_MaskedTextProvider_CharDescriptor_); +DO_TYPEDEF(0x03CDD758, NestedContainer); +DO_TYPEDEF(0x03CDCF00, ISite__Array); +DO_TYPEDEF(0x03CDD6A8, NestedContainer_Site); +DO_TYPEDEF(0x03CDD660, PasswordPropertyTextAttribute); +DO_TYPEDEF(0x03CDD460, PropertyDescriptorCollection_PropertyDescriptorEnumerator); +DO_TYPEDEF(0x03CDD400, ProvidePropertyAttribute); +DO_TYPEDEF(0x03CDD3F8, RecommendedAsConfigurableAttribute); +DO_TYPEDEF(0x03CDD3E8, ReferenceConverter); +DO_TYPEDEF(0x03CDD2F8, ReferenceConverter_ReferenceComparer); +DO_TYPEDEF(0x03CDF0B0, RefreshEventArgs); +DO_TYPEDEF(0x03CDF530, RefreshEventHandler); +DO_TYPEDEF(0x03CDD298, RunInstallerAttribute); +DO_TYPEDEF(0x03CDD1B0, SettingsBindableAttribute); +DO_TYPEDEF(0x03CDD0D8, ToolboxItemFilterType__Enum); +DO_TYPEDEF(0x03CDD0B8, ToolboxItemFilterAttribute); +DO_TYPEDEF(0x03CDD618, TypeConverterAttribute); +DO_TYPEDEF(0x03CDF4B8, TypeDescriptionProviderAttribute); DO_TYPEDEF(0x03C93C48, PropertyChangedEventArgs); DO_TYPEDEF(0x03C93C58, PropertyChangedEventHandler); +DO_TYPEDEF(0x03CDCFF8, CategoryAttribute); +DO_TYPEDEF(0x03CDCF08, Container_Site); +DO_TYPEDEF(0x03CDCEE8, DesignerAttribute); +DO_TYPEDEF(0x03CDDAD0, LicenseException); +DO_TYPEDEF(0x03CDD250, ReflectTypeDescriptionProvider); +DO_TYPEDEF(0x03CDF848, ReflectTypeDescriptionProvider_ReflectedTypeData); +DO_TYPEDEF(0x03CCF060, TypeDescriptor); +DO_TYPEDEF(0x03CDF480, WeakHashtable); +DO_TYPEDEF(0x03CF3FD0, Guid__Array); +DO_TYPEDEF(0x03CDEE88, IComNativeDescriptorHandler); +DO_TYPEDEF(0x03CDF528, IDesigner); +DO_TYPEDEF(0x03CDF5C8, TypeDescriptor_TypeDescriptionNode); +DO_TYPEDEF(0x03CDF538, TypeDescriptor_AttributeProvider); +DO_TYPEDEF(0x03CDEF38, TypeDescriptor_AttributeProvider_AttributeTypeDescriptor); +DO_TYPEDEF(0x03CDF640, TypeDescriptor_ComNativeDescriptionProvider); +DO_TYPEDEF(0x03CDEE98, TypeDescriptor_ComNativeDescriptionProvider_ComNativeTypeDescriptor); +DO_TYPEDEF(0x03CDF040, TypeDescriptor_AttributeFilterCacheItem); +DO_TYPEDEF(0x03CDEFB0, TypeDescriptor_FilterCacheItem); +DO_TYPEDEF(0x03CDEFA0, ITypeDescriptorFilterService); +DO_TYPEDEF(0x03CDEF78, TypeDescriptor_MemberDescriptorComparer); +DO_TYPEDEF(0x03CDF350, TypeDescriptor_MergedTypeDescriptor); +DO_TYPEDEF(0x03CDEE58, TypeDescriptor_TypeDescriptionNode_DefaultExtendedTypeDescriptor); +DO_TYPEDEF(0x03CDED38, TypeDescriptor_TypeDescriptionNode_DefaultTypeDescriptor); +DO_TYPEDEF(0x03CE2900, NotifyParentPropertyAttribute); +DO_TYPEDEF(0x03CE2848, ParenthesizePropertyNameAttribute); +DO_TYPEDEF(0x03CE2840, RefreshPropertiesAttribute); +DO_TYPEDEF(0x03CE2850, WeakHashtable_WeakKeyComparer); +DO_TYPEDEF(0x03CE2858, WeakHashtable_EqualityWeakReference); +DO_TYPEDEF(0x03CDF3B8, IDesignerHost); +DO_TYPEDEF(0x03CDD348, CheckoutException); +DO_TYPEDEF(0x03CE2828, CommandID); +DO_TYPEDEF(0x03CE27F8, DesignerVerb); +DO_TYPEDEF(0x03CDDB00, RuntimeLicenseContext); +DO_TYPEDEF(0x03CE2778, HelpKeywordAttribute); +DO_TYPEDEF(0x03CE26F0, ServiceCreatorCallback); +DO_TYPEDEF(0x03CE2798, IServiceContainer); +DO_TYPEDEF(0x03CE2710, ServiceContainer); +DO_TYPEDEF(0x03CE2720, ServiceContainer_ServiceCollection_1_System_Object_); +DO_TYPEDEF(0x03CE2838, StandardCommands); +DO_TYPEDEF(0x03CE26B0, StandardToolWindows); +DO_TYPEDEF(0x03CE2698, DesignerOptionService_DesignerOptionCollection); +DO_TYPEDEF(0x03CE25C0, DesignerOptionService_DesignerOptionCollection_WrappedPropertyDescriptor); +DO_TYPEDEF(0x03CE2560, DesignerOptionService_DesignerOptionConverter_OptionPropertyDescriptor); +DO_TYPEDEF(0x03CD9128, InstanceDescriptor); +DO_TYPEDEF(0x03CE2520, MemberRelationshipService_RelationshipEntry); +DO_TYPEDEF(0x03CE2530, Dictionary_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_); +DO_TYPEDEF(0x03CE2580, MemberRelationship); +DO_TYPEDEF(0x03CE2498, BitVector32_Section); +DO_TYPEDEF(0x03CE2768, HybridDictionary); +DO_TYPEDEF(0x03CE2440, ListDictionary_NodeEnumerator); +DO_TYPEDEF(0x03CE23F8, ListDictionary_NodeKeyValueCollection); +DO_TYPEDEF(0x03CE2358, ListDictionary_NodeKeyValueCollection_NodeKeyValueEnumerator); +DO_TYPEDEF(0x03CDF818, OrderedDictionary); +DO_TYPEDEF(0x03CE2260, OrderedDictionary_OrderedDictionaryEnumerator); +DO_TYPEDEF(0x03CE2318, OrderedDictionary_OrderedDictionaryKeyValueCollection); +DO_TYPEDEF(0x03CE2168, StringEnumerator); +DO_TYPEDEF(0x03CE1FD8, NotifyCollectionChangedAction__Enum); +DO_TYPEDEF(0x03D1F560, NotifyCollectionChangedEventArgs); +DO_TYPEDEF(0x03CEF090, NotifyCollectionChangedEventHandler); +DO_TYPEDEF(0x03CE1EE8, ReadOnlyList); +DO_TYPEDEF(0x03CF4DD8, CaseSensitiveStringDictionary); +DO_TYPEDEF(0x03D0D9A0, NameObjectCollectionBase_NameObjectKeysEnumerator); +DO_TYPEDEF(0x03CE1EC0, CompatibleComparer_1); +DO_TYPEDEF(0x03CE20E8, GenericAdapter); +DO_TYPEDEF(0x03CE1AD8, GenericAdapter_ICollectionToGenericCollectionAdapter); +DO_TYPEDEF(0x03CE1B38, GenericAdapter_ICollectionToGenericCollectionAdapter_GetEnumerator_d_14); +DO_TYPEDEF(0x03CE1B80, GenericAdapter_GetEnumerator_d_25); DO_TYPEDEF(0x03C904E8, CDSCollectionETWBCLProvider_1); +DO_TYPEDEF(0x03CF3508, BitHelper); +DO_TYPEDEF(0x03CEAFF0, FileSystemEventArgs); +DO_TYPEDEF(0x03D0E088, ChunkedMemoryStream); +DO_TYPEDEF(0x03CEB320, ChunkedMemoryStream_MemoryChunk); +DO_TYPEDEF(0x03CEB020, FileSystemEventHandler); +DO_TYPEDEF(0x03CEB010, RenamedEventArgs); +DO_TYPEDEF(0x03CEB018, RenamedEventHandler); +DO_TYPEDEF(0x03CEB2B0, WaitForChangedResult); +DO_TYPEDEF(0x03CEB268, DefaultWatcherData); +DO_TYPEDEF(0x03CEB288, FileSystemWatcher); +DO_TYPEDEF(0x03CEB0A8, SearchPattern2); +DO_TYPEDEF(0x03CEADC0, SearchPattern2_Op); +DO_TYPEDEF(0x03CEB128, IFileWatcher); +DO_TYPEDEF(0x03CEAFE0, ErrorEventHandler); +DO_TYPEDEF(0x03CEB000, ErrorEventArgs); +DO_TYPEDEF(0x03CEB280, Dictionary_2_System_String_System_IO_FileData_); +DO_TYPEDEF(0x03CEB238, FileData); +DO_TYPEDEF(0x03CEB270, DefaultWatcher); +DO_TYPEDEF(0x03CEAFB8, FileSystemWatcher_c_DisplayClass70_0); +DO_TYPEDEF(0x03CEB060, FileSystemWatcher_c_DisplayClass70_1); +DO_TYPEDEF(0x03CEA778, InternalBufferOverflowException); +DO_TYPEDEF(0x03CEAF28, NullFileWatcher); +DO_TYPEDEF(0x03D138B8, GZipStream); +DO_TYPEDEF(0x03D138E0, DeflateStream); +DO_TYPEDEF(0x03CEAB90, DeflateStreamNative); +DO_TYPEDEF(0x03CEABA0, DeflateStreamNative_UnmanagedReadOrWrite); +DO_TYPEDEF(0x03CEAA00, DeflateStreamNative_SafeDeflateStreamHandle); +DO_TYPEDEF(0x03CEAB10, DeflateStream_ReadMethod); +DO_TYPEDEF(0x03CEAB48, DeflateStream_WriteMethod); +DO_TYPEDEF(0x03CEA870, FileSystemWatcher_1); +DO_TYPEDEF(0x03CEA850, FileSystemWatcher_NormalizedFilterCollection); +DO_TYPEDEF(0x03CEA6B0, FileSystemWatcher_NormalizedFilterCollection_ImmutableStringList); +DO_TYPEDEF(0x03CEA700, FileSystemWatcher_c_DisplayClass73_0); +DO_TYPEDEF(0x03CEA678, TaskCompletionSource_1_System_IO_WaitForChangedResult_); +DO_TYPEDEF(0x03CB4210, XmlNode); +DO_TYPEDEF(0x03CAB7A8, XmlDocument); +DO_TYPEDEF(0x03CB42E0, XmlImplementation); +DO_TYPEDEF(0x03CFC5E8, NameTable_Entry); DO_TYPEDEF(0x03CA7740, NameTable); +DO_TYPEDEF(0x03CFC5B0, NameTable_Entry__Array); +DO_TYPEDEF(0x03CB4290, XmlName); +DO_TYPEDEF(0x03CB42C8, DomNameTable); DO_TYPEDEF(0x03CAB330, XmlSchemaObject); +DO_TYPEDEF(0x03CAF158, XmlAttribute); +DO_TYPEDEF(0x03D02F30, XmlSchemaAnnotated); DO_TYPEDEF(0x03CA91C8, XmlSchemaType); DO_TYPEDEF(0x03CA91C0, XmlSchemaSimpleType); DO_TYPEDEF(0x03CAB338, XmlSerializerNamespaces); +DO_TYPEDEF(0x03CAB9B0, XmlSchemaObjectCollection); +DO_TYPEDEF(0x03CFBC70, XmlLinkedNode); +DO_TYPEDEF(0x03CB42A8, XmlCDataSection); DO_TYPEDEF(0x03CA5000, XmlNodeType__Enum); +DO_TYPEDEF(0x03CFC730, XmlChildNodes); +DO_TYPEDEF(0x03CB41F8, XmlNamedNodeMap); +DO_TYPEDEF(0x03CB4158, XmlAttributeCollection); +DO_TYPEDEF(0x03CB4208, XmlNodeChangedEventArgs); +DO_TYPEDEF(0x03CB4390, XmlElement); +DO_TYPEDEF(0x03CAF150, XmlAttribute__Array); +DO_TYPEDEF(0x03CAF190, XmlSchemaAnnotation); DO_TYPEDEF(0x03CA9620, DatatypeImplementation); +DO_TYPEDEF(0x03D02318, Datatype_anySimpleType); +DO_TYPEDEF(0x03CFBCB0, Datatype_List); +DO_TYPEDEF(0x03D03740, XmlSchemaWhiteSpace__Enum); +DO_TYPEDEF(0x03D03830, RestrictionFacets); DO_TYPEDEF(0x03CAB490, XmlTypeCode__Enum); +DO_TYPEDEF(0x03CAD5B8, XmlBaseConverter); +DO_TYPEDEF(0x03CAF5B0, XmlNumeric10Converter); DO_TYPEDEF(0x03CA9068, XmlSchemaSimpleType__Array); DO_TYPEDEF(0x03CA5020, XmlQualifiedName); +DO_TYPEDEF(0x03CFE070, XmlQualifiedName_HashCodeOfStringDelegate); +DO_TYPEDEF(0x03D02438, DatatypeImplementation__Array); +DO_TYPEDEF(0x03D02270, DatatypeImplementation_SchemaDatatypeMap); +DO_TYPEDEF(0x03D022B8, DatatypeImplementation_SchemaDatatypeMap__Array); DO_TYPEDEF(0x03CA91A8, XmlSchemaObjectTable); DO_TYPEDEF(0x03CAB2C0, Dictionary_2_System_Xml_XmlQualifiedName_System_Xml_Schema_XmlSchemaObject_); DO_TYPEDEF(0x03CA93F0, XmlQualifiedName__Array); DO_TYPEDEF(0x03CAB2D0, List_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry_); +DO_TYPEDEF(0x03D02590, Asttree); +DO_TYPEDEF(0x03CA8E68, CompiledIdentityConstraint); DO_TYPEDEF(0x03CA9628, SchemaElementDecl); DO_TYPEDEF(0x03CA9630, Dictionary_2_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaAttDef_); DO_TYPEDEF(0x03CA90B0, SchemaAttDef); DO_TYPEDEF(0x03CA95B8, XmlSchemaAttribute); -DO_TYPEDEF(0x03CA9670, List_1_System_Xml_IDtdDefaultAttributeInfo_); DO_TYPEDEF(0x03CA6D98, IDtdDefaultAttributeInfo); +DO_TYPEDEF(0x03CA9670, List_1_System_Xml_IDtdDefaultAttributeInfo_); DO_TYPEDEF(0x03CA74E8, IEnumerator_1_System_Xml_IDtdDefaultAttributeInfo_); DO_TYPEDEF(0x03CA9650, Dictionary_2_System_Xml_XmlQualifiedName_System_Xml_XmlQualifiedName_); DO_TYPEDEF(0x03CA9638, ContentValidator); -DO_TYPEDEF(0x03CA8E68, CompiledIdentityConstraint); -DO_TYPEDEF(0x03CA7748, XmlNamespaceManager); +DO_TYPEDEF(0x03CAD850, ConstraintStruct); DO_TYPEDEF(0x03CA8EB0, BitSet_1); +DO_TYPEDEF(0x03CABA08, ValidationState); +DO_TYPEDEF(0x03CA7748, XmlNamespaceManager); +DO_TYPEDEF(0x03CFE0C8, XmlNamespaceManager_NamespaceDeclaration__Array); +DO_TYPEDEF(0x03D02598, Asttree__Array); +DO_TYPEDEF(0x03D02580, SelectorActiveAxis); +DO_TYPEDEF(0x03CAD868, ConstraintStruct__Array); +DO_TYPEDEF(0x03CAC378, BitSet_1__Array); +DO_TYPEDEF(0x03D02468, List_1_System_Xml_Schema_RangePositionInfo_); +DO_TYPEDEF(0x03CAD9E0, XmlSchemaSet); DO_TYPEDEF(0x03CAB658, SchemaNames); +DO_TYPEDEF(0x03CADB30, ValidationEventHandler); DO_TYPEDEF(0x03CA94A0, ValidationEventArgs); DO_TYPEDEF(0x03CA7678, XmlSchemaException); +DO_TYPEDEF(0x03CAC340, SchemaInfo); DO_TYPEDEF(0x03CA9618, Dictionary_2_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaElementDecl_); DO_TYPEDEF(0x03CA9608, Dictionary_2_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaEntity_); DO_TYPEDEF(0x03CA71E8, SchemaEntity); +DO_TYPEDEF(0x03CC17E8, Dictionary_2_System_String_System_Boolean_); DO_TYPEDEF(0x03CA95F8, Dictionary_2_System_String_System_Xml_Schema_SchemaNotation_); DO_TYPEDEF(0x03CA91B8, SchemaNotation); DO_TYPEDEF(0x03CA73E8, IDtdAttributeListInfo); @@ -1035,93 +5225,1333 @@ DO_TYPEDEF(0x03CA76B0, IDtdEntityInfo); DO_TYPEDEF(0x03CA4F18, XmlReaderSettings); DO_TYPEDEF(0x03CA7760, XmlUrlResolver); DO_TYPEDEF(0x03CA9158, XmlSchema); +DO_TYPEDEF(0x03CADB38, XmlSchemaCompilationSettings); +DO_TYPEDEF(0x03CAB748, XmlSchemaAnyAttribute); +DO_TYPEDEF(0x03CAB700, NamespaceList); DO_TYPEDEF(0x03CA8DD8, CompiledIdentityConstraint__Array); DO_TYPEDEF(0x03CA9150, XmlSchemaParticle); DO_TYPEDEF(0x03CA9178, XmlSchemaElement); DO_TYPEDEF(0x03CA73D0, IDtdAttributeInfo); DO_TYPEDEF(0x03CA74E0, IEnumerable_1_System_Xml_IDtdDefaultAttributeInfo_); +DO_TYPEDEF(0x03CADA88, XmlSchemaSimpleTypeContent); DO_TYPEDEF(0x03CA4F88, IXmlSchemaInfo); +DO_TYPEDEF(0x03CFBC40, XmlName__Array); +DO_TYPEDEF(0x03CB41B8, EmptyEnumerator); +DO_TYPEDEF(0x03CB4288, XmlDocumentType); +DO_TYPEDEF(0x03CB4278, XmlDeclaration); +DO_TYPEDEF(0x03CB42A0, XmlComment); +DO_TYPEDEF(0x03CB4298, XmlDocumentFragment); +DO_TYPEDEF(0x03CB4230, XmlEntityReference); +DO_TYPEDEF(0x03CB4228, XmlProcessingInstruction); +DO_TYPEDEF(0x03CB4270, XmlText); +DO_TYPEDEF(0x03CB4268, XmlSignificantWhitespace); +DO_TYPEDEF(0x03CB4260, XmlWhitespace); +DO_TYPEDEF(0x03CC04B0, XmlReader); DO_TYPEDEF(0x03CA4F58, XmlAsyncCheckReader); DO_TYPEDEF(0x03CA73F8, IDtdInfo); -DO_TYPEDEF(0x03CA7710, XmlTextReaderImpl_LaterInitParam); +DO_TYPEDEF(0x03CAC348, XmlTextReader); DO_TYPEDEF(0x03CA7770, XmlTextReaderImpl_NodeData); +DO_TYPEDEF(0x03CB2338, XmlTextReaderImpl); +DO_TYPEDEF(0x03CA7710, XmlTextReaderImpl_LaterInitParam); +DO_TYPEDEF(0x03CB40B8, XmlParserContext); DO_TYPEDEF(0x03CA7768, XmlTextReaderImpl_NodeData__Array); DO_TYPEDEF(0x03CA7758, XmlTextReaderImpl_XmlContext); DO_TYPEDEF(0x03CA6ED0, XmlTextReaderImpl_ParsingState__Array); DO_TYPEDEF(0x03CA7688, IValidationEventHandling); +DO_TYPEDEF(0x03CB1E68, XmlTextReaderImpl_OnDefaultAttributeUseDelegate); DO_TYPEDEF(0x03CA7020, Dictionary_2_System_Xml_IDtdEntityInfo_System_Xml_IDtdEntityInfo_); DO_TYPEDEF(0x03CA7750, Tuple_4_Int32_Int32_Int32_Boolean_); +DO_TYPEDEF(0x03CC9208, ElementAssignmentConflictInfo); +DO_TYPEDEF(0x03CEB048, ywNXWnsnHdbzydwyXSyhaBXpIvPJ); +DO_TYPEDEF(0x03CEB040, EzzWGxTDYcslHGKkXwwdMNaAuubb); +DO_TYPEDEF(0x03CC6B98, PlatformInitializer); +DO_TYPEDEF(0x03CCE7C0, Initializer); +DO_TYPEDEF(0x03CC17E0, IElementIdentifierTool); +DO_TYPEDEF(0x03CC9640, PlatformInputManager); +DO_TYPEDEF(0x03CEAD50, Action_1_Rewired_BridgedController_); +DO_TYPEDEF(0x03CEEAD8, BridgedController); +DO_TYPEDEF(0x03CF2820, CustomInputSource_Axis); +DO_TYPEDEF(0x03CF2810, CustomInputSource_Button); +DO_TYPEDEF(0x03CF28C8, List_1_Rewired_Platforms_Custom_CustomInputSource_Joystick_); +DO_TYPEDEF(0x03CF2970, XboxOneInputSource_EXzgdOjuTRjkiOWDcTIuyPOkzHMv); +DO_TYPEDEF(0x03CF2818, CustomInputSource_Axis__Array); +DO_TYPEDEF(0x03CF2808, CustomInputSource_Button__Array); +DO_TYPEDEF(0x03CF27F0, ReadOnlyCollection_1_Rewired_Platforms_Custom_CustomInputSource_Axis_); +DO_TYPEDEF(0x03CF2948, IList_1_Rewired_Platforms_Custom_CustomInputSource_Axis_); +DO_TYPEDEF(0x03CF27E8, ReadOnlyCollection_1_Rewired_Platforms_Custom_CustomInputSource_Button_); +DO_TYPEDEF(0x03CF2950, IList_1_Rewired_Platforms_Custom_CustomInputSource_Button_); +DO_TYPEDEF(0x03CF28B8, ReadOnlyCollection_1_Rewired_Platforms_Custom_CustomInputSource_Joystick_); +DO_TYPEDEF(0x03CF29A8, IList_1_Rewired_Platforms_Custom_CustomInputSource_Joystick_); +DO_TYPEDEF(0x03CC9628, XboxOneInputSource); +DO_TYPEDEF(0x03CF2968, Queue_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK_); +DO_TYPEDEF(0x03CEAE78, Action_1_Rewired_ControllerDisconnectedEventArgs_); +DO_TYPEDEF(0x03CEEAC0, ControllerDisconnectedEventArgs); +DO_TYPEDEF(0x03CEAE38, Action_1_Rewired_UpdateControllerInfoEventArgs_); +DO_TYPEDEF(0x03CEEB98, UpdateControllerInfoEventArgs); +DO_TYPEDEF(0x03CC95F8, plBfGLfQeUzmsEdwSpoZbnYJHVeW); +DO_TYPEDEF(0x03CC2CB8, plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG); +DO_TYPEDEF(0x03CC2CC0, List_1_plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG_); +DO_TYPEDEF(0x03CF9750, HardwareJoystickMap_InputManager); +DO_TYPEDEF(0x03CC2D88, plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA); +DO_TYPEDEF(0x03CC4F40, plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA_QEirwUTXDJlRbyOtHactBdFdXgSR); +DO_TYPEDEF(0x03CC4FC8, List_1_plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA_QEirwUTXDJlRbyOtHactBdFdXgSR_); +DO_TYPEDEF(0x03CC2C28, IEnumerator_1_plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA_QEirwUTXDJlRbyOtHactBdFdXgSR_); +DO_TYPEDEF(0x03CEED10, IInputSource); +DO_TYPEDEF(0x03CEABF8, MRGkKzhgDCfculrfXakxXfUSFUsK_yMIrGgsBpHaKpclrrACyRBctPBLfb); +DO_TYPEDEF(0x03CEAC00, Func_1_Rewired_Utils_Classes_Data_AList_1_); +DO_TYPEDEF(0x03CEAB28, MRGkKzhgDCfculrfXakxXfUSFUsK_tvvEsJOMmEQyaCgJPcXcNROjrkjI); +DO_TYPEDEF(0x03CEAB40, Predicate_1_MRGkKzhgDCfculrfXakxXfUSFUsK_pEhrOFQDNlWhiCRQwqLfhdkKHswE_); +DO_TYPEDEF(0x03CEAB08, MRGkKzhgDCfculrfXakxXfUSFUsK_OrgkFeLhoJyTVHhCgCIbkVdlqdWV); +DO_TYPEDEF(0x03CEAAD8, MRGkKzhgDCfculrfXakxXfUSFUsK_jwBTxADLWKlTituoCAazSMHLmyTn); +DO_TYPEDEF(0x03CEABE8, MRGkKzhgDCfculrfXakxXfUSFUsK_bObgWpxRhVLPqRHFLlplCNCrZaeI); +DO_TYPEDEF(0x03CEABD0, MRGkKzhgDCfculrfXakxXfUSFUsK_leaZnJplEvrpSYsnEPvQFdUeegWu); +DO_TYPEDEF(0x03CEAB98, MRGkKzhgDCfculrfXakxXfUSFUsK_tGKTflHZqTsCeIOPVeCdHvPRGNAGA); +DO_TYPEDEF(0x03CEAB80, MRGkKzhgDCfculrfXakxXfUSFUsK_RoXEZWDhIiRQHRObWQCPyjvWzuNL); +DO_TYPEDEF(0x03CEA9F8, MRGkKzhgDCfculrfXakxXfUSFUsK_iDWnzYHVfmBYUfCOMgYtoOCbHzmY); +DO_TYPEDEF(0x03CEE938, ButtonLoopSet); +DO_TYPEDEF(0x03CEAA68, ButtonLoopSet_ButtonData); +DO_TYPEDEF(0x03CEA930, Dictionary_2_System_String_Rewired_SteamAction_); +DO_TYPEDEF(0x03CEA8F0, RewiredVersion); +DO_TYPEDEF(0x03CEA788, ThreadSafeUnityInput_Mouse); +DO_TYPEDEF(0x03CEA6A0, ThreadSafeUnityInput_Keyboard); +DO_TYPEDEF(0x03CEC830, Controller_Axis_uhqOmXTiLElTXIZtOYVnJdaftXTd); +DO_TYPEDEF(0x03CEC6C0, Controller_Button_fjrfBFjmmOcjgwTZoRADZXuehBLP); +DO_TYPEDEF(0x03CEC780, Controller_Button_fjrfBFjmmOcjgwTZoRADZXuehBLP_VfZyQaOOusjKCHrkPIuutVFdWOJP); +DO_TYPEDEF(0x03CEC768, Controller_Button_fjrfBFjmmOcjgwTZoRADZXuehBLP_QFYAZAHInKHeVXHFqrsNewvisNomc); +DO_TYPEDEF(0x03CE93B0, Controller_JWRohisJXmIuHwEGEGEggUqRKtxAb); +DO_TYPEDEF(0x03CE9528, Controller_PWCpFqgnfCquxMQUouzVLdNuQZKm); +DO_TYPEDEF(0x03CE9480, Controller_HUhqQmURjZefXCLGSpCcHVTRkck); +DO_TYPEDEF(0x03CEC348, ControllerWithAxes_LetpMdmjdGTLpJWETwibvziyVxxg); +DO_TYPEDEF(0x03CEC368, ControllerWithAxes_NzvSOgBMKPbhHAioOqyiZXkkpfXz); +DO_TYPEDEF(0x03CEC350, ControllerWithAxes_rfkTPrxKnqjKmBlFsGBNjMGzhcjRA); +DO_TYPEDEF(0x03CC3460, vIqliCMhumeoieWDPqygMpDRxkfk); +DO_TYPEDEF(0x03CEBF18, JoystickCalibrationMapSaveData); +DO_TYPEDEF(0x03CEBE18, Keyboard_YiQbQZcElEPdkLsCcWxDLIlxGCxtA); +DO_TYPEDEF(0x03CEBDF0, Keyboard_veHHyYzYqHrBOckTvyQvjPOBhJKBA); +DO_TYPEDEF(0x03CEBFC0, ControllerTemplate_SZMjASumErbiSjGUvdCcemyAxmWCc); +DO_TYPEDEF(0x03CEBC48, IHardwareControllerTemplateMap_Internal); +DO_TYPEDEF(0x03CE3A40, IControllerTemplateAxisSource); +DO_TYPEDEF(0x03CE3A30, IControllerTemplateButtonSource); +DO_TYPEDEF(0x03CEBA20, List_1_Rewired_IControllerTemplateElement_); +DO_TYPEDEF(0x03CEB818, ControllerTemplate_kvOnxGBUMwSXiAWzvbgaylKBYqUs); +DO_TYPEDEF(0x03CEB8B0, ControllerTemplate_BjXEEhbQeDAWyOVBfVVXsEghejuS); +DO_TYPEDEF(0x03CE3A38, IControllerTemplateElementSource); +DO_TYPEDEF(0x03CEB9D0, ControllerTemplate_csTIWrUXyfGgoqNJIIGeVAagTJdD); +DO_TYPEDEF(0x03CEB9E0, ControllerTemplate_VprbNFJpetAhhvdTDWAwqKAtHwat); +DO_TYPEDEF(0x03CBD9B0, ControllerTemplate_LqGoLqohdgcNcwPSNdVMdAIXzmDeA__Array); +DO_TYPEDEF(0x03CEB9A8, ControllerTemplate_hZysWHpWWPJwqEXJmcOhPIYaomTc); +DO_TYPEDEF(0x03CEB9B8, ControllerTemplate_keNtRjPezcVjAtqoTuZcGIbdFhXp); +DO_TYPEDEF(0x03CEBA08, ControllerTemplate_MywGTeyeQfMqjzMNzumxRZbKtTBo); +DO_TYPEDEF(0x03CEBA10, ControllerTemplate_NWfSIRjqjwVEJxjZcKyhGmCCerOA); +DO_TYPEDEF(0x03CEB9C8, ControllerTemplate_azkWVQKcgJkWZwHDKLnVikmNgIJX); +DO_TYPEDEF(0x03CEBAD8, ControllerTemplate_oajDNdCMJOaDSyADfKWPmKjTRAoOA); +DO_TYPEDEF(0x03CEBB58, ControllerTemplate_ATwzomynQlwYCRPmlZACYZVhxzzF); +DO_TYPEDEF(0x03CBD770, ControllerTemplateActionElementMap); +DO_TYPEDEF(0x03CBD680, ControllerTemplateActionButtonMap); +DO_TYPEDEF(0x03CBD7A8, ControllerTemplateActionAxisMap); +DO_TYPEDEF(0x03CB61B8, OPozBwLHHQdOXXBAjdfoHzmJkpRuA); +DO_TYPEDEF(0x03CBD4C0, ObjectPool_1_OPozBwLHHQdOXXBAjdfoHzmJkpRuA_); +DO_TYPEDEF(0x03CBD4D0, Func_1_OPozBwLHHQdOXXBAjdfoHzmJkpRuA_); +DO_TYPEDEF(0x03CBD4F0, IObjectPool); +DO_TYPEDEF(0x03CBD4E0, OPozBwLHHQdOXXBAjdfoHzmJkpRuA_CdLLULBDvMouDJtduTaboGwUChUK); +DO_TYPEDEF(0x03CB6110, ControllerTemplateMap); +DO_TYPEDEF(0x03CBD520, List_1_Rewired_ControllerTemplateActionElementMap_); +DO_TYPEDEF(0x03CBD500, ReadOnlyCollection_1_Rewired_ControllerTemplateActionElementMap_); +DO_TYPEDEF(0x03CB7F98, PlayerController_Definition); +DO_TYPEDEF(0x03CBD0F0, List_1_Rewired_PlayerController_Button_); +DO_TYPEDEF(0x03CBD0D8, List_1_Rewired_PlayerController_Axis_); +DO_TYPEDEF(0x03CB7D18, PlayerController_ElementWithSource_Definition); +DO_TYPEDEF(0x03CB7CF8, PlayerController_Axis_Definition); +DO_TYPEDEF(0x03CBCE38, PlayerController_MouseAxis_Definition); +DO_TYPEDEF(0x03CB7CD8, PlayerController_CompoundElement_Definition); +DO_TYPEDEF(0x03CB7C98, PlayerController_Axis2D_Definition); +DO_TYPEDEF(0x03CBCE98, PlayerController_Element_Definition__Array); +DO_TYPEDEF(0x03CBCE28, PlayerController_MouseAxis2D); +DO_TYPEDEF(0x03CBCDD0, PlayerController_MouseAxis2D_Definition); +DO_TYPEDEF(0x03CBCDC8, PlayerController_Button_Definition); +DO_TYPEDEF(0x03CB7CD0, PlayerController_MouseWheel_Definition); +DO_TYPEDEF(0x03CBCD60, PlayerController_MouseWheelAxis); +DO_TYPEDEF(0x03CB7CE8, PlayerController_MouseWheelAxis_Definition); +DO_TYPEDEF(0x03CB7A48, PlayerMouse_Definition); +DO_TYPEDEF(0x03CBCD78, PlayerMouse_iHCnGgosCUKhkJyLqSatDEOWlav); +DO_TYPEDEF(0x03CBCDA0, Predicate_1_Rewired_PlayerController_Axis_); +DO_TYPEDEF(0x03CC0998, List_1_System_Reflection_Assembly_); +DO_TYPEDEF(0x03CB60F8, KeyboardMap); +DO_TYPEDEF(0x03CC4020, UnityInputHelper_BsGTYoHaOPgYWtEHeGSpZoDeQUUw); +DO_TYPEDEF(0x03CC3F08, UnityUnifiedKeyboardSource); +DO_TYPEDEF(0x03CC3EF8, UnityUnifiedMouseSource); +DO_TYPEDEF(0x03CC3F60, UpdateLoopDataSet_1_UnityUnifiedMouseSource_VfDxCbYROgLLrrqQJZnvCkuaHSaJ_); +DO_TYPEDEF(0x03CC3EE0, UnityUnifiedMouseSource_VfDxCbYROgLLrrqQJZnvCkuaHSaJ); +DO_TYPEDEF(0x03CC3F30, UnityUnifiedMouseSource_XqaEhuPYVQesdGWUcobErQcCAxFB); +DO_TYPEDEF(0x03CC3F70, Func_1_Rewired_UnityUnifiedMouseSource_VfDxCbYROgLLrrqQJZnvCkuaHSaJ_); +DO_TYPEDEF(0x03CC3D78, QWCZHCNDmpDloSdqwdUrqIUsGkjX); +DO_TYPEDEF(0x03CC3EA0, ObjectPool_1_QWCZHCNDmpDloSdqwdUrqIUsGkjX_); +DO_TYPEDEF(0x03CC3D90, QWCZHCNDmpDloSdqwdUrqIUsGkjX__Array); +DO_TYPEDEF(0x03CC3ED0, Func_1_QWCZHCNDmpDloSdqwdUrqIUsGkjX_); +DO_TYPEDEF(0x03CC3EC0, Action_1_QWCZHCNDmpDloSdqwdUrqIUsGkjX_); +DO_TYPEDEF(0x03CC3BB0, UpdateLoopDataSet_1_QWCZHCNDmpDloSdqwdUrqIUsGkjX_maTEitTqrfublisfyhueruzJbaIw_); +DO_TYPEDEF(0x03CC3CD0, QWCZHCNDmpDloSdqwdUrqIUsGkjX_maTEitTqrfublisfyhueruzJbaIw); +DO_TYPEDEF(0x03CC3EB0, QWCZHCNDmpDloSdqwdUrqIUsGkjX_QOvzUOgRmTAQcYETwDKeyJSpVFrL); +DO_TYPEDEF(0x03CC3DE8, Func_1_QWCZHCNDmpDloSdqwdUrqIUsGkjX_maTEitTqrfublisfyhueruzJbaIw_); +DO_TYPEDEF(0x03CF3B18, IEnumerable_1_Rewired_CustomController_); +DO_TYPEDEF(0x03CC34E0, XKHfzUVAieDxXBogCMTJRCSldnQzA_ZAqVFAUrYoMWMOlzBsXkKEhadZDR); +DO_TYPEDEF(0x03CC34C0, XKHfzUVAieDxXBogCMTJRCSldnQzA_DnqqNTGrNZBJsKBRjRKefzDQZSak); +DO_TYPEDEF(0x03CC2C18, IEnumerable_1_plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA_QEirwUTXDJlRbyOtHactBdFdXgSR_); +DO_TYPEDEF(0x03CC4F38, plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA_BEqvclfNAlKPJcyFrcJtxbAcfxREA); +DO_TYPEDEF(0x03CC1A60, AxisType__Enum); +DO_TYPEDEF(0x03CB9E68, Axis2DCalibration); +DO_TYPEDEF(0x03CB6120, MouseMap); +DO_TYPEDEF(0x03CB6118, CustomControllerMap); +DO_TYPEDEF(0x03CDF550, IEnumerable_1_Rewired_ActionElementMap_); +DO_TYPEDEF(0x03CC56E0, ControllerMap_UnMEVnxGaOFgKwizSmKjhnAbdaNG); +DO_TYPEDEF(0x03CC5B10, ControllerMap_fyrbjYHXyTKwCezIExpQzNLrEOmP); +DO_TYPEDEF(0x03CC5A68, ControllerMap_QHJZtHMwfGwDDCdQtNjfgklCaxLEA); +DO_TYPEDEF(0x03CC9218, IEnumerator_1_Rewired_ElementAssignmentConflictInfo_); +DO_TYPEDEF(0x03CC5A38, ControllerMap_SMXDmqLsDBYVRfvTcFsLMmvOBexJA); +DO_TYPEDEF(0x03CC5998, ControllerMap_MdZZZwNWzGixwfGkDnEFleHlwMHI); +DO_TYPEDEF(0x03CC5C28, ControllerMap_oQKomAcpYvbNoGayiARhbNRCpgFwb); +DO_TYPEDEF(0x03CC5BF8, ControllerMap_pHANlcpTmpBufeLdCBtEPKFWGlsDA); +DO_TYPEDEF(0x03CC5C00, ControllerMap_XdoESdCfkeUOWTJGnOrOthhsLbeeb); +DO_TYPEDEF(0x03CC5678, ControllerMapWithAxes_rKxAGAiafCMdAGCWJVArdWBEplisd); +DO_TYPEDEF(0x03CC5668, ControllerMapWithAxes_jcaIgGiYmHlLNGKhGKXxBEtkUgDbb); +DO_TYPEDEF(0x03CC5670, ControllerMapWithAxes_cwjzGlYFSOhyksDSnMiqKJeojfmbA); +DO_TYPEDEF(0x03CC5660, ControllerMapWithAxes_CCvmbykhvkxMGAufLAVhizMKLlMB); +DO_TYPEDEF(0x03CC6D88, InputMapper_ErrorEventData); +DO_TYPEDEF(0x03CC6E00, InputMapper_CanceledEventData); +DO_TYPEDEF(0x03CC6D98, InputMapper_TimedOutEventData); +DO_TYPEDEF(0x03CC6DD0, InputMapper_StartedEventData); +DO_TYPEDEF(0x03CC6D78, InputMapper_Options_mnQqKVJdLjcHLkZPQaFpTGBnrgQv); +DO_TYPEDEF(0x03CC6F60, InputMapper_cUmGPChoVXjcvJTCnyVIQqUnPsZXA); +DO_TYPEDEF(0x03CDF650, IEnumerable_1_Rewired_ControllerMapSaveData_); +DO_TYPEDEF(0x03CC6C20, PlayerSaveData_PxSBarjRLxILyjbHDfQzCujrtzVEB); +DO_TYPEDEF(0x03CDF648, IEnumerator_1_Rewired_ControllerMapSaveData_); +DO_TYPEDEF(0x03CC9040, Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_Joystick_JoystickMap_); +DO_TYPEDEF(0x03CC8EF0, Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_Joystick_JoystickMap_); +DO_TYPEDEF(0x03D03E18, ryeyPcIHKUxvhqoSFdEblCaJWQPv); +DO_TYPEDEF(0x03CC2F20, ReadOnlyCollection_1_Rewired_Joystick_); +DO_TYPEDEF(0x03D03E28, Player_ControllerHelper_omnFBghUGhbALLyoUbkUTTZcLLHw); +DO_TYPEDEF(0x03CC9038, FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_Rewired_KeyboardMap_); +DO_TYPEDEF(0x03CF46F0, List_1_Rewired_KeyboardMap_); +DO_TYPEDEF(0x03CC2FE8, IList_1_Rewired_KeyboardMap_); +DO_TYPEDEF(0x03CC9030, FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_Rewired_MouseMap_); +DO_TYPEDEF(0x03CF47F0, List_1_Rewired_MouseMap_); +DO_TYPEDEF(0x03CCD408, IList_1_Rewired_MouseMap_); +DO_TYPEDEF(0x03CC9020, Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_CustomController_CustomControllerMap_); +DO_TYPEDEF(0x03CC8EA8, Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_CustomController_CustomControllerMap_); +DO_TYPEDEF(0x03CC8E98, FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_Rewired_CustomControllerMap_); +DO_TYPEDEF(0x03CCD418, IList_1_Rewired_CustomControllerMap_); +DO_TYPEDEF(0x03CC2EA8, ReadOnlyCollection_1_Rewired_CustomController_); +DO_TYPEDEF(0x03CDF4E0, IEnumerable_1_Rewired_Controller_); +DO_TYPEDEF(0x03CC8D40, Player_ControllerHelper_ConflictCheckingHelper_seMFeVgthuYlnQkjTeOBPcrptLpN); +DO_TYPEDEF(0x03CC8D30, Player_ControllerHelper_ConflictCheckingHelper_mgpdnBgaYGGaXcBWLoElhQRfruil); +DO_TYPEDEF(0x03CC8D38, Player_ControllerHelper_ConflictCheckingHelper_mUWkDBagfYzQjOYHxanJRxnKhJKR); +DO_TYPEDEF(0x03CC8D80, Player_ControllerHelper_ConflictCheckingHelper_UfNDvLSuuVWMljDzPWrCWaYplcOt); +DO_TYPEDEF(0x03CC8D78, Player_ControllerHelper_ConflictCheckingHelper_CpboUSTDPpAlEByKEzJxQNQnVRSjA); +DO_TYPEDEF(0x03CC8DC8, Player_ControllerHelper_ConflictCheckingHelper_XkLhlYBnluQbLhNtRkMMXhTvLXOs); +DO_TYPEDEF(0x03CC88E8, Player_ControllerHelper_MapHelper_HYSyuRXnshtieedJbPURVDASbQTY); +DO_TYPEDEF(0x03CC8B18, Player_ControllerHelper_MapHelper_WGmikJepMpwFccOmvBoErYTSdqbo); +DO_TYPEDEF(0x03CC85A0, Player_ControllerHelper_MapHelper_LdrVkWIBUXuRRjiJcsLhszimLfCp); +DO_TYPEDEF(0x03CC8540, Player_ControllerHelper_MapHelper_RxYYgdmDBOVdubWcrlVlHyZKyrQI); +DO_TYPEDEF(0x03CC8640, Player_ControllerHelper_MapHelper_STTQvrqrbzqvdiWSEITIZwbjXKTC); +DO_TYPEDEF(0x03CC8580, Player_ControllerHelper_MapHelper_fOPdvkdPnjRpfuSeTexINndJRBbC); +DO_TYPEDEF(0x03CC8600, Player_ControllerHelper_MapHelper_byHyVkEObkEiObLwLIBDpePbCCkm); +DO_TYPEDEF(0x03CC84B8, Player_ControllerHelper_MapHelper_MDKHOqJzTxCWbeMFJAUrOimrvPKW); +DO_TYPEDEF(0x03CC8668, Player_ControllerHelper_MapHelper_TLgfABIcYLkbYVYXMJihGNpxhImnA); +DO_TYPEDEF(0x03CC88A0, Player_ControllerHelper_MapHelper_ewozUSvwpQlNnPFqzUKYoTrNGTjU); +DO_TYPEDEF(0x03CC84D0, Player_ControllerHelper_MapHelper_JWdoihFGpqNirTmlzwZSRDBpJQCE); +DO_TYPEDEF(0x03CC8BE0, Player_ControllerHelper_MapHelper_AaOpTnuVpWiJTESuhNTYaLAUxyrc); +DO_TYPEDEF(0x03CC8BD8, Player_ControllerHelper_MapHelper_bPXCaDMFHHgEcBYaounlgckfTnWFA); +DO_TYPEDEF(0x03CC8B88, Player_ControllerHelper_MapHelper_kfgovjxJuQYQHMbrhDXrbesoODoPA); +DO_TYPEDEF(0x03CC8B80, Player_ControllerHelper_MapHelper_YfKnphbwUKBwcbgbDfyBJmPcxSjX); +DO_TYPEDEF(0x03CC9ED8, Player_ControllerHelper_PollingHelper_INQmivvaPlKGTvRJYMuQevjEPLhT); +DO_TYPEDEF(0x03CC9DF0, Player_ControllerHelper_PollingHelper_qUbfSuuLZFBCtLjgLmwStqGVqPlg); +DO_TYPEDEF(0x03CC9EC8, Player_ControllerHelper_PollingHelper_xLTRpGDqlQiJErNXSzHggwcQBMip); +DO_TYPEDEF(0x03CC9E20, Player_ControllerHelper_PollingHelper_GKlExeVGqFbdFuoUzSzfNBSiKZrc); +DO_TYPEDEF(0x03CC9E00, Player_ControllerHelper_PollingHelper_VWPptmqenXMEaOezrDiFoQciLTgL); +DO_TYPEDEF(0x03CCA120, Player_ControllerHelper_PollingHelper_BjdPGvYZBGRdmIadJCUJHstNFTXK); +DO_TYPEDEF(0x03CCA010, Player_ControllerHelper_PollingHelper_zLECFIsVgztGwYPJEylSFAYpGcIA); +DO_TYPEDEF(0x03CCA020, Player_ControllerHelper_PollingHelper_APXIoTnnsixgbytAwmKKRmGeJOlj); +DO_TYPEDEF(0x03CCA078, Player_ControllerHelper_PollingHelper_woYNgHVQQfIVnRpPWsIAcFqPZGOX); +DO_TYPEDEF(0x03CCA038, Player_ControllerHelper_PollingHelper_EfkKhfYmxCAUeawWplqRoZrsCxQP); +DO_TYPEDEF(0x03CC9FC8, Player_ControllerHelper_PollingHelper_xWiBalCSZeviLTEtPQvQlNsAFzQE); +DO_TYPEDEF(0x03CC9FD0, Player_ControllerHelper_PollingHelper_BqatuaFsAZhBdNCpwYJjFkqVboIn); +DO_TYPEDEF(0x03CC9FD8, Player_ControllerHelper_PollingHelper_eCZYVGccUCKSnjSCDvRLLZWUXOGJ); +DO_TYPEDEF(0x03CC9F08, Player_ControllerHelper_PollingHelper_kCSItpDUZmnKiflvheuFWslZPtweb); +DO_TYPEDEF(0x03CC9FF0, Player_ControllerHelper_PollingHelper_prTxwzyepLaXOopDTIHyCToWcPNj); +DO_TYPEDEF(0x03CCA200, Player_ControllerHelper_PollingHelper_FxodOjBpgPMaLIfmOBkwiiULrFcw); +DO_TYPEDEF(0x03CCA2B8, Player_ControllerHelper_PollingHelper_OTcMhvdidARZYVLZPrRwNLTQnLtt); +DO_TYPEDEF(0x03CCA278, Player_ControllerHelper_PollingHelper_hDbccDJaECEFNyvNHxVOxWhdjggd); +DO_TYPEDEF(0x03CCA130, Player_ControllerHelper_PollingHelper_RjStaASqRmuJLBDTRxyVWMNAJGXq); +DO_TYPEDEF(0x03CCA2A0, Player_ControllerHelper_PollingHelper_YfMXjXnwPwdjMQjfLadPrRsFZBbT); +DO_TYPEDEF(0x03CC8F88, Player_ControllerHelper_eKXGPDBQsLGpXxzGDyTxKStElrhoA); +DO_TYPEDEF(0x03CC8F60, Player_ControllerHelper_mBCRzDtuLxVSJxUGyBXWGPwECxcd); +DO_TYPEDEF(0x03CC9998, oQuUFLJuRrUxJDynhLyEQLTqbPLb); +DO_TYPEDEF(0x03CEF210, oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB_nJBKlBUJLQcocilALEJBhfdiyascB); +DO_TYPEDEF(0x03CEF228, oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB_hqSgnekblMvrxcIhpthtSBvwZRpfA); +DO_TYPEDEF(0x03CEF2C8, oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB_rZSecNsaugWSctQPjSgvVuScTUil); +DO_TYPEDEF(0x03CEF300, oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB); +DO_TYPEDEF(0x03CEF208, oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB_nJBKlBUJLQcocilALEJBhfdiyascB__Array); +DO_TYPEDEF(0x03CEF220, oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB_hqSgnekblMvrxcIhpthtSBvwZRpfA__Array); +DO_TYPEDEF(0x03CEF2C0, oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB_rZSecNsaugWSctQPjSgvVuScTUil__Array); +DO_TYPEDEF(0x03CEF2D0, oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB_XEVKGtOAPPRilzGCpFtxiFYCCMgz); +DO_TYPEDEF(0x03CEF270, IndexedDictionary_2_System_Int32_oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB_); +DO_TYPEDEF(0x03CBD230, Action_1_Rewired_UpdateLoopType_); +DO_TYPEDEF(0x03CC9940, Action_1_UnityEngine_FullScreenMode_); +DO_TYPEDEF(0x03CEF450, ReInput_PlayerHelper); +DO_TYPEDEF(0x03CCD5A8, ReInput_ControllerHelper); +DO_TYPEDEF(0x03CCD598, ReInput_ControllerHelper_PollingHelper); +DO_TYPEDEF(0x03CCD3E8, ReInput_ControllerHelper_ConflictCheckingHelper); +DO_TYPEDEF(0x03CCD328, ReInput_MappingHelper); +DO_TYPEDEF(0x03CEF370, ReInput_UnityTouch); +DO_TYPEDEF(0x03CEF418, ReInput_TimeHelper); +DO_TYPEDEF(0x03CD6750, IUserDataStore); +DO_TYPEDEF(0x03CCD6D8, ReInput_ConfigHelper); +DO_TYPEDEF(0x03CC4F28, IControllerAssigner); +DO_TYPEDEF(0x03CBCA80, Func_2_Rewired_Data_ConfigVars_Object_); +DO_TYPEDEF(0x03CBCA70, Action_1_Rewired_Platforms_Platform_); +DO_TYPEDEF(0x03CEC020, IList_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap_); +DO_TYPEDEF(0x03CCD550, ReInput_ControllerHelper_PollingHelper_HuxNRCXlyvtpvRWcCPDZqgCFcPlcA); +DO_TYPEDEF(0x03CCD500, ReInput_ControllerHelper_PollingHelper_jvMyGBelneoIGfJBJKgSqXaWUuOV); +DO_TYPEDEF(0x03CCD548, ReInput_ControllerHelper_PollingHelper_ttzsoFqRNfgzFarfTfPHFWbZBgLuA); +DO_TYPEDEF(0x03CCD518, ReInput_ControllerHelper_PollingHelper_oLezWxnOiejmOXcDIrfsCxbLUPMk); +DO_TYPEDEF(0x03CCD508, ReInput_ControllerHelper_PollingHelper_CvnMDdbKvNRTrfIrypZqlzsZJWLS); +DO_TYPEDEF(0x03CCD4B8, ReInput_ControllerHelper_PollingHelper_QdyYRDHQERkKfngnafUNyraFEpqV); +DO_TYPEDEF(0x03CCD4C0, ReInput_ControllerHelper_PollingHelper_ySnvUITNgwrYlEvAERasTZuxdVzT); +DO_TYPEDEF(0x03CCD4C8, ReInput_ControllerHelper_PollingHelper_jmUsIonfCHNlBANFAcEihvNvkSjd); +DO_TYPEDEF(0x03CCD4D8, ReInput_ControllerHelper_PollingHelper_YVPmAXphpqCSerLRFUyqkpOKbWZO); +DO_TYPEDEF(0x03CCD4D0, ReInput_ControllerHelper_PollingHelper_ayVDrJgXgghmJQZGBDyhhDDezjHM); +DO_TYPEDEF(0x03CCD4A8, ReInput_ControllerHelper_PollingHelper_iGJujzMKACbSgtEQtVONBTdBTeBW); +DO_TYPEDEF(0x03CCD4F0, ReInput_ControllerHelper_PollingHelper_UJfumMeQSaHUoaRKrmkrmhhtJMGk); +DO_TYPEDEF(0x03CCD4B0, ReInput_ControllerHelper_PollingHelper_vXzUuoGCJcyqJzIoaBXZNPndpSBh); +DO_TYPEDEF(0x03CCD4F8, ReInput_ControllerHelper_PollingHelper_NBbfBNivBALKTzWgfhHVKtmEukzhA); +DO_TYPEDEF(0x03CCD4E8, ReInput_ControllerHelper_PollingHelper_JfymsNTjUoKwtcPYIJDibZZPDtiI); +DO_TYPEDEF(0x03CCD3A0, ReInput_ControllerHelper_ConflictCheckingHelper_aeAaMfzYyQKCPdxXviCxgvRUEhhA); +DO_TYPEDEF(0x03CCD390, ReInput_ControllerHelper_ConflictCheckingHelper_JMEIWGSZgBEgYGtmzUJNaLpfAXHD); +DO_TYPEDEF(0x03CCD3D8, ReInput_ControllerHelper_ConflictCheckingHelper_fUyujQajGsxxRfDGmNAXabWNUOiU); +DO_TYPEDEF(0x03CCD3C8, ReInput_ControllerHelper_ConflictCheckingHelper_SnIaElzJSFAYrpBOZqUwkgInILcV); +DO_TYPEDEF(0x03CCD3D0, ReInput_ControllerHelper_ConflictCheckingHelper_LEMLPESEgHongLprOOvxLRIRcApk); +DO_TYPEDEF(0x03CCD3C0, ReInput_ControllerHelper_ConflictCheckingHelper_umpAAanNIcajMwWQKDZEhogYpHqZA); +DO_TYPEDEF(0x03CCD3A8, ReInput_ControllerHelper_ConflictCheckingHelper_repvtcWjTRfJUghgRIoeiCtcbjNHc); +DO_TYPEDEF(0x03CCD398, ReInput_ControllerHelper_ConflictCheckingHelper_URXEshkrtvDtJMtkPfPkEHaGZueZ); +DO_TYPEDEF(0x03CE1840, IEnumerable_1_Rewired_InputMapCategory_); +DO_TYPEDEF(0x03CD3900, IEnumerable_1_Rewired_InputCategory_); +DO_TYPEDEF(0x03CD38C0, IEnumerable_1_Rewired_InputAction_); +DO_TYPEDEF(0x03CC9790, ReInput_DmhbSZjMCnZgLPemnolJFUVnzbICA); +DO_TYPEDEF(0x03CEF428, Stopwatch_1); +DO_TYPEDEF(0x03CEF438, ReInput_DmhbSZjMCnZgLPemnolJFUVnzbICA_NGtafHDtYZIXfpyTnVUJzXoLNIRb); +DO_TYPEDEF(0x03CEF408, ADictionary_2_System_Int32_Rewired_ReInput_DmhbSZjMCnZgLPemnolJFUVnzbICA_NGtafHDtYZIXfpyTnVUJzXoLNIRb_); +DO_TYPEDEF(0x03D15B78, Touch__Array); +DO_TYPEDEF(0x03CC9738, ReInput_eXmRegBcghEOBdHNIAjtlBfyfbuD); +DO_TYPEDEF(0x03CEF3A0, ValueWatcher_1_System_Boolean_); +DO_TYPEDEF(0x03CEF390, ValueWatcher_1_System_Int32_); +DO_TYPEDEF(0x03CEF3A8, ValueWatcher_1_System_Single_); +DO_TYPEDEF(0x03CEF3B8, ValueWatcher_1_System_String_); +DO_TYPEDEF(0x03CD2120, ValueWatcher__Array); +DO_TYPEDEF(0x03CEF318, ReInput_eXmRegBcghEOBdHNIAjtlBfyfbuD_qHLAYlWWqjAdFdkeliNOLSREQCHk); +DO_TYPEDEF(0x03CEF308, ReInput_AhyVIyyiNXLwDdjpPfJFTQbpnrkv); +DO_TYPEDEF(0x03CEF260, MQXuqxolDTNzmhlQygSPrfSbyMQP); +DO_TYPEDEF(0x03CEEC60, ehWGkbOICubTwdqQCMLaOvUVfuqgb); +DO_TYPEDEF(0x03CEEA08, fKplPICquiKhEJoUxqQWsAEjBvvp); +DO_TYPEDEF(0x03CEE928, dmRMkvqaghbwxFMglZrhKpFBmHOC); +DO_TYPEDEF(0x03CEE988, ICcCkPZMXjVJgraTglJlgUOQjgBK); +DO_TYPEDEF(0x03CEEC58, WCrSdTVPycjnxACNNWCCQtzDLPrs); +DO_TYPEDEF(0x03CEEA10, nPRqIoqySXhujbVkqhHKfdEBznFW); +DO_TYPEDEF(0x03CEEA00, PLVuESYMpevStRCbBgaqaHaZvFblA); +DO_TYPEDEF(0x03CC9648, OkyanDQiQpkIuPEcUGkHHQHEBNIcb); +DO_TYPEDEF(0x03CEEB90, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb); +DO_TYPEDEF(0x03CEEBC8, List_1_OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb_); +DO_TYPEDEF(0x03CEEBA8, gzbiKNGlSyvLxnIubujCpzSuqtOe); +DO_TYPEDEF(0x03CC9630, Func_2_Rewired_BridgedControllerHWInfo_Rewired_HardwareJoystickMap_InputManager_); +DO_TYPEDEF(0x03CEECB8, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB); +DO_TYPEDEF(0x03CEEA90, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB_UEUxULqgOKjFFoCtJehseWLRVSuFA); +DO_TYPEDEF(0x03CEEA40, List_1_OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB_UEUxULqgOKjFFoCtJehseWLRVSuFA_); +DO_TYPEDEF(0x03CEEB20, IEnumerator_1_OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB_UEUxULqgOKjFFoCtJehseWLRVSuFA_); +DO_TYPEDEF(0x03CEEBD8, IList_1_gzbiKNGlSyvLxnIubujCpzSuqtOe_); +DO_TYPEDEF(0x03CEEB30, IEnumerable_1_OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB_UEUxULqgOKjFFoCtJehseWLRVSuFA_); +DO_TYPEDEF(0x03CEEA88, OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB_EHUwjAEHMNOIGdlywQSkmmcHEZbJ); +DO_TYPEDEF(0x03CEECF0, SDL2InputSource); +DO_TYPEDEF(0x03CEE9D8, ADictionary_2_System_Int32_nPRqIoqySXhujbVkqhHKfdEBznFW_); +DO_TYPEDEF(0x03CEE9F0, ADictionary_2_System_Int32_PLVuESYMpevStRCbBgaqaHaZvFblA_); +DO_TYPEDEF(0x03CEE9E0, NativeBuffer); +DO_TYPEDEF(0x03CC9638, CustomInputManager); +DO_TYPEDEF(0x03CEE868, CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf); +DO_TYPEDEF(0x03CEE888, List_1_Rewired_InputManagers_CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf_); +DO_TYPEDEF(0x03CEE830, CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ); +DO_TYPEDEF(0x03CEE770, CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ_seWhRdmkWxldKiJZidihirlhHhzS); +DO_TYPEDEF(0x03CEE7C0, List_1_Rewired_InputManagers_CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ_seWhRdmkWxldKiJZidihirlhHhzS_); +DO_TYPEDEF(0x03CEE828, IEnumerator_1_Rewired_InputManagers_CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ_seWhRdmkWxldKiJZidihirlhHhzS_); +DO_TYPEDEF(0x03CEE820, IEnumerable_1_Rewired_InputManagers_CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ_seWhRdmkWxldKiJZidihirlhHhzS_); +DO_TYPEDEF(0x03CEE768, CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ_jqZjrYrETeuBxPsOelqcapQOJEVr); +DO_TYPEDEF(0x03CF2AE8, HIDAccelerometer); +DO_TYPEDEF(0x03CF2B70, HIDControllerElement_HIDInfo); +DO_TYPEDEF(0x03CF2BD0, Action_2_Byte_Single_); +DO_TYPEDEF(0x03CF2AD8, HIDAxis); +DO_TYPEDEF(0x03CF2AC8, HIDButton); +DO_TYPEDEF(0x03CF2C68, OutputReport); +DO_TYPEDEF(0x03CEE758, HIDGyroscope_HthzinbRugoaagzayJvkuiHIZxnA); +DO_TYPEDEF(0x03CF2C60, HIDGyroscope_DeAenLGYTqNyWDVKOCMDwbfhHVkGA); +DO_TYPEDEF(0x03CEE6E0, RingBuffer_1_Rewired_HID_HIDGyroscope_DeAenLGYTqNyWDVKOCMDwbfhHVkGA_); +DO_TYPEDEF(0x03CEE6E8, ObjectPool_1_Rewired_HID_HIDGyroscope_DeAenLGYTqNyWDVKOCMDwbfhHVkGA_); +DO_TYPEDEF(0x03CEE698, Func_1_Rewired_HID_HIDGyroscope_DeAenLGYTqNyWDVKOCMDwbfhHVkGA_); +DO_TYPEDEF(0x03CF2AB8, HIDGyroscope); +DO_TYPEDEF(0x03CEE6A8, Func_2_Rewired_UpdateLoopType_Rewired_HID_HIDControllerElementWithDataSet_oBWNdsGlGNkIvPlfnFirbraBbQXRA_); +DO_TYPEDEF(0x03CEE760, HIDGyroscope_oyQEIyEFFCVNxMOmToIeucmCzNzMA); +DO_TYPEDEF(0x03CEE688, HIDGyroscope_HthzinbRugoaagzayJvkuiHIZxnA_NBCIOHrQUqInZmBseEPcjcTXyBDy); +DO_TYPEDEF(0x03CF2AA8, HIDHat); +DO_TYPEDEF(0x03CD1FD8, HidOutputReportHandler); +DO_TYPEDEF(0x03CBB230, ThreadHelper_1); +DO_TYPEDEF(0x03CBB190, Queue_1_System_Action_); +DO_TYPEDEF(0x03CF2C58, HidOutputReportHandler_SvOePIKdkvhWZjsxseHBTlsDmadF); +DO_TYPEDEF(0x03CD1FB8, HidOutputReportHandler_WriteReportDelegate); +DO_TYPEDEF(0x03CF2B60, HIDLight); +DO_TYPEDEF(0x03CF2C18, SpecialDevices_LmfQOMWqeEMyploFNrEhFJQZfChb); +DO_TYPEDEF(0x03CF2B50, HIDTouchpad); +DO_TYPEDEF(0x03CF2B48, HIDTouchpad_TouchpadInfo); +DO_TYPEDEF(0x03CF2BE8, HIDTouchpad_MEbbjOIqfeMIvctgibbviaUtKhNTA); +DO_TYPEDEF(0x03CF2BB8, RingBuffer_1_Rewired_HID_HIDTouchpad_MEbbjOIqfeMIvctgibbviaUtKhNTA_); +DO_TYPEDEF(0x03CF2BA8, HIDTouchpad_TouchData__Array); +DO_TYPEDEF(0x03CF2BD8, Action_2_Rewired_Utils_Classes_Data_NativeBuffer_Rewired_HID_HIDTouchpad_TouchData_); +DO_TYPEDEF(0x03CF2BC8, ObjectPool_1_Rewired_HID_HIDTouchpad_MEbbjOIqfeMIvctgibbviaUtKhNTA_); +DO_TYPEDEF(0x03CF2BF8, Func_1_Rewired_HID_HIDTouchpad_MEbbjOIqfeMIvctgibbviaUtKhNTA_); +DO_TYPEDEF(0x03CF2B40, HIDVibrationMotor); +DO_TYPEDEF(0x03CF2BE0, DualSenseDriver); +DO_TYPEDEF(0x03CF2AD0, HIDAxis__Array); +DO_TYPEDEF(0x03CF2AC0, HIDButton__Array); +DO_TYPEDEF(0x03CF2AA0, HIDHat__Array); +DO_TYPEDEF(0x03CF2AE0, HIDAccelerometer__Array); +DO_TYPEDEF(0x03CF2AB0, HIDGyroscope__Array); +DO_TYPEDEF(0x03CF2B68, HIDTouchpad__Array); +DO_TYPEDEF(0x03CF2B58, HIDVibrationMotor__Array); +DO_TYPEDEF(0x03CF2B78, HIDLight__Array); +DO_TYPEDEF(0x03CD1FF8, Func_2_Rewired_HID_OutputReport_Boolean_); +DO_TYPEDEF(0x03CD1FE8, Action_1_Rewired_HID_OutputReport_); +DO_TYPEDEF(0x03CD1FB0, HIDDeviceDriver_InitArgs); +DO_TYPEDEF(0x03CD1FC8, HIDDeviceDriver_GetHidFeatureData); +DO_TYPEDEF(0x03CF29F8, DualShock4Driver); +DO_TYPEDEF(0x03CF2A00, RailDriverDriver); +DO_TYPEDEF(0x03CB1088, MultiBoolValue__Enum); +DO_TYPEDEF(0x03CB6098, IEnumerable_1_Rewired_ControllerElementIdentifier_); +DO_TYPEDEF(0x03CF4BC8, CustomController_Editor_YLzFOzPFWqItvxpmImsxNXjDjtHr); +DO_TYPEDEF(0x03D03EB0, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wzRiUTIKuqxDCQYCeJSGjaGZezQK); +DO_TYPEDEF(0x03CF6E20, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uOqDZicIKssClHbXiFqQRJjwKSrLA); +DO_TYPEDEF(0x03CF7118, Func_2_Rewired_InputCategory_Int32_); +DO_TYPEDEF(0x03CF7260, Func_2_Rewired_InputCategory_String_); +DO_TYPEDEF(0x03CF70F0, Func_3_Rewired_InputCategory_System_Collections_Generic_IList_1_Int32_); +DO_TYPEDEF(0x03CF70F8, Func_2_Rewired_InputBehavior_Int32_); +DO_TYPEDEF(0x03CF7250, Func_2_Rewired_InputBehavior_String_); +DO_TYPEDEF(0x03CF70D0, Func_3_Rewired_InputBehavior_System_Collections_Generic_IList_1_Int32_); +DO_TYPEDEF(0x03CF71F0, Func_2_Rewired_InputAction_Int32_); +DO_TYPEDEF(0x03CF71D0, Func_2_Rewired_InputAction_String_); +DO_TYPEDEF(0x03CF70E8, Func_3_Rewired_InputAction_System_Collections_Generic_IList_1_Int32_); +DO_TYPEDEF(0x03CF7128, Func_2_Rewired_InputMapCategory_Int32_); +DO_TYPEDEF(0x03CF7240, Func_2_Rewired_InputMapCategory_String_); +DO_TYPEDEF(0x03CF70D8, Func_3_Rewired_InputMapCategory_System_Collections_Generic_IList_1_Int32_); +DO_TYPEDEF(0x03CF7238, Func_2_Rewired_InputLayout_Int32_); +DO_TYPEDEF(0x03CF71C8, Func_2_Rewired_InputLayout_String_); +DO_TYPEDEF(0x03CF71C0, Func_3_Rewired_InputLayout_System_Collections_Generic_IList_1_Int32_); +DO_TYPEDEF(0x03CF7110, Func_2_Rewired_Data_CustomController_Editor_Int32_); +DO_TYPEDEF(0x03CF71E0, Func_2_Rewired_Data_CustomController_Editor_String_); +DO_TYPEDEF(0x03CF71B8, Func_3_Rewired_Data_CustomController_Editor_System_Collections_Generic_IList_1_Int32_); +DO_TYPEDEF(0x03CF6DD8, IList_1_Rewired_Data_CustomController_Editor_); +DO_TYPEDEF(0x03CF7258, Func_2_Rewired_Data_ControllerMapLayoutManager_RuleSet_Editor_Int32_); +DO_TYPEDEF(0x03CF7270, Func_2_Rewired_Data_ControllerMapLayoutManager_RuleSet_Editor_String_); +DO_TYPEDEF(0x03CF70E0, Func_3_Rewired_Data_ControllerMapLayoutManager_RuleSet_Editor_System_Collections_Generic_IList_1_Int32_); +DO_TYPEDEF(0x03CF7280, Func_2_Rewired_Data_ControllerMapEnabler_RuleSet_Editor_Int32_); +DO_TYPEDEF(0x03CF7288, Func_2_Rewired_Data_ControllerMapEnabler_RuleSet_Editor_String_); +DO_TYPEDEF(0x03CF71A8, Func_3_Rewired_Data_ControllerMapEnabler_RuleSet_Editor_System_Collections_Generic_IList_1_Int32_); +DO_TYPEDEF(0x03CF71D8, Func_2_Rewired_Data_Player_Editor_Int32_); +DO_TYPEDEF(0x03CF71E8, Func_2_Rewired_Data_Player_Editor_String_); +DO_TYPEDEF(0x03CF70C8, Func_3_Rewired_Data_Player_Editor_System_Collections_Generic_IList_1_Int32_); +DO_TYPEDEF(0x03CF6BE0, Func_3_Rewired_Data_Player_Editor_Mapping_System_Collections_Generic_IList_1_Int32_); +DO_TYPEDEF(0x03CF6D60, IList_1_Rewired_Data_Player_Editor_Mapping_); +DO_TYPEDEF(0x03CF6BE8, Func_3_Rewired_Data_Player_Editor_CreateControllerInfo_System_Collections_Generic_IList_1_Int32_); +DO_TYPEDEF(0x03CF6D50, IList_1_Rewired_Data_Player_Editor_CreateControllerInfo_); +DO_TYPEDEF(0x03CF7108, Func_2_Rewired_Data_Mapping_ControllerMap_Editor_Int32_); +DO_TYPEDEF(0x03CF7228, Func_2_Rewired_Data_Mapping_ControllerMap_Editor_String_); +DO_TYPEDEF(0x03CF6B20, Func_3_Rewired_ActionElementMap_System_Collections_Generic_IList_1_Int32_); +DO_TYPEDEF(0x03CF6FD0, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_UedsipTjNzWjZmAnxDFyOAhhhAmjA); +DO_TYPEDEF(0x03CF7188, List_1_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wzRiUTIKuqxDCQYCeJSGjaGZezQK_); +DO_TYPEDEF(0x03CF7140, Func_2_Rewired_ControllerType_System_Collections_Generic_List_1_); +DO_TYPEDEF(0x03CF6D90, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_BMJcCOkRiBYHFEqcmQkgjDCJMsLBA); +DO_TYPEDEF(0x03CF6C18, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_pSWcbShkqsnwkHpxQyVdyuylrNvN); +DO_TYPEDEF(0x03CF6C10, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_bwphESxanSFuscPwjhVLBhhGqFBgb); +DO_TYPEDEF(0x03CF6BF8, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_yxSLEozLqmyHlUcKNtRBNZhwqcrr); +DO_TYPEDEF(0x03CF6CA8, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_ObbKSvqjGexdrlgJZvuAlynnTSnL); +DO_TYPEDEF(0x03CF6B68, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_UpQQaVIpVVENkrZPdtCeoouBNWvF); +DO_TYPEDEF(0x03CF6C48, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_vlWAkIISWaSfeIXkDDiYzIfdCbQE); +DO_TYPEDEF(0x03CF6C68, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_jnVErEhTYogJcrWvByIPrDGblPqF); +DO_TYPEDEF(0x03CF6C88, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_VPTFfeIkWEqrVPusyjronFJlmdFJA); +DO_TYPEDEF(0x03CF7200, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_ExbyFqdDkaEpVAKTKkNMCYBAJprMB); +DO_TYPEDEF(0x03CF6B38, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_aqdOQYLqXTwtmABocTdpjCmcRrOI); +DO_TYPEDEF(0x03D03E98, Predicate_1_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wzRiUTIKuqxDCQYCeJSGjaGZezQK_); +DO_TYPEDEF(0x03CF6BB0, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_PGnzxbeakSvzmeebwdzKOzULOptE); +DO_TYPEDEF(0x03CF70B0, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_UxEHhlJcMPZlBhjPcexThCIMYhjP); +DO_TYPEDEF(0x03CF6B90, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_cCyhzqjXKnIcxdPzuMGGpYfxTemL); +DO_TYPEDEF(0x03CF6EB0, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_wAVFTYUmwOAlNDSKYWDZzOhTWjOx); +DO_TYPEDEF(0x03CF6B78, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_oIQxLVFMZlvRWigLbIrSPMTgguCq); +DO_TYPEDEF(0x03CF6AA0, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_HlKCUAchWbLivpaENIbEDfIUhFXcA); +DO_TYPEDEF(0x03CF6A90, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_lsSrimcDOKtCBAAocJqyKoBLQBcy); +DO_TYPEDEF(0x03CF7208, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_DuqyadlYpwbiVBhpgmwKitKvjdZX); +DO_TYPEDEF(0x03CF6A78, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_WHinqfMfoqqRXWhPfGaPgEENIUDn); +DO_TYPEDEF(0x03CF6B08, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_VEBtLWFEwzRODgWoOWGjIResVZdU); +DO_TYPEDEF(0x03CF6A70, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_KkTRxbdhjOOOkzlKWfauvXOwCccJA); +DO_TYPEDEF(0x03CF7180, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_RYULuTUtuoTZSQgvepEQpVeWgfJp); +DO_TYPEDEF(0x03CF6F30, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_tUUOKBjBTBOcswxCuSclzqmleZgo); +DO_TYPEDEF(0x03CF6AE8, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_uvGnTvryksPgPzOIfnLADkOyFBkJ); +DO_TYPEDEF(0x03CF6A30, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_nBLCyQCROBBkxxTmLnqbgbVkZSpFb); +DO_TYPEDEF(0x03CF6AC0, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_AMxLLZWLKpCCqOPFVjshKVtZRSWl); +DO_TYPEDEF(0x03CF6D20, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_KqlKzbkCoFQGPEwIGkCBkVVRWGgl); +DO_TYPEDEF(0x03CF6D48, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_GuLBGjVjWyIdhliizgyZgNnNBHRIb); +DO_TYPEDEF(0x03CF6CF8, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_zoQMUfKzvWjmqWQyWIWWMIIXniyb); +DO_TYPEDEF(0x03CF6D40, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_BPkaMPOdSliSdiwbbiXVfAAGcTrE); +DO_TYPEDEF(0x03CF6C28, UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_XSCBNccEaOsUhjMSdONPYckXXBDo); +DO_TYPEDEF(0x03CF42C0, UserData_TulNPSHwkMfRKJVimfNibmNtxqXP); +DO_TYPEDEF(0x03CF42F0, Action_2_System_Collections_Generic_List_1_Int32_); +DO_TYPEDEF(0x03CF3EC0, UserData_QeWSaqkPdxYNriSGkOsDucTtkBcD); +DO_TYPEDEF(0x03CF6A60, UserData_EjtgnUlQbacfkjWKTeeyjffKbPmAA); +DO_TYPEDEF(0x03CF4988, UserData_DhqZgzGPWTGGwdRQFlWuzKfKqzAk); +DO_TYPEDEF(0x03CF4958, UserData_GSAFNcaFcefHhLblWTtDIrxhfjgf); +DO_TYPEDEF(0x03CF4910, UserData_wcbBGuJTlAAGCeBLIeBzYbePCNMqA); +DO_TYPEDEF(0x03CF4908, UserData_vCNoYyLakFDMMRvOgcYWDbpYeEmab); +DO_TYPEDEF(0x03CF4960, UserData_GnKAUSHFzfGdpkjvmQoGoJjkiANdA); +DO_TYPEDEF(0x03CF4540, UserData_WNUIOuWVRQtkSvfIVFPlWwnKCJqv); +DO_TYPEDEF(0x03CF4528, UserData_RhPMmbMjehlGSZSFVZEULkBOrqLc); +DO_TYPEDEF(0x03CF4518, UserData_qQoSHmpfscRIJNaKwUnOUGXcEfjJ); +DO_TYPEDEF(0x03CF4920, UserData_yLZJjyTSjmVKaGeoPNqVUDYXBKkFA); +DO_TYPEDEF(0x03CF4950, UserData_mzAEXdiZuTEsWatBYuQVcVvSCRMbb); +DO_TYPEDEF(0x03CF4948, UserData_nnzEjfPfSrJwasKSiTBVMeczbvIEA); +DO_TYPEDEF(0x03CF4990, UserData_KvnKBRzKRyLHstMgGAmdlxDIcJuF); +DO_TYPEDEF(0x03CF4980, UserData_SoCCXzCpcAeriAYLReqosOKNXVEN); +DO_TYPEDEF(0x03CF4918, UserData_NnIdEvoQOzbRMwaQKHsCurzAVpsV); +DO_TYPEDEF(0x03CF4998, UserData_gkVPgAyBJrkaebtzSGqXAPMpIrMe); +DO_TYPEDEF(0x03CF6870, ActionCategoryMap_Entry_kTJAExJEHvAFsQCigviWsADPsahaA); +DO_TYPEDEF(0x03CF6888, ActionCategoryMap_gZCBARdAyvwRbPAUBPMVsDzckpjEA); +DO_TYPEDEF(0x03CF4C68, IEnumerable_1_System_Guid_); +DO_TYPEDEF(0x03CF9848, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_); +DO_TYPEDEF(0x03CF97E8, HardwareJoystickMap_Platform_uVIHEcVmNaHXXWZWmmIRBnxBdrHK); +DO_TYPEDEF(0x03CF9850, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_); +DO_TYPEDEF(0x03CF9480, HardwareJoystickMap_Platform_DirectInput_Base_Elements_fguVjlKCDFAYwGjCNJpIDkReBVrV); +DO_TYPEDEF(0x03CF9538, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_RawOrDirectInput_Axis_Base_); +DO_TYPEDEF(0x03CF9458, HardwareJoystickMap_Platform_DirectInput_Base_Elements_mPWpHICgkfHUNcRKXgyGjcJCChSAb); +DO_TYPEDEF(0x03CF9530, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_RawOrDirectInput_Button_Base_); +DO_TYPEDEF(0x03CF93F8, HardwareJoystickMap_Platform_DirectInput_Base_wDOniiBAtjPGjBKlQBKUAGMHpPHZA); +DO_TYPEDEF(0x03CF93F0, HardwareJoystickMap_Platform_DirectInput_Base_MpEgptaFPDIarSlVfcxBBeLItFvfc); +DO_TYPEDEF(0x03CF92F0, HardwareJoystickMap_Platform_RawInput_Base_Elements_EGlqeDUNCvcIFDcbiXpNIlynVMOx); +DO_TYPEDEF(0x03CF92E0, HardwareJoystickMap_Platform_RawInput_Base_Elements_zjPsrexbKeWDnypDahdFVlDMriZO); +DO_TYPEDEF(0x03CF9278, HardwareJoystickMap_Platform_RawInput_Base_JtPAMlonTuwbMJWKEntQUNHRDWKs); +DO_TYPEDEF(0x03CF9268, HardwareJoystickMap_Platform_RawInput_Base_ljdryevnLqfpEquFKfZpOdAXfsqC); +DO_TYPEDEF(0x03CF9128, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_XInput_Base_Axis_); +DO_TYPEDEF(0x03CF9108, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_XInput_Base_Button_); +DO_TYPEDEF(0x03CF9220, HardwareJoystickMap_Platform_XInput_Base_MKRAYLUqQSQnjIhsPhyJShqDDfWc); +DO_TYPEDEF(0x03CF9110, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_XInput_Base_Axis_); +DO_TYPEDEF(0x03CF9208, HardwareJoystickMap_Platform_XInput_Base_YsIawbbIWzgTLJDNekTIzmQiTnrGA); +DO_TYPEDEF(0x03CF90F8, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_XInput_Base_Button_); +DO_TYPEDEF(0x03CF8F80, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_OSX_Base_Axis_); +DO_TYPEDEF(0x03CF8F50, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_OSX_Base_Button_); +DO_TYPEDEF(0x03CF8F48, HardwareJoystickMap_Platform_OSX_Base_Elements_QmJTvoXvzljOUpDJtuAyBWDmmbZb); +DO_TYPEDEF(0x03CF8F70, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_OSX_Base_Axis_); +DO_TYPEDEF(0x03CF8F40, HardwareJoystickMap_Platform_OSX_Base_Elements_vqTmCFAJVOfaroUquEkAGLWTUxzcA); +DO_TYPEDEF(0x03CF8FF0, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_OSX_Base_Button_); +DO_TYPEDEF(0x03CF9078, HardwareJoystickMap_Platform_OSX_Base_kMXhsXgKkOhhqCqWaWaKrPOaQdJu); +DO_TYPEDEF(0x03CF8F88, HardwareJoystickMap_Platform_OSX_Base_RdIvogOwleQhtTPWlLlESVIZahgR); +DO_TYPEDEF(0x03CF8EE8, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Linux_Base_Axis_); +DO_TYPEDEF(0x03CF8ED8, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Linux_Base_Button_); +DO_TYPEDEF(0x03CF8E40, HardwareJoystickMap_Platform_Linux_Base_Elements_QPzQsMNesAMiDeOmaElmgWtJdOET); +DO_TYPEDEF(0x03CF8EE0, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Linux_Base_Axis_); +DO_TYPEDEF(0x03CF8E30, HardwareJoystickMap_Platform_Linux_Base_Elements_tmSwGKHqtDjuAkZwLgzKPnLEOyzG); +DO_TYPEDEF(0x03CF8ED0, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Linux_Base_Button_); +DO_TYPEDEF(0x03CF8E70, HardwareJoystickMap_Platform_Linux_Base_khfHnKCwYyVcdpdwemknvrzQLTMi); +DO_TYPEDEF(0x03CF8E68, HardwareJoystickMap_Platform_Linux_Base_YDdeXPBDcOoxfriAWwDJfQeMiZCL); +DO_TYPEDEF(0x03CF8E00, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_WindowsUWP_Base_Axis_); +DO_TYPEDEF(0x03CF8E08, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_WindowsUWP_Base_Button_); +DO_TYPEDEF(0x03CF8DB8, HardwareJoystickMap_Platform_WindowsUWP_Base_Elements_BvUdoRLeZgNcToOZgDdYCCskDqNoA); +DO_TYPEDEF(0x03CF8DF0, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_WindowsUWP_Base_Axis_); +DO_TYPEDEF(0x03CF8DB0, HardwareJoystickMap_Platform_WindowsUWP_Base_Elements_gUTZGOrRMIhLzFJAgZtWxWLQQMvd); +DO_TYPEDEF(0x03CF8DF8, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_WindowsUWP_Base_Button_); +DO_TYPEDEF(0x03CF8DA0, HardwareJoystickMap_Platform_WindowsUWP_Base_PhnvaavLATIhobjvDAvMDQNABUMnB); +DO_TYPEDEF(0x03CF8D98, HardwareJoystickMap_Platform_WindowsUWP_Base_ltEXVqdxfqIGpEGjrikHPlAerIMH); +DO_TYPEDEF(0x03CB4510, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Fallback_Base_Axis_); +DO_TYPEDEF(0x03CB4518, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Fallback_Base_Button_); +DO_TYPEDEF(0x03CB4538, HardwareJoystickMap_Platform_Fallback_Base_UyTOHSkZjmeqFScCZhtCNDkIxcBh); +DO_TYPEDEF(0x03CB4520, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Fallback_Base_Axis_); +DO_TYPEDEF(0x03CB4530, HardwareJoystickMap_Platform_Fallback_Base_DLSCrIjrPFdXZalyfgVlPCeBIuiu); +DO_TYPEDEF(0x03CB4528, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Fallback_Base_Button_); +DO_TYPEDEF(0x03CB43D0, HardwareJoystickMap_Platform_XboxOne_Base_NFQkPtfXqdhdFLpMBlkRQWGtvRQR); +DO_TYPEDEF(0x03CB4408, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Axis_); +DO_TYPEDEF(0x03CB43C0, HardwareJoystickMap_Platform_XboxOne_Base_KwWXDxYGBOIeZiLtjfDlSBydHoASA); +DO_TYPEDEF(0x03CB4430, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_Custom_Button_); +DO_TYPEDEF(0x03CFBB90, HardwareJoystickMap_Platform_PS4_Base_jeEjXYfQCSPUIraieEqTdhJZxifxA); +DO_TYPEDEF(0x03CFBB80, HardwareJoystickMap_Platform_PS4_Base_uHIGtSQjUBsUxbAfXnVCaFyjtUTC); +DO_TYPEDEF(0x03CFBA68, HardwareJoystickMap_Platform_NintendoSwitch_Base_QFAplrhqttNBrHdYDNQWIXcCJwmv); +DO_TYPEDEF(0x03CFBA60, HardwareJoystickMap_Platform_NintendoSwitch_Base_KEhiMaJTCODDLpRDjfINavRnzmhr); +DO_TYPEDEF(0x03CFB910, HardwareJoystickMap_Platform_Stadia_Base_pXdKqPgnsrrGeZFkYDNTDnFNSPXU); +DO_TYPEDEF(0x03CFB908, HardwareJoystickMap_Platform_Stadia_Base_FETTsmmiuAhhHcrFawXPRzjUJgyeA); +DO_TYPEDEF(0x03CFB7C0, HardwareJoystickMap_Platform_GameCore_Base_kTTnZpLQIcEwmXBmZbwfsYmGoGug); +DO_TYPEDEF(0x03CFB748, HardwareJoystickMap_Platform_GameCore_Base_YbxrfFPVTQEbjiErazbeMUIXHAbj); +DO_TYPEDEF(0x03CFB658, HardwareJoystickMap_Platform_PS5_Base_FHHrqIAKgUsEfDFzGhNiMnLlguXK); +DO_TYPEDEF(0x03CFB650, HardwareJoystickMap_Platform_PS5_Base_KDissBBuZLjUWHPDRAoldGOkNlTT); +DO_TYPEDEF(0x03CFB5D8, HardwareJoystickMap_Platform_InternalDriver_Base_iDXWdSyxxJpPIztytPycjELpapbw); +DO_TYPEDEF(0x03CFB5D0, HardwareJoystickMap_Platform_InternalDriver_Base_LevCKdetPHDFMXTowUZFKZXHbQgA); +DO_TYPEDEF(0x03CB6488, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_SDL2_Base_Axis_); +DO_TYPEDEF(0x03CB6480, IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_SDL2_Base_Button_); +DO_TYPEDEF(0x03CB6468, HardwareJoystickMap_Platform_SDL2_Base_MatchingCriteria_ElementCount); +DO_TYPEDEF(0x03CB6460, HardwareJoystickMap_Platform_SDL2_Base_Elements_NamSMfsFeZtHLdGsRbwZcWvOZrOX); +DO_TYPEDEF(0x03CB6490, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_SDL2_Base_Axis_); +DO_TYPEDEF(0x03CB6418, HardwareJoystickMap_Platform_SDL2_Base_Elements_VOuYYNRCjagBBSMnvmAvtqbTfAHaA); +DO_TYPEDEF(0x03CB6498, IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_SDL2_Base_Button_); +DO_TYPEDEF(0x03CB6440, HardwareJoystickMap_Platform_SDL2_Base_POwngWQOkCijJLROtYhvLEtZAvUI); +DO_TYPEDEF(0x03CB6448, HardwareJoystickMap_Platform_SDL2_Base_JAFKRCpJkrAjwQgPgscaFFBGoBAM); +DO_TYPEDEF(0x03CB63D8, HardwareJoystickMap_Platform_Steam_Base); +DO_TYPEDEF(0x03CB63D0, HardwareJoystickMap_Platform_Steam_Base_MatchingCriteria); +DO_TYPEDEF(0x03CB6398, HardwareJoystickMap_Platform_Steam_Base_Elements); +DO_TYPEDEF(0x03CB6390, HardwareJoystickMap_Platform_Steam); +DO_TYPEDEF(0x03CB6380, HardwareJoystickMap_Platform_WebGL_Base_fTuRDZpuiPIyhvZVRbrpztqEVtwn); +DO_TYPEDEF(0x03CB63B8, HardwareJoystickMap_Platform_WebGL_Base_cTrToEfGfdWILiRiuezqTpXBowRm); +DO_TYPEDEF(0x03CB62D0, HardwareJoystickMap_Platform_AppleGCController_Base_owLghjoTKECRFeKSCdKesAfgEtkM); +DO_TYPEDEF(0x03CB62C8, HardwareJoystickMap_Platform_AppleGCController_Base_BkljFakBpDfpqKAryGFkiZOXsnjxA); +DO_TYPEDEF(0x03CF66D8, HardwareJoystickMap_lsaaRXzSdSjXGsNWSviySLmrxkfj); +DO_TYPEDEF(0x03CB60A8, IEnumerator_1_Rewired_Interfaces_IControllerElementIdentifierCommon_Internal_); +DO_TYPEDEF(0x03CF66F0, HardwareJoystickMap_lrUGiixxJxgEsqTWkCueMATRSirt); +DO_TYPEDEF(0x03CF66E8, HardwareJoystickMap_AKUBqZfKWqilagnkBmUMbUlRrxonB); +DO_TYPEDEF(0x03CF66F8, HardwareJoystickMap_izmwytdAUQSgIhGFWHhqldpKsAHJ); +DO_TYPEDEF(0x03CF4C70, IEnumerator_1_System_Guid_); +DO_TYPEDEF(0x03CB61C0, HardwareJoystickTemplateMap_aQrzPsXwfOyYFkNADnHUKiyPGcrh); +DO_TYPEDEF(0x03CB6250, HardwareJoystickTemplateMap_pLWCyDzzPnueFHkratRzKFRISzcu); +DO_TYPEDEF(0x03CB6140, ControllerMap_Editor_OxkBXeDsJQTQfEDarNsWfyHvyzUx); +DO_TYPEDEF(0x03CF2B20, DualSenseExtension); +DO_TYPEDEF(0x03CB6068, DualSenseExtension_BRjdhpjVCerjOrTvXMOvpWCjujhMA); +DO_TYPEDEF(0x03CB6088, IDriver_DualSense); +DO_TYPEDEF(0x03CE11B0, DualShock4Extension); +DO_TYPEDEF(0x03CB6050, DualShock4Extension_FgDrcAndNxyvefubozrJiNFsjXQg); +DO_TYPEDEF(0x03CB6040, IDriver_DualShock4); +DO_TYPEDEF(0x03CF2A28, RailDriverExtension); +DO_TYPEDEF(0x03CB84B0, RailDriverExtension_RlPEDatbFFSmIDauYJCkxnSWYsLf); +DO_TYPEDEF(0x03CB8480, IDriver_RailDriver); +DO_TYPEDEF(0x03CB82F8, SteamControllerExtension); +DO_TYPEDEF(0x03CB8358, SteamControllerExtension_ZvwpLBHiSltaizbYgDHjJEakgjvIb); +DO_TYPEDEF(0x03CB8340, ISteamControllerInternal); +DO_TYPEDEF(0x03CB75E0, CustomControllerElementTargetSetForFloat); +DO_TYPEDEF(0x03CB75D0, CustomControllerElementTargetSetForBoolean); +DO_TYPEDEF(0x03CB7588, CustomControllerElementTarget); +DO_TYPEDEF(0x03CB7570, CustomControllerElementSelector); +DO_TYPEDEF(0x03CB7590, StandaloneAxis2D); +DO_TYPEDEF(0x03CB7568, StandaloneAxis); +DO_TYPEDEF(0x03CB7558, StandaloneAxis_AxisValueChangedEventHandler); +DO_TYPEDEF(0x03CB7550, StandaloneAxis_ButtonDownEventHandler); +DO_TYPEDEF(0x03CB7500, StandaloneAxis_ButtonUpEventHandler); +DO_TYPEDEF(0x03CB74F8, StandaloneAxis_ButtonValueChangedEventHandler); +DO_TYPEDEF(0x03CB7318, StandaloneAxis2D_ValueChangedEventHandler); +DO_TYPEDEF(0x03CB7908, ComponentControl_desDGhBBuHwkXsDZmTHhcFOREOsoA); +DO_TYPEDEF(0x03CB7898, IComponentControl); +DO_TYPEDEF(0x03CB78E0, List_1_Rewired_ComponentControls_IComponentControl_); +DO_TYPEDEF(0x03CB77E0, ComponentController_fjQlPGdYSEtBzRcckqNYdqzZwEPT); +DO_TYPEDEF(0x03CB76E8, CustomController_1); +DO_TYPEDEF(0x03CB7830, CustomControllerSelector); +DO_TYPEDEF(0x03CB7840, CustomController_CreateCustomControllerSettings); +DO_TYPEDEF(0x03CB7848, List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_); +DO_TYPEDEF(0x03CB7560, TouchInteractable); +DO_TYPEDEF(0x03CB73F0, TouchInteractable_InteractionStateTransitionEventHandler); +DO_TYPEDEF(0x03CB73E0, TouchInteractable_VisibilityChangedEventHandler); +DO_TYPEDEF(0x03CB7330, TouchInteractable_InteractionStateTransitionArgs); +DO_TYPEDEF(0x03CB7448, BKsJJnAdrRntLMuBtHLhFtlqOUnH_HierarchyEventHelper_2_Rewired_UI_IVisibilityChangedHandler_System_Boolean_); +DO_TYPEDEF(0x03CB9EF0, BKsJJnAdrRntLMuBtHLhFtlqOUnH_EventFunction_2_Rewired_UI_IVisibilityChangedHandler_System_Boolean_); +DO_TYPEDEF(0x03CB9EB0, IVisibilityChangedHandler); +DO_TYPEDEF(0x03CB73A8, BKsJJnAdrRntLMuBtHLhFtlqOUnH_HierarchyEventHelper_2_Rewired_ComponentControls_TouchInteractable_IInteractionStateTransitionHandler_Rewired_ComponentControls_TouchInteractable_InteractionStateTransitionArgs_); +DO_TYPEDEF(0x03CB7370, BKsJJnAdrRntLMuBtHLhFtlqOUnH_EventFunction_2_Rewired_ComponentControls_TouchInteractable_IInteractionStateTransitionHandler_Rewired_ComponentControls_TouchInteractable_InteractionStateTransitionArgs_); +DO_TYPEDEF(0x03CB7328, TouchInteractable_IInteractionStateTransitionHandler); +DO_TYPEDEF(0x03CBA4D0, TouchRegion_YdvvUWnxXbiWbgYXeOOWZQJRBtyt); +DO_TYPEDEF(0x03CBA4F0, TouchRegion_LgKzqYSYFUIYMAJkbrmKKIglqYnA); +DO_TYPEDEF(0x03CBA4E0, TouchRegion_gAzfzCTiKwnBcGjvXdXnVsQAiabB); +DO_TYPEDEF(0x03CBA500, TouchRegion_ImPhMIkatHfmBJVsADwAsnGUJuBS); +DO_TYPEDEF(0x03CBA4E8, TouchRegion_DCBeKSNJXEcFFIrIiuxjaolLuIzCA); +DO_TYPEDEF(0x03CBA4C8, TouchRegion_bUPfGCpSRwOCTWLtVmGCCAVHHNMK); +DO_TYPEDEF(0x03CBA4D8, TouchRegion_uVxIBmTrpuiJpibaFPwFylQvRiKv); +DO_TYPEDEF(0x03CB7580, OXcOHDpoGGXVUtAOolfnMbASfEDk); +DO_TYPEDEF(0x03CC20D8, Dictionary_2_System_Int32_OXcOHDpoGGXVUtAOolfnMbASfEDk_hetUcKmEoUtrYIpdaWCDeGGUhEHn_); +DO_TYPEDEF(0x03CC2108, OXcOHDpoGGXVUtAOolfnMbASfEDk_hetUcKmEoUtrYIpdaWCDeGGUhEHn); +DO_TYPEDEF(0x03CB7548, Action_1_Rewired_ComponentControls_TouchButton_kIKQVcRqialXKADlcioxUFLesvBs_); +DO_TYPEDEF(0x03CB7520, TouchButton_AxisValueChangedEventHandler); +DO_TYPEDEF(0x03CB7578, TouchButton_ButtonValueChangedEventHandler); +DO_TYPEDEF(0x03CB7530, TouchButton_ButtonDownEventHandler); +DO_TYPEDEF(0x03CB7528, TouchButton_ButtonUpEventHandler); +DO_TYPEDEF(0x03CB74A8, Dictionary_2_System_Int32_UnityEngine_EventSystems_PointerEventData_); +DO_TYPEDEF(0x03CDC7F8, UnityAction_1_System_Single_); +DO_TYPEDEF(0x03CD3AD0, UnityAction_1_System_Boolean_); +DO_TYPEDEF(0x03CB74D0, TouchButton_abYFvsEkLzfKvjfzJzikAMuFNidgc); +DO_TYPEDEF(0x03CB7460, TouchController); +DO_TYPEDEF(0x03CB7340, TouchInteractable_KoeBubFjLenFWOGjupOOLMRwEyjk); +DO_TYPEDEF(0x03CB7250, TouchJoystick); +DO_TYPEDEF(0x03CB7288, BKsJJnAdrRntLMuBtHLhFtlqOUnH_HierarchyEventHelper_2_Rewired_ComponentControls_TouchJoystick_IValueChangedHandler_UnityEngine_Vector2_); +DO_TYPEDEF(0x03CB7258, BKsJJnAdrRntLMuBtHLhFtlqOUnH_EventFunction_2_Rewired_ComponentControls_TouchJoystick_IValueChangedHandler_UnityEngine_Vector2_); +DO_TYPEDEF(0x03CBA690, TouchJoystick_IValueChangedHandler); +DO_TYPEDEF(0x03CB7290, BKsJJnAdrRntLMuBtHLhFtlqOUnH_HierarchyEventHelper_2_Rewired_ComponentControls_TouchJoystick_IStickPositionChangedHandler_UnityEngine_Vector2_); +DO_TYPEDEF(0x03CB7230, BKsJJnAdrRntLMuBtHLhFtlqOUnH_EventFunction_2_Rewired_ComponentControls_TouchJoystick_IStickPositionChangedHandler_UnityEngine_Vector2_); +DO_TYPEDEF(0x03CBA6A0, TouchJoystick_IStickPositionChangedHandler); +DO_TYPEDEF(0x03CB7368, Action_1_Rewired_ComponentControls_TouchJoystick_fYOgiAGPXEYioQpyMdUaGALkIoCKA_); +DO_TYPEDEF(0x03CB72F0, TouchJoystick_ValueChangedEventHandler); +DO_TYPEDEF(0x03CB7300, TouchJoystick_TouchStartedEventHandler); +DO_TYPEDEF(0x03CB7308, TouchJoystick_TouchEndedEventHandler); +DO_TYPEDEF(0x03CB72F8, TouchJoystick_TapEventHandler); +DO_TYPEDEF(0x03CFAEB8, UnityAction_1_UnityEngine_Vector2_); +DO_TYPEDEF(0x03CB7240, TouchJoystick_LuDCVlFbsGoXSwtLpZgQhCwRLyOOA); +DO_TYPEDEF(0x03CB7280, TouchJoystick_nRtKRFCJzLicaOaQLEgGAHTRJIqvA); +DO_TYPEDEF(0x03CBA608, TouchPad_ValueChangedEventHandler); +DO_TYPEDEF(0x03CBA620, TouchPad_TapEventHandler); +DO_TYPEDEF(0x03CBA618, TouchPad_PressDownEventHandler); +DO_TYPEDEF(0x03CBA628, TouchPad_PressUpEventHandler); +DO_TYPEDEF(0x03CBA5F8, TouchPad_yiJyuDElAFOIrssaGqaEzDRoNSSI); +DO_TYPEDEF(0x03CBA538, TouchPad_yiJyuDElAFOIrssaGqaEzDRoNSSI_HPUxaKnanRQyGfrcKFncJRVsbqNi__Array); +DO_TYPEDEF(0x03CB74C0, UnityAction_1_UnityEngine_EventSystems_PointerEventData_); +DO_TYPEDEF(0x03CBA2F0, IRegistrar_1_Rewired_ComponentControls_Effects_TouchJoystickAngleIndicator_); +DO_TYPEDEF(0x03CBA348, TouchJoystickRadialIndicator); +DO_TYPEDEF(0x03CBA230, List_1_Rewired_ComponentControls_Effects_TouchJoystickAngleIndicator_); +DO_TYPEDEF(0x03CB9F10, zDZgydkVTSdUNcyzGBFFOHxZsClo_TYlHmkDTznGBMhXHDVLwimyXARDj); +DO_TYPEDEF(0x03CB9C70, ADictionary_2_System_Type_System_Collections_Generic_List_1_); +DO_TYPEDEF(0x03CFFDD8, List_1_System_Collections_IList_); +DO_TYPEDEF(0x03CB9CF0, ADictionary_2_System_Type_System_Collections_Generic_List_1__1); +DO_TYPEDEF(0x03CE1990, GUIContent); +DO_TYPEDEF(0x03CB9B58, GUIContent__Array); +DO_TYPEDEF(0x03CBB740, UnityTools_UnityVersionClass); +DO_TYPEDEF(0x03CC2D90, IAndroidFallbackPlatformHelper); +DO_TYPEDEF(0x03CFF478, List_1_UnityEngine_Component_); +DO_TYPEDEF(0x03CBB588, QeeoSydAJKtvhuMHtIdMCGTRHBDhA__Array); +DO_TYPEDEF(0x03CBB910, SerializeAttribute); +DO_TYPEDEF(0x03CBB4B0, JsonParser_asoaGjfgLgOvekMIUjTqwSYAcxOd); +DO_TYPEDEF(0x03D1F748, Func_2_System_Reflection_FieldInfo_Boolean_); +DO_TYPEDEF(0x03CBB398, Func_2_System_Reflection_FieldInfo_String_); +DO_TYPEDEF(0x03CBB3B8, Func_2_System_Reflection_PropertyInfo_Boolean_); +DO_TYPEDEF(0x03CBB3A8, Func_2_System_Reflection_PropertyInfo_String_); +DO_TYPEDEF(0x03CCEA20, TimerRealTime); +DO_TYPEDEF(0x03CBB208, Timer_2); +DO_TYPEDEF(0x03CBB210, FrameTimer); +DO_TYPEDEF(0x03CC0798, NativeRingBuffer); +DO_TYPEDEF(0x03CC0718, ObjectInstanceTracker); +DO_TYPEDEF(0x03CC0750, Dictionary_2_System_UInt32_System_Object_); +DO_TYPEDEF(0x03CCE670, DualThreadLowLevelInputEventQueue); +DO_TYPEDEF(0x03CC0700, LowLevelInputEventQueue); +DO_TYPEDEF(0x03CC06F8, DualThreadLowLevelInputEventQueue_GiwGkzGURUZbILvnjIAhCuoWmbAvA); +DO_TYPEDEF(0x03CCE630, DualThreadLowLevelInputEventQueue_INewEventWrapper); +DO_TYPEDEF(0x03CEF378, UnityStopwatch); +DO_TYPEDEF(0x03CC06D0, UnityStopwatch_PYePjHpKfNYrvlzkbfDzgKoCtUGl); +DO_TYPEDEF(0x03CC0458, SerializedObject_Field); +DO_TYPEDEF(0x03CBD410, SerializedObject_XmlInfo_XQIDxGyjfiRrluyCoqxsImPAbnPd); +DO_TYPEDEF(0x03CC05C0, SerializedObject_Enumerator); +DO_TYPEDEF(0x03CC04E0, SerializedObject_HgMZjbfCwvsfHSWFxndJjdoFInHZ); +DO_TYPEDEF(0x03CC04A0, SerializedObject_HgMZjbfCwvsfHSWFxndJjdoFInHZ_kRxMFLDibTKOsYJdDBbSabXKgmsVA); +DO_TYPEDEF(0x03CC03F0, List_1_Rewired_Utils_Classes_Data_SerializedObject_HgMZjbfCwvsfHSWFxndJjdoFInHZ_kRxMFLDibTKOsYJdDBbSabXKgmsVA_); +DO_TYPEDEF(0x03CC05A0, SerializedObject_FXWfHyBeilpxeTScRmJiuaACmYxNA); +DO_TYPEDEF(0x03CC0200, IntVector2); +DO_TYPEDEF(0x03CC0188, IntVector3); +DO_TYPEDEF(0x03CC0190, IntVector4); +DO_TYPEDEF(0x03CC0180, IntRect_1); +DO_TYPEDEF(0x03CC0178, IntPadding); +DO_TYPEDEF(0x03CC0170, SerializableULong); +DO_TYPEDEF(0x03CC2180, Float2x); +DO_TYPEDEF(0x03CC2168, Func_3_Rewired_Utils_Classes_Data_Float2x_Rewired_Utils_Classes_Data_Float2x_Rewired_Utils_Classes_Data_Float2x_); +DO_TYPEDEF(0x03CC21A8, Float3x); +DO_TYPEDEF(0x03CC2198, Func_3_Rewired_Utils_Classes_Data_Float3x_Rewired_Utils_Classes_Data_Float3x_Rewired_Utils_Classes_Data_Float3x_); +DO_TYPEDEF(0x03CC2118, Float4x); +DO_TYPEDEF(0x03CC2160, Func_3_Rewired_Utils_Classes_Data_Float4x_Rewired_Utils_Classes_Data_Float4x_Rewired_Utils_Classes_Data_Float4x_); +DO_TYPEDEF(0x03CC2060, DebugInformation); +DO_TYPEDEF(0x03CC2050, IDictionary_2_System_String_System_Boolean_); +DO_TYPEDEF(0x03CB0F68, DebugInformation_psrJiCrbBDfTPYRQqebcPdpNcDZD); +DO_TYPEDEF(0x03CC1D48, DebugInformation_aydvhcciCTimIvmZBgdBvkxppqpr); +DO_TYPEDEF(0x03CC1F20, Comparison_1_Rewired_InputAction_); +DO_TYPEDEF(0x03CC1F10, DebugInformation_EHkXTvvEARMDArDMvUfiiuUBVejl); +DO_TYPEDEF(0x03CC17B8, feJLArQmekNTDAibHzrTyJvcIApb); +DO_TYPEDEF(0x03CC9468, IntegerControl); +DO_TYPEDEF(0x03CB2720, InputControl_1_System_Single_); +DO_TYPEDEF(0x03CC9488, AxisControl); +DO_TYPEDEF(0x03CB2728, ButtonControl); +DO_TYPEDEF(0x03CC8760, AnyKeyControl); +DO_TYPEDEF(0x03CC94A8, Vector2Control); +DO_TYPEDEF(0x03CC13A0, ReadOnlyArray_1_UnityEngine_InputSystem_InputBinding_); +DO_TYPEDEF(0x03CC0F80, IEnumerator_1_UnityEngine_InputSystem_InputBinding_); +DO_TYPEDEF(0x03CC1478, InputActionPhase__Enum); +DO_TYPEDEF(0x03CC2BE8, ReadOnlyArray_1_UnityEngine_InputSystem_InputActionMap_); +DO_TYPEDEF(0x03CC1320, IEnumerator_1_UnityEngine_InputSystem_InputActionMap_); +DO_TYPEDEF(0x03CC1248, InputActionMap_BindingJson__Array); +DO_TYPEDEF(0x03CC1278, InputActionMap_ReadActionJson__Array); +DO_TYPEDEF(0x03CC13D8, InputActionMap_ReadMapJson__Array); +DO_TYPEDEF(0x03CC7EE8, InputControlScheme_SchemeJson_DeviceJson__Array); +DO_TYPEDEF(0x03CC13E8, InputControlScheme_SchemeJson__Array); +DO_TYPEDEF(0x03CC14B0, InputActionAsset_get_bindings_d_8); +DO_TYPEDEF(0x03CC13C0, InputActionAsset_GetEnumerator_d_31); +DO_TYPEDEF(0x03CC11C8, IEnumerable_1_UnityEngine_InputSystem_InputActionMap_); +DO_TYPEDEF(0x03CC1260, InputActionMap_WriteActionJson__Array); +DO_TYPEDEF(0x03CC1290, InputActionMap_WriteFileJson); +DO_TYPEDEF(0x03CC13E0, InputActionMap_WriteMapJson__Array); +DO_TYPEDEF(0x03CC1000, IInputActionCollection2); +DO_TYPEDEF(0x03CC0FD8, List_1_UnityEngine_InputSystem_InputActionMap_BindingOverrideJson_); +DO_TYPEDEF(0x03CC0F70, InputActionRebindingExtensions_RebindingOperation); +DO_TYPEDEF(0x03CC0CD8, Action_2_UnityEngine_InputSystem_LowLevel_InputEventPtr_UnityEngine_InputSystem_InputDevice_); +DO_TYPEDEF(0x03CC55A8, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_); DO_TYPEDEF(0x03C8BE60, InlinedArray_1_InternedString_); +DO_TYPEDEF(0x03CCB160, ReadOnlyArray_1_InternedString_); +DO_TYPEDEF(0x03CC5AE0, NamedValue); +DO_TYPEDEF(0x03CC5B90, ReadOnlyArray_1_NamedValue_); DO_TYPEDEF(0x03C8BBF8, ReadOnlyArray_1_NameAndParameters_); +DO_TYPEDEF(0x03CB2598, InputControlLayout); +DO_TYPEDEF(0x03CC5AE8, NamedValue__Array); +DO_TYPEDEF(0x03CFE778, IEnumerator_1_UnityEngine_InputSystem_Utilities_NamedValue_); +DO_TYPEDEF(0x03CC23D8, IEnumerator_1_UnityEngine_InputSystem_Utilities_NameAndParameters_); DO_TYPEDEF(0x03C8BC68, InputControlLayout_ControlItem__Array); DO_TYPEDEF(0x03C8BAF0, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_String_); DO_TYPEDEF(0x03C8BAF8, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_Func_1_); +DO_TYPEDEF(0x03CCDAD8, Func_1_UnityEngine_InputSystem_Layouts_InputControlLayout_); DO_TYPEDEF(0x03C8BAD8, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_); DO_TYPEDEF(0x03C8BAE0, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__1); DO_TYPEDEF(0x03C8BB50, HashSet_1_UnityEngine_InputSystem_Utilities_InternedString_); DO_TYPEDEF(0x03C8BAE8, Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_); +DO_TYPEDEF(0x03CFC318, Func_1_UnityEngine_InputSystem_InputDevice_); +DO_TYPEDEF(0x03CFC348, InputDeviceMatcher); DO_TYPEDEF(0x03C8BB60, List_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher_); +DO_TYPEDEF(0x03CC0C78, Dictionary_2_UnityEngine_InputSystem_InputControl_System_Single_); +DO_TYPEDEF(0x03CC0E40, InputActionRebindingExtensions_DeferBindingResolutionWrapper); +DO_TYPEDEF(0x03CC0E18, InputActionRebindingExtensions_ParameterEnumerator); +DO_TYPEDEF(0x03CC0E78, InputActionRebindingExtensions_Parameter); +DO_TYPEDEF(0x03CC0DD0, InputActionRebindingExtensions_RebindingOperation_c_DisplayClass32_0); +DO_TYPEDEF(0x03CC1048, InputActionRebindingExtensions_c_DisplayClass25_0); +DO_TYPEDEF(0x03CC2B70, InputActionSetupExtensions_c_DisplayClass5_0); +DO_TYPEDEF(0x03CC5AA0, List_1_UnityEngine_InputSystem_Utilities_NameAndParameters_); +DO_TYPEDEF(0x03CC1170, List_1_UnityEngine_InputSystem_InputAction_); +DO_TYPEDEF(0x03CC2528, InputActionState_c); +DO_TYPEDEF(0x03CC2578, SavedStructState_1_T_TypedRestore_UnityEngine_InputSystem_InputActionState_GlobalState_); +DO_TYPEDEF(0x03CC2358, InputBinding_c); +DO_TYPEDEF(0x03D0C388, Func_2_String_Boolean_); +DO_TYPEDEF(0x03CC22F8, InputBindingComposite_GetPartNames_d_12); +DO_TYPEDEF(0x03CC56F8, IEnumerable_1_UnityEngine_InputSystem_InputBindingCompositeContext_PartBinding_); +DO_TYPEDEF(0x03CC7FE8, InputBindingCompositeContext_PartBinding); +DO_TYPEDEF(0x03CC2348, InputBindingCompositeContext_get_controls_d_2); +DO_TYPEDEF(0x03CC5700, IEnumerator_1_UnityEngine_InputSystem_InputBindingCompositeContext_PartBinding_); +DO_TYPEDEF(0x03CC7F50, InputControlScheme_MatchResult_Match); +DO_TYPEDEF(0x03CC7F28, InputControlScheme_MatchResult_Enumerator); +DO_TYPEDEF(0x03CCB360, Action_2_String_UnityEngine_InputSystem_InputControlLayoutChange_); +DO_TYPEDEF(0x03CCB380, Action_2_UnityEngine_InputSystem_InputDevice_UnityEngine_InputSystem_InputDeviceChange_); +DO_TYPEDEF(0x03CCDA28, InputDeviceFindControlLayoutDelegate); +DO_TYPEDEF(0x03CCA870, InputDeviceExecuteCommandDelegate); +DO_TYPEDEF(0x03CC7DD8, List_1_UnityEngine_InputSystem_Layouts_InputDeviceDescription_); +DO_TYPEDEF(0x03CC7D68, InputEventListener); +DO_TYPEDEF(0x03CC5A70, IObserver_1_UnityEngine_InputSystem_LowLevel_InputEventPtr_); +DO_TYPEDEF(0x03CD1090, InputEventListener_ObserverState); +DO_TYPEDEF(0x03CC7CE8, InputUpdateType__Enum); +DO_TYPEDEF(0x03CC7CF8, InputSettings_UpdateMode__Enum); +DO_TYPEDEF(0x03CB8ED0, InputSettings); +DO_TYPEDEF(0x03CCB330, InputRemoting_Subscriber); +DO_TYPEDEF(0x03CB87E8, InputStateBuffers); +DO_TYPEDEF(0x03CD1098, InputEventBuffer); +DO_TYPEDEF(0x03CC7BC8, InputManager_1); +DO_TYPEDEF(0x03CCA348, Dictionary_2_System_Int32_UnityEngine_InputSystem_InputDevice_); +DO_TYPEDEF(0x03CD0F08, IEnumerator_1_UnityEngine_InputSystem_LowLevel_InputEventPtr_); +DO_TYPEDEF(0x03CFC338, IInputRuntime); +DO_TYPEDEF(0x03CC9BD8, IInputStateChangeMonitor); +DO_TYPEDEF(0x03CC9CE8, InputManager_StateChangeMonitorsForDevice__Array); +DO_TYPEDEF(0x03CCB280, IObserver_1_UnityEngine_InputSystem_InputRemoting_Message_); +DO_TYPEDEF(0x03CCB118, InputRemoting_RemoteInputDevice__Array); +DO_TYPEDEF(0x03CC7D30, InputSystem_c); +DO_TYPEDEF(0x03CC7D58, Func_2_UnityEngine_InputSystem_LowLevel_InputEventPtr_UnityEngine_InputSystem_InputControl_); +DO_TYPEDEF(0x03CC7D50, Func_2_UnityEngine_InputSystem_InputControl_Boolean_); +DO_TYPEDEF(0x03CC7520, InputControlExtensions_InputEventControlEnumerator); +DO_TYPEDEF(0x03CC7528, InputControlExtensions_GetAllButtonPresses_d_43); +DO_TYPEDEF(0x03CC5820, Substring); +DO_TYPEDEF(0x03CC7480, InlinedArray_1_Substring_); +DO_TYPEDEF(0x03CC7370, InputControlPath_ParsedPathComponent); +DO_TYPEDEF(0x03CC7490, IEnumerator_1_UnityEngine_InputSystem_Utilities_Substring_); +DO_TYPEDEF(0x03CC7418, InputControlPath_ParsedPathComponent_c); +DO_TYPEDEF(0x03CC74A8, Func_2_UnityEngine_InputSystem_Utilities_Substring_String_); +DO_TYPEDEF(0x03CC74E8, InputControlPath_c); +DO_TYPEDEF(0x03CC7468, InputControlPath_Parse_d_34); +DO_TYPEDEF(0x03CC7368, Gamepad); +DO_TYPEDEF(0x03CC5318, DpadControl); +DO_TYPEDEF(0x03CC7288, Joystick_1); +DO_TYPEDEF(0x03CC86D0, KeyControl); +DO_TYPEDEF(0x03CC8B50, Keyboard_1); +DO_TYPEDEF(0x03CC8B38, KeyControl__Array); +DO_TYPEDEF(0x03CC8730, Pointer_2); +DO_TYPEDEF(0x03CC88B0, Mouse_1); +DO_TYPEDEF(0x03CC9480, DeltaControl); +DO_TYPEDEF(0x03CC8818, Pen); +DO_TYPEDEF(0x03CC8650, DiscreteButtonControl); +DO_TYPEDEF(0x03CC9490, TouchControl_1); +DO_TYPEDEF(0x03CC7560, Touchscreen); +DO_TYPEDEF(0x03CC94C8, TouchPressControl); +DO_TYPEDEF(0x03CD14E8, TouchPhase__Enum_1); +DO_TYPEDEF(0x03CC93F0, TouchPhaseControl); +DO_TYPEDEF(0x03CC93F8, DoubleControl); +DO_TYPEDEF(0x03CC9500, TouchControl_1__Array); +DO_TYPEDEF(0x03CCB170, InputRemoting_NewDeviceMsg_c); +DO_TYPEDEF(0x03CC5770, Func_2_UnityEngine_InputSystem_Utilities_InternedString_String_); +DO_TYPEDEF(0x03CCB0B8, InputRemoting_ChangeUsageMsg_c); +DO_TYPEDEF(0x03CCB000, RemoteInputPlayerConnection_Subscriber); +DO_TYPEDEF(0x03CCAF80, RemoteInputPlayerConnection); +DO_TYPEDEF(0x03CCAFA0, IEditorPlayerConnection); +DO_TYPEDEF(0x03CCAFD0, MessageEventArgs); +DO_TYPEDEF(0x03CCAEE0, Accelerometer); +DO_TYPEDEF(0x03CCAD38, Gyroscope); +DO_TYPEDEF(0x03CCACE0, GravitySensor); +DO_TYPEDEF(0x03CCADC0, AttitudeSensor); +DO_TYPEDEF(0x03CCAD90, LinearAccelerationSensor); +DO_TYPEDEF(0x03CCAC28, MagneticFieldSensor); +DO_TYPEDEF(0x03CCAC18, LightSensor); +DO_TYPEDEF(0x03CCAC90, PressureSensor); +DO_TYPEDEF(0x03CCAC58, ProximitySensor); +DO_TYPEDEF(0x03CCABB8, HumiditySensor); +DO_TYPEDEF(0x03CCAB88, AmbientTemperatureSensor); +DO_TYPEDEF(0x03CCABF8, StepCounter); +DO_TYPEDEF(0x03CCA858, InputManager_ListControlLayouts_d_75); +DO_TYPEDEF(0x03CC9FB0, InputManager_c); +DO_TYPEDEF(0x03CC9FF8, Func_2_UnityEngine_InputSystem_InputDevice_String_); +DO_TYPEDEF(0x03CCF5D8, DefaultInputActions); +DO_TYPEDEF(0x03CCDF90, DefaultInputActions_IPlayerActions); +DO_TYPEDEF(0x03CCDF80, DefaultInputActions_IUIActions); +DO_TYPEDEF(0x03CCDDF0, InputValue); +DO_TYPEDEF(0x03CCD8A0, InputUser); +DO_TYPEDEF(0x03CCDEE8, PlayerInput_1); +DO_TYPEDEF(0x03CCF6B8, UIPointerType__Enum); +DO_TYPEDEF(0x03CCF610, InputSystemUIInputModule); +DO_TYPEDEF(0x03CCF500, Dictionary_2_UnityEngine_InputSystem_InputAction_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_); +DO_TYPEDEF(0x03CC1080, IEnumerable_1_UnityEngine_InputSystem_InputAction_); +DO_TYPEDEF(0x03CCF570, ExtendedPointerEventData); +DO_TYPEDEF(0x03CCDEF0, PlayerInput_DeviceLostEvent); +DO_TYPEDEF(0x03CCDEF8, PlayerInput_DeviceRegainedEvent); +DO_TYPEDEF(0x03CCDF30, PlayerInput_ControlsChangedEvent); +DO_TYPEDEF(0x03CCF670, InputUserAccountHandle); +DO_TYPEDEF(0x03CCDE00, Action_3_UnityEngine_InputSystem_Users_InputUser_UnityEngine_InputSystem_Users_InputUserChange_UnityEngine_InputSystem_InputDevice_); +DO_TYPEDEF(0x03CCDD58, Action_2_UnityEngine_InputSystem_InputControl_UnityEngine_InputSystem_LowLevel_InputEventPtr_); +DO_TYPEDEF(0x03CCDD68, Func_3_UnityEngine_InputSystem_InputDevice_UnityEngine_InputSystem_LowLevel_InputEventPtr_Boolean_); +DO_TYPEDEF(0x03CB69E0, InputUser_GlobalState); +DO_TYPEDEF(0x03CCD7E8, IInputActionCollection); +DO_TYPEDEF(0x03CCDCD8, PlayerInputManager); +DO_TYPEDEF(0x03CCDCA0, PlayerInputManager_PlayerJoinedEvent); +DO_TYPEDEF(0x03CCDCA8, PlayerInputManager_PlayerLeftEvent); +DO_TYPEDEF(0x03CCDC30, PoseState); +DO_TYPEDEF(0x03CCDB28, XRLayoutBuilder); +DO_TYPEDEF(0x03CCDAB0, FeatureType__Enum__Array); +DO_TYPEDEF(0x03CCDB10, XRLayoutBuilder_c_DisplayClass5_0); +DO_TYPEDEF(0x03CCD5E8, InputUser_c); +DO_TYPEDEF(0x03CCD5E0, SavedStructState_1_T_TypedRestore_UnityEngine_InputSystem_Users_InputUser_GlobalState_); +DO_TYPEDEF(0x03CCF5A8, ExtendedAxisEventData); +DO_TYPEDEF(0x03CCF618, MultiplayerEventSystem); +DO_TYPEDEF(0x03CCF480, TrackedDeviceRaycaster_c); +DO_TYPEDEF(0x03CCF490, Comparison_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_); +DO_TYPEDEF(0x03CCF3C8, SwitchProControllerHID); +DO_TYPEDEF(0x03CCF3F8, SwitchProControllerHID_SwitchMagicOutputReport_CommandIdType__Enum__Array); +DO_TYPEDEF(0x03CCF3E8, SwitchProControllerHIDInputState); +DO_TYPEDEF(0x03CCF3A8, OnScreenControl); +DO_TYPEDEF(0x03CCF210, HID_UsagePage__Enum); +DO_TYPEDEF(0x03CD18A0, HID_HIDDeviceDescriptor); +DO_TYPEDEF(0x03CD1680, HID); +DO_TYPEDEF(0x03CCF1E0, HID_HIDLayoutBuilder); +DO_TYPEDEF(0x03CCF190, HID_HIDLayoutBuilder_c); +DO_TYPEDEF(0x03CCF178, Predicate_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_); +DO_TYPEDEF(0x03CCF168, Func_2_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_String_); +DO_TYPEDEF(0x03CCDB08, InputControlLayout_Builder); +DO_TYPEDEF(0x03CD1740, List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_); +DO_TYPEDEF(0x03CD16B8, List_1_UnityEngine_InputSystem_HID_HID_HIDCollectionDescriptor_); +DO_TYPEDEF(0x03CCF1E8, HID_GenericDesktop__Enum); +DO_TYPEDEF(0x03CCF218, HID_c_DisplayClass12_0); +DO_TYPEDEF(0x03CD16C0, List_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_); +DO_TYPEDEF(0x03CCF208, ReadOnlyArray_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage_); +DO_TYPEDEF(0x03CD1690, HIDSupport_HIDPageUsage__Array); +DO_TYPEDEF(0x03CD1498, Finger); +DO_TYPEDEF(0x03CD1640, InputStateHistory_1_TouchState_); +DO_TYPEDEF(0x03CD15F8, Action_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_Record_); DO_TYPEDEF(0x03C8C090, InputStateHistory_Record); +DO_TYPEDEF(0x03CD1600, Func_4_UnityEngine_InputSystem_InputControl_Double_UnityEngine_InputSystem_LowLevel_InputEventPtr_Boolean_); +DO_TYPEDEF(0x03CD15D0, IEnumerator_1_UnityEngine_InputSystem_LowLevel_InputStateHistory_1_Record_); DO_TYPEDEF(0x03C9D4D0, Touch_1); +DO_TYPEDEF(0x03CD1568, InlinedArray_1_UnityEngine_InputSystem_Touchscreen_); +DO_TYPEDEF(0x03CB69E8, Touch_GlobalState); +DO_TYPEDEF(0x03CD1510, Touch_c); +DO_TYPEDEF(0x03CD1508, SavedStructState_1_T_TypedRestore_UnityEngine_InputSystem_EnhancedTouch_Touch_GlobalState_); +DO_TYPEDEF(0x03CD14C8, TouchHistory_Enumerator); +DO_TYPEDEF(0x03CD1410, TouchSimulation); +DO_TYPEDEF(0x03CD1438, ButtonControl__Array); +DO_TYPEDEF(0x03CD1398, DualShockGamepad); +DO_TYPEDEF(0x03CD1358, DualSenseGamepadHID_DualSenseHIDMinimalInputReport); +DO_TYPEDEF(0x03CD1360, DualSenseHIDInputReport); +DO_TYPEDEF(0x03CD1320, DualShock4HIDInputReport); +DO_TYPEDEF(0x03CD11E8, IMECompositionString_Enumerator); +DO_TYPEDEF(0x03CD11B0, InputEventBuffer_Enumerator); +DO_TYPEDEF(0x03CD1088, InputEventListener_DisposableObserver); +DO_TYPEDEF(0x03CD0F00, InputEventTrace); +DO_TYPEDEF(0x03CD0FA8, InputEventTrace_DeviceInfo__Array); DO_TYPEDEF(0x03C8C480, InlinedArray_1_UnityEngine_InputSystem_InputDevice_); +DO_TYPEDEF(0x03CD0E68, InputEventTrace_ReplayController); +DO_TYPEDEF(0x03CD0E58, InputEventTrace_Enumerator); DO_TYPEDEF(0x03C8C520, List_1_UnityEngine_InputSystem_LowLevel_InputEventPtr_); DO_TYPEDEF(0x03C8C4C0, InputEventTrace_ReplayController_c); DO_TYPEDEF(0x03C8C500, Comparison_1_UnityEngine_InputSystem_LowLevel_InputEventPtr_); DO_TYPEDEF(0x03C8C400, InputEventTrace_ReplayController_c_DisplayClass43_0); +DO_TYPEDEF(0x03CC9F10, InputUpdateDelegate); +DO_TYPEDEF(0x03CC7B50, NativeInputRuntime); +DO_TYPEDEF(0x03CC9F68, Action_1_UnityEngine_InputSystem_LowLevel_InputUpdateType_); +DO_TYPEDEF(0x03CC9F78, Func_2_UnityEngine_InputSystem_LowLevel_InputUpdateType_Boolean_); +DO_TYPEDEF(0x03CC9F90, Action_2_Int32_String_); DO_TYPEDEF(0x03C8C3F0, NativeInputRuntime_c_DisplayClass7_0); DO_TYPEDEF(0x03C8C348, NativeInputUpdateType__Enum); DO_TYPEDEF(0x03C8C3C8, NativeInputRuntime_c_DisplayClass10_0); DO_TYPEDEF(0x03C8C3A0, NativeInputRuntime_c_DisplayClass13_0); DO_TYPEDEF(0x03C8C358, InputState_StateChangeMonitorDelegate); DO_TYPEDEF(0x03C8C208, InputStateHistory_Enumerator); +DO_TYPEDEF(0x03CCF170, ReadOnlyArray_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_); DO_TYPEDEF(0x03C8BDE8, List_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_); +DO_TYPEDEF(0x03CC5508, Dictionary_2_System_String_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_); DO_TYPEDEF(0x03C8BCA0, InputControlLayout_Builder_ControlBuilder_c); DO_TYPEDEF(0x03C8BE18, Func_2_String_UnityEngine_InputSystem_Utilities_InternedString_); -DO_TYPEDEF(0x03C8BDF8, InputControlLayout_LayoutJson); DO_TYPEDEF(0x03C8BBE0, InputControlLayout_ControlItemJson); +DO_TYPEDEF(0x03C8BDF8, InputControlLayout_LayoutJson); DO_TYPEDEF(0x03C8BBD8, InputControlLayout_ControlItemJson__Array); DO_TYPEDEF(0x03C8BC80, InputControlLayout_LayoutJson_c); DO_TYPEDEF(0x03C8BC20, InputControlLayout_ControlItemJson_c); +DO_TYPEDEF(0x03CC5B98, Func_2_UnityEngine_InputSystem_Utilities_NamedValue_String_); DO_TYPEDEF(0x03C8BBF0, Func_2_UnityEngine_InputSystem_Utilities_NameAndParameters_String_); +DO_TYPEDEF(0x03CC55E8, InputControlLayout_Collection_GetBaseLayouts_d_24); +DO_TYPEDEF(0x03CC55B8, InputControlLayout_LayoutNotFoundException); +DO_TYPEDEF(0x03CC55E0, InputControlLayout_c); +DO_TYPEDEF(0x03CC5458, InputDeviceBuilder); +DO_TYPEDEF(0x03CC0640, IEnumerable_1_KeyValuePair_2_System_String_System_Object_); +DO_TYPEDEF(0x03CC53C8, InputDeviceMatcher_get_patterns_d_4); +DO_TYPEDEF(0x03CC5400, InputDeviceMatcher_c); +DO_TYPEDEF(0x03CC53F8, Func_2_Char_Boolean_); +DO_TYPEDEF(0x03CC5190, IEnumerator_1_UnityEngine_InputSystem_Utilities_InputActionTrace_ActionEventPtr_); +DO_TYPEDEF(0x03CC50D8, InputActionTrace_ActionEventPtr); +DO_TYPEDEF(0x03CC5178, InputActionTrace_Enumerator); +DO_TYPEDEF(0x03CC5068, JsonParser_1); +DO_TYPEDEF(0x03CC5008, JsonParser_JsonString); +DO_TYPEDEF(0x03CC5028, JsonParser_JsonValue); +DO_TYPEDEF(0x03CC50B0, List_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_); +DO_TYPEDEF(0x03CC5030, JsonParser_JsonValue_c); +DO_TYPEDEF(0x03CC5018, Func_2_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_String_); +DO_TYPEDEF(0x03CC5010, Func_2_System_Collections_Generic_KeyValuePair_2_String_); +DO_TYPEDEF(0x03CC23E8, IEnumerable_1_UnityEngine_InputSystem_Utilities_NameAndParameters_); +DO_TYPEDEF(0x03CC5AC0, NameAndParameters_c); +DO_TYPEDEF(0x03CFE600, ForDeviceEventObservable); +DO_TYPEDEF(0x03CC59D8, IObservable_1_UnityEngine_InputSystem_LowLevel_InputEventPtr_); +DO_TYPEDEF(0x03CC59E0, ForDeviceEventObservable_ForDevice); +DO_TYPEDEF(0x03D0C088, Func_2_String_String_); +DO_TYPEDEF(0x03CC5928, StringHelpers_Tokenize_d_8); +DO_TYPEDEF(0x03CC5930, StringHelpers_Split_d_9); +DO_TYPEDEF(0x03CC5788, TypeTable_c); +DO_TYPEDEF(0x03CFDFE0, CSharpCodeProvider_1); +DO_TYPEDEF(0x03CB2070, XmlTextWriterBase64Encoder); +DO_TYPEDEF(0x03CB2188, XmlTextEncoder); DO_TYPEDEF(0x03CA4FB0, BitStack); DO_TYPEDEF(0x03CA5C58, XmlWriterSettings); +DO_TYPEDEF(0x03CFBDC0, List_1_System_Xml_XmlQualifiedName_); +DO_TYPEDEF(0x03CFBD30, HtmlEncodedRawTextWriterIndent); +DO_TYPEDEF(0x03CFBD90, XmlUtf8RawTextWriter); DO_TYPEDEF(0x03CA5028, HtmlUtf8RawTextWriter); +DO_TYPEDEF(0x03CFBD28, HtmlUtf8RawTextWriterIndent); DO_TYPEDEF(0x03CA6EA0, IncrementalReadDummyDecoder); +DO_TYPEDEF(0x03CFBD20, QueryOutputWriter); DO_TYPEDEF(0x03CA4FC8, Dictionary_2_System_Xml_XmlQualifiedName_System_Int32_); DO_TYPEDEF(0x03CA4F50, SecureStringHasher); DO_TYPEDEF(0x03CA4F40, SecureStringHasher_HashCodeOfStringDelegate); +DO_TYPEDEF(0x03CFBD88, TextEncodedRawTextWriter); +DO_TYPEDEF(0x03CFBD80, TextUtf8RawTextWriter); +DO_TYPEDEF(0x03CAD8D8, ValidatingReaderNodeData); +DO_TYPEDEF(0x03CAD8F0, AttributePSVIInfo); +DO_TYPEDEF(0x03CFBD10, XmlSchemaInfo); DO_TYPEDEF(0x03CA4FD8, IXmlLineInfo); DO_TYPEDEF(0x03CA4F78, XmlAsyncCheckReaderWithNS); DO_TYPEDEF(0x03CA4F70, XmlAsyncCheckReaderWithLineInfo); DO_TYPEDEF(0x03CA4F68, XmlAsyncCheckReaderWithLineInfoNS); DO_TYPEDEF(0x03CA4F60, XmlAsyncCheckReaderWithLineInfoNSSchema); +DO_TYPEDEF(0x03CFBD78, XmlAsyncCheckWriter); +DO_TYPEDEF(0x03CFBD70, XmlAutoDetectWriter); DO_TYPEDEF(0x03CA4F08, XmlEventCache); -DO_TYPEDEF(0x03CA4E20, List_1_System_Xml_XmlEventCache_XmlEvent_); DO_TYPEDEF(0x03CA4E28, XmlEventCache_XmlEvent__Array); +DO_TYPEDEF(0x03CA4E20, List_1_System_Xml_XmlEventCache_XmlEvent_); +DO_TYPEDEF(0x03CFBDA8, XmlEncodedRawTextWriterIndent); +DO_TYPEDEF(0x03CB2210, XmlValidatingReaderImpl); +DO_TYPEDEF(0x03D025E8, BaseValidator); +DO_TYPEDEF(0x03CB1E78, XmlSchemaCollection); +DO_TYPEDEF(0x03CAD9D8, PositionInfo); +DO_TYPEDEF(0x03CB1E70, XmlValidatingReaderImpl_ValidationEventHandling); DO_TYPEDEF(0x03CA7700, XmlTextReaderImpl_NoNamespaceManager); DO_TYPEDEF(0x03CA70C0, XmlTextReaderImpl_DtdParserProxy); DO_TYPEDEF(0x03CA73C8, XmlTextReaderImpl_DtdDefaultAttributeInfoToNodeDataComparer); +DO_TYPEDEF(0x03D02FA8, XmlTextWriter); +DO_TYPEDEF(0x03CB2168, XmlTextWriter_TagInfo__Array); +DO_TYPEDEF(0x03CB1F70, XmlTextWriter_State__Enum__Array); +DO_TYPEDEF(0x03CB20B8, XmlTextWriter_Namespace__Array); +DO_TYPEDEF(0x03CFBD98, XmlUtf8RawTextWriterIndent); DO_TYPEDEF(0x03CA4F00, XmlWellFormedWriter); +DO_TYPEDEF(0x03CB1E48, XmlWellFormedWriter_Namespace__Array); +DO_TYPEDEF(0x03CB1E58, XmlWellFormedWriter_ElementScope__Array); +DO_TYPEDEF(0x03CB1E50, XmlWellFormedWriter_AttrName__Array); +DO_TYPEDEF(0x03CFBE60, XmlWellFormedWriter_AttributeValueCache_Item); +DO_TYPEDEF(0x03CB1D60, XmlWellFormedWriter_AttributeValueCache); +DO_TYPEDEF(0x03CFBE68, XmlWellFormedWriter_AttributeValueCache_Item__Array); +DO_TYPEDEF(0x03CB1C78, XmlWellFormedWriter_State__Enum__Array); +DO_TYPEDEF(0x03CB1D30, WriteState__Enum__Array); DO_TYPEDEF(0x03CA5150, XmlException); +DO_TYPEDEF(0x03CB1E60, XmlWellFormedWriter_NamespaceResolverProxy); +DO_TYPEDEF(0x03CFBE70, XmlWellFormedWriter_AttributeValueCache_BufferChunk); +DO_TYPEDEF(0x03CFBCD0, XsdCachingReader); +DO_TYPEDEF(0x03CFBCE8, ValidatingReaderNodeData__Array); +DO_TYPEDEF(0x03CFBC60, CachingEventHandler); +DO_TYPEDEF(0x03CB2238, XsdValidatingReader); +DO_TYPEDEF(0x03CABCC8, XmlSchemaValidator); +DO_TYPEDEF(0x03CAC2E0, HWStack); +DO_TYPEDEF(0x03CABB60, IdRefNode); +DO_TYPEDEF(0x03CAD6B0, XmlSchemaParticle__Array); +DO_TYPEDEF(0x03CAD6A8, XmlSchemaAttribute__Array); +DO_TYPEDEF(0x03CAD690, Boolean__Array_1); +DO_TYPEDEF(0x03CFBCF8, XmlValueGetter); +DO_TYPEDEF(0x03CFBD00, AttributePSVIInfo__Array); +DO_TYPEDEF(0x03CAC338, Parser_1); +DO_TYPEDEF(0x03CAC2F0, XdrBuilder); +DO_TYPEDEF(0x03CABEF8, XdrBuilder_XdrAttributeEntry); +DO_TYPEDEF(0x03CABF18, XdrBuilder_XdrBuildFunction); +DO_TYPEDEF(0x03CABF48, XdrBuilder_XdrAttributeEntry__Array); +DO_TYPEDEF(0x03CAC260, XdrBuilder_XdrEntry); +DO_TYPEDEF(0x03CABE70, XdrBuilder_XdrInitFunction); +DO_TYPEDEF(0x03CABF08, XdrBuilder_XdrBeginChildFunction); +DO_TYPEDEF(0x03CABE60, XdrBuilder_XdrEndChildFunction); +DO_TYPEDEF(0x03CABE68, XdrBuilder_XdrEntry__Array); DO_TYPEDEF(0x03CA8E40, ParticleContentValidator); +DO_TYPEDEF(0x03D024D8, SymbolsDictionary); +DO_TYPEDEF(0x03D024E0, Positions); +DO_TYPEDEF(0x03D024E8, SyntaxTreeNode); +DO_TYPEDEF(0x03D02550, LeafNode); +DO_TYPEDEF(0x03D02568, InteriorNode); +DO_TYPEDEF(0x03D02560, SequenceNode); +DO_TYPEDEF(0x03CAC308, XdrBuilder_ElementContent); +DO_TYPEDEF(0x03CAC318, XdrBuilder_GroupContent); +DO_TYPEDEF(0x03CAC300, XdrBuilder_AttributeContent); +DO_TYPEDEF(0x03CAC1D0, XdrBuilder_DeclBaseInfo); +DO_TYPEDEF(0x03CAEF80, XmlNode__Array); +DO_TYPEDEF(0x03CB4358, XmlChildEnumerator); +DO_TYPEDEF(0x03CB41E0, XmlEntity); +DO_TYPEDEF(0x03CB4388, XmlLoader); +DO_TYPEDEF(0x03CFC850, XmlNameEx); +DO_TYPEDEF(0x03CFC7D8, XmlNamedNodeMap_SmallXmlNodeList_SingleObjectEnumerator); +DO_TYPEDEF(0x03CB40F0, XmlNotation); +DO_TYPEDEF(0x03CB4238, XmlUnspecifiedAttribute); +DO_TYPEDEF(0x03CFC5C0, ReaderPositionInfo); +DO_TYPEDEF(0x03CFC5D8, DtdParser); +DO_TYPEDEF(0x03CFC548, IDtdParserAdapter); +DO_TYPEDEF(0x03CFC550, IDtdParserAdapterWithValidation); +DO_TYPEDEF(0x03CFC460, Dictionary_2_System_String_System_Xml_DtdParser_UndeclaredNotation_); +DO_TYPEDEF(0x03CFC480, DtdParser_UndeclaredNotation); DO_TYPEDEF(0x03CA70D8, IDtdParser); +DO_TYPEDEF(0x03CFC500, DtdParser_ParseElementOnlyContent_LocalFrame); +DO_TYPEDEF(0x03CFE460, XmlDateTimeSerializationMode__Enum); +DO_TYPEDEF(0x03CFE090, XmlDownloadManager); +DO_TYPEDEF(0x03CFE308, XmlDownloadManager_c_DisplayClass4_0); +DO_TYPEDEF(0x03CFE290, OpenedHost); +DO_TYPEDEF(0x03CFE278, XmlRegisteredNonCachedStream); +DO_TYPEDEF(0x03CFE280, XmlCachedStream); DO_TYPEDEF(0x03CA7670, UTF16Decoder); DO_TYPEDEF(0x03CA7668, SafeAsciiDecoder); DO_TYPEDEF(0x03CA7548, Ucs4Encoding); +DO_TYPEDEF(0x03CFE158, Ucs4Decoder4321); +DO_TYPEDEF(0x03CFE230, Ucs4Encoding1234); +DO_TYPEDEF(0x03CFE238, Ucs4Encoding4321); +DO_TYPEDEF(0x03CFE218, Ucs4Encoding2143); +DO_TYPEDEF(0x03CFE220, Ucs4Encoding3412); +DO_TYPEDEF(0x03CFE180, Ucs4Decoder1234); +DO_TYPEDEF(0x03CFE160, Ucs4Decoder2143); +DO_TYPEDEF(0x03CFE1C0, Ucs4Decoder3412); +DO_TYPEDEF(0x03CFE028, AsyncTaskMethodBuilder_1_System_Object_); +DO_TYPEDEF(0x03CFE038, XPathException); +DO_TYPEDEF(0x03CAF478, XPathItem); +DO_TYPEDEF(0x03CAF598, XmlAtomicValue); +DO_TYPEDEF(0x03CABA80, XmlAtomicValue_NamespacePrefixForQName); +DO_TYPEDEF(0x03CAF2F0, XPathNavigator); +DO_TYPEDEF(0x03CFDFC8, XPathNavigatorKeyComparer); +DO_TYPEDEF(0x03CAFCB0, XPathDocumentNavigator); +DO_TYPEDEF(0x03CFF6D0, XmlAttributeEventArgs); +DO_TYPEDEF(0x03CFF700, XmlElementEventArgs); +DO_TYPEDEF(0x03CFF7E0, XmlNodeEventArgs); +DO_TYPEDEF(0x03CFF7F8, UnreferencedObjectEventArgs); +DO_TYPEDEF(0x03CFDF80, ReflectionHelper); +DO_TYPEDEF(0x03CFDF68, XmlTypeMapping); +DO_TYPEDEF(0x03CFDF40, TypeData); +DO_TYPEDEF(0x03CAF170, XmlSchemaFacet); DO_TYPEDEF(0x03CAB320, XmlSchemaPatternFacet); +DO_TYPEDEF(0x03CFDDC0, TypeMember); +DO_TYPEDEF(0x03CFDB68, XmlAnyAttributeAttribute); +DO_TYPEDEF(0x03CFDBB0, XmlAnyElementAttribute); +DO_TYPEDEF(0x03CFDBC0, XmlAnyElementAttributes); +DO_TYPEDEF(0x03CFDB60, XmlArrayAttribute); +DO_TYPEDEF(0x03CFDB58, XmlArrayItemAttribute); +DO_TYPEDEF(0x03CFDBB8, XmlArrayItemAttributes); +DO_TYPEDEF(0x03CFDB90, XmlAttributeAttribute); +DO_TYPEDEF(0x03D002A0, XmlAttributeOverrides); +DO_TYPEDEF(0x03CFDBD0, XmlAttributes); +DO_TYPEDEF(0x03CFDB88, XmlChoiceIdentifierAttribute); +DO_TYPEDEF(0x03CFDBC8, XmlElementAttributes); +DO_TYPEDEF(0x03CFDB78, XmlEnumAttribute); +DO_TYPEDEF(0x03CFDB38, XmlRootAttribute); +DO_TYPEDEF(0x03CFDB30, XmlTextAttribute); +DO_TYPEDEF(0x03CFDB50, XmlTypeAttribute); +DO_TYPEDEF(0x03CFDB80, XmlElementAttribute); +DO_TYPEDEF(0x03CFDB48, XmlIgnoreAttribute); +DO_TYPEDEF(0x03CFF7A8, XmlMembersMapping); +DO_TYPEDEF(0x03CFDB40, XmlNamespaceDeclarationsAttribute); +DO_TYPEDEF(0x03CFFF30, XmlReflectionImporter); +DO_TYPEDEF(0x03CFFF18, XmlReflectionMember); +DO_TYPEDEF(0x03CFFEC8, List_1_System_Xml_Serialization_XmlReflectionMember_); +DO_TYPEDEF(0x03CFF598, XmlTypeMapMember); +DO_TYPEDEF(0x03D00050, XmlTypeMapElementInfoList); +DO_TYPEDEF(0x03CFFE40, XmlTypeMapMemberElement); +DO_TYPEDEF(0x03CFFF78, XmlReflectionImporter_c); +DO_TYPEDEF(0x03D00160, Comparison_1_System_Xml_Serialization_XmlReflectionMember_); +DO_TYPEDEF(0x03D026F0, XmlSchemaProviderAttribute); +DO_TYPEDEF(0x03CFF698, XmlSerializationCollectionFixupCallback); +DO_TYPEDEF(0x03CFF688, XmlSerializationFixupCallback); +DO_TYPEDEF(0x03CFF7B8, XmlSerializationReadCallback); +DO_TYPEDEF(0x03D00968, XmlSerializer); +DO_TYPEDEF(0x03D02790, XmlSerializationWriter); +DO_TYPEDEF(0x03D02778, XmlSerializationWriterInterpreter); +DO_TYPEDEF(0x03CFF558, XmlSerializationReaderInterpreter); +DO_TYPEDEF(0x03CFF948, XmlSerializationReader_CollectionFixup); +DO_TYPEDEF(0x03CFF958, XmlSerializationReader_Fixup); +DO_TYPEDEF(0x03CFF920, XmlSerializationReader_CollectionItemFixup); +DO_TYPEDEF(0x03CFF9D0, XmlSerializationReader_WriteCallbackInfo); +DO_TYPEDEF(0x03CFF900, IXmlSerializable); +DO_TYPEDEF(0x03CFFE50, XmlTypeMapMemberAttribute); +DO_TYPEDEF(0x03D00168, ClassMap); +DO_TYPEDEF(0x03D026D0, XmlTypeMapMemberAttribute__Array); +DO_TYPEDEF(0x03CFF608, XmlTypeMapMemberExpandable); +DO_TYPEDEF(0x03CFFE68, XmlTypeMapMemberAnyElement); +DO_TYPEDEF(0x03CFFF00, XmlTypeMapMemberAnyAttribute); +DO_TYPEDEF(0x03CFFE98, XmlTypeMapMemberNamespaces); +DO_TYPEDEF(0x03CFFFB8, XmlTypeMapElementInfo); +DO_TYPEDEF(0x03CFF6A8, XmlSerializationReaderInterpreter_FixupCallbackInfo); +DO_TYPEDEF(0x03CFF770, XmlSerializationReaderInterpreter_ReaderCallbackInfo); +DO_TYPEDEF(0x03CFF2A0, XmlSerializationWriteCallback); +DO_TYPEDEF(0x03CFF3E0, XmlSerializationWriter_WriteCallbackInfo); +DO_TYPEDEF(0x03D00090, ListMap); +DO_TYPEDEF(0x03CFF2B0, XmlSerializationWriterInterpreter_CallbackInfo); +DO_TYPEDEF(0x03CFFEA8, XmlTypeMapMemberList); +DO_TYPEDEF(0x03CFFE30, XmlTypeMapMemberFlatList); +DO_TYPEDEF(0x03D000E0, XmlSerializableMapping); DO_TYPEDEF(0x03CA91A0, XmlSchemaComplexType); DO_TYPEDEF(0x03CA9148, XmlSchemaComplexContent); +DO_TYPEDEF(0x03CFFE08, EnumMap_EnumMapMember); +DO_TYPEDEF(0x03CFFE00, EnumMap); +DO_TYPEDEF(0x03CFFDD0, EnumMap_EnumMapMember__Array); +DO_TYPEDEF(0x03D02640, AxisElement); +DO_TYPEDEF(0x03CAFFD8, Axis); +DO_TYPEDEF(0x03D02678, DoubleLinkAxis); +DO_TYPEDEF(0x03D02630, ForwardAxis); +DO_TYPEDEF(0x03D02638, AxisStack); +DO_TYPEDEF(0x03D025D0, AutoValidator); +DO_TYPEDEF(0x03CADB18, ChameleonKey); DO_TYPEDEF(0x03CA9188, XmlSchemaIdentityConstraint); +DO_TYPEDEF(0x03CAF168, XmlSchemaXPath); +DO_TYPEDEF(0x03CAD840, LocatedActiveAxis); +DO_TYPEDEF(0x03CAD7B0, TypedObject); +DO_TYPEDEF(0x03CAD780, KeySequence); +DO_TYPEDEF(0x03D025B8, TypedObject_DecimalStruct); +DO_TYPEDEF(0x03D02570, TypedObject__Array); +DO_TYPEDEF(0x03D02588, KSStruct); +DO_TYPEDEF(0x03D025C0, LocatedActiveAxis__Array); DO_TYPEDEF(0x03CA8E38, UpaException); +DO_TYPEDEF(0x03D02508, Position); +DO_TYPEDEF(0x03D02488, NamespaceListNode); +DO_TYPEDEF(0x03D02558, ChoiceNode); +DO_TYPEDEF(0x03D02478, PlusNode); +DO_TYPEDEF(0x03D024A8, QmarkNode); +DO_TYPEDEF(0x03D02480, StarNode); +DO_TYPEDEF(0x03D02530, LeafRangeNode); +DO_TYPEDEF(0x03D024A0, DfaContentValidator); +DO_TYPEDEF(0x03D02498, NfaContentValidator); +DO_TYPEDEF(0x03D02490, RangeContentValidator); DO_TYPEDEF(0x03CA8E50, AllElementsContentValidator); DO_TYPEDEF(0x03CA8DA8, XsdSimpleValue); DO_TYPEDEF(0x03CA9060, Datatype_union); +DO_TYPEDEF(0x03D02320, Datatype_anyAtomicType); +DO_TYPEDEF(0x03D02210, Datatype_untypedAtomicType); +DO_TYPEDEF(0x03D02220, Datatype_string); +DO_TYPEDEF(0x03D02348, Datatype_boolean); +DO_TYPEDEF(0x03D023D0, Datatype_float); +DO_TYPEDEF(0x03D023B0, Datatype_double); +DO_TYPEDEF(0x03D02300, Datatype_decimal); +DO_TYPEDEF(0x03D023A8, Datatype_duration); +DO_TYPEDEF(0x03D02200, Datatype_yearMonthDuration); +DO_TYPEDEF(0x03D02310, Datatype_dayTimeDuration); +DO_TYPEDEF(0x03CB05C0, XsdDateTimeFlags__Enum); +DO_TYPEDEF(0x03D03C28, Datatype_dateTimeBase); +DO_TYPEDEF(0x03D022F0, Datatype_dateTimeNoTimeZone); +DO_TYPEDEF(0x03D022E8, Datatype_dateTimeTimeZone); +DO_TYPEDEF(0x03D022E0, Datatype_dateTime); +DO_TYPEDEF(0x03D02218, Datatype_timeNoTimeZone); +DO_TYPEDEF(0x03D02250, Datatype_timeTimeZone); +DO_TYPEDEF(0x03D02248, Datatype_time); +DO_TYPEDEF(0x03D022D8, Datatype_date); +DO_TYPEDEF(0x03D021F8, Datatype_yearMonth); +DO_TYPEDEF(0x03D022B0, Datatype_year); +DO_TYPEDEF(0x03D02368, Datatype_monthDay); +DO_TYPEDEF(0x03D02308, Datatype_day); +DO_TYPEDEF(0x03D02360, Datatype_month); +DO_TYPEDEF(0x03D025A8, Datatype_hexBinary); +DO_TYPEDEF(0x03D025B0, Datatype_base64Binary); +DO_TYPEDEF(0x03D02350, Datatype_anyURI); +DO_TYPEDEF(0x03D02328, Datatype_QName); +DO_TYPEDEF(0x03D02378, Datatype_normalizedString); +DO_TYPEDEF(0x03D02380, Datatype_normalizedStringV1Compat); +DO_TYPEDEF(0x03D02238, Datatype_token); +DO_TYPEDEF(0x03D02240, Datatype_tokenV1Compat); +DO_TYPEDEF(0x03D023B8, Datatype_language); +DO_TYPEDEF(0x03D02428, Datatype_NMTOKEN); +DO_TYPEDEF(0x03D02418, Datatype_Name); +DO_TYPEDEF(0x03D02430, Datatype_NCName); +DO_TYPEDEF(0x03D023F8, Datatype_ID); +DO_TYPEDEF(0x03D02400, Datatype_IDREF); +DO_TYPEDEF(0x03D02410, Datatype_ENTITY); +DO_TYPEDEF(0x03D02420, Datatype_NOTATION); +DO_TYPEDEF(0x03D023C0, Datatype_integer); +DO_TYPEDEF(0x03D02388, Datatype_nonPositiveInteger); +DO_TYPEDEF(0x03D02358, Datatype_negativeInteger); +DO_TYPEDEF(0x03D02370, Datatype_long); +DO_TYPEDEF(0x03D023C8, Datatype_int); +DO_TYPEDEF(0x03D02228, Datatype_short); +DO_TYPEDEF(0x03D02340, Datatype_byte); +DO_TYPEDEF(0x03D02390, Datatype_nonNegativeInteger); +DO_TYPEDEF(0x03D021E0, Datatype_unsignedLong); +DO_TYPEDEF(0x03D021E8, Datatype_unsignedInt); +DO_TYPEDEF(0x03D021D8, Datatype_unsignedShort); +DO_TYPEDEF(0x03D021F0, Datatype_unsignedByte); +DO_TYPEDEF(0x03D02230, Datatype_positiveInteger); +DO_TYPEDEF(0x03D022F8, Datatype_doubleXdr); +DO_TYPEDEF(0x03D02398, Datatype_floatXdr); +DO_TYPEDEF(0x03D02330, Datatype_QNameXdr); +DO_TYPEDEF(0x03D02408, Datatype_ENUMERATION); +DO_TYPEDEF(0x03D02338, Datatype_char); +DO_TYPEDEF(0x03D023A0, Datatype_fixed); +DO_TYPEDEF(0x03D02208, Datatype_uuid); +DO_TYPEDEF(0x03CB1E28, DtdValidator); +DO_TYPEDEF(0x03D037B0, DtdValidator_NamespaceManager); +DO_TYPEDEF(0x03D03838, FacetsChecker_FacetsCompiler); +DO_TYPEDEF(0x03D03460, FacetsChecker_FacetsCompiler_Map__Array); +DO_TYPEDEF(0x03D03CA0, Numeric10FacetsChecker); +DO_TYPEDEF(0x03D022C8, Numeric2FacetsChecker); +DO_TYPEDEF(0x03D022A0, DurationFacetsChecker); +DO_TYPEDEF(0x03D022A8, DateTimeFacetsChecker); +DO_TYPEDEF(0x03D02268, StringFacetsChecker); +DO_TYPEDEF(0x03D022C0, QNameFacetsChecker); +DO_TYPEDEF(0x03D022D0, MiscFacetsChecker); +DO_TYPEDEF(0x03D02440, BinaryFacetsChecker); +DO_TYPEDEF(0x03D02298, ListFacetsChecker); +DO_TYPEDEF(0x03D02260, UnionFacetsChecker); +DO_TYPEDEF(0x03CAB6F0, NamespaceListV1Compat); +DO_TYPEDEF(0x03D03228, RedefineEntry); +DO_TYPEDEF(0x03CAB798, XmlSchemaExternal); +DO_TYPEDEF(0x03CAF188, XmlSchemaRedefine); +DO_TYPEDEF(0x03CADA98, Preprocessor); DO_TYPEDEF(0x03CA9180, XmlSchemaGroup); DO_TYPEDEF(0x03CA90E8, XmlSchemaGroupBase); DO_TYPEDEF(0x03CA9020, XmlSchemaAll); DO_TYPEDEF(0x03CA9198, XmlSchemaAttributeGroup); DO_TYPEDEF(0x03CA9190, XmlSchemaNotation); +DO_TYPEDEF(0x03CAB9D0, SchemaCollectionCompiler); DO_TYPEDEF(0x03CA90D8, XmlSchemaSubstitutionGroup); +DO_TYPEDEF(0x03D04320, XmlSchemaSubstitutionGroupV1Compat); DO_TYPEDEF(0x03CA9028, XmlSchemaChoice); DO_TYPEDEF(0x03CA9160, XmlSchemaSimpleContentExtension); DO_TYPEDEF(0x03CA9168, XmlSchemaSimpleContentRestriction); @@ -1130,49 +6560,1473 @@ DO_TYPEDEF(0x03CA9140, XmlSchemaComplexContentRestriction); DO_TYPEDEF(0x03CA8FA8, XmlSchemaGroupRef); DO_TYPEDEF(0x03CA8FF0, XmlSchemaSequence); DO_TYPEDEF(0x03CA8FE0, XmlSchemaAny); +DO_TYPEDEF(0x03CAB988, SchemaCollectionPreprocessor); +DO_TYPEDEF(0x03CABD58, IList_1_System_Xml_IDtdDefaultAttributeInfo_); DO_TYPEDEF(0x03CA8E98, SchemaNamespaceManager); +DO_TYPEDEF(0x03CAB978, Compiler); +DO_TYPEDEF(0x03D02610, XdrValidator); +DO_TYPEDEF(0x03CAF198, XmlSchemaAppInfo); DO_TYPEDEF(0x03CA8F00, XmlSchemaAttributeGroupRef); +DO_TYPEDEF(0x03CAB6D0, XmlSchemaCollectionEnumerator); +DO_TYPEDEF(0x03CAB6C0, XmlSchemaCollectionNode); DO_TYPEDEF(0x03CAB440, XmlSchemaDocumentation); +DO_TYPEDEF(0x03CAEF48, XmlSchemaLengthFacet); +DO_TYPEDEF(0x03CAEF38, XmlSchemaMinLengthFacet); +DO_TYPEDEF(0x03CAEF68, XmlSchemaMaxLengthFacet); DO_TYPEDEF(0x03CAB318, XmlSchemaEnumerationFacet); +DO_TYPEDEF(0x03CAEF28, XmlSchemaMinExclusiveFacet); +DO_TYPEDEF(0x03CAEF30, XmlSchemaMinInclusiveFacet); +DO_TYPEDEF(0x03CAEF50, XmlSchemaMaxExclusiveFacet); +DO_TYPEDEF(0x03CAEF58, XmlSchemaMaxInclusiveFacet); +DO_TYPEDEF(0x03CAEF40, XmlSchemaTotalDigitsFacet); +DO_TYPEDEF(0x03CAF040, XmlSchemaFractionDigitsFacet); +DO_TYPEDEF(0x03CAEF18, XmlSchemaWhiteSpaceFacet); +DO_TYPEDEF(0x03CAEF10, XmlSchemaUnique); +DO_TYPEDEF(0x03CAEF08, XmlSchemaKey); DO_TYPEDEF(0x03CA8E70, XmlSchemaKeyref); +DO_TYPEDEF(0x03CAF178, XmlSchemaImport); +DO_TYPEDEF(0x03CAF180, XmlSchemaInclude); DO_TYPEDEF(0x03CAB2B8, XmlSchemaObjectTable_ValuesCollection); +DO_TYPEDEF(0x03CADC88, XmlSchemaObjectTable_XSOEnumerator); DO_TYPEDEF(0x03CAB2B0, XmlSchemaObjectTable_XSODictionaryEnumerator); +DO_TYPEDEF(0x03CADB48, XmlSchemaParticle_EmptyParticle); +DO_TYPEDEF(0x03D026E8, XmlSchema__Array); +DO_TYPEDEF(0x03D1F8A8, DictionaryEntry__Array); DO_TYPEDEF(0x03CA9170, XmlSchemaSimpleContent); DO_TYPEDEF(0x03CA9100, XmlSchemaSimpleTypeList); DO_TYPEDEF(0x03CA9108, XmlSchemaSimpleTypeRestriction); DO_TYPEDEF(0x03CA9070, XmlSchemaSimpleTypeUnion); +DO_TYPEDEF(0x03CAD828, XmlSchemaValidationException); +DO_TYPEDEF(0x03CAF518, XmlNumeric2Converter); +DO_TYPEDEF(0x03CAF510, XmlDateTimeConverter); +DO_TYPEDEF(0x03CAF4C8, XmlBooleanConverter); +DO_TYPEDEF(0x03CAF450, XmlMiscConverter); +DO_TYPEDEF(0x03CAF420, XmlStringConverter); +DO_TYPEDEF(0x03CAF218, XmlListConverter); DO_TYPEDEF(0x03CA4E18, XmlUntypedConverter); +DO_TYPEDEF(0x03CAF2E0, XmlAnyConverter); +DO_TYPEDEF(0x03CAF2D8, XmlAnyListConverter); +DO_TYPEDEF(0x03CAF1F0, XmlUnionConverter); +DO_TYPEDEF(0x03CAF1E8, XmlValueConverter__Array); +DO_TYPEDEF(0x03CAF1D8, XsdBuilder); +DO_TYPEDEF(0x03CAED90, XsdBuilder_State__Enum__Array); +DO_TYPEDEF(0x03CAEE20, XsdBuilder_XsdAttributeEntry); +DO_TYPEDEF(0x03CAEE28, XsdBuilder_XsdBuildFunction); +DO_TYPEDEF(0x03CAEE10, XsdBuilder_XsdAttributeEntry__Array); +DO_TYPEDEF(0x03CAF148, XsdBuilder_XsdEntry); +DO_TYPEDEF(0x03CAE920, XsdBuilder_XsdInitFunction); +DO_TYPEDEF(0x03CAE910, XsdBuilder_XsdEndChildFunction); +DO_TYPEDEF(0x03CAE918, XsdBuilder_XsdEntry__Array); +DO_TYPEDEF(0x03CAF1D0, XsdBuilder_BuilderNamespaceManager); +DO_TYPEDEF(0x03CAD580, XsdDateTime); +DO_TYPEDEF(0x03CB0590, XmlTypeCode__Enum__Array); +DO_TYPEDEF(0x03CB05B8, XsdDateTime_Parser); +DO_TYPEDEF(0x03CB0320, XsdDuration_DurationType__Enum); +DO_TYPEDEF(0x03CB03C8, XsdValidator); +DO_TYPEDEF(0x03CAFFA8, Filter); +DO_TYPEDEF(0x03CB0190, Function); +DO_TYPEDEF(0x03CB01D0, List_1_MS_Internal_Xml_XPath_AstNode_); +DO_TYPEDEF(0x03CB0180, XPathResultType__Enum__Array); +DO_TYPEDEF(0x03CB0038, Group_1); +DO_TYPEDEF(0x03CB0028, Operand); +DO_TYPEDEF(0x03CB00E8, Operator_2); +DO_TYPEDEF(0x03CB0110, Operator_Op__Enum__Array); +DO_TYPEDEF(0x03CB0070, Root); +DO_TYPEDEF(0x03CB0048, Variable); +DO_TYPEDEF(0x03CB00B8, XPathParser); +DO_TYPEDEF(0x03CB00C8, XPathScanner); +DO_TYPEDEF(0x03CAFE18, Dictionary_2_System_String_MS_Internal_Xml_XPath_XPathParser_ParamInfo_); +DO_TYPEDEF(0x03CAFF68, XPathParser_ParamInfo); +DO_TYPEDEF(0x03CAFD18, Dictionary_2_System_String_MS_Internal_Xml_XPath_Axis_AxisType_); +DO_TYPEDEF(0x03CD3E08, TextureRegistry); +DO_TYPEDEF(0x03CE6030, List_1_UnityEngine_UIElements_TextureRegistry_TextureInfo_); DO_TYPEDEF(0x03C9D550, TextureId); +DO_TYPEDEF(0x03CE6048, Dictionary_2_UnityEngine_Texture_UnityEngine_UIElements_TextureId_); +DO_TYPEDEF(0x03CD8408, TextureId__Array); +DO_TYPEDEF(0x03CE6028, Stack_1_UnityEngine_UIElements_TextureId_); +DO_TYPEDEF(0x03CB27A8, CallbackEventHandler); +DO_TYPEDEF(0x03CDE430, Focusable); +DO_TYPEDEF(0x03CD8220, BMPAlloc); +DO_TYPEDEF(0x03CE9E38, PickingMode__Enum); +DO_TYPEDEF(0x03CDC3E8, StylePropertyId__Enum); +DO_TYPEDEF(0x03CD77B0, VisualElement_RenderTargetMode__Enum); +DO_TYPEDEF(0x03CD68F8, VisualElement_Hierarchy); +DO_TYPEDEF(0x03CB0ED0, VisualElement); +DO_TYPEDEF(0x03CB1100, EventCallbackRegistry); +DO_TYPEDEF(0x03CE4238, EventCallbackListPool); +DO_TYPEDEF(0x03CE4300, EventCallbackList); +DO_TYPEDEF(0x03CE4268, Stack_1_UnityEngine_UIElements_EventCallbackList_); +DO_TYPEDEF(0x03CE4290, List_1_UnityEngine_UIElements_EventCallbackFunctorBase_); +DO_TYPEDEF(0x03D0D410, EventBase); +DO_TYPEDEF(0x03CE42D8, PropagationPaths); +DO_TYPEDEF(0x03CE65E8, ObjectPool_1_PropagationPaths_); +DO_TYPEDEF(0x03CD6A58, List_1_UnityEngine_UIElements_VisualElement_); +DO_TYPEDEF(0x03D16C68, VisualElement__Array); +DO_TYPEDEF(0x03CD2670, IEventHandler); +DO_TYPEDEF(0x03CE4318, List_1_UnityEngine_UIElements_IEventHandler_); +DO_TYPEDEF(0x03CD2650, IEventHandler__Array); +DO_TYPEDEF(0x03CB4A78, IPanel); +DO_TYPEDEF(0x03CD6D68, EventBase_1_PointerCaptureOutEvent_); +DO_TYPEDEF(0x03CD2760, FocusController); +DO_TYPEDEF(0x03CD2C90, IFocusRing); +DO_TYPEDEF(0x03CD2D10, List_1_UnityEngine_UIElements_FocusController_FocusedElement_); +DO_TYPEDEF(0x03CD6BE8, List_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object_); +DO_TYPEDEF(0x03CD7898, RenderChainCommand); +DO_TYPEDEF(0x03CD79D0, MeshHandle); +DO_TYPEDEF(0x03CD7C58, Page); +DO_TYPEDEF(0x03CD7930, Page_DataSet_1_UnityEngine_UIElements_Vertex_); DO_TYPEDEF(0x03C95490, GPUBufferAllocator); +DO_TYPEDEF(0x03CD7908, BestFitAllocator); +DO_TYPEDEF(0x03CD7A20, BestFitAllocator_Block); +DO_TYPEDEF(0x03CD79E8, BestFitAllocator_BlockPool); +DO_TYPEDEF(0x03CD78D8, Func_1_UnityEngine_UIElements_UIR_BestFitAllocator_Block_); +DO_TYPEDEF(0x03CD78F8, Action_1_UnityEngine_UIElements_UIR_BestFitAllocator_Block_); +DO_TYPEDEF(0x03CD7928, Page_DataSet_1_System_UInt16_); +DO_TYPEDEF(0x03CD7840, List_1_UnityEngine_UIElements_UIR_RenderChainTextEntry_); +DO_TYPEDEF(0x03CD6DE8, YogaNode); +DO_TYPEDEF(0x03CD27B0, YogaConfig); +DO_TYPEDEF(0x03CEC7B0, List_1_UnityEngine_Yoga_YogaNode_); +DO_TYPEDEF(0x03CD6C18, MeasureFunction); +DO_TYPEDEF(0x03CEB260, Length); +DO_TYPEDEF(0x03CDEAD8, TextShadow); +DO_TYPEDEF(0x03CE5E28, FontDefinition); +DO_TYPEDEF(0x03CEB068, InheritedData); +DO_TYPEDEF(0x03D1EC30, FontAsset); +DO_TYPEDEF(0x03D209B8, FontWeightPair__Array); +DO_TYPEDEF(0x03D20C00, Character); +DO_TYPEDEF(0x03D209A0, List_1_UnityEngine_TextCore_Text_Character_); +DO_TYPEDEF(0x03D20B90, Dictionary_2_System_UInt32_UnityEngine_TextCore_Text_Character_); +DO_TYPEDEF(0x03D20930, FontFeatureTable); +DO_TYPEDEF(0x03D1E158, GlyphValueRecord); +DO_TYPEDEF(0x03D1E160, GlyphAdjustmentRecord); +DO_TYPEDEF(0x03D1E168, GlyphPairAdjustmentRecord); +DO_TYPEDEF(0x03D208E8, List_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_); +DO_TYPEDEF(0x03D20BD0, Dictionary_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_); +DO_TYPEDEF(0x03D20970, List_1_UnityEngine_TextCore_Text_FontAsset_); +DO_TYPEDEF(0x03CBC9D8, List_1_UnityEngine_Texture2D_); +DO_TYPEDEF(0x03CEAEA0, LayoutData); +DO_TYPEDEF(0x03CD3460, Cursor); +DO_TYPEDEF(0x03CEAE98, RareData); +DO_TYPEDEF(0x03CE6078, Angle_2); +DO_TYPEDEF(0x03CEB278, Rotate_1); +DO_TYPEDEF(0x03CEB2B8, Scale); +DO_TYPEDEF(0x03CEAFE8, TransformOrigin); +DO_TYPEDEF(0x03CEB038, Translate_1); +DO_TYPEDEF(0x03CEAE80, TransformData); +DO_TYPEDEF(0x03CEAF10, TransitionData); +DO_TYPEDEF(0x03CEB008, TimeValue); +DO_TYPEDEF(0x03CD9A98, List_1_UnityEngine_UIElements_TimeValue_); +DO_TYPEDEF(0x03CDEB88, StylePropertyName); +DO_TYPEDEF(0x03CB6FF0, List_1_UnityEngine_UIElements_StylePropertyName_); +DO_TYPEDEF(0x03CE5EF8, EasingMode__Enum); +DO_TYPEDEF(0x03CE5F00, EasingFunction); +DO_TYPEDEF(0x03CD9A80, List_1_UnityEngine_UIElements_EasingFunction_); +DO_TYPEDEF(0x03CE5FA8, Background); +DO_TYPEDEF(0x03CEAEE0, VisualData); +DO_TYPEDEF(0x03D128F8, RectInt); +DO_TYPEDEF(0x03CDBEB0, VectorImage); +DO_TYPEDEF(0x03D003B0, StyleValueType__Enum); +DO_TYPEDEF(0x03CE48C0, Dictionary_2_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyValue_); +DO_TYPEDEF(0x03CEAE68, StyleSelectorType__Enum); +DO_TYPEDEF(0x03CB6910, StyleSelector); +DO_TYPEDEF(0x03CB6930, StyleComplexSelector); +DO_TYPEDEF(0x03CDC0E0, Dimension); +DO_TYPEDEF(0x03CD6AA8, StyleSheet); +DO_TYPEDEF(0x03CEAF58, Dictionary_2_System_String_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_); +DO_TYPEDEF(0x03CDE3A0, List_1_UnityEngine_UIElements_StyleSheet_); +DO_TYPEDEF(0x03CEAC60, Dictionary_2_System_String_UnityEngine_UIElements_StyleComplexSelector_); +DO_TYPEDEF(0x03CB8FC0, Func_2_Single_Single_); +DO_TYPEDEF(0x03CE5FE8, ComputedTransitionProperty__Array); +DO_TYPEDEF(0x03CD6D28, StyleVariableContext); +DO_TYPEDEF(0x03CEAA50, List_1_UnityEngine_UIElements_StyleVariable_); +DO_TYPEDEF(0x03CB4BB0, Action_1_UnityEngine_UIElements_MeshGenerationContext_); +DO_TYPEDEF(0x03CDA018, MeshGenerationContext); +DO_TYPEDEF(0x03CD29C0, IStylePainter); +DO_TYPEDEF(0x03CDE350, IValueAnimationUpdate); +DO_TYPEDEF(0x03CD6B48, List_1_UnityEngine_UIElements_Experimental_IValueAnimationUpdate_); +DO_TYPEDEF(0x03D0D418, BaseVisualElementPanel); +DO_TYPEDEF(0x03CD2BB8, Action_1_UnityEngine_UIElements_BaseVisualElementPanel_); +DO_TYPEDEF(0x03CD2768, RepaintData); +DO_TYPEDEF(0x03CD6C50, ICursorManager); +DO_TYPEDEF(0x03D0D3C0, IPointerEvent); +DO_TYPEDEF(0x03D0D398, IMouseEvent); +DO_TYPEDEF(0x03CD27A8, ElementUnderPointer); +DO_TYPEDEF(0x03CE4370, IPointerEvent__Array); +DO_TYPEDEF(0x03CE4368, IMouseEvent__Array); +DO_TYPEDEF(0x03CD2788, HierarchyEvent); +DO_TYPEDEF(0x03CD30C0, EventDispatcher_1); +DO_TYPEDEF(0x03CD35B0, ClickDetector); +DO_TYPEDEF(0x03CD35A0, ClickDetector_ButtonClickStatus); +DO_TYPEDEF(0x03CD3620, List_1_UnityEngine_UIElements_ClickDetector_ButtonClickStatus_); +DO_TYPEDEF(0x03CD2FC0, IEventDispatchingStrategy); +DO_TYPEDEF(0x03CD3130, List_1_UnityEngine_UIElements_IEventDispatchingStrategy_); +DO_TYPEDEF(0x03CD2DD0, IEventDispatchingStrategy__Array); +DO_TYPEDEF(0x03CD2E08, ObjectPool_1_System_Collections_Generic_Queue_1_); +DO_TYPEDEF(0x03CD3110, PointerDispatchState); +DO_TYPEDEF(0x03CD30F8, Stack_1_UnityEngine_UIElements_EventDispatcher_DispatchContext_); +DO_TYPEDEF(0x03CB8FB8, Panel); +DO_TYPEDEF(0x03CD2740, VisualTreeUpdater); +DO_TYPEDEF(0x03D032B0, IVisualTreeUpdater); +DO_TYPEDEF(0x03CDE140, VisualTreeUpdater_UpdaterArray); +DO_TYPEDEF(0x03CDE0F8, IVisualTreeUpdater__Array); +DO_TYPEDEF(0x03CD27A0, IStylePropertyAnimationSystem); +DO_TYPEDEF(0x03CD2790, TimerEventScheduler); +DO_TYPEDEF(0x03CD2640, ScheduledItem); +DO_TYPEDEF(0x03CD6E40, List_1_UnityEngine_UIElements_ScheduledItem_); +DO_TYPEDEF(0x03CD6AA0, VisualElement_TimerStateScheduledItem); +DO_TYPEDEF(0x03CD68F0, VisualElementPanelActivator); +DO_TYPEDEF(0x03CDE458, IVisualElementPanelActivatable); +DO_TYPEDEF(0x03CD2620, TimerState); +DO_TYPEDEF(0x03CB4898, IVisualElementScheduledItem); +DO_TYPEDEF(0x03CD38D8, Action_1_UnityEngine_UIElements_TimerState_); +DO_TYPEDEF(0x03CD6E50, HashSet_1_UnityEngine_UIElements_ScheduledItem_); +DO_TYPEDEF(0x03CD6CE8, ISerializableJsonDictionary); +DO_TYPEDEF(0x03CD2D90, IMGUIContainer); +DO_TYPEDEF(0x03CD2AF8, ObjectGUIState); +DO_TYPEDEF(0x03D13F20, GUILayoutUtility_LayoutCache); +DO_TYPEDEF(0x03D13ED8, GUILayoutEntry); +DO_TYPEDEF(0x03D140E0, GUILayoutGroup); +DO_TYPEDEF(0x03D14048, GUILayoutOption); +DO_TYPEDEF(0x03D12360, GUILayoutOption__Array); +DO_TYPEDEF(0x03D13B98, List_1_UnityEngine_GUILayoutEntry_); +DO_TYPEDEF(0x03D143C0, GenericStack); +DO_TYPEDEF(0x03CEF1F8, FocusChangeDirection); +DO_TYPEDEF(0x03CDE1D8, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_); +DO_TYPEDEF(0x03D16C78, StylePropertyId__Enum__Array); +DO_TYPEDEF(0x03CD6AD0, ValueAnimation_1_StyleValues_); +DO_TYPEDEF(0x03CD6AF0, Action_2_UnityEngine_UIElements_VisualElement_UnityEngine_UIElements_Experimental_StyleValues_); +DO_TYPEDEF(0x03CDB3D8, StyleValueCollection); +DO_TYPEDEF(0x03D00280, StyleKeyword__Enum); +DO_TYPEDEF(0x03CE5E68, List_1_UnityEngine_UIElements_StyleSheets_StyleValue_); +DO_TYPEDEF(0x03CD6B40, Func_2_UnityEngine_UIElements_VisualElement_UnityEngine_UIElements_Experimental_StyleValues_); +DO_TYPEDEF(0x03CD6AF8, Func_4_UnityEngine_UIElements_Experimental_StyleValues_UnityEngine_UIElements_Experimental_StyleValues_Single_UnityEngine_UIElements_Experimental_StyleValues_); +DO_TYPEDEF(0x03CE43E0, ITransitionAnimations); +DO_TYPEDEF(0x03CEB1D8, StyleFloat); +DO_TYPEDEF(0x03CD2798, IScheduler); +DO_TYPEDEF(0x03CE97F8, VisualTreeAsset); +DO_TYPEDEF(0x03CE95C0, Dictionary_2_System_String_UnityEngine_UIElements_VisualElement_); +DO_TYPEDEF(0x03CE97B0, VisualTreeAsset_UsingEntry); +DO_TYPEDEF(0x03CE9908, List_1_UnityEngine_UIElements_VisualElementAsset_); +DO_TYPEDEF(0x03CDEBC8, TemplateAsset); +DO_TYPEDEF(0x03CDEB98, List_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_); +DO_TYPEDEF(0x03CD6A28, VisualElement_CustomStyleAccess); +DO_TYPEDEF(0x03CEB190, StyleCursor); +DO_TYPEDEF(0x03CEB0C8, StyleTextShadow); +DO_TYPEDEF(0x03CEB120, StyleTransformOrigin); +DO_TYPEDEF(0x03CEB078, StyleTranslate); +DO_TYPEDEF(0x03CEB230, StyleRotate); +DO_TYPEDEF(0x03CEB0B0, StyleScale); +DO_TYPEDEF(0x03CD6C60, InlineStyleAccess); +DO_TYPEDEF(0x03CDBF00, StylePropertyReader); +DO_TYPEDEF(0x03CDBEE8, List_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_); +DO_TYPEDEF(0x03CDBED8, StyleVariableResolver); +DO_TYPEDEF(0x03CEA710, StyleSyntaxParser); +DO_TYPEDEF(0x03CDB658, DataType__Enum); +DO_TYPEDEF(0x03CDB5E0, Expression); +DO_TYPEDEF(0x03CDB4F8, List_1_UnityEngine_UIElements_StyleSheets_Syntax_Expression_); +DO_TYPEDEF(0x03CDB618, Expression__Array); +DO_TYPEDEF(0x03CDB558, Stack_1_UnityEngine_UIElements_StyleSheets_Syntax_Expression_); +DO_TYPEDEF(0x03CDB548, Stack_1_UnityEngine_UIElements_StyleSheets_Syntax_ExpressionCombinator_); +DO_TYPEDEF(0x03CDB510, Dictionary_2_System_String_UnityEngine_UIElements_StyleSheets_Syntax_Expression_); +DO_TYPEDEF(0x03CDB7F8, BaseStyleMatcher); +DO_TYPEDEF(0x03CEA718, StylePropertyValueMatcher); +DO_TYPEDEF(0x03CDB820, Stack_1_UnityEngine_UIElements_StyleSheets_BaseStyleMatcher_MatchContext_); +DO_TYPEDEF(0x03CBD310, Stack_1_System_String_); +DO_TYPEDEF(0x03CEA728, Stack_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext_); +DO_TYPEDEF(0x03CEB2A8, StyleColor); +DO_TYPEDEF(0x03CEB1E8, StyleLength); +DO_TYPEDEF(0x03CD6A18, Dictionary_2_System_Type_UnityEngine_UIElements_VisualElement_TypeData_); +DO_TYPEDEF(0x03CD6A70, VisualElement_TypeData); +DO_TYPEDEF(0x03CD2778, DynamicAtlas); +DO_TYPEDEF(0x03CD3CE8, Dictionary_2_UnityEngine_Texture_UnityEngine_UIElements_DynamicAtlas_TextureInfo_); +DO_TYPEDEF(0x03CD3EB8, DynamicAtlas_TextureInfo); +DO_TYPEDEF(0x03CD3EA8, DynamicAtlasPage); +DO_TYPEDEF(0x03CE9410, Allocator2D_Row); +DO_TYPEDEF(0x03CE63F8, Allocator2D); +DO_TYPEDEF(0x03CE9468, Allocator2D_Area); +DO_TYPEDEF(0x03CEB798, LinkedPool_1_Allocator2D_Row_); +DO_TYPEDEF(0x03CEB7A8, Func_1_UnityEngine_UIElements_UIR_Allocator2D_Row_); +DO_TYPEDEF(0x03CEB7B8, Action_1_UnityEngine_UIElements_UIR_Allocator2D_Row_); +DO_TYPEDEF(0x03CE9498, Allocator2D_Row__Array); +DO_TYPEDEF(0x03CE9440, List_1_UnityEngine_UIElements_UIR_Allocator2D_Area_); +DO_TYPEDEF(0x03CD8768, TextureBlitter); +DO_TYPEDEF(0x03CD8558, TextureBlitter_BlitInfo__Array); +DO_TYPEDEF(0x03CD8540, List_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_); +DO_TYPEDEF(0x03CD3D68, LinkedPool_1_UnityEngine_UIElements_DynamicAtlas_TextureInfo_); +DO_TYPEDEF(0x03CD3D98, Func_1_UnityEngine_UIElements_DynamicAtlas_TextureInfo_); +DO_TYPEDEF(0x03CD3DB8, Action_1_UnityEngine_UIElements_DynamicAtlas_TextureInfo_); +DO_TYPEDEF(0x03CD3D48, List_1_UnityEngine_UIElements_IPanel_); +DO_TYPEDEF(0x03CE3F28, IPanel__Array); DO_TYPEDEF(0x03C8F538, TextureFormat__Enum); +DO_TYPEDEF(0x03CDE090, IBinding); +DO_TYPEDEF(0x03CE9D28, BindableElement_UxmlFactory); +DO_TYPEDEF(0x03CEA1A8, IUxmlAttributes); +DO_TYPEDEF(0x03CDEBA0, CreationContext); +DO_TYPEDEF(0x03CB9040, UxmlStringAttributeDescription); +DO_TYPEDEF(0x03CD6990, UxmlEnumAttributeDescription_1_PickingMode_); +DO_TYPEDEF(0x03CD69A8, UxmlEnumAttributeDescription_1_UsageHints_); +DO_TYPEDEF(0x03CB9018, UxmlIntAttributeDescription); +DO_TYPEDEF(0x03CB9000, UxmlBoolAttributeDescription); +DO_TYPEDEF(0x03D14560, EventModifiers__Enum); +DO_TYPEDEF(0x03CD27B8, ManipulatorActivationFilter); +DO_TYPEDEF(0x03CE0768, Clickable); +DO_TYPEDEF(0x03CD27D0, List_1_UnityEngine_UIElements_ManipulatorActivationFilter_); +DO_TYPEDEF(0x03CE0760, Action_1_UnityEngine_UIElements_EventBase_); +DO_TYPEDEF(0x03CD28B8, EventBase_1_MouseDownEvent_); +DO_TYPEDEF(0x03CE0440, MouseDownEvent); +DO_TYPEDEF(0x03CD2948, EventBase_1_MouseMoveEvent_); +DO_TYPEDEF(0x03CE0248, MouseMoveEvent); +DO_TYPEDEF(0x03CD2938, EventBase_1_MouseUpEvent_); +DO_TYPEDEF(0x03CE0250, MouseUpEvent); +DO_TYPEDEF(0x03CE41E8, EventBase_1_MouseCaptureOutEvent_); +DO_TYPEDEF(0x03CB0ED8, EventBase_1_PointerDownEvent_); +DO_TYPEDEF(0x03CD2A78, PointerDownEvent); +DO_TYPEDEF(0x03CD0188, EventBase_1_PointerMoveEvent_); +DO_TYPEDEF(0x03CD01A8, PointerMoveEvent); +DO_TYPEDEF(0x03CB0F08, EventBase_1_PointerUpEvent_); +DO_TYPEDEF(0x03CB0EC0, PointerUpEvent); +DO_TYPEDEF(0x03CD3670, EventBase_1_PointerCancelEvent_); +DO_TYPEDEF(0x03CD2770, CursorManager); +DO_TYPEDEF(0x03CD3568, DefaultEventSystem); +DO_TYPEDEF(0x03CD3500, DefaultEventSystem_IInput); +DO_TYPEDEF(0x03CB0F40, BaseRuntimePanel); +DO_TYPEDEF(0x03CD26D8, Func_2_UnityEngine_Vector2_UnityEngine_Vector2_); +DO_TYPEDEF(0x03CD3508, DefaultEventSystem_Input); +DO_TYPEDEF(0x03CD34D8, DefaultEventSystem_NoInput); +DO_TYPEDEF(0x03CD32F8, DefaultEventSystem_c); +DO_TYPEDEF(0x03CD3578, Func_2_UnityEngine_UIElements_DefaultEventSystem_UnityEngine_UIElements_EventBase_); +DO_TYPEDEF(0x03CD3540, Func_4_UnityEngine_Vector3_UnityEngine_Vector3_UnityEngine_UIElements_DefaultEventSystem_UnityEngine_UIElements_EventBase_); +DO_TYPEDEF(0x03CD33E0, Func_4_UnityEngine_Vector3_UnityEngine_Vector3_UnityEngine_Touch_UnityEngine_UIElements_EventBase_); +DO_TYPEDEF(0x03CD2FF8, DropdownMenuEventInfo); +DO_TYPEDEF(0x03CD3258, DropdownMenuSeparator); +DO_TYPEDEF(0x03CD3290, DropdownMenuAction); +DO_TYPEDEF(0x03CB4990, Action_1_UnityEngine_UIElements_DropdownMenuAction_); +DO_TYPEDEF(0x03CB49A8, Func_2_UnityEngine_UIElements_DropdownMenuAction_UnityEngine_UIElements_DropdownMenuAction_Status_); +DO_TYPEDEF(0x03CE04F0, IGenericMenu); +DO_TYPEDEF(0x03CD30D0, EventDispatcherGate); +DO_TYPEDEF(0x03CD2960, EventBase_1_AttachToPanelEvent_); +DO_TYPEDEF(0x03CDEB50, AttachToPanelEvent); +DO_TYPEDEF(0x03CD29A8, EventBase_1_DetachFromPanelEvent_); +DO_TYPEDEF(0x03CDEB58, DetachFromPanelEvent); +DO_TYPEDEF(0x03CB2838, IGroupManager); +DO_TYPEDEF(0x03CD2B50, IGroupBox); +DO_TYPEDEF(0x03CD2BA0, DefaultGroupManager); +DO_TYPEDEF(0x03CD2B48, IGroupBoxOption); +DO_TYPEDEF(0x03CD2AC8, List_1_UnityEngine_UIElements_IGroupBoxOption_); +DO_TYPEDEF(0x03CE9A80, IMGUIContainer_UxmlFactory); +DO_TYPEDEF(0x03CEB590, ImmediateModeException); +DO_TYPEDEF(0x03CE0688, KeyboardNavigationManipulator); +DO_TYPEDEF(0x03CE0670, Action_2_UnityEngine_UIElements_KeyboardNavigationOperation_UnityEngine_UIElements_EventBase_); +DO_TYPEDEF(0x03CB4958, EventBase_1_KeyDownEvent_); +DO_TYPEDEF(0x03CB48B0, KeyDownEvent); +DO_TYPEDEF(0x03CD31B8, EventBase_1_NavigationCancelEvent_); +DO_TYPEDEF(0x03CD31F0, EventBase_1_NavigationSubmitEvent_); +DO_TYPEDEF(0x03CE17A8, EventBase_1_NavigationMoveEvent_); +DO_TYPEDEF(0x03CE6558, NavigationMoveEvent); +DO_TYPEDEF(0x03CD26D0, BaseRuntimePanel_c); +DO_TYPEDEF(0x03CD2630, ScheduledItem_c); +DO_TYPEDEF(0x03CC0DE8, IStylePropertyAnimations); +DO_TYPEDEF(0x03CCCC98, ITransform_1); +DO_TYPEDEF(0x03CD6D80, EventBase_1_TooltipEvent_); +DO_TYPEDEF(0x03CD6CA0, TooltipEvent); +DO_TYPEDEF(0x03CD6B60, VisualElementAnimationSystem); +DO_TYPEDEF(0x03CDE370, HashSet_1_UnityEngine_UIElements_Experimental_IValueAnimationUpdate_); +DO_TYPEDEF(0x03CE43F8, IExperimentalFeatures); +DO_TYPEDEF(0x03CB48C0, IVisualElementScheduler); +DO_TYPEDEF(0x03CC4338, IStyle); +DO_TYPEDEF(0x03CB4A60, ICustomStyle); +DO_TYPEDEF(0x03CDE3B8, VisualElementStyleSheetSet); +DO_TYPEDEF(0x03CB4A30, IResolvedStyle); +DO_TYPEDEF(0x03CE9A08, VisualElement_UxmlFactory); +DO_TYPEDEF(0x03CD6A98, VisualElement_SimpleScheduledItem); +DO_TYPEDEF(0x03CD6B38, VisualElement_c_DisplayClass314_0); +DO_TYPEDEF(0x03CD2750, StylePropertyAnimationSystem); +DO_TYPEDEF(0x03CB6F18, ObjectPool_1_System_Collections_Generic_Queue_1__1); +DO_TYPEDEF(0x03D1D520, Queue_1_UnityEngine_UIElements_EventBase_); +DO_TYPEDEF(0x03CB6F10, Func_1_System_Collections_Generic_Queue_1_); +DO_TYPEDEF(0x03CB6EE8, StylePropertyAnimationSystem_ElementPropertyPair); +DO_TYPEDEF(0x03CB6EF8, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_UnityEngine_UIElements_StylePropertyAnimationSystem_TransitionState_); +DO_TYPEDEF(0x03CB6F50, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_Queue_1_UnityEngine_UIElements_EventBase_); +DO_TYPEDEF(0x03D16C88, Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_); +DO_TYPEDEF(0x03CD6780, Func_3_Single_Single_Boolean_); +DO_TYPEDEF(0x03CDEC48, Func_3_Int32_Int32_Boolean_); +DO_TYPEDEF(0x03CDEC68, Func_3_UnityEngine_UIElements_Length_UnityEngine_UIElements_Length_Boolean_); +DO_TYPEDEF(0x03CDEC50, Func_3_UnityEngine_Color_UnityEngine_Color_Boolean_); +DO_TYPEDEF(0x03CDEBE8, Func_3_UnityEngine_UIElements_TextShadow_UnityEngine_UIElements_TextShadow_Boolean_); +DO_TYPEDEF(0x03CDEBF8, Func_3_UnityEngine_UIElements_Scale_UnityEngine_UIElements_Scale_Boolean_); +DO_TYPEDEF(0x03CDEC10, Func_3_UnityEngine_UIElements_Rotate_UnityEngine_UIElements_Rotate_Boolean_); +DO_TYPEDEF(0x03CDEC30, Func_3_UnityEngine_UIElements_Translate_UnityEngine_UIElements_Translate_Boolean_); +DO_TYPEDEF(0x03CDEB78, Func_3_UnityEngine_UIElements_TransformOrigin_UnityEngine_UIElements_TransformOrigin_Boolean_); +DO_TYPEDEF(0x03CD6820, List_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_); +DO_TYPEDEF(0x03CD6828, Dictionary_2_UnityEngine_UIElements_StyleSheets_StylePropertyId_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_); +DO_TYPEDEF(0x03CD6790, StylePropertyAnimationSystem_ElementPropertyPair_EqualityComparer); +DO_TYPEDEF(0x03CDEBD0, TemplateContainer); +DO_TYPEDEF(0x03CE99C0, TemplateContainer_UxmlFactory); +DO_TYPEDEF(0x03CDEB38, TextElement_1); +DO_TYPEDEF(0x03CB4A28, ITextHandle); +DO_TYPEDEF(0x03CCCC80, EventBase_1_GeometryChangedEvent_); +DO_TYPEDEF(0x03CCCC78, GeometryChangedEvent); +DO_TYPEDEF(0x03CE9A10, TextElement_UxmlFactory); +DO_TYPEDEF(0x03CDEAF0, Action_1_UnityEngine_UIElements_BaseRuntimePanel_); +DO_TYPEDEF(0x03CE64C0, UIElementsRuntimeUtility_CreateRuntimePanelDelegate); +DO_TYPEDEF(0x03CE64E0, PanelSettings); +DO_TYPEDEF(0x03CE6508, PanelSettings_RuntimePanelAccess); +DO_TYPEDEF(0x03CE64B8, UIDocumentList); +DO_TYPEDEF(0x03CE64A0, UIDocument); +DO_TYPEDEF(0x03CE6488, List_1_UnityEngine_UIElements_UIDocument_); +DO_TYPEDEF(0x03CE6538, DynamicAtlasSettings); +DO_TYPEDEF(0x03CEA748, PanelTextSettings); +DO_TYPEDEF(0x03D1E3B0, SpriteAsset); +DO_TYPEDEF(0x03D1E3A0, SpriteCharacter); +DO_TYPEDEF(0x03D20520, List_1_UnityEngine_TextCore_Text_SpriteCharacter_); +DO_TYPEDEF(0x03D20638, Dictionary_2_System_UInt32_UnityEngine_TextCore_Text_SpriteCharacter_); +DO_TYPEDEF(0x03D20530, List_1_UnityEngine_TextCore_Text_SpriteGlyph_); +DO_TYPEDEF(0x03D20630, Dictionary_2_System_UInt32_UnityEngine_TextCore_Text_SpriteGlyph_); +DO_TYPEDEF(0x03D20EF0, List_1_UnityEngine_TextCore_Text_TextStyle_); +DO_TYPEDEF(0x03D20EC8, Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextStyle_); +DO_TYPEDEF(0x03D20FE8, UnicodeLineBreakingRules); +DO_TYPEDEF(0x03D206C0, Dictionary_2_System_Int32_UnityEngine_TextCore_Text_FontAsset_); +DO_TYPEDEF(0x03D21010, List_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_); +DO_TYPEDEF(0x03CDEB10, List_1_UnityEngine_UIElements_Panel_); +DO_TYPEDEF(0x03CDEA88, UIElementsRuntimeUtility_c); +DO_TYPEDEF(0x03CDE9A8, Comparison_1_UnityEngine_UIElements_Panel_); +DO_TYPEDEF(0x03CDE948, IUIElementsUtility); +DO_TYPEDEF(0x03CDE870, UIEventRegistration_c); +DO_TYPEDEF(0x03CB49E8, UIElementsUtility); +DO_TYPEDEF(0x03CDE640, Stack_1_UnityEngine_UIElements_IMGUIContainer_); +DO_TYPEDEF(0x03CDE660, Dictionary_2_System_Int32_UnityEngine_UIElements_Panel_); +DO_TYPEDEF(0x03D1F248, EventType__Enum); +DO_TYPEDEF(0x03CB6978, List_1_UnityEngine_UIElements_RuleMatcher_); +DO_TYPEDEF(0x03CDE670, UQuery_UQueryMatcher_c); +DO_TYPEDEF(0x03CDE6A8, Action_2_UnityEngine_UIElements_VisualElement_UnityEngine_UIElements_StyleSheets_MatchResultInfo_); +DO_TYPEDEF(0x03CB68C0, UQuery_FirstQueryMatcher); +DO_TYPEDEF(0x03CDE570, IManipulator); +DO_TYPEDEF(0x03CD29D8, VisualElementFocusChangeDirection); +DO_TYPEDEF(0x03CDE498, VisualElementFocusChangeTarget); +DO_TYPEDEF(0x03CDE4B0, ObjectPool_1_VisualElementFocusChangeTarget_); +DO_TYPEDEF(0x03CD2758, VisualElementFocusRing); +DO_TYPEDEF(0x03CDE3F0, VisualElementFocusRing_FocusRingRecord); +DO_TYPEDEF(0x03CDE4C0, List_1_UnityEngine_UIElements_VisualElementFocusRing_FocusRingRecord_); +DO_TYPEDEF(0x03CDE118, VisualTreeBindingsUpdater); +DO_TYPEDEF(0x03CDE290, HashSet_1_UnityEngine_UIElements_VisualElement_); +DO_TYPEDEF(0x03CDE068, List_1_UnityEngine_UIElements_IBinding_); +DO_TYPEDEF(0x03CDE2F0, VisualTreeStyleUpdater); +DO_TYPEDEF(0x03CDE298, VisualTreeStyleUpdaterTraversal); +DO_TYPEDEF(0x03CDE1C0, List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_); +DO_TYPEDEF(0x03CDE1C8, StyleMatchingContext); +DO_TYPEDEF(0x03CDE188, VisualTreeStyleUpdaterTraversal_c); +DO_TYPEDEF(0x03CDE1B0, Comparison_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_); +DO_TYPEDEF(0x03CDE128, VisualTreeTransformClipUpdater); +DO_TYPEDEF(0x03CDE100, VisualTreeViewDataUpdater); +DO_TYPEDEF(0x03CE06D8, CollectionViewController); +DO_TYPEDEF(0x03CACD88, CollectionVirtualizationMethod__Enum); +DO_TYPEDEF(0x03CC4318, BaseVerticalCollectionView); +DO_TYPEDEF(0x03CE0750, Action_1_System_Collections_Generic_IEnumerable_1_); +DO_TYPEDEF(0x03CDE008, Action_1_System_Collections_Generic_IEnumerable_1__1); +DO_TYPEDEF(0x03CE1668, Func_1_UnityEngine_UIElements_VisualElement_); +DO_TYPEDEF(0x03CE1680, Action_2_UnityEngine_UIElements_VisualElement_Int32_); +DO_TYPEDEF(0x03CE0710, SerializedVirtualizationData); +DO_TYPEDEF(0x03CE05A8, List_1_UnityEngine_UIElements_ReusableCollectionItem_); +DO_TYPEDEF(0x03CB04F8, Action_1_UnityEngine_UIElements_ReusableCollectionItem_); +DO_TYPEDEF(0x03CB4880, EventCallback_1_GeometryChangedEvent_); +DO_TYPEDEF(0x03CC4310, IEnumerator_1_UnityEngine_UIElements_ReusableCollectionItem_); +DO_TYPEDEF(0x03CE0728, ScrollView); +DO_TYPEDEF(0x03CE1FC0, Scroller); +DO_TYPEDEF(0x03CE1B58, BaseSlider_1_System_Single_); +DO_TYPEDEF(0x03CE2000, Slider_1); +DO_TYPEDEF(0x03CCD160, Label); +DO_TYPEDEF(0x03CE04C8, BaseField_1_System_String_); +DO_TYPEDEF(0x03CB4B68, TextInputBaseField_1_System_String_); +DO_TYPEDEF(0x03CCCC68, TextField); +DO_TYPEDEF(0x03D14E00, TextEditor); +DO_TYPEDEF(0x03CB4B48, TextEditorEngine); +DO_TYPEDEF(0x03D14CE8, TextEditor_TextEditOp__Enum); +DO_TYPEDEF(0x03D14D48, Dictionary_2_UnityEngine_Event_UnityEngine_TextEditor_TextEditOp_); +DO_TYPEDEF(0x03CB4BC0, TextEditorEngine_OnDetectFocusChangeFunction); +DO_TYPEDEF(0x03CB4B58, TextEditorEngine_OnIndexChangeFunction); +DO_TYPEDEF(0x03CE0198, ITextInputField); +DO_TYPEDEF(0x03CB48A0, EventBase_1_ContextualMenuPopulateEvent_); +DO_TYPEDEF(0x03CB4910, ContextualMenuPopulateEvent); +DO_TYPEDEF(0x03CDFE50, ClampedDragger_1_System_Single_); +DO_TYPEDEF(0x03CE2188, RepeatButton); +DO_TYPEDEF(0x03CD3938, EventCallback_1_PointerMoveEvent_); +DO_TYPEDEF(0x03CD39F0, EventCallback_1_PointerUpEvent_); +DO_TYPEDEF(0x03CE44F0, DragAndDropPosition__Enum); +DO_TYPEDEF(0x03CE4540, ListViewDragger_DragPosition); +DO_TYPEDEF(0x03CE06D0, ListViewDragger); +DO_TYPEDEF(0x03CDE3D8, ListView); +DO_TYPEDEF(0x03CD2AE8, Foldout); +DO_TYPEDEF(0x03CE0780, BaseField_1_System_Boolean_); +DO_TYPEDEF(0x03CE03F0, Toggle_1); +DO_TYPEDEF(0x03CE0518, Button_1); +DO_TYPEDEF(0x03CE00B0, ListViewController); +DO_TYPEDEF(0x03CDC3D0, TreeViewController); +DO_TYPEDEF(0x03CDC3F0, TreeView); +DO_TYPEDEF(0x03CDE010, ReusableListViewItem); +DO_TYPEDEF(0x03CC4328, IEnumerable_1_UnityEngine_UIElements_ReusableCollectionItem_); +DO_TYPEDEF(0x03CDE210, EventBase_1_CustomStyleResolvedEvent_); +DO_TYPEDEF(0x03CE0628, BaseVerticalCollectionView_c_DisplayClass146_0); +DO_TYPEDEF(0x03CE05F8, Box); +DO_TYPEDEF(0x03CE9A30, Box_UxmlFactory); +DO_TYPEDEF(0x03CE9D38, Button_UxmlFactory); +DO_TYPEDEF(0x03CE0558, BaseField_1_System_Int32_); +DO_TYPEDEF(0x03CE0550, List_1_UnityEngine_UIElements_Button_); +DO_TYPEDEF(0x03CE9C10, ButtonStripField_UxmlFactory); +DO_TYPEDEF(0x03CE0500, DropdownField); +DO_TYPEDEF(0x03CE9CD8, DropdownField_UxmlFactory); +DO_TYPEDEF(0x03CE0508, DropdownField_PopupTextElement); +DO_TYPEDEF(0x03CE04E0, DropdownField_c_DisplayClass38_0); +DO_TYPEDEF(0x03CE99B0, Foldout_UxmlFactory); +DO_TYPEDEF(0x03CD3068, GenericDropdownMenu); +DO_TYPEDEF(0x03CE0348, GenericDropdownMenu_MenuItem); +DO_TYPEDEF(0x03CE0378, List_1_UnityEngine_UIElements_GenericDropdownMenu_MenuItem_); +DO_TYPEDEF(0x03CB4950, EventBase_1_FocusOutEvent_); +DO_TYPEDEF(0x03CE02F0, GroupBox); +DO_TYPEDEF(0x03CE9C28, GroupBox_UxmlFactory); +DO_TYPEDEF(0x03CE0308, HelpBox); +DO_TYPEDEF(0x03CE99E8, HelpBox_UxmlFactory); +DO_TYPEDEF(0x03CE02C0, UxmlEnumAttributeDescription_1_HelpBoxMessageType_); +DO_TYPEDEF(0x03CE02A8, Image_1); +DO_TYPEDEF(0x03CE99A8, Image_UxmlFactory); +DO_TYPEDEF(0x03CB4B28, KeyboardTextEditorEventHandler); +DO_TYPEDEF(0x03CB47C0, EventBase_1_FocusEvent_); +DO_TYPEDEF(0x03CD2998, FocusEvent); +DO_TYPEDEF(0x03CB47A0, EventBase_1_BlurEvent_); +DO_TYPEDEF(0x03CE0580, BlurEvent); +DO_TYPEDEF(0x03CE0258, EventBase_1_ValidateCommandEvent_); +DO_TYPEDEF(0x03CE0240, ValidateCommandEvent); +DO_TYPEDEF(0x03CE0230, EventBase_1_ExecuteCommandEvent_); +DO_TYPEDEF(0x03CE0260, ExecuteCommandEvent); +DO_TYPEDEF(0x03CE9CF0, Label_UxmlFactory); +DO_TYPEDEF(0x03CE99C8, ListView_UxmlFactory); +DO_TYPEDEF(0x03CE0018, UxmlEnumAttributeDescription_1_CollectionVirtualizationMethod_); +DO_TYPEDEF(0x03CE0028, UxmlEnumAttributeDescription_1_SelectionType_); +DO_TYPEDEF(0x03CE0020, UxmlEnumAttributeDescription_1_AlternatingRowBackground_); +DO_TYPEDEF(0x03CE0030, UxmlEnumAttributeDescription_1_ListViewReorderMode_); +DO_TYPEDEF(0x03CDFE68, BaseField_1_UnityEngine_Vector2_); +DO_TYPEDEF(0x03CDFE90, MinMaxSlider); +DO_TYPEDEF(0x03CE99F8, MinMaxSlider_UxmlFactory); +DO_TYPEDEF(0x03CE2320, UxmlFloatAttributeDescription); +DO_TYPEDEF(0x03CE2348, PopupWindow); +DO_TYPEDEF(0x03CE9CB0, PopupWindow_UxmlFactory); +DO_TYPEDEF(0x03CE23E0, AbstractProgressBar); +DO_TYPEDEF(0x03CE99D8, ProgressBar_UxmlFactory); +DO_TYPEDEF(0x03CE21C0, RadioButton); +DO_TYPEDEF(0x03CE9D08, RadioButton_UxmlFactory); +DO_TYPEDEF(0x03CE2118, RadioButtonGroup); +DO_TYPEDEF(0x03CE2120, List_1_UnityEngine_UIElements_RadioButton_); +DO_TYPEDEF(0x03CE0408, EventCallback_1_ChangeEvent_1_System_Boolean_); +DO_TYPEDEF(0x03CE9988, RadioButtonGroup_UxmlFactory); +DO_TYPEDEF(0x03CE99E0, RepeatButton_UxmlFactory); +DO_TYPEDEF(0x03CE20B0, UxmlLongAttributeDescription); +DO_TYPEDEF(0x03CE99B8, Scroller_UxmlFactory); +DO_TYPEDEF(0x03CE1F30, UxmlEnumAttributeDescription_1_SliderDirection_); +DO_TYPEDEF(0x03CD6DA0, EventBase_1_PointerCaptureEvent_); +DO_TYPEDEF(0x03CE4360, EventBase_1_WheelEvent_); +DO_TYPEDEF(0x03CE99A0, ScrollView_UxmlFactory); +DO_TYPEDEF(0x03CE1AC8, UxmlEnumAttributeDescription_1_ScrollViewMode_); +DO_TYPEDEF(0x03CE1AD0, UxmlEnumAttributeDescription_1_ScrollView_NestedInteractionKind_); +DO_TYPEDEF(0x03CE1AB8, UxmlEnumAttributeDescription_1_ScrollerVisibility_); +DO_TYPEDEF(0x03CE1AF8, UxmlEnumAttributeDescription_1_ScrollView_TouchScrollBehavior_); +DO_TYPEDEF(0x03CE9998, Slider_UxmlFactory); +DO_TYPEDEF(0x03CE1A00, BaseSlider_1_System_Int32_); +DO_TYPEDEF(0x03CE1A10, SliderInt); +DO_TYPEDEF(0x03CE9CC8, SliderInt_UxmlFactory); +DO_TYPEDEF(0x03CE17E8, TextField_TextInput); +DO_TYPEDEF(0x03CE9C00, TextField_UxmlFactory); +DO_TYPEDEF(0x03CE9D18, Toggle_UxmlFactory); +DO_TYPEDEF(0x03CB4B40, TouchScreenTextEditorEventHandler); +DO_TYPEDEF(0x03CE1500, TreeView_1); +DO_TYPEDEF(0x03CE1590, IEnumerable_1_UnityEngine_UIElements_ITreeViewItem_); +DO_TYPEDEF(0x03CE1570, ITreeViewItem); +DO_TYPEDEF(0x03CE1548, List_1_UnityEngine_UIElements_ITreeViewItem_); +DO_TYPEDEF(0x03CE1560, IEnumerator_1_UnityEngine_UIElements_ITreeViewItem_); +DO_TYPEDEF(0x03CE1528, TreeView_TreeViewItemWrapper); +DO_TYPEDEF(0x03CE1718, List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_); +DO_TYPEDEF(0x03CE9C40, TreeView_UxmlFactory); +DO_TYPEDEF(0x03CE14E0, TreeView_GetAllItems_d_64); +DO_TYPEDEF(0x03CE13C8, Stack_1_IEnumerator_1_UnityEngine_UIElements_ITreeViewItem_); +DO_TYPEDEF(0x03CE13E8, TwoPaneSplitView); +DO_TYPEDEF(0x03CE12B8, TwoPaneSplitViewResizer); +DO_TYPEDEF(0x03CE9C70, TwoPaneSplitView_UxmlFactory); +DO_TYPEDEF(0x03CE1358, UxmlEnumAttributeDescription_1_TwoPaneSplitViewOrientation_); +DO_TYPEDEF(0x03CE46A0, InternalTreeView); +DO_TYPEDEF(0x03CE4650, InternalTreeView_TreeViewItemWrapper); +DO_TYPEDEF(0x03CE46E8, List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_); +DO_TYPEDEF(0x03CE9A20, InternalTreeView_UxmlFactory); +DO_TYPEDEF(0x03CE46D8, InternalTreeView_GetAllItems_d_64); +DO_TYPEDEF(0x03CE4470, IListDragAndDropArgs); +DO_TYPEDEF(0x03CE00B8, ListViewReorderableDragAndDropController); +DO_TYPEDEF(0x03CE4548, IDragAndDrop); +DO_TYPEDEF(0x03CE4628, DefaultDragAndDropClient); +DO_TYPEDEF(0x03CD6D88, EventBase_1_PointerLeaveEvent_); +DO_TYPEDEF(0x03CD2A68, PointerLeaveEvent); +DO_TYPEDEF(0x03CE4580, DragAndDropArgs); +DO_TYPEDEF(0x03CE4480, IDragAndDropData); +DO_TYPEDEF(0x03CC4308, ListViewDraggerAnimated); +DO_TYPEDEF(0x03CDC400, TreeViewReorderableDragAndDropController); +DO_TYPEDEF(0x03CE4468, TreeViewReorderableDragAndDropController_DropData); +DO_TYPEDEF(0x03CD2DE8, CommandEventDispatchingStrategy); +DO_TYPEDEF(0x03CD2DF0, DefaultDispatchingStrategy); +DO_TYPEDEF(0x03CB4930, EventBase_1_FocusInEvent_); +DO_TYPEDEF(0x03CD2DE0, IMGUIEventDispatchingStrategy); +DO_TYPEDEF(0x03CE4220, EventBase_1_InputEvent_); +DO_TYPEDEF(0x03CD2DC0, KeyboardEventDispatchingStrategy); +DO_TYPEDEF(0x03CD2DC8, MouseCaptureDispatchingStrategy); +DO_TYPEDEF(0x03CD2DA8, MouseEventDispatchingStrategy); +DO_TYPEDEF(0x03CE4348, EventBase_1_MouseEnterWindowEvent_); +DO_TYPEDEF(0x03CE4338, EventBase_1_MouseLeaveWindowEvent_); +DO_TYPEDEF(0x03CE4168, MouseLeaveWindowEvent); +DO_TYPEDEF(0x03CD6D90, EventBase_1_MouseOverEvent_); +DO_TYPEDEF(0x03CD6D78, EventBase_1_MouseOutEvent_); +DO_TYPEDEF(0x03CE64D8, NavigationEventDispatchingStrategy); +DO_TYPEDEF(0x03CE40B0, EventBase_1_NavigationTabEvent_); +DO_TYPEDEF(0x03CD2E18, PointerCaptureDispatchingStrategy); +DO_TYPEDEF(0x03CD2E00, PointerEventDispatchingStrategy); +DO_TYPEDEF(0x03CD2A70, PointerStationaryEvent); +DO_TYPEDEF(0x03CE0740, EventBase_1_ClickEvent_); +DO_TYPEDEF(0x03CD6D98, EventBase_1_PointerEnterEvent_); +DO_TYPEDEF(0x03CD2A88, PointerEnterEvent); +DO_TYPEDEF(0x03CE6588, StylePropertyNameCollection_Enumerator); +DO_TYPEDEF(0x03CD2ED0, EventBase_1_IMGUIEvent_); +DO_TYPEDEF(0x03CE4320, IMGUIEvent); +DO_TYPEDEF(0x03CE6550, NavigateFocusRing); +DO_TYPEDEF(0x03CE64F0, NavigateFocusRing_ChangeDirection); +DO_TYPEDEF(0x03CB0EC8, RuntimePanel); +DO_TYPEDEF(0x03CE6448, UIRAtlasAllocator_Row); +DO_TYPEDEF(0x03CF16A0, UIRAtlasAllocator); +DO_TYPEDEF(0x03CE6438, UIRAtlasAllocator_AreaNode); +DO_TYPEDEF(0x03CE6400, ObjectPool_1_UIRAtlasAllocator_AreaNode_); +DO_TYPEDEF(0x03CE63D8, ObjectPool_1_UIRAtlasAllocator_Row_); +DO_TYPEDEF(0x03CE6440, UIRAtlasAllocator_Row__Array); +DO_TYPEDEF(0x03CE6388, UIRLayoutUpdater); +DO_TYPEDEF(0x03CDA060, MeshWriteData); +DO_TYPEDEF(0x03CD9FA8, Vertex); +DO_TYPEDEF(0x03CD9FA0, Vertex__Array); +DO_TYPEDEF(0x03CD8058, UIRVEShaderInfoAllocator); +DO_TYPEDEF(0x03CE62C8, RenderChain); +DO_TYPEDEF(0x03CEB640, LinkedPool_1_RenderChainCommand_); +DO_TYPEDEF(0x03CEB650, Func_1_UnityEngine_UIElements_UIR_RenderChainCommand_); +DO_TYPEDEF(0x03CEB620, Action_1_UnityEngine_UIElements_UIR_RenderChainCommand_); +DO_TYPEDEF(0x03CEB678, BasicNodePool_1_TextureEntry_); +DO_TYPEDEF(0x03CEB6A0, List_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_); +DO_TYPEDEF(0x03CD8670, UIRenderDevice); +DO_TYPEDEF(0x03CD7CA8, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_); +DO_TYPEDEF(0x03CD7CA0, List_1_List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_); +DO_TYPEDEF(0x03CD7CB0, List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_); +DO_TYPEDEF(0x03CD7C98, List_1_List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_); +DO_TYPEDEF(0x03CD7DE8, LinkedPool_1_MeshHandle_); +DO_TYPEDEF(0x03CD7DF8, Func_1_UnityEngine_UIElements_UIR_MeshHandle_); +DO_TYPEDEF(0x03CD7D98, Action_1_UnityEngine_UIElements_UIR_MeshHandle_); +DO_TYPEDEF(0x03CD7DF0, DrawParams); +DO_TYPEDEF(0x03CD7850, Stack_1_UnityEngine_Matrix4x4_); +DO_TYPEDEF(0x03CD7858, Stack_1_UnityEngine_Rect_); +DO_TYPEDEF(0x03CBC260, Rect__Array); DO_TYPEDEF(0x03C8F5E0, List_1_UnityEngine_RenderTexture_); +DO_TYPEDEF(0x03CD8660, TextureSlotManager); +DO_TYPEDEF(0x03CD7D28, LinkedList_1_UnityEngine_UIElements_UIR_UIRenderDevice_DeviceToFree_); +DO_TYPEDEF(0x03CEB5B8, UIRTextUpdatePainter); +DO_TYPEDEF(0x03CEB668, Dictionary_2_UnityEngine_UIElements_VisualElement_UnityEngine_Vector2_); +DO_TYPEDEF(0x03D0C2A8, IEnumerable_1_UnityEngine_Vector2_); +DO_TYPEDEF(0x03CD83B8, VectorImageManager); +DO_TYPEDEF(0x03CD81D8, List_1_UnityEngine_UIElements_UIR_VectorImageManager_); +DO_TYPEDEF(0x03CD8338, Dictionary_2_UnityEngine_UIElements_VectorImage_UnityEngine_UIElements_UIR_VectorImageRenderInfo_); +DO_TYPEDEF(0x03CD84F8, VectorImageRenderInfo); +DO_TYPEDEF(0x03CD82F0, GradientRemap); +DO_TYPEDEF(0x03CD83C8, VectorImageRenderInfoPool); +DO_TYPEDEF(0x03CD84C0, Func_1_UnityEngine_UIElements_UIR_VectorImageRenderInfo_); +DO_TYPEDEF(0x03CD84B0, Action_1_UnityEngine_UIElements_UIR_VectorImageRenderInfo_); +DO_TYPEDEF(0x03CD8348, GradientRemapPool); +DO_TYPEDEF(0x03CD82B8, Func_1_UnityEngine_UIElements_UIR_GradientRemap_); +DO_TYPEDEF(0x03CD82A8, Action_1_UnityEngine_UIElements_UIR_GradientRemap_); +DO_TYPEDEF(0x03CD8318, GradientSettingsAtlas); +DO_TYPEDEF(0x03CF16B8, BaseShaderInfoStorage); +DO_TYPEDEF(0x03CD7FA0, List_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page_); +DO_TYPEDEF(0x03CD87A0, TextCoreSettings); +DO_TYPEDEF(0x03CEB6B8, UIRStylePainter); +DO_TYPEDEF(0x03CD9FD8, List_1_UnityEngine_UIElements_UIR_Implementation_UIRStylePainter_Entry_); +DO_TYPEDEF(0x03CD9FD0, List_1_UnityEngine_UIElements_MeshWriteData_); +DO_TYPEDEF(0x03CD9FF0, MeshBuilder_AllocMeshData_Allocator); +DO_TYPEDEF(0x03CD3F68, UIRRepaintUpdater); +DO_TYPEDEF(0x03CE5ED0, List_1_UnityEngine_UIElements_ComputedTransitionProperty_); +DO_TYPEDEF(0x03CE5EE0, ComputedTransitionUtils_c); +DO_TYPEDEF(0x03CEB1C8, StyleInt); +DO_TYPEDEF(0x03CEB168, LengthUnit__Enum); +DO_TYPEDEF(0x03CEC6F8, YogaValue); +DO_TYPEDEF(0x03CEADF8, StyleComplexSelector_c); +DO_TYPEDEF(0x03CEAD40, Func_2_UnityEngine_UIElements_StyleSelector_String_); +DO_TYPEDEF(0x03CEAE28, StyleSelector_c); +DO_TYPEDEF(0x03CEADB8, Func_2_UnityEngine_UIElements_StyleSelectorPart_String_); +DO_TYPEDEF(0x03CDBF50, StyleValueKeyword__Enum); +DO_TYPEDEF(0x03CEA940, StyleValueFunction__Enum); +DO_TYPEDEF(0x03CB4A88, TextCoreHandle); +DO_TYPEDEF(0x03D20388, FontStyles__Enum_1); +DO_TYPEDEF(0x03D20380, TextAlignment__Enum_1); +DO_TYPEDEF(0x03D20370, TextOverflowMode__Enum); +DO_TYPEDEF(0x03D20378, TextFontWeight__Enum); +DO_TYPEDEF(0x03D20368, TextureMapping__Enum); +DO_TYPEDEF(0x03D20358, VertexSortingOrder__Enum_1); +DO_TYPEDEF(0x03D205B8, TextGenerationSettings_1); +DO_TYPEDEF(0x03D20590, TextColorGradient); +DO_TYPEDEF(0x03D1E480, MeshInfo); +DO_TYPEDEF(0x03D1E378, TextInfo_1); +DO_TYPEDEF(0x03D1E800, TextElementInfo__Array); +DO_TYPEDEF(0x03D21030, WordInfo__Array); +DO_TYPEDEF(0x03D21028, LinkInfo__Array); +DO_TYPEDEF(0x03D20168, LineInfo_1__Array); +DO_TYPEDEF(0x03D21038, PageInfo__Array); +DO_TYPEDEF(0x03D21040, MeshInfo__Array); +DO_TYPEDEF(0x03CD9FB8, TextNativeHandle); +DO_TYPEDEF(0x03CE9A90, UxmlRootElementFactory); +DO_TYPEDEF(0x03CE9A60, UxmlStyleFactory); +DO_TYPEDEF(0x03CE9A68, UxmlTemplateFactory); +DO_TYPEDEF(0x03CE9C50, UxmlAttributeOverridesFactory); +DO_TYPEDEF(0x03CEA1E0, UxmlStringAttributeDescription_c); +DO_TYPEDEF(0x03CEA348, UxmlFloatAttributeDescription_c); DO_TYPEDEF(0x03C93C28, Func_3_String_Single_Single_); +DO_TYPEDEF(0x03CE9F30, UxmlIntAttributeDescription_c); DO_TYPEDEF(0x03C93C18, Func_3_String_Int32_Int32_); +DO_TYPEDEF(0x03CEA048, UxmlLongAttributeDescription_c); +DO_TYPEDEF(0x03CEA0C0, Func_3_String_Int64_Int64_); +DO_TYPEDEF(0x03CEA0E8, UxmlBoolAttributeDescription_c); +DO_TYPEDEF(0x03CEA100, Func_3_String_Boolean_Boolean_); +DO_TYPEDEF(0x03CB9060, UxmlEnumeration); +DO_TYPEDEF(0x03CE9EA0, Dictionary_2_System_String_List_1_UnityEngine_UIElements_IUxmlFactory_); +DO_TYPEDEF(0x03CE9B30, IUxmlFactory); +DO_TYPEDEF(0x03CE9BE8, List_1_UnityEngine_UIElements_IUxmlFactory_); +DO_TYPEDEF(0x03CE9C98, IUxmlFactory__Array); +DO_TYPEDEF(0x03CE98A0, Dictionary_2_System_Int32_List_1_UnityEngine_UIElements_VisualElementAsset_); +DO_TYPEDEF(0x03CE9608, VisualTreeAsset_UsingEntryComparer); +DO_TYPEDEF(0x03CE9AA8, VisualTreeAsset_get_templateDependencies_d_17); +DO_TYPEDEF(0x03CE9648, HashSet_1_UnityEngine_UIElements_VisualTreeAsset_); +DO_TYPEDEF(0x03CC6940, List_1_T_Enumerator_System_String_); +DO_TYPEDEF(0x03CE97E8, VisualTreeAsset_get_stylesheets_d_21); +DO_TYPEDEF(0x03CE94D0, HashSet_1_UnityEngine_UIElements_StyleSheet_); +DO_TYPEDEF(0x03CE9718, VisualTreeAsset_c_DisplayClass45_0); +DO_TYPEDEF(0x03CEB698, RenderChain_c); +DO_TYPEDEF(0x03CD7E38, ShaderInfoStorageRGBA32); +DO_TYPEDEF(0x03CEB3F8, Func_2_UnityEngine_Color_UnityEngine_Color32_); +DO_TYPEDEF(0x03CEB3F0, ShaderInfoStorageRGBA32_c); +DO_TYPEDEF(0x03CD7E18, ShaderInfoStorageRGBAFloat); +DO_TYPEDEF(0x03CEB358, Func_2_UnityEngine_Color_UnityEngine_Color_); +DO_TYPEDEF(0x03CEB350, ShaderInfoStorageRGBAFloat_c); +DO_TYPEDEF(0x03CD85F0, IList_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_); +DO_TYPEDEF(0x03CD8480, VectorImageRenderInfoPool_c); +DO_TYPEDEF(0x03CD8278, GradientRemapPool_c); +DO_TYPEDEF(0x03CD7CE8, UIRenderDevice_c); +DO_TYPEDEF(0x03CDBE50, IDictionary_2_System_String_UnityEngine_UIElements_StyleComplexSelector_); +DO_TYPEDEF(0x03CDBE98, StyleSheetCache_SheetHandleKeyComparer); +DO_TYPEDEF(0x03CDB738, StyleSyntaxTokenizer); +DO_TYPEDEF(0x03CDB770, StyleSyntaxTokenType__Enum); +DO_TYPEDEF(0x03CDB3F8, List_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_); +DO_TYPEDEF(0x03D130A8, MathUtility); +DO_TYPEDEF(0x03D17AA8, Dictionary_2_UnityEngine_Collider_UnityEngine_Transform_); +DO_TYPEDEF(0x03D17A70, UnityEngineUtility); +DO_TYPEDEF(0x03CC0938, Dictionary_2_System_String_System_Type_); +DO_TYPEDEF(0x03D125B0, Dictionary_2_UnityEngine_GameObject_UnityEngine_Camera_); +DO_TYPEDEF(0x03D15C50, Camera__Array); +DO_TYPEDEF(0x03CC0930, Dictionary_2_System_Reflection_FieldInfo_Dictionary_2_System_Type_System_Boolean_); +DO_TYPEDEF(0x03CC0960, Dictionary_2_System_Type_System_Boolean_); +DO_TYPEDEF(0x03D12758, Dictionary_2_System_Reflection_PropertyInfo_Dictionary_2_System_Type_System_Boolean_); +DO_TYPEDEF(0x03CD5648, UnityEngineUtility_RaycastHitEqualityComparer); +DO_TYPEDEF(0x03D17880, OriginalMaterialValue); +DO_TYPEDEF(0x03D17808, RequireComponent__Array); +DO_TYPEDEF(0x03D176A0, DefaultInputName__Array); +DO_TYPEDEF(0x03D17638, DefaultStartType); +DO_TYPEDEF(0x03D175F0, DefaultStopType); +DO_TYPEDEF(0x03D17718, DefaultAbilityIndex); +DO_TYPEDEF(0x03D176D0, DefaultAbilityIntData); +DO_TYPEDEF(0x03D17528, DefaultItemStateIndex); +DO_TYPEDEF(0x03D174F8, DefaultState); +DO_TYPEDEF(0x03D174D0, DefaultAllowPositionalInput); +DO_TYPEDEF(0x03D175D0, DefaultAllowRotationalInput); +DO_TYPEDEF(0x03D17588, DefaultUseGravity); +DO_TYPEDEF(0x03D17540, DefaultUseRootMotionPosition); +DO_TYPEDEF(0x03D173A0, DefaultUseRootMotionRotation); +DO_TYPEDEF(0x03D17348, DefaultDetectHorizontalCollisions); +DO_TYPEDEF(0x03D174A0, DefaultDetectVerticalCollisions); +DO_TYPEDEF(0x03D17448, DefaultObjectDetection); +DO_TYPEDEF(0x03D173F8, DefaultUseLookDirection); +DO_TYPEDEF(0x03D17228, DefaultCastOffset); +DO_TYPEDEF(0x03D171D0, DefaultEquippedSlots); +DO_TYPEDEF(0x03D17178, DefaultReequipSlots); +DO_TYPEDEF(0x03D172F8, AddState__Array); +DO_TYPEDEF(0x03D140F8, FirstPersonPerspectiveItem); +DO_TYPEDEF(0x03CCFF68, HashSet_1_UnityEngine_GameObject_); +DO_TYPEDEF(0x03D25538, Dictionary_2_Opsive_UltimateCharacterController_Items_Item_UnityEngine_GameObject_); +DO_TYPEDEF(0x03D16700, DamageIndicatorMonitor_DamageIndicator__Array); +DO_TYPEDEF(0x03D1D0C8, DecalManager); +DO_TYPEDEF(0x03D1D0B0, Dictionary_2_UnityEngine_GameObject_UnityEngine_Renderer_); +DO_TYPEDEF(0x03D1D070, Dictionary_2_UnityEngine_GameObject_UnityEngine_Mesh_); +DO_TYPEDEF(0x03D1D0A0, SurfaceManager); +DO_TYPEDEF(0x03D1CDD0, Dictionary_2_UnityEngine_Texture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_); +DO_TYPEDEF(0x03D1CDB0, Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_); +DO_TYPEDEF(0x03D1CDC8, Dictionary_2_UnityEngine_Texture_List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_); +DO_TYPEDEF(0x03D1CFE0, List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_); +DO_TYPEDEF(0x03D1CDA0, Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceType_Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceEffect_); +DO_TYPEDEF(0x03D1CEA0, Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceEffect_); +DO_TYPEDEF(0x03D1CDC0, Dictionary_2_UnityEngine_Texture_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceType_); +DO_TYPEDEF(0x03D1CDA8, Dictionary_2_UnityEngine_Collider_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceIdentifier_); +DO_TYPEDEF(0x03D1CDE0, Dictionary_2_UnityEngine_Collider_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceType_); +DO_TYPEDEF(0x03D1CDF0, Dictionary_2_UnityEngine_Collider_System_Boolean_); +DO_TYPEDEF(0x03D1CDE8, Dictionary_2_UnityEngine_Collider_UnityEngine_Renderer_); +DO_TYPEDEF(0x03D1CE88, Dictionary_2_UnityEngine_Collider_UnityEngine_Mesh_); +DO_TYPEDEF(0x03D1CDB8, Dictionary_2_UnityEngine_Collider_UnityEngine_Texture_); +DO_TYPEDEF(0x03D1CDD8, Dictionary_2_UnityEngine_Collider_UnityEngine_Terrain_); +DO_TYPEDEF(0x03D1C220, AOTLinker_c); +DO_TYPEDEF(0x03D1CB08, Func_1_Double_); +DO_TYPEDEF(0x03D1CCA0, Action_1_Double_); +DO_TYPEDEF(0x03D1CAE0, Func_1_Int64_); +DO_TYPEDEF(0x03D1CD60, Action_1_Int64_); +DO_TYPEDEF(0x03D1CBD8, Func_1_Byte__1); +DO_TYPEDEF(0x03D1CD08, Action_1_Byte__1); +DO_TYPEDEF(0x03D1CB00, Func_1_UnityEngine_Matrix4x4_); +DO_TYPEDEF(0x03D1CD80, Action_1_UnityEngine_Matrix4x4_); +DO_TYPEDEF(0x03D1CB10, Func_1_UnityEngine_QueryTriggerInteraction_); +DO_TYPEDEF(0x03D1CD38, Action_1_UnityEngine_QueryTriggerInteraction_); +DO_TYPEDEF(0x03D1CC88, Func_1_UnityEngine_ForceMode_); +DO_TYPEDEF(0x03D1CE60, Action_1_UnityEngine_ForceMode_); +DO_TYPEDEF(0x03D1CC78, Func_1_Opsive_UltimateCharacterController_Utility_MinMaxFloat_); +DO_TYPEDEF(0x03D1CE70, Action_1_Opsive_UltimateCharacterController_Utility_MinMaxFloat_); +DO_TYPEDEF(0x03D1CB78, Func_1_Opsive_UltimateCharacterController_Utility_MinMaxVector3_); +DO_TYPEDEF(0x03D1CC08, Action_1_Opsive_UltimateCharacterController_Utility_MinMaxVector3_); +DO_TYPEDEF(0x03D1CC28, Func_1_Opsive_UltimateCharacterController_Input_PlayerInput_LookVectorMode_); +DO_TYPEDEF(0x03D1CE40, Action_1_Opsive_UltimateCharacterController_Input_PlayerInput_LookVectorMode_); +DO_TYPEDEF(0x03D1CBB0, Func_1_Opsive_Shared_Game_ObjectPoolBase_PreloadedPrefab_); +DO_TYPEDEF(0x03D1CE20, Action_1_Opsive_Shared_Game_ObjectPoolBase_PreloadedPrefab_); +DO_TYPEDEF(0x03D1CB18, Func_1_Opsive_UltimateCharacterController_Character_Abilities_Ability_AbilityStartType_); +DO_TYPEDEF(0x03D1CE48, Action_1_Opsive_UltimateCharacterController_Character_Abilities_Ability_AbilityStartType_); +DO_TYPEDEF(0x03D1CB68, Func_1_Opsive_UltimateCharacterController_Character_Abilities_Ability_AbilityStopType_); +DO_TYPEDEF(0x03D1CCF0, Action_1_Opsive_UltimateCharacterController_Character_Abilities_Ability_AbilityStopType_); +DO_TYPEDEF(0x03D1CB90, Func_1_Opsive_UltimateCharacterController_Character_Abilities_Ability_AbilityBoolOverride_); +DO_TYPEDEF(0x03D1CD20, Action_1_Opsive_UltimateCharacterController_Character_Abilities_Ability_AbilityBoolOverride_); +DO_TYPEDEF(0x03D1CC38, Func_1_Opsive_UltimateCharacterController_Character_Abilities_Starters_ComboTimeout_ComboInputElement_); +DO_TYPEDEF(0x03D1CD90, Action_1_Opsive_UltimateCharacterController_Character_Abilities_Starters_ComboTimeout_ComboInputElement_); +DO_TYPEDEF(0x03D1CBB8, Func_1_Opsive_UltimateCharacterController_Character_Abilities_RestrictPosition_RestrictionType_); +DO_TYPEDEF(0x03D1CE80, Action_1_Opsive_UltimateCharacterController_Character_Abilities_RestrictPosition_RestrictionType_); +DO_TYPEDEF(0x03D1CC70, Func_1_Opsive_UltimateCharacterController_Character_Abilities_DetectObjectAbilityBase_ObjectDetectionMode_); +DO_TYPEDEF(0x03D1CE28, Action_1_Opsive_UltimateCharacterController_Character_Abilities_DetectObjectAbilityBase_ObjectDetectionMode_); +DO_TYPEDEF(0x03D1CC58, Func_1_Opsive_UltimateCharacterController_Character_Abilities_Items_EquipUnequip_AutoEquipType_); +DO_TYPEDEF(0x03D1CD40, Action_1_Opsive_UltimateCharacterController_Character_Abilities_Items_EquipUnequip_AutoEquipType_); +DO_TYPEDEF(0x03D1CBA0, Func_1_Opsive_UltimateCharacterController_Character_Effects_Shake_ShakeTarget_); +DO_TYPEDEF(0x03D1CD98, Action_1_Opsive_UltimateCharacterController_Character_Effects_Shake_ShakeTarget_); +DO_TYPEDEF(0x03D1CB98, Func_1_Opsive_UltimateCharacterController_Traits_Attribute_AutoUpdateValue_); +DO_TYPEDEF(0x03D1CCB0, Action_1_Opsive_UltimateCharacterController_Traits_Attribute_AutoUpdateValue_); +DO_TYPEDEF(0x03D1CBC0, Func_1_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact_); +DO_TYPEDEF(0x03D1CD18, Action_1_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact_); +DO_TYPEDEF(0x03D1CAD8, Func_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_); +DO_TYPEDEF(0x03D1CE58, Action_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_); +DO_TYPEDEF(0x03D1CB88, Func_1_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_); +DO_TYPEDEF(0x03D1CE50, Action_1_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_); +DO_TYPEDEF(0x03D1CB70, Func_1_Opsive_UltimateCharacterController_Utility_ObjectSpawnInfo_); +DO_TYPEDEF(0x03D1CD68, Action_1_Opsive_UltimateCharacterController_Utility_ObjectSpawnInfo_); +DO_TYPEDEF(0x03D1CAD0, Func_1_Opsive_UltimateCharacterController_Utility_AnimationEventTrigger_); +DO_TYPEDEF(0x03D1CD10, Action_1_Opsive_UltimateCharacterController_Utility_AnimationEventTrigger_); +DO_TYPEDEF(0x03D1CAA8, Func_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_Foot_); +DO_TYPEDEF(0x03D1CC10, Action_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_Foot_); +DO_TYPEDEF(0x03D1CC60, Func_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_FootstepPlacementMode_); +DO_TYPEDEF(0x03D1CC18, Action_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_FootstepPlacementMode_); +DO_TYPEDEF(0x03D1CBC8, Func_1_Opsive_UltimateCharacterController_Game_SpawnPoint_SpawnShape_); +DO_TYPEDEF(0x03D1CCD0, Action_1_Opsive_UltimateCharacterController_Game_SpawnPoint_SpawnShape_); +DO_TYPEDEF(0x03D1CB30, Func_1_Opsive_UltimateCharacterController_Traits_Respawner_SpawnPositioningMode_); +DO_TYPEDEF(0x03D1CD30, Action_1_Opsive_UltimateCharacterController_Traits_Respawner_SpawnPositioningMode_); +DO_TYPEDEF(0x03D1CC80, Func_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_Waypoint_); +DO_TYPEDEF(0x03D1CCE8, Action_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_Waypoint_); +DO_TYPEDEF(0x03D1CB58, Func_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_PathMovementType_); +DO_TYPEDEF(0x03D1CD50, Action_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_PathMovementType_); +DO_TYPEDEF(0x03D1CAB0, Func_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_PathDirection_); +DO_TYPEDEF(0x03D1CE68, Action_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_PathDirection_); +DO_TYPEDEF(0x03D1CB50, Func_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_MovementInterpolationMode_); +DO_TYPEDEF(0x03D1CD00, Action_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_MovementInterpolationMode_); +DO_TYPEDEF(0x03D1CC40, Func_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_RotateInterpolationMode_); +DO_TYPEDEF(0x03D1CCE0, Action_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_RotateInterpolationMode_); +DO_TYPEDEF(0x03D1CC50, Func_1_Opsive_UltimateCharacterController_Audio_AudioClipSet_); +DO_TYPEDEF(0x03D1CE78, Action_1_Opsive_UltimateCharacterController_Audio_AudioClipSet_); +DO_TYPEDEF(0x03D1CAF0, Func_1_Opsive_UltimateCharacterController_Character_Abilities_Items_Reload_AutoReloadType_); +DO_TYPEDEF(0x03D1CE30, Action_1_Opsive_UltimateCharacterController_Character_Abilities_Items_Reload_AutoReloadType_); +DO_TYPEDEF(0x03D1CAC0, Func_1_Opsive_UltimateCharacterController_Items_Actions_ShootableWeapon_FireMode_); +DO_TYPEDEF(0x03D1CD48, Action_1_Opsive_UltimateCharacterController_Items_Actions_ShootableWeapon_FireMode_); +DO_TYPEDEF(0x03D1CB60, Func_1_Opsive_UltimateCharacterController_Items_Actions_ShootableWeapon_FireType_); +DO_TYPEDEF(0x03D1CBF0, Action_1_Opsive_UltimateCharacterController_Items_Actions_ShootableWeapon_FireType_); +DO_TYPEDEF(0x03D1CBD0, Func_1_Opsive_UltimateCharacterController_Items_Actions_ShootableWeapon_ProjectileVisiblityType_); +DO_TYPEDEF(0x03D1CCA8, Action_1_Opsive_UltimateCharacterController_Items_Actions_ShootableWeapon_ProjectileVisiblityType_); +DO_TYPEDEF(0x03D1CAE8, Func_1_Opsive_UltimateCharacterController_Items_Actions_ShootableWeapon_ReloadClipType_); +DO_TYPEDEF(0x03D1CE38, Action_1_Opsive_UltimateCharacterController_Items_Actions_ShootableWeapon_ReloadClipType_); +DO_TYPEDEF(0x03D1CB80, Func_1_Opsive_UltimateCharacterController_Items_Actions_MagicItem_CastDirection_); +DO_TYPEDEF(0x03D1CD78, Action_1_Opsive_UltimateCharacterController_Items_Actions_MagicItem_CastDirection_); +DO_TYPEDEF(0x03D1CBE8, Func_1_Opsive_UltimateCharacterController_Items_Actions_MagicItem_CastUseType_); +DO_TYPEDEF(0x03D1CC00, Action_1_Opsive_UltimateCharacterController_Items_Actions_MagicItem_CastUseType_); +DO_TYPEDEF(0x03D1CC98, Func_1_Opsive_UltimateCharacterController_Items_Actions_MagicItem_CastInterruptSource_); +DO_TYPEDEF(0x03D1CD88, Action_1_Opsive_UltimateCharacterController_Items_Actions_MagicItem_CastInterruptSource_); +DO_TYPEDEF(0x03D1CB48, Func_1_Opsive_UltimateCharacterController_UI_HealthFlashMonitor_Flash_); +DO_TYPEDEF(0x03D1CCB8, Action_1_Opsive_UltimateCharacterController_UI_HealthFlashMonitor_Flash_); +DO_TYPEDEF(0x03D1C2D0, Dictionary_2_System_Reflection_MethodInfo_System_Int32_); +DO_TYPEDEF(0x03D1BFC8, Dictionary_2_System_String_Opsive_UltimateCharacterController_StateSystem_State_); +DO_TYPEDEF(0x03D1C040, StateConfiguration_Profile_StateElement__Array); +DO_TYPEDEF(0x03D1C050, Dictionary_2_System_String_Dictionary_2_System_Type_Opsive_UltimateCharacterController_StateSystem_StateConfiguration_Profile_StateElement_); +DO_TYPEDEF(0x03D1C058, Dictionary_2_System_Type_Opsive_UltimateCharacterController_StateSystem_StateConfiguration_Profile_StateElement_); +DO_TYPEDEF(0x03D1BF70, StateManager); +DO_TYPEDEF(0x03D1BD60, Dictionary_2_System_Object_Dictionary_2_System_String_Opsive_UltimateCharacterController_StateSystem_State_); +DO_TYPEDEF(0x03D1BD30, Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_String_List_1_Opsive_UltimateCharacterController_StateSystem_State_); +DO_TYPEDEF(0x03D1BFC0, Dictionary_2_System_String_List_1_Opsive_UltimateCharacterController_StateSystem_State_); +DO_TYPEDEF(0x03D1BE28, List_1_Opsive_UltimateCharacterController_StateSystem_State_); +DO_TYPEDEF(0x03D1BD70, Dictionary_2_UnityEngine_GameObject_List_1_UnityEngine_GameObject_); +DO_TYPEDEF(0x03D1BD50, Dictionary_2_Opsive_UltimateCharacterController_StateSystem_State_Opsive_UltimateCharacterController_StateSystem_State_); +DO_TYPEDEF(0x03D1BD40, Dictionary_2_UnityEngine_GameObject_HashSet_1_System_String_); +DO_TYPEDEF(0x03D1BD00, Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_String_Opsive_Shared_Game_ScheduledEventBase_); +DO_TYPEDEF(0x03D1BD10, Dictionary_2_System_String_Opsive_Shared_Game_ScheduledEventBase_); +DO_TYPEDEF(0x03D1EC00, Dictionary_2_UnityEngine_GameObject_System_Int32_); +DO_TYPEDEF(0x03D21150, Destructible); +DO_TYPEDEF(0x03D21618, Grenade); +DO_TYPEDEF(0x03D216C0, UsableItem); +DO_TYPEDEF(0x03D21648, BeginEndAction); +DO_TYPEDEF(0x03D21638, CastAction); +DO_TYPEDEF(0x03D21628, ImpactAction); +DO_TYPEDEF(0x03D21658, IMagicItemPerspectiveProperties); +DO_TYPEDEF(0x03D21650, BeginEndAction__Array); +DO_TYPEDEF(0x03D21640, CastAction__Array); +DO_TYPEDEF(0x03D241F0, Dictionary_2_System_UInt32_HashSet_1_UnityEngine_Transform_); +DO_TYPEDEF(0x03D21630, ImpactAction__Array); +DO_TYPEDEF(0x03D1E7B8, ParticleSystemSimulationSpace__Enum__Array); +DO_TYPEDEF(0x03D1E5F8, NetworkObjectPool); +DO_TYPEDEF(0x03D1E530, SmoothRandom_FractalNoise); +DO_TYPEDEF(0x03D1E580, SmoothRandom_Perlin); +DO_TYPEDEF(0x03D1E590, Single__Array_1); +DO_TYPEDEF(0x03D1E520, SmoothRandom); +DO_TYPEDEF(0x03D16A40, Flashlight); +DO_TYPEDEF(0x03D21668, IFlashlightPerspectiveProperties); +DO_TYPEDEF(0x03D16A20, ThrowableItem); +DO_TYPEDEF(0x03D16A30, GrenadeItem); +DO_TYPEDEF(0x03D21290, IThrowableItemPerspectiveProperties); +DO_TYPEDEF(0x03D21178, IVRThrowableItem); +DO_TYPEDEF(0x03D16A28, ShootableWeapon); +DO_TYPEDEF(0x03D16990, IShootableWeaponPerspectiveProperties); +DO_TYPEDEF(0x03D21340, Dictionary_2_Opsive_UltimateCharacterController_Items_Item_System_Int32_); +DO_TYPEDEF(0x03D241B0, Dictionary_2_System_UInt32_UnityEngine_ParticleSystem_); +DO_TYPEDEF(0x03D240A0, FadeMaterials); +DO_TYPEDEF(0x03D240C0, HashSet_1_UnityEngine_Material_); +DO_TYPEDEF(0x03D240D0, Dictionary_2_UnityEngine_Material_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_); +DO_TYPEDEF(0x03D23DB8, StandaloneInput); +DO_TYPEDEF(0x03D23D60, Dictionary_2_System_String_Opsive_UltimateCharacterController_Input_VirtualControls_VirtualControl_); +DO_TYPEDEF(0x03D23DC0, VirtualInput); +DO_TYPEDEF(0x03D23CE0, KinematicObjectManager); +DO_TYPEDEF(0x03D25840, KinematicObjectManager_SmoothFixedLocation__Array); +DO_TYPEDEF(0x03D23CB8, KinematicObjectManager_KinematicCharacter__Array); +DO_TYPEDEF(0x03D23CC0, KinematicObjectManager_KinematicCamera__Array); +DO_TYPEDEF(0x03D23C78, IKinematicObject); +DO_TYPEDEF(0x03D23CB0, KinematicObjectManager_KinematicObject__Array); +DO_TYPEDEF(0x03D257E0, LayerManager); +DO_TYPEDEF(0x03D25810, Dictionary_2_UnityEngine_Collider_List_1_UnityEngine_Collider_); +DO_TYPEDEF(0x03D25768, SpawnPointManager); +DO_TYPEDEF(0x03D25738, Dictionary_2_System_Int32_List_1_Opsive_UltimateCharacterController_Game_SpawnPoint_); +DO_TYPEDEF(0x03D257A0, List_1_Opsive_UltimateCharacterController_Game_SpawnPoint_); +DO_TYPEDEF(0x03D25730, Dictionary_2_System_Int32_Opsive_UltimateCharacterController_Game_SpawnPoint_); +DO_TYPEDEF(0x03D19630, FreeLook); +DO_TYPEDEF(0x03D25580, HashSet_1_UnityEngine_Renderer_); +DO_TYPEDEF(0x03D25570, List_1_UnityEngine_Material__1); +DO_TYPEDEF(0x03CD6C38, GravityZone__Array); +DO_TYPEDEF(0x03CD93C8, IDriveSource); +DO_TYPEDEF(0x03D215B0, Fall); +DO_TYPEDEF(0x03CD8FC8, Interact_c_DisplayClass45_0); +DO_TYPEDEF(0x03CD9118, Action_2_Opsive_UltimateCharacterController_Objects_CharacterAssist_AbilityIKTarget_UnityEngine_Transform_); +DO_TYPEDEF(0x03CD9080, PickupItem); +DO_TYPEDEF(0x03CD8BD8, ItemPickupBase__Array); +DO_TYPEDEF(0x03D215B8, StoredInputAbilityBase); +DO_TYPEDEF(0x03D19840, Ride); +DO_TYPEDEF(0x03CD9190, Aim); +DO_TYPEDEF(0x03D14628, Drop); +DO_TYPEDEF(0x03CDA820, EquipScroll); +DO_TYPEDEF(0x03D1D700, AudioManager); +DO_TYPEDEF(0x03D1D680, Dictionary_2_UnityEngine_GameObject_Opsive_UltimateCharacterController_Audio_AudioManager_AudioSourcesIndex_); +DO_TYPEDEF(0x03D1D6E0, AudioManager_AudioSourcesIndex); +DO_TYPEDEF(0x03D04380, TypeInferenceRules__Enum); +DO_TYPEDEF(0x03D009C8, Keyframe__Array); +DO_TYPEDEF(0x03D04280, BootConfigData); +DO_TYPEDEF(0x03D04290, Cache); +DO_TYPEDEF(0x03CCC288, CommandBuffer__Array); +DO_TYPEDEF(0x03D041B0, DebugLogHandler); +DO_TYPEDEF(0x03CBCD00, ILogger); +DO_TYPEDEF(0x03D12920, BoundsInt); +DO_TYPEDEF(0x03D04120, BeforeRenderOrderAttribute); +DO_TYPEDEF(0x03CD39A0, Display); +DO_TYPEDEF(0x03D04118, Display__Array); +DO_TYPEDEF(0x03CBCBC0, LightmapData); +DO_TYPEDEF(0x03CBCBF8, LightmapData__Array); +DO_TYPEDEF(0x03D111A8, SphericalHarmonicsL2); +DO_TYPEDEF(0x03D10DE8, LocalKeywordSpace); DO_TYPEDEF(0x03C91E40, ShaderTagId); +DO_TYPEDEF(0x03D210B0, List_1_UnityEngine_Matrix4x4_); +DO_TYPEDEF(0x03D10DF8, LocalKeyword); +DO_TYPEDEF(0x03D11528, VertexAttribute__Enum); +DO_TYPEDEF(0x03D11630, VertexAttributeFormat__Enum); +DO_TYPEDEF(0x03D11500, VertexAttributeDescriptor); +DO_TYPEDEF(0x03D03A60, VertexAttributeDescriptor__Array); +DO_TYPEDEF(0x03D11658, MeshTopology__Enum); +DO_TYPEDEF(0x03CCB930, CombineInstance__Array); +DO_TYPEDEF(0x03D07AD8, BoneWeight1); +DO_TYPEDEF(0x03D079E0, FormatUsage__Enum); +DO_TYPEDEF(0x03CB8500, UnityException); +DO_TYPEDEF(0x03CF7398, List_1_UnityEngine_Rect_); +DO_TYPEDEF(0x03CCB8C8, Texture2DArray); DO_TYPEDEF(0x03C99E00, CubemapArray); +DO_TYPEDEF(0x03D041B8, Logger_2); +DO_TYPEDEF(0x03D041C0, ILogHandler); +DO_TYPEDEF(0x03D07238, UnityLogWriter); +DO_TYPEDEF(0x03D19FE8, Gradient); +DO_TYPEDEF(0x03D19FF0, GradientColorKey__Array); +DO_TYPEDEF(0x03D19FF8, GradientAlphaKey__Array); +DO_TYPEDEF(0x03D11998, PlayerConnectionInternal); +DO_TYPEDEF(0x03D0D5E8, PlayerPrefsException); DO_TYPEDEF(0x03C985D0, InspectorNameAttribute); DO_TYPEDEF(0x03C9E1A8, AsyncOperation_1); DO_TYPEDEF(0x03C9E148, ResourceRequest); +DO_TYPEDEF(0x03CC8168, Action_1_UnityEngine_AsyncOperation_); +DO_TYPEDEF(0x03D03EE8, ResourcesAPI); +DO_TYPEDEF(0x03CE85F8, MissingComponentException); +DO_TYPEDEF(0x03CF9888, MissingReferenceException); +DO_TYPEDEF(0x03D0CF40, TrackedReference); +DO_TYPEDEF(0x03D0CF30, UnhandledExceptionHandler_c); +DO_TYPEDEF(0x03D0CD60, UnitySynchronizationContext); +DO_TYPEDEF(0x03D0CCD8, List_1_UnityEngine_UnitySynchronizationContext_WorkRequest_); +DO_TYPEDEF(0x03D13378, WaitForEndOfFrame); +DO_TYPEDEF(0x03CFA138, WaitForFixedUpdate); +DO_TYPEDEF(0x03CB99B0, WaitUntil); +DO_TYPEDEF(0x03CB9B68, WaitWhile); DO_TYPEDEF(0x03C96410, ComputeBufferType__Enum); +DO_TYPEDEF(0x03D12488, GraphicsDeviceType__Enum); +DO_TYPEDEF(0x03CAC4D0, Pose); +DO_TYPEDEF(0x03D0C798, Transform_Enumerator); +DO_TYPEDEF(0x03D0C610, Action_1_UnityEngine_U2D_SpriteAtlas_); +DO_TYPEDEF(0x03CBDEE0, SpriteAtlas); +DO_TYPEDEF(0x03D0C540, Recorder); +DO_TYPEDEF(0x03D0C498, MetaData); +DO_TYPEDEF(0x03D0C410, SemanticMeaning__Array); +DO_TYPEDEF(0x03D0C450, PhotoCapture); +DO_TYPEDEF(0x03D0C440, PhotoCaptureFrame); +DO_TYPEDEF(0x03D0C3C8, VideoCapture); +DO_TYPEDEF(0x03CBF1C0, FormerlySerializedAsAttribute); +DO_TYPEDEF(0x03D0C5C8, MovedFromAttribute); +DO_TYPEDEF(0x03D11C10, SceneManagerAPI); +DO_TYPEDEF(0x03D0B688, UnityAction_2_UnityEngine_SceneManagement_Scene_UnityEngine_SceneManagement_LoadSceneMode_); +DO_TYPEDEF(0x03D0B698, UnityAction_1_UnityEngine_SceneManagement_Scene_); +DO_TYPEDEF(0x03CD6618, UnityAction_2_UnityEngine_SceneManagement_Scene_UnityEngine_SceneManagement_Scene_); +DO_TYPEDEF(0x03D11950, PlayerConnection); +DO_TYPEDEF(0x03D11930, IPlayerEditorConnectionNative); +DO_TYPEDEF(0x03D116D0, PlayerEditorConnectionEvents); +DO_TYPEDEF(0x03D11770, PlayerEditorConnectionEvents_MessageTypeSubscribers); +DO_TYPEDEF(0x03D11788, List_1_UnityEngine_Networking_PlayerConnection_PlayerEditorConnectionEvents_MessageTypeSubscribers_); +DO_TYPEDEF(0x03D11780, PlayerEditorConnectionEvents_MessageEvent); +DO_TYPEDEF(0x03D11688, IEnumerator_1_UnityEngine_Networking_PlayerConnection_PlayerEditorConnectionEvents_MessageTypeSubscribers_); +DO_TYPEDEF(0x03D117A0, PlayerEditorConnectionEvents_ConnectionChangeEvent); +DO_TYPEDEF(0x03CCAF78, UnityAction_1_UnityEngine_Networking_PlayerConnection_MessageEventArgs_); +DO_TYPEDEF(0x03D1FD90, UnityAction_1_System_Int32_); +DO_TYPEDEF(0x03D11A00, PlayerConnection_c_DisplayClass12_0); +DO_TYPEDEF(0x03D117E0, PlayerConnection_c_DisplayClass13_0); +DO_TYPEDEF(0x03D11840, PlayerConnection_c_DisplayClass20_0); +DO_TYPEDEF(0x03D11730, PlayerEditorConnectionEvents_c_DisplayClass6_0); +DO_TYPEDEF(0x03D11760, PlayerEditorConnectionEvents_c_DisplayClass7_0); +DO_TYPEDEF(0x03D117C8, PlayerEditorConnectionEvents_c_DisplayClass8_0); +DO_TYPEDEF(0x03D11618, DefaultValueAttribute_1); +DO_TYPEDEF(0x03D11468, RenderPipelineAsset); DO_TYPEDEF(0x03C96220, RendererList); +DO_TYPEDEF(0x03D11150, LODParameters); +DO_TYPEDEF(0x03D10FF8, RenderTargetBlendState); +DO_TYPEDEF(0x03D111C0, BlendState); +DO_TYPEDEF(0x03D10EB8, VisibleLight); +DO_TYPEDEF(0x03D10E08, VisibleReflectionProbe); +DO_TYPEDEF(0x03D111B8, CullingResults); +DO_TYPEDEF(0x03D111E8, DepthState); +DO_TYPEDEF(0x03D10F38, SortingSettings); DO_TYPEDEF(0x03C91E28, DrawingSettings); +DO_TYPEDEF(0x03D164B0, RenderQueueRange); +DO_TYPEDEF(0x03D10F10, SortingLayerRange); +DO_TYPEDEF(0x03D11160, FilteringSettings); +DO_TYPEDEF(0x03D11168, RasterState); DO_TYPEDEF(0x03C91AB8, ScriptableRenderContext); +DO_TYPEDEF(0x03D10FF0, List_1_UnityEngine_Camera_); +DO_TYPEDEF(0x03D10F28, StencilState); +DO_TYPEDEF(0x03D11010, RenderStateBlock); DO_TYPEDEF(0x03C962C0, List_1_UnityEngine_Rendering_RendererUtils_RendererList_); +DO_TYPEDEF(0x03CF1048, CompareFunction__Enum); +DO_TYPEDEF(0x03CF10B8, StencilOp__Enum); +DO_TYPEDEF(0x03D110E8, SupportedRenderingFeatures); +DO_TYPEDEF(0x03D10FA0, RendererListParams); DO_TYPEDEF(0x03CAA608, FrameRate); +DO_TYPEDEF(0x03CE87B8, IExposedPropertyTable); +DO_TYPEDEF(0x03D12570, Lightmapping_RequestLightsDelegate); +DO_TYPEDEF(0x03D12560, Lightmapping_c); +DO_TYPEDEF(0x03D12580, BuiltinRuntimeReflectionSystem); +DO_TYPEDEF(0x03D12588, IScriptableRuntimeReflectionSystem); +DO_TYPEDEF(0x03D12590, ScriptableRuntimeReflectionSystemWrapper); +DO_TYPEDEF(0x03D12518, AssertionException); +DO_TYPEDEF(0x03CFBBF8, AstarPath_c_DisplayClass97_0); +DO_TYPEDEF(0x03CFBBA8, AstarPath_c_DisplayClass109_0); +DO_TYPEDEF(0x03CFBB88, AstarPath_DelayedGraphUpdate_d_110); +DO_TYPEDEF(0x03CFBB78, AstarPath_UpdateGraphsInternal_d_113); +DO_TYPEDEF(0x03CFBB10, AstarPath_c); +DO_TYPEDEF(0x03CFB828, Progress); +DO_TYPEDEF(0x03CFBA30, AstarPath_ScanAsync_d_141); +DO_TYPEDEF(0x03CFBA50, IEnumerator_1_Pathfinding_Progress_); +DO_TYPEDEF(0x03CFB810, AstarPath_c_DisplayClass142_0); +DO_TYPEDEF(0x03CFBA18, AstarPath_ScanGraph_d_142); +DO_TYPEDEF(0x03CFB940, AstarPath_c_DisplayClass152_0); +DO_TYPEDEF(0x03CFB6D0, PathInterpolator); +DO_TYPEDEF(0x03CFB608, AIPath); +DO_TYPEDEF(0x03CFB5C0, RichAI_TraverseSpecial_d_68); +DO_TYPEDEF(0x03CFB5B0, RichAI_TraverseOffMeshLinkFallback_d_69); +DO_TYPEDEF(0x03CFB3E8, IRaycastableGraph); +DO_TYPEDEF(0x03CEA500, MultiTargetPath); +DO_TYPEDEF(0x03CFB1A0, OnPathDelegate__Array); +DO_TYPEDEF(0x03CBA058, List_1_UnityEngine_Vector3___Array); +DO_TYPEDEF(0x03CFB1E0, Seeker_c); +DO_TYPEDEF(0x03CFB1F8, Comparison_1_Pathfinding_IPathModifier_); +DO_TYPEDEF(0x03CB5D40, PathNNConstraint); +DO_TYPEDEF(0x03CB5C88, GraphMask_c_DisplayClass12_0); +DO_TYPEDEF(0x03CBBE60, SerializeSettings); +DO_TYPEDEF(0x03CB5C00, AstarSerializer); +DO_TYPEDEF(0x03CBC0B8, ZipFile); +DO_TYPEDEF(0x03CDD1F0, Dictionary_2_System_String_Pathfinding_Ionic_Zip_ZipEntry_); +DO_TYPEDEF(0x03CDD840, ZipEntry); +DO_TYPEDEF(0x03CDD868, ZipCrypto); +DO_TYPEDEF(0x03CDD878, CRC32); +DO_TYPEDEF(0x03CDD830, ZipContainer); +DO_TYPEDEF(0x03CDDE48, ZipOutputStream); +DO_TYPEDEF(0x03CDD890, CountingStream); +DO_TYPEDEF(0x03CDD800, CrcCalculatorStream); +DO_TYPEDEF(0x03CDD4B8, ParallelDeflateOutputStream); +DO_TYPEDEF(0x03CDE960, WorkItem); +DO_TYPEDEF(0x03CDE980, List_1_Pathfinding_Ionic_Zlib_WorkItem_); +DO_TYPEDEF(0x03CDE8F0, ZlibCodec); +DO_TYPEDEF(0x03CDDE30, DeflateManager); +DO_TYPEDEF(0x03CDDD48, DeflateManager_CompressFunc); +DO_TYPEDEF(0x03CDDD88, DeflateManager_Config); +DO_TYPEDEF(0x03CDDCA0, DeflateManager_Config__Array); +DO_TYPEDEF(0x03CDDE28, Tree); +DO_TYPEDEF(0x03CDDD80, StaticTree); +DO_TYPEDEF(0x03CDEA10, InflateManager); +DO_TYPEDEF(0x03CDDBE0, InflateBlocks); +DO_TYPEDEF(0x03CDDB78, InflateCodes); +DO_TYPEDEF(0x03CDDC80, InfTree); +DO_TYPEDEF(0x03CDE958, Queue_1_System_Int32_); +DO_TYPEDEF(0x03CDDE58, ZipInputStream); +DO_TYPEDEF(0x03CDD3D0, WriteDelegate); +DO_TYPEDEF(0x03CDD3C8, OpenDelegate); +DO_TYPEDEF(0x03CDD3D8, CloseDelegate); +DO_TYPEDEF(0x03CBC0A0, IEnumerator_1_Pathfinding_Ionic_Zip_ZipEntry_); +DO_TYPEDEF(0x03CBC0A8, IEnumerable_1_Pathfinding_Ionic_Zip_ZipEntry_); +DO_TYPEDEF(0x03CDD0B0, List_1_Pathfinding_Ionic_Zip_ZipEntry_); +DO_TYPEDEF(0x03CDDA08, SaveProgressEventArgs); +DO_TYPEDEF(0x03CDD330, EventHandler_1_Pathfinding_Ionic_Zip_ReadProgressEventArgs_); +DO_TYPEDEF(0x03CDDA40, ReadProgressEventArgs); +DO_TYPEDEF(0x03CDDA60, ExtractProgressEventArgs); +DO_TYPEDEF(0x03CDDA18, AddProgressEventArgs); +DO_TYPEDEF(0x03CDDA50, ZipErrorEventArgs); +DO_TYPEDEF(0x03CBBF38, Dictionary_2_Pathfinding_NavGraph_System_Int32_); +DO_TYPEDEF(0x03CB5CA0, Func_2_Pathfinding_NavGraph_Boolean_); +DO_TYPEDEF(0x03CB5BB0, AstarData_c_DisplayClass53_0); +DO_TYPEDEF(0x03CB5B20, AstarData_c_DisplayClass64_0); +DO_TYPEDEF(0x03CB5B10, AstarData_c_DisplayClass65_0); +DO_TYPEDEF(0x03CB5B00, AstarData_FindGraphsOfType_d_66); +DO_TYPEDEF(0x03CB5AF0, AstarData_GetUpdateableGraphs_d_67); +DO_TYPEDEF(0x03CB5AF8, AstarData_GetRaycastableGraphs_d_68); +DO_TYPEDEF(0x03CB71E8, Action_2_System_Collections_Generic_List_1_Boolean_); +DO_TYPEDEF(0x03CBC5B0, AnimationLink); +DO_TYPEDEF(0x03CB59B0, AstarDebugger_GraphPoint__Array); +DO_TYPEDEF(0x03CB58F0, AstarDebugger_PathTypeDebug__Array); +DO_TYPEDEF(0x03CB5878, AstarDebugger_c); +DO_TYPEDEF(0x03CB71F8, INavmesh); +DO_TYPEDEF(0x03CB7210, Action_2_System_Collections_Generic_List_1_Boolean__1); +DO_TYPEDEF(0x03CB7218, Action_1_UnityEngine_Vector3__1); +DO_TYPEDEF(0x03CB7200, GraphUtilities_c_DisplayClass0_0); +DO_TYPEDEF(0x03CB71B0, GraphUtilities_c_DisplayClass1_0); +DO_TYPEDEF(0x03CB71C8, Dictionary_2_System_Int32_Pathfinding_Int3_); +DO_TYPEDEF(0x03CFB510, NodeLink3Node); +DO_TYPEDEF(0x03CB6FA8, NodeLink3); +DO_TYPEDEF(0x03CB6F00, Dictionary_2_Pathfinding_GraphNode_Pathfinding_NodeLink3_); +DO_TYPEDEF(0x03CB6E60, PathProcessor_c_DisplayClass24_0); +DO_TYPEDEF(0x03CB6DC0, PathProcessor_CalculatePaths_d_36); +DO_TYPEDEF(0x03CFB9A0, IPathInternals); +DO_TYPEDEF(0x03CB6E10, ThreadControlQueue_QueueTerminationException); +DO_TYPEDEF(0x03CB6BE0, GraphNode_c_DisplayClass59_0); +DO_TYPEDEF(0x03CB6BD0, GraphNode_c_DisplayClass64_0); +DO_TYPEDEF(0x03CB6B88, Path_WaitForPath_d_51); +DO_TYPEDEF(0x03CB69F0, NavGraph_c_DisplayClass11_0); +DO_TYPEDEF(0x03CB69D8, NavGraph_c_DisplayClass12_0); +DO_TYPEDEF(0x03CB69C0, NavGraph_c_DisplayClass18_0); +DO_TYPEDEF(0x03CB69A0, NavGraph_c_DisplayClass21_0); +DO_TYPEDEF(0x03CB6988, NavGraph_c); +DO_TYPEDEF(0x03CB6970, NavGraph_c_DisplayClass32_0); +DO_TYPEDEF(0x03CB6940, NavGraph_c_DisplayClass33_0); +DO_TYPEDEF(0x03CB68F8, GridGraph_c); +DO_TYPEDEF(0x03CB6898, GridGraph_c_DisplayClass59_0); +DO_TYPEDEF(0x03CB6830, GridGraph_ScanInternal_d_85); +DO_TYPEDEF(0x03CB83F0, LayerGridGraph_ScanInternal_d_20); +DO_TYPEDEF(0x03CB8408, LayerGridGraphUpdate); +DO_TYPEDEF(0x03CB7C08, NavmeshBase_c_DisplayClass83_0); +DO_TYPEDEF(0x03CB7B48, NavmeshBase_c_DisplayClass83_1); +DO_TYPEDEF(0x03CB7B60, Func_2_Pathfinding_Connection_Boolean_); +DO_TYPEDEF(0x03CB7BD8, NavmeshBase_c); +DO_TYPEDEF(0x03CB7C38, Func_2_Pathfinding_NavmeshTile_System_Collections_Generic_IEnumerable_1_); +DO_TYPEDEF(0x03CB7C78, Func_2_Pathfinding_TriangleMeshNode_Pathfinding_TriangleMeshNode_); +DO_TYPEDEF(0x03CB7C50, Func_2_Pathfinding_TriangleMeshNode_Pathfinding_Connection_); +DO_TYPEDEF(0x03CB7B00, NavMeshGraph_c_DisplayClass19_0); +DO_TYPEDEF(0x03CB7AE8, NavMeshGraph_ScanInternal_d_21); +DO_TYPEDEF(0x03CD7320, CustomTriangleMeshNode); +DO_TYPEDEF(0x03CB9628, PointGraph_ScanInternal_d_35); +DO_TYPEDEF(0x03CB9620, PointGraph_ConnectNodesAsync_d_37); +DO_TYPEDEF(0x03CB95D8, List_1_Pathfinding_Connection_); +DO_TYPEDEF(0x03CB9518, List_1_Pathfinding_Voxels_RasterizationMesh___Array); +DO_TYPEDEF(0x03CB9548, RecastGraph_ScanInternal_d_46); +DO_TYPEDEF(0x03CB9418, RecastGraph_c_DisplayClass50_0); +DO_TYPEDEF(0x03CB9420, Voxelize__Array); +DO_TYPEDEF(0x03CB9428, RecastGraph_c_DisplayClass50_1); +DO_TYPEDEF(0x03CB9500, RecastGraph_ScanAllTiles_d_50); +DO_TYPEDEF(0x03CB9430, Queue_1_Pathfinding_Int2_); +DO_TYPEDEF(0x03CB9398, EuclideanEmbedding_c_DisplayClass17_0); +DO_TYPEDEF(0x03CB9388, EuclideanEmbedding_c_DisplayClass18_0); +DO_TYPEDEF(0x03CB9350, EuclideanEmbedding_c_DisplayClass20_0); +DO_TYPEDEF(0x03CB9310, EuclideanEmbedding_c_DisplayClass20_1); +DO_TYPEDEF(0x03CBA1A0, Dictionary_2_Pathfinding_GraphNode_Pathfinding_GraphNode_); +DO_TYPEDEF(0x03CB9308, EuclideanEmbedding_c_DisplayClass20_2); +DO_TYPEDEF(0x03CB91F8, PointKDTree_CompareX); +DO_TYPEDEF(0x03CB91F0, PointKDTree_CompareY); +DO_TYPEDEF(0x03CB91E8, PointKDTree_CompareZ); +DO_TYPEDEF(0x03CB9140, RecastBBTree); +DO_TYPEDEF(0x03CB91C0, RecastBBTreeBox); +DO_TYPEDEF(0x03CB9198, RecastMeshObj); +DO_TYPEDEF(0x03CB9148, List_1_Pathfinding_RecastMeshObj_); +DO_TYPEDEF(0x03CB91B0, RecastMeshObj__Array); +DO_TYPEDEF(0x03CB9138, AdvancedSmooth_TurnConstructor); +DO_TYPEDEF(0x03CB90F8, AdvancedSmooth_MaxTurn); +DO_TYPEDEF(0x03CB9128, List_1_Pathfinding_AdvancedSmooth_Turn_); +DO_TYPEDEF(0x03CB9100, AdvancedSmooth_ConstantTurn); +DO_TYPEDEF(0x03CBA6C8, RaycastModifier); +DO_TYPEDEF(0x03CBA598, NavmeshCut); +DO_TYPEDEF(0x03CCE1B8, List_1_List_1_UnityEngine_Vector3_); +DO_TYPEDEF(0x03CBA420, RelevantGraphSurface); +DO_TYPEDEF(0x03CBA2C8, EndingConditionDistance); +DO_TYPEDEF(0x03CBA108, FloodPathConstraint); +DO_TYPEDEF(0x03CB9ED8, ABPathEndingCondition); +DO_TYPEDEF(0x03CB9D98, Dictionary_2_Pathfinding_GraphNode_List_1_Pathfinding_SingleNodeBlocker_); +DO_TYPEDEF(0x03CBC5C8, List_1_Pathfinding_SingleNodeBlocker_); +DO_TYPEDEF(0x03CBC5D8, BlockManager_TraversalProvider); +DO_TYPEDEF(0x03CB9E18, BlockManager_c_DisplayClass6_0); +DO_TYPEDEF(0x03CB9DC0, BlockManager_c_DisplayClass7_0); +DO_TYPEDEF(0x03CBAEB8, AstarProfiler); +DO_TYPEDEF(0x03CBAD20, Dictionary_2_System_String_Pathfinding_AstarProfiler_ProfilePoint_); +DO_TYPEDEF(0x03CBAE80, AstarProfiler_ProfilePoint); +DO_TYPEDEF(0x03CBAE88, AstarProfiler_ProfilePoint__Array); +DO_TYPEDEF(0x03CBAB80, PathUtilities_c_DisplayClass3_0); +DO_TYPEDEF(0x03CBABC8, HashSet_1_Pathfinding_GraphNode_); +DO_TYPEDEF(0x03CBAB50, PathUtilities_c_DisplayClass6_0); +DO_TYPEDEF(0x03CBAB78, Dictionary_2_Pathfinding_GraphNode_System_Int32_); +DO_TYPEDEF(0x03CBA990, LegacyRichAI); +DO_TYPEDEF(0x03CBA9D8, LegacyRVOController); +DO_TYPEDEF(0x03CB9508, RecastMeshGatherer); +DO_TYPEDEF(0x03CBC120, RecastMeshGatherer_CapsuleCache); +DO_TYPEDEF(0x03CBC220, List_1_Pathfinding_Recast_RecastMeshGatherer_CapsuleCache_); +DO_TYPEDEF(0x03CBC048, AstarSerializer_c_DisplayClass29_0); +DO_TYPEDEF(0x03CBC030, AstarSerializer_c_DisplayClass30_0); +DO_TYPEDEF(0x03CBC010, AstarSerializer_c_DisplayClass32_0); +DO_TYPEDEF(0x03CBBF10, AstarSerializer_c_DisplayClass43_0); +DO_TYPEDEF(0x03CBBF00, AstarSerializer_c_DisplayClass44_0); +DO_TYPEDEF(0x03CBBED0, AstarSerializer_c_DisplayClass45_0); +DO_TYPEDEF(0x03CBC068, TinyJsonSerializer); +DO_TYPEDEF(0x03CBBE30, Dictionary_2_System_Type_System_Action_1_); +DO_TYPEDEF(0x03CBBF88, TinyJsonDeserializer); +DO_TYPEDEF(0x03CFB710, Draw); +DO_TYPEDEF(0x03CBB918, TileHandler_Cut); +DO_TYPEDEF(0x03CBB9B0, Polygon_1); +DO_TYPEDEF(0x03CDED88, TriangulationPoint); +DO_TYPEDEF(0x03CDF250, List_1_Pathfinding_Poly2Tri_TriangulationPoint_); +DO_TYPEDEF(0x03CDED60, DTSweepConstraint); +DO_TYPEDEF(0x03CDECA8, List_1_Pathfinding_Poly2Tri_DTSweepConstraint_); +DO_TYPEDEF(0x03CDF118, List_1_Pathfinding_Poly2Tri_Polygon_); +DO_TYPEDEF(0x03CDEF48, DelaunayTriangle); +DO_TYPEDEF(0x03CDF170, List_1_Pathfinding_Poly2Tri_DelaunayTriangle_); +DO_TYPEDEF(0x03CBB9B8, PolygonPoint); +DO_TYPEDEF(0x03CDECD8, DTSweepDebugContext); +DO_TYPEDEF(0x03CDEF68, AdvancingFrontNode); +DO_TYPEDEF(0x03CDEE70, Triangulatable); +DO_TYPEDEF(0x03CDF2E0, DTSweepContext); +DO_TYPEDEF(0x03CDEE68, AdvancingFront); +DO_TYPEDEF(0x03CDEE18, DTSweepBasin); +DO_TYPEDEF(0x03CDEE20, DTSweepEdgeEvent); +DO_TYPEDEF(0x03CDEE10, DTSweepPointComparator); +DO_TYPEDEF(0x03CBBB40, IList_1_Pathfinding_Poly2Tri_DelaunayTriangle_); +DO_TYPEDEF(0x03CBB9A0, PolyTree); +DO_TYPEDEF(0x03CBB840, TileHandler_c_DisplayClass37_0); +DO_TYPEDEF(0x03CBB828, TileHandler_c_DisplayClass41_0); +DO_TYPEDEF(0x03CBC690, RVONavmesh_c_DisplayClass8_0); +DO_TYPEDEF(0x03CBC680, RVONavmesh_c_DisplayClass9_0); +DO_TYPEDEF(0x03CBC608, RVOSimulator); +DO_TYPEDEF(0x03CBC5C0, AnimationLinkTraverser_TraverseOffMeshLink_d_4); +DO_TYPEDEF(0x03CCE7B0, ZLZoHhNFMCGTXnwWxfttfyLCMCQj); DO_TYPEDEF(0x03C8D270, TwEEqzAdHdQMPMbtxaTUEBRaqYhhb); +DO_TYPEDEF(0x03CCE7F8, HhyJayjEkazMHJnFosltszjdHjxA); DO_TYPEDEF(0x03C8D000, rULHSySJJYaatQjUGwzXfVaVsuaC_3_eIOeMVETDBCpONALFPUSmkDfCaEg_uOqstchGzYFsOAddzFFaQYYGenBDb_tSPvxZUJjzaTiAEejeAOLKctGpmKA_); +DO_TYPEDEF(0x03CCE9C8, GqryNrYEvkExVmQzJVqPbzHUZsSB); DO_TYPEDEF(0x03C8D170, rPGgilLxmMTekXrALcMmwLgZUrTO); DO_TYPEDEF(0x03C8D098, FKhSbiIliqzGLmbRIjbdTJHpKbLA__Enum); +DO_TYPEDEF(0x03CC9098, jlOcQLgjodoHrMnRTMaZoBnVTQkmA); +DO_TYPEDEF(0x03CC90B0, pkfvdhAgvJBekrlDorTPuCftMpCU); +DO_TYPEDEF(0x03CC90F8, Dictionary_2_System_String_jlOcQLgjodoHrMnRTMaZoBnVTQkmA_); +DO_TYPEDEF(0x03CCE9A0, IList_1_IEpqttsJBVpdPbiISguYNqxToTKd_); +DO_TYPEDEF(0x03CCE9D0, DirectInputAxis__Enum); +DO_TYPEDEF(0x03CCE640, eIOeMVETDBCpONALFPUSmkDfCaEg); +DO_TYPEDEF(0x03CCE798, nOdVPLBpoCzigRpttrVItEeXOHjK); +DO_TYPEDEF(0x03CCF990, bcOmlpGgwVCrecHKRjwdQzyizLQGA_zPdKqgvkhJiMWHlWrgKrPGzAQOwA); +DO_TYPEDEF(0x03CCF998, bcOmlpGgwVCrecHKRjwdQzyizLQGA_cIyeLAkawaCKenVDjzymlkuwIPuDA); +DO_TYPEDEF(0x03CCE910, eiAEQUagfGTjXRjdiGwJDzSBPdYSA); +DO_TYPEDEF(0x03CCE8A0, znMZhiOLtznjGEIVUrVliWSuIivu); +DO_TYPEDEF(0x03CD2118, List_1_znMZhiOLtznjGEIVUrVliWSuIivu_); +DO_TYPEDEF(0x03CD2128, ReadOnlyCollection_1_znMZhiOLtznjGEIVUrVliWSuIivu_); +DO_TYPEDEF(0x03CCE8E8, IList_1_znMZhiOLtznjGEIVUrVliWSuIivu_); +DO_TYPEDEF(0x03CCE578, mnnDsnejpZEXCYBwEaOUubxgEUzu); +DO_TYPEDEF(0x03CD1CF8, UpdateLoopDataSet_1_mnnDsnejpZEXCYBwEaOUubxgEUzu_JjBAfNDEcTONUYMfiYbXwYKVVOcAA_); +DO_TYPEDEF(0x03CD1D18, mnnDsnejpZEXCYBwEaOUubxgEUzu_JjBAfNDEcTONUYMfiYbXwYKVVOcAA); +DO_TYPEDEF(0x03CD1D10, mnnDsnejpZEXCYBwEaOUubxgEUzu_TJCEzIehZurUHMVJYIAiFpFkLoKoA); +DO_TYPEDEF(0x03CCE580, AJsmGXHTskPzBiTBDSfAEVsAgBQd); +DO_TYPEDEF(0x03CD1DF8, UpdateLoopDataSet_1_AJsmGXHTskPzBiTBDSfAEVsAgBQd_ScAUiPDVTJpqftJwGhLKjPCZiivt_); +DO_TYPEDEF(0x03CD1D78, AJsmGXHTskPzBiTBDSfAEVsAgBQd_ScAUiPDVTJpqftJwGhLKjPCZiivt); +DO_TYPEDEF(0x03CCF808, MlYCrDknvgzHIeLWriwQBruRJPKAb); +DO_TYPEDEF(0x03CCF7E0, Keys__Enum); +DO_TYPEDEF(0x03CCF7D8, ScanCodeFlags__Enum); +DO_TYPEDEF(0x03CCF7F8, KeyState__Enum); +DO_TYPEDEF(0x03CD2130, AdxpHlVvHbUFAoIBbwQQELBqZvLB); +DO_TYPEDEF(0x03CD1DB8, Dictionary_2_System_Int32_Dictionary_2_System_Int32_UnityEngine_KeyCode_); +DO_TYPEDEF(0x03CD1DD8, Dictionary_2_System_Int32_UnityEngine_KeyCode_); +DO_TYPEDEF(0x03CD1E58, TCRXlPQtHbINhZHaJSiRiOxqgzebA); +DO_TYPEDEF(0x03CD2108, ValueWatcher_1_System_IntPtr_); +DO_TYPEDEF(0x03CD2148, Func_1_IntPtr_); +DO_TYPEDEF(0x03CD2138, Action_1_IntPtr_); +DO_TYPEDEF(0x03CCFD88, ZMqjCYehEKqIQMMhejVBKtVTTPMf); +DO_TYPEDEF(0x03CCFD58, ZMqjCYehEKqIQMMhejVBKtVTTPMf_tkPDljFlUTWCqmeHEUtBSxPpHDmqA); +DO_TYPEDEF(0x03CD1A78, mpaLPxHPAdcoRcKwvOFTaxXvswum); +DO_TYPEDEF(0x03CD1E90, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_hUpdaoQEbllsRpmCLDhzWcFrDjOHA); +DO_TYPEDEF(0x03CD1E98, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_hUpdaoQEbllsRpmCLDhzWcFrDjOHA__Array); +DO_TYPEDEF(0x03CD2100, dizNapQvKwuvFnHArdMGFroDLpMDb); +DO_TYPEDEF(0x03CCF870, NJXNwLLrhxyDOSGduoygSsnoYkiK); +DO_TYPEDEF(0x03CCE8F8, ZemgRaVLtbvyLNdCEKfootiqlVcK); +DO_TYPEDEF(0x03CCE8E0, LVmAHFBIGiDNZezbQNgpMBjcWLmOA); +DO_TYPEDEF(0x03CCF710, List_1_NJXNwLLrhxyDOSGduoygSsnoYkiK_); +DO_TYPEDEF(0x03CCF888, NJXNwLLrhxyDOSGduoygSsnoYkiK__Array); +DO_TYPEDEF(0x03CCFC60, YbqFPqlOhPbwgAIFLLewBFaMbWuFb); +DO_TYPEDEF(0x03CCE768, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE); +DO_TYPEDEF(0x03CCE6B8, List_1_YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE_); +DO_TYPEDEF(0x03CCE770, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_kmEsTSZdFFnIPZHCfAKxHljbQrJR); +DO_TYPEDEF(0x03CCE628, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_YxkmvjCgiJdMkrjxCfYBRnWcQdWC); +DO_TYPEDEF(0x03CCE648, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_pAzAwkLRobWbZzdQAhrePhbBcDcIA); +DO_TYPEDEF(0x03CCE668, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_kmEsTSZdFFnIPZHCfAKxHljbQrJR_EmzirSFTFiHtAsVxbZwpExkVigoi); DO_TYPEDEF(0x03C8D088, IEpqttsJBVpdPbiISguYNqxToTKd); +DO_TYPEDEF(0x03CCE7C8, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_bmycphkAyqKNoaTIKLUfvetjHrnTA); +DO_TYPEDEF(0x03CCE5A8, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_bmycphkAyqKNoaTIKLUfvetjHrnTA_wAEbikHXPiUhjCZkCxpMjGhOLrYn); +DO_TYPEDEF(0x03CCE5C8, List_1_YbqFPqlOhPbwgAIFLLewBFaMbWuFb_bmycphkAyqKNoaTIKLUfvetjHrnTA_wAEbikHXPiUhjCZkCxpMjGhOLrYn_); +DO_TYPEDEF(0x03CCE690, IEnumerator_1_YbqFPqlOhPbwgAIFLLewBFaMbWuFb_bmycphkAyqKNoaTIKLUfvetjHrnTA_wAEbikHXPiUhjCZkCxpMjGhOLrYn_); +DO_TYPEDEF(0x03CCE7E8, yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_System_Boolean_); +DO_TYPEDEF(0x03CCE7F0, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_PczzFmpcJXkkFcQBIAhQTASfBRLHA); +DO_TYPEDEF(0x03CCE7D8, yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_System_Collections_Generic_List_1_); +DO_TYPEDEF(0x03CCE790, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_WCWrnemrMnIApfYLoPRnewDeJmzbA); +DO_TYPEDEF(0x03CCE778, List_1_YbqFPqlOhPbwgAIFLLewBFaMbWuFb_WCWrnemrMnIApfYLoPRnewDeJmzbA_); +DO_TYPEDEF(0x03CCE7A0, Func_1_System_Collections_Generic_List_1__12); +DO_TYPEDEF(0x03CCE698, IEnumerable_1_YbqFPqlOhPbwgAIFLLewBFaMbWuFb_bmycphkAyqKNoaTIKLUfvetjHrnTA_wAEbikHXPiUhjCZkCxpMjGhOLrYn_); +DO_TYPEDEF(0x03CCE598, YbqFPqlOhPbwgAIFLLewBFaMbWuFb_bmycphkAyqKNoaTIKLUfvetjHrnTA_NoaDFLBntEVyrLFQjuULFTNrtGLz); +DO_TYPEDEF(0x03CCE558, List_1_IEpqttsJBVpdPbiISguYNqxToTKd_); +DO_TYPEDEF(0x03CCE990, IEnumerator_1_IEpqttsJBVpdPbiISguYNqxToTKd_); +DO_TYPEDEF(0x03CCFBF0, kFIrhYouotPQcJZqjklRXONdiOBk); +DO_TYPEDEF(0x03CCE908, DeviceType__Enum_1); +DO_TYPEDEF(0x03CCE518, kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ); +DO_TYPEDEF(0x03CCE508, List_1_kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ_); +DO_TYPEDEF(0x03CCE570, kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ); +DO_TYPEDEF(0x03CCFEC8, kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ_IPxIzDRSRdPphfeFncEoTAbRXhKJ); +DO_TYPEDEF(0x03CCFEC0, List_1_kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ_IPxIzDRSRdPphfeFncEoTAbRXhKJ_); +DO_TYPEDEF(0x03CCE4E8, IEnumerator_1_kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ_IPxIzDRSRdPphfeFncEoTAbRXhKJ_); +DO_TYPEDEF(0x03CCFCD8, lNxFJILufgduJyEUwukEQTSTSOGU); +DO_TYPEDEF(0x03CCE4F0, IEnumerable_1_kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ_IPxIzDRSRdPphfeFncEoTAbRXhKJ_); +DO_TYPEDEF(0x03CCFE78, kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ_yMNTTgVWSRJwyOzISTeNjRuONyKF); +DO_TYPEDEF(0x03CCFCF8, JRmFfGvKMkHFhkxbaEUMFVGagwzEc); +DO_TYPEDEF(0x03CCFE28, Action_1_EventArgs_); +DO_TYPEDEF(0x03CCFE08, Action_2_lNxFJILufgduJyEUwukEQTSTSOGU_aHWgfHQFfzeojacNUuWNWbRtoBCi_); +DO_TYPEDEF(0x03CCFD20, LGqFCRjpcFjJFbjtKNmHioEhMHIc); +DO_TYPEDEF(0x03CCF900, LGqFCRjpcFjJFbjtKNmHioEhMHIc_pjwCuktgoAHoRuCAkvRgwfAllrwv); +DO_TYPEDEF(0x03CCFD18, Action_4_SRYVsvBnJRRIGpAZWqJVixPIiJrt_lNxFJILufgduJyEUwukEQTSTSOGU_UInt32_IntPtr_); +DO_TYPEDEF(0x03CCFD48, SRYVsvBnJRRIGpAZWqJVixPIiJrt); +DO_TYPEDEF(0x03CCE7B8, YmMTSUgHoMLuIFBEDUyyrVpljvtC); +DO_TYPEDEF(0x03CCFC28, IndexedDictionary_2_System_Int32_Rewired_PlatformInputManager_); +DO_TYPEDEF(0x03CCFC10, YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb); +DO_TYPEDEF(0x03CCFB90, YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb_TKPMPusWChpubsSueSSSVXEvmtou); +DO_TYPEDEF(0x03CCFB60, List_1_YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb_TKPMPusWChpubsSueSSSVXEvmtou_); +DO_TYPEDEF(0x03CCFB78, YmMTSUgHoMLuIFBEDUyyrVpljvtC_IWZUnbwNuyxPFlXGOpEKcHdUoINd); +DO_TYPEDEF(0x03CCFBC0, YmMTSUgHoMLuIFBEDUyyrVpljvtC_ZmVAsXJBxkgbDiCwTwrQpoWELVge); +DO_TYPEDEF(0x03CCFAC0, DeviceType__Enum_2); +DO_TYPEDEF(0x03CCFAF0, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kKVyOYAdtYJrZyUqtCeuyKpidgaN); +DO_TYPEDEF(0x03CCE788, XWKLBhMJByLmRjCmXYTJulYaPqwJ); +DO_TYPEDEF(0x03CD1AD8, SDUBigUZVsETWpjLQahSbWCNVBzVA__Enum); +DO_TYPEDEF(0x03CCFAE0, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kHnKKSzKKDvrCOIKypwscWAsAlpt); +DO_TYPEDEF(0x03CCFB28, BdACSJchhOOtndVeqHEImuFxBOOY); +DO_TYPEDEF(0x03CCFA28, RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq_); +DO_TYPEDEF(0x03CCFAF8, XWKLBhMJByLmRjCmXYTJulYaPqwJ_kKVyOYAdtYJrZyUqtCeuyKpidgaN__Array); +DO_TYPEDEF(0x03CCFAD8, XWKLBhMJByLmRjCmXYTJulYaPqwJ_nQcgZoKIzAENPJyjNZphvOrblvAz); +DO_TYPEDEF(0x03CCFB08, XWKLBhMJByLmRjCmXYTJulYaPqwJ_YaWBSOGSSrYuejjxIPgOgikwrUfr); +DO_TYPEDEF(0x03CCFA88, XWKLBhMJByLmRjCmXYTJulYaPqwJ_YaWBSOGSSrYuejjxIPgOgikwrUfr_LlnZLsKOkGcztEBJUXEELsmJjENbA); +DO_TYPEDEF(0x03CCFA58, List_1_XWKLBhMJByLmRjCmXYTJulYaPqwJ_YaWBSOGSSrYuejjxIPgOgikwrUfr_LlnZLsKOkGcztEBJUXEELsmJjENbA_); +DO_TYPEDEF(0x03CCF9A0, bcOmlpGgwVCrecHKRjwdQzyizLQGA_ozzCwydVGqRtzfxkQeqCoZQcovRAA); +DO_TYPEDEF(0x03CCF890, uKZrdNmKhYlWXSGMEBBcLOFVDMcG); DO_TYPEDEF(0x03C8CD70, xPRgcRKBLoHYedzPQnPxbmJxtbbAb); DO_TYPEDEF(0x03C8CD68, xPRgcRKBLoHYedzPQnPxbmJxtbbAb__Array); +DO_TYPEDEF(0x03CCF878, rnwGumBskXMryeokghSZPtEShGNbB); +DO_TYPEDEF(0x03CD1FA8, SomlXTnRhQJAivORccsYfMDmTfon); +DO_TYPEDEF(0x03CCF880, rnwGumBskXMryeokghSZPtEShGNbB__Array); +DO_TYPEDEF(0x03CCF700, VmygOaZMePMYixMwHDTZwiDTgTwx_ynkBgOqbpMPRxusAAQsgHOtlPSzd); +DO_TYPEDEF(0x03CCF748, VmygOaZMePMYixMwHDTZwiDTgTwx_BOxQKWlqJkCqZgYbdmKoWcSioOHg); +DO_TYPEDEF(0x03CD1FC0, VmygOaZMePMYixMwHDTZwiDTgTwx); DO_TYPEDEF(0x03C8CD40, ORTGfyrtizZvDeIlwUvooZaSkBIl); +DO_TYPEDEF(0x03CCF7C0, VmygOaZMePMYixMwHDTZwiDTgTwx_KSREqnFwehoxndHZqHzDjWxKkJsRA__Array); +DO_TYPEDEF(0x03CCF828, eyjybgyWNBDpdMJljQxdWToGaToO); +DO_TYPEDEF(0x03CCF848, eyjybgyWNBDpdMJljQxdWToGaToO_NIsXWuPaxeAnSFqcMFfmvupvcVIk); DO_TYPEDEF(0x03C8CB28, cKatzIfcDZIPQqJnLqraRnKEdEBN); DO_TYPEDEF(0x03C8CF38, gWxrirpmIhQTmhziZnlXlEwmYtKB_FXsnnlyiFJcYzdmLMGisCrAMQXNgA); DO_TYPEDEF(0x03C8CB08, qmCgssHgeaDgijqXBUzdmdbXNPiuB); +DO_TYPEDEF(0x03CD1C90, fxvJDhgRhXRzTcBpAdpZBRnzpmHIb); +DO_TYPEDEF(0x03CCF830, AList_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_); +DO_TYPEDEF(0x03CCF768, List_1_rnwGumBskXMryeokghSZPtEShGNbB_); +DO_TYPEDEF(0x03CCF740, VmygOaZMePMYixMwHDTZwiDTgTwx_HkfGopCVHlqTtIiiKwpaEmRfyeLK); +DO_TYPEDEF(0x03CD2190, LvZCVPtmcvoJGRjIDMmnLaqjtTcQ__Array); +DO_TYPEDEF(0x03CCF708, VmygOaZMePMYixMwHDTZwiDTgTwx_iLazXnUUNokTZZmllhciMxhlGpmfA); +DO_TYPEDEF(0x03CD2198, VmygOaZMePMYixMwHDTZwiDTgTwx_HkfGopCVHlqTtIiiKwpaEmRfyeLK__Array); +DO_TYPEDEF(0x03CD2028, YGRBAcfQwvGWVUaYYJtDYIzQnxML); +DO_TYPEDEF(0x03CD2040, IList_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_); +DO_TYPEDEF(0x03CD1E38, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_tHcuMrcnEhbKRfgsSwbqOsBBnpSm); DO_TYPEDEF(0x03C8CD50, fLjFYZNXAkNVBBnhvInnCjAiCvVOA); DO_TYPEDEF(0x03C8CDA8, DaPiHSWqNkwnoQqhHYvYHWcbhvqk); DO_TYPEDEF(0x03C8CD38, ORTGfyrtizZvDeIlwUvooZaSkBIl__Array); +DO_TYPEDEF(0x03CD1FA0, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_pLALiLGugFVPZvFGJIhmDJanjJCAA); +DO_TYPEDEF(0x03CD20A8, Action_1_znMZhiOLtznjGEIVUrVliWSuIivu_); +DO_TYPEDEF(0x03CD2010, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_wKBMOBVdNMFvqFDBJcHFYpmayfRS); +DO_TYPEDEF(0x03CCA508, Predicate_1_String_); +DO_TYPEDEF(0x03CD1F98, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_hnNyodFGRElgLSzHCgUPXWVnGvdg); +DO_TYPEDEF(0x03CD1FF0, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_GTvGFxRFzpOUREzXrZDCUjbScOHJ); +DO_TYPEDEF(0x03CD1F58, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_EudWpfUaVkMWIWGwWnmGkpaEufCF); +DO_TYPEDEF(0x03CD1F38, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_ClDTABYsniHDdeVYBfnurTEzopUjA); +DO_TYPEDEF(0x03CD1F80, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_duOBKFiKPZioaWPKwoFTxiyHVtjE); +DO_TYPEDEF(0x03CD1ED8, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_AYMuEYEJYFDsvzTwBMYcMfYqEKLc); +DO_TYPEDEF(0x03CD1EB0, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_KoMOdQDxpgPjKjgGZZknfoBiPpoc); +DO_TYPEDEF(0x03CD1F30, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_MWXWwPbumsHUmhTKqjUOnMwOCbRDA); +DO_TYPEDEF(0x03CD1E80, eiAEQUagfGTjXRjdiGwJDzSBPdYSA_arqVnzNJHGvifXPSCBughnhbuUXqA); +DO_TYPEDEF(0x03CD1CC0, GFKZjHfobKJLrxczgBweGNPXMszRA); +DO_TYPEDEF(0x03CD1C28, fuxLlWsjEGbhmJsWNqYSFBhaScUe); +DO_TYPEDEF(0x03CF5718, IpQCkqlgJLyrFpAOyBfUxXQpJsWK); +DO_TYPEDEF(0x03CD1BC0, DtqAEEJiDJPjNlUOxJfuxiAZflzJ); +DO_TYPEDEF(0x03CD1B40, Dictionary_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_DtqAEEJiDJPjNlUOxJfuxiAZflzJ_); +DO_TYPEDEF(0x03CD1C40, cbyUiVefFlHVnbUJtDuDNQeJTsfmA); +DO_TYPEDEF(0x03CD1E68, ForwardRawInputEventsToUnityDelegate); +DO_TYPEDEF(0x03CD1A98, SfDmCQCjerbvNXSRAQskzDQgvyUE); +DO_TYPEDEF(0x03CD1F10, Action_2_KGpfpVumzcziOxJRZbURZTEAJARe_Double_); +DO_TYPEDEF(0x03CD1EF8, Action_2_fsRiDBEERnIQlMGEHJRgRRiEbYqF_Double_); +DO_TYPEDEF(0x03CD1F18, Action_2_HAtiKZlBnjTWOWEtNgXBPPGKUhuP_Double_); +DO_TYPEDEF(0x03CD2030, List_1_OTOWXECUgLIzgwXfEeXoDsFfLoRQ_); +DO_TYPEDEF(0x03CD1A58, yUgrsNEvLzxrXGzkHTUPIBJYGDah__Array); +DO_TYPEDEF(0x03CD1A30, aOHEnKCFymegycPegEXPFUjlaUPpA__Array); DO_TYPEDEF(0x03C8D288, YrFMyfiLgpyDeEARLCikjyqxmMMJ); DO_TYPEDEF(0x03C8D280, UeUkhRcOLNmLrceQTbCUqfXnCKWS); DO_TYPEDEF(0x03C8D1A8, NFikfIAJlwJkNAEmwUGtOYnGGzB); @@ -1181,6 +8035,10 @@ DO_TYPEDEF(0x03C8D250, Dictionary_2_System_IntPtr_List_1_NFikfIAJlwJkNAEmwUGtOYn DO_TYPEDEF(0x03C8D1A0, List_1_NFikfIAJlwJkNAEmwUGtOYnGGzB_); DO_TYPEDEF(0x03C8D118, OaSOlzSwSlKTYFRuIsyqYGBlRNoV_ZybmJoyoAuBRmtzJvXGWwWNrHzOc); DO_TYPEDEF(0x03C8D0D0, MMEMBMVknmmSyquroJWRlzXgZuxA); +DO_TYPEDEF(0x03CCE9F0, DeviceType__Enum_3); +DO_TYPEDEF(0x03CC90B8, xgCcYdjKRQMbzInDtFoOimkrwUPF); +DO_TYPEDEF(0x03CC9090, eWMwVZsbMzrrgLhCbeBgUICQPRbg); +DO_TYPEDEF(0x03CCE9A8, IList_1_xHrRgXbpglyyLcUqeKrUBIwiHmMg_); DO_TYPEDEF(0x03C8D080, nFndkMjTXqlRMeVVGCxPcylopsxz); DO_TYPEDEF(0x03C8D020, xHrRgXbpglyyLcUqeKrUBIwiHmMg); DO_TYPEDEF(0x03C8D068, HhyJayjEkazMHJnFosltszjdHjxA_rSotNEMJOPdGQymAyXNblfpQGKFR_EVQpSeKHXzBjQtgsjnZnMkFuMxDd); @@ -1206,6 +8064,460 @@ DO_TYPEDEF(0x03C8CC00, JijFgftvqSztIyGNBBwSiwjdSDyIA_AklTjkEFUKfWkEtLdSNUHbZsPBe DO_TYPEDEF(0x03C8CB98, JijFgftvqSztIyGNBBwSiwjdSDyIA_ItwMtrMHGWUaPXecvujHmXaeJDzA); DO_TYPEDEF(0x03C8CD18, gWxrirpmIhQTmhziZnlXlEwmYtKB_QpfrOmwHesfdZMwAoLXiDrdPqtqG); DO_TYPEDEF(0x03C8CD60, gWxrirpmIhQTmhziZnlXlEwmYtKB_NnfkkURQFkEaKHcQqtZJRYCtsuqw); +DO_TYPEDEF(0x03CFD908, BokehRenderer); +DO_TYPEDEF(0x03CFD760, DeluxeFilmicCurve); +DO_TYPEDEF(0x03CFD958, UBHelper); +DO_TYPEDEF(0x03CFD960, UBHelper_Styles); +DO_TYPEDEF(0x03CFD738, UltimateBloom_BlurSampleCount__Enum); +DO_TYPEDEF(0x03CFD3C0, ArraySegment_1_Int32_); +DO_TYPEDEF(0x03D00998, DecalLayer); +DO_TYPEDEF(0x03CFD658, DecalLayerChannel); +DO_TYPEDEF(0x03CFD2A8, WetDecalSystem_DecalRenderInstance_c); +DO_TYPEDEF(0x03CFD350, WetDecalSystem_c); +DO_TYPEDEF(0x03CFD368, Func_1_PlaceholderSoftware_WetStuff_WetDecalSystem_State_); +DO_TYPEDEF(0x03CFD008, ParticleWetSplatter_Splatter); +DO_TYPEDEF(0x03CFD098, List_1_PlaceholderSoftware_WetStuff_ParticleWetSplatter_Splatter_); +DO_TYPEDEF(0x03D009F0, ParticleWetSplatter_DecalSettingsSaturationProxy); +DO_TYPEDEF(0x03CFD3B0, IDecalSettings); +DO_TYPEDEF(0x03CFD0A0, List_1_UnityEngine_ParticleCollisionEvent_); +DO_TYPEDEF(0x03CFD0D8, ParticleWetSplatter_CoreSettings); +DO_TYPEDEF(0x03CFD0B8, ParticleWetSplatter_LimitSettings); +DO_TYPEDEF(0x03CFD0C8, ParticleWetSplatter_ImpactVelocitySettings); +DO_TYPEDEF(0x03CFD088, ParticleWetSplatter_RandomizeSizeSettings); +DO_TYPEDEF(0x03CFD090, ParticleWetSplatter_RandomizeOrientationSettings); +DO_TYPEDEF(0x03CFD080, ParticleWetSplatter_RecyclingSettings); +DO_TYPEDEF(0x03CFD0C0, ParticleWetSplatter_LifetimeSettings); +DO_TYPEDEF(0x03D00988, DecalSettings); +DO_TYPEDEF(0x03D00930, WetDecal); +DO_TYPEDEF(0x03D00860, RainPuddle_ChannelValues); +DO_TYPEDEF(0x03D00868, RainPuddle_ChannelCurves); +DO_TYPEDEF(0x03D00848, RainPuddle_DecalStateCurves); +DO_TYPEDEF(0x03D00910, RainPuddle); +DO_TYPEDEF(0x03D008B8, RainPuddle_RainDecal); +DO_TYPEDEF(0x03D008F0, List_1_PlaceholderSoftware_WetStuff_Weather_RainPuddle_RainDecal_); +DO_TYPEDEF(0x03D008D0, Stack_1_PlaceholderSoftware_WetStuff_Weather_RainPuddle_RainDecal_); +DO_TYPEDEF(0x03D00788, SingleMixer); +DO_TYPEDEF(0x03D00790, DecalSettingsMixer_DecalLayerDataMixer); +DO_TYPEDEF(0x03D00748, BoolMixer); +DO_TYPEDEF(0x03D00738, DecalSettingsMixer_DecalLayerChannelDataMixer); +DO_TYPEDEF(0x03D006C0, Vector2Mixer); +DO_TYPEDEF(0x03CFD510, RenderSettings_1); +DO_TYPEDEF(0x03D00150, DebugSettings); +DO_TYPEDEF(0x03CFFCF8, LogLevel__Enum_1); +DO_TYPEDEF(0x03D00100, List_1_PlaceholderSoftware_WetStuff_Debugging_LogLevel_); +DO_TYPEDEF(0x03D000B8, DebugSettings_c); +DO_TYPEDEF(0x03D00118, Func_2_PlaceholderSoftware_WetStuff_Debugging_LogCategory_Int32_); +DO_TYPEDEF(0x03CFFDA0, LogCategory__Enum); +DO_TYPEDEF(0x03CFFF70, WetSurfaceDecalsException); +DO_TYPEDEF(0x03CFFC00, My_Half_edge); +DO_TYPEDEF(0x03CFF820, My_Half_vertex); +DO_TYPEDEF(0x03CFFBC8, List_1_MantisLOD_My_Half_edge_); +DO_TYPEDEF(0x03CFF830, My_Half_edge__Array); +DO_TYPEDEF(0x03CFF828, My_Half_face); +DO_TYPEDEF(0x03CFF630, My_Half_edge_index); +DO_TYPEDEF(0x03CFF620, My_Half_trace); +DO_TYPEDEF(0x03CFFB90, List_1_MantisLOD_My_Half_face_); +DO_TYPEDEF(0x03CFFB80, List_1_MantisLOD_My_Half_edge_index_); +DO_TYPEDEF(0x03CFFA00, MinHeap); +DO_TYPEDEF(0x03CFF818, Vector3Comparer); +DO_TYPEDEF(0x03CFF560, Progressive_Mesh); +DO_TYPEDEF(0x03CFFA50, List_1_MantisLOD_My_Half_vertex_); +DO_TYPEDEF(0x03CFFA38, List_1_MantisLOD_My_Half_trace_); +DO_TYPEDEF(0x03CFF460, Lod_Mesh); +DO_TYPEDEF(0x03CFF468, Lod_Mesh_Table); +DO_TYPEDEF(0x03CFF470, Lod_Mesh__Array); +DO_TYPEDEF(0x03CFF4F0, ProgressiveMesh); +DO_TYPEDEF(0x03CFF498, Dictionary_2_System_String_MantisLODEditor_Lod_Mesh_Table_); +DO_TYPEDEF(0x03CFF338, ActivityManager_FFIMethods); +DO_TYPEDEF(0x03D05B48, ActivityManager_FFIMethods_RegisterCommandMethod); +DO_TYPEDEF(0x03D05B38, ActivityManager_FFIMethods_RegisterSteamMethod); +DO_TYPEDEF(0x03D05B08, ActivityManager_FFIMethods_UpdateActivityMethod); +DO_TYPEDEF(0x03CFF208, ActivityManager_FFIMethods_UpdateActivityCallback); +DO_TYPEDEF(0x03D05B58, ActivityManager_FFIMethods_ClearActivityMethod); +DO_TYPEDEF(0x03CFF1E8, ActivityManager_FFIMethods_ClearActivityCallback); +DO_TYPEDEF(0x03D05B18, ActivityManager_FFIMethods_SendRequestReplyMethod); +DO_TYPEDEF(0x03D05A28, ActivityJoinRequestReply__Enum); +DO_TYPEDEF(0x03CFF1D0, ActivityManager_FFIMethods_SendRequestReplyCallback); +DO_TYPEDEF(0x03D05B28, ActivityManager_FFIMethods_SendInviteMethod); +DO_TYPEDEF(0x03CFF1B8, ActivityManager_FFIMethods_SendInviteCallback); +DO_TYPEDEF(0x03D05B68, ActivityManager_FFIMethods_AcceptInviteMethod); +DO_TYPEDEF(0x03CFF1A0, ActivityManager_FFIMethods_AcceptInviteCallback); +DO_TYPEDEF(0x03CFF1F8, ActivityManager_ClearActivityHandler); +DO_TYPEDEF(0x03CFF1E0, ActivityManager_SendRequestReplyHandler); +DO_TYPEDEF(0x03CFF1C8, ActivityManager_SendInviteHandler); +DO_TYPEDEF(0x03CFF1B0, ActivityManager_AcceptInviteHandler); +DO_TYPEDEF(0x03D05368, ImageHandle); +DO_TYPEDEF(0x03D05910, LobbyTransaction_FFIMethods); +DO_TYPEDEF(0x03D05878, LobbyTransaction_FFIMethods_SetTypeMethod); +DO_TYPEDEF(0x03D05848, LobbyType__Enum); +DO_TYPEDEF(0x03D05880, LobbyTransaction_FFIMethods_SetOwnerMethod); +DO_TYPEDEF(0x03D058A0, LobbyTransaction_FFIMethods_SetCapacityMethod); +DO_TYPEDEF(0x03D05888, LobbyTransaction_FFIMethods_SetMetadataMethod); +DO_TYPEDEF(0x03D058B0, LobbyTransaction_FFIMethods_DeleteMetadataMethod); +DO_TYPEDEF(0x03D05890, LobbyTransaction_FFIMethods_SetLockedMethod); +DO_TYPEDEF(0x03D057A8, LobbyMemberTransaction_FFIMethods); +DO_TYPEDEF(0x03D05740, LobbyMemberTransaction_FFIMethods_SetMetadataMethod); +DO_TYPEDEF(0x03D05748, LobbyMemberTransaction_FFIMethods_DeleteMetadataMethod); +DO_TYPEDEF(0x03D05708, LobbySearchQuery_FFIMethods); +DO_TYPEDEF(0x03D056D8, LobbySearchQuery_FFIMethods_FilterMethod); +DO_TYPEDEF(0x03D056B8, LobbySearchComparison__Enum); +DO_TYPEDEF(0x03D056C0, LobbySearchCast__Enum); +DO_TYPEDEF(0x03D056C8, LobbySearchQuery_FFIMethods_SortMethod); +DO_TYPEDEF(0x03D056D0, LobbySearchQuery_FFIMethods_LimitMethod); +DO_TYPEDEF(0x03D056E0, LobbySearchQuery_FFIMethods_DistanceMethod); +DO_TYPEDEF(0x03D056B0, LobbySearchDistance__Enum); +DO_TYPEDEF(0x03CFF2C0, ResultException); +DO_TYPEDEF(0x03D056A0, Discord_FFIMethods); +DO_TYPEDEF(0x03D05588, Discord_FFIMethods_DestroyHandler); +DO_TYPEDEF(0x03D05520, Discord_FFIMethods_RunCallbacksMethod); +DO_TYPEDEF(0x03D05518, Discord_FFIMethods_SetLogHookMethod); +DO_TYPEDEF(0x03D05510, LogLevel__Enum_2); +DO_TYPEDEF(0x03D055F0, Discord_FFIMethods_SetLogHookCallback); +DO_TYPEDEF(0x03D05570, Discord_FFIMethods_GetApplicationManagerMethod); +DO_TYPEDEF(0x03D05530, Discord_FFIMethods_GetUserManagerMethod); +DO_TYPEDEF(0x03D05568, Discord_FFIMethods_GetImageManagerMethod); +DO_TYPEDEF(0x03D05578, Discord_FFIMethods_GetActivityManagerMethod); +DO_TYPEDEF(0x03D05548, Discord_FFIMethods_GetRelationshipManagerMethod); +DO_TYPEDEF(0x03D05560, Discord_FFIMethods_GetLobbyManagerMethod); +DO_TYPEDEF(0x03D05558, Discord_FFIMethods_GetNetworkManagerMethod); +DO_TYPEDEF(0x03D05550, Discord_FFIMethods_GetOverlayManagerMethod); +DO_TYPEDEF(0x03D05540, Discord_FFIMethods_GetStorageManagerMethod); +DO_TYPEDEF(0x03D05538, Discord_FFIMethods_GetStoreManagerMethod); +DO_TYPEDEF(0x03D05528, Discord_FFIMethods_GetVoiceManagerMethod); +DO_TYPEDEF(0x03D05580, Discord_FFIMethods_GetAchievementManagerMethod); +DO_TYPEDEF(0x03D05608, Discord_SetLogHookHandler); +DO_TYPEDEF(0x03D05500, ApplicationManager_FFIMethods); +DO_TYPEDEF(0x03D05478, ApplicationManager_FFIMethods_ValidateOrExitMethod); +DO_TYPEDEF(0x03D054D8, ApplicationManager_FFIMethods_ValidateOrExitCallback); +DO_TYPEDEF(0x03D05490, ApplicationManager_FFIMethods_GetCurrentLocaleMethod); +DO_TYPEDEF(0x03D05498, ApplicationManager_FFIMethods_GetCurrentBranchMethod); +DO_TYPEDEF(0x03D05488, ApplicationManager_FFIMethods_GetOAuth2TokenMethod); +DO_TYPEDEF(0x03D054B8, ApplicationManager_FFIMethods_GetOAuth2TokenCallback); +DO_TYPEDEF(0x03D05470, OAuth2Token); +DO_TYPEDEF(0x03D05480, ApplicationManager_FFIMethods_GetTicketMethod); +DO_TYPEDEF(0x03D054A0, ApplicationManager_FFIMethods_GetTicketCallback); +DO_TYPEDEF(0x03D054E8, ApplicationManager_ValidateOrExitHandler); +DO_TYPEDEF(0x03D054C8, ApplicationManager_GetOAuth2TokenHandler); +DO_TYPEDEF(0x03D054B0, ApplicationManager_GetTicketHandler); +DO_TYPEDEF(0x03D05460, UserManager_FFIMethods); +DO_TYPEDEF(0x03D053F8, UserManager_FFIMethods_GetCurrentUserMethod); +DO_TYPEDEF(0x03D053E8, UserManager_FFIMethods_GetUserMethod); +DO_TYPEDEF(0x03D05420, UserManager_FFIMethods_GetUserCallback); +DO_TYPEDEF(0x03D053F0, UserManager_FFIMethods_GetCurrentUserPremiumTypeMethod); +DO_TYPEDEF(0x03D053E0, PremiumType__Enum); +DO_TYPEDEF(0x03D05400, UserManager_FFIMethods_CurrentUserHasFlagMethod); +DO_TYPEDEF(0x03D053D8, UserFlag__Enum); +DO_TYPEDEF(0x03D05428, UserManager_GetUserHandler); +DO_TYPEDEF(0x03D053C8, ImageManager_FFIMethods); +DO_TYPEDEF(0x03D05380, ImageManager_FFIMethods_FetchMethod); +DO_TYPEDEF(0x03D053A8, ImageManager_FFIMethods_FetchCallback); +DO_TYPEDEF(0x03D05370, ImageManager_FFIMethods_GetDimensionsMethod); +DO_TYPEDEF(0x03D05360, ImageDimensions); +DO_TYPEDEF(0x03D05378, ImageManager_FFIMethods_GetDataMethod); +DO_TYPEDEF(0x03D053B0, ImageManager_FetchHandler); +DO_TYPEDEF(0x03D05350, RelationshipManager_FFIMethods); +DO_TYPEDEF(0x03D052C8, RelationshipManager_FFIMethods_FilterMethod); +DO_TYPEDEF(0x03D05300, RelationshipManager_FFIMethods_FilterCallback); +DO_TYPEDEF(0x03D052D0, RelationshipManager_FFIMethods_CountMethod); +DO_TYPEDEF(0x03D052B8, RelationshipManager_FFIMethods_GetMethod); +DO_TYPEDEF(0x03D052C0, RelationshipManager_FFIMethods_GetAtMethod); +DO_TYPEDEF(0x03D05308, RelationshipManager_FilterHandler); +DO_TYPEDEF(0x03D052A8, LobbyManager_FFIMethods); +DO_TYPEDEF(0x03D04FA8, LobbyManager_FFIMethods_GetLobbyCreateTransactionMethod); +DO_TYPEDEF(0x03D04F80, LobbyManager_FFIMethods_GetLobbyUpdateTransactionMethod); +DO_TYPEDEF(0x03D04F68, LobbyManager_FFIMethods_GetMemberUpdateTransactionMethod); +DO_TYPEDEF(0x03D04FE0, LobbyManager_FFIMethods_CreateLobbyMethod); +DO_TYPEDEF(0x03D051B0, LobbyManager_FFIMethods_CreateLobbyCallback); +DO_TYPEDEF(0x03D04EF8, Lobby); +DO_TYPEDEF(0x03D04F08, LobbyManager_FFIMethods_UpdateLobbyMethod); +DO_TYPEDEF(0x03D05190, LobbyManager_FFIMethods_UpdateLobbyCallback); +DO_TYPEDEF(0x03D04FD8, LobbyManager_FFIMethods_DeleteLobbyMethod); +DO_TYPEDEF(0x03D05180, LobbyManager_FFIMethods_DeleteLobbyCallback); +DO_TYPEDEF(0x03D05000, LobbyManager_FFIMethods_ConnectLobbyMethod); +DO_TYPEDEF(0x03D05168, LobbyManager_FFIMethods_ConnectLobbyCallback); +DO_TYPEDEF(0x03D04FF8, LobbyManager_FFIMethods_ConnectLobbyWithActivitySecretMethod); +DO_TYPEDEF(0x03D05150, LobbyManager_FFIMethods_ConnectLobbyWithActivitySecretCallback); +DO_TYPEDEF(0x03D04FD0, LobbyManager_FFIMethods_DisconnectLobbyMethod); +DO_TYPEDEF(0x03D05138, LobbyManager_FFIMethods_DisconnectLobbyCallback); +DO_TYPEDEF(0x03D04F88, LobbyManager_FFIMethods_GetLobbyMethod); +DO_TYPEDEF(0x03D04FB0, LobbyManager_FFIMethods_GetLobbyActivitySecretMethod); +DO_TYPEDEF(0x03D04F90, LobbyManager_FFIMethods_GetLobbyMetadataValueMethod); +DO_TYPEDEF(0x03D04F98, LobbyManager_FFIMethods_GetLobbyMetadataKeyMethod); +DO_TYPEDEF(0x03D04F40, LobbyManager_FFIMethods_LobbyMetadataCountMethod); +DO_TYPEDEF(0x03D04F38, LobbyManager_FFIMethods_MemberCountMethod); +DO_TYPEDEF(0x03D04F60, LobbyManager_FFIMethods_GetMemberUserIdMethod); +DO_TYPEDEF(0x03D04F58, LobbyManager_FFIMethods_GetMemberUserMethod); +DO_TYPEDEF(0x03D04F70, LobbyManager_FFIMethods_GetMemberMetadataValueMethod); +DO_TYPEDEF(0x03D04F78, LobbyManager_FFIMethods_GetMemberMetadataKeyMethod); +DO_TYPEDEF(0x03D04F30, LobbyManager_FFIMethods_MemberMetadataCountMethod); +DO_TYPEDEF(0x03D04F00, LobbyManager_FFIMethods_UpdateMemberMethod); +DO_TYPEDEF(0x03D050C0, LobbyManager_FFIMethods_UpdateMemberCallback); +DO_TYPEDEF(0x03D04F18, LobbyManager_FFIMethods_SendLobbyMessageMethod); +DO_TYPEDEF(0x03D050A8, LobbyManager_FFIMethods_SendLobbyMessageCallback); +DO_TYPEDEF(0x03D04F50, LobbyManager_FFIMethods_GetSearchQueryMethod); +DO_TYPEDEF(0x03D04F20, LobbyManager_FFIMethods_SearchMethod); +DO_TYPEDEF(0x03D05088, LobbyManager_FFIMethods_SearchCallback); +DO_TYPEDEF(0x03D04F48, LobbyManager_FFIMethods_LobbyCountMethod); +DO_TYPEDEF(0x03D04FA0, LobbyManager_FFIMethods_GetLobbyIdMethod); +DO_TYPEDEF(0x03D04FE8, LobbyManager_FFIMethods_ConnectVoiceMethod); +DO_TYPEDEF(0x03D05070, LobbyManager_FFIMethods_ConnectVoiceCallback); +DO_TYPEDEF(0x03D04FC0, LobbyManager_FFIMethods_DisconnectVoiceMethod); +DO_TYPEDEF(0x03D05058, LobbyManager_FFIMethods_DisconnectVoiceCallback); +DO_TYPEDEF(0x03D04FF0, LobbyManager_FFIMethods_ConnectNetworkMethod); +DO_TYPEDEF(0x03D04FC8, LobbyManager_FFIMethods_DisconnectNetworkMethod); +DO_TYPEDEF(0x03D04FB8, LobbyManager_FFIMethods_FlushNetworkMethod); +DO_TYPEDEF(0x03D04F28, LobbyManager_FFIMethods_OpenNetworkChannelMethod); +DO_TYPEDEF(0x03D04F10, LobbyManager_FFIMethods_SendNetworkMessageMethod); +DO_TYPEDEF(0x03D051B8, LobbyManager_CreateLobbyHandler); +DO_TYPEDEF(0x03D051A0, LobbyManager_UpdateLobbyHandler); +DO_TYPEDEF(0x03D05188, LobbyManager_DeleteLobbyHandler); +DO_TYPEDEF(0x03D05170, LobbyManager_ConnectLobbyHandler); +DO_TYPEDEF(0x03D05158, LobbyManager_ConnectLobbyWithActivitySecretHandler); +DO_TYPEDEF(0x03D05140, LobbyManager_DisconnectLobbyHandler); +DO_TYPEDEF(0x03D050D0, LobbyManager_UpdateMemberHandler); +DO_TYPEDEF(0x03D050B8, LobbyManager_SendLobbyMessageHandler); +DO_TYPEDEF(0x03D05098, LobbyManager_SearchHandler); +DO_TYPEDEF(0x03D05078, LobbyManager_ConnectVoiceHandler); +DO_TYPEDEF(0x03D05060, LobbyManager_DisconnectVoiceHandler); +DO_TYPEDEF(0x03D04EE8, NetworkManager_FFIMethods); +DO_TYPEDEF(0x03D04E48, NetworkManager_FFIMethods_GetPeerIdMethod); +DO_TYPEDEF(0x03D04E50, NetworkManager_FFIMethods_FlushMethod); +DO_TYPEDEF(0x03D04E38, NetworkManager_FFIMethods_OpenPeerMethod); +DO_TYPEDEF(0x03D04E28, NetworkManager_FFIMethods_UpdatePeerMethod); +DO_TYPEDEF(0x03D04E58, NetworkManager_FFIMethods_ClosePeerMethod); +DO_TYPEDEF(0x03D04E40, NetworkManager_FFIMethods_OpenChannelMethod); +DO_TYPEDEF(0x03D04E60, NetworkManager_FFIMethods_CloseChannelMethod); +DO_TYPEDEF(0x03D04E30, NetworkManager_FFIMethods_SendMessageMethod); +DO_TYPEDEF(0x03D04E18, OverlayManager_FFIMethods); +DO_TYPEDEF(0x03D0CA98, OverlayManager_FFIMethods_IsEnabledMethod); +DO_TYPEDEF(0x03D0CA90, OverlayManager_FFIMethods_IsLockedMethod); +DO_TYPEDEF(0x03D0CA30, OverlayManager_FFIMethods_SetLockedMethod); +DO_TYPEDEF(0x03D04DD8, OverlayManager_FFIMethods_SetLockedCallback); +DO_TYPEDEF(0x03D0CA58, OverlayManager_FFIMethods_OpenActivityInviteMethod); +DO_TYPEDEF(0x03D04DC8, OverlayManager_FFIMethods_OpenActivityInviteCallback); +DO_TYPEDEF(0x03D0CA50, OverlayManager_FFIMethods_OpenGuildInviteMethod); +DO_TYPEDEF(0x03D04DB0, OverlayManager_FFIMethods_OpenGuildInviteCallback); +DO_TYPEDEF(0x03D0CA48, OverlayManager_FFIMethods_OpenVoiceSettingsMethod); +DO_TYPEDEF(0x03D04D98, OverlayManager_FFIMethods_OpenVoiceSettingsCallback); +DO_TYPEDEF(0x03D0CAA0, OverlayManager_FFIMethods_InitDrawingDxgiMethod); +DO_TYPEDEF(0x03D0CA60, OverlayManager_FFIMethods_OnPresentMethod); +DO_TYPEDEF(0x03D0CAD0, OverlayManager_FFIMethods_ForwardMessageMethod); +DO_TYPEDEF(0x03D0CA78, OverlayManager_FFIMethods_KeyEventMethod); +DO_TYPEDEF(0x03D0C9C0, KeyVariant__Enum); +DO_TYPEDEF(0x03D0CAD8, OverlayManager_FFIMethods_CharEventMethod); +DO_TYPEDEF(0x03D0CA70, OverlayManager_FFIMethods_MouseButtonEventMethod); +DO_TYPEDEF(0x03D0C9A0, MouseButton__Enum_2); +DO_TYPEDEF(0x03D0CA68, OverlayManager_FFIMethods_MouseMotionEventMethod); +DO_TYPEDEF(0x03D0CAB0, OverlayManager_FFIMethods_ImeCommitTextMethod); +DO_TYPEDEF(0x03D0CAA8, OverlayManager_FFIMethods_ImeSetCompositionMethod); +DO_TYPEDEF(0x03D0C988, ImeUnderline); +DO_TYPEDEF(0x03D0CAC0, OverlayManager_FFIMethods_ImeCancelCompositionMethod); +DO_TYPEDEF(0x03D0CA40, OverlayManager_FFIMethods_SetImeCompositionRangeCallbackMethod); +DO_TYPEDEF(0x03D04D70, OverlayManager_FFIMethods_SetImeCompositionRangeCallbackCallback); +DO_TYPEDEF(0x03D0C970, Rect_1); +DO_TYPEDEF(0x03D0CA38, OverlayManager_FFIMethods_SetImeSelectionBoundsCallbackMethod); +DO_TYPEDEF(0x03D04D58, OverlayManager_FFIMethods_SetImeSelectionBoundsCallbackCallback); +DO_TYPEDEF(0x03D0CA88, OverlayManager_FFIMethods_IsPointInsideClickZoneMethod); +DO_TYPEDEF(0x03D04DE8, OverlayManager_SetLockedHandler); +DO_TYPEDEF(0x03D04DD0, OverlayManager_OpenActivityInviteHandler); +DO_TYPEDEF(0x03D04DB8, OverlayManager_OpenGuildInviteHandler); +DO_TYPEDEF(0x03D04DA0, OverlayManager_OpenVoiceSettingsHandler); +DO_TYPEDEF(0x03D04D80, OverlayManager_SetImeCompositionRangeCallbackHandler); +DO_TYPEDEF(0x03D04D68, OverlayManager_SetImeSelectionBoundsCallbackHandler); +DO_TYPEDEF(0x03D0C908, StorageManager_FFIMethods); +DO_TYPEDEF(0x03D0C800, StorageManager_FFIMethods_ReadMethod); +DO_TYPEDEF(0x03D0C810, StorageManager_FFIMethods_ReadAsyncMethod); +DO_TYPEDEF(0x03D0C8D0, StorageManager_FFIMethods_ReadAsyncCallback); +DO_TYPEDEF(0x03D0C808, StorageManager_FFIMethods_ReadAsyncPartialMethod); +DO_TYPEDEF(0x03D0C8B0, StorageManager_FFIMethods_ReadAsyncPartialCallback); +DO_TYPEDEF(0x03D0C7E0, StorageManager_FFIMethods_WriteMethod); +DO_TYPEDEF(0x03D0C7E8, StorageManager_FFIMethods_WriteAsyncMethod); +DO_TYPEDEF(0x03D0C880, StorageManager_FFIMethods_WriteAsyncCallback); +DO_TYPEDEF(0x03D0C830, StorageManager_FFIMethods_DeleteMethod); +DO_TYPEDEF(0x03D0C828, StorageManager_FFIMethods_ExistsMethod); +DO_TYPEDEF(0x03D0C838, StorageManager_FFIMethods_CountMethod); +DO_TYPEDEF(0x03D0C7F0, StorageManager_FFIMethods_StatMethod); +DO_TYPEDEF(0x03D0C7C8, FileStat); +DO_TYPEDEF(0x03D0C7F8, StorageManager_FFIMethods_StatAtMethod); +DO_TYPEDEF(0x03D0C818, StorageManager_FFIMethods_GetPathMethod); +DO_TYPEDEF(0x03D0C8D8, StorageManager_ReadAsyncHandler); +DO_TYPEDEF(0x03D0C8C0, StorageManager_ReadAsyncPartialHandler); +DO_TYPEDEF(0x03D0C890, StorageManager_WriteAsyncHandler); +DO_TYPEDEF(0x03D0C7B8, StoreManager_FFIMethods); +DO_TYPEDEF(0x03D0C698, StoreManager_FFIMethods_FetchSkusMethod); +DO_TYPEDEF(0x03D0C750, StoreManager_FFIMethods_FetchSkusCallback); +DO_TYPEDEF(0x03D0C6A8, StoreManager_FFIMethods_CountSkusMethod); +DO_TYPEDEF(0x03D0C678, StoreManager_FFIMethods_GetSkuMethod); +DO_TYPEDEF(0x03D0C660, Sku); +DO_TYPEDEF(0x03D0C680, StoreManager_FFIMethods_GetSkuAtMethod); +DO_TYPEDEF(0x03D0C6A0, StoreManager_FFIMethods_FetchEntitlementsMethod); +DO_TYPEDEF(0x03D0C728, StoreManager_FFIMethods_FetchEntitlementsCallback); +DO_TYPEDEF(0x03D0C6B0, StoreManager_FFIMethods_CountEntitlementsMethod); +DO_TYPEDEF(0x03D0C688, StoreManager_FFIMethods_GetEntitlementMethod); +DO_TYPEDEF(0x03D0C690, StoreManager_FFIMethods_GetEntitlementAtMethod); +DO_TYPEDEF(0x03D0C670, StoreManager_FFIMethods_HasSkuEntitlementMethod); +DO_TYPEDEF(0x03D0C668, StoreManager_FFIMethods_StartPurchaseMethod); +DO_TYPEDEF(0x03D0C6F8, StoreManager_FFIMethods_StartPurchaseCallback); +DO_TYPEDEF(0x03D0C758, StoreManager_FetchSkusHandler); +DO_TYPEDEF(0x03D0C730, StoreManager_FetchEntitlementsHandler); +DO_TYPEDEF(0x03D0C700, StoreManager_StartPurchaseHandler); +DO_TYPEDEF(0x03D0C630, VoiceManager_FFIMethods); +DO_TYPEDEF(0x03D0C560, VoiceManager_FFIMethods_GetInputModeMethod); +DO_TYPEDEF(0x03D0C508, InputMode); +DO_TYPEDEF(0x03D0C530, VoiceManager_FFIMethods_SetInputModeMethod); +DO_TYPEDEF(0x03D0C5B8, VoiceManager_FFIMethods_SetInputModeCallback); +DO_TYPEDEF(0x03D0C538, VoiceManager_FFIMethods_IsSelfMuteMethod); +DO_TYPEDEF(0x03D0C510, VoiceManager_FFIMethods_SetSelfMuteMethod); +DO_TYPEDEF(0x03D0C548, VoiceManager_FFIMethods_IsSelfDeafMethod); +DO_TYPEDEF(0x03D0C518, VoiceManager_FFIMethods_SetSelfDeafMethod); +DO_TYPEDEF(0x03D0C550, VoiceManager_FFIMethods_IsLocalMuteMethod); +DO_TYPEDEF(0x03D0C528, VoiceManager_FFIMethods_SetLocalMuteMethod); +DO_TYPEDEF(0x03D0C558, VoiceManager_FFIMethods_GetLocalVolumeMethod); +DO_TYPEDEF(0x03D0C520, VoiceManager_FFIMethods_SetLocalVolumeMethod); +DO_TYPEDEF(0x03D0C5C0, VoiceManager_SetInputModeHandler); +DO_TYPEDEF(0x03D0C4D0, AchievementManager_FFIMethods); +DO_TYPEDEF(0x03D0C418, AchievementManager_FFIMethods_SetUserAchievementMethod); +DO_TYPEDEF(0x03D0C480, AchievementManager_FFIMethods_SetUserAchievementCallback); +DO_TYPEDEF(0x03D0C430, AchievementManager_FFIMethods_FetchUserAchievementsMethod); +DO_TYPEDEF(0x03D0C468, AchievementManager_FFIMethods_FetchUserAchievementsCallback); +DO_TYPEDEF(0x03D0C438, AchievementManager_FFIMethods_CountUserAchievementsMethod); +DO_TYPEDEF(0x03D0C420, AchievementManager_FFIMethods_GetUserAchievementMethod); +DO_TYPEDEF(0x03D0C428, AchievementManager_FFIMethods_GetUserAchievementAtMethod); +DO_TYPEDEF(0x03D0C490, AchievementManager_SetUserAchievementHandler); +DO_TYPEDEF(0x03D0C478, AchievementManager_FetchUserAchievementsHandler); +DO_TYPEDEF(0x03CCCC90, IList_1_UnityEngine_Vector3_); +DO_TYPEDEF(0x03D0C378, ExtensionMethods_c_DisplayClass5_0); +DO_TYPEDEF(0x03D0C358, ExtensionMethods_c_DisplayClass6_0); +DO_TYPEDEF(0x03D0C1E0, Singleton_1_SurviveSceneSwitch_); +DO_TYPEDEF(0x03D0C1F0, SurviveSceneSwitch_c); +DO_TYPEDEF(0x03D0C1B8, Singleton_1_TakeScreenshot_); +DO_TYPEDEF(0x03D0C198, BaseConstants); +DO_TYPEDEF(0x03D0C1D8, BaseHelper); +DO_TYPEDEF(0x03D0C0B8, BaseHelper_c); +DO_TYPEDEF(0x03D0C0D8, Func_2_System_Security_Cryptography_X509Certificates_X509ChainStatus_Boolean_); +DO_TYPEDEF(0x03D0BED8, HelperCT); +DO_TYPEDEF(0x03D0BF58, CTProcess); +DO_TYPEDEF(0x03D0BB28, CTProcessStartInfo); +DO_TYPEDEF(0x03D0B878, PlatformController_c); +DO_TYPEDEF(0x03D0B848, Func_2_UnityEngine_MonoBehaviour_Boolean_); +DO_TYPEDEF(0x03D0B7B0, RandomColor); +DO_TYPEDEF(0x03D0B708, SingletonHelper); +DO_TYPEDEF(0x03D0B160, Singleton_1_Crosstales_BWF_BWFManager_); +DO_TYPEDEF(0x03D0B468, BWFManager_BWFReady); +DO_TYPEDEF(0x03D0B488, BWFManager_c); +DO_TYPEDEF(0x03D0B4A8, Func_2_Crosstales_BWF_Data_Source_Int32_); +DO_TYPEDEF(0x03D0B300, Func_2_Crosstales_BWF_Data_Source_String_); +DO_TYPEDEF(0x03D0B210, BWFManager_c_DisplayClass35_0); +DO_TYPEDEF(0x03D104D0, BWFManager_c_DisplayClass38_0); +DO_TYPEDEF(0x03D0B1B8, BWFManager_containsAsync_d_38); +DO_TYPEDEF(0x03D104B0, BWFManager_c_DisplayClass39_0); +DO_TYPEDEF(0x03D0B1B0, BWFManager_getAllAsync_d_39); +DO_TYPEDEF(0x03D10498, BWFManager_c_DisplayClass40_0); +DO_TYPEDEF(0x03D0B1A8, BWFManager_replaceAllAsync_d_40); +DO_TYPEDEF(0x03D10470, Constants); +DO_TYPEDEF(0x03D10250, BadWordProviderText_c); +DO_TYPEDEF(0x03D10290, Func_2_Crosstales_BWF_Data_Source_Boolean_); +DO_TYPEDEF(0x03D10210, BadWordProviderText_loadWeb_d_2); +DO_TYPEDEF(0x03D101F0, BadWordProviderText_loadResource_d_3); +DO_TYPEDEF(0x03D10010, BaseProvider_c); +DO_TYPEDEF(0x03D0FDD0, Domains); +DO_TYPEDEF(0x03D0FEC0, List_1_Crosstales_BWF_Model_Domains_); +DO_TYPEDEF(0x03D0FE60, DomainProviderText_c); +DO_TYPEDEF(0x03D0FE30, DomainProviderText_loadWeb_d_2); +DO_TYPEDEF(0x03D0FE10, DomainProviderText_loadResource_d_3); +DO_TYPEDEF(0x03D0FC58, BadWordManager_c); +DO_TYPEDEF(0x03D0FAA8, BadWordManager_c_DisplayClass47_0); +DO_TYPEDEF(0x03D0FB58, BadWordManager_containsAsync_d_47); +DO_TYPEDEF(0x03D0FA58, BadWordManager_c_DisplayClass48_0); +DO_TYPEDEF(0x03D0FB38, BadWordManager_getAllAsync_d_48); +DO_TYPEDEF(0x03D0FA08, BadWordManager_c_DisplayClass49_0); +DO_TYPEDEF(0x03D0FB18, BadWordManager_replaceAllAsync_d_49); +DO_TYPEDEF(0x03D0B4D8, Singleton_1_Crosstales_BWF_Manager_CapitalizationManager_); +DO_TYPEDEF(0x03D0F998, CapitalizationManager); +DO_TYPEDEF(0x03D0F968, CapitalizationFilter); +DO_TYPEDEF(0x03D0F848, CapitalizationManager_c_DisplayClass28_0); +DO_TYPEDEF(0x03D0F8E8, CapitalizationManager_containsAsync_d_28); +DO_TYPEDEF(0x03D0F7F8, CapitalizationManager_c_DisplayClass29_0); +DO_TYPEDEF(0x03D0F8C8, CapitalizationManager_getAllAsync_d_29); +DO_TYPEDEF(0x03D0F7A8, CapitalizationManager_c_DisplayClass30_0); +DO_TYPEDEF(0x03D0F8A8, CapitalizationManager_replaceAllAsync_d_30); +DO_TYPEDEF(0x03D0B4F8, Singleton_1_Crosstales_BWF_Manager_DomainManager_); +DO_TYPEDEF(0x03D0F708, DomainManager); +DO_TYPEDEF(0x03D0F6D8, DomainFilter); +DO_TYPEDEF(0x03D0E380, List_1_Crosstales_BWF_Provider_DomainProvider_); +DO_TYPEDEF(0x03D0F768, DomainManager_c); +DO_TYPEDEF(0x03D0F5E8, DomainManager_c_DisplayClass35_0); +DO_TYPEDEF(0x03D0F698, DomainManager_containsAsync_d_35); +DO_TYPEDEF(0x03D0F598, DomainManager_c_DisplayClass36_0); +DO_TYPEDEF(0x03D0F678, DomainManager_getAllAsync_d_36); +DO_TYPEDEF(0x03D0F548, DomainManager_c_DisplayClass37_0); +DO_TYPEDEF(0x03D0F658, DomainManager_replaceAllAsync_d_37); +DO_TYPEDEF(0x03D0B4E8, Singleton_1_Crosstales_BWF_Manager_PunctuationManager_); +DO_TYPEDEF(0x03D0F4D8, PunctuationManager); +DO_TYPEDEF(0x03D0F4A8, PunctuationFilter); +DO_TYPEDEF(0x03D0F398, PunctuationManager_c_DisplayClass28_0); +DO_TYPEDEF(0x03D0F438, PunctuationManager_containsAsync_d_28); +DO_TYPEDEF(0x03D0F348, PunctuationManager_c_DisplayClass29_0); +DO_TYPEDEF(0x03D0F418, PunctuationManager_getAllAsync_d_29); +DO_TYPEDEF(0x03D0F2F8, PunctuationManager_c_DisplayClass30_0); +DO_TYPEDEF(0x03D0F3F8, PunctuationManager_replaceAllAsync_d_30); +DO_TYPEDEF(0x03D0E520, _f_AnonymousType0_2_Crosstales_BWF_Provider_BadWordProvider_Crosstales_BWF_Data_Source_); +DO_TYPEDEF(0x03D0E500, _f_AnonymousType1_2_Crosstales_BWF_Provider_BadWordProvider_Crosstales_BWF_Data_Source_); +DO_TYPEDEF(0x03D0EFF8, BadWordFilter_c); +DO_TYPEDEF(0x03D0F0F8, Func_2_Crosstales_BWF_Provider_BadWordProvider_Boolean_); +DO_TYPEDEF(0x03D0F108, Func_2_Crosstales_BWF_Provider_BadWordProvider_System_Collections_Generic_IEnumerable_1_); +DO_TYPEDEF(0x03D0F0C8, Func_3_Crosstales_BWF_Provider_BadWordProvider_Crosstales_BWF_Data_Source_f_AnonymousType0_2_); +DO_TYPEDEF(0x03D0F138, Func_2_f_AnonymousType0_2_Boolean_); +DO_TYPEDEF(0x03D0F0E8, Func_2_f_AnonymousType0_2_Crosstales_BWF_Data_Source_); +DO_TYPEDEF(0x03D0F0D8, Func_3_Crosstales_BWF_Provider_BadWordProvider_Crosstales_BWF_Data_Source_f_AnonymousType1_2_); +DO_TYPEDEF(0x03D0F128, Func_2_f_AnonymousType1_2_Boolean_); +DO_TYPEDEF(0x03D0F118, Func_2_f_AnonymousType1_2_Crosstales_BWF_Data_Source_); +DO_TYPEDEF(0x03D0EC30, Func_2_System_Collections_Generic_List_1_System_Collections_Generic_IEnumerable_1_); +DO_TYPEDEF(0x03D0EBF0, Func_3_System_Collections_Generic_List_1_String_f_AnonymousType2_2_); +DO_TYPEDEF(0x03D0E4F0, _f_AnonymousType2_2_System_Collections_Generic_List_1_System_String_); +DO_TYPEDEF(0x03D0EC00, Func_2_f_AnonymousType2_2_String_); +DO_TYPEDEF(0x03D0EC80, Func_2_System_Text_RegularExpressions_Match_System_Collections_Generic_IEnumerable_1_); +DO_TYPEDEF(0x03D0EBA0, IEnumerable_1_System_Text_RegularExpressions_Capture_); +DO_TYPEDEF(0x03D0EBD0, Func_3_System_Text_RegularExpressions_Match_System_Text_RegularExpressions_Capture_System_Text_RegularExpressions_Capture_); +DO_TYPEDEF(0x03D0EC70, Func_2_System_Text_RegularExpressions_MatchCollection_System_Collections_Generic_IEnumerable_1_); +DO_TYPEDEF(0x03D0EBC0, Func_3_System_Text_RegularExpressions_MatchCollection_System_Text_RegularExpressions_Match_f_AnonymousType3_2_); +DO_TYPEDEF(0x03D0E4D0, _f_AnonymousType3_2_System_Text_RegularExpressions_MatchCollection_System_Text_RegularExpressions_Match_); +DO_TYPEDEF(0x03D0ECA0, Func_2_f_AnonymousType3_2_System_Collections_Generic_IEnumerable_1_); +DO_TYPEDEF(0x03D0EBB0, Func_3_f_AnonymousType3_2_System_Text_RegularExpressions_Capture_f_AnonymousType4_2_); +DO_TYPEDEF(0x03D0E4B8, _f_AnonymousType4_2_f_AnonymousType3_2_System_Text_RegularExpressions_MatchCollection_System_Text_RegularExpressions_Match_System_Text_RegularExpressions_Capture_); +DO_TYPEDEF(0x03D0EC10, Func_2_f_AnonymousType4_2_System_Text_RegularExpressions_Capture_); +DO_TYPEDEF(0x03D0EBE0, Func_3_System_Text_RegularExpressions_Match_System_Text_RegularExpressions_Capture_f_AnonymousType5_2_); +DO_TYPEDEF(0x03D0E4A0, _f_AnonymousType5_2_System_Text_RegularExpressions_Match_System_Text_RegularExpressions_Capture_); +DO_TYPEDEF(0x03D0EC90, Func_2_f_AnonymousType5_2_System_Text_RegularExpressions_Capture_); +DO_TYPEDEF(0x03D0E918, Func_3_f_AnonymousType3_2_System_Text_RegularExpressions_Capture_System_Text_RegularExpressions_Capture_); +DO_TYPEDEF(0x03D0EE08, BadWordFilter_c_DisplayClass21_0); +DO_TYPEDEF(0x03D0EA00, BadWordFilter_c_DisplayClass22_0); +DO_TYPEDEF(0x03D0EC60, Func_2_f_AnonymousType2_2_Boolean_); +DO_TYPEDEF(0x03D0EC50, Func_2_f_AnonymousType4_2_Boolean_); +DO_TYPEDEF(0x03D0EC20, Func_2_f_AnonymousType5_2_Boolean_); +DO_TYPEDEF(0x03D0E9A0, BadWordFilter_c_DisplayClass22_1); +DO_TYPEDEF(0x03D0EC40, Func_2_System_Text_RegularExpressions_Regex_System_Text_RegularExpressions_MatchCollection_); +DO_TYPEDEF(0x03D0E848, BadWordFilter_c_DisplayClass23_0); +DO_TYPEDEF(0x03D0E450, BaseFilter_c); +DO_TYPEDEF(0x03D0E478, Func_2_System_Collections_Generic_KeyValuePair_2_String__1); +DO_TYPEDEF(0x03D0E470, Func_2_System_Collections_Generic_KeyValuePair_2_Crosstales_BWF_Data_Source_); +DO_TYPEDEF(0x03D0E3D0, CapitalizationFilter_c); +DO_TYPEDEF(0x03D0E178, _f_AnonymousType6_2_Crosstales_BWF_Provider_DomainProvider_Crosstales_BWF_Data_Source_); +DO_TYPEDEF(0x03D0E2E8, DomainFilter_c); +DO_TYPEDEF(0x03D0E328, Func_2_Crosstales_BWF_Provider_DomainProvider_Boolean_); +DO_TYPEDEF(0x03D0E330, Func_2_Crosstales_BWF_Provider_DomainProvider_System_Collections_Generic_IEnumerable_1_); +DO_TYPEDEF(0x03D0E320, Func_3_Crosstales_BWF_Provider_DomainProvider_Crosstales_BWF_Data_Source_f_AnonymousType6_2_); +DO_TYPEDEF(0x03D0E338, Func_2_f_AnonymousType6_2_Boolean_); +DO_TYPEDEF(0x03D0E340, Func_2_f_AnonymousType6_2_Crosstales_BWF_Data_Source_); +DO_TYPEDEF(0x03D0E208, Func_3_System_Text_RegularExpressions_Regex_System_Text_RegularExpressions_Match_f_AnonymousType7_2_); +DO_TYPEDEF(0x03D0E168, _f_AnonymousType7_2_System_Text_RegularExpressions_Regex_System_Text_RegularExpressions_Match_); +DO_TYPEDEF(0x03D0E218, Func_2_f_AnonymousType7_2_System_Collections_Generic_IEnumerable_1_); +DO_TYPEDEF(0x03D0E200, Func_3_f_AnonymousType7_2_System_Text_RegularExpressions_Capture_System_Text_RegularExpressions_Capture_); +DO_TYPEDEF(0x03D0E2D8, DomainFilter_c_DisplayClass13_0); +DO_TYPEDEF(0x03D0E240, DomainFilter_c_DisplayClass14_0); +DO_TYPEDEF(0x03D0E190, DomainFilter_c_DisplayClass15_0); +DO_TYPEDEF(0x03D0E1F8, Func_3_String_System_Text_RegularExpressions_Capture_String_); +DO_TYPEDEF(0x03D0E138, PunctuationFilter_c); DO_TYPEDEF(0x03C9EB48, FastAction); DO_TYPEDEF(0x03C9EE68, LinkedList_1_System_Action_); DO_TYPEDEF(0x03C9EE58, Dictionary_2_System_Action_LinkedListNode_1_System_Action_); @@ -1220,6 +8532,7 @@ DO_TYPEDEF(0x03C9EC50, TMP_SubMesh__Array); DO_TYPEDEF(0x03C9EC38, TextMeshProUGUI_DelayedGraphicRebuild_d_18); DO_TYPEDEF(0x03C9EC40, TextMeshProUGUI_DelayedMaterialRebuild_d_19); DO_TYPEDEF(0x03CA3A80, ColorTween_ColorTweenCallback); +DO_TYPEDEF(0x03D23650, UnityAction_1_UnityEngine_Color_); DO_TYPEDEF(0x03CA3A38, FloatTween_FloatTweenCallback); DO_TYPEDEF(0x03CA3510, TMP_Dropdown_c_DisplayClass69_0); DO_TYPEDEF(0x03CA3430, TMP_Dropdown_DelayedDestroyDropdownList_d_81); @@ -1236,6 +8549,7 @@ DO_TYPEDEF(0x03C9ED18, TMP_FontAssetUtilities); DO_TYPEDEF(0x03CA2820, TMP_FontFeatureTable_c); DO_TYPEDEF(0x03CA2808, Func_2_TMPro_TMP_GlyphPairAdjustmentRecord_UInt32_); DO_TYPEDEF(0x03CA2638, TMP_InputField); +DO_TYPEDEF(0x03CEE1B8, List_1_UnityEngine_RectTransform_); DO_TYPEDEF(0x03CA2648, IScrollHandler); DO_TYPEDEF(0x03CA2868, TMP_InputField_SubmitEvent); DO_TYPEDEF(0x03CA2858, TMP_InputField_SelectionEvent); @@ -1264,25 +8578,32 @@ DO_TYPEDEF(0x03CA5340, TMP_TextParsingUtilities); DO_TYPEDEF(0x03C9EDC0, TMP_UpdateManager); DO_TYPEDEF(0x03CA7858, List_1_TMPro_TMP_Text_); DO_TYPEDEF(0x03CA77D8, TMP_UpdateRegistry); -DO_TYPEDEF(0x03CA77B0, List_1_UnityEngine_UI_ICanvasElement_); DO_TYPEDEF(0x03CA77F8, ICanvasElement); +DO_TYPEDEF(0x03CA77B0, List_1_UnityEngine_UI_ICanvasElement_); DO_TYPEDEF(0x03C95018, AesTransform); DO_TYPEDEF(0x03C94F58, Enumerable_RangeIterator_d_115); +DO_TYPEDEF(0x03CC0828, Expression_1); DO_TYPEDEF(0x03C99820, BinaryExpression); DO_TYPEDEF(0x03C93DB0, CacheDict_2_System_Type_System_Reflection_MethodInfo_); DO_TYPEDEF(0x03C94588, CacheDict_2_System_Type_System_Func_5_); DO_TYPEDEF(0x03C94558, Func_5_System_Linq_Expressions_Expression_String_Boolean_System_Collections_ObjectModel_ReadOnlyCollection_1_System_Linq_Expressions_LambdaExpression_); +DO_TYPEDEF(0x03D00A80, LambdaExpression); DO_TYPEDEF(0x03C94E40, ExpressionType__Enum_1); DO_TYPEDEF(0x03C99888, BlockExpression); DO_TYPEDEF(0x03C949C0, ReadOnlyCollection_1_System_Linq_Expressions_Expression_); +DO_TYPEDEF(0x03CC0818, Expression_1__Array); +DO_TYPEDEF(0x03CFC1F8, IEnumerator_1_System_Linq_Expressions_Expression_); DO_TYPEDEF(0x03C97BD8, ParameterExpression); +DO_TYPEDEF(0x03CC0810, ParameterExpression__Array); DO_TYPEDEF(0x03C982D0, IEnumerator_1_System_Linq_Expressions_ParameterExpression_); DO_TYPEDEF(0x03C98690, ConditionalExpression); +DO_TYPEDEF(0x03CFC200, ConstantExpression); DO_TYPEDEF(0x03C948E8, DefaultExpression); DO_TYPEDEF(0x03C94810, GotoExpression); DO_TYPEDEF(0x03C945E8, LabelTarget); DO_TYPEDEF(0x03C993F0, InvocationExpression); DO_TYPEDEF(0x03C94788, LabelExpression); +DO_TYPEDEF(0x03CB2778, MemberExpression); DO_TYPEDEF(0x03C94EF0, IndexExpression); DO_TYPEDEF(0x03C94AE0, IReadOnlyList_1_System_Linq_Expressions_Expression_); DO_TYPEDEF(0x03C995E0, MethodCallExpression); @@ -1290,6 +8611,7 @@ DO_TYPEDEF(0x03C99378, NewArrayExpression); DO_TYPEDEF(0x03C94938, CatchBlock); DO_TYPEDEF(0x03C94040, TryExpression); DO_TYPEDEF(0x03C94150, IEnumerator_1_System_Linq_Expressions_CatchBlock_); +DO_TYPEDEF(0x03CB2780, UnaryExpression); DO_TYPEDEF(0x03C94E00, LogicalBinaryExpression); DO_TYPEDEF(0x03C94E90, AssignBinaryExpression); DO_TYPEDEF(0x03C94D08, CoalesceConversionBinaryExpression); @@ -1302,6 +8624,7 @@ DO_TYPEDEF(0x03C94A18, Block3); DO_TYPEDEF(0x03C94A28, Block4); DO_TYPEDEF(0x03C949D0, Block5); DO_TYPEDEF(0x03C949E0, BlockN); +DO_TYPEDEF(0x03CE8740, IReadOnlyList_1_System_Linq_Expressions_ParameterExpression_); DO_TYPEDEF(0x03C94988, Scope1); DO_TYPEDEF(0x03C94990, ScopeN); DO_TYPEDEF(0x03C94998, ScopeWithType); @@ -1350,17 +8673,17 @@ DO_TYPEDEF(0x03C99640, SwitchExpression); DO_TYPEDEF(0x03C99670, IEnumerator_1_System_Linq_Expressions_SwitchCase_); DO_TYPEDEF(0x03C974F8, AddInstruction); DO_TYPEDEF(0x03C97500, AddInstruction_AddInt16); +DO_TYPEDEF(0x03C9C998, IStrongBox); DO_TYPEDEF(0x03C99E18, InterpretedFrame); DO_TYPEDEF(0x03C9A200, InstructionArray); +DO_TYPEDEF(0x03C99EA8, DebugInfo); DO_TYPEDEF(0x03C97050, Interpreter); DO_TYPEDEF(0x03C97070, Instruction__Array); DO_TYPEDEF(0x03C99F68, RuntimeLabel__Array); DO_TYPEDEF(0x03C99E50, IEnumerator_1_KeyValuePair_2_System_Int32_System_Object_); -DO_TYPEDEF(0x03C99EA8, DebugInfo); DO_TYPEDEF(0x03C999C8, DebugInfo_DebugInfoComparer); DO_TYPEDEF(0x03C992E0, Dictionary_2_System_Linq_Expressions_ParameterExpression_System_Linq_Expressions_Interpreter_LocalVariable_); DO_TYPEDEF(0x03C9C778, LocalVariable); -DO_TYPEDEF(0x03C9C998, IStrongBox); DO_TYPEDEF(0x03C9C748, IStrongBox__Array); DO_TYPEDEF(0x03C9C2C8, IReadOnlyList_1_System_Object_); DO_TYPEDEF(0x03C97508, AddInstruction_AddInt32); @@ -1420,8 +8743,8 @@ DO_TYPEDEF(0x03C96FF0, Instruction__Array__Array__Array); DO_TYPEDEF(0x03C97060, GotoInstruction); DO_TYPEDEF(0x03C97048, GotoInstruction__Array); DO_TYPEDEF(0x03C97038, EnterTryCatchFinallyInstruction); -DO_TYPEDEF(0x03C99628, TryCatchFinallyHandler); DO_TYPEDEF(0x03C99578, ExceptionHandler); +DO_TYPEDEF(0x03C99628, TryCatchFinallyHandler); DO_TYPEDEF(0x03C99570, ExceptionFilter); DO_TYPEDEF(0x03C99F18, EnterTryFaultInstruction); DO_TYPEDEF(0x03C99608, TryFaultHandler); @@ -1536,10 +8859,11 @@ DO_TYPEDEF(0x03C99EF8, IReadOnlyList_1_System_Linq_Expressions_Interpreter_Instr DO_TYPEDEF(0x03C99D70, InterpretedFrameInfo); DO_TYPEDEF(0x03C99DE8, InterpretedFrame_GetStackTraceDebugInfo_d_29); DO_TYPEDEF(0x03C99718, LabelInfo); -DO_TYPEDEF(0x03C99D60, List_1_System_Linq_Expressions_Interpreter_LabelScopeInfo_); DO_TYPEDEF(0x03C99CC8, LabelScopeInfo); +DO_TYPEDEF(0x03C99D60, List_1_System_Linq_Expressions_Interpreter_LabelScopeInfo_); DO_TYPEDEF(0x03C99D00, HybridReferenceDictionary_2_System_Linq_Expressions_LabelTarget_LabelInfo_); DO_TYPEDEF(0x03C99A08, IEnumerator_1_KeyValuePair_2_System_Linq_Expressions_LabelTarget_System_Linq_Expressions_Interpreter_LabelInfo_); +DO_TYPEDEF(0x03CE8700, LightCompiler); DO_TYPEDEF(0x03C999B8, List_1_System_Linq_Expressions_Interpreter_DebugInfo_); DO_TYPEDEF(0x03C99998, Stack_1_System_Linq_Expressions_ParameterExpression_); DO_TYPEDEF(0x03C9C7A0, LocalDefinition); @@ -1582,6 +8906,7 @@ DO_TYPEDEF(0x03C99A90, LessThanOrEqualInstruction_LessThanOrEqualDouble); DO_TYPEDEF(0x03C96F60, RethrowException); DO_TYPEDEF(0x03C992C8, LightCompiler_QuoteVisitor); DO_TYPEDEF(0x03C9C960, Dictionary_2_System_Linq_Expressions_ParameterExpression_System_Int32_); +DO_TYPEDEF(0x03D03F30, HashSet_1_System_Linq_Expressions_ParameterExpression_); DO_TYPEDEF(0x03C99650, LightCompiler_c); DO_TYPEDEF(0x03C9C9A0, Func_2_System_Linq_Expressions_Expression_Boolean_); DO_TYPEDEF(0x03C996B8, Func_2_System_Linq_Expressions_SwitchCase_Boolean_); @@ -1591,6 +8916,7 @@ DO_TYPEDEF(0x03C99460, FieldByRefUpdater); DO_TYPEDEF(0x03C99520, PropertyByRefUpdater); DO_TYPEDEF(0x03C99468, IndexMethodByRefUpdater); DO_TYPEDEF(0x03C9C8E8, LightLambda_DebugViewPrinter); +DO_TYPEDEF(0x03CC65C8, Dictionary_2_System_Int32_System_String_); DO_TYPEDEF(0x03C9C920, LightLambda_c_DisplayClass74_0); DO_TYPEDEF(0x03C9A178, LoadLocalInstruction); DO_TYPEDEF(0x03C9A170, LoadLocalBoxedInstruction); @@ -1748,12 +9074,15 @@ DO_TYPEDEF(0x03C992B8, QuoteInstruction); DO_TYPEDEF(0x03C9BFE0, QuoteInstruction_ExpressionQuoter); DO_TYPEDEF(0x03C9BFD0, Stack_1_HashSet_1_System_Linq_Expressions_ParameterExpression_); DO_TYPEDEF(0x03C9BF60, DelegateHelpers_c); +DO_TYPEDEF(0x03CB1040, Func_2_Type_Boolean_); DO_TYPEDEF(0x03C9BDB0, TypeUtils_c); +DO_TYPEDEF(0x03CF5210, BitHelper_1); DO_TYPEDEF(0x03C92C00, ProbeBrickIndex); DO_TYPEDEF(0x03C92F08, Dictionary_2_UnityEngine_Vector3Int_List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta_); -DO_TYPEDEF(0x03C92D98, List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta_); DO_TYPEDEF(0x03C923C8, ProbeReferenceVolume_RegId); +DO_TYPEDEF(0x03C92D98, List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta_); DO_TYPEDEF(0x03C92EA8, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_); +DO_TYPEDEF(0x03CF55A0, HashSet_1_UnityEngine_Vector3Int_); DO_TYPEDEF(0x03C92D90, List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick_); DO_TYPEDEF(0x03C92BF0, List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick_); DO_TYPEDEF(0x03C92BE0, List_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_); @@ -1773,8 +9102,8 @@ DO_TYPEDEF(0x03C92138, List_1_UnityEngine_Experimental_Rendering_ProbeVolumeScen DO_TYPEDEF(0x03C92100, List_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem_); DO_TYPEDEF(0x03C92128, List_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile_); DO_TYPEDEF(0x03C92120, List_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings_); -DO_TYPEDEF(0x03C92110, List_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_BakingSet_); DO_TYPEDEF(0x03C91EE8, ProbeVolumeSceneData_BakingSet); +DO_TYPEDEF(0x03C92110, List_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_BakingSet_); DO_TYPEDEF(0x03C92160, Dictionary_2_System_String_UnityEngine_Bounds_); DO_TYPEDEF(0x03C92170, Dictionary_2_System_String_UnityEngine_Experimental_Rendering_ProbeReferenceVolumeProfile_); DO_TYPEDEF(0x03C92168, Dictionary_2_System_String_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_); @@ -1782,8 +9111,8 @@ DO_TYPEDEF(0x03C92B18, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeRefe DO_TYPEDEF(0x03C92A78, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_); DO_TYPEDEF(0x03C92A80, Dictionary_2_System_String_UnityEngine_Experimental_Rendering_ProbeVolumeAsset_); DO_TYPEDEF(0x03C923A8, List_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Cell_); -DO_TYPEDEF(0x03C92B50, List_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_CellSortInfo_); DO_TYPEDEF(0x03C92B88, ProbeReferenceVolume_CellSortInfo); +DO_TYPEDEF(0x03C92B50, List_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_CellSortInfo_); DO_TYPEDEF(0x03C92AE8, ProbeVolumeDebug); DO_TYPEDEF(0x03C95AC8, DebugUI_Panel); DO_TYPEDEF(0x03C95A18, ObservableList_1_DebugUI_Widget_); @@ -1791,8 +9120,8 @@ DO_TYPEDEF(0x03C959F8, ListChangedEventHandler_1_DebugUI_Widget_); DO_TYPEDEF(0x03C95A40, IEnumerator_1_UnityEngine_Rendering_DebugUI_Widget_); DO_TYPEDEF(0x03C95AB0, Action_1_UnityEngine_Rendering_DebugUI_Panel_); DO_TYPEDEF(0x03C95A38, DebugUI_IContainer); -DO_TYPEDEF(0x03C92AD0, List_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_CellInstancedDebugProbes_); DO_TYPEDEF(0x03C924E0, ProbeReferenceVolume_CellInstancedDebugProbes); +DO_TYPEDEF(0x03C92AD0, List_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_CellInstancedDebugProbes_); DO_TYPEDEF(0x03C924B0, List_1_UnityEngine_Matrix4x4__1); DO_TYPEDEF(0x03C924C0, List_1_UnityEngine_MaterialPropertyBlock_); DO_TYPEDEF(0x03C92B10, Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick_); @@ -1804,6 +9133,7 @@ DO_TYPEDEF(0x03C91E38, RendererList_1); DO_TYPEDEF(0x03C91D38, RenderGraphContext); DO_TYPEDEF(0x03C91C90, RenderGraphObjectPool); DO_TYPEDEF(0x03C96520, Dictionary_2_System_ValueTuple_2_Stack_1_System_Object_); +DO_TYPEDEF(0x03CFE1B0, Stack_1_System_Object_); DO_TYPEDEF(0x03C96538, List_1_System_ValueTuple_2_); DO_TYPEDEF(0x03C91A58, RenderGraphResourceType__Enum); DO_TYPEDEF(0x03C91B58, ResourceHandle); @@ -1814,9 +9144,10 @@ DO_TYPEDEF(0x03C97E58, RTHandleSystem); DO_TYPEDEF(0x03C97CB0, HashSet_1_UnityEngine_Rendering_RTHandle_); DO_TYPEDEF(0x03C98078, RTHandle__Array); DO_TYPEDEF(0x03C95FD8, ScaleFunc); +DO_TYPEDEF(0x03C91D80, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo_); DO_TYPEDEF(0x03C91CD0, RenderGraph); -DO_TYPEDEF(0x03C91C98, RenderGraphResourceRegistry); DO_TYPEDEF(0x03C96280, RenderGraphResourceRegistry_RenderGraphResourcesData); +DO_TYPEDEF(0x03C91C98, RenderGraphResourceRegistry); DO_TYPEDEF(0x03C96038, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_IRenderGraphResource_); DO_TYPEDEF(0x03C96338, RenderGraphResourcePool_1_UnityEngine_ComputeBuffer_); DO_TYPEDEF(0x03C963B0, ComputeBufferPool); @@ -1826,20 +9157,19 @@ DO_TYPEDEF(0x03C96288, RenderGraphResourceRegistry_ResourceCallback); DO_TYPEDEF(0x03C962C8, RenderGraphResourceRegistry_RenderGraphResourcesData__Array); DO_TYPEDEF(0x03C962B0, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource_); DO_TYPEDEF(0x03C91D40, RenderGraphDebugParams); +DO_TYPEDEF(0x03C96430, List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle_); DO_TYPEDEF(0x03C91D28, List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphPass_); DO_TYPEDEF(0x03C917C0, ProfilingSampler); DO_TYPEDEF(0x03C96438, TextureHandle__Array); -DO_TYPEDEF(0x03C96430, List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle_); DO_TYPEDEF(0x03C96478, List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle___Array); DO_TYPEDEF(0x03C91D30, List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle_); DO_TYPEDEF(0x03C91D58, Dictionary_2_System_Int32_UnityEngine_Rendering_ProfilingSampler_); -DO_TYPEDEF(0x03C91D80, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo_); DO_TYPEDEF(0x03C91D68, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo___Array); DO_TYPEDEF(0x03C91D08, DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo_); DO_TYPEDEF(0x03C91D60, Dictionary_2_System_String_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_); +DO_TYPEDEF(0x03C91CF0, List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData_); DO_TYPEDEF(0x03C91860, RenderGraphDebugData); DO_TYPEDEF(0x03C91CC8, List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData_); -DO_TYPEDEF(0x03C91CF0, List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData_); DO_TYPEDEF(0x03C91CF8, List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData___Array); DO_TYPEDEF(0x03C91838, List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_); DO_TYPEDEF(0x03C91B90, RenderGraph_OnGraphRegisteredDelegate); @@ -1848,6 +9178,7 @@ DO_TYPEDEF(0x03C99D08, MSAASamples__Enum); DO_TYPEDEF(0x03C964A0, ComputeBufferHandle); DO_TYPEDEF(0x03C91C50, RenderGraph_c); DO_TYPEDEF(0x03C91C30, RenderFunc_1_RenderGraph_ProfilingScopePassData_); +DO_TYPEDEF(0x03CF1688, RenderGraphObjectPool_SharedObjectPoolBase); DO_TYPEDEF(0x03C96468, List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphObjectPool_SharedObjectPoolBase_); DO_TYPEDEF(0x03C960F8, ComputeBufferResource); DO_TYPEDEF(0x03C961D8, TextureResource); @@ -1863,10 +9194,10 @@ DO_TYPEDEF(0x03C95D20, DynamicResolutionHandler); DO_TYPEDEF(0x03C95C60, DynamicResolutionHandler_ScalerContainer__Array); DO_TYPEDEF(0x03C95C48, Dictionary_2_System_Int32_UnityEngine_Rendering_DynamicResUpscaleFilter_); DO_TYPEDEF(0x03C95CE0, Dictionary_2_System_Int32_UnityEngine_Rendering_DynamicResolutionHandler_); -DO_TYPEDEF(0x03C92828, DebugManager); DO_TYPEDEF(0x03C95C68, DebugActionDesc); -DO_TYPEDEF(0x03C95CB0, DebugActionDesc__Array); DO_TYPEDEF(0x03C95BE0, DebugActionState); +DO_TYPEDEF(0x03C92828, DebugManager); +DO_TYPEDEF(0x03C95CB0, DebugActionDesc__Array); DO_TYPEDEF(0x03C95C70, DebugActionState__Array); DO_TYPEDEF(0x03C95A28, Lazy_1_UnityEngine_Rendering_DebugManager_); DO_TYPEDEF(0x03C95A50, Func_1_UnityEngine_Rendering_DebugManager_); @@ -1900,8 +9231,8 @@ DO_TYPEDEF(0x03C984E0, DebugUpdater_RefreshRuntimeUINextFrame_d_15); DO_TYPEDEF(0x03C983C8, MousePositionDebug); DO_TYPEDEF(0x03C98430, SphericalHarmonicsL1); DO_TYPEDEF(0x03C98350, LensFlareCommonSRP); -DO_TYPEDEF(0x03C982A0, List_1_UnityEngine_Rendering_LensFlareComponentSRP_); DO_TYPEDEF(0x03C980F0, LensFlareComponentSRP); +DO_TYPEDEF(0x03C982A0, List_1_UnityEngine_Rendering_LensFlareComponentSRP_); DO_TYPEDEF(0x03C97E50, Dictionary_2_System_Int32_UnityEngine_Rendering_RTHandle_); DO_TYPEDEF(0x03C97F18, Texture2DAtlas); DO_TYPEDEF(0x03C979D8, AtlasAllocator); @@ -1918,6 +9249,7 @@ DO_TYPEDEF(0x03C978B0, AtlasAllocatorDynamic_AtlasNodePool); DO_TYPEDEF(0x03C97868, AtlasAllocatorDynamic_AtlasNode__Array); DO_TYPEDEF(0x03C978C0, Dictionary_2_System_Int32_System_Int16_); DO_TYPEDEF(0x03C9A218, Dictionary_2_System_Int32_UnityEngine_Vector4_); +DO_TYPEDEF(0x03D0C278, IEnumerable_1_UnityEngine_Vector4_); DO_TYPEDEF(0x03C9A088, BitArray8); DO_TYPEDEF(0x03C9A0B0, BitArray16); DO_TYPEDEF(0x03C9A040, BitArray32); @@ -1930,13 +9262,15 @@ DO_TYPEDEF(0x03C99A70, HableCurve_Segment); DO_TYPEDEF(0x03C99AD8, HableCurve_Segment__Array); DO_TYPEDEF(0x03C99A80, HableCurve_Uniforms); DO_TYPEDEF(0x03C99A28, MeshGizmo); -DO_TYPEDEF(0x03C997F8, List_1_UnityEngine_Rendering_VolumeComponent_); +DO_TYPEDEF(0x03D1F6D0, VolumeParameter); DO_TYPEDEF(0x03C99848, VolumeComponent); +DO_TYPEDEF(0x03C997F8, List_1_UnityEngine_Rendering_VolumeComponent_); DO_TYPEDEF(0x03C998B0, ReadOnlyCollection_1_UnityEngine_Rendering_VolumeParameter_); DO_TYPEDEF(0x03C998D0, IEnumerator_1_UnityEngine_Rendering_VolumeParameter_); DO_TYPEDEF(0x03C998E0, List_1_UnityEngine_Rendering_VolumeParameter_); DO_TYPEDEF(0x03C998A8, IEnumerable_1_UnityEngine_Rendering_VolumeParameter_); DO_TYPEDEF(0x03C999F8, VolumeComponent_c); +DO_TYPEDEF(0x03D1F690, Func_2_System_Reflection_FieldInfo_Int32_); DO_TYPEDEF(0x03C99970, VolumeManager); DO_TYPEDEF(0x03C99598, Lazy_1_UnityEngine_Rendering_VolumeManager_); DO_TYPEDEF(0x03C99738, Func_1_UnityEngine_Rendering_VolumeManager_); @@ -1958,6 +9292,111 @@ DO_TYPEDEF(0x03C9B350, DebugUIHandlerEnumHistory_RefreshAfterSanitization_d_4); DO_TYPEDEF(0x03C9B290, DebugUIHandlerMessageBox); DO_TYPEDEF(0x03C9B2C8, DebugUIHandlerPersistentCanvas_c_DisplayClass3_0); DO_TYPEDEF(0x03C9B1D8, DebugUIHandlerToggleHistory_RefreshAfterSanitization_d_4); +DO_TYPEDEF(0x03CFB288, ColorChangedEvent); +DO_TYPEDEF(0x03CFB290, HSVChangedEvent); +DO_TYPEDEF(0x03CF6348, List_1_UnityEngine_UI_ExtensionsToggle_); +DO_TYPEDEF(0x03CF6328, ExtensionsToggleGroup_ToggleGroupEvent); +DO_TYPEDEF(0x03CF62F8, ExtensionsToggle_ToggleEvent); +DO_TYPEDEF(0x03CF62F0, ExtensionsToggle_ToggleEventObject); +DO_TYPEDEF(0x03CF6298, ExtensionsToggleGroup_c); +DO_TYPEDEF(0x03CF62A8, Predicate_1_UnityEngine_UI_ExtensionsToggle_); +DO_TYPEDEF(0x03CF62D8, Func_2_UnityEngine_UI_ExtensionsToggle_Boolean_); +DO_TYPEDEF(0x03CF61F0, TweenRunner_1_FloatTween__2); +DO_TYPEDEF(0x03CF6198, BoxSlider_BoxSliderEvent); +DO_TYPEDEF(0x03CF5FE0, DropDownListItem); +DO_TYPEDEF(0x03CF60F0, Dictionary_2_System_String_UnityEngine_GameObject_); +DO_TYPEDEF(0x03CF5FF8, AutoCompleteComboBox_c_DisplayClass62_0); +DO_TYPEDEF(0x03CF6068, AutoCompleteComboBox_c_DisplayClass69_0); +DO_TYPEDEF(0x03CF5F60, ComboBox_c_DisplayClass46_0); +DO_TYPEDEF(0x03CF5E70, List_1_UnityEngine_UI_Extensions_DropDownListItem_); +DO_TYPEDEF(0x03CF5F80, DropDownListButton); +DO_TYPEDEF(0x03CF5F78, List_1_UnityEngine_UI_Extensions_DropDownListButton_); +DO_TYPEDEF(0x03CF5F20, DropDownList_c_DisplayClass45_0); +DO_TYPEDEF(0x03CF5E38, RadialSlider_RadialSliderValueChangedEvent); +DO_TYPEDEF(0x03CF5E30, RadialSlider_RadialSliderTextValueChangedEvent); +DO_TYPEDEF(0x03CF5DD0, RangeSlider_RangeSliderEvent); +DO_TYPEDEF(0x03CF5DA0, ReorderableList_ReorderableListHandler); +DO_TYPEDEF(0x03CF5C58, List_1_UnityEngine_UI_Extensions_ReorderableListElement_); +DO_TYPEDEF(0x03CF5CA8, ReorderableListContent_RefreshChildren_d_9); +DO_TYPEDEF(0x03CF5B70, SegmentedControl_SegmentSelectedEvent); +DO_TYPEDEF(0x03CF5BC0, Segment_DelayedInit_d_14); +DO_TYPEDEF(0x03CF5B68, SegmentedControl_DelayedInit_d_27); +DO_TYPEDEF(0x03CF7558, IBoxSelectable); +DO_TYPEDEF(0x03CF74C8, IBoxSelectable__Array); +DO_TYPEDEF(0x03CF74D8, SelectionBox_SelectionEvent); +DO_TYPEDEF(0x03D0B838, IEnumerable_1_UnityEngine_MonoBehaviour_); +DO_TYPEDEF(0x03CF74E8, Stepper_StepperValueChangedEvent); +DO_TYPEDEF(0x03CF74E0, Stepper_DelayedInit_d_38); +DO_TYPEDEF(0x03CF7480, TextPic); +DO_TYPEDEF(0x03CF7440, TextPic_HrefClickEvent); +DO_TYPEDEF(0x03CF74B0, TextPic_HrefInfo); +DO_TYPEDEF(0x03CF7390, List_1_UnityEngine_UI_Extensions_TextPic_HrefInfo_); +DO_TYPEDEF(0x03CF7470, TextPic_c); +DO_TYPEDEF(0x03CF7478, Predicate_1_UnityEngine_UI_Image_); +DO_TYPEDEF(0x03CF7360, CUIBezierCurve); +DO_TYPEDEF(0x03CF7348, CUIGraphic); +DO_TYPEDEF(0x03CF7338, CUIBezierCurve__Array); +DO_TYPEDEF(0x03CF7318, Vector3_Array2D__Array); +DO_TYPEDEF(0x03CF7340, CUIImage); +DO_TYPEDEF(0x03CF7308, Gradient2_c); +DO_TYPEDEF(0x03CF72E0, Func_2_UnityEngine_UIVertex_Single_); +DO_TYPEDEF(0x03CF8798, ParticleSystem_Particle__Array); +DO_TYPEDEF(0x03CF87B0, CardStack2D); +DO_TYPEDEF(0x03CF86B0, CardStack2D_ButtonCooldown_d_14); +DO_TYPEDEF(0x03CF8700, Triangulator); +DO_TYPEDEF(0x03CF84B8, ContentScrollSnapHorizontal_StartMovementEvent); +DO_TYPEDEF(0x03CF85F8, ContentScrollSnapHorizontal_CurrentItemChangeEvent); +DO_TYPEDEF(0x03CF85E8, ContentScrollSnapHorizontal_FoundItemToSnapToEvent); +DO_TYPEDEF(0x03CF85F0, ContentScrollSnapHorizontal_SnappedToItemEvent); +DO_TYPEDEF(0x03CF85D0, ContentScrollSnapHorizontal_SlideAndLerp_d_70); +DO_TYPEDEF(0x03CF85C8, ContentScrollSnapHorizontal_LerpToContent_d_71); +DO_TYPEDEF(0x03CE86C0, Func_1_ValueTuple_2_Single_Single_); +DO_TYPEDEF(0x03CF8508, Scroller_1); +DO_TYPEDEF(0x03CF8460, Scroller_Snap); +DO_TYPEDEF(0x03CF8520, Scroller_AutoScrollState); +DO_TYPEDEF(0x03CFACF0, EasingFunction_1); +DO_TYPEDEF(0x03CF8478, IList_1_UnityEngine_RectTransform_); +DO_TYPEDEF(0x03CF9980, ScrollSnapBase_SelectionChangeStartEvent); +DO_TYPEDEF(0x03CF9970, ScrollSnapBase_SelectionPageChangedEvent); +DO_TYPEDEF(0x03CF9978, ScrollSnapBase_SelectionChangeEndEvent); +DO_TYPEDEF(0x03CF8440, ScrollPositionController_AutoScrollState); +DO_TYPEDEF(0x03CF99A0, ScrollSnap_PageSnapChange); +DO_TYPEDEF(0x03CF9938, IScrollSnap); +DO_TYPEDEF(0x03CF9930, UIVerticalScroller_c_DisplayClass28_0); +DO_TYPEDEF(0x03D0D020, MenuManager); +DO_TYPEDEF(0x03CF9898, Stack_1_UnityEngine_UI_Extensions_Menu_); +DO_TYPEDEF(0x03CF9698, UIPrimitiveBase); +DO_TYPEDEF(0x03CF9860, UILineRenderer); +DO_TYPEDEF(0x03CF97D0, UILineRendererList); +DO_TYPEDEF(0x03CFB0C0, UISquircle_c); +DO_TYPEDEF(0x03CFB080, BoundTooltipItem); +DO_TYPEDEF(0x03CF5C10, HorizontalLayoutGroup); +DO_TYPEDEF(0x03CFB0A0, ToolTip); +DO_TYPEDEF(0x03CFB060, TooltipTrigger_HoveredMouseFollowingLoop_d_10); +DO_TYPEDEF(0x03CFB058, UIWindowBase); +DO_TYPEDEF(0x03CF98C0, BezierPath); +DO_TYPEDEF(0x03CF98B0, CableCurve); +DO_TYPEDEF(0x03CF3000, IBeginDragHandler); +DO_TYPEDEF(0x03CF3010, IEndDragHandler); +DO_TYPEDEF(0x03CF2FF8, IDragHandler); +DO_TYPEDEF(0x03CFAF00, ScrollRectEx_c_DisplayClass2_0); +DO_TYPEDEF(0x03CF2FE0, IInitializePotentialDragHandler); +DO_TYPEDEF(0x03CFAF38, ScrollRectEx_c_DisplayClass3_0); +DO_TYPEDEF(0x03CFAF18, ScrollRectEx_c_DisplayClass4_0); +DO_TYPEDEF(0x03CFAF48, ScrollRectEx_c_DisplayClass5_0); +DO_TYPEDEF(0x03CFAF68, ScrollRectEx_c_DisplayClass6_0); +DO_TYPEDEF(0x03CFAEB0, ScrollRectTweener_DoMove_d_17); +DO_TYPEDEF(0x03CFAEE0, SelectableScaler_ScaleIN_d_11); +DO_TYPEDEF(0x03CFAED0, SelectableScaler_ScaleOUT_d_12); +DO_TYPEDEF(0x03CFADC8, UIScrollToSelection_ScrollToPosition_d_41); +DO_TYPEDEF(0x03CF5C18, VerticalLayoutGroup); +DO_TYPEDEF(0x03CF5C28, GridLayoutGroup); +DO_TYPEDEF(0x03CFAD78, UI_MagneticInfiniteScroll_SetInitContent_d_25); +DO_TYPEDEF(0x03CFACC8, UI_TweenScale_Tween_d_11); +DO_TYPEDEF(0x03CFB320, ColorPickerPresets_SaveType__Enum); +DO_TYPEDEF(0x03CFB308, ColorPickerPresets_JsonColor); +DO_TYPEDEF(0x03CFB130, FloatTween_FloatTweenCallback_1); +DO_TYPEDEF(0x03CFB0E8, FloatTween_FloatFinishCallback); DO_TYPEDEF(0x03C8FAE8, PlayerChannels_c); DO_TYPEDEF(0x03C8FA58, RoomChannels_c); DO_TYPEDEF(0x03C8F7B0, DissonanceComms_CoResumePlayback_d_94); @@ -1966,12 +9405,15 @@ DO_TYPEDEF(0x03C8F660, LogCategory__Enum_1); DO_TYPEDEF(0x03C8F638, LogLevel__Enum_3); DO_TYPEDEF(0x03C8EF98, IVoicePlayback); DO_TYPEDEF(0x03C8F740, RemoteVoicePlayerState); +DO_TYPEDEF(0x03CF55B0, Dictionary_2_UnityEngine_Vector3Int_System_String_); DO_TYPEDEF(0x03C8EBE8, VoiceProximityBroadcastTrigger_BroadcastGrid); DO_TYPEDEF(0x03C8EB50, VoiceProximityReceiptTrigger_ReceiptGrid); DO_TYPEDEF(0x03C931E8, DThread); +DO_TYPEDEF(0x03CF1588, List_1_Dissonance_Networking_ClientInfo_); DO_TYPEDEF(0x03C8E9A8, ClientIdCollection_c); DO_TYPEDEF(0x03C8EA50, Func_3_String_Int32_System_Collections_Generic_KeyValuePair_2_); DO_TYPEDEF(0x03C8EA40, Func_2_System_Collections_Generic_KeyValuePair_2_Boolean__1); +DO_TYPEDEF(0x03CF1608, Dictionary_2_System_String_List_1_System_UInt16_); DO_TYPEDEF(0x03C8E4C8, PacketWriter); DO_TYPEDEF(0x03C8E270, IList_1_Dissonance_Networking_Client_OpenChannel_); DO_TYPEDEF(0x03C94410, ICollection_1_Dissonance_RemoteChannel_); @@ -2033,7 +9475,452 @@ DO_TYPEDEF(0x03C951D0, Func_2_Dissonance_Config_VoiceSettings_Dissonance_Audio_C DO_TYPEDEF(0x03C95090, WebRtcPreprocessingPipeline_RnnoisePreprocessor_c); DO_TYPEDEF(0x03C950C0, Func_2_Dissonance_Config_VoiceSettings_Boolean_); DO_TYPEDEF(0x03C950B8, Func_2_Dissonance_Config_VoiceSettings_Single_); +DO_TYPEDEF(0x03CCE2A8, CinemachineVirtualCameraBase); +DO_TYPEDEF(0x03CD03B0, List_1_Cinemachine_CinemachineExtension_); +DO_TYPEDEF(0x03CCEAE8, ICinemachineTargetGroup); +DO_TYPEDEF(0x03CCE290, LensSettings); +DO_TYPEDEF(0x03CCE4A8, CameraState); +DO_TYPEDEF(0x03CD04F0, List_1_Cinemachine_CameraState_CustomBlendable_); +DO_TYPEDEF(0x03CCE370, ICinemachineCamera); +DO_TYPEDEF(0x03CD04D0, CinemachineBlendDefinition); +DO_TYPEDEF(0x03CCE228, CinemachineVirtualCameraBase__Array); +DO_TYPEDEF(0x03CD04D8, AnimationCurve__Array); +DO_TYPEDEF(0x03CCE320, CinemachineBlendListCamera_Instruction__Array); +DO_TYPEDEF(0x03CCE280, CinemachineBlend); +DO_TYPEDEF(0x03CB10C8, Dictionary_2_Cinemachine_ICinemachineCamera_System_Object_); +DO_TYPEDEF(0x03CCE488, CinemachineBrain); +DO_TYPEDEF(0x03CCE268, CinemachineBrain_BrainEvent); +DO_TYPEDEF(0x03CCE270, CinemachineBrain_VcamActivatedEvent); +DO_TYPEDEF(0x03CCE310, CinemachineBrain_BrainFrame); +DO_TYPEDEF(0x03CCE278, List_1_Cinemachine_CinemachineBrain_BrainFrame_); +DO_TYPEDEF(0x03CCE2B0, BlendSourceVirtualCamera); +DO_TYPEDEF(0x03CCE2C0, CinemachineBrain_AfterPhysics_d_33); +DO_TYPEDEF(0x03CCE1F8, CinemachineClearShot_c); +DO_TYPEDEF(0x03CCE238, Comparison_1_Cinemachine_CinemachineClearShot_Pair_); +DO_TYPEDEF(0x03CCE1B0, CinemachineCollider); +DO_TYPEDEF(0x03CCE170, List_1_List_1_UnityEngine_Vector2_); +DO_TYPEDEF(0x03CCE138, ConfinerOven); +DO_TYPEDEF(0x03CD0C20, ClipperLib_IntPoint); +DO_TYPEDEF(0x03CD02C0, List_1_Cinemachine_ClipperLib_IntPoint_); +DO_TYPEDEF(0x03CD0330, List_1_List_1_Cinemachine_ClipperLib_IntPoint_); +DO_TYPEDEF(0x03CD0320, ClipperLib_ClipperOffset); +DO_TYPEDEF(0x03CD1A38, List_1_Cinemachine_ClipperLib_DoublePoint_); +DO_TYPEDEF(0x03CD0A18, ClipperLib_PolyNode); +DO_TYPEDEF(0x03CD0C40, List_1_Cinemachine_ClipperLib_PolyNode_); +DO_TYPEDEF(0x03CD02C8, List_1_Cinemachine_ConfinerOven_PolygonSolution_); +DO_TYPEDEF(0x03CD0310, ConfinerOven_BakedSolution); +DO_TYPEDEF(0x03CCE058, CinemachinePathBase_Appearance); +DO_TYPEDEF(0x03CCE060, CinemachinePath_Waypoint__Array); +DO_TYPEDEF(0x03CCEC30, CinemachineVirtualCamera); +DO_TYPEDEF(0x03CCE110, CinemachineFreeLook); +DO_TYPEDEF(0x03CD0510, AxisState_IInputAxisProvider); +DO_TYPEDEF(0x03CCE0A8, CinemachineFreeLook_Orbit__Array); +DO_TYPEDEF(0x03CCE108, CinemachineVirtualCamera__Array); +DO_TYPEDEF(0x03CCE0C0, CinemachineOrbitalTransposer_UpdateHeadingDelegate); +DO_TYPEDEF(0x03CCEAB8, HeadingTracker); +DO_TYPEDEF(0x03CD1758, HeadingTracker_Item__Array); +DO_TYPEDEF(0x03CCE0B0, CinemachineOrbitalTransposer__Array); +DO_TYPEDEF(0x03CCE070, Dictionary_2_Cinemachine_CinemachineVirtualCameraBase_System_Int32_); +DO_TYPEDEF(0x03CCE050, CinemachineSmoothPath_Waypoint__Array); +DO_TYPEDEF(0x03CCEEF8, CinemachineStateDrivenCamera_Instruction__Array); +DO_TYPEDEF(0x03CCEF18, Dictionary_2_UnityEngine_AnimationClip_List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair_); +DO_TYPEDEF(0x03CCEF10, List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair_); +DO_TYPEDEF(0x03CCEE58, List_1_UnityEngine_AnimatorClipInfo_); +DO_TYPEDEF(0x03CCEDE0, CinemachineStoryboard); +DO_TYPEDEF(0x03CCEDC0, CinemachineStoryboard_CanvasInfo); +DO_TYPEDEF(0x03CCEC88, List_1_Cinemachine_CinemachineStoryboard_CanvasInfo_); +DO_TYPEDEF(0x03CD04B8, CinemachineTargetGroup); +DO_TYPEDEF(0x03CCEC78, CinemachineTargetGroup_Target__Array); +DO_TYPEDEF(0x03CCEBA8, CinemachineVirtualCamera_c); +DO_TYPEDEF(0x03CCEBF0, Comparison_1_Cinemachine_CinemachineComponentBase_); +DO_TYPEDEF(0x03CCEB60, Func_2_Cinemachine_CinemachineComponentBase_Boolean_); +DO_TYPEDEF(0x03CD01C8, NoiseSettings_TransformNoiseParams__Array); +DO_TYPEDEF(0x03CCEAF0, PositionPredictor); +DO_TYPEDEF(0x03CCEAB0, CinemachineOrbitalTransposer_c); +DO_TYPEDEF(0x03CD0348, StaticPointVirtualCamera); +DO_TYPEDEF(0x03CCE498, CinemachineCore); +DO_TYPEDEF(0x03CCE4A0, CinemachineCore_AxisInputDelegate); +DO_TYPEDEF(0x03CD0400, List_1_Cinemachine_CinemachineBrain_); +DO_TYPEDEF(0x03CCE328, List_1_Cinemachine_CinemachineVirtualCameraBase_); +DO_TYPEDEF(0x03CD03F8, List_1_List_1_Cinemachine_CinemachineVirtualCameraBase_); +DO_TYPEDEF(0x03CD0410, Dictionary_2_Cinemachine_CinemachineVirtualCameraBase_Cinemachine_CinemachineCore_UpdateStatus_); +DO_TYPEDEF(0x03CD0408, CinemachineCore_UpdateStatus); +DO_TYPEDEF(0x03CD0480, CinemachineCore_c); +DO_TYPEDEF(0x03CD0490, Comparison_1_Cinemachine_CinemachineVirtualCameraBase_); +DO_TYPEDEF(0x03CD0388, CinemachineVirtualCameraBase_c); +DO_TYPEDEF(0x03CD0380, Func_2_Cinemachine_CinemachineExtension_Boolean_); +DO_TYPEDEF(0x03CCE048, TargetPositionCache); +DO_TYPEDEF(0x03CD0178, Dictionary_2_UnityEngine_Transform_Cinemachine_TargetPositionCache_CacheEntry_); +DO_TYPEDEF(0x03CD0140, TargetPositionCache_CacheEntry); +DO_TYPEDEF(0x03CD00B0, TargetPositionCache_CacheCurve); +DO_TYPEDEF(0x03CD0118, List_1_Cinemachine_TargetPositionCache_CacheCurve_Item_); +DO_TYPEDEF(0x03CD00A8, List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_); +DO_TYPEDEF(0x03CCE2C8, UpdateTracker); +DO_TYPEDEF(0x03CD0010, Dictionary_2_UnityEngine_Transform_Cinemachine_UpdateTracker_UpdateStatus_); +DO_TYPEDEF(0x03CD0048, UpdateTracker_UpdateStatus); +DO_TYPEDEF(0x03CCFFB8, CinemachineInputProvider_c_DisplayClass7_0); +DO_TYPEDEF(0x03CCFF70, CinemachineTriggerAction_ActionSettings_TriggerEvent); +DO_TYPEDEF(0x03CCFEB8, CinemachineImpulseDefinition); +DO_TYPEDEF(0x03CD0C80, CinemachineImpulseManager_ImpulseEvent); +DO_TYPEDEF(0x03CD0C70, ISignalSource6D); +DO_TYPEDEF(0x03CCFE80, CinemachineImpulseDefinition_SignalSource); +DO_TYPEDEF(0x03CCFE60, CinemachineImpulseDefinition_LegacySignalSource); +DO_TYPEDEF(0x03CD0CB8, CinemachineImpulseManager); +DO_TYPEDEF(0x03CD0C88, List_1_Cinemachine_CinemachineImpulseManager_ImpulseEvent_); +DO_TYPEDEF(0x03CD0C30, ClipperLib_Int128); +DO_TYPEDEF(0x03CD0BA0, ClipperLib_TEdge); +DO_TYPEDEF(0x03CD0A68, ClipperLib_IntersectNode); +DO_TYPEDEF(0x03CD0B00, ClipperLib_MyIntersectNodeSort); +DO_TYPEDEF(0x03CD0BC8, ClipperLib_LocalMinima); +DO_TYPEDEF(0x03CD0B70, ClipperLib_Scanbeam); +DO_TYPEDEF(0x03CD0B08, ClipperLib_Maxima); +DO_TYPEDEF(0x03CD0B60, ClipperLib_OutRec); +DO_TYPEDEF(0x03CD0A98, ClipperLib_OutPt); +DO_TYPEDEF(0x03CD0AB8, ClipperLib_Join); +DO_TYPEDEF(0x03CD0BA8, List_1_Cinemachine_ClipperLib_TEdge_); +DO_TYPEDEF(0x03CD0C08, List_1_List_1_Cinemachine_ClipperLib_TEdge_); +DO_TYPEDEF(0x03CD0B28, List_1_Cinemachine_ClipperLib_OutRec_); +DO_TYPEDEF(0x03CD0318, ClipperLib_Clipper); +DO_TYPEDEF(0x03CD0B20, List_1_Cinemachine_ClipperLib_IntersectNode_); +DO_TYPEDEF(0x03CD0B10, List_1_Cinemachine_ClipperLib_Join_); +DO_TYPEDEF(0x03CD0BD0, ClipperLib_ClipperException); +DO_TYPEDEF(0x03CD19C8, CinemachinePostProcessing); +DO_TYPEDEF(0x03CD18F8, List_1_UnityEngine_Rendering_PostProcessing_PostProcessVolume_); +DO_TYPEDEF(0x03CD1918, Dictionary_2_Cinemachine_CinemachineBrain_UnityEngine_Rendering_PostProcessing_PostProcessLayer_); +DO_TYPEDEF(0x03CD1930, CinemachinePostProcessing_c); +DO_TYPEDEF(0x03CCE358, CinemachineDebug); +DO_TYPEDEF(0x03CD1868, HashSet_1_UnityEngine_Object_); +DO_TYPEDEF(0x03CCE350, CinemachineDebug_OnGUIDelegate); +DO_TYPEDEF(0x03CD17F0, List_1_System_Text_StringBuilder_); +DO_TYPEDEF(0x03D1DA50, IEnumerable_1_Photon_Bolt_BoltConnection_); +DO_TYPEDEF(0x03CC3EF0, IPrefabPool); +DO_TYPEDEF(0x03CCB4A0, BoltHitbox__Array); +DO_TYPEDEF(0x03CCB338, BoltPhysicsHits); +DO_TYPEDEF(0x03CCB210, ObjectPool_1_Photon_Bolt_LagCompensation_BoltPhysicsHits_); +DO_TYPEDEF(0x03CCB230, List_1_Photon_Bolt_LagCompensation_BoltPhysicsHit_); +DO_TYPEDEF(0x03CC2DF8, IEventFilter); +DO_TYPEDEF(0x03CC3C58, NetworkCommand_Data); +DO_TYPEDEF(0x03CC3848, BoltConnection_c); +DO_TYPEDEF(0x03CC3878, Func_2_Photon_Bolt_Internal_PacketStats_Int32_); +DO_TYPEDEF(0x03CC36E0, BoltEntitySettingsModifier); +DO_TYPEDEF(0x03CC3678, BoltEntity_DestroyDelayedInternal_d_107); +DO_TYPEDEF(0x03CC33A8, EntityList_GetEnumerator_d_4); +DO_TYPEDEF(0x03CC3300, EntityLookup_GetEnumerator_d_5); +DO_TYPEDEF(0x03CC3230, EventUnreliable_PriorityComparer); +DO_TYPEDEF(0x03CC9E50, DefaultEventFilter); +DO_TYPEDEF(0x03CC2CE8, EventReliableSendBuffer_get_Pending_d_9); +DO_TYPEDEF(0x03CC2CD0, EventReliableSendBuffer_get_Delivered_d_11); +DO_TYPEDEF(0x03CC2C30, NetworkId_EqualityComparer); +DO_TYPEDEF(0x03CC2B80, UniqueId_EqualityComparer); +DO_TYPEDEF(0x03CB9BD0, ConnectState__Enum); +DO_TYPEDEF(0x03CE3C78, DeliveryMode__Enum); +DO_TYPEDEF(0x03CE3FD8, SendOptions); +DO_TYPEDEF(0x03CC2B60, PhotonPoller); +DO_TYPEDEF(0x03CE5DC0, AuthModeOption__Enum); +DO_TYPEDEF(0x03CE5578, EncryptionMode__Enum); +DO_TYPEDEF(0x03CE5918, Nullable_1_ExitGames_Client_Photon_ConnectionProtocol_); +DO_TYPEDEF(0x03CE5D08, PhotonPortDefinition); +DO_TYPEDEF(0x03CE5C40, ServerConnection__Enum); +DO_TYPEDEF(0x03CE5C50, ClientState__Enum); +DO_TYPEDEF(0x03CE5B30, DisconnectCause__Enum); +DO_TYPEDEF(0x03CE5C28, LoadBalancingClient); +DO_TYPEDEF(0x03CB9E98, PhotonClient); +DO_TYPEDEF(0x03CE61B0, TargetFrameworks__Enum); +DO_TYPEDEF(0x03CE3100, PhotonPeer); +DO_TYPEDEF(0x03CE5CD0, LoadBalancingPeer); +DO_TYPEDEF(0x03CE30A8, Dictionary_2_ExitGames_Client_Photon_ConnectionProtocol_System_Type_); +DO_TYPEDEF(0x03CE0D60, IPhotonPeerListener); +DO_TYPEDEF(0x03CE30F8, Action_1_ExitGames_Client_Photon_DisconnectMessage_); +DO_TYPEDEF(0x03CE2E20, DisconnectMessage); +DO_TYPEDEF(0x03CE0970, Dictionary_2_System_Byte_System_Object_); +DO_TYPEDEF(0x03CE0CC0, ITrafficRecorder); +DO_TYPEDEF(0x03CE3058, TrafficStats); +DO_TYPEDEF(0x03CE3060, TrafficStatsGameLevel); +DO_TYPEDEF(0x03CE0DD8, ConnectionStateValue__Enum); +DO_TYPEDEF(0x03CE0E20, PeerBase); +DO_TYPEDEF(0x03CE0F00, ByteArraySlice); +DO_TYPEDEF(0x03CE0F40, Stack_1_ExitGames_Client_Photon_ByteArraySlice_); +DO_TYPEDEF(0x03CE0AA8, ByteArraySlicePool); +DO_TYPEDEF(0x03CE0F48, Stack_1_ExitGames_Client_Photon_ByteArraySlice___Array); +DO_TYPEDEF(0x03CE0AB0, Protocol16); +DO_TYPEDEF(0x03CE0D68, StreamBuffer); +DO_TYPEDEF(0x03CE2E98, EventData); +DO_TYPEDEF(0x03CE2F58, ParameterDictionary); +DO_TYPEDEF(0x03CE0A58, NonAllocDictionary_2_System_Byte_System_Object_); +DO_TYPEDEF(0x03CE0A60, StructWrapperPools); +DO_TYPEDEF(0x03CF64A8, WrappedType__Enum); +DO_TYPEDEF(0x03CE2ED0, StructWrapper); +DO_TYPEDEF(0x03CE2C50, StructWrapper_1_System_Byte_); +DO_TYPEDEF(0x03CE3B90, StructWrapper_1_System_Byte___Array); +DO_TYPEDEF(0x03CE3B78, StructWrapper_1_System_Boolean_); +DO_TYPEDEF(0x03CE3B80, StructWrapper_1_System_Boolean___Array); +DO_TYPEDEF(0x03CE3BA0, Dictionary_2_System_Type_ExitGames_Client_Photon_StructWrapping_StructWrapperPool_); +DO_TYPEDEF(0x03CE3B98, List_1_System_IDisposable_); +DO_TYPEDEF(0x03CE2E18, OperationResponse); +DO_TYPEDEF(0x03CE2E28, OperationRequest); +DO_TYPEDEF(0x03CE0BD0, PhotonSocketState__Enum); +DO_TYPEDEF(0x03CE0B78, IPhotonSocket); +DO_TYPEDEF(0x03CE0AF8, NCommand); +DO_TYPEDEF(0x03CE0E18, NCommandPool); +DO_TYPEDEF(0x03CE0AD0, Stack_1_ExitGames_Client_Photon_NCommand_); +DO_TYPEDEF(0x03CE0C58, PeerBase_MyAction); +DO_TYPEDEF(0x03CE0998, Queue_1_ExitGames_Client_Photon_PeerBase_MyAction_); +DO_TYPEDEF(0x03CE0818, Queue_1_ExitGames_Client_Photon_StreamBuffer_); +DO_TYPEDEF(0x03CE08C0, ICryptoProvider); +DO_TYPEDEF(0x03CE09A0, LinkedList_1_ExitGames_Client_Photon_SimulationItem_); +DO_TYPEDEF(0x03CE07E8, SimulationItem); +DO_TYPEDEF(0x03CE09A8, NetworkSimulationSet); +DO_TYPEDEF(0x03CE0D78, EnetChannel); +DO_TYPEDEF(0x03CE0E40, EnetPeer); +DO_TYPEDEF(0x03CE0E30, List_1_ExitGames_Client_Photon_NCommand_); +DO_TYPEDEF(0x03CE0EA8, NonAllocDictionary_2_System_Int32_NCommand_); +DO_TYPEDEF(0x03CE0E10, Queue_1_ExitGames_Client_Photon_NCommand_); +DO_TYPEDEF(0x03CE0E38, EnetChannel__Array); +DO_TYPEDEF(0x03CE0D40, IPhotonEncryptor); +DO_TYPEDEF(0x03CE5660, Pool_1_ParameterDictionary_); +DO_TYPEDEF(0x03CE5670, Func_1_ExitGames_Client_Photon_ParameterDictionary_); +DO_TYPEDEF(0x03CE5668, Action_1_ExitGames_Client_Photon_ParameterDictionary_); +DO_TYPEDEF(0x03CE5530, LobbyType__Enum_1); +DO_TYPEDEF(0x03CE5AA8, TypedLobby); +DO_TYPEDEF(0x03CE5B20, EnterRoomParams); +DO_TYPEDEF(0x03CE5608, RoomOptions); +DO_TYPEDEF(0x03CE5B10, OpJoinRandomRoomParams); +DO_TYPEDEF(0x03CE5538, RaiseEventOptions); +DO_TYPEDEF(0x03CE5540, WebFlags); +DO_TYPEDEF(0x03CE5848, Dictionary_2_ExitGames_Client_Photon_ConnectionProtocol_System_Int32_); +DO_TYPEDEF(0x03CE5C90, Action_2_Photon_Realtime_ClientState_Photon_Realtime_ClientState_); +DO_TYPEDEF(0x03CE5C88, Action_1_ExitGames_Client_Photon_EventData_); +DO_TYPEDEF(0x03CE5C80, Action_1_ExitGames_Client_Photon_OperationResponse_); +DO_TYPEDEF(0x03CE5790, IConnectionCallbacks); +DO_TYPEDEF(0x03CE5830, List_1_Photon_Realtime_IConnectionCallbacks_); +DO_TYPEDEF(0x03CE5CF8, ConnectionCallbacksContainer); +DO_TYPEDEF(0x03CE5920, RegionHandler); +DO_TYPEDEF(0x03CE53A8, Region_1); +DO_TYPEDEF(0x03CE53A0, List_1_Photon_Realtime_Region_); +DO_TYPEDEF(0x03CE5400, RegionPinger); +DO_TYPEDEF(0x03CE5458, List_1_Photon_Realtime_RegionPinger_); +DO_TYPEDEF(0x03CE5440, Action_1_Photon_Realtime_Region_); +DO_TYPEDEF(0x03CE54C8, PhotonPing); +DO_TYPEDEF(0x03CE5968, Action_1_Photon_Realtime_RegionHandler_); +DO_TYPEDEF(0x03CE57C0, IMatchmakingCallbacks); +DO_TYPEDEF(0x03CE57E0, List_1_Photon_Realtime_IMatchmakingCallbacks_); +DO_TYPEDEF(0x03CE5CC0, MatchMakingCallbacksContainer); +DO_TYPEDEF(0x03CE5958, FriendInfo); +DO_TYPEDEF(0x03CE5928, List_1_Photon_Realtime_FriendInfo_); +DO_TYPEDEF(0x03CE5738, IInRoomCallbacks); +DO_TYPEDEF(0x03CE5758, List_1_Photon_Realtime_IInRoomCallbacks_); +DO_TYPEDEF(0x03CE5CF0, InRoomCallbacksContainer); +DO_TYPEDEF(0x03CE5A30, Player_1); +DO_TYPEDEF(0x03CE59D0, RoomInfo); +DO_TYPEDEF(0x03CE5A28, Room); +DO_TYPEDEF(0x03CE62F0, Dictionary_2_System_Int32_Photon_Realtime_Player_); +DO_TYPEDEF(0x03CE56D8, ILobbyCallbacks); +DO_TYPEDEF(0x03CE5788, List_1_Photon_Realtime_ILobbyCallbacks_); +DO_TYPEDEF(0x03CE5CB8, LobbyCallbacksContainer); +DO_TYPEDEF(0x03CE5940, List_1_Photon_Realtime_RoomInfo_); +DO_TYPEDEF(0x03CE5888, TypedLobbyInfo); +DO_TYPEDEF(0x03CE5CE0, List_1_Photon_Realtime_TypedLobbyInfo_); +DO_TYPEDEF(0x03CE5718, IWebRpcCallback); +DO_TYPEDEF(0x03CE56B0, List_1_Photon_Realtime_IWebRpcCallback_); +DO_TYPEDEF(0x03CE5C98, WebRpcCallbacksContainer); +DO_TYPEDEF(0x03CE56F0, IErrorInfoCallback); +DO_TYPEDEF(0x03CE5710, List_1_Photon_Realtime_IErrorInfoCallback_); +DO_TYPEDEF(0x03CE5CE8, ErrorInfoCallbacksContainer); +DO_TYPEDEF(0x03CE5890, ErrorInfo); +DO_TYPEDEF(0x03CE5818, LoadBalancingClient_CallbackTargetChange); +DO_TYPEDEF(0x03CE5CB0, Queue_1_Photon_Realtime_LoadBalancingClient_CallbackTargetChange_); +DO_TYPEDEF(0x03CB9660, Dictionary_2_System_Int32_Photon_Realtime_RoomInfo_); +DO_TYPEDEF(0x03CB9DE0, ISynchronizedQueue_1_UdpKit_Platform_Photon_PhotonPoller_PhotonPacket_); +DO_TYPEDEF(0x03CB9C60, Dictionary_2_UdpKit_Platform_Photon_ConnectState_UdpKit_Platform_Photon_ConnectState_); +DO_TYPEDEF(0x03CB9C40, ConnectState__Enum__Array); +DO_TYPEDEF(0x03CC2AD0, PhotonCloudGlobalBehavior_PhotonBoltBehavior_c); +DO_TYPEDEF(0x03CC29B8, BoltRuntimeSettings); +DO_TYPEDEF(0x03CC2970, BoltRuntimeSettings_c); +DO_TYPEDEF(0x03CC2958, Func_2_UdpKit_Platform_Photon_PhotonRegion_String_); +DO_TYPEDEF(0x03CC2730, Filter_1); +DO_TYPEDEF(0x03CC2708, Filter_EqualityComparer); +DO_TYPEDEF(0x03CC2610, NetworkObj_Meta_c_DisplayClass22_0); +DO_TYPEDEF(0x03CC83A8, NetworkTransform_c); +DO_TYPEDEF(0x03CC23B0, Priority_Comparer); +DO_TYPEDEF(0x03CC4988, NetworkProperty_Entity); +DO_TYPEDEF(0x03CC4760, NetworkProperty_Float); +DO_TYPEDEF(0x03CC4AB0, NetworkProperty_Integer); +DO_TYPEDEF(0x03CC4A38, NetworkProperty_PrefabId); +DO_TYPEDEF(0x03CC4980, NetworkProperty_ProtocolToken); +DO_TYPEDEF(0x03CC4758, NetworkProperty_Quaternion); +DO_TYPEDEF(0x03CC4A10, NetworkProperty_String); +DO_TYPEDEF(0x03CC4738, NetworkProperty_Transform); +DO_TYPEDEF(0x03CC4730, NetworkProperty_Vector); +DO_TYPEDEF(0x03CC3F10, InstantiateFlags); +DO_TYPEDEF(0x03CC8228, PrefabId_Comparer); +DO_TYPEDEF(0x03CC8218, PrefabId_EqualityComparer); +DO_TYPEDEF(0x03CC8208, TypeId_Comparer); +DO_TYPEDEF(0x03CC8200, TypeId_EqualityComparer); +DO_TYPEDEF(0x03CC81E8, PooledProtocolTokenBase); +DO_TYPEDEF(0x03CC9A28, ObjectPool_1_Photon_Bolt_Internal_PooledProtocolTokenBase_); +DO_TYPEDEF(0x03CC37C8, PacketPool); +DO_TYPEDEF(0x03CC81C0, Stack_1_Photon_Bolt_Internal_Packet_); +DO_TYPEDEF(0x03CC81A0, PrefabDatabase); +DO_TYPEDEF(0x03CC8178, Dictionary_2_Photon_Bolt_PrefabId_UnityEngine_GameObject_); +DO_TYPEDEF(0x03CC8148, PrefabDatabase_c); +DO_TYPEDEF(0x03CC9E70, DefaultPrefabPool); +DO_TYPEDEF(0x03CC3750, BoltDisconnectToken); +DO_TYPEDEF(0x03CC8128, BoltProtocolTokenRegistry); +DO_TYPEDEF(0x03CC8120, BoltProtocolTokenRegistry_TokenRegistry__Array); +DO_TYPEDEF(0x03CC80F8, CCUService_CCUReport); +DO_TYPEDEF(0x03CC8110, CCUService_SendReport_d_6); +DO_TYPEDEF(0x03CC80C8, BoltSceneLoader); +DO_TYPEDEF(0x03CC8088, BoltSingleList_1_Photon_Bolt_SceneManagement_BoltSceneLoader_LoadSceneOperation_); +DO_TYPEDEF(0x03CC8098, BoltSceneLoader_LoadSceneOperation); +DO_TYPEDEF(0x03CC80B8, BoltSceneLoader_LoadAsync_d_12); +DO_TYPEDEF(0x03CC80A8, BoltSceneLoader_Done_d_13); +DO_TYPEDEF(0x03CCB490, BoltHitboxBodySnapshot); +DO_TYPEDEF(0x03CCB438, ObjectPool_1_Photon_Bolt_LagCompensation_BoltHitboxBodySnapshot_); +DO_TYPEDEF(0x03CCB410, BoltHitboxWorldSnapshot); +DO_TYPEDEF(0x03CCB3B8, ObjectPool_1_Photon_Bolt_LagCompensation_BoltHitboxWorldSnapshot_); +DO_TYPEDEF(0x03CCB3D0, BoltSingleList_1_Photon_Bolt_LagCompensation_BoltHitboxBodySnapshot_); +DO_TYPEDEF(0x03CCB218, BoltConsole); +DO_TYPEDEF(0x03CCB0D0, BoltRingBuffer_1_Photon_Bolt_Utils_BoltConsole_Line_); +DO_TYPEDEF(0x03CCB148, DebugInfo_1); +DO_TYPEDEF(0x03CCACA8, HashSet_1_Photon_Bolt_NetworkId_); +DO_TYPEDEF(0x03CCAE78, DebugInfo_c_DisplayClass61_0); +DO_TYPEDEF(0x03CCAE70, DebugInfo_c); +DO_TYPEDEF(0x03CCAEC8, Func_2_Photon_Bolt_Entity_Boolean_); +DO_TYPEDEF(0x03CCABD8, Queue_1_System_String_); +DO_TYPEDEF(0x03CCAC10, BoltLog_UnityWriter); +DO_TYPEDEF(0x03CCAA48, WaitHandleExtensions_c); +DO_TYPEDEF(0x03CCAA98, Func_3_System_Threading_Tasks_Task_1_Object_Boolean_); +DO_TYPEDEF(0x03CC3B88, BoltException); +DO_TYPEDEF(0x03CCAA10, BoltAssertFailedException); +DO_TYPEDEF(0x03CC3740, BoltPackageOverflowException); +DO_TYPEDEF(0x03CC3F40, IEnumerable_1_Photon_Bolt_Entity_); +DO_TYPEDEF(0x03CCA700, ControlCommandStart); +DO_TYPEDEF(0x03CCA7B8, ControlCommandShutdown); +DO_TYPEDEF(0x03CB7A90, UdpEventSessionConnected); +DO_TYPEDEF(0x03CB8550, UdpEventAcceptConnect); +DO_TYPEDEF(0x03CB80D0, UdpEventSessionConnectFailed); +DO_TYPEDEF(0x03CB7CB8, UdpEventSessionCreated); +DO_TYPEDEF(0x03CB7CC8, UdpEventSessionListUpdated); +DO_TYPEDEF(0x03CB7A40, UdpEventStreamDataStarted); +DO_TYPEDEF(0x03CB7990, UdpEventStreamProgress); +DO_TYPEDEF(0x03CB7A50, UdpEventStreamAbort); +DO_TYPEDEF(0x03CB8700, UdpEventStreamDataReceived); +DO_TYPEDEF(0x03CB87D0, UdpEventConnectAttempt); +DO_TYPEDEF(0x03CB7D00, UdpEventStartFailed); +DO_TYPEDEF(0x03CB7D10, UdpEventStartDone); +DO_TYPEDEF(0x03CB87A8, UdpEventConnectFailed); +DO_TYPEDEF(0x03CB8758, UdpEventConnectRefused); +DO_TYPEDEF(0x03CB83E0, UdpEventConnectRequest); +DO_TYPEDEF(0x03CCA8C8, BoltCore_c); +DO_TYPEDEF(0x03CCA8B0, Func_2_Photon_Bolt_Entity_Photon_Bolt_BoltEntity_); +DO_TYPEDEF(0x03CCA888, Func_2_Photon_Bolt_BoltConnection_Boolean_); +DO_TYPEDEF(0x03CCA6B8, UdpLog_Writer); +DO_TYPEDEF(0x03CC9F60, Func_2_Photon_Bolt_BoltEntity_Boolean_); +DO_TYPEDEF(0x03CC9F58, Func_2_Photon_Bolt_BoltEntity_Photon_Bolt_UniqueId_); +DO_TYPEDEF(0x03CCA820, BoltCore_get_entities_d_72); +DO_TYPEDEF(0x03CCA530, BoltCore_c_DisplayClass109_0); +DO_TYPEDEF(0x03CC9BF0, Queue_1_Photon_Bolt_Internal_ControlCommand_); +DO_TYPEDEF(0x03CC3F18, IFactory); +DO_TYPEDEF(0x03CC2F00, IEventFactory); +DO_TYPEDEF(0x03CC98E8, EntityProxy_PriorityComparer); +DO_TYPEDEF(0x03D23C38, Button_OnFinishSubmit_d_9); DO_TYPEDEF(0x03C9EBF8, CanvasUpdateRegistry); +DO_TYPEDEF(0x03D23C60, IndexedSet_1_UnityEngine_UI_ICanvasElement_); +DO_TYPEDEF(0x03D23570, Dictionary_2_UnityEngine_UI_ICanvasElement_System_Int32_); +DO_TYPEDEF(0x03D23BC0, Comparison_1_UnityEngine_UI_ICanvasElement_); +DO_TYPEDEF(0x03D23B48, ClipperRegistry); +DO_TYPEDEF(0x03D23B50, IndexedSet_1_UnityEngine_UI_IClipper_); +DO_TYPEDEF(0x03D23B78, IClipper); +DO_TYPEDEF(0x03D23560, Dictionary_2_UnityEngine_UI_IClipper_System_Int32_); +DO_TYPEDEF(0x03D23B18, DefaultControls_IFactoryControls); +DO_TYPEDEF(0x03D23918, DefaultControls_DefaultRuntimeFactory); +DO_TYPEDEF(0x03D237A8, Dropdown_c_DisplayClass63_0); +DO_TYPEDEF(0x03D23728, Dropdown_DelayedDestroyDropdownList_d_75); +DO_TYPEDEF(0x03D235D8, GraphicRaycaster); +DO_TYPEDEF(0x03D235E0, List_1_UnityEngine_UI_Graphic_); +DO_TYPEDEF(0x03CCF4B0, IList_1_UnityEngine_UI_Graphic_); +DO_TYPEDEF(0x03D23608, GraphicRaycaster_c); +DO_TYPEDEF(0x03D23628, Comparison_1_UnityEngine_UI_Graphic_); +DO_TYPEDEF(0x03CCF4A0, GraphicRegistry); +DO_TYPEDEF(0x03D23558, Dictionary_2_UnityEngine_Canvas_UnityEngine_UI_Collections_IndexedSet_1_); +DO_TYPEDEF(0x03D235D0, IndexedSet_1_UnityEngine_UI_Graphic_); +DO_TYPEDEF(0x03D23568, Dictionary_2_UnityEngine_UI_Graphic_System_Int32_); +DO_TYPEDEF(0x03CCF498, ICollection_1_UnityEngine_UI_Graphic_); +DO_TYPEDEF(0x03CEE2F0, InputField_ContentType__Enum__Array); +DO_TYPEDEF(0x03CEE320, InputField_CaretBlink_d_170); +DO_TYPEDEF(0x03CEE2D8, InputField_MouseDragOutsideRect_d_192); +DO_TYPEDEF(0x03CEE1F0, LayoutGroup_DelayedSetDirty_d_56); +DO_TYPEDEF(0x03CDAE10, LayoutRebuilder); +DO_TYPEDEF(0x03CEE130, ObjectPool_1_UnityEngine_UI_LayoutRebuilder_); +DO_TYPEDEF(0x03CEE1E0, Func_1_UnityEngine_UI_LayoutRebuilder_); +DO_TYPEDEF(0x03CEE1D8, Action_1_UnityEngine_UI_LayoutRebuilder_); +DO_TYPEDEF(0x03CEE1A8, UnityAction_1_UnityEngine_Component_); +DO_TYPEDEF(0x03CEE128, LayoutRebuilder_c); +DO_TYPEDEF(0x03CEE160, Predicate_1_UnityEngine_Component_); +DO_TYPEDEF(0x03CEE100, Func_2_UnityEngine_UI_ILayoutElement_Single_); +DO_TYPEDEF(0x03CEE0D8, ILayoutElement); +DO_TYPEDEF(0x03CEDFF8, LayoutUtility_c); +DO_TYPEDEF(0x03CF1220, Scrollbar_ClickRepeat_d_58); +DO_TYPEDEF(0x03CF11A0, List_1_UnityEngine_UI_Selectable_); +DO_TYPEDEF(0x03CF1058, ColorWriteMask__Enum); +DO_TYPEDEF(0x03CF10A8, StencilMaterial_MatEntry); +DO_TYPEDEF(0x03CF0E08, IEnumerable_1_UnityEngine_UI_Toggle_); +DO_TYPEDEF(0x03CF0DC8, ToggleGroup_c); +DO_TYPEDEF(0x03CF0DE8, Predicate_1_UnityEngine_UI_Toggle_); +DO_TYPEDEF(0x03CF0E68, Func_2_UnityEngine_UI_Toggle_Boolean_); +DO_TYPEDEF(0x03CF0CB0, ReflectionMethodsCache); +DO_TYPEDEF(0x03CF0C70, ReflectionMethodsCache_Raycast3DCallback); +DO_TYPEDEF(0x03CF0C50, ReflectionMethodsCache_RaycastAllCallback); +DO_TYPEDEF(0x03CF0C00, ReflectionMethodsCache_GetRaycastNonAllocCallback); +DO_TYPEDEF(0x03CF0C90, ReflectionMethodsCache_Raycast2DCallback); +DO_TYPEDEF(0x03CF0E98, ReflectionMethodsCache_GetRayIntersectionAllCallback); +DO_TYPEDEF(0x03CF0A68, RaycastHit2D__Array); +DO_TYPEDEF(0x03CF0C20, ReflectionMethodsCache_GetRayIntersectionAllNonAllocCallback); +DO_TYPEDEF(0x03CF3280, ColorTween_ColorTweenCallback_1); +DO_TYPEDEF(0x03CF3288, FloatTween_FloatTweenCallback_2); +DO_TYPEDEF(0x03CF31F8, PanelEventHandler); +DO_TYPEDEF(0x03CF3208, PanelEventHandler_PointerEvent); +DO_TYPEDEF(0x03CF3098, EventSystem_c_DisplayClass52_0); +DO_TYPEDEF(0x03CF73B8, EventTrigger_Entry); +DO_TYPEDEF(0x03CF3040, List_1_UnityEngine_EventSystems_EventTrigger_Entry_); +DO_TYPEDEF(0x03CF3088, EventTrigger_TriggerEvent); +DO_TYPEDEF(0x03CF3080, IPointerMoveHandler); +DO_TYPEDEF(0x03CF2FD8, IPointerEnterHandler); +DO_TYPEDEF(0x03CF2FD0, IPointerExitHandler); +DO_TYPEDEF(0x03CF2FC8, IPointerDownHandler); +DO_TYPEDEF(0x03CF2FF0, IPointerUpHandler); +DO_TYPEDEF(0x03CF2FE8, IPointerClickHandler); +DO_TYPEDEF(0x03CF3008, IDropHandler); +DO_TYPEDEF(0x03CF2FA0, IUpdateSelectedHandler); +DO_TYPEDEF(0x03CF2F98, ISelectHandler); +DO_TYPEDEF(0x03CF2F90, IDeselectHandler); +DO_TYPEDEF(0x03CF2FB0, IMoveHandler); +DO_TYPEDEF(0x03CF2FA8, ISubmitHandler); +DO_TYPEDEF(0x03CF2FC0, ICancelHandler); +DO_TYPEDEF(0x03CF2E70, ExecuteEvents_EventFunction_1_IPointerMoveHandler_); +DO_TYPEDEF(0x03CF2F68, ExecuteEvents_EventFunction_1_IPointerEnterHandler_); +DO_TYPEDEF(0x03CF2E68, ExecuteEvents_EventFunction_1_IPointerExitHandler_); +DO_TYPEDEF(0x03CF2F80, ExecuteEvents_EventFunction_1_IPointerDownHandler_); +DO_TYPEDEF(0x03CF2E78, ExecuteEvents_EventFunction_1_IPointerUpHandler_); +DO_TYPEDEF(0x03CF2E90, ExecuteEvents_EventFunction_1_IPointerClickHandler_); +DO_TYPEDEF(0x03CF2E88, ExecuteEvents_EventFunction_1_IInitializePotentialDragHandler_); +DO_TYPEDEF(0x03CF2E98, ExecuteEvents_EventFunction_1_IBeginDragHandler_); +DO_TYPEDEF(0x03CF2F60, ExecuteEvents_EventFunction_1_IDragHandler_); +DO_TYPEDEF(0x03CF2F78, ExecuteEvents_EventFunction_1_IEndDragHandler_); +DO_TYPEDEF(0x03CF2ED0, ExecuteEvents_EventFunction_1_IDropHandler_); +DO_TYPEDEF(0x03CF2F88, ExecuteEvents_EventFunction_1_IScrollHandler_); +DO_TYPEDEF(0x03CF2ED8, ExecuteEvents_EventFunction_1_IUpdateSelectedHandler_); +DO_TYPEDEF(0x03CF2EC0, ExecuteEvents_EventFunction_1_ISelectHandler_); +DO_TYPEDEF(0x03CF2E80, ExecuteEvents_EventFunction_1_IDeselectHandler_); +DO_TYPEDEF(0x03CF2F70, ExecuteEvents_EventFunction_1_IMoveHandler_); +DO_TYPEDEF(0x03CF2EC8, ExecuteEvents_EventFunction_1_ISubmitHandler_); +DO_TYPEDEF(0x03CF2E60, ExecuteEvents_EventFunction_1_ICancelHandler_); +DO_TYPEDEF(0x03CF2E20, PointerInputModule_MouseState); +DO_TYPEDEF(0x03CF2D80, PointerInputModule_ButtonState); +DO_TYPEDEF(0x03CF2D90, List_1_UnityEngine_EventSystems_PointerInputModule_ButtonState_); +DO_TYPEDEF(0x03CF2D78, PointerInputModule_MouseButtonEventData); +DO_TYPEDEF(0x03CF2D38, List_1_UnityEngine_EventSystems_BaseRaycaster_); +DO_TYPEDEF(0x03CF2CA0, PhysicsRaycaster_RaycastHitComparer); DO_TYPEDEF(0x03C8D7D8, BipedLimbOrientations); DO_TYPEDEF(0x03C8D7D0, BipedLimbOrientations_LimbOrientation); DO_TYPEDEF(0x03C8D518, BipedReferences); @@ -2054,11 +9941,104 @@ DO_TYPEDEF(0x03C90DD0, PuppetMasterLite_Activation_d_21); DO_TYPEDEF(0x03C90DC0, PuppetMasterLite_Deactivation_d_23); DO_TYPEDEF(0x03C90D10, PuppetMasterSettings_PuppetUpdateLimit); DO_TYPEDEF(0x03C90D08, List_1_RootMotion_Dynamics_PuppetMaster_); +DO_TYPEDEF(0x03CBB4E0, DemonicPortal_OpenPortal_d_4); +DO_TYPEDEF(0x03CBB458, DynamicBone_c_DisplayClass72_0); +DO_TYPEDEF(0x03CBB328, DecalDestroyer_Start_d_1); +DO_TYPEDEF(0x03CBB260, ExtinguishableFire_Extinguishing_d_6); +DO_TYPEDEF(0x03CBB250, ExtinguishableFire_StartingFire_d_7); +DO_TYPEDEF(0x03CBB228, physicWalk); +DO_TYPEDEF(0x03CBB178, physicWalk_MouseLook); +DO_TYPEDEF(0x03CBB130, ExplosionsSpriteSheetAnimation_UpdateCorutine_d_26); +DO_TYPEDEF(0x03CBC588, LeanAudioStream); +DO_TYPEDEF(0x03CBC570, LeanAudioOptions); +DO_TYPEDEF(0x03CBC568, LeanAudio); +DO_TYPEDEF(0x03CBC540, LeanTester); +DO_TYPEDEF(0x03CBC500, LeanTester_timeoutCheck_d_2); +DO_TYPEDEF(0x03CBC508, LeanTest); +DO_TYPEDEF(0x03D11D98, LeanTween); +DO_TYPEDEF(0x03CBC4E0, LTSeq); +DO_TYPEDEF(0x03CBF060, TweenAction__Enum); +DO_TYPEDEF(0x03CBF068, LeanTweenType__Enum); +DO_TYPEDEF(0x03CBC4C8, LTDescr); +DO_TYPEDEF(0x03CBF018, LTDescr_EaseTypeDelegate); +DO_TYPEDEF(0x03CBC3E0, LTDescr_ActionMethodDelegate); +DO_TYPEDEF(0x03CBEFE8, LTDescrOptional); +DO_TYPEDEF(0x03CBC290, LTBezier); +DO_TYPEDEF(0x03CBC458, LTBezierPath); +DO_TYPEDEF(0x03CBC280, LTBezier__Array); +DO_TYPEDEF(0x03CBC450, LTSpline); +DO_TYPEDEF(0x03CBC2C8, LTRect); +DO_TYPEDEF(0x03D24150, Action_2_Single_Single_); +DO_TYPEDEF(0x03CBC4E8, LTSeq__Array); +DO_TYPEDEF(0x03CBC4D0, LTDescr__Array); +DO_TYPEDEF(0x03CBC2E0, LTEvent); +DO_TYPEDEF(0x03CBC2D8, Action_1_LTEvent___Array); +DO_TYPEDEF(0x03CBC408, LeanTween_c_DisplayClass193_0); +DO_TYPEDEF(0x03CBC308, LeanTween_c_DisplayClass194_0); +DO_TYPEDEF(0x03CBC378, LeanTween_c_DisplayClass195_0); +DO_TYPEDEF(0x03CBC388, LeanTween_c_DisplayClass196_0); +DO_TYPEDEF(0x03CBC4A8, LTGUI); +DO_TYPEDEF(0x03CBC268, LTRect__Array); +DO_TYPEDEF(0x03CBED70, LTDescr_c); +DO_TYPEDEF(0x03CBE900, Outline_c); +DO_TYPEDEF(0x03CBE920, Func_2_UnityEngine_Renderer_Boolean_); +DO_TYPEDEF(0x03CBE898, Func_3_UnityEngine_Vector3_Int32_System_Collections_Generic_KeyValuePair_2_); +DO_TYPEDEF(0x03CBE8A0, Func_2_System_Collections_Generic_KeyValuePair_2_UnityEngine_Vector3_); +DO_TYPEDEF(0x03CBFA00, Lightning_Storm_d_16); +DO_TYPEDEF(0x03CBF9E8, Lightning_Soundfx_d_17); +DO_TYPEDEF(0x03CBFA68, ProtonPack_ProtonPackFire_d_10); +DO_TYPEDEF(0x03CBF8F8, ShatterableGlass_Figure); +DO_TYPEDEF(0x03CBF918, ShatterableGlass_BaseLine); +DO_TYPEDEF(0x03CBF9D8, FireBaseScript_CleanupEverythingCoRoutine_d_12); +DO_TYPEDEF(0x03CBF840, ICollisionHandler); +DO_TYPEDEF(0x03CBF888, LoopingAudioSource); +DO_TYPEDEF(0x03CBF8B8, FireProjectileScript_SendCollisionAfterDelay_d_12); +DO_TYPEDEF(0x03CBF738, MeteorSwarmCollisionDelegate); +DO_TYPEDEF(0x03CBF768, MeteorSwarmScript_SpawnMeteor_d_18); +DO_TYPEDEF(0x03CBF7C8, MeteorSwarmScript_CleanupMeteor_d_22); +DO_TYPEDEF(0x03CE0EC0, Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Object_); +DO_TYPEDEF(0x03CE2C30, UnknownType); +DO_TYPEDEF(0x03CE0B48, IPhotonSocket_c); +DO_TYPEDEF(0x03CE0B68, Func_2_System_Net_IPAddress_String_); +DO_TYPEDEF(0x03CE0870, PeerBase_c_DisplayClass108_0); +DO_TYPEDEF(0x03CE0868, PeerBase_c_DisplayClass109_0); +DO_TYPEDEF(0x03CE5BF8, PeerStateValue__Enum); +DO_TYPEDEF(0x03CE5D88, SerializeStreamMethod); +DO_TYPEDEF(0x03CE5D80, DeserializeStreamMethod); +DO_TYPEDEF(0x03CE2F90, CustomType); +DO_TYPEDEF(0x03CE2F28, InvalidDataException_1); +DO_TYPEDEF(0x03CE0AB8, Protocol18); +DO_TYPEDEF(0x03CE2C60, Protocol18_GpType__Enum); +DO_TYPEDEF(0x03CE2C18, Hashtable_1__Array); +DO_TYPEDEF(0x03CE2BD8, IDictionary__Array); +DO_TYPEDEF(0x03CE3E68, SocketTcpAsync_ReceiveContext); +DO_TYPEDEF(0x03CE3C80, SupportClass_IntegerMillisecondsDelegate); +DO_TYPEDEF(0x03CE3CC0, SupportClass_c); +DO_TYPEDEF(0x03CE3CD8, SupportClass_c_DisplayClass6_0); +DO_TYPEDEF(0x03CE08B0, TPeer); +DO_TYPEDEF(0x03CE3CB0, List_1_ExitGames_Client_Photon_StreamBuffer_); +DO_TYPEDEF(0x03CE2FE0, EncryptorNet); +DO_TYPEDEF(0x03CE0838, DiffieHellmanCryptoProvider); +DO_TYPEDEF(0x03D20B00, FontAsset_c); +DO_TYPEDEF(0x03D20AA0, Func_2_UnityEngine_TextCore_Text_Character_UInt32_); +DO_TYPEDEF(0x03D20910, FontFeatureTable_c); +DO_TYPEDEF(0x03D208D0, Func_2_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_UInt32_); +DO_TYPEDEF(0x03D1E7F8, MaterialReference_1__Array); +DO_TYPEDEF(0x03D207D0, MaterialReferenceManager_1); +DO_TYPEDEF(0x03D206E0, Dictionary_2_System_Int32_UnityEngine_TextCore_Text_SpriteAsset_); +DO_TYPEDEF(0x03D206D0, Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextColorGradient_); +DO_TYPEDEF(0x03D1E7E8, TextColorGradient__Array); +DO_TYPEDEF(0x03D204E0, SpriteAsset_c); +DO_TYPEDEF(0x03D20500, Func_2_UnityEngine_TextCore_Text_SpriteGlyph_UInt32_); +DO_TYPEDEF(0x03D20580, Func_2_UnityEngine_TextCore_Text_SpriteCharacter_UInt32_); +DO_TYPEDEF(0x03D1EC58, TextGenerator_1); +DO_TYPEDEF(0x03D1E7F0, RichTextTagAttribute_1__Array); +DO_TYPEDEF(0x03D1E818, XmlTagAttribute__Array); DO_TYPEDEF(0x03C8CAA8, ScalableAO); DO_TYPEDEF(0x03C8CA98, MultiScaleVO); DO_TYPEDEF(0x03C8CA08, BloomRenderer_Level__Array); -DO_TYPEDEF(0x03C8C830, HableCurve_1); DO_TYPEDEF(0x03C8DF20, HableCurve_Segment_1); +DO_TYPEDEF(0x03C8C830, HableCurve_1); DO_TYPEDEF(0x03C8DF18, HableCurve_Segment_1__Array); DO_TYPEDEF(0x03C8DF30, HableCurve_Uniforms_1); DO_TYPEDEF(0x03C8C5F8, ScreenSpaceReflectionPresetParameter); @@ -2081,7 +10061,214 @@ DO_TYPEDEF(0x03C8E108, PostProcessProfile_c); DO_TYPEDEF(0x03C8E0F0, Predicate_1_UnityEngine_Rendering_PostProcessing_PostProcessEffectSettings_); DO_TYPEDEF(0x03C8DC80, RuntimeUtilities_c); DO_TYPEDEF(0x03C8F5C8, TextureLerper); +DO_TYPEDEF(0x03CDD930, ZipException); +DO_TYPEDEF(0x03CDD850, BadPasswordException); +DO_TYPEDEF(0x03CDD998, BadReadException); +DO_TYPEDEF(0x03CDD698, BadCrcException); +DO_TYPEDEF(0x03CDD7F0, BadStateException); +DO_TYPEDEF(0x03CDD288, OffsetStream); +DO_TYPEDEF(0x03CDD5F0, ZipCipherStream); +DO_TYPEDEF(0x03CDD098, ZipFile_GetEnumerator_c_Iterator0); +DO_TYPEDEF(0x03CDDDD8, ZipSegmentedStream_RwMode__Enum); +DO_TYPEDEF(0x03CDD740, ZipSegmentedStream); +DO_TYPEDEF(0x03CDD720, DeflateStream_1); +DO_TYPEDEF(0x03CDDC98, ZlibBaseStream); +DO_TYPEDEF(0x03CDDC50, GZipStream_1); +DO_TYPEDEF(0x03CDDD78, ZlibException); +DO_TYPEDEF(0x03CC4A70, InventorySlot); +DO_TYPEDEF(0x03CC4BE0, InventorySlot_Meta); +DO_TYPEDEF(0x03CC4A88, ObjectPool_1_InventorySlot_); +DO_TYPEDEF(0x03CC49B8, SurvivalPlayer); +DO_TYPEDEF(0x03CC4B08, SurvivalPlayer_Meta); +DO_TYPEDEF(0x03CC4A20, ObjectPool_1_SurvivalPlayer_); +DO_TYPEDEF(0x03D1DA60, IEnumerator_1_Photon_Bolt_SurvivalPlayer_); +DO_TYPEDEF(0x03CC4B38, SteamInventoryPlayer_Meta); +DO_TYPEDEF(0x03CC4990, ObjectPool_1_SteamInventoryPlayer_); +DO_TYPEDEF(0x03D17470, IEnumerator_1_Photon_Bolt_SteamInventoryPlayer_); +DO_TYPEDEF(0x03CC48C0, InnMazeWeb); +DO_TYPEDEF(0x03CC4C78, InnMazeWeb_Meta); +DO_TYPEDEF(0x03CC48C8, ObjectPool_1_InnMazeWeb_); +DO_TYPEDEF(0x03CC4878, Candle); +DO_TYPEDEF(0x03CC4D10, Candle_Meta); +DO_TYPEDEF(0x03CC4888, ObjectPool_1_Candle_); +DO_TYPEDEF(0x03D1FFD0, IEnumerator_1_Photon_Bolt_Candle_); +DO_TYPEDEF(0x03CC4790, SurvivalLobbyState); +DO_TYPEDEF(0x03CC47E8, NetworkArray_Objects_1_SurvivalPlayer_); +DO_TYPEDEF(0x03CC4B10, SurvivalLobbyState_Meta); +DO_TYPEDEF(0x03CC47A0, ObjectPool_1_SurvivalLobbyState_); +DO_TYPEDEF(0x03CC4688, PlayerState); +DO_TYPEDEF(0x03CC4B88, PlayerState_Meta); +DO_TYPEDEF(0x03CC4740, ObjectPool_1_PlayerState_); +DO_TYPEDEF(0x03CC4630, EnemyState); +DO_TYPEDEF(0x03CC4C88, EnemyState_Meta); +DO_TYPEDEF(0x03CC4668, ObjectPool_1_EnemyState_); +DO_TYPEDEF(0x03CC45C8, PetState); +DO_TYPEDEF(0x03CC4BA8, PetState_Meta); +DO_TYPEDEF(0x03CC45F0, ObjectPool_1_PetState_); +DO_TYPEDEF(0x03CC4598, HidingSpotState); +DO_TYPEDEF(0x03CC4C98, HidingSpotState_Meta); +DO_TYPEDEF(0x03CC45B0, ObjectPool_1_HidingSpotState_); +DO_TYPEDEF(0x03CC4550, MapState); +DO_TYPEDEF(0x03CC4B90, MapState_Meta); +DO_TYPEDEF(0x03CC4560, ObjectPool_1_MapState_); +DO_TYPEDEF(0x03CC4520, InnWebState); +DO_TYPEDEF(0x03CC4C40, InnWebState_Meta); +DO_TYPEDEF(0x03CC4530, ObjectPool_1_InnWebState_); +DO_TYPEDEF(0x03CC44E0, ManorSpiritState); +DO_TYPEDEF(0x03CC4B98, ManorSpiritState_Meta); +DO_TYPEDEF(0x03CC44F8, ObjectPool_1_ManorSpiritState_); +DO_TYPEDEF(0x03CC44B0, ManorMirrorState); +DO_TYPEDEF(0x03CC4BD0, ManorMirrorState_Meta); +DO_TYPEDEF(0x03CC44C8, ObjectPool_1_ManorMirrorState_); +DO_TYPEDEF(0x03CC4480, CrowState); +DO_TYPEDEF(0x03CC4CE0, CrowState_Meta); +DO_TYPEDEF(0x03CC4488, ObjectPool_1_CrowState_); +DO_TYPEDEF(0x03CC4450, IntroState); +DO_TYPEDEF(0x03CC4BE8, IntroState_Meta); +DO_TYPEDEF(0x03CC4468, ObjectPool_1_IntroState_); +DO_TYPEDEF(0x03CC4408, SteamInventoryState); +DO_TYPEDEF(0x03CC4440, NetworkArray_Objects_1_SteamInventoryPlayer_); +DO_TYPEDEF(0x03CC4B58, SteamInventoryState_Meta); +DO_TYPEDEF(0x03CC4428, ObjectPool_1_SteamInventoryState_); +DO_TYPEDEF(0x03CC43C8, TownPentagramState); +DO_TYPEDEF(0x03CC4400, NetworkArray_Objects_1_Candle_); +DO_TYPEDEF(0x03CC4AD8, TownPentagramState_Meta); +DO_TYPEDEF(0x03CC43D8, ObjectPool_1_TownPentagramState_); +DO_TYPEDEF(0x03CC4390, GoatState); +DO_TYPEDEF(0x03CC4CA0, GoatState_Meta); +DO_TYPEDEF(0x03CC43A0, ObjectPool_1_GoatState_); +DO_TYPEDEF(0x03CC6580, InteractObjectState); +DO_TYPEDEF(0x03CC4C10, InteractObjectState_Meta); +DO_TYPEDEF(0x03CC6590, ObjectPool_1_InteractObjectState_); +DO_TYPEDEF(0x03CC6538, SwitchState); +DO_TYPEDEF(0x03CC4B28, SwitchState_Meta); +DO_TYPEDEF(0x03CC6558, ObjectPool_1_SwitchState_); +DO_TYPEDEF(0x03CC6510, DissonancePlayerState); +DO_TYPEDEF(0x03CC4CD8, DissonancePlayerState_Meta); +DO_TYPEDEF(0x03CC6528, ObjectPool_1_DissonancePlayerState_); +DO_TYPEDEF(0x03CC64E0, JumpScareState); +DO_TYPEDEF(0x03CC4C00, JumpScareState_Meta); +DO_TYPEDEF(0x03CC64F0, ObjectPool_1_JumpScareState_); +DO_TYPEDEF(0x03CC64A0, DoorState); +DO_TYPEDEF(0x03CC4CB0, DoorState_Meta); +DO_TYPEDEF(0x03CC64B8, ObjectPool_1_DoorState_); +DO_TYPEDEF(0x03CC6460, BurnTrapState); +DO_TYPEDEF(0x03CC4CF8, BurnTrapState_Meta); +DO_TYPEDEF(0x03CC6488, ObjectPool_1_BurnTrapState_); +DO_TYPEDEF(0x03CC6430, PlaceObjectState); +DO_TYPEDEF(0x03CC4B78, PlaceObjectState_Meta); +DO_TYPEDEF(0x03CC6448, ObjectPool_1_PlaceObjectState_); +DO_TYPEDEF(0x03CC63E0, InnMazeState); +DO_TYPEDEF(0x03CC6428, NetworkArray_Objects_1_InnMazeWeb_); +DO_TYPEDEF(0x03CC4C80, InnMazeState_Meta); +DO_TYPEDEF(0x03CC63F8, ObjectPool_1_InnMazeState_); +DO_TYPEDEF(0x03CC63C0, DoorNumberState); +DO_TYPEDEF(0x03CC4CB8, DoorNumberState_Meta); +DO_TYPEDEF(0x03CC63C8, ObjectPool_1_DoorNumberState_); +DO_TYPEDEF(0x03CC6380, InnShrineState); +DO_TYPEDEF(0x03CC4C48, InnShrineState_Meta); +DO_TYPEDEF(0x03CC6398, ObjectPool_1_InnShrineState_); +DO_TYPEDEF(0x03CC6360, EnemyBasicState); +DO_TYPEDEF(0x03CC4C90, EnemyBasicState_Meta); +DO_TYPEDEF(0x03CC6368, ObjectPool_1_EnemyBasicState_); +DO_TYPEDEF(0x03CC4C28, InteractTriggerEvent_Meta); +DO_TYPEDEF(0x03CC62B8, ObjectPool_1_InteractTriggerEvent_); +DO_TYPEDEF(0x03CC4C50, InteractObjectRequestEvent_Meta); +DO_TYPEDEF(0x03CC6278, ObjectPool_1_InteractObjectRequestEvent_); +DO_TYPEDEF(0x03CC4C30, InteractPlopEvent_Meta); +DO_TYPEDEF(0x03CC6230, ObjectPool_1_InteractPlopEvent_); +DO_TYPEDEF(0x03CC4C20, InteractObjectResponseEvent_Meta); +DO_TYPEDEF(0x03CC61E0, ObjectPool_1_InteractObjectResponseEvent_); +DO_TYPEDEF(0x03CC4BF8, KnockoutBoxEvent_Meta); +DO_TYPEDEF(0x03CC6190, ObjectPool_1_KnockoutBoxEvent_); +DO_TYPEDEF(0x03CC4C70, HostStartedGameEvent_Meta); +DO_TYPEDEF(0x03CC6140, ObjectPool_1_HostStartedGameEvent_); +DO_TYPEDEF(0x03CC4CF0, DissonanceToClient_Meta); +DO_TYPEDEF(0x03CC60F0, ObjectPool_1_DissonanceToClient_); +DO_TYPEDEF(0x03CC4CE8, DissonanceToServer_Meta); +DO_TYPEDEF(0x03CC60A0, ObjectPool_1_DissonanceToServer_); +DO_TYPEDEF(0x03CC4BC0, KnockoutEvent_Meta); +DO_TYPEDEF(0x03CC6060, ObjectPool_1_KnockoutEvent_); +DO_TYPEDEF(0x03CC4B40, ReviveEvent_Meta); +DO_TYPEDEF(0x03CC6008, ObjectPool_1_ReviveEvent_); +DO_TYPEDEF(0x03CC4B48, SurvivalChangePlayerEvent_Meta); +DO_TYPEDEF(0x03CC5FB0, ObjectPool_1_SurvivalChangePlayerEvent_); +DO_TYPEDEF(0x03CC4B68, PlayerPickedUpEvent_Meta); +DO_TYPEDEF(0x03CC5F70, ObjectPool_1_PlayerPickedUpEvent_); +DO_TYPEDEF(0x03CC4BB0, KnockoutGrabRagdollEvent_Meta); +DO_TYPEDEF(0x03CC5F20, ObjectPool_1_KnockoutGrabRagdollEvent_); +DO_TYPEDEF(0x03CC4CD0, DropObjectEvent_Meta); +DO_TYPEDEF(0x03CC5ED0, ObjectPool_1_DropObjectEvent_); +DO_TYPEDEF(0x03CC4BD8, LobbyReadyEvent_Meta); +DO_TYPEDEF(0x03CC5E88, ObjectPool_1_LobbyReadyEvent_); +DO_TYPEDEF(0x03CC4D00, CreatePortalEvent_Meta); +DO_TYPEDEF(0x03CC5E38, ObjectPool_1_CreatePortalEvent_); +DO_TYPEDEF(0x03CC4CC0, EndingEvent_Meta); +DO_TYPEDEF(0x03CC5DE8, ObjectPool_1_EndingEvent_); +DO_TYPEDEF(0x03CC4AD0, UseBatteryEvent_Meta); +DO_TYPEDEF(0x03CC5DA0, ObjectPool_1_UseBatteryEvent_); +DO_TYPEDEF(0x03CC4B18, SystemChatMessageEvent_Meta); +DO_TYPEDEF(0x03CC5D50, ObjectPool_1_SystemChatMessageEvent_); +DO_TYPEDEF(0x03CC4AC8, VoteRequestEvent_Meta); +DO_TYPEDEF(0x03CC5D10, ObjectPool_1_VoteRequestEvent_); +DO_TYPEDEF(0x03CC4AE8, VoteEvent_Meta); +DO_TYPEDEF(0x03CC5CD0, ObjectPool_1_VoteEvent_); +DO_TYPEDEF(0x03CC4B80, RangedAttackEvent_Meta); +DO_TYPEDEF(0x03CC6B10, ObjectPool_1_RangedAttackEvent_); +DO_TYPEDEF(0x03CC4AF8, VoteCompletedEvent_Meta); +DO_TYPEDEF(0x03CC6AC0, ObjectPool_1_VoteCompletedEvent_); +DO_TYPEDEF(0x03CC4BA0, PlaceObjectEvent_Meta); +DO_TYPEDEF(0x03CC6A70, ObjectPool_1_PlaceObjectEvent_); +DO_TYPEDEF(0x03CC6A48, StateSerializerTypeIds); +DO_TYPEDEF(0x03CB0520, OpenXRFeature); +DO_TYPEDEF(0x03CB0F20, OpenXRSettings); +DO_TYPEDEF(0x03CB0FB0, OpenXRFeature__Array); +DO_TYPEDEF(0x03CB1000, List_1_UnityEngine_XR_OpenXR_Features_OpenXRFeature_); +DO_TYPEDEF(0x03CB0E70, OpenXRAnalytics_InitializeEvent); +DO_TYPEDEF(0x03CB0E68, OpenXRAnalytics_c); +DO_TYPEDEF(0x03CB0E90, Func_2_UnityEngine_XR_OpenXR_Features_OpenXRFeature_Boolean_); +DO_TYPEDEF(0x03CB0E98, Func_2_UnityEngine_XR_OpenXR_Features_OpenXRFeature_String_); +DO_TYPEDEF(0x03CB0A08, OpenXRFeature_NativeEvent__Enum); +DO_TYPEDEF(0x03CFE5B8, OpenXRLoaderBase); +DO_TYPEDEF(0x03CAD6F8, List_1_UnityEngine_Rendering_GraphicsDeviceType_); +DO_TYPEDEF(0x03CAD6B8, Dictionary_2_System_Type_UnityEngine_ISubsystem_); +DO_TYPEDEF(0x03D030B8, ISubsystem); +DO_TYPEDEF(0x03CB09E8, List_1_UnityEngine_XR_XRDisplaySubsystemDescriptor_); DO_TYPEDEF(0x03C8E010, List_1_UnityEngine_XR_XRInputSubsystemDescriptor_); +DO_TYPEDEF(0x03CB0B08, List_1_UnityEngine_XR_OpenXR_OpenXRLoaderBase_LoaderState_); +DO_TYPEDEF(0x03CB0BC0, OpenXRLoaderBase_ReceiveNativeEventDelegate); +DO_TYPEDEF(0x03CB0C68, OpenXRLoaderBase_c); +DO_TYPEDEF(0x03CB0D58, Func_2_UnityEngine_XR_OpenXR_Features_OpenXRFeature_Int32_); +DO_TYPEDEF(0x03CB0B88, OpenXRRestarter); +DO_TYPEDEF(0x03CB08E0, OpenXRRestarter_PauseAndShutdownAndRestartCoroutine_d_34); +DO_TYPEDEF(0x03CB0968, OpenXRRestarter_PauseAndRetryInitializationCoroutine_d_35); +DO_TYPEDEF(0x03CB0978, OpenXRRestarter_RestartCoroutine_d_36); +DO_TYPEDEF(0x03CB0940, WaitForRestartFinish); +DO_TYPEDEF(0x03D21E00, OpenXRInteractionFeature); +DO_TYPEDEF(0x03D22058, OpenXRInteractionFeature_ActionMapConfig); +DO_TYPEDEF(0x03CB0718, List_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionMapConfig_); +DO_TYPEDEF(0x03D22050, OpenXRInteractionFeature_DeviceConfig); +DO_TYPEDEF(0x03D21FC8, List_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_DeviceConfig_); +DO_TYPEDEF(0x03D22030, OpenXRInteractionFeature_ActionConfig); +DO_TYPEDEF(0x03D21FC0, List_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionConfig_); +DO_TYPEDEF(0x03D22038, OpenXRInteractionFeature_ActionBinding); +DO_TYPEDEF(0x03D21FB8, List_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionBinding_); +DO_TYPEDEF(0x03CB0268, IEnumerator_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionConfig_); +DO_TYPEDEF(0x03CB03A0, Dictionary_2_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_InteractionProfileType_Dictionary_2_System_String_System_Boolean_); +DO_TYPEDEF(0x03CB0820, Dictionary_2_System_String_List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_); +DO_TYPEDEF(0x03CB06C0, List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_); +DO_TYPEDEF(0x03CB07A8, OpenXRInput_c); +DO_TYPEDEF(0x03CB0740, Func_2_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_Boolean_); +DO_TYPEDEF(0x03CB0658, Func_2_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_DeviceConfig_String_); +DO_TYPEDEF(0x03CB0650, Func_2_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionBinding_Boolean_); +DO_TYPEDEF(0x03CB0648, Func_2_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionBinding_System_Collections_Generic_IEnumerable_1_); +DO_TYPEDEF(0x03CB05A8, OpenXRFeature_LoaderEvent__Enum); +DO_TYPEDEF(0x03CB0290, DPadInteraction_c); +DO_TYPEDEF(0x03CB02E0, Func_2_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_DeviceConfig_Boolean_); +DO_TYPEDEF(0x03CB02E8, Func_2_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionConfig_Boolean_); +DO_TYPEDEF(0x03CB0058, HandCommonPosesInteraction_c_DisplayClass17_0); +DO_TYPEDEF(0x03CB0060, HandCommonPosesInteraction_c); +DO_TYPEDEF(0x03CB21D8, PalmPoseInteraction_c); DO_TYPEDEF(0x03C90B48, PKCS7_ContentInfo); DO_TYPEDEF(0x03C90A38, PKCS7_EncryptedData); DO_TYPEDEF(0x03C91060, PKCS7_SignedData); @@ -2108,10 +10295,14 @@ DO_TYPEDEF(0x03C90738, X520_DnQualifier); DO_TYPEDEF(0x03C90790, X520_Surname); DO_TYPEDEF(0x03C90750, X520_GivenName); DO_TYPEDEF(0x03C90758, X520_Initial); +DO_TYPEDEF(0x03CF7F90, AuthorityKeyIdentifierExtension); DO_TYPEDEF(0x03C90420, BasicConstraintsExtension); DO_TYPEDEF(0x03C90228, GeneralNames); +DO_TYPEDEF(0x03D0A690, SubjectAltNameExtension); DO_TYPEDEF(0x03C90378, SubjectKeyIdentifierExtension); DO_TYPEDEF(0x03C91C08, ChallengeResponse); +DO_TYPEDEF(0x03D0A590, Type2Message); +DO_TYPEDEF(0x03D0A588, Type3Message); DO_TYPEDEF(0x03C919F0, AlertLevel__Enum); DO_TYPEDEF(0x03C919E0, Alert); DO_TYPEDEF(0x03CA2380, TlsException); @@ -2128,20 +10319,74 @@ DO_TYPEDEF(0x03C90EA8, BigInteger_ModulusRing_1); DO_TYPEDEF(0x03C90E40, BigInteger_2__Array); DO_TYPEDEF(0x03C91E80, PrimalityTest_1); DO_TYPEDEF(0x03C90E50, SequentialSearchPrimeGeneratorBase_1); +DO_TYPEDEF(0x03D20EB0, Action_1_Kalagaan_HairDesignerExtension_HairDesignerEvents_PlayModeStateChange_); +DO_TYPEDEF(0x03D20EC0, Action_1_Kalagaan_HairDesignerExtension_HairDesignerEvents_PauseState_); +DO_TYPEDEF(0x03D20E10, MotionSolver_c); +DO_TYPEDEF(0x03D20DF8, Func_2_Kalagaan_HairDesignerExtension_MotionSolver_Node_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeData_); +DO_TYPEDEF(0x03D20E28, Func_2_Kalagaan_HairDesignerExtension_MotionSolver_Node_Kalagaan_HairDesignerExtension_MotionSolver_GPUNodeInfo_); +DO_TYPEDEF(0x03D20D58, Func_2_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_DualSphere_); +DO_TYPEDEF(0x03D20B68, HairDesignerStrandMeshCollectionBase_c_DisplayClass2_0); +DO_TYPEDEF(0x03D20B38, Predicate_1_Kalagaan_HairDesignerExtension_HairDesignerStrandMeshCollectionBase_StrandMesh_); +DO_TYPEDEF(0x03D21110, HairDesignerGeneratorLongHairBase_c_DisplayClass48_0); +DO_TYPEDEF(0x03D210E0, HairDesignerGeneratorLongHairBase_c_DisplayClass50_0); +DO_TYPEDEF(0x03D210A0, HairDesignerGeneratorLongHairBase_c_DisplayClass53_0); +DO_TYPEDEF(0x03CBFBB0, HashSet_1_BehaviorDesigner_Runtime_Tasks_Task_); +DO_TYPEDEF(0x03CE4E18, BehaviorManager); +DO_TYPEDEF(0x03CBF928, BehaviorManager_BehaviorManagerHandler); +DO_TYPEDEF(0x03CBF9F8, BehaviorManager_BehaviorTree); +DO_TYPEDEF(0x03CBF980, List_1_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree_); +DO_TYPEDEF(0x03CFF918, List_1_List_1_System_Int32_); +DO_TYPEDEF(0x03CBF428, List_1_Stack_1_System_Int32_); +DO_TYPEDEF(0x03CBF430, List_1_BehaviorDesigner_Runtime_Tasks_TaskStatus_); +DO_TYPEDEF(0x03CBF9C8, BehaviorManager_BehaviorTree_ConditionalReevaluate); +DO_TYPEDEF(0x03CBF420, List_1_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree_ConditionalReevaluate_); +DO_TYPEDEF(0x03CBF458, Dictionary_2_System_Int32_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree_ConditionalReevaluate_); +DO_TYPEDEF(0x03CBF970, Dictionary_2_BehaviorDesigner_Runtime_Behavior_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree_); +DO_TYPEDEF(0x03CBF848, BehaviorManager_BehaviorThreadLoader); +DO_TYPEDEF(0x03CBF808, List_1_BehaviorDesigner_Runtime_BehaviorManager_BehaviorThreadLoader_); +DO_TYPEDEF(0x03CBF828, Func_5_BehaviorDesigner_Runtime_Behavior_UnityEngine_GameObject_String_UnityEngine_Transform_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree_); +DO_TYPEDEF(0x03CBF9A0, Dictionary_2_System_Object_BehaviorDesigner_Runtime_BehaviorManager_ThirdPartyTask_); +DO_TYPEDEF(0x03CBF940, BehaviorManager_ThirdPartyTask); +DO_TYPEDEF(0x03CBF9A8, Dictionary_2_BehaviorDesigner_Runtime_BehaviorManager_ThirdPartyTask_System_Object_); +DO_TYPEDEF(0x03CBF9E0, BehaviorManager_TaskAddData); +DO_TYPEDEF(0x03CBF9C0, BehaviorManager_TaskAddData_OverrideFieldValue); +DO_TYPEDEF(0x03CBF978, BehaviorManager_ThirdPartyTaskComparer); +DO_TYPEDEF(0x03CBF818, BehaviorManager_CheckThreadLoaders_c_Iterator0); +DO_TYPEDEF(0x03CBF5C8, BehaviorManager_CoroutineUpdate_c_Iterator1); +DO_TYPEDEF(0x03CBF0F8, IVariableSource); +DO_TYPEDEF(0x03CBF1A0, BinaryDeserialization_ObjectFieldMap); +DO_TYPEDEF(0x03CBF1A8, BinaryDeserialization_ObjectFieldMapComparer); +DO_TYPEDEF(0x03CBF3A8, JSONDeserialization); +DO_TYPEDEF(0x03CC0C00, Dictionary_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_List_1_System_Int32_); +DO_TYPEDEF(0x03CC0B28, Dictionary_2_System_Int32_Dictionary_2_System_String_System_Object_); +DO_TYPEDEF(0x03CC0C18, Dictionary_2_System_Int32_BehaviorDesigner_Runtime_Tasks_Task_); +DO_TYPEDEF(0x03CC0B18, MiniJSON_Parser); +DO_TYPEDEF(0x03CC0AF8, MiniJSON_Serializer); +DO_TYPEDEF(0x03CC0A30, TaskCoroutine_RunCoroutine_c_Iterator0); +DO_TYPEDEF(0x03CE4DE8, TaskUtility); +DO_TYPEDEF(0x03CC0920, List_1_BehaviorDesigner_Runtime_VariableSynchronizer_SynchronizedVariable_); +DO_TYPEDEF(0x03CC0910, Action_1_BehaviorDesigner_Runtime_VariableSynchronizer_SynchronizedVariable_); +DO_TYPEDEF(0x03CC0848, VariableSynchronizer_CoroutineUpdate_c_Iterator0); +DO_TYPEDEF(0x03CBF9D0, UnknownTask); DO_TYPEDEF(0x03CAAEB8, ScriptPlayable_1_UnityEngine_Timeline_ActivationMixerPlayable_); +DO_TYPEDEF(0x03CFE4A0, AnimationMotionXToDeltaPlayable); DO_TYPEDEF(0x03CAB120, AnimationOutputWeightProcessor); DO_TYPEDEF(0x03CAAEA0, List_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo_); DO_TYPEDEF(0x03CAAE00, AnimationPlayableAsset); DO_TYPEDEF(0x03CAAE50, AnimationPlayableAsset_get_outputs_d_45); DO_TYPEDEF(0x03CAA280, IEnumerator_1_UnityEngine_Playables_PlayableBinding_); DO_TYPEDEF(0x03CAB050, AnimationPreviewUpdateCallback); -DO_TYPEDEF(0x03CAADE8, List_1_UnityEngine_Animations_IAnimationWindowPreview_); DO_TYPEDEF(0x03CAADA0, IAnimationWindowPreview); +DO_TYPEDEF(0x03CAADE8, List_1_UnityEngine_Animations_IAnimationWindowPreview_); DO_TYPEDEF(0x03CAAD40, AnimationTrack); +DO_TYPEDEF(0x03D1D3B0, Queue_1_UnityEngine_Transform_); +DO_TYPEDEF(0x03CD2A48, AnimationLayerMixerPlayable); DO_TYPEDEF(0x03CAADC8, AnimationTrack_get_outputs_d_49); +DO_TYPEDEF(0x03CF3D68, TimelineAsset); DO_TYPEDEF(0x03CAAA78, TimelineAsset_EditorSettings); DO_TYPEDEF(0x03CAA520, StandardFrameRates__Enum); DO_TYPEDEF(0x03CAAA08, TimelineAsset_get_outputs_d_27); +DO_TYPEDEF(0x03CF3D00, IEnumerable_1_UnityEngine_Timeline_TimelineClip_); DO_TYPEDEF(0x03CAA358, IEnumerable_1_UnityEngine_Timeline_IMarker_); DO_TYPEDEF(0x03CAAC68, IPlayableAsset); DO_TYPEDEF(0x03CAA208, TrackAsset_get_outputs_d_65); @@ -2151,6 +10396,7 @@ DO_TYPEDEF(0x03CA9FA8, AudioClipProperties); DO_TYPEDEF(0x03CA9F78, AudioMixerProperties); DO_TYPEDEF(0x03CA9F30, AudioPlayableAsset); DO_TYPEDEF(0x03CA9FB8, AudioPlayableAsset_get_outputs_d_16); +DO_TYPEDEF(0x03CF3D88, AudioTrack); DO_TYPEDEF(0x03CA9F28, AudioTrack_get_outputs_d_4); DO_TYPEDEF(0x03CA9F48, ControlPlayableAsset); DO_TYPEDEF(0x03CA9E00, List_1_UnityEngine_Playables_PlayableDirector_); @@ -2160,6 +10406,7 @@ DO_TYPEDEF(0x03CA9DC8, HashSet_1_UnityEngine_Playables_PlayableDirector_); DO_TYPEDEF(0x03CA9EC8, IEnumerable_1_UnityEngine_Playables_PlayableDirector_); DO_TYPEDEF(0x03CA9F68, List_1_UnityEngine_Playables_Playable_); DO_TYPEDEF(0x03CA9E40, ControlPlayableAsset_GetControlableScripts_d_39); +DO_TYPEDEF(0x03D0B828, IEnumerator_1_UnityEngine_MonoBehaviour_); DO_TYPEDEF(0x03CAAD88, RuntimeClip); DO_TYPEDEF(0x03CA9F20, ScheduleRuntimeClip); DO_TYPEDEF(0x03CA9C28, SignalReceiver_EventKeyValue); @@ -2181,25 +10428,50 @@ DO_TYPEDEF(0x03CAAF28, SupportsChildTracksAttribute); DO_TYPEDEF(0x03CAA910, ScriptPlayable_1_UnityEngine_Timeline_TimelinePlayable_); DO_TYPEDEF(0x03CAA920, TimelinePlayable); DO_TYPEDEF(0x03CAB0D8, List_1_UnityEngine_Timeline_RuntimeElement_); -DO_TYPEDEF(0x03CAAFE0, List_1_UnityEngine_Timeline_ITimelineEvaluateCallback_); DO_TYPEDEF(0x03CAB030, ITimelineEvaluateCallback); +DO_TYPEDEF(0x03CAAFE0, List_1_UnityEngine_Timeline_ITimelineEvaluateCallback_); DO_TYPEDEF(0x03CAB098, Dictionary_2_UnityEngine_Timeline_TrackAsset_UnityEngine_Playables_Playable_); DO_TYPEDEF(0x03CAA140, ICollection_1_UnityEngine_Timeline_TrackAsset_); DO_TYPEDEF(0x03CAAFB8, Extrapolation_c); DO_TYPEDEF(0x03CAAF90, TimelineCreateUtilities_c_DisplayClass0_0); DO_TYPEDEF(0x03CAAFA0, TimelineCreateUtilities_c_DisplayClass0_1); DO_TYPEDEF(0x03CAAEF0, TimeUtility_c); +DO_TYPEDEF(0x03D13FF0, GUILayout_LayoutedWindow); +DO_TYPEDEF(0x03D13EC0, ExitGUIException); +DO_TYPEDEF(0x03D13ED0, GUIWordWrapSizer); +DO_TYPEDEF(0x03D13FB0, GUIScrollGroup); +DO_TYPEDEF(0x03D141E8, ScrollViewState); +DO_TYPEDEF(0x03D14DE0, SliderState); +DO_TYPEDEF(0x03CE5DD0, ConnectionHandler); +DO_TYPEDEF(0x03CE56A8, LoadBalancingPeer_c); +DO_TYPEDEF(0x03CE5390, PingMono); +DO_TYPEDEF(0x03CE5490, RegionHandler_c); +DO_TYPEDEF(0x03CE54A8, Comparison_1_Photon_Realtime_Region_); +DO_TYPEDEF(0x03CE53F0, RegionHandler_c_DisplayClass28_0); +DO_TYPEDEF(0x03CE5370, RegionPinger_RegionPingCoroutine_d_22); +DO_TYPEDEF(0x03CE63A8, MonoBehaviourEmpty_c_DisplayClass6_0); +DO_TYPEDEF(0x03CE6390, MonoBehaviourEmpty_c_DisplayClass6_0_StartCoroutineAndDestroy_g_Routine_0_d); +DO_TYPEDEF(0x03CE5FD0, PhotonAppSettings); +DO_TYPEDEF(0x03CBD038, IList_1_UnityEngine_ResourceManagement_ResourceProviders_IResourceProvider_); +DO_TYPEDEF(0x03CBE560, IList_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_); DO_TYPEDEF(0x03C9E790, GroupOperation); DO_TYPEDEF(0x03C98098, IList_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_); +DO_TYPEDEF(0x03CBEC20, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__3); DO_TYPEDEF(0x03C98FA8, SceneInstance); +DO_TYPEDEF(0x03CBE5B0, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__4); DO_TYPEDEF(0x03C9E170, SceneProvider_SceneOp); +DO_TYPEDEF(0x03CBE798, ISceneProvider); DO_TYPEDEF(0x03C9E610, WebRequestQueueOperation); +DO_TYPEDEF(0x03CBD568, UnityWebRequestAsyncOperation); +DO_TYPEDEF(0x03CBD6B0, Action_1_UnityEngine_Networking_UnityWebRequestAsyncOperation_); +DO_TYPEDEF(0x03D1D4D8, ResourceManagerException); DO_TYPEDEF(0x03C9E800, UnknownResourceProviderException); +DO_TYPEDEF(0x03CCB4B8, OperationException); DO_TYPEDEF(0x03C9E288, RemoteProviderException); DO_TYPEDEF(0x03C9E340, UnityWebRequest_Result__Enum); DO_TYPEDEF(0x03C9E338, UnityWebRequestResult); -DO_TYPEDEF(0x03C9E430, List_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_); DO_TYPEDEF(0x03C9E448, DelayedActionManager_DelegateInfo); +DO_TYPEDEF(0x03C9E430, List_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_); DO_TYPEDEF(0x03C9E468, List_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo___Array); DO_TYPEDEF(0x03C9E460, LinkedList_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_); DO_TYPEDEF(0x03C9E4E0, LinkedListNode_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_); @@ -2207,19 +10479,36 @@ DO_TYPEDEF(0x03C9E440, Stack_1_LinkedListNode_1_UnityEngine_ResourceManagement_U DO_TYPEDEF(0x03C9E840, LocationCacheKey); DO_TYPEDEF(0x03C9E778, DependenciesCacheKey); DO_TYPEDEF(0x03C9E798, AsyncOpHandlesCacheKey); +DO_TYPEDEF(0x03CBE7D0, HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_); +DO_TYPEDEF(0x03D1D4B0, IEnumerable_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_); +DO_TYPEDEF(0x03CBE838, DefaultAllocationStrategy); +DO_TYPEDEF(0x03CBE840, LRUCacheAllocationStrategy); DO_TYPEDEF(0x03C9E428, List_1_List_1_System_Object_); DO_TYPEDEF(0x03C9E410, Dictionary_2_System_Int32_List_1_System_Object_); DO_TYPEDEF(0x03C9E3A0, SerializedType); +DO_TYPEDEF(0x03CBEB88, ObjectInitializationData); +DO_TYPEDEF(0x03CBE500, DownloadOnlyLocation); +DO_TYPEDEF(0x03CBE3F8, AssetBundleRequestOptions); DO_TYPEDEF(0x03C9E208, AssetBundleResource); +DO_TYPEDEF(0x03CBD550, DownloadHandlerAssetBundle); DO_TYPEDEF(0x03C9E838, IGenericProviderOperation); +DO_TYPEDEF(0x03CBD5D8, AssetBundleRequest); +DO_TYPEDEF(0x03CBDB28, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__5); DO_TYPEDEF(0x03C9E178, ResourceProviderBase_BaseInitAsyncOp); +DO_TYPEDEF(0x03CBD9B8, AtlasSpriteProvider); DO_TYPEDEF(0x03C9E220, BundledAssetProvider_InternalOp); DO_TYPEDEF(0x03C9E1E0, Dictionary_2_UnityEngine_GameObject_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_); DO_TYPEDEF(0x03C9E2A0, Func_1_UnityEngine_ResourceManagement_AsyncOperations_DownloadStatus_); +DO_TYPEDEF(0x03CBD168, TextDataProvider); +DO_TYPEDEF(0x03CBD0A0, JsonAssetProvider); DO_TYPEDEF(0x03C9E150, LegacyResourcesProvider_InternalOp); DO_TYPEDEF(0x03C9E188, ResourceProviderBase_c_DisplayClass10_0); +DO_TYPEDEF(0x03CBE6A0, ProviderLoadRequestOptions); DO_TYPEDEF(0x03C9E0F8, SceneProvider_UnloadSceneOp); DO_TYPEDEF(0x03C9E068, TextDataProvider_InternalOp); +DO_TYPEDEF(0x03CBE698, ResourceLocationBase); +DO_TYPEDEF(0x03CBE738, List_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_); +DO_TYPEDEF(0x03CBDA88, IResourceLocation__Array); DO_TYPEDEF(0x03C98FC0, IEnumerator_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_); DO_TYPEDEF(0x03C9E028, DiagnosticEvent); DO_TYPEDEF(0x03C9E038, DiagnosticEventCollectorSingleton); @@ -2231,9 +10520,89 @@ DO_TYPEDEF(0x03C9E000, Action_1_UnityEngine_ResourceManagement_Diagnostics_Diagn DO_TYPEDEF(0x03C9DFC0, DiagnosticEventCollectorSingleton_c); DO_TYPEDEF(0x03C9DF98, Func_2_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_Int32_); DO_TYPEDEF(0x03C9DF78, DiagnosticEventCollector); +DO_TYPEDEF(0x03CBEBE0, List_1_PackedPlayModeBuildLogs_RuntimeBuildLog_); +DO_TYPEDEF(0x03CBCFC0, AsyncOperationHandle_1_UnityEngine_AddressableAssets_Initialization_ResourceManagerRuntimeData_); +DO_TYPEDEF(0x03CBD080, InitalizationObjectsOperation); +DO_TYPEDEF(0x03CBEE40, List_1_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData_); +DO_TYPEDEF(0x03CBD4B0, List_1_UnityEngine_ResourceManagement_Util_ObjectInitializationData_); +DO_TYPEDEF(0x03CBCF90, AsyncOperationHandle_1_UnityEngine_AddressableAssets_ResourceLocators_IResourceLocator_); +DO_TYPEDEF(0x03CBE848, AddressablesImpl); +DO_TYPEDEF(0x03CBE6D0, AddressablesImpl_ResourceLocatorInfo); +DO_TYPEDEF(0x03CBE810, List_1_UnityEngine_AddressableAssets_AddressablesImpl_ResourceLocatorInfo_); DO_TYPEDEF(0x03C98FD0, IResourceLocator); +DO_TYPEDEF(0x03CBCEB8, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__7); +DO_TYPEDEF(0x03CBD0B0, InitializationOperation); +DO_TYPEDEF(0x03CBD248, ResourceManagerDiagnostics); +DO_TYPEDEF(0x03CBD8F0, Dictionary_2_System_Int32_UnityEngine_AddressableAssets_Utility_DiagnosticInfo_); +DO_TYPEDEF(0x03CBD968, DiagnosticInfo); +DO_TYPEDEF(0x03CBE230, CheckCatalogsOperation); +DO_TYPEDEF(0x03CBDAD0, List_1_UnityEngine_AddressableAssets_ResourceLocators_IResourceLocator_); +DO_TYPEDEF(0x03CBEA58, IEnumerator_1_UnityEngine_AddressableAssets_ResourceLocators_IResourceLocator_); +DO_TYPEDEF(0x03CBE2A0, UpdateCatalogsOperation); +DO_TYPEDEF(0x03CBE7C0, Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_); +DO_TYPEDEF(0x03CD5E08, ICollection_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_); +DO_TYPEDEF(0x03CBEA10, Addressables_MergeMode__Enum); DO_TYPEDEF(0x03C98FD8, InvalidKeyException); +DO_TYPEDEF(0x03CBEA48, HashSet_1_System_Type_); +DO_TYPEDEF(0x03CBEAD8, Dictionary_2_System_Type_List_1_System_String_); +DO_TYPEDEF(0x03CBEA40, IEnumerable_1_UnityEngine_AddressableAssets_ResourceLocators_IResourceLocator_); +DO_TYPEDEF(0x03CBE540, AddressablesImpl_LoadResourceLocationKeyOp); +DO_TYPEDEF(0x03CBE570, Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_); +DO_TYPEDEF(0x03CBE5D0, AddressablesImpl_LoadResourceLocationKeysOp); +DO_TYPEDEF(0x03CBE708, AddressablesImpl_c); +DO_TYPEDEF(0x03CBE6F8, Func_2_UnityEngine_AddressableAssets_AddressablesImpl_ResourceLocatorInfo_UnityEngine_AddressableAssets_ResourceLocators_IResourceLocator_); +DO_TYPEDEF(0x03CBE2B8, Func_2_UnityEngine_AddressableAssets_AddressablesImpl_ResourceLocatorInfo_Boolean_); +DO_TYPEDEF(0x03CBE2A8, Func_2_UnityEngine_AddressableAssets_AddressablesImpl_ResourceLocatorInfo_String_); +DO_TYPEDEF(0x03CBE748, AddressablesImpl_c_DisplayClass62_0); +DO_TYPEDEF(0x03CBE598, AddressablesImpl_c_DisplayClass71_0); +DO_TYPEDEF(0x03CBE608, AddressablesImpl_c_DisplayClass81_0); +DO_TYPEDEF(0x03CBE538, AddressablesImpl_c_DisplayClass83_0); +DO_TYPEDEF(0x03CBE578, AddressablesImpl_c_DisplayClass96_0); +DO_TYPEDEF(0x03CBE588, AddressablesImpl_c_DisplayClass97_0); +DO_TYPEDEF(0x03CBE498, AddressablesImpl_c_DisplayClass100_0); +DO_TYPEDEF(0x03CBE4E8, AddressablesImpl_c_DisplayClass104_0); +DO_TYPEDEF(0x03CBE418, AddressablesImpl_c_DisplayClass106_0); +DO_TYPEDEF(0x03CBE440, AddressablesImpl_c_DisplayClass113_0); +DO_TYPEDEF(0x03CBE448, AddressablesImpl_c_DisplayClass114_0); +DO_TYPEDEF(0x03CBE3B0, AddressablesImpl_c_DisplayClass115_0); +DO_TYPEDEF(0x03CBE390, AddressablesImpl_c_DisplayClass120_0); +DO_TYPEDEF(0x03CBE3E0, AddressablesImpl_c_DisplayClass122_0); +DO_TYPEDEF(0x03CBE3D0, AddressablesImpl_c_DisplayClass125_0); +DO_TYPEDEF(0x03CBE348, AddressablesImpl_c_DisplayClass131_0); +DO_TYPEDEF(0x03CBE368, AddressablesImpl_c_DisplayClass132_0); +DO_TYPEDEF(0x03CBE1B0, AddressablesImpl_c_DisplayClass136_0); +DO_TYPEDEF(0x03CBE290, AddressablesImpl_c_DisplayClass140_0); +DO_TYPEDEF(0x03CBE098, AddressablesImpl_c_DisplayClass145_0); +DO_TYPEDEF(0x03CBE170, AddressablesImpl_c_DisplayClass146_0); +DO_TYPEDEF(0x03CBE760, AssetReference); +DO_TYPEDEF(0x03CBDD50, CheckCatalogsOperation_c); +DO_TYPEDEF(0x03CBDDD8, Func_2_UnityEngine_ResourceManagement_ResourceProviders_IResourceProvider_Boolean_); +DO_TYPEDEF(0x03CBE078, CleanBundleCacheOperation); +DO_TYPEDEF(0x03CBDBA0, UpdateCatalogsOperation_c); +DO_TYPEDEF(0x03CBDB30, UpdateCatalogsOperation_c_DisplayClass11_0); +DO_TYPEDEF(0x03CBD050, DynamicResourceLocator); +DO_TYPEDEF(0x03CBDA50, AddressablesPlatform__Enum); +DO_TYPEDEF(0x03CBE768, PlatformMappingService); +DO_TYPEDEF(0x03CBD928, Dictionary_2_UnityEngine_RuntimePlatform_UnityEngine_AddressableAssets_AddressablesPlatform_); +DO_TYPEDEF(0x03CBDDC0, ContentCatalogProvider); +DO_TYPEDEF(0x03CBD8E0, Dictionary_2_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_UnityEngine_AddressableAssets_ResourceProviders_ContentCatalogProvider_InternalOp_); +DO_TYPEDEF(0x03CBD758, ContentCatalogProvider_InternalOp); +DO_TYPEDEF(0x03CBDBC8, ContentCatalogData); +DO_TYPEDEF(0x03CBD7F8, Action_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__17); +DO_TYPEDEF(0x03CBD808, ContentCatalogProvider_InternalOp_BundledCatalog); +DO_TYPEDEF(0x03CBD5C8, AssetBundleCreateRequest); +DO_TYPEDEF(0x03CBD800, Action_1_UnityEngine_AddressableAssets_ResourceLocators_ContentCatalogData_); +DO_TYPEDEF(0x03CFE168, ICollection_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_); DO_TYPEDEF(0x03C98FF0, IEnumerable_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_); +DO_TYPEDEF(0x03CBDC00, ResourceLocationMap); +DO_TYPEDEF(0x03CBD3E8, Dictionary_2_System_Object_IList_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_); +DO_TYPEDEF(0x03CBD498, ContentCatalogData_CompactLocation); +DO_TYPEDEF(0x03CBD468, IList_1_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData_); +DO_TYPEDEF(0x03CBD1C8, CacheInitialization_CacheInitOp); +DO_TYPEDEF(0x03CBD1D8, CacheInitialization_c_DisplayClass1_0); +DO_TYPEDEF(0x03CBCFF0, InitializationOperation_c); +DO_TYPEDEF(0x03CBCF10, InitializationOperation_c_DisplayClass16_0); +DO_TYPEDEF(0x03CBCEC8, InitializationOperation_c_DisplayClass18_0); DO_TYPEDEF(0x03C9D4B0, TrackableId); DO_TYPEDEF(0x03C8F198, ControllerModel); DO_TYPEDEF(0x03C8F180, ControllerModel_c_DisplayClass13_0); @@ -2243,24 +10612,31 @@ DO_TYPEDEF(0x03C8EFC8, HandMeshTracker); DO_TYPEDEF(0x03C8EF80, HandTracker); DO_TYPEDEF(0x03C8EF08, OpenXRContext); DO_TYPEDEF(0x03C8EA08, OpenXRFeaturePlugin_1_MixedRealityFeaturePlugin_); +DO_TYPEDEF(0x03D1F338, List_1_Microsoft_MixedReality_OpenXR_SubsystemController_); DO_TYPEDEF(0x03C8E2B0, IOpenXRContext); +DO_TYPEDEF(0x03D1F510, OpenXRContextEvent); DO_TYPEDEF(0x03C8EA48, SessionSubsystemController); +DO_TYPEDEF(0x03CAD078, XRSessionSubsystemDescriptor); DO_TYPEDEF(0x03C8DCE8, List_1_UnityEngine_XR_ARSubsystems_XRSessionSubsystemDescriptor_); DO_TYPEDEF(0x03C8EA28, PlaneSubsystemController); +DO_TYPEDEF(0x03CAD250, XRPlaneSubsystemDescriptor); DO_TYPEDEF(0x03C8DE68, List_1_UnityEngine_XR_ARSubsystems_XRPlaneSubsystemDescriptor_); DO_TYPEDEF(0x03C8EB18, AnchorSubsystemController); +DO_TYPEDEF(0x03CAD4C8, XRAnchorSubsystemDescriptor); DO_TYPEDEF(0x03C8E1A8, List_1_UnityEngine_XR_ARSubsystems_XRAnchorSubsystemDescriptor_); DO_TYPEDEF(0x03C8EA38, RaycastSubsystemController); +DO_TYPEDEF(0x03CAD0F8, XRRaycastSubsystemDescriptor); DO_TYPEDEF(0x03C8DD58, List_1_UnityEngine_XR_ARSubsystems_XRRaycastSubsystemDescriptor_); DO_TYPEDEF(0x03C8E9D8, MeshSubsystemController); DO_TYPEDEF(0x03C8DFA8, List_1_UnityEngine_XR_XRMeshSubsystemDescriptor_); DO_TYPEDEF(0x03C8EA18, OpenXRViewConfigurationSettings); -DO_TYPEDEF(0x03C8DCA8, List_1_Microsoft_MixedReality_OpenXR_ViewConfiguration_); DO_TYPEDEF(0x03C8EE50, ViewConfiguration); +DO_TYPEDEF(0x03C8DCA8, List_1_Microsoft_MixedReality_OpenXR_ViewConfiguration_); DO_TYPEDEF(0x03C8DD00, ReprojectionMode__Enum__Array); DO_TYPEDEF(0x03C8EE30, SpatialGraphNode); DO_TYPEDEF(0x03C8ED30, XRAnchorStore); DO_TYPEDEF(0x03C8E380, OpenXRAnchorStore); +DO_TYPEDEF(0x03CAD3E0, TrackingState__Enum); DO_TYPEDEF(0x03C9D250, XRAnchor); DO_TYPEDEF(0x03C8EDD8, AsyncTaskMethodBuilder_1_Microsoft_MixedReality_OpenXR_XRAnchorStore_); DO_TYPEDEF(0x03C8EC48, XRAnchorTransferBatch); @@ -2269,6 +10645,7 @@ DO_TYPEDEF(0x03C8ECD0, AsyncTaskMethodBuilder_1_Microsoft_MixedReality_OpenXR_XR DO_TYPEDEF(0x03C8EFF8, OpenXRFeaturePlugin_1_HandTrackingFeaturePlugin_); DO_TYPEDEF(0x03C8EB30, HandTrackingSubsystemController); DO_TYPEDEF(0x03C8F1A0, OpenXRFeaturePlugin_1_MotionControllerFeaturePlugin_); +DO_TYPEDEF(0x03D1F470, NativeLibTokenAttribute); DO_TYPEDEF(0x03C8DCC8, ViewConfigurationType__Enum__Array); DO_TYPEDEF(0x03C8D950, ConnectionState__Enum); DO_TYPEDEF(0x03C8D960, DisconnectReason__Enum); @@ -2279,25 +10656,167 @@ DO_TYPEDEF(0x03C8E208, AsyncTaskMethodBuilder_1_Microsoft_MixedReality_OpenXR_Se DO_TYPEDEF(0x03C8E030, OpenXRSceneUnderstandingObserver); DO_TYPEDEF(0x03C8DFE8, OpenXRSceneUnderstandingObserver_StartDeserializingSceneFromStreamingAsset_d_7); DO_TYPEDEF(0x03C8DC20, OpenXRRuntimeRestartHandler); +DO_TYPEDEF(0x03CAD3C0, PlaneAlignment__Enum); +DO_TYPEDEF(0x03CAD3D0, PlaneClassification__Enum); DO_TYPEDEF(0x03C9BB98, BoundedPlane); DO_TYPEDEF(0x03C8DDD8, PluginEnvironmentSubsystem); DO_TYPEDEF(0x03C9D200, XRRaycast); +DO_TYPEDEF(0x03CAD410, Feature__Enum); +DO_TYPEDEF(0x03CAD058, XRSessionUpdateParams); +DO_TYPEDEF(0x03CAD408, ConfigurationDescriptor); +DO_TYPEDEF(0x03CAD420, Configuration_1); DO_TYPEDEF(0x03C8DC10, OpenXRFeaturePlugin_1_Microsoft_MixedReality_OpenXR_Remoting_AppRemotingPlugin_); DO_TYPEDEF(0x03C8DC30, AppRemotingPlugin_RemotingState__Enum); DO_TYPEDEF(0x03C8DBA8, AppRemotingPlugin_Connect_d_17); DO_TYPEDEF(0x03C8DBC8, AppRemotingPlugin_Listen_d_18); DO_TYPEDEF(0x03C8DA58, OpenXRFeaturePlugin_1_Microsoft_MixedReality_OpenXR_Remoting_PlayModeRemotingPlugin_); +DO_TYPEDEF(0x03CAC998, ARTrackableManager_5_UnityEngine_XR_ARSubsystems_XRAnchorSubsystem_UnityEngine_XR_ARSubsystems_XRAnchorSubsystemDescriptor_UnityEngine_XR_ARSubsystems_XRAnchorSubsystem_Provider_UnityEngine_XR_ARSubsystems_XRAnchor_ARAnchor_); +DO_TYPEDEF(0x03CAC9F0, ARAnchorManager); DO_TYPEDEF(0x03CA8D90, Action_1_UnityEngine_XR_ARFoundation_ARTrackablesParentTransformChangedEventArgs_); +DO_TYPEDEF(0x03CAC488, ARTrackablesParentTransformChangedEventArgs); DO_TYPEDEF(0x03C8E280, TrackableId__Array); +DO_TYPEDEF(0x03CAC8C8, Action_1_UnityEngine_XR_ARFoundation_ARAnchorsChangedEventArgs_); +DO_TYPEDEF(0x03CAC858, ARAnchorsChangedEventArgs); +DO_TYPEDEF(0x03CB87B0, UdpConnectionError__Enum); +DO_TYPEDEF(0x03CB8528, UdpEventRefuseConnect); +DO_TYPEDEF(0x03CB8540, UdpEventConnectEndPoint); +DO_TYPEDEF(0x03CB8548, UdpEventConnectEndPointCancel); +DO_TYPEDEF(0x03CB8748, UdpEventDisconnect); +DO_TYPEDEF(0x03CB8430, UdpEventLanBroadcastEnable); +DO_TYPEDEF(0x03CB8440, UdpEventLanBroadcastDisable); +DO_TYPEDEF(0x03CB84E8, UdpEventSessionConnect); +DO_TYPEDEF(0x03CB84F0, UdpEventSessionConnectRandom); +DO_TYPEDEF(0x03CB83E8, UdpEventSessionSetHostData); +DO_TYPEDEF(0x03CB8510, UdpEventStart); +DO_TYPEDEF(0x03CB8520, UdpEventClose); +DO_TYPEDEF(0x03CB7F38, UdpEventStreamCreateChannel); +DO_TYPEDEF(0x03CB86F0, UdpEventStreamSetBandwidth); +DO_TYPEDEF(0x03CB86B8, UdpEventStreamQueue); +DO_TYPEDEF(0x03CB8038, BroadcastSession); +DO_TYPEDEF(0x03CB8050, BroadcastSearch); +DO_TYPEDEF(0x03CB82D8, UdpSocket_c_DisplayClass104_0); +DO_TYPEDEF(0x03CB8260, UdpSocket_c_DisplayClass113_0); +DO_TYPEDEF(0x03CB80A0, UdpSocket_c_DisplayClass114_0); +DO_TYPEDEF(0x03CB7B38, UdpChannelName_Comparer); +DO_TYPEDEF(0x03CE3480, UdpChannelName_EqualityComparer); +DO_TYPEDEF(0x03CB84D8, UdpKitAccessException); +DO_TYPEDEF(0x03CB7890, DataEncryptor); +DO_TYPEDEF(0x03CB8798, Singleton_1_UdpKit_Security_EncryptionManager_); +DO_TYPEDEF(0x03CB77F0, IPacketHashValidator); +DO_TYPEDEF(0x03CB7808, IPacketIdValidator); +DO_TYPEDEF(0x03CB78B0, HMACPacketValidator); +DO_TYPEDEF(0x03CB78D0, Singleton_1_UdpKit_Security_PacketIdValidator_); +DO_TYPEDEF(0x03CB7828, Dictionary_2_UdpKit_UdpEndPoint_System_UInt32_); +DO_TYPEDEF(0x03CB7628, Task_2); +DO_TYPEDEF(0x03CB75A8, Singleton_1_UdpKit_Async_ThreadManager_); +DO_TYPEDEF(0x03CB7598, List_1_UdpKit_Async_Task_); +DO_TYPEDEF(0x03CB7600, ThreadManager_c); +DO_TYPEDEF(0x03CB7658, Func_2_UdpKit_Async_Task_Boolean_); +DO_TYPEDEF(0x03CCC798, TVERenderData); +DO_TYPEDEF(0x03CCC6C8, TVEElementMaterialData); +DO_TYPEDEF(0x03CCC618, TVEInstanced); +DO_TYPEDEF(0x03CCC778, List_1_TheVegetationEngine_TVEElement_); +DO_TYPEDEF(0x03CCC238, TVEVolumeData); +DO_TYPEDEF(0x03CCC0E8, TVETerrainSettings); +DO_TYPEDEF(0x03CCC160, TVETerrainLayerSettings); +DO_TYPEDEF(0x03CCC718, List_1_TheVegetationEngine_TVETerrainLayerSettings_); +DO_TYPEDEF(0x03CCC2F0, List_1_TheVegetationEngine_TVERenderData_); +DO_TYPEDEF(0x03CCC2D8, List_1_TheVegetationEngine_TVEInstanced_); +DO_TYPEDEF(0x03CCC250, TVEGlobalVolume_c); +DO_TYPEDEF(0x03CCC260, Comparison_1_TheVegetationEngine_TVEElement_); +DO_TYPEDEF(0x03CF5DA8, TVEManager); +DO_TYPEDEF(0x03D19C00, Dictionary_2_Opsive_UltimateCharacterController_Demo_DemoZoneTrigger_Opsive_UltimateCharacterController_Demo_DemoManager_DemoZone_); +DO_TYPEDEF(0x03D194B0, Door); +DO_TYPEDEF(0x03D19C70, List_1_Opsive_UltimateCharacterController_Demo_Objects_Door_); +DO_TYPEDEF(0x03D19780, FirstPersonSpringZone_SpringType__Enum); +DO_TYPEDEF(0x03D19558, MouseSmoothingZone_SmoothingType__Enum); +DO_TYPEDEF(0x03D190F8, SkyCar); +DO_TYPEDEF(0x03D18EA8, WheelEffects); +DO_TYPEDEF(0x03D18FF0, CarController); +DO_TYPEDEF(0x03D18E18, WheelCollider__Array); +DO_TYPEDEF(0x03D18E08, WheelEffects__Array); +DO_TYPEDEF(0x03D18DA8, SkidTrail_Start_d_1); +DO_TYPEDEF(0x03D18E60, WheelEffects_StartSkidTrail_d_18); +DO_TYPEDEF(0x03CB9DD8, PhotonPoller_PhotonPacket); +DO_TYPEDEF(0x03CBA040, PhotonPoller_c); +DO_TYPEDEF(0x03CB9E20, PhotonPoller_c_DisplayClass64_0); +DO_TYPEDEF(0x03CB9E48, PhotonPoller_StartClientTimeout_d_65); +DO_TYPEDEF(0x03CB9B70, PhotonPoller_c_DisplayClass104_0); +DO_TYPEDEF(0x03CB9CC8, PhotonPoller_SetHostInfoRoutine_d_104); +DO_TYPEDEF(0x03CB9CD8, PhotonPoller_JoinSessionPre_d_105); +DO_TYPEDEF(0x03CB9CE8, PhotonPoller_JoinSessionPost_d_106); +DO_TYPEDEF(0x03CB9BD8, PhotonPoller_JoinSessionRandomRoutine_d_107); +DO_TYPEDEF(0x03CB9BE0, PhotonPoller_JoinSessionRoutine_d_108); +DO_TYPEDEF(0x03CB9BE8, PhotonPoller_FailedJoinCallback_d_109); +DO_TYPEDEF(0x03CB9BB8, PhotonPoller_FailedCreateCallback_d_110); +DO_TYPEDEF(0x03CB97C8, RoutineManager); +DO_TYPEDEF(0x03CB97C0, ISynchronizedQueue_1_System_Collections_IEnumerator_); +DO_TYPEDEF(0x03CB9768, StunServers_StunServer); +DO_TYPEDEF(0x03CB9820, StunServers_StunServer__Array); +DO_TYPEDEF(0x03D14280, AOTLinker_c_1); +DO_TYPEDEF(0x03D143E0, Func_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_MoveInPlace_HandMovementOptions_); +DO_TYPEDEF(0x03D143F8, Action_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_MoveInPlace_HandMovementOptions_); +DO_TYPEDEF(0x03D143F0, Func_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_SlotEquip_ItemDefinitionStateName_); +DO_TYPEDEF(0x03D14408, Action_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_SlotEquip_ItemDefinitionStateName_); +DO_TYPEDEF(0x03D143D8, Func_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_Hold_StopAction_); +DO_TYPEDEF(0x03D14410, Action_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_Hold_StopAction_); +DO_TYPEDEF(0x03D143E8, Func_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_FlickReload_StartFlickDirection_); +DO_TYPEDEF(0x03D14400, Action_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_FlickReload_StartFlickDirection_); +DO_TYPEDEF(0x03D14570, Hold); +DO_TYPEDEF(0x03D14110, XRNode__Enum__Array); +DO_TYPEDEF(0x03D14608, FingerIndicator); +DO_TYPEDEF(0x03D140C8, FingerIndicator_FingerStates__Enum__Array); +DO_TYPEDEF(0x03D13D48, Dictionary_2_Opsive_Shared_Inventory_ItemDefinitionBase_System_String_); +DO_TYPEDEF(0x03CFD540, AnimatorControllerPlayable); +DO_TYPEDEF(0x03CF61E0, AnimationState); +DO_TYPEDEF(0x03CFDA38, Animation_Enumerator); +DO_TYPEDEF(0x03CFDA30, AnimationEvent__Array); +DO_TYPEDEF(0x03CFDA20, StateMachineBehaviour__Array); +DO_TYPEDEF(0x03CFD838, AnimatorControllerParameter); +DO_TYPEDEF(0x03CFD7E0, HumanBone__Array); +DO_TYPEDEF(0x03CFD7D8, SkeletonBone__Array); +DO_TYPEDEF(0x03CFE498, AnimationMixerPlayable); +DO_TYPEDEF(0x03CFE478, AnimationOffsetPlayable); +DO_TYPEDEF(0x03CFD5E0, AnimationPosePlayable); +DO_TYPEDEF(0x03CFE490, AnimationRemoveScalePlayable); +DO_TYPEDEF(0x03CFD550, AnimationScriptPlayable); +DO_TYPEDEF(0x03CBFCC8, VolumetricLightsPostProcessBase); +DO_TYPEDEF(0x03CBFE08, VolumetricLightsPostProcessBase_VolumetricLightsRenderPass); +DO_TYPEDEF(0x03CBFF80, VolumetricLightsTranslucency); +DO_TYPEDEF(0x03CBFCA8, List_1_VolumetricLights_VolumetricLightsTranslucency_); +DO_TYPEDEF(0x03D18108, List_1_UnityEngine_ParticleSystemVertexStream_); +DO_TYPEDEF(0x03D1E000, TerrainData); +DO_TYPEDEF(0x03CBC9F8, List_1_UnityEngine_Terrain_); +DO_TYPEDEF(0x03D1E0E0, TreePrototype); +DO_TYPEDEF(0x03D1E0F0, DetailPrototype); +DO_TYPEDEF(0x03D1D9A8, TerrainMap); +DO_TYPEDEF(0x03D1D9D8, Dictionary_2_UnityEngine_TerrainUtils_TerrainTileCoord_UnityEngine_Terrain_); +DO_TYPEDEF(0x03D1D988, Predicate_1_UnityEngine_Terrain_); +DO_TYPEDEF(0x03D1D9C0, TerrainMap_c_DisplayClass3_0); +DO_TYPEDEF(0x03D1D890, Dictionary_2_System_Int32_UnityEngine_TerrainUtils_TerrainMap_); +DO_TYPEDEF(0x03D1D888, TerrainUtility_c_DisplayClass2_0); +DO_TYPEDEF(0x03D1D908, TerrainUtility_c_DisplayClass2_1); +DO_TYPEDEF(0x03D1B010, PhysicsScene); +DO_TYPEDEF(0x03CFC068, AndroidJavaRunnable); +DO_TYPEDEF(0x03CFBC20, AndroidJavaException); +DO_TYPEDEF(0x03CFC118, GlobalJavaObjectRef); +DO_TYPEDEF(0x03CFC140, AndroidJavaProxy); +DO_TYPEDEF(0x03CFC070, AndroidJavaRunnableProxy); +DO_TYPEDEF(0x03D02F00, AndroidJavaObject); +DO_TYPEDEF(0x03CFC150, AndroidJavaClass); +DO_TYPEDEF(0x03D02F10, AndroidJavaObject__Array); +DO_TYPEDEF(0x03CFC0F8, jvalue__Array); DO_TYPEDEF(0x03C8BD40, HSteamUser); DO_TYPEDEF(0x03C8BD38, HSteamPipe); DO_TYPEDEF(0x03C8C538, InteropHelp_UTF8StringHandle); DO_TYPEDEF(0x03C8BFC0, CallbackIdentityAttribute); DO_TYPEDEF(0x03C8BD98, AccountID_t); DO_TYPEDEF(0x03C8BDA8, PublishedFileId_t); +DO_TYPEDEF(0x03CDC340, Int128); +DO_TYPEDEF(0x03CDC338, ClipperException); DO_TYPEDEF(0x03C92A18, CubicBezierCurve); -DO_TYPEDEF(0x03C92B70, List_1_SplineMesh_CurveSample_); DO_TYPEDEF(0x03C92A40, CurveSample); +DO_TYPEDEF(0x03C92B70, List_1_SplineMesh_CurveSample_); DO_TYPEDEF(0x03C92998, SplineNode); DO_TYPEDEF(0x03C92B20, MeshVertex); DO_TYPEDEF(0x03C92830, List_1_SplineMesh_SplineNode_); @@ -2308,24 +10827,55 @@ DO_TYPEDEF(0x03C92AF0, ListChangedEventArgs_1_SplineNode_); DO_TYPEDEF(0x03C92068, SourceMesh); DO_TYPEDEF(0x03C92078, Dictionary_2_System_Single_SplineMesh_CurveSample_); DO_TYPEDEF(0x03C92188, List_1_SplineMesh_MeshVertex_); -DO_TYPEDEF(0x03C923D8, List_1_SplineMesh_TrackSegment_); DO_TYPEDEF(0x03C92490, TrackSegment); +DO_TYPEDEF(0x03C923D8, List_1_SplineMesh_TrackSegment_); DO_TYPEDEF(0x03C92458, List_1_SplineMesh_TransformedMesh_); DO_TYPEDEF(0x03C923E0, ExampleTrack_c); DO_TYPEDEF(0x03C92590, Func_2_UnityEngine_Transform_UnityEngine_GameObject_); -DO_TYPEDEF(0x03C92130, List_1_SplineMesh_ExtrusionSegment_Vertex_); DO_TYPEDEF(0x03C91EE0, ExtrusionSegment_Vertex); +DO_TYPEDEF(0x03C92130, List_1_SplineMesh_ExtrusionSegment_Vertex_); DO_TYPEDEF(0x03C92158, ExtrusionSegment_c); DO_TYPEDEF(0x03C92370, Func_2_SplineMesh_MeshVertex_UnityEngine_Vector3_); DO_TYPEDEF(0x03C92360, Func_2_SplineMesh_MeshVertex_UnityEngine_Vector2_); DO_TYPEDEF(0x03C91FE0, MeshBender_c); DO_TYPEDEF(0x03C91F40, SplineMeshTiling_c); +DO_TYPEDEF(0x03CBAE70, BaseMaterialEffect_c); +DO_TYPEDEF(0x03CBAEB0, Func_2_Object_String_); +DO_TYPEDEF(0x03CBADC0, EffectPlayer); +DO_TYPEDEF(0x03CBAD70, EffectPlayer_c); +DO_TYPEDEF(0x03CBAC08, GraphicConnector_c); +DO_TYPEDEF(0x03CBABE0, Comparison_1_Coffee_UIEffects_GraphicConnector_); +DO_TYPEDEF(0x03CBAE78, Action_2_UnityEngine_Material_UnityEngine_UI_Graphic_); +DO_TYPEDEF(0x03CBAE98, MaterialCache); +DO_TYPEDEF(0x03CBABA0, Dictionary_2_UnityEngine_Hash128_Coffee_UIEffects_MaterialCache_MaterialEntry_); +DO_TYPEDEF(0x03CBAB08, MaterialCache_MaterialEntry); +DO_TYPEDEF(0x03CBAB70, IParameterTexture); +DO_TYPEDEF(0x03CBAA30, ParameterTexture_c); +DO_TYPEDEF(0x03CBA9A0, ColorMode__Enum_1); +DO_TYPEDEF(0x03CBAAA0, UIDissolve); +DO_TYPEDEF(0x03CBA950, EffectMode__Enum); +DO_TYPEDEF(0x03CBA958, BlurMode__Enum); +DO_TYPEDEF(0x03CBA9F0, UIEffect); +DO_TYPEDEF(0x03CBA980, UIHsvModifier); +DO_TYPEDEF(0x03CBA8C0, UIShadow); +DO_TYPEDEF(0x03CBA880, List_1_Coffee_UIEffects_UIShadow_); +DO_TYPEDEF(0x03CBA7C8, UIShiny); +DO_TYPEDEF(0x03CBA768, UITransitionEffect_EffectMode__Enum); +DO_TYPEDEF(0x03CBA730, UITransitionEffect); DO_TYPEDEF(0x03C93AE0, AudioSettings_AudioConfigurationChangeHandler); +DO_TYPEDEF(0x03CB85D0, UdpEndPoint_Comparer); +DO_TYPEDEF(0x03CB6750, UdpException); +DO_TYPEDEF(0x03CB66B8, UdpIPv4Address_Comparer); +DO_TYPEDEF(0x03CB6688, UdpIPv6Address_Comparer); +DO_TYPEDEF(0x03CB6670, NatFeatureStates__Enum); +DO_TYPEDEF(0x03CB6660, NatFeatures); +DO_TYPEDEF(0x03CEB760, Action_1_UnityEngine_Camera_); DO_TYPEDEF(0x03CA59C0, BaseUriAnnotation); DO_TYPEDEF(0x03CA59C8, LineInfoAnnotation); DO_TYPEDEF(0x03CA5AC8, LineInfoEndElementAnnotation); DO_TYPEDEF(0x03CA5BF8, XObject); DO_TYPEDEF(0x03CA5B98, XAttribute); +DO_TYPEDEF(0x03D03188, XNode); DO_TYPEDEF(0x03CA5C00, XText); DO_TYPEDEF(0x03CA5C80, XCData); DO_TYPEDEF(0x03CA5BB0, XDocument); @@ -2338,19 +10888,165 @@ DO_TYPEDEF(0x03CA5A00, XHashtable_1_XName_); DO_TYPEDEF(0x03CA5A78, XHashtable_1_TValue_ExtractKeyDelegate_XName_); DO_TYPEDEF(0x03CA5C78, XComment); DO_TYPEDEF(0x03CA5C48, XElement); +DO_TYPEDEF(0x03D1FD48, IEnumerable_1_System_Xml_Linq_XElement_); DO_TYPEDEF(0x03CA5C08, XContainer_ContentReader); DO_TYPEDEF(0x03CA5BF0, XContainer_GetElements_d_39); +DO_TYPEDEF(0x03D1FD40, IEnumerator_1_System_Xml_Linq_XElement_); DO_TYPEDEF(0x03CA5BA0, XDocumentType); DO_TYPEDEF(0x03CA5A60, NamespaceResolver_NamespaceDeclaration); DO_TYPEDEF(0x03CA5988, SaveOptions__Enum); DO_TYPEDEF(0x03CA5BA8, XProcessingInstruction); +DO_TYPEDEF(0x03CAD418, XRAnchorSubsystemDescriptor_Cinfo); +DO_TYPEDEF(0x03CAD020, DefaultConfigurationChooser); +DO_TYPEDEF(0x03CAD1F8, XRPlaneSubsystemDescriptor_Cinfo); +DO_TYPEDEF(0x03CAD0C0, XRRaycastSubsystemDescriptor_Cinfo); +DO_TYPEDEF(0x03CAD050, XRSessionSubsystemDescriptor_Cinfo); +DO_TYPEDEF(0x03CF48B0, InputTracking_TrackingStateEventType__Enum); +DO_TYPEDEF(0x03CF4750, InputFeatureUsage); +DO_TYPEDEF(0x03CF4578, Hand_1); +DO_TYPEDEF(0x03CF4570, Eyes_1); +DO_TYPEDEF(0x03CF45A8, Bone_1); +DO_TYPEDEF(0x03CD6100, Action_1_UnityEngine_XR_InputDevice_); DO_TYPEDEF(0x03C8F128, TrackingOriginModeFlags__Enum); +DO_TYPEDEF(0x03CF44E0, MeshId); +DO_TYPEDEF(0x03CF44F8, MeshGenerationResult); +DO_TYPEDEF(0x03CAC818, Action_1_UnityEngine_XR_ARFoundation_ARPlaneBoundaryChangedEventArgs_); +DO_TYPEDEF(0x03CAC5E8, ARPlaneBoundaryChangedEventArgs); +DO_TYPEDEF(0x03CAC638, ARPoseDriver); +DO_TYPEDEF(0x03D238E0, XrSystemProperties); +DO_TYPEDEF(0x03D23888, SceneUnderstanding_OpenXR_API_xrGetSystemPropertiesDelegate); +DO_TYPEDEF(0x03D238F8, XrReferenceSpaceCreateInfo); +DO_TYPEDEF(0x03D23848, XrSceneObserverCreateInfoMSFT); +DO_TYPEDEF(0x03D23858, XrSceneCreateInfoMSFT); +DO_TYPEDEF(0x03D23878, XrNewSceneComputeInfoMSFT); +DO_TYPEDEF(0x03D237E0, XrSceneComputeStateMSFT__Enum); +DO_TYPEDEF(0x03D23800, XrSceneComponentsGetInfoMSFT); +DO_TYPEDEF(0x03D237F0, XrSceneComponentsMSFT); +DO_TYPEDEF(0x03D23810, XrSceneComponentsLocateInfoMSFT); +DO_TYPEDEF(0x03D23818, XrSceneComponentLocationsMSFT); +DO_TYPEDEF(0x03D23830, XrSceneMeshBuffersGetInfoMSFT); +DO_TYPEDEF(0x03D23820, XrSceneMeshBuffersMSFT); +DO_TYPEDEF(0x03CDF2C0, IList_1_Pathfinding_Poly2Tri_PolygonPoint_); +DO_TYPEDEF(0x03CDF108, IEnumerable_1_Pathfinding_Poly2Tri_PolygonPoint_); +DO_TYPEDEF(0x03CBB8B0, IList_1_Pathfinding_Poly2Tri_Polygon_); +DO_TYPEDEF(0x03CBB930, PointOnEdgeException); +DO_TYPEDEF(0x03CDED18, FixedBitArray3_Enumerate_c_Iterator1); +DO_TYPEDEF(0x03D22470, XrHandJointsLocateInfoEXT); +DO_TYPEDEF(0x03D22478, XrHandJointLocationsEXT); +DO_TYPEDEF(0x03D224F0, XrHandTrackerCreateInfoEXT); +DO_TYPEDEF(0x03D224C8, XrSystemProperties_1); +DO_TYPEDEF(0x03D225C8, HandTracking_OpenXR_API_XrGetInstanceProcAddrDelegate); +DO_TYPEDEF(0x03D225A0, HandTracking_OpenXR_API_xrGetSystemPropertiesDelegate); +DO_TYPEDEF(0x03D22548, HandTracking_OpenXR_API_xrEnumerateReferenceSpacesDelegate); +DO_TYPEDEF(0x03D224A0, XrReferenceSpaceType__Enum_1); +DO_TYPEDEF(0x03D22538, HandTracking_OpenXR_API_xrCreateReferenceSpaceDelegate); +DO_TYPEDEF(0x03D224D0, XrReferenceSpaceCreateInfo_1); +DO_TYPEDEF(0x03D22560, HandTracking_OpenXR_API_xrDestroySpaceDelegate); +DO_TYPEDEF(0x03D22628, HandTracking_OpenXR_API_xrCreateHandTrackerEXTDelegate); +DO_TYPEDEF(0x03D22528, HandTracking_OpenXR_API_xrDestroyHandTrackerEXTDelegate); +DO_TYPEDEF(0x03D22580, HandTracking_OpenXR_API_xrLocateHandJointsEXTDelegate); +DO_TYPEDEF(0x03D1E198, GlyphMarshallingStruct__Array); +DO_TYPEDEF(0x03D19D40, PhysicsScene2D); +DO_TYPEDEF(0x03CCE150, PolygonCollider2D); +DO_TYPEDEF(0x03CCE188, CompositeCollider2D); +DO_TYPEDEF(0x03D101A0, DownloadHandlerBuffer); +DO_TYPEDEF(0x03D22188, Xrnum); +DO_TYPEDEF(0x03D220A0, XrFacialTrackerCreateInfoHTC); +DO_TYPEDEF(0x03D220A8, XrSystemProperties_2); +DO_TYPEDEF(0x03D22170, VIVE_FacialTracking_OpenXR_API_XrGetInstanceProcAddrDelegate); +DO_TYPEDEF(0x03D22118, VIVE_FacialTracking_OpenXR_API_xrGetSystemPropertiesDelegate); +DO_TYPEDEF(0x03D22108, VIVE_FacialTracking_OpenXR_API_xrCreateFacialTrackerHTCDelegate); +DO_TYPEDEF(0x03D220F8, VIVE_FacialTracking_OpenXR_API_xrDestroyFacialTrackerHTCDelegate); +DO_TYPEDEF(0x03D22128, VIVE_FacialTracking_OpenXR_API_xrGetFacialExpressionsHTCDelegate); +DO_TYPEDEF(0x03D220B0, XrFacialExpressionsHTC); +DO_TYPEDEF(0x03CF0ED8, IList_1_UnityEngine_UIVertex_); +DO_TYPEDEF(0x03CEE2D0, IList_1_UnityEngine_UICharInfo_); +DO_TYPEDEF(0x03CEE2C8, IList_1_UnityEngine_UILineInfo_); +DO_TYPEDEF(0x03CCD020, CombinedMeshData); +DO_TYPEDEF(0x03CCD0C8, CombineShadow); +DO_TYPEDEF(0x03CCD0C0, EasyCombine_ProcessStepCompleted); +DO_TYPEDEF(0x03CCCE80, Dictionary_2_UnityEngine_Material_ch_sycoforge_Combine_MeshTransform_); +DO_TYPEDEF(0x03CCCE28, MeshTransform); +DO_TYPEDEF(0x03CCCDF8, Dictionary_2_UnityEngine_Material_List_1_ch_sycoforge_Combine_MeshTransform_); +DO_TYPEDEF(0x03CCCE00, List_1_ch_sycoforge_Combine_MeshTransform_); +DO_TYPEDEF(0x03CBCC20, BakeryVolume); +DO_TYPEDEF(0x03CBCC10, ftLightmaps); +DO_TYPEDEF(0x03CBCAE8, List_1_ftLightmaps_LightmapAdditionalData_); +DO_TYPEDEF(0x03D21B68, ITilemap); +DO_TYPEDEF(0x03D21BD8, TileBase); +DO_TYPEDEF(0x03D21BB8, TileData); +DO_TYPEDEF(0x03CF2C90, TilemapRenderer); +DO_TYPEDEF(0x03D12730, ObjectPoolBase); +DO_TYPEDEF(0x03D12740, Dictionary_2_System_Int32_UnityEngine_GameObject_); +DO_TYPEDEF(0x03D126F0, SchedulerBase); +DO_TYPEDEF(0x03D146D8, List_1_Opsive_UltimateCharacterController_Inventory_ItemType_); +DO_TYPEDEF(0x03CD6120, XRGeneralSettings); +DO_TYPEDEF(0x03CAD600, List_1_UnityEngine_XR_Management_XRLoader_); +DO_TYPEDEF(0x03CAD620, HashSet_1_UnityEngine_XR_Management_XRLoader_); +DO_TYPEDEF(0x03CAD778, XRManagerSettings_InitializeLoader_d_24); +DO_TYPEDEF(0x03CF3DE0, VFXEventAttribute); +DO_TYPEDEF(0x03CF3D50, VisualEffectAsset); +DO_TYPEDEF(0x03CF3E10, VFXExpressionValues); +DO_TYPEDEF(0x03CF3E00, VFXSpawnerState); +DO_TYPEDEF(0x03CB8D90, HashSet_1_UdpKit_UdpIPv4Address_); +DO_TYPEDEF(0x03D11E28, EventHandler_1); +DO_TYPEDEF(0x03D12630, Dictionary_2_System_Object_Dictionary_2_System_String_List_1_Opsive_Shared_Events_InvokableActionBase_); +DO_TYPEDEF(0x03D12678, Dictionary_2_System_String_List_1_Opsive_Shared_Events_InvokableActionBase_); +DO_TYPEDEF(0x03D12698, List_1_Opsive_Shared_Events_InvokableActionBase_); +DO_TYPEDEF(0x03D12610, InvokableAction); +DO_TYPEDEF(0x03CE4578, BoltDebugStart_DelayClientConnect_d_4); +DO_TYPEDEF(0x03CE4538, BoltDebugStartSettings_EnumWindowsProc); +DO_TYPEDEF(0x03CE4588, BoltDebugStartSettings); +DO_TYPEDEF(0x03CC9E18, List_1_Photon_Bolt_Collections_STuple_2_); +DO_TYPEDEF(0x03CE4478, BoltDynamicData_c_DisplayClass4_0); +DO_TYPEDEF(0x03CE44B8, Predicate_1_System_Reflection_Assembly_); +DO_TYPEDEF(0x03CE4400, UnityDebugDrawer); DO_TYPEDEF(0x03C8C3E0, NativeUpdateCallback); +DO_TYPEDEF(0x03D1CF78, TerrainCollider); +DO_TYPEDEF(0x03D1B168, TrackedPoseDriver_TrackedPose__Enum); +DO_TYPEDEF(0x03CB1198, MockRuntime_ScriptEventDelegate); +DO_TYPEDEF(0x03CB1138, MockRuntime_ScriptEvent__Enum); +DO_TYPEDEF(0x03CB1190, MockRuntime); +DO_TYPEDEF(0x03CB1170, Dictionary_2_System_String_UnityEngine_XR_OpenXR_Features_Mock_MockRuntime_AfterFunctionDelegate_); +DO_TYPEDEF(0x03CB11A0, MockRuntime_AfterFunctionDelegate); +DO_TYPEDEF(0x03CB1140, XrResult__Enum_1); +DO_TYPEDEF(0x03CB1178, Dictionary_2_System_String_UnityEngine_XR_OpenXR_Features_Mock_MockRuntime_BeforeFunctionDelegate_); +DO_TYPEDEF(0x03CB11A8, MockRuntime_BeforeFunctionDelegate); +DO_TYPEDEF(0x03CC9C80, NullPlatform); +DO_TYPEDEF(0x03CB8F08, NullSocket); +DO_TYPEDEF(0x03CBB080, UIEffect_Demo_ColorControl_ColorEvent); +DO_TYPEDEF(0x03CBB050, UIEffect_Demo_ColorControl_c_DisplayClass3_0); +DO_TYPEDEF(0x03CB1110, ConformanceAutomationFeature); +DO_TYPEDEF(0x03CB11E8, RuntimeDebuggerOpenXRFeature); +DO_TYPEDEF(0x03D12600, CameraUtility_1); +DO_TYPEDEF(0x03D05950, _Il2CppComObject); +DO_TYPEDEF(0x03D00850, Func_2_Object_Object_); +DO_TYPEDEF(0x03D22B20, Func_2_IAsyncResult_System_Net_Sockets_UdpReceiveResult_); +DO_TYPEDEF(0x03CDC730, Func_2_Steamworks_SteamItemDef_t_Boolean_); DO_TYPEDEF(0x03C8BCD0, Func_2_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_Boolean_); DO_TYPEDEF(0x03C8CC70, Func_2_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_Boolean_); +DO_TYPEDEF(0x03CBE888, IEnumerator_1_KeyValuePair_2_UnityEngine_Vector3_System_Int32_); +DO_TYPEDEF(0x03CBE880, IEnumerator_1_System_Linq_IGrouping_2__3); +DO_TYPEDEF(0x03CB9450, ParallelWorkQueue_1_Pathfinding_Int2_); +DO_TYPEDEF(0x03CB9478, Action_2_Pathfinding_Int2_Int32_); +DO_TYPEDEF(0x03D1FB40, ManualResetEvent__Array); +DO_TYPEDEF(0x03D1EAD0, Action_1_Nullable_1_UnityEngine_RaycastHit_); +DO_TYPEDEF(0x03D1B0D0, List_1_UnityEngine_SpatialTracking_TrackedPoseDriver_TrackedPose_); +DO_TYPEDEF(0x03D16768, Action_2_Boolean_Boolean_); +DO_TYPEDEF(0x03CE4AA0, Action_2_Object_Object_); +DO_TYPEDEF(0x03CD8968, Action_3_Boolean_UnityEngine_Vector3_UnityEngine_Vector3_); +DO_TYPEDEF(0x03CE4A88, Action_3_Object_Object_Object_); +DO_TYPEDEF(0x03D25718, Action_3_Single_Single_Single_); +DO_TYPEDEF(0x03CDA3D0, Action_3_UnityEngine_Vector3_UnityEngine_Vector3_Single_); +DO_TYPEDEF(0x03D25710, Action_4_Int32_UnityEngine_Vector3_UnityEngine_Vector3_Boolean_); DO_TYPEDEF(0x03C99940, ArrayPool_1_System_Byte_); DO_TYPEDEF(0x03C96740, ArrayPool_1_System_Char_); DO_TYPEDEF(0x03CA58E0, DateTime__Array); +DO_TYPEDEF(0x03CCD270, ICommsNetworkState); +DO_TYPEDEF(0x03CCEF68, List_1_System_Threading_WaitHandle_); +DO_TYPEDEF(0x03D11FB0, CachedInvokableCall_1_System_Boolean_); +DO_TYPEDEF(0x03D11FA8, CachedInvokableCall_1_System_Int32_); +DO_TYPEDEF(0x03D11FC8, CachedInvokableCall_1_System_Single_); DO_TYPEDEF(0x03C9C060, CastInstruction_CastInstructionT_1_System_Boolean_); DO_TYPEDEF(0x03C9C0C8, CastInstruction_CastInstructionT_1_System_Byte_); DO_TYPEDEF(0x03C9C058, CastInstruction_CastInstructionT_1_System_Char_); @@ -2365,17 +11061,106 @@ DO_TYPEDEF(0x03C9C0B8, CastInstruction_CastInstructionT_1_System_Single_); DO_TYPEDEF(0x03C9C0D0, CastInstruction_CastInstructionT_1_System_UInt16_); DO_TYPEDEF(0x03C9C100, CastInstruction_CastInstructionT_1_System_UInt32_); DO_TYPEDEF(0x03C9C038, CastInstruction_CastInstructionT_1_System_UInt64_); +DO_TYPEDEF(0x03CBE470, Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__2); +DO_TYPEDEF(0x03CBE3C8, Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__3); +DO_TYPEDEF(0x03CBE350, Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__1); +DO_TYPEDEF(0x03CDFE20, Converter_2_Byte_Int32_); +DO_TYPEDEF(0x03CE8580, Queue_1_System_ValueTuple_2_); +DO_TYPEDEF(0x03CC3D10, Dictionary_2_System_Guid_System_UInt32_); +DO_TYPEDEF(0x03CB59F8, Dictionary_2_Pathfinding_Int3_System_Int32_); DO_TYPEDEF(0x03CA7400, Dictionary_2_System_Int32_System_Int64_); +DO_TYPEDEF(0x03D13C70, Dictionary_2_System_Int32_System_Object_); +DO_TYPEDEF(0x03D04098, Dictionary_2_System_Int32_UnityEngine_RenderInstancedDataLayout_); +DO_TYPEDEF(0x03CB0508, Dictionary_2_System_Int32_System_Single_); +DO_TYPEDEF(0x03D20FA8, Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_); +DO_TYPEDEF(0x03CDE310, Dictionary_2_System_Int64_UnityEngine_UIElements_ComputedStyle_); +DO_TYPEDEF(0x03CFF8A0, Dictionary_2_UnityEngine_Vector3_System_Int32_); +DO_TYPEDEF(0x03CD2D80, Predicate_1_Int32_); DO_TYPEDEF(0x03CA2510, Interop_SspiCli_SecBuffer); +DO_TYPEDEF(0x03CFF638, List_1_KeyValuePair_2_System_Int32_System_Int32_); DO_TYPEDEF(0x03C97E18, List_1_System_ValueTuple_2__7); +DO_TYPEDEF(0x03CF8B48, Stack_1_System_Byte__1); +DO_TYPEDEF(0x03CCEF80, List_1_System_Threading_CancellationToken_); +DO_TYPEDEF(0x03CCCFD8, List_1_UnityEngine_CombineInstance_); +DO_TYPEDEF(0x03CE3A10, List_1_Rewired_ControllerTemplateElementTarget_); +DO_TYPEDEF(0x03CC6E10, List_1_Rewired_ElementAssignmentConflictInfo_); +DO_TYPEDEF(0x03D0C6D8, List_1_Discord_Entitlement_); +DO_TYPEDEF(0x03D0C840, List_1_Discord_FileStat_); +DO_TYPEDEF(0x03CF4C80, List_1_System_Guid_); +DO_TYPEDEF(0x03CC1160, List_1_UnityEngine_InputSystem_InputBinding_); +DO_TYPEDEF(0x03CBA728, Queue_1_Pathfinding_Int3_); +DO_TYPEDEF(0x03CC7E38, List_1_UnityEngine_InputSystem_Utilities_InternedString_); DO_TYPEDEF(0x03C99DE0, List_1_System_Linq_Expressions_Interpreter_InterpretedFrameInfo_); +DO_TYPEDEF(0x03D13CC8, List_1_Opsive_UltimateCharacterController_Inventory_ItemDefinitionAmount_); +DO_TYPEDEF(0x03D11380, LowLevelListWithIList_1_System_Object_); DO_TYPEDEF(0x03CA9D60, List_1_UnityEngine_Playables_PlayableBinding_); +DO_TYPEDEF(0x03D0C6C0, List_1_Discord_Sku_); +DO_TYPEDEF(0x03CB69D0, List_1_UnityEngine_UIElements_StyleSelectorPart_); DO_TYPEDEF(0x03C8CB58, Queue_1_System_UInt32_); +DO_TYPEDEF(0x03CB8DC8, HashSet_1_UdpKit_UdpEndPoint_); +DO_TYPEDEF(0x03CB8E30, List_1_UdpKit_UdpIPv4Address_); +DO_TYPEDEF(0x03D05010, List_1_Discord_User_); +DO_TYPEDEF(0x03CFB028, Stack_1_UnityEngine_Vector2_); +DO_TYPEDEF(0x03CCB8E0, HashSet_1_UnityEngine_Vector3_); +DO_TYPEDEF(0x03D1F1B0, List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_ADDRESSES_); +DO_TYPEDEF(0x03D1F128, List_1_System_Net_NetworkInformation_Win32_IP_ADAPTER_INFO_); +DO_TYPEDEF(0x03D04100, List_1_UnityEngine_BeforeRenderHelper_OrderBlock_); +DO_TYPEDEF(0x03CCE218, List_1_Cinemachine_CinemachineClearShot_Pair_); +DO_TYPEDEF(0x03CD20B8, List_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_); +DO_TYPEDEF(0x03CFFE18, List_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_); +DO_TYPEDEF(0x03D024D0, Stack_1_System_Xml_Schema_SequenceNode_SequenceConstructPosContext_); +DO_TYPEDEF(0x03D1B0C8, List_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData_); DO_TYPEDEF(0x03C99EE0, List_1_System_Linq_Expressions_Interpreter_InstructionList_DebugView_InstructionView_); +DO_TYPEDEF(0x03CEA428, PidVid__Array); DO_TYPEDEF(0x03C9EAF0, FastAction_1_System_Boolean_); +DO_TYPEDEF(0x03CD6338, Func_2_System_Collections_Generic_KeyValuePair_2_Boolean__7); +DO_TYPEDEF(0x03CDA9E0, Func_2_KickedPlayer_Boolean_); +DO_TYPEDEF(0x03CDEA08, Func_3_Int32_IntPtr_Boolean_); +DO_TYPEDEF(0x03D1C6E8, Preset_GenericDelegate_1_System_Boolean_); +DO_TYPEDEF(0x03D1C840, Preset_GenericDelegate_1_System_Byte_); +DO_TYPEDEF(0x03D1C820, Preset_GenericDelegate_1_UnityEngine_Color_); +DO_TYPEDEF(0x03D1C7A0, Preset_GenericDelegate_1_System_Double_); +DO_TYPEDEF(0x03D1C710, Preset_GenericDelegate_1_System_Int32_); +DO_TYPEDEF(0x03D1C880, Preset_GenericDelegate_1_System_Int64_); +DO_TYPEDEF(0x03D1C888, Preset_GenericDelegate_1_UnityEngine_LayerMask_); +DO_TYPEDEF(0x03D1C7D8, Preset_GenericDelegate_1_UnityEngine_Matrix4x4_); +DO_TYPEDEF(0x03D1C928, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Utility_MinMaxFloat_); +DO_TYPEDEF(0x03D1C708, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Utility_MinMaxVector3_); +DO_TYPEDEF(0x03D1C6A8, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_); +DO_TYPEDEF(0x03D1C930, Preset_GenericDelegate_1_UnityEngine_Quaternion_); +DO_TYPEDEF(0x03D1C830, Preset_GenericDelegate_1_UnityEngine_Rect_); +DO_TYPEDEF(0x03D1C6F8, Preset_GenericDelegate_1_System_Single_); +DO_TYPEDEF(0x03D1C6C8, Preset_GenericDelegate_1_System_UInt32_); +DO_TYPEDEF(0x03D1C7B8, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_); +DO_TYPEDEF(0x03D1C890, Preset_GenericDelegate_1_UnityEngine_Vector2_); +DO_TYPEDEF(0x03D1C6E0, Preset_GenericDelegate_1_UnityEngine_Vector3_); +DO_TYPEDEF(0x03D1C718, Preset_GenericDelegate_1_UnityEngine_Vector4_); +DO_TYPEDEF(0x03D1C6F0, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_Foot_); +DO_TYPEDEF(0x03D1C7F0, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Starters_ComboTimeout_ComboInputElement_); +DO_TYPEDEF(0x03D1C780, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_UI_HealthFlashMonitor_Flash_); +DO_TYPEDEF(0x03D1C7A8, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_Waypoint_); +DO_TYPEDEF(0x03D1C7E8, Preset_GenericDelegate_1_Opsive_Shared_Game_ObjectPoolBase_PreloadedPrefab_); +DO_TYPEDEF(0x03D142C8, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_SlotEquip_ItemDefinitionStateName_); +DO_TYPEDEF(0x03CF2160, GetSetValue_1_System_Boolean_); +DO_TYPEDEF(0x03CF2148, GetSetValue_1_System_Int32_); +DO_TYPEDEF(0x03CBE878, IEnumerable_1_KeyValuePair_2_UnityEngine_Vector3_System_Int32_); +DO_TYPEDEF(0x03CBB420, IAddValue_1_System_Object_); +DO_TYPEDEF(0x03CB2460, IEnumerable_1_UnityEngine_InputSystem_InputControlScheme_); +DO_TYPEDEF(0x03CFE7A0, IEnumerable_1_UnityEngine_InputSystem_Utilities_NamedValue_); +DO_TYPEDEF(0x03CF5CD0, UnityAction_1_UnityEngine_UI_Extensions_ReorderableList_ReorderableListEventStruct_); +DO_TYPEDEF(0x03CFB128, UnityAction_2_System_Single_System_Single_); +DO_TYPEDEF(0x03CFB388, UnityAction_3_System_Single_System_Single_System_Single_); +DO_TYPEDEF(0x03D0C0D0, IEnumerable_1_System_Security_Cryptography_X509Certificates_X509ChainStatus_); +DO_TYPEDEF(0x03CD2480, List_1_System_Threading_WaitCallback_); DO_TYPEDEF(0x03C99E40, IEnumerable_1_KeyValuePair_2_System_Int32_System_Object_); +DO_TYPEDEF(0x03CC2B58, Predicate_1_UnityEngine_InputSystem_InputBinding_); +DO_TYPEDEF(0x03D0C2D0, IEnumerable_1_UnityEngine_Quaternion_); +DO_TYPEDEF(0x03CEEAD0, ReadOnlyCollection_1_Dissonance_RemoteChannel_); +DO_TYPEDEF(0x03CDB4B0, Predicate_1_Steamworks_SteamItemDef_t_); +DO_TYPEDEF(0x03CE9730, Predicate_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_); DO_TYPEDEF(0x03C8DED0, BoundedPlane__Array); DO_TYPEDEF(0x03C8E298, XRAnchor__Array); +DO_TYPEDEF(0x03CC0DA8, Predicate_1_UnityEngine_InputSystem_InputControlScheme_); DO_TYPEDEF(0x03C8C428, Predicate_1_UnityEngine_InputSystem_LowLevel_InputEventTrace_DeviceInfo_); DO_TYPEDEF(0x03C97B60, PrimitiveParameterExpression_1_System_Boolean_); DO_TYPEDEF(0x03C97B70, PrimitiveParameterExpression_1_System_Byte_); @@ -2391,14 +11176,44 @@ DO_TYPEDEF(0x03C97B80, PrimitiveParameterExpression_1_System_Single_); DO_TYPEDEF(0x03C97AF8, PrimitiveParameterExpression_1_System_UInt16_); DO_TYPEDEF(0x03C97B28, PrimitiveParameterExpression_1_System_UInt32_); DO_TYPEDEF(0x03C97AE8, PrimitiveParameterExpression_1_System_UInt64_); +DO_TYPEDEF(0x03CAC160, CustomAttributeNamedArgument__Array); +DO_TYPEDEF(0x03CAC980, ReadOnlyCollection_1_System_Reflection_CustomAttributeTypedArgument_); DO_TYPEDEF(0x03CA7948, CustomAttributeTypedArgument__Array); +DO_TYPEDEF(0x03CEA3E8, ReadOnlyCollection_1_Rewired_PidVid_); +DO_TYPEDEF(0x03CF2A70, IList_1_Rewired_PidVid_); +DO_TYPEDEF(0x03CEED88, List_1_System_Delegate_); +DO_TYPEDEF(0x03CC6D18, SafePredicate_1_Rewired_ControllerPollingInfo_); +DO_TYPEDEF(0x03CC2588, SavedStructState_1_UnityEngine_InputSystem_InputActionState_GlobalState_); +DO_TYPEDEF(0x03CCD5C8, SavedStructState_1_UnityEngine_InputSystem_Users_InputUser_GlobalState_); +DO_TYPEDEF(0x03CD1530, SavedStructState_1_UnityEngine_InputSystem_EnhancedTouch_Touch_GlobalState_); +DO_TYPEDEF(0x03CAD0B0, ICloneable); +DO_TYPEDEF(0x03CEEB00, Action_2_Dissonance_Networking_Server_Admin_IServerClientState_String_); DO_TYPEDEF(0x03C9C7C0, StrongBox_1_System_Object_); +DO_TYPEDEF(0x03CFE548, StructWrapper_1_System_Object_); +DO_TYPEDEF(0x03D1EDC0, TaskCompletionSource_1_System_Int32_); DO_TYPEDEF(0x03C8F670, TransferBuffer_1_Dissonance_Logs_LogMessage_); +DO_TYPEDEF(0x03CB69B0, List_1_UnityEngine_UIElements_StyleSelector_); +DO_TYPEDEF(0x03D11348, UnwrapPromise_1_VoidTaskResult_); +DO_TYPEDEF(0x03D04C10, Vector_1_System_UInt64_); +DO_TYPEDEF(0x03CB3EB8, InternalCodePageDataItem__Array); +DO_TYPEDEF(0x03CB3EC0, InternalEncodingDataItem__Array); DO_TYPEDEF(0x03C8C240, PublishedFileId_t__Array); DO_TYPEDEF(0x03C99AE0, ShaderKeyword__Array); +DO_TYPEDEF(0x03CBD4E8, ContentCatalogData_Bucket__Array); +DO_TYPEDEF(0x03CFA6F8, ContextFlagsAdapterPal_ContextFlagMapping__Array); +DO_TYPEDEF(0x03CD5CD0, MailHeaderInfo_HeaderInfo__Array); +DO_TYPEDEF(0x03CE3F38, PointerDeviceState_PointerLocation__Array); +DO_TYPEDEF(0x03D15AC8, SendMouseEvents_HitInfo__Array); +DO_TYPEDEF(0x03D1E548, Socket_WSABUF__Array); DO_TYPEDEF(0x03C8CD08, gWxrirpmIhQTmhziZnlXlEwmYtKB_QpfrOmwHesfdZMwAoLXiDrdPqtqG__Array); DO_TYPEDEF(0x03C8CD20, gWxrirpmIhQTmhziZnlXlEwmYtKB_vEAqJCAedocGOpCIXmtvTuaaVKZ__Array); DO_TYPEDEF(0x03C8D178, jlOcQLgjodoHrMnRTMaZoBnVTQkmA_UQNUjWDnDBJiFEZHZdfMIOPkNvdGb__Array); +DO_TYPEDEF(0x03CD3398, Interop_SspiCli_SecBuffer__Array); +DO_TYPEDEF(0x03CBE870, IEnumerable_1_System_Linq_IGrouping_2_); +DO_TYPEDEF(0x03D1A9C8, Func_2_System_Threading_CancellationToken_System_Threading_Tasks_Task_1__1); +DO_TYPEDEF(0x03CE1F80, EventCallback_1_ChangeEvent_1_System_Single_); +DO_TYPEDEF(0x03CC1008, InputActionMap_BindingOverrideListJson); +DO_TYPEDEF(0x03CC53D8, InputDeviceDescription_DeviceDescriptionJson); DO_TYPEDEF(0x03C93E20, Action_2_String_Int32_); DO_TYPEDEF(0x03C93D88, Action_2_String_Single_); DO_TYPEDEF(0x03C8BA20, IInterval); @@ -2415,6 +11230,7 @@ DO_TYPEDEF(0x03C8C3B0, NativeInputSystem); DO_TYPEDEF(0x03C8C3B8, Action_1_UnityEngineInternal_Input_NativeInputUpdateType_); DO_TYPEDEF(0x03C8C3D0, Func_2_UnityEngineInternal_Input_NativeInputUpdateType_Boolean_); DO_TYPEDEF(0x03C8C848, GraphicsFormatUtility); +DO_TYPEDEF(0x03D12528, GraphicsFormat__Enum__Array); DO_TYPEDEF(0x03C8C970, ShaderIDs); DO_TYPEDEF(0x03C8CA58, TextureFormatUtilities); DO_TYPEDEF(0x03C8F650, Dictionary_2_System_Int32_UnityEngine_RenderTextureFormat_); @@ -2478,6 +11294,7 @@ DO_TYPEDEF(0x03C94EB0, TrueReadOnlyCollection_1_System_Linq_Expressions_Expressi DO_TYPEDEF(0x03C94EE0, TypeExtensions); DO_TYPEDEF(0x03C9BE60, CacheDict_2_System_Reflection_MethodBase_System_Reflection_ParameterInfo_); DO_TYPEDEF(0x03C94EE8, TypeUtils); +DO_TYPEDEF(0x03CFD898, Math); DO_TYPEDEF(0x03C94F78, CachedReflectionInfo); DO_TYPEDEF(0x03C951E8, Action_1_Dissonance_Audio_Capture_NoiseSuppressionLevels_); DO_TYPEDEF(0x03C951E0, Action_1_Dissonance_Audio_Capture_VadSensitivityLevels_); @@ -2506,6 +11323,7 @@ DO_TYPEDEF(0x03C97B40, PrimitiveParameterExpression_1_System_String_); DO_TYPEDEF(0x03C97B48, PrimitiveParameterExpression_1_System_Exception_); DO_TYPEDEF(0x03C97FC8, Func_2_System_Linq_Expressions_CatchBlock_System_Linq_Expressions_CatchBlock_); DO_TYPEDEF(0x03C98008, DebuggerSupport); +DO_TYPEDEF(0x03D115F0, LowLevelDictionary_2_System_Int32_System_Threading_Tasks_Task_); DO_TYPEDEF(0x03C98160, Hammersley); DO_TYPEDEF(0x03C98200, Blitter); DO_TYPEDEF(0x03C98298, IFancyCellGroupContext); @@ -2515,8 +11333,30 @@ DO_TYPEDEF(0x03C98B68, EmptyArray_1_Char_); DO_TYPEDEF(0x03C98C00, EmptyArray_1_Byte_); DO_TYPEDEF(0x03C98C98, EncodingHelper); DO_TYPEDEF(0x03C98CA0, EncodingTable); +DO_TYPEDEF(0x03CB3EB0, Dictionary_2_System_Int32_System_Globalization_CodePageDataItem_); DO_TYPEDEF(0x03C98F70, AndroidReflection); DO_TYPEDEF(0x03C99058, AbilityBuilder); +DO_TYPEDEF(0x03D16F20, Dictionary_2_System_Type_UnityEngine_RequireComponent_); +DO_TYPEDEF(0x03D17140, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultInputName_); +DO_TYPEDEF(0x03D16F18, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultStartType_); +DO_TYPEDEF(0x03D17100, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultStopType_); +DO_TYPEDEF(0x03D170B0, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAbilityIndex_); +DO_TYPEDEF(0x03D17150, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAbilityIntData_); +DO_TYPEDEF(0x03D17090, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultItemStateIndex_); +DO_TYPEDEF(0x03D17130, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultState_); +DO_TYPEDEF(0x03D170A0, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAllowPositionalInput_); +DO_TYPEDEF(0x03D170F8, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAllowRotationalInput_); +DO_TYPEDEF(0x03D170C8, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseGravity_); +DO_TYPEDEF(0x03D16FC0, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseRootMotionPosition_); +DO_TYPEDEF(0x03D170B8, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseRootMotionRotation_); +DO_TYPEDEF(0x03D16F08, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultDetectHorizontalCollisions_); +DO_TYPEDEF(0x03D170E8, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultDetectVerticalCollisions_); +DO_TYPEDEF(0x03D17118, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultObjectDetection_); +DO_TYPEDEF(0x03D16FB0, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseLookDirection_); +DO_TYPEDEF(0x03D170F0, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultCastOffset_); +DO_TYPEDEF(0x03D17160, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultEquippedSlots_); +DO_TYPEDEF(0x03D17168, Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultReequipSlots_); +DO_TYPEDEF(0x03D170E0, Dictionary_2_System_Type_Opsive_UltimateCharacterController_StateSystem_AddState_); DO_TYPEDEF(0x03C994D8, List_1_System_Linq_Expressions_Interpreter_ByRefUpdater_); DO_TYPEDEF(0x03C99558, List_1_System_Linq_Expressions_Interpreter_ExceptionHandler_); DO_TYPEDEF(0x03C99AA0, MaterialQualityUtilities); @@ -2544,7 +11384,9 @@ DO_TYPEDEF(0x03C9CDC8, CommonAcl_RemoveAcesCallback_1_GenericAce_); DO_TYPEDEF(0x03C9CEB8, CommonAcl_RemoveAcesCallback_1_KnownAce_); DO_TYPEDEF(0x03C9D470, ISerializable); DO_TYPEDEF(0x03C9D510, AppContextSwitches); +DO_TYPEDEF(0x03CFE0B0, Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_String_System_String_); DO_TYPEDEF(0x03C9E1A0, ISceneProvider2); +DO_TYPEDEF(0x03D04048, IAssetBundleResource); DO_TYPEDEF(0x03C9E3E0, List_1_UnityEngine_RuntimePlatform_); DO_TYPEDEF(0x03C9E5F0, List_1_UnityEngine_Networking_UnityWebRequestAsyncOperation_); DO_TYPEDEF(0x03C9E568, Queue_1_UnityEngine_ResourceManagement_WebRequestQueueOperation_); @@ -2559,6 +11401,7 @@ DO_TYPEDEF(0x03C9EB40, FastAction_3_UnityEngine_GameObject_UnityEngine_Material_ DO_TYPEDEF(0x03C9EAE8, FastAction_1_UnityEngine_Object_); DO_TYPEDEF(0x03C9EBB0, TMP_ListPool_1_UnityEngine_Canvas_); DO_TYPEDEF(0x03C9EBF0, StencilMaterial); +DO_TYPEDEF(0x03CF0FB0, List_1_UnityEngine_UI_StencilMaterial_MatEntry_); DO_TYPEDEF(0x03C9ED20, TMP_MaterialManager); DO_TYPEDEF(0x03CA74C0, List_1_TMPro_TMP_MaterialManager_MaskingMaterial_); DO_TYPEDEF(0x03CA7408, Dictionary_2_System_Int64_TMPro_TMP_MaterialManager_FallbackMaterial_); @@ -2591,9 +11434,13 @@ DO_TYPEDEF(0x03CA1FF8, CFNetwork); DO_TYPEDEF(0x03CA21B0, UnityTls_unitytls_ciphersuite__Enum__Array); DO_TYPEDEF(0x03CA2360, UnityTls); DO_TYPEDEF(0x03CA2408, MonoTlsProviderFactory); +DO_TYPEDEF(0x03D0A770, Dictionary_2_System_String_System_Tuple_2_); +DO_TYPEDEF(0x03D0A748, Tuple_2_Guid_String_); +DO_TYPEDEF(0x03D0A790, Dictionary_2_System_Guid_Mono_Net_Security_MobileTlsProvider_); DO_TYPEDEF(0x03CA2480, ICollection_1_System_Tuple_2__1); DO_TYPEDEF(0x03CA2530, FormatProvider_Number); DO_TYPEDEF(0x03CA25D0, BigIntegerCalculator); +DO_TYPEDEF(0x03CEE0C8, ILayoutController); DO_TYPEDEF(0x03CA27B8, Converter); DO_TYPEDEF(0x03CA58D8, TypeCode__Enum__Array); DO_TYPEDEF(0x03CA5858, InternalPrimitiveTypeE__Enum__Array); @@ -2626,6 +11473,7 @@ DO_TYPEDEF(0x03CA79D0, IReflectableType); DO_TYPEDEF(0x03CA8138, IEnumerable_1_System_Reflection_CustomAttributeData_); DO_TYPEDEF(0x03CA8148, IEnumerator_1_System_Reflection_CustomAttributeData_); DO_TYPEDEF(0x03CA8C38, RuntimeInformation); +DO_TYPEDEF(0x03CB40E0, Dictionary_2_TKey_TValue_Enumerator_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaElementDecl_); DO_TYPEDEF(0x03CA9BD8, ScriptPlayable_1_UnityEngine_Timeline_BasicPlayableBehaviour_); DO_TYPEDEF(0x03CA9E20, ICollection_1_UnityEngine_Playables_PlayableDirector_); DO_TYPEDEF(0x03CAA020, IPropertyPreview); @@ -2641,3 +11489,1152 @@ DO_TYPEDEF(0x03CAAFE8, TimelineClipExtensions); DO_TYPEDEF(0x03CAB008, INotificationOptionProvider); DO_TYPEDEF(0x03CAB4C0, Marvin); DO_TYPEDEF(0x03CAB678, GlobalizationMode); +DO_TYPEDEF(0x03CAB8C8, ValidateNames); +DO_TYPEDEF(0x03CABD50, ICollection_1_System_Xml_IDtdDefaultAttributeInfo_); +DO_TYPEDEF(0x03CABEA0, EmptyArray_1_System_Reflection_ParameterInfo_); +DO_TYPEDEF(0x03CABF90, DateTimeConstantAttribute__Array); +DO_TYPEDEF(0x03CABFB0, DecimalConstantAttribute__Array); +DO_TYPEDEF(0x03CAC3D0, List_1_System_Reflection_Module_); +DO_TYPEDEF(0x03CAC438, ICollection_1_System_Reflection_CustomAttributeNamedArgument_); +DO_TYPEDEF(0x03CAC490, MonoCustomAttrs); +DO_TYPEDEF(0x03D08A00, Dictionary_2_System_Type_System_AttributeUsageAttribute_); +DO_TYPEDEF(0x03CAC648, CommonUsages_1); +DO_TYPEDEF(0x03CAC900, ICollection_1_System_Reflection_CustomAttributeTypedArgument_); +DO_TYPEDEF(0x03CACF98, Assert); +DO_TYPEDEF(0x03CAD018, IDeepCloneable); +DO_TYPEDEF(0x03D02578, XmlAtomicValue__Array); +DO_TYPEDEF(0x03CAD6C8, XRManagementAnalytics); +DO_TYPEDEF(0x03CADA68, List_1_System_Xml_Schema_XmlSchema_); +DO_TYPEDEF(0x03CADAA0, List_1_System_Xml_Schema_XmlSchemaElement_); +DO_TYPEDEF(0x03CAE5A0, Number); +DO_TYPEDEF(0x03CAE788, List_1_System_Exception_); +DO_TYPEDEF(0x03CAE718, List_1_System_AggregateException_); +DO_TYPEDEF(0x03CAE730, List_1_System_Runtime_ExceptionServices_ExceptionDispatchInfo_); +DO_TYPEDEF(0x03CAE738, ICollection_1_System_Runtime_ExceptionServices_ExceptionDispatchInfo_); +DO_TYPEDEF(0x03CAE790, ICollection_1_System_Exception_); +DO_TYPEDEF(0x03CAEFC8, List_1_System_TimeZoneInfo_); +DO_TYPEDEF(0x03CAF0B0, List_1_System_TimeZoneInfo_AdjustmentRule_); +DO_TYPEDEF(0x03CAF658, DateTimeParse); +DO_TYPEDEF(0x03D01CE8, DateTimeParse_DS__Enum__Array); +DO_TYPEDEF(0x03D01CF0, DateTimeParse_DS__Enum__Array__Array); +DO_TYPEDEF(0x03CAF6B8, TimeSpanFormat); +DO_TYPEDEF(0x03CAF880, DateTimeFormat); +DO_TYPEDEF(0x03CB0260, IEnumerable_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionConfig_); +DO_TYPEDEF(0x03CB0090, EyeTrackingUsages); +DO_TYPEDEF(0x03CB0308, CollectionPool_2_System_Collections_Generic_List_1_System_Int32_); +DO_TYPEDEF(0x03CB0618, Dictionary_2_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType_); +DO_TYPEDEF(0x03CB0748, IEnumerable_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_); +DO_TYPEDEF(0x03CB0750, IEnumerator_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_); +DO_TYPEDEF(0x03CB0890, OpenXRRuntime); +DO_TYPEDEF(0x03CB0D60, OpenXRInput); +DO_TYPEDEF(0x03CB0E08, OpenXRAnalytics); +DO_TYPEDEF(0x03CB0EE8, PointerDeviceState); +DO_TYPEDEF(0x03CB0F28, UIElementsRuntimeUtility); +DO_TYPEDEF(0x03CDEB18, List_1_UnityEngine_UIElements_PanelSettings_); +DO_TYPEDEF(0x03CB0F78, StringTools); +DO_TYPEDEF(0x03CB1048, CoreUtils); +DO_TYPEDEF(0x03CCAC38, BoltLog_IWriter); +DO_TYPEDEF(0x03CCAC40, List_1_Photon_Bolt_Utils_BoltLog_IWriter_); +DO_TYPEDEF(0x03CB27A0, InputInteraction); +DO_TYPEDEF(0x03CB27E8, ICollection_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_); +DO_TYPEDEF(0x03CB27F8, EventCallback_1_DetachFromPanelEvent_); +DO_TYPEDEF(0x03CB2820, EventCallback_1_AttachToPanelEvent_); +DO_TYPEDEF(0x03CD2C68, Dictionary_2_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager_); +DO_TYPEDEF(0x03CB2830, GroupBoxUtility); +DO_TYPEDEF(0x03CD2C38, Dictionary_2_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager_); +DO_TYPEDEF(0x03CB2850, Dictionary_2_System_Type_System_Object__1); +DO_TYPEDEF(0x03D12708, Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object_); +DO_TYPEDEF(0x03D12710, Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1); +DO_TYPEDEF(0x03CB28B8, NavMesh); +DO_TYPEDEF(0x03CB2960, CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_Component_); +DO_TYPEDEF(0x03CB2970, ICollection_1_UnityEngine_EventSystems_IEventSystemHandler_); +DO_TYPEDEF(0x03CB2978, IEventSystemHandler); +DO_TYPEDEF(0x03CB29A8, CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_EventSystems_IEventSystemHandler_); +DO_TYPEDEF(0x03CB29D0, GenericObjectPool); +DO_TYPEDEF(0x03CB4010, TextInfoToUpperData); +DO_TYPEDEF(0x03CB4018, TextInfoToLowerData); +DO_TYPEDEF(0x03CB4248, Dictionary_2_TKey_TValue_Enumerator_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaAttDef_); +DO_TYPEDEF(0x03CB4668, Debugger); +DO_TYPEDEF(0x03CB4BD0, EventCallback_1_CustomStyleResolvedEvent_); +DO_TYPEDEF(0x03CB5688, AutoResetEvent__Array); +DO_TYPEDEF(0x03CB5838, PathPool); +DO_TYPEDEF(0x03CB6E90, Dictionary_2_System_Type_Stack_1_Pathfinding_Path_); +DO_TYPEDEF(0x03CB6EB0, Stack_1_Pathfinding_Path_); +DO_TYPEDEF(0x03CB6E98, Dictionary_2_System_Type_System_Int32_); +DO_TYPEDEF(0x03CB5A08, ListPool_1_System_Int32_); +DO_TYPEDEF(0x03CB5A50, Polygon); +DO_TYPEDEF(0x03CB5A68, ArrayPool_1_System_Int32_); +DO_TYPEDEF(0x03CB5BA0, List_1_Pathfinding_NavGraph_); +DO_TYPEDEF(0x03CB5D00, ListPool_1_System_UInt32_); +DO_TYPEDEF(0x03CB5D18, ListPool_1_Pathfinding_Int3_); +DO_TYPEDEF(0x03CB6060, IControllerDriver); +DO_TYPEDEF(0x03CB60A0, IHardwareControllerMap_Internal); +DO_TYPEDEF(0x03CB61C8, List_1_Rewired_ControllerTemplateElementIdentifier_); +DO_TYPEDEF(0x03CB65E8, Dictionary_2_System_Net_IPEndPoint_UdpKit_UdpEndPoint_); +DO_TYPEDEF(0x03CB65F0, Dictionary_2_UdpKit_UdpEndPoint_System_Net_IPEndPoint_); +DO_TYPEDEF(0x03CB65F8, SubnetMask); +DO_TYPEDEF(0x03CB6630, UdpEndPointExtensions); +DO_TYPEDEF(0x03CB67A0, ArrayPool_1_UnityEngine_Color_); +DO_TYPEDEF(0x03CB67B0, ArrayPool_1_Pathfinding_GridNodeBase_); +DO_TYPEDEF(0x03CB6BB8, ArrayPool_1_Pathfinding_Connection_); +DO_TYPEDEF(0x03CB6BC8, ITupleInternal); +DO_TYPEDEF(0x03CB6C30, IStructuralComparable); +DO_TYPEDEF(0x03CB6C78, IStructuralEquatable); +DO_TYPEDEF(0x03CB70D8, ArrayPool_1_UnityEngine_Vector3_); +DO_TYPEDEF(0x03CB71A0, HashSet_1_Pathfinding_GridNodeBase_); +DO_TYPEDEF(0x03CB7888, IRegistrar_1_Rewired_ComponentControls_IComponentControl_); +DO_TYPEDEF(0x03CB79D8, PrecisionTimer); +DO_TYPEDEF(0x03CB7DD0, Action_1_UdpKit_Protocol_BroadcastSearch_); +DO_TYPEDEF(0x03CB7E10, Action_1_UdpKit_Protocol_BroadcastSession_); +DO_TYPEDEF(0x03CB7DB8, List_1_Rewired_PlayerController_Element_Definition_); +DO_TYPEDEF(0x03CBD110, IEnumerator_1_Rewired_PlayerController_Element_Definition_); +DO_TYPEDEF(0x03CB7DD8, IList_1_Rewired_Components_PlayerController_ElementInfo_); +DO_TYPEDEF(0x03CB7E30, Side__Enum__Array); +DO_TYPEDEF(0x03CB7FB0, IEnumerable_1_Rewired_Components_PlayerController_ElementInfo_); +DO_TYPEDEF(0x03CB7FC0, ICollection_1_Rewired_Components_PlayerController_ElementInfo_); +DO_TYPEDEF(0x03CB80E8, ArrayPool_1_Pathfinding_TriangleMeshNode_); +DO_TYPEDEF(0x03CB8128, ObjectPoolSimple_1_System_Collections_Generic_Dictionary_2_); +DO_TYPEDEF(0x03CB8190, ListPool_1_Pathfinding_Connection_); +DO_TYPEDEF(0x03CB8278, CustomTriangleMeshNode__Array); +DO_TYPEDEF(0x03CB8660, Comparison_1_UdpKit_UdpChannelStreamer_); +DO_TYPEDEF(0x03CB93A8, ArrayPool_1_Pathfinding_IntRect_); +DO_TYPEDEF(0x03CB93C0, ArrayPool_1_Pathfinding_BBTree_BBTreeBox_); +DO_TYPEDEF(0x03CB9578, ListPool_1_Pathfinding_Voxels_RasterizationMesh_); +DO_TYPEDEF(0x03CB97B0, SynchronizedQueue_1_System_Collections_IEnumerator_); +DO_TYPEDEF(0x03CB9818, StunServers); +DO_TYPEDEF(0x03CB9B00, BitTools); +DO_TYPEDEF(0x03CB9BB0, IPhotonRoomPropertiesInternal); +DO_TYPEDEF(0x03CB9BF8, SynchronizedQueue_1_UdpKit_Platform_Photon_PhotonPoller_PhotonPacket_); +DO_TYPEDEF(0x03CB9C80, TempListPool); +DO_TYPEDEF(0x03CB9C90, SystemInfo); +DO_TYPEDEF(0x03CB9D00, TempListPool_PjDAHtdxqqebxCpLhOqfFcxXTcRR); +DO_TYPEDEF(0x03CB9EE0, zDZgydkVTSdUNcyzGBFFOHxZsClo); +DO_TYPEDEF(0x03CBA418, RelevantGraphSurface__Array); +DO_TYPEDEF(0x03CBA490, ListPool_1_Pathfinding_NavmeshClipper_); +DO_TYPEDEF(0x03CBA570, ListPool_1_System_Collections_Generic_List_1_); +DO_TYPEDEF(0x03CBA650, ArrayPool_1_Pathfinding_Int3_); +DO_TYPEDEF(0x03CBA778, Int3__Array__Array); +DO_TYPEDEF(0x03CBA6F8, ListPool_1_Pathfinding_Funnel_PathPart_); +DO_TYPEDEF(0x03CBA760, ArrayPool_1_System_Boolean_); +DO_TYPEDEF(0x03CBA780, ArrayPool_1_System_UInt16_); +DO_TYPEDEF(0x03CBA948, UIEffect_BlurEx__Enum); +DO_TYPEDEF(0x03CBA9E8, UnityReferenceHelper__Array); +DO_TYPEDEF(0x03CBAA50, Console); +DO_TYPEDEF(0x03CBAAA8, EffectAreaExtensions); +DO_TYPEDEF(0x03CBAAC8, ListPool_1_System_Single_); +DO_TYPEDEF(0x03CBAB68, PathUtilities); +DO_TYPEDEF(0x03CBABD0, StackPool_1_Pathfinding_GraphNode_); +DO_TYPEDEF(0x03CBAC58, ArrayPool_1_UnityEngine_Vector2_); +DO_TYPEDEF(0x03CBAF08, ListPool_1_Pathfinding_SingleNodeBlocker_); +DO_TYPEDEF(0x03CBB248, mspJDGgFPsjyYUezrhSNLlFRZhtj); +DO_TYPEDEF(0x03CBB380, IExportToJson); +DO_TYPEDEF(0x03CBB388, JsonWriter); +DO_TYPEDEF(0x03CBB440, Predicate_1_DynamicBone_ParticleTree_); +DO_TYPEDEF(0x03CBB538, IAddKeyValue_2_System_String_System_Object_); +DO_TYPEDEF(0x03CBB8B8, ICollection_1_Pathfinding_Poly2Tri_TriangulationPoint_); +DO_TYPEDEF(0x03CBB8D0, ICollection_1_Pathfinding_Poly2Tri_Polygon_); +DO_TYPEDEF(0x03CBB998, StackPool_1_Pathfinding_Poly2Tri_Polygon_); +DO_TYPEDEF(0x03CDF0D8, IEnumerator_1_Pathfinding_Poly2Tri_PolygonPoint_); +DO_TYPEDEF(0x03CBBA40, ISerializationCallbackReceiver); +DO_TYPEDEF(0x03CBBAE8, IExportToXml); +DO_TYPEDEF(0x03CBBA68, ListPool_1_System_Collections_Generic_List_1__1); +DO_TYPEDEF(0x03CBBA78, ListPool_1_Pathfinding_Poly2Tri_PolygonPoint_); +DO_TYPEDEF(0x03CBBA98, ListPool_1_Pathfinding_ClipperLib_IntPoint_); +DO_TYPEDEF(0x03CBBAB8, ListPool_1_Pathfinding_NavmeshCut_); +DO_TYPEDEF(0x03CBBAC0, ListPool_1_TileHandler_Cut_); +DO_TYPEDEF(0x03CBBB20, ICollection_1_Pathfinding_Poly2Tri_DelaunayTriangle_); +DO_TYPEDEF(0x03CBBB60, Dictionary_2_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32_); +DO_TYPEDEF(0x03CBBB90, NativeTools); +DO_TYPEDEF(0x03CBC170, ListPool_1_Pathfinding_RecastMeshObj_); +DO_TYPEDEF(0x03CBC1B0, Dictionary_2_UnityEngine_Mesh_UnityEngine_Vector3_); +DO_TYPEDEF(0x03CBC1B8, Dictionary_2_UnityEngine_Mesh_System_Int32_); +DO_TYPEDEF(0x03CBC230, ObjectPoolSimple_1_System_Collections_Generic_Dictionary_2__1); +DO_TYPEDEF(0x03CBC498, List_1_LTDescr_); +DO_TYPEDEF(0x03CBC860, ListPool_1_UnityEngine_Color32_); +DO_TYPEDEF(0x03CBC878, ListPool_1_UnityEngine_Vector2_); +DO_TYPEDEF(0x03CBCAF0, mPaPWDBbSWieAQWusiGiHwPgKihA); +DO_TYPEDEF(0x03CBCAF8, List_1_UnityEngine_LightmapData_); +DO_TYPEDEF(0x03CBCD50, Logger); +DO_TYPEDEF(0x03CBCDB0, ICollection_1_Rewired_PlayerController_Element_); +DO_TYPEDEF(0x03CBD028, Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__2); +DO_TYPEDEF(0x03CBD118, IEnumerable_1_Rewired_PlayerController_Element_Definition_); +DO_TYPEDEF(0x03CBD440, Dictionary_2_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase_); +DO_TYPEDEF(0x03CBD430, Dictionary_2_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData_); +DO_TYPEDEF(0x03CBD470, ICollection_1_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData_); +DO_TYPEDEF(0x03CBD528, IPoolableObject); +DO_TYPEDEF(0x03CBD588, WebRequestQueue); +DO_TYPEDEF(0x03CBDD80, ICollection_1_Rewired_ControllerTemplate_kvOnxGBUMwSXiAWzvbgaylKBYqUs_); +DO_TYPEDEF(0x03CBE270, Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__4); +DO_TYPEDEF(0x03CBE288, Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__3); +DO_TYPEDEF(0x03CBE340, IKeyEvaluator); +DO_TYPEDEF(0x03CBE370, Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__5); +DO_TYPEDEF(0x03CBE490, Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__6); +DO_TYPEDEF(0x03CBE558, ILocationSizeData); +DO_TYPEDEF(0x03CBE5C8, Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__7); +DO_TYPEDEF(0x03CBE600, Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__8); +DO_TYPEDEF(0x03CBE728, HashSet_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_); +DO_TYPEDEF(0x03CBE6E0, Predicate_1_UnityEngine_AddressableAssets_AddressablesImpl_ResourceLocatorInfo_); +DO_TYPEDEF(0x03CBE6F0, AddressablesRuntimeProperties); +DO_TYPEDEF(0x03CBF0C8, Dictionary_2_System_UInt32_System_String_); +DO_TYPEDEF(0x03CBF1B8, Dictionary_2_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32_); +DO_TYPEDEF(0x03CBF3B0, BinaryDeserialization); +DO_TYPEDEF(0x03CBF750, BehaviorSource__Array); +DO_TYPEDEF(0x03CBF878, ObjectPool); +DO_TYPEDEF(0x03CBF950, List_1_ShatterableGlass_Figure_); +DO_TYPEDEF(0x03CBF900, ShatterableGlass_BaseLine__Array); +DO_TYPEDEF(0x03CBFB98, Behavior_EventTypes__Enum); +DO_TYPEDEF(0x03CBFCD0, VolumetricLightsPostProcessBase_ShaderParams); +DO_TYPEDEF(0x03CBFDF8, ITuple); +DO_TYPEDEF(0x03CBFE10, IValueTupleInternal); +DO_TYPEDEF(0x03CC0108, VolumetricLight_ShaderParams); +DO_TYPEDEF(0x03CC0500, IEnumerable_1_Rewired_Utils_Classes_Data_SerializedObject_Field_); +DO_TYPEDEF(0x03CC05A8, IReadOnlyList); +DO_TYPEDEF(0x03CC0648, ICollection_1_KeyValuePair_2_System_String_System_Object_); +DO_TYPEDEF(0x03CC0E38, InputActionRebindingExtensions); +DO_TYPEDEF(0x03CC1148, List_1_List_1_UnityEngine_InputSystem_InputBinding_); +DO_TYPEDEF(0x03CC1150, List_1_UnityEngine_InputSystem_InputActionMap_); +DO_TYPEDEF(0x03CC1158, List_1_List_1_UnityEngine_InputSystem_InputAction_); +DO_TYPEDEF(0x03CFC3D0, IReadOnlyList_1_UnityEngine_InputSystem_InputDevice_); +DO_TYPEDEF(0x03CC1358, ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputAction_); +DO_TYPEDEF(0x03CC1418, InputActionAsset_WriteFileJson); +DO_TYPEDEF(0x03CC14E8, InputUpdate); +DO_TYPEDEF(0x03CC1798, InputManager_Base__Array); +DO_TYPEDEF(0x03CC17C0, DebugInformation_ISUYuYsjJYHFziEhEbUyviTWasidb); +DO_TYPEDEF(0x03CC1808, DebugInformation_nhmIhIEoSBPixqxYllnIbALUlDFU); +DO_TYPEDEF(0x03CC1B18, ICollection_1_Rewired_Controller_Axis_); +DO_TYPEDEF(0x03CC1B78, ICollection_1_Rewired_Controller_Button_); +DO_TYPEDEF(0x03CC1DF0, Predicate_1_Rewired_InputAction_); +DO_TYPEDEF(0x03CC1EC0, ICollection_1_Rewired_CustomController_); +DO_TYPEDEF(0x03CC2058, ICollection_1_KeyValuePair_2_System_String_System_Boolean_); +DO_TYPEDEF(0x03CC2200, HashHelpers); +DO_TYPEDEF(0x03CC2508, IDebugDrawer); +DO_TYPEDEF(0x03CC27A0, Dictionary_2_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta_); +DO_TYPEDEF(0x03CC27C0, BoltStateMetas); +DO_TYPEDEF(0x03CC2C88, NetworkIdAllocator); +DO_TYPEDEF(0x03CC2D18, Comparison_1_plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG_); +DO_TYPEDEF(0x03CC2DD0, Comparison_1_Rewired_Joystick_); +DO_TYPEDEF(0x03CC2FC8, ICollection_1_Rewired_KeyboardMap_); +DO_TYPEDEF(0x03CC9E58, BoltDoubleList_1_Photon_Bolt_Entity_); +DO_TYPEDEF(0x03CC9E48, LinkedList_1_Photon_Bolt_BoltConnection_); +DO_TYPEDEF(0x03D1DA48, IEnumerator_1_Photon_Bolt_BoltConnection_); +DO_TYPEDEF(0x03CC3E88, UnitySettings); +DO_TYPEDEF(0x03CC3EA8, BoltPhysics); +DO_TYPEDEF(0x03CCB2A0, BoltDoubleList_1_Photon_Bolt_LagCompensation_BoltHitboxBody_); +DO_TYPEDEF(0x03CCB2B0, BoltDoubleList_1_Photon_Bolt_LagCompensation_BoltHitboxWorldSnapshot_); +DO_TYPEDEF(0x03CC3F00, Factory_1); +DO_TYPEDEF(0x03CC9AC8, Dictionary_2_System_Byte_System_Type_); +DO_TYPEDEF(0x03CC9AA0, Dictionary_2_System_Type_System_Byte_); +DO_TYPEDEF(0x03CC9AA8, Dictionary_2_System_Type_Photon_Bolt_ObjectPool_1_); +DO_TYPEDEF(0x03CC9A98, Dictionary_2_System_Type_Photon_Bolt_Internal_IFactory_); +DO_TYPEDEF(0x03CC9AD0, Dictionary_2_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory_); +DO_TYPEDEF(0x03CC9AB0, Dictionary_2_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory_); +DO_TYPEDEF(0x03CC4028, UnityInputHelper_BsGTYoHaOPgYWtEHeGSpZoDeQUUw__Array); +DO_TYPEDEF(0x03CC9FE0, Dictionary_2_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity_); +DO_TYPEDEF(0x03CC4110, BoltLog); +DO_TYPEDEF(0x03CC4118, BoltNetworkInternal); +DO_TYPEDEF(0x03CE4410, Func_2_Int32_String_); +DO_TYPEDEF(0x03CE43F0, Func_2_String_Int32_); +DO_TYPEDEF(0x03CE4408, Func_1_System_Collections_Generic_List_1__15); +DO_TYPEDEF(0x03CC4148, BoltLauncher); +DO_TYPEDEF(0x03D118A0, IGoatState); +DO_TYPEDEF(0x03D1A0B8, ITownPentagramState); +DO_TYPEDEF(0x03D17EE8, ISteamInventoryState); +DO_TYPEDEF(0x03D1C3A0, IIntroState); +DO_TYPEDEF(0x03D1A108, ICrowState); +DO_TYPEDEF(0x03CF9D00, IManorMirrorState); +DO_TYPEDEF(0x03CF9C80, IManorSpiritState); +DO_TYPEDEF(0x03CFA188, IInnWebState); +DO_TYPEDEF(0x03CC4588, List_1_T_Enumerator_Rewired_ControllerMapLayoutManager_Rule_); +DO_TYPEDEF(0x03D12A10, IMapState); +DO_TYPEDEF(0x03D14BD8, IHidingSpotState); +DO_TYPEDEF(0x03D17798, IPetState); +DO_TYPEDEF(0x03CC4620, ICollection_1_Rewired_ControllerMapLayoutManager_Rule_); +DO_TYPEDEF(0x03D13158, IEnemyState); +DO_TYPEDEF(0x03D17CA8, ISurvivalLobbyState); +DO_TYPEDEF(0x03CC4808, IControllerMapStore); +DO_TYPEDEF(0x03CF7C80, IInnFountainState); +DO_TYPEDEF(0x03CC4860, ICollection_1_Rewired_ControllerMapEnabler_Rule_); +DO_TYPEDEF(0x03CC48F0, List_1_T_Enumerator_Rewired_ControllerMapEnabler_Rule_); +DO_TYPEDEF(0x03CC4E18, ReadOnlyCollection_1_Rewired_AxisCalibration_); +DO_TYPEDEF(0x03CC4F78, ReadOnlyCollection_1_Rewired_Player_); +DO_TYPEDEF(0x03CC4FA0, IAndroidFallbackDS4Helper); +DO_TYPEDEF(0x03CC5CB0, IVoteEventListener); +DO_TYPEDEF(0x03CC5CF8, IVoteRequestEventListener); +DO_TYPEDEF(0x03CC5D38, ISystemChatMessageEventListener); +DO_TYPEDEF(0x03CC5D88, IUseBatteryEventListener); +DO_TYPEDEF(0x03CC5DC8, IEndingEventListener); +DO_TYPEDEF(0x03CC5E18, ICreatePortalEventListener); +DO_TYPEDEF(0x03CC5E68, ILobbyReadyEventListener); +DO_TYPEDEF(0x03CC5EB8, IDropObjectEventListener); +DO_TYPEDEF(0x03CC5F08, IKnockoutGrabRagdollEventListener); +DO_TYPEDEF(0x03CC5F48, IPlayerPickedUpEventListener); +DO_TYPEDEF(0x03CC5F98, ISurvivalChangePlayerEventListener); +DO_TYPEDEF(0x03CC5FF8, IReviveEventListener); +DO_TYPEDEF(0x03CC6038, IKnockoutEventListener); +DO_TYPEDEF(0x03CC6088, IDissonanceToServerListener); +DO_TYPEDEF(0x03CC60D8, IDissonanceToClientListener); +DO_TYPEDEF(0x03CC6128, IHostStartedGameEventListener); +DO_TYPEDEF(0x03CC6170, IKnockoutBoxEventListener); +DO_TYPEDEF(0x03CC61C0, IInteractObjectResponseEventListener); +DO_TYPEDEF(0x03CC6218, IInteractPlopEventListener); +DO_TYPEDEF(0x03CC6258, IInteractObjectRequestEventListener); +DO_TYPEDEF(0x03CC62A8, IInteractTriggerEventListener); +DO_TYPEDEF(0x03CC62F8, IInteractEventListener); +DO_TYPEDEF(0x03D1A188, IEnemyBasicState); +DO_TYPEDEF(0x03D1A180, IInnShrineState); +DO_TYPEDEF(0x03D19D90, IDoorNumberState); +DO_TYPEDEF(0x03D1A140, IBurnTrapState); +DO_TYPEDEF(0x03D19F90, IDoorState); +DO_TYPEDEF(0x03CDCE20, IJumpScareState); +DO_TYPEDEF(0x03D1A700, ISwitchState); +DO_TYPEDEF(0x03CC65E0, BoltScenes); +DO_TYPEDEF(0x03CC65F0, BoltAssets_Candle); +DO_TYPEDEF(0x03CC65F8, BoltAssets_InnMazeWeb); +DO_TYPEDEF(0x03CC6610, BoltAssets_SteamInventoryPlayer); +DO_TYPEDEF(0x03CC6618, BoltAssets_SurvivalPlayer); +DO_TYPEDEF(0x03CC6630, BoltAssets_InventorySlot); +DO_TYPEDEF(0x03CC6638, BoltAssets_PlaceObjectEvent); +DO_TYPEDEF(0x03CC6648, BoltAssets_RangedAttackEvent); +DO_TYPEDEF(0x03CC6660, BoltAssets_VoteEvent); +DO_TYPEDEF(0x03CC6668, BoltAssets_VoteRequestEvent); +DO_TYPEDEF(0x03CC6680, BoltAssets_SystemChatMessageEvent); +DO_TYPEDEF(0x03CC6698, BoltAssets_EndingEvent); +DO_TYPEDEF(0x03CC66B0, BoltAssets_CreatePortalEvent); +DO_TYPEDEF(0x03CC66B8, BoltAssets_LobbyReadyEvent); +DO_TYPEDEF(0x03CC66D0, BoltAssets_DropObjectEvent); +DO_TYPEDEF(0x03CC66D8, BoltAssets_KnockoutGrabRagdollEvent); +DO_TYPEDEF(0x03CC66F0, BoltAssets_PlayerPickedUpEvent); +DO_TYPEDEF(0x03CC66F8, BoltAssets_SurvivalChangePlayerEvent); +DO_TYPEDEF(0x03CC6710, BoltAssets_ReviveEvent); +DO_TYPEDEF(0x03CC6718, BoltAssets_KnockoutEvent); +DO_TYPEDEF(0x03CC6740, BoltAssets_KnockoutBoxEvent); +DO_TYPEDEF(0x03CC6748, BoltAssets_InteractObjectResponseEvent); +DO_TYPEDEF(0x03CC6760, BoltAssets_InteractPlopEvent); +DO_TYPEDEF(0x03CC6768, BoltAssets_InteractObjectRequestEvent); +DO_TYPEDEF(0x03CC6780, BoltAssets_InteractTriggerEvent); +DO_TYPEDEF(0x03CC6788, BoltAssets_InteractEvent); +DO_TYPEDEF(0x03CC67B0, BoltAssets_ManorMirrorState); +DO_TYPEDEF(0x03CC67B8, BoltAssets_ManorSpiritState); +DO_TYPEDEF(0x03CC67D0, BoltAssets_CrowState); +DO_TYPEDEF(0x03CC67D8, BoltAssets_DoorNumberState); +DO_TYPEDEF(0x03CC67F0, BoltAssets_PetState); +DO_TYPEDEF(0x03CC67F8, BoltAssets_IntroState); +DO_TYPEDEF(0x03CC6810, BoltAssets_TownPentagramState); +DO_TYPEDEF(0x03CC6818, BoltAssets_InnFountainState); +DO_TYPEDEF(0x03CC6830, BoltAssets_InnWebState); +DO_TYPEDEF(0x03CC6838, BoltAssets_EnemyState); +DO_TYPEDEF(0x03CC6850, BoltAssets_EnemyBasicState); +DO_TYPEDEF(0x03CC6858, BoltAssets_InnMazeState); +DO_TYPEDEF(0x03CC6870, BoltAssets_InnShrineState); +DO_TYPEDEF(0x03CC6878, BoltAssets_MapState); +DO_TYPEDEF(0x03CC6890, BoltAssets_SteamInventoryState); +DO_TYPEDEF(0x03CC6898, BoltAssets_HidingSpotState); +DO_TYPEDEF(0x03CC68B0, BoltAssets_JumpScareState); +DO_TYPEDEF(0x03CC68B8, BoltAssets_GoatState); +DO_TYPEDEF(0x03CC68D0, BoltAssets_SurvivalLobbyState); +DO_TYPEDEF(0x03CC68D8, BoltAssets_BurnTrapState); +DO_TYPEDEF(0x03CC68F0, BoltAssets_DissonancePlayerState); +DO_TYPEDEF(0x03CC68F8, BoltAssets_InteractObjectState); +DO_TYPEDEF(0x03CC6910, BoltAssets_PlayerState); +DO_TYPEDEF(0x03CC6918, BoltAssets_SwitchState); +DO_TYPEDEF(0x03CC6930, BoltAssets_DoorState); +DO_TYPEDEF(0x03CC6A30, BoltAssemblies); +DO_TYPEDEF(0x03CC6A58, IPlaceObjectEventListener); +DO_TYPEDEF(0x03CC6AA8, IVoteCompletedEventListener); +DO_TYPEDEF(0x03CC6AF8, IRangedAttackEventListener); +DO_TYPEDEF(0x03CC7010, SafeAction_1_Rewired_InputMapper_TimedOutEventData_); +DO_TYPEDEF(0x03CC7050, SafeAction_1_Rewired_InputMapper_ConflictFoundEventData_); +DO_TYPEDEF(0x03CC6FF0, SafeAction_1_Rewired_InputMapper_StoppedEventData_); +DO_TYPEDEF(0x03CC7000, SafeAction_1_Rewired_InputMapper_StartedEventData_); +DO_TYPEDEF(0x03CC70A0, SafeAction_1_Rewired_InputMapper_CanceledEventData_); +DO_TYPEDEF(0x03CC70C0, SafeAction_1_Rewired_InputMapper_ErrorEventData_); +DO_TYPEDEF(0x03CC7078, SafeAction_1_Rewired_InputMapper_InputMappedEventData_); +DO_TYPEDEF(0x03CC75E8, IInputStateCallbackReceiver); +DO_TYPEDEF(0x03CC7BF8, CommonUsages); +DO_TYPEDEF(0x03CC7DA0, IHaptics); +DO_TYPEDEF(0x03CC81F0, ProtocolTokenUtils); +DO_TYPEDEF(0x03CC8610, List_1_Rewired_ControllerMapSaveData_); +DO_TYPEDEF(0x03CC8660, ICollection_1_Rewired_ControllerMap_); +DO_TYPEDEF(0x03CC8EF8, Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_Mouse_MouseMap_); +DO_TYPEDEF(0x03CC8F18, Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_Keyboard_KeyboardMap_); +DO_TYPEDEF(0x03CC8FA0, Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_Keyboard_KeyboardMap_); +DO_TYPEDEF(0x03CC8FA8, Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_Mouse_MouseMap_); +DO_TYPEDEF(0x03CC90A0, fSvlSYodGkhgrFdOGmMLgQycwnMI); +DO_TYPEDEF(0x03CC90F0, List_1_jlOcQLgjodoHrMnRTMaZoBnVTQkmA_); +DO_TYPEDEF(0x03CC99A0, SafeAction_1_Rewired_ControllerStatusChangedEventArgs_); +DO_TYPEDEF(0x03CC96C8, IExternalInputManager); +DO_TYPEDEF(0x03CC9700, List_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap_); +DO_TYPEDEF(0x03CC9868, INativePlatformHelper); +DO_TYPEDEF(0x03CC98F8, Stack_1_Photon_Bolt_Internal_EntityProxyEnvelope_); +DO_TYPEDEF(0x03CC9950, EntityProxyEnvelopePool); +DO_TYPEDEF(0x03CC99C0, IExtraConnectionStats); +DO_TYPEDEF(0x03CC9CD0, BoltCoreInternal); +DO_TYPEDEF(0x03CC9DC0, ITextInputReceiver); +DO_TYPEDEF(0x03CC9E38, Func_4_UnityEngine_GameObject_UnityEngine_Vector3_UnityEngine_Quaternion_UnityEngine_GameObject_); +DO_TYPEDEF(0x03CCA3F0, AutoLoadSceneInfo); +DO_TYPEDEF(0x03CCA688, ICustomDeviceReset); +DO_TYPEDEF(0x03CCA698, UdpLog); +DO_TYPEDEF(0x03CCA778, IEventMerger); +DO_TYPEDEF(0x03CCA788, IInputUpdateCallbackReceiver); +DO_TYPEDEF(0x03CCA790, IEventPreProcessor); +DO_TYPEDEF(0x03CCA880, List_1_UnityEngine_InputSystem_InputDevice_); +DO_TYPEDEF(0x03CCAAB0, Timeout); +DO_TYPEDEF(0x03CCAE88, Func_2_Photon_Bolt_Entity_Single_); +DO_TYPEDEF(0x03CCB0A8, AsyncTaskCache); +DO_TYPEDEF(0x03CCB130, BoltGUI); +DO_TYPEDEF(0x03CCCC48, EventCallback_1_FocusOutEvent_); +DO_TYPEDEF(0x03CCCC40, EventCallback_1_ChangeEvent_1_System_String_); +DO_TYPEDEF(0x03CDEB48, INotifyValueChanged_1_System_String_); +DO_TYPEDEF(0x03CCCD58, EventCallback_1_KeyDownEvent_); +DO_TYPEDEF(0x03CCCEC0, EasyCombine_RendererPropertySelector_1_UnityEngine_Shader_); +DO_TYPEDEF(0x03CCCF10, EasyCombine_RendererPropertySelector_1_UnityEngine_Material_); +DO_TYPEDEF(0x03CCCF48, Func_2_Dissonance_VoiceProximityReceiptTrigger_Boolean_); +DO_TYPEDEF(0x03CCCF28, Func_2_Dissonance_VoiceProximityBroadcastTrigger_Boolean_); +DO_TYPEDEF(0x03CCCF60, List_1_System_Int32___Array_1); +DO_TYPEDEF(0x03CCD0B8, EasyCombine); +DO_TYPEDEF(0x03CCD158, VisualElementUtils); +DO_TYPEDEF(0x03CCD420, ICollection_1_Rewired_JoystickMap_); +DO_TYPEDEF(0x03CCD428, ICollection_1_Rewired_CustomControllerMap_); +DO_TYPEDEF(0x03CCD430, ICollection_1_Rewired_MouseMap_); +DO_TYPEDEF(0x03CCE378, RuntimeUtility); +DO_TYPEDEF(0x03CCE390, UnityAction_1_Cinemachine_CinemachineBrain_); +DO_TYPEDEF(0x03CCE3A8, ScriptPlayable_1_CinemachineMixer_); +DO_TYPEDEF(0x03CCE440, ScriptPlayable_1_CinemachineShotPlayable_); +DO_TYPEDEF(0x03CCE4C0, WdfFFcMoZkFeQDYdsleBlfRGSwSrA); +DO_TYPEDEF(0x03CCE4E0, Comparison_1_kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ_); +DO_TYPEDEF(0x03CCE530, Action_1_kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ_); +DO_TYPEDEF(0x03CCE6B0, kRifoHaugYOIVQgpbAYhhKPHxyGy); +DO_TYPEDEF(0x03CCE6C0, JijFgftvqSztIyGNBBwSiwjdSDyIA); +DO_TYPEDEF(0x03CCE700, Comparison_1_YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE_); +DO_TYPEDEF(0x03CCEA28, InputSourceWrapper_1_HhyJayjEkazMHJnFosltszjdHjxA_); +DO_TYPEDEF(0x03CCE820, hiSgTAFBTWThXmDdbqoAIHMqUpdgb); +DO_TYPEDEF(0x03CCE900, ICollection_1_znMZhiOLtznjGEIVUrVliWSuIivu_); +DO_TYPEDEF(0x03CCE998, IEnumerable_1_IEpqttsJBVpdPbiISguYNqxToTKd_); +DO_TYPEDEF(0x03CCE9D8, ICollection_1_xHrRgXbpglyyLcUqeKrUBIwiHmMg_); +DO_TYPEDEF(0x03CCE9E0, ICollection_1_IEpqttsJBVpdPbiISguYNqxToTKd_); +DO_TYPEDEF(0x03CCEBD0, List_1_Cinemachine_CinemachineComponentBase_); +DO_TYPEDEF(0x03CCF068, IBindingList); +DO_TYPEDEF(0x03CEF0A8, INotifyPropertyChanged); +DO_TYPEDEF(0x03CCF228, HID_Simulation__Enum); +DO_TYPEDEF(0x03CCF718, List_1_VmygOaZMePMYixMwHDTZwiDTgTwx_ynkBgOqbpMPRxusAAQsgHOtlPSzd_); +DO_TYPEDEF(0x03CCF720, List_1_VmygOaZMePMYixMwHDTZwiDTgTwx_BOxQKWlqJkCqZgYbdmKoWcSioOHg_); +DO_TYPEDEF(0x03CCF728, List_1_VmygOaZMePMYixMwHDTZwiDTgTwx_KSREqnFwehoxndHZqHzDjWxKkJsRA_); +DO_TYPEDEF(0x03CCF750, gWxrirpmIhQTmhziZnlXlEwmYtKB); +DO_TYPEDEF(0x03CCF920, qUaeyIgVCufmDzatlipvlpwBwlinA); +DO_TYPEDEF(0x03CCFBA0, Comparison_1_YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb_TKPMPusWChpubsSueSSSVXEvmtou_); +DO_TYPEDEF(0x03CCFC20, PQuGNDVjzWPOAlpBDAoMDUeWrfFdA); +DO_TYPEDEF(0x03CCFC78, yjqIYPGPZDRUzhLMmmIFEMNBhVMq); +DO_TYPEDEF(0x03CCFCE8, JRmFfGvKMkHFhkxbaEUMFVGagwzEc_ouwTfAcYoAaLZDOncmZQZbWsgBDx); +DO_TYPEDEF(0x03CCFD30, JRmFfGvKMkHFhkxbaEUMFVGagwzEc_ouwTfAcYoAaLZDOncmZQZbWsgBDx_bMrAxByDhWfvlfgRebXWLYWosqiWA); +DO_TYPEDEF(0x03CCFFE0, Func_2_UnityEngine_InputSystem_InputAction_Boolean_); +DO_TYPEDEF(0x03CD0198, PointerId); +DO_TYPEDEF(0x03CD0A08, ClipperLib_OutPt__Array); +DO_TYPEDEF(0x03CD1668, EnhancedTouchSupport); +DO_TYPEDEF(0x03CD1730, HIDSupport); +DO_TYPEDEF(0x03CD18D8, CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_); +DO_TYPEDEF(0x03CD1AA0, fQGmhUoTfEGCGFzPdVXUheHRfwfj); +DO_TYPEDEF(0x03CD1AE0, MvuBcSFavsboGCnLcnrkzRubbOCaB); +DO_TYPEDEF(0x03CD1AE8, exarigLDNtDEaYVUwCksJVldldinA); +DO_TYPEDEF(0x03CD1C98, pBilmCLlIdXWtcbMPjvsicTVBdMY); +DO_TYPEDEF(0x03CD1CA0, fqcRIsLAImvoPUnWXMQqpMtLMMMJ); +DO_TYPEDEF(0x03CD1CB0, FTETPFRDoBLfurqcvxcUlMbtegbhA); +DO_TYPEDEF(0x03CD2008, gEPJIdTJwmJwoXPlEpTuwVGlPAjJ); +DO_TYPEDEF(0x03CD2058, ICollection_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_); +DO_TYPEDEF(0x03CD2060, Predicate_1_znMZhiOLtznjGEIVUrVliWSuIivu_); +DO_TYPEDEF(0x03CD2098, Comparison_1_znMZhiOLtznjGEIVUrVliWSuIivu_); +DO_TYPEDEF(0x03CD26A0, IRuntimePanelComponent); +DO_TYPEDEF(0x03CD2688, ObjectListPool_1_IRuntimePanelComponent_); +DO_TYPEDEF(0x03CD2848, EventCallback_1_NavigationSubmitEvent_); +DO_TYPEDEF(0x03CD2808, EventCallback_1_NavigationCancelEvent_); +DO_TYPEDEF(0x03CD2850, EventCallback_1_NavigationMoveEvent_); +DO_TYPEDEF(0x03CD2F78, Predicate_1_CharacterOutfit_); +DO_TYPEDEF(0x03CD3058, DropdownUtility); +DO_TYPEDEF(0x03CD3200, Predicate_1_CharacterEmote_); +DO_TYPEDEF(0x03CD3238, Predicate_1_CharacterPet_); +DO_TYPEDEF(0x03CD3260, Predicate_1_CharacterFlashlight_); +DO_TYPEDEF(0x03CD32A8, IKeyboardEvent); +DO_TYPEDEF(0x03CD32B8, Predicate_1_CharacterPerk_); +DO_TYPEDEF(0x03CD3390, Func_2_CharacterRobe_Boolean_); +DO_TYPEDEF(0x03CD3928, EventCallback_1_PointerCaptureOutEvent_); +DO_TYPEDEF(0x03CD3948, EventCallback_1_MouseUpEvent_); +DO_TYPEDEF(0x03CD3960, EventCallback_1_MouseCaptureOutEvent_); +DO_TYPEDEF(0x03CD3988, EventCallback_1_MouseMoveEvent_); +DO_TYPEDEF(0x03CD39F8, EventCallback_1_MouseDownEvent_); +DO_TYPEDEF(0x03CD3CD0, List_1_System_Net_Mail_SmtpFailedRecipientException_); +DO_TYPEDEF(0x03CD3A00, EventCallback_1_PointerDownEvent_); +DO_TYPEDEF(0x03CD3A10, EventCallback_1_PointerCancelEvent_); +DO_TYPEDEF(0x03CD3AC0, IBindable); +DO_TYPEDEF(0x03CD3BF8, IEnumerable_1_System_Linq_IGrouping_2__4); +DO_TYPEDEF(0x03CD3C10, IEnumerator_1_System_Linq_IGrouping_2__4); +DO_TYPEDEF(0x03CD58D8, Action_2_Boolean_Opsive_UltimateCharacterController_Character_Abilities_Items_Use_); +DO_TYPEDEF(0x03CD5D00, ICollection_1_System_Net_Mail_MailAddress_); +DO_TYPEDEF(0x03CD5F18, Dictionary_2_UnityEngine_AnimatorControllerParameter_System_Object_); +DO_TYPEDEF(0x03CD6230, RectTransformUtility); +DO_TYPEDEF(0x03CD62A8, GUI); +DO_TYPEDEF(0x03CD6718, ICollection_1_Rewired_Joystick_); +DO_TYPEDEF(0x03CD68A0, StyleSheetColor); +DO_TYPEDEF(0x03CDBD78, Dictionary_2_System_String_UnityEngine_Color32_); +DO_TYPEDEF(0x03CD6A88, EventCallback_1_TooltipEvent_); +DO_TYPEDEF(0x03CD6D00, ObjectListPool_1_System_String_); +DO_TYPEDEF(0x03CD6D20, InitialStyle); +DO_TYPEDEF(0x03CD6D70, IPointerCaptureEventInternal); +DO_TYPEDEF(0x03CD6DD8, Action_2_Opsive_UltimateCharacterController_Character_Abilities_Items_ItemAbility_Boolean_); +DO_TYPEDEF(0x03CD74E8, Action_3_UnityEngine_GameObject_UnityEngine_GameObject_Boolean_); +DO_TYPEDEF(0x03CD74F8, Action_2_UnityEngine_GameObject_UnityEngine_GameObject_); +DO_TYPEDEF(0x03CD77E0, CommandGenerator); +DO_TYPEDEF(0x03CD7980, List_1_System_Attribute_); +DO_TYPEDEF(0x03CD79E0, List_1_System_ComponentModel_EventDescriptor_); +DO_TYPEDEF(0x03CD8588, Shaders); +DO_TYPEDEF(0x03CD8610, ICollection_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_); +DO_TYPEDEF(0x03CD8EA8, IItemToggledReceiver); +DO_TYPEDEF(0x03CD9130, CultureInfoConverter_CultureInfoMapper); +DO_TYPEDEF(0x03CD9698, Func_3_Type_String_Object_); +DO_TYPEDEF(0x03CD9748, Func_5_System_Net_NetworkCredential_String_AsyncCallback_Object_IAsyncResult_); +DO_TYPEDEF(0x03CD9970, ContextFlagsAdapterPal); +DO_TYPEDEF(0x03CD9978, SecurityStatusAdapterPal); +DO_TYPEDEF(0x03CFA460, BidirectionalDictionary_2_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode_); +DO_TYPEDEF(0x03CD99C0, GlobalSSPI); +DO_TYPEDEF(0x03CD9E88, HashSet_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_); +DO_TYPEDEF(0x03CD9E98, Dictionary_2_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId_); +DO_TYPEDEF(0x03CD9E90, StylePropertyUtil); +DO_TYPEDEF(0x03CD9EB0, Dictionary_2_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String_); +DO_TYPEDEF(0x03CD9FB0, MeshBuilder); +DO_TYPEDEF(0x03CEB718, MeshBuilder_VertexClipEdge__Enum__Array); +DO_TYPEDEF(0x03CD9FC8, Tessellation); +DO_TYPEDEF(0x03CEB330, Tessellation_Edges__Enum__Array); +DO_TYPEDEF(0x03CDA078, ITextElement); +DO_TYPEDEF(0x03CDA080, RenderEvents); +DO_TYPEDEF(0x03CDA210, UriHelper); +DO_TYPEDEF(0x03CDA7C8, Action_4_Int32_Opsive_Shared_Inventory_IItemIdentifier_Boolean_Boolean_); +DO_TYPEDEF(0x03CDB7A0, Func_2_System_Collections_Generic_KeyValuePair_2_Boolean__9); +DO_TYPEDEF(0x03CDADD8, List_1_Horror_GameStatsPlayerToken_); +DO_TYPEDEF(0x03CF7CE8, GameStatsPlayerToken__Array); +DO_TYPEDEF(0x03CDB0D0, Func_2_UIPetSelectionType_Boolean_); +DO_TYPEDEF(0x03CDBE90, Dictionary_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId_); +DO_TYPEDEF(0x03CDBEF8, UQuery_IVisualPredicateWrapper); +DO_TYPEDEF(0x03CDBFB0, StyleSheetCache); +DO_TYPEDEF(0x03CDC310, StylePropertyCache); +DO_TYPEDEF(0x03CDC350, ShorthandApplicator); +DO_TYPEDEF(0x03CDC690, Func_2_CharacterOutfit_Boolean_); +DO_TYPEDEF(0x03CDC698, Func_2_CharacterPet_Boolean_); +DO_TYPEDEF(0x03CDC750, Func_2_SteamInventoryItem_Boolean_); +DO_TYPEDEF(0x03CDC7F0, UnityAction_1_System_String_); +DO_TYPEDEF(0x03CDCE60, Action_1_Horror_DevourGameMode_); +DO_TYPEDEF(0x03CDCE68, Enum__Array); +DO_TYPEDEF(0x03CDCE80, List_1_System_Enum_); +DO_TYPEDEF(0x03CDCF70, CompModSwitches); +DO_TYPEDEF(0x03CDD268, Attribute__Array__Array); +DO_TYPEDEF(0x03CDD320, IDictionaryService); +DO_TYPEDEF(0x03CDD338, IComponentChangeService); +DO_TYPEDEF(0x03CDD3B8, IReferenceService); +DO_TYPEDEF(0x03CDD450, List_1_System_ComponentModel_PropertyDescriptor_); +DO_TYPEDEF(0x03CDD690, INestedSite); +DO_TYPEDEF(0x03CDD828, ZipEntry_CopyHelper); +DO_TYPEDEF(0x03CDD960, SharedUtilities); +DO_TYPEDEF(0x03CDDB20, ITypeResolutionService); +DO_TYPEDEF(0x03CDDBD0, InternalInflateConstants); +DO_TYPEDEF(0x03CDDD58, Adler); +DO_TYPEDEF(0x03CDDE20, InternalConstants); +DO_TYPEDEF(0x03CDE0F0, IBindingRequest); +DO_TYPEDEF(0x03CDE0E0, List_1_UnityEngine_UIElements_IBindingRequest_); +DO_TYPEDEF(0x03CDE0D0, ObjectListPool_1_IBindingRequest_); +DO_TYPEDEF(0x03CDE258, ComputedTransitionUtils); +DO_TYPEDEF(0x03CDE2B0, StyleCache); +DO_TYPEDEF(0x03CDE300, Dictionary_2_System_Int32_UnityEngine_UIElements_StyleVariableContext_); +DO_TYPEDEF(0x03CDE2F8, Dictionary_2_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty_); +DO_TYPEDEF(0x03CDE420, Comparison_1_UnityEngine_UIElements_VisualElementFocusRing_FocusRingRecord_); +DO_TYPEDEF(0x03CDE580, ObjectPool_1_System_Collections_Generic_List_1__8); +DO_TYPEDEF(0x03D037C0, UQueryState_1_VisualElement_); +DO_TYPEDEF(0x03CDE880, UIEventRegistration); +DO_TYPEDEF(0x03CDE9F0, List_1_UnityEngine_UIElements_IUIElementsUtility_); +DO_TYPEDEF(0x03CDEA00, Func_2_Exception_Boolean_); +DO_TYPEDEF(0x03CDEA90, UIElementsRuntimeUtilityNative); +DO_TYPEDEF(0x03CDEAF8, UIElementsPackageUtility); +DO_TYPEDEF(0x03CDEF80, TriangulationUtil); +DO_TYPEDEF(0x03CDF0D0, ExecuteEvents); +DO_TYPEDEF(0x03CDF1E8, P2T); +DO_TYPEDEF(0x03CDF2B0, ICollection_1_Pathfinding_Poly2Tri_PolygonPoint_); +DO_TYPEDEF(0x03CDF320, UnityTools); +DO_TYPEDEF(0x03CDF370, TypeDescriptor_IUnimplemented); +DO_TYPEDEF(0x03CDF668, JsonParser); +DO_TYPEDEF(0x03CDF780, Dictionary_2_System_String_System_ComponentModel_EventDescriptor_); +DO_TYPEDEF(0x03CDF6C0, List_1_Rewired_Data_UserDataStore_PlayerPrefs_JoystickAssignmentHistoryInfo_); +DO_TYPEDEF(0x03CDF6D0, Predicate_1_Rewired_Data_UserDataStore_PlayerPrefs_JoystickAssignmentHistoryInfo_); +DO_TYPEDEF(0x03CDF768, Dictionary_2_System_String_System_ComponentModel_PropertyDescriptor_); +DO_TYPEDEF(0x03CDF758, IEnumerable_1_Rewired_Player_); +DO_TYPEDEF(0x03CDF7B0, ReflectPropertyDescriptor__Array); +DO_TYPEDEF(0x03CDF7E0, ICollection_1_Rewired_InputLayout_); +DO_TYPEDEF(0x03CDF7E8, ICollection_1_Rewired_InputMapCategory_); +DO_TYPEDEF(0x03CDF800, IEnumerable_1_Rewired_Joystick_); +DO_TYPEDEF(0x03CDF830, ICollection_1_Rewired_Player_); +DO_TYPEDEF(0x03CDF840, IExtenderListService); +DO_TYPEDEF(0x03CDF8A0, ICollection_1_Rewired_InputAction_); +DO_TYPEDEF(0x03CDF928, ControllerTemplateFactory); +DO_TYPEDEF(0x03CDFAF0, LocalAppContextSwitches_1); +DO_TYPEDEF(0x03CDFD88, Func_2_f_AnonymousType2_3_Boolean_); +DO_TYPEDEF(0x03CE0638, Func_2_UnityEngine_UIElements_ReusableCollectionItem_Boolean_); +DO_TYPEDEF(0x03CE0758, IReorderable); +DO_TYPEDEF(0x03CE0930, Version_1); +DO_TYPEDEF(0x03CE09B8, PhotonCodes); +DO_TYPEDEF(0x03CE0A18, IEnumerable_1_KeyValuePair_2_System_Byte_System_Object_); +DO_TYPEDEF(0x03CE0B00, Comparison_1_System_Net_IPAddress_); +DO_TYPEDEF(0x03CE0CC8, SupportClass); +DO_TYPEDEF(0x03CE0CD0, Protocol); +DO_TYPEDEF(0x03CE2EF0, Dictionary_2_System_Type_ExitGames_Client_Photon_CustomType_); +DO_TYPEDEF(0x03CE2EE0, Dictionary_2_System_Byte_ExitGames_Client_Photon_CustomType_); +DO_TYPEDEF(0x03CE0D70, SupportClass_ThreadSafeRandom); +DO_TYPEDEF(0x03CE0F58, Mathf); +DO_TYPEDEF(0x03CE1140, Predicate_1_Rewired_Demos_DualShock4SpecialFeaturesExample_Touch_); +DO_TYPEDEF(0x03CE1218, IControllerVibrator); +DO_TYPEDEF(0x03CE1B60, ICollection_1_KeyValuePair_2_System_String_System_String_); +DO_TYPEDEF(0x03CE1CD0, EventCallback_1_PointerCaptureEvent_); +DO_TYPEDEF(0x03CE1DF0, EventCallback_1_WheelEvent_); +DO_TYPEDEF(0x03CE2670, StandardCommands_ShellGuids); +DO_TYPEDEF(0x03CE27B8, IFormatter); +DO_TYPEDEF(0x03CE2C08, UnknownType__Array); +DO_TYPEDEF(0x03CE33D8, BOTDShaderID); +DO_TYPEDEF(0x03CE3470, Logs_1); +DO_TYPEDEF(0x03CE3658, RandomGen); +DO_TYPEDEF(0x03CE3978, Action_1_Opsive_UltimateCharacterController_Objects_CharacterAssist_ObjectPickup_); +DO_TYPEDEF(0x03CE39B8, Action_1_Opsive_UltimateCharacterController_Character_ILookSource_); +DO_TYPEDEF(0x03CE3A70, ICollection_1_Rewired_ControllerTemplateElementTarget_); +DO_TYPEDEF(0x03CE3A78, ICollection_1_Rewired_InputActionSourceData_); +DO_TYPEDEF(0x03CE3BC0, OakleyGroups); +DO_TYPEDEF(0x03CE4058, INavigationEvent); +DO_TYPEDEF(0x03CE4390, CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_); +DO_TYPEDEF(0x03CE43D8, ICommandEvent); +DO_TYPEDEF(0x03CE4520, BoltDebugStartSettings_HWND); +DO_TYPEDEF(0x03CE4528, BoltDebugStartSettings_SWP); +DO_TYPEDEF(0x03CE4550, ConsoleWriter); +DO_TYPEDEF(0x03CE4570, IDragAndDropController_1_IListDragAndDropArgs_); +DO_TYPEDEF(0x03CE4600, EventCallback_1_PointerLeaveEvent_); +DO_TYPEDEF(0x03CE4620, DragAndDropUtility); +DO_TYPEDEF(0x03CE4E38, Action_3_UnityEngine_Vector3_UnityEngine_Vector3_UnityEngine_GameObject_); +DO_TYPEDEF(0x03CE5410, Predicate_1_Photon_Realtime_Region_); +DO_TYPEDEF(0x03CE5808, IOnEventCallback); +DO_TYPEDEF(0x03CE5D00, Extensions); +DO_TYPEDEF(0x03CE5D78, CustomTypesUnity); +DO_TYPEDEF(0x03CE67F0, Physics2D); +DO_TYPEDEF(0x03D19CB8, List_1_UnityEngine_Rigidbody2D_); +DO_TYPEDEF(0x03CE85E0, PathInternal); +DO_TYPEDEF(0x03CE8698, IFancyScrollRectContext); +DO_TYPEDEF(0x03CE86B0, IFancyGridViewContext); +DO_TYPEDEF(0x03CE8728, Func_2_Int32_UnityEngine_GameObject_); +DO_TYPEDEF(0x03CE8750, IReadOnlyCollection_1_System_Linq_Expressions_ParameterExpression_); +DO_TYPEDEF(0x03CE96D8, ICollection_1_Rewired_Controller_CompoundElement_); +DO_TYPEDEF(0x03CE9800, Comparison_1_UnityEngine_UIElements_VisualElementAsset_); +DO_TYPEDEF(0x03CE98F0, List_1_Rewired_Controller_Element_); +DO_TYPEDEF(0x03CE9928, List_1_Rewired_Controller_CompoundElement_); +DO_TYPEDEF(0x03CE9A98, ICollection_1_Rewired_Controller_Element_); +DO_TYPEDEF(0x03CE9C80, Func_2_f_AnonymousType0_2_Boolean__1); +DO_TYPEDEF(0x03CE9EA8, ReadOnlyCollection_1_Rewired_ControllerElementIdentifier_); +DO_TYPEDEF(0x03CE9EB0, VisualElementFactoryRegistry); +DO_TYPEDEF(0x03CEA008, Predicate_1_CrowPerchController_); +DO_TYPEDEF(0x03CEA340, Predicate_1_System_Collections_Generic_List_1_); +DO_TYPEDEF(0x03CEA658, Consts); +DO_TYPEDEF(0x03CEA798, ThreadSafeUnityInput); +DO_TYPEDEF(0x03CEA7A8, Dictionary_2_UnityEngine_SystemLanguage_System_String_); +DO_TYPEDEF(0x03CEB2C0, PathInternal_1); +DO_TYPEDEF(0x03CEB3C0, List_1_UnityEngine_UIElements_UIR_RenderChain_); +DO_TYPEDEF(0x03CEB6C0, RenderChain_RenderChainStaticIndexAllocator); +DO_TYPEDEF(0x03CEB8D8, List_1_Rewired_ControllerTemplate_kvOnxGBUMwSXiAWzvbgaylKBYqUs_); +DO_TYPEDEF(0x03CEB980, IControllerTemplateElement_Internal); +DO_TYPEDEF(0x03CEBA18, List_1_Rewired_IControllerTemplateAxis_); +DO_TYPEDEF(0x03CEBA38, List_1_Rewired_IControllerTemplateButton_); +DO_TYPEDEF(0x03CEBAE0, Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component_); +DO_TYPEDEF(0x03CFE818, Dictionary_2_System_Type_UnityEngine_Component_); +DO_TYPEDEF(0x03CEBB10, Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1); +DO_TYPEDEF(0x03CFE7E8, Dictionary_2_System_Type_UnityEngine_Component__2); +DO_TYPEDEF(0x03CEBB18, IControllerTemplateElementIdentifier_Editor); +DO_TYPEDEF(0x03CEBD90, IGetSetEnabled); +DO_TYPEDEF(0x03CEBF60, Action_5_System_Single_UnityEngine_Vector3_UnityEngine_Vector3_UnityEngine_GameObject_UnityEngine_Collider_); +DO_TYPEDEF(0x03CEBFE0, List_1_Rewired_IControllerTemplate_); +DO_TYPEDEF(0x03CEC038, ICollection_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap_); +DO_TYPEDEF(0x03CEC078, List_1_Rewired_Controller_Button_); +DO_TYPEDEF(0x03CEC6B8, IEnumerable_1_UnityEngine_Yoga_YogaNode_); +DO_TYPEDEF(0x03CEC870, ICollection_1_Rewired_Controller_Element_xOoJsIJJrYLeLMCcefuYYRHXEZwJ_yShTYqkGIvmtEnfpaLxCqsdlnJlO_); +DO_TYPEDEF(0x03CED698, Platform); +DO_TYPEDEF(0x03CED940, SecurityUtils); +DO_TYPEDEF(0x03CEDC88, CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_UI_RectMask2D_); +DO_TYPEDEF(0x03CEDE10, IMaskable); +DO_TYPEDEF(0x03CEDE60, CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_UI_Mask_); +DO_TYPEDEF(0x03CEE050, Func_2_System_Collections_Generic_KeyValuePair_2_String__3); +DO_TYPEDEF(0x03CEE0A8, ConcurrentDictionary_2_System_String_System_String_); +DO_TYPEDEF(0x03CEE0F8, OidLookup); +DO_TYPEDEF(0x03CEE198, ILayoutSelfController); +DO_TYPEDEF(0x03CEE208, ILayoutIgnorer); +DO_TYPEDEF(0x03CEE2A0, ICollection_1_UnityEngine_UICharInfo_); +DO_TYPEDEF(0x03CEE2C0, ICollection_1_UnityEngine_UILineInfo_); +DO_TYPEDEF(0x03CEE6F8, List_1_Rewired_HID_HIDControllerElementWithDataSet_oBWNdsGlGNkIvPlfnFirbraBbQXRA_); +DO_TYPEDEF(0x03CEE850, Comparison_1_Rewired_InputManagers_CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf_); +DO_TYPEDEF(0x03CEEBE8, ICollection_1_gzbiKNGlSyvLxnIubujCpzSuqtOe_); +DO_TYPEDEF(0x03CEEC30, Comparison_1_OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb_); +DO_TYPEDEF(0x03CEF098, INotifyCollectionChanged); +DO_TYPEDEF(0x03CEF200, UnityInputHelper); +DO_TYPEDEF(0x03CEF2B8, ReadOnlyCollection_1_Rewired_ControllerMap_); +DO_TYPEDEF(0x03CEF3E8, List_1_Rewired_Utils_Classes_Utility_ValueWatcher_); +DO_TYPEDEF(0x03CF0328, IList_1_System_Text_RegularExpressions_Match_); +DO_TYPEDEF(0x03CF0338, ICollection_1_System_Text_RegularExpressions_Match_); +DO_TYPEDEF(0x03CF04E8, ICollection_1_System_Text_RegularExpressions_Group_); +DO_TYPEDEF(0x03CF0510, IList_1_System_Text_RegularExpressions_Group_); +DO_TYPEDEF(0x03CF0550, IList_1_System_Text_RegularExpressions_Capture_); +DO_TYPEDEF(0x03CF0558, ICollection_1_System_Text_RegularExpressions_Capture_); +DO_TYPEDEF(0x03CF0830, CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_UIVertex_); +DO_TYPEDEF(0x03CF0AF8, CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_Vector4_); +DO_TYPEDEF(0x03CF0B08, CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_Color32_); +DO_TYPEDEF(0x03CF0B28, CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_Vector3_); +DO_TYPEDEF(0x03D1B028, Physics); +DO_TYPEDEF(0x03CF0EE8, ICollection_1_UnityEngine_UIVertex_); +DO_TYPEDEF(0x03CF16A8, UIRUtility); +DO_TYPEDEF(0x03CF1DB0, Action_3_UnityEngine_GameObject_String_String_); +DO_TYPEDEF(0x03CF1F90, GetSetValue_1_Rewired_Platforms_GameCoreScarlettPrimaryInputSource_); +DO_TYPEDEF(0x03CF2120, Func_1_Rewired_Platforms_GameCoreScarlettPrimaryInputSource_); +DO_TYPEDEF(0x03CF25C0, Action_1_Rewired_Platforms_GameCoreScarlettPrimaryInputSource_); +DO_TYPEDEF(0x03CF1F98, GetSetValue_1_Rewired_AxisSensitivityType_); +DO_TYPEDEF(0x03CF2108, Func_1_Rewired_AxisSensitivityType_); +DO_TYPEDEF(0x03CF25B0, Action_1_Rewired_AxisSensitivityType_); +DO_TYPEDEF(0x03CF1FA8, GetSetValue_1_Rewired_Platforms_XboxOnePrimaryInputSource_); +DO_TYPEDEF(0x03CF22B8, Func_1_Rewired_Platforms_XboxOnePrimaryInputSource_); +DO_TYPEDEF(0x03CF2558, Action_1_Rewired_Platforms_XboxOnePrimaryInputSource_); +DO_TYPEDEF(0x03CF1FB8, GetSetValue_1_Rewired_Platforms_WindowsUWPPrimaryInputSource_); +DO_TYPEDEF(0x03CF2288, Func_1_Rewired_Platforms_WindowsUWPPrimaryInputSource_); +DO_TYPEDEF(0x03CF2578, Action_1_Rewired_Platforms_WindowsUWPPrimaryInputSource_); +DO_TYPEDEF(0x03CF1FC0, GetSetValue_1_Rewired_Platforms_PS5PrimaryInputSource_); +DO_TYPEDEF(0x03CF2278, Func_1_Rewired_Platforms_PS5PrimaryInputSource_); +DO_TYPEDEF(0x03CF2520, Action_1_Rewired_Platforms_PS5PrimaryInputSource_); +DO_TYPEDEF(0x03CF1FD0, GetSetValue_1_Rewired_Platforms_LinuxStandalonePrimaryInputSource_); +DO_TYPEDEF(0x03CF2138, Func_1_Rewired_Platforms_LinuxStandalonePrimaryInputSource_); +DO_TYPEDEF(0x03CF2588, Action_1_Rewired_Platforms_LinuxStandalonePrimaryInputSource_); +DO_TYPEDEF(0x03CF1FE0, GetSetValue_1_Rewired_Platforms_WindowsStandalonePrimaryInputSource_); +DO_TYPEDEF(0x03CF2128, Func_1_Rewired_Platforms_WindowsStandalonePrimaryInputSource_); +DO_TYPEDEF(0x03CF2590, Action_1_Rewired_Platforms_WindowsStandalonePrimaryInputSource_); +DO_TYPEDEF(0x03CF1FE8, GetSetValue_1_Rewired_Platforms_StadiaPrimaryInputSource_); +DO_TYPEDEF(0x03CF22D0, Func_1_Rewired_Platforms_StadiaPrimaryInputSource_); +DO_TYPEDEF(0x03CF2568, Action_1_Rewired_Platforms_StadiaPrimaryInputSource_); +DO_TYPEDEF(0x03CF1FF0, GetSetValue_1_Rewired_Config_UpdateLoopSetting_); +DO_TYPEDEF(0x03CF22B0, Func_1_Rewired_Config_UpdateLoopSetting_); +DO_TYPEDEF(0x03CF2528, Action_1_Rewired_Config_UpdateLoopSetting_); +DO_TYPEDEF(0x03CF1FF8, GetSetValue_1_Rewired_Platforms_GameCoreXboxOnePrimaryInputSource_); +DO_TYPEDEF(0x03CF2130, Func_1_Rewired_Platforms_GameCoreXboxOnePrimaryInputSource_); +DO_TYPEDEF(0x03CF25B8, Action_1_Rewired_Platforms_GameCoreXboxOnePrimaryInputSource_); +DO_TYPEDEF(0x03CF2008, GetSetValue_1_Rewired_Config_LogLevelFlags_); +DO_TYPEDEF(0x03CF2110, Func_1_Rewired_Config_LogLevelFlags_); +DO_TYPEDEF(0x03CF2570, Action_1_Rewired_Config_LogLevelFlags_); +DO_TYPEDEF(0x03CF2018, GetSetValue_1_Rewired_Config_ThrottleCalibrationMode_); +DO_TYPEDEF(0x03CF22A8, Func_1_Rewired_Config_ThrottleCalibrationMode_); +DO_TYPEDEF(0x03CF25A8, Action_1_Rewired_Config_ThrottleCalibrationMode_); +DO_TYPEDEF(0x03CF2180, GetSetValue_1_Rewired_DeadZone2DType_); +DO_TYPEDEF(0x03CF22E8, Func_1_Rewired_DeadZone2DType_); +DO_TYPEDEF(0x03CF2560, Action_1_Rewired_DeadZone2DType_); +DO_TYPEDEF(0x03CF2150, GetSetValue_1_Rewired_Platforms_WebGLPrimaryInputSource_); +DO_TYPEDEF(0x03CF22C0, Func_1_Rewired_Platforms_WebGLPrimaryInputSource_); +DO_TYPEDEF(0x03CF2598, Action_1_Rewired_Platforms_WebGLPrimaryInputSource_); +DO_TYPEDEF(0x03CF2158, GetSetValue_1_Rewired_Platforms_PS4PrimaryInputSource_); +DO_TYPEDEF(0x03CF2280, Func_1_Rewired_Platforms_PS4PrimaryInputSource_); +DO_TYPEDEF(0x03CF2548, Action_1_Rewired_Platforms_PS4PrimaryInputSource_); +DO_TYPEDEF(0x03CF2140, GetSetValue_1_Rewired_Platforms_OSXStandalonePrimaryInputSource_); +DO_TYPEDEF(0x03CF2290, Func_1_Rewired_Platforms_OSXStandalonePrimaryInputSource_); +DO_TYPEDEF(0x03CF25A0, Action_1_Rewired_Platforms_OSXStandalonePrimaryInputSource_); +DO_TYPEDEF(0x03CF2168, GetSetValue_1_Rewired_AxisSensitivity2DType_); +DO_TYPEDEF(0x03CF22A0, Func_1_Rewired_AxisSensitivity2DType_); +DO_TYPEDEF(0x03CF2580, Action_1_Rewired_AxisSensitivity2DType_); +DO_TYPEDEF(0x03CF2220, Predicate_1_AnimalGateSpawnPoint_); +DO_TYPEDEF(0x03CF29B0, ICollection_1_Rewired_Platforms_Custom_CustomInputSource_Joystick_); +DO_TYPEDEF(0x03CF2A68, ICollection_1_Rewired_PidVid_); +DO_TYPEDEF(0x03CF2BF0, SpecialDevices); +DO_TYPEDEF(0x03CF2C28, SpecialDevices_LmfQOMWqeEMyploFNrEhFJQZfChb__Array); +DO_TYPEDEF(0x03CF2C88, SpriteShapeRenderer); +DO_TYPEDEF(0x03CF3140, RaycasterManager); +DO_TYPEDEF(0x03CF3228, EventCallback_1_FocusEvent_); +DO_TYPEDEF(0x03CF3240, EventCallback_1_BlurEvent_); +DO_TYPEDEF(0x03CF32B0, RemoteSettings); +DO_TYPEDEF(0x03CF32B8, AnalyticsSessionInfo); +DO_TYPEDEF(0x03CF37E8, WWWForm); +DO_TYPEDEF(0x03CF3890, WebRequestUtils); +DO_TYPEDEF(0x03CF38C0, WWWTranscoder); +DO_TYPEDEF(0x03CF39E0, IEnumerator_1_SignalReceiverWithVector3Vector3Float_SignalAssetEventPair_); +DO_TYPEDEF(0x03CF39F0, Func_2_SignalReceiverWithVector3Vector3Float_SignalAssetEventPair_Boolean_); +DO_TYPEDEF(0x03CF39F8, IEnumerable_1_SignalReceiverWithVector3Vector3Float_SignalAssetEventPair_); +DO_TYPEDEF(0x03CF3A30, IEnumerable_1_SignalReceiverWithVector3_SignalAssetEventPair_); +DO_TYPEDEF(0x03CF3A38, IEnumerator_1_SignalReceiverWithVector3_SignalAssetEventPair_); +DO_TYPEDEF(0x03CF3A48, Func_2_SignalReceiverWithVector3_SignalAssetEventPair_Boolean_); +DO_TYPEDEF(0x03CF3A70, IEnumerator_1_SignalReceiverWithTransformOffsetsFullRot_SignalAssetEventPair_); +DO_TYPEDEF(0x03CF3A80, Func_2_SignalReceiverWithTransformOffsetsFullRot_SignalAssetEventPair_Boolean_); +DO_TYPEDEF(0x03CF3A88, IEnumerable_1_SignalReceiverWithTransformOffsetsFullRot_SignalAssetEventPair_); +DO_TYPEDEF(0x03CF3AC0, IEnumerable_1_SignalReceiverWithTransformOffsets_SignalAssetEventPair_); +DO_TYPEDEF(0x03CF3AC8, IEnumerator_1_SignalReceiverWithTransformOffsets_SignalAssetEventPair_); +DO_TYPEDEF(0x03CF3AD8, Func_2_SignalReceiverWithTransformOffsets_SignalAssetEventPair_Boolean_); +DO_TYPEDEF(0x03CF3BC8, IEnumerator_1_UnityEngine_AudioClip_); +DO_TYPEDEF(0x03CF3BE0, IEnumerable_1_UnityEngine_AudioClip_); +DO_TYPEDEF(0x03CF3E08, VFXManager); +DO_TYPEDEF(0x03CF3E18, XRDevice); +DO_TYPEDEF(0x03CF3E20, ReadOnlyCollection_1_Rewired_Data_Mapping_ControllerMap_Editor_); +DO_TYPEDEF(0x03CF3E28, ReadOnlyCollection_1_Rewired_Data_ControllerMapEnabler_RuleSet_Editor_); +DO_TYPEDEF(0x03CF3E30, ReadOnlyCollection_1_Rewired_InputMapCategory_); +DO_TYPEDEF(0x03CF3E38, ReadOnlyCollection_1_Rewired_InputLayout_); +DO_TYPEDEF(0x03CF3E40, ReadOnlyCollection_1_Rewired_Data_ControllerMapLayoutManager_RuleSet_Editor_); +DO_TYPEDEF(0x03CF3E48, ReadOnlyCollection_1_Rewired_InputCategory_); +DO_TYPEDEF(0x03CF3EA8, ReadOnlyCollection_1_Rewired_Data_Player_Editor_); +DO_TYPEDEF(0x03CF3EA0, ReadOnlyCollection_1_Rewired_InputBehavior_); +DO_TYPEDEF(0x03CF3ED8, Comparison_1_Rewired_Data_Mapping_ControllerMap_Editor_); +DO_TYPEDEF(0x03CF45A0, InputDevices); +DO_TYPEDEF(0x03CF48D8, InputTracking); +DO_TYPEDEF(0x03CF49A0, List_1_XXNesqlLzdVyNWEawBsQGxYGjphX_); +DO_TYPEDEF(0x03CF4E90, List_1_System_Diagnostics_Process_); +DO_TYPEDEF(0x03CF5900, TraceInternal); +DO_TYPEDEF(0x03D12C48, Action_2_UnityEngine_GameObject_Boolean_); +DO_TYPEDEF(0x03CF6A50, Predicate_1_Rewired_InputLayout_); +DO_TYPEDEF(0x03CF6B50, ICollection_1_Rewired_Data_Mapping_ControllerMap_Editor_); +DO_TYPEDEF(0x03CF6BF0, Action_2_System_Collections_Generic_List_1_System_Collections_Generic_List_1_); +DO_TYPEDEF(0x03CF6D58, ICollection_1_Rewired_Data_Player_Editor_CreateControllerInfo_); +DO_TYPEDEF(0x03CF6D68, ICollection_1_Rewired_Data_Player_Editor_Mapping_); +DO_TYPEDEF(0x03CF6D78, ICollection_1_Rewired_Data_Player_Editor_); +DO_TYPEDEF(0x03CF6DB8, ICollection_1_Rewired_InputCategory_); +DO_TYPEDEF(0x03CF6DC0, ICollection_1_Rewired_Data_ControllerMapEnabler_RuleSet_Editor_); +DO_TYPEDEF(0x03CF6DD0, ICollection_1_Rewired_Data_ControllerMapLayoutManager_RuleSet_Editor_); +DO_TYPEDEF(0x03CF6DE0, ICollection_1_Rewired_Data_CustomController_Editor_); +DO_TYPEDEF(0x03CF7290, Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_InputMapCategory_); +DO_TYPEDEF(0x03CF7248, Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_Data_Player_Editor_); +DO_TYPEDEF(0x03CF7138, Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_InputCategory_); +DO_TYPEDEF(0x03CF7120, Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_InputLayout_); +DO_TYPEDEF(0x03CF7100, Func_3_Rewired_Data_Mapping_ControllerMap_Editor_System_Collections_Generic_IList_1_Int32_); +DO_TYPEDEF(0x03CF7130, Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_InputAction_); +DO_TYPEDEF(0x03CF72A0, Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_InputBehavior_); +DO_TYPEDEF(0x03CF7268, Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_Data_Mapping_ControllerMap_Editor_); +DO_TYPEDEF(0x03CF7230, Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_Data_CustomController_Editor_); +DO_TYPEDEF(0x03CF7278, Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_Data_ControllerMapEnabler_RuleSet_Editor_); +DO_TYPEDEF(0x03CF7298, Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_Data_ControllerMapLayoutManager_RuleSet_Editor_); +DO_TYPEDEF(0x03CF73C8, UnityAction_1_UnityEngine_EventSystems_BaseEventData_); +DO_TYPEDEF(0x03CF7518, List_1_UnityEngine_MonoBehaviour_); +DO_TYPEDEF(0x03CF7530, List_1_UnityEngine_UI_Extensions_IBoxSelectable_); +DO_TYPEDEF(0x03CF7A20, List_1_InnMazeBlocker_); +DO_TYPEDEF(0x03CF7A48, Dictionary_2_System_Int32_List_1_InnMazeBlocker_); +DO_TYPEDEF(0x03CF7DB8, Action_1_Photon_Bolt_BoltConnection_); +DO_TYPEDEF(0x03CF8488, ICollection_1_UnityEngine_RectTransform_); +DO_TYPEDEF(0x03CF88C8, ShaderLibrary); +DO_TYPEDEF(0x03CFAE48, Dictionary_2_System_String_UnityEngine_Shader_); +DO_TYPEDEF(0x03CF8B88, DerEncoder); +DO_TYPEDEF(0x03CF8F58, List_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_OSX_Base_Axis_); +DO_TYPEDEF(0x03CF9808, List_1_UnityEngine_UIVertex__2); +DO_TYPEDEF(0x03CFAEF8, Action_1_UnityEngine_EventSystems_IDragHandler_); +DO_TYPEDEF(0x03CFAFC0, Action_1_UnityEngine_EventSystems_IInitializePotentialDragHandler_); +DO_TYPEDEF(0x03CFAF30, Action_1_UnityEngine_EventSystems_IBeginDragHandler_); +DO_TYPEDEF(0x03CFAF40, Action_1_UnityEngine_EventSystems_IScrollHandler_); +DO_TYPEDEF(0x03CFAF60, Action_1_UnityEngine_EventSystems_IEndDragHandler_); +DO_TYPEDEF(0x03CFB050, CLZF2); +DO_TYPEDEF(0x03CFB418, ListPool_1_Pathfinding_GraphNode_); +DO_TYPEDEF(0x03CFB488, ListPool_1_UnityEngine_Vector3_); +DO_TYPEDEF(0x03CFB648, ITransformedGraph); +DO_TYPEDEF(0x03CFB8D0, IGraphInternals); +DO_TYPEDEF(0x03CFB8E0, GC_1); +DO_TYPEDEF(0x03CFBC88, Common); +DO_TYPEDEF(0x03CFBEB8, AndroidJavaProxy__Array); +DO_TYPEDEF(0x03CFC090, AndroidJavaClass__Array); +DO_TYPEDEF(0x03CFC330, InputRuntime); +DO_TYPEDEF(0x03CFC368, InputSystem); +DO_TYPEDEF(0x03CFC3D8, IReadOnlyCollection_1_UnityEngine_InputSystem_InputDevice_); +DO_TYPEDEF(0x03CFC4E8, Stack_1_System_Xml_DtdParser_ParseElementOnlyContent_LocalFrame_); +DO_TYPEDEF(0x03CFC558, IDtdParserAdapterV1); +DO_TYPEDEF(0x03CFCD08, IComparable); +DO_TYPEDEF(0x03CFCD50, IEnumerator_1_System_Runtime_CompilerServices_AsyncStateMachineAttribute_); +DO_TYPEDEF(0x03CFCD58, IEnumerable_1_System_Runtime_CompilerServices_AsyncStateMachineAttribute_); +DO_TYPEDEF(0x03CFCDB8, List_1_System_Diagnostics_StackFrame_); +DO_TYPEDEF(0x03CFD688, Logs); +DO_TYPEDEF(0x03CFD950, GUILayoutUtility); +DO_TYPEDEF(0x03D13EF0, Dictionary_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache_); +DO_TYPEDEF(0x03CFD990, Graphics); +DO_TYPEDEF(0x03CFD998, Debug_2); +DO_TYPEDEF(0x03CFDAB0, XmlCustomFormatter); +DO_TYPEDEF(0x03CFDFA0, TypeTranslator); +DO_TYPEDEF(0x03CFDFB0, CodeIdentifier); +DO_TYPEDEF(0x03CFE110, ICachable); +DO_TYPEDEF(0x03CFE260, Func_1_System_IO_Stream_); +DO_TYPEDEF(0x03CFE2E8, Func_2_IAsyncResult_System_Net_WebResponse_); +DO_TYPEDEF(0x03CFE670, IInitializableObject); +DO_TYPEDEF(0x03CFE838, VisualElementListPool); +DO_TYPEDEF(0x03CFE858, MiscTools); +DO_TYPEDEF(0x03CFE928, AudioSettings); +DO_TYPEDEF(0x03CFED08, FileSystemEnumerableFactory); +DO_TYPEDEF(0x03CFF168, BitConverter); +DO_TYPEDEF(0x03CFF330, Marshal); +DO_TYPEDEF(0x03CFF508, Int32__Array__Array__Array); +DO_TYPEDEF(0x03CFF510, Int32__Array__Array__Array__Array); +DO_TYPEDEF(0x03CFF548, List_1_MantisLOD_Progressive_Mesh_); +DO_TYPEDEF(0x03CFF568, MantisLODSimpler); +DO_TYPEDEF(0x03CFF810, FileSystemName); +DO_TYPEDEF(0x03CFF8E8, FileSystemEnumerable_1_TResult_FindPredicate_System_String_); +DO_TYPEDEF(0x03CFF8F8, FileSystemEnumerable_1_System_String_); +DO_TYPEDEF(0x03CFFA68, ConsoleDriver); +DO_TYPEDEF(0x03D00080, XmlIncludeAttribute__Array); +DO_TYPEDEF(0x03D000F0, LogCategory__Enum__Array); +DO_TYPEDEF(0x03D00190, Path); +DO_TYPEDEF(0x03D001B0, SubsystemManager); +DO_TYPEDEF(0x03D1BAE8, List_1_UnityEngine_IntegratedSubsystem_); +DO_TYPEDEF(0x03D1BB40, List_1_UnityEngine_SubsystemsImplementation_SubsystemWithProvider_); +DO_TYPEDEF(0x03D1BB48, List_1_UnityEngine_Subsystem_); +DO_TYPEDEF(0x03D001B8, SubsystemDescriptorStore); +DO_TYPEDEF(0x03D1B948, List_1_UnityEngine_IntegratedSubsystemDescriptor_); +DO_TYPEDEF(0x03D1B950, List_1_UnityEngine_SubsystemsImplementation_SubsystemDescriptorWithProvider_); +DO_TYPEDEF(0x03D1BA58, List_1_UnityEngine_SubsystemDescriptor_); +DO_TYPEDEF(0x03D00640, ScriptPlayable_1_PlaceholderSoftware_WetStuff_Timeline_Saturation_Data_); +DO_TYPEDEF(0x03D00720, IFormattable); +DO_TYPEDEF(0x03D007A8, ScriptPlayable_1_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsDataContainer_); +DO_TYPEDEF(0x03D009D0, List_1_Opsive_Shared_Utility_Serialization_); +DO_TYPEDEF(0x03D00A18, List_1_gzbiKNGlSyvLxnIubujCpzSuqtOe_); +DO_TYPEDEF(0x03D00A88, RuntimeUtilities); +DO_TYPEDEF(0x03D02538, Stack_1_System_Xml_Schema_InteriorNode_); +DO_TYPEDEF(0x03D03278, List_1_System_Xml_Schema_XmlSchemaObject_); +DO_TYPEDEF(0x03D037A8, UQueryExtensions); +DO_TYPEDEF(0x03D037E8, Utility_1); +DO_TYPEDEF(0x03D03FA0, ICollection_1_Rewired_ActionElementMap_); +DO_TYPEDEF(0x03D03FF8, List_1_System_Linq_Expressions_ParameterExpression_); +DO_TYPEDEF(0x03D04060, LightProbes); +DO_TYPEDEF(0x03D04110, CustomRenderTextureManager); +DO_TYPEDEF(0x03D042C0, Application); +DO_TYPEDEF(0x03D042D0, BeforeRenderHelper); +DO_TYPEDEF(0x03D04308, NativeLeakDetection); +DO_TYPEDEF(0x03D04340, ProcessingState__Enum__Array); +DO_TYPEDEF(0x03D04348, Priority__Enum__Array); +DO_TYPEDEF(0x03D04350, FileReadType__Enum__Array); +DO_TYPEDEF(0x03D04358, AssetLoadingSubsystem__Enum__Array); +DO_TYPEDEF(0x03D04360, JobsUtility); +DO_TYPEDEF(0x03D04368, MathfInternal); +DO_TYPEDEF(0x03D047B8, CompatibilitySwitches); +DO_TYPEDEF(0x03D06FB8, EmptyArray_1_Type_); +DO_TYPEDEF(0x03D070B8, List_1_System_Reflection_MethodBase_); +DO_TYPEDEF(0x03D07250, SpookyHash); +DO_TYPEDEF(0x03D08208, ParameterizedStrings); +DO_TYPEDEF(0x03D082A8, TermInfoStrings__Enum__Array); +DO_TYPEDEF(0x03D08B80, List_1_System_Reflection_CustomAttributeData_); +DO_TYPEDEF(0x03D08A50, ICollection_1_System_Reflection_CustomAttributeData_); +DO_TYPEDEF(0x03D08C70, Dictionary_2_System_Type_System_MonoCustomAttrs_AttributeInfo_); +DO_TYPEDEF(0x03D09478, Console_WindowsConsole); +DO_TYPEDEF(0x03D09740, Environment); +DO_TYPEDEF(0x03D09BA8, MonoBtlsX509StoreManager); +DO_TYPEDEF(0x03D0A210, MonoBtlsUtils); +DO_TYPEDEF(0x03D0B6D8, SceneManager); +DO_TYPEDEF(0x03D0BB98, FormatterServices); +DO_TYPEDEF(0x03D0BF00, Dns); +DO_TYPEDEF(0x03D0C4A0, MemoryProfiler); +DO_TYPEDEF(0x03D0C4E0, PhraseRecognitionSystem); +DO_TYPEDEF(0x03D0C5F8, SpriteAtlasManager); +DO_TYPEDEF(0x03D0C9E0, SystemClock); +DO_TYPEDEF(0x03D0CE60, LowLevelListWithIList_1_System_Exception_); +DO_TYPEDEF(0x03D0CEF0, TextAsset_EncodingUtility); +DO_TYPEDEF(0x03D0CF18, KeyValuePair_2_System_Byte_System_Text_Encoding___Array); +DO_TYPEDEF(0x03D0D050, StackTraceUtility); +DO_TYPEDEF(0x03D0D3D8, IPointerEventInternal); +DO_TYPEDEF(0x03D0D4D0, IMouseEventInternal); +DO_TYPEDEF(0x03D0D560, AttributeHelperEngine); +DO_TYPEDEF(0x03D0D580, DisallowMultipleComponent__Array); +DO_TYPEDEF(0x03D0D578, ExecuteInEditMode__Array); +DO_TYPEDEF(0x03D0DB00, UnsafeNclNativeMethods_HttpApi_HTTP_RESPONSE_HEADER_ID); +DO_TYPEDEF(0x03D0DB10, UnsafeNclNativeMethods_HttpApi_HTTP_REQUEST_HEADER_ID); +DO_TYPEDEF(0x03D0DB48, WebExceptionMapping); +DO_TYPEDEF(0x03D0DCD0, List_1_System_Net_IPAddress_); +DO_TYPEDEF(0x03D0DCB0, NclUtilities); +DO_TYPEDEF(0x03D0DCE8, NclConstants); +DO_TYPEDEF(0x03D0DEA8, ValidationHelper); +DO_TYPEDEF(0x03D0E210, Func_2_System_Text_RegularExpressions_Regex_System_Collections_Generic_IEnumerable_1_); +DO_TYPEDEF(0x03D0EE78, Func_2_System_Collections_Generic_List_1_Boolean_); +DO_TYPEDEF(0x03D0EE88, Func_2_System_Text_RegularExpressions_Regex_Boolean_); +DO_TYPEDEF(0x03D103C8, Func_2_String_System_Text_RegularExpressions_Regex_); +DO_TYPEDEF(0x03D10478, Config); +DO_TYPEDEF(0x03D107F8, LinkedList_1_System_WeakReference_); +DO_TYPEDEF(0x03D10920, GlobalLog); +DO_TYPEDEF(0x03D10A08, HeaderInfo__Array); +DO_TYPEDEF(0x03D10AB0, WebUtility_HtmlEntities); +DO_TYPEDEF(0x03D10AC0, WebUtility); +DO_TYPEDEF(0x03D10AF0, TimerThread); +DO_TYPEDEF(0x03D10B08, Func_2_IAsyncResult_System_IO_Stream_); +DO_TYPEDEF(0x03D10B48, IAutoWebProxy); +DO_TYPEDEF(0x03D10B58, Func_1_System_Threading_Tasks_Task_1__1); +DO_TYPEDEF(0x03D10B80, Func_1_System_Threading_Tasks_Task_1__2); +DO_TYPEDEF(0x03D110A8, RenderPipelineManager); +DO_TYPEDEF(0x03D114C8, OnDemandRendering); +DO_TYPEDEF(0x03D11920, Action_2_Int32_Photon_Bolt_BoltEntity_); +DO_TYPEDEF(0x03D11670, Tuple_3_System_Threading_Tasks_Task_System_Threading_Tasks_Task_System_Threading_Tasks_TaskContinuation_); +DO_TYPEDEF(0x03D11698, IEnumerable_1_UnityEngine_Networking_PlayerConnection_PlayerEditorConnectionEvents_MessageTypeSubscribers_); +DO_TYPEDEF(0x03D11A20, Func_2_UnityEngine_Networking_PlayerConnection_PlayerEditorConnectionEvents_MessageTypeSubscribers_Boolean_); +DO_TYPEDEF(0x03D11B08, GameObjectExtensions); +DO_TYPEDEF(0x03D11E40, BoltNetwork); +DO_TYPEDEF(0x03D11EB0, Predicate_1_UnityEngine_Events_BaseInvokableCall_); +DO_TYPEDEF(0x03D11E78, Addressables); +DO_TYPEDEF(0x03D11FB8, CachedInvokableCall_1_System_String_); +DO_TYPEDEF(0x03D12198, ThreadPoolGlobals); +DO_TYPEDEF(0x03D12410, PropertyID); +DO_TYPEDEF(0x03D124B8, AmplifyOcclusionCommon); +DO_TYPEDEF(0x03D12578, ScriptableRuntimeReflectionSystemSettings); +DO_TYPEDEF(0x03D12598, Lightmapping); +DO_TYPEDEF(0x03D125D8, ICamera); +DO_TYPEDEF(0x03D12850, List_1_System_Reflection_PropertyInfo_); +DO_TYPEDEF(0x03D12950, Serializer); +DO_TYPEDEF(0x03D12988, RandomID); +DO_TYPEDEF(0x03D129C8, TypeUtility); +DO_TYPEDEF(0x03D12C40, Action_4_Photon_Bolt_BoltEntity_Photon_Bolt_BoltEntity_Single_Boolean_); +DO_TYPEDEF(0x03D12E88, Action_3_UnityEngine_GameObject_String_Boolean_); +DO_TYPEDEF(0x03D131D0, Action_3_Photon_Bolt_BoltEntity_Photon_Bolt_BoltEntity_Boolean_); +DO_TYPEDEF(0x03D132D0, Func_2_IAsyncResult_System_Security_Cryptography_X509Certificates_X509Certificate2_); +DO_TYPEDEF(0x03D134A8, Func_2_IAsyncResult_System_Net_HttpListenerContext_); +DO_TYPEDEF(0x03D13508, HttpListenerContext__Array); +DO_TYPEDEF(0x03D13600, List_1_System_Net_HttpConnection_); +DO_TYPEDEF(0x03D13680, Func_4_String_AsyncCallback_Object_IAsyncResult_); +DO_TYPEDEF(0x03D13688, Func_2_IAsyncResult_System_Net_IPAddress_); +DO_TYPEDEF(0x03D136D8, Func_2_IAsyncResult_System_Net_IPHostEntry_); +DO_TYPEDEF(0x03D136D0, Func_4_System_Net_IPAddress_AsyncCallback_Object_IAsyncResult_); +DO_TYPEDEF(0x03D139F8, UnsafeNclNativeMethods_HttpApi); +DO_TYPEDEF(0x03D13B08, ICloseEx); +DO_TYPEDEF(0x03D13C00, GUITargetAttribute); +DO_TYPEDEF(0x03D13C28, GUIStateObjects); +DO_TYPEDEF(0x03D13C58, Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_UnityEngine_GUIStyle_); +DO_TYPEDEF(0x03D13D88, Action_4_Opsive_UltimateCharacterController_Items_Item_Int32_Boolean_Boolean_); +DO_TYPEDEF(0x03D13E40, Action_2_Opsive_UltimateCharacterController_Items_Item_Boolean_); +DO_TYPEDEF(0x03D141B0, Action_2_Opsive_UltimateCharacterController_Items_Item_Int32_); +DO_TYPEDEF(0x03D14200, GUIUtility); +DO_TYPEDEF(0x03D14320, Action_3_UnityEngine_XR_XRNode_Int32_Boolean_); +DO_TYPEDEF(0x03D142D0, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_Hold_StopAction_); +DO_TYPEDEF(0x03D142D8, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_MoveInPlace_HandMovementOptions_); +DO_TYPEDEF(0x03D142E0, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_FlickReload_StartFlickDirection_); +DO_TYPEDEF(0x03D14DD0, MovementUtility); +DO_TYPEDEF(0x03D15598, Action_1_SurvivalDemonBehaviour_); +DO_TYPEDEF(0x03D15540, Action_2_String_Photon_Bolt_BoltEntity_); +DO_TYPEDEF(0x03D15568, Action_1_SpiderBehaviour_); +DO_TYPEDEF(0x03D15560, Action_1_GhostBehaviour_); +DO_TYPEDEF(0x03D15548, Action_2_UnityEngine_GameObject_Single_); +DO_TYPEDEF(0x03D15558, Action_2_UnityEngine_GameObject_Int32_); +DO_TYPEDEF(0x03D15528, Action_2_UnityEngine_GameObject_Photon_Bolt_BoltEntity_); +DO_TYPEDEF(0x03D15588, Action_1_CorpseBehaviour_); +DO_TYPEDEF(0x03D15580, Action_1_Photon_Bolt_BoltEntity_); +DO_TYPEDEF(0x03D15550, Action_2_Photon_Bolt_BoltEntity_Single_); +DO_TYPEDEF(0x03D15530, Action_2_Photon_Bolt_BoltEntity_Photon_Bolt_BoltEntity_); +DO_TYPEDEF(0x03D15578, Action_1_BoarBehaviour_); +DO_TYPEDEF(0x03D15570, Action_1_Opsive_UltimateCharacterController_Traits_Attribute_); +DO_TYPEDEF(0x03D15538, Action_2_Opsive_UltimateCharacterController_Character_Abilities_Ability_Boolean_); +DO_TYPEDEF(0x03D14FF8, BoltPrefabs); +DO_TYPEDEF(0x03D15C80, SendMouseEvents); +DO_TYPEDEF(0x03D163F8, IEnumerator_1_System_Net_ServicePoint_); +DO_TYPEDEF(0x03D16658, Action_3_Opsive_UltimateCharacterController_Items_Item_Opsive_Shared_Inventory_IItemIdentifier_Int32_); +DO_TYPEDEF(0x03D16660, Action_2_Opsive_Shared_Inventory_IItemIdentifier_Int32_); +DO_TYPEDEF(0x03D16648, Action_4_Opsive_Shared_Inventory_IItemIdentifier_Int32_Boolean_Boolean_); +DO_TYPEDEF(0x03D16848, List_1_Opsive_UltimateCharacterController_Camera_ViewTypes_ViewType_); +DO_TYPEDEF(0x03D168A0, ViewTypeBuilder); +DO_TYPEDEF(0x03D169E0, List_1_System_Net_MonoChunkParser_Chunk_); +DO_TYPEDEF(0x03D16D68, List_1_Opsive_UltimateCharacterController_Character_MovementTypes_MovementType_); +DO_TYPEDEF(0x03D170D8, Func_1_System_Threading_Tasks_Task_1__3); +DO_TYPEDEF(0x03D171C8, Func_2_System_Threading_CancellationToken_System_Threading_Tasks_Task_1__2); +DO_TYPEDEF(0x03D17330, Func_2_System_Threading_CancellationToken_System_Threading_Tasks_Task_1__3); +DO_TYPEDEF(0x03D17860, List_1_Opsive_UltimateCharacterController_Character_Abilities_Items_ItemAbility_); +DO_TYPEDEF(0x03D178C8, HttpValidationHelpers); +DO_TYPEDEF(0x03D17C80, AssetInfo); +DO_TYPEDEF(0x03D19328, Action_2_UnityEngine_RaycastHit_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact_); +DO_TYPEDEF(0x03D19880, Action_2_Opsive_UltimateCharacterController_Character_MovementTypes_MovementType_Boolean_); +DO_TYPEDEF(0x03D19CA8, List_1_Opsive_UltimateCharacterController_Demo_DemoManager_DemoZone_); +DO_TYPEDEF(0x03D1A538, SystemNetworkInterface); +DO_TYPEDEF(0x03D1A680, Func_2_IAsyncResult_System_Net_NetworkInformation_UnicastIPAddressInformationCollection_); +DO_TYPEDEF(0x03D1A7D0, Action_2_String_UnityEngine_GameObject_); +DO_TYPEDEF(0x03D1B0C0, TrackedPoseDriverDataDescription); +DO_TYPEDEF(0x03D1B180, PoseDataSource); +DO_TYPEDEF(0x03D1B200, Func_2_JumpScare_Int32_); +DO_TYPEDEF(0x03D1BC78, Func_2_f_AnonymousType3_2_Boolean_); +DO_TYPEDEF(0x03D1BEB0, Action_2_UnityEngine_GameObject_String_); +DO_TYPEDEF(0x03D1C0D8, List_1_Opsive_UltimateCharacterController_Character_Effects_Effect_); +DO_TYPEDEF(0x03D1C6A0, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_MovementInterpolationMode_); +DO_TYPEDEF(0x03D1C6B0, Preset_GenericDelegate_1_System_String_); +DO_TYPEDEF(0x03D1C6B8, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Audio_AudioClipSet_); +DO_TYPEDEF(0x03D1C6C0, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_PathMovementType_); +DO_TYPEDEF(0x03D1C6D0, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_ShootableWeapon_ReloadClipType_); +DO_TYPEDEF(0x03D1C6D8, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact_); +DO_TYPEDEF(0x03D1C700, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_ShootableWeapon_FireType_); +DO_TYPEDEF(0x03D1C770, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_ShootableWeapon_FireMode_); +DO_TYPEDEF(0x03D1C778, Preset_GenericDelegate_1_UnityEngine_AnimationCurve_); +DO_TYPEDEF(0x03D1C788, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Input_PlayerInput_LookVectorMode_); +DO_TYPEDEF(0x03D1C790, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_MagicItem_CastUseType_); +DO_TYPEDEF(0x03D1C798, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Utility_ObjectSpawnInfo_); +DO_TYPEDEF(0x03D1C7B0, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_MagicItem_CastInterruptSource_); +DO_TYPEDEF(0x03D1C7C0, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_ShootableWeapon_ProjectileVisiblityType_); +DO_TYPEDEF(0x03D1C7C8, Preset_GenericDelegate_1_UnityEngine_Object_); +DO_TYPEDEF(0x03D1C7D0, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Ability_AbilityStopType_); +DO_TYPEDEF(0x03D1C7E0, Preset_GenericDelegate_1_UnityEngine_Transform_); +DO_TYPEDEF(0x03D1C7F8, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_DetectObjectAbilityBase_ObjectDetectionMode_); +DO_TYPEDEF(0x03D1C800, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_PathDirection_); +DO_TYPEDEF(0x03D1C808, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Items_Reload_AutoReloadType_); +DO_TYPEDEF(0x03D1C810, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_RestrictPosition_RestrictionType_); +DO_TYPEDEF(0x03D1C818, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_MagicItem_CastDirection_); +DO_TYPEDEF(0x03D1C828, Preset_GenericDelegate_1_UnityEngine_GameObject_); +DO_TYPEDEF(0x03D1C838, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Utility_AnimationEventTrigger_); +DO_TYPEDEF(0x03D1C848, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Ability_AbilityStartType_); +DO_TYPEDEF(0x03D1C850, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Traits_Attribute_AutoUpdateValue_); +DO_TYPEDEF(0x03D1C858, Preset_GenericDelegate_1_UnityEngine_ForceMode_); +DO_TYPEDEF(0x03D1C860, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Ability_AbilityBoolOverride_); +DO_TYPEDEF(0x03D1C868, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Items_EquipUnequip_AutoEquipType_); +DO_TYPEDEF(0x03D1C870, Preset_GenericDelegate_1_UnityEngine_HumanBodyBones_); +DO_TYPEDEF(0x03D1C878, Preset_GenericDelegate_1_UnityEngine_QueryTriggerInteraction_); +DO_TYPEDEF(0x03D1C898, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_FootstepPlacementMode_); +DO_TYPEDEF(0x03D1C940, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Traits_Respawner_SpawnPositioningMode_); +DO_TYPEDEF(0x03D1C948, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_RotateInterpolationMode_); +DO_TYPEDEF(0x03D1C938, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Effects_Shake_ShakeTarget_); +DO_TYPEDEF(0x03D1C920, Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Game_SpawnPoint_SpawnShape_); +DO_TYPEDEF(0x03D1D1C0, IInteractableMessage); +DO_TYPEDEF(0x03D1DA08, Convert); +DO_TYPEDEF(0x03D1DC10, DevourColors); +DO_TYPEDEF(0x03D1E0E8, TerrainCallbacks); +DO_TYPEDEF(0x03D1E390, TextGeneratorUtilities); +DO_TYPEDEF(0x03D1E3C8, TextShaderUtilities); +DO_TYPEDEF(0x03D1E638, Action_1_System_Threading_Tasks_Task_1__16); +DO_TYPEDEF(0x03D1E920, MaterialManager); +DO_TYPEDEF(0x03D207A0, Dictionary_2_System_Int64_UnityEngine_Material_); +DO_TYPEDEF(0x03D1ECB0, ICollection_1_System_ArraySegment_1_); +DO_TYPEDEF(0x03D1ECF8, Socket_StateTaskCompletionSource_3_SocketFlags_System_Net_EndPoint_SocketReceiveMessageFromResult_); +DO_TYPEDEF(0x03D1ED30, Socket_StateTaskCompletionSource_2_System_Net_EndPoint_SocketReceiveFromResult_); +DO_TYPEDEF(0x03D232A0, Tuple_2_System_Threading_Tasks_TaskCompletionSource_1_Byte_); +DO_TYPEDEF(0x03D23350, Tuple_3_System_Threading_Tasks_TaskCompletionSource_1_Memory_1_Byte_Byte_); +DO_TYPEDEF(0x03D1EE40, TaskCompletionSource_1_System_Net_Sockets_Socket_); +DO_TYPEDEF(0x03D1F108, Win32_SOCKADDR); +DO_TYPEDEF(0x03D1F200, Win32_IP_ADAPTER_MULTICAST_ADDRESS); +DO_TYPEDEF(0x03D1F220, Win32_IP_ADAPTER_GATEWAY_ADDRESS); +DO_TYPEDEF(0x03D1F240, PointerType); +DO_TYPEDEF(0x03D1F380, List_1_System_Net_IPEndPoint_); +DO_TYPEDEF(0x03D1F3F0, Win32_IP_ADAPTER_DNS_SERVER_ADDRESS); +DO_TYPEDEF(0x03D1F3E8, Win32_IP_ADAPTER_ANYCAST_ADDRESS); +DO_TYPEDEF(0x03D1F440, Win32_IP_ADAPTER_WINS_SERVER_ADDRESS); +DO_TYPEDEF(0x03D1F478, Func_1_System_Net_NetworkInformation_PingReply_); +DO_TYPEDEF(0x03D1F488, Action_1_System_Threading_Tasks_Task_1__17); +DO_TYPEDEF(0x03D1F4C8, Action_1_Microsoft_MixedReality_OpenXR_SubsystemController_); +DO_TYPEDEF(0x03D1F550, EventArgsCache); +DO_TYPEDEF(0x03D1F5F8, IPoolableObject_Internal); +DO_TYPEDEF(0x03D1F680, Func_2_System_Reflection_FieldInfo_UnityEngine_Rendering_VolumeParameter_); +DO_TYPEDEF(0x03D1F700, IAstarPooledObject); +DO_TYPEDEF(0x03D1F8D8, VMLJRlNegYHbCiCRxBNeWlBQKGKz); +DO_TYPEDEF(0x03D1FCE0, Predicate_1_LanguageUniqueFont_); +DO_TYPEDEF(0x03D1FDE0, MessageHelpers); +DO_TYPEDEF(0x03D1FE30, ReInput); +DO_TYPEDEF(0x03D20260, Predicate_1_TownLocation_); +DO_TYPEDEF(0x03D20878, FontAssetUtilities); +DO_TYPEDEF(0x03D20B50, TextResourceManager); +DO_TYPEDEF(0x03D20FF0, Dictionary_2_System_Int64_UnityEngine_TextCore_Text_FontAsset_); +DO_TYPEDEF(0x03D20EA8, HairDesignerEvents); +DO_TYPEDEF(0x03D21590, Action_1_Opsive_UltimateCharacterController_Items_Item_); +DO_TYPEDEF(0x03D214E0, Action_2_Opsive_UltimateCharacterController_Items_Actions_IUsableItem_Boolean_); +DO_TYPEDEF(0x03D21608, IGrenadeItemPerspectiveProperties); +DO_TYPEDEF(0x03D22268, WindowsPrincipal); +DO_TYPEDEF(0x03D22668, XrReferenceSpaceType__Enum_1__Array); +DO_TYPEDEF(0x03D22AD0, Func_5_Byte_Int32_AsyncCallback_Object_IAsyncResult_); +DO_TYPEDEF(0x03D22AE0, Func_6_Byte_Int32_System_Net_IPEndPoint_AsyncCallback_Object_IAsyncResult_); +DO_TYPEDEF(0x03D22DF0, Func_2_IAsyncResult_System_Net_Sockets_TcpClient_); +DO_TYPEDEF(0x03D232A8, Predicate_1_OutfitPreviewLoader_OutfitPreviewAvatar_); +DO_TYPEDEF(0x03D233B8, Tuple_3_System_Net_Sockets_Socket_AwaitableSocketAsyncEventArgs_Action_1_Object_Object_); +DO_TYPEDEF(0x03D233D8, Tuple_2_Action_1_Object_Object_); +DO_TYPEDEF(0x03D23630, ICanvasRaycastFilter); +DO_TYPEDEF(0x03D23680, IMeshModifier); +DO_TYPEDEF(0x03D236F8, HashSet_1_UnityEngine_UI_Text_); +DO_TYPEDEF(0x03D236B0, FontUpdateTracker); +DO_TYPEDEF(0x03D23720, Dictionary_2_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text_); +DO_TYPEDEF(0x03D23780, CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_Canvas_); +DO_TYPEDEF(0x03D23B10, DefaultControls); +DO_TYPEDEF(0x03D23E98, IReadOnlyCollection_1_Opsive_Shared_Inventory_IItemCategoryIdentifier_); +DO_TYPEDEF(0x03D241E8, Action_2_Opsive_UltimateCharacterController_Traits_AttributeModifier_Boolean_); +DO_TYPEDEF(0x03D24278, BoltCore); +DO_TYPEDEF(0x03D24F08, MailHeaderInfo); +DO_TYPEDEF(0x03D25088, MailBnfHelper); +DO_TYPEDEF(0x03D25488, Action_2_Opsive_UltimateCharacterController_Camera_ViewTypes_ViewType_Boolean_); +DO_TYPEDEF(0x03D25640, Action_1_Opsive_UltimateCharacterController_Camera_CameraController_); diff --git a/appdata/il2cpp-types.h b/appdata/il2cpp-types.h index 0235212..b4a45a8 100644 --- a/appdata/il2cpp-types.h +++ b/appdata/il2cpp-types.h @@ -1,5 +1,5 @@ // Generated C++ file by Il2CppInspector - http://www.djkaty.com - https://github.com/djkaty -// Target Unity version: 2021.2.0+ +// Target Unity version: 2021.2.0 - 2021.2.99 #if defined(_GHIDRA_) || defined(_IDA_) typedef unsigned __int8 uint8_t; @@ -12,16 +12,26 @@ typedef __int32 int32_t; typedef __int64 int64_t; #endif -#if defined(_GHIDRA_) -typedef __int64 size_t; -typedef size_t intptr_t; -typedef size_t uintptr_t; +#ifdef _IDACLANG_ +typedef unsigned char uint8_t; +typedef unsigned short uint16_t; +typedef unsigned int uint32_t; +typedef unsigned long uint64_t; +typedef char int8_t; +typedef short int16_t; +typedef int int32_t; +typedef long int64_t; #endif -#if !defined(_GHIDRA_) && !defined(_IDA_) +#if defined(_GHIDRA_) || defined(_IDACLANG_) +typedef int64_t intptr_t; +typedef uint64_t uintptr_t; +typedef uint64_t size_t; +#endif + +#if !defined(_GHIDRA_) && !defined(_IDA_) && !defined(_IDACLANG_) #define _CPLUSPLUS_ #endif - // ****************************************************************************** // * IL2CPP internal types // ****************************************************************************** @@ -2450,7 +2460,7 @@ typedef struct Il2CppByReference #pragma warning(disable : 4369) #pragma warning(disable : 4309) #pragma warning(disable : 4359) -#if !defined(_GHIDRA_) && !defined(_IDA_) +#if !defined(_GHIDRA_) && !defined(_IDA_) && !defined(_IDACLANG_) namespace app { #endif @@ -2991,6 +3001,19 @@ struct Type__Array { struct Type *vector[32]; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_System_Int32_ { + int32_t hashCode; + int32_t next; + struct String *key; + int32_t value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_System_Int32___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_System_Int32___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_System_Int32_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_System_Int32___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_System_Int32___Array *_entries; @@ -3010,19 +3033,6 @@ struct Dictionary_2_System_String_System_Int32_ { struct Dictionary_2_System_String_System_Int32___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_System_Int32_ { - int32_t hashCode; - int32_t next; - struct String *key; - int32_t value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_System_Int32___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_System_Int32___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_System_Int32_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_String_System_Int32___Array { struct Dictionary_2_TKey_TValue_Entry_System_String_System_Int32___Array__Class *klass; MonitorData *monitor; @@ -3721,6 +3731,75 @@ struct NumberStyles__Enum__Boxed { #endif }; +#if defined(_CPLUSPLUS_) +enum class CalendarId__Enum : uint16_t { + UNINITIALIZED_VALUE = 0x0000, + GREGORIAN = 0x0001, + GREGORIAN_US = 0x0002, + JAPAN = 0x0003, + TAIWAN = 0x0004, + KOREA = 0x0005, + HIJRI = 0x0006, + THAI = 0x0007, + HEBREW = 0x0008, + GREGORIAN_ME_FRENCH = 0x0009, + GREGORIAN_ARABIC = 0x000a, + GREGORIAN_XLIT_ENGLISH = 0x000b, + GREGORIAN_XLIT_FRENCH = 0x000c, + JULIAN = 0x000d, + JAPANESELUNISOLAR = 0x000e, + CHINESELUNISOLAR = 0x000f, + SAKA = 0x0010, + LUNAR_ETO_CHN = 0x0011, + LUNAR_ETO_KOR = 0x0012, + LUNAR_ETO_ROKUYOU = 0x0013, + KOREANLUNISOLAR = 0x0014, + TAIWANLUNISOLAR = 0x0015, + PERSIAN = 0x0016, + UMALQURA = 0x0017, + LAST_CALENDAR = 0x0017, +}; + +#else +enum CalendarId__Enum { + CalendarId__Enum_UNINITIALIZED_VALUE = 0x0000, + CalendarId__Enum_GREGORIAN = 0x0001, + CalendarId__Enum_GREGORIAN_US = 0x0002, + CalendarId__Enum_JAPAN = 0x0003, + CalendarId__Enum_TAIWAN = 0x0004, + CalendarId__Enum_KOREA = 0x0005, + CalendarId__Enum_HIJRI = 0x0006, + CalendarId__Enum_THAI = 0x0007, + CalendarId__Enum_HEBREW = 0x0008, + CalendarId__Enum_GREGORIAN_ME_FRENCH = 0x0009, + CalendarId__Enum_GREGORIAN_ARABIC = 0x000a, + CalendarId__Enum_GREGORIAN_XLIT_ENGLISH = 0x000b, + CalendarId__Enum_GREGORIAN_XLIT_FRENCH = 0x000c, + CalendarId__Enum_JULIAN = 0x000d, + CalendarId__Enum_JAPANESELUNISOLAR = 0x000e, + CalendarId__Enum_CHINESELUNISOLAR = 0x000f, + CalendarId__Enum_SAKA = 0x0010, + CalendarId__Enum_LUNAR_ETO_CHN = 0x0011, + CalendarId__Enum_LUNAR_ETO_KOR = 0x0012, + CalendarId__Enum_LUNAR_ETO_ROKUYOU = 0x0013, + CalendarId__Enum_KOREANLUNISOLAR = 0x0014, + CalendarId__Enum_TAIWANLUNISOLAR = 0x0015, + CalendarId__Enum_PERSIAN = 0x0016, + CalendarId__Enum_UMALQURA = 0x0017, + CalendarId__Enum_LAST_CALENDAR = 0x0017, +}; + +#endif +struct CalendarId__Enum__Boxed { + struct CalendarId__Enum__Class *klass; + MonitorData *monitor; + #if defined(_CPLUSPLUS_) + CalendarId__Enum value; + #else + uint16_t value; + #endif +}; + #if defined(_CPLUSPLUS_) enum class DateTimeFormatFlags__Enum : int32_t { None = 0x00000000, @@ -3756,6 +3835,105 @@ struct DateTimeFormatFlags__Enum__Boxed { #endif }; +#if defined(_CPLUSPLUS_) +enum class TokenType__Enum : int32_t { + NumberToken = 0x00000001, + YearNumberToken = 0x00000002, + Am = 0x00000003, + Pm = 0x00000004, + MonthToken = 0x00000005, + EndOfString = 0x00000006, + DayOfWeekToken = 0x00000007, + TimeZoneToken = 0x00000008, + EraToken = 0x00000009, + DateWordToken = 0x0000000a, + UnknownToken = 0x0000000b, + HebrewNumber = 0x0000000c, + JapaneseEraToken = 0x0000000d, + TEraToken = 0x0000000e, + IgnorableSymbol = 0x0000000f, + SEP_Unk = 0x00000100, + SEP_End = 0x00000200, + SEP_Space = 0x00000300, + SEP_Am = 0x00000400, + SEP_Pm = 0x00000500, + SEP_Date = 0x00000600, + SEP_Time = 0x00000700, + SEP_YearSuff = 0x00000800, + SEP_MonthSuff = 0x00000900, + SEP_DaySuff = 0x00000a00, + SEP_HourSuff = 0x00000b00, + SEP_MinuteSuff = 0x00000c00, + SEP_SecondSuff = 0x00000d00, + SEP_LocalTimeMark = 0x00000e00, + SEP_DateOrOffset = 0x00000f00, + RegularTokenMask = 0x000000ff, + SeparatorTokenMask = 0x0000ff00, +}; + +#else +enum TokenType__Enum { + TokenType__Enum_NumberToken = 0x00000001, + TokenType__Enum_YearNumberToken = 0x00000002, + TokenType__Enum_Am = 0x00000003, + TokenType__Enum_Pm = 0x00000004, + TokenType__Enum_MonthToken = 0x00000005, + TokenType__Enum_EndOfString = 0x00000006, + TokenType__Enum_DayOfWeekToken = 0x00000007, + TokenType__Enum_TimeZoneToken = 0x00000008, + TokenType__Enum_EraToken = 0x00000009, + TokenType__Enum_DateWordToken = 0x0000000a, + TokenType__Enum_UnknownToken = 0x0000000b, + TokenType__Enum_HebrewNumber = 0x0000000c, + TokenType__Enum_JapaneseEraToken = 0x0000000d, + TokenType__Enum_TEraToken = 0x0000000e, + TokenType__Enum_IgnorableSymbol = 0x0000000f, + TokenType__Enum_SEP_Unk = 0x00000100, + TokenType__Enum_SEP_End = 0x00000200, + TokenType__Enum_SEP_Space = 0x00000300, + TokenType__Enum_SEP_Am = 0x00000400, + TokenType__Enum_SEP_Pm = 0x00000500, + TokenType__Enum_SEP_Date = 0x00000600, + TokenType__Enum_SEP_Time = 0x00000700, + TokenType__Enum_SEP_YearSuff = 0x00000800, + TokenType__Enum_SEP_MonthSuff = 0x00000900, + TokenType__Enum_SEP_DaySuff = 0x00000a00, + TokenType__Enum_SEP_HourSuff = 0x00000b00, + TokenType__Enum_SEP_MinuteSuff = 0x00000c00, + TokenType__Enum_SEP_SecondSuff = 0x00000d00, + TokenType__Enum_SEP_LocalTimeMark = 0x00000e00, + TokenType__Enum_SEP_DateOrOffset = 0x00000f00, + TokenType__Enum_RegularTokenMask = 0x000000ff, + TokenType__Enum_SeparatorTokenMask = 0x0000ff00, +}; + +#endif +struct TokenType__Enum__Boxed { + struct TokenType__Enum__Class *klass; + MonitorData *monitor; + #if defined(_CPLUSPLUS_) + TokenType__Enum value; + #else + int32_t value; + #endif +}; + +struct __declspec(align(8)) DateTimeFormatInfo_TokenHashValue__Fields { + struct String *tokenString; + #if defined(_CPLUSPLUS_) + TokenType__Enum tokenType; + #else + int32_t tokenType; + #endif + int32_t tokenValue; +}; + +struct DateTimeFormatInfo_TokenHashValue { + struct DateTimeFormatInfo_TokenHashValue__Class *klass; + MonitorData *monitor; + struct DateTimeFormatInfo_TokenHashValue__Fields fields; +}; + struct __declspec(align(8)) DateTimeFormatInfo__Fields { struct CultureData *_cultureData; struct String *_name; @@ -3813,6 +3991,34 @@ struct DateTimeFormatInfo { struct DateTimeFormatInfo__Fields fields; }; +struct __declspec(align(8)) CalendarData__Fields { + struct String *sNativeName; + struct String__Array *saShortDates; + struct String__Array *saYearMonths; + struct String__Array *saLongDates; + struct String *sMonthDay; + struct String__Array *saEraNames; + struct String__Array *saAbbrevEraNames; + struct String__Array *saAbbrevEnglishEraNames; + struct String__Array *saDayNames; + struct String__Array *saAbbrevDayNames; + struct String__Array *saSuperShortDayNames; + struct String__Array *saMonthNames; + struct String__Array *saAbbrevMonthNames; + struct String__Array *saMonthGenitiveNames; + struct String__Array *saAbbrevMonthGenitiveNames; + struct String__Array *saLeapYearMonthNames; + int32_t iTwoDigitYearMax; + int32_t iCurrentEra; + bool bUseUserOverrides; +}; + +struct CalendarData { + struct CalendarData__Class *klass; + MonitorData *monitor; + struct CalendarData__Fields fields; +}; + struct __declspec(align(8)) CultureData__Fields { struct String *sAM1159; struct String *sPM2359; @@ -3842,34 +4048,6 @@ struct CultureData { struct CultureData__Fields fields; }; -struct __declspec(align(8)) CalendarData__Fields { - struct String *sNativeName; - struct String__Array *saShortDates; - struct String__Array *saYearMonths; - struct String__Array *saLongDates; - struct String *sMonthDay; - struct String__Array *saEraNames; - struct String__Array *saAbbrevEraNames; - struct String__Array *saAbbrevEnglishEraNames; - struct String__Array *saDayNames; - struct String__Array *saAbbrevDayNames; - struct String__Array *saSuperShortDayNames; - struct String__Array *saMonthNames; - struct String__Array *saAbbrevMonthNames; - struct String__Array *saMonthGenitiveNames; - struct String__Array *saAbbrevMonthGenitiveNames; - struct String__Array *saLeapYearMonthNames; - int32_t iTwoDigitYearMax; - int32_t iCurrentEra; - bool bUseUserOverrides; -}; - -struct CalendarData { - struct CalendarData__Class *klass; - MonitorData *monitor; - struct CalendarData__Fields fields; -}; - struct CalendarData__Array { struct CalendarData__Array__Class *klass; MonitorData *monitor; @@ -3997,6 +4175,19 @@ struct ISimpleCollator { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_System_Globalization_ISimpleCollator_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct ISimpleCollator *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_System_Globalization_ISimpleCollator___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_System_Globalization_ISimpleCollator___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_System_Globalization_ISimpleCollator_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_System_Globalization_ISimpleCollator___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_System_Globalization_ISimpleCollator___Array *_entries; @@ -4016,19 +4207,6 @@ struct Dictionary_2_System_String_System_Globalization_ISimpleCollator_ { struct Dictionary_2_System_String_System_Globalization_ISimpleCollator___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_System_Globalization_ISimpleCollator_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct ISimpleCollator *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_System_Globalization_ISimpleCollator___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_System_Globalization_ISimpleCollator___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_System_Globalization_ISimpleCollator_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_String_System_Globalization_ISimpleCollator___Array { struct Dictionary_2_TKey_TValue_Entry_System_String_System_Globalization_ISimpleCollator___Array__Class *klass; MonitorData *monitor; @@ -4228,75 +4406,6 @@ struct CalendarWeekRule__Enum__Boxed { #endif }; -#if defined(_CPLUSPLUS_) -enum class CalendarId__Enum : uint16_t { - UNINITIALIZED_VALUE = 0x0000, - GREGORIAN = 0x0001, - GREGORIAN_US = 0x0002, - JAPAN = 0x0003, - TAIWAN = 0x0004, - KOREA = 0x0005, - HIJRI = 0x0006, - THAI = 0x0007, - HEBREW = 0x0008, - GREGORIAN_ME_FRENCH = 0x0009, - GREGORIAN_ARABIC = 0x000a, - GREGORIAN_XLIT_ENGLISH = 0x000b, - GREGORIAN_XLIT_FRENCH = 0x000c, - JULIAN = 0x000d, - JAPANESELUNISOLAR = 0x000e, - CHINESELUNISOLAR = 0x000f, - SAKA = 0x0010, - LUNAR_ETO_CHN = 0x0011, - LUNAR_ETO_KOR = 0x0012, - LUNAR_ETO_ROKUYOU = 0x0013, - KOREANLUNISOLAR = 0x0014, - TAIWANLUNISOLAR = 0x0015, - PERSIAN = 0x0016, - UMALQURA = 0x0017, - LAST_CALENDAR = 0x0017, -}; - -#else -enum CalendarId__Enum { - CalendarId__Enum_UNINITIALIZED_VALUE = 0x0000, - CalendarId__Enum_GREGORIAN = 0x0001, - CalendarId__Enum_GREGORIAN_US = 0x0002, - CalendarId__Enum_JAPAN = 0x0003, - CalendarId__Enum_TAIWAN = 0x0004, - CalendarId__Enum_KOREA = 0x0005, - CalendarId__Enum_HIJRI = 0x0006, - CalendarId__Enum_THAI = 0x0007, - CalendarId__Enum_HEBREW = 0x0008, - CalendarId__Enum_GREGORIAN_ME_FRENCH = 0x0009, - CalendarId__Enum_GREGORIAN_ARABIC = 0x000a, - CalendarId__Enum_GREGORIAN_XLIT_ENGLISH = 0x000b, - CalendarId__Enum_GREGORIAN_XLIT_FRENCH = 0x000c, - CalendarId__Enum_JULIAN = 0x000d, - CalendarId__Enum_JAPANESELUNISOLAR = 0x000e, - CalendarId__Enum_CHINESELUNISOLAR = 0x000f, - CalendarId__Enum_SAKA = 0x0010, - CalendarId__Enum_LUNAR_ETO_CHN = 0x0011, - CalendarId__Enum_LUNAR_ETO_KOR = 0x0012, - CalendarId__Enum_LUNAR_ETO_ROKUYOU = 0x0013, - CalendarId__Enum_KOREANLUNISOLAR = 0x0014, - CalendarId__Enum_TAIWANLUNISOLAR = 0x0015, - CalendarId__Enum_PERSIAN = 0x0016, - CalendarId__Enum_UMALQURA = 0x0017, - CalendarId__Enum_LAST_CALENDAR = 0x0017, -}; - -#endif -struct CalendarId__Enum__Boxed { - struct CalendarId__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - CalendarId__Enum value; - #else - uint16_t value; - #endif -}; - struct CalendarId__Enum__Array { struct CalendarId__Enum__Array__Class *klass; MonitorData *monitor; @@ -4344,105 +4453,6 @@ struct DateTimeStyles__Enum__Boxed { #endif }; -#if defined(_CPLUSPLUS_) -enum class TokenType__Enum : int32_t { - NumberToken = 0x00000001, - YearNumberToken = 0x00000002, - Am = 0x00000003, - Pm = 0x00000004, - MonthToken = 0x00000005, - EndOfString = 0x00000006, - DayOfWeekToken = 0x00000007, - TimeZoneToken = 0x00000008, - EraToken = 0x00000009, - DateWordToken = 0x0000000a, - UnknownToken = 0x0000000b, - HebrewNumber = 0x0000000c, - JapaneseEraToken = 0x0000000d, - TEraToken = 0x0000000e, - IgnorableSymbol = 0x0000000f, - SEP_Unk = 0x00000100, - SEP_End = 0x00000200, - SEP_Space = 0x00000300, - SEP_Am = 0x00000400, - SEP_Pm = 0x00000500, - SEP_Date = 0x00000600, - SEP_Time = 0x00000700, - SEP_YearSuff = 0x00000800, - SEP_MonthSuff = 0x00000900, - SEP_DaySuff = 0x00000a00, - SEP_HourSuff = 0x00000b00, - SEP_MinuteSuff = 0x00000c00, - SEP_SecondSuff = 0x00000d00, - SEP_LocalTimeMark = 0x00000e00, - SEP_DateOrOffset = 0x00000f00, - RegularTokenMask = 0x000000ff, - SeparatorTokenMask = 0x0000ff00, -}; - -#else -enum TokenType__Enum { - TokenType__Enum_NumberToken = 0x00000001, - TokenType__Enum_YearNumberToken = 0x00000002, - TokenType__Enum_Am = 0x00000003, - TokenType__Enum_Pm = 0x00000004, - TokenType__Enum_MonthToken = 0x00000005, - TokenType__Enum_EndOfString = 0x00000006, - TokenType__Enum_DayOfWeekToken = 0x00000007, - TokenType__Enum_TimeZoneToken = 0x00000008, - TokenType__Enum_EraToken = 0x00000009, - TokenType__Enum_DateWordToken = 0x0000000a, - TokenType__Enum_UnknownToken = 0x0000000b, - TokenType__Enum_HebrewNumber = 0x0000000c, - TokenType__Enum_JapaneseEraToken = 0x0000000d, - TokenType__Enum_TEraToken = 0x0000000e, - TokenType__Enum_IgnorableSymbol = 0x0000000f, - TokenType__Enum_SEP_Unk = 0x00000100, - TokenType__Enum_SEP_End = 0x00000200, - TokenType__Enum_SEP_Space = 0x00000300, - TokenType__Enum_SEP_Am = 0x00000400, - TokenType__Enum_SEP_Pm = 0x00000500, - TokenType__Enum_SEP_Date = 0x00000600, - TokenType__Enum_SEP_Time = 0x00000700, - TokenType__Enum_SEP_YearSuff = 0x00000800, - TokenType__Enum_SEP_MonthSuff = 0x00000900, - TokenType__Enum_SEP_DaySuff = 0x00000a00, - TokenType__Enum_SEP_HourSuff = 0x00000b00, - TokenType__Enum_SEP_MinuteSuff = 0x00000c00, - TokenType__Enum_SEP_SecondSuff = 0x00000d00, - TokenType__Enum_SEP_LocalTimeMark = 0x00000e00, - TokenType__Enum_SEP_DateOrOffset = 0x00000f00, - TokenType__Enum_RegularTokenMask = 0x000000ff, - TokenType__Enum_SeparatorTokenMask = 0x0000ff00, -}; - -#endif -struct TokenType__Enum__Boxed { - struct TokenType__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - TokenType__Enum value; - #else - int32_t value; - #endif -}; - -struct __declspec(align(8)) DateTimeFormatInfo_TokenHashValue__Fields { - struct String *tokenString; - #if defined(_CPLUSPLUS_) - TokenType__Enum tokenType; - #else - int32_t tokenType; - #endif - int32_t tokenValue; -}; - -struct DateTimeFormatInfo_TokenHashValue { - struct DateTimeFormatInfo_TokenHashValue__Class *klass; - MonitorData *monitor; - struct DateTimeFormatInfo_TokenHashValue__Fields fields; -}; - struct DateTimeFormatInfo_TokenHashValue__Array { struct DateTimeFormatInfo_TokenHashValue__Array__Class *klass; MonitorData *monitor; @@ -4481,6 +4491,19 @@ struct TextInfo { struct TextInfo__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Globalization_CultureInfo_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct CultureInfo *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Globalization_CultureInfo___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Globalization_CultureInfo___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Globalization_CultureInfo_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_System_Globalization_CultureInfo___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Globalization_CultureInfo___Array *_entries; @@ -4500,19 +4523,6 @@ struct Dictionary_2_System_Int32_System_Globalization_CultureInfo_ { struct Dictionary_2_System_Int32_System_Globalization_CultureInfo___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Globalization_CultureInfo_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct CultureInfo *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Globalization_CultureInfo___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Globalization_CultureInfo___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Globalization_CultureInfo_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Globalization_CultureInfo___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Globalization_CultureInfo___Array__Class *klass; MonitorData *monitor; @@ -4593,6 +4603,19 @@ struct IEnumerable_1_System_Globalization_CultureInfo_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_System_Globalization_CultureInfo_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct CultureInfo *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_System_Globalization_CultureInfo___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_System_Globalization_CultureInfo___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_System_Globalization_CultureInfo_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_System_Globalization_CultureInfo___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_System_Globalization_CultureInfo___Array *_entries; @@ -4612,19 +4635,6 @@ struct Dictionary_2_System_String_System_Globalization_CultureInfo_ { struct Dictionary_2_System_String_System_Globalization_CultureInfo___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_System_Globalization_CultureInfo_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct CultureInfo *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_System_Globalization_CultureInfo___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_System_Globalization_CultureInfo___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_System_Globalization_CultureInfo_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_String_System_Globalization_CultureInfo___Array { struct Dictionary_2_TKey_TValue_Entry_System_String_System_Globalization_CultureInfo___Array__Class *klass; MonitorData *monitor; @@ -5008,6 +5018,17 @@ struct TaskScheduler { struct TaskScheduler__Fields fields; }; +struct Ephemeron { + struct Object *key; + struct Object *value; +}; + +struct Ephemeron__Boxed { + struct Ephemeron__Class *klass; + MonitorData *monitor; + struct Ephemeron fields; +}; + struct __declspec(align(8)) ConditionalWeakTable_2_System_Threading_Tasks_TaskScheduler_System_Object___Fields { struct Ephemeron__Array *data; struct Object *_lock; @@ -5020,17 +5041,6 @@ struct ConditionalWeakTable_2_System_Threading_Tasks_TaskScheduler_System_Object struct ConditionalWeakTable_2_System_Threading_Tasks_TaskScheduler_System_Object___Fields fields; }; -struct Ephemeron { - struct Object *key; - struct Object *value; -}; - -struct Ephemeron__Boxed { - struct Ephemeron__Class *klass; - MonitorData *monitor; - struct Ephemeron fields; -}; - struct Ephemeron__Array { struct Ephemeron__Array__Class *klass; MonitorData *monitor; @@ -5070,6 +5080,36 @@ struct UnobservedTaskExceptionEventArgs { struct UnobservedTaskExceptionEventArgs__Fields fields; }; +struct __declspec(align(8)) StackFrame__Fields { + int32_t ilOffset; + int32_t nativeOffset; + int64_t methodAddress; + uint32_t methodIndex; + struct MethodBase *methodBase; + struct String *fileName; + int32_t lineNumber; + int32_t columnNumber; + struct String *internalMethodName; +}; + +struct StackFrame { + struct StackFrame__Class *klass; + MonitorData *monitor; + struct StackFrame__Fields fields; +}; + +struct __declspec(align(8)) StackTrace__Fields { + struct StackFrame__Array *frames; + struct StackTrace__Array *captured_traces; + bool debug_info; +}; + +struct StackTrace { + struct StackTrace__Class *klass; + MonitorData *monitor; + struct StackTrace__Fields fields; +}; + struct __declspec(align(8)) Exception__Fields { struct String *_className; struct String *_message; @@ -5169,36 +5209,6 @@ struct IEnumerator_1_System_Object_ { MonitorData *monitor; }; -struct __declspec(align(8)) StackTrace__Fields { - struct StackFrame__Array *frames; - struct StackTrace__Array *captured_traces; - bool debug_info; -}; - -struct StackTrace { - struct StackTrace__Class *klass; - MonitorData *monitor; - struct StackTrace__Fields fields; -}; - -struct __declspec(align(8)) StackFrame__Fields { - int32_t ilOffset; - int32_t nativeOffset; - int64_t methodAddress; - uint32_t methodIndex; - struct MethodBase *methodBase; - struct String *fileName; - int32_t lineNumber; - int32_t columnNumber; - struct String *internalMethodName; -}; - -struct StackFrame { - struct StackFrame__Class *klass; - MonitorData *monitor; - struct StackFrame__Fields fields; -}; - struct StackFrame__Array { struct StackFrame__Array__Class *klass; MonitorData *monitor; @@ -5403,6 +5413,19 @@ struct SendOrPostCallback { struct SendOrPostCallback__Fields fields; }; +struct __declspec(align(8)) Header__Fields { + struct String *HeaderNamespace; + bool MustUnderstand; + struct String *Name; + struct Object *Value; +}; + +struct Header { + struct Header__Class *klass; + MonitorData *monitor; + struct Header__Fields fields; +}; + struct __declspec(align(8)) LogicalCallContext__Fields { struct Hashtable *m_Datastore; struct CallContextRemotingData *m_RemotingData; @@ -5419,6 +5442,18 @@ struct LogicalCallContext { struct LogicalCallContext__Fields fields; }; +struct Hashtable_bucket { + struct Object *key; + struct Object *val; + int32_t hash_coll; +}; + +struct Hashtable_bucket__Boxed { + struct Hashtable_bucket__Class *klass; + MonitorData *monitor; + struct Hashtable_bucket fields; +}; + struct __declspec(align(8)) Hashtable__Fields { struct Hashtable_bucket__Array *_buckets; int32_t _count; @@ -5439,18 +5474,6 @@ struct Hashtable { struct Hashtable__Fields fields; }; -struct Hashtable_bucket { - struct Object *key; - struct Object *val; - int32_t hash_coll; -}; - -struct Hashtable_bucket__Boxed { - struct Hashtable_bucket__Class *klass; - MonitorData *monitor; - struct Hashtable_bucket fields; -}; - struct Hashtable_bucket__Array { struct Hashtable_bucket__Array__Class *klass; MonitorData *monitor; @@ -5501,19 +5524,6 @@ struct IPrincipal { MonitorData *monitor; }; -struct __declspec(align(8)) Header__Fields { - struct String *HeaderNamespace; - bool MustUnderstand; - struct String *Name; - struct Object *Value; -}; - -struct Header { - struct Header__Class *klass; - MonitorData *monitor; - struct Header__Fields fields; -}; - struct Header__Array { struct Header__Array__Class *klass; MonitorData *monitor; @@ -5533,6 +5543,19 @@ struct IllogicalCallContext { struct IllogicalCallContext__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_Threading_IAsyncLocal_System_Object_ { + int32_t hashCode; + int32_t next; + struct IAsyncLocal *key; + struct Object *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Threading_IAsyncLocal_System_Object___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Threading_IAsyncLocal_System_Object___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Threading_IAsyncLocal_System_Object_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Threading_IAsyncLocal_System_Object___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Threading_IAsyncLocal_System_Object___Array *_entries; @@ -5552,19 +5575,6 @@ struct Dictionary_2_System_Threading_IAsyncLocal_System_Object_ { struct Dictionary_2_System_Threading_IAsyncLocal_System_Object___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Threading_IAsyncLocal_System_Object_ { - int32_t hashCode; - int32_t next; - struct IAsyncLocal *key; - struct Object *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Threading_IAsyncLocal_System_Object___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Threading_IAsyncLocal_System_Object___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Threading_IAsyncLocal_System_Object_ fields; -}; - struct IAsyncLocal { struct IAsyncLocal__Class *klass; MonitorData *monitor; @@ -5799,6 +5809,17 @@ struct TaskExceptionHolder { struct TaskExceptionHolder__Fields fields; }; +struct __declspec(align(8)) ExceptionDispatchInfo__Fields { + struct Exception *m_Exception; + struct Object *m_stackTrace; +}; + +struct ExceptionDispatchInfo { + struct ExceptionDispatchInfo__Class *klass; + MonitorData *monitor; + struct ExceptionDispatchInfo__Fields fields; +}; + struct __declspec(align(8)) LowLevelList_1_System_Runtime_ExceptionServices_ExceptionDispatchInfo___Fields { struct ExceptionDispatchInfo__Array *_items; int32_t _size; @@ -5821,17 +5842,6 @@ struct LowLevelListWithIList_1_System_Runtime_ExceptionServices_ExceptionDispatc struct LowLevelListWithIList_1_System_Runtime_ExceptionServices_ExceptionDispatchInfo___Fields fields; }; -struct __declspec(align(8)) ExceptionDispatchInfo__Fields { - struct Exception *m_Exception; - struct Object *m_stackTrace; -}; - -struct ExceptionDispatchInfo { - struct ExceptionDispatchInfo__Class *klass; - MonitorData *monitor; - struct ExceptionDispatchInfo__Fields fields; -}; - struct ExceptionDispatchInfo__Array { struct ExceptionDispatchInfo__Array__Class *klass; MonitorData *monitor; @@ -5845,6 +5855,17 @@ struct IEnumerator_1_System_Runtime_ExceptionServices_ExceptionDispatchInfo_ { MonitorData *monitor; }; +struct __declspec(align(8)) SparselyPopulatedArray_1_CancellationCallbackInfo___Fields { + struct SparselyPopulatedArrayFragment_1_CancellationCallbackInfo_ *_head; + struct SparselyPopulatedArrayFragment_1_CancellationCallbackInfo_ *_tail; +}; + +struct SparselyPopulatedArray_1_CancellationCallbackInfo_ { + struct SparselyPopulatedArray_1_CancellationCallbackInfo___Class *klass; + MonitorData *monitor; + struct SparselyPopulatedArray_1_CancellationCallbackInfo___Fields fields; +}; + struct __declspec(align(8)) CancellationTokenSource__Fields { struct ManualResetEvent *_kernelEvent; struct SparselyPopulatedArray_1_CancellationCallbackInfo___Array *_registeredCallbacksLists; @@ -5861,15 +5882,17 @@ struct CancellationTokenSource { struct CancellationTokenSource__Fields fields; }; -struct __declspec(align(8)) SparselyPopulatedArray_1_CancellationCallbackInfo___Fields { - struct SparselyPopulatedArrayFragment_1_CancellationCallbackInfo_ *_head; - struct SparselyPopulatedArrayFragment_1_CancellationCallbackInfo_ *_tail; +struct __declspec(align(8)) CancellationCallbackInfo__Fields { + struct Action_1_Object_ *Callback; + struct Object *StateForCallback; + struct ExecutionContext *TargetExecutionContext; + struct CancellationTokenSource *CancellationTokenSource; }; -struct SparselyPopulatedArray_1_CancellationCallbackInfo_ { - struct SparselyPopulatedArray_1_CancellationCallbackInfo___Class *klass; +struct CancellationCallbackInfo { + struct CancellationCallbackInfo__Class *klass; MonitorData *monitor; - struct SparselyPopulatedArray_1_CancellationCallbackInfo___Fields fields; + struct CancellationCallbackInfo__Fields fields; }; struct __declspec(align(8)) SparselyPopulatedArrayFragment_1_CancellationCallbackInfo___Fields { @@ -5885,19 +5908,6 @@ struct SparselyPopulatedArrayFragment_1_CancellationCallbackInfo_ { struct SparselyPopulatedArrayFragment_1_CancellationCallbackInfo___Fields fields; }; -struct __declspec(align(8)) CancellationCallbackInfo__Fields { - struct Action_1_Object_ *Callback; - struct Object *StateForCallback; - struct ExecutionContext *TargetExecutionContext; - struct CancellationTokenSource *CancellationTokenSource; -}; - -struct CancellationCallbackInfo { - struct CancellationCallbackInfo__Class *klass; - MonitorData *monitor; - struct CancellationCallbackInfo__Fields fields; -}; - struct ContextCallback__Fields { struct MulticastDelegate__Fields _; }; @@ -6130,6 +6140,19 @@ struct Predicate_1_Object_ { struct Predicate_1_Object___Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Threading_Tasks_Task_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct Task *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Threading_Tasks_Task___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Threading_Tasks_Task___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Threading_Tasks_Task_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_System_Threading_Tasks_Task___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Threading_Tasks_Task___Array *_entries; @@ -6149,19 +6172,6 @@ struct Dictionary_2_System_Int32_System_Threading_Tasks_Task_ { struct Dictionary_2_System_Int32_System_Threading_Tasks_Task___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Threading_Tasks_Task_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct Task *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Threading_Tasks_Task___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Threading_Tasks_Task___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Threading_Tasks_Task_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Threading_Tasks_Task___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Threading_Tasks_Task___Array__Class *klass; MonitorData *monitor; @@ -7480,6 +7490,21 @@ struct ICollection_1_System_Int32___Class { struct ICollection_1_System_Int32___VTable vtable; }; +struct Int32___VTable { +}; + +struct Int32___StaticFields { +}; + +struct Int32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Int32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Int32___VTable vtable; +}; + struct KeyValuePair_2_System_String_System_Int32___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -8523,6 +8548,21 @@ struct ICollection_1_System_Globalization_ISimpleCollator___Class { struct ICollection_1_System_Globalization_ISimpleCollator___VTable vtable; }; +struct ISimpleCollator___VTable { +}; + +struct ISimpleCollator___StaticFields { +}; + +struct ISimpleCollator___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ISimpleCollator___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ISimpleCollator___VTable vtable; +}; + struct KeyValuePair_2_System_String_System_Globalization_ISimpleCollator___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -8845,6 +8885,21 @@ struct CalendarWeekRule__Enum__Class { struct CalendarWeekRule__Enum__VTable vtable; }; +struct DateTime___VTable { +}; + +struct DateTime___StaticFields { +}; + +struct DateTime___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DateTime___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DateTime___VTable vtable; +}; + struct PersianCalendar__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -9440,6 +9495,21 @@ struct ICollection_1_System_Globalization_CultureInfo___Class { struct ICollection_1_System_Globalization_CultureInfo___VTable vtable; }; +struct CultureInfo___VTable { +}; + +struct CultureInfo___StaticFields { +}; + +struct CultureInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CultureInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CultureInfo___VTable vtable; +}; + struct KeyValuePair_2_System_Int32_System_Globalization_CultureInfo___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -10104,6 +10174,21 @@ struct MethodBase__Array__Class { struct MethodBase__Array__VTable vtable; }; +struct Object___VTable { +}; + +struct Object___StaticFields { +}; + +struct Object___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Object___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Object___VTable vtable; +}; + struct Boolean__Array__VTable { }; @@ -10153,6 +10238,21 @@ struct ParameterModifier__Array__Class { struct ParameterModifier__Array__VTable vtable; }; +struct Object__1__VTable { +}; + +struct Object__1__StaticFields { +}; + +struct Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Object__1__VTable vtable; +}; + struct PropertyAttributes__Enum__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -13439,6 +13539,21 @@ struct ICollection_1_System_Threading_Tasks_Task___Class { struct ICollection_1_System_Threading_Tasks_Task___VTable vtable; }; +struct Task___VTable { +}; + +struct Task___StaticFields { +}; + +struct Task___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Task___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Task___VTable vtable; +}; + struct KeyValuePair_2_System_Int32_System_Threading_Tasks_Task___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -15018,6 +15133,21 @@ struct MethodInfo_1__Array__Class { struct MethodInfo_1__Array__VTable vtable; }; +struct Type___VTable { +}; + +struct Type___StaticFields { +}; + +struct Type___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Type___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Type___VTable vtable; +}; + struct IEnumerable_1_System_Type___VTable { VirtualInvokeData GetEnumerator; }; @@ -16449,6 +16579,21 @@ struct StringBuilder__Class { struct StringBuilder__VTable vtable; }; +struct Int64___VTable { +}; + +struct Int64___StaticFields { +}; + +struct Int64___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Int64___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Int64___VTable vtable; +}; + struct Interop_Kernel32_TIME_DYNAMIC_ZONE_INFORMATION_StandardName_e_FixedBuffer { uint16_t FixedElementField; }; @@ -16609,6 +16754,21 @@ struct Interop_Kernel32_TIME_DYNAMIC_ZONE_INFORMATION__Class { struct Interop_Kernel32_TIME_DYNAMIC_ZONE_INFORMATION__VTable vtable; }; +struct Interop_Kernel32_TIME_DYNAMIC_ZONE_INFORMATION___VTable { +}; + +struct Interop_Kernel32_TIME_DYNAMIC_ZONE_INFORMATION___StaticFields { +}; + +struct Interop_Kernel32_TIME_DYNAMIC_ZONE_INFORMATION___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Interop_Kernel32_TIME_DYNAMIC_ZONE_INFORMATION___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Interop_Kernel32_TIME_DYNAMIC_ZONE_INFORMATION___VTable vtable; +}; + struct Interop_Kernel32_TIME_ZONE_INFORMATION_StandardName_e_FixedBuffer { uint16_t FixedElementField; }; @@ -16702,6 +16862,21 @@ struct Interop_Kernel32_TIME_ZONE_INFORMATION__Class { struct Interop_Kernel32_TIME_ZONE_INFORMATION__VTable vtable; }; +struct Interop_Kernel32_TIME_ZONE_INFORMATION___VTable { +}; + +struct Interop_Kernel32_TIME_ZONE_INFORMATION___StaticFields { +}; + +struct Interop_Kernel32_TIME_ZONE_INFORMATION___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Interop_Kernel32_TIME_ZONE_INFORMATION___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Interop_Kernel32_TIME_ZONE_INFORMATION___VTable vtable; +}; + struct Interop_Kernel32_COPYFILE2_EXTENDED_PARAMETERS { uint32_t dwSize; uint32_t dwCopyFlags; @@ -16735,6 +16910,21 @@ struct Interop_Kernel32_COPYFILE2_EXTENDED_PARAMETERS__Class { struct Interop_Kernel32_COPYFILE2_EXTENDED_PARAMETERS__VTable vtable; }; +struct Interop_Kernel32_COPYFILE2_EXTENDED_PARAMETERS___VTable { +}; + +struct Interop_Kernel32_COPYFILE2_EXTENDED_PARAMETERS___StaticFields { +}; + +struct Interop_Kernel32_COPYFILE2_EXTENDED_PARAMETERS___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Interop_Kernel32_COPYFILE2_EXTENDED_PARAMETERS___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Interop_Kernel32_COPYFILE2_EXTENDED_PARAMETERS___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class Interop_BOOL__Enum : int32_t { FALSE = 0x00000000, @@ -16831,6 +17021,21 @@ struct Interop_Kernel32_SECURITY_ATTRIBUTES__Class { struct Interop_Kernel32_SECURITY_ATTRIBUTES__VTable vtable; }; +struct Interop_Kernel32_SECURITY_ATTRIBUTES___VTable { +}; + +struct Interop_Kernel32_SECURITY_ATTRIBUTES___StaticFields { +}; + +struct Interop_Kernel32_SECURITY_ATTRIBUTES___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Interop_Kernel32_SECURITY_ATTRIBUTES___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Interop_Kernel32_SECURITY_ATTRIBUTES___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class FileShare__Enum : int32_t { None = 0x00000000, @@ -17271,6 +17476,21 @@ struct Interop_Kernel32_WIN32_FIND_DATA__Class { struct Interop_Kernel32_WIN32_FIND_DATA__VTable vtable; }; +struct Interop_Kernel32_WIN32_FIND_DATA___VTable { +}; + +struct Interop_Kernel32_WIN32_FIND_DATA___StaticFields { +}; + +struct Interop_Kernel32_WIN32_FIND_DATA___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Interop_Kernel32_WIN32_FIND_DATA___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Interop_Kernel32_WIN32_FIND_DATA___VTable vtable; +}; + struct Interop_Kernel32_FINDEX_SEARCH_OPS__Enum__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -17329,6 +17549,21 @@ struct CharPtr__Class { struct CharPtr__VTable vtable; }; +struct String___VTable { +}; + +struct String___StaticFields { +}; + +struct String___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct String___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct String___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class Interop_Kernel32_GET_FILEEX_INFO_LEVELS__Enum : uint32_t { GetFileExInfoStandard = 0x00000000, @@ -17424,6 +17659,21 @@ struct Interop_Kernel32_WIN32_FILE_ATTRIBUTE_DATA__Class { struct Interop_Kernel32_WIN32_FILE_ATTRIBUTE_DATA__VTable vtable; }; +struct Interop_Kernel32_WIN32_FILE_ATTRIBUTE_DATA___VTable { +}; + +struct Interop_Kernel32_WIN32_FILE_ATTRIBUTE_DATA___StaticFields { +}; + +struct Interop_Kernel32_WIN32_FILE_ATTRIBUTE_DATA___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Interop_Kernel32_WIN32_FILE_ATTRIBUTE_DATA___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Interop_Kernel32_WIN32_FILE_ATTRIBUTE_DATA___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class Interop_Kernel32_FILE_INFO_BY_HANDLE_CLASS__Enum : uint32_t { FileBasicInfo = 0x00000000, @@ -17513,6 +17763,21 @@ struct Interop_Kernel32_FILE_INFO_BY_HANDLE_CLASS__Enum__Class { struct Interop_Kernel32_FILE_INFO_BY_HANDLE_CLASS__Enum__VTable vtable; }; +struct UInt32___VTable { +}; + +struct UInt32___StaticFields { +}; + +struct UInt32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UInt32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UInt32___VTable vtable; +}; + struct Interop_Kernel32_REG_TZI_FORMAT { int32_t Bias; int32_t StandardBias; @@ -17546,6 +17811,21 @@ struct Interop_Kernel32_REG_TZI_FORMAT__Class { struct Interop_Kernel32_REG_TZI_FORMAT__VTable vtable; }; +struct Interop_Kernel32_SYSTEMTIME___VTable { +}; + +struct Interop_Kernel32_SYSTEMTIME___StaticFields { +}; + +struct Interop_Kernel32_SYSTEMTIME___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Interop_Kernel32_SYSTEMTIME___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Interop_Kernel32_SYSTEMTIME___VTable vtable; +}; + struct DateTimeOffset { struct DateTime _dateTime; int16_t _offsetMinutes; @@ -17722,6 +18002,18 @@ struct Interop_NtDll_DesiredAccess__Enum__Boxed { #endif }; +struct Interop_UNICODE_STRING { + uint16_t Length; + uint16_t MaximumLength; + void *Buffer; +}; + +struct Interop_UNICODE_STRING__Boxed { + struct Interop_UNICODE_STRING__Class *klass; + MonitorData *monitor; + struct Interop_UNICODE_STRING fields; +}; + #if defined(_CPLUSPLUS_) enum class Interop_NtDll_ObjectAttributes__Enum : uint32_t { OBJ_INHERIT = 0x00000002, @@ -17772,18 +18064,6 @@ struct Interop_NtDll_OBJECT_ATTRIBUTES__Boxed { struct Interop_NtDll_OBJECT_ATTRIBUTES fields; }; -struct Interop_UNICODE_STRING { - uint16_t Length; - uint16_t MaximumLength; - void *Buffer; -}; - -struct Interop_UNICODE_STRING__Boxed { - struct Interop_UNICODE_STRING__Class *klass; - MonitorData *monitor; - struct Interop_UNICODE_STRING fields; -}; - struct Interop_UNICODE_STRINGPtr { struct Interop_UNICODE_STRINGPtr__Class *klass; MonitorData *monitor; @@ -17959,6 +18239,21 @@ struct Interop_NtDll_CreateOptions__Enum__Boxed { #endif }; +struct IntPtr___VTable { +}; + +struct IntPtr___StaticFields { +}; + +struct IntPtr___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IntPtr___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IntPtr___VTable vtable; +}; + struct Interop_NtDll_DesiredAccess__Enum__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -18088,6 +18383,21 @@ struct Interop_NtDll_OBJECT_ATTRIBUTES__Class { struct Interop_NtDll_OBJECT_ATTRIBUTES__VTable vtable; }; +struct Interop_NtDll_OBJECT_ATTRIBUTES___VTable { +}; + +struct Interop_NtDll_OBJECT_ATTRIBUTES___StaticFields { +}; + +struct Interop_NtDll_OBJECT_ATTRIBUTES___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Interop_NtDll_OBJECT_ATTRIBUTES___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Interop_NtDll_OBJECT_ATTRIBUTES___VTable vtable; +}; + struct Interop_NtDll_IO_STATUS_BLOCK_IO_STATUS__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -18126,6 +18436,21 @@ struct Interop_NtDll_IO_STATUS_BLOCK__Class { struct Interop_NtDll_IO_STATUS_BLOCK__VTable vtable; }; +struct Interop_NtDll_IO_STATUS_BLOCK___VTable { +}; + +struct Interop_NtDll_IO_STATUS_BLOCK___StaticFields { +}; + +struct Interop_NtDll_IO_STATUS_BLOCK___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Interop_NtDll_IO_STATUS_BLOCK___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Interop_NtDll_IO_STATUS_BLOCK___VTable vtable; +}; + struct Int64Ptr__VTable { }; @@ -18697,6 +19022,21 @@ struct Int64__Array__Class { struct Int64__Array__VTable vtable; }; +struct SafeRegistryHandle___VTable { +}; + +struct SafeRegistryHandle___StaticFields { +}; + +struct SafeRegistryHandle___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SafeRegistryHandle___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SafeRegistryHandle___VTable vtable; +}; + struct DataConverter { struct DataConverter__Class *klass; MonitorData *monitor; @@ -18815,6 +19155,21 @@ struct DataConverter_PackContext__Class { struct DataConverter_PackContext__VTable vtable; }; +struct Boolean___VTable { +}; + +struct Boolean___StaticFields { +}; + +struct Boolean___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Boolean___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Boolean___VTable vtable; +}; + struct IList { struct IList__Class *klass; MonitorData *monitor; @@ -18907,6 +19262,15 @@ struct ISystemDependencyProvider__Class { struct ISystemDependencyProvider__VTable vtable; }; +struct RuntimeStructs_MonoClass { +}; + +struct RuntimeStructs_MonoClass__Boxed { + struct RuntimeStructs_MonoClass__Class *klass; + MonitorData *monitor; + struct RuntimeStructs_MonoClass fields; +}; + struct RuntimeClassHandle { struct RuntimeStructs_MonoClass *value; }; @@ -18917,15 +19281,6 @@ struct RuntimeClassHandle__Boxed { struct RuntimeClassHandle fields; }; -struct RuntimeStructs_MonoClass { -}; - -struct RuntimeStructs_MonoClass__Boxed { - struct RuntimeStructs_MonoClass__Class *klass; - MonitorData *monitor; - struct RuntimeStructs_MonoClass fields; -}; - struct RuntimeStructs_MonoClassPtr { struct RuntimeStructs_MonoClassPtr__Class *klass; MonitorData *monitor; @@ -18984,16 +19339,6 @@ struct RuntimeClassHandle__Class { struct RuntimeClassHandle__VTable vtable; }; -struct RuntimeRemoteClassHandle { - struct RuntimeStructs_RemoteClass *value; -}; - -struct RuntimeRemoteClassHandle__Boxed { - struct RuntimeRemoteClassHandle__Class *klass; - MonitorData *monitor; - struct RuntimeRemoteClassHandle fields; -}; - struct RuntimeStructs_RemoteClass { void *default_vtable; void *xdomain_vtable; @@ -19008,6 +19353,16 @@ struct RuntimeStructs_RemoteClass__Boxed { struct RuntimeStructs_RemoteClass fields; }; +struct RuntimeRemoteClassHandle { + struct RuntimeStructs_RemoteClass *value; +}; + +struct RuntimeRemoteClassHandle__Boxed { + struct RuntimeRemoteClassHandle__Class *klass; + MonitorData *monitor; + struct RuntimeRemoteClassHandle fields; +}; + struct RuntimeStructs_RemoteClassPtr { struct RuntimeStructs_RemoteClassPtr__Class *klass; MonitorData *monitor; @@ -19066,16 +19421,6 @@ struct RuntimeRemoteClassHandle__Class { struct RuntimeRemoteClassHandle__VTable vtable; }; -struct RuntimeGenericParamInfoHandle { - struct RuntimeStructs_GenericParamInfo *value; -}; - -struct RuntimeGenericParamInfoHandle__Boxed { - struct RuntimeGenericParamInfoHandle__Class *klass; - MonitorData *monitor; - struct RuntimeGenericParamInfoHandle fields; -}; - struct RuntimeStructs_GenericParamInfo { struct RuntimeStructs_MonoClass *pklass; void *name; @@ -19090,6 +19435,16 @@ struct RuntimeStructs_GenericParamInfo__Boxed { struct RuntimeStructs_GenericParamInfo fields; }; +struct RuntimeGenericParamInfoHandle { + struct RuntimeStructs_GenericParamInfo *value; +}; + +struct RuntimeGenericParamInfoHandle__Boxed { + struct RuntimeGenericParamInfoHandle__Class *klass; + MonitorData *monitor; + struct RuntimeGenericParamInfoHandle fields; +}; + struct RuntimeStructs_MonoClassPtrPtr { struct RuntimeStructs_MonoClassPtrPtr__Class *klass; MonitorData *monitor; @@ -19226,16 +19581,6 @@ struct RuntimePropertyHandle__Class { struct RuntimePropertyHandle__VTable vtable; }; -struct RuntimeGPtrArrayHandle { - struct RuntimeStructs_GPtrArray *value; -}; - -struct RuntimeGPtrArrayHandle__Boxed { - struct RuntimeGPtrArrayHandle__Class *klass; - MonitorData *monitor; - struct RuntimeGPtrArrayHandle fields; -}; - struct RuntimeStructs_GPtrArray { void **data; int32_t len; @@ -19247,6 +19592,16 @@ struct RuntimeStructs_GPtrArray__Boxed { struct RuntimeStructs_GPtrArray fields; }; +struct RuntimeGPtrArrayHandle { + struct RuntimeStructs_GPtrArray *value; +}; + +struct RuntimeGPtrArrayHandle__Boxed { + struct RuntimeGPtrArrayHandle__Class *klass; + MonitorData *monitor; + struct RuntimeGPtrArrayHandle fields; +}; + struct IntPtrPtr { struct IntPtrPtr__Class *klass; MonitorData *monitor; @@ -19325,6 +19680,21 @@ struct RuntimeGPtrArrayHandle__Class { struct RuntimeGPtrArrayHandle__VTable vtable; }; +struct RuntimeGPtrArrayHandle___VTable { +}; + +struct RuntimeGPtrArrayHandle___StaticFields { +}; + +struct RuntimeGPtrArrayHandle___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RuntimeGPtrArrayHandle___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RuntimeGPtrArrayHandle___VTable vtable; +}; + struct SafeStringMarshal { struct String *str; void *marshaled_string; @@ -19426,6 +19796,21 @@ struct MonoAssemblyName__Class { struct MonoAssemblyName__VTable vtable; }; +struct MonoAssemblyName___VTable { +}; + +struct MonoAssemblyName___StaticFields { +}; + +struct MonoAssemblyName___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MonoAssemblyName___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MonoAssemblyName___VTable vtable; +}; + struct SafeGPtrArrayHandle { struct RuntimeGPtrArrayHandle handle; }; @@ -19986,19 +20371,6 @@ struct MonoPInvokeCallbackAttribute__Class { struct MonoPInvokeCallbackAttribute__VTable vtable; }; -struct __declspec(align(8)) CodePointIndexer__Fields { - struct CodePointIndexer_TableRange__Array *ranges; - int32_t TotalCount; - int32_t defaultIndex; - int32_t defaultCP; -}; - -struct CodePointIndexer { - struct CodePointIndexer__Class *klass; - MonitorData *monitor; - struct CodePointIndexer__Fields fields; -}; - struct CodePointIndexer_TableRange { int32_t Start; int32_t End; @@ -20013,6 +20385,19 @@ struct CodePointIndexer_TableRange__Boxed { struct CodePointIndexer_TableRange fields; }; +struct __declspec(align(8)) CodePointIndexer__Fields { + struct CodePointIndexer_TableRange__Array *ranges; + int32_t TotalCount; + int32_t defaultIndex; + int32_t defaultCP; +}; + +struct CodePointIndexer { + struct CodePointIndexer__Class *klass; + MonitorData *monitor; + struct CodePointIndexer__Fields fields; +}; + struct CodePointIndexer_TableRange__Array { struct CodePointIndexer_TableRange__Array__Class *klass; MonitorData *monitor; @@ -20225,6 +20610,21 @@ struct Contraction__Array__Class { struct Contraction__Array__VTable vtable; }; +struct Contraction___VTable { +}; + +struct Contraction___StaticFields { +}; + +struct Contraction___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Contraction___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Contraction___VTable vtable; +}; + struct Level2Map__Array__VTable { }; @@ -20240,6 +20640,51 @@ struct Level2Map__Array__Class { struct Level2Map__Array__VTable vtable; }; +struct Level2Map___VTable { +}; + +struct Level2Map___StaticFields { +}; + +struct Level2Map___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Level2Map___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Level2Map___VTable vtable; +}; + +struct CodePointIndexer___VTable { +}; + +struct CodePointIndexer___StaticFields { +}; + +struct CodePointIndexer___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CodePointIndexer___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CodePointIndexer___VTable vtable; +}; + +struct BytePtr___VTable { +}; + +struct BytePtr___StaticFields { +}; + +struct BytePtr___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BytePtr___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BytePtr___VTable vtable; +}; + struct MSCompatUnicodeTable_c { struct MSCompatUnicodeTable_c__Class *klass; MonitorData *monitor; @@ -20516,6 +20961,36 @@ struct SimpleCollator_Context__Class { struct SimpleCollator_Context__VTable vtable; }; +struct SimpleCollator_Context___VTable { +}; + +struct SimpleCollator_Context___StaticFields { +}; + +struct SimpleCollator_Context___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SimpleCollator_Context___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SimpleCollator_Context___VTable vtable; +}; + +struct Contraction__1__VTable { +}; + +struct Contraction__1__StaticFields { +}; + +struct Contraction__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Contraction__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Contraction__1__VTable vtable; +}; + struct SimpleCollator_PreviousInfo { int32_t Code; uint8_t *SortKey; @@ -20546,6 +21021,21 @@ struct SimpleCollator_PreviousInfo__Class { struct SimpleCollator_PreviousInfo__VTable vtable; }; +struct Byte___VTable { +}; + +struct Byte___StaticFields { +}; + +struct Byte___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Byte___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Byte___VTable vtable; +}; + struct __declspec(align(8)) ASN1__Fields { uint8_t m_nTag; struct Byte__Array *m_aValue; @@ -20578,6 +21068,21 @@ struct ASN1__Class { struct ASN1__VTable vtable; }; +struct Byte__1__VTable { +}; + +struct Byte__1__StaticFields { +}; + +struct Byte__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Byte__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Byte__1__VTable vtable; +}; + struct RandomNumberGenerator { struct RandomNumberGenerator__Class *klass; MonitorData *monitor; @@ -20977,6 +21482,18 @@ struct MD4__Class { struct MD4__VTable vtable; }; +struct __declspec(align(8)) KeySizes__Fields { + int32_t m_minSize; + int32_t m_maxSize; + int32_t m_skipSize; +}; + +struct KeySizes { + struct KeySizes__Class *klass; + MonitorData *monitor; + struct KeySizes__Fields fields; +}; + struct __declspec(align(8)) AsymmetricAlgorithm__Fields { int32_t KeySizeValue; struct KeySizes__Array *LegalKeySizesValue; @@ -20998,18 +21515,6 @@ struct RSA { struct RSA__Fields fields; }; -struct __declspec(align(8)) KeySizes__Fields { - int32_t m_minSize; - int32_t m_maxSize; - int32_t m_skipSize; -}; - -struct KeySizes { - struct KeySizes__Class *klass; - MonitorData *monitor; - struct KeySizes__Fields fields; -}; - struct KeySizes__Array { struct KeySizes__Array__Class *klass; MonitorData *monitor; @@ -22614,19 +23119,6 @@ struct SafeSocketHandle { struct SafeSocketHandle__Fields fields; }; -struct __declspec(align(8)) List_1_System_Threading_Thread___Fields { - struct Thread__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_System_Threading_Thread_ { - struct List_1_System_Threading_Thread___Class *klass; - MonitorData *monitor; - struct List_1_System_Threading_Thread___Fields fields; -}; - struct __declspec(align(8)) Thread__Fields { struct InternalThread *internal_thread; struct Object *m_ThreadStartArg; @@ -22644,6 +23136,19 @@ struct Thread { struct Thread__Fields fields; }; +struct __declspec(align(8)) List_1_System_Threading_Thread___Fields { + struct Thread__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_System_Threading_Thread_ { + struct List_1_System_Threading_Thread___Class *klass; + MonitorData *monitor; + struct List_1_System_Threading_Thread___Fields fields; +}; + struct __declspec(align(8)) LocalDataStoreMgr__Fields { struct Boolean__Array *m_SlotInfoTable; int32_t m_FirstAvailableSlot; @@ -22658,17 +23163,15 @@ struct LocalDataStoreMgr { struct LocalDataStoreMgr__Fields fields; }; -struct __declspec(align(8)) List_1_System_LocalDataStore___Fields { - struct LocalDataStore__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; +struct __declspec(align(8)) LocalDataStoreElement__Fields { + struct Object *m_value; + int64_t m_cookie; }; -struct List_1_System_LocalDataStore_ { - struct List_1_System_LocalDataStore___Class *klass; +struct LocalDataStoreElement { + struct LocalDataStoreElement__Class *klass; MonitorData *monitor; - struct List_1_System_LocalDataStore___Fields fields; + struct LocalDataStoreElement__Fields fields; }; struct __declspec(align(8)) LocalDataStore__Fields { @@ -22682,15 +23185,17 @@ struct LocalDataStore { struct LocalDataStore__Fields fields; }; -struct __declspec(align(8)) LocalDataStoreElement__Fields { - struct Object *m_value; - int64_t m_cookie; +struct __declspec(align(8)) List_1_System_LocalDataStore___Fields { + struct LocalDataStore__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; }; -struct LocalDataStoreElement { - struct LocalDataStoreElement__Class *klass; +struct List_1_System_LocalDataStore_ { + struct List_1_System_LocalDataStore___Class *klass; MonitorData *monitor; - struct LocalDataStoreElement__Fields fields; + struct List_1_System_LocalDataStore___Fields fields; }; struct LocalDataStoreElement__Array { @@ -22714,6 +23219,19 @@ struct IEnumerator_1_System_LocalDataStore_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_System_LocalDataStoreSlot_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct LocalDataStoreSlot *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_System_LocalDataStoreSlot___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_System_LocalDataStoreSlot___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_System_LocalDataStoreSlot_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_System_LocalDataStoreSlot___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_System_LocalDataStoreSlot___Array *_entries; @@ -22733,19 +23251,6 @@ struct Dictionary_2_System_String_System_LocalDataStoreSlot_ { struct Dictionary_2_System_String_System_LocalDataStoreSlot___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_System_LocalDataStoreSlot_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct LocalDataStoreSlot *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_System_LocalDataStoreSlot___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_System_LocalDataStoreSlot___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_System_LocalDataStoreSlot_ fields; -}; - struct __declspec(align(8)) LocalDataStoreSlot__Fields { struct LocalDataStoreMgr *m_mgr; int32_t m_slot; @@ -22990,6 +23495,19 @@ struct IEnumerator_1_System_Threading_Thread_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Threading_Thread_System_Diagnostics_StackTrace_ { + int32_t hashCode; + int32_t next; + struct Thread *key; + struct StackTrace *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Threading_Thread_System_Diagnostics_StackTrace___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Threading_Thread_System_Diagnostics_StackTrace___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Threading_Thread_System_Diagnostics_StackTrace_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Threading_Thread_System_Diagnostics_StackTrace___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Threading_Thread_System_Diagnostics_StackTrace___Array *_entries; @@ -23009,19 +23527,6 @@ struct Dictionary_2_System_Threading_Thread_System_Diagnostics_StackTrace_ { struct Dictionary_2_System_Threading_Thread_System_Diagnostics_StackTrace___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Threading_Thread_System_Diagnostics_StackTrace_ { - int32_t hashCode; - int32_t next; - struct Thread *key; - struct StackTrace *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Threading_Thread_System_Diagnostics_StackTrace___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Threading_Thread_System_Diagnostics_StackTrace___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Threading_Thread_System_Diagnostics_StackTrace_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Threading_Thread_System_Diagnostics_StackTrace___Array { struct Dictionary_2_TKey_TValue_Entry_System_Threading_Thread_System_Diagnostics_StackTrace___Array__Class *klass; MonitorData *monitor; @@ -23411,6 +23916,21 @@ struct ICollection_1_System_LocalDataStoreSlot___Class { struct ICollection_1_System_LocalDataStoreSlot___VTable vtable; }; +struct LocalDataStoreSlot___VTable { +}; + +struct LocalDataStoreSlot___StaticFields { +}; + +struct LocalDataStoreSlot___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct LocalDataStoreSlot___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct LocalDataStoreSlot___VTable vtable; +}; + struct KeyValuePair_2_System_String_System_LocalDataStoreSlot___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -24006,6 +24526,21 @@ struct ICollection_1_System_Diagnostics_StackTrace___Class { struct ICollection_1_System_Diagnostics_StackTrace___VTable vtable; }; +struct StackTrace___VTable { +}; + +struct StackTrace___StaticFields { +}; + +struct StackTrace___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StackTrace___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StackTrace___VTable vtable; +}; + struct KeyValuePair_2_System_Threading_Thread_System_Diagnostics_StackTrace___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -24617,6 +25152,19 @@ struct Encoding { struct Encoding__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Text_Encoding_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct Encoding *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Text_Encoding___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Text_Encoding___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Text_Encoding_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_System_Text_Encoding___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Text_Encoding___Array *_entries; @@ -24636,19 +25184,6 @@ struct Dictionary_2_System_Int32_System_Text_Encoding_ { struct Dictionary_2_System_Int32_System_Text_Encoding___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Text_Encoding_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct Encoding *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Text_Encoding___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Text_Encoding___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Text_Encoding_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Text_Encoding___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Text_Encoding___Array__Class *klass; MonitorData *monitor; @@ -25051,6 +25586,21 @@ struct ICollection_1_System_Text_Encoding___Class { struct ICollection_1_System_Text_Encoding___VTable vtable; }; +struct Encoding___VTable { +}; + +struct Encoding___StaticFields { +}; + +struct Encoding___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Encoding___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Encoding___VTable vtable; +}; + struct KeyValuePair_2_System_Int32_System_Text_Encoding___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -25250,6 +25800,21 @@ struct EncoderNLS__Class { struct EncoderNLS__VTable vtable; }; +struct CharPtr___VTable { +}; + +struct CharPtr___StaticFields { +}; + +struct CharPtr___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CharPtr___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CharPtr___VTable vtable; +}; + struct InternalEncoderBestFitFallbackBuffer__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -25677,6 +26242,21 @@ struct Encoding__Class { struct Encoding__VTable vtable; }; +struct Char___VTable { +}; + +struct Char___StaticFields { +}; + +struct Char___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Char___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Char___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class NormalizationForm__Enum : int32_t { FormC = 0x00000001, @@ -25958,6 +26538,21 @@ struct ValueListBuilder_1_System_Int32___Class { struct ValueListBuilder_1_System_Int32___VTable vtable; }; +struct ValueListBuilder_1_System_Int32__1__VTable { +}; + +struct ValueListBuilder_1_System_Int32__1__StaticFields { +}; + +struct ValueListBuilder_1_System_Int32__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ValueListBuilder_1_System_Int32__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ValueListBuilder_1_System_Int32__1__VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class String_TrimType__Enum : int32_t { Head = 0x00000000, @@ -26202,6 +26797,19 @@ struct TimeZoneInfo_AdjustmentRule__Array { struct TimeZoneInfo_AdjustmentRule *vector[32]; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_System_TimeZoneInfo_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct TimeZoneInfo *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_System_TimeZoneInfo___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_System_TimeZoneInfo___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_System_TimeZoneInfo_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_System_TimeZoneInfo___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_System_TimeZoneInfo___Array *_entries; @@ -26221,19 +26829,6 @@ struct Dictionary_2_System_String_System_TimeZoneInfo_ { struct Dictionary_2_System_String_System_TimeZoneInfo___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_System_TimeZoneInfo_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct TimeZoneInfo *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_System_TimeZoneInfo___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_System_TimeZoneInfo___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_System_TimeZoneInfo_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_String_System_TimeZoneInfo___Array { struct Dictionary_2_TKey_TValue_Entry_System_String_System_TimeZoneInfo___Array__Class *klass; MonitorData *monitor; @@ -26695,6 +27290,21 @@ struct ICollection_1_System_TimeZoneInfo___Class { struct ICollection_1_System_TimeZoneInfo___VTable vtable; }; +struct TimeZoneInfo___VTable { +}; + +struct TimeZoneInfo___StaticFields { +}; + +struct TimeZoneInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TimeZoneInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TimeZoneInfo___VTable vtable; +}; + struct KeyValuePair_2_System_String_System_TimeZoneInfo___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -26909,6 +27519,66 @@ struct TimeZoneInfo_CachedData__Class { struct TimeZoneInfo_CachedData__VTable vtable; }; +struct Interop_Kernel32_REG_TZI_FORMAT___VTable { +}; + +struct Interop_Kernel32_REG_TZI_FORMAT___StaticFields { +}; + +struct Interop_Kernel32_REG_TZI_FORMAT___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Interop_Kernel32_REG_TZI_FORMAT___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Interop_Kernel32_REG_TZI_FORMAT___VTable vtable; +}; + +struct TimeZoneInfo_TransitionTime___VTable { +}; + +struct TimeZoneInfo_TransitionTime___StaticFields { +}; + +struct TimeZoneInfo_TransitionTime___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TimeZoneInfo_TransitionTime___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TimeZoneInfo_TransitionTime___VTable vtable; +}; + +struct TimeZoneInfo_AdjustmentRule___VTable { +}; + +struct TimeZoneInfo_AdjustmentRule___StaticFields { +}; + +struct TimeZoneInfo_AdjustmentRule___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TimeZoneInfo_AdjustmentRule___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TimeZoneInfo_AdjustmentRule___VTable vtable; +}; + +struct Exception___VTable { +}; + +struct Exception___StaticFields { +}; + +struct Exception___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Exception___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Exception___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class TimeZoneInfo_TimeZoneInfoResult__Enum : int32_t { Success = 0x00000000, @@ -27005,6 +27675,21 @@ struct TimeZoneInfo_DYNAMIC_TIME_ZONE_INFORMATION__Class { struct TimeZoneInfo_DYNAMIC_TIME_ZONE_INFORMATION__VTable vtable; }; +struct TimeZoneInfo_DYNAMIC_TIME_ZONE_INFORMATION___VTable { +}; + +struct TimeZoneInfo_DYNAMIC_TIME_ZONE_INFORMATION___StaticFields { +}; + +struct TimeZoneInfo_DYNAMIC_TIME_ZONE_INFORMATION___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TimeZoneInfo_DYNAMIC_TIME_ZONE_INFORMATION___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TimeZoneInfo_DYNAMIC_TIME_ZONE_INFORMATION___VTable vtable; +}; + struct Nullable_1_Int32_ { bool hasValue; int32_t value; @@ -27096,6 +27781,21 @@ struct TimeZoneInfoOptions__Enum__Class { struct TimeZoneInfoOptions__Enum__VTable vtable; }; +struct Nullable_1_Int32__1__VTable { +}; + +struct Nullable_1_Int32__1__StaticFields { +}; + +struct Nullable_1_Int32__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Nullable_1_Int32__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Nullable_1_Int32__1__VTable vtable; +}; + struct DaylightTimeStruct { struct DateTime Start; struct DateTime End; @@ -28142,6 +28842,21 @@ struct CharEnumerator__Class { struct CharEnumerator__VTable vtable; }; +struct SByte___VTable { +}; + +struct SByte___StaticFields { +}; + +struct SByte___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SByte___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SByte___VTable vtable; +}; + struct IConvertible { struct IConvertible__Class *klass; MonitorData *monitor; @@ -28410,6 +29125,21 @@ struct DllNotFoundException__Class { struct DllNotFoundException__VTable vtable; }; +struct Double___VTable { +}; + +struct Double___StaticFields { +}; + +struct Double___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Double___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Double___VTable vtable; +}; + struct EntryPointNotFoundException__Fields { struct TypeLoadException__Fields _; }; @@ -28845,6 +29575,36 @@ struct Gen2GcCallback__Class { struct Gen2GcCallback__VTable vtable; }; +struct DateTimeFormatInfo___VTable { +}; + +struct DateTimeFormatInfo___StaticFields { +}; + +struct DateTimeFormatInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DateTimeFormatInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DateTimeFormatInfo___VTable vtable; +}; + +struct TimeSpan___VTable { +}; + +struct TimeSpan___StaticFields { +}; + +struct TimeSpan___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TimeSpan___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TimeSpan___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class ParseFlags__Enum : int32_t { HaveYear = 0x00000001, @@ -29059,6 +29819,21 @@ struct DateTimeResult__Class { struct DateTimeResult__VTable vtable; }; +struct DateTimeResult___VTable { +}; + +struct DateTimeResult___StaticFields { +}; + +struct DateTimeResult___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DateTimeResult___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DateTimeResult___VTable vtable; +}; + struct _DTString { struct ReadOnlySpan_1_Char_ Value; int32_t Index; @@ -29093,6 +29868,21 @@ struct _DTString__Class { struct _DTString__VTable vtable; }; +struct _DTString___VTable { +}; + +struct _DTString___StaticFields { +}; + +struct _DTString___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct _DTString___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct _DTString___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class DateTimeParse_DS__Enum : int32_t { BEGIN = 0x00000000, @@ -29418,6 +30208,21 @@ struct DateTimeToken__Class { struct DateTimeToken__VTable vtable; }; +struct DateTimeToken___VTable { +}; + +struct DateTimeToken___StaticFields { +}; + +struct DateTimeToken___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DateTimeToken___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DateTimeToken___VTable vtable; +}; + struct Int32Ptr__VTable { }; @@ -29490,6 +30295,66 @@ struct DateTimeRawInfo__Class { struct DateTimeRawInfo__VTable vtable; }; +struct DateTimeRawInfo___VTable { +}; + +struct DateTimeRawInfo___StaticFields { +}; + +struct DateTimeRawInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DateTimeRawInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DateTimeRawInfo___VTable vtable; +}; + +struct DateTimeStyles___VTable { +}; + +struct DateTimeStyles___StaticFields { +}; + +struct DateTimeStyles___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DateTimeStyles___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DateTimeStyles___VTable vtable; +}; + +struct DateTimeParse_TM___VTable { +}; + +struct DateTimeParse_TM___StaticFields { +}; + +struct DateTimeParse_TM___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DateTimeParse_TM___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DateTimeParse_TM___VTable vtable; +}; + +struct Calendar___VTable { +}; + +struct Calendar___StaticFields { +}; + +struct Calendar___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Calendar___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Calendar___VTable vtable; +}; + struct ParsingInfo { struct Calendar *calendar; int32_t dayOfWeek; @@ -29570,6 +30435,21 @@ struct ParsingInfo__Class { struct ParsingInfo__VTable vtable; }; +struct ParsingInfo___VTable { +}; + +struct ParsingInfo___StaticFields { +}; + +struct ParsingInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ParsingInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ParsingInfo___VTable vtable; +}; + struct DateTimeParse_c { struct DateTimeParse_c__Class *klass; MonitorData *monitor; @@ -29635,6 +30515,21 @@ struct DateTimeParse_c__Class { struct DateTimeParse_c__VTable vtable; }; +struct TokenType___VTable { +}; + +struct TokenType___StaticFields { +}; + +struct TokenType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TokenType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TokenType___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class DTSubStringType__Enum : int32_t { Unknown = 0x00000000, @@ -29739,6 +30634,21 @@ struct DTSubString__Class { struct DTSubString__VTable vtable; }; +struct Guid___VTable { +}; + +struct Guid___StaticFields { +}; + +struct Guid___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Guid___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Guid___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class Guid_GuidStyles__Enum : int32_t { None = 0x00000000, @@ -30001,6 +30911,36 @@ struct Guid_GuidResult__Class { struct Guid_GuidResult__VTable vtable; }; +struct Guid_GuidResult___VTable { +}; + +struct Guid_GuidResult___StaticFields { +}; + +struct Guid_GuidResult___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Guid_GuidResult___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Guid_GuidResult___VTable vtable; +}; + +struct Int16___VTable { +}; + +struct Int16___StaticFields { +}; + +struct Int16___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Int16___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Int16___VTable vtable; +}; + struct IndexOutOfRangeException__Fields { struct SystemException__Fields _; }; @@ -30769,6 +31709,21 @@ struct Number_NumberBuffer__Class { struct Number_NumberBuffer__VTable vtable; }; +struct Number_NumberBuffer___VTable { +}; + +struct Number_NumberBuffer___StaticFields { +}; + +struct Number_NumberBuffer___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Number_NumberBuffer___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Number_NumberBuffer___VTable vtable; +}; + struct ValueStringBuilder { struct Char__Array *_arrayToReturnToPool; struct Span_1_Char_ _chars; @@ -30800,6 +31755,66 @@ struct ValueStringBuilder__Class { struct ValueStringBuilder__VTable vtable; }; +struct ValueStringBuilder___VTable { +}; + +struct ValueStringBuilder___StaticFields { +}; + +struct ValueStringBuilder___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ValueStringBuilder___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ValueStringBuilder___VTable vtable; +}; + +struct UInt64___VTable { +}; + +struct UInt64___StaticFields { +}; + +struct UInt64___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UInt64___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UInt64___VTable vtable; +}; + +struct Decimal___VTable { +}; + +struct Decimal___StaticFields { +}; + +struct Decimal___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Decimal___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Decimal___VTable vtable; +}; + +struct Single___VTable { +}; + +struct Single___StaticFields { +}; + +struct Single___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Single___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Single___VTable vtable; +}; + struct ObjectDisposedException__Fields { struct InvalidOperationException__Fields _; struct String *_objectName; @@ -31730,6 +32745,36 @@ struct TimeoutException__Class { struct TimeoutException__VTable vtable; }; +struct String__1__VTable { +}; + +struct String__1__StaticFields { +}; + +struct String__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct String__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct String__1__VTable vtable; +}; + +struct Array___VTable { +}; + +struct Array___StaticFields { +}; + +struct Array___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Array___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Array___VTable vtable; +}; + struct Func_2_System_Reflection_AssemblyName_System_Reflection_Assembly___Fields { struct MulticastDelegate__Fields _; }; @@ -31891,6 +32936,21 @@ struct TypeInitializationException__Class { struct TypeInitializationException__VTable vtable; }; +struct UInt16___VTable { +}; + +struct UInt16___StaticFields { +}; + +struct UInt16___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UInt16___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UInt16___VTable vtable; +}; + struct UnauthorizedAccessException__Fields { struct SystemException__Fields _; }; @@ -33700,6 +34760,21 @@ struct Enum_ValuesAndNames__Class { struct Enum_ValuesAndNames__VTable vtable; }; +struct UInt64__1__VTable { +}; + +struct UInt64__1__StaticFields { +}; + +struct UInt64__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UInt64__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UInt64__1__VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class Enum_ParseFailureKind__Enum : int32_t { None = 0x00000000, @@ -33806,6 +34881,21 @@ struct Enum_EnumResult__Class { struct Enum_EnumResult__VTable vtable; }; +struct Enum_EnumResult___VTable { +}; + +struct Enum_EnumResult___StaticFields { +}; + +struct Enum_EnumResult___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Enum_EnumResult___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Enum_EnumResult___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class Exception_ExceptionMessageKind__Enum : int32_t { ThreadAbort = 0x00000001, @@ -33869,6 +34959,21 @@ struct Exception_ExceptionMessageKind__Enum__Class { struct Exception_ExceptionMessageKind__Enum__VTable vtable; }; +struct UIntPtr___VTable { +}; + +struct UIntPtr___StaticFields { +}; + +struct UIntPtr___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UIntPtr___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UIntPtr___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class GCCollectionMode__Enum : int32_t { Default = 0x00000000, @@ -33997,6 +35102,21 @@ struct StackCrawlMark__Enum__Class { struct StackCrawlMark__Enum__VTable vtable; }; +struct StackCrawlMark___VTable { +}; + +struct StackCrawlMark___StaticFields { +}; + +struct StackCrawlMark___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StackCrawlMark___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StackCrawlMark___VTable vtable; +}; + struct RuntimeType__Array { struct RuntimeType__Array__Class *klass; MonitorData *monitor; @@ -34085,6 +35205,21 @@ struct RuntimeType_MemberListType__Enum__Class { struct RuntimeType_MemberListType__Enum__VTable vtable; }; +struct RuntimeType_MemberListType___VTable { +}; + +struct RuntimeType_MemberListType___StaticFields { +}; + +struct RuntimeType_MemberListType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RuntimeType_MemberListType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RuntimeType_MemberListType___VTable vtable; +}; + struct RuntimeType_ListBuilder_1_System_Reflection_MethodInfo_ { struct MethodInfo_1__Array *_items; struct MethodInfo_1 *_item; @@ -34824,6 +35959,21 @@ struct SharedStatics__Class { struct SharedStatics__VTable vtable; }; +struct Tokenizer_StringMaker___VTable { +}; + +struct Tokenizer_StringMaker___StaticFields { +}; + +struct Tokenizer_StringMaker___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Tokenizer_StringMaker___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Tokenizer_StringMaker___VTable vtable; +}; + struct __declspec(align(8)) UnitySerializationHolder__Fields { struct Type__Array *m_instantiation; struct Int32__Array *m_elementTypes; @@ -34891,6 +36041,19 @@ struct AppDomain { struct AppDomain__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_System_Object_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct Object *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_System_Object___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_System_Object___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_System_Object_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_System_Object___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_System_Object___Array *_entries; @@ -34910,19 +36073,6 @@ struct Dictionary_2_System_String_System_Object_ { struct Dictionary_2_System_String_System_Object___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_System_Object_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct Object *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_System_Object___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_System_Object___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_System_Object_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_String_System_Object___Array { struct Dictionary_2_TKey_TValue_Entry_System_String_System_Object___Array__Class *klass; MonitorData *monitor; @@ -35368,6 +36518,11 @@ struct IMessageSink { MonitorData *monitor; }; +struct IContextProperty { + struct IContextProperty__Class *klass; + MonitorData *monitor; +}; + struct __declspec(align(8)) List_1_System_Runtime_Remoting_Contexts_IContextProperty___Fields { struct IContextProperty__Array *_items; int32_t _size; @@ -35381,11 +36536,6 @@ struct List_1_System_Runtime_Remoting_Contexts_IContextProperty_ { struct List_1_System_Runtime_Remoting_Contexts_IContextProperty___Fields fields; }; -struct IContextProperty { - struct IContextProperty__Class *klass; - MonitorData *monitor; -}; - struct IContextProperty__Array { struct IContextProperty__Array__Class *klass; MonitorData *monitor; @@ -35729,6 +36879,21 @@ struct CADMethodReturnMessage__Class { struct CADMethodReturnMessage__VTable vtable; }; +struct CADMethodReturnMessage___VTable { +}; + +struct CADMethodReturnMessage___StaticFields { +}; + +struct CADMethodReturnMessage___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CADMethodReturnMessage___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CADMethodReturnMessage___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class Environment_SpecialFolder__Enum : int32_t { MyDocuments = 0x00000005, @@ -36309,6 +37474,21 @@ struct IConsoleDriver__Class { struct IConsoleDriver__VTable vtable; }; +struct Int32Ptr___VTable { +}; + +struct Int32Ptr___StaticFields { +}; + +struct Int32Ptr___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Int32Ptr___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Int32Ptr___VTable vtable; +}; + struct __declspec(align(8)) DelegateSerializationHolder__Fields { struct Delegate *_delegate; }; @@ -38723,6 +39903,21 @@ struct ParameterizedStrings_LowLevelStack__Class { struct ParameterizedStrings_LowLevelStack__VTable vtable; }; +struct ParameterizedStrings_FormatParam___VTable { +}; + +struct ParameterizedStrings_FormatParam___StaticFields { +}; + +struct ParameterizedStrings_FormatParam___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ParameterizedStrings_FormatParam___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ParameterizedStrings_FormatParam___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class TermInfoNumbers__Enum : int32_t { Columns = 0x00000000, @@ -39082,6 +40277,11 @@ struct IEnumerator_1_System_TypeSpec_ { MonitorData *monitor; }; +struct ModifierSpec { + struct ModifierSpec__Class *klass; + MonitorData *monitor; +}; + struct __declspec(align(8)) List_1_System_ModifierSpec___Fields { struct ModifierSpec__Array *_items; int32_t _size; @@ -39095,11 +40295,6 @@ struct List_1_System_ModifierSpec_ { struct List_1_System_ModifierSpec___Fields fields; }; -struct ModifierSpec { - struct ModifierSpec__Class *klass; - MonitorData *monitor; -}; - struct ModifierSpec__Array { struct ModifierSpec__Array__Class *klass; MonitorData *monitor; @@ -39726,6 +40921,21 @@ struct ConsoleScreenBufferInfo__Class { struct ConsoleScreenBufferInfo__VTable vtable; }; +struct ConsoleScreenBufferInfo___VTable { +}; + +struct ConsoleScreenBufferInfo___StaticFields { +}; + +struct ConsoleScreenBufferInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ConsoleScreenBufferInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ConsoleScreenBufferInfo___VTable vtable; +}; + struct InputRecord { int16_t EventType; bool KeyDown; @@ -39763,6 +40973,21 @@ struct InputRecord__Class { struct InputRecord__VTable vtable; }; +struct InputRecord___VTable { +}; + +struct InputRecord___StaticFields { +}; + +struct InputRecord___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputRecord___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputRecord___VTable vtable; +}; + struct _ComObject { struct _ComObject__Class *klass; MonitorData *monitor; @@ -39900,6 +41125,21 @@ struct Decimal_DecCalc__Class { struct Decimal_DecCalc__VTable vtable; }; +struct Decimal_DecCalc___VTable { +}; + +struct Decimal_DecCalc___StaticFields { +}; + +struct Decimal_DecCalc___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Decimal_DecCalc___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Decimal_DecCalc___VTable vtable; +}; + struct Decimal_DecCalc_Buf12 { uint32_t U0; uint32_t U1; @@ -39933,6 +41173,21 @@ struct Decimal_DecCalc_Buf12__Class { struct Decimal_DecCalc_Buf12__VTable vtable; }; +struct Decimal_DecCalc_Buf12___VTable { +}; + +struct Decimal_DecCalc_Buf12___StaticFields { +}; + +struct Decimal_DecCalc_Buf12___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Decimal_DecCalc_Buf12___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Decimal_DecCalc_Buf12___VTable vtable; +}; + struct Decimal_DecCalc_Buf16 { uint32_t U0; uint32_t U1; @@ -39967,6 +41222,21 @@ struct Decimal_DecCalc_Buf16__Class { struct Decimal_DecCalc_Buf16__VTable vtable; }; +struct Decimal_DecCalc_Buf16___VTable { +}; + +struct Decimal_DecCalc_Buf16___StaticFields { +}; + +struct Decimal_DecCalc_Buf16___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Decimal_DecCalc_Buf16___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Decimal_DecCalc_Buf16___VTable vtable; +}; + struct Decimal_DecCalc_Buf24 { uint32_t U0; uint32_t U1; @@ -41254,6 +42524,21 @@ struct ExecutionContextSwitcher__Class { struct ExecutionContextSwitcher__VTable vtable; }; +struct ExecutionContextSwitcher___VTable { +}; + +struct ExecutionContextSwitcher___StaticFields { +}; + +struct ExecutionContextSwitcher___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ExecutionContextSwitcher___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ExecutionContextSwitcher___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class ExecutionContext_CaptureOptions__Enum : int32_t { None = 0x00000000, @@ -41670,6 +42955,21 @@ struct ThreadPriority__Enum__Class { struct ThreadPriority__Enum__VTable vtable; }; +struct Thread___VTable { +}; + +struct Thread___StaticFields { +}; + +struct Thread___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Thread___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Thread___VTable vtable; +}; + struct ThreadInterruptedException__Fields { struct SystemException__Fields _; }; @@ -41801,6 +43101,11 @@ struct ThreadPoolWorkQueue { struct ThreadPoolWorkQueue__Fields fields; }; +struct IThreadPoolWorkItem { + struct IThreadPoolWorkItem__Class *klass; + MonitorData *monitor; +}; + struct __declspec(align(8)) ThreadPoolWorkQueue_QueueSegment__Fields { struct IThreadPoolWorkItem__Array *nodes; int32_t indexes; @@ -41813,11 +43118,6 @@ struct ThreadPoolWorkQueue_QueueSegment { struct ThreadPoolWorkQueue_QueueSegment__Fields fields; }; -struct IThreadPoolWorkItem { - struct IThreadPoolWorkItem__Class *klass; - MonitorData *monitor; -}; - struct IThreadPoolWorkItem__Array { struct IThreadPoolWorkItem__Array__Class *klass; MonitorData *monitor; @@ -41826,16 +43126,6 @@ struct IThreadPoolWorkItem__Array { struct IThreadPoolWorkItem *vector[32]; }; -struct __declspec(align(8)) ThreadPoolWorkQueue_SparseArray_1_ThreadPoolWorkQueue_WorkStealingQueue___Fields { - struct ThreadPoolWorkQueue_WorkStealingQueue__Array *m_array; -}; - -struct ThreadPoolWorkQueue_SparseArray_1_ThreadPoolWorkQueue_WorkStealingQueue_ { - struct ThreadPoolWorkQueue_SparseArray_1_ThreadPoolWorkQueue_WorkStealingQueue___Class *klass; - MonitorData *monitor; - struct ThreadPoolWorkQueue_SparseArray_1_ThreadPoolWorkQueue_WorkStealingQueue___Fields fields; -}; - struct __declspec(align(8)) ThreadPoolWorkQueue_WorkStealingQueue__Fields { struct IThreadPoolWorkItem__Array *m_array; int32_t m_mask; @@ -41850,6 +43140,16 @@ struct ThreadPoolWorkQueue_WorkStealingQueue { struct ThreadPoolWorkQueue_WorkStealingQueue__Fields fields; }; +struct __declspec(align(8)) ThreadPoolWorkQueue_SparseArray_1_ThreadPoolWorkQueue_WorkStealingQueue___Fields { + struct ThreadPoolWorkQueue_WorkStealingQueue__Array *m_array; +}; + +struct ThreadPoolWorkQueue_SparseArray_1_ThreadPoolWorkQueue_WorkStealingQueue_ { + struct ThreadPoolWorkQueue_SparseArray_1_ThreadPoolWorkQueue_WorkStealingQueue___Class *klass; + MonitorData *monitor; + struct ThreadPoolWorkQueue_SparseArray_1_ThreadPoolWorkQueue_WorkStealingQueue___Fields fields; +}; + struct ThreadPoolWorkQueue_WorkStealingQueue__Array { struct ThreadPoolWorkQueue_WorkStealingQueue__Array__Class *klass; MonitorData *monitor; @@ -42014,6 +43314,21 @@ struct ThreadPoolWorkQueueThreadLocals__Class { struct ThreadPoolWorkQueueThreadLocals__VTable vtable; }; +struct IThreadPoolWorkItem___VTable { +}; + +struct IThreadPoolWorkItem___StaticFields { +}; + +struct IThreadPoolWorkItem___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IThreadPoolWorkItem___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IThreadPoolWorkItem___VTable vtable; +}; + struct __declspec(align(8)) QueueUserWorkItemCallback__Fields { struct WaitCallback *callback; struct ExecutionContext *context; @@ -43568,6 +44883,36 @@ struct Action_2_System_Threading_Tasks_Task_Object___Class { struct Action_2_System_Threading_Tasks_Task_Object___VTable vtable; }; +struct TaskCreationOptions___VTable { +}; + +struct TaskCreationOptions___StaticFields { +}; + +struct TaskCreationOptions___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TaskCreationOptions___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TaskCreationOptions___VTable vtable; +}; + +struct InternalTaskOptions___VTable { +}; + +struct InternalTaskOptions___StaticFields { +}; + +struct InternalTaskOptions___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InternalTaskOptions___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InternalTaskOptions___VTable vtable; +}; + struct ITaskCompletionAction { struct ITaskCompletionAction__Class *klass; MonitorData *monitor; @@ -44760,6 +46105,21 @@ struct EncodingProvider__Class { struct EncodingProvider__VTable vtable; }; +struct StringBuilder___VTable { +}; + +struct StringBuilder___StaticFields { +}; + +struct StringBuilder___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StringBuilder___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StringBuilder___VTable vtable; +}; + struct UTF32Encoding__Fields { struct Encoding__Fields _; bool _emitUTF32ByteOrderMark; @@ -45601,6 +46961,21 @@ struct Encoding_EncodingByteBuffer__Class { struct Encoding_EncodingByteBuffer__VTable vtable; }; +struct Int32__1__VTable { +}; + +struct Int32__1__StaticFields { +}; + +struct Int32__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Int32__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Int32__1__VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class NormalizationCheck__Enum : int32_t { Yes = 0x00000000, @@ -49981,6 +51356,17 @@ struct X509KeyStorageFlags__Enum__Boxed { #endif }; +struct X509Extension__Fields { + struct AsnEncodedData__Fields _; + bool _critical; +}; + +struct X509Extension { + struct X509Extension__Class *klass; + MonitorData *monitor; + struct X509Extension__Fields fields; +}; + struct __declspec(align(8)) List_1_System_Security_Cryptography_X509Certificates_X509Extension___Fields { struct X509Extension__Array *_items; int32_t _size; @@ -49994,17 +51380,6 @@ struct List_1_System_Security_Cryptography_X509Certificates_X509Extension_ { struct List_1_System_Security_Cryptography_X509Certificates_X509Extension___Fields fields; }; -struct X509Extension__Fields { - struct AsnEncodedData__Fields _; - bool _critical; -}; - -struct X509Extension { - struct X509Extension__Class *klass; - MonitorData *monitor; - struct X509Extension__Fields fields; -}; - struct X509Extension__Array { struct X509Extension__Array__Class *klass; MonitorData *monitor; @@ -51108,19 +52483,6 @@ struct GenericIdentity { struct GenericIdentity__Fields fields; }; -struct __declspec(align(8)) List_1_System_Security_Claims_Claim___Fields { - struct Claim__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_System_Security_Claims_Claim_ { - struct List_1_System_Security_Claims_Claim___Class *klass; - MonitorData *monitor; - struct List_1_System_Security_Claims_Claim___Fields fields; -}; - struct __declspec(align(8)) Claim__Fields { struct String *m_issuer; struct String *m_originalIssuer; @@ -51139,6 +52501,32 @@ struct Claim { struct Claim__Fields fields; }; +struct __declspec(align(8)) List_1_System_Security_Claims_Claim___Fields { + struct Claim__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_System_Security_Claims_Claim_ { + struct List_1_System_Security_Claims_Claim___Class *klass; + MonitorData *monitor; + struct List_1_System_Security_Claims_Claim___Fields fields; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_System_String_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct String *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_System_String___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_System_String___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_System_String_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_System_String___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_System_String___Array *_entries; @@ -51158,19 +52546,6 @@ struct Dictionary_2_System_String_System_String_ { struct Dictionary_2_System_String_System_String___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_System_String_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct String *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_System_String___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_System_String___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_System_String_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_String_System_String___Array { struct Dictionary_2_TKey_TValue_Entry_System_String_System_String___Array__Class *klass; MonitorData *monitor; @@ -53060,19 +54435,6 @@ struct RawAcl { struct RawAcl__Fields fields; }; -struct __declspec(align(8)) List_1_System_Security_AccessControl_GenericAce___Fields { - struct GenericAce__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_System_Security_AccessControl_GenericAce_ { - struct List_1_System_Security_AccessControl_GenericAce___Class *klass; - MonitorData *monitor; - struct List_1_System_Security_AccessControl_GenericAce___Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class AceFlags__Enum : uint8_t { None = 0x00, @@ -53186,6 +54548,19 @@ struct GenericAce { struct GenericAce__Fields fields; }; +struct __declspec(align(8)) List_1_System_Security_AccessControl_GenericAce___Fields { + struct GenericAce__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_System_Security_AccessControl_GenericAce_ { + struct List_1_System_Security_AccessControl_GenericAce___Class *klass; + MonitorData *monitor; + struct List_1_System_Security_AccessControl_GenericAce___Fields fields; +}; + struct KnownAce__Fields { struct GenericAce__Fields _; int32_t access_mask; @@ -57560,6 +58935,21 @@ struct CADMethodRef__Class { struct CADMethodRef__VTable vtable; }; +struct ArrayList___VTable { +}; + +struct ArrayList___StaticFields { +}; + +struct ArrayList___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ArrayList___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ArrayList___VTable vtable; +}; + struct __declspec(align(8)) ClientContextTerminatorSink__Fields { struct Context *_context; }; @@ -58066,6 +59456,21 @@ struct ISerializationSurrogate__Class { struct ISerializationSurrogate__VTable vtable; }; +struct ISurrogateSelector___VTable { +}; + +struct ISurrogateSelector___StaticFields { +}; + +struct ISurrogateSelector___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ISurrogateSelector___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ISurrogateSelector___VTable vtable; +}; + struct RemotingSurrogateSelector__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -58739,6 +60144,19 @@ struct SerializationObjectManager { struct SerializationObjectManager__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Object_ { + int32_t hashCode; + int32_t next; + struct Object *key; + struct Object *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Object___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Object___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Object_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Object_System_Object___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Object___Array *_entries; @@ -58758,19 +60176,6 @@ struct Dictionary_2_System_Object_System_Object_ { struct Dictionary_2_System_Object_System_Object___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Object_ { - int32_t hashCode; - int32_t next; - struct Object *key; - struct Object *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Object___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Object___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Object_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Object___Array { struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Object___Array__Class *klass; MonitorData *monitor; @@ -59104,6 +60509,21 @@ struct ValueTypeFixupInfo__Class { struct ValueTypeFixupInfo__VTable vtable; }; +struct RuntimeType___VTable { +}; + +struct RuntimeType___StaticFields { +}; + +struct RuntimeType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RuntimeType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RuntimeType___VTable vtable; +}; + struct __declspec(align(8)) FormatterServices_c_DisplayClass9_0__Fields { struct Type *type; }; @@ -59199,23 +60619,6 @@ struct ObjectIDGenerator__Class { struct ObjectIDGenerator__VTable vtable; }; -struct __declspec(align(8)) ObjectManager__Fields { - struct DeserializationEventHandler *m_onDeserializationHandler; - struct SerializationEventHandler *m_onDeserializedHandler; - struct ObjectHolder__Array *m_objects; - struct Object *m_topObject; - struct ObjectHolderList *m_specialFixupObjects; - int64_t m_fixupCount; - struct ISurrogateSelector *m_selector; - struct StreamingContext m_context; -}; - -struct ObjectManager { - struct ObjectManager__Class *klass; - MonitorData *monitor; - struct ObjectManager__Fields fields; -}; - struct __declspec(align(8)) ObjectHolder__Fields { struct Object *m_object; int64_t m_id; @@ -59239,15 +60642,21 @@ struct ObjectHolder { struct ObjectHolder__Fields fields; }; -struct __declspec(align(8)) FixupHolderList__Fields { - struct FixupHolder__Array *m_values; - int32_t m_count; +struct __declspec(align(8)) ObjectManager__Fields { + struct DeserializationEventHandler *m_onDeserializationHandler; + struct SerializationEventHandler *m_onDeserializedHandler; + struct ObjectHolder__Array *m_objects; + struct Object *m_topObject; + struct ObjectHolderList *m_specialFixupObjects; + int64_t m_fixupCount; + struct ISurrogateSelector *m_selector; + struct StreamingContext m_context; }; -struct FixupHolderList { - struct FixupHolderList__Class *klass; +struct ObjectManager { + struct ObjectManager__Class *klass; MonitorData *monitor; - struct FixupHolderList__Fields fields; + struct ObjectManager__Fields fields; }; struct __declspec(align(8)) FixupHolder__Fields { @@ -59262,6 +60671,17 @@ struct FixupHolder { struct FixupHolder__Fields fields; }; +struct __declspec(align(8)) FixupHolderList__Fields { + struct FixupHolder__Array *m_values; + int32_t m_count; +}; + +struct FixupHolderList { + struct FixupHolderList__Class *klass; + MonitorData *monitor; + struct FixupHolderList__Fields fields; +}; + struct FixupHolder__Array { struct FixupHolder__Array__Class *klass; MonitorData *monitor; @@ -59486,6 +60906,21 @@ struct ObjectManager__Class { struct ObjectManager__VTable vtable; }; +struct ObjectHolder___VTable { +}; + +struct ObjectHolder___StaticFields { +}; + +struct ObjectHolder___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ObjectHolder___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ObjectHolder___VTable vtable; +}; + struct __declspec(align(8)) ObjectHolderListEnumerator__Fields { bool m_isFixupEnumerator; struct ObjectHolderList *m_list; @@ -60229,18 +61664,6 @@ struct ConcurrentDictionary_2_System_String_System_Object_ { struct ConcurrentDictionary_2_System_String_System_Object___Fields fields; }; -struct __declspec(align(8)) ConcurrentDictionary_2_TKey_TValue_Tables_System_String_System_Object___Fields { - struct ConcurrentDictionary_2_TKey_TValue_Node_System_String_System_Object___Array *_buckets; - struct Object__Array *_locks; - struct Int32__Array *_countPerLock; -}; - -struct ConcurrentDictionary_2_TKey_TValue_Tables_System_String_System_Object_ { - struct ConcurrentDictionary_2_TKey_TValue_Tables_System_String_System_Object___Class *klass; - MonitorData *monitor; - struct ConcurrentDictionary_2_TKey_TValue_Tables_System_String_System_Object___Fields fields; -}; - struct __declspec(align(8)) ConcurrentDictionary_2_TKey_TValue_Node_System_String_System_Object___Fields { struct String *_key; struct Object *_value; @@ -60254,6 +61677,18 @@ struct ConcurrentDictionary_2_TKey_TValue_Node_System_String_System_Object_ { struct ConcurrentDictionary_2_TKey_TValue_Node_System_String_System_Object___Fields fields; }; +struct __declspec(align(8)) ConcurrentDictionary_2_TKey_TValue_Tables_System_String_System_Object___Fields { + struct ConcurrentDictionary_2_TKey_TValue_Node_System_String_System_Object___Array *_buckets; + struct Object__Array *_locks; + struct Int32__Array *_countPerLock; +}; + +struct ConcurrentDictionary_2_TKey_TValue_Tables_System_String_System_Object_ { + struct ConcurrentDictionary_2_TKey_TValue_Tables_System_String_System_Object___Class *klass; + MonitorData *monitor; + struct ConcurrentDictionary_2_TKey_TValue_Tables_System_String_System_Object___Fields fields; +}; + struct ConcurrentDictionary_2_TKey_TValue_Node_System_String_System_Object___Array { struct ConcurrentDictionary_2_TKey_TValue_Node_System_String_System_Object___Array__Class *klass; MonitorData *monitor; @@ -62365,6 +63800,21 @@ struct ObjectWriter__Class { struct ObjectWriter__VTable vtable; }; +struct InternalPrimitiveTypeE___VTable { +}; + +struct InternalPrimitiveTypeE___StaticFields { +}; + +struct InternalPrimitiveTypeE___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InternalPrimitiveTypeE___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InternalPrimitiveTypeE___VTable vtable; +}; + struct __declspec(align(8)) SerializationHeaderRecord__Fields { int32_t binaryFormatterMajorVersion; int32_t binaryFormatterMinorVersion; @@ -62506,6 +63956,21 @@ struct ObjectMap__Class { struct ObjectMap__VTable vtable; }; +struct SerializationInfo___VTable { +}; + +struct SerializationInfo___StaticFields { +}; + +struct SerializationInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SerializationInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SerializationInfo___VTable vtable; +}; + struct __declspec(align(8)) ObjectProgress__Fields { bool isInitial; int32_t count; @@ -62574,6 +64039,21 @@ struct ObjectProgress__Class { struct ObjectProgress__VTable vtable; }; +struct BinaryTypeEnum___VTable { +}; + +struct BinaryTypeEnum___StaticFields { +}; + +struct BinaryTypeEnum___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BinaryTypeEnum___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BinaryTypeEnum___VTable vtable; +}; + struct __declspec(align(8)) BinaryFormatter__Fields { struct ISurrogateSelector *m_surrogates; struct StreamingContext m_context; @@ -62602,6 +64082,19 @@ struct BinaryFormatter { struct BinaryFormatter__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Runtime_Serialization_Formatters_Binary_TypeInformation_ { + int32_t hashCode; + int32_t next; + struct Type *key; + struct TypeInformation *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Runtime_Serialization_Formatters_Binary_TypeInformation___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Runtime_Serialization_Formatters_Binary_TypeInformation___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Runtime_Serialization_Formatters_Binary_TypeInformation_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Type_System_Runtime_Serialization_Formatters_Binary_TypeInformation___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Runtime_Serialization_Formatters_Binary_TypeInformation___Array *_entries; @@ -62621,19 +64114,6 @@ struct Dictionary_2_System_Type_System_Runtime_Serialization_Formatters_Binary_T struct Dictionary_2_System_Type_System_Runtime_Serialization_Formatters_Binary_TypeInformation___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Runtime_Serialization_Formatters_Binary_TypeInformation_ { - int32_t hashCode; - int32_t next; - struct Type *key; - struct TypeInformation *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Runtime_Serialization_Formatters_Binary_TypeInformation___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Runtime_Serialization_Formatters_Binary_TypeInformation___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Runtime_Serialization_Formatters_Binary_TypeInformation_ fields; -}; - struct __declspec(align(8)) TypeInformation__Fields { struct String *fullTypeName; struct String *assemblyString; @@ -62942,6 +64422,21 @@ struct ICollection_1_System_Runtime_Serialization_Formatters_Binary_TypeInformat struct ICollection_1_System_Runtime_Serialization_Formatters_Binary_TypeInformation___VTable vtable; }; +struct TypeInformation___VTable { +}; + +struct TypeInformation___StaticFields { +}; + +struct TypeInformation___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TypeInformation___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TypeInformation___VTable vtable; +}; + struct KeyValuePair_2_System_Type_System_Runtime_Serialization_Formatters_Binary_TypeInformation___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -63196,6 +64691,21 @@ struct ObjectMapInfo__Class { struct ObjectMapInfo__VTable vtable; }; +struct Type__1__VTable { +}; + +struct Type__1__StaticFields { +}; + +struct Type__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Type__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Type__1__VTable vtable; +}; + struct __declspec(align(8)) ObjectReader_TypeNAssembly__Fields { struct Type *type; struct String *assemblyName; @@ -64613,6 +66123,19 @@ struct Func_1_System_Collections_Generic_Dictionary_2_ { struct Func_1_System_Collections_Generic_Dictionary_2___Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_ValueTuple_2_System_Runtime_InteropServices_ICustomMarshaler_ { + int32_t hashCode; + int32_t next; + struct ValueTuple_2_Type_String_ key; + struct ICustomMarshaler *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_ValueTuple_2_System_Runtime_InteropServices_ICustomMarshaler___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_ValueTuple_2_System_Runtime_InteropServices_ICustomMarshaler___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_ValueTuple_2_System_Runtime_InteropServices_ICustomMarshaler_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_ValueTuple_2_System_Runtime_InteropServices_ICustomMarshaler___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_ValueTuple_2_System_Runtime_InteropServices_ICustomMarshaler___Array *_entries; @@ -64632,19 +66155,6 @@ struct Dictionary_2_System_ValueTuple_2_System_Runtime_InteropServices_ICustomMa struct Dictionary_2_System_ValueTuple_2_System_Runtime_InteropServices_ICustomMarshaler___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_ValueTuple_2_System_Runtime_InteropServices_ICustomMarshaler_ { - int32_t hashCode; - int32_t next; - struct ValueTuple_2_Type_String_ key; - struct ICustomMarshaler *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_ValueTuple_2_System_Runtime_InteropServices_ICustomMarshaler___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_ValueTuple_2_System_Runtime_InteropServices_ICustomMarshaler___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_ValueTuple_2_System_Runtime_InteropServices_ICustomMarshaler_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_ValueTuple_2_System_Runtime_InteropServices_ICustomMarshaler___Array { struct Dictionary_2_TKey_TValue_Entry_System_ValueTuple_2_System_Runtime_InteropServices_ICustomMarshaler___Array__Class *klass; MonitorData *monitor; @@ -64971,6 +66481,21 @@ struct ICollection_1_System_Runtime_InteropServices_ICustomMarshaler___Class { struct ICollection_1_System_Runtime_InteropServices_ICustomMarshaler___VTable vtable; }; +struct ICustomMarshaler___VTable { +}; + +struct ICustomMarshaler___StaticFields { +}; + +struct ICustomMarshaler___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICustomMarshaler___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICustomMarshaler___VTable vtable; +}; + struct KeyValuePair_2_System_ValueTuple_2_System_Runtime_InteropServices_ICustomMarshaler___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -66575,6 +68100,21 @@ struct AsyncMethodBuilderCore_MoveNextRunner__Class { struct AsyncMethodBuilderCore_MoveNextRunner__VTable vtable; }; +struct AsyncMethodBuilderCore_MoveNextRunner___VTable { +}; + +struct AsyncMethodBuilderCore_MoveNextRunner___StaticFields { +}; + +struct AsyncMethodBuilderCore_MoveNextRunner___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct AsyncMethodBuilderCore_MoveNextRunner___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct AsyncMethodBuilderCore_MoveNextRunner___VTable vtable; +}; + struct __declspec(align(8)) AsyncMethodBuilderCore_ContinuationWrapper__Fields { struct Action *m_continuation; struct Action *m_invokeAction; @@ -67228,25 +68768,6 @@ struct IResourceReader { MonitorData *monitor; }; -struct __declspec(align(8)) Dictionary_2_System_String_System_Resources_ResourceLocator___Fields { - struct Int32__Array *_buckets; - struct Dictionary_2_TKey_TValue_Entry_System_String_System_Resources_ResourceLocator___Array *_entries; - int32_t _count; - int32_t _freeList; - int32_t _freeCount; - int32_t _version; - struct IEqualityComparer_1_System_String_ *_comparer; - struct Dictionary_2_TKey_TValue_KeyCollection_System_String_System_Resources_ResourceLocator_ *_keys; - struct Dictionary_2_TKey_TValue_ValueCollection_System_String_System_Resources_ResourceLocator_ *_values; - struct Object *_syncRoot; -}; - -struct Dictionary_2_System_String_System_Resources_ResourceLocator_ { - struct Dictionary_2_System_String_System_Resources_ResourceLocator___Class *klass; - MonitorData *monitor; - struct Dictionary_2_System_String_System_Resources_ResourceLocator___Fields fields; -}; - struct ResourceLocator { struct Object *_value; int32_t _dataPos; @@ -67271,6 +68792,25 @@ struct Dictionary_2_TKey_TValue_Entry_System_String_System_Resources_ResourceLoc struct Dictionary_2_TKey_TValue_Entry_System_String_System_Resources_ResourceLocator_ fields; }; +struct __declspec(align(8)) Dictionary_2_System_String_System_Resources_ResourceLocator___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_System_String_System_Resources_ResourceLocator___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_System_String_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_System_String_System_Resources_ResourceLocator_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_System_String_System_Resources_ResourceLocator_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_System_String_System_Resources_ResourceLocator_ { + struct Dictionary_2_System_String_System_Resources_ResourceLocator___Class *klass; + MonitorData *monitor; + struct Dictionary_2_System_String_System_Resources_ResourceLocator___Fields fields; +}; + struct Dictionary_2_TKey_TValue_Entry_System_String_System_Resources_ResourceLocator___Array { struct Dictionary_2_TKey_TValue_Entry_System_String_System_Resources_ResourceLocator___Array__Class *klass; MonitorData *monitor; @@ -67608,6 +69148,21 @@ struct ICollection_1_System_Resources_ResourceLocator___Class { struct ICollection_1_System_Resources_ResourceLocator___VTable vtable; }; +struct ResourceLocator___VTable { +}; + +struct ResourceLocator___StaticFields { +}; + +struct ResourceLocator___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ResourceLocator___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ResourceLocator___VTable vtable; +}; + struct KeyValuePair_2_System_String_System_Resources_ResourceLocator___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -67952,6 +69507,19 @@ struct ResourceManager { struct ResourceManager__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_System_Resources_ResourceSet_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct ResourceSet *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_System_Resources_ResourceSet___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_System_Resources_ResourceSet___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_System_Resources_ResourceSet_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_System_Resources_ResourceSet___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_System_Resources_ResourceSet___Array *_entries; @@ -67971,19 +69539,6 @@ struct Dictionary_2_System_String_System_Resources_ResourceSet_ { struct Dictionary_2_System_String_System_Resources_ResourceSet___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_System_Resources_ResourceSet_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct ResourceSet *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_System_Resources_ResourceSet___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_System_Resources_ResourceSet___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_System_Resources_ResourceSet_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_String_System_Resources_ResourceSet___Array { struct Dictionary_2_TKey_TValue_Entry_System_String_System_Resources_ResourceSet___Array__Class *klass; MonitorData *monitor; @@ -68222,6 +69777,21 @@ struct ICollection_1_System_Resources_ResourceSet___Class { struct ICollection_1_System_Resources_ResourceSet___VTable vtable; }; +struct ResourceSet___VTable { +}; + +struct ResourceSet___StaticFields { +}; + +struct ResourceSet___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ResourceSet___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ResourceSet___VTable vtable; +}; + struct KeyValuePair_2_System_String_System_Resources_ResourceSet___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -68482,6 +70052,21 @@ struct ManifestBasedResourceGroveler__Class { struct ManifestBasedResourceGroveler__VTable vtable; }; +struct UltimateResourceFallbackLocation___VTable { +}; + +struct UltimateResourceFallbackLocation___StaticFields { +}; + +struct UltimateResourceFallbackLocation___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UltimateResourceFallbackLocation___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UltimateResourceFallbackLocation___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class ResourceTypeCode__Enum : int32_t { Null = 0x00000000, @@ -68619,6 +70204,21 @@ struct ResourceReader_ResourceEnumerator__Class { struct ResourceReader_ResourceEnumerator__VTable vtable; }; +struct ResourceTypeCode___VTable { +}; + +struct ResourceTypeCode___StaticFields { +}; + +struct ResourceTypeCode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ResourceTypeCode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ResourceTypeCode___VTable vtable; +}; + struct AmbiguousMatchException__Fields { struct SystemException__Fields _; }; @@ -70862,6 +72462,21 @@ struct LocalVariableInfo__Class { struct LocalVariableInfo__VTable vtable; }; +struct Module___VTable { +}; + +struct Module___StaticFields { +}; + +struct Module___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Module___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Module___VTable vtable; +}; + struct RuntimeAssembly_UnmanagedMemoryStreamForModule__Fields { struct UnmanagedMemoryStream__Fields _; struct Module *module; @@ -71033,6 +72648,21 @@ struct MonoEventInfo__Class { struct MonoEventInfo__VTable vtable; }; +struct MonoEventInfo___VTable { +}; + +struct MonoEventInfo___StaticFields { +}; + +struct MonoEventInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MonoEventInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MonoEventInfo___VTable vtable; +}; + struct MonoMethodInfo { struct Type *parent; struct Type *ret; @@ -71078,6 +72708,21 @@ struct MonoMethodInfo__Class { struct MonoMethodInfo__VTable vtable; }; +struct MonoMethodInfo___VTable { +}; + +struct MonoMethodInfo___StaticFields { +}; + +struct MonoMethodInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MonoMethodInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MonoMethodInfo___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class PInvokeAttributes__Enum : int32_t { NoMangle = 0x00000001, @@ -71179,6 +72824,21 @@ struct PInvokeAttributes__Enum__Class { struct PInvokeAttributes__Enum__VTable vtable; }; +struct PInvokeAttributes___VTable { +}; + +struct PInvokeAttributes___StaticFields { +}; + +struct PInvokeAttributes___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PInvokeAttributes___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PInvokeAttributes___VTable vtable; +}; + struct RuntimeParameterInfo__Fields { struct ParameterInfo__Fields _; struct MarshalAsAttribute *marshalAs; @@ -71222,6 +72882,21 @@ struct RuntimeParameterInfo__Class { struct RuntimeParameterInfo__VTable vtable; }; +struct MonoPropertyInfo___VTable { +}; + +struct MonoPropertyInfo___StaticFields { +}; + +struct MonoPropertyInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MonoPropertyInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MonoPropertyInfo___VTable vtable; +}; + struct ConstructorBuilder { struct ConstructorBuilder__Class *klass; MonitorData *monitor; @@ -72813,6 +74488,21 @@ struct HebrewNumberParsingState__Enum__Class { struct HebrewNumberParsingState__Enum__VTable vtable; }; +struct HebrewNumberParsingContext___VTable { +}; + +struct HebrewNumberParsingContext___StaticFields { +}; + +struct HebrewNumberParsingContext___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HebrewNumberParsingContext___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HebrewNumberParsingContext___VTable vtable; +}; + struct InternalGlobalizationHelper { struct InternalGlobalizationHelper__Class *klass; MonitorData *monitor; @@ -73196,6 +74886,21 @@ struct TimeSpanParse_TimeSpanResult__Class { struct TimeSpanParse_TimeSpanResult__VTable vtable; }; +struct TimeSpanParse_TimeSpanResult___VTable { +}; + +struct TimeSpanParse_TimeSpanResult___StaticFields { +}; + +struct TimeSpanParse_TimeSpanResult___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TimeSpanParse_TimeSpanResult___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TimeSpanParse_TimeSpanResult___VTable vtable; +}; + struct TimeSpanParse_TimeSpanRawInfo { #if defined(_CPLUSPLUS_) TimeSpanParse_TTT__Enum _lastSeenTTT; @@ -73249,6 +74954,21 @@ struct TimeSpanParse_TimeSpanRawInfo__Class { struct TimeSpanParse_TimeSpanRawInfo__VTable vtable; }; +struct TimeSpanParse_TimeSpanRawInfo___VTable { +}; + +struct TimeSpanParse_TimeSpanRawInfo___StaticFields { +}; + +struct TimeSpanParse_TimeSpanRawInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TimeSpanParse_TimeSpanRawInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TimeSpanParse_TimeSpanRawInfo___VTable vtable; +}; + struct TimeSpanParse_TimeSpanTokenizer { struct ReadOnlySpan_1_Char_ _value; int32_t _pos; @@ -73279,6 +74999,36 @@ struct TimeSpanParse_TimeSpanTokenizer__Class { struct TimeSpanParse_TimeSpanTokenizer__VTable vtable; }; +struct TimeSpanParse_TimeSpanTokenizer___VTable { +}; + +struct TimeSpanParse_TimeSpanTokenizer___StaticFields { +}; + +struct TimeSpanParse_TimeSpanTokenizer___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TimeSpanParse_TimeSpanTokenizer___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TimeSpanParse_TimeSpanTokenizer___VTable vtable; +}; + +struct TimeSpanParse_TimeSpanToken___VTable { +}; + +struct TimeSpanParse_TimeSpanToken___StaticFields { +}; + +struct TimeSpanParse_TimeSpanToken___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TimeSpanParse_TimeSpanToken___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TimeSpanParse_TimeSpanToken___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class TimeSpanParse_ParseFailureKind__Enum : uint8_t { None = 0x00, @@ -74770,6 +76520,21 @@ struct StringInfo__Class { struct StringInfo__VTable vtable; }; +struct UnicodeCategory___VTable { +}; + +struct UnicodeCategory___StaticFields { +}; + +struct UnicodeCategory___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UnicodeCategory___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UnicodeCategory___VTable vtable; +}; + struct __declspec(align(8)) TextElementEnumerator__Fields { struct String *str; int32_t index; @@ -75266,6 +77031,21 @@ struct CultureData_NumberFormatEntryManaged__Class { struct CultureData_NumberFormatEntryManaged__VTable vtable; }; +struct CultureData_NumberFormatEntryManaged___VTable { +}; + +struct CultureData_NumberFormatEntryManaged___StaticFields { +}; + +struct CultureData_NumberFormatEntryManaged___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CultureData_NumberFormatEntryManaged___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CultureData_NumberFormatEntryManaged___VTable vtable; +}; + struct InternalEncodingDataItem { struct String *webName; uint16_t codePage; @@ -76055,6 +77835,21 @@ struct DebuggerDisplayAttribute__Class { struct DebuggerDisplayAttribute__VTable vtable; }; +struct MethodBase___VTable { +}; + +struct MethodBase___StaticFields { +}; + +struct MethodBase___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MethodBase___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MethodBase___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class StackTrace_TraceFormat__Enum : int32_t { Normal = 0x00000000, @@ -80291,6 +82086,21 @@ struct MonoIOError__Enum__Class { struct MonoIOError__Enum__VTable vtable; }; +struct MonoIOError___VTable { +}; + +struct MonoIOError___StaticFields { +}; + +struct MonoIOError___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MonoIOError___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MonoIOError___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class MonoFileType__Enum : int32_t { Unknown = 0x00000000, @@ -80778,6 +82588,21 @@ struct FileSystemEntry__Class { struct FileSystemEntry__VTable vtable; }; +struct FileSystemEntry___VTable { +}; + +struct FileSystemEntry___StaticFields { +}; + +struct FileSystemEntry___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct FileSystemEntry___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct FileSystemEntry___VTable vtable; +}; + struct __declspec(align(8)) FileSystemEnumerableFactory_c_DisplayClass3_0__Fields { struct String *expression; struct EnumerationOptions *options; @@ -81067,6 +82892,128 @@ struct Color__Boxed { struct Color fields; }; +#if defined(_CPLUSPLUS_) +enum class BuiltinRenderTextureType__Enum : int32_t { + PropertyName = -4, + BufferPtr = -3, + RenderTexture = -2, + BindableTexture = -1, + None = 0x00000000, + CurrentActive = 0x00000001, + CameraTarget = 0x00000002, + Depth = 0x00000003, + DepthNormals = 0x00000004, + ResolvedDepth = 0x00000005, + PrepassNormalsSpec = 0x00000007, + PrepassLight = 0x00000008, + PrepassLightSpec = 0x00000009, + GBuffer0 = 0x0000000a, + GBuffer1 = 0x0000000b, + GBuffer2 = 0x0000000c, + GBuffer3 = 0x0000000d, + Reflections = 0x0000000e, + MotionVectors = 0x0000000f, + GBuffer4 = 0x00000010, + GBuffer5 = 0x00000011, + GBuffer6 = 0x00000012, + GBuffer7 = 0x00000013, +}; + +#else +enum BuiltinRenderTextureType__Enum { + BuiltinRenderTextureType__Enum_PropertyName = -4, + BuiltinRenderTextureType__Enum_BufferPtr = -3, + BuiltinRenderTextureType__Enum_RenderTexture = -2, + BuiltinRenderTextureType__Enum_BindableTexture = -1, + BuiltinRenderTextureType__Enum_None = 0x00000000, + BuiltinRenderTextureType__Enum_CurrentActive = 0x00000001, + BuiltinRenderTextureType__Enum_CameraTarget = 0x00000002, + BuiltinRenderTextureType__Enum_Depth = 0x00000003, + BuiltinRenderTextureType__Enum_DepthNormals = 0x00000004, + BuiltinRenderTextureType__Enum_ResolvedDepth = 0x00000005, + BuiltinRenderTextureType__Enum_PrepassNormalsSpec = 0x00000007, + BuiltinRenderTextureType__Enum_PrepassLight = 0x00000008, + BuiltinRenderTextureType__Enum_PrepassLightSpec = 0x00000009, + BuiltinRenderTextureType__Enum_GBuffer0 = 0x0000000a, + BuiltinRenderTextureType__Enum_GBuffer1 = 0x0000000b, + BuiltinRenderTextureType__Enum_GBuffer2 = 0x0000000c, + BuiltinRenderTextureType__Enum_GBuffer3 = 0x0000000d, + BuiltinRenderTextureType__Enum_Reflections = 0x0000000e, + BuiltinRenderTextureType__Enum_MotionVectors = 0x0000000f, + BuiltinRenderTextureType__Enum_GBuffer4 = 0x00000010, + BuiltinRenderTextureType__Enum_GBuffer5 = 0x00000011, + BuiltinRenderTextureType__Enum_GBuffer6 = 0x00000012, + BuiltinRenderTextureType__Enum_GBuffer7 = 0x00000013, +}; + +#endif +struct BuiltinRenderTextureType__Enum__Boxed { + struct BuiltinRenderTextureType__Enum__Class *klass; + MonitorData *monitor; + #if defined(_CPLUSPLUS_) + BuiltinRenderTextureType__Enum value; + #else + int32_t value; + #endif +}; + +#if defined(_CPLUSPLUS_) +enum class CubemapFace__Enum : int32_t { + Unknown = -1, + PositiveX = 0x00000000, + NegativeX = 0x00000001, + PositiveY = 0x00000002, + NegativeY = 0x00000003, + PositiveZ = 0x00000004, + NegativeZ = 0x00000005, +}; + +#else +enum CubemapFace__Enum { + CubemapFace__Enum_Unknown = -1, + CubemapFace__Enum_PositiveX = 0x00000000, + CubemapFace__Enum_NegativeX = 0x00000001, + CubemapFace__Enum_PositiveY = 0x00000002, + CubemapFace__Enum_NegativeY = 0x00000003, + CubemapFace__Enum_PositiveZ = 0x00000004, + CubemapFace__Enum_NegativeZ = 0x00000005, +}; + +#endif +struct CubemapFace__Enum__Boxed { + struct CubemapFace__Enum__Class *klass; + MonitorData *monitor; + #if defined(_CPLUSPLUS_) + CubemapFace__Enum value; + #else + int32_t value; + #endif +}; + +struct RenderTargetIdentifier { + #if defined(_CPLUSPLUS_) + BuiltinRenderTextureType__Enum m_Type; + #else + int32_t m_Type; + #endif + int32_t m_NameID; + int32_t m_InstanceID; + void *m_BufferPointer; + int32_t m_MipLevel; + #if defined(_CPLUSPLUS_) + CubemapFace__Enum m_CubeFace; + #else + int32_t m_CubeFace; + #endif + int32_t m_DepthSlice; +}; + +struct RenderTargetIdentifier__Boxed { + struct RenderTargetIdentifier__Class *klass; + MonitorData *monitor; + struct RenderTargetIdentifier fields; +}; + #if defined(_CPLUSPLUS_) enum class CameraEvent__Enum : int32_t { BeforeDepthTexture = 0x00000000, @@ -81227,6 +83174,26 @@ struct RenderTextureFormat__Enum__Boxed { #endif }; +struct Texture__Fields { + struct Object_1__Fields _; +}; + +struct Texture { + struct Texture__Class *klass; + MonitorData *monitor; + struct Texture__Fields fields; +}; + +struct RenderTexture__Fields { + struct Texture__Fields _; +}; + +struct RenderTexture { + struct RenderTexture__Class *klass; + MonitorData *monitor; + struct RenderTexture__Fields fields; +}; + struct TargetDesc { int32_t fullWidth; int32_t fullHeight; @@ -81386,128 +83353,6 @@ struct Camera_CameraCallback { struct Camera_CameraCallback__Fields fields; }; -#if defined(_CPLUSPLUS_) -enum class BuiltinRenderTextureType__Enum : int32_t { - PropertyName = -4, - BufferPtr = -3, - RenderTexture = -2, - BindableTexture = -1, - None = 0x00000000, - CurrentActive = 0x00000001, - CameraTarget = 0x00000002, - Depth = 0x00000003, - DepthNormals = 0x00000004, - ResolvedDepth = 0x00000005, - PrepassNormalsSpec = 0x00000007, - PrepassLight = 0x00000008, - PrepassLightSpec = 0x00000009, - GBuffer0 = 0x0000000a, - GBuffer1 = 0x0000000b, - GBuffer2 = 0x0000000c, - GBuffer3 = 0x0000000d, - Reflections = 0x0000000e, - MotionVectors = 0x0000000f, - GBuffer4 = 0x00000010, - GBuffer5 = 0x00000011, - GBuffer6 = 0x00000012, - GBuffer7 = 0x00000013, -}; - -#else -enum BuiltinRenderTextureType__Enum { - BuiltinRenderTextureType__Enum_PropertyName = -4, - BuiltinRenderTextureType__Enum_BufferPtr = -3, - BuiltinRenderTextureType__Enum_RenderTexture = -2, - BuiltinRenderTextureType__Enum_BindableTexture = -1, - BuiltinRenderTextureType__Enum_None = 0x00000000, - BuiltinRenderTextureType__Enum_CurrentActive = 0x00000001, - BuiltinRenderTextureType__Enum_CameraTarget = 0x00000002, - BuiltinRenderTextureType__Enum_Depth = 0x00000003, - BuiltinRenderTextureType__Enum_DepthNormals = 0x00000004, - BuiltinRenderTextureType__Enum_ResolvedDepth = 0x00000005, - BuiltinRenderTextureType__Enum_PrepassNormalsSpec = 0x00000007, - BuiltinRenderTextureType__Enum_PrepassLight = 0x00000008, - BuiltinRenderTextureType__Enum_PrepassLightSpec = 0x00000009, - BuiltinRenderTextureType__Enum_GBuffer0 = 0x0000000a, - BuiltinRenderTextureType__Enum_GBuffer1 = 0x0000000b, - BuiltinRenderTextureType__Enum_GBuffer2 = 0x0000000c, - BuiltinRenderTextureType__Enum_GBuffer3 = 0x0000000d, - BuiltinRenderTextureType__Enum_Reflections = 0x0000000e, - BuiltinRenderTextureType__Enum_MotionVectors = 0x0000000f, - BuiltinRenderTextureType__Enum_GBuffer4 = 0x00000010, - BuiltinRenderTextureType__Enum_GBuffer5 = 0x00000011, - BuiltinRenderTextureType__Enum_GBuffer6 = 0x00000012, - BuiltinRenderTextureType__Enum_GBuffer7 = 0x00000013, -}; - -#endif -struct BuiltinRenderTextureType__Enum__Boxed { - struct BuiltinRenderTextureType__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - BuiltinRenderTextureType__Enum value; - #else - int32_t value; - #endif -}; - -#if defined(_CPLUSPLUS_) -enum class CubemapFace__Enum : int32_t { - Unknown = -1, - PositiveX = 0x00000000, - NegativeX = 0x00000001, - PositiveY = 0x00000002, - NegativeY = 0x00000003, - PositiveZ = 0x00000004, - NegativeZ = 0x00000005, -}; - -#else -enum CubemapFace__Enum { - CubemapFace__Enum_Unknown = -1, - CubemapFace__Enum_PositiveX = 0x00000000, - CubemapFace__Enum_NegativeX = 0x00000001, - CubemapFace__Enum_PositiveY = 0x00000002, - CubemapFace__Enum_NegativeY = 0x00000003, - CubemapFace__Enum_PositiveZ = 0x00000004, - CubemapFace__Enum_NegativeZ = 0x00000005, -}; - -#endif -struct CubemapFace__Enum__Boxed { - struct CubemapFace__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - CubemapFace__Enum value; - #else - int32_t value; - #endif -}; - -struct RenderTargetIdentifier { - #if defined(_CPLUSPLUS_) - BuiltinRenderTextureType__Enum m_Type; - #else - int32_t m_Type; - #endif - int32_t m_NameID; - int32_t m_InstanceID; - void *m_BufferPointer; - int32_t m_MipLevel; - #if defined(_CPLUSPLUS_) - CubemapFace__Enum m_CubeFace; - #else - int32_t m_CubeFace; - #endif - int32_t m_DepthSlice; -}; - -struct RenderTargetIdentifier__Boxed { - struct RenderTargetIdentifier__Class *klass; - MonitorData *monitor; - struct RenderTargetIdentifier fields; -}; - struct RenderTargetIdentifier__Array { struct RenderTargetIdentifier__Array__Class *klass; MonitorData *monitor; @@ -81546,26 +83391,6 @@ struct Material { struct Material__Fields fields; }; -struct Texture__Fields { - struct Object_1__Fields _; -}; - -struct Texture { - struct Texture__Class *klass; - MonitorData *monitor; - struct Texture__Fields fields; -}; - -struct RenderTexture__Fields { - struct Texture__Fields _; -}; - -struct RenderTexture { - struct RenderTexture__Class *klass; - MonitorData *monitor; - struct RenderTexture__Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class GraphicsFormat__Enum : int32_t { None = 0x00000000, @@ -82718,6 +84543,56 @@ struct AmplifyOcclusionEffect__Class { struct AmplifyOcclusionEffect__VTable vtable; }; +struct AmplifyOcclusionEffect_CmdBuffer___VTable { +}; + +struct AmplifyOcclusionEffect_CmdBuffer___StaticFields { +}; + +struct AmplifyOcclusionEffect_CmdBuffer___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct AmplifyOcclusionEffect_CmdBuffer___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct AmplifyOcclusionEffect_CmdBuffer___VTable vtable; +}; + +struct GameObject__Fields { + struct Object_1__Fields _; +}; + +struct GameObject { + struct GameObject__Class *klass; + MonitorData *monitor; + struct GameObject__Fields fields; +}; + +struct Vector3 { + float x; + float y; + float z; +}; + +struct Vector3__Boxed { + struct Vector3__Class *klass; + MonitorData *monitor; + struct Vector3 fields; +}; + +struct Quaternion { + float x; + float y; + float z; + float w; +}; + +struct Quaternion__Boxed { + struct Quaternion__Class *klass; + MonitorData *monitor; + struct Quaternion fields; +}; + #if defined(_CPLUSPLUS_) enum class AstarBehaviorSelection_BehaviorSelectionType__Enum : int32_t { Seek = 0x00000000, @@ -82798,16 +84673,6 @@ struct AstarBehaviorSelection { struct AstarBehaviorSelection__Fields fields; }; -struct GameObject__Fields { - struct Object_1__Fields _; -}; - -struct GameObject { - struct GameObject__Class *klass; - MonitorData *monitor; - struct GameObject__Fields fields; -}; - struct GameObject__Array { struct GameObject__Array__Class *klass; MonitorData *monitor; @@ -82826,6 +84691,29 @@ struct ScriptableObject { struct ScriptableObject__Fields fields; }; +struct __declspec(align(8)) GUIStyle__Fields { + void *m_Ptr; + struct GUIStyleState *m_Normal; + struct GUIStyleState *m_Hover; + struct GUIStyleState *m_Active; + struct GUIStyleState *m_Focused; + struct GUIStyleState *m_OnNormal; + struct GUIStyleState *m_OnHover; + struct GUIStyleState *m_OnActive; + struct GUIStyleState *m_OnFocused; + struct RectOffset *m_Border; + struct RectOffset *m_Padding; + struct RectOffset *m_Margin; + struct RectOffset *m_Overflow; + struct String *m_Name; +}; + +struct GUIStyle { + struct GUIStyle__Class *klass; + MonitorData *monitor; + struct GUIStyle__Fields fields; +}; + struct GUISkin__Fields { struct ScriptableObject__Fields _; struct Font *m_Font; @@ -82894,29 +84782,6 @@ struct Font_FontTextureRebuildCallback { struct Font_FontTextureRebuildCallback__Fields fields; }; -struct __declspec(align(8)) GUIStyle__Fields { - void *m_Ptr; - struct GUIStyleState *m_Normal; - struct GUIStyleState *m_Hover; - struct GUIStyleState *m_Active; - struct GUIStyleState *m_Focused; - struct GUIStyleState *m_OnNormal; - struct GUIStyleState *m_OnHover; - struct GUIStyleState *m_OnActive; - struct GUIStyleState *m_OnFocused; - struct RectOffset *m_Border; - struct RectOffset *m_Padding; - struct RectOffset *m_Margin; - struct RectOffset *m_Overflow; - struct String *m_Name; -}; - -struct GUIStyle { - struct GUIStyle__Class *klass; - MonitorData *monitor; - struct GUIStyle__Fields fields; -}; - struct __declspec(align(8)) GUIStyleState__Fields { void *m_Ptr; struct GUIStyle *m_SourceStyle; @@ -82961,6 +84826,19 @@ struct GUISettings { struct GUISettings__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_GUIStyle_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct GUIStyle *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_GUIStyle___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_GUIStyle___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_GUIStyle_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_UnityEngine_GUIStyle___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_GUIStyle___Array *_entries; @@ -82980,19 +84858,6 @@ struct Dictionary_2_System_String_UnityEngine_GUIStyle_ { struct Dictionary_2_System_String_UnityEngine_GUIStyle___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_GUIStyle_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct GUIStyle *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_GUIStyle___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_GUIStyle___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_GUIStyle_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_GUIStyle___Array { struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_GUIStyle___Array__Class *klass; MonitorData *monitor; @@ -83070,18 +84935,6 @@ struct GUISkin_SkinChangedDelegate { struct GUISkin_SkinChangedDelegate__Fields fields; }; -struct Vector3 { - float x; - float y; - float z; -}; - -struct Vector3__Boxed { - struct Vector3__Class *klass; - MonitorData *monitor; - struct Vector3 fields; -}; - struct Vector3__Array { struct Vector3__Array__Class *klass; MonitorData *monitor; @@ -83090,19 +84943,6 @@ struct Vector3__Array { struct Vector3 vector[32]; }; -struct Quaternion { - float x; - float y; - float z; - float w; -}; - -struct Quaternion__Boxed { - struct Quaternion__Class *klass; - MonitorData *monitor; - struct Quaternion fields; -}; - struct Quaternion__Array { struct Quaternion__Array__Class *klass; MonitorData *monitor; @@ -83111,6 +84951,19 @@ struct Quaternion__Array { struct Quaternion vector[32]; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_BehaviorDesigner_Runtime_BehaviorTree_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct BehaviorTree *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_BehaviorDesigner_Runtime_BehaviorTree___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_BehaviorDesigner_Runtime_BehaviorTree___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_BehaviorDesigner_Runtime_BehaviorTree_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_BehaviorDesigner_Runtime_BehaviorTree___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_BehaviorDesigner_Runtime_BehaviorTree___Array *_entries; @@ -83130,19 +84983,6 @@ struct Dictionary_2_System_Int32_BehaviorDesigner_Runtime_BehaviorTree_ { struct Dictionary_2_System_Int32_BehaviorDesigner_Runtime_BehaviorTree___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_BehaviorDesigner_Runtime_BehaviorTree_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct BehaviorTree *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_BehaviorDesigner_Runtime_BehaviorTree___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_BehaviorDesigner_Runtime_BehaviorTree___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_BehaviorDesigner_Runtime_BehaviorTree_ fields; -}; - #if defined(_CPLUSPLUS_) enum class TaskStatus__Enum_1 : int32_t { Inactive = 0x00000000, @@ -83365,6 +85205,20 @@ struct IEnumerator_1_System_Reflection_FieldInfo_ { MonitorData *monitor; }; +struct ContactPoint { + struct Vector3 m_Point; + struct Vector3 m_Normal; + int32_t m_ThisColliderInstanceID; + int32_t m_OtherColliderInstanceID; + float m_Separation; +}; + +struct ContactPoint__Boxed { + struct ContactPoint__Class *klass; + MonitorData *monitor; + struct ContactPoint fields; +}; + struct __declspec(align(8)) Collision__Fields { struct Vector3 m_Impulse; struct Vector3 m_RelativeVelocity; @@ -83391,20 +85245,6 @@ struct Collider { struct Collider__Fields fields; }; -struct ContactPoint { - struct Vector3 m_Point; - struct Vector3 m_Normal; - int32_t m_ThisColliderInstanceID; - int32_t m_OtherColliderInstanceID; - float m_Separation; -}; - -struct ContactPoint__Boxed { - struct ContactPoint__Class *klass; - MonitorData *monitor; - struct ContactPoint fields; -}; - struct ContactPoint__Array { struct ContactPoint__Array__Class *klass; MonitorData *monitor; @@ -83413,24 +85253,6 @@ struct ContactPoint__Array { struct ContactPoint vector[32]; }; -struct __declspec(align(8)) Collision2D__Fields { - int32_t m_Collider; - int32_t m_OtherCollider; - int32_t m_Rigidbody; - int32_t m_OtherRigidbody; - struct Vector2 m_RelativeVelocity; - int32_t m_Enabled; - int32_t m_ContactCount; - struct ContactPoint2D__Array *m_ReusedContacts; - struct ContactPoint2D__Array *m_LegacyContacts; -}; - -struct Collision2D { - struct Collision2D__Class *klass; - MonitorData *monitor; - struct Collision2D__Fields fields; -}; - struct ContactPoint2D { struct Vector2 m_Point; struct Vector2 m_Normal; @@ -83451,6 +85273,24 @@ struct ContactPoint2D__Boxed { struct ContactPoint2D fields; }; +struct __declspec(align(8)) Collision2D__Fields { + int32_t m_Collider; + int32_t m_OtherCollider; + int32_t m_Rigidbody; + int32_t m_OtherRigidbody; + struct Vector2 m_RelativeVelocity; + int32_t m_Enabled; + int32_t m_ContactCount; + struct ContactPoint2D__Array *m_ReusedContacts; + struct ContactPoint2D__Array *m_LegacyContacts; +}; + +struct Collision2D { + struct Collision2D__Class *klass; + MonitorData *monitor; + struct Collision2D__Fields fields; +}; + struct ContactPoint2D__Array { struct ContactPoint2D__Array__Class *klass; MonitorData *monitor; @@ -83521,19 +85361,6 @@ struct IEnumerator_1_BehaviorDesigner_Runtime_Tasks_Task_ { MonitorData *monitor; }; -struct __declspec(align(8)) List_1_BehaviorDesigner_Runtime_SharedVariable___Fields { - struct SharedVariable__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_BehaviorDesigner_Runtime_SharedVariable_ { - struct List_1_BehaviorDesigner_Runtime_SharedVariable___Class *klass; - MonitorData *monitor; - struct List_1_BehaviorDesigner_Runtime_SharedVariable___Fields fields; -}; - struct __declspec(align(8)) SharedVariable__Fields { bool mIsShared; bool mIsGlobal; @@ -83550,6 +85377,19 @@ struct SharedVariable { struct SharedVariable__Fields fields; }; +struct __declspec(align(8)) List_1_BehaviorDesigner_Runtime_SharedVariable___Fields { + struct SharedVariable__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_BehaviorDesigner_Runtime_SharedVariable_ { + struct List_1_BehaviorDesigner_Runtime_SharedVariable___Class *klass; + MonitorData *monitor; + struct List_1_BehaviorDesigner_Runtime_SharedVariable___Fields fields; +}; + struct SharedVariable_1_UnityEngine_AnimationCurve___Fields { struct SharedVariable__Fields _; struct Func_1_UnityEngine_AnimationCurve_ *mGetter; @@ -83700,6 +85540,19 @@ struct IBehavior { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_Tasks_Task_Dictionary_2_System_String_System_Object_ { + int32_t hashCode; + int32_t next; + struct Task_1 *key; + struct Dictionary_2_System_String_System_Object_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_Tasks_Task_Dictionary_2_System_String_System_Object___Boxed { + struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_Tasks_Task_Dictionary_2_System_String_System_Object___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_Tasks_Task_Dictionary_2_System_String_System_Object_ fields; +}; + struct __declspec(align(8)) Dictionary_2_BehaviorDesigner_Runtime_Tasks_Task_Dictionary_2_System_String_System_Object___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_Tasks_Task_Dictionary_2_System_String_System_Object___Array *_entries; @@ -83719,19 +85572,6 @@ struct Dictionary_2_BehaviorDesigner_Runtime_Tasks_Task_Dictionary_2_System_Stri struct Dictionary_2_BehaviorDesigner_Runtime_Tasks_Task_Dictionary_2_System_String_System_Object___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_Tasks_Task_Dictionary_2_System_String_System_Object_ { - int32_t hashCode; - int32_t next; - struct Task_1 *key; - struct Dictionary_2_System_String_System_Object_ *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_Tasks_Task_Dictionary_2_System_String_System_Object___Boxed { - struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_Tasks_Task_Dictionary_2_System_String_System_Object___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_Tasks_Task_Dictionary_2_System_String_System_Object_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_Tasks_Task_Dictionary_2_System_String_System_Object___Array { struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_Tasks_Task_Dictionary_2_System_String_System_Object___Array__Class *klass; MonitorData *monitor; @@ -83822,6 +85662,19 @@ struct IEnumerable_1_Dictionary_2_System_String_System_Object_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_SharedVariable_System_Object_ { + int32_t hashCode; + int32_t next; + struct SharedVariable *key; + struct Object *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_SharedVariable_System_Object___Boxed { + struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_SharedVariable_System_Object___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_SharedVariable_System_Object_ fields; +}; + struct __declspec(align(8)) Dictionary_2_BehaviorDesigner_Runtime_SharedVariable_System_Object___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_SharedVariable_System_Object___Array *_entries; @@ -83841,19 +85694,6 @@ struct Dictionary_2_BehaviorDesigner_Runtime_SharedVariable_System_Object_ { struct Dictionary_2_BehaviorDesigner_Runtime_SharedVariable_System_Object___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_SharedVariable_System_Object_ { - int32_t hashCode; - int32_t next; - struct SharedVariable *key; - struct Object *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_SharedVariable_System_Object___Boxed { - struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_SharedVariable_System_Object___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_SharedVariable_System_Object_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_SharedVariable_System_Object___Array { struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_SharedVariable_System_Object___Array__Class *klass; MonitorData *monitor; @@ -83921,6 +85761,19 @@ struct IEnumerable_1_BehaviorDesigner_Runtime_SharedVariable_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_BehaviorDesigner_Runtime_TaskCoroutine_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct List_1_BehaviorDesigner_Runtime_TaskCoroutine_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_BehaviorDesigner_Runtime_TaskCoroutine___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_BehaviorDesigner_Runtime_TaskCoroutine___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_BehaviorDesigner_Runtime_TaskCoroutine_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_List_1_BehaviorDesigner_Runtime_TaskCoroutine___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_BehaviorDesigner_Runtime_TaskCoroutine___Array *_entries; @@ -83940,17 +85793,18 @@ struct Dictionary_2_System_String_List_1_BehaviorDesigner_Runtime_TaskCoroutine_ struct Dictionary_2_System_String_List_1_BehaviorDesigner_Runtime_TaskCoroutine___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_BehaviorDesigner_Runtime_TaskCoroutine_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct List_1_BehaviorDesigner_Runtime_TaskCoroutine_ *value; +struct __declspec(align(8)) TaskCoroutine__Fields { + struct IEnumerator *mCoroutineEnumerator; + struct Coroutine *mCoroutine; + struct Behavior *mParent; + struct String *mCoroutineName; + bool mStop; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_BehaviorDesigner_Runtime_TaskCoroutine___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_BehaviorDesigner_Runtime_TaskCoroutine___Class *klass; +struct TaskCoroutine { + struct TaskCoroutine__Class *klass; MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_BehaviorDesigner_Runtime_TaskCoroutine_ fields; + struct TaskCoroutine__Fields fields; }; struct __declspec(align(8)) List_1_BehaviorDesigner_Runtime_TaskCoroutine___Fields { @@ -83966,20 +85820,6 @@ struct List_1_BehaviorDesigner_Runtime_TaskCoroutine_ { struct List_1_BehaviorDesigner_Runtime_TaskCoroutine___Fields fields; }; -struct __declspec(align(8)) TaskCoroutine__Fields { - struct IEnumerator *mCoroutineEnumerator; - struct Coroutine *mCoroutine; - struct Behavior *mParent; - struct String *mCoroutineName; - bool mStop; -}; - -struct TaskCoroutine { - struct TaskCoroutine__Class *klass; - MonitorData *monitor; - struct TaskCoroutine__Fields fields; -}; - struct YieldInstruction { struct YieldInstruction__Class *klass; MonitorData *monitor; @@ -84093,6 +85933,19 @@ struct Behavior_BehaviorHandler { struct Behavior_BehaviorHandler__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_Type_Dictionary_2_System_String_System_Delegate_ { + int32_t hashCode; + int32_t next; + struct Type *key; + struct Dictionary_2_System_String_System_Delegate_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_Dictionary_2_System_String_System_Delegate___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Type_Dictionary_2_System_String_System_Delegate___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Type_Dictionary_2_System_String_System_Delegate_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Type_Dictionary_2_System_String_System_Delegate___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Type_Dictionary_2_System_String_System_Delegate___Array *_entries; @@ -84112,17 +85965,17 @@ struct Dictionary_2_System_Type_Dictionary_2_System_String_System_Delegate_ { struct Dictionary_2_System_Type_Dictionary_2_System_String_System_Delegate___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Type_Dictionary_2_System_String_System_Delegate_ { +struct Dictionary_2_TKey_TValue_Entry_System_String_System_Delegate_ { int32_t hashCode; int32_t next; - struct Type *key; - struct Dictionary_2_System_String_System_Delegate_ *value; + struct String *key; + struct Delegate *value; }; -struct Dictionary_2_TKey_TValue_Entry_System_Type_Dictionary_2_System_String_System_Delegate___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Type_Dictionary_2_System_String_System_Delegate___Class *klass; +struct Dictionary_2_TKey_TValue_Entry_System_String_System_Delegate___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_System_Delegate___Class *klass; MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Type_Dictionary_2_System_String_System_Delegate_ fields; + struct Dictionary_2_TKey_TValue_Entry_System_String_System_Delegate_ fields; }; struct __declspec(align(8)) Dictionary_2_System_String_System_Delegate___Fields { @@ -84144,19 +85997,6 @@ struct Dictionary_2_System_String_System_Delegate_ { struct Dictionary_2_System_String_System_Delegate___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_System_Delegate_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct Delegate *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_System_Delegate___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_System_Delegate___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_System_Delegate_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_String_System_Delegate___Array { struct Dictionary_2_TKey_TValue_Entry_System_String_System_Delegate___Array__Class *klass; MonitorData *monitor; @@ -84737,6 +86577,21 @@ struct ICollection_1_UnityEngine_GUIStyle___Class { struct ICollection_1_UnityEngine_GUIStyle___VTable vtable; }; +struct GUIStyle___VTable { +}; + +struct GUIStyle___StaticFields { +}; + +struct GUIStyle___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GUIStyle___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GUIStyle___VTable vtable; +}; + struct KeyValuePair_2_System_String_UnityEngine_GUIStyle___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -86187,6 +88042,21 @@ struct ICollection_1_Dictionary_2_System_String_System_Object___Class { struct ICollection_1_Dictionary_2_System_String_System_Object___VTable vtable; }; +struct Dictionary_2_System_String_System_Object__1__VTable { +}; + +struct Dictionary_2_System_String_System_Object__1__StaticFields { +}; + +struct Dictionary_2_System_String_System_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_System_String_System_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_System_String_System_Object__1__VTable vtable; +}; + struct KeyValuePair_2_BehaviorDesigner_Runtime_Tasks_Task_Dictionary_2_System_String_System_Object___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -86884,6 +88754,21 @@ struct ICollection_1_List_1_BehaviorDesigner_Runtime_TaskCoroutine___Class { struct ICollection_1_List_1_BehaviorDesigner_Runtime_TaskCoroutine___VTable vtable; }; +struct List_1_BehaviorDesigner_Runtime_TaskCoroutine__1__VTable { +}; + +struct List_1_BehaviorDesigner_Runtime_TaskCoroutine__1__StaticFields { +}; + +struct List_1_BehaviorDesigner_Runtime_TaskCoroutine__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_BehaviorDesigner_Runtime_TaskCoroutine__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_BehaviorDesigner_Runtime_TaskCoroutine__1__VTable vtable; +}; + struct KeyValuePair_2_System_String_List_1_BehaviorDesigner_Runtime_TaskCoroutine___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -87178,6 +89063,21 @@ struct ICollection_1_System_Delegate___Class { struct ICollection_1_System_Delegate___VTable vtable; }; +struct Delegate___VTable { +}; + +struct Delegate___StaticFields { +}; + +struct Delegate___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Delegate___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Delegate___VTable vtable; +}; + struct KeyValuePair_2_System_String_System_Delegate___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -87456,6 +89356,21 @@ struct ICollection_1_Dictionary_2_System_String_System_Delegate___Class { struct ICollection_1_Dictionary_2_System_String_System_Delegate___VTable vtable; }; +struct Dictionary_2_System_String_System_Delegate__1__VTable { +}; + +struct Dictionary_2_System_String_System_Delegate__1__StaticFields { +}; + +struct Dictionary_2_System_String_System_Delegate__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_System_String_System_Delegate__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_System_String_System_Delegate__1__VTable vtable; +}; + struct KeyValuePair_2_System_Type_Dictionary_2_System_String_System_Delegate___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -87826,6 +89741,21 @@ struct ICollection_1_BehaviorDesigner_Runtime_BehaviorTree___Class { struct ICollection_1_BehaviorDesigner_Runtime_BehaviorTree___VTable vtable; }; +struct BehaviorTree___VTable { +}; + +struct BehaviorTree___StaticFields { +}; + +struct BehaviorTree___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BehaviorTree___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BehaviorTree___VTable vtable; +}; + struct KeyValuePair_2_System_Int32_BehaviorDesigner_Runtime_BehaviorTree___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -88448,19 +90378,6 @@ struct PostProcessProfile { struct PostProcessProfile__Fields fields; }; -struct __declspec(align(8)) List_1_UnityEngine_Rendering_PostProcessing_PostProcessEffectSettings___Fields { - struct PostProcessEffectSettings__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_Rendering_PostProcessing_PostProcessEffectSettings_ { - struct List_1_UnityEngine_Rendering_PostProcessing_PostProcessEffectSettings___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_Rendering_PostProcessing_PostProcessEffectSettings___Fields fields; -}; - struct PostProcessEffectSettings__Fields { struct ScriptableObject__Fields _; bool active; @@ -88474,6 +90391,19 @@ struct PostProcessEffectSettings { struct PostProcessEffectSettings__Fields fields; }; +struct __declspec(align(8)) List_1_UnityEngine_Rendering_PostProcessing_PostProcessEffectSettings___Fields { + struct PostProcessEffectSettings__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_Rendering_PostProcessing_PostProcessEffectSettings_ { + struct List_1_UnityEngine_Rendering_PostProcessing_PostProcessEffectSettings___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_Rendering_PostProcessing_PostProcessEffectSettings___Fields fields; +}; + struct __declspec(align(8)) ParameterOverride__Fields { bool overrideState; }; @@ -88966,6 +90896,19 @@ struct PropertySheetFactory { struct PropertySheetFactory__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Shader_UnityEngine_Rendering_PostProcessing_PropertySheet_ { + int32_t hashCode; + int32_t next; + struct Shader *key; + struct PropertySheet *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Shader_UnityEngine_Rendering_PostProcessing_PropertySheet___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Shader_UnityEngine_Rendering_PostProcessing_PropertySheet___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Shader_UnityEngine_Rendering_PostProcessing_PropertySheet_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_Shader_UnityEngine_Rendering_PostProcessing_PropertySheet___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Shader_UnityEngine_Rendering_PostProcessing_PropertySheet___Array *_entries; @@ -88985,19 +90928,6 @@ struct Dictionary_2_UnityEngine_Shader_UnityEngine_Rendering_PostProcessing_Prop struct Dictionary_2_UnityEngine_Shader_UnityEngine_Rendering_PostProcessing_PropertySheet___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Shader_UnityEngine_Rendering_PostProcessing_PropertySheet_ { - int32_t hashCode; - int32_t next; - struct Shader *key; - struct PropertySheet *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Shader_UnityEngine_Rendering_PostProcessing_PropertySheet___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Shader_UnityEngine_Rendering_PostProcessing_PropertySheet___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Shader_UnityEngine_Rendering_PostProcessing_PropertySheet_ fields; -}; - struct __declspec(align(8)) PropertySheet__Fields { struct MaterialPropertyBlock *_properties_k__BackingField; struct Material *_material_k__BackingField; @@ -89292,25 +91222,6 @@ struct VectorscopeMonitor { struct VectorscopeMonitor__Fields fields; }; -struct __declspec(align(8)) Dictionary_2_UnityEngine_Rendering_PostProcessing_MonitorType_UnityEngine_Rendering_PostProcessing_Monitor___Fields { - struct Int32__Array *_buckets; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Rendering_PostProcessing_MonitorType_UnityEngine_Rendering_PostProcessing_Monitor___Array *_entries; - int32_t _count; - int32_t _freeList; - int32_t _freeCount; - int32_t _version; - struct IEqualityComparer_1_UnityEngine_Rendering_PostProcessing_MonitorType_ *_comparer; - struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_Rendering_PostProcessing_MonitorType_UnityEngine_Rendering_PostProcessing_Monitor_ *_keys; - struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_Rendering_PostProcessing_MonitorType_UnityEngine_Rendering_PostProcessing_Monitor_ *_values; - struct Object *_syncRoot; -}; - -struct Dictionary_2_UnityEngine_Rendering_PostProcessing_MonitorType_UnityEngine_Rendering_PostProcessing_Monitor_ { - struct Dictionary_2_UnityEngine_Rendering_PostProcessing_MonitorType_UnityEngine_Rendering_PostProcessing_Monitor___Class *klass; - MonitorData *monitor; - struct Dictionary_2_UnityEngine_Rendering_PostProcessing_MonitorType_UnityEngine_Rendering_PostProcessing_Monitor___Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class MonitorType__Enum : int32_t { LightMeter = 0x00000000, @@ -89355,6 +91266,25 @@ struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Rendering_PostProcessing_Monit struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Rendering_PostProcessing_MonitorType_UnityEngine_Rendering_PostProcessing_Monitor_ fields; }; +struct __declspec(align(8)) Dictionary_2_UnityEngine_Rendering_PostProcessing_MonitorType_UnityEngine_Rendering_PostProcessing_Monitor___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Rendering_PostProcessing_MonitorType_UnityEngine_Rendering_PostProcessing_Monitor___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_UnityEngine_Rendering_PostProcessing_MonitorType_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_Rendering_PostProcessing_MonitorType_UnityEngine_Rendering_PostProcessing_Monitor_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_Rendering_PostProcessing_MonitorType_UnityEngine_Rendering_PostProcessing_Monitor_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_UnityEngine_Rendering_PostProcessing_MonitorType_UnityEngine_Rendering_PostProcessing_Monitor_ { + struct Dictionary_2_UnityEngine_Rendering_PostProcessing_MonitorType_UnityEngine_Rendering_PostProcessing_Monitor___Class *klass; + MonitorData *monitor; + struct Dictionary_2_UnityEngine_Rendering_PostProcessing_MonitorType_UnityEngine_Rendering_PostProcessing_Monitor___Fields fields; +}; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Rendering_PostProcessing_MonitorType_UnityEngine_Rendering_PostProcessing_Monitor___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Rendering_PostProcessing_MonitorType_UnityEngine_Rendering_PostProcessing_Monitor___Array__Class *klass; MonitorData *monitor; @@ -90625,6 +92555,21 @@ struct ICollection_1_UnityEngine_Rendering_PostProcessing_PropertySheet___Class struct ICollection_1_UnityEngine_Rendering_PostProcessing_PropertySheet___VTable vtable; }; +struct PropertySheet___VTable { +}; + +struct PropertySheet___StaticFields { +}; + +struct PropertySheet___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PropertySheet___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PropertySheet___VTable vtable; +}; + struct KeyValuePair_2_UnityEngine_Shader_UnityEngine_Rendering_PostProcessing_PropertySheet___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -91224,6 +93169,21 @@ struct ICollection_1_UnityEngine_Rendering_PostProcessing_Monitor___Class { struct ICollection_1_UnityEngine_Rendering_PostProcessing_Monitor___VTable vtable; }; +struct Monitor___VTable { +}; + +struct Monitor___StaticFields { +}; + +struct Monitor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Monitor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Monitor___VTable vtable; +}; + struct KeyValuePair_2_UnityEngine_Rendering_PostProcessing_MonitorType_UnityEngine_Rendering_PostProcessing_Monitor___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -93276,6 +95236,26 @@ struct KeyScript__Class { struct KeyScript__VTable vtable; }; +struct Renderer__Fields { + struct Component__Fields _; +}; + +struct Renderer { + struct Renderer__Class *klass; + MonitorData *monitor; + struct Renderer__Fields fields; +}; + +struct MeshRenderer__Fields { + struct Renderer__Fields _; +}; + +struct MeshRenderer { + struct MeshRenderer__Class *klass; + MonitorData *monitor; + struct MeshRenderer__Fields fields; +}; + struct LightAnimationAdvanced__Fields { struct MonoBehaviour__Fields _; struct Light *LightIntensity; @@ -93305,26 +95285,6 @@ struct Light { struct Light__Fields fields; }; -struct Renderer__Fields { - struct Component__Fields _; -}; - -struct Renderer { - struct Renderer__Class *klass; - MonitorData *monitor; - struct Renderer__Fields fields; -}; - -struct MeshRenderer__Fields { - struct Renderer__Fields _; -}; - -struct MeshRenderer { - struct MeshRenderer__Class *klass; - MonitorData *monitor; - struct MeshRenderer__Fields fields; -}; - struct MeshRenderer__Array { struct MeshRenderer__Array__Class *klass; MonitorData *monitor; @@ -94514,6 +96474,19 @@ struct UriParser { struct UriParser__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_System_UriParser_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct UriParser *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_System_UriParser___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_System_UriParser___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_System_UriParser_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_System_UriParser___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_System_UriParser___Array *_entries; @@ -94533,19 +96506,6 @@ struct Dictionary_2_System_String_System_UriParser_ { struct Dictionary_2_System_String_System_UriParser___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_System_UriParser_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct UriParser *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_System_UriParser___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_System_UriParser___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_System_UriParser_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_String_System_UriParser___Array { struct Dictionary_2_TKey_TValue_Entry_System_String_System_UriParser___Array__Class *klass; MonitorData *monitor; @@ -94841,6 +96801,11 @@ struct ListWithEvents_1_UnityEngine_ResourceManagement_ResourceProviders_IResour struct ListWithEvents_1_UnityEngine_ResourceManagement_ResourceProviders_IResourceProvider___Fields fields; }; +struct IResourceProvider { + struct IResourceProvider__Class *klass; + MonitorData *monitor; +}; + struct __declspec(align(8)) List_1_UnityEngine_ResourceManagement_ResourceProviders_IResourceProvider___Fields { struct IResourceProvider__Array *_items; int32_t _size; @@ -94854,11 +96819,6 @@ struct List_1_UnityEngine_ResourceManagement_ResourceProviders_IResourceProvider struct List_1_UnityEngine_ResourceManagement_ResourceProviders_IResourceProvider___Fields fields; }; -struct IResourceProvider { - struct IResourceProvider__Class *klass; - MonitorData *monitor; -}; - struct IResourceProvider__Array { struct IResourceProvider__Array__Class *klass; MonitorData *monitor; @@ -94899,6 +96859,11 @@ struct ListWithEvents_1_UnityEngine_ResourceManagement_IUpdateReceiver_ { struct ListWithEvents_1_UnityEngine_ResourceManagement_IUpdateReceiver___Fields fields; }; +struct IUpdateReceiver { + struct IUpdateReceiver__Class *klass; + MonitorData *monitor; +}; + struct __declspec(align(8)) List_1_UnityEngine_ResourceManagement_IUpdateReceiver___Fields { struct IUpdateReceiver__Array *_items; int32_t _size; @@ -94912,11 +96877,6 @@ struct List_1_UnityEngine_ResourceManagement_IUpdateReceiver_ { struct List_1_UnityEngine_ResourceManagement_IUpdateReceiver___Fields fields; }; -struct IUpdateReceiver { - struct IUpdateReceiver__Class *klass; - MonitorData *monitor; -}; - struct IUpdateReceiver__Array { struct IUpdateReceiver__Array__Class *klass; MonitorData *monitor; @@ -94940,6 +96900,19 @@ struct Action_1_UnityEngine_ResourceManagement_IUpdateReceiver_ { struct Action_1_UnityEngine_ResourceManagement_IUpdateReceiver___Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_ResourceManagement_ResourceProviders_IResourceProvider_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct IResourceProvider *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_ResourceManagement_ResourceProviders_IResourceProvider___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_ResourceManagement_ResourceProviders_IResourceProvider___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_ResourceManagement_ResourceProviders_IResourceProvider_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_UnityEngine_ResourceManagement_ResourceProviders_IResourceProvider___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_ResourceManagement_ResourceProviders_IResourceProvider___Array *_entries; @@ -94959,19 +96932,6 @@ struct Dictionary_2_System_Int32_UnityEngine_ResourceManagement_ResourceProvider struct Dictionary_2_System_Int32_UnityEngine_ResourceManagement_ResourceProviders_IResourceProvider___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_ResourceManagement_ResourceProviders_IResourceProvider_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct IResourceProvider *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_ResourceManagement_ResourceProviders_IResourceProvider___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_ResourceManagement_ResourceProviders_IResourceProvider___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_ResourceManagement_ResourceProviders_IResourceProvider_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_ResourceManagement_ResourceProviders_IResourceProvider___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_ResourceManagement_ResourceProviders_IResourceProvider___Array__Class *klass; MonitorData *monitor; @@ -95034,6 +96994,19 @@ struct IEnumerable_1_UnityEngine_ResourceManagement_ResourceProviders_IResourceP MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_ResourceManagement_Util_IOperationCacheKey_UnityEngine_ResourceManagement_AsyncOperations_IAsyncOperation_ { + int32_t hashCode; + int32_t next; + struct IOperationCacheKey *key; + struct IAsyncOperation *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_ResourceManagement_Util_IOperationCacheKey_UnityEngine_ResourceManagement_AsyncOperations_IAsyncOperation___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_ResourceManagement_Util_IOperationCacheKey_UnityEngine_ResourceManagement_AsyncOperations_IAsyncOperation___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_ResourceManagement_Util_IOperationCacheKey_UnityEngine_ResourceManagement_AsyncOperations_IAsyncOperation_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_ResourceManagement_Util_IOperationCacheKey_UnityEngine_ResourceManagement_AsyncOperations_IAsyncOperation___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_ResourceManagement_Util_IOperationCacheKey_UnityEngine_ResourceManagement_AsyncOperations_IAsyncOperation___Array *_entries; @@ -95053,19 +97026,6 @@ struct Dictionary_2_UnityEngine_ResourceManagement_Util_IOperationCacheKey_Unity struct Dictionary_2_UnityEngine_ResourceManagement_Util_IOperationCacheKey_UnityEngine_ResourceManagement_AsyncOperations_IAsyncOperation___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_ResourceManagement_Util_IOperationCacheKey_UnityEngine_ResourceManagement_AsyncOperations_IAsyncOperation_ { - int32_t hashCode; - int32_t next; - struct IOperationCacheKey *key; - struct IAsyncOperation *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_ResourceManagement_Util_IOperationCacheKey_UnityEngine_ResourceManagement_AsyncOperations_IAsyncOperation___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_ResourceManagement_Util_IOperationCacheKey_UnityEngine_ResourceManagement_AsyncOperations_IAsyncOperation___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_ResourceManagement_Util_IOperationCacheKey_UnityEngine_ResourceManagement_AsyncOperations_IAsyncOperation_ fields; -}; - struct IOperationCacheKey { struct IOperationCacheKey__Class *klass; MonitorData *monitor; @@ -95174,6 +97134,18 @@ struct IEnumerable_1_UnityEngine_ResourceManagement_AsyncOperations_IAsyncOperat MonitorData *monitor; }; +struct HashSet_1_T_Slot_UnityEngine_ResourceManagement_ResourceManager_InstanceOperation_ { + int32_t hashCode; + int32_t next; + struct ResourceManager_InstanceOperation *value; +}; + +struct HashSet_1_T_Slot_UnityEngine_ResourceManagement_ResourceManager_InstanceOperation___Boxed { + struct HashSet_1_T_Slot_UnityEngine_ResourceManagement_ResourceManager_InstanceOperation___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_UnityEngine_ResourceManagement_ResourceManager_InstanceOperation_ fields; +}; + struct __declspec(align(8)) HashSet_1_UnityEngine_ResourceManagement_ResourceManager_InstanceOperation___Fields { struct Int32__Array *_buckets; struct HashSet_1_T_Slot_UnityEngine_ResourceManagement_ResourceManager_InstanceOperation___Array *_slots; @@ -95191,18 +97163,6 @@ struct HashSet_1_UnityEngine_ResourceManagement_ResourceManager_InstanceOperatio struct HashSet_1_UnityEngine_ResourceManagement_ResourceManager_InstanceOperation___Fields fields; }; -struct HashSet_1_T_Slot_UnityEngine_ResourceManagement_ResourceManager_InstanceOperation_ { - int32_t hashCode; - int32_t next; - struct ResourceManager_InstanceOperation *value; -}; - -struct HashSet_1_T_Slot_UnityEngine_ResourceManagement_ResourceManager_InstanceOperation___Boxed { - struct HashSet_1_T_Slot_UnityEngine_ResourceManagement_ResourceManager_InstanceOperation___Class *klass; - MonitorData *monitor; - struct HashSet_1_T_Slot_UnityEngine_ResourceManagement_ResourceManager_InstanceOperation_ fields; -}; - struct InstantiationParameters { struct Vector3 m_Position; struct Quaternion m_Rotation; @@ -95259,6 +97219,18 @@ struct DownloadStatus__Boxed { struct DownloadStatus fields; }; +struct HashSet_1_T_Slot_System_Object_ { + int32_t hashCode; + int32_t next; + struct Object *value; +}; + +struct HashSet_1_T_Slot_System_Object___Boxed { + struct HashSet_1_T_Slot_System_Object___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_System_Object_ fields; +}; + struct __declspec(align(8)) HashSet_1_System_Object___Fields { struct Int32__Array *_buckets; struct HashSet_1_T_Slot_System_Object___Array *_slots; @@ -95276,18 +97248,6 @@ struct HashSet_1_System_Object_ { struct HashSet_1_System_Object___Fields fields; }; -struct HashSet_1_T_Slot_System_Object_ { - int32_t hashCode; - int32_t next; - struct Object *value; -}; - -struct HashSet_1_T_Slot_System_Object___Boxed { - struct HashSet_1_T_Slot_System_Object___Class *klass; - MonitorData *monitor; - struct HashSet_1_T_Slot_System_Object_ fields; -}; - struct HashSet_1_T_Slot_System_Object___Array { struct HashSet_1_T_Slot_System_Object___Array__Class *klass; MonitorData *monitor; @@ -95501,6 +97461,17 @@ struct List_1_UnityEngine_ResourceManagement_AsyncOperations_IAsyncOperation_ { struct List_1_UnityEngine_ResourceManagement_AsyncOperations_IAsyncOperation___Fields fields; }; +struct ResourceManager_DeferredCallbackRegisterRequest { + struct IAsyncOperation *operation; + bool incrementRefCount; +}; + +struct ResourceManager_DeferredCallbackRegisterRequest__Boxed { + struct ResourceManager_DeferredCallbackRegisterRequest__Class *klass; + MonitorData *monitor; + struct ResourceManager_DeferredCallbackRegisterRequest fields; +}; + struct __declspec(align(8)) List_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest___Fields { struct ResourceManager_DeferredCallbackRegisterRequest__Array *_items; int32_t _size; @@ -95514,17 +97485,6 @@ struct List_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackReg struct List_1_UnityEngine_ResourceManagement_ResourceManager_DeferredCallbackRegisterRequest___Fields fields; }; -struct ResourceManager_DeferredCallbackRegisterRequest { - struct IAsyncOperation *operation; - bool incrementRefCount; -}; - -struct ResourceManager_DeferredCallbackRegisterRequest__Boxed { - struct ResourceManager_DeferredCallbackRegisterRequest__Class *klass; - MonitorData *monitor; - struct ResourceManager_DeferredCallbackRegisterRequest fields; -}; - struct ResourceManager_DeferredCallbackRegisterRequest__Array { struct ResourceManager_DeferredCallbackRegisterRequest__Array__Class *klass; MonitorData *monitor; @@ -95608,6 +97568,19 @@ struct ResourceManager_DiagnosticEventContext__Boxed { struct ResourceManager_DiagnosticEventContext fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Type_ { + int32_t hashCode; + int32_t next; + struct Type *key; + struct Type *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Type___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Type___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Type_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Type_System_Type___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Type___Array *_entries; @@ -95627,19 +97600,6 @@ struct Dictionary_2_System_Type_System_Type_ { struct Dictionary_2_System_Type_System_Type___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Type_ { - int32_t hashCode; - int32_t next; - struct Type *key; - struct Type *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Type___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Type___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Type_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Type___Array { struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Type___Array__Class *klass; MonitorData *monitor; @@ -96393,6 +98353,21 @@ struct ICollection_1_System_UriParser___Class { struct ICollection_1_System_UriParser___VTable vtable; }; +struct UriParser___VTable { +}; + +struct UriParser___StaticFields { +}; + +struct UriParser___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UriParser___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UriParser___VTable vtable; +}; + struct KeyValuePair_2_System_String_System_UriParser___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -96587,6 +98562,21 @@ struct UriFormatException__Class { struct UriFormatException__VTable vtable; }; +struct UriFormatException___VTable { +}; + +struct UriFormatException___StaticFields { +}; + +struct UriFormatException___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UriFormatException___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UriFormatException___VTable vtable; +}; + struct UriComponents__Enum__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -97459,6 +99449,21 @@ struct ICollection_1_UnityEngine_ResourceManagement_ResourceProviders_IResourceP struct ICollection_1_UnityEngine_ResourceManagement_ResourceProviders_IResourceProvider___VTable vtable; }; +struct IResourceProvider___VTable { +}; + +struct IResourceProvider___StaticFields { +}; + +struct IResourceProvider___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IResourceProvider___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IResourceProvider___VTable vtable; +}; + struct KeyValuePair_2_System_Int32_UnityEngine_ResourceManagement_ResourceProviders_IResourceProvider___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -97822,6 +99827,21 @@ struct ICollection_1_UnityEngine_ResourceManagement_AsyncOperations_IAsyncOperat struct ICollection_1_UnityEngine_ResourceManagement_AsyncOperations_IAsyncOperation___VTable vtable; }; +struct IAsyncOperation___VTable { +}; + +struct IAsyncOperation___StaticFields { +}; + +struct IAsyncOperation___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IAsyncOperation___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IAsyncOperation___VTable vtable; +}; + struct KeyValuePair_2_UnityEngine_ResourceManagement_Util_IOperationCacheKey_UnityEngine_ResourceManagement_AsyncOperations_IAsyncOperation___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -99778,6 +101798,29 @@ struct EntityEventListener_1_ISwitchState_ { struct EntityEventListener_1_ISwitchState___Fields fields; }; +struct DoorStateTrigger__Fields { + struct MonoBehaviour__Fields _; + struct String *m_StateName; + float m_Delay; + float m_Duration; + struct LayerMask m_LayerMask; + bool m_RequireCharacter; + struct AudioClipSet *m_ActivateAudioClipSet; + struct GameObject *m_Door; + struct GameObject *m_Gate; + float m_RageDuration; + bool m_IsAlreadyOpenDoor; + struct ScheduledEventBase *m_ActivateStateEvent; + struct List_1_UnityEngine_GameObject_ *m_DeathDeactivations; + bool m_IsDoorOpen; +}; + +struct DoorStateTrigger { + struct DoorStateTrigger__Class *klass; + MonitorData *monitor; + struct DoorStateTrigger__Fields fields; +}; + struct FireTrapBehaviour__Fields { struct EntityEventListener_1_ISwitchState___Fields _; struct Animator *animator; @@ -99929,6 +101972,11 @@ struct EntityFlags__Boxed { struct EntityFlags fields; }; +struct IEntityBehaviour { + struct IEntityBehaviour__Class *klass; + MonitorData *monitor; +}; + struct __declspec(align(8)) Entity__Fields { bool _canQueueCommands; bool _canQueueCallbacks; @@ -100006,6 +102054,16 @@ struct BoltObject { MonitorData *monitor; }; +struct __declspec(align(8)) BoltChannel__Fields { + struct BoltConnection *_cn; +}; + +struct BoltChannel { + struct BoltChannel__Class *klass; + MonitorData *monitor; + struct BoltChannel__Fields fields; +}; + struct Scene_1 { int32_t Index; int32_t Sequence; @@ -100301,25 +102359,6 @@ struct UdpConnection { struct UdpConnection__Fields fields; }; -struct __declspec(align(8)) Dictionary_2_UdpKit_UdpChannelName_UdpKit_UdpChannelStreamer___Fields { - struct Int32__Array *_buckets; - struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpChannelName_UdpKit_UdpChannelStreamer___Array *_entries; - int32_t _count; - int32_t _freeList; - int32_t _freeCount; - int32_t _version; - struct IEqualityComparer_1_UdpKit_UdpChannelName_ *_comparer; - struct Dictionary_2_TKey_TValue_KeyCollection_UdpKit_UdpChannelName_UdpKit_UdpChannelStreamer_ *_keys; - struct Dictionary_2_TKey_TValue_ValueCollection_UdpKit_UdpChannelName_UdpKit_UdpChannelStreamer_ *_values; - struct Object *_syncRoot; -}; - -struct Dictionary_2_UdpKit_UdpChannelName_UdpKit_UdpChannelStreamer_ { - struct Dictionary_2_UdpKit_UdpChannelName_UdpKit_UdpChannelStreamer___Class *klass; - MonitorData *monitor; - struct Dictionary_2_UdpKit_UdpChannelName_UdpKit_UdpChannelStreamer___Fields fields; -}; - struct UdpChannelName { int32_t Id; struct String *Name; @@ -100344,6 +102383,25 @@ struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpChannelName_UdpKit_UdpChannelStr struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpChannelName_UdpKit_UdpChannelStreamer_ fields; }; +struct __declspec(align(8)) Dictionary_2_UdpKit_UdpChannelName_UdpKit_UdpChannelStreamer___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpChannelName_UdpKit_UdpChannelStreamer___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_UdpKit_UdpChannelName_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_UdpKit_UdpChannelName_UdpKit_UdpChannelStreamer_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_UdpKit_UdpChannelName_UdpKit_UdpChannelStreamer_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_UdpKit_UdpChannelName_UdpKit_UdpChannelStreamer_ { + struct Dictionary_2_UdpKit_UdpChannelName_UdpKit_UdpChannelStreamer___Class *klass; + MonitorData *monitor; + struct Dictionary_2_UdpKit_UdpChannelName_UdpKit_UdpChannelStreamer___Fields fields; +}; + struct __declspec(align(8)) UdpChannelStreamer__Fields { int32_t Priority; struct UdpStreamChannel *Channel; @@ -100619,6 +102677,17 @@ struct ObjectPool_1_UdpKit_UdpStreamOpBlock_ { struct ObjectPool_1_UdpKit_UdpStreamOpBlock___Fields fields; }; +struct __declspec(align(8)) UdpStreamOpBlock__Fields { + struct UdpStreamOp *Op; + int32_t Number; +}; + +struct UdpStreamOpBlock { + struct UdpStreamOpBlock__Class *klass; + MonitorData *monitor; + struct UdpStreamOpBlock__Fields fields; +}; + struct __declspec(align(8)) Stack_1_UdpKit_UdpStreamOpBlock___Fields { struct UdpStreamOpBlock__Array *_array; int32_t _size; @@ -100632,17 +102701,6 @@ struct Stack_1_UdpKit_UdpStreamOpBlock_ { struct Stack_1_UdpKit_UdpStreamOpBlock___Fields fields; }; -struct __declspec(align(8)) UdpStreamOpBlock__Fields { - struct UdpStreamOp *Op; - int32_t Number; -}; - -struct UdpStreamOpBlock { - struct UdpStreamOpBlock__Class *klass; - MonitorData *monitor; - struct UdpStreamOpBlock__Fields fields; -}; - struct UdpStreamOpBlock__Array { struct UdpStreamOpBlock__Array__Class *klass; MonitorData *monitor; @@ -100825,6 +102883,18 @@ struct UdpPipe { struct UdpPipe__Fields fields; }; +struct UdpPipeHandle { + uint32_t Time_1; + uint32_t Sequence; + struct Object *Object; +}; + +struct UdpPipeHandle__Boxed { + struct UdpPipeHandle__Class *klass; + MonitorData *monitor; + struct UdpPipeHandle fields; +}; + struct __declspec(align(8)) UdpRingBuffer_1_UdpPipeHandle___Fields { int32_t _head; int32_t _tail; @@ -100839,18 +102909,6 @@ struct UdpRingBuffer_1_UdpPipeHandle_ { struct UdpRingBuffer_1_UdpPipeHandle___Fields fields; }; -struct UdpPipeHandle { - uint32_t Time; - uint32_t Sequence; - struct Object *Object; -}; - -struct UdpPipeHandle__Boxed { - struct UdpPipeHandle__Class *klass; - MonitorData *monitor; - struct UdpPipeHandle fields; -}; - struct UdpPipeHandle__Array { struct UdpPipeHandle__Array__Class *klass; MonitorData *monitor; @@ -100864,6 +102922,18 @@ struct IEnumerator_1_UdpKit_UdpPipeHandle_ { MonitorData *monitor; }; +struct UdpPipe_Ack { + uint32_t Time_1; + bool Received; + uint32_t Sequence; +}; + +struct UdpPipe_Ack__Boxed { + struct UdpPipe_Ack__Class *klass; + MonitorData *monitor; + struct UdpPipe_Ack fields; +}; + struct __declspec(align(8)) UdpRingBuffer_1_UdpPipe_Ack___Fields { int32_t _head; int32_t _tail; @@ -100878,18 +102948,6 @@ struct UdpRingBuffer_1_UdpPipe_Ack_ { struct UdpRingBuffer_1_UdpPipe_Ack___Fields fields; }; -struct UdpPipe_Ack { - uint32_t Time; - bool Received; - uint32_t Sequence; -}; - -struct UdpPipe_Ack__Boxed { - struct UdpPipe_Ack__Class *klass; - MonitorData *monitor; - struct UdpPipe_Ack fields; -}; - struct UdpPipe_Ack__Array { struct UdpPipe_Ack__Array__Class *klass; MonitorData *monitor; @@ -101460,6 +103518,23 @@ struct PhotonRegion { struct PhotonRegion__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion_ { + int32_t hashCode; + int32_t next; + #if defined(_CPLUSPLUS_) + PhotonRegion_Regions__Enum key; + #else + int32_t key; + #endif + struct PhotonRegion *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion___Array *_entries; @@ -101479,23 +103554,6 @@ struct Dictionary_2_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_ struct Dictionary_2_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion_ { - int32_t hashCode; - int32_t next; - #if defined(_CPLUSPLUS_) - PhotonRegion_Regions__Enum key; - #else - int32_t key; - #endif - struct PhotonRegion *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion___Array { struct Dictionary_2_TKey_TValue_Entry_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion___Array__Class *klass; MonitorData *monitor; @@ -102146,6 +104204,20 @@ struct IPPacketInformation__Boxed { struct IPPacketInformation fields; }; +struct __declspec(align(8)) SendPacketsElement__Fields { + struct String *m_FilePath; + struct Byte__Array *m_Buffer; + int32_t m_Offset; + int32_t m_Count; + bool m_endOfPacket; +}; + +struct SendPacketsElement { + struct SendPacketsElement__Class *klass; + MonitorData *monitor; + struct SendPacketsElement__Fields fields; +}; + #if defined(_CPLUSPLUS_) enum class TransmitFileOptions__Enum : int32_t { UseDefaultWorkerThread = 0x00000000, @@ -102484,20 +104556,6 @@ struct IList_1_System_ArraySegment_1_ { MonitorData *monitor; }; -struct __declspec(align(8)) SendPacketsElement__Fields { - struct String *m_FilePath; - struct Byte__Array *m_Buffer; - int32_t m_Offset; - int32_t m_Count; - bool m_endOfPacket; -}; - -struct SendPacketsElement { - struct SendPacketsElement__Class *klass; - MonitorData *monitor; - struct SendPacketsElement__Fields fields; -}; - struct SendPacketsElement__Array { struct SendPacketsElement__Array__Class *klass; MonitorData *monitor; @@ -102506,6 +104564,18 @@ struct SendPacketsElement__Array { struct SendPacketsElement *vector[32]; }; +struct ArraySegment_1_Byte_ { + struct Byte__Array *_array; + int32_t _offset; + int32_t _count; +}; + +struct ArraySegment_1_Byte___Boxed { + struct ArraySegment_1_Byte___Class *klass; + MonitorData *monitor; + struct ArraySegment_1_Byte_ fields; +}; + struct __declspec(align(8)) List_1_System_ArraySegment_1___Fields { struct ArraySegment_1_Byte___Array *_items; int32_t _size; @@ -102519,18 +104589,6 @@ struct List_1_System_ArraySegment_1_ { struct List_1_System_ArraySegment_1___Fields fields; }; -struct ArraySegment_1_Byte_ { - struct Byte__Array *_array; - int32_t _offset; - int32_t _count; -}; - -struct ArraySegment_1_Byte___Boxed { - struct ArraySegment_1_Byte___Class *klass; - MonitorData *monitor; - struct ArraySegment_1_Byte_ fields; -}; - struct ArraySegment_1_Byte___Array { struct ArraySegment_1_Byte___Array__Class *klass; MonitorData *monitor; @@ -102724,6 +104782,16 @@ struct PhotonSocket { struct PhotonSocket__Fields fields; }; +struct __declspec(align(8)) UdpPlatformInterface__Fields { + struct Object *_Token_k__BackingField; +}; + +struct UdpPlatformInterface { + struct UdpPlatformInterface__Class *klass; + MonitorData *monitor; + struct UdpPlatformInterface__Fields fields; +}; + struct __declspec(align(8)) List_1_UdpKit_Platform_UdpPlatformInterface___Fields { struct UdpPlatformInterface__Array *_items; int32_t _size; @@ -102737,16 +104805,6 @@ struct List_1_UdpKit_Platform_UdpPlatformInterface_ { struct List_1_UdpKit_Platform_UdpPlatformInterface___Fields fields; }; -struct __declspec(align(8)) UdpPlatformInterface__Fields { - struct Object *_Token_k__BackingField; -}; - -struct UdpPlatformInterface { - struct UdpPlatformInterface__Class *klass; - MonitorData *monitor; - struct UdpPlatformInterface__Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class UdpLinkType__Enum : int32_t { Unknown = 0x00000000, @@ -102932,6 +104990,19 @@ struct Stopwatch { struct Stopwatch__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UdpKit_Platform_Photon_Puncher_StunManager_PingTarget_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct StunManager_PingTarget *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UdpKit_Platform_Photon_Puncher_StunManager_PingTarget___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UdpKit_Platform_Photon_Puncher_StunManager_PingTarget___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UdpKit_Platform_Photon_Puncher_StunManager_PingTarget_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_UdpKit_Platform_Photon_Puncher_StunManager_PingTarget___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_UdpKit_Platform_Photon_Puncher_StunManager_PingTarget___Array *_entries; @@ -102951,19 +105022,6 @@ struct Dictionary_2_System_Int32_UdpKit_Platform_Photon_Puncher_StunManager_Ping struct Dictionary_2_System_Int32_UdpKit_Platform_Photon_Puncher_StunManager_PingTarget___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UdpKit_Platform_Photon_Puncher_StunManager_PingTarget_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct StunManager_PingTarget *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UdpKit_Platform_Photon_Puncher_StunManager_PingTarget___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UdpKit_Platform_Photon_Puncher_StunManager_PingTarget___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UdpKit_Platform_Photon_Puncher_StunManager_PingTarget_ fields; -}; - struct __declspec(align(8)) StunManager_PingTarget__Fields { uint32_t ID; struct UdpEndPoint targetEndPoint; @@ -103077,19 +105135,6 @@ struct UdpPacketPool { struct UdpPacketPool__Fields fields; }; -struct __declspec(align(8)) Stack_1_UdpKit_UdpPacket___Fields { - struct UdpPacket__Array *_array; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct Stack_1_UdpKit_UdpPacket_ { - struct Stack_1_UdpKit_UdpPacket___Class *klass; - MonitorData *monitor; - struct Stack_1_UdpKit_UdpPacket___Fields fields; -}; - struct __declspec(align(8)) UdpPacket__Fields { bool Write; struct Object *_UserToken_k__BackingField; @@ -103106,6 +105151,19 @@ struct UdpPacket { struct UdpPacket__Fields fields; }; +struct __declspec(align(8)) Stack_1_UdpKit_UdpPacket___Fields { + struct UdpPacket__Array *_array; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct Stack_1_UdpKit_UdpPacket_ { + struct Stack_1_UdpKit_UdpPacket___Class *klass; + MonitorData *monitor; + struct Stack_1_UdpKit_UdpPacket___Fields fields; +}; + struct UdpPacket__Array { struct UdpPacket__Array__Class *klass; MonitorData *monitor; @@ -103203,19 +105261,6 @@ struct ProtocolClient { struct ProtocolClient__Fields fields; }; -struct __declspec(align(8)) List_1_UdpKit_Protocol_Query___Fields { - struct Query__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UdpKit_Protocol_Query_ { - struct List_1_UdpKit_Protocol_Query___Class *klass; - MonitorData *monitor; - struct List_1_UdpKit_Protocol_Query___Fields fields; -}; - struct __declspec(align(8)) Message__Fields { int32_t _ptr; struct Byte__Array *_buffer; @@ -103249,6 +105294,19 @@ struct Query { struct Query__Fields fields; }; +struct __declspec(align(8)) List_1_UdpKit_Protocol_Query___Fields { + struct Query__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UdpKit_Protocol_Query_ { + struct List_1_UdpKit_Protocol_Query___Class *klass; + MonitorData *monitor; + struct List_1_UdpKit_Protocol_Query___Fields fields; +}; + struct Result__Fields { struct Message__Fields _; struct Guid Query; @@ -103273,25 +105331,6 @@ struct IEnumerator_1_UdpKit_Protocol_Query_ { MonitorData *monitor; }; -struct __declspec(align(8)) Dictionary_2_System_Type_UdpKit_Protocol_ProtocolClient_MsgHandler___Fields { - struct Int32__Array *_buckets; - struct Dictionary_2_TKey_TValue_Entry_System_Type_UdpKit_Protocol_ProtocolClient_MsgHandler___Array *_entries; - int32_t _count; - int32_t _freeList; - int32_t _freeCount; - int32_t _version; - struct IEqualityComparer_1_System_Type_ *_comparer; - struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_UdpKit_Protocol_ProtocolClient_MsgHandler_ *_keys; - struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_UdpKit_Protocol_ProtocolClient_MsgHandler_ *_values; - struct Object *_syncRoot; -}; - -struct Dictionary_2_System_Type_UdpKit_Protocol_ProtocolClient_MsgHandler_ { - struct Dictionary_2_System_Type_UdpKit_Protocol_ProtocolClient_MsgHandler___Class *klass; - MonitorData *monitor; - struct Dictionary_2_System_Type_UdpKit_Protocol_ProtocolClient_MsgHandler___Fields fields; -}; - struct ProtocolClient_MsgHandler { struct UdpEndPoint Filter; struct Action_1_UdpKit_Protocol_Message_ *Action; @@ -103316,6 +105355,25 @@ struct Dictionary_2_TKey_TValue_Entry_System_Type_UdpKit_Protocol_ProtocolClient struct Dictionary_2_TKey_TValue_Entry_System_Type_UdpKit_Protocol_ProtocolClient_MsgHandler_ fields; }; +struct __declspec(align(8)) Dictionary_2_System_Type_UdpKit_Protocol_ProtocolClient_MsgHandler___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_System_Type_UdpKit_Protocol_ProtocolClient_MsgHandler___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_System_Type_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_UdpKit_Protocol_ProtocolClient_MsgHandler_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_UdpKit_Protocol_ProtocolClient_MsgHandler_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_System_Type_UdpKit_Protocol_ProtocolClient_MsgHandler_ { + struct Dictionary_2_System_Type_UdpKit_Protocol_ProtocolClient_MsgHandler___Class *klass; + MonitorData *monitor; + struct Dictionary_2_System_Type_UdpKit_Protocol_ProtocolClient_MsgHandler___Fields fields; +}; + struct Action_1_UdpKit_Protocol_Message___Fields { struct MulticastDelegate__Fields _; }; @@ -103401,25 +105459,6 @@ struct IEnumerable_1_UdpKit_Protocol_ProtocolClient_MsgHandler_ { MonitorData *monitor; }; -struct __declspec(align(8)) Dictionary_2_System_Type_UdpKit_Protocol_ProtocolClient_AckCallback___Fields { - struct Int32__Array *_buckets; - struct Dictionary_2_TKey_TValue_Entry_System_Type_UdpKit_Protocol_ProtocolClient_AckCallback___Array *_entries; - int32_t _count; - int32_t _freeList; - int32_t _freeCount; - int32_t _version; - struct IEqualityComparer_1_System_Type_ *_comparer; - struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_UdpKit_Protocol_ProtocolClient_AckCallback_ *_keys; - struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_UdpKit_Protocol_ProtocolClient_AckCallback_ *_values; - struct Object *_syncRoot; -}; - -struct Dictionary_2_System_Type_UdpKit_Protocol_ProtocolClient_AckCallback_ { - struct Dictionary_2_System_Type_UdpKit_Protocol_ProtocolClient_AckCallback___Class *klass; - MonitorData *monitor; - struct Dictionary_2_System_Type_UdpKit_Protocol_ProtocolClient_AckCallback___Fields fields; -}; - struct ProtocolClient_AckCallback { struct UdpEndPoint Filter; struct Action_1_UdpKit_Protocol_Query_ *Action; @@ -103444,6 +105483,25 @@ struct Dictionary_2_TKey_TValue_Entry_System_Type_UdpKit_Protocol_ProtocolClient struct Dictionary_2_TKey_TValue_Entry_System_Type_UdpKit_Protocol_ProtocolClient_AckCallback_ fields; }; +struct __declspec(align(8)) Dictionary_2_System_Type_UdpKit_Protocol_ProtocolClient_AckCallback___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_System_Type_UdpKit_Protocol_ProtocolClient_AckCallback___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_System_Type_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_UdpKit_Protocol_ProtocolClient_AckCallback_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_UdpKit_Protocol_ProtocolClient_AckCallback_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_System_Type_UdpKit_Protocol_ProtocolClient_AckCallback_ { + struct Dictionary_2_System_Type_UdpKit_Protocol_ProtocolClient_AckCallback___Class *klass; + MonitorData *monitor; + struct Dictionary_2_System_Type_UdpKit_Protocol_ProtocolClient_AckCallback___Fields fields; +}; + struct Action_1_UdpKit_Protocol_Query___Fields { struct MulticastDelegate__Fields _; }; @@ -103620,6 +105678,19 @@ struct IEnumerator_1_UdpKit_UdpConnection_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_Byte_ { + int32_t hashCode; + int32_t next; + struct UdpEndPoint key; + struct Byte__Array *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_Byte___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_Byte___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_Byte_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UdpKit_UdpEndPoint_System_Byte___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_Byte___Array *_entries; @@ -103639,19 +105710,6 @@ struct Dictionary_2_UdpKit_UdpEndPoint_System_Byte_ { struct Dictionary_2_UdpKit_UdpEndPoint_System_Byte___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_Byte_ { - int32_t hashCode; - int32_t next; - struct UdpEndPoint key; - struct Byte__Array *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_Byte___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_Byte___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_Byte_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_Byte___Array { struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_Byte___Array__Class *klass; MonitorData *monitor; @@ -103742,6 +105800,19 @@ struct IEnumerable_1_System_Byte_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_UdpKit_UdpConnection_ { + int32_t hashCode; + int32_t next; + struct UdpEndPoint key; + struct UdpConnection *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_UdpKit_UdpConnection___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_UdpKit_UdpConnection___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_UdpKit_UdpConnection_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UdpKit_UdpEndPoint_UdpKit_UdpConnection___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_UdpKit_UdpConnection___Array *_entries; @@ -103761,19 +105832,6 @@ struct Dictionary_2_UdpKit_UdpEndPoint_UdpKit_UdpConnection_ { struct Dictionary_2_UdpKit_UdpEndPoint_UdpKit_UdpConnection___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_UdpKit_UdpConnection_ { - int32_t hashCode; - int32_t next; - struct UdpEndPoint key; - struct UdpConnection *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_UdpKit_UdpConnection___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_UdpKit_UdpConnection___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_UdpKit_UdpConnection_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_UdpKit_UdpConnection___Array { struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_UdpKit_UdpConnection___Array__Class *klass; MonitorData *monitor; @@ -103836,6 +105894,19 @@ struct IEnumerable_1_UdpKit_UdpConnection_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpChannelName_UdpKit_UdpStreamChannel_ { + int32_t hashCode; + int32_t next; + struct UdpChannelName key; + struct UdpStreamChannel *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpChannelName_UdpKit_UdpStreamChannel___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpChannelName_UdpKit_UdpStreamChannel___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpChannelName_UdpKit_UdpStreamChannel_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UdpKit_UdpChannelName_UdpKit_UdpStreamChannel___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpChannelName_UdpKit_UdpStreamChannel___Array *_entries; @@ -103855,19 +105926,6 @@ struct Dictionary_2_UdpKit_UdpChannelName_UdpKit_UdpStreamChannel_ { struct Dictionary_2_UdpKit_UdpChannelName_UdpKit_UdpStreamChannel___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpChannelName_UdpKit_UdpStreamChannel_ { - int32_t hashCode; - int32_t next; - struct UdpChannelName key; - struct UdpStreamChannel *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpChannelName_UdpKit_UdpStreamChannel___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpChannelName_UdpKit_UdpStreamChannel___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpChannelName_UdpKit_UdpStreamChannel_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpChannelName_UdpKit_UdpStreamChannel___Array { struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpChannelName_UdpKit_UdpStreamChannel___Array__Class *klass; MonitorData *monitor; @@ -103966,16 +106024,6 @@ struct List_1_UdpKit_UdpChannelStreamer_ { struct List_1_UdpKit_UdpChannelStreamer___Fields fields; }; -struct __declspec(align(8)) BoltChannel__Fields { - struct BoltConnection *_cn; -}; - -struct BoltChannel { - struct BoltChannel__Class *klass; - MonitorData *monitor; - struct BoltChannel__Fields fields; -}; - struct EventChannel__Fields { struct BoltChannel__Fields _; struct List_1_Photon_Bolt_EventUnreliable_ *unreliableSend; @@ -103989,6 +106037,18 @@ struct EventChannel { struct EventChannel__Fields fields; }; +struct EventUnreliable { + bool Skipped; + struct Event *NetworkEvent; + float Priority; +}; + +struct EventUnreliable__Boxed { + struct EventUnreliable__Class *klass; + MonitorData *monitor; + struct EventUnreliable fields; +}; + struct __declspec(align(8)) List_1_Photon_Bolt_EventUnreliable___Fields { struct EventUnreliable__Array *_items; int32_t _size; @@ -104002,18 +106062,6 @@ struct List_1_Photon_Bolt_EventUnreliable_ { struct List_1_Photon_Bolt_EventUnreliable___Fields fields; }; -struct EventUnreliable { - bool Skipped; - struct Event *NetworkEvent; - float Priority; -}; - -struct EventUnreliable__Boxed { - struct EventUnreliable__Class *klass; - MonitorData *monitor; - struct EventUnreliable fields; -}; - struct __declspec(align(8)) NetworkObj__Fields { struct String *Path; struct NetworkObj *Root; @@ -104125,29 +106173,6 @@ struct TypeId__Boxed { struct TypeId fields; }; -struct __declspec(align(8)) NetworkObj_Meta__Fields { - struct TypeId TypeId; - struct BitSet__Array *Filters; - struct Priority__Array *PropertiesTempPriority; - struct NetworkPropertyInfo__Array *Properties; - struct HashSet_1_System_String_ *CallbackPaths; - struct Stack_1_Photon_Bolt_NetworkStorage_ *StoragePool; - struct List_1_Photon_Bolt_NetworkPropertyInfo_ *OnRender; - struct List_1_Photon_Bolt_NetworkPropertyInfo_ *OnSimulateAfter; - struct List_1_Photon_Bolt_NetworkPropertyInfo_ *OnSimulateBefore; - struct List_1_Photon_Bolt_NetworkPropertyInfo_ *OnControlGainedLost; - struct List_1_Photon_Bolt_NetworkPropertyInfo_ *OnFrameCloned; - int32_t CountObjects; - int32_t CountStorage; - int32_t CountProperties; -}; - -struct NetworkObj_Meta { - struct NetworkObj_Meta__Class *klass; - MonitorData *monitor; - struct NetworkObj_Meta__Fields fields; -}; - struct __declspec(align(8)) BitSet__Fields { uint64_t Bits0; uint64_t Bits1; @@ -104173,14 +106198,6 @@ struct BitSet { struct BitSet__Fields fields; }; -struct BitSet__Array { - struct BitSet__Array__Class *klass; - MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - struct BitSet *vector[32]; -}; - struct Priority { int32_t PropertyIndex; int32_t PropertyPriority; @@ -104193,14 +106210,6 @@ struct Priority__Boxed { struct Priority fields; }; -struct Priority__Array { - struct Priority__Array__Class *klass; - MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - struct Priority vector[32]; -}; - struct NetworkPropertyInfo { struct Int32__Array *Indices; struct String__Array *Paths; @@ -104214,6 +106223,45 @@ struct NetworkPropertyInfo__Boxed { struct NetworkPropertyInfo fields; }; +struct __declspec(align(8)) NetworkObj_Meta__Fields { + struct TypeId TypeId; + struct BitSet__Array *Filters; + struct Priority__Array *PropertiesTempPriority; + struct NetworkPropertyInfo__Array *Properties; + struct HashSet_1_System_String_ *CallbackPaths; + struct Stack_1_Photon_Bolt_NetworkStorage_ *StoragePool; + struct List_1_Photon_Bolt_NetworkPropertyInfo_ *OnRender; + struct List_1_Photon_Bolt_NetworkPropertyInfo_ *OnSimulateAfter; + struct List_1_Photon_Bolt_NetworkPropertyInfo_ *OnSimulateBefore; + struct List_1_Photon_Bolt_NetworkPropertyInfo_ *OnControlGainedLost; + struct List_1_Photon_Bolt_NetworkPropertyInfo_ *OnFrameCloned; + int32_t CountObjects; + int32_t CountStorage; + int32_t CountProperties; +}; + +struct NetworkObj_Meta { + struct NetworkObj_Meta__Class *klass; + MonitorData *monitor; + struct NetworkObj_Meta__Fields fields; +}; + +struct BitSet__Array { + struct BitSet__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct BitSet *vector[32]; +}; + +struct Priority__Array { + struct Priority__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Priority vector[32]; +}; + struct PropertyInterpolationSettings { bool Enabled; float SnapMagnitude; @@ -104324,22 +106372,6 @@ struct NetworkProperty_Bool { struct NetworkProperty_Bool__Fields fields; }; -struct NetworkStorage__Fields { - struct BitSet__Fields _; - int32_t Frame; - struct NetworkObj *Root; - struct NetworkValue__Array *Values; - struct NetworkStorage *_Photon_Bolt_Collections_IBoltListNode_Photon_Bolt_NetworkStorage__prev_k__BackingField; - struct NetworkStorage *_Photon_Bolt_Collections_IBoltListNode_Photon_Bolt_NetworkStorage__next_k__BackingField; - struct Object *_Photon_Bolt_Collections_IBoltListNode_Photon_Bolt_NetworkStorage__list_k__BackingField; -}; - -struct NetworkStorage { - struct NetworkStorage__Class *klass; - MonitorData *monitor; - struct NetworkStorage__Fields fields; -}; - struct NetworkTrigger { int32_t Frame; int32_t History; @@ -104394,6 +106426,22 @@ struct NetworkValue__Boxed { struct NetworkValue fields; }; +struct NetworkStorage__Fields { + struct BitSet__Fields _; + int32_t Frame; + struct NetworkObj *Root; + struct NetworkValue__Array *Values; + struct NetworkStorage *_Photon_Bolt_Collections_IBoltListNode_Photon_Bolt_NetworkStorage__prev_k__BackingField; + struct NetworkStorage *_Photon_Bolt_Collections_IBoltListNode_Photon_Bolt_NetworkStorage__next_k__BackingField; + struct Object *_Photon_Bolt_Collections_IBoltListNode_Photon_Bolt_NetworkStorage__list_k__BackingField; +}; + +struct NetworkStorage { + struct NetworkStorage__Class *klass; + MonitorData *monitor; + struct NetworkStorage__Fields fields; +}; + struct NetworkValue__Array { struct NetworkValue__Array__Class *klass; MonitorData *monitor; @@ -104422,6 +106470,16 @@ struct NetworkState { struct NetworkState__Fields fields; }; +struct Animator__Fields { + struct Behaviour__Fields _; +}; + +struct Animator { + struct Animator__Class *klass; + MonitorData *monitor; + struct Animator__Fields fields; +}; + struct __declspec(align(8)) List_1_UnityEngine_Animator___Fields { struct Animator__Array *_items; int32_t _size; @@ -104435,16 +106493,6 @@ struct List_1_UnityEngine_Animator_ { struct List_1_UnityEngine_Animator___Fields fields; }; -struct Animator__Fields { - struct Behaviour__Fields _; -}; - -struct Animator { - struct Animator__Class *klass; - MonitorData *monitor; - struct Animator__Fields fields; -}; - struct Animator__Array { struct Animator__Array__Class *klass; MonitorData *monitor; @@ -104534,6 +106582,16 @@ struct ObjectPool_1_InnFountainState_ { struct ObjectPool_1_InnFountainState___Fields fields; }; +struct InnFountainState__Fields { + struct NetworkState__Fields _; +}; + +struct InnFountainState { + struct InnFountainState__Class *klass; + MonitorData *monitor; + struct InnFountainState__Fields fields; +}; + struct __declspec(align(8)) Stack_1_Photon_Bolt_InnFountainState___Fields { struct InnFountainState__Array *_array; int32_t _size; @@ -104547,16 +106605,6 @@ struct Stack_1_Photon_Bolt_InnFountainState_ { struct Stack_1_Photon_Bolt_InnFountainState___Fields fields; }; -struct InnFountainState__Fields { - struct NetworkState__Fields _; -}; - -struct InnFountainState { - struct InnFountainState__Class *klass; - MonitorData *monitor; - struct InnFountainState__Fields fields; -}; - struct ProxyFlags { int32_t bits; }; @@ -104591,21 +106639,6 @@ struct EntityProxy { struct EntityProxy__Fields fields; }; -struct __declspec(align(8)) Queue_1_Photon_Bolt_Internal_EntityProxyEnvelope___Fields { - struct EntityProxyEnvelope__Array *_array; - int32_t _head; - int32_t _tail; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct Queue_1_Photon_Bolt_Internal_EntityProxyEnvelope_ { - struct Queue_1_Photon_Bolt_Internal_EntityProxyEnvelope___Class *klass; - MonitorData *monitor; - struct Queue_1_Photon_Bolt_Internal_EntityProxyEnvelope___Fields fields; -}; - struct __declspec(align(8)) EntityProxyEnvelope__Fields { int32_t PacketNumber; struct ProxyFlags Flags; @@ -104621,6 +106654,21 @@ struct EntityProxyEnvelope { struct EntityProxyEnvelope__Fields fields; }; +struct __declspec(align(8)) Queue_1_Photon_Bolt_Internal_EntityProxyEnvelope___Fields { + struct EntityProxyEnvelope__Array *_array; + int32_t _head; + int32_t _tail; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct Queue_1_Photon_Bolt_Internal_EntityProxyEnvelope_ { + struct Queue_1_Photon_Bolt_Internal_EntityProxyEnvelope___Class *klass; + MonitorData *monitor; + struct Queue_1_Photon_Bolt_Internal_EntityProxyEnvelope___Fields fields; +}; + struct __declspec(align(8)) List_1_Photon_Bolt_Priority___Fields { struct Priority__Array *_items; int32_t _size; @@ -104828,6 +106876,19 @@ struct NetworkState_PropertyField { struct NetworkState_PropertyField__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_Photon_Bolt_Internal_IDebugDrawerObjectArray_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct IDebugDrawerObjectArray *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_Photon_Bolt_Internal_IDebugDrawerObjectArray___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_Photon_Bolt_Internal_IDebugDrawerObjectArray___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_Photon_Bolt_Internal_IDebugDrawerObjectArray_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_Photon_Bolt_Internal_IDebugDrawerObjectArray___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_Photon_Bolt_Internal_IDebugDrawerObjectArray___Array *_entries; @@ -104847,19 +106908,6 @@ struct Dictionary_2_System_Int32_Photon_Bolt_Internal_IDebugDrawerObjectArray_ { struct Dictionary_2_System_Int32_Photon_Bolt_Internal_IDebugDrawerObjectArray___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_Photon_Bolt_Internal_IDebugDrawerObjectArray_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct IDebugDrawerObjectArray *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_Photon_Bolt_Internal_IDebugDrawerObjectArray___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_Photon_Bolt_Internal_IDebugDrawerObjectArray___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_Photon_Bolt_Internal_IDebugDrawerObjectArray_ fields; -}; - struct IDebugDrawerObjectArray { struct IDebugDrawerObjectArray__Class *klass; MonitorData *monitor; @@ -104940,6 +106988,19 @@ struct IEnumerable_1_Photon_Bolt_Internal_IDebugDrawerObjectArray_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Photon_Bolt_PropertyCallback_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct List_1_Photon_Bolt_PropertyCallback_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Photon_Bolt_PropertyCallback___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Photon_Bolt_PropertyCallback___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Photon_Bolt_PropertyCallback_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_List_1_Photon_Bolt_PropertyCallback___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Photon_Bolt_PropertyCallback___Array *_entries; @@ -104959,19 +107020,6 @@ struct Dictionary_2_System_String_List_1_Photon_Bolt_PropertyCallback_ { struct Dictionary_2_System_String_List_1_Photon_Bolt_PropertyCallback___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Photon_Bolt_PropertyCallback_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct List_1_Photon_Bolt_PropertyCallback_ *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Photon_Bolt_PropertyCallback___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Photon_Bolt_PropertyCallback___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Photon_Bolt_PropertyCallback_ fields; -}; - struct __declspec(align(8)) List_1_Photon_Bolt_PropertyCallback___Fields { struct PropertyCallback__Array *_items; int32_t _size; @@ -105073,6 +107121,19 @@ struct IEnumerable_1_List_1_Photon_Bolt_PropertyCallback_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Photon_Bolt_PropertyCallbackSimple_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct List_1_Photon_Bolt_PropertyCallbackSimple_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Photon_Bolt_PropertyCallbackSimple___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Photon_Bolt_PropertyCallbackSimple___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Photon_Bolt_PropertyCallbackSimple_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_List_1_Photon_Bolt_PropertyCallbackSimple___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Photon_Bolt_PropertyCallbackSimple___Array *_entries; @@ -105092,19 +107153,6 @@ struct Dictionary_2_System_String_List_1_Photon_Bolt_PropertyCallbackSimple_ { struct Dictionary_2_System_String_List_1_Photon_Bolt_PropertyCallbackSimple___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Photon_Bolt_PropertyCallbackSimple_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct List_1_Photon_Bolt_PropertyCallbackSimple_ *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Photon_Bolt_PropertyCallbackSimple___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Photon_Bolt_PropertyCallbackSimple___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Photon_Bolt_PropertyCallbackSimple_ fields; -}; - struct __declspec(align(8)) List_1_Photon_Bolt_PropertyCallbackSimple___Fields { struct PropertyCallbackSimple__Array *_items; int32_t _size; @@ -105214,6 +107262,18 @@ struct NetworkPropertyInfo__Array { struct NetworkPropertyInfo vector[32]; }; +struct HashSet_1_T_Slot_System_String_ { + int32_t hashCode; + int32_t next; + struct String *value; +}; + +struct HashSet_1_T_Slot_System_String___Boxed { + struct HashSet_1_T_Slot_System_String___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_System_String_ fields; +}; + struct __declspec(align(8)) HashSet_1_System_String___Fields { struct Int32__Array *_buckets; struct HashSet_1_T_Slot_System_String___Array *_slots; @@ -105231,18 +107291,6 @@ struct HashSet_1_System_String_ { struct HashSet_1_System_String___Fields fields; }; -struct HashSet_1_T_Slot_System_String_ { - int32_t hashCode; - int32_t next; - struct String *value; -}; - -struct HashSet_1_T_Slot_System_String___Boxed { - struct HashSet_1_T_Slot_System_String___Class *klass; - MonitorData *monitor; - struct HashSet_1_T_Slot_System_String_ fields; -}; - struct HashSet_1_T_Slot_System_String___Array { struct HashSet_1_T_Slot_System_String___Array__Class *klass; MonitorData *monitor; @@ -105331,6 +107379,16 @@ struct ObjectPool_1_InteractEvent_ { struct ObjectPool_1_InteractEvent___Fields fields; }; +struct InteractEvent__Fields { + struct Event__Fields _; +}; + +struct InteractEvent { + struct InteractEvent__Class *klass; + MonitorData *monitor; + struct InteractEvent__Fields fields; +}; + struct __declspec(align(8)) Stack_1_Photon_Bolt_InteractEvent___Fields { struct InteractEvent__Array *_array; int32_t _size; @@ -105344,16 +107402,6 @@ struct Stack_1_Photon_Bolt_InteractEvent_ { struct Stack_1_Photon_Bolt_InteractEvent___Fields fields; }; -struct InteractEvent__Fields { - struct Event__Fields _; -}; - -struct InteractEvent { - struct InteractEvent__Class *klass; - MonitorData *monitor; - struct InteractEvent__Fields fields; -}; - struct InteractEvent__Array { struct InteractEvent__Array__Class *klass; MonitorData *monitor; @@ -105380,32 +107428,6 @@ struct IEnumerator_1_Photon_Bolt_EventUnreliable_ { MonitorData *monitor; }; -struct BoltSequenceGenerator { - uint32_t mask; - uint32_t sequence; -}; - -struct BoltSequenceGenerator__Boxed { - struct BoltSequenceGenerator__Class *klass; - MonitorData *monitor; - struct BoltSequenceGenerator fields; -}; - -struct __declspec(align(8)) EventReliableSendBuffer__Fields { - int32_t tail; - int32_t mask; - int32_t shift; - int32_t count; - struct EventReliableSendBuffer_Node__Array *nodes; - struct BoltSequenceGenerator generator; -}; - -struct EventReliableSendBuffer { - struct EventReliableSendBuffer__Class *klass; - MonitorData *monitor; - struct EventReliableSendBuffer__Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class EventReliableSendBuffer_State__Enum : int32_t { Free = 0x00000000, @@ -105459,6 +107481,32 @@ struct EventReliableSendBuffer_Node__Boxed { struct EventReliableSendBuffer_Node fields; }; +struct BoltSequenceGenerator { + uint32_t mask; + uint32_t sequence; +}; + +struct BoltSequenceGenerator__Boxed { + struct BoltSequenceGenerator__Class *klass; + MonitorData *monitor; + struct BoltSequenceGenerator fields; +}; + +struct __declspec(align(8)) EventReliableSendBuffer__Fields { + int32_t tail; + int32_t mask; + int32_t shift; + int32_t count; + struct EventReliableSendBuffer_Node__Array *nodes; + struct BoltSequenceGenerator generator; +}; + +struct EventReliableSendBuffer { + struct EventReliableSendBuffer__Class *klass; + MonitorData *monitor; + struct EventReliableSendBuffer__Fields fields; +}; + struct EventReliableSendBuffer_Node__Array { struct EventReliableSendBuffer_Node__Array__Class *klass; MonitorData *monitor; @@ -105467,6 +107515,17 @@ struct EventReliableSendBuffer_Node__Array { struct EventReliableSendBuffer_Node vector[32]; }; +struct EventReliableRecvBuffer_Node { + bool Received; + struct EventReliable Value; +}; + +struct EventReliableRecvBuffer_Node__Boxed { + struct EventReliableRecvBuffer_Node__Class *klass; + MonitorData *monitor; + struct EventReliableRecvBuffer_Node fields; +}; + struct __declspec(align(8)) EventReliableRecvBuffer__Fields { int32_t tail; int32_t mask; @@ -105482,17 +107541,6 @@ struct EventReliableRecvBuffer { struct EventReliableRecvBuffer__Fields fields; }; -struct EventReliableRecvBuffer_Node { - bool Received; - struct EventReliable Value; -}; - -struct EventReliableRecvBuffer_Node__Boxed { - struct EventReliableRecvBuffer_Node__Class *klass; - MonitorData *monitor; - struct EventReliableRecvBuffer_Node fields; -}; - struct EventReliableRecvBuffer_Node__Array { struct EventReliableRecvBuffer_Node__Array__Class *klass; MonitorData *monitor; @@ -105640,6 +107688,19 @@ struct EntityLookup { struct EntityLookup__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_NetworkId_Photon_Bolt_Internal_EntityProxy_ { + int32_t hashCode; + int32_t next; + struct NetworkId key; + struct EntityProxy *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_NetworkId_Photon_Bolt_Internal_EntityProxy___Boxed { + struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_NetworkId_Photon_Bolt_Internal_EntityProxy___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_NetworkId_Photon_Bolt_Internal_EntityProxy_ fields; +}; + struct __declspec(align(8)) Dictionary_2_Photon_Bolt_NetworkId_Photon_Bolt_Internal_EntityProxy___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_NetworkId_Photon_Bolt_Internal_EntityProxy___Array *_entries; @@ -105659,19 +107720,6 @@ struct Dictionary_2_Photon_Bolt_NetworkId_Photon_Bolt_Internal_EntityProxy_ { struct Dictionary_2_Photon_Bolt_NetworkId_Photon_Bolt_Internal_EntityProxy___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_NetworkId_Photon_Bolt_Internal_EntityProxy_ { - int32_t hashCode; - int32_t next; - struct NetworkId key; - struct EntityProxy *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_NetworkId_Photon_Bolt_Internal_EntityProxy___Boxed { - struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_NetworkId_Photon_Bolt_Internal_EntityProxy___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_NetworkId_Photon_Bolt_Internal_EntityProxy_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_NetworkId_Photon_Bolt_Internal_EntityProxy___Array { struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_NetworkId_Photon_Bolt_Internal_EntityProxy___Array__Class *klass; MonitorData *monitor; @@ -105875,11 +107923,6 @@ struct IEntitySerializer { MonitorData *monitor; }; -struct IEntityBehaviour { - struct IEntityBehaviour__Class *klass; - MonitorData *monitor; -}; - struct IEntityBehaviour__Array { struct IEntityBehaviour__Array__Class *klass; MonitorData *monitor; @@ -105962,6 +108005,18 @@ struct EventDispatcher { struct EventDispatcher__Fields fields; }; +struct EventDispatcher_EventListener { + struct IEventListener *Listener; + struct GameObject *GameObject; + struct MonoBehaviour *Behaviour; +}; + +struct EventDispatcher_EventListener__Boxed { + struct EventDispatcher_EventListener__Class *klass; + MonitorData *monitor; + struct EventDispatcher_EventListener fields; +}; + struct __declspec(align(8)) List_1_Photon_Bolt_EventDispatcher_EventListener___Fields { struct EventDispatcher_EventListener__Array *_items; int32_t _size; @@ -105975,18 +108030,6 @@ struct List_1_Photon_Bolt_EventDispatcher_EventListener_ { struct List_1_Photon_Bolt_EventDispatcher_EventListener___Fields fields; }; -struct EventDispatcher_EventListener { - struct IEventListener *Listener; - struct GameObject *GameObject; - struct MonoBehaviour *Behaviour; -}; - -struct EventDispatcher_EventListener__Boxed { - struct EventDispatcher_EventListener__Class *klass; - MonitorData *monitor; - struct EventDispatcher_EventListener fields; -}; - struct IEventListener { struct IEventListener__Class *klass; MonitorData *monitor; @@ -106005,6 +108048,19 @@ struct IEnumerator_1_Photon_Bolt_EventDispatcher_EventListener_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Type_List_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ { + int32_t hashCode; + int32_t next; + struct Type *key; + struct List_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_List_1_Photon_Bolt_EventDispatcher_CallbackWrapper___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Type_List_1_Photon_Bolt_EventDispatcher_CallbackWrapper___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Type_List_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Type_List_1_Photon_Bolt_EventDispatcher_CallbackWrapper___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Type_List_1_Photon_Bolt_EventDispatcher_CallbackWrapper___Array *_entries; @@ -106024,17 +108080,15 @@ struct Dictionary_2_System_Type_List_1_Photon_Bolt_EventDispatcher_CallbackWrapp struct Dictionary_2_System_Type_List_1_Photon_Bolt_EventDispatcher_CallbackWrapper___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Type_List_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ { - int32_t hashCode; - int32_t next; - struct Type *key; - struct List_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ *value; +struct EventDispatcher_CallbackWrapper { + struct Object *Original; + struct Action_1_Photon_Bolt_Event_ *Wrapper; }; -struct Dictionary_2_TKey_TValue_Entry_System_Type_List_1_Photon_Bolt_EventDispatcher_CallbackWrapper___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Type_List_1_Photon_Bolt_EventDispatcher_CallbackWrapper___Class *klass; +struct EventDispatcher_CallbackWrapper__Boxed { + struct EventDispatcher_CallbackWrapper__Class *klass; MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Type_List_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ fields; + struct EventDispatcher_CallbackWrapper fields; }; struct __declspec(align(8)) List_1_Photon_Bolt_EventDispatcher_CallbackWrapper___Fields { @@ -106050,17 +108104,6 @@ struct List_1_Photon_Bolt_EventDispatcher_CallbackWrapper_ { struct List_1_Photon_Bolt_EventDispatcher_CallbackWrapper___Fields fields; }; -struct EventDispatcher_CallbackWrapper { - struct Object *Original; - struct Action_1_Photon_Bolt_Event_ *Wrapper; -}; - -struct EventDispatcher_CallbackWrapper__Boxed { - struct EventDispatcher_CallbackWrapper__Class *klass; - MonitorData *monitor; - struct EventDispatcher_CallbackWrapper fields; -}; - struct Action_1_Photon_Bolt_Event___Fields { struct MulticastDelegate__Fields _; }; @@ -106227,6 +108270,19 @@ struct CommandHistory { struct CommandHistory__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_Photon_Bolt_Collections_BoltDoubleList_1_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct BoltDoubleList_1_Photon_Bolt_Channel_CommandHistory_CommandRecord_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_Photon_Bolt_Collections_BoltDoubleList_1___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_Photon_Bolt_Collections_BoltDoubleList_1___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_Photon_Bolt_Collections_BoltDoubleList_1_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_Photon_Bolt_Collections_BoltDoubleList_1___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_Photon_Bolt_Collections_BoltDoubleList_1___Array *_entries; @@ -106246,19 +108302,6 @@ struct Dictionary_2_System_Int32_Photon_Bolt_Collections_BoltDoubleList_1_ { struct Dictionary_2_System_Int32_Photon_Bolt_Collections_BoltDoubleList_1___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_Photon_Bolt_Collections_BoltDoubleList_1_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct BoltDoubleList_1_Photon_Bolt_Channel_CommandHistory_CommandRecord_ *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_Photon_Bolt_Collections_BoltDoubleList_1___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_Photon_Bolt_Collections_BoltDoubleList_1___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_Photon_Bolt_Collections_BoltDoubleList_1_ fields; -}; - struct __declspec(align(8)) BoltDoubleList_1_Photon_Bolt_Channel_CommandHistory_CommandRecord___Fields { struct CommandHistory_CommandRecord *_first; int32_t _count; @@ -106395,6 +108438,19 @@ struct IEnumerable_1_Photon_Bolt_Collections_BoltDoubleList_1_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int32_ { + int32_t hashCode; + int32_t next; + int32_t key; + int32_t value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int32___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int32___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int32_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_System_Int32___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int32___Array *_entries; @@ -106414,19 +108470,6 @@ struct Dictionary_2_System_Int32_System_Int32_ { struct Dictionary_2_System_Int32_System_Int32___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int32_ { - int32_t hashCode; - int32_t next; - int32_t key; - int32_t value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int32___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int32___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int32_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int32___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int32___Array__Class *klass; MonitorData *monitor; @@ -106513,29 +108556,6 @@ struct DissonanceToServer { struct DissonanceToServer__Fields fields; }; -struct DoorStateTrigger__Fields { - struct MonoBehaviour__Fields _; - struct String *m_StateName; - float m_Delay; - float m_Duration; - struct LayerMask m_LayerMask; - bool m_RequireCharacter; - struct AudioClipSet *m_ActivateAudioClipSet; - struct GameObject *m_Door; - struct GameObject *m_Gate; - float m_RageDuration; - bool m_IsAlreadyOpenDoor; - struct ScheduledEventBase *m_ActivateStateEvent; - struct List_1_UnityEngine_GameObject_ *m_DeathDeactivations; - bool m_IsDoorOpen; -}; - -struct DoorStateTrigger { - struct DoorStateTrigger__Class *klass; - MonitorData *monitor; - struct DoorStateTrigger__Fields fields; -}; - struct __declspec(align(8)) AudioClipSet__Fields { float m_Delay; struct AudioClip__Array *m_AudioClips; @@ -107311,6 +109331,21 @@ struct ICollection_1_UdpKit_UdpStreamOp___Class { struct ICollection_1_UdpKit_UdpStreamOp___VTable vtable; }; +struct UdpStreamOp___VTable { +}; + +struct UdpStreamOp___StaticFields { +}; + +struct UdpStreamOp___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UdpStreamOp___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UdpStreamOp___VTable vtable; +}; + struct IEnumerable_1_System_UInt64___VTable { VirtualInvokeData GetEnumerator; }; @@ -107761,6 +109796,21 @@ struct ICollection_1_UdpKit_UdpChannelStreamer___Class { struct ICollection_1_UdpKit_UdpChannelStreamer___VTable vtable; }; +struct UdpChannelStreamer___VTable { +}; + +struct UdpChannelStreamer___StaticFields { +}; + +struct UdpChannelStreamer___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UdpChannelStreamer___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UdpChannelStreamer___VTable vtable; +}; + struct KeyValuePair_2_UdpKit_UdpChannelName_UdpKit_UdpChannelStreamer___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -108732,6 +110782,21 @@ struct ICollection_1_UdpKit_Platform_Photon_PhotonRegion___Class { struct ICollection_1_UdpKit_Platform_Photon_PhotonRegion___VTable vtable; }; +struct PhotonRegion___VTable { +}; + +struct PhotonRegion___StaticFields { +}; + +struct PhotonRegion___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PhotonRegion___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PhotonRegion___VTable vtable; +}; + struct KeyValuePair_2_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -110516,6 +112581,21 @@ struct Socket__Class { struct Socket__VTable vtable; }; +struct UdpEndPoint___VTable { +}; + +struct UdpEndPoint___StaticFields { +}; + +struct UdpEndPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UdpEndPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UdpEndPoint___VTable vtable; +}; + struct DotNetSocket__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -111244,6 +113324,21 @@ struct ICollection_1_UdpKit_Platform_Photon_Puncher_StunManager_PingTarget___Cla struct ICollection_1_UdpKit_Platform_Photon_Puncher_StunManager_PingTarget___VTable vtable; }; +struct StunManager_PingTarget___VTable { +}; + +struct StunManager_PingTarget___StaticFields { +}; + +struct StunManager_PingTarget___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StunManager_PingTarget___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StunManager_PingTarget___VTable vtable; +}; + struct KeyValuePair_2_System_Int32_UdpKit_Platform_Photon_Puncher_StunManager_PingTarget___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -112032,6 +114127,21 @@ struct ICollection_1_UdpKit_Protocol_ProtocolClient_MsgHandler___Class { struct ICollection_1_UdpKit_Protocol_ProtocolClient_MsgHandler___VTable vtable; }; +struct ProtocolClient_MsgHandler___VTable { +}; + +struct ProtocolClient_MsgHandler___StaticFields { +}; + +struct ProtocolClient_MsgHandler___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ProtocolClient_MsgHandler___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ProtocolClient_MsgHandler___VTable vtable; +}; + struct KeyValuePair_2_System_Type_UdpKit_Protocol_ProtocolClient_MsgHandler___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -112358,6 +114468,21 @@ struct ICollection_1_UdpKit_Protocol_ProtocolClient_AckCallback___Class { struct ICollection_1_UdpKit_Protocol_ProtocolClient_AckCallback___VTable vtable; }; +struct ProtocolClient_AckCallback___VTable { +}; + +struct ProtocolClient_AckCallback___StaticFields { +}; + +struct ProtocolClient_AckCallback___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ProtocolClient_AckCallback___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ProtocolClient_AckCallback___VTable vtable; +}; + struct KeyValuePair_2_System_Type_UdpKit_Protocol_ProtocolClient_AckCallback___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -113174,6 +115299,21 @@ struct ICollection_1_UdpKit_UdpConnection___Class { struct ICollection_1_UdpKit_UdpConnection___VTable vtable; }; +struct UdpConnection___VTable { +}; + +struct UdpConnection___StaticFields { +}; + +struct UdpConnection___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UdpConnection___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UdpConnection___VTable vtable; +}; + struct KeyValuePair_2_UdpKit_UdpEndPoint_UdpKit_UdpConnection___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -113452,6 +115592,21 @@ struct ICollection_1_UdpKit_UdpStreamChannel___Class { struct ICollection_1_UdpKit_UdpStreamChannel___VTable vtable; }; +struct UdpStreamChannel___VTable { +}; + +struct UdpStreamChannel___StaticFields { +}; + +struct UdpStreamChannel___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UdpStreamChannel___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UdpStreamChannel___VTable vtable; +}; + struct KeyValuePair_2_UdpKit_UdpChannelName_UdpKit_UdpStreamChannel___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -115169,6 +117324,21 @@ struct ICollection_1_Photon_Bolt_Internal_IDebugDrawerObjectArray___Class { struct ICollection_1_Photon_Bolt_Internal_IDebugDrawerObjectArray___VTable vtable; }; +struct IDebugDrawerObjectArray___VTable { +}; + +struct IDebugDrawerObjectArray___StaticFields { +}; + +struct IDebugDrawerObjectArray___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IDebugDrawerObjectArray___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IDebugDrawerObjectArray___VTable vtable; +}; + struct KeyValuePair_2_System_Int32_Photon_Bolt_Internal_IDebugDrawerObjectArray___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -115553,6 +117723,21 @@ struct ICollection_1_List_1_Photon_Bolt_PropertyCallback___Class { struct ICollection_1_List_1_Photon_Bolt_PropertyCallback___VTable vtable; }; +struct List_1_Photon_Bolt_PropertyCallback__1__VTable { +}; + +struct List_1_Photon_Bolt_PropertyCallback__1__StaticFields { +}; + +struct List_1_Photon_Bolt_PropertyCallback__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Photon_Bolt_PropertyCallback__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Photon_Bolt_PropertyCallback__1__VTable vtable; +}; + struct KeyValuePair_2_System_String_List_1_Photon_Bolt_PropertyCallback___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -115913,6 +118098,21 @@ struct ICollection_1_List_1_Photon_Bolt_PropertyCallbackSimple___Class { struct ICollection_1_List_1_Photon_Bolt_PropertyCallbackSimple___VTable vtable; }; +struct List_1_Photon_Bolt_PropertyCallbackSimple__1__VTable { +}; + +struct List_1_Photon_Bolt_PropertyCallbackSimple__1__StaticFields { +}; + +struct List_1_Photon_Bolt_PropertyCallbackSimple__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Photon_Bolt_PropertyCallbackSimple__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Photon_Bolt_PropertyCallbackSimple__1__VTable vtable; +}; + struct KeyValuePair_2_System_String_List_1_Photon_Bolt_PropertyCallbackSimple___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -117518,6 +119718,21 @@ struct ICollection_1_Photon_Bolt_Internal_EntityProxy___Class { struct ICollection_1_Photon_Bolt_Internal_EntityProxy___VTable vtable; }; +struct EntityProxy___VTable { +}; + +struct EntityProxy___StaticFields { +}; + +struct EntityProxy___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EntityProxy___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EntityProxy___VTable vtable; +}; + struct KeyValuePair_2_Photon_Bolt_NetworkId_Photon_Bolt_Internal_EntityProxy___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -118632,6 +120847,21 @@ struct ICollection_1_List_1_Photon_Bolt_EventDispatcher_CallbackWrapper___Class struct ICollection_1_List_1_Photon_Bolt_EventDispatcher_CallbackWrapper___VTable vtable; }; +struct List_1_Photon_Bolt_EventDispatcher_CallbackWrapper__1__VTable { +}; + +struct List_1_Photon_Bolt_EventDispatcher_CallbackWrapper__1__StaticFields { +}; + +struct List_1_Photon_Bolt_EventDispatcher_CallbackWrapper__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Photon_Bolt_EventDispatcher_CallbackWrapper__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Photon_Bolt_EventDispatcher_CallbackWrapper__1__VTable vtable; +}; + struct KeyValuePair_2_System_Type_List_1_Photon_Bolt_EventDispatcher_CallbackWrapper___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -119168,6 +121398,21 @@ struct ICollection_1_Photon_Bolt_Collections_BoltDoubleList_1___Class { struct ICollection_1_Photon_Bolt_Collections_BoltDoubleList_1___VTable vtable; }; +struct BoltDoubleList_1_Photon_Bolt_Channel_CommandHistory_CommandRecord__1__VTable { +}; + +struct BoltDoubleList_1_Photon_Bolt_Channel_CommandHistory_CommandRecord__1__StaticFields { +}; + +struct BoltDoubleList_1_Photon_Bolt_Channel_CommandHistory_CommandRecord__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltDoubleList_1_Photon_Bolt_Channel_CommandHistory_CommandRecord__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltDoubleList_1_Photon_Bolt_Channel_CommandHistory_CommandRecord__1__VTable vtable; +}; + struct KeyValuePair_2_System_Int32_Photon_Bolt_Collections_BoltDoubleList_1___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -120193,6 +122438,17 @@ struct AINearbyPerks_c_DisplayClass12_0__Class { struct AINearbyPerks_c_DisplayClass12_0__VTable vtable; }; +struct AIObjectPool_PreloadedPrefab { + struct GameObject *m_Prefab; + int32_t m_Count; +}; + +struct AIObjectPool_PreloadedPrefab__Boxed { + struct AIObjectPool_PreloadedPrefab__Class *klass; + MonitorData *monitor; + struct AIObjectPool_PreloadedPrefab fields; +}; + struct AIObjectPool__Fields { struct MonoBehaviour__Fields _; struct AIObjectPool_PreloadedPrefab__Array *m_PreloadedPrefabs; @@ -120207,17 +122463,6 @@ struct AIObjectPool { struct AIObjectPool__Fields fields; }; -struct AIObjectPool_PreloadedPrefab { - struct GameObject *m_Prefab; - int32_t m_Count; -}; - -struct AIObjectPool_PreloadedPrefab__Boxed { - struct AIObjectPool_PreloadedPrefab__Class *klass; - MonitorData *monitor; - struct AIObjectPool_PreloadedPrefab fields; -}; - struct AIObjectPool_PreloadedPrefab__Array { struct AIObjectPool_PreloadedPrefab__Array__Class *klass; MonitorData *monitor; @@ -120226,6 +122471,19 @@ struct AIObjectPool_PreloadedPrefab__Array { struct AIObjectPool_PreloadedPrefab vector[32]; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_Stack_1_UnityEngine_GameObject_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct Stack_1_UnityEngine_GameObject_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_Stack_1_UnityEngine_GameObject___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_Stack_1_UnityEngine_GameObject___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_Stack_1_UnityEngine_GameObject_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_Stack_1_UnityEngine_GameObject___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_Stack_1_UnityEngine_GameObject___Array *_entries; @@ -120245,19 +122503,6 @@ struct Dictionary_2_System_Int32_Stack_1_UnityEngine_GameObject_ { struct Dictionary_2_System_Int32_Stack_1_UnityEngine_GameObject___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_Stack_1_UnityEngine_GameObject_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct Stack_1_UnityEngine_GameObject_ *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_Stack_1_UnityEngine_GameObject___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_Stack_1_UnityEngine_GameObject___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_Stack_1_UnityEngine_GameObject_ fields; -}; - struct __declspec(align(8)) Stack_1_UnityEngine_GameObject___Fields { struct GameObject__Array *_array; int32_t _size; @@ -120346,6 +122591,19 @@ struct IEnumerable_1_Stack_1_UnityEngine_GameObject_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Object_ { + int32_t hashCode; + int32_t next; + struct Type *key; + struct Object *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Object___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Object___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Object_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Type_System_Object___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Object___Array *_entries; @@ -120365,19 +122623,6 @@ struct Dictionary_2_System_Type_System_Object_ { struct Dictionary_2_System_Type_System_Object___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Object_ { - int32_t hashCode; - int32_t next; - struct Type *key; - struct Object *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Object___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Object___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Object_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Object___Array { struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Object___Array__Class *klass; MonitorData *monitor; @@ -120643,6 +122888,21 @@ struct ICollection_1_Stack_1_UnityEngine_GameObject___Class { struct ICollection_1_Stack_1_UnityEngine_GameObject___VTable vtable; }; +struct Stack_1_UnityEngine_GameObject__1__VTable { +}; + +struct Stack_1_UnityEngine_GameObject__1__StaticFields { +}; + +struct Stack_1_UnityEngine_GameObject__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Stack_1_UnityEngine_GameObject__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Stack_1_UnityEngine_GameObject__1__VTable vtable; +}; + struct KeyValuePair_2_System_Int32_Stack_1_UnityEngine_GameObject___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -120998,45 +123258,6 @@ struct AIObjectPool__Class { struct AIObjectPool__VTable vtable; }; -struct AIPatrolDeathTrigger__Fields { - struct MonoBehaviour__Fields _; - struct PatrolRoute__Array *patrolRoutes; - struct List_1_System_String_ *patrolNames; -}; - -struct AIPatrolDeathTrigger { - struct AIPatrolDeathTrigger__Class *klass; - MonitorData *monitor; - struct AIPatrolDeathTrigger__Fields fields; -}; - -struct PatrolRoute__Fields { - struct MonoBehaviour__Fields _; - bool IsEnabled; - struct Waypoint__Array *waypoints; - struct PatrolRoute *syncPatrol; - bool syncedToPatrol; - struct AdvancedPatrol *patrolTask; - float delayInit; - bool IsCarryingCandle; - bool IgnoreInteractableAudio; - struct BoxCollider *MirrorReflectionTrigger; - float OverrideSprintHearingRadius; - float OverrideCrouchHearingRadius; - struct BoxCollider *RestrictHearingDuringPatrolRect; - float RagePursueDelay; - bool StopPatrolOnLastWaypoint; - bool BlockCultistSight; - bool TaskSuccessOnLastWaypoint; - struct List_1_UnityEngine_GameObject_ *playersInMirrorTrigger; -}; - -struct PatrolRoute { - struct PatrolRoute__Class *klass; - MonitorData *monitor; - struct PatrolRoute__Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class ExitRotationDir__Enum : int32_t { Default = 0x00000000, @@ -121079,6 +123300,45 @@ struct Waypoint { struct Waypoint__Fields fields; }; +struct PatrolRoute__Fields { + struct MonoBehaviour__Fields _; + bool IsEnabled; + struct Waypoint__Array *waypoints; + struct PatrolRoute *syncPatrol; + bool syncedToPatrol; + struct AdvancedPatrol *patrolTask; + float delayInit; + bool IsCarryingCandle; + bool IgnoreInteractableAudio; + struct BoxCollider *MirrorReflectionTrigger; + float OverrideSprintHearingRadius; + float OverrideCrouchHearingRadius; + struct BoxCollider *RestrictHearingDuringPatrolRect; + float RagePursueDelay; + bool StopPatrolOnLastWaypoint; + bool BlockCultistSight; + bool TaskSuccessOnLastWaypoint; + struct List_1_UnityEngine_GameObject_ *playersInMirrorTrigger; +}; + +struct PatrolRoute { + struct PatrolRoute__Class *klass; + MonitorData *monitor; + struct PatrolRoute__Fields fields; +}; + +struct AIPatrolDeathTrigger__Fields { + struct MonoBehaviour__Fields _; + struct PatrolRoute__Array *patrolRoutes; + struct List_1_System_String_ *patrolNames; +}; + +struct AIPatrolDeathTrigger { + struct AIPatrolDeathTrigger__Class *klass; + MonitorData *monitor; + struct AIPatrolDeathTrigger__Fields fields; +}; + struct Waypoint__Array { struct Waypoint__Array__Class *klass; MonitorData *monitor; @@ -121230,6 +123490,22 @@ struct IAstarAI { MonitorData *monitor; }; +struct __declspec(align(8)) State__Fields { + struct String *m_Name; + struct Preset *m_Preset; + struct String__Array *m_BlockList; + bool m_Default; + bool m_Active; + struct IStateOwner *m_Owner; + struct State__Array *m_BlockStates; +}; + +struct State { + struct State__Class *klass; + MonitorData *monitor; + struct State__Fields fields; +}; + struct StateBehavior__Fields { struct MonoBehaviour__Fields _; struct State__Array *m_States; @@ -121409,6 +123685,269 @@ struct KinematicObjectManager_UpdateLocation__Enum__Boxed { #endif }; +struct __declspec(align(8)) Serialization__Fields { + struct String *m_ObjectType; + struct Int32__Array *m_ValueHashes; + struct Int32__Array *m_ValuePositions; + struct Byte__Array *m_Values; + struct Object_1__Array *m_UnityObjects; + struct String *m_Version; +}; + +struct Serialization { + struct Serialization__Class *klass; + MonitorData *monitor; + struct Serialization__Fields fields; +}; + +struct __declspec(align(8)) StateObject__Fields { + struct State__Array *m_States; +}; + +struct StateObject { + struct StateObject__Class *klass; + MonitorData *monitor; + struct StateObject__Fields fields; +}; + +struct MovementType__Fields { + struct StateObject__Fields _; + struct GameObject *m_GameObject; + struct Transform *m_Transform; + struct UltimateCharacterLocomotion *m_CharacterLocomotion; + struct ILookSource *m_LookSource; + bool m_ForceIndependentLook; +}; + +struct MovementType { + struct MovementType__Class *klass; + MonitorData *monitor; + struct MovementType__Fields fields; +}; + +#if defined(_CPLUSPLUS_) +enum class Ability_AbilityStartType__Enum : int32_t { + Automatic = 0x00000000, + Manual = 0x00000001, + ButtonDown = 0x00000002, + ButtonDownContinuous = 0x00000003, + DoublePress = 0x00000004, + LongPress = 0x00000005, + Tap = 0x00000006, + Axis = 0x00000007, + Custom = 0x00000008, +}; + +#else +enum Ability_AbilityStartType__Enum { + Ability_AbilityStartType__Enum_Automatic = 0x00000000, + Ability_AbilityStartType__Enum_Manual = 0x00000001, + Ability_AbilityStartType__Enum_ButtonDown = 0x00000002, + Ability_AbilityStartType__Enum_ButtonDownContinuous = 0x00000003, + Ability_AbilityStartType__Enum_DoublePress = 0x00000004, + Ability_AbilityStartType__Enum_LongPress = 0x00000005, + Ability_AbilityStartType__Enum_Tap = 0x00000006, + Ability_AbilityStartType__Enum_Axis = 0x00000007, + Ability_AbilityStartType__Enum_Custom = 0x00000008, +}; + +#endif +struct Ability_AbilityStartType__Enum__Boxed { + struct Ability_AbilityStartType__Enum__Class *klass; + MonitorData *monitor; + #if defined(_CPLUSPLUS_) + Ability_AbilityStartType__Enum value; + #else + int32_t value; + #endif +}; + +#if defined(_CPLUSPLUS_) +enum class Ability_AbilityStopType__Enum : int32_t { + Automatic = 0x00000000, + Manual = 0x00000001, + ButtonUp = 0x00000002, + ButtonDown = 0x00000003, + ButtonToggle = 0x00000004, + LongPress = 0x00000005, + Axis = 0x00000006, +}; + +#else +enum Ability_AbilityStopType__Enum { + Ability_AbilityStopType__Enum_Automatic = 0x00000000, + Ability_AbilityStopType__Enum_Manual = 0x00000001, + Ability_AbilityStopType__Enum_ButtonUp = 0x00000002, + Ability_AbilityStopType__Enum_ButtonDown = 0x00000003, + Ability_AbilityStopType__Enum_ButtonToggle = 0x00000004, + Ability_AbilityStopType__Enum_LongPress = 0x00000005, + Ability_AbilityStopType__Enum_Axis = 0x00000006, +}; + +#endif +struct Ability_AbilityStopType__Enum__Boxed { + struct Ability_AbilityStopType__Enum__Class *klass; + MonitorData *monitor; + #if defined(_CPLUSPLUS_) + Ability_AbilityStopType__Enum value; + #else + int32_t value; + #endif +}; + +#if defined(_CPLUSPLUS_) +enum class Ability_AbilityBoolOverride__Enum : int32_t { + NoOverride = 0x00000000, + True = 0x00000001, + False = 0x00000002, +}; + +#else +enum Ability_AbilityBoolOverride__Enum { + Ability_AbilityBoolOverride__Enum_NoOverride = 0x00000000, + Ability_AbilityBoolOverride__Enum_True = 0x00000001, + Ability_AbilityBoolOverride__Enum_False = 0x00000002, +}; + +#endif +struct Ability_AbilityBoolOverride__Enum__Boxed { + struct Ability_AbilityBoolOverride__Enum__Class *klass; + MonitorData *monitor; + #if defined(_CPLUSPLUS_) + Ability_AbilityBoolOverride__Enum value; + #else + int32_t value; + #endif +}; + +struct ItemDefinitionBase__Fields { + struct ScriptableObject__Fields _; +}; + +struct ItemDefinitionBase { + struct ItemDefinitionBase__Class *klass; + MonitorData *monitor; + struct ItemDefinitionBase__Fields fields; +}; + +struct Ability__Fields { + struct StateObject__Fields _; + bool m_Enabled; + #if defined(_CPLUSPLUS_) + Ability_AbilityStartType__Enum m_StartType; + #else + int32_t m_StartType; + #endif + #if defined(_CPLUSPLUS_) + Ability_AbilityStopType__Enum m_StopType; + #else + int32_t m_StopType; + #endif + struct String__Array *m_InputNames; + float m_LongPressDuration; + bool m_WaitForLongPressRelease; + struct Serialization *m_StarterData; + struct AttributeModifier *m_AttributeModifier; + struct String *m_State; + bool m_StateAppendItemIdentifierName; + int32_t m_AbilityIndexParameter; + struct AudioClipSet *m_StartAudioClipSet; + struct AudioClipSet *m_StopAudioClipSet; + bool m_StopStartAudioOnComplete; + bool m_AllowPositionalInput; + bool m_AllowRotationalInput; + #if defined(_CPLUSPLUS_) + Ability_AbilityBoolOverride__Enum m_UseGravity; + #else + int32_t m_UseGravity; + #endif + #if defined(_CPLUSPLUS_) + Ability_AbilityBoolOverride__Enum m_UseRootMotionPosition; + #else + int32_t m_UseRootMotionPosition; + #endif + #if defined(_CPLUSPLUS_) + Ability_AbilityBoolOverride__Enum m_UseRootMotionRotation; + #else + int32_t m_UseRootMotionRotation; + #endif + #if defined(_CPLUSPLUS_) + Ability_AbilityBoolOverride__Enum m_DetectHorizontalCollisions; + #else + int32_t m_DetectHorizontalCollisions; + #endif + #if defined(_CPLUSPLUS_) + Ability_AbilityBoolOverride__Enum m_DetectVerticalCollisions; + #else + int32_t m_DetectVerticalCollisions; + #endif + struct AnimatorMotion *m_AnimatorMotion; + struct String *m_StartEffectName; + int32_t m_StartEffectIndex; + int32_t m_AllowEquippedSlotsMask; + struct ItemDefinitionBase__Array *m_AllowItemDefinitions; + bool m_ImmediateUnequip; + bool m_ReequipSlots; + struct String *m_AbilityMessageText; + struct Sprite *m_AbilityMessageIcon; + bool m_CheckCanAbilityStartWithoutMessage; + struct UltimateCharacterLocomotion *m_CharacterLocomotion; + struct GameObject *m_GameObject; + struct Transform *m_Transform; + struct AnimatorMonitor *m_AnimatorMonitor; + struct CharacterLayerManager *m_CharacterLayerManager; + struct InventoryBase *m_Inventory; + bool m_CheckForAbilityMessage; + bool m_AbilityMessageCanStart; + struct Boolean__Array *m_ButtonUp; + int32_t m_Index; + int32_t m_ActiveIndex; + int32_t m_InputIndex; + float m_InputAxisValue; + struct Boolean__Array *m_ActiveInput; + float m_StartTime; + int32_t m_ActiveCount; + struct Effect *m_StartEffect; + struct AbilityStarter *m_Starter; + struct AudioSource *m_StartAudioSource; +}; + +struct Ability { + struct Ability__Class *klass; + MonitorData *monitor; + struct Ability__Fields fields; +}; + +struct ItemAbility__Fields { + struct Ability__Fields _; + int32_t m_ItemStateIndex; +}; + +struct ItemAbility { + struct ItemAbility__Class *klass; + MonitorData *monitor; + struct ItemAbility__Fields fields; +}; + +struct Effect__Fields { + struct StateObject__Fields _; + bool m_Enabled; + bool m_StartWhenEnabled; + struct String *m_State; + struct GameObject *m_GameObject; + struct Transform *m_Transform; + struct UltimateCharacterLocomotion *m_CharacterLocomotion; + struct CameraController *m_CameraController; + int32_t m_ActiveIndex; + int32_t m_Index; +}; + +struct Effect { + struct Effect__Class *klass; + MonitorData *monitor; + struct Effect__Fields fields; +}; + struct UltimateCharacterLocomotion__Fields { struct CharacterLocomotion__Fields _; #if defined(_CPLUSPLUS_) @@ -121475,20 +124014,9 @@ struct UltimateCharacterLocomotion { struct UltimateCharacterLocomotion__Fields fields; }; -struct __declspec(align(8)) State__Fields { - struct String *m_Name; - struct Preset *m_Preset; - struct String__Array *m_BlockList; - bool m_Default; - bool m_Active; - struct IStateOwner *m_Owner; - struct State__Array *m_BlockStates; -}; - -struct State { - struct State__Class *klass; +struct Preset_BaseDelegate { + struct Preset_BaseDelegate__Class *klass; MonitorData *monitor; - struct State__Fields fields; }; struct Preset__Fields { @@ -121502,11 +124030,6 @@ struct Preset { struct Preset__Fields fields; }; -struct Preset_BaseDelegate { - struct Preset_BaseDelegate__Class *klass; - MonitorData *monitor; -}; - struct Preset_BaseDelegate__Array { struct Preset_BaseDelegate__Array__Class *klass; MonitorData *monitor; @@ -121577,15 +124100,14 @@ struct Rigidbody { struct Rigidbody__Fields fields; }; -struct AnimatorMonitor__Fields { - struct StateBehavior__Fields _; - float m_HorizontalMovementDampingTime; - float m_ForwardMovementDampingTime; - float m_PitchDampingTime; - float m_YawDampingTime; +struct ChildAnimatorMonitor__Fields { + struct MonoBehaviour__Fields _; struct GameObject *m_GameObject; - struct Transform *m_Transform; struct Animator *m_Animator; + struct GameObject *m_Character; + struct UltimateCharacterLocomotion *m_CharacterLocomotion; + struct AnimatorMonitor *m_CharacterAnimatorMonitor; + bool m_FirstPersonAnimatorMonitor; float m_HorizontalMovement; float m_ForwardMovement; float m_Pitch; @@ -121598,18 +124120,36 @@ struct AnimatorMonitor__Fields { int32_t m_AbilityIndex; int32_t m_AbilityIntData; float m_AbilityFloatData; - bool m_HasItemParameters; struct Int32__Array *m_ItemSlotID; struct Int32__Array *m_ItemSlotStateIndex; struct Int32__Array *m_ItemSlotSubstateIndex; - struct Item__Array *m_EquippedItems; - bool m_EquippedItemsDirty; + bool m_HasVRParameters; + int32_t m_HandStateIndex; + float m_HandGripStrength; }; -struct AnimatorMonitor { - struct AnimatorMonitor__Class *klass; +struct ChildAnimatorMonitor { + struct ChildAnimatorMonitor__Class *klass; MonitorData *monitor; - struct AnimatorMonitor__Fields fields; + struct ChildAnimatorMonitor__Fields fields; +}; + +struct ItemAction__Fields { + struct StateBehavior__Fields _; + int32_t m_ID; + struct GameObject *m_GameObject; + struct Item *m_Item; + struct InventoryBase *m_Inventory; + struct GameObject *m_Character; + struct ItemPerspectiveProperties *m_FirstPersonPerspectiveProperties; + struct ItemPerspectiveProperties *m_ThirdPersonPerspectiveProperties; + struct ItemPerspectiveProperties *m_ActivePerspectiveProperties; +}; + +struct ItemAction { + struct ItemAction__Class *klass; + MonitorData *monitor; + struct ItemAction__Fields fields; }; struct Item__Fields { @@ -121676,14 +124216,39 @@ struct Item { struct Item__Fields fields; }; -struct ItemDefinitionBase__Fields { - struct ScriptableObject__Fields _; +struct AnimatorMonitor__Fields { + struct StateBehavior__Fields _; + float m_HorizontalMovementDampingTime; + float m_ForwardMovementDampingTime; + float m_PitchDampingTime; + float m_YawDampingTime; + struct GameObject *m_GameObject; + struct Transform *m_Transform; + struct Animator *m_Animator; + float m_HorizontalMovement; + float m_ForwardMovement; + float m_Pitch; + float m_Yaw; + float m_Speed; + int32_t m_Height; + bool m_Moving; + bool m_Aiming; + int32_t m_MovementSetID; + int32_t m_AbilityIndex; + int32_t m_AbilityIntData; + float m_AbilityFloatData; + bool m_HasItemParameters; + struct Int32__Array *m_ItemSlotID; + struct Int32__Array *m_ItemSlotStateIndex; + struct Int32__Array *m_ItemSlotSubstateIndex; + struct Item__Array *m_EquippedItems; + bool m_EquippedItemsDirty; }; -struct ItemDefinitionBase { - struct ItemDefinitionBase__Class *klass; +struct AnimatorMonitor { + struct AnimatorMonitor__Class *klass; MonitorData *monitor; - struct ItemDefinitionBase__Fields fields; + struct AnimatorMonitor__Fields fields; }; struct ItemType__Fields { @@ -121722,6 +124287,22 @@ struct AnimationEventTrigger { struct AnimationEventTrigger__Fields fields; }; +struct AnimatorAudioStateSet_AnimatorAudioState__Fields { + struct StateObject__Fields _; + bool m_Enabled; + bool m_AllowDuringMovement; + bool m_RequireGrounded; + struct String *m_StateName; + int32_t m_ItemSubstateIndex; + struct AudioClipSet *m_AudioClipSet; +}; + +struct AnimatorAudioStateSet_AnimatorAudioState { + struct AnimatorAudioStateSet_AnimatorAudioState__Class *klass; + MonitorData *monitor; + struct AnimatorAudioStateSet_AnimatorAudioState__Fields fields; +}; + struct __declspec(align(8)) AnimatorAudioStateSet__Fields { struct Serialization *m_AnimatorAudioStateSelectorData; struct AnimatorAudioStateSet_AnimatorAudioState__Array *m_States; @@ -121734,19 +124315,17 @@ struct AnimatorAudioStateSet { struct AnimatorAudioStateSet__Fields fields; }; -struct __declspec(align(8)) Serialization__Fields { - struct String *m_ObjectType; - struct Int32__Array *m_ValueHashes; - struct Int32__Array *m_ValuePositions; - struct Byte__Array *m_Values; - struct Object_1__Array *m_UnityObjects; - struct String *m_Version; +struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Reflection_FieldInfo_ { + int32_t hashCode; + int32_t next; + struct Type *key; + struct FieldInfo_1__Array *value; }; -struct Serialization { - struct Serialization__Class *klass; +struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Reflection_FieldInfo___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Reflection_FieldInfo___Class *klass; MonitorData *monitor; - struct Serialization__Fields fields; + struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Reflection_FieldInfo_ fields; }; struct __declspec(align(8)) Dictionary_2_System_Type_System_Reflection_FieldInfo___Fields { @@ -121768,19 +124347,6 @@ struct Dictionary_2_System_Type_System_Reflection_FieldInfo_ { struct Dictionary_2_System_Type_System_Reflection_FieldInfo___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Reflection_FieldInfo_ { - int32_t hashCode; - int32_t next; - struct Type *key; - struct FieldInfo_1__Array *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Reflection_FieldInfo___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Reflection_FieldInfo___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Reflection_FieldInfo_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Reflection_FieldInfo___Array { struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Reflection_FieldInfo___Array__Class *klass; MonitorData *monitor; @@ -121864,6 +124430,19 @@ struct Dictionary_2_System_Type_System_Reflection_FieldInfo___Array { struct Dictionary_2_System_Type_System_Reflection_FieldInfo_ *vector[32]; }; +struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Reflection_PropertyInfo_ { + int32_t hashCode; + int32_t next; + struct Type *key; + struct PropertyInfo_1__Array *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Reflection_PropertyInfo___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Reflection_PropertyInfo___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Reflection_PropertyInfo_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Type_System_Reflection_PropertyInfo___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Reflection_PropertyInfo___Array *_entries; @@ -121883,19 +124462,6 @@ struct Dictionary_2_System_Type_System_Reflection_PropertyInfo_ { struct Dictionary_2_System_Type_System_Reflection_PropertyInfo___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Reflection_PropertyInfo_ { - int32_t hashCode; - int32_t next; - struct Type *key; - struct PropertyInfo_1__Array *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Reflection_PropertyInfo___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Reflection_PropertyInfo___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Reflection_PropertyInfo_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Reflection_PropertyInfo___Array { struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Reflection_PropertyInfo___Array__Class *klass; MonitorData *monitor; @@ -121979,32 +124545,6 @@ struct Dictionary_2_System_Type_System_Reflection_PropertyInfo___Array { struct Dictionary_2_System_Type_System_Reflection_PropertyInfo_ *vector[32]; }; -struct __declspec(align(8)) StateObject__Fields { - struct State__Array *m_States; -}; - -struct StateObject { - struct StateObject__Class *klass; - MonitorData *monitor; - struct StateObject__Fields fields; -}; - -struct AnimatorAudioStateSet_AnimatorAudioState__Fields { - struct StateObject__Fields _; - bool m_Enabled; - bool m_AllowDuringMovement; - bool m_RequireGrounded; - struct String *m_StateName; - int32_t m_ItemSubstateIndex; - struct AudioClipSet *m_AudioClipSet; -}; - -struct AnimatorAudioStateSet_AnimatorAudioState { - struct AnimatorAudioStateSet_AnimatorAudioState__Class *klass; - MonitorData *monitor; - struct AnimatorAudioStateSet_AnimatorAudioState__Fields fields; -}; - struct AnimatorAudioStateSet_AnimatorAudioState__Array { struct AnimatorAudioStateSet_AnimatorAudioState__Array__Class *klass; MonitorData *monitor; @@ -122072,6 +124612,11 @@ struct InvokableCallList { struct InvokableCallList__Fields fields; }; +struct BaseInvokableCall { + struct BaseInvokableCall__Class *klass; + MonitorData *monitor; +}; + struct __declspec(align(8)) List_1_UnityEngine_Events_BaseInvokableCall___Fields { struct BaseInvokableCall__Array *_items; int32_t _size; @@ -122085,11 +124630,6 @@ struct List_1_UnityEngine_Events_BaseInvokableCall_ { struct List_1_UnityEngine_Events_BaseInvokableCall___Fields fields; }; -struct BaseInvokableCall { - struct BaseInvokableCall__Class *klass; - MonitorData *monitor; -}; - struct __declspec(align(8)) InvokableCall__Fields { struct UnityAction *Delegate; }; @@ -122133,19 +124673,6 @@ struct PersistentCallGroup { struct PersistentCallGroup__Fields fields; }; -struct __declspec(align(8)) List_1_UnityEngine_Events_PersistentCall___Fields { - struct PersistentCall__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_Events_PersistentCall_ { - struct List_1_UnityEngine_Events_PersistentCall___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_Events_PersistentCall___Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class PersistentListenerMode__Enum : int32_t { EventDefined = 0x00000000, @@ -122227,6 +124754,19 @@ struct PersistentCall { struct PersistentCall__Fields fields; }; +struct __declspec(align(8)) List_1_UnityEngine_Events_PersistentCall___Fields { + struct PersistentCall__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_Events_PersistentCall_ { + struct List_1_UnityEngine_Events_PersistentCall___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_Events_PersistentCall___Fields fields; +}; + struct __declspec(align(8)) ArgumentCache__Fields { struct Object_1 *m_ObjectArgument; struct String *m_ObjectArgumentAssemblyTypeName; @@ -122439,20 +124979,6 @@ struct IEnumerator_1_Opsive_Shared_Inventory_IItemIdentifier_ { MonitorData *monitor; }; -struct Inventory__Fields { - struct InventoryBase__Fields _; - struct ItemDefinitionAmount__Array *m_DefaultLoadout; - struct Dictionary_2_Opsive_Shared_Inventory_IItemIdentifier_Opsive_UltimateCharacterController_Items_Item___Array *m_ItemIdentifierMap; - struct Dictionary_2_Opsive_Shared_Inventory_IItemIdentifier_System_Int32_ *m_ItemIdentifierAmount; - struct Item__Array *m_ActiveItem; -}; - -struct Inventory { - struct Inventory__Class *klass; - MonitorData *monitor; - struct Inventory__Fields fields; -}; - struct ItemDefinitionAmount { struct ItemDefinitionBase *ItemDefinition; int32_t Amount; @@ -122465,12 +124991,17 @@ struct ItemDefinitionAmount__Boxed { struct ItemDefinitionAmount fields; }; -struct ItemDefinitionAmount__Array { - struct ItemDefinitionAmount__Array__Class *klass; +struct Dictionary_2_TKey_TValue_Entry_Opsive_Shared_Inventory_IItemIdentifier_Opsive_UltimateCharacterController_Items_Item_ { + int32_t hashCode; + int32_t next; + struct IItemIdentifier *key; + struct Item *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_Opsive_Shared_Inventory_IItemIdentifier_Opsive_UltimateCharacterController_Items_Item___Boxed { + struct Dictionary_2_TKey_TValue_Entry_Opsive_Shared_Inventory_IItemIdentifier_Opsive_UltimateCharacterController_Items_Item___Class *klass; MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - struct ItemDefinitionAmount vector[32]; + struct Dictionary_2_TKey_TValue_Entry_Opsive_Shared_Inventory_IItemIdentifier_Opsive_UltimateCharacterController_Items_Item_ fields; }; struct __declspec(align(8)) Dictionary_2_Opsive_Shared_Inventory_IItemIdentifier_Opsive_UltimateCharacterController_Items_Item___Fields { @@ -122492,17 +125023,26 @@ struct Dictionary_2_Opsive_Shared_Inventory_IItemIdentifier_Opsive_UltimateChara struct Dictionary_2_Opsive_Shared_Inventory_IItemIdentifier_Opsive_UltimateCharacterController_Items_Item___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_Opsive_Shared_Inventory_IItemIdentifier_Opsive_UltimateCharacterController_Items_Item_ { - int32_t hashCode; - int32_t next; - struct IItemIdentifier *key; - struct Item *value; +struct Inventory__Fields { + struct InventoryBase__Fields _; + struct ItemDefinitionAmount__Array *m_DefaultLoadout; + struct Dictionary_2_Opsive_Shared_Inventory_IItemIdentifier_Opsive_UltimateCharacterController_Items_Item___Array *m_ItemIdentifierMap; + struct Dictionary_2_Opsive_Shared_Inventory_IItemIdentifier_System_Int32_ *m_ItemIdentifierAmount; + struct Item__Array *m_ActiveItem; }; -struct Dictionary_2_TKey_TValue_Entry_Opsive_Shared_Inventory_IItemIdentifier_Opsive_UltimateCharacterController_Items_Item___Boxed { - struct Dictionary_2_TKey_TValue_Entry_Opsive_Shared_Inventory_IItemIdentifier_Opsive_UltimateCharacterController_Items_Item___Class *klass; +struct Inventory { + struct Inventory__Class *klass; MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_Opsive_Shared_Inventory_IItemIdentifier_Opsive_UltimateCharacterController_Items_Item_ fields; + struct Inventory__Fields fields; +}; + +struct ItemDefinitionAmount__Array { + struct ItemDefinitionAmount__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct ItemDefinitionAmount vector[32]; }; struct Dictionary_2_TKey_TValue_Entry_Opsive_Shared_Inventory_IItemIdentifier_Opsive_UltimateCharacterController_Items_Item___Array { @@ -122590,6 +125130,19 @@ struct Dictionary_2_Opsive_Shared_Inventory_IItemIdentifier_Opsive_UltimateChara struct Dictionary_2_Opsive_Shared_Inventory_IItemIdentifier_Opsive_UltimateCharacterController_Items_Item_ *vector[32]; }; +struct Dictionary_2_TKey_TValue_Entry_Opsive_Shared_Inventory_IItemIdentifier_System_Int32_ { + int32_t hashCode; + int32_t next; + struct IItemIdentifier *key; + int32_t value; +}; + +struct Dictionary_2_TKey_TValue_Entry_Opsive_Shared_Inventory_IItemIdentifier_System_Int32___Boxed { + struct Dictionary_2_TKey_TValue_Entry_Opsive_Shared_Inventory_IItemIdentifier_System_Int32___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_Opsive_Shared_Inventory_IItemIdentifier_System_Int32_ fields; +}; + struct __declspec(align(8)) Dictionary_2_Opsive_Shared_Inventory_IItemIdentifier_System_Int32___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_Opsive_Shared_Inventory_IItemIdentifier_System_Int32___Array *_entries; @@ -122609,19 +125162,6 @@ struct Dictionary_2_Opsive_Shared_Inventory_IItemIdentifier_System_Int32_ { struct Dictionary_2_Opsive_Shared_Inventory_IItemIdentifier_System_Int32___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_Opsive_Shared_Inventory_IItemIdentifier_System_Int32_ { - int32_t hashCode; - int32_t next; - struct IItemIdentifier *key; - int32_t value; -}; - -struct Dictionary_2_TKey_TValue_Entry_Opsive_Shared_Inventory_IItemIdentifier_System_Int32___Boxed { - struct Dictionary_2_TKey_TValue_Entry_Opsive_Shared_Inventory_IItemIdentifier_System_Int32___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_Opsive_Shared_Inventory_IItemIdentifier_System_Int32_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_Opsive_Shared_Inventory_IItemIdentifier_System_Int32___Array { struct Dictionary_2_TKey_TValue_Entry_Opsive_Shared_Inventory_IItemIdentifier_System_Int32___Array__Class *klass; MonitorData *monitor; @@ -123054,189 +125594,6 @@ struct ILookSource { MonitorData *monitor; }; -#if defined(_CPLUSPLUS_) -enum class Ability_AbilityStartType__Enum : int32_t { - Automatic = 0x00000000, - Manual = 0x00000001, - ButtonDown = 0x00000002, - ButtonDownContinuous = 0x00000003, - DoublePress = 0x00000004, - LongPress = 0x00000005, - Tap = 0x00000006, - Axis = 0x00000007, - Custom = 0x00000008, -}; - -#else -enum Ability_AbilityStartType__Enum { - Ability_AbilityStartType__Enum_Automatic = 0x00000000, - Ability_AbilityStartType__Enum_Manual = 0x00000001, - Ability_AbilityStartType__Enum_ButtonDown = 0x00000002, - Ability_AbilityStartType__Enum_ButtonDownContinuous = 0x00000003, - Ability_AbilityStartType__Enum_DoublePress = 0x00000004, - Ability_AbilityStartType__Enum_LongPress = 0x00000005, - Ability_AbilityStartType__Enum_Tap = 0x00000006, - Ability_AbilityStartType__Enum_Axis = 0x00000007, - Ability_AbilityStartType__Enum_Custom = 0x00000008, -}; - -#endif -struct Ability_AbilityStartType__Enum__Boxed { - struct Ability_AbilityStartType__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - Ability_AbilityStartType__Enum value; - #else - int32_t value; - #endif -}; - -#if defined(_CPLUSPLUS_) -enum class Ability_AbilityStopType__Enum : int32_t { - Automatic = 0x00000000, - Manual = 0x00000001, - ButtonUp = 0x00000002, - ButtonDown = 0x00000003, - ButtonToggle = 0x00000004, - LongPress = 0x00000005, - Axis = 0x00000006, -}; - -#else -enum Ability_AbilityStopType__Enum { - Ability_AbilityStopType__Enum_Automatic = 0x00000000, - Ability_AbilityStopType__Enum_Manual = 0x00000001, - Ability_AbilityStopType__Enum_ButtonUp = 0x00000002, - Ability_AbilityStopType__Enum_ButtonDown = 0x00000003, - Ability_AbilityStopType__Enum_ButtonToggle = 0x00000004, - Ability_AbilityStopType__Enum_LongPress = 0x00000005, - Ability_AbilityStopType__Enum_Axis = 0x00000006, -}; - -#endif -struct Ability_AbilityStopType__Enum__Boxed { - struct Ability_AbilityStopType__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - Ability_AbilityStopType__Enum value; - #else - int32_t value; - #endif -}; - -#if defined(_CPLUSPLUS_) -enum class Ability_AbilityBoolOverride__Enum : int32_t { - NoOverride = 0x00000000, - True = 0x00000001, - False = 0x00000002, -}; - -#else -enum Ability_AbilityBoolOverride__Enum { - Ability_AbilityBoolOverride__Enum_NoOverride = 0x00000000, - Ability_AbilityBoolOverride__Enum_True = 0x00000001, - Ability_AbilityBoolOverride__Enum_False = 0x00000002, -}; - -#endif -struct Ability_AbilityBoolOverride__Enum__Boxed { - struct Ability_AbilityBoolOverride__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - Ability_AbilityBoolOverride__Enum value; - #else - int32_t value; - #endif -}; - -struct Ability__Fields { - struct StateObject__Fields _; - bool m_Enabled; - #if defined(_CPLUSPLUS_) - Ability_AbilityStartType__Enum m_StartType; - #else - int32_t m_StartType; - #endif - #if defined(_CPLUSPLUS_) - Ability_AbilityStopType__Enum m_StopType; - #else - int32_t m_StopType; - #endif - struct String__Array *m_InputNames; - float m_LongPressDuration; - bool m_WaitForLongPressRelease; - struct Serialization *m_StarterData; - struct AttributeModifier *m_AttributeModifier; - struct String *m_State; - bool m_StateAppendItemIdentifierName; - int32_t m_AbilityIndexParameter; - struct AudioClipSet *m_StartAudioClipSet; - struct AudioClipSet *m_StopAudioClipSet; - bool m_StopStartAudioOnComplete; - bool m_AllowPositionalInput; - bool m_AllowRotationalInput; - #if defined(_CPLUSPLUS_) - Ability_AbilityBoolOverride__Enum m_UseGravity; - #else - int32_t m_UseGravity; - #endif - #if defined(_CPLUSPLUS_) - Ability_AbilityBoolOverride__Enum m_UseRootMotionPosition; - #else - int32_t m_UseRootMotionPosition; - #endif - #if defined(_CPLUSPLUS_) - Ability_AbilityBoolOverride__Enum m_UseRootMotionRotation; - #else - int32_t m_UseRootMotionRotation; - #endif - #if defined(_CPLUSPLUS_) - Ability_AbilityBoolOverride__Enum m_DetectHorizontalCollisions; - #else - int32_t m_DetectHorizontalCollisions; - #endif - #if defined(_CPLUSPLUS_) - Ability_AbilityBoolOverride__Enum m_DetectVerticalCollisions; - #else - int32_t m_DetectVerticalCollisions; - #endif - struct AnimatorMotion *m_AnimatorMotion; - struct String *m_StartEffectName; - int32_t m_StartEffectIndex; - int32_t m_AllowEquippedSlotsMask; - struct ItemDefinitionBase__Array *m_AllowItemDefinitions; - bool m_ImmediateUnequip; - bool m_ReequipSlots; - struct String *m_AbilityMessageText; - struct Sprite *m_AbilityMessageIcon; - bool m_CheckCanAbilityStartWithoutMessage; - struct UltimateCharacterLocomotion *m_CharacterLocomotion; - struct GameObject *m_GameObject; - struct Transform *m_Transform; - struct AnimatorMonitor *m_AnimatorMonitor; - struct CharacterLayerManager *m_CharacterLayerManager; - struct InventoryBase *m_Inventory; - bool m_CheckForAbilityMessage; - bool m_AbilityMessageCanStart; - struct Boolean__Array *m_ButtonUp; - int32_t m_Index; - int32_t m_ActiveIndex; - int32_t m_InputIndex; - float m_InputAxisValue; - struct Boolean__Array *m_ActiveInput; - float m_StartTime; - int32_t m_ActiveCount; - struct Effect *m_StartEffect; - struct AbilityStarter *m_Starter; - struct AudioSource *m_StartAudioSource; -}; - -struct Ability { - struct Ability__Class *klass; - MonitorData *monitor; - struct Ability__Fields fields; -}; - struct SpeedChange__Fields { struct Ability__Fields _; float m_SpeedChangeMultiplier; @@ -123372,23 +125729,23 @@ struct CharacterLayerManager { struct CharacterLayerManager__Fields fields; }; -struct Effect__Fields { +struct ViewType__Fields { struct StateObject__Fields _; - bool m_Enabled; - bool m_StartWhenEnabled; - struct String *m_State; - struct GameObject *m_GameObject; - struct Transform *m_Transform; - struct UltimateCharacterLocomotion *m_CharacterLocomotion; + float m_FieldOfView; + float m_FieldOfViewDamping; struct CameraController *m_CameraController; - int32_t m_ActiveIndex; - int32_t m_Index; + struct Transform *m_Transform; + struct GameObject *m_GameObject; + struct GameObject *m_Character; + struct Transform *m_CharacterTransform; + struct UltimateCharacterLocomotion *m_CharacterLocomotion; + struct CharacterLayerManager *m_CharacterLayerManager; }; -struct Effect { - struct Effect__Class *klass; +struct ViewType { + struct ViewType__Class *klass; MonitorData *monitor; - struct Effect__Fields fields; + struct ViewType__Fields fields; }; struct CameraController__Fields { @@ -123486,25 +125843,6 @@ struct UnityBoolEvent { struct UnityBoolEvent__Fields fields; }; -struct ViewType__Fields { - struct StateObject__Fields _; - float m_FieldOfView; - float m_FieldOfViewDamping; - struct CameraController *m_CameraController; - struct Transform *m_Transform; - struct GameObject *m_GameObject; - struct GameObject *m_Character; - struct Transform *m_CharacterTransform; - struct UltimateCharacterLocomotion *m_CharacterLocomotion; - struct CharacterLayerManager *m_CharacterLayerManager; -}; - -struct ViewType { - struct ViewType__Class *klass; - MonitorData *monitor; - struct ViewType__Fields fields; -}; - struct FirstPerson__Fields { struct ViewType__Fields _; float m_LookDirectionDistance; @@ -123689,6 +126027,18 @@ struct AbilityStarter { struct AbilityStarter__Fields fields; }; +struct ComboTimeout_ComboInputElement { + struct String *m_InputName; + bool m_AxisInput; + float m_Timeout; +}; + +struct ComboTimeout_ComboInputElement__Boxed { + struct ComboTimeout_ComboInputElement__Class *klass; + MonitorData *monitor; + struct ComboTimeout_ComboInputElement fields; +}; + struct ComboTimeout__Fields { struct AbilityStarter__Fields _; struct ComboTimeout_ComboInputElement__Array *m_ComboInputElements; @@ -123702,18 +126052,6 @@ struct ComboTimeout { struct ComboTimeout__Fields fields; }; -struct ComboTimeout_ComboInputElement { - struct String *m_InputName; - bool m_AxisInput; - float m_Timeout; -}; - -struct ComboTimeout_ComboInputElement__Boxed { - struct ComboTimeout_ComboInputElement__Class *klass; - MonitorData *monitor; - struct ComboTimeout_ComboInputElement fields; -}; - struct ComboTimeout_ComboInputElement__Array { struct ComboTimeout_ComboInputElement__Array__Class *klass; MonitorData *monitor; @@ -123795,6 +126133,19 @@ struct Vector2__Array { struct Vector2 vector[32]; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_System_Single_ { + int32_t hashCode; + int32_t next; + struct String *key; + float value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_System_Single___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_System_Single___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_System_Single_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_System_Single___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_System_Single___Array *_entries; @@ -123814,19 +126165,6 @@ struct Dictionary_2_System_String_System_Single_ { struct Dictionary_2_System_String_System_Single___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_System_Single_ { - int32_t hashCode; - int32_t next; - struct String *key; - float value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_System_Single___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_System_Single___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_System_Single_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_String_System_Single___Array { struct Dictionary_2_TKey_TValue_Entry_System_String_System_Single___Array__Class *klass; MonitorData *monitor; @@ -123923,40 +126261,6 @@ struct MoveTowardsLocation__Array { struct MoveTowardsLocation *vector[32]; }; -struct ChildAnimatorMonitor__Fields { - struct MonoBehaviour__Fields _; - struct GameObject *m_GameObject; - struct Animator *m_Animator; - struct GameObject *m_Character; - struct UltimateCharacterLocomotion *m_CharacterLocomotion; - struct AnimatorMonitor *m_CharacterAnimatorMonitor; - bool m_FirstPersonAnimatorMonitor; - float m_HorizontalMovement; - float m_ForwardMovement; - float m_Pitch; - float m_Yaw; - float m_Speed; - int32_t m_Height; - bool m_Moving; - bool m_Aiming; - int32_t m_MovementSetID; - int32_t m_AbilityIndex; - int32_t m_AbilityIntData; - float m_AbilityFloatData; - struct Int32__Array *m_ItemSlotID; - struct Int32__Array *m_ItemSlotStateIndex; - struct Int32__Array *m_ItemSlotSubstateIndex; - bool m_HasVRParameters; - int32_t m_HandStateIndex; - float m_HandGripStrength; -}; - -struct ChildAnimatorMonitor { - struct ChildAnimatorMonitor__Class *klass; - MonitorData *monitor; - struct ChildAnimatorMonitor__Fields fields; -}; - struct ChildAnimatorMonitor__Array { struct ChildAnimatorMonitor__Array__Class *klass; MonitorData *monitor; @@ -123965,24 +126269,6 @@ struct ChildAnimatorMonitor__Array { struct ChildAnimatorMonitor *vector[32]; }; -struct ItemAction__Fields { - struct StateBehavior__Fields _; - int32_t m_ID; - struct GameObject *m_GameObject; - struct Item *m_Item; - struct InventoryBase *m_Inventory; - struct GameObject *m_Character; - struct ItemPerspectiveProperties *m_FirstPersonPerspectiveProperties; - struct ItemPerspectiveProperties *m_ThirdPersonPerspectiveProperties; - struct ItemPerspectiveProperties *m_ActivePerspectiveProperties; -}; - -struct ItemAction { - struct ItemAction__Class *klass; - MonitorData *monitor; - struct ItemAction__Fields fields; -}; - struct ItemPerspectiveProperties__Fields { struct StateBehavior__Fields _; int32_t m_ActionID; @@ -124016,6 +126302,19 @@ struct ItemAction__Array { struct ItemAction *vector[32]; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_Opsive_UltimateCharacterController_Items_Actions_ItemAction_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct ItemAction *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_Opsive_UltimateCharacterController_Items_Actions_ItemAction___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_Opsive_UltimateCharacterController_Items_Actions_ItemAction___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_Opsive_UltimateCharacterController_Items_Actions_ItemAction_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_Opsive_UltimateCharacterController_Items_Actions_ItemAction___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_Opsive_UltimateCharacterController_Items_Actions_ItemAction___Array *_entries; @@ -124035,19 +126334,6 @@ struct Dictionary_2_System_Int32_Opsive_UltimateCharacterController_Items_Action struct Dictionary_2_System_Int32_Opsive_UltimateCharacterController_Items_Actions_ItemAction___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_Opsive_UltimateCharacterController_Items_Actions_ItemAction_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct ItemAction *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_Opsive_UltimateCharacterController_Items_Actions_ItemAction___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_Opsive_UltimateCharacterController_Items_Actions_ItemAction___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_Opsive_UltimateCharacterController_Items_Actions_ItemAction_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_Opsive_UltimateCharacterController_Items_Actions_ItemAction___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_Opsive_UltimateCharacterController_Items_Actions_ItemAction___Array__Class *klass; MonitorData *monitor; @@ -124141,6 +126427,19 @@ struct UnityEngineUtility_RaycastHitComparer { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_RaycastHit_System_Int32_ { + int32_t hashCode; + int32_t next; + struct RaycastHit key; + int32_t value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_RaycastHit_System_Int32___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_RaycastHit_System_Int32___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_RaycastHit_System_Int32_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_RaycastHit_System_Int32___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_RaycastHit_System_Int32___Array *_entries; @@ -124160,19 +126459,6 @@ struct Dictionary_2_UnityEngine_RaycastHit_System_Int32_ { struct Dictionary_2_UnityEngine_RaycastHit_System_Int32___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_RaycastHit_System_Int32_ { - int32_t hashCode; - int32_t next; - struct RaycastHit key; - int32_t value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_RaycastHit_System_Int32___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_RaycastHit_System_Int32___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_RaycastHit_System_Int32_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_RaycastHit_System_Int32___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_RaycastHit_System_Int32___Array__Class *klass; MonitorData *monitor; @@ -124350,21 +126636,6 @@ struct UnityTransformEvent { struct UnityTransformEvent__Fields fields; }; -struct MovementType__Fields { - struct StateObject__Fields _; - struct GameObject *m_GameObject; - struct Transform *m_Transform; - struct UltimateCharacterLocomotion *m_CharacterLocomotion; - struct ILookSource *m_LookSource; - bool m_ForceIndependentLook; -}; - -struct MovementType { - struct MovementType__Class *klass; - MonitorData *monitor; - struct MovementType__Fields fields; -}; - struct Combat_1__Fields { struct MovementType__Fields _; }; @@ -124449,40 +126720,6 @@ struct SpeedChange__Array { struct SpeedChange *vector[32]; }; -struct ItemEquipVerifier__Fields { - struct Ability__Fields _; - struct EquipUnequip__Array *m_EquipUnequipAbilities; - bool m_Equip; - struct Ability *m_StartingAbility; - bool m_UnequippedItems; - struct ItemSetManagerBase *m_ItemSetManager; - bool m_CanToggleItem; - bool m_CanStopAbility; - struct HashSet_1_Opsive_UltimateCharacterController_Character_Abilities_Items_ItemAbility_ *m_ActiveEquipUnequipAbilities; - int32_t m_StartEquippedSlotMask; - bool m_StartAllowPositionalInput; - bool m_StartAllowRotationalInput; - struct Int32__Array *m_StartingItemSetIndex; - struct Int32__Array *m_TargetItemSetIndex; -}; - -struct ItemEquipVerifier { - struct ItemEquipVerifier__Class *klass; - MonitorData *monitor; - struct ItemEquipVerifier__Fields fields; -}; - -struct ItemAbility__Fields { - struct Ability__Fields _; - int32_t m_ItemStateIndex; -}; - -struct ItemAbility { - struct ItemAbility__Class *klass; - MonitorData *monitor; - struct ItemAbility__Fields fields; -}; - struct ItemSetAbilityBase__Fields { struct ItemAbility__Fields _; uint32_t m_ItemSetCategoryID; @@ -124526,6 +126763,35 @@ struct EquipUnequip_AutoEquipType__Enum__Boxed { #endif }; +#if defined(_CPLUSPLUS_) +enum class EquipUnequip_EquipUnequipAction__Enum : int32_t { + Inactive = 0x00000000, + Unequip = 0x00000001, + UnequipComplete = 0x00000002, + Equip = 0x00000003, + EquipComplete = 0x00000004, +}; + +#else +enum EquipUnequip_EquipUnequipAction__Enum { + EquipUnequip_EquipUnequipAction__Enum_Inactive = 0x00000000, + EquipUnequip_EquipUnequipAction__Enum_Unequip = 0x00000001, + EquipUnequip_EquipUnequipAction__Enum_UnequipComplete = 0x00000002, + EquipUnequip_EquipUnequipAction__Enum_Equip = 0x00000003, + EquipUnequip_EquipUnequipAction__Enum_EquipComplete = 0x00000004, +}; + +#endif +struct EquipUnequip_EquipUnequipAction__Enum__Boxed { + struct EquipUnequip_EquipUnequipAction__Enum__Class *klass; + MonitorData *monitor; + #if defined(_CPLUSPLUS_) + EquipUnequip_EquipUnequipAction__Enum value; + #else + int32_t value; + #endif +}; + struct EquipUnequip__Fields { struct ItemSetAbilityBase__Fields _; #if defined(_CPLUSPLUS_) @@ -124559,22 +126825,27 @@ struct EquipUnequip { struct EquipUnequip__Fields fields; }; -struct ItemSetManagerBase__Fields { - struct MonoBehaviour__Fields _; - struct CategoryItemSet__Array *m_CategoryItemSets; - bool m_Initialized; - struct GameObject *m_GameObject; - struct InventoryBase *m_Inventory; - struct Int32__Array *m_ActiveItemSetIndex; - struct Int32__Array *m_NextItemSetIndex; - struct HashSet_1_Opsive_Shared_Inventory_IItemIdentifier_ *m_CheckedItemIdentifiers; - struct Dictionary_2_Opsive_Shared_Inventory_IItemCategoryIdentifier_System_Int32_ *m_CategoryIndexMap; +struct ItemEquipVerifier__Fields { + struct Ability__Fields _; + struct EquipUnequip__Array *m_EquipUnequipAbilities; + bool m_Equip; + struct Ability *m_StartingAbility; + bool m_UnequippedItems; + struct ItemSetManagerBase *m_ItemSetManager; + bool m_CanToggleItem; + bool m_CanStopAbility; + struct HashSet_1_Opsive_UltimateCharacterController_Character_Abilities_Items_ItemAbility_ *m_ActiveEquipUnequipAbilities; + int32_t m_StartEquippedSlotMask; + bool m_StartAllowPositionalInput; + bool m_StartAllowRotationalInput; + struct Int32__Array *m_StartingItemSetIndex; + struct Int32__Array *m_TargetItemSetIndex; }; -struct ItemSetManagerBase { - struct ItemSetManagerBase__Class *klass; +struct ItemEquipVerifier { + struct ItemEquipVerifier__Class *klass; MonitorData *monitor; - struct ItemSetManagerBase__Fields fields; + struct ItemEquipVerifier__Fields fields; }; struct __declspec(align(8)) CategoryItemSet__Fields { @@ -124591,17 +126862,22 @@ struct CategoryItemSet { struct CategoryItemSet__Fields fields; }; -struct __declspec(align(8)) List_1_Opsive_UltimateCharacterController_Inventory_ItemSet___Fields { - struct ItemSet__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; +struct ItemSetManagerBase__Fields { + struct MonoBehaviour__Fields _; + struct CategoryItemSet__Array *m_CategoryItemSets; + bool m_Initialized; + struct GameObject *m_GameObject; + struct InventoryBase *m_Inventory; + struct Int32__Array *m_ActiveItemSetIndex; + struct Int32__Array *m_NextItemSetIndex; + struct HashSet_1_Opsive_Shared_Inventory_IItemIdentifier_ *m_CheckedItemIdentifiers; + struct Dictionary_2_Opsive_Shared_Inventory_IItemCategoryIdentifier_System_Int32_ *m_CategoryIndexMap; }; -struct List_1_Opsive_UltimateCharacterController_Inventory_ItemSet_ { - struct List_1_Opsive_UltimateCharacterController_Inventory_ItemSet___Class *klass; +struct ItemSetManagerBase { + struct ItemSetManagerBase__Class *klass; MonitorData *monitor; - struct List_1_Opsive_UltimateCharacterController_Inventory_ItemSet___Fields fields; + struct ItemSetManagerBase__Fields fields; }; struct ItemSet__Fields { @@ -124626,6 +126902,19 @@ struct ItemSet { struct ItemSet__Fields fields; }; +struct __declspec(align(8)) List_1_Opsive_UltimateCharacterController_Inventory_ItemSet___Fields { + struct ItemSet__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Opsive_UltimateCharacterController_Inventory_ItemSet_ { + struct List_1_Opsive_UltimateCharacterController_Inventory_ItemSet___Class *klass; + MonitorData *monitor; + struct List_1_Opsive_UltimateCharacterController_Inventory_ItemSet___Fields fields; +}; + struct ItemSet__Array { struct ItemSet__Array__Class *klass; MonitorData *monitor; @@ -124647,6 +126936,18 @@ struct CategoryItemSet__Array { struct CategoryItemSet *vector[32]; }; +struct HashSet_1_T_Slot_Opsive_Shared_Inventory_IItemIdentifier_ { + int32_t hashCode; + int32_t next; + struct IItemIdentifier *value; +}; + +struct HashSet_1_T_Slot_Opsive_Shared_Inventory_IItemIdentifier___Boxed { + struct HashSet_1_T_Slot_Opsive_Shared_Inventory_IItemIdentifier___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_Opsive_Shared_Inventory_IItemIdentifier_ fields; +}; + struct __declspec(align(8)) HashSet_1_Opsive_Shared_Inventory_IItemIdentifier___Fields { struct Int32__Array *_buckets; struct HashSet_1_T_Slot_Opsive_Shared_Inventory_IItemIdentifier___Array *_slots; @@ -124664,18 +126965,6 @@ struct HashSet_1_Opsive_Shared_Inventory_IItemIdentifier_ { struct HashSet_1_Opsive_Shared_Inventory_IItemIdentifier___Fields fields; }; -struct HashSet_1_T_Slot_Opsive_Shared_Inventory_IItemIdentifier_ { - int32_t hashCode; - int32_t next; - struct IItemIdentifier *value; -}; - -struct HashSet_1_T_Slot_Opsive_Shared_Inventory_IItemIdentifier___Boxed { - struct HashSet_1_T_Slot_Opsive_Shared_Inventory_IItemIdentifier___Class *klass; - MonitorData *monitor; - struct HashSet_1_T_Slot_Opsive_Shared_Inventory_IItemIdentifier_ fields; -}; - struct HashSet_1_T_Slot_Opsive_Shared_Inventory_IItemIdentifier___Array { struct HashSet_1_T_Slot_Opsive_Shared_Inventory_IItemIdentifier___Array__Class *klass; MonitorData *monitor; @@ -124684,6 +126973,19 @@ struct HashSet_1_T_Slot_Opsive_Shared_Inventory_IItemIdentifier___Array { struct HashSet_1_T_Slot_Opsive_Shared_Inventory_IItemIdentifier_ vector[32]; }; +struct Dictionary_2_TKey_TValue_Entry_Opsive_Shared_Inventory_IItemCategoryIdentifier_System_Int32_ { + int32_t hashCode; + int32_t next; + struct IItemCategoryIdentifier *key; + int32_t value; +}; + +struct Dictionary_2_TKey_TValue_Entry_Opsive_Shared_Inventory_IItemCategoryIdentifier_System_Int32___Boxed { + struct Dictionary_2_TKey_TValue_Entry_Opsive_Shared_Inventory_IItemCategoryIdentifier_System_Int32___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_Opsive_Shared_Inventory_IItemCategoryIdentifier_System_Int32_ fields; +}; + struct __declspec(align(8)) Dictionary_2_Opsive_Shared_Inventory_IItemCategoryIdentifier_System_Int32___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_Opsive_Shared_Inventory_IItemCategoryIdentifier_System_Int32___Array *_entries; @@ -124703,19 +127005,6 @@ struct Dictionary_2_Opsive_Shared_Inventory_IItemCategoryIdentifier_System_Int32 struct Dictionary_2_Opsive_Shared_Inventory_IItemCategoryIdentifier_System_Int32___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_Opsive_Shared_Inventory_IItemCategoryIdentifier_System_Int32_ { - int32_t hashCode; - int32_t next; - struct IItemCategoryIdentifier *key; - int32_t value; -}; - -struct Dictionary_2_TKey_TValue_Entry_Opsive_Shared_Inventory_IItemCategoryIdentifier_System_Int32___Boxed { - struct Dictionary_2_TKey_TValue_Entry_Opsive_Shared_Inventory_IItemCategoryIdentifier_System_Int32___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_Opsive_Shared_Inventory_IItemCategoryIdentifier_System_Int32_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_Opsive_Shared_Inventory_IItemCategoryIdentifier_System_Int32___Array { struct Dictionary_2_TKey_TValue_Entry_Opsive_Shared_Inventory_IItemCategoryIdentifier_System_Int32___Array__Class *klass; MonitorData *monitor; @@ -124807,18 +127096,6 @@ struct ItemSetManager { struct ItemSetManager__Fields fields; }; -struct ItemCollection__Fields { - struct ScriptableObject__Fields _; - struct Category__Array *m_Categories; - struct ItemType__Array *m_ItemTypes; -}; - -struct ItemCollection { - struct ItemCollection__Class *klass; - MonitorData *monitor; - struct ItemCollection__Fields fields; -}; - struct Category__Fields { struct ScriptableObject__Fields _; uint32_t m_ID; @@ -124831,6 +127108,18 @@ struct Category { struct Category__Fields fields; }; +struct ItemCollection__Fields { + struct ScriptableObject__Fields _; + struct Category__Array *m_Categories; + struct ItemType__Array *m_ItemTypes; +}; + +struct ItemCollection { + struct ItemCollection__Class *klass; + MonitorData *monitor; + struct ItemCollection__Fields fields; +}; + struct IReadOnlyList_1_Opsive_Shared_Inventory_IItemCategoryIdentifier_ { struct IReadOnlyList_1_Opsive_Shared_Inventory_IItemCategoryIdentifier___Class *klass; MonitorData *monitor; @@ -124852,35 +127141,6 @@ struct ItemType__Array { struct ItemType *vector[32]; }; -#if defined(_CPLUSPLUS_) -enum class EquipUnequip_EquipUnequipAction__Enum : int32_t { - Inactive = 0x00000000, - Unequip = 0x00000001, - UnequipComplete = 0x00000002, - Equip = 0x00000003, - EquipComplete = 0x00000004, -}; - -#else -enum EquipUnequip_EquipUnequipAction__Enum { - EquipUnequip_EquipUnequipAction__Enum_Inactive = 0x00000000, - EquipUnequip_EquipUnequipAction__Enum_Unequip = 0x00000001, - EquipUnequip_EquipUnequipAction__Enum_UnequipComplete = 0x00000002, - EquipUnequip_EquipUnequipAction__Enum_Equip = 0x00000003, - EquipUnequip_EquipUnequipAction__Enum_EquipComplete = 0x00000004, -}; - -#endif -struct EquipUnequip_EquipUnequipAction__Enum__Boxed { - struct EquipUnequip_EquipUnequipAction__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - EquipUnequip_EquipUnequipAction__Enum value; - #else - int32_t value; - #endif -}; - struct EquipUnequip_EquipUnequipAction__Enum__Array { struct EquipUnequip_EquipUnequipAction__Enum__Array__Class *klass; MonitorData *monitor; @@ -124905,6 +127165,18 @@ struct EquipUnequip__Array { struct EquipUnequip *vector[32]; }; +struct HashSet_1_T_Slot_Opsive_UltimateCharacterController_Character_Abilities_Items_ItemAbility_ { + int32_t hashCode; + int32_t next; + struct ItemAbility *value; +}; + +struct HashSet_1_T_Slot_Opsive_UltimateCharacterController_Character_Abilities_Items_ItemAbility___Boxed { + struct HashSet_1_T_Slot_Opsive_UltimateCharacterController_Character_Abilities_Items_ItemAbility___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_Opsive_UltimateCharacterController_Character_Abilities_Items_ItemAbility_ fields; +}; + struct __declspec(align(8)) HashSet_1_Opsive_UltimateCharacterController_Character_Abilities_Items_ItemAbility___Fields { struct Int32__Array *_buckets; struct HashSet_1_T_Slot_Opsive_UltimateCharacterController_Character_Abilities_Items_ItemAbility___Array *_slots; @@ -124922,18 +127194,6 @@ struct HashSet_1_Opsive_UltimateCharacterController_Character_Abilities_Items_It struct HashSet_1_Opsive_UltimateCharacterController_Character_Abilities_Items_ItemAbility___Fields fields; }; -struct HashSet_1_T_Slot_Opsive_UltimateCharacterController_Character_Abilities_Items_ItemAbility_ { - int32_t hashCode; - int32_t next; - struct ItemAbility *value; -}; - -struct HashSet_1_T_Slot_Opsive_UltimateCharacterController_Character_Abilities_Items_ItemAbility___Boxed { - struct HashSet_1_T_Slot_Opsive_UltimateCharacterController_Character_Abilities_Items_ItemAbility___Class *klass; - MonitorData *monitor; - struct HashSet_1_T_Slot_Opsive_UltimateCharacterController_Character_Abilities_Items_ItemAbility_ fields; -}; - struct HashSet_1_T_Slot_Opsive_UltimateCharacterController_Character_Abilities_Items_ItemAbility___Array { struct HashSet_1_T_Slot_Opsive_UltimateCharacterController_Character_Abilities_Items_ItemAbility___Array__Class *klass; MonitorData *monitor; @@ -125439,44 +127699,6 @@ struct Path_1 { struct Path_1__Fields fields; }; -struct __declspec(align(8)) PathHandler__Fields { - uint16_t pathID; - int32_t threadID; - int32_t totalThreadCount; - struct BinaryHeap *heap; - struct PathNode__Array *nodes; - struct StringBuilder *DebugStringBuilder; -}; - -struct PathHandler { - struct PathHandler__Class *klass; - MonitorData *monitor; - struct PathHandler__Fields fields; -}; - -struct __declspec(align(8)) BinaryHeap__Fields { - int32_t numberOfItems; - float growthFactor; - struct BinaryHeap_Tuple__Array *heap; -}; - -struct BinaryHeap { - struct BinaryHeap__Class *klass; - MonitorData *monitor; - struct BinaryHeap__Fields fields; -}; - -struct BinaryHeap_Tuple { - struct PathNode *node; - uint32_t F; -}; - -struct BinaryHeap_Tuple__Boxed { - struct BinaryHeap_Tuple__Class *klass; - MonitorData *monitor; - struct BinaryHeap_Tuple fields; -}; - struct __declspec(align(8)) PathNode__Fields { struct GraphNode *node; struct PathNode *parent; @@ -125493,6 +127715,44 @@ struct PathNode { struct PathNode__Fields fields; }; +struct __declspec(align(8)) PathHandler__Fields { + uint16_t pathID; + int32_t threadID; + int32_t totalThreadCount; + struct BinaryHeap *heap; + struct PathNode__Array *nodes; + struct StringBuilder *DebugStringBuilder; +}; + +struct PathHandler { + struct PathHandler__Class *klass; + MonitorData *monitor; + struct PathHandler__Fields fields; +}; + +struct BinaryHeap_Tuple { + struct PathNode *node; + uint32_t F; +}; + +struct BinaryHeap_Tuple__Boxed { + struct BinaryHeap_Tuple__Class *klass; + MonitorData *monitor; + struct BinaryHeap_Tuple fields; +}; + +struct __declspec(align(8)) BinaryHeap__Fields { + int32_t numberOfItems; + float growthFactor; + struct BinaryHeap_Tuple__Array *heap; +}; + +struct BinaryHeap { + struct BinaryHeap__Class *klass; + MonitorData *monitor; + struct BinaryHeap__Fields fields; +}; + struct __declspec(align(8)) GraphNode__Fields { int32_t nodeIndex; uint32_t flags; @@ -125505,18 +127765,6 @@ struct GraphNode { struct GraphNode__Fields fields; }; -struct PointNode__Fields { - struct GraphNode__Fields _; - struct Connection__Array *connections; - struct GameObject *gameObject; -}; - -struct PointNode { - struct PointNode__Class *klass; - MonitorData *monitor; - struct PointNode__Fields fields; -}; - struct Connection { struct GraphNode *node; uint32_t cost; @@ -125529,6 +127777,18 @@ struct Connection__Boxed { struct Connection fields; }; +struct PointNode__Fields { + struct GraphNode__Fields _; + struct Connection__Array *connections; + struct GameObject *gameObject; +}; + +struct PointNode { + struct PointNode__Class *klass; + MonitorData *monitor; + struct PointNode__Fields fields; +}; + struct Connection__Array { struct Connection__Array__Class *klass; MonitorData *monitor; @@ -125931,6 +128191,50 @@ struct AstarData { struct AstarData__Fields fields; }; +struct MeshNode__Fields { + struct GraphNode__Fields _; + struct Connection__Array *connections; +}; + +struct MeshNode { + struct MeshNode__Class *klass; + MonitorData *monitor; + struct MeshNode__Fields fields; +}; + +struct TriangleMeshNode__Fields { + struct MeshNode__Fields _; + int32_t v0; + int32_t v1; + int32_t v2; +}; + +struct TriangleMeshNode { + struct TriangleMeshNode__Class *klass; + MonitorData *monitor; + struct TriangleMeshNode__Fields fields; +}; + +struct __declspec(align(8)) NavmeshTile__Fields { + struct Int32__Array *tris; + struct Int3__Array *verts; + struct Int3__Array *vertsInGraphSpace; + int32_t x; + int32_t z; + int32_t w; + int32_t d; + struct TriangleMeshNode__Array *nodes; + struct BBTree *bbTree; + bool flag; + struct NavmeshBase *graph; +}; + +struct NavmeshTile { + struct NavmeshTile__Class *klass; + MonitorData *monitor; + struct NavmeshTile__Fields fields; +}; + struct NavmeshBase__Fields { struct NavGraph__Fields _; struct Vector3 forcedBoundsSize; @@ -125973,26 +128277,6 @@ struct NavMeshGraph { struct NavMeshGraph__Fields fields; }; -struct __declspec(align(8)) NavmeshTile__Fields { - struct Int32__Array *tris; - struct Int3__Array *verts; - struct Int3__Array *vertsInGraphSpace; - int32_t x; - int32_t z; - int32_t w; - int32_t d; - struct TriangleMeshNode__Array *nodes; - struct BBTree *bbTree; - bool flag; - struct NavmeshBase *graph; -}; - -struct NavmeshTile { - struct NavmeshTile__Class *klass; - MonitorData *monitor; - struct NavmeshTile__Fields fields; -}; - struct Int3__Array { struct Int3__Array__Class *klass; MonitorData *monitor; @@ -126001,30 +128285,6 @@ struct Int3__Array { struct Int3 vector[32]; }; -struct MeshNode__Fields { - struct GraphNode__Fields _; - struct Connection__Array *connections; -}; - -struct MeshNode { - struct MeshNode__Class *klass; - MonitorData *monitor; - struct MeshNode__Fields fields; -}; - -struct TriangleMeshNode__Fields { - struct MeshNode__Fields _; - int32_t v0; - int32_t v1; - int32_t v2; -}; - -struct TriangleMeshNode { - struct TriangleMeshNode__Class *klass; - MonitorData *monitor; - struct TriangleMeshNode__Fields fields; -}; - struct INavmeshHolder { struct INavmeshHolder__Class *klass; MonitorData *monitor; @@ -126046,19 +128306,6 @@ struct TriangleMeshNode__Array { struct TriangleMeshNode *vector[32]; }; -struct __declspec(align(8)) BBTree__Fields { - struct BBTree_BBTreeBox__Array *tree; - struct TriangleMeshNode__Array *nodeLookup; - int32_t count; - int32_t leafNodes; -}; - -struct BBTree { - struct BBTree__Class *klass; - MonitorData *monitor; - struct BBTree__Fields fields; -}; - struct IntRect { int32_t xmin; int32_t ymin; @@ -126085,6 +128332,19 @@ struct BBTree_BBTreeBox__Boxed { struct BBTree_BBTreeBox fields; }; +struct __declspec(align(8)) BBTree__Fields { + struct BBTree_BBTreeBox__Array *tree; + struct TriangleMeshNode__Array *nodeLookup; + int32_t count; + int32_t leafNodes; +}; + +struct BBTree { + struct BBTree__Class *klass; + MonitorData *monitor; + struct BBTree__Fields fields; +}; + struct BBTree_BBTreeBox__Array { struct BBTree_BBTreeBox__Array__Class *klass; MonitorData *monitor; @@ -126133,6 +128393,22 @@ struct NavmeshUpdates_NavmeshUpdateSettings { struct NavmeshUpdates_NavmeshUpdateSettings__Fields fields; }; +struct __declspec(align(8)) TileHandler_TileType__Fields { + struct Int3__Array *verts; + struct Int32__Array *tris; + struct Int3 offset; + int32_t lastYOffset; + int32_t lastRotation; + int32_t width; + int32_t depth; +}; + +struct TileHandler_TileType { + struct TileHandler_TileType__Class *klass; + MonitorData *monitor; + struct TileHandler_TileType__Fields fields; +}; + struct Int3PolygonClipper { struct Single__Array *clipPolygonCache; struct Int32__Array *clipPolygonIntCache; @@ -126375,19 +128651,6 @@ struct TEdge { struct TEdge__Fields fields; }; -struct __declspec(align(8)) List_1_List_1_Pathfinding_ClipperLib_TEdge___Fields { - struct List_1_Pathfinding_ClipperLib_TEdge___Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_List_1_Pathfinding_ClipperLib_TEdge_ { - struct List_1_List_1_Pathfinding_ClipperLib_TEdge___Class *klass; - MonitorData *monitor; - struct List_1_List_1_Pathfinding_ClipperLib_TEdge___Fields fields; -}; - struct __declspec(align(8)) List_1_Pathfinding_ClipperLib_TEdge___Fields { struct TEdge__Array *_items; int32_t _size; @@ -126401,6 +128664,19 @@ struct List_1_Pathfinding_ClipperLib_TEdge_ { struct List_1_Pathfinding_ClipperLib_TEdge___Fields fields; }; +struct __declspec(align(8)) List_1_List_1_Pathfinding_ClipperLib_TEdge___Fields { + struct List_1_Pathfinding_ClipperLib_TEdge___Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_List_1_Pathfinding_ClipperLib_TEdge_ { + struct List_1_List_1_Pathfinding_ClipperLib_TEdge___Class *klass; + MonitorData *monitor; + struct List_1_List_1_Pathfinding_ClipperLib_TEdge___Fields fields; +}; + struct TEdge__Array { struct TEdge__Array__Class *klass; MonitorData *monitor; @@ -126427,19 +128703,6 @@ struct IEnumerator_1_List_1_Pathfinding_ClipperLib_TEdge_ { MonitorData *monitor; }; -struct __declspec(align(8)) List_1_Pathfinding_ClipperLib_OutRec___Fields { - struct OutRec__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Pathfinding_ClipperLib_OutRec_ { - struct List_1_Pathfinding_ClipperLib_OutRec___Class *klass; - MonitorData *monitor; - struct List_1_Pathfinding_ClipperLib_OutRec___Fields fields; -}; - struct __declspec(align(8)) OutRec__Fields { int32_t Idx; bool IsHole; @@ -126456,6 +128719,19 @@ struct OutRec { struct OutRec__Fields fields; }; +struct __declspec(align(8)) List_1_Pathfinding_ClipperLib_OutRec___Fields { + struct OutRec__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Pathfinding_ClipperLib_OutRec_ { + struct List_1_Pathfinding_ClipperLib_OutRec___Class *klass; + MonitorData *monitor; + struct List_1_Pathfinding_ClipperLib_OutRec___Fields fields; +}; + struct __declspec(align(8)) OutPt__Fields { int32_t Idx; struct IntPoint Pt; @@ -126572,6 +128848,18 @@ struct IntersectNode { struct IntersectNode__Fields fields; }; +struct __declspec(align(8)) Join__Fields { + struct OutPt *OutPt1; + struct OutPt *OutPt2; + struct IntPoint OffPt; +}; + +struct Join { + struct Join__Class *klass; + MonitorData *monitor; + struct Join__Fields fields; +}; + struct __declspec(align(8)) List_1_Pathfinding_ClipperLib_Join___Fields { struct Join__Array *_items; int32_t _size; @@ -126585,18 +128873,6 @@ struct List_1_Pathfinding_ClipperLib_Join_ { struct List_1_Pathfinding_ClipperLib_Join___Fields fields; }; -struct __declspec(align(8)) Join__Fields { - struct OutPt *OutPt1; - struct OutPt *OutPt2; - struct IntPoint OffPt; -}; - -struct Join { - struct Join__Class *klass; - MonitorData *monitor; - struct Join__Fields fields; -}; - struct Join__Array { struct Join__Array__Class *klass; MonitorData *monitor; @@ -126620,25 +128896,6 @@ struct Action_1_System_Collections_Generic_List_1__1 { struct Action_1_System_Collections_Generic_List_1__1__Fields fields; }; -struct __declspec(align(8)) Dictionary_2_Pathfinding_Int2_System_Int32___Fields { - struct Int32__Array *_buckets; - struct Dictionary_2_TKey_TValue_Entry_Pathfinding_Int2_System_Int32___Array *_entries; - int32_t _count; - int32_t _freeList; - int32_t _freeCount; - int32_t _version; - struct IEqualityComparer_1_Pathfinding_Int2_ *_comparer; - struct Dictionary_2_TKey_TValue_KeyCollection_Pathfinding_Int2_System_Int32_ *_keys; - struct Dictionary_2_TKey_TValue_ValueCollection_Pathfinding_Int2_System_Int32_ *_values; - struct Object *_syncRoot; -}; - -struct Dictionary_2_Pathfinding_Int2_System_Int32_ { - struct Dictionary_2_Pathfinding_Int2_System_Int32___Class *klass; - MonitorData *monitor; - struct Dictionary_2_Pathfinding_Int2_System_Int32___Fields fields; -}; - struct Int2 { int32_t x; int32_t y; @@ -126663,6 +128920,25 @@ struct Dictionary_2_TKey_TValue_Entry_Pathfinding_Int2_System_Int32___Boxed { struct Dictionary_2_TKey_TValue_Entry_Pathfinding_Int2_System_Int32_ fields; }; +struct __declspec(align(8)) Dictionary_2_Pathfinding_Int2_System_Int32___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_Pathfinding_Int2_System_Int32___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_Pathfinding_Int2_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_Pathfinding_Int2_System_Int32_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_Pathfinding_Int2_System_Int32_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_Pathfinding_Int2_System_Int32_ { + struct Dictionary_2_Pathfinding_Int2_System_Int32___Class *klass; + MonitorData *monitor; + struct Dictionary_2_Pathfinding_Int2_System_Int32___Fields fields; +}; + struct Dictionary_2_TKey_TValue_Entry_Pathfinding_Int2_System_Int32___Array { struct Dictionary_2_TKey_TValue_Entry_Pathfinding_Int2_System_Int32___Array__Class *klass; MonitorData *monitor; @@ -126743,22 +129019,6 @@ struct IEnumerable_1_Pathfinding_Int2_ { MonitorData *monitor; }; -struct __declspec(align(8)) TileHandler_TileType__Fields { - struct Int3__Array *verts; - struct Int32__Array *tris; - struct Int3 offset; - int32_t lastYOffset; - int32_t lastRotation; - int32_t width; - int32_t depth; -}; - -struct TileHandler_TileType { - struct TileHandler_TileType__Class *klass; - MonitorData *monitor; - struct TileHandler_TileType__Fields fields; -}; - struct TileHandler_TileType__Array { struct TileHandler_TileType__Array__Class *klass; MonitorData *monitor; @@ -126767,6 +129027,18 @@ struct TileHandler_TileType__Array { struct TileHandler_TileType *vector[32]; }; +struct __declspec(align(8)) GridLookup_1_T_Item_Pathfinding_NavmeshClipper___Fields { + struct GridLookup_1_T_Root_Pathfinding_NavmeshClipper_ *root; + struct GridLookup_1_T_Item_Pathfinding_NavmeshClipper_ *prev; + struct GridLookup_1_T_Item_Pathfinding_NavmeshClipper_ *next; +}; + +struct GridLookup_1_T_Item_Pathfinding_NavmeshClipper_ { + struct GridLookup_1_T_Item_Pathfinding_NavmeshClipper___Class *klass; + MonitorData *monitor; + struct GridLookup_1_T_Item_Pathfinding_NavmeshClipper___Fields fields; +}; + struct __declspec(align(8)) GridLookup_1_Pathfinding_NavmeshClipper___Fields { struct Int2 size; struct GridLookup_1_T_Item_Pathfinding_NavmeshClipper___Array *cells; @@ -126781,18 +129053,6 @@ struct GridLookup_1_Pathfinding_NavmeshClipper_ { struct GridLookup_1_Pathfinding_NavmeshClipper___Fields fields; }; -struct __declspec(align(8)) GridLookup_1_T_Item_Pathfinding_NavmeshClipper___Fields { - struct GridLookup_1_T_Root_Pathfinding_NavmeshClipper_ *root; - struct GridLookup_1_T_Item_Pathfinding_NavmeshClipper_ *prev; - struct GridLookup_1_T_Item_Pathfinding_NavmeshClipper_ *next; -}; - -struct GridLookup_1_T_Item_Pathfinding_NavmeshClipper_ { - struct GridLookup_1_T_Item_Pathfinding_NavmeshClipper___Class *klass; - MonitorData *monitor; - struct GridLookup_1_T_Item_Pathfinding_NavmeshClipper___Fields fields; -}; - struct __declspec(align(8)) GridLookup_1_T_Root_Pathfinding_NavmeshClipper___Fields { struct NavmeshClipper *obj; struct GridLookup_1_T_Root_Pathfinding_NavmeshClipper_ *next; @@ -126944,6 +129204,19 @@ struct GridLookup_1_T_Item_Pathfinding_NavmeshClipper___Array { struct GridLookup_1_T_Item_Pathfinding_NavmeshClipper_ *vector[32]; }; +struct Dictionary_2_TKey_TValue_Entry_Pathfinding_NavmeshClipper_Pathfinding_Util_GridLookup_1_Root_ { + int32_t hashCode; + int32_t next; + struct NavmeshClipper *key; + struct GridLookup_1_T_Root_Pathfinding_NavmeshClipper_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_Pathfinding_NavmeshClipper_Pathfinding_Util_GridLookup_1_Root___Boxed { + struct Dictionary_2_TKey_TValue_Entry_Pathfinding_NavmeshClipper_Pathfinding_Util_GridLookup_1_Root___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_Pathfinding_NavmeshClipper_Pathfinding_Util_GridLookup_1_Root_ fields; +}; + struct __declspec(align(8)) Dictionary_2_Pathfinding_NavmeshClipper_Pathfinding_Util_GridLookup_1_Root___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_Pathfinding_NavmeshClipper_Pathfinding_Util_GridLookup_1_Root___Array *_entries; @@ -126963,19 +129236,6 @@ struct Dictionary_2_Pathfinding_NavmeshClipper_Pathfinding_Util_GridLookup_1_Roo struct Dictionary_2_Pathfinding_NavmeshClipper_Pathfinding_Util_GridLookup_1_Root___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_Pathfinding_NavmeshClipper_Pathfinding_Util_GridLookup_1_Root_ { - int32_t hashCode; - int32_t next; - struct NavmeshClipper *key; - struct GridLookup_1_T_Root_Pathfinding_NavmeshClipper_ *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_Pathfinding_NavmeshClipper_Pathfinding_Util_GridLookup_1_Root___Boxed { - struct Dictionary_2_TKey_TValue_Entry_Pathfinding_NavmeshClipper_Pathfinding_Util_GridLookup_1_Root___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_Pathfinding_NavmeshClipper_Pathfinding_Util_GridLookup_1_Root_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_Pathfinding_NavmeshClipper_Pathfinding_Util_GridLookup_1_Root___Array { struct Dictionary_2_TKey_TValue_Entry_Pathfinding_NavmeshClipper_Pathfinding_Util_GridLookup_1_Root___Array__Class *klass; MonitorData *monitor; @@ -127174,6 +129434,18 @@ struct RetainedGizmos { struct RetainedGizmos__Fields fields; }; +struct RetainedGizmos_MeshWithHash { + uint64_t hash; + struct Mesh *mesh; + bool lines; +}; + +struct RetainedGizmos_MeshWithHash__Boxed { + struct RetainedGizmos_MeshWithHash__Class *klass; + MonitorData *monitor; + struct RetainedGizmos_MeshWithHash fields; +}; + struct __declspec(align(8)) List_1_Pathfinding_Util_RetainedGizmos_MeshWithHash___Fields { struct RetainedGizmos_MeshWithHash__Array *_items; int32_t _size; @@ -127187,18 +129459,6 @@ struct List_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_ { struct List_1_Pathfinding_Util_RetainedGizmos_MeshWithHash___Fields fields; }; -struct RetainedGizmos_MeshWithHash { - uint64_t hash; - struct Mesh *mesh; - bool lines; -}; - -struct RetainedGizmos_MeshWithHash__Boxed { - struct RetainedGizmos_MeshWithHash__Class *klass; - MonitorData *monitor; - struct RetainedGizmos_MeshWithHash fields; -}; - struct RetainedGizmos_MeshWithHash__Array { struct RetainedGizmos_MeshWithHash__Array__Class *klass; MonitorData *monitor; @@ -127212,6 +129472,18 @@ struct IEnumerator_1_Pathfinding_Util_RetainedGizmos_MeshWithHash_ { MonitorData *monitor; }; +struct HashSet_1_T_Slot_System_UInt64_ { + int32_t hashCode; + int32_t next; + uint64_t value; +}; + +struct HashSet_1_T_Slot_System_UInt64___Boxed { + struct HashSet_1_T_Slot_System_UInt64___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_System_UInt64_ fields; +}; + struct __declspec(align(8)) HashSet_1_System_UInt64___Fields { struct Int32__Array *_buckets; struct HashSet_1_T_Slot_System_UInt64___Array *_slots; @@ -127229,18 +129501,6 @@ struct HashSet_1_System_UInt64_ { struct HashSet_1_System_UInt64___Fields fields; }; -struct HashSet_1_T_Slot_System_UInt64_ { - int32_t hashCode; - int32_t next; - uint64_t value; -}; - -struct HashSet_1_T_Slot_System_UInt64___Boxed { - struct HashSet_1_T_Slot_System_UInt64___Class *klass; - MonitorData *monitor; - struct HashSet_1_T_Slot_System_UInt64_ fields; -}; - struct HashSet_1_T_Slot_System_UInt64___Array { struct HashSet_1_T_Slot_System_UInt64___Array__Class *klass; MonitorData *monitor; @@ -127488,6 +129748,28 @@ struct NumNeighbours__Enum__Boxed { #endif }; +struct GridNodeBase__Fields { + struct GraphNode__Fields _; + int32_t nodeInGridIndex; + uint16_t gridFlags; +}; + +struct GridNodeBase { + struct GridNodeBase__Class *klass; + MonitorData *monitor; + struct GridNodeBase__Fields fields; +}; + +struct GridNode__Fields { + struct GridNodeBase__Fields _; +}; + +struct GridNode { + struct GridNode__Class *klass; + MonitorData *monitor; + struct GridNode__Fields fields; +}; + struct GridGraph__Fields { struct NavGraph__Fields _; #if defined(_CPLUSPLUS_) @@ -127633,20 +129915,6 @@ struct GraphCollision { struct GraphCollision__Fields fields; }; -struct __declspec(align(8)) GridGraph_TextureData__Fields { - bool enabled; - struct Texture2D *source; - struct Single__Array *factors; - struct GridGraph_TextureData_ChannelUse__Enum__Array *channels; - struct Color32__Array *data; -}; - -struct GridGraph_TextureData { - struct GridGraph_TextureData__Class *klass; - MonitorData *monitor; - struct GridGraph_TextureData__Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class GridGraph_TextureData_ChannelUse__Enum : int32_t { None = 0x00000000, @@ -127674,6 +129942,20 @@ struct GridGraph_TextureData_ChannelUse__Enum__Boxed { #endif }; +struct __declspec(align(8)) GridGraph_TextureData__Fields { + bool enabled; + struct Texture2D *source; + struct Single__Array *factors; + struct GridGraph_TextureData_ChannelUse__Enum__Array *channels; + struct Color32__Array *data; +}; + +struct GridGraph_TextureData { + struct GridGraph_TextureData__Class *klass; + MonitorData *monitor; + struct GridGraph_TextureData__Fields fields; +}; + struct GridGraph_TextureData_ChannelUse__Enum__Array { struct GridGraph_TextureData_ChannelUse__Enum__Array__Class *klass; MonitorData *monitor; @@ -127690,28 +129972,6 @@ struct Color32__Array { struct Color32 vector[32]; }; -struct GridNodeBase__Fields { - struct GraphNode__Fields _; - int32_t nodeInGridIndex; - uint16_t gridFlags; -}; - -struct GridNodeBase { - struct GridNodeBase__Class *klass; - MonitorData *monitor; - struct GridNodeBase__Fields fields; -}; - -struct GridNode__Fields { - struct GridNodeBase__Fields _; -}; - -struct GridNode { - struct GridNode__Class *klass; - MonitorData *monitor; - struct GridNode__Fields fields; -}; - struct LevelGridNode__Fields { struct GridNodeBase__Fields _; uint64_t gridConnections; @@ -127858,19 +130118,6 @@ struct PointGraph { struct PointGraph__Fields fields; }; -struct __declspec(align(8)) PointKDTree__Fields { - struct PointKDTree_Node__Array *tree; - int32_t numNodes; - struct List_1_Pathfinding_GraphNode_ *largeList; - struct Stack_1_Pathfinding_GraphNode_ *arrayCache; -}; - -struct PointKDTree { - struct PointKDTree__Class *klass; - MonitorData *monitor; - struct PointKDTree__Fields fields; -}; - struct PointKDTree_Node { struct GraphNode__Array *data; int32_t split; @@ -127884,6 +130131,19 @@ struct PointKDTree_Node__Boxed { struct PointKDTree_Node fields; }; +struct __declspec(align(8)) PointKDTree__Fields { + struct PointKDTree_Node__Array *tree; + int32_t numNodes; + struct List_1_Pathfinding_GraphNode_ *largeList; + struct Stack_1_Pathfinding_GraphNode_ *arrayCache; +}; + +struct PointKDTree { + struct PointKDTree__Class *klass; + MonitorData *monitor; + struct PointKDTree__Fields fields; +}; + struct PointKDTree_Node__Array { struct PointKDTree_Node__Array__Class *klass; MonitorData *monitor; @@ -128036,19 +130296,6 @@ struct Voxelize { struct Voxelize__Fields fields; }; -struct __declspec(align(8)) List_1_Pathfinding_Voxels_RasterizationMesh___Fields { - struct RasterizationMesh__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Pathfinding_Voxels_RasterizationMesh_ { - struct List_1_Pathfinding_Voxels_RasterizationMesh___Class *klass; - MonitorData *monitor; - struct List_1_Pathfinding_Voxels_RasterizationMesh___Fields fields; -}; - struct __declspec(align(8)) RasterizationMesh__Fields { struct MeshFilter *original; int32_t area; @@ -128067,6 +130314,19 @@ struct RasterizationMesh { struct RasterizationMesh__Fields fields; }; +struct __declspec(align(8)) List_1_Pathfinding_Voxels_RasterizationMesh___Fields { + struct RasterizationMesh__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Pathfinding_Voxels_RasterizationMesh_ { + struct List_1_Pathfinding_Voxels_RasterizationMesh___Class *klass; + MonitorData *monitor; + struct List_1_Pathfinding_Voxels_RasterizationMesh___Fields fields; +}; + struct MeshFilter__Fields { struct Component__Fields _; }; @@ -128090,6 +130350,40 @@ struct IEnumerator_1_Pathfinding_Voxels_RasterizationMesh_ { MonitorData *monitor; }; +struct VoxelCell { + struct VoxelSpan *firstSpan; +}; + +struct VoxelCell__Boxed { + struct VoxelCell__Class *klass; + MonitorData *monitor; + struct VoxelCell fields; +}; + +struct CompactVoxelSpan { + uint16_t y; + uint32_t con; + uint32_t h; + int32_t reg; +}; + +struct CompactVoxelSpan__Boxed { + struct CompactVoxelSpan__Class *klass; + MonitorData *monitor; + struct CompactVoxelSpan fields; +}; + +struct CompactVoxelCell { + uint32_t index; + uint32_t count; +}; + +struct CompactVoxelCell__Boxed { + struct CompactVoxelCell__Class *klass; + MonitorData *monitor; + struct CompactVoxelCell fields; +}; + struct __declspec(align(8)) VoxelArea__Fields { int32_t width; int32_t depth; @@ -128113,16 +130407,6 @@ struct VoxelArea { struct VoxelArea__Fields fields; }; -struct VoxelCell { - struct VoxelSpan *firstSpan; -}; - -struct VoxelCell__Boxed { - struct VoxelCell__Class *klass; - MonitorData *monitor; - struct VoxelCell fields; -}; - struct __declspec(align(8)) VoxelSpan__Fields { uint32_t bottom; uint32_t top; @@ -128144,19 +130428,6 @@ struct VoxelCell__Array { struct VoxelCell vector[32]; }; -struct CompactVoxelSpan { - uint16_t y; - uint32_t con; - uint32_t h; - int32_t reg; -}; - -struct CompactVoxelSpan__Boxed { - struct CompactVoxelSpan__Class *klass; - MonitorData *monitor; - struct CompactVoxelSpan fields; -}; - struct CompactVoxelSpan__Array { struct CompactVoxelSpan__Array__Class *klass; MonitorData *monitor; @@ -128165,17 +130436,6 @@ struct CompactVoxelSpan__Array { struct CompactVoxelSpan vector[32]; }; -struct CompactVoxelCell { - uint32_t index; - uint32_t count; -}; - -struct CompactVoxelCell__Boxed { - struct CompactVoxelCell__Class *klass; - MonitorData *monitor; - struct CompactVoxelCell fields; -}; - struct CompactVoxelCell__Array { struct CompactVoxelCell__Array__Class *klass; MonitorData *monitor; @@ -128195,19 +130455,6 @@ struct VoxelContourSet { struct VoxelContourSet__Fields fields; }; -struct __declspec(align(8)) List_1_Pathfinding_Voxels_VoxelContour___Fields { - struct VoxelContour__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Pathfinding_Voxels_VoxelContour_ { - struct List_1_Pathfinding_Voxels_VoxelContour___Class *klass; - MonitorData *monitor; - struct List_1_Pathfinding_Voxels_VoxelContour___Fields fields; -}; - struct VoxelContour { int32_t nverts; struct Int32__Array *verts; @@ -128222,6 +130469,19 @@ struct VoxelContour__Boxed { struct VoxelContour fields; }; +struct __declspec(align(8)) List_1_Pathfinding_Voxels_VoxelContour___Fields { + struct VoxelContour__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Pathfinding_Voxels_VoxelContour_ { + struct List_1_Pathfinding_Voxels_VoxelContour___Class *klass; + MonitorData *monitor; + struct List_1_Pathfinding_Voxels_VoxelContour___Fields fields; +}; + struct VoxelContour__Array { struct VoxelContour__Array__Class *klass; MonitorData *monitor; @@ -128402,21 +130662,6 @@ struct IEnumerator_1_Pathfinding_GraphUpdateObject_ { MonitorData *monitor; }; -struct __declspec(align(8)) Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle___Fields { - struct GraphUpdateProcessor_GUOSingle__Array *_array; - int32_t _head; - int32_t _tail; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle_ { - struct Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle___Class *klass; - MonitorData *monitor; - struct Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle___Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class GraphUpdateProcessor_GraphUpdateOrder__Enum : int32_t { GraphUpdate = 0x00000000, @@ -128454,6 +130699,21 @@ struct GraphUpdateProcessor_GUOSingle__Boxed { struct GraphUpdateProcessor_GUOSingle fields; }; +struct __declspec(align(8)) Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle___Fields { + struct GraphUpdateProcessor_GUOSingle__Array *_array; + int32_t _head; + int32_t _tail; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle_ { + struct Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle___Class *klass; + MonitorData *monitor; + struct Queue_1_Pathfinding_GraphUpdateProcessor_GUOSingle___Fields fields; +}; + struct IUpdatableGraph { struct IUpdatableGraph__Class *klass; MonitorData *monitor; @@ -128568,18 +130828,6 @@ struct WorkItemProcessor { struct WorkItemProcessor__Fields fields; }; -struct __declspec(align(8)) WorkItemProcessor_IndexedQueue_1_AstarWorkItem___Fields { - struct AstarWorkItem__Array *buffer; - int32_t start; - int32_t _Count_k__BackingField; -}; - -struct WorkItemProcessor_IndexedQueue_1_AstarWorkItem_ { - struct WorkItemProcessor_IndexedQueue_1_AstarWorkItem___Class *klass; - MonitorData *monitor; - struct WorkItemProcessor_IndexedQueue_1_AstarWorkItem___Fields fields; -}; - struct AstarWorkItem { struct Action *init; struct Action_1_Pathfinding_IWorkItemContext_ *initWithContext; @@ -128593,6 +130841,18 @@ struct AstarWorkItem__Boxed { struct AstarWorkItem fields; }; +struct __declspec(align(8)) WorkItemProcessor_IndexedQueue_1_AstarWorkItem___Fields { + struct AstarWorkItem__Array *buffer; + int32_t start; + int32_t _Count_k__BackingField; +}; + +struct WorkItemProcessor_IndexedQueue_1_AstarWorkItem_ { + struct WorkItemProcessor_IndexedQueue_1_AstarWorkItem___Class *klass; + MonitorData *monitor; + struct WorkItemProcessor_IndexedQueue_1_AstarWorkItem___Fields fields; +}; + struct Action_1_Pathfinding_IWorkItemContext___Fields { struct MulticastDelegate__Fields _; }; @@ -128816,6 +131076,11 @@ struct Func_1_UnityEngine_Vector3_ { struct Func_1_UnityEngine_Vector3___Fields fields; }; +struct IPathModifier { + struct IPathModifier__Class *klass; + MonitorData *monitor; +}; + struct __declspec(align(8)) List_1_Pathfinding_IPathModifier___Fields { struct IPathModifier__Array *_items; int32_t _size; @@ -128829,11 +131094,6 @@ struct List_1_Pathfinding_IPathModifier_ { struct List_1_Pathfinding_IPathModifier___Fields fields; }; -struct IPathModifier { - struct IPathModifier__Class *klass; - MonitorData *monitor; -}; - struct IPathModifier__Array { struct IPathModifier__Array__Class *klass; MonitorData *monitor; @@ -128979,6 +131239,23 @@ struct IAgent { MonitorData *monitor; }; +struct __declspec(align(8)) Simulator_Worker__Fields { + int32_t start; + int32_t end; + struct ManualResetEventSlim *runFlag; + struct ManualResetEventSlim *waitFlag; + struct Simulator *simulator; + int32_t task; + bool terminate; + struct Simulator_WorkerContext *context; +}; + +struct Simulator_Worker { + struct Simulator_Worker__Class *klass; + MonitorData *monitor; + struct Simulator_Worker__Fields fields; +}; + #if defined(_CPLUSPLUS_) enum class MovementPlane__Enum : int32_t { XZ = 0x00000000, @@ -129028,23 +131305,6 @@ struct Simulator { struct Simulator__Fields fields; }; -struct __declspec(align(8)) Simulator_Worker__Fields { - int32_t start; - int32_t end; - struct ManualResetEventSlim *runFlag; - struct ManualResetEventSlim *waitFlag; - struct Simulator *simulator; - int32_t task; - bool terminate; - struct Simulator_WorkerContext *context; -}; - -struct Simulator_Worker { - struct Simulator_Worker__Class *klass; - MonitorData *monitor; - struct Simulator_Worker__Fields fields; -}; - struct __declspec(align(8)) Simulator_WorkerContext__Fields { struct Agent_VOBuffer *vos; struct Vector2__Array *bestPos; @@ -129060,17 +131320,6 @@ struct Simulator_WorkerContext { struct Simulator_WorkerContext__Fields fields; }; -struct __declspec(align(8)) Agent_VOBuffer__Fields { - struct Agent_VO__Array *buffer; - int32_t length; -}; - -struct Agent_VOBuffer { - struct Agent_VOBuffer__Class *klass; - MonitorData *monitor; - struct Agent_VOBuffer__Fields fields; -}; - struct Agent_VO { struct Vector2 line1; struct Vector2 line2; @@ -129094,6 +131343,17 @@ struct Agent_VO__Boxed { struct Agent_VO fields; }; +struct __declspec(align(8)) Agent_VOBuffer__Fields { + struct Agent_VO__Array *buffer; + int32_t length; +}; + +struct Agent_VOBuffer { + struct Agent_VOBuffer__Class *klass; + MonitorData *monitor; + struct Agent_VOBuffer__Fields fields; +}; + struct Agent_VO__Array { struct Agent_VO__Array__Class *klass; MonitorData *monitor; @@ -129110,19 +131370,6 @@ struct Simulator_Worker__Array { struct Simulator_Worker *vector[32]; }; -struct __declspec(align(8)) List_1_Pathfinding_RVO_Sampled_Agent___Fields { - struct Agent__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Pathfinding_RVO_Sampled_Agent_ { - struct List_1_Pathfinding_RVO_Sampled_Agent___Class *klass; - MonitorData *monitor; - struct List_1_Pathfinding_RVO_Sampled_Agent___Fields fields; -}; - struct __declspec(align(8)) Agent__Fields { float radius; float height; @@ -129192,6 +131439,19 @@ struct Agent { struct Agent__Fields fields; }; +struct __declspec(align(8)) List_1_Pathfinding_RVO_Sampled_Agent___Fields { + struct Agent__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Pathfinding_RVO_Sampled_Agent_ { + struct List_1_Pathfinding_RVO_Sampled_Agent___Class *klass; + MonitorData *monitor; + struct List_1_Pathfinding_RVO_Sampled_Agent___Fields fields; +}; + struct __declspec(align(8)) List_1_System_Single___Fields { struct Single__Array *_items; int32_t _size; @@ -129205,19 +131465,6 @@ struct List_1_System_Single_ { struct List_1_System_Single___Fields fields; }; -struct __declspec(align(8)) List_1_Pathfinding_RVO_ObstacleVertex___Fields { - struct ObstacleVertex__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Pathfinding_RVO_ObstacleVertex_ { - struct List_1_Pathfinding_RVO_ObstacleVertex___Class *klass; - MonitorData *monitor; - struct List_1_Pathfinding_RVO_ObstacleVertex___Fields fields; -}; - struct __declspec(align(8)) ObstacleVertex__Fields { bool ignore; struct Vector3 position; @@ -129238,6 +131485,19 @@ struct ObstacleVertex { struct ObstacleVertex__Fields fields; }; +struct __declspec(align(8)) List_1_Pathfinding_RVO_ObstacleVertex___Fields { + struct ObstacleVertex__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Pathfinding_RVO_ObstacleVertex_ { + struct List_1_Pathfinding_RVO_ObstacleVertex___Class *klass; + MonitorData *monitor; + struct List_1_Pathfinding_RVO_ObstacleVertex___Fields fields; +}; + struct ObstacleVertex__Array { struct ObstacleVertex__Array__Class *klass; MonitorData *monitor; @@ -129264,19 +131524,6 @@ struct IEnumerator_1_Pathfinding_RVO_Sampled_Agent_ { MonitorData *monitor; }; -struct __declspec(align(8)) RVOQuadtree__Fields { - float maxRadius; - struct RVOQuadtree_Node__Array *nodes; - int32_t filledNodes; - struct Rect bounds; -}; - -struct RVOQuadtree { - struct RVOQuadtree__Class *klass; - MonitorData *monitor; - struct RVOQuadtree__Fields fields; -}; - struct RVOQuadtree_Node { int32_t child00; struct Agent *linkedList; @@ -129290,6 +131537,19 @@ struct RVOQuadtree_Node__Boxed { struct RVOQuadtree_Node fields; }; +struct __declspec(align(8)) RVOQuadtree__Fields { + float maxRadius; + struct RVOQuadtree_Node__Array *nodes; + int32_t filledNodes; + struct Rect bounds; +}; + +struct RVOQuadtree { + struct RVOQuadtree__Class *klass; + MonitorData *monitor; + struct RVOQuadtree__Fields fields; +}; + struct RVOQuadtree_Node__Array { struct RVOQuadtree_Node__Array__Class *klass; MonitorData *monitor; @@ -129418,6 +131678,19 @@ struct Queue_1_Pathfinding_TriangleMeshNode_ { struct Queue_1_Pathfinding_TriangleMeshNode___Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_Pathfinding_TriangleMeshNode_Pathfinding_TriangleMeshNode_ { + int32_t hashCode; + int32_t next; + struct TriangleMeshNode *key; + struct TriangleMeshNode *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_Pathfinding_TriangleMeshNode_Pathfinding_TriangleMeshNode___Boxed { + struct Dictionary_2_TKey_TValue_Entry_Pathfinding_TriangleMeshNode_Pathfinding_TriangleMeshNode___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_Pathfinding_TriangleMeshNode_Pathfinding_TriangleMeshNode_ fields; +}; + struct __declspec(align(8)) Dictionary_2_Pathfinding_TriangleMeshNode_Pathfinding_TriangleMeshNode___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_Pathfinding_TriangleMeshNode_Pathfinding_TriangleMeshNode___Array *_entries; @@ -129437,19 +131710,6 @@ struct Dictionary_2_Pathfinding_TriangleMeshNode_Pathfinding_TriangleMeshNode_ { struct Dictionary_2_Pathfinding_TriangleMeshNode_Pathfinding_TriangleMeshNode___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_Pathfinding_TriangleMeshNode_Pathfinding_TriangleMeshNode_ { - int32_t hashCode; - int32_t next; - struct TriangleMeshNode *key; - struct TriangleMeshNode *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_Pathfinding_TriangleMeshNode_Pathfinding_TriangleMeshNode___Boxed { - struct Dictionary_2_TKey_TValue_Entry_Pathfinding_TriangleMeshNode_Pathfinding_TriangleMeshNode___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_Pathfinding_TriangleMeshNode_Pathfinding_TriangleMeshNode_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_Pathfinding_TriangleMeshNode_Pathfinding_TriangleMeshNode___Array { struct Dictionary_2_TKey_TValue_Entry_Pathfinding_TriangleMeshNode_Pathfinding_TriangleMeshNode___Array__Class *klass; MonitorData *monitor; @@ -129563,6 +131823,19 @@ struct NodeLink2 { struct NodeLink2__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_UInt64_Pathfinding_GraphModifier_ { + int32_t hashCode; + int32_t next; + uint64_t key; + struct GraphModifier *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_UInt64_Pathfinding_GraphModifier___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_UInt64_Pathfinding_GraphModifier___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_UInt64_Pathfinding_GraphModifier_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_UInt64_Pathfinding_GraphModifier___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_UInt64_Pathfinding_GraphModifier___Array *_entries; @@ -129582,19 +131855,6 @@ struct Dictionary_2_System_UInt64_Pathfinding_GraphModifier_ { struct Dictionary_2_System_UInt64_Pathfinding_GraphModifier___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_UInt64_Pathfinding_GraphModifier_ { - int32_t hashCode; - int32_t next; - uint64_t key; - struct GraphModifier *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_UInt64_Pathfinding_GraphModifier___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_UInt64_Pathfinding_GraphModifier___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_UInt64_Pathfinding_GraphModifier_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_UInt64_Pathfinding_GraphModifier___Array { struct Dictionary_2_TKey_TValue_Entry_System_UInt64_Pathfinding_GraphModifier___Array__Class *klass; MonitorData *monitor; @@ -129670,6 +131930,19 @@ struct IEnumerable_1_Pathfinding_GraphModifier_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_Pathfinding_GraphNode_Pathfinding_NodeLink2_ { + int32_t hashCode; + int32_t next; + struct GraphNode *key; + struct NodeLink2 *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_Pathfinding_GraphNode_Pathfinding_NodeLink2___Boxed { + struct Dictionary_2_TKey_TValue_Entry_Pathfinding_GraphNode_Pathfinding_NodeLink2___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_Pathfinding_GraphNode_Pathfinding_NodeLink2_ fields; +}; + struct __declspec(align(8)) Dictionary_2_Pathfinding_GraphNode_Pathfinding_NodeLink2___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_Pathfinding_GraphNode_Pathfinding_NodeLink2___Array *_entries; @@ -129689,19 +131962,6 @@ struct Dictionary_2_Pathfinding_GraphNode_Pathfinding_NodeLink2_ { struct Dictionary_2_Pathfinding_GraphNode_Pathfinding_NodeLink2___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_Pathfinding_GraphNode_Pathfinding_NodeLink2_ { - int32_t hashCode; - int32_t next; - struct GraphNode *key; - struct NodeLink2 *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_Pathfinding_GraphNode_Pathfinding_NodeLink2___Boxed { - struct Dictionary_2_TKey_TValue_Entry_Pathfinding_GraphNode_Pathfinding_NodeLink2___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_Pathfinding_GraphNode_Pathfinding_NodeLink2_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_Pathfinding_GraphNode_Pathfinding_NodeLink2___Array { struct Dictionary_2_TKey_TValue_Entry_Pathfinding_GraphNode_Pathfinding_NodeLink2___Array__Class *klass; MonitorData *monitor; @@ -130684,6 +132944,21 @@ struct ICollection_1_System_Reflection_FieldInfo___Class { struct ICollection_1_System_Reflection_FieldInfo___VTable vtable; }; +struct FieldInfo___VTable { +}; + +struct FieldInfo___StaticFields { +}; + +struct FieldInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct FieldInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct FieldInfo___VTable vtable; +}; + struct KeyValuePair_2_System_Type_System_Reflection_FieldInfo___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -130977,6 +133252,21 @@ struct ICollection_1_System_Reflection_PropertyInfo___Class { struct ICollection_1_System_Reflection_PropertyInfo___VTable vtable; }; +struct PropertyInfo___VTable { +}; + +struct PropertyInfo___StaticFields { +}; + +struct PropertyInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PropertyInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PropertyInfo___VTable vtable; +}; + struct KeyValuePair_2_System_Type_System_Reflection_PropertyInfo___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -132299,6 +134589,21 @@ struct ICollection_1_Opsive_UltimateCharacterController_Items_Item___Class { struct ICollection_1_Opsive_UltimateCharacterController_Items_Item___VTable vtable; }; +struct Item___VTable { +}; + +struct Item___StaticFields { +}; + +struct Item___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Item___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Item___VTable vtable; +}; + struct KeyValuePair_2_Opsive_Shared_Inventory_IItemIdentifier_Opsive_UltimateCharacterController_Items_Item___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -134628,6 +136933,21 @@ struct ICollection_1_Opsive_UltimateCharacterController_Items_Actions_ItemAction struct ICollection_1_Opsive_UltimateCharacterController_Items_Actions_ItemAction___VTable vtable; }; +struct ItemAction___VTable { +}; + +struct ItemAction___StaticFields { +}; + +struct ItemAction___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ItemAction___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ItemAction___VTable vtable; +}; + struct KeyValuePair_2_System_Int32_Opsive_UltimateCharacterController_Items_Actions_ItemAction___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -140159,6 +142479,21 @@ struct ICollection_1_Pathfinding_Util_GridLookup_1_Root___Class { struct ICollection_1_Pathfinding_Util_GridLookup_1_Root___VTable vtable; }; +struct GridLookup_1_T_Root_Pathfinding_NavmeshClipper__1__VTable { +}; + +struct GridLookup_1_T_Root_Pathfinding_NavmeshClipper__1__StaticFields { +}; + +struct GridLookup_1_T_Root_Pathfinding_NavmeshClipper__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GridLookup_1_T_Root_Pathfinding_NavmeshClipper__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GridLookup_1_T_Root_Pathfinding_NavmeshClipper__1__VTable vtable; +}; + struct KeyValuePair_2_Pathfinding_NavmeshClipper_Pathfinding_Util_GridLookup_1_Root___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -140921,6 +143256,21 @@ struct GraphHitInfo__Class { struct GraphHitInfo__VTable vtable; }; +struct GraphHitInfo___VTable { +}; + +struct GraphHitInfo___StaticFields { +}; + +struct GraphHitInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GraphHitInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GraphHitInfo___VTable vtable; +}; + struct NavmeshBase__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -145016,6 +147366,36 @@ struct IMovementPlane__Class { struct IMovementPlane__VTable vtable; }; +struct Vector3___VTable { +}; + +struct Vector3___StaticFields { +}; + +struct Vector3___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Vector3___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Vector3___VTable vtable; +}; + +struct Quaternion___VTable { +}; + +struct Quaternion___StaticFields { +}; + +struct Quaternion___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Quaternion___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Quaternion___VTable vtable; +}; + struct RichPathPart__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -145387,6 +147767,21 @@ struct ICollection_1_Pathfinding_TriangleMeshNode___Class { struct ICollection_1_Pathfinding_TriangleMeshNode___VTable vtable; }; +struct TriangleMeshNode___VTable { +}; + +struct TriangleMeshNode___StaticFields { +}; + +struct TriangleMeshNode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TriangleMeshNode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TriangleMeshNode___VTable vtable; +}; + struct KeyValuePair_2_Pathfinding_TriangleMeshNode_Pathfinding_TriangleMeshNode___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -145689,6 +148084,21 @@ struct ICollection_1_Pathfinding_GraphModifier___Class { struct ICollection_1_Pathfinding_GraphModifier___VTable vtable; }; +struct GraphModifier___VTable { +}; + +struct GraphModifier___StaticFields { +}; + +struct GraphModifier___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GraphModifier___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GraphModifier___VTable vtable; +}; + struct KeyValuePair_2_System_UInt64_Pathfinding_GraphModifier___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -146042,6 +148452,21 @@ struct ICollection_1_Pathfinding_NodeLink2___Class { struct ICollection_1_Pathfinding_NodeLink2___VTable vtable; }; +struct NodeLink2___VTable { +}; + +struct NodeLink2___StaticFields { +}; + +struct NodeLink2___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NodeLink2___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NodeLink2___VTable vtable; +}; + struct KeyValuePair_2_Pathfinding_GraphNode_Pathfinding_NodeLink2___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -146807,6 +149232,18 @@ struct Outline { struct Outline__Fields fields; }; +struct HashSet_1_T_Slot_UnityEngine_Mesh_ { + int32_t hashCode; + int32_t next; + struct Mesh *value; +}; + +struct HashSet_1_T_Slot_UnityEngine_Mesh___Boxed { + struct HashSet_1_T_Slot_UnityEngine_Mesh___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_UnityEngine_Mesh_ fields; +}; + struct __declspec(align(8)) HashSet_1_UnityEngine_Mesh___Fields { struct Int32__Array *_buckets; struct HashSet_1_T_Slot_UnityEngine_Mesh___Array *_slots; @@ -146824,18 +149261,6 @@ struct HashSet_1_UnityEngine_Mesh_ { struct HashSet_1_UnityEngine_Mesh___Fields fields; }; -struct HashSet_1_T_Slot_UnityEngine_Mesh_ { - int32_t hashCode; - int32_t next; - struct Mesh *value; -}; - -struct HashSet_1_T_Slot_UnityEngine_Mesh___Boxed { - struct HashSet_1_T_Slot_UnityEngine_Mesh___Class *klass; - MonitorData *monitor; - struct HashSet_1_T_Slot_UnityEngine_Mesh_ fields; -}; - struct HashSet_1_T_Slot_UnityEngine_Mesh___Array { struct HashSet_1_T_Slot_UnityEngine_Mesh___Array__Class *klass; MonitorData *monitor; @@ -146867,6 +149292,16 @@ struct List_1_UnityEngine_Mesh_ { struct List_1_UnityEngine_Mesh___Fields fields; }; +struct __declspec(align(8)) Outline_ListVector3__Fields { + struct List_1_UnityEngine_Vector3_ *data; +}; + +struct Outline_ListVector3 { + struct Outline_ListVector3__Class *klass; + MonitorData *monitor; + struct Outline_ListVector3__Fields fields; +}; + struct __declspec(align(8)) List_1_Outline_ListVector3___Fields { struct Outline_ListVector3__Array *_items; int32_t _size; @@ -146880,16 +149315,6 @@ struct List_1_Outline_ListVector3_ { struct List_1_Outline_ListVector3___Fields fields; }; -struct __declspec(align(8)) Outline_ListVector3__Fields { - struct List_1_UnityEngine_Vector3_ *data; -}; - -struct Outline_ListVector3 { - struct Outline_ListVector3__Class *klass; - MonitorData *monitor; - struct Outline_ListVector3__Fields fields; -}; - struct Outline_ListVector3__Array { struct Outline_ListVector3__Array__Class *klass; MonitorData *monitor; @@ -146958,6 +149383,138 @@ struct GlobalEventListener { struct GlobalEventListener__Fields fields; }; +struct TrashCanSpawnPoint__Fields { + struct MonoBehaviour__Fields _; + struct Transform *escapeHoleEntry; + struct GameObject *escapeHole; +}; + +struct TrashCanSpawnPoint { + struct TrashCanSpawnPoint__Class *klass; + MonitorData *monitor; + struct TrashCanSpawnPoint__Fields fields; +}; + +struct EntityEventListenerBase_1_Photon_Bolt_IDoorState___Fields { + struct EntityEventListenerBase__Fields _; +}; + +struct EntityEventListenerBase_1_Photon_Bolt_IDoorState_ { + struct EntityEventListenerBase_1_Photon_Bolt_IDoorState___Class *klass; + MonitorData *monitor; + struct EntityEventListenerBase_1_Photon_Bolt_IDoorState___Fields fields; +}; + +struct EntityEventListener_1_IDoorState___Fields { + struct EntityEventListenerBase_1_Photon_Bolt_IDoorState___Fields _; +}; + +struct EntityEventListener_1_IDoorState_ { + struct EntityEventListener_1_IDoorState___Class *klass; + MonitorData *monitor; + struct EntityEventListener_1_IDoorState___Fields fields; +}; + +struct DoorBehaviour__Fields { + struct EntityEventListener_1_IDoorState___Fields _; + struct Animator *animator; + struct AnimatedInteractable *m_openLeft; + struct AnimatedInteractable *m_openRight; + struct LockedInteractable *lockedInteractable; + struct AnnaOpeningDoorInteractable *annaOpeningDoorInteractable; + struct DoorStateTrigger__Array *m_stateTriggers; + struct Outline *m_DoorOutline; + struct Transform *m_DoorKnob; + struct DoorGraphUpdate *m_DoorGraphUpdate; + struct AudioSource *m_AudioSource; + struct AudioClip *m_FallClip; + int32_t m_IsOpeningCount; + bool m_DisableUnlockOnOpen; + bool m_EnableDoorSlam; + struct AudioSource *m_DoorSlamAudioSource; + struct Transform *audioOcclusionPoint; + struct PlayRandomAudioClip *m_UnlockClips; +}; + +struct DoorBehaviour { + struct DoorBehaviour__Class *klass; + MonitorData *monitor; + struct DoorBehaviour__Fields fields; +}; + +struct SkinnedMeshRenderer__Fields { + struct Renderer__Fields _; +}; + +struct SkinnedMeshRenderer { + struct SkinnedMeshRenderer__Class *klass; + MonitorData *monitor; + struct SkinnedMeshRenderer__Fields fields; +}; + +struct JumpScare__Fields { + struct MonoBehaviour__Fields _; + #if defined(_CPLUSPLUS_) + Survival_AI__Enum ai; + #else + int32_t ai; + #endif + struct PlayableDirector *director; + struct GameUI *gameUI; + struct AudioMixer *audioMixer; + struct GameObject *horns; + struct SurvivalObjectBurnController *burnController; + struct MapController *mapController; + struct Material *normalEyesMat; + struct Material *enragedEyesMat; + struct Survival *m_Survival; + struct SkinnedMeshRenderer__Array *eyeRenderers; + struct AudioClip__Array *m_JumpScareClips; + struct PlayRandomAudioClip *m_JumpScareBGMRandomClips; + struct AudioSource *m_JumpScareVoiceAudioSource; + struct PostProcessVolume *postProcessVolume; + struct ColorGrading *colorGrading; + bool hideCameraOnEnable; + int32_t delayShowCameraFrames; + struct Animator *aiAnimator; + struct GameObject *m_HairWindZone; + struct CharacterIK *m_aiCharacterIK; + bool isHidingSpotJumpScare; + struct GameObject *m_ArachnophobiaModeSpider; + struct GameObject *m_DefaultSpider; + struct SkinnedMeshRenderer *zaraBodyRenderer; + struct GameObject *zaraArachnophobiaBody; + struct Material *zaraArachnophobiaBodyMat; + struct Material *zaraBodyMat; + struct GameObject *vrCamera; + struct CameraShake *cameraShake; + struct GameObject *player; + float originalSFXVolume; + float originalMusicVolume; + struct Vector3 aiOriginalPos; + struct Quaternion aiOriginalRot; + bool audioMuted; +}; + +struct JumpScare { + struct JumpScare__Class *klass; + MonitorData *monitor; + struct JumpScare__Fields fields; +}; + +struct Vent__Fields { + struct MonoBehaviour__Fields _; + struct GameObject *m_playerVentStateTrigger; + struct GameObject *m_playerVentVoiceReverbTrigger; + struct GameObject *m_enemyVentStateTrigger; +}; + +struct Vent { + struct Vent__Class *klass; + MonitorData *monitor; + struct Vent__Fields fields; +}; + #if defined(_CPLUSPLUS_) enum class DevourGameMode__Enum : int32_t { Normal = 0x00000000, @@ -146983,6 +149540,102 @@ struct DevourGameMode__Enum__Boxed { #endif }; +#if defined(_CPLUSPLUS_) +enum class AudioReverbPreset__Enum : int32_t { + Off = 0x00000000, + Generic = 0x00000001, + PaddedCell = 0x00000002, + Room = 0x00000003, + Bathroom = 0x00000004, + Livingroom = 0x00000005, + Stoneroom = 0x00000006, + Auditorium = 0x00000007, + Concerthall = 0x00000008, + Cave = 0x00000009, + Arena = 0x0000000a, + Hangar = 0x0000000b, + CarpetedHallway = 0x0000000c, + Hallway = 0x0000000d, + StoneCorridor = 0x0000000e, + Alley = 0x0000000f, + Forest = 0x00000010, + City = 0x00000011, + Mountains = 0x00000012, + Quarry = 0x00000013, + Plain = 0x00000014, + ParkingLot = 0x00000015, + SewerPipe = 0x00000016, + Underwater = 0x00000017, + Drugged = 0x00000018, + Dizzy = 0x00000019, + Psychotic = 0x0000001a, + User = 0x0000001b, +}; + +#else +enum AudioReverbPreset__Enum { + AudioReverbPreset__Enum_Off = 0x00000000, + AudioReverbPreset__Enum_Generic = 0x00000001, + AudioReverbPreset__Enum_PaddedCell = 0x00000002, + AudioReverbPreset__Enum_Room = 0x00000003, + AudioReverbPreset__Enum_Bathroom = 0x00000004, + AudioReverbPreset__Enum_Livingroom = 0x00000005, + AudioReverbPreset__Enum_Stoneroom = 0x00000006, + AudioReverbPreset__Enum_Auditorium = 0x00000007, + AudioReverbPreset__Enum_Concerthall = 0x00000008, + AudioReverbPreset__Enum_Cave = 0x00000009, + AudioReverbPreset__Enum_Arena = 0x0000000a, + AudioReverbPreset__Enum_Hangar = 0x0000000b, + AudioReverbPreset__Enum_CarpetedHallway = 0x0000000c, + AudioReverbPreset__Enum_Hallway = 0x0000000d, + AudioReverbPreset__Enum_StoneCorridor = 0x0000000e, + AudioReverbPreset__Enum_Alley = 0x0000000f, + AudioReverbPreset__Enum_Forest = 0x00000010, + AudioReverbPreset__Enum_City = 0x00000011, + AudioReverbPreset__Enum_Mountains = 0x00000012, + AudioReverbPreset__Enum_Quarry = 0x00000013, + AudioReverbPreset__Enum_Plain = 0x00000014, + AudioReverbPreset__Enum_ParkingLot = 0x00000015, + AudioReverbPreset__Enum_SewerPipe = 0x00000016, + AudioReverbPreset__Enum_Underwater = 0x00000017, + AudioReverbPreset__Enum_Drugged = 0x00000018, + AudioReverbPreset__Enum_Dizzy = 0x00000019, + AudioReverbPreset__Enum_Psychotic = 0x0000001a, + AudioReverbPreset__Enum_User = 0x0000001b, +}; + +#endif +struct AudioReverbPreset__Enum__Boxed { + struct AudioReverbPreset__Enum__Class *klass; + MonitorData *monitor; + #if defined(_CPLUSPLUS_) + AudioReverbPreset__Enum value; + #else + int32_t value; + #endif +}; + +struct VoiceReverbTrigger__Fields { + struct MonoBehaviour__Fields _; + #if defined(_CPLUSPLUS_) + AudioReverbPreset__Enum reverbPreset; + #else + int32_t reverbPreset; + #endif + float overrideAudioSourceVolume; + struct VoiceReverbTrigger_ReverbPreset *offPreset; + struct VoiceReverbTrigger_ReverbPreset *desiredPreset; + struct GameUI *gameUI; + struct Coroutine *fadeCo; + struct Dictionary_2_Photon_Bolt_BoltEntity_System_Int32_ *m_TriggerCounts; +}; + +struct VoiceReverbTrigger { + struct VoiceReverbTrigger__Class *klass; + MonitorData *monitor; + struct VoiceReverbTrigger__Fields fields; +}; + struct Survival__Fields { struct GlobalEventListener__Fields _; struct String *_sceneName_k__BackingField; @@ -147433,6 +150086,19 @@ struct PlaceObjectEvent { struct PlaceObjectEvent__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_NolanPerkController_ { + int32_t hashCode; + int32_t next; + struct GameObject *key; + struct NolanPerkController *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_NolanPerkController___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_NolanPerkController___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_NolanPerkController_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_GameObject_NolanPerkController___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_NolanPerkController___Array *_entries; @@ -147452,19 +150118,6 @@ struct Dictionary_2_UnityEngine_GameObject_NolanPerkController_ { struct Dictionary_2_UnityEngine_GameObject_NolanPerkController___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_NolanPerkController_ { - int32_t hashCode; - int32_t next; - struct GameObject *key; - struct NolanPerkController *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_NolanPerkController___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_NolanPerkController___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_NolanPerkController_ fields; -}; - struct EntityEventListenerBase_1_Photon_Bolt_IPlayerState___Fields { struct EntityEventListenerBase__Fields _; }; @@ -147528,6 +150181,191 @@ struct EntityEventListener_1_ISurvivalLobbyState_ { struct EntityEventListener_1_ISurvivalLobbyState___Fields fields; }; +struct SurvivalLobbyControllerCanvas__Fields { + struct MonoBehaviour__Fields _; + struct Button *playerDropdownButton; + struct GameObject *playerDropdownList; + struct Button *kickButton; + struct GameObject *kickButtonLabel; + struct Button *toggleMuteButton; + struct Text *toggleMuteText; + struct Button *toggleTextMuteButton; + struct Text *toggleTextMuteText; + struct GameObject *toggleTextMuteIcon; + struct Button *profileButton; + struct Text *nameText; + struct Image *rankImage; + struct Text *rankText; + struct GameObject *playerDropdownArrow; + struct GameObject *speaking; + struct GameObject *perk1; + struct Image *perk1Image; + struct Text *perk1Text; + struct GameObject *perk2; + struct Image *perk2Image; + struct Text *perk2Text; + struct Text *readyText; + struct GameObject *locallyMuted; + struct TrackedDeviceRaycaster *trackedDeviceRaycaster; + struct TrackedDeviceRaycaster *dropdownTrackedDeviceRaycaster; + struct GameObject *buttonsContainer; + struct GameObject *vrBlockRaycasts; + struct Canvas *canvas; +}; + +struct SurvivalLobbyControllerCanvas { + struct SurvivalLobbyControllerCanvas__Class *klass; + MonitorData *monitor; + struct SurvivalLobbyControllerCanvas__Fields fields; +}; + +struct UIBehaviour__Fields { + struct MonoBehaviour__Fields _; +}; + +struct UIBehaviour { + struct UIBehaviour__Class *klass; + MonitorData *monitor; + struct UIBehaviour__Fields fields; +}; + +struct Graphic__Fields { + struct UIBehaviour__Fields _; + struct Material *m_Material; + struct Color m_Color; + bool m_SkipLayoutUpdate; + bool m_SkipMaterialUpdate; + bool m_RaycastTarget; + bool m_RaycastTargetCache; + struct Vector4 m_RaycastPadding; + struct RectTransform *m_RectTransform; + struct CanvasRenderer *m_CanvasRenderer; + struct Canvas *m_Canvas; + bool m_VertsDirty; + bool m_MaterialDirty; + struct UnityAction *m_OnDirtyLayoutCallback; + struct UnityAction *m_OnDirtyVertsCallback; + struct UnityAction *m_OnDirtyMaterialCallback; + struct Mesh *m_CachedMesh; + struct Vector2__Array *m_CachedUvs; + struct TweenRunner_1_ColorTween_ *m_ColorTweenRunner; + bool _useLegacyMeshGeneration_k__BackingField; +}; + +struct Graphic { + struct Graphic__Class *klass; + MonitorData *monitor; + struct Graphic__Fields fields; +}; + +struct MaskableGraphic__Fields { + struct Graphic__Fields _; + bool m_ShouldRecalculateStencil; + struct Material *m_MaskMaterial; + struct RectMask2D *m_ParentMask; + bool m_Maskable; + bool m_IsMaskingGraphic; + bool m_IncludeForMasking; + struct MaskableGraphic_CullStateChangedEvent *m_OnCullStateChanged; + bool m_ShouldRecalculate; + int32_t m_StencilValue; + struct Vector3__Array *m_Corners; +}; + +struct MaskableGraphic { + struct MaskableGraphic__Class *klass; + MonitorData *monitor; + struct MaskableGraphic__Fields fields; +}; + +#if defined(_CPLUSPLUS_) +enum class Image_Type__Enum : int32_t { + Simple = 0x00000000, + Sliced = 0x00000001, + Tiled = 0x00000002, + Filled = 0x00000003, +}; + +#else +enum Image_Type__Enum { + Image_Type__Enum_Simple = 0x00000000, + Image_Type__Enum_Sliced = 0x00000001, + Image_Type__Enum_Tiled = 0x00000002, + Image_Type__Enum_Filled = 0x00000003, +}; + +#endif +struct Image_Type__Enum__Boxed { + struct Image_Type__Enum__Class *klass; + MonitorData *monitor; + #if defined(_CPLUSPLUS_) + Image_Type__Enum value; + #else + int32_t value; + #endif +}; + +#if defined(_CPLUSPLUS_) +enum class Image_FillMethod__Enum : int32_t { + Horizontal = 0x00000000, + Vertical = 0x00000001, + Radial90 = 0x00000002, + Radial180 = 0x00000003, + Radial360 = 0x00000004, +}; + +#else +enum Image_FillMethod__Enum { + Image_FillMethod__Enum_Horizontal = 0x00000000, + Image_FillMethod__Enum_Vertical = 0x00000001, + Image_FillMethod__Enum_Radial90 = 0x00000002, + Image_FillMethod__Enum_Radial180 = 0x00000003, + Image_FillMethod__Enum_Radial360 = 0x00000004, +}; + +#endif +struct Image_FillMethod__Enum__Boxed { + struct Image_FillMethod__Enum__Class *klass; + MonitorData *monitor; + #if defined(_CPLUSPLUS_) + Image_FillMethod__Enum value; + #else + int32_t value; + #endif +}; + +struct Image__Fields { + struct MaskableGraphic__Fields _; + struct Sprite *m_Sprite; + struct Sprite *m_OverrideSprite; + #if defined(_CPLUSPLUS_) + Image_Type__Enum m_Type; + #else + int32_t m_Type; + #endif + bool m_PreserveAspect; + bool m_FillCenter; + #if defined(_CPLUSPLUS_) + Image_FillMethod__Enum m_FillMethod; + #else + int32_t m_FillMethod; + #endif + float m_FillAmount; + bool m_FillClockwise; + int32_t m_FillOrigin; + float m_AlphaHitTestMinimumThreshold; + bool m_Tracked; + bool m_UseSpriteMesh; + float m_PixelsPerUnitMultiplier; + float m_CachedReferencePixelsPerUnit; +}; + +struct Image { + struct Image__Class *klass; + MonitorData *monitor; + struct Image__Fields fields; +}; + struct AsyncOperationHandle_1_UnityEngine_Material_ { struct AsyncOperationBase_1_UnityEngine_Material_ *m_InternalOp; int32_t m_Version; @@ -147579,54 +150417,6 @@ struct SurvivalLobbyController { struct SurvivalLobbyController__Fields fields; }; -struct SurvivalLobbyControllerCanvas__Fields { - struct MonoBehaviour__Fields _; - struct Button *playerDropdownButton; - struct GameObject *playerDropdownList; - struct Button *kickButton; - struct GameObject *kickButtonLabel; - struct Button *toggleMuteButton; - struct Text *toggleMuteText; - struct Button *toggleTextMuteButton; - struct Text *toggleTextMuteText; - struct GameObject *toggleTextMuteIcon; - struct Button *profileButton; - struct Text *nameText; - struct Image *rankImage; - struct Text *rankText; - struct GameObject *playerDropdownArrow; - struct GameObject *speaking; - struct GameObject *perk1; - struct Image *perk1Image; - struct Text *perk1Text; - struct GameObject *perk2; - struct Image *perk2Image; - struct Text *perk2Text; - struct Text *readyText; - struct GameObject *locallyMuted; - struct TrackedDeviceRaycaster *trackedDeviceRaycaster; - struct TrackedDeviceRaycaster *dropdownTrackedDeviceRaycaster; - struct GameObject *buttonsContainer; - struct GameObject *vrBlockRaycasts; - struct Canvas *canvas; -}; - -struct SurvivalLobbyControllerCanvas { - struct SurvivalLobbyControllerCanvas__Class *klass; - MonitorData *monitor; - struct SurvivalLobbyControllerCanvas__Fields fields; -}; - -struct UIBehaviour__Fields { - struct MonoBehaviour__Fields _; -}; - -struct UIBehaviour { - struct UIBehaviour__Class *klass; - MonitorData *monitor; - struct UIBehaviour__Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class Navigation_Mode__Enum : int32_t { None = 0x00000000, @@ -147792,35 +150582,6 @@ struct AnimationTriggers { struct AnimationTriggers__Fields fields; }; -struct Graphic__Fields { - struct UIBehaviour__Fields _; - struct Material *m_Material; - struct Color m_Color; - bool m_SkipLayoutUpdate; - bool m_SkipMaterialUpdate; - bool m_RaycastTarget; - bool m_RaycastTargetCache; - struct Vector4 m_RaycastPadding; - struct RectTransform *m_RectTransform; - struct CanvasRenderer *m_CanvasRenderer; - struct Canvas *m_Canvas; - bool m_VertsDirty; - bool m_MaterialDirty; - struct UnityAction *m_OnDirtyLayoutCallback; - struct UnityAction *m_OnDirtyVertsCallback; - struct UnityAction *m_OnDirtyMaterialCallback; - struct Mesh *m_CachedMesh; - struct Vector2__Array *m_CachedUvs; - struct TweenRunner_1_ColorTween_ *m_ColorTweenRunner; - bool _useLegacyMeshGeneration_k__BackingField; -}; - -struct Graphic { - struct Graphic__Class *klass; - MonitorData *monitor; - struct Graphic__Fields fields; -}; - struct RectTransform__Fields { struct Transform__Fields _; }; @@ -147997,19 +150758,6 @@ struct CanvasUpdate__Enum__Boxed { #endif }; -struct __declspec(align(8)) List_1_UnityEngine_UIVertex___Fields { - struct UIVertex__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_UIVertex_ { - struct List_1_UnityEngine_UIVertex___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_UIVertex___Fields fields; -}; - struct UIVertex { struct Vector3 position; struct Vector3 normal; @@ -148027,6 +150775,19 @@ struct UIVertex__Boxed { struct UIVertex fields; }; +struct __declspec(align(8)) List_1_UnityEngine_UIVertex___Fields { + struct UIVertex__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_UIVertex_ { + struct List_1_UnityEngine_UIVertex___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_UIVertex___Fields fields; +}; + struct UIVertex__Array { struct UIVertex__Array__Class *klass; MonitorData *monitor; @@ -148040,6 +150801,16 @@ struct IEnumerator_1_UnityEngine_UIVertex_ { MonitorData *monitor; }; +struct CanvasGroup__Fields { + struct Behaviour__Fields _; +}; + +struct CanvasGroup { + struct CanvasGroup__Class *klass; + MonitorData *monitor; + struct CanvasGroup__Fields fields; +}; + struct __declspec(align(8)) List_1_UnityEngine_CanvasGroup___Fields { struct CanvasGroup__Array *_items; int32_t _size; @@ -148053,16 +150824,6 @@ struct List_1_UnityEngine_CanvasGroup_ { struct List_1_UnityEngine_CanvasGroup___Fields fields; }; -struct CanvasGroup__Fields { - struct Behaviour__Fields _; -}; - -struct CanvasGroup { - struct CanvasGroup__Class *klass; - MonitorData *monitor; - struct CanvasGroup__Fields fields; -}; - struct CanvasGroup__Array { struct CanvasGroup__Array__Class *klass; MonitorData *monitor; @@ -148161,19 +150922,6 @@ struct EventSystem { struct EventSystem__Fields fields; }; -struct __declspec(align(8)) List_1_UnityEngine_EventSystems_BaseInputModule___Fields { - struct BaseInputModule__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_EventSystems_BaseInputModule_ { - struct List_1_UnityEngine_EventSystems_BaseInputModule___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_EventSystems_BaseInputModule___Fields fields; -}; - struct BaseInputModule__Fields { struct UIBehaviour__Fields _; struct List_1_UnityEngine_EventSystems_RaycastResult_ *m_RaycastResultCache; @@ -148191,17 +150939,17 @@ struct BaseInputModule { struct BaseInputModule__Fields fields; }; -struct __declspec(align(8)) List_1_UnityEngine_EventSystems_RaycastResult___Fields { - struct RaycastResult__Array *_items; +struct __declspec(align(8)) List_1_UnityEngine_EventSystems_BaseInputModule___Fields { + struct BaseInputModule__Array *_items; int32_t _size; int32_t _version; struct Object *_syncRoot; }; -struct List_1_UnityEngine_EventSystems_RaycastResult_ { - struct List_1_UnityEngine_EventSystems_RaycastResult___Class *klass; +struct List_1_UnityEngine_EventSystems_BaseInputModule_ { + struct List_1_UnityEngine_EventSystems_BaseInputModule___Class *klass; MonitorData *monitor; - struct List_1_UnityEngine_EventSystems_RaycastResult___Fields fields; + struct List_1_UnityEngine_EventSystems_BaseInputModule___Fields fields; }; struct RaycastResult { @@ -148226,6 +150974,19 @@ struct RaycastResult__Boxed { struct RaycastResult fields; }; +struct __declspec(align(8)) List_1_UnityEngine_EventSystems_RaycastResult___Fields { + struct RaycastResult__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_EventSystems_RaycastResult_ { + struct List_1_UnityEngine_EventSystems_RaycastResult___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_EventSystems_RaycastResult___Fields fields; +}; + struct BaseRaycaster__Fields { struct UIBehaviour__Fields _; struct BaseRaycaster *m_RootRaycaster; @@ -148259,19 +151020,6 @@ struct TrackedDeviceRaycaster { struct TrackedDeviceRaycaster__Fields fields; }; -struct __declspec(align(8)) List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData___Fields { - struct TrackedDeviceRaycaster_RaycastHitData__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ { - struct List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData___Fields fields; -}; - struct TrackedDeviceRaycaster_RaycastHitData { struct Graphic *_graphic_k__BackingField; struct Vector3 _worldHitPosition_k__BackingField; @@ -148285,6 +151033,19 @@ struct TrackedDeviceRaycaster_RaycastHitData__Boxed { struct TrackedDeviceRaycaster_RaycastHitData fields; }; +struct __declspec(align(8)) List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData___Fields { + struct TrackedDeviceRaycaster_RaycastHitData__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData_ { + struct List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_InputSystem_UI_TrackedDeviceRaycaster_RaycastHitData___Fields fields; +}; + struct TrackedDeviceRaycaster_RaycastHitData__Array { struct TrackedDeviceRaycaster_RaycastHitData__Array__Class *klass; MonitorData *monitor; @@ -148582,6 +151343,11 @@ struct RewiredStandaloneInputModule { struct RewiredStandaloneInputModule__Fields fields; }; +struct IMouseInputSource { + struct IMouseInputSource__Class *klass; + MonitorData *monitor; +}; + struct __declspec(align(8)) List_1_Rewired_UI_IMouseInputSource___Fields { struct IMouseInputSource__Array *_items; int32_t _size; @@ -148595,11 +151361,6 @@ struct List_1_Rewired_UI_IMouseInputSource_ { struct List_1_Rewired_UI_IMouseInputSource___Fields fields; }; -struct IMouseInputSource { - struct IMouseInputSource__Class *klass; - MonitorData *monitor; -}; - struct IMouseInputSource__Array { struct IMouseInputSource__Array__Class *klass; MonitorData *monitor; @@ -148613,36 +151374,17 @@ struct IEnumerator_1_Rewired_UI_IMouseInputSource_ { MonitorData *monitor; }; -struct __declspec(align(8)) Dictionary_2_System_Int32_Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData___Fields { - struct Int32__Array *_buckets; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData___Array *_entries; - int32_t _count; - int32_t _freeList; - int32_t _freeCount; - int32_t _version; - struct IEqualityComparer_1_System_Int32_ *_comparer; - struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32_Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData_ *_keys; - struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData_ *_values; - struct Object *_syncRoot; -}; - -struct Dictionary_2_System_Int32_Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData_ { - struct Dictionary_2_System_Int32_Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData___Class *klass; - MonitorData *monitor; - struct Dictionary_2_System_Int32_Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData___Fields fields; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData_ { +struct Dictionary_2_TKey_TValue_Entry_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData_ { int32_t hashCode; int32_t next; int32_t key; - struct Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData___Array *value; + struct PlayerPointerEventData *value; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData___Class *klass; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData___Class *klass; MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData_ fields; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData_ fields; }; struct __declspec(align(8)) Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData___Fields { @@ -148664,17 +151406,36 @@ struct Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventD struct Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData_ { +struct Dictionary_2_TKey_TValue_Entry_System_Int32_Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData_ { int32_t hashCode; int32_t next; int32_t key; - struct PlayerPointerEventData *value; + struct Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData___Array *value; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData___Class *klass; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData___Class *klass; MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData_ fields; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData_ fields; +}; + +struct __declspec(align(8)) Dictionary_2_System_Int32_Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_System_Int32_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32_Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_System_Int32_Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData_ { + struct Dictionary_2_System_Int32_Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData___Class *klass; + MonitorData *monitor; + struct Dictionary_2_System_Int32_Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData___Fields fields; }; #if defined(_CPLUSPLUS_) @@ -148905,6 +151666,17 @@ struct RewiredPointerInputModule_MouseState { struct RewiredPointerInputModule_MouseState__Fields fields; }; +struct __declspec(align(8)) RewiredPointerInputModule_ButtonState__Fields { + int32_t m_Button; + struct RewiredPointerInputModule_MouseButtonEventData *m_EventData; +}; + +struct RewiredPointerInputModule_ButtonState { + struct RewiredPointerInputModule_ButtonState__Class *klass; + MonitorData *monitor; + struct RewiredPointerInputModule_ButtonState__Fields fields; +}; + struct __declspec(align(8)) List_1_Rewired_Integration_UnityUI_RewiredPointerInputModule_ButtonState___Fields { struct RewiredPointerInputModule_ButtonState__Array *_items; int32_t _size; @@ -148918,17 +151690,6 @@ struct List_1_Rewired_Integration_UnityUI_RewiredPointerInputModule_ButtonState_ struct List_1_Rewired_Integration_UnityUI_RewiredPointerInputModule_ButtonState___Fields fields; }; -struct __declspec(align(8)) RewiredPointerInputModule_ButtonState__Fields { - int32_t m_Button; - struct RewiredPointerInputModule_MouseButtonEventData *m_EventData; -}; - -struct RewiredPointerInputModule_ButtonState { - struct RewiredPointerInputModule_ButtonState__Class *klass; - MonitorData *monitor; - struct RewiredPointerInputModule_ButtonState__Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class PointerEventData_FramePressState__Enum : int32_t { Pressed = 0x00000000, @@ -149965,6 +152726,19 @@ struct ConfigVars_EditorVars { struct ConfigVars_EditorVars__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_Rewired_Data_ConfigVars_azUEuvNbipTVExojWRFquaZJFmGY_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct ConfigVars_azUEuvNbipTVExojWRFquaZJFmGY *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_Rewired_Data_ConfigVars_azUEuvNbipTVExojWRFquaZJFmGY___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_Rewired_Data_ConfigVars_azUEuvNbipTVExojWRFquaZJFmGY___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_Rewired_Data_ConfigVars_azUEuvNbipTVExojWRFquaZJFmGY_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_Rewired_Data_ConfigVars_azUEuvNbipTVExojWRFquaZJFmGY___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_Rewired_Data_ConfigVars_azUEuvNbipTVExojWRFquaZJFmGY___Array *_entries; @@ -149984,19 +152758,6 @@ struct Dictionary_2_System_Int32_Rewired_Data_ConfigVars_azUEuvNbipTVExojWRFquaZ struct Dictionary_2_System_Int32_Rewired_Data_ConfigVars_azUEuvNbipTVExojWRFquaZJFmGY___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_Rewired_Data_ConfigVars_azUEuvNbipTVExojWRFquaZJFmGY_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct ConfigVars_azUEuvNbipTVExojWRFquaZJFmGY *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_Rewired_Data_ConfigVars_azUEuvNbipTVExojWRFquaZJFmGY___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_Rewired_Data_ConfigVars_azUEuvNbipTVExojWRFquaZJFmGY___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_Rewired_Data_ConfigVars_azUEuvNbipTVExojWRFquaZJFmGY_ fields; -}; - struct __declspec(align(8)) ConfigVars_azUEuvNbipTVExojWRFquaZJFmGY__Fields { struct Func_1_Rewired_Data_ConfigVars_PlatformVars_ *yfesuiVOnWhgRJiuAutOGIXuontdb; struct String *QtaukRFUcoOrTMEjhaQlFWjBBdajA; @@ -150093,6 +152854,19 @@ struct IEnumerable_1_Rewired_Data_ConfigVars_azUEuvNbipTVExojWRFquaZJFmGY_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_Rewired_Data_ConfigVars_hqPFCXOAONldUTOJGhDJeyDIdhxHb_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct ConfigVars_hqPFCXOAONldUTOJGhDJeyDIdhxHb *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_Rewired_Data_ConfigVars_hqPFCXOAONldUTOJGhDJeyDIdhxHb___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_Rewired_Data_ConfigVars_hqPFCXOAONldUTOJGhDJeyDIdhxHb___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_Rewired_Data_ConfigVars_hqPFCXOAONldUTOJGhDJeyDIdhxHb_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_Rewired_Data_ConfigVars_hqPFCXOAONldUTOJGhDJeyDIdhxHb___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_Rewired_Data_ConfigVars_hqPFCXOAONldUTOJGhDJeyDIdhxHb___Array *_entries; @@ -150112,19 +152886,6 @@ struct Dictionary_2_System_Int32_Rewired_Data_ConfigVars_hqPFCXOAONldUTOJGhDJeyD struct Dictionary_2_System_Int32_Rewired_Data_ConfigVars_hqPFCXOAONldUTOJGhDJeyDIdhxHb___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_Rewired_Data_ConfigVars_hqPFCXOAONldUTOJGhDJeyDIdhxHb_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct ConfigVars_hqPFCXOAONldUTOJGhDJeyDIdhxHb *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_Rewired_Data_ConfigVars_hqPFCXOAONldUTOJGhDJeyDIdhxHb___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_Rewired_Data_ConfigVars_hqPFCXOAONldUTOJGhDJeyDIdhxHb___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_Rewired_Data_ConfigVars_hqPFCXOAONldUTOJGhDJeyDIdhxHb_ fields; -}; - struct __declspec(align(8)) ConfigVars_hqPFCXOAONldUTOJGhDJeyDIdhxHb__Fields { struct Func_2_Rewired_Platforms_Platform_Object_ *yfesuiVOnWhgRJiuAutOGIXuontdb; struct Action_2_Rewired_Platforms_Platform_Object_ *mQZYJsribWNSeKAoTbpJfXzgQXfW; @@ -150242,19 +153003,6 @@ struct KeyedGetSetValueStore_1_System_String_ { struct KeyedGetSetValueStore_1_System_String___Fields fields; }; -struct __declspec(align(8)) List_1_Rewired_Data_Player_Editor___Fields { - struct Player_Editor__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Rewired_Data_Player_Editor_ { - struct List_1_Rewired_Data_Player_Editor___Class *klass; - MonitorData *monitor; - struct List_1_Rewired_Data_Player_Editor___Fields fields; -}; - struct __declspec(align(8)) Player_Editor__Fields { int32_t _id; struct String *_name; @@ -150278,17 +153026,17 @@ struct Player_Editor { struct Player_Editor__Fields fields; }; -struct __declspec(align(8)) List_1_Rewired_Data_Player_Editor_Mapping___Fields { - struct Player_Editor_Mapping__Array *_items; +struct __declspec(align(8)) List_1_Rewired_Data_Player_Editor___Fields { + struct Player_Editor__Array *_items; int32_t _size; int32_t _version; struct Object *_syncRoot; }; -struct List_1_Rewired_Data_Player_Editor_Mapping_ { - struct List_1_Rewired_Data_Player_Editor_Mapping___Class *klass; +struct List_1_Rewired_Data_Player_Editor_ { + struct List_1_Rewired_Data_Player_Editor___Class *klass; MonitorData *monitor; - struct List_1_Rewired_Data_Player_Editor_Mapping___Fields fields; + struct List_1_Rewired_Data_Player_Editor___Fields fields; }; struct __declspec(align(8)) Player_Editor_Mapping__Fields { @@ -150303,6 +153051,19 @@ struct Player_Editor_Mapping { struct Player_Editor_Mapping__Fields fields; }; +struct __declspec(align(8)) List_1_Rewired_Data_Player_Editor_Mapping___Fields { + struct Player_Editor_Mapping__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Rewired_Data_Player_Editor_Mapping_ { + struct List_1_Rewired_Data_Player_Editor_Mapping___Class *klass; + MonitorData *monitor; + struct List_1_Rewired_Data_Player_Editor_Mapping___Fields fields; +}; + struct Player_Editor_Mapping__Array { struct Player_Editor_Mapping__Array__Class *klass; MonitorData *monitor; @@ -150316,6 +153077,17 @@ struct IEnumerator_1_Rewired_Data_Player_Editor_Mapping_ { MonitorData *monitor; }; +struct __declspec(align(8)) Player_Editor_CreateControllerInfo__Fields { + int32_t _sourceId; + struct String *_tag; +}; + +struct Player_Editor_CreateControllerInfo { + struct Player_Editor_CreateControllerInfo__Class *klass; + MonitorData *monitor; + struct Player_Editor_CreateControllerInfo__Fields fields; +}; + struct __declspec(align(8)) List_1_Rewired_Data_Player_Editor_CreateControllerInfo___Fields { struct Player_Editor_CreateControllerInfo__Array *_items; int32_t _size; @@ -150329,17 +153101,6 @@ struct List_1_Rewired_Data_Player_Editor_CreateControllerInfo_ { struct List_1_Rewired_Data_Player_Editor_CreateControllerInfo___Fields fields; }; -struct __declspec(align(8)) Player_Editor_CreateControllerInfo__Fields { - int32_t _sourceId; - struct String *_tag; -}; - -struct Player_Editor_CreateControllerInfo { - struct Player_Editor_CreateControllerInfo__Class *klass; - MonitorData *monitor; - struct Player_Editor_CreateControllerInfo__Fields fields; -}; - struct Player_Editor_CreateControllerInfo__Array { struct Player_Editor_CreateControllerInfo__Array__Class *klass; MonitorData *monitor; @@ -150365,6 +153126,17 @@ struct Player_Editor_ControllerMapLayoutManagerSettings { struct Player_Editor_ControllerMapLayoutManagerSettings__Fields fields; }; +struct __declspec(align(8)) Player_Editor_RuleSetMapping__Fields { + bool _enabled; + int32_t _id; +}; + +struct Player_Editor_RuleSetMapping { + struct Player_Editor_RuleSetMapping__Class *klass; + MonitorData *monitor; + struct Player_Editor_RuleSetMapping__Fields fields; +}; + struct __declspec(align(8)) List_1_Rewired_Data_Player_Editor_RuleSetMapping___Fields { struct Player_Editor_RuleSetMapping__Array *_items; int32_t _size; @@ -150378,17 +153150,6 @@ struct List_1_Rewired_Data_Player_Editor_RuleSetMapping_ { struct List_1_Rewired_Data_Player_Editor_RuleSetMapping___Fields fields; }; -struct __declspec(align(8)) Player_Editor_RuleSetMapping__Fields { - bool _enabled; - int32_t _id; -}; - -struct Player_Editor_RuleSetMapping { - struct Player_Editor_RuleSetMapping__Class *klass; - MonitorData *monitor; - struct Player_Editor_RuleSetMapping__Fields fields; -}; - struct Player_Editor_RuleSetMapping__Array { struct Player_Editor_RuleSetMapping__Array__Class *klass; MonitorData *monitor; @@ -150426,19 +153187,6 @@ struct IEnumerator_1_Rewired_Data_Player_Editor_ { MonitorData *monitor; }; -struct __declspec(align(8)) List_1_Rewired_InputAction___Fields { - struct InputAction__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Rewired_InputAction_ { - struct List_1_Rewired_InputAction___Class *klass; - MonitorData *monitor; - struct List_1_Rewired_InputAction___Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class InputActionType__Enum : int32_t { Axis = 0x00000000, @@ -150486,6 +153234,19 @@ struct InputAction { struct InputAction__Fields fields; }; +struct __declspec(align(8)) List_1_Rewired_InputAction___Fields { + struct InputAction__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Rewired_InputAction_ { + struct List_1_Rewired_InputAction___Class *klass; + MonitorData *monitor; + struct List_1_Rewired_InputAction___Fields fields; +}; + struct InputAction__Array { struct InputAction__Array__Class *klass; MonitorData *monitor; @@ -150499,19 +153260,6 @@ struct IEnumerator_1_Rewired_InputAction_ { MonitorData *monitor; }; -struct __declspec(align(8)) List_1_Rewired_InputCategory___Fields { - struct InputCategory__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Rewired_InputCategory_ { - struct List_1_Rewired_InputCategory___Class *klass; - MonitorData *monitor; - struct List_1_Rewired_InputCategory___Fields fields; -}; - struct __declspec(align(8)) InputCategory__Fields { struct String *_name; struct String *_descriptiveName; @@ -150526,6 +153274,19 @@ struct InputCategory { struct InputCategory__Fields fields; }; +struct __declspec(align(8)) List_1_Rewired_InputCategory___Fields { + struct InputCategory__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Rewired_InputCategory_ { + struct List_1_Rewired_InputCategory___Class *klass; + MonitorData *monitor; + struct List_1_Rewired_InputCategory___Fields fields; +}; + struct InputCategory__Array { struct InputCategory__Array__Class *klass; MonitorData *monitor; @@ -150549,6 +153310,17 @@ struct ActionCategoryMap { struct ActionCategoryMap__Fields fields; }; +struct __declspec(align(8)) ActionCategoryMap_Entry__Fields { + int32_t categoryId; + struct List_1_System_Int32_ *actionIds; +}; + +struct ActionCategoryMap_Entry { + struct ActionCategoryMap_Entry__Class *klass; + MonitorData *monitor; + struct ActionCategoryMap_Entry__Fields fields; +}; + struct __declspec(align(8)) List_1_Rewired_Data_Mapping_ActionCategoryMap_Entry___Fields { struct ActionCategoryMap_Entry__Array *_items; int32_t _size; @@ -150562,17 +153334,6 @@ struct List_1_Rewired_Data_Mapping_ActionCategoryMap_Entry_ { struct List_1_Rewired_Data_Mapping_ActionCategoryMap_Entry___Fields fields; }; -struct __declspec(align(8)) ActionCategoryMap_Entry__Fields { - int32_t categoryId; - struct List_1_System_Int32_ *actionIds; -}; - -struct ActionCategoryMap_Entry { - struct ActionCategoryMap_Entry__Class *klass; - MonitorData *monitor; - struct ActionCategoryMap_Entry__Fields fields; -}; - struct ActionCategoryMap_Entry__Array { struct ActionCategoryMap_Entry__Array__Class *klass; MonitorData *monitor; @@ -150586,19 +153347,6 @@ struct IEnumerator_1_Rewired_Data_Mapping_ActionCategoryMap_Entry_ { MonitorData *monitor; }; -struct __declspec(align(8)) List_1_Rewired_InputBehavior___Fields { - struct InputBehavior__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Rewired_InputBehavior_ { - struct List_1_Rewired_InputBehavior___Class *klass; - MonitorData *monitor; - struct List_1_Rewired_InputBehavior___Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class MouseXYAxisMode__Enum : int32_t { MouseAxis = 0x00000000, @@ -150718,6 +153466,19 @@ struct InputBehavior { struct InputBehavior__Fields fields; }; +struct __declspec(align(8)) List_1_Rewired_InputBehavior___Fields { + struct InputBehavior__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Rewired_InputBehavior_ { + struct List_1_Rewired_InputBehavior___Class *klass; + MonitorData *monitor; + struct List_1_Rewired_InputBehavior___Fields fields; +}; + struct InputBehavior__Array { struct InputBehavior__Array__Class *klass; MonitorData *monitor; @@ -150731,19 +153492,6 @@ struct IEnumerator_1_Rewired_InputBehavior_ { MonitorData *monitor; }; -struct __declspec(align(8)) List_1_Rewired_InputMapCategory___Fields { - struct InputMapCategory__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Rewired_InputMapCategory_ { - struct List_1_Rewired_InputMapCategory___Class *klass; - MonitorData *monitor; - struct List_1_Rewired_InputMapCategory___Fields fields; -}; - struct InputMapCategory__Fields { struct InputCategory__Fields _; bool _checkConflictsWithAllCategories; @@ -150757,6 +153505,19 @@ struct InputMapCategory { struct InputMapCategory__Fields fields; }; +struct __declspec(align(8)) List_1_Rewired_InputMapCategory___Fields { + struct InputMapCategory__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Rewired_InputMapCategory_ { + struct List_1_Rewired_InputMapCategory___Class *klass; + MonitorData *monitor; + struct List_1_Rewired_InputMapCategory___Fields fields; +}; + struct __declspec(align(8)) ReadOnlyCollection_1_System_Int32___Fields { struct IList_1_System_Int32_ *list; struct Object *_syncRoot; @@ -150786,6 +153547,18 @@ struct IEnumerator_1_Rewired_InputMapCategory_ { MonitorData *monitor; }; +struct __declspec(align(8)) InputLayout__Fields { + struct String *_name; + struct String *_descriptiveName; + int32_t _id; +}; + +struct InputLayout { + struct InputLayout__Class *klass; + MonitorData *monitor; + struct InputLayout__Fields fields; +}; + struct __declspec(align(8)) List_1_Rewired_InputLayout___Fields { struct InputLayout__Array *_items; int32_t _size; @@ -150799,18 +153572,6 @@ struct List_1_Rewired_InputLayout_ { struct List_1_Rewired_InputLayout___Fields fields; }; -struct __declspec(align(8)) InputLayout__Fields { - struct String *_name; - struct String *_descriptiveName; - int32_t _id; -}; - -struct InputLayout { - struct InputLayout__Class *klass; - MonitorData *monitor; - struct InputLayout__Fields fields; -}; - struct InputLayout__Array { struct InputLayout__Array__Class *klass; MonitorData *monitor; @@ -150824,19 +153585,6 @@ struct IEnumerator_1_Rewired_InputLayout_ { MonitorData *monitor; }; -struct __declspec(align(8)) List_1_Rewired_Data_Mapping_ControllerMap_Editor___Fields { - struct ControllerMap_Editor__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Rewired_Data_Mapping_ControllerMap_Editor_ { - struct List_1_Rewired_Data_Mapping_ControllerMap_Editor___Class *klass; - MonitorData *monitor; - struct List_1_Rewired_Data_Mapping_ControllerMap_Editor___Fields fields; -}; - struct __declspec(align(8)) ControllerMap_Editor__Fields { int32_t id; int32_t categoryId; @@ -150853,17 +153601,17 @@ struct ControllerMap_Editor { struct ControllerMap_Editor__Fields fields; }; -struct __declspec(align(8)) List_1_Rewired_ActionElementMap___Fields { - struct ActionElementMap__Array *_items; +struct __declspec(align(8)) List_1_Rewired_Data_Mapping_ControllerMap_Editor___Fields { + struct ControllerMap_Editor__Array *_items; int32_t _size; int32_t _version; struct Object *_syncRoot; }; -struct List_1_Rewired_ActionElementMap_ { - struct List_1_Rewired_ActionElementMap___Class *klass; +struct List_1_Rewired_Data_Mapping_ControllerMap_Editor_ { + struct List_1_Rewired_Data_Mapping_ControllerMap_Editor___Class *klass; MonitorData *monitor; - struct List_1_Rewired_ActionElementMap___Fields fields; + struct List_1_Rewired_Data_Mapping_ControllerMap_Editor___Fields fields; }; #if defined(_CPLUSPLUS_) @@ -151348,6 +154096,19 @@ struct ActionElementMap { struct ActionElementMap__Fields fields; }; +struct __declspec(align(8)) List_1_Rewired_ActionElementMap___Fields { + struct ActionElementMap__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Rewired_ActionElementMap_ { + struct List_1_Rewired_ActionElementMap___Class *klass; + MonitorData *monitor; + struct List_1_Rewired_ActionElementMap___Fields fields; +}; + #if defined(_CPLUSPLUS_) enum class ControllerType__Enum : int32_t { Keyboard = 0x00000000, @@ -152276,25 +155037,6 @@ struct IEqualityComparer_1_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaS MonitorData *monitor; }; -struct __declspec(align(8)) AList_1_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_String_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Fields { - struct IEqualityComparer_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb_ *IffVJRWXMWVnHJdLRJYLVauxgDLkA; - struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_String_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Array *_items; - int32_t AmnCvjBSkGhAaMYjlMZxEEvbSrui; - int32_t _count; - int32_t MlBWsNGNiomUVthQUNRXfpFBfdvcA; - bool BgeCjBfkGdQNGlLKwiklClEiXqZYb; - int32_t NKRGkWDwiVqYeHERShAcPbFuCIMgb; - bool rEPnayQyfurrRXZjmKdrDQdkiUwbA; - int32_t vyAzFNcXzBhuRiyIKSwxhSukcXQu; - struct Object *eCrDVxsFDCrYCyMPHlSFBIZwopNk; -}; - -struct AList_1_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_String_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ { - struct AList_1_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_String_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Class *klass; - MonitorData *monitor; - struct AList_1_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_String_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class SerializedObject_FieldOptions__Enum : int32_t { None = 0x00000000, @@ -152345,6 +155087,25 @@ struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Stri struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_String_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ fields; }; +struct __declspec(align(8)) AList_1_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_String_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Fields { + struct IEqualityComparer_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb_ *IffVJRWXMWVnHJdLRJYLVauxgDLkA; + struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_String_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Array *_items; + int32_t AmnCvjBSkGhAaMYjlMZxEEvbSrui; + int32_t _count; + int32_t MlBWsNGNiomUVthQUNRXfpFBfdvcA; + bool BgeCjBfkGdQNGlLKwiklClEiXqZYb; + int32_t NKRGkWDwiVqYeHERShAcPbFuCIMgb; + bool rEPnayQyfurrRXZjmKdrDQdkiUwbA; + int32_t vyAzFNcXzBhuRiyIKSwxhSukcXQu; + struct Object *eCrDVxsFDCrYCyMPHlSFBIZwopNk; +}; + +struct AList_1_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_String_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ { + struct AList_1_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_String_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Class *klass; + MonitorData *monitor; + struct AList_1_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_String_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Fields fields; +}; + struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_String_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Array { struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_String_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Array__Class *klass; MonitorData *monitor; @@ -152363,6 +155124,19 @@ struct IEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcw MonitorData *monitor; }; +struct ADictionary_2_TKey_TValue_Entry_System_String_System_Int32_ { + int32_t hashCode; + int32_t next; + struct String *key; + int32_t value; +}; + +struct ADictionary_2_TKey_TValue_Entry_System_String_System_Int32___Boxed { + struct ADictionary_2_TKey_TValue_Entry_System_String_System_Int32___Class *klass; + MonitorData *monitor; + struct ADictionary_2_TKey_TValue_Entry_System_String_System_Int32_ fields; +}; + struct __declspec(align(8)) ADictionary_2_System_String_System_Int32___Fields { struct Int32__Array *pGawVZUvYULemJqagZXhjOtPTktC; struct ADictionary_2_TKey_TValue_Entry_System_String_System_Int32___Array *_entries; @@ -152384,19 +155158,6 @@ struct ADictionary_2_System_String_System_Int32_ { struct ADictionary_2_System_String_System_Int32___Fields fields; }; -struct ADictionary_2_TKey_TValue_Entry_System_String_System_Int32_ { - int32_t hashCode; - int32_t next; - struct String *key; - int32_t value; -}; - -struct ADictionary_2_TKey_TValue_Entry_System_String_System_Int32___Boxed { - struct ADictionary_2_TKey_TValue_Entry_System_String_System_Int32___Class *klass; - MonitorData *monitor; - struct ADictionary_2_TKey_TValue_Entry_System_String_System_Int32_ fields; -}; - struct ADictionary_2_TKey_TValue_Entry_System_String_System_Int32___Array { struct ADictionary_2_TKey_TValue_Entry_System_String_System_Int32___Array__Class *klass; MonitorData *monitor; @@ -152464,6 +155225,11 @@ struct SerializedObject_XmlInfo { struct SerializedObject_XmlInfo__Fields fields; }; +struct SerializedObject_XmlInfo_cSbMSwulYDylVSNioizqhnQVHFieA { + struct SerializedObject_XmlInfo_cSbMSwulYDylVSNioizqhnQVHFieA__Class *klass; + MonitorData *monitor; +}; + struct __declspec(align(8)) List_1_Rewired_Utils_Classes_Data_SerializedObject_XmlInfo_cSbMSwulYDylVSNioizqhnQVHFieA___Fields { struct SerializedObject_XmlInfo_cSbMSwulYDylVSNioizqhnQVHFieA__Array *_items; int32_t _size; @@ -152477,11 +155243,6 @@ struct List_1_Rewired_Utils_Classes_Data_SerializedObject_XmlInfo_cSbMSwulYDylVS struct List_1_Rewired_Utils_Classes_Data_SerializedObject_XmlInfo_cSbMSwulYDylVSNioizqhnQVHFieA___Fields fields; }; -struct SerializedObject_XmlInfo_cSbMSwulYDylVSNioizqhnQVHFieA { - struct SerializedObject_XmlInfo_cSbMSwulYDylVSNioizqhnQVHFieA__Class *klass; - MonitorData *monitor; -}; - struct SerializedObject_XmlInfo_cSbMSwulYDylVSNioizqhnQVHFieA__Array { struct SerializedObject_XmlInfo_cSbMSwulYDylVSNioizqhnQVHFieA__Array__Class *klass; MonitorData *monitor; @@ -152495,6 +155256,19 @@ struct IEnumerator_1_Rewired_Utils_Classes_Data_SerializedObject_XmlInfo_cSbMSwu MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Type_Dictionary_2_System_String_System_Reflection_FieldInfo_ { + int32_t hashCode; + int32_t next; + struct Type *key; + struct Dictionary_2_System_String_System_Reflection_FieldInfo_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_Dictionary_2_System_String_System_Reflection_FieldInfo___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Type_Dictionary_2_System_String_System_Reflection_FieldInfo___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Type_Dictionary_2_System_String_System_Reflection_FieldInfo_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Type_Dictionary_2_System_String_System_Reflection_FieldInfo___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Type_Dictionary_2_System_String_System_Reflection_FieldInfo___Array *_entries; @@ -152514,17 +155288,17 @@ struct Dictionary_2_System_Type_Dictionary_2_System_String_System_Reflection_Fie struct Dictionary_2_System_Type_Dictionary_2_System_String_System_Reflection_FieldInfo___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Type_Dictionary_2_System_String_System_Reflection_FieldInfo_ { +struct Dictionary_2_TKey_TValue_Entry_System_String_System_Reflection_FieldInfo_ { int32_t hashCode; int32_t next; - struct Type *key; - struct Dictionary_2_System_String_System_Reflection_FieldInfo_ *value; + struct String *key; + struct FieldInfo_1 *value; }; -struct Dictionary_2_TKey_TValue_Entry_System_Type_Dictionary_2_System_String_System_Reflection_FieldInfo___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Type_Dictionary_2_System_String_System_Reflection_FieldInfo___Class *klass; +struct Dictionary_2_TKey_TValue_Entry_System_String_System_Reflection_FieldInfo___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_System_Reflection_FieldInfo___Class *klass; MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Type_Dictionary_2_System_String_System_Reflection_FieldInfo_ fields; + struct Dictionary_2_TKey_TValue_Entry_System_String_System_Reflection_FieldInfo_ fields; }; struct __declspec(align(8)) Dictionary_2_System_String_System_Reflection_FieldInfo___Fields { @@ -152546,19 +155320,6 @@ struct Dictionary_2_System_String_System_Reflection_FieldInfo_ { struct Dictionary_2_System_String_System_Reflection_FieldInfo___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_System_Reflection_FieldInfo_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct FieldInfo_1 *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_System_Reflection_FieldInfo___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_System_Reflection_FieldInfo___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_System_Reflection_FieldInfo_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_String_System_Reflection_FieldInfo___Array { struct Dictionary_2_TKey_TValue_Entry_System_String_System_Reflection_FieldInfo___Array__Class *klass; MonitorData *monitor; @@ -152696,6 +155457,19 @@ struct IEnumerable_1_Dictionary_2_System_String_System_Reflection_FieldInfo_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Type_Dictionary_2_System_String_System_Reflection_PropertyInfo_ { + int32_t hashCode; + int32_t next; + struct Type *key; + struct Dictionary_2_System_String_System_Reflection_PropertyInfo_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_Dictionary_2_System_String_System_Reflection_PropertyInfo___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Type_Dictionary_2_System_String_System_Reflection_PropertyInfo___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Type_Dictionary_2_System_String_System_Reflection_PropertyInfo_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Type_Dictionary_2_System_String_System_Reflection_PropertyInfo___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Type_Dictionary_2_System_String_System_Reflection_PropertyInfo___Array *_entries; @@ -152715,17 +155489,17 @@ struct Dictionary_2_System_Type_Dictionary_2_System_String_System_Reflection_Pro struct Dictionary_2_System_Type_Dictionary_2_System_String_System_Reflection_PropertyInfo___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Type_Dictionary_2_System_String_System_Reflection_PropertyInfo_ { +struct Dictionary_2_TKey_TValue_Entry_System_String_System_Reflection_PropertyInfo_ { int32_t hashCode; int32_t next; - struct Type *key; - struct Dictionary_2_System_String_System_Reflection_PropertyInfo_ *value; + struct String *key; + struct PropertyInfo_1 *value; }; -struct Dictionary_2_TKey_TValue_Entry_System_Type_Dictionary_2_System_String_System_Reflection_PropertyInfo___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Type_Dictionary_2_System_String_System_Reflection_PropertyInfo___Class *klass; +struct Dictionary_2_TKey_TValue_Entry_System_String_System_Reflection_PropertyInfo___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_System_Reflection_PropertyInfo___Class *klass; MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Type_Dictionary_2_System_String_System_Reflection_PropertyInfo_ fields; + struct Dictionary_2_TKey_TValue_Entry_System_String_System_Reflection_PropertyInfo_ fields; }; struct __declspec(align(8)) Dictionary_2_System_String_System_Reflection_PropertyInfo___Fields { @@ -152747,19 +155521,6 @@ struct Dictionary_2_System_String_System_Reflection_PropertyInfo_ { struct Dictionary_2_System_String_System_Reflection_PropertyInfo___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_System_Reflection_PropertyInfo_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct PropertyInfo_1 *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_System_Reflection_PropertyInfo___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_System_Reflection_PropertyInfo___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_System_Reflection_PropertyInfo_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_String_System_Reflection_PropertyInfo___Array { struct Dictionary_2_TKey_TValue_Entry_System_String_System_Reflection_PropertyInfo___Array__Class *klass; MonitorData *monitor; @@ -153320,19 +156081,6 @@ struct IEnumerator_1_Rewired_Data_Mapping_ControllerMap_Editor_ { MonitorData *monitor; }; -struct __declspec(align(8)) List_1_Rewired_Data_CustomController_Editor___Fields { - struct CustomController_Editor__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Rewired_Data_CustomController_Editor_ { - struct List_1_Rewired_Data_CustomController_Editor___Class *klass; - MonitorData *monitor; - struct List_1_Rewired_Data_CustomController_Editor___Fields fields; -}; - struct __declspec(align(8)) CustomController_Editor__Fields { struct String *_name; struct String *_descriptiveName; @@ -153350,17 +156098,17 @@ struct CustomController_Editor { struct CustomController_Editor__Fields fields; }; -struct __declspec(align(8)) List_1_Rewired_ControllerElementIdentifier___Fields { - struct ControllerElementIdentifier__Array *_items; +struct __declspec(align(8)) List_1_Rewired_Data_CustomController_Editor___Fields { + struct CustomController_Editor__Array *_items; int32_t _size; int32_t _version; struct Object *_syncRoot; }; -struct List_1_Rewired_ControllerElementIdentifier_ { - struct List_1_Rewired_ControllerElementIdentifier___Class *klass; +struct List_1_Rewired_Data_CustomController_Editor_ { + struct List_1_Rewired_Data_CustomController_Editor___Class *klass; MonitorData *monitor; - struct List_1_Rewired_ControllerElementIdentifier___Fields fields; + struct List_1_Rewired_Data_CustomController_Editor___Fields fields; }; #if defined(_CPLUSPLUS_) @@ -153411,6 +156159,19 @@ struct ControllerElementIdentifier { struct ControllerElementIdentifier__Fields fields; }; +struct __declspec(align(8)) List_1_Rewired_ControllerElementIdentifier___Fields { + struct ControllerElementIdentifier__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Rewired_ControllerElementIdentifier_ { + struct List_1_Rewired_ControllerElementIdentifier___Class *klass; + MonitorData *monitor; + struct List_1_Rewired_ControllerElementIdentifier___Fields fields; +}; + struct ControllerElementIdentifier__Array { struct ControllerElementIdentifier__Array__Class *klass; MonitorData *monitor; @@ -153424,19 +156185,6 @@ struct IEnumerator_1_Rewired_ControllerElementIdentifier_ { MonitorData *monitor; }; -struct __declspec(align(8)) List_1_Rewired_Data_CustomController_Editor_Axis___Fields { - struct CustomController_Editor_Axis__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Rewired_Data_CustomController_Editor_Axis_ { - struct List_1_Rewired_Data_CustomController_Editor_Axis___Class *klass; - MonitorData *monitor; - struct List_1_Rewired_Data_CustomController_Editor_Axis___Fields fields; -}; - struct __declspec(align(8)) CustomController_Editor_Element__Fields { int32_t elementIdentifierId; struct String *name; @@ -153477,6 +156225,19 @@ struct CustomController_Editor_Axis { struct CustomController_Editor_Axis__Fields fields; }; +struct __declspec(align(8)) List_1_Rewired_Data_CustomController_Editor_Axis___Fields { + struct CustomController_Editor_Axis__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Rewired_Data_CustomController_Editor_Axis_ { + struct List_1_Rewired_Data_CustomController_Editor_Axis___Class *klass; + MonitorData *monitor; + struct List_1_Rewired_Data_CustomController_Editor_Axis___Fields fields; +}; + struct CustomController_Editor_Button__Fields { struct CustomController_Editor_Element__Fields _; }; @@ -153606,19 +156367,6 @@ struct IEnumerator_1_Rewired_Data_CustomController_Editor_ { MonitorData *monitor; }; -struct __declspec(align(8)) List_1_Rewired_Data_ControllerMapLayoutManager_RuleSet_Editor___Fields { - struct ControllerMapLayoutManager_RuleSet_Editor__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Rewired_Data_ControllerMapLayoutManager_RuleSet_Editor_ { - struct List_1_Rewired_Data_ControllerMapLayoutManager_RuleSet_Editor___Class *klass; - MonitorData *monitor; - struct List_1_Rewired_Data_ControllerMapLayoutManager_RuleSet_Editor___Fields fields; -}; - struct __declspec(align(8)) ControllerMapLayoutManager_RuleSet_Editor__Fields { int32_t _id; struct String *_name; @@ -153632,17 +156380,17 @@ struct ControllerMapLayoutManager_RuleSet_Editor { struct ControllerMapLayoutManager_RuleSet_Editor__Fields fields; }; -struct __declspec(align(8)) List_1_Rewired_Data_ControllerMapLayoutManager_Rule_Editor___Fields { - struct ControllerMapLayoutManager_Rule_Editor__Array *_items; +struct __declspec(align(8)) List_1_Rewired_Data_ControllerMapLayoutManager_RuleSet_Editor___Fields { + struct ControllerMapLayoutManager_RuleSet_Editor__Array *_items; int32_t _size; int32_t _version; struct Object *_syncRoot; }; -struct List_1_Rewired_Data_ControllerMapLayoutManager_Rule_Editor_ { - struct List_1_Rewired_Data_ControllerMapLayoutManager_Rule_Editor___Class *klass; +struct List_1_Rewired_Data_ControllerMapLayoutManager_RuleSet_Editor_ { + struct List_1_Rewired_Data_ControllerMapLayoutManager_RuleSet_Editor___Class *klass; MonitorData *monitor; - struct List_1_Rewired_Data_ControllerMapLayoutManager_Rule_Editor___Fields fields; + struct List_1_Rewired_Data_ControllerMapLayoutManager_RuleSet_Editor___Fields fields; }; struct __declspec(align(8)) ControllerMapLayoutManager_Rule_Editor__Fields { @@ -153658,6 +156406,19 @@ struct ControllerMapLayoutManager_Rule_Editor { struct ControllerMapLayoutManager_Rule_Editor__Fields fields; }; +struct __declspec(align(8)) List_1_Rewired_Data_ControllerMapLayoutManager_Rule_Editor___Fields { + struct ControllerMapLayoutManager_Rule_Editor__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Rewired_Data_ControllerMapLayoutManager_Rule_Editor_ { + struct List_1_Rewired_Data_ControllerMapLayoutManager_Rule_Editor___Class *klass; + MonitorData *monitor; + struct List_1_Rewired_Data_ControllerMapLayoutManager_Rule_Editor___Fields fields; +}; + #if defined(_CPLUSPLUS_) enum class ControllerSetSelector_Type__Enum : int32_t { All = 0x00000000, @@ -153740,19 +156501,6 @@ struct IEnumerator_1_Rewired_Data_ControllerMapLayoutManager_RuleSet_Editor_ { MonitorData *monitor; }; -struct __declspec(align(8)) List_1_Rewired_Data_ControllerMapEnabler_RuleSet_Editor___Fields { - struct ControllerMapEnabler_RuleSet_Editor__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Rewired_Data_ControllerMapEnabler_RuleSet_Editor_ { - struct List_1_Rewired_Data_ControllerMapEnabler_RuleSet_Editor___Class *klass; - MonitorData *monitor; - struct List_1_Rewired_Data_ControllerMapEnabler_RuleSet_Editor___Fields fields; -}; - struct __declspec(align(8)) ControllerMapEnabler_RuleSet_Editor__Fields { int32_t _id; struct String *_name; @@ -153766,17 +156514,17 @@ struct ControllerMapEnabler_RuleSet_Editor { struct ControllerMapEnabler_RuleSet_Editor__Fields fields; }; -struct __declspec(align(8)) List_1_Rewired_Data_ControllerMapEnabler_Rule_Editor___Fields { - struct ControllerMapEnabler_Rule_Editor__Array *_items; +struct __declspec(align(8)) List_1_Rewired_Data_ControllerMapEnabler_RuleSet_Editor___Fields { + struct ControllerMapEnabler_RuleSet_Editor__Array *_items; int32_t _size; int32_t _version; struct Object *_syncRoot; }; -struct List_1_Rewired_Data_ControllerMapEnabler_Rule_Editor_ { - struct List_1_Rewired_Data_ControllerMapEnabler_Rule_Editor___Class *klass; +struct List_1_Rewired_Data_ControllerMapEnabler_RuleSet_Editor_ { + struct List_1_Rewired_Data_ControllerMapEnabler_RuleSet_Editor___Class *klass; MonitorData *monitor; - struct List_1_Rewired_Data_ControllerMapEnabler_Rule_Editor___Fields fields; + struct List_1_Rewired_Data_ControllerMapEnabler_RuleSet_Editor___Fields fields; }; struct __declspec(align(8)) ControllerMapEnabler_Rule_Editor__Fields { @@ -153793,6 +156541,19 @@ struct ControllerMapEnabler_Rule_Editor { struct ControllerMapEnabler_Rule_Editor__Fields fields; }; +struct __declspec(align(8)) List_1_Rewired_Data_ControllerMapEnabler_Rule_Editor___Fields { + struct ControllerMapEnabler_Rule_Editor__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Rewired_Data_ControllerMapEnabler_Rule_Editor_ { + struct List_1_Rewired_Data_ControllerMapEnabler_Rule_Editor___Class *klass; + MonitorData *monitor; + struct List_1_Rewired_Data_ControllerMapEnabler_Rule_Editor___Fields fields; +}; + struct ControllerMapEnabler_Rule_Editor__Array { struct ControllerMapEnabler_Rule_Editor__Array__Class *klass; MonitorData *monitor; @@ -153874,70 +156635,6 @@ struct Func_2_Int32_Boolean_ { struct Func_2_Int32_Boolean___Fields fields; }; -struct ControllerDataFiles__Fields { - struct ScriptableObject__Fields _; - struct HardwareJoystickMap *defaultHardwareJoystickMap; - struct HardwareJoystickMap__Array *hardwareJoystickMaps; - struct HardwareJoystickTemplateMap__Array *joystickTemplates; - bool SewlqNLmdyANNEOPsUJkBihDdWGn; -}; - -struct ControllerDataFiles { - struct ControllerDataFiles__Class *klass; - MonitorData *monitor; - struct ControllerDataFiles__Fields fields; -}; - -struct HardwareJoystickMap__Fields { - struct ScriptableObject__Fields _; - struct String *controllerName; - struct String *editorControllerName; - struct String *description; - struct String *controllerGuid; - struct String__Array *templateGuids; - bool hideInLists; - struct JoystickType__Enum__Array *joystickTypes; - struct ControllerElementIdentifier__Array *elementIdentifiers; - struct HardwareJoystickMap_CompoundElement__Array *compoundElements; - struct HardwareJoystickMap_Platform_DirectInput *directInput; - struct HardwareJoystickMap_Platform_RawInput *rawInput; - struct HardwareJoystickMap_Platform_XInput *xInput; - struct HardwareJoystickMap_Platform_OSX *osx; - struct HardwareJoystickMap_Platform_Linux *linux; - struct HardwareJoystickMap_Platform_WindowsUWP *windowsUWP; - struct HardwareJoystickMap_Platform_Fallback *fallback_Windows; - struct HardwareJoystickMap_Platform_Fallback *fallback_WindowsUWP; - struct HardwareJoystickMap_Platform_Fallback *fallback_OSX; - struct HardwareJoystickMap_Platform_Fallback *fallback_Linux; - struct HardwareJoystickMap_Platform_Fallback *fallback_Linux_PreConfigured; - struct HardwareJoystickMap_Platform_Fallback *fallback_Android; - struct HardwareJoystickMap_Platform_Fallback *fallback_iOS; - struct HardwareJoystickMap_Platform_Fallback *fallback_XBoxOne; - struct HardwareJoystickMap_Platform_Fallback *fallback_PS4; - struct HardwareJoystickMap_Platform_PS5 *ps5; - struct HardwareJoystickMap_Platform_Fallback *fallback_PSM; - struct HardwareJoystickMap_Platform_Fallback *fallback_PSVita; - struct HardwareJoystickMap_Platform_Fallback *fallback_AmazonFireTV; - struct HardwareJoystickMap_Platform_WebGL *webGL; - struct HardwareJoystickMap_Platform_XboxOne *xboxOne; - struct HardwareJoystickMap_Platform_GameCore *gameCore; - struct HardwareJoystickMap_Platform_PS4 *ps4; - struct HardwareJoystickMap_Platform_NintendoSwitch *nintendoSwitch; - struct HardwareJoystickMap_Platform_Stadia *stadia; - struct HardwareJoystickMap_Platform_InternalDriver *internalDriver; - struct HardwareJoystickMap_Platform_SDL2 *sdl2_Linux; - struct HardwareJoystickMap_Platform_SDL2 *sdl2_Windows; - struct HardwareJoystickMap_Platform_SDL2 *sdl2_OSX; - struct HardwareJoystickMap_Platform_AppleGCController *appleGCController; - int32_t elementIdentifierIdCounter; -}; - -struct HardwareJoystickMap { - struct HardwareJoystickMap__Class *klass; - MonitorData *monitor; - struct HardwareJoystickMap__Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class JoystickType__Enum : int32_t { Unknown = 0x00000000, @@ -154023,14 +156720,6 @@ struct JoystickType__Enum__Boxed { #endif }; -struct JoystickType__Enum__Array { - struct JoystickType__Enum__Array__Class *klass; - MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - JoystickType__Enum vector[32]; -}; - struct __declspec(align(8)) HardwareJoystickMap_CompoundElement__Fields { #if defined(_CPLUSPLUS_) CompoundControllerElementType__Enum type; @@ -154047,6 +156736,193 @@ struct HardwareJoystickMap_CompoundElement { struct HardwareJoystickMap_CompoundElement__Fields fields; }; +struct HardwareJoystickMap__Fields { + struct ScriptableObject__Fields _; + struct String *controllerName; + struct String *editorControllerName; + struct String *description; + struct String *controllerGuid; + struct String__Array *templateGuids; + bool hideInLists; + struct JoystickType__Enum__Array *joystickTypes; + struct ControllerElementIdentifier__Array *elementIdentifiers; + struct HardwareJoystickMap_CompoundElement__Array *compoundElements; + struct HardwareJoystickMap_Platform_DirectInput *directInput; + struct HardwareJoystickMap_Platform_RawInput *rawInput; + struct HardwareJoystickMap_Platform_XInput *xInput; + struct HardwareJoystickMap_Platform_OSX *osx; + struct HardwareJoystickMap_Platform_Linux *linux; + struct HardwareJoystickMap_Platform_WindowsUWP *windowsUWP; + struct HardwareJoystickMap_Platform_Fallback *fallback_Windows; + struct HardwareJoystickMap_Platform_Fallback *fallback_WindowsUWP; + struct HardwareJoystickMap_Platform_Fallback *fallback_OSX; + struct HardwareJoystickMap_Platform_Fallback *fallback_Linux; + struct HardwareJoystickMap_Platform_Fallback *fallback_Linux_PreConfigured; + struct HardwareJoystickMap_Platform_Fallback *fallback_Android; + struct HardwareJoystickMap_Platform_Fallback *fallback_iOS; + struct HardwareJoystickMap_Platform_Fallback *fallback_XBoxOne; + struct HardwareJoystickMap_Platform_Fallback *fallback_PS4; + struct HardwareJoystickMap_Platform_PS5 *ps5; + struct HardwareJoystickMap_Platform_Fallback *fallback_PSM; + struct HardwareJoystickMap_Platform_Fallback *fallback_PSVita; + struct HardwareJoystickMap_Platform_Fallback *fallback_AmazonFireTV; + struct HardwareJoystickMap_Platform_WebGL *webGL; + struct HardwareJoystickMap_Platform_XboxOne *xboxOne; + struct HardwareJoystickMap_Platform_GameCore *gameCore; + struct HardwareJoystickMap_Platform_PS4 *ps4; + struct HardwareJoystickMap_Platform_NintendoSwitch *nintendoSwitch; + struct HardwareJoystickMap_Platform_Stadia *stadia; + struct HardwareJoystickMap_Platform_InternalDriver *internalDriver; + struct HardwareJoystickMap_Platform_SDL2 *sdl2_Linux; + struct HardwareJoystickMap_Platform_SDL2 *sdl2_Windows; + struct HardwareJoystickMap_Platform_SDL2 *sdl2_OSX; + struct HardwareJoystickMap_Platform_AppleGCController *appleGCController; + int32_t elementIdentifierIdCounter; +}; + +struct HardwareJoystickMap { + struct HardwareJoystickMap__Class *klass; + MonitorData *monitor; + struct HardwareJoystickMap__Fields fields; +}; + +struct HardwareControllerTemplateMap__Fields { + struct ScriptableObject__Fields _; +}; + +struct HardwareControllerTemplateMap { + struct HardwareControllerTemplateMap__Class *klass; + MonitorData *monitor; + struct HardwareControllerTemplateMap__Fields fields; +}; + +#if defined(_CPLUSPLUS_) +enum class ControllerTemplateElementType__Enum : int32_t { + Axis = 0x00000000, + Button = 0x00000001, + ThumbStick = 0x00000002, + DPad = 0x00000004, + Stick = 0x00000005, + Throttle = 0x00000006, + Hat = 0x00000007, + Yoke = 0x00000008, + Stick6D = 0x00000009, +}; + +#else +enum ControllerTemplateElementType__Enum { + ControllerTemplateElementType__Enum_Axis = 0x00000000, + ControllerTemplateElementType__Enum_Button = 0x00000001, + ControllerTemplateElementType__Enum_ThumbStick = 0x00000002, + ControllerTemplateElementType__Enum_DPad = 0x00000004, + ControllerTemplateElementType__Enum_Stick = 0x00000005, + ControllerTemplateElementType__Enum_Throttle = 0x00000006, + ControllerTemplateElementType__Enum_Hat = 0x00000007, + ControllerTemplateElementType__Enum_Yoke = 0x00000008, + ControllerTemplateElementType__Enum_Stick6D = 0x00000009, +}; + +#endif +struct ControllerTemplateElementType__Enum__Boxed { + struct ControllerTemplateElementType__Enum__Class *klass; + MonitorData *monitor; + #if defined(_CPLUSPLUS_) + ControllerTemplateElementType__Enum value; + #else + int32_t value; + #endif +}; + +struct __declspec(align(8)) ControllerTemplateElementIdentifier__Fields { + int32_t _id; + struct String *_name; + struct String *_positiveName; + struct String *_negativeName; + #if defined(_CPLUSPLUS_) + ControllerTemplateElementType__Enum _elementType; + #else + int32_t _elementType; + #endif + bool isMappableOnPlatform; +}; + +struct ControllerTemplateElementIdentifier { + struct ControllerTemplateElementIdentifier__Class *klass; + MonitorData *monitor; + struct ControllerTemplateElementIdentifier__Fields fields; +}; + +struct ControllerTemplateElementIdentifier_Editor__Fields { + struct ControllerTemplateElementIdentifier__Fields _; + struct String *_scriptingName; + struct String *_alternateScriptingName; + bool _excludeFromExport; + bool _useEditorElementTypeOverride; + #if defined(_CPLUSPLUS_) + ControllerElementType__Enum _editorElementTypeOverride; + #else + int32_t _editorElementTypeOverride; + #endif +}; + +struct ControllerTemplateElementIdentifier_Editor { + struct ControllerTemplateElementIdentifier_Editor__Class *klass; + MonitorData *monitor; + struct ControllerTemplateElementIdentifier_Editor__Fields fields; +}; + +struct __declspec(align(8)) HardwareJoystickTemplateMap_SpecialElementEntry__Fields { + int32_t elementIdentifierId; + struct String *data; +}; + +struct HardwareJoystickTemplateMap_SpecialElementEntry { + struct HardwareJoystickTemplateMap_SpecialElementEntry__Class *klass; + MonitorData *monitor; + struct HardwareJoystickTemplateMap_SpecialElementEntry__Fields fields; +}; + +struct HardwareJoystickTemplateMap__Fields { + struct HardwareControllerTemplateMap__Fields _; + struct String *controllerName; + struct String *description; + struct String *templateGuid; + struct String *className; + struct ControllerTemplateElementIdentifier_Editor__Array *elementIdentifiers; + struct List_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap_Entry_ *joysticks; + struct HardwareJoystickTemplateMap_SpecialElementEntry__Array *specialElements; + int32_t elementIdentifierIdCounter; + int32_t joystickIdCounter; +}; + +struct HardwareJoystickTemplateMap { + struct HardwareJoystickTemplateMap__Class *klass; + MonitorData *monitor; + struct HardwareJoystickTemplateMap__Fields fields; +}; + +struct ControllerDataFiles__Fields { + struct ScriptableObject__Fields _; + struct HardwareJoystickMap *defaultHardwareJoystickMap; + struct HardwareJoystickMap__Array *hardwareJoystickMaps; + struct HardwareJoystickTemplateMap__Array *joystickTemplates; + bool SewlqNLmdyANNEOPsUJkBihDdWGn; +}; + +struct ControllerDataFiles { + struct ControllerDataFiles__Class *klass; + MonitorData *monitor; + struct ControllerDataFiles__Fields fields; +}; + +struct JoystickType__Enum__Array { + struct JoystickType__Enum__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + JoystickType__Enum vector[32]; +}; + struct HardwareJoystickMap_CompoundElement__Array { struct HardwareJoystickMap_CompoundElement__Array__Class *klass; MonitorData *monitor; @@ -154215,15 +157091,57 @@ struct HardwareJoystickMap_Platform_RawOrDirectInput_Elements_Platform_Base { MonitorData *monitor; }; -struct __declspec(align(8)) HardwareJoystickMap_Platform_DirectInput_Base_Elements__Fields { - struct HardwareJoystickMap_Platform_DirectInput_Base_Axis__Array *axes; - struct HardwareJoystickMap_Platform_DirectInput_Base_Button__Array *buttons; +#if defined(_CPLUSPLUS_) +enum class AxisCalibrationType__Enum : int32_t { + Default = 0x00000000, + Uncalibrated = 0x00000001, + Custom = 0x00000002, }; -struct HardwareJoystickMap_Platform_DirectInput_Base_Elements { - struct HardwareJoystickMap_Platform_DirectInput_Base_Elements__Class *klass; +#else +enum AxisCalibrationType__Enum { + AxisCalibrationType__Enum_Default = 0x00000000, + AxisCalibrationType__Enum_Uncalibrated = 0x00000001, + AxisCalibrationType__Enum_Custom = 0x00000002, +}; + +#endif +struct AxisCalibrationType__Enum__Boxed { + struct AxisCalibrationType__Enum__Class *klass; MonitorData *monitor; - struct HardwareJoystickMap_Platform_DirectInput_Base_Elements__Fields fields; + #if defined(_CPLUSPLUS_) + AxisCalibrationType__Enum value; + #else + int32_t value; + #endif +}; + +struct __declspec(align(8)) HardwareJoystickMap_Platform_RawOrDirectInput_CustomCalculationSourceData__Fields { + int32_t sourceType; + int32_t sourceAxis; + int32_t sourceButton; + int32_t sourceOtherAxis; + #if defined(_CPLUSPLUS_) + AxisRange__Enum sourceAxisRange; + #else + int32_t sourceAxisRange; + #endif + float axisDeadZone; + bool invert; + #if defined(_CPLUSPLUS_) + AxisCalibrationType__Enum axisCalibrationType; + #else + int32_t axisCalibrationType; + #endif + float axisZero; + float axisMin; + float axisMax; +}; + +struct HardwareJoystickMap_Platform_RawOrDirectInput_CustomCalculationSourceData { + struct HardwareJoystickMap_Platform_RawOrDirectInput_CustomCalculationSourceData__Class *klass; + MonitorData *monitor; + struct HardwareJoystickMap_Platform_RawOrDirectInput_CustomCalculationSourceData__Fields fields; }; struct __declspec(align(8)) HardwareJoystickMap_Platform_RawOrDirectInput_Element__Fields { @@ -154266,6 +157184,44 @@ struct HardwareElementSourceTypeWithHat__Enum__Boxed { #endif }; +#if defined(_CPLUSPLUS_) +enum class AlternateAxisCalibrationType__Enum : int32_t { + Default = 0x00000000, + ThrottleZeroCenter = 0x00000001, +}; + +#else +enum AlternateAxisCalibrationType__Enum { + AlternateAxisCalibrationType__Enum_Default = 0x00000000, + AlternateAxisCalibrationType__Enum_ThrottleZeroCenter = 0x00000001, +}; + +#endif +struct AlternateAxisCalibrationType__Enum__Boxed { + struct AlternateAxisCalibrationType__Enum__Class *klass; + MonitorData *monitor; + #if defined(_CPLUSPLUS_) + AlternateAxisCalibrationType__Enum value; + #else + int32_t value; + #endif +}; + +struct __declspec(align(8)) HardwareJoystickMap_AxisCalibrationInfoEntry__Fields { + #if defined(_CPLUSPLUS_) + AlternateAxisCalibrationType__Enum key; + #else + int32_t key; + #endif + struct AxisCalibrationInfo *calibration; +}; + +struct HardwareJoystickMap_AxisCalibrationInfoEntry { + struct HardwareJoystickMap_AxisCalibrationInfoEntry__Class *klass; + MonitorData *monitor; + struct HardwareJoystickMap_AxisCalibrationInfoEntry__Fields fields; +}; + #if defined(_CPLUSPLUS_) enum class AxisDirection__Enum : int32_t { Vertical = 0x00000000, @@ -154336,6 +157292,135 @@ struct HardwareJoystickMap_Platform_RawOrDirectInput_Axis_Base { struct HardwareJoystickMap_Platform_RawOrDirectInput_Axis_Base__Fields fields; }; +struct HardwareJoystickMap_Platform_DirectInput_Base_Axis__Fields { + struct HardwareJoystickMap_Platform_RawOrDirectInput_Axis_Base__Fields _; +}; + +struct HardwareJoystickMap_Platform_DirectInput_Base_Axis { + struct HardwareJoystickMap_Platform_DirectInput_Base_Axis__Class *klass; + MonitorData *monitor; + struct HardwareJoystickMap_Platform_DirectInput_Base_Axis__Fields fields; +}; + +#if defined(_CPLUSPLUS_) +enum class HatType__Enum : int32_t { + FourWay = 0x00000000, + EightWay = 0x00000001, +}; + +#else +enum HatType__Enum { + HatType__Enum_FourWay = 0x00000000, + HatType__Enum_EightWay = 0x00000001, +}; + +#endif +struct HatType__Enum__Boxed { + struct HatType__Enum__Class *klass; + MonitorData *monitor; + #if defined(_CPLUSPLUS_) + HatType__Enum value; + #else + int32_t value; + #endif +}; + +#if defined(_CPLUSPLUS_) +enum class HatDirection__Enum : int32_t { + Up = 0x00000000, + Right = 0x00000001, + Down = 0x00000002, + Left = 0x00000003, + UpRight = 0x00000004, + DownRight = 0x00000005, + DownLeft = 0x00000006, + UpLeft = 0x00000007, +}; + +#else +enum HatDirection__Enum { + HatDirection__Enum_Up = 0x00000000, + HatDirection__Enum_Right = 0x00000001, + HatDirection__Enum_Down = 0x00000002, + HatDirection__Enum_Left = 0x00000003, + HatDirection__Enum_UpRight = 0x00000004, + HatDirection__Enum_DownRight = 0x00000005, + HatDirection__Enum_DownLeft = 0x00000006, + HatDirection__Enum_UpLeft = 0x00000007, +}; + +#endif +struct HatDirection__Enum__Boxed { + struct HatDirection__Enum__Class *klass; + MonitorData *monitor; + #if defined(_CPLUSPLUS_) + HatDirection__Enum value; + #else + int32_t value; + #endif +}; + +struct HardwareJoystickMap_Platform_RawOrDirectInput_Button_Base__Fields { + struct HardwareJoystickMap_Platform_RawOrDirectInput_Element__Fields _; + int32_t elementIdentifier; + #if defined(_CPLUSPLUS_) + HardwareElementSourceTypeWithHat__Enum sourceType; + #else + int32_t sourceType; + #endif + int32_t sourceButton; + int32_t sourceAxis; + #if defined(_CPLUSPLUS_) + Pole__Enum sourceAxisPole; + #else + int32_t sourceAxisPole; + #endif + float axisDeadZone; + int32_t sourceHat; + #if defined(_CPLUSPLUS_) + HatType__Enum sourceHatType; + #else + int32_t sourceHatType; + #endif + #if defined(_CPLUSPLUS_) + HatDirection__Enum sourceHatDirection; + #else + int32_t sourceHatDirection; + #endif + bool requireMultipleButtons; + struct Int32__Array *requiredButtons; + bool ignoreIfButtonsActive; + struct Int32__Array *ignoreIfButtonsActiveButtons; + struct HardwareButtonInfo *buttonInfo; +}; + +struct HardwareJoystickMap_Platform_RawOrDirectInput_Button_Base { + struct HardwareJoystickMap_Platform_RawOrDirectInput_Button_Base__Class *klass; + MonitorData *monitor; + struct HardwareJoystickMap_Platform_RawOrDirectInput_Button_Base__Fields fields; +}; + +struct HardwareJoystickMap_Platform_DirectInput_Base_Button__Fields { + struct HardwareJoystickMap_Platform_RawOrDirectInput_Button_Base__Fields _; +}; + +struct HardwareJoystickMap_Platform_DirectInput_Base_Button { + struct HardwareJoystickMap_Platform_DirectInput_Base_Button__Class *klass; + MonitorData *monitor; + struct HardwareJoystickMap_Platform_DirectInput_Base_Button__Fields fields; +}; + +struct __declspec(align(8)) HardwareJoystickMap_Platform_DirectInput_Base_Elements__Fields { + struct HardwareJoystickMap_Platform_DirectInput_Base_Axis__Array *axes; + struct HardwareJoystickMap_Platform_DirectInput_Base_Button__Array *buttons; +}; + +struct HardwareJoystickMap_Platform_DirectInput_Base_Elements { + struct HardwareJoystickMap_Platform_DirectInput_Base_Elements__Class *klass; + MonitorData *monitor; + struct HardwareJoystickMap_Platform_DirectInput_Base_Elements__Fields fields; +}; + #if defined(_CPLUSPLUS_) enum class TypeWrapper_DataType__Enum : int32_t { Unknown = 0x00000000, @@ -154569,59 +157654,6 @@ struct CustomCalculation_Accelerometer { struct CustomCalculation_Accelerometer__Fields fields; }; -#if defined(_CPLUSPLUS_) -enum class AxisCalibrationType__Enum : int32_t { - Default = 0x00000000, - Uncalibrated = 0x00000001, - Custom = 0x00000002, -}; - -#else -enum AxisCalibrationType__Enum { - AxisCalibrationType__Enum_Default = 0x00000000, - AxisCalibrationType__Enum_Uncalibrated = 0x00000001, - AxisCalibrationType__Enum_Custom = 0x00000002, -}; - -#endif -struct AxisCalibrationType__Enum__Boxed { - struct AxisCalibrationType__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - AxisCalibrationType__Enum value; - #else - int32_t value; - #endif -}; - -struct __declspec(align(8)) HardwareJoystickMap_Platform_RawOrDirectInput_CustomCalculationSourceData__Fields { - int32_t sourceType; - int32_t sourceAxis; - int32_t sourceButton; - int32_t sourceOtherAxis; - #if defined(_CPLUSPLUS_) - AxisRange__Enum sourceAxisRange; - #else - int32_t sourceAxisRange; - #endif - float axisDeadZone; - bool invert; - #if defined(_CPLUSPLUS_) - AxisCalibrationType__Enum axisCalibrationType; - #else - int32_t axisCalibrationType; - #endif - float axisZero; - float axisMin; - float axisMax; -}; - -struct HardwareJoystickMap_Platform_RawOrDirectInput_CustomCalculationSourceData { - struct HardwareJoystickMap_Platform_RawOrDirectInput_CustomCalculationSourceData__Class *klass; - MonitorData *monitor; - struct HardwareJoystickMap_Platform_RawOrDirectInput_CustomCalculationSourceData__Fields fields; -}; - struct HardwareJoystickMap_Platform_RawOrDirectInput_CustomCalculationSourceData__Array { struct HardwareJoystickMap_Platform_RawOrDirectInput_CustomCalculationSourceData__Array__Class *klass; MonitorData *monitor; @@ -154630,114 +157662,6 @@ struct HardwareJoystickMap_Platform_RawOrDirectInput_CustomCalculationSourceData struct HardwareJoystickMap_Platform_RawOrDirectInput_CustomCalculationSourceData *vector[32]; }; -#if defined(_CPLUSPLUS_) -enum class HatType__Enum : int32_t { - FourWay = 0x00000000, - EightWay = 0x00000001, -}; - -#else -enum HatType__Enum { - HatType__Enum_FourWay = 0x00000000, - HatType__Enum_EightWay = 0x00000001, -}; - -#endif -struct HatType__Enum__Boxed { - struct HatType__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - HatType__Enum value; - #else - int32_t value; - #endif -}; - -#if defined(_CPLUSPLUS_) -enum class HatDirection__Enum : int32_t { - Up = 0x00000000, - Right = 0x00000001, - Down = 0x00000002, - Left = 0x00000003, - UpRight = 0x00000004, - DownRight = 0x00000005, - DownLeft = 0x00000006, - UpLeft = 0x00000007, -}; - -#else -enum HatDirection__Enum { - HatDirection__Enum_Up = 0x00000000, - HatDirection__Enum_Right = 0x00000001, - HatDirection__Enum_Down = 0x00000002, - HatDirection__Enum_Left = 0x00000003, - HatDirection__Enum_UpRight = 0x00000004, - HatDirection__Enum_DownRight = 0x00000005, - HatDirection__Enum_DownLeft = 0x00000006, - HatDirection__Enum_UpLeft = 0x00000007, -}; - -#endif -struct HatDirection__Enum__Boxed { - struct HatDirection__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - HatDirection__Enum value; - #else - int32_t value; - #endif -}; - -struct HardwareJoystickMap_Platform_RawOrDirectInput_Button_Base__Fields { - struct HardwareJoystickMap_Platform_RawOrDirectInput_Element__Fields _; - int32_t elementIdentifier; - #if defined(_CPLUSPLUS_) - HardwareElementSourceTypeWithHat__Enum sourceType; - #else - int32_t sourceType; - #endif - int32_t sourceButton; - int32_t sourceAxis; - #if defined(_CPLUSPLUS_) - Pole__Enum sourceAxisPole; - #else - int32_t sourceAxisPole; - #endif - float axisDeadZone; - int32_t sourceHat; - #if defined(_CPLUSPLUS_) - HatType__Enum sourceHatType; - #else - int32_t sourceHatType; - #endif - #if defined(_CPLUSPLUS_) - HatDirection__Enum sourceHatDirection; - #else - int32_t sourceHatDirection; - #endif - bool requireMultipleButtons; - struct Int32__Array *requiredButtons; - bool ignoreIfButtonsActive; - struct Int32__Array *ignoreIfButtonsActiveButtons; - struct HardwareButtonInfo *buttonInfo; -}; - -struct HardwareJoystickMap_Platform_RawOrDirectInput_Button_Base { - struct HardwareJoystickMap_Platform_RawOrDirectInput_Button_Base__Class *klass; - MonitorData *monitor; - struct HardwareJoystickMap_Platform_RawOrDirectInput_Button_Base__Fields fields; -}; - -struct HardwareJoystickMap_Platform_DirectInput_Base_Button__Fields { - struct HardwareJoystickMap_Platform_RawOrDirectInput_Button_Base__Fields _; -}; - -struct HardwareJoystickMap_Platform_DirectInput_Base_Button { - struct HardwareJoystickMap_Platform_DirectInput_Base_Button__Class *klass; - MonitorData *monitor; - struct HardwareJoystickMap_Platform_DirectInput_Base_Button__Fields fields; -}; - struct __declspec(align(8)) HardwareButtonInfo__Fields { bool _excludeFromPolling; bool _isPressureSensitive; @@ -154749,44 +157673,6 @@ struct HardwareButtonInfo { struct HardwareButtonInfo__Fields fields; }; -#if defined(_CPLUSPLUS_) -enum class AlternateAxisCalibrationType__Enum : int32_t { - Default = 0x00000000, - ThrottleZeroCenter = 0x00000001, -}; - -#else -enum AlternateAxisCalibrationType__Enum { - AlternateAxisCalibrationType__Enum_Default = 0x00000000, - AlternateAxisCalibrationType__Enum_ThrottleZeroCenter = 0x00000001, -}; - -#endif -struct AlternateAxisCalibrationType__Enum__Boxed { - struct AlternateAxisCalibrationType__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - AlternateAxisCalibrationType__Enum value; - #else - int32_t value; - #endif -}; - -struct __declspec(align(8)) HardwareJoystickMap_AxisCalibrationInfoEntry__Fields { - #if defined(_CPLUSPLUS_) - AlternateAxisCalibrationType__Enum key; - #else - int32_t key; - #endif - struct AxisCalibrationInfo *calibration; -}; - -struct HardwareJoystickMap_AxisCalibrationInfoEntry { - struct HardwareJoystickMap_AxisCalibrationInfoEntry__Class *klass; - MonitorData *monitor; - struct HardwareJoystickMap_AxisCalibrationInfoEntry__Fields fields; -}; - struct __declspec(align(8)) AxisCalibrationInfo__Fields { bool _applyRangeCalibration; bool _invert; @@ -154817,16 +157703,6 @@ struct HardwareJoystickMap_AxisCalibrationInfoEntry__Array { struct HardwareJoystickMap_AxisCalibrationInfoEntry *vector[32]; }; -struct HardwareJoystickMap_Platform_DirectInput_Base_Axis__Fields { - struct HardwareJoystickMap_Platform_RawOrDirectInput_Axis_Base__Fields _; -}; - -struct HardwareJoystickMap_Platform_DirectInput_Base_Axis { - struct HardwareJoystickMap_Platform_DirectInput_Base_Axis__Class *klass; - MonitorData *monitor; - struct HardwareJoystickMap_Platform_DirectInput_Base_Axis__Fields fields; -}; - struct IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_RawOrDirectInput_Axis_Base_ { struct IEnumerable_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_RawOrDirectInput_Axis_Base___Class *klass; MonitorData *monitor; @@ -155204,6 +158080,19 @@ struct AxisCalibrationData__Boxed { struct AxisCalibrationData fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_Rewired_Data_Mapping_AxisCalibrationInfo_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct AxisCalibrationInfo *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_Rewired_Data_Mapping_AxisCalibrationInfo___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_Rewired_Data_Mapping_AxisCalibrationInfo___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_Rewired_Data_Mapping_AxisCalibrationInfo_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_Rewired_Data_Mapping_AxisCalibrationInfo___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_Rewired_Data_Mapping_AxisCalibrationInfo___Array *_entries; @@ -155223,19 +158112,6 @@ struct Dictionary_2_System_Int32_Rewired_Data_Mapping_AxisCalibrationInfo_ { struct Dictionary_2_System_Int32_Rewired_Data_Mapping_AxisCalibrationInfo___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_Rewired_Data_Mapping_AxisCalibrationInfo_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct AxisCalibrationInfo *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_Rewired_Data_Mapping_AxisCalibrationInfo___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_Rewired_Data_Mapping_AxisCalibrationInfo___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_Rewired_Data_Mapping_AxisCalibrationInfo_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_Rewired_Data_Mapping_AxisCalibrationInfo___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_Rewired_Data_Mapping_AxisCalibrationInfo___Array__Class *klass; MonitorData *monitor; @@ -155356,6 +158232,28 @@ struct HardwareJoystickMap_MatchingCriteria_Base { struct HardwareJoystickMap_MatchingCriteria_Base__Fields fields; }; +struct __declspec(align(8)) HardwareJoystickMap_MatchingCriteria_Base_ElementCount_Base__Fields { + int32_t axisCount; + int32_t buttonCount; +}; + +struct HardwareJoystickMap_MatchingCriteria_Base_ElementCount_Base { + struct HardwareJoystickMap_MatchingCriteria_Base_ElementCount_Base__Class *klass; + MonitorData *monitor; + struct HardwareJoystickMap_MatchingCriteria_Base_ElementCount_Base__Fields fields; +}; + +struct HardwareJoystickMap_Platform_RawOrDirectInput_MatchingCriteria_ElementCount__Fields { + struct HardwareJoystickMap_MatchingCriteria_Base_ElementCount_Base__Fields _; + int32_t hatCount; +}; + +struct HardwareJoystickMap_Platform_RawOrDirectInput_MatchingCriteria_ElementCount { + struct HardwareJoystickMap_Platform_RawOrDirectInput_MatchingCriteria_ElementCount__Class *klass; + MonitorData *monitor; + struct HardwareJoystickMap_Platform_RawOrDirectInput_MatchingCriteria_ElementCount__Fields fields; +}; + #if defined(_CPLUSPLUS_) enum class HardwareJoystickMap_Platform_RawOrDirectInput_DeviceType__Enum : int32_t { Any = 0x00000000, @@ -155422,28 +158320,6 @@ struct HardwareJoystickMap_Platform_RawOrDirectInput_MatchingCriteria { struct HardwareJoystickMap_Platform_RawOrDirectInput_MatchingCriteria__Fields fields; }; -struct __declspec(align(8)) HardwareJoystickMap_MatchingCriteria_Base_ElementCount_Base__Fields { - int32_t axisCount; - int32_t buttonCount; -}; - -struct HardwareJoystickMap_MatchingCriteria_Base_ElementCount_Base { - struct HardwareJoystickMap_MatchingCriteria_Base_ElementCount_Base__Class *klass; - MonitorData *monitor; - struct HardwareJoystickMap_MatchingCriteria_Base_ElementCount_Base__Fields fields; -}; - -struct HardwareJoystickMap_Platform_RawOrDirectInput_MatchingCriteria_ElementCount__Fields { - struct HardwareJoystickMap_MatchingCriteria_Base_ElementCount_Base__Fields _; - int32_t hatCount; -}; - -struct HardwareJoystickMap_Platform_RawOrDirectInput_MatchingCriteria_ElementCount { - struct HardwareJoystickMap_Platform_RawOrDirectInput_MatchingCriteria_ElementCount__Class *klass; - MonitorData *monitor; - struct HardwareJoystickMap_Platform_RawOrDirectInput_MatchingCriteria_ElementCount__Fields fields; -}; - struct HardwareJoystickMap_Platform_RawOrDirectInput_MatchingCriteria_ElementCount__Array { struct HardwareJoystickMap_Platform_RawOrDirectInput_MatchingCriteria_ElementCount__Array__Class *klass; MonitorData *monitor; @@ -155482,17 +158358,6 @@ struct HardwareJoystickMap_Platform_RawInput { struct HardwareJoystickMap_Platform_RawInput__Fields fields; }; -struct __declspec(align(8)) HardwareJoystickMap_Platform_RawInput_Base_Elements__Fields { - struct HardwareJoystickMap_Platform_RawInput_Base_Axis__Array *axes; - struct HardwareJoystickMap_Platform_RawInput_Base_Button__Array *buttons; -}; - -struct HardwareJoystickMap_Platform_RawInput_Base_Elements { - struct HardwareJoystickMap_Platform_RawInput_Base_Elements__Class *klass; - MonitorData *monitor; - struct HardwareJoystickMap_Platform_RawInput_Base_Elements__Fields fields; -}; - struct HardwareJoystickMap_Platform_RawInput_Base_Axis__Fields { struct HardwareJoystickMap_Platform_RawOrDirectInput_Axis_Base__Fields _; int32_t sourceOtherAxis; @@ -155504,14 +158369,6 @@ struct HardwareJoystickMap_Platform_RawInput_Base_Axis { struct HardwareJoystickMap_Platform_RawInput_Base_Axis__Fields fields; }; -struct HardwareJoystickMap_Platform_RawInput_Base_Axis__Array { - struct HardwareJoystickMap_Platform_RawInput_Base_Axis__Array__Class *klass; - MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - struct HardwareJoystickMap_Platform_RawInput_Base_Axis *vector[32]; -}; - struct HardwareJoystickMap_Platform_RawInput_Base_Button__Fields { struct HardwareJoystickMap_Platform_RawOrDirectInput_Button_Base__Fields _; int32_t sourceOtherAxis; @@ -155523,6 +158380,25 @@ struct HardwareJoystickMap_Platform_RawInput_Base_Button { struct HardwareJoystickMap_Platform_RawInput_Base_Button__Fields fields; }; +struct __declspec(align(8)) HardwareJoystickMap_Platform_RawInput_Base_Elements__Fields { + struct HardwareJoystickMap_Platform_RawInput_Base_Axis__Array *axes; + struct HardwareJoystickMap_Platform_RawInput_Base_Button__Array *buttons; +}; + +struct HardwareJoystickMap_Platform_RawInput_Base_Elements { + struct HardwareJoystickMap_Platform_RawInput_Base_Elements__Class *klass; + MonitorData *monitor; + struct HardwareJoystickMap_Platform_RawInput_Base_Elements__Fields fields; +}; + +struct HardwareJoystickMap_Platform_RawInput_Base_Axis__Array { + struct HardwareJoystickMap_Platform_RawInput_Base_Axis__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct HardwareJoystickMap_Platform_RawInput_Base_Axis *vector[32]; +}; + struct HardwareJoystickMap_Platform_RawInput_Base_Button__Array { struct HardwareJoystickMap_Platform_RawInput_Base_Button__Array__Class *klass; MonitorData *monitor; @@ -155581,17 +158457,6 @@ struct XInputDeviceSubType__Enum__Array { XInputDeviceSubType__Enum vector[32]; }; -struct __declspec(align(8)) HardwareJoystickMap_Platform_XInput_Base_Elements__Fields { - struct HardwareJoystickMap_Platform_XInput_Base_Axis__Array *axes; - struct HardwareJoystickMap_Platform_XInput_Base_Button__Array *buttons; -}; - -struct HardwareJoystickMap_Platform_XInput_Base_Elements { - struct HardwareJoystickMap_Platform_XInput_Base_Elements__Class *klass; - MonitorData *monitor; - struct HardwareJoystickMap_Platform_XInput_Base_Elements__Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class HardwareElementSourceType__Enum : int32_t { Button = 0x00000000, @@ -155772,6 +158637,17 @@ struct HardwareJoystickMap_Platform_XInput_Base_Button { struct HardwareJoystickMap_Platform_XInput_Base_Button__Fields fields; }; +struct __declspec(align(8)) HardwareJoystickMap_Platform_XInput_Base_Elements__Fields { + struct HardwareJoystickMap_Platform_XInput_Base_Axis__Array *axes; + struct HardwareJoystickMap_Platform_XInput_Base_Button__Array *buttons; +}; + +struct HardwareJoystickMap_Platform_XInput_Base_Elements { + struct HardwareJoystickMap_Platform_XInput_Base_Elements__Class *klass; + MonitorData *monitor; + struct HardwareJoystickMap_Platform_XInput_Base_Elements__Fields fields; +}; + struct HardwareJoystickMap_Platform_XInput_Base_Axis__Array { struct HardwareJoystickMap_Platform_XInput_Base_Axis__Array__Class *klass; MonitorData *monitor; @@ -155819,6 +158695,17 @@ struct HardwareJoystickMap_Platform_OSX { struct HardwareJoystickMap_Platform_OSX__Fields fields; }; +struct HardwareJoystickMap_Platform_OSX_Base_MatchingCriteria_ElementCount__Fields { + struct HardwareJoystickMap_MatchingCriteria_Base_ElementCount_Base__Fields _; + int32_t hatCount; +}; + +struct HardwareJoystickMap_Platform_OSX_Base_MatchingCriteria_ElementCount { + struct HardwareJoystickMap_Platform_OSX_Base_MatchingCriteria_ElementCount__Class *klass; + MonitorData *monitor; + struct HardwareJoystickMap_Platform_OSX_Base_MatchingCriteria_ElementCount__Fields fields; +}; + struct HardwareJoystickMap_Platform_OSX_Base_MatchingCriteria__Fields { struct HardwareJoystickMap_MatchingCriteria_Base__Fields _; int32_t hatCount; @@ -155836,17 +158723,6 @@ struct HardwareJoystickMap_Platform_OSX_Base_MatchingCriteria { struct HardwareJoystickMap_Platform_OSX_Base_MatchingCriteria__Fields fields; }; -struct HardwareJoystickMap_Platform_OSX_Base_MatchingCriteria_ElementCount__Fields { - struct HardwareJoystickMap_MatchingCriteria_Base_ElementCount_Base__Fields _; - int32_t hatCount; -}; - -struct HardwareJoystickMap_Platform_OSX_Base_MatchingCriteria_ElementCount { - struct HardwareJoystickMap_Platform_OSX_Base_MatchingCriteria_ElementCount__Class *klass; - MonitorData *monitor; - struct HardwareJoystickMap_Platform_OSX_Base_MatchingCriteria_ElementCount__Fields fields; -}; - struct HardwareJoystickMap_Platform_OSX_Base_MatchingCriteria_ElementCount__Array { struct HardwareJoystickMap_Platform_OSX_Base_MatchingCriteria_ElementCount__Array__Class *klass; MonitorData *monitor; @@ -155855,17 +158731,6 @@ struct HardwareJoystickMap_Platform_OSX_Base_MatchingCriteria_ElementCount__Arra struct HardwareJoystickMap_Platform_OSX_Base_MatchingCriteria_ElementCount *vector[32]; }; -struct __declspec(align(8)) HardwareJoystickMap_Platform_OSX_Base_Elements__Fields { - struct HardwareJoystickMap_Platform_OSX_Base_Axis__Array *axes; - struct HardwareJoystickMap_Platform_OSX_Base_Button__Array *buttons; -}; - -struct HardwareJoystickMap_Platform_OSX_Base_Elements { - struct HardwareJoystickMap_Platform_OSX_Base_Elements__Class *klass; - MonitorData *monitor; - struct HardwareJoystickMap_Platform_OSX_Base_Elements__Fields fields; -}; - struct HardwareJoystickMap_Platform_OSX_Base_Element { struct HardwareJoystickMap_Platform_OSX_Base_Element__Class *klass; MonitorData *monitor; @@ -155995,6 +158860,17 @@ struct HardwareJoystickMap_Platform_OSX_Base_Button { struct HardwareJoystickMap_Platform_OSX_Base_Button__Fields fields; }; +struct __declspec(align(8)) HardwareJoystickMap_Platform_OSX_Base_Elements__Fields { + struct HardwareJoystickMap_Platform_OSX_Base_Axis__Array *axes; + struct HardwareJoystickMap_Platform_OSX_Base_Button__Array *buttons; +}; + +struct HardwareJoystickMap_Platform_OSX_Base_Elements { + struct HardwareJoystickMap_Platform_OSX_Base_Elements__Class *klass; + MonitorData *monitor; + struct HardwareJoystickMap_Platform_OSX_Base_Elements__Fields fields; +}; + struct HardwareJoystickMap_Platform_OSX_Base_Axis__Array { struct HardwareJoystickMap_Platform_OSX_Base_Axis__Array__Class *klass; MonitorData *monitor; @@ -156042,6 +158918,17 @@ struct HardwareJoystickMap_Platform_Linux { struct HardwareJoystickMap_Platform_Linux__Fields fields; }; +struct HardwareJoystickMap_Platform_Linux_Base_MatchingCriteria_ElementCount__Fields { + struct HardwareJoystickMap_MatchingCriteria_Base_ElementCount_Base__Fields _; + int32_t hatCount; +}; + +struct HardwareJoystickMap_Platform_Linux_Base_MatchingCriteria_ElementCount { + struct HardwareJoystickMap_Platform_Linux_Base_MatchingCriteria_ElementCount__Class *klass; + MonitorData *monitor; + struct HardwareJoystickMap_Platform_Linux_Base_MatchingCriteria_ElementCount__Fields fields; +}; + struct HardwareJoystickMap_Platform_Linux_Base_MatchingCriteria__Fields { struct HardwareJoystickMap_MatchingCriteria_Base__Fields _; int32_t hatCount; @@ -156061,17 +158948,6 @@ struct HardwareJoystickMap_Platform_Linux_Base_MatchingCriteria { struct HardwareJoystickMap_Platform_Linux_Base_MatchingCriteria__Fields fields; }; -struct HardwareJoystickMap_Platform_Linux_Base_MatchingCriteria_ElementCount__Fields { - struct HardwareJoystickMap_MatchingCriteria_Base_ElementCount_Base__Fields _; - int32_t hatCount; -}; - -struct HardwareJoystickMap_Platform_Linux_Base_MatchingCriteria_ElementCount { - struct HardwareJoystickMap_Platform_Linux_Base_MatchingCriteria_ElementCount__Class *klass; - MonitorData *monitor; - struct HardwareJoystickMap_Platform_Linux_Base_MatchingCriteria_ElementCount__Fields fields; -}; - struct HardwareJoystickMap_Platform_Linux_Base_MatchingCriteria_ElementCount__Array { struct HardwareJoystickMap_Platform_Linux_Base_MatchingCriteria_ElementCount__Array__Class *klass; MonitorData *monitor; @@ -156080,17 +158956,6 @@ struct HardwareJoystickMap_Platform_Linux_Base_MatchingCriteria_ElementCount__Ar struct HardwareJoystickMap_Platform_Linux_Base_MatchingCriteria_ElementCount *vector[32]; }; -struct __declspec(align(8)) HardwareJoystickMap_Platform_Linux_Base_Elements__Fields { - struct HardwareJoystickMap_Platform_Linux_Base_Axis__Array *axes; - struct HardwareJoystickMap_Platform_Linux_Base_Button__Array *buttons; -}; - -struct HardwareJoystickMap_Platform_Linux_Base_Elements { - struct HardwareJoystickMap_Platform_Linux_Base_Elements__Class *klass; - MonitorData *monitor; - struct HardwareJoystickMap_Platform_Linux_Base_Elements__Fields fields; -}; - struct HardwareJoystickMap_Platform_Linux_Base_Element { struct HardwareJoystickMap_Platform_Linux_Base_Element__Class *klass; MonitorData *monitor; @@ -156181,6 +159046,17 @@ struct HardwareJoystickMap_Platform_Linux_Base_Button { struct HardwareJoystickMap_Platform_Linux_Base_Button__Fields fields; }; +struct __declspec(align(8)) HardwareJoystickMap_Platform_Linux_Base_Elements__Fields { + struct HardwareJoystickMap_Platform_Linux_Base_Axis__Array *axes; + struct HardwareJoystickMap_Platform_Linux_Base_Button__Array *buttons; +}; + +struct HardwareJoystickMap_Platform_Linux_Base_Elements { + struct HardwareJoystickMap_Platform_Linux_Base_Elements__Class *klass; + MonitorData *monitor; + struct HardwareJoystickMap_Platform_Linux_Base_Elements__Fields fields; +}; + struct HardwareJoystickMap_Platform_Linux_Base_Axis__Array { struct HardwareJoystickMap_Platform_Linux_Base_Axis__Array__Class *klass; MonitorData *monitor; @@ -156228,6 +159104,17 @@ struct HardwareJoystickMap_Platform_WindowsUWP { struct HardwareJoystickMap_Platform_WindowsUWP__Fields fields; }; +struct HardwareJoystickMap_Platform_WindowsUWP_Base_MatchingCriteria_ElementCount__Fields { + struct HardwareJoystickMap_MatchingCriteria_Base_ElementCount_Base__Fields _; + int32_t hatCount; +}; + +struct HardwareJoystickMap_Platform_WindowsUWP_Base_MatchingCriteria_ElementCount { + struct HardwareJoystickMap_Platform_WindowsUWP_Base_MatchingCriteria_ElementCount__Class *klass; + MonitorData *monitor; + struct HardwareJoystickMap_Platform_WindowsUWP_Base_MatchingCriteria_ElementCount__Fields fields; +}; + struct HardwareJoystickMap_Platform_WindowsUWP_Base_MatchingCriteria__Fields { struct HardwareJoystickMap_MatchingCriteria_Base__Fields _; int32_t hatCount; @@ -156245,17 +159132,6 @@ struct HardwareJoystickMap_Platform_WindowsUWP_Base_MatchingCriteria { struct HardwareJoystickMap_Platform_WindowsUWP_Base_MatchingCriteria__Fields fields; }; -struct HardwareJoystickMap_Platform_WindowsUWP_Base_MatchingCriteria_ElementCount__Fields { - struct HardwareJoystickMap_MatchingCriteria_Base_ElementCount_Base__Fields _; - int32_t hatCount; -}; - -struct HardwareJoystickMap_Platform_WindowsUWP_Base_MatchingCriteria_ElementCount { - struct HardwareJoystickMap_Platform_WindowsUWP_Base_MatchingCriteria_ElementCount__Class *klass; - MonitorData *monitor; - struct HardwareJoystickMap_Platform_WindowsUWP_Base_MatchingCriteria_ElementCount__Fields fields; -}; - struct HardwareJoystickMap_Platform_WindowsUWP_Base_MatchingCriteria_ElementCount__Array { struct HardwareJoystickMap_Platform_WindowsUWP_Base_MatchingCriteria_ElementCount__Array__Class *klass; MonitorData *monitor; @@ -156264,17 +159140,6 @@ struct HardwareJoystickMap_Platform_WindowsUWP_Base_MatchingCriteria_ElementCoun struct HardwareJoystickMap_Platform_WindowsUWP_Base_MatchingCriteria_ElementCount *vector[32]; }; -struct __declspec(align(8)) HardwareJoystickMap_Platform_WindowsUWP_Base_Elements__Fields { - struct HardwareJoystickMap_Platform_WindowsUWP_Base_Axis__Array *axes; - struct HardwareJoystickMap_Platform_WindowsUWP_Base_Button__Array *buttons; -}; - -struct HardwareJoystickMap_Platform_WindowsUWP_Base_Elements { - struct HardwareJoystickMap_Platform_WindowsUWP_Base_Elements__Class *klass; - MonitorData *monitor; - struct HardwareJoystickMap_Platform_WindowsUWP_Base_Elements__Fields fields; -}; - struct HardwareJoystickMap_Platform_WindowsUWP_Base_Element { struct HardwareJoystickMap_Platform_WindowsUWP_Base_Element__Class *klass; MonitorData *monitor; @@ -156365,6 +159230,17 @@ struct HardwareJoystickMap_Platform_WindowsUWP_Base_Button { struct HardwareJoystickMap_Platform_WindowsUWP_Base_Button__Fields fields; }; +struct __declspec(align(8)) HardwareJoystickMap_Platform_WindowsUWP_Base_Elements__Fields { + struct HardwareJoystickMap_Platform_WindowsUWP_Base_Axis__Array *axes; + struct HardwareJoystickMap_Platform_WindowsUWP_Base_Button__Array *buttons; +}; + +struct HardwareJoystickMap_Platform_WindowsUWP_Base_Elements { + struct HardwareJoystickMap_Platform_WindowsUWP_Base_Elements__Class *klass; + MonitorData *monitor; + struct HardwareJoystickMap_Platform_WindowsUWP_Base_Elements__Fields fields; +}; + struct HardwareJoystickMap_Platform_WindowsUWP_Base_Axis__Array { struct HardwareJoystickMap_Platform_WindowsUWP_Base_Axis__Array__Class *klass; MonitorData *monitor; @@ -156431,17 +159307,6 @@ struct HardwareJoystickMap_Platform_Fallback_Base_MatchingCriteria { struct HardwareJoystickMap_Platform_Fallback_Base_MatchingCriteria__Fields fields; }; -struct __declspec(align(8)) HardwareJoystickMap_Platform_Fallback_Base_Elements__Fields { - struct HardwareJoystickMap_Platform_Fallback_Base_Axis__Array *axes; - struct HardwareJoystickMap_Platform_Fallback_Base_Button__Array *buttons; -}; - -struct HardwareJoystickMap_Platform_Fallback_Base_Elements { - struct HardwareJoystickMap_Platform_Fallback_Base_Elements__Class *klass; - MonitorData *monitor; - struct HardwareJoystickMap_Platform_Fallback_Base_Elements__Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class UnityAxis__Enum : int32_t { None = 0x00000000, @@ -156584,6 +159449,24 @@ struct UnityButton__Enum__Boxed { #endif }; +struct __declspec(align(8)) HardwareJoystickMap_Platform_Fallback_Base_CustomCalculationSourceData__Fields { + int32_t sourceType; + int32_t sourceElement; + #if defined(_CPLUSPLUS_) + AxisRange__Enum sourceAxisRange; + #else + int32_t sourceAxisRange; + #endif + float deadzone; + bool invert; +}; + +struct HardwareJoystickMap_Platform_Fallback_Base_CustomCalculationSourceData { + struct HardwareJoystickMap_Platform_Fallback_Base_CustomCalculationSourceData__Class *klass; + MonitorData *monitor; + struct HardwareJoystickMap_Platform_Fallback_Base_CustomCalculationSourceData__Fields fields; +}; + struct __declspec(align(8)) HardwareJoystickMap_Platform_Fallback_Base_Element__Fields { int32_t elementIdentifier; #if defined(_CPLUSPLUS_) @@ -156644,32 +159527,6 @@ struct HardwareJoystickMap_Platform_Fallback_Base_Axis { struct HardwareJoystickMap_Platform_Fallback_Base_Axis__Fields fields; }; -struct __declspec(align(8)) HardwareJoystickMap_Platform_Fallback_Base_CustomCalculationSourceData__Fields { - int32_t sourceType; - int32_t sourceElement; - #if defined(_CPLUSPLUS_) - AxisRange__Enum sourceAxisRange; - #else - int32_t sourceAxisRange; - #endif - float deadzone; - bool invert; -}; - -struct HardwareJoystickMap_Platform_Fallback_Base_CustomCalculationSourceData { - struct HardwareJoystickMap_Platform_Fallback_Base_CustomCalculationSourceData__Class *klass; - MonitorData *monitor; - struct HardwareJoystickMap_Platform_Fallback_Base_CustomCalculationSourceData__Fields fields; -}; - -struct HardwareJoystickMap_Platform_Fallback_Base_CustomCalculationSourceData__Array { - struct HardwareJoystickMap_Platform_Fallback_Base_CustomCalculationSourceData__Array__Class *klass; - MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - struct HardwareJoystickMap_Platform_Fallback_Base_CustomCalculationSourceData *vector[32]; -}; - struct HardwareJoystickMap_Platform_Fallback_Base_Button__Fields { struct HardwareJoystickMap_Platform_Fallback_Base_Element__Fields _; #if defined(_CPLUSPLUS_) @@ -156706,6 +159563,25 @@ struct HardwareJoystickMap_Platform_Fallback_Base_Button { struct HardwareJoystickMap_Platform_Fallback_Base_Button__Fields fields; }; +struct __declspec(align(8)) HardwareJoystickMap_Platform_Fallback_Base_Elements__Fields { + struct HardwareJoystickMap_Platform_Fallback_Base_Axis__Array *axes; + struct HardwareJoystickMap_Platform_Fallback_Base_Button__Array *buttons; +}; + +struct HardwareJoystickMap_Platform_Fallback_Base_Elements { + struct HardwareJoystickMap_Platform_Fallback_Base_Elements__Class *klass; + MonitorData *monitor; + struct HardwareJoystickMap_Platform_Fallback_Base_Elements__Fields fields; +}; + +struct HardwareJoystickMap_Platform_Fallback_Base_CustomCalculationSourceData__Array { + struct HardwareJoystickMap_Platform_Fallback_Base_CustomCalculationSourceData__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct HardwareJoystickMap_Platform_Fallback_Base_CustomCalculationSourceData *vector[32]; +}; + struct UnityButton__Enum__Array { struct UnityButton__Enum__Array__Class *klass; MonitorData *monitor; @@ -156748,6 +159624,97 @@ struct HardwareJoystickMap_Platform_Custom { struct HardwareJoystickMap_Platform_Custom__Fields fields; }; +struct __declspec(align(8)) HardwareJoystickMap_Platform_Custom_CustomCalculationSourceData__Fields { + int32_t sourceType; + int32_t sourceAxis; + int32_t sourceButton; + int32_t sourceOtherAxis; + #if defined(_CPLUSPLUS_) + AxisRange__Enum sourceAxisRange; + #else + int32_t sourceAxisRange; + #endif + float axisDeadZone; + bool invert; + #if defined(_CPLUSPLUS_) + AxisCalibrationType__Enum axisCalibrationType; + #else + int32_t axisCalibrationType; + #endif + float axisZero; + float axisMin; + float axisMax; +}; + +struct HardwareJoystickMap_Platform_Custom_CustomCalculationSourceData { + struct HardwareJoystickMap_Platform_Custom_CustomCalculationSourceData__Class *klass; + MonitorData *monitor; + struct HardwareJoystickMap_Platform_Custom_CustomCalculationSourceData__Fields fields; +}; + +struct __declspec(align(8)) HardwareJoystickMap_Platform_Custom_Element__Fields { + int32_t elementIdentifier; + int32_t sourceType; + int32_t sourceAxis; + float axisDeadZone; + int32_t sourceButton; + struct CustomCalculation *customCalculation; + struct HardwareJoystickMap_Platform_Custom_CustomCalculationSourceData__Array *customCalculationSourceData; +}; + +struct HardwareJoystickMap_Platform_Custom_Element { + struct HardwareJoystickMap_Platform_Custom_Element__Class *klass; + MonitorData *monitor; + struct HardwareJoystickMap_Platform_Custom_Element__Fields fields; +}; + +struct HardwareJoystickMap_Platform_Custom_Axis__Fields { + struct HardwareJoystickMap_Platform_Custom_Element__Fields _; + bool invert; + #if defined(_CPLUSPLUS_) + AxisRange__Enum sourceAxisRange; + #else + int32_t sourceAxisRange; + #endif + #if defined(_CPLUSPLUS_) + Pole__Enum buttonAxisContribution; + #else + int32_t buttonAxisContribution; + #endif + bool calibrateAxis; + float axisZero; + float axisMin; + float axisMax; + struct HardwareJoystickMap_AxisCalibrationInfoEntry__Array *alternateCalibrations; + struct HardwareAxisInfo *axisInfo; +}; + +struct HardwareJoystickMap_Platform_Custom_Axis { + struct HardwareJoystickMap_Platform_Custom_Axis__Class *klass; + MonitorData *monitor; + struct HardwareJoystickMap_Platform_Custom_Axis__Fields fields; +}; + +struct HardwareJoystickMap_Platform_Custom_Button__Fields { + struct HardwareJoystickMap_Platform_Custom_Element__Fields _; + #if defined(_CPLUSPLUS_) + Pole__Enum sourceAxisPole; + #else + int32_t sourceAxisPole; + #endif + bool requireMultipleButtons; + struct Int32__Array *requiredButtons; + bool ignoreIfButtonsActive; + struct Int32__Array *ignoreIfButtonsActiveButtons; + struct HardwareButtonInfo *buttonInfo; +}; + +struct HardwareJoystickMap_Platform_Custom_Button { + struct HardwareJoystickMap_Platform_Custom_Button__Class *klass; + MonitorData *monitor; + struct HardwareJoystickMap_Platform_Custom_Button__Fields fields; +}; + struct HardwareJoystickMap_Platform_PS5_Base__Fields { struct HardwareJoystickMap_Platform_Custom__Fields _; struct HardwareJoystickMap_Platform_PS5_Base_MatchingCriteria *matchingCriteria; @@ -156816,6 +159783,26 @@ struct HardwareJoystickMap_Platform_Custom_Elements { MonitorData *monitor; }; +struct HardwareJoystickMap_Platform_XboxOne_Base_Axis__Fields { + struct HardwareJoystickMap_Platform_Custom_Axis__Fields _; +}; + +struct HardwareJoystickMap_Platform_XboxOne_Base_Axis { + struct HardwareJoystickMap_Platform_XboxOne_Base_Axis__Class *klass; + MonitorData *monitor; + struct HardwareJoystickMap_Platform_XboxOne_Base_Axis__Fields fields; +}; + +struct HardwareJoystickMap_Platform_XboxOne_Base_Button__Fields { + struct HardwareJoystickMap_Platform_Custom_Button__Fields _; +}; + +struct HardwareJoystickMap_Platform_XboxOne_Base_Button { + struct HardwareJoystickMap_Platform_XboxOne_Base_Button__Class *klass; + MonitorData *monitor; + struct HardwareJoystickMap_Platform_XboxOne_Base_Button__Fields fields; +}; + struct __declspec(align(8)) HardwareJoystickMap_Platform_XboxOne_Base_Elements__Fields { struct HardwareJoystickMap_Platform_XboxOne_Base_Axis__Array *axes; struct HardwareJoystickMap_Platform_XboxOne_Base_Button__Array *buttons; @@ -156827,87 +159814,6 @@ struct HardwareJoystickMap_Platform_XboxOne_Base_Elements { struct HardwareJoystickMap_Platform_XboxOne_Base_Elements__Fields fields; }; -struct __declspec(align(8)) HardwareJoystickMap_Platform_Custom_Element__Fields { - int32_t elementIdentifier; - int32_t sourceType; - int32_t sourceAxis; - float axisDeadZone; - int32_t sourceButton; - struct CustomCalculation *customCalculation; - struct HardwareJoystickMap_Platform_Custom_CustomCalculationSourceData__Array *customCalculationSourceData; -}; - -struct HardwareJoystickMap_Platform_Custom_Element { - struct HardwareJoystickMap_Platform_Custom_Element__Class *klass; - MonitorData *monitor; - struct HardwareJoystickMap_Platform_Custom_Element__Fields fields; -}; - -struct HardwareJoystickMap_Platform_Custom_Axis__Fields { - struct HardwareJoystickMap_Platform_Custom_Element__Fields _; - bool invert; - #if defined(_CPLUSPLUS_) - AxisRange__Enum sourceAxisRange; - #else - int32_t sourceAxisRange; - #endif - #if defined(_CPLUSPLUS_) - Pole__Enum buttonAxisContribution; - #else - int32_t buttonAxisContribution; - #endif - bool calibrateAxis; - float axisZero; - float axisMin; - float axisMax; - struct HardwareJoystickMap_AxisCalibrationInfoEntry__Array *alternateCalibrations; - struct HardwareAxisInfo *axisInfo; -}; - -struct HardwareJoystickMap_Platform_Custom_Axis { - struct HardwareJoystickMap_Platform_Custom_Axis__Class *klass; - MonitorData *monitor; - struct HardwareJoystickMap_Platform_Custom_Axis__Fields fields; -}; - -struct HardwareJoystickMap_Platform_XboxOne_Base_Axis__Fields { - struct HardwareJoystickMap_Platform_Custom_Axis__Fields _; -}; - -struct HardwareJoystickMap_Platform_XboxOne_Base_Axis { - struct HardwareJoystickMap_Platform_XboxOne_Base_Axis__Class *klass; - MonitorData *monitor; - struct HardwareJoystickMap_Platform_XboxOne_Base_Axis__Fields fields; -}; - -struct __declspec(align(8)) HardwareJoystickMap_Platform_Custom_CustomCalculationSourceData__Fields { - int32_t sourceType; - int32_t sourceAxis; - int32_t sourceButton; - int32_t sourceOtherAxis; - #if defined(_CPLUSPLUS_) - AxisRange__Enum sourceAxisRange; - #else - int32_t sourceAxisRange; - #endif - float axisDeadZone; - bool invert; - #if defined(_CPLUSPLUS_) - AxisCalibrationType__Enum axisCalibrationType; - #else - int32_t axisCalibrationType; - #endif - float axisZero; - float axisMin; - float axisMax; -}; - -struct HardwareJoystickMap_Platform_Custom_CustomCalculationSourceData { - struct HardwareJoystickMap_Platform_Custom_CustomCalculationSourceData__Class *klass; - MonitorData *monitor; - struct HardwareJoystickMap_Platform_Custom_CustomCalculationSourceData__Fields fields; -}; - struct HardwareJoystickMap_Platform_Custom_CustomCalculationSourceData__Array { struct HardwareJoystickMap_Platform_Custom_CustomCalculationSourceData__Array__Class *klass; MonitorData *monitor; @@ -156916,36 +159822,6 @@ struct HardwareJoystickMap_Platform_Custom_CustomCalculationSourceData__Array { struct HardwareJoystickMap_Platform_Custom_CustomCalculationSourceData *vector[32]; }; -struct HardwareJoystickMap_Platform_Custom_Button__Fields { - struct HardwareJoystickMap_Platform_Custom_Element__Fields _; - #if defined(_CPLUSPLUS_) - Pole__Enum sourceAxisPole; - #else - int32_t sourceAxisPole; - #endif - bool requireMultipleButtons; - struct Int32__Array *requiredButtons; - bool ignoreIfButtonsActive; - struct Int32__Array *ignoreIfButtonsActiveButtons; - struct HardwareButtonInfo *buttonInfo; -}; - -struct HardwareJoystickMap_Platform_Custom_Button { - struct HardwareJoystickMap_Platform_Custom_Button__Class *klass; - MonitorData *monitor; - struct HardwareJoystickMap_Platform_Custom_Button__Fields fields; -}; - -struct HardwareJoystickMap_Platform_XboxOne_Base_Button__Fields { - struct HardwareJoystickMap_Platform_Custom_Button__Fields _; -}; - -struct HardwareJoystickMap_Platform_XboxOne_Base_Button { - struct HardwareJoystickMap_Platform_XboxOne_Base_Button__Class *klass; - MonitorData *monitor; - struct HardwareJoystickMap_Platform_XboxOne_Base_Button__Fields fields; -}; - struct HardwareJoystickMap_Platform_XboxOne_Base_Axis__Array { struct HardwareJoystickMap_Platform_XboxOne_Base_Axis__Array__Class *klass; MonitorData *monitor; @@ -157000,6 +159876,26 @@ struct HardwareJoystickMap_Platform_PS5_Base_MatchingCriteria { struct HardwareJoystickMap_Platform_PS5_Base_MatchingCriteria__Fields fields; }; +struct HardwareJoystickMap_Platform_PS5_Base_Axis__Fields { + struct HardwareJoystickMap_Platform_Custom_Axis__Fields _; +}; + +struct HardwareJoystickMap_Platform_PS5_Base_Axis { + struct HardwareJoystickMap_Platform_PS5_Base_Axis__Class *klass; + MonitorData *monitor; + struct HardwareJoystickMap_Platform_PS5_Base_Axis__Fields fields; +}; + +struct HardwareJoystickMap_Platform_PS5_Base_Button__Fields { + struct HardwareJoystickMap_Platform_Custom_Button__Fields _; +}; + +struct HardwareJoystickMap_Platform_PS5_Base_Button { + struct HardwareJoystickMap_Platform_PS5_Base_Button__Class *klass; + MonitorData *monitor; + struct HardwareJoystickMap_Platform_PS5_Base_Button__Fields fields; +}; + struct __declspec(align(8)) HardwareJoystickMap_Platform_PS5_Base_Elements__Fields { struct HardwareJoystickMap_Platform_PS5_Base_Axis__Array *axes; struct HardwareJoystickMap_Platform_PS5_Base_Button__Array *buttons; @@ -157011,16 +159907,6 @@ struct HardwareJoystickMap_Platform_PS5_Base_Elements { struct HardwareJoystickMap_Platform_PS5_Base_Elements__Fields fields; }; -struct HardwareJoystickMap_Platform_PS5_Base_Axis__Fields { - struct HardwareJoystickMap_Platform_Custom_Axis__Fields _; -}; - -struct HardwareJoystickMap_Platform_PS5_Base_Axis { - struct HardwareJoystickMap_Platform_PS5_Base_Axis__Class *klass; - MonitorData *monitor; - struct HardwareJoystickMap_Platform_PS5_Base_Axis__Fields fields; -}; - struct HardwareJoystickMap_Platform_PS5_Base_Axis__Array { struct HardwareJoystickMap_Platform_PS5_Base_Axis__Array__Class *klass; MonitorData *monitor; @@ -157029,16 +159915,6 @@ struct HardwareJoystickMap_Platform_PS5_Base_Axis__Array { struct HardwareJoystickMap_Platform_PS5_Base_Axis *vector[32]; }; -struct HardwareJoystickMap_Platform_PS5_Base_Button__Fields { - struct HardwareJoystickMap_Platform_Custom_Button__Fields _; -}; - -struct HardwareJoystickMap_Platform_PS5_Base_Button { - struct HardwareJoystickMap_Platform_PS5_Base_Button__Class *klass; - MonitorData *monitor; - struct HardwareJoystickMap_Platform_PS5_Base_Button__Fields fields; -}; - struct HardwareJoystickMap_Platform_PS5_Base_Button__Array { struct HardwareJoystickMap_Platform_PS5_Base_Button__Array__Class *klass; MonitorData *monitor; @@ -157080,6 +159956,21 @@ struct HardwareJoystickMap_Platform_WebGL { struct HardwareJoystickMap_Platform_WebGL__Fields fields; }; +struct __declspec(align(8)) HardwareJoystickMap_Platform_WebGL_Base_MatchingCriteria_ClientInfo__Fields { + int32_t browser; + struct String *browserVersionMin; + struct String *browserVersionMax; + int32_t os; + struct String *osVersionMin; + struct String *osVersionMax; +}; + +struct HardwareJoystickMap_Platform_WebGL_Base_MatchingCriteria_ClientInfo { + struct HardwareJoystickMap_Platform_WebGL_Base_MatchingCriteria_ClientInfo__Class *klass; + MonitorData *monitor; + struct HardwareJoystickMap_Platform_WebGL_Base_MatchingCriteria_ClientInfo__Fields fields; +}; + struct HardwareJoystickMap_Platform_WebGL_Base_MatchingCriteria__Fields { struct HardwareJoystickMap_Platform_Custom_MatchingCriteria__Fields _; bool productName_useRegex; @@ -157104,21 +159995,6 @@ struct HardwareJoystickMap_MatchingCriteria_Base_ElementCount_Base__Array { struct HardwareJoystickMap_MatchingCriteria_Base_ElementCount_Base *vector[32]; }; -struct __declspec(align(8)) HardwareJoystickMap_Platform_WebGL_Base_MatchingCriteria_ClientInfo__Fields { - int32_t browser; - struct String *browserVersionMin; - struct String *browserVersionMax; - int32_t os; - struct String *osVersionMin; - struct String *osVersionMax; -}; - -struct HardwareJoystickMap_Platform_WebGL_Base_MatchingCriteria_ClientInfo { - struct HardwareJoystickMap_Platform_WebGL_Base_MatchingCriteria_ClientInfo__Class *klass; - MonitorData *monitor; - struct HardwareJoystickMap_Platform_WebGL_Base_MatchingCriteria_ClientInfo__Fields fields; -}; - struct HardwareJoystickMap_Platform_WebGL_Base_MatchingCriteria_ClientInfo__Array { struct HardwareJoystickMap_Platform_WebGL_Base_MatchingCriteria_ClientInfo__Array__Class *klass; MonitorData *monitor; @@ -157127,6 +160003,26 @@ struct HardwareJoystickMap_Platform_WebGL_Base_MatchingCriteria_ClientInfo__Arra struct HardwareJoystickMap_Platform_WebGL_Base_MatchingCriteria_ClientInfo *vector[32]; }; +struct HardwareJoystickMap_Platform_WebGL_Base_Axis__Fields { + struct HardwareJoystickMap_Platform_Custom_Axis__Fields _; +}; + +struct HardwareJoystickMap_Platform_WebGL_Base_Axis { + struct HardwareJoystickMap_Platform_WebGL_Base_Axis__Class *klass; + MonitorData *monitor; + struct HardwareJoystickMap_Platform_WebGL_Base_Axis__Fields fields; +}; + +struct HardwareJoystickMap_Platform_WebGL_Base_Button__Fields { + struct HardwareJoystickMap_Platform_Custom_Button__Fields _; +}; + +struct HardwareJoystickMap_Platform_WebGL_Base_Button { + struct HardwareJoystickMap_Platform_WebGL_Base_Button__Class *klass; + MonitorData *monitor; + struct HardwareJoystickMap_Platform_WebGL_Base_Button__Fields fields; +}; + struct __declspec(align(8)) HardwareJoystickMap_Platform_WebGL_Base_Elements__Fields { struct HardwareJoystickMap_Platform_WebGL_Base_Axis__Array *axes; struct HardwareJoystickMap_Platform_WebGL_Base_Button__Array *buttons; @@ -157138,16 +160034,6 @@ struct HardwareJoystickMap_Platform_WebGL_Base_Elements { struct HardwareJoystickMap_Platform_WebGL_Base_Elements__Fields fields; }; -struct HardwareJoystickMap_Platform_WebGL_Base_Axis__Fields { - struct HardwareJoystickMap_Platform_Custom_Axis__Fields _; -}; - -struct HardwareJoystickMap_Platform_WebGL_Base_Axis { - struct HardwareJoystickMap_Platform_WebGL_Base_Axis__Class *klass; - MonitorData *monitor; - struct HardwareJoystickMap_Platform_WebGL_Base_Axis__Fields fields; -}; - struct HardwareJoystickMap_Platform_WebGL_Base_Axis__Array { struct HardwareJoystickMap_Platform_WebGL_Base_Axis__Array__Class *klass; MonitorData *monitor; @@ -157156,16 +160042,6 @@ struct HardwareJoystickMap_Platform_WebGL_Base_Axis__Array { struct HardwareJoystickMap_Platform_WebGL_Base_Axis *vector[32]; }; -struct HardwareJoystickMap_Platform_WebGL_Base_Button__Fields { - struct HardwareJoystickMap_Platform_Custom_Button__Fields _; -}; - -struct HardwareJoystickMap_Platform_WebGL_Base_Button { - struct HardwareJoystickMap_Platform_WebGL_Base_Button__Class *klass; - MonitorData *monitor; - struct HardwareJoystickMap_Platform_WebGL_Base_Button__Fields fields; -}; - struct HardwareJoystickMap_Platform_WebGL_Base_Button__Array { struct HardwareJoystickMap_Platform_WebGL_Base_Button__Array__Class *klass; MonitorData *monitor; @@ -157227,6 +160103,17 @@ struct HardwareJoystickMap_Platform_GameCore { struct HardwareJoystickMap_Platform_GameCore__Fields fields; }; +struct __declspec(align(8)) HardwareJoystickMap_VidPid__Fields { + int32_t vendorId; + int32_t productId; +}; + +struct HardwareJoystickMap_VidPid { + struct HardwareJoystickMap_VidPid__Class *klass; + MonitorData *monitor; + struct HardwareJoystickMap_VidPid__Fields fields; +}; + #if defined(_CPLUSPLUS_) enum class HardwareJoystickMap_Platform_GameCore_Base_DeviceType__Enum : int32_t { None = 0x00000000, @@ -157313,17 +160200,6 @@ struct HardwareJoystickMap_Platform_GameCore_Base_MatchingCriteria { struct HardwareJoystickMap_Platform_GameCore_Base_MatchingCriteria__Fields fields; }; -struct __declspec(align(8)) HardwareJoystickMap_VidPid__Fields { - int32_t vendorId; - int32_t productId; -}; - -struct HardwareJoystickMap_VidPid { - struct HardwareJoystickMap_VidPid__Class *klass; - MonitorData *monitor; - struct HardwareJoystickMap_VidPid__Fields fields; -}; - struct HardwareJoystickMap_VidPid__Array { struct HardwareJoystickMap_VidPid__Array__Class *klass; MonitorData *monitor; @@ -157332,17 +160208,6 @@ struct HardwareJoystickMap_VidPid__Array { struct HardwareJoystickMap_VidPid *vector[32]; }; -struct __declspec(align(8)) HardwareJoystickMap_Platform_GameCore_Base_Elements__Fields { - struct HardwareJoystickMap_Platform_GameCore_Base_Axis__Array *axes; - struct HardwareJoystickMap_Platform_GameCore_Base_Button__Array *buttons; -}; - -struct HardwareJoystickMap_Platform_GameCore_Base_Elements { - struct HardwareJoystickMap_Platform_GameCore_Base_Elements__Class *klass; - MonitorData *monitor; - struct HardwareJoystickMap_Platform_GameCore_Base_Elements__Fields fields; -}; - struct HardwareJoystickMap_Platform_GameCore_Base_Axis__Fields { struct HardwareJoystickMap_Platform_Custom_Axis__Fields _; int32_t sourceHat; @@ -157369,14 +160234,6 @@ struct HardwareJoystickMap_Platform_GameCore_Base_Axis { struct HardwareJoystickMap_Platform_GameCore_Base_Axis__Fields fields; }; -struct HardwareJoystickMap_Platform_GameCore_Base_Axis__Array { - struct HardwareJoystickMap_Platform_GameCore_Base_Axis__Array__Class *klass; - MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - struct HardwareJoystickMap_Platform_GameCore_Base_Axis *vector[32]; -}; - struct HardwareJoystickMap_Platform_GameCore_Base_Button__Fields { struct HardwareJoystickMap_Platform_Custom_Button__Fields _; int32_t sourceHat; @@ -157398,6 +160255,25 @@ struct HardwareJoystickMap_Platform_GameCore_Base_Button { struct HardwareJoystickMap_Platform_GameCore_Base_Button__Fields fields; }; +struct __declspec(align(8)) HardwareJoystickMap_Platform_GameCore_Base_Elements__Fields { + struct HardwareJoystickMap_Platform_GameCore_Base_Axis__Array *axes; + struct HardwareJoystickMap_Platform_GameCore_Base_Button__Array *buttons; +}; + +struct HardwareJoystickMap_Platform_GameCore_Base_Elements { + struct HardwareJoystickMap_Platform_GameCore_Base_Elements__Class *klass; + MonitorData *monitor; + struct HardwareJoystickMap_Platform_GameCore_Base_Elements__Fields fields; +}; + +struct HardwareJoystickMap_Platform_GameCore_Base_Axis__Array { + struct HardwareJoystickMap_Platform_GameCore_Base_Axis__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct HardwareJoystickMap_Platform_GameCore_Base_Axis *vector[32]; +}; + struct HardwareJoystickMap_Platform_GameCore_Base_Button__Array { struct HardwareJoystickMap_Platform_GameCore_Base_Button__Array__Class *klass; MonitorData *monitor; @@ -157451,6 +160327,26 @@ struct HardwareJoystickMap_Platform_PS4_Base_MatchingCriteria { struct HardwareJoystickMap_Platform_PS4_Base_MatchingCriteria__Fields fields; }; +struct HardwareJoystickMap_Platform_PS4_Base_Axis__Fields { + struct HardwareJoystickMap_Platform_Custom_Axis__Fields _; +}; + +struct HardwareJoystickMap_Platform_PS4_Base_Axis { + struct HardwareJoystickMap_Platform_PS4_Base_Axis__Class *klass; + MonitorData *monitor; + struct HardwareJoystickMap_Platform_PS4_Base_Axis__Fields fields; +}; + +struct HardwareJoystickMap_Platform_PS4_Base_Button__Fields { + struct HardwareJoystickMap_Platform_Custom_Button__Fields _; +}; + +struct HardwareJoystickMap_Platform_PS4_Base_Button { + struct HardwareJoystickMap_Platform_PS4_Base_Button__Class *klass; + MonitorData *monitor; + struct HardwareJoystickMap_Platform_PS4_Base_Button__Fields fields; +}; + struct __declspec(align(8)) HardwareJoystickMap_Platform_PS4_Base_Elements__Fields { struct HardwareJoystickMap_Platform_PS4_Base_Axis__Array *axes; struct HardwareJoystickMap_Platform_PS4_Base_Button__Array *buttons; @@ -157462,16 +160358,6 @@ struct HardwareJoystickMap_Platform_PS4_Base_Elements { struct HardwareJoystickMap_Platform_PS4_Base_Elements__Fields fields; }; -struct HardwareJoystickMap_Platform_PS4_Base_Axis__Fields { - struct HardwareJoystickMap_Platform_Custom_Axis__Fields _; -}; - -struct HardwareJoystickMap_Platform_PS4_Base_Axis { - struct HardwareJoystickMap_Platform_PS4_Base_Axis__Class *klass; - MonitorData *monitor; - struct HardwareJoystickMap_Platform_PS4_Base_Axis__Fields fields; -}; - struct HardwareJoystickMap_Platform_PS4_Base_Axis__Array { struct HardwareJoystickMap_Platform_PS4_Base_Axis__Array__Class *klass; MonitorData *monitor; @@ -157480,16 +160366,6 @@ struct HardwareJoystickMap_Platform_PS4_Base_Axis__Array { struct HardwareJoystickMap_Platform_PS4_Base_Axis *vector[32]; }; -struct HardwareJoystickMap_Platform_PS4_Base_Button__Fields { - struct HardwareJoystickMap_Platform_Custom_Button__Fields _; -}; - -struct HardwareJoystickMap_Platform_PS4_Base_Button { - struct HardwareJoystickMap_Platform_PS4_Base_Button__Class *klass; - MonitorData *monitor; - struct HardwareJoystickMap_Platform_PS4_Base_Button__Fields fields; -}; - struct HardwareJoystickMap_Platform_PS4_Base_Button__Array { struct HardwareJoystickMap_Platform_PS4_Base_Button__Array__Class *klass; MonitorData *monitor; @@ -157543,6 +160419,26 @@ struct HardwareJoystickMap_Platform_NintendoSwitch_Base_MatchingCriteria { struct HardwareJoystickMap_Platform_NintendoSwitch_Base_MatchingCriteria__Fields fields; }; +struct HardwareJoystickMap_Platform_NintendoSwitch_Base_Axis__Fields { + struct HardwareJoystickMap_Platform_Custom_Axis__Fields _; +}; + +struct HardwareJoystickMap_Platform_NintendoSwitch_Base_Axis { + struct HardwareJoystickMap_Platform_NintendoSwitch_Base_Axis__Class *klass; + MonitorData *monitor; + struct HardwareJoystickMap_Platform_NintendoSwitch_Base_Axis__Fields fields; +}; + +struct HardwareJoystickMap_Platform_NintendoSwitch_Base_Button__Fields { + struct HardwareJoystickMap_Platform_Custom_Button__Fields _; +}; + +struct HardwareJoystickMap_Platform_NintendoSwitch_Base_Button { + struct HardwareJoystickMap_Platform_NintendoSwitch_Base_Button__Class *klass; + MonitorData *monitor; + struct HardwareJoystickMap_Platform_NintendoSwitch_Base_Button__Fields fields; +}; + struct __declspec(align(8)) HardwareJoystickMap_Platform_NintendoSwitch_Base_Elements__Fields { struct HardwareJoystickMap_Platform_NintendoSwitch_Base_Axis__Array *axes; struct HardwareJoystickMap_Platform_NintendoSwitch_Base_Button__Array *buttons; @@ -157554,16 +160450,6 @@ struct HardwareJoystickMap_Platform_NintendoSwitch_Base_Elements { struct HardwareJoystickMap_Platform_NintendoSwitch_Base_Elements__Fields fields; }; -struct HardwareJoystickMap_Platform_NintendoSwitch_Base_Axis__Fields { - struct HardwareJoystickMap_Platform_Custom_Axis__Fields _; -}; - -struct HardwareJoystickMap_Platform_NintendoSwitch_Base_Axis { - struct HardwareJoystickMap_Platform_NintendoSwitch_Base_Axis__Class *klass; - MonitorData *monitor; - struct HardwareJoystickMap_Platform_NintendoSwitch_Base_Axis__Fields fields; -}; - struct HardwareJoystickMap_Platform_NintendoSwitch_Base_Axis__Array { struct HardwareJoystickMap_Platform_NintendoSwitch_Base_Axis__Array__Class *klass; MonitorData *monitor; @@ -157572,16 +160458,6 @@ struct HardwareJoystickMap_Platform_NintendoSwitch_Base_Axis__Array { struct HardwareJoystickMap_Platform_NintendoSwitch_Base_Axis *vector[32]; }; -struct HardwareJoystickMap_Platform_NintendoSwitch_Base_Button__Fields { - struct HardwareJoystickMap_Platform_Custom_Button__Fields _; -}; - -struct HardwareJoystickMap_Platform_NintendoSwitch_Base_Button { - struct HardwareJoystickMap_Platform_NintendoSwitch_Base_Button__Class *klass; - MonitorData *monitor; - struct HardwareJoystickMap_Platform_NintendoSwitch_Base_Button__Fields fields; -}; - struct HardwareJoystickMap_Platform_NintendoSwitch_Base_Button__Array { struct HardwareJoystickMap_Platform_NintendoSwitch_Base_Button__Array__Class *klass; MonitorData *monitor; @@ -157636,6 +160512,26 @@ struct HardwareJoystickMap_Platform_Stadia_Base_MatchingCriteria { struct HardwareJoystickMap_Platform_Stadia_Base_MatchingCriteria__Fields fields; }; +struct HardwareJoystickMap_Platform_Stadia_Base_Axis__Fields { + struct HardwareJoystickMap_Platform_Custom_Axis__Fields _; +}; + +struct HardwareJoystickMap_Platform_Stadia_Base_Axis { + struct HardwareJoystickMap_Platform_Stadia_Base_Axis__Class *klass; + MonitorData *monitor; + struct HardwareJoystickMap_Platform_Stadia_Base_Axis__Fields fields; +}; + +struct HardwareJoystickMap_Platform_Stadia_Base_Button__Fields { + struct HardwareJoystickMap_Platform_Custom_Button__Fields _; +}; + +struct HardwareJoystickMap_Platform_Stadia_Base_Button { + struct HardwareJoystickMap_Platform_Stadia_Base_Button__Class *klass; + MonitorData *monitor; + struct HardwareJoystickMap_Platform_Stadia_Base_Button__Fields fields; +}; + struct __declspec(align(8)) HardwareJoystickMap_Platform_Stadia_Base_Elements__Fields { struct HardwareJoystickMap_Platform_Stadia_Base_Axis__Array *axes; struct HardwareJoystickMap_Platform_Stadia_Base_Button__Array *buttons; @@ -157647,16 +160543,6 @@ struct HardwareJoystickMap_Platform_Stadia_Base_Elements { struct HardwareJoystickMap_Platform_Stadia_Base_Elements__Fields fields; }; -struct HardwareJoystickMap_Platform_Stadia_Base_Axis__Fields { - struct HardwareJoystickMap_Platform_Custom_Axis__Fields _; -}; - -struct HardwareJoystickMap_Platform_Stadia_Base_Axis { - struct HardwareJoystickMap_Platform_Stadia_Base_Axis__Class *klass; - MonitorData *monitor; - struct HardwareJoystickMap_Platform_Stadia_Base_Axis__Fields fields; -}; - struct HardwareJoystickMap_Platform_Stadia_Base_Axis__Array { struct HardwareJoystickMap_Platform_Stadia_Base_Axis__Array__Class *klass; MonitorData *monitor; @@ -157665,16 +160551,6 @@ struct HardwareJoystickMap_Platform_Stadia_Base_Axis__Array { struct HardwareJoystickMap_Platform_Stadia_Base_Axis *vector[32]; }; -struct HardwareJoystickMap_Platform_Stadia_Base_Button__Fields { - struct HardwareJoystickMap_Platform_Custom_Button__Fields _; -}; - -struct HardwareJoystickMap_Platform_Stadia_Base_Button { - struct HardwareJoystickMap_Platform_Stadia_Base_Button__Class *klass; - MonitorData *monitor; - struct HardwareJoystickMap_Platform_Stadia_Base_Button__Fields fields; -}; - struct HardwareJoystickMap_Platform_Stadia_Base_Button__Array { struct HardwareJoystickMap_Platform_Stadia_Base_Button__Array__Class *klass; MonitorData *monitor; @@ -157730,17 +160606,6 @@ struct HardwareJoystickMap_Platform_InternalDriver_Base_MatchingCriteria { struct HardwareJoystickMap_Platform_InternalDriver_Base_MatchingCriteria__Fields fields; }; -struct __declspec(align(8)) HardwareJoystickMap_Platform_InternalDriver_Base_Elements__Fields { - struct HardwareJoystickMap_Platform_InternalDriver_Base_Axis__Array *axes; - struct HardwareJoystickMap_Platform_InternalDriver_Base_Button__Array *buttons; -}; - -struct HardwareJoystickMap_Platform_InternalDriver_Base_Elements { - struct HardwareJoystickMap_Platform_InternalDriver_Base_Elements__Class *klass; - MonitorData *monitor; - struct HardwareJoystickMap_Platform_InternalDriver_Base_Elements__Fields fields; -}; - struct HardwareJoystickMap_Platform_InternalDriver_Base_Axis__Fields { struct HardwareJoystickMap_Platform_Custom_Axis__Fields _; int32_t sourceHat; @@ -157767,14 +160632,6 @@ struct HardwareJoystickMap_Platform_InternalDriver_Base_Axis { struct HardwareJoystickMap_Platform_InternalDriver_Base_Axis__Fields fields; }; -struct HardwareJoystickMap_Platform_InternalDriver_Base_Axis__Array { - struct HardwareJoystickMap_Platform_InternalDriver_Base_Axis__Array__Class *klass; - MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - struct HardwareJoystickMap_Platform_InternalDriver_Base_Axis *vector[32]; -}; - struct HardwareJoystickMap_Platform_InternalDriver_Base_Button__Fields { struct HardwareJoystickMap_Platform_Custom_Button__Fields _; int32_t sourceHat; @@ -157796,6 +160653,25 @@ struct HardwareJoystickMap_Platform_InternalDriver_Base_Button { struct HardwareJoystickMap_Platform_InternalDriver_Base_Button__Fields fields; }; +struct __declspec(align(8)) HardwareJoystickMap_Platform_InternalDriver_Base_Elements__Fields { + struct HardwareJoystickMap_Platform_InternalDriver_Base_Axis__Array *axes; + struct HardwareJoystickMap_Platform_InternalDriver_Base_Button__Array *buttons; +}; + +struct HardwareJoystickMap_Platform_InternalDriver_Base_Elements { + struct HardwareJoystickMap_Platform_InternalDriver_Base_Elements__Class *klass; + MonitorData *monitor; + struct HardwareJoystickMap_Platform_InternalDriver_Base_Elements__Fields fields; +}; + +struct HardwareJoystickMap_Platform_InternalDriver_Base_Axis__Array { + struct HardwareJoystickMap_Platform_InternalDriver_Base_Axis__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct HardwareJoystickMap_Platform_InternalDriver_Base_Axis *vector[32]; +}; + struct HardwareJoystickMap_Platform_InternalDriver_Base_Button__Array { struct HardwareJoystickMap_Platform_InternalDriver_Base_Button__Array__Class *klass; MonitorData *monitor; @@ -157853,17 +160729,6 @@ struct HardwareJoystickMap_Platform_SDL2_Base_MatchingCriteria { struct HardwareJoystickMap_Platform_SDL2_Base_MatchingCriteria__Fields fields; }; -struct __declspec(align(8)) HardwareJoystickMap_Platform_SDL2_Base_Elements__Fields { - struct HardwareJoystickMap_Platform_SDL2_Base_Axis__Array *axes; - struct HardwareJoystickMap_Platform_SDL2_Base_Button__Array *buttons; -}; - -struct HardwareJoystickMap_Platform_SDL2_Base_Elements { - struct HardwareJoystickMap_Platform_SDL2_Base_Elements__Class *klass; - MonitorData *monitor; - struct HardwareJoystickMap_Platform_SDL2_Base_Elements__Fields fields; -}; - struct HardwareJoystickMap_Platform_SDL2_Base_Element { struct HardwareJoystickMap_Platform_SDL2_Base_Element__Class *klass; MonitorData *monitor; @@ -157954,6 +160819,17 @@ struct HardwareJoystickMap_Platform_SDL2_Base_Button { struct HardwareJoystickMap_Platform_SDL2_Base_Button__Fields fields; }; +struct __declspec(align(8)) HardwareJoystickMap_Platform_SDL2_Base_Elements__Fields { + struct HardwareJoystickMap_Platform_SDL2_Base_Axis__Array *axes; + struct HardwareJoystickMap_Platform_SDL2_Base_Button__Array *buttons; +}; + +struct HardwareJoystickMap_Platform_SDL2_Base_Elements { + struct HardwareJoystickMap_Platform_SDL2_Base_Elements__Class *klass; + MonitorData *monitor; + struct HardwareJoystickMap_Platform_SDL2_Base_Elements__Fields fields; +}; + struct HardwareJoystickMap_Platform_SDL2_Base_Axis__Array { struct HardwareJoystickMap_Platform_SDL2_Base_Axis__Array__Class *klass; MonitorData *monitor; @@ -157978,6 +160854,53 @@ struct HardwareJoystickMap_Platform_SDL2_Base__Array { struct HardwareJoystickMap_Platform_SDL2_Base *vector[32]; }; +#if defined(_CPLUSPLUS_) +enum class HardwareJoystickMap_Platform_AppleGCController_Base_AppleGCControllerElementIdentifierCompoundElements__Enum : int32_t { + None = 0x00000000, + IndexedStick = 0x0000001f, + IndexedDPad = 0x00000020, + LeftStick = 0x00000021, + RightStick = 0x00000022, + DPad = 0x00000023, +}; + +#else +enum HardwareJoystickMap_Platform_AppleGCController_Base_AppleGCControllerElementIdentifierCompoundElements__Enum { + HardwareJoystickMap_Platform_AppleGCController_Base_AppleGCControllerElementIdentifierCompoundElements__Enum_None = 0x00000000, + HardwareJoystickMap_Platform_AppleGCController_Base_AppleGCControllerElementIdentifierCompoundElements__Enum_IndexedStick = 0x0000001f, + HardwareJoystickMap_Platform_AppleGCController_Base_AppleGCControllerElementIdentifierCompoundElements__Enum_IndexedDPad = 0x00000020, + HardwareJoystickMap_Platform_AppleGCController_Base_AppleGCControllerElementIdentifierCompoundElements__Enum_LeftStick = 0x00000021, + HardwareJoystickMap_Platform_AppleGCController_Base_AppleGCControllerElementIdentifierCompoundElements__Enum_RightStick = 0x00000022, + HardwareJoystickMap_Platform_AppleGCController_Base_AppleGCControllerElementIdentifierCompoundElements__Enum_DPad = 0x00000023, +}; + +#endif +struct HardwareJoystickMap_Platform_AppleGCController_Base_AppleGCControllerElementIdentifierCompoundElements__Enum__Boxed { + struct HardwareJoystickMap_Platform_AppleGCController_Base_AppleGCControllerElementIdentifierCompoundElements__Enum__Class *klass; + MonitorData *monitor; + #if defined(_CPLUSPLUS_) + HardwareJoystickMap_Platform_AppleGCController_Base_AppleGCControllerElementIdentifierCompoundElements__Enum value; + #else + int32_t value; + #endif +}; + +struct __declspec(align(8)) HardwareJoystickMap_Platform_AppleGCController_Base_CompoundElement__Fields { + int32_t elementIdentifier; + int32_t sourceElementIndex; + #if defined(_CPLUSPLUS_) + HardwareJoystickMap_Platform_AppleGCController_Base_AppleGCControllerElementIdentifierCompoundElements__Enum sourceElementId; + #else + int32_t sourceElementId; + #endif +}; + +struct HardwareJoystickMap_Platform_AppleGCController_Base_CompoundElement { + struct HardwareJoystickMap_Platform_AppleGCController_Base_CompoundElement__Class *klass; + MonitorData *monitor; + struct HardwareJoystickMap_Platform_AppleGCController_Base_CompoundElement__Fields fields; +}; + struct HardwareJoystickMap_Platform_AppleGCController_Base__Fields { struct HardwareJoystickMap_Platform_Custom__Fields _; struct HardwareJoystickMap_Platform_AppleGCController_Base_MatchingCriteria *matchingCriteria; @@ -158034,24 +160957,6 @@ struct HardwareJoystickMap_Platform_AppleGCController_Base_AppleGCControllerProf #endif }; -struct HardwareJoystickMap_Platform_AppleGCController_Base_MatchingCriteria__Fields { - struct HardwareJoystickMap_Platform_Custom_MatchingCriteria__Fields _; - bool productCategory_useRegex; - struct String__Array *productCategory; - #if defined(_CPLUSPLUS_) - HardwareJoystickMap_Platform_AppleGCController_Base_AppleGCControllerProfileTypeFlags__Enum primaryProfileType; - #else - int32_t primaryProfileType; - #endif - struct HardwareJoystickMap_Platform_AppleGCController_Base_AppleGCControllerProfileSubType__Enum__Array *profileSubTypes; -}; - -struct HardwareJoystickMap_Platform_AppleGCController_Base_MatchingCriteria { - struct HardwareJoystickMap_Platform_AppleGCController_Base_MatchingCriteria__Class *klass; - MonitorData *monitor; - struct HardwareJoystickMap_Platform_AppleGCController_Base_MatchingCriteria__Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class HardwareJoystickMap_Platform_AppleGCController_Base_AppleGCControllerProfileSubType__Enum : int32_t { None = 0x00000000, @@ -158081,6 +160986,24 @@ struct HardwareJoystickMap_Platform_AppleGCController_Base_AppleGCControllerProf #endif }; +struct HardwareJoystickMap_Platform_AppleGCController_Base_MatchingCriteria__Fields { + struct HardwareJoystickMap_Platform_Custom_MatchingCriteria__Fields _; + bool productCategory_useRegex; + struct String__Array *productCategory; + #if defined(_CPLUSPLUS_) + HardwareJoystickMap_Platform_AppleGCController_Base_AppleGCControllerProfileTypeFlags__Enum primaryProfileType; + #else + int32_t primaryProfileType; + #endif + struct HardwareJoystickMap_Platform_AppleGCController_Base_AppleGCControllerProfileSubType__Enum__Array *profileSubTypes; +}; + +struct HardwareJoystickMap_Platform_AppleGCController_Base_MatchingCriteria { + struct HardwareJoystickMap_Platform_AppleGCController_Base_MatchingCriteria__Class *klass; + MonitorData *monitor; + struct HardwareJoystickMap_Platform_AppleGCController_Base_MatchingCriteria__Fields fields; +}; + struct HardwareJoystickMap_Platform_AppleGCController_Base_AppleGCControllerProfileSubType__Enum__Array { struct HardwareJoystickMap_Platform_AppleGCController_Base_AppleGCControllerProfileSubType__Enum__Array__Class *klass; MonitorData *monitor; @@ -158089,18 +161012,6 @@ struct HardwareJoystickMap_Platform_AppleGCController_Base_AppleGCControllerProf HardwareJoystickMap_Platform_AppleGCController_Base_AppleGCControllerProfileSubType__Enum vector[32]; }; -struct __declspec(align(8)) HardwareJoystickMap_Platform_AppleGCController_Base_Elements__Fields { - struct HardwareJoystickMap_Platform_AppleGCController_Base_Axis__Array *axes; - struct HardwareJoystickMap_Platform_AppleGCController_Base_Button__Array *buttons; - struct HardwareJoystickMap_Platform_AppleGCController_Base_CompoundElement__Array *compoundElements; -}; - -struct HardwareJoystickMap_Platform_AppleGCController_Base_Elements { - struct HardwareJoystickMap_Platform_AppleGCController_Base_Elements__Class *klass; - MonitorData *monitor; - struct HardwareJoystickMap_Platform_AppleGCController_Base_Elements__Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class HardwareJoystickMap_Platform_AppleGCController_Base_AppleGCControllerElementIdentifier__Enum : int32_t { None = 0x00000000, @@ -158197,14 +161108,6 @@ struct HardwareJoystickMap_Platform_AppleGCController_Base_Axis { struct HardwareJoystickMap_Platform_AppleGCController_Base_Axis__Fields fields; }; -struct HardwareJoystickMap_Platform_AppleGCController_Base_Axis__Array { - struct HardwareJoystickMap_Platform_AppleGCController_Base_Axis__Array__Class *klass; - MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - struct HardwareJoystickMap_Platform_AppleGCController_Base_Axis *vector[32]; -}; - struct HardwareJoystickMap_Platform_AppleGCController_Base_Button__Fields { struct HardwareJoystickMap_Platform_Custom_Button__Fields _; #if defined(_CPLUSPLUS_) @@ -158220,6 +161123,26 @@ struct HardwareJoystickMap_Platform_AppleGCController_Base_Button { struct HardwareJoystickMap_Platform_AppleGCController_Base_Button__Fields fields; }; +struct __declspec(align(8)) HardwareJoystickMap_Platform_AppleGCController_Base_Elements__Fields { + struct HardwareJoystickMap_Platform_AppleGCController_Base_Axis__Array *axes; + struct HardwareJoystickMap_Platform_AppleGCController_Base_Button__Array *buttons; + struct HardwareJoystickMap_Platform_AppleGCController_Base_CompoundElement__Array *compoundElements; +}; + +struct HardwareJoystickMap_Platform_AppleGCController_Base_Elements { + struct HardwareJoystickMap_Platform_AppleGCController_Base_Elements__Class *klass; + MonitorData *monitor; + struct HardwareJoystickMap_Platform_AppleGCController_Base_Elements__Fields fields; +}; + +struct HardwareJoystickMap_Platform_AppleGCController_Base_Axis__Array { + struct HardwareJoystickMap_Platform_AppleGCController_Base_Axis__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct HardwareJoystickMap_Platform_AppleGCController_Base_Axis *vector[32]; +}; + struct HardwareJoystickMap_Platform_AppleGCController_Base_Button__Array { struct HardwareJoystickMap_Platform_AppleGCController_Base_Button__Array__Class *klass; MonitorData *monitor; @@ -158228,53 +161151,6 @@ struct HardwareJoystickMap_Platform_AppleGCController_Base_Button__Array { struct HardwareJoystickMap_Platform_AppleGCController_Base_Button *vector[32]; }; -#if defined(_CPLUSPLUS_) -enum class HardwareJoystickMap_Platform_AppleGCController_Base_AppleGCControllerElementIdentifierCompoundElements__Enum : int32_t { - None = 0x00000000, - IndexedStick = 0x0000001f, - IndexedDPad = 0x00000020, - LeftStick = 0x00000021, - RightStick = 0x00000022, - DPad = 0x00000023, -}; - -#else -enum HardwareJoystickMap_Platform_AppleGCController_Base_AppleGCControllerElementIdentifierCompoundElements__Enum { - HardwareJoystickMap_Platform_AppleGCController_Base_AppleGCControllerElementIdentifierCompoundElements__Enum_None = 0x00000000, - HardwareJoystickMap_Platform_AppleGCController_Base_AppleGCControllerElementIdentifierCompoundElements__Enum_IndexedStick = 0x0000001f, - HardwareJoystickMap_Platform_AppleGCController_Base_AppleGCControllerElementIdentifierCompoundElements__Enum_IndexedDPad = 0x00000020, - HardwareJoystickMap_Platform_AppleGCController_Base_AppleGCControllerElementIdentifierCompoundElements__Enum_LeftStick = 0x00000021, - HardwareJoystickMap_Platform_AppleGCController_Base_AppleGCControllerElementIdentifierCompoundElements__Enum_RightStick = 0x00000022, - HardwareJoystickMap_Platform_AppleGCController_Base_AppleGCControllerElementIdentifierCompoundElements__Enum_DPad = 0x00000023, -}; - -#endif -struct HardwareJoystickMap_Platform_AppleGCController_Base_AppleGCControllerElementIdentifierCompoundElements__Enum__Boxed { - struct HardwareJoystickMap_Platform_AppleGCController_Base_AppleGCControllerElementIdentifierCompoundElements__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - HardwareJoystickMap_Platform_AppleGCController_Base_AppleGCControllerElementIdentifierCompoundElements__Enum value; - #else - int32_t value; - #endif -}; - -struct __declspec(align(8)) HardwareJoystickMap_Platform_AppleGCController_Base_CompoundElement__Fields { - int32_t elementIdentifier; - int32_t sourceElementIndex; - #if defined(_CPLUSPLUS_) - HardwareJoystickMap_Platform_AppleGCController_Base_AppleGCControllerElementIdentifierCompoundElements__Enum sourceElementId; - #else - int32_t sourceElementId; - #endif -}; - -struct HardwareJoystickMap_Platform_AppleGCController_Base_CompoundElement { - struct HardwareJoystickMap_Platform_AppleGCController_Base_CompoundElement__Class *klass; - MonitorData *monitor; - struct HardwareJoystickMap_Platform_AppleGCController_Base_CompoundElement__Fields fields; -}; - struct HardwareJoystickMap_Platform_AppleGCController_Base_CompoundElement__Array { struct HardwareJoystickMap_Platform_AppleGCController_Base_CompoundElement__Array__Class *klass; MonitorData *monitor; @@ -158309,110 +161185,6 @@ struct HardwareJoystickMap__Array { struct HardwareJoystickMap *vector[32]; }; -struct HardwareControllerTemplateMap__Fields { - struct ScriptableObject__Fields _; -}; - -struct HardwareControllerTemplateMap { - struct HardwareControllerTemplateMap__Class *klass; - MonitorData *monitor; - struct HardwareControllerTemplateMap__Fields fields; -}; - -struct HardwareJoystickTemplateMap__Fields { - struct HardwareControllerTemplateMap__Fields _; - struct String *controllerName; - struct String *description; - struct String *templateGuid; - struct String *className; - struct ControllerTemplateElementIdentifier_Editor__Array *elementIdentifiers; - struct List_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap_Entry_ *joysticks; - struct HardwareJoystickTemplateMap_SpecialElementEntry__Array *specialElements; - int32_t elementIdentifierIdCounter; - int32_t joystickIdCounter; -}; - -struct HardwareJoystickTemplateMap { - struct HardwareJoystickTemplateMap__Class *klass; - MonitorData *monitor; - struct HardwareJoystickTemplateMap__Fields fields; -}; - -#if defined(_CPLUSPLUS_) -enum class ControllerTemplateElementType__Enum : int32_t { - Axis = 0x00000000, - Button = 0x00000001, - ThumbStick = 0x00000002, - DPad = 0x00000004, - Stick = 0x00000005, - Throttle = 0x00000006, - Hat = 0x00000007, - Yoke = 0x00000008, - Stick6D = 0x00000009, -}; - -#else -enum ControllerTemplateElementType__Enum { - ControllerTemplateElementType__Enum_Axis = 0x00000000, - ControllerTemplateElementType__Enum_Button = 0x00000001, - ControllerTemplateElementType__Enum_ThumbStick = 0x00000002, - ControllerTemplateElementType__Enum_DPad = 0x00000004, - ControllerTemplateElementType__Enum_Stick = 0x00000005, - ControllerTemplateElementType__Enum_Throttle = 0x00000006, - ControllerTemplateElementType__Enum_Hat = 0x00000007, - ControllerTemplateElementType__Enum_Yoke = 0x00000008, - ControllerTemplateElementType__Enum_Stick6D = 0x00000009, -}; - -#endif -struct ControllerTemplateElementType__Enum__Boxed { - struct ControllerTemplateElementType__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - ControllerTemplateElementType__Enum value; - #else - int32_t value; - #endif -}; - -struct __declspec(align(8)) ControllerTemplateElementIdentifier__Fields { - int32_t _id; - struct String *_name; - struct String *_positiveName; - struct String *_negativeName; - #if defined(_CPLUSPLUS_) - ControllerTemplateElementType__Enum _elementType; - #else - int32_t _elementType; - #endif - bool isMappableOnPlatform; -}; - -struct ControllerTemplateElementIdentifier { - struct ControllerTemplateElementIdentifier__Class *klass; - MonitorData *monitor; - struct ControllerTemplateElementIdentifier__Fields fields; -}; - -struct ControllerTemplateElementIdentifier_Editor__Fields { - struct ControllerTemplateElementIdentifier__Fields _; - struct String *_scriptingName; - struct String *_alternateScriptingName; - bool _excludeFromExport; - bool _useEditorElementTypeOverride; - #if defined(_CPLUSPLUS_) - ControllerElementType__Enum _editorElementTypeOverride; - #else - int32_t _editorElementTypeOverride; - #endif -}; - -struct ControllerTemplateElementIdentifier_Editor { - struct ControllerTemplateElementIdentifier_Editor__Class *klass; - MonitorData *monitor; - struct ControllerTemplateElementIdentifier_Editor__Fields fields; -}; - struct ControllerTemplateElementIdentifier_Editor__Array { struct ControllerTemplateElementIdentifier_Editor__Array__Class *klass; MonitorData *monitor; @@ -158421,19 +161193,6 @@ struct ControllerTemplateElementIdentifier_Editor__Array { struct ControllerTemplateElementIdentifier_Editor *vector[32]; }; -struct __declspec(align(8)) List_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap_Entry___Fields { - struct HardwareJoystickTemplateMap_Entry__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap_Entry_ { - struct List_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap_Entry___Class *klass; - MonitorData *monitor; - struct List_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap_Entry___Fields fields; -}; - struct __declspec(align(8)) HardwareJoystickTemplateMap_Entry__Fields { int32_t id; struct String *name; @@ -158448,17 +161207,17 @@ struct HardwareJoystickTemplateMap_Entry { struct HardwareJoystickTemplateMap_Entry__Fields fields; }; -struct __declspec(align(8)) List_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap_ElementIdentifierMap___Fields { - struct HardwareJoystickTemplateMap_ElementIdentifierMap__Array *_items; +struct __declspec(align(8)) List_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap_Entry___Fields { + struct HardwareJoystickTemplateMap_Entry__Array *_items; int32_t _size; int32_t _version; struct Object *_syncRoot; }; -struct List_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap_ElementIdentifierMap_ { - struct List_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap_ElementIdentifierMap___Class *klass; +struct List_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap_Entry_ { + struct List_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap_Entry___Class *klass; MonitorData *monitor; - struct List_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap_ElementIdentifierMap___Fields fields; + struct List_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap_Entry___Fields fields; }; struct __declspec(align(8)) HardwareJoystickTemplateMap_ElementIdentifierMap__Fields { @@ -158474,6 +161233,19 @@ struct HardwareJoystickTemplateMap_ElementIdentifierMap { struct HardwareJoystickTemplateMap_ElementIdentifierMap__Fields fields; }; +struct __declspec(align(8)) List_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap_ElementIdentifierMap___Fields { + struct HardwareJoystickTemplateMap_ElementIdentifierMap__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap_ElementIdentifierMap_ { + struct List_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap_ElementIdentifierMap___Class *klass; + MonitorData *monitor; + struct List_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap_ElementIdentifierMap___Fields fields; +}; + struct HardwareJoystickTemplateMap_ElementIdentifierMap__Array { struct HardwareJoystickTemplateMap_ElementIdentifierMap__Array__Class *klass; MonitorData *monitor; @@ -158500,17 +161272,6 @@ struct IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap_Entry_ { MonitorData *monitor; }; -struct __declspec(align(8)) HardwareJoystickTemplateMap_SpecialElementEntry__Fields { - int32_t elementIdentifierId; - struct String *data; -}; - -struct HardwareJoystickTemplateMap_SpecialElementEntry { - struct HardwareJoystickTemplateMap_SpecialElementEntry__Class *klass; - MonitorData *monitor; - struct HardwareJoystickTemplateMap_SpecialElementEntry__Fields fields; -}; - struct HardwareJoystickTemplateMap_SpecialElementEntry__Array { struct HardwareJoystickTemplateMap_SpecialElementEntry__Array__Class *klass; MonitorData *monitor; @@ -158588,6 +161349,44 @@ struct ControllerIdentifier__Boxed { struct ControllerIdentifier fields; }; +struct __declspec(align(8)) Controller_Element__Fields { + int32_t id; + struct String *name; + #if defined(_CPLUSPLUS_) + ControllerElementType__Enum type; + #else + int32_t type; + #endif + struct Controller_Element_xOoJsIJJrYLeLMCcefuYYRHXEZwJ *WPWHkBOrnHCoeLdFARmknApkaGiS; + int32_t nALEwPbAksVPqrEirgyXeulgCzpDA; + struct Controller *EJvBluNNxcFMPjbFWPpcWiSpQgpX; + int32_t mOXJXWAZqYbVXoRKaCwzuCaWQpPt; + struct Controller_CompoundElement *RwVoXuRpJyQGeFlEeGhWInChGTgkA; +}; + +struct Controller_Element { + struct Controller_Element__Class *klass; + MonitorData *monitor; + struct Controller_Element__Fields fields; +}; + +struct Controller_Button__Fields { + struct Controller_Element__Fields _; + bool DOYyCtDKkqwRYZIxyAVlheLNZlqTA; + struct HardwareButtonInfo *EeYQTqWwPjIxLiAAsLUrnyceRkPp; +}; + +struct Controller_Button { + struct Controller_Button__Class *klass; + MonitorData *monitor; + struct Controller_Button__Fields fields; +}; + +struct IControllerTemplate { + struct IControllerTemplate__Class *klass; + MonitorData *monitor; +}; + struct __declspec(align(8)) Controller__Fields { int32_t id; struct String *_tag; @@ -158650,6 +161449,18 @@ struct IControllerExtensionSource { MonitorData *monitor; }; +struct __declspec(align(8)) TimerAbs__Fields { + bool running; + double LSmquCozsvSgfxehrBcvlWQUVxvd; + double length; +}; + +struct TimerAbs { + struct TimerAbs__Class *klass; + MonitorData *monitor; + struct TimerAbs__Fields fields; +}; + struct XboxOneGamepadExtension__Fields { struct Controller_Extension__Fields _; struct XboxOneGamepadExtension_PZaFFUqGOEFzYOmcdYQMDePDRcqv *HmgBEFTVFqMKqcZryjjEIFHpuqXE; @@ -158693,18 +161504,6 @@ struct IXboxOneInputSource { MonitorData *monitor; }; -struct __declspec(align(8)) TimerAbs__Fields { - bool running; - double LSmquCozsvSgfxehrBcvlWQUVxvd; - double length; -}; - -struct TimerAbs { - struct TimerAbs__Class *klass; - MonitorData *monitor; - struct TimerAbs__Fields fields; -}; - struct TimerAbs__Array { struct TimerAbs__Array__Class *klass; MonitorData *monitor; @@ -158738,37 +161537,9 @@ struct UpdateLoopType__Enum__Boxed { #endif }; -struct __declspec(align(8)) Controller_Element__Fields { - int32_t id; - struct String *name; - #if defined(_CPLUSPLUS_) - ControllerElementType__Enum type; - #else - int32_t type; - #endif - struct Controller_Element_xOoJsIJJrYLeLMCcefuYYRHXEZwJ *WPWHkBOrnHCoeLdFARmknApkaGiS; - int32_t nALEwPbAksVPqrEirgyXeulgCzpDA; - struct Controller *EJvBluNNxcFMPjbFWPpcWiSpQgpX; - int32_t mOXJXWAZqYbVXoRKaCwzuCaWQpPt; - struct Controller_CompoundElement *RwVoXuRpJyQGeFlEeGhWInChGTgkA; -}; - -struct Controller_Element { - struct Controller_Element__Class *klass; +struct Controller_Element_xOoJsIJJrYLeLMCcefuYYRHXEZwJ_yShTYqkGIvmtEnfpaLxCqsdlnJlO { + struct Controller_Element_xOoJsIJJrYLeLMCcefuYYRHXEZwJ_yShTYqkGIvmtEnfpaLxCqsdlnJlO__Class *klass; MonitorData *monitor; - struct Controller_Element__Fields fields; -}; - -struct Controller_Button__Fields { - struct Controller_Element__Fields _; - bool DOYyCtDKkqwRYZIxyAVlheLNZlqTA; - struct HardwareButtonInfo *EeYQTqWwPjIxLiAAsLUrnyceRkPp; -}; - -struct Controller_Button { - struct Controller_Button__Class *klass; - MonitorData *monitor; - struct Controller_Button__Fields fields; }; struct __declspec(align(8)) Controller_Element_xOoJsIJJrYLeLMCcefuYYRHXEZwJ__Fields { @@ -158787,11 +161558,6 @@ struct Controller_Element_xOoJsIJJrYLeLMCcefuYYRHXEZwJ { struct Controller_Element_xOoJsIJJrYLeLMCcefuYYRHXEZwJ__Fields fields; }; -struct Controller_Element_xOoJsIJJrYLeLMCcefuYYRHXEZwJ_yShTYqkGIvmtEnfpaLxCqsdlnJlO { - struct Controller_Element_xOoJsIJJrYLeLMCcefuYYRHXEZwJ_yShTYqkGIvmtEnfpaLxCqsdlnJlO__Class *klass; - MonitorData *monitor; -}; - struct __declspec(align(8)) Controller_Axis_uhqOmXTiLElTXIZtOYVnJdaftXTd_QSVAgwaBeezkIoCzOGSkLOZFTEZk__Fields { float KCmvqxmDPHZcOPAPceRkbTZbUBUm; float KhuynIhcldGCmDcoRpfyfzTgTVbPA; @@ -158842,6 +161608,17 @@ struct IEnumerator_1_Rewired_Controller_Element_xOoJsIJJrYLeLMCcefuYYRHXEZwJ_ySh MonitorData *monitor; }; +struct __declspec(align(8)) Controller_CompoundElement_mJYIgZkmlllSlDyuAQEGSrlBRGZn__Fields { + struct Controller_Element *khpGjydrmCfDVkEzazNCSDaBwnJd; + int32_t FKfMumBTbgEBeYNKTMcwlYScLMrO; +}; + +struct Controller_CompoundElement_mJYIgZkmlllSlDyuAQEGSrlBRGZn { + struct Controller_CompoundElement_mJYIgZkmlllSlDyuAQEGSrlBRGZn__Class *klass; + MonitorData *monitor; + struct Controller_CompoundElement_mJYIgZkmlllSlDyuAQEGSrlBRGZn__Fields fields; +}; + struct __declspec(align(8)) Controller_CompoundElement__Fields { int32_t niSkuJRhFGcsnCKIxgknTIJNTiGOA; struct String *DvzsLoKoKRWJfvrNafCaPsjALsgO; @@ -158862,17 +161639,6 @@ struct Controller_CompoundElement { struct Controller_CompoundElement__Fields fields; }; -struct __declspec(align(8)) Controller_CompoundElement_mJYIgZkmlllSlDyuAQEGSrlBRGZn__Fields { - struct Controller_Element *khpGjydrmCfDVkEzazNCSDaBwnJd; - int32_t FKfMumBTbgEBeYNKTMcwlYScLMrO; -}; - -struct Controller_CompoundElement_mJYIgZkmlllSlDyuAQEGSrlBRGZn { - struct Controller_CompoundElement_mJYIgZkmlllSlDyuAQEGSrlBRGZn__Class *klass; - MonitorData *monitor; - struct Controller_CompoundElement_mJYIgZkmlllSlDyuAQEGSrlBRGZn__Fields fields; -}; - struct Controller_CompoundElement_mJYIgZkmlllSlDyuAQEGSrlBRGZn__Array { struct Controller_CompoundElement_mJYIgZkmlllSlDyuAQEGSrlBRGZn__Array__Class *klass; MonitorData *monitor; @@ -158892,18 +161658,6 @@ struct Controller_Axis2D { struct Controller_Axis2D__Fields fields; }; -struct __declspec(align(8)) CalibrationMap__Fields { - struct AxisCalibration__Array *QmZKmzNRPcsCvywkSPuMQFSKsAtN; - struct IList_1_Rewired_AxisCalibration_ *gUldCJPaDNikJGeidMqQrcnuvkvQ; - int32_t mOXJXWAZqYbVXoRKaCwzuCaWQpPt; -}; - -struct CalibrationMap { - struct CalibrationMap__Class *klass; - MonitorData *monitor; - struct CalibrationMap__Fields fields; -}; - struct __declspec(align(8)) AxisCalibration__Fields { #if defined(_CPLUSPLUS_) AlternateAxisCalibrationType__Enum _calibrationMode; @@ -158933,6 +161687,18 @@ struct AxisCalibration { struct AxisCalibration__Fields fields; }; +struct __declspec(align(8)) CalibrationMap__Fields { + struct AxisCalibration__Array *QmZKmzNRPcsCvywkSPuMQFSKsAtN; + struct IList_1_Rewired_AxisCalibration_ *gUldCJPaDNikJGeidMqQrcnuvkvQ; + int32_t mOXJXWAZqYbVXoRKaCwzuCaWQpPt; +}; + +struct CalibrationMap { + struct CalibrationMap__Class *klass; + MonitorData *monitor; + struct CalibrationMap__Fields fields; +}; + struct AxisCalibration__Array { struct AxisCalibration__Array__Class *klass; MonitorData *monitor; @@ -159033,6 +161799,16 @@ struct IEnumerator_1_Rewired_Controller_CompoundElement_ { MonitorData *monitor; }; +struct __declspec(align(8)) UnknownControllerHat__Fields { + struct UnknownControllerHat_HatButtons *FuIbrngzTfyhqdTvcYUTsstzCVZDA; +}; + +struct UnknownControllerHat { + struct UnknownControllerHat__Class *klass; + MonitorData *monitor; + struct UnknownControllerHat__Fields fields; +}; + struct __declspec(align(8)) ControllerDataUpdater__Fields { #if defined(_CPLUSPLUS_) InputSource__Enum source; @@ -159055,16 +161831,6 @@ struct ControllerDataUpdater { struct ControllerDataUpdater__Fields fields; }; -struct __declspec(align(8)) UnknownControllerHat__Fields { - struct UnknownControllerHat_HatButtons *FuIbrngzTfyhqdTvcYUTsstzCVZDA; -}; - -struct UnknownControllerHat { - struct UnknownControllerHat__Class *klass; - MonitorData *monitor; - struct UnknownControllerHat__Fields fields; -}; - struct __declspec(align(8)) UnknownControllerHat_HatButtons__Fields { struct Int32__Array *FuIbrngzTfyhqdTvcYUTsstzCVZDA; }; @@ -159143,6 +161909,19 @@ struct HardwareControllerMap_Game { struct HardwareControllerMap_Game__Fields fields; }; +struct ADictionary_2_TKey_TValue_Entry_System_Int32_Rewired_ControllerElementIdentifier_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct ControllerElementIdentifier *value; +}; + +struct ADictionary_2_TKey_TValue_Entry_System_Int32_Rewired_ControllerElementIdentifier___Boxed { + struct ADictionary_2_TKey_TValue_Entry_System_Int32_Rewired_ControllerElementIdentifier___Class *klass; + MonitorData *monitor; + struct ADictionary_2_TKey_TValue_Entry_System_Int32_Rewired_ControllerElementIdentifier_ fields; +}; + struct __declspec(align(8)) ADictionary_2_System_Int32_Rewired_ControllerElementIdentifier___Fields { struct Int32__Array *pGawVZUvYULemJqagZXhjOtPTktC; struct ADictionary_2_TKey_TValue_Entry_System_Int32_Rewired_ControllerElementIdentifier___Array *_entries; @@ -159164,19 +161943,6 @@ struct ADictionary_2_System_Int32_Rewired_ControllerElementIdentifier_ { struct ADictionary_2_System_Int32_Rewired_ControllerElementIdentifier___Fields fields; }; -struct ADictionary_2_TKey_TValue_Entry_System_Int32_Rewired_ControllerElementIdentifier_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct ControllerElementIdentifier *value; -}; - -struct ADictionary_2_TKey_TValue_Entry_System_Int32_Rewired_ControllerElementIdentifier___Boxed { - struct ADictionary_2_TKey_TValue_Entry_System_Int32_Rewired_ControllerElementIdentifier___Class *klass; - MonitorData *monitor; - struct ADictionary_2_TKey_TValue_Entry_System_Int32_Rewired_ControllerElementIdentifier_ fields; -}; - struct ADictionary_2_TKey_TValue_Entry_System_Int32_Rewired_ControllerElementIdentifier___Array { struct ADictionary_2_TKey_TValue_Entry_System_Int32_Rewired_ControllerElementIdentifier___Array__Class *klass; MonitorData *monitor; @@ -159244,11 +162010,6 @@ struct IList_1_Rewired_ControllerElementIdentifier_ { MonitorData *monitor; }; -struct IControllerTemplate { - struct IControllerTemplate__Class *klass; - MonitorData *monitor; -}; - struct IControllerTemplate__Array { struct IControllerTemplate__Array__Class *klass; MonitorData *monitor; @@ -159308,6 +162069,22 @@ struct ControllerWithMap { struct ControllerWithMap__Fields fields; }; +struct Controller_Axis__Fields { + struct Controller_Element__Fields _; + #if defined(_CPLUSPLUS_) + AxisRange__Enum RtduhgMiRWaAZbpQjgPGBxdinxXcb; + #else + int32_t RtduhgMiRWaAZbpQjgPGBxdinxXcb; + #endif + struct HardwareAxisInfo *sNjenIDlOBYwnYjPaQYILDTybXNW; +}; + +struct Controller_Axis { + struct Controller_Axis__Class *klass; + MonitorData *monitor; + struct Controller_Axis__Fields fields; +}; + struct ControllerWithAxes__Fields { struct ControllerWithMap__Fields _; int32_t _axisCount; @@ -159411,22 +162188,6 @@ struct ButtonStateFlags__Enum__Boxed { #endif }; -struct Controller_Axis__Fields { - struct Controller_Element__Fields _; - #if defined(_CPLUSPLUS_) - AxisRange__Enum RtduhgMiRWaAZbpQjgPGBxdinxXcb; - #else - int32_t RtduhgMiRWaAZbpQjgPGBxdinxXcb; - #endif - struct HardwareAxisInfo *sNjenIDlOBYwnYjPaQYILDTybXNW; -}; - -struct Controller_Axis { - struct Controller_Axis__Class *klass; - MonitorData *monitor; - struct Controller_Axis__Fields fields; -}; - struct Controller_Axis__Array { struct Controller_Axis__Array__Class *klass; MonitorData *monitor; @@ -159529,19 +162290,6 @@ struct IExternalTools { MonitorData *monitor; }; -struct __declspec(align(8)) List_1_Rewired_Components_PlayerMouse___Fields { - struct PlayerMouse__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Rewired_Components_PlayerMouse_ { - struct List_1_Rewired_Components_PlayerMouse___Class *klass; - MonitorData *monitor; - struct List_1_Rewired_Components_PlayerMouse___Fields fields; -}; - struct ComponentWrapper_1_Rewired_PlayerController___Fields { struct MonoBehaviour__Fields _; struct PlayerController *GbKIJKjLnZELMDXMczPtmIUrOgIkA; @@ -159614,6 +162362,19 @@ struct PlayerMouse { struct PlayerMouse__Fields fields; }; +struct __declspec(align(8)) List_1_Rewired_Components_PlayerMouse___Fields { + struct PlayerMouse__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Rewired_Components_PlayerMouse_ { + struct List_1_Rewired_Components_PlayerMouse___Class *klass; + MonitorData *monitor; + struct List_1_Rewired_Components_PlayerMouse___Fields fields; +}; + struct __declspec(align(8)) PlayerController__Fields { int32_t mOXJXWAZqYbVXoRKaCwzuCaWQpPt; bool MPpDcJLKGxYoXXgRQPsPNVTXJsSI; @@ -159636,6 +162397,19 @@ struct PlayerController { struct PlayerController__Fields fields; }; +struct __declspec(align(8)) PlayerController_Element__Fields { + struct PlayerController *QGgBRNagdhJnEPOOrrlttJeUWwSp; + bool xmpbiaELqNYlIiorRksssnMvOLwPA; + bool MPpDcJLKGxYoXXgRQPsPNVTXJsSI; + struct String *DvzsLoKoKRWJfvrNafCaPsjALsgO; +}; + +struct PlayerController_Element { + struct PlayerController_Element__Class *klass; + MonitorData *monitor; + struct PlayerController_Element__Fields fields; +}; + struct __declspec(align(8)) AList_1_Rewired_PlayerController_Element___Fields { struct IEqualityComparer_1_Rewired_PlayerController_Element_ *IffVJRWXMWVnHJdLRJYLVauxgDLkA; struct PlayerController_Element__Array *_items; @@ -159655,19 +162429,6 @@ struct AList_1_Rewired_PlayerController_Element_ { struct AList_1_Rewired_PlayerController_Element___Fields fields; }; -struct __declspec(align(8)) PlayerController_Element__Fields { - struct PlayerController *QGgBRNagdhJnEPOOrrlttJeUWwSp; - bool xmpbiaELqNYlIiorRksssnMvOLwPA; - bool MPpDcJLKGxYoXXgRQPsPNVTXJsSI; - struct String *DvzsLoKoKRWJfvrNafCaPsjALsgO; -}; - -struct PlayerController_Element { - struct PlayerController_Element__Class *klass; - MonitorData *monitor; - struct PlayerController_Element__Fields fields; -}; - struct PlayerController_Element__Array { struct PlayerController_Element__Array__Class *klass; MonitorData *monitor; @@ -159686,25 +162447,6 @@ struct IEnumerator_1_Rewired_PlayerController_Element_ { MonitorData *monitor; }; -struct __declspec(align(8)) AList_1_Rewired_PlayerController_Button___Fields { - struct IEqualityComparer_1_Rewired_PlayerController_Button_ *IffVJRWXMWVnHJdLRJYLVauxgDLkA; - struct PlayerController_Button__Array *_items; - int32_t AmnCvjBSkGhAaMYjlMZxEEvbSrui; - int32_t _count; - int32_t MlBWsNGNiomUVthQUNRXfpFBfdvcA; - bool BgeCjBfkGdQNGlLKwiklClEiXqZYb; - int32_t NKRGkWDwiVqYeHERShAcPbFuCIMgb; - bool rEPnayQyfurrRXZjmKdrDQdkiUwbA; - int32_t vyAzFNcXzBhuRiyIKSwxhSukcXQu; - struct Object *eCrDVxsFDCrYCyMPHlSFBIZwopNk; -}; - -struct AList_1_Rewired_PlayerController_Button_ { - struct AList_1_Rewired_PlayerController_Button___Class *klass; - MonitorData *monitor; - struct AList_1_Rewired_PlayerController_Button___Fields fields; -}; - struct PlayerController_ElementWithSource__Fields { struct PlayerController_Element__Fields _; int32_t bFmriaRsvBglTeaMGZgBsqFLGAvdb; @@ -159726,6 +162468,25 @@ struct PlayerController_Button { struct PlayerController_Button__Fields fields; }; +struct __declspec(align(8)) AList_1_Rewired_PlayerController_Button___Fields { + struct IEqualityComparer_1_Rewired_PlayerController_Button_ *IffVJRWXMWVnHJdLRJYLVauxgDLkA; + struct PlayerController_Button__Array *_items; + int32_t AmnCvjBSkGhAaMYjlMZxEEvbSrui; + int32_t _count; + int32_t MlBWsNGNiomUVthQUNRXfpFBfdvcA; + bool BgeCjBfkGdQNGlLKwiklClEiXqZYb; + int32_t NKRGkWDwiVqYeHERShAcPbFuCIMgb; + bool rEPnayQyfurrRXZjmKdrDQdkiUwbA; + int32_t vyAzFNcXzBhuRiyIKSwxhSukcXQu; + struct Object *eCrDVxsFDCrYCyMPHlSFBIZwopNk; +}; + +struct AList_1_Rewired_PlayerController_Button_ { + struct AList_1_Rewired_PlayerController_Button___Class *klass; + MonitorData *monitor; + struct AList_1_Rewired_PlayerController_Button___Fields fields; +}; + struct PlayerController_Button__Array { struct PlayerController_Button__Array__Class *klass; MonitorData *monitor; @@ -159744,6 +162505,22 @@ struct IEnumerator_1_Rewired_PlayerController_Button_ { MonitorData *monitor; }; +struct PlayerController_Axis__Fields { + struct PlayerController_ElementWithSource__Fields _; + float EqyegVVSRHfruFpQVHXySitDmpZqA; + #if defined(_CPLUSPLUS_) + AxisCoordinateMode__Enum wsxjMcXEWHwbpwwMRqdwdkdOLblj; + #else + int32_t wsxjMcXEWHwbpwwMRqdwdkdOLblj; + #endif +}; + +struct PlayerController_Axis { + struct PlayerController_Axis__Class *klass; + MonitorData *monitor; + struct PlayerController_Axis__Fields fields; +}; + struct __declspec(align(8)) AList_1_Rewired_PlayerController_Axis___Fields { struct IEqualityComparer_1_Rewired_PlayerController_Axis_ *IffVJRWXMWVnHJdLRJYLVauxgDLkA; struct PlayerController_Axis__Array *_items; @@ -159763,22 +162540,6 @@ struct AList_1_Rewired_PlayerController_Axis_ { struct AList_1_Rewired_PlayerController_Axis___Fields fields; }; -struct PlayerController_Axis__Fields { - struct PlayerController_ElementWithSource__Fields _; - float EqyegVVSRHfruFpQVHXySitDmpZqA; - #if defined(_CPLUSPLUS_) - AxisCoordinateMode__Enum wsxjMcXEWHwbpwwMRqdwdkdOLblj; - #else - int32_t wsxjMcXEWHwbpwwMRqdwdkdOLblj; - #endif -}; - -struct PlayerController_Axis { - struct PlayerController_Axis__Class *klass; - MonitorData *monitor; - struct PlayerController_Axis__Fields fields; -}; - struct PlayerController_Axis__Array { struct PlayerController_Axis__Array__Class *klass; MonitorData *monitor; @@ -159845,19 +162606,6 @@ struct IList_1_Rewired_PlayerController_Axis_ { MonitorData *monitor; }; -struct __declspec(align(8)) List_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb___Fields { - struct PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ { - struct List_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb___Class *klass; - MonitorData *monitor; - struct List_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb___Fields fields; -}; - struct PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb { #if defined(_CPLUSPLUS_) ControllerElementType__Enum giJxMQDJWUSDwjJuOWLkORDFzQxF; @@ -159874,6 +162622,19 @@ struct PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__Boxed { struct PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb fields; }; +struct __declspec(align(8)) List_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb___Fields { + struct PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb_ { + struct List_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb___Class *klass; + MonitorData *monitor; + struct List_1_Rewired_PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb___Fields fields; +}; + struct PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__Array { struct PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb__Array__Class *klass; MonitorData *monitor; @@ -159907,19 +162668,6 @@ struct Action_2_Int32_Single_ { struct Action_2_Int32_Single___Fields fields; }; -struct __declspec(align(8)) List_1_Rewired_Components_PlayerController_ElementInfo___Fields { - struct PlayerController_ElementInfo__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Rewired_Components_PlayerController_ElementInfo_ { - struct List_1_Rewired_Components_PlayerController_ElementInfo___Class *klass; - MonitorData *monitor; - struct List_1_Rewired_Components_PlayerController_ElementInfo___Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class PlayerController_Element_Type__Enum : int32_t { Button = 0x00000000, @@ -159953,23 +162701,6 @@ struct PlayerController_Element_Type__Enum__Boxed { #endif }; -struct __declspec(align(8)) PlayerController_ElementInfo__Fields { - struct String *_name; - #if defined(_CPLUSPLUS_) - PlayerController_Element_Type__Enum _elementType; - #else - int32_t _elementType; - #endif - bool _enabled; - struct PlayerController_ElementWithSourceInfo__Array *_elements; -}; - -struct PlayerController_ElementInfo { - struct PlayerController_ElementInfo__Class *klass; - MonitorData *monitor; - struct PlayerController_ElementInfo__Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class PlayerController_Element_TypeWithSource__Enum : int32_t { Button = 0x00000000, @@ -160021,6 +162752,36 @@ struct PlayerController_ElementWithSourceInfo { struct PlayerController_ElementWithSourceInfo__Fields fields; }; +struct __declspec(align(8)) PlayerController_ElementInfo__Fields { + struct String *_name; + #if defined(_CPLUSPLUS_) + PlayerController_Element_Type__Enum _elementType; + #else + int32_t _elementType; + #endif + bool _enabled; + struct PlayerController_ElementWithSourceInfo__Array *_elements; +}; + +struct PlayerController_ElementInfo { + struct PlayerController_ElementInfo__Class *klass; + MonitorData *monitor; + struct PlayerController_ElementInfo__Fields fields; +}; + +struct __declspec(align(8)) List_1_Rewired_Components_PlayerController_ElementInfo___Fields { + struct PlayerController_ElementInfo__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Rewired_Components_PlayerController_ElementInfo_ { + struct List_1_Rewired_Components_PlayerController_ElementInfo___Class *klass; + MonitorData *monitor; + struct List_1_Rewired_Components_PlayerController_ElementInfo___Fields fields; +}; + struct PlayerController_ElementWithSourceInfo__Array { struct PlayerController_ElementWithSourceInfo__Array__Class *klass; MonitorData *monitor; @@ -160305,26 +163066,6 @@ struct Button_ButtonClickedEvent { struct Button_ButtonClickedEvent__Fields fields; }; -struct MaskableGraphic__Fields { - struct Graphic__Fields _; - bool m_ShouldRecalculateStencil; - struct Material *m_MaskMaterial; - struct RectMask2D *m_ParentMask; - bool m_Maskable; - bool m_IsMaskingGraphic; - bool m_IncludeForMasking; - struct MaskableGraphic_CullStateChangedEvent *m_OnCullStateChanged; - bool m_ShouldRecalculate; - int32_t m_StencilValue; - struct Vector3__Array *m_Corners; -}; - -struct MaskableGraphic { - struct MaskableGraphic__Class *klass; - MonitorData *monitor; - struct MaskableGraphic__Fields fields; -}; - struct Text__Fields { struct MaskableGraphic__Fields _; struct FontData *m_FontData; @@ -160385,6 +163126,18 @@ struct RectangularVertexClipper { struct RectangularVertexClipper__Fields fields; }; +struct HashSet_1_T_Slot_UnityEngine_UI_MaskableGraphic_ { + int32_t hashCode; + int32_t next; + struct MaskableGraphic *value; +}; + +struct HashSet_1_T_Slot_UnityEngine_UI_MaskableGraphic___Boxed { + struct HashSet_1_T_Slot_UnityEngine_UI_MaskableGraphic___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_UnityEngine_UI_MaskableGraphic_ fields; +}; + struct __declspec(align(8)) HashSet_1_UnityEngine_UI_MaskableGraphic___Fields { struct Int32__Array *_buckets; struct HashSet_1_T_Slot_UnityEngine_UI_MaskableGraphic___Array *_slots; @@ -160402,18 +163155,6 @@ struct HashSet_1_UnityEngine_UI_MaskableGraphic_ { struct HashSet_1_UnityEngine_UI_MaskableGraphic___Fields fields; }; -struct HashSet_1_T_Slot_UnityEngine_UI_MaskableGraphic_ { - int32_t hashCode; - int32_t next; - struct MaskableGraphic *value; -}; - -struct HashSet_1_T_Slot_UnityEngine_UI_MaskableGraphic___Boxed { - struct HashSet_1_T_Slot_UnityEngine_UI_MaskableGraphic___Class *klass; - MonitorData *monitor; - struct HashSet_1_T_Slot_UnityEngine_UI_MaskableGraphic_ fields; -}; - struct HashSet_1_T_Slot_UnityEngine_UI_MaskableGraphic___Array { struct HashSet_1_T_Slot_UnityEngine_UI_MaskableGraphic___Array__Class *klass; MonitorData *monitor; @@ -160445,6 +163186,18 @@ struct IEnumerable_1_UnityEngine_UI_MaskableGraphic_ { MonitorData *monitor; }; +struct HashSet_1_T_Slot_UnityEngine_UI_IClippable_ { + int32_t hashCode; + int32_t next; + struct IClippable *value; +}; + +struct HashSet_1_T_Slot_UnityEngine_UI_IClippable___Boxed { + struct HashSet_1_T_Slot_UnityEngine_UI_IClippable___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_UnityEngine_UI_IClippable_ fields; +}; + struct __declspec(align(8)) HashSet_1_UnityEngine_UI_IClippable___Fields { struct Int32__Array *_buckets; struct HashSet_1_T_Slot_UnityEngine_UI_IClippable___Array *_slots; @@ -160462,18 +163215,6 @@ struct HashSet_1_UnityEngine_UI_IClippable_ { struct HashSet_1_UnityEngine_UI_IClippable___Fields fields; }; -struct HashSet_1_T_Slot_UnityEngine_UI_IClippable_ { - int32_t hashCode; - int32_t next; - struct IClippable *value; -}; - -struct HashSet_1_T_Slot_UnityEngine_UI_IClippable___Boxed { - struct HashSet_1_T_Slot_UnityEngine_UI_IClippable___Class *klass; - MonitorData *monitor; - struct HashSet_1_T_Slot_UnityEngine_UI_IClippable_ fields; -}; - struct IClippable { struct IClippable__Class *klass; MonitorData *monitor; @@ -160787,6 +163528,17 @@ struct TextGenerator { struct TextGenerator__Fields fields; }; +struct UICharInfo { + struct Vector2 cursorPos; + float charWidth; +}; + +struct UICharInfo__Boxed { + struct UICharInfo__Class *klass; + MonitorData *monitor; + struct UICharInfo fields; +}; + struct __declspec(align(8)) List_1_UnityEngine_UICharInfo___Fields { struct UICharInfo__Array *_items; int32_t _size; @@ -160800,17 +163552,6 @@ struct List_1_UnityEngine_UICharInfo_ { struct List_1_UnityEngine_UICharInfo___Fields fields; }; -struct UICharInfo { - struct Vector2 cursorPos; - float charWidth; -}; - -struct UICharInfo__Boxed { - struct UICharInfo__Class *klass; - MonitorData *monitor; - struct UICharInfo fields; -}; - struct UICharInfo__Array { struct UICharInfo__Array__Class *klass; MonitorData *monitor; @@ -160824,19 +163565,6 @@ struct IEnumerator_1_UnityEngine_UICharInfo_ { MonitorData *monitor; }; -struct __declspec(align(8)) List_1_UnityEngine_UILineInfo___Fields { - struct UILineInfo__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_UILineInfo_ { - struct List_1_UnityEngine_UILineInfo___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_UILineInfo___Fields fields; -}; - struct UILineInfo { int32_t startCharIdx; int32_t height; @@ -160850,6 +163578,19 @@ struct UILineInfo__Boxed { struct UILineInfo fields; }; +struct __declspec(align(8)) List_1_UnityEngine_UILineInfo___Fields { + struct UILineInfo__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_UILineInfo_ { + struct List_1_UnityEngine_UILineInfo___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_UILineInfo___Fields fields; +}; + struct UILineInfo__Array { struct UILineInfo__Array__Class *klass; MonitorData *monitor; @@ -160863,94 +163604,6 @@ struct IEnumerator_1_UnityEngine_UILineInfo_ { MonitorData *monitor; }; -#if defined(_CPLUSPLUS_) -enum class Image_Type__Enum : int32_t { - Simple = 0x00000000, - Sliced = 0x00000001, - Tiled = 0x00000002, - Filled = 0x00000003, -}; - -#else -enum Image_Type__Enum { - Image_Type__Enum_Simple = 0x00000000, - Image_Type__Enum_Sliced = 0x00000001, - Image_Type__Enum_Tiled = 0x00000002, - Image_Type__Enum_Filled = 0x00000003, -}; - -#endif -struct Image_Type__Enum__Boxed { - struct Image_Type__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - Image_Type__Enum value; - #else - int32_t value; - #endif -}; - -#if defined(_CPLUSPLUS_) -enum class Image_FillMethod__Enum : int32_t { - Horizontal = 0x00000000, - Vertical = 0x00000001, - Radial90 = 0x00000002, - Radial180 = 0x00000003, - Radial360 = 0x00000004, -}; - -#else -enum Image_FillMethod__Enum { - Image_FillMethod__Enum_Horizontal = 0x00000000, - Image_FillMethod__Enum_Vertical = 0x00000001, - Image_FillMethod__Enum_Radial90 = 0x00000002, - Image_FillMethod__Enum_Radial180 = 0x00000003, - Image_FillMethod__Enum_Radial360 = 0x00000004, -}; - -#endif -struct Image_FillMethod__Enum__Boxed { - struct Image_FillMethod__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - Image_FillMethod__Enum value; - #else - int32_t value; - #endif -}; - -struct Image__Fields { - struct MaskableGraphic__Fields _; - struct Sprite *m_Sprite; - struct Sprite *m_OverrideSprite; - #if defined(_CPLUSPLUS_) - Image_Type__Enum m_Type; - #else - int32_t m_Type; - #endif - bool m_PreserveAspect; - bool m_FillCenter; - #if defined(_CPLUSPLUS_) - Image_FillMethod__Enum m_FillMethod; - #else - int32_t m_FillMethod; - #endif - float m_FillAmount; - bool m_FillClockwise; - int32_t m_FillOrigin; - float m_AlphaHitTestMinimumThreshold; - bool m_Tracked; - bool m_UseSpriteMesh; - float m_PixelsPerUnitMultiplier; - float m_CachedReferencePixelsPerUnit; -}; - -struct Image { - struct Image__Class *klass; - MonitorData *monitor; - struct Image__Fields fields; -}; - struct __declspec(align(8)) List_1_UnityEngine_UI_Image___Fields { struct Image__Array *_items; int32_t _size; @@ -160985,6 +163638,81 @@ struct SurvivalLobbyControllerCanvas__Array { struct SurvivalLobbyControllerCanvas *vector[32]; }; +struct __declspec(align(8)) Menu_ChallengeContainer__Fields { + struct Text *baseChallenge; + struct Text *difficultyModifier; + struct Text *mapModifier; + struct Text *expRewardText; + struct Image *mapImage; + struct GameObject *completedIcon; +}; + +struct Menu_ChallengeContainer { + struct Menu_ChallengeContainer__Class *klass; + MonitorData *monitor; + struct Menu_ChallengeContainer__Fields fields; +}; + +#if defined(_CPLUSPLUS_) +enum class IngameStatsTracker_AwardType__Enum : int32_t { + MostBanishes = 0x00000000, + MostRevives = 0x00000001, + MostStaggers = 0x00000002, + LeastDeaths = 0x00000003, +}; + +#else +enum IngameStatsTracker_AwardType__Enum { + IngameStatsTracker_AwardType__Enum_MostBanishes = 0x00000000, + IngameStatsTracker_AwardType__Enum_MostRevives = 0x00000001, + IngameStatsTracker_AwardType__Enum_MostStaggers = 0x00000002, + IngameStatsTracker_AwardType__Enum_LeastDeaths = 0x00000003, +}; + +#endif +struct IngameStatsTracker_AwardType__Enum__Boxed { + struct IngameStatsTracker_AwardType__Enum__Class *klass; + MonitorData *monitor; + #if defined(_CPLUSPLUS_) + IngameStatsTracker_AwardType__Enum value; + #else + int32_t value; + #endif +}; + +struct __declspec(align(8)) Menu_GameStatsAwardEntry__Fields { + struct GameObject *container; + struct Image *playerIcon; + struct Image *winnerIcon; + struct Text *playerName; + struct Text *statText; + int32_t statValue; + struct String *playerId; +}; + +struct Menu_GameStatsAwardEntry { + struct Menu_GameStatsAwardEntry__Class *klass; + MonitorData *monitor; + struct Menu_GameStatsAwardEntry__Fields fields; +}; + +struct __declspec(align(8)) Menu_GameStatsAward__Fields { + #if defined(_CPLUSPLUS_) + IngameStatsTracker_AwardType__Enum awardType; + #else + int32_t awardType; + #endif + struct Text *awardTitle; + struct Text *awardDescription; + struct Menu_GameStatsAwardEntry__Array *entries; +}; + +struct Menu_GameStatsAward { + struct Menu_GameStatsAward__Class *klass; + MonitorData *monitor; + struct Menu_GameStatsAward__Fields fields; +}; + struct CSteamID { uint64_t m_SteamID; }; @@ -162297,6 +165025,17 @@ struct Dropdown_OptionDataList { struct Dropdown_OptionDataList__Fields fields; }; +struct __declspec(align(8)) Dropdown_OptionData__Fields { + struct String *m_Text; + struct Sprite *m_Image; +}; + +struct Dropdown_OptionData { + struct Dropdown_OptionData__Class *klass; + MonitorData *monitor; + struct Dropdown_OptionData__Fields fields; +}; + struct __declspec(align(8)) List_1_UnityEngine_UI_Dropdown_OptionData___Fields { struct Dropdown_OptionData__Array *_items; int32_t _size; @@ -162310,17 +165049,6 @@ struct List_1_UnityEngine_UI_Dropdown_OptionData_ { struct List_1_UnityEngine_UI_Dropdown_OptionData___Fields fields; }; -struct __declspec(align(8)) Dropdown_OptionData__Fields { - struct String *m_Text; - struct Sprite *m_Image; -}; - -struct Dropdown_OptionData { - struct Dropdown_OptionData__Class *klass; - MonitorData *monitor; - struct Dropdown_OptionData__Fields fields; -}; - struct Dropdown_OptionData__Array { struct Dropdown_OptionData__Array__Class *klass; MonitorData *monitor; @@ -162355,19 +165083,6 @@ struct Dropdown_DropdownEvent { struct Dropdown_DropdownEvent__Fields fields; }; -struct __declspec(align(8)) List_1_UnityEngine_UI_Dropdown_DropdownItem___Fields { - struct Dropdown_DropdownItem__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_UI_Dropdown_DropdownItem_ { - struct List_1_UnityEngine_UI_Dropdown_DropdownItem___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_UI_Dropdown_DropdownItem___Fields fields; -}; - struct Dropdown_DropdownItem__Fields { struct MonoBehaviour__Fields _; struct Text *m_Text; @@ -162382,6 +165097,19 @@ struct Dropdown_DropdownItem { struct Dropdown_DropdownItem__Fields fields; }; +struct __declspec(align(8)) List_1_UnityEngine_UI_Dropdown_DropdownItem___Fields { + struct Dropdown_DropdownItem__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_UI_Dropdown_DropdownItem_ { + struct List_1_UnityEngine_UI_Dropdown_DropdownItem___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_UI_Dropdown_DropdownItem___Fields fields; +}; + struct Dropdown_DropdownItem__Array { struct Dropdown_DropdownItem__Array__Class *klass; MonitorData *monitor; @@ -162450,6 +165178,18 @@ struct RuntimeAnimatorController { struct RuntimeAnimatorController__Fields fields; }; +struct __declspec(align(8)) OutfitPreviewLoader_OutfitPreviewAvatar__Fields { + struct String *characterName; + struct Avatar *avatar; + int32_t pose; +}; + +struct OutfitPreviewLoader_OutfitPreviewAvatar { + struct OutfitPreviewLoader_OutfitPreviewAvatar__Class *klass; + MonitorData *monitor; + struct OutfitPreviewLoader_OutfitPreviewAvatar__Fields fields; +}; + struct __declspec(align(8)) List_1_OutfitPreviewLoader_OutfitPreviewAvatar___Fields { struct OutfitPreviewLoader_OutfitPreviewAvatar__Array *_items; int32_t _size; @@ -162463,18 +165203,6 @@ struct List_1_OutfitPreviewLoader_OutfitPreviewAvatar_ { struct List_1_OutfitPreviewLoader_OutfitPreviewAvatar___Fields fields; }; -struct __declspec(align(8)) OutfitPreviewLoader_OutfitPreviewAvatar__Fields { - struct String *characterName; - struct Avatar *avatar; - int32_t pose; -}; - -struct OutfitPreviewLoader_OutfitPreviewAvatar { - struct OutfitPreviewLoader_OutfitPreviewAvatar__Class *klass; - MonitorData *monitor; - struct OutfitPreviewLoader_OutfitPreviewAvatar__Fields fields; -}; - struct Avatar__Fields { struct Object_1__Fields _; }; @@ -162653,6 +165381,19 @@ struct TaskFactory_1_UnityEngine_Material_ { struct TaskFactory_1_UnityEngine_Material___Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Renderer_UnityEngine_Material_ { + int32_t hashCode; + int32_t next; + struct Renderer *key; + struct Material__Array *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Renderer_UnityEngine_Material___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Renderer_UnityEngine_Material___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Renderer_UnityEngine_Material_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_Renderer_UnityEngine_Material___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Renderer_UnityEngine_Material___Array *_entries; @@ -162672,19 +165413,6 @@ struct Dictionary_2_UnityEngine_Renderer_UnityEngine_Material_ { struct Dictionary_2_UnityEngine_Renderer_UnityEngine_Material___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Renderer_UnityEngine_Material_ { - int32_t hashCode; - int32_t next; - struct Renderer *key; - struct Material__Array *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Renderer_UnityEngine_Material___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Renderer_UnityEngine_Material___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Renderer_UnityEngine_Material_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Renderer_UnityEngine_Material___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Renderer_UnityEngine_Material___Array__Class *klass; MonitorData *monitor; @@ -162826,27 +165554,6 @@ struct InputActionType__Enum_1__Boxed { #endif }; -#if defined(_CPLUSPLUS_) -enum class InputAction_ActionFlags__Enum : int32_t { - WantsInitialStateCheck = 0x00000001, -}; - -#else -enum InputAction_ActionFlags__Enum { - InputAction_ActionFlags__Enum_WantsInitialStateCheck = 0x00000001, -}; - -#endif -struct InputAction_ActionFlags__Enum__Boxed { - struct InputAction_ActionFlags__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - InputAction_ActionFlags__Enum value; - #else - int32_t value; - #endif -}; - #if defined(_CPLUSPLUS_) enum class InputBinding_Flags__Enum : int32_t { None = 0x00000000, @@ -162896,6 +165603,27 @@ struct InputBinding__Boxed { struct InputBinding fields; }; +#if defined(_CPLUSPLUS_) +enum class InputAction_ActionFlags__Enum : int32_t { + WantsInitialStateCheck = 0x00000001, +}; + +#else +enum InputAction_ActionFlags__Enum { + InputAction_ActionFlags__Enum_WantsInitialStateCheck = 0x00000001, +}; + +#endif +struct InputAction_ActionFlags__Enum__Boxed { + struct InputAction_ActionFlags__Enum__Class *klass; + MonitorData *monitor; + #if defined(_CPLUSPLUS_) + InputAction_ActionFlags__Enum value; + #else + int32_t value; + #endif +}; + struct Nullable_1_UnityEngine_InputSystem_InputBinding_ { bool hasValue; struct InputBinding value; @@ -162907,6 +165635,16 @@ struct Nullable_1_UnityEngine_InputSystem_InputBinding___Boxed { struct Nullable_1_UnityEngine_InputSystem_InputBinding_ fields; }; +struct Action_1_UnityEngine_InputSystem_InputAction_CallbackContext___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_1_UnityEngine_InputSystem_InputAction_CallbackContext_ { + struct Action_1_UnityEngine_InputSystem_InputAction_CallbackContext___Class *klass; + MonitorData *monitor; + struct Action_1_UnityEngine_InputSystem_InputAction_CallbackContext___Fields fields; +}; + struct InlinedArray_1_System_Action_1__1 { int32_t length; struct Action_1_UnityEngine_InputSystem_InputAction_CallbackContext_ *firstValue; @@ -162975,229 +165713,6 @@ struct InputBinding__Array { struct InputBinding vector[32]; }; -#if defined(_CPLUSPLUS_) -enum class InputActionMap_Flags__Enum : int32_t { - NeedToResolveBindings = 0x00000001, - BindingResolutionNeedsFullReResolve = 0x00000002, - ControlsForEachActionInitialized = 0x00000004, - BindingsForEachActionInitialized = 0x00000008, -}; - -#else -enum InputActionMap_Flags__Enum { - InputActionMap_Flags__Enum_NeedToResolveBindings = 0x00000001, - InputActionMap_Flags__Enum_BindingResolutionNeedsFullReResolve = 0x00000002, - InputActionMap_Flags__Enum_ControlsForEachActionInitialized = 0x00000004, - InputActionMap_Flags__Enum_BindingsForEachActionInitialized = 0x00000008, -}; - -#endif -struct InputActionMap_Flags__Enum__Boxed { - struct InputActionMap_Flags__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - InputActionMap_Flags__Enum value; - #else - int32_t value; - #endif -}; - -struct InputActionMap_DeviceArray { - bool m_HaveValue; - int32_t m_DeviceCount; - struct InputDevice__Array *m_DeviceArray; -}; - -struct InputActionMap_DeviceArray__Boxed { - struct InputActionMap_DeviceArray__Class *klass; - MonitorData *monitor; - struct InputActionMap_DeviceArray fields; -}; - -struct __declspec(align(8)) InputActionMap__Fields { - struct String *m_Name; - struct String *m_Id; - struct InputActionAsset *m_Asset; - struct InputAction_1__Array *m_Actions; - struct InputBinding__Array *m_Bindings; - struct InputBinding__Array *m_BindingsForEachAction; - struct InputControl__Array *m_ControlsForEachAction; - int32_t m_EnabledActionsCount; - struct InputAction_1 *m_SingletonAction; - int32_t m_MapIndexInState; - struct InputActionState *m_State; - struct Nullable_1_UnityEngine_InputSystem_InputBinding_ m_BindingMask; - #if defined(_CPLUSPLUS_) - InputActionMap_Flags__Enum m_Flags; - #else - int32_t m_Flags; - #endif - int32_t m_ParameterOverridesCount; - struct InputActionRebindingExtensions_ParameterOverride__Array *m_ParameterOverrides; - struct InputActionMap_DeviceArray m_Devices; - struct CallbackArray_1_System_Action_1__1 m_ActionCallbacks; - struct Dictionary_2_System_String_System_Int32_ *m_ActionIndexByNameOrId; -}; - -struct InputActionMap { - struct InputActionMap__Class *klass; - MonitorData *monitor; - struct InputActionMap__Fields fields; -}; - -struct InputActionAsset__Fields { - struct ScriptableObject__Fields _; - struct InputActionMap__Array *m_ActionMaps; - struct InputControlScheme__Array *m_ControlSchemes; - struct InputActionState *m_SharedStateForAllMaps; - struct Nullable_1_UnityEngine_InputSystem_InputBinding_ m_BindingMask; - int32_t m_ParameterOverridesCount; - struct InputActionRebindingExtensions_ParameterOverride__Array *m_ParameterOverrides; - struct InputActionMap_DeviceArray m_Devices; -}; - -struct InputActionAsset { - struct InputActionAsset__Class *klass; - MonitorData *monitor; - struct InputActionAsset__Fields fields; -}; - -struct InputActionMap__Array { - struct InputActionMap__Array__Class *klass; - MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - struct InputActionMap *vector[32]; -}; - -struct InputControlScheme { - struct String *m_Name; - struct String *m_BindingGroup; - struct InputControlScheme_DeviceRequirement__Array *m_DeviceRequirements; -}; - -struct InputControlScheme__Boxed { - struct InputControlScheme__Class *klass; - MonitorData *monitor; - struct InputControlScheme fields; -}; - -#if defined(_CPLUSPLUS_) -enum class InputControlScheme_DeviceRequirement_Flags__Enum : int32_t { - None = 0x00000000, - Optional = 0x00000001, - Or = 0x00000002, -}; - -#else -enum InputControlScheme_DeviceRequirement_Flags__Enum { - InputControlScheme_DeviceRequirement_Flags__Enum_None = 0x00000000, - InputControlScheme_DeviceRequirement_Flags__Enum_Optional = 0x00000001, - InputControlScheme_DeviceRequirement_Flags__Enum_Or = 0x00000002, -}; - -#endif -struct InputControlScheme_DeviceRequirement_Flags__Enum__Boxed { - struct InputControlScheme_DeviceRequirement_Flags__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - InputControlScheme_DeviceRequirement_Flags__Enum value; - #else - int32_t value; - #endif -}; - -struct InputControlScheme_DeviceRequirement { - struct String *m_ControlPath; - #if defined(_CPLUSPLUS_) - InputControlScheme_DeviceRequirement_Flags__Enum m_Flags; - #else - int32_t m_Flags; - #endif -}; - -struct InputControlScheme_DeviceRequirement__Boxed { - struct InputControlScheme_DeviceRequirement__Class *klass; - MonitorData *monitor; - struct InputControlScheme_DeviceRequirement fields; -}; - -struct InputControlScheme_DeviceRequirement__Array { - struct InputControlScheme_DeviceRequirement__Array__Class *klass; - MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - struct InputControlScheme_DeviceRequirement vector[32]; -}; - -struct InputControlScheme__Array { - struct InputControlScheme__Array__Class *klass; - MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - struct InputControlScheme vector[32]; -}; - -struct InputActionState_UnmanagedMemory { - struct Void *basePtr; - int32_t mapCount; - int32_t actionCount; - int32_t interactionCount; - int32_t bindingCount; - int32_t controlCount; - int32_t compositeCount; - struct InputActionState_TriggerState *actionStates; - struct InputActionState_BindingState *bindingStates; - struct InputActionState_InteractionState *interactionStates; - float *controlMagnitudes; - float *compositeMagnitudes; - int32_t *enabledControls; - uint16_t *actionBindingIndicesAndCounts; - uint16_t *actionBindingIndices; - int32_t *controlIndexToBindingIndex; - uint16_t *controlGroupingAndComplexity; - bool controlGroupingInitialized; - struct InputActionState_ActionMapIndices *mapIndices; -}; - -struct InputActionState_UnmanagedMemory__Boxed { - struct InputActionState_UnmanagedMemory__Class *klass; - MonitorData *monitor; - struct InputActionState_UnmanagedMemory fields; -}; - -struct InputEventPtr { - struct InputEvent *m_EventPtr; -}; - -struct InputEventPtr__Boxed { - struct InputEventPtr__Class *klass; - MonitorData *monitor; - struct InputEventPtr fields; -}; - -struct __declspec(align(8)) InputActionState__Fields { - struct InputActionMap__Array *maps; - struct InputControl__Array *controls; - struct IInputInteraction__Array *interactions; - struct InputProcessor__Array *processors; - struct InputBindingComposite__Array *composites; - int32_t totalProcessorCount; - struct InputActionState_UnmanagedMemory memory; - bool m_OnBeforeUpdateHooked; - bool m_OnAfterUpdateHooked; - bool m_InProcessControlStateChange; - struct InputEventPtr m_CurrentlyProcessingThisEvent; - struct Action *m_OnBeforeUpdateDelegate; - struct Action *m_OnAfterUpdateDelegate; -}; - -struct InputActionState { - struct InputActionState__Class *klass; - MonitorData *monitor; - struct InputActionState__Fields fields; -}; - struct FourCC { int32_t m_Code; }; @@ -163328,6 +165843,46 @@ struct InputControl { struct InputControl__Fields fields; }; +#if defined(_CPLUSPLUS_) +enum class InputActionMap_Flags__Enum : int32_t { + NeedToResolveBindings = 0x00000001, + BindingResolutionNeedsFullReResolve = 0x00000002, + ControlsForEachActionInitialized = 0x00000004, + BindingsForEachActionInitialized = 0x00000008, +}; + +#else +enum InputActionMap_Flags__Enum { + InputActionMap_Flags__Enum_NeedToResolveBindings = 0x00000001, + InputActionMap_Flags__Enum_BindingResolutionNeedsFullReResolve = 0x00000002, + InputActionMap_Flags__Enum_ControlsForEachActionInitialized = 0x00000004, + InputActionMap_Flags__Enum_BindingsForEachActionInitialized = 0x00000008, +}; + +#endif +struct InputActionMap_Flags__Enum__Boxed { + struct InputActionMap_Flags__Enum__Class *klass; + MonitorData *monitor; + #if defined(_CPLUSPLUS_) + InputActionMap_Flags__Enum value; + #else + int32_t value; + #endif +}; + +struct InputActionRebindingExtensions_ParameterOverride { + struct String *objectRegistrationName; + struct String *parameter; + struct InputBinding bindingMask; + struct PrimitiveValue value; +}; + +struct InputActionRebindingExtensions_ParameterOverride__Boxed { + struct InputActionRebindingExtensions_ParameterOverride__Class *klass; + MonitorData *monitor; + struct InputActionRebindingExtensions_ParameterOverride fields; +}; + #if defined(_CPLUSPLUS_) enum class InputDevice_DeviceFlags__Enum : int32_t { UpdateBeforeRender = 0x00000001, @@ -163391,6 +165946,19 @@ struct InputDeviceDescription__Boxed { struct InputDeviceDescription fields; }; +struct InputDevice_ControlBitRangeNode { + uint16_t endBitOffset; + int16_t leftChildIndex; + uint16_t controlStartIndex; + uint8_t controlCount; +}; + +struct InputDevice_ControlBitRangeNode__Boxed { + struct InputDevice_ControlBitRangeNode__Class *klass; + MonitorData *monitor; + struct InputDevice_ControlBitRangeNode fields; +}; + struct InputDevice__Fields { struct InputControl__Fields _; #if defined(_CPLUSPLUS_) @@ -163419,6 +165987,359 @@ struct InputDevice { struct InputDevice__Fields fields; }; +struct InputActionMap_DeviceArray { + bool m_HaveValue; + int32_t m_DeviceCount; + struct InputDevice__Array *m_DeviceArray; +}; + +struct InputActionMap_DeviceArray__Boxed { + struct InputActionMap_DeviceArray__Class *klass; + MonitorData *monitor; + struct InputActionMap_DeviceArray fields; +}; + +struct __declspec(align(8)) InputActionMap__Fields { + struct String *m_Name; + struct String *m_Id; + struct InputActionAsset *m_Asset; + struct InputAction_1__Array *m_Actions; + struct InputBinding__Array *m_Bindings; + struct InputBinding__Array *m_BindingsForEachAction; + struct InputControl__Array *m_ControlsForEachAction; + int32_t m_EnabledActionsCount; + struct InputAction_1 *m_SingletonAction; + int32_t m_MapIndexInState; + struct InputActionState *m_State; + struct Nullable_1_UnityEngine_InputSystem_InputBinding_ m_BindingMask; + #if defined(_CPLUSPLUS_) + InputActionMap_Flags__Enum m_Flags; + #else + int32_t m_Flags; + #endif + int32_t m_ParameterOverridesCount; + struct InputActionRebindingExtensions_ParameterOverride__Array *m_ParameterOverrides; + struct InputActionMap_DeviceArray m_Devices; + struct CallbackArray_1_System_Action_1__1 m_ActionCallbacks; + struct Dictionary_2_System_String_System_Int32_ *m_ActionIndexByNameOrId; +}; + +struct InputActionMap { + struct InputActionMap__Class *klass; + MonitorData *monitor; + struct InputActionMap__Fields fields; +}; + +#if defined(_CPLUSPLUS_) +enum class InputControlScheme_DeviceRequirement_Flags__Enum : int32_t { + None = 0x00000000, + Optional = 0x00000001, + Or = 0x00000002, +}; + +#else +enum InputControlScheme_DeviceRequirement_Flags__Enum { + InputControlScheme_DeviceRequirement_Flags__Enum_None = 0x00000000, + InputControlScheme_DeviceRequirement_Flags__Enum_Optional = 0x00000001, + InputControlScheme_DeviceRequirement_Flags__Enum_Or = 0x00000002, +}; + +#endif +struct InputControlScheme_DeviceRequirement_Flags__Enum__Boxed { + struct InputControlScheme_DeviceRequirement_Flags__Enum__Class *klass; + MonitorData *monitor; + #if defined(_CPLUSPLUS_) + InputControlScheme_DeviceRequirement_Flags__Enum value; + #else + int32_t value; + #endif +}; + +struct InputControlScheme_DeviceRequirement { + struct String *m_ControlPath; + #if defined(_CPLUSPLUS_) + InputControlScheme_DeviceRequirement_Flags__Enum m_Flags; + #else + int32_t m_Flags; + #endif +}; + +struct InputControlScheme_DeviceRequirement__Boxed { + struct InputControlScheme_DeviceRequirement__Class *klass; + MonitorData *monitor; + struct InputControlScheme_DeviceRequirement fields; +}; + +struct InputControlScheme { + struct String *m_Name; + struct String *m_BindingGroup; + struct InputControlScheme_DeviceRequirement__Array *m_DeviceRequirements; +}; + +struct InputControlScheme__Boxed { + struct InputControlScheme__Class *klass; + MonitorData *monitor; + struct InputControlScheme fields; +}; + +struct InputActionAsset__Fields { + struct ScriptableObject__Fields _; + struct InputActionMap__Array *m_ActionMaps; + struct InputControlScheme__Array *m_ControlSchemes; + struct InputActionState *m_SharedStateForAllMaps; + struct Nullable_1_UnityEngine_InputSystem_InputBinding_ m_BindingMask; + int32_t m_ParameterOverridesCount; + struct InputActionRebindingExtensions_ParameterOverride__Array *m_ParameterOverrides; + struct InputActionMap_DeviceArray m_Devices; +}; + +struct InputActionAsset { + struct InputActionAsset__Class *klass; + MonitorData *monitor; + struct InputActionAsset__Fields fields; +}; + +struct InputActionMap__Array { + struct InputActionMap__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct InputActionMap *vector[32]; +}; + +struct InputControlScheme_DeviceRequirement__Array { + struct InputControlScheme_DeviceRequirement__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct InputControlScheme_DeviceRequirement vector[32]; +}; + +struct InputControlScheme__Array { + struct InputControlScheme__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct InputControlScheme vector[32]; +}; + +struct IInputInteraction { + struct IInputInteraction__Class *klass; + MonitorData *monitor; +}; + +struct InputProcessor { + struct InputProcessor__Class *klass; + MonitorData *monitor; +}; + +struct InputBindingComposite { + struct InputBindingComposite__Class *klass; + MonitorData *monitor; +}; + +struct InputActionState_TriggerState { + uint8_t m_Phase; + uint8_t m_Flags; + uint8_t m_MapIndex; + uint16_t m_ControlIndex; + double m_Time; + double m_StartTime; + uint16_t m_BindingIndex; + uint16_t m_InteractionIndex; + float m_Magnitude; + uint32_t m_LastPerformedInUpdate; + uint32_t m_LastCanceledInUpdate; + uint32_t m_PressedInUpdate; + uint32_t m_ReleasedInUpdate; +}; + +struct InputActionState_TriggerState__Boxed { + struct InputActionState_TriggerState__Class *klass; + MonitorData *monitor; + struct InputActionState_TriggerState fields; +}; + +struct InputActionState_BindingState { + uint8_t m_ControlCount; + uint8_t m_InteractionCount; + uint8_t m_ProcessorCount; + uint8_t m_MapIndex; + uint8_t m_Flags; + uint8_t m_PartIndex; + uint16_t m_ActionIndex; + uint16_t m_CompositeOrCompositeBindingIndex; + uint16_t m_ProcessorStartIndex; + uint16_t m_InteractionStartIndex; + uint16_t m_ControlStartIndex; + double m_PressTime; + int32_t m_TriggerEventIdForComposite; + int32_t __padding; +}; + +struct InputActionState_BindingState__Boxed { + struct InputActionState_BindingState__Class *klass; + MonitorData *monitor; + struct InputActionState_BindingState fields; +}; + +struct InputActionState_InteractionState { + uint16_t m_TriggerControlIndex; + uint8_t m_Phase; + uint8_t m_Flags; + float m_TimerDuration; + double m_StartTime; + double m_TimerStartTime; + double m_PerformedTime; + float m_TotalTimeoutCompletionTimeDone; + float m_TotalTimeoutCompletionTimeRemaining; + int64_t m_TimerMonitorIndex; +}; + +struct InputActionState_InteractionState__Boxed { + struct InputActionState_InteractionState__Class *klass; + MonitorData *monitor; + struct InputActionState_InteractionState fields; +}; + +struct InputActionState_ActionMapIndices { + int32_t actionStartIndex; + int32_t actionCount; + int32_t controlStartIndex; + int32_t controlCount; + int32_t bindingStartIndex; + int32_t bindingCount; + int32_t interactionStartIndex; + int32_t interactionCount; + int32_t processorStartIndex; + int32_t processorCount; + int32_t compositeStartIndex; + int32_t compositeCount; +}; + +struct InputActionState_ActionMapIndices__Boxed { + struct InputActionState_ActionMapIndices__Class *klass; + MonitorData *monitor; + struct InputActionState_ActionMapIndices fields; +}; + +struct InputActionState_UnmanagedMemory { + struct Void *basePtr; + int32_t mapCount; + int32_t actionCount; + int32_t interactionCount; + int32_t bindingCount; + int32_t controlCount; + int32_t compositeCount; + struct InputActionState_TriggerState *actionStates; + struct InputActionState_BindingState *bindingStates; + struct InputActionState_InteractionState *interactionStates; + float *controlMagnitudes; + float *compositeMagnitudes; + int32_t *enabledControls; + uint16_t *actionBindingIndicesAndCounts; + uint16_t *actionBindingIndices; + int32_t *controlIndexToBindingIndex; + uint16_t *controlGroupingAndComplexity; + bool controlGroupingInitialized; + struct InputActionState_ActionMapIndices *mapIndices; +}; + +struct InputActionState_UnmanagedMemory__Boxed { + struct InputActionState_UnmanagedMemory__Class *klass; + MonitorData *monitor; + struct InputActionState_UnmanagedMemory fields; +}; + +#if defined(_CPLUSPLUS_) +enum class NativeInputEventType__Enum : int32_t { + DeviceRemoved = 0x4452454d, + DeviceConfigChanged = 0x44434647, + Text = 0x54455854, + State = 0x53544154, + Delta = 0x444c5441, +}; + +#else +enum NativeInputEventType__Enum { + NativeInputEventType__Enum_DeviceRemoved = 0x4452454d, + NativeInputEventType__Enum_DeviceConfigChanged = 0x44434647, + NativeInputEventType__Enum_Text = 0x54455854, + NativeInputEventType__Enum_State = 0x53544154, + NativeInputEventType__Enum_Delta = 0x444c5441, +}; + +#endif +struct NativeInputEventType__Enum__Boxed { + struct NativeInputEventType__Enum__Class *klass; + MonitorData *monitor; + #if defined(_CPLUSPLUS_) + NativeInputEventType__Enum value; + #else + int32_t value; + #endif +}; + +struct NativeInputEvent { + #if defined(_CPLUSPLUS_) + NativeInputEventType__Enum type; + #else + int32_t type; + #endif + uint16_t sizeInBytes; + uint16_t deviceId; + double time; + int32_t eventId; +}; + +struct NativeInputEvent__Boxed { + struct NativeInputEvent__Class *klass; + MonitorData *monitor; + struct NativeInputEvent fields; +}; + +struct InputEvent { + struct NativeInputEvent m_Event; +}; + +struct InputEvent__Boxed { + struct InputEvent__Class *klass; + MonitorData *monitor; + struct InputEvent fields; +}; + +struct InputEventPtr { + struct InputEvent *m_EventPtr; +}; + +struct InputEventPtr__Boxed { + struct InputEventPtr__Class *klass; + MonitorData *monitor; + struct InputEventPtr fields; +}; + +struct __declspec(align(8)) InputActionState__Fields { + struct InputActionMap__Array *maps; + struct InputControl__Array *controls; + struct IInputInteraction__Array *interactions; + struct InputProcessor__Array *processors; + struct InputBindingComposite__Array *composites; + int32_t totalProcessorCount; + struct InputActionState_UnmanagedMemory memory; + bool m_OnBeforeUpdateHooked; + bool m_OnAfterUpdateHooked; + bool m_InProcessControlStateChange; + struct InputEventPtr m_CurrentlyProcessingThisEvent; + struct Action *m_OnBeforeUpdateDelegate; + struct Action *m_OnAfterUpdateDelegate; +}; + +struct InputActionState { + struct InputActionState__Class *klass; + MonitorData *monitor; + struct InputActionState__Fields fields; +}; + struct InternedString__Array { struct InternedString__Array__Class *klass; MonitorData *monitor; @@ -163427,19 +166348,6 @@ struct InternedString__Array { struct InternedString vector[32]; }; -struct InputDevice_ControlBitRangeNode { - uint16_t endBitOffset; - int16_t leftChildIndex; - uint16_t controlStartIndex; - uint8_t controlCount; -}; - -struct InputDevice_ControlBitRangeNode__Boxed { - struct InputDevice_ControlBitRangeNode__Class *klass; - MonitorData *monitor; - struct InputDevice_ControlBitRangeNode fields; -}; - struct InputDevice_ControlBitRangeNode__Array { struct InputDevice_ControlBitRangeNode__Array__Class *klass; MonitorData *monitor; @@ -163472,11 +166380,6 @@ struct InputControl__Array { struct InputControl *vector[32]; }; -struct IInputInteraction { - struct IInputInteraction__Class *klass; - MonitorData *monitor; -}; - struct IInputInteraction__Array { struct IInputInteraction__Array__Class *klass; MonitorData *monitor; @@ -163485,11 +166388,6 @@ struct IInputInteraction__Array { struct IInputInteraction *vector[32]; }; -struct InputProcessor { - struct InputProcessor__Class *klass; - MonitorData *monitor; -}; - struct TypeTable { struct Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_Type_ *table; }; @@ -163500,6 +166398,19 @@ struct TypeTable__Boxed { struct TypeTable fields; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_System_Type_ { + int32_t hashCode; + int32_t next; + struct InternedString key; + struct Type *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_System_Type___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_System_Type___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_System_Type_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_Type___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_System_Type___Array *_entries; @@ -163519,19 +166430,6 @@ struct Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_Type struct Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_Type___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_System_Type_ { - int32_t hashCode; - int32_t next; - struct InternedString key; - struct Type *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_System_Type___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_System_Type___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_System_Type_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_System_Type___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_System_Type___Array__Class *klass; MonitorData *monitor; @@ -163651,11 +166549,6 @@ struct InputProcessor__Array { struct InputProcessor *vector[32]; }; -struct InputBindingComposite { - struct InputBindingComposite__Class *klass; - MonitorData *monitor; -}; - struct InputBindingComposite_1_System_Single_ { struct InputBindingComposite_1_System_Single___Class *klass; MonitorData *monitor; @@ -163723,80 +166616,16 @@ struct InputBindingComposite__Array { struct InputBindingComposite *vector[32]; }; -struct InputActionState_TriggerState { - uint8_t m_Phase; - uint8_t m_Flags; - uint8_t m_MapIndex; - uint16_t m_ControlIndex; - double m_Time; - double m_StartTime; - uint16_t m_BindingIndex; - uint16_t m_InteractionIndex; - float m_Magnitude; - uint32_t m_LastPerformedInUpdate; - uint32_t m_LastCanceledInUpdate; - uint32_t m_PressedInUpdate; - uint32_t m_ReleasedInUpdate; -}; - -struct InputActionState_TriggerState__Boxed { - struct InputActionState_TriggerState__Class *klass; - MonitorData *monitor; - struct InputActionState_TriggerState fields; -}; - struct InputActionState_TriggerStatePtr { struct InputActionState_TriggerStatePtr__Class *klass; MonitorData *monitor; }; -struct InputActionState_BindingState { - uint8_t m_ControlCount; - uint8_t m_InteractionCount; - uint8_t m_ProcessorCount; - uint8_t m_MapIndex; - uint8_t m_Flags; - uint8_t m_PartIndex; - uint16_t m_ActionIndex; - uint16_t m_CompositeOrCompositeBindingIndex; - uint16_t m_ProcessorStartIndex; - uint16_t m_InteractionStartIndex; - uint16_t m_ControlStartIndex; - double m_PressTime; - int32_t m_TriggerEventIdForComposite; - int32_t __padding; -}; - -struct InputActionState_BindingState__Boxed { - struct InputActionState_BindingState__Class *klass; - MonitorData *monitor; - struct InputActionState_BindingState fields; -}; - struct InputActionState_BindingStatePtr { struct InputActionState_BindingStatePtr__Class *klass; MonitorData *monitor; }; -struct InputActionState_InteractionState { - uint16_t m_TriggerControlIndex; - uint8_t m_Phase; - uint8_t m_Flags; - float m_TimerDuration; - double m_StartTime; - double m_TimerStartTime; - double m_PerformedTime; - float m_TotalTimeoutCompletionTimeDone; - float m_TotalTimeoutCompletionTimeRemaining; - int64_t m_TimerMonitorIndex; -}; - -struct InputActionState_InteractionState__Boxed { - struct InputActionState_InteractionState__Class *klass; - MonitorData *monitor; - struct InputActionState_InteractionState fields; -}; - struct InputActionState_InteractionStatePtr { struct InputActionState_InteractionStatePtr__Class *klass; MonitorData *monitor; @@ -163812,89 +166641,11 @@ struct UInt16Ptr { MonitorData *monitor; }; -struct InputActionState_ActionMapIndices { - int32_t actionStartIndex; - int32_t actionCount; - int32_t controlStartIndex; - int32_t controlCount; - int32_t bindingStartIndex; - int32_t bindingCount; - int32_t interactionStartIndex; - int32_t interactionCount; - int32_t processorStartIndex; - int32_t processorCount; - int32_t compositeStartIndex; - int32_t compositeCount; -}; - -struct InputActionState_ActionMapIndices__Boxed { - struct InputActionState_ActionMapIndices__Class *klass; - MonitorData *monitor; - struct InputActionState_ActionMapIndices fields; -}; - struct InputActionState_ActionMapIndicesPtr { struct InputActionState_ActionMapIndicesPtr__Class *klass; MonitorData *monitor; }; -#if defined(_CPLUSPLUS_) -enum class NativeInputEventType__Enum : int32_t { - DeviceRemoved = 0x4452454d, - DeviceConfigChanged = 0x44434647, - Text = 0x54455854, - State = 0x53544154, - Delta = 0x444c5441, -}; - -#else -enum NativeInputEventType__Enum { - NativeInputEventType__Enum_DeviceRemoved = 0x4452454d, - NativeInputEventType__Enum_DeviceConfigChanged = 0x44434647, - NativeInputEventType__Enum_Text = 0x54455854, - NativeInputEventType__Enum_State = 0x53544154, - NativeInputEventType__Enum_Delta = 0x444c5441, -}; - -#endif -struct NativeInputEventType__Enum__Boxed { - struct NativeInputEventType__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - NativeInputEventType__Enum value; - #else - int32_t value; - #endif -}; - -struct NativeInputEvent { - #if defined(_CPLUSPLUS_) - NativeInputEventType__Enum type; - #else - int32_t type; - #endif - uint16_t sizeInBytes; - uint16_t deviceId; - double time; - int32_t eventId; -}; - -struct NativeInputEvent__Boxed { - struct NativeInputEvent__Class *klass; - MonitorData *monitor; - struct NativeInputEvent fields; -}; - -struct InputEvent { - struct NativeInputEvent m_Event; -}; - -struct InputEvent__Boxed { - struct InputEvent__Class *klass; - MonitorData *monitor; - struct InputEvent fields; -}; - struct InputEventPtr_1 { struct InputEventPtr_1__Class *klass; MonitorData *monitor; @@ -163912,6 +166663,16 @@ struct InlinedArray_1_System_Runtime_InteropServices_GCHandle___Boxed { struct InlinedArray_1_System_Runtime_InteropServices_GCHandle_ fields; }; +struct Action_2_Object_UnityEngine_InputSystem_InputActionChange___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_2_Object_UnityEngine_InputSystem_InputActionChange_ { + struct Action_2_Object_UnityEngine_InputSystem_InputActionChange___Class *klass; + MonitorData *monitor; + struct Action_2_Object_UnityEngine_InputSystem_InputActionChange___Fields fields; +}; + struct InlinedArray_1_System_Action_2_ { int32_t length; struct Action_2_Object_UnityEngine_InputSystem_InputActionChange_ *firstValue; @@ -163987,16 +166748,6 @@ struct IEnumerator_1_System_Runtime_InteropServices_GCHandle_ { MonitorData *monitor; }; -struct Action_2_Object_UnityEngine_InputSystem_InputActionChange___Fields { - struct MulticastDelegate__Fields _; -}; - -struct Action_2_Object_UnityEngine_InputSystem_InputActionChange_ { - struct Action_2_Object_UnityEngine_InputSystem_InputActionChange___Class *klass; - MonitorData *monitor; - struct Action_2_Object_UnityEngine_InputSystem_InputActionChange___Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class InputActionChange__Enum : int32_t { ActionEnabled = 0x00000000, @@ -164060,19 +166811,6 @@ struct IEnumerator_1_System_Action_1__4 { MonitorData *monitor; }; -struct InputActionRebindingExtensions_ParameterOverride { - struct String *objectRegistrationName; - struct String *parameter; - struct InputBinding bindingMask; - struct PrimitiveValue value; -}; - -struct InputActionRebindingExtensions_ParameterOverride__Boxed { - struct InputActionRebindingExtensions_ParameterOverride__Class *klass; - MonitorData *monitor; - struct InputActionRebindingExtensions_ParameterOverride fields; -}; - struct InputActionRebindingExtensions_ParameterOverride__Array { struct InputActionRebindingExtensions_ParameterOverride__Array__Class *klass; MonitorData *monitor; @@ -164152,16 +166890,6 @@ struct InputAction_1__Array { struct InputAction_1 *vector[32]; }; -struct Action_1_UnityEngine_InputSystem_InputAction_CallbackContext___Fields { - struct MulticastDelegate__Fields _; -}; - -struct Action_1_UnityEngine_InputSystem_InputAction_CallbackContext_ { - struct Action_1_UnityEngine_InputSystem_InputAction_CallbackContext___Class *klass; - MonitorData *monitor; - struct Action_1_UnityEngine_InputSystem_InputAction_CallbackContext___Fields fields; -}; - struct InputAction_CallbackContext { struct InputActionState *m_State; int32_t m_ActionIndex; @@ -164403,25 +167131,6 @@ struct PlayerChannels { struct PlayerChannels__Fields fields; }; -struct __declspec(align(8)) Dictionary_2_System_UInt16_Dissonance_PlayerChannel___Fields { - struct Int32__Array *_buckets; - struct Dictionary_2_TKey_TValue_Entry_System_UInt16_Dissonance_PlayerChannel___Array *_entries; - int32_t _count; - int32_t _freeList; - int32_t _freeCount; - int32_t _version; - struct IEqualityComparer_1_System_UInt16_ *_comparer; - struct Dictionary_2_TKey_TValue_KeyCollection_System_UInt16_Dissonance_PlayerChannel_ *_keys; - struct Dictionary_2_TKey_TValue_ValueCollection_System_UInt16_Dissonance_PlayerChannel_ *_values; - struct Object *_syncRoot; -}; - -struct Dictionary_2_System_UInt16_Dissonance_PlayerChannel_ { - struct Dictionary_2_System_UInt16_Dissonance_PlayerChannel___Class *klass; - MonitorData *monitor; - struct Dictionary_2_System_UInt16_Dissonance_PlayerChannel___Fields fields; -}; - struct PlayerChannel { uint16_t _subscriptionId; struct String *_playerId; @@ -164448,6 +167157,25 @@ struct Dictionary_2_TKey_TValue_Entry_System_UInt16_Dissonance_PlayerChannel___B struct Dictionary_2_TKey_TValue_Entry_System_UInt16_Dissonance_PlayerChannel_ fields; }; +struct __declspec(align(8)) Dictionary_2_System_UInt16_Dissonance_PlayerChannel___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_System_UInt16_Dissonance_PlayerChannel___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_System_UInt16_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_System_UInt16_Dissonance_PlayerChannel_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_System_UInt16_Dissonance_PlayerChannel_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_System_UInt16_Dissonance_PlayerChannel_ { + struct Dictionary_2_System_UInt16_Dissonance_PlayerChannel___Class *klass; + MonitorData *monitor; + struct Dictionary_2_System_UInt16_Dissonance_PlayerChannel___Fields fields; +}; + struct __declspec(align(8)) ChannelProperties__Fields { struct IChannelPriorityProvider *_defaultPriority; uint16_t _Id_k__BackingField; @@ -164649,25 +167377,6 @@ struct RoomChannels { struct RoomChannels__Fields fields; }; -struct __declspec(align(8)) Dictionary_2_System_UInt16_Dissonance_RoomChannel___Fields { - struct Int32__Array *_buckets; - struct Dictionary_2_TKey_TValue_Entry_System_UInt16_Dissonance_RoomChannel___Array *_entries; - int32_t _count; - int32_t _freeList; - int32_t _freeCount; - int32_t _version; - struct IEqualityComparer_1_System_UInt16_ *_comparer; - struct Dictionary_2_TKey_TValue_KeyCollection_System_UInt16_Dissonance_RoomChannel_ *_keys; - struct Dictionary_2_TKey_TValue_ValueCollection_System_UInt16_Dissonance_RoomChannel_ *_values; - struct Object *_syncRoot; -}; - -struct Dictionary_2_System_UInt16_Dissonance_RoomChannel_ { - struct Dictionary_2_System_UInt16_Dissonance_RoomChannel___Class *klass; - MonitorData *monitor; - struct Dictionary_2_System_UInt16_Dissonance_RoomChannel___Fields fields; -}; - struct RoomChannel { uint16_t _subscriptionId; struct RoomName _roomId; @@ -164694,6 +167403,25 @@ struct Dictionary_2_TKey_TValue_Entry_System_UInt16_Dissonance_RoomChannel___Box struct Dictionary_2_TKey_TValue_Entry_System_UInt16_Dissonance_RoomChannel_ fields; }; +struct __declspec(align(8)) Dictionary_2_System_UInt16_Dissonance_RoomChannel___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_System_UInt16_Dissonance_RoomChannel___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_System_UInt16_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_System_UInt16_Dissonance_RoomChannel_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_System_UInt16_Dissonance_RoomChannel_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_System_UInt16_Dissonance_RoomChannel_ { + struct Dictionary_2_System_UInt16_Dissonance_RoomChannel___Class *klass; + MonitorData *monitor; + struct Dictionary_2_System_UInt16_Dissonance_RoomChannel___Fields fields; +}; + struct Dictionary_2_TKey_TValue_Entry_System_UInt16_Dissonance_RoomChannel___Array { struct Dictionary_2_TKey_TValue_Entry_System_UInt16_Dissonance_RoomChannel___Array__Class *klass; MonitorData *monitor; @@ -164892,6 +167620,19 @@ struct PlayerTrackerManager { struct PlayerTrackerManager__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_Dissonance_IDissonancePlayer_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct IDissonancePlayer *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_Dissonance_IDissonancePlayer___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_Dissonance_IDissonancePlayer___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_Dissonance_IDissonancePlayer_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_Dissonance_IDissonancePlayer___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_Dissonance_IDissonancePlayer___Array *_entries; @@ -164911,19 +167652,6 @@ struct Dictionary_2_System_String_Dissonance_IDissonancePlayer_ { struct Dictionary_2_System_String_Dissonance_IDissonancePlayer___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_Dissonance_IDissonancePlayer_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct IDissonancePlayer *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_Dissonance_IDissonancePlayer___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_Dissonance_IDissonancePlayer___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_Dissonance_IDissonancePlayer_ fields; -}; - struct IDissonancePlayer { struct IDissonancePlayer__Class *klass; MonitorData *monitor; @@ -165017,6 +167745,19 @@ struct PlayerCollection { struct PlayerCollection__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_Dissonance_VoicePlayerState_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct VoicePlayerState *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_Dissonance_VoicePlayerState___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_Dissonance_VoicePlayerState___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_Dissonance_VoicePlayerState_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_Dissonance_VoicePlayerState___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_Dissonance_VoicePlayerState___Array *_entries; @@ -165036,19 +167777,6 @@ struct Dictionary_2_System_String_Dissonance_VoicePlayerState_ { struct Dictionary_2_System_String_Dissonance_VoicePlayerState___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_Dissonance_VoicePlayerState_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct VoicePlayerState *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_Dissonance_VoicePlayerState___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_Dissonance_VoicePlayerState___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_Dissonance_VoicePlayerState_ fields; -}; - struct __declspec(align(8)) VoicePlayerState__Fields { struct Action_1_Dissonance_VoicePlayerState_ *OnStartedSpeaking; struct Action_1_Dissonance_VoicePlayerState_ *OnStoppedSpeaking; @@ -165155,19 +167883,6 @@ struct RoomEvent__Boxed { struct RoomEvent fields; }; -struct __declspec(align(8)) List_1_Dissonance_RemoteChannel___Fields { - struct RemoteChannel__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Dissonance_RemoteChannel_ { - struct List_1_Dissonance_RemoteChannel___Class *klass; - MonitorData *monitor; - struct List_1_Dissonance_RemoteChannel___Fields fields; -}; - struct PlaybackOptions { bool _IsPositional_k__BackingField; float _AmplitudeMultiplier_k__BackingField; @@ -165200,6 +167915,19 @@ struct RemoteChannel__Boxed { struct RemoteChannel fields; }; +struct __declspec(align(8)) List_1_Dissonance_RemoteChannel___Fields { + struct RemoteChannel__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Dissonance_RemoteChannel_ { + struct List_1_Dissonance_RemoteChannel___Class *klass; + MonitorData *monitor; + struct List_1_Dissonance_RemoteChannel___Fields fields; +}; + struct RemoteChannel__Array { struct RemoteChannel__Array__Class *klass; MonitorData *monitor; @@ -165764,6 +168492,11 @@ struct ArraySegment_1_Single___Boxed { struct ArraySegment_1_Single_ fields; }; +struct IVoiceActivationListener { + struct IVoiceActivationListener__Class *klass; + MonitorData *monitor; +}; + struct __declspec(align(8)) List_1_Dissonance_VAD_IVoiceActivationListener___Fields { struct IVoiceActivationListener__Array *_items; int32_t _size; @@ -165777,11 +168510,6 @@ struct List_1_Dissonance_VAD_IVoiceActivationListener_ { struct List_1_Dissonance_VAD_IVoiceActivationListener___Fields fields; }; -struct IVoiceActivationListener { - struct IVoiceActivationListener__Class *klass; - MonitorData *monitor; -}; - struct IVoiceActivationListener__Array { struct IVoiceActivationListener__Array__Class *klass; MonitorData *monitor; @@ -165795,6 +168523,11 @@ struct IEnumerator_1_Dissonance_VAD_IVoiceActivationListener_ { MonitorData *monitor; }; +struct IMicrophoneSubscriber { + struct IMicrophoneSubscriber__Class *klass; + MonitorData *monitor; +}; + struct __declspec(align(8)) List_1_Dissonance_Audio_Capture_IMicrophoneSubscriber___Fields { struct IMicrophoneSubscriber__Array *_items; int32_t _size; @@ -165808,11 +168541,6 @@ struct List_1_Dissonance_Audio_Capture_IMicrophoneSubscriber_ { struct List_1_Dissonance_Audio_Capture_IMicrophoneSubscriber___Fields fields; }; -struct IMicrophoneSubscriber { - struct IMicrophoneSubscriber__Class *klass; - MonitorData *monitor; -}; - struct IMicrophoneSubscriber__Array { struct IMicrophoneSubscriber__Array__Class *klass; MonitorData *monitor; @@ -165904,21 +168632,6 @@ struct SpeechSessionStream { struct SpeechSessionStream__Fields fields; }; -struct __declspec(align(8)) Queue_1_Dissonance_Audio_Playback_SpeechSession___Fields { - struct SpeechSession__Array *_array; - int32_t _head; - int32_t _tail; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct Queue_1_Dissonance_Audio_Playback_SpeechSession_ { - struct Queue_1_Dissonance_Audio_Playback_SpeechSession___Class *klass; - MonitorData *monitor; - struct Queue_1_Dissonance_Audio_Playback_SpeechSession___Fields fields; -}; - struct SessionContext { struct String *PlayerName; uint32_t Id; @@ -165945,6 +168658,21 @@ struct SpeechSession__Boxed { struct SpeechSession fields; }; +struct __declspec(align(8)) Queue_1_Dissonance_Audio_Playback_SpeechSession___Fields { + struct SpeechSession__Array *_array; + int32_t _head; + int32_t _tail; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct Queue_1_Dissonance_Audio_Playback_SpeechSession_ { + struct Queue_1_Dissonance_Audio_Playback_SpeechSession___Class *klass; + MonitorData *monitor; + struct Queue_1_Dissonance_Audio_Playback_SpeechSession___Fields fields; +}; + struct IRemoteChannelProvider { struct IRemoteChannelProvider__Class *klass; MonitorData *monitor; @@ -166008,6 +168736,20 @@ struct Action_1_Dissonance_Audio_Playback_DecoderPipeline_ { struct Action_1_Dissonance_Audio_Playback_DecoderPipeline___Fields fields; }; +struct VoicePacket { + struct String *SenderPlayerId; + struct ArraySegment_1_Byte_ EncodedAudioFrame; + uint32_t SequenceNumber; + struct List_1_Dissonance_RemoteChannel_ *Channels; + struct PlaybackOptions _PlaybackOptions_k__BackingField; +}; + +struct VoicePacket__Boxed { + struct VoicePacket__Class *klass; + MonitorData *monitor; + struct VoicePacket fields; +}; + struct __declspec(align(8)) TransferBuffer_1_Dissonance_Networking_VoicePacket___Fields { struct VoicePacket__Array *_buffer; int32_t _readHead; @@ -166023,20 +168765,6 @@ struct TransferBuffer_1_Dissonance_Networking_VoicePacket_ { struct TransferBuffer_1_Dissonance_Networking_VoicePacket___Fields fields; }; -struct VoicePacket { - struct String *SenderPlayerId; - struct ArraySegment_1_Byte_ EncodedAudioFrame; - uint32_t SequenceNumber; - struct List_1_Dissonance_RemoteChannel_ *Channels; - struct PlaybackOptions _PlaybackOptions_k__BackingField; -}; - -struct VoicePacket__Boxed { - struct VoicePacket__Class *klass; - MonitorData *monitor; - struct VoicePacket fields; -}; - struct VoicePacket__Array { struct VoicePacket__Array__Class *klass; MonitorData *monitor; @@ -166491,6 +169219,11 @@ struct Nullable_1_Dissonance_Audio_Playback_SpeechSession___Boxed { struct Nullable_1_Dissonance_Audio_Playback_SpeechSession_ fields; }; +struct IAudioOutputSubscriber { + struct IAudioOutputSubscriber__Class *klass; + MonitorData *monitor; +}; + struct SamplePlaybackComponent__Fields { struct MonoBehaviour__Fields _; struct Single__Array *_temp; @@ -166550,11 +169283,6 @@ struct ReaderWriterCount { struct ReaderWriterCount__Fields fields; }; -struct IAudioOutputSubscriber { - struct IAudioOutputSubscriber__Class *klass; - MonitorData *monitor; -}; - struct IAudioOutputSubscriber__Array { struct IAudioOutputSubscriber__Array__Class *klass; MonitorData *monitor; @@ -166784,19 +169512,6 @@ struct ScrollRect_ScrollRectEvent { struct ScrollRect_ScrollRectEvent__Fields fields; }; -struct __declspec(align(8)) List_1_Horror_Menu_MapListItem___Fields { - struct Menu_MapListItem__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Horror_Menu_MapListItem_ { - struct List_1_Horror_Menu_MapListItem___Class *klass; - MonitorData *monitor; - struct List_1_Horror_Menu_MapListItem___Fields fields; -}; - struct __declspec(align(8)) Menu_MapListItem__Fields { #if defined(_CPLUSPLUS_) DevourMap__Enum map; @@ -166813,6 +169528,19 @@ struct Menu_MapListItem { struct Menu_MapListItem__Fields fields; }; +struct __declspec(align(8)) List_1_Horror_Menu_MapListItem___Fields { + struct Menu_MapListItem__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Horror_Menu_MapListItem_ { + struct List_1_Horror_Menu_MapListItem___Class *klass; + MonitorData *monitor; + struct List_1_Horror_Menu_MapListItem___Fields fields; +}; + struct Menu_MapListItem__Array { struct Menu_MapListItem__Array__Class *klass; MonitorData *monitor; @@ -167053,33 +169781,6 @@ struct KeyCode__Enum__Array { KeyCode__Enum vector[32]; }; -struct PlayerStatsController__Fields { - struct MonoBehaviour__Fields _; - struct Transform *Content; - struct GameObject *CategoryPrefab; - struct GameObject *ItemPrefab; - struct ScrollRect *ScrollRect; - struct PlayerStatsController_Category__Array *categories; -}; - -struct PlayerStatsController { - struct PlayerStatsController__Class *klass; - MonitorData *monitor; - struct PlayerStatsController__Fields fields; -}; - -struct PlayerStatsController_Category { - struct String *localizedKey; - struct PlayerStatsController_Stat__Array *stats; - bool calculateTotal; -}; - -struct PlayerStatsController_Category__Boxed { - struct PlayerStatsController_Category__Class *klass; - MonitorData *monitor; - struct PlayerStatsController_Category fields; -}; - struct __declspec(align(8)) PlayerStatsController_Stat__Fields { struct String *name; struct String *localizedKey; @@ -167096,6 +169797,33 @@ struct PlayerStatsController_Stat { struct PlayerStatsController_Stat__Fields fields; }; +struct PlayerStatsController_Category { + struct String *localizedKey; + struct PlayerStatsController_Stat__Array *stats; + bool calculateTotal; +}; + +struct PlayerStatsController_Category__Boxed { + struct PlayerStatsController_Category__Class *klass; + MonitorData *monitor; + struct PlayerStatsController_Category fields; +}; + +struct PlayerStatsController__Fields { + struct MonoBehaviour__Fields _; + struct Transform *Content; + struct GameObject *CategoryPrefab; + struct GameObject *ItemPrefab; + struct ScrollRect *ScrollRect; + struct PlayerStatsController_Category__Array *categories; +}; + +struct PlayerStatsController { + struct PlayerStatsController__Class *klass; + MonitorData *monitor; + struct PlayerStatsController__Fields fields; +}; + struct PlayerStatsController_Stat__Array { struct PlayerStatsController_Stat__Array__Class *klass; MonitorData *monitor; @@ -167112,21 +169840,6 @@ struct PlayerStatsController_Category__Array { struct PlayerStatsController_Category vector[32]; }; -struct __declspec(align(8)) Menu_ChallengeContainer__Fields { - struct Text *baseChallenge; - struct Text *difficultyModifier; - struct Text *mapModifier; - struct Text *expRewardText; - struct Image *mapImage; - struct GameObject *completedIcon; -}; - -struct Menu_ChallengeContainer { - struct Menu_ChallengeContainer__Class *klass; - MonitorData *monitor; - struct Menu_ChallengeContainer__Fields fields; -}; - struct Menu_ChallengeContainer__Array { struct Menu_ChallengeContainer__Array__Class *klass; MonitorData *monitor; @@ -167135,66 +169848,6 @@ struct Menu_ChallengeContainer__Array { struct Menu_ChallengeContainer *vector[32]; }; -#if defined(_CPLUSPLUS_) -enum class IngameStatsTracker_AwardType__Enum : int32_t { - MostBanishes = 0x00000000, - MostRevives = 0x00000001, - MostStaggers = 0x00000002, - LeastDeaths = 0x00000003, -}; - -#else -enum IngameStatsTracker_AwardType__Enum { - IngameStatsTracker_AwardType__Enum_MostBanishes = 0x00000000, - IngameStatsTracker_AwardType__Enum_MostRevives = 0x00000001, - IngameStatsTracker_AwardType__Enum_MostStaggers = 0x00000002, - IngameStatsTracker_AwardType__Enum_LeastDeaths = 0x00000003, -}; - -#endif -struct IngameStatsTracker_AwardType__Enum__Boxed { - struct IngameStatsTracker_AwardType__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - IngameStatsTracker_AwardType__Enum value; - #else - int32_t value; - #endif -}; - -struct __declspec(align(8)) Menu_GameStatsAward__Fields { - #if defined(_CPLUSPLUS_) - IngameStatsTracker_AwardType__Enum awardType; - #else - int32_t awardType; - #endif - struct Text *awardTitle; - struct Text *awardDescription; - struct Menu_GameStatsAwardEntry__Array *entries; -}; - -struct Menu_GameStatsAward { - struct Menu_GameStatsAward__Class *klass; - MonitorData *monitor; - struct Menu_GameStatsAward__Fields fields; -}; - -struct __declspec(align(8)) Menu_GameStatsAwardEntry__Fields { - struct GameObject *container; - struct Image *playerIcon; - struct Image *winnerIcon; - struct Text *playerName; - struct Text *statText; - int32_t statValue; - struct String *playerId; -}; - -struct Menu_GameStatsAwardEntry { - struct Menu_GameStatsAwardEntry__Class *klass; - MonitorData *monitor; - struct Menu_GameStatsAwardEntry__Fields fields; -}; - struct Menu_GameStatsAwardEntry__Array { struct Menu_GameStatsAwardEntry__Array__Class *klass; MonitorData *monitor; @@ -168011,25 +170664,6 @@ struct SteamInventoryValidator { struct SteamInventoryValidator__Fields fields; }; -struct __declspec(align(8)) Dictionary_2_Horror_DevourMap_Horror_Menu_MapReleasedState___Fields { - struct Int32__Array *_buckets; - struct Dictionary_2_TKey_TValue_Entry_Horror_DevourMap_Horror_Menu_MapReleasedState___Array *_entries; - int32_t _count; - int32_t _freeList; - int32_t _freeCount; - int32_t _version; - struct IEqualityComparer_1_Horror_DevourMap_ *_comparer; - struct Dictionary_2_TKey_TValue_KeyCollection_Horror_DevourMap_Horror_Menu_MapReleasedState_ *_keys; - struct Dictionary_2_TKey_TValue_ValueCollection_Horror_DevourMap_Horror_Menu_MapReleasedState_ *_values; - struct Object *_syncRoot; -}; - -struct Dictionary_2_Horror_DevourMap_Horror_Menu_MapReleasedState_ { - struct Dictionary_2_Horror_DevourMap_Horror_Menu_MapReleasedState___Class *klass; - MonitorData *monitor; - struct Dictionary_2_Horror_DevourMap_Horror_Menu_MapReleasedState___Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class Menu_MapReleasedState__Enum : int32_t { Dev = 0x00000000, @@ -168074,6 +170708,25 @@ struct Dictionary_2_TKey_TValue_Entry_Horror_DevourMap_Horror_Menu_MapReleasedSt struct Dictionary_2_TKey_TValue_Entry_Horror_DevourMap_Horror_Menu_MapReleasedState_ fields; }; +struct __declspec(align(8)) Dictionary_2_Horror_DevourMap_Horror_Menu_MapReleasedState___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_Horror_DevourMap_Horror_Menu_MapReleasedState___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_Horror_DevourMap_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_Horror_DevourMap_Horror_Menu_MapReleasedState_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_Horror_DevourMap_Horror_Menu_MapReleasedState_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_Horror_DevourMap_Horror_Menu_MapReleasedState_ { + struct Dictionary_2_Horror_DevourMap_Horror_Menu_MapReleasedState___Class *klass; + MonitorData *monitor; + struct Dictionary_2_Horror_DevourMap_Horror_Menu_MapReleasedState___Fields fields; +}; + struct Dictionary_2_TKey_TValue_Entry_Horror_DevourMap_Horror_Menu_MapReleasedState___Array { struct Dictionary_2_TKey_TValue_Entry_Horror_DevourMap_Horror_Menu_MapReleasedState___Array__Class *klass; MonitorData *monitor; @@ -168357,6 +171010,19 @@ struct VolumeFaderSettings { struct VolumeFaderSettings__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_Dissonance_VoicePlayerState_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct VoicePlayerState *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_Dissonance_VoicePlayerState___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_Dissonance_VoicePlayerState___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_Dissonance_VoicePlayerState_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_Dissonance_VoicePlayerState___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_Dissonance_VoicePlayerState___Array *_entries; @@ -168376,19 +171042,6 @@ struct Dictionary_2_System_Int32_Dissonance_VoicePlayerState_ { struct Dictionary_2_System_Int32_Dissonance_VoicePlayerState___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_Dissonance_VoicePlayerState_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct VoicePlayerState *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_Dissonance_VoicePlayerState___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_Dissonance_VoicePlayerState___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_Dissonance_VoicePlayerState_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_Dissonance_VoicePlayerState___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_Dissonance_VoicePlayerState___Array__Class *klass; MonitorData *monitor; @@ -168461,6 +171114,19 @@ struct Attribute_1__Array { struct Attribute_1 *vector[32]; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_Opsive_UltimateCharacterController_Traits_Attribute_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct Attribute_1 *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_Opsive_UltimateCharacterController_Traits_Attribute___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_Opsive_UltimateCharacterController_Traits_Attribute___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_Opsive_UltimateCharacterController_Traits_Attribute_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_Opsive_UltimateCharacterController_Traits_Attribute___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_Opsive_UltimateCharacterController_Traits_Attribute___Array *_entries; @@ -168480,19 +171146,6 @@ struct Dictionary_2_System_String_Opsive_UltimateCharacterController_Traits_Attr struct Dictionary_2_System_String_Opsive_UltimateCharacterController_Traits_Attribute___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_Opsive_UltimateCharacterController_Traits_Attribute_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct Attribute_1 *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_Opsive_UltimateCharacterController_Traits_Attribute___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_Opsive_UltimateCharacterController_Traits_Attribute___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_Opsive_UltimateCharacterController_Traits_Attribute_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_String_Opsive_UltimateCharacterController_Traits_Attribute___Array { struct Dictionary_2_TKey_TValue_Entry_System_String_Opsive_UltimateCharacterController_Traits_Attribute___Array__Class *klass; MonitorData *monitor; @@ -168560,6 +171213,225 @@ struct IEnumerable_1_Opsive_UltimateCharacterController_Traits_Attribute_ { MonitorData *monitor; }; +struct ToggleLocalRainOnPlayer__Fields { + struct MonoBehaviour__Fields _; + struct Survival *m_Survival; + bool SetAsKillboxes; + int32_t m_TriggerCount; + struct SurvivalObjectBurnController *m_BurnController; + struct MapController *m_MapController; + struct Collider__Array *m_Triggers; +}; + +struct ToggleLocalRainOnPlayer { + struct ToggleLocalRainOnPlayer__Class *klass; + MonitorData *monitor; + struct ToggleLocalRainOnPlayer__Fields fields; +}; + +#if defined(_CPLUSPLUS_) +enum class DynamicBone_UpdateMode__Enum : int32_t { + Normal = 0x00000000, + AnimatePhysics = 0x00000001, + UnscaledTime = 0x00000002, + Default = 0x00000003, +}; + +#else +enum DynamicBone_UpdateMode__Enum { + DynamicBone_UpdateMode__Enum_Normal = 0x00000000, + DynamicBone_UpdateMode__Enum_AnimatePhysics = 0x00000001, + DynamicBone_UpdateMode__Enum_UnscaledTime = 0x00000002, + DynamicBone_UpdateMode__Enum_Default = 0x00000003, +}; + +#endif +struct DynamicBone_UpdateMode__Enum__Boxed { + struct DynamicBone_UpdateMode__Enum__Class *klass; + MonitorData *monitor; + #if defined(_CPLUSPLUS_) + DynamicBone_UpdateMode__Enum value; + #else + int32_t value; + #endif +}; + +#if defined(_CPLUSPLUS_) +enum class DynamicBone_FreezeAxis__Enum : int32_t { + None = 0x00000000, + X = 0x00000001, + Y = 0x00000002, + Z = 0x00000003, +}; + +#else +enum DynamicBone_FreezeAxis__Enum { + DynamicBone_FreezeAxis__Enum_None = 0x00000000, + DynamicBone_FreezeAxis__Enum_X = 0x00000001, + DynamicBone_FreezeAxis__Enum_Y = 0x00000002, + DynamicBone_FreezeAxis__Enum_Z = 0x00000003, +}; + +#endif +struct DynamicBone_FreezeAxis__Enum__Boxed { + struct DynamicBone_FreezeAxis__Enum__Class *klass; + MonitorData *monitor; + #if defined(_CPLUSPLUS_) + DynamicBone_FreezeAxis__Enum value; + #else + int32_t value; + #endif +}; + +struct DynamicBone__Fields { + struct MonoBehaviour__Fields _; + struct Transform *m_Root; + struct List_1_UnityEngine_Transform_ *m_Roots; + float m_UpdateRate; + #if defined(_CPLUSPLUS_) + DynamicBone_UpdateMode__Enum m_UpdateMode; + #else + int32_t m_UpdateMode; + #endif + float m_Damping; + struct AnimationCurve *m_DampingDistrib; + float m_Elasticity; + struct AnimationCurve *m_ElasticityDistrib; + float m_Stiffness; + struct AnimationCurve *m_StiffnessDistrib; + float m_Inert; + struct AnimationCurve *m_InertDistrib; + float m_Friction; + struct AnimationCurve *m_FrictionDistrib; + float m_Radius; + struct AnimationCurve *m_RadiusDistrib; + float m_EndLength; + struct Vector3 m_EndOffset; + struct Vector3 m_Gravity; + struct Vector3 m_Force; + float m_BlendWeight; + struct List_1_DynamicBoneColliderBase_ *m_Colliders; + struct List_1_UnityEngine_Transform_ *m_Exclusions; + #if defined(_CPLUSPLUS_) + DynamicBone_FreezeAxis__Enum m_FreezeAxis; + #else + int32_t m_FreezeAxis; + #endif + bool m_DistantDisable; + struct Transform *m_ReferenceObject; + float m_DistanceToObject; + bool m_Multithread; + struct Vector3 m_ObjectMove; + struct Vector3 m_ObjectPrevPosition; + float m_ObjectScale; + float m_Time; + float m_Weight; + bool m_DistantDisabled; + bool m_WorkAdded; + int32_t m_PreUpdateCount; + struct List_1_DynamicBone_ParticleTree_ *m_ParticleTrees; + float m_DeltaTime; + struct List_1_DynamicBoneColliderBase_ *m_EffectiveColliders; + bool m_DetectLocalCharacterCollisions; + bool m_CollisionOccurred; + int32_t m_LocalCharacterColliderIndex; +}; + +struct DynamicBone { + struct DynamicBone__Class *klass; + MonitorData *monitor; + struct DynamicBone__Fields fields; +}; + +#if defined(_CPLUSPLUS_) +enum class DynamicBoneColliderBase_Direction__Enum : int32_t { + X = 0x00000000, + Y = 0x00000001, + Z = 0x00000002, +}; + +#else +enum DynamicBoneColliderBase_Direction__Enum { + DynamicBoneColliderBase_Direction__Enum_X = 0x00000000, + DynamicBoneColliderBase_Direction__Enum_Y = 0x00000001, + DynamicBoneColliderBase_Direction__Enum_Z = 0x00000002, +}; + +#endif +struct DynamicBoneColliderBase_Direction__Enum__Boxed { + struct DynamicBoneColliderBase_Direction__Enum__Class *klass; + MonitorData *monitor; + #if defined(_CPLUSPLUS_) + DynamicBoneColliderBase_Direction__Enum value; + #else + int32_t value; + #endif +}; + +#if defined(_CPLUSPLUS_) +enum class DynamicBoneColliderBase_Bound__Enum : int32_t { + Outside = 0x00000000, + Inside = 0x00000001, +}; + +#else +enum DynamicBoneColliderBase_Bound__Enum { + DynamicBoneColliderBase_Bound__Enum_Outside = 0x00000000, + DynamicBoneColliderBase_Bound__Enum_Inside = 0x00000001, +}; + +#endif +struct DynamicBoneColliderBase_Bound__Enum__Boxed { + struct DynamicBoneColliderBase_Bound__Enum__Class *klass; + MonitorData *monitor; + #if defined(_CPLUSPLUS_) + DynamicBoneColliderBase_Bound__Enum value; + #else + int32_t value; + #endif +}; + +struct DynamicBoneColliderBase__Fields { + struct MonoBehaviour__Fields _; + #if defined(_CPLUSPLUS_) + DynamicBoneColliderBase_Direction__Enum m_Direction; + #else + int32_t m_Direction; + #endif + struct Vector3 m_Center; + #if defined(_CPLUSPLUS_) + DynamicBoneColliderBase_Bound__Enum m_Bound; + #else + int32_t m_Bound; + #endif + int32_t _PrepareFrame_k__BackingField; +}; + +struct DynamicBoneColliderBase { + struct DynamicBoneColliderBase__Class *klass; + MonitorData *monitor; + struct DynamicBoneColliderBase__Fields fields; +}; + +struct DynamicBoneCollider__Fields { + struct DynamicBoneColliderBase__Fields _; + float m_Radius; + float m_Height; + float m_Radius2; + float m_ScaledRadius; + float m_ScaledRadius2; + struct Vector3 m_C0; + struct Vector3 m_C1; + float m_C01Distance; + int32_t m_CollideType; +}; + +struct DynamicBoneCollider { + struct DynamicBoneCollider__Class *klass; + MonitorData *monitor; + struct DynamicBoneCollider__Fields fields; +}; + #if defined(_CPLUSPLUS_) enum class VRMovementDirection__Enum : int32_t { Head = 0x00000000, @@ -169237,6 +172109,17 @@ struct ShadowOrientation__Enum__Boxed { #endif }; +struct Plane { + struct Vector3 m_Normal; + float m_Distance; +}; + +struct Plane__Boxed { + struct Plane__Class *klass; + MonitorData *monitor; + struct Plane fields; +}; + struct VolumetricLight__Fields { struct MonoBehaviour__Fields _; struct PropertiesChangedEvent *OnPropertiesChanged; @@ -169584,17 +172467,6 @@ struct ParticleSystemRenderer { struct ParticleSystemRenderer__Fields fields; }; -struct Plane { - struct Vector3 m_Normal; - float m_Distance; -}; - -struct Plane__Boxed { - struct Plane__Class *klass; - MonitorData *monitor; - struct Plane fields; -}; - struct Plane__Array { struct Plane__Array__Class *klass; MonitorData *monitor; @@ -170056,6 +172928,19 @@ struct GameUI { struct GameUI__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_NolanBehaviour_UnityEngine_GameObject_ { + int32_t hashCode; + int32_t next; + struct NolanBehaviour *key; + struct GameObject *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_NolanBehaviour_UnityEngine_GameObject___Boxed { + struct Dictionary_2_TKey_TValue_Entry_NolanBehaviour_UnityEngine_GameObject___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_NolanBehaviour_UnityEngine_GameObject_ fields; +}; + struct __declspec(align(8)) Dictionary_2_NolanBehaviour_UnityEngine_GameObject___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_NolanBehaviour_UnityEngine_GameObject___Array *_entries; @@ -170075,19 +172960,6 @@ struct Dictionary_2_NolanBehaviour_UnityEngine_GameObject_ { struct Dictionary_2_NolanBehaviour_UnityEngine_GameObject___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_NolanBehaviour_UnityEngine_GameObject_ { - int32_t hashCode; - int32_t next; - struct NolanBehaviour *key; - struct GameObject *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_NolanBehaviour_UnityEngine_GameObject___Boxed { - struct Dictionary_2_TKey_TValue_Entry_NolanBehaviour_UnityEngine_GameObject___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_NolanBehaviour_UnityEngine_GameObject_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_NolanBehaviour_UnityEngine_GameObject___Array { struct Dictionary_2_TKey_TValue_Entry_NolanBehaviour_UnityEngine_GameObject___Array__Class *klass; MonitorData *monitor; @@ -170178,6 +173050,19 @@ struct IEnumerable_1_UnityEngine_GameObject_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_UInt32_System_Boolean_ { + int32_t hashCode; + int32_t next; + uint32_t key; + bool value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_UInt32_System_Boolean___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_UInt32_System_Boolean___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_UInt32_System_Boolean_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_UInt32_System_Boolean___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_UInt32_System_Boolean___Array *_entries; @@ -170197,19 +173082,6 @@ struct Dictionary_2_System_UInt32_System_Boolean_ { struct Dictionary_2_System_UInt32_System_Boolean___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_UInt32_System_Boolean_ { - int32_t hashCode; - int32_t next; - uint32_t key; - bool value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_UInt32_System_Boolean___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_UInt32_System_Boolean___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_UInt32_System_Boolean_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_UInt32_System_Boolean___Array { struct Dictionary_2_TKey_TValue_Entry_System_UInt32_System_Boolean___Array__Class *klass; MonitorData *monitor; @@ -170765,30 +173637,53 @@ struct TMP_Text_TextInputSources__Enum__Boxed { #endif }; -struct Extents { - struct Vector2 min; - struct Vector2 max; +struct TMP_Text_UnicodeChar { + int32_t unicode; + int32_t stringIndex; + int32_t length; }; -struct Extents__Boxed { - struct Extents__Class *klass; +struct TMP_Text_UnicodeChar__Boxed { + struct TMP_Text_UnicodeChar__Class *klass; MonitorData *monitor; - struct Extents fields; + struct TMP_Text_UnicodeChar fields; }; -struct TMP_TextProcessingStack_1_UnityEngine_Color32_ { - struct Color32__Array *itemStack; - int32_t index; - struct Color32 m_DefaultItem; - int32_t m_Capacity; - int32_t m_RolloverSize; - int32_t m_Count; +#if defined(_CPLUSPLUS_) +enum class TMP_TextElementType__Enum : int32_t { + Character = 0x00000000, + Sprite = 0x00000001, }; -struct TMP_TextProcessingStack_1_UnityEngine_Color32___Boxed { - struct TMP_TextProcessingStack_1_UnityEngine_Color32___Class *klass; +#else +enum TMP_TextElementType__Enum { + TMP_TextElementType__Enum_Character = 0x00000000, + TMP_TextElementType__Enum_Sprite = 0x00000001, +}; + +#endif +struct TMP_TextElementType__Enum__Boxed { + struct TMP_TextElementType__Enum__Class *klass; MonitorData *monitor; - struct TMP_TextProcessingStack_1_UnityEngine_Color32_ fields; + #if defined(_CPLUSPLUS_) + TMP_TextElementType__Enum value; + #else + int32_t value; + #endif +}; + +struct TMP_Vertex { + struct Vector3 position; + struct Vector2 uv; + struct Vector2 uv2; + struct Vector2 uv4; + struct Color32 color; +}; + +struct TMP_Vertex__Boxed { + struct TMP_Vertex__Class *klass; + MonitorData *monitor; + struct TMP_Vertex fields; }; struct TMP_Offset { @@ -170815,6 +173710,90 @@ struct HighlightState__Boxed { struct HighlightState fields; }; +struct TMP_CharacterInfo { + uint16_t character; + int32_t index; + int32_t stringLength; + #if defined(_CPLUSPLUS_) + TMP_TextElementType__Enum elementType; + #else + int32_t elementType; + #endif + struct TMP_TextElement *textElement; + struct TMP_FontAsset *fontAsset; + struct TMP_SpriteAsset *spriteAsset; + int32_t spriteIndex; + struct Material *material; + int32_t materialReferenceIndex; + bool isUsingAlternateTypeface; + float pointSize; + int32_t lineNumber; + int32_t pageNumber; + int32_t vertexIndex; + struct TMP_Vertex vertex_BL; + struct TMP_Vertex vertex_TL; + struct TMP_Vertex vertex_TR; + struct TMP_Vertex vertex_BR; + struct Vector3 topLeft; + struct Vector3 bottomLeft; + struct Vector3 topRight; + struct Vector3 bottomRight; + float origin; + float xAdvance; + float ascender; + float baseLine; + float descender; + float adjustedAscender; + float adjustedDescender; + float aspectRatio; + float scale; + struct Color32 color; + struct Color32 underlineColor; + int32_t underlineVertexIndex; + struct Color32 strikethroughColor; + int32_t strikethroughVertexIndex; + struct Color32 highlightColor; + struct HighlightState highlightState; + #if defined(_CPLUSPLUS_) + FontStyles__Enum style; + #else + int32_t style; + #endif + bool isVisible; +}; + +struct TMP_CharacterInfo__Boxed { + struct TMP_CharacterInfo__Class *klass; + MonitorData *monitor; + struct TMP_CharacterInfo fields; +}; + +struct Extents { + struct Vector2 min; + struct Vector2 max; +}; + +struct Extents__Boxed { + struct Extents__Class *klass; + MonitorData *monitor; + struct Extents fields; +}; + +struct TMP_TextProcessingStack_1_UnityEngine_Color32_ { + struct Color32__Array *itemStack; + int32_t index; + struct Color32 m_DefaultItem; + int32_t m_Capacity; + int32_t m_RolloverSize; + int32_t m_Count; +}; + +struct TMP_TextProcessingStack_1_UnityEngine_Color32___Boxed { + struct TMP_TextProcessingStack_1_UnityEngine_Color32___Class *klass; + MonitorData *monitor; + struct TMP_TextProcessingStack_1_UnityEngine_Color32_ fields; +}; + struct TMP_TextProcessingStack_1_HighlightState_ { struct HighlightState__Array *itemStack; int32_t index; @@ -170830,6 +173809,25 @@ struct TMP_TextProcessingStack_1_HighlightState___Boxed { struct TMP_TextProcessingStack_1_HighlightState_ fields; }; +struct TMP_ColorGradient__Fields { + struct ScriptableObject__Fields _; + #if defined(_CPLUSPLUS_) + ColorMode__Enum colorMode; + #else + int32_t colorMode; + #endif + struct Color topLeft; + struct Color topRight; + struct Color bottomLeft; + struct Color bottomRight; +}; + +struct TMP_ColorGradient { + struct TMP_ColorGradient__Class *klass; + MonitorData *monitor; + struct TMP_ColorGradient__Fields fields; +}; + struct TMP_TextProcessingStack_1_TMP_ColorGradient_ { struct TMP_ColorGradient__Array *itemStack; int32_t index; @@ -170860,29 +173858,6 @@ struct TMP_TextProcessingStack_1_System_Int32___Boxed { struct TMP_TextProcessingStack_1_System_Int32_ fields; }; -#if defined(_CPLUSPLUS_) -enum class TMP_TextElementType__Enum : int32_t { - Character = 0x00000000, - Sprite = 0x00000001, -}; - -#else -enum TMP_TextElementType__Enum { - TMP_TextElementType__Enum_Character = 0x00000000, - TMP_TextElementType__Enum_Sprite = 0x00000001, -}; - -#endif -struct TMP_TextElementType__Enum__Boxed { - struct TMP_TextElementType__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - TMP_TextElementType__Enum value; - #else - int32_t value; - #endif -}; - struct TMP_Text_SpecialCharacter { struct TMP_Character *character; struct TMP_FontAsset *fontAsset; @@ -171187,6 +174162,30 @@ struct TMP_Text { struct TMP_Text__Fields fields; }; +struct TMP_SubMeshUI__Fields { + struct MaskableGraphic__Fields _; + struct TMP_FontAsset *m_fontAsset; + struct TMP_SpriteAsset *m_spriteAsset; + struct Material *m_material; + struct Material *m_sharedMaterial; + struct Material *m_fallbackMaterial; + struct Material *m_fallbackSourceMaterial; + bool m_isDefaultMaterial; + float m_padding; + struct Mesh *m_mesh; + struct TextMeshProUGUI *m_TextComponent; + bool m_isRegisteredForEvents; + bool m_materialDirty; + int32_t m_materialReferenceIndex; + struct Transform *m_RootCanvasTransform; +}; + +struct TMP_SubMeshUI { + struct TMP_SubMeshUI__Class *klass; + MonitorData *monitor; + struct TMP_SubMeshUI__Fields fields; +}; + struct TextMeshProUGUI__Fields { struct TMP_Text__Fields _; bool m_isRebuildingLayout; @@ -171357,6 +174356,17 @@ struct FontAssetCreationSettings__Boxed { struct FontAssetCreationSettings fields; }; +struct TMP_FontWeightPair { + struct TMP_FontAsset *regularTypeface; + struct TMP_FontAsset *italicTypeface; +}; + +struct TMP_FontWeightPair__Boxed { + struct TMP_FontWeightPair__Class *klass; + MonitorData *monitor; + struct TMP_FontWeightPair fields; +}; + struct TMP_FontAsset__Fields { struct TMP_Asset__Fields _; struct String *m_Version; @@ -171423,19 +174433,6 @@ struct TMP_FontAsset { struct TMP_FontAsset__Fields fields; }; -struct __declspec(align(8)) List_1_UnityEngine_TextCore_Glyph___Fields { - struct Glyph__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_TextCore_Glyph_ { - struct List_1_UnityEngine_TextCore_Glyph___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_TextCore_Glyph___Fields fields; -}; - struct GlyphMetrics { float m_Width; float m_Height; @@ -171511,6 +174508,19 @@ struct Glyph { struct Glyph__Fields fields; }; +struct __declspec(align(8)) List_1_UnityEngine_TextCore_Glyph___Fields { + struct Glyph__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_TextCore_Glyph_ { + struct List_1_UnityEngine_TextCore_Glyph___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_TextCore_Glyph___Fields fields; +}; + struct Glyph__Array { struct Glyph__Array__Class *klass; MonitorData *monitor; @@ -171524,6 +174534,19 @@ struct IEnumerator_1_UnityEngine_TextCore_Glyph_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_Glyph_ { + int32_t hashCode; + int32_t next; + uint32_t key; + struct Glyph *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_Glyph___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_Glyph___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_Glyph_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_UInt32_UnityEngine_TextCore_Glyph___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_Glyph___Array *_entries; @@ -171543,19 +174566,6 @@ struct Dictionary_2_System_UInt32_UnityEngine_TextCore_Glyph_ { struct Dictionary_2_System_UInt32_UnityEngine_TextCore_Glyph___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_Glyph_ { - int32_t hashCode; - int32_t next; - uint32_t key; - struct Glyph *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_Glyph___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_Glyph___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_Glyph_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_Glyph___Array { struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_Glyph___Array__Class *klass; MonitorData *monitor; @@ -171618,19 +174628,6 @@ struct IEnumerable_1_UnityEngine_TextCore_Glyph_ { MonitorData *monitor; }; -struct __declspec(align(8)) List_1_TMPro_TMP_Character___Fields { - struct TMP_Character__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_TMPro_TMP_Character_ { - struct List_1_TMPro_TMP_Character___Class *klass; - MonitorData *monitor; - struct List_1_TMPro_TMP_Character___Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class TextElementType__Enum : uint8_t { Character = 0x01, @@ -171683,6 +174680,19 @@ struct TMP_Character { struct TMP_Character__Fields fields; }; +struct __declspec(align(8)) List_1_TMPro_TMP_Character___Fields { + struct TMP_Character__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_TMPro_TMP_Character_ { + struct List_1_TMPro_TMP_Character___Class *klass; + MonitorData *monitor; + struct List_1_TMPro_TMP_Character___Fields fields; +}; + struct TMP_Character__Array { struct TMP_Character__Array__Class *klass; MonitorData *monitor; @@ -171696,6 +174706,19 @@ struct IEnumerator_1_TMPro_TMP_Character_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_UInt32_TMPro_TMP_Character_ { + int32_t hashCode; + int32_t next; + uint32_t key; + struct TMP_Character *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_UInt32_TMPro_TMP_Character___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_UInt32_TMPro_TMP_Character___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_UInt32_TMPro_TMP_Character_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_UInt32_TMPro_TMP_Character___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_UInt32_TMPro_TMP_Character___Array *_entries; @@ -171715,19 +174738,6 @@ struct Dictionary_2_System_UInt32_TMPro_TMP_Character_ { struct Dictionary_2_System_UInt32_TMPro_TMP_Character___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_UInt32_TMPro_TMP_Character_ { - int32_t hashCode; - int32_t next; - uint32_t key; - struct TMP_Character *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_UInt32_TMPro_TMP_Character___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_UInt32_TMPro_TMP_Character___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_UInt32_TMPro_TMP_Character_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_UInt32_TMPro_TMP_Character___Array { struct Dictionary_2_TKey_TValue_Entry_System_UInt32_TMPro_TMP_Character___Array__Class *klass; MonitorData *monitor; @@ -171846,19 +174856,6 @@ struct FaceInfo_Legacy { struct FaceInfo_Legacy__Fields fields; }; -struct __declspec(align(8)) List_1_TMPro_TMP_Glyph___Fields { - struct TMP_Glyph__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_TMPro_TMP_Glyph_ { - struct List_1_TMPro_TMP_Glyph___Class *klass; - MonitorData *monitor; - struct List_1_TMPro_TMP_Glyph___Fields fields; -}; - struct __declspec(align(8)) TMP_TextElement_Legacy__Fields { int32_t id; float x; @@ -171887,6 +174884,19 @@ struct TMP_Glyph { struct TMP_Glyph__Fields fields; }; +struct __declspec(align(8)) List_1_TMPro_TMP_Glyph___Fields { + struct TMP_Glyph__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_TMPro_TMP_Glyph_ { + struct List_1_TMPro_TMP_Glyph___Class *klass; + MonitorData *monitor; + struct List_1_TMPro_TMP_Glyph___Fields fields; +}; + struct TMP_Glyph__Array { struct TMP_Glyph__Array__Class *klass; MonitorData *monitor; @@ -171910,19 +174920,6 @@ struct KerningTable { struct KerningTable__Fields fields; }; -struct __declspec(align(8)) List_1_TMPro_KerningPair___Fields { - struct KerningPair__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_TMPro_KerningPair_ { - struct List_1_TMPro_KerningPair___Class *klass; - MonitorData *monitor; - struct List_1_TMPro_KerningPair___Fields fields; -}; - struct GlyphValueRecord_Legacy { float xPlacement; float yPlacement; @@ -171951,6 +174948,19 @@ struct KerningPair { struct KerningPair__Fields fields; }; +struct __declspec(align(8)) List_1_TMPro_KerningPair___Fields { + struct KerningPair__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_TMPro_KerningPair_ { + struct List_1_TMPro_KerningPair___Class *klass; + MonitorData *monitor; + struct List_1_TMPro_KerningPair___Fields fields; +}; + struct KerningPair__Array { struct KerningPair__Array__Class *klass; MonitorData *monitor; @@ -171975,19 +174985,6 @@ struct TMP_FontFeatureTable { struct TMP_FontFeatureTable__Fields fields; }; -struct __declspec(align(8)) List_1_TMPro_TMP_GlyphPairAdjustmentRecord___Fields { - struct TMP_GlyphPairAdjustmentRecord__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_TMPro_TMP_GlyphPairAdjustmentRecord_ { - struct List_1_TMPro_TMP_GlyphPairAdjustmentRecord___Class *klass; - MonitorData *monitor; - struct List_1_TMPro_TMP_GlyphPairAdjustmentRecord___Fields fields; -}; - struct TMP_GlyphValueRecord { float m_XPlacement; float m_YPlacement; @@ -172053,6 +175050,19 @@ struct TMP_GlyphPairAdjustmentRecord { struct TMP_GlyphPairAdjustmentRecord__Fields fields; }; +struct __declspec(align(8)) List_1_TMPro_TMP_GlyphPairAdjustmentRecord___Fields { + struct TMP_GlyphPairAdjustmentRecord__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_TMPro_TMP_GlyphPairAdjustmentRecord_ { + struct List_1_TMPro_TMP_GlyphPairAdjustmentRecord___Class *klass; + MonitorData *monitor; + struct List_1_TMPro_TMP_GlyphPairAdjustmentRecord___Fields fields; +}; + struct TMP_GlyphPairAdjustmentRecord__Array { struct TMP_GlyphPairAdjustmentRecord__Array__Class *klass; MonitorData *monitor; @@ -172066,6 +175076,19 @@ struct IEnumerator_1_TMPro_TMP_GlyphPairAdjustmentRecord_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_UInt32_TMPro_TMP_GlyphPairAdjustmentRecord_ { + int32_t hashCode; + int32_t next; + uint32_t key; + struct TMP_GlyphPairAdjustmentRecord *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_UInt32_TMPro_TMP_GlyphPairAdjustmentRecord___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_UInt32_TMPro_TMP_GlyphPairAdjustmentRecord___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_UInt32_TMPro_TMP_GlyphPairAdjustmentRecord_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_UInt32_TMPro_TMP_GlyphPairAdjustmentRecord___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_UInt32_TMPro_TMP_GlyphPairAdjustmentRecord___Array *_entries; @@ -172085,19 +175108,6 @@ struct Dictionary_2_System_UInt32_TMPro_TMP_GlyphPairAdjustmentRecord_ { struct Dictionary_2_System_UInt32_TMPro_TMP_GlyphPairAdjustmentRecord___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_UInt32_TMPro_TMP_GlyphPairAdjustmentRecord_ { - int32_t hashCode; - int32_t next; - uint32_t key; - struct TMP_GlyphPairAdjustmentRecord *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_UInt32_TMPro_TMP_GlyphPairAdjustmentRecord___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_UInt32_TMPro_TMP_GlyphPairAdjustmentRecord___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_UInt32_TMPro_TMP_GlyphPairAdjustmentRecord_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_UInt32_TMPro_TMP_GlyphPairAdjustmentRecord___Array { struct Dictionary_2_TKey_TValue_Entry_System_UInt32_TMPro_TMP_GlyphPairAdjustmentRecord___Array__Class *klass; MonitorData *monitor; @@ -172186,17 +175196,6 @@ struct IEnumerator_1_TMPro_TMP_FontAsset_ { MonitorData *monitor; }; -struct TMP_FontWeightPair { - struct TMP_FontAsset *regularTypeface; - struct TMP_FontAsset *italicTypeface; -}; - -struct TMP_FontWeightPair__Boxed { - struct TMP_FontWeightPair__Class *klass; - MonitorData *monitor; - struct TMP_FontWeightPair fields; -}; - struct TMP_FontWeightPair__Array { struct TMP_FontWeightPair__Array__Class *klass; MonitorData *monitor; @@ -172215,6 +175214,18 @@ struct ProfilerMarker__Boxed { struct ProfilerMarker fields; }; +struct HashSet_1_T_Slot_System_Int32_ { + int32_t hashCode; + int32_t next; + int32_t value; +}; + +struct HashSet_1_T_Slot_System_Int32___Boxed { + struct HashSet_1_T_Slot_System_Int32___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_System_Int32_ fields; +}; + struct __declspec(align(8)) HashSet_1_System_Int32___Fields { struct Int32__Array *_buckets; struct HashSet_1_T_Slot_System_Int32___Array *_slots; @@ -172232,18 +175243,6 @@ struct HashSet_1_System_Int32_ { struct HashSet_1_System_Int32___Fields fields; }; -struct HashSet_1_T_Slot_System_Int32_ { - int32_t hashCode; - int32_t next; - int32_t value; -}; - -struct HashSet_1_T_Slot_System_Int32___Boxed { - struct HashSet_1_T_Slot_System_Int32___Class *klass; - MonitorData *monitor; - struct HashSet_1_T_Slot_System_Int32_ fields; -}; - struct HashSet_1_T_Slot_System_Int32___Array { struct HashSet_1_T_Slot_System_Int32___Array__Class *klass; MonitorData *monitor; @@ -172252,6 +175251,18 @@ struct HashSet_1_T_Slot_System_Int32___Array { struct HashSet_1_T_Slot_System_Int32_ vector[32]; }; +struct HashSet_1_T_Slot_System_UInt32_ { + int32_t hashCode; + int32_t next; + uint32_t value; +}; + +struct HashSet_1_T_Slot_System_UInt32___Boxed { + struct HashSet_1_T_Slot_System_UInt32___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_System_UInt32_ fields; +}; + struct __declspec(align(8)) HashSet_1_System_UInt32___Fields { struct Int32__Array *_buckets; struct HashSet_1_T_Slot_System_UInt32___Array *_slots; @@ -172269,18 +175280,6 @@ struct HashSet_1_System_UInt32_ { struct HashSet_1_System_UInt32___Fields fields; }; -struct HashSet_1_T_Slot_System_UInt32_ { - int32_t hashCode; - int32_t next; - uint32_t value; -}; - -struct HashSet_1_T_Slot_System_UInt32___Boxed { - struct HashSet_1_T_Slot_System_UInt32___Class *klass; - MonitorData *monitor; - struct HashSet_1_T_Slot_System_UInt32_ fields; -}; - struct HashSet_1_T_Slot_System_UInt32___Array { struct HashSet_1_T_Slot_System_UInt32___Array__Class *klass; MonitorData *monitor; @@ -172329,6 +175328,19 @@ struct TMP_SpriteAsset { struct TMP_SpriteAsset__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_UInt32_System_Int32_ { + int32_t hashCode; + int32_t next; + uint32_t key; + int32_t value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_UInt32_System_Int32___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_UInt32_System_Int32___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_UInt32_System_Int32_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_UInt32_System_Int32___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_UInt32_System_Int32___Array *_entries; @@ -172348,19 +175360,6 @@ struct Dictionary_2_System_UInt32_System_Int32_ { struct Dictionary_2_System_UInt32_System_Int32___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_UInt32_System_Int32_ { - int32_t hashCode; - int32_t next; - uint32_t key; - int32_t value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_UInt32_System_Int32___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_UInt32_System_Int32___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_UInt32_System_Int32_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_UInt32_System_Int32___Array { struct Dictionary_2_TKey_TValue_Entry_System_UInt32_System_Int32___Array__Class *klass; MonitorData *monitor; @@ -172413,6 +175412,18 @@ struct IEnumerator_1_KeyValuePair_2_System_UInt32_System_Int32_ { MonitorData *monitor; }; +struct TMP_SpriteCharacter__Fields { + struct TMP_TextElement__Fields _; + struct String *m_Name; + int32_t m_HashCode; +}; + +struct TMP_SpriteCharacter { + struct TMP_SpriteCharacter__Class *klass; + MonitorData *monitor; + struct TMP_SpriteCharacter__Fields fields; +}; + struct __declspec(align(8)) List_1_TMPro_TMP_SpriteCharacter___Fields { struct TMP_SpriteCharacter__Array *_items; int32_t _size; @@ -172426,18 +175437,6 @@ struct List_1_TMPro_TMP_SpriteCharacter_ { struct List_1_TMPro_TMP_SpriteCharacter___Fields fields; }; -struct TMP_SpriteCharacter__Fields { - struct TMP_TextElement__Fields _; - struct String *m_Name; - int32_t m_HashCode; -}; - -struct TMP_SpriteCharacter { - struct TMP_SpriteCharacter__Class *klass; - MonitorData *monitor; - struct TMP_SpriteCharacter__Fields fields; -}; - struct TMP_SpriteCharacter__Array { struct TMP_SpriteCharacter__Array__Class *klass; MonitorData *monitor; @@ -172451,6 +175450,19 @@ struct IEnumerator_1_TMPro_TMP_SpriteCharacter_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_UInt32_TMPro_TMP_SpriteCharacter_ { + int32_t hashCode; + int32_t next; + uint32_t key; + struct TMP_SpriteCharacter *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_UInt32_TMPro_TMP_SpriteCharacter___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_UInt32_TMPro_TMP_SpriteCharacter___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_UInt32_TMPro_TMP_SpriteCharacter_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_UInt32_TMPro_TMP_SpriteCharacter___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_UInt32_TMPro_TMP_SpriteCharacter___Array *_entries; @@ -172470,19 +175482,6 @@ struct Dictionary_2_System_UInt32_TMPro_TMP_SpriteCharacter_ { struct Dictionary_2_System_UInt32_TMPro_TMP_SpriteCharacter___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_UInt32_TMPro_TMP_SpriteCharacter_ { - int32_t hashCode; - int32_t next; - uint32_t key; - struct TMP_SpriteCharacter *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_UInt32_TMPro_TMP_SpriteCharacter___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_UInt32_TMPro_TMP_SpriteCharacter___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_UInt32_TMPro_TMP_SpriteCharacter_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_UInt32_TMPro_TMP_SpriteCharacter___Array { struct Dictionary_2_TKey_TValue_Entry_System_UInt32_TMPro_TMP_SpriteCharacter___Array__Class *klass; MonitorData *monitor; @@ -172545,6 +175544,17 @@ struct IEnumerable_1_TMPro_TMP_SpriteCharacter_ { MonitorData *monitor; }; +struct TMP_SpriteGlyph__Fields { + struct Glyph__Fields _; + struct Sprite *sprite; +}; + +struct TMP_SpriteGlyph { + struct TMP_SpriteGlyph__Class *klass; + MonitorData *monitor; + struct TMP_SpriteGlyph__Fields fields; +}; + struct __declspec(align(8)) List_1_TMPro_TMP_SpriteGlyph___Fields { struct TMP_SpriteGlyph__Array *_items; int32_t _size; @@ -172558,17 +175568,6 @@ struct List_1_TMPro_TMP_SpriteGlyph_ { struct List_1_TMPro_TMP_SpriteGlyph___Fields fields; }; -struct TMP_SpriteGlyph__Fields { - struct Glyph__Fields _; - struct Sprite *sprite; -}; - -struct TMP_SpriteGlyph { - struct TMP_SpriteGlyph__Class *klass; - MonitorData *monitor; - struct TMP_SpriteGlyph__Fields fields; -}; - struct TMP_SpriteGlyph__Array { struct TMP_SpriteGlyph__Array__Class *klass; MonitorData *monitor; @@ -172582,6 +175581,19 @@ struct IEnumerator_1_TMPro_TMP_SpriteGlyph_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_UInt32_TMPro_TMP_SpriteGlyph_ { + int32_t hashCode; + int32_t next; + uint32_t key; + struct TMP_SpriteGlyph *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_UInt32_TMPro_TMP_SpriteGlyph___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_UInt32_TMPro_TMP_SpriteGlyph___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_UInt32_TMPro_TMP_SpriteGlyph_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_UInt32_TMPro_TMP_SpriteGlyph___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_UInt32_TMPro_TMP_SpriteGlyph___Array *_entries; @@ -172601,19 +175613,6 @@ struct Dictionary_2_System_UInt32_TMPro_TMP_SpriteGlyph_ { struct Dictionary_2_System_UInt32_TMPro_TMP_SpriteGlyph___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_UInt32_TMPro_TMP_SpriteGlyph_ { - int32_t hashCode; - int32_t next; - uint32_t key; - struct TMP_SpriteGlyph *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_UInt32_TMPro_TMP_SpriteGlyph___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_UInt32_TMPro_TMP_SpriteGlyph___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_UInt32_TMPro_TMP_SpriteGlyph_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_UInt32_TMPro_TMP_SpriteGlyph___Array { struct Dictionary_2_TKey_TValue_Entry_System_UInt32_TMPro_TMP_SpriteGlyph___Array__Class *klass; MonitorData *monitor; @@ -172676,19 +175675,6 @@ struct IEnumerable_1_TMPro_TMP_SpriteGlyph_ { MonitorData *monitor; }; -struct __declspec(align(8)) List_1_TMPro_TMP_Sprite___Fields { - struct TMP_Sprite__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_TMPro_TMP_Sprite_ { - struct List_1_TMPro_TMP_Sprite___Class *klass; - MonitorData *monitor; - struct List_1_TMPro_TMP_Sprite___Fields fields; -}; - struct TMP_Sprite__Fields { struct TMP_TextElement_Legacy__Fields _; struct String *name; @@ -172704,6 +175690,19 @@ struct TMP_Sprite { struct TMP_Sprite__Fields fields; }; +struct __declspec(align(8)) List_1_TMPro_TMP_Sprite___Fields { + struct TMP_Sprite__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_TMPro_TMP_Sprite_ { + struct List_1_TMPro_TMP_Sprite___Class *klass; + MonitorData *monitor; + struct List_1_TMPro_TMP_Sprite___Fields fields; +}; + struct TMP_Sprite__Array { struct TMP_Sprite__Array__Class *klass; MonitorData *monitor; @@ -172766,25 +175765,6 @@ struct TMP_TextProcessingStack_1_MaterialReference___Boxed { struct TMP_TextProcessingStack_1_MaterialReference_ fields; }; -struct TMP_ColorGradient__Fields { - struct ScriptableObject__Fields _; - #if defined(_CPLUSPLUS_) - ColorMode__Enum colorMode; - #else - int32_t colorMode; - #endif - struct Color topLeft; - struct Color topRight; - struct Color bottomLeft; - struct Color bottomRight; -}; - -struct TMP_ColorGradient { - struct TMP_ColorGradient__Class *klass; - MonitorData *monitor; - struct TMP_ColorGradient__Fields fields; -}; - struct TMP_StyleSheet__Fields { struct ScriptableObject__Fields _; struct List_1_TMPro_TMP_Style_ *m_StyleList; @@ -172797,19 +175777,6 @@ struct TMP_StyleSheet { struct TMP_StyleSheet__Fields fields; }; -struct __declspec(align(8)) List_1_TMPro_TMP_Style___Fields { - struct TMP_Style__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_TMPro_TMP_Style_ { - struct List_1_TMPro_TMP_Style___Class *klass; - MonitorData *monitor; - struct List_1_TMPro_TMP_Style___Fields fields; -}; - struct __declspec(align(8)) TMP_Style__Fields { struct String *m_Name; int32_t m_HashCode; @@ -172827,6 +175794,19 @@ struct TMP_Style { struct TMP_Style__Fields fields; }; +struct __declspec(align(8)) List_1_TMPro_TMP_Style___Fields { + struct TMP_Style__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_TMPro_TMP_Style_ { + struct List_1_TMPro_TMP_Style___Class *klass; + MonitorData *monitor; + struct List_1_TMPro_TMP_Style___Fields fields; +}; + struct TMP_Style__Array { struct TMP_Style__Array__Class *klass; MonitorData *monitor; @@ -172840,6 +175820,19 @@ struct IEnumerator_1_TMPro_TMP_Style_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_TMPro_TMP_Style_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct TMP_Style *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_TMPro_TMP_Style___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_TMPro_TMP_Style___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_TMPro_TMP_Style_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_TMPro_TMP_Style___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_TMPro_TMP_Style___Array *_entries; @@ -172859,19 +175852,6 @@ struct Dictionary_2_System_Int32_TMPro_TMP_Style_ { struct Dictionary_2_System_Int32_TMPro_TMP_Style___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_TMPro_TMP_Style_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct TMP_Style *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_TMPro_TMP_Style___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_TMPro_TMP_Style___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_TMPro_TMP_Style_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_TMPro_TMP_Style___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_TMPro_TMP_Style___Array__Class *klass; MonitorData *monitor; @@ -172950,111 +175930,6 @@ struct HorizontalAlignmentOptions__Enum__Array { HorizontalAlignmentOptions__Enum vector[32]; }; -struct __declspec(align(8)) TMP_TextInfo__Fields { - struct TMP_Text *textComponent; - int32_t characterCount; - int32_t spriteCount; - int32_t spaceCount; - int32_t wordCount; - int32_t linkCount; - int32_t lineCount; - int32_t pageCount; - int32_t materialCount; - struct TMP_CharacterInfo__Array *characterInfo; - struct TMP_WordInfo__Array *wordInfo; - struct TMP_LinkInfo__Array *linkInfo; - struct TMP_LineInfo__Array *lineInfo; - struct TMP_PageInfo__Array *pageInfo; - struct TMP_MeshInfo__Array *meshInfo; - struct TMP_MeshInfo__Array *m_CachedMeshInfo; -}; - -struct TMP_TextInfo { - struct TMP_TextInfo__Class *klass; - MonitorData *monitor; - struct TMP_TextInfo__Fields fields; -}; - -struct TMP_Vertex { - struct Vector3 position; - struct Vector2 uv; - struct Vector2 uv2; - struct Vector2 uv4; - struct Color32 color; -}; - -struct TMP_Vertex__Boxed { - struct TMP_Vertex__Class *klass; - MonitorData *monitor; - struct TMP_Vertex fields; -}; - -struct TMP_CharacterInfo { - uint16_t character; - int32_t index; - int32_t stringLength; - #if defined(_CPLUSPLUS_) - TMP_TextElementType__Enum elementType; - #else - int32_t elementType; - #endif - struct TMP_TextElement *textElement; - struct TMP_FontAsset *fontAsset; - struct TMP_SpriteAsset *spriteAsset; - int32_t spriteIndex; - struct Material *material; - int32_t materialReferenceIndex; - bool isUsingAlternateTypeface; - float pointSize; - int32_t lineNumber; - int32_t pageNumber; - int32_t vertexIndex; - struct TMP_Vertex vertex_BL; - struct TMP_Vertex vertex_TL; - struct TMP_Vertex vertex_TR; - struct TMP_Vertex vertex_BR; - struct Vector3 topLeft; - struct Vector3 bottomLeft; - struct Vector3 topRight; - struct Vector3 bottomRight; - float origin; - float xAdvance; - float ascender; - float baseLine; - float descender; - float adjustedAscender; - float adjustedDescender; - float aspectRatio; - float scale; - struct Color32 color; - struct Color32 underlineColor; - int32_t underlineVertexIndex; - struct Color32 strikethroughColor; - int32_t strikethroughVertexIndex; - struct Color32 highlightColor; - struct HighlightState highlightState; - #if defined(_CPLUSPLUS_) - FontStyles__Enum style; - #else - int32_t style; - #endif - bool isVisible; -}; - -struct TMP_CharacterInfo__Boxed { - struct TMP_CharacterInfo__Class *klass; - MonitorData *monitor; - struct TMP_CharacterInfo fields; -}; - -struct TMP_CharacterInfo__Array { - struct TMP_CharacterInfo__Array__Class *klass; - MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - struct TMP_CharacterInfo vector[32]; -}; - struct TMP_WordInfo { struct TMP_Text *textComponent; int32_t firstCharacterIndex; @@ -173068,14 +175943,6 @@ struct TMP_WordInfo__Boxed { struct TMP_WordInfo fields; }; -struct TMP_WordInfo__Array { - struct TMP_WordInfo__Array__Class *klass; - MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - struct TMP_WordInfo vector[32]; -}; - struct TMP_LinkInfo { struct TMP_Text *textComponent; int32_t hashCode; @@ -173092,14 +175959,6 @@ struct TMP_LinkInfo__Boxed { struct TMP_LinkInfo fields; }; -struct TMP_LinkInfo__Array { - struct TMP_LinkInfo__Array__Class *klass; - MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - struct TMP_LinkInfo vector[32]; -}; - struct TMP_LineInfo { int32_t controlCharacterCount; int32_t characterCount; @@ -173133,14 +175992,6 @@ struct TMP_LineInfo__Boxed { struct TMP_LineInfo fields; }; -struct TMP_LineInfo__Array { - struct TMP_LineInfo__Array__Class *klass; - MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - struct TMP_LineInfo vector[32]; -}; - struct TMP_PageInfo { int32_t firstCharacterIndex; int32_t lastCharacterIndex; @@ -173155,14 +176006,6 @@ struct TMP_PageInfo__Boxed { struct TMP_PageInfo fields; }; -struct TMP_PageInfo__Array { - struct TMP_PageInfo__Array__Class *klass; - MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - struct TMP_PageInfo vector[32]; -}; - struct TMP_MeshInfo { struct Mesh *mesh; int32_t vertexCount; @@ -173182,6 +176025,71 @@ struct TMP_MeshInfo__Boxed { struct TMP_MeshInfo fields; }; +struct __declspec(align(8)) TMP_TextInfo__Fields { + struct TMP_Text *textComponent; + int32_t characterCount; + int32_t spriteCount; + int32_t spaceCount; + int32_t wordCount; + int32_t linkCount; + int32_t lineCount; + int32_t pageCount; + int32_t materialCount; + struct TMP_CharacterInfo__Array *characterInfo; + struct TMP_WordInfo__Array *wordInfo; + struct TMP_LinkInfo__Array *linkInfo; + struct TMP_LineInfo__Array *lineInfo; + struct TMP_PageInfo__Array *pageInfo; + struct TMP_MeshInfo__Array *meshInfo; + struct TMP_MeshInfo__Array *m_CachedMeshInfo; +}; + +struct TMP_TextInfo { + struct TMP_TextInfo__Class *klass; + MonitorData *monitor; + struct TMP_TextInfo__Fields fields; +}; + +struct TMP_CharacterInfo__Array { + struct TMP_CharacterInfo__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct TMP_CharacterInfo vector[32]; +}; + +struct TMP_WordInfo__Array { + struct TMP_WordInfo__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct TMP_WordInfo vector[32]; +}; + +struct TMP_LinkInfo__Array { + struct TMP_LinkInfo__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct TMP_LinkInfo vector[32]; +}; + +struct TMP_LineInfo__Array { + struct TMP_LineInfo__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct TMP_LineInfo vector[32]; +}; + +struct TMP_PageInfo__Array { + struct TMP_PageInfo__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct TMP_PageInfo vector[32]; +}; + struct TMP_MeshInfo__Array { struct TMP_MeshInfo__Array__Class *klass; MonitorData *monitor; @@ -173232,6 +176140,19 @@ struct TMP_SpriteAnimator { struct TMP_SpriteAnimator__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Boolean_ { + int32_t hashCode; + int32_t next; + int32_t key; + bool value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Boolean___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Boolean___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Boolean_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_System_Boolean___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Boolean___Array *_entries; @@ -173251,19 +176172,6 @@ struct Dictionary_2_System_Int32_System_Boolean_ { struct Dictionary_2_System_Int32_System_Boolean___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Boolean_ { - int32_t hashCode; - int32_t next; - int32_t key; - bool value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Boolean___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Boolean___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Boolean_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Boolean___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Boolean___Array__Class *klass; MonitorData *monitor; @@ -173417,18 +176325,6 @@ struct RichTextTagAttribute__Array { struct RichTextTagAttribute vector[32]; }; -struct TMP_Text_UnicodeChar { - int32_t unicode; - int32_t stringIndex; - int32_t length; -}; - -struct TMP_Text_UnicodeChar__Boxed { - struct TMP_Text_UnicodeChar__Class *klass; - MonitorData *monitor; - struct TMP_Text_UnicodeChar fields; -}; - struct TMP_Text_UnicodeChar__Array { struct TMP_Text_UnicodeChar__Array__Class *klass; MonitorData *monitor; @@ -173607,30 +176503,6 @@ struct TMP_VertexDataUpdateFlags__Enum__Boxed { #endif }; -struct TMP_SubMeshUI__Fields { - struct MaskableGraphic__Fields _; - struct TMP_FontAsset *m_fontAsset; - struct TMP_SpriteAsset *m_spriteAsset; - struct Material *m_material; - struct Material *m_sharedMaterial; - struct Material *m_fallbackMaterial; - struct Material *m_fallbackSourceMaterial; - bool m_isDefaultMaterial; - float m_padding; - struct Mesh *m_mesh; - struct TextMeshProUGUI *m_TextComponent; - bool m_isRegisteredForEvents; - bool m_materialDirty; - int32_t m_materialReferenceIndex; - struct Transform *m_RootCanvasTransform; -}; - -struct TMP_SubMeshUI { - struct TMP_SubMeshUI__Class *klass; - MonitorData *monitor; - struct TMP_SubMeshUI__Fields fields; -}; - struct TMP_SubMeshUI__Array { struct TMP_SubMeshUI__Array__Class *klass; MonitorData *monitor; @@ -173793,19 +176665,6 @@ struct VRInputTracker { struct VRInputTracker__Fields fields; }; -struct __declspec(align(8)) List_1_UnityEngine_XR_XRNodeState___Fields { - struct XRNodeState__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_XR_XRNodeState_ { - struct List_1_UnityEngine_XR_XRNodeState___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_XR_XRNodeState___Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class XRNode__Enum : int32_t { LeftEye = 0x00000000, @@ -173903,6 +176762,19 @@ struct XRNodeState__Boxed { struct XRNodeState fields; }; +struct __declspec(align(8)) List_1_UnityEngine_XR_XRNodeState___Fields { + struct XRNodeState__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_XR_XRNodeState_ { + struct List_1_UnityEngine_XR_XRNodeState___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_XR_XRNodeState___Fields fields; +}; + struct XRNodeState__Array { struct XRNodeState__Array__Class *klass; MonitorData *monitor; @@ -173916,19 +176788,6 @@ struct IEnumerator_1_UnityEngine_XR_XRNodeState_ { MonitorData *monitor; }; -struct __declspec(align(8)) List_1_UnityEngine_XR_InputDevice___Fields { - struct InputDevice_1__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_XR_InputDevice_ { - struct List_1_UnityEngine_XR_InputDevice___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_XR_InputDevice___Fields fields; -}; - struct InputDevice_1 { uint64_t m_DeviceId; bool m_Initialized; @@ -173940,17 +176799,17 @@ struct InputDevice_1__Boxed { struct InputDevice_1 fields; }; -struct __declspec(align(8)) List_1_UnityEngine_XR_XRInputSubsystem___Fields { - struct XRInputSubsystem__Array *_items; +struct __declspec(align(8)) List_1_UnityEngine_XR_InputDevice___Fields { + struct InputDevice_1__Array *_items; int32_t _size; int32_t _version; struct Object *_syncRoot; }; -struct List_1_UnityEngine_XR_XRInputSubsystem_ { - struct List_1_UnityEngine_XR_XRInputSubsystem___Class *klass; +struct List_1_UnityEngine_XR_InputDevice_ { + struct List_1_UnityEngine_XR_InputDevice___Class *klass; MonitorData *monitor; - struct List_1_UnityEngine_XR_XRInputSubsystem___Fields fields; + struct List_1_UnityEngine_XR_InputDevice___Fields fields; }; struct __declspec(align(8)) IntegratedSubsystem__Fields { @@ -173987,6 +176846,19 @@ struct XRInputSubsystem { struct XRInputSubsystem__Fields fields; }; +struct __declspec(align(8)) List_1_UnityEngine_XR_XRInputSubsystem___Fields { + struct XRInputSubsystem__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_XR_XRInputSubsystem_ { + struct List_1_UnityEngine_XR_XRInputSubsystem___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_XR_XRInputSubsystem___Fields fields; +}; + struct ISubsystemDescriptor { struct ISubsystemDescriptor__Class *klass; MonitorData *monitor; @@ -174205,53 +177077,6 @@ struct SpawnPoint { struct SpawnPoint__Fields fields; }; -struct EntityEventListenerBase_1_Photon_Bolt_IDoorState___Fields { - struct EntityEventListenerBase__Fields _; -}; - -struct EntityEventListenerBase_1_Photon_Bolt_IDoorState_ { - struct EntityEventListenerBase_1_Photon_Bolt_IDoorState___Class *klass; - MonitorData *monitor; - struct EntityEventListenerBase_1_Photon_Bolt_IDoorState___Fields fields; -}; - -struct EntityEventListener_1_IDoorState___Fields { - struct EntityEventListenerBase_1_Photon_Bolt_IDoorState___Fields _; -}; - -struct EntityEventListener_1_IDoorState_ { - struct EntityEventListener_1_IDoorState___Class *klass; - MonitorData *monitor; - struct EntityEventListener_1_IDoorState___Fields fields; -}; - -struct DoorBehaviour__Fields { - struct EntityEventListener_1_IDoorState___Fields _; - struct Animator *animator; - struct AnimatedInteractable *m_openLeft; - struct AnimatedInteractable *m_openRight; - struct LockedInteractable *lockedInteractable; - struct AnnaOpeningDoorInteractable *annaOpeningDoorInteractable; - struct DoorStateTrigger__Array *m_stateTriggers; - struct Outline *m_DoorOutline; - struct Transform *m_DoorKnob; - struct DoorGraphUpdate *m_DoorGraphUpdate; - struct AudioSource *m_AudioSource; - struct AudioClip *m_FallClip; - int32_t m_IsOpeningCount; - bool m_DisableUnlockOnOpen; - bool m_EnableDoorSlam; - struct AudioSource *m_DoorSlamAudioSource; - struct Transform *audioOcclusionPoint; - struct PlayRandomAudioClip *m_UnlockClips; -}; - -struct DoorBehaviour { - struct DoorBehaviour__Class *klass; - MonitorData *monitor; - struct DoorBehaviour__Fields fields; -}; - struct AnimatedInteractable__Fields { struct MonoBehaviour__Fields _; bool m_SingleInteract; @@ -174505,19 +177330,6 @@ struct UltimateCharacterLocomotionHandler { struct UltimateCharacterLocomotionHandler__Fields fields; }; -struct __declspec(align(8)) List_1_Opsive_UltimateCharacterController_Input_ActiveInputEvent___Fields { - struct ActiveInputEvent__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Opsive_UltimateCharacterController_Input_ActiveInputEvent_ { - struct List_1_Opsive_UltimateCharacterController_Input_ActiveInputEvent___Class *klass; - MonitorData *monitor; - struct List_1_Opsive_UltimateCharacterController_Input_ActiveInputEvent___Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class ActiveInputEvent_Type__Enum : int32_t { ButtonDown = 0x00000000, @@ -174565,6 +177377,19 @@ struct ActiveInputEvent { struct ActiveInputEvent__Fields fields; }; +struct __declspec(align(8)) List_1_Opsive_UltimateCharacterController_Input_ActiveInputEvent___Fields { + struct ActiveInputEvent__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Opsive_UltimateCharacterController_Input_ActiveInputEvent_ { + struct List_1_Opsive_UltimateCharacterController_Input_ActiveInputEvent___Class *klass; + MonitorData *monitor; + struct List_1_Opsive_UltimateCharacterController_Input_ActiveInputEvent___Fields fields; +}; + struct ActiveInputEvent__Array { struct ActiveInputEvent__Array__Class *klass; MonitorData *monitor; @@ -174608,16 +177433,6 @@ struct VRHand { struct VRHand__Fields fields; }; -struct SkinnedMeshRenderer__Fields { - struct Renderer__Fields _; -}; - -struct SkinnedMeshRenderer { - struct SkinnedMeshRenderer__Class *klass; - MonitorData *monitor; - struct SkinnedMeshRenderer__Fields fields; -}; - struct SkinnedMeshRenderer__Array { struct SkinnedMeshRenderer__Array__Class *klass; MonitorData *monitor; @@ -174870,23 +177685,6 @@ struct TownIntro { struct TownIntro__Fields fields; }; -struct BGMController__Fields { - struct MonoBehaviour__Fields _; - struct BGMController_BGM__Array *bgms; - struct List_1_BGMController_BGM_ *currentBgms; - struct BGMController_BGM__Array *enrageBGMs; - int32_t collisions; - bool playerInTrigger; - bool azazelIsEnraged; - int32_t currentProgress; -}; - -struct BGMController { - struct BGMController__Class *klass; - MonitorData *monitor; - struct BGMController__Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class BGMController_RequiresTrigger__Enum : int32_t { None = 0x00000000, @@ -174931,6 +177729,23 @@ struct BGMController_BGM { struct BGMController_BGM__Fields fields; }; +struct BGMController__Fields { + struct MonoBehaviour__Fields _; + struct BGMController_BGM__Array *bgms; + struct List_1_BGMController_BGM_ *currentBgms; + struct BGMController_BGM__Array *enrageBGMs; + int32_t collisions; + bool playerInTrigger; + bool azazelIsEnraged; + int32_t currentProgress; +}; + +struct BGMController { + struct BGMController__Class *klass; + MonitorData *monitor; + struct BGMController__Fields fields; +}; + struct BGMController_BGM__Array { struct BGMController_BGM__Array__Class *klass; MonitorData *monitor; @@ -175100,19 +177915,6 @@ struct IEnumerator_1_UnityEngine_ParticleSystem_ { MonitorData *monitor; }; -struct __declspec(align(8)) List_1_TownLocation___Fields { - struct TownLocation__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_TownLocation_ { - struct List_1_TownLocation___Class *klass; - MonitorData *monitor; - struct List_1_TownLocation___Fields fields; -}; - struct __declspec(align(8)) TownLocation__Fields { struct String *name; int32_t id; @@ -175129,6 +177931,19 @@ struct TownLocation { struct TownLocation__Fields fields; }; +struct __declspec(align(8)) List_1_TownLocation___Fields { + struct TownLocation__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_TownLocation_ { + struct List_1_TownLocation___Class *klass; + MonitorData *monitor; + struct List_1_TownLocation___Fields fields; +}; + struct EntityEventListenerBase_1_Photon_Bolt_ITownPentagramState___Fields { struct EntityEventListenerBase__Fields _; }; @@ -175179,6 +177994,18 @@ struct TownPentagramController { struct TownPentagramController__Fields fields; }; +struct __declspec(align(8)) TownPentagramCandle__Fields { + struct GameObject *flame; + struct MeshRenderer__Array *renderers; + struct TownPentagramCandleInteractable *interactable; +}; + +struct TownPentagramCandle { + struct TownPentagramCandle__Class *klass; + MonitorData *monitor; + struct TownPentagramCandle__Fields fields; +}; + struct __declspec(align(8)) List_1_TownPentagramCandle___Fields { struct TownPentagramCandle__Array *_items; int32_t _size; @@ -175192,18 +178019,6 @@ struct List_1_TownPentagramCandle_ { struct List_1_TownPentagramCandle___Fields fields; }; -struct __declspec(align(8)) TownPentagramCandle__Fields { - struct GameObject *flame; - struct MeshRenderer__Array *renderers; - struct TownPentagramCandleInteractable *interactable; -}; - -struct TownPentagramCandle { - struct TownPentagramCandle__Class *klass; - MonitorData *monitor; - struct TownPentagramCandle__Fields fields; -}; - struct ObjectInteractable__Fields { struct GlobalEventListener__Fields _; struct BoltEntity *m_BoltEntity; @@ -175393,19 +178208,6 @@ struct TeleportBox { struct TeleportBox__Fields fields; }; -struct __declspec(align(8)) List_1_LockboxSpawnPoint___Fields { - struct LockboxSpawnPoint__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_LockboxSpawnPoint_ { - struct List_1_LockboxSpawnPoint___Class *klass; - MonitorData *monitor; - struct List_1_LockboxSpawnPoint___Fields fields; -}; - struct LockboxSpawnPoint__Fields { struct MonoBehaviour__Fields _; struct String *keyName; @@ -175420,6 +178222,19 @@ struct LockboxSpawnPoint { struct LockboxSpawnPoint__Fields fields; }; +struct __declspec(align(8)) List_1_LockboxSpawnPoint___Fields { + struct LockboxSpawnPoint__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_LockboxSpawnPoint_ { + struct List_1_LockboxSpawnPoint___Class *klass; + MonitorData *monitor; + struct List_1_LockboxSpawnPoint___Fields fields; +}; + struct LockboxSpawnPoint__Array { struct LockboxSpawnPoint__Array__Class *klass; MonitorData *monitor; @@ -175477,6 +178292,19 @@ struct IEnumerator_1_UnityEngine_AudioSource_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_KeySpawnPoint_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct KeySpawnPoint *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_KeySpawnPoint___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_KeySpawnPoint___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_KeySpawnPoint_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_KeySpawnPoint___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_KeySpawnPoint___Array *_entries; @@ -175496,19 +178324,6 @@ struct Dictionary_2_System_String_KeySpawnPoint_ { struct Dictionary_2_System_String_KeySpawnPoint___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_KeySpawnPoint_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct KeySpawnPoint *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_KeySpawnPoint___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_KeySpawnPoint___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_KeySpawnPoint_ fields; -}; - struct KeySpawnPoint__Fields { struct MonoBehaviour__Fields _; struct DoorBehaviour__Array *m_doorsToCheck; @@ -175637,30 +178452,6 @@ struct ManorMapController { struct ManorMapController__Fields fields; }; -struct __declspec(align(8)) List_1_ManorLocation___Fields { - struct ManorLocation__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_ManorLocation_ { - struct List_1_ManorLocation___Class *klass; - MonitorData *monitor; - struct List_1_ManorLocation___Fields fields; -}; - -struct __declspec(align(8)) ManorLocation__Fields { - struct String *name; - struct InitialGoatSpawn__Array *spiritSpawnPoints; -}; - -struct ManorLocation { - struct ManorLocation__Class *klass; - MonitorData *monitor; - struct ManorLocation__Fields fields; -}; - struct InitialGoatSpawn__Fields { struct MonoBehaviour__Fields _; struct DoorBehaviour__Array *m_DoorsToLock; @@ -175675,16 +178466,28 @@ struct InitialGoatSpawn { struct InitialGoatSpawn__Fields fields; }; -struct TrashCanSpawnPoint__Fields { - struct MonoBehaviour__Fields _; - struct Transform *escapeHoleEntry; - struct GameObject *escapeHole; +struct __declspec(align(8)) ManorLocation__Fields { + struct String *name; + struct InitialGoatSpawn__Array *spiritSpawnPoints; }; -struct TrashCanSpawnPoint { - struct TrashCanSpawnPoint__Class *klass; +struct ManorLocation { + struct ManorLocation__Class *klass; MonitorData *monitor; - struct TrashCanSpawnPoint__Fields fields; + struct ManorLocation__Fields fields; +}; + +struct __declspec(align(8)) List_1_ManorLocation___Fields { + struct ManorLocation__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_ManorLocation_ { + struct List_1_ManorLocation___Class *klass; + MonitorData *monitor; + struct List_1_ManorLocation___Fields fields; }; struct InitialGoatSpawn__Array { @@ -175708,19 +178511,6 @@ struct IEnumerator_1_ManorLocation_ { MonitorData *monitor; }; -struct __declspec(align(8)) List_1_ManorSpirit___Fields { - struct ManorSpirit__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_ManorSpirit_ { - struct List_1_ManorSpirit___Class *klass; - MonitorData *monitor; - struct List_1_ManorSpirit___Fields fields; -}; - struct __declspec(align(8)) ManorSpirit__Fields { struct String *name; struct Texture *photoTexture; @@ -175734,6 +178524,19 @@ struct ManorSpirit { struct ManorSpirit__Fields fields; }; +struct __declspec(align(8)) List_1_ManorSpirit___Fields { + struct ManorSpirit__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_ManorSpirit_ { + struct List_1_ManorSpirit___Class *klass; + MonitorData *monitor; + struct List_1_ManorSpirit___Fields fields; +}; + struct ManorSpirit__Array { struct ManorSpirit__Array__Class *klass; MonitorData *monitor; @@ -175747,19 +178550,6 @@ struct IEnumerator_1_ManorSpirit_ { MonitorData *monitor; }; -struct __declspec(align(8)) List_1_ManorSpiritController___Fields { - struct ManorSpiritController__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_ManorSpiritController_ { - struct List_1_ManorSpiritController___Class *klass; - MonitorData *monitor; - struct List_1_ManorSpiritController___Fields fields; -}; - struct EntityEventListenerBase_1_Photon_Bolt_IManorSpiritState___Fields { struct EntityEventListenerBase__Fields _; }; @@ -175805,6 +178595,19 @@ struct ManorSpiritController { struct ManorSpiritController__Fields fields; }; +struct __declspec(align(8)) List_1_ManorSpiritController___Fields { + struct ManorSpiritController__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_ManorSpiritController_ { + struct List_1_ManorSpiritController___Class *klass; + MonitorData *monitor; + struct List_1_ManorSpiritController___Fields fields; +}; + struct ManorSpiritController__Array { struct ManorSpiritController__Array__Class *klass; MonitorData *monitor; @@ -175818,19 +178621,6 @@ struct IEnumerator_1_ManorSpiritController_ { MonitorData *monitor; }; -struct __declspec(align(8)) List_1_ManorMirrorController___Fields { - struct ManorMirrorController__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_ManorMirrorController_ { - struct List_1_ManorMirrorController___Class *klass; - MonitorData *monitor; - struct List_1_ManorMirrorController___Fields fields; -}; - struct EntityEventListenerBase_1_Photon_Bolt_IManorMirrorState___Fields { struct EntityEventListenerBase__Fields _; }; @@ -175885,6 +178675,19 @@ struct ManorMirrorController { struct ManorMirrorController__Fields fields; }; +struct __declspec(align(8)) List_1_ManorMirrorController___Fields { + struct ManorMirrorController__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_ManorMirrorController_ { + struct List_1_ManorMirrorController___Class *klass; + MonitorData *monitor; + struct List_1_ManorMirrorController___Fields fields; +}; + struct ReflectionProbe__Fields { struct Behaviour__Fields _; }; @@ -175979,6 +178782,19 @@ struct IEnumerator_1_ManorMirrorController_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_ManorSpirit_InitialGoatSpawn_ { + int32_t hashCode; + int32_t next; + struct ManorSpirit *key; + struct InitialGoatSpawn *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_ManorSpirit_InitialGoatSpawn___Boxed { + struct Dictionary_2_TKey_TValue_Entry_ManorSpirit_InitialGoatSpawn___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_ManorSpirit_InitialGoatSpawn_ fields; +}; + struct __declspec(align(8)) Dictionary_2_ManorSpirit_InitialGoatSpawn___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_ManorSpirit_InitialGoatSpawn___Array *_entries; @@ -175998,19 +178814,6 @@ struct Dictionary_2_ManorSpirit_InitialGoatSpawn_ { struct Dictionary_2_ManorSpirit_InitialGoatSpawn___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_ManorSpirit_InitialGoatSpawn_ { - int32_t hashCode; - int32_t next; - struct ManorSpirit *key; - struct InitialGoatSpawn *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_ManorSpirit_InitialGoatSpawn___Boxed { - struct Dictionary_2_TKey_TValue_Entry_ManorSpirit_InitialGoatSpawn___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_ManorSpirit_InitialGoatSpawn_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_ManorSpirit_InitialGoatSpawn___Array { struct Dictionary_2_TKey_TValue_Entry_ManorSpirit_InitialGoatSpawn___Array__Class *klass; MonitorData *monitor; @@ -176196,6 +178999,288 @@ struct Player { struct Player__Fields fields; }; +#if defined(_CPLUSPLUS_) +enum class cgAhWyfsfnPBbygscaxJCrsKfviSB_HtDsPQcvzPrRfTRMoeeIKcGLKZKi__Enum : int32_t { + Active = 0x00000000, + Idle = 0x00000001, + Disabled = 0x00000002, +}; + +#else +enum cgAhWyfsfnPBbygscaxJCrsKfviSB_HtDsPQcvzPrRfTRMoeeIKcGLKZKi__Enum { + cgAhWyfsfnPBbygscaxJCrsKfviSB_HtDsPQcvzPrRfTRMoeeIKcGLKZKi__Enum_Active = 0x00000000, + cgAhWyfsfnPBbygscaxJCrsKfviSB_HtDsPQcvzPrRfTRMoeeIKcGLKZKi__Enum_Idle = 0x00000001, + cgAhWyfsfnPBbygscaxJCrsKfviSB_HtDsPQcvzPrRfTRMoeeIKcGLKZKi__Enum_Disabled = 0x00000002, +}; + +#endif +struct cgAhWyfsfnPBbygscaxJCrsKfviSB_HtDsPQcvzPrRfTRMoeeIKcGLKZKi__Enum__Boxed { + struct cgAhWyfsfnPBbygscaxJCrsKfviSB_HtDsPQcvzPrRfTRMoeeIKcGLKZKi__Enum__Class *klass; + MonitorData *monitor; + #if defined(_CPLUSPLUS_) + cgAhWyfsfnPBbygscaxJCrsKfviSB_HtDsPQcvzPrRfTRMoeeIKcGLKZKi__Enum value; + #else + int32_t value; + #endif +}; + +struct __declspec(align(8)) othBwbjJCfqjCkCuDgXhdkQCXIPtA__Fields { + bool mGFiXvoDjkhBnzjtBqYrolpkhBjV; + struct Controller *yrSDfNzGPLUBuAkUrbEMVpfZXAPl; + struct ControllerMap *SnxyNvoXwKDPxGthVbJdACswyiMW; + struct ActionElementMap *mwOIapqEbFwmzhMbVirxHtEJZJrdA; +}; + +struct othBwbjJCfqjCkCuDgXhdkQCXIPtA { + struct othBwbjJCfqjCkCuDgXhdkQCXIPtA__Class *klass; + MonitorData *monitor; + struct othBwbjJCfqjCkCuDgXhdkQCXIPtA__Fields fields; +}; + +struct __declspec(align(8)) cgAhWyfsfnPBbygscaxJCrsKfviSB__Fields { + struct String *DvzsLoKoKRWJfvrNafCaPsjALsgO; + int32_t bFmriaRsvBglTeaMGZgBsqFLGAvdb; + int32_t hzuAPgOiGAXmieZYrLBjsbtySLnQ; + int32_t mOXJXWAZqYbVXoRKaCwzuCaWQpPt; + struct InputBehavior *AxhFdgwwCXiZZKQjUvThFuxekjjJ; + struct cgAhWyfsfnPBbygscaxJCrsKfviSB_gtktRJZQdSncUUzoSqggqmYQqHdH *bObBDcCWtLEgEAwqdQmunFRGZgRrA; + float AkRlDQfmKoVCNprvTRMqRAmMrYVG; + float yFejTDEbEHVTgtKWPNmpgXIOxvis; + float YUWuHbnUywLcgvGYHIirfWMuaBRt; + float BvduyUNLlRiAMDKUCwpmHrWfEheM; + #if defined(_CPLUSPLUS_) + ButtonStateFlags__Enum tuwvERkfVzfsiuBNBmrtzigxkDVj; + #else + int32_t tuwvERkfVzfsiuBNBmrtzigxkDVj; + #endif + #if defined(_CPLUSPLUS_) + ButtonStateFlags__Enum YmLPOrHCqmctSjzcNcZZecmBUfRC; + #else + int32_t YmLPOrHCqmctSjzcNcZZecmBUfRC; + #endif + float oqHcJmcTWuJdOsnmSmDJduWjRjbpA; + bool lbwRiTGyLQxXbicuWiaRsoVWEfjN; + #if defined(_CPLUSPLUS_) + AxisCoordinateMode__Enum TroEbigruTmfWLnHzAIUQozzSWuaA; + #else + int32_t TroEbigruTmfWLnHzAIUQozzSWuaA; + #endif + #if defined(_CPLUSPLUS_) + AxisCoordinateMode__Enum VbPjRuvtWTaraWxrDBERHgFMKHXL; + #else + int32_t VbPjRuvtWTaraWxrDBERHgFMKHXL; + #endif + struct othBwbjJCfqjCkCuDgXhdkQCXIPtA *hwhVbsPlldCTgIXbqAIKaSSBOUAOA; + uint32_t oWWvgccVcLslxXEYFJPxUwvTolzE; + uint32_t QNvwnVBqvvOyaIoZpKWuptJAkazC; + bool MXPAEqKjPgRuKHScwgkGiJLPULzMA; + #if defined(_CPLUSPLUS_) + cgAhWyfsfnPBbygscaxJCrsKfviSB_HtDsPQcvzPrRfTRMoeeIKcGLKZKi__Enum xBfEWzRlQPxvQcXqqHvKaZeawkNw; + #else + int32_t xBfEWzRlQPxvQcXqqHvKaZeawkNw; + #endif + int32_t LmsXtgBhRdVkDJepAddHabOrcdSTA; + struct othBwbjJCfqjCkCuDgXhdkQCXIPtA__Array *caRrzPReBpAucBdzAhrsUfpbOFje; + struct List_1_Rewired_InputActionSourceData_ *VGkEWxbxsQCfBAehvrymKdBmQbyFA; + struct ReadOnlyCollection_1_Rewired_InputActionSourceData_ *qDijZxVmiFEFSlqgTiqnuOVwsZNU; + bool gwmfvwkwpWcCfxKHjuMNKqtmkFCw; + bool lFeMDueBBxcsfgWAEAHOEyCaaKEr; + #if defined(_CPLUSPLUS_) + cgAhWyfsfnPBbygscaxJCrsKfviSB_HtDsPQcvzPrRfTRMoeeIKcGLKZKi__Enum UtSIylivwBVqQkeRomlhMfhhluGc; + #else + int32_t UtSIylivwBVqQkeRomlhMfhhluGc; + #endif +}; + +struct cgAhWyfsfnPBbygscaxJCrsKfviSB { + struct cgAhWyfsfnPBbygscaxJCrsKfviSB__Class *klass; + MonitorData *monitor; + struct cgAhWyfsfnPBbygscaxJCrsKfviSB__Fields fields; +}; + +#if defined(_CPLUSPLUS_) +enum class InputActionEventType__Enum : int32_t { + Update = 0x00000000, + ButtonPressed = 0x00000001, + ButtonUnpressed = 0x00000002, + ButtonJustPressed = 0x00000003, + ButtonJustReleased = 0x00000004, + ButtonDoublePressed = 0x00000005, + ButtonJustDoublePressed = 0x00000006, + ButtonPressedForTime = 0x00000007, + ButtonJustPressedForTime = 0x00000008, + ButtonPressedForTimeJustReleased = 0x00000009, + ButtonShortPressed = 0x0000000a, + ButtonJustShortPressed = 0x0000000b, + ButtonShortPressJustReleased = 0x0000000c, + ButtonLongPressed = 0x0000000d, + ButtonJustLongPressed = 0x0000000e, + ButtonLongPressJustReleased = 0x0000000f, + ButtonRepeating = 0x00000010, + NegativeButtonPressed = 0x00000011, + NegativeButtonUnpressed = 0x00000012, + NegativeButtonJustPressed = 0x00000013, + NegativeButtonJustReleased = 0x00000014, + NegativeButtonDoublePressed = 0x00000015, + NegativeButtonJustDoublePressed = 0x00000016, + NegativeButtonPressedForTime = 0x00000017, + NegativeButtonJustPressedForTime = 0x00000018, + NegativeButtonPressedForTimeJustReleased = 0x00000019, + NegativeButtonShortPressed = 0x0000001a, + NegativeButtonJustShortPressed = 0x0000001b, + NegativeButtonShortPressJustReleased = 0x0000001c, + NegativeButtonLongPressed = 0x0000001d, + NegativeButtonJustLongPressed = 0x0000001e, + NegativeButtonLongPressJustReleased = 0x0000001f, + NegativeButtonRepeating = 0x00000020, + AxisActive = 0x00000021, + AxisInactive = 0x00000022, + AxisRawActive = 0x00000023, + AxisRawInactive = 0x00000024, + AxisActiveOrJustInactive = 0x00000025, + AxisRawActiveOrJustInactive = 0x00000026, + ButtonDoublePressJustReleased = 0x00000064, + ButtonSinglePressed = 0x00000065, + ButtonJustSinglePressed = 0x00000066, + ButtonSinglePressJustReleased = 0x00000067, + NegativeButtonDoublePressJustReleased = 0x00000096, + NegativeButtonSinglePressed = 0x00000097, + NegativeButtonJustSinglePressed = 0x00000098, + NegativeButtonSinglePressJustReleased = 0x00000099, +}; + +#else +enum InputActionEventType__Enum { + InputActionEventType__Enum_Update = 0x00000000, + InputActionEventType__Enum_ButtonPressed = 0x00000001, + InputActionEventType__Enum_ButtonUnpressed = 0x00000002, + InputActionEventType__Enum_ButtonJustPressed = 0x00000003, + InputActionEventType__Enum_ButtonJustReleased = 0x00000004, + InputActionEventType__Enum_ButtonDoublePressed = 0x00000005, + InputActionEventType__Enum_ButtonJustDoublePressed = 0x00000006, + InputActionEventType__Enum_ButtonPressedForTime = 0x00000007, + InputActionEventType__Enum_ButtonJustPressedForTime = 0x00000008, + InputActionEventType__Enum_ButtonPressedForTimeJustReleased = 0x00000009, + InputActionEventType__Enum_ButtonShortPressed = 0x0000000a, + InputActionEventType__Enum_ButtonJustShortPressed = 0x0000000b, + InputActionEventType__Enum_ButtonShortPressJustReleased = 0x0000000c, + InputActionEventType__Enum_ButtonLongPressed = 0x0000000d, + InputActionEventType__Enum_ButtonJustLongPressed = 0x0000000e, + InputActionEventType__Enum_ButtonLongPressJustReleased = 0x0000000f, + InputActionEventType__Enum_ButtonRepeating = 0x00000010, + InputActionEventType__Enum_NegativeButtonPressed = 0x00000011, + InputActionEventType__Enum_NegativeButtonUnpressed = 0x00000012, + InputActionEventType__Enum_NegativeButtonJustPressed = 0x00000013, + InputActionEventType__Enum_NegativeButtonJustReleased = 0x00000014, + InputActionEventType__Enum_NegativeButtonDoublePressed = 0x00000015, + InputActionEventType__Enum_NegativeButtonJustDoublePressed = 0x00000016, + InputActionEventType__Enum_NegativeButtonPressedForTime = 0x00000017, + InputActionEventType__Enum_NegativeButtonJustPressedForTime = 0x00000018, + InputActionEventType__Enum_NegativeButtonPressedForTimeJustReleased = 0x00000019, + InputActionEventType__Enum_NegativeButtonShortPressed = 0x0000001a, + InputActionEventType__Enum_NegativeButtonJustShortPressed = 0x0000001b, + InputActionEventType__Enum_NegativeButtonShortPressJustReleased = 0x0000001c, + InputActionEventType__Enum_NegativeButtonLongPressed = 0x0000001d, + InputActionEventType__Enum_NegativeButtonJustLongPressed = 0x0000001e, + InputActionEventType__Enum_NegativeButtonLongPressJustReleased = 0x0000001f, + InputActionEventType__Enum_NegativeButtonRepeating = 0x00000020, + InputActionEventType__Enum_AxisActive = 0x00000021, + InputActionEventType__Enum_AxisInactive = 0x00000022, + InputActionEventType__Enum_AxisRawActive = 0x00000023, + InputActionEventType__Enum_AxisRawInactive = 0x00000024, + InputActionEventType__Enum_AxisActiveOrJustInactive = 0x00000025, + InputActionEventType__Enum_AxisRawActiveOrJustInactive = 0x00000026, + InputActionEventType__Enum_ButtonDoublePressJustReleased = 0x00000064, + InputActionEventType__Enum_ButtonSinglePressed = 0x00000065, + InputActionEventType__Enum_ButtonJustSinglePressed = 0x00000066, + InputActionEventType__Enum_ButtonSinglePressJustReleased = 0x00000067, + InputActionEventType__Enum_NegativeButtonDoublePressJustReleased = 0x00000096, + InputActionEventType__Enum_NegativeButtonSinglePressed = 0x00000097, + InputActionEventType__Enum_NegativeButtonJustSinglePressed = 0x00000098, + InputActionEventType__Enum_NegativeButtonSinglePressJustReleased = 0x00000099, +}; + +#endif +struct InputActionEventType__Enum__Boxed { + struct InputActionEventType__Enum__Class *klass; + MonitorData *monitor; + #if defined(_CPLUSPLUS_) + InputActionEventType__Enum value; + #else + int32_t value; + #endif +}; + +struct __declspec(align(8)) MRGkKzhgDCfculrfXakxXfUSFUsK_pEhrOFQDNlWhiCRQwqLfhdkKHswE__Fields { + struct Action_1_Rewired_InputActionEventData_ *EbPkqdARHGIDwsIdtmoIkULLoFZX; + #if defined(_CPLUSPLUS_) + UpdateLoopType__Enum bgmCxafTAhGyaRRTSDTPlAiCLjtFb; + #else + int32_t bgmCxafTAhGyaRRTSDTPlAiCLjtFb; + #endif + #if defined(_CPLUSPLUS_) + InputActionEventType__Enum ensAJnweQpaOVGsRtkrfWOOINyg; + #else + int32_t ensAJnweQpaOVGsRtkrfWOOINyg; + #endif + int32_t FnhTtRqBKfVQAiofWohUGVPtsslN; + bool jIdBDBASHoXENSRKHebmFKtBJicLA; + struct Single__Array *EPPxTXxdXKASZRpTutvnLShevueJ; +}; + +struct MRGkKzhgDCfculrfXakxXfUSFUsK_pEhrOFQDNlWhiCRQwqLfhdkKHswE { + struct MRGkKzhgDCfculrfXakxXfUSFUsK_pEhrOFQDNlWhiCRQwqLfhdkKHswE__Class *klass; + MonitorData *monitor; + struct MRGkKzhgDCfculrfXakxXfUSFUsK_pEhrOFQDNlWhiCRQwqLfhdkKHswE__Fields fields; +}; + +struct __declspec(align(8)) AList_1_MRGkKzhgDCfculrfXakxXfUSFUsK_pEhrOFQDNlWhiCRQwqLfhdkKHswE___Fields { + struct IEqualityComparer_1_MRGkKzhgDCfculrfXakxXfUSFUsK_pEhrOFQDNlWhiCRQwqLfhdkKHswE_ *IffVJRWXMWVnHJdLRJYLVauxgDLkA; + struct MRGkKzhgDCfculrfXakxXfUSFUsK_pEhrOFQDNlWhiCRQwqLfhdkKHswE__Array *_items; + int32_t AmnCvjBSkGhAaMYjlMZxEEvbSrui; + int32_t _count; + int32_t MlBWsNGNiomUVthQUNRXfpFBfdvcA; + bool BgeCjBfkGdQNGlLKwiklClEiXqZYb; + int32_t NKRGkWDwiVqYeHERShAcPbFuCIMgb; + bool rEPnayQyfurrRXZjmKdrDQdkiUwbA; + int32_t vyAzFNcXzBhuRiyIKSwxhSukcXQu; + struct Object *eCrDVxsFDCrYCyMPHlSFBIZwopNk; +}; + +struct AList_1_MRGkKzhgDCfculrfXakxXfUSFUsK_pEhrOFQDNlWhiCRQwqLfhdkKHswE_ { + struct AList_1_MRGkKzhgDCfculrfXakxXfUSFUsK_pEhrOFQDNlWhiCRQwqLfhdkKHswE___Class *klass; + MonitorData *monitor; + struct AList_1_MRGkKzhgDCfculrfXakxXfUSFUsK_pEhrOFQDNlWhiCRQwqLfhdkKHswE___Fields fields; +}; + +struct __declspec(align(8)) MRGkKzhgDCfculrfXakxXfUSFUsK__Fields { + bool RzraNyPJijlOciMGiYynBkatAIFJ; + struct AList_1_MRGkKzhgDCfculrfXakxXfUSFUsK_pEhrOFQDNlWhiCRQwqLfhdkKHswE___Array *GmRhhZYfXwmCYVFPyqNkggwVwraf; + struct Int32__Array *HxRZzaUveekbzPifLbAEiPeNRiCcb; + int32_t tIAiiLyQVtWCTVXaiFxWxmfnbZEb; + int32_t phRFwZJuOdhnFGQrBmKREDLJNIIuB; +}; + +struct MRGkKzhgDCfculrfXakxXfUSFUsK { + struct MRGkKzhgDCfculrfXakxXfUSFUsK__Class *klass; + MonitorData *monitor; + struct MRGkKzhgDCfculrfXakxXfUSFUsK__Fields fields; +}; + +struct __declspec(align(8)) iodYpqMJIZFiggHnRPtbBYdCAZfVB_1_Rewired_PlayerActiveControllerChangedDelegate___Fields { + struct ldnqCJRTNbykOZAyPczivAgtlhxQ_1_Rewired_PlayerActiveControllerChangedDelegate_ *NltnxekWIelQpnpPDgNvjQSNOgPq; + struct Controller *qBAZHylsdIWUgiQrCMGfzcvAhrNgA; + struct Controller *KNtVgDFIQLOfWNDLacavctqQbUjfb; + struct Controller *TuWdBpDKwYCpMYvjQzYIkiIvlFJt; + int32_t NVJJRzMHTUlSQZVJEpKOwRDVtvab; +}; + +struct iodYpqMJIZFiggHnRPtbBYdCAZfVB_1_Rewired_PlayerActiveControllerChangedDelegate_ { + struct iodYpqMJIZFiggHnRPtbBYdCAZfVB_1_Rewired_PlayerActiveControllerChangedDelegate___Class *klass; + MonitorData *monitor; + struct iodYpqMJIZFiggHnRPtbBYdCAZfVB_1_Rewired_PlayerActiveControllerChangedDelegate___Fields fields; +}; + struct __declspec(align(8)) XKHfzUVAieDxXBogCMTJRCSldnQzA__Fields { struct List_1_Rewired_Joystick_ *qpSvmKmevWSIHfzkjtfuWXzDKjuW; struct List_1_Rewired_Joystick_ *ZOgCorsRemLhIHqCYuKtFizKaetQ; @@ -176242,17 +179327,19 @@ struct XKHfzUVAieDxXBogCMTJRCSldnQzA { struct XKHfzUVAieDxXBogCMTJRCSldnQzA__Fields fields; }; -struct __declspec(align(8)) List_1_Rewired_Joystick___Fields { - struct Joystick__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; +struct Controller_Hat__Fields { + struct Controller_CompoundElement__Fields _; + int32_t cBDjskGJLhdKqGtiFqvHKKqQDJvJB; + struct Controller_Button__Array *aaAQIQJYsFJjBHOeDGNHAeRaFYee; + struct ReadOnlyCollection_1_Rewired_Controller_Button_ *FuYJdUAroAZtMGdYckMIpSwnkNCg; + struct Int32__Array *IOvhuiRkgFbUQYQBHcbWnJkBZDqx; + bool wsybJpNLfRaXdCqxBASHDivMqPFO; }; -struct List_1_Rewired_Joystick_ { - struct List_1_Rewired_Joystick___Class *klass; +struct Controller_Hat { + struct Controller_Hat__Class *klass; MonitorData *monitor; - struct List_1_Rewired_Joystick___Fields fields; + struct Controller_Hat__Fields fields; }; struct Joystick__Fields { @@ -176277,6 +179364,19 @@ struct Joystick { struct Joystick__Fields fields; }; +struct __declspec(align(8)) List_1_Rewired_Joystick___Fields { + struct Joystick__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Rewired_Joystick_ { + struct List_1_Rewired_Joystick___Class *klass; + MonitorData *monitor; + struct List_1_Rewired_Joystick___Fields fields; +}; + struct IInputManagerJoystickPublic { struct IInputManagerJoystickPublic__Class *klass; MonitorData *monitor; @@ -176303,21 +179403,6 @@ struct IEnumerator_1_Rewired_JoystickType_ { MonitorData *monitor; }; -struct Controller_Hat__Fields { - struct Controller_CompoundElement__Fields _; - int32_t cBDjskGJLhdKqGtiFqvHKKqQDJvJB; - struct Controller_Button__Array *aaAQIQJYsFJjBHOeDGNHAeRaFYee; - struct ReadOnlyCollection_1_Rewired_Controller_Button_ *FuYJdUAroAZtMGdYckMIpSwnkNCg; - struct Int32__Array *IOvhuiRkgFbUQYQBHcbWnJkBZDqx; - bool wsybJpNLfRaXdCqxBASHDivMqPFO; -}; - -struct Controller_Hat { - struct Controller_Hat__Class *klass; - MonitorData *monitor; - struct Controller_Hat__Fields fields; -}; - struct Controller_Hat__Array { struct Controller_Hat__Array__Class *klass; MonitorData *monitor; @@ -176496,105 +179581,6 @@ struct IUnifiedMouseSource { MonitorData *monitor; }; -#if defined(_CPLUSPLUS_) -enum class cgAhWyfsfnPBbygscaxJCrsKfviSB_HtDsPQcvzPrRfTRMoeeIKcGLKZKi__Enum : int32_t { - Active = 0x00000000, - Idle = 0x00000001, - Disabled = 0x00000002, -}; - -#else -enum cgAhWyfsfnPBbygscaxJCrsKfviSB_HtDsPQcvzPrRfTRMoeeIKcGLKZKi__Enum { - cgAhWyfsfnPBbygscaxJCrsKfviSB_HtDsPQcvzPrRfTRMoeeIKcGLKZKi__Enum_Active = 0x00000000, - cgAhWyfsfnPBbygscaxJCrsKfviSB_HtDsPQcvzPrRfTRMoeeIKcGLKZKi__Enum_Idle = 0x00000001, - cgAhWyfsfnPBbygscaxJCrsKfviSB_HtDsPQcvzPrRfTRMoeeIKcGLKZKi__Enum_Disabled = 0x00000002, -}; - -#endif -struct cgAhWyfsfnPBbygscaxJCrsKfviSB_HtDsPQcvzPrRfTRMoeeIKcGLKZKi__Enum__Boxed { - struct cgAhWyfsfnPBbygscaxJCrsKfviSB_HtDsPQcvzPrRfTRMoeeIKcGLKZKi__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - cgAhWyfsfnPBbygscaxJCrsKfviSB_HtDsPQcvzPrRfTRMoeeIKcGLKZKi__Enum value; - #else - int32_t value; - #endif -}; - -struct __declspec(align(8)) cgAhWyfsfnPBbygscaxJCrsKfviSB__Fields { - struct String *DvzsLoKoKRWJfvrNafCaPsjALsgO; - int32_t bFmriaRsvBglTeaMGZgBsqFLGAvdb; - int32_t hzuAPgOiGAXmieZYrLBjsbtySLnQ; - int32_t mOXJXWAZqYbVXoRKaCwzuCaWQpPt; - struct InputBehavior *AxhFdgwwCXiZZKQjUvThFuxekjjJ; - struct cgAhWyfsfnPBbygscaxJCrsKfviSB_gtktRJZQdSncUUzoSqggqmYQqHdH *bObBDcCWtLEgEAwqdQmunFRGZgRrA; - float AkRlDQfmKoVCNprvTRMqRAmMrYVG; - float yFejTDEbEHVTgtKWPNmpgXIOxvis; - float YUWuHbnUywLcgvGYHIirfWMuaBRt; - float BvduyUNLlRiAMDKUCwpmHrWfEheM; - #if defined(_CPLUSPLUS_) - ButtonStateFlags__Enum tuwvERkfVzfsiuBNBmrtzigxkDVj; - #else - int32_t tuwvERkfVzfsiuBNBmrtzigxkDVj; - #endif - #if defined(_CPLUSPLUS_) - ButtonStateFlags__Enum YmLPOrHCqmctSjzcNcZZecmBUfRC; - #else - int32_t YmLPOrHCqmctSjzcNcZZecmBUfRC; - #endif - float oqHcJmcTWuJdOsnmSmDJduWjRjbpA; - bool lbwRiTGyLQxXbicuWiaRsoVWEfjN; - #if defined(_CPLUSPLUS_) - AxisCoordinateMode__Enum TroEbigruTmfWLnHzAIUQozzSWuaA; - #else - int32_t TroEbigruTmfWLnHzAIUQozzSWuaA; - #endif - #if defined(_CPLUSPLUS_) - AxisCoordinateMode__Enum VbPjRuvtWTaraWxrDBERHgFMKHXL; - #else - int32_t VbPjRuvtWTaraWxrDBERHgFMKHXL; - #endif - struct othBwbjJCfqjCkCuDgXhdkQCXIPtA *hwhVbsPlldCTgIXbqAIKaSSBOUAOA; - uint32_t oWWvgccVcLslxXEYFJPxUwvTolzE; - uint32_t QNvwnVBqvvOyaIoZpKWuptJAkazC; - bool MXPAEqKjPgRuKHScwgkGiJLPULzMA; - #if defined(_CPLUSPLUS_) - cgAhWyfsfnPBbygscaxJCrsKfviSB_HtDsPQcvzPrRfTRMoeeIKcGLKZKi__Enum xBfEWzRlQPxvQcXqqHvKaZeawkNw; - #else - int32_t xBfEWzRlQPxvQcXqqHvKaZeawkNw; - #endif - int32_t LmsXtgBhRdVkDJepAddHabOrcdSTA; - struct othBwbjJCfqjCkCuDgXhdkQCXIPtA__Array *caRrzPReBpAucBdzAhrsUfpbOFje; - struct List_1_Rewired_InputActionSourceData_ *VGkEWxbxsQCfBAehvrymKdBmQbyFA; - struct ReadOnlyCollection_1_Rewired_InputActionSourceData_ *qDijZxVmiFEFSlqgTiqnuOVwsZNU; - bool gwmfvwkwpWcCfxKHjuMNKqtmkFCw; - bool lFeMDueBBxcsfgWAEAHOEyCaaKEr; - #if defined(_CPLUSPLUS_) - cgAhWyfsfnPBbygscaxJCrsKfviSB_HtDsPQcvzPrRfTRMoeeIKcGLKZKi__Enum UtSIylivwBVqQkeRomlhMfhhluGc; - #else - int32_t UtSIylivwBVqQkeRomlhMfhhluGc; - #endif -}; - -struct cgAhWyfsfnPBbygscaxJCrsKfviSB { - struct cgAhWyfsfnPBbygscaxJCrsKfviSB__Class *klass; - MonitorData *monitor; - struct cgAhWyfsfnPBbygscaxJCrsKfviSB__Fields fields; -}; - -struct __declspec(align(8)) cgAhWyfsfnPBbygscaxJCrsKfviSB_gtktRJZQdSncUUzoSqggqmYQqHdH__Fields { - struct cgAhWyfsfnPBbygscaxJCrsKfviSB_gtktRJZQdSncUUzoSqggqmYQqHdH_FwBhSBrMyioEuRlEnBadBwkINECm__Array *tvIRKGNYRTfLNKeulGHmeotaGOGEA; - struct Int32__Array *JSiczlezEwaaIrUIkxyVfOpQLPCtA; - int32_t KByPCrlNtvTDxUZggIOsPMXKzebj; - struct cgAhWyfsfnPBbygscaxJCrsKfviSB_gtktRJZQdSncUUzoSqggqmYQqHdH_FwBhSBrMyioEuRlEnBadBwkINECm *qtleFCROTDVqULJLxchlGocvhMLP; -}; - -struct cgAhWyfsfnPBbygscaxJCrsKfviSB_gtktRJZQdSncUUzoSqggqmYQqHdH { - struct cgAhWyfsfnPBbygscaxJCrsKfviSB_gtktRJZQdSncUUzoSqggqmYQqHdH__Class *klass; - MonitorData *monitor; - struct cgAhWyfsfnPBbygscaxJCrsKfviSB_gtktRJZQdSncUUzoSqggqmYQqHdH__Fields fields; -}; - struct __declspec(align(8)) cgAhWyfsfnPBbygscaxJCrsKfviSB_gtktRJZQdSncUUzoSqggqmYQqHdH_FwBhSBrMyioEuRlEnBadBwkINECm__Fields { double HUcLrviRgSqalxPXnPeoIPNpFpKZ; struct InputBehavior *AxhFdgwwCXiZZKQjUvThFuxekjjJ; @@ -176653,6 +179639,32 @@ struct cgAhWyfsfnPBbygscaxJCrsKfviSB_gtktRJZQdSncUUzoSqggqmYQqHdH_FwBhSBrMyioEuR struct cgAhWyfsfnPBbygscaxJCrsKfviSB_gtktRJZQdSncUUzoSqggqmYQqHdH_FwBhSBrMyioEuRlEnBadBwkINECm__Fields fields; }; +struct __declspec(align(8)) cgAhWyfsfnPBbygscaxJCrsKfviSB_gtktRJZQdSncUUzoSqggqmYQqHdH__Fields { + struct cgAhWyfsfnPBbygscaxJCrsKfviSB_gtktRJZQdSncUUzoSqggqmYQqHdH_FwBhSBrMyioEuRlEnBadBwkINECm__Array *tvIRKGNYRTfLNKeulGHmeotaGOGEA; + struct Int32__Array *JSiczlezEwaaIrUIkxyVfOpQLPCtA; + int32_t KByPCrlNtvTDxUZggIOsPMXKzebj; + struct cgAhWyfsfnPBbygscaxJCrsKfviSB_gtktRJZQdSncUUzoSqggqmYQqHdH_FwBhSBrMyioEuRlEnBadBwkINECm *qtleFCROTDVqULJLxchlGocvhMLP; +}; + +struct cgAhWyfsfnPBbygscaxJCrsKfviSB_gtktRJZQdSncUUzoSqggqmYQqHdH { + struct cgAhWyfsfnPBbygscaxJCrsKfviSB_gtktRJZQdSncUUzoSqggqmYQqHdH__Class *klass; + MonitorData *monitor; + struct cgAhWyfsfnPBbygscaxJCrsKfviSB_gtktRJZQdSncUUzoSqggqmYQqHdH__Fields fields; +}; + +struct __declspec(align(8)) cKBosMZgwzQDFDHHaseiqMerSbrR_wuUroopWlwdhyAHAcIaftMsMkHHs__Fields { + bool mGFiXvoDjkhBnzjtBqYrolpkhBjV; + bool ihoaqEULQaTVTxOBqkKeAfBbLyxK; + double TtEFdbhoFofiXkrLhAabiDCQhRFdA; + bool HDaEhNXqHKtCWNjJaRgLvjdGxYsq; +}; + +struct cKBosMZgwzQDFDHHaseiqMerSbrR_wuUroopWlwdhyAHAcIaftMsMkHHs { + struct cKBosMZgwzQDFDHHaseiqMerSbrR_wuUroopWlwdhyAHAcIaftMsMkHHs__Class *klass; + MonitorData *monitor; + struct cKBosMZgwzQDFDHHaseiqMerSbrR_wuUroopWlwdhyAHAcIaftMsMkHHs__Fields fields; +}; + struct __declspec(align(8)) cKBosMZgwzQDFDHHaseiqMerSbrR__Fields { bool OBwwcnwtDztqoikQaZzQdjfKwPKs; bool gwWhjCsJGjxuyDbZCniTZuXKJSne; @@ -176669,19 +179681,6 @@ struct cKBosMZgwzQDFDHHaseiqMerSbrR { struct cKBosMZgwzQDFDHHaseiqMerSbrR__Fields fields; }; -struct __declspec(align(8)) cKBosMZgwzQDFDHHaseiqMerSbrR_wuUroopWlwdhyAHAcIaftMsMkHHs__Fields { - bool mGFiXvoDjkhBnzjtBqYrolpkhBjV; - bool ihoaqEULQaTVTxOBqkKeAfBbLyxK; - double TtEFdbhoFofiXkrLhAabiDCQhRFdA; - bool HDaEhNXqHKtCWNjJaRgLvjdGxYsq; -}; - -struct cKBosMZgwzQDFDHHaseiqMerSbrR_wuUroopWlwdhyAHAcIaftMsMkHHs { - struct cKBosMZgwzQDFDHHaseiqMerSbrR_wuUroopWlwdhyAHAcIaftMsMkHHs__Class *klass; - MonitorData *monitor; - struct cKBosMZgwzQDFDHHaseiqMerSbrR_wuUroopWlwdhyAHAcIaftMsMkHHs__Fields fields; -}; - struct cKBosMZgwzQDFDHHaseiqMerSbrR_wuUroopWlwdhyAHAcIaftMsMkHHs__Array { struct cKBosMZgwzQDFDHHaseiqMerSbrR_wuUroopWlwdhyAHAcIaftMsMkHHs__Array__Class *klass; MonitorData *monitor; @@ -176690,6 +179689,17 @@ struct cKBosMZgwzQDFDHHaseiqMerSbrR_wuUroopWlwdhyAHAcIaftMsMkHHs__Array { struct cKBosMZgwzQDFDHHaseiqMerSbrR_wuUroopWlwdhyAHAcIaftMsMkHHs *vector[32]; }; +struct __declspec(align(8)) ButtonStateRecorder_JDiVicHFWBujKckmMiMaaElYkWADb__Fields { + bool ihoaqEULQaTVTxOBqkKeAfBbLyxK; + double TtEFdbhoFofiXkrLhAabiDCQhRFdA; +}; + +struct ButtonStateRecorder_JDiVicHFWBujKckmMiMaaElYkWADb { + struct ButtonStateRecorder_JDiVicHFWBujKckmMiMaaElYkWADb__Class *klass; + MonitorData *monitor; + struct ButtonStateRecorder_JDiVicHFWBujKckmMiMaaElYkWADb__Fields fields; +}; + struct __declspec(align(8)) ButtonStateRecorder__Fields { struct ButtonStateRecorder_JDiVicHFWBujKckmMiMaaElYkWADb__Array *odanGZnuheVGlCAKFeOyJVnAHkCT; struct ButtonStateRecorder_JDiVicHFWBujKckmMiMaaElYkWADb__Array *dFuwLYCYVMBydWnjNHhjllOheKJc; @@ -176704,17 +179714,6 @@ struct ButtonStateRecorder { struct ButtonStateRecorder__Fields fields; }; -struct __declspec(align(8)) ButtonStateRecorder_JDiVicHFWBujKckmMiMaaElYkWADb__Fields { - bool ihoaqEULQaTVTxOBqkKeAfBbLyxK; - double TtEFdbhoFofiXkrLhAabiDCQhRFdA; -}; - -struct ButtonStateRecorder_JDiVicHFWBujKckmMiMaaElYkWADb { - struct ButtonStateRecorder_JDiVicHFWBujKckmMiMaaElYkWADb__Class *klass; - MonitorData *monitor; - struct ButtonStateRecorder_JDiVicHFWBujKckmMiMaaElYkWADb__Fields fields; -}; - struct ButtonStateRecorder_JDiVicHFWBujKckmMiMaaElYkWADb__Array { struct ButtonStateRecorder_JDiVicHFWBujKckmMiMaaElYkWADb__Array__Class *klass; MonitorData *monitor; @@ -176740,19 +179739,6 @@ struct bltYvSitjPywwmJtwAjtAAgZkNaj { struct bltYvSitjPywwmJtwAjtAAgZkNaj__Fields fields; }; -struct __declspec(align(8)) othBwbjJCfqjCkCuDgXhdkQCXIPtA__Fields { - bool mGFiXvoDjkhBnzjtBqYrolpkhBjV; - struct Controller *yrSDfNzGPLUBuAkUrbEMVpfZXAPl; - struct ControllerMap *SnxyNvoXwKDPxGthVbJdACswyiMW; - struct ActionElementMap *mwOIapqEbFwmzhMbVirxHtEJZJrdA; -}; - -struct othBwbjJCfqjCkCuDgXhdkQCXIPtA { - struct othBwbjJCfqjCkCuDgXhdkQCXIPtA__Class *klass; - MonitorData *monitor; - struct othBwbjJCfqjCkCuDgXhdkQCXIPtA__Fields fields; -}; - struct cgAhWyfsfnPBbygscaxJCrsKfviSB_gtktRJZQdSncUUzoSqggqmYQqHdH_FwBhSBrMyioEuRlEnBadBwkINECm__Array { struct cgAhWyfsfnPBbygscaxJCrsKfviSB_gtktRJZQdSncUUzoSqggqmYQqHdH_FwBhSBrMyioEuRlEnBadBwkINECm__Array__Class *klass; MonitorData *monitor; @@ -176777,6 +179763,19 @@ struct cgAhWyfsfnPBbygscaxJCrsKfviSB_QZZonLoWlgxcyWKuMqtizlbVFpT { struct cgAhWyfsfnPBbygscaxJCrsKfviSB_QZZonLoWlgxcyWKuMqtizlbVFpT__Fields fields; }; +struct ADictionary_2_TKey_TValue_Entry_System_Int32_cgAhWyfsfnPBbygscaxJCrsKfviSB_QZZonLoWlgxcyWKuMqtizlbVFpT_pGjmwaQuQZuHgNirXIspTBHcQXUr_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct cgAhWyfsfnPBbygscaxJCrsKfviSB_QZZonLoWlgxcyWKuMqtizlbVFpT_pGjmwaQuQZuHgNirXIspTBHcQXUr *value; +}; + +struct ADictionary_2_TKey_TValue_Entry_System_Int32_cgAhWyfsfnPBbygscaxJCrsKfviSB_QZZonLoWlgxcyWKuMqtizlbVFpT_pGjmwaQuQZuHgNirXIspTBHcQXUr___Boxed { + struct ADictionary_2_TKey_TValue_Entry_System_Int32_cgAhWyfsfnPBbygscaxJCrsKfviSB_QZZonLoWlgxcyWKuMqtizlbVFpT_pGjmwaQuQZuHgNirXIspTBHcQXUr___Class *klass; + MonitorData *monitor; + struct ADictionary_2_TKey_TValue_Entry_System_Int32_cgAhWyfsfnPBbygscaxJCrsKfviSB_QZZonLoWlgxcyWKuMqtizlbVFpT_pGjmwaQuQZuHgNirXIspTBHcQXUr_ fields; +}; + struct __declspec(align(8)) ADictionary_2_System_Int32_cgAhWyfsfnPBbygscaxJCrsKfviSB_QZZonLoWlgxcyWKuMqtizlbVFpT_pGjmwaQuQZuHgNirXIspTBHcQXUr___Fields { struct Int32__Array *pGawVZUvYULemJqagZXhjOtPTktC; struct ADictionary_2_TKey_TValue_Entry_System_Int32_cgAhWyfsfnPBbygscaxJCrsKfviSB_QZZonLoWlgxcyWKuMqtizlbVFpT_pGjmwaQuQZuHgNirXIspTBHcQXUr___Array *_entries; @@ -176798,19 +179797,6 @@ struct ADictionary_2_System_Int32_cgAhWyfsfnPBbygscaxJCrsKfviSB_QZZonLoWlgxcyWKu struct ADictionary_2_System_Int32_cgAhWyfsfnPBbygscaxJCrsKfviSB_QZZonLoWlgxcyWKuMqtizlbVFpT_pGjmwaQuQZuHgNirXIspTBHcQXUr___Fields fields; }; -struct ADictionary_2_TKey_TValue_Entry_System_Int32_cgAhWyfsfnPBbygscaxJCrsKfviSB_QZZonLoWlgxcyWKuMqtizlbVFpT_pGjmwaQuQZuHgNirXIspTBHcQXUr_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct cgAhWyfsfnPBbygscaxJCrsKfviSB_QZZonLoWlgxcyWKuMqtizlbVFpT_pGjmwaQuQZuHgNirXIspTBHcQXUr *value; -}; - -struct ADictionary_2_TKey_TValue_Entry_System_Int32_cgAhWyfsfnPBbygscaxJCrsKfviSB_QZZonLoWlgxcyWKuMqtizlbVFpT_pGjmwaQuQZuHgNirXIspTBHcQXUr___Boxed { - struct ADictionary_2_TKey_TValue_Entry_System_Int32_cgAhWyfsfnPBbygscaxJCrsKfviSB_QZZonLoWlgxcyWKuMqtizlbVFpT_pGjmwaQuQZuHgNirXIspTBHcQXUr___Class *klass; - MonitorData *monitor; - struct ADictionary_2_TKey_TValue_Entry_System_Int32_cgAhWyfsfnPBbygscaxJCrsKfviSB_QZZonLoWlgxcyWKuMqtizlbVFpT_pGjmwaQuQZuHgNirXIspTBHcQXUr_ fields; -}; - struct __declspec(align(8)) cgAhWyfsfnPBbygscaxJCrsKfviSB_QZZonLoWlgxcyWKuMqtizlbVFpT_pGjmwaQuQZuHgNirXIspTBHcQXUr__Fields { struct Vector3 lYNvQWeroHkXhAnLeKDQmpCYfiIz; struct Vector3 pvSBGDmlCiLGpWxGYsRwqrSRlsfY; @@ -176906,6 +179892,18 @@ struct othBwbjJCfqjCkCuDgXhdkQCXIPtA__Array { struct othBwbjJCfqjCkCuDgXhdkQCXIPtA *vector[32]; }; +struct InputActionSourceData { + struct Controller *EJvBluNNxcFMPjbFWPpcWiSpQgpX; + struct ControllerMap *GskvJoXIZeSFzIjUhECVMcUDGjgX; + struct ActionElementMap *NgtlRdvoGrufUlfWCakrpYRYapvI; +}; + +struct InputActionSourceData__Boxed { + struct InputActionSourceData__Class *klass; + MonitorData *monitor; + struct InputActionSourceData fields; +}; + struct __declspec(align(8)) List_1_Rewired_InputActionSourceData___Fields { struct InputActionSourceData__Array *_items; int32_t _size; @@ -176919,18 +179917,6 @@ struct List_1_Rewired_InputActionSourceData_ { struct List_1_Rewired_InputActionSourceData___Fields fields; }; -struct InputActionSourceData { - struct Controller *EJvBluNNxcFMPjbFWPpcWiSpQgpX; - struct ControllerMap *GskvJoXIZeSFzIjUhECVMcUDGjgX; - struct ActionElementMap *NgtlRdvoGrufUlfWCakrpYRYapvI; -}; - -struct InputActionSourceData__Boxed { - struct InputActionSourceData__Class *klass; - MonitorData *monitor; - struct InputActionSourceData fields; -}; - struct InputActionSourceData__Array { struct InputActionSourceData__Array__Class *klass; MonitorData *monitor; @@ -177012,23 +179998,6 @@ struct cgAhWyfsfnPBbygscaxJCrsKfviSB__Array_1 { struct cgAhWyfsfnPBbygscaxJCrsKfviSB *vector[32]; }; -struct __declspec(align(8)) aFmJpwxQsLcpqNsVpQUVNGddslvo__Fields { - struct aFmJpwxQsLcpqNsVpQUVNGddslvo_KKctsriiMZhFbEJSCKNPCsivbPjAb__Array *znYqFtmhTscXEdHfcwewgOEbMFBd; - #if defined(_CPLUSPLUS_) - UpdateLoopType__Enum qZYVEjKGhwtvYXpmJDhWYhVHeTcA; - #else - int32_t qZYVEjKGhwtvYXpmJDhWYhVHeTcA; - #endif - struct Keyboard *cCMirkDwfNOGJIGoCBpEqKAcMTaOA; - struct aFmJpwxQsLcpqNsVpQUVNGddslvo_KKctsriiMZhFbEJSCKNPCsivbPjAb *qtleFCROTDVqULJLxchlGocvhMLP; -}; - -struct aFmJpwxQsLcpqNsVpQUVNGddslvo { - struct aFmJpwxQsLcpqNsVpQUVNGddslvo__Class *klass; - MonitorData *monitor; - struct aFmJpwxQsLcpqNsVpQUVNGddslvo__Fields fields; -}; - struct __declspec(align(8)) aFmJpwxQsLcpqNsVpQUVNGddslvo_KKctsriiMZhFbEJSCKNPCsivbPjAb__Fields { #if defined(_CPLUSPLUS_) ModifierKeyFlags__Enum cVqkKkzjZjmrnNDiquuQCgwREsvV; @@ -177046,20 +180015,21 @@ struct aFmJpwxQsLcpqNsVpQUVNGddslvo_KKctsriiMZhFbEJSCKNPCsivbPjAb { struct aFmJpwxQsLcpqNsVpQUVNGddslvo_KKctsriiMZhFbEJSCKNPCsivbPjAb__Fields fields; }; -struct __declspec(align(8)) ExpandableArray_DataContainer_1_aFmJpwxQsLcpqNsVpQUVNGddslvo_KKctsriiMZhFbEJSCKNPCsivbPjAb_TkYqOpldVGYAcSDtGYaHrNqSSLEE___Fields { - struct aFmJpwxQsLcpqNsVpQUVNGddslvo_KKctsriiMZhFbEJSCKNPCsivbPjAb_TkYqOpldVGYAcSDtGYaHrNqSSLEE *injector; - struct aFmJpwxQsLcpqNsVpQUVNGddslvo_KKctsriiMZhFbEJSCKNPCsivbPjAb_TkYqOpldVGYAcSDtGYaHrNqSSLEE__Array *scijIQkGcxWINnJFzCKwIJrItXPZA; - int32_t lgMKJkiPXaBUWIDNzFQUptKvfYuk; - int32_t tlnNyMXjmdRjsMUTJtFIgFiTAjEcA; - int32_t pXsQeOgFIaAcfrmVpmpQsiYGQeH; - int32_t VXsfCgCZPRRJyPDqTdQBhqXiEMSHA; - bool WyZaQEbmPMoKOOidvPCISGyTkaHKA; +struct __declspec(align(8)) aFmJpwxQsLcpqNsVpQUVNGddslvo__Fields { + struct aFmJpwxQsLcpqNsVpQUVNGddslvo_KKctsriiMZhFbEJSCKNPCsivbPjAb__Array *znYqFtmhTscXEdHfcwewgOEbMFBd; + #if defined(_CPLUSPLUS_) + UpdateLoopType__Enum qZYVEjKGhwtvYXpmJDhWYhVHeTcA; + #else + int32_t qZYVEjKGhwtvYXpmJDhWYhVHeTcA; + #endif + struct Keyboard *cCMirkDwfNOGJIGoCBpEqKAcMTaOA; + struct aFmJpwxQsLcpqNsVpQUVNGddslvo_KKctsriiMZhFbEJSCKNPCsivbPjAb *qtleFCROTDVqULJLxchlGocvhMLP; }; -struct ExpandableArray_DataContainer_1_aFmJpwxQsLcpqNsVpQUVNGddslvo_KKctsriiMZhFbEJSCKNPCsivbPjAb_TkYqOpldVGYAcSDtGYaHrNqSSLEE_ { - struct ExpandableArray_DataContainer_1_aFmJpwxQsLcpqNsVpQUVNGddslvo_KKctsriiMZhFbEJSCKNPCsivbPjAb_TkYqOpldVGYAcSDtGYaHrNqSSLEE___Class *klass; +struct aFmJpwxQsLcpqNsVpQUVNGddslvo { + struct aFmJpwxQsLcpqNsVpQUVNGddslvo__Class *klass; MonitorData *monitor; - struct ExpandableArray_DataContainer_1_aFmJpwxQsLcpqNsVpQUVNGddslvo_KKctsriiMZhFbEJSCKNPCsivbPjAb_TkYqOpldVGYAcSDtGYaHrNqSSLEE___Fields fields; + struct aFmJpwxQsLcpqNsVpQUVNGddslvo__Fields fields; }; struct __declspec(align(8)) aFmJpwxQsLcpqNsVpQUVNGddslvo_KKctsriiMZhFbEJSCKNPCsivbPjAb_TkYqOpldVGYAcSDtGYaHrNqSSLEE__Fields { @@ -177081,6 +180051,22 @@ struct aFmJpwxQsLcpqNsVpQUVNGddslvo_KKctsriiMZhFbEJSCKNPCsivbPjAb_TkYqOpldVGYAcS struct aFmJpwxQsLcpqNsVpQUVNGddslvo_KKctsriiMZhFbEJSCKNPCsivbPjAb_TkYqOpldVGYAcSDtGYaHrNqSSLEE__Fields fields; }; +struct __declspec(align(8)) ExpandableArray_DataContainer_1_aFmJpwxQsLcpqNsVpQUVNGddslvo_KKctsriiMZhFbEJSCKNPCsivbPjAb_TkYqOpldVGYAcSDtGYaHrNqSSLEE___Fields { + struct aFmJpwxQsLcpqNsVpQUVNGddslvo_KKctsriiMZhFbEJSCKNPCsivbPjAb_TkYqOpldVGYAcSDtGYaHrNqSSLEE *injector; + struct aFmJpwxQsLcpqNsVpQUVNGddslvo_KKctsriiMZhFbEJSCKNPCsivbPjAb_TkYqOpldVGYAcSDtGYaHrNqSSLEE__Array *scijIQkGcxWINnJFzCKwIJrItXPZA; + int32_t lgMKJkiPXaBUWIDNzFQUptKvfYuk; + int32_t tlnNyMXjmdRjsMUTJtFIgFiTAjEcA; + int32_t pXsQeOgFIaAcfrmVpmpQsiYGQeH; + int32_t VXsfCgCZPRRJyPDqTdQBhqXiEMSHA; + bool WyZaQEbmPMoKOOidvPCISGyTkaHKA; +}; + +struct ExpandableArray_DataContainer_1_aFmJpwxQsLcpqNsVpQUVNGddslvo_KKctsriiMZhFbEJSCKNPCsivbPjAb_TkYqOpldVGYAcSDtGYaHrNqSSLEE_ { + struct ExpandableArray_DataContainer_1_aFmJpwxQsLcpqNsVpQUVNGddslvo_KKctsriiMZhFbEJSCKNPCsivbPjAb_TkYqOpldVGYAcSDtGYaHrNqSSLEE___Class *klass; + MonitorData *monitor; + struct ExpandableArray_DataContainer_1_aFmJpwxQsLcpqNsVpQUVNGddslvo_KKctsriiMZhFbEJSCKNPCsivbPjAb_TkYqOpldVGYAcSDtGYaHrNqSSLEE___Fields fields; +}; + struct aFmJpwxQsLcpqNsVpQUVNGddslvo_KKctsriiMZhFbEJSCKNPCsivbPjAb_TkYqOpldVGYAcSDtGYaHrNqSSLEE__Array { struct aFmJpwxQsLcpqNsVpQUVNGddslvo_KKctsriiMZhFbEJSCKNPCsivbPjAb_TkYqOpldVGYAcSDtGYaHrNqSSLEE__Array__Class *klass; MonitorData *monitor; @@ -177097,156 +180083,6 @@ struct aFmJpwxQsLcpqNsVpQUVNGddslvo_KKctsriiMZhFbEJSCKNPCsivbPjAb__Array { struct aFmJpwxQsLcpqNsVpQUVNGddslvo_KKctsriiMZhFbEJSCKNPCsivbPjAb *vector[32]; }; -struct __declspec(align(8)) MRGkKzhgDCfculrfXakxXfUSFUsK__Fields { - bool RzraNyPJijlOciMGiYynBkatAIFJ; - struct AList_1_MRGkKzhgDCfculrfXakxXfUSFUsK_pEhrOFQDNlWhiCRQwqLfhdkKHswE___Array *GmRhhZYfXwmCYVFPyqNkggwVwraf; - struct Int32__Array *HxRZzaUveekbzPifLbAEiPeNRiCcb; - int32_t tIAiiLyQVtWCTVXaiFxWxmfnbZEb; - int32_t phRFwZJuOdhnFGQrBmKREDLJNIIuB; -}; - -struct MRGkKzhgDCfculrfXakxXfUSFUsK { - struct MRGkKzhgDCfculrfXakxXfUSFUsK__Class *klass; - MonitorData *monitor; - struct MRGkKzhgDCfculrfXakxXfUSFUsK__Fields fields; -}; - -#if defined(_CPLUSPLUS_) -enum class InputActionEventType__Enum : int32_t { - Update = 0x00000000, - ButtonPressed = 0x00000001, - ButtonUnpressed = 0x00000002, - ButtonJustPressed = 0x00000003, - ButtonJustReleased = 0x00000004, - ButtonDoublePressed = 0x00000005, - ButtonJustDoublePressed = 0x00000006, - ButtonPressedForTime = 0x00000007, - ButtonJustPressedForTime = 0x00000008, - ButtonPressedForTimeJustReleased = 0x00000009, - ButtonShortPressed = 0x0000000a, - ButtonJustShortPressed = 0x0000000b, - ButtonShortPressJustReleased = 0x0000000c, - ButtonLongPressed = 0x0000000d, - ButtonJustLongPressed = 0x0000000e, - ButtonLongPressJustReleased = 0x0000000f, - ButtonRepeating = 0x00000010, - NegativeButtonPressed = 0x00000011, - NegativeButtonUnpressed = 0x00000012, - NegativeButtonJustPressed = 0x00000013, - NegativeButtonJustReleased = 0x00000014, - NegativeButtonDoublePressed = 0x00000015, - NegativeButtonJustDoublePressed = 0x00000016, - NegativeButtonPressedForTime = 0x00000017, - NegativeButtonJustPressedForTime = 0x00000018, - NegativeButtonPressedForTimeJustReleased = 0x00000019, - NegativeButtonShortPressed = 0x0000001a, - NegativeButtonJustShortPressed = 0x0000001b, - NegativeButtonShortPressJustReleased = 0x0000001c, - NegativeButtonLongPressed = 0x0000001d, - NegativeButtonJustLongPressed = 0x0000001e, - NegativeButtonLongPressJustReleased = 0x0000001f, - NegativeButtonRepeating = 0x00000020, - AxisActive = 0x00000021, - AxisInactive = 0x00000022, - AxisRawActive = 0x00000023, - AxisRawInactive = 0x00000024, - AxisActiveOrJustInactive = 0x00000025, - AxisRawActiveOrJustInactive = 0x00000026, - ButtonDoublePressJustReleased = 0x00000064, - ButtonSinglePressed = 0x00000065, - ButtonJustSinglePressed = 0x00000066, - ButtonSinglePressJustReleased = 0x00000067, - NegativeButtonDoublePressJustReleased = 0x00000096, - NegativeButtonSinglePressed = 0x00000097, - NegativeButtonJustSinglePressed = 0x00000098, - NegativeButtonSinglePressJustReleased = 0x00000099, -}; - -#else -enum InputActionEventType__Enum { - InputActionEventType__Enum_Update = 0x00000000, - InputActionEventType__Enum_ButtonPressed = 0x00000001, - InputActionEventType__Enum_ButtonUnpressed = 0x00000002, - InputActionEventType__Enum_ButtonJustPressed = 0x00000003, - InputActionEventType__Enum_ButtonJustReleased = 0x00000004, - InputActionEventType__Enum_ButtonDoublePressed = 0x00000005, - InputActionEventType__Enum_ButtonJustDoublePressed = 0x00000006, - InputActionEventType__Enum_ButtonPressedForTime = 0x00000007, - InputActionEventType__Enum_ButtonJustPressedForTime = 0x00000008, - InputActionEventType__Enum_ButtonPressedForTimeJustReleased = 0x00000009, - InputActionEventType__Enum_ButtonShortPressed = 0x0000000a, - InputActionEventType__Enum_ButtonJustShortPressed = 0x0000000b, - InputActionEventType__Enum_ButtonShortPressJustReleased = 0x0000000c, - InputActionEventType__Enum_ButtonLongPressed = 0x0000000d, - InputActionEventType__Enum_ButtonJustLongPressed = 0x0000000e, - InputActionEventType__Enum_ButtonLongPressJustReleased = 0x0000000f, - InputActionEventType__Enum_ButtonRepeating = 0x00000010, - InputActionEventType__Enum_NegativeButtonPressed = 0x00000011, - InputActionEventType__Enum_NegativeButtonUnpressed = 0x00000012, - InputActionEventType__Enum_NegativeButtonJustPressed = 0x00000013, - InputActionEventType__Enum_NegativeButtonJustReleased = 0x00000014, - InputActionEventType__Enum_NegativeButtonDoublePressed = 0x00000015, - InputActionEventType__Enum_NegativeButtonJustDoublePressed = 0x00000016, - InputActionEventType__Enum_NegativeButtonPressedForTime = 0x00000017, - InputActionEventType__Enum_NegativeButtonJustPressedForTime = 0x00000018, - InputActionEventType__Enum_NegativeButtonPressedForTimeJustReleased = 0x00000019, - InputActionEventType__Enum_NegativeButtonShortPressed = 0x0000001a, - InputActionEventType__Enum_NegativeButtonJustShortPressed = 0x0000001b, - InputActionEventType__Enum_NegativeButtonShortPressJustReleased = 0x0000001c, - InputActionEventType__Enum_NegativeButtonLongPressed = 0x0000001d, - InputActionEventType__Enum_NegativeButtonJustLongPressed = 0x0000001e, - InputActionEventType__Enum_NegativeButtonLongPressJustReleased = 0x0000001f, - InputActionEventType__Enum_NegativeButtonRepeating = 0x00000020, - InputActionEventType__Enum_AxisActive = 0x00000021, - InputActionEventType__Enum_AxisInactive = 0x00000022, - InputActionEventType__Enum_AxisRawActive = 0x00000023, - InputActionEventType__Enum_AxisRawInactive = 0x00000024, - InputActionEventType__Enum_AxisActiveOrJustInactive = 0x00000025, - InputActionEventType__Enum_AxisRawActiveOrJustInactive = 0x00000026, - InputActionEventType__Enum_ButtonDoublePressJustReleased = 0x00000064, - InputActionEventType__Enum_ButtonSinglePressed = 0x00000065, - InputActionEventType__Enum_ButtonJustSinglePressed = 0x00000066, - InputActionEventType__Enum_ButtonSinglePressJustReleased = 0x00000067, - InputActionEventType__Enum_NegativeButtonDoublePressJustReleased = 0x00000096, - InputActionEventType__Enum_NegativeButtonSinglePressed = 0x00000097, - InputActionEventType__Enum_NegativeButtonJustSinglePressed = 0x00000098, - InputActionEventType__Enum_NegativeButtonSinglePressJustReleased = 0x00000099, -}; - -#endif -struct InputActionEventType__Enum__Boxed { - struct InputActionEventType__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - InputActionEventType__Enum value; - #else - int32_t value; - #endif -}; - -struct __declspec(align(8)) MRGkKzhgDCfculrfXakxXfUSFUsK_pEhrOFQDNlWhiCRQwqLfhdkKHswE__Fields { - struct Action_1_Rewired_InputActionEventData_ *EbPkqdARHGIDwsIdtmoIkULLoFZX; - #if defined(_CPLUSPLUS_) - UpdateLoopType__Enum bgmCxafTAhGyaRRTSDTPlAiCLjtFb; - #else - int32_t bgmCxafTAhGyaRRTSDTPlAiCLjtFb; - #endif - #if defined(_CPLUSPLUS_) - InputActionEventType__Enum ensAJnweQpaOVGsRtkrfWOOINyg; - #else - int32_t ensAJnweQpaOVGsRtkrfWOOINyg; - #endif - int32_t FnhTtRqBKfVQAiofWohUGVPtsslN; - bool jIdBDBASHoXENSRKHebmFKtBJicLA; - struct Single__Array *EPPxTXxdXKASZRpTutvnLShevueJ; -}; - -struct MRGkKzhgDCfculrfXakxXfUSFUsK_pEhrOFQDNlWhiCRQwqLfhdkKHswE { - struct MRGkKzhgDCfculrfXakxXfUSFUsK_pEhrOFQDNlWhiCRQwqLfhdkKHswE__Class *klass; - MonitorData *monitor; - struct MRGkKzhgDCfculrfXakxXfUSFUsK_pEhrOFQDNlWhiCRQwqLfhdkKHswE__Fields fields; -}; - struct Action_1_Rewired_InputActionEventData___Fields { struct MulticastDelegate__Fields _; }; @@ -177287,25 +180123,6 @@ struct MRGkKzhgDCfculrfXakxXfUSFUsK_pEhrOFQDNlWhiCRQwqLfhdkKHswE__Array { struct MRGkKzhgDCfculrfXakxXfUSFUsK_pEhrOFQDNlWhiCRQwqLfhdkKHswE *vector[32]; }; -struct __declspec(align(8)) AList_1_MRGkKzhgDCfculrfXakxXfUSFUsK_pEhrOFQDNlWhiCRQwqLfhdkKHswE___Fields { - struct IEqualityComparer_1_MRGkKzhgDCfculrfXakxXfUSFUsK_pEhrOFQDNlWhiCRQwqLfhdkKHswE_ *IffVJRWXMWVnHJdLRJYLVauxgDLkA; - struct MRGkKzhgDCfculrfXakxXfUSFUsK_pEhrOFQDNlWhiCRQwqLfhdkKHswE__Array *_items; - int32_t AmnCvjBSkGhAaMYjlMZxEEvbSrui; - int32_t _count; - int32_t MlBWsNGNiomUVthQUNRXfpFBfdvcA; - bool BgeCjBfkGdQNGlLKwiklClEiXqZYb; - int32_t NKRGkWDwiVqYeHERShAcPbFuCIMgb; - bool rEPnayQyfurrRXZjmKdrDQdkiUwbA; - int32_t vyAzFNcXzBhuRiyIKSwxhSukcXQu; - struct Object *eCrDVxsFDCrYCyMPHlSFBIZwopNk; -}; - -struct AList_1_MRGkKzhgDCfculrfXakxXfUSFUsK_pEhrOFQDNlWhiCRQwqLfhdkKHswE_ { - struct AList_1_MRGkKzhgDCfculrfXakxXfUSFUsK_pEhrOFQDNlWhiCRQwqLfhdkKHswE___Class *klass; - MonitorData *monitor; - struct AList_1_MRGkKzhgDCfculrfXakxXfUSFUsK_pEhrOFQDNlWhiCRQwqLfhdkKHswE___Fields fields; -}; - struct IEqualityComparer_1_MRGkKzhgDCfculrfXakxXfUSFUsK_pEhrOFQDNlWhiCRQwqLfhdkKHswE_ { struct IEqualityComparer_1_MRGkKzhgDCfculrfXakxXfUSFUsK_pEhrOFQDNlWhiCRQwqLfhdkKHswE___Class *klass; MonitorData *monitor; @@ -177357,6 +180174,17 @@ struct ldnqCJRTNbykOZAyPczivAgtlhxQ_1_Rewired_ActiveControllerChangedDelegate_ { struct ldnqCJRTNbykOZAyPczivAgtlhxQ_1_Rewired_ActiveControllerChangedDelegate___Fields fields; }; +struct __declspec(align(8)) ldnqCJRTNbykOZAyPczivAgtlhxQ_1_u0001_ywtZPPrElpcINJiNufkjaDyFYDcAB_Rewired_ActiveControllerChangedDelegate___Fields { + struct ActiveControllerChangedDelegate *aDONiMAzCKPdlgcUgwQQxgxidPDk; + int32_t FkfEkngelrqmJZuGQDqsqaqoYyHB; +}; + +struct ldnqCJRTNbykOZAyPczivAgtlhxQ_1_u0001_ywtZPPrElpcINJiNufkjaDyFYDcAB_Rewired_ActiveControllerChangedDelegate_ { + struct ldnqCJRTNbykOZAyPczivAgtlhxQ_1_u0001_ywtZPPrElpcINJiNufkjaDyFYDcAB_Rewired_ActiveControllerChangedDelegate___Class *klass; + MonitorData *monitor; + struct ldnqCJRTNbykOZAyPczivAgtlhxQ_1_u0001_ywtZPPrElpcINJiNufkjaDyFYDcAB_Rewired_ActiveControllerChangedDelegate___Fields fields; +}; + struct __declspec(align(8)) AList_1_ldnqCJRTNbykOZAyPczivAgtlhxQ_1_ywtZPPrElpcINJiNufkjaDyFYDcAB___Fields { struct IEqualityComparer_1_ldnqCJRTNbykOZAyPczivAgtlhxQ_1_ywtZPPrElpcINJiNufkjaDyFYDcAB_ *IffVJRWXMWVnHJdLRJYLVauxgDLkA; struct ldnqCJRTNbykOZAyPczivAgtlhxQ_1_u0001_ywtZPPrElpcINJiNufkjaDyFYDcAB_Rewired_ActiveControllerChangedDelegate___Array *_items; @@ -177376,17 +180204,6 @@ struct AList_1_ldnqCJRTNbykOZAyPczivAgtlhxQ_1_ywtZPPrElpcINJiNufkjaDyFYDcAB_ { struct AList_1_ldnqCJRTNbykOZAyPczivAgtlhxQ_1_ywtZPPrElpcINJiNufkjaDyFYDcAB___Fields fields; }; -struct __declspec(align(8)) ldnqCJRTNbykOZAyPczivAgtlhxQ_1_u0001_ywtZPPrElpcINJiNufkjaDyFYDcAB_Rewired_ActiveControllerChangedDelegate___Fields { - struct ActiveControllerChangedDelegate *aDONiMAzCKPdlgcUgwQQxgxidPDk; - int32_t FkfEkngelrqmJZuGQDqsqaqoYyHB; -}; - -struct ldnqCJRTNbykOZAyPczivAgtlhxQ_1_u0001_ywtZPPrElpcINJiNufkjaDyFYDcAB_Rewired_ActiveControllerChangedDelegate_ { - struct ldnqCJRTNbykOZAyPczivAgtlhxQ_1_u0001_ywtZPPrElpcINJiNufkjaDyFYDcAB_Rewired_ActiveControllerChangedDelegate___Class *klass; - MonitorData *monitor; - struct ldnqCJRTNbykOZAyPczivAgtlhxQ_1_u0001_ywtZPPrElpcINJiNufkjaDyFYDcAB_Rewired_ActiveControllerChangedDelegate___Fields fields; -}; - struct ActiveControllerChangedDelegate__Fields { struct MulticastDelegate__Fields _; }; @@ -177415,20 +180232,6 @@ struct IEnumerator_1_ldnqCJRTNbykOZAyPczivAgtlhxQ_1_ywtZPPrElpcINJiNufkjaDyFYDcA MonitorData *monitor; }; -struct __declspec(align(8)) iodYpqMJIZFiggHnRPtbBYdCAZfVB_1_Rewired_PlayerActiveControllerChangedDelegate___Fields { - struct ldnqCJRTNbykOZAyPczivAgtlhxQ_1_Rewired_PlayerActiveControllerChangedDelegate_ *NltnxekWIelQpnpPDgNvjQSNOgPq; - struct Controller *qBAZHylsdIWUgiQrCMGfzcvAhrNgA; - struct Controller *KNtVgDFIQLOfWNDLacavctqQbUjfb; - struct Controller *TuWdBpDKwYCpMYvjQzYIkiIvlFJt; - int32_t NVJJRzMHTUlSQZVJEpKOwRDVtvab; -}; - -struct iodYpqMJIZFiggHnRPtbBYdCAZfVB_1_Rewired_PlayerActiveControllerChangedDelegate_ { - struct iodYpqMJIZFiggHnRPtbBYdCAZfVB_1_Rewired_PlayerActiveControllerChangedDelegate___Class *klass; - MonitorData *monitor; - struct iodYpqMJIZFiggHnRPtbBYdCAZfVB_1_Rewired_PlayerActiveControllerChangedDelegate___Fields fields; -}; - struct __declspec(align(8)) ldnqCJRTNbykOZAyPczivAgtlhxQ_1_Rewired_PlayerActiveControllerChangedDelegate___Fields { int32_t JebnwfbeSAlwRjzOibYdwOEtnjbo; struct AList_1_ldnqCJRTNbykOZAyPczivAgtlhxQ_1_ywtZPPrElpcINJiNufkjaDyFYDcAB__1 *FLlKhzCMzVSMjrJtrjzhyNGKCRdE; @@ -177440,6 +180243,17 @@ struct ldnqCJRTNbykOZAyPczivAgtlhxQ_1_Rewired_PlayerActiveControllerChangedDeleg struct ldnqCJRTNbykOZAyPczivAgtlhxQ_1_Rewired_PlayerActiveControllerChangedDelegate___Fields fields; }; +struct __declspec(align(8)) ldnqCJRTNbykOZAyPczivAgtlhxQ_1_u0001_ywtZPPrElpcINJiNufkjaDyFYDcAB_Rewired_PlayerActiveControllerChangedDelegate___Fields { + struct PlayerActiveControllerChangedDelegate *aDONiMAzCKPdlgcUgwQQxgxidPDk; + int32_t FkfEkngelrqmJZuGQDqsqaqoYyHB; +}; + +struct ldnqCJRTNbykOZAyPczivAgtlhxQ_1_u0001_ywtZPPrElpcINJiNufkjaDyFYDcAB_Rewired_PlayerActiveControllerChangedDelegate_ { + struct ldnqCJRTNbykOZAyPczivAgtlhxQ_1_u0001_ywtZPPrElpcINJiNufkjaDyFYDcAB_Rewired_PlayerActiveControllerChangedDelegate___Class *klass; + MonitorData *monitor; + struct ldnqCJRTNbykOZAyPczivAgtlhxQ_1_u0001_ywtZPPrElpcINJiNufkjaDyFYDcAB_Rewired_PlayerActiveControllerChangedDelegate___Fields fields; +}; + struct __declspec(align(8)) AList_1_ldnqCJRTNbykOZAyPczivAgtlhxQ_1_ywtZPPrElpcINJiNufkjaDyFYDcAB__1__Fields { struct IEqualityComparer_1_ldnqCJRTNbykOZAyPczivAgtlhxQ_1_ywtZPPrElpcINJiNufkjaDyFYDcAB__1 *IffVJRWXMWVnHJdLRJYLVauxgDLkA; struct ldnqCJRTNbykOZAyPczivAgtlhxQ_1_u0001_ywtZPPrElpcINJiNufkjaDyFYDcAB_Rewired_PlayerActiveControllerChangedDelegate___Array *_items; @@ -177459,17 +180273,6 @@ struct AList_1_ldnqCJRTNbykOZAyPczivAgtlhxQ_1_ywtZPPrElpcINJiNufkjaDyFYDcAB__1 { struct AList_1_ldnqCJRTNbykOZAyPczivAgtlhxQ_1_ywtZPPrElpcINJiNufkjaDyFYDcAB__1__Fields fields; }; -struct __declspec(align(8)) ldnqCJRTNbykOZAyPczivAgtlhxQ_1_u0001_ywtZPPrElpcINJiNufkjaDyFYDcAB_Rewired_PlayerActiveControllerChangedDelegate___Fields { - struct PlayerActiveControllerChangedDelegate *aDONiMAzCKPdlgcUgwQQxgxidPDk; - int32_t FkfEkngelrqmJZuGQDqsqaqoYyHB; -}; - -struct ldnqCJRTNbykOZAyPczivAgtlhxQ_1_u0001_ywtZPPrElpcINJiNufkjaDyFYDcAB_Rewired_PlayerActiveControllerChangedDelegate_ { - struct ldnqCJRTNbykOZAyPczivAgtlhxQ_1_u0001_ywtZPPrElpcINJiNufkjaDyFYDcAB_Rewired_PlayerActiveControllerChangedDelegate___Class *klass; - MonitorData *monitor; - struct ldnqCJRTNbykOZAyPczivAgtlhxQ_1_u0001_ywtZPPrElpcINJiNufkjaDyFYDcAB_Rewired_PlayerActiveControllerChangedDelegate___Fields fields; -}; - struct PlayerActiveControllerChangedDelegate__Fields { struct MulticastDelegate__Fields _; }; @@ -177506,6 +180309,19 @@ struct iodYpqMJIZFiggHnRPtbBYdCAZfVB_1_Rewired_PlayerActiveControllerChangedDele struct iodYpqMJIZFiggHnRPtbBYdCAZfVB_1_Rewired_PlayerActiveControllerChangedDelegate_ *vector[32]; }; +struct ADictionary_2_TKey_TValue_Entry_System_Int32_XKHfzUVAieDxXBogCMTJRCSldnQzA_ZKepnRKpLuSRvtfTUZewbgDXdBHc_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct XKHfzUVAieDxXBogCMTJRCSldnQzA_ZKepnRKpLuSRvtfTUZewbgDXdBHc *value; +}; + +struct ADictionary_2_TKey_TValue_Entry_System_Int32_XKHfzUVAieDxXBogCMTJRCSldnQzA_ZKepnRKpLuSRvtfTUZewbgDXdBHc___Boxed { + struct ADictionary_2_TKey_TValue_Entry_System_Int32_XKHfzUVAieDxXBogCMTJRCSldnQzA_ZKepnRKpLuSRvtfTUZewbgDXdBHc___Class *klass; + MonitorData *monitor; + struct ADictionary_2_TKey_TValue_Entry_System_Int32_XKHfzUVAieDxXBogCMTJRCSldnQzA_ZKepnRKpLuSRvtfTUZewbgDXdBHc_ fields; +}; + struct __declspec(align(8)) ADictionary_2_System_Int32_XKHfzUVAieDxXBogCMTJRCSldnQzA_ZKepnRKpLuSRvtfTUZewbgDXdBHc___Fields { struct Int32__Array *pGawVZUvYULemJqagZXhjOtPTktC; struct ADictionary_2_TKey_TValue_Entry_System_Int32_XKHfzUVAieDxXBogCMTJRCSldnQzA_ZKepnRKpLuSRvtfTUZewbgDXdBHc___Array *_entries; @@ -177527,19 +180343,6 @@ struct ADictionary_2_System_Int32_XKHfzUVAieDxXBogCMTJRCSldnQzA_ZKepnRKpLuSRvtfT struct ADictionary_2_System_Int32_XKHfzUVAieDxXBogCMTJRCSldnQzA_ZKepnRKpLuSRvtfTUZewbgDXdBHc___Fields fields; }; -struct ADictionary_2_TKey_TValue_Entry_System_Int32_XKHfzUVAieDxXBogCMTJRCSldnQzA_ZKepnRKpLuSRvtfTUZewbgDXdBHc_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct XKHfzUVAieDxXBogCMTJRCSldnQzA_ZKepnRKpLuSRvtfTUZewbgDXdBHc *value; -}; - -struct ADictionary_2_TKey_TValue_Entry_System_Int32_XKHfzUVAieDxXBogCMTJRCSldnQzA_ZKepnRKpLuSRvtfTUZewbgDXdBHc___Boxed { - struct ADictionary_2_TKey_TValue_Entry_System_Int32_XKHfzUVAieDxXBogCMTJRCSldnQzA_ZKepnRKpLuSRvtfTUZewbgDXdBHc___Class *klass; - MonitorData *monitor; - struct ADictionary_2_TKey_TValue_Entry_System_Int32_XKHfzUVAieDxXBogCMTJRCSldnQzA_ZKepnRKpLuSRvtfTUZewbgDXdBHc_ fields; -}; - struct __declspec(align(8)) XKHfzUVAieDxXBogCMTJRCSldnQzA_ZKepnRKpLuSRvtfTUZewbgDXdBHc__Fields { struct ADictionary_2_System_Int32_Rewired_InputBehavior_ *EguMivaEnQbDiOtSyTkITmcWhcfk; struct List_1_Rewired_InputBehavior_ *scijIQkGcxWINnJFzCKwIJrItXPZA; @@ -177552,6 +180355,19 @@ struct XKHfzUVAieDxXBogCMTJRCSldnQzA_ZKepnRKpLuSRvtfTUZewbgDXdBHc { struct XKHfzUVAieDxXBogCMTJRCSldnQzA_ZKepnRKpLuSRvtfTUZewbgDXdBHc__Fields fields; }; +struct ADictionary_2_TKey_TValue_Entry_System_Int32_Rewired_InputBehavior_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct InputBehavior *value; +}; + +struct ADictionary_2_TKey_TValue_Entry_System_Int32_Rewired_InputBehavior___Boxed { + struct ADictionary_2_TKey_TValue_Entry_System_Int32_Rewired_InputBehavior___Class *klass; + MonitorData *monitor; + struct ADictionary_2_TKey_TValue_Entry_System_Int32_Rewired_InputBehavior_ fields; +}; + struct __declspec(align(8)) ADictionary_2_System_Int32_Rewired_InputBehavior___Fields { struct Int32__Array *pGawVZUvYULemJqagZXhjOtPTktC; struct ADictionary_2_TKey_TValue_Entry_System_Int32_Rewired_InputBehavior___Array *_entries; @@ -177573,19 +180389,6 @@ struct ADictionary_2_System_Int32_Rewired_InputBehavior_ { struct ADictionary_2_System_Int32_Rewired_InputBehavior___Fields fields; }; -struct ADictionary_2_TKey_TValue_Entry_System_Int32_Rewired_InputBehavior_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct InputBehavior *value; -}; - -struct ADictionary_2_TKey_TValue_Entry_System_Int32_Rewired_InputBehavior___Boxed { - struct ADictionary_2_TKey_TValue_Entry_System_Int32_Rewired_InputBehavior___Class *klass; - MonitorData *monitor; - struct ADictionary_2_TKey_TValue_Entry_System_Int32_Rewired_InputBehavior_ fields; -}; - struct ADictionary_2_TKey_TValue_Entry_System_Int32_Rewired_InputBehavior___Array { struct ADictionary_2_TKey_TValue_Entry_System_Int32_Rewired_InputBehavior___Array__Class *klass; MonitorData *monitor; @@ -177736,6 +180539,19 @@ struct NEKNFNnBnMerBGmvtGdFgVoKfnGUA { struct NEKNFNnBnMerBGmvtGdFgVoKfnGUA__Fields fields; }; +struct __declspec(align(8)) NEKNFNnBnMerBGmvtGdFgVoKfnGUA_RifmWctMhNdhIJYvjlOuqmVzJHgX__Fields { + struct AList_1_Rewired_IControllerTemplate_ *VMeHiJhSKJHrptlKzeCAAZtDcXSGA; + struct IList *xNuBsZPstcGkwBbmlgRJpmzjGcUx; + struct IList *WkaDmSbUHIQvTENqalTLbFihpQSBB; + struct Type *EdgYAxDsGMMrTONtwkquolojYaWd; +}; + +struct NEKNFNnBnMerBGmvtGdFgVoKfnGUA_RifmWctMhNdhIJYvjlOuqmVzJHgX { + struct NEKNFNnBnMerBGmvtGdFgVoKfnGUA_RifmWctMhNdhIJYvjlOuqmVzJHgX__Class *klass; + MonitorData *monitor; + struct NEKNFNnBnMerBGmvtGdFgVoKfnGUA_RifmWctMhNdhIJYvjlOuqmVzJHgX__Fields fields; +}; + struct __declspec(align(8)) AList_1_NEKNFNnBnMerBGmvtGdFgVoKfnGUA_RifmWctMhNdhIJYvjlOuqmVzJHgX___Fields { struct IEqualityComparer_1_NEKNFNnBnMerBGmvtGdFgVoKfnGUA_RifmWctMhNdhIJYvjlOuqmVzJHgX_ *IffVJRWXMWVnHJdLRJYLVauxgDLkA; struct NEKNFNnBnMerBGmvtGdFgVoKfnGUA_RifmWctMhNdhIJYvjlOuqmVzJHgX__Array *_items; @@ -177755,19 +180571,6 @@ struct AList_1_NEKNFNnBnMerBGmvtGdFgVoKfnGUA_RifmWctMhNdhIJYvjlOuqmVzJHgX_ { struct AList_1_NEKNFNnBnMerBGmvtGdFgVoKfnGUA_RifmWctMhNdhIJYvjlOuqmVzJHgX___Fields fields; }; -struct __declspec(align(8)) NEKNFNnBnMerBGmvtGdFgVoKfnGUA_RifmWctMhNdhIJYvjlOuqmVzJHgX__Fields { - struct AList_1_Rewired_IControllerTemplate_ *VMeHiJhSKJHrptlKzeCAAZtDcXSGA; - struct IList *xNuBsZPstcGkwBbmlgRJpmzjGcUx; - struct IList *WkaDmSbUHIQvTENqalTLbFihpQSBB; - struct Type *EdgYAxDsGMMrTONtwkquolojYaWd; -}; - -struct NEKNFNnBnMerBGmvtGdFgVoKfnGUA_RifmWctMhNdhIJYvjlOuqmVzJHgX { - struct NEKNFNnBnMerBGmvtGdFgVoKfnGUA_RifmWctMhNdhIJYvjlOuqmVzJHgX__Class *klass; - MonitorData *monitor; - struct NEKNFNnBnMerBGmvtGdFgVoKfnGUA_RifmWctMhNdhIJYvjlOuqmVzJHgX__Fields fields; -}; - struct __declspec(align(8)) AList_1_Rewired_IControllerTemplate___Fields { struct IEqualityComparer_1_Rewired_IControllerTemplate_ *IffVJRWXMWVnHJdLRJYLVauxgDLkA; struct IControllerTemplate__Array *_items; @@ -177820,6 +180623,18 @@ struct IList_1_Rewired_CustomController_ { MonitorData *monitor; }; +struct __declspec(align(8)) awbjHmZDZGaFbpFdVngkjOlucOb_GAaWAhihtaBrVEgxHmuQgkOpejeO__Fields { + struct InputAction *EyZDDwcdSpPlSPIfZXaxanVfnbhYA; + int32_t uexEdNIxSEMVXAkypLyprVSXXGPD; + int32_t EtASSOWeuoSRYAAmWTorBaCEANXm; +}; + +struct awbjHmZDZGaFbpFdVngkjOlucOb_GAaWAhihtaBrVEgxHmuQgkOpejeO { + struct awbjHmZDZGaFbpFdVngkjOlucOb_GAaWAhihtaBrVEgxHmuQgkOpejeO__Class *klass; + MonitorData *monitor; + struct awbjHmZDZGaFbpFdVngkjOlucOb_GAaWAhihtaBrVEgxHmuQgkOpejeO__Fields fields; +}; + struct __declspec(align(8)) awbjHmZDZGaFbpFdVngkjOlucOb__Fields { struct InputAction__Array *MeQgtpdiabxXqSvpwNTRrQUhbRyIA; struct ADictionary_2_System_String_awbjHmZDZGaFbpFdVngkjOlucOb_GAaWAhihtaBrVEgxHmuQgkOpejeO_ *jGormxvoISUYcuGsEofhiWczVTZe; @@ -177837,6 +180652,19 @@ struct awbjHmZDZGaFbpFdVngkjOlucOb { struct awbjHmZDZGaFbpFdVngkjOlucOb__Fields fields; }; +struct ADictionary_2_TKey_TValue_Entry_System_String_awbjHmZDZGaFbpFdVngkjOlucOb_GAaWAhihtaBrVEgxHmuQgkOpejeO_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct awbjHmZDZGaFbpFdVngkjOlucOb_GAaWAhihtaBrVEgxHmuQgkOpejeO *value; +}; + +struct ADictionary_2_TKey_TValue_Entry_System_String_awbjHmZDZGaFbpFdVngkjOlucOb_GAaWAhihtaBrVEgxHmuQgkOpejeO___Boxed { + struct ADictionary_2_TKey_TValue_Entry_System_String_awbjHmZDZGaFbpFdVngkjOlucOb_GAaWAhihtaBrVEgxHmuQgkOpejeO___Class *klass; + MonitorData *monitor; + struct ADictionary_2_TKey_TValue_Entry_System_String_awbjHmZDZGaFbpFdVngkjOlucOb_GAaWAhihtaBrVEgxHmuQgkOpejeO_ fields; +}; + struct __declspec(align(8)) ADictionary_2_System_String_awbjHmZDZGaFbpFdVngkjOlucOb_GAaWAhihtaBrVEgxHmuQgkOpejeO___Fields { struct Int32__Array *pGawVZUvYULemJqagZXhjOtPTktC; struct ADictionary_2_TKey_TValue_Entry_System_String_awbjHmZDZGaFbpFdVngkjOlucOb_GAaWAhihtaBrVEgxHmuQgkOpejeO___Array *_entries; @@ -177858,31 +180686,6 @@ struct ADictionary_2_System_String_awbjHmZDZGaFbpFdVngkjOlucOb_GAaWAhihtaBrVEgxH struct ADictionary_2_System_String_awbjHmZDZGaFbpFdVngkjOlucOb_GAaWAhihtaBrVEgxHmuQgkOpejeO___Fields fields; }; -struct ADictionary_2_TKey_TValue_Entry_System_String_awbjHmZDZGaFbpFdVngkjOlucOb_GAaWAhihtaBrVEgxHmuQgkOpejeO_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct awbjHmZDZGaFbpFdVngkjOlucOb_GAaWAhihtaBrVEgxHmuQgkOpejeO *value; -}; - -struct ADictionary_2_TKey_TValue_Entry_System_String_awbjHmZDZGaFbpFdVngkjOlucOb_GAaWAhihtaBrVEgxHmuQgkOpejeO___Boxed { - struct ADictionary_2_TKey_TValue_Entry_System_String_awbjHmZDZGaFbpFdVngkjOlucOb_GAaWAhihtaBrVEgxHmuQgkOpejeO___Class *klass; - MonitorData *monitor; - struct ADictionary_2_TKey_TValue_Entry_System_String_awbjHmZDZGaFbpFdVngkjOlucOb_GAaWAhihtaBrVEgxHmuQgkOpejeO_ fields; -}; - -struct __declspec(align(8)) awbjHmZDZGaFbpFdVngkjOlucOb_GAaWAhihtaBrVEgxHmuQgkOpejeO__Fields { - struct InputAction *EyZDDwcdSpPlSPIfZXaxanVfnbhYA; - int32_t uexEdNIxSEMVXAkypLyprVSXXGPD; - int32_t EtASSOWeuoSRYAAmWTorBaCEANXm; -}; - -struct awbjHmZDZGaFbpFdVngkjOlucOb_GAaWAhihtaBrVEgxHmuQgkOpejeO { - struct awbjHmZDZGaFbpFdVngkjOlucOb_GAaWAhihtaBrVEgxHmuQgkOpejeO__Class *klass; - MonitorData *monitor; - struct awbjHmZDZGaFbpFdVngkjOlucOb_GAaWAhihtaBrVEgxHmuQgkOpejeO__Fields fields; -}; - struct ADictionary_2_TKey_TValue_Entry_System_String_awbjHmZDZGaFbpFdVngkjOlucOb_GAaWAhihtaBrVEgxHmuQgkOpejeO___Array { struct ADictionary_2_TKey_TValue_Entry_System_String_awbjHmZDZGaFbpFdVngkjOlucOb_GAaWAhihtaBrVEgxHmuQgkOpejeO___Array__Class *klass; MonitorData *monitor; @@ -178080,6 +180883,11 @@ struct Player_ControllerHelper { struct Player_ControllerHelper__Fields fields; }; +struct Player_ControllerHelper_fsFeIeGDhTZoJrGbaYxAfXlTfeQO { + struct Player_ControllerHelper_fsFeIeGDhTZoJrGbaYxAfXlTfeQO__Class *klass; + MonitorData *monitor; +}; + struct __declspec(align(8)) Player_ControllerHelper_dQSYPTHvbqNnvMJggKPUmplchfgjA__Fields { int32_t JebnwfbeSAlwRjzOibYdwOEtnjbo; struct ControllerType__Enum__Array *jCQLsUXLHkAPNseeBIxzAbFlhhLoA; @@ -178100,11 +180908,6 @@ struct ControllerType__Enum__Array { ControllerType__Enum vector[32]; }; -struct Player_ControllerHelper_fsFeIeGDhTZoJrGbaYxAfXlTfeQO { - struct Player_ControllerHelper_fsFeIeGDhTZoJrGbaYxAfXlTfeQO__Class *klass; - MonitorData *monitor; -}; - struct Player_ControllerHelper_fsFeIeGDhTZoJrGbaYxAfXlTfeQO__Array { struct Player_ControllerHelper_fsFeIeGDhTZoJrGbaYxAfXlTfeQO__Array__Class *klass; MonitorData *monitor; @@ -178163,19 +180966,6 @@ struct SafeDelegate_1_System_Action_ { struct SafeDelegate_1_System_Action___Fields fields; }; -struct __declspec(align(8)) List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo___Fields { - struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action___Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo_ { - struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo___Class *klass; - MonitorData *monitor; - struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo___Fields fields; -}; - struct __declspec(align(8)) SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action___Fields { struct Action *EbPkqdARHGIDwsIdtmoIkULLoFZX; struct Object *azMuaeFsfaJNXcPJwiBJiandOfCPB; @@ -178189,6 +180979,19 @@ struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_ { struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action___Fields fields; }; +struct __declspec(align(8)) List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo___Fields { + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action___Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo_ { + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo___Class *klass; + MonitorData *monitor; + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo___Fields fields; +}; + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action___Array { struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action___Array__Class *klass; MonitorData *monitor; @@ -178222,19 +181025,6 @@ struct Action_2_Object_Action_ { struct Action_2_Object_Action___Fields fields; }; -struct __declspec(align(8)) List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__1__Fields { - struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1___Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__1 { - struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__1__Class *klass; - MonitorData *monitor; - struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__1__Fields fields; -}; - struct __declspec(align(8)) SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1___Fields { struct Action_1_Rewired_ControllerAssignmentChangedEventArgs_ *EbPkqdARHGIDwsIdtmoIkULLoFZX; struct Object *azMuaeFsfaJNXcPJwiBJiandOfCPB; @@ -178248,6 +181038,19 @@ struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1_ { struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1___Fields fields; }; +struct __declspec(align(8)) List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__1__Fields { + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1___Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__1 { + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__1__Class *klass; + MonitorData *monitor; + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__1__Fields fields; +}; + struct Action_1_Rewired_ControllerAssignmentChangedEventArgs___Fields { struct MulticastDelegate__Fields _; }; @@ -178309,6 +181112,18 @@ struct Player_ControllerHelper_eRpAeFxcyMygNogiZCgHnqGANSDc { struct Player_ControllerHelper_eRpAeFxcyMygNogiZCgHnqGANSDc__Fields fields; }; +struct __declspec(align(8)) Player_ControllerHelper_eRpAeFxcyMygNogiZCgHnqGANSDc_FMbXBAQaLWPhxjqsNoyCTWZtsDfI__Fields { + int32_t RtxTswzamzwaCLIcEPNsbxlbdcdj; + struct FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_Rewired_JoystickMap_ *aAowPEkJbfCViZyNqUZPfunqZbmj; + double sVQvoaaDLRIdsAwwMPQZXpfkCEDV; +}; + +struct Player_ControllerHelper_eRpAeFxcyMygNogiZCgHnqGANSDc_FMbXBAQaLWPhxjqsNoyCTWZtsDfI { + struct Player_ControllerHelper_eRpAeFxcyMygNogiZCgHnqGANSDc_FMbXBAQaLWPhxjqsNoyCTWZtsDfI__Class *klass; + MonitorData *monitor; + struct Player_ControllerHelper_eRpAeFxcyMygNogiZCgHnqGANSDc_FMbXBAQaLWPhxjqsNoyCTWZtsDfI__Fields fields; +}; + struct __declspec(align(8)) List_1_Rewired_Player_ControllerHelper_eRpAeFxcyMygNogiZCgHnqGANSDc_FMbXBAQaLWPhxjqsNoyCTWZtsDfI___Fields { struct Player_ControllerHelper_eRpAeFxcyMygNogiZCgHnqGANSDc_FMbXBAQaLWPhxjqsNoyCTWZtsDfI__Array *_items; int32_t _size; @@ -178322,18 +181137,6 @@ struct List_1_Rewired_Player_ControllerHelper_eRpAeFxcyMygNogiZCgHnqGANSDc_FMbXB struct List_1_Rewired_Player_ControllerHelper_eRpAeFxcyMygNogiZCgHnqGANSDc_FMbXBAQaLWPhxjqsNoyCTWZtsDfI___Fields fields; }; -struct __declspec(align(8)) Player_ControllerHelper_eRpAeFxcyMygNogiZCgHnqGANSDc_FMbXBAQaLWPhxjqsNoyCTWZtsDfI__Fields { - int32_t RtxTswzamzwaCLIcEPNsbxlbdcdj; - struct FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_Rewired_JoystickMap_ *aAowPEkJbfCViZyNqUZPfunqZbmj; - double sVQvoaaDLRIdsAwwMPQZXpfkCEDV; -}; - -struct Player_ControllerHelper_eRpAeFxcyMygNogiZCgHnqGANSDc_FMbXBAQaLWPhxjqsNoyCTWZtsDfI { - struct Player_ControllerHelper_eRpAeFxcyMygNogiZCgHnqGANSDc_FMbXBAQaLWPhxjqsNoyCTWZtsDfI__Class *klass; - MonitorData *monitor; - struct Player_ControllerHelper_eRpAeFxcyMygNogiZCgHnqGANSDc_FMbXBAQaLWPhxjqsNoyCTWZtsDfI__Fields fields; -}; - struct __declspec(align(8)) FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_Rewired_JoystickMap___Fields { struct List_1_Rewired_ControllerMap_ *lTKBDsBARMhpzlJwwJmZFjPZrgnl; struct IList_1_Rewired_ControllerMap_ *NVCfhhjMsOfupkFImqcHwwGDvkeA; @@ -178384,19 +181187,6 @@ struct IList_1_Rewired_ControllerMap_ { MonitorData *monitor; }; -struct __declspec(align(8)) List_1_Rewired_JoystickMap___Fields { - struct JoystickMap__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Rewired_JoystickMap_ { - struct List_1_Rewired_JoystickMap___Class *klass; - MonitorData *monitor; - struct List_1_Rewired_JoystickMap___Fields fields; -}; - struct ControllerMapWithAxes__Fields { struct ControllerMap__Fields _; struct IList_1_Rewired_ActionElementMap_ *xfddtXQTDHeeuPtPOeYyrHfJqBrJ; @@ -178419,6 +181209,19 @@ struct JoystickMap { struct JoystickMap__Fields fields; }; +struct __declspec(align(8)) List_1_Rewired_JoystickMap___Fields { + struct JoystickMap__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Rewired_JoystickMap_ { + struct List_1_Rewired_JoystickMap___Class *klass; + MonitorData *monitor; + struct List_1_Rewired_JoystickMap___Fields fields; +}; + struct JoystickMap__Array { struct JoystickMap__Array__Class *klass; MonitorData *monitor; @@ -178500,6 +181303,18 @@ struct Player_ControllerHelper_MapHelper { struct Player_ControllerHelper_MapHelper__Fields fields; }; +struct __declspec(align(8)) QrmFKaXWCucaXPGsKbkrhZUVAexX__Fields { + int32_t EYQpFYNHnOTbMUGfjdqyFyrmaQaaA; + int32_t tdzOkmiXqPBRWQiokcvlnZWvSVfh; + bool DDvrmAYuibQfeMxgTfMtYepanReI; +}; + +struct QrmFKaXWCucaXPGsKbkrhZUVAexX { + struct QrmFKaXWCucaXPGsKbkrhZUVAexX__Class *klass; + MonitorData *monitor; + struct QrmFKaXWCucaXPGsKbkrhZUVAexX__Fields fields; +}; + struct __declspec(align(8)) QYIvqhKfoKYTEUONdLAPWBueYUGd__Fields { struct QrmFKaXWCucaXPGsKbkrhZUVAexX__Array *opQwVKyCUyimkJjJKdMmwhOjKpcU; struct QrmFKaXWCucaXPGsKbkrhZUVAexX__Array *VnKaoEZavwmdwLuThuDspCbxsAvx; @@ -178513,18 +181328,6 @@ struct QYIvqhKfoKYTEUONdLAPWBueYUGd { struct QYIvqhKfoKYTEUONdLAPWBueYUGd__Fields fields; }; -struct __declspec(align(8)) QrmFKaXWCucaXPGsKbkrhZUVAexX__Fields { - int32_t EYQpFYNHnOTbMUGfjdqyFyrmaQaaA; - int32_t tdzOkmiXqPBRWQiokcvlnZWvSVfh; - bool DDvrmAYuibQfeMxgTfMtYepanReI; -}; - -struct QrmFKaXWCucaXPGsKbkrhZUVAexX { - struct QrmFKaXWCucaXPGsKbkrhZUVAexX__Class *klass; - MonitorData *monitor; - struct QrmFKaXWCucaXPGsKbkrhZUVAexX__Fields fields; -}; - struct QrmFKaXWCucaXPGsKbkrhZUVAexX__Array { struct QrmFKaXWCucaXPGsKbkrhZUVAexX__Array__Class *klass; MonitorData *monitor; @@ -178547,17 +181350,6 @@ struct ControllerMapEnabler { struct ControllerMapEnabler__Fields fields; }; -struct __declspec(align(8)) ControllerMapEnabler_OKJjdMVAalCqZcLQzdQgZmMptzek__Fields { - bool UnlEOteNMKudjqffXsKpdGysQNkNA; - struct XXNesqlLzdVyNWEawBsQGxYGjphX__Array *EozfunQivddASUwkgDviirtkZvFz; -}; - -struct ControllerMapEnabler_OKJjdMVAalCqZcLQzdQgZmMptzek { - struct ControllerMapEnabler_OKJjdMVAalCqZcLQzdQgZmMptzek__Class *klass; - MonitorData *monitor; - struct ControllerMapEnabler_OKJjdMVAalCqZcLQzdQgZmMptzek__Fields fields; -}; - struct __declspec(align(8)) XXNesqlLzdVyNWEawBsQGxYGjphX__Fields { bool DDvrmAYuibQfeMxgTfMtYepanReI; int32_t kDiemHoDflBGMRjfcTsDSjCVOpgy; @@ -178569,6 +181361,17 @@ struct XXNesqlLzdVyNWEawBsQGxYGjphX { struct XXNesqlLzdVyNWEawBsQGxYGjphX__Fields fields; }; +struct __declspec(align(8)) ControllerMapEnabler_OKJjdMVAalCqZcLQzdQgZmMptzek__Fields { + bool UnlEOteNMKudjqffXsKpdGysQNkNA; + struct XXNesqlLzdVyNWEawBsQGxYGjphX__Array *EozfunQivddASUwkgDviirtkZvFz; +}; + +struct ControllerMapEnabler_OKJjdMVAalCqZcLQzdQgZmMptzek { + struct ControllerMapEnabler_OKJjdMVAalCqZcLQzdQgZmMptzek__Class *klass; + MonitorData *monitor; + struct ControllerMapEnabler_OKJjdMVAalCqZcLQzdQgZmMptzek__Fields fields; +}; + struct XXNesqlLzdVyNWEawBsQGxYGjphX__Array { struct XXNesqlLzdVyNWEawBsQGxYGjphX__Array__Class *klass; MonitorData *monitor; @@ -178577,19 +181380,6 @@ struct XXNesqlLzdVyNWEawBsQGxYGjphX__Array { struct XXNesqlLzdVyNWEawBsQGxYGjphX *vector[32]; }; -struct __declspec(align(8)) List_1_Rewired_ControllerMapEnabler_RuleSet___Fields { - struct ControllerMapEnabler_RuleSet__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Rewired_ControllerMapEnabler_RuleSet_ { - struct List_1_Rewired_ControllerMapEnabler_RuleSet___Class *klass; - MonitorData *monitor; - struct List_1_Rewired_ControllerMapEnabler_RuleSet___Fields fields; -}; - struct __declspec(align(8)) ControllerMapEnabler_RuleSet__Fields { bool _enabled; struct String *_tag; @@ -178602,17 +181392,17 @@ struct ControllerMapEnabler_RuleSet { struct ControllerMapEnabler_RuleSet__Fields fields; }; -struct __declspec(align(8)) List_1_Rewired_ControllerMapEnabler_Rule___Fields { - struct ControllerMapEnabler_Rule__Array *_items; +struct __declspec(align(8)) List_1_Rewired_ControllerMapEnabler_RuleSet___Fields { + struct ControllerMapEnabler_RuleSet__Array *_items; int32_t _size; int32_t _version; struct Object *_syncRoot; }; -struct List_1_Rewired_ControllerMapEnabler_Rule_ { - struct List_1_Rewired_ControllerMapEnabler_Rule___Class *klass; +struct List_1_Rewired_ControllerMapEnabler_RuleSet_ { + struct List_1_Rewired_ControllerMapEnabler_RuleSet___Class *klass; MonitorData *monitor; - struct List_1_Rewired_ControllerMapEnabler_Rule___Fields fields; + struct List_1_Rewired_ControllerMapEnabler_RuleSet___Fields fields; }; struct __declspec(align(8)) ControllerMapEnabler_Rule__Fields { @@ -178631,6 +181421,19 @@ struct ControllerMapEnabler_Rule { struct ControllerMapEnabler_Rule__Fields fields; }; +struct __declspec(align(8)) List_1_Rewired_ControllerMapEnabler_Rule___Fields { + struct ControllerMapEnabler_Rule__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Rewired_ControllerMapEnabler_Rule_ { + struct List_1_Rewired_ControllerMapEnabler_Rule___Class *klass; + MonitorData *monitor; + struct List_1_Rewired_ControllerMapEnabler_Rule___Fields fields; +}; + struct __declspec(align(8)) ControllerSetSelector__Fields { #if defined(_CPLUSPLUS_) ControllerSetSelector_Type__Enum _type; @@ -178708,19 +181511,6 @@ struct ControllerMapLayoutManager_OAjbFOivILIoOuJJWeCBbjSYTLeUA { struct ControllerMapLayoutManager_OAjbFOivILIoOuJJWeCBbjSYTLeUA__Fields fields; }; -struct __declspec(align(8)) List_1_Rewired_ControllerMapLayoutManager_RuleSet___Fields { - struct ControllerMapLayoutManager_RuleSet__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Rewired_ControllerMapLayoutManager_RuleSet_ { - struct List_1_Rewired_ControllerMapLayoutManager_RuleSet___Class *klass; - MonitorData *monitor; - struct List_1_Rewired_ControllerMapLayoutManager_RuleSet___Fields fields; -}; - struct __declspec(align(8)) ControllerMapLayoutManager_RuleSet__Fields { bool _enabled; struct String *_tag; @@ -178733,17 +181523,17 @@ struct ControllerMapLayoutManager_RuleSet { struct ControllerMapLayoutManager_RuleSet__Fields fields; }; -struct __declspec(align(8)) List_1_Rewired_ControllerMapLayoutManager_Rule___Fields { - struct ControllerMapLayoutManager_Rule__Array *_items; +struct __declspec(align(8)) List_1_Rewired_ControllerMapLayoutManager_RuleSet___Fields { + struct ControllerMapLayoutManager_RuleSet__Array *_items; int32_t _size; int32_t _version; struct Object *_syncRoot; }; -struct List_1_Rewired_ControllerMapLayoutManager_Rule_ { - struct List_1_Rewired_ControllerMapLayoutManager_Rule___Class *klass; +struct List_1_Rewired_ControllerMapLayoutManager_RuleSet_ { + struct List_1_Rewired_ControllerMapLayoutManager_RuleSet___Class *klass; MonitorData *monitor; - struct List_1_Rewired_ControllerMapLayoutManager_Rule___Fields fields; + struct List_1_Rewired_ControllerMapLayoutManager_RuleSet___Fields fields; }; struct __declspec(align(8)) ControllerMapLayoutManager_Rule__Fields { @@ -178761,6 +181551,19 @@ struct ControllerMapLayoutManager_Rule { struct ControllerMapLayoutManager_Rule__Fields fields; }; +struct __declspec(align(8)) List_1_Rewired_ControllerMapLayoutManager_Rule___Fields { + struct ControllerMapLayoutManager_Rule__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Rewired_ControllerMapLayoutManager_Rule_ { + struct List_1_Rewired_ControllerMapLayoutManager_Rule___Class *klass; + MonitorData *monitor; + struct List_1_Rewired_ControllerMapLayoutManager_Rule___Fields fields; +}; + struct ControllerMapLayoutManager_Rule__Array { struct ControllerMapLayoutManager_Rule__Array__Class *klass; MonitorData *monitor; @@ -178840,6 +181643,19 @@ struct FollowVRCameraCanvas { struct FollowVRCameraCanvas__Fields fields; }; +struct LightShadowsTrigger__Fields { + struct MonoBehaviour__Fields _; + struct Light__Array *lights; + int32_t collisions; + struct Dictionary_2_UnityEngine_Light_UnityEngine_LightShadows_ *originalLightShadows; +}; + +struct LightShadowsTrigger { + struct LightShadowsTrigger__Class *klass; + MonitorData *monitor; + struct LightShadowsTrigger__Fields fields; +}; + struct IntroDirectorController__Fields { struct MonoBehaviour__Fields _; struct Survival *m_Survival; @@ -178900,38 +181716,6 @@ struct OcclusionTrigger__Array { struct OcclusionTrigger *vector[32]; }; -struct LightShadowsTrigger__Fields { - struct MonoBehaviour__Fields _; - struct Light__Array *lights; - int32_t collisions; - struct Dictionary_2_UnityEngine_Light_UnityEngine_LightShadows_ *originalLightShadows; -}; - -struct LightShadowsTrigger { - struct LightShadowsTrigger__Class *klass; - MonitorData *monitor; - struct LightShadowsTrigger__Fields fields; -}; - -struct __declspec(align(8)) Dictionary_2_UnityEngine_Light_UnityEngine_LightShadows___Fields { - struct Int32__Array *_buckets; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Light_UnityEngine_LightShadows___Array *_entries; - int32_t _count; - int32_t _freeList; - int32_t _freeCount; - int32_t _version; - struct IEqualityComparer_1_UnityEngine_Light_ *_comparer; - struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_Light_UnityEngine_LightShadows_ *_keys; - struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_Light_UnityEngine_LightShadows_ *_values; - struct Object *_syncRoot; -}; - -struct Dictionary_2_UnityEngine_Light_UnityEngine_LightShadows_ { - struct Dictionary_2_UnityEngine_Light_UnityEngine_LightShadows___Class *klass; - MonitorData *monitor; - struct Dictionary_2_UnityEngine_Light_UnityEngine_LightShadows___Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class LightShadows__Enum : int32_t { None = 0x00000000, @@ -178974,6 +181758,25 @@ struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Light_UnityEngine_LightShadows struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Light_UnityEngine_LightShadows_ fields; }; +struct __declspec(align(8)) Dictionary_2_UnityEngine_Light_UnityEngine_LightShadows___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Light_UnityEngine_LightShadows___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_UnityEngine_Light_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_Light_UnityEngine_LightShadows_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_Light_UnityEngine_LightShadows_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_UnityEngine_Light_UnityEngine_LightShadows_ { + struct Dictionary_2_UnityEngine_Light_UnityEngine_LightShadows___Class *klass; + MonitorData *monitor; + struct Dictionary_2_UnityEngine_Light_UnityEngine_LightShadows___Fields fields; +}; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Light_UnityEngine_LightShadows___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Light_UnityEngine_LightShadows___Array__Class *klass; MonitorData *monitor; @@ -179134,19 +181937,6 @@ struct ScreenEffect { struct ScreenEffect__Fields fields; }; -struct __declspec(align(8)) List_1_ScreenEffectType___Fields { - struct ScreenEffectType__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_ScreenEffectType_ { - struct List_1_ScreenEffectType___Class *klass; - MonitorData *monitor; - struct List_1_ScreenEffectType___Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class ScreenEffect_Type__Enum : int32_t { Blood = 0x00000001, @@ -179193,6 +181983,19 @@ struct ScreenEffectType { struct ScreenEffectType__Fields fields; }; +struct __declspec(align(8)) List_1_ScreenEffectType___Fields { + struct ScreenEffectType__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_ScreenEffectType_ { + struct List_1_ScreenEffectType___Class *klass; + MonitorData *monitor; + struct List_1_ScreenEffectType___Fields fields; +}; + struct ScreenEffectDecals__Fields { struct MonoBehaviour__Fields _; struct Sprite__Array *sprites; @@ -179224,19 +182027,6 @@ struct IEnumerator_1_ScreenEffectType_ { MonitorData *monitor; }; -struct __declspec(align(8)) List_1_InnMazeController___Fields { - struct InnMazeController__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_InnMazeController_ { - struct List_1_InnMazeController___Class *klass; - MonitorData *monitor; - struct List_1_InnMazeController___Fields fields; -}; - struct EntityEventListenerBase_1_Photon_Bolt_IInnMazeState___Fields { struct EntityEventListenerBase__Fields _; }; @@ -179257,6 +182047,36 @@ struct EntityEventListener_1_IInnMazeState_ { struct EntityEventListener_1_IInnMazeState___Fields fields; }; +struct InnMazeBlocker__Fields { + struct MonoBehaviour__Fields _; + int32_t group; + int32_t leadsToGroup; + bool isExit; +}; + +struct InnMazeBlocker { + struct InnMazeBlocker__Class *klass; + MonitorData *monitor; + struct InnMazeBlocker__Fields fields; +}; + +struct InnMazeSpiderController__Fields { + struct MonoBehaviour__Fields _; + struct GameObject *spider; + struct Transform *endPoint; + struct Vector3 initialPosition; + bool triggered; + struct PlayRandomAudioClip *audioClips; + bool isArachnophobiaMode; + struct LODGroup *lodGroup; +}; + +struct InnMazeSpiderController { + struct InnMazeSpiderController__Class *klass; + MonitorData *monitor; + struct InnMazeSpiderController__Fields fields; +}; + struct InnMazeController__Fields { struct EntityEventListener_1_IInnMazeState___Fields _; struct Transform *startPoint; @@ -179276,17 +182096,17 @@ struct InnMazeController { struct InnMazeController__Fields fields; }; -struct __declspec(align(8)) List_1_InnHoleController___Fields { - struct InnHoleController__Array *_items; +struct __declspec(align(8)) List_1_InnMazeController___Fields { + struct InnMazeController__Array *_items; int32_t _size; int32_t _version; struct Object *_syncRoot; }; -struct List_1_InnHoleController_ { - struct List_1_InnHoleController___Class *klass; +struct List_1_InnMazeController_ { + struct List_1_InnMazeController___Class *klass; MonitorData *monitor; - struct List_1_InnHoleController___Fields fields; + struct List_1_InnMazeController___Fields fields; }; struct InnHoleController__Fields { @@ -179311,6 +182131,19 @@ struct InnHoleController { struct InnHoleController__Fields fields; }; +struct __declspec(align(8)) List_1_InnHoleController___Fields { + struct InnHoleController__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_InnHoleController_ { + struct List_1_InnHoleController___Class *klass; + MonitorData *monitor; + struct List_1_InnHoleController___Fields fields; +}; + struct InnHoleController__Array { struct InnHoleController__Array__Class *klass; MonitorData *monitor; @@ -179324,19 +182157,6 @@ struct IEnumerator_1_InnHoleController_ { MonitorData *monitor; }; -struct InnMazeBlocker__Fields { - struct MonoBehaviour__Fields _; - int32_t group; - int32_t leadsToGroup; - bool isExit; -}; - -struct InnMazeBlocker { - struct InnMazeBlocker__Class *klass; - MonitorData *monitor; - struct InnMazeBlocker__Fields fields; -}; - struct InnMazeBlocker__Array { struct InnMazeBlocker__Array__Class *klass; MonitorData *monitor; @@ -179345,23 +182165,6 @@ struct InnMazeBlocker__Array { struct InnMazeBlocker *vector[32]; }; -struct InnMazeSpiderController__Fields { - struct MonoBehaviour__Fields _; - struct GameObject *spider; - struct Transform *endPoint; - struct Vector3 initialPosition; - bool triggered; - struct PlayRandomAudioClip *audioClips; - bool isArachnophobiaMode; - struct LODGroup *lodGroup; -}; - -struct InnMazeSpiderController { - struct InnMazeSpiderController__Class *klass; - MonitorData *monitor; - struct InnMazeSpiderController__Fields fields; -}; - struct LODGroup__Fields { struct Component__Fields _; }; @@ -179393,6 +182196,18 @@ struct IEnumerator_1_InnMazeController_ { MonitorData *monitor; }; +struct __declspec(align(8)) InnSymbol__Fields { + int32_t type; + struct Texture *wallTexture; + struct Texture *emissiveTexture; +}; + +struct InnSymbol { + struct InnSymbol__Class *klass; + MonitorData *monitor; + struct InnSymbol__Fields fields; +}; + struct __declspec(align(8)) List_1_InnSymbol___Fields { struct InnSymbol__Array *_items; int32_t _size; @@ -179406,18 +182221,6 @@ struct List_1_InnSymbol_ { struct List_1_InnSymbol___Fields fields; }; -struct __declspec(align(8)) InnSymbol__Fields { - int32_t type; - struct Texture *wallTexture; - struct Texture *emissiveTexture; -}; - -struct InnSymbol { - struct InnSymbol__Class *klass; - MonitorData *monitor; - struct InnSymbol__Fields fields; -}; - struct InnSymbol__Array { struct InnSymbol__Array__Class *klass; MonitorData *monitor; @@ -179431,19 +182234,6 @@ struct IEnumerator_1_InnSymbol_ { MonitorData *monitor; }; -struct __declspec(align(8)) List_1_InnShrineController___Fields { - struct InnShrineController__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_InnShrineController_ { - struct List_1_InnShrineController___Class *klass; - MonitorData *monitor; - struct List_1_InnShrineController___Fields fields; -}; - struct EntityEventListenerBase_1_Photon_Bolt_IInnShrineState___Fields { struct EntityEventListenerBase__Fields _; }; @@ -179500,6 +182290,19 @@ struct InnShrineController { struct InnShrineController__Fields fields; }; +struct __declspec(align(8)) List_1_InnShrineController___Fields { + struct InnShrineController__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_InnShrineController_ { + struct List_1_InnShrineController___Class *klass; + MonitorData *monitor; + struct List_1_InnShrineController___Fields fields; +}; + struct AudioOcclusion__Fields { struct MonoBehaviour__Fields _; struct AudioOcclusionManager *audioOcclusionManager; @@ -179801,19 +182604,6 @@ struct Emote { struct Emote__Fields fields; }; -struct __declspec(align(8)) List_1_CharacterEmote___Fields { - struct CharacterEmote__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_CharacterEmote_ { - struct List_1_CharacterEmote___Class *klass; - MonitorData *monitor; - struct List_1_CharacterEmote___Fields fields; -}; - struct __declspec(align(8)) CharacterEmote__Fields { int32_t steamItemDefID; struct Sprite *sprite; @@ -179834,6 +182624,19 @@ struct CharacterEmote { struct CharacterEmote__Fields fields; }; +struct __declspec(align(8)) List_1_CharacterEmote___Fields { + struct CharacterEmote__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_CharacterEmote_ { + struct List_1_CharacterEmote___Class *klass; + MonitorData *monitor; + struct List_1_CharacterEmote___Fields fields; +}; + struct CharacterEmote__Array { struct CharacterEmote__Array__Class *klass; MonitorData *monitor; @@ -179926,6 +182729,17 @@ struct SteamInventoryPlayer { struct SteamInventoryPlayer__Fields fields; }; +struct NolanBehaviour_OverlappedCollider { + struct Collider *collider; + int32_t originalLayer; +}; + +struct NolanBehaviour_OverlappedCollider__Boxed { + struct NolanBehaviour_OverlappedCollider__Class *klass; + MonitorData *monitor; + struct NolanBehaviour_OverlappedCollider fields; +}; + struct __declspec(align(8)) List_1_NolanBehaviour_OverlappedCollider___Fields { struct NolanBehaviour_OverlappedCollider__Array *_items; int32_t _size; @@ -179939,17 +182753,6 @@ struct List_1_NolanBehaviour_OverlappedCollider_ { struct List_1_NolanBehaviour_OverlappedCollider___Fields fields; }; -struct NolanBehaviour_OverlappedCollider { - struct Collider *collider; - int32_t originalLayer; -}; - -struct NolanBehaviour_OverlappedCollider__Boxed { - struct NolanBehaviour_OverlappedCollider__Class *klass; - MonitorData *monitor; - struct NolanBehaviour_OverlappedCollider fields; -}; - struct NolanBehaviour_OverlappedCollider__Array { struct NolanBehaviour_OverlappedCollider__Array__Class *klass; MonitorData *monitor; @@ -179999,22 +182802,6 @@ struct IComparer_1_UnityEngine_RaycastHit_ { MonitorData *monitor; }; -struct ToggleLocalRainOnPlayer__Fields { - struct MonoBehaviour__Fields _; - struct Survival *m_Survival; - bool SetAsKillboxes; - int32_t m_TriggerCount; - struct SurvivalObjectBurnController *m_BurnController; - struct MapController *m_MapController; - struct Collider__Array *m_Triggers; -}; - -struct ToggleLocalRainOnPlayer { - struct ToggleLocalRainOnPlayer__Class *klass; - MonitorData *monitor; - struct ToggleLocalRainOnPlayer__Fields fields; -}; - struct ToggleLocalRainOnPlayer__Array { struct ToggleLocalRainOnPlayer__Array__Class *klass; MonitorData *monitor; @@ -180034,120 +182821,6 @@ struct BeingHeld { struct BeingHeld__Fields fields; }; -#if defined(_CPLUSPLUS_) -enum class DynamicBone_UpdateMode__Enum : int32_t { - Normal = 0x00000000, - AnimatePhysics = 0x00000001, - UnscaledTime = 0x00000002, - Default = 0x00000003, -}; - -#else -enum DynamicBone_UpdateMode__Enum { - DynamicBone_UpdateMode__Enum_Normal = 0x00000000, - DynamicBone_UpdateMode__Enum_AnimatePhysics = 0x00000001, - DynamicBone_UpdateMode__Enum_UnscaledTime = 0x00000002, - DynamicBone_UpdateMode__Enum_Default = 0x00000003, -}; - -#endif -struct DynamicBone_UpdateMode__Enum__Boxed { - struct DynamicBone_UpdateMode__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - DynamicBone_UpdateMode__Enum value; - #else - int32_t value; - #endif -}; - -#if defined(_CPLUSPLUS_) -enum class DynamicBone_FreezeAxis__Enum : int32_t { - None = 0x00000000, - X = 0x00000001, - Y = 0x00000002, - Z = 0x00000003, -}; - -#else -enum DynamicBone_FreezeAxis__Enum { - DynamicBone_FreezeAxis__Enum_None = 0x00000000, - DynamicBone_FreezeAxis__Enum_X = 0x00000001, - DynamicBone_FreezeAxis__Enum_Y = 0x00000002, - DynamicBone_FreezeAxis__Enum_Z = 0x00000003, -}; - -#endif -struct DynamicBone_FreezeAxis__Enum__Boxed { - struct DynamicBone_FreezeAxis__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - DynamicBone_FreezeAxis__Enum value; - #else - int32_t value; - #endif -}; - -struct DynamicBone__Fields { - struct MonoBehaviour__Fields _; - struct Transform *m_Root; - struct List_1_UnityEngine_Transform_ *m_Roots; - float m_UpdateRate; - #if defined(_CPLUSPLUS_) - DynamicBone_UpdateMode__Enum m_UpdateMode; - #else - int32_t m_UpdateMode; - #endif - float m_Damping; - struct AnimationCurve *m_DampingDistrib; - float m_Elasticity; - struct AnimationCurve *m_ElasticityDistrib; - float m_Stiffness; - struct AnimationCurve *m_StiffnessDistrib; - float m_Inert; - struct AnimationCurve *m_InertDistrib; - float m_Friction; - struct AnimationCurve *m_FrictionDistrib; - float m_Radius; - struct AnimationCurve *m_RadiusDistrib; - float m_EndLength; - struct Vector3 m_EndOffset; - struct Vector3 m_Gravity; - struct Vector3 m_Force; - float m_BlendWeight; - struct List_1_DynamicBoneColliderBase_ *m_Colliders; - struct List_1_UnityEngine_Transform_ *m_Exclusions; - #if defined(_CPLUSPLUS_) - DynamicBone_FreezeAxis__Enum m_FreezeAxis; - #else - int32_t m_FreezeAxis; - #endif - bool m_DistantDisable; - struct Transform *m_ReferenceObject; - float m_DistanceToObject; - bool m_Multithread; - struct Vector3 m_ObjectMove; - struct Vector3 m_ObjectPrevPosition; - float m_ObjectScale; - float m_Time; - float m_Weight; - bool m_DistantDisabled; - bool m_WorkAdded; - int32_t m_PreUpdateCount; - struct List_1_DynamicBone_ParticleTree_ *m_ParticleTrees; - float m_DeltaTime; - struct List_1_DynamicBoneColliderBase_ *m_EffectiveColliders; - bool m_DetectLocalCharacterCollisions; - bool m_CollisionOccurred; - int32_t m_LocalCharacterColliderIndex; -}; - -struct DynamicBone { - struct DynamicBone__Class *klass; - MonitorData *monitor; - struct DynamicBone__Fields fields; -}; - struct __declspec(align(8)) List_1_DynamicBoneColliderBase___Fields { struct DynamicBoneColliderBase__Array *_items; int32_t _size; @@ -180161,76 +182834,6 @@ struct List_1_DynamicBoneColliderBase_ { struct List_1_DynamicBoneColliderBase___Fields fields; }; -#if defined(_CPLUSPLUS_) -enum class DynamicBoneColliderBase_Direction__Enum : int32_t { - X = 0x00000000, - Y = 0x00000001, - Z = 0x00000002, -}; - -#else -enum DynamicBoneColliderBase_Direction__Enum { - DynamicBoneColliderBase_Direction__Enum_X = 0x00000000, - DynamicBoneColliderBase_Direction__Enum_Y = 0x00000001, - DynamicBoneColliderBase_Direction__Enum_Z = 0x00000002, -}; - -#endif -struct DynamicBoneColliderBase_Direction__Enum__Boxed { - struct DynamicBoneColliderBase_Direction__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - DynamicBoneColliderBase_Direction__Enum value; - #else - int32_t value; - #endif -}; - -#if defined(_CPLUSPLUS_) -enum class DynamicBoneColliderBase_Bound__Enum : int32_t { - Outside = 0x00000000, - Inside = 0x00000001, -}; - -#else -enum DynamicBoneColliderBase_Bound__Enum { - DynamicBoneColliderBase_Bound__Enum_Outside = 0x00000000, - DynamicBoneColliderBase_Bound__Enum_Inside = 0x00000001, -}; - -#endif -struct DynamicBoneColliderBase_Bound__Enum__Boxed { - struct DynamicBoneColliderBase_Bound__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - DynamicBoneColliderBase_Bound__Enum value; - #else - int32_t value; - #endif -}; - -struct DynamicBoneColliderBase__Fields { - struct MonoBehaviour__Fields _; - #if defined(_CPLUSPLUS_) - DynamicBoneColliderBase_Direction__Enum m_Direction; - #else - int32_t m_Direction; - #endif - struct Vector3 m_Center; - #if defined(_CPLUSPLUS_) - DynamicBoneColliderBase_Bound__Enum m_Bound; - #else - int32_t m_Bound; - #endif - int32_t _PrepareFrame_k__BackingField; -}; - -struct DynamicBoneColliderBase { - struct DynamicBoneColliderBase__Class *klass; - MonitorData *monitor; - struct DynamicBoneColliderBase__Fields fields; -}; - struct DynamicBoneColliderBase__Array { struct DynamicBoneColliderBase__Array__Class *klass; MonitorData *monitor; @@ -180244,19 +182847,6 @@ struct IEnumerator_1_DynamicBoneColliderBase_ { MonitorData *monitor; }; -struct __declspec(align(8)) List_1_DynamicBone_ParticleTree___Fields { - struct DynamicBone_ParticleTree__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_DynamicBone_ParticleTree_ { - struct List_1_DynamicBone_ParticleTree___Class *klass; - MonitorData *monitor; - struct List_1_DynamicBone_ParticleTree___Fields fields; -}; - struct __declspec(align(8)) DynamicBone_ParticleTree__Fields { struct Transform *m_Root; struct Vector3 m_LocalGravity; @@ -180272,17 +182862,17 @@ struct DynamicBone_ParticleTree { struct DynamicBone_ParticleTree__Fields fields; }; -struct __declspec(align(8)) List_1_DynamicBone_Particle___Fields { - struct DynamicBone_Particle__Array *_items; +struct __declspec(align(8)) List_1_DynamicBone_ParticleTree___Fields { + struct DynamicBone_ParticleTree__Array *_items; int32_t _size; int32_t _version; struct Object *_syncRoot; }; -struct List_1_DynamicBone_Particle_ { - struct List_1_DynamicBone_Particle___Class *klass; +struct List_1_DynamicBone_ParticleTree_ { + struct List_1_DynamicBone_ParticleTree___Class *klass; MonitorData *monitor; - struct List_1_DynamicBone_Particle___Fields fields; + struct List_1_DynamicBone_ParticleTree___Fields fields; }; struct __declspec(align(8)) DynamicBone_Particle__Fields { @@ -180314,6 +182904,19 @@ struct DynamicBone_Particle { struct DynamicBone_Particle__Fields fields; }; +struct __declspec(align(8)) List_1_DynamicBone_Particle___Fields { + struct DynamicBone_Particle__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_DynamicBone_Particle_ { + struct List_1_DynamicBone_Particle___Class *klass; + MonitorData *monitor; + struct List_1_DynamicBone_Particle___Fields fields; +}; + struct DynamicBone_Particle__Array { struct DynamicBone_Particle__Array__Class *klass; MonitorData *monitor; @@ -180376,25 +182979,6 @@ struct DynamicBone__Array { struct DynamicBone *vector[32]; }; -struct DynamicBoneCollider__Fields { - struct DynamicBoneColliderBase__Fields _; - float m_Radius; - float m_Height; - float m_Radius2; - float m_ScaledRadius; - float m_ScaledRadius2; - struct Vector3 m_C0; - struct Vector3 m_C1; - float m_C01Distance; - int32_t m_CollideType; -}; - -struct DynamicBoneCollider { - struct DynamicBoneCollider__Class *klass; - MonitorData *monitor; - struct DynamicBoneCollider__Fields fields; -}; - struct DynamicBoneCollider__Array { struct DynamicBoneCollider__Array__Class *klass; MonitorData *monitor; @@ -180444,6 +183028,18 @@ struct CharacterFootEffects_FootstepPlacementMode__Enum__Boxed { #endif }; +struct CharacterFootEffects_Foot { + struct Transform *m_Object; + int32_t m_Group; + bool m_FlippedFootprint; +}; + +struct CharacterFootEffects_Foot__Boxed { + struct CharacterFootEffects_Foot__Class *klass; + MonitorData *monitor; + struct CharacterFootEffects_Foot fields; +}; + struct CharacterFootEffects__Fields { struct StateBehavior__Fields _; struct SurfaceImpact *m_SurfaceImpact; @@ -180482,18 +183078,6 @@ struct CharacterFootEffects { struct CharacterFootEffects__Fields fields; }; -struct CharacterFootEffects_Foot { - struct Transform *m_Object; - int32_t m_Group; - bool m_FlippedFootprint; -}; - -struct CharacterFootEffects_Foot__Boxed { - struct CharacterFootEffects_Foot__Class *klass; - MonitorData *monitor; - struct CharacterFootEffects_Foot fields; -}; - struct CharacterFootEffects_Foot__Array { struct CharacterFootEffects_Foot__Array__Class *klass; MonitorData *monitor; @@ -180528,6 +183112,18 @@ struct IEnumerator_1_List_1_UnityEngine_Transform_ { MonitorData *monitor; }; +struct HashSet_1_T_Slot_UnityEngine_Transform_ { + int32_t hashCode; + int32_t next; + struct Transform *value; +}; + +struct HashSet_1_T_Slot_UnityEngine_Transform___Boxed { + struct HashSet_1_T_Slot_UnityEngine_Transform___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_UnityEngine_Transform_ fields; +}; + struct __declspec(align(8)) HashSet_1_UnityEngine_Transform___Fields { struct Int32__Array *_buckets; struct HashSet_1_T_Slot_UnityEngine_Transform___Array *_slots; @@ -180545,18 +183141,6 @@ struct HashSet_1_UnityEngine_Transform_ { struct HashSet_1_UnityEngine_Transform___Fields fields; }; -struct HashSet_1_T_Slot_UnityEngine_Transform_ { - int32_t hashCode; - int32_t next; - struct Transform *value; -}; - -struct HashSet_1_T_Slot_UnityEngine_Transform___Boxed { - struct HashSet_1_T_Slot_UnityEngine_Transform___Class *klass; - MonitorData *monitor; - struct HashSet_1_T_Slot_UnityEngine_Transform_ fields; -}; - struct HashSet_1_T_Slot_UnityEngine_Transform___Array { struct HashSet_1_T_Slot_UnityEngine_Transform___Array__Class *klass; MonitorData *monitor; @@ -180604,19 +183188,6 @@ struct RotateWithHead { struct RotateWithHead__Fields fields; }; -struct __declspec(align(8)) List_1_Opsive_UltimateCharacterController_Character_Abilities_Interact___Fields { - struct Interact__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Opsive_UltimateCharacterController_Character_Abilities_Interact_ { - struct List_1_Opsive_UltimateCharacterController_Character_Abilities_Interact___Class *klass; - MonitorData *monitor; - struct List_1_Opsive_UltimateCharacterController_Character_Abilities_Interact___Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class DetectObjectAbilityBase_ObjectDetectionMode__Enum : int32_t { Trigger = 0x00000001, @@ -180736,6 +183307,19 @@ struct Interact { struct Interact__Fields fields; }; +struct __declspec(align(8)) List_1_Opsive_UltimateCharacterController_Character_Abilities_Interact___Fields { + struct Interact__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Opsive_UltimateCharacterController_Character_Abilities_Interact_ { + struct List_1_Opsive_UltimateCharacterController_Character_Abilities_Interact___Class *klass; + MonitorData *monitor; + struct List_1_Opsive_UltimateCharacterController_Character_Abilities_Interact___Fields fields; +}; + struct Nullable_1_UnityEngine_RaycastHit_ { bool hasValue; struct RaycastHit value; @@ -180747,6 +183331,30 @@ struct Nullable_1_UnityEngine_RaycastHit___Boxed { struct Nullable_1_UnityEngine_RaycastHit_ fields; }; +struct IInteractableTarget { + struct IInteractableTarget__Class *klass; + MonitorData *monitor; +}; + +struct AbilityIKTarget__Fields { + struct MonoBehaviour__Fields _; + #if defined(_CPLUSPLUS_) + CharacterIKBase_IKGoal__Enum m_Goal; + #else + int32_t m_Goal; + #endif + float m_Delay; + float m_InterpolationDuration; + float m_Duration; + struct Transform *m_Transform; +}; + +struct AbilityIKTarget { + struct AbilityIKTarget__Class *klass; + MonitorData *monitor; + struct AbilityIKTarget__Fields fields; +}; + struct Interactable__Fields { struct MonoBehaviour__Fields _; int32_t m_ID; @@ -180770,11 +183378,6 @@ struct MonoBehaviour__Array { struct MonoBehaviour *vector[32]; }; -struct IInteractableTarget { - struct IInteractableTarget__Class *klass; - MonitorData *monitor; -}; - struct IInteractableTarget__Array { struct IInteractableTarget__Array__Class *klass; MonitorData *monitor; @@ -180783,25 +183386,6 @@ struct IInteractableTarget__Array { struct IInteractableTarget *vector[32]; }; -struct AbilityIKTarget__Fields { - struct MonoBehaviour__Fields _; - #if defined(_CPLUSPLUS_) - CharacterIKBase_IKGoal__Enum m_Goal; - #else - int32_t m_Goal; - #endif - float m_Delay; - float m_InterpolationDuration; - float m_Duration; - struct Transform *m_Transform; -}; - -struct AbilityIKTarget { - struct AbilityIKTarget__Class *klass; - MonitorData *monitor; - struct AbilityIKTarget__Fields fields; -}; - struct AbilityIKTarget__Array { struct AbilityIKTarget__Array__Class *klass; MonitorData *monitor; @@ -181062,6 +183646,24 @@ struct MollyRatScare { struct MollyRatScare__Fields fields; }; +struct __declspec(align(8)) SurvivalMollyAltarLightbulb__Fields { + bool isBroken; + struct GameObject *gameObject; + struct Transform *transform; + struct ParticleSystem *particles; + struct AudioSource *audioSource; + struct Light *light; + struct Renderer *lightbulbRenderer; + struct FlickerLightController *flickerLightController; + struct GameObject *brokenModel; +}; + +struct SurvivalMollyAltarLightbulb { + struct SurvivalMollyAltarLightbulb__Class *klass; + MonitorData *monitor; + struct SurvivalMollyAltarLightbulb__Fields fields; +}; + struct SurvivalMollyAltarController__Fields { struct SurvivalObjectBurnController__Fields _; struct MollyIntro *mollyIntro; @@ -181109,24 +183711,6 @@ struct SurvivalMollyAltarController { struct SurvivalMollyAltarController__Fields fields; }; -struct __declspec(align(8)) SurvivalMollyAltarLightbulb__Fields { - bool isBroken; - struct GameObject *gameObject; - struct Transform *transform; - struct ParticleSystem *particles; - struct AudioSource *audioSource; - struct Light *light; - struct Renderer *lightbulbRenderer; - struct FlickerLightController *flickerLightController; - struct GameObject *brokenModel; -}; - -struct SurvivalMollyAltarLightbulb { - struct SurvivalMollyAltarLightbulb__Class *klass; - MonitorData *monitor; - struct SurvivalMollyAltarLightbulb__Fields fields; -}; - struct SurvivalMollyAltarLightbulb__Array { struct SurvivalMollyAltarLightbulb__Array__Class *klass; MonitorData *monitor; @@ -181178,6 +183762,38 @@ struct InnIntro { struct InnIntro__Fields fields; }; +struct DynamicBoneWeather__Fields { + struct MonoBehaviour__Fields _; + struct DynamicBone__Array *m_Bones; + float m_normalDynamicBoneForce; + float m_rainDynamicBoneForce; + float m_heavierRainDynamicBoneForce; + float m_normalDynamicBoneOscillationRate; + float m_rainDynamicBoneOscillationRate; + float m_heavierRainDynamicBoneOscillationRate; + float m_upwardsForceDivider; + float m_sidewaysForceDivider; + struct Transform *m_customWindDirection; + float m_DynamicBoneForceMagnitude; + float m_DynamicBoneOscillationRate; + struct Survival *m_Survival; + struct SurvivalObjectBurnController *m_BurnController; + struct MapController *m_MapController; + float m_dynamicBoneUpwardsLerpT; + float m_dynamicBoneSidewaysLerpT; + bool m_dynamicBoneUpwardsLerpBackwards; + bool m_dynamicBoneSidewaysLerpBackwards; + bool m_indoors; + float m_indoorsLerpT; + float m_outdoorsLerpT; +}; + +struct DynamicBoneWeather { + struct DynamicBoneWeather__Class *klass; + MonitorData *monitor; + struct DynamicBoneWeather__Fields fields; +}; + struct SlaughterhouseIntro__Fields { struct EntityEventListener_1_IIntroState___Fields _; bool disableIntro; @@ -181226,6 +183842,46 @@ struct SlaughterhouseIntro { struct SlaughterhouseIntro__Fields fields; }; +struct SlaughterhouseTrap__Fields { + struct MonoBehaviour__Fields _; + struct Transform *mazeSpawnPoint; +}; + +struct SlaughterhouseTrap { + struct SlaughterhouseTrap__Class *klass; + MonitorData *monitor; + struct SlaughterhouseTrap__Fields fields; +}; + +struct SlaughterhouseTrap__Array { + struct SlaughterhouseTrap__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct SlaughterhouseTrap *vector[32]; +}; + +struct SlaughterhousePurgatory__Fields { + struct MonoBehaviour__Fields _; + struct Transform__Array *spawnPoints; + struct SlaughterhouseTrap__Array *maze1Traps; + struct SlaughterhouseTrap__Array *maze2Traps; + struct SlaughterhouseTrap__Array *maze3Traps; + struct SlaughterhouseTrap__Array *maze4Traps; + struct Transform *maze1CorpseSpawnPoints; + struct Transform *maze2CorpseSpawnPoints; + struct Transform *maze3CorpseSpawnPoints; + struct Transform *maze4CorpseSpawnPoints; + struct SlaughterhouseTrap__Array__Array *traps; + struct Transform__Array__Array *corpseSpawnPoints; +}; + +struct SlaughterhousePurgatory { + struct SlaughterhousePurgatory__Class *klass; + MonitorData *monitor; + struct SlaughterhousePurgatory__Fields fields; +}; + struct SlaughterhouseAltarController__Fields { struct SurvivalObjectBurnController__Fields _; struct SlaughterhouseIntro *intro; @@ -181305,46 +183961,6 @@ struct SlaughterhouseAltarController { struct SlaughterhouseAltarController__Fields fields; }; -struct SlaughterhousePurgatory__Fields { - struct MonoBehaviour__Fields _; - struct Transform__Array *spawnPoints; - struct SlaughterhouseTrap__Array *maze1Traps; - struct SlaughterhouseTrap__Array *maze2Traps; - struct SlaughterhouseTrap__Array *maze3Traps; - struct SlaughterhouseTrap__Array *maze4Traps; - struct Transform *maze1CorpseSpawnPoints; - struct Transform *maze2CorpseSpawnPoints; - struct Transform *maze3CorpseSpawnPoints; - struct Transform *maze4CorpseSpawnPoints; - struct SlaughterhouseTrap__Array__Array *traps; - struct Transform__Array__Array *corpseSpawnPoints; -}; - -struct SlaughterhousePurgatory { - struct SlaughterhousePurgatory__Class *klass; - MonitorData *monitor; - struct SlaughterhousePurgatory__Fields fields; -}; - -struct SlaughterhouseTrap__Fields { - struct MonoBehaviour__Fields _; - struct Transform *mazeSpawnPoint; -}; - -struct SlaughterhouseTrap { - struct SlaughterhouseTrap__Class *klass; - MonitorData *monitor; - struct SlaughterhouseTrap__Fields fields; -}; - -struct SlaughterhouseTrap__Array { - struct SlaughterhouseTrap__Array__Class *klass; - MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - struct SlaughterhouseTrap *vector[32]; -}; - struct SlaughterhouseTrap__Array__Array { struct SlaughterhouseTrap__Array__Array__Class *klass; MonitorData *monitor; @@ -181401,6 +184017,19 @@ struct SlaughterhouseCrankInteractable { struct SlaughterhouseCrankInteractable__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_ParticleSystem_System_Single_ { + int32_t hashCode; + int32_t next; + struct ParticleSystem *key; + float value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_ParticleSystem_System_Single___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_ParticleSystem_System_Single___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_ParticleSystem_System_Single_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_ParticleSystem_System_Single___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_ParticleSystem_System_Single___Array *_entries; @@ -181420,19 +184049,6 @@ struct Dictionary_2_UnityEngine_ParticleSystem_System_Single_ { struct Dictionary_2_UnityEngine_ParticleSystem_System_Single___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_ParticleSystem_System_Single_ { - int32_t hashCode; - int32_t next; - struct ParticleSystem *key; - float value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_ParticleSystem_System_Single___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_ParticleSystem_System_Single___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_ParticleSystem_System_Single_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_ParticleSystem_System_Single___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_ParticleSystem_System_Single___Array__Class *klass; MonitorData *monitor; @@ -181500,19 +184116,6 @@ struct IEnumerable_1_UnityEngine_ParticleSystem_ { MonitorData *monitor; }; -struct __declspec(align(8)) List_1_AnimalGateSpawnPoint___Fields { - struct AnimalGateSpawnPoint__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_AnimalGateSpawnPoint_ { - struct List_1_AnimalGateSpawnPoint___Class *klass; - MonitorData *monitor; - struct List_1_AnimalGateSpawnPoint___Fields fields; -}; - struct AnimalGateSpawnPoint__Fields { struct MonoBehaviour__Fields _; struct GameObject__Array *objectsToDisable; @@ -181527,6 +184130,19 @@ struct AnimalGateSpawnPoint { struct AnimalGateSpawnPoint__Fields fields; }; +struct __declspec(align(8)) List_1_AnimalGateSpawnPoint___Fields { + struct AnimalGateSpawnPoint__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_AnimalGateSpawnPoint_ { + struct List_1_AnimalGateSpawnPoint___Class *klass; + MonitorData *monitor; + struct List_1_AnimalGateSpawnPoint___Fields fields; +}; + struct AnimalGateSpawnPoint__Array { struct AnimalGateSpawnPoint__Array__Class *klass; MonitorData *monitor; @@ -181563,6 +184179,26 @@ struct FreezerRoomController_FreezeRoomType__Enum__Boxed { #endif }; +struct FreezerRoomLightController__Fields { + struct MonoBehaviour__Fields _; + struct Material *activeMat; + struct Material *inactiveMat; + struct Material *offMat; + struct AudioSource *audioSource; + struct AudioClip *activeClip; + struct AudioClip *inactiveClip; + struct MeshRenderer__Array *meshRenderers; + bool isActive; + float activeTime; + bool activeLightState; +}; + +struct FreezerRoomLightController { + struct FreezerRoomLightController__Class *klass; + MonitorData *monitor; + struct FreezerRoomLightController__Fields fields; +}; + struct FreezerRoomController__Fields { struct EntityEventListener_1_ISwitchState___Fields _; #if defined(_CPLUSPLUS_) @@ -181617,26 +184253,6 @@ struct FreezerRoomController__Array { struct FreezerRoomController *vector[32]; }; -struct FreezerRoomLightController__Fields { - struct MonoBehaviour__Fields _; - struct Material *activeMat; - struct Material *inactiveMat; - struct Material *offMat; - struct AudioSource *audioSource; - struct AudioClip *activeClip; - struct AudioClip *inactiveClip; - struct MeshRenderer__Array *meshRenderers; - bool isActive; - float activeTime; - bool activeLightState; -}; - -struct FreezerRoomLightController { - struct FreezerRoomLightController__Class *klass; - MonitorData *monitor; - struct FreezerRoomLightController__Fields fields; -}; - struct FreezerRoomLightController__Array { struct FreezerRoomLightController__Array__Class *klass; MonitorData *monitor; @@ -181645,6 +184261,19 @@ struct FreezerRoomLightController__Array { struct FreezerRoomLightController *vector[32]; }; +struct Dictionary_2_TKey_TValue_Entry_Horror_DoorBehaviour_System_Boolean_ { + int32_t hashCode; + int32_t next; + struct DoorBehaviour *key; + bool value; +}; + +struct Dictionary_2_TKey_TValue_Entry_Horror_DoorBehaviour_System_Boolean___Boxed { + struct Dictionary_2_TKey_TValue_Entry_Horror_DoorBehaviour_System_Boolean___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_Horror_DoorBehaviour_System_Boolean_ fields; +}; + struct __declspec(align(8)) Dictionary_2_Horror_DoorBehaviour_System_Boolean___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_Horror_DoorBehaviour_System_Boolean___Array *_entries; @@ -181664,19 +184293,6 @@ struct Dictionary_2_Horror_DoorBehaviour_System_Boolean_ { struct Dictionary_2_Horror_DoorBehaviour_System_Boolean___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_Horror_DoorBehaviour_System_Boolean_ { - int32_t hashCode; - int32_t next; - struct DoorBehaviour *key; - bool value; -}; - -struct Dictionary_2_TKey_TValue_Entry_Horror_DoorBehaviour_System_Boolean___Boxed { - struct Dictionary_2_TKey_TValue_Entry_Horror_DoorBehaviour_System_Boolean___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_Horror_DoorBehaviour_System_Boolean_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_Horror_DoorBehaviour_System_Boolean___Array { struct Dictionary_2_TKey_TValue_Entry_Horror_DoorBehaviour_System_Boolean___Array__Class *klass; MonitorData *monitor; @@ -181749,6 +184365,26 @@ struct IEnumerable_1_Horror_DoorBehaviour_ { MonitorData *monitor; }; +struct __declspec(align(8)) AmbientRandomAudio_RandomAudio__Fields { + struct Transform *transform; + struct AudioClip__Array *audioClips; + float volume; + int32_t minProgress; + int32_t maxProgress; + bool onlyPlayOnce; + bool is2d; + bool enforce2dPanAndVolume; + bool useCustomMaxDistance; + float customMaxDistance; + bool hasPlayed; +}; + +struct AmbientRandomAudio_RandomAudio { + struct AmbientRandomAudio_RandomAudio__Class *klass; + MonitorData *monitor; + struct AmbientRandomAudio_RandomAudio__Fields fields; +}; + struct AmbientRandomAudio__Fields { struct MonoBehaviour__Fields _; struct AudioSource *randomAudioSource; @@ -181781,26 +184417,6 @@ struct AmbientRandomAudio { struct AmbientRandomAudio__Fields fields; }; -struct __declspec(align(8)) AmbientRandomAudio_RandomAudio__Fields { - struct Transform *transform; - struct AudioClip__Array *audioClips; - float volume; - int32_t minProgress; - int32_t maxProgress; - bool onlyPlayOnce; - bool is2d; - bool enforce2dPanAndVolume; - bool useCustomMaxDistance; - float customMaxDistance; - bool hasPlayed; -}; - -struct AmbientRandomAudio_RandomAudio { - struct AmbientRandomAudio_RandomAudio__Class *klass; - MonitorData *monitor; - struct AmbientRandomAudio_RandomAudio__Fields fields; -}; - struct AmbientRandomAudio_RandomAudio__Array { struct AmbientRandomAudio_RandomAudio__Array__Class *klass; MonitorData *monitor; @@ -182135,25 +184751,6 @@ struct AnnaDoorInteractable { struct AnnaDoorInteractable__Fields fields; }; -struct RagdollLoader__Fields { - struct MonoBehaviour__Fields _; - struct GameObject__Array *ragdollPrefabs; - struct RuntimeAnimatorController *knockoutRagdollController; - struct KnockoutRagdoll__Array *knockoutRagdolls; - struct List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ *ragdollHandles; - struct List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__1 *robeHandles; - struct RagdollLoader_OnRagdollsLoadedHandler *OnRagdollsLoaded; - struct RagdollLoader_OnRagdollLoadedHandler *OnRagdollLoaded; - bool hasLoadedRagdolls; - bool isReconnectCreatingRagdoll; -}; - -struct RagdollLoader { - struct RagdollLoader__Class *klass; - MonitorData *monitor; - struct RagdollLoader__Fields fields; -}; - struct KnockoutRagdoll__Fields { struct MonoBehaviour__Fields _; struct Transform *neckIKTarget; @@ -182186,6 +184783,25 @@ struct KnockoutRagdoll { struct KnockoutRagdoll__Fields fields; }; +struct RagdollLoader__Fields { + struct MonoBehaviour__Fields _; + struct GameObject__Array *ragdollPrefabs; + struct RuntimeAnimatorController *knockoutRagdollController; + struct KnockoutRagdoll__Array *knockoutRagdolls; + struct List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ *ragdollHandles; + struct List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__1 *robeHandles; + struct RagdollLoader_OnRagdollsLoadedHandler *OnRagdollsLoaded; + struct RagdollLoader_OnRagdollLoadedHandler *OnRagdollLoaded; + bool hasLoadedRagdolls; + bool isReconnectCreatingRagdoll; +}; + +struct RagdollLoader { + struct RagdollLoader__Class *klass; + MonitorData *monitor; + struct RagdollLoader__Fields fields; +}; + #if defined(_CPLUSPLUS_) enum class DepthTextureMode__Enum : int32_t { None = 0x00000000, @@ -182340,6 +184956,17 @@ struct Dithering { struct Dithering__Fields fields; }; +struct __declspec(align(8)) PostProcessLayer_SerializedBundleRef__Fields { + struct String *assemblyQualifiedName; + struct PostProcessBundle *bundle; +}; + +struct PostProcessLayer_SerializedBundleRef { + struct PostProcessLayer_SerializedBundleRef__Class *klass; + MonitorData *monitor; + struct PostProcessLayer_SerializedBundleRef__Fields fields; +}; + struct __declspec(align(8)) List_1_UnityEngine_Rendering_PostProcessing_PostProcessLayer_SerializedBundleRef___Fields { struct PostProcessLayer_SerializedBundleRef__Array *_items; int32_t _size; @@ -182353,17 +184980,6 @@ struct List_1_UnityEngine_Rendering_PostProcessing_PostProcessLayer_SerializedBu struct List_1_UnityEngine_Rendering_PostProcessing_PostProcessLayer_SerializedBundleRef___Fields fields; }; -struct __declspec(align(8)) PostProcessLayer_SerializedBundleRef__Fields { - struct String *assemblyQualifiedName; - struct PostProcessBundle *bundle; -}; - -struct PostProcessLayer_SerializedBundleRef { - struct PostProcessLayer_SerializedBundleRef__Class *klass; - MonitorData *monitor; - struct PostProcessLayer_SerializedBundleRef__Fields fields; -}; - struct __declspec(align(8)) PostProcessBundle__Fields { struct PostProcessAttribute *_attribute_k__BackingField; struct PostProcessEffectSettings *_settings_k__BackingField; @@ -182440,6 +185056,11 @@ struct PostProcessEffectRenderer_1_AmbientOcclusion_ { struct PostProcessEffectRenderer_1_AmbientOcclusion___Fields fields; }; +struct IAmbientOcclusionMethod { + struct IAmbientOcclusionMethod__Class *klass; + MonitorData *monitor; +}; + struct AmbientOcclusionRenderer__Fields { struct PostProcessEffectRenderer_1_AmbientOcclusion___Fields _; struct IAmbientOcclusionMethod__Array *m_Methods; @@ -182537,11 +185158,6 @@ struct AmbientOcclusionQualityParameter { struct AmbientOcclusionQualityParameter__Fields fields; }; -struct IAmbientOcclusionMethod { - struct IAmbientOcclusionMethod__Class *klass; - MonitorData *monitor; -}; - struct IAmbientOcclusionMethod__Array { struct IAmbientOcclusionMethod__Array__Class *klass; MonitorData *monitor; @@ -182563,6 +185179,23 @@ struct IEnumerator_1_UnityEngine_Rendering_PostProcessing_PostProcessLayer_Seria MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Rendering_PostProcessing_PostProcessEvent_List_1_UnityEngine_Rendering_PostProcessing_PostProcessLayer_SerializedBundleRef_ { + int32_t hashCode; + int32_t next; + #if defined(_CPLUSPLUS_) + PostProcessEvent__Enum key; + #else + int32_t key; + #endif + struct List_1_UnityEngine_Rendering_PostProcessing_PostProcessLayer_SerializedBundleRef_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Rendering_PostProcessing_PostProcessEvent_List_1_UnityEngine_Rendering_PostProcessing_PostProcessLayer_SerializedBundleRef___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Rendering_PostProcessing_PostProcessEvent_List_1_UnityEngine_Rendering_PostProcessing_PostProcessLayer_SerializedBundleRef___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Rendering_PostProcessing_PostProcessEvent_List_1_UnityEngine_Rendering_PostProcessing_PostProcessLayer_SerializedBundleRef_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_Rendering_PostProcessing_PostProcessEvent_List_1_UnityEngine_Rendering_PostProcessing_PostProcessLayer_SerializedBundleRef___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Rendering_PostProcessing_PostProcessEvent_List_1_UnityEngine_Rendering_PostProcessing_PostProcessLayer_SerializedBundleRef___Array *_entries; @@ -182582,23 +185215,6 @@ struct Dictionary_2_UnityEngine_Rendering_PostProcessing_PostProcessEvent_List_1 struct Dictionary_2_UnityEngine_Rendering_PostProcessing_PostProcessEvent_List_1_UnityEngine_Rendering_PostProcessing_PostProcessLayer_SerializedBundleRef___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Rendering_PostProcessing_PostProcessEvent_List_1_UnityEngine_Rendering_PostProcessing_PostProcessLayer_SerializedBundleRef_ { - int32_t hashCode; - int32_t next; - #if defined(_CPLUSPLUS_) - PostProcessEvent__Enum key; - #else - int32_t key; - #endif - struct List_1_UnityEngine_Rendering_PostProcessing_PostProcessLayer_SerializedBundleRef_ *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Rendering_PostProcessing_PostProcessEvent_List_1_UnityEngine_Rendering_PostProcessing_PostProcessLayer_SerializedBundleRef___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Rendering_PostProcessing_PostProcessEvent_List_1_UnityEngine_Rendering_PostProcessing_PostProcessLayer_SerializedBundleRef___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Rendering_PostProcessing_PostProcessEvent_List_1_UnityEngine_Rendering_PostProcessing_PostProcessLayer_SerializedBundleRef_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Rendering_PostProcessing_PostProcessEvent_List_1_UnityEngine_Rendering_PostProcessing_PostProcessLayer_SerializedBundleRef___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Rendering_PostProcessing_PostProcessEvent_List_1_UnityEngine_Rendering_PostProcessing_PostProcessLayer_SerializedBundleRef___Array__Class *klass; MonitorData *monitor; @@ -182706,6 +185322,19 @@ struct IEnumerable_1_List_1_UnityEngine_Rendering_PostProcessing_PostProcessLaye MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Rendering_PostProcessing_PostProcessBundle_ { + int32_t hashCode; + int32_t next; + struct Type *key; + struct PostProcessBundle *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Rendering_PostProcessing_PostProcessBundle___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Rendering_PostProcessing_PostProcessBundle___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Rendering_PostProcessing_PostProcessBundle_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Type_UnityEngine_Rendering_PostProcessing_PostProcessBundle___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Rendering_PostProcessing_PostProcessBundle___Array *_entries; @@ -182725,19 +185354,6 @@ struct Dictionary_2_System_Type_UnityEngine_Rendering_PostProcessing_PostProcess struct Dictionary_2_System_Type_UnityEngine_Rendering_PostProcessing_PostProcessBundle___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Rendering_PostProcessing_PostProcessBundle_ { - int32_t hashCode; - int32_t next; - struct Type *key; - struct PostProcessBundle *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Rendering_PostProcessing_PostProcessBundle___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Rendering_PostProcessing_PostProcessBundle___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Rendering_PostProcessing_PostProcessBundle_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Rendering_PostProcessing_PostProcessBundle___Array { struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Rendering_PostProcessing_PostProcessBundle___Array__Class *klass; MonitorData *monitor; @@ -183011,38 +185627,6 @@ struct LocalLookSource { struct LocalLookSource__Fields fields; }; -struct DynamicBoneWeather__Fields { - struct MonoBehaviour__Fields _; - struct DynamicBone__Array *m_Bones; - float m_normalDynamicBoneForce; - float m_rainDynamicBoneForce; - float m_heavierRainDynamicBoneForce; - float m_normalDynamicBoneOscillationRate; - float m_rainDynamicBoneOscillationRate; - float m_heavierRainDynamicBoneOscillationRate; - float m_upwardsForceDivider; - float m_sidewaysForceDivider; - struct Transform *m_customWindDirection; - float m_DynamicBoneForceMagnitude; - float m_DynamicBoneOscillationRate; - struct Survival *m_Survival; - struct SurvivalObjectBurnController *m_BurnController; - struct MapController *m_MapController; - float m_dynamicBoneUpwardsLerpT; - float m_dynamicBoneSidewaysLerpT; - bool m_dynamicBoneUpwardsLerpBackwards; - bool m_dynamicBoneSidewaysLerpBackwards; - bool m_indoors; - float m_indoorsLerpT; - float m_outdoorsLerpT; -}; - -struct DynamicBoneWeather { - struct DynamicBoneWeather__Class *klass; - MonitorData *monitor; - struct DynamicBoneWeather__Fields fields; -}; - struct DynamicBoneWeather__Array { struct DynamicBoneWeather__Array__Class *klass; MonitorData *monitor; @@ -183094,56 +185678,6 @@ struct MainSceneToken { struct MainSceneToken__Fields fields; }; -struct JumpScare__Fields { - struct MonoBehaviour__Fields _; - #if defined(_CPLUSPLUS_) - Survival_AI__Enum ai; - #else - int32_t ai; - #endif - struct PlayableDirector *director; - struct GameUI *gameUI; - struct AudioMixer *audioMixer; - struct GameObject *horns; - struct SurvivalObjectBurnController *burnController; - struct MapController *mapController; - struct Material *normalEyesMat; - struct Material *enragedEyesMat; - struct Survival *m_Survival; - struct SkinnedMeshRenderer__Array *eyeRenderers; - struct AudioClip__Array *m_JumpScareClips; - struct PlayRandomAudioClip *m_JumpScareBGMRandomClips; - struct AudioSource *m_JumpScareVoiceAudioSource; - struct PostProcessVolume *postProcessVolume; - struct ColorGrading *colorGrading; - bool hideCameraOnEnable; - int32_t delayShowCameraFrames; - struct Animator *aiAnimator; - struct GameObject *m_HairWindZone; - struct CharacterIK *m_aiCharacterIK; - bool isHidingSpotJumpScare; - struct GameObject *m_ArachnophobiaModeSpider; - struct GameObject *m_DefaultSpider; - struct SkinnedMeshRenderer *zaraBodyRenderer; - struct GameObject *zaraArachnophobiaBody; - struct Material *zaraArachnophobiaBodyMat; - struct Material *zaraBodyMat; - struct GameObject *vrCamera; - struct CameraShake *cameraShake; - struct GameObject *player; - float originalSFXVolume; - float originalMusicVolume; - struct Vector3 aiOriginalPos; - struct Quaternion aiOriginalRot; - bool audioMuted; -}; - -struct JumpScare { - struct JumpScare__Class *klass; - MonitorData *monitor; - struct JumpScare__Fields fields; -}; - struct CameraShake__Fields { struct MonoBehaviour__Fields _; struct Transform *camTransform; @@ -183208,6 +185742,19 @@ struct CrowPerchManager { struct CrowPerchManager__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_UnityEngine_GameObject_ { + int32_t hashCode; + int32_t next; + struct GameObject *key; + struct GameObject *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_UnityEngine_GameObject___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_UnityEngine_GameObject___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_UnityEngine_GameObject_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_GameObject_UnityEngine_GameObject___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_UnityEngine_GameObject___Array *_entries; @@ -183227,19 +185774,6 @@ struct Dictionary_2_UnityEngine_GameObject_UnityEngine_GameObject_ { struct Dictionary_2_UnityEngine_GameObject_UnityEngine_GameObject___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_UnityEngine_GameObject_ { - int32_t hashCode; - int32_t next; - struct GameObject *key; - struct GameObject *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_UnityEngine_GameObject___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_UnityEngine_GameObject___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_UnityEngine_GameObject_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_UnityEngine_GameObject___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_UnityEngine_GameObject___Array__Class *klass; MonitorData *monitor; @@ -183292,19 +185826,6 @@ struct IEnumerator_1_KeyValuePair_2_UnityEngine_GameObject_UnityEngine_GameObjec MonitorData *monitor; }; -struct Vent__Fields { - struct MonoBehaviour__Fields _; - struct GameObject *m_playerVentStateTrigger; - struct GameObject *m_playerVentVoiceReverbTrigger; - struct GameObject *m_enemyVentStateTrigger; -}; - -struct Vent { - struct Vent__Class *klass; - MonitorData *monitor; - struct Vent__Fields fields; -}; - struct Vent__Array { struct Vent__Array__Class *klass; MonitorData *monitor; @@ -183394,102 +185915,6 @@ struct IEnumerator_1_HidingSpotController_ { MonitorData *monitor; }; -#if defined(_CPLUSPLUS_) -enum class AudioReverbPreset__Enum : int32_t { - Off = 0x00000000, - Generic = 0x00000001, - PaddedCell = 0x00000002, - Room = 0x00000003, - Bathroom = 0x00000004, - Livingroom = 0x00000005, - Stoneroom = 0x00000006, - Auditorium = 0x00000007, - Concerthall = 0x00000008, - Cave = 0x00000009, - Arena = 0x0000000a, - Hangar = 0x0000000b, - CarpetedHallway = 0x0000000c, - Hallway = 0x0000000d, - StoneCorridor = 0x0000000e, - Alley = 0x0000000f, - Forest = 0x00000010, - City = 0x00000011, - Mountains = 0x00000012, - Quarry = 0x00000013, - Plain = 0x00000014, - ParkingLot = 0x00000015, - SewerPipe = 0x00000016, - Underwater = 0x00000017, - Drugged = 0x00000018, - Dizzy = 0x00000019, - Psychotic = 0x0000001a, - User = 0x0000001b, -}; - -#else -enum AudioReverbPreset__Enum { - AudioReverbPreset__Enum_Off = 0x00000000, - AudioReverbPreset__Enum_Generic = 0x00000001, - AudioReverbPreset__Enum_PaddedCell = 0x00000002, - AudioReverbPreset__Enum_Room = 0x00000003, - AudioReverbPreset__Enum_Bathroom = 0x00000004, - AudioReverbPreset__Enum_Livingroom = 0x00000005, - AudioReverbPreset__Enum_Stoneroom = 0x00000006, - AudioReverbPreset__Enum_Auditorium = 0x00000007, - AudioReverbPreset__Enum_Concerthall = 0x00000008, - AudioReverbPreset__Enum_Cave = 0x00000009, - AudioReverbPreset__Enum_Arena = 0x0000000a, - AudioReverbPreset__Enum_Hangar = 0x0000000b, - AudioReverbPreset__Enum_CarpetedHallway = 0x0000000c, - AudioReverbPreset__Enum_Hallway = 0x0000000d, - AudioReverbPreset__Enum_StoneCorridor = 0x0000000e, - AudioReverbPreset__Enum_Alley = 0x0000000f, - AudioReverbPreset__Enum_Forest = 0x00000010, - AudioReverbPreset__Enum_City = 0x00000011, - AudioReverbPreset__Enum_Mountains = 0x00000012, - AudioReverbPreset__Enum_Quarry = 0x00000013, - AudioReverbPreset__Enum_Plain = 0x00000014, - AudioReverbPreset__Enum_ParkingLot = 0x00000015, - AudioReverbPreset__Enum_SewerPipe = 0x00000016, - AudioReverbPreset__Enum_Underwater = 0x00000017, - AudioReverbPreset__Enum_Drugged = 0x00000018, - AudioReverbPreset__Enum_Dizzy = 0x00000019, - AudioReverbPreset__Enum_Psychotic = 0x0000001a, - AudioReverbPreset__Enum_User = 0x0000001b, -}; - -#endif -struct AudioReverbPreset__Enum__Boxed { - struct AudioReverbPreset__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - AudioReverbPreset__Enum value; - #else - int32_t value; - #endif -}; - -struct VoiceReverbTrigger__Fields { - struct MonoBehaviour__Fields _; - #if defined(_CPLUSPLUS_) - AudioReverbPreset__Enum reverbPreset; - #else - int32_t reverbPreset; - #endif - float overrideAudioSourceVolume; - struct VoiceReverbTrigger_ReverbPreset *offPreset; - struct VoiceReverbTrigger_ReverbPreset *desiredPreset; - struct GameUI *gameUI; - struct Coroutine *fadeCo; - struct Dictionary_2_Photon_Bolt_BoltEntity_System_Int32_ *m_TriggerCounts; -}; - -struct VoiceReverbTrigger { - struct VoiceReverbTrigger__Class *klass; - MonitorData *monitor; - struct VoiceReverbTrigger__Fields fields; -}; - struct __declspec(align(8)) VoiceReverbTrigger_ReverbPreset__Fields { float hfReference; float density; @@ -183513,6 +185938,19 @@ struct VoiceReverbTrigger_ReverbPreset { struct VoiceReverbTrigger_ReverbPreset__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_BoltEntity_System_Int32_ { + int32_t hashCode; + int32_t next; + struct BoltEntity *key; + int32_t value; +}; + +struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_BoltEntity_System_Int32___Boxed { + struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_BoltEntity_System_Int32___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_BoltEntity_System_Int32_ fields; +}; + struct __declspec(align(8)) Dictionary_2_Photon_Bolt_BoltEntity_System_Int32___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_BoltEntity_System_Int32___Array *_entries; @@ -183532,19 +185970,6 @@ struct Dictionary_2_Photon_Bolt_BoltEntity_System_Int32_ { struct Dictionary_2_Photon_Bolt_BoltEntity_System_Int32___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_BoltEntity_System_Int32_ { - int32_t hashCode; - int32_t next; - struct BoltEntity *key; - int32_t value; -}; - -struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_BoltEntity_System_Int32___Boxed { - struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_BoltEntity_System_Int32___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_BoltEntity_System_Int32_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_BoltEntity_System_Int32___Array { struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_BoltEntity_System_Int32___Array__Class *klass; MonitorData *monitor; @@ -186805,6 +189230,21 @@ struct ICollection_1_Rewired_Integration_UnityUI_PlayerPointerEventData___Class struct ICollection_1_Rewired_Integration_UnityUI_PlayerPointerEventData___VTable vtable; }; +struct PlayerPointerEventData___VTable { +}; + +struct PlayerPointerEventData___StaticFields { +}; + +struct PlayerPointerEventData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PlayerPointerEventData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PlayerPointerEventData___VTable vtable; +}; + struct KeyValuePair_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -187098,6 +189538,21 @@ struct ICollection_1_Dictionary_2_System_Int32_Rewired_Integration_UnityUI_Playe struct ICollection_1_Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData___VTable vtable; }; +struct Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData__1__VTable { +}; + +struct Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData__1__StaticFields { +}; + +struct Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData__1__VTable vtable; +}; + struct KeyValuePair_2_System_Int32_Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -188498,6 +190953,21 @@ struct ICollection_1_Rewired_Data_ConfigVars_azUEuvNbipTVExojWRFquaZJFmGY___Clas struct ICollection_1_Rewired_Data_ConfigVars_azUEuvNbipTVExojWRFquaZJFmGY___VTable vtable; }; +struct ConfigVars_azUEuvNbipTVExojWRFquaZJFmGY___VTable { +}; + +struct ConfigVars_azUEuvNbipTVExojWRFquaZJFmGY___StaticFields { +}; + +struct ConfigVars_azUEuvNbipTVExojWRFquaZJFmGY___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ConfigVars_azUEuvNbipTVExojWRFquaZJFmGY___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ConfigVars_azUEuvNbipTVExojWRFquaZJFmGY___VTable vtable; +}; + struct KeyValuePair_2_System_Int32_Rewired_Data_ConfigVars_azUEuvNbipTVExojWRFquaZJFmGY___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -188891,6 +191361,21 @@ struct ICollection_1_Rewired_Data_ConfigVars_hqPFCXOAONldUTOJGhDJeyDIdhxHb___Cla struct ICollection_1_Rewired_Data_ConfigVars_hqPFCXOAONldUTOJGhDJeyDIdhxHb___VTable vtable; }; +struct ConfigVars_hqPFCXOAONldUTOJGhDJeyDIdhxHb___VTable { +}; + +struct ConfigVars_hqPFCXOAONldUTOJGhDJeyDIdhxHb___StaticFields { +}; + +struct ConfigVars_hqPFCXOAONldUTOJGhDJeyDIdhxHb___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ConfigVars_hqPFCXOAONldUTOJGhDJeyDIdhxHb___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ConfigVars_hqPFCXOAONldUTOJGhDJeyDIdhxHb___VTable vtable; +}; + struct KeyValuePair_2_System_Int32_Rewired_Data_ConfigVars_hqPFCXOAONldUTOJGhDJeyDIdhxHb___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -190744,6 +193229,21 @@ struct ControllerType__Enum__Class { struct ControllerType__Enum__VTable vtable; }; +struct ActionElementMap___VTable { +}; + +struct ActionElementMap___StaticFields { +}; + +struct ActionElementMap___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ActionElementMap___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ActionElementMap___VTable vtable; +}; + struct Predicate_1_Rewired_ActionElementMap___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -191308,6 +193808,21 @@ struct ICollection_1_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXju struct ICollection_1_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___VTable vtable; }; +struct SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___VTable { +}; + +struct SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___StaticFields { +}; + +struct SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___VTable vtable; +}; + struct KeyValuePair_2_System_String_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -191698,6 +194213,21 @@ struct ICollection_1_System_Reflection_FieldInfo__1__Class { struct ICollection_1_System_Reflection_FieldInfo__1__VTable vtable; }; +struct FieldInfo__1__VTable { +}; + +struct FieldInfo__1__StaticFields { +}; + +struct FieldInfo__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct FieldInfo__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct FieldInfo__1__VTable vtable; +}; + struct KeyValuePair_2_System_String_System_Reflection_FieldInfo___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -191976,6 +194506,21 @@ struct ICollection_1_Dictionary_2_System_String_System_Reflection_FieldInfo___Cl struct ICollection_1_Dictionary_2_System_String_System_Reflection_FieldInfo___VTable vtable; }; +struct Dictionary_2_System_String_System_Reflection_FieldInfo__1__VTable { +}; + +struct Dictionary_2_System_String_System_Reflection_FieldInfo__1__StaticFields { +}; + +struct Dictionary_2_System_String_System_Reflection_FieldInfo__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_System_String_System_Reflection_FieldInfo__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_System_String_System_Reflection_FieldInfo__1__VTable vtable; +}; + struct KeyValuePair_2_System_Type_Dictionary_2_System_String_System_Reflection_FieldInfo___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -192239,6 +194784,21 @@ struct ICollection_1_System_Reflection_PropertyInfo__1__Class { struct ICollection_1_System_Reflection_PropertyInfo__1__VTable vtable; }; +struct PropertyInfo__1__VTable { +}; + +struct PropertyInfo__1__StaticFields { +}; + +struct PropertyInfo__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PropertyInfo__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PropertyInfo__1__VTable vtable; +}; + struct KeyValuePair_2_System_String_System_Reflection_PropertyInfo___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -192517,6 +195077,21 @@ struct ICollection_1_Dictionary_2_System_String_System_Reflection_PropertyInfo__ struct ICollection_1_Dictionary_2_System_String_System_Reflection_PropertyInfo___VTable vtable; }; +struct Dictionary_2_System_String_System_Reflection_PropertyInfo__1__VTable { +}; + +struct Dictionary_2_System_String_System_Reflection_PropertyInfo__1__StaticFields { +}; + +struct Dictionary_2_System_String_System_Reflection_PropertyInfo__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_System_String_System_Reflection_PropertyInfo__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_System_String_System_Reflection_PropertyInfo__1__VTable vtable; +}; + struct KeyValuePair_2_System_Type_Dictionary_2_System_String_System_Reflection_PropertyInfo___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -195045,6 +197620,21 @@ struct InputPlatform__Enum__Class { struct InputPlatform__Enum__VTable vtable; }; +struct AxisRange___VTable { +}; + +struct AxisRange___StaticFields { +}; + +struct AxisRange___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct AxisRange___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct AxisRange___VTable vtable; +}; + struct TypeWrapper_DataType__Enum__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -196240,6 +198830,21 @@ struct BridgedControllerHWInfo__Class { struct BridgedControllerHWInfo__VTable vtable; }; +struct HardwareJoystickMap_Platform___VTable { +}; + +struct HardwareJoystickMap_Platform___StaticFields { +}; + +struct HardwareJoystickMap_Platform___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HardwareJoystickMap_Platform___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HardwareJoystickMap_Platform___VTable vtable; +}; + struct IList_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform___VTable { VirtualInvokeData get_Item; VirtualInvokeData set_Item; @@ -196413,6 +199018,21 @@ struct ICollection_1_Rewired_Data_Mapping_AxisCalibrationInfo___Class { struct ICollection_1_Rewired_Data_Mapping_AxisCalibrationInfo___VTable vtable; }; +struct AxisCalibrationInfo___VTable { +}; + +struct AxisCalibrationInfo___StaticFields { +}; + +struct AxisCalibrationInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct AxisCalibrationInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct AxisCalibrationInfo___VTable vtable; +}; + struct KeyValuePair_2_System_Int32_Rewired_Data_Mapping_AxisCalibrationInfo___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -196587,6 +199207,21 @@ struct AxisRange__Enum__Array__Class { struct AxisRange__Enum__Array__VTable vtable; }; +struct AxisRange__1__VTable { +}; + +struct AxisRange__1__StaticFields { +}; + +struct AxisRange__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct AxisRange__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct AxisRange__1__VTable vtable; +}; + struct HardwareAxisInfo__Array__VTable { }; @@ -196602,6 +199237,21 @@ struct HardwareAxisInfo__Array__Class { struct HardwareAxisInfo__Array__VTable vtable; }; +struct HardwareAxisInfo___VTable { +}; + +struct HardwareAxisInfo___StaticFields { +}; + +struct HardwareAxisInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HardwareAxisInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HardwareAxisInfo___VTable vtable; +}; + struct HardwareButtonInfo__Array__VTable { }; @@ -196617,6 +199267,21 @@ struct HardwareButtonInfo__Array__Class { struct HardwareButtonInfo__Array__VTable vtable; }; +struct HardwareButtonInfo___VTable { +}; + +struct HardwareButtonInfo___StaticFields { +}; + +struct HardwareButtonInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HardwareButtonInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HardwareButtonInfo___VTable vtable; +}; + struct HardwareJoystickMap_Platform__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -203406,6 +206071,21 @@ struct ICollection_1_Rewired_ControllerElementIdentifier___Class { struct ICollection_1_Rewired_ControllerElementIdentifier___VTable vtable; }; +struct ControllerElementIdentifier___VTable { +}; + +struct ControllerElementIdentifier___StaticFields { +}; + +struct ControllerElementIdentifier___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ControllerElementIdentifier___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ControllerElementIdentifier___VTable vtable; +}; + struct KeyValuePair_2_System_Int32_Rewired_ControllerElementIdentifier___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -204128,6 +206808,21 @@ struct Func_2_Int32_Int32___Class { struct Func_2_Int32_Int32___VTable vtable; }; +struct Pole___VTable { +}; + +struct Pole___StaticFields { +}; + +struct Pole___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Pole___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Pole___VTable vtable; +}; + struct ControllerWithAxes__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -210441,6 +213136,21 @@ struct ICollection_1_UnityEngine_Material___Class { struct ICollection_1_UnityEngine_Material___VTable vtable; }; +struct Material___VTable { +}; + +struct Material___StaticFields { +}; + +struct Material___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Material___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Material___VTable vtable; +}; + struct KeyValuePair_2_UnityEngine_Renderer_UnityEngine_Material___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -211727,6 +214437,21 @@ struct InputBindingCompositeContext__Class { struct InputBindingCompositeContext__VTable vtable; }; +struct InputBindingCompositeContext___VTable { +}; + +struct InputBindingCompositeContext___StaticFields { +}; + +struct InputBindingCompositeContext___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputBindingCompositeContext___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputBindingCompositeContext___VTable vtable; +}; + struct AxisComposite_WhichSideWins__Enum__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -212543,6 +215268,21 @@ struct IEnumerable_1_UnityEngine_InputSystem_InputBinding___Class { struct IEnumerable_1_UnityEngine_InputSystem_InputBinding___VTable vtable; }; +struct InputAction___VTable { +}; + +struct InputAction___StaticFields { +}; + +struct InputAction___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputAction___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputAction___VTable vtable; +}; + struct IEnumerator_1_UnityEngine_InputSystem_InputDevice___VTable { VirtualInvokeData get_Current; }; @@ -213562,6 +216302,21 @@ struct ICollection_1_Dissonance_PlayerChannel___Class { struct ICollection_1_Dissonance_PlayerChannel___VTable vtable; }; +struct PlayerChannel___VTable { +}; + +struct PlayerChannel___StaticFields { +}; + +struct PlayerChannel___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PlayerChannel___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PlayerChannel___VTable vtable; +}; + struct KeyValuePair_2_System_UInt16_Dissonance_PlayerChannel___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -214056,6 +216811,21 @@ struct ICollection_1_Dissonance_RoomChannel___Class { struct ICollection_1_Dissonance_RoomChannel___VTable vtable; }; +struct RoomChannel___VTable { +}; + +struct RoomChannel___StaticFields { +}; + +struct RoomChannel___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RoomChannel___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RoomChannel___VTable vtable; +}; + struct KeyValuePair_2_System_UInt16_Dissonance_RoomChannel___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -214634,6 +217404,21 @@ struct ICollection_1_Dissonance_IDissonancePlayer___Class { struct ICollection_1_Dissonance_IDissonancePlayer___VTable vtable; }; +struct IDissonancePlayer___VTable { +}; + +struct IDissonancePlayer___StaticFields { +}; + +struct IDissonancePlayer___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IDissonancePlayer___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IDissonancePlayer___VTable vtable; +}; + struct KeyValuePair_2_System_String_Dissonance_IDissonancePlayer___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -215287,6 +218072,21 @@ struct ICollection_1_Dissonance_VoicePlayerState___Class { struct ICollection_1_Dissonance_VoicePlayerState___VTable vtable; }; +struct VoicePlayerState___VTable { +}; + +struct VoicePlayerState___StaticFields { +}; + +struct VoicePlayerState___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct VoicePlayerState___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct VoicePlayerState___VTable vtable; +}; + struct KeyValuePair_2_System_String_Dissonance_VoicePlayerState___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -220485,6 +223285,21 @@ struct ICollection_1_Horror_Menu_MapReleasedState___Class { struct ICollection_1_Horror_Menu_MapReleasedState___VTable vtable; }; +struct Menu_MapReleasedState___VTable { +}; + +struct Menu_MapReleasedState___StaticFields { +}; + +struct Menu_MapReleasedState___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Menu_MapReleasedState___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Menu_MapReleasedState___VTable vtable; +}; + struct KeyValuePair_2_Horror_DevourMap_Horror_Menu_MapReleasedState___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -221435,6 +224250,21 @@ struct ICollection_1_Opsive_UltimateCharacterController_Traits_Attribute___Class struct ICollection_1_Opsive_UltimateCharacterController_Traits_Attribute___VTable vtable; }; +struct Attribute___VTable { +}; + +struct Attribute___StaticFields { +}; + +struct Attribute___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Attribute___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Attribute___VTable vtable; +}; + struct KeyValuePair_2_System_String_Opsive_UltimateCharacterController_Traits_Attribute___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -222604,6 +225434,21 @@ struct ICollection_1_UnityEngine_GameObject___Class { struct ICollection_1_UnityEngine_GameObject___VTable vtable; }; +struct GameObject___VTable { +}; + +struct GameObject___StaticFields { +}; + +struct GameObject___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GameObject___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GameObject___VTable vtable; +}; + struct KeyValuePair_2_NolanBehaviour_UnityEngine_GameObject___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -223441,6 +226286,21 @@ struct ICollection_1_UnityEngine_TextCore_Glyph___Class { struct ICollection_1_UnityEngine_TextCore_Glyph___VTable vtable; }; +struct Glyph___VTable { +}; + +struct Glyph___StaticFields { +}; + +struct Glyph___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Glyph___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Glyph___VTable vtable; +}; + struct KeyValuePair_2_System_UInt32_UnityEngine_TextCore_Glyph___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -223846,6 +226706,21 @@ struct ICollection_1_TMPro_TMP_Character___Class { struct ICollection_1_TMPro_TMP_Character___VTable vtable; }; +struct TMP_Character___VTable { +}; + +struct TMP_Character___StaticFields { +}; + +struct TMP_Character___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TMP_Character___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TMP_Character___VTable vtable; +}; + struct KeyValuePair_2_System_UInt32_TMPro_TMP_Character___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -224669,6 +227544,21 @@ struct ICollection_1_TMPro_TMP_GlyphPairAdjustmentRecord___Class { struct ICollection_1_TMPro_TMP_GlyphPairAdjustmentRecord___VTable vtable; }; +struct TMP_GlyphPairAdjustmentRecord___VTable { +}; + +struct TMP_GlyphPairAdjustmentRecord___StaticFields { +}; + +struct TMP_GlyphPairAdjustmentRecord___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TMP_GlyphPairAdjustmentRecord___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TMP_GlyphPairAdjustmentRecord___VTable vtable; +}; + struct KeyValuePair_2_System_UInt32_TMPro_TMP_GlyphPairAdjustmentRecord___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -225588,6 +228478,21 @@ struct ICollection_1_TMPro_TMP_SpriteCharacter___Class { struct ICollection_1_TMPro_TMP_SpriteCharacter___VTable vtable; }; +struct TMP_SpriteCharacter___VTable { +}; + +struct TMP_SpriteCharacter___StaticFields { +}; + +struct TMP_SpriteCharacter___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TMP_SpriteCharacter___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TMP_SpriteCharacter___VTable vtable; +}; + struct KeyValuePair_2_System_UInt32_TMPro_TMP_SpriteCharacter___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -225936,6 +228841,21 @@ struct ICollection_1_TMPro_TMP_SpriteGlyph___Class { struct ICollection_1_TMPro_TMP_SpriteGlyph___VTable vtable; }; +struct TMP_SpriteGlyph___VTable { +}; + +struct TMP_SpriteGlyph___StaticFields { +}; + +struct TMP_SpriteGlyph___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TMP_SpriteGlyph___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TMP_SpriteGlyph___VTable vtable; +}; + struct KeyValuePair_2_System_UInt32_TMPro_TMP_SpriteGlyph___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -226618,6 +229538,21 @@ struct ICollection_1_TMPro_TMP_Style___Class { struct ICollection_1_TMPro_TMP_Style___VTable vtable; }; +struct TMP_Style___VTable { +}; + +struct TMP_Style___StaticFields { +}; + +struct TMP_Style___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TMP_Style___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TMP_Style___VTable vtable; +}; + struct KeyValuePair_2_System_Int32_TMPro_TMP_Style___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -232782,6 +235717,21 @@ struct ICollection_1_KeySpawnPoint___Class { struct ICollection_1_KeySpawnPoint___VTable vtable; }; +struct KeySpawnPoint___VTable { +}; + +struct KeySpawnPoint___StaticFields { +}; + +struct KeySpawnPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeySpawnPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeySpawnPoint___VTable vtable; +}; + struct KeyValuePair_2_System_String_KeySpawnPoint___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -234034,6 +236984,21 @@ struct ICollection_1_InitialGoatSpawn___Class { struct ICollection_1_InitialGoatSpawn___VTable vtable; }; +struct InitialGoatSpawn___VTable { +}; + +struct InitialGoatSpawn___StaticFields { +}; + +struct InitialGoatSpawn___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InitialGoatSpawn___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InitialGoatSpawn___VTable vtable; +}; + struct KeyValuePair_2_ManorSpirit_InitialGoatSpawn___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -235533,6 +238498,21 @@ struct ICollection_1_cgAhWyfsfnPBbygscaxJCrsKfviSB_QZZonLoWlgxcyWKuMqtizlbVFpT_p struct ICollection_1_cgAhWyfsfnPBbygscaxJCrsKfviSB_QZZonLoWlgxcyWKuMqtizlbVFpT_pGjmwaQuQZuHgNirXIspTBHcQXUr___VTable vtable; }; +struct cgAhWyfsfnPBbygscaxJCrsKfviSB_QZZonLoWlgxcyWKuMqtizlbVFpT_pGjmwaQuQZuHgNirXIspTBHcQXUr___VTable { +}; + +struct cgAhWyfsfnPBbygscaxJCrsKfviSB_QZZonLoWlgxcyWKuMqtizlbVFpT_pGjmwaQuQZuHgNirXIspTBHcQXUr___StaticFields { +}; + +struct cgAhWyfsfnPBbygscaxJCrsKfviSB_QZZonLoWlgxcyWKuMqtizlbVFpT_pGjmwaQuQZuHgNirXIspTBHcQXUr___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct cgAhWyfsfnPBbygscaxJCrsKfviSB_QZZonLoWlgxcyWKuMqtizlbVFpT_pGjmwaQuQZuHgNirXIspTBHcQXUr___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct cgAhWyfsfnPBbygscaxJCrsKfviSB_QZZonLoWlgxcyWKuMqtizlbVFpT_pGjmwaQuQZuHgNirXIspTBHcQXUr___VTable vtable; +}; + struct KeyValuePair_2_System_Int32_cgAhWyfsfnPBbygscaxJCrsKfviSB_QZZonLoWlgxcyWKuMqtizlbVFpT_pGjmwaQuQZuHgNirXIspTBHcQXUr___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -236842,6 +239822,21 @@ struct ICollection_1_Rewired_InputBehavior___Class { struct ICollection_1_Rewired_InputBehavior___VTable vtable; }; +struct InputBehavior___VTable { +}; + +struct InputBehavior___StaticFields { +}; + +struct InputBehavior___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputBehavior___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputBehavior___VTable vtable; +}; + struct KeyValuePair_2_System_Int32_Rewired_InputBehavior___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -237132,6 +240127,21 @@ struct ICollection_1_XKHfzUVAieDxXBogCMTJRCSldnQzA_ZKepnRKpLuSRvtfTUZewbgDXdBHc_ struct ICollection_1_XKHfzUVAieDxXBogCMTJRCSldnQzA_ZKepnRKpLuSRvtfTUZewbgDXdBHc___VTable vtable; }; +struct XKHfzUVAieDxXBogCMTJRCSldnQzA_ZKepnRKpLuSRvtfTUZewbgDXdBHc___VTable { +}; + +struct XKHfzUVAieDxXBogCMTJRCSldnQzA_ZKepnRKpLuSRvtfTUZewbgDXdBHc___StaticFields { +}; + +struct XKHfzUVAieDxXBogCMTJRCSldnQzA_ZKepnRKpLuSRvtfTUZewbgDXdBHc___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct XKHfzUVAieDxXBogCMTJRCSldnQzA_ZKepnRKpLuSRvtfTUZewbgDXdBHc___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct XKHfzUVAieDxXBogCMTJRCSldnQzA_ZKepnRKpLuSRvtfTUZewbgDXdBHc___VTable vtable; +}; + struct KeyValuePair_2_System_Int32_XKHfzUVAieDxXBogCMTJRCSldnQzA_ZKepnRKpLuSRvtfTUZewbgDXdBHc___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -237663,6 +240673,21 @@ struct ICollection_1_awbjHmZDZGaFbpFdVngkjOlucOb_GAaWAhihtaBrVEgxHmuQgkOpejeO___ struct ICollection_1_awbjHmZDZGaFbpFdVngkjOlucOb_GAaWAhihtaBrVEgxHmuQgkOpejeO___VTable vtable; }; +struct awbjHmZDZGaFbpFdVngkjOlucOb_GAaWAhihtaBrVEgxHmuQgkOpejeO___VTable { +}; + +struct awbjHmZDZGaFbpFdVngkjOlucOb_GAaWAhihtaBrVEgxHmuQgkOpejeO___StaticFields { +}; + +struct awbjHmZDZGaFbpFdVngkjOlucOb_GAaWAhihtaBrVEgxHmuQgkOpejeO___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct awbjHmZDZGaFbpFdVngkjOlucOb_GAaWAhihtaBrVEgxHmuQgkOpejeO___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct awbjHmZDZGaFbpFdVngkjOlucOb_GAaWAhihtaBrVEgxHmuQgkOpejeO___VTable vtable; +}; + struct KeyValuePair_2_System_String_awbjHmZDZGaFbpFdVngkjOlucOb_GAaWAhihtaBrVEgxHmuQgkOpejeO___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -240032,6 +243057,21 @@ struct PropertyName__Class { struct PropertyName__VTable vtable; }; +struct PropertyName___VTable { +}; + +struct PropertyName___StaticFields { +}; + +struct PropertyName___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PropertyName___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PropertyName___VTable vtable; +}; + struct PlayableDirector__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -240298,6 +243338,21 @@ struct ICollection_1_UnityEngine_LightShadows___Class { struct ICollection_1_UnityEngine_LightShadows___VTable vtable; }; +struct LightShadows___VTable { +}; + +struct LightShadows___StaticFields { +}; + +struct LightShadows___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct LightShadows___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct LightShadows___VTable vtable; +}; + struct KeyValuePair_2_UnityEngine_Light_UnityEngine_LightShadows___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -244617,6 +247672,21 @@ struct ICollection_1_NolanPerkController___Class { struct ICollection_1_NolanPerkController___VTable vtable; }; +struct NolanPerkController___VTable { +}; + +struct NolanPerkController___StaticFields { +}; + +struct NolanPerkController___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NolanPerkController___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NolanPerkController___VTable vtable; +}; + struct KeyValuePair_2_UnityEngine_GameObject_NolanPerkController___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -247572,6 +250642,21 @@ struct ICollection_1_List_1_UnityEngine_Rendering_PostProcessing_PostProcessLaye struct ICollection_1_List_1_UnityEngine_Rendering_PostProcessing_PostProcessLayer_SerializedBundleRef___VTable vtable; }; +struct List_1_UnityEngine_Rendering_PostProcessing_PostProcessLayer_SerializedBundleRef__1__VTable { +}; + +struct List_1_UnityEngine_Rendering_PostProcessing_PostProcessLayer_SerializedBundleRef__1__StaticFields { +}; + +struct List_1_UnityEngine_Rendering_PostProcessing_PostProcessLayer_SerializedBundleRef__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_Rendering_PostProcessing_PostProcessLayer_SerializedBundleRef__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_Rendering_PostProcessing_PostProcessLayer_SerializedBundleRef__1__VTable vtable; +}; + struct KeyValuePair_2_UnityEngine_Rendering_PostProcessing_PostProcessEvent_List_1_UnityEngine_Rendering_PostProcessing_PostProcessLayer_SerializedBundleRef___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -247866,6 +250951,21 @@ struct ICollection_1_UnityEngine_Rendering_PostProcessing_PostProcessBundle___Cl struct ICollection_1_UnityEngine_Rendering_PostProcessing_PostProcessBundle___VTable vtable; }; +struct PostProcessBundle___VTable { +}; + +struct PostProcessBundle___StaticFields { +}; + +struct PostProcessBundle___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PostProcessBundle___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PostProcessBundle___VTable vtable; +}; + struct KeyValuePair_2_System_Type_UnityEngine_Rendering_PostProcessing_PostProcessBundle___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -250288,6 +253388,268 @@ struct PuppetMaster_Mode__Enum__Boxed { #endif }; +struct Muscle_State { + float mappingWeightMlp; + float pinWeightMlp; + float muscleWeightMlp; + float maxForceMlp; + float muscleDamperMlp; + float muscleDamperAdd; + float immunity; + float impulseMlp; + struct Vector3 velocity; + struct Vector3 angularVelocity; + bool isDisconnected; + bool resetFlag; +}; + +struct Muscle_State__Boxed { + struct Muscle_State__Class *klass; + MonitorData *monitor; + struct Muscle_State fields; +}; + +#if defined(_CPLUSPLUS_) +enum class ConfigurableJointMotion__Enum : int32_t { + Locked = 0x00000000, + Limited = 0x00000001, + Free = 0x00000002, +}; + +#else +enum ConfigurableJointMotion__Enum { + ConfigurableJointMotion__Enum_Locked = 0x00000000, + ConfigurableJointMotion__Enum_Limited = 0x00000001, + ConfigurableJointMotion__Enum_Free = 0x00000002, +}; + +#endif +struct ConfigurableJointMotion__Enum__Boxed { + struct ConfigurableJointMotion__Enum__Class *klass; + MonitorData *monitor; + #if defined(_CPLUSPLUS_) + ConfigurableJointMotion__Enum value; + #else + int32_t value; + #endif +}; + +struct JointDrive { + float m_PositionSpring; + float m_PositionDamper; + float m_MaximumForce; +}; + +struct JointDrive__Boxed { + struct JointDrive__Class *klass; + MonitorData *monitor; + struct JointDrive fields; +}; + +struct __declspec(align(8)) Muscle_TargetChild__Fields { + struct Transform *t; + struct Vector3 defaultLocalPosition; + struct Quaternion defaultLocalRotation; +}; + +struct Muscle_TargetChild { + struct Muscle_TargetChild__Class *klass; + MonitorData *monitor; + struct Muscle_TargetChild__Fields fields; +}; + +struct __declspec(align(8)) Muscle__Fields { + struct String *name; + struct ConfigurableJoint *joint; + struct Transform *target; + struct Muscle_Props *props; + struct Muscle_State state; + struct Int32__Array *parentIndexes; + struct Int32__Array *childIndexes; + struct Boolean__Array *childFlags; + struct Int32__Array *kinshipDegrees; + struct MuscleCollisionBroadcaster *broadcaster; + struct JointBreakBroadcaster *jointBreakBroadcaster; + struct Vector3 positionOffset; + struct Transform *_transform_k__BackingField; + struct Rigidbody *_rigidbody_k__BackingField; + struct Transform *_connectedBodyTarget_k__BackingField; + struct Vector3 _targetAnimatedPosition_k__BackingField; + struct Quaternion _targetAnimatedWorldRotation_k__BackingField; + struct Vector3 _targetVelocity_k__BackingField; + struct Rigidbody *_additionalRigidbody_k__BackingField; + struct ConfigurableJoint *additionalPin; + struct Transform *additionalPinTarget; + float additionalPinWeight; + struct Vector3 mappedVelocity; + struct Vector3 mappedAngularVelocity; + bool isPropMuscle; + int32_t index; + struct Quaternion _targetRotationRelative_k__BackingField; + struct Rigidbody *_rebuildConnectedBody_k__BackingField; + struct Transform *_rebuildTargetParent_k__BackingField; + struct Vector3 _defaultTargetPosRelToMuscle_k__BackingField; + struct Quaternion _defaultTargetRotRelToMuscle_k__BackingField; + struct Quaternion _defaultMuscleRotRelToTarget_k__BackingField; + struct Transform *rebuildParent; + struct Vector3 rebuildPosition; + struct Quaternion rebuildRotation; + struct Vector3 rebuildTargetPosition; + struct Quaternion rebuildTargetRotation; + #if defined(_CPLUSPLUS_) + ConfigurableJointMotion__Enum rebuildAngularXMotion; + #else + int32_t rebuildAngularXMotion; + #endif + #if defined(_CPLUSPLUS_) + ConfigurableJointMotion__Enum rebuildAngularYMotion; + #else + int32_t rebuildAngularYMotion; + #endif + #if defined(_CPLUSPLUS_) + ConfigurableJointMotion__Enum rebuildAngularZMotion; + #else + int32_t rebuildAngularZMotion; + #endif + bool ignoreTargetVelocity; + struct Vector3 targetMappedPosition; + struct Quaternion targetMappedRotation; + struct Vector3 targetSampledPosition; + struct Quaternion targetSampledRotation; + struct JointDrive slerpDrive; + float lastJointDriveRotationWeight; + float lastRotationDamper; + struct Vector3 defaultPosition; + struct Vector3 defaultTargetLocalPosition; + struct Vector3 lastMappedPosition; + struct Quaternion defaultLocalRotation; + struct Quaternion localRotationConvert; + struct Quaternion toParentSpace; + struct Quaternion toJointSpaceInverse; + struct Quaternion toJointSpaceDefault; + struct Quaternion targetAnimatedRotation; + struct Quaternion defaultRotation; + struct Quaternion rotationRelativeToTarget; + struct Quaternion defaultTargetLocalRotation; + struct Quaternion lastMappedRotation; + struct Transform *targetParent; + struct Transform *connectedBodyTransform; + #if defined(_CPLUSPLUS_) + ConfigurableJointMotion__Enum angularXMotionDefault; + #else + int32_t angularXMotionDefault; + #endif + #if defined(_CPLUSPLUS_) + ConfigurableJointMotion__Enum angularYMotionDefault; + #else + int32_t angularYMotionDefault; + #endif + #if defined(_CPLUSPLUS_) + ConfigurableJointMotion__Enum angularZMotionDefault; + #else + int32_t angularZMotionDefault; + #endif + bool directTargetParent; + bool initiated; + struct Collider__Array *_colliders; + float lastReadTime; + float lastWriteTime; + struct Boolean__Array *disabledColliders; + struct Muscle_TargetChild__Array *targetChildren; + struct Vector3 additionalTargetVelocity; + struct Vector3 targetAnimatedCenterOfMass; + struct Vector3 additionalPinTargetAnimatedCenterOfMass; + struct Quaternion defaultTargetRotRelToMuscleInverse; +}; + +struct Muscle { + struct Muscle__Class *klass; + MonitorData *monitor; + struct Muscle__Fields fields; +}; + +struct PropMuscle__Fields { + struct MonoBehaviour__Fields _; + struct PuppetMaster *puppetMaster; + struct PuppetMasterProp *currentProp; + struct Vector3 additionalPinOffset; + struct PuppetMasterProp *_activeProp_k__BackingField; + struct PropMuscle_PropDelegate *OnPickUpProp; + struct PropMuscle_PropDelegate *OnDropProp; + struct Muscle *_muscle; + struct PuppetMasterProp *lastProp; + struct Vector3 lastAdditionalPinOffset; +}; + +struct PropMuscle { + struct PropMuscle__Class *klass; + MonitorData *monitor; + struct PropMuscle__Fields fields; +}; + +struct BehaviourBase__Fields { + struct MonoBehaviour__Fields _; + struct PuppetMaster *puppetMaster; + struct BehaviourBase_BehaviourDelegate *OnPreActivate; + struct BehaviourBase_BehaviourDelegate *OnPreInitiate; + struct BehaviourBase_BehaviourUpdateDelegate *OnPreFixedUpdate; + struct BehaviourBase_BehaviourUpdateDelegate *OnPreUpdate; + struct BehaviourBase_BehaviourUpdateDelegate *OnPreLateUpdate; + struct BehaviourBase_BehaviourUpdateDelegate *OnPreRead; + struct BehaviourBase_BehaviourUpdateDelegate *OnPreWrite; + struct BehaviourBase_BehaviourDelegate *OnPreDeactivate; + struct BehaviourBase_BehaviourDelegate *OnPreFixTransforms; + struct BehaviourBase_HitDelegate *OnPreMuscleHit; + struct BehaviourBase_CollisionDelegate *OnPreMuscleCollision; + struct BehaviourBase_CollisionDelegate *OnPreMuscleCollisionExit; + struct BehaviourBase_BehaviourDelegate *OnHierarchyChanged; + struct BehaviourBase_BehaviourDelegate *OnPostActivate; + struct BehaviourBase_BehaviourDelegate *OnPostInitiate; + struct BehaviourBase_BehaviourUpdateDelegate *OnPostFixedUpdate; + struct BehaviourBase_BehaviourUpdateDelegate *OnPostUpdate; + struct BehaviourBase_BehaviourUpdateDelegate *OnPostLateUpdate; + struct BehaviourBase_BehaviourUpdateDelegate *OnPostRead; + struct BehaviourBase_BehaviourUpdateDelegate *OnPostWrite; + struct BehaviourBase_BehaviourDelegate *OnPostDeactivate; + struct BehaviourBase_BehaviourDelegate *OnPostDrawGizmos; + struct BehaviourBase_BehaviourDelegate *OnPostFixTransforms; + struct BehaviourBase_HitDelegate *OnPostMuscleHit; + struct BehaviourBase_CollisionDelegate *OnPostMuscleCollision; + struct BehaviourBase_CollisionDelegate *OnPostMuscleCollisionExit; + bool deactivated; + bool _forceActive_k__BackingField; + bool initiated; +}; + +struct BehaviourBase { + struct BehaviourBase__Class *klass; + MonitorData *monitor; + struct BehaviourBase__Fields fields; +}; + +#if defined(_CPLUSPLUS_) +enum class MuscleDisconnectMode__Enum : int32_t { + Sever = 0x00000000, + Explode = 0x00000001, +}; + +#else +enum MuscleDisconnectMode__Enum { + MuscleDisconnectMode__Enum_Sever = 0x00000000, + MuscleDisconnectMode__Enum_Explode = 0x00000001, +}; + +#endif +struct MuscleDisconnectMode__Enum__Boxed { + struct MuscleDisconnectMode__Enum__Class *klass; + MonitorData *monitor; + #if defined(_CPLUSPLUS_) + MuscleDisconnectMode__Enum value; + #else + int32_t value; + #endif +}; + struct PuppetMaster__Fields { struct MonoBehaviour__Fields _; struct PuppetMasterHumanoidConfig *humanoidConfig; @@ -250407,6 +253769,22 @@ struct PuppetMaster { struct PuppetMaster__Fields fields; }; +struct __declspec(align(8)) PuppetMasterHumanoidConfig_HumanoidMuscle__Fields { + struct String *name; + #if defined(_CPLUSPLUS_) + HumanBodyBones__Enum bone; + #else + int32_t bone; + #endif + struct Muscle_Props *props; +}; + +struct PuppetMasterHumanoidConfig_HumanoidMuscle { + struct PuppetMasterHumanoidConfig_HumanoidMuscle__Class *klass; + MonitorData *monitor; + struct PuppetMasterHumanoidConfig_HumanoidMuscle__Fields fields; +}; + struct PuppetMasterHumanoidConfig__Fields { struct ScriptableObject__Fields _; #if defined(_CPLUSPLUS_) @@ -250445,22 +253823,6 @@ struct PuppetMasterHumanoidConfig { struct PuppetMasterHumanoidConfig__Fields fields; }; -struct __declspec(align(8)) PuppetMasterHumanoidConfig_HumanoidMuscle__Fields { - struct String *name; - #if defined(_CPLUSPLUS_) - HumanBodyBones__Enum bone; - #else - int32_t bone; - #endif - struct Muscle_Props *props; -}; - -struct PuppetMasterHumanoidConfig_HumanoidMuscle { - struct PuppetMasterHumanoidConfig_HumanoidMuscle__Class *klass; - MonitorData *monitor; - struct PuppetMasterHumanoidConfig_HumanoidMuscle__Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class Muscle_Group__Enum : int32_t { Hips = 0x00000000, @@ -250518,18 +253880,6 @@ struct Muscle_Props { struct Muscle_Props__Fields fields; }; -struct __declspec(align(8)) Muscle_InternalCollisionIgnoreSettings__Fields { - bool ignoreAll; - struct ConfigurableJoint__Array *muscles; - struct Muscle_Group__Enum__Array *groups; -}; - -struct Muscle_InternalCollisionIgnoreSettings { - struct Muscle_InternalCollisionIgnoreSettings__Class *klass; - MonitorData *monitor; - struct Muscle_InternalCollisionIgnoreSettings__Fields fields; -}; - struct Joint__Fields { struct Component__Fields _; }; @@ -250550,6 +253900,18 @@ struct ConfigurableJoint { struct ConfigurableJoint__Fields fields; }; +struct __declspec(align(8)) Muscle_InternalCollisionIgnoreSettings__Fields { + bool ignoreAll; + struct ConfigurableJoint__Array *muscles; + struct Muscle_Group__Enum__Array *groups; +}; + +struct Muscle_InternalCollisionIgnoreSettings { + struct Muscle_InternalCollisionIgnoreSettings__Class *klass; + MonitorData *monitor; + struct Muscle_InternalCollisionIgnoreSettings__Fields fields; +}; + struct ConfigurableJoint__Array { struct ConfigurableJoint__Array__Class *klass; MonitorData *monitor; @@ -250574,174 +253936,6 @@ struct PuppetMasterHumanoidConfig_HumanoidMuscle__Array { struct PuppetMasterHumanoidConfig_HumanoidMuscle *vector[32]; }; -struct Muscle_State { - float mappingWeightMlp; - float pinWeightMlp; - float muscleWeightMlp; - float maxForceMlp; - float muscleDamperMlp; - float muscleDamperAdd; - float immunity; - float impulseMlp; - struct Vector3 velocity; - struct Vector3 angularVelocity; - bool isDisconnected; - bool resetFlag; -}; - -struct Muscle_State__Boxed { - struct Muscle_State__Class *klass; - MonitorData *monitor; - struct Muscle_State fields; -}; - -#if defined(_CPLUSPLUS_) -enum class ConfigurableJointMotion__Enum : int32_t { - Locked = 0x00000000, - Limited = 0x00000001, - Free = 0x00000002, -}; - -#else -enum ConfigurableJointMotion__Enum { - ConfigurableJointMotion__Enum_Locked = 0x00000000, - ConfigurableJointMotion__Enum_Limited = 0x00000001, - ConfigurableJointMotion__Enum_Free = 0x00000002, -}; - -#endif -struct ConfigurableJointMotion__Enum__Boxed { - struct ConfigurableJointMotion__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - ConfigurableJointMotion__Enum value; - #else - int32_t value; - #endif -}; - -struct JointDrive { - float m_PositionSpring; - float m_PositionDamper; - float m_MaximumForce; -}; - -struct JointDrive__Boxed { - struct JointDrive__Class *klass; - MonitorData *monitor; - struct JointDrive fields; -}; - -struct __declspec(align(8)) Muscle__Fields { - struct String *name; - struct ConfigurableJoint *joint; - struct Transform *target; - struct Muscle_Props *props; - struct Muscle_State state; - struct Int32__Array *parentIndexes; - struct Int32__Array *childIndexes; - struct Boolean__Array *childFlags; - struct Int32__Array *kinshipDegrees; - struct MuscleCollisionBroadcaster *broadcaster; - struct JointBreakBroadcaster *jointBreakBroadcaster; - struct Vector3 positionOffset; - struct Transform *_transform_k__BackingField; - struct Rigidbody *_rigidbody_k__BackingField; - struct Transform *_connectedBodyTarget_k__BackingField; - struct Vector3 _targetAnimatedPosition_k__BackingField; - struct Quaternion _targetAnimatedWorldRotation_k__BackingField; - struct Vector3 _targetVelocity_k__BackingField; - struct Rigidbody *_additionalRigidbody_k__BackingField; - struct ConfigurableJoint *additionalPin; - struct Transform *additionalPinTarget; - float additionalPinWeight; - struct Vector3 mappedVelocity; - struct Vector3 mappedAngularVelocity; - bool isPropMuscle; - int32_t index; - struct Quaternion _targetRotationRelative_k__BackingField; - struct Rigidbody *_rebuildConnectedBody_k__BackingField; - struct Transform *_rebuildTargetParent_k__BackingField; - struct Vector3 _defaultTargetPosRelToMuscle_k__BackingField; - struct Quaternion _defaultTargetRotRelToMuscle_k__BackingField; - struct Quaternion _defaultMuscleRotRelToTarget_k__BackingField; - struct Transform *rebuildParent; - struct Vector3 rebuildPosition; - struct Quaternion rebuildRotation; - struct Vector3 rebuildTargetPosition; - struct Quaternion rebuildTargetRotation; - #if defined(_CPLUSPLUS_) - ConfigurableJointMotion__Enum rebuildAngularXMotion; - #else - int32_t rebuildAngularXMotion; - #endif - #if defined(_CPLUSPLUS_) - ConfigurableJointMotion__Enum rebuildAngularYMotion; - #else - int32_t rebuildAngularYMotion; - #endif - #if defined(_CPLUSPLUS_) - ConfigurableJointMotion__Enum rebuildAngularZMotion; - #else - int32_t rebuildAngularZMotion; - #endif - bool ignoreTargetVelocity; - struct Vector3 targetMappedPosition; - struct Quaternion targetMappedRotation; - struct Vector3 targetSampledPosition; - struct Quaternion targetSampledRotation; - struct JointDrive slerpDrive; - float lastJointDriveRotationWeight; - float lastRotationDamper; - struct Vector3 defaultPosition; - struct Vector3 defaultTargetLocalPosition; - struct Vector3 lastMappedPosition; - struct Quaternion defaultLocalRotation; - struct Quaternion localRotationConvert; - struct Quaternion toParentSpace; - struct Quaternion toJointSpaceInverse; - struct Quaternion toJointSpaceDefault; - struct Quaternion targetAnimatedRotation; - struct Quaternion defaultRotation; - struct Quaternion rotationRelativeToTarget; - struct Quaternion defaultTargetLocalRotation; - struct Quaternion lastMappedRotation; - struct Transform *targetParent; - struct Transform *connectedBodyTransform; - #if defined(_CPLUSPLUS_) - ConfigurableJointMotion__Enum angularXMotionDefault; - #else - int32_t angularXMotionDefault; - #endif - #if defined(_CPLUSPLUS_) - ConfigurableJointMotion__Enum angularYMotionDefault; - #else - int32_t angularYMotionDefault; - #endif - #if defined(_CPLUSPLUS_) - ConfigurableJointMotion__Enum angularZMotionDefault; - #else - int32_t angularZMotionDefault; - #endif - bool directTargetParent; - bool initiated; - struct Collider__Array *_colliders; - float lastReadTime; - float lastWriteTime; - struct Boolean__Array *disabledColliders; - struct Muscle_TargetChild__Array *targetChildren; - struct Vector3 additionalTargetVelocity; - struct Vector3 targetAnimatedCenterOfMass; - struct Vector3 additionalPinTargetAnimatedCenterOfMass; - struct Quaternion defaultTargetRotRelToMuscleInverse; -}; - -struct Muscle { - struct Muscle__Class *klass; - MonitorData *monitor; - struct Muscle__Fields fields; -}; - struct MuscleCollisionBroadcaster__Fields { struct MonoBehaviour__Fields _; struct PuppetMaster *puppetMaster; @@ -250767,18 +253961,6 @@ struct JointBreakBroadcaster { struct JointBreakBroadcaster__Fields fields; }; -struct __declspec(align(8)) Muscle_TargetChild__Fields { - struct Transform *t; - struct Vector3 defaultLocalPosition; - struct Quaternion defaultLocalRotation; -}; - -struct Muscle_TargetChild { - struct Muscle_TargetChild__Class *klass; - MonitorData *monitor; - struct Muscle_TargetChild__Fields fields; -}; - struct Muscle_TargetChild__Array { struct Muscle_TargetChild__Array__Class *klass; MonitorData *monitor; @@ -250795,23 +253977,14 @@ struct Muscle__Array { struct Muscle *vector[32]; }; -struct PropMuscle__Fields { - struct MonoBehaviour__Fields _; - struct PuppetMaster *puppetMaster; - struct PuppetMasterProp *currentProp; - struct Vector3 additionalPinOffset; - struct PuppetMasterProp *_activeProp_k__BackingField; - struct PropMuscle_PropDelegate *OnPickUpProp; - struct PropMuscle_PropDelegate *OnDropProp; - struct Muscle *_muscle; - struct PuppetMasterProp *lastProp; - struct Vector3 lastAdditionalPinOffset; +struct PhysicMaterial__Fields { + struct Object_1__Fields _; }; -struct PropMuscle { - struct PropMuscle__Class *klass; +struct PhysicMaterial { + struct PhysicMaterial__Class *klass; MonitorData *monitor; - struct PropMuscle__Fields fields; + struct PhysicMaterial__Fields fields; }; #if defined(_CPLUSPLUS_) @@ -250954,16 +254127,6 @@ struct PuppetMasterProp { struct PuppetMasterProp__Fields fields; }; -struct PhysicMaterial__Fields { - struct Object_1__Fields _; -}; - -struct PhysicMaterial { - struct PhysicMaterial__Class *klass; - MonitorData *monitor; - struct PhysicMaterial__Fields fields; -}; - struct PhysicMaterial__Array { struct PhysicMaterial__Array__Class *klass; MonitorData *monitor; @@ -251010,46 +254173,6 @@ struct PuppetMaster_MuscleDelegate { struct PuppetMaster_MuscleDelegate__Fields fields; }; -struct BehaviourBase__Fields { - struct MonoBehaviour__Fields _; - struct PuppetMaster *puppetMaster; - struct BehaviourBase_BehaviourDelegate *OnPreActivate; - struct BehaviourBase_BehaviourDelegate *OnPreInitiate; - struct BehaviourBase_BehaviourUpdateDelegate *OnPreFixedUpdate; - struct BehaviourBase_BehaviourUpdateDelegate *OnPreUpdate; - struct BehaviourBase_BehaviourUpdateDelegate *OnPreLateUpdate; - struct BehaviourBase_BehaviourUpdateDelegate *OnPreRead; - struct BehaviourBase_BehaviourUpdateDelegate *OnPreWrite; - struct BehaviourBase_BehaviourDelegate *OnPreDeactivate; - struct BehaviourBase_BehaviourDelegate *OnPreFixTransforms; - struct BehaviourBase_HitDelegate *OnPreMuscleHit; - struct BehaviourBase_CollisionDelegate *OnPreMuscleCollision; - struct BehaviourBase_CollisionDelegate *OnPreMuscleCollisionExit; - struct BehaviourBase_BehaviourDelegate *OnHierarchyChanged; - struct BehaviourBase_BehaviourDelegate *OnPostActivate; - struct BehaviourBase_BehaviourDelegate *OnPostInitiate; - struct BehaviourBase_BehaviourUpdateDelegate *OnPostFixedUpdate; - struct BehaviourBase_BehaviourUpdateDelegate *OnPostUpdate; - struct BehaviourBase_BehaviourUpdateDelegate *OnPostLateUpdate; - struct BehaviourBase_BehaviourUpdateDelegate *OnPostRead; - struct BehaviourBase_BehaviourUpdateDelegate *OnPostWrite; - struct BehaviourBase_BehaviourDelegate *OnPostDeactivate; - struct BehaviourBase_BehaviourDelegate *OnPostDrawGizmos; - struct BehaviourBase_BehaviourDelegate *OnPostFixTransforms; - struct BehaviourBase_HitDelegate *OnPostMuscleHit; - struct BehaviourBase_CollisionDelegate *OnPostMuscleCollision; - struct BehaviourBase_CollisionDelegate *OnPostMuscleCollisionExit; - bool deactivated; - bool _forceActive_k__BackingField; - bool initiated; -}; - -struct BehaviourBase { - struct BehaviourBase__Class *klass; - MonitorData *monitor; - struct BehaviourBase__Fields fields; -}; - struct BehaviourBase_BehaviourDelegate__Fields { struct MulticastDelegate__Fields _; }; @@ -251115,6 +254238,19 @@ struct MuscleCollision__Boxed { struct MuscleCollision fields; }; +struct __declspec(align(8)) BehaviourBase_AnimatorEvent__Fields { + struct String *animationState; + float crossfadeTime; + int32_t layer; + bool resetNormalizedTime; +}; + +struct BehaviourBase_AnimatorEvent { + struct BehaviourBase_AnimatorEvent__Class *klass; + MonitorData *monitor; + struct BehaviourBase_AnimatorEvent__Fields fields; +}; + struct BehaviourBase_PuppetEvent { struct String *switchToBehaviour; struct BehaviourBase_AnimatorEvent__Array *animations; @@ -251153,19 +254289,6 @@ struct BehaviourFall { struct BehaviourFall__Fields fields; }; -struct __declspec(align(8)) BehaviourBase_AnimatorEvent__Fields { - struct String *animationState; - float crossfadeTime; - int32_t layer; - bool resetNormalizedTime; -}; - -struct BehaviourBase_AnimatorEvent { - struct BehaviourBase_AnimatorEvent__Class *klass; - MonitorData *monitor; - struct BehaviourBase_AnimatorEvent__Fields fields; -}; - struct BehaviourBase_AnimatorEvent__Array { struct BehaviourBase_AnimatorEvent__Array__Class *klass; MonitorData *monitor; @@ -251182,19 +254305,6 @@ struct BehaviourBase__Array { struct BehaviourBase *vector[32]; }; -struct __declspec(align(8)) List_1_RootMotion_SolverManager___Fields { - struct SolverManager__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_RootMotion_SolverManager_ { - struct List_1_RootMotion_SolverManager___Class *klass; - MonitorData *monitor; - struct List_1_RootMotion_SolverManager___Fields fields; -}; - struct SolverManager__Fields { struct MonoBehaviour__Fields _; bool fixTransforms; @@ -251211,6 +254321,19 @@ struct SolverManager { struct SolverManager__Fields fields; }; +struct __declspec(align(8)) List_1_RootMotion_SolverManager___Fields { + struct SolverManager__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_RootMotion_SolverManager_ { + struct List_1_RootMotion_SolverManager___Class *klass; + MonitorData *monitor; + struct List_1_RootMotion_SolverManager___Fields fields; +}; + struct SolverManager__Array { struct SolverManager__Array__Class *klass; MonitorData *monitor; @@ -251224,29 +254347,6 @@ struct IEnumerator_1_RootMotion_SolverManager_ { MonitorData *monitor; }; -#if defined(_CPLUSPLUS_) -enum class MuscleDisconnectMode__Enum : int32_t { - Sever = 0x00000000, - Explode = 0x00000001, -}; - -#else -enum MuscleDisconnectMode__Enum { - MuscleDisconnectMode__Enum_Sever = 0x00000000, - MuscleDisconnectMode__Enum_Explode = 0x00000001, -}; - -#endif -struct MuscleDisconnectMode__Enum__Boxed { - struct MuscleDisconnectMode__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - MuscleDisconnectMode__Enum value; - #else - int32_t value; - #endif -}; - struct MuscleDisconnectMode__Enum__Array { struct MuscleDisconnectMode__Enum__Array__Class *klass; MonitorData *monitor; @@ -251255,34 +254355,6 @@ struct MuscleDisconnectMode__Enum__Array { MuscleDisconnectMode__Enum vector[32]; }; -struct ObjectShaker__Fields { - struct MonoBehaviour__Fields _; - struct Vector3__Array *positionOffsets; - float sphereRadius; - float posShakeSpeed; - float posShakeIntensity; - float rotShakeSpeed; - float rotShakeIntensity; - struct LayerMask physicsPropLayerMask; - float physicsPropFloatStrength; - float physicsPropFloatSpeed; - float physicsPropAngularDrag; - float physicsPropShakeSpeed; - float physicsPropShakeStrength; - struct Collider__Array *overlapSphereHits; - struct ShakeObject__Array *allShakeObjects; - struct List_1_ShakeObject_ *chosenShakeObjects; - struct Dictionary_2_UnityEngine_Rigidbody_UnityEngine_Vector3_ *chosenPhysicsProps; - float physicsPropForceT; - bool shaking; -}; - -struct ObjectShaker { - struct ObjectShaker__Class *klass; - MonitorData *monitor; - struct ObjectShaker__Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class ShakeObject_Plane__Enum : int32_t { XZ = 0x00000000, @@ -251338,6 +254410,34 @@ struct ShakeObject { struct ShakeObject__Fields fields; }; +struct ObjectShaker__Fields { + struct MonoBehaviour__Fields _; + struct Vector3__Array *positionOffsets; + float sphereRadius; + float posShakeSpeed; + float posShakeIntensity; + float rotShakeSpeed; + float rotShakeIntensity; + struct LayerMask physicsPropLayerMask; + float physicsPropFloatStrength; + float physicsPropFloatSpeed; + float physicsPropAngularDrag; + float physicsPropShakeSpeed; + float physicsPropShakeStrength; + struct Collider__Array *overlapSphereHits; + struct ShakeObject__Array *allShakeObjects; + struct List_1_ShakeObject_ *chosenShakeObjects; + struct Dictionary_2_UnityEngine_Rigidbody_UnityEngine_Vector3_ *chosenPhysicsProps; + float physicsPropForceT; + bool shaking; +}; + +struct ObjectShaker { + struct ObjectShaker__Class *klass; + MonitorData *monitor; + struct ObjectShaker__Fields fields; +}; + struct ShakeObject__Array { struct ShakeObject__Array__Class *klass; MonitorData *monitor; @@ -251364,6 +254464,19 @@ struct IEnumerator_1_ShakeObject_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Rigidbody_UnityEngine_Vector3_ { + int32_t hashCode; + int32_t next; + struct Rigidbody *key; + struct Vector3 value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Rigidbody_UnityEngine_Vector3___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Rigidbody_UnityEngine_Vector3___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Rigidbody_UnityEngine_Vector3_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_Rigidbody_UnityEngine_Vector3___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Rigidbody_UnityEngine_Vector3___Array *_entries; @@ -251383,19 +254496,6 @@ struct Dictionary_2_UnityEngine_Rigidbody_UnityEngine_Vector3_ { struct Dictionary_2_UnityEngine_Rigidbody_UnityEngine_Vector3___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Rigidbody_UnityEngine_Vector3_ { - int32_t hashCode; - int32_t next; - struct Rigidbody *key; - struct Vector3 value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Rigidbody_UnityEngine_Vector3___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Rigidbody_UnityEngine_Vector3___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Rigidbody_UnityEngine_Vector3_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Rigidbody_UnityEngine_Vector3___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Rigidbody_UnityEngine_Vector3___Array__Class *klass; MonitorData *monitor; @@ -251507,6 +254607,19 @@ struct AzazelFlickerController { struct AzazelFlickerController__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_KnockoutRagdoll_GenericLookAt_ { + int32_t hashCode; + int32_t next; + struct KnockoutRagdoll *key; + struct GenericLookAt *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_KnockoutRagdoll_GenericLookAt___Boxed { + struct Dictionary_2_TKey_TValue_Entry_KnockoutRagdoll_GenericLookAt___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_KnockoutRagdoll_GenericLookAt_ fields; +}; + struct __declspec(align(8)) Dictionary_2_KnockoutRagdoll_GenericLookAt___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_KnockoutRagdoll_GenericLookAt___Array *_entries; @@ -251526,19 +254639,6 @@ struct Dictionary_2_KnockoutRagdoll_GenericLookAt_ { struct Dictionary_2_KnockoutRagdoll_GenericLookAt___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_KnockoutRagdoll_GenericLookAt_ { - int32_t hashCode; - int32_t next; - struct KnockoutRagdoll *key; - struct GenericLookAt *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_KnockoutRagdoll_GenericLookAt___Boxed { - struct Dictionary_2_TKey_TValue_Entry_KnockoutRagdoll_GenericLookAt___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_KnockoutRagdoll_GenericLookAt_ fields; -}; - struct GenericLookAt__Fields { struct MonoBehaviour__Fields _; struct GameObject *lookTransform; @@ -253677,6 +256777,21 @@ struct ICollection_1_GenericLookAt___Class { struct ICollection_1_GenericLookAt___VTable vtable; }; +struct GenericLookAt___VTable { +}; + +struct GenericLookAt___StaticFields { +}; + +struct GenericLookAt___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GenericLookAt___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GenericLookAt___VTable vtable; +}; + struct KeyValuePair_2_KnockoutRagdoll_GenericLookAt___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -254383,6 +257498,19 @@ struct AzazelIndoorsOutdoors { struct AzazelIndoorsOutdoors__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_System_Int32_ { + int32_t hashCode; + int32_t next; + struct Collider *key; + int32_t value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_System_Int32___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_System_Int32___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_System_Int32_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_Collider_System_Int32___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_System_Int32___Array *_entries; @@ -254402,19 +257530,6 @@ struct Dictionary_2_UnityEngine_Collider_System_Int32_ { struct Dictionary_2_UnityEngine_Collider_System_Int32___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_System_Int32_ { - int32_t hashCode; - int32_t next; - struct Collider *key; - int32_t value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_System_Int32___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_System_Int32___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_System_Int32_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_System_Int32___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_System_Int32___Array__Class *klass; MonitorData *monitor; @@ -257005,6 +260120,19 @@ struct BoarBehaviour { struct BoarBehaviour__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Color_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct Color value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Color___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Color___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Color_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_UnityEngine_Color___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Color___Array *_entries; @@ -257024,19 +260152,6 @@ struct Dictionary_2_System_String_UnityEngine_Color_ { struct Dictionary_2_System_String_UnityEngine_Color___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Color_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct Color value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Color___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Color___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Color_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Color___Array { struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Color___Array__Class *klass; MonitorData *monitor; @@ -257330,6 +260445,21 @@ struct ICollection_1_UnityEngine_Color___Class { struct ICollection_1_UnityEngine_Color___VTable vtable; }; +struct Color___VTable { +}; + +struct Color___StaticFields { +}; + +struct Color___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Color___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Color___VTable vtable; +}; + struct KeyValuePair_2_System_String_UnityEngine_Color___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -257852,6 +260982,19 @@ struct CrowBehaviour { struct CrowBehaviour__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_UnityEngine_Color_ { + int32_t hashCode; + int32_t next; + struct Material *key; + struct Color value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_UnityEngine_Color___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_UnityEngine_Color___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_UnityEngine_Color_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_Material_UnityEngine_Color___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_UnityEngine_Color___Array *_entries; @@ -257871,19 +261014,6 @@ struct Dictionary_2_UnityEngine_Material_UnityEngine_Color_ { struct Dictionary_2_UnityEngine_Material_UnityEngine_Color___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_UnityEngine_Color_ { - int32_t hashCode; - int32_t next; - struct Material *key; - struct Color value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_UnityEngine_Color___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_UnityEngine_Color___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_UnityEngine_Color_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_UnityEngine_Color___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_UnityEngine_Color___Array__Class *klass; MonitorData *monitor; @@ -258949,6 +262079,21 @@ struct GhostBehaviour__Class { struct GhostBehaviour__VTable vtable; }; +struct Material__1__VTable { +}; + +struct Material__1__StaticFields { +}; + +struct Material__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Material__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Material__1__VTable vtable; +}; + struct __declspec(align(8)) GhostBehaviour_Die_d_85__Fields { int32_t __1__state; struct Object *__2__current; @@ -262010,6 +265155,20 @@ struct AnnaBlendShapes { struct AnnaBlendShapes__Fields fields; }; +struct __declspec(align(8)) BlendShapesPresetControllerBase_BlendShapeState__Fields { + struct String *name; + float weight; + float modifierCount; + float totalWeight; + bool refresh; +}; + +struct BlendShapesPresetControllerBase_BlendShapeState { + struct BlendShapesPresetControllerBase_BlendShapeState__Class *klass; + MonitorData *monitor; + struct BlendShapesPresetControllerBase_BlendShapeState__Fields fields; +}; + struct BlendShapesPresetControllerBase__Fields { struct MonoBehaviour__Fields _; struct BlendShapesPresetTemplateBase *m_blendShapePreset; @@ -262041,19 +265200,6 @@ struct BlendShapesPresetTemplateBase { struct BlendShapesPresetTemplateBase__Fields fields; }; -struct __declspec(align(8)) List_1_Kalagaan_BlendShapesPresetTool_BlendShapesPresetTemplateBase_PresetData___Fields { - struct BlendShapesPresetTemplateBase_PresetData__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Kalagaan_BlendShapesPresetTool_BlendShapesPresetTemplateBase_PresetData_ { - struct List_1_Kalagaan_BlendShapesPresetTool_BlendShapesPresetTemplateBase_PresetData___Class *klass; - MonitorData *monitor; - struct List_1_Kalagaan_BlendShapesPresetTool_BlendShapesPresetTemplateBase_PresetData___Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class BlendShapesPresetTemplateBase_eBlendMode__Enum : int32_t { BLEND = 0x00000000, @@ -262097,17 +265243,17 @@ struct BlendShapesPresetTemplateBase_PresetData { struct BlendShapesPresetTemplateBase_PresetData__Fields fields; }; -struct __declspec(align(8)) List_1_Kalagaan_BlendShapesPresetTool_BlendShapesPresetTemplateBase_BlendShapeData___Fields { - struct BlendShapesPresetTemplateBase_BlendShapeData__Array *_items; +struct __declspec(align(8)) List_1_Kalagaan_BlendShapesPresetTool_BlendShapesPresetTemplateBase_PresetData___Fields { + struct BlendShapesPresetTemplateBase_PresetData__Array *_items; int32_t _size; int32_t _version; struct Object *_syncRoot; }; -struct List_1_Kalagaan_BlendShapesPresetTool_BlendShapesPresetTemplateBase_BlendShapeData_ { - struct List_1_Kalagaan_BlendShapesPresetTool_BlendShapesPresetTemplateBase_BlendShapeData___Class *klass; +struct List_1_Kalagaan_BlendShapesPresetTool_BlendShapesPresetTemplateBase_PresetData_ { + struct List_1_Kalagaan_BlendShapesPresetTool_BlendShapesPresetTemplateBase_PresetData___Class *klass; MonitorData *monitor; - struct List_1_Kalagaan_BlendShapesPresetTool_BlendShapesPresetTemplateBase_BlendShapeData___Fields fields; + struct List_1_Kalagaan_BlendShapesPresetTool_BlendShapesPresetTemplateBase_PresetData___Fields fields; }; struct __declspec(align(8)) BlendShapesPresetTemplateBase_BlendShapeData__Fields { @@ -262121,6 +265267,19 @@ struct BlendShapesPresetTemplateBase_BlendShapeData { struct BlendShapesPresetTemplateBase_BlendShapeData__Fields fields; }; +struct __declspec(align(8)) List_1_Kalagaan_BlendShapesPresetTool_BlendShapesPresetTemplateBase_BlendShapeData___Fields { + struct BlendShapesPresetTemplateBase_BlendShapeData__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Kalagaan_BlendShapesPresetTool_BlendShapesPresetTemplateBase_BlendShapeData_ { + struct List_1_Kalagaan_BlendShapesPresetTool_BlendShapesPresetTemplateBase_BlendShapeData___Class *klass; + MonitorData *monitor; + struct List_1_Kalagaan_BlendShapesPresetTool_BlendShapesPresetTemplateBase_BlendShapeData___Fields fields; +}; + struct BlendShapesPresetTemplateBase_BlendShapeData__Array { struct BlendShapesPresetTemplateBase_BlendShapeData__Array__Class *klass; MonitorData *monitor; @@ -262147,20 +265306,6 @@ struct IEnumerator_1_Kalagaan_BlendShapesPresetTool_BlendShapesPresetTemplateBas MonitorData *monitor; }; -struct __declspec(align(8)) BlendShapesPresetControllerBase_BlendShapeState__Fields { - struct String *name; - float weight; - float modifierCount; - float totalWeight; - bool refresh; -}; - -struct BlendShapesPresetControllerBase_BlendShapeState { - struct BlendShapesPresetControllerBase_BlendShapeState__Class *klass; - MonitorData *monitor; - struct BlendShapesPresetControllerBase_BlendShapeState__Fields fields; -}; - struct BlendShapesPresetControllerBase_BlendShapeState__Array { struct BlendShapesPresetControllerBase_BlendShapeState__Array__Class *klass; MonitorData *monitor; @@ -262169,6 +265314,17 @@ struct BlendShapesPresetControllerBase_BlendShapeState__Array { struct BlendShapesPresetControllerBase_BlendShapeState *vector[32]; }; +struct __declspec(align(8)) BlendShapesPresetControllerBase_PresetState__Fields { + struct String *name; + float weight; +}; + +struct BlendShapesPresetControllerBase_PresetState { + struct BlendShapesPresetControllerBase_PresetState__Class *klass; + MonitorData *monitor; + struct BlendShapesPresetControllerBase_PresetState__Fields fields; +}; + struct __declspec(align(8)) List_1_Kalagaan_BlendShapesPresetTool_BlendShapesPresetControllerBase_PresetState___Fields { struct BlendShapesPresetControllerBase_PresetState__Array *_items; int32_t _size; @@ -262182,17 +265338,6 @@ struct List_1_Kalagaan_BlendShapesPresetTool_BlendShapesPresetControllerBase_Pre struct List_1_Kalagaan_BlendShapesPresetTool_BlendShapesPresetControllerBase_PresetState___Fields fields; }; -struct __declspec(align(8)) BlendShapesPresetControllerBase_PresetState__Fields { - struct String *name; - float weight; -}; - -struct BlendShapesPresetControllerBase_PresetState { - struct BlendShapesPresetControllerBase_PresetState__Class *klass; - MonitorData *monitor; - struct BlendShapesPresetControllerBase_PresetState__Fields fields; -}; - struct BlendShapesPresetControllerBase_PresetState__Array { struct BlendShapesPresetControllerBase_PresetState__Array__Class *klass; MonitorData *monitor; @@ -263058,33 +266203,6 @@ struct ColliderAudio__Class { struct ColliderAudio__VTable vtable; }; -struct Dialogue__Fields { - struct MonoBehaviour__Fields _; - struct GameObject *altarObject; - struct DialogueManager *dialogueManager; - struct DialogueLine__Array *dialogueLines; -}; - -struct Dialogue { - struct Dialogue__Class *klass; - MonitorData *monitor; - struct Dialogue__Fields fields; -}; - -struct DialogueManager__Fields { - struct MonoBehaviour__Fields _; - struct CanvasGroup *subtitleCanvasGroup; - struct Text *subtitleText; - struct AudioSource *azazelAudioSource; - bool locked; -}; - -struct DialogueManager { - struct DialogueManager__Class *klass; - MonitorData *monitor; - struct DialogueManager__Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class DialogueManager_DialogueSpeaker__Enum : int32_t { Frederico = 0x00000000, @@ -263127,6 +266245,33 @@ struct DialogueLine { struct DialogueLine__Fields fields; }; +struct Dialogue__Fields { + struct MonoBehaviour__Fields _; + struct GameObject *altarObject; + struct DialogueManager *dialogueManager; + struct DialogueLine__Array *dialogueLines; +}; + +struct Dialogue { + struct Dialogue__Class *klass; + MonitorData *monitor; + struct Dialogue__Fields fields; +}; + +struct DialogueManager__Fields { + struct MonoBehaviour__Fields _; + struct CanvasGroup *subtitleCanvasGroup; + struct Text *subtitleText; + struct AudioSource *azazelAudioSource; + bool locked; +}; + +struct DialogueManager { + struct DialogueManager__Class *klass; + MonitorData *monitor; + struct DialogueManager__Fields fields; +}; + struct DialogueLine__Array { struct DialogueLine__Array__Class *klass; MonitorData *monitor; @@ -263766,6 +266911,24 @@ struct OffsetAudio__Class { struct OffsetAudio__VTable vtable; }; +struct __declspec(align(8)) OutdoorsAudio_AudioType__Fields { + struct AudioSource *audioSource; + float outdoorsVolume; + float indoorsVolume; + float fadeSpeed; + struct AudioLowPassFilter *lowPassFilter; + float windowVolume; + float targetVolume; + float targetCutoffFrequency; + float fadeSpeedM; +}; + +struct OutdoorsAudio_AudioType { + struct OutdoorsAudio_AudioType__Class *klass; + MonitorData *monitor; + struct OutdoorsAudio_AudioType__Fields fields; +}; + struct OutdoorsAudio__Fields { struct MonoBehaviour__Fields _; struct Survival *survival; @@ -263803,24 +266966,6 @@ struct OutdoorsAudio { struct OutdoorsAudio__Fields fields; }; -struct __declspec(align(8)) OutdoorsAudio_AudioType__Fields { - struct AudioSource *audioSource; - float outdoorsVolume; - float indoorsVolume; - float fadeSpeed; - struct AudioLowPassFilter *lowPassFilter; - float windowVolume; - float targetVolume; - float targetCutoffFrequency; - float fadeSpeedM; -}; - -struct OutdoorsAudio_AudioType { - struct OutdoorsAudio_AudioType__Class *klass; - MonitorData *monitor; - struct OutdoorsAudio_AudioType__Fields fields; -}; - struct OutdoorsAudio_AudioType__Array { struct OutdoorsAudio_AudioType__Array__Class *klass; MonitorData *monitor; @@ -263829,19 +266974,6 @@ struct OutdoorsAudio_AudioType__Array { struct OutdoorsAudio_AudioType *vector[32]; }; -struct __declspec(align(8)) List_1_OutdoorsAudioWindowPoint___Fields { - struct OutdoorsAudioWindowPoint__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_OutdoorsAudioWindowPoint_ { - struct List_1_OutdoorsAudioWindowPoint___Class *klass; - MonitorData *monitor; - struct List_1_OutdoorsAudioWindowPoint___Fields fields; -}; - struct OutdoorsAudioWindowPoint__Fields { struct MonoBehaviour__Fields _; struct DoorBehaviour *door; @@ -263863,27 +266995,17 @@ struct OutdoorsAudioWindowPoint { struct OutdoorsAudioWindowPoint__Fields fields; }; -struct WindowSmasherIndividual__Fields { - struct MonoBehaviour__Fields _; - float shatterForce; - float shardsLifetime; - struct GameObject *glass; - struct ParticleSystem *shardsParticles; - struct ParticleSystem *windParticles; - struct ParticleSystem *sandstormParticles; - struct ParticleSystem *stormParticles2; - bool playSandstormOnceSmashed; - struct Survival *survival; - struct ShatterableGlass__Array *shatterableGlasses; - bool hasBeenSmashed; - bool sandstormStarted; - int32_t progress; +struct __declspec(align(8)) List_1_OutdoorsAudioWindowPoint___Fields { + struct OutdoorsAudioWindowPoint__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; }; -struct WindowSmasherIndividual { - struct WindowSmasherIndividual__Class *klass; +struct List_1_OutdoorsAudioWindowPoint_ { + struct List_1_OutdoorsAudioWindowPoint___Class *klass; MonitorData *monitor; - struct WindowSmasherIndividual__Fields fields; + struct List_1_OutdoorsAudioWindowPoint___Fields fields; }; struct ShatterableGlass__Fields { @@ -263915,6 +267037,29 @@ struct ShatterableGlass { struct ShatterableGlass__Fields fields; }; +struct WindowSmasherIndividual__Fields { + struct MonoBehaviour__Fields _; + float shatterForce; + float shardsLifetime; + struct GameObject *glass; + struct ParticleSystem *shardsParticles; + struct ParticleSystem *windParticles; + struct ParticleSystem *sandstormParticles; + struct ParticleSystem *stormParticles2; + bool playSandstormOnceSmashed; + struct Survival *survival; + struct ShatterableGlass__Array *shatterableGlasses; + bool hasBeenSmashed; + bool sandstormStarted; + int32_t progress; +}; + +struct WindowSmasherIndividual { + struct WindowSmasherIndividual__Class *klass; + MonitorData *monitor; + struct WindowSmasherIndividual__Fields fields; +}; + struct ShatterableGlass__Array { struct ShatterableGlass__Array__Class *klass; MonitorData *monitor; @@ -264561,6 +267706,19 @@ struct WindowAudioTrigger { struct WindowAudioTrigger__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_AudioSource_System_Single_ { + int32_t hashCode; + int32_t next; + struct AudioSource *key; + float value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_AudioSource_System_Single___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_AudioSource_System_Single___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_AudioSource_System_Single_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_AudioSource_System_Single___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_AudioSource_System_Single___Array *_entries; @@ -264580,19 +267738,6 @@ struct Dictionary_2_UnityEngine_AudioSource_System_Single_ { struct Dictionary_2_UnityEngine_AudioSource_System_Single___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_AudioSource_System_Single_ { - int32_t hashCode; - int32_t next; - struct AudioSource *key; - float value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_AudioSource_System_Single___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_AudioSource_System_Single___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_AudioSource_System_Single_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_AudioSource_System_Single___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_AudioSource_System_Single___Array__Class *klass; MonitorData *monitor; @@ -266078,6 +269223,106 @@ struct PlayableAsset { struct PlayableAsset__Fields fields; }; +#if defined(_CPLUSPLUS_) +enum class TimelineClip_BlendCurveMode__Enum : int32_t { + Auto = 0x00000000, + Manual = 0x00000001, +}; + +#else +enum TimelineClip_BlendCurveMode__Enum { + TimelineClip_BlendCurveMode__Enum_Auto = 0x00000000, + TimelineClip_BlendCurveMode__Enum_Manual = 0x00000001, +}; + +#endif +struct TimelineClip_BlendCurveMode__Enum__Boxed { + struct TimelineClip_BlendCurveMode__Enum__Class *klass; + MonitorData *monitor; + #if defined(_CPLUSPLUS_) + TimelineClip_BlendCurveMode__Enum value; + #else + int32_t value; + #endif +}; + +#if defined(_CPLUSPLUS_) +enum class TimelineClip_ClipExtrapolation__Enum : int32_t { + None = 0x00000000, + Hold = 0x00000001, + Loop = 0x00000002, + PingPong = 0x00000003, + Continue = 0x00000004, +}; + +#else +enum TimelineClip_ClipExtrapolation__Enum { + TimelineClip_ClipExtrapolation__Enum_None = 0x00000000, + TimelineClip_ClipExtrapolation__Enum_Hold = 0x00000001, + TimelineClip_ClipExtrapolation__Enum_Loop = 0x00000002, + TimelineClip_ClipExtrapolation__Enum_PingPong = 0x00000003, + TimelineClip_ClipExtrapolation__Enum_Continue = 0x00000004, +}; + +#endif +struct TimelineClip_ClipExtrapolation__Enum__Boxed { + struct TimelineClip_ClipExtrapolation__Enum__Class *klass; + MonitorData *monitor; + #if defined(_CPLUSPLUS_) + TimelineClip_ClipExtrapolation__Enum value; + #else + int32_t value; + #endif +}; + +struct __declspec(align(8)) TimelineClip__Fields { + int32_t m_Version; + double m_Start; + double m_ClipIn; + struct Object_1 *m_Asset; + double m_Duration; + double m_TimeScale; + struct TrackAsset *m_ParentTrack; + double m_EaseInDuration; + double m_EaseOutDuration; + double m_BlendInDuration; + double m_BlendOutDuration; + struct AnimationCurve *m_MixInCurve; + struct AnimationCurve *m_MixOutCurve; + #if defined(_CPLUSPLUS_) + TimelineClip_BlendCurveMode__Enum m_BlendInCurveMode; + #else + int32_t m_BlendInCurveMode; + #endif + #if defined(_CPLUSPLUS_) + TimelineClip_BlendCurveMode__Enum m_BlendOutCurveMode; + #else + int32_t m_BlendOutCurveMode; + #endif + struct List_1_System_String_ *m_ExposedParameterNames; + struct AnimationClip *m_AnimationCurves; + bool m_Recordable; + #if defined(_CPLUSPLUS_) + TimelineClip_ClipExtrapolation__Enum m_PostExtrapolationMode; + #else + int32_t m_PostExtrapolationMode; + #endif + #if defined(_CPLUSPLUS_) + TimelineClip_ClipExtrapolation__Enum m_PreExtrapolationMode; + #else + int32_t m_PreExtrapolationMode; + #endif + double m_PostExtrapolationTime; + double m_PreExtrapolationTime; + struct String *m_DisplayName; +}; + +struct TimelineClip { + struct TimelineClip__Class *klass; + MonitorData *monitor; + struct TimelineClip__Fields fields; +}; + struct DiscreteTime { int64_t m_DiscreteTime; }; @@ -266405,106 +269650,6 @@ struct List_1_UnityEngine_Timeline_TimelineClip_ { struct List_1_UnityEngine_Timeline_TimelineClip___Fields fields; }; -#if defined(_CPLUSPLUS_) -enum class TimelineClip_BlendCurveMode__Enum : int32_t { - Auto = 0x00000000, - Manual = 0x00000001, -}; - -#else -enum TimelineClip_BlendCurveMode__Enum { - TimelineClip_BlendCurveMode__Enum_Auto = 0x00000000, - TimelineClip_BlendCurveMode__Enum_Manual = 0x00000001, -}; - -#endif -struct TimelineClip_BlendCurveMode__Enum__Boxed { - struct TimelineClip_BlendCurveMode__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - TimelineClip_BlendCurveMode__Enum value; - #else - int32_t value; - #endif -}; - -#if defined(_CPLUSPLUS_) -enum class TimelineClip_ClipExtrapolation__Enum : int32_t { - None = 0x00000000, - Hold = 0x00000001, - Loop = 0x00000002, - PingPong = 0x00000003, - Continue = 0x00000004, -}; - -#else -enum TimelineClip_ClipExtrapolation__Enum { - TimelineClip_ClipExtrapolation__Enum_None = 0x00000000, - TimelineClip_ClipExtrapolation__Enum_Hold = 0x00000001, - TimelineClip_ClipExtrapolation__Enum_Loop = 0x00000002, - TimelineClip_ClipExtrapolation__Enum_PingPong = 0x00000003, - TimelineClip_ClipExtrapolation__Enum_Continue = 0x00000004, -}; - -#endif -struct TimelineClip_ClipExtrapolation__Enum__Boxed { - struct TimelineClip_ClipExtrapolation__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - TimelineClip_ClipExtrapolation__Enum value; - #else - int32_t value; - #endif -}; - -struct __declspec(align(8)) TimelineClip__Fields { - int32_t m_Version; - double m_Start; - double m_ClipIn; - struct Object_1 *m_Asset; - double m_Duration; - double m_TimeScale; - struct TrackAsset *m_ParentTrack; - double m_EaseInDuration; - double m_EaseOutDuration; - double m_BlendInDuration; - double m_BlendOutDuration; - struct AnimationCurve *m_MixInCurve; - struct AnimationCurve *m_MixOutCurve; - #if defined(_CPLUSPLUS_) - TimelineClip_BlendCurveMode__Enum m_BlendInCurveMode; - #else - int32_t m_BlendInCurveMode; - #endif - #if defined(_CPLUSPLUS_) - TimelineClip_BlendCurveMode__Enum m_BlendOutCurveMode; - #else - int32_t m_BlendOutCurveMode; - #endif - struct List_1_System_String_ *m_ExposedParameterNames; - struct AnimationClip *m_AnimationCurves; - bool m_Recordable; - #if defined(_CPLUSPLUS_) - TimelineClip_ClipExtrapolation__Enum m_PostExtrapolationMode; - #else - int32_t m_PostExtrapolationMode; - #endif - #if defined(_CPLUSPLUS_) - TimelineClip_ClipExtrapolation__Enum m_PreExtrapolationMode; - #else - int32_t m_PreExtrapolationMode; - #endif - double m_PostExtrapolationTime; - double m_PreExtrapolationTime; - struct String *m_DisplayName; -}; - -struct TimelineClip { - struct TimelineClip__Class *klass; - MonitorData *monitor; - struct TimelineClip__Fields fields; -}; - struct TimelineClip__Array { struct TimelineClip__Array__Class *klass; MonitorData *monitor; @@ -266518,6 +269663,11 @@ struct IEnumerator_1_UnityEngine_Timeline_TimelineClip_ { MonitorData *monitor; }; +struct IMarker { + struct IMarker__Class *klass; + MonitorData *monitor; +}; + struct __declspec(align(8)) List_1_UnityEngine_Timeline_IMarker___Fields { struct IMarker__Array *_items; int32_t _size; @@ -266531,11 +269681,6 @@ struct List_1_UnityEngine_Timeline_IMarker_ { struct List_1_UnityEngine_Timeline_IMarker___Fields fields; }; -struct IMarker { - struct IMarker__Class *klass; - MonitorData *monitor; -}; - struct IMarker__Array { struct IMarker__Array__Class *klass; MonitorData *monitor; @@ -266600,6 +269745,19 @@ struct IEnumerable_1_UnityEngine_Timeline_TrackAsset_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Timeline_TrackBindingTypeAttribute_ { + int32_t hashCode; + int32_t next; + struct Type *key; + struct TrackBindingTypeAttribute *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Timeline_TrackBindingTypeAttribute___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Timeline_TrackBindingTypeAttribute___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Timeline_TrackBindingTypeAttribute_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Type_UnityEngine_Timeline_TrackBindingTypeAttribute___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Timeline_TrackBindingTypeAttribute___Array *_entries; @@ -266619,19 +269777,6 @@ struct Dictionary_2_System_Type_UnityEngine_Timeline_TrackBindingTypeAttribute_ struct Dictionary_2_System_Type_UnityEngine_Timeline_TrackBindingTypeAttribute___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Timeline_TrackBindingTypeAttribute_ { - int32_t hashCode; - int32_t next; - struct Type *key; - struct TrackBindingTypeAttribute *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Timeline_TrackBindingTypeAttribute___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Timeline_TrackBindingTypeAttribute___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Timeline_TrackBindingTypeAttribute_ fields; -}; - #if defined(_CPLUSPLUS_) enum class TrackBindingFlags__Enum : int32_t { None = 0x00000000, @@ -266769,6 +269914,18 @@ struct IntervalTree_1_RuntimeElement_ { struct IntervalTree_1_RuntimeElement___Fields fields; }; +struct IntervalTree_1_T_Entry_RuntimeElement_ { + int64_t intervalStart; + int64_t intervalEnd; + struct RuntimeElement *item; +}; + +struct IntervalTree_1_T_Entry_RuntimeElement___Boxed { + struct IntervalTree_1_T_Entry_RuntimeElement___Class *klass; + MonitorData *monitor; + struct IntervalTree_1_T_Entry_RuntimeElement_ fields; +}; + struct __declspec(align(8)) List_1_UnityEngine_Timeline_IntervalTree_1_Entry___Fields { struct IntervalTree_1_T_Entry_RuntimeElement___Array *_items; int32_t _size; @@ -266782,18 +269939,6 @@ struct List_1_UnityEngine_Timeline_IntervalTree_1_Entry_ { struct List_1_UnityEngine_Timeline_IntervalTree_1_Entry___Fields fields; }; -struct IntervalTree_1_T_Entry_RuntimeElement_ { - int64_t intervalStart; - int64_t intervalEnd; - struct RuntimeElement *item; -}; - -struct IntervalTree_1_T_Entry_RuntimeElement___Boxed { - struct IntervalTree_1_T_Entry_RuntimeElement___Class *klass; - MonitorData *monitor; - struct IntervalTree_1_T_Entry_RuntimeElement_ fields; -}; - struct __declspec(align(8)) RuntimeElement__Fields { int32_t _intervalBit_k__BackingField; }; @@ -266828,19 +269973,6 @@ struct IEnumerator_1_UnityEngine_Timeline_IntervalTree_1_Entry_ { MonitorData *monitor; }; -struct __declspec(align(8)) List_1_UnityEngine_Timeline_IntervalTreeNode___Fields { - struct IntervalTreeNode__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_Timeline_IntervalTreeNode_ { - struct List_1_UnityEngine_Timeline_IntervalTreeNode___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_Timeline_IntervalTreeNode___Fields fields; -}; - struct IntervalTreeNode { int64_t center; int32_t first; @@ -266855,6 +269987,19 @@ struct IntervalTreeNode__Boxed { struct IntervalTreeNode fields; }; +struct __declspec(align(8)) List_1_UnityEngine_Timeline_IntervalTreeNode___Fields { + struct IntervalTreeNode__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_Timeline_IntervalTreeNode_ { + struct List_1_UnityEngine_Timeline_IntervalTreeNode___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_Timeline_IntervalTreeNode___Fields fields; +}; + struct IntervalTreeNode__Array { struct IntervalTreeNode__Array__Class *klass; MonitorData *monitor; @@ -268120,6 +271265,21 @@ struct ICollection_1_UnityEngine_Timeline_TrackBindingTypeAttribute___Class { struct ICollection_1_UnityEngine_Timeline_TrackBindingTypeAttribute___VTable vtable; }; +struct TrackBindingTypeAttribute___VTable { +}; + +struct TrackBindingTypeAttribute___StaticFields { +}; + +struct TrackBindingTypeAttribute___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TrackBindingTypeAttribute___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TrackBindingTypeAttribute___VTable vtable; +}; + struct KeyValuePair_2_System_Type_UnityEngine_Timeline_TrackBindingTypeAttribute___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -268911,6 +272071,17 @@ struct AsylumWinEndingController { struct AsylumWinEndingController__Fields fields; }; +struct __declspec(align(8)) AsylumWinEndingController_PlayerPrefab__Fields { + struct String *name; + struct IPlayerState *state; +}; + +struct AsylumWinEndingController_PlayerPrefab { + struct AsylumWinEndingController_PlayerPrefab__Class *klass; + MonitorData *monitor; + struct AsylumWinEndingController_PlayerPrefab__Fields fields; +}; + struct __declspec(align(8)) List_1_AsylumWinEndingController_PlayerPrefab___Fields { struct AsylumWinEndingController_PlayerPrefab__Array *_items; int32_t _size; @@ -268924,17 +272095,6 @@ struct List_1_AsylumWinEndingController_PlayerPrefab_ { struct List_1_AsylumWinEndingController_PlayerPrefab___Fields fields; }; -struct __declspec(align(8)) AsylumWinEndingController_PlayerPrefab__Fields { - struct String *name; - struct IPlayerState *state; -}; - -struct AsylumWinEndingController_PlayerPrefab { - struct AsylumWinEndingController_PlayerPrefab__Class *klass; - MonitorData *monitor; - struct AsylumWinEndingController_PlayerPrefab__Fields fields; -}; - struct AsylumWinEndingController_PlayerPrefab__Array { struct AsylumWinEndingController_PlayerPrefab__Array__Class *klass; MonitorData *monitor; @@ -270481,17 +273641,6 @@ struct SignalEmitterWithVector3Vector3Float__Class { struct SignalEmitterWithVector3Vector3Float__VTable vtable; }; -struct SignalReceiverWithTransformOffsets__Fields { - struct MonoBehaviour__Fields _; - struct SignalReceiverWithTransformOffsets_SignalAssetEventPair__Array *signalAssetEventPairs; -}; - -struct SignalReceiverWithTransformOffsets { - struct SignalReceiverWithTransformOffsets__Class *klass; - MonitorData *monitor; - struct SignalReceiverWithTransformOffsets__Fields fields; -}; - struct __declspec(align(8)) SignalReceiverWithTransformOffsets_SignalAssetEventPair__Fields { struct SignalAsset *signalAsset; struct SignalReceiverWithTransformOffsets_SignalAssetEventPair_ParameterizedEvent *events; @@ -270503,6 +273652,17 @@ struct SignalReceiverWithTransformOffsets_SignalAssetEventPair { struct SignalReceiverWithTransformOffsets_SignalAssetEventPair__Fields fields; }; +struct SignalReceiverWithTransformOffsets__Fields { + struct MonoBehaviour__Fields _; + struct SignalReceiverWithTransformOffsets_SignalAssetEventPair__Array *signalAssetEventPairs; +}; + +struct SignalReceiverWithTransformOffsets { + struct SignalReceiverWithTransformOffsets__Class *klass; + MonitorData *monitor; + struct SignalReceiverWithTransformOffsets__Fields fields; +}; + struct SignalReceiverWithTransformOffsets_SignalAssetEventPair_ParameterizedEvent__Fields { struct UnityEvent_2_UnityEngine_Vector3_System_Single___Fields _; }; @@ -270648,17 +273808,6 @@ struct SignalReceiverWithTransformOffsets_c_DisplayClass2_0__Class { struct SignalReceiverWithTransformOffsets_c_DisplayClass2_0__VTable vtable; }; -struct SignalReceiverWithTransformOffsetsFullRot__Fields { - struct MonoBehaviour__Fields _; - struct SignalReceiverWithTransformOffsetsFullRot_SignalAssetEventPair__Array *signalAssetEventPairs; -}; - -struct SignalReceiverWithTransformOffsetsFullRot { - struct SignalReceiverWithTransformOffsetsFullRot__Class *klass; - MonitorData *monitor; - struct SignalReceiverWithTransformOffsetsFullRot__Fields fields; -}; - struct __declspec(align(8)) SignalReceiverWithTransformOffsetsFullRot_SignalAssetEventPair__Fields { struct SignalAsset *signalAsset; struct SignalReceiverWithTransformOffsetsFullRot_SignalAssetEventPair_ParameterizedEvent *events; @@ -270670,6 +273819,17 @@ struct SignalReceiverWithTransformOffsetsFullRot_SignalAssetEventPair { struct SignalReceiverWithTransformOffsetsFullRot_SignalAssetEventPair__Fields fields; }; +struct SignalReceiverWithTransformOffsetsFullRot__Fields { + struct MonoBehaviour__Fields _; + struct SignalReceiverWithTransformOffsetsFullRot_SignalAssetEventPair__Array *signalAssetEventPairs; +}; + +struct SignalReceiverWithTransformOffsetsFullRot { + struct SignalReceiverWithTransformOffsetsFullRot__Class *klass; + MonitorData *monitor; + struct SignalReceiverWithTransformOffsetsFullRot__Fields fields; +}; + struct UnityEvent_2_UnityEngine_Vector3_UnityEngine_Vector3___Fields { struct UnityEventBase__Fields _; struct Object__Array *m_InvokeArray; @@ -270828,17 +273988,6 @@ struct SignalReceiverWithTransformOffsetsFullRot_c_DisplayClass2_0__Class { struct SignalReceiverWithTransformOffsetsFullRot_c_DisplayClass2_0__VTable vtable; }; -struct SignalReceiverWithVector3__Fields { - struct MonoBehaviour__Fields _; - struct SignalReceiverWithVector3_SignalAssetEventPair__Array *signalAssetEventPairs; -}; - -struct SignalReceiverWithVector3 { - struct SignalReceiverWithVector3__Class *klass; - MonitorData *monitor; - struct SignalReceiverWithVector3__Fields fields; -}; - struct __declspec(align(8)) SignalReceiverWithVector3_SignalAssetEventPair__Fields { struct SignalAsset *signalAsset; struct SignalReceiverWithVector3_SignalAssetEventPair_ParameterizedEvent *events; @@ -270850,6 +273999,17 @@ struct SignalReceiverWithVector3_SignalAssetEventPair { struct SignalReceiverWithVector3_SignalAssetEventPair__Fields fields; }; +struct SignalReceiverWithVector3__Fields { + struct MonoBehaviour__Fields _; + struct SignalReceiverWithVector3_SignalAssetEventPair__Array *signalAssetEventPairs; +}; + +struct SignalReceiverWithVector3 { + struct SignalReceiverWithVector3__Class *klass; + MonitorData *monitor; + struct SignalReceiverWithVector3__Fields fields; +}; + struct UnityEvent_1_UnityEngine_Vector3___Fields { struct UnityEventBase__Fields _; struct Object__Array *m_InvokeArray; @@ -271008,17 +274168,6 @@ struct SignalReceiverWithVector3_c_DisplayClass2_0__Class { struct SignalReceiverWithVector3_c_DisplayClass2_0__VTable vtable; }; -struct SignalReceiverWithVector3Vector3Float__Fields { - struct MonoBehaviour__Fields _; - struct SignalReceiverWithVector3Vector3Float_SignalAssetEventPair__Array *signalAssetEventPairs; -}; - -struct SignalReceiverWithVector3Vector3Float { - struct SignalReceiverWithVector3Vector3Float__Class *klass; - MonitorData *monitor; - struct SignalReceiverWithVector3Vector3Float__Fields fields; -}; - struct __declspec(align(8)) SignalReceiverWithVector3Vector3Float_SignalAssetEventPair__Fields { struct SignalAsset *signalAsset; struct SignalReceiverWithVector3Vector3Float_SignalAssetEventPair_ParameterizedEvent *events; @@ -271030,6 +274179,17 @@ struct SignalReceiverWithVector3Vector3Float_SignalAssetEventPair { struct SignalReceiverWithVector3Vector3Float_SignalAssetEventPair__Fields fields; }; +struct SignalReceiverWithVector3Vector3Float__Fields { + struct MonoBehaviour__Fields _; + struct SignalReceiverWithVector3Vector3Float_SignalAssetEventPair__Array *signalAssetEventPairs; +}; + +struct SignalReceiverWithVector3Vector3Float { + struct SignalReceiverWithVector3Vector3Float__Class *klass; + MonitorData *monitor; + struct SignalReceiverWithVector3Vector3Float__Fields fields; +}; + struct UnityEvent_3_UnityEngine_Vector3_UnityEngine_Vector3_System_Single___Fields { struct UnityEventBase__Fields _; struct Object__Array *m_InvokeArray; @@ -272022,6 +275182,17 @@ struct WinEndingController { struct WinEndingController__Fields fields; }; +struct __declspec(align(8)) WinEndingController_PlayerPrefab__Fields { + struct String *name; + struct IPlayerState *state; +}; + +struct WinEndingController_PlayerPrefab { + struct WinEndingController_PlayerPrefab__Class *klass; + MonitorData *monitor; + struct WinEndingController_PlayerPrefab__Fields fields; +}; + struct __declspec(align(8)) List_1_WinEndingController_PlayerPrefab___Fields { struct WinEndingController_PlayerPrefab__Array *_items; int32_t _size; @@ -272035,17 +275206,6 @@ struct List_1_WinEndingController_PlayerPrefab_ { struct List_1_WinEndingController_PlayerPrefab___Fields fields; }; -struct __declspec(align(8)) WinEndingController_PlayerPrefab__Fields { - struct String *name; - struct IPlayerState *state; -}; - -struct WinEndingController_PlayerPrefab { - struct WinEndingController_PlayerPrefab__Class *klass; - MonitorData *monitor; - struct WinEndingController_PlayerPrefab__Fields fields; -}; - struct WinEndingController_PlayerPrefab__Array { struct WinEndingController_PlayerPrefab__Array__Class *klass; MonitorData *monitor; @@ -274181,6 +277341,21 @@ struct User__Class { struct User__VTable vtable; }; +struct User___VTable { +}; + +struct User___StaticFields { +}; + +struct User___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct User___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct User___VTable vtable; +}; + struct ActivityManager_FFIEvents_ActivityJoinRequestHandler__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -274440,6 +277615,21 @@ struct Activity__Class { struct Activity__VTable vtable; }; +struct Activity___VTable { +}; + +struct Activity___StaticFields { +}; + +struct Activity___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Activity___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Activity___VTable vtable; +}; + struct ActivityManager_FFIEvents_ActivityInviteHandler__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -274778,6 +277968,21 @@ struct Relationship__Class { struct Relationship__VTable vtable; }; +struct Relationship___VTable { +}; + +struct Relationship___StaticFields { +}; + +struct Relationship___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Relationship___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Relationship___VTable vtable; +}; + struct RelationshipManager_FFIEvents_RelationshipUpdateHandler__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -275800,6 +279005,21 @@ struct Entitlement__Class { struct Entitlement__VTable vtable; }; +struct Entitlement___VTable { +}; + +struct Entitlement___StaticFields { +}; + +struct Entitlement___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Entitlement___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Entitlement___VTable vtable; +}; + struct StoreManager_FFIEvents_EntitlementCreateHandler__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -276081,6 +279301,21 @@ struct UserAchievement__Class { struct UserAchievement__VTable vtable; }; +struct UserAchievement___VTable { +}; + +struct UserAchievement___StaticFields { +}; + +struct UserAchievement___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UserAchievement___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UserAchievement___VTable vtable; +}; + struct AchievementManager_FFIEvents_UserAchievementUpdateHandler__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -276903,6 +280138,36 @@ struct VoiceReverbTrigger_FadePreset_d_12__Class { struct VoiceReverbTrigger_FadePreset_d_12__VTable vtable; }; +struct Bounds___VTable { +}; + +struct Bounds___StaticFields { +}; + +struct Bounds___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Bounds___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Bounds___VTable vtable; +}; + +struct GraphUpdateShape___VTable { +}; + +struct GraphUpdateShape___StaticFields { +}; + +struct GraphUpdateShape___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GraphUpdateShape___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GraphUpdateShape___VTable vtable; +}; + struct EntityEventListenerBase_1_Photon_Bolt_IDoorNumberState___Fields { struct EntityEventListenerBase__Fields _; }; @@ -277822,25 +281087,6 @@ struct FlashlightBeamWind { struct FlashlightBeamWind__Fields fields; }; -struct __declspec(align(8)) Dictionary_2_System_Int32_PlayerFlashlightBeam___Fields { - struct Int32__Array *_buckets; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_PlayerFlashlightBeam___Array *_entries; - int32_t _count; - int32_t _freeList; - int32_t _freeCount; - int32_t _version; - struct IEqualityComparer_1_System_Int32_ *_comparer; - struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32_PlayerFlashlightBeam_ *_keys; - struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_PlayerFlashlightBeam_ *_values; - struct Object *_syncRoot; -}; - -struct Dictionary_2_System_Int32_PlayerFlashlightBeam_ { - struct Dictionary_2_System_Int32_PlayerFlashlightBeam___Class *klass; - MonitorData *monitor; - struct Dictionary_2_System_Int32_PlayerFlashlightBeam___Fields fields; -}; - struct PlayerFlashlightBeam { int32_t collisions; struct NolanBehaviour *nolanBehaviour; @@ -277865,6 +281111,25 @@ struct Dictionary_2_TKey_TValue_Entry_System_Int32_PlayerFlashlightBeam___Boxed struct Dictionary_2_TKey_TValue_Entry_System_Int32_PlayerFlashlightBeam_ fields; }; +struct __declspec(align(8)) Dictionary_2_System_Int32_PlayerFlashlightBeam___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_PlayerFlashlightBeam___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_System_Int32_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32_PlayerFlashlightBeam_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_PlayerFlashlightBeam_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_System_Int32_PlayerFlashlightBeam_ { + struct Dictionary_2_System_Int32_PlayerFlashlightBeam___Class *klass; + MonitorData *monitor; + struct Dictionary_2_System_Int32_PlayerFlashlightBeam___Fields fields; +}; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_PlayerFlashlightBeam___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_PlayerFlashlightBeam___Array__Class *klass; MonitorData *monitor; @@ -278112,6 +281377,21 @@ struct ICollection_1_PlayerFlashlightBeam___Class { struct ICollection_1_PlayerFlashlightBeam___VTable vtable; }; +struct PlayerFlashlightBeam___VTable { +}; + +struct PlayerFlashlightBeam___StaticFields { +}; + +struct PlayerFlashlightBeam___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PlayerFlashlightBeam___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PlayerFlashlightBeam___VTable vtable; +}; + struct KeyValuePair_2_System_Int32_PlayerFlashlightBeam___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -279094,6 +282374,17 @@ struct NightmareLight__Class { struct NightmareLight__VTable vtable; }; +struct NightmareStyling_WallMaterial { + struct Material *original; + struct Material *replacement; +}; + +struct NightmareStyling_WallMaterial__Boxed { + struct NightmareStyling_WallMaterial__Class *klass; + MonitorData *monitor; + struct NightmareStyling_WallMaterial fields; +}; + struct NightmareStyling__Fields { struct MonoBehaviour__Fields _; struct Material__Array *floorMaterials; @@ -279108,17 +282399,6 @@ struct NightmareStyling { struct NightmareStyling__Fields fields; }; -struct NightmareStyling_WallMaterial { - struct Material *original; - struct Material *replacement; -}; - -struct NightmareStyling_WallMaterial__Boxed { - struct NightmareStyling_WallMaterial__Class *klass; - MonitorData *monitor; - struct NightmareStyling_WallMaterial fields; -}; - struct NightmareStyling_WallMaterial__Array { struct NightmareStyling_WallMaterial__Array__Class *klass; MonitorData *monitor; @@ -281868,6 +285148,19 @@ struct IEnumerator_1_Coffee_UIEffects_GraphicConnector_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Type_Coffee_UIEffects_GraphicConnector_ { + int32_t hashCode; + int32_t next; + struct Type *key; + struct GraphicConnector *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_Coffee_UIEffects_GraphicConnector___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Type_Coffee_UIEffects_GraphicConnector___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Type_Coffee_UIEffects_GraphicConnector_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Type_Coffee_UIEffects_GraphicConnector___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Type_Coffee_UIEffects_GraphicConnector___Array *_entries; @@ -281887,19 +285180,6 @@ struct Dictionary_2_System_Type_Coffee_UIEffects_GraphicConnector_ { struct Dictionary_2_System_Type_Coffee_UIEffects_GraphicConnector___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Type_Coffee_UIEffects_GraphicConnector_ { - int32_t hashCode; - int32_t next; - struct Type *key; - struct GraphicConnector *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Type_Coffee_UIEffects_GraphicConnector___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Type_Coffee_UIEffects_GraphicConnector___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Type_Coffee_UIEffects_GraphicConnector_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Type_Coffee_UIEffects_GraphicConnector___Array { struct Dictionary_2_TKey_TValue_Entry_System_Type_Coffee_UIEffects_GraphicConnector___Array__Class *klass; MonitorData *monitor; @@ -282033,19 +285313,6 @@ struct Matrix2x3__Boxed { struct Matrix2x3 fields; }; -struct __declspec(align(8)) List_1_Coffee_UIEffects_UISyncEffect___Fields { - struct UISyncEffect__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Coffee_UIEffects_UISyncEffect_ { - struct List_1_Coffee_UIEffects_UISyncEffect___Class *klass; - MonitorData *monitor; - struct List_1_Coffee_UIEffects_UISyncEffect___Fields fields; -}; - struct Hash128 { uint64_t u64_0; uint64_t u64_1; @@ -282080,6 +285347,19 @@ struct UISyncEffect { struct UISyncEffect__Fields fields; }; +struct __declspec(align(8)) List_1_Coffee_UIEffects_UISyncEffect___Fields { + struct UISyncEffect__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Coffee_UIEffects_UISyncEffect_ { + struct List_1_Coffee_UIEffects_UISyncEffect___Class *klass; + MonitorData *monitor; + struct List_1_Coffee_UIEffects_UISyncEffect___Fields fields; +}; + struct __declspec(align(8)) ParameterTexture__Fields { struct Texture2D *_texture; bool _needUpload; @@ -282340,6 +285620,21 @@ struct ICollection_1_Coffee_UIEffects_GraphicConnector___Class { struct ICollection_1_Coffee_UIEffects_GraphicConnector___VTable vtable; }; +struct GraphicConnector___VTable { +}; + +struct GraphicConnector___StaticFields { +}; + +struct GraphicConnector___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GraphicConnector___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GraphicConnector___VTable vtable; +}; + struct KeyValuePair_2_System_Type_Coffee_UIEffects_GraphicConnector___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -282541,6 +285836,21 @@ struct EffectArea__Enum__Class { struct EffectArea__Enum__VTable vtable; }; +struct UIVertex___VTable { +}; + +struct UIVertex___StaticFields { +}; + +struct UIVertex___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UIVertex___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UIVertex___VTable vtable; +}; + struct Matrix2x3__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -282560,6 +285870,21 @@ struct Matrix2x3__Class { struct Matrix2x3__VTable vtable; }; +struct Vector2___VTable { +}; + +struct Vector2___StaticFields { +}; + +struct Vector2___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Vector2___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Vector2___VTable vtable; +}; + struct GraphicConnector__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -283228,6 +286553,17 @@ struct IngameStatsTracker { struct IngameStatsTracker__Fields fields; }; +struct __declspec(align(8)) IngameStatsTracker_StatsPlayer__Fields { + struct IngameStatsTracker_StatsPlayer_PlayerInfo *playerInfo; + struct IngameStatsTracker_StatsPlayer_Stats *stats; +}; + +struct IngameStatsTracker_StatsPlayer { + struct IngameStatsTracker_StatsPlayer__Class *klass; + MonitorData *monitor; + struct IngameStatsTracker_StatsPlayer__Fields fields; +}; + struct __declspec(align(8)) List_1_IngameStatsTracker_StatsPlayer___Fields { struct IngameStatsTracker_StatsPlayer__Array *_items; int32_t _size; @@ -283241,17 +286577,6 @@ struct List_1_IngameStatsTracker_StatsPlayer_ { struct List_1_IngameStatsTracker_StatsPlayer___Fields fields; }; -struct __declspec(align(8)) IngameStatsTracker_StatsPlayer__Fields { - struct IngameStatsTracker_StatsPlayer_PlayerInfo *playerInfo; - struct IngameStatsTracker_StatsPlayer_Stats *stats; -}; - -struct IngameStatsTracker_StatsPlayer { - struct IngameStatsTracker_StatsPlayer__Class *klass; - MonitorData *monitor; - struct IngameStatsTracker_StatsPlayer__Fields fields; -}; - struct __declspec(align(8)) IngameStatsTracker_StatsPlayer_PlayerInfo__Fields { int32_t connectionId; struct String *prefabId; @@ -284336,6 +287661,19 @@ struct Fry__Array { struct Fry *vector[32]; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_MeshRenderer_UnityEngine_Material_ { + int32_t hashCode; + int32_t next; + struct MeshRenderer *key; + struct Material *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_MeshRenderer_UnityEngine_Material___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_MeshRenderer_UnityEngine_Material___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_MeshRenderer_UnityEngine_Material_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_MeshRenderer_UnityEngine_Material___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_MeshRenderer_UnityEngine_Material___Array *_entries; @@ -284355,19 +287693,6 @@ struct Dictionary_2_UnityEngine_MeshRenderer_UnityEngine_Material_ { struct Dictionary_2_UnityEngine_MeshRenderer_UnityEngine_Material___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_MeshRenderer_UnityEngine_Material_ { - int32_t hashCode; - int32_t next; - struct MeshRenderer *key; - struct Material *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_MeshRenderer_UnityEngine_Material___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_MeshRenderer_UnityEngine_Material___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_MeshRenderer_UnityEngine_Material_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_MeshRenderer_UnityEngine_Material___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_MeshRenderer_UnityEngine_Material___Array__Class *klass; MonitorData *monitor; @@ -284440,6 +287765,19 @@ struct IEnumerable_1_UnityEngine_MeshRenderer_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_MeshRenderer_UnityEngine_Vector3_ { + int32_t hashCode; + int32_t next; + struct MeshRenderer *key; + struct Vector3 value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_MeshRenderer_UnityEngine_Vector3___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_MeshRenderer_UnityEngine_Vector3___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_MeshRenderer_UnityEngine_Vector3_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_MeshRenderer_UnityEngine_Vector3___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_MeshRenderer_UnityEngine_Vector3___Array *_entries; @@ -284459,19 +287797,6 @@ struct Dictionary_2_UnityEngine_MeshRenderer_UnityEngine_Vector3_ { struct Dictionary_2_UnityEngine_MeshRenderer_UnityEngine_Vector3___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_MeshRenderer_UnityEngine_Vector3_ { - int32_t hashCode; - int32_t next; - struct MeshRenderer *key; - struct Vector3 value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_MeshRenderer_UnityEngine_Vector3___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_MeshRenderer_UnityEngine_Vector3___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_MeshRenderer_UnityEngine_Vector3_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_MeshRenderer_UnityEngine_Vector3___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_MeshRenderer_UnityEngine_Vector3___Array__Class *klass; MonitorData *monitor; @@ -286762,6 +290087,19 @@ struct MapEnvironmentLoader { struct MapEnvironmentLoader__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Light_System_Single_ { + int32_t hashCode; + int32_t next; + struct Light *key; + float value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Light_System_Single___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Light_System_Single___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Light_System_Single_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_Light_System_Single___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Light_System_Single___Array *_entries; @@ -286781,19 +290119,6 @@ struct Dictionary_2_UnityEngine_Light_System_Single_ { struct Dictionary_2_UnityEngine_Light_System_Single___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Light_System_Single_ { - int32_t hashCode; - int32_t next; - struct Light *key; - float value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Light_System_Single___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Light_System_Single___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Light_System_Single_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Light_System_Single___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Light_System_Single___Array__Class *klass; MonitorData *monitor; @@ -292868,32 +296193,6 @@ struct SteamInventoryResult_t__Boxed { struct SteamInventoryResult_t fields; }; -struct SteamInventoryManager__Fields { - struct MonoBehaviour__Fields _; - struct SteamInventoryResult_t m_SteamInventoryResult; - struct SteamItemDetails_t__Array *m_SteamItemDetails; - struct Callback_1_SteamInventoryResultReady_t_ *m_SteamInventoryResultReady; - struct Callback_1_SteamInventoryFullUpdate_t_ *m_SteamInventoryFullUpdate; - struct Callback_1_SteamInventoryDefinitionUpdate_t_ *m_SteamInventoryDefinitionUpdate; - struct CallResult_1_SteamInventoryStartPurchaseResult_t_ *m_SteamInventoryStartPurchaseResult; - struct CallResult_1_SteamInventoryRequestPricesResult_t_ *m_SteamInventoryRequestPricesResult; - struct List_1_SteamInventoryItem_ *steamItems; - struct List_1_Steamworks_SteamItemDef_t_ *userItems; - struct UnityAction *userInventoryAction; - bool isExitingGame; - bool retrievedUserItems; - struct SteamInventoryResult_t m_ServerValidationResult; - bool _resendClientInventory_k__BackingField; - bool addPromoItemLock; - struct Coroutine *addPromoItemTimeoutCo; -}; - -struct SteamInventoryManager { - struct SteamInventoryManager__Class *klass; - MonitorData *monitor; - struct SteamInventoryManager__Fields fields; -}; - struct SteamItemInstanceID_t { uint64_t m_SteamItemInstanceID; }; @@ -292927,6 +296226,32 @@ struct SteamItemDetails_t__Boxed { struct SteamItemDetails_t fields; }; +struct SteamInventoryManager__Fields { + struct MonoBehaviour__Fields _; + struct SteamInventoryResult_t m_SteamInventoryResult; + struct SteamItemDetails_t__Array *m_SteamItemDetails; + struct Callback_1_SteamInventoryResultReady_t_ *m_SteamInventoryResultReady; + struct Callback_1_SteamInventoryFullUpdate_t_ *m_SteamInventoryFullUpdate; + struct Callback_1_SteamInventoryDefinitionUpdate_t_ *m_SteamInventoryDefinitionUpdate; + struct CallResult_1_SteamInventoryStartPurchaseResult_t_ *m_SteamInventoryStartPurchaseResult; + struct CallResult_1_SteamInventoryRequestPricesResult_t_ *m_SteamInventoryRequestPricesResult; + struct List_1_SteamInventoryItem_ *steamItems; + struct List_1_Steamworks_SteamItemDef_t_ *userItems; + struct UnityAction *userInventoryAction; + bool isExitingGame; + bool retrievedUserItems; + struct SteamInventoryResult_t m_ServerValidationResult; + bool _resendClientInventory_k__BackingField; + bool addPromoItemLock; + struct Coroutine *addPromoItemTimeoutCo; +}; + +struct SteamInventoryManager { + struct SteamInventoryManager__Class *klass; + MonitorData *monitor; + struct SteamInventoryManager__Fields fields; +}; + struct SteamItemDetails_t__Array { struct SteamItemDetails_t__Array__Class *klass; MonitorData *monitor; @@ -293128,19 +296453,6 @@ struct SteamInventoryRequestPricesResult_t__Boxed { struct SteamInventoryRequestPricesResult_t fields; }; -struct __declspec(align(8)) List_1_SteamInventoryItem___Fields { - struct SteamInventoryItem__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_SteamInventoryItem_ { - struct List_1_SteamInventoryItem___Class *klass; - MonitorData *monitor; - struct List_1_SteamInventoryItem___Fields fields; -}; - struct __declspec(align(8)) SteamInventoryItem__Fields { int32_t itemID; uint64_t currentPrice; @@ -293154,6 +296466,19 @@ struct SteamInventoryItem { struct SteamInventoryItem__Fields fields; }; +struct __declspec(align(8)) List_1_SteamInventoryItem___Fields { + struct SteamInventoryItem__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_SteamInventoryItem_ { + struct List_1_SteamInventoryItem___Class *klass; + MonitorData *monitor; + struct List_1_SteamInventoryItem___Fields fields; +}; + struct SteamInventoryItem__Array { struct SteamInventoryItem__Array__Class *klass; MonitorData *monitor; @@ -294406,18 +297731,6 @@ struct SteamNews { struct SteamNews__Fields fields; }; -struct __declspec(align(8)) AppNews__Fields { - int32_t appid; - struct NewsItem__Array *newsitems; - int32_t count; -}; - -struct AppNews { - struct AppNews__Class *klass; - MonitorData *monitor; - struct AppNews__Fields fields; -}; - struct __declspec(align(8)) NewsItem__Fields { struct String *gid; struct String *title; @@ -294437,6 +297750,18 @@ struct NewsItem { struct NewsItem__Fields fields; }; +struct __declspec(align(8)) AppNews__Fields { + int32_t appid; + struct NewsItem__Array *newsitems; + int32_t count; +}; + +struct AppNews { + struct AppNews__Class *klass; + MonitorData *monitor; + struct AppNews__Fields fields; +}; + struct NewsItem__Array { struct NewsItem__Array__Class *klass; MonitorData *monitor; @@ -297813,16 +301138,18 @@ struct ControllerGlyphKeyBinding__Class { struct ControllerGlyphKeyBinding__VTable vtable; }; -struct ControllerGlyphManager__Fields { - struct MonoBehaviour__Fields _; - bool debugDisableGlyphAutoHide; - struct ControllerGlyphManager_ControllerEntry__Array *controllers; +struct __declspec(align(8)) ControllerGlyphManager_GlyphEntry__Fields { + int32_t elementIdentifierId; + struct Sprite *glyph; + struct Sprite *glyphPos; + struct Sprite *glyphNeg; + struct Color tint; }; -struct ControllerGlyphManager { - struct ControllerGlyphManager__Class *klass; +struct ControllerGlyphManager_GlyphEntry { + struct ControllerGlyphManager_GlyphEntry__Class *klass; MonitorData *monitor; - struct ControllerGlyphManager__Fields fields; + struct ControllerGlyphManager_GlyphEntry__Fields fields; }; struct __declspec(align(8)) ControllerGlyphManager_ControllerEntry__Fields { @@ -297837,18 +301164,16 @@ struct ControllerGlyphManager_ControllerEntry { struct ControllerGlyphManager_ControllerEntry__Fields fields; }; -struct __declspec(align(8)) ControllerGlyphManager_GlyphEntry__Fields { - int32_t elementIdentifierId; - struct Sprite *glyph; - struct Sprite *glyphPos; - struct Sprite *glyphNeg; - struct Color tint; +struct ControllerGlyphManager__Fields { + struct MonoBehaviour__Fields _; + bool debugDisableGlyphAutoHide; + struct ControllerGlyphManager_ControllerEntry__Array *controllers; }; -struct ControllerGlyphManager_GlyphEntry { - struct ControllerGlyphManager_GlyphEntry__Class *klass; +struct ControllerGlyphManager { + struct ControllerGlyphManager__Class *klass; MonitorData *monitor; - struct ControllerGlyphManager_GlyphEntry__Fields fields; + struct ControllerGlyphManager__Fields fields; }; struct ControllerGlyphManager_GlyphEntry__Array { @@ -298301,6 +301626,18 @@ struct IEnumerator_1_UnityEngine_TextAsset_ { MonitorData *monitor; }; +struct __declspec(align(8)) Language__Fields { + struct String *languageString; + int32_t languageID; + struct List_1_TextKeyValue_ *textKeyValueList; +}; + +struct Language { + struct Language__Class *klass; + MonitorData *monitor; + struct Language__Fields fields; +}; + struct __declspec(align(8)) List_1_Language___Fields { struct Language__Array *_items; int32_t _size; @@ -298314,16 +301651,15 @@ struct List_1_Language_ { struct List_1_Language___Fields fields; }; -struct __declspec(align(8)) Language__Fields { - struct String *languageString; - int32_t languageID; - struct List_1_TextKeyValue_ *textKeyValueList; +struct __declspec(align(8)) TextKeyValue__Fields { + struct String *key; + struct String *value; }; -struct Language { - struct Language__Class *klass; +struct TextKeyValue { + struct TextKeyValue__Class *klass; MonitorData *monitor; - struct Language__Fields fields; + struct TextKeyValue__Fields fields; }; struct __declspec(align(8)) List_1_TextKeyValue___Fields { @@ -298339,17 +301675,6 @@ struct List_1_TextKeyValue_ { struct List_1_TextKeyValue___Fields fields; }; -struct __declspec(align(8)) TextKeyValue__Fields { - struct String *key; - struct String *value; -}; - -struct TextKeyValue { - struct TextKeyValue__Class *klass; - MonitorData *monitor; - struct TextKeyValue__Fields fields; -}; - struct TextKeyValue__Array { struct TextKeyValue__Array__Class *klass; MonitorData *monitor; @@ -298376,6 +301701,17 @@ struct IEnumerator_1_Language_ { MonitorData *monitor; }; +struct __declspec(align(8)) LanguageUniqueFont__Fields { + int32_t languageID; + struct Font *uniqueFont; +}; + +struct LanguageUniqueFont { + struct LanguageUniqueFont__Class *klass; + MonitorData *monitor; + struct LanguageUniqueFont__Fields fields; +}; + struct __declspec(align(8)) List_1_LanguageUniqueFont___Fields { struct LanguageUniqueFont__Array *_items; int32_t _size; @@ -298389,17 +301725,6 @@ struct List_1_LanguageUniqueFont_ { struct List_1_LanguageUniqueFont___Fields fields; }; -struct __declspec(align(8)) LanguageUniqueFont__Fields { - int32_t languageID; - struct Font *uniqueFont; -}; - -struct LanguageUniqueFont { - struct LanguageUniqueFont__Class *klass; - MonitorData *monitor; - struct LanguageUniqueFont__Fields fields; -}; - struct LanguageUniqueFont__Array { struct LanguageUniqueFont__Array__Class *klass; MonitorData *monitor; @@ -298506,19 +301831,6 @@ struct BadWordProvider { struct BadWordProvider__Fields fields; }; -struct __declspec(align(8)) List_1_Crosstales_BWF_Data_Source___Fields { - struct Source__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Crosstales_BWF_Data_Source_ { - struct List_1_Crosstales_BWF_Data_Source___Class *klass; - MonitorData *monitor; - struct List_1_Crosstales_BWF_Data_Source___Fields fields; -}; - struct Source__Fields { struct ScriptableObject__Fields _; struct String *Name; @@ -298536,6 +301848,19 @@ struct Source { struct Source__Fields fields; }; +struct __declspec(align(8)) List_1_Crosstales_BWF_Data_Source___Fields { + struct Source__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Crosstales_BWF_Data_Source_ { + struct List_1_Crosstales_BWF_Data_Source___Class *klass; + MonitorData *monitor; + struct List_1_Crosstales_BWF_Data_Source___Fields fields; +}; + struct Source__Array { struct Source__Array__Class *klass; MonitorData *monitor; @@ -298559,6 +301884,17 @@ struct BadWordProviderText { struct BadWordProviderText__Fields fields; }; +struct __declspec(align(8)) BadWords__Fields { + struct Source *Source; + struct List_1_System_String_ *BadWordList; +}; + +struct BadWords { + struct BadWords__Class *klass; + MonitorData *monitor; + struct BadWords__Fields fields; +}; + struct __declspec(align(8)) List_1_Crosstales_BWF_Model_BadWords___Fields { struct BadWords__Array *_items; int32_t _size; @@ -298572,17 +301908,6 @@ struct List_1_Crosstales_BWF_Model_BadWords_ { struct List_1_Crosstales_BWF_Model_BadWords___Fields fields; }; -struct __declspec(align(8)) BadWords__Fields { - struct Source *Source; - struct List_1_System_String_ *BadWordList; -}; - -struct BadWords { - struct BadWords__Class *klass; - MonitorData *monitor; - struct BadWords__Fields fields; -}; - struct BadWords__Array { struct BadWords__Array__Class *klass; MonitorData *monitor; @@ -298596,6 +301921,19 @@ struct IEnumerator_1_Crosstales_BWF_Model_BadWords_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_System_Text_RegularExpressions_Regex_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct Regex *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_System_Text_RegularExpressions_Regex___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_System_Text_RegularExpressions_Regex___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_System_Text_RegularExpressions_Regex_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_System_Text_RegularExpressions_Regex___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_System_Text_RegularExpressions_Regex___Array *_entries; @@ -298615,19 +301953,6 @@ struct Dictionary_2_System_String_System_Text_RegularExpressions_Regex_ { struct Dictionary_2_System_String_System_Text_RegularExpressions_Regex___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_System_Text_RegularExpressions_Regex_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct Regex *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_System_Text_RegularExpressions_Regex___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_System_Text_RegularExpressions_Regex___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_System_Text_RegularExpressions_Regex_ fields; -}; - struct __declspec(align(8)) Regex__Fields { struct TimeSpan internalMatchTimeout; struct String *pattern; @@ -298653,25 +301978,6 @@ struct Regex { struct Regex__Fields fields; }; -struct __declspec(align(8)) Dictionary_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Text_RegularExpressions_Regex_CachedCodeEntry___Fields { - struct Int32__Array *_buckets; - struct Dictionary_2_TKey_TValue_Entry_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Text_RegularExpressions_Regex_CachedCodeEntry___Array *_entries; - int32_t _count; - int32_t _freeList; - int32_t _freeCount; - int32_t _version; - struct IEqualityComparer_1_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_ *_comparer; - struct Dictionary_2_TKey_TValue_KeyCollection_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Text_RegularExpressions_Regex_CachedCodeEntry_ *_keys; - struct Dictionary_2_TKey_TValue_ValueCollection_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Text_RegularExpressions_Regex_CachedCodeEntry_ *_values; - struct Object *_syncRoot; -}; - -struct Dictionary_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Text_RegularExpressions_Regex_CachedCodeEntry_ { - struct Dictionary_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Text_RegularExpressions_Regex_CachedCodeEntry___Class *klass; - MonitorData *monitor; - struct Dictionary_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Text_RegularExpressions_Regex_CachedCodeEntry___Fields fields; -}; - struct Regex_CachedCodeEntryKey { #if defined(_CPLUSPLUS_) RegexOptions__Enum _options; @@ -298701,6 +302007,25 @@ struct Dictionary_2_TKey_TValue_Entry_System_Text_RegularExpressions_Regex_Cache struct Dictionary_2_TKey_TValue_Entry_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Text_RegularExpressions_Regex_CachedCodeEntry_ fields; }; +struct __declspec(align(8)) Dictionary_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Text_RegularExpressions_Regex_CachedCodeEntry___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Text_RegularExpressions_Regex_CachedCodeEntry___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Text_RegularExpressions_Regex_CachedCodeEntry_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Text_RegularExpressions_Regex_CachedCodeEntry_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Text_RegularExpressions_Regex_CachedCodeEntry_ { + struct Dictionary_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Text_RegularExpressions_Regex_CachedCodeEntry___Class *klass; + MonitorData *monitor; + struct Dictionary_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Text_RegularExpressions_Regex_CachedCodeEntry___Fields fields; +}; + struct __declspec(align(8)) Regex_CachedCodeEntry__Fields { struct Regex_CachedCodeEntry *Next; struct Regex_CachedCodeEntry *Previous; @@ -299130,6 +302455,19 @@ struct IEnumerable_1_System_Text_RegularExpressions_Regex_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_System_Text_RegularExpressions_Regex_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct List_1_System_Text_RegularExpressions_Regex_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_System_Text_RegularExpressions_Regex___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_System_Text_RegularExpressions_Regex___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_System_Text_RegularExpressions_Regex_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_List_1_System_Text_RegularExpressions_Regex___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_System_Text_RegularExpressions_Regex___Array *_entries; @@ -299149,19 +302487,6 @@ struct Dictionary_2_System_String_List_1_System_Text_RegularExpressions_Regex_ { struct Dictionary_2_System_String_List_1_System_Text_RegularExpressions_Regex___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_System_Text_RegularExpressions_Regex_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct List_1_System_Text_RegularExpressions_Regex_ *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_System_Text_RegularExpressions_Regex___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_System_Text_RegularExpressions_Regex___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_System_Text_RegularExpressions_Regex_ fields; -}; - struct __declspec(align(8)) List_1_System_Text_RegularExpressions_Regex___Fields { struct Regex__Array *_items; int32_t _size; @@ -299250,6 +302575,19 @@ struct IEnumerable_1_List_1_System_Text_RegularExpressions_Regex_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_System_String_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct List_1_System_String_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_System_String___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_System_String___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_System_String_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_List_1_System_String___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_System_String___Array *_entries; @@ -299269,19 +302607,6 @@ struct Dictionary_2_System_String_List_1_System_String_ { struct Dictionary_2_System_String_List_1_System_String___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_System_String_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct List_1_System_String_ *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_System_String___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_System_String___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_System_String_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_System_String___Array { struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_System_String___Array__Class *klass; MonitorData *monitor; @@ -299433,6 +302758,19 @@ struct BadWordFilter { struct BadWordFilter__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_Crosstales_BWF_Data_Source_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct Source *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_Crosstales_BWF_Data_Source___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_Crosstales_BWF_Data_Source___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_Crosstales_BWF_Data_Source_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_Crosstales_BWF_Data_Source___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_Crosstales_BWF_Data_Source___Array *_entries; @@ -299452,19 +302790,6 @@ struct Dictionary_2_System_String_Crosstales_BWF_Data_Source_ { struct Dictionary_2_System_String_Crosstales_BWF_Data_Source___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_Crosstales_BWF_Data_Source_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct Source *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_Crosstales_BWF_Data_Source___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_Crosstales_BWF_Data_Source___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_Crosstales_BWF_Data_Source_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_String_Crosstales_BWF_Data_Source___Array { struct Dictionary_2_TKey_TValue_Entry_System_String_Crosstales_BWF_Data_Source___Array__Class *klass; MonitorData *monitor; @@ -300982,6 +304307,21 @@ struct ICollection_1_System_Text_RegularExpressions_Regex_CachedCodeEntry___Clas struct ICollection_1_System_Text_RegularExpressions_Regex_CachedCodeEntry___VTable vtable; }; +struct Regex_CachedCodeEntry___VTable { +}; + +struct Regex_CachedCodeEntry___StaticFields { +}; + +struct Regex_CachedCodeEntry___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Regex_CachedCodeEntry___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Regex_CachedCodeEntry___VTable vtable; +}; + struct KeyValuePair_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Text_RegularExpressions_Regex_CachedCodeEntry___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -301324,6 +304664,21 @@ struct ICollection_1_System_Text_RegularExpressions_Regex___Class { struct ICollection_1_System_Text_RegularExpressions_Regex___VTable vtable; }; +struct Regex___VTable { +}; + +struct Regex___StaticFields { +}; + +struct Regex___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Regex___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Regex___VTable vtable; +}; + struct KeyValuePair_2_System_String_System_Text_RegularExpressions_Regex___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -301653,6 +305008,21 @@ struct ICollection_1_List_1_System_Text_RegularExpressions_Regex___Class { struct ICollection_1_List_1_System_Text_RegularExpressions_Regex___VTable vtable; }; +struct List_1_System_Text_RegularExpressions_Regex__1__VTable { +}; + +struct List_1_System_Text_RegularExpressions_Regex__1__StaticFields { +}; + +struct List_1_System_Text_RegularExpressions_Regex__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_System_Text_RegularExpressions_Regex__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_System_Text_RegularExpressions_Regex__1__VTable vtable; +}; + struct KeyValuePair_2_System_String_List_1_System_Text_RegularExpressions_Regex___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -301931,6 +305301,21 @@ struct ICollection_1_List_1_System_String___Class { struct ICollection_1_List_1_System_String___VTable vtable; }; +struct List_1_System_String__1__VTable { +}; + +struct List_1_System_String__1__StaticFields { +}; + +struct List_1_System_String__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_System_String__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_System_String__1__VTable vtable; +}; + struct KeyValuePair_2_System_String_List_1_System_String___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -302229,6 +305614,21 @@ struct ICollection_1_Crosstales_BWF_Data_Source___Class { struct ICollection_1_Crosstales_BWF_Data_Source___VTable vtable; }; +struct Source___VTable { +}; + +struct Source___StaticFields { +}; + +struct Source___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Source___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Source___VTable vtable; +}; + struct KeyValuePair_2_System_String_Crosstales_BWF_Data_Source___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -303014,17 +306414,6 @@ struct MouseFollower__Class { struct MouseFollower__VTable vtable; }; -struct MouseGlyphManager__Fields { - struct MonoBehaviour__Fields _; - struct MouseGlyphManager_GlyphEntry__Array *glyphs; -}; - -struct MouseGlyphManager { - struct MouseGlyphManager__Class *klass; - MonitorData *monitor; - struct MouseGlyphManager__Fields fields; -}; - struct __declspec(align(8)) MouseGlyphManager_GlyphEntry__Fields { int32_t elementIdentifierId; struct Sprite *glyph; @@ -303039,6 +306428,17 @@ struct MouseGlyphManager_GlyphEntry { struct MouseGlyphManager_GlyphEntry__Fields fields; }; +struct MouseGlyphManager__Fields { + struct MonoBehaviour__Fields _; + struct MouseGlyphManager_GlyphEntry__Array *glyphs; +}; + +struct MouseGlyphManager { + struct MouseGlyphManager__Class *klass; + MonitorData *monitor; + struct MouseGlyphManager__Fields fields; +}; + struct MouseGlyphManager_GlyphEntry__Array { struct MouseGlyphManager_GlyphEntry__Array__Class *klass; MonitorData *monitor; @@ -303258,6 +306658,18 @@ struct MultiImageButton_c__Class { struct MultiImageButton_c__VTable vtable; }; +struct LOD { + float screenRelativeTransitionHeight; + float fadeTransitionWidth; + struct Renderer__Array *renderers; +}; + +struct LOD__Boxed { + struct LOD__Class *klass; + MonitorData *monitor; + struct LOD fields; +}; + struct __declspec(align(8)) OutfitPreviewLoader_PreviewInternal_d_31__Fields { int32_t __1__state; struct Object *__2__current; @@ -303275,18 +306687,6 @@ struct OutfitPreviewLoader_PreviewInternal_d_31 { struct OutfitPreviewLoader_PreviewInternal_d_31__Fields fields; }; -struct LOD { - float screenRelativeTransitionHeight; - float fadeTransitionWidth; - struct Renderer__Array *renderers; -}; - -struct LOD__Boxed { - struct LOD__Class *klass; - MonitorData *monitor; - struct LOD fields; -}; - struct LOD__Array { struct LOD__Array__Class *klass; MonitorData *monitor; @@ -304418,6 +307818,17 @@ struct TMP_Dropdown_OptionDataList { struct TMP_Dropdown_OptionDataList__Fields fields; }; +struct __declspec(align(8)) TMP_Dropdown_OptionData__Fields { + struct String *m_Text; + struct Sprite *m_Image; +}; + +struct TMP_Dropdown_OptionData { + struct TMP_Dropdown_OptionData__Class *klass; + MonitorData *monitor; + struct TMP_Dropdown_OptionData__Fields fields; +}; + struct __declspec(align(8)) List_1_TMPro_TMP_Dropdown_OptionData___Fields { struct TMP_Dropdown_OptionData__Array *_items; int32_t _size; @@ -304431,17 +307842,6 @@ struct List_1_TMPro_TMP_Dropdown_OptionData_ { struct List_1_TMPro_TMP_Dropdown_OptionData___Fields fields; }; -struct __declspec(align(8)) TMP_Dropdown_OptionData__Fields { - struct String *m_Text; - struct Sprite *m_Image; -}; - -struct TMP_Dropdown_OptionData { - struct TMP_Dropdown_OptionData__Class *klass; - MonitorData *monitor; - struct TMP_Dropdown_OptionData__Fields fields; -}; - struct TMP_Dropdown_OptionData__Array { struct TMP_Dropdown_OptionData__Array__Class *klass; MonitorData *monitor; @@ -304465,19 +307865,6 @@ struct TMP_Dropdown_DropdownEvent { struct TMP_Dropdown_DropdownEvent__Fields fields; }; -struct __declspec(align(8)) List_1_TMPro_TMP_Dropdown_DropdownItem___Fields { - struct TMP_Dropdown_DropdownItem__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_TMPro_TMP_Dropdown_DropdownItem_ { - struct List_1_TMPro_TMP_Dropdown_DropdownItem___Class *klass; - MonitorData *monitor; - struct List_1_TMPro_TMP_Dropdown_DropdownItem___Fields fields; -}; - struct TMP_Dropdown_DropdownItem__Fields { struct MonoBehaviour__Fields _; struct TMP_Text *m_Text; @@ -304492,6 +307879,19 @@ struct TMP_Dropdown_DropdownItem { struct TMP_Dropdown_DropdownItem__Fields fields; }; +struct __declspec(align(8)) List_1_TMPro_TMP_Dropdown_DropdownItem___Fields { + struct TMP_Dropdown_DropdownItem__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_TMPro_TMP_Dropdown_DropdownItem_ { + struct List_1_TMPro_TMP_Dropdown_DropdownItem___Class *klass; + MonitorData *monitor; + struct List_1_TMPro_TMP_Dropdown_DropdownItem___Fields fields; +}; + struct TMP_Dropdown_DropdownItem__Array { struct TMP_Dropdown_DropdownItem__Array__Class *klass; MonitorData *monitor; @@ -307306,6 +310706,17 @@ struct SurvivalInteractableMeshSwapper { struct SurvivalInteractableMeshSwapper__Fields fields; }; +struct __declspec(align(8)) SurvivalInteractableMeshSwapper_SurvivalInteractableMesh__Fields { + struct String *mapName; + struct Transform *parent; +}; + +struct SurvivalInteractableMeshSwapper_SurvivalInteractableMesh { + struct SurvivalInteractableMeshSwapper_SurvivalInteractableMesh__Class *klass; + MonitorData *monitor; + struct SurvivalInteractableMeshSwapper_SurvivalInteractableMesh__Fields fields; +}; + struct __declspec(align(8)) List_1_SurvivalInteractableMeshSwapper_SurvivalInteractableMesh___Fields { struct SurvivalInteractableMeshSwapper_SurvivalInteractableMesh__Array *_items; int32_t _size; @@ -307319,17 +310730,6 @@ struct List_1_SurvivalInteractableMeshSwapper_SurvivalInteractableMesh_ { struct List_1_SurvivalInteractableMeshSwapper_SurvivalInteractableMesh___Fields fields; }; -struct __declspec(align(8)) SurvivalInteractableMeshSwapper_SurvivalInteractableMesh__Fields { - struct String *mapName; - struct Transform *parent; -}; - -struct SurvivalInteractableMeshSwapper_SurvivalInteractableMesh { - struct SurvivalInteractableMeshSwapper_SurvivalInteractableMesh__Class *klass; - MonitorData *monitor; - struct SurvivalInteractableMeshSwapper_SurvivalInteractableMesh__Fields fields; -}; - struct SurvivalInteractableMeshSwapper_SurvivalInteractableMesh__Array { struct SurvivalInteractableMeshSwapper_SurvivalInteractableMesh__Array__Class *klass; MonitorData *monitor; @@ -308395,24 +311795,6 @@ struct CanvasFadeController_FadeOut_d_1__Class { struct CanvasFadeController_FadeOut_d_1__VTable vtable; }; -struct ChallengeHelpers__Fields { - struct MonoBehaviour__Fields _; - struct ChallengeHelpers_ChallengeDefinition__Array *challengeDefinitions; - struct AudioClip *challengeCompletedClip; - struct Survival *survival; - struct AudioSource *audioSource; - struct String__Array *mapKeys; - struct String *sceneName; - int32_t CURRENT_CHALLENGES_VERSION; - struct DateTime utcOriginDateTime; -}; - -struct ChallengeHelpers { - struct ChallengeHelpers__Class *klass; - MonitorData *monitor; - struct ChallengeHelpers__Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class ChallengeHelpers_BaseChallenge__Enum : int32_t { None = -1, @@ -308477,6 +311859,24 @@ struct ChallengeHelpers_ChallengeDefinition { struct ChallengeHelpers_ChallengeDefinition__Fields fields; }; +struct ChallengeHelpers__Fields { + struct MonoBehaviour__Fields _; + struct ChallengeHelpers_ChallengeDefinition__Array *challengeDefinitions; + struct AudioClip *challengeCompletedClip; + struct Survival *survival; + struct AudioSource *audioSource; + struct String__Array *mapKeys; + struct String *sceneName; + int32_t CURRENT_CHALLENGES_VERSION; + struct DateTime utcOriginDateTime; +}; + +struct ChallengeHelpers { + struct ChallengeHelpers__Class *klass; + MonitorData *monitor; + struct ChallengeHelpers__Fields fields; +}; + struct ChallengeHelpers_ChallengeDefinition__Array { struct ChallengeHelpers_ChallengeDefinition__Array__Class *klass; MonitorData *monitor; @@ -308786,6 +312186,17 @@ struct CharacterHelpers_ExecuteDissolve_d_15__Class { struct CharacterHelpers_ExecuteDissolve_d_15__VTable vtable; }; +struct __declspec(align(8)) InGameHelpers_NearbyPerks__Fields { + struct GameObject *character; + struct String__Array *perks; +}; + +struct InGameHelpers_NearbyPerks { + struct InGameHelpers_NearbyPerks__Class *klass; + MonitorData *monitor; + struct InGameHelpers_NearbyPerks__Fields fields; +}; + struct __declspec(align(8)) InGameHelpers__Fields { float gameStartTime; #if defined(_CPLUSPLUS_) @@ -308807,17 +312218,6 @@ struct InGameHelpers { struct InGameHelpers__Fields fields; }; -struct __declspec(align(8)) InGameHelpers_NearbyPerks__Fields { - struct GameObject *character; - struct String__Array *perks; -}; - -struct InGameHelpers_NearbyPerks { - struct InGameHelpers_NearbyPerks__Class *klass; - MonitorData *monitor; - struct InGameHelpers_NearbyPerks__Fields fields; -}; - struct InGameHelpers_NearbyPerks__Array { struct InGameHelpers_NearbyPerks__Array__Class *klass; MonitorData *monitor; @@ -309012,6 +312412,40 @@ struct MessageHelpers_Message__Class { struct MessageHelpers_Message__VTable vtable; }; +struct __declspec(align(8)) CharacterData__Fields { + struct String *name; + struct Sprite *avatar; + struct String *descriptionKey; + bool isMale; + struct Color skinColor; + struct Color nailColor; + struct Color palmColor; +}; + +struct CharacterData { + struct CharacterData__Class *klass; + MonitorData *monitor; + struct CharacterData__Fields fields; +}; + +struct __declspec(align(8)) CharacterRobe__Fields { + struct String *name; + #if defined(_CPLUSPLUS_) + Robe__Enum robe; + #else + int32_t robe; + #endif + struct Sprite *sprite; + struct String *descriptionKey; + bool hiddenIfLocked; +}; + +struct CharacterRobe { + struct CharacterRobe__Class *klass; + MonitorData *monitor; + struct CharacterRobe__Fields fields; +}; + struct OptionsHelpers__Fields { struct MonoBehaviour__Fields _; struct Brightness *brightnessController; @@ -309063,22 +312497,6 @@ struct OptionsHelpers { struct OptionsHelpers__Fields fields; }; -struct __declspec(align(8)) CharacterData__Fields { - struct String *name; - struct Sprite *avatar; - struct String *descriptionKey; - bool isMale; - struct Color skinColor; - struct Color nailColor; - struct Color palmColor; -}; - -struct CharacterData { - struct CharacterData__Class *klass; - MonitorData *monitor; - struct CharacterData__Fields fields; -}; - struct CharacterData__Array { struct CharacterData__Array__Class *klass; MonitorData *monitor; @@ -309087,24 +312505,6 @@ struct CharacterData__Array { struct CharacterData *vector[32]; }; -struct __declspec(align(8)) CharacterRobe__Fields { - struct String *name; - #if defined(_CPLUSPLUS_) - Robe__Enum robe; - #else - int32_t robe; - #endif - struct Sprite *sprite; - struct String *descriptionKey; - bool hiddenIfLocked; -}; - -struct CharacterRobe { - struct CharacterRobe__Class *klass; - MonitorData *monitor; - struct CharacterRobe__Fields fields; -}; - struct CharacterRobe__Array { struct CharacterRobe__Array__Class *klass; MonitorData *monitor; @@ -309227,6 +312627,18 @@ struct AudioMixerGroup { struct AudioMixerGroup__Fields fields; }; +struct Resolution { + int32_t m_Width; + int32_t m_Height; + int32_t m_RefreshRate; +}; + +struct Resolution__Boxed { + struct Resolution__Class *klass; + MonitorData *monitor; + struct Resolution fields; +}; + struct __declspec(align(8)) List_1_UnityEngine_Resolution___Fields { struct Resolution__Array *_items; int32_t _size; @@ -309240,18 +312652,6 @@ struct List_1_UnityEngine_Resolution_ { struct List_1_UnityEngine_Resolution___Fields fields; }; -struct Resolution { - int32_t m_Width; - int32_t m_Height; - int32_t m_RefreshRate; -}; - -struct Resolution__Boxed { - struct Resolution__Class *klass; - MonitorData *monitor; - struct Resolution fields; -}; - struct Resolution__Array { struct Resolution__Array__Class *klass; MonitorData *monitor; @@ -309265,6 +312665,19 @@ struct IEnumerator_1_UnityEngine_Resolution_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_System_Action_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct Action *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_System_Action___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_System_Action___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_System_Action_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_System_Action___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_System_Action___Array *_entries; @@ -309284,19 +312697,6 @@ struct Dictionary_2_System_String_System_Action_ { struct Dictionary_2_System_String_System_Action___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_System_Action_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct Action *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_System_Action___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_System_Action___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_System_Action_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_String_System_Action___Array { struct Dictionary_2_TKey_TValue_Entry_System_String_System_Action___Array__Class *klass; MonitorData *monitor; @@ -309997,6 +313397,21 @@ struct ICollection_1_System_Action___Class { struct ICollection_1_System_Action___VTable vtable; }; +struct Action___VTable { +}; + +struct Action___StaticFields { +}; + +struct Action___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action___VTable vtable; +}; + struct KeyValuePair_2_System_String_System_Action___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -310685,6 +314100,19 @@ struct InputMapper_Options { struct InputMapper_Options__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_Rewired_Utils_SafeDelegate_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct SafeDelegate *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_Rewired_Utils_SafeDelegate___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_Rewired_Utils_SafeDelegate___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_Rewired_Utils_SafeDelegate_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_Rewired_Utils_SafeDelegate___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_Rewired_Utils_SafeDelegate___Array *_entries; @@ -310704,19 +314132,6 @@ struct Dictionary_2_System_String_Rewired_Utils_SafeDelegate_ { struct Dictionary_2_System_String_Rewired_Utils_SafeDelegate___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_Rewired_Utils_SafeDelegate_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct SafeDelegate *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_Rewired_Utils_SafeDelegate___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_Rewired_Utils_SafeDelegate___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_Rewired_Utils_SafeDelegate_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_String_Rewired_Utils_SafeDelegate___Array { struct Dictionary_2_TKey_TValue_Entry_System_String_Rewired_Utils_SafeDelegate___Array__Class *klass; MonitorData *monitor; @@ -310834,25 +314249,6 @@ struct InputMapper_Context { struct InputMapper_Context__Fields fields; }; -struct __declspec(align(8)) Dictionary_2_Rewired_InputMapper_LHIKMCjQdqDNBdfhNEqxmrgcNERkA_Rewired_Utils_SafeDelegate___Fields { - struct Int32__Array *_buckets; - struct Dictionary_2_TKey_TValue_Entry_Rewired_InputMapper_LHIKMCjQdqDNBdfhNEqxmrgcNERkA_Rewired_Utils_SafeDelegate___Array *_entries; - int32_t _count; - int32_t _freeList; - int32_t _freeCount; - int32_t _version; - struct IEqualityComparer_1_Rewired_InputMapper_LHIKMCjQdqDNBdfhNEqxmrgcNERkA_ *_comparer; - struct Dictionary_2_TKey_TValue_KeyCollection_Rewired_InputMapper_LHIKMCjQdqDNBdfhNEqxmrgcNERkA_Rewired_Utils_SafeDelegate_ *_keys; - struct Dictionary_2_TKey_TValue_ValueCollection_Rewired_InputMapper_LHIKMCjQdqDNBdfhNEqxmrgcNERkA_Rewired_Utils_SafeDelegate_ *_values; - struct Object *_syncRoot; -}; - -struct Dictionary_2_Rewired_InputMapper_LHIKMCjQdqDNBdfhNEqxmrgcNERkA_Rewired_Utils_SafeDelegate_ { - struct Dictionary_2_Rewired_InputMapper_LHIKMCjQdqDNBdfhNEqxmrgcNERkA_Rewired_Utils_SafeDelegate___Class *klass; - MonitorData *monitor; - struct Dictionary_2_Rewired_InputMapper_LHIKMCjQdqDNBdfhNEqxmrgcNERkA_Rewired_Utils_SafeDelegate___Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class InputMapper_LHIKMCjQdqDNBdfhNEqxmrgcNERkA__Enum : int32_t { InputMapped = 0x00000000, @@ -310903,6 +314299,25 @@ struct Dictionary_2_TKey_TValue_Entry_Rewired_InputMapper_LHIKMCjQdqDNBdfhNEqxmr struct Dictionary_2_TKey_TValue_Entry_Rewired_InputMapper_LHIKMCjQdqDNBdfhNEqxmrgcNERkA_Rewired_Utils_SafeDelegate_ fields; }; +struct __declspec(align(8)) Dictionary_2_Rewired_InputMapper_LHIKMCjQdqDNBdfhNEqxmrgcNERkA_Rewired_Utils_SafeDelegate___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_Rewired_InputMapper_LHIKMCjQdqDNBdfhNEqxmrgcNERkA_Rewired_Utils_SafeDelegate___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_Rewired_InputMapper_LHIKMCjQdqDNBdfhNEqxmrgcNERkA_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_Rewired_InputMapper_LHIKMCjQdqDNBdfhNEqxmrgcNERkA_Rewired_Utils_SafeDelegate_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_Rewired_InputMapper_LHIKMCjQdqDNBdfhNEqxmrgcNERkA_Rewired_Utils_SafeDelegate_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_Rewired_InputMapper_LHIKMCjQdqDNBdfhNEqxmrgcNERkA_Rewired_Utils_SafeDelegate_ { + struct Dictionary_2_Rewired_InputMapper_LHIKMCjQdqDNBdfhNEqxmrgcNERkA_Rewired_Utils_SafeDelegate___Class *klass; + MonitorData *monitor; + struct Dictionary_2_Rewired_InputMapper_LHIKMCjQdqDNBdfhNEqxmrgcNERkA_Rewired_Utils_SafeDelegate___Fields fields; +}; + struct Dictionary_2_TKey_TValue_Entry_Rewired_InputMapper_LHIKMCjQdqDNBdfhNEqxmrgcNERkA_Rewired_Utils_SafeDelegate___Array { struct Dictionary_2_TKey_TValue_Entry_Rewired_InputMapper_LHIKMCjQdqDNBdfhNEqxmrgcNERkA_Rewired_Utils_SafeDelegate___Array__Class *klass; MonitorData *monitor; @@ -311251,6 +314666,21 @@ struct ICollection_1_Rewired_Utils_SafeDelegate___Class { struct ICollection_1_Rewired_Utils_SafeDelegate___VTable vtable; }; +struct SafeDelegate___VTable { +}; + +struct SafeDelegate___StaticFields { +}; + +struct SafeDelegate___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SafeDelegate___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SafeDelegate___VTable vtable; +}; + struct KeyValuePair_2_System_String_Rewired_Utils_SafeDelegate___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -313053,6 +316483,17 @@ struct RankHelpers { struct RankHelpers__Fields fields; }; +struct __declspec(align(8)) RankHelpers_RankSprite__Fields { + int32_t minRank; + struct Sprite *sprite; +}; + +struct RankHelpers_RankSprite { + struct RankHelpers_RankSprite__Class *klass; + MonitorData *monitor; + struct RankHelpers_RankSprite__Fields fields; +}; + struct __declspec(align(8)) List_1_RankHelpers_RankSprite___Fields { struct RankHelpers_RankSprite__Array *_items; int32_t _size; @@ -313066,17 +316507,6 @@ struct List_1_RankHelpers_RankSprite_ { struct List_1_RankHelpers_RankSprite___Fields fields; }; -struct __declspec(align(8)) RankHelpers_RankSprite__Fields { - int32_t minRank; - struct Sprite *sprite; -}; - -struct RankHelpers_RankSprite { - struct RankHelpers_RankSprite__Class *klass; - MonitorData *monitor; - struct RankHelpers_RankSprite__Fields fields; -}; - struct RankHelpers_RankSprite__Array { struct RankHelpers_RankSprite__Array__Class *klass; MonitorData *monitor; @@ -313877,25 +317307,6 @@ struct SessionHelpers { struct SessionHelpers__Fields fields; }; -struct __declspec(align(8)) Dictionary_2_System_UInt32_SessionClient___Fields { - struct Int32__Array *_buckets; - struct Dictionary_2_TKey_TValue_Entry_System_UInt32_SessionClient___Array *_entries; - int32_t _count; - int32_t _freeList; - int32_t _freeCount; - int32_t _version; - struct IEqualityComparer_1_System_UInt32_ *_comparer; - struct Dictionary_2_TKey_TValue_KeyCollection_System_UInt32_SessionClient_ *_keys; - struct Dictionary_2_TKey_TValue_ValueCollection_System_UInt32_SessionClient_ *_values; - struct Object *_syncRoot; -}; - -struct Dictionary_2_System_UInt32_SessionClient_ { - struct Dictionary_2_System_UInt32_SessionClient___Class *klass; - MonitorData *monitor; - struct Dictionary_2_System_UInt32_SessionClient___Fields fields; -}; - struct SessionClient { struct String *username; struct String *survivalPrefabIdPreference; @@ -313927,6 +317338,25 @@ struct Dictionary_2_TKey_TValue_Entry_System_UInt32_SessionClient___Boxed { struct Dictionary_2_TKey_TValue_Entry_System_UInt32_SessionClient_ fields; }; +struct __declspec(align(8)) Dictionary_2_System_UInt32_SessionClient___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_System_UInt32_SessionClient___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_System_UInt32_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_System_UInt32_SessionClient_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_System_UInt32_SessionClient_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_System_UInt32_SessionClient_ { + struct Dictionary_2_System_UInt32_SessionClient___Class *klass; + MonitorData *monitor; + struct Dictionary_2_System_UInt32_SessionClient___Fields fields; +}; + struct Dictionary_2_TKey_TValue_Entry_System_UInt32_SessionClient___Array { struct Dictionary_2_TKey_TValue_Entry_System_UInt32_SessionClient___Array__Class *klass; MonitorData *monitor; @@ -314002,6 +317432,17 @@ struct IEnumerable_1_SessionClient_ { MonitorData *monitor; }; +struct KickedPlayer { + struct CSteamID steamId; + struct String *uniqueDeviceId; +}; + +struct KickedPlayer__Boxed { + struct KickedPlayer__Class *klass; + MonitorData *monitor; + struct KickedPlayer fields; +}; + struct __declspec(align(8)) List_1_KickedPlayer___Fields { struct KickedPlayer__Array *_items; int32_t _size; @@ -314015,17 +317456,6 @@ struct List_1_KickedPlayer_ { struct List_1_KickedPlayer___Fields fields; }; -struct KickedPlayer { - struct CSteamID steamId; - struct String *uniqueDeviceId; -}; - -struct KickedPlayer__Boxed { - struct KickedPlayer__Class *klass; - MonitorData *monitor; - struct KickedPlayer fields; -}; - struct KickedPlayer__Array { struct KickedPlayer__Array__Class *klass; MonitorData *monitor; @@ -314211,6 +317641,21 @@ struct ICollection_1_SessionClient___Class { struct ICollection_1_SessionClient___VTable vtable; }; +struct SessionClient___VTable { +}; + +struct SessionClient___StaticFields { +}; + +struct SessionClient___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SessionClient___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SessionClient___VTable vtable; +}; + struct KeyValuePair_2_System_UInt32_SessionClient___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -317065,6 +320510,36 @@ struct MenuSceneToken__Class { struct MenuSceneToken__VTable vtable; }; +struct Menu_GameStatsAwardEntry___VTable { +}; + +struct Menu_GameStatsAwardEntry___StaticFields { +}; + +struct Menu_GameStatsAwardEntry___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Menu_GameStatsAwardEntry___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Menu_GameStatsAwardEntry___VTable vtable; +}; + +struct HAuthTicket___VTable { +}; + +struct HAuthTicket___StaticFields { +}; + +struct HAuthTicket___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HAuthTicket___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HAuthTicket___VTable vtable; +}; + struct __declspec(align(8)) Menu_AwardEntryData__Fields { struct String *playerPrefabId; struct String *playerName; @@ -321070,6 +324545,11 @@ struct DACPrefabPool__Class { struct DACPrefabPool__VTable vtable; }; +struct IControllerTemplateElement { + struct IControllerTemplateElement__Class *klass; + MonitorData *monitor; +}; + struct __declspec(align(8)) ControllerTemplate__Fields { struct String *DvzsLoKoKRWJfvrNafCaPsjALsgO; struct Guid aEqZMkxMqFENGZjtjHycjpmUVeMq; @@ -321097,6 +324577,19 @@ struct GamepadTemplate { struct GamepadTemplate__Fields fields; }; +struct ADictionary_2_TKey_TValue_Entry_System_Int32_Rewired_IControllerTemplateElement_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct IControllerTemplateElement *value; +}; + +struct ADictionary_2_TKey_TValue_Entry_System_Int32_Rewired_IControllerTemplateElement___Boxed { + struct ADictionary_2_TKey_TValue_Entry_System_Int32_Rewired_IControllerTemplateElement___Class *klass; + MonitorData *monitor; + struct ADictionary_2_TKey_TValue_Entry_System_Int32_Rewired_IControllerTemplateElement_ fields; +}; + struct __declspec(align(8)) ADictionary_2_System_Int32_Rewired_IControllerTemplateElement___Fields { struct Int32__Array *pGawVZUvYULemJqagZXhjOtPTktC; struct ADictionary_2_TKey_TValue_Entry_System_Int32_Rewired_IControllerTemplateElement___Array *_entries; @@ -321118,24 +324611,6 @@ struct ADictionary_2_System_Int32_Rewired_IControllerTemplateElement_ { struct ADictionary_2_System_Int32_Rewired_IControllerTemplateElement___Fields fields; }; -struct ADictionary_2_TKey_TValue_Entry_System_Int32_Rewired_IControllerTemplateElement_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct IControllerTemplateElement *value; -}; - -struct ADictionary_2_TKey_TValue_Entry_System_Int32_Rewired_IControllerTemplateElement___Boxed { - struct ADictionary_2_TKey_TValue_Entry_System_Int32_Rewired_IControllerTemplateElement___Class *klass; - MonitorData *monitor; - struct ADictionary_2_TKey_TValue_Entry_System_Int32_Rewired_IControllerTemplateElement_ fields; -}; - -struct IControllerTemplateElement { - struct IControllerTemplateElement__Class *klass; - MonitorData *monitor; -}; - struct ADictionary_2_TKey_TValue_Entry_System_Int32_Rewired_IControllerTemplateElement___Array { struct ADictionary_2_TKey_TValue_Entry_System_Int32_Rewired_IControllerTemplateElement___Array__Class *klass; MonitorData *monitor; @@ -321211,6 +324686,19 @@ struct IEnumerator_1_KeyValuePair_2_System_Int32_Rewired_IControllerTemplateElem MonitorData *monitor; }; +struct ADictionary_2_TKey_TValue_Entry_System_String_Rewired_IControllerTemplateElement_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct IControllerTemplateElement *value; +}; + +struct ADictionary_2_TKey_TValue_Entry_System_String_Rewired_IControllerTemplateElement___Boxed { + struct ADictionary_2_TKey_TValue_Entry_System_String_Rewired_IControllerTemplateElement___Class *klass; + MonitorData *monitor; + struct ADictionary_2_TKey_TValue_Entry_System_String_Rewired_IControllerTemplateElement_ fields; +}; + struct __declspec(align(8)) ADictionary_2_System_String_Rewired_IControllerTemplateElement___Fields { struct Int32__Array *pGawVZUvYULemJqagZXhjOtPTktC; struct ADictionary_2_TKey_TValue_Entry_System_String_Rewired_IControllerTemplateElement___Array *_entries; @@ -321232,19 +324720,6 @@ struct ADictionary_2_System_String_Rewired_IControllerTemplateElement_ { struct ADictionary_2_System_String_Rewired_IControllerTemplateElement___Fields fields; }; -struct ADictionary_2_TKey_TValue_Entry_System_String_Rewired_IControllerTemplateElement_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct IControllerTemplateElement *value; -}; - -struct ADictionary_2_TKey_TValue_Entry_System_String_Rewired_IControllerTemplateElement___Boxed { - struct ADictionary_2_TKey_TValue_Entry_System_String_Rewired_IControllerTemplateElement___Class *klass; - MonitorData *monitor; - struct ADictionary_2_TKey_TValue_Entry_System_String_Rewired_IControllerTemplateElement_ fields; -}; - struct ADictionary_2_TKey_TValue_Entry_System_String_Rewired_IControllerTemplateElement___Array { struct ADictionary_2_TKey_TValue_Entry_System_String_Rewired_IControllerTemplateElement___Array__Class *klass; MonitorData *monitor; @@ -321541,6 +325016,21 @@ struct ICollection_1_Rewired_IControllerTemplateElement___Class { struct ICollection_1_Rewired_IControllerTemplateElement___VTable vtable; }; +struct IControllerTemplateElement___VTable { +}; + +struct IControllerTemplateElement___StaticFields { +}; + +struct IControllerTemplateElement___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IControllerTemplateElement___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IControllerTemplateElement___VTable vtable; +}; + struct KeyValuePair_2_System_Int32_Rewired_IControllerTemplateElement___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -322762,6 +326252,36 @@ struct Action_2_UInt32_Boolean___Class { struct Action_2_UInt32_Boolean___VTable vtable; }; +struct List_1_System_Int32__1__VTable { +}; + +struct List_1_System_Int32__1__StaticFields { +}; + +struct List_1_System_Int32__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_System_Int32__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_System_Int32__1__VTable vtable; +}; + +struct Touch___VTable { +}; + +struct Touch___StaticFields { +}; + +struct Touch___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Touch___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Touch___VTable vtable; +}; + struct ExternalTools__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -322938,14 +326458,16 @@ struct UserDataStore_PlayerPrefs__Class { struct UserDataStore_PlayerPrefs__VTable vtable; }; -struct __declspec(align(8)) UserDataStore_PlayerPrefs_ControllerAssignmentSaveInfo__Fields { - struct UserDataStore_PlayerPrefs_ControllerAssignmentSaveInfo_PlayerInfo__Array *players; +struct __declspec(align(8)) UserDataStore_PlayerPrefs_ControllerAssignmentSaveInfo_JoystickInfo__Fields { + struct Guid instanceGuid; + struct String *hardwareIdentifier; + int32_t id; }; -struct UserDataStore_PlayerPrefs_ControllerAssignmentSaveInfo { - struct UserDataStore_PlayerPrefs_ControllerAssignmentSaveInfo__Class *klass; +struct UserDataStore_PlayerPrefs_ControllerAssignmentSaveInfo_JoystickInfo { + struct UserDataStore_PlayerPrefs_ControllerAssignmentSaveInfo_JoystickInfo__Class *klass; MonitorData *monitor; - struct UserDataStore_PlayerPrefs_ControllerAssignmentSaveInfo__Fields fields; + struct UserDataStore_PlayerPrefs_ControllerAssignmentSaveInfo_JoystickInfo__Fields fields; }; struct __declspec(align(8)) UserDataStore_PlayerPrefs_ControllerAssignmentSaveInfo_PlayerInfo__Fields { @@ -322961,16 +326483,14 @@ struct UserDataStore_PlayerPrefs_ControllerAssignmentSaveInfo_PlayerInfo { struct UserDataStore_PlayerPrefs_ControllerAssignmentSaveInfo_PlayerInfo__Fields fields; }; -struct __declspec(align(8)) UserDataStore_PlayerPrefs_ControllerAssignmentSaveInfo_JoystickInfo__Fields { - struct Guid instanceGuid; - struct String *hardwareIdentifier; - int32_t id; +struct __declspec(align(8)) UserDataStore_PlayerPrefs_ControllerAssignmentSaveInfo__Fields { + struct UserDataStore_PlayerPrefs_ControllerAssignmentSaveInfo_PlayerInfo__Array *players; }; -struct UserDataStore_PlayerPrefs_ControllerAssignmentSaveInfo_JoystickInfo { - struct UserDataStore_PlayerPrefs_ControllerAssignmentSaveInfo_JoystickInfo__Class *klass; +struct UserDataStore_PlayerPrefs_ControllerAssignmentSaveInfo { + struct UserDataStore_PlayerPrefs_ControllerAssignmentSaveInfo__Class *klass; MonitorData *monitor; - struct UserDataStore_PlayerPrefs_ControllerAssignmentSaveInfo_JoystickInfo__Fields fields; + struct UserDataStore_PlayerPrefs_ControllerAssignmentSaveInfo__Fields fields; }; struct UserDataStore_PlayerPrefs_ControllerAssignmentSaveInfo_JoystickInfo__Array { @@ -323076,20 +326596,6 @@ struct UserDataStore_PlayerPrefs_ControllerAssignmentSaveInfo__Class { struct UserDataStore_PlayerPrefs_ControllerAssignmentSaveInfo__VTable vtable; }; -struct PlayerSaveData { - struct JoystickMapSaveData__Array *LHSAfgxtwktwYKRMSStTjzWVsNiK; - struct KeyboardMapSaveData__Array *tuiOeALvRdcAbebGdtiaOJBJWACw; - struct MouseMapSaveData__Array *RHxVmNiLkVHmDJjBrdhciSVDsGcOB; - struct CustomControllerMapSaveData__Array *ZgsRZFLbFYjphZJlBGBocGxIWNMPA; - struct InputBehavior__Array *eBmGZXMynfrTedYOTOfajTkgWfGi; -}; - -struct PlayerSaveData__Boxed { - struct PlayerSaveData__Class *klass; - MonitorData *monitor; - struct PlayerSaveData fields; -}; - struct __declspec(align(8)) ControllerMapSaveData__Fields { struct Controller *_controller; struct ControllerMap *_map; @@ -323112,14 +326618,6 @@ struct JoystickMapSaveData { struct JoystickMapSaveData__Fields fields; }; -struct JoystickMapSaveData__Array { - struct JoystickMapSaveData__Array__Class *klass; - MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - struct JoystickMapSaveData *vector[32]; -}; - struct KeyboardMapSaveData__Fields { struct ControllerMapSaveData__Fields _; }; @@ -323130,14 +326628,6 @@ struct KeyboardMapSaveData { struct KeyboardMapSaveData__Fields fields; }; -struct KeyboardMapSaveData__Array { - struct KeyboardMapSaveData__Array__Class *klass; - MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - struct KeyboardMapSaveData *vector[32]; -}; - struct MouseMapSaveData__Fields { struct ControllerMapSaveData__Fields _; }; @@ -323148,14 +326638,6 @@ struct MouseMapSaveData { struct MouseMapSaveData__Fields fields; }; -struct MouseMapSaveData__Array { - struct MouseMapSaveData__Array__Class *klass; - MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - struct MouseMapSaveData *vector[32]; -}; - struct CustomControllerMapSaveData__Fields { struct ControllerMapSaveData__Fields _; }; @@ -323166,6 +326648,44 @@ struct CustomControllerMapSaveData { struct CustomControllerMapSaveData__Fields fields; }; +struct PlayerSaveData { + struct JoystickMapSaveData__Array *LHSAfgxtwktwYKRMSStTjzWVsNiK; + struct KeyboardMapSaveData__Array *tuiOeALvRdcAbebGdtiaOJBJWACw; + struct MouseMapSaveData__Array *RHxVmNiLkVHmDJjBrdhciSVDsGcOB; + struct CustomControllerMapSaveData__Array *ZgsRZFLbFYjphZJlBGBocGxIWNMPA; + struct InputBehavior__Array *eBmGZXMynfrTedYOTOfajTkgWfGi; +}; + +struct PlayerSaveData__Boxed { + struct PlayerSaveData__Class *klass; + MonitorData *monitor; + struct PlayerSaveData fields; +}; + +struct JoystickMapSaveData__Array { + struct JoystickMapSaveData__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct JoystickMapSaveData *vector[32]; +}; + +struct KeyboardMapSaveData__Array { + struct KeyboardMapSaveData__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct KeyboardMapSaveData *vector[32]; +}; + +struct MouseMapSaveData__Array { + struct MouseMapSaveData__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct MouseMapSaveData *vector[32]; +}; + struct CustomControllerMapSaveData__Array { struct CustomControllerMapSaveData__Array__Class *klass; MonitorData *monitor; @@ -323348,6 +326868,21 @@ struct PlayerSaveData__Class { struct PlayerSaveData__VTable vtable; }; +struct List_1_Rewired_Joystick__1__VTable { +}; + +struct List_1_Rewired_Joystick__1__StaticFields { +}; + +struct List_1_Rewired_Joystick__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Rewired_Joystick__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Rewired_Joystick__1__VTable vtable; +}; + struct __declspec(align(8)) UserDataStore_PlayerPrefs_JoystickAssignmentHistoryInfo__Fields { struct Joystick *joystick; int32_t oldJoystickId; @@ -323751,21 +327286,6 @@ struct ControlRemappingDemo1_ControllerSelection { struct ControlRemappingDemo1_ControllerSelection__Fields fields; }; -struct __declspec(align(8)) Queue_1_Rewired_Demos_ControlRemappingDemo1_QueueEntry___Fields { - struct ControlRemappingDemo1_QueueEntry__Array *_array; - int32_t _head; - int32_t _tail; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct Queue_1_Rewired_Demos_ControlRemappingDemo1_QueueEntry_ { - struct Queue_1_Rewired_Demos_ControlRemappingDemo1_QueueEntry___Class *klass; - MonitorData *monitor; - struct Queue_1_Rewired_Demos_ControlRemappingDemo1_QueueEntry___Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class ControlRemappingDemo1_QueueActionType__Enum : int32_t { None = 0x00000000, @@ -323845,6 +327365,21 @@ struct ControlRemappingDemo1_QueueEntry { struct ControlRemappingDemo1_QueueEntry__Fields fields; }; +struct __declspec(align(8)) Queue_1_Rewired_Demos_ControlRemappingDemo1_QueueEntry___Fields { + struct ControlRemappingDemo1_QueueEntry__Array *_array; + int32_t _head; + int32_t _tail; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct Queue_1_Rewired_Demos_ControlRemappingDemo1_QueueEntry_ { + struct Queue_1_Rewired_Demos_ControlRemappingDemo1_QueueEntry___Class *klass; + MonitorData *monitor; + struct Queue_1_Rewired_Demos_ControlRemappingDemo1_QueueEntry___Fields fields; +}; + struct ControlRemappingDemo1_QueueEntry__Array { struct ControlRemappingDemo1_QueueEntry__Array__Class *klass; MonitorData *monitor; @@ -324487,27 +328022,6 @@ struct CustomControllersTiltDemo__Class { struct CustomControllersTiltDemo__VTable vtable; }; -struct CustomControllerDemo__Fields { - struct MonoBehaviour__Fields _; - int32_t playerId; - struct String *controllerTag; - bool useUpdateCallbacks; - int32_t buttonCount; - int32_t axisCount; - struct Single__Array *axisValues; - struct Boolean__Array *buttonValues; - struct TouchJoystickExample__Array *joysticks; - struct TouchButtonExample__Array *buttons; - struct CustomController *controller; - bool initialized; -}; - -struct CustomControllerDemo { - struct CustomControllerDemo__Class *klass; - MonitorData *monitor; - struct CustomControllerDemo__Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class ScreenOrientation__Enum : int32_t { Unknown = 0x00000000, @@ -324564,14 +328078,6 @@ struct TouchJoystickExample { struct TouchJoystickExample__Fields fields; }; -struct TouchJoystickExample__Array { - struct TouchJoystickExample__Array__Class *klass; - MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - struct TouchJoystickExample *vector[32]; -}; - struct TouchButtonExample__Fields { struct MonoBehaviour__Fields _; bool allowMouseControl; @@ -324584,6 +328090,35 @@ struct TouchButtonExample { struct TouchButtonExample__Fields fields; }; +struct CustomControllerDemo__Fields { + struct MonoBehaviour__Fields _; + int32_t playerId; + struct String *controllerTag; + bool useUpdateCallbacks; + int32_t buttonCount; + int32_t axisCount; + struct Single__Array *axisValues; + struct Boolean__Array *buttonValues; + struct TouchJoystickExample__Array *joysticks; + struct TouchButtonExample__Array *buttons; + struct CustomController *controller; + bool initialized; +}; + +struct CustomControllerDemo { + struct CustomControllerDemo__Class *klass; + MonitorData *monitor; + struct CustomControllerDemo__Fields fields; +}; + +struct TouchJoystickExample__Array { + struct TouchJoystickExample__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct TouchJoystickExample *vector[32]; +}; + struct TouchButtonExample__Array { struct TouchButtonExample__Array__Class *klass; MonitorData *monitor; @@ -324775,6 +328310,17 @@ struct DualShock4SpecialFeaturesExample { struct DualShock4SpecialFeaturesExample__Fields fields; }; +struct __declspec(align(8)) DualShock4SpecialFeaturesExample_Touch__Fields { + struct GameObject *go; + int32_t touchId; +}; + +struct DualShock4SpecialFeaturesExample_Touch { + struct DualShock4SpecialFeaturesExample_Touch__Class *klass; + MonitorData *monitor; + struct DualShock4SpecialFeaturesExample_Touch__Fields fields; +}; + struct __declspec(align(8)) List_1_Rewired_Demos_DualShock4SpecialFeaturesExample_Touch___Fields { struct DualShock4SpecialFeaturesExample_Touch__Array *_items; int32_t _size; @@ -324788,17 +328334,6 @@ struct List_1_Rewired_Demos_DualShock4SpecialFeaturesExample_Touch_ { struct List_1_Rewired_Demos_DualShock4SpecialFeaturesExample_Touch___Fields fields; }; -struct __declspec(align(8)) DualShock4SpecialFeaturesExample_Touch__Fields { - struct GameObject *go; - int32_t touchId; -}; - -struct DualShock4SpecialFeaturesExample_Touch { - struct DualShock4SpecialFeaturesExample_Touch__Class *klass; - MonitorData *monitor; - struct DualShock4SpecialFeaturesExample_Touch__Fields fields; -}; - struct DualShock4SpecialFeaturesExample_Touch__Array { struct DualShock4SpecialFeaturesExample_Touch__Array__Class *klass; MonitorData *monitor; @@ -325465,6 +329000,17 @@ struct PressStartToJoinExample_Assigner { struct PressStartToJoinExample_Assigner__Fields fields; }; +struct __declspec(align(8)) PressStartToJoinExample_Assigner_PlayerMap__Fields { + int32_t rewiredPlayerId; + int32_t gamePlayerId; +}; + +struct PressStartToJoinExample_Assigner_PlayerMap { + struct PressStartToJoinExample_Assigner_PlayerMap__Class *klass; + MonitorData *monitor; + struct PressStartToJoinExample_Assigner_PlayerMap__Fields fields; +}; + struct __declspec(align(8)) List_1_Rewired_Demos_PressStartToJoinExample_Assigner_PlayerMap___Fields { struct PressStartToJoinExample_Assigner_PlayerMap__Array *_items; int32_t _size; @@ -325478,17 +329024,6 @@ struct List_1_Rewired_Demos_PressStartToJoinExample_Assigner_PlayerMap_ { struct List_1_Rewired_Demos_PressStartToJoinExample_Assigner_PlayerMap___Fields fields; }; -struct __declspec(align(8)) PressStartToJoinExample_Assigner_PlayerMap__Fields { - int32_t rewiredPlayerId; - int32_t gamePlayerId; -}; - -struct PressStartToJoinExample_Assigner_PlayerMap { - struct PressStartToJoinExample_Assigner_PlayerMap__Class *klass; - MonitorData *monitor; - struct PressStartToJoinExample_Assigner_PlayerMap__Fields fields; -}; - struct PressStartToJoinExample_Assigner_PlayerMap__Array { struct PressStartToJoinExample_Assigner_PlayerMap__Array__Class *klass; MonitorData *monitor; @@ -325722,19 +329257,6 @@ struct SimpleCombinedKeyboardMouseRemapping { struct SimpleCombinedKeyboardMouseRemapping__Fields fields; }; -struct __declspec(align(8)) List_1_Rewired_Demos_SimpleCombinedKeyboardMouseRemapping_Row___Fields { - struct SimpleCombinedKeyboardMouseRemapping_Row__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Rewired_Demos_SimpleCombinedKeyboardMouseRemapping_Row_ { - struct List_1_Rewired_Demos_SimpleCombinedKeyboardMouseRemapping_Row___Class *klass; - MonitorData *monitor; - struct List_1_Rewired_Demos_SimpleCombinedKeyboardMouseRemapping_Row___Fields fields; -}; - struct __declspec(align(8)) SimpleCombinedKeyboardMouseRemapping_Row__Fields { struct InputAction *action; #if defined(_CPLUSPLUS_) @@ -325752,6 +329274,19 @@ struct SimpleCombinedKeyboardMouseRemapping_Row { struct SimpleCombinedKeyboardMouseRemapping_Row__Fields fields; }; +struct __declspec(align(8)) List_1_Rewired_Demos_SimpleCombinedKeyboardMouseRemapping_Row___Fields { + struct SimpleCombinedKeyboardMouseRemapping_Row__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Rewired_Demos_SimpleCombinedKeyboardMouseRemapping_Row_ { + struct List_1_Rewired_Demos_SimpleCombinedKeyboardMouseRemapping_Row___Class *klass; + MonitorData *monitor; + struct List_1_Rewired_Demos_SimpleCombinedKeyboardMouseRemapping_Row___Fields fields; +}; + struct SimpleCombinedKeyboardMouseRemapping_Row__Array { struct SimpleCombinedKeyboardMouseRemapping_Row__Array__Class *klass; MonitorData *monitor; @@ -325999,19 +329534,6 @@ struct SimpleControlRemapping { struct SimpleControlRemapping__Fields fields; }; -struct __declspec(align(8)) List_1_Rewired_Demos_SimpleControlRemapping_Row___Fields { - struct SimpleControlRemapping_Row__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Rewired_Demos_SimpleControlRemapping_Row_ { - struct List_1_Rewired_Demos_SimpleControlRemapping_Row___Class *klass; - MonitorData *monitor; - struct List_1_Rewired_Demos_SimpleControlRemapping_Row___Fields fields; -}; - struct __declspec(align(8)) SimpleControlRemapping_Row__Fields { struct InputAction *action; #if defined(_CPLUSPLUS_) @@ -326029,6 +329551,19 @@ struct SimpleControlRemapping_Row { struct SimpleControlRemapping_Row__Fields fields; }; +struct __declspec(align(8)) List_1_Rewired_Demos_SimpleControlRemapping_Row___Fields { + struct SimpleControlRemapping_Row__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Rewired_Demos_SimpleControlRemapping_Row_ { + struct List_1_Rewired_Demos_SimpleControlRemapping_Row___Class *klass; + MonitorData *monitor; + struct List_1_Rewired_Demos_SimpleControlRemapping_Row___Fields fields; +}; + struct SimpleControlRemapping_Row__Array { struct SimpleControlRemapping_Row__Array__Class *klass; MonitorData *monitor; @@ -326330,6 +329865,30 @@ struct ControllerUIElement__Class { struct ControllerUIElement__VTable vtable; }; +struct __declspec(align(8)) GamepadTemplateUI_UIElement__Fields { + int32_t id; + struct ControllerUIElement *element; +}; + +struct GamepadTemplateUI_UIElement { + struct GamepadTemplateUI_UIElement__Class *klass; + MonitorData *monitor; + struct GamepadTemplateUI_UIElement__Fields fields; +}; + +struct __declspec(align(8)) GamepadTemplateUI_Stick__Fields { + struct RectTransform *_transform; + struct Vector2 _origPosition; + int32_t _xAxisElementId; + int32_t _yAxisElementId; +}; + +struct GamepadTemplateUI_Stick { + struct GamepadTemplateUI_Stick__Class *klass; + MonitorData *monitor; + struct GamepadTemplateUI_Stick__Fields fields; +}; + struct GamepadTemplateUI__Fields { struct MonoBehaviour__Fields _; int32_t playerId; @@ -326370,17 +329929,6 @@ struct GamepadTemplateUI { struct GamepadTemplateUI__Fields fields; }; -struct __declspec(align(8)) GamepadTemplateUI_UIElement__Fields { - int32_t id; - struct ControllerUIElement *element; -}; - -struct GamepadTemplateUI_UIElement { - struct GamepadTemplateUI_UIElement__Class *klass; - MonitorData *monitor; - struct GamepadTemplateUI_UIElement__Fields fields; -}; - struct GamepadTemplateUI_UIElement__Array { struct GamepadTemplateUI_UIElement__Array__Class *klass; MonitorData *monitor; @@ -326389,6 +329937,19 @@ struct GamepadTemplateUI_UIElement__Array { struct GamepadTemplateUI_UIElement *vector[32]; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_Rewired_Demos_GamepadTemplateUI_ControllerUIElement_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct ControllerUIElement *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_Rewired_Demos_GamepadTemplateUI_ControllerUIElement___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_Rewired_Demos_GamepadTemplateUI_ControllerUIElement___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_Rewired_Demos_GamepadTemplateUI_ControllerUIElement_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_Rewired_Demos_GamepadTemplateUI_ControllerUIElement___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_Rewired_Demos_GamepadTemplateUI_ControllerUIElement___Array *_entries; @@ -326408,19 +329969,6 @@ struct Dictionary_2_System_Int32_Rewired_Demos_GamepadTemplateUI_ControllerUIEle struct Dictionary_2_System_Int32_Rewired_Demos_GamepadTemplateUI_ControllerUIElement___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_Rewired_Demos_GamepadTemplateUI_ControllerUIElement_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct ControllerUIElement *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_Rewired_Demos_GamepadTemplateUI_ControllerUIElement___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_Rewired_Demos_GamepadTemplateUI_ControllerUIElement___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_Rewired_Demos_GamepadTemplateUI_ControllerUIElement_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_Rewired_Demos_GamepadTemplateUI_ControllerUIElement___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_Rewired_Demos_GamepadTemplateUI_ControllerUIElement___Array__Class *klass; MonitorData *monitor; @@ -326488,19 +330036,6 @@ struct IEnumerable_1_Rewired_Demos_GamepadTemplateUI_ControllerUIElement_ { MonitorData *monitor; }; -struct __declspec(align(8)) GamepadTemplateUI_Stick__Fields { - struct RectTransform *_transform; - struct Vector2 _origPosition; - int32_t _xAxisElementId; - int32_t _yAxisElementId; -}; - -struct GamepadTemplateUI_Stick { - struct GamepadTemplateUI_Stick__Class *klass; - MonitorData *monitor; - struct GamepadTemplateUI_Stick__Fields fields; -}; - struct GamepadTemplateUI_Stick__Array { struct GamepadTemplateUI_Stick__Array__Class *klass; MonitorData *monitor; @@ -326681,6 +330216,21 @@ struct ICollection_1_Rewired_Demos_GamepadTemplateUI_ControllerUIElement___Class struct ICollection_1_Rewired_Demos_GamepadTemplateUI_ControllerUIElement___VTable vtable; }; +struct ControllerUIElement___VTable { +}; + +struct ControllerUIElement___StaticFields { +}; + +struct ControllerUIElement___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ControllerUIElement___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ControllerUIElement___VTable vtable; +}; + struct KeyValuePair_2_System_Int32_Rewired_Demos_GamepadTemplateUI_ControllerUIElement___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -327007,19 +330557,6 @@ struct WetDecalRenderer { struct WetDecalRenderer__Fields fields; }; -struct __declspec(align(8)) List_1_PlaceholderSoftware_WetStuff_WetDecalRenderer_DecalBatch___Fields { - struct WetDecalRenderer_DecalBatch__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_PlaceholderSoftware_WetStuff_WetDecalRenderer_DecalBatch_ { - struct List_1_PlaceholderSoftware_WetStuff_WetDecalRenderer_DecalBatch___Class *klass; - MonitorData *monitor; - struct List_1_PlaceholderSoftware_WetStuff_WetDecalRenderer_DecalBatch___Fields fields; -}; - struct __declspec(align(8)) WetDecalRenderer_DecalBatch__Fields { struct Mesh *_box; struct BatchCulling *_culling; @@ -327049,6 +330586,19 @@ struct WetDecalRenderer_DecalBatch { struct WetDecalRenderer_DecalBatch__Fields fields; }; +struct __declspec(align(8)) List_1_PlaceholderSoftware_WetStuff_WetDecalRenderer_DecalBatch___Fields { + struct WetDecalRenderer_DecalBatch__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_PlaceholderSoftware_WetStuff_WetDecalRenderer_DecalBatch_ { + struct List_1_PlaceholderSoftware_WetStuff_WetDecalRenderer_DecalBatch___Class *klass; + MonitorData *monitor; + struct List_1_PlaceholderSoftware_WetStuff_WetDecalRenderer_DecalBatch___Fields fields; +}; + struct __declspec(align(8)) BatchCulling__Fields { struct WetDecalSystem_MaterialBatch *_batch; struct Camera *_camera; @@ -327063,6 +330613,17 @@ struct BatchCulling { struct BatchCulling__Fields fields; }; +struct BoundingSphere { + struct Vector3 position; + float radius; +}; + +struct BoundingSphere__Boxed { + struct BoundingSphere__Class *klass; + MonitorData *monitor; + struct BoundingSphere fields; +}; + struct MaterialProperties { struct Texture2D *XLayer; struct Vector4 XLayerScaleOffset; @@ -327222,19 +330783,6 @@ struct WetDecalSystem_MaterialBatch { struct WetDecalSystem_MaterialBatch__Fields fields; }; -struct __declspec(align(8)) List_1_PlaceholderSoftware_WetStuff_WetDecalSystem_DecalRenderInstance___Fields { - struct WetDecalSystem_DecalRenderInstance__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_PlaceholderSoftware_WetStuff_WetDecalSystem_DecalRenderInstance_ { - struct List_1_PlaceholderSoftware_WetStuff_WetDecalSystem_DecalRenderInstance___Class *klass; - MonitorData *monitor; - struct List_1_PlaceholderSoftware_WetStuff_WetDecalSystem_DecalRenderInstance___Fields fields; -}; - struct LayerParameters { struct Vector4 LayerInputStart; struct Vector4 LayerInputExtent; @@ -327278,6 +330826,19 @@ struct WetDecalSystem_DecalRenderInstance { struct WetDecalSystem_DecalRenderInstance__Fields fields; }; +struct __declspec(align(8)) List_1_PlaceholderSoftware_WetStuff_WetDecalSystem_DecalRenderInstance___Fields { + struct WetDecalSystem_DecalRenderInstance__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_PlaceholderSoftware_WetStuff_WetDecalSystem_DecalRenderInstance_ { + struct List_1_PlaceholderSoftware_WetStuff_WetDecalSystem_DecalRenderInstance___Class *klass; + MonitorData *monitor; + struct List_1_PlaceholderSoftware_WetStuff_WetDecalSystem_DecalRenderInstance___Fields fields; +}; + struct __declspec(align(8)) Pool_1_PlaceholderSoftware_WetStuff_WetDecalSystem_DecalRenderInstance___Fields { struct Func_1_PlaceholderSoftware_WetStuff_WetDecalSystem_DecalRenderInstance_ *_factory; struct Stack_1_PlaceholderSoftware_WetStuff_WetDecalSystem_DecalRenderInstance_ *_items; @@ -327357,25 +330918,6 @@ struct WetDecalSystem_State { struct WetDecalSystem_State__Fields fields; }; -struct __declspec(align(8)) Dictionary_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch___Fields { - struct Int32__Array *_buckets; - struct Dictionary_2_TKey_TValue_Entry_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch___Array *_entries; - int32_t _count; - int32_t _freeList; - int32_t _freeCount; - int32_t _version; - struct IEqualityComparer_1_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_ *_comparer; - struct Dictionary_2_TKey_TValue_KeyCollection_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch_ *_keys; - struct Dictionary_2_TKey_TValue_ValueCollection_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch_ *_values; - struct Object *_syncRoot; -}; - -struct Dictionary_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch_ { - struct Dictionary_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch___Class *klass; - MonitorData *monitor; - struct Dictionary_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch___Fields fields; -}; - struct WetDecalSystem_MaterialBatchId { struct MaterialPermutation _permutation; struct MaterialProperties _properties; @@ -327400,6 +330942,25 @@ struct Dictionary_2_TKey_TValue_Entry_PlaceholderSoftware_WetStuff_WetDecalSyste struct Dictionary_2_TKey_TValue_Entry_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch_ fields; }; +struct __declspec(align(8)) Dictionary_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch_ { + struct Dictionary_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch___Class *klass; + MonitorData *monitor; + struct Dictionary_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch___Fields fields; +}; + struct Dictionary_2_TKey_TValue_Entry_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch___Array { struct Dictionary_2_TKey_TValue_Entry_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch___Array__Class *klass; MonitorData *monitor; @@ -327532,6 +331093,11 @@ struct IList_1_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch_ { MonitorData *monitor; }; +struct IWetDecal { + struct IWetDecal__Class *klass; + MonitorData *monitor; +}; + struct __declspec(align(8)) List_1_PlaceholderSoftware_WetStuff_IWetDecal___Fields { struct IWetDecal__Array *_items; int32_t _size; @@ -327545,11 +331111,6 @@ struct List_1_PlaceholderSoftware_WetStuff_IWetDecal_ { struct List_1_PlaceholderSoftware_WetStuff_IWetDecal___Fields fields; }; -struct IWetDecal { - struct IWetDecal__Class *klass; - MonitorData *monitor; -}; - struct IWetDecal__Array { struct IWetDecal__Array__Class *klass; MonitorData *monitor; @@ -327571,17 +331132,6 @@ struct WetDecalSystem_DecalRenderInstance__Array { struct WetDecalSystem_DecalRenderInstance *vector[32]; }; -struct BoundingSphere { - struct Vector3 position; - float radius; -}; - -struct BoundingSphere__Boxed { - struct BoundingSphere__Class *klass; - MonitorData *monitor; - struct BoundingSphere fields; -}; - struct BoundingSphere__Array { struct BoundingSphere__Array__Class *klass; MonitorData *monitor; @@ -327660,6 +331210,19 @@ struct IEnumerator_1_PlaceholderSoftware_WetStuff_WetDecalRenderer_DecalBatch_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch_PlaceholderSoftware_WetStuff_WetDecalRenderer_DecalBatch_ { + int32_t hashCode; + int32_t next; + struct WetDecalSystem_MaterialBatch *key; + struct WetDecalRenderer_DecalBatch *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch_PlaceholderSoftware_WetStuff_WetDecalRenderer_DecalBatch___Boxed { + struct Dictionary_2_TKey_TValue_Entry_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch_PlaceholderSoftware_WetStuff_WetDecalRenderer_DecalBatch___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch_PlaceholderSoftware_WetStuff_WetDecalRenderer_DecalBatch_ fields; +}; + struct __declspec(align(8)) Dictionary_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch_PlaceholderSoftware_WetStuff_WetDecalRenderer_DecalBatch___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch_PlaceholderSoftware_WetStuff_WetDecalRenderer_DecalBatch___Array *_entries; @@ -327679,19 +331242,6 @@ struct Dictionary_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch_Pl struct Dictionary_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch_PlaceholderSoftware_WetStuff_WetDecalRenderer_DecalBatch___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch_PlaceholderSoftware_WetStuff_WetDecalRenderer_DecalBatch_ { - int32_t hashCode; - int32_t next; - struct WetDecalSystem_MaterialBatch *key; - struct WetDecalRenderer_DecalBatch *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch_PlaceholderSoftware_WetStuff_WetDecalRenderer_DecalBatch___Boxed { - struct Dictionary_2_TKey_TValue_Entry_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch_PlaceholderSoftware_WetStuff_WetDecalRenderer_DecalBatch___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch_PlaceholderSoftware_WetStuff_WetDecalRenderer_DecalBatch_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch_PlaceholderSoftware_WetStuff_WetDecalRenderer_DecalBatch___Array { struct Dictionary_2_TKey_TValue_Entry_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch_PlaceholderSoftware_WetStuff_WetDecalRenderer_DecalBatch___Array__Class *klass; MonitorData *monitor; @@ -328412,6 +331962,21 @@ struct ICollection_1_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch__ struct ICollection_1_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch___VTable vtable; }; +struct WetDecalSystem_MaterialBatch___VTable { +}; + +struct WetDecalSystem_MaterialBatch___StaticFields { +}; + +struct WetDecalSystem_MaterialBatch___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct WetDecalSystem_MaterialBatch___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct WetDecalSystem_MaterialBatch___VTable vtable; +}; + struct KeyValuePair_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -329397,6 +332962,21 @@ struct ICollection_1_PlaceholderSoftware_WetStuff_WetDecalRenderer_DecalBatch___ struct ICollection_1_PlaceholderSoftware_WetStuff_WetDecalRenderer_DecalBatch___VTable vtable; }; +struct WetDecalRenderer_DecalBatch___VTable { +}; + +struct WetDecalRenderer_DecalBatch___StaticFields { +}; + +struct WetDecalRenderer_DecalBatch___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct WetDecalRenderer_DecalBatch___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct WetDecalRenderer_DecalBatch___VTable vtable; +}; + struct KeyValuePair_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch_PlaceholderSoftware_WetStuff_WetDecalRenderer_DecalBatch___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -330014,6 +333594,19 @@ struct NL_MCS { struct NL_MCS__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_List_1_UnityEngine_Renderer_ { + int32_t hashCode; + int32_t next; + struct Material *key; + struct List_1_UnityEngine_Renderer_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_List_1_UnityEngine_Renderer___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_List_1_UnityEngine_Renderer___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_List_1_UnityEngine_Renderer_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_Material_List_1_UnityEngine_Renderer___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_List_1_UnityEngine_Renderer___Array *_entries; @@ -330033,19 +333626,6 @@ struct Dictionary_2_UnityEngine_Material_List_1_UnityEngine_Renderer_ { struct Dictionary_2_UnityEngine_Material_List_1_UnityEngine_Renderer___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_List_1_UnityEngine_Renderer_ { - int32_t hashCode; - int32_t next; - struct Material *key; - struct List_1_UnityEngine_Renderer_ *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_List_1_UnityEngine_Renderer___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_List_1_UnityEngine_Renderer___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_List_1_UnityEngine_Renderer_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_List_1_UnityEngine_Renderer___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_List_1_UnityEngine_Renderer___Array__Class *klass; MonitorData *monitor; @@ -330282,6 +333862,21 @@ struct ICollection_1_List_1_UnityEngine_Renderer___Class { struct ICollection_1_List_1_UnityEngine_Renderer___VTable vtable; }; +struct List_1_UnityEngine_Renderer__1__VTable { +}; + +struct List_1_UnityEngine_Renderer__1__StaticFields { +}; + +struct List_1_UnityEngine_Renderer__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_Renderer__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_Renderer__1__VTable vtable; +}; + struct KeyValuePair_2_UnityEngine_Material_List_1_UnityEngine_Renderer___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -331092,19 +334687,6 @@ struct MagicLightProbes { struct MagicLightProbes__Fields fields; }; -struct __declspec(align(8)) List_1_MagicLightProbes_MLPLight___Fields { - struct MLPLight__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_MagicLightProbes_MLPLight_ { - struct List_1_MagicLightProbes_MLPLight___Class *klass; - MonitorData *monitor; - struct List_1_MagicLightProbes_MLPLight___Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class MLPLight_MLPLightType__Enum : int32_t { Spot = 0x00000000, @@ -331325,17 +334907,17 @@ struct MLPLight { struct MLPLight__Fields fields; }; -struct __declspec(align(8)) List_1_MagicLightProbes_MLPTracePoint___Fields { - struct MLPTracePoint__Array *_items; +struct __declspec(align(8)) List_1_MagicLightProbes_MLPLight___Fields { + struct MLPLight__Array *_items; int32_t _size; int32_t _version; struct Object *_syncRoot; }; -struct List_1_MagicLightProbes_MLPTracePoint_ { - struct List_1_MagicLightProbes_MLPTracePoint___Class *klass; +struct List_1_MagicLightProbes_MLPLight_ { + struct List_1_MagicLightProbes_MLPLight___Class *klass; MonitorData *monitor; - struct List_1_MagicLightProbes_MLPTracePoint___Fields fields; + struct List_1_MagicLightProbes_MLPLight___Fields fields; }; struct __declspec(align(8)) MLPTracePoint__Fields { @@ -331351,6 +334933,19 @@ struct MLPTracePoint { struct MLPTracePoint__Fields fields; }; +struct __declspec(align(8)) List_1_MagicLightProbes_MLPTracePoint___Fields { + struct MLPTracePoint__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_MagicLightProbes_MLPTracePoint_ { + struct List_1_MagicLightProbes_MLPTracePoint___Class *klass; + MonitorData *monitor; + struct List_1_MagicLightProbes_MLPTracePoint___Fields fields; +}; + struct MLPTracePoint__Array { struct MLPTracePoint__Array__Class *klass; MonitorData *monitor; @@ -331416,19 +335011,6 @@ struct MLPVolume { struct MLPVolume__Fields fields; }; -struct __declspec(align(8)) List_1_MagicLightProbes_MLPPointData___Fields { - struct MLPPointData__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_MagicLightProbes_MLPPointData_ { - struct List_1_MagicLightProbes_MLPPointData___Class *klass; - MonitorData *monitor; - struct List_1_MagicLightProbes_MLPPointData___Fields fields; -}; - struct __declspec(align(8)) MLPPointData__Fields { float lightIntensity; float maxIntencity; @@ -331480,6 +335062,19 @@ struct MLPPointData { struct MLPPointData__Fields fields; }; +struct __declspec(align(8)) List_1_MagicLightProbes_MLPPointData___Fields { + struct MLPPointData__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_MagicLightProbes_MLPPointData_ { + struct List_1_MagicLightProbes_MLPPointData___Class *klass; + MonitorData *monitor; + struct List_1_MagicLightProbes_MLPPointData___Fields fields; +}; + struct MLPPointData__Array { struct MLPPointData__Array__Class *klass; MonitorData *monitor; @@ -333290,19 +336885,6 @@ struct ReadonlyLockedValue_1_System_Collections_Generic_List_1__1 { struct ReadonlyLockedValue_1_System_Collections_Generic_List_1__1__Fields fields; }; -struct __declspec(align(8)) List_1_Dissonance_Networking_Client_EventQueue_NetworkEvent___Fields { - struct EventQueue_NetworkEvent__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Dissonance_Networking_Client_EventQueue_NetworkEvent_ { - struct List_1_Dissonance_Networking_Client_EventQueue_NetworkEvent___Class *klass; - MonitorData *monitor; - struct List_1_Dissonance_Networking_Client_EventQueue_NetworkEvent___Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class EventQueue_EventType__Enum : int32_t { PlayerJoined = 0x00000000, @@ -333358,6 +336940,19 @@ struct EventQueue_NetworkEvent__Boxed { struct EventQueue_NetworkEvent fields; }; +struct __declspec(align(8)) List_1_Dissonance_Networking_Client_EventQueue_NetworkEvent___Fields { + struct EventQueue_NetworkEvent__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Dissonance_Networking_Client_EventQueue_NetworkEvent_ { + struct List_1_Dissonance_Networking_Client_EventQueue_NetworkEvent___Class *klass; + MonitorData *monitor; + struct List_1_Dissonance_Networking_Client_EventQueue_NetworkEvent___Fields fields; +}; + struct EventQueue_NetworkEvent__Array { struct EventQueue_NetworkEvent__Array__Class *klass; MonitorData *monitor; @@ -333548,6 +337143,19 @@ struct IComparer_1_Dissonance_Networking_ClientInfo_1_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Dissonance_Networking_ClientInfo_1_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct List_1_Dissonance_Networking_ClientInfo_1_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Dissonance_Networking_ClientInfo_1___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Dissonance_Networking_ClientInfo_1___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Dissonance_Networking_ClientInfo_1_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_List_1_Dissonance_Networking_ClientInfo_1___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Dissonance_Networking_ClientInfo_1___Array *_entries; @@ -333567,32 +337175,6 @@ struct Dictionary_2_System_String_List_1_Dissonance_Networking_ClientInfo_1_ { struct Dictionary_2_System_String_List_1_Dissonance_Networking_ClientInfo_1___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Dissonance_Networking_ClientInfo_1_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct List_1_Dissonance_Networking_ClientInfo_1_ *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Dissonance_Networking_ClientInfo_1___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Dissonance_Networking_ClientInfo_1___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Dissonance_Networking_ClientInfo_1_ fields; -}; - -struct __declspec(align(8)) List_1_Dissonance_Networking_ClientInfo_1___Fields { - struct ClientInfo_1_System_Nullable_1___Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Dissonance_Networking_ClientInfo_1_ { - struct List_1_Dissonance_Networking_ClientInfo_1___Class *klass; - MonitorData *monitor; - struct List_1_Dissonance_Networking_ClientInfo_1___Fields fields; -}; - struct BoltPeer { struct BoltConnection *_Connection_k__BackingField; }; @@ -333631,6 +337213,19 @@ struct ClientInfo_1_System_Nullable_1_ { struct ClientInfo_1_System_Nullable_1___Fields fields; }; +struct __declspec(align(8)) List_1_Dissonance_Networking_ClientInfo_1___Fields { + struct ClientInfo_1_System_Nullable_1___Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Dissonance_Networking_ClientInfo_1_ { + struct List_1_Dissonance_Networking_ClientInfo_1___Class *klass; + MonitorData *monitor; + struct List_1_Dissonance_Networking_ClientInfo_1___Fields fields; +}; + struct __declspec(align(8)) PeerVoiceReceiver__Fields { struct String *_Name_k__BackingField; struct IVoiceEventQueue *_events; @@ -333753,6 +337348,19 @@ struct IEnumerable_1_List_1_Dissonance_Networking_ClientInfo_1_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_UInt16_List_1_System_String_ { + int32_t hashCode; + int32_t next; + uint16_t key; + struct List_1_System_String_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_UInt16_List_1_System_String___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_UInt16_List_1_System_String___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_UInt16_List_1_System_String_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_UInt16_List_1_System_String___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_UInt16_List_1_System_String___Array *_entries; @@ -333772,19 +337380,6 @@ struct Dictionary_2_System_UInt16_List_1_System_String_ { struct Dictionary_2_System_UInt16_List_1_System_String___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_UInt16_List_1_System_String_ { - int32_t hashCode; - int32_t next; - uint16_t key; - struct List_1_System_String_ *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_UInt16_List_1_System_String___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_UInt16_List_1_System_String___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_UInt16_List_1_System_String_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_UInt16_List_1_System_String___Array { struct Dictionary_2_TKey_TValue_Entry_System_UInt16_List_1_System_String___Array__Class *klass; MonitorData *monitor; @@ -333872,6 +337467,19 @@ struct Stack_1_List_1_System_String_ { struct Stack_1_List_1_System_String___Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_UInt16_Dissonance_Networking_ClientInfo_1_ { + int32_t hashCode; + int32_t next; + uint16_t key; + struct ClientInfo_1_System_Nullable_1_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_UInt16_Dissonance_Networking_ClientInfo_1___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_UInt16_Dissonance_Networking_ClientInfo_1___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_UInt16_Dissonance_Networking_ClientInfo_1_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_UInt16_Dissonance_Networking_ClientInfo_1___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_UInt16_Dissonance_Networking_ClientInfo_1___Array *_entries; @@ -333891,19 +337499,6 @@ struct Dictionary_2_System_UInt16_Dissonance_Networking_ClientInfo_1_ { struct Dictionary_2_System_UInt16_Dissonance_Networking_ClientInfo_1___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_UInt16_Dissonance_Networking_ClientInfo_1_ { - int32_t hashCode; - int32_t next; - uint16_t key; - struct ClientInfo_1_System_Nullable_1_ *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_UInt16_Dissonance_Networking_ClientInfo_1___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_UInt16_Dissonance_Networking_ClientInfo_1___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_UInt16_Dissonance_Networking_ClientInfo_1_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_UInt16_Dissonance_Networking_ClientInfo_1___Array { struct Dictionary_2_TKey_TValue_Entry_System_UInt16_Dissonance_Networking_ClientInfo_1___Array__Class *klass; MonitorData *monitor; @@ -333966,6 +337561,19 @@ struct IEnumerable_1_Dissonance_Networking_ClientInfo_1_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_Dissonance_Networking_ClientInfo_1_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct ClientInfo_1_System_Nullable_1_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_Dissonance_Networking_ClientInfo_1___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_Dissonance_Networking_ClientInfo_1___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_Dissonance_Networking_ClientInfo_1_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_Dissonance_Networking_ClientInfo_1___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_Dissonance_Networking_ClientInfo_1___Array *_entries; @@ -333985,19 +337593,6 @@ struct Dictionary_2_System_String_Dissonance_Networking_ClientInfo_1_ { struct Dictionary_2_System_String_Dissonance_Networking_ClientInfo_1___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_Dissonance_Networking_ClientInfo_1_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct ClientInfo_1_System_Nullable_1_ *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_Dissonance_Networking_ClientInfo_1___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_Dissonance_Networking_ClientInfo_1___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_Dissonance_Networking_ClientInfo_1_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_String_Dissonance_Networking_ClientInfo_1___Array { struct Dictionary_2_TKey_TValue_Entry_System_String_Dissonance_Networking_ClientInfo_1___Array__Class *klass; MonitorData *monitor; @@ -334091,6 +337686,17 @@ struct ISession { MonitorData *monitor; }; +struct KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer_ { + uint16_t key; + struct BoltPeer value; +}; + +struct KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer___Boxed { + struct KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer___Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer_ fields; +}; + struct __declspec(align(8)) List_1_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer___Fields { struct KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer___Array *_items; int32_t _size; @@ -334104,17 +337710,6 @@ struct List_1_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_Bo struct List_1_KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer___Fields fields; }; -struct KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer_ { - uint16_t key; - struct BoltPeer value; -}; - -struct KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer___Boxed { - struct KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer___Class *klass; - MonitorData *monitor; - struct KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer_ fields; -}; - struct KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer___Array { struct KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer___Array__Class *klass; MonitorData *monitor; @@ -334201,6 +337796,17 @@ struct ReadonlyLockedValue_1_System_Collections_Generic_List_1__3 { struct ReadonlyLockedValue_1_System_Collections_Generic_List_1__3__Fields fields; }; +struct KeyValuePair_2_List_1_Dissonance_Networking_ClientInfo_1_System_ArraySegment_1_ { + struct List_1_Dissonance_Networking_ClientInfo_1_ *key; + struct ArraySegment_1_Byte_ value; +}; + +struct KeyValuePair_2_List_1_Dissonance_Networking_ClientInfo_1_System_ArraySegment_1___Boxed { + struct KeyValuePair_2_List_1_Dissonance_Networking_ClientInfo_1_System_ArraySegment_1___Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_List_1_Dissonance_Networking_ClientInfo_1_System_ArraySegment_1_ fields; +}; + struct __declspec(align(8)) List_1_KeyValuePair_2_List_1_Dissonance_Networking_ClientInfo_1_System_ArraySegment_1___Fields { struct KeyValuePair_2_List_1_Dissonance_Networking_ClientInfo_1_System_ArraySegment_1___Array *_items; int32_t _size; @@ -334214,17 +337820,6 @@ struct List_1_KeyValuePair_2_List_1_Dissonance_Networking_ClientInfo_1_System_Ar struct List_1_KeyValuePair_2_List_1_Dissonance_Networking_ClientInfo_1_System_ArraySegment_1___Fields fields; }; -struct KeyValuePair_2_List_1_Dissonance_Networking_ClientInfo_1_System_ArraySegment_1_ { - struct List_1_Dissonance_Networking_ClientInfo_1_ *key; - struct ArraySegment_1_Byte_ value; -}; - -struct KeyValuePair_2_List_1_Dissonance_Networking_ClientInfo_1_System_ArraySegment_1___Boxed { - struct KeyValuePair_2_List_1_Dissonance_Networking_ClientInfo_1_System_ArraySegment_1___Class *klass; - MonitorData *monitor; - struct KeyValuePair_2_List_1_Dissonance_Networking_ClientInfo_1_System_ArraySegment_1_ fields; -}; - struct KeyValuePair_2_List_1_Dissonance_Networking_ClientInfo_1_System_ArraySegment_1___Array { struct KeyValuePair_2_List_1_Dissonance_Networking_ClientInfo_1_System_ArraySegment_1___Array__Class *klass; MonitorData *monitor; @@ -334398,19 +337993,6 @@ struct ReadonlyLockedValue_1_System_Collections_Generic_List_1__4 { struct ReadonlyLockedValue_1_System_Collections_Generic_List_1__4__Fields fields; }; -struct __declspec(align(8)) List_1_Dissonance_Networking_Client_OpenChannel___Fields { - struct OpenChannel__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Dissonance_Networking_Client_OpenChannel_ { - struct List_1_Dissonance_Networking_Client_OpenChannel___Class *klass; - MonitorData *monitor; - struct List_1_Dissonance_Networking_Client_OpenChannel___Fields fields; -}; - struct OpenChannel { struct ChannelProperties *_config; #if defined(_CPLUSPLUS_) @@ -334431,6 +338013,19 @@ struct OpenChannel__Boxed { struct OpenChannel fields; }; +struct __declspec(align(8)) List_1_Dissonance_Networking_Client_OpenChannel___Fields { + struct OpenChannel__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Dissonance_Networking_Client_OpenChannel_ { + struct List_1_Dissonance_Networking_Client_OpenChannel___Class *klass; + MonitorData *monitor; + struct List_1_Dissonance_Networking_Client_OpenChannel___Fields fields; +}; + struct OpenChannel__Array { struct OpenChannel__Array__Class *klass; MonitorData *monitor; @@ -334466,19 +338061,6 @@ struct ReadonlyLockedValue_1_System_Collections_Generic_List_1__5 { struct ReadonlyLockedValue_1_System_Collections_Generic_List_1__5__Fields fields; }; -struct __declspec(align(8)) List_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta___Fields { - struct VoiceSender_1_TPeer_ChannelDelta_Dissonance_Integrations_PhotonBolt_BoltPeer___Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta_ { - struct List_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta___Class *klass; - MonitorData *monitor; - struct List_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta___Fields fields; -}; - struct VoiceSender_1_TPeer_ChannelDelta_Dissonance_Integrations_PhotonBolt_BoltPeer_ { bool Open; #if defined(_CPLUSPLUS_) @@ -334497,6 +338079,19 @@ struct VoiceSender_1_TPeer_ChannelDelta_Dissonance_Integrations_PhotonBolt_BoltP struct VoiceSender_1_TPeer_ChannelDelta_Dissonance_Integrations_PhotonBolt_BoltPeer_ fields; }; +struct __declspec(align(8)) List_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta___Fields { + struct VoiceSender_1_TPeer_ChannelDelta_Dissonance_Integrations_PhotonBolt_BoltPeer___Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta_ { + struct List_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta___Class *klass; + MonitorData *monitor; + struct List_1_Dissonance_Networking_Client_VoiceSender_1_ChannelDelta___Fields fields; +}; + struct VoiceSender_1_TPeer_ChannelDelta_Dissonance_Integrations_PhotonBolt_BoltPeer___Array { struct VoiceSender_1_TPeer_ChannelDelta_Dissonance_Integrations_PhotonBolt_BoltPeer___Array__Class *klass; MonitorData *monitor; @@ -334520,6 +338115,17 @@ struct ReadonlyLockedValue_1_T_Unlocker_System_Collections_Generic_List_1__5 { struct ReadonlyLockedValue_1_T_Unlocker_System_Collections_Generic_List_1__5__Fields fields; }; +struct KeyValuePair_2_System_String_Dissonance_ChannelProperties_ { + struct String *key; + struct ChannelProperties *value; +}; + +struct KeyValuePair_2_System_String_Dissonance_ChannelProperties___Boxed { + struct KeyValuePair_2_System_String_Dissonance_ChannelProperties___Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_System_String_Dissonance_ChannelProperties_ fields; +}; + struct __declspec(align(8)) List_1_KeyValuePair_2_System_String_Dissonance_ChannelProperties___Fields { struct KeyValuePair_2_System_String_Dissonance_ChannelProperties___Array *_items; int32_t _size; @@ -334533,17 +338139,6 @@ struct List_1_KeyValuePair_2_System_String_Dissonance_ChannelProperties_ { struct List_1_KeyValuePair_2_System_String_Dissonance_ChannelProperties___Fields fields; }; -struct KeyValuePair_2_System_String_Dissonance_ChannelProperties_ { - struct String *key; - struct ChannelProperties *value; -}; - -struct KeyValuePair_2_System_String_Dissonance_ChannelProperties___Boxed { - struct KeyValuePair_2_System_String_Dissonance_ChannelProperties___Class *klass; - MonitorData *monitor; - struct KeyValuePair_2_System_String_Dissonance_ChannelProperties_ fields; -}; - struct KeyValuePair_2_System_String_Dissonance_ChannelProperties___Array { struct KeyValuePair_2_System_String_Dissonance_ChannelProperties___Array__Class *klass; MonitorData *monitor; @@ -334557,6 +338152,18 @@ struct IEnumerator_1_KeyValuePair_2_System_String_Dissonance_ChannelProperties_ MonitorData *monitor; }; +struct HashSet_1_T_Slot_Dissonance_Networking_ClientInfo_1_ { + int32_t hashCode; + int32_t next; + struct ClientInfo_1_System_Nullable_1_ *value; +}; + +struct HashSet_1_T_Slot_Dissonance_Networking_ClientInfo_1___Boxed { + struct HashSet_1_T_Slot_Dissonance_Networking_ClientInfo_1___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_Dissonance_Networking_ClientInfo_1_ fields; +}; + struct __declspec(align(8)) HashSet_1_Dissonance_Networking_ClientInfo_1___Fields { struct Int32__Array *_buckets; struct HashSet_1_T_Slot_Dissonance_Networking_ClientInfo_1___Array *_slots; @@ -334574,18 +338181,6 @@ struct HashSet_1_Dissonance_Networking_ClientInfo_1_ { struct HashSet_1_Dissonance_Networking_ClientInfo_1___Fields fields; }; -struct HashSet_1_T_Slot_Dissonance_Networking_ClientInfo_1_ { - int32_t hashCode; - int32_t next; - struct ClientInfo_1_System_Nullable_1_ *value; -}; - -struct HashSet_1_T_Slot_Dissonance_Networking_ClientInfo_1___Boxed { - struct HashSet_1_T_Slot_Dissonance_Networking_ClientInfo_1___Class *klass; - MonitorData *monitor; - struct HashSet_1_T_Slot_Dissonance_Networking_ClientInfo_1_ fields; -}; - struct HashSet_1_T_Slot_Dissonance_Networking_ClientInfo_1___Array { struct HashSet_1_T_Slot_Dissonance_Networking_ClientInfo_1___Array__Class *klass; MonitorData *monitor; @@ -334639,6 +338234,17 @@ struct TrafficCounter { struct TrafficCounter__Fields fields; }; +struct KeyValuePair_2_System_DateTime_System_UInt32_ { + struct DateTime key; + uint32_t value; +}; + +struct KeyValuePair_2_System_DateTime_System_UInt32___Boxed { + struct KeyValuePair_2_System_DateTime_System_UInt32___Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_System_DateTime_System_UInt32_ fields; +}; + struct __declspec(align(8)) Queue_1_KeyValuePair_2_System_DateTime_System_UInt32___Fields { struct KeyValuePair_2_System_DateTime_System_UInt32___Array *_array; int32_t _head; @@ -334654,17 +338260,6 @@ struct Queue_1_KeyValuePair_2_System_DateTime_System_UInt32_ { struct Queue_1_KeyValuePair_2_System_DateTime_System_UInt32___Fields fields; }; -struct KeyValuePair_2_System_DateTime_System_UInt32_ { - struct DateTime key; - uint32_t value; -}; - -struct KeyValuePair_2_System_DateTime_System_UInt32___Boxed { - struct KeyValuePair_2_System_DateTime_System_UInt32___Class *klass; - MonitorData *monitor; - struct KeyValuePair_2_System_DateTime_System_UInt32_ fields; -}; - struct KeyValuePair_2_System_DateTime_System_UInt32___Array { struct KeyValuePair_2_System_DateTime_System_UInt32___Array__Class *klass; MonitorData *monitor; @@ -334714,6 +338309,11 @@ struct BoltDissonanceRelay { struct BoltDissonanceRelay__Fields fields; }; +struct BoltDissonanceRelay_IBoltPacketListener { + struct BoltDissonanceRelay_IBoltPacketListener__Class *klass; + MonitorData *monitor; +}; + struct __declspec(align(8)) List_1_Dissonance_Integrations_PhotonBolt_BoltDissonanceRelay_IBoltPacketListener___Fields { struct BoltDissonanceRelay_IBoltPacketListener__Array *_items; int32_t _size; @@ -334727,11 +338327,6 @@ struct List_1_Dissonance_Integrations_PhotonBolt_BoltDissonanceRelay_IBoltPacket struct List_1_Dissonance_Integrations_PhotonBolt_BoltDissonanceRelay_IBoltPacketListener___Fields fields; }; -struct BoltDissonanceRelay_IBoltPacketListener { - struct BoltDissonanceRelay_IBoltPacketListener__Class *klass; - MonitorData *monitor; -}; - struct BoltDissonanceRelay_IBoltPacketListener__Array { struct BoltDissonanceRelay_IBoltPacketListener__Array__Class *klass; MonitorData *monitor; @@ -334745,6 +338340,11 @@ struct IEnumerator_1_Dissonance_Integrations_PhotonBolt_BoltDissonanceRelay_IBol MonitorData *monitor; }; +struct BoltDissonanceRelay_IBoltDisconnectListener { + struct BoltDissonanceRelay_IBoltDisconnectListener__Class *klass; + MonitorData *monitor; +}; + struct __declspec(align(8)) List_1_Dissonance_Integrations_PhotonBolt_BoltDissonanceRelay_IBoltDisconnectListener___Fields { struct BoltDissonanceRelay_IBoltDisconnectListener__Array *_items; int32_t _size; @@ -334758,11 +338358,6 @@ struct List_1_Dissonance_Integrations_PhotonBolt_BoltDissonanceRelay_IBoltDiscon struct List_1_Dissonance_Integrations_PhotonBolt_BoltDissonanceRelay_IBoltDisconnectListener___Fields fields; }; -struct BoltDissonanceRelay_IBoltDisconnectListener { - struct BoltDissonanceRelay_IBoltDisconnectListener__Class *klass; - MonitorData *monitor; -}; - struct BoltDissonanceRelay_IBoltDisconnectListener__Array { struct BoltDissonanceRelay_IBoltDisconnectListener__Array__Class *klass; MonitorData *monitor; @@ -334849,6 +338444,11 @@ struct BoltCommsNetwork { struct BoltCommsNetwork__Fields fields; }; +struct BaseCommsNetwork_5_TServer_TClient_TPeer_TClientParam_TServerParam_IState_Dissonance_Integrations_PhotonBolt_BoltServer_Dissonance_Integrations_PhotonBolt_BoltClient_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit_ { + struct BaseCommsNetwork_5_TServer_TClient_TPeer_TClientParam_TServerParam_IState_Dissonance_Integrations_PhotonBolt_BoltServer_Dissonance_Integrations_PhotonBolt_BoltClient_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit___Class *klass; + MonitorData *monitor; +}; + struct __declspec(align(8)) Queue_1_Dissonance_Networking_BaseCommsNetwork_5_IState___Fields { struct BaseCommsNetwork_5_TServer_TClient_TPeer_TClientParam_TServerParam_IState_Dissonance_Integrations_PhotonBolt_BoltServer_Dissonance_Integrations_PhotonBolt_BoltClient_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit___Array *_array; int32_t _head; @@ -334864,11 +338464,6 @@ struct Queue_1_Dissonance_Networking_BaseCommsNetwork_5_IState_ { struct Queue_1_Dissonance_Networking_BaseCommsNetwork_5_IState___Fields fields; }; -struct BaseCommsNetwork_5_TServer_TClient_TPeer_TClientParam_TServerParam_IState_Dissonance_Integrations_PhotonBolt_BoltServer_Dissonance_Integrations_PhotonBolt_BoltClient_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit_ { - struct BaseCommsNetwork_5_TServer_TClient_TPeer_TClientParam_TServerParam_IState_Dissonance_Integrations_PhotonBolt_BoltServer_Dissonance_Integrations_PhotonBolt_BoltClient_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit___Class *klass; - MonitorData *monitor; -}; - struct BaseCommsNetwork_5_TServer_TClient_TPeer_TClientParam_TServerParam_IState_Dissonance_Integrations_PhotonBolt_BoltServer_Dissonance_Integrations_PhotonBolt_BoltClient_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit___Array { struct BaseCommsNetwork_5_TServer_TClient_TPeer_TClientParam_TServerParam_IState_Dissonance_Integrations_PhotonBolt_BoltServer_Dissonance_Integrations_PhotonBolt_BoltClient_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit___Array__Class *klass; MonitorData *monitor; @@ -334969,6 +338564,19 @@ struct IComparer_1_Dissonance_Networking_ClientInfo_1__1 { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Dissonance_Networking_ClientInfo_1__1 { + int32_t hashCode; + int32_t next; + struct String *key; + struct List_1_Dissonance_Networking_ClientInfo_1__2 *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Dissonance_Networking_ClientInfo_1__1__Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Dissonance_Networking_ClientInfo_1__1__Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Dissonance_Networking_ClientInfo_1__1 fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_List_1_Dissonance_Networking_ClientInfo_1__1__Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Dissonance_Networking_ClientInfo_1__1__Array *_entries; @@ -334988,32 +338596,6 @@ struct Dictionary_2_System_String_List_1_Dissonance_Networking_ClientInfo_1__1 { struct Dictionary_2_System_String_List_1_Dissonance_Networking_ClientInfo_1__1__Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Dissonance_Networking_ClientInfo_1__1 { - int32_t hashCode; - int32_t next; - struct String *key; - struct List_1_Dissonance_Networking_ClientInfo_1__1 *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Dissonance_Networking_ClientInfo_1__1__Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Dissonance_Networking_ClientInfo_1__1__Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Dissonance_Networking_ClientInfo_1__1 fields; -}; - -struct __declspec(align(8)) List_1_Dissonance_Networking_ClientInfo_1__1__Fields { - struct ClientInfo_1_Dissonance_Integrations_PhotonBolt_BoltPeer___Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Dissonance_Networking_ClientInfo_1__1 { - struct List_1_Dissonance_Networking_ClientInfo_1__1__Class *klass; - MonitorData *monitor; - struct List_1_Dissonance_Networking_ClientInfo_1__1__Fields fields; -}; - struct __declspec(align(8)) ClientInfo_1_Dissonance_Integrations_PhotonBolt_BoltPeer___Fields { struct List_1_System_String_ *_rooms; struct String *_PlayerName_k__BackingField; @@ -335031,6 +338613,19 @@ struct ClientInfo_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ { struct ClientInfo_1_Dissonance_Integrations_PhotonBolt_BoltPeer___Fields fields; }; +struct __declspec(align(8)) List_1_Dissonance_Networking_ClientInfo_1__2__Fields { + struct ClientInfo_1_Dissonance_Integrations_PhotonBolt_BoltPeer___Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Dissonance_Networking_ClientInfo_1__2 { + struct List_1_Dissonance_Networking_ClientInfo_1__2__Class *klass; + MonitorData *monitor; + struct List_1_Dissonance_Networking_ClientInfo_1__2__Fields fields; +}; + struct ClientInfo_1_Dissonance_Integrations_PhotonBolt_BoltPeer___Array { struct ClientInfo_1_Dissonance_Integrations_PhotonBolt_BoltPeer___Array__Class *klass; MonitorData *monitor; @@ -335072,12 +338667,12 @@ struct Dictionary_2_TKey_TValue_ValueCollection_System_String_List_1_Dissonance_ struct Dictionary_2_TKey_TValue_ValueCollection_System_String_List_1_Dissonance_Networking_ClientInfo_1__1__Fields fields; }; -struct List_1_Dissonance_Networking_ClientInfo_1__1__Array { - struct List_1_Dissonance_Networking_ClientInfo_1__1__Array__Class *klass; +struct List_1_Dissonance_Networking_ClientInfo_1__2__Array { + struct List_1_Dissonance_Networking_ClientInfo_1__2__Array__Class *klass; MonitorData *monitor; Il2CppArrayBounds *bounds; il2cpp_array_size_t max_length; - struct List_1_Dissonance_Networking_ClientInfo_1__1 *vector[32]; + struct List_1_Dissonance_Networking_ClientInfo_1__2 *vector[32]; }; struct IEnumerator_1_List_1_Dissonance_Networking_ClientInfo_1__1 { @@ -335092,7 +338687,7 @@ struct ICollection_1_List_1_Dissonance_Networking_ClientInfo_1__1 { struct KeyValuePair_2_System_String_List_1_Dissonance_Networking_ClientInfo_1__1 { struct String *key; - struct List_1_Dissonance_Networking_ClientInfo_1__1 *value; + struct List_1_Dissonance_Networking_ClientInfo_1__2 *value; }; struct KeyValuePair_2_System_String_List_1_Dissonance_Networking_ClientInfo_1__1__Boxed { @@ -335119,6 +338714,19 @@ struct IEnumerable_1_List_1_Dissonance_Networking_ClientInfo_1__1 { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_UInt16_Dissonance_Networking_ClientInfo_1__1 { + int32_t hashCode; + int32_t next; + uint16_t key; + struct ClientInfo_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_UInt16_Dissonance_Networking_ClientInfo_1__1__Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_UInt16_Dissonance_Networking_ClientInfo_1__1__Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_UInt16_Dissonance_Networking_ClientInfo_1__1 fields; +}; + struct __declspec(align(8)) Dictionary_2_System_UInt16_Dissonance_Networking_ClientInfo_1__1__Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_UInt16_Dissonance_Networking_ClientInfo_1__1__Array *_entries; @@ -335138,19 +338746,6 @@ struct Dictionary_2_System_UInt16_Dissonance_Networking_ClientInfo_1__1 { struct Dictionary_2_System_UInt16_Dissonance_Networking_ClientInfo_1__1__Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_UInt16_Dissonance_Networking_ClientInfo_1__1 { - int32_t hashCode; - int32_t next; - uint16_t key; - struct ClientInfo_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_UInt16_Dissonance_Networking_ClientInfo_1__1__Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_UInt16_Dissonance_Networking_ClientInfo_1__1__Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_UInt16_Dissonance_Networking_ClientInfo_1__1 fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_UInt16_Dissonance_Networking_ClientInfo_1__1__Array { struct Dictionary_2_TKey_TValue_Entry_System_UInt16_Dissonance_Networking_ClientInfo_1__1__Array__Class *klass; MonitorData *monitor; @@ -335213,6 +338808,19 @@ struct IEnumerable_1_Dissonance_Networking_ClientInfo_1__1 { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_Dissonance_Networking_ClientInfo_1__1 { + int32_t hashCode; + int32_t next; + struct String *key; + struct ClientInfo_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_Dissonance_Networking_ClientInfo_1__1__Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_Dissonance_Networking_ClientInfo_1__1__Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_Dissonance_Networking_ClientInfo_1__1 fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_Dissonance_Networking_ClientInfo_1__1__Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_Dissonance_Networking_ClientInfo_1__1__Array *_entries; @@ -335232,19 +338840,6 @@ struct Dictionary_2_System_String_Dissonance_Networking_ClientInfo_1__1 { struct Dictionary_2_System_String_Dissonance_Networking_ClientInfo_1__1__Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_Dissonance_Networking_ClientInfo_1__1 { - int32_t hashCode; - int32_t next; - struct String *key; - struct ClientInfo_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_Dissonance_Networking_ClientInfo_1__1__Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_Dissonance_Networking_ClientInfo_1__1__Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_Dissonance_Networking_ClientInfo_1__1 fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_String_Dissonance_Networking_ClientInfo_1__1__Array { struct Dictionary_2_TKey_TValue_Entry_System_String_Dissonance_Networking_ClientInfo_1__1__Array__Class *klass; MonitorData *monitor; @@ -335358,8 +338953,8 @@ struct BroadcastingClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPee struct IServer_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ *_server; struct Byte__Array *_tmpSendBuffer; struct List_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ *_tmpConnectionBuffer; - struct List_1_Dissonance_Networking_ClientInfo_1__1 *_tmpClientBuffer; - struct List_1_Dissonance_Networking_ClientInfo_1__1 *_tmpClientBufferHandshake; + struct List_1_Dissonance_Networking_ClientInfo_1__2 *_tmpClientBuffer; + struct List_1_Dissonance_Networking_ClientInfo_1__2 *_tmpClientBufferHandshake; }; struct BroadcastingClientCollection_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ { @@ -335386,6 +338981,19 @@ struct ServerAdmin_3_Dissonance_Integrations_PhotonBolt_BoltServer_Dissonance_In struct ServerAdmin_3_Dissonance_Integrations_PhotonBolt_BoltServer_Dissonance_Integrations_PhotonBolt_BoltClient_Dissonance_Integrations_PhotonBolt_BoltPeer___Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_UInt16_System_String_ { + int32_t hashCode; + int32_t next; + uint16_t key; + struct String *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_UInt16_System_String___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_UInt16_System_String___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_UInt16_System_String_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_UInt16_System_String___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_UInt16_System_String___Array *_entries; @@ -335405,19 +339013,6 @@ struct Dictionary_2_System_UInt16_System_String_ { struct Dictionary_2_System_UInt16_System_String___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_UInt16_System_String_ { - int32_t hashCode; - int32_t next; - uint16_t key; - struct String *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_UInt16_System_String___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_UInt16_System_String___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_UInt16_System_String_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_UInt16_System_String___Array { struct Dictionary_2_TKey_TValue_Entry_System_UInt16_System_String___Array__Class *klass; MonitorData *monitor; @@ -336441,6 +340036,21 @@ struct ICollection_1_List_1_Dissonance_Networking_ClientInfo_1___Class { struct ICollection_1_List_1_Dissonance_Networking_ClientInfo_1___VTable vtable; }; +struct List_1_Dissonance_Networking_ClientInfo_1__1__VTable { +}; + +struct List_1_Dissonance_Networking_ClientInfo_1__1__StaticFields { +}; + +struct List_1_Dissonance_Networking_ClientInfo_1__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Dissonance_Networking_ClientInfo_1__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Dissonance_Networking_ClientInfo_1__1__VTable vtable; +}; + struct KeyValuePair_2_System_String_List_1_Dissonance_Networking_ClientInfo_1___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -336992,6 +340602,21 @@ struct ICollection_1_Dissonance_Networking_ClientInfo_1___Class { struct ICollection_1_Dissonance_Networking_ClientInfo_1___VTable vtable; }; +struct ClientInfo_1_System_Nullable_1__1__VTable { +}; + +struct ClientInfo_1_System_Nullable_1__1__StaticFields { +}; + +struct ClientInfo_1_System_Nullable_1__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ClientInfo_1_System_Nullable_1__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ClientInfo_1_System_Nullable_1__1__VTable vtable; +}; + struct KeyValuePair_2_System_UInt16_Dissonance_Networking_ClientInfo_1___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -337404,6 +341029,21 @@ struct PacketReader__Class { struct PacketReader__VTable vtable; }; +struct PacketReader___VTable { +}; + +struct PacketReader___StaticFields { +}; + +struct PacketReader___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PacketReader___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PacketReader___VTable vtable; +}; + struct BaseClientCollection_1_System_Nullable_1___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -339378,7 +343018,7 @@ struct IEnumerator_1_Dissonance_Networking_ClientInfo_1__1__Class { struct IEnumerator_1_Dissonance_Networking_ClientInfo_1__1__VTable vtable; }; -struct List_1_Dissonance_Networking_ClientInfo_1__1__VTable { +struct List_1_Dissonance_Networking_ClientInfo_1__2__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; VirtualInvokeData GetHashCode; @@ -339416,17 +343056,17 @@ struct List_1_Dissonance_Networking_ClientInfo_1__1__VTable { VirtualInvokeData get_Count_2; }; -struct List_1_Dissonance_Networking_ClientInfo_1__1__StaticFields { +struct List_1_Dissonance_Networking_ClientInfo_1__2__StaticFields { struct ClientInfo_1_Dissonance_Integrations_PhotonBolt_BoltPeer___Array *s_emptyArray; }; -struct List_1_Dissonance_Networking_ClientInfo_1__1__Class { +struct List_1_Dissonance_Networking_ClientInfo_1__2__Class { Il2CppClass_0 _0; Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct List_1_Dissonance_Networking_ClientInfo_1__1__StaticFields *static_fields; + struct List_1_Dissonance_Networking_ClientInfo_1__2__StaticFields *static_fields; const Il2CppRGCTXData *rgctx_data; Il2CppClass_1 _1; - struct List_1_Dissonance_Networking_ClientInfo_1__1__VTable vtable; + struct List_1_Dissonance_Networking_ClientInfo_1__2__VTable vtable; }; struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Dissonance_Networking_ClientInfo_1__1__VTable { @@ -339496,19 +343136,19 @@ struct Dictionary_2_TKey_TValue_KeyCollection_System_String_List_1_Dissonance_Ne struct Dictionary_2_TKey_TValue_KeyCollection_System_String_List_1_Dissonance_Networking_ClientInfo_1__1__VTable vtable; }; -struct List_1_Dissonance_Networking_ClientInfo_1__1__Array__VTable { +struct List_1_Dissonance_Networking_ClientInfo_1__2__Array__VTable { }; -struct List_1_Dissonance_Networking_ClientInfo_1__1__Array__StaticFields { +struct List_1_Dissonance_Networking_ClientInfo_1__2__Array__StaticFields { }; -struct List_1_Dissonance_Networking_ClientInfo_1__1__Array__Class { +struct List_1_Dissonance_Networking_ClientInfo_1__2__Array__Class { Il2CppClass_0 _0; Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct List_1_Dissonance_Networking_ClientInfo_1__1__Array__StaticFields *static_fields; + struct List_1_Dissonance_Networking_ClientInfo_1__2__Array__StaticFields *static_fields; const Il2CppRGCTXData *rgctx_data; Il2CppClass_1 _1; - struct List_1_Dissonance_Networking_ClientInfo_1__1__Array__VTable vtable; + struct List_1_Dissonance_Networking_ClientInfo_1__2__Array__VTable vtable; }; struct IEnumerator_1_List_1_Dissonance_Networking_ClientInfo_1__1__VTable { @@ -339582,6 +343222,21 @@ struct ICollection_1_List_1_Dissonance_Networking_ClientInfo_1__1__Class { struct ICollection_1_List_1_Dissonance_Networking_ClientInfo_1__1__VTable vtable; }; +struct List_1_Dissonance_Networking_ClientInfo_1__3__VTable { +}; + +struct List_1_Dissonance_Networking_ClientInfo_1__3__StaticFields { +}; + +struct List_1_Dissonance_Networking_ClientInfo_1__3__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Dissonance_Networking_ClientInfo_1__3__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Dissonance_Networking_ClientInfo_1__3__VTable vtable; +}; + struct KeyValuePair_2_System_String_List_1_Dissonance_Networking_ClientInfo_1__1__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -339849,6 +343504,21 @@ struct ICollection_1_Dissonance_Networking_ClientInfo_1__1__Class { struct ICollection_1_Dissonance_Networking_ClientInfo_1__1__VTable vtable; }; +struct ClientInfo_1_Dissonance_Integrations_PhotonBolt_BoltPeer__1__VTable { +}; + +struct ClientInfo_1_Dissonance_Integrations_PhotonBolt_BoltPeer__1__StaticFields { +}; + +struct ClientInfo_1_Dissonance_Integrations_PhotonBolt_BoltPeer__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ClientInfo_1_Dissonance_Integrations_PhotonBolt_BoltPeer__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ClientInfo_1_Dissonance_Integrations_PhotonBolt_BoltPeer__1__VTable vtable; +}; + struct KeyValuePair_2_System_UInt16_Dissonance_Networking_ClientInfo_1__1__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -341449,19 +345119,6 @@ struct TPoseUtility { struct TPoseUtility__Fields fields; }; -struct __declspec(align(8)) List_1_Kalagaan_HairDesignerExtension_HairDesignerGenerator___Fields { - struct HairDesignerGenerator__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Kalagaan_HairDesignerExtension_HairDesignerGenerator_ { - struct List_1_Kalagaan_HairDesignerExtension_HairDesignerGenerator___Class *klass; - MonitorData *monitor; - struct List_1_Kalagaan_HairDesignerExtension_HairDesignerGenerator___Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class HairDesignerBase_eLayerType__Enum : int32_t { NONE = 0x00000000, @@ -341561,6 +345218,19 @@ struct HairDesignerGenerator { struct HairDesignerGenerator__Fields fields; }; +struct __declspec(align(8)) List_1_Kalagaan_HairDesignerExtension_HairDesignerGenerator___Fields { + struct HairDesignerGenerator__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Kalagaan_HairDesignerExtension_HairDesignerGenerator_ { + struct List_1_Kalagaan_HairDesignerExtension_HairDesignerGenerator___Class *klass; + MonitorData *monitor; + struct List_1_Kalagaan_HairDesignerExtension_HairDesignerGenerator___Fields fields; +}; + struct __declspec(align(8)) GeneratorParams__Fields { struct BZCurv *m_curv; struct Vector2 m_taper; @@ -341742,19 +345412,6 @@ struct IEnumerator_1_UnityEngine_Vector2_ { MonitorData *monitor; }; -struct __declspec(align(8)) List_1_UnityEngine_BoneWeight___Fields { - struct BoneWeight__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_BoneWeight_ { - struct List_1_UnityEngine_BoneWeight___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_BoneWeight___Fields fields; -}; - struct BoneWeight { float m_Weight0; float m_Weight1; @@ -341772,6 +345429,19 @@ struct BoneWeight__Boxed { struct BoneWeight fields; }; +struct __declspec(align(8)) List_1_UnityEngine_BoneWeight___Fields { + struct BoneWeight__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_BoneWeight_ { + struct List_1_UnityEngine_BoneWeight___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_BoneWeight___Fields fields; +}; + struct BoneWeight__Array { struct BoneWeight__Array__Class *klass; MonitorData *monitor; @@ -341832,19 +345502,6 @@ struct HairDesignerPID { struct HairDesignerPID__Fields fields; }; -struct __declspec(align(8)) List_1_Kalagaan_HairDesignerExtension_MotionZone___Fields { - struct MotionZone__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Kalagaan_HairDesignerExtension_MotionZone_ { - struct List_1_Kalagaan_HairDesignerExtension_MotionZone___Class *klass; - MonitorData *monitor; - struct List_1_Kalagaan_HairDesignerExtension_MotionZone___Fields fields; -}; - struct __declspec(align(8)) MotionZone__Fields { struct Transform *parent; struct Vector3 localPosition; @@ -341864,6 +345521,19 @@ struct MotionZone { struct MotionZone__Fields fields; }; +struct __declspec(align(8)) List_1_Kalagaan_HairDesignerExtension_MotionZone___Fields { + struct MotionZone__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Kalagaan_HairDesignerExtension_MotionZone_ { + struct List_1_Kalagaan_HairDesignerExtension_MotionZone___Class *klass; + MonitorData *monitor; + struct List_1_Kalagaan_HairDesignerExtension_MotionZone___Fields fields; +}; + struct MotionZone__Array { struct MotionZone__Array__Class *klass; MonitorData *monitor; @@ -341877,19 +345547,6 @@ struct IEnumerator_1_Kalagaan_HairDesignerExtension_MotionZone_ { MonitorData *monitor; }; -struct __declspec(align(8)) List_1_Kalagaan_HairDesignerExtension_HairDesignerShader___Fields { - struct HairDesignerShader__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Kalagaan_HairDesignerExtension_HairDesignerShader_ { - struct List_1_Kalagaan_HairDesignerExtension_HairDesignerShader___Class *klass; - MonitorData *monitor; - struct List_1_Kalagaan_HairDesignerExtension_HairDesignerShader___Fields fields; -}; - struct HairDesignerShader__Fields { struct MonoBehaviour__Fields _; struct Shader *m_shader; @@ -341904,6 +345561,19 @@ struct HairDesignerShader { struct HairDesignerShader__Fields fields; }; +struct __declspec(align(8)) List_1_Kalagaan_HairDesignerExtension_HairDesignerShader___Fields { + struct HairDesignerShader__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Kalagaan_HairDesignerExtension_HairDesignerShader_ { + struct List_1_Kalagaan_HairDesignerExtension_HairDesignerShader___Class *klass; + MonitorData *monitor; + struct List_1_Kalagaan_HairDesignerExtension_HairDesignerShader___Fields fields; +}; + #if defined(_CPLUSPLUS_) enum class eInstancingMode__Enum : int32_t { UNDEFINED = 0x00000000, @@ -341944,6 +345614,16 @@ struct IEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerShader_ { MonitorData *monitor; }; +struct __declspec(align(8)) HairToolLayer__Fields { + bool visible; +}; + +struct HairToolLayer { + struct HairToolLayer__Class *klass; + MonitorData *monitor; + struct HairToolLayer__Fields fields; +}; + struct __declspec(align(8)) List_1_Kalagaan_HairDesignerExtension_HairToolLayer___Fields { struct HairToolLayer__Array *_items; int32_t _size; @@ -341957,16 +345637,6 @@ struct List_1_Kalagaan_HairDesignerExtension_HairToolLayer_ { struct List_1_Kalagaan_HairDesignerExtension_HairToolLayer___Fields fields; }; -struct __declspec(align(8)) HairToolLayer__Fields { - bool visible; -}; - -struct HairToolLayer { - struct HairToolLayer__Class *klass; - MonitorData *monitor; - struct HairToolLayer__Fields fields; -}; - struct HairToolLayer__Array { struct HairToolLayer__Array__Class *klass; MonitorData *monitor; @@ -342738,6 +346408,21 @@ struct eInstancingMode__Enum__Class { struct eInstancingMode__Enum__VTable vtable; }; +struct MaterialPropertyBlock___VTable { +}; + +struct MaterialPropertyBlock___StaticFields { +}; + +struct MaterialPropertyBlock___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MaterialPropertyBlock___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MaterialPropertyBlock___VTable vtable; +}; + struct HairDesignerShader__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -343442,6 +347127,28 @@ struct ShadowCastingMode__Enum__Boxed { #endif }; +struct HairDesignerGeneratorAdvancedFurBase_SkinData { + struct Vector4 ids; + struct Vector4 weights; +}; + +struct HairDesignerGeneratorAdvancedFurBase_SkinData__Boxed { + struct HairDesignerGeneratorAdvancedFurBase_SkinData__Class *klass; + MonitorData *monitor; + struct HairDesignerGeneratorAdvancedFurBase_SkinData fields; +}; + +struct HairDesignerGeneratorAdvancedFurBase_DualSphereCollider { + struct Vector4 sphere1; + struct Vector4 sphere2; +}; + +struct HairDesignerGeneratorAdvancedFurBase_DualSphereCollider__Boxed { + struct HairDesignerGeneratorAdvancedFurBase_DualSphereCollider__Class *klass; + MonitorData *monitor; + struct HairDesignerGeneratorAdvancedFurBase_DualSphereCollider fields; +}; + struct HairDesignerGeneratorAdvancedFurBase__Fields { struct HairDesignerGenerator__Fields _; struct HairDesignerGeneratorAdvancedFurBase_EditorData *m_editorData; @@ -343594,17 +347301,6 @@ struct HairDesignerGeneratorAdvancedFurBase_CSMotionData { struct HairDesignerGeneratorAdvancedFurBase_CSMotionData__Fields fields; }; -struct HairDesignerGeneratorAdvancedFurBase_SkinData { - struct Vector4 ids; - struct Vector4 weights; -}; - -struct HairDesignerGeneratorAdvancedFurBase_SkinData__Boxed { - struct HairDesignerGeneratorAdvancedFurBase_SkinData__Class *klass; - MonitorData *monitor; - struct HairDesignerGeneratorAdvancedFurBase_SkinData fields; -}; - struct HairDesignerGeneratorAdvancedFurBase_SkinData__Array { struct HairDesignerGeneratorAdvancedFurBase_SkinData__Array__Class *klass; MonitorData *monitor; @@ -343652,17 +347348,6 @@ struct IEnumerator_1_UnityEngine_MeshFilter_ { MonitorData *monitor; }; -struct HairDesignerGeneratorAdvancedFurBase_DualSphereCollider { - struct Vector4 sphere1; - struct Vector4 sphere2; -}; - -struct HairDesignerGeneratorAdvancedFurBase_DualSphereCollider__Boxed { - struct HairDesignerGeneratorAdvancedFurBase_DualSphereCollider__Class *klass; - MonitorData *monitor; - struct HairDesignerGeneratorAdvancedFurBase_DualSphereCollider fields; -}; - struct HairDesignerGeneratorAdvancedFurBase_DualSphereCollider__Array { struct HairDesignerGeneratorAdvancedFurBase_DualSphereCollider__Array__Class *klass; MonitorData *monitor; @@ -344190,6 +347875,17 @@ struct HairDesignerGeneratorAdvancedFur__Class { struct HairDesignerGeneratorAdvancedFur__VTable vtable; }; +struct HairDesignerGeneratorFurShellBase_SkinData { + struct Vector4 ids; + struct Vector4 weights; +}; + +struct HairDesignerGeneratorFurShellBase_SkinData__Boxed { + struct HairDesignerGeneratorFurShellBase_SkinData__Class *klass; + MonitorData *monitor; + struct HairDesignerGeneratorFurShellBase_SkinData fields; +}; + struct HairDesignerGeneratorFurShellBase__Fields { struct HairDesignerGenerator__Fields _; struct HairDesignerGeneratorFurShellBase_EditorData *m_editorData; @@ -344311,19 +348007,6 @@ struct HairDesignerGeneratorFurShellBase_EditorData { struct HairDesignerGeneratorFurShellBase_EditorData__Fields fields; }; -struct __declspec(align(8)) List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_LODGroup___Fields { - struct HairDesignerGeneratorFurShellBase_LODGroup__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_LODGroup_ { - struct List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_LODGroup___Class *klass; - MonitorData *monitor; - struct List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_LODGroup___Fields fields; -}; - struct __declspec(align(8)) HairDesignerGeneratorFurShellBase_LODGroup__Fields { struct Vector2 m_range; int32_t m_shellCount; @@ -344341,6 +348024,19 @@ struct HairDesignerGeneratorFurShellBase_LODGroup { struct HairDesignerGeneratorFurShellBase_LODGroup__Fields fields; }; +struct __declspec(align(8)) List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_LODGroup___Fields { + struct HairDesignerGeneratorFurShellBase_LODGroup__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_LODGroup_ { + struct List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_LODGroup___Class *klass; + MonitorData *monitor; + struct List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_LODGroup___Fields fields; +}; + struct HairDesignerGeneratorFurShellBase_LODGroup__Array { struct HairDesignerGeneratorFurShellBase_LODGroup__Array__Class *klass; MonitorData *monitor; @@ -344374,6 +348070,16 @@ struct ComputeBuffer__Array { struct ComputeBuffer *vector[32]; }; +struct HairDesignerGeneratorFurShellBase_BufferData { + float furFactor; +}; + +struct HairDesignerGeneratorFurShellBase_BufferData__Boxed { + struct HairDesignerGeneratorFurShellBase_BufferData__Class *klass; + MonitorData *monitor; + struct HairDesignerGeneratorFurShellBase_BufferData fields; +}; + struct __declspec(align(8)) List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData___Fields { struct HairDesignerGeneratorFurShellBase_BufferData__Array *_items; int32_t _size; @@ -344387,16 +348093,6 @@ struct List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_B struct List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData___Fields fields; }; -struct HairDesignerGeneratorFurShellBase_BufferData { - float furFactor; -}; - -struct HairDesignerGeneratorFurShellBase_BufferData__Boxed { - struct HairDesignerGeneratorFurShellBase_BufferData__Class *klass; - MonitorData *monitor; - struct HairDesignerGeneratorFurShellBase_BufferData fields; -}; - struct HairDesignerGeneratorFurShellBase_BufferData__Array { struct HairDesignerGeneratorFurShellBase_BufferData__Array__Class *klass; MonitorData *monitor; @@ -344410,17 +348106,6 @@ struct IEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShel MonitorData *monitor; }; -struct HairDesignerGeneratorFurShellBase_SkinData { - struct Vector4 ids; - struct Vector4 weights; -}; - -struct HairDesignerGeneratorFurShellBase_SkinData__Boxed { - struct HairDesignerGeneratorFurShellBase_SkinData__Class *klass; - MonitorData *monitor; - struct HairDesignerGeneratorFurShellBase_SkinData fields; -}; - struct HairDesignerGeneratorFurShellBase_SkinData__Array { struct HairDesignerGeneratorFurShellBase_SkinData__Array__Class *klass; MonitorData *monitor; @@ -344842,19 +348527,6 @@ struct HairDesignerGeneratorLongHair { struct HairDesignerGeneratorLongHair__Fields fields; }; -struct __declspec(align(8)) List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorLongHairBase_HairGroup___Fields { - struct HairDesignerGeneratorLongHairBase_HairGroup__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorLongHairBase_HairGroup_ { - struct List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorLongHairBase_HairGroup___Class *klass; - MonitorData *monitor; - struct List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorLongHairBase_HairGroup___Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class HairDesignerGeneratorLongHairBase_eMeshGenerator__Enum : int32_t { HAIR_CARDS = 0x00000000, @@ -344956,6 +348628,19 @@ struct HairDesignerGeneratorLongHairBase_HairGroup { struct HairDesignerGeneratorLongHairBase_HairGroup__Fields fields; }; +struct __declspec(align(8)) List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorLongHairBase_HairGroup___Fields { + struct HairDesignerGeneratorLongHairBase_HairGroup__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorLongHairBase_HairGroup_ { + struct List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorLongHairBase_HairGroup___Class *klass; + MonitorData *monitor; + struct List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorLongHairBase_HairGroup___Fields fields; +}; + struct __declspec(align(8)) List_1_Kalagaan_HairDesignerExtension_StrandData___Fields { struct StrandData__Array *_items; int32_t _size; @@ -345037,19 +348722,6 @@ struct HairDesignerStrandMeshCollectionBase { struct HairDesignerStrandMeshCollectionBase__Fields fields; }; -struct __declspec(align(8)) List_1_Kalagaan_HairDesignerExtension_HairDesignerStrandMeshCollectionBase_StrandMesh___Fields { - struct HairDesignerStrandMeshCollectionBase_StrandMesh__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Kalagaan_HairDesignerExtension_HairDesignerStrandMeshCollectionBase_StrandMesh_ { - struct List_1_Kalagaan_HairDesignerExtension_HairDesignerStrandMeshCollectionBase_StrandMesh___Class *klass; - MonitorData *monitor; - struct List_1_Kalagaan_HairDesignerExtension_HairDesignerStrandMeshCollectionBase_StrandMesh___Fields fields; -}; - struct __declspec(align(8)) HairDesignerStrandMeshCollectionBase_StrandMesh__Fields { int32_t id; struct String *name; @@ -345063,6 +348735,19 @@ struct HairDesignerStrandMeshCollectionBase_StrandMesh { struct HairDesignerStrandMeshCollectionBase_StrandMesh__Fields fields; }; +struct __declspec(align(8)) List_1_Kalagaan_HairDesignerExtension_HairDesignerStrandMeshCollectionBase_StrandMesh___Fields { + struct HairDesignerStrandMeshCollectionBase_StrandMesh__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Kalagaan_HairDesignerExtension_HairDesignerStrandMeshCollectionBase_StrandMesh_ { + struct List_1_Kalagaan_HairDesignerExtension_HairDesignerStrandMeshCollectionBase_StrandMesh___Class *klass; + MonitorData *monitor; + struct List_1_Kalagaan_HairDesignerExtension_HairDesignerStrandMeshCollectionBase_StrandMesh___Fields fields; +}; + struct HairDesignerStrandMeshCollectionBase_StrandMesh__Array { struct HairDesignerStrandMeshCollectionBase_StrandMesh__Array__Class *klass; MonitorData *monitor; @@ -345148,19 +348833,6 @@ struct HairDesignerGeneratorLongHairBase_MotionBoneData { struct HairDesignerGeneratorLongHairBase_MotionBoneData__Fields fields; }; -struct __declspec(align(8)) List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorLongHairBase_MirrorModifier___Fields { - struct HairDesignerGeneratorLongHairBase_MirrorModifier__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorLongHairBase_MirrorModifier_ { - struct List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorLongHairBase_MirrorModifier___Class *klass; - MonitorData *monitor; - struct List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorLongHairBase_MirrorModifier___Fields fields; -}; - struct __declspec(align(8)) GeneratorModifier__Fields { int32_t id; struct String *name; @@ -345215,6 +348887,19 @@ struct HairDesignerGeneratorLongHairBase_MirrorModifier { struct HairDesignerGeneratorLongHairBase_MirrorModifier__Fields fields; }; +struct __declspec(align(8)) List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorLongHairBase_MirrorModifier___Fields { + struct HairDesignerGeneratorLongHairBase_MirrorModifier__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorLongHairBase_MirrorModifier_ { + struct List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorLongHairBase_MirrorModifier___Class *klass; + MonitorData *monitor; + struct List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorLongHairBase_MirrorModifier___Fields fields; +}; + struct HairDesignerGeneratorLongHairBase_MirrorModifier__Array { struct HairDesignerGeneratorLongHairBase_MirrorModifier__Array__Class *klass; MonitorData *monitor; @@ -345265,6 +348950,52 @@ struct IEnumerator_1_UnityEngine_Vector3__1 { MonitorData *monitor; }; +struct MotionSolver_GPURootTransform { + struct Vector3 pos; + struct Matrix4x4 mat; + struct Matrix4x4 previousMat; +}; + +struct MotionSolver_GPURootTransform__Boxed { + struct MotionSolver_GPURootTransform__Class *klass; + MonitorData *monitor; + struct MotionSolver_GPURootTransform fields; +}; + +struct MotionSolver_GPUNodeData { + struct Vector3 position; + struct Vector3 prevPosition; + struct Vector3 forward; + struct Vector3 up; +}; + +struct MotionSolver_GPUNodeData__Boxed { + struct MotionSolver_GPUNodeData__Class *klass; + MonitorData *monitor; + struct MotionSolver_GPUNodeData fields; +}; + +struct MotionSolver_GPUNodeInfo { + int32_t parentId; + int32_t childId; + int32_t rootId; + int32_t rootArrayId; + float parentDistance; + float childDistance; + float rootDistance; + float strandLength; + float chainFactor; + struct Vector3 initPosition; + struct Vector3 initUp; + int32_t constraint; +}; + +struct MotionSolver_GPUNodeInfo__Boxed { + struct MotionSolver_GPUNodeInfo__Class *klass; + MonitorData *monitor; + struct MotionSolver_GPUNodeInfo fields; +}; + struct __declspec(align(8)) MotionSolver__Fields { struct List_1_Kalagaan_HairDesignerExtension_MotionSolver_Node_ *m_nodes; struct List_1_Kalagaan_HairDesignerExtension_MotionSolver_Link_ *m_links; @@ -345303,19 +349034,6 @@ struct MotionSolver { struct MotionSolver__Fields fields; }; -struct __declspec(align(8)) List_1_Kalagaan_HairDesignerExtension_MotionSolver_Node___Fields { - struct MotionSolver_Node__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Kalagaan_HairDesignerExtension_MotionSolver_Node_ { - struct List_1_Kalagaan_HairDesignerExtension_MotionSolver_Node___Class *klass; - MonitorData *monitor; - struct List_1_Kalagaan_HairDesignerExtension_MotionSolver_Node___Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class MotionSolver_eMotionConstraint__Enum : int32_t { NONE = 0x00000000, @@ -345373,17 +349091,17 @@ struct MotionSolver_Node { struct MotionSolver_Node__Fields fields; }; -struct __declspec(align(8)) List_1_Kalagaan_HairDesignerExtension_MotionSolver_Link___Fields { - struct MotionSolver_Link__Array *_items; +struct __declspec(align(8)) List_1_Kalagaan_HairDesignerExtension_MotionSolver_Node___Fields { + struct MotionSolver_Node__Array *_items; int32_t _size; int32_t _version; struct Object *_syncRoot; }; -struct List_1_Kalagaan_HairDesignerExtension_MotionSolver_Link_ { - struct List_1_Kalagaan_HairDesignerExtension_MotionSolver_Link___Class *klass; +struct List_1_Kalagaan_HairDesignerExtension_MotionSolver_Node_ { + struct List_1_Kalagaan_HairDesignerExtension_MotionSolver_Node___Class *klass; MonitorData *monitor; - struct List_1_Kalagaan_HairDesignerExtension_MotionSolver_Link___Fields fields; + struct List_1_Kalagaan_HairDesignerExtension_MotionSolver_Node___Fields fields; }; struct __declspec(align(8)) MotionSolver_Link__Fields { @@ -345398,6 +349116,19 @@ struct MotionSolver_Link { struct MotionSolver_Link__Fields fields; }; +struct __declspec(align(8)) List_1_Kalagaan_HairDesignerExtension_MotionSolver_Link___Fields { + struct MotionSolver_Link__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Kalagaan_HairDesignerExtension_MotionSolver_Link_ { + struct List_1_Kalagaan_HairDesignerExtension_MotionSolver_Link___Class *klass; + MonitorData *monitor; + struct List_1_Kalagaan_HairDesignerExtension_MotionSolver_Link___Fields fields; +}; + struct MotionSolver_Link__Array { struct MotionSolver_Link__Array__Class *klass; MonitorData *monitor; @@ -345495,19 +349226,6 @@ struct IEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_ { MonitorData *monitor; }; -struct __declspec(align(8)) List_1_Kalagaan_HairDesignerExtension_HairDesignerMotionConstraintAreaBase___Fields { - struct HairDesignerMotionConstraintAreaBase__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Kalagaan_HairDesignerExtension_HairDesignerMotionConstraintAreaBase_ { - struct List_1_Kalagaan_HairDesignerExtension_HairDesignerMotionConstraintAreaBase___Class *klass; - MonitorData *monitor; - struct List_1_Kalagaan_HairDesignerExtension_HairDesignerMotionConstraintAreaBase___Fields fields; -}; - struct HairDesignerMotionConstraintAreaBase__Fields { struct MonoBehaviour__Fields _; #if defined(_CPLUSPLUS_) @@ -345531,6 +349249,19 @@ struct HairDesignerMotionConstraintAreaBase { struct HairDesignerMotionConstraintAreaBase__Fields fields; }; +struct __declspec(align(8)) List_1_Kalagaan_HairDesignerExtension_HairDesignerMotionConstraintAreaBase___Fields { + struct HairDesignerMotionConstraintAreaBase__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Kalagaan_HairDesignerExtension_HairDesignerMotionConstraintAreaBase_ { + struct List_1_Kalagaan_HairDesignerExtension_HairDesignerMotionConstraintAreaBase___Class *klass; + MonitorData *monitor; + struct List_1_Kalagaan_HairDesignerExtension_HairDesignerMotionConstraintAreaBase___Fields fields; +}; + struct Action_1_Kalagaan_HairDesignerExtension_HairDesignerMotionConstraintAreaBase___Fields { struct MulticastDelegate__Fields _; }; @@ -345541,6 +349272,17 @@ struct Action_1_Kalagaan_HairDesignerExtension_HairDesignerMotionConstraintAreaB struct Action_1_Kalagaan_HairDesignerExtension_HairDesignerMotionConstraintAreaBase___Fields fields; }; +struct __declspec(align(8)) HairDesignerMotionConstraintAreaBase_Area__Fields { + struct Vector3 position; + float radius; +}; + +struct HairDesignerMotionConstraintAreaBase_Area { + struct HairDesignerMotionConstraintAreaBase_Area__Class *klass; + MonitorData *monitor; + struct HairDesignerMotionConstraintAreaBase_Area__Fields fields; +}; + struct __declspec(align(8)) List_1_Kalagaan_HairDesignerExtension_HairDesignerMotionConstraintAreaBase_Area___Fields { struct HairDesignerMotionConstraintAreaBase_Area__Array *_items; int32_t _size; @@ -345554,17 +349296,6 @@ struct List_1_Kalagaan_HairDesignerExtension_HairDesignerMotionConstraintAreaBas struct List_1_Kalagaan_HairDesignerExtension_HairDesignerMotionConstraintAreaBase_Area___Fields fields; }; -struct __declspec(align(8)) HairDesignerMotionConstraintAreaBase_Area__Fields { - struct Vector3 position; - float radius; -}; - -struct HairDesignerMotionConstraintAreaBase_Area { - struct HairDesignerMotionConstraintAreaBase_Area__Class *klass; - MonitorData *monitor; - struct HairDesignerMotionConstraintAreaBase_Area__Fields fields; -}; - struct HairDesignerMotionConstraintAreaBase_Area__Array { struct HairDesignerMotionConstraintAreaBase_Area__Array__Class *klass; MonitorData *monitor; @@ -345591,18 +349322,6 @@ struct IEnumerator_1_Kalagaan_HairDesignerExtension_HairDesignerMotionConstraint MonitorData *monitor; }; -struct MotionSolver_GPURootTransform { - struct Vector3 pos; - struct Matrix4x4 mat; - struct Matrix4x4 previousMat; -}; - -struct MotionSolver_GPURootTransform__Boxed { - struct MotionSolver_GPURootTransform__Class *klass; - MonitorData *monitor; - struct MotionSolver_GPURootTransform fields; -}; - struct MotionSolver_GPURootTransform__Array { struct MotionSolver_GPURootTransform__Array__Class *klass; MonitorData *monitor; @@ -345611,19 +349330,6 @@ struct MotionSolver_GPURootTransform__Array { struct MotionSolver_GPURootTransform vector[32]; }; -struct MotionSolver_GPUNodeData { - struct Vector3 position; - struct Vector3 prevPosition; - struct Vector3 forward; - struct Vector3 up; -}; - -struct MotionSolver_GPUNodeData__Boxed { - struct MotionSolver_GPUNodeData__Class *klass; - MonitorData *monitor; - struct MotionSolver_GPUNodeData fields; -}; - struct MotionSolver_GPUNodeData__Array { struct MotionSolver_GPUNodeData__Array__Class *klass; MonitorData *monitor; @@ -345632,27 +349338,6 @@ struct MotionSolver_GPUNodeData__Array { struct MotionSolver_GPUNodeData vector[32]; }; -struct MotionSolver_GPUNodeInfo { - int32_t parentId; - int32_t childId; - int32_t rootId; - int32_t rootArrayId; - float parentDistance; - float childDistance; - float rootDistance; - float strandLength; - float chainFactor; - struct Vector3 initPosition; - struct Vector3 initUp; - int32_t constraint; -}; - -struct MotionSolver_GPUNodeInfo__Boxed { - struct MotionSolver_GPUNodeInfo__Class *klass; - MonitorData *monitor; - struct MotionSolver_GPUNodeInfo fields; -}; - struct MotionSolver_GPUNodeInfo__Array { struct MotionSolver_GPUNodeInfo__Array__Class *klass; MonitorData *monitor; @@ -347391,6 +351076,19 @@ struct HairDesignerRuntimeLayer { struct HairDesignerRuntimeLayer__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Transform_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct Transform *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Transform___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Transform___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Transform_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_UnityEngine_Transform___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Transform___Array *_entries; @@ -347410,19 +351108,6 @@ struct Dictionary_2_System_String_UnityEngine_Transform_ { struct Dictionary_2_System_String_UnityEngine_Transform___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Transform_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct Transform *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Transform___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Transform___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Transform_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Transform___Array { struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Transform___Array__Class *klass; MonitorData *monitor; @@ -347602,6 +351287,21 @@ struct ICollection_1_UnityEngine_Transform___Class { struct ICollection_1_UnityEngine_Transform___VTable vtable; }; +struct Transform___VTable { +}; + +struct Transform___StaticFields { +}; + +struct Transform___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Transform___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Transform___VTable vtable; +}; + struct KeyValuePair_2_System_String_UnityEngine_Transform___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -348002,19 +351702,6 @@ struct AtlasParameters { struct AtlasParameters__Fields fields; }; -struct __declspec(align(8)) List_1_Kalagaan_HairDesignerExtension_TextureToolShaderParameters___Fields { - struct TextureToolShaderParameters__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Kalagaan_HairDesignerExtension_TextureToolShaderParameters_ { - struct List_1_Kalagaan_HairDesignerExtension_TextureToolShaderParameters___Class *klass; - MonitorData *monitor; - struct List_1_Kalagaan_HairDesignerExtension_TextureToolShaderParameters___Fields fields; -}; - struct __declspec(align(8)) TextureToolShaderParameters__Fields { struct Vector4 m_scale; int32_t m_hairCount; @@ -348044,17 +351731,17 @@ struct TextureToolShaderParameters { struct TextureToolShaderParameters__Fields fields; }; -struct __declspec(align(8)) List_1_Kalagaan_HairDesignerExtension_TextureToolColor___Fields { - struct TextureToolColor__Array *_items; +struct __declspec(align(8)) List_1_Kalagaan_HairDesignerExtension_TextureToolShaderParameters___Fields { + struct TextureToolShaderParameters__Array *_items; int32_t _size; int32_t _version; struct Object *_syncRoot; }; -struct List_1_Kalagaan_HairDesignerExtension_TextureToolColor_ { - struct List_1_Kalagaan_HairDesignerExtension_TextureToolColor___Class *klass; +struct List_1_Kalagaan_HairDesignerExtension_TextureToolShaderParameters_ { + struct List_1_Kalagaan_HairDesignerExtension_TextureToolShaderParameters___Class *klass; MonitorData *monitor; - struct List_1_Kalagaan_HairDesignerExtension_TextureToolColor___Fields fields; + struct List_1_Kalagaan_HairDesignerExtension_TextureToolShaderParameters___Fields fields; }; struct __declspec(align(8)) TextureToolColor__Fields { @@ -348069,6 +351756,19 @@ struct TextureToolColor { struct TextureToolColor__Fields fields; }; +struct __declspec(align(8)) List_1_Kalagaan_HairDesignerExtension_TextureToolColor___Fields { + struct TextureToolColor__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Kalagaan_HairDesignerExtension_TextureToolColor_ { + struct List_1_Kalagaan_HairDesignerExtension_TextureToolColor___Class *klass; + MonitorData *monitor; + struct List_1_Kalagaan_HairDesignerExtension_TextureToolColor___Fields fields; +}; + struct TextureToolColor__Array { struct TextureToolColor__Array__Class *klass; MonitorData *monitor; @@ -348095,19 +351795,6 @@ struct IEnumerator_1_Kalagaan_HairDesignerExtension_TextureToolShaderParameters_ MonitorData *monitor; }; -struct __declspec(align(8)) List_1_Kalagaan_HairDesignerExtension_HairDesignerShaderAdvancedFur_LODData___Fields { - struct HairDesignerShaderAdvancedFur_LODData__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Kalagaan_HairDesignerExtension_HairDesignerShaderAdvancedFur_LODData_ { - struct List_1_Kalagaan_HairDesignerExtension_HairDesignerShaderAdvancedFur_LODData___Class *klass; - MonitorData *monitor; - struct List_1_Kalagaan_HairDesignerExtension_HairDesignerShaderAdvancedFur_LODData___Fields fields; -}; - struct __declspec(align(8)) HairDesignerShaderAdvancedFur_LODData__Fields { struct Vector2 m_range; int32_t m_strandDensity; @@ -348132,6 +351819,19 @@ struct HairDesignerShaderAdvancedFur_LODData { struct HairDesignerShaderAdvancedFur_LODData__Fields fields; }; +struct __declspec(align(8)) List_1_Kalagaan_HairDesignerExtension_HairDesignerShaderAdvancedFur_LODData___Fields { + struct HairDesignerShaderAdvancedFur_LODData__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Kalagaan_HairDesignerExtension_HairDesignerShaderAdvancedFur_LODData_ { + struct List_1_Kalagaan_HairDesignerExtension_HairDesignerShaderAdvancedFur_LODData___Class *klass; + MonitorData *monitor; + struct List_1_Kalagaan_HairDesignerExtension_HairDesignerShaderAdvancedFur_LODData___Fields fields; +}; + struct HairDesignerShaderAdvancedFur_LODData__Array { struct HairDesignerShaderAdvancedFur_LODData__Array__Class *klass; MonitorData *monitor; @@ -353173,6 +356873,29 @@ struct BehaviorTreeAgent__Class { struct BehaviorTreeAgent__VTable vtable; }; +struct SharedVariable_1_NamedVariable___Fields { + struct SharedVariable__Fields _; + struct Func_1_BehaviorDesigner_Runtime_NamedVariable_ *mGetter; + struct Action_1_BehaviorDesigner_Runtime_NamedVariable_ *mSetter; + struct NamedVariable *mValue; +}; + +struct SharedVariable_1_NamedVariable_ { + struct SharedVariable_1_NamedVariable___Class *klass; + MonitorData *monitor; + struct SharedVariable_1_NamedVariable___Fields fields; +}; + +struct SharedNamedVariable__Fields { + struct SharedVariable_1_NamedVariable___Fields _; +}; + +struct SharedNamedVariable { + struct SharedNamedVariable__Class *klass; + MonitorData *monitor; + struct SharedNamedVariable__Fields fields; +}; + struct BehaviorReference__Fields { struct Action_1__Fields _; struct ExternalBehavior__Array *externalBehaviors; @@ -353204,29 +356927,6 @@ struct ExternalBehavior__Array { struct ExternalBehavior *vector[32]; }; -struct SharedVariable_1_NamedVariable___Fields { - struct SharedVariable__Fields _; - struct Func_1_BehaviorDesigner_Runtime_NamedVariable_ *mGetter; - struct Action_1_BehaviorDesigner_Runtime_NamedVariable_ *mSetter; - struct NamedVariable *mValue; -}; - -struct SharedVariable_1_NamedVariable_ { - struct SharedVariable_1_NamedVariable___Class *klass; - MonitorData *monitor; - struct SharedVariable_1_NamedVariable___Fields fields; -}; - -struct SharedNamedVariable__Fields { - struct SharedVariable_1_NamedVariable___Fields _; -}; - -struct SharedNamedVariable { - struct SharedNamedVariable__Class *klass; - MonitorData *monitor; - struct SharedNamedVariable__Fields fields; -}; - struct Func_1_BehaviorDesigner_Runtime_NamedVariable___Fields { struct MulticastDelegate__Fields _; }; @@ -353657,18 +357357,6 @@ struct Log_2__Class { struct Log_2__VTable vtable; }; -struct PerformInterruption__Fields { - struct Action_1__Fields _; - struct Interrupt__Array *interruptTasks; - struct SharedBool *interruptSuccess; -}; - -struct PerformInterruption { - struct PerformInterruption__Class *klass; - MonitorData *monitor; - struct PerformInterruption__Fields fields; -}; - struct ParentTask__Fields { struct Task_1__Fields _; struct List_1_BehaviorDesigner_Runtime_Tasks_Task_ *children; @@ -353710,6 +357398,18 @@ struct Interrupt { struct Interrupt__Fields fields; }; +struct PerformInterruption__Fields { + struct Action_1__Fields _; + struct Interrupt__Array *interruptTasks; + struct SharedBool *interruptSuccess; +}; + +struct PerformInterruption { + struct PerformInterruption__Class *klass; + MonitorData *monitor; + struct PerformInterruption__Fields fields; +}; + struct Interrupt__Array { struct Interrupt__Array__Class *klass; MonitorData *monitor; @@ -364494,20 +368194,6 @@ struct CompareTo__Class { struct CompareTo__VTable vtable; }; -struct Format__Fields { - struct Action_1__Fields _; - struct SharedString *format; - struct SharedGenericVariable__Array *variables; - struct SharedString *storeResult; - struct Object__Array *variableValues; -}; - -struct Format { - struct Format__Class *klass; - MonitorData *monitor; - struct Format__Fields fields; -}; - struct SharedVariable_1_GenericVariable___Fields { struct SharedVariable__Fields _; struct Func_1_BehaviorDesigner_Runtime_GenericVariable_ *mGetter; @@ -364531,6 +368217,20 @@ struct SharedGenericVariable { struct SharedGenericVariable__Fields fields; }; +struct Format__Fields { + struct Action_1__Fields _; + struct SharedString *format; + struct SharedGenericVariable__Array *variables; + struct SharedString *storeResult; + struct Object__Array *variableValues; +}; + +struct Format { + struct Format__Class *klass; + MonitorData *monitor; + struct Format__Fields fields; +}; + struct Func_1_BehaviorDesigner_Runtime_GenericVariable___Fields { struct MulticastDelegate__Fields _; }; @@ -390428,6 +394128,17 @@ struct Damage { struct Damage__Fields fields; }; +struct __declspec(align(8)) Hitbox__Fields { + struct Collider *m_Collider; + float m_DamageMultiplier; +}; + +struct Hitbox { + struct Hitbox__Class *klass; + MonitorData *monitor; + struct Hitbox__Fields fields; +}; + struct Health__Fields { struct StateBehavior__Fields _; bool m_Invincible; @@ -390467,17 +394178,6 @@ struct Health { struct Health__Fields fields; }; -struct __declspec(align(8)) Hitbox__Fields { - struct Collider *m_Collider; - float m_DamageMultiplier; -}; - -struct Hitbox { - struct Hitbox__Class *klass; - MonitorData *monitor; - struct Hitbox__Fields fields; -}; - struct Hitbox__Array { struct Hitbox__Array__Class *klass; MonitorData *monitor; @@ -390533,6 +394233,19 @@ struct IForceObject { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_Opsive_UltimateCharacterController_Traits_Hitbox_ { + int32_t hashCode; + int32_t next; + struct Collider *key; + struct Hitbox *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_Opsive_UltimateCharacterController_Traits_Hitbox___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_Opsive_UltimateCharacterController_Traits_Hitbox___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_Opsive_UltimateCharacterController_Traits_Hitbox_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_Collider_Opsive_UltimateCharacterController_Traits_Hitbox___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_Opsive_UltimateCharacterController_Traits_Hitbox___Array *_entries; @@ -390552,19 +394265,6 @@ struct Dictionary_2_UnityEngine_Collider_Opsive_UltimateCharacterController_Trai struct Dictionary_2_UnityEngine_Collider_Opsive_UltimateCharacterController_Traits_Hitbox___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_Opsive_UltimateCharacterController_Traits_Hitbox_ { - int32_t hashCode; - int32_t next; - struct Collider *key; - struct Hitbox *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_Opsive_UltimateCharacterController_Traits_Hitbox___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_Opsive_UltimateCharacterController_Traits_Hitbox___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_Opsive_UltimateCharacterController_Traits_Hitbox_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_Opsive_UltimateCharacterController_Traits_Hitbox___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_Opsive_UltimateCharacterController_Traits_Hitbox___Array__Class *klass; MonitorData *monitor; @@ -390913,6 +394613,21 @@ struct ICollection_1_Opsive_UltimateCharacterController_Traits_Hitbox___Class { struct ICollection_1_Opsive_UltimateCharacterController_Traits_Hitbox___VTable vtable; }; +struct Hitbox___VTable { +}; + +struct Hitbox___StaticFields { +}; + +struct Hitbox___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Hitbox___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Hitbox___VTable vtable; +}; + struct KeyValuePair_2_UnityEngine_Collider_Opsive_UltimateCharacterController_Traits_Hitbox___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -391614,6 +395329,11 @@ struct Reload { struct Reload__Fields fields; }; +struct IReloadableItem { + struct IReloadableItem__Class *klass; + MonitorData *monitor; +}; + struct Reload_1__Fields { struct ItemAbility__Fields _; int32_t m_SlotID; @@ -391632,11 +395352,6 @@ struct Reload_1 { struct Reload_1__Fields fields; }; -struct IReloadableItem { - struct IReloadableItem__Class *klass; - MonitorData *monitor; -}; - struct IReloadableItem__Array { struct IReloadableItem__Array__Class *klass; MonitorData *monitor; @@ -391645,6 +395360,18 @@ struct IReloadableItem__Array { struct IReloadableItem *vector[32]; }; +struct HashSet_1_T_Slot_Opsive_UltimateCharacterController_Items_Item_ { + int32_t hashCode; + int32_t next; + struct Item *value; +}; + +struct HashSet_1_T_Slot_Opsive_UltimateCharacterController_Items_Item___Boxed { + struct HashSet_1_T_Slot_Opsive_UltimateCharacterController_Items_Item___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_Opsive_UltimateCharacterController_Items_Item_ fields; +}; + struct __declspec(align(8)) HashSet_1_Opsive_UltimateCharacterController_Items_Item___Fields { struct Int32__Array *_buckets; struct HashSet_1_T_Slot_Opsive_UltimateCharacterController_Items_Item___Array *_slots; @@ -391662,18 +395389,6 @@ struct HashSet_1_Opsive_UltimateCharacterController_Items_Item_ { struct HashSet_1_Opsive_UltimateCharacterController_Items_Item___Fields fields; }; -struct HashSet_1_T_Slot_Opsive_UltimateCharacterController_Items_Item_ { - int32_t hashCode; - int32_t next; - struct Item *value; -}; - -struct HashSet_1_T_Slot_Opsive_UltimateCharacterController_Items_Item___Boxed { - struct HashSet_1_T_Slot_Opsive_UltimateCharacterController_Items_Item___Class *klass; - MonitorData *monitor; - struct HashSet_1_T_Slot_Opsive_UltimateCharacterController_Items_Item_ fields; -}; - struct HashSet_1_T_Slot_Opsive_UltimateCharacterController_Items_Item___Array { struct HashSet_1_T_Slot_Opsive_UltimateCharacterController_Items_Item___Array__Class *klass; MonitorData *monitor; @@ -392392,6 +396107,11 @@ struct StartStopUse { struct StartStopUse__Fields fields; }; +struct IUsableItem { + struct IUsableItem__Class *klass; + MonitorData *monitor; +}; + struct Use__Fields { struct ItemAbility__Fields _; int32_t m_SlotID; @@ -392416,11 +396136,6 @@ struct Use { struct Use__Fields fields; }; -struct IUsableItem { - struct IUsableItem__Class *klass; - MonitorData *monitor; -}; - struct IUsableItem__Array { struct IUsableItem__Array__Class *klass; MonitorData *monitor; @@ -398570,6 +402285,36 @@ struct FilterMode__Enum__Class { struct FilterMode__Enum__VTable vtable; }; +struct RenderTexture___VTable { +}; + +struct RenderTexture___StaticFields { +}; + +struct RenderTexture___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RenderTexture___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RenderTexture___VTable vtable; +}; + +struct TargetDesc___VTable { +}; + +struct TargetDesc___StaticFields { +}; + +struct TargetDesc___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TargetDesc___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TargetDesc___VTable vtable; +}; + struct __declspec(align(8)) VersionInfo__Fields { int32_t m_major; int32_t m_minor; @@ -398611,18 +402356,6 @@ struct SafeX509ChainHandle { struct SafeX509ChainHandle__Fields fields; }; -struct Interop_Crypt32_CERT_CHAIN_POLICY_PARA { - uint32_t cbSize; - uint32_t dwFlags; - struct Interop_Crypt32_SSL_EXTRA_CERT_CHAIN_POLICY_PARA *pvExtraPolicyPara; -}; - -struct Interop_Crypt32_CERT_CHAIN_POLICY_PARA__Boxed { - struct Interop_Crypt32_CERT_CHAIN_POLICY_PARA__Class *klass; - MonitorData *monitor; - struct Interop_Crypt32_CERT_CHAIN_POLICY_PARA fields; -}; - struct Interop_Crypt32_SSL_EXTRA_CERT_CHAIN_POLICY_PARA { uint32_t cbSize; uint32_t dwAuthType; @@ -398636,6 +402369,18 @@ struct Interop_Crypt32_SSL_EXTRA_CERT_CHAIN_POLICY_PARA__Boxed { struct Interop_Crypt32_SSL_EXTRA_CERT_CHAIN_POLICY_PARA fields; }; +struct Interop_Crypt32_CERT_CHAIN_POLICY_PARA { + uint32_t cbSize; + uint32_t dwFlags; + struct Interop_Crypt32_SSL_EXTRA_CERT_CHAIN_POLICY_PARA *pvExtraPolicyPara; +}; + +struct Interop_Crypt32_CERT_CHAIN_POLICY_PARA__Boxed { + struct Interop_Crypt32_CERT_CHAIN_POLICY_PARA__Class *klass; + MonitorData *monitor; + struct Interop_Crypt32_CERT_CHAIN_POLICY_PARA fields; +}; + struct Interop_Crypt32_SSL_EXTRA_CERT_CHAIN_POLICY_PARAPtr { struct Interop_Crypt32_SSL_EXTRA_CERT_CHAIN_POLICY_PARAPtr__Class *klass; MonitorData *monitor; @@ -398731,6 +402476,21 @@ struct Interop_Crypt32_CERT_CHAIN_POLICY_PARA__Class { struct Interop_Crypt32_CERT_CHAIN_POLICY_PARA__VTable vtable; }; +struct Interop_Crypt32_CERT_CHAIN_POLICY_PARA___VTable { +}; + +struct Interop_Crypt32_CERT_CHAIN_POLICY_PARA___StaticFields { +}; + +struct Interop_Crypt32_CERT_CHAIN_POLICY_PARA___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Interop_Crypt32_CERT_CHAIN_POLICY_PARA___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Interop_Crypt32_CERT_CHAIN_POLICY_PARA___VTable vtable; +}; + struct Interop_Crypt32_CERT_CHAIN_POLICY_STATUS__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -398750,6 +402510,21 @@ struct Interop_Crypt32_CERT_CHAIN_POLICY_STATUS__Class { struct Interop_Crypt32_CERT_CHAIN_POLICY_STATUS__VTable vtable; }; +struct Interop_Crypt32_CERT_CHAIN_POLICY_STATUS___VTable { +}; + +struct Interop_Crypt32_CERT_CHAIN_POLICY_STATUS___StaticFields { +}; + +struct Interop_Crypt32_CERT_CHAIN_POLICY_STATUS___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Interop_Crypt32_CERT_CHAIN_POLICY_STATUS___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Interop_Crypt32_CERT_CHAIN_POLICY_STATUS___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class Interop_ApplicationProtocolNegotiationStatus__Enum : int32_t { None = 0x00000000, @@ -398952,6 +402727,21 @@ struct Interop_SspiCli_SecBufferDesc__Boxed { struct Interop_SspiCli_SecBufferDesc fields; }; +struct Interop_SspiCli_CredHandle___VTable { +}; + +struct Interop_SspiCli_CredHandle___StaticFields { +}; + +struct Interop_SspiCli_CredHandle___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Interop_SspiCli_CredHandle___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Interop_SspiCli_CredHandle___VTable vtable; +}; + struct Interop_SspiCli_SecBufferDesc__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -398971,6 +402761,36 @@ struct Interop_SspiCli_SecBufferDesc__Class { struct Interop_SspiCli_SecBufferDesc__VTable vtable; }; +struct Interop_SspiCli_SecBufferDesc___VTable { +}; + +struct Interop_SspiCli_SecBufferDesc___StaticFields { +}; + +struct Interop_SspiCli_SecBufferDesc___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Interop_SspiCli_SecBufferDesc___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Interop_SspiCli_SecBufferDesc___VTable vtable; +}; + +struct SecurityContextTokenHandle___VTable { +}; + +struct SecurityContextTokenHandle___StaticFields { +}; + +struct SecurityContextTokenHandle___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SecurityContextTokenHandle___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SecurityContextTokenHandle___VTable vtable; +}; + struct Interop_SspiCli_SecBufferDescPtr { struct Interop_SspiCli_SecBufferDescPtr__Class *klass; MonitorData *monitor; @@ -399153,6 +402973,21 @@ struct Interop_SspiCli_Endianness__Enum__Class { struct Interop_SspiCli_Endianness__Enum__VTable vtable; }; +struct Interop_SspiCli_ContextFlags___VTable { +}; + +struct Interop_SspiCli_ContextFlags___StaticFields { +}; + +struct Interop_SspiCli_ContextFlags___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Interop_SspiCli_ContextFlags___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Interop_SspiCli_ContextFlags___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class Interop_SspiCli_ContextAttribute__Enum : int32_t { SECPKG_ATTR_SIZES = 0x00000000, @@ -399312,6 +403147,21 @@ struct SafeFreeContextBuffer_SECURITY__Class { struct SafeFreeContextBuffer_SECURITY__VTable vtable; }; +struct SafeFreeContextBuffer_SECURITY___VTable { +}; + +struct SafeFreeContextBuffer_SECURITY___StaticFields { +}; + +struct SafeFreeContextBuffer_SECURITY___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SafeFreeContextBuffer_SECURITY___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SafeFreeContextBuffer_SECURITY___VTable vtable; +}; + struct Interop_SspiCli_SEC_WINNT_AUTH_IDENTITY_W { struct String *User; int32_t UserLength; @@ -399347,6 +403197,21 @@ struct Interop_SspiCli_SEC_WINNT_AUTH_IDENTITY_W__Class { struct Interop_SspiCli_SEC_WINNT_AUTH_IDENTITY_W__VTable vtable; }; +struct Interop_SspiCli_SEC_WINNT_AUTH_IDENTITY_W___VTable { +}; + +struct Interop_SspiCli_SEC_WINNT_AUTH_IDENTITY_W___StaticFields { +}; + +struct Interop_SspiCli_SEC_WINNT_AUTH_IDENTITY_W___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Interop_SspiCli_SEC_WINNT_AUTH_IDENTITY_W___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Interop_SspiCli_SEC_WINNT_AUTH_IDENTITY_W___VTable vtable; +}; + struct SafeSspiAuthDataHandle__Fields { struct SafeHandleZeroOrMinusOneIsInvalid__Fields _; }; @@ -399499,6 +403364,21 @@ struct Interop_SspiCli_SCHANNEL_CRED__Class { struct Interop_SspiCli_SCHANNEL_CRED__VTable vtable; }; +struct Interop_SspiCli_SCHANNEL_CRED___VTable { +}; + +struct Interop_SspiCli_SCHANNEL_CRED___StaticFields { +}; + +struct Interop_SspiCli_SCHANNEL_CRED___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Interop_SspiCli_SCHANNEL_CRED___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Interop_SspiCli_SCHANNEL_CRED___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class Interop_SECURITY_STATUS__Enum : int32_t { OK = 0x00000000, @@ -399638,6 +403518,21 @@ struct Interop_SECURITY_STATUS__Enum__Class { struct Interop_SECURITY_STATUS__Enum__VTable vtable; }; +struct SafeSspiAuthDataHandle___VTable { +}; + +struct SafeSspiAuthDataHandle___StaticFields { +}; + +struct SafeSspiAuthDataHandle___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SafeSspiAuthDataHandle___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SafeSspiAuthDataHandle___VTable vtable; +}; + struct Interop_SspiCli_SecPkgContext_IssuerListInfoEx { struct SafeHandle *aIssuers; uint32_t cIssuers; @@ -400203,424 +404098,6 @@ struct Nullable_1_Mono_Security_Interface_TlsProtocols___Boxed { struct Nullable_1_Mono_Security_Interface_TlsProtocols_ fields; }; -struct __declspec(align(8)) MonoTlsSettings__Fields { - struct MonoRemoteCertificateValidationCallback *_RemoteCertificateValidationCallback_k__BackingField; - struct MonoLocalCertificateSelectionCallback *_ClientCertificateSelectionCallback_k__BackingField; - struct Nullable_1_DateTime_ _CertificateValidationTime_k__BackingField; - struct X509CertificateCollection *_TrustAnchors_k__BackingField; - struct Object *_UserSettings_k__BackingField; - struct String__Array *_CertificateSearchPaths_k__BackingField; - bool _SendCloseNotify_k__BackingField; - struct String__Array *_ClientCertificateIssuers_k__BackingField; - bool _DisallowUnauthenticatedCertificateRequest_k__BackingField; - struct Nullable_1_Mono_Security_Interface_TlsProtocols_ _EnabledProtocols_k__BackingField; - struct CipherSuiteCode__Enum__Array *_EnabledCiphers_k__BackingField; - bool cloned; - bool checkCertName; - bool checkCertRevocationStatus; - struct Nullable_1_Boolean_ useServicePointManagerCallback; - bool skipSystemValidators; - bool callbackNeedsChain; - struct ICertificateValidator *certificateValidator; -}; - -struct MonoTlsSettings { - struct MonoTlsSettings__Class *klass; - MonitorData *monitor; - struct MonoTlsSettings__Fields fields; -}; - -struct MonoRemoteCertificateValidationCallback__Fields { - struct MulticastDelegate__Fields _; -}; - -struct MonoRemoteCertificateValidationCallback { - struct MonoRemoteCertificateValidationCallback__Class *klass; - MonitorData *monitor; - struct MonoRemoteCertificateValidationCallback__Fields fields; -}; - -struct __declspec(align(8)) X509Chain__Fields { - struct X509ChainImpl *impl; -}; - -struct X509Chain { - struct X509Chain__Class *klass; - MonitorData *monitor; - struct X509Chain__Fields fields; -}; - -struct X509ChainImpl { - struct X509ChainImpl__Class *klass; - MonitorData *monitor; -}; - -struct UnityTls_unitytls_x509list_ref { - uint64_t handle; -}; - -struct UnityTls_unitytls_x509list_ref__Boxed { - struct UnityTls_unitytls_x509list_ref__Class *klass; - MonitorData *monitor; - struct UnityTls_unitytls_x509list_ref fields; -}; - -struct __declspec(align(8)) X509ChainImplUnityTls__Fields { - struct X509ChainElementCollection *elements; - struct UnityTls_unitytls_x509list_ref nativeCertificateChain; - struct X509ChainPolicy *policy; - struct List_1_System_Security_Cryptography_X509Certificates_X509ChainStatus_ *chainStatusList; - bool reverseOrder; -}; - -struct X509ChainImplUnityTls { - struct X509ChainImplUnityTls__Class *klass; - MonitorData *monitor; - struct X509ChainImplUnityTls__Fields fields; -}; - -struct __declspec(align(8)) X509ChainElementCollection__Fields { - struct ArrayList *_list; -}; - -struct X509ChainElementCollection { - struct X509ChainElementCollection__Class *klass; - MonitorData *monitor; - struct X509ChainElementCollection__Fields fields; -}; - -#if defined(_CPLUSPLUS_) -enum class X509RevocationFlag__Enum : int32_t { - EndCertificateOnly = 0x00000000, - EntireChain = 0x00000001, - ExcludeRoot = 0x00000002, -}; - -#else -enum X509RevocationFlag__Enum { - X509RevocationFlag__Enum_EndCertificateOnly = 0x00000000, - X509RevocationFlag__Enum_EntireChain = 0x00000001, - X509RevocationFlag__Enum_ExcludeRoot = 0x00000002, -}; - -#endif -struct X509RevocationFlag__Enum__Boxed { - struct X509RevocationFlag__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - X509RevocationFlag__Enum value; - #else - int32_t value; - #endif -}; - -#if defined(_CPLUSPLUS_) -enum class X509RevocationMode__Enum : int32_t { - NoCheck = 0x00000000, - Online = 0x00000001, - Offline = 0x00000002, -}; - -#else -enum X509RevocationMode__Enum { - X509RevocationMode__Enum_NoCheck = 0x00000000, - X509RevocationMode__Enum_Online = 0x00000001, - X509RevocationMode__Enum_Offline = 0x00000002, -}; - -#endif -struct X509RevocationMode__Enum__Boxed { - struct X509RevocationMode__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - X509RevocationMode__Enum value; - #else - int32_t value; - #endif -}; - -#if defined(_CPLUSPLUS_) -enum class X509VerificationFlags__Enum : int32_t { - NoFlag = 0x00000000, - IgnoreNotTimeValid = 0x00000001, - IgnoreCtlNotTimeValid = 0x00000002, - IgnoreNotTimeNested = 0x00000004, - IgnoreInvalidBasicConstraints = 0x00000008, - AllowUnknownCertificateAuthority = 0x00000010, - IgnoreWrongUsage = 0x00000020, - IgnoreInvalidName = 0x00000040, - IgnoreInvalidPolicy = 0x00000080, - IgnoreEndRevocationUnknown = 0x00000100, - IgnoreCtlSignerRevocationUnknown = 0x00000200, - IgnoreCertificateAuthorityRevocationUnknown = 0x00000400, - IgnoreRootRevocationUnknown = 0x00000800, - AllFlags = 0x00000fff, -}; - -#else -enum X509VerificationFlags__Enum { - X509VerificationFlags__Enum_NoFlag = 0x00000000, - X509VerificationFlags__Enum_IgnoreNotTimeValid = 0x00000001, - X509VerificationFlags__Enum_IgnoreCtlNotTimeValid = 0x00000002, - X509VerificationFlags__Enum_IgnoreNotTimeNested = 0x00000004, - X509VerificationFlags__Enum_IgnoreInvalidBasicConstraints = 0x00000008, - X509VerificationFlags__Enum_AllowUnknownCertificateAuthority = 0x00000010, - X509VerificationFlags__Enum_IgnoreWrongUsage = 0x00000020, - X509VerificationFlags__Enum_IgnoreInvalidName = 0x00000040, - X509VerificationFlags__Enum_IgnoreInvalidPolicy = 0x00000080, - X509VerificationFlags__Enum_IgnoreEndRevocationUnknown = 0x00000100, - X509VerificationFlags__Enum_IgnoreCtlSignerRevocationUnknown = 0x00000200, - X509VerificationFlags__Enum_IgnoreCertificateAuthorityRevocationUnknown = 0x00000400, - X509VerificationFlags__Enum_IgnoreRootRevocationUnknown = 0x00000800, - X509VerificationFlags__Enum_AllFlags = 0x00000fff, -}; - -#endif -struct X509VerificationFlags__Enum__Boxed { - struct X509VerificationFlags__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - X509VerificationFlags__Enum value; - #else - int32_t value; - #endif -}; - -struct __declspec(align(8)) X509ChainPolicy__Fields { - struct OidCollection *apps; - struct OidCollection *cert; - struct X509CertificateCollection *store; - struct X509Certificate2Collection *store2; - #if defined(_CPLUSPLUS_) - X509RevocationFlag__Enum rflag; - #else - int32_t rflag; - #endif - #if defined(_CPLUSPLUS_) - X509RevocationMode__Enum mode; - #else - int32_t mode; - #endif - struct TimeSpan timeout; - #if defined(_CPLUSPLUS_) - X509VerificationFlags__Enum vflags; - #else - int32_t vflags; - #endif - struct DateTime vtime; -}; - -struct X509ChainPolicy { - struct X509ChainPolicy__Class *klass; - MonitorData *monitor; - struct X509ChainPolicy__Fields fields; -}; - -struct __declspec(align(8)) OidCollection__Fields { - struct List_1_System_Security_Cryptography_Oid_ *_list; -}; - -struct OidCollection { - struct OidCollection__Class *klass; - MonitorData *monitor; - struct OidCollection__Fields fields; -}; - -struct __declspec(align(8)) List_1_System_Security_Cryptography_Oid___Fields { - struct Oid__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_System_Security_Cryptography_Oid_ { - struct List_1_System_Security_Cryptography_Oid___Class *klass; - MonitorData *monitor; - struct List_1_System_Security_Cryptography_Oid___Fields fields; -}; - -struct Oid__Array { - struct Oid__Array__Class *klass; - MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - struct Oid *vector[32]; -}; - -struct IEnumerator_1_System_Security_Cryptography_Oid_ { - struct IEnumerator_1_System_Security_Cryptography_Oid___Class *klass; - MonitorData *monitor; -}; - -struct X509CertificateCollection__Fields { - struct CollectionBase__Fields _; -}; - -struct X509CertificateCollection { - struct X509CertificateCollection__Class *klass; - MonitorData *monitor; - struct X509CertificateCollection__Fields fields; -}; - -struct X509Certificate2Collection__Fields { - struct X509CertificateCollection__Fields _; -}; - -struct X509Certificate2Collection { - struct X509Certificate2Collection__Class *klass; - MonitorData *monitor; - struct X509Certificate2Collection__Fields fields; -}; - -struct __declspec(align(8)) List_1_System_Security_Cryptography_X509Certificates_X509ChainStatus___Fields { - struct X509ChainStatus__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_System_Security_Cryptography_X509Certificates_X509ChainStatus_ { - struct List_1_System_Security_Cryptography_X509Certificates_X509ChainStatus___Class *klass; - MonitorData *monitor; - struct List_1_System_Security_Cryptography_X509Certificates_X509ChainStatus___Fields fields; -}; - -#if defined(_CPLUSPLUS_) -enum class X509ChainStatusFlags__Enum : int32_t { - NoError = 0x00000000, - NotTimeValid = 0x00000001, - NotTimeNested = 0x00000002, - Revoked = 0x00000004, - NotSignatureValid = 0x00000008, - NotValidForUsage = 0x00000010, - UntrustedRoot = 0x00000020, - RevocationStatusUnknown = 0x00000040, - Cyclic = 0x00000080, - InvalidExtension = 0x00000100, - InvalidPolicyConstraints = 0x00000200, - InvalidBasicConstraints = 0x00000400, - InvalidNameConstraints = 0x00000800, - HasNotSupportedNameConstraint = 0x00001000, - HasNotDefinedNameConstraint = 0x00002000, - HasNotPermittedNameConstraint = 0x00004000, - HasExcludedNameConstraint = 0x00008000, - PartialChain = 0x00010000, - CtlNotTimeValid = 0x00020000, - CtlNotSignatureValid = 0x00040000, - CtlNotValidForUsage = 0x00080000, - OfflineRevocation = 0x01000000, - NoIssuanceChainPolicy = 0x02000000, - ExplicitDistrust = 0x04000000, - HasNotSupportedCriticalExtension = 0x08000000, - HasWeakSignature = 0x00100000, -}; - -#else -enum X509ChainStatusFlags__Enum { - X509ChainStatusFlags__Enum_NoError = 0x00000000, - X509ChainStatusFlags__Enum_NotTimeValid = 0x00000001, - X509ChainStatusFlags__Enum_NotTimeNested = 0x00000002, - X509ChainStatusFlags__Enum_Revoked = 0x00000004, - X509ChainStatusFlags__Enum_NotSignatureValid = 0x00000008, - X509ChainStatusFlags__Enum_NotValidForUsage = 0x00000010, - X509ChainStatusFlags__Enum_UntrustedRoot = 0x00000020, - X509ChainStatusFlags__Enum_RevocationStatusUnknown = 0x00000040, - X509ChainStatusFlags__Enum_Cyclic = 0x00000080, - X509ChainStatusFlags__Enum_InvalidExtension = 0x00000100, - X509ChainStatusFlags__Enum_InvalidPolicyConstraints = 0x00000200, - X509ChainStatusFlags__Enum_InvalidBasicConstraints = 0x00000400, - X509ChainStatusFlags__Enum_InvalidNameConstraints = 0x00000800, - X509ChainStatusFlags__Enum_HasNotSupportedNameConstraint = 0x00001000, - X509ChainStatusFlags__Enum_HasNotDefinedNameConstraint = 0x00002000, - X509ChainStatusFlags__Enum_HasNotPermittedNameConstraint = 0x00004000, - X509ChainStatusFlags__Enum_HasExcludedNameConstraint = 0x00008000, - X509ChainStatusFlags__Enum_PartialChain = 0x00010000, - X509ChainStatusFlags__Enum_CtlNotTimeValid = 0x00020000, - X509ChainStatusFlags__Enum_CtlNotSignatureValid = 0x00040000, - X509ChainStatusFlags__Enum_CtlNotValidForUsage = 0x00080000, - X509ChainStatusFlags__Enum_OfflineRevocation = 0x01000000, - X509ChainStatusFlags__Enum_NoIssuanceChainPolicy = 0x02000000, - X509ChainStatusFlags__Enum_ExplicitDistrust = 0x04000000, - X509ChainStatusFlags__Enum_HasNotSupportedCriticalExtension = 0x08000000, - X509ChainStatusFlags__Enum_HasWeakSignature = 0x00100000, -}; - -#endif -struct X509ChainStatusFlags__Enum__Boxed { - struct X509ChainStatusFlags__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - X509ChainStatusFlags__Enum value; - #else - int32_t value; - #endif -}; - -struct X509ChainStatus { - #if defined(_CPLUSPLUS_) - X509ChainStatusFlags__Enum status; - #else - int32_t status; - #endif - struct String *info; -}; - -struct X509ChainStatus__Boxed { - struct X509ChainStatus__Class *klass; - MonitorData *monitor; - struct X509ChainStatus fields; -}; - -struct X509ChainStatus__Array { - struct X509ChainStatus__Array__Class *klass; - MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - struct X509ChainStatus vector[32]; -}; - -struct IEnumerator_1_System_Security_Cryptography_X509Certificates_X509ChainStatus_ { - struct IEnumerator_1_System_Security_Cryptography_X509Certificates_X509ChainStatus___Class *klass; - MonitorData *monitor; -}; - -#if defined(_CPLUSPLUS_) -enum class MonoSslPolicyErrors__Enum : int32_t { - None = 0x00000000, - RemoteCertificateNotAvailable = 0x00000001, - RemoteCertificateNameMismatch = 0x00000002, - RemoteCertificateChainErrors = 0x00000004, -}; - -#else -enum MonoSslPolicyErrors__Enum { - MonoSslPolicyErrors__Enum_None = 0x00000000, - MonoSslPolicyErrors__Enum_RemoteCertificateNotAvailable = 0x00000001, - MonoSslPolicyErrors__Enum_RemoteCertificateNameMismatch = 0x00000002, - MonoSslPolicyErrors__Enum_RemoteCertificateChainErrors = 0x00000004, -}; - -#endif -struct MonoSslPolicyErrors__Enum__Boxed { - struct MonoSslPolicyErrors__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - MonoSslPolicyErrors__Enum value; - #else - int32_t value; - #endif -}; - -struct MonoLocalCertificateSelectionCallback__Fields { - struct MulticastDelegate__Fields _; -}; - -struct MonoLocalCertificateSelectionCallback { - struct MonoLocalCertificateSelectionCallback__Class *klass; - MonitorData *monitor; - struct MonoLocalCertificateSelectionCallback__Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class CipherSuiteCode__Enum : uint16_t { TLS_NULL_WITH_NULL_NULL = 0x0000, @@ -401172,6 +404649,424 @@ struct CipherSuiteCode__Enum__Boxed { #endif }; +struct __declspec(align(8)) MonoTlsSettings__Fields { + struct MonoRemoteCertificateValidationCallback *_RemoteCertificateValidationCallback_k__BackingField; + struct MonoLocalCertificateSelectionCallback *_ClientCertificateSelectionCallback_k__BackingField; + struct Nullable_1_DateTime_ _CertificateValidationTime_k__BackingField; + struct X509CertificateCollection *_TrustAnchors_k__BackingField; + struct Object *_UserSettings_k__BackingField; + struct String__Array *_CertificateSearchPaths_k__BackingField; + bool _SendCloseNotify_k__BackingField; + struct String__Array *_ClientCertificateIssuers_k__BackingField; + bool _DisallowUnauthenticatedCertificateRequest_k__BackingField; + struct Nullable_1_Mono_Security_Interface_TlsProtocols_ _EnabledProtocols_k__BackingField; + struct CipherSuiteCode__Enum__Array *_EnabledCiphers_k__BackingField; + bool cloned; + bool checkCertName; + bool checkCertRevocationStatus; + struct Nullable_1_Boolean_ useServicePointManagerCallback; + bool skipSystemValidators; + bool callbackNeedsChain; + struct ICertificateValidator *certificateValidator; +}; + +struct MonoTlsSettings { + struct MonoTlsSettings__Class *klass; + MonitorData *monitor; + struct MonoTlsSettings__Fields fields; +}; + +struct MonoRemoteCertificateValidationCallback__Fields { + struct MulticastDelegate__Fields _; +}; + +struct MonoRemoteCertificateValidationCallback { + struct MonoRemoteCertificateValidationCallback__Class *klass; + MonitorData *monitor; + struct MonoRemoteCertificateValidationCallback__Fields fields; +}; + +struct __declspec(align(8)) X509Chain__Fields { + struct X509ChainImpl *impl; +}; + +struct X509Chain { + struct X509Chain__Class *klass; + MonitorData *monitor; + struct X509Chain__Fields fields; +}; + +struct X509ChainImpl { + struct X509ChainImpl__Class *klass; + MonitorData *monitor; +}; + +struct UnityTls_unitytls_x509list_ref { + uint64_t handle; +}; + +struct UnityTls_unitytls_x509list_ref__Boxed { + struct UnityTls_unitytls_x509list_ref__Class *klass; + MonitorData *monitor; + struct UnityTls_unitytls_x509list_ref fields; +}; + +struct __declspec(align(8)) X509ChainImplUnityTls__Fields { + struct X509ChainElementCollection *elements; + struct UnityTls_unitytls_x509list_ref nativeCertificateChain; + struct X509ChainPolicy *policy; + struct List_1_System_Security_Cryptography_X509Certificates_X509ChainStatus_ *chainStatusList; + bool reverseOrder; +}; + +struct X509ChainImplUnityTls { + struct X509ChainImplUnityTls__Class *klass; + MonitorData *monitor; + struct X509ChainImplUnityTls__Fields fields; +}; + +struct __declspec(align(8)) X509ChainElementCollection__Fields { + struct ArrayList *_list; +}; + +struct X509ChainElementCollection { + struct X509ChainElementCollection__Class *klass; + MonitorData *monitor; + struct X509ChainElementCollection__Fields fields; +}; + +#if defined(_CPLUSPLUS_) +enum class X509RevocationFlag__Enum : int32_t { + EndCertificateOnly = 0x00000000, + EntireChain = 0x00000001, + ExcludeRoot = 0x00000002, +}; + +#else +enum X509RevocationFlag__Enum { + X509RevocationFlag__Enum_EndCertificateOnly = 0x00000000, + X509RevocationFlag__Enum_EntireChain = 0x00000001, + X509RevocationFlag__Enum_ExcludeRoot = 0x00000002, +}; + +#endif +struct X509RevocationFlag__Enum__Boxed { + struct X509RevocationFlag__Enum__Class *klass; + MonitorData *monitor; + #if defined(_CPLUSPLUS_) + X509RevocationFlag__Enum value; + #else + int32_t value; + #endif +}; + +#if defined(_CPLUSPLUS_) +enum class X509RevocationMode__Enum : int32_t { + NoCheck = 0x00000000, + Online = 0x00000001, + Offline = 0x00000002, +}; + +#else +enum X509RevocationMode__Enum { + X509RevocationMode__Enum_NoCheck = 0x00000000, + X509RevocationMode__Enum_Online = 0x00000001, + X509RevocationMode__Enum_Offline = 0x00000002, +}; + +#endif +struct X509RevocationMode__Enum__Boxed { + struct X509RevocationMode__Enum__Class *klass; + MonitorData *monitor; + #if defined(_CPLUSPLUS_) + X509RevocationMode__Enum value; + #else + int32_t value; + #endif +}; + +#if defined(_CPLUSPLUS_) +enum class X509VerificationFlags__Enum : int32_t { + NoFlag = 0x00000000, + IgnoreNotTimeValid = 0x00000001, + IgnoreCtlNotTimeValid = 0x00000002, + IgnoreNotTimeNested = 0x00000004, + IgnoreInvalidBasicConstraints = 0x00000008, + AllowUnknownCertificateAuthority = 0x00000010, + IgnoreWrongUsage = 0x00000020, + IgnoreInvalidName = 0x00000040, + IgnoreInvalidPolicy = 0x00000080, + IgnoreEndRevocationUnknown = 0x00000100, + IgnoreCtlSignerRevocationUnknown = 0x00000200, + IgnoreCertificateAuthorityRevocationUnknown = 0x00000400, + IgnoreRootRevocationUnknown = 0x00000800, + AllFlags = 0x00000fff, +}; + +#else +enum X509VerificationFlags__Enum { + X509VerificationFlags__Enum_NoFlag = 0x00000000, + X509VerificationFlags__Enum_IgnoreNotTimeValid = 0x00000001, + X509VerificationFlags__Enum_IgnoreCtlNotTimeValid = 0x00000002, + X509VerificationFlags__Enum_IgnoreNotTimeNested = 0x00000004, + X509VerificationFlags__Enum_IgnoreInvalidBasicConstraints = 0x00000008, + X509VerificationFlags__Enum_AllowUnknownCertificateAuthority = 0x00000010, + X509VerificationFlags__Enum_IgnoreWrongUsage = 0x00000020, + X509VerificationFlags__Enum_IgnoreInvalidName = 0x00000040, + X509VerificationFlags__Enum_IgnoreInvalidPolicy = 0x00000080, + X509VerificationFlags__Enum_IgnoreEndRevocationUnknown = 0x00000100, + X509VerificationFlags__Enum_IgnoreCtlSignerRevocationUnknown = 0x00000200, + X509VerificationFlags__Enum_IgnoreCertificateAuthorityRevocationUnknown = 0x00000400, + X509VerificationFlags__Enum_IgnoreRootRevocationUnknown = 0x00000800, + X509VerificationFlags__Enum_AllFlags = 0x00000fff, +}; + +#endif +struct X509VerificationFlags__Enum__Boxed { + struct X509VerificationFlags__Enum__Class *klass; + MonitorData *monitor; + #if defined(_CPLUSPLUS_) + X509VerificationFlags__Enum value; + #else + int32_t value; + #endif +}; + +struct __declspec(align(8)) X509ChainPolicy__Fields { + struct OidCollection *apps; + struct OidCollection *cert; + struct X509CertificateCollection *store; + struct X509Certificate2Collection *store2; + #if defined(_CPLUSPLUS_) + X509RevocationFlag__Enum rflag; + #else + int32_t rflag; + #endif + #if defined(_CPLUSPLUS_) + X509RevocationMode__Enum mode; + #else + int32_t mode; + #endif + struct TimeSpan timeout; + #if defined(_CPLUSPLUS_) + X509VerificationFlags__Enum vflags; + #else + int32_t vflags; + #endif + struct DateTime vtime; +}; + +struct X509ChainPolicy { + struct X509ChainPolicy__Class *klass; + MonitorData *monitor; + struct X509ChainPolicy__Fields fields; +}; + +struct __declspec(align(8)) OidCollection__Fields { + struct List_1_System_Security_Cryptography_Oid_ *_list; +}; + +struct OidCollection { + struct OidCollection__Class *klass; + MonitorData *monitor; + struct OidCollection__Fields fields; +}; + +struct __declspec(align(8)) List_1_System_Security_Cryptography_Oid___Fields { + struct Oid__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_System_Security_Cryptography_Oid_ { + struct List_1_System_Security_Cryptography_Oid___Class *klass; + MonitorData *monitor; + struct List_1_System_Security_Cryptography_Oid___Fields fields; +}; + +struct Oid__Array { + struct Oid__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Oid *vector[32]; +}; + +struct IEnumerator_1_System_Security_Cryptography_Oid_ { + struct IEnumerator_1_System_Security_Cryptography_Oid___Class *klass; + MonitorData *monitor; +}; + +struct X509CertificateCollection__Fields { + struct CollectionBase__Fields _; +}; + +struct X509CertificateCollection { + struct X509CertificateCollection__Class *klass; + MonitorData *monitor; + struct X509CertificateCollection__Fields fields; +}; + +struct X509Certificate2Collection__Fields { + struct X509CertificateCollection__Fields _; +}; + +struct X509Certificate2Collection { + struct X509Certificate2Collection__Class *klass; + MonitorData *monitor; + struct X509Certificate2Collection__Fields fields; +}; + +#if defined(_CPLUSPLUS_) +enum class X509ChainStatusFlags__Enum : int32_t { + NoError = 0x00000000, + NotTimeValid = 0x00000001, + NotTimeNested = 0x00000002, + Revoked = 0x00000004, + NotSignatureValid = 0x00000008, + NotValidForUsage = 0x00000010, + UntrustedRoot = 0x00000020, + RevocationStatusUnknown = 0x00000040, + Cyclic = 0x00000080, + InvalidExtension = 0x00000100, + InvalidPolicyConstraints = 0x00000200, + InvalidBasicConstraints = 0x00000400, + InvalidNameConstraints = 0x00000800, + HasNotSupportedNameConstraint = 0x00001000, + HasNotDefinedNameConstraint = 0x00002000, + HasNotPermittedNameConstraint = 0x00004000, + HasExcludedNameConstraint = 0x00008000, + PartialChain = 0x00010000, + CtlNotTimeValid = 0x00020000, + CtlNotSignatureValid = 0x00040000, + CtlNotValidForUsage = 0x00080000, + OfflineRevocation = 0x01000000, + NoIssuanceChainPolicy = 0x02000000, + ExplicitDistrust = 0x04000000, + HasNotSupportedCriticalExtension = 0x08000000, + HasWeakSignature = 0x00100000, +}; + +#else +enum X509ChainStatusFlags__Enum { + X509ChainStatusFlags__Enum_NoError = 0x00000000, + X509ChainStatusFlags__Enum_NotTimeValid = 0x00000001, + X509ChainStatusFlags__Enum_NotTimeNested = 0x00000002, + X509ChainStatusFlags__Enum_Revoked = 0x00000004, + X509ChainStatusFlags__Enum_NotSignatureValid = 0x00000008, + X509ChainStatusFlags__Enum_NotValidForUsage = 0x00000010, + X509ChainStatusFlags__Enum_UntrustedRoot = 0x00000020, + X509ChainStatusFlags__Enum_RevocationStatusUnknown = 0x00000040, + X509ChainStatusFlags__Enum_Cyclic = 0x00000080, + X509ChainStatusFlags__Enum_InvalidExtension = 0x00000100, + X509ChainStatusFlags__Enum_InvalidPolicyConstraints = 0x00000200, + X509ChainStatusFlags__Enum_InvalidBasicConstraints = 0x00000400, + X509ChainStatusFlags__Enum_InvalidNameConstraints = 0x00000800, + X509ChainStatusFlags__Enum_HasNotSupportedNameConstraint = 0x00001000, + X509ChainStatusFlags__Enum_HasNotDefinedNameConstraint = 0x00002000, + X509ChainStatusFlags__Enum_HasNotPermittedNameConstraint = 0x00004000, + X509ChainStatusFlags__Enum_HasExcludedNameConstraint = 0x00008000, + X509ChainStatusFlags__Enum_PartialChain = 0x00010000, + X509ChainStatusFlags__Enum_CtlNotTimeValid = 0x00020000, + X509ChainStatusFlags__Enum_CtlNotSignatureValid = 0x00040000, + X509ChainStatusFlags__Enum_CtlNotValidForUsage = 0x00080000, + X509ChainStatusFlags__Enum_OfflineRevocation = 0x01000000, + X509ChainStatusFlags__Enum_NoIssuanceChainPolicy = 0x02000000, + X509ChainStatusFlags__Enum_ExplicitDistrust = 0x04000000, + X509ChainStatusFlags__Enum_HasNotSupportedCriticalExtension = 0x08000000, + X509ChainStatusFlags__Enum_HasWeakSignature = 0x00100000, +}; + +#endif +struct X509ChainStatusFlags__Enum__Boxed { + struct X509ChainStatusFlags__Enum__Class *klass; + MonitorData *monitor; + #if defined(_CPLUSPLUS_) + X509ChainStatusFlags__Enum value; + #else + int32_t value; + #endif +}; + +struct X509ChainStatus { + #if defined(_CPLUSPLUS_) + X509ChainStatusFlags__Enum status; + #else + int32_t status; + #endif + struct String *info; +}; + +struct X509ChainStatus__Boxed { + struct X509ChainStatus__Class *klass; + MonitorData *monitor; + struct X509ChainStatus fields; +}; + +struct __declspec(align(8)) List_1_System_Security_Cryptography_X509Certificates_X509ChainStatus___Fields { + struct X509ChainStatus__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_System_Security_Cryptography_X509Certificates_X509ChainStatus_ { + struct List_1_System_Security_Cryptography_X509Certificates_X509ChainStatus___Class *klass; + MonitorData *monitor; + struct List_1_System_Security_Cryptography_X509Certificates_X509ChainStatus___Fields fields; +}; + +struct X509ChainStatus__Array { + struct X509ChainStatus__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct X509ChainStatus vector[32]; +}; + +struct IEnumerator_1_System_Security_Cryptography_X509Certificates_X509ChainStatus_ { + struct IEnumerator_1_System_Security_Cryptography_X509Certificates_X509ChainStatus___Class *klass; + MonitorData *monitor; +}; + +#if defined(_CPLUSPLUS_) +enum class MonoSslPolicyErrors__Enum : int32_t { + None = 0x00000000, + RemoteCertificateNotAvailable = 0x00000001, + RemoteCertificateNameMismatch = 0x00000002, + RemoteCertificateChainErrors = 0x00000004, +}; + +#else +enum MonoSslPolicyErrors__Enum { + MonoSslPolicyErrors__Enum_None = 0x00000000, + MonoSslPolicyErrors__Enum_RemoteCertificateNotAvailable = 0x00000001, + MonoSslPolicyErrors__Enum_RemoteCertificateNameMismatch = 0x00000002, + MonoSslPolicyErrors__Enum_RemoteCertificateChainErrors = 0x00000004, +}; + +#endif +struct MonoSslPolicyErrors__Enum__Boxed { + struct MonoSslPolicyErrors__Enum__Class *klass; + MonitorData *monitor; + #if defined(_CPLUSPLUS_) + MonoSslPolicyErrors__Enum value; + #else + int32_t value; + #endif +}; + +struct MonoLocalCertificateSelectionCallback__Fields { + struct MulticastDelegate__Fields _; +}; + +struct MonoLocalCertificateSelectionCallback { + struct MonoLocalCertificateSelectionCallback__Class *klass; + MonitorData *monitor; + struct MonoLocalCertificateSelectionCallback__Fields fields; +}; + struct CipherSuiteCode__Enum__Array { struct CipherSuiteCode__Enum__Array__Class *klass; MonitorData *monitor; @@ -403100,6 +406995,19 @@ struct IEnumerator_1_System_Net_WebOperation_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_System_Net_ServicePointScheduler_ConnectionGroup_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct ServicePointScheduler_ConnectionGroup *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_System_Net_ServicePointScheduler_ConnectionGroup___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_System_Net_ServicePointScheduler_ConnectionGroup___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_System_Net_ServicePointScheduler_ConnectionGroup_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_System_Net_ServicePointScheduler_ConnectionGroup___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_System_Net_ServicePointScheduler_ConnectionGroup___Array *_entries; @@ -403119,19 +407027,6 @@ struct Dictionary_2_System_String_System_Net_ServicePointScheduler_ConnectionGro struct Dictionary_2_System_String_System_Net_ServicePointScheduler_ConnectionGroup___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_System_Net_ServicePointScheduler_ConnectionGroup_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct ServicePointScheduler_ConnectionGroup *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_System_Net_ServicePointScheduler_ConnectionGroup___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_System_Net_ServicePointScheduler_ConnectionGroup___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_System_Net_ServicePointScheduler_ConnectionGroup_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_String_System_Net_ServicePointScheduler_ConnectionGroup___Array { struct Dictionary_2_TKey_TValue_Entry_System_String_System_Net_ServicePointScheduler_ConnectionGroup___Array__Class *klass; MonitorData *monitor; @@ -403597,6 +407492,16 @@ struct SslClientAuthenticationOptions { struct SslClientAuthenticationOptions__Fields fields; }; +struct SslApplicationProtocol { + struct ReadOnlyMemory_1_Byte_ _readOnlyProtocol; +}; + +struct SslApplicationProtocol__Boxed { + struct SslApplicationProtocol__Class *klass; + MonitorData *monitor; + struct SslApplicationProtocol fields; +}; + struct __declspec(align(8)) List_1_System_Net_Security_SslApplicationProtocol___Fields { struct SslApplicationProtocol__Array *_items; int32_t _size; @@ -403610,16 +407515,6 @@ struct List_1_System_Net_Security_SslApplicationProtocol_ { struct List_1_System_Net_Security_SslApplicationProtocol___Fields fields; }; -struct SslApplicationProtocol { - struct ReadOnlyMemory_1_Byte_ _readOnlyProtocol; -}; - -struct SslApplicationProtocol__Boxed { - struct SslApplicationProtocol__Class *klass; - MonitorData *monitor; - struct SslApplicationProtocol fields; -}; - struct SslApplicationProtocol__Array { struct SslApplicationProtocol__Array__Class *klass; MonitorData *monitor; @@ -403633,6 +407528,33 @@ struct IEnumerator_1_System_Net_Security_SslApplicationProtocol_ { MonitorData *monitor; }; +struct UnityTls_unitytls_tlsctx { +}; + +struct UnityTls_unitytls_tlsctx__Boxed { + struct UnityTls_unitytls_tlsctx__Class *klass; + MonitorData *monitor; + struct UnityTls_unitytls_tlsctx fields; +}; + +struct UnityTls_unitytls_x509list { +}; + +struct UnityTls_unitytls_x509list__Boxed { + struct UnityTls_unitytls_x509list__Class *klass; + MonitorData *monitor; + struct UnityTls_unitytls_x509list fields; +}; + +struct UnityTls_unitytls_key { +}; + +struct UnityTls_unitytls_key__Boxed { + struct UnityTls_unitytls_key__Class *klass; + MonitorData *monitor; + struct UnityTls_unitytls_key fields; +}; + struct UnityTlsContext__Fields { struct MobileTlsContext__Fields _; struct UnityTls_unitytls_tlsctx *tlsContext; @@ -403661,43 +407583,16 @@ struct UnityTlsContext { struct UnityTlsContext__Fields fields; }; -struct UnityTls_unitytls_tlsctx { -}; - -struct UnityTls_unitytls_tlsctx__Boxed { - struct UnityTls_unitytls_tlsctx__Class *klass; - MonitorData *monitor; - struct UnityTls_unitytls_tlsctx fields; -}; - struct UnityTls_unitytls_tlsctxPtr { struct UnityTls_unitytls_tlsctxPtr__Class *klass; MonitorData *monitor; }; -struct UnityTls_unitytls_x509list { -}; - -struct UnityTls_unitytls_x509list__Boxed { - struct UnityTls_unitytls_x509list__Class *klass; - MonitorData *monitor; - struct UnityTls_unitytls_x509list fields; -}; - struct UnityTls_unitytls_x509listPtr { struct UnityTls_unitytls_x509listPtr__Class *klass; MonitorData *monitor; }; -struct UnityTls_unitytls_key { -}; - -struct UnityTls_unitytls_key__Boxed { - struct UnityTls_unitytls_key__Class *klass; - MonitorData *monitor; - struct UnityTls_unitytls_key fields; -}; - struct UnityTls_unitytls_keyPtr { struct UnityTls_unitytls_keyPtr__Class *klass; MonitorData *monitor; @@ -408020,6 +411915,21 @@ struct ICollection_1_System_Net_ServicePointScheduler_ConnectionGroup___Class { struct ICollection_1_System_Net_ServicePointScheduler_ConnectionGroup___VTable vtable; }; +struct ServicePointScheduler_ConnectionGroup___VTable { +}; + +struct ServicePointScheduler_ConnectionGroup___StaticFields { +}; + +struct ServicePointScheduler_ConnectionGroup___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ServicePointScheduler_ConnectionGroup___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ServicePointScheduler_ConnectionGroup___VTable vtable; +}; + struct KeyValuePair_2_System_String_System_Net_ServicePointScheduler_ConnectionGroup___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -408968,6 +412878,21 @@ struct MonoTlsStream__Class { struct MonoTlsStream__VTable vtable; }; +struct X509Certificate___VTable { +}; + +struct X509Certificate___StaticFields { +}; + +struct X509Certificate___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct X509Certificate___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct X509Certificate___VTable vtable; +}; + struct Nullable_1_Mono_Security_Interface_MonoSslPolicyErrors___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -410475,6 +414400,36 @@ struct MobileAuthenticatedStream__Class { struct MobileAuthenticatedStream__VTable vtable; }; +struct X509Chain___VTable { +}; + +struct X509Chain___StaticFields { +}; + +struct X509Chain___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct X509Chain___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct X509Chain___VTable vtable; +}; + +struct SslPolicyErrors___VTable { +}; + +struct SslPolicyErrors___StaticFields { +}; + +struct SslPolicyErrors___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SslPolicyErrors___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SslPolicyErrors___VTable vtable; +}; + struct MobileTlsProvider__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -412453,6 +416408,36 @@ struct UnityTls_unitytls_interface_struct_unitytls_x509list_append_pem_t__Class struct UnityTls_unitytls_interface_struct_unitytls_x509list_append_pem_t__VTable vtable; }; +struct UnityTls_unitytls_x509listPtr___VTable { +}; + +struct UnityTls_unitytls_x509listPtr___StaticFields { +}; + +struct UnityTls_unitytls_x509listPtr___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UnityTls_unitytls_x509listPtr___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UnityTls_unitytls_x509listPtr___VTable vtable; +}; + +struct UnityTls_unitytls_keyPtr___VTable { +}; + +struct UnityTls_unitytls_keyPtr___StaticFields { +}; + +struct UnityTls_unitytls_keyPtr___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UnityTls_unitytls_keyPtr___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UnityTls_unitytls_keyPtr___VTable vtable; +}; + struct CFUrl__Fields { struct CFObject__Fields _; }; @@ -412739,6 +416724,21 @@ struct CFStreamClientContext__Class { struct CFStreamClientContext__VTable vtable; }; +struct CFStreamClientContext___VTable { +}; + +struct CFStreamClientContext___StaticFields { +}; + +struct CFStreamClientContext___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CFStreamClientContext___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CFStreamClientContext___VTable vtable; +}; + struct CFProxy__Array { struct CFProxy__Array__Class *klass; MonitorData *monitor; @@ -412830,6 +416830,21 @@ struct CFNetwork_CFWebProxy__Class { struct CFNetwork_CFWebProxy__VTable vtable; }; +struct NetworkCredential___VTable { +}; + +struct NetworkCredential___StaticFields { +}; + +struct NetworkCredential___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NetworkCredential___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NetworkCredential___VTable vtable; +}; + struct __declspec(align(8)) CFNetwork_c_DisplayClass13_0__Fields { struct CFProxy__Array *proxies; struct CFRunLoop *runLoop; @@ -413456,6 +417471,36 @@ struct ServerCertValidationCallbackWrapper__Class { struct ServerCertValidationCallbackWrapper__VTable vtable; }; +struct MonoTlsSettings___VTable { +}; + +struct MonoTlsSettings___StaticFields { +}; + +struct MonoTlsSettings___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MonoTlsSettings___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MonoTlsSettings___VTable vtable; +}; + +struct MonoSslPolicyErrors___VTable { +}; + +struct MonoSslPolicyErrors___StaticFields { +}; + +struct MonoSslPolicyErrors___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MonoSslPolicyErrors___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MonoSslPolicyErrors___VTable vtable; +}; + struct __declspec(align(8)) ChainValidationHelper_c_DisplayClass11_0__Fields { struct MonoTlsSettings *settings; }; @@ -413901,6 +417946,21 @@ struct Nullable_1_Mono_Security_Interface_TlsProtocolCode___Class { struct Nullable_1_Mono_Security_Interface_TlsProtocolCode___VTable vtable; }; +struct Nullable_1_Mono_Security_Interface_TlsProtocolCode__1__VTable { +}; + +struct Nullable_1_Mono_Security_Interface_TlsProtocolCode__1__StaticFields { +}; + +struct Nullable_1_Mono_Security_Interface_TlsProtocolCode__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Nullable_1_Mono_Security_Interface_TlsProtocolCode__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Nullable_1_Mono_Security_Interface_TlsProtocolCode__1__VTable vtable; +}; + struct MonoSslServerAuthenticationOptions__Fields { struct MonoSslAuthenticationOptions__Fields _; struct SslServerAuthenticationOptions *_Options_k__BackingField; @@ -414475,6 +418535,19 @@ struct HttpListener_ExtendedProtectionSelector { struct HttpListener_ExtendedProtectionSelector__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_Net_HttpConnection_System_Net_HttpConnection_ { + int32_t hashCode; + int32_t next; + struct HttpConnection *key; + struct HttpConnection *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Net_HttpConnection_System_Net_HttpConnection___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Net_HttpConnection_System_Net_HttpConnection___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Net_HttpConnection_System_Net_HttpConnection_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Net_HttpConnection_System_Net_HttpConnection___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Net_HttpConnection_System_Net_HttpConnection___Array *_entries; @@ -414494,19 +418567,6 @@ struct Dictionary_2_System_Net_HttpConnection_System_Net_HttpConnection_ { struct Dictionary_2_System_Net_HttpConnection_System_Net_HttpConnection___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Net_HttpConnection_System_Net_HttpConnection_ { - int32_t hashCode; - int32_t next; - struct HttpConnection *key; - struct HttpConnection *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Net_HttpConnection_System_Net_HttpConnection___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Net_HttpConnection_System_Net_HttpConnection___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Net_HttpConnection_System_Net_HttpConnection_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Net_HttpConnection_System_Net_HttpConnection___Array { struct Dictionary_2_TKey_TValue_Entry_System_Net_HttpConnection_System_Net_HttpConnection___Array__Class *klass; MonitorData *monitor; @@ -415131,6 +419191,21 @@ struct ICollection_1_System_Net_HttpConnection___Class { struct ICollection_1_System_Net_HttpConnection___VTable vtable; }; +struct HttpConnection___VTable { +}; + +struct HttpConnection___StaticFields { +}; + +struct HttpConnection___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HttpConnection___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HttpConnection___VTable vtable; +}; + struct KeyValuePair_2_System_Net_HttpConnection_System_Net_HttpConnection___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -416627,6 +420702,19 @@ struct MonoBtlsX509Store { struct MonoBtlsX509Store__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_IntPtr_Mono_Btls_MonoBtlsX509Lookup_ { + int32_t hashCode; + int32_t next; + void *key; + struct MonoBtlsX509Lookup *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_IntPtr_Mono_Btls_MonoBtlsX509Lookup___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_IntPtr_Mono_Btls_MonoBtlsX509Lookup___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_IntPtr_Mono_Btls_MonoBtlsX509Lookup_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_IntPtr_Mono_Btls_MonoBtlsX509Lookup___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_IntPtr_Mono_Btls_MonoBtlsX509Lookup___Array *_entries; @@ -416646,19 +420734,6 @@ struct Dictionary_2_System_IntPtr_Mono_Btls_MonoBtlsX509Lookup_ { struct Dictionary_2_System_IntPtr_Mono_Btls_MonoBtlsX509Lookup___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_IntPtr_Mono_Btls_MonoBtlsX509Lookup_ { - int32_t hashCode; - int32_t next; - void *key; - struct MonoBtlsX509Lookup *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_IntPtr_Mono_Btls_MonoBtlsX509Lookup___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_IntPtr_Mono_Btls_MonoBtlsX509Lookup___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_IntPtr_Mono_Btls_MonoBtlsX509Lookup_ fields; -}; - #if defined(_CPLUSPLUS_) enum class MonoBtlsX509LookupType__Enum : int32_t { UNKNOWN = 0x00000000, @@ -416703,19 +420778,6 @@ struct MonoBtlsX509Lookup { struct MonoBtlsX509Lookup__Fields fields; }; -struct __declspec(align(8)) List_1_Mono_Btls_MonoBtlsX509LookupMono___Fields { - struct MonoBtlsX509LookupMono__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Mono_Btls_MonoBtlsX509LookupMono_ { - struct List_1_Mono_Btls_MonoBtlsX509LookupMono___Class *klass; - MonitorData *monitor; - struct List_1_Mono_Btls_MonoBtlsX509LookupMono___Fields fields; -}; - struct MonoBtlsX509LookupMono__Fields { struct MonoBtlsObject__Fields _; struct GCHandle gch; @@ -416731,6 +420793,19 @@ struct MonoBtlsX509LookupMono { struct MonoBtlsX509LookupMono__Fields fields; }; +struct __declspec(align(8)) List_1_Mono_Btls_MonoBtlsX509LookupMono___Fields { + struct MonoBtlsX509LookupMono__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Mono_Btls_MonoBtlsX509LookupMono_ { + struct List_1_Mono_Btls_MonoBtlsX509LookupMono___Class *klass; + MonitorData *monitor; + struct List_1_Mono_Btls_MonoBtlsX509LookupMono___Fields fields; +}; + struct MonoBtlsX509LookupMono_BySubjectFunc__Fields { struct MulticastDelegate__Fields _; }; @@ -417646,6 +421721,21 @@ struct ICollection_1_Mono_Btls_MonoBtlsX509Lookup___Class { struct ICollection_1_Mono_Btls_MonoBtlsX509Lookup___VTable vtable; }; +struct MonoBtlsX509Lookup___VTable { +}; + +struct MonoBtlsX509Lookup___StaticFields { +}; + +struct MonoBtlsX509Lookup___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MonoBtlsX509Lookup___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MonoBtlsX509Lookup___VTable vtable; +}; + struct KeyValuePair_2_System_IntPtr_Mono_Btls_MonoBtlsX509Lookup___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -419617,6 +423707,21 @@ struct X509PalImplBtls__Class { struct X509PalImplBtls__VTable vtable; }; +struct SafeWaitHandle___VTable { +}; + +struct SafeWaitHandle___StaticFields { +}; + +struct SafeWaitHandle___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SafeWaitHandle___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SafeWaitHandle___VTable vtable; +}; + struct SafeProcessHandle__Fields { struct SafeHandleZeroOrMinusOneIsInvalid__Fields _; }; @@ -419651,6 +423756,21 @@ struct SafeProcessHandle__Class { struct SafeProcessHandle__VTable vtable; }; +struct SafeProcessHandle___VTable { +}; + +struct SafeProcessHandle___StaticFields { +}; + +struct SafeProcessHandle___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SafeProcessHandle___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SafeProcessHandle___VTable vtable; +}; + struct OidLookup_c { struct OidLookup_c__Class *klass; MonitorData *monitor; @@ -419790,19 +423910,6 @@ struct CertificateData_ReadReverseRdns_d_21 { struct CertificateData_ReadReverseRdns_d_21__Fields fields; }; -struct __declspec(align(8)) Stack_1_System_Security_Cryptography_DerSequenceReader___Fields { - struct DerSequenceReader__Array *_array; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct Stack_1_System_Security_Cryptography_DerSequenceReader_ { - struct Stack_1_System_Security_Cryptography_DerSequenceReader___Class *klass; - MonitorData *monitor; - struct Stack_1_System_Security_Cryptography_DerSequenceReader___Fields fields; -}; - struct __declspec(align(8)) DerSequenceReader__Fields { struct Byte__Array *_data; int32_t _end; @@ -419816,6 +423923,19 @@ struct DerSequenceReader { struct DerSequenceReader__Fields fields; }; +struct __declspec(align(8)) Stack_1_System_Security_Cryptography_DerSequenceReader___Fields { + struct DerSequenceReader__Array *_array; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct Stack_1_System_Security_Cryptography_DerSequenceReader_ { + struct Stack_1_System_Security_Cryptography_DerSequenceReader___Class *klass; + MonitorData *monitor; + struct Stack_1_System_Security_Cryptography_DerSequenceReader___Fields fields; +}; + struct DerSequenceReader__Array { struct DerSequenceReader__Array__Class *klass; MonitorData *monitor; @@ -420436,6 +424556,36 @@ struct UriPartial__Enum__Class { struct UriPartial__Enum__VTable vtable; }; +struct Uri_Flags___VTable { +}; + +struct Uri_Flags___StaticFields { +}; + +struct Uri_Flags___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Uri_Flags___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Uri_Flags___VTable vtable; +}; + +struct ParsingError___VTable { +}; + +struct ParsingError___StaticFields { +}; + +struct ParsingError___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ParsingError___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ParsingError___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class Uri_Check__Enum : int32_t { None = 0x00000000, @@ -420511,6 +424661,21 @@ struct Uri_Check__Enum__Class { struct Uri_Check__Enum__VTable vtable; }; +struct Uri___VTable { +}; + +struct Uri___StaticFields { +}; + +struct Uri___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Uri___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Uri___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class UnescapeMode__Enum : int32_t { CopyOnly = 0x00000000, @@ -421135,25 +425300,6 @@ struct ITypeDescriptorContext { MonitorData *monitor; }; -struct __declspec(align(8)) PropertyDescriptorCollection__Fields { - struct IDictionary *_cachedFoundProperties; - bool _cachedIgnoreCase; - struct PropertyDescriptor__Array *_properties; - struct String__Array *_namedSort; - struct IComparer *_comparer; - bool _propsOwned; - bool _needSort; - bool _readOnly; - struct Object *_internalSyncObject; - int32_t _Count_k__BackingField; -}; - -struct PropertyDescriptorCollection { - struct PropertyDescriptorCollection__Class *klass; - MonitorData *monitor; - struct PropertyDescriptorCollection__Fields fields; -}; - struct __declspec(align(8)) MemberDescriptor__Fields { struct String *name; struct String *displayName; @@ -421190,16 +425336,23 @@ struct PropertyDescriptor { struct PropertyDescriptor__Fields fields; }; -struct __declspec(align(8)) AttributeCollection__Fields { - struct Attribute__Array *_attributes; - struct AttributeCollection_AttributeEntry__Array *_foundAttributeTypes; - int32_t _index; +struct __declspec(align(8)) PropertyDescriptorCollection__Fields { + struct IDictionary *_cachedFoundProperties; + bool _cachedIgnoreCase; + struct PropertyDescriptor__Array *_properties; + struct String__Array *_namedSort; + struct IComparer *_comparer; + bool _propsOwned; + bool _needSort; + bool _readOnly; + struct Object *_internalSyncObject; + int32_t _Count_k__BackingField; }; -struct AttributeCollection { - struct AttributeCollection__Class *klass; +struct PropertyDescriptorCollection { + struct PropertyDescriptorCollection__Class *klass; MonitorData *monitor; - struct AttributeCollection__Fields fields; + struct PropertyDescriptorCollection__Fields fields; }; struct AttributeCollection_AttributeEntry { @@ -421213,6 +425366,18 @@ struct AttributeCollection_AttributeEntry__Boxed { struct AttributeCollection_AttributeEntry fields; }; +struct __declspec(align(8)) AttributeCollection__Fields { + struct Attribute__Array *_attributes; + struct AttributeCollection_AttributeEntry__Array *_foundAttributeTypes; + int32_t _index; +}; + +struct AttributeCollection { + struct AttributeCollection__Class *klass; + MonitorData *monitor; + struct AttributeCollection__Fields fields; +}; + struct AttributeCollection_AttributeEntry__Array { struct AttributeCollection_AttributeEntry__Array__Class *klass; MonitorData *monitor; @@ -421904,6 +426069,21 @@ struct SemaphoreRights__Enum__Class { struct SemaphoreRights__Enum__VTable vtable; }; +struct Semaphore___VTable { +}; + +struct Semaphore___StaticFields { +}; + +struct Semaphore___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Semaphore___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Semaphore___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class Semaphore_OpenExistingResult__Enum : int32_t { Success = 0x00000000, @@ -422344,6 +426524,21 @@ struct FORMATETC__Class { struct FORMATETC__VTable vtable; }; +struct FORMATETC___VTable { +}; + +struct FORMATETC___StaticFields { +}; + +struct FORMATETC___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct FORMATETC___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct FORMATETC___VTable vtable; +}; + struct STGMEDIUM__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -422363,6 +426558,21 @@ struct STGMEDIUM__Class { struct STGMEDIUM__VTable vtable; }; +struct STGMEDIUM___VTable { +}; + +struct STGMEDIUM___StaticFields { +}; + +struct STGMEDIUM___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct STGMEDIUM___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct STGMEDIUM___VTable vtable; +}; + struct IMoniker__VTable { VirtualInvokeData ___Stripped0_GetClassID; VirtualInvokeData ___Stripped1_IsDirty; @@ -422613,6 +426823,36 @@ struct IEnumSTATDATA__Class { struct IEnumSTATDATA__VTable vtable; }; +struct IEnumSTATDATA___VTable { +}; + +struct IEnumSTATDATA___StaticFields { +}; + +struct IEnumSTATDATA___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumSTATDATA___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumSTATDATA___VTable vtable; +}; + +struct IEnumFORMATETC___VTable { +}; + +struct IEnumFORMATETC___StaticFields { +}; + +struct IEnumFORMATETC___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumFORMATETC___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumFORMATETC___VTable vtable; +}; + struct FORMATETC__Array__VTable { }; @@ -424342,6 +428582,17 @@ struct RegexCharClass_LowerCaseMapping__Array { struct RegexCharClass_LowerCaseMapping vector[32]; }; +struct RegexCharClass_SingleRange { + uint16_t First; + uint16_t Last; +}; + +struct RegexCharClass_SingleRange__Boxed { + struct RegexCharClass_SingleRange__Class *klass; + MonitorData *monitor; + struct RegexCharClass_SingleRange fields; +}; + struct __declspec(align(8)) List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange___Fields { struct RegexCharClass_SingleRange__Array *_items; int32_t _size; @@ -424355,17 +428606,6 @@ struct List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange_ { struct List_1_System_Text_RegularExpressions_RegexCharClass_SingleRange___Fields fields; }; -struct RegexCharClass_SingleRange { - uint16_t First; - uint16_t Last; -}; - -struct RegexCharClass_SingleRange__Boxed { - struct RegexCharClass_SingleRange__Class *klass; - MonitorData *monitor; - struct RegexCharClass_SingleRange fields; -}; - struct RegexCharClass_SingleRange__Array { struct RegexCharClass_SingleRange__Array__Class *klass; MonitorData *monitor; @@ -424588,21 +428828,21 @@ struct RegexCharClass_SingleRangeComparer__Class { struct RegexCharClass_SingleRangeComparer__VTable vtable; }; -struct ValueListBuilder_1_System_Int32__1 { +struct ValueListBuilder_1_System_Int32__2 { struct Span_1_Int32_ _span; struct Int32__Array *_arrayFromPool; int32_t _pos; }; -struct ValueListBuilder_1_System_Int32__1__Boxed { - struct ValueListBuilder_1_System_Int32__1__Class *klass; +struct ValueListBuilder_1_System_Int32__2__Boxed { + struct ValueListBuilder_1_System_Int32__2__Class *klass; MonitorData *monitor; - struct ValueListBuilder_1_System_Int32__1 fields; + struct ValueListBuilder_1_System_Int32__2 fields; }; struct RegexFCD { struct List_1_System_Text_RegularExpressions_RegexFC_ *_fcStack; - struct ValueListBuilder_1_System_Int32__1 _intStack; + struct ValueListBuilder_1_System_Int32__2 _intStack; bool _skipAllChildren; bool _skipchild; bool _failed; @@ -424614,6 +428854,18 @@ struct RegexFCD__Boxed { struct RegexFCD fields; }; +struct __declspec(align(8)) RegexFC__Fields { + struct RegexCharClass *_cc; + bool _nullable; + bool _CaseInsensitive_k__BackingField; +}; + +struct RegexFC { + struct RegexFC__Class *klass; + MonitorData *monitor; + struct RegexFC__Fields fields; +}; + struct __declspec(align(8)) List_1_System_Text_RegularExpressions_RegexFC___Fields { struct RegexFC__Array *_items; int32_t _size; @@ -424627,18 +428879,6 @@ struct List_1_System_Text_RegularExpressions_RegexFC_ { struct List_1_System_Text_RegularExpressions_RegexFC___Fields fields; }; -struct __declspec(align(8)) RegexFC__Fields { - struct RegexCharClass *_cc; - bool _nullable; - bool _CaseInsensitive_k__BackingField; -}; - -struct RegexFC { - struct RegexFC__Class *klass; - MonitorData *monitor; - struct RegexFC__Fields fields; -}; - struct RegexFC__Array { struct RegexFC__Array__Class *klass; MonitorData *monitor; @@ -424753,23 +428993,23 @@ struct List_1_System_Text_RegularExpressions_RegexFC___Class { struct List_1_System_Text_RegularExpressions_RegexFC___VTable vtable; }; -struct ValueListBuilder_1_System_Int32__1__VTable { +struct ValueListBuilder_1_System_Int32__2__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; VirtualInvokeData GetHashCode; VirtualInvokeData ToString; }; -struct ValueListBuilder_1_System_Int32__1__StaticFields { +struct ValueListBuilder_1_System_Int32__2__StaticFields { }; -struct ValueListBuilder_1_System_Int32__1__Class { +struct ValueListBuilder_1_System_Int32__2__Class { Il2CppClass_0 _0; Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct ValueListBuilder_1_System_Int32__1__StaticFields *static_fields; + struct ValueListBuilder_1_System_Int32__2__StaticFields *static_fields; const Il2CppRGCTXData *rgctx_data; Il2CppClass_1 _1; - struct ValueListBuilder_1_System_Int32__1__VTable vtable; + struct ValueListBuilder_1_System_Int32__2__VTable vtable; }; struct RegexFCD__VTable { @@ -425214,8 +429454,8 @@ struct RegexParser__Class { }; struct RegexWriter { - struct ValueListBuilder_1_System_Int32__1 _emitted; - struct ValueListBuilder_1_System_Int32__1 _intStack; + struct ValueListBuilder_1_System_Int32__2 _emitted; + struct ValueListBuilder_1_System_Int32__2 _intStack; struct Dictionary_2_System_String_System_Int32_ *_stringHash; struct List_1_System_String_ *_stringTable; struct Hashtable *_caps; @@ -427874,6 +432114,21 @@ struct Process_ProcInfo__Class { struct Process_ProcInfo__VTable vtable; }; +struct Process_ProcInfo___VTable { +}; + +struct Process_ProcInfo___StaticFields { +}; + +struct Process_ProcInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Process_ProcInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Process_ProcInfo___VTable vtable; +}; + struct OrdinalCaseInsensitiveComparer { struct OrdinalCaseInsensitiveComparer__Class *klass; MonitorData *monitor; @@ -429309,6 +433564,21 @@ struct BigInteger_1__Class { struct BigInteger_1__VTable vtable; }; +struct BigInteger___VTable { +}; + +struct BigInteger___StaticFields { +}; + +struct BigInteger___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BigInteger___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BigInteger___VTable vtable; +}; + struct DerEncoder_AsnSetValueComparer { struct DerEncoder_AsnSetValueComparer__Class *klass; MonitorData *monitor; @@ -429950,6 +434220,21 @@ struct OSX509Certificates_SecTrustResult__Enum__Class { struct OSX509Certificates_SecTrustResult__Enum__VTable vtable; }; +struct OSX509Certificates_SecTrustResult___VTable { +}; + +struct OSX509Certificates_SecTrustResult___StaticFields { +}; + +struct OSX509Certificates_SecTrustResult___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct OSX509Certificates_SecTrustResult___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct OSX509Certificates_SecTrustResult___VTable vtable; +}; + struct __declspec(align(8)) X509Certificate_1__Fields { struct ASN1_1 *decoder; struct Byte__Array *m_encodedcert; @@ -431793,6 +436078,21 @@ struct SecurityPackageInfoClass__Array__Class { struct SecurityPackageInfoClass__Array__VTable vtable; }; +struct SafeFreeContextBuffer___VTable { +}; + +struct SafeFreeContextBuffer___StaticFields { +}; + +struct SafeFreeContextBuffer___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SafeFreeContextBuffer___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SafeFreeContextBuffer___VTable vtable; +}; + struct Interop_SspiCli_CredentialUse__Enum__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -431831,6 +436131,21 @@ struct Interop_SspiCli_CredentialUse__Enum__Class { struct Interop_SspiCli_CredentialUse__Enum__VTable vtable; }; +struct SafeFreeCredentials___VTable { +}; + +struct SafeFreeCredentials___StaticFields { +}; + +struct SafeFreeCredentials___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SafeFreeCredentials___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SafeFreeCredentials___VTable vtable; +}; + struct SafeDeleteContext_SECURITY__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -431879,6 +436194,21 @@ struct SafeDeleteContext__Class { struct SafeDeleteContext__VTable vtable; }; +struct SafeDeleteContext___VTable { +}; + +struct SafeDeleteContext___StaticFields { +}; + +struct SafeDeleteContext___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SafeDeleteContext___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SafeDeleteContext___VTable vtable; +}; + struct SecurityBufferType__Enum__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -431951,6 +436281,36 @@ struct SecurityBuffer__Array__Class { struct SecurityBuffer__Array__VTable vtable; }; +struct SafeFreeContextBufferChannelBinding___VTable { +}; + +struct SafeFreeContextBufferChannelBinding___StaticFields { +}; + +struct SafeFreeContextBufferChannelBinding___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SafeFreeContextBufferChannelBinding___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SafeFreeContextBufferChannelBinding___VTable vtable; +}; + +struct SafeHandle___VTable { +}; + +struct SafeHandle___StaticFields { +}; + +struct SafeHandle___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SafeHandle___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SafeHandle___VTable vtable; +}; + struct SSPIAuthType__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -432426,6 +436786,36 @@ struct CallbackClosure__Class { struct CallbackClosure__VTable vtable; }; +struct CallbackClosure___VTable { +}; + +struct CallbackClosure___StaticFields { +}; + +struct CallbackClosure___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CallbackClosure___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CallbackClosure___VTable vtable; +}; + +struct ExecutionContext___VTable { +}; + +struct ExecutionContext___StaticFields { +}; + +struct ExecutionContext___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ExecutionContext___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ExecutionContext___VTable vtable; +}; + struct ContextAwareResult_c { struct ContextAwareResult_c__Class *klass; MonitorData *monitor; @@ -433335,6 +437725,19 @@ struct TrackingValidationObjectDictionary { struct TrackingValidationObjectDictionary__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_System_Net_TrackingValidationObjectDictionary_ValidateAndParseValue_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct TrackingValidationObjectDictionary_ValidateAndParseValue *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_System_Net_TrackingValidationObjectDictionary_ValidateAndParseValue___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_System_Net_TrackingValidationObjectDictionary_ValidateAndParseValue___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_System_Net_TrackingValidationObjectDictionary_ValidateAndParseValue_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_System_Net_TrackingValidationObjectDictionary_ValidateAndParseValue___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_System_Net_TrackingValidationObjectDictionary_ValidateAndParseValue___Array *_entries; @@ -433354,19 +437757,6 @@ struct Dictionary_2_System_String_System_Net_TrackingValidationObjectDictionary_ struct Dictionary_2_System_String_System_Net_TrackingValidationObjectDictionary_ValidateAndParseValue___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_System_Net_TrackingValidationObjectDictionary_ValidateAndParseValue_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct TrackingValidationObjectDictionary_ValidateAndParseValue *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_System_Net_TrackingValidationObjectDictionary_ValidateAndParseValue___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_System_Net_TrackingValidationObjectDictionary_ValidateAndParseValue___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_System_Net_TrackingValidationObjectDictionary_ValidateAndParseValue_ fields; -}; - struct TrackingValidationObjectDictionary_ValidateAndParseValue__Fields { struct MulticastDelegate__Fields _; }; @@ -433636,6 +438026,21 @@ struct ICollection_1_System_Net_TrackingValidationObjectDictionary_ValidateAndPa struct ICollection_1_System_Net_TrackingValidationObjectDictionary_ValidateAndParseValue___VTable vtable; }; +struct TrackingValidationObjectDictionary_ValidateAndParseValue___VTable { +}; + +struct TrackingValidationObjectDictionary_ValidateAndParseValue___StaticFields { +}; + +struct TrackingValidationObjectDictionary_ValidateAndParseValue___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TrackingValidationObjectDictionary_ValidateAndParseValue___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TrackingValidationObjectDictionary_ValidateAndParseValue___VTable vtable; +}; + struct KeyValuePair_2_System_String_System_Net_TrackingValidationObjectDictionary_ValidateAndParseValue___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -433823,6 +438228,21 @@ struct HttpVersion__Class { struct HttpVersion__VTable vtable; }; +struct IPAddress___VTable { +}; + +struct IPAddress___StaticFields { +}; + +struct IPAddress___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IPAddress___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IPAddress___VTable vtable; +}; + struct IPAddress_ReadOnlyIPAddress__Fields { struct IPAddress__Fields _; }; @@ -433888,47 +438308,6 @@ struct NetworkStreamWrapper { struct NetworkStreamWrapper__Fields fields; }; -struct CommandStream__Fields { - struct NetworkStreamWrapper__Fields _; - bool _recoverableFailure; - struct WebRequest *_request; - bool _isAsync; - bool _aborted; - struct CommandStream_PipelineEntry__Array *_commands; - int32_t _index; - bool _doRead; - bool _doSend; - struct ResponseDescription *_currentResponseDescription; - struct String *_abortReason; - struct String *_buffer; - struct Encoding *_encoding; - struct Decoder *_decoder; -}; - -struct CommandStream { - struct CommandStream__Class *klass; - MonitorData *monitor; - struct CommandStream__Fields fields; -}; - -struct __declspec(align(8)) TcpClient__Fields { - struct Socket *m_ClientSocket; - bool m_Active; - struct NetworkStream *m_DataStream; - #if defined(_CPLUSPLUS_) - AddressFamily__Enum m_Family; - #else - int32_t m_Family; - #endif - bool m_CleanedUp; -}; - -struct TcpClient { - struct TcpClient__Class *klass; - MonitorData *monitor; - struct TcpClient__Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class CommandStream_PipelineEntryFlags__Enum : int32_t { UserCommand = 0x00000001, @@ -433971,6 +438350,47 @@ struct CommandStream_PipelineEntry { struct CommandStream_PipelineEntry__Fields fields; }; +struct CommandStream__Fields { + struct NetworkStreamWrapper__Fields _; + bool _recoverableFailure; + struct WebRequest *_request; + bool _isAsync; + bool _aborted; + struct CommandStream_PipelineEntry__Array *_commands; + int32_t _index; + bool _doRead; + bool _doSend; + struct ResponseDescription *_currentResponseDescription; + struct String *_abortReason; + struct String *_buffer; + struct Encoding *_encoding; + struct Decoder *_decoder; +}; + +struct CommandStream { + struct CommandStream__Class *klass; + MonitorData *monitor; + struct CommandStream__Fields fields; +}; + +struct __declspec(align(8)) TcpClient__Fields { + struct Socket *m_ClientSocket; + bool m_Active; + struct NetworkStream *m_DataStream; + #if defined(_CPLUSPLUS_) + AddressFamily__Enum m_Family; + #else + int32_t m_Family; + #endif + bool m_CleanedUp; +}; + +struct TcpClient { + struct TcpClient__Class *klass; + MonitorData *monitor; + struct TcpClient__Fields fields; +}; + struct CommandStream_PipelineEntry__Array { struct CommandStream_PipelineEntry__Array__Class *klass; MonitorData *monitor; @@ -434227,6 +438647,21 @@ struct CommandStream_PipelineInstruction__Enum__Class { struct CommandStream_PipelineInstruction__Enum__VTable vtable; }; +struct Stream___VTable { +}; + +struct Stream___StaticFields { +}; + +struct Stream___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Stream___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Stream___VTable vtable; +}; + struct CommandStream__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -436564,6 +440999,36 @@ struct WebClient__Class { struct WebClient__VTable vtable; }; +struct WebRequest___VTable { +}; + +struct WebRequest___StaticFields { +}; + +struct WebRequest___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct WebRequest___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct WebRequest___VTable vtable; +}; + +struct FileStream___VTable { +}; + +struct FileStream___StaticFields { +}; + +struct FileStream___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct FileStream___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct FileStream___VTable vtable; +}; + struct Action_3_Byte_Exception_System_ComponentModel_AsyncOperation___Fields { struct MulticastDelegate__Fields _; }; @@ -440155,6 +444620,21 @@ struct WebParseError__Class { struct WebParseError__VTable vtable; }; +struct WebParseError___VTable { +}; + +struct WebParseError___StaticFields { +}; + +struct WebParseError___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct WebParseError___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct WebParseError___VTable vtable; +}; + struct CaseInsensitiveAscii { struct CaseInsensitiveAscii__Class *klass; MonitorData *monitor; @@ -440934,6 +445414,21 @@ struct WebUtility_UrlDecoder__Class { struct WebUtility_UrlDecoder__VTable vtable; }; +struct ManualResetEvent___VTable { +}; + +struct ManualResetEvent___StaticFields { +}; + +struct ManualResetEvent___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ManualResetEvent___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ManualResetEvent___VTable vtable; +}; + struct BaseLoggingObject { struct BaseLoggingObject__Class *klass; MonitorData *monitor; @@ -442192,6 +446687,21 @@ struct FileWebResponse__Class { struct FileWebResponse__VTable vtable; }; +struct IList_1_System_String__1__VTable { +}; + +struct IList_1_System_String__1__StaticFields { +}; + +struct IList_1_System_String__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IList_1_System_String__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IList_1_System_String__1__VTable vtable; +}; + struct TraceSource_1 { struct TraceSource_1__Class *klass; MonitorData *monitor; @@ -443261,6 +447771,36 @@ struct Dns_GetHostAddressesCallback__Class { struct Dns_GetHostAddressesCallback__VTable vtable; }; +struct Socket___VTable { +}; + +struct Socket___StaticFields { +}; + +struct Socket___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Socket___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Socket___VTable vtable; +}; + +struct ListenerPrefix___VTable { +}; + +struct ListenerPrefix___StaticFields { +}; + +struct ListenerPrefix___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ListenerPrefix___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ListenerPrefix___VTable vtable; +}; + struct EndPointManager { struct EndPointManager__Class *klass; MonitorData *monitor; @@ -444727,6 +449267,21 @@ struct HttpRequestCreator__Class { struct HttpRequestCreator__VTable vtable; }; +struct TransportContext___VTable { +}; + +struct TransportContext___StaticFields { +}; + +struct TransportContext___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TransportContext___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TransportContext___VTable vtable; +}; + struct Task_1_System_Net_HttpWebResponse___Fields { struct Task__Fields _; struct HttpWebResponse *m_result; @@ -445978,6 +450533,17 @@ struct ServicePointManager { MonitorData *monitor; }; +struct KeyValuePair_2_System_Net_ServicePointManager_SPKey_System_Net_ServicePoint_ { + struct ServicePointManager_SPKey *key; + struct ServicePoint *value; +}; + +struct KeyValuePair_2_System_Net_ServicePointManager_SPKey_System_Net_ServicePoint___Boxed { + struct KeyValuePair_2_System_Net_ServicePointManager_SPKey_System_Net_ServicePoint___Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_System_Net_ServicePointManager_SPKey_System_Net_ServicePoint_ fields; +}; + struct __declspec(align(8)) ConcurrentDictionary_2_System_Net_ServicePointManager_SPKey_System_Net_ServicePoint___Fields { struct ConcurrentDictionary_2_TKey_TValue_Tables_System_Net_ServicePointManager_SPKey_System_Net_ServicePoint_ *_tables; struct IEqualityComparer_1_System_Net_ServicePointManager_SPKey_ *_comparer; @@ -445994,18 +450560,6 @@ struct ConcurrentDictionary_2_System_Net_ServicePointManager_SPKey_System_Net_Se struct ConcurrentDictionary_2_System_Net_ServicePointManager_SPKey_System_Net_ServicePoint___Fields fields; }; -struct __declspec(align(8)) ConcurrentDictionary_2_TKey_TValue_Tables_System_Net_ServicePointManager_SPKey_System_Net_ServicePoint___Fields { - struct ConcurrentDictionary_2_TKey_TValue_Node_System_Net_ServicePointManager_SPKey_System_Net_ServicePoint___Array *_buckets; - struct Object__Array *_locks; - struct Int32__Array *_countPerLock; -}; - -struct ConcurrentDictionary_2_TKey_TValue_Tables_System_Net_ServicePointManager_SPKey_System_Net_ServicePoint_ { - struct ConcurrentDictionary_2_TKey_TValue_Tables_System_Net_ServicePointManager_SPKey_System_Net_ServicePoint___Class *klass; - MonitorData *monitor; - struct ConcurrentDictionary_2_TKey_TValue_Tables_System_Net_ServicePointManager_SPKey_System_Net_ServicePoint___Fields fields; -}; - struct __declspec(align(8)) ConcurrentDictionary_2_TKey_TValue_Node_System_Net_ServicePointManager_SPKey_System_Net_ServicePoint___Fields { struct ServicePointManager_SPKey *_key; struct ServicePoint *_value; @@ -446019,6 +450573,18 @@ struct ConcurrentDictionary_2_TKey_TValue_Node_System_Net_ServicePointManager_SP struct ConcurrentDictionary_2_TKey_TValue_Node_System_Net_ServicePointManager_SPKey_System_Net_ServicePoint___Fields fields; }; +struct __declspec(align(8)) ConcurrentDictionary_2_TKey_TValue_Tables_System_Net_ServicePointManager_SPKey_System_Net_ServicePoint___Fields { + struct ConcurrentDictionary_2_TKey_TValue_Node_System_Net_ServicePointManager_SPKey_System_Net_ServicePoint___Array *_buckets; + struct Object__Array *_locks; + struct Int32__Array *_countPerLock; +}; + +struct ConcurrentDictionary_2_TKey_TValue_Tables_System_Net_ServicePointManager_SPKey_System_Net_ServicePoint_ { + struct ConcurrentDictionary_2_TKey_TValue_Tables_System_Net_ServicePointManager_SPKey_System_Net_ServicePoint___Class *klass; + MonitorData *monitor; + struct ConcurrentDictionary_2_TKey_TValue_Tables_System_Net_ServicePointManager_SPKey_System_Net_ServicePoint___Fields fields; +}; + struct ConcurrentDictionary_2_TKey_TValue_Node_System_Net_ServicePointManager_SPKey_System_Net_ServicePoint___Array { struct ConcurrentDictionary_2_TKey_TValue_Node_System_Net_ServicePointManager_SPKey_System_Net_ServicePoint___Array__Class *klass; MonitorData *monitor; @@ -446032,17 +450598,6 @@ struct IEqualityComparer_1_System_Net_ServicePointManager_SPKey_ { MonitorData *monitor; }; -struct KeyValuePair_2_System_Net_ServicePointManager_SPKey_System_Net_ServicePoint_ { - struct ServicePointManager_SPKey *key; - struct ServicePoint *value; -}; - -struct KeyValuePair_2_System_Net_ServicePointManager_SPKey_System_Net_ServicePoint___Boxed { - struct KeyValuePair_2_System_Net_ServicePointManager_SPKey_System_Net_ServicePoint___Class *klass; - MonitorData *monitor; - struct KeyValuePair_2_System_Net_ServicePointManager_SPKey_System_Net_ServicePoint_ fields; -}; - struct KeyValuePair_2_System_Net_ServicePointManager_SPKey_System_Net_ServicePoint___Array { struct KeyValuePair_2_System_Net_ServicePointManager_SPKey_System_Net_ServicePoint___Array__Class *klass; MonitorData *monitor; @@ -446270,6 +450825,21 @@ struct ICollection_1_System_Net_ServicePoint___Class { struct ICollection_1_System_Net_ServicePoint___VTable vtable; }; +struct ServicePoint___VTable { +}; + +struct ServicePoint___StaticFields { +}; + +struct ServicePoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ServicePoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ServicePoint___VTable vtable; +}; + struct IEnumerator_1_KeyValuePair_2_System_Net_ServicePointManager_SPKey_System_Net_ServicePoint___VTable { VirtualInvokeData get_Current; }; @@ -447291,6 +451861,21 @@ struct ValueTuple_2_System_Runtime_ExceptionServices_ExceptionDispatchInfo_Boole struct ValueTuple_2_System_Runtime_ExceptionServices_ExceptionDispatchInfo_Boolean___VTable vtable; }; +struct ExceptionDispatchInfo___VTable { +}; + +struct ExceptionDispatchInfo___StaticFields { +}; + +struct ExceptionDispatchInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ExceptionDispatchInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ExceptionDispatchInfo___VTable vtable; +}; + struct WebOperation_GetRequestStream_d_50 { int32_t __1__state; struct AsyncTaskMethodBuilder_1_System_IO_Stream_ __t__builder; @@ -447762,6 +452347,21 @@ struct ReadState__Enum__Class { struct ReadState__Enum__VTable vtable; }; +struct ReadState___VTable { +}; + +struct ReadState___StaticFields { +}; + +struct ReadState___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ReadState___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ReadState___VTable vtable; +}; + struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object_ { struct Task_1_System_Object_ *m_task; bool m_continueOnCapturedContext; @@ -452301,6 +456901,21 @@ struct MacNetworkChange_sockaddr_in__Class { struct MacNetworkChange_sockaddr_in__VTable vtable; }; +struct MacNetworkChange_sockaddr_in___VTable { +}; + +struct MacNetworkChange_sockaddr_in___StaticFields { +}; + +struct MacNetworkChange_sockaddr_in___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MacNetworkChange_sockaddr_in___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MacNetworkChange_sockaddr_in___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class MacNetworkChange_NetworkReachabilityFlags__Enum : int32_t { None = 0x00000000, @@ -452380,6 +456995,21 @@ struct MacNetworkChange_NetworkReachabilityFlags__Enum__Class { struct MacNetworkChange_NetworkReachabilityFlags__Enum__VTable vtable; }; +struct MacNetworkChange_NetworkReachabilityFlags___VTable { +}; + +struct MacNetworkChange_NetworkReachabilityFlags___StaticFields { +}; + +struct MacNetworkChange_NetworkReachabilityFlags___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MacNetworkChange_NetworkReachabilityFlags___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MacNetworkChange_NetworkReachabilityFlags___VTable vtable; +}; + struct MacNetworkChange_SCNetworkReachabilityCallback__Fields { struct MulticastDelegate__Fields _; }; @@ -452454,6 +457084,21 @@ struct MacNetworkChange_SCNetworkReachabilityContext__Class { struct MacNetworkChange_SCNetworkReachabilityContext__VTable vtable; }; +struct MacNetworkChange_SCNetworkReachabilityContext___VTable { +}; + +struct MacNetworkChange_SCNetworkReachabilityContext___StaticFields { +}; + +struct MacNetworkChange_SCNetworkReachabilityContext___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MacNetworkChange_SCNetworkReachabilityContext___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MacNetworkChange_SCNetworkReachabilityContext___VTable vtable; +}; + struct __declspec(align(8)) MacNetworkChange__Fields { void *handle; void *runLoopMode; @@ -453089,6 +457734,21 @@ struct Ping_cap_user_header_t__Class { struct Ping_cap_user_header_t__VTable vtable; }; +struct Ping_cap_user_header_t___VTable { +}; + +struct Ping_cap_user_header_t___StaticFields { +}; + +struct Ping_cap_user_header_t___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Ping_cap_user_header_t___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Ping_cap_user_header_t___VTable vtable; +}; + struct Ping_cap_user_data_t__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -453108,6 +457768,21 @@ struct Ping_cap_user_data_t__Class { struct Ping_cap_user_data_t__VTable vtable; }; +struct Ping_cap_user_data_t___VTable { +}; + +struct Ping_cap_user_data_t___StaticFields { +}; + +struct Ping_cap_user_data_t___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Ping_cap_user_data_t___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Ping_cap_user_data_t___VTable vtable; +}; + struct Task_1_System_Net_NetworkInformation_PingReply___Fields { struct Task__Fields _; struct PingReply *m_result; @@ -453355,19 +458030,6 @@ struct Win32_IP_ADDR_STRING__Array__Class { struct Win32_IP_ADDR_STRING__Array__VTable vtable; }; -struct __declspec(align(8)) List_1_System_Net_NetworkInformation_Win32IPGlobalProperties_Win32_MIB_TCPROW___Fields { - struct Win32IPGlobalProperties_Win32_MIB_TCPROW__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_System_Net_NetworkInformation_Win32IPGlobalProperties_Win32_MIB_TCPROW_ { - struct List_1_System_Net_NetworkInformation_Win32IPGlobalProperties_Win32_MIB_TCPROW___Class *klass; - MonitorData *monitor; - struct List_1_System_Net_NetworkInformation_Win32IPGlobalProperties_Win32_MIB_TCPROW___Fields fields; -}; - struct __declspec(align(8)) Win32IPGlobalProperties_Win32_MIB_TCPROW__Fields { #if defined(_CPLUSPLUS_) TcpState__Enum State; @@ -453386,6 +458048,19 @@ struct Win32IPGlobalProperties_Win32_MIB_TCPROW { struct Win32IPGlobalProperties_Win32_MIB_TCPROW__Fields fields; }; +struct __declspec(align(8)) List_1_System_Net_NetworkInformation_Win32IPGlobalProperties_Win32_MIB_TCPROW___Fields { + struct Win32IPGlobalProperties_Win32_MIB_TCPROW__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_System_Net_NetworkInformation_Win32IPGlobalProperties_Win32_MIB_TCPROW_ { + struct List_1_System_Net_NetworkInformation_Win32IPGlobalProperties_Win32_MIB_TCPROW___Class *klass; + MonitorData *monitor; + struct List_1_System_Net_NetworkInformation_Win32IPGlobalProperties_Win32_MIB_TCPROW___Fields fields; +}; + struct Win32IPGlobalProperties_Win32_MIB_TCPROW__Array { struct Win32IPGlobalProperties_Win32_MIB_TCPROW__Array__Class *klass; MonitorData *monitor; @@ -453399,19 +458074,6 @@ struct IEnumerator_1_System_Net_NetworkInformation_Win32IPGlobalProperties_Win32 MonitorData *monitor; }; -struct __declspec(align(8)) List_1_System_Net_NetworkInformation_Win32IPGlobalProperties_Win32_MIB_TCP6ROW___Fields { - struct Win32IPGlobalProperties_Win32_MIB_TCP6ROW__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_System_Net_NetworkInformation_Win32IPGlobalProperties_Win32_MIB_TCP6ROW_ { - struct List_1_System_Net_NetworkInformation_Win32IPGlobalProperties_Win32_MIB_TCP6ROW___Class *klass; - MonitorData *monitor; - struct List_1_System_Net_NetworkInformation_Win32IPGlobalProperties_Win32_MIB_TCP6ROW___Fields fields; -}; - struct Win32IPGlobalProperties_Win32_IN6_ADDR { struct Byte__Array *Bytes; }; @@ -453442,6 +458104,19 @@ struct Win32IPGlobalProperties_Win32_MIB_TCP6ROW { struct Win32IPGlobalProperties_Win32_MIB_TCP6ROW__Fields fields; }; +struct __declspec(align(8)) List_1_System_Net_NetworkInformation_Win32IPGlobalProperties_Win32_MIB_TCP6ROW___Fields { + struct Win32IPGlobalProperties_Win32_MIB_TCP6ROW__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_System_Net_NetworkInformation_Win32IPGlobalProperties_Win32_MIB_TCP6ROW_ { + struct List_1_System_Net_NetworkInformation_Win32IPGlobalProperties_Win32_MIB_TCP6ROW___Class *klass; + MonitorData *monitor; + struct List_1_System_Net_NetworkInformation_Win32IPGlobalProperties_Win32_MIB_TCP6ROW___Fields fields; +}; + struct Win32IPGlobalProperties_Win32_MIB_TCP6ROW__Array { struct Win32IPGlobalProperties_Win32_MIB_TCP6ROW__Array__Class *klass; MonitorData *monitor; @@ -453556,6 +458231,21 @@ struct List_1_System_Net_NetworkInformation_Win32IPGlobalProperties_Win32_MIB_TC struct List_1_System_Net_NetworkInformation_Win32IPGlobalProperties_Win32_MIB_TCPROW___VTable vtable; }; +struct List_1_System_Net_NetworkInformation_Win32IPGlobalProperties_Win32_MIB_TCPROW__1__VTable { +}; + +struct List_1_System_Net_NetworkInformation_Win32IPGlobalProperties_Win32_MIB_TCPROW__1__StaticFields { +}; + +struct List_1_System_Net_NetworkInformation_Win32IPGlobalProperties_Win32_MIB_TCPROW__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_System_Net_NetworkInformation_Win32IPGlobalProperties_Win32_MIB_TCPROW__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_System_Net_NetworkInformation_Win32IPGlobalProperties_Win32_MIB_TCPROW__1__VTable vtable; +}; + struct Win32IPGlobalProperties_Win32_IN6_ADDR__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -453676,6 +458366,51 @@ struct List_1_System_Net_NetworkInformation_Win32IPGlobalProperties_Win32_MIB_TC struct List_1_System_Net_NetworkInformation_Win32IPGlobalProperties_Win32_MIB_TCP6ROW___VTable vtable; }; +struct List_1_System_Net_NetworkInformation_Win32IPGlobalProperties_Win32_MIB_TCP6ROW__1__VTable { +}; + +struct List_1_System_Net_NetworkInformation_Win32IPGlobalProperties_Win32_MIB_TCP6ROW__1__StaticFields { +}; + +struct List_1_System_Net_NetworkInformation_Win32IPGlobalProperties_Win32_MIB_TCP6ROW__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_System_Net_NetworkInformation_Win32IPGlobalProperties_Win32_MIB_TCP6ROW__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_System_Net_NetworkInformation_Win32IPGlobalProperties_Win32_MIB_TCP6ROW__1__VTable vtable; +}; + +struct Win32_MIB_TCPSTATS___VTable { +}; + +struct Win32_MIB_TCPSTATS___StaticFields { +}; + +struct Win32_MIB_TCPSTATS___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Win32_MIB_TCPSTATS___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Win32_MIB_TCPSTATS___VTable vtable; +}; + +struct Win32_MIB_UDPSTATS___VTable { +}; + +struct Win32_MIB_UDPSTATS___StaticFields { +}; + +struct Win32_MIB_UDPSTATS___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Win32_MIB_UDPSTATS___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Win32_MIB_UDPSTATS___VTable vtable; +}; + struct Win32_MIBICMPINFO { struct Win32_MIBICMPSTATS InStats; struct Win32_MIBICMPSTATS OutStats; @@ -453706,6 +458441,21 @@ struct Win32_MIBICMPINFO__Class { struct Win32_MIBICMPINFO__VTable vtable; }; +struct Win32_MIBICMPINFO___VTable { +}; + +struct Win32_MIBICMPINFO___StaticFields { +}; + +struct Win32_MIBICMPINFO___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Win32_MIBICMPINFO___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Win32_MIBICMPINFO___VTable vtable; +}; + struct Win32_MIB_ICMP_EX { struct Win32_MIBICMPSTATS_EX InStats; struct Win32_MIBICMPSTATS_EX OutStats; @@ -453736,6 +458486,36 @@ struct Win32_MIB_ICMP_EX__Class { struct Win32_MIB_ICMP_EX__VTable vtable; }; +struct Win32_MIB_ICMP_EX___VTable { +}; + +struct Win32_MIB_ICMP_EX___StaticFields { +}; + +struct Win32_MIB_ICMP_EX___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Win32_MIB_ICMP_EX___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Win32_MIB_ICMP_EX___VTable vtable; +}; + +struct Win32_MIB_IPSTATS___VTable { +}; + +struct Win32_MIB_IPSTATS___StaticFields { +}; + +struct Win32_MIB_IPSTATS___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Win32_MIB_IPSTATS___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Win32_MIB_IPSTATS___VTable vtable; +}; + struct __declspec(align(8)) Win32IPGlobalProperties_Win32_MIB_UDPROW__Fields { uint32_t LocalAddr; uint32_t LocalPort; @@ -453844,6 +458624,21 @@ struct Win32_IP_ADAPTER_ADDRESSES__Array__Class { struct Win32_IP_ADAPTER_ADDRESSES__Array__VTable vtable; }; +struct Win32_MIB_IFROW___VTable { +}; + +struct Win32_MIB_IFROW___StaticFields { +}; + +struct Win32_MIB_IFROW___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Win32_MIB_IFROW___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Win32_MIB_IFROW___VTable vtable; +}; + struct Win32_IP_ADAPTER_INFO { void *Next; int32_t ComboIndex; @@ -454947,6 +459742,21 @@ struct LingerOption__Class { struct LingerOption__VTable vtable; }; +struct EndPoint___VTable { +}; + +struct EndPoint___StaticFields { +}; + +struct EndPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EndPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EndPoint___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class IOControlCode__Enum : int64_t { AsyncIO = 0x000000008004667d, @@ -455496,6 +460306,21 @@ struct List_1_System_Net_Sockets_Socket___Class { struct List_1_System_Net_Sockets_Socket___VTable vtable; }; +struct Socket__1__VTable { +}; + +struct Socket__1__StaticFields { +}; + +struct Socket__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Socket__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Socket__1__VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class SelectMode__Enum : int32_t { SelectRead = 0x00000000, @@ -455559,6 +460384,36 @@ struct SelectMode__Enum__Class { struct SelectMode__Enum__VTable vtable; }; +struct IPAddress__1__VTable { +}; + +struct IPAddress__1__StaticFields { +}; + +struct IPAddress__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IPAddress__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IPAddress__1__VTable vtable; +}; + +struct SocketError___VTable { +}; + +struct SocketError___StaticFields { +}; + +struct SocketError___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SocketError___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SocketError___VTable vtable; +}; + struct Socket_WSABUF { int32_t len; void *buf; @@ -455609,6 +460464,51 @@ struct Socket_WSABUFPtr__Class { struct Socket_WSABUFPtr__VTable vtable; }; +struct SocketAddress___VTable { +}; + +struct SocketAddress___StaticFields { +}; + +struct SocketAddress___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SocketAddress___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SocketAddress___VTable vtable; +}; + +struct SocketFlags___VTable { +}; + +struct SocketFlags___StaticFields { +}; + +struct SocketFlags___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SocketFlags___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SocketFlags___VTable vtable; +}; + +struct IPPacketInformation___VTable { +}; + +struct IPPacketInformation___StaticFields { +}; + +struct IPPacketInformation___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IPPacketInformation___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IPPacketInformation___VTable vtable; +}; + struct Socket_AwaitableSocketAsyncEventArgs_c { struct Socket_AwaitableSocketAsyncEventArgs_c__Class *klass; MonitorData *monitor; @@ -456205,6 +461105,21 @@ struct Task_1_System_Net_Sockets_TcpClient___Class { struct Task_1_System_Net_Sockets_TcpClient___VTable vtable; }; +struct IPEndPoint___VTable { +}; + +struct IPEndPoint___StaticFields { +}; + +struct IPEndPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IPEndPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IPEndPoint___VTable vtable; +}; + struct UdpReceiveResult { struct Byte__Array *m_buffer; struct IPEndPoint *m_remoteEndPoint; @@ -457103,6 +462018,21 @@ struct WebSocketError__Enum__Class { struct WebSocketError__Enum__VTable vtable; }; +struct ManagedWebSocket_MessageHeader___VTable { +}; + +struct ManagedWebSocket_MessageHeader___StaticFields { +}; + +struct ManagedWebSocket_MessageHeader___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ManagedWebSocket_MessageHeader___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ManagedWebSocket_MessageHeader___VTable vtable; +}; + struct ManagedWebSocket_WebSocketReceiveResultGetter { }; @@ -459488,6 +464418,19 @@ struct QuotedPrintableStream_WriteAsyncResult__Class { struct QuotedPrintableStream_WriteAsyncResult__VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_System_TimeSpan_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct TimeSpan value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_System_TimeSpan___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_System_TimeSpan___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_System_TimeSpan_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_System_TimeSpan___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_System_TimeSpan___Array *_entries; @@ -459507,19 +464450,6 @@ struct Dictionary_2_System_String_System_TimeSpan_ { struct Dictionary_2_System_String_System_TimeSpan___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_System_TimeSpan_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct TimeSpan value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_System_TimeSpan___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_System_TimeSpan___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_System_TimeSpan_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_String_System_TimeSpan___Array { struct Dictionary_2_TKey_TValue_Entry_System_String_System_TimeSpan___Array__Class *klass; MonitorData *monitor; @@ -462130,6 +467060,21 @@ struct SecPkgContext_BindingsPtr__Class { struct SecPkgContext_BindingsPtr__VTable vtable; }; +struct ContextFlagsPal___VTable { +}; + +struct ContextFlagsPal___StaticFields { +}; + +struct ContextFlagsPal___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ContextFlagsPal___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ContextFlagsPal___VTable vtable; +}; + struct __declspec(align(8)) SslAuthenticationOptions__Fields { bool _AllowRenegotiation_k__BackingField; struct String *_TargetHost_k__BackingField; @@ -465110,18 +470055,6 @@ struct InheritanceAttribute__Class { struct InheritanceAttribute__VTable vtable; }; -struct __declspec(align(8)) PropertyTabAttribute__Fields { - struct Type__Array *_tabClasses; - struct String__Array *_tabClassNames; - struct PropertyTabScope__Enum__Array *_TabScopes_k__BackingField; -}; - -struct PropertyTabAttribute { - struct PropertyTabAttribute__Class *klass; - MonitorData *monitor; - struct PropertyTabAttribute__Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class PropertyTabScope__Enum : int32_t { Static = 0x00000000, @@ -465149,6 +470082,18 @@ struct PropertyTabScope__Enum__Boxed { #endif }; +struct __declspec(align(8)) PropertyTabAttribute__Fields { + struct Type__Array *_tabClasses; + struct String__Array *_tabClassNames; + struct PropertyTabScope__Enum__Array *_TabScopes_k__BackingField; +}; + +struct PropertyTabAttribute { + struct PropertyTabAttribute__Class *klass; + MonitorData *monitor; + struct PropertyTabAttribute__Fields fields; +}; + struct PropertyTabScope__Enum__Array { struct PropertyTabScope__Enum__Array__Class *klass; MonitorData *monitor; @@ -466216,6 +471161,21 @@ struct LicenseManager__Class { struct LicenseManager__VTable vtable; }; +struct License___VTable { +}; + +struct License___StaticFields { +}; + +struct License___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct License___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct License___VTable vtable; +}; + struct __declspec(align(8)) LicenseProviderAttribute__Fields { struct Type *_licenseProviderType; struct String *_licenseProviderName; @@ -466722,19 +471682,6 @@ struct MaskedTextProvider { struct MaskedTextProvider__Fields fields; }; -struct __declspec(align(8)) List_1_System_ComponentModel_MaskedTextProvider_CharDescriptor___Fields { - struct MaskedTextProvider_CharDescriptor__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_System_ComponentModel_MaskedTextProvider_CharDescriptor_ { - struct List_1_System_ComponentModel_MaskedTextProvider_CharDescriptor___Class *klass; - MonitorData *monitor; - struct List_1_System_ComponentModel_MaskedTextProvider_CharDescriptor___Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class MaskedTextProvider_CaseConversion__Enum : int32_t { None = 0x00000000, @@ -466810,6 +471757,19 @@ struct MaskedTextProvider_CharDescriptor { struct MaskedTextProvider_CharDescriptor__Fields fields; }; +struct __declspec(align(8)) List_1_System_ComponentModel_MaskedTextProvider_CharDescriptor___Fields { + struct MaskedTextProvider_CharDescriptor__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_System_ComponentModel_MaskedTextProvider_CharDescriptor_ { + struct List_1_System_ComponentModel_MaskedTextProvider_CharDescriptor___Class *klass; + MonitorData *monitor; + struct List_1_System_ComponentModel_MaskedTextProvider_CharDescriptor___Fields fields; +}; + struct MaskedTextProvider_CharDescriptor__Array { struct MaskedTextProvider_CharDescriptor__Array__Class *klass; MonitorData *monitor; @@ -467115,6 +472075,21 @@ struct MaskedTextResultHint__Enum__Class { struct MaskedTextResultHint__Enum__VTable vtable; }; +struct MaskedTextResultHint___VTable { +}; + +struct MaskedTextResultHint___StaticFields { +}; + +struct MaskedTextResultHint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MaskedTextResultHint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MaskedTextResultHint___VTable vtable; +}; + struct MultilineStringConverter { struct MultilineStringConverter__Class *klass; MonitorData *monitor; @@ -471583,25 +476558,6 @@ struct MemberRelationshipService { struct MemberRelationshipService__Fields fields; }; -struct __declspec(align(8)) Dictionary_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___Fields { - struct Int32__Array *_buckets; - struct Dictionary_2_TKey_TValue_Entry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___Array *_entries; - int32_t _count; - int32_t _freeList; - int32_t _freeCount; - int32_t _version; - struct IEqualityComparer_1_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ *_comparer; - struct Dictionary_2_TKey_TValue_KeyCollection_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ *_keys; - struct Dictionary_2_TKey_TValue_ValueCollection_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ *_values; - struct Object *_syncRoot; -}; - -struct Dictionary_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ { - struct Dictionary_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___Class *klass; - MonitorData *monitor; - struct Dictionary_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___Fields fields; -}; - struct MemberRelationshipService_RelationshipEntry { struct WeakReference *Owner; struct MemberDescriptor *Member; @@ -471627,6 +476583,25 @@ struct Dictionary_2_TKey_TValue_Entry_System_ComponentModel_Design_Serialization struct Dictionary_2_TKey_TValue_Entry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ fields; }; +struct __declspec(align(8)) Dictionary_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_ { + struct Dictionary_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___Class *klass; + MonitorData *monitor; + struct Dictionary_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___Fields fields; +}; + struct Dictionary_2_TKey_TValue_Entry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___Array { struct Dictionary_2_TKey_TValue_Entry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___Array__Class *klass; MonitorData *monitor; @@ -471907,6 +476882,21 @@ struct ICollection_1_System_ComponentModel_Design_Serialization_MemberRelationsh struct ICollection_1_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___VTable vtable; }; +struct MemberRelationshipService_RelationshipEntry___VTable { +}; + +struct MemberRelationshipService_RelationshipEntry___StaticFields { +}; + +struct MemberRelationshipService_RelationshipEntry___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MemberRelationshipService_RelationshipEntry___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MemberRelationshipService_RelationshipEntry___VTable vtable; +}; + struct KeyValuePair_2_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -473734,6 +478724,19 @@ struct ErrorEventArgs { struct ErrorEventArgs__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_System_IO_FileData_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct FileData *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_System_IO_FileData___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_System_IO_FileData___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_System_IO_FileData_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_System_IO_FileData___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_System_IO_FileData___Array *_entries; @@ -473753,19 +478756,6 @@ struct Dictionary_2_System_String_System_IO_FileData_ { struct Dictionary_2_System_String_System_IO_FileData___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_System_IO_FileData_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct FileData *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_System_IO_FileData___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_System_IO_FileData___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_System_IO_FileData_ fields; -}; - struct __declspec(align(8)) FileData__Fields { struct String *Directory; #if defined(_CPLUSPLUS_) @@ -474250,6 +479240,21 @@ struct ICollection_1_System_IO_FileData___Class { struct ICollection_1_System_IO_FileData___VTable vtable; }; +struct FileData___VTable { +}; + +struct FileData___StaticFields { +}; + +struct FileData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct FileData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct FileData___VTable vtable; +}; + struct KeyValuePair_2_System_String_System_IO_FileData___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -474425,6 +479430,21 @@ struct DefaultWatcher__Class { struct DefaultWatcher__VTable vtable; }; +struct IFileWatcher___VTable { +}; + +struct IFileWatcher___StaticFields { +}; + +struct IFileWatcher___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IFileWatcher___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IFileWatcher___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class FileAction__Enum : int32_t { Added = 0x00000001, @@ -474555,6 +479575,21 @@ struct FileSystemWatcher_EventType__Enum__Class { struct FileSystemWatcher_EventType__Enum__VTable vtable; }; +struct RenamedEventArgs___VTable { +}; + +struct RenamedEventArgs___StaticFields { +}; + +struct RenamedEventArgs___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RenamedEventArgs___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RenamedEventArgs___VTable vtable; +}; + struct __declspec(align(8)) FileSystemWatcher_c_DisplayClass70_0__Fields { struct FileSystemWatcher *__4__this; struct String *filename; @@ -477452,6 +482487,18 @@ struct XmlNameTable { MonitorData *monitor; }; +struct __declspec(align(8)) NameTable_Entry__Fields { + struct String *str; + int32_t hashCode; + struct NameTable_Entry *next; +}; + +struct NameTable_Entry { + struct NameTable_Entry__Class *klass; + MonitorData *monitor; + struct NameTable_Entry__Fields fields; +}; + struct __declspec(align(8)) NameTable__Fields { struct NameTable_Entry__Array *entries; int32_t count; @@ -477465,18 +482512,6 @@ struct NameTable { struct NameTable__Fields fields; }; -struct __declspec(align(8)) NameTable_Entry__Fields { - struct String *str; - int32_t hashCode; - struct NameTable_Entry *next; -}; - -struct NameTable_Entry { - struct NameTable_Entry__Class *klass; - MonitorData *monitor; - struct NameTable_Entry__Fields fields; -}; - struct NameTable_Entry__Array { struct NameTable_Entry__Array__Class *klass; MonitorData *monitor; @@ -477485,20 +482520,6 @@ struct NameTable_Entry__Array { struct NameTable_Entry *vector[32]; }; -struct __declspec(align(8)) DomNameTable__Fields { - struct XmlName__Array *entries; - int32_t count; - int32_t mask; - struct XmlDocument *ownerDocument; - struct XmlNameTable *nameTable; -}; - -struct DomNameTable { - struct DomNameTable__Class *klass; - MonitorData *monitor; - struct DomNameTable__Fields fields; -}; - struct __declspec(align(8)) XmlName__Fields { struct String *prefix; struct String *localName; @@ -477515,6 +482536,20 @@ struct XmlName { struct XmlName__Fields fields; }; +struct __declspec(align(8)) DomNameTable__Fields { + struct XmlName__Array *entries; + int32_t count; + int32_t mask; + struct XmlDocument *ownerDocument; + struct XmlNameTable *nameTable; +}; + +struct DomNameTable { + struct DomNameTable__Class *klass; + MonitorData *monitor; + struct DomNameTable__Fields fields; +}; + #if defined(_CPLUSPLUS_) enum class XmlSchemaValidity__Enum : int32_t { NotKnown = 0x00000000, @@ -477555,6 +482590,18 @@ struct XmlSchemaObject { struct XmlSchemaObject__Fields fields; }; +struct XmlAttribute__Fields { + struct XmlNode__Fields _; + struct XmlName *name; + struct XmlLinkedNode *lastChild; +}; + +struct XmlAttribute { + struct XmlAttribute__Class *klass; + MonitorData *monitor; + struct XmlAttribute__Fields fields; +}; + struct XmlSchemaAnnotated__Fields { struct XmlSchemaObject__Fields _; struct String *id; @@ -477698,18 +482745,6 @@ struct XmlSchemaObjectCollection { struct XmlSchemaObjectCollection__Fields fields; }; -struct XmlAttribute__Fields { - struct XmlNode__Fields _; - struct XmlName *name; - struct XmlLinkedNode *lastChild; -}; - -struct XmlAttribute { - struct XmlAttribute__Class *klass; - MonitorData *monitor; - struct XmlAttribute__Fields fields; -}; - struct XmlLinkedNode__Fields { struct XmlNode__Fields _; struct XmlLinkedNode *next; @@ -478120,7 +483155,7 @@ enum class XmlTypeCode__Enum : int32_t { Double = 0x00000010, Duration = 0x00000011, DateTime = 0x00000012, - Time = 0x00000013, + Time_1 = 0x00000013, Date = 0x00000014, GYearMonth = 0x00000015, GYear = 0x00000016, @@ -478179,7 +483214,7 @@ enum XmlTypeCode__Enum { XmlTypeCode__Enum_Double = 0x00000010, XmlTypeCode__Enum_Duration = 0x00000011, XmlTypeCode__Enum_DateTime = 0x00000012, - XmlTypeCode__Enum_Time = 0x00000013, + XmlTypeCode__Enum_Time_1 = 0x00000013, XmlTypeCode__Enum_Date = 0x00000014, XmlTypeCode__Enum_GYearMonth = 0x00000015, XmlTypeCode__Enum_GYear = 0x00000016, @@ -478373,6 +483408,19 @@ struct XmlSchemaObjectTable { struct XmlSchemaObjectTable__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Xml_Schema_XmlSchemaObject_ { + int32_t hashCode; + int32_t next; + struct XmlQualifiedName *key; + struct XmlSchemaObject *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Xml_Schema_XmlSchemaObject___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Xml_Schema_XmlSchemaObject___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Xml_Schema_XmlSchemaObject_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Xml_XmlQualifiedName_System_Xml_Schema_XmlSchemaObject___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Xml_Schema_XmlSchemaObject___Array *_entries; @@ -478392,19 +483440,6 @@ struct Dictionary_2_System_Xml_XmlQualifiedName_System_Xml_Schema_XmlSchemaObjec struct Dictionary_2_System_Xml_XmlQualifiedName_System_Xml_Schema_XmlSchemaObject___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Xml_Schema_XmlSchemaObject_ { - int32_t hashCode; - int32_t next; - struct XmlQualifiedName *key; - struct XmlSchemaObject *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Xml_Schema_XmlSchemaObject___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Xml_Schema_XmlSchemaObject___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Xml_Schema_XmlSchemaObject_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Xml_Schema_XmlSchemaObject___Array { struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Xml_Schema_XmlSchemaObject___Array__Class *klass; MonitorData *monitor; @@ -478508,6 +483543,17 @@ struct IEnumerable_1_System_Xml_Schema_XmlSchemaObject_ { MonitorData *monitor; }; +struct XmlSchemaObjectTable_XmlSchemaObjectEntry { + struct XmlQualifiedName *qname; + struct XmlSchemaObject *xso; +}; + +struct XmlSchemaObjectTable_XmlSchemaObjectEntry__Boxed { + struct XmlSchemaObjectTable_XmlSchemaObjectEntry__Class *klass; + MonitorData *monitor; + struct XmlSchemaObjectTable_XmlSchemaObjectEntry fields; +}; + struct __declspec(align(8)) List_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry___Fields { struct XmlSchemaObjectTable_XmlSchemaObjectEntry__Array *_items; int32_t _size; @@ -478521,17 +483567,6 @@ struct List_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry_ { struct List_1_System_Xml_Schema_XmlSchemaObjectTable_XmlSchemaObjectEntry___Fields fields; }; -struct XmlSchemaObjectTable_XmlSchemaObjectEntry { - struct XmlQualifiedName *qname; - struct XmlSchemaObject *xso; -}; - -struct XmlSchemaObjectTable_XmlSchemaObjectEntry__Boxed { - struct XmlSchemaObjectTable_XmlSchemaObjectEntry__Class *klass; - MonitorData *monitor; - struct XmlSchemaObjectTable_XmlSchemaObjectEntry fields; -}; - struct XmlSchemaObjectTable_XmlSchemaObjectEntry__Array { struct XmlSchemaObjectTable_XmlSchemaObjectEntry__Array__Class *klass; MonitorData *monitor; @@ -478598,6 +483633,62 @@ struct SchemaDeclBase { struct SchemaDeclBase__Fields fields; }; +#if defined(_CPLUSPLUS_) +enum class CompiledIdentityConstraint_ConstraintRole__Enum : int32_t { + Unique = 0x00000000, + Key = 0x00000001, + Keyref = 0x00000002, +}; + +#else +enum CompiledIdentityConstraint_ConstraintRole__Enum { + CompiledIdentityConstraint_ConstraintRole__Enum_Unique = 0x00000000, + CompiledIdentityConstraint_ConstraintRole__Enum_Key = 0x00000001, + CompiledIdentityConstraint_ConstraintRole__Enum_Keyref = 0x00000002, +}; + +#endif +struct CompiledIdentityConstraint_ConstraintRole__Enum__Boxed { + struct CompiledIdentityConstraint_ConstraintRole__Enum__Class *klass; + MonitorData *monitor; + #if defined(_CPLUSPLUS_) + CompiledIdentityConstraint_ConstraintRole__Enum value; + #else + int32_t value; + #endif +}; + +struct __declspec(align(8)) Asttree__Fields { + struct ArrayList *_fAxisArray; + struct String *_xpathexpr; + bool _isField; + struct XmlNamespaceManager *_nsmgr; +}; + +struct Asttree { + struct Asttree__Class *klass; + MonitorData *monitor; + struct Asttree__Fields fields; +}; + +struct __declspec(align(8)) CompiledIdentityConstraint__Fields { + struct XmlQualifiedName *name; + #if defined(_CPLUSPLUS_) + CompiledIdentityConstraint_ConstraintRole__Enum role; + #else + int32_t role; + #endif + struct Asttree *selector; + struct Asttree__Array *fields; + struct XmlQualifiedName *refer; +}; + +struct CompiledIdentityConstraint { + struct CompiledIdentityConstraint__Class *klass; + MonitorData *monitor; + struct CompiledIdentityConstraint__Fields fields; +}; + struct SchemaElementDecl__Fields { struct SchemaDeclBase__Fields _; struct Dictionary_2_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaAttDef_ *attdefs; @@ -478626,6 +483717,19 @@ struct SchemaElementDecl { struct SchemaElementDecl__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaAttDef_ { + int32_t hashCode; + int32_t next; + struct XmlQualifiedName *key; + struct SchemaAttDef *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaAttDef___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaAttDef___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaAttDef_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaAttDef___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaAttDef___Array *_entries; @@ -478645,19 +483749,6 @@ struct Dictionary_2_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaAttDef_ struct Dictionary_2_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaAttDef___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaAttDef_ { - int32_t hashCode; - int32_t next; - struct XmlQualifiedName *key; - struct SchemaAttDef *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaAttDef___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaAttDef___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaAttDef_ fields; -}; - #if defined(_CPLUSPLUS_) enum class SchemaAttDef_Reserve__Enum : int32_t { None = 0x00000000, @@ -478861,6 +483952,11 @@ struct IEnumerable_1_System_Xml_Schema_SchemaAttDef_ { MonitorData *monitor; }; +struct IDtdDefaultAttributeInfo { + struct IDtdDefaultAttributeInfo__Class *klass; + MonitorData *monitor; +}; + struct __declspec(align(8)) List_1_System_Xml_IDtdDefaultAttributeInfo___Fields { struct IDtdDefaultAttributeInfo__Array *_items; int32_t _size; @@ -478874,11 +483970,6 @@ struct List_1_System_Xml_IDtdDefaultAttributeInfo_ { struct List_1_System_Xml_IDtdDefaultAttributeInfo___Fields fields; }; -struct IDtdDefaultAttributeInfo { - struct IDtdDefaultAttributeInfo__Class *klass; - MonitorData *monitor; -}; - struct IDtdDefaultAttributeInfo__Array { struct IDtdDefaultAttributeInfo__Array__Class *klass; MonitorData *monitor; @@ -478892,6 +483983,19 @@ struct IEnumerator_1_System_Xml_IDtdDefaultAttributeInfo_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Xml_XmlQualifiedName_ { + int32_t hashCode; + int32_t next; + struct XmlQualifiedName *key; + struct XmlQualifiedName *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Xml_XmlQualifiedName___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Xml_XmlQualifiedName___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Xml_XmlQualifiedName_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Xml_XmlQualifiedName_System_Xml_XmlQualifiedName___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Xml_XmlQualifiedName___Array *_entries; @@ -478911,19 +484015,6 @@ struct Dictionary_2_System_Xml_XmlQualifiedName_System_Xml_XmlQualifiedName_ { struct Dictionary_2_System_Xml_XmlQualifiedName_System_Xml_XmlQualifiedName___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Xml_XmlQualifiedName_ { - int32_t hashCode; - int32_t next; - struct XmlQualifiedName *key; - struct XmlQualifiedName *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Xml_XmlQualifiedName___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Xml_XmlQualifiedName___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Xml_XmlQualifiedName_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Xml_XmlQualifiedName___Array { struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Xml_XmlQualifiedName___Array__Class *klass; MonitorData *monitor; @@ -479019,6 +484110,21 @@ struct XmlSchemaContentProcessing__Enum__Boxed { #endif }; +struct __declspec(align(8)) ConstraintStruct__Fields { + struct CompiledIdentityConstraint *constraint; + struct SelectorActiveAxis *axisSelector; + struct ArrayList *axisFields; + struct Hashtable *qualifiedTable; + struct Hashtable *keyrefTable; + int32_t tableDim; +}; + +struct ConstraintStruct { + struct ConstraintStruct__Class *klass; + MonitorData *monitor; + struct ConstraintStruct__Fields fields; +}; + struct StateUnion { int32_t State; int32_t AllElementsRequired; @@ -479032,6 +484138,17 @@ struct StateUnion__Boxed { struct StateUnion fields; }; +struct __declspec(align(8)) BitSet_1__Fields { + int32_t count; + struct UInt32__Array *bits; +}; + +struct BitSet_1 { + struct BitSet_1__Class *klass; + MonitorData *monitor; + struct BitSet_1__Fields fields; +}; + struct __declspec(align(8)) ValidationState__Fields { bool IsNill; bool IsDefault; @@ -479067,75 +484184,17 @@ struct ValidationState { struct ValidationState__Fields fields; }; -struct __declspec(align(8)) ConstraintStruct__Fields { - struct CompiledIdentityConstraint *constraint; - struct SelectorActiveAxis *axisSelector; - struct ArrayList *axisFields; - struct Hashtable *qualifiedTable; - struct Hashtable *keyrefTable; - int32_t tableDim; +struct XmlNamespaceManager_NamespaceDeclaration { + struct String *prefix; + struct String *uri; + int32_t scopeId; + int32_t previousNsIndex; }; -struct ConstraintStruct { - struct ConstraintStruct__Class *klass; +struct XmlNamespaceManager_NamespaceDeclaration__Boxed { + struct XmlNamespaceManager_NamespaceDeclaration__Class *klass; MonitorData *monitor; - struct ConstraintStruct__Fields fields; -}; - -#if defined(_CPLUSPLUS_) -enum class CompiledIdentityConstraint_ConstraintRole__Enum : int32_t { - Unique = 0x00000000, - Key = 0x00000001, - Keyref = 0x00000002, -}; - -#else -enum CompiledIdentityConstraint_ConstraintRole__Enum { - CompiledIdentityConstraint_ConstraintRole__Enum_Unique = 0x00000000, - CompiledIdentityConstraint_ConstraintRole__Enum_Key = 0x00000001, - CompiledIdentityConstraint_ConstraintRole__Enum_Keyref = 0x00000002, -}; - -#endif -struct CompiledIdentityConstraint_ConstraintRole__Enum__Boxed { - struct CompiledIdentityConstraint_ConstraintRole__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - CompiledIdentityConstraint_ConstraintRole__Enum value; - #else - int32_t value; - #endif -}; - -struct __declspec(align(8)) CompiledIdentityConstraint__Fields { - struct XmlQualifiedName *name; - #if defined(_CPLUSPLUS_) - CompiledIdentityConstraint_ConstraintRole__Enum role; - #else - int32_t role; - #endif - struct Asttree *selector; - struct Asttree__Array *fields; - struct XmlQualifiedName *refer; -}; - -struct CompiledIdentityConstraint { - struct CompiledIdentityConstraint__Class *klass; - MonitorData *monitor; - struct CompiledIdentityConstraint__Fields fields; -}; - -struct __declspec(align(8)) Asttree__Fields { - struct ArrayList *_fAxisArray; - struct String *_xpathexpr; - bool _isField; - struct XmlNamespaceManager *_nsmgr; -}; - -struct Asttree { - struct Asttree__Class *klass; - MonitorData *monitor; - struct Asttree__Fields fields; + struct XmlNamespaceManager_NamespaceDeclaration fields; }; struct __declspec(align(8)) XmlNamespaceManager__Fields { @@ -479155,19 +484214,6 @@ struct XmlNamespaceManager { struct XmlNamespaceManager__Fields fields; }; -struct XmlNamespaceManager_NamespaceDeclaration { - struct String *prefix; - struct String *uri; - int32_t scopeId; - int32_t previousNsIndex; -}; - -struct XmlNamespaceManager_NamespaceDeclaration__Boxed { - struct XmlNamespaceManager_NamespaceDeclaration__Class *klass; - MonitorData *monitor; - struct XmlNamespaceManager_NamespaceDeclaration fields; -}; - struct XmlNamespaceManager_NamespaceDeclaration__Array { struct XmlNamespaceManager_NamespaceDeclaration__Array__Class *klass; MonitorData *monitor; @@ -479243,17 +484289,6 @@ struct ConstraintStruct__Array { struct ConstraintStruct *vector[32]; }; -struct __declspec(align(8)) BitSet_1__Fields { - int32_t count; - struct UInt32__Array *bits; -}; - -struct BitSet_1 { - struct BitSet_1__Class *klass; - MonitorData *monitor; - struct BitSet_1__Fields fields; -}; - struct BitSet_1__Array { struct BitSet_1__Array__Class *klass; MonitorData *monitor; @@ -479262,6 +484297,17 @@ struct BitSet_1__Array { struct BitSet_1 *vector[32]; }; +struct RangePositionInfo { + struct BitSet_1 *curpos; + struct Decimal__Array *rangeCounters; +}; + +struct RangePositionInfo__Boxed { + struct RangePositionInfo__Class *klass; + MonitorData *monitor; + struct RangePositionInfo fields; +}; + struct __declspec(align(8)) List_1_System_Xml_Schema_RangePositionInfo___Fields { struct RangePositionInfo__Array *_items; int32_t _size; @@ -479275,17 +484321,6 @@ struct List_1_System_Xml_Schema_RangePositionInfo_ { struct List_1_System_Xml_Schema_RangePositionInfo___Fields fields; }; -struct RangePositionInfo { - struct BitSet_1 *curpos; - struct Decimal__Array *rangeCounters; -}; - -struct RangePositionInfo__Boxed { - struct RangePositionInfo__Class *klass; - MonitorData *monitor; - struct RangePositionInfo fields; -}; - struct RangePositionInfo__Array { struct RangePositionInfo__Array__Class *klass; MonitorData *monitor; @@ -479597,6 +484632,19 @@ struct SchemaInfo { struct SchemaInfo__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaElementDecl_ { + int32_t hashCode; + int32_t next; + struct XmlQualifiedName *key; + struct SchemaElementDecl *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaElementDecl___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaElementDecl___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaElementDecl_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaElementDecl___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaElementDecl___Array *_entries; @@ -479616,19 +484664,6 @@ struct Dictionary_2_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaElementD struct Dictionary_2_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaElementDecl___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaElementDecl_ { - int32_t hashCode; - int32_t next; - struct XmlQualifiedName *key; - struct SchemaElementDecl *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaElementDecl___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaElementDecl___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaElementDecl_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaElementDecl___Array { struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaElementDecl___Array__Class *klass; MonitorData *monitor; @@ -479704,6 +484739,19 @@ struct IEnumerable_1_System_Xml_Schema_SchemaElementDecl_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaEntity_ { + int32_t hashCode; + int32_t next; + struct XmlQualifiedName *key; + struct SchemaEntity *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaEntity___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaEntity___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaEntity_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaEntity___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaEntity___Array *_entries; @@ -479723,19 +484771,6 @@ struct Dictionary_2_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaEntity_ struct Dictionary_2_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaEntity___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaEntity_ { - int32_t hashCode; - int32_t next; - struct XmlQualifiedName *key; - struct SchemaEntity *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaEntity___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaEntity___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaEntity_ fields; -}; - struct __declspec(align(8)) SchemaEntity__Fields { struct XmlQualifiedName *qname; struct String *url; @@ -479833,6 +484868,19 @@ struct IEnumerable_1_System_Xml_Schema_SchemaEntity_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_System_Boolean_ { + int32_t hashCode; + int32_t next; + struct String *key; + bool value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_System_Boolean___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_System_Boolean___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_System_Boolean_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_System_Boolean___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_System_Boolean___Array *_entries; @@ -479852,19 +484900,6 @@ struct Dictionary_2_System_String_System_Boolean_ { struct Dictionary_2_System_String_System_Boolean___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_System_Boolean_ { - int32_t hashCode; - int32_t next; - struct String *key; - bool value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_System_Boolean___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_System_Boolean___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_System_Boolean_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_String_System_Boolean___Array { struct Dictionary_2_TKey_TValue_Entry_System_String_System_Boolean___Array__Class *klass; MonitorData *monitor; @@ -479917,6 +484952,19 @@ struct IEnumerator_1_KeyValuePair_2_System_String_System_Boolean_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_System_Xml_Schema_SchemaNotation_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct SchemaNotation *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_System_Xml_Schema_SchemaNotation___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_System_Xml_Schema_SchemaNotation___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_System_Xml_Schema_SchemaNotation_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_System_Xml_Schema_SchemaNotation___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_System_Xml_Schema_SchemaNotation___Array *_entries; @@ -479936,19 +484984,6 @@ struct Dictionary_2_System_String_System_Xml_Schema_SchemaNotation_ { struct Dictionary_2_System_String_System_Xml_Schema_SchemaNotation___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_System_Xml_Schema_SchemaNotation_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct SchemaNotation *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_System_Xml_Schema_SchemaNotation___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_System_Xml_Schema_SchemaNotation___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_System_Xml_Schema_SchemaNotation_ fields; -}; - struct __declspec(align(8)) SchemaNotation__Fields { struct XmlQualifiedName *name; struct String *systemLiteral; @@ -482350,6 +487385,21 @@ struct ICollection_1_System_Xml_Schema_XmlSchemaObject___Class { struct ICollection_1_System_Xml_Schema_XmlSchemaObject___VTable vtable; }; +struct XmlSchemaObject___VTable { +}; + +struct XmlSchemaObject___StaticFields { +}; + +struct XmlSchemaObject___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct XmlSchemaObject___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct XmlSchemaObject___VTable vtable; +}; + struct KeyValuePair_2_System_Xml_XmlQualifiedName_System_Xml_Schema_XmlSchemaObject___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -483252,6 +488302,21 @@ struct ICollection_1_System_Xml_Schema_SchemaAttDef___Class { struct ICollection_1_System_Xml_Schema_SchemaAttDef___VTable vtable; }; +struct SchemaAttDef___VTable { +}; + +struct SchemaAttDef___StaticFields { +}; + +struct SchemaAttDef___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SchemaAttDef___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SchemaAttDef___VTable vtable; +}; + struct KeyValuePair_2_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaAttDef___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -483578,6 +488643,21 @@ struct Dictionary_2_TKey_TValue_ValueCollection_System_Xml_XmlQualifiedName_Syst struct Dictionary_2_TKey_TValue_ValueCollection_System_Xml_XmlQualifiedName_System_Xml_XmlQualifiedName___VTable vtable; }; +struct XmlQualifiedName___VTable { +}; + +struct XmlQualifiedName___StaticFields { +}; + +struct XmlQualifiedName___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct XmlQualifiedName___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct XmlQualifiedName___VTable vtable; +}; + struct KeyValuePair_2_System_Xml_XmlQualifiedName_System_Xml_XmlQualifiedName___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -484495,6 +489575,21 @@ struct ICollection_1_System_Xml_Schema_SchemaElementDecl___Class { struct ICollection_1_System_Xml_Schema_SchemaElementDecl___VTable vtable; }; +struct SchemaElementDecl___VTable { +}; + +struct SchemaElementDecl___StaticFields { +}; + +struct SchemaElementDecl___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SchemaElementDecl___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SchemaElementDecl___VTable vtable; +}; + struct KeyValuePair_2_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaElementDecl___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -484804,6 +489899,21 @@ struct ICollection_1_System_Xml_Schema_SchemaEntity___Class { struct ICollection_1_System_Xml_Schema_SchemaEntity___VTable vtable; }; +struct SchemaEntity___VTable { +}; + +struct SchemaEntity___StaticFields { +}; + +struct SchemaEntity___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SchemaEntity___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SchemaEntity___VTable vtable; +}; + struct KeyValuePair_2_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaEntity___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -485348,6 +490458,21 @@ struct ICollection_1_System_Xml_Schema_SchemaNotation___Class { struct ICollection_1_System_Xml_Schema_SchemaNotation___VTable vtable; }; +struct SchemaNotation___VTable { +}; + +struct SchemaNotation___StaticFields { +}; + +struct SchemaNotation___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SchemaNotation___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SchemaNotation___VTable vtable; +}; + struct KeyValuePair_2_System_String_System_Xml_Schema_SchemaNotation___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -493937,6 +499062,49 @@ struct XmlTextReaderImpl_ParsingFunction__Enum__Boxed { #endif }; +struct LineInfo { + int32_t lineNo; + int32_t linePos; +}; + +struct LineInfo__Boxed { + struct LineInfo__Class *klass; + MonitorData *monitor; + struct LineInfo fields; +}; + +struct __declspec(align(8)) XmlTextReaderImpl_NodeData__Fields { + #if defined(_CPLUSPLUS_) + XmlNodeType__Enum type; + #else + int32_t type; + #endif + struct String *localName; + struct String *prefix; + struct String *ns; + struct String *nameWPrefix; + struct String *value; + struct Char__Array *chars; + int32_t valueStartPos; + int32_t valueLength; + struct LineInfo lineInfo; + struct LineInfo lineInfo2; + uint16_t quoteChar; + int32_t depth; + bool isEmptyOrDefault; + int32_t entityId; + bool xmlContextPushed; + struct XmlTextReaderImpl_NodeData *nextAttrValueChunk; + struct Object *schemaType; + struct Object *typedValue; +}; + +struct XmlTextReaderImpl_NodeData { + struct XmlTextReaderImpl_NodeData__Class *klass; + MonitorData *monitor; + struct XmlTextReaderImpl_NodeData__Fields fields; +}; + #if defined(_CPLUSPLUS_) enum class WhitespaceHandling__Enum : int32_t { All = 0x00000000, @@ -494034,17 +499202,6 @@ struct XmlTextReaderImpl_IncrementalReadState__Enum__Boxed { #endif }; -struct LineInfo { - int32_t lineNo; - int32_t linePos; -}; - -struct LineInfo__Boxed { - struct LineInfo__Class *klass; - MonitorData *monitor; - struct LineInfo fields; -}; - #if defined(_CPLUSPLUS_) enum class XmlTextReaderImpl_ParsingMode__Enum : int32_t { Full = 0x00000000, @@ -494294,38 +499451,6 @@ struct XmlParserContext { struct XmlParserContext__Fields fields; }; -struct __declspec(align(8)) XmlTextReaderImpl_NodeData__Fields { - #if defined(_CPLUSPLUS_) - XmlNodeType__Enum type; - #else - int32_t type; - #endif - struct String *localName; - struct String *prefix; - struct String *ns; - struct String *nameWPrefix; - struct String *value; - struct Char__Array *chars; - int32_t valueStartPos; - int32_t valueLength; - struct LineInfo lineInfo; - struct LineInfo lineInfo2; - uint16_t quoteChar; - int32_t depth; - bool isEmptyOrDefault; - int32_t entityId; - bool xmlContextPushed; - struct XmlTextReaderImpl_NodeData *nextAttrValueChunk; - struct Object *schemaType; - struct Object *typedValue; -}; - -struct XmlTextReaderImpl_NodeData { - struct XmlTextReaderImpl_NodeData__Class *klass; - MonitorData *monitor; - struct XmlTextReaderImpl_NodeData__Fields fields; -}; - struct XmlTextReaderImpl_NodeData__Array { struct XmlTextReaderImpl_NodeData__Array__Class *klass; MonitorData *monitor; @@ -494393,6 +499518,19 @@ struct XmlTextReaderImpl_OnDefaultAttributeUseDelegate { struct XmlTextReaderImpl_OnDefaultAttributeUseDelegate__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_Xml_IDtdEntityInfo_System_Xml_IDtdEntityInfo_ { + int32_t hashCode; + int32_t next; + struct IDtdEntityInfo *key; + struct IDtdEntityInfo *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Xml_IDtdEntityInfo_System_Xml_IDtdEntityInfo___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Xml_IDtdEntityInfo_System_Xml_IDtdEntityInfo___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Xml_IDtdEntityInfo_System_Xml_IDtdEntityInfo_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Xml_IDtdEntityInfo_System_Xml_IDtdEntityInfo___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Xml_IDtdEntityInfo_System_Xml_IDtdEntityInfo___Array *_entries; @@ -494412,19 +499550,6 @@ struct Dictionary_2_System_Xml_IDtdEntityInfo_System_Xml_IDtdEntityInfo_ { struct Dictionary_2_System_Xml_IDtdEntityInfo_System_Xml_IDtdEntityInfo___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Xml_IDtdEntityInfo_System_Xml_IDtdEntityInfo_ { - int32_t hashCode; - int32_t next; - struct IDtdEntityInfo *key; - struct IDtdEntityInfo *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Xml_IDtdEntityInfo_System_Xml_IDtdEntityInfo___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Xml_IDtdEntityInfo_System_Xml_IDtdEntityInfo___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Xml_IDtdEntityInfo_System_Xml_IDtdEntityInfo_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Xml_IDtdEntityInfo_System_Xml_IDtdEntityInfo___Array { struct Dictionary_2_TKey_TValue_Entry_System_Xml_IDtdEntityInfo_System_Xml_IDtdEntityInfo___Array__Class *klass; MonitorData *monitor; @@ -495220,6 +500345,21 @@ struct ICollection_1_System_Xml_IDtdEntityInfo___Class { struct ICollection_1_System_Xml_IDtdEntityInfo___VTable vtable; }; +struct IDtdEntityInfo___VTable { +}; + +struct IDtdEntityInfo___StaticFields { +}; + +struct IDtdEntityInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IDtdEntityInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IDtdEntityInfo___VTable vtable; +}; + struct KeyValuePair_2_System_Xml_IDtdEntityInfo_System_Xml_IDtdEntityInfo___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -498706,19 +503846,6 @@ struct CustomInputSource { struct CustomInputSource__Fields fields; }; -struct __declspec(align(8)) List_1_Rewired_Platforms_Custom_CustomInputSource_Joystick___Fields { - struct CustomInputSource_Joystick__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Rewired_Platforms_Custom_CustomInputSource_Joystick_ { - struct List_1_Rewired_Platforms_Custom_CustomInputSource_Joystick___Class *klass; - MonitorData *monitor; - struct List_1_Rewired_Platforms_Custom_CustomInputSource_Joystick___Fields fields; -}; - struct __declspec(align(8)) CustomInputSource_Controller__Fields { bool _isConnected; struct String *_deviceName; @@ -498742,6 +503869,31 @@ struct Nullable_1_Int64___Boxed { struct Nullable_1_Int64_ fields; }; +struct CustomInputSource_Element { + struct CustomInputSource_Element__Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) CustomInputSource_Axis__Fields { + float value; +}; + +struct CustomInputSource_Axis { + struct CustomInputSource_Axis__Class *klass; + MonitorData *monitor; + struct CustomInputSource_Axis__Fields fields; +}; + +struct __declspec(align(8)) CustomInputSource_Button__Fields { + bool value; +}; + +struct CustomInputSource_Button { + struct CustomInputSource_Button__Class *klass; + MonitorData *monitor; + struct CustomInputSource_Button__Fields fields; +}; + struct CustomInputSource_Joystick__Fields { struct CustomInputSource_Controller__Fields _; struct Nullable_1_Int64_ GJoLLetXGdweqiLXXtIRyjUEUAbk; @@ -498760,6 +503912,19 @@ struct CustomInputSource_Joystick { struct CustomInputSource_Joystick__Fields fields; }; +struct __declspec(align(8)) List_1_Rewired_Platforms_Custom_CustomInputSource_Joystick___Fields { + struct CustomInputSource_Joystick__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Rewired_Platforms_Custom_CustomInputSource_Joystick_ { + struct List_1_Rewired_Platforms_Custom_CustomInputSource_Joystick___Class *klass; + MonitorData *monitor; + struct List_1_Rewired_Platforms_Custom_CustomInputSource_Joystick___Fields fields; +}; + struct XboxOneInputSource_EXzgdOjuTRjkiOWDcTIuyPOkzHMv__Fields { struct CustomInputSource_Joystick__Fields _; struct IXboxOneInputSource *BpHFrLCBcXoykjITlKQwhAuQpFDAA; @@ -498774,21 +503939,6 @@ struct XboxOneInputSource_EXzgdOjuTRjkiOWDcTIuyPOkzHMv { struct XboxOneInputSource_EXzgdOjuTRjkiOWDcTIuyPOkzHMv__Fields fields; }; -struct CustomInputSource_Element { - struct CustomInputSource_Element__Class *klass; - MonitorData *monitor; -}; - -struct __declspec(align(8)) CustomInputSource_Axis__Fields { - float value; -}; - -struct CustomInputSource_Axis { - struct CustomInputSource_Axis__Class *klass; - MonitorData *monitor; - struct CustomInputSource_Axis__Fields fields; -}; - struct CustomInputSource_Axis__Array { struct CustomInputSource_Axis__Array__Class *klass; MonitorData *monitor; @@ -498797,16 +503947,6 @@ struct CustomInputSource_Axis__Array { struct CustomInputSource_Axis *vector[32]; }; -struct __declspec(align(8)) CustomInputSource_Button__Fields { - bool value; -}; - -struct CustomInputSource_Button { - struct CustomInputSource_Button__Class *klass; - MonitorData *monitor; - struct CustomInputSource_Button__Fields fields; -}; - struct CustomInputSource_Button__Array { struct CustomInputSource_Button__Array__Class *klass; MonitorData *monitor; @@ -498900,6 +504040,17 @@ struct XboxOneInputSource { struct XboxOneInputSource__Fields fields; }; +struct XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK { + uint32_t vdzWpoEUWagaWBmuETrTwEHmVqiK; + uint32_t IGvbJuGKzcdouGzCbaSjqpWRAojb; +}; + +struct XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__Boxed { + struct XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__Class *klass; + MonitorData *monitor; + struct XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK fields; +}; + struct __declspec(align(8)) Queue_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK___Fields { struct XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__Array *_array; int32_t _head; @@ -498915,17 +504066,6 @@ struct Queue_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHk struct Queue_1_Rewired_Platforms_XboxOne_XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK___Fields fields; }; -struct XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK { - uint32_t vdzWpoEUWagaWBmuETrTwEHmVqiK; - uint32_t IGvbJuGKzcdouGzCbaSjqpWRAojb; -}; - -struct XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__Boxed { - struct XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__Class *klass; - MonitorData *monitor; - struct XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK fields; -}; - struct XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__Array { struct XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK__Array__Class *klass; MonitorData *monitor; @@ -499038,19 +504178,6 @@ struct plBfGLfQeUzmsEdwSpoZbnYJHVeW { struct plBfGLfQeUzmsEdwSpoZbnYJHVeW__Fields fields; }; -struct __declspec(align(8)) List_1_plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG___Fields { - struct plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG_ { - struct List_1_plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG___Class *klass; - MonitorData *monitor; - struct List_1_plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG___Fields fields; -}; - struct __declspec(align(8)) plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG__Fields { int32_t GYQLMLzmvoBmTbZeOkJFSeVGFyaTA; int32_t TolvyxDImzOqHvrijmlpnPhIiOGg; @@ -499077,6 +504204,19 @@ struct plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG { struct plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG__Fields fields; }; +struct __declspec(align(8)) List_1_plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG___Fields { + struct plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG_ { + struct List_1_plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG___Class *klass; + MonitorData *monitor; + struct List_1_plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG___Fields fields; +}; + struct __declspec(align(8)) HardwareJoystickMap_InputManager__Fields { struct String *controllerName; struct HardwareControllerMapIdentifier hardwareMapIdentifier; @@ -499119,19 +504259,6 @@ struct plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA { struct plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA__Fields fields; }; -struct __declspec(align(8)) List_1_plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA_QEirwUTXDJlRbyOtHactBdFdXgSR___Fields { - struct plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA_QEirwUTXDJlRbyOtHactBdFdXgSR__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA_QEirwUTXDJlRbyOtHactBdFdXgSR_ { - struct List_1_plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA_QEirwUTXDJlRbyOtHactBdFdXgSR___Class *klass; - MonitorData *monitor; - struct List_1_plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA_QEirwUTXDJlRbyOtHactBdFdXgSR___Fields fields; -}; - struct __declspec(align(8)) plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA_QEirwUTXDJlRbyOtHactBdFdXgSR__Fields { int32_t LSQDyzUyCqRuXedpZAmjWhayJKwA; int32_t MhbBmdjVncdbUBeMOaJhBxIeAATjb; @@ -499146,6 +504273,19 @@ struct plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA_QEirwUTXDJlRby struct plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA_QEirwUTXDJlRbyOtHactBdFdXgSR__Fields fields; }; +struct __declspec(align(8)) List_1_plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA_QEirwUTXDJlRbyOtHactBdFdXgSR___Fields { + struct plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA_QEirwUTXDJlRbyOtHactBdFdXgSR__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA_QEirwUTXDJlRbyOtHactBdFdXgSR_ { + struct List_1_plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA_QEirwUTXDJlRbyOtHactBdFdXgSR___Class *klass; + MonitorData *monitor; + struct List_1_plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA_QEirwUTXDJlRbyOtHactBdFdXgSR___Fields fields; +}; + struct plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA_QEirwUTXDJlRbyOtHactBdFdXgSR__Array { struct plBfGLfQeUzmsEdwSpoZbnYJHVeW_QoACFsdxSndhHwkOrzTjUQswSGZRA_QEirwUTXDJlRbyOtHactBdFdXgSR__Array__Class *klass; MonitorData *monitor; @@ -500703,6 +505843,21 @@ struct MRGkKzhgDCfculrfXakxXfUSFUsK_iDWnzYHVfmBYUfCOMgYtoOCbHzmY__Class { struct MRGkKzhgDCfculrfXakxXfUSFUsK_iDWnzYHVfmBYUfCOMgYtoOCbHzmY__VTable vtable; }; +struct __declspec(align(8)) UpdateLoopDataSet_1_T_ZiclZXYpwdehzXmFmEsJccSZMPwKA_ButtonLoopSet_ButtonData___Fields { + #if defined(_CPLUSPLUS_) + UpdateLoopType__Enum bgmCxafTAhGyaRRTSDTPlAiCLjtFb; + #else + int32_t bgmCxafTAhGyaRRTSDTPlAiCLjtFb; + #endif + struct ButtonLoopSet_ButtonData *HyeFxCdoLKehvVbQKkUQTbHaPcRoA; +}; + +struct UpdateLoopDataSet_1_T_ZiclZXYpwdehzXmFmEsJccSZMPwKA_ButtonLoopSet_ButtonData_ { + struct UpdateLoopDataSet_1_T_ZiclZXYpwdehzXmFmEsJccSZMPwKA_ButtonLoopSet_ButtonData___Class *klass; + MonitorData *monitor; + struct UpdateLoopDataSet_1_T_ZiclZXYpwdehzXmFmEsJccSZMPwKA_ButtonLoopSet_ButtonData___Fields fields; +}; + struct __declspec(align(8)) UpdateLoopDataSet_1_ButtonLoopSet_ButtonData___Fields { struct UpdateLoopDataSet_1_T_ZiclZXYpwdehzXmFmEsJccSZMPwKA_ButtonLoopSet_ButtonData_ *HlHYPIOWvlHvQyLwTkcAbKJfkYmu; int32_t vNftwdZEYOcQNbtfsevUFgcLKKBfA; @@ -500733,21 +505888,6 @@ struct ButtonLoopSet { struct ButtonLoopSet__Fields fields; }; -struct __declspec(align(8)) UpdateLoopDataSet_1_T_ZiclZXYpwdehzXmFmEsJccSZMPwKA_ButtonLoopSet_ButtonData___Fields { - #if defined(_CPLUSPLUS_) - UpdateLoopType__Enum bgmCxafTAhGyaRRTSDTPlAiCLjtFb; - #else - int32_t bgmCxafTAhGyaRRTSDTPlAiCLjtFb; - #endif - struct ButtonLoopSet_ButtonData *HyeFxCdoLKehvVbQKkUQTbHaPcRoA; -}; - -struct UpdateLoopDataSet_1_T_ZiclZXYpwdehzXmFmEsJccSZMPwKA_ButtonLoopSet_ButtonData_ { - struct UpdateLoopDataSet_1_T_ZiclZXYpwdehzXmFmEsJccSZMPwKA_ButtonLoopSet_ButtonData___Class *klass; - MonitorData *monitor; - struct UpdateLoopDataSet_1_T_ZiclZXYpwdehzXmFmEsJccSZMPwKA_ButtonLoopSet_ButtonData___Fields fields; -}; - struct __declspec(align(8)) ButtonLoopSet_ButtonData__Fields { #if defined(_CPLUSPLUS_) UpdateLoopType__Enum updateLoop; @@ -500945,6 +506085,19 @@ struct SteamActionSet { struct SteamActionSet__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_Rewired_SteamAction_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct SteamAction *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_Rewired_SteamAction___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_Rewired_SteamAction___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_Rewired_SteamAction_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_Rewired_SteamAction___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_Rewired_SteamAction___Array *_entries; @@ -500964,19 +506117,6 @@ struct Dictionary_2_System_String_Rewired_SteamAction_ { struct Dictionary_2_System_String_Rewired_SteamAction___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_Rewired_SteamAction_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct SteamAction *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_Rewired_SteamAction___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_Rewired_SteamAction___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_Rewired_SteamAction_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_String_Rewired_SteamAction___Array { struct Dictionary_2_TKey_TValue_Entry_System_String_Rewired_SteamAction___Array__Class *klass; MonitorData *monitor; @@ -501205,6 +506345,21 @@ struct ICollection_1_Rewired_SteamAction___Class { struct ICollection_1_Rewired_SteamAction___VTable vtable; }; +struct SteamAction___VTable { +}; + +struct SteamAction___StaticFields { +}; + +struct SteamAction___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SteamAction___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SteamAction___VTable vtable; +}; + struct KeyValuePair_2_System_String_Rewired_SteamAction___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -501382,6 +506537,21 @@ struct RewiredVersion__Class { struct RewiredVersion__VTable vtable; }; +struct PidVid___VTable { +}; + +struct PidVid___StaticFields { +}; + +struct PidVid___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PidVid___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PidVid___VTable vtable; +}; + struct __declspec(align(8)) List_1_Rewired_UpdateLoopType___Fields { struct UpdateLoopType__Enum__Array *_items; int32_t _size; @@ -502059,6 +507229,36 @@ struct JoystickCalibrationMapSaveData__Class { struct JoystickCalibrationMapSaveData__VTable vtable; }; +struct KeyCode___VTable { +}; + +struct KeyCode___StaticFields { +}; + +struct KeyCode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyCode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyCode___VTable vtable; +}; + +struct Controller_Button___VTable { +}; + +struct Controller_Button___StaticFields { +}; + +struct Controller_Button___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Controller_Button___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Controller_Button___VTable vtable; +}; + struct __declspec(align(8)) Keyboard_YiQbQZcElEPdkLsCcWxDLIlxGCxtA__Fields { int32_t vBmgDgkgAoSweaFiLfnbKIilnhqs; struct ControllerPollingInfo diqVmDaEeYfGOrpqexzYAsMMhTnW; @@ -502199,6 +507399,21 @@ struct ControllerTemplate_SZMjASumErbiSjGUvdCcemyAxmWCc__Class { struct ControllerTemplate_SZMjASumErbiSjGUvdCcemyAxmWCc__VTable vtable; }; +struct IList_1_Rewired_ControllerTemplateElementTarget__1__VTable { +}; + +struct IList_1_Rewired_ControllerTemplateElementTarget__1__StaticFields { +}; + +struct IList_1_Rewired_ControllerTemplateElementTarget__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IList_1_Rewired_ControllerTemplateElementTarget__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IList_1_Rewired_ControllerTemplateElementTarget__1__VTable vtable; +}; + struct IList_1_Rewired_ControllerTemplate_kvOnxGBUMwSXiAWzvbgaylKBYqUs_ { struct IList_1_Rewired_ControllerTemplate_kvOnxGBUMwSXiAWzvbgaylKBYqUs___Class *klass; MonitorData *monitor; @@ -502351,6 +507566,17 @@ struct ControllerTemplate_LqGoLqohdgcNcwPSNdVMdAIXzmDeA { struct ControllerTemplate_LqGoLqohdgcNcwPSNdVMdAIXzmDeA__Fields fields; }; +struct __declspec(align(8)) ControllerTemplate_kvOnxGBUMwSXiAWzvbgaylKBYqUs__Fields { + struct Controller_Element *khpGjydrmCfDVkEzazNCSDaBwnJd; + struct IControllerElementTarget *azMuaeFsfaJNXcPJwiBJiandOfCPB; +}; + +struct ControllerTemplate_kvOnxGBUMwSXiAWzvbgaylKBYqUs { + struct ControllerTemplate_kvOnxGBUMwSXiAWzvbgaylKBYqUs__Class *klass; + MonitorData *monitor; + struct ControllerTemplate_kvOnxGBUMwSXiAWzvbgaylKBYqUs__Fields fields; +}; + struct ControllerTemplate_PKDCmzDgMHghiGPOjUfIymxWeMYsb__Fields { struct ControllerTemplate_LqGoLqohdgcNcwPSNdVMdAIXzmDeA__Fields _; int32_t OuRLFNtJrzoKUgUtjEVAQkyIdiCCA; @@ -502381,17 +507607,6 @@ struct IControllerTemplateElementSource { MonitorData *monitor; }; -struct __declspec(align(8)) ControllerTemplate_kvOnxGBUMwSXiAWzvbgaylKBYqUs__Fields { - struct Controller_Element *khpGjydrmCfDVkEzazNCSDaBwnJd; - struct IControllerElementTarget *azMuaeFsfaJNXcPJwiBJiandOfCPB; -}; - -struct ControllerTemplate_kvOnxGBUMwSXiAWzvbgaylKBYqUs { - struct ControllerTemplate_kvOnxGBUMwSXiAWzvbgaylKBYqUs__Class *klass; - MonitorData *monitor; - struct ControllerTemplate_kvOnxGBUMwSXiAWzvbgaylKBYqUs__Fields fields; -}; - struct ControllerTemplate_kvOnxGBUMwSXiAWzvbgaylKBYqUs__Array { struct ControllerTemplate_kvOnxGBUMwSXiAWzvbgaylKBYqUs__Array__Class *klass; MonitorData *monitor; @@ -505150,6 +510365,21 @@ struct aFmJpwxQsLcpqNsVpQUVNGddslvo_KKctsriiMZhFbEJSCKNPCsivbPjAb_VuBDaMpQwJCOCU struct aFmJpwxQsLcpqNsVpQUVNGddslvo_KKctsriiMZhFbEJSCKNPCsivbPjAb_VuBDaMpQwJCOCUpyZeCnbeACULRI__Enum__VTable vtable; }; +struct ControllerType___VTable { +}; + +struct ControllerType___StaticFields { +}; + +struct ControllerType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ControllerType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ControllerType___VTable vtable; +}; + struct __declspec(align(8)) UnityInputHelper_BsGTYoHaOPgYWtEHeGSpZoDeQUUw__Fields { struct String__Array *APMhXZzSLhEPistELRirNCHdpQsT; struct String__Array *FuIbrngzTfyhqdTvcYUTsstzCVZDA; @@ -505235,6 +510465,21 @@ struct UnityUnifiedMouseSource { struct UnityUnifiedMouseSource__Fields fields; }; +struct __declspec(align(8)) UpdateLoopDataSet_1_T_ZiclZXYpwdehzXmFmEsJccSZMPwKA_UnityUnifiedMouseSource_VfDxCbYROgLLrrqQJZnvCkuaHSaJ___Fields { + #if defined(_CPLUSPLUS_) + UpdateLoopType__Enum bgmCxafTAhGyaRRTSDTPlAiCLjtFb; + #else + int32_t bgmCxafTAhGyaRRTSDTPlAiCLjtFb; + #endif + struct UnityUnifiedMouseSource_VfDxCbYROgLLrrqQJZnvCkuaHSaJ *HyeFxCdoLKehvVbQKkUQTbHaPcRoA; +}; + +struct UpdateLoopDataSet_1_T_ZiclZXYpwdehzXmFmEsJccSZMPwKA_UnityUnifiedMouseSource_VfDxCbYROgLLrrqQJZnvCkuaHSaJ_ { + struct UpdateLoopDataSet_1_T_ZiclZXYpwdehzXmFmEsJccSZMPwKA_UnityUnifiedMouseSource_VfDxCbYROgLLrrqQJZnvCkuaHSaJ___Class *klass; + MonitorData *monitor; + struct UpdateLoopDataSet_1_T_ZiclZXYpwdehzXmFmEsJccSZMPwKA_UnityUnifiedMouseSource_VfDxCbYROgLLrrqQJZnvCkuaHSaJ___Fields fields; +}; + struct __declspec(align(8)) UpdateLoopDataSet_1_UnityUnifiedMouseSource_VfDxCbYROgLLrrqQJZnvCkuaHSaJ___Fields { struct UpdateLoopDataSet_1_T_ZiclZXYpwdehzXmFmEsJccSZMPwKA_UnityUnifiedMouseSource_VfDxCbYROgLLrrqQJZnvCkuaHSaJ_ *HlHYPIOWvlHvQyLwTkcAbKJfkYmu; int32_t vNftwdZEYOcQNbtfsevUFgcLKKBfA; @@ -505254,21 +510499,6 @@ struct UpdateLoopDataSet_1_UnityUnifiedMouseSource_VfDxCbYROgLLrrqQJZnvCkuaHSaJ_ struct UpdateLoopDataSet_1_UnityUnifiedMouseSource_VfDxCbYROgLLrrqQJZnvCkuaHSaJ___Fields fields; }; -struct __declspec(align(8)) UpdateLoopDataSet_1_T_ZiclZXYpwdehzXmFmEsJccSZMPwKA_UnityUnifiedMouseSource_VfDxCbYROgLLrrqQJZnvCkuaHSaJ___Fields { - #if defined(_CPLUSPLUS_) - UpdateLoopType__Enum bgmCxafTAhGyaRRTSDTPlAiCLjtFb; - #else - int32_t bgmCxafTAhGyaRRTSDTPlAiCLjtFb; - #endif - struct UnityUnifiedMouseSource_VfDxCbYROgLLrrqQJZnvCkuaHSaJ *HyeFxCdoLKehvVbQKkUQTbHaPcRoA; -}; - -struct UpdateLoopDataSet_1_T_ZiclZXYpwdehzXmFmEsJccSZMPwKA_UnityUnifiedMouseSource_VfDxCbYROgLLrrqQJZnvCkuaHSaJ_ { - struct UpdateLoopDataSet_1_T_ZiclZXYpwdehzXmFmEsJccSZMPwKA_UnityUnifiedMouseSource_VfDxCbYROgLLrrqQJZnvCkuaHSaJ___Class *klass; - MonitorData *monitor; - struct UpdateLoopDataSet_1_T_ZiclZXYpwdehzXmFmEsJccSZMPwKA_UnityUnifiedMouseSource_VfDxCbYROgLLrrqQJZnvCkuaHSaJ___Fields fields; -}; - struct __declspec(align(8)) UnityUnifiedMouseSource_VfDxCbYROgLLrrqQJZnvCkuaHSaJ__Fields { struct Single__Array *cayCMkknasrlnLeVRPJivcZgnCDcA; struct Boolean__Array *MBpKESPeMdsapSRppqnRqwkAPXOi; @@ -505529,6 +510759,21 @@ struct Action_1_QWCZHCNDmpDloSdqwdUrqIUsGkjX_ { struct Action_1_QWCZHCNDmpDloSdqwdUrqIUsGkjX___Fields fields; }; +struct __declspec(align(8)) UpdateLoopDataSet_1_T_ZiclZXYpwdehzXmFmEsJccSZMPwKA_QWCZHCNDmpDloSdqwdUrqIUsGkjX_maTEitTqrfublisfyhueruzJbaIw___Fields { + #if defined(_CPLUSPLUS_) + UpdateLoopType__Enum bgmCxafTAhGyaRRTSDTPlAiCLjtFb; + #else + int32_t bgmCxafTAhGyaRRTSDTPlAiCLjtFb; + #endif + struct QWCZHCNDmpDloSdqwdUrqIUsGkjX_maTEitTqrfublisfyhueruzJbaIw *HyeFxCdoLKehvVbQKkUQTbHaPcRoA; +}; + +struct UpdateLoopDataSet_1_T_ZiclZXYpwdehzXmFmEsJccSZMPwKA_QWCZHCNDmpDloSdqwdUrqIUsGkjX_maTEitTqrfublisfyhueruzJbaIw_ { + struct UpdateLoopDataSet_1_T_ZiclZXYpwdehzXmFmEsJccSZMPwKA_QWCZHCNDmpDloSdqwdUrqIUsGkjX_maTEitTqrfublisfyhueruzJbaIw___Class *klass; + MonitorData *monitor; + struct UpdateLoopDataSet_1_T_ZiclZXYpwdehzXmFmEsJccSZMPwKA_QWCZHCNDmpDloSdqwdUrqIUsGkjX_maTEitTqrfublisfyhueruzJbaIw___Fields fields; +}; + struct __declspec(align(8)) UpdateLoopDataSet_1_QWCZHCNDmpDloSdqwdUrqIUsGkjX_maTEitTqrfublisfyhueruzJbaIw___Fields { struct UpdateLoopDataSet_1_T_ZiclZXYpwdehzXmFmEsJccSZMPwKA_QWCZHCNDmpDloSdqwdUrqIUsGkjX_maTEitTqrfublisfyhueruzJbaIw_ *HlHYPIOWvlHvQyLwTkcAbKJfkYmu; int32_t vNftwdZEYOcQNbtfsevUFgcLKKBfA; @@ -505548,21 +510793,6 @@ struct UpdateLoopDataSet_1_QWCZHCNDmpDloSdqwdUrqIUsGkjX_maTEitTqrfublisfyhueruzJ struct UpdateLoopDataSet_1_QWCZHCNDmpDloSdqwdUrqIUsGkjX_maTEitTqrfublisfyhueruzJbaIw___Fields fields; }; -struct __declspec(align(8)) UpdateLoopDataSet_1_T_ZiclZXYpwdehzXmFmEsJccSZMPwKA_QWCZHCNDmpDloSdqwdUrqIUsGkjX_maTEitTqrfublisfyhueruzJbaIw___Fields { - #if defined(_CPLUSPLUS_) - UpdateLoopType__Enum bgmCxafTAhGyaRRTSDTPlAiCLjtFb; - #else - int32_t bgmCxafTAhGyaRRTSDTPlAiCLjtFb; - #endif - struct QWCZHCNDmpDloSdqwdUrqIUsGkjX_maTEitTqrfublisfyhueruzJbaIw *HyeFxCdoLKehvVbQKkUQTbHaPcRoA; -}; - -struct UpdateLoopDataSet_1_T_ZiclZXYpwdehzXmFmEsJccSZMPwKA_QWCZHCNDmpDloSdqwdUrqIUsGkjX_maTEitTqrfublisfyhueruzJbaIw_ { - struct UpdateLoopDataSet_1_T_ZiclZXYpwdehzXmFmEsJccSZMPwKA_QWCZHCNDmpDloSdqwdUrqIUsGkjX_maTEitTqrfublisfyhueruzJbaIw___Class *klass; - MonitorData *monitor; - struct UpdateLoopDataSet_1_T_ZiclZXYpwdehzXmFmEsJccSZMPwKA_QWCZHCNDmpDloSdqwdUrqIUsGkjX_maTEitTqrfublisfyhueruzJbaIw___Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class QWCZHCNDmpDloSdqwdUrqIUsGkjX_maTEitTqrfublisfyhueruzJbaIw_vdLBISqfhETvoIPBSgZqymVWmtAU__Enum : uint8_t { None = 0x00, @@ -505953,6 +511183,21 @@ struct QWCZHCNDmpDloSdqwdUrqIUsGkjX_QOvzUOgRmTAQcYETwDKeyJSpVFrL__Class { struct QWCZHCNDmpDloSdqwdUrqIUsGkjX_QOvzUOgRmTAQcYETwDKeyJSpVFrL__VTable vtable; }; +struct ButtonStateFlags___VTable { +}; + +struct ButtonStateFlags___StaticFields { +}; + +struct ButtonStateFlags___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ButtonStateFlags___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ButtonStateFlags___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class XKHfzUVAieDxXBogCMTJRCSldnQzA_vCXgOezTSYpbrDBLMmwgXIaeVluf__Enum : int32_t { Connected = 0x00000000, @@ -507582,6 +512827,66 @@ struct InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_LXrhUiKcfDhdcAxSIwfRGDqggPoMA__E struct InputMapper_qqCQtFlLUiTzCatiGCvDADDbuogR_LXrhUiKcfDhdcAxSIwfRGDqggPoMA__Enum__VTable vtable; }; +struct ElementAssignment___VTable { +}; + +struct ElementAssignment___StaticFields { +}; + +struct ElementAssignment___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ElementAssignment___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ElementAssignment___VTable vtable; +}; + +struct IEnumerable_1_Rewired_ControllerPollingInfo__1__VTable { +}; + +struct IEnumerable_1_Rewired_ControllerPollingInfo__1__StaticFields { +}; + +struct IEnumerable_1_Rewired_ControllerPollingInfo__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_Rewired_ControllerPollingInfo__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_Rewired_ControllerPollingInfo__1__VTable vtable; +}; + +struct ModifierKeyFlags___VTable { +}; + +struct ModifierKeyFlags___StaticFields { +}; + +struct ModifierKeyFlags___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ModifierKeyFlags___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ModifierKeyFlags___VTable vtable; +}; + +struct ElementAssignmentConflictCheck___VTable { +}; + +struct ElementAssignmentConflictCheck___StaticFields { +}; + +struct ElementAssignmentConflictCheck___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ElementAssignmentConflictCheck___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ElementAssignmentConflictCheck___VTable vtable; +}; + struct Predicate_1_Rewired_ControllerPollingInfo___Fields { struct MulticastDelegate__Fields _; }; @@ -507779,6 +513084,18 @@ struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_Joystick_JoystickMa struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_Joystick_JoystickMap___Fields fields; }; +struct __declspec(align(8)) Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_Joystick_JoystickMap___Fields { + struct Joystick *yrSDfNzGPLUBuAkUrbEMVpfZXAPl; + struct FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_Rewired_JoystickMap_ *aAowPEkJbfCViZyNqUZPfunqZbmj; + double RWrsGMkNXPpTwapDpWSPGxirSYGc; +}; + +struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_Joystick_JoystickMap_ { + struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_Joystick_JoystickMap___Class *klass; + MonitorData *monitor; + struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_Joystick_JoystickMap___Fields fields; +}; + struct __declspec(align(8)) List_1_Rewired_Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_iFdhrNpmwqfCBhYGNyxLdlHCddIiA___Fields { struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_Joystick_JoystickMap___Array *_items; int32_t _size; @@ -507792,18 +513109,6 @@ struct List_1_Rewired_Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_iFdh struct List_1_Rewired_Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_iFdhrNpmwqfCBhYGNyxLdlHCddIiA___Fields fields; }; -struct __declspec(align(8)) Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_Joystick_JoystickMap___Fields { - struct Joystick *yrSDfNzGPLUBuAkUrbEMVpfZXAPl; - struct FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_Rewired_JoystickMap_ *aAowPEkJbfCViZyNqUZPfunqZbmj; - double RWrsGMkNXPpTwapDpWSPGxirSYGc; -}; - -struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_Joystick_JoystickMap_ { - struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_Joystick_JoystickMap___Class *klass; - MonitorData *monitor; - struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_Joystick_JoystickMap___Fields fields; -}; - struct ryeyPcIHKUxvhqoSFdEblCaJWQPv { struct ryeyPcIHKUxvhqoSFdEblCaJWQPv__Class *klass; MonitorData *monitor; @@ -508514,6 +513819,18 @@ struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_CustomController_Cu struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_CustomController_CustomControllerMap___Fields fields; }; +struct __declspec(align(8)) Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_CustomController_CustomControllerMap___Fields { + struct CustomController *yrSDfNzGPLUBuAkUrbEMVpfZXAPl; + struct FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_Rewired_CustomControllerMap_ *aAowPEkJbfCViZyNqUZPfunqZbmj; + double RWrsGMkNXPpTwapDpWSPGxirSYGc; +}; + +struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_CustomController_CustomControllerMap_ { + struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_CustomController_CustomControllerMap___Class *klass; + MonitorData *monitor; + struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_CustomController_CustomControllerMap___Fields fields; +}; + struct __declspec(align(8)) List_1_Rewired_Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_iFdhrNpmwqfCBhYGNyxLdlHCddIiA__1__Fields { struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_CustomController_CustomControllerMap___Array *_items; int32_t _size; @@ -508527,18 +513844,6 @@ struct List_1_Rewired_Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_iFdh struct List_1_Rewired_Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_iFdhrNpmwqfCBhYGNyxLdlHCddIiA__1__Fields fields; }; -struct __declspec(align(8)) Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_CustomController_CustomControllerMap___Fields { - struct CustomController *yrSDfNzGPLUBuAkUrbEMVpfZXAPl; - struct FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_Rewired_CustomControllerMap_ *aAowPEkJbfCViZyNqUZPfunqZbmj; - double RWrsGMkNXPpTwapDpWSPGxirSYGc; -}; - -struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_CustomController_CustomControllerMap_ { - struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_CustomController_CustomControllerMap___Class *klass; - MonitorData *monitor; - struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_CustomController_CustomControllerMap___Fields fields; -}; - struct __declspec(align(8)) FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_Rewired_CustomControllerMap___Fields { struct List_1_Rewired_ControllerMap_ *lTKBDsBARMhpzlJwwJmZFjPZrgnl; struct IList_1_Rewired_ControllerMap_ *NVCfhhjMsOfupkFImqcHwwGDvkeA; @@ -508977,6 +514282,21 @@ struct IEnumerable_1_Rewired_Controller___Class { struct IEnumerable_1_Rewired_Controller___VTable vtable; }; +struct Controller___VTable { +}; + +struct Controller___StaticFields { +}; + +struct Controller___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Controller___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Controller___VTable vtable; +}; + struct __declspec(align(8)) Player_ControllerHelper_ConflictCheckingHelper_seMFeVgthuYlnQkjTeOBPcrptLpN__Fields { int32_t vBmgDgkgAoSweaFiLfnbKIilnhqs; struct ElementAssignmentConflictInfo diqVmDaEeYfGOrpqexzYAsMMhTnW; @@ -511053,15 +516373,27 @@ struct oQuUFLJuRrUxJDynhLyEQLTqbPLb { struct oQuUFLJuRrUxJDynhLyEQLTqbPLb__Fields fields; }; -struct __declspec(align(8)) oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB__Fields { - struct oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB_rZSecNsaugWSctQPjSgvVuScTUil__Array *DGXwTeSTHgvinGKMZcCYhqMnwPPRA; - struct oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB_XEVKGtOAPPRilzGCpFtxiFYCCMgz *BKUttiypYKsEsPKSKVRQOkxUFMIg; +struct __declspec(align(8)) oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB_nJBKlBUJLQcocilALEJBhfdiyascB__Fields { + bool OBwwcnwtDztqoikQaZzQdjfKwPKs; + bool palcVSDYhkTBSBrispSrXHJpgIgtA; }; -struct oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB { - struct oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB__Class *klass; +struct oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB_nJBKlBUJLQcocilALEJBhfdiyascB { + struct oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB_nJBKlBUJLQcocilALEJBhfdiyascB__Class *klass; MonitorData *monitor; - struct oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB__Fields fields; + struct oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB_nJBKlBUJLQcocilALEJBhfdiyascB__Fields fields; +}; + +struct __declspec(align(8)) oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB_hqSgnekblMvrxcIhpthtSBvwZRpfA__Fields { + int32_t WxkaeXgylyeFuMJEeyUPzNJHbVfeA; + float OBwwcnwtDztqoikQaZzQdjfKwPKs; + float dgeMhwlCnhcxnVuIkDECDxqxBsFLA; +}; + +struct oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB_hqSgnekblMvrxcIhpthtSBvwZRpfA { + struct oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB_hqSgnekblMvrxcIhpthtSBvwZRpfA__Class *klass; + MonitorData *monitor; + struct oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB_hqSgnekblMvrxcIhpthtSBvwZRpfA__Fields fields; }; struct __declspec(align(8)) oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB_rZSecNsaugWSctQPjSgvVuScTUil__Fields { @@ -511076,15 +516408,15 @@ struct oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB_rZSecNsaugWSctQ struct oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB_rZSecNsaugWSctQPjSgvVuScTUil__Fields fields; }; -struct __declspec(align(8)) oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB_nJBKlBUJLQcocilALEJBhfdiyascB__Fields { - bool OBwwcnwtDztqoikQaZzQdjfKwPKs; - bool palcVSDYhkTBSBrispSrXHJpgIgtA; +struct __declspec(align(8)) oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB__Fields { + struct oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB_rZSecNsaugWSctQPjSgvVuScTUil__Array *DGXwTeSTHgvinGKMZcCYhqMnwPPRA; + struct oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB_XEVKGtOAPPRilzGCpFtxiFYCCMgz *BKUttiypYKsEsPKSKVRQOkxUFMIg; }; -struct oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB_nJBKlBUJLQcocilALEJBhfdiyascB { - struct oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB_nJBKlBUJLQcocilALEJBhfdiyascB__Class *klass; +struct oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB { + struct oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB__Class *klass; MonitorData *monitor; - struct oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB_nJBKlBUJLQcocilALEJBhfdiyascB__Fields fields; + struct oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB__Fields fields; }; struct oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB_nJBKlBUJLQcocilALEJBhfdiyascB__Array { @@ -511095,18 +516427,6 @@ struct oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB_nJBKlBUJLQcocil struct oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB_nJBKlBUJLQcocilALEJBhfdiyascB *vector[32]; }; -struct __declspec(align(8)) oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB_hqSgnekblMvrxcIhpthtSBvwZRpfA__Fields { - int32_t WxkaeXgylyeFuMJEeyUPzNJHbVfeA; - float OBwwcnwtDztqoikQaZzQdjfKwPKs; - float dgeMhwlCnhcxnVuIkDECDxqxBsFLA; -}; - -struct oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB_hqSgnekblMvrxcIhpthtSBvwZRpfA { - struct oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB_hqSgnekblMvrxcIhpthtSBvwZRpfA__Class *klass; - MonitorData *monitor; - struct oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB_hqSgnekblMvrxcIhpthtSBvwZRpfA__Fields fields; -}; - struct oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB_hqSgnekblMvrxcIhpthtSBvwZRpfA__Array { struct oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB_hqSgnekblMvrxcIhpthtSBvwZRpfA__Array__Class *klass; MonitorData *monitor; @@ -511152,6 +516472,17 @@ struct IEqualityComparer_1_oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFk MonitorData *monitor; }; +struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB_ { + int32_t EEIcOLJEdadvUSUztQvSiKbHUvbk; + struct oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB *KCmvqxmDPHZcOPAPceRkbTZbUBUm; +}; + +struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB___Boxed { + struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB___Class *klass; + MonitorData *monitor; + struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB_ fields; +}; + struct __declspec(align(8)) AList_1_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB___Fields { struct IEqualityComparer_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1 *IffVJRWXMWVnHJdLRJYLVauxgDLkA; struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB___Array *_items; @@ -511171,17 +516502,6 @@ struct AList_1_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_Sys struct AList_1_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB___Fields fields; }; -struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB_ { - int32_t EEIcOLJEdadvUSUztQvSiKbHUvbk; - struct oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB *KCmvqxmDPHZcOPAPceRkbTZbUBUm; -}; - -struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB___Boxed { - struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB___Class *klass; - MonitorData *monitor; - struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB_ fields; -}; - struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB___Array { struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB___Array__Class *klass; MonitorData *monitor; @@ -511200,6 +516520,19 @@ struct IEnumerator_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcw MonitorData *monitor; }; +struct ADictionary_2_TKey_TValue_Entry_System_Int32_System_Int32_ { + int32_t hashCode; + int32_t next; + int32_t key; + int32_t value; +}; + +struct ADictionary_2_TKey_TValue_Entry_System_Int32_System_Int32___Boxed { + struct ADictionary_2_TKey_TValue_Entry_System_Int32_System_Int32___Class *klass; + MonitorData *monitor; + struct ADictionary_2_TKey_TValue_Entry_System_Int32_System_Int32_ fields; +}; + struct __declspec(align(8)) ADictionary_2_System_Int32_System_Int32___Fields { struct Int32__Array *pGawVZUvYULemJqagZXhjOtPTktC; struct ADictionary_2_TKey_TValue_Entry_System_Int32_System_Int32___Array *_entries; @@ -511221,19 +516554,6 @@ struct ADictionary_2_System_Int32_System_Int32_ { struct ADictionary_2_System_Int32_System_Int32___Fields fields; }; -struct ADictionary_2_TKey_TValue_Entry_System_Int32_System_Int32_ { - int32_t hashCode; - int32_t next; - int32_t key; - int32_t value; -}; - -struct ADictionary_2_TKey_TValue_Entry_System_Int32_System_Int32___Boxed { - struct ADictionary_2_TKey_TValue_Entry_System_Int32_System_Int32___Class *klass; - MonitorData *monitor; - struct ADictionary_2_TKey_TValue_Entry_System_Int32_System_Int32_ fields; -}; - struct ADictionary_2_TKey_TValue_Entry_System_Int32_System_Int32___Array { struct ADictionary_2_TKey_TValue_Entry_System_Int32_System_Int32___Array__Class *klass; MonitorData *monitor; @@ -511737,6 +517057,21 @@ struct ICollection_1_oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB__ struct ICollection_1_oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB___VTable vtable; }; +struct oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB___VTable { +}; + +struct oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB___StaticFields { +}; + +struct oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB___VTable vtable; +}; + struct KeyValuePair_2_System_Int32_oQuUFLJuRrUxJDynhLyEQLTqbPLb_pOOliGvVQmJNBbyorAHplOFkGYyB___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -513595,6 +518930,19 @@ struct ReInput_DmhbSZjMCnZgLPemnolJFUVnzbICA_NGtafHDtYZIXfpyTnVUJzXoLNIRb { struct ReInput_DmhbSZjMCnZgLPemnolJFUVnzbICA_NGtafHDtYZIXfpyTnVUJzXoLNIRb__Fields fields; }; +struct ADictionary_2_TKey_TValue_Entry_System_Int32_Rewired_ReInput_DmhbSZjMCnZgLPemnolJFUVnzbICA_NGtafHDtYZIXfpyTnVUJzXoLNIRb_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct ReInput_DmhbSZjMCnZgLPemnolJFUVnzbICA_NGtafHDtYZIXfpyTnVUJzXoLNIRb *value; +}; + +struct ADictionary_2_TKey_TValue_Entry_System_Int32_Rewired_ReInput_DmhbSZjMCnZgLPemnolJFUVnzbICA_NGtafHDtYZIXfpyTnVUJzXoLNIRb___Boxed { + struct ADictionary_2_TKey_TValue_Entry_System_Int32_Rewired_ReInput_DmhbSZjMCnZgLPemnolJFUVnzbICA_NGtafHDtYZIXfpyTnVUJzXoLNIRb___Class *klass; + MonitorData *monitor; + struct ADictionary_2_TKey_TValue_Entry_System_Int32_Rewired_ReInput_DmhbSZjMCnZgLPemnolJFUVnzbICA_NGtafHDtYZIXfpyTnVUJzXoLNIRb_ fields; +}; + struct __declspec(align(8)) ADictionary_2_System_Int32_Rewired_ReInput_DmhbSZjMCnZgLPemnolJFUVnzbICA_NGtafHDtYZIXfpyTnVUJzXoLNIRb___Fields { struct Int32__Array *pGawVZUvYULemJqagZXhjOtPTktC; struct ADictionary_2_TKey_TValue_Entry_System_Int32_Rewired_ReInput_DmhbSZjMCnZgLPemnolJFUVnzbICA_NGtafHDtYZIXfpyTnVUJzXoLNIRb___Array *_entries; @@ -513616,19 +518964,6 @@ struct ADictionary_2_System_Int32_Rewired_ReInput_DmhbSZjMCnZgLPemnolJFUVnzbICA_ struct ADictionary_2_System_Int32_Rewired_ReInput_DmhbSZjMCnZgLPemnolJFUVnzbICA_NGtafHDtYZIXfpyTnVUJzXoLNIRb___Fields fields; }; -struct ADictionary_2_TKey_TValue_Entry_System_Int32_Rewired_ReInput_DmhbSZjMCnZgLPemnolJFUVnzbICA_NGtafHDtYZIXfpyTnVUJzXoLNIRb_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct ReInput_DmhbSZjMCnZgLPemnolJFUVnzbICA_NGtafHDtYZIXfpyTnVUJzXoLNIRb *value; -}; - -struct ADictionary_2_TKey_TValue_Entry_System_Int32_Rewired_ReInput_DmhbSZjMCnZgLPemnolJFUVnzbICA_NGtafHDtYZIXfpyTnVUJzXoLNIRb___Boxed { - struct ADictionary_2_TKey_TValue_Entry_System_Int32_Rewired_ReInput_DmhbSZjMCnZgLPemnolJFUVnzbICA_NGtafHDtYZIXfpyTnVUJzXoLNIRb___Class *klass; - MonitorData *monitor; - struct ADictionary_2_TKey_TValue_Entry_System_Int32_Rewired_ReInput_DmhbSZjMCnZgLPemnolJFUVnzbICA_NGtafHDtYZIXfpyTnVUJzXoLNIRb_ fields; -}; - struct ADictionary_2_TKey_TValue_Entry_System_Int32_Rewired_ReInput_DmhbSZjMCnZgLPemnolJFUVnzbICA_NGtafHDtYZIXfpyTnVUJzXoLNIRb___Array { struct ADictionary_2_TKey_TValue_Entry_System_Int32_Rewired_ReInput_DmhbSZjMCnZgLPemnolJFUVnzbICA_NGtafHDtYZIXfpyTnVUJzXoLNIRb___Array__Class *klass; MonitorData *monitor; @@ -513959,6 +519294,21 @@ struct ICollection_1_Rewired_ReInput_DmhbSZjMCnZgLPemnolJFUVnzbICA_NGtafHDtYZIXf struct ICollection_1_Rewired_ReInput_DmhbSZjMCnZgLPemnolJFUVnzbICA_NGtafHDtYZIXfpyTnVUJzXoLNIRb___VTable vtable; }; +struct ReInput_DmhbSZjMCnZgLPemnolJFUVnzbICA_NGtafHDtYZIXfpyTnVUJzXoLNIRb___VTable { +}; + +struct ReInput_DmhbSZjMCnZgLPemnolJFUVnzbICA_NGtafHDtYZIXfpyTnVUJzXoLNIRb___StaticFields { +}; + +struct ReInput_DmhbSZjMCnZgLPemnolJFUVnzbICA_NGtafHDtYZIXfpyTnVUJzXoLNIRb___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ReInput_DmhbSZjMCnZgLPemnolJFUVnzbICA_NGtafHDtYZIXfpyTnVUJzXoLNIRb___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ReInput_DmhbSZjMCnZgLPemnolJFUVnzbICA_NGtafHDtYZIXfpyTnVUJzXoLNIRb___VTable vtable; +}; + struct KeyValuePair_2_System_Int32_Rewired_ReInput_DmhbSZjMCnZgLPemnolJFUVnzbICA_NGtafHDtYZIXfpyTnVUJzXoLNIRb___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -514104,6 +519454,11 @@ struct Touch__Array__Class { struct Touch__Array__VTable vtable; }; +struct ValueWatcher { + struct ValueWatcher__Class *klass; + MonitorData *monitor; +}; + struct __declspec(align(8)) ReInput_eXmRegBcghEOBdHNIAjtlBfyfbuD__Fields { struct ValueWatcher_1_System_Boolean_ *insPFfzaxNMAYWGTntTTRdUEfqYk; struct ValueWatcher_1_System_Boolean_ *ozUGigOomDQywGHbpIaKiYoUJsgj; @@ -514122,11 +519477,6 @@ struct ReInput_eXmRegBcghEOBdHNIAjtlBfyfbuD { struct ReInput_eXmRegBcghEOBdHNIAjtlBfyfbuD__Fields fields; }; -struct ValueWatcher { - struct ValueWatcher__Class *klass; - MonitorData *monitor; -}; - struct __declspec(align(8)) ValueWatcher_1_System_Boolean___Fields { bool qPLddrABEYtOgfBluRawIjWXAwvLA; bool OBwwcnwtDztqoikQaZzQdjfKwPKs; @@ -515704,19 +521054,6 @@ struct OkyanDQiQpkIuPEcUGkHHQHEBNIcb { struct OkyanDQiQpkIuPEcUGkHHQHEBNIcb__Fields fields; }; -struct __declspec(align(8)) List_1_OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb___Fields { - struct OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb_ { - struct List_1_OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb___Class *klass; - MonitorData *monitor; - struct List_1_OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb___Fields fields; -}; - struct __declspec(align(8)) OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb__Fields { int32_t GYQLMLzmvoBmTbZeOkJFSeVGFyaTA; int32_t TolvyxDImzOqHvrijmlpnPhIiOGg; @@ -515759,6 +521096,19 @@ struct OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb { struct OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb__Fields fields; }; +struct __declspec(align(8)) List_1_OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb___Fields { + struct OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb_ { + struct List_1_OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb___Class *klass; + MonitorData *monitor; + struct List_1_OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb___Fields fields; +}; + struct gzbiKNGlSyvLxnIubujCpzSuqtOe { struct gzbiKNGlSyvLxnIubujCpzSuqtOe__Class *klass; MonitorData *monitor; @@ -515797,19 +521147,6 @@ struct OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB { struct OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB__Fields fields; }; -struct __declspec(align(8)) List_1_OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB_UEUxULqgOKjFFoCtJehseWLRVSuFA___Fields { - struct OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB_UEUxULqgOKjFFoCtJehseWLRVSuFA__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB_UEUxULqgOKjFFoCtJehseWLRVSuFA_ { - struct List_1_OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB_UEUxULqgOKjFFoCtJehseWLRVSuFA___Class *klass; - MonitorData *monitor; - struct List_1_OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB_UEUxULqgOKjFFoCtJehseWLRVSuFA___Fields fields; -}; - struct __declspec(align(8)) OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB_UEUxULqgOKjFFoCtJehseWLRVSuFA__Fields { int32_t LSQDyzUyCqRuXedpZAmjWhayJKwA; struct Guid NssqMIMmrhDnBjjdBigOFZMDFnsqc; @@ -515826,6 +521163,19 @@ struct OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB_UEUxULqgOKjFF struct OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB_UEUxULqgOKjFFoCtJehseWLRVSuFA__Fields fields; }; +struct __declspec(align(8)) List_1_OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB_UEUxULqgOKjFFoCtJehseWLRVSuFA___Fields { + struct OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB_UEUxULqgOKjFFoCtJehseWLRVSuFA__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB_UEUxULqgOKjFFoCtJehseWLRVSuFA_ { + struct List_1_OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB_UEUxULqgOKjFFoCtJehseWLRVSuFA___Class *klass; + MonitorData *monitor; + struct List_1_OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB_UEUxULqgOKjFFoCtJehseWLRVSuFA___Fields fields; +}; + struct OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB_UEUxULqgOKjFFoCtJehseWLRVSuFA__Array { struct OkyanDQiQpkIuPEcUGkHHQHEBNIcb_izwgUWcgOicpMttghdAwcnaibiwbB_UEUxULqgOKjFFoCtJehseWLRVSuFA__Array__Class *klass; MonitorData *monitor; @@ -516345,6 +521695,19 @@ struct SDL2InputSource { struct SDL2InputSource__Fields fields; }; +struct ADictionary_2_TKey_TValue_Entry_System_Int32_nPRqIoqySXhujbVkqhHKfdEBznFW_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct nPRqIoqySXhujbVkqhHKfdEBznFW *value; +}; + +struct ADictionary_2_TKey_TValue_Entry_System_Int32_nPRqIoqySXhujbVkqhHKfdEBznFW___Boxed { + struct ADictionary_2_TKey_TValue_Entry_System_Int32_nPRqIoqySXhujbVkqhHKfdEBznFW___Class *klass; + MonitorData *monitor; + struct ADictionary_2_TKey_TValue_Entry_System_Int32_nPRqIoqySXhujbVkqhHKfdEBznFW_ fields; +}; + struct __declspec(align(8)) ADictionary_2_System_Int32_nPRqIoqySXhujbVkqhHKfdEBznFW___Fields { struct Int32__Array *pGawVZUvYULemJqagZXhjOtPTktC; struct ADictionary_2_TKey_TValue_Entry_System_Int32_nPRqIoqySXhujbVkqhHKfdEBznFW___Array *_entries; @@ -516366,19 +521729,6 @@ struct ADictionary_2_System_Int32_nPRqIoqySXhujbVkqhHKfdEBznFW_ { struct ADictionary_2_System_Int32_nPRqIoqySXhujbVkqhHKfdEBznFW___Fields fields; }; -struct ADictionary_2_TKey_TValue_Entry_System_Int32_nPRqIoqySXhujbVkqhHKfdEBznFW_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct nPRqIoqySXhujbVkqhHKfdEBznFW *value; -}; - -struct ADictionary_2_TKey_TValue_Entry_System_Int32_nPRqIoqySXhujbVkqhHKfdEBznFW___Boxed { - struct ADictionary_2_TKey_TValue_Entry_System_Int32_nPRqIoqySXhujbVkqhHKfdEBznFW___Class *klass; - MonitorData *monitor; - struct ADictionary_2_TKey_TValue_Entry_System_Int32_nPRqIoqySXhujbVkqhHKfdEBznFW_ fields; -}; - struct ADictionary_2_TKey_TValue_Entry_System_Int32_nPRqIoqySXhujbVkqhHKfdEBznFW___Array { struct ADictionary_2_TKey_TValue_Entry_System_Int32_nPRqIoqySXhujbVkqhHKfdEBznFW___Array__Class *klass; MonitorData *monitor; @@ -516454,6 +521804,19 @@ struct IEnumerator_1_KeyValuePair_2_System_Int32_nPRqIoqySXhujbVkqhHKfdEBznFW_ { MonitorData *monitor; }; +struct ADictionary_2_TKey_TValue_Entry_System_Int32_PLVuESYMpevStRCbBgaqaHaZvFblA_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct PLVuESYMpevStRCbBgaqaHaZvFblA *value; +}; + +struct ADictionary_2_TKey_TValue_Entry_System_Int32_PLVuESYMpevStRCbBgaqaHaZvFblA___Boxed { + struct ADictionary_2_TKey_TValue_Entry_System_Int32_PLVuESYMpevStRCbBgaqaHaZvFblA___Class *klass; + MonitorData *monitor; + struct ADictionary_2_TKey_TValue_Entry_System_Int32_PLVuESYMpevStRCbBgaqaHaZvFblA_ fields; +}; + struct __declspec(align(8)) ADictionary_2_System_Int32_PLVuESYMpevStRCbBgaqaHaZvFblA___Fields { struct Int32__Array *pGawVZUvYULemJqagZXhjOtPTktC; struct ADictionary_2_TKey_TValue_Entry_System_Int32_PLVuESYMpevStRCbBgaqaHaZvFblA___Array *_entries; @@ -516475,19 +521838,6 @@ struct ADictionary_2_System_Int32_PLVuESYMpevStRCbBgaqaHaZvFblA_ { struct ADictionary_2_System_Int32_PLVuESYMpevStRCbBgaqaHaZvFblA___Fields fields; }; -struct ADictionary_2_TKey_TValue_Entry_System_Int32_PLVuESYMpevStRCbBgaqaHaZvFblA_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct PLVuESYMpevStRCbBgaqaHaZvFblA *value; -}; - -struct ADictionary_2_TKey_TValue_Entry_System_Int32_PLVuESYMpevStRCbBgaqaHaZvFblA___Boxed { - struct ADictionary_2_TKey_TValue_Entry_System_Int32_PLVuESYMpevStRCbBgaqaHaZvFblA___Class *klass; - MonitorData *monitor; - struct ADictionary_2_TKey_TValue_Entry_System_Int32_PLVuESYMpevStRCbBgaqaHaZvFblA_ fields; -}; - struct ADictionary_2_TKey_TValue_Entry_System_Int32_PLVuESYMpevStRCbBgaqaHaZvFblA___Array { struct ADictionary_2_TKey_TValue_Entry_System_Int32_PLVuESYMpevStRCbBgaqaHaZvFblA___Array__Class *klass; MonitorData *monitor; @@ -516743,6 +522093,21 @@ struct ICollection_1_nPRqIoqySXhujbVkqhHKfdEBznFW___Class { struct ICollection_1_nPRqIoqySXhujbVkqhHKfdEBznFW___VTable vtable; }; +struct nPRqIoqySXhujbVkqhHKfdEBznFW___VTable { +}; + +struct nPRqIoqySXhujbVkqhHKfdEBznFW___StaticFields { +}; + +struct nPRqIoqySXhujbVkqhHKfdEBznFW___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct nPRqIoqySXhujbVkqhHKfdEBznFW___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct nPRqIoqySXhujbVkqhHKfdEBznFW___VTable vtable; +}; + struct KeyValuePair_2_System_Int32_nPRqIoqySXhujbVkqhHKfdEBznFW___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -517014,6 +522379,21 @@ struct ICollection_1_PLVuESYMpevStRCbBgaqaHaZvFblA___Class { struct ICollection_1_PLVuESYMpevStRCbBgaqaHaZvFblA___VTable vtable; }; +struct PLVuESYMpevStRCbBgaqaHaZvFblA___VTable { +}; + +struct PLVuESYMpevStRCbBgaqaHaZvFblA___StaticFields { +}; + +struct PLVuESYMpevStRCbBgaqaHaZvFblA___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PLVuESYMpevStRCbBgaqaHaZvFblA___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PLVuESYMpevStRCbBgaqaHaZvFblA___VTable vtable; +}; + struct KeyValuePair_2_System_Int32_PLVuESYMpevStRCbBgaqaHaZvFblA___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -517167,6 +522547,126 @@ struct SDL2InputSource__Class { struct SDL2InputSource__VTable vtable; }; +struct MQXuqxolDTNzmhlQygSPrfSbyMQP_fFFwewtUqmsSEmrBgDBcpkeDeKDV___VTable { +}; + +struct MQXuqxolDTNzmhlQygSPrfSbyMQP_fFFwewtUqmsSEmrBgDBcpkeDeKDV___StaticFields { +}; + +struct MQXuqxolDTNzmhlQygSPrfSbyMQP_fFFwewtUqmsSEmrBgDBcpkeDeKDV___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MQXuqxolDTNzmhlQygSPrfSbyMQP_fFFwewtUqmsSEmrBgDBcpkeDeKDV___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MQXuqxolDTNzmhlQygSPrfSbyMQP_fFFwewtUqmsSEmrBgDBcpkeDeKDV___VTable vtable; +}; + +struct MQXuqxolDTNzmhlQygSPrfSbyMQP_BYWGMKkCZZapwUxoyDOfOnuFFjZi___VTable { +}; + +struct MQXuqxolDTNzmhlQygSPrfSbyMQP_BYWGMKkCZZapwUxoyDOfOnuFFjZi___StaticFields { +}; + +struct MQXuqxolDTNzmhlQygSPrfSbyMQP_BYWGMKkCZZapwUxoyDOfOnuFFjZi___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MQXuqxolDTNzmhlQygSPrfSbyMQP_BYWGMKkCZZapwUxoyDOfOnuFFjZi___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MQXuqxolDTNzmhlQygSPrfSbyMQP_BYWGMKkCZZapwUxoyDOfOnuFFjZi___VTable vtable; +}; + +struct MQXuqxolDTNzmhlQygSPrfSbyMQP_ExVsjcaJQHIrRykhyLbhejFhZHjU___VTable { +}; + +struct MQXuqxolDTNzmhlQygSPrfSbyMQP_ExVsjcaJQHIrRykhyLbhejFhZHjU___StaticFields { +}; + +struct MQXuqxolDTNzmhlQygSPrfSbyMQP_ExVsjcaJQHIrRykhyLbhejFhZHjU___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MQXuqxolDTNzmhlQygSPrfSbyMQP_ExVsjcaJQHIrRykhyLbhejFhZHjU___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MQXuqxolDTNzmhlQygSPrfSbyMQP_ExVsjcaJQHIrRykhyLbhejFhZHjU___VTable vtable; +}; + +struct MQXuqxolDTNzmhlQygSPrfSbyMQP_rsjyJalPbUAnIDSqvvIVAUhdVUyv___VTable { +}; + +struct MQXuqxolDTNzmhlQygSPrfSbyMQP_rsjyJalPbUAnIDSqvvIVAUhdVUyv___StaticFields { +}; + +struct MQXuqxolDTNzmhlQygSPrfSbyMQP_rsjyJalPbUAnIDSqvvIVAUhdVUyv___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MQXuqxolDTNzmhlQygSPrfSbyMQP_rsjyJalPbUAnIDSqvvIVAUhdVUyv___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MQXuqxolDTNzmhlQygSPrfSbyMQP_rsjyJalPbUAnIDSqvvIVAUhdVUyv___VTable vtable; +}; + +struct MQXuqxolDTNzmhlQygSPrfSbyMQP_NJZeSIpLpELmQeHounjwnphENMLl___VTable { +}; + +struct MQXuqxolDTNzmhlQygSPrfSbyMQP_NJZeSIpLpELmQeHounjwnphENMLl___StaticFields { +}; + +struct MQXuqxolDTNzmhlQygSPrfSbyMQP_NJZeSIpLpELmQeHounjwnphENMLl___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MQXuqxolDTNzmhlQygSPrfSbyMQP_NJZeSIpLpELmQeHounjwnphENMLl___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MQXuqxolDTNzmhlQygSPrfSbyMQP_NJZeSIpLpELmQeHounjwnphENMLl___VTable vtable; +}; + +struct MQXuqxolDTNzmhlQygSPrfSbyMQP_fkaeudwEJXamemKLebDVxKyizDwh___VTable { +}; + +struct MQXuqxolDTNzmhlQygSPrfSbyMQP_fkaeudwEJXamemKLebDVxKyizDwh___StaticFields { +}; + +struct MQXuqxolDTNzmhlQygSPrfSbyMQP_fkaeudwEJXamemKLebDVxKyizDwh___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MQXuqxolDTNzmhlQygSPrfSbyMQP_fkaeudwEJXamemKLebDVxKyizDwh___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MQXuqxolDTNzmhlQygSPrfSbyMQP_fkaeudwEJXamemKLebDVxKyizDwh___VTable vtable; +}; + +struct MQXuqxolDTNzmhlQygSPrfSbyMQP_EDRMzeVDpkxuVXCYRCZGRVVSFsNM___VTable { +}; + +struct MQXuqxolDTNzmhlQygSPrfSbyMQP_EDRMzeVDpkxuVXCYRCZGRVVSFsNM___StaticFields { +}; + +struct MQXuqxolDTNzmhlQygSPrfSbyMQP_EDRMzeVDpkxuVXCYRCZGRVVSFsNM___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MQXuqxolDTNzmhlQygSPrfSbyMQP_EDRMzeVDpkxuVXCYRCZGRVVSFsNM___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MQXuqxolDTNzmhlQygSPrfSbyMQP_EDRMzeVDpkxuVXCYRCZGRVVSFsNM___VTable vtable; +}; + +struct MQXuqxolDTNzmhlQygSPrfSbyMQP_kPDMdMsAaUIPSgXaYfVwGqOksJbJ___VTable { +}; + +struct MQXuqxolDTNzmhlQygSPrfSbyMQP_kPDMdMsAaUIPSgXaYfVwGqOksJbJ___StaticFields { +}; + +struct MQXuqxolDTNzmhlQygSPrfSbyMQP_kPDMdMsAaUIPSgXaYfVwGqOksJbJ___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MQXuqxolDTNzmhlQygSPrfSbyMQP_kPDMdMsAaUIPSgXaYfVwGqOksJbJ___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MQXuqxolDTNzmhlQygSPrfSbyMQP_kPDMdMsAaUIPSgXaYfVwGqOksJbJ___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class ouBlVRHXrStnRscoygcvLiAmkaUg__Enum : uint8_t { Button = 0x00, @@ -517420,19 +522920,6 @@ struct CustomInputManager { struct CustomInputManager__Fields fields; }; -struct __declspec(align(8)) List_1_Rewired_InputManagers_CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf___Fields { - struct CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Rewired_InputManagers_CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf_ { - struct List_1_Rewired_InputManagers_CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf___Class *klass; - MonitorData *monitor; - struct List_1_Rewired_InputManagers_CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf___Fields fields; -}; - struct __declspec(align(8)) CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf__Fields { #if defined(_CPLUSPLUS_) InputSource__Enum BpHFrLCBcXoykjITlKQwhAuQpFDAA; @@ -517464,6 +522951,19 @@ struct CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf { struct CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf__Fields fields; }; +struct __declspec(align(8)) List_1_Rewired_InputManagers_CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf___Fields { + struct CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Rewired_InputManagers_CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf_ { + struct List_1_Rewired_InputManagers_CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf___Class *klass; + MonitorData *monitor; + struct List_1_Rewired_InputManagers_CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf___Fields fields; +}; + struct CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf__Array { struct CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf__Array__Class *klass; MonitorData *monitor; @@ -517487,19 +522987,6 @@ struct CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ { struct CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ__Fields fields; }; -struct __declspec(align(8)) List_1_Rewired_InputManagers_CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ_seWhRdmkWxldKiJZidihirlhHhzS___Fields { - struct CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ_seWhRdmkWxldKiJZidihirlhHhzS__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Rewired_InputManagers_CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ_seWhRdmkWxldKiJZidihirlhHhzS_ { - struct List_1_Rewired_InputManagers_CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ_seWhRdmkWxldKiJZidihirlhHhzS___Class *klass; - MonitorData *monitor; - struct List_1_Rewired_InputManagers_CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ_seWhRdmkWxldKiJZidihirlhHhzS___Fields fields; -}; - struct __declspec(align(8)) CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ_seWhRdmkWxldKiJZidihirlhHhzS__Fields { int32_t LSQDyzUyCqRuXedpZAmjWhayJKwA; struct Nullable_1_Int64_ duWUtONvThmhiTIYuLiUtWWvWbTD; @@ -517515,6 +523002,19 @@ struct CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ_seWhRdmkWxldKiJZidihirlhH struct CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ_seWhRdmkWxldKiJZidihirlhHhzS__Fields fields; }; +struct __declspec(align(8)) List_1_Rewired_InputManagers_CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ_seWhRdmkWxldKiJZidihirlhHhzS___Fields { + struct CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ_seWhRdmkWxldKiJZidihirlhHhzS__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Rewired_InputManagers_CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ_seWhRdmkWxldKiJZidihirlhHhzS_ { + struct List_1_Rewired_InputManagers_CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ_seWhRdmkWxldKiJZidihirlhHhzS___Class *klass; + MonitorData *monitor; + struct List_1_Rewired_InputManagers_CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ_seWhRdmkWxldKiJZidihirlhHhzS___Fields fields; +}; + struct CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ_seWhRdmkWxldKiJZidihirlhHhzS__Array { struct CustomInputManager_CCQZvEYqckZKizBZZApHizhWbLwJ_seWhRdmkWxldKiJZidihirlhHhzS__Array__Class *klass; MonitorData *monitor; @@ -518286,6 +523786,20 @@ struct HIDControllerElementWithDataSet { struct HIDControllerElementWithDataSet__Fields fields; }; +struct __declspec(align(8)) HIDControllerElementWithDataSet_oBWNdsGlGNkIvPlfnFirbraBbQXRA__Fields { + #if defined(_CPLUSPLUS_) + UpdateLoopType__Enum bgmCxafTAhGyaRRTSDTPlAiCLjtFb; + #else + int32_t bgmCxafTAhGyaRRTSDTPlAiCLjtFb; + #endif +}; + +struct HIDControllerElementWithDataSet_oBWNdsGlGNkIvPlfnFirbraBbQXRA { + struct HIDControllerElementWithDataSet_oBWNdsGlGNkIvPlfnFirbraBbQXRA__Class *klass; + MonitorData *monitor; + struct HIDControllerElementWithDataSet_oBWNdsGlGNkIvPlfnFirbraBbQXRA__Fields fields; +}; + struct __declspec(align(8)) HIDControllerElementWithDataSet_ASMmrihpIiTrkMOmCEZdkAAKnIBH__Fields { int32_t TdJBROyFJFhmiyFibBDnbgLVNhODA; struct Int32__Array *ucOWVRmhYFSfuSKfKIFKobVrBGzIA; @@ -518302,20 +523816,6 @@ struct HIDControllerElementWithDataSet_ASMmrihpIiTrkMOmCEZdkAAKnIBH { struct HIDControllerElementWithDataSet_ASMmrihpIiTrkMOmCEZdkAAKnIBH__Fields fields; }; -struct __declspec(align(8)) HIDControllerElementWithDataSet_oBWNdsGlGNkIvPlfnFirbraBbQXRA__Fields { - #if defined(_CPLUSPLUS_) - UpdateLoopType__Enum bgmCxafTAhGyaRRTSDTPlAiCLjtFb; - #else - int32_t bgmCxafTAhGyaRRTSDTPlAiCLjtFb; - #endif -}; - -struct HIDControllerElementWithDataSet_oBWNdsGlGNkIvPlfnFirbraBbQXRA { - struct HIDControllerElementWithDataSet_oBWNdsGlGNkIvPlfnFirbraBbQXRA__Class *klass; - MonitorData *monitor; - struct HIDControllerElementWithDataSet_oBWNdsGlGNkIvPlfnFirbraBbQXRA__Fields fields; -}; - struct HIDGyroscope_HthzinbRugoaagzayJvkuiHIZxnA__Fields { struct HIDControllerElementWithDataSet_oBWNdsGlGNkIvPlfnFirbraBbQXRA__Fields _; struct Single__Array *CVTFbDuMfhUDUDPbpHNOYUTPdtgO; @@ -518331,6 +523831,17 @@ struct HIDGyroscope_HthzinbRugoaagzayJvkuiHIZxnA { struct HIDGyroscope_HthzinbRugoaagzayJvkuiHIZxnA__Fields fields; }; +struct __declspec(align(8)) HIDGyroscope_DeAenLGYTqNyWDVKOCMDwbfhHVkGA__Fields { + struct Vector3 hatAXgifZANLeaDlOgiXBXuiqiKZ; + float GeavGgkfWpTPPZZxyjBJQKnMAinD; +}; + +struct HIDGyroscope_DeAenLGYTqNyWDVKOCMDwbfhHVkGA { + struct HIDGyroscope_DeAenLGYTqNyWDVKOCMDwbfhHVkGA__Class *klass; + MonitorData *monitor; + struct HIDGyroscope_DeAenLGYTqNyWDVKOCMDwbfhHVkGA__Fields fields; +}; + struct __declspec(align(8)) RingBuffer_1_Rewired_HID_HIDGyroscope_DeAenLGYTqNyWDVKOCMDwbfhHVkGA___Fields { struct HIDGyroscope_DeAenLGYTqNyWDVKOCMDwbfhHVkGA__Array *DrUMgPmXLnhKspfvtYhETpgwGAdn; int32_t AmnCvjBSkGhAaMYjlMZxEEvbSrui; @@ -518348,17 +523859,6 @@ struct RingBuffer_1_Rewired_HID_HIDGyroscope_DeAenLGYTqNyWDVKOCMDwbfhHVkGA_ { struct RingBuffer_1_Rewired_HID_HIDGyroscope_DeAenLGYTqNyWDVKOCMDwbfhHVkGA___Fields fields; }; -struct __declspec(align(8)) HIDGyroscope_DeAenLGYTqNyWDVKOCMDwbfhHVkGA__Fields { - struct Vector3 hatAXgifZANLeaDlOgiXBXuiqiKZ; - float GeavGgkfWpTPPZZxyjBJQKnMAinD; -}; - -struct HIDGyroscope_DeAenLGYTqNyWDVKOCMDwbfhHVkGA { - struct HIDGyroscope_DeAenLGYTqNyWDVKOCMDwbfhHVkGA__Class *klass; - MonitorData *monitor; - struct HIDGyroscope_DeAenLGYTqNyWDVKOCMDwbfhHVkGA__Fields fields; -}; - struct HIDGyroscope_DeAenLGYTqNyWDVKOCMDwbfhHVkGA__Array { struct HIDGyroscope_DeAenLGYTqNyWDVKOCMDwbfhHVkGA__Array__Class *klass; MonitorData *monitor; @@ -519178,6 +524678,21 @@ struct HidOutputReportHandler__Class { struct HidOutputReportHandler__VTable vtable; }; +struct OutputReport___VTable { +}; + +struct OutputReport___StaticFields { +}; + +struct OutputReport___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct OutputReport___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct OutputReport___VTable vtable; +}; + struct __declspec(align(8)) HIDLight__Fields { uint8_t kzWwzIsyOOVceQnjMaetAwdmRKjgA; uint8_t EgNXkAKuLNANUKIZVNuNqcBYQXlH; @@ -519246,6 +524761,24 @@ struct SpecialDevices_LmfQOMWqeEMyploFNrEhFJQZfChb__Class { struct SpecialDevices_LmfQOMWqeEMyploFNrEhFJQZfChb__VTable vtable; }; +struct HIDTouchpad_TouchData { + int32_t touchId; + float timeStamp; + bool isTouching; + int32_t positionRawX; + int32_t positionRawY; + float positionX; + float positionY; + int32_t positionAbsX; + int32_t positionAbsY; +}; + +struct HIDTouchpad_TouchData__Boxed { + struct HIDTouchpad_TouchData__Class *klass; + MonitorData *monitor; + struct HIDTouchpad_TouchData fields; +}; + struct HIDTouchpad__Fields { struct HIDControllerElement__Fields _; struct HIDTouchpad_TouchpadInfo *FCQnxgkpViixDlqQKlmSlEbKwbUR; @@ -519278,6 +524811,16 @@ struct HIDTouchpad_TouchpadInfo { struct HIDTouchpad_TouchpadInfo__Fields fields; }; +struct __declspec(align(8)) HIDTouchpad_MEbbjOIqfeMIvctgibbviaUtKhNTA__Fields { + struct HIDTouchpad_TouchData__Array *FLlKhzCMzVSMjrJtrjzhyNGKCRdE; +}; + +struct HIDTouchpad_MEbbjOIqfeMIvctgibbviaUtKhNTA { + struct HIDTouchpad_MEbbjOIqfeMIvctgibbviaUtKhNTA__Class *klass; + MonitorData *monitor; + struct HIDTouchpad_MEbbjOIqfeMIvctgibbviaUtKhNTA__Fields fields; +}; + struct __declspec(align(8)) RingBuffer_1_Rewired_HID_HIDTouchpad_MEbbjOIqfeMIvctgibbviaUtKhNTA___Fields { struct HIDTouchpad_MEbbjOIqfeMIvctgibbviaUtKhNTA__Array *DrUMgPmXLnhKspfvtYhETpgwGAdn; int32_t AmnCvjBSkGhAaMYjlMZxEEvbSrui; @@ -519295,34 +524838,6 @@ struct RingBuffer_1_Rewired_HID_HIDTouchpad_MEbbjOIqfeMIvctgibbviaUtKhNTA_ { struct RingBuffer_1_Rewired_HID_HIDTouchpad_MEbbjOIqfeMIvctgibbviaUtKhNTA___Fields fields; }; -struct __declspec(align(8)) HIDTouchpad_MEbbjOIqfeMIvctgibbviaUtKhNTA__Fields { - struct HIDTouchpad_TouchData__Array *FLlKhzCMzVSMjrJtrjzhyNGKCRdE; -}; - -struct HIDTouchpad_MEbbjOIqfeMIvctgibbviaUtKhNTA { - struct HIDTouchpad_MEbbjOIqfeMIvctgibbviaUtKhNTA__Class *klass; - MonitorData *monitor; - struct HIDTouchpad_MEbbjOIqfeMIvctgibbviaUtKhNTA__Fields fields; -}; - -struct HIDTouchpad_TouchData { - int32_t touchId; - float timeStamp; - bool isTouching; - int32_t positionRawX; - int32_t positionRawY; - float positionX; - float positionY; - int32_t positionAbsX; - int32_t positionAbsY; -}; - -struct HIDTouchpad_TouchData__Boxed { - struct HIDTouchpad_TouchData__Class *klass; - MonitorData *monitor; - struct HIDTouchpad_TouchData fields; -}; - struct HIDTouchpad_TouchData__Array { struct HIDTouchpad_TouchData__Array__Class *klass; MonitorData *monitor; @@ -519713,6 +525228,21 @@ struct HIDTouchpad__Class { struct HIDTouchpad__VTable vtable; }; +struct HIDTouchpad_TouchData___VTable { +}; + +struct HIDTouchpad_TouchData___StaticFields { +}; + +struct HIDTouchpad_TouchData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HIDTouchpad_TouchData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HIDTouchpad_TouchData___VTable vtable; +}; + struct wXqziDxSDQplKHYMGHUBhtdrPExn { struct wXqziDxSDQplKHYMGHUBhtdrPExn__Class *klass; MonitorData *monitor; @@ -520837,6 +526367,21 @@ struct DualSenseDriver_RcqfYUfqOIDRmHvdeWVWGXJJzVYFA__Enum__Class { struct DualSenseDriver_RcqfYUfqOIDRmHvdeWVWGXJJzVYFA__Enum__VTable vtable; }; +struct DualSenseDriver_RcqfYUfqOIDRmHvdeWVWGXJJzVYFA___VTable { +}; + +struct DualSenseDriver_RcqfYUfqOIDRmHvdeWVWGXJJzVYFA___StaticFields { +}; + +struct DualSenseDriver_RcqfYUfqOIDRmHvdeWVWGXJJzVYFA___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DualSenseDriver_RcqfYUfqOIDRmHvdeWVWGXJJzVYFA___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DualSenseDriver_RcqfYUfqOIDRmHvdeWVWGXJJzVYFA___VTable vtable; +}; + struct DualShock4Driver__Fields { struct HIDDeviceDriver__Fields _; bool LKkXrYVaLWBIbQFzsqJuDmJQyVoq; @@ -521078,6 +526623,21 @@ struct DualShock4Driver_RIHlgxglKcAvztMHuwTgqKpCHToG__Enum__Class { struct DualShock4Driver_RIHlgxglKcAvztMHuwTgqKpCHToG__Enum__VTable vtable; }; +struct DualShock4Driver_RIHlgxglKcAvztMHuwTgqKpCHToG___VTable { +}; + +struct DualShock4Driver_RIHlgxglKcAvztMHuwTgqKpCHToG___StaticFields { +}; + +struct DualShock4Driver_RIHlgxglKcAvztMHuwTgqKpCHToG___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DualShock4Driver_RIHlgxglKcAvztMHuwTgqKpCHToG___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DualShock4Driver_RIHlgxglKcAvztMHuwTgqKpCHToG___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class HIDDeviceDriver_DriverType__Enum : int32_t { None = 0x00000000, @@ -521320,6 +526880,21 @@ struct XboxOneInputSource_BadConnectionReason__Enum__Class { struct XboxOneInputSource_BadConnectionReason__Enum__VTable vtable; }; +struct XboxOneInputSource_BadConnectionReason___VTable { +}; + +struct XboxOneInputSource_BadConnectionReason___StaticFields { +}; + +struct XboxOneInputSource_BadConnectionReason___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct XboxOneInputSource_BadConnectionReason___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct XboxOneInputSource_BadConnectionReason___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class ConfigVars_AllPlatformVar__Enum : int32_t { DisableKeyboard = 0x00000000, @@ -521470,6 +527045,21 @@ struct IHardwareControllerMap__Class { struct IHardwareControllerMap__VTable vtable; }; +struct InputPlatform___VTable { +}; + +struct InputPlatform___StaticFields { +}; + +struct InputPlatform___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputPlatform___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputPlatform___VTable vtable; +}; + struct IEnumerable_1_Rewired_ControllerElementIdentifier_ { struct IEnumerable_1_Rewired_ControllerElementIdentifier___Class *klass; MonitorData *monitor; @@ -530833,6 +536423,11 @@ struct ComponentController { struct ComponentController__Fields fields; }; +struct IComponentControl { + struct IComponentControl__Class *klass; + MonitorData *monitor; +}; + struct __declspec(align(8)) List_1_Rewired_ComponentControls_IComponentControl___Fields { struct IComponentControl__Array *_items; int32_t _size; @@ -530846,11 +536441,6 @@ struct List_1_Rewired_ComponentControls_IComponentControl_ { struct List_1_Rewired_ComponentControls_IComponentControl___Fields fields; }; -struct IComponentControl { - struct IComponentControl__Class *klass; - MonitorData *monitor; -}; - struct IComponentControl__Array { struct IComponentControl__Array__Class *klass; MonitorData *monitor; @@ -531075,19 +536665,6 @@ struct CustomController_CreateCustomControllerSettings { struct CustomController_CreateCustomControllerSettings__Fields fields; }; -struct __declspec(align(8)) List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB___Fields { - struct CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ { - struct List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB___Class *klass; - MonitorData *monitor; - struct List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB___Fields fields; -}; - struct CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB { #if defined(_CPLUSPLUS_) CustomControllerElementSelector_ElementType__Enum giJxMQDJWUSDwjJuOWLkORDFzQxF; @@ -531104,6 +536681,19 @@ struct CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__Boxed { struct CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB fields; }; +struct __declspec(align(8)) List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB___Fields { + struct CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB_ { + struct List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB___Class *klass; + MonitorData *monitor; + struct List_1_Rewired_ComponentControls_CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB___Fields fields; +}; + struct CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__Array { struct CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB__Array__Class *klass; MonitorData *monitor; @@ -531851,6 +537441,19 @@ struct OXcOHDpoGGXVUtAOolfnMbASfEDk { struct OXcOHDpoGGXVUtAOolfnMbASfEDk__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_OXcOHDpoGGXVUtAOolfnMbASfEDk_hetUcKmEoUtrYIpdaWCDeGGUhEHn_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct OXcOHDpoGGXVUtAOolfnMbASfEDk_hetUcKmEoUtrYIpdaWCDeGGUhEHn *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_OXcOHDpoGGXVUtAOolfnMbASfEDk_hetUcKmEoUtrYIpdaWCDeGGUhEHn___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_OXcOHDpoGGXVUtAOolfnMbASfEDk_hetUcKmEoUtrYIpdaWCDeGGUhEHn___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_OXcOHDpoGGXVUtAOolfnMbASfEDk_hetUcKmEoUtrYIpdaWCDeGGUhEHn_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_OXcOHDpoGGXVUtAOolfnMbASfEDk_hetUcKmEoUtrYIpdaWCDeGGUhEHn___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_OXcOHDpoGGXVUtAOolfnMbASfEDk_hetUcKmEoUtrYIpdaWCDeGGUhEHn___Array *_entries; @@ -531870,19 +537473,6 @@ struct Dictionary_2_System_Int32_OXcOHDpoGGXVUtAOolfnMbASfEDk_hetUcKmEoUtrYIpdaW struct Dictionary_2_System_Int32_OXcOHDpoGGXVUtAOolfnMbASfEDk_hetUcKmEoUtrYIpdaWCDeGGUhEHn___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_OXcOHDpoGGXVUtAOolfnMbASfEDk_hetUcKmEoUtrYIpdaWCDeGGUhEHn_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct OXcOHDpoGGXVUtAOolfnMbASfEDk_hetUcKmEoUtrYIpdaWCDeGGUhEHn *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_OXcOHDpoGGXVUtAOolfnMbASfEDk_hetUcKmEoUtrYIpdaWCDeGGUhEHn___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_OXcOHDpoGGXVUtAOolfnMbASfEDk_hetUcKmEoUtrYIpdaWCDeGGUhEHn___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_OXcOHDpoGGXVUtAOolfnMbASfEDk_hetUcKmEoUtrYIpdaWCDeGGUhEHn_ fields; -}; - struct __declspec(align(8)) OXcOHDpoGGXVUtAOolfnMbASfEDk_hetUcKmEoUtrYIpdaWCDeGGUhEHn__Fields { bool vzGTtLEIaPkHuQaRuEZZmFMDSfjh; bool mGFiXvoDjkhBnzjtBqYrolpkhBjV; @@ -532020,6 +537610,19 @@ struct TouchButton_ButtonUpEventHandler { struct TouchButton_ButtonUpEventHandler__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_EventSystems_PointerEventData_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct PointerEventData *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_EventSystems_PointerEventData___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_EventSystems_PointerEventData___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_EventSystems_PointerEventData_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_UnityEngine_EventSystems_PointerEventData___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_EventSystems_PointerEventData___Array *_entries; @@ -532039,19 +537642,6 @@ struct Dictionary_2_System_Int32_UnityEngine_EventSystems_PointerEventData_ { struct Dictionary_2_System_Int32_UnityEngine_EventSystems_PointerEventData___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_EventSystems_PointerEventData_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct PointerEventData *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_EventSystems_PointerEventData___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_EventSystems_PointerEventData___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_EventSystems_PointerEventData_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_EventSystems_PointerEventData___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_EventSystems_PointerEventData___Array__Class *klass; MonitorData *monitor; @@ -533316,6 +538906,21 @@ struct ICollection_1_OXcOHDpoGGXVUtAOolfnMbASfEDk_hetUcKmEoUtrYIpdaWCDeGGUhEHn__ struct ICollection_1_OXcOHDpoGGXVUtAOolfnMbASfEDk_hetUcKmEoUtrYIpdaWCDeGGUhEHn___VTable vtable; }; +struct OXcOHDpoGGXVUtAOolfnMbASfEDk_hetUcKmEoUtrYIpdaWCDeGGUhEHn___VTable { +}; + +struct OXcOHDpoGGXVUtAOolfnMbASfEDk_hetUcKmEoUtrYIpdaWCDeGGUhEHn___StaticFields { +}; + +struct OXcOHDpoGGXVUtAOolfnMbASfEDk_hetUcKmEoUtrYIpdaWCDeGGUhEHn___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct OXcOHDpoGGXVUtAOolfnMbASfEDk_hetUcKmEoUtrYIpdaWCDeGGUhEHn___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct OXcOHDpoGGXVUtAOolfnMbASfEDk_hetUcKmEoUtrYIpdaWCDeGGUhEHn___VTable vtable; +}; + struct KeyValuePair_2_System_Int32_OXcOHDpoGGXVUtAOolfnMbASfEDk_hetUcKmEoUtrYIpdaWCDeGGUhEHn___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -533772,6 +539377,21 @@ struct ICollection_1_UnityEngine_EventSystems_PointerEventData___Class { struct ICollection_1_UnityEngine_EventSystems_PointerEventData___VTable vtable; }; +struct PointerEventData___VTable { +}; + +struct PointerEventData___StaticFields { +}; + +struct PointerEventData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PointerEventData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PointerEventData___VTable vtable; +}; + struct KeyValuePair_2_System_Int32_UnityEngine_EventSystems_PointerEventData___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -535961,18 +541581,6 @@ struct TouchPad_PressUpEventHandler { struct TouchPad_PressUpEventHandler__Fields fields; }; -struct __declspec(align(8)) TouchPad_yiJyuDElAFOIrssaGqaEzDRoNSSI__Fields { - int32_t rEVDPCCWqIGNGofxgnUSVPjPfEpgb; - struct TouchPad_yiJyuDElAFOIrssaGqaEzDRoNSSI_HPUxaKnanRQyGfrcKFncJRVsbqNi__Array *IvzDiIkngHPgCIuDHtHzkYZNovWA; - int32_t KByPCrlNtvTDxUZggIOsPMXKzebj; -}; - -struct TouchPad_yiJyuDElAFOIrssaGqaEzDRoNSSI { - struct TouchPad_yiJyuDElAFOIrssaGqaEzDRoNSSI__Class *klass; - MonitorData *monitor; - struct TouchPad_yiJyuDElAFOIrssaGqaEzDRoNSSI__Fields fields; -}; - struct __declspec(align(8)) TouchPad_yiJyuDElAFOIrssaGqaEzDRoNSSI_HPUxaKnanRQyGfrcKFncJRVsbqNi__Fields { float mJhyLAWqwyufcQUUFmhgYwXuvFjL; float UwgquKunbQoTXvQHwLDSQEMYYylg; @@ -535985,6 +541593,18 @@ struct TouchPad_yiJyuDElAFOIrssaGqaEzDRoNSSI_HPUxaKnanRQyGfrcKFncJRVsbqNi { struct TouchPad_yiJyuDElAFOIrssaGqaEzDRoNSSI_HPUxaKnanRQyGfrcKFncJRVsbqNi__Fields fields; }; +struct __declspec(align(8)) TouchPad_yiJyuDElAFOIrssaGqaEzDRoNSSI__Fields { + int32_t rEVDPCCWqIGNGofxgnUSVPjPfEpgb; + struct TouchPad_yiJyuDElAFOIrssaGqaEzDRoNSSI_HPUxaKnanRQyGfrcKFncJRVsbqNi__Array *IvzDiIkngHPgCIuDHtHzkYZNovWA; + int32_t KByPCrlNtvTDxUZggIOsPMXKzebj; +}; + +struct TouchPad_yiJyuDElAFOIrssaGqaEzDRoNSSI { + struct TouchPad_yiJyuDElAFOIrssaGqaEzDRoNSSI__Class *klass; + MonitorData *monitor; + struct TouchPad_yiJyuDElAFOIrssaGqaEzDRoNSSI__Fields fields; +}; + struct TouchPad_yiJyuDElAFOIrssaGqaEzDRoNSSI_HPUxaKnanRQyGfrcKFncJRVsbqNi__Array { struct TouchPad_yiJyuDElAFOIrssaGqaEzDRoNSSI_HPUxaKnanRQyGfrcKFncJRVsbqNi__Array__Class *klass; MonitorData *monitor; @@ -537027,6 +542647,19 @@ struct zDZgydkVTSdUNcyzGBFFOHxZsClo_TYlHmkDTznGBMhXHDVLwimyXARDj__Class { struct zDZgydkVTSdUNcyzGBFFOHxZsClo_TYlHmkDTznGBMhXHDVLwimyXARDj__VTable vtable; }; +struct ADictionary_2_TKey_TValue_Entry_System_Type_System_Collections_Generic_List_1_ { + int32_t hashCode; + int32_t next; + struct Type *key; + struct List_1_System_Collections_IList_ *value; +}; + +struct ADictionary_2_TKey_TValue_Entry_System_Type_System_Collections_Generic_List_1___Boxed { + struct ADictionary_2_TKey_TValue_Entry_System_Type_System_Collections_Generic_List_1___Class *klass; + MonitorData *monitor; + struct ADictionary_2_TKey_TValue_Entry_System_Type_System_Collections_Generic_List_1_ fields; +}; + struct __declspec(align(8)) ADictionary_2_System_Type_System_Collections_Generic_List_1___Fields { struct Int32__Array *pGawVZUvYULemJqagZXhjOtPTktC; struct ADictionary_2_TKey_TValue_Entry_System_Type_System_Collections_Generic_List_1___Array *_entries; @@ -537048,19 +542681,6 @@ struct ADictionary_2_System_Type_System_Collections_Generic_List_1_ { struct ADictionary_2_System_Type_System_Collections_Generic_List_1___Fields fields; }; -struct ADictionary_2_TKey_TValue_Entry_System_Type_System_Collections_Generic_List_1_ { - int32_t hashCode; - int32_t next; - struct Type *key; - struct List_1_System_Collections_IList_ *value; -}; - -struct ADictionary_2_TKey_TValue_Entry_System_Type_System_Collections_Generic_List_1___Boxed { - struct ADictionary_2_TKey_TValue_Entry_System_Type_System_Collections_Generic_List_1___Class *klass; - MonitorData *monitor; - struct ADictionary_2_TKey_TValue_Entry_System_Type_System_Collections_Generic_List_1_ fields; -}; - struct __declspec(align(8)) List_1_System_Collections_IList___Fields { struct IList__Array *_items; int32_t _size; @@ -537412,6 +543032,21 @@ struct ICollection_1_List_1_System_Collections_IList___Class { struct ICollection_1_List_1_System_Collections_IList___VTable vtable; }; +struct List_1_System_Collections_IList__1__VTable { +}; + +struct List_1_System_Collections_IList__1__StaticFields { +}; + +struct List_1_System_Collections_IList__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_System_Collections_IList__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_System_Collections_IList__1__VTable vtable; +}; + struct KeyValuePair_2_System_Type_List_1_System_Collections_IList___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -537515,6 +543150,19 @@ struct ADictionary_2_System_Type_System_Collections_Generic_List_1___Class { struct ADictionary_2_System_Type_System_Collections_Generic_List_1___VTable vtable; }; +struct ADictionary_2_TKey_TValue_Entry_System_Type_System_Collections_Generic_List_1__1 { + int32_t hashCode; + int32_t next; + struct Type *key; + struct List_1_System_Object_ *value; +}; + +struct ADictionary_2_TKey_TValue_Entry_System_Type_System_Collections_Generic_List_1__1__Boxed { + struct ADictionary_2_TKey_TValue_Entry_System_Type_System_Collections_Generic_List_1__1__Class *klass; + MonitorData *monitor; + struct ADictionary_2_TKey_TValue_Entry_System_Type_System_Collections_Generic_List_1__1 fields; +}; + struct __declspec(align(8)) ADictionary_2_System_Type_System_Collections_Generic_List_1__1__Fields { struct Int32__Array *pGawVZUvYULemJqagZXhjOtPTktC; struct ADictionary_2_TKey_TValue_Entry_System_Type_System_Collections_Generic_List_1__1__Array *_entries; @@ -537536,19 +543184,6 @@ struct ADictionary_2_System_Type_System_Collections_Generic_List_1__1 { struct ADictionary_2_System_Type_System_Collections_Generic_List_1__1__Fields fields; }; -struct ADictionary_2_TKey_TValue_Entry_System_Type_System_Collections_Generic_List_1__1 { - int32_t hashCode; - int32_t next; - struct Type *key; - struct List_1_System_Object_ *value; -}; - -struct ADictionary_2_TKey_TValue_Entry_System_Type_System_Collections_Generic_List_1__1__Boxed { - struct ADictionary_2_TKey_TValue_Entry_System_Type_System_Collections_Generic_List_1__1__Class *klass; - MonitorData *monitor; - struct ADictionary_2_TKey_TValue_Entry_System_Type_System_Collections_Generic_List_1__1 fields; -}; - struct ADictionary_2_TKey_TValue_Entry_System_Type_System_Collections_Generic_List_1__1__Array { struct ADictionary_2_TKey_TValue_Entry_System_Type_System_Collections_Generic_List_1__1__Array__Class *klass; MonitorData *monitor; @@ -537792,6 +543427,21 @@ struct ICollection_1_List_1_System_Object___Class { struct ICollection_1_List_1_System_Object___VTable vtable; }; +struct List_1_System_Object__1__VTable { +}; + +struct List_1_System_Object__1__StaticFields { +}; + +struct List_1_System_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_System_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_System_Object__1__VTable vtable; +}; + struct KeyValuePair_2_System_Type_List_1_System_Object___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -537953,6 +543603,21 @@ struct GUIContent__Array__Class { struct GUIContent__Array__VTable vtable; }; +struct HatType___VTable { +}; + +struct HatType___StaticFields { +}; + +struct HatType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HatType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HatType___VTable vtable; +}; + struct MathTools { struct MathTools__Class *klass; MonitorData *monitor; @@ -539346,6 +545011,19 @@ struct ObjectInstanceTracker { struct ObjectInstanceTracker__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_UInt32_System_Object_ { + int32_t hashCode; + int32_t next; + uint32_t key; + struct Object *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_UInt32_System_Object___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_UInt32_System_Object___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_UInt32_System_Object_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_UInt32_System_Object___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_UInt32_System_Object___Array *_entries; @@ -539365,19 +545043,6 @@ struct Dictionary_2_System_UInt32_System_Object_ { struct Dictionary_2_System_UInt32_System_Object___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_UInt32_System_Object_ { - int32_t hashCode; - int32_t next; - uint32_t key; - struct Object *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_UInt32_System_Object___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_UInt32_System_Object___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_UInt32_System_Object_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_UInt32_System_Object___Array { struct Dictionary_2_TKey_TValue_Entry_System_UInt32_System_Object___Array__Class *klass; MonitorData *monitor; @@ -539823,6 +545488,21 @@ struct DualThreadLowLevelInputEventQueue_INewEventWrapper__Class { struct DualThreadLowLevelInputEventQueue_INewEventWrapper__VTable vtable; }; +struct LowLevelInputEvent___VTable { +}; + +struct LowLevelInputEvent___StaticFields { +}; + +struct LowLevelInputEvent___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct LowLevelInputEvent___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct LowLevelInputEvent___VTable vtable; +}; + struct __declspec(align(8)) UnityStopwatch__Fields { struct UnityStopwatch_PYePjHpKfNYrvlzkbfDzgKoCtUGl *OgdavOFJqnPSpQtPLdRHDotglaTic; bool PGqXpLfPEWlZKTCNkgsWyaxoSKPf; @@ -541583,6 +547263,11 @@ struct OpenVRHMD { struct OpenVRHMD__Fields fields; }; +struct InputProcessor_1_System_Int32_ { + struct InputProcessor_1_System_Int32___Class *klass; + MonitorData *monitor; +}; + struct InlinedArray_1_UnityEngine_InputSystem_InputProcessor_1_ { int32_t length; struct InputProcessor_1_System_Int32_ *firstValue; @@ -541619,11 +547304,6 @@ struct IntegerControl { struct IntegerControl__Fields fields; }; -struct InputProcessor_1_System_Int32_ { - struct InputProcessor_1_System_Int32___Class *klass; - MonitorData *monitor; -}; - struct InputProcessor_1_System_Int32___Array { struct InputProcessor_1_System_Int32___Array__Class *klass; MonitorData *monitor; @@ -541749,6 +547429,11 @@ struct AnyKeyControl { struct AnyKeyControl__Fields fields; }; +struct InputProcessor_1_UnityEngine_Vector3_ { + struct InputProcessor_1_UnityEngine_Vector3___Class *klass; + MonitorData *monitor; +}; + struct InlinedArray_1_UnityEngine_InputSystem_InputProcessor_1__2 { int32_t length; struct InputProcessor_1_UnityEngine_Vector3_ *firstValue; @@ -541788,11 +547473,6 @@ struct Vector3Control { struct Vector3Control__Fields fields; }; -struct InputProcessor_1_UnityEngine_Vector3_ { - struct InputProcessor_1_UnityEngine_Vector3___Class *klass; - MonitorData *monitor; -}; - struct CompensateDirectionProcessor { struct CompensateDirectionProcessor__Class *klass; MonitorData *monitor; @@ -541811,6 +547491,11 @@ struct IEnumerator_1_UnityEngine_InputSystem_InputProcessor_1__2 { MonitorData *monitor; }; +struct InputProcessor_1_UnityEngine_Quaternion_ { + struct InputProcessor_1_UnityEngine_Quaternion___Class *klass; + MonitorData *monitor; +}; + struct InlinedArray_1_UnityEngine_InputSystem_InputProcessor_1__3 { int32_t length; struct InputProcessor_1_UnityEngine_Quaternion_ *firstValue; @@ -541851,11 +547536,6 @@ struct QuaternionControl { struct QuaternionControl__Fields fields; }; -struct InputProcessor_1_UnityEngine_Quaternion_ { - struct InputProcessor_1_UnityEngine_Quaternion___Class *klass; - MonitorData *monitor; -}; - struct CompensateRotationProcessor { struct CompensateRotationProcessor__Class *klass; MonitorData *monitor; @@ -542719,6 +548399,11 @@ struct OpenVRControllerWMR { struct OpenVRControllerWMR__Fields fields; }; +struct InputProcessor_1_UnityEngine_Vector2_ { + struct InputProcessor_1_UnityEngine_Vector2___Class *klass; + MonitorData *monitor; +}; + struct InlinedArray_1_UnityEngine_InputSystem_InputProcessor_1__4 { int32_t length; struct InputProcessor_1_UnityEngine_Vector2_ *firstValue; @@ -542757,11 +548442,6 @@ struct Vector2Control { struct Vector2Control__Fields fields; }; -struct InputProcessor_1_UnityEngine_Vector2_ { - struct InputProcessor_1_UnityEngine_Vector2___Class *klass; - MonitorData *monitor; -}; - struct __declspec(align(8)) InvertVector2Processor__Fields { bool invertX; bool invertY; @@ -544197,29 +549877,22 @@ struct Nullable_1_UnityEngine_InputSystem_InputControlScheme___Class { struct Nullable_1_UnityEngine_InputSystem_InputControlScheme___VTable vtable; }; -struct InputActionAsset_ReadFileJson { - struct String *name; - struct InputActionMap_ReadMapJson__Array *maps; - struct InputControlScheme_SchemeJson__Array *controlSchemes; -}; - -struct InputActionAsset_ReadFileJson__Boxed { - struct InputActionAsset_ReadFileJson__Class *klass; - MonitorData *monitor; - struct InputActionAsset_ReadFileJson fields; -}; - -struct InputActionMap_ReadMapJson { +struct InputActionMap_BindingJson { struct String *name; struct String *id; - struct InputActionMap_ReadActionJson__Array *actions; - struct InputActionMap_BindingJson__Array *bindings; + struct String *path; + struct String *interactions; + struct String *processors; + struct String *groups; + struct String *action; + bool isComposite; + bool isPartOfComposite; }; -struct InputActionMap_ReadMapJson__Boxed { - struct InputActionMap_ReadMapJson__Class *klass; +struct InputActionMap_BindingJson__Boxed { + struct InputActionMap_BindingJson__Class *klass; MonitorData *monitor; - struct InputActionMap_ReadMapJson fields; + struct InputActionMap_BindingJson fields; }; struct InputActionMap_ReadActionJson { @@ -544241,22 +549914,53 @@ struct InputActionMap_ReadActionJson__Boxed { struct InputActionMap_ReadActionJson fields; }; -struct InputActionMap_BindingJson { +struct InputActionMap_ReadMapJson { struct String *name; struct String *id; - struct String *path; - struct String *interactions; - struct String *processors; - struct String *groups; - struct String *action; - bool isComposite; - bool isPartOfComposite; + struct InputActionMap_ReadActionJson__Array *actions; + struct InputActionMap_BindingJson__Array *bindings; }; -struct InputActionMap_BindingJson__Boxed { - struct InputActionMap_BindingJson__Class *klass; +struct InputActionMap_ReadMapJson__Boxed { + struct InputActionMap_ReadMapJson__Class *klass; MonitorData *monitor; - struct InputActionMap_BindingJson fields; + struct InputActionMap_ReadMapJson fields; +}; + +struct InputControlScheme_SchemeJson_DeviceJson { + struct String *devicePath; + bool isOptional; + bool isOR; +}; + +struct InputControlScheme_SchemeJson_DeviceJson__Boxed { + struct InputControlScheme_SchemeJson_DeviceJson__Class *klass; + MonitorData *monitor; + struct InputControlScheme_SchemeJson_DeviceJson fields; +}; + +struct InputControlScheme_SchemeJson { + struct String *name; + struct String *bindingGroup; + struct InputControlScheme_SchemeJson_DeviceJson__Array *devices; +}; + +struct InputControlScheme_SchemeJson__Boxed { + struct InputControlScheme_SchemeJson__Class *klass; + MonitorData *monitor; + struct InputControlScheme_SchemeJson fields; +}; + +struct InputActionAsset_ReadFileJson { + struct String *name; + struct InputActionMap_ReadMapJson__Array *maps; + struct InputControlScheme_SchemeJson__Array *controlSchemes; +}; + +struct InputActionAsset_ReadFileJson__Boxed { + struct InputActionAsset_ReadFileJson__Class *klass; + MonitorData *monitor; + struct InputActionAsset_ReadFileJson fields; }; struct InputActionMap_BindingJson__Array { @@ -544283,30 +549987,6 @@ struct InputActionMap_ReadMapJson__Array { struct InputActionMap_ReadMapJson vector[32]; }; -struct InputControlScheme_SchemeJson { - struct String *name; - struct String *bindingGroup; - struct InputControlScheme_SchemeJson_DeviceJson__Array *devices; -}; - -struct InputControlScheme_SchemeJson__Boxed { - struct InputControlScheme_SchemeJson__Class *klass; - MonitorData *monitor; - struct InputControlScheme_SchemeJson fields; -}; - -struct InputControlScheme_SchemeJson_DeviceJson { - struct String *devicePath; - bool isOptional; - bool isOR; -}; - -struct InputControlScheme_SchemeJson_DeviceJson__Boxed { - struct InputControlScheme_SchemeJson_DeviceJson__Class *klass; - MonitorData *monitor; - struct InputControlScheme_SchemeJson_DeviceJson fields; -}; - struct InputControlScheme_SchemeJson_DeviceJson__Array { struct InputControlScheme_SchemeJson_DeviceJson__Array__Class *klass; MonitorData *monitor; @@ -544685,6 +550365,21 @@ struct InputActionMap_BindingOverrideJson__Class { struct InputActionMap_BindingOverrideJson__VTable vtable; }; +struct InputBinding___VTable { +}; + +struct InputBinding___StaticFields { +}; + +struct InputBinding___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputBinding___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputBinding___VTable vtable; +}; + struct InputActionMap_WriteActionJson { struct String *name; struct String *type; @@ -544887,6 +550582,21 @@ struct Nullable_1_UnityEngine_InputSystem_Utilities_PrimitiveValue___Class { struct Nullable_1_UnityEngine_InputSystem_Utilities_PrimitiveValue___VTable vtable; }; +struct InputActionRebindingExtensions_ParameterOverride___VTable { +}; + +struct InputActionRebindingExtensions_ParameterOverride___StaticFields { +}; + +struct InputActionRebindingExtensions_ParameterOverride___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputActionRebindingExtensions_ParameterOverride___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputActionRebindingExtensions_ParameterOverride___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class InputBinding_DisplayStringOptions__Enum : int32_t { DontUseShortDisplayNames = 0x00000001, @@ -545256,6 +550966,19 @@ struct Action_2_UnityEngine_InputSystem_LowLevel_InputEventPtr_UnityEngine_Input struct Action_2_UnityEngine_InputSystem_LowLevel_InputEventPtr_UnityEngine_InputSystem_InputDevice___Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_ { + int32_t hashCode; + int32_t next; + struct InternedString key; + struct InputControlLayout *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout___Array *_entries; @@ -545275,19 +550998,6 @@ struct Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine struct Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_ { - int32_t hashCode; - int32_t next; - struct InternedString key; - struct InputControlLayout *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_ fields; -}; - struct InlinedArray_1_InternedString_ { int32_t length; struct InternedString firstValue; @@ -545300,63 +551010,6 @@ struct InlinedArray_1_InternedString___Boxed { struct InlinedArray_1_InternedString_ fields; }; -#if defined(_CPLUSPLUS_) -enum class InputControlLayout_Flags__Enum : int32_t { - IsGenericTypeOfDevice = 0x00000001, - HideInUI = 0x00000002, - IsOverride = 0x00000004, - CanRunInBackground = 0x00000008, - CanRunInBackgroundIsSet = 0x00000010, - IsNoisy = 0x00000020, -}; - -#else -enum InputControlLayout_Flags__Enum { - InputControlLayout_Flags__Enum_IsGenericTypeOfDevice = 0x00000001, - InputControlLayout_Flags__Enum_HideInUI = 0x00000002, - InputControlLayout_Flags__Enum_IsOverride = 0x00000004, - InputControlLayout_Flags__Enum_CanRunInBackground = 0x00000008, - InputControlLayout_Flags__Enum_CanRunInBackgroundIsSet = 0x00000010, - InputControlLayout_Flags__Enum_IsNoisy = 0x00000020, -}; - -#endif -struct InputControlLayout_Flags__Enum__Boxed { - struct InputControlLayout_Flags__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - InputControlLayout_Flags__Enum value; - #else - int32_t value; - #endif -}; - -struct __declspec(align(8)) InputControlLayout__Fields { - struct InternedString m_Name; - struct Type *m_Type; - struct InternedString m_Variants; - struct FourCC m_StateFormat; - int32_t m_StateSizeInBytes; - struct Nullable_1_Boolean_ m_UpdateBeforeRender; - struct InlinedArray_1_InternedString_ m_BaseLayouts; - struct InlinedArray_1_InternedString_ m_AppliedOverrides; - struct InternedString__Array *m_CommonUsages; - struct InputControlLayout_ControlItem__Array *m_Controls; - struct String *m_DisplayName; - struct String *m_Description; - #if defined(_CPLUSPLUS_) - InputControlLayout_Flags__Enum m_Flags; - #else - int32_t m_Flags; - #endif -}; - -struct InputControlLayout { - struct InputControlLayout__Class *klass; - MonitorData *monitor; - struct InputControlLayout__Fields fields; -}; - struct ReadOnlyArray_1_InternedString_ { struct InternedString__Array *m_Array; int32_t m_StartIndex; @@ -545369,6 +551022,17 @@ struct ReadOnlyArray_1_InternedString___Boxed { struct ReadOnlyArray_1_InternedString_ fields; }; +struct NamedValue { + struct String *_name_k__BackingField; + struct PrimitiveValue _value_k__BackingField; +}; + +struct NamedValue__Boxed { + struct NamedValue__Class *klass; + MonitorData *monitor; + struct NamedValue fields; +}; + struct ReadOnlyArray_1_NamedValue_ { struct NamedValue__Array *m_Array; int32_t m_StartIndex; @@ -545381,6 +551045,17 @@ struct ReadOnlyArray_1_NamedValue___Boxed { struct ReadOnlyArray_1_NamedValue_ fields; }; +struct NameAndParameters { + struct String *_name_k__BackingField; + struct ReadOnlyArray_1_NamedValue_ _parameters_k__BackingField; +}; + +struct NameAndParameters__Boxed { + struct NameAndParameters__Class *klass; + MonitorData *monitor; + struct NameAndParameters fields; +}; + struct ReadOnlyArray_1_NameAndParameters_ { struct NameAndParameters__Array *m_Array; int32_t m_StartIndex; @@ -545454,15 +551129,61 @@ struct InputControlLayout_ControlItem__Boxed { struct InputControlLayout_ControlItem fields; }; -struct NamedValue { - struct String *_name_k__BackingField; - struct PrimitiveValue _value_k__BackingField; +#if defined(_CPLUSPLUS_) +enum class InputControlLayout_Flags__Enum : int32_t { + IsGenericTypeOfDevice = 0x00000001, + HideInUI = 0x00000002, + IsOverride = 0x00000004, + CanRunInBackground = 0x00000008, + CanRunInBackgroundIsSet = 0x00000010, + IsNoisy = 0x00000020, }; -struct NamedValue__Boxed { - struct NamedValue__Class *klass; +#else +enum InputControlLayout_Flags__Enum { + InputControlLayout_Flags__Enum_IsGenericTypeOfDevice = 0x00000001, + InputControlLayout_Flags__Enum_HideInUI = 0x00000002, + InputControlLayout_Flags__Enum_IsOverride = 0x00000004, + InputControlLayout_Flags__Enum_CanRunInBackground = 0x00000008, + InputControlLayout_Flags__Enum_CanRunInBackgroundIsSet = 0x00000010, + InputControlLayout_Flags__Enum_IsNoisy = 0x00000020, +}; + +#endif +struct InputControlLayout_Flags__Enum__Boxed { + struct InputControlLayout_Flags__Enum__Class *klass; MonitorData *monitor; - struct NamedValue fields; + #if defined(_CPLUSPLUS_) + InputControlLayout_Flags__Enum value; + #else + int32_t value; + #endif +}; + +struct __declspec(align(8)) InputControlLayout__Fields { + struct InternedString m_Name; + struct Type *m_Type; + struct InternedString m_Variants; + struct FourCC m_StateFormat; + int32_t m_StateSizeInBytes; + struct Nullable_1_Boolean_ m_UpdateBeforeRender; + struct InlinedArray_1_InternedString_ m_BaseLayouts; + struct InlinedArray_1_InternedString_ m_AppliedOverrides; + struct InternedString__Array *m_CommonUsages; + struct InputControlLayout_ControlItem__Array *m_Controls; + struct String *m_DisplayName; + struct String *m_Description; + #if defined(_CPLUSPLUS_) + InputControlLayout_Flags__Enum m_Flags; + #else + int32_t m_Flags; + #endif +}; + +struct InputControlLayout { + struct InputControlLayout__Class *klass; + MonitorData *monitor; + struct InputControlLayout__Fields fields; }; struct NamedValue__Array { @@ -545478,17 +551199,6 @@ struct IEnumerator_1_UnityEngine_InputSystem_Utilities_NamedValue_ { MonitorData *monitor; }; -struct NameAndParameters { - struct String *_name_k__BackingField; - struct ReadOnlyArray_1_NamedValue_ _parameters_k__BackingField; -}; - -struct NameAndParameters__Boxed { - struct NameAndParameters__Class *klass; - MonitorData *monitor; - struct NameAndParameters fields; -}; - struct NameAndParameters__Array { struct NameAndParameters__Array__Class *klass; MonitorData *monitor; @@ -545527,6 +551237,19 @@ struct InputControlLayout_Collection__Boxed { struct InputControlLayout_Collection fields; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_System_String_ { + int32_t hashCode; + int32_t next; + struct InternedString key; + struct String *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_System_String___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_System_String___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_System_String_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_String___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_System_String___Array *_entries; @@ -545546,19 +551269,6 @@ struct Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_Stri struct Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_String___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_System_String_ { - int32_t hashCode; - int32_t next; - struct InternedString key; - struct String *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_System_String___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_System_String___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_System_String_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_System_String___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_System_String___Array__Class *klass; MonitorData *monitor; @@ -545611,6 +551321,19 @@ struct IEnumerator_1_KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedSt MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_System_Func_1_ { + int32_t hashCode; + int32_t next; + struct InternedString key; + struct Func_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_System_Func_1___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_System_Func_1___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_System_Func_1_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_Func_1___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_System_Func_1___Array *_entries; @@ -545630,19 +551353,6 @@ struct Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_Func struct Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_Func_1___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_System_Func_1_ { - int32_t hashCode; - int32_t next; - struct InternedString key; - struct Func_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_System_Func_1___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_System_Func_1___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_System_Func_1_ fields; -}; - struct Func_1_UnityEngine_InputSystem_Layouts_InputControlLayout___Fields { struct MulticastDelegate__Fields _; }; @@ -545728,6 +551438,19 @@ struct IEnumerable_1_System_Func_1_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_ { + int32_t hashCode; + int32_t next; + struct InternedString key; + struct InternedString value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString___Array *_entries; @@ -545747,19 +551470,6 @@ struct Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine struct Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_ { - int32_t hashCode; - int32_t next; - struct InternedString key; - struct InternedString value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString___Array__Class *klass; MonitorData *monitor; @@ -545812,6 +551522,19 @@ struct IEnumerator_1_KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedSt MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__1 { + int32_t hashCode; + int32_t next; + struct InternedString key; + struct InternedString__Array *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__1__Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__1__Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__1 fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__1__Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__1__Array *_entries; @@ -545831,19 +551554,6 @@ struct Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine struct Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__1__Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__1 { - int32_t hashCode; - int32_t next; - struct InternedString key; - struct InternedString__Array *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__1__Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__1__Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__1 fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__1__Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__1__Array__Class *klass; MonitorData *monitor; @@ -545919,6 +551629,18 @@ struct IEnumerable_1_UnityEngine_InputSystem_Utilities_InternedString__1 { MonitorData *monitor; }; +struct HashSet_1_T_Slot_UnityEngine_InputSystem_Utilities_InternedString_ { + int32_t hashCode; + int32_t next; + struct InternedString value; +}; + +struct HashSet_1_T_Slot_UnityEngine_InputSystem_Utilities_InternedString___Boxed { + struct HashSet_1_T_Slot_UnityEngine_InputSystem_Utilities_InternedString___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_UnityEngine_InputSystem_Utilities_InternedString_ fields; +}; + struct __declspec(align(8)) HashSet_1_UnityEngine_InputSystem_Utilities_InternedString___Fields { struct Int32__Array *_buckets; struct HashSet_1_T_Slot_UnityEngine_InputSystem_Utilities_InternedString___Array *_slots; @@ -545936,18 +551658,6 @@ struct HashSet_1_UnityEngine_InputSystem_Utilities_InternedString_ { struct HashSet_1_UnityEngine_InputSystem_Utilities_InternedString___Fields fields; }; -struct HashSet_1_T_Slot_UnityEngine_InputSystem_Utilities_InternedString_ { - int32_t hashCode; - int32_t next; - struct InternedString value; -}; - -struct HashSet_1_T_Slot_UnityEngine_InputSystem_Utilities_InternedString___Boxed { - struct HashSet_1_T_Slot_UnityEngine_InputSystem_Utilities_InternedString___Class *klass; - MonitorData *monitor; - struct HashSet_1_T_Slot_UnityEngine_InputSystem_Utilities_InternedString_ fields; -}; - struct HashSet_1_T_Slot_UnityEngine_InputSystem_Utilities_InternedString___Array { struct HashSet_1_T_Slot_UnityEngine_InputSystem_Utilities_InternedString___Array__Class *klass; MonitorData *monitor; @@ -545956,25 +551666,6 @@ struct HashSet_1_T_Slot_UnityEngine_InputSystem_Utilities_InternedString___Array struct HashSet_1_T_Slot_UnityEngine_InputSystem_Utilities_InternedString_ vector[32]; }; -struct __declspec(align(8)) Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout___Fields { - struct Int32__Array *_buckets; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout___Array *_entries; - int32_t _count; - int32_t _freeList; - int32_t _freeCount; - int32_t _version; - struct IEqualityComparer_1_UnityEngine_InputSystem_Utilities_InternedString_ *_comparer; - struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ *_keys; - struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ *_values; - struct Object *_syncRoot; -}; - -struct Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ { - struct Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout___Class *klass; - MonitorData *monitor; - struct Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout___Fields fields; -}; - struct InputControlLayout_Collection_PrecompiledLayout { struct Func_1_UnityEngine_InputSystem_InputDevice_ *factoryMethod; struct String *metadata; @@ -545999,6 +551690,25 @@ struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_Interned struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ fields; }; +struct __declspec(align(8)) Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_UnityEngine_InputSystem_Utilities_InternedString_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout_ { + struct Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout___Class *klass; + MonitorData *monitor; + struct Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout___Fields fields; +}; + struct Func_1_UnityEngine_InputSystem_InputDevice___Fields { struct MulticastDelegate__Fields _; }; @@ -546084,17 +551794,15 @@ struct IEnumerable_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collecti MonitorData *monitor; }; -struct __declspec(align(8)) List_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher___Fields { - struct InputControlLayout_Collection_LayoutMatcher__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; +struct KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object_ { + struct InternedString key; + struct Object *value; }; -struct List_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher_ { - struct List_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher___Class *klass; +struct KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object___Boxed { + struct KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object___Class *klass; MonitorData *monitor; - struct List_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher___Fields fields; + struct KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object_ fields; }; struct InputDeviceMatcher { @@ -546118,15 +551826,17 @@ struct InputControlLayout_Collection_LayoutMatcher__Boxed { struct InputControlLayout_Collection_LayoutMatcher fields; }; -struct KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object_ { - struct InternedString key; - struct Object *value; +struct __declspec(align(8)) List_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher___Fields { + struct InputControlLayout_Collection_LayoutMatcher__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; }; -struct KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object___Boxed { - struct KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object___Class *klass; +struct List_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher_ { + struct List_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher___Class *klass; MonitorData *monitor; - struct KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object_ fields; + struct List_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_LayoutMatcher___Fields fields; }; struct KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object___Array { @@ -546225,6 +551935,19 @@ struct IEnumerable_1_UnityEngine_InputSystem_Layouts_InputControlLayout_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_InputControl_System_Single_ { + int32_t hashCode; + int32_t next; + struct InputControl *key; + float value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_InputControl_System_Single___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_InputControl_System_Single___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_InputControl_System_Single_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_InputSystem_InputControl_System_Single___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_InputControl_System_Single___Array *_entries; @@ -546244,19 +551967,6 @@ struct Dictionary_2_UnityEngine_InputSystem_InputControl_System_Single_ { struct Dictionary_2_UnityEngine_InputSystem_InputControl_System_Single___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_InputControl_System_Single_ { - int32_t hashCode; - int32_t next; - struct InputControl *key; - float value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_InputControl_System_Single___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_InputControl_System_Single___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_InputControl_System_Single_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_InputControl_System_Single___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_InputControl_System_Single___Array__Class *klass; MonitorData *monitor; @@ -547220,6 +552930,21 @@ struct ICollection_1_System_Func_1___Class { struct ICollection_1_System_Func_1___VTable vtable; }; +struct Func_1_UnityEngine_InputSystem_Layouts_InputControlLayout__1__VTable { +}; + +struct Func_1_UnityEngine_InputSystem_Layouts_InputControlLayout__1__StaticFields { +}; + +struct Func_1_UnityEngine_InputSystem_Layouts_InputControlLayout__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_1_UnityEngine_InputSystem_Layouts_InputControlLayout__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_1_UnityEngine_InputSystem_Layouts_InputControlLayout__1__VTable vtable; +}; + struct KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_System_Func_1___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -547445,6 +553170,21 @@ struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_InputSystem_Utilitie struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString___VTable vtable; }; +struct InternedString___VTable { +}; + +struct InternedString___StaticFields { +}; + +struct InternedString___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InternedString___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InternedString___VTable vtable; +}; + struct KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -547707,6 +553447,21 @@ struct ICollection_1_UnityEngine_InputSystem_Utilities_InternedString__1__Class struct ICollection_1_UnityEngine_InputSystem_Utilities_InternedString__1__VTable vtable; }; +struct InternedString__1__VTable { +}; + +struct InternedString__1__StaticFields { +}; + +struct InternedString__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InternedString__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InternedString__1__VTable vtable; +}; + struct KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString__1__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -548111,6 +553866,21 @@ struct ICollection_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collecti struct ICollection_1_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout___VTable vtable; }; +struct InputControlLayout_Collection_PrecompiledLayout___VTable { +}; + +struct InputControlLayout_Collection_PrecompiledLayout___StaticFields { +}; + +struct InputControlLayout_Collection_PrecompiledLayout___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputControlLayout_Collection_PrecompiledLayout___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputControlLayout_Collection_PrecompiledLayout___VTable vtable; +}; + struct KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -548591,6 +554361,21 @@ struct ICollection_1_UnityEngine_InputSystem_Layouts_InputControlLayout___Class struct ICollection_1_UnityEngine_InputSystem_Layouts_InputControlLayout___VTable vtable; }; +struct InputControlLayout___VTable { +}; + +struct InputControlLayout___StaticFields { +}; + +struct InputControlLayout___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputControlLayout___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputControlLayout___VTable vtable; +}; + struct KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -549570,6 +555355,66 @@ struct InputBindingResolver__Class { struct InputBindingResolver__VTable vtable; }; +struct InputControlList_1_InputControl__1__VTable { +}; + +struct InputControlList_1_InputControl__1__StaticFields { +}; + +struct InputControlList_1_InputControl__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputControlList_1_InputControl__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputControlList_1_InputControl__1__VTable vtable; +}; + +struct InputActionState_TriggerState___VTable { +}; + +struct InputActionState_TriggerState___StaticFields { +}; + +struct InputActionState_TriggerState___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputActionState_TriggerState___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputActionState_TriggerState___VTable vtable; +}; + +struct CallbackArray_1_System_Action_1__2__VTable { +}; + +struct CallbackArray_1_System_Action_1__2__StaticFields { +}; + +struct CallbackArray_1_System_Action_1__2__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CallbackArray_1_System_Action_1__2__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CallbackArray_1_System_Action_1__2__VTable vtable; +}; + +struct InputActionState_BindingState___VTable { +}; + +struct InputActionState_BindingState___StaticFields { +}; + +struct InputActionState_BindingState___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputActionState_BindingState___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputActionState_BindingState___VTable vtable; +}; + struct ISavedState { struct ISavedState__Class *klass; MonitorData *monitor; @@ -549890,6 +555735,21 @@ struct SavedStructState_1_T_TypedRestore_UnityEngine_InputSystem_InputActionStat struct SavedStructState_1_T_TypedRestore_UnityEngine_InputSystem_InputActionState_GlobalState___Fields fields; }; +struct InputActionState_GlobalState___VTable { +}; + +struct InputActionState_GlobalState___StaticFields { +}; + +struct InputActionState_GlobalState___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputActionState_GlobalState___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputActionState_GlobalState___VTable vtable; +}; + struct SavedStructState_1_T_TypedRestore_UnityEngine_InputSystem_InputActionState_GlobalState___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -550872,6 +556732,36 @@ struct InputDeviceExecuteCommandDelegate { struct InputDeviceExecuteCommandDelegate__Fields fields; }; +struct InputDeviceDescription___VTable { +}; + +struct InputDeviceDescription___StaticFields { +}; + +struct InputDeviceDescription___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputDeviceDescription___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputDeviceDescription___VTable vtable; +}; + +struct InputDeviceCommand___VTable { +}; + +struct InputDeviceCommand___StaticFields { +}; + +struct InputDeviceCommand___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputDeviceCommand___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputDeviceCommand___VTable vtable; +}; + struct InputDeviceExecuteCommandDelegate__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -551051,6 +556941,11 @@ struct InputEventListener__Boxed { struct InputEventListener fields; }; +struct IObserver_1_UnityEngine_InputSystem_LowLevel_InputEventPtr_ { + struct IObserver_1_UnityEngine_InputSystem_LowLevel_InputEventPtr___Class *klass; + MonitorData *monitor; +}; + struct InlinedArray_1_System_IObserver_1_ { int32_t length; struct IObserver_1_UnityEngine_InputSystem_LowLevel_InputEventPtr_ *firstValue; @@ -551074,11 +556969,6 @@ struct InputEventListener_ObserverState { struct InputEventListener_ObserverState__Fields fields; }; -struct IObserver_1_UnityEngine_InputSystem_LowLevel_InputEventPtr_ { - struct IObserver_1_UnityEngine_InputSystem_LowLevel_InputEventPtr___Class *klass; - MonitorData *monitor; -}; - struct IObserver_1_UnityEngine_InputSystem_LowLevel_InputEventPtr___Array { struct IObserver_1_UnityEngine_InputSystem_LowLevel_InputEventPtr___Array__Class *klass; MonitorData *monitor; @@ -551569,6 +557459,41 @@ struct InputRemoting_Flags__Enum__Boxed { #endif }; +struct __declspec(align(8)) InputRemoting_Subscriber__Fields { + struct InputRemoting *owner; + struct IObserver_1_UnityEngine_InputSystem_InputRemoting_Message_ *observer; +}; + +struct InputRemoting_Subscriber { + struct InputRemoting_Subscriber__Class *klass; + MonitorData *monitor; + struct InputRemoting_Subscriber__Fields fields; +}; + +struct InputRemoting_RemoteInputDevice { + int32_t remoteId; + int32_t localId; + struct InputDeviceDescription description; +}; + +struct InputRemoting_RemoteInputDevice__Boxed { + struct InputRemoting_RemoteInputDevice__Class *klass; + MonitorData *monitor; + struct InputRemoting_RemoteInputDevice fields; +}; + +struct InputRemoting_RemoteSender { + int32_t senderId; + struct InternedString__Array *layouts; + struct InputRemoting_RemoteInputDevice__Array *devices; +}; + +struct InputRemoting_RemoteSender__Boxed { + struct InputRemoting_RemoteSender__Class *klass; + MonitorData *monitor; + struct InputRemoting_RemoteSender fields; +}; + struct __declspec(align(8)) InputRemoting__Fields { #if defined(_CPLUSPLUS_) InputRemoting_Flags__Enum m_Flags; @@ -551586,6 +557511,19 @@ struct InputRemoting { struct InputRemoting__Fields fields; }; +struct InputManager_AvailableDevice { + struct InputDeviceDescription description; + int32_t deviceId; + bool isNative; + bool isRemoved; +}; + +struct InputManager_AvailableDevice__Boxed { + struct InputManager_AvailableDevice__Class *klass; + MonitorData *monitor; + struct InputManager_AvailableDevice fields; +}; + struct InputStateBuffers_DoubleBuffers { struct Void **deviceToBufferMapping; }; @@ -551637,6 +557575,16 @@ struct CallbackArray_1_System_Action_2__1__Boxed { struct CallbackArray_1_System_Action_2__1 fields; }; +struct Action_2_UnityEngine_InputSystem_InputDevice_UnityEngine_InputSystem_LowLevel_InputEventPtr___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_2_UnityEngine_InputSystem_InputDevice_UnityEngine_InputSystem_LowLevel_InputEventPtr_ { + struct Action_2_UnityEngine_InputSystem_InputDevice_UnityEngine_InputSystem_LowLevel_InputEventPtr___Class *klass; + MonitorData *monitor; + struct Action_2_UnityEngine_InputSystem_InputDevice_UnityEngine_InputSystem_LowLevel_InputEventPtr___Fields fields; +}; + struct InlinedArray_1_System_Action_2__2 { int32_t length; struct Action_2_UnityEngine_InputSystem_InputDevice_UnityEngine_InputSystem_LowLevel_InputEventPtr_ *firstValue; @@ -551840,6 +557788,67 @@ struct InputMetrics__Boxed { struct InputMetrics fields; }; +struct MemoryHelpers_BitRegion { + uint32_t bitOffset; + uint32_t sizeInBits; +}; + +struct MemoryHelpers_BitRegion__Boxed { + struct MemoryHelpers_BitRegion__Class *klass; + MonitorData *monitor; + struct MemoryHelpers_BitRegion fields; +}; + +struct InputManager_StateChangeMonitorListener { + struct InputControl *control; + struct IInputStateChangeMonitor *monitor; + int64_t monitorIndex; + uint32_t groupIndex; +}; + +struct InputManager_StateChangeMonitorListener__Boxed { + struct InputManager_StateChangeMonitorListener__Class *klass; + MonitorData *monitor; + struct InputManager_StateChangeMonitorListener fields; +}; + +struct InlinedArray_1_System_UInt64_ { + int32_t length; + uint64_t firstValue; + struct UInt64__Array *additionalValues; +}; + +struct InlinedArray_1_System_UInt64___Boxed { + struct InlinedArray_1_System_UInt64___Class *klass; + MonitorData *monitor; + struct InlinedArray_1_System_UInt64_ fields; +}; + +struct DynamicBitfield { + struct InlinedArray_1_System_UInt64_ array; + int32_t length; +}; + +struct DynamicBitfield__Boxed { + struct DynamicBitfield__Class *klass; + MonitorData *monitor; + struct DynamicBitfield fields; +}; + +struct InputManager_StateChangeMonitorsForDevice { + struct MemoryHelpers_BitRegion__Array *memoryRegions; + struct InputManager_StateChangeMonitorListener__Array *listeners; + struct DynamicBitfield signalled; + bool needToUpdateOrderingOfMonitors; + bool needToCompactArrays; +}; + +struct InputManager_StateChangeMonitorsForDevice__Boxed { + struct InputManager_StateChangeMonitorsForDevice__Class *klass; + MonitorData *monitor; + struct InputManager_StateChangeMonitorsForDevice fields; +}; + struct InputManager_StateChangeMonitorTimeout { struct InputControl *control; double time; @@ -551920,6 +557929,19 @@ struct InputManager_1 { struct InputManager_1__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_InputSystem_InputDevice_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct InputDevice *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_InputSystem_InputDevice___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_InputSystem_InputDevice___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_InputSystem_InputDevice_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_UnityEngine_InputSystem_InputDevice___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_InputSystem_InputDevice___Array *_entries; @@ -551939,19 +557961,6 @@ struct Dictionary_2_System_Int32_UnityEngine_InputSystem_InputDevice_ { struct Dictionary_2_System_Int32_UnityEngine_InputSystem_InputDevice___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_InputSystem_InputDevice_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct InputDevice *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_InputSystem_InputDevice___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_InputSystem_InputDevice___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_InputSystem_InputDevice_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_InputSystem_InputDevice___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_InputSystem_InputDevice___Array__Class *klass; MonitorData *monitor; @@ -552014,19 +558023,6 @@ struct IEnumerable_1_UnityEngine_InputSystem_InputDevice_ { MonitorData *monitor; }; -struct InputManager_AvailableDevice { - struct InputDeviceDescription description; - int32_t deviceId; - bool isNative; - bool isRemoved; -}; - -struct InputManager_AvailableDevice__Boxed { - struct InputManager_AvailableDevice__Class *klass; - MonitorData *monitor; - struct InputManager_AvailableDevice fields; -}; - struct InputManager_AvailableDevice__Array { struct InputManager_AvailableDevice__Array__Class *klass; MonitorData *monitor; @@ -552053,16 +558049,6 @@ struct IEnumerator_1_System_Action_2__1 { MonitorData *monitor; }; -struct Action_2_UnityEngine_InputSystem_InputDevice_UnityEngine_InputSystem_LowLevel_InputEventPtr___Fields { - struct MulticastDelegate__Fields _; -}; - -struct Action_2_UnityEngine_InputSystem_InputDevice_UnityEngine_InputSystem_LowLevel_InputEventPtr_ { - struct Action_2_UnityEngine_InputSystem_InputDevice_UnityEngine_InputSystem_LowLevel_InputEventPtr___Class *klass; - MonitorData *monitor; - struct Action_2_UnityEngine_InputSystem_InputDevice_UnityEngine_InputSystem_LowLevel_InputEventPtr___Fields fields; -}; - struct Action_2_UnityEngine_InputSystem_InputDevice_UnityEngine_InputSystem_LowLevel_InputEventPtr___Array { struct Action_2_UnityEngine_InputSystem_InputDevice_UnityEngine_InputSystem_LowLevel_InputEventPtr___Array__Class *klass; MonitorData *monitor; @@ -552138,54 +558124,6 @@ struct IInputRuntime { MonitorData *monitor; }; -struct InlinedArray_1_System_UInt64_ { - int32_t length; - uint64_t firstValue; - struct UInt64__Array *additionalValues; -}; - -struct InlinedArray_1_System_UInt64___Boxed { - struct InlinedArray_1_System_UInt64___Class *klass; - MonitorData *monitor; - struct InlinedArray_1_System_UInt64_ fields; -}; - -struct DynamicBitfield { - struct InlinedArray_1_System_UInt64_ array; - int32_t length; -}; - -struct DynamicBitfield__Boxed { - struct DynamicBitfield__Class *klass; - MonitorData *monitor; - struct DynamicBitfield fields; -}; - -struct InputManager_StateChangeMonitorsForDevice { - struct MemoryHelpers_BitRegion__Array *memoryRegions; - struct InputManager_StateChangeMonitorListener__Array *listeners; - struct DynamicBitfield signalled; - bool needToUpdateOrderingOfMonitors; - bool needToCompactArrays; -}; - -struct InputManager_StateChangeMonitorsForDevice__Boxed { - struct InputManager_StateChangeMonitorsForDevice__Class *klass; - MonitorData *monitor; - struct InputManager_StateChangeMonitorsForDevice fields; -}; - -struct MemoryHelpers_BitRegion { - uint32_t bitOffset; - uint32_t sizeInBits; -}; - -struct MemoryHelpers_BitRegion__Boxed { - struct MemoryHelpers_BitRegion__Class *klass; - MonitorData *monitor; - struct MemoryHelpers_BitRegion fields; -}; - struct MemoryHelpers_BitRegion__Array { struct MemoryHelpers_BitRegion__Array__Class *klass; MonitorData *monitor; @@ -552194,19 +558132,6 @@ struct MemoryHelpers_BitRegion__Array { struct MemoryHelpers_BitRegion vector[32]; }; -struct InputManager_StateChangeMonitorListener { - struct InputControl *control; - struct IInputStateChangeMonitor *monitor; - int64_t monitorIndex; - uint32_t groupIndex; -}; - -struct InputManager_StateChangeMonitorListener__Boxed { - struct InputManager_StateChangeMonitorListener__Class *klass; - MonitorData *monitor; - struct InputManager_StateChangeMonitorListener fields; -}; - struct IInputStateChangeMonitor { struct IInputStateChangeMonitor__Class *klass; MonitorData *monitor; @@ -552241,17 +558166,6 @@ struct IEnumerator_1_UnityEngine_InputSystem_InputManager_StateChangeMonitorTime MonitorData *monitor; }; -struct __declspec(align(8)) InputRemoting_Subscriber__Fields { - struct InputRemoting *owner; - struct IObserver_1_UnityEngine_InputSystem_InputRemoting_Message_ *observer; -}; - -struct InputRemoting_Subscriber { - struct InputRemoting_Subscriber__Class *klass; - MonitorData *monitor; - struct InputRemoting_Subscriber__Fields fields; -}; - struct IObserver_1_UnityEngine_InputSystem_InputRemoting_Message_ { struct IObserver_1_UnityEngine_InputSystem_InputRemoting_Message___Class *klass; MonitorData *monitor; @@ -552265,30 +558179,6 @@ struct InputRemoting_Subscriber__Array { struct InputRemoting_Subscriber *vector[32]; }; -struct InputRemoting_RemoteSender { - int32_t senderId; - struct InternedString__Array *layouts; - struct InputRemoting_RemoteInputDevice__Array *devices; -}; - -struct InputRemoting_RemoteSender__Boxed { - struct InputRemoting_RemoteSender__Class *klass; - MonitorData *monitor; - struct InputRemoting_RemoteSender fields; -}; - -struct InputRemoting_RemoteInputDevice { - int32_t remoteId; - int32_t localId; - struct InputDeviceDescription description; -}; - -struct InputRemoting_RemoteInputDevice__Boxed { - struct InputRemoting_RemoteInputDevice__Class *klass; - MonitorData *monitor; - struct InputRemoting_RemoteInputDevice fields; -}; - struct InputRemoting_RemoteInputDevice__Array { struct InputRemoting_RemoteInputDevice__Array__Class *klass; MonitorData *monitor; @@ -552520,6 +558410,21 @@ struct ICollection_1_UnityEngine_InputSystem_InputDevice___Class { struct ICollection_1_UnityEngine_InputSystem_InputDevice___VTable vtable; }; +struct InputDevice___VTable { +}; + +struct InputDevice___StaticFields { +}; + +struct InputDevice___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputDevice___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputDevice___VTable vtable; +}; + struct KeyValuePair_2_System_Int32_UnityEngine_InputSystem_InputDevice___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -554405,6 +560310,51 @@ struct InputControlPath_PathParser__Class { struct InputControlPath_PathParser__VTable vtable; }; +struct InputControlPath_PathParser___VTable { +}; + +struct InputControlPath_PathParser___StaticFields { +}; + +struct InputControlPath_PathParser___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputControlPath_PathParser___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputControlPath_PathParser___VTable vtable; +}; + +struct InputControlLayout_ControlItem___VTable { +}; + +struct InputControlLayout_ControlItem___StaticFields { +}; + +struct InputControlLayout_ControlItem___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputControlLayout_ControlItem___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputControlLayout_ControlItem___VTable vtable; +}; + +struct InputControlPath_ParsedPathComponent___VTable { +}; + +struct InputControlPath_ParsedPathComponent___StaticFields { +}; + +struct InputControlPath_ParsedPathComponent___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputControlPath_ParsedPathComponent___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputControlPath_ParsedPathComponent___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class InputControlPath_PathComponentType__Enum : int32_t { Name = 0x00000000, @@ -555161,49 +561111,6 @@ struct ReadOnlyArray_1_UnityEngine_InputSystem_Joystick___Class { struct ReadOnlyArray_1_UnityEngine_InputSystem_Joystick___VTable vtable; }; -struct InlinedArray_1_System_Action_1__2 { - int32_t length; - struct Action_1_Char_ *firstValue; - struct Action_1_Char___Array *additionalValues; -}; - -struct InlinedArray_1_System_Action_1__2__Boxed { - struct InlinedArray_1_System_Action_1__2__Class *klass; - MonitorData *monitor; - struct InlinedArray_1_System_Action_1__2 fields; -}; - -struct InlinedArray_1_System_Action_1__3 { - int32_t length; - struct Action_1_UnityEngine_InputSystem_LowLevel_IMECompositionString_ *firstValue; - struct Action_1_UnityEngine_InputSystem_LowLevel_IMECompositionString___Array *additionalValues; -}; - -struct InlinedArray_1_System_Action_1__3__Boxed { - struct InlinedArray_1_System_Action_1__3__Class *klass; - MonitorData *monitor; - struct InlinedArray_1_System_Action_1__3 fields; -}; - -struct Keyboard_1__Fields { - struct InputDevice__Fields _; - struct AnyKeyControl *_anyKey_k__BackingField; - struct ButtonControl *_shiftKey_k__BackingField; - struct ButtonControl *_ctrlKey_k__BackingField; - struct ButtonControl *_altKey_k__BackingField; - struct ButtonControl *_imeSelected_k__BackingField; - struct InlinedArray_1_System_Action_1__2 m_TextInputListeners; - struct String *m_KeyboardLayoutName; - struct KeyControl__Array *m_Keys; - struct InlinedArray_1_System_Action_1__3 m_ImeCompositionListeners; -}; - -struct Keyboard_1 { - struct Keyboard_1__Class *klass; - MonitorData *monitor; - struct Keyboard_1__Fields fields; -}; - struct Action_1_Char___Fields { struct MulticastDelegate__Fields _; }; @@ -555214,17 +561121,16 @@ struct Action_1_Char_ { struct Action_1_Char___Fields fields; }; -struct Action_1_Char___Array { - struct Action_1_Char___Array__Class *klass; - MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - struct Action_1_Char_ *vector[32]; +struct InlinedArray_1_System_Action_1__2 { + int32_t length; + struct Action_1_Char_ *firstValue; + struct Action_1_Char___Array *additionalValues; }; -struct IEnumerator_1_System_Action_1__7 { - struct IEnumerator_1_System_Action_1__7__Class *klass; +struct InlinedArray_1_System_Action_1__2__Boxed { + struct InlinedArray_1_System_Action_1__2__Class *klass; MonitorData *monitor; + struct InlinedArray_1_System_Action_1__2 fields; }; #if defined(_CPLUSPLUS_) @@ -555500,14 +561406,6 @@ struct KeyControl { struct KeyControl__Fields fields; }; -struct KeyControl__Array { - struct KeyControl__Array__Class *klass; - MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - struct KeyControl *vector[32]; -}; - struct Action_1_UnityEngine_InputSystem_LowLevel_IMECompositionString___Fields { struct MulticastDelegate__Fields _; }; @@ -555518,6 +561416,58 @@ struct Action_1_UnityEngine_InputSystem_LowLevel_IMECompositionString_ { struct Action_1_UnityEngine_InputSystem_LowLevel_IMECompositionString___Fields fields; }; +struct InlinedArray_1_System_Action_1__3 { + int32_t length; + struct Action_1_UnityEngine_InputSystem_LowLevel_IMECompositionString_ *firstValue; + struct Action_1_UnityEngine_InputSystem_LowLevel_IMECompositionString___Array *additionalValues; +}; + +struct InlinedArray_1_System_Action_1__3__Boxed { + struct InlinedArray_1_System_Action_1__3__Class *klass; + MonitorData *monitor; + struct InlinedArray_1_System_Action_1__3 fields; +}; + +struct Keyboard_1__Fields { + struct InputDevice__Fields _; + struct AnyKeyControl *_anyKey_k__BackingField; + struct ButtonControl *_shiftKey_k__BackingField; + struct ButtonControl *_ctrlKey_k__BackingField; + struct ButtonControl *_altKey_k__BackingField; + struct ButtonControl *_imeSelected_k__BackingField; + struct InlinedArray_1_System_Action_1__2 m_TextInputListeners; + struct String *m_KeyboardLayoutName; + struct KeyControl__Array *m_Keys; + struct InlinedArray_1_System_Action_1__3 m_ImeCompositionListeners; +}; + +struct Keyboard_1 { + struct Keyboard_1__Class *klass; + MonitorData *monitor; + struct Keyboard_1__Fields fields; +}; + +struct Action_1_Char___Array { + struct Action_1_Char___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Action_1_Char_ *vector[32]; +}; + +struct IEnumerator_1_System_Action_1__7 { + struct IEnumerator_1_System_Action_1__7__Class *klass; + MonitorData *monitor; +}; + +struct KeyControl__Array { + struct KeyControl__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct KeyControl *vector[32]; +}; + struct IMECompositionString_buffer_e_FixedBuffer { uint16_t FixedElementField; }; @@ -556454,38 +562404,9 @@ struct FastMouse__Class { struct FastMouse__VTable vtable; }; -struct ReadOnlyArray_1_UnityEngine_InputSystem_Controls_TouchControl_ { - struct TouchControl_1__Array *m_Array; - int32_t m_StartIndex; - int32_t m_Length; -}; - -struct ReadOnlyArray_1_UnityEngine_InputSystem_Controls_TouchControl___Boxed { - struct ReadOnlyArray_1_UnityEngine_InputSystem_Controls_TouchControl___Class *klass; +struct InputProcessor_1_UnityEngine_InputSystem_LowLevel_TouchState_ { + struct InputProcessor_1_UnityEngine_InputSystem_LowLevel_TouchState___Class *klass; MonitorData *monitor; - struct ReadOnlyArray_1_UnityEngine_InputSystem_Controls_TouchControl_ fields; -}; - -struct Touchscreen__Fields { - struct Pointer_2__Fields _; - struct TouchControl_1 *_primaryTouch_k__BackingField; - struct ReadOnlyArray_1_UnityEngine_InputSystem_Controls_TouchControl_ _touches_k__BackingField; -}; - -struct Touchscreen { - struct Touchscreen__Class *klass; - MonitorData *monitor; - struct Touchscreen__Fields fields; -}; - -struct FastTouchscreen__Fields { - struct Touchscreen__Fields _; -}; - -struct FastTouchscreen { - struct FastTouchscreen__Class *klass; - MonitorData *monitor; - struct FastTouchscreen__Fields fields; }; struct InlinedArray_1_UnityEngine_InputSystem_InputProcessor_1__5 { @@ -556558,9 +562479,38 @@ struct TouchControl_1 { struct TouchControl_1__Fields fields; }; -struct InputProcessor_1_UnityEngine_InputSystem_LowLevel_TouchState_ { - struct InputProcessor_1_UnityEngine_InputSystem_LowLevel_TouchState___Class *klass; +struct ReadOnlyArray_1_UnityEngine_InputSystem_Controls_TouchControl_ { + struct TouchControl_1__Array *m_Array; + int32_t m_StartIndex; + int32_t m_Length; +}; + +struct ReadOnlyArray_1_UnityEngine_InputSystem_Controls_TouchControl___Boxed { + struct ReadOnlyArray_1_UnityEngine_InputSystem_Controls_TouchControl___Class *klass; MonitorData *monitor; + struct ReadOnlyArray_1_UnityEngine_InputSystem_Controls_TouchControl_ fields; +}; + +struct Touchscreen__Fields { + struct Pointer_2__Fields _; + struct TouchControl_1 *_primaryTouch_k__BackingField; + struct ReadOnlyArray_1_UnityEngine_InputSystem_Controls_TouchControl_ _touches_k__BackingField; +}; + +struct Touchscreen { + struct Touchscreen__Class *klass; + MonitorData *monitor; + struct Touchscreen__Fields fields; +}; + +struct FastTouchscreen__Fields { + struct Touchscreen__Fields _; +}; + +struct FastTouchscreen { + struct FastTouchscreen__Class *klass; + MonitorData *monitor; + struct FastTouchscreen__Fields fields; }; struct InputProcessor_1_UnityEngine_InputSystem_LowLevel_TouchState___Array { @@ -556586,6 +562536,11 @@ struct TouchPressControl { struct TouchPressControl__Fields fields; }; +struct InputProcessor_1_TouchPhase_ { + struct InputProcessor_1_TouchPhase___Class *klass; + MonitorData *monitor; +}; + struct InlinedArray_1_UnityEngine_InputSystem_InputProcessor_1__6 { int32_t length; struct InputProcessor_1_TouchPhase_ *firstValue; @@ -556661,11 +562616,6 @@ struct TouchPhaseControl { struct TouchPhaseControl__Fields fields; }; -struct InputProcessor_1_TouchPhase_ { - struct InputProcessor_1_TouchPhase___Class *klass; - MonitorData *monitor; -}; - struct InputProcessor_1_TouchPhase___Array { struct InputProcessor_1_TouchPhase___Array__Class *klass; MonitorData *monitor; @@ -556679,6 +562629,11 @@ struct IEnumerator_1_UnityEngine_InputSystem_InputProcessor_1__6 { MonitorData *monitor; }; +struct InputProcessor_1_System_Double_ { + struct InputProcessor_1_System_Double___Class *klass; + MonitorData *monitor; +}; + struct InlinedArray_1_UnityEngine_InputSystem_InputProcessor_1__7 { int32_t length; struct InputProcessor_1_System_Double_ *firstValue; @@ -556715,11 +562670,6 @@ struct DoubleControl { struct DoubleControl__Fields fields; }; -struct InputProcessor_1_System_Double_ { - struct InputProcessor_1_System_Double___Class *klass; - MonitorData *monitor; -}; - struct InputProcessor_1_System_Double___Array { struct InputProcessor_1_System_Double___Array__Class *klass; MonitorData *monitor; @@ -557530,6 +563480,17 @@ struct InputRemoting_ChangeUsageMsg_c__Class { struct InputRemoting_ChangeUsageMsg_c__VTable vtable; }; +struct __declspec(align(8)) RemoteInputPlayerConnection_Subscriber__Fields { + struct RemoteInputPlayerConnection *owner; + struct IObserver_1_UnityEngine_InputSystem_InputRemoting_Message_ *observer; +}; + +struct RemoteInputPlayerConnection_Subscriber { + struct RemoteInputPlayerConnection_Subscriber__Class *klass; + MonitorData *monitor; + struct RemoteInputPlayerConnection_Subscriber__Fields fields; +}; + struct RemoteInputPlayerConnection__Fields { struct ScriptableObject__Fields _; struct IEditorPlayerConnection *m_Connection; @@ -557548,17 +563509,6 @@ struct IEditorPlayerConnection { MonitorData *monitor; }; -struct __declspec(align(8)) RemoteInputPlayerConnection_Subscriber__Fields { - struct RemoteInputPlayerConnection *owner; - struct IObserver_1_UnityEngine_InputSystem_InputRemoting_Message_ *observer; -}; - -struct RemoteInputPlayerConnection_Subscriber { - struct RemoteInputPlayerConnection_Subscriber__Class *klass; - MonitorData *monitor; - struct RemoteInputPlayerConnection_Subscriber__Fields fields; -}; - struct RemoteInputPlayerConnection_Subscriber__Array { struct RemoteInputPlayerConnection_Subscriber__Array__Class *klass; MonitorData *monitor; @@ -558316,6 +564266,21 @@ struct StepCounter__Class { struct StepCounter__VTable vtable; }; +struct TouchState___VTable { +}; + +struct TouchState___StaticFields { +}; + +struct TouchState___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TouchState___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TouchState___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class InputManager_DeviceDisableScope__Enum : int32_t { Everywhere = 0x00000000, @@ -558379,6 +564344,36 @@ struct InputManager_DeviceDisableScope__Enum__Class { struct InputManager_DeviceDisableScope__Enum__VTable vtable; }; +struct InputEventBuffer___VTable { +}; + +struct InputEventBuffer___StaticFields { +}; + +struct InputEventBuffer___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputEventBuffer___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputEventBuffer___VTable vtable; +}; + +struct InputStateBlock___VTable { +}; + +struct InputStateBlock___StaticFields { +}; + +struct InputStateBlock___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputStateBlock___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputStateBlock___VTable vtable; +}; + struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_System_Type_ { struct Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_Type_ *_dictionary; int32_t _version; @@ -558909,6 +564904,29 @@ struct PlayerNotifications__Enum__Boxed { #endif }; +struct UnityEvent_1_UnityEngine_InputSystem_InputAction_CallbackContext___Fields { + struct UnityEventBase__Fields _; + struct Object__Array *m_InvokeArray; +}; + +struct UnityEvent_1_UnityEngine_InputSystem_InputAction_CallbackContext_ { + struct UnityEvent_1_UnityEngine_InputSystem_InputAction_CallbackContext___Class *klass; + MonitorData *monitor; + struct UnityEvent_1_UnityEngine_InputSystem_InputAction_CallbackContext___Fields fields; +}; + +struct PlayerInput_ActionEvent__Fields { + struct UnityEvent_1_UnityEngine_InputSystem_InputAction_CallbackContext___Fields _; + struct String *m_ActionId; + struct String *m_ActionName; +}; + +struct PlayerInput_ActionEvent { + struct PlayerInput_ActionEvent__Class *klass; + MonitorData *monitor; + struct PlayerInput_ActionEvent__Fields fields; +}; + struct InputUser { uint32_t m_Id; }; @@ -558919,6 +564937,16 @@ struct InputUser__Boxed { struct InputUser fields; }; +struct Action_1_UnityEngine_InputSystem_PlayerInput___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_1_UnityEngine_InputSystem_PlayerInput_ { + struct Action_1_UnityEngine_InputSystem_PlayerInput___Class *klass; + MonitorData *monitor; + struct Action_1_UnityEngine_InputSystem_PlayerInput___Fields fields; +}; + struct InlinedArray_1_System_Action_1__4 { int32_t length; struct Action_1_UnityEngine_InputSystem_PlayerInput_ *firstValue; @@ -558931,17 +564959,17 @@ struct InlinedArray_1_System_Action_1__4__Boxed { struct InlinedArray_1_System_Action_1__4 fields; }; -struct CallbackArray_1_System_Action_1__2 { +struct CallbackArray_1_System_Action_1__3 { bool m_CannotMutateCallbacksArray; struct InlinedArray_1_System_Action_1__4 m_Callbacks; struct InlinedArray_1_System_Action_1__4 m_CallbacksToAdd; struct InlinedArray_1_System_Action_1__4 m_CallbacksToRemove; }; -struct CallbackArray_1_System_Action_1__2__Boxed { - struct CallbackArray_1_System_Action_1__2__Class *klass; +struct CallbackArray_1_System_Action_1__3__Boxed { + struct CallbackArray_1_System_Action_1__3__Class *klass; MonitorData *monitor; - struct CallbackArray_1_System_Action_1__2 fields; + struct CallbackArray_1_System_Action_1__3 fields; }; struct PlayerInput_1__Fields { @@ -558971,9 +564999,9 @@ struct PlayerInput_1__Fields { struct Dictionary_2_System_String_System_String_ *m_ActionMessageNames; struct InputUser m_InputUser; struct Action_1_UnityEngine_InputSystem_InputAction_CallbackContext_ *m_ActionTriggeredDelegate; - struct CallbackArray_1_System_Action_1__2 m_DeviceLostCallbacks; - struct CallbackArray_1_System_Action_1__2 m_DeviceRegainedCallbacks; - struct CallbackArray_1_System_Action_1__2 m_ControlsChangedCallbacks; + struct CallbackArray_1_System_Action_1__3 m_DeviceLostCallbacks; + struct CallbackArray_1_System_Action_1__3 m_DeviceRegainedCallbacks; + struct CallbackArray_1_System_Action_1__3 m_ControlsChangedCallbacks; struct CallbackArray_1_System_Action_1__1 m_ActionTriggeredCallbacks; struct Action_2_UnityEngine_InputSystem_InputControl_UnityEngine_InputSystem_LowLevel_InputEventPtr_ *m_UnpairedDeviceUsedDelegate; struct Func_3_UnityEngine_InputSystem_InputDevice_UnityEngine_InputSystem_LowLevel_InputEventPtr_Boolean_ *m_PreFilterUnpairedDeviceUsedDelegate; @@ -559226,25 +565254,6 @@ struct InputSystemUIInputModule { struct InputSystemUIInputModule__Fields fields; }; -struct __declspec(align(8)) Dictionary_2_UnityEngine_InputSystem_InputAction_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___Fields { - struct Int32__Array *_buckets; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_InputAction_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___Array *_entries; - int32_t _count; - int32_t _freeList; - int32_t _freeCount; - int32_t _version; - struct IEqualityComparer_1_UnityEngine_InputSystem_InputAction_ *_comparer; - struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_InputSystem_InputAction_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ *_keys; - struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_InputSystem_InputAction_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ *_values; - struct Object *_syncRoot; -}; - -struct Dictionary_2_UnityEngine_InputSystem_InputAction_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ { - struct Dictionary_2_UnityEngine_InputSystem_InputAction_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___Class *klass; - MonitorData *monitor; - struct Dictionary_2_UnityEngine_InputSystem_InputAction_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___Fields fields; -}; - struct InputSystemUIInputModule_InputActionReferenceState { int32_t refCount; bool enabledByInputModule; @@ -559269,6 +565278,25 @@ struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_InputAction_UnityE struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_InputAction_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ fields; }; +struct __declspec(align(8)) Dictionary_2_UnityEngine_InputSystem_InputAction_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_InputAction_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_UnityEngine_InputSystem_InputAction_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_InputSystem_InputAction_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_InputSystem_InputAction_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_UnityEngine_InputSystem_InputAction_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ { + struct Dictionary_2_UnityEngine_InputSystem_InputAction_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___Class *klass; + MonitorData *monitor; + struct Dictionary_2_UnityEngine_InputSystem_InputAction_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___Fields fields; +}; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_InputAction_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_InputAction_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___Array__Class *klass; MonitorData *monitor; @@ -559434,29 +565462,6 @@ struct PlayerInput_ControlsChangedEvent { struct PlayerInput_ControlsChangedEvent__Fields fields; }; -struct UnityEvent_1_UnityEngine_InputSystem_InputAction_CallbackContext___Fields { - struct UnityEventBase__Fields _; - struct Object__Array *m_InvokeArray; -}; - -struct UnityEvent_1_UnityEngine_InputSystem_InputAction_CallbackContext_ { - struct UnityEvent_1_UnityEngine_InputSystem_InputAction_CallbackContext___Class *klass; - MonitorData *monitor; - struct UnityEvent_1_UnityEngine_InputSystem_InputAction_CallbackContext___Fields fields; -}; - -struct PlayerInput_ActionEvent__Fields { - struct UnityEvent_1_UnityEngine_InputSystem_InputAction_CallbackContext___Fields _; - struct String *m_ActionId; - struct String *m_ActionName; -}; - -struct PlayerInput_ActionEvent { - struct PlayerInput_ActionEvent__Class *klass; - MonitorData *monitor; - struct PlayerInput_ActionEvent__Fields fields; -}; - struct PlayerInput_ActionEvent__Array { struct PlayerInput_ActionEvent__Array__Class *klass; MonitorData *monitor; @@ -559465,141 +565470,6 @@ struct PlayerInput_ActionEvent__Array { struct PlayerInput_ActionEvent *vector[32]; }; -struct InputUser_OngoingAccountSelection { - struct InputDevice *device; - uint32_t userId; -}; - -struct InputUser_OngoingAccountSelection__Boxed { - struct InputUser_OngoingAccountSelection__Class *klass; - MonitorData *monitor; - struct InputUser_OngoingAccountSelection fields; -}; - -struct InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_ { - int32_t length; - struct InputUser_OngoingAccountSelection firstValue; - struct InputUser_OngoingAccountSelection__Array *additionalValues; -}; - -struct InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection___Boxed { - struct InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection___Class *klass; - MonitorData *monitor; - struct InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_ fields; -}; - -struct InlinedArray_1_System_Action_3_ { - int32_t length; - struct Action_3_UnityEngine_InputSystem_Users_InputUser_UnityEngine_InputSystem_Users_InputUserChange_UnityEngine_InputSystem_InputDevice_ *firstValue; - struct Action_3_UnityEngine_InputSystem_Users_InputUser_UnityEngine_InputSystem_Users_InputUserChange_UnityEngine_InputSystem_InputDevice___Array *additionalValues; -}; - -struct InlinedArray_1_System_Action_3___Boxed { - struct InlinedArray_1_System_Action_3___Class *klass; - MonitorData *monitor; - struct InlinedArray_1_System_Action_3_ fields; -}; - -struct CallbackArray_1_System_Action_3_ { - bool m_CannotMutateCallbacksArray; - struct InlinedArray_1_System_Action_3_ m_Callbacks; - struct InlinedArray_1_System_Action_3_ m_CallbacksToAdd; - struct InlinedArray_1_System_Action_3_ m_CallbacksToRemove; -}; - -struct CallbackArray_1_System_Action_3___Boxed { - struct CallbackArray_1_System_Action_3___Class *klass; - MonitorData *monitor; - struct CallbackArray_1_System_Action_3_ fields; -}; - -struct InlinedArray_1_System_Action_2__5 { - int32_t length; - struct Action_2_UnityEngine_InputSystem_InputControl_UnityEngine_InputSystem_LowLevel_InputEventPtr_ *firstValue; - struct Action_2_UnityEngine_InputSystem_InputControl_UnityEngine_InputSystem_LowLevel_InputEventPtr___Array *additionalValues; -}; - -struct InlinedArray_1_System_Action_2__5__Boxed { - struct InlinedArray_1_System_Action_2__5__Class *klass; - MonitorData *monitor; - struct InlinedArray_1_System_Action_2__5 fields; -}; - -struct CallbackArray_1_System_Action_2__5 { - bool m_CannotMutateCallbacksArray; - struct InlinedArray_1_System_Action_2__5 m_Callbacks; - struct InlinedArray_1_System_Action_2__5 m_CallbacksToAdd; - struct InlinedArray_1_System_Action_2__5 m_CallbacksToRemove; -}; - -struct CallbackArray_1_System_Action_2__5__Boxed { - struct CallbackArray_1_System_Action_2__5__Class *klass; - MonitorData *monitor; - struct CallbackArray_1_System_Action_2__5 fields; -}; - -struct InlinedArray_1_System_Func_3_ { - int32_t length; - struct Func_3_UnityEngine_InputSystem_InputDevice_UnityEngine_InputSystem_LowLevel_InputEventPtr_Boolean_ *firstValue; - struct Func_3_UnityEngine_InputSystem_InputDevice_UnityEngine_InputSystem_LowLevel_InputEventPtr_Boolean___Array *additionalValues; -}; - -struct InlinedArray_1_System_Func_3___Boxed { - struct InlinedArray_1_System_Func_3___Class *klass; - MonitorData *monitor; - struct InlinedArray_1_System_Func_3_ fields; -}; - -struct CallbackArray_1_System_Func_3_ { - bool m_CannotMutateCallbacksArray; - struct InlinedArray_1_System_Func_3_ m_Callbacks; - struct InlinedArray_1_System_Func_3_ m_CallbacksToAdd; - struct InlinedArray_1_System_Func_3_ m_CallbacksToRemove; -}; - -struct CallbackArray_1_System_Func_3___Boxed { - struct CallbackArray_1_System_Func_3___Class *klass; - MonitorData *monitor; - struct CallbackArray_1_System_Func_3_ fields; -}; - -struct InputUser_GlobalState { - int32_t pairingStateVersion; - uint32_t lastUserId; - int32_t allUserCount; - int32_t allPairedDeviceCount; - int32_t allLostDeviceCount; - struct InputUser__Array *allUsers; - struct InputUser_UserData__Array *allUserData; - struct InputDevice__Array *allPairedDevices; - struct InputDevice__Array *allLostDevices; - struct InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_ ongoingAccountSelections; - struct CallbackArray_1_System_Action_3_ onChange; - struct CallbackArray_1_System_Action_2__5 onUnpairedDeviceUsed; - struct CallbackArray_1_System_Func_3_ onPreFilterUnpairedDeviceUsed; - struct Action_2_Object_UnityEngine_InputSystem_InputActionChange_ *actionChangeDelegate; - struct Action_2_UnityEngine_InputSystem_InputDevice_UnityEngine_InputSystem_InputDeviceChange_ *onDeviceChangeDelegate; - struct Action_2_UnityEngine_InputSystem_LowLevel_InputEventPtr_UnityEngine_InputSystem_InputDevice_ *onEventDelegate; - bool onActionChangeHooked; - bool onDeviceChangeHooked; - bool onEventHooked; - int32_t listenForUnpairedDeviceActivity; -}; - -struct InputUser_GlobalState__Boxed { - struct InputUser_GlobalState__Class *klass; - MonitorData *monitor; - struct InputUser_GlobalState fields; -}; - -struct InputUser__Array { - struct InputUser__Array__Class *klass; - MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - struct InputUser vector[32]; -}; - struct InputUserAccountHandle { struct String *m_ApiName; uint64_t m_Handle; @@ -559669,6 +565539,171 @@ struct InputUser_UserData__Boxed { struct InputUser_UserData fields; }; +struct InputUser_OngoingAccountSelection { + struct InputDevice *device; + uint32_t userId; +}; + +struct InputUser_OngoingAccountSelection__Boxed { + struct InputUser_OngoingAccountSelection__Class *klass; + MonitorData *monitor; + struct InputUser_OngoingAccountSelection fields; +}; + +struct InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_ { + int32_t length; + struct InputUser_OngoingAccountSelection firstValue; + struct InputUser_OngoingAccountSelection__Array *additionalValues; +}; + +struct InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection___Boxed { + struct InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection___Class *klass; + MonitorData *monitor; + struct InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_ fields; +}; + +struct Action_3_UnityEngine_InputSystem_Users_InputUser_UnityEngine_InputSystem_Users_InputUserChange_UnityEngine_InputSystem_InputDevice___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_3_UnityEngine_InputSystem_Users_InputUser_UnityEngine_InputSystem_Users_InputUserChange_UnityEngine_InputSystem_InputDevice_ { + struct Action_3_UnityEngine_InputSystem_Users_InputUser_UnityEngine_InputSystem_Users_InputUserChange_UnityEngine_InputSystem_InputDevice___Class *klass; + MonitorData *monitor; + struct Action_3_UnityEngine_InputSystem_Users_InputUser_UnityEngine_InputSystem_Users_InputUserChange_UnityEngine_InputSystem_InputDevice___Fields fields; +}; + +struct InlinedArray_1_System_Action_3_ { + int32_t length; + struct Action_3_UnityEngine_InputSystem_Users_InputUser_UnityEngine_InputSystem_Users_InputUserChange_UnityEngine_InputSystem_InputDevice_ *firstValue; + struct Action_3_UnityEngine_InputSystem_Users_InputUser_UnityEngine_InputSystem_Users_InputUserChange_UnityEngine_InputSystem_InputDevice___Array *additionalValues; +}; + +struct InlinedArray_1_System_Action_3___Boxed { + struct InlinedArray_1_System_Action_3___Class *klass; + MonitorData *monitor; + struct InlinedArray_1_System_Action_3_ fields; +}; + +struct CallbackArray_1_System_Action_3_ { + bool m_CannotMutateCallbacksArray; + struct InlinedArray_1_System_Action_3_ m_Callbacks; + struct InlinedArray_1_System_Action_3_ m_CallbacksToAdd; + struct InlinedArray_1_System_Action_3_ m_CallbacksToRemove; +}; + +struct CallbackArray_1_System_Action_3___Boxed { + struct CallbackArray_1_System_Action_3___Class *klass; + MonitorData *monitor; + struct CallbackArray_1_System_Action_3_ fields; +}; + +struct Action_2_UnityEngine_InputSystem_InputControl_UnityEngine_InputSystem_LowLevel_InputEventPtr___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_2_UnityEngine_InputSystem_InputControl_UnityEngine_InputSystem_LowLevel_InputEventPtr_ { + struct Action_2_UnityEngine_InputSystem_InputControl_UnityEngine_InputSystem_LowLevel_InputEventPtr___Class *klass; + MonitorData *monitor; + struct Action_2_UnityEngine_InputSystem_InputControl_UnityEngine_InputSystem_LowLevel_InputEventPtr___Fields fields; +}; + +struct InlinedArray_1_System_Action_2__5 { + int32_t length; + struct Action_2_UnityEngine_InputSystem_InputControl_UnityEngine_InputSystem_LowLevel_InputEventPtr_ *firstValue; + struct Action_2_UnityEngine_InputSystem_InputControl_UnityEngine_InputSystem_LowLevel_InputEventPtr___Array *additionalValues; +}; + +struct InlinedArray_1_System_Action_2__5__Boxed { + struct InlinedArray_1_System_Action_2__5__Class *klass; + MonitorData *monitor; + struct InlinedArray_1_System_Action_2__5 fields; +}; + +struct CallbackArray_1_System_Action_2__5 { + bool m_CannotMutateCallbacksArray; + struct InlinedArray_1_System_Action_2__5 m_Callbacks; + struct InlinedArray_1_System_Action_2__5 m_CallbacksToAdd; + struct InlinedArray_1_System_Action_2__5 m_CallbacksToRemove; +}; + +struct CallbackArray_1_System_Action_2__5__Boxed { + struct CallbackArray_1_System_Action_2__5__Class *klass; + MonitorData *monitor; + struct CallbackArray_1_System_Action_2__5 fields; +}; + +struct Func_3_UnityEngine_InputSystem_InputDevice_UnityEngine_InputSystem_LowLevel_InputEventPtr_Boolean___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_3_UnityEngine_InputSystem_InputDevice_UnityEngine_InputSystem_LowLevel_InputEventPtr_Boolean_ { + struct Func_3_UnityEngine_InputSystem_InputDevice_UnityEngine_InputSystem_LowLevel_InputEventPtr_Boolean___Class *klass; + MonitorData *monitor; + struct Func_3_UnityEngine_InputSystem_InputDevice_UnityEngine_InputSystem_LowLevel_InputEventPtr_Boolean___Fields fields; +}; + +struct InlinedArray_1_System_Func_3_ { + int32_t length; + struct Func_3_UnityEngine_InputSystem_InputDevice_UnityEngine_InputSystem_LowLevel_InputEventPtr_Boolean_ *firstValue; + struct Func_3_UnityEngine_InputSystem_InputDevice_UnityEngine_InputSystem_LowLevel_InputEventPtr_Boolean___Array *additionalValues; +}; + +struct InlinedArray_1_System_Func_3___Boxed { + struct InlinedArray_1_System_Func_3___Class *klass; + MonitorData *monitor; + struct InlinedArray_1_System_Func_3_ fields; +}; + +struct CallbackArray_1_System_Func_3_ { + bool m_CannotMutateCallbacksArray; + struct InlinedArray_1_System_Func_3_ m_Callbacks; + struct InlinedArray_1_System_Func_3_ m_CallbacksToAdd; + struct InlinedArray_1_System_Func_3_ m_CallbacksToRemove; +}; + +struct CallbackArray_1_System_Func_3___Boxed { + struct CallbackArray_1_System_Func_3___Class *klass; + MonitorData *monitor; + struct CallbackArray_1_System_Func_3_ fields; +}; + +struct InputUser_GlobalState { + int32_t pairingStateVersion; + uint32_t lastUserId; + int32_t allUserCount; + int32_t allPairedDeviceCount; + int32_t allLostDeviceCount; + struct InputUser__Array *allUsers; + struct InputUser_UserData__Array *allUserData; + struct InputDevice__Array *allPairedDevices; + struct InputDevice__Array *allLostDevices; + struct InlinedArray_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelection_ ongoingAccountSelections; + struct CallbackArray_1_System_Action_3_ onChange; + struct CallbackArray_1_System_Action_2__5 onUnpairedDeviceUsed; + struct CallbackArray_1_System_Func_3_ onPreFilterUnpairedDeviceUsed; + struct Action_2_Object_UnityEngine_InputSystem_InputActionChange_ *actionChangeDelegate; + struct Action_2_UnityEngine_InputSystem_InputDevice_UnityEngine_InputSystem_InputDeviceChange_ *onDeviceChangeDelegate; + struct Action_2_UnityEngine_InputSystem_LowLevel_InputEventPtr_UnityEngine_InputSystem_InputDevice_ *onEventDelegate; + bool onActionChangeHooked; + bool onDeviceChangeHooked; + bool onEventHooked; + int32_t listenForUnpairedDeviceActivity; +}; + +struct InputUser_GlobalState__Boxed { + struct InputUser_GlobalState__Class *klass; + MonitorData *monitor; + struct InputUser_GlobalState fields; +}; + +struct InputUser__Array { + struct InputUser__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct InputUser vector[32]; +}; + struct IInputActionCollection { struct IInputActionCollection__Class *klass; MonitorData *monitor; @@ -559695,16 +565730,6 @@ struct IEnumerator_1_UnityEngine_InputSystem_Users_InputUser_OngoingAccountSelec MonitorData *monitor; }; -struct Action_3_UnityEngine_InputSystem_Users_InputUser_UnityEngine_InputSystem_Users_InputUserChange_UnityEngine_InputSystem_InputDevice___Fields { - struct MulticastDelegate__Fields _; -}; - -struct Action_3_UnityEngine_InputSystem_Users_InputUser_UnityEngine_InputSystem_Users_InputUserChange_UnityEngine_InputSystem_InputDevice_ { - struct Action_3_UnityEngine_InputSystem_Users_InputUser_UnityEngine_InputSystem_Users_InputUserChange_UnityEngine_InputSystem_InputDevice___Class *klass; - MonitorData *monitor; - struct Action_3_UnityEngine_InputSystem_Users_InputUser_UnityEngine_InputSystem_Users_InputUserChange_UnityEngine_InputSystem_InputDevice___Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class InputUserChange__Enum : int32_t { Added = 0x00000000, @@ -559763,16 +565788,6 @@ struct IEnumerator_1_System_Action_3_ { MonitorData *monitor; }; -struct Action_2_UnityEngine_InputSystem_InputControl_UnityEngine_InputSystem_LowLevel_InputEventPtr___Fields { - struct MulticastDelegate__Fields _; -}; - -struct Action_2_UnityEngine_InputSystem_InputControl_UnityEngine_InputSystem_LowLevel_InputEventPtr_ { - struct Action_2_UnityEngine_InputSystem_InputControl_UnityEngine_InputSystem_LowLevel_InputEventPtr___Class *klass; - MonitorData *monitor; - struct Action_2_UnityEngine_InputSystem_InputControl_UnityEngine_InputSystem_LowLevel_InputEventPtr___Fields fields; -}; - struct Action_2_UnityEngine_InputSystem_InputControl_UnityEngine_InputSystem_LowLevel_InputEventPtr___Array { struct Action_2_UnityEngine_InputSystem_InputControl_UnityEngine_InputSystem_LowLevel_InputEventPtr___Array__Class *klass; MonitorData *monitor; @@ -559786,16 +565801,6 @@ struct IEnumerator_1_System_Action_2__5 { MonitorData *monitor; }; -struct Func_3_UnityEngine_InputSystem_InputDevice_UnityEngine_InputSystem_LowLevel_InputEventPtr_Boolean___Fields { - struct MulticastDelegate__Fields _; -}; - -struct Func_3_UnityEngine_InputSystem_InputDevice_UnityEngine_InputSystem_LowLevel_InputEventPtr_Boolean_ { - struct Func_3_UnityEngine_InputSystem_InputDevice_UnityEngine_InputSystem_LowLevel_InputEventPtr_Boolean___Class *klass; - MonitorData *monitor; - struct Func_3_UnityEngine_InputSystem_InputDevice_UnityEngine_InputSystem_LowLevel_InputEventPtr_Boolean___Fields fields; -}; - struct Func_3_UnityEngine_InputSystem_InputDevice_UnityEngine_InputSystem_LowLevel_InputEventPtr_Boolean___Array { struct Func_3_UnityEngine_InputSystem_InputDevice_UnityEngine_InputSystem_LowLevel_InputEventPtr_Boolean___Array__Class *klass; MonitorData *monitor; @@ -559809,16 +565814,6 @@ struct IEnumerator_1_System_Func_3_ { MonitorData *monitor; }; -struct Action_1_UnityEngine_InputSystem_PlayerInput___Fields { - struct MulticastDelegate__Fields _; -}; - -struct Action_1_UnityEngine_InputSystem_PlayerInput_ { - struct Action_1_UnityEngine_InputSystem_PlayerInput___Class *klass; - MonitorData *monitor; - struct Action_1_UnityEngine_InputSystem_PlayerInput___Fields fields; -}; - struct Action_1_UnityEngine_InputSystem_PlayerInput___Array { struct Action_1_UnityEngine_InputSystem_PlayerInput___Array__Class *klass; MonitorData *monitor; @@ -560165,6 +566160,21 @@ struct ICollection_1_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputAc struct ICollection_1_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___VTable vtable; }; +struct InputSystemUIInputModule_InputActionReferenceState___VTable { +}; + +struct InputSystemUIInputModule_InputActionReferenceState___StaticFields { +}; + +struct InputSystemUIInputModule_InputActionReferenceState___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputSystemUIInputModule_InputActionReferenceState___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputSystemUIInputModule_InputActionReferenceState___VTable vtable; +}; + struct KeyValuePair_2_UnityEngine_InputSystem_InputAction_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -561392,23 +567402,23 @@ struct InlinedArray_1_System_Action_1__4__Class { struct InlinedArray_1_System_Action_1__4__VTable vtable; }; -struct CallbackArray_1_System_Action_1__2__VTable { +struct CallbackArray_1_System_Action_1__3__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; VirtualInvokeData GetHashCode; VirtualInvokeData ToString; }; -struct CallbackArray_1_System_Action_1__2__StaticFields { +struct CallbackArray_1_System_Action_1__3__StaticFields { }; -struct CallbackArray_1_System_Action_1__2__Class { +struct CallbackArray_1_System_Action_1__3__Class { Il2CppClass_0 _0; Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct CallbackArray_1_System_Action_1__2__StaticFields *static_fields; + struct CallbackArray_1_System_Action_1__3__StaticFields *static_fields; const Il2CppRGCTXData *rgctx_data; Il2CppClass_1 _1; - struct CallbackArray_1_System_Action_1__2__VTable vtable; + struct CallbackArray_1_System_Action_1__3__VTable vtable; }; struct PlayerInput_1__Array__VTable { @@ -561566,6 +567576,21 @@ struct ReadOnlyArray_1_UnityEngine_InputSystem_PlayerInput___Class { struct ReadOnlyArray_1_UnityEngine_InputSystem_PlayerInput___VTable vtable; }; +struct InputControlScheme___VTable { +}; + +struct InputControlScheme___StaticFields { +}; + +struct InputControlScheme___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputControlScheme___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputControlScheme___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class PlayerJoinBehavior__Enum : int32_t { JoinPlayersWhenButtonIsPressed = 0x00000000, @@ -561617,8 +567642,8 @@ struct PlayerInputManager__Fields { bool m_UnpairedDeviceUsedDelegateHooked; struct Action_1_UnityEngine_InputSystem_InputAction_CallbackContext_ *m_JoinActionDelegate; struct Action_2_UnityEngine_InputSystem_InputControl_UnityEngine_InputSystem_LowLevel_InputEventPtr_ *m_UnpairedDeviceUsedDelegate; - struct CallbackArray_1_System_Action_1__2 m_PlayerJoinedCallbacks; - struct CallbackArray_1_System_Action_1__2 m_PlayerLeftCallbacks; + struct CallbackArray_1_System_Action_1__3 m_PlayerJoinedCallbacks; + struct CallbackArray_1_System_Action_1__3 m_PlayerLeftCallbacks; }; struct PlayerInputManager { @@ -561864,6 +567889,11 @@ struct PoseState__Class { struct PoseState__VTable vtable; }; +struct InputProcessor_1_UnityEngine_InputSystem_XR_PoseState_ { + struct InputProcessor_1_UnityEngine_InputSystem_XR_PoseState___Class *klass; + MonitorData *monitor; +}; + struct InlinedArray_1_UnityEngine_InputSystem_InputProcessor_1__8 { int32_t length; struct InputProcessor_1_UnityEngine_InputSystem_XR_PoseState_ *firstValue; @@ -561906,11 +567936,6 @@ struct PoseControl { struct PoseControl__Fields fields; }; -struct InputProcessor_1_UnityEngine_InputSystem_XR_PoseState_ { - struct InputProcessor_1_UnityEngine_InputSystem_XR_PoseState___Class *klass; - MonitorData *monitor; -}; - struct InputProcessor_1_UnityEngine_InputSystem_XR_PoseState___Array { struct InputProcessor_1_UnityEngine_InputSystem_XR_PoseState___Array__Class *klass; MonitorData *monitor; @@ -562067,6 +568092,21 @@ struct PoseControl__Class { struct PoseControl__VTable vtable; }; +struct Camera___VTable { +}; + +struct Camera___StaticFields { +}; + +struct Camera___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Camera___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Camera___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class FeatureType__Enum : int32_t { Custom = 0x00000000, @@ -562123,6 +568163,16 @@ struct XRFeatureDescriptor__Boxed { struct XRFeatureDescriptor fields; }; +struct UsageHint { + struct String *content; +}; + +struct UsageHint__Boxed { + struct UsageHint__Class *klass; + MonitorData *monitor; + struct UsageHint fields; +}; + struct __declspec(align(8)) List_1_UnityEngine_InputSystem_XR_UsageHint___Fields { struct UsageHint__Array *_items; int32_t _size; @@ -562136,16 +568186,6 @@ struct List_1_UnityEngine_InputSystem_XR_UsageHint_ { struct List_1_UnityEngine_InputSystem_XR_UsageHint___Fields fields; }; -struct UsageHint { - struct String *content; -}; - -struct UsageHint__Boxed { - struct UsageHint__Class *klass; - MonitorData *monitor; - struct UsageHint fields; -}; - struct UsageHint__Array { struct UsageHint__Array__Class *klass; MonitorData *monitor; @@ -562614,6 +568654,11 @@ struct Eyes__Class { struct Eyes__VTable vtable; }; +struct InputProcessor_1_UnityEngine_InputSystem_XR_Bone_ { + struct InputProcessor_1_UnityEngine_InputSystem_XR_Bone___Class *klass; + MonitorData *monitor; +}; + struct InlinedArray_1_UnityEngine_InputSystem_InputProcessor_1__9 { int32_t length; struct InputProcessor_1_UnityEngine_InputSystem_XR_Bone_ *firstValue; @@ -562653,11 +568698,6 @@ struct BoneControl { struct BoneControl__Fields fields; }; -struct InputProcessor_1_UnityEngine_InputSystem_XR_Bone_ { - struct InputProcessor_1_UnityEngine_InputSystem_XR_Bone___Class *klass; - MonitorData *monitor; -}; - struct InputProcessor_1_UnityEngine_InputSystem_XR_Bone___Array { struct InputProcessor_1_UnityEngine_InputSystem_XR_Bone___Array__Class *klass; MonitorData *monitor; @@ -562814,6 +568854,11 @@ struct BoneControl__Class { struct BoneControl__VTable vtable; }; +struct InputProcessor_1_UnityEngine_InputSystem_XR_Eyes_ { + struct InputProcessor_1_UnityEngine_InputSystem_XR_Eyes___Class *klass; + MonitorData *monitor; +}; + struct InlinedArray_1_UnityEngine_InputSystem_InputProcessor_1__10 { int32_t length; struct InputProcessor_1_UnityEngine_InputSystem_XR_Eyes_ *firstValue; @@ -562857,11 +568902,6 @@ struct EyesControl { struct EyesControl__Fields fields; }; -struct InputProcessor_1_UnityEngine_InputSystem_XR_Eyes_ { - struct InputProcessor_1_UnityEngine_InputSystem_XR_Eyes___Class *klass; - MonitorData *monitor; -}; - struct InputProcessor_1_UnityEngine_InputSystem_XR_Eyes___Array { struct InputProcessor_1_UnityEngine_InputSystem_XR_Eyes___Array__Class *klass; MonitorData *monitor; @@ -563744,6 +569784,21 @@ struct InputUser_ControlSchemeChangeSyntax__Class { struct InputUser_ControlSchemeChangeSyntax__VTable vtable; }; +struct InputControlList_1_InputDevice__1__VTable { +}; + +struct InputControlList_1_InputDevice__1__StaticFields { +}; + +struct InputControlList_1_InputDevice__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputControlList_1_InputDevice__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputControlList_1_InputDevice__1__VTable vtable; +}; + struct Nullable_1_UnityEngine_InputSystem_Users_InputUser_ { bool hasValue; struct InputUser value; @@ -563839,6 +569894,21 @@ struct InputUserPairingOptions__Enum__Class { struct InputUserPairingOptions__Enum__VTable vtable; }; +struct Nullable_1_UnityEngine_InputSystem_Users_InputUserAccountHandle__1__VTable { +}; + +struct Nullable_1_UnityEngine_InputSystem_Users_InputUserAccountHandle__1__StaticFields { +}; + +struct Nullable_1_UnityEngine_InputSystem_Users_InputUserAccountHandle__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Nullable_1_UnityEngine_InputSystem_Users_InputUserAccountHandle__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Nullable_1_UnityEngine_InputSystem_Users_InputUserAccountHandle__1__VTable vtable; +}; + struct InputUser_CompareDevicesByUserAccount { struct InputUserAccountHandle platformUserAccountHandle; }; @@ -563884,6 +569954,21 @@ struct SavedStructState_1_T_TypedRestore_UnityEngine_InputSystem_Users_InputUser struct SavedStructState_1_T_TypedRestore_UnityEngine_InputSystem_Users_InputUser_GlobalState___Fields fields; }; +struct InputUser_GlobalState___VTable { +}; + +struct InputUser_GlobalState___StaticFields { +}; + +struct InputUser_GlobalState___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputUser_GlobalState___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputUser_GlobalState___VTable vtable; +}; + struct SavedStructState_1_T_TypedRestore_UnityEngine_InputSystem_Users_InputUser_GlobalState___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -564070,6 +570155,81 @@ struct ExtendedAxisEventData__Class { struct ExtendedAxisEventData__VTable vtable; }; +struct PointerModel___VTable { +}; + +struct PointerModel___StaticFields { +}; + +struct PointerModel___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PointerModel___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PointerModel___VTable vtable; +}; + +struct PointerModel_ButtonState___VTable { +}; + +struct PointerModel_ButtonState___StaticFields { +}; + +struct PointerModel_ButtonState___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PointerModel_ButtonState___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PointerModel_ButtonState___VTable vtable; +}; + +struct NavigationModel___VTable { +}; + +struct NavigationModel___StaticFields { +}; + +struct NavigationModel___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NavigationModel___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NavigationModel___VTable vtable; +}; + +struct InputActionReference___VTable { +}; + +struct InputActionReference___StaticFields { +}; + +struct InputActionReference___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputActionReference___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputActionReference___VTable vtable; +}; + +struct InputAction_CallbackContext___VTable { +}; + +struct InputAction_CallbackContext___StaticFields { +}; + +struct InputAction_CallbackContext___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputAction_CallbackContext___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputAction_CallbackContext___VTable vtable; +}; + struct MultiplayerEventSystem__Fields { struct EventSystem__Fields _; struct GameObject *m_PlayerRoot; @@ -564293,6 +570453,21 @@ struct VirtualMouseInput__Class { struct VirtualMouseInput__VTable vtable; }; +struct InputActionProperty___VTable { +}; + +struct InputActionProperty___StaticFields { +}; + +struct InputActionProperty___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputActionProperty___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputActionProperty___VTable vtable; +}; + struct SwitchProControllerHID__Fields { struct Gamepad__Fields _; struct ButtonControl *_captureButton_k__BackingField; @@ -565148,40 +571323,6 @@ struct HID_UsagePage__Enum__Boxed { #endif }; -struct HID_HIDDeviceDescriptor { - int32_t vendorId; - int32_t productId; - int32_t usage; - #if defined(_CPLUSPLUS_) - HID_UsagePage__Enum usagePage; - #else - int32_t usagePage; - #endif - int32_t inputReportSize; - int32_t outputReportSize; - int32_t featureReportSize; - struct HID_HIDElementDescriptor__Array *elements; - struct HID_HIDCollectionDescriptor__Array *collections; -}; - -struct HID_HIDDeviceDescriptor__Boxed { - struct HID_HIDDeviceDescriptor__Class *klass; - MonitorData *monitor; - struct HID_HIDDeviceDescriptor fields; -}; - -struct HID__Fields { - struct InputDevice__Fields _; - bool m_HaveParsedHIDDescriptor; - struct HID_HIDDeviceDescriptor m_HIDDescriptor; -}; - -struct HID { - struct HID__Class *klass; - MonitorData *monitor; - struct HID__Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class HID_HIDReportType__Enum : int32_t { Unknown = 0x00000000, @@ -565283,14 +571424,6 @@ struct HID_HIDElementDescriptor__Boxed { struct HID_HIDElementDescriptor fields; }; -struct HID_HIDElementDescriptor__Array { - struct HID_HIDElementDescriptor__Array__Class *klass; - MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - struct HID_HIDElementDescriptor vector[32]; -}; - #if defined(_CPLUSPLUS_) enum class HID_HIDCollectionType__Enum : int32_t { Physical = 0x00000000, @@ -565347,6 +571480,48 @@ struct HID_HIDCollectionDescriptor__Boxed { struct HID_HIDCollectionDescriptor fields; }; +struct HID_HIDDeviceDescriptor { + int32_t vendorId; + int32_t productId; + int32_t usage; + #if defined(_CPLUSPLUS_) + HID_UsagePage__Enum usagePage; + #else + int32_t usagePage; + #endif + int32_t inputReportSize; + int32_t outputReportSize; + int32_t featureReportSize; + struct HID_HIDElementDescriptor__Array *elements; + struct HID_HIDCollectionDescriptor__Array *collections; +}; + +struct HID_HIDDeviceDescriptor__Boxed { + struct HID_HIDDeviceDescriptor__Class *klass; + MonitorData *monitor; + struct HID_HIDDeviceDescriptor fields; +}; + +struct HID__Fields { + struct InputDevice__Fields _; + bool m_HaveParsedHIDDescriptor; + struct HID_HIDDeviceDescriptor m_HIDDescriptor; +}; + +struct HID { + struct HID__Class *klass; + MonitorData *monitor; + struct HID__Fields fields; +}; + +struct HID_HIDElementDescriptor__Array { + struct HID_HIDElementDescriptor__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct HID_HIDElementDescriptor vector[32]; +}; + struct HID_HIDCollectionDescriptor__Array { struct HID_HIDCollectionDescriptor__Array__Class *klass; MonitorData *monitor; @@ -565787,6 +571962,21 @@ struct InputControlLayout_Builder { struct InputControlLayout_Builder__Fields fields; }; +struct HID_HIDElementDescriptor___VTable { +}; + +struct HID_HIDElementDescriptor___StaticFields { +}; + +struct HID_HIDElementDescriptor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HID_HIDElementDescriptor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HID_HIDElementDescriptor___VTable vtable; +}; + struct InputControlLayout_Builder__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -565806,6 +571996,21 @@ struct InputControlLayout_Builder__Class { struct InputControlLayout_Builder__VTable vtable; }; +struct InputControlLayout_Builder___VTable { +}; + +struct InputControlLayout_Builder___StaticFields { +}; + +struct InputControlLayout_Builder___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputControlLayout_Builder___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputControlLayout_Builder___VTable vtable; +}; + struct HID_HIDDeviceDescriptorBuilder { #if defined(_CPLUSPLUS_) HID_UsagePage__Enum usagePage; @@ -566250,17 +572455,19 @@ struct HID_c_DisplayClass12_0__Class { struct HID_c_DisplayClass12_0__VTable vtable; }; -struct __declspec(align(8)) List_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData___Fields { - struct HIDParser_HIDReportData__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; +struct HID_HIDDeviceDescriptor___VTable { }; -struct List_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_ { - struct List_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData___Fields fields; +struct HID_HIDDeviceDescriptor___StaticFields { +}; + +struct HID_HIDDeviceDescriptor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HID_HIDDeviceDescriptor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HID_HIDDeviceDescriptor___VTable vtable; }; struct HIDParser_HIDReportData { @@ -566279,6 +572486,19 @@ struct HIDParser_HIDReportData__Boxed { struct HIDParser_HIDReportData fields; }; +struct __declspec(align(8)) List_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData___Fields { + struct HIDParser_HIDReportData__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData_ { + struct List_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_InputSystem_HID_HIDParser_HIDReportData___Fields fields; +}; + struct HIDParser_HIDReportData__Array { struct HIDParser_HIDReportData__Array__Class *klass; MonitorData *monitor; @@ -566431,6 +572651,21 @@ struct HIDParser_HIDItemStateLocal__Class { struct HIDParser_HIDItemStateLocal__VTable vtable; }; +struct HIDParser_HIDItemStateLocal___VTable { +}; + +struct HIDParser_HIDItemStateLocal___StaticFields { +}; + +struct HIDParser_HIDItemStateLocal___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HIDParser_HIDItemStateLocal___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HIDParser_HIDItemStateLocal___VTable vtable; +}; + struct HIDParser_HIDItemStateGlobal { struct Nullable_1_Int32_ usagePage; struct Nullable_1_Int32_ logicalMinimum; @@ -566469,18 +572704,6 @@ struct HIDParser_HIDItemStateGlobal__Class { struct HIDParser_HIDItemStateGlobal__VTable vtable; }; -struct ReadOnlyArray_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage_ { - struct HIDSupport_HIDPageUsage__Array *m_Array; - int32_t m_StartIndex; - int32_t m_Length; -}; - -struct ReadOnlyArray_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage___Boxed { - struct ReadOnlyArray_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage___Class *klass; - MonitorData *monitor; - struct ReadOnlyArray_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage_ fields; -}; - struct HIDSupport_HIDPageUsage { #if defined(_CPLUSPLUS_) HID_UsagePage__Enum page; @@ -566496,6 +572719,18 @@ struct HIDSupport_HIDPageUsage__Boxed { struct HIDSupport_HIDPageUsage fields; }; +struct ReadOnlyArray_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage_ { + struct HIDSupport_HIDPageUsage__Array *m_Array; + int32_t m_StartIndex; + int32_t m_Length; +}; + +struct ReadOnlyArray_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage___Boxed { + struct ReadOnlyArray_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage___Class *klass; + MonitorData *monitor; + struct ReadOnlyArray_1_UnityEngine_InputSystem_HID_HIDSupport_HIDPageUsage_ fields; +}; + struct HIDSupport_HIDPageUsage__Array { struct HIDSupport_HIDPageUsage__Array__Class *klass; MonitorData *monitor; @@ -566939,6 +573174,16 @@ struct InlinedArray_1_UnityEngine_InputSystem_Touchscreen___Boxed { struct InlinedArray_1_UnityEngine_InputSystem_Touchscreen_ fields; }; +struct Action_1_UnityEngine_InputSystem_EnhancedTouch_Finger___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_1_UnityEngine_InputSystem_EnhancedTouch_Finger_ { + struct Action_1_UnityEngine_InputSystem_EnhancedTouch_Finger___Class *klass; + MonitorData *monitor; + struct Action_1_UnityEngine_InputSystem_EnhancedTouch_Finger___Fields fields; +}; + struct InlinedArray_1_System_Action_1__5 { int32_t length; struct Action_1_UnityEngine_InputSystem_EnhancedTouch_Finger_ *firstValue; @@ -566951,17 +573196,17 @@ struct InlinedArray_1_System_Action_1__5__Boxed { struct InlinedArray_1_System_Action_1__5 fields; }; -struct CallbackArray_1_System_Action_1__3 { +struct CallbackArray_1_System_Action_1__4 { bool m_CannotMutateCallbacksArray; struct InlinedArray_1_System_Action_1__5 m_Callbacks; struct InlinedArray_1_System_Action_1__5 m_CallbacksToAdd; struct InlinedArray_1_System_Action_1__5 m_CallbacksToRemove; }; -struct CallbackArray_1_System_Action_1__3__Boxed { - struct CallbackArray_1_System_Action_1__3__Class *klass; +struct CallbackArray_1_System_Action_1__4__Boxed { + struct CallbackArray_1_System_Action_1__4__Class *klass; MonitorData *monitor; - struct CallbackArray_1_System_Action_1__3 fields; + struct CallbackArray_1_System_Action_1__4 fields; }; struct Touch_FingerAndTouchState { @@ -566991,9 +573236,9 @@ struct Touch_FingerAndTouchState__Boxed { struct Touch_GlobalState { struct InlinedArray_1_UnityEngine_InputSystem_Touchscreen_ touchscreens; int32_t historyLengthPerFinger; - struct CallbackArray_1_System_Action_1__3 onFingerDown; - struct CallbackArray_1_System_Action_1__3 onFingerMove; - struct CallbackArray_1_System_Action_1__3 onFingerUp; + struct CallbackArray_1_System_Action_1__4 onFingerDown; + struct CallbackArray_1_System_Action_1__4 onFingerMove; + struct CallbackArray_1_System_Action_1__4 onFingerUp; struct Touch_FingerAndTouchState playerState; }; @@ -567016,16 +573261,6 @@ struct IEnumerator_1_UnityEngine_InputSystem_Touchscreen_ { MonitorData *monitor; }; -struct Action_1_UnityEngine_InputSystem_EnhancedTouch_Finger___Fields { - struct MulticastDelegate__Fields _; -}; - -struct Action_1_UnityEngine_InputSystem_EnhancedTouch_Finger_ { - struct Action_1_UnityEngine_InputSystem_EnhancedTouch_Finger___Class *klass; - MonitorData *monitor; - struct Action_1_UnityEngine_InputSystem_EnhancedTouch_Finger___Fields fields; -}; - struct Action_1_UnityEngine_InputSystem_EnhancedTouch_Finger___Array { struct Action_1_UnityEngine_InputSystem_EnhancedTouch_Finger___Array__Class *klass; MonitorData *monitor; @@ -567188,23 +573423,23 @@ struct InlinedArray_1_System_Action_1__5__Class { struct InlinedArray_1_System_Action_1__5__VTable vtable; }; -struct CallbackArray_1_System_Action_1__3__VTable { +struct CallbackArray_1_System_Action_1__4__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; VirtualInvokeData GetHashCode; VirtualInvokeData ToString; }; -struct CallbackArray_1_System_Action_1__3__StaticFields { +struct CallbackArray_1_System_Action_1__4__StaticFields { }; -struct CallbackArray_1_System_Action_1__3__Class { +struct CallbackArray_1_System_Action_1__4__Class { Il2CppClass_0 _0; Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct CallbackArray_1_System_Action_1__3__StaticFields *static_fields; + struct CallbackArray_1_System_Action_1__4__StaticFields *static_fields; const Il2CppRGCTXData *rgctx_data; Il2CppClass_1 _1; - struct CallbackArray_1_System_Action_1__3__VTable vtable; + struct CallbackArray_1_System_Action_1__4__VTable vtable; }; struct Finger__Array__VTable { @@ -567384,6 +573619,21 @@ struct Touch_ExtraDataPerTouchState__Class { struct Touch_ExtraDataPerTouchState__VTable vtable; }; +struct Touch_ExtraDataPerTouchState___VTable { +}; + +struct Touch_ExtraDataPerTouchState___StaticFields { +}; + +struct Touch_ExtraDataPerTouchState___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Touch_ExtraDataPerTouchState___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Touch_ExtraDataPerTouchState___VTable vtable; +}; + struct ReadOnlyArray_1_UnityEngine_InputSystem_EnhancedTouch_Touch_ { struct Touch_1__Array *m_Array; int32_t m_StartIndex; @@ -567511,6 +573761,21 @@ struct SavedStructState_1_T_TypedRestore_UnityEngine_InputSystem_EnhancedTouch_T struct SavedStructState_1_T_TypedRestore_UnityEngine_InputSystem_EnhancedTouch_Touch_GlobalState___Fields fields; }; +struct Touch_GlobalState___VTable { +}; + +struct Touch_GlobalState___StaticFields { +}; + +struct Touch_GlobalState___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Touch_GlobalState___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Touch_GlobalState___VTable vtable; +}; + struct SavedStructState_1_T_TypedRestore_UnityEngine_InputSystem_EnhancedTouch_Touch_GlobalState___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -570074,6 +576339,21 @@ struct DeltaStateEventPtr__Class { struct DeltaStateEventPtr__VTable vtable; }; +struct InputEventPtr___VTable { +}; + +struct InputEventPtr___StaticFields { +}; + +struct InputEventPtr___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputEventPtr___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputEventPtr___VTable vtable; +}; + struct DeviceConfigurationEvent { struct InputEvent baseEvent; }; @@ -570232,6 +576512,21 @@ struct IMECompositionString_Enumerator__Class { struct IMECompositionString_Enumerator__VTable vtable; }; +struct InputEventPtr__1__VTable { +}; + +struct InputEventPtr__1__StaticFields { +}; + +struct InputEventPtr__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputEventPtr__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputEventPtr__1__VTable vtable; +}; + struct InputEventBuffer_Enumerator { struct InputEvent *m_Buffer; int32_t m_EventCount; @@ -570299,6 +576594,16 @@ struct InputEventListener_DisposableObserver__Class { struct InputEventListener_DisposableObserver__VTable vtable; }; +struct Action_1_UnityEngine_InputSystem_LowLevel_InputEventPtr___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_1_UnityEngine_InputSystem_LowLevel_InputEventPtr_ { + struct Action_1_UnityEngine_InputSystem_LowLevel_InputEventPtr___Class *klass; + MonitorData *monitor; + struct Action_1_UnityEngine_InputSystem_LowLevel_InputEventPtr___Fields fields; +}; + struct InlinedArray_1_System_Action_1__6 { int32_t length; struct Action_1_UnityEngine_InputSystem_LowLevel_InputEventPtr_ *firstValue; @@ -570311,17 +576616,31 @@ struct InlinedArray_1_System_Action_1__6__Boxed { struct InlinedArray_1_System_Action_1__6 fields; }; -struct CallbackArray_1_System_Action_1__4 { +struct CallbackArray_1_System_Action_1__5 { bool m_CannotMutateCallbacksArray; struct InlinedArray_1_System_Action_1__6 m_Callbacks; struct InlinedArray_1_System_Action_1__6 m_CallbacksToAdd; struct InlinedArray_1_System_Action_1__6 m_CallbacksToRemove; }; -struct CallbackArray_1_System_Action_1__4__Boxed { - struct CallbackArray_1_System_Action_1__4__Class *klass; +struct CallbackArray_1_System_Action_1__5__Boxed { + struct CallbackArray_1_System_Action_1__5__Class *klass; MonitorData *monitor; - struct CallbackArray_1_System_Action_1__4 fields; + struct CallbackArray_1_System_Action_1__5 fields; +}; + +struct InputEventTrace_DeviceInfo { + int32_t m_DeviceId; + struct String *m_Layout; + struct FourCC m_StateFormat; + int32_t m_StateSizeInBytes; + struct String *m_FullLayoutJson; +}; + +struct InputEventTrace_DeviceInfo__Boxed { + struct InputEventTrace_DeviceInfo__Class *klass; + MonitorData *monitor; + struct InputEventTrace_DeviceInfo fields; }; struct __declspec(align(8)) InputEventTrace__Fields { @@ -570329,7 +576648,7 @@ struct __declspec(align(8)) InputEventTrace__Fields { bool m_Enabled; struct Func_3_UnityEngine_InputSystem_LowLevel_InputEventPtr_UnityEngine_InputSystem_InputDevice_Boolean_ *m_OnFilterEvent; int32_t m_DeviceId; - struct CallbackArray_1_System_Action_1__4 m_EventListeners; + struct CallbackArray_1_System_Action_1__5 m_EventListeners; int64_t m_EventBufferSize; int64_t m_MaxEventBufferSize; int64_t m_GrowIncrementSize; @@ -570359,16 +576678,6 @@ struct Func_3_UnityEngine_InputSystem_LowLevel_InputEventPtr_UnityEngine_InputSy struct Func_3_UnityEngine_InputSystem_LowLevel_InputEventPtr_UnityEngine_InputSystem_InputDevice_Boolean___Fields fields; }; -struct Action_1_UnityEngine_InputSystem_LowLevel_InputEventPtr___Fields { - struct MulticastDelegate__Fields _; -}; - -struct Action_1_UnityEngine_InputSystem_LowLevel_InputEventPtr_ { - struct Action_1_UnityEngine_InputSystem_LowLevel_InputEventPtr___Class *klass; - MonitorData *monitor; - struct Action_1_UnityEngine_InputSystem_LowLevel_InputEventPtr___Fields fields; -}; - struct Action_1_UnityEngine_InputSystem_LowLevel_InputEventPtr___Array { struct Action_1_UnityEngine_InputSystem_LowLevel_InputEventPtr___Array__Class *klass; MonitorData *monitor; @@ -570382,20 +576691,6 @@ struct IEnumerator_1_System_Action_1__11 { MonitorData *monitor; }; -struct InputEventTrace_DeviceInfo { - int32_t m_DeviceId; - struct String *m_Layout; - struct FourCC m_StateFormat; - int32_t m_StateSizeInBytes; - struct String *m_FullLayoutJson; -}; - -struct InputEventTrace_DeviceInfo__Boxed { - struct InputEventTrace_DeviceInfo__Class *klass; - MonitorData *monitor; - struct InputEventTrace_DeviceInfo fields; -}; - struct InputEventTrace_DeviceInfo__Array { struct InputEventTrace_DeviceInfo__Array__Class *klass; MonitorData *monitor; @@ -570514,23 +576809,23 @@ struct InlinedArray_1_System_Action_1__6__Class { struct InlinedArray_1_System_Action_1__6__VTable vtable; }; -struct CallbackArray_1_System_Action_1__4__VTable { +struct CallbackArray_1_System_Action_1__5__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; VirtualInvokeData GetHashCode; VirtualInvokeData ToString; }; -struct CallbackArray_1_System_Action_1__4__StaticFields { +struct CallbackArray_1_System_Action_1__5__StaticFields { }; -struct CallbackArray_1_System_Action_1__4__Class { +struct CallbackArray_1_System_Action_1__5__Class { Il2CppClass_0 _0; Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct CallbackArray_1_System_Action_1__4__StaticFields *static_fields; + struct CallbackArray_1_System_Action_1__5__StaticFields *static_fields; const Il2CppRGCTXData *rgctx_data; Il2CppClass_1 _1; - struct CallbackArray_1_System_Action_1__4__VTable vtable; + struct CallbackArray_1_System_Action_1__5__VTable vtable; }; struct InputEventTrace_DeviceInfo__VTable { @@ -572404,6 +578699,19 @@ struct InputControlAttribute__Array__Class { struct InputControlAttribute__Array__VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct InputControlLayout_ControlItem value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Array *_entries; @@ -572423,19 +578731,6 @@ struct Dictionary_2_System_String_UnityEngine_InputSystem_Layouts_InputControlLa struct Dictionary_2_System_String_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct InputControlLayout_ControlItem value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Array { struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Array__Class *klass; MonitorData *monitor; @@ -572745,6 +579040,51 @@ struct Dictionary_2_System_String_UnityEngine_InputSystem_Layouts_InputControlLa struct Dictionary_2_System_String_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___VTable vtable; }; +struct InlinedArray_1_InternedString__1__VTable { +}; + +struct InlinedArray_1_InternedString__1__StaticFields { +}; + +struct InlinedArray_1_InternedString__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InlinedArray_1_InternedString__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InlinedArray_1_InternedString__1__VTable vtable; +}; + +struct InputDeviceMatcher___VTable { +}; + +struct InputDeviceMatcher___StaticFields { +}; + +struct InputDeviceMatcher___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputDeviceMatcher___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputDeviceMatcher___VTable vtable; +}; + +struct InputControlLayout_Cache___VTable { +}; + +struct InputControlLayout_Cache___StaticFields { +}; + +struct InputControlLayout_Cache___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputControlLayout_Cache___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputControlLayout_Cache___VTable vtable; +}; + struct InputControlLayout_CacheRefInstance { bool valid; }; @@ -572870,29 +579210,6 @@ struct InputControlLayout_Builder_ControlBuilder_c__Class { struct InputControlLayout_Builder_ControlBuilder_c__VTable vtable; }; -struct InputControlLayout_LayoutJson { - struct String *name; - struct String *extend; - struct String__Array *extendMultiple; - struct String *format; - struct String *beforeRender; - struct String *runInBackground; - struct String__Array *commonUsages; - struct String *displayName; - struct String *description; - struct String *type; - struct String *variant; - bool isGenericTypeOfDevice; - bool hideInUI; - struct InputControlLayout_ControlItemJson__Array *controls; -}; - -struct InputControlLayout_LayoutJson__Boxed { - struct InputControlLayout_LayoutJson__Class *klass; - MonitorData *monitor; - struct InputControlLayout_LayoutJson fields; -}; - struct __declspec(align(8)) InputControlLayout_ControlItemJson__Fields { struct String *name; struct String *layout; @@ -572925,6 +579242,29 @@ struct InputControlLayout_ControlItemJson { struct InputControlLayout_ControlItemJson__Fields fields; }; +struct InputControlLayout_LayoutJson { + struct String *name; + struct String *extend; + struct String__Array *extendMultiple; + struct String *format; + struct String *beforeRender; + struct String *runInBackground; + struct String__Array *commonUsages; + struct String *displayName; + struct String *description; + struct String *type; + struct String *variant; + bool isGenericTypeOfDevice; + bool hideInUI; + struct InputControlLayout_ControlItemJson__Array *controls; +}; + +struct InputControlLayout_LayoutJson__Boxed { + struct InputControlLayout_LayoutJson__Class *klass; + MonitorData *monitor; + struct InputControlLayout_LayoutJson fields; +}; + struct InputControlLayout_ControlItemJson__Array { struct InputControlLayout_ControlItemJson__Array__Class *klass; MonitorData *monitor; @@ -573315,6 +579655,36 @@ struct InputDeviceBuilder__Class { struct InputDeviceBuilder__VTable vtable; }; +struct InputDevice_ControlBitRangeNode___VTable { +}; + +struct InputDevice_ControlBitRangeNode___StaticFields { +}; + +struct InputDevice_ControlBitRangeNode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputDevice_ControlBitRangeNode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputDevice_ControlBitRangeNode___VTable vtable; +}; + +struct InputDeviceBuilder___VTable { +}; + +struct InputDeviceBuilder___StaticFields { +}; + +struct InputDeviceBuilder___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputDeviceBuilder___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputDeviceBuilder___VTable vtable; +}; + struct InputDeviceBuilder_RefInstance { }; @@ -573365,6 +579735,17 @@ struct IEnumerable_1_KeyValuePair_2_System_String_System_Object___Class { struct IEnumerable_1_KeyValuePair_2_System_String_System_Object___VTable vtable; }; +struct InputDeviceMatcher_MatcherJson_Capability { + struct String *path; + struct String *value; +}; + +struct InputDeviceMatcher_MatcherJson_Capability__Boxed { + struct InputDeviceMatcher_MatcherJson_Capability__Class *klass; + MonitorData *monitor; + struct InputDeviceMatcher_MatcherJson_Capability fields; +}; + struct InputDeviceMatcher_MatcherJson { struct String *interface; struct String__Array *interfaces; @@ -573385,17 +579766,6 @@ struct InputDeviceMatcher_MatcherJson__Boxed { struct InputDeviceMatcher_MatcherJson fields; }; -struct InputDeviceMatcher_MatcherJson_Capability { - struct String *path; - struct String *value; -}; - -struct InputDeviceMatcher_MatcherJson_Capability__Boxed { - struct InputDeviceMatcher_MatcherJson_Capability__Class *klass; - MonitorData *monitor; - struct InputDeviceMatcher_MatcherJson_Capability fields; -}; - struct InputDeviceMatcher_MatcherJson_Capability__Array { struct InputDeviceMatcher_MatcherJson_Capability__Array__Class *klass; MonitorData *monitor; @@ -573621,6 +579991,21 @@ struct HoldInteraction { struct HoldInteraction__Fields fields; }; +struct InputInteractionContext___VTable { +}; + +struct InputInteractionContext___StaticFields { +}; + +struct InputInteractionContext___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputInteractionContext___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputInteractionContext___VTable vtable; +}; + struct HoldInteraction__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -574243,6 +580628,21 @@ struct Vector3MagnitudeComparer__Class { struct Vector3MagnitudeComparer__VTable vtable; }; +struct CallbackArray_1_System_Action__1__VTable { +}; + +struct CallbackArray_1_System_Action__1__StaticFields { +}; + +struct CallbackArray_1_System_Action__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CallbackArray_1_System_Action__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CallbackArray_1_System_Action__1__VTable vtable; +}; + struct __declspec(align(8)) DisplayStringFormatAttribute__Fields { struct String *_formatString_k__BackingField; }; @@ -574401,6 +580801,19 @@ struct IEnumerator_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct JsonParser_JsonValue value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Array *_entries; @@ -574420,19 +580833,6 @@ struct Dictionary_2_System_String_UnityEngine_InputSystem_Utilities_JsonParser_J struct Dictionary_2_System_String_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct JsonParser_JsonValue value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Array { struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Array__Class *klass; MonitorData *monitor; @@ -574757,6 +581157,21 @@ struct ICollection_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Cl struct ICollection_1_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___VTable vtable; }; +struct JsonParser_JsonValue___VTable { +}; + +struct JsonParser_JsonValue___StaticFields { +}; + +struct JsonParser_JsonValue___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct JsonParser_JsonValue___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct JsonParser_JsonValue___VTable vtable; +}; + struct KeyValuePair_2_System_String_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -575028,6 +581443,21 @@ struct IEnumerable_1_UnityEngine_InputSystem_Utilities_NameAndParameters___Class struct IEnumerable_1_UnityEngine_InputSystem_Utilities_NameAndParameters___VTable vtable; }; +struct List_1_UnityEngine_InputSystem_Utilities_NameAndParameters__1__VTable { +}; + +struct List_1_UnityEngine_InputSystem_Utilities_NameAndParameters__1__StaticFields { +}; + +struct List_1_UnityEngine_InputSystem_Utilities_NameAndParameters__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_InputSystem_Utilities_NameAndParameters__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_InputSystem_Utilities_NameAndParameters__1__VTable vtable; +}; + struct NameAndParameters_c { struct NameAndParameters_c__Class *klass; MonitorData *monitor; @@ -575170,6 +581600,21 @@ struct PredictiveParser__Class { struct PredictiveParser__VTable vtable; }; +struct ReadOnlySpan_1_Char__1__VTable { +}; + +struct ReadOnlySpan_1_Char__1__StaticFields { +}; + +struct ReadOnlySpan_1_Char__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ReadOnlySpan_1_Char__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ReadOnlySpan_1_Char__1__VTable vtable; +}; + struct IEnumerable_1_UnityEngine_InputSystem_Utilities_Substring_ { struct IEnumerable_1_UnityEngine_InputSystem_Utilities_Substring___Class *klass; MonitorData *monitor; @@ -576680,6 +583125,19 @@ struct QueryOutputWriter { struct QueryOutputWriter__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Int32_ { + int32_t hashCode; + int32_t next; + struct XmlQualifiedName *key; + int32_t value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Int32___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Int32___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Int32_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Xml_XmlQualifiedName_System_Int32___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Int32___Array *_entries; @@ -576699,19 +583157,6 @@ struct Dictionary_2_System_Xml_XmlQualifiedName_System_Int32_ { struct Dictionary_2_System_Xml_XmlQualifiedName_System_Int32___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Int32_ { - int32_t hashCode; - int32_t next; - struct XmlQualifiedName *key; - int32_t value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Int32___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Int32___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Int32_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Int32___Array { struct Dictionary_2_TKey_TValue_Entry_System_Xml_XmlQualifiedName_System_Int32___Array__Class *klass; MonitorData *monitor; @@ -577934,51 +584379,6 @@ struct XmlAutoDetectWriter { struct XmlAutoDetectWriter__Fields fields; }; -struct StringConcat { - struct String *s1; - struct String *s2; - struct String *s3; - struct String *s4; - struct String *delimiter; - struct List_1_System_String_ *strList; - int32_t idxStr; -}; - -struct StringConcat__Boxed { - struct StringConcat__Class *klass; - MonitorData *monitor; - struct StringConcat fields; -}; - -struct XmlEventCache__Fields { - struct XmlRawWriter__Fields _; - struct List_1_System_Xml_XmlEventCache_XmlEvent_ *pages; - struct XmlEventCache_XmlEvent__Array *pageCurr; - int32_t pageSize; - bool hasRootNode; - struct StringConcat singleText; - struct String *baseUri; -}; - -struct XmlEventCache { - struct XmlEventCache__Class *klass; - MonitorData *monitor; - struct XmlEventCache__Fields fields; -}; - -struct __declspec(align(8)) List_1_System_Xml_XmlEventCache_XmlEvent___Fields { - struct XmlEventCache_XmlEvent__Array__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_System_Xml_XmlEventCache_XmlEvent_ { - struct List_1_System_Xml_XmlEventCache_XmlEvent___Class *klass; - MonitorData *monitor; - struct List_1_System_Xml_XmlEventCache_XmlEvent___Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class XmlEventCache_XmlEventType__Enum : int32_t { Unknown = 0x00000000, @@ -578068,6 +584468,38 @@ struct XmlEventCache_XmlEvent__Boxed { struct XmlEventCache_XmlEvent fields; }; +struct StringConcat { + struct String *s1; + struct String *s2; + struct String *s3; + struct String *s4; + struct String *delimiter; + struct List_1_System_String_ *strList; + int32_t idxStr; +}; + +struct StringConcat__Boxed { + struct StringConcat__Class *klass; + MonitorData *monitor; + struct StringConcat fields; +}; + +struct XmlEventCache__Fields { + struct XmlRawWriter__Fields _; + struct List_1_System_Xml_XmlEventCache_XmlEvent_ *pages; + struct XmlEventCache_XmlEvent__Array *pageCurr; + int32_t pageSize; + bool hasRootNode; + struct StringConcat singleText; + struct String *baseUri; +}; + +struct XmlEventCache { + struct XmlEventCache__Class *klass; + MonitorData *monitor; + struct XmlEventCache__Fields fields; +}; + struct XmlEventCache_XmlEvent__Array { struct XmlEventCache_XmlEvent__Array__Class *klass; MonitorData *monitor; @@ -578076,6 +584508,19 @@ struct XmlEventCache_XmlEvent__Array { struct XmlEventCache_XmlEvent vector[32]; }; +struct __declspec(align(8)) List_1_System_Xml_XmlEventCache_XmlEvent___Fields { + struct XmlEventCache_XmlEvent__Array__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_System_Xml_XmlEventCache_XmlEvent_ { + struct List_1_System_Xml_XmlEventCache_XmlEvent___Class *klass; + MonitorData *monitor; + struct List_1_System_Xml_XmlEventCache_XmlEvent___Fields fields; +}; + struct XmlEventCache_XmlEvent__Array__Array { struct XmlEventCache_XmlEvent__Array__Array__Class *klass; MonitorData *monitor; @@ -578812,6 +585257,21 @@ struct XmlValidatingReaderImpl__Class { struct XmlValidatingReaderImpl__VTable vtable; }; +struct XmlTextReaderImpl_NodeData___VTable { +}; + +struct XmlTextReaderImpl_NodeData___StaticFields { +}; + +struct XmlTextReaderImpl_NodeData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct XmlTextReaderImpl_NodeData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct XmlTextReaderImpl_NodeData___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class XmlTextReaderImpl_EntityType__Enum : int32_t { CharacterDec = 0x00000000, @@ -578948,6 +585408,21 @@ struct XmlTextReaderImpl_EntityExpandType__Enum__Class { struct XmlTextReaderImpl_EntityExpandType__Enum__VTable vtable; }; +struct XmlTextReaderImpl_EntityType___VTable { +}; + +struct XmlTextReaderImpl_EntityType___StaticFields { +}; + +struct XmlTextReaderImpl_EntityType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct XmlTextReaderImpl_EntityType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct XmlTextReaderImpl_EntityType___VTable vtable; +}; + struct XmlTextReaderImpl_NoNamespaceManager__Fields { struct XmlNamespaceManager__Fields _; }; @@ -579119,6 +585594,59 @@ struct Formatting__Enum__Boxed { #endif }; +#if defined(_CPLUSPLUS_) +enum class XmlTextWriter_NamespaceState__Enum : int32_t { + Uninitialized = 0x00000000, + NotDeclaredButInScope = 0x00000001, + DeclaredButNotWrittenOut = 0x00000002, + DeclaredAndWrittenOut = 0x00000003, +}; + +#else +enum XmlTextWriter_NamespaceState__Enum { + XmlTextWriter_NamespaceState__Enum_Uninitialized = 0x00000000, + XmlTextWriter_NamespaceState__Enum_NotDeclaredButInScope = 0x00000001, + XmlTextWriter_NamespaceState__Enum_DeclaredButNotWrittenOut = 0x00000002, + XmlTextWriter_NamespaceState__Enum_DeclaredAndWrittenOut = 0x00000003, +}; + +#endif +struct XmlTextWriter_NamespaceState__Enum__Boxed { + struct XmlTextWriter_NamespaceState__Enum__Class *klass; + MonitorData *monitor; + #if defined(_CPLUSPLUS_) + XmlTextWriter_NamespaceState__Enum value; + #else + int32_t value; + #endif +}; + +struct XmlTextWriter_TagInfo { + struct String *name; + struct String *prefix; + struct String *defaultNs; + #if defined(_CPLUSPLUS_) + XmlTextWriter_NamespaceState__Enum defaultNsState; + #else + int32_t defaultNsState; + #endif + #if defined(_CPLUSPLUS_) + XmlSpace__Enum xmlSpace; + #else + int32_t xmlSpace; + #endif + struct String *xmlLang; + int32_t prevNsTop; + int32_t prefixCount; + bool mixed; +}; + +struct XmlTextWriter_TagInfo__Boxed { + struct XmlTextWriter_TagInfo__Class *klass; + MonitorData *monitor; + struct XmlTextWriter_TagInfo fields; +}; + #if defined(_CPLUSPLUS_) enum class XmlTextWriter_State__Enum : int32_t { Start = 0x00000000, @@ -579232,6 +585760,19 @@ struct XmlTextWriter_SpecialAttr__Enum__Boxed { #endif }; +struct XmlTextWriter_Namespace { + struct String *prefix; + struct String *ns; + bool declared; + int32_t prevNsIndex; +}; + +struct XmlTextWriter_Namespace__Boxed { + struct XmlTextWriter_Namespace__Class *klass; + MonitorData *monitor; + struct XmlTextWriter_Namespace fields; +}; + struct __declspec(align(8)) XmlTextWriter__Fields { struct TextWriter *textWriter; struct XmlTextEncoder *xmlEncoder; @@ -579281,59 +585822,6 @@ struct XmlTextWriter { struct XmlTextWriter__Fields fields; }; -#if defined(_CPLUSPLUS_) -enum class XmlTextWriter_NamespaceState__Enum : int32_t { - Uninitialized = 0x00000000, - NotDeclaredButInScope = 0x00000001, - DeclaredButNotWrittenOut = 0x00000002, - DeclaredAndWrittenOut = 0x00000003, -}; - -#else -enum XmlTextWriter_NamespaceState__Enum { - XmlTextWriter_NamespaceState__Enum_Uninitialized = 0x00000000, - XmlTextWriter_NamespaceState__Enum_NotDeclaredButInScope = 0x00000001, - XmlTextWriter_NamespaceState__Enum_DeclaredButNotWrittenOut = 0x00000002, - XmlTextWriter_NamespaceState__Enum_DeclaredAndWrittenOut = 0x00000003, -}; - -#endif -struct XmlTextWriter_NamespaceState__Enum__Boxed { - struct XmlTextWriter_NamespaceState__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - XmlTextWriter_NamespaceState__Enum value; - #else - int32_t value; - #endif -}; - -struct XmlTextWriter_TagInfo { - struct String *name; - struct String *prefix; - struct String *defaultNs; - #if defined(_CPLUSPLUS_) - XmlTextWriter_NamespaceState__Enum defaultNsState; - #else - int32_t defaultNsState; - #endif - #if defined(_CPLUSPLUS_) - XmlSpace__Enum xmlSpace; - #else - int32_t xmlSpace; - #endif - struct String *xmlLang; - int32_t prevNsTop; - int32_t prefixCount; - bool mixed; -}; - -struct XmlTextWriter_TagInfo__Boxed { - struct XmlTextWriter_TagInfo__Class *klass; - MonitorData *monitor; - struct XmlTextWriter_TagInfo fields; -}; - struct XmlTextWriter_TagInfo__Array { struct XmlTextWriter_TagInfo__Array__Class *klass; MonitorData *monitor; @@ -579350,19 +585838,6 @@ struct XmlTextWriter_State__Enum__Array { XmlTextWriter_State__Enum vector[32]; }; -struct XmlTextWriter_Namespace { - struct String *prefix; - struct String *ns; - bool declared; - int32_t prevNsIndex; -}; - -struct XmlTextWriter_Namespace__Boxed { - struct XmlTextWriter_Namespace__Class *klass; - MonitorData *monitor; - struct XmlTextWriter_Namespace fields; -}; - struct XmlTextWriter_Namespace__Array { struct XmlTextWriter_Namespace__Array__Class *klass; MonitorData *monitor; @@ -579794,6 +586269,82 @@ struct XmlUtf8RawTextWriterIndent__Class { struct XmlUtf8RawTextWriterIndent__VTable vtable; }; +#if defined(_CPLUSPLUS_) +enum class XmlWellFormedWriter_NamespaceKind__Enum : int32_t { + Written = 0x00000000, + NeedToWrite = 0x00000001, + Implied = 0x00000002, + Special = 0x00000003, +}; + +#else +enum XmlWellFormedWriter_NamespaceKind__Enum { + XmlWellFormedWriter_NamespaceKind__Enum_Written = 0x00000000, + XmlWellFormedWriter_NamespaceKind__Enum_NeedToWrite = 0x00000001, + XmlWellFormedWriter_NamespaceKind__Enum_Implied = 0x00000002, + XmlWellFormedWriter_NamespaceKind__Enum_Special = 0x00000003, +}; + +#endif +struct XmlWellFormedWriter_NamespaceKind__Enum__Boxed { + struct XmlWellFormedWriter_NamespaceKind__Enum__Class *klass; + MonitorData *monitor; + #if defined(_CPLUSPLUS_) + XmlWellFormedWriter_NamespaceKind__Enum value; + #else + int32_t value; + #endif +}; + +struct XmlWellFormedWriter_Namespace { + struct String *prefix; + struct String *namespaceUri; + #if defined(_CPLUSPLUS_) + XmlWellFormedWriter_NamespaceKind__Enum kind; + #else + int32_t kind; + #endif + int32_t prevNsIndex; +}; + +struct XmlWellFormedWriter_Namespace__Boxed { + struct XmlWellFormedWriter_Namespace__Class *klass; + MonitorData *monitor; + struct XmlWellFormedWriter_Namespace fields; +}; + +struct XmlWellFormedWriter_ElementScope { + int32_t prevNSTop; + struct String *prefix; + struct String *localName; + struct String *namespaceUri; + #if defined(_CPLUSPLUS_) + XmlSpace__Enum xmlSpace; + #else + int32_t xmlSpace; + #endif + struct String *xmlLang; +}; + +struct XmlWellFormedWriter_ElementScope__Boxed { + struct XmlWellFormedWriter_ElementScope__Class *klass; + MonitorData *monitor; + struct XmlWellFormedWriter_ElementScope fields; +}; + +struct XmlWellFormedWriter_AttrName { + struct String *prefix; + struct String *namespaceUri; + struct String *localName; + int32_t prev; +}; + +struct XmlWellFormedWriter_AttrName__Boxed { + struct XmlWellFormedWriter_AttrName__Class *klass; + MonitorData *monitor; + struct XmlWellFormedWriter_AttrName fields; +}; + #if defined(_CPLUSPLUS_) enum class XmlWellFormedWriter_SpecialAttribute__Enum : int32_t { No = 0x00000000, @@ -579954,50 +586505,6 @@ struct XmlWellFormedWriter { struct XmlWellFormedWriter__Fields fields; }; -#if defined(_CPLUSPLUS_) -enum class XmlWellFormedWriter_NamespaceKind__Enum : int32_t { - Written = 0x00000000, - NeedToWrite = 0x00000001, - Implied = 0x00000002, - Special = 0x00000003, -}; - -#else -enum XmlWellFormedWriter_NamespaceKind__Enum { - XmlWellFormedWriter_NamespaceKind__Enum_Written = 0x00000000, - XmlWellFormedWriter_NamespaceKind__Enum_NeedToWrite = 0x00000001, - XmlWellFormedWriter_NamespaceKind__Enum_Implied = 0x00000002, - XmlWellFormedWriter_NamespaceKind__Enum_Special = 0x00000003, -}; - -#endif -struct XmlWellFormedWriter_NamespaceKind__Enum__Boxed { - struct XmlWellFormedWriter_NamespaceKind__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - XmlWellFormedWriter_NamespaceKind__Enum value; - #else - int32_t value; - #endif -}; - -struct XmlWellFormedWriter_Namespace { - struct String *prefix; - struct String *namespaceUri; - #if defined(_CPLUSPLUS_) - XmlWellFormedWriter_NamespaceKind__Enum kind; - #else - int32_t kind; - #endif - int32_t prevNsIndex; -}; - -struct XmlWellFormedWriter_Namespace__Boxed { - struct XmlWellFormedWriter_Namespace__Class *klass; - MonitorData *monitor; - struct XmlWellFormedWriter_Namespace fields; -}; - struct XmlWellFormedWriter_Namespace__Array { struct XmlWellFormedWriter_Namespace__Array__Class *klass; MonitorData *monitor; @@ -580006,25 +586513,6 @@ struct XmlWellFormedWriter_Namespace__Array { struct XmlWellFormedWriter_Namespace vector[32]; }; -struct XmlWellFormedWriter_ElementScope { - int32_t prevNSTop; - struct String *prefix; - struct String *localName; - struct String *namespaceUri; - #if defined(_CPLUSPLUS_) - XmlSpace__Enum xmlSpace; - #else - int32_t xmlSpace; - #endif - struct String *xmlLang; -}; - -struct XmlWellFormedWriter_ElementScope__Boxed { - struct XmlWellFormedWriter_ElementScope__Class *klass; - MonitorData *monitor; - struct XmlWellFormedWriter_ElementScope fields; -}; - struct XmlWellFormedWriter_ElementScope__Array { struct XmlWellFormedWriter_ElementScope__Array__Class *klass; MonitorData *monitor; @@ -580033,19 +586521,6 @@ struct XmlWellFormedWriter_ElementScope__Array { struct XmlWellFormedWriter_ElementScope vector[32]; }; -struct XmlWellFormedWriter_AttrName { - struct String *prefix; - struct String *namespaceUri; - struct String *localName; - int32_t prev; -}; - -struct XmlWellFormedWriter_AttrName__Boxed { - struct XmlWellFormedWriter_AttrName__Class *klass; - MonitorData *monitor; - struct XmlWellFormedWriter_AttrName fields; -}; - struct XmlWellFormedWriter_AttrName__Array { struct XmlWellFormedWriter_AttrName__Array__Class *klass; MonitorData *monitor; @@ -580054,20 +586529,6 @@ struct XmlWellFormedWriter_AttrName__Array { struct XmlWellFormedWriter_AttrName vector[32]; }; -struct __declspec(align(8)) XmlWellFormedWriter_AttributeValueCache__Fields { - struct StringBuilder *stringValue; - struct String *singleStringValue; - struct XmlWellFormedWriter_AttributeValueCache_Item__Array *items; - int32_t firstItem; - int32_t lastItem; -}; - -struct XmlWellFormedWriter_AttributeValueCache { - struct XmlWellFormedWriter_AttributeValueCache__Class *klass; - MonitorData *monitor; - struct XmlWellFormedWriter_AttributeValueCache__Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class XmlWellFormedWriter_AttributeValueCache_ItemType__Enum : int32_t { EntityRef = 0x00000000, @@ -580120,6 +586581,20 @@ struct XmlWellFormedWriter_AttributeValueCache_Item { struct XmlWellFormedWriter_AttributeValueCache_Item__Fields fields; }; +struct __declspec(align(8)) XmlWellFormedWriter_AttributeValueCache__Fields { + struct StringBuilder *stringValue; + struct String *singleStringValue; + struct XmlWellFormedWriter_AttributeValueCache_Item__Array *items; + int32_t firstItem; + int32_t lastItem; +}; + +struct XmlWellFormedWriter_AttributeValueCache { + struct XmlWellFormedWriter_AttributeValueCache__Class *klass; + MonitorData *monitor; + struct XmlWellFormedWriter_AttributeValueCache__Fields fields; +}; + struct XmlWellFormedWriter_AttributeValueCache_Item__Array { struct XmlWellFormedWriter_AttributeValueCache_Item__Array__Class *klass; MonitorData *monitor; @@ -583251,6 +589726,19 @@ struct IDtdParserAdapterWithValidation { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_System_Xml_DtdParser_UndeclaredNotation_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct DtdParser_UndeclaredNotation *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_System_Xml_DtdParser_UndeclaredNotation___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_System_Xml_DtdParser_UndeclaredNotation___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_System_Xml_DtdParser_UndeclaredNotation_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_System_Xml_DtdParser_UndeclaredNotation___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_System_Xml_DtdParser_UndeclaredNotation___Array *_entries; @@ -583270,19 +589758,6 @@ struct Dictionary_2_System_String_System_Xml_DtdParser_UndeclaredNotation_ { struct Dictionary_2_System_String_System_Xml_DtdParser_UndeclaredNotation___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_System_Xml_DtdParser_UndeclaredNotation_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct DtdParser_UndeclaredNotation *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_System_Xml_DtdParser_UndeclaredNotation___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_System_Xml_DtdParser_UndeclaredNotation___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_System_Xml_DtdParser_UndeclaredNotation_ fields; -}; - struct __declspec(align(8)) DtdParser_UndeclaredNotation__Fields { struct String *name; int32_t lineNo; @@ -583638,6 +590113,21 @@ struct ICollection_1_System_Xml_DtdParser_UndeclaredNotation___Class { struct ICollection_1_System_Xml_DtdParser_UndeclaredNotation___VTable vtable; }; +struct DtdParser_UndeclaredNotation___VTable { +}; + +struct DtdParser_UndeclaredNotation___StaticFields { +}; + +struct DtdParser_UndeclaredNotation___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DtdParser_UndeclaredNotation___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DtdParser_UndeclaredNotation___VTable vtable; +}; + struct KeyValuePair_2_System_String_System_Xml_DtdParser_UndeclaredNotation___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -585121,20 +591611,6 @@ struct XmlUrlResolver_GetEntityAsync_d_15__Class { struct XmlUrlResolver_GetEntityAsync_d_15__VTable vtable; }; -struct __declspec(align(8)) XPathDocument__Fields { - struct XPathNode__Array *pageXmlNmsp; - int32_t idxXmlNmsp; - struct XmlNameTable *nameTable; - bool hasLineInfo; - struct Dictionary_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ *mapNmsp; -}; - -struct XPathDocument { - struct XPathDocument__Class *klass; - MonitorData *monitor; - struct XPathDocument__Fields fields; -}; - struct XPathNode { struct XPathNodeInfoAtom *_info; uint16_t _idxSibling; @@ -585151,6 +591627,20 @@ struct XPathNode__Boxed { struct XPathNode fields; }; +struct __declspec(align(8)) XPathDocument__Fields { + struct XPathNode__Array *pageXmlNmsp; + int32_t idxXmlNmsp; + struct XmlNameTable *nameTable; + bool hasLineInfo; + struct Dictionary_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ *mapNmsp; +}; + +struct XPathDocument { + struct XPathDocument__Class *klass; + MonitorData *monitor; + struct XPathDocument__Fields fields; +}; + struct __declspec(align(8)) XPathNodeInfoAtom__Fields { struct String *_localName; struct String *_namespaceUri; @@ -585189,25 +591679,6 @@ struct XPathNode__Array { struct XPathNode vector[32]; }; -struct __declspec(align(8)) Dictionary_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef___Fields { - struct Int32__Array *_buckets; - struct Dictionary_2_TKey_TValue_Entry_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef___Array *_entries; - int32_t _count; - int32_t _freeList; - int32_t _freeCount; - int32_t _version; - struct IEqualityComparer_1_MS_Internal_Xml_Cache_XPathNodeRef_ *_comparer; - struct Dictionary_2_TKey_TValue_KeyCollection_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ *_keys; - struct Dictionary_2_TKey_TValue_ValueCollection_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ *_values; - struct Object *_syncRoot; -}; - -struct Dictionary_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ { - struct Dictionary_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef___Class *klass; - MonitorData *monitor; - struct Dictionary_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef___Fields fields; -}; - struct XPathNodeRef { struct XPathNode__Array *_page; int32_t _idx; @@ -585232,6 +591703,25 @@ struct Dictionary_2_TKey_TValue_Entry_MS_Internal_Xml_Cache_XPathNodeRef_MS_Inte struct Dictionary_2_TKey_TValue_Entry_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ fields; }; +struct __declspec(align(8)) Dictionary_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_MS_Internal_Xml_Cache_XPathNodeRef_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef_ { + struct Dictionary_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef___Class *klass; + MonitorData *monitor; + struct Dictionary_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef___Fields fields; +}; + struct Dictionary_2_TKey_TValue_Entry_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef___Array { struct Dictionary_2_TKey_TValue_Entry_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef___Array__Class *klass; MonitorData *monitor; @@ -585573,6 +592063,21 @@ struct ICollection_1_MS_Internal_Xml_Cache_XPathNodeRef___Class { struct ICollection_1_MS_Internal_Xml_Cache_XPathNodeRef___VTable vtable; }; +struct XPathNodeRef___VTable { +}; + +struct XPathNodeRef___StaticFields { +}; + +struct XPathNodeRef___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct XPathNodeRef___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct XPathNodeRef___VTable vtable; +}; + struct KeyValuePair_2_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -585717,6 +592222,21 @@ struct XPathDocument__Class { struct XPathDocument__VTable vtable; }; +struct XPathNode___VTable { +}; + +struct XPathNode___StaticFields { +}; + +struct XPathNode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct XPathNode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct XPathNode___VTable vtable; +}; + struct XPathException__Fields { struct SystemException__Fields _; struct String *res; @@ -587712,6 +594232,11 @@ struct XmlIncludeAttribute__Class { struct XmlIncludeAttribute__VTable vtable; }; +struct XmlMemberMapping { + struct XmlMemberMapping__Class *klass; + MonitorData *monitor; +}; + struct XmlMembersMapping__Fields { struct XmlMapping__Fields _; bool _hasWrapperElement; @@ -587724,11 +594249,6 @@ struct XmlMembersMapping { struct XmlMembersMapping__Fields fields; }; -struct XmlMemberMapping { - struct XmlMemberMapping__Class *klass; - MonitorData *monitor; -}; - struct XmlMemberMapping__Array { struct XmlMemberMapping__Array__Class *klass; MonitorData *monitor; @@ -587854,19 +594374,6 @@ struct XmlReflectionImporter__Class { struct XmlReflectionImporter__VTable vtable; }; -struct __declspec(align(8)) List_1_System_Xml_Serialization_XmlReflectionMember___Fields { - struct XmlReflectionMember__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_System_Xml_Serialization_XmlReflectionMember_ { - struct List_1_System_Xml_Serialization_XmlReflectionMember___Class *klass; - MonitorData *monitor; - struct List_1_System_Xml_Serialization_XmlReflectionMember___Fields fields; -}; - struct __declspec(align(8)) XmlReflectionMember__Fields { bool isReturnValue; struct String *memberName; @@ -587881,6 +594388,19 @@ struct XmlReflectionMember { struct XmlReflectionMember__Fields fields; }; +struct __declspec(align(8)) List_1_System_Xml_Serialization_XmlReflectionMember___Fields { + struct XmlReflectionMember__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_System_Xml_Serialization_XmlReflectionMember_ { + struct List_1_System_Xml_Serialization_XmlReflectionMember___Class *klass; + MonitorData *monitor; + struct List_1_System_Xml_Serialization_XmlReflectionMember___Fields fields; +}; + struct XmlReflectionMember__Array { struct XmlReflectionMember__Array__Class *klass; MonitorData *monitor; @@ -588813,6 +595333,24 @@ struct IXmlSerializable__Class { struct IXmlSerializable__VTable vtable; }; +struct XmlTypeMapMemberAttribute__Fields { + struct XmlTypeMapMember__Fields _; + struct String *_attributeName; + struct String *_namespace; + #if defined(_CPLUSPLUS_) + XmlSchemaForm__Enum _form; + #else + int32_t _form; + #endif + struct XmlTypeMapping *_mappedType; +}; + +struct XmlTypeMapMemberAttribute { + struct XmlTypeMapMemberAttribute__Class *klass; + MonitorData *monitor; + struct XmlTypeMapMemberAttribute__Fields fields; +}; + struct __declspec(align(8)) ClassMap__Fields { struct Hashtable *_elements; struct ArrayList *_elementMembers; @@ -588838,24 +595376,6 @@ struct ClassMap { struct ClassMap__Fields fields; }; -struct XmlTypeMapMemberAttribute__Fields { - struct XmlTypeMapMember__Fields _; - struct String *_attributeName; - struct String *_namespace; - #if defined(_CPLUSPLUS_) - XmlSchemaForm__Enum _form; - #else - int32_t _form; - #endif - struct XmlTypeMapping *_mappedType; -}; - -struct XmlTypeMapMemberAttribute { - struct XmlTypeMapMemberAttribute__Class *klass; - MonitorData *monitor; - struct XmlTypeMapMemberAttribute__Fields fields; -}; - struct XmlTypeMapMemberAttribute__Array { struct XmlTypeMapMemberAttribute__Array__Class *klass; MonitorData *monitor; @@ -589547,6 +596067,18 @@ struct XmlSerializableMapping__Class { struct XmlSerializableMapping__VTable vtable; }; +struct __declspec(align(8)) EnumMap_EnumMapMember__Fields { + struct String *_xmlName; + struct String *_enumName; + int64_t _value; +}; + +struct EnumMap_EnumMapMember { + struct EnumMap_EnumMapMember__Class *klass; + MonitorData *monitor; + struct EnumMap_EnumMapMember__Fields fields; +}; + struct __declspec(align(8)) EnumMap__Fields { struct EnumMap_EnumMapMember__Array *_members; bool _isFlags; @@ -589561,18 +596093,6 @@ struct EnumMap { struct EnumMap__Fields fields; }; -struct __declspec(align(8)) EnumMap_EnumMapMember__Fields { - struct String *_xmlName; - struct String *_enumName; - int64_t _value; -}; - -struct EnumMap_EnumMapMember { - struct EnumMap_EnumMapMember__Class *klass; - MonitorData *monitor; - struct EnumMap_EnumMapMember__Fields fields; -}; - struct EnumMap_EnumMapMember__Array { struct EnumMap_EnumMapMember__Array__Class *klass; MonitorData *monitor; @@ -590260,20 +596780,6 @@ struct LocatedActiveAxis { struct LocatedActiveAxis__Fields fields; }; -struct __declspec(align(8)) KeySequence__Fields { - struct TypedObject__Array *ks; - int32_t dim; - int32_t hashcode; - int32_t posline; - int32_t poscol; -}; - -struct KeySequence { - struct KeySequence__Class *klass; - MonitorData *monitor; - struct KeySequence__Fields fields; -}; - struct __declspec(align(8)) TypedObject__Fields { struct TypedObject_DecimalStruct *dstruct; struct Object *ovalue; @@ -590289,6 +596795,20 @@ struct TypedObject { struct TypedObject__Fields fields; }; +struct __declspec(align(8)) KeySequence__Fields { + struct TypedObject__Array *ks; + int32_t dim; + int32_t hashcode; + int32_t posline; + int32_t poscol; +}; + +struct KeySequence { + struct KeySequence__Class *klass; + MonitorData *monitor; + struct KeySequence__Fields fields; +}; + struct __declspec(align(8)) TypedObject_DecimalStruct__Fields { bool isDecimal; struct Decimal__Array *dvalue; @@ -590763,6 +597283,21 @@ struct LeafRangeNode__Class { struct LeafRangeNode__VTable vtable; }; +struct BitSet___VTable { +}; + +struct BitSet___StaticFields { +}; + +struct BitSet___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BitSet___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BitSet___VTable vtable; +}; + struct DfaContentValidator__Fields { struct ContentValidator__Fields _; struct Int32__Array__Array *transitionTable; @@ -591551,7 +598086,7 @@ struct Datatype_dayTimeDuration__Class { #if defined(_CPLUSPLUS_) enum class XsdDateTimeFlags__Enum : int32_t { DateTime = 0x00000001, - Time = 0x00000002, + Time_1 = 0x00000002, Date = 0x00000004, GYearMonth = 0x00000008, GYear = 0x00000010, @@ -591567,7 +598102,7 @@ enum class XsdDateTimeFlags__Enum : int32_t { #else enum XsdDateTimeFlags__Enum { XsdDateTimeFlags__Enum_DateTime = 0x00000001, - XsdDateTimeFlags__Enum_Time = 0x00000002, + XsdDateTimeFlags__Enum_Time_1 = 0x00000002, XsdDateTimeFlags__Enum_Date = 0x00000004, XsdDateTimeFlags__Enum_GYearMonth = 0x00000008, XsdDateTimeFlags__Enum_GYear = 0x00000010, @@ -596056,6 +602591,21 @@ struct AttributeMatchState__Enum__Class { struct AttributeMatchState__Enum__VTable vtable; }; +struct AttributeMatchState___VTable { +}; + +struct AttributeMatchState___StaticFields { +}; + +struct AttributeMatchState___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct AttributeMatchState___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct AttributeMatchState___VTable vtable; +}; + struct SchemaNamespaceManager__Fields { struct XmlNamespaceManager__Fields _; struct XmlSchemaObject *node; @@ -597321,6 +603871,21 @@ struct DictionaryEntry__Array__Class { struct DictionaryEntry__Array__VTable vtable; }; +struct XmlSchema___VTable { +}; + +struct XmlSchema___StaticFields { +}; + +struct XmlSchema___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct XmlSchema___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct XmlSchema___VTable vtable; +}; + struct XmlSchemaSimpleContent__Fields { struct XmlSchemaContentModel__Fields _; struct XmlSchemaContent *content; @@ -597530,6 +604095,21 @@ struct XmlSchemaValidationException__Class { struct XmlSchemaValidationException__VTable vtable; }; +struct XmlSchemaSimpleType___VTable { +}; + +struct XmlSchemaSimpleType___StaticFields { +}; + +struct XmlSchemaSimpleType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct XmlSchemaSimpleType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct XmlSchemaSimpleType___VTable vtable; +}; + struct XmlNumeric2Converter__Fields { struct XmlBaseConverter__Fields _; }; @@ -599129,7 +605709,7 @@ struct XsdDateTime__Class { #if defined(_CPLUSPLUS_) enum class XsdDateTime_DateTimeTypeCode__Enum : int32_t { DateTime = 0x00000000, - Time = 0x00000001, + Time_1 = 0x00000001, Date = 0x00000002, GYearMonth = 0x00000003, GYear = 0x00000004, @@ -599142,7 +605722,7 @@ enum class XsdDateTime_DateTimeTypeCode__Enum : int32_t { #else enum XsdDateTime_DateTimeTypeCode__Enum { XsdDateTime_DateTimeTypeCode__Enum_DateTime = 0x00000000, - XsdDateTime_DateTimeTypeCode__Enum_Time = 0x00000001, + XsdDateTime_DateTimeTypeCode__Enum_Time_1 = 0x00000001, XsdDateTime_DateTimeTypeCode__Enum_Date = 0x00000002, XsdDateTime_DateTimeTypeCode__Enum_GYearMonth = 0x00000003, XsdDateTime_DateTimeTypeCode__Enum_GYear = 0x00000004, @@ -599316,6 +605896,21 @@ struct XsdDateTime_Parser__Class { struct XsdDateTime_Parser__VTable vtable; }; +struct XsdDateTime___VTable { +}; + +struct XsdDateTime___StaticFields { +}; + +struct XsdDateTime___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct XsdDateTime___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct XsdDateTime___VTable vtable; +}; + struct XsdDuration { int32_t years; int32_t months; @@ -599414,6 +606009,21 @@ struct XsdDuration_DurationType__Enum__Class { struct XsdDuration_DurationType__Enum__VTable vtable; }; +struct XsdDuration___VTable { +}; + +struct XsdDuration___StaticFields { +}; + +struct XsdDuration___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct XsdDuration___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct XsdDuration___VTable vtable; +}; + struct XsdValidator__Fields { struct BaseValidator__Fields _; int32_t startIDConstraint; @@ -600174,6 +606784,19 @@ struct XPathScanner { struct XPathScanner__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_MS_Internal_Xml_XPath_XPathParser_ParamInfo_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct XPathParser_ParamInfo *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_MS_Internal_Xml_XPath_XPathParser_ParamInfo___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_MS_Internal_Xml_XPath_XPathParser_ParamInfo___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_MS_Internal_Xml_XPath_XPathParser_ParamInfo_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_MS_Internal_Xml_XPath_XPathParser_ParamInfo___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_MS_Internal_Xml_XPath_XPathParser_ParamInfo___Array *_entries; @@ -600193,19 +606816,6 @@ struct Dictionary_2_System_String_MS_Internal_Xml_XPath_XPathParser_ParamInfo_ { struct Dictionary_2_System_String_MS_Internal_Xml_XPath_XPathParser_ParamInfo___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_MS_Internal_Xml_XPath_XPathParser_ParamInfo_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct XPathParser_ParamInfo *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_MS_Internal_Xml_XPath_XPathParser_ParamInfo___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_MS_Internal_Xml_XPath_XPathParser_ParamInfo___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_MS_Internal_Xml_XPath_XPathParser_ParamInfo_ fields; -}; - struct __declspec(align(8)) XPathParser_ParamInfo__Fields { #if defined(_CPLUSPLUS_) Function_FunctionType__Enum _ftype; @@ -600298,6 +606908,23 @@ struct IEnumerable_1_MS_Internal_Xml_XPath_XPathParser_ParamInfo_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_MS_Internal_Xml_XPath_Axis_AxisType_ { + int32_t hashCode; + int32_t next; + struct String *key; + #if defined(_CPLUSPLUS_) + Axis_AxisType__Enum value; + #else + int32_t value; + #endif +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_MS_Internal_Xml_XPath_Axis_AxisType___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_MS_Internal_Xml_XPath_Axis_AxisType___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_MS_Internal_Xml_XPath_Axis_AxisType_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_MS_Internal_Xml_XPath_Axis_AxisType___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_MS_Internal_Xml_XPath_Axis_AxisType___Array *_entries; @@ -600317,23 +606944,6 @@ struct Dictionary_2_System_String_MS_Internal_Xml_XPath_Axis_AxisType_ { struct Dictionary_2_System_String_MS_Internal_Xml_XPath_Axis_AxisType___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_MS_Internal_Xml_XPath_Axis_AxisType_ { - int32_t hashCode; - int32_t next; - struct String *key; - #if defined(_CPLUSPLUS_) - Axis_AxisType__Enum value; - #else - int32_t value; - #endif -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_MS_Internal_Xml_XPath_Axis_AxisType___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_MS_Internal_Xml_XPath_Axis_AxisType___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_MS_Internal_Xml_XPath_Axis_AxisType_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_String_MS_Internal_Xml_XPath_Axis_AxisType___Array { struct Dictionary_2_TKey_TValue_Entry_System_String_MS_Internal_Xml_XPath_Axis_AxisType___Array__Class *klass; MonitorData *monitor; @@ -600642,6 +607252,21 @@ struct ICollection_1_MS_Internal_Xml_XPath_XPathParser_ParamInfo___Class { struct ICollection_1_MS_Internal_Xml_XPath_XPathParser_ParamInfo___VTable vtable; }; +struct XPathParser_ParamInfo___VTable { +}; + +struct XPathParser_ParamInfo___StaticFields { +}; + +struct XPathParser_ParamInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct XPathParser_ParamInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct XPathParser_ParamInfo___VTable vtable; +}; + struct KeyValuePair_2_System_String_MS_Internal_Xml_XPath_XPathParser_ParamInfo___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -600920,6 +607545,21 @@ struct ICollection_1_MS_Internal_Xml_XPath_Axis_AxisType___Class { struct ICollection_1_MS_Internal_Xml_XPath_Axis_AxisType___VTable vtable; }; +struct Axis_AxisType___VTable { +}; + +struct Axis_AxisType___StaticFields { +}; + +struct Axis_AxisType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Axis_AxisType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Axis_AxisType___VTable vtable; +}; + struct KeyValuePair_2_System_String_MS_Internal_Xml_XPath_Axis_AxisType___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -601151,6 +607791,18 @@ struct TextureRegistry { struct TextureRegistry__Fields fields; }; +struct TextureRegistry_TextureInfo { + struct Texture *texture; + bool dynamic; + int32_t refCount; +}; + +struct TextureRegistry_TextureInfo__Boxed { + struct TextureRegistry_TextureInfo__Class *klass; + MonitorData *monitor; + struct TextureRegistry_TextureInfo fields; +}; + struct __declspec(align(8)) List_1_UnityEngine_UIElements_TextureRegistry_TextureInfo___Fields { struct TextureRegistry_TextureInfo__Array *_items; int32_t _size; @@ -601164,18 +607816,6 @@ struct List_1_UnityEngine_UIElements_TextureRegistry_TextureInfo_ { struct List_1_UnityEngine_UIElements_TextureRegistry_TextureInfo___Fields fields; }; -struct TextureRegistry_TextureInfo { - struct Texture *texture; - bool dynamic; - int32_t refCount; -}; - -struct TextureRegistry_TextureInfo__Boxed { - struct TextureRegistry_TextureInfo__Class *klass; - MonitorData *monitor; - struct TextureRegistry_TextureInfo fields; -}; - struct TextureRegistry_TextureInfo__Array { struct TextureRegistry_TextureInfo__Array__Class *klass; MonitorData *monitor; @@ -601189,25 +607829,6 @@ struct IEnumerator_1_UnityEngine_UIElements_TextureRegistry_TextureInfo_ { MonitorData *monitor; }; -struct __declspec(align(8)) Dictionary_2_UnityEngine_Texture_UnityEngine_UIElements_TextureId___Fields { - struct Int32__Array *_buckets; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Texture_UnityEngine_UIElements_TextureId___Array *_entries; - int32_t _count; - int32_t _freeList; - int32_t _freeCount; - int32_t _version; - struct IEqualityComparer_1_UnityEngine_Texture_ *_comparer; - struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_Texture_UnityEngine_UIElements_TextureId_ *_keys; - struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_Texture_UnityEngine_UIElements_TextureId_ *_values; - struct Object *_syncRoot; -}; - -struct Dictionary_2_UnityEngine_Texture_UnityEngine_UIElements_TextureId_ { - struct Dictionary_2_UnityEngine_Texture_UnityEngine_UIElements_TextureId___Class *klass; - MonitorData *monitor; - struct Dictionary_2_UnityEngine_Texture_UnityEngine_UIElements_TextureId___Fields fields; -}; - struct TextureId { int32_t m_Index; }; @@ -601231,6 +607852,25 @@ struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Texture_UnityEngine_UIElements struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Texture_UnityEngine_UIElements_TextureId_ fields; }; +struct __declspec(align(8)) Dictionary_2_UnityEngine_Texture_UnityEngine_UIElements_TextureId___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Texture_UnityEngine_UIElements_TextureId___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_UnityEngine_Texture_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_Texture_UnityEngine_UIElements_TextureId_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_Texture_UnityEngine_UIElements_TextureId_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_UnityEngine_Texture_UnityEngine_UIElements_TextureId_ { + struct Dictionary_2_UnityEngine_Texture_UnityEngine_UIElements_TextureId___Class *klass; + MonitorData *monitor; + struct Dictionary_2_UnityEngine_Texture_UnityEngine_UIElements_TextureId___Fields fields; +}; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Texture_UnityEngine_UIElements_TextureId___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Texture_UnityEngine_UIElements_TextureId___Array__Class *klass; MonitorData *monitor; @@ -601739,6 +608379,218 @@ struct StyleDataRef_1_VisualData___Boxed { struct StyleDataRef_1_VisualData_ fields; }; +#if defined(_CPLUSPLUS_) +enum class StylePropertyId__Enum : int32_t { + Unknown = 0x00000000, + Custom = -1, + AlignContent = 0x00020000, + AlignItems = 0x00020001, + AlignSelf = 0x00020002, + All = 0x00040000, + BackgroundColor = 0x00070000, + BackgroundImage = 0x00070001, + BorderBottomColor = 0x00070002, + BorderBottomLeftRadius = 0x00070003, + BorderBottomRightRadius = 0x00070004, + BorderBottomWidth = 0x00020003, + BorderColor = 0x00040001, + BorderLeftColor = 0x00070005, + BorderLeftWidth = 0x00020004, + BorderRadius = 0x00040002, + BorderRightColor = 0x00070006, + BorderRightWidth = 0x00020005, + BorderTopColor = 0x00070007, + BorderTopLeftRadius = 0x00070008, + BorderTopRightRadius = 0x00070009, + BorderTopWidth = 0x00020006, + BorderWidth = 0x00040003, + Bottom = 0x00020007, + Color = 0x00010000, + Cursor = 0x00030000, + Display = 0x00020008, + Flex = 0x00040004, + FlexBasis = 0x00020009, + FlexDirection = 0x0002000a, + FlexGrow = 0x0002000b, + FlexShrink = 0x0002000c, + FlexWrap = 0x0002000d, + FontSize = 0x00010001, + Height = 0x0002000e, + JustifyContent = 0x0002000f, + Left = 0x00020010, + LetterSpacing = 0x00010002, + Margin = 0x00040005, + MarginBottom = 0x00020011, + MarginLeft = 0x00020012, + MarginRight = 0x00020013, + MarginTop = 0x00020014, + MaxHeight = 0x00020015, + MaxWidth = 0x00020016, + MinHeight = 0x00020017, + MinWidth = 0x00020018, + Opacity = 0x0007000a, + Overflow = 0x0007000b, + Padding = 0x00040006, + PaddingBottom = 0x00020019, + PaddingLeft = 0x0002001a, + PaddingRight = 0x0002001b, + PaddingTop = 0x0002001c, + Position = 0x0002001d, + Right = 0x0002001e, + Rotate = 0x00050000, + Scale = 0x00050001, + TextOverflow = 0x00030001, + TextShadow = 0x00010003, + Top = 0x0002001f, + TransformOrigin = 0x00050002, + Transition = 0x00040007, + TransitionDelay = 0x00060000, + TransitionDuration = 0x00060001, + TransitionProperty = 0x00060002, + TransitionTimingFunction = 0x00060003, + Translate = 0x00050003, + UnityBackgroundImageTintColor = 0x00030002, + UnityBackgroundScaleMode = 0x00030003, + UnityFont = 0x00010004, + UnityFontDefinition = 0x00010005, + UnityFontStyleAndWeight = 0x00010006, + UnityOverflowClipBox = 0x00030004, + UnityParagraphSpacing = 0x00010007, + UnitySliceBottom = 0x00030005, + UnitySliceLeft = 0x00030006, + UnitySliceRight = 0x00030007, + UnitySliceTop = 0x00030008, + UnityTextAlign = 0x00010008, + UnityTextOutline = 0x00040008, + UnityTextOutlineColor = 0x00010009, + UnityTextOutlineWidth = 0x0001000a, + UnityTextOverflowPosition = 0x00030009, + Visibility = 0x0001000b, + WhiteSpace = 0x0001000c, + Width = 0x00020020, + WordSpacing = 0x0001000d, +}; + +#else +enum StylePropertyId__Enum { + StylePropertyId__Enum_Unknown = 0x00000000, + StylePropertyId__Enum_Custom = -1, + StylePropertyId__Enum_AlignContent = 0x00020000, + StylePropertyId__Enum_AlignItems = 0x00020001, + StylePropertyId__Enum_AlignSelf = 0x00020002, + StylePropertyId__Enum_All = 0x00040000, + StylePropertyId__Enum_BackgroundColor = 0x00070000, + StylePropertyId__Enum_BackgroundImage = 0x00070001, + StylePropertyId__Enum_BorderBottomColor = 0x00070002, + StylePropertyId__Enum_BorderBottomLeftRadius = 0x00070003, + StylePropertyId__Enum_BorderBottomRightRadius = 0x00070004, + StylePropertyId__Enum_BorderBottomWidth = 0x00020003, + StylePropertyId__Enum_BorderColor = 0x00040001, + StylePropertyId__Enum_BorderLeftColor = 0x00070005, + StylePropertyId__Enum_BorderLeftWidth = 0x00020004, + StylePropertyId__Enum_BorderRadius = 0x00040002, + StylePropertyId__Enum_BorderRightColor = 0x00070006, + StylePropertyId__Enum_BorderRightWidth = 0x00020005, + StylePropertyId__Enum_BorderTopColor = 0x00070007, + StylePropertyId__Enum_BorderTopLeftRadius = 0x00070008, + StylePropertyId__Enum_BorderTopRightRadius = 0x00070009, + StylePropertyId__Enum_BorderTopWidth = 0x00020006, + StylePropertyId__Enum_BorderWidth = 0x00040003, + StylePropertyId__Enum_Bottom = 0x00020007, + StylePropertyId__Enum_Color = 0x00010000, + StylePropertyId__Enum_Cursor = 0x00030000, + StylePropertyId__Enum_Display = 0x00020008, + StylePropertyId__Enum_Flex = 0x00040004, + StylePropertyId__Enum_FlexBasis = 0x00020009, + StylePropertyId__Enum_FlexDirection = 0x0002000a, + StylePropertyId__Enum_FlexGrow = 0x0002000b, + StylePropertyId__Enum_FlexShrink = 0x0002000c, + StylePropertyId__Enum_FlexWrap = 0x0002000d, + StylePropertyId__Enum_FontSize = 0x00010001, + StylePropertyId__Enum_Height = 0x0002000e, + StylePropertyId__Enum_JustifyContent = 0x0002000f, + StylePropertyId__Enum_Left = 0x00020010, + StylePropertyId__Enum_LetterSpacing = 0x00010002, + StylePropertyId__Enum_Margin = 0x00040005, + StylePropertyId__Enum_MarginBottom = 0x00020011, + StylePropertyId__Enum_MarginLeft = 0x00020012, + StylePropertyId__Enum_MarginRight = 0x00020013, + StylePropertyId__Enum_MarginTop = 0x00020014, + StylePropertyId__Enum_MaxHeight = 0x00020015, + StylePropertyId__Enum_MaxWidth = 0x00020016, + StylePropertyId__Enum_MinHeight = 0x00020017, + StylePropertyId__Enum_MinWidth = 0x00020018, + StylePropertyId__Enum_Opacity = 0x0007000a, + StylePropertyId__Enum_Overflow = 0x0007000b, + StylePropertyId__Enum_Padding = 0x00040006, + StylePropertyId__Enum_PaddingBottom = 0x00020019, + StylePropertyId__Enum_PaddingLeft = 0x0002001a, + StylePropertyId__Enum_PaddingRight = 0x0002001b, + StylePropertyId__Enum_PaddingTop = 0x0002001c, + StylePropertyId__Enum_Position = 0x0002001d, + StylePropertyId__Enum_Right = 0x0002001e, + StylePropertyId__Enum_Rotate = 0x00050000, + StylePropertyId__Enum_Scale = 0x00050001, + StylePropertyId__Enum_TextOverflow = 0x00030001, + StylePropertyId__Enum_TextShadow = 0x00010003, + StylePropertyId__Enum_Top = 0x0002001f, + StylePropertyId__Enum_TransformOrigin = 0x00050002, + StylePropertyId__Enum_Transition = 0x00040007, + StylePropertyId__Enum_TransitionDelay = 0x00060000, + StylePropertyId__Enum_TransitionDuration = 0x00060001, + StylePropertyId__Enum_TransitionProperty = 0x00060002, + StylePropertyId__Enum_TransitionTimingFunction = 0x00060003, + StylePropertyId__Enum_Translate = 0x00050003, + StylePropertyId__Enum_UnityBackgroundImageTintColor = 0x00030002, + StylePropertyId__Enum_UnityBackgroundScaleMode = 0x00030003, + StylePropertyId__Enum_UnityFont = 0x00010004, + StylePropertyId__Enum_UnityFontDefinition = 0x00010005, + StylePropertyId__Enum_UnityFontStyleAndWeight = 0x00010006, + StylePropertyId__Enum_UnityOverflowClipBox = 0x00030004, + StylePropertyId__Enum_UnityParagraphSpacing = 0x00010007, + StylePropertyId__Enum_UnitySliceBottom = 0x00030005, + StylePropertyId__Enum_UnitySliceLeft = 0x00030006, + StylePropertyId__Enum_UnitySliceRight = 0x00030007, + StylePropertyId__Enum_UnitySliceTop = 0x00030008, + StylePropertyId__Enum_UnityTextAlign = 0x00010008, + StylePropertyId__Enum_UnityTextOutline = 0x00040008, + StylePropertyId__Enum_UnityTextOutlineColor = 0x00010009, + StylePropertyId__Enum_UnityTextOutlineWidth = 0x0001000a, + StylePropertyId__Enum_UnityTextOverflowPosition = 0x00030009, + StylePropertyId__Enum_Visibility = 0x0001000b, + StylePropertyId__Enum_WhiteSpace = 0x0001000c, + StylePropertyId__Enum_Width = 0x00020020, + StylePropertyId__Enum_WordSpacing = 0x0001000d, +}; + +#endif +struct StylePropertyId__Enum__Boxed { + struct StylePropertyId__Enum__Class *klass; + MonitorData *monitor; + #if defined(_CPLUSPLUS_) + StylePropertyId__Enum value; + #else + int32_t value; + #endif +}; + +struct ComputedTransitionProperty { + #if defined(_CPLUSPLUS_) + StylePropertyId__Enum id; + #else + int32_t id; + #endif + int32_t durationMs; + int32_t delayMs; + struct Func_2_Single_Single_ *easingCurve; +}; + +struct ComputedTransitionProperty__Boxed { + struct ComputedTransitionProperty__Class *klass; + MonitorData *monitor; + struct ComputedTransitionProperty fields; +}; + struct ComputedStyle { struct StyleDataRef_1_InheritedData_ inheritedData; struct StyleDataRef_1_LayoutData_ layoutData; @@ -601903,19 +608755,6 @@ struct EventCallbackListPool { struct EventCallbackListPool__Fields fields; }; -struct __declspec(align(8)) Stack_1_UnityEngine_UIElements_EventCallbackList___Fields { - struct EventCallbackList__Array *_array; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct Stack_1_UnityEngine_UIElements_EventCallbackList_ { - struct Stack_1_UnityEngine_UIElements_EventCallbackList___Class *klass; - MonitorData *monitor; - struct Stack_1_UnityEngine_UIElements_EventCallbackList___Fields fields; -}; - struct __declspec(align(8)) EventCallbackList__Fields { struct List_1_UnityEngine_UIElements_EventCallbackFunctorBase_ *m_List; int32_t _trickleDownCallbackCount_k__BackingField; @@ -601928,17 +608767,17 @@ struct EventCallbackList { struct EventCallbackList__Fields fields; }; -struct __declspec(align(8)) List_1_UnityEngine_UIElements_EventCallbackFunctorBase___Fields { - struct EventCallbackFunctorBase__Array *_items; +struct __declspec(align(8)) Stack_1_UnityEngine_UIElements_EventCallbackList___Fields { + struct EventCallbackList__Array *_array; int32_t _size; int32_t _version; struct Object *_syncRoot; }; -struct List_1_UnityEngine_UIElements_EventCallbackFunctorBase_ { - struct List_1_UnityEngine_UIElements_EventCallbackFunctorBase___Class *klass; +struct Stack_1_UnityEngine_UIElements_EventCallbackList_ { + struct Stack_1_UnityEngine_UIElements_EventCallbackList___Class *klass; MonitorData *monitor; - struct List_1_UnityEngine_UIElements_EventCallbackFunctorBase___Fields fields; + struct Stack_1_UnityEngine_UIElements_EventCallbackList___Fields fields; }; #if defined(_CPLUSPLUS_) @@ -602006,6 +608845,19 @@ struct EventCallbackFunctorBase { struct EventCallbackFunctorBase__Fields fields; }; +struct __declspec(align(8)) List_1_UnityEngine_UIElements_EventCallbackFunctorBase___Fields { + struct EventCallbackFunctorBase__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_UIElements_EventCallbackFunctorBase_ { + struct List_1_UnityEngine_UIElements_EventCallbackFunctorBase___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_UIElements_EventCallbackFunctorBase___Fields fields; +}; + struct EventCallbackFunctorBase__Array { struct EventCallbackFunctorBase__Array__Class *klass; MonitorData *monitor; @@ -602304,19 +609156,6 @@ struct ObjectPool_1_PointerCaptureOutEvent_ { struct ObjectPool_1_PointerCaptureOutEvent___Fields fields; }; -struct __declspec(align(8)) Stack_1_UnityEngine_UIElements_PointerCaptureOutEvent___Fields { - struct PointerCaptureOutEvent__Array *_array; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct Stack_1_UnityEngine_UIElements_PointerCaptureOutEvent_ { - struct Stack_1_UnityEngine_UIElements_PointerCaptureOutEvent___Class *klass; - MonitorData *monitor; - struct Stack_1_UnityEngine_UIElements_PointerCaptureOutEvent___Fields fields; -}; - struct PointerCaptureEventBase_1_PointerCaptureOutEvent___Fields { struct EventBase_1_PointerCaptureOutEvent___Fields _; struct IEventHandler *_relatedTarget_k__BackingField; @@ -602339,6 +609178,19 @@ struct PointerCaptureOutEvent { struct PointerCaptureOutEvent__Fields fields; }; +struct __declspec(align(8)) Stack_1_UnityEngine_UIElements_PointerCaptureOutEvent___Fields { + struct PointerCaptureOutEvent__Array *_array; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct Stack_1_UnityEngine_UIElements_PointerCaptureOutEvent_ { + struct Stack_1_UnityEngine_UIElements_PointerCaptureOutEvent___Class *klass; + MonitorData *monitor; + struct Stack_1_UnityEngine_UIElements_PointerCaptureOutEvent___Fields fields; +}; + struct PointerCaptureOutEvent__Array { struct PointerCaptureOutEvent__Array__Class *klass; MonitorData *monitor; @@ -602397,6 +609249,17 @@ struct IFocusRing { MonitorData *monitor; }; +struct FocusController_FocusedElement { + struct VisualElement *m_SubTreeRoot; + struct Focusable *m_FocusedElement; +}; + +struct FocusController_FocusedElement__Boxed { + struct FocusController_FocusedElement__Class *klass; + MonitorData *monitor; + struct FocusController_FocusedElement fields; +}; + struct __declspec(align(8)) List_1_UnityEngine_UIElements_FocusController_FocusedElement___Fields { struct FocusController_FocusedElement__Array *_items; int32_t _size; @@ -602410,17 +609273,6 @@ struct List_1_UnityEngine_UIElements_FocusController_FocusedElement_ { struct List_1_UnityEngine_UIElements_FocusController_FocusedElement___Fields fields; }; -struct FocusController_FocusedElement { - struct VisualElement *m_SubTreeRoot; - struct Focusable *m_FocusedElement; -}; - -struct FocusController_FocusedElement__Boxed { - struct FocusController_FocusedElement__Class *klass; - MonitorData *monitor; - struct FocusController_FocusedElement fields; -}; - struct FocusController_FocusedElement__Array { struct FocusController_FocusedElement__Array__Class *klass; MonitorData *monitor; @@ -602434,6 +609286,17 @@ struct IEnumerator_1_UnityEngine_UIElements_FocusController_FocusedElement_ { MonitorData *monitor; }; +struct KeyValuePair_2_UnityEngine_PropertyName_System_Object_ { + struct PropertyName key; + struct Object *value; +}; + +struct KeyValuePair_2_UnityEngine_PropertyName_System_Object___Boxed { + struct KeyValuePair_2_UnityEngine_PropertyName_System_Object___Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_UnityEngine_PropertyName_System_Object_ fields; +}; + struct __declspec(align(8)) List_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object___Fields { struct KeyValuePair_2_UnityEngine_PropertyName_System_Object___Array *_items; int32_t _size; @@ -602447,17 +609310,6 @@ struct List_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object_ { struct List_1_KeyValuePair_2_UnityEngine_PropertyName_System_Object___Fields fields; }; -struct KeyValuePair_2_UnityEngine_PropertyName_System_Object_ { - struct PropertyName key; - struct Object *value; -}; - -struct KeyValuePair_2_UnityEngine_PropertyName_System_Object___Boxed { - struct KeyValuePair_2_UnityEngine_PropertyName_System_Object___Class *klass; - MonitorData *monitor; - struct KeyValuePair_2_UnityEngine_PropertyName_System_Object_ fields; -}; - struct KeyValuePair_2_UnityEngine_PropertyName_System_Object___Array { struct KeyValuePair_2_UnityEngine_PropertyName_System_Object___Array__Class *klass; MonitorData *monitor; @@ -602835,6 +609687,18 @@ struct Utility_GPUBuffer_1_System_UInt16_ { struct Utility_GPUBuffer_1_System_UInt16___Fields fields; }; +struct RenderChainTextEntry { + struct RenderChainCommand *command; + int32_t firstVertex; + int32_t vertexCount; +}; + +struct RenderChainTextEntry__Boxed { + struct RenderChainTextEntry__Class *klass; + MonitorData *monitor; + struct RenderChainTextEntry fields; +}; + struct __declspec(align(8)) List_1_UnityEngine_UIElements_UIR_RenderChainTextEntry___Fields { struct RenderChainTextEntry__Array *_items; int32_t _size; @@ -602848,18 +609712,6 @@ struct List_1_UnityEngine_UIElements_UIR_RenderChainTextEntry_ { struct List_1_UnityEngine_UIElements_UIR_RenderChainTextEntry___Fields fields; }; -struct RenderChainTextEntry { - struct RenderChainCommand *command; - int32_t firstVertex; - int32_t vertexCount; -}; - -struct RenderChainTextEntry__Boxed { - struct RenderChainTextEntry__Class *klass; - MonitorData *monitor; - struct RenderChainTextEntry fields; -}; - struct RenderChainTextEntry__Array { struct RenderChainTextEntry__Array__Class *klass; MonitorData *monitor; @@ -603259,6 +610111,17 @@ struct AtlasPopulationMode__Enum_1__Boxed { #endif }; +struct FontWeightPair { + struct FontAsset *regularTypeface; + struct FontAsset *italicTypeface; +}; + +struct FontWeightPair__Boxed { + struct FontWeightPair__Class *klass; + MonitorData *monitor; + struct FontWeightPair fields; +}; + struct FontAssetCreationEditorSettings { struct String *sourceFontFileGUID; int32_t faceIndex; @@ -603345,17 +610208,6 @@ struct FontAsset { struct FontAsset__Fields fields; }; -struct FontWeightPair { - struct FontAsset *regularTypeface; - struct FontAsset *italicTypeface; -}; - -struct FontWeightPair__Boxed { - struct FontWeightPair__Class *klass; - MonitorData *monitor; - struct FontWeightPair fields; -}; - struct FontWeightPair__Array { struct FontWeightPair__Array__Class *klass; MonitorData *monitor; @@ -603364,19 +610216,6 @@ struct FontWeightPair__Array { struct FontWeightPair vector[32]; }; -struct __declspec(align(8)) List_1_UnityEngine_TextCore_Text_Character___Fields { - struct Character__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_TextCore_Text_Character_ { - struct List_1_UnityEngine_TextCore_Text_Character___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_TextCore_Text_Character___Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class TextElementType__Enum_1 : uint8_t { Character = 0x01, @@ -603429,6 +610268,19 @@ struct Character { struct Character__Fields fields; }; +struct __declspec(align(8)) List_1_UnityEngine_TextCore_Text_Character___Fields { + struct Character__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_TextCore_Text_Character_ { + struct List_1_UnityEngine_TextCore_Text_Character___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_TextCore_Text_Character___Fields fields; +}; + struct Character__Array { struct Character__Array__Class *klass; MonitorData *monitor; @@ -603442,6 +610294,19 @@ struct IEnumerator_1_UnityEngine_TextCore_Text_Character_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_Text_Character_ { + int32_t hashCode; + int32_t next; + uint32_t key; + struct Character *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_Text_Character___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_Text_Character___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_Text_Character_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_UInt32_UnityEngine_TextCore_Text_Character___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_Text_Character___Array *_entries; @@ -603461,19 +610326,6 @@ struct Dictionary_2_System_UInt32_UnityEngine_TextCore_Text_Character_ { struct Dictionary_2_System_UInt32_UnityEngine_TextCore_Text_Character___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_Text_Character_ { - int32_t hashCode; - int32_t next; - uint32_t key; - struct Character *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_Text_Character___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_Text_Character___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_Text_Character_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_Text_Character___Array { struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_Text_Character___Array__Class *klass; MonitorData *monitor; @@ -603547,19 +610399,6 @@ struct FontFeatureTable { struct FontFeatureTable__Fields fields; }; -struct __declspec(align(8)) List_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___Fields { - struct GlyphPairAdjustmentRecord__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ { - struct List_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___Fields fields; -}; - struct GlyphValueRecord { float m_XPlacement; float m_YPlacement; @@ -603625,6 +610464,19 @@ struct GlyphPairAdjustmentRecord__Boxed { struct GlyphPairAdjustmentRecord fields; }; +struct __declspec(align(8)) List_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___Fields { + struct GlyphPairAdjustmentRecord__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ { + struct List_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___Fields fields; +}; + struct GlyphPairAdjustmentRecord__Array { struct GlyphPairAdjustmentRecord__Array__Class *klass; MonitorData *monitor; @@ -603638,6 +610490,19 @@ struct IEnumerator_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ { + int32_t hashCode; + int32_t next; + uint32_t key; + struct GlyphPairAdjustmentRecord value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___Array *_entries; @@ -603657,19 +610522,6 @@ struct Dictionary_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustm struct Dictionary_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ { - int32_t hashCode; - int32_t next; - uint32_t key; - struct GlyphPairAdjustmentRecord value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___Array { struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___Array__Class *klass; MonitorData *monitor; @@ -604315,19 +611167,6 @@ struct StyleDataRef_1_T_RefCounted_TransitionData_ { struct StyleDataRef_1_T_RefCounted_TransitionData___Fields fields; }; -struct __declspec(align(8)) List_1_UnityEngine_UIElements_TimeValue___Fields { - struct TimeValue__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_UIElements_TimeValue_ { - struct List_1_UnityEngine_UIElements_TimeValue___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_UIElements_TimeValue___Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class TimeUnit__Enum : int32_t { Second = 0x00000000, @@ -604366,6 +611205,19 @@ struct TimeValue__Boxed { struct TimeValue fields; }; +struct __declspec(align(8)) List_1_UnityEngine_UIElements_TimeValue___Fields { + struct TimeValue__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_UIElements_TimeValue_ { + struct List_1_UnityEngine_UIElements_TimeValue___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_UIElements_TimeValue___Fields fields; +}; + struct TimeValue__Array { struct TimeValue__Array__Class *klass; MonitorData *monitor; @@ -604379,214 +611231,6 @@ struct IEnumerator_1_UnityEngine_UIElements_TimeValue_ { MonitorData *monitor; }; -struct __declspec(align(8)) List_1_UnityEngine_UIElements_StylePropertyName___Fields { - struct StylePropertyName__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_UIElements_StylePropertyName_ { - struct List_1_UnityEngine_UIElements_StylePropertyName___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_UIElements_StylePropertyName___Fields fields; -}; - -#if defined(_CPLUSPLUS_) -enum class StylePropertyId__Enum : int32_t { - Unknown = 0x00000000, - Custom = -1, - AlignContent = 0x00020000, - AlignItems = 0x00020001, - AlignSelf = 0x00020002, - All = 0x00040000, - BackgroundColor = 0x00070000, - BackgroundImage = 0x00070001, - BorderBottomColor = 0x00070002, - BorderBottomLeftRadius = 0x00070003, - BorderBottomRightRadius = 0x00070004, - BorderBottomWidth = 0x00020003, - BorderColor = 0x00040001, - BorderLeftColor = 0x00070005, - BorderLeftWidth = 0x00020004, - BorderRadius = 0x00040002, - BorderRightColor = 0x00070006, - BorderRightWidth = 0x00020005, - BorderTopColor = 0x00070007, - BorderTopLeftRadius = 0x00070008, - BorderTopRightRadius = 0x00070009, - BorderTopWidth = 0x00020006, - BorderWidth = 0x00040003, - Bottom = 0x00020007, - Color = 0x00010000, - Cursor = 0x00030000, - Display = 0x00020008, - Flex = 0x00040004, - FlexBasis = 0x00020009, - FlexDirection = 0x0002000a, - FlexGrow = 0x0002000b, - FlexShrink = 0x0002000c, - FlexWrap = 0x0002000d, - FontSize = 0x00010001, - Height = 0x0002000e, - JustifyContent = 0x0002000f, - Left = 0x00020010, - LetterSpacing = 0x00010002, - Margin = 0x00040005, - MarginBottom = 0x00020011, - MarginLeft = 0x00020012, - MarginRight = 0x00020013, - MarginTop = 0x00020014, - MaxHeight = 0x00020015, - MaxWidth = 0x00020016, - MinHeight = 0x00020017, - MinWidth = 0x00020018, - Opacity = 0x0007000a, - Overflow = 0x0007000b, - Padding = 0x00040006, - PaddingBottom = 0x00020019, - PaddingLeft = 0x0002001a, - PaddingRight = 0x0002001b, - PaddingTop = 0x0002001c, - Position = 0x0002001d, - Right = 0x0002001e, - Rotate = 0x00050000, - Scale = 0x00050001, - TextOverflow = 0x00030001, - TextShadow = 0x00010003, - Top = 0x0002001f, - TransformOrigin = 0x00050002, - Transition = 0x00040007, - TransitionDelay = 0x00060000, - TransitionDuration = 0x00060001, - TransitionProperty = 0x00060002, - TransitionTimingFunction = 0x00060003, - Translate = 0x00050003, - UnityBackgroundImageTintColor = 0x00030002, - UnityBackgroundScaleMode = 0x00030003, - UnityFont = 0x00010004, - UnityFontDefinition = 0x00010005, - UnityFontStyleAndWeight = 0x00010006, - UnityOverflowClipBox = 0x00030004, - UnityParagraphSpacing = 0x00010007, - UnitySliceBottom = 0x00030005, - UnitySliceLeft = 0x00030006, - UnitySliceRight = 0x00030007, - UnitySliceTop = 0x00030008, - UnityTextAlign = 0x00010008, - UnityTextOutline = 0x00040008, - UnityTextOutlineColor = 0x00010009, - UnityTextOutlineWidth = 0x0001000a, - UnityTextOverflowPosition = 0x00030009, - Visibility = 0x0001000b, - WhiteSpace = 0x0001000c, - Width = 0x00020020, - WordSpacing = 0x0001000d, -}; - -#else -enum StylePropertyId__Enum { - StylePropertyId__Enum_Unknown = 0x00000000, - StylePropertyId__Enum_Custom = -1, - StylePropertyId__Enum_AlignContent = 0x00020000, - StylePropertyId__Enum_AlignItems = 0x00020001, - StylePropertyId__Enum_AlignSelf = 0x00020002, - StylePropertyId__Enum_All = 0x00040000, - StylePropertyId__Enum_BackgroundColor = 0x00070000, - StylePropertyId__Enum_BackgroundImage = 0x00070001, - StylePropertyId__Enum_BorderBottomColor = 0x00070002, - StylePropertyId__Enum_BorderBottomLeftRadius = 0x00070003, - StylePropertyId__Enum_BorderBottomRightRadius = 0x00070004, - StylePropertyId__Enum_BorderBottomWidth = 0x00020003, - StylePropertyId__Enum_BorderColor = 0x00040001, - StylePropertyId__Enum_BorderLeftColor = 0x00070005, - StylePropertyId__Enum_BorderLeftWidth = 0x00020004, - StylePropertyId__Enum_BorderRadius = 0x00040002, - StylePropertyId__Enum_BorderRightColor = 0x00070006, - StylePropertyId__Enum_BorderRightWidth = 0x00020005, - StylePropertyId__Enum_BorderTopColor = 0x00070007, - StylePropertyId__Enum_BorderTopLeftRadius = 0x00070008, - StylePropertyId__Enum_BorderTopRightRadius = 0x00070009, - StylePropertyId__Enum_BorderTopWidth = 0x00020006, - StylePropertyId__Enum_BorderWidth = 0x00040003, - StylePropertyId__Enum_Bottom = 0x00020007, - StylePropertyId__Enum_Color = 0x00010000, - StylePropertyId__Enum_Cursor = 0x00030000, - StylePropertyId__Enum_Display = 0x00020008, - StylePropertyId__Enum_Flex = 0x00040004, - StylePropertyId__Enum_FlexBasis = 0x00020009, - StylePropertyId__Enum_FlexDirection = 0x0002000a, - StylePropertyId__Enum_FlexGrow = 0x0002000b, - StylePropertyId__Enum_FlexShrink = 0x0002000c, - StylePropertyId__Enum_FlexWrap = 0x0002000d, - StylePropertyId__Enum_FontSize = 0x00010001, - StylePropertyId__Enum_Height = 0x0002000e, - StylePropertyId__Enum_JustifyContent = 0x0002000f, - StylePropertyId__Enum_Left = 0x00020010, - StylePropertyId__Enum_LetterSpacing = 0x00010002, - StylePropertyId__Enum_Margin = 0x00040005, - StylePropertyId__Enum_MarginBottom = 0x00020011, - StylePropertyId__Enum_MarginLeft = 0x00020012, - StylePropertyId__Enum_MarginRight = 0x00020013, - StylePropertyId__Enum_MarginTop = 0x00020014, - StylePropertyId__Enum_MaxHeight = 0x00020015, - StylePropertyId__Enum_MaxWidth = 0x00020016, - StylePropertyId__Enum_MinHeight = 0x00020017, - StylePropertyId__Enum_MinWidth = 0x00020018, - StylePropertyId__Enum_Opacity = 0x0007000a, - StylePropertyId__Enum_Overflow = 0x0007000b, - StylePropertyId__Enum_Padding = 0x00040006, - StylePropertyId__Enum_PaddingBottom = 0x00020019, - StylePropertyId__Enum_PaddingLeft = 0x0002001a, - StylePropertyId__Enum_PaddingRight = 0x0002001b, - StylePropertyId__Enum_PaddingTop = 0x0002001c, - StylePropertyId__Enum_Position = 0x0002001d, - StylePropertyId__Enum_Right = 0x0002001e, - StylePropertyId__Enum_Rotate = 0x00050000, - StylePropertyId__Enum_Scale = 0x00050001, - StylePropertyId__Enum_TextOverflow = 0x00030001, - StylePropertyId__Enum_TextShadow = 0x00010003, - StylePropertyId__Enum_Top = 0x0002001f, - StylePropertyId__Enum_TransformOrigin = 0x00050002, - StylePropertyId__Enum_Transition = 0x00040007, - StylePropertyId__Enum_TransitionDelay = 0x00060000, - StylePropertyId__Enum_TransitionDuration = 0x00060001, - StylePropertyId__Enum_TransitionProperty = 0x00060002, - StylePropertyId__Enum_TransitionTimingFunction = 0x00060003, - StylePropertyId__Enum_Translate = 0x00050003, - StylePropertyId__Enum_UnityBackgroundImageTintColor = 0x00030002, - StylePropertyId__Enum_UnityBackgroundScaleMode = 0x00030003, - StylePropertyId__Enum_UnityFont = 0x00010004, - StylePropertyId__Enum_UnityFontDefinition = 0x00010005, - StylePropertyId__Enum_UnityFontStyleAndWeight = 0x00010006, - StylePropertyId__Enum_UnityOverflowClipBox = 0x00030004, - StylePropertyId__Enum_UnityParagraphSpacing = 0x00010007, - StylePropertyId__Enum_UnitySliceBottom = 0x00030005, - StylePropertyId__Enum_UnitySliceLeft = 0x00030006, - StylePropertyId__Enum_UnitySliceRight = 0x00030007, - StylePropertyId__Enum_UnitySliceTop = 0x00030008, - StylePropertyId__Enum_UnityTextAlign = 0x00010008, - StylePropertyId__Enum_UnityTextOutline = 0x00040008, - StylePropertyId__Enum_UnityTextOutlineColor = 0x00010009, - StylePropertyId__Enum_UnityTextOutlineWidth = 0x0001000a, - StylePropertyId__Enum_UnityTextOverflowPosition = 0x00030009, - StylePropertyId__Enum_Visibility = 0x0001000b, - StylePropertyId__Enum_WhiteSpace = 0x0001000c, - StylePropertyId__Enum_Width = 0x00020020, - StylePropertyId__Enum_WordSpacing = 0x0001000d, -}; - -#endif -struct StylePropertyId__Enum__Boxed { - struct StylePropertyId__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - StylePropertyId__Enum value; - #else - int32_t value; - #endif -}; - struct StylePropertyName { #if defined(_CPLUSPLUS_) StylePropertyId__Enum _id_k__BackingField; @@ -604602,6 +611246,19 @@ struct StylePropertyName__Boxed { struct StylePropertyName fields; }; +struct __declspec(align(8)) List_1_UnityEngine_UIElements_StylePropertyName___Fields { + struct StylePropertyName__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_UIElements_StylePropertyName_ { + struct List_1_UnityEngine_UIElements_StylePropertyName___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_UIElements_StylePropertyName___Fields fields; +}; + struct StylePropertyName__Array { struct StylePropertyName__Array__Class *klass; MonitorData *monitor; @@ -604615,19 +611272,6 @@ struct IEnumerator_1_UnityEngine_UIElements_StylePropertyName_ { MonitorData *monitor; }; -struct __declspec(align(8)) List_1_UnityEngine_UIElements_EasingFunction___Fields { - struct EasingFunction__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_UIElements_EasingFunction_ { - struct List_1_UnityEngine_UIElements_EasingFunction___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_UIElements_EasingFunction___Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class EasingMode__Enum : int32_t { Ease = 0x00000000, @@ -604707,6 +611351,19 @@ struct EasingFunction__Boxed { struct EasingFunction fields; }; +struct __declspec(align(8)) List_1_UnityEngine_UIElements_EasingFunction___Fields { + struct EasingFunction__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_UIElements_EasingFunction_ { + struct List_1_UnityEngine_UIElements_EasingFunction___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_UIElements_EasingFunction___Fields fields; +}; + struct EasingFunction__Array { struct EasingFunction__Array__Class *klass; MonitorData *monitor; @@ -604795,21 +611452,6 @@ struct StyleDataRef_1_T_RefCounted_VisualData_ { struct StyleDataRef_1_T_RefCounted_VisualData___Fields fields; }; -struct VectorImage__Fields { - struct ScriptableObject__Fields _; - struct Texture2D *atlas; - struct VectorImageVertex__Array *vertices; - struct UInt16__Array *indices; - struct GradientSettings__Array *settings; - struct Vector2 size; -}; - -struct VectorImage { - struct VectorImage__Class *klass; - MonitorData *monitor; - struct VectorImage__Fields fields; -}; - struct VectorImageVertex { struct Vector3 position; struct Color32 tint; @@ -604823,14 +611465,6 @@ struct VectorImageVertex__Boxed { struct VectorImageVertex fields; }; -struct VectorImageVertex__Array { - struct VectorImageVertex__Array__Class *klass; - MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - struct VectorImageVertex vector[32]; -}; - #if defined(_CPLUSPLUS_) enum class GradientType__Enum : int32_t { Linear = 0x00000000, @@ -604913,6 +611547,29 @@ struct GradientSettings__Boxed { struct GradientSettings fields; }; +struct VectorImage__Fields { + struct ScriptableObject__Fields _; + struct Texture2D *atlas; + struct VectorImageVertex__Array *vertices; + struct UInt16__Array *indices; + struct GradientSettings__Array *settings; + struct Vector2 size; +}; + +struct VectorImage { + struct VectorImage__Class *klass; + MonitorData *monitor; + struct VectorImage__Fields fields; +}; + +struct VectorImageVertex__Array { + struct VectorImageVertex__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct VectorImageVertex vector[32]; +}; + struct GradientSettings__Array { struct GradientSettings__Array__Class *klass; MonitorData *monitor; @@ -604921,25 +611578,6 @@ struct GradientSettings__Array { struct GradientSettings vector[32]; }; -struct __declspec(align(8)) Dictionary_2_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyValue___Fields { - struct Int32__Array *_buckets; - struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyValue___Array *_entries; - int32_t _count; - int32_t _freeList; - int32_t _freeCount; - int32_t _version; - struct IEqualityComparer_1_System_String_ *_comparer; - struct Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ *_keys; - struct Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ *_values; - struct Object *_syncRoot; -}; - -struct Dictionary_2_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ { - struct Dictionary_2_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyValue___Class *klass; - MonitorData *monitor; - struct Dictionary_2_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyValue___Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class StyleValueType__Enum : int32_t { Invalid = 0x00000000, @@ -605026,43 +611664,23 @@ struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_Style struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ fields; }; -struct StyleSheet__Fields { - struct ScriptableObject__Fields _; - bool m_ImportedWithErrors; - bool m_ImportedWithWarnings; - struct StyleRule__Array *m_Rules; - struct StyleComplexSelector__Array *m_ComplexSelectors; - struct Single__Array *floats; - struct Dimension__Array *dimensions; - struct Color__Array *colors; - struct String__Array *strings; - struct Object_1__Array *assets; - struct StyleSheet_ImportStruct__Array *imports; - struct List_1_UnityEngine_UIElements_StyleSheet_ *m_FlattenedImportedStyleSheets; - int32_t m_ContentHash; - struct ScalableImage__Array *scalableImages; - struct Dictionary_2_System_String_UnityEngine_UIElements_StyleComplexSelector_ *orderedNameSelectors; - struct Dictionary_2_System_String_UnityEngine_UIElements_StyleComplexSelector_ *orderedTypeSelectors; - struct Dictionary_2_System_String_UnityEngine_UIElements_StyleComplexSelector_ *orderedClassSelectors; - bool m_IsDefaultStyleSheet; +struct __declspec(align(8)) Dictionary_2_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyValue___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyValue___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_System_String_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ *_values; + struct Object *_syncRoot; }; -struct StyleSheet { - struct StyleSheet__Class *klass; +struct Dictionary_2_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ { + struct Dictionary_2_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyValue___Class *klass; MonitorData *monitor; - struct StyleSheet__Fields fields; -}; - -struct __declspec(align(8)) StyleRule__Fields { - struct StyleProperty__Array *m_Properties; - int32_t line; - int32_t customPropertiesCount; -}; - -struct StyleRule { - struct StyleRule__Class *klass; - MonitorData *monitor; - struct StyleRule__Fields fields; + struct Dictionary_2_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyValue___Fields fields; }; struct __declspec(align(8)) StyleProperty__Fields { @@ -605079,85 +611697,16 @@ struct StyleProperty { struct StyleProperty__Fields fields; }; -struct StyleValueHandle__Array { - struct StyleValueHandle__Array__Class *klass; +struct __declspec(align(8)) StyleRule__Fields { + struct StyleProperty__Array *m_Properties; + int32_t line; + int32_t customPropertiesCount; +}; + +struct StyleRule { + struct StyleRule__Class *klass; MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - struct StyleValueHandle vector[32]; -}; - -struct StyleProperty__Array { - struct StyleProperty__Array__Class *klass; - MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - struct StyleProperty *vector[32]; -}; - -struct StyleRule__Array { - struct StyleRule__Array__Class *klass; - MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - struct StyleRule *vector[32]; -}; - -struct __declspec(align(8)) StyleComplexSelector__Fields { - int32_t m_Specificity; - struct StyleRule *_rule_k__BackingField; - struct StyleSelector__Array *m_Selectors; - int32_t ruleIndex; - struct StyleComplexSelector *nextInTable; - int32_t orderInStyleSheet; -}; - -struct StyleComplexSelector { - struct StyleComplexSelector__Class *klass; - MonitorData *monitor; - struct StyleComplexSelector__Fields fields; -}; - -#if defined(_CPLUSPLUS_) -enum class StyleSelectorRelationship__Enum : int32_t { - None = 0x00000000, - Child = 0x00000001, - Descendent = 0x00000002, -}; - -#else -enum StyleSelectorRelationship__Enum { - StyleSelectorRelationship__Enum_None = 0x00000000, - StyleSelectorRelationship__Enum_Child = 0x00000001, - StyleSelectorRelationship__Enum_Descendent = 0x00000002, -}; - -#endif -struct StyleSelectorRelationship__Enum__Boxed { - struct StyleSelectorRelationship__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - StyleSelectorRelationship__Enum value; - #else - int32_t value; - #endif -}; - -struct __declspec(align(8)) StyleSelector__Fields { - struct StyleSelectorPart__Array *m_Parts; - #if defined(_CPLUSPLUS_) - StyleSelectorRelationship__Enum m_PreviousRelationship; - #else - int32_t m_PreviousRelationship; - #endif - int32_t pseudoStateMask; - int32_t negatedPseudoStateMask; -}; - -struct StyleSelector { - struct StyleSelector__Class *klass; - MonitorData *monitor; - struct StyleSelector__Fields fields; + struct StyleRule__Fields fields; }; #if defined(_CPLUSPLUS_) @@ -605211,6 +611760,188 @@ struct StyleSelectorPart__Boxed { struct StyleSelectorPart fields; }; +#if defined(_CPLUSPLUS_) +enum class StyleSelectorRelationship__Enum : int32_t { + None = 0x00000000, + Child = 0x00000001, + Descendent = 0x00000002, +}; + +#else +enum StyleSelectorRelationship__Enum { + StyleSelectorRelationship__Enum_None = 0x00000000, + StyleSelectorRelationship__Enum_Child = 0x00000001, + StyleSelectorRelationship__Enum_Descendent = 0x00000002, +}; + +#endif +struct StyleSelectorRelationship__Enum__Boxed { + struct StyleSelectorRelationship__Enum__Class *klass; + MonitorData *monitor; + #if defined(_CPLUSPLUS_) + StyleSelectorRelationship__Enum value; + #else + int32_t value; + #endif +}; + +struct __declspec(align(8)) StyleSelector__Fields { + struct StyleSelectorPart__Array *m_Parts; + #if defined(_CPLUSPLUS_) + StyleSelectorRelationship__Enum m_PreviousRelationship; + #else + int32_t m_PreviousRelationship; + #endif + int32_t pseudoStateMask; + int32_t negatedPseudoStateMask; +}; + +struct StyleSelector { + struct StyleSelector__Class *klass; + MonitorData *monitor; + struct StyleSelector__Fields fields; +}; + +struct __declspec(align(8)) StyleComplexSelector__Fields { + int32_t m_Specificity; + struct StyleRule *_rule_k__BackingField; + struct StyleSelector__Array *m_Selectors; + int32_t ruleIndex; + struct StyleComplexSelector *nextInTable; + int32_t orderInStyleSheet; +}; + +struct StyleComplexSelector { + struct StyleComplexSelector__Class *klass; + MonitorData *monitor; + struct StyleComplexSelector__Fields fields; +}; + +#if defined(_CPLUSPLUS_) +enum class Dimension_Unit__Enum : int32_t { + Unitless = 0x00000000, + Pixel = 0x00000001, + Percent = 0x00000002, + Second = 0x00000003, + Millisecond = 0x00000004, + Degree = 0x00000005, + Gradian = 0x00000006, + Radian = 0x00000007, + Turn = 0x00000008, +}; + +#else +enum Dimension_Unit__Enum { + Dimension_Unit__Enum_Unitless = 0x00000000, + Dimension_Unit__Enum_Pixel = 0x00000001, + Dimension_Unit__Enum_Percent = 0x00000002, + Dimension_Unit__Enum_Second = 0x00000003, + Dimension_Unit__Enum_Millisecond = 0x00000004, + Dimension_Unit__Enum_Degree = 0x00000005, + Dimension_Unit__Enum_Gradian = 0x00000006, + Dimension_Unit__Enum_Radian = 0x00000007, + Dimension_Unit__Enum_Turn = 0x00000008, +}; + +#endif +struct Dimension_Unit__Enum__Boxed { + struct Dimension_Unit__Enum__Class *klass; + MonitorData *monitor; + #if defined(_CPLUSPLUS_) + Dimension_Unit__Enum value; + #else + int32_t value; + #endif +}; + +struct Dimension { + #if defined(_CPLUSPLUS_) + Dimension_Unit__Enum unit; + #else + int32_t unit; + #endif + float value; +}; + +struct Dimension__Boxed { + struct Dimension__Class *klass; + MonitorData *monitor; + struct Dimension fields; +}; + +struct StyleSheet_ImportStruct { + struct StyleSheet *styleSheet; + struct String__Array *mediaQueries; +}; + +struct StyleSheet_ImportStruct__Boxed { + struct StyleSheet_ImportStruct__Class *klass; + MonitorData *monitor; + struct StyleSheet_ImportStruct fields; +}; + +struct ScalableImage { + struct Texture2D *normalImage; + struct Texture2D *highResolutionImage; +}; + +struct ScalableImage__Boxed { + struct ScalableImage__Class *klass; + MonitorData *monitor; + struct ScalableImage fields; +}; + +struct StyleSheet__Fields { + struct ScriptableObject__Fields _; + bool m_ImportedWithErrors; + bool m_ImportedWithWarnings; + struct StyleRule__Array *m_Rules; + struct StyleComplexSelector__Array *m_ComplexSelectors; + struct Single__Array *floats; + struct Dimension__Array *dimensions; + struct Color__Array *colors; + struct String__Array *strings; + struct Object_1__Array *assets; + struct StyleSheet_ImportStruct__Array *imports; + struct List_1_UnityEngine_UIElements_StyleSheet_ *m_FlattenedImportedStyleSheets; + int32_t m_ContentHash; + struct ScalableImage__Array *scalableImages; + struct Dictionary_2_System_String_UnityEngine_UIElements_StyleComplexSelector_ *orderedNameSelectors; + struct Dictionary_2_System_String_UnityEngine_UIElements_StyleComplexSelector_ *orderedTypeSelectors; + struct Dictionary_2_System_String_UnityEngine_UIElements_StyleComplexSelector_ *orderedClassSelectors; + bool m_IsDefaultStyleSheet; +}; + +struct StyleSheet { + struct StyleSheet__Class *klass; + MonitorData *monitor; + struct StyleSheet__Fields fields; +}; + +struct StyleValueHandle__Array { + struct StyleValueHandle__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct StyleValueHandle vector[32]; +}; + +struct StyleProperty__Array { + struct StyleProperty__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct StyleProperty *vector[32]; +}; + +struct StyleRule__Array { + struct StyleRule__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct StyleRule *vector[32]; +}; + struct StyleSelectorPart__Array { struct StyleSelectorPart__Array__Class *klass; MonitorData *monitor; @@ -605227,25 +611958,6 @@ struct StyleSelector__Array { struct StyleSelector *vector[32]; }; -struct __declspec(align(8)) Dictionary_2_System_String_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___Fields { - struct Int32__Array *_buckets; - struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___Array *_entries; - int32_t _count; - int32_t _freeList; - int32_t _freeCount; - int32_t _version; - struct IEqualityComparer_1_System_String_ *_comparer; - struct Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ *_keys; - struct Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ *_values; - struct Object *_syncRoot; -}; - -struct Dictionary_2_System_String_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ { - struct Dictionary_2_System_String_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___Class *klass; - MonitorData *monitor; - struct Dictionary_2_System_String_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___Fields fields; -}; - struct StyleComplexSelector_PseudoStateData { #if defined(_CPLUSPLUS_) PseudoStates__Enum state; @@ -605274,6 +611986,25 @@ struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_Style struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ fields; }; +struct __declspec(align(8)) Dictionary_2_System_String_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_System_String_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_System_String_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ { + struct Dictionary_2_System_String_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___Class *klass; + MonitorData *monitor; + struct Dictionary_2_System_String_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___Fields fields; +}; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___Array { struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___Array__Class *klass; MonitorData *monitor; @@ -605357,58 +612088,6 @@ struct StyleComplexSelector__Array { struct StyleComplexSelector *vector[32]; }; -#if defined(_CPLUSPLUS_) -enum class Dimension_Unit__Enum : int32_t { - Unitless = 0x00000000, - Pixel = 0x00000001, - Percent = 0x00000002, - Second = 0x00000003, - Millisecond = 0x00000004, - Degree = 0x00000005, - Gradian = 0x00000006, - Radian = 0x00000007, - Turn = 0x00000008, -}; - -#else -enum Dimension_Unit__Enum { - Dimension_Unit__Enum_Unitless = 0x00000000, - Dimension_Unit__Enum_Pixel = 0x00000001, - Dimension_Unit__Enum_Percent = 0x00000002, - Dimension_Unit__Enum_Second = 0x00000003, - Dimension_Unit__Enum_Millisecond = 0x00000004, - Dimension_Unit__Enum_Degree = 0x00000005, - Dimension_Unit__Enum_Gradian = 0x00000006, - Dimension_Unit__Enum_Radian = 0x00000007, - Dimension_Unit__Enum_Turn = 0x00000008, -}; - -#endif -struct Dimension_Unit__Enum__Boxed { - struct Dimension_Unit__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - Dimension_Unit__Enum value; - #else - int32_t value; - #endif -}; - -struct Dimension { - #if defined(_CPLUSPLUS_) - Dimension_Unit__Enum unit; - #else - int32_t unit; - #endif - float value; -}; - -struct Dimension__Boxed { - struct Dimension__Class *klass; - MonitorData *monitor; - struct Dimension fields; -}; - struct Dimension__Array { struct Dimension__Array__Class *klass; MonitorData *monitor; @@ -605417,17 +612096,6 @@ struct Dimension__Array { struct Dimension vector[32]; }; -struct StyleSheet_ImportStruct { - struct StyleSheet *styleSheet; - struct String__Array *mediaQueries; -}; - -struct StyleSheet_ImportStruct__Boxed { - struct StyleSheet_ImportStruct__Class *klass; - MonitorData *monitor; - struct StyleSheet_ImportStruct fields; -}; - struct StyleSheet_ImportStruct__Array { struct StyleSheet_ImportStruct__Array__Class *klass; MonitorData *monitor; @@ -605462,17 +612130,6 @@ struct IEnumerator_1_UnityEngine_UIElements_StyleSheet_ { MonitorData *monitor; }; -struct ScalableImage { - struct Texture2D *normalImage; - struct Texture2D *highResolutionImage; -}; - -struct ScalableImage__Boxed { - struct ScalableImage__Class *klass; - MonitorData *monitor; - struct ScalableImage fields; -}; - struct ScalableImage__Array { struct ScalableImage__Array__Class *klass; MonitorData *monitor; @@ -605481,6 +612138,19 @@ struct ScalableImage__Array { struct ScalableImage vector[32]; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_StyleComplexSelector_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct StyleComplexSelector *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_StyleComplexSelector___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_StyleComplexSelector___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_StyleComplexSelector_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_UnityEngine_UIElements_StyleComplexSelector___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_StyleComplexSelector___Array *_entries; @@ -605500,19 +612170,6 @@ struct Dictionary_2_System_String_UnityEngine_UIElements_StyleComplexSelector_ { struct Dictionary_2_System_String_UnityEngine_UIElements_StyleComplexSelector___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_StyleComplexSelector_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct StyleComplexSelector *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_StyleComplexSelector___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_StyleComplexSelector___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_StyleComplexSelector_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_StyleComplexSelector___Array { struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_StyleComplexSelector___Array__Class *klass; MonitorData *monitor; @@ -605655,23 +612312,6 @@ struct IEnumerable_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ { MonitorData *monitor; }; -struct ComputedTransitionProperty { - #if defined(_CPLUSPLUS_) - StylePropertyId__Enum id; - #else - int32_t id; - #endif - int32_t durationMs; - int32_t delayMs; - struct Func_2_Single_Single_ *easingCurve; -}; - -struct ComputedTransitionProperty__Boxed { - struct ComputedTransitionProperty__Class *klass; - MonitorData *monitor; - struct ComputedTransitionProperty fields; -}; - struct Func_2_Single_Single___Fields { struct MulticastDelegate__Fields _; }; @@ -605702,6 +612342,18 @@ struct StyleVariableContext { struct StyleVariableContext__Fields fields; }; +struct StyleVariable { + struct String *name; + struct StyleSheet *sheet; + struct StyleValueHandle__Array *handles; +}; + +struct StyleVariable__Boxed { + struct StyleVariable__Class *klass; + MonitorData *monitor; + struct StyleVariable fields; +}; + struct __declspec(align(8)) List_1_UnityEngine_UIElements_StyleVariable___Fields { struct StyleVariable__Array *_items; int32_t _size; @@ -605715,18 +612367,6 @@ struct List_1_UnityEngine_UIElements_StyleVariable_ { struct List_1_UnityEngine_UIElements_StyleVariable___Fields fields; }; -struct StyleVariable { - struct String *name; - struct StyleSheet *sheet; - struct StyleValueHandle__Array *handles; -}; - -struct StyleVariable__Boxed { - struct StyleVariable__Class *klass; - MonitorData *monitor; - struct StyleVariable fields; -}; - struct StyleVariable__Array { struct StyleVariable__Array__Class *klass; MonitorData *monitor; @@ -605765,6 +612405,11 @@ struct IStylePainter { MonitorData *monitor; }; +struct IValueAnimationUpdate { + struct IValueAnimationUpdate__Class *klass; + MonitorData *monitor; +}; + struct __declspec(align(8)) List_1_UnityEngine_UIElements_Experimental_IValueAnimationUpdate___Fields { struct IValueAnimationUpdate__Array *_items; int32_t _size; @@ -605778,11 +612423,6 @@ struct List_1_UnityEngine_UIElements_Experimental_IValueAnimationUpdate_ { struct List_1_UnityEngine_UIElements_Experimental_IValueAnimationUpdate___Fields fields; }; -struct IValueAnimationUpdate { - struct IValueAnimationUpdate__Class *klass; - MonitorData *monitor; -}; - struct IValueAnimationUpdate__Array { struct IValueAnimationUpdate__Array__Class *klass; MonitorData *monitor; @@ -605872,6 +612512,16 @@ struct ContextualMenuManager { struct ContextualMenuManager__Fields fields; }; +struct IPointerEvent { + struct IPointerEvent__Class *klass; + MonitorData *monitor; +}; + +struct IMouseEvent { + struct IMouseEvent__Class *klass; + MonitorData *monitor; +}; + struct __declspec(align(8)) ElementUnderPointer__Fields { struct VisualElement__Array *m_PendingTopElementUnderPointer; struct VisualElement__Array *m_TopElementUnderPointer; @@ -605887,11 +612537,6 @@ struct ElementUnderPointer { struct ElementUnderPointer__Fields fields; }; -struct IPointerEvent { - struct IPointerEvent__Class *klass; - MonitorData *monitor; -}; - struct IPointerEvent__Array { struct IPointerEvent__Array__Class *klass; MonitorData *monitor; @@ -605900,11 +612545,6 @@ struct IPointerEvent__Array { struct IPointerEvent *vector[32]; }; -struct IMouseEvent { - struct IMouseEvent__Class *klass; - MonitorData *monitor; -}; - struct IMouseEvent__Array { struct IMouseEvent__Array__Class *klass; MonitorData *monitor; @@ -605985,19 +612625,6 @@ struct ClickDetector { struct ClickDetector__Fields fields; }; -struct __declspec(align(8)) List_1_UnityEngine_UIElements_ClickDetector_ButtonClickStatus___Fields { - struct ClickDetector_ButtonClickStatus__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_UIElements_ClickDetector_ButtonClickStatus_ { - struct List_1_UnityEngine_UIElements_ClickDetector_ButtonClickStatus___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_UIElements_ClickDetector_ButtonClickStatus___Fields fields; -}; - struct __declspec(align(8)) ClickDetector_ButtonClickStatus__Fields { struct VisualElement *m_Target; struct Vector3 m_PointerDownPosition; @@ -606011,6 +612638,19 @@ struct ClickDetector_ButtonClickStatus { struct ClickDetector_ButtonClickStatus__Fields fields; }; +struct __declspec(align(8)) List_1_UnityEngine_UIElements_ClickDetector_ButtonClickStatus___Fields { + struct ClickDetector_ButtonClickStatus__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_UIElements_ClickDetector_ButtonClickStatus_ { + struct List_1_UnityEngine_UIElements_ClickDetector_ButtonClickStatus___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_UIElements_ClickDetector_ButtonClickStatus___Fields fields; +}; + struct ClickDetector_ButtonClickStatus__Array { struct ClickDetector_ButtonClickStatus__Array__Class *klass; MonitorData *monitor; @@ -606024,6 +612664,11 @@ struct IEnumerator_1_UnityEngine_UIElements_ClickDetector_ButtonClickStatus_ { MonitorData *monitor; }; +struct IEventDispatchingStrategy { + struct IEventDispatchingStrategy__Class *klass; + MonitorData *monitor; +}; + struct __declspec(align(8)) List_1_UnityEngine_UIElements_IEventDispatchingStrategy___Fields { struct IEventDispatchingStrategy__Array *_items; int32_t _size; @@ -606037,11 +612682,6 @@ struct List_1_UnityEngine_UIElements_IEventDispatchingStrategy_ { struct List_1_UnityEngine_UIElements_IEventDispatchingStrategy___Fields fields; }; -struct IEventDispatchingStrategy { - struct IEventDispatchingStrategy__Class *klass; - MonitorData *monitor; -}; - struct IEventDispatchingStrategy__Array { struct IEventDispatchingStrategy__Array__Class *klass; MonitorData *monitor; @@ -606066,17 +612706,15 @@ struct ObjectPool_1_System_Collections_Generic_Queue_1_ { struct ObjectPool_1_System_Collections_Generic_Queue_1___Fields fields; }; -struct __declspec(align(8)) Stack_1_Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord___Fields { - struct Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord___Array *_array; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; +struct EventDispatcher_EventRecord { + struct EventBase *m_Event; + struct IPanel *m_Panel; }; -struct Stack_1_Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord_ { - struct Stack_1_Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord___Class *klass; +struct EventDispatcher_EventRecord__Boxed { + struct EventDispatcher_EventRecord__Class *klass; MonitorData *monitor; - struct Stack_1_Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord___Fields fields; + struct EventDispatcher_EventRecord fields; }; struct __declspec(align(8)) Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord___Fields { @@ -606094,15 +612732,17 @@ struct Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord_ { struct Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord___Fields fields; }; -struct EventDispatcher_EventRecord { - struct EventBase *m_Event; - struct IPanel *m_Panel; +struct __declspec(align(8)) Stack_1_Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord___Fields { + struct Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord___Array *_array; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; }; -struct EventDispatcher_EventRecord__Boxed { - struct EventDispatcher_EventRecord__Class *klass; +struct Stack_1_Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord_ { + struct Stack_1_Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord___Class *klass; MonitorData *monitor; - struct EventDispatcher_EventRecord fields; + struct Stack_1_Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord___Fields fields; }; struct EventDispatcher_EventRecord__Array { @@ -606143,6 +612783,17 @@ struct PointerDispatchState { struct PointerDispatchState__Fields fields; }; +struct EventDispatcher_DispatchContext { + uint32_t m_GateCount; + struct Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord_ *m_Queue; +}; + +struct EventDispatcher_DispatchContext__Boxed { + struct EventDispatcher_DispatchContext__Class *klass; + MonitorData *monitor; + struct EventDispatcher_DispatchContext fields; +}; + struct __declspec(align(8)) Stack_1_UnityEngine_UIElements_EventDispatcher_DispatchContext___Fields { struct EventDispatcher_DispatchContext__Array *_array; int32_t _size; @@ -606156,17 +612807,6 @@ struct Stack_1_UnityEngine_UIElements_EventDispatcher_DispatchContext_ { struct Stack_1_UnityEngine_UIElements_EventDispatcher_DispatchContext___Fields fields; }; -struct EventDispatcher_DispatchContext { - uint32_t m_GateCount; - struct Queue_1_UnityEngine_UIElements_EventDispatcher_EventRecord_ *m_Queue; -}; - -struct EventDispatcher_DispatchContext__Boxed { - struct EventDispatcher_DispatchContext__Class *klass; - MonitorData *monitor; - struct EventDispatcher_DispatchContext fields; -}; - struct EventDispatcher_DispatchContext__Array { struct EventDispatcher_DispatchContext__Array__Class *klass; MonitorData *monitor; @@ -606265,6 +612905,11 @@ struct VisualTreeUpdater { struct VisualTreeUpdater__Fields fields; }; +struct IVisualTreeUpdater { + struct IVisualTreeUpdater__Class *klass; + MonitorData *monitor; +}; + struct __declspec(align(8)) VisualTreeUpdater_UpdaterArray__Fields { struct IVisualTreeUpdater__Array *m_VisualTreeUpdaters; }; @@ -606275,11 +612920,6 @@ struct VisualTreeUpdater_UpdaterArray { struct VisualTreeUpdater_UpdaterArray__Fields fields; }; -struct IVisualTreeUpdater { - struct IVisualTreeUpdater__Class *klass; - MonitorData *monitor; -}; - struct IVisualTreeUpdater__Array { struct IVisualTreeUpdater__Array__Class *klass; MonitorData *monitor; @@ -606308,19 +612948,6 @@ struct TimerEventScheduler { struct TimerEventScheduler__Fields fields; }; -struct __declspec(align(8)) List_1_UnityEngine_UIElements_ScheduledItem___Fields { - struct ScheduledItem__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_UIElements_ScheduledItem_ { - struct List_1_UnityEngine_UIElements_ScheduledItem___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_UIElements_ScheduledItem___Fields fields; -}; - struct __declspec(align(8)) ScheduledItem__Fields { struct Func_1_Boolean_ *timerUpdateStopCondition; int64_t _startMs_k__BackingField; @@ -606335,6 +612962,19 @@ struct ScheduledItem { struct ScheduledItem__Fields fields; }; +struct __declspec(align(8)) List_1_UnityEngine_UIElements_ScheduledItem___Fields { + struct ScheduledItem__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_UIElements_ScheduledItem_ { + struct List_1_UnityEngine_UIElements_ScheduledItem___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_UIElements_ScheduledItem___Fields fields; +}; + struct VisualElement_BaseVisualElementScheduledItem__Fields { struct ScheduledItem__Fields _; struct VisualElement *_element_k__BackingField; @@ -606425,6 +613065,18 @@ struct IEnumerator_1_UnityEngine_UIElements_ScheduledItem_ { MonitorData *monitor; }; +struct HashSet_1_T_Slot_UnityEngine_UIElements_ScheduledItem_ { + int32_t hashCode; + int32_t next; + struct ScheduledItem *value; +}; + +struct HashSet_1_T_Slot_UnityEngine_UIElements_ScheduledItem___Boxed { + struct HashSet_1_T_Slot_UnityEngine_UIElements_ScheduledItem___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_UnityEngine_UIElements_ScheduledItem_ fields; +}; + struct __declspec(align(8)) HashSet_1_UnityEngine_UIElements_ScheduledItem___Fields { struct Int32__Array *_buckets; struct HashSet_1_T_Slot_UnityEngine_UIElements_ScheduledItem___Array *_slots; @@ -606442,18 +613094,6 @@ struct HashSet_1_UnityEngine_UIElements_ScheduledItem_ { struct HashSet_1_UnityEngine_UIElements_ScheduledItem___Fields fields; }; -struct HashSet_1_T_Slot_UnityEngine_UIElements_ScheduledItem_ { - int32_t hashCode; - int32_t next; - struct ScheduledItem *value; -}; - -struct HashSet_1_T_Slot_UnityEngine_UIElements_ScheduledItem___Boxed { - struct HashSet_1_T_Slot_UnityEngine_UIElements_ScheduledItem___Class *klass; - MonitorData *monitor; - struct HashSet_1_T_Slot_UnityEngine_UIElements_ScheduledItem_ fields; -}; - struct HashSet_1_T_Slot_UnityEngine_UIElements_ScheduledItem___Array { struct HashSet_1_T_Slot_UnityEngine_UIElements_ScheduledItem___Array__Class *klass; MonitorData *monitor; @@ -606868,19 +613508,6 @@ struct StyleValueCollection { struct StyleValueCollection__Fields fields; }; -struct __declspec(align(8)) List_1_UnityEngine_UIElements_StyleSheets_StyleValue___Fields { - struct StyleValue__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_UIElements_StyleSheets_StyleValue_ { - struct List_1_UnityEngine_UIElements_StyleSheets_StyleValue___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_UIElements_StyleSheets_StyleValue___Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class StyleKeyword__Enum : int32_t { Undefined = 0x00000000, @@ -606933,6 +613560,19 @@ struct StyleValue__Boxed { struct StyleValue fields; }; +struct __declspec(align(8)) List_1_UnityEngine_UIElements_StyleSheets_StyleValue___Fields { + struct StyleValue__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_UIElements_StyleSheets_StyleValue_ { + struct List_1_UnityEngine_UIElements_StyleSheets_StyleValue___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_UIElements_StyleSheets_StyleValue___Fields fields; +}; + struct StyleValue__Array { struct StyleValue__Array__Class *klass; MonitorData *monitor; @@ -607133,6 +613773,19 @@ struct VisualTreeAsset { struct VisualTreeAsset__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_VisualElement_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct VisualElement *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_VisualElement___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_VisualElement___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_VisualElement_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_UnityEngine_UIElements_VisualElement___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_VisualElement___Array *_entries; @@ -607152,19 +613805,6 @@ struct Dictionary_2_System_String_UnityEngine_UIElements_VisualElement_ { struct Dictionary_2_System_String_UnityEngine_UIElements_VisualElement___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_VisualElement_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct VisualElement *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_VisualElement___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_VisualElement___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_VisualElement_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_VisualElement___Array { struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_VisualElement___Array__Class *klass; MonitorData *monitor; @@ -607227,6 +613867,18 @@ struct IEnumerable_1_UnityEngine_UIElements_VisualElement_ { MonitorData *monitor; }; +struct VisualTreeAsset_UsingEntry { + struct String *alias; + struct String *path; + struct VisualTreeAsset *asset; +}; + +struct VisualTreeAsset_UsingEntry__Boxed { + struct VisualTreeAsset_UsingEntry__Class *klass; + MonitorData *monitor; + struct VisualTreeAsset_UsingEntry fields; +}; + struct __declspec(align(8)) List_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry___Fields { struct VisualTreeAsset_UsingEntry__Array *_items; int32_t _size; @@ -607240,18 +613892,6 @@ struct List_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ { struct List_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry___Fields fields; }; -struct VisualTreeAsset_UsingEntry { - struct String *alias; - struct String *path; - struct VisualTreeAsset *asset; -}; - -struct VisualTreeAsset_UsingEntry__Boxed { - struct VisualTreeAsset_UsingEntry__Class *klass; - MonitorData *monitor; - struct VisualTreeAsset_UsingEntry fields; -}; - struct IComparer_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ { struct IComparer_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry___Class *klass; MonitorData *monitor; @@ -607270,19 +613910,6 @@ struct IEnumerator_1_UnityEngine_UIElements_VisualTreeAsset_UsingEntry_ { MonitorData *monitor; }; -struct __declspec(align(8)) List_1_UnityEngine_UIElements_VisualElementAsset___Fields { - struct VisualElementAsset__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_UIElements_VisualElementAsset_ { - struct List_1_UnityEngine_UIElements_VisualElementAsset___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_UIElements_VisualElementAsset___Fields fields; -}; - struct __declspec(align(8)) VisualElementAsset__Fields { struct String *m_Name; int32_t m_Id; @@ -607309,6 +613936,19 @@ struct VisualElementAsset { struct VisualElementAsset__Fields fields; }; +struct __declspec(align(8)) List_1_UnityEngine_UIElements_VisualElementAsset___Fields { + struct VisualElementAsset__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_UIElements_VisualElementAsset_ { + struct List_1_UnityEngine_UIElements_VisualElementAsset___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_UIElements_VisualElementAsset___Fields fields; +}; + struct VisualElementAsset__Array { struct VisualElementAsset__Array__Class *klass; MonitorData *monitor; @@ -607322,19 +613962,6 @@ struct IEnumerator_1_UnityEngine_UIElements_VisualElementAsset_ { MonitorData *monitor; }; -struct __declspec(align(8)) List_1_UnityEngine_UIElements_TemplateAsset___Fields { - struct TemplateAsset__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_UIElements_TemplateAsset_ { - struct List_1_UnityEngine_UIElements_TemplateAsset___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_UIElements_TemplateAsset___Fields fields; -}; - struct TemplateAsset__Fields { struct VisualElementAsset__Fields _; struct String *m_TemplateAlias; @@ -607348,17 +613975,17 @@ struct TemplateAsset { struct TemplateAsset__Fields fields; }; -struct __declspec(align(8)) List_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride___Fields { - struct TemplateAsset_AttributeOverride__Array *_items; +struct __declspec(align(8)) List_1_UnityEngine_UIElements_TemplateAsset___Fields { + struct TemplateAsset__Array *_items; int32_t _size; int32_t _version; struct Object *_syncRoot; }; -struct List_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ { - struct List_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride___Class *klass; +struct List_1_UnityEngine_UIElements_TemplateAsset_ { + struct List_1_UnityEngine_UIElements_TemplateAsset___Class *klass; MonitorData *monitor; - struct List_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride___Fields fields; + struct List_1_UnityEngine_UIElements_TemplateAsset___Fields fields; }; struct TemplateAsset_AttributeOverride { @@ -607373,6 +614000,19 @@ struct TemplateAsset_AttributeOverride__Boxed { struct TemplateAsset_AttributeOverride fields; }; +struct __declspec(align(8)) List_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride___Fields { + struct TemplateAsset_AttributeOverride__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ { + struct List_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride___Fields fields; +}; + struct TemplateAsset_AttributeOverride__Array { struct TemplateAsset_AttributeOverride__Array__Class *klass; MonitorData *monitor; @@ -607386,6 +614026,17 @@ struct IEnumerator_1_UnityEngine_UIElements_TemplateAsset_AttributeOverride_ { MonitorData *monitor; }; +struct VisualTreeAsset_SlotUsageEntry { + struct String *slotName; + int32_t assetId; +}; + +struct VisualTreeAsset_SlotUsageEntry__Boxed { + struct VisualTreeAsset_SlotUsageEntry__Class *klass; + MonitorData *monitor; + struct VisualTreeAsset_SlotUsageEntry fields; +}; + struct __declspec(align(8)) List_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry___Fields { struct VisualTreeAsset_SlotUsageEntry__Array *_items; int32_t _size; @@ -607399,17 +614050,6 @@ struct List_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry_ { struct List_1_UnityEngine_UIElements_VisualTreeAsset_SlotUsageEntry___Fields fields; }; -struct VisualTreeAsset_SlotUsageEntry { - struct String *slotName; - int32_t assetId; -}; - -struct VisualTreeAsset_SlotUsageEntry__Boxed { - struct VisualTreeAsset_SlotUsageEntry__Class *klass; - MonitorData *monitor; - struct VisualTreeAsset_SlotUsageEntry fields; -}; - struct VisualTreeAsset_SlotUsageEntry__Array { struct VisualTreeAsset_SlotUsageEntry__Array__Class *klass; MonitorData *monitor; @@ -607436,6 +614076,17 @@ struct IEnumerator_1_UnityEngine_UIElements_TemplateAsset_ { MonitorData *monitor; }; +struct VisualTreeAsset_SlotDefinition { + struct String *name; + int32_t insertionPointId; +}; + +struct VisualTreeAsset_SlotDefinition__Boxed { + struct VisualTreeAsset_SlotDefinition__Class *klass; + MonitorData *monitor; + struct VisualTreeAsset_SlotDefinition fields; +}; + struct __declspec(align(8)) List_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition___Fields { struct VisualTreeAsset_SlotDefinition__Array *_items; int32_t _size; @@ -607449,17 +614100,6 @@ struct List_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition_ { struct List_1_UnityEngine_UIElements_VisualTreeAsset_SlotDefinition___Fields fields; }; -struct VisualTreeAsset_SlotDefinition { - struct String *name; - int32_t insertionPointId; -}; - -struct VisualTreeAsset_SlotDefinition__Boxed { - struct VisualTreeAsset_SlotDefinition__Class *klass; - MonitorData *monitor; - struct VisualTreeAsset_SlotDefinition fields; -}; - struct VisualTreeAsset_SlotDefinition__Array { struct VisualTreeAsset_SlotDefinition__Array__Class *klass; MonitorData *monitor; @@ -607769,19 +614409,6 @@ struct StyleSyntaxParser { struct StyleSyntaxParser__Fields fields; }; -struct __declspec(align(8)) List_1_UnityEngine_UIElements_StyleSheets_Syntax_Expression___Fields { - struct Expression__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_UIElements_StyleSheets_Syntax_Expression_ { - struct List_1_UnityEngine_UIElements_StyleSheets_Syntax_Expression___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_UIElements_StyleSheets_Syntax_Expression___Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class ExpressionType__Enum : int32_t { Unknown = 0x00000000, @@ -607868,7 +614495,7 @@ enum class DataType__Enum : int32_t { Color = 0x00000005, Resource = 0x00000006, Url = 0x00000007, - Time = 0x00000008, + Time_1 = 0x00000008, Angle = 0x00000009, CustomIdent = 0x0000000a, }; @@ -607883,7 +614510,7 @@ enum DataType__Enum { DataType__Enum_Color = 0x00000005, DataType__Enum_Resource = 0x00000006, DataType__Enum_Url = 0x00000007, - DataType__Enum_Time = 0x00000008, + DataType__Enum_Time_1 = 0x00000008, DataType__Enum_Angle = 0x00000009, DataType__Enum_CustomIdent = 0x0000000a, }; @@ -607957,6 +614584,19 @@ struct Expression { struct Expression__Fields fields; }; +struct __declspec(align(8)) List_1_UnityEngine_UIElements_StyleSheets_Syntax_Expression___Fields { + struct Expression__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_UIElements_StyleSheets_Syntax_Expression_ { + struct List_1_UnityEngine_UIElements_StyleSheets_Syntax_Expression___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_UIElements_StyleSheets_Syntax_Expression___Fields fields; +}; + struct Expression__Array { struct Expression__Array__Class *klass; MonitorData *monitor; @@ -608009,6 +614649,19 @@ struct IEnumerator_1_UnityEngine_UIElements_StyleSheets_Syntax_ExpressionCombina MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_StyleSheets_Syntax_Expression_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct Expression *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_StyleSheets_Syntax_Expression___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_StyleSheets_Syntax_Expression___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_StyleSheets_Syntax_Expression_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_UnityEngine_UIElements_StyleSheets_Syntax_Expression___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_StyleSheets_Syntax_Expression___Array *_entries; @@ -608028,19 +614681,6 @@ struct Dictionary_2_System_String_UnityEngine_UIElements_StyleSheets_Syntax_Expr struct Dictionary_2_System_String_UnityEngine_UIElements_StyleSheets_Syntax_Expression___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_StyleSheets_Syntax_Expression_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct Expression *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_StyleSheets_Syntax_Expression___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_StyleSheets_Syntax_Expression___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_StyleSheets_Syntax_Expression_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_StyleSheets_Syntax_Expression___Array { struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_StyleSheets_Syntax_Expression___Array__Class *klass; MonitorData *monitor; @@ -608201,19 +614841,6 @@ struct IEnumerator_1_UnityEngine_UIElements_StyleVariableResolver_ResolveContext MonitorData *monitor; }; -struct __declspec(align(8)) List_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged___Fields { - struct StyleValueManaged__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged_ { - struct List_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged___Fields fields; -}; - struct StyleValueManaged { #if defined(_CPLUSPLUS_) StylePropertyId__Enum id; @@ -608234,6 +614861,19 @@ struct StyleValueManaged__Boxed { struct StyleValueManaged fields; }; +struct __declspec(align(8)) List_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged___Fields { + struct StyleValueManaged__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged_ { + struct List_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_UIElements_StyleSheets_StyleValueManaged___Fields fields; +}; + struct StyleValueManaged__Array { struct StyleValueManaged__Array__Class *klass; MonitorData *monitor; @@ -608353,6 +614993,19 @@ struct StyleEnum_1_Visibility___Boxed { struct StyleEnum_1_Visibility_ fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_UIElements_VisualElement_TypeData_ { + int32_t hashCode; + int32_t next; + struct Type *key; + struct VisualElement_TypeData *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_UIElements_VisualElement_TypeData___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_UIElements_VisualElement_TypeData___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_UIElements_VisualElement_TypeData_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Type_UnityEngine_UIElements_VisualElement_TypeData___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_UIElements_VisualElement_TypeData___Array *_entries; @@ -608372,19 +615025,6 @@ struct Dictionary_2_System_Type_UnityEngine_UIElements_VisualElement_TypeData_ { struct Dictionary_2_System_Type_UnityEngine_UIElements_VisualElement_TypeData___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_UIElements_VisualElement_TypeData_ { - int32_t hashCode; - int32_t next; - struct Type *key; - struct VisualElement_TypeData *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_UIElements_VisualElement_TypeData___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_UIElements_VisualElement_TypeData___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_UIElements_VisualElement_TypeData_ fields; -}; - struct __declspec(align(8)) VisualElement_TypeData__Fields { struct Type *_type_k__BackingField; struct String *m_FullTypeName; @@ -608801,6 +615441,21 @@ struct ICollection_1_UnityEngine_UIElements_TextureId___Class { struct ICollection_1_UnityEngine_UIElements_TextureId___VTable vtable; }; +struct TextureId___VTable { +}; + +struct TextureId___StaticFields { +}; + +struct TextureId___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TextureId___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TextureId___VTable vtable; +}; + struct KeyValuePair_2_UnityEngine_Texture_UnityEngine_UIElements_TextureId___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -611981,6 +618636,21 @@ struct ICollection_1_UnityEngine_TextCore_Text_Character___Class { struct ICollection_1_UnityEngine_TextCore_Text_Character___VTable vtable; }; +struct Character___VTable { +}; + +struct Character___StaticFields { +}; + +struct Character___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Character___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Character___VTable vtable; +}; + struct KeyValuePair_2_System_UInt32_UnityEngine_TextCore_Text_Character___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -612408,6 +619078,21 @@ struct ICollection_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___C struct ICollection_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___VTable vtable; }; +struct GlyphPairAdjustmentRecord___VTable { +}; + +struct GlyphPairAdjustmentRecord___StaticFields { +}; + +struct GlyphPairAdjustmentRecord___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GlyphPairAdjustmentRecord___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GlyphPairAdjustmentRecord___VTable vtable; +}; + struct KeyValuePair_2_System_UInt32_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -612849,6 +619534,21 @@ struct WhiteSpace__Enum__Class { struct WhiteSpace__Enum__VTable vtable; }; +struct InheritedData___VTable { +}; + +struct InheritedData___StaticFields { +}; + +struct InheritedData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InheritedData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InheritedData___VTable vtable; +}; + struct InheritedData__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -613139,6 +619839,21 @@ struct Position__Enum__Class { struct Position__Enum__VTable vtable; }; +struct LayoutData___VTable { +}; + +struct LayoutData___StaticFields { +}; + +struct LayoutData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct LayoutData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct LayoutData___VTable vtable; +}; + struct LayoutData__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -613373,6 +620088,21 @@ struct TextOverflowPosition__Enum__Class { struct TextOverflowPosition__Enum__VTable vtable; }; +struct RareData___VTable { +}; + +struct RareData___StaticFields { +}; + +struct RareData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RareData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RareData___VTable vtable; +}; + struct RareData__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -613573,6 +620303,21 @@ struct Translate_1__Class { struct Translate_1__VTable vtable; }; +struct TransformData___VTable { +}; + +struct TransformData___StaticFields { +}; + +struct TransformData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TransformData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TransformData___VTable vtable; +}; + struct TransformData__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -614055,6 +620800,21 @@ struct List_1_UnityEngine_UIElements_EasingFunction___Class { struct List_1_UnityEngine_UIElements_EasingFunction___VTable vtable; }; +struct TransitionData___VTable { +}; + +struct TransitionData___StaticFields { +}; + +struct TransitionData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TransitionData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TransitionData___VTable vtable; +}; + struct TransitionData__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -614359,6 +621119,21 @@ struct OverflowInternal__Enum__Class { struct OverflowInternal__Enum__VTable vtable; }; +struct VisualData___VTable { +}; + +struct VisualData___StaticFields { +}; + +struct VisualData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct VisualData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct VisualData___VTable vtable; +}; + struct VisualData__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -614877,6 +621652,21 @@ struct ICollection_1_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData struct ICollection_1_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___VTable vtable; }; +struct StyleComplexSelector_PseudoStateData___VTable { +}; + +struct StyleComplexSelector_PseudoStateData___StaticFields { +}; + +struct StyleComplexSelector_PseudoStateData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StyleComplexSelector_PseudoStateData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StyleComplexSelector_PseudoStateData___VTable vtable; +}; + struct KeyValuePair_2_System_String_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -615398,6 +622188,21 @@ struct ICollection_1_UnityEngine_UIElements_StyleComplexSelector___Class { struct ICollection_1_UnityEngine_UIElements_StyleComplexSelector___VTable vtable; }; +struct StyleComplexSelector___VTable { +}; + +struct StyleComplexSelector___StaticFields { +}; + +struct StyleComplexSelector___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StyleComplexSelector___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StyleComplexSelector___VTable vtable; +}; + struct KeyValuePair_2_System_String_UnityEngine_UIElements_StyleComplexSelector___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -615716,6 +622521,21 @@ struct ICollection_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue___Cla struct ICollection_1_UnityEngine_UIElements_StyleSheets_StylePropertyValue___VTable vtable; }; +struct StylePropertyValue___VTable { +}; + +struct StylePropertyValue___StaticFields { +}; + +struct StylePropertyValue___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StylePropertyValue___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StylePropertyValue___VTable vtable; +}; + struct KeyValuePair_2_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyValue___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -619165,6 +625985,21 @@ struct ICollection_1_UnityEngine_UIElements_VisualElement___Class { struct ICollection_1_UnityEngine_UIElements_VisualElement___VTable vtable; }; +struct VisualElement___VTable { +}; + +struct VisualElement___StaticFields { +}; + +struct VisualElement___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct VisualElement___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct VisualElement___VTable vtable; +}; + struct KeyValuePair_2_System_String_UnityEngine_UIElements_VisualElement___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -620020,6 +626855,21 @@ struct CustomStyleProperty_1_UnityEngine_Texture2D___Class { struct CustomStyleProperty_1_UnityEngine_Texture2D___VTable vtable; }; +struct Texture2D___VTable { +}; + +struct Texture2D___StaticFields { +}; + +struct Texture2D___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Texture2D___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Texture2D___VTable vtable; +}; + struct CustomStyleProperty_1_UnityEngine_Sprite___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -620040,6 +626890,21 @@ struct CustomStyleProperty_1_UnityEngine_Sprite___Class { struct CustomStyleProperty_1_UnityEngine_Sprite___VTable vtable; }; +struct Sprite___VTable { +}; + +struct Sprite___StaticFields { +}; + +struct Sprite___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Sprite___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Sprite___VTable vtable; +}; + struct CustomStyleProperty_1_VectorImage___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -620060,6 +626925,21 @@ struct CustomStyleProperty_1_VectorImage___Class { struct CustomStyleProperty_1_VectorImage___VTable vtable; }; +struct VectorImage___VTable { +}; + +struct VectorImage___StaticFields { +}; + +struct VectorImage___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct VectorImage___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct VectorImage___VTable vtable; +}; + struct CustomStyleProperty_1_System_String___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -620663,6 +627543,21 @@ struct ICollection_1_UnityEngine_UIElements_StyleSheets_Syntax_Expression___Clas struct ICollection_1_UnityEngine_UIElements_StyleSheets_Syntax_Expression___VTable vtable; }; +struct Expression___VTable { +}; + +struct Expression___StaticFields { +}; + +struct Expression___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Expression___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Expression___VTable vtable; +}; + struct KeyValuePair_2_System_String_UnityEngine_UIElements_StyleSheets_Syntax_Expression___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -621718,6 +628613,21 @@ struct ICollection_1_UnityEngine_UIElements_VisualElement_TypeData___Class { struct ICollection_1_UnityEngine_UIElements_VisualElement_TypeData___VTable vtable; }; +struct VisualElement_TypeData___VTable { +}; + +struct VisualElement_TypeData___StaticFields { +}; + +struct VisualElement_TypeData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct VisualElement_TypeData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct VisualElement_TypeData___VTable vtable; +}; + struct KeyValuePair_2_System_Type_UnityEngine_UIElements_VisualElement_TypeData___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -621966,6 +628876,21 @@ struct VisualElement__Class { struct VisualElement__VTable vtable; }; +struct RectInt___VTable { +}; + +struct RectInt___StaticFields { +}; + +struct RectInt___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RectInt___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RectInt___VTable vtable; +}; + struct AtlasBase__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -622070,6 +628995,21 @@ struct DynamicAtlasFilters__Enum__Class { struct DynamicAtlasFilters__Enum__VTable vtable; }; +struct DynamicAtlasFilters___VTable { +}; + +struct DynamicAtlasFilters___StaticFields { +}; + +struct DynamicAtlasFilters___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DynamicAtlasFilters___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DynamicAtlasFilters___VTable vtable; +}; + struct DynamicAtlasCustomFilter__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -622127,6 +629067,19 @@ struct DynamicAtlas { struct DynamicAtlas__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Texture_UnityEngine_UIElements_DynamicAtlas_TextureInfo_ { + int32_t hashCode; + int32_t next; + struct Texture *key; + struct DynamicAtlas_TextureInfo *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Texture_UnityEngine_UIElements_DynamicAtlas_TextureInfo___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Texture_UnityEngine_UIElements_DynamicAtlas_TextureInfo___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Texture_UnityEngine_UIElements_DynamicAtlas_TextureInfo_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_Texture_UnityEngine_UIElements_DynamicAtlas_TextureInfo___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Texture_UnityEngine_UIElements_DynamicAtlas_TextureInfo___Array *_entries; @@ -622146,19 +629099,6 @@ struct Dictionary_2_UnityEngine_Texture_UnityEngine_UIElements_DynamicAtlas_Text struct Dictionary_2_UnityEngine_Texture_UnityEngine_UIElements_DynamicAtlas_TextureInfo___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Texture_UnityEngine_UIElements_DynamicAtlas_TextureInfo_ { - int32_t hashCode; - int32_t next; - struct Texture *key; - struct DynamicAtlas_TextureInfo *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Texture_UnityEngine_UIElements_DynamicAtlas_TextureInfo___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Texture_UnityEngine_UIElements_DynamicAtlas_TextureInfo___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Texture_UnityEngine_UIElements_DynamicAtlas_TextureInfo_ fields; -}; - struct __declspec(align(8)) LinkedPoolItem_1_UnityEngine_UIElements_DynamicAtlas_TextureInfo___Fields { struct DynamicAtlas_TextureInfo *poolNext; }; @@ -622224,21 +629164,6 @@ struct DynamicAtlasPage { struct DynamicAtlasPage__Fields fields; }; -struct __declspec(align(8)) Allocator2D__Fields { - struct Vector2Int m_MinSize; - struct Vector2Int m_MaxSize; - struct Vector2Int m_MaxAllocSize; - int32_t m_RowHeightBias; - struct Allocator2D_Row__Array *m_Rows; - struct List_1_UnityEngine_UIElements_UIR_Allocator2D_Area_ *m_Areas; -}; - -struct Allocator2D { - struct Allocator2D__Class *klass; - MonitorData *monitor; - struct Allocator2D__Fields fields; -}; - struct __declspec(align(8)) LinkedPoolItem_1_Allocator2D_Row___Fields { struct Allocator2D_Row *poolNext; }; @@ -622264,6 +629189,21 @@ struct Allocator2D_Row { struct Allocator2D_Row__Fields fields; }; +struct __declspec(align(8)) Allocator2D__Fields { + struct Vector2Int m_MinSize; + struct Vector2Int m_MaxSize; + struct Vector2Int m_MaxAllocSize; + int32_t m_RowHeightBias; + struct Allocator2D_Row__Array *m_Rows; + struct List_1_UnityEngine_UIElements_UIR_Allocator2D_Area_ *m_Areas; +}; + +struct Allocator2D { + struct Allocator2D__Class *klass; + MonitorData *monitor; + struct Allocator2D__Fields fields; +}; + struct __declspec(align(8)) Allocator2D_Area__Fields { struct RectInt rect; struct BestFitAllocator *allocator; @@ -622343,6 +629283,20 @@ struct IEnumerator_1_UnityEngine_UIElements_UIR_Allocator2D_Area_ { MonitorData *monitor; }; +struct TextureBlitter_BlitInfo { + struct Texture *src; + struct RectInt srcRect; + struct Vector2Int dstPos; + int32_t border; + struct Color tint; +}; + +struct TextureBlitter_BlitInfo__Boxed { + struct TextureBlitter_BlitInfo__Class *klass; + MonitorData *monitor; + struct TextureBlitter_BlitInfo fields; +}; + struct __declspec(align(8)) TextureBlitter__Fields { struct TextureBlitter_BlitInfo__Array *m_SingleBlit; struct Material *m_BlitMaterial; @@ -622359,20 +629313,6 @@ struct TextureBlitter { struct TextureBlitter__Fields fields; }; -struct TextureBlitter_BlitInfo { - struct Texture *src; - struct RectInt srcRect; - struct Vector2Int dstPos; - int32_t border; - struct Color tint; -}; - -struct TextureBlitter_BlitInfo__Boxed { - struct TextureBlitter_BlitInfo__Class *klass; - MonitorData *monitor; - struct TextureBlitter_BlitInfo fields; -}; - struct TextureBlitter_BlitInfo__Array { struct TextureBlitter_BlitInfo__Array__Class *klass; MonitorData *monitor; @@ -623219,6 +630159,21 @@ struct ICollection_1_UnityEngine_UIElements_DynamicAtlas_TextureInfo___Class { struct ICollection_1_UnityEngine_UIElements_DynamicAtlas_TextureInfo___VTable vtable; }; +struct DynamicAtlas_TextureInfo___VTable { +}; + +struct DynamicAtlas_TextureInfo___StaticFields { +}; + +struct DynamicAtlas_TextureInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DynamicAtlas_TextureInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DynamicAtlas_TextureInfo___VTable vtable; +}; + struct KeyValuePair_2_UnityEngine_Texture_UnityEngine_UIElements_DynamicAtlas_TextureInfo___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -628387,6 +635342,21 @@ struct IList_1_UnityEngine_UIElements_IEventDispatchingStrategy___Class { struct IList_1_UnityEngine_UIElements_IEventDispatchingStrategy___VTable vtable; }; +struct Focusable___VTable { +}; + +struct Focusable___StaticFields { +}; + +struct Focusable___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Focusable___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Focusable___VTable vtable; +}; + struct EventBase_1_AttachToPanelEvent___Fields { struct EventBase__Fields _; int32_t m_RefCount; @@ -628917,6 +635887,11 @@ struct DefaultGroupManager { struct DefaultGroupManager__Fields fields; }; +struct IGroupBoxOption { + struct IGroupBoxOption__Class *klass; + MonitorData *monitor; +}; + struct __declspec(align(8)) List_1_UnityEngine_UIElements_IGroupBoxOption___Fields { struct IGroupBoxOption__Array *_items; int32_t _size; @@ -628930,11 +635905,6 @@ struct List_1_UnityEngine_UIElements_IGroupBoxOption_ { struct List_1_UnityEngine_UIElements_IGroupBoxOption___Fields fields; }; -struct IGroupBoxOption { - struct IGroupBoxOption__Class *klass; - MonitorData *monitor; -}; - struct IGroupBoxOption__Array { struct IGroupBoxOption__Array__Class *klass; MonitorData *monitor; @@ -629068,6 +636038,36 @@ struct DefaultGroupManager__Class { struct DefaultGroupManager__VTable vtable; }; +struct Matrix4x4___VTable { +}; + +struct Matrix4x4___StaticFields { +}; + +struct Matrix4x4___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Matrix4x4___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Matrix4x4___VTable vtable; +}; + +struct Rect___VTable { +}; + +struct Rect___StaticFields { +}; + +struct Rect___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Rect___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Rect___VTable vtable; +}; + struct __declspec(align(8)) UxmlFactory_2_IMGUIContainer_IMGUIContainer_UxmlTraits___Fields { struct IMGUIContainer_UxmlTraits *m_Traits; }; @@ -630436,6 +637436,21 @@ struct KeyboardNavigationManipulator_c_DisplayClass5_0__Class { struct KeyboardNavigationManipulator_c_DisplayClass5_0__VTable vtable; }; +struct KeyboardNavigationManipulator_c_DisplayClass5_0___VTable { +}; + +struct KeyboardNavigationManipulator_c_DisplayClass5_0___StaticFields { +}; + +struct KeyboardNavigationManipulator_c_DisplayClass5_0___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyboardNavigationManipulator_c_DisplayClass5_0___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyboardNavigationManipulator_c_DisplayClass5_0___VTable vtable; +}; + struct KeyboardNavigationManipulator_c_DisplayClass6_0 { struct KeyDownEvent *evt; }; @@ -630465,6 +637480,21 @@ struct KeyboardNavigationManipulator_c_DisplayClass6_0__Class { struct KeyboardNavigationManipulator_c_DisplayClass6_0__VTable vtable; }; +struct KeyboardNavigationManipulator_c_DisplayClass6_0___VTable { +}; + +struct KeyboardNavigationManipulator_c_DisplayClass6_0___StaticFields { +}; + +struct KeyboardNavigationManipulator_c_DisplayClass6_0___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyboardNavigationManipulator_c_DisplayClass6_0___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyboardNavigationManipulator_c_DisplayClass6_0___VTable vtable; +}; + struct BaseRuntimePanel_c { struct BaseRuntimePanel_c__Class *klass; MonitorData *monitor; @@ -630679,6 +637709,51 @@ struct IStylePropertyAnimations__Class { struct IStylePropertyAnimations__VTable vtable; }; +struct Length___VTable { +}; + +struct Length___StaticFields { +}; + +struct Length___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Length___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Length___VTable vtable; +}; + +struct TransformOrigin___VTable { +}; + +struct TransformOrigin___StaticFields { +}; + +struct TransformOrigin___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TransformOrigin___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TransformOrigin___VTable vtable; +}; + +struct Translate___VTable { +}; + +struct Translate___StaticFields { +}; + +struct Translate___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Translate___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Translate___VTable vtable; +}; + struct ITransform_1 { struct ITransform_1__Class *klass; MonitorData *monitor; @@ -630702,6 +637777,21 @@ struct ITransform_1__Class { struct ITransform_1__VTable vtable; }; +struct ComputedStyle___VTable { +}; + +struct ComputedStyle___StaticFields { +}; + +struct ComputedStyle___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ComputedStyle___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ComputedStyle___VTable vtable; +}; + struct EventBase_1_TooltipEvent___Fields { struct EventBase__Fields _; int32_t m_RefCount; @@ -630926,6 +638016,18 @@ struct VisualElementAnimationSystem { struct VisualElementAnimationSystem__Fields fields; }; +struct HashSet_1_T_Slot_UnityEngine_UIElements_Experimental_IValueAnimationUpdate_ { + int32_t hashCode; + int32_t next; + struct IValueAnimationUpdate *value; +}; + +struct HashSet_1_T_Slot_UnityEngine_UIElements_Experimental_IValueAnimationUpdate___Boxed { + struct HashSet_1_T_Slot_UnityEngine_UIElements_Experimental_IValueAnimationUpdate___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_UnityEngine_UIElements_Experimental_IValueAnimationUpdate_ fields; +}; + struct __declspec(align(8)) HashSet_1_UnityEngine_UIElements_Experimental_IValueAnimationUpdate___Fields { struct Int32__Array *_buckets; struct HashSet_1_T_Slot_UnityEngine_UIElements_Experimental_IValueAnimationUpdate___Array *_slots; @@ -630943,18 +638045,6 @@ struct HashSet_1_UnityEngine_UIElements_Experimental_IValueAnimationUpdate_ { struct HashSet_1_UnityEngine_UIElements_Experimental_IValueAnimationUpdate___Fields fields; }; -struct HashSet_1_T_Slot_UnityEngine_UIElements_Experimental_IValueAnimationUpdate_ { - int32_t hashCode; - int32_t next; - struct IValueAnimationUpdate *value; -}; - -struct HashSet_1_T_Slot_UnityEngine_UIElements_Experimental_IValueAnimationUpdate___Boxed { - struct HashSet_1_T_Slot_UnityEngine_UIElements_Experimental_IValueAnimationUpdate___Class *klass; - MonitorData *monitor; - struct HashSet_1_T_Slot_UnityEngine_UIElements_Experimental_IValueAnimationUpdate_ fields; -}; - struct HashSet_1_T_Slot_UnityEngine_UIElements_Experimental_IValueAnimationUpdate___Array { struct HashSet_1_T_Slot_UnityEngine_UIElements_Experimental_IValueAnimationUpdate___Array__Class *klass; MonitorData *monitor; @@ -631597,6 +638687,35 @@ struct StylePropertyAnimationSystem_Values { MonitorData *monitor; }; +struct StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single_ { + int64_t startTimeMs; + int32_t durationMs; + struct Func_2_Single_Single_ *easingCurve; + float easedProgress; + float reversingShorteningFactor; + bool isStarted; + int32_t delayMs; +}; + +struct StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single___Boxed { + struct StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single___Class *klass; + MonitorData *monitor; + struct StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single_ fields; +}; + +struct StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single_ { + float startValue; + float endValue; + float reversingAdjustedStartValue; + float currentValue; +}; + +struct StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single___Boxed { + struct StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single___Class *klass; + MonitorData *monitor; + struct StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single_ fields; +}; + struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single_ { struct VisualElement__Array *elements; struct StylePropertyId__Enum__Array *properties; @@ -631612,6 +638731,15 @@ struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSys struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single_ fields; }; +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single_ { +}; + +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single___Boxed { + struct StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single___Class *klass; + MonitorData *monitor; + struct StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single_ fields; +}; + struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single_System_Single_ { struct VisualElement__Array *elements; struct StylePropertyId__Enum__Array *properties; @@ -631682,19 +638810,6 @@ struct ObjectPool_1_System_Collections_Generic_Queue_1__1 { struct ObjectPool_1_System_Collections_Generic_Queue_1__1__Fields fields; }; -struct __declspec(align(8)) List_1_Queue_1_UnityEngine_UIElements_EventBase___Fields { - struct Queue_1_UnityEngine_UIElements_EventBase___Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Queue_1_UnityEngine_UIElements_EventBase_ { - struct List_1_Queue_1_UnityEngine_UIElements_EventBase___Class *klass; - MonitorData *monitor; - struct List_1_Queue_1_UnityEngine_UIElements_EventBase___Fields fields; -}; - struct __declspec(align(8)) Queue_1_UnityEngine_UIElements_EventBase___Fields { struct EventBase__Array *_array; int32_t _head; @@ -631710,6 +638825,19 @@ struct Queue_1_UnityEngine_UIElements_EventBase_ { struct Queue_1_UnityEngine_UIElements_EventBase___Fields fields; }; +struct __declspec(align(8)) List_1_Queue_1_UnityEngine_UIElements_EventBase___Fields { + struct Queue_1_UnityEngine_UIElements_EventBase___Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Queue_1_UnityEngine_UIElements_EventBase_ { + struct List_1_Queue_1_UnityEngine_UIElements_EventBase___Class *klass; + MonitorData *monitor; + struct List_1_Queue_1_UnityEngine_UIElements_EventBase___Fields fields; +}; + struct EventBase__Array { struct EventBase__Array__Class *klass; MonitorData *monitor; @@ -631772,25 +638900,6 @@ struct IObjectPool_1_System_Collections_Generic_Queue_1_ { MonitorData *monitor; }; -struct __declspec(align(8)) Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_UnityEngine_UIElements_StylePropertyAnimationSystem_TransitionState___Fields { - struct Int32__Array *_buckets; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_UnityEngine_UIElements_StylePropertyAnimationSystem_TransitionState___Array *_entries; - int32_t _count; - int32_t _freeList; - int32_t _freeCount; - int32_t _version; - struct IEqualityComparer_1_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_ *_comparer; - struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_UnityEngine_UIElements_StylePropertyAnimationSystem_TransitionState_ *_keys; - struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_UnityEngine_UIElements_StylePropertyAnimationSystem_TransitionState_ *_values; - struct Object *_syncRoot; -}; - -struct Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_UnityEngine_UIElements_StylePropertyAnimationSystem_TransitionState_ { - struct Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_UnityEngine_UIElements_StylePropertyAnimationSystem_TransitionState___Class *klass; - MonitorData *monitor; - struct Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_UnityEngine_UIElements_StylePropertyAnimationSystem_TransitionState___Fields fields; -}; - struct StylePropertyAnimationSystem_ElementPropertyPair { struct VisualElement *element; #if defined(_CPLUSPLUS_) @@ -631852,6 +638961,25 @@ struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimat struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_UnityEngine_UIElements_StylePropertyAnimationSystem_TransitionState_ fields; }; +struct __declspec(align(8)) Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_UnityEngine_UIElements_StylePropertyAnimationSystem_TransitionState___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_UnityEngine_UIElements_StylePropertyAnimationSystem_TransitionState___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_UnityEngine_UIElements_StylePropertyAnimationSystem_TransitionState_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_UnityEngine_UIElements_StylePropertyAnimationSystem_TransitionState_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_UnityEngine_UIElements_StylePropertyAnimationSystem_TransitionState_ { + struct Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_UnityEngine_UIElements_StylePropertyAnimationSystem_TransitionState___Class *klass; + MonitorData *monitor; + struct Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_UnityEngine_UIElements_StylePropertyAnimationSystem_TransitionState___Fields fields; +}; + struct IEqualityComparer_1_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_ { struct IEqualityComparer_1_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair___Class *klass; MonitorData *monitor; @@ -631959,6 +639087,19 @@ struct IEnumerable_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Transit MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_Queue_1_UnityEngine_UIElements_EventBase_ { + int32_t hashCode; + int32_t next; + struct StylePropertyAnimationSystem_ElementPropertyPair key; + struct Queue_1_UnityEngine_UIElements_EventBase_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_Queue_1_UnityEngine_UIElements_EventBase___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_Queue_1_UnityEngine_UIElements_EventBase___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_Queue_1_UnityEngine_UIElements_EventBase_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_Queue_1_UnityEngine_UIElements_EventBase___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_Queue_1_UnityEngine_UIElements_EventBase___Array *_entries; @@ -631978,19 +639119,6 @@ struct Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementP struct Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_Queue_1_UnityEngine_UIElements_EventBase___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_Queue_1_UnityEngine_UIElements_EventBase_ { - int32_t hashCode; - int32_t next; - struct StylePropertyAnimationSystem_ElementPropertyPair key; - struct Queue_1_UnityEngine_UIElements_EventBase_ *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_Queue_1_UnityEngine_UIElements_EventBase___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_Queue_1_UnityEngine_UIElements_EventBase___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_Queue_1_UnityEngine_UIElements_EventBase_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_Queue_1_UnityEngine_UIElements_EventBase___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_Queue_1_UnityEngine_UIElements_EventBase___Array__Class *klass; MonitorData *monitor; @@ -632053,22 +639181,6 @@ struct IEnumerable_1_Queue_1_UnityEngine_UIElements_EventBase_ { MonitorData *monitor; }; -struct StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single_ { - int64_t startTimeMs; - int32_t durationMs; - struct Func_2_Single_Single_ *easingCurve; - float easedProgress; - float reversingShorteningFactor; - bool isStarted; - int32_t delayMs; -}; - -struct StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single___Boxed { - struct StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single___Class *klass; - MonitorData *monitor; - struct StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single_ fields; -}; - struct StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single___Array { struct StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single___Array__Class *klass; MonitorData *monitor; @@ -632077,19 +639189,6 @@ struct StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single___Array struct StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single_ vector[32]; }; -struct StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single_ { - float startValue; - float endValue; - float reversingAdjustedStartValue; - float currentValue; -}; - -struct StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single___Boxed { - struct StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single___Class *klass; - MonitorData *monitor; - struct StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single_ fields; -}; - struct StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single___Array { struct StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single___Array__Class *klass; MonitorData *monitor; @@ -632098,6 +639197,19 @@ struct StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single___Array { struct StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single_ vector[32]; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ { + int32_t hashCode; + int32_t next; + struct StylePropertyAnimationSystem_ElementPropertyPair key; + int32_t value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32___Array *_entries; @@ -632117,19 +639229,6 @@ struct Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementP struct Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ { - int32_t hashCode; - int32_t next; - struct StylePropertyAnimationSystem_ElementPropertyPair key; - int32_t value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32___Array__Class *klass; MonitorData *monitor; @@ -632182,15 +639281,6 @@ struct IEnumerator_1_KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimatio MonitorData *monitor; }; -struct StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single_ { -}; - -struct StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single___Boxed { - struct StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single___Class *klass; - MonitorData *monitor; - struct StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single_ fields; -}; - struct StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single___Array { struct StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single___Array__Class *klass; MonitorData *monitor; @@ -632209,6 +639299,35 @@ struct Func_3_Single_Single_Boolean_ { struct Func_3_Single_Single_Boolean___Fields fields; }; +struct StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32_ { + int64_t startTimeMs; + int32_t durationMs; + struct Func_2_Single_Single_ *easingCurve; + float easedProgress; + float reversingShorteningFactor; + bool isStarted; + int32_t delayMs; +}; + +struct StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32___Boxed { + struct StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32___Class *klass; + MonitorData *monitor; + struct StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32_ fields; +}; + +struct StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32_ { + int32_t startValue; + int32_t endValue; + int32_t reversingAdjustedStartValue; + int32_t currentValue; +}; + +struct StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32___Boxed { + struct StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32___Class *klass; + MonitorData *monitor; + struct StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32_ fields; +}; + struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32_ { struct VisualElement__Array *elements; struct StylePropertyId__Enum__Array *properties; @@ -632224,6 +639343,15 @@ struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSys struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32_ fields; }; +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32_ { +}; + +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32___Boxed { + struct StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32___Class *klass; + MonitorData *monitor; + struct StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32_ fields; +}; + struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32_System_Int32_ { struct VisualElement__Array *elements; struct StylePropertyId__Enum__Array *properties; @@ -632277,22 +639405,6 @@ struct StylePropertyAnimationSystem_Values_1_T_TransitionEventsFrameState_System struct StylePropertyAnimationSystem_Values_1_T_TransitionEventsFrameState_System_Int32___Fields fields; }; -struct StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32_ { - int64_t startTimeMs; - int32_t durationMs; - struct Func_2_Single_Single_ *easingCurve; - float easedProgress; - float reversingShorteningFactor; - bool isStarted; - int32_t delayMs; -}; - -struct StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32___Boxed { - struct StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32___Class *klass; - MonitorData *monitor; - struct StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32_ fields; -}; - struct StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32___Array { struct StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32___Array__Class *klass; MonitorData *monitor; @@ -632301,19 +639413,6 @@ struct StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32___Array { struct StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32_ vector[32]; }; -struct StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32_ { - int32_t startValue; - int32_t endValue; - int32_t reversingAdjustedStartValue; - int32_t currentValue; -}; - -struct StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32___Boxed { - struct StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32___Class *klass; - MonitorData *monitor; - struct StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32_ fields; -}; - struct StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32___Array { struct StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32___Array__Class *klass; MonitorData *monitor; @@ -632322,15 +639421,6 @@ struct StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32___Array { struct StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32_ vector[32]; }; -struct StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32_ { -}; - -struct StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32___Boxed { - struct StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32___Class *klass; - MonitorData *monitor; - struct StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32_ fields; -}; - struct StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32___Array { struct StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32___Array__Class *klass; MonitorData *monitor; @@ -632349,6 +639439,35 @@ struct Func_3_Int32_Int32_Boolean_ { struct Func_3_Int32_Int32_Boolean___Fields fields; }; +struct StylePropertyAnimationSystem_Values_1_T_TimingData_Length_ { + int64_t startTimeMs; + int32_t durationMs; + struct Func_2_Single_Single_ *easingCurve; + float easedProgress; + float reversingShorteningFactor; + bool isStarted; + int32_t delayMs; +}; + +struct StylePropertyAnimationSystem_Values_1_T_TimingData_Length___Boxed { + struct StylePropertyAnimationSystem_Values_1_T_TimingData_Length___Class *klass; + MonitorData *monitor; + struct StylePropertyAnimationSystem_Values_1_T_TimingData_Length_ fields; +}; + +struct StylePropertyAnimationSystem_Values_1_T_StyleData_Length_ { + struct Length startValue; + struct Length endValue; + struct Length reversingAdjustedStartValue; + struct Length currentValue; +}; + +struct StylePropertyAnimationSystem_Values_1_T_StyleData_Length___Boxed { + struct StylePropertyAnimationSystem_Values_1_T_StyleData_Length___Class *klass; + MonitorData *monitor; + struct StylePropertyAnimationSystem_Values_1_T_StyleData_Length_ fields; +}; + struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Length_StylePropertyAnimationSystem_Values_1_T_StyleData_Length_ { struct VisualElement__Array *elements; struct StylePropertyId__Enum__Array *properties; @@ -632364,6 +639483,15 @@ struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSys struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Length_StylePropertyAnimationSystem_Values_1_T_StyleData_Length_ fields; }; +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Length_ { +}; + +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Length___Boxed { + struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Length___Class *klass; + MonitorData *monitor; + struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Length_ fields; +}; + struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Length_Length_ { struct VisualElement__Array *elements; struct StylePropertyId__Enum__Array *properties; @@ -632417,22 +639545,6 @@ struct StylePropertyAnimationSystem_Values_1_T_TransitionEventsFrameState_Length struct StylePropertyAnimationSystem_Values_1_T_TransitionEventsFrameState_Length___Fields fields; }; -struct StylePropertyAnimationSystem_Values_1_T_TimingData_Length_ { - int64_t startTimeMs; - int32_t durationMs; - struct Func_2_Single_Single_ *easingCurve; - float easedProgress; - float reversingShorteningFactor; - bool isStarted; - int32_t delayMs; -}; - -struct StylePropertyAnimationSystem_Values_1_T_TimingData_Length___Boxed { - struct StylePropertyAnimationSystem_Values_1_T_TimingData_Length___Class *klass; - MonitorData *monitor; - struct StylePropertyAnimationSystem_Values_1_T_TimingData_Length_ fields; -}; - struct StylePropertyAnimationSystem_Values_1_T_TimingData_Length___Array { struct StylePropertyAnimationSystem_Values_1_T_TimingData_Length___Array__Class *klass; MonitorData *monitor; @@ -632441,19 +639553,6 @@ struct StylePropertyAnimationSystem_Values_1_T_TimingData_Length___Array { struct StylePropertyAnimationSystem_Values_1_T_TimingData_Length_ vector[32]; }; -struct StylePropertyAnimationSystem_Values_1_T_StyleData_Length_ { - struct Length startValue; - struct Length endValue; - struct Length reversingAdjustedStartValue; - struct Length currentValue; -}; - -struct StylePropertyAnimationSystem_Values_1_T_StyleData_Length___Boxed { - struct StylePropertyAnimationSystem_Values_1_T_StyleData_Length___Class *klass; - MonitorData *monitor; - struct StylePropertyAnimationSystem_Values_1_T_StyleData_Length_ fields; -}; - struct StylePropertyAnimationSystem_Values_1_T_StyleData_Length___Array { struct StylePropertyAnimationSystem_Values_1_T_StyleData_Length___Array__Class *klass; MonitorData *monitor; @@ -632462,15 +639561,6 @@ struct StylePropertyAnimationSystem_Values_1_T_StyleData_Length___Array { struct StylePropertyAnimationSystem_Values_1_T_StyleData_Length_ vector[32]; }; -struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Length_ { -}; - -struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Length___Boxed { - struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Length___Class *klass; - MonitorData *monitor; - struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Length_ fields; -}; - struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Length___Array { struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Length___Array__Class *klass; MonitorData *monitor; @@ -632497,6 +639587,35 @@ struct Func_3_UnityEngine_UIElements_Length_UnityEngine_UIElements_Length_Boolea struct Func_3_UnityEngine_UIElements_Length_UnityEngine_UIElements_Length_Boolean___Fields fields; }; +struct StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color_ { + int64_t startTimeMs; + int32_t durationMs; + struct Func_2_Single_Single_ *easingCurve; + float easedProgress; + float reversingShorteningFactor; + bool isStarted; + int32_t delayMs; +}; + +struct StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color___Boxed { + struct StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color___Class *klass; + MonitorData *monitor; + struct StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color_ fields; +}; + +struct StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color_ { + struct Color startValue; + struct Color endValue; + struct Color reversingAdjustedStartValue; + struct Color currentValue; +}; + +struct StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color___Boxed { + struct StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color___Class *klass; + MonitorData *monitor; + struct StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color_ fields; +}; + struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color_StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color_ { struct VisualElement__Array *elements; struct StylePropertyId__Enum__Array *properties; @@ -632512,6 +639631,15 @@ struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSys struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color_StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color_ fields; }; +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color_ { +}; + +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color___Boxed { + struct StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color___Class *klass; + MonitorData *monitor; + struct StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color_ fields; +}; + struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color_UnityEngine_Color_ { struct VisualElement__Array *elements; struct StylePropertyId__Enum__Array *properties; @@ -632565,22 +639693,6 @@ struct StylePropertyAnimationSystem_Values_1_T_TransitionEventsFrameState_UnityE struct StylePropertyAnimationSystem_Values_1_T_TransitionEventsFrameState_UnityEngine_Color___Fields fields; }; -struct StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color_ { - int64_t startTimeMs; - int32_t durationMs; - struct Func_2_Single_Single_ *easingCurve; - float easedProgress; - float reversingShorteningFactor; - bool isStarted; - int32_t delayMs; -}; - -struct StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color___Boxed { - struct StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color___Class *klass; - MonitorData *monitor; - struct StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color_ fields; -}; - struct StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color___Array { struct StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color___Array__Class *klass; MonitorData *monitor; @@ -632589,19 +639701,6 @@ struct StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color___Ar struct StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color_ vector[32]; }; -struct StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color_ { - struct Color startValue; - struct Color endValue; - struct Color reversingAdjustedStartValue; - struct Color currentValue; -}; - -struct StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color___Boxed { - struct StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color___Class *klass; - MonitorData *monitor; - struct StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color_ fields; -}; - struct StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color___Array { struct StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color___Array__Class *klass; MonitorData *monitor; @@ -632610,15 +639709,6 @@ struct StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color___Arr struct StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color_ vector[32]; }; -struct StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color_ { -}; - -struct StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color___Boxed { - struct StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color___Class *klass; - MonitorData *monitor; - struct StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color_ fields; -}; - struct StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color___Array { struct StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color___Array__Class *klass; MonitorData *monitor; @@ -632637,6 +639727,35 @@ struct Func_3_UnityEngine_Color_UnityEngine_Color_Boolean_ { struct Func_3_UnityEngine_Color_UnityEngine_Color_Boolean___Fields fields; }; +struct StylePropertyAnimationSystem_Values_1_T_TimingData_Background_ { + int64_t startTimeMs; + int32_t durationMs; + struct Func_2_Single_Single_ *easingCurve; + float easedProgress; + float reversingShorteningFactor; + bool isStarted; + int32_t delayMs; +}; + +struct StylePropertyAnimationSystem_Values_1_T_TimingData_Background___Boxed { + struct StylePropertyAnimationSystem_Values_1_T_TimingData_Background___Class *klass; + MonitorData *monitor; + struct StylePropertyAnimationSystem_Values_1_T_TimingData_Background_ fields; +}; + +struct StylePropertyAnimationSystem_Values_1_T_StyleData_Background_ { + struct Background startValue; + struct Background endValue; + struct Background reversingAdjustedStartValue; + struct Background currentValue; +}; + +struct StylePropertyAnimationSystem_Values_1_T_StyleData_Background___Boxed { + struct StylePropertyAnimationSystem_Values_1_T_StyleData_Background___Class *klass; + MonitorData *monitor; + struct StylePropertyAnimationSystem_Values_1_T_StyleData_Background_ fields; +}; + struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Background_StylePropertyAnimationSystem_Values_1_T_StyleData_Background_ { struct VisualElement__Array *elements; struct StylePropertyId__Enum__Array *properties; @@ -632652,6 +639771,15 @@ struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSys struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Background_StylePropertyAnimationSystem_Values_1_T_StyleData_Background_ fields; }; +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Background_ { +}; + +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Background___Boxed { + struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Background___Class *klass; + MonitorData *monitor; + struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Background_ fields; +}; + struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Background_Background_ { struct VisualElement__Array *elements; struct StylePropertyId__Enum__Array *properties; @@ -632715,22 +639843,6 @@ struct StylePropertyAnimationSystem_Values_1_T_TransitionEventsFrameState_Backgr struct StylePropertyAnimationSystem_Values_1_T_TransitionEventsFrameState_Background___Fields fields; }; -struct StylePropertyAnimationSystem_Values_1_T_TimingData_Background_ { - int64_t startTimeMs; - int32_t durationMs; - struct Func_2_Single_Single_ *easingCurve; - float easedProgress; - float reversingShorteningFactor; - bool isStarted; - int32_t delayMs; -}; - -struct StylePropertyAnimationSystem_Values_1_T_TimingData_Background___Boxed { - struct StylePropertyAnimationSystem_Values_1_T_TimingData_Background___Class *klass; - MonitorData *monitor; - struct StylePropertyAnimationSystem_Values_1_T_TimingData_Background_ fields; -}; - struct StylePropertyAnimationSystem_Values_1_T_TimingData_Background___Array { struct StylePropertyAnimationSystem_Values_1_T_TimingData_Background___Array__Class *klass; MonitorData *monitor; @@ -632739,19 +639851,6 @@ struct StylePropertyAnimationSystem_Values_1_T_TimingData_Background___Array { struct StylePropertyAnimationSystem_Values_1_T_TimingData_Background_ vector[32]; }; -struct StylePropertyAnimationSystem_Values_1_T_StyleData_Background_ { - struct Background startValue; - struct Background endValue; - struct Background reversingAdjustedStartValue; - struct Background currentValue; -}; - -struct StylePropertyAnimationSystem_Values_1_T_StyleData_Background___Boxed { - struct StylePropertyAnimationSystem_Values_1_T_StyleData_Background___Class *klass; - MonitorData *monitor; - struct StylePropertyAnimationSystem_Values_1_T_StyleData_Background_ fields; -}; - struct StylePropertyAnimationSystem_Values_1_T_StyleData_Background___Array { struct StylePropertyAnimationSystem_Values_1_T_StyleData_Background___Array__Class *klass; MonitorData *monitor; @@ -632760,15 +639859,6 @@ struct StylePropertyAnimationSystem_Values_1_T_StyleData_Background___Array { struct StylePropertyAnimationSystem_Values_1_T_StyleData_Background_ vector[32]; }; -struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Background_ { -}; - -struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Background___Boxed { - struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Background___Class *klass; - MonitorData *monitor; - struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Background_ fields; -}; - struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Background___Array { struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Background___Array__Class *klass; MonitorData *monitor; @@ -632795,6 +639885,35 @@ struct Func_3_UnityEngine_UIElements_Background_UnityEngine_UIElements_Backgroun struct Func_3_UnityEngine_UIElements_Background_UnityEngine_UIElements_Background_Boolean___Fields fields; }; +struct StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition_ { + int64_t startTimeMs; + int32_t durationMs; + struct Func_2_Single_Single_ *easingCurve; + float easedProgress; + float reversingShorteningFactor; + bool isStarted; + int32_t delayMs; +}; + +struct StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition___Boxed { + struct StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition___Class *klass; + MonitorData *monitor; + struct StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition_ fields; +}; + +struct StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition_ { + struct FontDefinition startValue; + struct FontDefinition endValue; + struct FontDefinition reversingAdjustedStartValue; + struct FontDefinition currentValue; +}; + +struct StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition___Boxed { + struct StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition___Class *klass; + MonitorData *monitor; + struct StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition_ fields; +}; + struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition_StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition_ { struct VisualElement__Array *elements; struct StylePropertyId__Enum__Array *properties; @@ -632810,6 +639929,15 @@ struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSys struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition_StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition_ fields; }; +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition_ { +}; + +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition___Boxed { + struct StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition___Class *klass; + MonitorData *monitor; + struct StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition_ fields; +}; + struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition_FontDefinition_ { struct VisualElement__Array *elements; struct StylePropertyId__Enum__Array *properties; @@ -632873,22 +640001,6 @@ struct StylePropertyAnimationSystem_Values_1_T_TransitionEventsFrameState_FontDe struct StylePropertyAnimationSystem_Values_1_T_TransitionEventsFrameState_FontDefinition___Fields fields; }; -struct StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition_ { - int64_t startTimeMs; - int32_t durationMs; - struct Func_2_Single_Single_ *easingCurve; - float easedProgress; - float reversingShorteningFactor; - bool isStarted; - int32_t delayMs; -}; - -struct StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition___Boxed { - struct StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition___Class *klass; - MonitorData *monitor; - struct StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition_ fields; -}; - struct StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition___Array { struct StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition___Array__Class *klass; MonitorData *monitor; @@ -632897,19 +640009,6 @@ struct StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition___Array struct StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition_ vector[32]; }; -struct StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition_ { - struct FontDefinition startValue; - struct FontDefinition endValue; - struct FontDefinition reversingAdjustedStartValue; - struct FontDefinition currentValue; -}; - -struct StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition___Boxed { - struct StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition___Class *klass; - MonitorData *monitor; - struct StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition_ fields; -}; - struct StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition___Array { struct StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition___Array__Class *klass; MonitorData *monitor; @@ -632918,15 +640017,6 @@ struct StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition___Array struct StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition_ vector[32]; }; -struct StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition_ { -}; - -struct StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition___Boxed { - struct StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition___Class *klass; - MonitorData *monitor; - struct StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition_ fields; -}; - struct StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition___Array { struct StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition___Array__Class *klass; MonitorData *monitor; @@ -632953,6 +640043,35 @@ struct Func_3_UnityEngine_UIElements_FontDefinition_UnityEngine_UIElements_FontD struct Func_3_UnityEngine_UIElements_FontDefinition_UnityEngine_UIElements_FontDefinition_Boolean___Fields fields; }; +struct StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Font_ { + int64_t startTimeMs; + int32_t durationMs; + struct Func_2_Single_Single_ *easingCurve; + float easedProgress; + float reversingShorteningFactor; + bool isStarted; + int32_t delayMs; +}; + +struct StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Font___Boxed { + struct StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Font___Class *klass; + MonitorData *monitor; + struct StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Font_ fields; +}; + +struct StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Font_ { + struct Font *startValue; + struct Font *endValue; + struct Font *reversingAdjustedStartValue; + struct Font *currentValue; +}; + +struct StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Font___Boxed { + struct StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Font___Class *klass; + MonitorData *monitor; + struct StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Font_ fields; +}; + struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Font_StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Font_ { struct VisualElement__Array *elements; struct StylePropertyId__Enum__Array *properties; @@ -632968,6 +640087,15 @@ struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSys struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Font_StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Font_ fields; }; +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Font_ { +}; + +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Font___Boxed { + struct StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Font___Class *klass; + MonitorData *monitor; + struct StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Font_ fields; +}; + struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Font_UnityEngine_Font_ { struct VisualElement__Array *elements; struct StylePropertyId__Enum__Array *properties; @@ -633031,22 +640159,6 @@ struct StylePropertyAnimationSystem_Values_1_T_TransitionEventsFrameState_UnityE struct StylePropertyAnimationSystem_Values_1_T_TransitionEventsFrameState_UnityEngine_Font___Fields fields; }; -struct StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Font_ { - int64_t startTimeMs; - int32_t durationMs; - struct Func_2_Single_Single_ *easingCurve; - float easedProgress; - float reversingShorteningFactor; - bool isStarted; - int32_t delayMs; -}; - -struct StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Font___Boxed { - struct StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Font___Class *klass; - MonitorData *monitor; - struct StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Font_ fields; -}; - struct StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Font___Array { struct StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Font___Array__Class *klass; MonitorData *monitor; @@ -633055,19 +640167,6 @@ struct StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Font___Arr struct StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Font_ vector[32]; }; -struct StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Font_ { - struct Font *startValue; - struct Font *endValue; - struct Font *reversingAdjustedStartValue; - struct Font *currentValue; -}; - -struct StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Font___Boxed { - struct StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Font___Class *klass; - MonitorData *monitor; - struct StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Font_ fields; -}; - struct StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Font___Array { struct StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Font___Array__Class *klass; MonitorData *monitor; @@ -633076,15 +640175,6 @@ struct StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Font___Arra struct StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Font_ vector[32]; }; -struct StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Font_ { -}; - -struct StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Font___Boxed { - struct StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Font___Class *klass; - MonitorData *monitor; - struct StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Font_ fields; -}; - struct StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Font___Array { struct StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Font___Array__Class *klass; MonitorData *monitor; @@ -633111,6 +640201,35 @@ struct Func_3_UnityEngine_Font_UnityEngine_Font_Boolean_ { struct Func_3_UnityEngine_Font_UnityEngine_Font_Boolean___Fields fields; }; +struct StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow_ { + int64_t startTimeMs; + int32_t durationMs; + struct Func_2_Single_Single_ *easingCurve; + float easedProgress; + float reversingShorteningFactor; + bool isStarted; + int32_t delayMs; +}; + +struct StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow___Boxed { + struct StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow___Class *klass; + MonitorData *monitor; + struct StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow_ fields; +}; + +struct StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow_ { + struct TextShadow startValue; + struct TextShadow endValue; + struct TextShadow reversingAdjustedStartValue; + struct TextShadow currentValue; +}; + +struct StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow___Boxed { + struct StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow___Class *klass; + MonitorData *monitor; + struct StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow_ fields; +}; + struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow_StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow_ { struct VisualElement__Array *elements; struct StylePropertyId__Enum__Array *properties; @@ -633126,6 +640245,15 @@ struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSys struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow_StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow_ fields; }; +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow_ { +}; + +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow___Boxed { + struct StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow___Class *klass; + MonitorData *monitor; + struct StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow_ fields; +}; + struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow_TextShadow_ { struct VisualElement__Array *elements; struct StylePropertyId__Enum__Array *properties; @@ -633179,22 +640307,6 @@ struct StylePropertyAnimationSystem_Values_1_T_TransitionEventsFrameState_TextSh struct StylePropertyAnimationSystem_Values_1_T_TransitionEventsFrameState_TextShadow___Fields fields; }; -struct StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow_ { - int64_t startTimeMs; - int32_t durationMs; - struct Func_2_Single_Single_ *easingCurve; - float easedProgress; - float reversingShorteningFactor; - bool isStarted; - int32_t delayMs; -}; - -struct StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow___Boxed { - struct StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow___Class *klass; - MonitorData *monitor; - struct StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow_ fields; -}; - struct StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow___Array { struct StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow___Array__Class *klass; MonitorData *monitor; @@ -633203,19 +640315,6 @@ struct StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow___Array { struct StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow_ vector[32]; }; -struct StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow_ { - struct TextShadow startValue; - struct TextShadow endValue; - struct TextShadow reversingAdjustedStartValue; - struct TextShadow currentValue; -}; - -struct StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow___Boxed { - struct StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow___Class *klass; - MonitorData *monitor; - struct StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow_ fields; -}; - struct StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow___Array { struct StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow___Array__Class *klass; MonitorData *monitor; @@ -633224,15 +640323,6 @@ struct StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow___Array { struct StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow_ vector[32]; }; -struct StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow_ { -}; - -struct StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow___Boxed { - struct StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow___Class *klass; - MonitorData *monitor; - struct StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow_ fields; -}; - struct StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow___Array { struct StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow___Array__Class *klass; MonitorData *monitor; @@ -633259,6 +640349,35 @@ struct Func_3_UnityEngine_UIElements_TextShadow_UnityEngine_UIElements_TextShado struct Func_3_UnityEngine_UIElements_TextShadow_UnityEngine_UIElements_TextShadow_Boolean___Fields fields; }; +struct StylePropertyAnimationSystem_Values_1_T_TimingData_Scale_ { + int64_t startTimeMs; + int32_t durationMs; + struct Func_2_Single_Single_ *easingCurve; + float easedProgress; + float reversingShorteningFactor; + bool isStarted; + int32_t delayMs; +}; + +struct StylePropertyAnimationSystem_Values_1_T_TimingData_Scale___Boxed { + struct StylePropertyAnimationSystem_Values_1_T_TimingData_Scale___Class *klass; + MonitorData *monitor; + struct StylePropertyAnimationSystem_Values_1_T_TimingData_Scale_ fields; +}; + +struct StylePropertyAnimationSystem_Values_1_T_StyleData_Scale_ { + struct Scale startValue; + struct Scale endValue; + struct Scale reversingAdjustedStartValue; + struct Scale currentValue; +}; + +struct StylePropertyAnimationSystem_Values_1_T_StyleData_Scale___Boxed { + struct StylePropertyAnimationSystem_Values_1_T_StyleData_Scale___Class *klass; + MonitorData *monitor; + struct StylePropertyAnimationSystem_Values_1_T_StyleData_Scale_ fields; +}; + struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Scale_StylePropertyAnimationSystem_Values_1_T_StyleData_Scale_ { struct VisualElement__Array *elements; struct StylePropertyId__Enum__Array *properties; @@ -633274,6 +640393,15 @@ struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSys struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Scale_StylePropertyAnimationSystem_Values_1_T_StyleData_Scale_ fields; }; +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale_ { +}; + +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale___Boxed { + struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale___Class *klass; + MonitorData *monitor; + struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale_ fields; +}; + struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale_Scale_ { struct VisualElement__Array *elements; struct StylePropertyId__Enum__Array *properties; @@ -633327,22 +640455,6 @@ struct StylePropertyAnimationSystem_Values_1_T_TransitionEventsFrameState_Scale_ struct StylePropertyAnimationSystem_Values_1_T_TransitionEventsFrameState_Scale___Fields fields; }; -struct StylePropertyAnimationSystem_Values_1_T_TimingData_Scale_ { - int64_t startTimeMs; - int32_t durationMs; - struct Func_2_Single_Single_ *easingCurve; - float easedProgress; - float reversingShorteningFactor; - bool isStarted; - int32_t delayMs; -}; - -struct StylePropertyAnimationSystem_Values_1_T_TimingData_Scale___Boxed { - struct StylePropertyAnimationSystem_Values_1_T_TimingData_Scale___Class *klass; - MonitorData *monitor; - struct StylePropertyAnimationSystem_Values_1_T_TimingData_Scale_ fields; -}; - struct StylePropertyAnimationSystem_Values_1_T_TimingData_Scale___Array { struct StylePropertyAnimationSystem_Values_1_T_TimingData_Scale___Array__Class *klass; MonitorData *monitor; @@ -633351,19 +640463,6 @@ struct StylePropertyAnimationSystem_Values_1_T_TimingData_Scale___Array { struct StylePropertyAnimationSystem_Values_1_T_TimingData_Scale_ vector[32]; }; -struct StylePropertyAnimationSystem_Values_1_T_StyleData_Scale_ { - struct Scale startValue; - struct Scale endValue; - struct Scale reversingAdjustedStartValue; - struct Scale currentValue; -}; - -struct StylePropertyAnimationSystem_Values_1_T_StyleData_Scale___Boxed { - struct StylePropertyAnimationSystem_Values_1_T_StyleData_Scale___Class *klass; - MonitorData *monitor; - struct StylePropertyAnimationSystem_Values_1_T_StyleData_Scale_ fields; -}; - struct StylePropertyAnimationSystem_Values_1_T_StyleData_Scale___Array { struct StylePropertyAnimationSystem_Values_1_T_StyleData_Scale___Array__Class *klass; MonitorData *monitor; @@ -633372,15 +640471,6 @@ struct StylePropertyAnimationSystem_Values_1_T_StyleData_Scale___Array { struct StylePropertyAnimationSystem_Values_1_T_StyleData_Scale_ vector[32]; }; -struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale_ { -}; - -struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale___Boxed { - struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale___Class *klass; - MonitorData *monitor; - struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale_ fields; -}; - struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale___Array { struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale___Array__Class *klass; MonitorData *monitor; @@ -633407,6 +640497,35 @@ struct Func_3_UnityEngine_UIElements_Scale_UnityEngine_UIElements_Scale_Boolean_ struct Func_3_UnityEngine_UIElements_Scale_UnityEngine_UIElements_Scale_Boolean___Fields fields; }; +struct StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate_ { + int64_t startTimeMs; + int32_t durationMs; + struct Func_2_Single_Single_ *easingCurve; + float easedProgress; + float reversingShorteningFactor; + bool isStarted; + int32_t delayMs; +}; + +struct StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate___Boxed { + struct StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate___Class *klass; + MonitorData *monitor; + struct StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate_ fields; +}; + +struct StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate_ { + struct Rotate_1 startValue; + struct Rotate_1 endValue; + struct Rotate_1 reversingAdjustedStartValue; + struct Rotate_1 currentValue; +}; + +struct StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate___Boxed { + struct StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate___Class *klass; + MonitorData *monitor; + struct StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate_ fields; +}; + struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate_StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate_ { struct VisualElement__Array *elements; struct StylePropertyId__Enum__Array *properties; @@ -633422,6 +640541,15 @@ struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSys struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate_StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate_ fields; }; +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate_ { +}; + +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate___Boxed { + struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate___Class *klass; + MonitorData *monitor; + struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate_ fields; +}; + struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate_Rotate_ { struct VisualElement__Array *elements; struct StylePropertyId__Enum__Array *properties; @@ -633475,22 +640603,6 @@ struct StylePropertyAnimationSystem_Values_1_T_TransitionEventsFrameState_Rotate struct StylePropertyAnimationSystem_Values_1_T_TransitionEventsFrameState_Rotate___Fields fields; }; -struct StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate_ { - int64_t startTimeMs; - int32_t durationMs; - struct Func_2_Single_Single_ *easingCurve; - float easedProgress; - float reversingShorteningFactor; - bool isStarted; - int32_t delayMs; -}; - -struct StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate___Boxed { - struct StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate___Class *klass; - MonitorData *monitor; - struct StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate_ fields; -}; - struct StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate___Array { struct StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate___Array__Class *klass; MonitorData *monitor; @@ -633499,19 +640611,6 @@ struct StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate___Array { struct StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate_ vector[32]; }; -struct StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate_ { - struct Rotate_1 startValue; - struct Rotate_1 endValue; - struct Rotate_1 reversingAdjustedStartValue; - struct Rotate_1 currentValue; -}; - -struct StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate___Boxed { - struct StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate___Class *klass; - MonitorData *monitor; - struct StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate_ fields; -}; - struct StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate___Array { struct StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate___Array__Class *klass; MonitorData *monitor; @@ -633520,15 +640619,6 @@ struct StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate___Array { struct StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate_ vector[32]; }; -struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate_ { -}; - -struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate___Boxed { - struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate___Class *klass; - MonitorData *monitor; - struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate_ fields; -}; - struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate___Array { struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate___Array__Class *klass; MonitorData *monitor; @@ -633555,6 +640645,35 @@ struct Func_3_UnityEngine_UIElements_Rotate_UnityEngine_UIElements_Rotate_Boolea struct Func_3_UnityEngine_UIElements_Rotate_UnityEngine_UIElements_Rotate_Boolean___Fields fields; }; +struct StylePropertyAnimationSystem_Values_1_T_TimingData_Translate_ { + int64_t startTimeMs; + int32_t durationMs; + struct Func_2_Single_Single_ *easingCurve; + float easedProgress; + float reversingShorteningFactor; + bool isStarted; + int32_t delayMs; +}; + +struct StylePropertyAnimationSystem_Values_1_T_TimingData_Translate___Boxed { + struct StylePropertyAnimationSystem_Values_1_T_TimingData_Translate___Class *klass; + MonitorData *monitor; + struct StylePropertyAnimationSystem_Values_1_T_TimingData_Translate_ fields; +}; + +struct StylePropertyAnimationSystem_Values_1_T_StyleData_Translate_ { + struct Translate_1 startValue; + struct Translate_1 endValue; + struct Translate_1 reversingAdjustedStartValue; + struct Translate_1 currentValue; +}; + +struct StylePropertyAnimationSystem_Values_1_T_StyleData_Translate___Boxed { + struct StylePropertyAnimationSystem_Values_1_T_StyleData_Translate___Class *klass; + MonitorData *monitor; + struct StylePropertyAnimationSystem_Values_1_T_StyleData_Translate_ fields; +}; + struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Translate_StylePropertyAnimationSystem_Values_1_T_StyleData_Translate_ { struct VisualElement__Array *elements; struct StylePropertyId__Enum__Array *properties; @@ -633570,6 +640689,15 @@ struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSys struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_Translate_StylePropertyAnimationSystem_Values_1_T_StyleData_Translate_ fields; }; +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate_ { +}; + +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate___Boxed { + struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate___Class *klass; + MonitorData *monitor; + struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate_ fields; +}; + struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate_Translate_ { struct VisualElement__Array *elements; struct StylePropertyId__Enum__Array *properties; @@ -633623,22 +640751,6 @@ struct StylePropertyAnimationSystem_Values_1_T_TransitionEventsFrameState_Transl struct StylePropertyAnimationSystem_Values_1_T_TransitionEventsFrameState_Translate___Fields fields; }; -struct StylePropertyAnimationSystem_Values_1_T_TimingData_Translate_ { - int64_t startTimeMs; - int32_t durationMs; - struct Func_2_Single_Single_ *easingCurve; - float easedProgress; - float reversingShorteningFactor; - bool isStarted; - int32_t delayMs; -}; - -struct StylePropertyAnimationSystem_Values_1_T_TimingData_Translate___Boxed { - struct StylePropertyAnimationSystem_Values_1_T_TimingData_Translate___Class *klass; - MonitorData *monitor; - struct StylePropertyAnimationSystem_Values_1_T_TimingData_Translate_ fields; -}; - struct StylePropertyAnimationSystem_Values_1_T_TimingData_Translate___Array { struct StylePropertyAnimationSystem_Values_1_T_TimingData_Translate___Array__Class *klass; MonitorData *monitor; @@ -633647,19 +640759,6 @@ struct StylePropertyAnimationSystem_Values_1_T_TimingData_Translate___Array { struct StylePropertyAnimationSystem_Values_1_T_TimingData_Translate_ vector[32]; }; -struct StylePropertyAnimationSystem_Values_1_T_StyleData_Translate_ { - struct Translate_1 startValue; - struct Translate_1 endValue; - struct Translate_1 reversingAdjustedStartValue; - struct Translate_1 currentValue; -}; - -struct StylePropertyAnimationSystem_Values_1_T_StyleData_Translate___Boxed { - struct StylePropertyAnimationSystem_Values_1_T_StyleData_Translate___Class *klass; - MonitorData *monitor; - struct StylePropertyAnimationSystem_Values_1_T_StyleData_Translate_ fields; -}; - struct StylePropertyAnimationSystem_Values_1_T_StyleData_Translate___Array { struct StylePropertyAnimationSystem_Values_1_T_StyleData_Translate___Array__Class *klass; MonitorData *monitor; @@ -633668,15 +640767,6 @@ struct StylePropertyAnimationSystem_Values_1_T_StyleData_Translate___Array { struct StylePropertyAnimationSystem_Values_1_T_StyleData_Translate_ vector[32]; }; -struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate_ { -}; - -struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate___Boxed { - struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate___Class *klass; - MonitorData *monitor; - struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate_ fields; -}; - struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate___Array { struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate___Array__Class *klass; MonitorData *monitor; @@ -633703,6 +640793,35 @@ struct Func_3_UnityEngine_UIElements_Translate_UnityEngine_UIElements_Translate_ struct Func_3_UnityEngine_UIElements_Translate_UnityEngine_UIElements_Translate_Boolean___Fields fields; }; +struct StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin_ { + int64_t startTimeMs; + int32_t durationMs; + struct Func_2_Single_Single_ *easingCurve; + float easedProgress; + float reversingShorteningFactor; + bool isStarted; + int32_t delayMs; +}; + +struct StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin___Boxed { + struct StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin___Class *klass; + MonitorData *monitor; + struct StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin_ fields; +}; + +struct StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin_ { + struct TransformOrigin startValue; + struct TransformOrigin endValue; + struct TransformOrigin reversingAdjustedStartValue; + struct TransformOrigin currentValue; +}; + +struct StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin___Boxed { + struct StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin___Class *klass; + MonitorData *monitor; + struct StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin_ fields; +}; + struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin_StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin_ { struct VisualElement__Array *elements; struct StylePropertyId__Enum__Array *properties; @@ -633718,6 +640837,15 @@ struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSys struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin_StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin_ fields; }; +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin_ { +}; + +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin___Boxed { + struct StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin___Class *klass; + MonitorData *monitor; + struct StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin_ fields; +}; + struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin_TransformOrigin_ { struct VisualElement__Array *elements; struct StylePropertyId__Enum__Array *properties; @@ -633771,22 +640899,6 @@ struct StylePropertyAnimationSystem_Values_1_T_TransitionEventsFrameState_Transf struct StylePropertyAnimationSystem_Values_1_T_TransitionEventsFrameState_TransformOrigin___Fields fields; }; -struct StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin_ { - int64_t startTimeMs; - int32_t durationMs; - struct Func_2_Single_Single_ *easingCurve; - float easedProgress; - float reversingShorteningFactor; - bool isStarted; - int32_t delayMs; -}; - -struct StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin___Boxed { - struct StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin___Class *klass; - MonitorData *monitor; - struct StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin_ fields; -}; - struct StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin___Array { struct StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin___Array__Class *klass; MonitorData *monitor; @@ -633795,19 +640907,6 @@ struct StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin___Arra struct StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin_ vector[32]; }; -struct StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin_ { - struct TransformOrigin startValue; - struct TransformOrigin endValue; - struct TransformOrigin reversingAdjustedStartValue; - struct TransformOrigin currentValue; -}; - -struct StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin___Boxed { - struct StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin___Class *klass; - MonitorData *monitor; - struct StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin_ fields; -}; - struct StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin___Array { struct StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin___Array__Class *klass; MonitorData *monitor; @@ -633816,15 +640915,6 @@ struct StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin___Array struct StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin_ vector[32]; }; -struct StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin_ { -}; - -struct StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin___Boxed { - struct StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin___Class *klass; - MonitorData *monitor; - struct StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin_ fields; -}; - struct StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin___Array { struct StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin___Array__Class *klass; MonitorData *monitor; @@ -633877,6 +640967,23 @@ struct IEnumerator_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_ MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StylePropertyId_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_ { + int32_t hashCode; + int32_t next; + #if defined(_CPLUSPLUS_) + StylePropertyId__Enum key; + #else + int32_t key; + #endif + struct StylePropertyAnimationSystem_Values *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StylePropertyId_UnityEngine_UIElements_StylePropertyAnimationSystem_Values___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StylePropertyId_UnityEngine_UIElements_StylePropertyAnimationSystem_Values___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StylePropertyId_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_UIElements_StyleSheets_StylePropertyId_UnityEngine_UIElements_StylePropertyAnimationSystem_Values___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StylePropertyId_UnityEngine_UIElements_StylePropertyAnimationSystem_Values___Array *_entries; @@ -633896,23 +641003,6 @@ struct Dictionary_2_UnityEngine_UIElements_StyleSheets_StylePropertyId_UnityEngi struct Dictionary_2_UnityEngine_UIElements_StyleSheets_StylePropertyId_UnityEngine_UIElements_StylePropertyAnimationSystem_Values___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StylePropertyId_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_ { - int32_t hashCode; - int32_t next; - #if defined(_CPLUSPLUS_) - StylePropertyId__Enum key; - #else - int32_t key; - #endif - struct StylePropertyAnimationSystem_Values *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StylePropertyId_UnityEngine_UIElements_StylePropertyAnimationSystem_Values___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StylePropertyId_UnityEngine_UIElements_StylePropertyAnimationSystem_Values___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StylePropertyId_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StylePropertyId_UnityEngine_UIElements_StylePropertyAnimationSystem_Values___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StylePropertyId_UnityEngine_UIElements_StylePropertyAnimationSystem_Values___Array__Class *klass; MonitorData *monitor; @@ -634255,6 +641345,21 @@ struct PooledObject_1_System_Collections_Generic_Queue_1___Class { struct PooledObject_1_System_Collections_Generic_Queue_1___VTable vtable; }; +struct Queue_1_UnityEngine_UIElements_EventBase__1__VTable { +}; + +struct Queue_1_UnityEngine_UIElements_EventBase__1__StaticFields { +}; + +struct Queue_1_UnityEngine_UIElements_EventBase__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Queue_1_UnityEngine_UIElements_EventBase__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Queue_1_UnityEngine_UIElements_EventBase__1__VTable vtable; +}; + struct ObjectPool_1_System_Collections_Generic_Queue_1__1__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -634561,6 +641666,21 @@ struct ICollection_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Transit struct ICollection_1_UnityEngine_UIElements_StylePropertyAnimationSystem_TransitionState___VTable vtable; }; +struct StylePropertyAnimationSystem_TransitionState___VTable { +}; + +struct StylePropertyAnimationSystem_TransitionState___StaticFields { +}; + +struct StylePropertyAnimationSystem_TransitionState___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StylePropertyAnimationSystem_TransitionState___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StylePropertyAnimationSystem_TransitionState___VTable vtable; +}; + struct KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_UnityEngine_UIElements_StylePropertyAnimationSystem_TransitionState___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -636378,6 +643498,21 @@ struct Func_3_UnityEngine_UIElements_Background_UnityEngine_UIElements_Backgroun struct Func_3_UnityEngine_UIElements_Background_UnityEngine_UIElements_Background_Boolean___VTable vtable; }; +struct Background___VTable { +}; + +struct Background___StaticFields { +}; + +struct Background___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Background___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Background___VTable vtable; +}; + struct StylePropertyAnimationSystem_Values_1_Background___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -636673,6 +643808,21 @@ struct Func_3_UnityEngine_UIElements_FontDefinition_UnityEngine_UIElements_FontD struct Func_3_UnityEngine_UIElements_FontDefinition_UnityEngine_UIElements_FontDefinition_Boolean___VTable vtable; }; +struct FontDefinition___VTable { +}; + +struct FontDefinition___StaticFields { +}; + +struct FontDefinition___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct FontDefinition___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct FontDefinition___VTable vtable; +}; + struct StylePropertyAnimationSystem_Values_1_FontDefinition___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -636968,6 +644118,21 @@ struct Func_3_UnityEngine_Font_UnityEngine_Font_Boolean___Class { struct Func_3_UnityEngine_Font_UnityEngine_Font_Boolean___VTable vtable; }; +struct Font___VTable { +}; + +struct Font___StaticFields { +}; + +struct Font___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Font___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Font___VTable vtable; +}; + struct StylePropertyAnimationSystem_Values_1_UnityEngine_Font___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -637263,6 +644428,21 @@ struct Func_3_UnityEngine_UIElements_TextShadow_UnityEngine_UIElements_TextShado struct Func_3_UnityEngine_UIElements_TextShadow_UnityEngine_UIElements_TextShadow_Boolean___VTable vtable; }; +struct TextShadow___VTable { +}; + +struct TextShadow___StaticFields { +}; + +struct TextShadow___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TextShadow___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TextShadow___VTable vtable; +}; + struct StylePropertyAnimationSystem_Values_1_TextShadow___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -637528,6 +644708,21 @@ struct Func_3_UnityEngine_UIElements_Scale_UnityEngine_UIElements_Scale_Boolean_ struct Func_3_UnityEngine_UIElements_Scale_UnityEngine_UIElements_Scale_Boolean___VTable vtable; }; +struct Scale___VTable { +}; + +struct Scale___StaticFields { +}; + +struct Scale___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Scale___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Scale___VTable vtable; +}; + struct StylePropertyAnimationSystem_Values_1_Scale___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -637793,6 +644988,21 @@ struct Func_3_UnityEngine_UIElements_Rotate_UnityEngine_UIElements_Rotate_Boolea struct Func_3_UnityEngine_UIElements_Rotate_UnityEngine_UIElements_Rotate_Boolean___VTable vtable; }; +struct Rotate___VTable { +}; + +struct Rotate___StaticFields { +}; + +struct Rotate___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Rotate___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Rotate___VTable vtable; +}; + struct StylePropertyAnimationSystem_Values_1_Rotate___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -638626,6 +645836,21 @@ struct ICollection_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_ struct ICollection_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values___VTable vtable; }; +struct StylePropertyAnimationSystem_Values___VTable { +}; + +struct StylePropertyAnimationSystem_Values___StaticFields { +}; + +struct StylePropertyAnimationSystem_Values___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StylePropertyAnimationSystem_Values___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StylePropertyAnimationSystem_Values___VTable vtable; +}; + struct KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StylePropertyId_UnityEngine_UIElements_StylePropertyAnimationSystem_Values___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -639810,19 +647035,6 @@ struct UIDocumentList { struct UIDocumentList__Fields fields; }; -struct __declspec(align(8)) List_1_UnityEngine_UIElements_UIDocument___Fields { - struct UIDocument__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_UIElements_UIDocument_ { - struct List_1_UnityEngine_UIElements_UIDocument___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_UIElements_UIDocument___Fields fields; -}; - struct UIDocument__Fields { struct MonoBehaviour__Fields _; int32_t m_UIDocumentCreationIndex; @@ -639843,6 +647055,19 @@ struct UIDocument { struct UIDocument__Fields fields; }; +struct __declspec(align(8)) List_1_UnityEngine_UIElements_UIDocument___Fields { + struct UIDocument__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_UIElements_UIDocument_ { + struct List_1_UnityEngine_UIElements_UIDocument___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_UIElements_UIDocument___Fields fields; +}; + struct UIDocument__Array { struct UIDocument__Array__Class *klass; MonitorData *monitor; @@ -639963,6 +647188,18 @@ struct SpriteAsset { struct SpriteAsset__Fields fields; }; +struct SpriteCharacter__Fields { + struct TextElement__Fields _; + struct String *m_Name; + int32_t m_HashCode; +}; + +struct SpriteCharacter { + struct SpriteCharacter__Class *klass; + MonitorData *monitor; + struct SpriteCharacter__Fields fields; +}; + struct __declspec(align(8)) List_1_UnityEngine_TextCore_Text_SpriteCharacter___Fields { struct SpriteCharacter__Array *_items; int32_t _size; @@ -639976,18 +647213,6 @@ struct List_1_UnityEngine_TextCore_Text_SpriteCharacter_ { struct List_1_UnityEngine_TextCore_Text_SpriteCharacter___Fields fields; }; -struct SpriteCharacter__Fields { - struct TextElement__Fields _; - struct String *m_Name; - int32_t m_HashCode; -}; - -struct SpriteCharacter { - struct SpriteCharacter__Class *klass; - MonitorData *monitor; - struct SpriteCharacter__Fields fields; -}; - struct SpriteCharacter__Array { struct SpriteCharacter__Array__Class *klass; MonitorData *monitor; @@ -640001,6 +647226,19 @@ struct IEnumerator_1_UnityEngine_TextCore_Text_SpriteCharacter_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_Text_SpriteCharacter_ { + int32_t hashCode; + int32_t next; + uint32_t key; + struct SpriteCharacter *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_Text_SpriteCharacter___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_Text_SpriteCharacter___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_Text_SpriteCharacter_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_UInt32_UnityEngine_TextCore_Text_SpriteCharacter___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_Text_SpriteCharacter___Array *_entries; @@ -640020,19 +647258,6 @@ struct Dictionary_2_System_UInt32_UnityEngine_TextCore_Text_SpriteCharacter_ { struct Dictionary_2_System_UInt32_UnityEngine_TextCore_Text_SpriteCharacter___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_Text_SpriteCharacter_ { - int32_t hashCode; - int32_t next; - uint32_t key; - struct SpriteCharacter *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_Text_SpriteCharacter___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_Text_SpriteCharacter___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_Text_SpriteCharacter_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_Text_SpriteCharacter___Array { struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_Text_SpriteCharacter___Array__Class *klass; MonitorData *monitor; @@ -640095,6 +647320,17 @@ struct IEnumerable_1_UnityEngine_TextCore_Text_SpriteCharacter_ { MonitorData *monitor; }; +struct SpriteGlyph__Fields { + struct Glyph__Fields _; + struct Sprite *sprite; +}; + +struct SpriteGlyph { + struct SpriteGlyph__Class *klass; + MonitorData *monitor; + struct SpriteGlyph__Fields fields; +}; + struct __declspec(align(8)) List_1_UnityEngine_TextCore_Text_SpriteGlyph___Fields { struct SpriteGlyph__Array *_items; int32_t _size; @@ -640108,17 +647344,6 @@ struct List_1_UnityEngine_TextCore_Text_SpriteGlyph_ { struct List_1_UnityEngine_TextCore_Text_SpriteGlyph___Fields fields; }; -struct SpriteGlyph__Fields { - struct Glyph__Fields _; - struct Sprite *sprite; -}; - -struct SpriteGlyph { - struct SpriteGlyph__Class *klass; - MonitorData *monitor; - struct SpriteGlyph__Fields fields; -}; - struct SpriteGlyph__Array { struct SpriteGlyph__Array__Class *klass; MonitorData *monitor; @@ -640132,6 +647357,19 @@ struct IEnumerator_1_UnityEngine_TextCore_Text_SpriteGlyph_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_Text_SpriteGlyph_ { + int32_t hashCode; + int32_t next; + uint32_t key; + struct SpriteGlyph *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_Text_SpriteGlyph___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_Text_SpriteGlyph___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_Text_SpriteGlyph_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_UInt32_UnityEngine_TextCore_Text_SpriteGlyph___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_Text_SpriteGlyph___Array *_entries; @@ -640151,19 +647389,6 @@ struct Dictionary_2_System_UInt32_UnityEngine_TextCore_Text_SpriteGlyph_ { struct Dictionary_2_System_UInt32_UnityEngine_TextCore_Text_SpriteGlyph___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_Text_SpriteGlyph_ { - int32_t hashCode; - int32_t next; - uint32_t key; - struct SpriteGlyph *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_Text_SpriteGlyph___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_Text_SpriteGlyph___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_Text_SpriteGlyph_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_Text_SpriteGlyph___Array { struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_TextCore_Text_SpriteGlyph___Array__Class *klass; MonitorData *monitor; @@ -640264,19 +647489,6 @@ struct TextStyleSheet { struct TextStyleSheet__Fields fields; }; -struct __declspec(align(8)) List_1_UnityEngine_TextCore_Text_TextStyle___Fields { - struct TextStyle__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_TextCore_Text_TextStyle_ { - struct List_1_UnityEngine_TextCore_Text_TextStyle___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_TextCore_Text_TextStyle___Fields fields; -}; - struct __declspec(align(8)) TextStyle__Fields { struct String *m_Name; int32_t m_HashCode; @@ -640294,6 +647506,19 @@ struct TextStyle { struct TextStyle__Fields fields; }; +struct __declspec(align(8)) List_1_UnityEngine_TextCore_Text_TextStyle___Fields { + struct TextStyle__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_TextCore_Text_TextStyle_ { + struct List_1_UnityEngine_TextCore_Text_TextStyle___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_TextCore_Text_TextStyle___Fields fields; +}; + struct TextStyle__Array { struct TextStyle__Array__Class *klass; MonitorData *monitor; @@ -640307,6 +647532,19 @@ struct IEnumerator_1_UnityEngine_TextCore_Text_TextStyle_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_TextStyle_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct TextStyle *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_TextStyle___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_TextStyle___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_TextStyle_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextStyle___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_TextStyle___Array *_entries; @@ -640326,19 +647564,6 @@ struct Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextStyle_ { struct Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextStyle___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_TextStyle_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct TextStyle *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_TextStyle___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_TextStyle___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_TextStyle_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_TextStyle___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_TextStyle___Array__Class *klass; MonitorData *monitor; @@ -640414,6 +647639,19 @@ struct UnicodeLineBreakingRules { struct UnicodeLineBreakingRules__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_FontAsset_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct FontAsset *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_FontAsset___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_FontAsset___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_FontAsset_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_UnityEngine_TextCore_Text_FontAsset___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_FontAsset___Array *_entries; @@ -640433,19 +647671,6 @@ struct Dictionary_2_System_Int32_UnityEngine_TextCore_Text_FontAsset_ { struct Dictionary_2_System_Int32_UnityEngine_TextCore_Text_FontAsset___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_FontAsset_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct FontAsset *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_FontAsset___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_FontAsset___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_FontAsset_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_FontAsset___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_FontAsset___Array__Class *klass; MonitorData *monitor; @@ -640508,6 +647733,17 @@ struct IEnumerable_1_UnityEngine_TextCore_Text_FontAsset_ { MonitorData *monitor; }; +struct TextSettings_FontReferenceMap { + struct Font *font; + struct FontAsset *fontAsset; +}; + +struct TextSettings_FontReferenceMap__Boxed { + struct TextSettings_FontReferenceMap__Class *klass; + MonitorData *monitor; + struct TextSettings_FontReferenceMap fields; +}; + struct __declspec(align(8)) List_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap___Fields { struct TextSettings_FontReferenceMap__Array *_items; int32_t _size; @@ -640521,17 +647757,6 @@ struct List_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap_ { struct List_1_UnityEngine_TextCore_Text_TextSettings_FontReferenceMap___Fields fields; }; -struct TextSettings_FontReferenceMap { - struct Font *font; - struct FontAsset *fontAsset; -}; - -struct TextSettings_FontReferenceMap__Boxed { - struct TextSettings_FontReferenceMap__Class *klass; - MonitorData *monitor; - struct TextSettings_FontReferenceMap fields; -}; - struct TextSettings_FontReferenceMap__Array { struct TextSettings_FontReferenceMap__Array__Class *klass; MonitorData *monitor; @@ -641186,6 +648411,21 @@ struct ICollection_1_UnityEngine_TextCore_Text_SpriteCharacter___Class { struct ICollection_1_UnityEngine_TextCore_Text_SpriteCharacter___VTable vtable; }; +struct SpriteCharacter___VTable { +}; + +struct SpriteCharacter___StaticFields { +}; + +struct SpriteCharacter___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SpriteCharacter___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SpriteCharacter___VTable vtable; +}; + struct KeyValuePair_2_System_UInt32_UnityEngine_TextCore_Text_SpriteCharacter___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -641534,6 +648774,21 @@ struct ICollection_1_UnityEngine_TextCore_Text_SpriteGlyph___Class { struct ICollection_1_UnityEngine_TextCore_Text_SpriteGlyph___VTable vtable; }; +struct SpriteGlyph___VTable { +}; + +struct SpriteGlyph___StaticFields { +}; + +struct SpriteGlyph___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SpriteGlyph___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SpriteGlyph___VTable vtable; +}; + struct KeyValuePair_2_System_UInt32_UnityEngine_TextCore_Text_SpriteGlyph___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -641985,6 +649240,21 @@ struct ICollection_1_UnityEngine_TextCore_Text_TextStyle___Class { struct ICollection_1_UnityEngine_TextCore_Text_TextStyle___VTable vtable; }; +struct TextStyle___VTable { +}; + +struct TextStyle___StaticFields { +}; + +struct TextStyle___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TextStyle___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TextStyle___VTable vtable; +}; + struct KeyValuePair_2_System_Int32_UnityEngine_TextCore_Text_TextStyle___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -642273,6 +649543,21 @@ struct ICollection_1_UnityEngine_TextCore_Text_FontAsset___Class { struct ICollection_1_UnityEngine_TextCore_Text_FontAsset___VTable vtable; }; +struct FontAsset___VTable { +}; + +struct FontAsset___StaticFields { +}; + +struct FontAsset___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct FontAsset___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct FontAsset___VTable vtable; +}; + struct KeyValuePair_2_System_Int32_UnityEngine_TextCore_Text_FontAsset___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -642911,6 +650196,19 @@ struct IEnumerator_1_UnityEngine_UIElements_IMGUIContainer_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_Panel_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct Panel *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_Panel___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_Panel___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_Panel_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_UnityEngine_UIElements_Panel___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_Panel___Array *_entries; @@ -642930,19 +650228,6 @@ struct Dictionary_2_System_Int32_UnityEngine_UIElements_Panel_ { struct Dictionary_2_System_Int32_UnityEngine_UIElements_Panel___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_Panel_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct Panel *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_Panel___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_Panel___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_Panel_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_Panel___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_Panel___Array__Class *klass; MonitorData *monitor; @@ -643184,6 +650469,21 @@ struct ICollection_1_UnityEngine_UIElements_Panel___Class { struct ICollection_1_UnityEngine_UIElements_Panel___VTable vtable; }; +struct Panel___VTable { +}; + +struct Panel___StaticFields { +}; + +struct Panel___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Panel___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Panel___VTable vtable; +}; + struct KeyValuePair_2_System_Int32_UnityEngine_UIElements_Panel___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -644134,19 +651434,6 @@ struct VisualElementFocusRing { struct VisualElementFocusRing__Fields fields; }; -struct __declspec(align(8)) List_1_UnityEngine_UIElements_VisualElementFocusRing_FocusRingRecord___Fields { - struct VisualElementFocusRing_FocusRingRecord__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_UIElements_VisualElementFocusRing_FocusRingRecord_ { - struct List_1_UnityEngine_UIElements_VisualElementFocusRing_FocusRingRecord___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_UIElements_VisualElementFocusRing_FocusRingRecord___Fields fields; -}; - struct __declspec(align(8)) VisualElementFocusRing_FocusRingRecord__Fields { int32_t m_AutoIndex; struct Focusable *m_Focusable; @@ -644160,6 +651447,19 @@ struct VisualElementFocusRing_FocusRingRecord { struct VisualElementFocusRing_FocusRingRecord__Fields fields; }; +struct __declspec(align(8)) List_1_UnityEngine_UIElements_VisualElementFocusRing_FocusRingRecord___Fields { + struct VisualElementFocusRing_FocusRingRecord__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_UIElements_VisualElementFocusRing_FocusRingRecord_ { + struct List_1_UnityEngine_UIElements_VisualElementFocusRing_FocusRingRecord___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_UIElements_VisualElementFocusRing_FocusRingRecord___Fields fields; +}; + struct VisualElementFocusRing_FocusRingRecord__Array { struct VisualElementFocusRing_FocusRingRecord__Array__Class *klass; MonitorData *monitor; @@ -644392,6 +651692,18 @@ struct VisualTreeBindingsUpdater { struct VisualTreeBindingsUpdater__Fields fields; }; +struct HashSet_1_T_Slot_UnityEngine_UIElements_VisualElement_ { + int32_t hashCode; + int32_t next; + struct VisualElement *value; +}; + +struct HashSet_1_T_Slot_UnityEngine_UIElements_VisualElement___Boxed { + struct HashSet_1_T_Slot_UnityEngine_UIElements_VisualElement___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_UnityEngine_UIElements_VisualElement_ fields; +}; + struct __declspec(align(8)) HashSet_1_UnityEngine_UIElements_VisualElement___Fields { struct Int32__Array *_buckets; struct HashSet_1_T_Slot_UnityEngine_UIElements_VisualElement___Array *_slots; @@ -644409,18 +651721,6 @@ struct HashSet_1_UnityEngine_UIElements_VisualElement_ { struct HashSet_1_UnityEngine_UIElements_VisualElement___Fields fields; }; -struct HashSet_1_T_Slot_UnityEngine_UIElements_VisualElement_ { - int32_t hashCode; - int32_t next; - struct VisualElement *value; -}; - -struct HashSet_1_T_Slot_UnityEngine_UIElements_VisualElement___Boxed { - struct HashSet_1_T_Slot_UnityEngine_UIElements_VisualElement___Class *klass; - MonitorData *monitor; - struct HashSet_1_T_Slot_UnityEngine_UIElements_VisualElement_ fields; -}; - struct HashSet_1_T_Slot_UnityEngine_UIElements_VisualElement___Array { struct HashSet_1_T_Slot_UnityEngine_UIElements_VisualElement___Array__Class *klass; MonitorData *monitor; @@ -644743,6 +652043,36 @@ struct BaseVisualTreeHierarchyTrackerUpdater__Class { struct BaseVisualTreeHierarchyTrackerUpdater__VTable vtable; }; +struct StyleVariableContext___VTable { +}; + +struct StyleVariableContext___StaticFields { +}; + +struct StyleVariableContext___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StyleVariableContext___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StyleVariableContext___VTable vtable; +}; + +struct ComputedTransitionProperty___VTable { +}; + +struct ComputedTransitionProperty___StaticFields { +}; + +struct ComputedTransitionProperty___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ComputedTransitionProperty___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ComputedTransitionProperty___VTable vtable; +}; + struct VisualTreeStyleUpdater__Fields { struct BaseVisualTreeUpdater__Fields _; struct HashSet_1_UnityEngine_UIElements_VisualElement_ *m_ApplyStyleUpdateList; @@ -644776,6 +652106,18 @@ struct VisualTreeStyleUpdaterTraversal { struct VisualTreeStyleUpdaterTraversal__Fields fields; }; +struct SelectorMatchRecord { + struct StyleSheet *sheet; + int32_t styleSheetIndexInStack; + struct StyleComplexSelector *complexSelector; +}; + +struct SelectorMatchRecord__Boxed { + struct SelectorMatchRecord__Class *klass; + MonitorData *monitor; + struct SelectorMatchRecord fields; +}; + struct __declspec(align(8)) List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord___Fields { struct SelectorMatchRecord__Array *_items; int32_t _size; @@ -644789,18 +652131,6 @@ struct List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord_ { struct List_1_UnityEngine_UIElements_StyleSheets_SelectorMatchRecord___Fields fields; }; -struct SelectorMatchRecord { - struct StyleSheet *sheet; - int32_t styleSheetIndexInStack; - struct StyleComplexSelector *complexSelector; -}; - -struct SelectorMatchRecord__Boxed { - struct SelectorMatchRecord__Class *klass; - MonitorData *monitor; - struct SelectorMatchRecord fields; -}; - struct SelectorMatchRecord__Array { struct SelectorMatchRecord__Array__Class *klass; MonitorData *monitor; @@ -645356,19 +652686,6 @@ struct SerializedVirtualizationData { struct SerializedVirtualizationData__Fields fields; }; -struct __declspec(align(8)) List_1_UnityEngine_UIElements_ReusableCollectionItem___Fields { - struct ReusableCollectionItem__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_UIElements_ReusableCollectionItem_ { - struct List_1_UnityEngine_UIElements_ReusableCollectionItem___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_UIElements_ReusableCollectionItem___Fields fields; -}; - struct __declspec(align(8)) ReusableCollectionItem__Fields { struct VisualElement *_bindableElement_k__BackingField; struct ValueAnimation_1_StyleValues_ *_animator_k__BackingField; @@ -645385,6 +652702,19 @@ struct ReusableCollectionItem { struct ReusableCollectionItem__Fields fields; }; +struct __declspec(align(8)) List_1_UnityEngine_UIElements_ReusableCollectionItem___Fields { + struct ReusableCollectionItem__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_UIElements_ReusableCollectionItem_ { + struct List_1_UnityEngine_UIElements_ReusableCollectionItem___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_UIElements_ReusableCollectionItem___Fields fields; +}; + struct Action_1_UnityEngine_UIElements_ReusableCollectionItem___Fields { struct MulticastDelegate__Fields _; }; @@ -645840,25 +653170,6 @@ struct TextEditorEngine { struct TextEditorEngine__Fields fields; }; -struct __declspec(align(8)) Dictionary_2_UnityEngine_Event_UnityEngine_TextEditor_TextEditOp___Fields { - struct Int32__Array *_buckets; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Event_UnityEngine_TextEditor_TextEditOp___Array *_entries; - int32_t _count; - int32_t _freeList; - int32_t _freeCount; - int32_t _version; - struct IEqualityComparer_1_UnityEngine_Event_ *_comparer; - struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_Event_UnityEngine_TextEditor_TextEditOp_ *_keys; - struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_Event_UnityEngine_TextEditor_TextEditOp_ *_values; - struct Object *_syncRoot; -}; - -struct Dictionary_2_UnityEngine_Event_UnityEngine_TextEditor_TextEditOp_ { - struct Dictionary_2_UnityEngine_Event_UnityEngine_TextEditor_TextEditOp___Class *klass; - MonitorData *monitor; - struct Dictionary_2_UnityEngine_Event_UnityEngine_TextEditor_TextEditOp___Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class TextEditor_TextEditOp__Enum : int32_t { MoveLeft = 0x00000000, @@ -645995,6 +653306,25 @@ struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Event_UnityEngine_TextEditor_T struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Event_UnityEngine_TextEditor_TextEditOp_ fields; }; +struct __declspec(align(8)) Dictionary_2_UnityEngine_Event_UnityEngine_TextEditor_TextEditOp___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Event_UnityEngine_TextEditor_TextEditOp___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_UnityEngine_Event_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_Event_UnityEngine_TextEditor_TextEditOp_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_Event_UnityEngine_TextEditor_TextEditOp_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_UnityEngine_Event_UnityEngine_TextEditor_TextEditOp_ { + struct Dictionary_2_UnityEngine_Event_UnityEngine_TextEditor_TextEditOp___Class *klass; + MonitorData *monitor; + struct Dictionary_2_UnityEngine_Event_UnityEngine_TextEditor_TextEditOp___Fields fields; +}; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Event_UnityEngine_TextEditor_TextEditOp___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Event_UnityEngine_TextEditor_TextEditOp___Array__Class *klass; MonitorData *monitor; @@ -647827,6 +655157,21 @@ struct ICollection_1_UnityEngine_TextEditor_TextEditOp___Class { struct ICollection_1_UnityEngine_TextEditor_TextEditOp___VTable vtable; }; +struct TextEditor_TextEditOp___VTable { +}; + +struct TextEditor_TextEditOp___StaticFields { +}; + +struct TextEditor_TextEditOp___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TextEditor_TextEditOp___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TextEditor_TextEditOp___VTable vtable; +}; + struct KeyValuePair_2_UnityEngine_Event_UnityEngine_TextEditor_TextEditOp___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -649837,6 +657182,21 @@ struct ICollectionDragAndDropController__Class { struct ICollectionDragAndDropController__VTable vtable; }; +struct ListViewDragger_DragPosition___VTable { +}; + +struct ListViewDragger_DragPosition___StaticFields { +}; + +struct ListViewDragger_DragPosition___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ListViewDragger_DragPosition___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ListViewDragger_DragPosition___VTable vtable; +}; + struct ListViewDragger__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -650898,25 +658258,6 @@ struct TreeViewController { struct TreeViewController__Fields fields; }; -struct __declspec(align(8)) Dictionary_2_System_Int32_UnityEngine_UIElements_TreeItem___Fields { - struct Int32__Array *_buckets; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_TreeItem___Array *_entries; - int32_t _count; - int32_t _freeList; - int32_t _freeCount; - int32_t _version; - struct IEqualityComparer_1_System_Int32_ *_comparer; - struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32_UnityEngine_UIElements_TreeItem_ *_keys; - struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_UnityEngine_UIElements_TreeItem_ *_values; - struct Object *_syncRoot; -}; - -struct Dictionary_2_System_Int32_UnityEngine_UIElements_TreeItem_ { - struct Dictionary_2_System_Int32_UnityEngine_UIElements_TreeItem___Class *klass; - MonitorData *monitor; - struct Dictionary_2_System_Int32_UnityEngine_UIElements_TreeItem___Fields fields; -}; - struct TreeItem { int32_t _id_k__BackingField; int32_t _parentId_k__BackingField; @@ -650942,6 +658283,25 @@ struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_TreeIt struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_TreeItem_ fields; }; +struct __declspec(align(8)) Dictionary_2_System_Int32_UnityEngine_UIElements_TreeItem___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_TreeItem___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_System_Int32_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32_UnityEngine_UIElements_TreeItem_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_UnityEngine_UIElements_TreeItem_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_System_Int32_UnityEngine_UIElements_TreeItem_ { + struct Dictionary_2_System_Int32_UnityEngine_UIElements_TreeItem___Class *klass; + MonitorData *monitor; + struct Dictionary_2_System_Int32_UnityEngine_UIElements_TreeItem___Fields fields; +}; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_TreeItem___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_TreeItem___Array__Class *klass; MonitorData *monitor; @@ -651017,6 +658377,17 @@ struct IEnumerable_1_UnityEngine_UIElements_TreeItem_ { MonitorData *monitor; }; +struct TreeViewItemWrapper { + struct TreeItem item; + int32_t depth; +}; + +struct TreeViewItemWrapper__Boxed { + struct TreeViewItemWrapper__Class *klass; + MonitorData *monitor; + struct TreeViewItemWrapper fields; +}; + struct __declspec(align(8)) List_1_UnityEngine_UIElements_TreeViewItemWrapper___Fields { struct TreeViewItemWrapper__Array *_items; int32_t _size; @@ -651030,17 +658401,6 @@ struct List_1_UnityEngine_UIElements_TreeViewItemWrapper_ { struct List_1_UnityEngine_UIElements_TreeViewItemWrapper___Fields fields; }; -struct TreeViewItemWrapper { - struct TreeItem item; - int32_t depth; -}; - -struct TreeViewItemWrapper__Boxed { - struct TreeViewItemWrapper__Class *klass; - MonitorData *monitor; - struct TreeViewItemWrapper fields; -}; - struct TreeViewItemWrapper__Array { struct TreeViewItemWrapper__Array__Class *klass; MonitorData *monitor; @@ -651237,6 +658597,21 @@ struct ICollection_1_UnityEngine_UIElements_TreeItem___Class { struct ICollection_1_UnityEngine_UIElements_TreeItem___VTable vtable; }; +struct TreeItem___VTable { +}; + +struct TreeItem___StaticFields { +}; + +struct TreeItem___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TreeItem___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TreeItem___VTable vtable; +}; + struct KeyValuePair_2_System_Int32_UnityEngine_UIElements_TreeItem___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -651628,6 +659003,21 @@ struct TreeView__Class { struct TreeView__VTable vtable; }; +struct List_1_UnityEngine_UIElements_TreeViewItemWrapper__1__VTable { +}; + +struct List_1_UnityEngine_UIElements_TreeViewItemWrapper__1__StaticFields { +}; + +struct List_1_UnityEngine_UIElements_TreeViewItemWrapper__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_UIElements_TreeViewItemWrapper__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_UIElements_TreeViewItemWrapper__1__VTable vtable; +}; + struct ReusableListViewItem__Fields { struct ReusableCollectionItem__Fields _; struct VisualElement *m_Container; @@ -651913,6 +659303,21 @@ struct BaseVerticalCollectionView_c_DisplayClass165_0__Class { struct BaseVerticalCollectionView_c_DisplayClass165_0__VTable vtable; }; +struct BaseVerticalCollectionView_c_DisplayClass165_0___VTable { +}; + +struct BaseVerticalCollectionView_c_DisplayClass165_0___StaticFields { +}; + +struct BaseVerticalCollectionView_c_DisplayClass165_0___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BaseVerticalCollectionView_c_DisplayClass165_0___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BaseVerticalCollectionView_c_DisplayClass165_0___VTable vtable; +}; + struct __declspec(align(8)) BaseVerticalCollectionView_c_DisplayClass146_0__Fields { int32_t id; }; @@ -653620,19 +661025,6 @@ struct GenericDropdownMenu { struct GenericDropdownMenu__Fields fields; }; -struct __declspec(align(8)) List_1_UnityEngine_UIElements_GenericDropdownMenu_MenuItem___Fields { - struct GenericDropdownMenu_MenuItem__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_UIElements_GenericDropdownMenu_MenuItem_ { - struct List_1_UnityEngine_UIElements_GenericDropdownMenu_MenuItem___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_UIElements_GenericDropdownMenu_MenuItem___Fields fields; -}; - struct __declspec(align(8)) GenericDropdownMenu_MenuItem__Fields { struct String *name; struct VisualElement *element; @@ -653646,6 +661038,19 @@ struct GenericDropdownMenu_MenuItem { struct GenericDropdownMenu_MenuItem__Fields fields; }; +struct __declspec(align(8)) List_1_UnityEngine_UIElements_GenericDropdownMenu_MenuItem___Fields { + struct GenericDropdownMenu_MenuItem__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_UIElements_GenericDropdownMenu_MenuItem_ { + struct List_1_UnityEngine_UIElements_GenericDropdownMenu_MenuItem___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_UIElements_GenericDropdownMenu_MenuItem___Fields fields; +}; + struct GenericDropdownMenu_MenuItem__Array { struct GenericDropdownMenu_MenuItem__Array__Class *klass; MonitorData *monitor; @@ -654063,6 +661468,21 @@ struct GenericDropdownMenu_c_DisplayClass27_0__Class { struct GenericDropdownMenu_c_DisplayClass27_0__VTable vtable; }; +struct GenericDropdownMenu_c_DisplayClass27_0___VTable { +}; + +struct GenericDropdownMenu_c_DisplayClass27_0___StaticFields { +}; + +struct GenericDropdownMenu_c_DisplayClass27_0___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GenericDropdownMenu_c_DisplayClass27_0___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GenericDropdownMenu_c_DisplayClass27_0___VTable vtable; +}; + struct GroupBox__Fields { struct BindableElement__Fields _; struct Label *m_TitleLabel; @@ -661242,6 +668662,11 @@ struct IEnumerable_1_UnityEngine_UIElements_ITreeViewItem_ { MonitorData *monitor; }; +struct ITreeViewItem { + struct ITreeViewItem__Class *klass; + MonitorData *monitor; +}; + struct __declspec(align(8)) List_1_UnityEngine_UIElements_ITreeViewItem___Fields { struct ITreeViewItem__Array *_items; int32_t _size; @@ -661255,11 +668680,6 @@ struct List_1_UnityEngine_UIElements_ITreeViewItem_ { struct List_1_UnityEngine_UIElements_ITreeViewItem___Fields fields; }; -struct ITreeViewItem { - struct ITreeViewItem__Class *klass; - MonitorData *monitor; -}; - struct ITreeViewItem__Array { struct ITreeViewItem__Array__Class *klass; MonitorData *monitor; @@ -661288,6 +668708,17 @@ struct IList_1_UnityEngine_UIElements_ITreeViewItem_ { MonitorData *monitor; }; +struct TreeView_TreeViewItemWrapper { + int32_t depth; + struct ITreeViewItem *item; +}; + +struct TreeView_TreeViewItemWrapper__Boxed { + struct TreeView_TreeViewItemWrapper__Class *klass; + MonitorData *monitor; + struct TreeView_TreeViewItemWrapper fields; +}; + struct __declspec(align(8)) List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper___Fields { struct TreeView_TreeViewItemWrapper__Array *_items; int32_t _size; @@ -661301,17 +668732,6 @@ struct List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper_ { struct List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper___Fields fields; }; -struct TreeView_TreeViewItemWrapper { - int32_t depth; - struct ITreeViewItem *item; -}; - -struct TreeView_TreeViewItemWrapper__Boxed { - struct TreeView_TreeViewItemWrapper__Class *klass; - MonitorData *monitor; - struct TreeView_TreeViewItemWrapper fields; -}; - struct TreeView_TreeViewItemWrapper__Array { struct TreeView_TreeViewItemWrapper__Array__Class *klass; MonitorData *monitor; @@ -661738,6 +669158,21 @@ struct TreeView_1__Class { struct TreeView_1__VTable vtable; }; +struct List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__1__VTable { +}; + +struct List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__1__StaticFields { +}; + +struct List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_UIElements_TreeView_TreeViewItemWrapper__1__VTable vtable; +}; + struct __declspec(align(8)) UxmlFactory_2_TreeView_TreeView_UxmlTraits___Fields { struct TreeView_UxmlTraits *m_Traits; }; @@ -662418,6 +669853,17 @@ struct InternalTreeView { struct InternalTreeView__Fields fields; }; +struct InternalTreeView_TreeViewItemWrapper { + int32_t depth; + struct ITreeViewItem *item; +}; + +struct InternalTreeView_TreeViewItemWrapper__Boxed { + struct InternalTreeView_TreeViewItemWrapper__Class *klass; + MonitorData *monitor; + struct InternalTreeView_TreeViewItemWrapper fields; +}; + struct __declspec(align(8)) List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper___Fields { struct InternalTreeView_TreeViewItemWrapper__Array *_items; int32_t _size; @@ -662431,17 +669877,6 @@ struct List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper_ { struct List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper___Fields fields; }; -struct InternalTreeView_TreeViewItemWrapper { - int32_t depth; - struct ITreeViewItem *item; -}; - -struct InternalTreeView_TreeViewItemWrapper__Boxed { - struct InternalTreeView_TreeViewItemWrapper__Class *klass; - MonitorData *monitor; - struct InternalTreeView_TreeViewItemWrapper fields; -}; - struct InternalTreeView_TreeViewItemWrapper__Array { struct InternalTreeView_TreeViewItemWrapper__Array__Class *klass; MonitorData *monitor; @@ -662674,6 +670109,21 @@ struct InternalTreeView__Class { struct InternalTreeView__VTable vtable; }; +struct List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__1__VTable { +}; + +struct List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__1__StaticFields { +}; + +struct List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_UIElements_InternalTreeView_TreeViewItemWrapper__1__VTable vtable; +}; + struct __declspec(align(8)) UxmlFactory_2_InternalTreeView_InternalTreeView_UxmlTraits___Fields { struct InternalTreeView_UxmlTraits *m_Traits; }; @@ -670403,6 +677853,20 @@ struct RuntimePanel__Class { struct RuntimePanel__VTable vtable; }; +struct __declspec(align(8)) UIRAtlasAllocator_Row__Fields { + int32_t _offsetX_k__BackingField; + int32_t _offsetY_k__BackingField; + int32_t _width_k__BackingField; + int32_t _height_k__BackingField; + int32_t Cursor; +}; + +struct UIRAtlasAllocator_Row { + struct UIRAtlasAllocator_Row__Class *klass; + MonitorData *monitor; + struct UIRAtlasAllocator_Row__Fields fields; +}; + struct __declspec(align(8)) UIRAtlasAllocator__Fields { int32_t _maxAtlasSize_k__BackingField; int32_t _maxImageWidth_k__BackingField; @@ -670473,20 +677937,6 @@ struct IEnumerator_1_UnityEngine_UIElements_UIRAtlasAllocator_AreaNode_ { MonitorData *monitor; }; -struct __declspec(align(8)) UIRAtlasAllocator_Row__Fields { - int32_t _offsetX_k__BackingField; - int32_t _offsetY_k__BackingField; - int32_t _width_k__BackingField; - int32_t _height_k__BackingField; - int32_t Cursor; -}; - -struct UIRAtlasAllocator_Row { - struct UIRAtlasAllocator_Row__Class *klass; - MonitorData *monitor; - struct UIRAtlasAllocator_Row__Fields fields; -}; - struct __declspec(align(8)) ObjectPool_1_UIRAtlasAllocator_Row___Fields { struct Stack_1_UnityEngine_UIElements_UIRAtlasAllocator_Row_ *m_Stack; int32_t m_MaxSize; @@ -670738,6 +678188,21 @@ struct UIRAtlasAllocator__Class { struct UIRAtlasAllocator__VTable vtable; }; +struct Allocator2D_Alloc2D___VTable { +}; + +struct Allocator2D_Alloc2D___StaticFields { +}; + +struct Allocator2D_Alloc2D___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Allocator2D_Alloc2D___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Allocator2D_Alloc2D___VTable vtable; +}; + struct UIRLayoutUpdater__Fields { struct BaseVisualTreeUpdater__Fields _; }; @@ -671184,19 +678649,6 @@ struct Action_1_UnityEngine_UIElements_UIR_BasicNode_1_ { struct Action_1_UnityEngine_UIElements_UIR_BasicNode_1___Fields fields; }; -struct __declspec(align(8)) List_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData___Fields { - struct RenderChain_RenderNodeData__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ { - struct List_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData___Fields fields; -}; - struct NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4_ { uint8_t *m_Buffer; int32_t m_Stride; @@ -671240,6 +678692,19 @@ struct RenderChain_RenderNodeData__Boxed { struct RenderChain_RenderNodeData fields; }; +struct __declspec(align(8)) List_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData___Fields { + struct RenderChain_RenderNodeData__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData_ { + struct List_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_UIElements_UIR_RenderChain_RenderNodeData___Fields fields; +}; + struct UIRenderDevice_DrawStatistics { int32_t currentFrameIndex; uint32_t totalIndices; @@ -671287,17 +678752,16 @@ struct UIRenderDevice { struct UIRenderDevice__Fields fields; }; -struct __declspec(align(8)) List_1_List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree___Fields { - struct List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree___Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; +struct UIRenderDevice_AllocToFree { + struct Alloc alloc; + struct Page *page; + bool vertices; }; -struct List_1_List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ { - struct List_1_List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree___Class *klass; +struct UIRenderDevice_AllocToFree__Boxed { + struct UIRenderDevice_AllocToFree__Class *klass; MonitorData *monitor; - struct List_1_List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree___Fields fields; + struct UIRenderDevice_AllocToFree fields; }; struct __declspec(align(8)) List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree___Fields { @@ -671313,16 +678777,17 @@ struct List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ { struct List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree___Fields fields; }; -struct UIRenderDevice_AllocToFree { - struct Alloc alloc; - struct Page *page; - bool vertices; +struct __declspec(align(8)) List_1_List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree___Fields { + struct List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree___Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; }; -struct UIRenderDevice_AllocToFree__Boxed { - struct UIRenderDevice_AllocToFree__Class *klass; +struct List_1_List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree_ { + struct List_1_List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree___Class *klass; MonitorData *monitor; - struct UIRenderDevice_AllocToFree fields; + struct List_1_List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFree___Fields fields; }; struct UIRenderDevice_AllocToFree__Array { @@ -671351,17 +678816,20 @@ struct IEnumerator_1_List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToFre MonitorData *monitor; }; -struct __declspec(align(8)) List_1_List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate___Fields { - struct List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate___Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; +struct UIRenderDevice_AllocToUpdate { + uint32_t id; + uint32_t allocTime; + struct MeshHandle *meshHandle; + struct Alloc permAllocVerts; + struct Alloc permAllocIndices; + struct Page *permPage; + bool copyBackIndices; }; -struct List_1_List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ { - struct List_1_List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate___Class *klass; +struct UIRenderDevice_AllocToUpdate__Boxed { + struct UIRenderDevice_AllocToUpdate__Class *klass; MonitorData *monitor; - struct List_1_List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate___Fields fields; + struct UIRenderDevice_AllocToUpdate fields; }; struct __declspec(align(8)) List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate___Fields { @@ -671377,20 +678845,17 @@ struct List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ { struct List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate___Fields fields; }; -struct UIRenderDevice_AllocToUpdate { - uint32_t id; - uint32_t allocTime; - struct MeshHandle *meshHandle; - struct Alloc permAllocVerts; - struct Alloc permAllocIndices; - struct Page *permPage; - bool copyBackIndices; +struct __declspec(align(8)) List_1_List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate___Fields { + struct List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate___Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; }; -struct UIRenderDevice_AllocToUpdate__Boxed { - struct UIRenderDevice_AllocToUpdate__Class *klass; +struct List_1_List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate_ { + struct List_1_List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate___Class *klass; MonitorData *monitor; - struct UIRenderDevice_AllocToUpdate fields; + struct List_1_List_1_UnityEngine_UIElements_UIR_UIRenderDevice_AllocToUpdate___Fields fields; }; struct UIRenderDevice_AllocToUpdate__Array { @@ -671696,6 +679161,19 @@ struct MeshGenerationContextUtils_RectangleParams__Boxed { struct MeshGenerationContextUtils_RectangleParams fields; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_VisualElement_UnityEngine_Vector2_ { + int32_t hashCode; + int32_t next; + struct VisualElement *key; + struct Vector2 value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_VisualElement_UnityEngine_Vector2___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_VisualElement_UnityEngine_Vector2___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_VisualElement_UnityEngine_Vector2_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_UIElements_VisualElement_UnityEngine_Vector2___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_VisualElement_UnityEngine_Vector2___Array *_entries; @@ -671715,19 +679193,6 @@ struct Dictionary_2_UnityEngine_UIElements_VisualElement_UnityEngine_Vector2_ { struct Dictionary_2_UnityEngine_UIElements_VisualElement_UnityEngine_Vector2___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_VisualElement_UnityEngine_Vector2_ { - int32_t hashCode; - int32_t next; - struct VisualElement *key; - struct Vector2 value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_VisualElement_UnityEngine_Vector2___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_VisualElement_UnityEngine_Vector2___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_VisualElement_UnityEngine_Vector2_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_VisualElement_UnityEngine_Vector2___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_VisualElement_UnityEngine_Vector2___Array__Class *klass; MonitorData *monitor; @@ -671832,6 +679297,19 @@ struct IEnumerator_1_UnityEngine_UIElements_UIR_VectorImageManager_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_VectorImage_UnityEngine_UIElements_UIR_VectorImageRenderInfo_ { + int32_t hashCode; + int32_t next; + struct VectorImage *key; + struct VectorImageRenderInfo *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_VectorImage_UnityEngine_UIElements_UIR_VectorImageRenderInfo___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_VectorImage_UnityEngine_UIElements_UIR_VectorImageRenderInfo___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_VectorImage_UnityEngine_UIElements_UIR_VectorImageRenderInfo_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_UIElements_VectorImage_UnityEngine_UIElements_UIR_VectorImageRenderInfo___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_VectorImage_UnityEngine_UIElements_UIR_VectorImageRenderInfo___Array *_entries; @@ -671851,19 +679329,6 @@ struct Dictionary_2_UnityEngine_UIElements_VectorImage_UnityEngine_UIElements_UI struct Dictionary_2_UnityEngine_UIElements_VectorImage_UnityEngine_UIElements_UIR_VectorImageRenderInfo___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_VectorImage_UnityEngine_UIElements_UIR_VectorImageRenderInfo_ { - int32_t hashCode; - int32_t next; - struct VectorImage *key; - struct VectorImageRenderInfo *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_VectorImage_UnityEngine_UIElements_UIR_VectorImageRenderInfo___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_VectorImage_UnityEngine_UIElements_UIR_VectorImageRenderInfo___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_VectorImage_UnityEngine_UIElements_UIR_VectorImageRenderInfo_ fields; -}; - struct __declspec(align(8)) LinkedPoolItem_1_VectorImageRenderInfo___Fields { struct VectorImageRenderInfo *poolNext; }; @@ -672141,6 +679606,18 @@ struct BaseShaderInfoStorage { struct BaseShaderInfoStorage__Fields fields; }; +struct BitmapAllocator32_Page { + uint16_t x; + uint16_t y; + int32_t freeSlots; +}; + +struct BitmapAllocator32_Page__Boxed { + struct BitmapAllocator32_Page__Class *klass; + MonitorData *monitor; + struct BitmapAllocator32_Page fields; +}; + struct __declspec(align(8)) List_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page___Fields { struct BitmapAllocator32_Page__Array *_items; int32_t _size; @@ -672154,18 +679631,6 @@ struct List_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page_ { struct List_1_UnityEngine_UIElements_UIR_BitmapAllocator32_Page___Fields fields; }; -struct BitmapAllocator32_Page { - uint16_t x; - uint16_t y; - int32_t freeSlots; -}; - -struct BitmapAllocator32_Page__Boxed { - struct BitmapAllocator32_Page__Class *klass; - MonitorData *monitor; - struct BitmapAllocator32_Page fields; -}; - struct BitmapAllocator32_Page__Array { struct BitmapAllocator32_Page__Array__Class *klass; MonitorData *monitor; @@ -674409,6 +681874,21 @@ struct ICollection_1_UnityEngine_UIElements_UIR_VectorImageRenderInfo___Class { struct ICollection_1_UnityEngine_UIElements_UIR_VectorImageRenderInfo___VTable vtable; }; +struct VectorImageRenderInfo___VTable { +}; + +struct VectorImageRenderInfo___StaticFields { +}; + +struct VectorImageRenderInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct VectorImageRenderInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct VectorImageRenderInfo___VTable vtable; +}; + struct KeyValuePair_2_UnityEngine_UIElements_VectorImage_UnityEngine_UIElements_UIR_VectorImageRenderInfo___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -675524,6 +683004,21 @@ struct MeshBuilder_AllocMeshData__Class { struct MeshBuilder_AllocMeshData__VTable vtable; }; +struct MeshBuilder_AllocMeshData___VTable { +}; + +struct MeshBuilder_AllocMeshData___StaticFields { +}; + +struct MeshBuilder_AllocMeshData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MeshBuilder_AllocMeshData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MeshBuilder_AllocMeshData___VTable vtable; +}; + struct MeshBuilder_AllocMeshData_Allocator__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -675626,6 +683121,21 @@ struct RenderChain__Class { struct RenderChain__VTable vtable; }; +struct MeshGenerationContextUtils_RectangleParams___VTable { +}; + +struct MeshGenerationContextUtils_RectangleParams___StaticFields { +}; + +struct MeshGenerationContextUtils_RectangleParams___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MeshGenerationContextUtils_RectangleParams___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MeshGenerationContextUtils_RectangleParams___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class SpritePackingRotation__Enum : int32_t { None = 0x00000000, @@ -675693,6 +683203,21 @@ struct SpritePackingRotation__Enum__Class { struct SpritePackingRotation__Enum__VTable vtable; }; +struct Vector4___VTable { +}; + +struct Vector4___StaticFields { +}; + +struct Vector4___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Vector4___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Vector4___VTable vtable; +}; + struct UIRRepaintUpdater__Fields { struct BaseVisualTreeUpdater__Fields _; struct BaseVisualElementPanel *attachedPanel; @@ -675805,6 +683330,21 @@ struct AngleUnit__Enum__Class { struct AngleUnit__Enum__VTable vtable; }; +struct ComputedTransitionProperty__1__VTable { +}; + +struct ComputedTransitionProperty__1__StaticFields { +}; + +struct ComputedTransitionProperty__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ComputedTransitionProperty__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ComputedTransitionProperty__1__VTable vtable; +}; + struct __declspec(align(8)) List_1_UnityEngine_UIElements_ComputedTransitionProperty___Fields { struct ComputedTransitionProperty__Array *_items; int32_t _size; @@ -675975,6 +683515,111 @@ struct StyleInt__Class { struct StyleInt__VTable vtable; }; +struct StyleValue___VTable { +}; + +struct StyleValue___StaticFields { +}; + +struct StyleValue___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StyleValue___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StyleValue___VTable vtable; +}; + +struct StyleCursor___VTable { +}; + +struct StyleCursor___StaticFields { +}; + +struct StyleCursor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StyleCursor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StyleCursor___VTable vtable; +}; + +struct StyleTextShadow___VTable { +}; + +struct StyleTextShadow___StaticFields { +}; + +struct StyleTextShadow___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StyleTextShadow___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StyleTextShadow___VTable vtable; +}; + +struct StyleTransformOrigin___VTable { +}; + +struct StyleTransformOrigin___StaticFields { +}; + +struct StyleTransformOrigin___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StyleTransformOrigin___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StyleTransformOrigin___VTable vtable; +}; + +struct StyleTranslate___VTable { +}; + +struct StyleTranslate___StaticFields { +}; + +struct StyleTranslate___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StyleTranslate___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StyleTranslate___VTable vtable; +}; + +struct StyleRotate___VTable { +}; + +struct StyleRotate___StaticFields { +}; + +struct StyleRotate___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StyleRotate___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StyleRotate___VTable vtable; +}; + +struct StyleScale___VTable { +}; + +struct StyleScale___StaticFields { +}; + +struct StyleScale___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StyleScale___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StyleScale___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class LengthUnit__Enum : int32_t { Pixel = 0x00000000, @@ -676336,6 +683981,36 @@ struct StyleValueKeyword__Enum__Class { struct StyleValueKeyword__Enum__VTable vtable; }; +struct Dimension___VTable { +}; + +struct Dimension___StaticFields { +}; + +struct Dimension___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dimension___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dimension___VTable vtable; +}; + +struct Object__2__VTable { +}; + +struct Object__2__StaticFields { +}; + +struct Object__2__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Object__2__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Object__2__VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class StyleValueFunction__Enum : int32_t { Unknown = 0x00000000, @@ -676401,6 +684076,21 @@ struct StyleValueFunction__Enum__Class { struct StyleValueFunction__Enum__VTable vtable; }; +struct StyleVariable___VTable { +}; + +struct StyleVariable___StaticFields { +}; + +struct StyleVariable___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StyleVariable___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StyleVariable___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class StyleVariableResolver_Result__Enum : int32_t { Valid = 0x00000000, @@ -676860,30 +684550,6 @@ struct TextColorGradient { struct TextColorGradient__Fields fields; }; -struct __declspec(align(8)) TextInfo_1__Fields { - int32_t characterCount; - int32_t spriteCount; - int32_t spaceCount; - int32_t wordCount; - int32_t linkCount; - int32_t lineCount; - int32_t pageCount; - int32_t materialCount; - struct TextElementInfo__Array *textElementInfo; - struct WordInfo__Array *wordInfo; - struct LinkInfo__Array *linkInfo; - struct LineInfo_1__Array *lineInfo; - struct PageInfo__Array *pageInfo; - struct MeshInfo__Array *meshInfo; - bool isDirty; -}; - -struct TextInfo_1 { - struct TextInfo_1__Class *klass; - MonitorData *monitor; - struct TextInfo_1__Fields fields; -}; - struct TextVertex { struct Vector3 position; struct Vector2 uv; @@ -676950,14 +684616,6 @@ struct TextElementInfo__Boxed { struct TextElementInfo fields; }; -struct TextElementInfo__Array { - struct TextElementInfo__Array__Class *klass; - MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - struct TextElementInfo vector[32]; -}; - struct WordInfo { int32_t firstCharacterIndex; int32_t lastCharacterIndex; @@ -676970,14 +684628,6 @@ struct WordInfo__Boxed { struct WordInfo fields; }; -struct WordInfo__Array { - struct WordInfo__Array__Class *klass; - MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - struct WordInfo vector[32]; -}; - struct LinkInfo { int32_t hashCode; int32_t linkIdFirstCharacterIndex; @@ -676993,14 +684643,6 @@ struct LinkInfo__Boxed { struct LinkInfo fields; }; -struct LinkInfo__Array { - struct LinkInfo__Array__Class *klass; - MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - struct LinkInfo vector[32]; -}; - struct Extents_1 { struct Vector2 min; struct Vector2 max; @@ -677046,14 +684688,6 @@ struct LineInfo_1__Boxed { struct LineInfo_1 fields; }; -struct LineInfo_1__Array { - struct LineInfo_1__Array__Class *klass; - MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - struct LineInfo_1 vector[32]; -}; - struct PageInfo { int32_t firstCharacterIndex; int32_t lastCharacterIndex; @@ -677068,14 +684702,6 @@ struct PageInfo__Boxed { struct PageInfo fields; }; -struct PageInfo__Array { - struct PageInfo__Array__Class *klass; - MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - struct PageInfo vector[32]; -}; - struct MeshInfo { int32_t vertexCount; struct Vector3__Array *vertices; @@ -677092,6 +684718,70 @@ struct MeshInfo__Boxed { struct MeshInfo fields; }; +struct __declspec(align(8)) TextInfo_1__Fields { + int32_t characterCount; + int32_t spriteCount; + int32_t spaceCount; + int32_t wordCount; + int32_t linkCount; + int32_t lineCount; + int32_t pageCount; + int32_t materialCount; + struct TextElementInfo__Array *textElementInfo; + struct WordInfo__Array *wordInfo; + struct LinkInfo__Array *linkInfo; + struct LineInfo_1__Array *lineInfo; + struct PageInfo__Array *pageInfo; + struct MeshInfo__Array *meshInfo; + bool isDirty; +}; + +struct TextInfo_1 { + struct TextInfo_1__Class *klass; + MonitorData *monitor; + struct TextInfo_1__Fields fields; +}; + +struct TextElementInfo__Array { + struct TextElementInfo__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct TextElementInfo vector[32]; +}; + +struct WordInfo__Array { + struct WordInfo__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct WordInfo vector[32]; +}; + +struct LinkInfo__Array { + struct LinkInfo__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct LinkInfo vector[32]; +}; + +struct LineInfo_1__Array { + struct LineInfo_1__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct LineInfo_1 vector[32]; +}; + +struct PageInfo__Array { + struct PageInfo__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct PageInfo vector[32]; +}; + struct MeshInfo__Array { struct MeshInfo__Array__Class *klass; MonitorData *monitor; @@ -678549,6 +686239,19 @@ struct UxmlEnumeration__Class { struct UxmlEnumeration__VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_UnityEngine_UIElements_IUxmlFactory_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct List_1_UnityEngine_UIElements_IUxmlFactory_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_UnityEngine_UIElements_IUxmlFactory___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_UnityEngine_UIElements_IUxmlFactory___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_UnityEngine_UIElements_IUxmlFactory_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_List_1_UnityEngine_UIElements_IUxmlFactory___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_UnityEngine_UIElements_IUxmlFactory___Array *_entries; @@ -678568,17 +686271,9 @@ struct Dictionary_2_System_String_List_1_UnityEngine_UIElements_IUxmlFactory_ { struct Dictionary_2_System_String_List_1_UnityEngine_UIElements_IUxmlFactory___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_UnityEngine_UIElements_IUxmlFactory_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct List_1_UnityEngine_UIElements_IUxmlFactory_ *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_UnityEngine_UIElements_IUxmlFactory___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_UnityEngine_UIElements_IUxmlFactory___Class *klass; +struct IUxmlFactory { + struct IUxmlFactory__Class *klass; MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_UnityEngine_UIElements_IUxmlFactory_ fields; }; struct __declspec(align(8)) List_1_UnityEngine_UIElements_IUxmlFactory___Fields { @@ -678594,11 +686289,6 @@ struct List_1_UnityEngine_UIElements_IUxmlFactory_ { struct List_1_UnityEngine_UIElements_IUxmlFactory___Fields fields; }; -struct IUxmlFactory { - struct IUxmlFactory__Class *klass; - MonitorData *monitor; -}; - struct IUxmlFactory__Array { struct IUxmlFactory__Array__Class *klass; MonitorData *monitor; @@ -678940,6 +686630,21 @@ struct ICollection_1_List_1_UnityEngine_UIElements_IUxmlFactory___Class { struct ICollection_1_List_1_UnityEngine_UIElements_IUxmlFactory___VTable vtable; }; +struct List_1_UnityEngine_UIElements_IUxmlFactory__1__VTable { +}; + +struct List_1_UnityEngine_UIElements_IUxmlFactory__1__StaticFields { +}; + +struct List_1_UnityEngine_UIElements_IUxmlFactory__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_UIElements_IUxmlFactory__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_UIElements_IUxmlFactory__1__VTable vtable; +}; + struct KeyValuePair_2_System_String_List_1_UnityEngine_UIElements_IUxmlFactory___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -679107,6 +686812,19 @@ struct IEnumerable_1_UnityEngine_UIElements_StyleSheet___Class { struct IEnumerable_1_UnityEngine_UIElements_StyleSheet___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_UnityEngine_UIElements_VisualElementAsset_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct List_1_UnityEngine_UIElements_VisualElementAsset_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_UnityEngine_UIElements_VisualElementAsset___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_UnityEngine_UIElements_VisualElementAsset___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_UnityEngine_UIElements_VisualElementAsset_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_List_1_UnityEngine_UIElements_VisualElementAsset___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_UnityEngine_UIElements_VisualElementAsset___Array *_entries; @@ -679126,19 +686844,6 @@ struct Dictionary_2_System_Int32_List_1_UnityEngine_UIElements_VisualElementAsse struct Dictionary_2_System_Int32_List_1_UnityEngine_UIElements_VisualElementAsset___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_UnityEngine_UIElements_VisualElementAsset_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct List_1_UnityEngine_UIElements_VisualElementAsset_ *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_UnityEngine_UIElements_VisualElementAsset___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_UnityEngine_UIElements_VisualElementAsset___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_UnityEngine_UIElements_VisualElementAsset_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_UnityEngine_UIElements_VisualElementAsset___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_UnityEngine_UIElements_VisualElementAsset___Array__Class *klass; MonitorData *monitor; @@ -679367,6 +687072,21 @@ struct ICollection_1_List_1_UnityEngine_UIElements_VisualElementAsset___Class { struct ICollection_1_List_1_UnityEngine_UIElements_VisualElementAsset___VTable vtable; }; +struct List_1_UnityEngine_UIElements_VisualElementAsset__1__VTable { +}; + +struct List_1_UnityEngine_UIElements_VisualElementAsset__1__StaticFields { +}; + +struct List_1_UnityEngine_UIElements_VisualElementAsset__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_UIElements_VisualElementAsset__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_UIElements_VisualElementAsset__1__VTable vtable; +}; + struct KeyValuePair_2_System_Int32_List_1_UnityEngine_UIElements_VisualElementAsset___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -679521,6 +687241,21 @@ struct VisualTreeAsset_c_DisplayClass49_0__Class { struct VisualTreeAsset_c_DisplayClass49_0__VTable vtable; }; +struct VisualTreeAsset_c_DisplayClass49_0___VTable { +}; + +struct VisualTreeAsset_c_DisplayClass49_0___StaticFields { +}; + +struct VisualTreeAsset_c_DisplayClass49_0___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct VisualTreeAsset_c_DisplayClass49_0___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct VisualTreeAsset_c_DisplayClass49_0___VTable vtable; +}; + struct VisualTreeAsset_UsingEntryComparer { struct VisualTreeAsset_UsingEntryComparer__Class *klass; MonitorData *monitor; @@ -679576,6 +687311,18 @@ struct VisualTreeAsset_get_templateDependencies_d_17 { struct VisualTreeAsset_get_templateDependencies_d_17__Fields fields; }; +struct HashSet_1_T_Slot_UnityEngine_UIElements_VisualTreeAsset_ { + int32_t hashCode; + int32_t next; + struct VisualTreeAsset *value; +}; + +struct HashSet_1_T_Slot_UnityEngine_UIElements_VisualTreeAsset___Boxed { + struct HashSet_1_T_Slot_UnityEngine_UIElements_VisualTreeAsset___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_UnityEngine_UIElements_VisualTreeAsset_ fields; +}; + struct __declspec(align(8)) HashSet_1_UnityEngine_UIElements_VisualTreeAsset___Fields { struct Int32__Array *_buckets; struct HashSet_1_T_Slot_UnityEngine_UIElements_VisualTreeAsset___Array *_slots; @@ -679593,18 +687340,6 @@ struct HashSet_1_UnityEngine_UIElements_VisualTreeAsset_ { struct HashSet_1_UnityEngine_UIElements_VisualTreeAsset___Fields fields; }; -struct HashSet_1_T_Slot_UnityEngine_UIElements_VisualTreeAsset_ { - int32_t hashCode; - int32_t next; - struct VisualTreeAsset *value; -}; - -struct HashSet_1_T_Slot_UnityEngine_UIElements_VisualTreeAsset___Boxed { - struct HashSet_1_T_Slot_UnityEngine_UIElements_VisualTreeAsset___Class *klass; - MonitorData *monitor; - struct HashSet_1_T_Slot_UnityEngine_UIElements_VisualTreeAsset_ fields; -}; - struct HashSet_1_T_Slot_UnityEngine_UIElements_VisualTreeAsset___Array { struct HashSet_1_T_Slot_UnityEngine_UIElements_VisualTreeAsset___Array__Class *klass; MonitorData *monitor; @@ -679867,6 +687602,18 @@ struct VisualTreeAsset_get_stylesheets_d_21 { struct VisualTreeAsset_get_stylesheets_d_21__Fields fields; }; +struct HashSet_1_T_Slot_UnityEngine_UIElements_StyleSheet_ { + int32_t hashCode; + int32_t next; + struct StyleSheet *value; +}; + +struct HashSet_1_T_Slot_UnityEngine_UIElements_StyleSheet___Boxed { + struct HashSet_1_T_Slot_UnityEngine_UIElements_StyleSheet___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_UnityEngine_UIElements_StyleSheet_ fields; +}; + struct __declspec(align(8)) HashSet_1_UnityEngine_UIElements_StyleSheet___Fields { struct Int32__Array *_buckets; struct HashSet_1_T_Slot_UnityEngine_UIElements_StyleSheet___Array *_slots; @@ -679884,18 +687631,6 @@ struct HashSet_1_UnityEngine_UIElements_StyleSheet_ { struct HashSet_1_UnityEngine_UIElements_StyleSheet___Fields fields; }; -struct HashSet_1_T_Slot_UnityEngine_UIElements_StyleSheet_ { - int32_t hashCode; - int32_t next; - struct StyleSheet *value; -}; - -struct HashSet_1_T_Slot_UnityEngine_UIElements_StyleSheet___Boxed { - struct HashSet_1_T_Slot_UnityEngine_UIElements_StyleSheet___Class *klass; - MonitorData *monitor; - struct HashSet_1_T_Slot_UnityEngine_UIElements_StyleSheet_ fields; -}; - struct HashSet_1_T_Slot_UnityEngine_UIElements_StyleSheet___Array { struct HashSet_1_T_Slot_UnityEngine_UIElements_StyleSheet___Array__Class *klass; MonitorData *monitor; @@ -680216,6 +687951,21 @@ struct MeshBuilder_ClipCounts__Class { struct MeshBuilder_ClipCounts__VTable vtable; }; +struct RenderChain_RenderNodeData___VTable { +}; + +struct RenderChain_RenderNodeData___StaticFields { +}; + +struct RenderChain_RenderNodeData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RenderChain_RenderNodeData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RenderChain_RenderNodeData___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class RenderDataDirtyTypeClasses__Enum : int32_t { Clipping = 0x00000000, @@ -680682,6 +688432,21 @@ struct ShaderInfoStorageRGBAFloat_c__Class { struct ShaderInfoStorageRGBAFloat_c__VTable vtable; }; +struct MeshGenerationContextUtils_BorderParams___VTable { +}; + +struct MeshGenerationContextUtils_BorderParams___StaticFields { +}; + +struct MeshGenerationContextUtils_BorderParams___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MeshGenerationContextUtils_BorderParams___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MeshGenerationContextUtils_BorderParams___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class Tessellation_Edges__Enum : int32_t { None = 0x00000000, @@ -680771,6 +688536,21 @@ struct Vector2Ptr__Class { struct Vector2Ptr__VTable vtable; }; +struct Vertex___VTable { +}; + +struct Vertex___StaticFields { +}; + +struct Vertex___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Vertex___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Vertex___VTable vtable; +}; + struct IList_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ { struct IList_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo___Class *klass; MonitorData *monitor; @@ -680850,6 +688630,81 @@ struct GradientRemapPool_c__Class { struct GradientRemapPool_c__VTable vtable; }; +struct BitmapAllocator32___VTable { +}; + +struct BitmapAllocator32___StaticFields { +}; + +struct BitmapAllocator32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BitmapAllocator32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BitmapAllocator32___VTable vtable; +}; + +struct NativeSlice_1_UnityEngine_UIElements_Vertex__1__VTable { +}; + +struct NativeSlice_1_UnityEngine_UIElements_Vertex__1__StaticFields { +}; + +struct NativeSlice_1_UnityEngine_UIElements_Vertex__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NativeSlice_1_UnityEngine_UIElements_Vertex__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NativeSlice_1_UnityEngine_UIElements_Vertex__1__VTable vtable; +}; + +struct NativeSlice_1_System_UInt16__1__VTable { +}; + +struct NativeSlice_1_System_UInt16__1__StaticFields { +}; + +struct NativeSlice_1_System_UInt16__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NativeSlice_1_System_UInt16__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NativeSlice_1_System_UInt16__1__VTable vtable; +}; + +struct Alloc___VTable { +}; + +struct Alloc___StaticFields { +}; + +struct Alloc___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Alloc___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Alloc___VTable vtable; +}; + +struct UIRenderDevice_AllocToUpdate___VTable { +}; + +struct UIRenderDevice_AllocToUpdate___StaticFields { +}; + +struct UIRenderDevice_AllocToUpdate___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UIRenderDevice_AllocToUpdate___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UIRenderDevice_AllocToUpdate___VTable vtable; +}; + struct UIRenderDevice_EvaluationState { struct MaterialPropertyBlock *stateMatProps; struct Material *defaultMat; @@ -680886,6 +688741,21 @@ struct UIRenderDevice_EvaluationState__Class { struct UIRenderDevice_EvaluationState__VTable vtable; }; +struct UIRenderDevice_EvaluationState___VTable { +}; + +struct UIRenderDevice_EvaluationState___StaticFields { +}; + +struct UIRenderDevice_EvaluationState___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UIRenderDevice_EvaluationState___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UIRenderDevice_EvaluationState___VTable vtable; +}; + struct DrawBufferRange { int32_t firstIndex; int32_t indexCount; @@ -680965,6 +688835,51 @@ struct UIRenderDevice_c__Class { struct UIRenderDevice_c__VTable vtable; }; +struct ChainBuilderStats___VTable { +}; + +struct ChainBuilderStats___StaticFields { +}; + +struct ChainBuilderStats___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ChainBuilderStats___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ChainBuilderStats___VTable vtable; +}; + +struct MeshHandle___VTable { +}; + +struct MeshHandle___StaticFields { +}; + +struct MeshHandle___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MeshHandle___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MeshHandle___VTable vtable; +}; + +struct RenderChainCommand___VTable { +}; + +struct RenderChainCommand___StaticFields { +}; + +struct RenderChainCommand___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RenderChainCommand___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RenderChainCommand___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class StyleEnumType__Enum : int32_t { Align = 0x00000000, @@ -681058,6 +688973,51 @@ struct StyleEnumType__Enum__Class { struct StyleEnumType__Enum__VTable vtable; }; +struct List_1_UnityEngine_UIElements_TimeValue__1__VTable { +}; + +struct List_1_UnityEngine_UIElements_TimeValue__1__StaticFields { +}; + +struct List_1_UnityEngine_UIElements_TimeValue__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_UIElements_TimeValue__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_UIElements_TimeValue__1__VTable vtable; +}; + +struct List_1_UnityEngine_UIElements_StylePropertyName__1__VTable { +}; + +struct List_1_UnityEngine_UIElements_StylePropertyName__1__StaticFields { +}; + +struct List_1_UnityEngine_UIElements_StylePropertyName__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_UIElements_StylePropertyName__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_UIElements_StylePropertyName__1__VTable vtable; +}; + +struct List_1_UnityEngine_UIElements_EasingFunction__1__VTable { +}; + +struct List_1_UnityEngine_UIElements_EasingFunction__1__StaticFields { +}; + +struct List_1_UnityEngine_UIElements_EasingFunction__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_UIElements_EasingFunction__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_UIElements_EasingFunction__1__VTable vtable; +}; + struct ImageSource { struct Texture2D *texture; struct Sprite *sprite; @@ -681090,6 +689050,21 @@ struct ImageSource__Class { struct ImageSource__VTable vtable; }; +struct ImageSource___VTable { +}; + +struct ImageSource___StaticFields { +}; + +struct ImageSource___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ImageSource___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ImageSource___VTable vtable; +}; + struct IDictionary_2_System_String_UnityEngine_UIElements_StyleComplexSelector_ { struct IDictionary_2_System_String_UnityEngine_UIElements_StyleComplexSelector___Class *klass; MonitorData *monitor; @@ -681118,6 +689093,21 @@ struct IDictionary_2_System_String_UnityEngine_UIElements_StyleComplexSelector__ struct IDictionary_2_System_String_UnityEngine_UIElements_StyleComplexSelector___VTable vtable; }; +struct SelectorMatchRecord___VTable { +}; + +struct SelectorMatchRecord___StaticFields { +}; + +struct SelectorMatchRecord___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SelectorMatchRecord___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SelectorMatchRecord___VTable vtable; +}; + struct StyleSheetCache_SheetHandleKey { int32_t sheetInstanceID; int32_t index; @@ -681284,19 +689274,6 @@ struct StyleSyntaxTokenizer { struct StyleSyntaxTokenizer__Fields fields; }; -struct __declspec(align(8)) List_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken___Fields { - struct StyleSyntaxToken__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ { - struct List_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken___Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class StyleSyntaxTokenType__Enum : int32_t { Unknown = 0x00000000, @@ -681374,6 +689351,19 @@ struct StyleSyntaxToken__Boxed { struct StyleSyntaxToken fields; }; +struct __declspec(align(8)) List_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken___Fields { + struct StyleSyntaxToken__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken_ { + struct List_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_UIElements_StyleSheets_Syntax_StyleSyntaxToken___Fields fields; +}; + struct StyleSyntaxToken__Array { struct StyleSyntaxToken__Array__Class *klass; MonitorData *monitor; @@ -681545,6 +689535,21 @@ struct StyleSyntaxTokenizer__Class { struct StyleSyntaxTokenizer__VTable vtable; }; +struct ExpressionMultiplier___VTable { +}; + +struct ExpressionMultiplier___StaticFields { +}; + +struct ExpressionMultiplier___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ExpressionMultiplier___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ExpressionMultiplier___VTable vtable; +}; + struct VRCameraIdentifier__Fields { struct MonoBehaviour__Fields _; }; @@ -681579,6 +689584,19 @@ struct MathUtility { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_UnityEngine_Transform_ { + int32_t hashCode; + int32_t next; + struct Collider *key; + struct Transform *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_UnityEngine_Transform___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_UnityEngine_Transform___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_UnityEngine_Transform_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_Collider_UnityEngine_Transform___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_UnityEngine_Transform___Array *_entries; @@ -681598,19 +689616,6 @@ struct Dictionary_2_UnityEngine_Collider_UnityEngine_Transform_ { struct Dictionary_2_UnityEngine_Collider_UnityEngine_Transform___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_UnityEngine_Transform_ { - int32_t hashCode; - int32_t next; - struct Collider *key; - struct Transform *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_UnityEngine_Transform___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_UnityEngine_Transform___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_UnityEngine_Transform_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_UnityEngine_Transform___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_UnityEngine_Transform___Array__Class *klass; MonitorData *monitor; @@ -681945,6 +689950,19 @@ struct UnityEngineUtility { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_System_Type_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct Type *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_System_Type___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_System_Type___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_System_Type_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_System_Type___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_System_Type___Array *_entries; @@ -681964,19 +689982,6 @@ struct Dictionary_2_System_String_System_Type_ { struct Dictionary_2_System_String_System_Type___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_System_Type_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct Type *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_System_Type___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_System_Type___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_System_Type_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_String_System_Type___Array { struct Dictionary_2_TKey_TValue_Entry_System_String_System_Type___Array__Class *klass; MonitorData *monitor; @@ -682029,6 +690034,19 @@ struct IEnumerator_1_KeyValuePair_2_System_String_System_Type_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_UnityEngine_Camera_ { + int32_t hashCode; + int32_t next; + struct GameObject *key; + struct Camera *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_UnityEngine_Camera___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_UnityEngine_Camera___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_UnityEngine_Camera_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_GameObject_UnityEngine_Camera___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_UnityEngine_Camera___Array *_entries; @@ -682048,19 +690066,6 @@ struct Dictionary_2_UnityEngine_GameObject_UnityEngine_Camera_ { struct Dictionary_2_UnityEngine_GameObject_UnityEngine_Camera___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_UnityEngine_Camera_ { - int32_t hashCode; - int32_t next; - struct GameObject *key; - struct Camera *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_UnityEngine_Camera___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_UnityEngine_Camera___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_UnityEngine_Camera_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_UnityEngine_Camera___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_UnityEngine_Camera___Array__Class *klass; MonitorData *monitor; @@ -682136,6 +690141,19 @@ struct IEnumerable_1_UnityEngine_Camera_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Reflection_FieldInfo_Dictionary_2_System_Type_System_Boolean_ { + int32_t hashCode; + int32_t next; + struct FieldInfo_1 *key; + struct Dictionary_2_System_Type_System_Boolean_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Reflection_FieldInfo_Dictionary_2_System_Type_System_Boolean___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Reflection_FieldInfo_Dictionary_2_System_Type_System_Boolean___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Reflection_FieldInfo_Dictionary_2_System_Type_System_Boolean_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Reflection_FieldInfo_Dictionary_2_System_Type_System_Boolean___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Reflection_FieldInfo_Dictionary_2_System_Type_System_Boolean___Array *_entries; @@ -682155,17 +690173,17 @@ struct Dictionary_2_System_Reflection_FieldInfo_Dictionary_2_System_Type_System_ struct Dictionary_2_System_Reflection_FieldInfo_Dictionary_2_System_Type_System_Boolean___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Reflection_FieldInfo_Dictionary_2_System_Type_System_Boolean_ { +struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Boolean_ { int32_t hashCode; int32_t next; - struct FieldInfo_1 *key; - struct Dictionary_2_System_Type_System_Boolean_ *value; + struct Type *key; + bool value; }; -struct Dictionary_2_TKey_TValue_Entry_System_Reflection_FieldInfo_Dictionary_2_System_Type_System_Boolean___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Reflection_FieldInfo_Dictionary_2_System_Type_System_Boolean___Class *klass; +struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Boolean___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Boolean___Class *klass; MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Reflection_FieldInfo_Dictionary_2_System_Type_System_Boolean_ fields; + struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Boolean_ fields; }; struct __declspec(align(8)) Dictionary_2_System_Type_System_Boolean___Fields { @@ -682187,19 +690205,6 @@ struct Dictionary_2_System_Type_System_Boolean_ { struct Dictionary_2_System_Type_System_Boolean___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Boolean_ { - int32_t hashCode; - int32_t next; - struct Type *key; - bool value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Boolean___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Boolean___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Boolean_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Boolean___Array { struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Boolean___Array__Class *klass; MonitorData *monitor; @@ -682332,6 +690337,19 @@ struct IEnumerable_1_Dictionary_2_System_Type_System_Boolean_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Reflection_PropertyInfo_Dictionary_2_System_Type_System_Boolean_ { + int32_t hashCode; + int32_t next; + struct PropertyInfo_1 *key; + struct Dictionary_2_System_Type_System_Boolean_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Reflection_PropertyInfo_Dictionary_2_System_Type_System_Boolean___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Reflection_PropertyInfo_Dictionary_2_System_Type_System_Boolean___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Reflection_PropertyInfo_Dictionary_2_System_Type_System_Boolean_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Reflection_PropertyInfo_Dictionary_2_System_Type_System_Boolean___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Reflection_PropertyInfo_Dictionary_2_System_Type_System_Boolean___Array *_entries; @@ -682351,19 +690369,6 @@ struct Dictionary_2_System_Reflection_PropertyInfo_Dictionary_2_System_Type_Syst struct Dictionary_2_System_Reflection_PropertyInfo_Dictionary_2_System_Type_System_Boolean___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Reflection_PropertyInfo_Dictionary_2_System_Type_System_Boolean_ { - int32_t hashCode; - int32_t next; - struct PropertyInfo_1 *key; - struct Dictionary_2_System_Type_System_Boolean_ *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Reflection_PropertyInfo_Dictionary_2_System_Type_System_Boolean___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Reflection_PropertyInfo_Dictionary_2_System_Type_System_Boolean___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Reflection_PropertyInfo_Dictionary_2_System_Type_System_Boolean_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Reflection_PropertyInfo_Dictionary_2_System_Type_System_Boolean___Array { struct Dictionary_2_TKey_TValue_Entry_System_Reflection_PropertyInfo_Dictionary_2_System_Type_System_Boolean___Array__Class *klass; MonitorData *monitor; @@ -683287,6 +691292,21 @@ struct ICollection_1_Dictionary_2_System_Type_System_Boolean___Class { struct ICollection_1_Dictionary_2_System_Type_System_Boolean___VTable vtable; }; +struct Dictionary_2_System_Type_System_Boolean__1__VTable { +}; + +struct Dictionary_2_System_Type_System_Boolean__1__StaticFields { +}; + +struct Dictionary_2_System_Type_System_Boolean__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_System_Type_System_Boolean__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_System_Type_System_Boolean__1__VTable vtable; +}; + struct KeyValuePair_2_System_Reflection_FieldInfo_Dictionary_2_System_Type_System_Boolean___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -684882,6 +692902,18 @@ struct FirstPersonObjects { struct FirstPersonObjects__Fields fields; }; +struct HashSet_1_T_Slot_UnityEngine_GameObject_ { + int32_t hashCode; + int32_t next; + struct GameObject *value; +}; + +struct HashSet_1_T_Slot_UnityEngine_GameObject___Boxed { + struct HashSet_1_T_Slot_UnityEngine_GameObject___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_UnityEngine_GameObject_ fields; +}; + struct __declspec(align(8)) HashSet_1_UnityEngine_GameObject___Fields { struct Int32__Array *_buckets; struct HashSet_1_T_Slot_UnityEngine_GameObject___Array *_slots; @@ -684899,18 +692931,6 @@ struct HashSet_1_UnityEngine_GameObject_ { struct HashSet_1_UnityEngine_GameObject___Fields fields; }; -struct HashSet_1_T_Slot_UnityEngine_GameObject_ { - int32_t hashCode; - int32_t next; - struct GameObject *value; -}; - -struct HashSet_1_T_Slot_UnityEngine_GameObject___Boxed { - struct HashSet_1_T_Slot_UnityEngine_GameObject___Class *klass; - MonitorData *monitor; - struct HashSet_1_T_Slot_UnityEngine_GameObject_ fields; -}; - struct HashSet_1_T_Slot_UnityEngine_GameObject___Array { struct HashSet_1_T_Slot_UnityEngine_GameObject___Array__Class *klass; MonitorData *monitor; @@ -684919,6 +692939,19 @@ struct HashSet_1_T_Slot_UnityEngine_GameObject___Array { struct HashSet_1_T_Slot_UnityEngine_GameObject_ vector[32]; }; +struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_Items_Item_UnityEngine_GameObject_ { + int32_t hashCode; + int32_t next; + struct Item *key; + struct GameObject__Array *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_Items_Item_UnityEngine_GameObject___Boxed { + struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_Items_Item_UnityEngine_GameObject___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_Items_Item_UnityEngine_GameObject_ fields; +}; + struct __declspec(align(8)) Dictionary_2_Opsive_UltimateCharacterController_Items_Item_UnityEngine_GameObject___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_Items_Item_UnityEngine_GameObject___Array *_entries; @@ -684938,19 +692971,6 @@ struct Dictionary_2_Opsive_UltimateCharacterController_Items_Item_UnityEngine_Ga struct Dictionary_2_Opsive_UltimateCharacterController_Items_Item_UnityEngine_GameObject___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_Items_Item_UnityEngine_GameObject_ { - int32_t hashCode; - int32_t next; - struct Item *key; - struct GameObject__Array *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_Items_Item_UnityEngine_GameObject___Boxed { - struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_Items_Item_UnityEngine_GameObject___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_Items_Item_UnityEngine_GameObject_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_Items_Item_UnityEngine_GameObject___Array { struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_Items_Item_UnityEngine_GameObject___Array__Class *klass; MonitorData *monitor; @@ -685257,6 +693277,21 @@ struct ICollection_1_UnityEngine_GameObject__1__Class { struct ICollection_1_UnityEngine_GameObject__1__VTable vtable; }; +struct GameObject__1__VTable { +}; + +struct GameObject__1__StaticFields { +}; + +struct GameObject__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GameObject__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GameObject__1__VTable vtable; +}; + struct KeyValuePair_2_Opsive_UltimateCharacterController_Items_Item_UnityEngine_GameObject___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -685583,6 +693618,22 @@ struct CrosshairsMonitor__Class { struct CrosshairsMonitor__VTable vtable; }; +struct DamageIndicatorMonitor_DamageIndicator { + struct Transform *m_Attacker; + struct Vector3 m_Position; + float m_Angle; + float m_DisplayTime; + struct GameObject *m_GameObject; + struct RectTransform *m_RectTransform; + struct Image *m_Image; +}; + +struct DamageIndicatorMonitor_DamageIndicator__Boxed { + struct DamageIndicatorMonitor_DamageIndicator__Class *klass; + MonitorData *monitor; + struct DamageIndicatorMonitor_DamageIndicator fields; +}; + struct DamageIndicatorMonitor__Fields { struct CharacterMonitor__Fields _; bool m_AlwaysShowIndicator; @@ -685607,22 +693658,6 @@ struct DamageIndicatorMonitor { struct DamageIndicatorMonitor__Fields fields; }; -struct DamageIndicatorMonitor_DamageIndicator { - struct Transform *m_Attacker; - struct Vector3 m_Position; - float m_Angle; - float m_DisplayTime; - struct GameObject *m_GameObject; - struct RectTransform *m_RectTransform; - struct Image *m_Image; -}; - -struct DamageIndicatorMonitor_DamageIndicator__Boxed { - struct DamageIndicatorMonitor_DamageIndicator__Class *klass; - MonitorData *monitor; - struct DamageIndicatorMonitor_DamageIndicator fields; -}; - struct DamageIndicatorMonitor_DamageIndicator__Array { struct DamageIndicatorMonitor_DamageIndicator__Array__Class *klass; MonitorData *monitor; @@ -686596,6 +694631,19 @@ struct DecalManager { struct DecalManager__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_UnityEngine_Renderer_ { + int32_t hashCode; + int32_t next; + struct GameObject *key; + struct Renderer *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_UnityEngine_Renderer___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_UnityEngine_Renderer___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_UnityEngine_Renderer_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_GameObject_UnityEngine_Renderer___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_UnityEngine_Renderer___Array *_entries; @@ -686615,19 +694663,6 @@ struct Dictionary_2_UnityEngine_GameObject_UnityEngine_Renderer_ { struct Dictionary_2_UnityEngine_GameObject_UnityEngine_Renderer___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_UnityEngine_Renderer_ { - int32_t hashCode; - int32_t next; - struct GameObject *key; - struct Renderer *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_UnityEngine_Renderer___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_UnityEngine_Renderer___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_UnityEngine_Renderer_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_UnityEngine_Renderer___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_UnityEngine_Renderer___Array__Class *klass; MonitorData *monitor; @@ -686680,6 +694715,19 @@ struct IEnumerator_1_KeyValuePair_2_UnityEngine_GameObject_UnityEngine_Renderer_ MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_UnityEngine_Mesh_ { + int32_t hashCode; + int32_t next; + struct GameObject *key; + struct Mesh *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_UnityEngine_Mesh___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_UnityEngine_Mesh___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_UnityEngine_Mesh_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_GameObject_UnityEngine_Mesh___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_UnityEngine_Mesh___Array *_entries; @@ -686699,19 +694747,6 @@ struct Dictionary_2_UnityEngine_GameObject_UnityEngine_Mesh_ { struct Dictionary_2_UnityEngine_GameObject_UnityEngine_Mesh___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_UnityEngine_Mesh_ { - int32_t hashCode; - int32_t next; - struct GameObject *key; - struct Mesh *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_UnityEngine_Mesh___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_UnityEngine_Mesh___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_UnityEngine_Mesh_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_UnityEngine_Mesh___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_UnityEngine_Mesh___Array__Class *klass; MonitorData *monitor; @@ -686869,6 +694904,21 @@ struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_GameObject_UnityEngi struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_GameObject_UnityEngine_Renderer___VTable vtable; }; +struct Renderer___VTable { +}; + +struct Renderer___StaticFields { +}; + +struct Renderer___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Renderer___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Renderer___VTable vtable; +}; + struct KeyValuePair_2_UnityEngine_GameObject_UnityEngine_Renderer___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -687100,6 +695150,21 @@ struct ICollection_1_UnityEngine_Mesh___Class { struct ICollection_1_UnityEngine_Mesh___VTable vtable; }; +struct Mesh___VTable { +}; + +struct Mesh___StaticFields { +}; + +struct Mesh___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Mesh___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Mesh___VTable vtable; +}; + struct KeyValuePair_2_UnityEngine_GameObject_UnityEngine_Mesh___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -687313,6 +695378,17 @@ struct SurfaceIdentifier { struct SurfaceIdentifier__Fields fields; }; +struct ImpactEffect { + struct SurfaceImpact *m_SurfaceImpact; + struct SurfaceEffect *m_SurfaceEffect; +}; + +struct ImpactEffect__Boxed { + struct ImpactEffect__Class *klass; + MonitorData *monitor; + struct ImpactEffect fields; +}; + struct SurfaceType__Fields { struct ScriptableObject__Fields _; struct ImpactEffect__Array *m_ImpactEffects; @@ -687325,17 +695401,6 @@ struct SurfaceType { struct SurfaceType__Fields fields; }; -struct ImpactEffect { - struct SurfaceImpact *m_SurfaceImpact; - struct SurfaceEffect *m_SurfaceEffect; -}; - -struct ImpactEffect__Boxed { - struct ImpactEffect__Class *klass; - MonitorData *monitor; - struct ImpactEffect fields; -}; - struct ImpactEffect__Array { struct ImpactEffect__Array__Class *klass; MonitorData *monitor; @@ -687416,6 +695481,28 @@ struct SurfaceIdentifier__Class { struct SurfaceIdentifier__VTable vtable; }; +struct UVTexture { + struct Texture *m_Texture; + struct Rect m_UV; +}; + +struct UVTexture__Boxed { + struct UVTexture__Class *klass; + MonitorData *monitor; + struct UVTexture fields; +}; + +struct ObjectSurface { + struct SurfaceType *m_SurfaceType; + struct UVTexture__Array *m_UVTextures; +}; + +struct ObjectSurface__Boxed { + struct ObjectSurface__Class *klass; + MonitorData *monitor; + struct ObjectSurface fields; +}; + struct SurfaceManager__Fields { struct MonoBehaviour__Fields _; struct ObjectSurface__Array *m_ObjectSurfaces; @@ -687447,28 +695534,6 @@ struct SurfaceManager { struct SurfaceManager__Fields fields; }; -struct ObjectSurface { - struct SurfaceType *m_SurfaceType; - struct UVTexture__Array *m_UVTextures; -}; - -struct ObjectSurface__Boxed { - struct ObjectSurface__Class *klass; - MonitorData *monitor; - struct ObjectSurface fields; -}; - -struct UVTexture { - struct Texture *m_Texture; - struct Rect m_UV; -}; - -struct UVTexture__Boxed { - struct UVTexture__Class *klass; - MonitorData *monitor; - struct UVTexture fields; -}; - struct UVTexture__Array { struct UVTexture__Array__Class *klass; MonitorData *monitor; @@ -687485,6 +695550,19 @@ struct ObjectSurface__Array { struct ObjectSurface vector[32]; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Texture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ { + int32_t hashCode; + int32_t next; + struct Texture *key; + struct ObjectSurface value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Texture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Texture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Texture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_Texture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Texture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Array *_entries; @@ -687504,19 +695582,6 @@ struct Dictionary_2_UnityEngine_Texture_Opsive_UltimateCharacterController_Surfa struct Dictionary_2_UnityEngine_Texture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Texture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ { - int32_t hashCode; - int32_t next; - struct Texture *key; - struct ObjectSurface value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Texture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Texture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Texture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Texture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Texture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Array__Class *klass; MonitorData *monitor; @@ -687584,6 +695649,19 @@ struct IEnumerable_1_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurf MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ { + int32_t hashCode; + int32_t next; + struct UVTexture key; + struct ObjectSurface value; +}; + +struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed { + struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ fields; +}; + struct __declspec(align(8)) Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Array *_entries; @@ -687603,19 +695681,6 @@ struct Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_O struct Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ { - int32_t hashCode; - int32_t next; - struct UVTexture key; - struct ObjectSurface value; -}; - -struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed { - struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Array { struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Array__Class *klass; MonitorData *monitor; @@ -687688,6 +695753,19 @@ struct IEnumerable_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Texture_List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ { + int32_t hashCode; + int32_t next; + struct Texture *key; + struct List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Texture_List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Texture_List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Texture_List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_Texture_List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Texture_List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture___Array *_entries; @@ -687707,19 +695785,6 @@ struct Dictionary_2_UnityEngine_Texture_List_1_Opsive_UltimateCharacterControlle struct Dictionary_2_UnityEngine_Texture_List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Texture_List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ { - int32_t hashCode; - int32_t next; - struct Texture *key; - struct List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Texture_List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Texture_List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Texture_List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ fields; -}; - struct __declspec(align(8)) List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture___Fields { struct UVTexture__Array *_items; int32_t _size; @@ -687808,6 +695873,19 @@ struct IEnumerable_1_List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVT MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceType_Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceEffect_ { + int32_t hashCode; + int32_t next; + struct SurfaceType *key; + struct Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceEffect_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceType_Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceEffect___Boxed { + struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceType_Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceEffect___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceType_Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceEffect_ fields; +}; + struct __declspec(align(8)) Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceType_Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceEffect___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceType_Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceEffect___Array *_entries; @@ -687827,17 +695905,17 @@ struct Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceType struct Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceType_Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceEffect___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceType_Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceEffect_ { +struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceEffect_ { int32_t hashCode; int32_t next; - struct SurfaceType *key; - struct Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceEffect_ *value; + struct SurfaceImpact *key; + struct SurfaceEffect *value; }; -struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceType_Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceEffect___Boxed { - struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceType_Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceEffect___Class *klass; +struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceEffect___Boxed { + struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceEffect___Class *klass; MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceType_Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceEffect_ fields; + struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceEffect_ fields; }; struct __declspec(align(8)) Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceEffect___Fields { @@ -687859,19 +695937,6 @@ struct Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpa struct Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceEffect___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceEffect_ { - int32_t hashCode; - int32_t next; - struct SurfaceImpact *key; - struct SurfaceEffect *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceEffect___Boxed { - struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceEffect___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceEffect_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceEffect___Array { struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceEffect___Array__Class *klass; MonitorData *monitor; @@ -688078,6 +696143,19 @@ struct IEnumerable_1_Dictionary_2_Opsive_UltimateCharacterController_SurfaceSyst MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Texture_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceType_ { + int32_t hashCode; + int32_t next; + struct Texture *key; + struct SurfaceType *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Texture_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceType___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Texture_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceType___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Texture_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceType_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_Texture_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceType___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Texture_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceType___Array *_entries; @@ -688097,19 +696175,6 @@ struct Dictionary_2_UnityEngine_Texture_Opsive_UltimateCharacterController_Surfa struct Dictionary_2_UnityEngine_Texture_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceType___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Texture_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceType_ { - int32_t hashCode; - int32_t next; - struct Texture *key; - struct SurfaceType *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Texture_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceType___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Texture_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceType___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Texture_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceType_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Texture_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceType___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Texture_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceType___Array__Class *klass; MonitorData *monitor; @@ -688162,6 +696227,19 @@ struct IEnumerator_1_KeyValuePair_2_UnityEngine_Texture_Opsive_UltimateCharacter MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceIdentifier_ { + int32_t hashCode; + int32_t next; + struct Collider *key; + struct SurfaceIdentifier *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceIdentifier___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceIdentifier___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceIdentifier_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_Collider_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceIdentifier___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceIdentifier___Array *_entries; @@ -688181,19 +696259,6 @@ struct Dictionary_2_UnityEngine_Collider_Opsive_UltimateCharacterController_Surf struct Dictionary_2_UnityEngine_Collider_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceIdentifier___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceIdentifier_ { - int32_t hashCode; - int32_t next; - struct Collider *key; - struct SurfaceIdentifier *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceIdentifier___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceIdentifier___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceIdentifier_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceIdentifier___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceIdentifier___Array__Class *klass; MonitorData *monitor; @@ -688269,6 +696334,19 @@ struct IEnumerable_1_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceIde MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceType_ { + int32_t hashCode; + int32_t next; + struct Collider *key; + struct SurfaceType *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceType___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceType___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceType_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_Collider_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceType___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceType___Array *_entries; @@ -688288,19 +696366,6 @@ struct Dictionary_2_UnityEngine_Collider_Opsive_UltimateCharacterController_Surf struct Dictionary_2_UnityEngine_Collider_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceType___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceType_ { - int32_t hashCode; - int32_t next; - struct Collider *key; - struct SurfaceType *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceType___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceType___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceType_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceType___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceType___Array__Class *klass; MonitorData *monitor; @@ -688353,6 +696418,19 @@ struct IEnumerator_1_KeyValuePair_2_UnityEngine_Collider_Opsive_UltimateCharacte MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_System_Boolean_ { + int32_t hashCode; + int32_t next; + struct Collider *key; + bool value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_System_Boolean___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_System_Boolean___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_System_Boolean_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_Collider_System_Boolean___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_System_Boolean___Array *_entries; @@ -688372,19 +696450,6 @@ struct Dictionary_2_UnityEngine_Collider_System_Boolean_ { struct Dictionary_2_UnityEngine_Collider_System_Boolean___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_System_Boolean_ { - int32_t hashCode; - int32_t next; - struct Collider *key; - bool value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_System_Boolean___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_System_Boolean___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_System_Boolean_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_System_Boolean___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_System_Boolean___Array__Class *klass; MonitorData *monitor; @@ -688437,6 +696502,19 @@ struct IEnumerator_1_KeyValuePair_2_UnityEngine_Collider_System_Boolean_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_UnityEngine_Renderer_ { + int32_t hashCode; + int32_t next; + struct Collider *key; + struct Renderer *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_UnityEngine_Renderer___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_UnityEngine_Renderer___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_UnityEngine_Renderer_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_Collider_UnityEngine_Renderer___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_UnityEngine_Renderer___Array *_entries; @@ -688456,19 +696534,6 @@ struct Dictionary_2_UnityEngine_Collider_UnityEngine_Renderer_ { struct Dictionary_2_UnityEngine_Collider_UnityEngine_Renderer___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_UnityEngine_Renderer_ { - int32_t hashCode; - int32_t next; - struct Collider *key; - struct Renderer *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_UnityEngine_Renderer___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_UnityEngine_Renderer___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_UnityEngine_Renderer_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_UnityEngine_Renderer___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_UnityEngine_Renderer___Array__Class *klass; MonitorData *monitor; @@ -688521,6 +696586,19 @@ struct IEnumerator_1_KeyValuePair_2_UnityEngine_Collider_UnityEngine_Renderer_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_UnityEngine_Mesh_ { + int32_t hashCode; + int32_t next; + struct Collider *key; + struct Mesh *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_UnityEngine_Mesh___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_UnityEngine_Mesh___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_UnityEngine_Mesh_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_Collider_UnityEngine_Mesh___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_UnityEngine_Mesh___Array *_entries; @@ -688540,19 +696618,6 @@ struct Dictionary_2_UnityEngine_Collider_UnityEngine_Mesh_ { struct Dictionary_2_UnityEngine_Collider_UnityEngine_Mesh___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_UnityEngine_Mesh_ { - int32_t hashCode; - int32_t next; - struct Collider *key; - struct Mesh *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_UnityEngine_Mesh___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_UnityEngine_Mesh___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_UnityEngine_Mesh_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_UnityEngine_Mesh___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_UnityEngine_Mesh___Array__Class *klass; MonitorData *monitor; @@ -688605,6 +696670,19 @@ struct IEnumerator_1_KeyValuePair_2_UnityEngine_Collider_UnityEngine_Mesh_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_UnityEngine_Texture_ { + int32_t hashCode; + int32_t next; + struct Collider *key; + struct Texture *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_UnityEngine_Texture___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_UnityEngine_Texture___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_UnityEngine_Texture_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_Collider_UnityEngine_Texture___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_UnityEngine_Texture___Array *_entries; @@ -688624,19 +696702,6 @@ struct Dictionary_2_UnityEngine_Collider_UnityEngine_Texture_ { struct Dictionary_2_UnityEngine_Collider_UnityEngine_Texture___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_UnityEngine_Texture_ { - int32_t hashCode; - int32_t next; - struct Collider *key; - struct Texture *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_UnityEngine_Texture___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_UnityEngine_Texture___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_UnityEngine_Texture_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_UnityEngine_Texture___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_UnityEngine_Texture___Array__Class *klass; MonitorData *monitor; @@ -688689,6 +696754,19 @@ struct IEnumerator_1_KeyValuePair_2_UnityEngine_Collider_UnityEngine_Texture_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_UnityEngine_Terrain_ { + int32_t hashCode; + int32_t next; + struct Collider *key; + struct Terrain *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_UnityEngine_Terrain___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_UnityEngine_Terrain___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_UnityEngine_Terrain_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_Collider_UnityEngine_Terrain___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_UnityEngine_Terrain___Array *_entries; @@ -688708,19 +696786,6 @@ struct Dictionary_2_UnityEngine_Collider_UnityEngine_Terrain_ { struct Dictionary_2_UnityEngine_Collider_UnityEngine_Terrain___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_UnityEngine_Terrain_ { - int32_t hashCode; - int32_t next; - struct Collider *key; - struct Terrain *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_UnityEngine_Terrain___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_UnityEngine_Terrain___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_UnityEngine_Terrain_ fields; -}; - struct Terrain__Fields { struct Behaviour__Fields _; }; @@ -689012,6 +697077,21 @@ struct ICollection_1_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurf struct ICollection_1_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___VTable vtable; }; +struct ObjectSurface___VTable { +}; + +struct ObjectSurface___StaticFields { +}; + +struct ObjectSurface___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ObjectSurface___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ObjectSurface___VTable vtable; +}; + struct KeyValuePair_2_UnityEngine_Texture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -689621,6 +697701,21 @@ struct ICollection_1_List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVT struct ICollection_1_List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture___VTable vtable; }; +struct List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__1__VTable { +}; + +struct List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__1__StaticFields { +}; + +struct List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture__1__VTable vtable; +}; + struct KeyValuePair_2_UnityEngine_Texture_List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -689969,6 +698064,21 @@ struct ICollection_1_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceEff struct ICollection_1_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceEffect___VTable vtable; }; +struct SurfaceEffect___VTable { +}; + +struct SurfaceEffect___StaticFields { +}; + +struct SurfaceEffect___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SurfaceEffect___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SurfaceEffect___VTable vtable; +}; + struct KeyValuePair_2_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceEffect___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -690333,6 +698443,21 @@ struct ICollection_1_Dictionary_2_Opsive_UltimateCharacterController_SurfaceSyst struct ICollection_1_Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceEffect___VTable vtable; }; +struct Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceEffect__1__VTable { +}; + +struct Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceEffect__1__StaticFields { +}; + +struct Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceEffect__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceEffect__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceEffect__1__VTable vtable; +}; + struct KeyValuePair_2_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceType_Dictionary_2_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceEffect___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -690574,6 +698699,21 @@ struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_Texture_Opsive_Ultim struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_Texture_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceType___VTable vtable; }; +struct SurfaceType___VTable { +}; + +struct SurfaceType___StaticFields { +}; + +struct SurfaceType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SurfaceType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SurfaceType___VTable vtable; +}; + struct KeyValuePair_2_UnityEngine_Texture_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceType___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -690836,6 +698976,21 @@ struct ICollection_1_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceIde struct ICollection_1_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceIdentifier___VTable vtable; }; +struct SurfaceIdentifier___VTable { +}; + +struct SurfaceIdentifier___StaticFields { +}; + +struct SurfaceIdentifier___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SurfaceIdentifier___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SurfaceIdentifier___VTable vtable; +}; + struct KeyValuePair_2_UnityEngine_Collider_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceIdentifier___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -691897,6 +700052,21 @@ struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_Collider_UnityEngine struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_Collider_UnityEngine_Texture___VTable vtable; }; +struct Texture___VTable { +}; + +struct Texture___StaticFields { +}; + +struct Texture___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Texture___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Texture___VTable vtable; +}; + struct KeyValuePair_2_UnityEngine_Collider_UnityEngine_Texture___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -692178,6 +700348,21 @@ struct ICollection_1_UnityEngine_Terrain___Class { struct ICollection_1_UnityEngine_Terrain___VTable vtable; }; +struct Terrain___VTable { +}; + +struct Terrain___StaticFields { +}; + +struct Terrain___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Terrain___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Terrain___VTable vtable; +}; + struct KeyValuePair_2_UnityEngine_Collider_UnityEngine_Terrain___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -696748,6 +704933,19 @@ struct DefaultPreset { struct DefaultPreset__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_Reflection_MethodInfo_System_Int32_ { + int32_t hashCode; + int32_t next; + struct MethodInfo_1 *key; + int32_t value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Reflection_MethodInfo_System_Int32___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Reflection_MethodInfo_System_Int32___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Reflection_MethodInfo_System_Int32_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Reflection_MethodInfo_System_Int32___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Reflection_MethodInfo_System_Int32___Array *_entries; @@ -696767,19 +704965,6 @@ struct Dictionary_2_System_Reflection_MethodInfo_System_Int32_ { struct Dictionary_2_System_Reflection_MethodInfo_System_Int32___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Reflection_MethodInfo_System_Int32_ { - int32_t hashCode; - int32_t next; - struct MethodInfo_1 *key; - int32_t value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Reflection_MethodInfo_System_Int32___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Reflection_MethodInfo_System_Int32___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Reflection_MethodInfo_System_Int32_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Reflection_MethodInfo_System_Int32___Array { struct Dictionary_2_TKey_TValue_Entry_System_Reflection_MethodInfo_System_Int32___Array__Class *klass; MonitorData *monitor; @@ -697145,6 +705330,19 @@ struct PersistablePreset__Class { struct PersistablePreset__VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_Opsive_UltimateCharacterController_StateSystem_State_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct State *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_Opsive_UltimateCharacterController_StateSystem_State___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_Opsive_UltimateCharacterController_StateSystem_State___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_Opsive_UltimateCharacterController_StateSystem_State_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_Opsive_UltimateCharacterController_StateSystem_State___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_Opsive_UltimateCharacterController_StateSystem_State___Array *_entries; @@ -697164,19 +705362,6 @@ struct Dictionary_2_System_String_Opsive_UltimateCharacterController_StateSystem struct Dictionary_2_System_String_Opsive_UltimateCharacterController_StateSystem_State___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_Opsive_UltimateCharacterController_StateSystem_State_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct State *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_Opsive_UltimateCharacterController_StateSystem_State___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_Opsive_UltimateCharacterController_StateSystem_State___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_Opsive_UltimateCharacterController_StateSystem_State_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_String_Opsive_UltimateCharacterController_StateSystem_State___Array { struct Dictionary_2_TKey_TValue_Entry_System_String_Opsive_UltimateCharacterController_StateSystem_State___Array__Class *klass; MonitorData *monitor; @@ -697382,6 +705567,21 @@ struct ICollection_1_Opsive_UltimateCharacterController_StateSystem_State___Clas struct ICollection_1_Opsive_UltimateCharacterController_StateSystem_State___VTable vtable; }; +struct State___VTable { +}; + +struct State___StaticFields { +}; + +struct State___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct State___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct State___VTable vtable; +}; + struct KeyValuePair_2_System_String_Opsive_UltimateCharacterController_StateSystem_State___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -697507,18 +705707,6 @@ struct Dictionary_2_System_String_Opsive_UltimateCharacterController_StateSystem struct Dictionary_2_System_String_Opsive_UltimateCharacterController_StateSystem_State___VTable vtable; }; -struct StateConfiguration__Fields { - struct ScriptableObject__Fields _; - struct StateConfiguration_Profile__Array *m_Profiles; - struct Dictionary_2_System_String_Dictionary_2_System_Type_Opsive_UltimateCharacterController_StateSystem_StateConfiguration_Profile_StateElement_ *m_ProfileStateMap; -}; - -struct StateConfiguration { - struct StateConfiguration__Class *klass; - MonitorData *monitor; - struct StateConfiguration__Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class StateConfiguration_Profile_ProfileType__Enum : int32_t { Character = 0x00000000, @@ -697544,6 +705732,19 @@ struct StateConfiguration_Profile_ProfileType__Enum__Boxed { #endif }; +struct __declspec(align(8)) StateConfiguration_Profile_StateElement__Fields { + struct String *m_Name; + struct PersistablePreset *m_Preset; + struct String__Array *m_BlockList; + bool m_Default; +}; + +struct StateConfiguration_Profile_StateElement { + struct StateConfiguration_Profile_StateElement__Class *klass; + MonitorData *monitor; + struct StateConfiguration_Profile_StateElement__Fields fields; +}; + struct __declspec(align(8)) StateConfiguration_Profile__Fields { struct String *m_Name; #if defined(_CPLUSPLUS_) @@ -697560,17 +705761,16 @@ struct StateConfiguration_Profile { struct StateConfiguration_Profile__Fields fields; }; -struct __declspec(align(8)) StateConfiguration_Profile_StateElement__Fields { - struct String *m_Name; - struct PersistablePreset *m_Preset; - struct String__Array *m_BlockList; - bool m_Default; +struct StateConfiguration__Fields { + struct ScriptableObject__Fields _; + struct StateConfiguration_Profile__Array *m_Profiles; + struct Dictionary_2_System_String_Dictionary_2_System_Type_Opsive_UltimateCharacterController_StateSystem_StateConfiguration_Profile_StateElement_ *m_ProfileStateMap; }; -struct StateConfiguration_Profile_StateElement { - struct StateConfiguration_Profile_StateElement__Class *klass; +struct StateConfiguration { + struct StateConfiguration__Class *klass; MonitorData *monitor; - struct StateConfiguration_Profile_StateElement__Fields fields; + struct StateConfiguration__Fields fields; }; struct StateConfiguration_Profile_StateElement__Array { @@ -697589,6 +705789,19 @@ struct StateConfiguration_Profile__Array { struct StateConfiguration_Profile *vector[32]; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_Dictionary_2_System_Type_Opsive_UltimateCharacterController_StateSystem_StateConfiguration_Profile_StateElement_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct Dictionary_2_System_Type_Opsive_UltimateCharacterController_StateSystem_StateConfiguration_Profile_StateElement_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_Dictionary_2_System_Type_Opsive_UltimateCharacterController_StateSystem_StateConfiguration_Profile_StateElement___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_Dictionary_2_System_Type_Opsive_UltimateCharacterController_StateSystem_StateConfiguration_Profile_StateElement___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_Dictionary_2_System_Type_Opsive_UltimateCharacterController_StateSystem_StateConfiguration_Profile_StateElement_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_Dictionary_2_System_Type_Opsive_UltimateCharacterController_StateSystem_StateConfiguration_Profile_StateElement___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_Dictionary_2_System_Type_Opsive_UltimateCharacterController_StateSystem_StateConfiguration_Profile_StateElement___Array *_entries; @@ -697608,17 +705821,17 @@ struct Dictionary_2_System_String_Dictionary_2_System_Type_Opsive_UltimateCharac struct Dictionary_2_System_String_Dictionary_2_System_Type_Opsive_UltimateCharacterController_StateSystem_StateConfiguration_Profile_StateElement___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_Dictionary_2_System_Type_Opsive_UltimateCharacterController_StateSystem_StateConfiguration_Profile_StateElement_ { +struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_StateSystem_StateConfiguration_Profile_StateElement_ { int32_t hashCode; int32_t next; - struct String *key; - struct Dictionary_2_System_Type_Opsive_UltimateCharacterController_StateSystem_StateConfiguration_Profile_StateElement_ *value; + struct Type *key; + struct StateConfiguration_Profile_StateElement__Array *value; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_Dictionary_2_System_Type_Opsive_UltimateCharacterController_StateSystem_StateConfiguration_Profile_StateElement___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_Dictionary_2_System_Type_Opsive_UltimateCharacterController_StateSystem_StateConfiguration_Profile_StateElement___Class *klass; +struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_StateSystem_StateConfiguration_Profile_StateElement___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_StateSystem_StateConfiguration_Profile_StateElement___Class *klass; MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_Dictionary_2_System_Type_Opsive_UltimateCharacterController_StateSystem_StateConfiguration_Profile_StateElement_ fields; + struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_StateSystem_StateConfiguration_Profile_StateElement_ fields; }; struct __declspec(align(8)) Dictionary_2_System_Type_Opsive_UltimateCharacterController_StateSystem_StateConfiguration_Profile_StateElement___Fields { @@ -697640,19 +705853,6 @@ struct Dictionary_2_System_Type_Opsive_UltimateCharacterController_StateSystem_S struct Dictionary_2_System_Type_Opsive_UltimateCharacterController_StateSystem_StateConfiguration_Profile_StateElement___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_StateSystem_StateConfiguration_Profile_StateElement_ { - int32_t hashCode; - int32_t next; - struct Type *key; - struct StateConfiguration_Profile_StateElement__Array *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_StateSystem_StateConfiguration_Profile_StateElement___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_StateSystem_StateConfiguration_Profile_StateElement___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_StateSystem_StateConfiguration_Profile_StateElement_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_StateSystem_StateConfiguration_Profile_StateElement___Array { struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_StateSystem_StateConfiguration_Profile_StateElement___Array__Class *klass; MonitorData *monitor; @@ -698062,6 +706262,21 @@ struct ICollection_1_Opsive_UltimateCharacterController_StateSystem_StateConfigu struct ICollection_1_Opsive_UltimateCharacterController_StateSystem_StateConfiguration_Profile_StateElement___VTable vtable; }; +struct StateConfiguration_Profile_StateElement___VTable { +}; + +struct StateConfiguration_Profile_StateElement___StaticFields { +}; + +struct StateConfiguration_Profile_StateElement___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StateConfiguration_Profile_StateElement___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StateConfiguration_Profile_StateElement___VTable vtable; +}; + struct KeyValuePair_2_System_Type_Opsive_UltimateCharacterController_StateSystem_StateConfiguration_Profile_StateElement___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -698340,6 +706555,21 @@ struct ICollection_1_Dictionary_2_System_Type_Opsive_UltimateCharacterController struct ICollection_1_Dictionary_2_System_Type_Opsive_UltimateCharacterController_StateSystem_StateConfiguration_Profile_StateElement___VTable vtable; }; +struct Dictionary_2_System_Type_Opsive_UltimateCharacterController_StateSystem_StateConfiguration_Profile_StateElement__1__VTable { +}; + +struct Dictionary_2_System_Type_Opsive_UltimateCharacterController_StateSystem_StateConfiguration_Profile_StateElement__1__StaticFields { +}; + +struct Dictionary_2_System_Type_Opsive_UltimateCharacterController_StateSystem_StateConfiguration_Profile_StateElement__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_System_Type_Opsive_UltimateCharacterController_StateSystem_StateConfiguration_Profile_StateElement__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_System_Type_Opsive_UltimateCharacterController_StateSystem_StateConfiguration_Profile_StateElement__1__VTable vtable; +}; + struct KeyValuePair_2_System_String_Dictionary_2_System_Type_Opsive_UltimateCharacterController_StateSystem_StateConfiguration_Profile_StateElement___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -698501,6 +706731,19 @@ struct StateManager { struct StateManager__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_Object_Dictionary_2_System_String_Opsive_UltimateCharacterController_StateSystem_State_ { + int32_t hashCode; + int32_t next; + struct Object *key; + struct Dictionary_2_System_String_Opsive_UltimateCharacterController_StateSystem_State_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Object_Dictionary_2_System_String_Opsive_UltimateCharacterController_StateSystem_State___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Object_Dictionary_2_System_String_Opsive_UltimateCharacterController_StateSystem_State___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Object_Dictionary_2_System_String_Opsive_UltimateCharacterController_StateSystem_State_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Object_Dictionary_2_System_String_Opsive_UltimateCharacterController_StateSystem_State___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Object_Dictionary_2_System_String_Opsive_UltimateCharacterController_StateSystem_State___Array *_entries; @@ -698520,19 +706763,6 @@ struct Dictionary_2_System_Object_Dictionary_2_System_String_Opsive_UltimateChar struct Dictionary_2_System_Object_Dictionary_2_System_String_Opsive_UltimateCharacterController_StateSystem_State___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Object_Dictionary_2_System_String_Opsive_UltimateCharacterController_StateSystem_State_ { - int32_t hashCode; - int32_t next; - struct Object *key; - struct Dictionary_2_System_String_Opsive_UltimateCharacterController_StateSystem_State_ *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Object_Dictionary_2_System_String_Opsive_UltimateCharacterController_StateSystem_State___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Object_Dictionary_2_System_String_Opsive_UltimateCharacterController_StateSystem_State___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Object_Dictionary_2_System_String_Opsive_UltimateCharacterController_StateSystem_State_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Object_Dictionary_2_System_String_Opsive_UltimateCharacterController_StateSystem_State___Array { struct Dictionary_2_TKey_TValue_Entry_System_Object_Dictionary_2_System_String_Opsive_UltimateCharacterController_StateSystem_State___Array__Class *klass; MonitorData *monitor; @@ -698608,6 +706838,19 @@ struct IEnumerable_1_Dictionary_2_System_String_Opsive_UltimateCharacterControll MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_String_List_1_Opsive_UltimateCharacterController_StateSystem_State_ { + int32_t hashCode; + int32_t next; + struct GameObject *key; + struct Dictionary_2_System_String_List_1_Opsive_UltimateCharacterController_StateSystem_State_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_String_List_1_Opsive_UltimateCharacterController_StateSystem_State___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_String_List_1_Opsive_UltimateCharacterController_StateSystem_State___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_String_List_1_Opsive_UltimateCharacterController_StateSystem_State_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_String_List_1_Opsive_UltimateCharacterController_StateSystem_State___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_String_List_1_Opsive_UltimateCharacterController_StateSystem_State___Array *_entries; @@ -698627,17 +706870,17 @@ struct Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_String_List_1_Ops struct Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_String_List_1_Opsive_UltimateCharacterController_StateSystem_State___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_String_List_1_Opsive_UltimateCharacterController_StateSystem_State_ { +struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Opsive_UltimateCharacterController_StateSystem_State_ { int32_t hashCode; int32_t next; - struct GameObject *key; - struct Dictionary_2_System_String_List_1_Opsive_UltimateCharacterController_StateSystem_State_ *value; + struct String *key; + struct List_1_Opsive_UltimateCharacterController_StateSystem_State_ *value; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_String_List_1_Opsive_UltimateCharacterController_StateSystem_State___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_String_List_1_Opsive_UltimateCharacterController_StateSystem_State___Class *klass; +struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Opsive_UltimateCharacterController_StateSystem_State___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Opsive_UltimateCharacterController_StateSystem_State___Class *klass; MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_String_List_1_Opsive_UltimateCharacterController_StateSystem_State_ fields; + struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Opsive_UltimateCharacterController_StateSystem_State_ fields; }; struct __declspec(align(8)) Dictionary_2_System_String_List_1_Opsive_UltimateCharacterController_StateSystem_State___Fields { @@ -698659,19 +706902,6 @@ struct Dictionary_2_System_String_List_1_Opsive_UltimateCharacterController_Stat struct Dictionary_2_System_String_List_1_Opsive_UltimateCharacterController_StateSystem_State___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Opsive_UltimateCharacterController_StateSystem_State_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct List_1_Opsive_UltimateCharacterController_StateSystem_State_ *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Opsive_UltimateCharacterController_StateSystem_State___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Opsive_UltimateCharacterController_StateSystem_State___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Opsive_UltimateCharacterController_StateSystem_State_ fields; -}; - struct __declspec(align(8)) List_1_Opsive_UltimateCharacterController_StateSystem_State___Fields { struct State__Array *_items; int32_t _size; @@ -698835,6 +707065,19 @@ struct IEnumerable_1_Dictionary_2_System_String_List_1_Opsive_UltimateCharacterC MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_List_1_UnityEngine_GameObject_ { + int32_t hashCode; + int32_t next; + struct GameObject *key; + struct List_1_UnityEngine_GameObject_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_List_1_UnityEngine_GameObject___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_List_1_UnityEngine_GameObject___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_List_1_UnityEngine_GameObject_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_GameObject_List_1_UnityEngine_GameObject___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_List_1_UnityEngine_GameObject___Array *_entries; @@ -698854,19 +707097,6 @@ struct Dictionary_2_UnityEngine_GameObject_List_1_UnityEngine_GameObject_ { struct Dictionary_2_UnityEngine_GameObject_List_1_UnityEngine_GameObject___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_List_1_UnityEngine_GameObject_ { - int32_t hashCode; - int32_t next; - struct GameObject *key; - struct List_1_UnityEngine_GameObject_ *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_List_1_UnityEngine_GameObject___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_List_1_UnityEngine_GameObject___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_List_1_UnityEngine_GameObject_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_List_1_UnityEngine_GameObject___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_List_1_UnityEngine_GameObject___Array__Class *klass; MonitorData *monitor; @@ -698942,6 +707172,19 @@ struct IEnumerable_1_List_1_UnityEngine_GameObject_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_StateSystem_State_Opsive_UltimateCharacterController_StateSystem_State_ { + int32_t hashCode; + int32_t next; + struct State *key; + struct State__Array *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_StateSystem_State_Opsive_UltimateCharacterController_StateSystem_State___Boxed { + struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_StateSystem_State_Opsive_UltimateCharacterController_StateSystem_State___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_StateSystem_State_Opsive_UltimateCharacterController_StateSystem_State_ fields; +}; + struct __declspec(align(8)) Dictionary_2_Opsive_UltimateCharacterController_StateSystem_State_Opsive_UltimateCharacterController_StateSystem_State___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_StateSystem_State_Opsive_UltimateCharacterController_StateSystem_State___Array *_entries; @@ -698961,19 +707204,6 @@ struct Dictionary_2_Opsive_UltimateCharacterController_StateSystem_State_Opsive_ struct Dictionary_2_Opsive_UltimateCharacterController_StateSystem_State_Opsive_UltimateCharacterController_StateSystem_State___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_StateSystem_State_Opsive_UltimateCharacterController_StateSystem_State_ { - int32_t hashCode; - int32_t next; - struct State *key; - struct State__Array *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_StateSystem_State_Opsive_UltimateCharacterController_StateSystem_State___Boxed { - struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_StateSystem_State_Opsive_UltimateCharacterController_StateSystem_State___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_StateSystem_State_Opsive_UltimateCharacterController_StateSystem_State_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_StateSystem_State_Opsive_UltimateCharacterController_StateSystem_State___Array { struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_StateSystem_State_Opsive_UltimateCharacterController_StateSystem_State___Array__Class *klass; MonitorData *monitor; @@ -699054,6 +707284,19 @@ struct IEnumerable_1_Opsive_UltimateCharacterController_StateSystem_State__1 { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_HashSet_1_System_String_ { + int32_t hashCode; + int32_t next; + struct GameObject *key; + struct HashSet_1_System_String_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_HashSet_1_System_String___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_HashSet_1_System_String___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_HashSet_1_System_String_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_GameObject_HashSet_1_System_String___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_HashSet_1_System_String___Array *_entries; @@ -699073,19 +707316,6 @@ struct Dictionary_2_UnityEngine_GameObject_HashSet_1_System_String_ { struct Dictionary_2_UnityEngine_GameObject_HashSet_1_System_String___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_HashSet_1_System_String_ { - int32_t hashCode; - int32_t next; - struct GameObject *key; - struct HashSet_1_System_String_ *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_HashSet_1_System_String___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_HashSet_1_System_String___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_HashSet_1_System_String_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_HashSet_1_System_String___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_HashSet_1_System_String___Array__Class *klass; MonitorData *monitor; @@ -699161,6 +707391,19 @@ struct IEnumerable_1_HashSet_1_System_String_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_String_Opsive_Shared_Game_ScheduledEventBase_ { + int32_t hashCode; + int32_t next; + struct GameObject *key; + struct Dictionary_2_System_String_Opsive_Shared_Game_ScheduledEventBase_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_String_Opsive_Shared_Game_ScheduledEventBase___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_String_Opsive_Shared_Game_ScheduledEventBase___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_String_Opsive_Shared_Game_ScheduledEventBase_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_String_Opsive_Shared_Game_ScheduledEventBase___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_String_Opsive_Shared_Game_ScheduledEventBase___Array *_entries; @@ -699180,17 +707423,17 @@ struct Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_String_Opsive_Sha struct Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_String_Opsive_Shared_Game_ScheduledEventBase___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_String_Opsive_Shared_Game_ScheduledEventBase_ { +struct Dictionary_2_TKey_TValue_Entry_System_String_Opsive_Shared_Game_ScheduledEventBase_ { int32_t hashCode; int32_t next; - struct GameObject *key; - struct Dictionary_2_System_String_Opsive_Shared_Game_ScheduledEventBase_ *value; + struct String *key; + struct ScheduledEventBase *value; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_String_Opsive_Shared_Game_ScheduledEventBase___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_String_Opsive_Shared_Game_ScheduledEventBase___Class *klass; +struct Dictionary_2_TKey_TValue_Entry_System_String_Opsive_Shared_Game_ScheduledEventBase___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_Opsive_Shared_Game_ScheduledEventBase___Class *klass; MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_String_Opsive_Shared_Game_ScheduledEventBase_ fields; + struct Dictionary_2_TKey_TValue_Entry_System_String_Opsive_Shared_Game_ScheduledEventBase_ fields; }; struct __declspec(align(8)) Dictionary_2_System_String_Opsive_Shared_Game_ScheduledEventBase___Fields { @@ -699212,19 +707455,6 @@ struct Dictionary_2_System_String_Opsive_Shared_Game_ScheduledEventBase_ { struct Dictionary_2_System_String_Opsive_Shared_Game_ScheduledEventBase___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_Opsive_Shared_Game_ScheduledEventBase_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct ScheduledEventBase *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_Opsive_Shared_Game_ScheduledEventBase___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_Opsive_Shared_Game_ScheduledEventBase___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_Opsive_Shared_Game_ScheduledEventBase_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_String_Opsive_Shared_Game_ScheduledEventBase___Array { struct Dictionary_2_TKey_TValue_Entry_System_String_Opsive_Shared_Game_ScheduledEventBase___Array__Class *klass; MonitorData *monitor; @@ -699520,6 +707750,21 @@ struct ICollection_1_Dictionary_2_System_String_Opsive_UltimateCharacterControll struct ICollection_1_Dictionary_2_System_String_Opsive_UltimateCharacterController_StateSystem_State___VTable vtable; }; +struct Dictionary_2_System_String_Opsive_UltimateCharacterController_StateSystem_State__1__VTable { +}; + +struct Dictionary_2_System_String_Opsive_UltimateCharacterController_StateSystem_State__1__StaticFields { +}; + +struct Dictionary_2_System_String_Opsive_UltimateCharacterController_StateSystem_State__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_System_String_Opsive_UltimateCharacterController_StateSystem_State__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_System_String_Opsive_UltimateCharacterController_StateSystem_State__1__VTable vtable; +}; + struct KeyValuePair_2_System_Object_Dictionary_2_System_String_Opsive_UltimateCharacterController_StateSystem_State___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -699849,6 +708094,21 @@ struct ICollection_1_List_1_Opsive_UltimateCharacterController_StateSystem_State struct ICollection_1_List_1_Opsive_UltimateCharacterController_StateSystem_State___VTable vtable; }; +struct List_1_Opsive_UltimateCharacterController_StateSystem_State__1__VTable { +}; + +struct List_1_Opsive_UltimateCharacterController_StateSystem_State__1__StaticFields { +}; + +struct List_1_Opsive_UltimateCharacterController_StateSystem_State__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Opsive_UltimateCharacterController_StateSystem_State__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Opsive_UltimateCharacterController_StateSystem_State__1__VTable vtable; +}; + struct KeyValuePair_2_System_String_List_1_Opsive_UltimateCharacterController_StateSystem_State___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -700127,6 +708387,21 @@ struct ICollection_1_Dictionary_2_System_String_List_1_Opsive_UltimateCharacterC struct ICollection_1_Dictionary_2_System_String_List_1_Opsive_UltimateCharacterController_StateSystem_State___VTable vtable; }; +struct Dictionary_2_System_String_List_1_Opsive_UltimateCharacterController_StateSystem_State__1__VTable { +}; + +struct Dictionary_2_System_String_List_1_Opsive_UltimateCharacterController_StateSystem_State__1__StaticFields { +}; + +struct Dictionary_2_System_String_List_1_Opsive_UltimateCharacterController_StateSystem_State__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_System_String_List_1_Opsive_UltimateCharacterController_StateSystem_State__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_System_String_List_1_Opsive_UltimateCharacterController_StateSystem_State__1__VTable vtable; +}; + struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_String_List_1_Opsive_UltimateCharacterController_StateSystem_State___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -700405,6 +708680,21 @@ struct ICollection_1_List_1_UnityEngine_GameObject___Class { struct ICollection_1_List_1_UnityEngine_GameObject___VTable vtable; }; +struct List_1_UnityEngine_GameObject__1__VTable { +}; + +struct List_1_UnityEngine_GameObject__1__StaticFields { +}; + +struct List_1_UnityEngine_GameObject__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_GameObject__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_GameObject__1__VTable vtable; +}; + struct KeyValuePair_2_UnityEngine_GameObject_List_1_UnityEngine_GameObject___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -700700,6 +708990,21 @@ struct ICollection_1_Opsive_UltimateCharacterController_StateSystem_State__1__Cl struct ICollection_1_Opsive_UltimateCharacterController_StateSystem_State__1__VTable vtable; }; +struct State__1__VTable { +}; + +struct State__1__StaticFields { +}; + +struct State__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct State__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct State__1__VTable vtable; +}; + struct KeyValuePair_2_Opsive_UltimateCharacterController_StateSystem_State_Opsive_UltimateCharacterController_StateSystem_State___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -700978,6 +709283,21 @@ struct ICollection_1_HashSet_1_System_String___Class { struct ICollection_1_HashSet_1_System_String___VTable vtable; }; +struct HashSet_1_System_String__1__VTable { +}; + +struct HashSet_1_System_String__1__StaticFields { +}; + +struct HashSet_1_System_String__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_System_String__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_System_String__1__VTable vtable; +}; + struct KeyValuePair_2_UnityEngine_GameObject_HashSet_1_System_String___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -701241,6 +709561,21 @@ struct ICollection_1_Opsive_Shared_Game_ScheduledEventBase___Class { struct ICollection_1_Opsive_Shared_Game_ScheduledEventBase___VTable vtable; }; +struct ScheduledEventBase___VTable { +}; + +struct ScheduledEventBase___StaticFields { +}; + +struct ScheduledEventBase___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ScheduledEventBase___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ScheduledEventBase___VTable vtable; +}; + struct KeyValuePair_2_System_String_Opsive_Shared_Game_ScheduledEventBase___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -701519,6 +709854,21 @@ struct ICollection_1_Dictionary_2_System_String_Opsive_Shared_Game_ScheduledEven struct ICollection_1_Dictionary_2_System_String_Opsive_Shared_Game_ScheduledEventBase___VTable vtable; }; +struct Dictionary_2_System_String_Opsive_Shared_Game_ScheduledEventBase__1__VTable { +}; + +struct Dictionary_2_System_String_Opsive_Shared_Game_ScheduledEventBase__1__StaticFields { +}; + +struct Dictionary_2_System_String_Opsive_Shared_Game_ScheduledEventBase__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_System_String_Opsive_Shared_Game_ScheduledEventBase__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_System_String_Opsive_Shared_Game_ScheduledEventBase__1__VTable vtable; +}; + struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_String_Opsive_Shared_Game_ScheduledEventBase___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -701686,6 +710036,19 @@ struct StateTrigger { struct StateTrigger__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_System_Int32_ { + int32_t hashCode; + int32_t next; + struct GameObject *key; + int32_t value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_System_Int32___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_System_Int32___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_System_Int32_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_GameObject_System_Int32___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_System_Int32___Array *_entries; @@ -701705,19 +710068,6 @@ struct Dictionary_2_UnityEngine_GameObject_System_Int32_ { struct Dictionary_2_UnityEngine_GameObject_System_Int32___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_System_Int32_ { - int32_t hashCode; - int32_t next; - struct GameObject *key; - int32_t value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_System_Int32___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_System_Int32___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_System_Int32_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_System_Int32___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_System_Int32___Array__Class *klass; MonitorData *monitor; @@ -702677,6 +711027,48 @@ struct UsableItem { struct UsableItem__Fields fields; }; +struct BeginEndAction__Fields { + struct StateObject__Fields _; + struct MagicItem *m_MagicItem; + bool m_BeginAction; + int32_t m_Index; +}; + +struct BeginEndAction { + struct BeginEndAction__Class *klass; + MonitorData *monitor; + struct BeginEndAction__Fields fields; +}; + +struct CastAction__Fields { + struct StateObject__Fields _; + float m_Delay; + struct GameObject *m_GameObject; + struct MagicItem *m_MagicItem; + int32_t m_Index; + uint32_t m_CastID; +}; + +struct CastAction { + struct CastAction__Class *klass; + MonitorData *monitor; + struct CastAction__Fields fields; +}; + +struct ImpactAction__Fields { + struct StateObject__Fields _; + struct MagicItem *m_MagicItem; + int32_t m_Index; + struct Dictionary_2_System_UInt32_HashSet_1_UnityEngine_Transform_ *m_ImpactedObjectsMap; + struct HashSet_1_UnityEngine_Transform_ *m_ImpactedObjects; +}; + +struct ImpactAction { + struct ImpactAction__Class *klass; + MonitorData *monitor; + struct ImpactAction__Fields fields; +}; + struct MagicItem__Fields { struct UsableItem__Fields _; bool m_RequireGrounded; @@ -702775,19 +711167,6 @@ struct IMagicItemPerspectiveProperties { MonitorData *monitor; }; -struct BeginEndAction__Fields { - struct StateObject__Fields _; - struct MagicItem *m_MagicItem; - bool m_BeginAction; - int32_t m_Index; -}; - -struct BeginEndAction { - struct BeginEndAction__Class *klass; - MonitorData *monitor; - struct BeginEndAction__Fields fields; -}; - struct BeginEndAction__Array { struct BeginEndAction__Array__Class *klass; MonitorData *monitor; @@ -702796,21 +711175,6 @@ struct BeginEndAction__Array { struct BeginEndAction *vector[32]; }; -struct CastAction__Fields { - struct StateObject__Fields _; - float m_Delay; - struct GameObject *m_GameObject; - struct MagicItem *m_MagicItem; - int32_t m_Index; - uint32_t m_CastID; -}; - -struct CastAction { - struct CastAction__Class *klass; - MonitorData *monitor; - struct CastAction__Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class PhysicsCast_CastMode__Enum : int32_t { Raycast = 0x00000000, @@ -702874,18 +711238,17 @@ struct CastAction__Array { struct CastAction *vector[32]; }; -struct ImpactAction__Fields { - struct StateObject__Fields _; - struct MagicItem *m_MagicItem; - int32_t m_Index; - struct Dictionary_2_System_UInt32_HashSet_1_UnityEngine_Transform_ *m_ImpactedObjectsMap; - struct HashSet_1_UnityEngine_Transform_ *m_ImpactedObjects; +struct Dictionary_2_TKey_TValue_Entry_System_UInt32_HashSet_1_UnityEngine_Transform_ { + int32_t hashCode; + int32_t next; + uint32_t key; + struct HashSet_1_UnityEngine_Transform_ *value; }; -struct ImpactAction { - struct ImpactAction__Class *klass; +struct Dictionary_2_TKey_TValue_Entry_System_UInt32_HashSet_1_UnityEngine_Transform___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_UInt32_HashSet_1_UnityEngine_Transform___Class *klass; MonitorData *monitor; - struct ImpactAction__Fields fields; + struct Dictionary_2_TKey_TValue_Entry_System_UInt32_HashSet_1_UnityEngine_Transform_ fields; }; struct __declspec(align(8)) Dictionary_2_System_UInt32_HashSet_1_UnityEngine_Transform___Fields { @@ -702907,19 +711270,6 @@ struct Dictionary_2_System_UInt32_HashSet_1_UnityEngine_Transform_ { struct Dictionary_2_System_UInt32_HashSet_1_UnityEngine_Transform___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_UInt32_HashSet_1_UnityEngine_Transform_ { - int32_t hashCode; - int32_t next; - uint32_t key; - struct HashSet_1_UnityEngine_Transform_ *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_UInt32_HashSet_1_UnityEngine_Transform___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_UInt32_HashSet_1_UnityEngine_Transform___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_UInt32_HashSet_1_UnityEngine_Transform_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_UInt32_HashSet_1_UnityEngine_Transform___Array { struct Dictionary_2_TKey_TValue_Entry_System_UInt32_HashSet_1_UnityEngine_Transform___Array__Class *klass; MonitorData *monitor; @@ -703468,6 +711818,21 @@ struct ICollection_1_HashSet_1_UnityEngine_Transform___Class { struct ICollection_1_HashSet_1_UnityEngine_Transform___VTable vtable; }; +struct HashSet_1_UnityEngine_Transform__1__VTable { +}; + +struct HashSet_1_UnityEngine_Transform__1__StaticFields { +}; + +struct HashSet_1_UnityEngine_Transform__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_UnityEngine_Transform__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_UnityEngine_Transform__1__VTable vtable; +}; + struct KeyValuePair_2_System_UInt32_HashSet_1_UnityEngine_Transform___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -703877,24 +712242,6 @@ struct Shell__Class { struct Shell__VTable vtable; }; -struct Smoke__Fields { - struct MonoBehaviour__Fields _; - struct GameObject *m_GameObject; - struct Transform *m_Transform; - struct Item *m_Item; - int32_t m_ItemActionID; - struct ParticleSystem__Array *m_Particles; - struct ParticleSystemSimulationSpace__Enum__Array *m_SimulationSpace; - struct GameObject *m_Character; - int32_t m_StartLayer; -}; - -struct Smoke { - struct Smoke__Class *klass; - MonitorData *monitor; - struct Smoke__Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class ParticleSystemSimulationSpace__Enum : int32_t { Local = 0x00000000, @@ -703920,6 +712267,24 @@ struct ParticleSystemSimulationSpace__Enum__Boxed { #endif }; +struct Smoke__Fields { + struct MonoBehaviour__Fields _; + struct GameObject *m_GameObject; + struct Transform *m_Transform; + struct Item *m_Item; + int32_t m_ItemActionID; + struct ParticleSystem__Array *m_Particles; + struct ParticleSystemSimulationSpace__Enum__Array *m_SimulationSpace; + struct GameObject *m_Character; + int32_t m_StartLayer; +}; + +struct Smoke { + struct Smoke__Class *klass; + MonitorData *monitor; + struct Smoke__Fields fields; +}; + struct ParticleSystemSimulationSpace__Enum__Array { struct ParticleSystemSimulationSpace__Enum__Array__Class *klass; MonitorData *monitor; @@ -704137,6 +712502,19 @@ struct GravityZone__Class { struct GravityZone__VTable vtable; }; +struct __declspec(align(8)) ItemPickupBase_PickupSet__Fields { + struct GameObject *m_Item; + uint32_t m_CategoryID; + struct ItemSet *m_ItemSet; + bool m_Default; +}; + +struct ItemPickupBase_PickupSet { + struct ItemPickupBase_PickupSet__Class *klass; + MonitorData *monitor; + struct ItemPickupBase_PickupSet__Fields fields; +}; + struct ItemPickupBase__Fields { struct ObjectPickup__Fields _; struct ItemPickupBase_PickupSet__Array *m_ItemPickupSet; @@ -704161,19 +712539,6 @@ struct ItemPickup { struct ItemPickup__Fields fields; }; -struct __declspec(align(8)) ItemPickupBase_PickupSet__Fields { - struct GameObject *m_Item; - uint32_t m_CategoryID; - struct ItemSet *m_ItemSet; - bool m_Default; -}; - -struct ItemPickupBase_PickupSet { - struct ItemPickupBase_PickupSet__Class *klass; - MonitorData *monitor; - struct ItemPickupBase_PickupSet__Fields fields; -}; - struct ItemPickupBase_PickupSet__Array { struct ItemPickupBase_PickupSet__Array__Class *klass; MonitorData *monitor; @@ -705076,6 +713441,19 @@ struct IShootableWeaponPerspectiveProperties { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_Items_Item_System_Int32_ { + int32_t hashCode; + int32_t next; + struct Item *key; + int32_t value; +}; + +struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_Items_Item_System_Int32___Boxed { + struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_Items_Item_System_Int32___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_Items_Item_System_Int32_ fields; +}; + struct __declspec(align(8)) Dictionary_2_Opsive_UltimateCharacterController_Items_Item_System_Int32___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_Items_Item_System_Int32___Array *_entries; @@ -705095,19 +713473,6 @@ struct Dictionary_2_Opsive_UltimateCharacterController_Items_Item_System_Int32_ struct Dictionary_2_Opsive_UltimateCharacterController_Items_Item_System_Int32___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_Items_Item_System_Int32_ { - int32_t hashCode; - int32_t next; - struct Item *key; - int32_t value; -}; - -struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_Items_Item_System_Int32___Boxed { - struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_Items_Item_System_Int32___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_Items_Item_System_Int32_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_Items_Item_System_Int32___Array { struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_Items_Item_System_Int32___Array__Class *klass; MonitorData *monitor; @@ -705818,6 +714183,19 @@ struct SpawnParticle { struct SpawnParticle__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_ParticleSystem_ { + int32_t hashCode; + int32_t next; + uint32_t key; + struct ParticleSystem *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_ParticleSystem___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_ParticleSystem___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_ParticleSystem_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_UInt32_UnityEngine_ParticleSystem___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_ParticleSystem___Array *_entries; @@ -705837,19 +714215,6 @@ struct Dictionary_2_System_UInt32_UnityEngine_ParticleSystem_ { struct Dictionary_2_System_UInt32_UnityEngine_ParticleSystem___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_ParticleSystem_ { - int32_t hashCode; - int32_t next; - uint32_t key; - struct ParticleSystem *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_ParticleSystem___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_ParticleSystem___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_ParticleSystem_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_ParticleSystem___Array { struct Dictionary_2_TKey_TValue_Entry_System_UInt32_UnityEngine_ParticleSystem___Array__Class *klass; MonitorData *monitor; @@ -706002,6 +714367,21 @@ struct Dictionary_2_TKey_TValue_ValueCollection_System_UInt32_UnityEngine_Partic struct Dictionary_2_TKey_TValue_ValueCollection_System_UInt32_UnityEngine_ParticleSystem___VTable vtable; }; +struct ParticleSystem___VTable { +}; + +struct ParticleSystem___StaticFields { +}; + +struct ParticleSystem___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ParticleSystem___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ParticleSystem___VTable vtable; +}; + struct KeyValuePair_2_System_UInt32_UnityEngine_ParticleSystem___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -706576,6 +714956,18 @@ struct FadeMaterials { struct FadeMaterials__Fields fields; }; +struct HashSet_1_T_Slot_UnityEngine_Material_ { + int32_t hashCode; + int32_t next; + struct Material *value; +}; + +struct HashSet_1_T_Slot_UnityEngine_Material___Boxed { + struct HashSet_1_T_Slot_UnityEngine_Material___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_UnityEngine_Material_ fields; +}; + struct __declspec(align(8)) HashSet_1_UnityEngine_Material___Fields { struct Int32__Array *_buckets; struct HashSet_1_T_Slot_UnityEngine_Material___Array *_slots; @@ -706593,18 +714985,6 @@ struct HashSet_1_UnityEngine_Material_ { struct HashSet_1_UnityEngine_Material___Fields fields; }; -struct HashSet_1_T_Slot_UnityEngine_Material_ { - int32_t hashCode; - int32_t next; - struct Material *value; -}; - -struct HashSet_1_T_Slot_UnityEngine_Material___Boxed { - struct HashSet_1_T_Slot_UnityEngine_Material___Class *klass; - MonitorData *monitor; - struct HashSet_1_T_Slot_UnityEngine_Material_ fields; -}; - struct HashSet_1_T_Slot_UnityEngine_Material___Array { struct HashSet_1_T_Slot_UnityEngine_Material___Array__Class *klass; MonitorData *monitor; @@ -706613,6 +714993,19 @@ struct HashSet_1_T_Slot_UnityEngine_Material___Array { struct HashSet_1_T_Slot_UnityEngine_Material_ vector[32]; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ { + int32_t hashCode; + int32_t next; + struct Material *key; + struct OriginalMaterialValue value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_Material_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___Array *_entries; @@ -706632,19 +715025,6 @@ struct Dictionary_2_UnityEngine_Material_Opsive_UltimateCharacterController_Util struct Dictionary_2_UnityEngine_Material_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ { - int32_t hashCode; - int32_t next; - struct Material *key; - struct OriginalMaterialValue value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___Array__Class *klass; MonitorData *monitor; @@ -706951,6 +715331,21 @@ struct ICollection_1_Opsive_UltimateCharacterController_Utility_OriginalMaterial struct ICollection_1_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___VTable vtable; }; +struct OriginalMaterialValue___VTable { +}; + +struct OriginalMaterialValue___StaticFields { +}; + +struct OriginalMaterialValue___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct OriginalMaterialValue___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct OriginalMaterialValue___VTable vtable; +}; + struct KeyValuePair_2_UnityEngine_Material_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -707461,6 +715856,19 @@ struct VirtualControlsManager { struct VirtualControlsManager__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_Opsive_UltimateCharacterController_Input_VirtualControls_VirtualControl_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct VirtualControl *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_Opsive_UltimateCharacterController_Input_VirtualControls_VirtualControl___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_Opsive_UltimateCharacterController_Input_VirtualControls_VirtualControl___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_Opsive_UltimateCharacterController_Input_VirtualControls_VirtualControl_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_Opsive_UltimateCharacterController_Input_VirtualControls_VirtualControl___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_Opsive_UltimateCharacterController_Input_VirtualControls_VirtualControl___Array *_entries; @@ -707480,19 +715888,6 @@ struct Dictionary_2_System_String_Opsive_UltimateCharacterController_Input_Virtu struct Dictionary_2_System_String_Opsive_UltimateCharacterController_Input_VirtualControls_VirtualControl___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_Opsive_UltimateCharacterController_Input_VirtualControls_VirtualControl_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct VirtualControl *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_Opsive_UltimateCharacterController_Input_VirtualControls_VirtualControl___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_Opsive_UltimateCharacterController_Input_VirtualControls_VirtualControl___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_Opsive_UltimateCharacterController_Input_VirtualControls_VirtualControl_ fields; -}; - struct VirtualControl__Fields { struct MonoBehaviour__Fields _; struct VirtualControlsManager *m_VirtualControlsManager; @@ -707754,6 +716149,21 @@ struct ICollection_1_Opsive_UltimateCharacterController_Input_VirtualControls_Vi struct ICollection_1_Opsive_UltimateCharacterController_Input_VirtualControls_VirtualControl___VTable vtable; }; +struct VirtualControl___VTable { +}; + +struct VirtualControl___StaticFields { +}; + +struct VirtualControl___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct VirtualControl___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct VirtualControl___VTable vtable; +}; + struct KeyValuePair_2_System_String_Opsive_UltimateCharacterController_Input_VirtualControls_VirtualControl___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -708132,28 +716542,6 @@ struct KinematicObject__Class { struct KinematicObject__VTable vtable; }; -struct KinematicObjectManager__Fields { - struct MonoBehaviour__Fields _; - int32_t m_StartCharacterCount; - int32_t m_StartCameraCount; - int32_t m_StartKinematicObjectCount; - bool m_AutoSyncTransforms; - struct KinematicObjectManager_KinematicCharacter__Array *m_Characters; - struct KinematicObjectManager_KinematicCamera__Array *m_Cameras; - struct KinematicObjectManager_KinematicObject__Array *m_KinematicObjects; - int32_t m_CharacterCount; - int32_t m_CameraCount; - int32_t m_KinematicObjectCount; - float m_FixedTime; - bool m_FixedUpdate; -}; - -struct KinematicObjectManager { - struct KinematicObjectManager__Class *klass; - MonitorData *monitor; - struct KinematicObjectManager__Fields fields; -}; - struct __declspec(align(8)) KinematicObjectManager_SmoothFixedLocation__Fields { struct Transform *m_Transform; struct Vector3 m_FixedPosition; @@ -708188,6 +716576,52 @@ struct KinematicObjectManager_KinematicCharacter { struct KinematicObjectManager_KinematicCharacter__Fields fields; }; +struct KinematicObjectManager_KinematicCamera__Fields { + struct KinematicObjectManager_SmoothFixedLocation__Fields _; + struct CameraController *m_CameraController; + struct UltimateCharacterLocomotion *m_CharacterLocomotion; + struct Vector2 m_LookVector; +}; + +struct KinematicObjectManager_KinematicCamera { + struct KinematicObjectManager_KinematicCamera__Class *klass; + MonitorData *monitor; + struct KinematicObjectManager_KinematicCamera__Fields fields; +}; + +struct KinematicObjectManager_KinematicObject__Fields { + struct KinematicObjectManager_SmoothFixedLocation__Fields _; + struct IKinematicObject *m_KinematicObject; +}; + +struct KinematicObjectManager_KinematicObject { + struct KinematicObjectManager_KinematicObject__Class *klass; + MonitorData *monitor; + struct KinematicObjectManager_KinematicObject__Fields fields; +}; + +struct KinematicObjectManager__Fields { + struct MonoBehaviour__Fields _; + int32_t m_StartCharacterCount; + int32_t m_StartCameraCount; + int32_t m_StartKinematicObjectCount; + bool m_AutoSyncTransforms; + struct KinematicObjectManager_KinematicCharacter__Array *m_Characters; + struct KinematicObjectManager_KinematicCamera__Array *m_Cameras; + struct KinematicObjectManager_KinematicObject__Array *m_KinematicObjects; + int32_t m_CharacterCount; + int32_t m_CameraCount; + int32_t m_KinematicObjectCount; + float m_FixedTime; + bool m_FixedUpdate; +}; + +struct KinematicObjectManager { + struct KinematicObjectManager__Class *klass; + MonitorData *monitor; + struct KinematicObjectManager__Fields fields; +}; + struct KinematicObjectManager_SmoothFixedLocation__Array { struct KinematicObjectManager_SmoothFixedLocation__Array__Class *klass; MonitorData *monitor; @@ -708204,19 +716638,6 @@ struct KinematicObjectManager_KinematicCharacter__Array { struct KinematicObjectManager_KinematicCharacter *vector[32]; }; -struct KinematicObjectManager_KinematicCamera__Fields { - struct KinematicObjectManager_SmoothFixedLocation__Fields _; - struct CameraController *m_CameraController; - struct UltimateCharacterLocomotion *m_CharacterLocomotion; - struct Vector2 m_LookVector; -}; - -struct KinematicObjectManager_KinematicCamera { - struct KinematicObjectManager_KinematicCamera__Class *klass; - MonitorData *monitor; - struct KinematicObjectManager_KinematicCamera__Fields fields; -}; - struct KinematicObjectManager_KinematicCamera__Array { struct KinematicObjectManager_KinematicCamera__Array__Class *klass; MonitorData *monitor; @@ -708225,17 +716646,6 @@ struct KinematicObjectManager_KinematicCamera__Array { struct KinematicObjectManager_KinematicCamera *vector[32]; }; -struct KinematicObjectManager_KinematicObject__Fields { - struct KinematicObjectManager_SmoothFixedLocation__Fields _; - struct IKinematicObject *m_KinematicObject; -}; - -struct KinematicObjectManager_KinematicObject { - struct KinematicObjectManager_KinematicObject__Class *klass; - MonitorData *monitor; - struct KinematicObjectManager_KinematicObject__Fields fields; -}; - struct IKinematicObject { struct IKinematicObject__Class *klass; MonitorData *monitor; @@ -708455,6 +716865,19 @@ struct LayerManager { struct LayerManager__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_List_1_UnityEngine_Collider_ { + int32_t hashCode; + int32_t next; + struct Collider *key; + struct List_1_UnityEngine_Collider_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_List_1_UnityEngine_Collider___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_List_1_UnityEngine_Collider___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_List_1_UnityEngine_Collider_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_Collider_List_1_UnityEngine_Collider___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_List_1_UnityEngine_Collider___Array *_entries; @@ -708474,19 +716897,6 @@ struct Dictionary_2_UnityEngine_Collider_List_1_UnityEngine_Collider_ { struct Dictionary_2_UnityEngine_Collider_List_1_UnityEngine_Collider___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_List_1_UnityEngine_Collider_ { - int32_t hashCode; - int32_t next; - struct Collider *key; - struct List_1_UnityEngine_Collider_ *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_List_1_UnityEngine_Collider___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_List_1_UnityEngine_Collider___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_List_1_UnityEngine_Collider_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_List_1_UnityEngine_Collider___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Collider_List_1_UnityEngine_Collider___Array__Class *klass; MonitorData *monitor; @@ -708715,6 +717125,21 @@ struct ICollection_1_List_1_UnityEngine_Collider___Class { struct ICollection_1_List_1_UnityEngine_Collider___VTable vtable; }; +struct List_1_UnityEngine_Collider__1__VTable { +}; + +struct List_1_UnityEngine_Collider__1__StaticFields { +}; + +struct List_1_UnityEngine_Collider__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_Collider__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_Collider__1__VTable vtable; +}; + struct KeyValuePair_2_UnityEngine_Collider_List_1_UnityEngine_Collider___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -708875,6 +717300,19 @@ struct SpawnPointManager { struct SpawnPointManager__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_Opsive_UltimateCharacterController_Game_SpawnPoint_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct List_1_Opsive_UltimateCharacterController_Game_SpawnPoint_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_Opsive_UltimateCharacterController_Game_SpawnPoint___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_Opsive_UltimateCharacterController_Game_SpawnPoint___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_Opsive_UltimateCharacterController_Game_SpawnPoint_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_List_1_Opsive_UltimateCharacterController_Game_SpawnPoint___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_Opsive_UltimateCharacterController_Game_SpawnPoint___Array *_entries; @@ -708894,19 +717332,6 @@ struct Dictionary_2_System_Int32_List_1_Opsive_UltimateCharacterController_Game_ struct Dictionary_2_System_Int32_List_1_Opsive_UltimateCharacterController_Game_SpawnPoint___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_Opsive_UltimateCharacterController_Game_SpawnPoint_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct List_1_Opsive_UltimateCharacterController_Game_SpawnPoint_ *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_Opsive_UltimateCharacterController_Game_SpawnPoint___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_Opsive_UltimateCharacterController_Game_SpawnPoint___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_Opsive_UltimateCharacterController_Game_SpawnPoint_ fields; -}; - struct __declspec(align(8)) List_1_Opsive_UltimateCharacterController_Game_SpawnPoint___Fields { struct SpawnPoint__Array *_items; int32_t _size; @@ -709008,6 +717433,19 @@ struct IEnumerable_1_List_1_Opsive_UltimateCharacterController_Game_SpawnPoint_ MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_Opsive_UltimateCharacterController_Game_SpawnPoint_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct SpawnPoint *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_Opsive_UltimateCharacterController_Game_SpawnPoint___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_Opsive_UltimateCharacterController_Game_SpawnPoint___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_Opsive_UltimateCharacterController_Game_SpawnPoint_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_Opsive_UltimateCharacterController_Game_SpawnPoint___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_Opsive_UltimateCharacterController_Game_SpawnPoint___Array *_entries; @@ -709027,19 +717465,6 @@ struct Dictionary_2_System_Int32_Opsive_UltimateCharacterController_Game_SpawnPo struct Dictionary_2_System_Int32_Opsive_UltimateCharacterController_Game_SpawnPoint___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_Opsive_UltimateCharacterController_Game_SpawnPoint_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct SpawnPoint *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_Opsive_UltimateCharacterController_Game_SpawnPoint___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_Opsive_UltimateCharacterController_Game_SpawnPoint___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_Opsive_UltimateCharacterController_Game_SpawnPoint_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_Opsive_UltimateCharacterController_Game_SpawnPoint___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_Opsive_UltimateCharacterController_Game_SpawnPoint___Array__Class *klass; MonitorData *monitor; @@ -709337,6 +717762,21 @@ struct ICollection_1_List_1_Opsive_UltimateCharacterController_Game_SpawnPoint__ struct ICollection_1_List_1_Opsive_UltimateCharacterController_Game_SpawnPoint___VTable vtable; }; +struct List_1_Opsive_UltimateCharacterController_Game_SpawnPoint__1__VTable { +}; + +struct List_1_Opsive_UltimateCharacterController_Game_SpawnPoint__1__StaticFields { +}; + +struct List_1_Opsive_UltimateCharacterController_Game_SpawnPoint__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Opsive_UltimateCharacterController_Game_SpawnPoint__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Opsive_UltimateCharacterController_Game_SpawnPoint__1__VTable vtable; +}; + struct KeyValuePair_2_System_Int32_List_1_Opsive_UltimateCharacterController_Game_SpawnPoint___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -709584,6 +718024,21 @@ struct ICollection_1_Opsive_UltimateCharacterController_Game_SpawnPoint___Class struct ICollection_1_Opsive_UltimateCharacterController_Game_SpawnPoint___VTable vtable; }; +struct SpawnPoint___VTable { +}; + +struct SpawnPoint___StaticFields { +}; + +struct SpawnPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SpawnPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SpawnPoint___VTable vtable; +}; + struct KeyValuePair_2_System_Int32_Opsive_UltimateCharacterController_Game_SpawnPoint___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -710305,6 +718760,18 @@ struct MaterialSwapper { struct MaterialSwapper__Fields fields; }; +struct HashSet_1_T_Slot_UnityEngine_Renderer_ { + int32_t hashCode; + int32_t next; + struct Renderer *value; +}; + +struct HashSet_1_T_Slot_UnityEngine_Renderer___Boxed { + struct HashSet_1_T_Slot_UnityEngine_Renderer___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_UnityEngine_Renderer_ fields; +}; + struct __declspec(align(8)) HashSet_1_UnityEngine_Renderer___Fields { struct Int32__Array *_buckets; struct HashSet_1_T_Slot_UnityEngine_Renderer___Array *_slots; @@ -710322,18 +718789,6 @@ struct HashSet_1_UnityEngine_Renderer_ { struct HashSet_1_UnityEngine_Renderer___Fields fields; }; -struct HashSet_1_T_Slot_UnityEngine_Renderer_ { - int32_t hashCode; - int32_t next; - struct Renderer *value; -}; - -struct HashSet_1_T_Slot_UnityEngine_Renderer___Boxed { - struct HashSet_1_T_Slot_UnityEngine_Renderer___Class *klass; - MonitorData *monitor; - struct HashSet_1_T_Slot_UnityEngine_Renderer_ fields; -}; - struct HashSet_1_T_Slot_UnityEngine_Renderer___Array { struct HashSet_1_T_Slot_UnityEngine_Renderer___Array__Class *klass; MonitorData *monitor; @@ -710744,6 +719199,21 @@ struct CapsuleColliderPositioner__Class { struct CapsuleColliderPositioner__VTable vtable; }; +struct Collider___VTable { +}; + +struct Collider___StaticFields { +}; + +struct Collider___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Collider___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Collider___VTable vtable; +}; + struct FootstepTrigger__Fields { struct MonoBehaviour__Fields _; bool m_FlipFootprint; @@ -710808,6 +719278,51 @@ struct ItemHandler__Class { struct ItemHandler__VTable vtable; }; +struct RaycastHit___VTable { +}; + +struct RaycastHit___StaticFields { +}; + +struct RaycastHit___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RaycastHit___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RaycastHit___VTable vtable; +}; + +struct RaycastHit__1__VTable { +}; + +struct RaycastHit__1__StaticFields { +}; + +struct RaycastHit__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RaycastHit__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RaycastHit__1__VTable vtable; +}; + +struct Dictionary_2_UnityEngine_RaycastHit_System_Int32__1__VTable { +}; + +struct Dictionary_2_UnityEngine_RaycastHit_System_Int32__1__StaticFields { +}; + +struct Dictionary_2_UnityEngine_RaycastHit_System_Int32__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_UnityEngine_RaycastHit_System_Int32__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_UnityEngine_RaycastHit_System_Int32__1__VTable vtable; +}; + struct CharacterColliderBaseIdentifier__Fields { struct MonoBehaviour__Fields _; }; @@ -713779,6 +722294,19 @@ struct AudioManager { struct AudioManager__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Opsive_UltimateCharacterController_Audio_AudioManager_AudioSourcesIndex_ { + int32_t hashCode; + int32_t next; + struct GameObject *key; + struct AudioManager_AudioSourcesIndex *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Opsive_UltimateCharacterController_Audio_AudioManager_AudioSourcesIndex___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Opsive_UltimateCharacterController_Audio_AudioManager_AudioSourcesIndex___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Opsive_UltimateCharacterController_Audio_AudioManager_AudioSourcesIndex_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_GameObject_Opsive_UltimateCharacterController_Audio_AudioManager_AudioSourcesIndex___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Opsive_UltimateCharacterController_Audio_AudioManager_AudioSourcesIndex___Array *_entries; @@ -713798,19 +722326,6 @@ struct Dictionary_2_UnityEngine_GameObject_Opsive_UltimateCharacterController_Au struct Dictionary_2_UnityEngine_GameObject_Opsive_UltimateCharacterController_Audio_AudioManager_AudioSourcesIndex___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Opsive_UltimateCharacterController_Audio_AudioManager_AudioSourcesIndex_ { - int32_t hashCode; - int32_t next; - struct GameObject *key; - struct AudioManager_AudioSourcesIndex *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Opsive_UltimateCharacterController_Audio_AudioManager_AudioSourcesIndex___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Opsive_UltimateCharacterController_Audio_AudioManager_AudioSourcesIndex___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Opsive_UltimateCharacterController_Audio_AudioManager_AudioSourcesIndex_ fields; -}; - struct __declspec(align(8)) AudioManager_AudioSourcesIndex__Fields { struct GameObject *m_GameObject; struct AudioSource__Array *m_AudioSources; @@ -714072,6 +722587,21 @@ struct ICollection_1_Opsive_UltimateCharacterController_Audio_AudioManager_Audio struct ICollection_1_Opsive_UltimateCharacterController_Audio_AudioManager_AudioSourcesIndex___VTable vtable; }; +struct AudioManager_AudioSourcesIndex___VTable { +}; + +struct AudioManager_AudioSourcesIndex___StaticFields { +}; + +struct AudioManager_AudioSourcesIndex___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct AudioManager_AudioSourcesIndex___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct AudioManager_AudioSourcesIndex___VTable vtable; +}; + struct KeyValuePair_2_UnityEngine_GameObject_Opsive_UltimateCharacterController_Audio_AudioManager_AudioSourcesIndex___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -714751,6 +723281,51 @@ struct ProfilerRecorder_CountOptions__Enum__Class { struct ProfilerRecorder_CountOptions__Enum__VTable vtable; }; +struct ProfilerRecorderHandle___VTable { +}; + +struct ProfilerRecorderHandle___StaticFields { +}; + +struct ProfilerRecorderHandle___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ProfilerRecorderHandle___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ProfilerRecorderHandle___VTable vtable; +}; + +struct ProfilerRecorder___VTable { +}; + +struct ProfilerRecorder___StaticFields { +}; + +struct ProfilerRecorder___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ProfilerRecorder___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ProfilerRecorder___VTable vtable; +}; + +struct ProfilerRecorderSample___VTable { +}; + +struct ProfilerRecorderSample___StaticFields { +}; + +struct ProfilerRecorderSample___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ProfilerRecorderSample___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ProfilerRecorderSample___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class MarkerFlags__Enum : uint16_t { Default = 0x0000, @@ -715015,6 +723590,21 @@ struct ProfilerRecorderDescription__Class { struct ProfilerRecorderDescription__VTable vtable; }; +struct ProfilerRecorderDescription___VTable { +}; + +struct ProfilerRecorderDescription___StaticFields { +}; + +struct ProfilerRecorderDescription___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ProfilerRecorderDescription___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ProfilerRecorderDescription___VTable vtable; +}; + struct ProfilerCategoryDescription { uint16_t Id; uint16_t Flags; @@ -715049,6 +723639,21 @@ struct ProfilerCategoryDescription__Class { struct ProfilerCategoryDescription__VTable vtable; }; +struct ProfilerCategoryDescription___VTable { +}; + +struct ProfilerCategoryDescription___StaticFields { +}; + +struct ProfilerCategoryDescription___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ProfilerCategoryDescription___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ProfilerCategoryDescription___VTable vtable; +}; + struct JobsUtility_PanicFunction___Fields { struct MulticastDelegate__Fields _; }; @@ -715676,6 +724281,21 @@ struct Keyframe__Array__Class { struct Keyframe__Array__VTable vtable; }; +struct Keyframe___VTable { +}; + +struct Keyframe___StaticFields { +}; + +struct Keyframe___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Keyframe___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Keyframe___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class LogType__Enum : int32_t { Error = 0x00000000, @@ -716036,6 +724656,36 @@ struct Cache__Class { struct Cache__VTable vtable; }; +struct Hash128___VTable { +}; + +struct Hash128___StaticFields { +}; + +struct Hash128___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Hash128___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Hash128___VTable vtable; +}; + +struct Cache___VTable { +}; + +struct Cache___StaticFields { +}; + +struct Cache___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Cache___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Cache___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class RenderingPath__Enum : int32_t { UsePlayerSettings = -1, @@ -716516,6 +725166,21 @@ struct CommandBuffer__Array__Class { struct CommandBuffer__Array__VTable vtable; }; +struct Ray___VTable { +}; + +struct Ray___StaticFields { +}; + +struct Ray___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Ray___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Ray___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class CullingQueryOptions__Enum : int32_t { Normal = 0x00000000, @@ -717013,6 +725678,36 @@ struct RenderBuffer__Class { struct RenderBuffer__VTable vtable; }; +struct RenderBuffer___VTable { +}; + +struct RenderBuffer___StaticFields { +}; + +struct RenderBuffer___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RenderBuffer___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RenderBuffer___VTable vtable; +}; + +struct Resolution___VTable { +}; + +struct Resolution___StaticFields { +}; + +struct Resolution___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Resolution___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Resolution___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class GraphicsTier__Enum : int32_t { Tier1 = 0x00000000, @@ -717121,6 +725816,21 @@ struct Internal_DrawTextureArguments__Class { struct Internal_DrawTextureArguments__VTable vtable; }; +struct Internal_DrawTextureArguments___VTable { +}; + +struct Internal_DrawTextureArguments___StaticFields { +}; + +struct Internal_DrawTextureArguments___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Internal_DrawTextureArguments___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Internal_DrawTextureArguments___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class LightProbeUsage__Enum : int32_t { Off = 0x00000000, @@ -717660,6 +726370,21 @@ struct SphericalHarmonicsL2__Class { struct SphericalHarmonicsL2__VTable vtable; }; +struct SphericalHarmonicsL2___VTable { +}; + +struct SphericalHarmonicsL2___StaticFields { +}; + +struct SphericalHarmonicsL2___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SphericalHarmonicsL2___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SphericalHarmonicsL2___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class ShaderHardwareTier__Enum : int32_t { Tier1 = 0x00000000, @@ -717806,6 +726531,21 @@ struct LocalKeywordSpace__Class { struct LocalKeywordSpace__VTable vtable; }; +struct GlobalKeyword___VTable { +}; + +struct GlobalKeyword___StaticFields { +}; + +struct GlobalKeyword___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GlobalKeyword___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GlobalKeyword___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class DisableBatchingType__Enum : int32_t { False = 0x00000000, @@ -718139,6 +726879,21 @@ struct ShaderPropertyFlags__Enum__Class { struct ShaderPropertyFlags__Enum__VTable vtable; }; +struct LocalKeywordSpace___VTable { +}; + +struct LocalKeywordSpace___StaticFields { +}; + +struct LocalKeywordSpace___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct LocalKeywordSpace___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct LocalKeywordSpace___VTable vtable; +}; + struct LocalKeyword { struct LocalKeywordSpace m_SpaceInfo; struct String *m_Name; @@ -718171,6 +726926,21 @@ struct LocalKeyword__Class { struct LocalKeyword__VTable vtable; }; +struct LocalKeyword___VTable { +}; + +struct LocalKeyword___StaticFields { +}; + +struct LocalKeyword___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct LocalKeyword___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct LocalKeyword___VTable vtable; +}; + struct LocalKeyword__Array { struct LocalKeyword__Array__Class *klass; MonitorData *monitor; @@ -718896,6 +727666,21 @@ struct ComputeQueueType__Enum__Class { struct ComputeQueueType__Enum__VTable vtable; }; +struct LightBakingOutput___VTable { +}; + +struct LightBakingOutput___StaticFields { +}; + +struct LightBakingOutput___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct LightBakingOutput___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct LightBakingOutput___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class SkinQuality__Enum : int32_t { Auto = 0x00000000, @@ -719944,6 +728729,36 @@ struct List_1_UnityEngine_Rendering_SubMeshDescriptor___Class { struct List_1_UnityEngine_Rendering_SubMeshDescriptor___VTable vtable; }; +struct VertexAttributeDescriptor___VTable { +}; + +struct VertexAttributeDescriptor___StaticFields { +}; + +struct VertexAttributeDescriptor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct VertexAttributeDescriptor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct VertexAttributeDescriptor___VTable vtable; +}; + +struct SubMeshDescriptor___VTable { +}; + +struct SubMeshDescriptor___StaticFields { +}; + +struct SubMeshDescriptor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SubMeshDescriptor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SubMeshDescriptor___VTable vtable; +}; + struct BoneWeight1 { float m_Weight; int32_t m_BoneIndex; @@ -720495,6 +729310,21 @@ struct CubemapArray__Class { struct CubemapArray__VTable vtable; }; +struct RenderTextureDescriptor___VTable { +}; + +struct RenderTextureDescriptor___StaticFields { +}; + +struct RenderTextureDescriptor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RenderTextureDescriptor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RenderTextureDescriptor___VTable vtable; +}; + struct Hash128Ptr { struct Hash128Ptr__Class *klass; MonitorData *monitor; @@ -720983,6 +729813,21 @@ struct FrustumPlanes__Class { struct FrustumPlanes__VTable vtable; }; +struct FrustumPlanes___VTable { +}; + +struct FrustumPlanes___StaticFields { +}; + +struct FrustumPlanes___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct FrustumPlanes___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct FrustumPlanes___VTable vtable; +}; + struct PlayerConnectionInternal { struct PlayerConnectionInternal__Class *klass; MonitorData *monitor; @@ -721384,6 +730229,21 @@ struct ColorUsageAttribute__Class { struct ColorUsageAttribute__VTable vtable; }; +struct Random_State___VTable { +}; + +struct Random_State___StaticFields { +}; + +struct Random_State___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Random_State___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Random_State___VTable vtable; +}; + struct __declspec(align(8)) AsyncOperation_1__Fields { void *m_Ptr; struct Action_1_UnityEngine_AsyncOperation_ *m_completeCallback; @@ -722003,6 +730863,36 @@ struct PrimitiveType__Enum__Class { struct PrimitiveType__Enum__VTable vtable; }; +struct Component___VTable { +}; + +struct Component___StaticFields { +}; + +struct Component___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Component___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Component___VTable vtable; +}; + +struct Scene___VTable { +}; + +struct Scene___StaticFields { +}; + +struct Scene___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Scene___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Scene___VTable vtable; +}; + struct RangeInt { int32_t start; int32_t length; @@ -722570,6 +731460,18 @@ struct UnitySynchronizationContext { struct UnitySynchronizationContext__Fields fields; }; +struct UnitySynchronizationContext_WorkRequest { + struct SendOrPostCallback *m_DelagateCallback; + struct Object *m_DelagateState; + struct ManualResetEvent *m_WaitHandle; +}; + +struct UnitySynchronizationContext_WorkRequest__Boxed { + struct UnitySynchronizationContext_WorkRequest__Class *klass; + MonitorData *monitor; + struct UnitySynchronizationContext_WorkRequest fields; +}; + struct __declspec(align(8)) List_1_UnityEngine_UnitySynchronizationContext_WorkRequest___Fields { struct UnitySynchronizationContext_WorkRequest__Array *_items; int32_t _size; @@ -722583,18 +731485,6 @@ struct List_1_UnityEngine_UnitySynchronizationContext_WorkRequest_ { struct List_1_UnityEngine_UnitySynchronizationContext_WorkRequest___Fields fields; }; -struct UnitySynchronizationContext_WorkRequest { - struct SendOrPostCallback *m_DelagateCallback; - struct Object *m_DelagateState; - struct ManualResetEvent *m_WaitHandle; -}; - -struct UnitySynchronizationContext_WorkRequest__Boxed { - struct UnitySynchronizationContext_WorkRequest__Class *klass; - MonitorData *monitor; - struct UnitySynchronizationContext_WorkRequest fields; -}; - struct UnitySynchronizationContext_WorkRequest__Array { struct UnitySynchronizationContext_WorkRequest__Array__Class *klass; MonitorData *monitor; @@ -723442,6 +732332,21 @@ struct TouchScreenKeyboard_InternalConstructorHelperArguments__Class { struct TouchScreenKeyboard_InternalConstructorHelperArguments__VTable vtable; }; +struct TouchScreenKeyboard_InternalConstructorHelperArguments___VTable { +}; + +struct TouchScreenKeyboard_InternalConstructorHelperArguments___StaticFields { +}; + +struct TouchScreenKeyboard_InternalConstructorHelperArguments___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TouchScreenKeyboard_InternalConstructorHelperArguments___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TouchScreenKeyboard_InternalConstructorHelperArguments___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class TouchScreenKeyboard_Status__Enum : int32_t { Visible = 0x00000000, @@ -724191,6 +733096,21 @@ struct TransformAccessArray__Class { struct TransformAccessArray__VTable vtable; }; +struct TransformAccessArray___VTable { +}; + +struct TransformAccessArray___StaticFields { +}; + +struct TransformAccessArray___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TransformAccessArray___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TransformAccessArray___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class SpeechError__Enum : int32_t { NoError = 0x00000000, @@ -724457,6 +733377,17 @@ struct ConfidenceLevel__Enum__Boxed { #endif }; +struct SemanticMeaning { + struct String *key; + struct String__Array *values; +}; + +struct SemanticMeaning__Boxed { + struct SemanticMeaning__Class *klass; + MonitorData *monitor; + struct SemanticMeaning fields; +}; + struct PhraseRecognizedEventArgs { #if defined(_CPLUSPLUS_) ConfidenceLevel__Enum confidence; @@ -724475,17 +733406,6 @@ struct PhraseRecognizedEventArgs__Boxed { struct PhraseRecognizedEventArgs fields; }; -struct SemanticMeaning { - struct String *key; - struct String__Array *values; -}; - -struct SemanticMeaning__Boxed { - struct SemanticMeaning__Class *klass; - MonitorData *monitor; - struct SemanticMeaning fields; -}; - struct SemanticMeaning__Array { struct SemanticMeaning__Array__Class *klass; MonitorData *monitor; @@ -725839,6 +734759,21 @@ struct LoadSceneParameters__Class { struct LoadSceneParameters__VTable vtable; }; +struct LoadSceneParameters___VTable { +}; + +struct LoadSceneParameters___StaticFields { +}; + +struct LoadSceneParameters___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct LoadSceneParameters___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct LoadSceneParameters___VTable vtable; +}; + struct SceneManagerAPI { struct SceneManagerAPI__Class *klass; MonitorData *monitor; @@ -726170,6 +735105,18 @@ struct PlayerEditorConnectionEvents { struct PlayerEditorConnectionEvents__Fields fields; }; +struct __declspec(align(8)) PlayerEditorConnectionEvents_MessageTypeSubscribers__Fields { + struct String *m_messageTypeId; + int32_t subscriberCount; + struct PlayerEditorConnectionEvents_MessageEvent *messageCallback; +}; + +struct PlayerEditorConnectionEvents_MessageTypeSubscribers { + struct PlayerEditorConnectionEvents_MessageTypeSubscribers__Class *klass; + MonitorData *monitor; + struct PlayerEditorConnectionEvents_MessageTypeSubscribers__Fields fields; +}; + struct __declspec(align(8)) List_1_UnityEngine_Networking_PlayerConnection_PlayerEditorConnectionEvents_MessageTypeSubscribers___Fields { struct PlayerEditorConnectionEvents_MessageTypeSubscribers__Array *_items; int32_t _size; @@ -726183,18 +735130,6 @@ struct List_1_UnityEngine_Networking_PlayerConnection_PlayerEditorConnectionEven struct List_1_UnityEngine_Networking_PlayerConnection_PlayerEditorConnectionEvents_MessageTypeSubscribers___Fields fields; }; -struct __declspec(align(8)) PlayerEditorConnectionEvents_MessageTypeSubscribers__Fields { - struct String *m_messageTypeId; - int32_t subscriberCount; - struct PlayerEditorConnectionEvents_MessageEvent *messageCallback; -}; - -struct PlayerEditorConnectionEvents_MessageTypeSubscribers { - struct PlayerEditorConnectionEvents_MessageTypeSubscribers__Class *klass; - MonitorData *monitor; - struct PlayerEditorConnectionEvents_MessageTypeSubscribers__Fields fields; -}; - struct UnityEvent_1_UnityEngine_Networking_PlayerConnection_MessageEventArgs___Fields { struct UnityEventBase__Fields _; struct Object__Array *m_InvokeArray; @@ -726861,6 +735796,21 @@ struct Action_1_UnityEngine_Rendering_AsyncGPUReadbackRequest___Class { struct Action_1_UnityEngine_Rendering_AsyncGPUReadbackRequest___VTable vtable; }; +struct AsyncGPUReadbackRequest___VTable { +}; + +struct AsyncGPUReadbackRequest___StaticFields { +}; + +struct AsyncGPUReadbackRequest___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct AsyncGPUReadbackRequest___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct AsyncGPUReadbackRequest___VTable vtable; +}; + struct AsyncRequestNativeArrayData { struct Void *nativeArrayBuffer; int64_t lengthInBytes; @@ -727509,6 +736459,21 @@ struct SinglePassStereoMode__Enum__Class { struct SinglePassStereoMode__Enum__VTable vtable; }; +struct RenderTargetIdentifier___VTable { +}; + +struct RenderTargetIdentifier___StaticFields { +}; + +struct RenderTargetIdentifier___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RenderTargetIdentifier___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RenderTargetIdentifier___VTable vtable; +}; + struct RendererList { void *context; uint32_t index; @@ -727914,6 +736879,21 @@ struct RenderBufferStoreAction__Enum__Array__Class { struct RenderBufferStoreAction__Enum__Array__VTable vtable; }; +struct RendererList___VTable { +}; + +struct RendererList___StaticFields { +}; + +struct RendererList___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RendererList___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RendererList___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class FastMemoryFlags__Enum : int32_t { None = 0x00000000, @@ -728237,6 +737217,18 @@ struct JobHandle__Boxed { struct JobHandle fields; }; +struct BatchVisibility { + int32_t offset; + int32_t instancesCount; + int32_t visibleCount; +}; + +struct BatchVisibility__Boxed { + struct BatchVisibility__Class *klass; + MonitorData *monitor; + struct BatchVisibility fields; +}; + struct BatchRendererCullingOutput { struct JobHandle cullingJobsFence; struct Matrix4x4 cullingMatrix; @@ -728261,18 +737253,6 @@ struct PlanePtr { MonitorData *monitor; }; -struct BatchVisibility { - int32_t offset; - int32_t instancesCount; - int32_t visibleCount; -}; - -struct BatchVisibility__Boxed { - struct BatchVisibility__Class *klass; - MonitorData *monitor; - struct BatchVisibility fields; -}; - struct BatchVisibilityPtr { struct BatchVisibilityPtr__Class *klass; MonitorData *monitor; @@ -728413,6 +737393,36 @@ struct BatchRendererCullingOutput__Class { struct BatchRendererCullingOutput__VTable vtable; }; +struct BatchRendererCullingOutput___VTable { +}; + +struct BatchRendererCullingOutput___StaticFields { +}; + +struct BatchRendererCullingOutput___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BatchRendererCullingOutput___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BatchRendererCullingOutput___VTable vtable; +}; + +struct LODParameters___VTable { +}; + +struct LODParameters___StaticFields { +}; + +struct LODParameters___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct LODParameters___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct LODParameters___VTable vtable; +}; + struct RenderTargetBlendState { uint8_t m_WriteMask; uint8_t m_SourceColorBlendMode; @@ -728490,32 +737500,6 @@ struct BlendState__Class { struct BlendState__VTable vtable; }; -struct CullingResults { - void *ptr; - struct CullingAllocationInfo *m_AllocationInfo; -}; - -struct CullingResults__Boxed { - struct CullingResults__Class *klass; - MonitorData *monitor; - struct CullingResults fields; -}; - -struct CullingAllocationInfo { - struct VisibleLight *visibleLightsPtr; - struct VisibleLight *visibleOffscreenVertexLightsPtr; - struct VisibleReflectionProbe *visibleReflectionProbesPtr; - int32_t visibleLightCount; - int32_t visibleOffscreenVertexLightCount; - int32_t visibleReflectionProbeCount; -}; - -struct CullingAllocationInfo__Boxed { - struct CullingAllocationInfo__Class *klass; - MonitorData *monitor; - struct CullingAllocationInfo fields; -}; - #if defined(_CPLUSPLUS_) enum class VisibleLightFlags__Enum : int32_t { IntersectsNearPlane = 0x00000001, @@ -728564,11 +737548,6 @@ struct VisibleLight__Boxed { struct VisibleLight fields; }; -struct VisibleLightPtr { - struct VisibleLightPtr__Class *klass; - MonitorData *monitor; -}; - struct VisibleReflectionProbe { struct Bounds m_Bounds; struct Matrix4x4 m_LocalToWorldMatrix; @@ -728587,6 +737566,37 @@ struct VisibleReflectionProbe__Boxed { struct VisibleReflectionProbe fields; }; +struct CullingAllocationInfo { + struct VisibleLight *visibleLightsPtr; + struct VisibleLight *visibleOffscreenVertexLightsPtr; + struct VisibleReflectionProbe *visibleReflectionProbesPtr; + int32_t visibleLightCount; + int32_t visibleOffscreenVertexLightCount; + int32_t visibleReflectionProbeCount; +}; + +struct CullingAllocationInfo__Boxed { + struct CullingAllocationInfo__Class *klass; + MonitorData *monitor; + struct CullingAllocationInfo fields; +}; + +struct CullingResults { + void *ptr; + struct CullingAllocationInfo *m_AllocationInfo; +}; + +struct CullingResults__Boxed { + struct CullingResults__Class *klass; + MonitorData *monitor; + struct CullingResults fields; +}; + +struct VisibleLightPtr { + struct VisibleLightPtr__Class *klass; + MonitorData *monitor; +}; + struct VisibleReflectionProbePtr { struct VisibleReflectionProbePtr__Class *klass; MonitorData *monitor; @@ -729446,19 +738456,6 @@ struct ScriptableRenderContext__Boxed { struct ScriptableRenderContext fields; }; -struct __declspec(align(8)) List_1_UnityEngine_Camera_RenderRequest___Fields { - struct Camera_RenderRequest__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_Camera_RenderRequest_ { - struct List_1_UnityEngine_Camera_RenderRequest___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_Camera_RenderRequest___Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class Camera_RenderRequestMode__Enum : int32_t { None = 0x00000000, @@ -729565,6 +738562,19 @@ struct Camera_RenderRequest__Boxed { struct Camera_RenderRequest fields; }; +struct __declspec(align(8)) List_1_UnityEngine_Camera_RenderRequest___Fields { + struct Camera_RenderRequest__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_Camera_RenderRequest_ { + struct List_1_UnityEngine_Camera_RenderRequest___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_Camera_RenderRequest___Fields fields; +}; + struct Camera_RenderRequest__Array { struct Camera_RenderRequest__Array__Class *klass; MonitorData *monitor; @@ -730012,6 +739022,51 @@ struct RenderStateBlock__Class { struct RenderStateBlock__VTable vtable; }; +struct SortingSettings___VTable { +}; + +struct SortingSettings___StaticFields { +}; + +struct SortingSettings___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SortingSettings___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SortingSettings___VTable vtable; +}; + +struct DrawingSettings___VTable { +}; + +struct DrawingSettings___StaticFields { +}; + +struct DrawingSettings___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DrawingSettings___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DrawingSettings___VTable vtable; +}; + +struct FilteringSettings___VTable { +}; + +struct FilteringSettings___StaticFields { +}; + +struct FilteringSettings___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct FilteringSettings___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct FilteringSettings___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class RendererListStatus__Enum : int32_t { kRendererListInvalid = -2, @@ -730077,6 +739132,21 @@ struct RendererListStatus__Enum__Class { struct RendererListStatus__Enum__VTable vtable; }; +struct RenderStateBlock___VTable { +}; + +struct RenderStateBlock___StaticFields { +}; + +struct RenderStateBlock___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RenderStateBlock___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RenderStateBlock___VTable vtable; +}; + struct Nullable_1_UnityEngine_Rendering_RenderStateBlock_ { bool hasValue; struct RenderStateBlock value; @@ -730286,6 +739356,36 @@ struct List_1_UnityEngine_Rendering_RendererUtils_RendererList___Class { struct List_1_UnityEngine_Rendering_RendererUtils_RendererList___VTable vtable; }; +struct ScriptableRenderContext___VTable { +}; + +struct ScriptableRenderContext___StaticFields { +}; + +struct ScriptableRenderContext___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ScriptableRenderContext___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ScriptableRenderContext___VTable vtable; +}; + +struct ShaderTagId___VTable { +}; + +struct ShaderTagId___StaticFields { +}; + +struct ShaderTagId___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ShaderTagId___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ShaderTagId___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class CompareFunction__Enum : int32_t { Disabled = 0x00000000, @@ -730733,6 +739833,21 @@ struct RendererListParams__Class { struct RendererListParams__VTable vtable; }; +struct RendererListDesc___VTable { +}; + +struct RendererListDesc___StaticFields { +}; + +struct RendererListDesc___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RendererListDesc___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RendererListDesc___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class FrameData_EvaluationType__Enum : int32_t { Evaluate = 0x00000000, @@ -730916,6 +740031,66 @@ struct IExposedPropertyTable__Class { struct IExposedPropertyTable__VTable vtable; }; +struct PlayableOutputHandle___VTable { +}; + +struct PlayableOutputHandle___StaticFields { +}; + +struct PlayableOutputHandle___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PlayableOutputHandle___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PlayableOutputHandle___VTable vtable; +}; + +struct PlayableGraph___VTable { +}; + +struct PlayableGraph___StaticFields { +}; + +struct PlayableGraph___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PlayableGraph___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PlayableGraph___VTable vtable; +}; + +struct PlayableHandle___VTable { +}; + +struct PlayableHandle___StaticFields { +}; + +struct PlayableHandle___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PlayableHandle___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PlayableHandle___VTable vtable; +}; + +struct FrameRate___VTable { +}; + +struct FrameRate___StaticFields { +}; + +struct FrameRate___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct FrameRate___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct FrameRate___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class PlayableTraversalMode__Enum : int32_t { Mix = 0x00000000, @@ -731435,6 +740610,21 @@ struct DirectionalLight__Class { struct DirectionalLight__VTable vtable; }; +struct DirectionalLight___VTable { +}; + +struct DirectionalLight___StaticFields { +}; + +struct DirectionalLight___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DirectionalLight___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DirectionalLight___VTable vtable; +}; + struct Cookie_1__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -731454,6 +740644,21 @@ struct Cookie_1__Class { struct Cookie_1__VTable vtable; }; +struct Cookie___VTable { +}; + +struct Cookie___StaticFields { +}; + +struct Cookie___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Cookie___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Cookie___VTable vtable; +}; + struct PointLight { int32_t instanceID; bool shadow; @@ -731500,6 +740705,21 @@ struct PointLight__Class { struct PointLight__VTable vtable; }; +struct PointLight___VTable { +}; + +struct PointLight___StaticFields { +}; + +struct PointLight___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PointLight___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PointLight___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class AngularFalloffType__Enum : uint8_t { LUT = 0x00, @@ -731614,6 +740834,21 @@ struct SpotLight__Class { struct SpotLight__VTable vtable; }; +struct SpotLight___VTable { +}; + +struct SpotLight___StaticFields { +}; + +struct SpotLight___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SpotLight___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SpotLight___VTable vtable; +}; + struct RectangleLight { int32_t instanceID; bool shadow; @@ -731661,6 +740896,21 @@ struct RectangleLight__Class { struct RectangleLight__VTable vtable; }; +struct RectangleLight___VTable { +}; + +struct RectangleLight___StaticFields { +}; + +struct RectangleLight___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RectangleLight___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RectangleLight___VTable vtable; +}; + struct DiscLight { int32_t instanceID; bool shadow; @@ -731707,6 +740957,36 @@ struct DiscLight__Class { struct DiscLight__VTable vtable; }; +struct DiscLight___VTable { +}; + +struct DiscLight___StaticFields { +}; + +struct DiscLight___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DiscLight___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DiscLight___VTable vtable; +}; + +struct LinearColor___VTable { +}; + +struct LinearColor___StaticFields { +}; + +struct LinearColor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct LinearColor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct LinearColor___VTable vtable; +}; + struct Lightmapping_RequestLightsDelegate__Fields { struct MulticastDelegate__Fields _; }; @@ -733772,6 +743052,19 @@ struct ZipFile { struct ZipFile__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_Pathfinding_Ionic_Zip_ZipEntry_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct ZipEntry *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_Pathfinding_Ionic_Zip_ZipEntry___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_Pathfinding_Ionic_Zip_ZipEntry___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_Pathfinding_Ionic_Zip_ZipEntry_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_Pathfinding_Ionic_Zip_ZipEntry___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_Pathfinding_Ionic_Zip_ZipEntry___Array *_entries; @@ -733791,19 +743084,6 @@ struct Dictionary_2_System_String_Pathfinding_Ionic_Zip_ZipEntry_ { struct Dictionary_2_System_String_Pathfinding_Ionic_Zip_ZipEntry___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_Pathfinding_Ionic_Zip_ZipEntry_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct ZipEntry *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_Pathfinding_Ionic_Zip_ZipEntry___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_Pathfinding_Ionic_Zip_ZipEntry___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_Pathfinding_Ionic_Zip_ZipEntry_ fields; -}; - #if defined(_CPLUSPLUS_) enum class ZipEntrySource__Enum : int32_t { None = 0x00000000, @@ -734190,19 +743470,6 @@ struct ParallelDeflateOutputStream { struct ParallelDeflateOutputStream__Fields fields; }; -struct __declspec(align(8)) List_1_Pathfinding_Ionic_Zlib_WorkItem___Fields { - struct WorkItem__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Pathfinding_Ionic_Zlib_WorkItem_ { - struct List_1_Pathfinding_Ionic_Zlib_WorkItem___Class *klass; - MonitorData *monitor; - struct List_1_Pathfinding_Ionic_Zlib_WorkItem___Fields fields; -}; - struct __declspec(align(8)) WorkItem__Fields { struct Byte__Array *buffer; struct Byte__Array *compressed; @@ -734220,6 +743487,19 @@ struct WorkItem { struct WorkItem__Fields fields; }; +struct __declspec(align(8)) List_1_Pathfinding_Ionic_Zlib_WorkItem___Fields { + struct WorkItem__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Pathfinding_Ionic_Zlib_WorkItem_ { + struct List_1_Pathfinding_Ionic_Zlib_WorkItem___Class *klass; + MonitorData *monitor; + struct List_1_Pathfinding_Ionic_Zlib_WorkItem___Fields fields; +}; + struct __declspec(align(8)) ZlibCodec__Fields { struct Byte__Array *InputBuffer; int32_t NextIn; @@ -735012,6 +744292,19 @@ struct ZipErrorEventArgs { struct ZipErrorEventArgs__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_Pathfinding_NavGraph_System_Int32_ { + int32_t hashCode; + int32_t next; + struct NavGraph *key; + int32_t value; +}; + +struct Dictionary_2_TKey_TValue_Entry_Pathfinding_NavGraph_System_Int32___Boxed { + struct Dictionary_2_TKey_TValue_Entry_Pathfinding_NavGraph_System_Int32___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_Pathfinding_NavGraph_System_Int32_ fields; +}; + struct __declspec(align(8)) Dictionary_2_Pathfinding_NavGraph_System_Int32___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_Pathfinding_NavGraph_System_Int32___Array *_entries; @@ -735031,19 +744324,6 @@ struct Dictionary_2_Pathfinding_NavGraph_System_Int32_ { struct Dictionary_2_Pathfinding_NavGraph_System_Int32___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_Pathfinding_NavGraph_System_Int32_ { - int32_t hashCode; - int32_t next; - struct NavGraph *key; - int32_t value; -}; - -struct Dictionary_2_TKey_TValue_Entry_Pathfinding_NavGraph_System_Int32___Boxed { - struct Dictionary_2_TKey_TValue_Entry_Pathfinding_NavGraph_System_Int32___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_Pathfinding_NavGraph_System_Int32_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_Pathfinding_NavGraph_System_Int32___Array { struct Dictionary_2_TKey_TValue_Entry_Pathfinding_NavGraph_System_Int32___Array__Class *klass; MonitorData *monitor; @@ -736699,6 +745979,21 @@ struct ICollection_1_Pathfinding_Ionic_Zip_ZipEntry___Class { struct ICollection_1_Pathfinding_Ionic_Zip_ZipEntry___VTable vtable; }; +struct ZipEntry___VTable { +}; + +struct ZipEntry___StaticFields { +}; + +struct ZipEntry___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ZipEntry___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ZipEntry___VTable vtable; +}; + struct KeyValuePair_2_System_String_Pathfinding_Ionic_Zip_ZipEntry___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -737849,6 +747144,21 @@ struct Side__Enum__Class { struct Side__Enum__VTable vtable; }; +struct Int3___VTable { +}; + +struct Int3___StaticFields { +}; + +struct Int3___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Int3___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Int3___VTable vtable; +}; + struct Action_2_System_Collections_Generic_List_1_Boolean___Fields { struct MulticastDelegate__Fields _; }; @@ -737952,6 +747262,18 @@ struct GraphUpdateScene__Class { struct GraphUpdateScene__VTable vtable; }; +struct __declspec(align(8)) AnimationLink_LinkClip__Fields { + struct AnimationClip *clip; + struct Vector3 velocity; + int32_t loopCount; +}; + +struct AnimationLink_LinkClip { + struct AnimationLink_LinkClip__Class *klass; + MonitorData *monitor; + struct AnimationLink_LinkClip__Fields fields; +}; + struct AnimationLink__Fields { struct NodeLink2__Fields _; struct String *clip; @@ -737968,18 +747290,6 @@ struct AnimationLink { struct AnimationLink__Fields fields; }; -struct __declspec(align(8)) AnimationLink_LinkClip__Fields { - struct AnimationClip *clip; - struct Vector3 velocity; - int32_t loopCount; -}; - -struct AnimationLink_LinkClip { - struct AnimationLink_LinkClip__Class *klass; - MonitorData *monitor; - struct AnimationLink_LinkClip__Fields fields; -}; - struct AnimationLink_LinkClip__Array { struct AnimationLink_LinkClip__Array__Class *klass; MonitorData *monitor; @@ -738057,6 +747367,30 @@ struct AnimationLink__Class { struct AnimationLink__VTable vtable; }; +struct AstarDebugger_GraphPoint { + float fps; + float memory; + bool collectEvent; +}; + +struct AstarDebugger_GraphPoint__Boxed { + struct AstarDebugger_GraphPoint__Class *klass; + MonitorData *monitor; + struct AstarDebugger_GraphPoint fields; +}; + +struct AstarDebugger_PathTypeDebug { + struct String *name; + struct Func_1_Int32_ *getSize; + struct Func_1_Int32_ *getTotalCreated; +}; + +struct AstarDebugger_PathTypeDebug__Boxed { + struct AstarDebugger_PathTypeDebug__Class *klass; + MonitorData *monitor; + struct AstarDebugger_PathTypeDebug fields; +}; + struct AstarDebugger__Fields { struct VersionedMonoBehaviour__Fields _; int32_t yOffset; @@ -738103,18 +747437,6 @@ struct AstarDebugger { struct AstarDebugger__Fields fields; }; -struct AstarDebugger_GraphPoint { - float fps; - float memory; - bool collectEvent; -}; - -struct AstarDebugger_GraphPoint__Boxed { - struct AstarDebugger_GraphPoint__Class *klass; - MonitorData *monitor; - struct AstarDebugger_GraphPoint fields; -}; - struct AstarDebugger_GraphPoint__Array { struct AstarDebugger_GraphPoint__Array__Class *klass; MonitorData *monitor; @@ -738123,18 +747445,6 @@ struct AstarDebugger_GraphPoint__Array { struct AstarDebugger_GraphPoint vector[32]; }; -struct AstarDebugger_PathTypeDebug { - struct String *name; - struct Func_1_Int32_ *getSize; - struct Func_1_Int32_ *getTotalCreated; -}; - -struct AstarDebugger_PathTypeDebug__Boxed { - struct AstarDebugger_PathTypeDebug__Class *klass; - MonitorData *monitor; - struct AstarDebugger_PathTypeDebug fields; -}; - struct AstarDebugger_PathTypeDebug__Array { struct AstarDebugger_PathTypeDebug__Array__Class *klass; MonitorData *monitor; @@ -738515,6 +747825,19 @@ struct GraphUtilities_c_DisplayClass1_0 { struct GraphUtilities_c_DisplayClass1_0__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_Pathfinding_Int3_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct Int3 value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_Pathfinding_Int3___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_Pathfinding_Int3___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_Pathfinding_Int3_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_Pathfinding_Int3___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_Pathfinding_Int3___Array *_entries; @@ -738534,19 +747857,6 @@ struct Dictionary_2_System_Int32_Pathfinding_Int3_ { struct Dictionary_2_System_Int32_Pathfinding_Int3___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_Pathfinding_Int3_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct Int3 value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_Pathfinding_Int3___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_Pathfinding_Int3___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_Pathfinding_Int3_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_Pathfinding_Int3___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_Pathfinding_Int3___Array__Class *klass; MonitorData *monitor; @@ -738731,6 +748041,21 @@ struct ICollection_1_Pathfinding_Int3___Class { struct ICollection_1_Pathfinding_Int3___VTable vtable; }; +struct Int3__1__VTable { +}; + +struct Int3__1__StaticFields { +}; + +struct Int3__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Int3__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Int3__1__VTable vtable; +}; + struct KeyValuePair_2_System_Int32_Pathfinding_Int3___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -738957,6 +748282,19 @@ struct NodeLink3 { struct NodeLink3__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_Pathfinding_GraphNode_Pathfinding_NodeLink3_ { + int32_t hashCode; + int32_t next; + struct GraphNode *key; + struct NodeLink3 *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_Pathfinding_GraphNode_Pathfinding_NodeLink3___Boxed { + struct Dictionary_2_TKey_TValue_Entry_Pathfinding_GraphNode_Pathfinding_NodeLink3___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_Pathfinding_GraphNode_Pathfinding_NodeLink3_ fields; +}; + struct __declspec(align(8)) Dictionary_2_Pathfinding_GraphNode_Pathfinding_NodeLink3___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_Pathfinding_GraphNode_Pathfinding_NodeLink3___Array *_entries; @@ -738976,19 +748314,6 @@ struct Dictionary_2_Pathfinding_GraphNode_Pathfinding_NodeLink3_ { struct Dictionary_2_Pathfinding_GraphNode_Pathfinding_NodeLink3___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_Pathfinding_GraphNode_Pathfinding_NodeLink3_ { - int32_t hashCode; - int32_t next; - struct GraphNode *key; - struct NodeLink3 *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_Pathfinding_GraphNode_Pathfinding_NodeLink3___Boxed { - struct Dictionary_2_TKey_TValue_Entry_Pathfinding_GraphNode_Pathfinding_NodeLink3___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_Pathfinding_GraphNode_Pathfinding_NodeLink3_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_Pathfinding_GraphNode_Pathfinding_NodeLink3___Array { struct Dictionary_2_TKey_TValue_Entry_Pathfinding_GraphNode_Pathfinding_NodeLink3___Array__Class *klass; MonitorData *monitor; @@ -739217,6 +748542,21 @@ struct ICollection_1_Pathfinding_NodeLink3___Class { struct ICollection_1_Pathfinding_NodeLink3___VTable vtable; }; +struct NodeLink3___VTable { +}; + +struct NodeLink3___StaticFields { +}; + +struct NodeLink3___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NodeLink3___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NodeLink3___VTable vtable; +}; + struct KeyValuePair_2_Pathfinding_GraphNode_Pathfinding_NodeLink3___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -740013,6 +749353,21 @@ struct GraphGizmoHelper__Class { struct GraphGizmoHelper__VTable vtable; }; +struct IntRect___VTable { +}; + +struct IntRect___StaticFields { +}; + +struct IntRect___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IntRect___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IntRect___VTable vtable; +}; + struct GridGraph_c { struct GridGraph_c__Class *klass; MonitorData *monitor; @@ -740195,6 +749550,19 @@ struct NavmeshBase_c_DisplayClass83_0 { struct NavmeshBase_c_DisplayClass83_0__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_Pathfinding_TriangleMeshNode_Pathfinding_Connection_ { + int32_t hashCode; + int32_t next; + struct TriangleMeshNode *key; + struct Connection__Array *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_Pathfinding_TriangleMeshNode_Pathfinding_Connection___Boxed { + struct Dictionary_2_TKey_TValue_Entry_Pathfinding_TriangleMeshNode_Pathfinding_Connection___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_Pathfinding_TriangleMeshNode_Pathfinding_Connection_ fields; +}; + struct __declspec(align(8)) Dictionary_2_Pathfinding_TriangleMeshNode_Pathfinding_Connection___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_Pathfinding_TriangleMeshNode_Pathfinding_Connection___Array *_entries; @@ -740214,19 +749582,6 @@ struct Dictionary_2_Pathfinding_TriangleMeshNode_Pathfinding_Connection_ { struct Dictionary_2_Pathfinding_TriangleMeshNode_Pathfinding_Connection___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_Pathfinding_TriangleMeshNode_Pathfinding_Connection_ { - int32_t hashCode; - int32_t next; - struct TriangleMeshNode *key; - struct Connection__Array *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_Pathfinding_TriangleMeshNode_Pathfinding_Connection___Boxed { - struct Dictionary_2_TKey_TValue_Entry_Pathfinding_TriangleMeshNode_Pathfinding_Connection___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_Pathfinding_TriangleMeshNode_Pathfinding_Connection_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_Pathfinding_TriangleMeshNode_Pathfinding_Connection___Array { struct Dictionary_2_TKey_TValue_Entry_Pathfinding_TriangleMeshNode_Pathfinding_Connection___Array__Class *klass; MonitorData *monitor; @@ -740455,6 +749810,21 @@ struct ICollection_1_Pathfinding_Connection___Class { struct ICollection_1_Pathfinding_Connection___VTable vtable; }; +struct Connection___VTable { +}; + +struct Connection___StaticFields { +}; + +struct Connection___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Connection___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Connection___VTable vtable; +}; + struct KeyValuePair_2_Pathfinding_TriangleMeshNode_Pathfinding_Connection___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -741379,6 +750749,21 @@ struct RecastGraph_ScanAllTiles_d_50__Class { struct RecastGraph_ScanAllTiles_d_50__VTable vtable; }; +struct NNInfoInternal___VTable { +}; + +struct NNInfoInternal___StaticFields { +}; + +struct NNInfoInternal___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NNInfoInternal___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NNInfoInternal___VTable vtable; +}; + struct __declspec(align(8)) EuclideanEmbedding_c_DisplayClass17_0__Fields { int32_t n; struct EuclideanEmbedding *__4__this; @@ -741502,6 +750887,19 @@ struct FloodPath { struct FloodPath__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_Pathfinding_GraphNode_Pathfinding_GraphNode_ { + int32_t hashCode; + int32_t next; + struct GraphNode *key; + struct GraphNode *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_Pathfinding_GraphNode_Pathfinding_GraphNode___Boxed { + struct Dictionary_2_TKey_TValue_Entry_Pathfinding_GraphNode_Pathfinding_GraphNode___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_Pathfinding_GraphNode_Pathfinding_GraphNode_ fields; +}; + struct __declspec(align(8)) Dictionary_2_Pathfinding_GraphNode_Pathfinding_GraphNode___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_Pathfinding_GraphNode_Pathfinding_GraphNode___Array *_entries; @@ -741521,19 +750919,6 @@ struct Dictionary_2_Pathfinding_GraphNode_Pathfinding_GraphNode_ { struct Dictionary_2_Pathfinding_GraphNode_Pathfinding_GraphNode___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_Pathfinding_GraphNode_Pathfinding_GraphNode_ { - int32_t hashCode; - int32_t next; - struct GraphNode *key; - struct GraphNode *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_Pathfinding_GraphNode_Pathfinding_GraphNode___Boxed { - struct Dictionary_2_TKey_TValue_Entry_Pathfinding_GraphNode_Pathfinding_GraphNode___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_Pathfinding_GraphNode_Pathfinding_GraphNode_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_Pathfinding_GraphNode_Pathfinding_GraphNode___Array { struct Dictionary_2_TKey_TValue_Entry_Pathfinding_GraphNode_Pathfinding_GraphNode___Array__Class *klass; MonitorData *monitor; @@ -741686,6 +751071,21 @@ struct Dictionary_2_TKey_TValue_ValueCollection_Pathfinding_GraphNode_Pathfindin struct Dictionary_2_TKey_TValue_ValueCollection_Pathfinding_GraphNode_Pathfinding_GraphNode___VTable vtable; }; +struct GraphNode___VTable { +}; + +struct GraphNode___StaticFields { +}; + +struct GraphNode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GraphNode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GraphNode___VTable vtable; +}; + struct KeyValuePair_2_Pathfinding_GraphNode_Pathfinding_GraphNode___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -741921,6 +751321,21 @@ struct ObjImporter_meshStruct__Class { struct ObjImporter_meshStruct__VTable vtable; }; +struct ObjImporter_meshStruct___VTable { +}; + +struct ObjImporter_meshStruct___StaticFields { +}; + +struct ObjImporter_meshStruct___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ObjImporter_meshStruct___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ObjImporter_meshStruct___VTable vtable; +}; + struct ObjImporter { struct ObjImporter__Class *klass; MonitorData *monitor; @@ -742296,6 +751711,18 @@ struct AdvancedSmooth_MaxTurn { struct AdvancedSmooth_MaxTurn__Fields fields; }; +struct AdvancedSmooth_Turn { + float length; + int32_t id; + struct AdvancedSmooth_TurnConstructor *constructor; +}; + +struct AdvancedSmooth_Turn__Boxed { + struct AdvancedSmooth_Turn__Class *klass; + MonitorData *monitor; + struct AdvancedSmooth_Turn fields; +}; + struct __declspec(align(8)) List_1_Pathfinding_AdvancedSmooth_Turn___Fields { struct AdvancedSmooth_Turn__Array *_items; int32_t _size; @@ -742309,18 +751736,6 @@ struct List_1_Pathfinding_AdvancedSmooth_Turn_ { struct List_1_Pathfinding_AdvancedSmooth_Turn___Fields fields; }; -struct AdvancedSmooth_Turn { - float length; - int32_t id; - struct AdvancedSmooth_TurnConstructor *constructor; -}; - -struct AdvancedSmooth_Turn__Boxed { - struct AdvancedSmooth_Turn__Class *klass; - MonitorData *monitor; - struct AdvancedSmooth_Turn fields; -}; - struct AdvancedSmooth_Turn__Array { struct AdvancedSmooth_Turn__Array__Class *klass; MonitorData *monitor; @@ -743860,6 +753275,19 @@ struct BlockManager { struct BlockManager__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_Pathfinding_GraphNode_List_1_Pathfinding_SingleNodeBlocker_ { + int32_t hashCode; + int32_t next; + struct GraphNode *key; + struct List_1_Pathfinding_SingleNodeBlocker_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_Pathfinding_GraphNode_List_1_Pathfinding_SingleNodeBlocker___Boxed { + struct Dictionary_2_TKey_TValue_Entry_Pathfinding_GraphNode_List_1_Pathfinding_SingleNodeBlocker___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_Pathfinding_GraphNode_List_1_Pathfinding_SingleNodeBlocker_ fields; +}; + struct __declspec(align(8)) Dictionary_2_Pathfinding_GraphNode_List_1_Pathfinding_SingleNodeBlocker___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_Pathfinding_GraphNode_List_1_Pathfinding_SingleNodeBlocker___Array *_entries; @@ -743879,17 +753307,16 @@ struct Dictionary_2_Pathfinding_GraphNode_List_1_Pathfinding_SingleNodeBlocker_ struct Dictionary_2_Pathfinding_GraphNode_List_1_Pathfinding_SingleNodeBlocker___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_Pathfinding_GraphNode_List_1_Pathfinding_SingleNodeBlocker_ { - int32_t hashCode; - int32_t next; - struct GraphNode *key; - struct List_1_Pathfinding_SingleNodeBlocker_ *value; +struct SingleNodeBlocker__Fields { + struct VersionedMonoBehaviour__Fields _; + struct GraphNode *_lastBlocked_k__BackingField; + struct BlockManager *manager; }; -struct Dictionary_2_TKey_TValue_Entry_Pathfinding_GraphNode_List_1_Pathfinding_SingleNodeBlocker___Boxed { - struct Dictionary_2_TKey_TValue_Entry_Pathfinding_GraphNode_List_1_Pathfinding_SingleNodeBlocker___Class *klass; +struct SingleNodeBlocker { + struct SingleNodeBlocker__Class *klass; MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_Pathfinding_GraphNode_List_1_Pathfinding_SingleNodeBlocker_ fields; + struct SingleNodeBlocker__Fields fields; }; struct __declspec(align(8)) List_1_Pathfinding_SingleNodeBlocker___Fields { @@ -743905,18 +753332,6 @@ struct List_1_Pathfinding_SingleNodeBlocker_ { struct List_1_Pathfinding_SingleNodeBlocker___Fields fields; }; -struct SingleNodeBlocker__Fields { - struct VersionedMonoBehaviour__Fields _; - struct GraphNode *_lastBlocked_k__BackingField; - struct BlockManager *manager; -}; - -struct SingleNodeBlocker { - struct SingleNodeBlocker__Class *klass; - MonitorData *monitor; - struct SingleNodeBlocker__Fields fields; -}; - struct SingleNodeBlocker__Array { struct SingleNodeBlocker__Array__Class *klass; MonitorData *monitor; @@ -744265,6 +753680,21 @@ struct ICollection_1_List_1_Pathfinding_SingleNodeBlocker___Class { struct ICollection_1_List_1_Pathfinding_SingleNodeBlocker___VTable vtable; }; +struct List_1_Pathfinding_SingleNodeBlocker__1__VTable { +}; + +struct List_1_Pathfinding_SingleNodeBlocker__1__StaticFields { +}; + +struct List_1_Pathfinding_SingleNodeBlocker__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Pathfinding_SingleNodeBlocker__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Pathfinding_SingleNodeBlocker__1__VTable vtable; +}; + struct KeyValuePair_2_Pathfinding_GraphNode_List_1_Pathfinding_SingleNodeBlocker___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -744580,6 +754010,19 @@ struct AstarProfiler { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_Pathfinding_AstarProfiler_ProfilePoint_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct AstarProfiler_ProfilePoint *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_Pathfinding_AstarProfiler_ProfilePoint___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_Pathfinding_AstarProfiler_ProfilePoint___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_Pathfinding_AstarProfiler_ProfilePoint_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_Pathfinding_AstarProfiler_ProfilePoint___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_Pathfinding_AstarProfiler_ProfilePoint___Array *_entries; @@ -744599,19 +754042,6 @@ struct Dictionary_2_System_String_Pathfinding_AstarProfiler_ProfilePoint_ { struct Dictionary_2_System_String_Pathfinding_AstarProfiler_ProfilePoint___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_Pathfinding_AstarProfiler_ProfilePoint_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct AstarProfiler_ProfilePoint *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_Pathfinding_AstarProfiler_ProfilePoint___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_Pathfinding_AstarProfiler_ProfilePoint___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_Pathfinding_AstarProfiler_ProfilePoint_ fields; -}; - struct __declspec(align(8)) AstarProfiler_ProfilePoint__Fields { struct Stopwatch *watch; int32_t totalCalls; @@ -744872,6 +754302,21 @@ struct ICollection_1_Pathfinding_AstarProfiler_ProfilePoint___Class { struct ICollection_1_Pathfinding_AstarProfiler_ProfilePoint___VTable vtable; }; +struct AstarProfiler_ProfilePoint___VTable { +}; + +struct AstarProfiler_ProfilePoint___StaticFields { +}; + +struct AstarProfiler_ProfilePoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct AstarProfiler_ProfilePoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct AstarProfiler_ProfilePoint___VTable vtable; +}; + struct KeyValuePair_2_System_String_Pathfinding_AstarProfiler_ProfilePoint___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -745020,19 +754465,6 @@ struct AstarProfiler__Class { struct AstarProfiler__VTable vtable; }; -struct __declspec(align(8)) List_1_Pathfinding_Funnel_PathPart___Fields { - struct Funnel_PathPart__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Pathfinding_Funnel_PathPart_ { - struct List_1_Pathfinding_Funnel_PathPart___Class *klass; - MonitorData *monitor; - struct List_1_Pathfinding_Funnel_PathPart___Fields fields; -}; - struct Funnel_PathPart { int32_t startIndex; int32_t endIndex; @@ -745047,6 +754479,19 @@ struct Funnel_PathPart__Boxed { struct Funnel_PathPart fields; }; +struct __declspec(align(8)) List_1_Pathfinding_Funnel_PathPart___Fields { + struct Funnel_PathPart__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Pathfinding_Funnel_PathPart_ { + struct List_1_Pathfinding_Funnel_PathPart___Class *klass; + MonitorData *monitor; + struct List_1_Pathfinding_Funnel_PathPart___Fields fields; +}; + struct Funnel_PathPart__Array { struct Funnel_PathPart__Array__Class *klass; MonitorData *monitor; @@ -745229,6 +754674,18 @@ struct PathUtilities_c_DisplayClass3_0 { struct PathUtilities_c_DisplayClass3_0__Fields fields; }; +struct HashSet_1_T_Slot_Pathfinding_GraphNode_ { + int32_t hashCode; + int32_t next; + struct GraphNode *value; +}; + +struct HashSet_1_T_Slot_Pathfinding_GraphNode___Boxed { + struct HashSet_1_T_Slot_Pathfinding_GraphNode___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_Pathfinding_GraphNode_ fields; +}; + struct __declspec(align(8)) HashSet_1_Pathfinding_GraphNode___Fields { struct Int32__Array *_buckets; struct HashSet_1_T_Slot_Pathfinding_GraphNode___Array *_slots; @@ -745246,18 +754703,6 @@ struct HashSet_1_Pathfinding_GraphNode_ { struct HashSet_1_Pathfinding_GraphNode___Fields fields; }; -struct HashSet_1_T_Slot_Pathfinding_GraphNode_ { - int32_t hashCode; - int32_t next; - struct GraphNode *value; -}; - -struct HashSet_1_T_Slot_Pathfinding_GraphNode___Boxed { - struct HashSet_1_T_Slot_Pathfinding_GraphNode___Class *klass; - MonitorData *monitor; - struct HashSet_1_T_Slot_Pathfinding_GraphNode_ fields; -}; - struct HashSet_1_T_Slot_Pathfinding_GraphNode___Array { struct HashSet_1_T_Slot_Pathfinding_GraphNode___Array__Class *klass; MonitorData *monitor; @@ -745417,6 +754862,19 @@ struct PathUtilities_c_DisplayClass6_0 { struct PathUtilities_c_DisplayClass6_0__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_Pathfinding_GraphNode_System_Int32_ { + int32_t hashCode; + int32_t next; + struct GraphNode *key; + int32_t value; +}; + +struct Dictionary_2_TKey_TValue_Entry_Pathfinding_GraphNode_System_Int32___Boxed { + struct Dictionary_2_TKey_TValue_Entry_Pathfinding_GraphNode_System_Int32___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_Pathfinding_GraphNode_System_Int32_ fields; +}; + struct __declspec(align(8)) Dictionary_2_Pathfinding_GraphNode_System_Int32___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_Pathfinding_GraphNode_System_Int32___Array *_entries; @@ -745436,19 +754894,6 @@ struct Dictionary_2_Pathfinding_GraphNode_System_Int32_ { struct Dictionary_2_Pathfinding_GraphNode_System_Int32___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_Pathfinding_GraphNode_System_Int32_ { - int32_t hashCode; - int32_t next; - struct GraphNode *key; - int32_t value; -}; - -struct Dictionary_2_TKey_TValue_Entry_Pathfinding_GraphNode_System_Int32___Boxed { - struct Dictionary_2_TKey_TValue_Entry_Pathfinding_GraphNode_System_Int32___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_Pathfinding_GraphNode_System_Int32_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_Pathfinding_GraphNode_System_Int32___Array { struct Dictionary_2_TKey_TValue_Entry_Pathfinding_GraphNode_System_Int32___Array__Class *klass; MonitorData *monitor; @@ -746102,6 +755547,36 @@ struct LinkedVoxelSpan__Class { struct LinkedVoxelSpan__VTable vtable; }; +struct VoxelContour___VTable { +}; + +struct VoxelContour___StaticFields { +}; + +struct VoxelContour___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct VoxelContour___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct VoxelContour___VTable vtable; +}; + +struct VoxelMesh___VTable { +}; + +struct VoxelMesh___StaticFields { +}; + +struct VoxelMesh___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct VoxelMesh___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct VoxelMesh___VTable vtable; +}; + struct VoxelPolygonClipper { struct Single__Array *x; struct Single__Array *y; @@ -746134,6 +755609,21 @@ struct VoxelPolygonClipper__Class { struct VoxelPolygonClipper__VTable vtable; }; +struct VoxelPolygonClipper___VTable { +}; + +struct VoxelPolygonClipper___StaticFields { +}; + +struct VoxelPolygonClipper___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct VoxelPolygonClipper___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct VoxelPolygonClipper___VTable vtable; +}; + struct Utility { struct Utility__Class *klass; MonitorData *monitor; @@ -746173,19 +755663,6 @@ struct RecastMeshGatherer { struct RecastMeshGatherer__Fields fields; }; -struct __declspec(align(8)) List_1_Pathfinding_Recast_RecastMeshGatherer_CapsuleCache___Fields { - struct RecastMeshGatherer_CapsuleCache__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Pathfinding_Recast_RecastMeshGatherer_CapsuleCache_ { - struct List_1_Pathfinding_Recast_RecastMeshGatherer_CapsuleCache___Class *klass; - MonitorData *monitor; - struct List_1_Pathfinding_Recast_RecastMeshGatherer_CapsuleCache___Fields fields; -}; - struct __declspec(align(8)) RecastMeshGatherer_CapsuleCache__Fields { int32_t rows; float height; @@ -746199,6 +755676,19 @@ struct RecastMeshGatherer_CapsuleCache { struct RecastMeshGatherer_CapsuleCache__Fields fields; }; +struct __declspec(align(8)) List_1_Pathfinding_Recast_RecastMeshGatherer_CapsuleCache___Fields { + struct RecastMeshGatherer_CapsuleCache__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Pathfinding_Recast_RecastMeshGatherer_CapsuleCache_ { + struct List_1_Pathfinding_Recast_RecastMeshGatherer_CapsuleCache___Class *klass; + MonitorData *monitor; + struct List_1_Pathfinding_Recast_RecastMeshGatherer_CapsuleCache___Fields fields; +}; + struct RecastMeshGatherer_CapsuleCache__Array { struct RecastMeshGatherer_CapsuleCache__Array__Class *klass; MonitorData *monitor; @@ -746579,6 +756069,19 @@ struct TinyJsonSerializer { struct TinyJsonSerializer__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Action_1_ { + int32_t hashCode; + int32_t next; + struct Type *key; + struct Action_1_Object_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Action_1___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Action_1___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Action_1_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Type_System_Action_1___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Action_1___Array *_entries; @@ -746598,19 +756101,6 @@ struct Dictionary_2_System_Type_System_Action_1_ { struct Dictionary_2_System_Type_System_Action_1___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Action_1_ { - int32_t hashCode; - int32_t next; - struct Type *key; - struct Action_1_Object_ *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Action_1___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Action_1___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Action_1_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Action_1___Array { struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Action_1___Array__Class *klass; MonitorData *monitor; @@ -746795,6 +756285,21 @@ struct ICollection_1_System_Action_1___Class { struct ICollection_1_System_Action_1___VTable vtable; }; +struct Action_1_Object__1__VTable { +}; + +struct Action_1_Object__1__StaticFields { +}; + +struct Action_1_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_1_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_1_Object__1__VTable vtable; +}; + struct KeyValuePair_2_System_Type_System_Action_1___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -747123,19 +756628,6 @@ struct TileHandler_CutMode__Enum__Class { struct TileHandler_CutMode__Enum__VTable vtable; }; -struct __declspec(align(8)) List_1_Pathfinding_Util_TileHandler_Cut___Fields { - struct TileHandler_Cut__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Pathfinding_Util_TileHandler_Cut_ { - struct List_1_Pathfinding_Util_TileHandler_Cut___Class *klass; - MonitorData *monitor; - struct List_1_Pathfinding_Util_TileHandler_Cut___Fields fields; -}; - struct __declspec(align(8)) TileHandler_Cut__Fields { struct IntRect bounds; struct Int2 boundsY; @@ -747150,6 +756642,19 @@ struct TileHandler_Cut { struct TileHandler_Cut__Fields fields; }; +struct __declspec(align(8)) List_1_Pathfinding_Util_TileHandler_Cut___Fields { + struct TileHandler_Cut__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Pathfinding_Util_TileHandler_Cut_ { + struct List_1_Pathfinding_Util_TileHandler_Cut___Class *klass; + MonitorData *monitor; + struct List_1_Pathfinding_Util_TileHandler_Cut___Fields fields; +}; + struct TileHandler_Cut__Array { struct TileHandler_Cut__Array__Class *klass; MonitorData *monitor; @@ -747386,19 +756891,6 @@ struct Polygon_1 { struct Polygon_1__Fields fields; }; -struct __declspec(align(8)) List_1_Pathfinding_Poly2Tri_TriangulationPoint___Fields { - struct TriangulationPoint__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Pathfinding_Poly2Tri_TriangulationPoint_ { - struct List_1_Pathfinding_Poly2Tri_TriangulationPoint___Class *klass; - MonitorData *monitor; - struct List_1_Pathfinding_Poly2Tri_TriangulationPoint___Fields fields; -}; - struct __declspec(align(8)) TriangulationPoint__Fields { double X; double Y; @@ -747411,17 +756903,17 @@ struct TriangulationPoint { struct TriangulationPoint__Fields fields; }; -struct __declspec(align(8)) List_1_Pathfinding_Poly2Tri_DTSweepConstraint___Fields { - struct DTSweepConstraint__Array *_items; +struct __declspec(align(8)) List_1_Pathfinding_Poly2Tri_TriangulationPoint___Fields { + struct TriangulationPoint__Array *_items; int32_t _size; int32_t _version; struct Object *_syncRoot; }; -struct List_1_Pathfinding_Poly2Tri_DTSweepConstraint_ { - struct List_1_Pathfinding_Poly2Tri_DTSweepConstraint___Class *klass; +struct List_1_Pathfinding_Poly2Tri_TriangulationPoint_ { + struct List_1_Pathfinding_Poly2Tri_TriangulationPoint___Class *klass; MonitorData *monitor; - struct List_1_Pathfinding_Poly2Tri_DTSweepConstraint___Fields fields; + struct List_1_Pathfinding_Poly2Tri_TriangulationPoint___Fields fields; }; struct __declspec(align(8)) TriangulationConstraint__Fields { @@ -747445,6 +756937,19 @@ struct DTSweepConstraint { struct DTSweepConstraint__Fields fields; }; +struct __declspec(align(8)) List_1_Pathfinding_Poly2Tri_DTSweepConstraint___Fields { + struct DTSweepConstraint__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Pathfinding_Poly2Tri_DTSweepConstraint_ { + struct List_1_Pathfinding_Poly2Tri_DTSweepConstraint___Class *klass; + MonitorData *monitor; + struct List_1_Pathfinding_Poly2Tri_DTSweepConstraint___Fields fields; +}; + struct DTSweepConstraint__Array { struct DTSweepConstraint__Array__Class *klass; MonitorData *monitor; @@ -747497,19 +757002,6 @@ struct IEnumerator_1_Pathfinding_Poly2Tri_Polygon_ { MonitorData *monitor; }; -struct __declspec(align(8)) List_1_Pathfinding_Poly2Tri_DelaunayTriangle___Fields { - struct DelaunayTriangle__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Pathfinding_Poly2Tri_DelaunayTriangle_ { - struct List_1_Pathfinding_Poly2Tri_DelaunayTriangle___Class *klass; - MonitorData *monitor; - struct List_1_Pathfinding_Poly2Tri_DelaunayTriangle___Fields fields; -}; - struct FixedArray3_1_TriangulationPoint_ { struct TriangulationPoint *_0; struct TriangulationPoint *_1; @@ -747560,6 +757052,19 @@ struct DelaunayTriangle { struct DelaunayTriangle__Fields fields; }; +struct __declspec(align(8)) List_1_Pathfinding_Poly2Tri_DelaunayTriangle___Fields { + struct DelaunayTriangle__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Pathfinding_Poly2Tri_DelaunayTriangle_ { + struct List_1_Pathfinding_Poly2Tri_DelaunayTriangle___Class *klass; + MonitorData *monitor; + struct List_1_Pathfinding_Poly2Tri_DelaunayTriangle___Fields fields; +}; + struct IEnumerator_1_Pathfinding_Poly2Tri_DelaunayTriangle_ { struct IEnumerator_1_Pathfinding_Poly2Tri_DelaunayTriangle___Class *klass; MonitorData *monitor; @@ -749523,47 +759028,6 @@ struct rPGgilLxmMTekXrALcMmwLgZUrTO { struct rPGgilLxmMTekXrALcMmwLgZUrTO__Fields fields; }; -#if defined(_CPLUSPLUS_) -enum class pGkQOPgWegsFGDOnOGftBvOUUKELA__Enum : int32_t { - AbsoluteAxis = 0x00000001, - RelativeAxis = 0x00000002, -}; - -#else -enum pGkQOPgWegsFGDOnOGftBvOUUKELA__Enum { - pGkQOPgWegsFGDOnOGftBvOUUKELA__Enum_AbsoluteAxis = 0x00000001, - pGkQOPgWegsFGDOnOGftBvOUUKELA__Enum_RelativeAxis = 0x00000002, -}; - -#endif -struct pGkQOPgWegsFGDOnOGftBvOUUKELA__Enum__Boxed { - struct pGkQOPgWegsFGDOnOGftBvOUUKELA__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - pGkQOPgWegsFGDOnOGftBvOUUKELA__Enum value; - #else - int32_t value; - #endif -}; - -struct __declspec(align(8)) pkfvdhAgvJBekrlDorTPuCftMpCU__Fields { - struct jlOcQLgjodoHrMnRTMaZoBnVTQkmA__Array *ljsVfzGvEjohXnrCmwPvUHuweiGbA; - int32_t tKgXiUwjXkFGAipCXHFBiMeKeiLLc; - int32_t pzGNwEftsCsfCLQtqvAyTRJDMOSr; - #if defined(_CPLUSPLUS_) - pGkQOPgWegsFGDOnOGftBvOUUKELA__Enum GwivQptfaBGYzngZySzLLfmBEmVC; - #else - int32_t GwivQptfaBGYzngZySzLLfmBEmVC; - #endif - int32_t CsrvHSEoCLeuxHQHlNxwIfERACqd; -}; - -struct pkfvdhAgvJBekrlDorTPuCftMpCU { - struct pkfvdhAgvJBekrlDorTPuCftMpCU__Class *klass; - MonitorData *monitor; - struct pkfvdhAgvJBekrlDorTPuCftMpCU__Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class FKhSbiIliqzGLmbRIjbdTJHpKbLA__Enum : int32_t { All = 0x00000000, @@ -749669,6 +759133,47 @@ struct jlOcQLgjodoHrMnRTMaZoBnVTQkmA { struct jlOcQLgjodoHrMnRTMaZoBnVTQkmA__Fields fields; }; +#if defined(_CPLUSPLUS_) +enum class pGkQOPgWegsFGDOnOGftBvOUUKELA__Enum : int32_t { + AbsoluteAxis = 0x00000001, + RelativeAxis = 0x00000002, +}; + +#else +enum pGkQOPgWegsFGDOnOGftBvOUUKELA__Enum { + pGkQOPgWegsFGDOnOGftBvOUUKELA__Enum_AbsoluteAxis = 0x00000001, + pGkQOPgWegsFGDOnOGftBvOUUKELA__Enum_RelativeAxis = 0x00000002, +}; + +#endif +struct pGkQOPgWegsFGDOnOGftBvOUUKELA__Enum__Boxed { + struct pGkQOPgWegsFGDOnOGftBvOUUKELA__Enum__Class *klass; + MonitorData *monitor; + #if defined(_CPLUSPLUS_) + pGkQOPgWegsFGDOnOGftBvOUUKELA__Enum value; + #else + int32_t value; + #endif +}; + +struct __declspec(align(8)) pkfvdhAgvJBekrlDorTPuCftMpCU__Fields { + struct jlOcQLgjodoHrMnRTMaZoBnVTQkmA__Array *ljsVfzGvEjohXnrCmwPvUHuweiGbA; + int32_t tKgXiUwjXkFGAipCXHFBiMeKeiLLc; + int32_t pzGNwEftsCsfCLQtqvAyTRJDMOSr; + #if defined(_CPLUSPLUS_) + pGkQOPgWegsFGDOnOGftBvOUUKELA__Enum GwivQptfaBGYzngZySzLLfmBEmVC; + #else + int32_t GwivQptfaBGYzngZySzLLfmBEmVC; + #endif + int32_t CsrvHSEoCLeuxHQHlNxwIfERACqd; +}; + +struct pkfvdhAgvJBekrlDorTPuCftMpCU { + struct pkfvdhAgvJBekrlDorTPuCftMpCU__Class *klass; + MonitorData *monitor; + struct pkfvdhAgvJBekrlDorTPuCftMpCU__Fields fields; +}; + struct jlOcQLgjodoHrMnRTMaZoBnVTQkmA__Array { struct jlOcQLgjodoHrMnRTMaZoBnVTQkmA__Array__Class *klass; MonitorData *monitor; @@ -749677,6 +759182,19 @@ struct jlOcQLgjodoHrMnRTMaZoBnVTQkmA__Array { struct jlOcQLgjodoHrMnRTMaZoBnVTQkmA *vector[32]; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_jlOcQLgjodoHrMnRTMaZoBnVTQkmA_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct jlOcQLgjodoHrMnRTMaZoBnVTQkmA *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_jlOcQLgjodoHrMnRTMaZoBnVTQkmA___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_jlOcQLgjodoHrMnRTMaZoBnVTQkmA___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_jlOcQLgjodoHrMnRTMaZoBnVTQkmA_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_jlOcQLgjodoHrMnRTMaZoBnVTQkmA___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_jlOcQLgjodoHrMnRTMaZoBnVTQkmA___Array *_entries; @@ -749696,19 +759214,6 @@ struct Dictionary_2_System_String_jlOcQLgjodoHrMnRTMaZoBnVTQkmA_ { struct Dictionary_2_System_String_jlOcQLgjodoHrMnRTMaZoBnVTQkmA___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_jlOcQLgjodoHrMnRTMaZoBnVTQkmA_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct jlOcQLgjodoHrMnRTMaZoBnVTQkmA *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_jlOcQLgjodoHrMnRTMaZoBnVTQkmA___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_jlOcQLgjodoHrMnRTMaZoBnVTQkmA___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_jlOcQLgjodoHrMnRTMaZoBnVTQkmA_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_String_jlOcQLgjodoHrMnRTMaZoBnVTQkmA___Array { struct Dictionary_2_TKey_TValue_Entry_System_String_jlOcQLgjodoHrMnRTMaZoBnVTQkmA___Array__Class *klass; MonitorData *monitor; @@ -750333,6 +759838,21 @@ struct ICollection_1_jlOcQLgjodoHrMnRTMaZoBnVTQkmA___Class { struct ICollection_1_jlOcQLgjodoHrMnRTMaZoBnVTQkmA___VTable vtable; }; +struct jlOcQLgjodoHrMnRTMaZoBnVTQkmA___VTable { +}; + +struct jlOcQLgjodoHrMnRTMaZoBnVTQkmA___StaticFields { +}; + +struct jlOcQLgjodoHrMnRTMaZoBnVTQkmA___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct jlOcQLgjodoHrMnRTMaZoBnVTQkmA___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct jlOcQLgjodoHrMnRTMaZoBnVTQkmA___VTable vtable; +}; + struct KeyValuePair_2_System_String_jlOcQLgjodoHrMnRTMaZoBnVTQkmA___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -750922,6 +760442,11 @@ struct eiAEQUagfGTjXRjdiGwJDzSBPdYSA { struct eiAEQUagfGTjXRjdiGwJDzSBPdYSA__Fields fields; }; +struct znMZhiOLtznjGEIVUrVliWSuIivu { + struct znMZhiOLtznjGEIVUrVliWSuIivu__Class *klass; + MonitorData *monitor; +}; + struct __declspec(align(8)) List_1_znMZhiOLtznjGEIVUrVliWSuIivu___Fields { struct znMZhiOLtznjGEIVUrVliWSuIivu__Array *_items; int32_t _size; @@ -750935,11 +760460,6 @@ struct List_1_znMZhiOLtznjGEIVUrVliWSuIivu_ { struct List_1_znMZhiOLtznjGEIVUrVliWSuIivu___Fields fields; }; -struct znMZhiOLtznjGEIVUrVliWSuIivu { - struct znMZhiOLtznjGEIVUrVliWSuIivu__Class *klass; - MonitorData *monitor; -}; - struct znMZhiOLtznjGEIVUrVliWSuIivu__Array { struct znMZhiOLtznjGEIVUrVliWSuIivu__Array__Class *klass; MonitorData *monitor; @@ -750986,6 +760506,21 @@ struct mnnDsnejpZEXCYBwEaOUubxgEUzu { struct mnnDsnejpZEXCYBwEaOUubxgEUzu__Fields fields; }; +struct __declspec(align(8)) UpdateLoopDataSet_1_T_ZiclZXYpwdehzXmFmEsJccSZMPwKA_mnnDsnejpZEXCYBwEaOUubxgEUzu_JjBAfNDEcTONUYMfiYbXwYKVVOcAA___Fields { + #if defined(_CPLUSPLUS_) + UpdateLoopType__Enum bgmCxafTAhGyaRRTSDTPlAiCLjtFb; + #else + int32_t bgmCxafTAhGyaRRTSDTPlAiCLjtFb; + #endif + struct mnnDsnejpZEXCYBwEaOUubxgEUzu_JjBAfNDEcTONUYMfiYbXwYKVVOcAA *HyeFxCdoLKehvVbQKkUQTbHaPcRoA; +}; + +struct UpdateLoopDataSet_1_T_ZiclZXYpwdehzXmFmEsJccSZMPwKA_mnnDsnejpZEXCYBwEaOUubxgEUzu_JjBAfNDEcTONUYMfiYbXwYKVVOcAA_ { + struct UpdateLoopDataSet_1_T_ZiclZXYpwdehzXmFmEsJccSZMPwKA_mnnDsnejpZEXCYBwEaOUubxgEUzu_JjBAfNDEcTONUYMfiYbXwYKVVOcAA___Class *klass; + MonitorData *monitor; + struct UpdateLoopDataSet_1_T_ZiclZXYpwdehzXmFmEsJccSZMPwKA_mnnDsnejpZEXCYBwEaOUubxgEUzu_JjBAfNDEcTONUYMfiYbXwYKVVOcAA___Fields fields; +}; + struct __declspec(align(8)) UpdateLoopDataSet_1_mnnDsnejpZEXCYBwEaOUubxgEUzu_JjBAfNDEcTONUYMfiYbXwYKVVOcAA___Fields { struct UpdateLoopDataSet_1_T_ZiclZXYpwdehzXmFmEsJccSZMPwKA_mnnDsnejpZEXCYBwEaOUubxgEUzu_JjBAfNDEcTONUYMfiYbXwYKVVOcAA_ *HlHYPIOWvlHvQyLwTkcAbKJfkYmu; int32_t vNftwdZEYOcQNbtfsevUFgcLKKBfA; @@ -751005,21 +760540,6 @@ struct UpdateLoopDataSet_1_mnnDsnejpZEXCYBwEaOUubxgEUzu_JjBAfNDEcTONUYMfiYbXwYKV struct UpdateLoopDataSet_1_mnnDsnejpZEXCYBwEaOUubxgEUzu_JjBAfNDEcTONUYMfiYbXwYKVVOcAA___Fields fields; }; -struct __declspec(align(8)) UpdateLoopDataSet_1_T_ZiclZXYpwdehzXmFmEsJccSZMPwKA_mnnDsnejpZEXCYBwEaOUubxgEUzu_JjBAfNDEcTONUYMfiYbXwYKVVOcAA___Fields { - #if defined(_CPLUSPLUS_) - UpdateLoopType__Enum bgmCxafTAhGyaRRTSDTPlAiCLjtFb; - #else - int32_t bgmCxafTAhGyaRRTSDTPlAiCLjtFb; - #endif - struct mnnDsnejpZEXCYBwEaOUubxgEUzu_JjBAfNDEcTONUYMfiYbXwYKVVOcAA *HyeFxCdoLKehvVbQKkUQTbHaPcRoA; -}; - -struct UpdateLoopDataSet_1_T_ZiclZXYpwdehzXmFmEsJccSZMPwKA_mnnDsnejpZEXCYBwEaOUubxgEUzu_JjBAfNDEcTONUYMfiYbXwYKVVOcAA_ { - struct UpdateLoopDataSet_1_T_ZiclZXYpwdehzXmFmEsJccSZMPwKA_mnnDsnejpZEXCYBwEaOUubxgEUzu_JjBAfNDEcTONUYMfiYbXwYKVVOcAA___Class *klass; - MonitorData *monitor; - struct UpdateLoopDataSet_1_T_ZiclZXYpwdehzXmFmEsJccSZMPwKA_mnnDsnejpZEXCYBwEaOUubxgEUzu_JjBAfNDEcTONUYMfiYbXwYKVVOcAA___Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class TGNCHvBIJqlVWiHuxKeftTPFKNECb__Enum : int32_t { MoveRelative = 0x00000000, @@ -751122,6 +760642,21 @@ struct AJsmGXHTskPzBiTBDSfAEVsAgBQd { struct AJsmGXHTskPzBiTBDSfAEVsAgBQd__Fields fields; }; +struct __declspec(align(8)) UpdateLoopDataSet_1_T_ZiclZXYpwdehzXmFmEsJccSZMPwKA_AJsmGXHTskPzBiTBDSfAEVsAgBQd_ScAUiPDVTJpqftJwGhLKjPCZiivt___Fields { + #if defined(_CPLUSPLUS_) + UpdateLoopType__Enum bgmCxafTAhGyaRRTSDTPlAiCLjtFb; + #else + int32_t bgmCxafTAhGyaRRTSDTPlAiCLjtFb; + #endif + struct AJsmGXHTskPzBiTBDSfAEVsAgBQd_ScAUiPDVTJpqftJwGhLKjPCZiivt *HyeFxCdoLKehvVbQKkUQTbHaPcRoA; +}; + +struct UpdateLoopDataSet_1_T_ZiclZXYpwdehzXmFmEsJccSZMPwKA_AJsmGXHTskPzBiTBDSfAEVsAgBQd_ScAUiPDVTJpqftJwGhLKjPCZiivt_ { + struct UpdateLoopDataSet_1_T_ZiclZXYpwdehzXmFmEsJccSZMPwKA_AJsmGXHTskPzBiTBDSfAEVsAgBQd_ScAUiPDVTJpqftJwGhLKjPCZiivt___Class *klass; + MonitorData *monitor; + struct UpdateLoopDataSet_1_T_ZiclZXYpwdehzXmFmEsJccSZMPwKA_AJsmGXHTskPzBiTBDSfAEVsAgBQd_ScAUiPDVTJpqftJwGhLKjPCZiivt___Fields fields; +}; + struct __declspec(align(8)) UpdateLoopDataSet_1_AJsmGXHTskPzBiTBDSfAEVsAgBQd_ScAUiPDVTJpqftJwGhLKjPCZiivt___Fields { struct UpdateLoopDataSet_1_T_ZiclZXYpwdehzXmFmEsJccSZMPwKA_AJsmGXHTskPzBiTBDSfAEVsAgBQd_ScAUiPDVTJpqftJwGhLKjPCZiivt_ *HlHYPIOWvlHvQyLwTkcAbKJfkYmu; int32_t vNftwdZEYOcQNbtfsevUFgcLKKBfA; @@ -751141,21 +760676,6 @@ struct UpdateLoopDataSet_1_AJsmGXHTskPzBiTBDSfAEVsAgBQd_ScAUiPDVTJpqftJwGhLKjPCZ struct UpdateLoopDataSet_1_AJsmGXHTskPzBiTBDSfAEVsAgBQd_ScAUiPDVTJpqftJwGhLKjPCZiivt___Fields fields; }; -struct __declspec(align(8)) UpdateLoopDataSet_1_T_ZiclZXYpwdehzXmFmEsJccSZMPwKA_AJsmGXHTskPzBiTBDSfAEVsAgBQd_ScAUiPDVTJpqftJwGhLKjPCZiivt___Fields { - #if defined(_CPLUSPLUS_) - UpdateLoopType__Enum bgmCxafTAhGyaRRTSDTPlAiCLjtFb; - #else - int32_t bgmCxafTAhGyaRRTSDTPlAiCLjtFb; - #endif - struct AJsmGXHTskPzBiTBDSfAEVsAgBQd_ScAUiPDVTJpqftJwGhLKjPCZiivt *HyeFxCdoLKehvVbQKkUQTbHaPcRoA; -}; - -struct UpdateLoopDataSet_1_T_ZiclZXYpwdehzXmFmEsJccSZMPwKA_AJsmGXHTskPzBiTBDSfAEVsAgBQd_ScAUiPDVTJpqftJwGhLKjPCZiivt_ { - struct UpdateLoopDataSet_1_T_ZiclZXYpwdehzXmFmEsJccSZMPwKA_AJsmGXHTskPzBiTBDSfAEVsAgBQd_ScAUiPDVTJpqftJwGhLKjPCZiivt___Class *klass; - MonitorData *monitor; - struct UpdateLoopDataSet_1_T_ZiclZXYpwdehzXmFmEsJccSZMPwKA_AJsmGXHTskPzBiTBDSfAEVsAgBQd_ScAUiPDVTJpqftJwGhLKjPCZiivt___Fields fields; -}; - struct __declspec(align(8)) AJsmGXHTskPzBiTBDSfAEVsAgBQd_ScAUiPDVTJpqftJwGhLKjPCZiivt__Fields { #if defined(_CPLUSPLUS_) UpdateLoopType__Enum NGgCqPJtScIlRqFqJgaGMxvnCuLV; @@ -752120,6 +761640,19 @@ struct qUaeyIgVCufmDzatlipvlpwBwlinA_cyAAlzRafJbONGrhwijrhGXhJQshA__Enum__Boxed #endif }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_Dictionary_2_System_Int32_UnityEngine_KeyCode_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct Dictionary_2_System_Int32_UnityEngine_KeyCode_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_Dictionary_2_System_Int32_UnityEngine_KeyCode___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_Dictionary_2_System_Int32_UnityEngine_KeyCode___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_Dictionary_2_System_Int32_UnityEngine_KeyCode_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_Dictionary_2_System_Int32_UnityEngine_KeyCode___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_Dictionary_2_System_Int32_UnityEngine_KeyCode___Array *_entries; @@ -752139,17 +761672,21 @@ struct Dictionary_2_System_Int32_Dictionary_2_System_Int32_UnityEngine_KeyCode_ struct Dictionary_2_System_Int32_Dictionary_2_System_Int32_UnityEngine_KeyCode___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_Dictionary_2_System_Int32_UnityEngine_KeyCode_ { +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_KeyCode_ { int32_t hashCode; int32_t next; int32_t key; - struct Dictionary_2_System_Int32_UnityEngine_KeyCode_ *value; + #if defined(_CPLUSPLUS_) + KeyCode__Enum value; + #else + int32_t value; + #endif }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_Dictionary_2_System_Int32_UnityEngine_KeyCode___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_Dictionary_2_System_Int32_UnityEngine_KeyCode___Class *klass; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_KeyCode___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_KeyCode___Class *klass; MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_Dictionary_2_System_Int32_UnityEngine_KeyCode_ fields; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_KeyCode_ fields; }; struct __declspec(align(8)) Dictionary_2_System_Int32_UnityEngine_KeyCode___Fields { @@ -752171,23 +761708,6 @@ struct Dictionary_2_System_Int32_UnityEngine_KeyCode_ { struct Dictionary_2_System_Int32_UnityEngine_KeyCode___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_KeyCode_ { - int32_t hashCode; - int32_t next; - int32_t key; - #if defined(_CPLUSPLUS_) - KeyCode__Enum value; - #else - int32_t value; - #endif -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_KeyCode___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_KeyCode___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_KeyCode_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_KeyCode___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_KeyCode___Array__Class *klass; MonitorData *monitor; @@ -753559,6 +763079,21 @@ struct ICollection_1_Dictionary_2_System_Int32_UnityEngine_KeyCode___Class { struct ICollection_1_Dictionary_2_System_Int32_UnityEngine_KeyCode___VTable vtable; }; +struct Dictionary_2_System_Int32_UnityEngine_KeyCode__1__VTable { +}; + +struct Dictionary_2_System_Int32_UnityEngine_KeyCode__1__StaticFields { +}; + +struct Dictionary_2_System_Int32_UnityEngine_KeyCode__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_System_Int32_UnityEngine_KeyCode__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_System_Int32_UnityEngine_KeyCode__1__VTable vtable; +}; + struct KeyValuePair_2_System_Int32_Dictionary_2_System_Int32_UnityEngine_KeyCode___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -754226,6 +763761,44 @@ struct OkuVnnghJpCGVDXlmFhMffmdlBsJA { MonitorData *monitor; }; +struct __declspec(align(8)) LvZCVPtmcvoJGRjIDMmnLaqjtTcQ__Fields { + uint16_t eMLnhdVsoXPrYTweixtuDlHHWzkd; + uint16_t duGMeaBfOmAdehKUYIPMBOOjZAbFb; + int32_t SwKIukVtZYDRBipTklViLSykcarO; + int32_t aRTMoUEcTCZYlFcYhzIPLBjEcuyM; + uint8_t PXqbCxkOoJxoaRlPLJNNSCUoeVfv; +}; + +struct LvZCVPtmcvoJGRjIDMmnLaqjtTcQ { + struct LvZCVPtmcvoJGRjIDMmnLaqjtTcQ__Class *klass; + MonitorData *monitor; + struct LvZCVPtmcvoJGRjIDMmnLaqjtTcQ__Fields fields; +}; + +struct NJXNwLLrhxyDOSGduoygSsnoYkiK__Fields { + struct LvZCVPtmcvoJGRjIDMmnLaqjtTcQ__Fields _; + bool bIfFyIvFfBcestycSuLxwEUgpkTX; + int32_t RpYHihGNLGxchvIGMfJCpuAGiZSDA; + int32_t mTLdSEERTipvhIuPfhxxxoSLmxcb; + bool aAMJRuXHToFnNEAINpkktHXwohnjA; + int32_t UdoLahQypTyTBeQIJzPkQaJrwAGc; + int32_t vQNHihmBNMcdDCyrOonoEzlvEilxA; + int32_t PZVELEELlwSTGKTJyGBKErMTqCdZA; + int32_t hbRUhyfNmuFGfdbEdQtZhVxIXzcR; + int32_t sHMTfbHOrhYmclZyheAughMmhNGv; + int32_t dacUrfnYKzaPSAFTNlZrnyhcbVln; + uint32_t IxfCTeffEtXsrgEVoosPBbWUQYVgA; + uint32_t FLRRIIDnYuBAgTJPWjABeQfkylbj; + int32_t rrJXunYDKFhcjaCHaVxGEtJcaQnvA; + uint32_t DRxUwLsbPJabDkPSZRDMoFtTpxkNA; +}; + +struct NJXNwLLrhxyDOSGduoygSsnoYkiK { + struct NJXNwLLrhxyDOSGduoygSsnoYkiK__Class *klass; + MonitorData *monitor; + struct NJXNwLLrhxyDOSGduoygSsnoYkiK__Fields fields; +}; + struct __declspec(align(8)) ZemgRaVLtbvyLNdCEKfootiqlVcK__Fields { bool jICgEJGtNBQLmGWzSebnJQtCJnkR; struct List_1_NJXNwLLrhxyDOSGduoygSsnoYkiK_ *RiaGxSfGCelfGMsfZHoDtCLnKuUoA; @@ -754275,44 +763848,6 @@ struct List_1_NJXNwLLrhxyDOSGduoygSsnoYkiK_ { struct List_1_NJXNwLLrhxyDOSGduoygSsnoYkiK___Fields fields; }; -struct __declspec(align(8)) LvZCVPtmcvoJGRjIDMmnLaqjtTcQ__Fields { - uint16_t eMLnhdVsoXPrYTweixtuDlHHWzkd; - uint16_t duGMeaBfOmAdehKUYIPMBOOjZAbFb; - int32_t SwKIukVtZYDRBipTklViLSykcarO; - int32_t aRTMoUEcTCZYlFcYhzIPLBjEcuyM; - uint8_t PXqbCxkOoJxoaRlPLJNNSCUoeVfv; -}; - -struct LvZCVPtmcvoJGRjIDMmnLaqjtTcQ { - struct LvZCVPtmcvoJGRjIDMmnLaqjtTcQ__Class *klass; - MonitorData *monitor; - struct LvZCVPtmcvoJGRjIDMmnLaqjtTcQ__Fields fields; -}; - -struct NJXNwLLrhxyDOSGduoygSsnoYkiK__Fields { - struct LvZCVPtmcvoJGRjIDMmnLaqjtTcQ__Fields _; - bool bIfFyIvFfBcestycSuLxwEUgpkTX; - int32_t RpYHihGNLGxchvIGMfJCpuAGiZSDA; - int32_t mTLdSEERTipvhIuPfhxxxoSLmxcb; - bool aAMJRuXHToFnNEAINpkktHXwohnjA; - int32_t UdoLahQypTyTBeQIJzPkQaJrwAGc; - int32_t vQNHihmBNMcdDCyrOonoEzlvEilxA; - int32_t PZVELEELlwSTGKTJyGBKErMTqCdZA; - int32_t hbRUhyfNmuFGfdbEdQtZhVxIXzcR; - int32_t sHMTfbHOrhYmclZyheAughMmhNGv; - int32_t dacUrfnYKzaPSAFTNlZrnyhcbVln; - uint32_t IxfCTeffEtXsrgEVoosPBbWUQYVgA; - uint32_t FLRRIIDnYuBAgTJPWjABeQfkylbj; - int32_t rrJXunYDKFhcjaCHaVxGEtJcaQnvA; - uint32_t DRxUwLsbPJabDkPSZRDMoFtTpxkNA; -}; - -struct NJXNwLLrhxyDOSGduoygSsnoYkiK { - struct NJXNwLLrhxyDOSGduoygSsnoYkiK__Class *klass; - MonitorData *monitor; - struct NJXNwLLrhxyDOSGduoygSsnoYkiK__Fields fields; -}; - struct NJXNwLLrhxyDOSGduoygSsnoYkiK__Array { struct NJXNwLLrhxyDOSGduoygSsnoYkiK__Array__Class *klass; MonitorData *monitor; @@ -754583,19 +764118,6 @@ struct YbqFPqlOhPbwgAIFLLewBFaMbWuFb { struct YbqFPqlOhPbwgAIFLLewBFaMbWuFb__Fields fields; }; -struct __declspec(align(8)) List_1_YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE___Fields { - struct YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE_ { - struct List_1_YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE___Class *klass; - MonitorData *monitor; - struct List_1_YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE___Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class YbqFPqlOhPbwgAIFLLewBFaMbWuFb_iotHRVOMpyfeQesWUiMxwdlBsoxKA__Enum : int32_t { Device = 0x00000011, @@ -754682,6 +764204,19 @@ struct YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE { struct YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE__Fields fields; }; +struct __declspec(align(8)) List_1_YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE___Fields { + struct YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE_ { + struct List_1_YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE___Class *klass; + MonitorData *monitor; + struct List_1_YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE___Fields fields; +}; + struct __declspec(align(8)) YbqFPqlOhPbwgAIFLLewBFaMbWuFb_kmEsTSZdFFnIPZHCfAKxHljbQrJR__Fields { int32_t AJLVvFJMRycbHSDPhiCMIHvqNQZQ; struct ButtonLoopSet *KyhEuahGioaGXEPIuJBkcByQOXZEA; @@ -754812,19 +764347,6 @@ struct YbqFPqlOhPbwgAIFLLewBFaMbWuFb_bmycphkAyqKNoaTIKLUfvetjHrnTA { struct YbqFPqlOhPbwgAIFLLewBFaMbWuFb_bmycphkAyqKNoaTIKLUfvetjHrnTA__Fields fields; }; -struct __declspec(align(8)) List_1_YbqFPqlOhPbwgAIFLLewBFaMbWuFb_bmycphkAyqKNoaTIKLUfvetjHrnTA_wAEbikHXPiUhjCZkCxpMjGhOLrYn___Fields { - struct YbqFPqlOhPbwgAIFLLewBFaMbWuFb_bmycphkAyqKNoaTIKLUfvetjHrnTA_wAEbikHXPiUhjCZkCxpMjGhOLrYn__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_YbqFPqlOhPbwgAIFLLewBFaMbWuFb_bmycphkAyqKNoaTIKLUfvetjHrnTA_wAEbikHXPiUhjCZkCxpMjGhOLrYn_ { - struct List_1_YbqFPqlOhPbwgAIFLLewBFaMbWuFb_bmycphkAyqKNoaTIKLUfvetjHrnTA_wAEbikHXPiUhjCZkCxpMjGhOLrYn___Class *klass; - MonitorData *monitor; - struct List_1_YbqFPqlOhPbwgAIFLLewBFaMbWuFb_bmycphkAyqKNoaTIKLUfvetjHrnTA_wAEbikHXPiUhjCZkCxpMjGhOLrYn___Fields fields; -}; - struct __declspec(align(8)) YbqFPqlOhPbwgAIFLLewBFaMbWuFb_bmycphkAyqKNoaTIKLUfvetjHrnTA_wAEbikHXPiUhjCZkCxpMjGhOLrYn__Fields { int32_t bICPoXOBaZjrXbXAmavftOoDlSmRA; struct Guid lsujGrOpVyTrqGMDUBuHXPPgaRKe; @@ -754841,6 +764363,19 @@ struct YbqFPqlOhPbwgAIFLLewBFaMbWuFb_bmycphkAyqKNoaTIKLUfvetjHrnTA_wAEbikHXPiUhj struct YbqFPqlOhPbwgAIFLLewBFaMbWuFb_bmycphkAyqKNoaTIKLUfvetjHrnTA_wAEbikHXPiUhjCZkCxpMjGhOLrYn__Fields fields; }; +struct __declspec(align(8)) List_1_YbqFPqlOhPbwgAIFLLewBFaMbWuFb_bmycphkAyqKNoaTIKLUfvetjHrnTA_wAEbikHXPiUhjCZkCxpMjGhOLrYn___Fields { + struct YbqFPqlOhPbwgAIFLLewBFaMbWuFb_bmycphkAyqKNoaTIKLUfvetjHrnTA_wAEbikHXPiUhjCZkCxpMjGhOLrYn__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_YbqFPqlOhPbwgAIFLLewBFaMbWuFb_bmycphkAyqKNoaTIKLUfvetjHrnTA_wAEbikHXPiUhjCZkCxpMjGhOLrYn_ { + struct List_1_YbqFPqlOhPbwgAIFLLewBFaMbWuFb_bmycphkAyqKNoaTIKLUfvetjHrnTA_wAEbikHXPiUhjCZkCxpMjGhOLrYn___Class *klass; + MonitorData *monitor; + struct List_1_YbqFPqlOhPbwgAIFLLewBFaMbWuFb_bmycphkAyqKNoaTIKLUfvetjHrnTA_wAEbikHXPiUhjCZkCxpMjGhOLrYn___Fields fields; +}; + struct YbqFPqlOhPbwgAIFLLewBFaMbWuFb_bmycphkAyqKNoaTIKLUfvetjHrnTA_wAEbikHXPiUhjCZkCxpMjGhOLrYn__Array { struct YbqFPqlOhPbwgAIFLLewBFaMbWuFb_bmycphkAyqKNoaTIKLUfvetjHrnTA_wAEbikHXPiUhjCZkCxpMjGhOLrYn__Array__Class *klass; MonitorData *monitor; @@ -754919,6 +764454,17 @@ struct yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_u0001_pcmxluRvpkGtsUqOgHHZXAGWZpJJ_System_ struct yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_u0001_pcmxluRvpkGtsUqOgHHZXAGWZpJJ_System_Collections_Generic_List_1___Fields fields; }; +struct __declspec(align(8)) YbqFPqlOhPbwgAIFLLewBFaMbWuFb_WCWrnemrMnIApfYLoPRnewDeJmzbA__Fields { + struct YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE *aFScctDuEVkmrEXEqiGxyztxMAcJA; + struct IEpqttsJBVpdPbiISguYNqxToTKd *NnVoQvqztweeDiyoHLajowgzJxFk; +}; + +struct YbqFPqlOhPbwgAIFLLewBFaMbWuFb_WCWrnemrMnIApfYLoPRnewDeJmzbA { + struct YbqFPqlOhPbwgAIFLLewBFaMbWuFb_WCWrnemrMnIApfYLoPRnewDeJmzbA__Class *klass; + MonitorData *monitor; + struct YbqFPqlOhPbwgAIFLLewBFaMbWuFb_WCWrnemrMnIApfYLoPRnewDeJmzbA__Fields fields; +}; + struct __declspec(align(8)) List_1_YbqFPqlOhPbwgAIFLLewBFaMbWuFb_WCWrnemrMnIApfYLoPRnewDeJmzbA___Fields { struct YbqFPqlOhPbwgAIFLLewBFaMbWuFb_WCWrnemrMnIApfYLoPRnewDeJmzbA__Array *_items; int32_t _size; @@ -754932,17 +764478,6 @@ struct List_1_YbqFPqlOhPbwgAIFLLewBFaMbWuFb_WCWrnemrMnIApfYLoPRnewDeJmzbA_ { struct List_1_YbqFPqlOhPbwgAIFLLewBFaMbWuFb_WCWrnemrMnIApfYLoPRnewDeJmzbA___Fields fields; }; -struct __declspec(align(8)) YbqFPqlOhPbwgAIFLLewBFaMbWuFb_WCWrnemrMnIApfYLoPRnewDeJmzbA__Fields { - struct YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE *aFScctDuEVkmrEXEqiGxyztxMAcJA; - struct IEpqttsJBVpdPbiISguYNqxToTKd *NnVoQvqztweeDiyoHLajowgzJxFk; -}; - -struct YbqFPqlOhPbwgAIFLLewBFaMbWuFb_WCWrnemrMnIApfYLoPRnewDeJmzbA { - struct YbqFPqlOhPbwgAIFLLewBFaMbWuFb_WCWrnemrMnIApfYLoPRnewDeJmzbA__Class *klass; - MonitorData *monitor; - struct YbqFPqlOhPbwgAIFLLewBFaMbWuFb_WCWrnemrMnIApfYLoPRnewDeJmzbA__Fields fields; -}; - struct YbqFPqlOhPbwgAIFLLewBFaMbWuFb_WCWrnemrMnIApfYLoPRnewDeJmzbA__Array { struct YbqFPqlOhPbwgAIFLLewBFaMbWuFb_WCWrnemrMnIApfYLoPRnewDeJmzbA__Array__Class *klass; MonitorData *monitor; @@ -755916,19 +765451,6 @@ struct kFIrhYouotPQcJZqjklRXONdiOBk { struct kFIrhYouotPQcJZqjklRXONdiOBk__Fields fields; }; -struct __declspec(align(8)) List_1_kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ___Fields { - struct kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ_ { - struct List_1_kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ___Class *klass; - MonitorData *monitor; - struct List_1_kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ___Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class DeviceType__Enum_1 : int32_t { Joystick = 0x00000000, @@ -756007,6 +765529,19 @@ struct kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ { struct kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ__Fields fields; }; +struct __declspec(align(8)) List_1_kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ___Fields { + struct kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ_ { + struct List_1_kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ___Class *klass; + MonitorData *monitor; + struct List_1_kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ___Fields fields; +}; + struct kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ__Array { struct kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ__Array__Class *klass; MonitorData *monitor; @@ -756030,19 +765565,6 @@ struct kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ { struct kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ__Fields fields; }; -struct __declspec(align(8)) List_1_kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ_IPxIzDRSRdPphfeFncEoTAbRXhKJ___Fields { - struct kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ_IPxIzDRSRdPphfeFncEoTAbRXhKJ__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ_IPxIzDRSRdPphfeFncEoTAbRXhKJ_ { - struct List_1_kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ_IPxIzDRSRdPphfeFncEoTAbRXhKJ___Class *klass; - MonitorData *monitor; - struct List_1_kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ_IPxIzDRSRdPphfeFncEoTAbRXhKJ___Fields fields; -}; - struct __declspec(align(8)) kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ_IPxIzDRSRdPphfeFncEoTAbRXhKJ__Fields { int32_t bICPoXOBaZjrXbXAmavftOoDlSmRA; struct Guid lsujGrOpVyTrqGMDUBuHXPPgaRKe; @@ -756062,6 +765584,19 @@ struct kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ_IPxIzDRSRdPphfe struct kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ_IPxIzDRSRdPphfeFncEoTAbRXhKJ__Fields fields; }; +struct __declspec(align(8)) List_1_kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ_IPxIzDRSRdPphfeFncEoTAbRXhKJ___Fields { + struct kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ_IPxIzDRSRdPphfeFncEoTAbRXhKJ__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ_IPxIzDRSRdPphfeFncEoTAbRXhKJ_ { + struct List_1_kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ_IPxIzDRSRdPphfeFncEoTAbRXhKJ___Class *klass; + MonitorData *monitor; + struct List_1_kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ_IPxIzDRSRdPphfeFncEoTAbRXhKJ___Fields fields; +}; + struct kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ_IPxIzDRSRdPphfeFncEoTAbRXhKJ__Array { struct kFIrhYouotPQcJZqjklRXONdiOBk_AqtYJwUaGevPdvHhvzxSHiPIJMTJ_IPxIzDRSRdPphfeFncEoTAbRXhKJ__Array__Class *klass; MonitorData *monitor; @@ -756967,6 +766502,17 @@ struct IEqualityComparer_1_Rewired_PlatformInputManager_ { MonitorData *monitor; }; +struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_Rewired_PlatformInputManager_ { + int32_t EEIcOLJEdadvUSUztQvSiKbHUvbk; + struct PlatformInputManager *KCmvqxmDPHZcOPAPceRkbTZbUBUm; +}; + +struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_Rewired_PlatformInputManager___Boxed { + struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_Rewired_PlatformInputManager___Class *klass; + MonitorData *monitor; + struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_Rewired_PlatformInputManager_ fields; +}; + struct __declspec(align(8)) AList_1_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_Rewired_PlatformInputManager___Fields { struct IEqualityComparer_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__2 *IffVJRWXMWVnHJdLRJYLVauxgDLkA; struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_Rewired_PlatformInputManager___Array *_items; @@ -756986,17 +766532,6 @@ struct AList_1_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_Sys struct AList_1_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_Rewired_PlatformInputManager___Fields fields; }; -struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_Rewired_PlatformInputManager_ { - int32_t EEIcOLJEdadvUSUztQvSiKbHUvbk; - struct PlatformInputManager *KCmvqxmDPHZcOPAPceRkbTZbUBUm; -}; - -struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_Rewired_PlatformInputManager___Boxed { - struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_Rewired_PlatformInputManager___Class *klass; - MonitorData *monitor; - struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_Rewired_PlatformInputManager_ fields; -}; - struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_Rewired_PlatformInputManager___Array { struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_Rewired_PlatformInputManager___Array__Class *klass; MonitorData *monitor; @@ -757055,19 +766590,6 @@ struct YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb { struct YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb__Fields fields; }; -struct __declspec(align(8)) List_1_YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb_TKPMPusWChpubsSueSSSVXEvmtou___Fields { - struct YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb_TKPMPusWChpubsSueSSSVXEvmtou__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb_TKPMPusWChpubsSueSSSVXEvmtou_ { - struct List_1_YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb_TKPMPusWChpubsSueSSSVXEvmtou___Class *klass; - MonitorData *monitor; - struct List_1_YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb_TKPMPusWChpubsSueSSSVXEvmtou___Fields fields; -}; - struct __declspec(align(8)) YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb_TKPMPusWChpubsSueSSSVXEvmtou__Fields { int32_t nxmPyLAsUXaCYXmyBqjNpNbqkFKb; int32_t PTrEAGkTkUnCEIHUTFUDDZHXumRTA; @@ -757085,6 +766607,19 @@ struct YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb_TKPMPusWChpubs struct YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb_TKPMPusWChpubsSueSSSVXEvmtou__Fields fields; }; +struct __declspec(align(8)) List_1_YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb_TKPMPusWChpubsSueSSSVXEvmtou___Fields { + struct YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb_TKPMPusWChpubsSueSSSVXEvmtou__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb_TKPMPusWChpubsSueSSSVXEvmtou_ { + struct List_1_YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb_TKPMPusWChpubsSueSSSVXEvmtou___Class *klass; + MonitorData *monitor; + struct List_1_YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb_TKPMPusWChpubsSueSSSVXEvmtou___Fields fields; +}; + struct YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb_TKPMPusWChpubsSueSSSVXEvmtou__Array { struct YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb_TKPMPusWChpubsSueSSSVXEvmtou__Array__Class *klass; MonitorData *monitor; @@ -757253,6 +766788,21 @@ struct ICollection_1_Rewired_PlatformInputManager___Class { struct ICollection_1_Rewired_PlatformInputManager___VTable vtable; }; +struct PlatformInputManager___VTable { +}; + +struct PlatformInputManager___StaticFields { +}; + +struct PlatformInputManager___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PlatformInputManager___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PlatformInputManager___VTable vtable; +}; + struct KeyValuePair_2_System_Int32_Rewired_PlatformInputManager___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -757683,44 +767233,6 @@ struct YmMTSUgHoMLuIFBEDUyyrVpljvtC_ZmVAsXJBxkgbDiCwTwrQpoWELVge__Class { struct YmMTSUgHoMLuIFBEDUyyrVpljvtC_ZmVAsXJBxkgbDiCwTwrQpoWELVge__VTable vtable; }; -struct XWKLBhMJByLmRjCmXYTJulYaPqwJ__Fields { - struct PlatformInputManager__Fields _; - struct XWKLBhMJByLmRjCmXYTJulYaPqwJ_kKVyOYAdtYJrZyUqtCeuyKpidgaN__Array *CyXEmRLpVCiwOqvcUsfJkkYHVyJD; - bool dnhunjuSKzRNUaPVVAicRhYrhNSo; - struct XWKLBhMJByLmRjCmXYTJulYaPqwJ_nQcgZoKIzAENPJyjNZphvOrblvAz *NlNaAUKhXDHxphLoKNXXZMavFSBPA; - struct XWKLBhMJByLmRjCmXYTJulYaPqwJ_YaWBSOGSSrYuejjxIPgOgikwrUfr *FFrLNIZzjaSsqRKPqEEmbXIpzeipA; - struct yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_System_Boolean_ *PsnfSTDeosUbvMJXskSvuWiuRlVoA; - struct Boolean__Array *HGNUUCsTHaQiloAdHwzhcPIvIBcU; - struct Boolean__Array *unfscUjecFqSqUTfjwjyfMAGfznj; - bool JnwHnRtbHtDMicUWYegHBslmsDoX; - bool pIcZzIivaHiGBBBKEZZRSJqqLyBH; - #if defined(_CPLUSPLUS_) - UpdateLoopSetting__Enum zkXfshomIBspuaxZHqpoEiaZgiWcA; - #else - int32_t zkXfshomIBspuaxZHqpoEiaZgiWcA; - #endif - #if defined(_CPLUSPLUS_) - UpdateLoopType__Enum KZSpadGZCsPRMcfMpnkaQOaihvjAA; - #else - int32_t KZSpadGZCsPRMcfMpnkaQOaihvjAA; - #endif - #if defined(_CPLUSPLUS_) - UpdateLoopType__Enum gIyaOVEttTWtUWmvuRIQNMTAIGEo; - #else - int32_t gIyaOVEttTWtUWmvuRIQNMTAIGEo; - #endif - struct Action_2_Int32_Rewired_ControllerDataUpdater_ *jxkfBxbmSQuvgPEGgjLQMNoxDfPwA; - bool aBahurfIVGlpTAwCZBpakzjEdiRYA; - struct Func_2_Rewired_BridgedControllerHWInfo_Rewired_HardwareJoystickMap_InputManager_ *WYqcnHPXGDSQjUqWYghxNnnTsFOo; - struct Func_1_Int32_ *LBFoRsnWPdHqeZdmTipFAxACfgmYA; -}; - -struct XWKLBhMJByLmRjCmXYTJulYaPqwJ { - struct XWKLBhMJByLmRjCmXYTJulYaPqwJ__Class *klass; - MonitorData *monitor; - struct XWKLBhMJByLmRjCmXYTJulYaPqwJ__Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class DeviceType__Enum_2 : uint8_t { Gamepad = 0x01, @@ -757784,6 +767296,44 @@ struct XWKLBhMJByLmRjCmXYTJulYaPqwJ_kKVyOYAdtYJrZyUqtCeuyKpidgaN { struct XWKLBhMJByLmRjCmXYTJulYaPqwJ_kKVyOYAdtYJrZyUqtCeuyKpidgaN__Fields fields; }; +struct XWKLBhMJByLmRjCmXYTJulYaPqwJ__Fields { + struct PlatformInputManager__Fields _; + struct XWKLBhMJByLmRjCmXYTJulYaPqwJ_kKVyOYAdtYJrZyUqtCeuyKpidgaN__Array *CyXEmRLpVCiwOqvcUsfJkkYHVyJD; + bool dnhunjuSKzRNUaPVVAicRhYrhNSo; + struct XWKLBhMJByLmRjCmXYTJulYaPqwJ_nQcgZoKIzAENPJyjNZphvOrblvAz *NlNaAUKhXDHxphLoKNXXZMavFSBPA; + struct XWKLBhMJByLmRjCmXYTJulYaPqwJ_YaWBSOGSSrYuejjxIPgOgikwrUfr *FFrLNIZzjaSsqRKPqEEmbXIpzeipA; + struct yHtFVNQhgAobOLbpTRFVvsoPVfgx_1_System_Boolean_ *PsnfSTDeosUbvMJXskSvuWiuRlVoA; + struct Boolean__Array *HGNUUCsTHaQiloAdHwzhcPIvIBcU; + struct Boolean__Array *unfscUjecFqSqUTfjwjyfMAGfznj; + bool JnwHnRtbHtDMicUWYegHBslmsDoX; + bool pIcZzIivaHiGBBBKEZZRSJqqLyBH; + #if defined(_CPLUSPLUS_) + UpdateLoopSetting__Enum zkXfshomIBspuaxZHqpoEiaZgiWcA; + #else + int32_t zkXfshomIBspuaxZHqpoEiaZgiWcA; + #endif + #if defined(_CPLUSPLUS_) + UpdateLoopType__Enum KZSpadGZCsPRMcfMpnkaQOaihvjAA; + #else + int32_t KZSpadGZCsPRMcfMpnkaQOaihvjAA; + #endif + #if defined(_CPLUSPLUS_) + UpdateLoopType__Enum gIyaOVEttTWtUWmvuRIQNMTAIGEo; + #else + int32_t gIyaOVEttTWtUWmvuRIQNMTAIGEo; + #endif + struct Action_2_Int32_Rewired_ControllerDataUpdater_ *jxkfBxbmSQuvgPEGgjLQMNoxDfPwA; + bool aBahurfIVGlpTAwCZBpakzjEdiRYA; + struct Func_2_Rewired_BridgedControllerHWInfo_Rewired_HardwareJoystickMap_InputManager_ *WYqcnHPXGDSQjUqWYghxNnnTsFOo; + struct Func_1_Int32_ *LBFoRsnWPdHqeZdmTipFAxACfgmYA; +}; + +struct XWKLBhMJByLmRjCmXYTJulYaPqwJ { + struct XWKLBhMJByLmRjCmXYTJulYaPqwJ__Class *klass; + MonitorData *monitor; + struct XWKLBhMJByLmRjCmXYTJulYaPqwJ__Fields fields; +}; + #if defined(_CPLUSPLUS_) enum class SDUBigUZVsETWpjLQahSbWCNVBzVA__Enum : int16_t { DPadUp = 0x0001, @@ -757998,19 +767548,6 @@ struct XWKLBhMJByLmRjCmXYTJulYaPqwJ_YaWBSOGSSrYuejjxIPgOgikwrUfr { struct XWKLBhMJByLmRjCmXYTJulYaPqwJ_YaWBSOGSSrYuejjxIPgOgikwrUfr__Fields fields; }; -struct __declspec(align(8)) List_1_XWKLBhMJByLmRjCmXYTJulYaPqwJ_YaWBSOGSSrYuejjxIPgOgikwrUfr_LlnZLsKOkGcztEBJUXEELsmJjENbA___Fields { - struct XWKLBhMJByLmRjCmXYTJulYaPqwJ_YaWBSOGSSrYuejjxIPgOgikwrUfr_LlnZLsKOkGcztEBJUXEELsmJjENbA__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_XWKLBhMJByLmRjCmXYTJulYaPqwJ_YaWBSOGSSrYuejjxIPgOgikwrUfr_LlnZLsKOkGcztEBJUXEELsmJjENbA_ { - struct List_1_XWKLBhMJByLmRjCmXYTJulYaPqwJ_YaWBSOGSSrYuejjxIPgOgikwrUfr_LlnZLsKOkGcztEBJUXEELsmJjENbA___Class *klass; - MonitorData *monitor; - struct List_1_XWKLBhMJByLmRjCmXYTJulYaPqwJ_YaWBSOGSSrYuejjxIPgOgikwrUfr_LlnZLsKOkGcztEBJUXEELsmJjENbA___Fields fields; -}; - struct __declspec(align(8)) XWKLBhMJByLmRjCmXYTJulYaPqwJ_YaWBSOGSSrYuejjxIPgOgikwrUfr_LlnZLsKOkGcztEBJUXEELsmJjENbA__Fields { bool CrBLOYTjnDFMFKantoNlxAhcwJHjA; int32_t bICPoXOBaZjrXbXAmavftOoDlSmRA; @@ -758027,6 +767564,19 @@ struct XWKLBhMJByLmRjCmXYTJulYaPqwJ_YaWBSOGSSrYuejjxIPgOgikwrUfr_LlnZLsKOkGcztEB struct XWKLBhMJByLmRjCmXYTJulYaPqwJ_YaWBSOGSSrYuejjxIPgOgikwrUfr_LlnZLsKOkGcztEBJUXEELsmJjENbA__Fields fields; }; +struct __declspec(align(8)) List_1_XWKLBhMJByLmRjCmXYTJulYaPqwJ_YaWBSOGSSrYuejjxIPgOgikwrUfr_LlnZLsKOkGcztEBJUXEELsmJjENbA___Fields { + struct XWKLBhMJByLmRjCmXYTJulYaPqwJ_YaWBSOGSSrYuejjxIPgOgikwrUfr_LlnZLsKOkGcztEBJUXEELsmJjENbA__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_XWKLBhMJByLmRjCmXYTJulYaPqwJ_YaWBSOGSSrYuejjxIPgOgikwrUfr_LlnZLsKOkGcztEBJUXEELsmJjENbA_ { + struct List_1_XWKLBhMJByLmRjCmXYTJulYaPqwJ_YaWBSOGSSrYuejjxIPgOgikwrUfr_LlnZLsKOkGcztEBJUXEELsmJjENbA___Class *klass; + MonitorData *monitor; + struct List_1_XWKLBhMJByLmRjCmXYTJulYaPqwJ_YaWBSOGSSrYuejjxIPgOgikwrUfr_LlnZLsKOkGcztEBJUXEELsmJjENbA___Fields fields; +}; + struct XWKLBhMJByLmRjCmXYTJulYaPqwJ_YaWBSOGSSrYuejjxIPgOgikwrUfr_LlnZLsKOkGcztEBJUXEELsmJjENbA__Array { struct XWKLBhMJByLmRjCmXYTJulYaPqwJ_YaWBSOGSSrYuejjxIPgOgikwrUfr_LlnZLsKOkGcztEBJUXEELsmJjENbA__Array__Class *klass; MonitorData *monitor; @@ -758597,6 +768147,51 @@ struct XWKLBhMJByLmRjCmXYTJulYaPqwJ_hstLDqXBgWFMOdvqNBSIsUgLtrrOA__Enum__Class { struct XWKLBhMJByLmRjCmXYTJulYaPqwJ_hstLDqXBgWFMOdvqNBSIsUgLtrrOA__Enum__VTable vtable; }; +struct HmAcNXaDOwcBaXnHmUCisFjFgxag___VTable { +}; + +struct HmAcNXaDOwcBaXnHmUCisFjFgxag___StaticFields { +}; + +struct HmAcNXaDOwcBaXnHmUCisFjFgxag___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HmAcNXaDOwcBaXnHmUCisFjFgxag___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HmAcNXaDOwcBaXnHmUCisFjFgxag___VTable vtable; +}; + +struct bcOmlpGgwVCrecHKRjwdQzyizLQGA_zqrMMRRVlnxYQKhlRpOFkRpFWHlB___VTable { +}; + +struct bcOmlpGgwVCrecHKRjwdQzyizLQGA_zqrMMRRVlnxYQKhlRpOFkRpFWHlB___StaticFields { +}; + +struct bcOmlpGgwVCrecHKRjwdQzyizLQGA_zqrMMRRVlnxYQKhlRpOFkRpFWHlB___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct bcOmlpGgwVCrecHKRjwdQzyizLQGA_zqrMMRRVlnxYQKhlRpOFkRpFWHlB___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct bcOmlpGgwVCrecHKRjwdQzyizLQGA_zqrMMRRVlnxYQKhlRpOFkRpFWHlB___VTable vtable; +}; + +struct bcOmlpGgwVCrecHKRjwdQzyizLQGA_NezMPkGUwSkAcIJPJQDqPKqwcDUr___VTable { +}; + +struct bcOmlpGgwVCrecHKRjwdQzyizLQGA_NezMPkGUwSkAcIJPJQDqPKqwcDUr___StaticFields { +}; + +struct bcOmlpGgwVCrecHKRjwdQzyizLQGA_NezMPkGUwSkAcIJPJQDqPKqwcDUr___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct bcOmlpGgwVCrecHKRjwdQzyizLQGA_NezMPkGUwSkAcIJPJQDqPKqwcDUr___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct bcOmlpGgwVCrecHKRjwdQzyizLQGA_NezMPkGUwSkAcIJPJQDqPKqwcDUr___VTable vtable; +}; + struct bcOmlpGgwVCrecHKRjwdQzyizLQGA_ozzCwydVGqRtzfxkQeqCoZQcovRAA { uint8_t kFJaWsNPEXFGZPDRKAOHCZuhAYvwA; uint8_t bjDSEMBJcpLXCSXNxSjPSDNejWKm; @@ -758632,6 +768227,21 @@ struct bcOmlpGgwVCrecHKRjwdQzyizLQGA_ozzCwydVGqRtzfxkQeqCoZQcovRAA__Class { struct bcOmlpGgwVCrecHKRjwdQzyizLQGA_ozzCwydVGqRtzfxkQeqCoZQcovRAA__VTable vtable; }; +struct bcOmlpGgwVCrecHKRjwdQzyizLQGA_ozzCwydVGqRtzfxkQeqCoZQcovRAA___VTable { +}; + +struct bcOmlpGgwVCrecHKRjwdQzyizLQGA_ozzCwydVGqRtzfxkQeqCoZQcovRAA___StaticFields { +}; + +struct bcOmlpGgwVCrecHKRjwdQzyizLQGA_ozzCwydVGqRtzfxkQeqCoZQcovRAA___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct bcOmlpGgwVCrecHKRjwdQzyizLQGA_ozzCwydVGqRtzfxkQeqCoZQcovRAA___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct bcOmlpGgwVCrecHKRjwdQzyizLQGA_ozzCwydVGqRtzfxkQeqCoZQcovRAA___VTable vtable; +}; + struct ZMqjCYehEKqIQMMhejVBKtVTTPMf_TsQJRjzqAaquHPlNjgdTtMmlCdse { uint32_t FrdtcycSmyDsXfUCXOHZsgzSjdQk; void *wJhUUaYHdincgYLryXoADPWpUWFo; @@ -758670,6 +768280,21 @@ struct ZMqjCYehEKqIQMMhejVBKtVTTPMf_TsQJRjzqAaquHPlNjgdTtMmlCdse__Class { struct ZMqjCYehEKqIQMMhejVBKtVTTPMf_TsQJRjzqAaquHPlNjgdTtMmlCdse__VTable vtable; }; +struct ZMqjCYehEKqIQMMhejVBKtVTTPMf_TsQJRjzqAaquHPlNjgdTtMmlCdse___VTable { +}; + +struct ZMqjCYehEKqIQMMhejVBKtVTTPMf_TsQJRjzqAaquHPlNjgdTtMmlCdse___StaticFields { +}; + +struct ZMqjCYehEKqIQMMhejVBKtVTTPMf_TsQJRjzqAaquHPlNjgdTtMmlCdse___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ZMqjCYehEKqIQMMhejVBKtVTTPMf_TsQJRjzqAaquHPlNjgdTtMmlCdse___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ZMqjCYehEKqIQMMhejVBKtVTTPMf_TsQJRjzqAaquHPlNjgdTtMmlCdse___VTable vtable; +}; + struct CffaujAdfZSkXUdIRPRCmzTfUTzW { int32_t SSlasbMuqhiTTzupQlKhUVCPevHm; int32_t kggEPjbalFkEacYtjAaNTQFnxTXpA; @@ -758700,6 +768325,21 @@ struct CffaujAdfZSkXUdIRPRCmzTfUTzW__Class { struct CffaujAdfZSkXUdIRPRCmzTfUTzW__VTable vtable; }; +struct CffaujAdfZSkXUdIRPRCmzTfUTzW___VTable { +}; + +struct CffaujAdfZSkXUdIRPRCmzTfUTzW___StaticFields { +}; + +struct CffaujAdfZSkXUdIRPRCmzTfUTzW___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CffaujAdfZSkXUdIRPRCmzTfUTzW___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CffaujAdfZSkXUdIRPRCmzTfUTzW___VTable vtable; +}; + struct zecnIPCkLHFLZyMeSPKKSKQOugSU { int32_t RVbbShBCGMvXlfRjEhhiIzlZvSBn; int32_t XQsVlVQjXOwONgtQTeUJSIPkIDlZ; @@ -758732,6 +768372,21 @@ struct zecnIPCkLHFLZyMeSPKKSKQOugSU__Class { struct zecnIPCkLHFLZyMeSPKKSKQOugSU__VTable vtable; }; +struct zecnIPCkLHFLZyMeSPKKSKQOugSU___VTable { +}; + +struct zecnIPCkLHFLZyMeSPKKSKQOugSU___StaticFields { +}; + +struct zecnIPCkLHFLZyMeSPKKSKQOugSU___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct zecnIPCkLHFLZyMeSPKKSKQOugSU___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct zecnIPCkLHFLZyMeSPKKSKQOugSU___VTable vtable; +}; + struct uKZrdNmKhYlWXSGMEBBcLOFVDMcG { struct uKZrdNmKhYlWXSGMEBBcLOFVDMcG__Class *klass; MonitorData *monitor; @@ -759042,6 +768697,25 @@ struct DMTdpOkPdJDUQJGWRYyKbMtKOoSj__Enum__Boxed { #endif }; +struct rnwGumBskXMryeokghSZPtEShGNbB__Fields { + struct LvZCVPtmcvoJGRjIDMmnLaqjtTcQ__Fields _; + int32_t UdoLahQypTyTBeQIJzPkQaJrwAGc; + int32_t vQNHihmBNMcdDCyrOonoEzlvEilxA; + int32_t PZVELEELlwSTGKTJyGBKErMTqCdZA; + int32_t dacUrfnYKzaPSAFTNlZrnyhcbVln; + uint32_t IxfCTeffEtXsrgEVoosPBbWUQYVgA; + uint32_t kzuCJIgsygdMrEPdPCyAOIuMljXxA; + int32_t rrJXunYDKFhcjaCHaVxGEtJcaQnvA; + int32_t iExuaNLOIfzkRXfMjFWBCdnZuCfP; + uint32_t DRxUwLsbPJabDkPSZRDMoFtTpxkNA; +}; + +struct rnwGumBskXMryeokghSZPtEShGNbB { + struct rnwGumBskXMryeokghSZPtEShGNbB__Class *klass; + MonitorData *monitor; + struct rnwGumBskXMryeokghSZPtEShGNbB__Fields fields; +}; + struct SomlXTnRhQJAivORccsYfMDmTfon__Fields { struct sqcDTWGUEuOQFWvuXBpzYvEUgbLy__Fields _; int32_t CZRQuFuGGemAheUBhOIbLHochOcj; @@ -759075,25 +768749,6 @@ struct SomlXTnRhQJAivORccsYfMDmTfon { struct SomlXTnRhQJAivORccsYfMDmTfon__Fields fields; }; -struct rnwGumBskXMryeokghSZPtEShGNbB__Fields { - struct LvZCVPtmcvoJGRjIDMmnLaqjtTcQ__Fields _; - int32_t UdoLahQypTyTBeQIJzPkQaJrwAGc; - int32_t vQNHihmBNMcdDCyrOonoEzlvEilxA; - int32_t PZVELEELlwSTGKTJyGBKErMTqCdZA; - int32_t dacUrfnYKzaPSAFTNlZrnyhcbVln; - uint32_t IxfCTeffEtXsrgEVoosPBbWUQYVgA; - uint32_t kzuCJIgsygdMrEPdPCyAOIuMljXxA; - int32_t rrJXunYDKFhcjaCHaVxGEtJcaQnvA; - int32_t iExuaNLOIfzkRXfMjFWBCdnZuCfP; - uint32_t DRxUwLsbPJabDkPSZRDMoFtTpxkNA; -}; - -struct rnwGumBskXMryeokghSZPtEShGNbB { - struct rnwGumBskXMryeokghSZPtEShGNbB__Class *klass; - MonitorData *monitor; - struct rnwGumBskXMryeokghSZPtEShGNbB__Fields fields; -}; - struct rnwGumBskXMryeokghSZPtEShGNbB__Array { struct rnwGumBskXMryeokghSZPtEShGNbB__Array__Class *klass; MonitorData *monitor; @@ -759325,6 +768980,21 @@ struct fsRiDBEERnIQlMGEHJRgRRiEbYqF__Class { struct fsRiDBEERnIQlMGEHJRgRRiEbYqF__VTable vtable; }; +struct fsRiDBEERnIQlMGEHJRgRRiEbYqF___VTable { +}; + +struct fsRiDBEERnIQlMGEHJRgRRiEbYqF___StaticFields { +}; + +struct fsRiDBEERnIQlMGEHJRgRRiEbYqF___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct fsRiDBEERnIQlMGEHJRgRRiEbYqF___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct fsRiDBEERnIQlMGEHJRgRRiEbYqF___VTable vtable; +}; + struct KGpfpVumzcziOxJRZbURZTEAJARe { void *irWSVLAeOreeRjIWENTKHMWkYhvbA; #if defined(_CPLUSPLUS_) @@ -759371,6 +769041,51 @@ struct KGpfpVumzcziOxJRZbURZTEAJARe__Class { struct KGpfpVumzcziOxJRZbURZTEAJARe__VTable vtable; }; +struct KGpfpVumzcziOxJRZbURZTEAJARe___VTable { +}; + +struct KGpfpVumzcziOxJRZbURZTEAJARe___StaticFields { +}; + +struct KGpfpVumzcziOxJRZbURZTEAJARe___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KGpfpVumzcziOxJRZbURZTEAJARe___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KGpfpVumzcziOxJRZbURZTEAJARe___VTable vtable; +}; + +struct __declspec(align(8)) VmygOaZMePMYixMwHDTZwiDTgTwx_ynkBgOqbpMPRxusAAQsgHOtlPSzd__Fields { + struct ORTGfyrtizZvDeIlwUvooZaSkBIl *aKdxdwxKZksGExjyXDgZPwnmQaht; +}; + +struct VmygOaZMePMYixMwHDTZwiDTgTwx_ynkBgOqbpMPRxusAAQsgHOtlPSzd { + struct VmygOaZMePMYixMwHDTZwiDTgTwx_ynkBgOqbpMPRxusAAQsgHOtlPSzd__Class *klass; + MonitorData *monitor; + struct VmygOaZMePMYixMwHDTZwiDTgTwx_ynkBgOqbpMPRxusAAQsgHOtlPSzd__Fields fields; +}; + +struct __declspec(align(8)) VmygOaZMePMYixMwHDTZwiDTgTwx_BOxQKWlqJkCqZgYbdmKoWcSioOHg__Fields { + struct xPRgcRKBLoHYedzPQnPxbmJxtbbAb *aKdxdwxKZksGExjyXDgZPwnmQaht; +}; + +struct VmygOaZMePMYixMwHDTZwiDTgTwx_BOxQKWlqJkCqZgYbdmKoWcSioOHg { + struct VmygOaZMePMYixMwHDTZwiDTgTwx_BOxQKWlqJkCqZgYbdmKoWcSioOHg__Class *klass; + MonitorData *monitor; + struct VmygOaZMePMYixMwHDTZwiDTgTwx_BOxQKWlqJkCqZgYbdmKoWcSioOHg__Fields fields; +}; + +struct __declspec(align(8)) VmygOaZMePMYixMwHDTZwiDTgTwx_KSREqnFwehoxndHZqHzDjWxKkJsRA__Fields { + bool tAQwbdnZLhNUkoYQckpGbbDuoxyu; +}; + +struct VmygOaZMePMYixMwHDTZwiDTgTwx_KSREqnFwehoxndHZqHzDjWxKkJsRA { + struct VmygOaZMePMYixMwHDTZwiDTgTwx_KSREqnFwehoxndHZqHzDjWxKkJsRA__Class *klass; + MonitorData *monitor; + struct VmygOaZMePMYixMwHDTZwiDTgTwx_KSREqnFwehoxndHZqHzDjWxKkJsRA__Fields fields; +}; + struct VmygOaZMePMYixMwHDTZwiDTgTwx__Fields { struct sqcDTWGUEuOQFWvuXBpzYvEUgbLy__Fields _; int32_t CZRQuFuGGemAheUBhOIbLHochOcj; @@ -759406,16 +769121,6 @@ struct VmygOaZMePMYixMwHDTZwiDTgTwx { struct VmygOaZMePMYixMwHDTZwiDTgTwx__Fields fields; }; -struct __declspec(align(8)) VmygOaZMePMYixMwHDTZwiDTgTwx_ynkBgOqbpMPRxusAAQsgHOtlPSzd__Fields { - struct ORTGfyrtizZvDeIlwUvooZaSkBIl *aKdxdwxKZksGExjyXDgZPwnmQaht; -}; - -struct VmygOaZMePMYixMwHDTZwiDTgTwx_ynkBgOqbpMPRxusAAQsgHOtlPSzd { - struct VmygOaZMePMYixMwHDTZwiDTgTwx_ynkBgOqbpMPRxusAAQsgHOtlPSzd__Class *klass; - MonitorData *monitor; - struct VmygOaZMePMYixMwHDTZwiDTgTwx_ynkBgOqbpMPRxusAAQsgHOtlPSzd__Fields fields; -}; - struct ORTGfyrtizZvDeIlwUvooZaSkBIl_NxUoZAIjxQCtCGCtMeaRfbbPUZUjA { uint16_t oADNmlqGoPnRvCmYwBzLnvFFWtLV; uint16_t wPdCCNgWTpERsUbvMKKHZpBaShZqA; @@ -759481,16 +769186,6 @@ struct VmygOaZMePMYixMwHDTZwiDTgTwx_ynkBgOqbpMPRxusAAQsgHOtlPSzd__Array { struct VmygOaZMePMYixMwHDTZwiDTgTwx_ynkBgOqbpMPRxusAAQsgHOtlPSzd *vector[32]; }; -struct __declspec(align(8)) VmygOaZMePMYixMwHDTZwiDTgTwx_BOxQKWlqJkCqZgYbdmKoWcSioOHg__Fields { - struct xPRgcRKBLoHYedzPQnPxbmJxtbbAb *aKdxdwxKZksGExjyXDgZPwnmQaht; -}; - -struct VmygOaZMePMYixMwHDTZwiDTgTwx_BOxQKWlqJkCqZgYbdmKoWcSioOHg { - struct VmygOaZMePMYixMwHDTZwiDTgTwx_BOxQKWlqJkCqZgYbdmKoWcSioOHg__Class *klass; - MonitorData *monitor; - struct VmygOaZMePMYixMwHDTZwiDTgTwx_BOxQKWlqJkCqZgYbdmKoWcSioOHg__Fields fields; -}; - struct VmygOaZMePMYixMwHDTZwiDTgTwx_BOxQKWlqJkCqZgYbdmKoWcSioOHg__Array { struct VmygOaZMePMYixMwHDTZwiDTgTwx_BOxQKWlqJkCqZgYbdmKoWcSioOHg__Array__Class *klass; MonitorData *monitor; @@ -759499,16 +769194,6 @@ struct VmygOaZMePMYixMwHDTZwiDTgTwx_BOxQKWlqJkCqZgYbdmKoWcSioOHg__Array { struct VmygOaZMePMYixMwHDTZwiDTgTwx_BOxQKWlqJkCqZgYbdmKoWcSioOHg *vector[32]; }; -struct __declspec(align(8)) VmygOaZMePMYixMwHDTZwiDTgTwx_KSREqnFwehoxndHZqHzDjWxKkJsRA__Fields { - bool tAQwbdnZLhNUkoYQckpGbbDuoxyu; -}; - -struct VmygOaZMePMYixMwHDTZwiDTgTwx_KSREqnFwehoxndHZqHzDjWxKkJsRA { - struct VmygOaZMePMYixMwHDTZwiDTgTwx_KSREqnFwehoxndHZqHzDjWxKkJsRA__Class *klass; - MonitorData *monitor; - struct VmygOaZMePMYixMwHDTZwiDTgTwx_KSREqnFwehoxndHZqHzDjWxKkJsRA__Fields fields; -}; - struct VmygOaZMePMYixMwHDTZwiDTgTwx_KSREqnFwehoxndHZqHzDjWxKkJsRA__Array { struct VmygOaZMePMYixMwHDTZwiDTgTwx_KSREqnFwehoxndHZqHzDjWxKkJsRA__Array__Class *klass; MonitorData *monitor; @@ -759661,6 +769346,18 @@ struct fxvJDhgRhXRzTcBpAdpZBRnzpmHIb { struct fxvJDhgRhXRzTcBpAdpZBRnzpmHIb__Fields fields; }; +struct gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy { + uint16_t wAtlIyRTEpfveqhswxgAgaNPeNQO; + uint16_t YcihruvkDCDWiQBJkoQHhmUaJdwb; + uint32_t aYtUcdsyQBQIpZkLSVpwgplaWMVc; +}; + +struct gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__Boxed { + struct gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__Class *klass; + MonitorData *monitor; + struct gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy fields; +}; + struct __declspec(align(8)) AList_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy___Fields { struct IEqualityComparer_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ *IffVJRWXMWVnHJdLRJYLVauxgDLkA; struct gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__Array *_items; @@ -759680,18 +769377,6 @@ struct AList_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy_ { struct AList_1_gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy___Fields fields; }; -struct gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy { - uint16_t wAtlIyRTEpfveqhswxgAgaNPeNQO; - uint16_t YcihruvkDCDWiQBJkoQHhmUaJdwb; - uint32_t aYtUcdsyQBQIpZkLSVpwgplaWMVc; -}; - -struct gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__Boxed { - struct gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__Class *klass; - MonitorData *monitor; - struct gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy fields; -}; - struct gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__Array { struct gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy__Array__Class *klass; MonitorData *monitor; @@ -760441,6 +770126,21 @@ struct VmygOaZMePMYixMwHDTZwiDTgTwx_iLazXnUUNokTZZmllhciMxhlGpmfA__Class { struct VmygOaZMePMYixMwHDTZwiDTgTwx_iLazXnUUNokTZZmllhciMxhlGpmfA__VTable vtable; }; +struct List_1_znMZhiOLtznjGEIVUrVliWSuIivu__1__VTable { +}; + +struct List_1_znMZhiOLtznjGEIVUrVliWSuIivu__1__StaticFields { +}; + +struct List_1_znMZhiOLtznjGEIVUrVliWSuIivu__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_znMZhiOLtznjGEIVUrVliWSuIivu__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_znMZhiOLtznjGEIVUrVliWSuIivu__1__VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class eVXRkvwNiDDgOEqoJybjZlbHcejCA__Enum : int32_t { Mouse = 0x00000000, @@ -761651,6 +771351,19 @@ struct DtqAEEJiDJPjNlUOxJfuxiAZflzJ { struct DtqAEEJiDJPjNlUOxJfuxiAZflzJ__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_DtqAEEJiDJPjNlUOxJfuxiAZflzJ_ { + int32_t hashCode; + int32_t next; + struct IpQCkqlgJLyrFpAOyBfUxXQpJsWK key; + struct DtqAEEJiDJPjNlUOxJfuxiAZflzJ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_DtqAEEJiDJPjNlUOxJfuxiAZflzJ___Boxed { + struct Dictionary_2_TKey_TValue_Entry_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_DtqAEEJiDJPjNlUOxJfuxiAZflzJ___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_DtqAEEJiDJPjNlUOxJfuxiAZflzJ_ fields; +}; + struct __declspec(align(8)) Dictionary_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_DtqAEEJiDJPjNlUOxJfuxiAZflzJ___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_DtqAEEJiDJPjNlUOxJfuxiAZflzJ___Array *_entries; @@ -761670,19 +771383,6 @@ struct Dictionary_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_DtqAEEJiDJPjNlUOxJfuxiAZflzJ_ { struct Dictionary_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_DtqAEEJiDJPjNlUOxJfuxiAZflzJ___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_DtqAEEJiDJPjNlUOxJfuxiAZflzJ_ { - int32_t hashCode; - int32_t next; - struct IpQCkqlgJLyrFpAOyBfUxXQpJsWK key; - struct DtqAEEJiDJPjNlUOxJfuxiAZflzJ *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_DtqAEEJiDJPjNlUOxJfuxiAZflzJ___Boxed { - struct Dictionary_2_TKey_TValue_Entry_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_DtqAEEJiDJPjNlUOxJfuxiAZflzJ___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_DtqAEEJiDJPjNlUOxJfuxiAZflzJ_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_DtqAEEJiDJPjNlUOxJfuxiAZflzJ___Array { struct Dictionary_2_TKey_TValue_Entry_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_DtqAEEJiDJPjNlUOxJfuxiAZflzJ___Array__Class *klass; MonitorData *monitor; @@ -762009,6 +771709,21 @@ struct ICollection_1_DtqAEEJiDJPjNlUOxJfuxiAZflzJ___Class { struct ICollection_1_DtqAEEJiDJPjNlUOxJfuxiAZflzJ___VTable vtable; }; +struct DtqAEEJiDJPjNlUOxJfuxiAZflzJ___VTable { +}; + +struct DtqAEEJiDJPjNlUOxJfuxiAZflzJ___StaticFields { +}; + +struct DtqAEEJiDJPjNlUOxJfuxiAZflzJ___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DtqAEEJiDJPjNlUOxJfuxiAZflzJ___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DtqAEEJiDJPjNlUOxJfuxiAZflzJ___VTable vtable; +}; + struct KeyValuePair_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_DtqAEEJiDJPjNlUOxJfuxiAZflzJ___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -762433,6 +772148,21 @@ struct exarigLDNtDEaYVUwCksJVldldinA_HHzyMkQCLNpKeBssvgdeLTnJUXXA__Class { struct exarigLDNtDEaYVUwCksJVldldinA_HHzyMkQCLNpKeBssvgdeLTnJUXXA__VTable vtable; }; +struct cOkweYcnkHdyWuqEdbZVuivClOnK___VTable { +}; + +struct cOkweYcnkHdyWuqEdbZVuivClOnK___StaticFields { +}; + +struct cOkweYcnkHdyWuqEdbZVuivClOnK___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct cOkweYcnkHdyWuqEdbZVuivClOnK___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct cOkweYcnkHdyWuqEdbZVuivClOnK___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class wpLdwPxeyBLHPqFHUikXGnJBNCCzA__Enum : uint8_t { Gamepad = 0x01, @@ -762707,6 +772437,36 @@ struct rpxIYXtczSAEpdhyrDEYcJoufCaG__Class { struct rpxIYXtczSAEpdhyrDEYcJoufCaG__VTable vtable; }; +struct rpxIYXtczSAEpdhyrDEYcJoufCaG___VTable { +}; + +struct rpxIYXtczSAEpdhyrDEYcJoufCaG___StaticFields { +}; + +struct rpxIYXtczSAEpdhyrDEYcJoufCaG___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct rpxIYXtczSAEpdhyrDEYcJoufCaG___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct rpxIYXtczSAEpdhyrDEYcJoufCaG___VTable vtable; +}; + +struct gUSyaRhcurFFxWpITxNSYlEVrpsT___VTable { +}; + +struct gUSyaRhcurFFxWpITxNSYlEVrpsT___StaticFields { +}; + +struct gUSyaRhcurFFxWpITxNSYlEVrpsT___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct gUSyaRhcurFFxWpITxNSYlEVrpsT___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct gUSyaRhcurFFxWpITxNSYlEVrpsT___VTable vtable; +}; + struct ForwardRawInputEventsToUnityDelegate__Fields { struct MulticastDelegate__Fields _; }; @@ -763484,6 +773244,21 @@ struct ILDFNGRIDghDjeEnSsgTiekOmNsr__Class { struct ILDFNGRIDghDjeEnSsgTiekOmNsr__VTable vtable; }; +struct ILDFNGRIDghDjeEnSsgTiekOmNsr___VTable { +}; + +struct ILDFNGRIDghDjeEnSsgTiekOmNsr___StaticFields { +}; + +struct ILDFNGRIDghDjeEnSsgTiekOmNsr___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ILDFNGRIDghDjeEnSsgTiekOmNsr___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ILDFNGRIDghDjeEnSsgTiekOmNsr___VTable vtable; +}; + struct yUgrsNEvLzxrXGzkHTUPIBJYGDah { void *irWSVLAeOreeRjIWENTKHMWkYhvbA; int32_t mVVmzzEPhzcOVZiHZhJnFEbNZlRk; @@ -763716,6 +773491,21 @@ struct FEKFtxiOGQuZgFRPgfadzixUuXGlA__Enum__Class { struct FEKFtxiOGQuZgFRPgfadzixUuXGlA__Enum__VTable vtable; }; +struct GEkTLWOzrjueegRfpWbBUAyxBMpf___VTable { +}; + +struct GEkTLWOzrjueegRfpWbBUAyxBMpf___StaticFields { +}; + +struct GEkTLWOzrjueegRfpWbBUAyxBMpf___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GEkTLWOzrjueegRfpWbBUAyxBMpf___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GEkTLWOzrjueegRfpWbBUAyxBMpf___VTable vtable; +}; + struct YrFMyfiLgpyDeEARLCikjyqxmMMJ__Fields { struct OTOWXECUgLIzgwXfEeXoDsFfLoRQ__Fields _; int32_t QfLsZzgGimpFhipatgZOiXvytLNpA; @@ -763845,6 +773635,19 @@ struct QcHKZtNdZEPgZZPEZTSJObnIPsLU__Class { struct QcHKZtNdZEPgZZPEZTSJObnIPsLU__VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_System_IntPtr_List_1_NFikfIAJlwJkNAEmwUGtOYnGGzB_ { + int32_t hashCode; + int32_t next; + void *key; + struct List_1_NFikfIAJlwJkNAEmwUGtOYnGGzB_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_IntPtr_List_1_NFikfIAJlwJkNAEmwUGtOYnGGzB___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_IntPtr_List_1_NFikfIAJlwJkNAEmwUGtOYnGGzB___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_IntPtr_List_1_NFikfIAJlwJkNAEmwUGtOYnGGzB_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_IntPtr_List_1_NFikfIAJlwJkNAEmwUGtOYnGGzB___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_IntPtr_List_1_NFikfIAJlwJkNAEmwUGtOYnGGzB___Array *_entries; @@ -763864,19 +773667,6 @@ struct Dictionary_2_System_IntPtr_List_1_NFikfIAJlwJkNAEmwUGtOYnGGzB_ { struct Dictionary_2_System_IntPtr_List_1_NFikfIAJlwJkNAEmwUGtOYnGGzB___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_IntPtr_List_1_NFikfIAJlwJkNAEmwUGtOYnGGzB_ { - int32_t hashCode; - int32_t next; - void *key; - struct List_1_NFikfIAJlwJkNAEmwUGtOYnGGzB_ *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_IntPtr_List_1_NFikfIAJlwJkNAEmwUGtOYnGGzB___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_IntPtr_List_1_NFikfIAJlwJkNAEmwUGtOYnGGzB___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_IntPtr_List_1_NFikfIAJlwJkNAEmwUGtOYnGGzB_ fields; -}; - struct __declspec(align(8)) List_1_NFikfIAJlwJkNAEmwUGtOYnGGzB___Fields { struct NFikfIAJlwJkNAEmwUGtOYnGGzB__Array *_items; int32_t _size; @@ -764213,6 +774003,21 @@ struct ICollection_1_List_1_NFikfIAJlwJkNAEmwUGtOYnGGzB___Class { struct ICollection_1_List_1_NFikfIAJlwJkNAEmwUGtOYnGGzB___VTable vtable; }; +struct List_1_NFikfIAJlwJkNAEmwUGtOYnGGzB__1__VTable { +}; + +struct List_1_NFikfIAJlwJkNAEmwUGtOYnGGzB__1__StaticFields { +}; + +struct List_1_NFikfIAJlwJkNAEmwUGtOYnGGzB__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_NFikfIAJlwJkNAEmwUGtOYnGGzB__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_NFikfIAJlwJkNAEmwUGtOYnGGzB__1__VTable vtable; +}; + struct KeyValuePair_2_System_IntPtr_List_1_NFikfIAJlwJkNAEmwUGtOYnGGzB___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -764657,6 +774462,21 @@ struct DeviceType__Enum_3__Class { struct DeviceType__Enum_3__VTable vtable; }; +struct MMEMBMVknmmSyquroJWRlzXgZuxA_SaexGkMYETngnUDWwqxfYuerWOod___VTable { +}; + +struct MMEMBMVknmmSyquroJWRlzXgZuxA_SaexGkMYETngnUDWwqxfYuerWOod___StaticFields { +}; + +struct MMEMBMVknmmSyquroJWRlzXgZuxA_SaexGkMYETngnUDWwqxfYuerWOod___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MMEMBMVknmmSyquroJWRlzXgZuxA_SaexGkMYETngnUDWwqxfYuerWOod___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MMEMBMVknmmSyquroJWRlzXgZuxA_SaexGkMYETngnUDWwqxfYuerWOod___VTable vtable; +}; + struct pkfvdhAgvJBekrlDorTPuCftMpCU_FjrgjYzhloBTBSeFTKeQNPflgRoe { int32_t tKgXiUwjXkFGAipCXHFBiMeKeiLLc; int32_t pzGNwEftsCsfCLQtqvAyTRJDMOSr; @@ -764695,6 +774515,21 @@ struct pkfvdhAgvJBekrlDorTPuCftMpCU_FjrgjYzhloBTBSeFTKeQNPflgRoe__Class { struct pkfvdhAgvJBekrlDorTPuCftMpCU_FjrgjYzhloBTBSeFTKeQNPflgRoe__VTable vtable; }; +struct pkfvdhAgvJBekrlDorTPuCftMpCU_FjrgjYzhloBTBSeFTKeQNPflgRoe___VTable { +}; + +struct pkfvdhAgvJBekrlDorTPuCftMpCU_FjrgjYzhloBTBSeFTKeQNPflgRoe___StaticFields { +}; + +struct pkfvdhAgvJBekrlDorTPuCftMpCU_FjrgjYzhloBTBSeFTKeQNPflgRoe___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct pkfvdhAgvJBekrlDorTPuCftMpCU_FjrgjYzhloBTBSeFTKeQNPflgRoe___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct pkfvdhAgvJBekrlDorTPuCftMpCU_FjrgjYzhloBTBSeFTKeQNPflgRoe___VTable vtable; +}; + struct __declspec(align(8)) xgCcYdjKRQMbzInDtFoOimkrwUPF__Fields { #if defined(_CPLUSPLUS_) pGkQOPgWegsFGDOnOGftBvOUUKELA__Enum GwivQptfaBGYzngZySzLLfmBEmVC; @@ -764767,6 +774602,21 @@ struct jlOcQLgjodoHrMnRTMaZoBnVTQkmA_UQNUjWDnDBJiFEZHZdfMIOPkNvdGb__Class { struct jlOcQLgjodoHrMnRTMaZoBnVTQkmA_UQNUjWDnDBJiFEZHZdfMIOPkNvdGb__VTable vtable; }; +struct jlOcQLgjodoHrMnRTMaZoBnVTQkmA_UQNUjWDnDBJiFEZHZdfMIOPkNvdGb___VTable { +}; + +struct jlOcQLgjodoHrMnRTMaZoBnVTQkmA_UQNUjWDnDBJiFEZHZdfMIOPkNvdGb___StaticFields { +}; + +struct jlOcQLgjodoHrMnRTMaZoBnVTQkmA_UQNUjWDnDBJiFEZHZdfMIOPkNvdGb___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct jlOcQLgjodoHrMnRTMaZoBnVTQkmA_UQNUjWDnDBJiFEZHZdfMIOPkNvdGb___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct jlOcQLgjodoHrMnRTMaZoBnVTQkmA_UQNUjWDnDBJiFEZHZdfMIOPkNvdGb___VTable vtable; +}; + struct __declspec(align(8)) eWMwVZsbMzrrgLhCbeBgUICQPRbg__Fields { struct String *MNseuOReddEsdOLmzAOKjKrRRJCc; struct String *IewjPfaFDGzDJAahCHEvXWlTkkaqA; @@ -764837,6 +774687,21 @@ struct IList_1_xHrRgXbpglyyLcUqeKrUBIwiHmMg___Class { struct IList_1_xHrRgXbpglyyLcUqeKrUBIwiHmMg___VTable vtable; }; +struct MMEMBMVknmmSyquroJWRlzXgZuxA___VTable { +}; + +struct MMEMBMVknmmSyquroJWRlzXgZuxA___StaticFields { +}; + +struct MMEMBMVknmmSyquroJWRlzXgZuxA___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MMEMBMVknmmSyquroJWRlzXgZuxA___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MMEMBMVknmmSyquroJWRlzXgZuxA___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class VcdrcXuLyElkLlaaZGmPblREbRnwA__Enum : int32_t { Exclusive = 0x00000001, @@ -764904,6 +774769,21 @@ struct VcdrcXuLyElkLlaaZGmPblREbRnwA__Enum__Class { struct VcdrcXuLyElkLlaaZGmPblREbRnwA__Enum__VTable vtable; }; +struct IEpqttsJBVpdPbiISguYNqxToTKd___VTable { +}; + +struct IEpqttsJBVpdPbiISguYNqxToTKd___StaticFields { +}; + +struct IEpqttsJBVpdPbiISguYNqxToTKd___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEpqttsJBVpdPbiISguYNqxToTKd___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEpqttsJBVpdPbiISguYNqxToTKd___VTable vtable; +}; + struct IEpqttsJBVpdPbiISguYNqxToTKd_VPLAUbfmNaXGykunYoYWgmIHQTzMb { int32_t tKgXiUwjXkFGAipCXHFBiMeKeiLLc; struct Guid HobfMLkOlJOJzFwiAQHUHPcIhUeQE; @@ -765459,6 +775339,21 @@ struct IEpqttsJBVpdPbiISguYNqxToTKd_VPLAUbfmNaXGykunYoYWgmIHQTzMb__Class { struct IEpqttsJBVpdPbiISguYNqxToTKd_VPLAUbfmNaXGykunYoYWgmIHQTzMb__VTable vtable; }; +struct IEpqttsJBVpdPbiISguYNqxToTKd_VPLAUbfmNaXGykunYoYWgmIHQTzMb___VTable { +}; + +struct IEpqttsJBVpdPbiISguYNqxToTKd_VPLAUbfmNaXGykunYoYWgmIHQTzMb___StaticFields { +}; + +struct IEpqttsJBVpdPbiISguYNqxToTKd_VPLAUbfmNaXGykunYoYWgmIHQTzMb___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEpqttsJBVpdPbiISguYNqxToTKd_VPLAUbfmNaXGykunYoYWgmIHQTzMb___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEpqttsJBVpdPbiISguYNqxToTKd_VPLAUbfmNaXGykunYoYWgmIHQTzMb___VTable vtable; +}; + struct nFndkMjTXqlRMeVVGCxPcylopsxz { int32_t JDkqkMAUxFRDoCxOfxmbqiGgIQgW; }; @@ -765919,6 +775814,21 @@ struct xHrRgXbpglyyLcUqeKrUBIwiHmMg_ENkAeKwaMEIDBCcWHpdDNzScIbSrA__Class { struct xHrRgXbpglyyLcUqeKrUBIwiHmMg_ENkAeKwaMEIDBCcWHpdDNzScIbSrA__VTable vtable; }; +struct xHrRgXbpglyyLcUqeKrUBIwiHmMg_ENkAeKwaMEIDBCcWHpdDNzScIbSrA___VTable { +}; + +struct xHrRgXbpglyyLcUqeKrUBIwiHmMg_ENkAeKwaMEIDBCcWHpdDNzScIbSrA___StaticFields { +}; + +struct xHrRgXbpglyyLcUqeKrUBIwiHmMg_ENkAeKwaMEIDBCcWHpdDNzScIbSrA___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct xHrRgXbpglyyLcUqeKrUBIwiHmMg_ENkAeKwaMEIDBCcWHpdDNzScIbSrA___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct xHrRgXbpglyyLcUqeKrUBIwiHmMg_ENkAeKwaMEIDBCcWHpdDNzScIbSrA___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class yXbPmUgIgDXqgCyJcVqsWcXfFfVs__Enum : int32_t { Absolute = 0x00000000, @@ -766790,6 +776700,21 @@ struct IseAuldnhPHboDUdxlbAlGeSTfxw_wKzPFmUkpUODMAjsMfyMfvghvWmPA__Class { struct IseAuldnhPHboDUdxlbAlGeSTfxw_wKzPFmUkpUODMAjsMfyMfvghvWmPA__VTable vtable; }; +struct IseAuldnhPHboDUdxlbAlGeSTfxw_wKzPFmUkpUODMAjsMfyMfvghvWmPA___VTable { +}; + +struct IseAuldnhPHboDUdxlbAlGeSTfxw_wKzPFmUkpUODMAjsMfyMfvghvWmPA___StaticFields { +}; + +struct IseAuldnhPHboDUdxlbAlGeSTfxw_wKzPFmUkpUODMAjsMfyMfvghvWmPA___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IseAuldnhPHboDUdxlbAlGeSTfxw_wKzPFmUkpUODMAjsMfyMfvghvWmPA___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IseAuldnhPHboDUdxlbAlGeSTfxw_wKzPFmUkpUODMAjsMfyMfvghvWmPA___VTable vtable; +}; + struct JYkaRqeUjtHXxcgerIQieKAHgrarA { struct EdKxELrGeTTkBPBCRbJfXHAozIVk LSXGHRAlLMXKMGbpTiNDhsCgIizJ; struct String *EMLmZHYozlNMvzhMYQtTHvBvGgut; @@ -767109,6 +777034,21 @@ struct JYkaRqeUjtHXxcgerIQieKAHgrarA_aNzGETBZvCtqMqFInwgZFSaZiiHbb__Class { struct JYkaRqeUjtHXxcgerIQieKAHgrarA_aNzGETBZvCtqMqFInwgZFSaZiiHbb__VTable vtable; }; +struct JYkaRqeUjtHXxcgerIQieKAHgrarA_aNzGETBZvCtqMqFInwgZFSaZiiHbb___VTable { +}; + +struct JYkaRqeUjtHXxcgerIQieKAHgrarA_aNzGETBZvCtqMqFInwgZFSaZiiHbb___StaticFields { +}; + +struct JYkaRqeUjtHXxcgerIQieKAHgrarA_aNzGETBZvCtqMqFInwgZFSaZiiHbb___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct JYkaRqeUjtHXxcgerIQieKAHgrarA_aNzGETBZvCtqMqFInwgZFSaZiiHbb___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct JYkaRqeUjtHXxcgerIQieKAHgrarA_aNzGETBZvCtqMqFInwgZFSaZiiHbb___VTable vtable; +}; + struct weuQjMwbfsNskfysppPfTKjudoTD { struct EdKxELrGeTTkBPBCRbJfXHAozIVk LSXGHRAlLMXKMGbpTiNDhsCgIizJ; int32_t ZVQnGFogDHEHibibigusJPwlGcaj; @@ -767140,6 +777080,21 @@ struct weuQjMwbfsNskfysppPfTKjudoTD__Class { struct weuQjMwbfsNskfysppPfTKjudoTD__VTable vtable; }; +struct weuQjMwbfsNskfysppPfTKjudoTD___VTable { +}; + +struct weuQjMwbfsNskfysppPfTKjudoTD___StaticFields { +}; + +struct weuQjMwbfsNskfysppPfTKjudoTD___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct weuQjMwbfsNskfysppPfTKjudoTD___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct weuQjMwbfsNskfysppPfTKjudoTD___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class HSgFoYglukrQnwmltWKJJNfRjaEwA__Enum : int32_t { X = 0x00000000, @@ -768034,6 +777989,18 @@ struct IEnumerable_1_GTJWYMCBWUFmGJGFrEFOMdusHKKP___Class { struct IEnumerable_1_GTJWYMCBWUFmGJGFrEFOMdusHKKP___VTable vtable; }; +struct JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV { + int32_t sWPCQqbuHvKUkFytlNMZmkGasAwHA; + uint32_t jiKfioCFVcMwVRNgAxZLmbwpzgLU; + struct String *PSQwdJXpLyQgcZdQwfZtwhEeUfAU; +}; + +struct JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__Boxed { + struct JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__Class *klass; + MonitorData *monitor; + struct JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV fields; +}; + struct __declspec(align(8)) List_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV___Fields { struct JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__Array *_items; int32_t _size; @@ -768047,18 +778014,6 @@ struct List_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV_ { struct List_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV___Fields fields; }; -struct JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV { - int32_t sWPCQqbuHvKUkFytlNMZmkGasAwHA; - uint32_t jiKfioCFVcMwVRNgAxZLmbwpzgLU; - struct String *PSQwdJXpLyQgcZdQwfZtwhEeUfAU; -}; - -struct JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__Boxed { - struct JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__Class *klass; - MonitorData *monitor; - struct JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV fields; -}; - struct JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__Array { struct JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV__Array__Class *klass; MonitorData *monitor; @@ -768173,6 +778128,17 @@ struct List_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV___Class struct List_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV___VTable vtable; }; +struct JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux { + uint32_t jiKfioCFVcMwVRNgAxZLmbwpzgLU; + struct String *qrQBQyETlgUTznopttIVsYVwQMNM; +}; + +struct JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__Boxed { + struct JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__Class *klass; + MonitorData *monitor; + struct JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux fields; +}; + struct __declspec(align(8)) List_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux___Fields { struct JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__Array *_items; int32_t _size; @@ -768186,17 +778152,6 @@ struct List_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux_ { struct List_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux___Fields fields; }; -struct JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux { - uint32_t jiKfioCFVcMwVRNgAxZLmbwpzgLU; - struct String *qrQBQyETlgUTznopttIVsYVwQMNM; -}; - -struct JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__Boxed { - struct JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__Class *klass; - MonitorData *monitor; - struct JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux fields; -}; - struct JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__Array { struct JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__Array__Class *klass; MonitorData *monitor; @@ -768311,6 +778266,21 @@ struct List_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux___Class struct List_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux___VTable vtable; }; +struct List_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__1__VTable { +}; + +struct List_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__1__StaticFields { +}; + +struct List_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux__1__VTable vtable; +}; + struct gWxrirpmIhQTmhziZnlXlEwmYtKB_pPZcvjyLOvlRnUdsCbkPaOkCCZCA { int32_t vnWEEFCILOKJQEHMWWRLpBIhbqoF; struct Guid hvcGNwvMNgdIJFThZhDybDOTUfuy; @@ -768375,6 +778345,21 @@ struct gWxrirpmIhQTmhziZnlXlEwmYtKB_sjhtdtPoBlWDLZgVBsTSqCbJvkiq__Class { struct gWxrirpmIhQTmhziZnlXlEwmYtKB_sjhtdtPoBlWDLZgVBsTSqCbJvkiq__VTable vtable; }; +struct gWxrirpmIhQTmhziZnlXlEwmYtKB_pPZcvjyLOvlRnUdsCbkPaOkCCZCA___VTable { +}; + +struct gWxrirpmIhQTmhziZnlXlEwmYtKB_pPZcvjyLOvlRnUdsCbkPaOkCCZCA___StaticFields { +}; + +struct gWxrirpmIhQTmhziZnlXlEwmYtKB_pPZcvjyLOvlRnUdsCbkPaOkCCZCA___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct gWxrirpmIhQTmhziZnlXlEwmYtKB_pPZcvjyLOvlRnUdsCbkPaOkCCZCA___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct gWxrirpmIhQTmhziZnlXlEwmYtKB_pPZcvjyLOvlRnUdsCbkPaOkCCZCA___VTable vtable; +}; + struct JijFgftvqSztIyGNBBwSiwjdSDyIA_TkEtJmWQgiiaJpBwVMGeRlOwPciV { struct JijFgftvqSztIyGNBBwSiwjdSDyIA_TkEtJmWQgiiaJpBwVMGeRlOwPciV__Class *klass; MonitorData *monitor; @@ -768615,6 +778600,36 @@ struct gWxrirpmIhQTmhziZnlXlEwmYtKB_NnfkkURQFkEaKHcQqtZJRYCtsuqw__Class { struct gWxrirpmIhQTmhziZnlXlEwmYtKB_NnfkkURQFkEaKHcQqtZJRYCtsuqw__VTable vtable; }; +struct gWxrirpmIhQTmhziZnlXlEwmYtKB_NnfkkURQFkEaKHcQqtZJRYCtsuqw___VTable { +}; + +struct gWxrirpmIhQTmhziZnlXlEwmYtKB_NnfkkURQFkEaKHcQqtZJRYCtsuqw___StaticFields { +}; + +struct gWxrirpmIhQTmhziZnlXlEwmYtKB_NnfkkURQFkEaKHcQqtZJRYCtsuqw___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct gWxrirpmIhQTmhziZnlXlEwmYtKB_NnfkkURQFkEaKHcQqtZJRYCtsuqw___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct gWxrirpmIhQTmhziZnlXlEwmYtKB_NnfkkURQFkEaKHcQqtZJRYCtsuqw___VTable vtable; +}; + +struct NativeOverlapped___VTable { +}; + +struct NativeOverlapped___StaticFields { +}; + +struct NativeOverlapped___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NativeOverlapped___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NativeOverlapped___VTable vtable; +}; + struct gWxrirpmIhQTmhziZnlXlEwmYtKB_IbcNXTjfAFwJOnxSjtEBZZvNbUMV { struct Guid LYydDvHRLpVCEbRJvfHjoCiXiqUKA; uint64_t fOzFwJDypWgCLMKagmrcIfXMAZcAA; @@ -768645,6 +778660,36 @@ struct gWxrirpmIhQTmhziZnlXlEwmYtKB_IbcNXTjfAFwJOnxSjtEBZZvNbUMV__Class { struct gWxrirpmIhQTmhziZnlXlEwmYtKB_IbcNXTjfAFwJOnxSjtEBZZvNbUMV__VTable vtable; }; +struct gWxrirpmIhQTmhziZnlXlEwmYtKB_IbcNXTjfAFwJOnxSjtEBZZvNbUMV___VTable { +}; + +struct gWxrirpmIhQTmhziZnlXlEwmYtKB_IbcNXTjfAFwJOnxSjtEBZZvNbUMV___StaticFields { +}; + +struct gWxrirpmIhQTmhziZnlXlEwmYtKB_IbcNXTjfAFwJOnxSjtEBZZvNbUMV___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct gWxrirpmIhQTmhziZnlXlEwmYtKB_IbcNXTjfAFwJOnxSjtEBZZvNbUMV___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct gWxrirpmIhQTmhziZnlXlEwmYtKB_IbcNXTjfAFwJOnxSjtEBZZvNbUMV___VTable vtable; +}; + +struct gWxrirpmIhQTmhziZnlXlEwmYtKB_sjhtdtPoBlWDLZgVBsTSqCbJvkiq___VTable { +}; + +struct gWxrirpmIhQTmhziZnlXlEwmYtKB_sjhtdtPoBlWDLZgVBsTSqCbJvkiq___StaticFields { +}; + +struct gWxrirpmIhQTmhziZnlXlEwmYtKB_sjhtdtPoBlWDLZgVBsTSqCbJvkiq___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct gWxrirpmIhQTmhziZnlXlEwmYtKB_sjhtdtPoBlWDLZgVBsTSqCbJvkiq___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct gWxrirpmIhQTmhziZnlXlEwmYtKB_sjhtdtPoBlWDLZgVBsTSqCbJvkiq___VTable vtable; +}; + struct gWxrirpmIhQTmhziZnlXlEwmYtKB_RSiSKQsLaXEAoENtUWCALbHSgSKg { int32_t tKgXiUwjXkFGAipCXHFBiMeKeiLLc; struct String *oRqnsnMMSHuanlmOqJcACxgJFBTi; @@ -768675,6 +778720,51 @@ struct gWxrirpmIhQTmhziZnlXlEwmYtKB_RSiSKQsLaXEAoENtUWCALbHSgSKg__Class { struct gWxrirpmIhQTmhziZnlXlEwmYtKB_RSiSKQsLaXEAoENtUWCALbHSgSKg__VTable vtable; }; +struct gWxrirpmIhQTmhziZnlXlEwmYtKB_RSiSKQsLaXEAoENtUWCALbHSgSKg___VTable { +}; + +struct gWxrirpmIhQTmhziZnlXlEwmYtKB_RSiSKQsLaXEAoENtUWCALbHSgSKg___StaticFields { +}; + +struct gWxrirpmIhQTmhziZnlXlEwmYtKB_RSiSKQsLaXEAoENtUWCALbHSgSKg___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct gWxrirpmIhQTmhziZnlXlEwmYtKB_RSiSKQsLaXEAoENtUWCALbHSgSKg___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct gWxrirpmIhQTmhziZnlXlEwmYtKB_RSiSKQsLaXEAoENtUWCALbHSgSKg___VTable vtable; +}; + +struct gWxrirpmIhQTmhziZnlXlEwmYtKB_cYwrJytwiUrdJwriTAdpZJHkllqg___VTable { +}; + +struct gWxrirpmIhQTmhziZnlXlEwmYtKB_cYwrJytwiUrdJwriTAdpZJHkllqg___StaticFields { +}; + +struct gWxrirpmIhQTmhziZnlXlEwmYtKB_cYwrJytwiUrdJwriTAdpZJHkllqg___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct gWxrirpmIhQTmhziZnlXlEwmYtKB_cYwrJytwiUrdJwriTAdpZJHkllqg___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct gWxrirpmIhQTmhziZnlXlEwmYtKB_cYwrJytwiUrdJwriTAdpZJHkllqg___VTable vtable; +}; + +struct gWxrirpmIhQTmhziZnlXlEwmYtKB_KdURfiFBwhFROjdQMSQSIwyeoKVL___VTable { +}; + +struct gWxrirpmIhQTmhziZnlXlEwmYtKB_KdURfiFBwhFROjdQMSQSIwyeoKVL___StaticFields { +}; + +struct gWxrirpmIhQTmhziZnlXlEwmYtKB_KdURfiFBwhFROjdQMSQSIwyeoKVL___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct gWxrirpmIhQTmhziZnlXlEwmYtKB_KdURfiFBwhFROjdQMSQSIwyeoKVL___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct gWxrirpmIhQTmhziZnlXlEwmYtKB_KdURfiFBwhFROjdQMSQSIwyeoKVL___VTable vtable; +}; + struct MantisLODEditorProfessional__Fields { struct MonoBehaviour__Fields _; }; @@ -768738,6 +778828,21 @@ struct BokehRenderer__Class { struct BokehRenderer__VTable vtable; }; +struct Mesh__1__VTable { +}; + +struct Mesh__1__StaticFields { +}; + +struct Mesh__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Mesh__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Mesh__1__VTable vtable; +}; + struct __declspec(align(8)) DeluxeFilmicCurve__Fields { float m_BlackPoint; float m_WhitePoint; @@ -769795,6 +779900,21 @@ struct UltimateBloom__Class { struct UltimateBloom__VTable vtable; }; +struct Shader___VTable { +}; + +struct Shader___StaticFields { +}; + +struct Shader___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Shader___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Shader___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class UltimateBloom_BlurSampleCount__Enum : int32_t { Nine = 0x00000000, @@ -770319,6 +780439,21 @@ struct DecalLayerChannelIndexer__Class { struct DecalLayerChannelIndexer__VTable vtable; }; +struct LayerParameters___VTable { +}; + +struct LayerParameters___StaticFields { +}; + +struct LayerParameters___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct LayerParameters___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct LayerParameters___VTable vtable; +}; + struct CanBeNullAttribute_1 { struct CanBeNullAttribute_1__Class *klass; MonitorData *monitor; @@ -772816,6 +782951,18 @@ struct WetDecalSystem_c__Class { struct WetDecalSystem_c__VTable vtable; }; +struct ParticleWetSplatterTemplate__Fields { + struct MonoBehaviour__Fields _; + float _probability; + struct DecalSettings *_settings; +}; + +struct ParticleWetSplatterTemplate { + struct ParticleWetSplatterTemplate__Class *klass; + MonitorData *monitor; + struct ParticleWetSplatterTemplate__Fields fields; +}; + struct ParticleWetSplatter__Fields { struct MonoBehaviour__Fields _; struct List_1_PlaceholderSoftware_WetStuff_ParticleWetSplatter_Splatter_ *_activeSplatters; @@ -772843,19 +782990,6 @@ struct ParticleWetSplatter { struct ParticleWetSplatter__Fields fields; }; -struct __declspec(align(8)) List_1_PlaceholderSoftware_WetStuff_ParticleWetSplatter_Splatter___Fields { - struct ParticleWetSplatter_Splatter__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_PlaceholderSoftware_WetStuff_ParticleWetSplatter_Splatter_ { - struct List_1_PlaceholderSoftware_WetStuff_ParticleWetSplatter_Splatter___Class *klass; - MonitorData *monitor; - struct List_1_PlaceholderSoftware_WetStuff_ParticleWetSplatter_Splatter___Fields fields; -}; - struct __declspec(align(8)) ParticleWetSplatter_Splatter__Fields { struct ParticleWetSplatter_DecalSettingsSaturationProxy *_settings; struct ParticleWetSplatter *_splatters; @@ -772874,6 +783008,19 @@ struct ParticleWetSplatter_Splatter { struct ParticleWetSplatter_Splatter__Fields fields; }; +struct __declspec(align(8)) List_1_PlaceholderSoftware_WetStuff_ParticleWetSplatter_Splatter___Fields { + struct ParticleWetSplatter_Splatter__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_PlaceholderSoftware_WetStuff_ParticleWetSplatter_Splatter_ { + struct List_1_PlaceholderSoftware_WetStuff_ParticleWetSplatter_Splatter___Class *klass; + MonitorData *monitor; + struct List_1_PlaceholderSoftware_WetStuff_ParticleWetSplatter_Splatter___Fields fields; +}; + struct __declspec(align(8)) ParticleWetSplatter_DecalSettingsSaturationProxy__Fields { struct IDecalSettings *_settings; float _SaturationMultiplier_k__BackingField; @@ -772903,19 +783050,6 @@ struct IEnumerator_1_PlaceholderSoftware_WetStuff_ParticleWetSplatter_Splatter_ MonitorData *monitor; }; -struct __declspec(align(8)) List_1_UnityEngine_ParticleCollisionEvent___Fields { - struct ParticleCollisionEvent__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_ParticleCollisionEvent_ { - struct List_1_UnityEngine_ParticleCollisionEvent___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_ParticleCollisionEvent___Fields fields; -}; - struct ParticleCollisionEvent { struct Vector3 m_Intersection; struct Vector3 m_Normal; @@ -772929,6 +783063,19 @@ struct ParticleCollisionEvent__Boxed { struct ParticleCollisionEvent fields; }; +struct __declspec(align(8)) List_1_UnityEngine_ParticleCollisionEvent___Fields { + struct ParticleCollisionEvent__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_ParticleCollisionEvent_ { + struct List_1_UnityEngine_ParticleCollisionEvent___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_ParticleCollisionEvent___Fields fields; +}; + struct ParticleCollisionEvent__Array { struct ParticleCollisionEvent__Array__Class *klass; MonitorData *monitor; @@ -773037,18 +783184,6 @@ struct ParticleWetSplatter_LifetimeSettings { struct ParticleWetSplatter_LifetimeSettings__Fields fields; }; -struct ParticleWetSplatterTemplate__Fields { - struct MonoBehaviour__Fields _; - float _probability; - struct DecalSettings *_settings; -}; - -struct ParticleWetSplatterTemplate { - struct ParticleWetSplatterTemplate__Class *klass; - MonitorData *monitor; - struct ParticleWetSplatterTemplate__Fields fields; -}; - struct __declspec(align(8)) DecalSettings__Fields { float _edgeFadeoff; bool _enableJitter; @@ -773838,19 +783973,6 @@ struct AutoRainPuddle { struct AutoRainPuddle__Fields fields; }; -struct __declspec(align(8)) List_1_PlaceholderSoftware_WetStuff_Weather_RainPuddle_RainDecal___Fields { - struct RainPuddle_RainDecal__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_PlaceholderSoftware_WetStuff_Weather_RainPuddle_RainDecal_ { - struct List_1_PlaceholderSoftware_WetStuff_Weather_RainPuddle_RainDecal___Class *klass; - MonitorData *monitor; - struct List_1_PlaceholderSoftware_WetStuff_Weather_RainPuddle_RainDecal___Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class RainPuddle_RainDecalState__Enum : int32_t { Raining = 0x00000000, @@ -773897,6 +784019,19 @@ struct RainPuddle_RainDecal { struct RainPuddle_RainDecal__Fields fields; }; +struct __declspec(align(8)) List_1_PlaceholderSoftware_WetStuff_Weather_RainPuddle_RainDecal___Fields { + struct RainPuddle_RainDecal__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_PlaceholderSoftware_WetStuff_Weather_RainPuddle_RainDecal_ { + struct List_1_PlaceholderSoftware_WetStuff_Weather_RainPuddle_RainDecal___Class *klass; + MonitorData *monitor; + struct List_1_PlaceholderSoftware_WetStuff_Weather_RainPuddle_RainDecal___Fields fields; +}; + struct RainPuddle_RainDecal__Array { struct RainPuddle_RainDecal__Array__Class *klass; MonitorData *monitor; @@ -776861,6 +786996,19 @@ struct ProgressiveMesh { struct ProgressiveMesh__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_MantisLODEditor_Lod_Mesh_Table_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct Lod_Mesh_Table *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_MantisLODEditor_Lod_Mesh_Table___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_MantisLODEditor_Lod_Mesh_Table___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_MantisLODEditor_Lod_Mesh_Table_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_MantisLODEditor_Lod_Mesh_Table___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_MantisLODEditor_Lod_Mesh_Table___Array *_entries; @@ -776880,19 +787028,6 @@ struct Dictionary_2_System_String_MantisLODEditor_Lod_Mesh_Table_ { struct Dictionary_2_System_String_MantisLODEditor_Lod_Mesh_Table___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_MantisLODEditor_Lod_Mesh_Table_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct Lod_Mesh_Table *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_MantisLODEditor_Lod_Mesh_Table___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_MantisLODEditor_Lod_Mesh_Table___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_MantisLODEditor_Lod_Mesh_Table_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_String_MantisLODEditor_Lod_Mesh_Table___Array { struct Dictionary_2_TKey_TValue_Entry_System_String_MantisLODEditor_Lod_Mesh_Table___Array__Class *klass; MonitorData *monitor; @@ -777121,6 +787256,21 @@ struct ICollection_1_MantisLODEditor_Lod_Mesh_Table___Class { struct ICollection_1_MantisLODEditor_Lod_Mesh_Table___VTable vtable; }; +struct Lod_Mesh_Table___VTable { +}; + +struct Lod_Mesh_Table___StaticFields { +}; + +struct Lod_Mesh_Table___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Lod_Mesh_Table___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Lod_Mesh_Table___VTable vtable; +}; + struct KeyValuePair_2_System_String_MantisLODEditor_Lod_Mesh_Table___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -777900,6 +788050,21 @@ struct ActivityManager_FFIMethods__Class { struct ActivityManager_FFIMethods__VTable vtable; }; +struct ActivityManager_FFIEvents___VTable { +}; + +struct ActivityManager_FFIEvents___StaticFields { +}; + +struct ActivityManager_FFIEvents___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ActivityManager_FFIEvents___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ActivityManager_FFIEvents___VTable vtable; +}; + struct ActivityManager_ClearActivityHandler__Fields { struct MulticastDelegate__Fields _; }; @@ -779194,6 +789359,21 @@ struct Discord_FFICreateParams__Class { struct Discord_FFICreateParams__VTable vtable; }; +struct Discord_FFICreateParams___VTable { +}; + +struct Discord_FFICreateParams___StaticFields { +}; + +struct Discord_FFICreateParams___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Discord_FFICreateParams___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Discord_FFICreateParams___VTable vtable; +}; + struct Discord_FFIMethods { struct Discord_FFIMethods_DestroyHandler *Destroy; struct Discord_FFIMethods_RunCallbacksMethod *RunCallbacks; @@ -779958,6 +790138,21 @@ struct Discord_FFIMethods__Class { struct Discord_FFIMethods__VTable vtable; }; +struct Discord_FFIEvents___VTable { +}; + +struct Discord_FFIEvents___StaticFields { +}; + +struct Discord_FFIEvents___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Discord_FFIEvents___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Discord_FFIEvents___VTable vtable; +}; + struct Discord_SetLogHookHandler__Fields { struct MulticastDelegate__Fields _; }; @@ -780275,6 +790470,21 @@ struct OAuth2Token__Class { struct OAuth2Token__VTable vtable; }; +struct OAuth2Token___VTable { +}; + +struct OAuth2Token___StaticFields { +}; + +struct OAuth2Token___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct OAuth2Token___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct OAuth2Token___VTable vtable; +}; + struct ApplicationManager_FFIMethods_GetOAuth2TokenCallback__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -780418,6 +790628,21 @@ struct ApplicationManager_FFIMethods__Class { struct ApplicationManager_FFIMethods__VTable vtable; }; +struct ApplicationManager_FFIEvents___VTable { +}; + +struct ApplicationManager_FFIEvents___StaticFields { +}; + +struct ApplicationManager_FFIEvents___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ApplicationManager_FFIEvents___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ApplicationManager_FFIEvents___VTable vtable; +}; + struct ApplicationManager_ValidateOrExitHandler__Fields { struct MulticastDelegate__Fields _; }; @@ -780789,6 +791014,21 @@ struct PremiumType__Enum__Class { struct PremiumType__Enum__VTable vtable; }; +struct PremiumType___VTable { +}; + +struct PremiumType___StaticFields { +}; + +struct PremiumType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PremiumType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PremiumType___VTable vtable; +}; + struct UserManager_FFIMethods_GetCurrentUserPremiumTypeMethod__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -780908,6 +791148,21 @@ struct UserManager_FFIMethods__Class { struct UserManager_FFIMethods__VTable vtable; }; +struct UserManager_FFIEvents___VTable { +}; + +struct UserManager_FFIEvents___StaticFields { +}; + +struct UserManager_FFIEvents___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UserManager_FFIEvents___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UserManager_FFIEvents___VTable vtable; +}; + struct UserManager_GetUserHandler__Fields { struct MulticastDelegate__Fields _; }; @@ -781093,6 +791348,21 @@ struct ImageDimensions__Class { struct ImageDimensions__VTable vtable; }; +struct ImageDimensions___VTable { +}; + +struct ImageDimensions___StaticFields { +}; + +struct ImageDimensions___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ImageDimensions___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ImageDimensions___VTable vtable; +}; + struct ImageManager_FFIMethods_GetDimensionsMethod__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -781174,6 +791444,21 @@ struct ImageManager_FFIMethods__Class { struct ImageManager_FFIMethods__VTable vtable; }; +struct ImageManager_FFIEvents___VTable { +}; + +struct ImageManager_FFIEvents___StaticFields { +}; + +struct ImageManager_FFIEvents___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ImageManager_FFIEvents___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ImageManager_FFIEvents___VTable vtable; +}; + struct ImageManager_FetchHandler__Fields { struct MulticastDelegate__Fields _; }; @@ -781452,6 +791737,21 @@ struct RelationshipManager_FFIMethods__Class { struct RelationshipManager_FFIMethods__VTable vtable; }; +struct RelationshipManager_FFIEvents___VTable { +}; + +struct RelationshipManager_FFIEvents___StaticFields { +}; + +struct RelationshipManager_FFIEvents___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RelationshipManager_FFIEvents___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RelationshipManager_FFIEvents___VTable vtable; +}; + struct RelationshipManager_FilterHandler__Fields { struct MulticastDelegate__Fields _; }; @@ -782106,6 +792406,21 @@ struct Lobby__Class { struct Lobby__VTable vtable; }; +struct Lobby___VTable { +}; + +struct Lobby___StaticFields { +}; + +struct Lobby___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Lobby___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Lobby___VTable vtable; +}; + struct LobbyManager_FFIMethods_CreateLobbyCallback__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -783396,6 +793711,21 @@ struct LobbyManager_FFIMethods__Class { struct LobbyManager_FFIMethods__VTable vtable; }; +struct LobbyManager_FFIEvents___VTable { +}; + +struct LobbyManager_FFIEvents___StaticFields { +}; + +struct LobbyManager_FFIEvents___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct LobbyManager_FFIEvents___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct LobbyManager_FFIEvents___VTable vtable; +}; + struct LobbyManager_CreateLobbyHandler__Fields { struct MulticastDelegate__Fields _; }; @@ -784232,6 +794562,21 @@ struct NetworkManager_FFIMethods__Class { struct NetworkManager_FFIMethods__VTable vtable; }; +struct NetworkManager_FFIEvents___VTable { +}; + +struct NetworkManager_FFIEvents___StaticFields { +}; + +struct NetworkManager_FFIEvents___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NetworkManager_FFIEvents___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NetworkManager_FFIEvents___VTable vtable; +}; + struct OverlayManager_FFIMethods { struct OverlayManager_FFIMethods_IsEnabledMethod *IsEnabled; struct OverlayManager_FFIMethods_IsLockedMethod *IsLocked; @@ -785240,6 +795585,21 @@ struct ImeUnderline__Class { struct ImeUnderline__VTable vtable; }; +struct ImeUnderline___VTable { +}; + +struct ImeUnderline___StaticFields { +}; + +struct ImeUnderline___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ImeUnderline___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ImeUnderline___VTable vtable; +}; + struct OverlayManager_FFIMethods_ImeSetCompositionMethod__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -785321,6 +795681,21 @@ struct Rect_1__Class { struct Rect_1__VTable vtable; }; +struct Rect__1__VTable { +}; + +struct Rect__1__StaticFields { +}; + +struct Rect__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Rect__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Rect__1__VTable vtable; +}; + struct OverlayManager_FFIMethods_SetImeCompositionRangeCallbackCallback__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -785495,6 +795870,21 @@ struct OverlayManager_FFIMethods__Class { struct OverlayManager_FFIMethods__VTable vtable; }; +struct OverlayManager_FFIEvents___VTable { +}; + +struct OverlayManager_FFIEvents___StaticFields { +}; + +struct OverlayManager_FFIEvents___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct OverlayManager_FFIEvents___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct OverlayManager_FFIEvents___VTable vtable; +}; + struct OverlayManager_SetLockedHandler__Fields { struct MulticastDelegate__Fields _; }; @@ -786273,6 +796663,21 @@ struct FileStat__Class { struct FileStat__VTable vtable; }; +struct FileStat___VTable { +}; + +struct FileStat___StaticFields { +}; + +struct FileStat___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct FileStat___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct FileStat___VTable vtable; +}; + struct StorageManager_FFIMethods_StatMethod__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -786385,6 +796790,21 @@ struct StorageManager_FFIMethods__Class { struct StorageManager_FFIMethods__VTable vtable; }; +struct StorageManager_FFIEvents___VTable { +}; + +struct StorageManager_FFIEvents___StaticFields { +}; + +struct StorageManager_FFIEvents___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StorageManager_FFIEvents___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StorageManager_FFIEvents___VTable vtable; +}; + struct StorageManager_ReadAsyncHandler__Fields { struct MulticastDelegate__Fields _; }; @@ -786902,6 +797322,21 @@ struct Sku__Class { struct Sku__VTable vtable; }; +struct Sku___VTable { +}; + +struct Sku___StaticFields { +}; + +struct Sku___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Sku___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Sku___VTable vtable; +}; + struct StoreManager_FFIMethods_GetSkuMethod__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -787231,6 +797666,21 @@ struct StoreManager_FFIMethods__Class { struct StoreManager_FFIMethods__VTable vtable; }; +struct StoreManager_FFIEvents___VTable { +}; + +struct StoreManager_FFIEvents___StaticFields { +}; + +struct StoreManager_FFIEvents___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StoreManager_FFIEvents___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StoreManager_FFIEvents___VTable vtable; +}; + struct StoreManager_FetchSkusHandler__Fields { struct MulticastDelegate__Fields _; }; @@ -787620,6 +798070,21 @@ struct InputMode__Class { struct InputMode__VTable vtable; }; +struct InputMode___VTable { +}; + +struct InputMode___StaticFields { +}; + +struct InputMode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputMode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputMode___VTable vtable; +}; + struct VoiceManager_FFIMethods_GetInputModeMethod__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -787980,6 +798445,21 @@ struct VoiceManager_FFIMethods__Class { struct VoiceManager_FFIMethods__VTable vtable; }; +struct VoiceManager_FFIEvents___VTable { +}; + +struct VoiceManager_FFIEvents___StaticFields { +}; + +struct VoiceManager_FFIEvents___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct VoiceManager_FFIEvents___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct VoiceManager_FFIEvents___VTable vtable; +}; + struct VoiceManager_SetInputModeHandler__Fields { struct MulticastDelegate__Fields _; }; @@ -788341,6 +798821,21 @@ struct AchievementManager_FFIMethods__Class { struct AchievementManager_FFIMethods__VTable vtable; }; +struct AchievementManager_FFIEvents___VTable { +}; + +struct AchievementManager_FFIEvents___StaticFields { +}; + +struct AchievementManager_FFIEvents___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct AchievementManager_FFIEvents___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct AchievementManager_FFIEvents___VTable vtable; +}; + struct AchievementManager_SetUserAchievementHandler__Fields { struct MulticastDelegate__Fields _; }; @@ -789196,6 +799691,21 @@ struct NativeMethods_SECURITY_ATTRIBUTES__Class { struct NativeMethods_SECURITY_ATTRIBUTES__VTable vtable; }; +struct NativeMethods_SECURITY_ATTRIBUTES___VTable { +}; + +struct NativeMethods_SECURITY_ATTRIBUTES___StaticFields { +}; + +struct NativeMethods_SECURITY_ATTRIBUTES___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NativeMethods_SECURITY_ATTRIBUTES___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NativeMethods_SECURITY_ATTRIBUTES___VTable vtable; +}; + struct NativeMethods_STARTUPINFO__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -789234,6 +799744,21 @@ struct NativeMethods_STARTUPINFOEX__Class { struct NativeMethods_STARTUPINFOEX__VTable vtable; }; +struct NativeMethods_STARTUPINFOEX___VTable { +}; + +struct NativeMethods_STARTUPINFOEX___StaticFields { +}; + +struct NativeMethods_STARTUPINFOEX___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NativeMethods_STARTUPINFOEX___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NativeMethods_STARTUPINFOEX___VTable vtable; +}; + struct NativeMethods_PROCESS_INFORMATION__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -789253,6 +799778,21 @@ struct NativeMethods_PROCESS_INFORMATION__Class { struct NativeMethods_PROCESS_INFORMATION__VTable vtable; }; +struct NativeMethods_PROCESS_INFORMATION___VTable { +}; + +struct NativeMethods_PROCESS_INFORMATION___StaticFields { +}; + +struct NativeMethods_PROCESS_INFORMATION___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NativeMethods_PROCESS_INFORMATION___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NativeMethods_PROCESS_INFORMATION___VTable vtable; +}; + struct CTWebClient__Fields { struct WebClient__Fields _; int32_t _Timeout_k__BackingField; @@ -790647,6 +801187,17 @@ struct DomainProvider { struct DomainProvider__Fields fields; }; +struct __declspec(align(8)) Domains__Fields { + struct Source *Source; + struct List_1_System_String_ *DomainList; +}; + +struct Domains { + struct Domains__Class *klass; + MonitorData *monitor; + struct Domains__Fields fields; +}; + struct __declspec(align(8)) List_1_Crosstales_BWF_Model_Domains___Fields { struct Domains__Array *_items; int32_t _size; @@ -790660,17 +801211,6 @@ struct List_1_Crosstales_BWF_Model_Domains_ { struct List_1_Crosstales_BWF_Model_Domains___Fields fields; }; -struct __declspec(align(8)) Domains__Fields { - struct Source *Source; - struct List_1_System_String_ *DomainList; -}; - -struct Domains { - struct Domains__Class *klass; - MonitorData *monitor; - struct Domains__Fields fields; -}; - struct Domains__Array { struct Domains__Array__Class *klass; MonitorData *monitor; @@ -794883,6 +805423,19 @@ struct LinkedListNode_1_System_Action_ { struct LinkedListNode_1_System_Action___Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_Action_LinkedListNode_1_System_Action_ { + int32_t hashCode; + int32_t next; + struct Action *key; + struct LinkedListNode_1_System_Action_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Action_LinkedListNode_1_System_Action___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Action_LinkedListNode_1_System_Action___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Action_LinkedListNode_1_System_Action_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Action_LinkedListNode_1_System_Action___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Action_LinkedListNode_1_System_Action___Array *_entries; @@ -794902,19 +805455,6 @@ struct Dictionary_2_System_Action_LinkedListNode_1_System_Action_ { struct Dictionary_2_System_Action_LinkedListNode_1_System_Action___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Action_LinkedListNode_1_System_Action_ { - int32_t hashCode; - int32_t next; - struct Action *key; - struct LinkedListNode_1_System_Action_ *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Action_LinkedListNode_1_System_Action___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Action_LinkedListNode_1_System_Action___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Action_LinkedListNode_1_System_Action_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Action_LinkedListNode_1_System_Action___Array { struct Dictionary_2_TKey_TValue_Entry_System_Action_LinkedListNode_1_System_Action___Array__Class *klass; MonitorData *monitor; @@ -795221,6 +805761,21 @@ struct ICollection_1_LinkedListNode_1_System_Action___Class { struct ICollection_1_LinkedListNode_1_System_Action___VTable vtable; }; +struct LinkedListNode_1_System_Action__1__VTable { +}; + +struct LinkedListNode_1_System_Action__1__StaticFields { +}; + +struct LinkedListNode_1_System_Action__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct LinkedListNode_1_System_Action__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct LinkedListNode_1_System_Action__1__VTable vtable; +}; + struct KeyValuePair_2_System_Action_LinkedListNode_1_System_Action___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -795378,6 +805933,19 @@ struct MaterialReferenceManager { struct MaterialReferenceManager__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Material_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct Material *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Material___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Material___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Material_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_UnityEngine_Material___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Material___Array *_entries; @@ -795397,19 +805965,6 @@ struct Dictionary_2_System_Int32_UnityEngine_Material_ { struct Dictionary_2_System_Int32_UnityEngine_Material___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Material_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct Material *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Material___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Material___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Material_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Material___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Material___Array__Class *klass; MonitorData *monitor; @@ -795462,6 +806017,19 @@ struct IEnumerator_1_KeyValuePair_2_System_Int32_UnityEngine_Material_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_TMPro_TMP_FontAsset_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct TMP_FontAsset *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_TMPro_TMP_FontAsset___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_TMPro_TMP_FontAsset___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_TMPro_TMP_FontAsset_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_TMPro_TMP_FontAsset___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_TMPro_TMP_FontAsset___Array *_entries; @@ -795481,19 +806049,6 @@ struct Dictionary_2_System_Int32_TMPro_TMP_FontAsset_ { struct Dictionary_2_System_Int32_TMPro_TMP_FontAsset___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_TMPro_TMP_FontAsset_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct TMP_FontAsset *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_TMPro_TMP_FontAsset___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_TMPro_TMP_FontAsset___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_TMPro_TMP_FontAsset_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_TMPro_TMP_FontAsset___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_TMPro_TMP_FontAsset___Array__Class *klass; MonitorData *monitor; @@ -795556,6 +806111,19 @@ struct IEnumerable_1_TMPro_TMP_FontAsset_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_TMPro_TMP_SpriteAsset_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct TMP_SpriteAsset *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_TMPro_TMP_SpriteAsset___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_TMPro_TMP_SpriteAsset___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_TMPro_TMP_SpriteAsset_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_TMPro_TMP_SpriteAsset___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_TMPro_TMP_SpriteAsset___Array *_entries; @@ -795575,19 +806143,6 @@ struct Dictionary_2_System_Int32_TMPro_TMP_SpriteAsset_ { struct Dictionary_2_System_Int32_TMPro_TMP_SpriteAsset___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_TMPro_TMP_SpriteAsset_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct TMP_SpriteAsset *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_TMPro_TMP_SpriteAsset___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_TMPro_TMP_SpriteAsset___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_TMPro_TMP_SpriteAsset_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_TMPro_TMP_SpriteAsset___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_TMPro_TMP_SpriteAsset___Array__Class *klass; MonitorData *monitor; @@ -795650,6 +806205,19 @@ struct IEnumerable_1_TMPro_TMP_SpriteAsset_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_TMPro_TMP_ColorGradient_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct TMP_ColorGradient *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_TMPro_TMP_ColorGradient___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_TMPro_TMP_ColorGradient___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_TMPro_TMP_ColorGradient_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_TMPro_TMP_ColorGradient___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_TMPro_TMP_ColorGradient___Array *_entries; @@ -795669,19 +806237,6 @@ struct Dictionary_2_System_Int32_TMPro_TMP_ColorGradient_ { struct Dictionary_2_System_Int32_TMPro_TMP_ColorGradient___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_TMPro_TMP_ColorGradient_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct TMP_ColorGradient *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_TMPro_TMP_ColorGradient___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_TMPro_TMP_ColorGradient___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_TMPro_TMP_ColorGradient_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_TMPro_TMP_ColorGradient___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_TMPro_TMP_ColorGradient___Array__Class *klass; MonitorData *monitor; @@ -796080,6 +806635,21 @@ struct ICollection_1_TMPro_TMP_FontAsset___Class { struct ICollection_1_TMPro_TMP_FontAsset___VTable vtable; }; +struct TMP_FontAsset___VTable { +}; + +struct TMP_FontAsset___StaticFields { +}; + +struct TMP_FontAsset___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TMP_FontAsset___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TMP_FontAsset___VTable vtable; +}; + struct KeyValuePair_2_System_Int32_TMPro_TMP_FontAsset___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -796327,6 +806897,21 @@ struct ICollection_1_TMPro_TMP_SpriteAsset___Class { struct ICollection_1_TMPro_TMP_SpriteAsset___VTable vtable; }; +struct TMP_SpriteAsset___VTable { +}; + +struct TMP_SpriteAsset___StaticFields { +}; + +struct TMP_SpriteAsset___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TMP_SpriteAsset___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TMP_SpriteAsset___VTable vtable; +}; + struct KeyValuePair_2_System_Int32_TMPro_TMP_SpriteAsset___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -796590,6 +807175,21 @@ struct ICollection_1_TMPro_TMP_ColorGradient___Class { struct ICollection_1_TMPro_TMP_ColorGradient___VTable vtable; }; +struct TMP_ColorGradient___VTable { +}; + +struct TMP_ColorGradient___StaticFields { +}; + +struct TMP_ColorGradient___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TMP_ColorGradient___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TMP_ColorGradient___VTable vtable; +}; + struct KeyValuePair_2_System_Int32_TMPro_TMP_ColorGradient___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -796735,6 +807335,21 @@ struct MaterialReferenceManager__Class { struct MaterialReferenceManager__VTable vtable; }; +struct MaterialReference___VTable { +}; + +struct MaterialReference___StaticFields { +}; + +struct MaterialReference___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MaterialReference___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MaterialReference___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class TextContainerAnchors__Enum : int32_t { TopLeft = 0x00000000, @@ -796800,6 +807415,29 @@ struct TextContainer { struct TextContainer__Fields fields; }; +struct TMP_SubMesh__Fields { + struct MonoBehaviour__Fields _; + struct TMP_FontAsset *m_fontAsset; + struct TMP_SpriteAsset *m_spriteAsset; + struct Material *m_material; + struct Material *m_sharedMaterial; + struct Material *m_fallbackMaterial; + struct Material *m_fallbackSourceMaterial; + bool m_isDefaultMaterial; + float m_padding; + struct Renderer *m_renderer; + struct MeshFilter *m_meshFilter; + struct Mesh *m_mesh; + struct TextMeshPro *m_TextComponent; + bool m_isRegisteredForEvents; +}; + +struct TMP_SubMesh { + struct TMP_SubMesh__Class *klass; + MonitorData *monitor; + struct TMP_SubMesh__Fields fields; +}; + #if defined(_CPLUSPLUS_) enum class MaskingTypes__Enum : int32_t { MaskOff = 0x00000000, @@ -796856,29 +807494,6 @@ struct TextMeshPro { struct TextMeshPro__Fields fields; }; -struct TMP_SubMesh__Fields { - struct MonoBehaviour__Fields _; - struct TMP_FontAsset *m_fontAsset; - struct TMP_SpriteAsset *m_spriteAsset; - struct Material *m_material; - struct Material *m_sharedMaterial; - struct Material *m_fallbackMaterial; - struct Material *m_fallbackSourceMaterial; - bool m_isDefaultMaterial; - float m_padding; - struct Renderer *m_renderer; - struct MeshFilter *m_meshFilter; - struct Mesh *m_mesh; - struct TextMeshPro *m_TextComponent; - bool m_isRegisteredForEvents; -}; - -struct TMP_SubMesh { - struct TMP_SubMesh__Class *klass; - MonitorData *monitor; - struct TMP_SubMesh__Fields fields; -}; - struct TMP_SubMesh__Array { struct TMP_SubMesh__Array__Class *klass; MonitorData *monitor; @@ -797938,6 +808553,36 @@ struct List_1_System_Char___Class { struct List_1_System_Char___VTable vtable; }; +struct List_1_System_Char__1__VTable { +}; + +struct List_1_System_Char__1__StaticFields { +}; + +struct List_1_System_Char__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_System_Char__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_System_Char__1__VTable vtable; +}; + +struct UInt32__1__VTable { +}; + +struct UInt32__1__StaticFields { +}; + +struct UInt32__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UInt32__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UInt32__1__VTable vtable; +}; + struct TMP_FontAsset_c { struct TMP_FontAsset_c__Class *klass; MonitorData *monitor; @@ -799854,6 +810499,19 @@ struct TMP_Settings_LineBreakingTable { struct TMP_Settings_LineBreakingTable__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Char_ { + int32_t hashCode; + int32_t next; + int32_t key; + uint16_t value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Char___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Char___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Char_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_System_Char___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Char___Array *_entries; @@ -799873,19 +810531,6 @@ struct Dictionary_2_System_Int32_System_Char_ { struct Dictionary_2_System_Int32_System_Char___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Char_ { - int32_t hashCode; - int32_t next; - int32_t key; - uint16_t value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Char___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Char___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Char_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Char___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Char___Array__Class *klass; MonitorData *monitor; @@ -800458,6 +811103,66 @@ struct TMP_SpriteAsset_c__Class { struct TMP_SpriteAsset_c__VTable vtable; }; +struct TMP_Text_TextBackingContainer___VTable { +}; + +struct TMP_Text_TextBackingContainer___StaticFields { +}; + +struct TMP_Text_TextBackingContainer___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TMP_Text_TextBackingContainer___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TMP_Text_TextBackingContainer___VTable vtable; +}; + +struct TMP_Text_UnicodeChar___VTable { +}; + +struct TMP_Text_UnicodeChar___StaticFields { +}; + +struct TMP_Text_UnicodeChar___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TMP_Text_UnicodeChar___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TMP_Text_UnicodeChar___VTable vtable; +}; + +struct WordWrapState___VTable { +}; + +struct WordWrapState___StaticFields { +}; + +struct WordWrapState___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct WordWrapState___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct WordWrapState___VTable vtable; +}; + +struct Single__1__VTable { +}; + +struct Single__1__StaticFields { +}; + +struct Single__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Single__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Single__1__VTable vtable; +}; + struct TMP_Text_CharacterSubstitution { int32_t index; uint32_t unicode; @@ -800636,6 +811341,21 @@ struct CaretInfo__Class { struct CaretInfo__VTable vtable; }; +struct CaretPosition___VTable { +}; + +struct CaretPosition___StaticFields { +}; + +struct CaretPosition___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CaretPosition___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CaretPosition___VTable vtable; +}; + struct TMP_TextUtilities_LineSegment { struct Vector3 Point1; struct Vector3 Point2; @@ -800829,6 +811549,11 @@ struct TMP_UpdateRegistry { struct TMP_UpdateRegistry__Fields fields; }; +struct ICanvasElement { + struct ICanvasElement__Class *klass; + MonitorData *monitor; +}; + struct __declspec(align(8)) List_1_UnityEngine_UI_ICanvasElement___Fields { struct ICanvasElement__Array *_items; int32_t _size; @@ -800842,11 +811567,6 @@ struct List_1_UnityEngine_UI_ICanvasElement_ { struct List_1_UnityEngine_UI_ICanvasElement___Fields fields; }; -struct ICanvasElement { - struct ICanvasElement__Class *klass; - MonitorData *monitor; -}; - struct ICanvasElement__Array { struct ICanvasElement__Array__Class *klass; MonitorData *monitor; @@ -801095,19 +811815,6 @@ struct TexturePacker_JsonArray_SpriteDataObject { struct TexturePacker_JsonArray_SpriteDataObject__Fields fields; }; -struct __declspec(align(8)) List_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame___Fields { - struct TexturePacker_JsonArray_Frame__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame_ { - struct List_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame___Class *klass; - MonitorData *monitor; - struct List_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame___Fields fields; -}; - struct TexturePacker_JsonArray_Frame { struct String *filename; struct TexturePacker_JsonArray_SpriteFrame frame; @@ -801124,6 +811831,19 @@ struct TexturePacker_JsonArray_Frame__Boxed { struct TexturePacker_JsonArray_Frame fields; }; +struct __declspec(align(8)) List_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame___Fields { + struct TexturePacker_JsonArray_Frame__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame_ { + struct List_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame___Class *klass; + MonitorData *monitor; + struct List_1_TMPro_SpriteAssetUtilities_TexturePacker_JsonArray_Frame___Fields fields; +}; + struct TexturePacker_JsonArray_Frame__Array { struct TexturePacker_JsonArray_Frame__Array__Class *klass; MonitorData *monitor; @@ -801451,17 +812171,6 @@ struct BinaryExpression { struct BinaryExpression__Fields fields; }; -struct __declspec(align(8)) CacheDict_2_System_Type_System_Reflection_MethodInfo___Fields { - int32_t _mask; - struct CacheDict_2_TKey_TValue_Entry_System_Type_System_Reflection_MethodInfo___Array *_entries; -}; - -struct CacheDict_2_System_Type_System_Reflection_MethodInfo_ { - struct CacheDict_2_System_Type_System_Reflection_MethodInfo___Class *klass; - MonitorData *monitor; - struct CacheDict_2_System_Type_System_Reflection_MethodInfo___Fields fields; -}; - struct __declspec(align(8)) CacheDict_2_TKey_TValue_Entry_System_Type_System_Reflection_MethodInfo___Fields { int32_t _hash; struct Type *_key; @@ -801474,6 +812183,17 @@ struct CacheDict_2_TKey_TValue_Entry_System_Type_System_Reflection_MethodInfo_ { struct CacheDict_2_TKey_TValue_Entry_System_Type_System_Reflection_MethodInfo___Fields fields; }; +struct __declspec(align(8)) CacheDict_2_System_Type_System_Reflection_MethodInfo___Fields { + int32_t _mask; + struct CacheDict_2_TKey_TValue_Entry_System_Type_System_Reflection_MethodInfo___Array *_entries; +}; + +struct CacheDict_2_System_Type_System_Reflection_MethodInfo_ { + struct CacheDict_2_System_Type_System_Reflection_MethodInfo___Class *klass; + MonitorData *monitor; + struct CacheDict_2_System_Type_System_Reflection_MethodInfo___Fields fields; +}; + struct CacheDict_2_TKey_TValue_Entry_System_Type_System_Reflection_MethodInfo___Array { struct CacheDict_2_TKey_TValue_Entry_System_Type_System_Reflection_MethodInfo___Array__Class *klass; MonitorData *monitor; @@ -801482,17 +812202,6 @@ struct CacheDict_2_TKey_TValue_Entry_System_Type_System_Reflection_MethodInfo___ struct CacheDict_2_TKey_TValue_Entry_System_Type_System_Reflection_MethodInfo_ *vector[32]; }; -struct __declspec(align(8)) CacheDict_2_System_Type_System_Func_5___Fields { - int32_t _mask; - struct CacheDict_2_TKey_TValue_Entry_System_Type_System_Func_5___Array *_entries; -}; - -struct CacheDict_2_System_Type_System_Func_5_ { - struct CacheDict_2_System_Type_System_Func_5___Class *klass; - MonitorData *monitor; - struct CacheDict_2_System_Type_System_Func_5___Fields fields; -}; - struct __declspec(align(8)) CacheDict_2_TKey_TValue_Entry_System_Type_System_Func_5___Fields { int32_t _hash; struct Type *_key; @@ -801505,6 +812214,17 @@ struct CacheDict_2_TKey_TValue_Entry_System_Type_System_Func_5_ { struct CacheDict_2_TKey_TValue_Entry_System_Type_System_Func_5___Fields fields; }; +struct __declspec(align(8)) CacheDict_2_System_Type_System_Func_5___Fields { + int32_t _mask; + struct CacheDict_2_TKey_TValue_Entry_System_Type_System_Func_5___Array *_entries; +}; + +struct CacheDict_2_System_Type_System_Func_5_ { + struct CacheDict_2_System_Type_System_Func_5___Class *klass; + MonitorData *monitor; + struct CacheDict_2_System_Type_System_Func_5___Fields fields; +}; + struct Func_5_System_Linq_Expressions_Expression_String_Boolean_System_Collections_ObjectModel_ReadOnlyCollection_1_System_Linq_Expressions_LambdaExpression___Fields { struct MulticastDelegate__Fields _; }; @@ -803427,6 +814147,36 @@ struct IEnumerable_1_System_Linq_Expressions_ParameterExpression___Class { struct IEnumerable_1_System_Linq_Expressions_ParameterExpression___VTable vtable; }; +struct Expression__1__VTable { +}; + +struct Expression__1__StaticFields { +}; + +struct Expression__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Expression__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Expression__1__VTable vtable; +}; + +struct ReadOnlyCollection_1_System_Linq_Expressions_Expression__1__VTable { +}; + +struct ReadOnlyCollection_1_System_Linq_Expressions_Expression__1__StaticFields { +}; + +struct ReadOnlyCollection_1_System_Linq_Expressions_Expression__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ReadOnlyCollection_1_System_Linq_Expressions_Expression__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ReadOnlyCollection_1_System_Linq_Expressions_Expression__1__VTable vtable; +}; + struct IEnumerable_1_System_Linq_Expressions_CatchBlock_ { struct IEnumerable_1_System_Linq_Expressions_CatchBlock___Class *klass; MonitorData *monitor; @@ -804245,6 +814995,19 @@ struct ExpressionStringBuilder { struct ExpressionStringBuilder__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Int32_ { + int32_t hashCode; + int32_t next; + struct Object *key; + int32_t value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Int32___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Int32___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Int32_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Object_System_Int32___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Int32___Array *_entries; @@ -804264,19 +815027,6 @@ struct Dictionary_2_System_Object_System_Int32_ { struct Dictionary_2_System_Object_System_Int32___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Int32_ { - int32_t hashCode; - int32_t next; - struct Object *key; - int32_t value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Int32___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Int32___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Int32_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Int32___Array { struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Int32___Array__Class *klass; MonitorData *monitor; @@ -806306,6 +817056,11 @@ struct AddInstruction_AddInt16 { MonitorData *monitor; }; +struct IStrongBox { + struct IStrongBox__Class *klass; + MonitorData *monitor; +}; + struct __declspec(align(8)) InterpretedFrame__Fields { struct Interpreter *Interpreter; struct InterpretedFrame *_parent; @@ -806325,6 +817080,18 @@ struct InterpretedFrame { struct InterpretedFrame__Fields fields; }; +struct RuntimeLabel { + int32_t Index; + int32_t StackDepth; + int32_t ContinuationStackDepth; +}; + +struct RuntimeLabel__Boxed { + struct RuntimeLabel__Class *klass; + MonitorData *monitor; + struct RuntimeLabel fields; +}; + struct InstructionArray { int32_t MaxStackDepth; int32_t MaxContinuationDepth; @@ -806340,6 +817107,20 @@ struct InstructionArray__Boxed { struct InstructionArray fields; }; +struct __declspec(align(8)) DebugInfo__Fields { + int32_t StartLine; + int32_t EndLine; + int32_t Index; + struct String *FileName; + bool IsClear; +}; + +struct DebugInfo { + struct DebugInfo__Class *klass; + MonitorData *monitor; + struct DebugInfo__Fields fields; +}; + struct __declspec(align(8)) Interpreter__Fields { struct InstructionArray _instructions; struct Object__Array *_objects; @@ -806364,18 +817145,6 @@ struct Instruction__Array { struct Instruction *vector[32]; }; -struct RuntimeLabel { - int32_t Index; - int32_t StackDepth; - int32_t ContinuationStackDepth; -}; - -struct RuntimeLabel__Boxed { - struct RuntimeLabel__Class *klass; - MonitorData *monitor; - struct RuntimeLabel fields; -}; - struct RuntimeLabel__Array { struct RuntimeLabel__Array__Class *klass; MonitorData *monitor; @@ -806384,6 +817153,17 @@ struct RuntimeLabel__Array { struct RuntimeLabel vector[32]; }; +struct KeyValuePair_2_System_Int32_System_Object_ { + int32_t key; + struct Object *value; +}; + +struct KeyValuePair_2_System_Int32_System_Object___Boxed { + struct KeyValuePair_2_System_Int32_System_Object___Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_System_Int32_System_Object_ fields; +}; + struct __declspec(align(8)) List_1_KeyValuePair_2_System_Int32_System_Object___Fields { struct KeyValuePair_2_System_Int32_System_Object___Array *_items; int32_t _size; @@ -806397,17 +817177,6 @@ struct List_1_KeyValuePair_2_System_Int32_System_Object_ { struct List_1_KeyValuePair_2_System_Int32_System_Object___Fields fields; }; -struct KeyValuePair_2_System_Int32_System_Object_ { - int32_t key; - struct Object *value; -}; - -struct KeyValuePair_2_System_Int32_System_Object___Boxed { - struct KeyValuePair_2_System_Int32_System_Object___Class *klass; - MonitorData *monitor; - struct KeyValuePair_2_System_Int32_System_Object_ fields; -}; - struct KeyValuePair_2_System_Int32_System_Object___Array { struct KeyValuePair_2_System_Int32_System_Object___Array__Class *klass; MonitorData *monitor; @@ -806421,20 +817190,6 @@ struct IEnumerator_1_KeyValuePair_2_System_Int32_System_Object_ { MonitorData *monitor; }; -struct __declspec(align(8)) DebugInfo__Fields { - int32_t StartLine; - int32_t EndLine; - int32_t Index; - struct String *FileName; - bool IsClear; -}; - -struct DebugInfo { - struct DebugInfo__Class *klass; - MonitorData *monitor; - struct DebugInfo__Fields fields; -}; - struct DebugInfo_DebugInfoComparer { struct DebugInfo_DebugInfoComparer__Class *klass; MonitorData *monitor; @@ -806448,6 +817203,19 @@ struct DebugInfo__Array { struct DebugInfo *vector[32]; }; +struct Dictionary_2_TKey_TValue_Entry_System_Linq_Expressions_ParameterExpression_System_Linq_Expressions_Interpreter_LocalVariable_ { + int32_t hashCode; + int32_t next; + struct ParameterExpression *key; + struct LocalVariable *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Linq_Expressions_ParameterExpression_System_Linq_Expressions_Interpreter_LocalVariable___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Linq_Expressions_ParameterExpression_System_Linq_Expressions_Interpreter_LocalVariable___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Linq_Expressions_ParameterExpression_System_Linq_Expressions_Interpreter_LocalVariable_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Linq_Expressions_ParameterExpression_System_Linq_Expressions_Interpreter_LocalVariable___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Linq_Expressions_ParameterExpression_System_Linq_Expressions_Interpreter_LocalVariable___Array *_entries; @@ -806467,19 +817235,6 @@ struct Dictionary_2_System_Linq_Expressions_ParameterExpression_System_Linq_Expr struct Dictionary_2_System_Linq_Expressions_ParameterExpression_System_Linq_Expressions_Interpreter_LocalVariable___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Linq_Expressions_ParameterExpression_System_Linq_Expressions_Interpreter_LocalVariable_ { - int32_t hashCode; - int32_t next; - struct ParameterExpression *key; - struct LocalVariable *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Linq_Expressions_ParameterExpression_System_Linq_Expressions_Interpreter_LocalVariable___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Linq_Expressions_ParameterExpression_System_Linq_Expressions_Interpreter_LocalVariable___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Linq_Expressions_ParameterExpression_System_Linq_Expressions_Interpreter_LocalVariable_ fields; -}; - struct __declspec(align(8)) LocalVariable__Fields { int32_t Index; int32_t _flags; @@ -806576,11 +817331,6 @@ struct IEnumerable_1_System_Linq_Expressions_Interpreter_LocalVariable_ { MonitorData *monitor; }; -struct IStrongBox { - struct IStrongBox__Class *klass; - MonitorData *monitor; -}; - struct IStrongBox__Array { struct IStrongBox__Array__Class *klass; MonitorData *monitor; @@ -807029,6 +817779,21 @@ struct ICollection_1_System_Linq_Expressions_Interpreter_LocalVariable___Class { struct ICollection_1_System_Linq_Expressions_Interpreter_LocalVariable___VTable vtable; }; +struct LocalVariable___VTable { +}; + +struct LocalVariable___StaticFields { +}; + +struct LocalVariable___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct LocalVariable___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct LocalVariable___VTable vtable; +}; + struct KeyValuePair_2_System_Linq_Expressions_ParameterExpression_System_Linq_Expressions_Interpreter_LocalVariable___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -808388,6 +819153,19 @@ struct IEnumerator_1_System_Linq_Expressions_Interpreter_BranchLabel_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Reflection_FieldInfo_System_Linq_Expressions_Interpreter_Instruction_ { + int32_t hashCode; + int32_t next; + struct FieldInfo_1 *key; + struct Instruction *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Reflection_FieldInfo_System_Linq_Expressions_Interpreter_Instruction___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Reflection_FieldInfo_System_Linq_Expressions_Interpreter_Instruction___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Reflection_FieldInfo_System_Linq_Expressions_Interpreter_Instruction_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Reflection_FieldInfo_System_Linq_Expressions_Interpreter_Instruction___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Reflection_FieldInfo_System_Linq_Expressions_Interpreter_Instruction___Array *_entries; @@ -808407,19 +819185,6 @@ struct Dictionary_2_System_Reflection_FieldInfo_System_Linq_Expressions_Interpre struct Dictionary_2_System_Reflection_FieldInfo_System_Linq_Expressions_Interpreter_Instruction___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Reflection_FieldInfo_System_Linq_Expressions_Interpreter_Instruction_ { - int32_t hashCode; - int32_t next; - struct FieldInfo_1 *key; - struct Instruction *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Reflection_FieldInfo_System_Linq_Expressions_Interpreter_Instruction___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Reflection_FieldInfo_System_Linq_Expressions_Interpreter_Instruction___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Reflection_FieldInfo_System_Linq_Expressions_Interpreter_Instruction_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Reflection_FieldInfo_System_Linq_Expressions_Interpreter_Instruction___Array { struct Dictionary_2_TKey_TValue_Entry_System_Reflection_FieldInfo_System_Linq_Expressions_Interpreter_Instruction___Array__Class *klass; MonitorData *monitor; @@ -808753,6 +819518,21 @@ struct ICollection_1_System_Linq_Expressions_Interpreter_Instruction___Class { struct ICollection_1_System_Linq_Expressions_Interpreter_Instruction___VTable vtable; }; +struct Instruction___VTable { +}; + +struct Instruction___StaticFields { +}; + +struct Instruction___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Instruction___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Instruction___VTable vtable; +}; + struct KeyValuePair_2_System_Reflection_FieldInfo_System_Linq_Expressions_Interpreter_Instruction___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -808995,17 +819775,6 @@ struct LightLambda { struct LightLambda__Fields fields; }; -struct __declspec(align(8)) CacheDict_2_System_Type_System_Func_2___Fields { - int32_t _mask; - struct CacheDict_2_TKey_TValue_Entry_System_Type_System_Func_2___Array *_entries; -}; - -struct CacheDict_2_System_Type_System_Func_2_ { - struct CacheDict_2_System_Type_System_Func_2___Class *klass; - MonitorData *monitor; - struct CacheDict_2_System_Type_System_Func_2___Fields fields; -}; - struct __declspec(align(8)) CacheDict_2_TKey_TValue_Entry_System_Type_System_Func_2___Fields { int32_t _hash; struct Type *_key; @@ -809018,6 +819787,17 @@ struct CacheDict_2_TKey_TValue_Entry_System_Type_System_Func_2_ { struct CacheDict_2_TKey_TValue_Entry_System_Type_System_Func_2___Fields fields; }; +struct __declspec(align(8)) CacheDict_2_System_Type_System_Func_2___Fields { + int32_t _mask; + struct CacheDict_2_TKey_TValue_Entry_System_Type_System_Func_2___Array *_entries; +}; + +struct CacheDict_2_System_Type_System_Func_2_ { + struct CacheDict_2_System_Type_System_Func_2___Class *klass; + MonitorData *monitor; + struct CacheDict_2_System_Type_System_Func_2___Fields fields; +}; + struct Func_2_System_Linq_Expressions_Interpreter_LightLambda_Delegate___Fields { struct MulticastDelegate__Fields _; }; @@ -809168,15 +819948,19 @@ struct LightLambda__Class { struct LightLambda__VTable vtable; }; -struct ByRefMethodInfoCallInstruction__Fields { - struct MethodInfoCallInstruction__Fields _; - struct ByRefUpdater__Array *_byrefArgs; +struct LightLambda___VTable { }; -struct ByRefMethodInfoCallInstruction { - struct ByRefMethodInfoCallInstruction__Class *klass; - MonitorData *monitor; - struct ByRefMethodInfoCallInstruction__Fields fields; +struct LightLambda___StaticFields { +}; + +struct LightLambda___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct LightLambda___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct LightLambda___VTable vtable; }; struct __declspec(align(8)) ByRefUpdater__Fields { @@ -809189,6 +819973,17 @@ struct ByRefUpdater { struct ByRefUpdater__Fields fields; }; +struct ByRefMethodInfoCallInstruction__Fields { + struct MethodInfoCallInstruction__Fields _; + struct ByRefUpdater__Array *_byrefArgs; +}; + +struct ByRefMethodInfoCallInstruction { + struct ByRefMethodInfoCallInstruction__Class *klass; + MonitorData *monitor; + struct ByRefMethodInfoCallInstruction__Fields fields; +}; + struct ParameterByRefUpdater__Fields { struct ByRefUpdater__Fields _; struct LocalVariable *_parameter; @@ -809213,17 +820008,6 @@ struct LocalVariables { struct LocalVariables__Fields fields; }; -struct __declspec(align(8)) HybridReferenceDictionary_2_System_Linq_Expressions_ParameterExpression_LocalVariables_VariableScope___Fields { - struct KeyValuePair_2_System_Linq_Expressions_ParameterExpression_System_Linq_Expressions_Interpreter_LocalVariables_VariableScope___Array *_keysAndValues; - struct Dictionary_2_System_Linq_Expressions_ParameterExpression_System_Linq_Expressions_Interpreter_LocalVariables_VariableScope_ *_dict; -}; - -struct HybridReferenceDictionary_2_System_Linq_Expressions_ParameterExpression_LocalVariables_VariableScope_ { - struct HybridReferenceDictionary_2_System_Linq_Expressions_ParameterExpression_LocalVariables_VariableScope___Class *klass; - MonitorData *monitor; - struct HybridReferenceDictionary_2_System_Linq_Expressions_ParameterExpression_LocalVariables_VariableScope___Fields fields; -}; - struct KeyValuePair_2_System_Linq_Expressions_ParameterExpression_System_Linq_Expressions_Interpreter_LocalVariables_VariableScope_ { struct ParameterExpression *key; struct LocalVariables_VariableScope *value; @@ -809235,6 +820019,17 @@ struct KeyValuePair_2_System_Linq_Expressions_ParameterExpression_System_Linq_Ex struct KeyValuePair_2_System_Linq_Expressions_ParameterExpression_System_Linq_Expressions_Interpreter_LocalVariables_VariableScope_ fields; }; +struct __declspec(align(8)) HybridReferenceDictionary_2_System_Linq_Expressions_ParameterExpression_LocalVariables_VariableScope___Fields { + struct KeyValuePair_2_System_Linq_Expressions_ParameterExpression_System_Linq_Expressions_Interpreter_LocalVariables_VariableScope___Array *_keysAndValues; + struct Dictionary_2_System_Linq_Expressions_ParameterExpression_System_Linq_Expressions_Interpreter_LocalVariables_VariableScope_ *_dict; +}; + +struct HybridReferenceDictionary_2_System_Linq_Expressions_ParameterExpression_LocalVariables_VariableScope_ { + struct HybridReferenceDictionary_2_System_Linq_Expressions_ParameterExpression_LocalVariables_VariableScope___Class *klass; + MonitorData *monitor; + struct HybridReferenceDictionary_2_System_Linq_Expressions_ParameterExpression_LocalVariables_VariableScope___Fields fields; +}; + struct __declspec(align(8)) LocalVariables_VariableScope__Fields { int32_t Start; int32_t Stop; @@ -809283,6 +820078,19 @@ struct KeyValuePair_2_System_Linq_Expressions_ParameterExpression_System_Linq_Ex struct KeyValuePair_2_System_Linq_Expressions_ParameterExpression_System_Linq_Expressions_Interpreter_LocalVariables_VariableScope_ vector[32]; }; +struct Dictionary_2_TKey_TValue_Entry_System_Linq_Expressions_ParameterExpression_System_Linq_Expressions_Interpreter_LocalVariables_VariableScope_ { + int32_t hashCode; + int32_t next; + struct ParameterExpression *key; + struct LocalVariables_VariableScope *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Linq_Expressions_ParameterExpression_System_Linq_Expressions_Interpreter_LocalVariables_VariableScope___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Linq_Expressions_ParameterExpression_System_Linq_Expressions_Interpreter_LocalVariables_VariableScope___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Linq_Expressions_ParameterExpression_System_Linq_Expressions_Interpreter_LocalVariables_VariableScope_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Linq_Expressions_ParameterExpression_System_Linq_Expressions_Interpreter_LocalVariables_VariableScope___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Linq_Expressions_ParameterExpression_System_Linq_Expressions_Interpreter_LocalVariables_VariableScope___Array *_entries; @@ -809302,19 +820110,6 @@ struct Dictionary_2_System_Linq_Expressions_ParameterExpression_System_Linq_Expr struct Dictionary_2_System_Linq_Expressions_ParameterExpression_System_Linq_Expressions_Interpreter_LocalVariables_VariableScope___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Linq_Expressions_ParameterExpression_System_Linq_Expressions_Interpreter_LocalVariables_VariableScope_ { - int32_t hashCode; - int32_t next; - struct ParameterExpression *key; - struct LocalVariables_VariableScope *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Linq_Expressions_ParameterExpression_System_Linq_Expressions_Interpreter_LocalVariables_VariableScope___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Linq_Expressions_ParameterExpression_System_Linq_Expressions_Interpreter_LocalVariables_VariableScope___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Linq_Expressions_ParameterExpression_System_Linq_Expressions_Interpreter_LocalVariables_VariableScope_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Linq_Expressions_ParameterExpression_System_Linq_Expressions_Interpreter_LocalVariables_VariableScope___Array { struct Dictionary_2_TKey_TValue_Entry_System_Linq_Expressions_ParameterExpression_System_Linq_Expressions_Interpreter_LocalVariables_VariableScope___Array__Class *klass; MonitorData *monitor; @@ -809623,6 +820418,21 @@ struct ICollection_1_System_Linq_Expressions_Interpreter_LocalVariables_Variable struct ICollection_1_System_Linq_Expressions_Interpreter_LocalVariables_VariableScope___VTable vtable; }; +struct LocalVariables_VariableScope___VTable { +}; + +struct LocalVariables_VariableScope___StaticFields { +}; + +struct LocalVariables_VariableScope___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct LocalVariables_VariableScope___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct LocalVariables_VariableScope___VTable vtable; +}; + struct IEnumerator_1_KeyValuePair_2_System_Linq_Expressions_ParameterExpression_System_Linq_Expressions_Interpreter_LocalVariables_VariableScope___VTable { VirtualInvokeData get_Current; }; @@ -810184,6 +820994,20 @@ struct EnterTryCatchFinallyInstruction { struct EnterTryCatchFinallyInstruction__Fields fields; }; +struct __declspec(align(8)) ExceptionHandler__Fields { + struct Type *_exceptionType; + int32_t LabelIndex; + int32_t HandlerStartIndex; + int32_t HandlerEndIndex; + struct ExceptionFilter *Filter; +}; + +struct ExceptionHandler { + struct ExceptionHandler__Class *klass; + MonitorData *monitor; + struct ExceptionHandler__Fields fields; +}; + struct __declspec(align(8)) TryCatchFinallyHandler__Fields { int32_t TryStartIndex; int32_t TryEndIndex; @@ -810199,20 +821023,6 @@ struct TryCatchFinallyHandler { struct TryCatchFinallyHandler__Fields fields; }; -struct __declspec(align(8)) ExceptionHandler__Fields { - struct Type *_exceptionType; - int32_t LabelIndex; - int32_t HandlerStartIndex; - int32_t HandlerEndIndex; - struct ExceptionFilter *Filter; -}; - -struct ExceptionHandler { - struct ExceptionHandler__Class *klass; - MonitorData *monitor; - struct ExceptionHandler__Fields fields; -}; - struct __declspec(align(8)) ExceptionFilter__Fields { int32_t LabelIndex; int32_t StartIndex; @@ -814244,19 +825054,6 @@ struct LabelInfo { struct LabelInfo__Fields fields; }; -struct __declspec(align(8)) List_1_System_Linq_Expressions_Interpreter_LabelScopeInfo___Fields { - struct LabelScopeInfo__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_System_Linq_Expressions_Interpreter_LabelScopeInfo_ { - struct List_1_System_Linq_Expressions_Interpreter_LabelScopeInfo___Class *klass; - MonitorData *monitor; - struct List_1_System_Linq_Expressions_Interpreter_LabelScopeInfo___Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class LabelScopeKind__Enum : int32_t { Statement = 0x00000000, @@ -814310,15 +825107,17 @@ struct LabelScopeInfo { struct LabelScopeInfo__Fields fields; }; -struct __declspec(align(8)) HybridReferenceDictionary_2_System_Linq_Expressions_LabelTarget_LabelInfo___Fields { - struct KeyValuePair_2_System_Linq_Expressions_LabelTarget_System_Linq_Expressions_Interpreter_LabelInfo___Array *_keysAndValues; - struct Dictionary_2_System_Linq_Expressions_LabelTarget_System_Linq_Expressions_Interpreter_LabelInfo_ *_dict; +struct __declspec(align(8)) List_1_System_Linq_Expressions_Interpreter_LabelScopeInfo___Fields { + struct LabelScopeInfo__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; }; -struct HybridReferenceDictionary_2_System_Linq_Expressions_LabelTarget_LabelInfo_ { - struct HybridReferenceDictionary_2_System_Linq_Expressions_LabelTarget_LabelInfo___Class *klass; +struct List_1_System_Linq_Expressions_Interpreter_LabelScopeInfo_ { + struct List_1_System_Linq_Expressions_Interpreter_LabelScopeInfo___Class *klass; MonitorData *monitor; - struct HybridReferenceDictionary_2_System_Linq_Expressions_LabelTarget_LabelInfo___Fields fields; + struct List_1_System_Linq_Expressions_Interpreter_LabelScopeInfo___Fields fields; }; struct KeyValuePair_2_System_Linq_Expressions_LabelTarget_System_Linq_Expressions_Interpreter_LabelInfo_ { @@ -814332,6 +825131,17 @@ struct KeyValuePair_2_System_Linq_Expressions_LabelTarget_System_Linq_Expression struct KeyValuePair_2_System_Linq_Expressions_LabelTarget_System_Linq_Expressions_Interpreter_LabelInfo_ fields; }; +struct __declspec(align(8)) HybridReferenceDictionary_2_System_Linq_Expressions_LabelTarget_LabelInfo___Fields { + struct KeyValuePair_2_System_Linq_Expressions_LabelTarget_System_Linq_Expressions_Interpreter_LabelInfo___Array *_keysAndValues; + struct Dictionary_2_System_Linq_Expressions_LabelTarget_System_Linq_Expressions_Interpreter_LabelInfo_ *_dict; +}; + +struct HybridReferenceDictionary_2_System_Linq_Expressions_LabelTarget_LabelInfo_ { + struct HybridReferenceDictionary_2_System_Linq_Expressions_LabelTarget_LabelInfo___Class *klass; + MonitorData *monitor; + struct HybridReferenceDictionary_2_System_Linq_Expressions_LabelTarget_LabelInfo___Fields fields; +}; + struct KeyValuePair_2_System_Linq_Expressions_LabelTarget_System_Linq_Expressions_Interpreter_LabelInfo___Array { struct KeyValuePair_2_System_Linq_Expressions_LabelTarget_System_Linq_Expressions_Interpreter_LabelInfo___Array__Class *klass; MonitorData *monitor; @@ -814340,6 +825150,19 @@ struct KeyValuePair_2_System_Linq_Expressions_LabelTarget_System_Linq_Expression struct KeyValuePair_2_System_Linq_Expressions_LabelTarget_System_Linq_Expressions_Interpreter_LabelInfo_ vector[32]; }; +struct Dictionary_2_TKey_TValue_Entry_System_Linq_Expressions_LabelTarget_System_Linq_Expressions_Interpreter_LabelInfo_ { + int32_t hashCode; + int32_t next; + struct LabelTarget *key; + struct LabelInfo *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Linq_Expressions_LabelTarget_System_Linq_Expressions_Interpreter_LabelInfo___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Linq_Expressions_LabelTarget_System_Linq_Expressions_Interpreter_LabelInfo___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Linq_Expressions_LabelTarget_System_Linq_Expressions_Interpreter_LabelInfo_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Linq_Expressions_LabelTarget_System_Linq_Expressions_Interpreter_LabelInfo___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Linq_Expressions_LabelTarget_System_Linq_Expressions_Interpreter_LabelInfo___Array *_entries; @@ -814359,19 +825182,6 @@ struct Dictionary_2_System_Linq_Expressions_LabelTarget_System_Linq_Expressions_ struct Dictionary_2_System_Linq_Expressions_LabelTarget_System_Linq_Expressions_Interpreter_LabelInfo___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Linq_Expressions_LabelTarget_System_Linq_Expressions_Interpreter_LabelInfo_ { - int32_t hashCode; - int32_t next; - struct LabelTarget *key; - struct LabelInfo *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Linq_Expressions_LabelTarget_System_Linq_Expressions_Interpreter_LabelInfo___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Linq_Expressions_LabelTarget_System_Linq_Expressions_Interpreter_LabelInfo___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Linq_Expressions_LabelTarget_System_Linq_Expressions_Interpreter_LabelInfo_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Linq_Expressions_LabelTarget_System_Linq_Expressions_Interpreter_LabelInfo___Array { struct Dictionary_2_TKey_TValue_Entry_System_Linq_Expressions_LabelTarget_System_Linq_Expressions_Interpreter_LabelInfo___Array__Class *klass; MonitorData *monitor; @@ -814726,6 +825536,21 @@ struct ICollection_1_System_Linq_Expressions_Interpreter_LabelInfo___Class { struct ICollection_1_System_Linq_Expressions_Interpreter_LabelInfo___VTable vtable; }; +struct LabelInfo___VTable { +}; + +struct LabelInfo___StaticFields { +}; + +struct LabelInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct LabelInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct LabelInfo___VTable vtable; +}; + struct IEnumerator_1_KeyValuePair_2_System_Linq_Expressions_LabelTarget_System_Linq_Expressions_Interpreter_LabelInfo___VTable { VirtualInvokeData get_Current; }; @@ -816484,6 +827309,21 @@ struct LessThanOrEqualInstruction_LessThanOrEqualDouble__Class { struct LessThanOrEqualInstruction_LessThanOrEqualDouble__VTable vtable; }; +struct ExceptionHandler___VTable { +}; + +struct ExceptionHandler___StaticFields { +}; + +struct ExceptionHandler___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ExceptionHandler___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ExceptionHandler___VTable vtable; +}; + struct RethrowException__Fields { struct Exception__Fields _; }; @@ -816536,6 +827376,19 @@ struct LightCompiler_QuoteVisitor { struct LightCompiler_QuoteVisitor__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_Linq_Expressions_ParameterExpression_System_Int32_ { + int32_t hashCode; + int32_t next; + struct ParameterExpression *key; + int32_t value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Linq_Expressions_ParameterExpression_System_Int32___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Linq_Expressions_ParameterExpression_System_Int32___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Linq_Expressions_ParameterExpression_System_Int32_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Linq_Expressions_ParameterExpression_System_Int32___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Linq_Expressions_ParameterExpression_System_Int32___Array *_entries; @@ -816555,19 +827408,6 @@ struct Dictionary_2_System_Linq_Expressions_ParameterExpression_System_Int32_ { struct Dictionary_2_System_Linq_Expressions_ParameterExpression_System_Int32___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Linq_Expressions_ParameterExpression_System_Int32_ { - int32_t hashCode; - int32_t next; - struct ParameterExpression *key; - int32_t value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Linq_Expressions_ParameterExpression_System_Int32___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Linq_Expressions_ParameterExpression_System_Int32___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Linq_Expressions_ParameterExpression_System_Int32_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Linq_Expressions_ParameterExpression_System_Int32___Array { struct Dictionary_2_TKey_TValue_Entry_System_Linq_Expressions_ParameterExpression_System_Int32___Array__Class *klass; MonitorData *monitor; @@ -816620,6 +827460,18 @@ struct IEnumerator_1_KeyValuePair_2_System_Linq_Expressions_ParameterExpression_ MonitorData *monitor; }; +struct HashSet_1_T_Slot_System_Linq_Expressions_ParameterExpression_ { + int32_t hashCode; + int32_t next; + struct ParameterExpression *value; +}; + +struct HashSet_1_T_Slot_System_Linq_Expressions_ParameterExpression___Boxed { + struct HashSet_1_T_Slot_System_Linq_Expressions_ParameterExpression___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_System_Linq_Expressions_ParameterExpression_ fields; +}; + struct __declspec(align(8)) HashSet_1_System_Linq_Expressions_ParameterExpression___Fields { struct Int32__Array *_buckets; struct HashSet_1_T_Slot_System_Linq_Expressions_ParameterExpression___Array *_slots; @@ -816637,18 +827489,6 @@ struct HashSet_1_System_Linq_Expressions_ParameterExpression_ { struct HashSet_1_System_Linq_Expressions_ParameterExpression___Fields fields; }; -struct HashSet_1_T_Slot_System_Linq_Expressions_ParameterExpression_ { - int32_t hashCode; - int32_t next; - struct ParameterExpression *value; -}; - -struct HashSet_1_T_Slot_System_Linq_Expressions_ParameterExpression___Boxed { - struct HashSet_1_T_Slot_System_Linq_Expressions_ParameterExpression___Class *klass; - MonitorData *monitor; - struct HashSet_1_T_Slot_System_Linq_Expressions_ParameterExpression_ fields; -}; - struct HashSet_1_T_Slot_System_Linq_Expressions_ParameterExpression___Array { struct HashSet_1_T_Slot_System_Linq_Expressions_ParameterExpression___Array__Class *klass; MonitorData *monitor; @@ -817305,6 +828145,19 @@ struct LightLambda_DebugViewPrinter { struct LightLambda_DebugViewPrinter__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_String_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct String *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_String___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_String___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_String_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_System_String___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_String___Array *_entries; @@ -817324,19 +828177,6 @@ struct Dictionary_2_System_Int32_System_String_ { struct Dictionary_2_System_Int32_System_String___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_String_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct String *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_String___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_String___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_String_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_String___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_String___Array__Class *klass; MonitorData *monitor; @@ -823220,6 +834060,21 @@ struct ReaderWriterLockSlim_TimeoutTracker__Class { struct ReaderWriterLockSlim_TimeoutTracker__VTable vtable; }; +struct EventWaitHandle___VTable { +}; + +struct EventWaitHandle___StaticFields { +}; + +struct EventWaitHandle___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EventWaitHandle___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EventWaitHandle___VTable vtable; +}; + struct EmbeddedAttribute_2 { struct EmbeddedAttribute_2__Class *klass; MonitorData *monitor; @@ -823455,6 +834310,19 @@ struct ProbeBrickIndex { struct ProbeBrickIndex__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Vector3Int_List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta_ { + int32_t hashCode; + int32_t next; + struct Vector3Int key; + struct List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Vector3Int_List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Vector3Int_List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Vector3Int_List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_Vector3Int_List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Vector3Int_List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta___Array *_entries; @@ -823474,32 +834342,6 @@ struct Dictionary_2_UnityEngine_Vector3Int_List_1_UnityEngine_Experimental_Rende struct Dictionary_2_UnityEngine_Vector3Int_List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Vector3Int_List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta_ { - int32_t hashCode; - int32_t next; - struct Vector3Int key; - struct List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta_ *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Vector3Int_List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Vector3Int_List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Vector3Int_List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta_ fields; -}; - -struct __declspec(align(8)) List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta___Fields { - struct ProbeBrickIndex_VoxelMeta__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta_ { - struct List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta___Fields fields; -}; - struct ProbeReferenceVolume_RegId { int32_t id; }; @@ -823521,6 +834363,19 @@ struct ProbeBrickIndex_VoxelMeta__Boxed { struct ProbeBrickIndex_VoxelMeta fields; }; +struct __declspec(align(8)) List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta___Fields { + struct ProbeBrickIndex_VoxelMeta__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta_ { + struct List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta___Fields fields; +}; + struct ProbeBrickIndex_VoxelMeta__Array { struct ProbeBrickIndex_VoxelMeta__Array__Class *klass; MonitorData *monitor; @@ -823637,25 +834492,6 @@ struct IEnumerable_1_List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_V MonitorData *monitor; }; -struct __declspec(align(8)) Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta___Fields { - struct Int32__Array *_buckets; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta___Array *_entries; - int32_t _count; - int32_t _freeList; - int32_t _freeCount; - int32_t _version; - struct IEqualityComparer_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ *_comparer; - struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ *_keys; - struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ *_values; - struct Object *_syncRoot; -}; - -struct Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ { - struct Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta___Class *klass; - MonitorData *monitor; - struct Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta___Fields fields; -}; - struct ProbeBrickIndex_BrickMeta { struct HashSet_1_UnityEngine_Vector3Int_ *voxels; struct List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick_ *bricks; @@ -823680,6 +834516,37 @@ struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeRe struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ fields; }; +struct __declspec(align(8)) Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta_ { + struct Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta___Class *klass; + MonitorData *monitor; + struct Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta___Fields fields; +}; + +struct HashSet_1_T_Slot_UnityEngine_Vector3Int_ { + int32_t hashCode; + int32_t next; + struct Vector3Int value; +}; + +struct HashSet_1_T_Slot_UnityEngine_Vector3Int___Boxed { + struct HashSet_1_T_Slot_UnityEngine_Vector3Int___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_UnityEngine_Vector3Int_ fields; +}; + struct __declspec(align(8)) HashSet_1_UnityEngine_Vector3Int___Fields { struct Int32__Array *_buckets; struct HashSet_1_T_Slot_UnityEngine_Vector3Int___Array *_slots; @@ -823697,18 +834564,6 @@ struct HashSet_1_UnityEngine_Vector3Int_ { struct HashSet_1_UnityEngine_Vector3Int___Fields fields; }; -struct HashSet_1_T_Slot_UnityEngine_Vector3Int_ { - int32_t hashCode; - int32_t next; - struct Vector3Int value; -}; - -struct HashSet_1_T_Slot_UnityEngine_Vector3Int___Boxed { - struct HashSet_1_T_Slot_UnityEngine_Vector3Int___Class *klass; - MonitorData *monitor; - struct HashSet_1_T_Slot_UnityEngine_Vector3Int_ fields; -}; - struct HashSet_1_T_Slot_UnityEngine_Vector3Int___Array { struct HashSet_1_T_Slot_UnityEngine_Vector3Int___Array__Class *klass; MonitorData *monitor; @@ -823717,19 +834572,6 @@ struct HashSet_1_T_Slot_UnityEngine_Vector3Int___Array { struct HashSet_1_T_Slot_UnityEngine_Vector3Int_ vector[32]; }; -struct __declspec(align(8)) List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick___Fields { - struct ProbeBrickIndex_ReservedBrick__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick_ { - struct List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick___Fields fields; -}; - struct ProbeBrickIndex_Brick { struct Vector3Int position; int32_t subdivisionLevel; @@ -823752,6 +834594,19 @@ struct ProbeBrickIndex_ReservedBrick__Boxed { struct ProbeBrickIndex_ReservedBrick fields; }; +struct __declspec(align(8)) List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick___Fields { + struct ProbeBrickIndex_ReservedBrick__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick_ { + struct List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_ReservedBrick___Fields fields; +}; + struct ProbeBrickIndex_ReservedBrick__Array { struct ProbeBrickIndex_ReservedBrick__Array__Class *klass; MonitorData *monitor; @@ -824211,6 +835066,21 @@ struct ICollection_1_List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_V struct ICollection_1_List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta___VTable vtable; }; +struct List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta__1__VTable { +}; + +struct List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta__1__StaticFields { +}; + +struct List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta__1__VTable vtable; +}; + struct KeyValuePair_2_UnityEngine_Vector3Int_List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -824793,6 +835663,21 @@ struct ICollection_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMet struct ICollection_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta___VTable vtable; }; +struct ProbeBrickIndex_BrickMeta___VTable { +}; + +struct ProbeBrickIndex_BrickMeta___StaticFields { +}; + +struct ProbeBrickIndex_BrickMeta___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ProbeBrickIndex_BrickMeta___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ProbeBrickIndex_BrickMeta___VTable vtable; +}; + struct KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_BrickMeta___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -825087,6 +835972,21 @@ struct ProbeReferenceVolume_RuntimeResources__Class { struct ProbeReferenceVolume_RuntimeResources__VTable vtable; }; +struct ProbeReferenceVolume_RuntimeResources___VTable { +}; + +struct ProbeReferenceVolume_RuntimeResources___StaticFields { +}; + +struct ProbeReferenceVolume_RuntimeResources___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ProbeReferenceVolume_RuntimeResources___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ProbeReferenceVolume_RuntimeResources___VTable vtable; +}; + struct __declspec(align(8)) ProbeReferenceVolume_Cell__Fields { int32_t index; struct Vector3Int position; @@ -825255,17 +836155,19 @@ struct ProbeReferenceVolume_Cell__Class { struct ProbeReferenceVolume_Cell__VTable vtable; }; -struct __declspec(align(8)) List_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc___Fields { - struct ProbeBrickPool_BrickChunkAlloc__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; +struct ProbeBrickIndex_CellIndexUpdateInfo___VTable { }; -struct List_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ { - struct List_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc___Fields fields; +struct ProbeBrickIndex_CellIndexUpdateInfo___StaticFields { +}; + +struct ProbeBrickIndex_CellIndexUpdateInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ProbeBrickIndex_CellIndexUpdateInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ProbeBrickIndex_CellIndexUpdateInfo___VTable vtable; }; struct ProbeBrickPool_BrickChunkAlloc { @@ -825280,6 +836182,19 @@ struct ProbeBrickPool_BrickChunkAlloc__Boxed { struct ProbeBrickPool_BrickChunkAlloc fields; }; +struct __declspec(align(8)) List_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc___Fields { + struct ProbeBrickPool_BrickChunkAlloc__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ { + struct List_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc___Fields fields; +}; + struct ProbeBrickPool_BrickChunkAlloc__Array { struct ProbeBrickPool_BrickChunkAlloc__Array__Class *klass; MonitorData *monitor; @@ -825394,6 +836309,21 @@ struct List_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ struct List_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc___VTable vtable; }; +struct Vector3Int___VTable { +}; + +struct Vector3Int___StaticFields { +}; + +struct Vector3Int___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Vector3Int___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Vector3Int___VTable vtable; +}; + struct __declspec(align(8)) ProbeBrickIndex_c_DisplayClass31_0__Fields { struct ProbeReferenceVolume_RegId id; struct Predicate_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_VoxelMeta_ *__9__0; @@ -825674,6 +836604,36 @@ struct ProbeBrickPool__Class { struct ProbeBrickPool__VTable vtable; }; +struct Color__1__VTable { +}; + +struct Color__1__StaticFields { +}; + +struct Color__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Color__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Color__1__VTable vtable; +}; + +struct ProbeBrickPool_DataLocation___VTable { +}; + +struct ProbeBrickPool_DataLocation___StaticFields { +}; + +struct ProbeBrickPool_DataLocation___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ProbeBrickPool_DataLocation___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ProbeBrickPool_DataLocation___VTable vtable; +}; + struct __declspec(align(8)) ProbeCellIndices__Fields { int32_t _estimatedVMemCost_k__BackingField; struct ComputeBuffer *m_IndexOfIndicesBuffer; @@ -825765,6 +836725,53 @@ struct ProbeReferenceVolume_InitInfo__Boxed { struct ProbeReferenceVolume_InitInfo fields; }; +#if defined(_CPLUSPLUS_) +enum class DebugUI_Flags__Enum : int32_t { + None = 0x00000000, + EditorOnly = 0x00000002, + RuntimeOnly = 0x00000004, + EditorForceUpdate = 0x00000008, +}; + +#else +enum DebugUI_Flags__Enum { + DebugUI_Flags__Enum_None = 0x00000000, + DebugUI_Flags__Enum_EditorOnly = 0x00000002, + DebugUI_Flags__Enum_RuntimeOnly = 0x00000004, + DebugUI_Flags__Enum_EditorForceUpdate = 0x00000008, +}; + +#endif +struct DebugUI_Flags__Enum__Boxed { + struct DebugUI_Flags__Enum__Class *klass; + MonitorData *monitor; + #if defined(_CPLUSPLUS_) + DebugUI_Flags__Enum value; + #else + int32_t value; + #endif +}; + +struct __declspec(align(8)) DebugUI_Widget__Fields { + struct DebugUI_Panel *m_Panel; + struct DebugUI_IContainer *m_Parent; + #if defined(_CPLUSPLUS_) + DebugUI_Flags__Enum _flags_k__BackingField; + #else + int32_t _flags_k__BackingField; + #endif + struct String *_displayName_k__BackingField; + struct String *_tooltip_k__BackingField; + struct String *_queryPath_k__BackingField; + struct Func_1_Boolean_ *isHiddenCallback; +}; + +struct DebugUI_Widget { + struct DebugUI_Widget__Class *klass; + MonitorData *monitor; + struct DebugUI_Widget__Fields fields; +}; + struct __declspec(align(8)) ProbeReferenceVolume__Fields { bool m_IsInitialized; int32_t m_ID; @@ -825825,6 +836832,19 @@ struct ProbeReferenceVolume { struct ProbeReferenceVolume__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_List_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ { + int32_t hashCode; + int32_t next; + struct ProbeReferenceVolume_RegId key; + struct List_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_List_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_List_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_List_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_List_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_List_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc___Array *_entries; @@ -825844,19 +836864,6 @@ struct Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegI struct Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_List_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_List_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ { - int32_t hashCode; - int32_t next; - struct ProbeReferenceVolume_RegId key; - struct List_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_List_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_List_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_List_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_List_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_List_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc___Array__Class *klass; MonitorData *monitor; @@ -825932,6 +836939,19 @@ struct IEnumerable_1_List_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_Br MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Cell_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct ProbeReferenceVolume_Cell *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Cell___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Cell___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Cell_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Cell___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Cell___Array *_entries; @@ -825951,19 +836971,6 @@ struct Dictionary_2_System_Int32_UnityEngine_Experimental_Rendering_ProbeReferen struct Dictionary_2_System_Int32_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Cell___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Cell_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct ProbeReferenceVolume_Cell *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Cell___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Cell___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Cell_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Cell___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Cell___Array__Class *klass; MonitorData *monitor; @@ -826039,6 +837046,19 @@ struct IEnumerable_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Cel MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_CellChunkInfo_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct ProbeReferenceVolume_CellChunkInfo *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_CellChunkInfo___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_CellChunkInfo___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_CellChunkInfo_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_CellChunkInfo___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_CellChunkInfo___Array *_entries; @@ -826058,19 +837078,6 @@ struct Dictionary_2_System_Int32_UnityEngine_Experimental_Rendering_ProbeReferen struct Dictionary_2_System_Int32_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_CellChunkInfo___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_CellChunkInfo_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct ProbeReferenceVolume_CellChunkInfo *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_CellChunkInfo___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_CellChunkInfo___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_CellChunkInfo_ fields; -}; - struct __declspec(align(8)) ProbeReferenceVolume_CellChunkInfo__Fields { struct List_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc_ *chunks; }; @@ -826177,6 +837184,17 @@ struct ProbeVolumeSceneData { struct ProbeVolumeSceneData__Fields fields; }; +struct ProbeVolumeSceneData_SerializableBoundItem { + struct String *sceneGUID; + struct Bounds bounds; +}; + +struct ProbeVolumeSceneData_SerializableBoundItem__Boxed { + struct ProbeVolumeSceneData_SerializableBoundItem__Class *klass; + MonitorData *monitor; + struct ProbeVolumeSceneData_SerializableBoundItem fields; +}; + struct __declspec(align(8)) List_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem___Fields { struct ProbeVolumeSceneData_SerializableBoundItem__Array *_items; int32_t _size; @@ -826190,17 +837208,6 @@ struct List_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_Serializab struct List_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableBoundItem___Fields fields; }; -struct ProbeVolumeSceneData_SerializableBoundItem { - struct String *sceneGUID; - struct Bounds bounds; -}; - -struct ProbeVolumeSceneData_SerializableBoundItem__Boxed { - struct ProbeVolumeSceneData_SerializableBoundItem__Class *klass; - MonitorData *monitor; - struct ProbeVolumeSceneData_SerializableBoundItem fields; -}; - struct ProbeVolumeSceneData_SerializableBoundItem__Array { struct ProbeVolumeSceneData_SerializableBoundItem__Array__Class *klass; MonitorData *monitor; @@ -826214,6 +837221,17 @@ struct IEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_Ser MonitorData *monitor; }; +struct ProbeVolumeSceneData_SerializableHasPVItem { + struct String *sceneGUID; + bool hasProbeVolumes; +}; + +struct ProbeVolumeSceneData_SerializableHasPVItem__Boxed { + struct ProbeVolumeSceneData_SerializableHasPVItem__Class *klass; + MonitorData *monitor; + struct ProbeVolumeSceneData_SerializableHasPVItem fields; +}; + struct __declspec(align(8)) List_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem___Fields { struct ProbeVolumeSceneData_SerializableHasPVItem__Array *_items; int32_t _size; @@ -826227,17 +837245,6 @@ struct List_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_Serializab struct List_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializableHasPVItem___Fields fields; }; -struct ProbeVolumeSceneData_SerializableHasPVItem { - struct String *sceneGUID; - bool hasProbeVolumes; -}; - -struct ProbeVolumeSceneData_SerializableHasPVItem__Boxed { - struct ProbeVolumeSceneData_SerializableHasPVItem__Class *klass; - MonitorData *monitor; - struct ProbeVolumeSceneData_SerializableHasPVItem fields; -}; - struct ProbeVolumeSceneData_SerializableHasPVItem__Array { struct ProbeVolumeSceneData_SerializableHasPVItem__Array__Class *klass; MonitorData *monitor; @@ -826251,6 +837258,17 @@ struct IEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_Ser MonitorData *monitor; }; +struct ProbeVolumeSceneData_SerializablePVProfile { + struct String *sceneGUID; + struct ProbeReferenceVolumeProfile *profile; +}; + +struct ProbeVolumeSceneData_SerializablePVProfile__Boxed { + struct ProbeVolumeSceneData_SerializablePVProfile__Class *klass; + MonitorData *monitor; + struct ProbeVolumeSceneData_SerializablePVProfile fields; +}; + struct __declspec(align(8)) List_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile___Fields { struct ProbeVolumeSceneData_SerializablePVProfile__Array *_items; int32_t _size; @@ -826264,17 +837282,6 @@ struct List_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_Serializab struct List_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVProfile___Fields fields; }; -struct ProbeVolumeSceneData_SerializablePVProfile { - struct String *sceneGUID; - struct ProbeReferenceVolumeProfile *profile; -}; - -struct ProbeVolumeSceneData_SerializablePVProfile__Boxed { - struct ProbeVolumeSceneData_SerializablePVProfile__Class *klass; - MonitorData *monitor; - struct ProbeVolumeSceneData_SerializablePVProfile fields; -}; - #if defined(_CPLUSPLUS_) enum class ProbeReferenceVolumeProfile_Version__Enum : int32_t { Initial = 0x00000000, @@ -826326,19 +837333,6 @@ struct IEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_Ser MonitorData *monitor; }; -struct __declspec(align(8)) List_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings___Fields { - struct ProbeVolumeSceneData_SerializablePVBakeSettings__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings_ { - struct List_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings___Fields fields; -}; - struct ProbeDilationSettings { bool enableDilation; float dilationDistance; @@ -826387,6 +837381,19 @@ struct ProbeVolumeSceneData_SerializablePVBakeSettings__Boxed { struct ProbeVolumeSceneData_SerializablePVBakeSettings fields; }; +struct __declspec(align(8)) List_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings___Fields { + struct ProbeVolumeSceneData_SerializablePVBakeSettings__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings_ { + struct List_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_SerializablePVBakeSettings___Fields fields; +}; + struct ProbeVolumeSceneData_SerializablePVBakeSettings__Array { struct ProbeVolumeSceneData_SerializablePVBakeSettings__Array__Class *klass; MonitorData *monitor; @@ -826400,19 +837407,6 @@ struct IEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_Ser MonitorData *monitor; }; -struct __declspec(align(8)) List_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_BakingSet___Fields { - struct ProbeVolumeSceneData_BakingSet__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_BakingSet_ { - struct List_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_BakingSet___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_BakingSet___Fields fields; -}; - struct __declspec(align(8)) ProbeVolumeSceneData_BakingSet__Fields { struct String *name; struct List_1_System_String_ *sceneGUIDs; @@ -826426,6 +837420,19 @@ struct ProbeVolumeSceneData_BakingSet { struct ProbeVolumeSceneData_BakingSet__Fields fields; }; +struct __declspec(align(8)) List_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_BakingSet___Fields { + struct ProbeVolumeSceneData_BakingSet__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_BakingSet_ { + struct List_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_BakingSet___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_BakingSet___Fields fields; +}; + struct ProbeVolumeSceneData_BakingSet__Array { struct ProbeVolumeSceneData_BakingSet__Array__Class *klass; MonitorData *monitor; @@ -826439,6 +837446,19 @@ struct IEnumerator_1_UnityEngine_Experimental_Rendering_ProbeVolumeSceneData_Bak MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Bounds_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct Bounds value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Bounds___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Bounds___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Bounds_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_UnityEngine_Bounds___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Bounds___Array *_entries; @@ -826458,19 +837478,6 @@ struct Dictionary_2_System_String_UnityEngine_Bounds_ { struct Dictionary_2_System_String_UnityEngine_Bounds___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Bounds_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct Bounds value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Bounds___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Bounds___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Bounds_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Bounds___Array { struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Bounds___Array__Class *klass; MonitorData *monitor; @@ -826546,6 +837553,19 @@ struct IEnumerable_1_UnityEngine_Bounds_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Experimental_Rendering_ProbeReferenceVolumeProfile_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct ProbeReferenceVolumeProfile *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Experimental_Rendering_ProbeReferenceVolumeProfile___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Experimental_Rendering_ProbeReferenceVolumeProfile___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Experimental_Rendering_ProbeReferenceVolumeProfile_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_UnityEngine_Experimental_Rendering_ProbeReferenceVolumeProfile___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Experimental_Rendering_ProbeReferenceVolumeProfile___Array *_entries; @@ -826565,19 +837585,6 @@ struct Dictionary_2_System_String_UnityEngine_Experimental_Rendering_ProbeRefere struct Dictionary_2_System_String_UnityEngine_Experimental_Rendering_ProbeReferenceVolumeProfile___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Experimental_Rendering_ProbeReferenceVolumeProfile_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct ProbeReferenceVolumeProfile *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Experimental_Rendering_ProbeReferenceVolumeProfile___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Experimental_Rendering_ProbeReferenceVolumeProfile___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Experimental_Rendering_ProbeReferenceVolumeProfile_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Experimental_Rendering_ProbeReferenceVolumeProfile___Array { struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Experimental_Rendering_ProbeReferenceVolumeProfile___Array__Class *klass; MonitorData *monitor; @@ -826653,6 +837660,19 @@ struct IEnumerable_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolumeProf MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct ProbeVolumeBakingProcessSettings value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___Array *_entries; @@ -826672,19 +837692,6 @@ struct Dictionary_2_System_String_UnityEngine_Experimental_Rendering_ProbeVolume struct Dictionary_2_System_String_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct ProbeVolumeBakingProcessSettings value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___Array { struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___Array__Class *klass; MonitorData *monitor; @@ -826779,6 +837786,19 @@ struct ProbeReferenceVolume_ExtraDataActionInput__Boxed { struct ProbeReferenceVolume_ExtraDataActionInput fields; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Cell_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ { + int32_t hashCode; + int32_t next; + struct ProbeReferenceVolume_Cell *key; + struct ProbeReferenceVolume_RegId value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Cell_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Cell_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Cell_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Cell_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Cell_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___Array *_entries; @@ -826798,19 +837818,6 @@ struct Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Cell struct Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Cell_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Cell_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ { - int32_t hashCode; - int32_t next; - struct ProbeReferenceVolume_Cell *key; - struct ProbeReferenceVolume_RegId value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Cell_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Cell_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Cell_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Cell_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Cell_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___Array__Class *klass; MonitorData *monitor; @@ -826868,6 +837875,19 @@ struct IEnumerator_1_KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeRefe MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_ { + int32_t hashCode; + int32_t next; + struct ProbeReferenceVolume_RegId key; + struct ProbeBrickIndex_CellIndexUpdateInfo value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo___Array *_entries; @@ -826887,19 +837907,6 @@ struct Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegI struct Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_ { - int32_t hashCode; - int32_t next; - struct ProbeReferenceVolume_RegId key; - struct ProbeBrickIndex_CellIndexUpdateInfo value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo___Array__Class *klass; MonitorData *monitor; @@ -826975,6 +837982,19 @@ struct IEnumerable_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellInde MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Experimental_Rendering_ProbeVolumeAsset_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct ProbeVolumeAsset *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Experimental_Rendering_ProbeVolumeAsset___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Experimental_Rendering_ProbeVolumeAsset___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Experimental_Rendering_ProbeVolumeAsset_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_UnityEngine_Experimental_Rendering_ProbeVolumeAsset___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Experimental_Rendering_ProbeVolumeAsset___Array *_entries; @@ -826994,19 +838014,6 @@ struct Dictionary_2_System_String_UnityEngine_Experimental_Rendering_ProbeVolume struct Dictionary_2_System_String_UnityEngine_Experimental_Rendering_ProbeVolumeAsset___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Experimental_Rendering_ProbeVolumeAsset_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct ProbeVolumeAsset *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Experimental_Rendering_ProbeVolumeAsset___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Experimental_Rendering_ProbeVolumeAsset___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Experimental_Rendering_ProbeVolumeAsset_ fields; -}; - struct ProbeVolumeAsset__Fields { struct ScriptableObject__Fields _; int32_t m_Version; @@ -827119,19 +838126,6 @@ struct IEnumerable_1_UnityEngine_Experimental_Rendering_ProbeVolumeAsset_ { MonitorData *monitor; }; -struct __declspec(align(8)) List_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_CellSortInfo___Fields { - struct ProbeReferenceVolume_CellSortInfo__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_CellSortInfo_ { - struct List_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_CellSortInfo___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_CellSortInfo___Fields fields; -}; - struct __declspec(align(8)) ProbeReferenceVolume_CellSortInfo__Fields { struct String *sourceAsset; struct ProbeReferenceVolume_Cell *cell; @@ -827145,6 +838139,19 @@ struct ProbeReferenceVolume_CellSortInfo { struct ProbeReferenceVolume_CellSortInfo__Fields fields; }; +struct __declspec(align(8)) List_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_CellSortInfo___Fields { + struct ProbeReferenceVolume_CellSortInfo__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_CellSortInfo_ { + struct List_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_CellSortInfo___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_CellSortInfo___Fields fields; +}; + struct ProbeReferenceVolume_CellSortInfo__Array { struct ProbeReferenceVolume_CellSortInfo__Array__Class *klass; MonitorData *monitor; @@ -827210,53 +838217,6 @@ struct ProbeVolumeDebug { struct ProbeVolumeDebug__Fields fields; }; -#if defined(_CPLUSPLUS_) -enum class DebugUI_Flags__Enum : int32_t { - None = 0x00000000, - EditorOnly = 0x00000002, - RuntimeOnly = 0x00000004, - EditorForceUpdate = 0x00000008, -}; - -#else -enum DebugUI_Flags__Enum { - DebugUI_Flags__Enum_None = 0x00000000, - DebugUI_Flags__Enum_EditorOnly = 0x00000002, - DebugUI_Flags__Enum_RuntimeOnly = 0x00000004, - DebugUI_Flags__Enum_EditorForceUpdate = 0x00000008, -}; - -#endif -struct DebugUI_Flags__Enum__Boxed { - struct DebugUI_Flags__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - DebugUI_Flags__Enum value; - #else - int32_t value; - #endif -}; - -struct __declspec(align(8)) DebugUI_Widget__Fields { - struct DebugUI_Panel *m_Panel; - struct DebugUI_IContainer *m_Parent; - #if defined(_CPLUSPLUS_) - DebugUI_Flags__Enum _flags_k__BackingField; - #else - int32_t _flags_k__BackingField; - #endif - struct String *_displayName_k__BackingField; - struct String *_tooltip_k__BackingField; - struct String *_queryPath_k__BackingField; - struct Func_1_Boolean_ *isHiddenCallback; -}; - -struct DebugUI_Widget { - struct DebugUI_Widget__Class *klass; - MonitorData *monitor; - struct DebugUI_Widget__Fields fields; -}; - struct __declspec(align(8)) DebugUI_Panel__Fields { #if defined(_CPLUSPLUS_) DebugUI_Flags__Enum _flags_k__BackingField; @@ -827341,19 +838301,6 @@ struct DebugUI_Widget__Array { struct DebugUI_Widget *vector[32]; }; -struct __declspec(align(8)) List_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_CellInstancedDebugProbes___Fields { - struct ProbeReferenceVolume_CellInstancedDebugProbes__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_CellInstancedDebugProbes_ { - struct List_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_CellInstancedDebugProbes___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_CellInstancedDebugProbes___Fields fields; -}; - struct __declspec(align(8)) ProbeReferenceVolume_CellInstancedDebugProbes__Fields { struct List_1_UnityEngine_Matrix4x4__1 *probeBuffers; struct List_1_UnityEngine_MaterialPropertyBlock_ *props; @@ -827367,6 +838314,19 @@ struct ProbeReferenceVolume_CellInstancedDebugProbes { struct ProbeReferenceVolume_CellInstancedDebugProbes__Fields fields; }; +struct __declspec(align(8)) List_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_CellInstancedDebugProbes___Fields { + struct ProbeReferenceVolume_CellInstancedDebugProbes__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_CellInstancedDebugProbes_ { + struct List_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_CellInstancedDebugProbes___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_CellInstancedDebugProbes___Fields fields; +}; + struct __declspec(align(8)) List_1_UnityEngine_Matrix4x4__1__Fields { struct Matrix4x4__Array__Array *_items; int32_t _size; @@ -827432,25 +838392,6 @@ struct IEnumerator_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Cel MonitorData *monitor; }; -struct __declspec(align(8)) Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick___Fields { - struct Int32__Array *_buckets; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick___Array *_entries; - int32_t _count; - int32_t _freeList; - int32_t _freeCount; - int32_t _version; - struct IEqualityComparer_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_ *_comparer; - struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick_ *_keys; - struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick_ *_values; - struct Object *_syncRoot; -}; - -struct Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick_ { - struct Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick___Class *klass; - MonitorData *monitor; - struct Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick___Fields fields; -}; - struct ProbeReferenceVolume_Volume { struct Vector3 corner; struct Vector3 X; @@ -827479,6 +838420,25 @@ struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeRe struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick_ fields; }; +struct __declspec(align(8)) Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick_ { + struct Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick___Class *klass; + MonitorData *monitor; + struct Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick___Fields fields; +}; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick___Array__Class *klass; MonitorData *monitor; @@ -827754,6 +838714,21 @@ struct ICollection_1_List_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_Br struct ICollection_1_List_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc___VTable vtable; }; +struct List_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__1__VTable { +}; + +struct List_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__1__StaticFields { +}; + +struct List_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc__1__VTable vtable; +}; + struct KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_List_1_UnityEngine_Experimental_Rendering_ProbeBrickPool_BrickChunkAlloc___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -828032,6 +839007,21 @@ struct ICollection_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Cel struct ICollection_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Cell___VTable vtable; }; +struct ProbeReferenceVolume_Cell___VTable { +}; + +struct ProbeReferenceVolume_Cell___StaticFields { +}; + +struct ProbeReferenceVolume_Cell___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ProbeReferenceVolume_Cell___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ProbeReferenceVolume_Cell___VTable vtable; +}; + struct KeyValuePair_2_System_Int32_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Cell___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -828329,6 +839319,21 @@ struct ICollection_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Cel struct ICollection_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_CellChunkInfo___VTable vtable; }; +struct ProbeReferenceVolume_CellChunkInfo___VTable { +}; + +struct ProbeReferenceVolume_CellChunkInfo___StaticFields { +}; + +struct ProbeReferenceVolume_CellChunkInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ProbeReferenceVolume_CellChunkInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ProbeReferenceVolume_CellChunkInfo___VTable vtable; +}; + struct KeyValuePair_2_System_Int32_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_CellChunkInfo___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -829504,6 +840509,21 @@ struct ICollection_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolumeProf struct ICollection_1_UnityEngine_Experimental_Rendering_ProbeReferenceVolumeProfile___VTable vtable; }; +struct ProbeReferenceVolumeProfile___VTable { +}; + +struct ProbeReferenceVolumeProfile___StaticFields { +}; + +struct ProbeReferenceVolumeProfile___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ProbeReferenceVolumeProfile___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ProbeReferenceVolumeProfile___VTable vtable; +}; + struct KeyValuePair_2_System_String_UnityEngine_Experimental_Rendering_ProbeReferenceVolumeProfile___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -829782,6 +840802,21 @@ struct ICollection_1_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcess struct ICollection_1_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___VTable vtable; }; +struct ProbeVolumeBakingProcessSettings___VTable { +}; + +struct ProbeVolumeBakingProcessSettings___StaticFields { +}; + +struct ProbeVolumeBakingProcessSettings___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ProbeVolumeBakingProcessSettings___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ProbeVolumeBakingProcessSettings___VTable vtable; +}; + struct KeyValuePair_2_System_String_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -830094,6 +841129,21 @@ struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_Experimental_Renderi struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Cell_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___VTable vtable; }; +struct ProbeReferenceVolume_RegId___VTable { +}; + +struct ProbeReferenceVolume_RegId___StaticFields { +}; + +struct ProbeReferenceVolume_RegId___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ProbeReferenceVolume_RegId___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ProbeReferenceVolume_RegId___VTable vtable; +}; + struct KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Cell_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -830704,6 +841754,21 @@ struct ICollection_1_UnityEngine_Experimental_Rendering_ProbeVolumeAsset___Class struct ICollection_1_UnityEngine_Experimental_Rendering_ProbeVolumeAsset___VTable vtable; }; +struct ProbeVolumeAsset___VTable { +}; + +struct ProbeVolumeAsset___StaticFields { +}; + +struct ProbeVolumeAsset___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ProbeVolumeAsset___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ProbeVolumeAsset___VTable vtable; +}; + struct KeyValuePair_2_System_String_UnityEngine_Experimental_Rendering_ProbeVolumeAsset___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -831788,6 +842853,21 @@ struct ICollection_1_List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_B struct ICollection_1_List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick___VTable vtable; }; +struct List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick__1__VTable { +}; + +struct List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick__1__StaticFields { +}; + +struct List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick__1__VTable vtable; +}; + struct KeyValuePair_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -831990,6 +843070,21 @@ struct ProbeVolumeSystemParameters__Class { struct ProbeVolumeSystemParameters__VTable vtable; }; +struct ProbeVolumeSystemParameters___VTable { +}; + +struct ProbeVolumeSystemParameters___StaticFields { +}; + +struct ProbeVolumeSystemParameters___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ProbeVolumeSystemParameters___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ProbeVolumeSystemParameters___VTable vtable; +}; + struct ProbeVolumeShadingParameters { float normalBias; float viewBias; @@ -832137,6 +843232,23 @@ struct ProbeVolumePerSceneData { struct ProbeVolumePerSceneData__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeVolumeState_UnityEngine_Experimental_Rendering_ProbeVolumeAsset_ { + int32_t hashCode; + int32_t next; + #if defined(_CPLUSPLUS_) + ProbeVolumeState__Enum key; + #else + int32_t key; + #endif + struct ProbeVolumeAsset *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeVolumeState_UnityEngine_Experimental_Rendering_ProbeVolumeAsset___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeVolumeState_UnityEngine_Experimental_Rendering_ProbeVolumeAsset___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeVolumeState_UnityEngine_Experimental_Rendering_ProbeVolumeAsset_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_Experimental_Rendering_ProbeVolumeState_UnityEngine_Experimental_Rendering_ProbeVolumeAsset___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeVolumeState_UnityEngine_Experimental_Rendering_ProbeVolumeAsset___Array *_entries; @@ -832156,23 +843268,6 @@ struct Dictionary_2_UnityEngine_Experimental_Rendering_ProbeVolumeState_UnityEng struct Dictionary_2_UnityEngine_Experimental_Rendering_ProbeVolumeState_UnityEngine_Experimental_Rendering_ProbeVolumeAsset___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeVolumeState_UnityEngine_Experimental_Rendering_ProbeVolumeAsset_ { - int32_t hashCode; - int32_t next; - #if defined(_CPLUSPLUS_) - ProbeVolumeState__Enum key; - #else - int32_t key; - #endif - struct ProbeVolumeAsset *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeVolumeState_UnityEngine_Experimental_Rendering_ProbeVolumeAsset___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeVolumeState_UnityEngine_Experimental_Rendering_ProbeVolumeAsset___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeVolumeState_UnityEngine_Experimental_Rendering_ProbeVolumeAsset_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeVolumeState_UnityEngine_Experimental_Rendering_ProbeVolumeAsset___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeVolumeState_UnityEngine_Experimental_Rendering_ProbeVolumeAsset___Array__Class *klass; MonitorData *monitor; @@ -832257,19 +843352,6 @@ struct IEnumerable_1_UnityEngine_Experimental_Rendering_ProbeVolumeState_ { MonitorData *monitor; }; -struct __declspec(align(8)) List_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem___Fields { - struct ProbeVolumePerSceneData_SerializableAssetItem__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem_ { - struct List_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem___Fields fields; -}; - struct ProbeVolumePerSceneData_SerializableAssetItem { #if defined(_CPLUSPLUS_) ProbeVolumeState__Enum state; @@ -832285,6 +843367,19 @@ struct ProbeVolumePerSceneData_SerializableAssetItem__Boxed { struct ProbeVolumePerSceneData_SerializableAssetItem fields; }; +struct __declspec(align(8)) List_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem___Fields { + struct ProbeVolumePerSceneData_SerializableAssetItem__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem_ { + struct List_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_Experimental_Rendering_ProbeVolumePerSceneData_SerializableAssetItem___Fields fields; +}; + struct ProbeVolumePerSceneData_SerializableAssetItem__Array { struct ProbeVolumePerSceneData_SerializableAssetItem__Array__Class *klass; MonitorData *monitor; @@ -832901,6 +843996,21 @@ struct RendererListDesc_1__Class { struct RendererListDesc_1__VTable vtable; }; +struct RendererListDesc__1__VTable { +}; + +struct RendererListDesc__1__StaticFields { +}; + +struct RendererListDesc__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RendererListDesc__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RendererListDesc__1__VTable vtable; +}; + struct __declspec(align(8)) RenderGraphContext__Fields { struct ScriptableRenderContext renderContext; struct CommandBuffer *cmd; @@ -832926,25 +844036,6 @@ struct RenderGraphObjectPool { struct RenderGraphObjectPool__Fields fields; }; -struct __declspec(align(8)) Dictionary_2_System_ValueTuple_2_Stack_1_System_Object___Fields { - struct Int32__Array *_buckets; - struct Dictionary_2_TKey_TValue_Entry_System_ValueTuple_2_Stack_1_System_Object___Array *_entries; - int32_t _count; - int32_t _freeList; - int32_t _freeCount; - int32_t _version; - struct IEqualityComparer_1_System_ValueTuple_2__1 *_comparer; - struct Dictionary_2_TKey_TValue_KeyCollection_System_ValueTuple_2_Stack_1_System_Object_ *_keys; - struct Dictionary_2_TKey_TValue_ValueCollection_System_ValueTuple_2_Stack_1_System_Object_ *_values; - struct Object *_syncRoot; -}; - -struct Dictionary_2_System_ValueTuple_2_Stack_1_System_Object_ { - struct Dictionary_2_System_ValueTuple_2_Stack_1_System_Object___Class *klass; - MonitorData *monitor; - struct Dictionary_2_System_ValueTuple_2_Stack_1_System_Object___Fields fields; -}; - struct ValueTuple_2_Type_Int32_ { struct Type *Item1; int32_t Item2; @@ -832969,6 +844060,25 @@ struct Dictionary_2_TKey_TValue_Entry_System_ValueTuple_2_Stack_1_System_Object_ struct Dictionary_2_TKey_TValue_Entry_System_ValueTuple_2_Stack_1_System_Object_ fields; }; +struct __declspec(align(8)) Dictionary_2_System_ValueTuple_2_Stack_1_System_Object___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_System_ValueTuple_2_Stack_1_System_Object___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_System_ValueTuple_2__1 *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_System_ValueTuple_2_Stack_1_System_Object_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_System_ValueTuple_2_Stack_1_System_Object_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_System_ValueTuple_2_Stack_1_System_Object_ { + struct Dictionary_2_System_ValueTuple_2_Stack_1_System_Object___Class *klass; + MonitorData *monitor; + struct Dictionary_2_System_ValueTuple_2_Stack_1_System_Object___Fields fields; +}; + struct __declspec(align(8)) Stack_1_System_Object___Fields { struct Object__Array *_array; int32_t _size; @@ -833085,6 +844195,17 @@ struct IEnumerable_1_Stack_1_System_Object_ { MonitorData *monitor; }; +struct ValueTuple_2_Object_ValueTuple_2_Type_Int32_ { + struct Object *Item1; + struct ValueTuple_2_Type_Int32_ Item2; +}; + +struct ValueTuple_2_Object_ValueTuple_2_Type_Int32___Boxed { + struct ValueTuple_2_Object_ValueTuple_2_Type_Int32___Class *klass; + MonitorData *monitor; + struct ValueTuple_2_Object_ValueTuple_2_Type_Int32_ fields; +}; + struct __declspec(align(8)) List_1_System_ValueTuple_2___Fields { struct ValueTuple_2_Object_ValueTuple_2_Type_Int32___Array *_items; int32_t _size; @@ -833098,17 +844219,6 @@ struct List_1_System_ValueTuple_2_ { struct List_1_System_ValueTuple_2___Fields fields; }; -struct ValueTuple_2_Object_ValueTuple_2_Type_Int32_ { - struct Object *Item1; - struct ValueTuple_2_Type_Int32_ Item2; -}; - -struct ValueTuple_2_Object_ValueTuple_2_Type_Int32___Boxed { - struct ValueTuple_2_Object_ValueTuple_2_Type_Int32___Class *klass; - MonitorData *monitor; - struct ValueTuple_2_Object_ValueTuple_2_Type_Int32_ fields; -}; - struct ValueTuple_2_Object_ValueTuple_2_Type_Int32___Array { struct ValueTuple_2_Object_ValueTuple_2_Type_Int32___Array__Class *klass; MonitorData *monitor; @@ -833249,6 +844359,18 @@ struct RTHandleSystem { struct RTHandleSystem__Fields fields; }; +struct HashSet_1_T_Slot_UnityEngine_Rendering_RTHandle_ { + int32_t hashCode; + int32_t next; + struct RTHandle *value; +}; + +struct HashSet_1_T_Slot_UnityEngine_Rendering_RTHandle___Boxed { + struct HashSet_1_T_Slot_UnityEngine_Rendering_RTHandle___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_UnityEngine_Rendering_RTHandle_ fields; +}; + struct __declspec(align(8)) HashSet_1_UnityEngine_Rendering_RTHandle___Fields { struct Int32__Array *_buckets; struct HashSet_1_T_Slot_UnityEngine_Rendering_RTHandle___Array *_slots; @@ -833266,18 +844388,6 @@ struct HashSet_1_UnityEngine_Rendering_RTHandle_ { struct HashSet_1_UnityEngine_Rendering_RTHandle___Fields fields; }; -struct HashSet_1_T_Slot_UnityEngine_Rendering_RTHandle_ { - int32_t hashCode; - int32_t next; - struct RTHandle *value; -}; - -struct HashSet_1_T_Slot_UnityEngine_Rendering_RTHandle___Boxed { - struct HashSet_1_T_Slot_UnityEngine_Rendering_RTHandle___Class *klass; - MonitorData *monitor; - struct HashSet_1_T_Slot_UnityEngine_Rendering_RTHandle_ fields; -}; - struct HashSet_1_T_Slot_UnityEngine_Rendering_RTHandle___Array { struct HashSet_1_T_Slot_UnityEngine_Rendering_RTHandle___Array__Class *klass; MonitorData *monitor; @@ -833596,6 +844706,21 @@ struct ICollection_1_Stack_1_System_Object___Class { struct ICollection_1_Stack_1_System_Object___VTable vtable; }; +struct Stack_1_System_Object__1__VTable { +}; + +struct Stack_1_System_Object__1__StaticFields { +}; + +struct Stack_1_System_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Stack_1_System_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Stack_1_System_Object__1__VTable vtable; +}; + struct KeyValuePair_2_System_ValueTuple_2_Stack_1_System_Object___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -834224,6 +845349,30 @@ struct RenderGraphExecution__Boxed { struct RenderGraphExecution fields; }; +struct RenderGraph_CompiledResourceInfo { + struct List_1_System_Int32_ *producers; + struct List_1_System_Int32_ *consumers; + int32_t refCount; + bool imported; +}; + +struct RenderGraph_CompiledResourceInfo__Boxed { + struct RenderGraph_CompiledResourceInfo__Class *klass; + MonitorData *monitor; + struct RenderGraph_CompiledResourceInfo fields; +}; + +struct __declspec(align(8)) DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo___Fields { + struct RenderGraph_CompiledResourceInfo__Array *m_Array; + int32_t _size_k__BackingField; +}; + +struct DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo_ { + struct DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo___Class *klass; + MonitorData *monitor; + struct DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo___Fields fields; +}; + struct __declspec(align(8)) RenderGraph__Fields { struct RenderGraphResourceRegistry *m_Resources; struct RenderGraphObjectPool *m_RenderGraphPool; @@ -834256,6 +845405,20 @@ struct RenderGraph { struct RenderGraph__Fields fields; }; +struct __declspec(align(8)) RenderGraphResourceRegistry_RenderGraphResourcesData__Fields { + struct DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_IRenderGraphResource_ *resourceArray; + int32_t sharedResourcesCount; + struct IRenderGraphResourcePool *pool; + struct RenderGraphResourceRegistry_ResourceCallback *createResourceCallback; + struct RenderGraphResourceRegistry_ResourceCallback *releaseResourceCallback; +}; + +struct RenderGraphResourceRegistry_RenderGraphResourcesData { + struct RenderGraphResourceRegistry_RenderGraphResourcesData__Class *klass; + MonitorData *monitor; + struct RenderGraphResourceRegistry_RenderGraphResourcesData__Fields fields; +}; + struct __declspec(align(8)) RenderGraphResourceRegistry__Fields { struct RenderGraphResourceRegistry_RenderGraphResourcesData__Array *m_RenderGraphResources; struct DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource_ *m_RendererListResources; @@ -834274,31 +845437,6 @@ struct RenderGraphResourceRegistry { struct RenderGraphResourceRegistry__Fields fields; }; -struct __declspec(align(8)) RenderGraphResourceRegistry_RenderGraphResourcesData__Fields { - struct DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_IRenderGraphResource_ *resourceArray; - int32_t sharedResourcesCount; - struct IRenderGraphResourcePool *pool; - struct RenderGraphResourceRegistry_ResourceCallback *createResourceCallback; - struct RenderGraphResourceRegistry_ResourceCallback *releaseResourceCallback; -}; - -struct RenderGraphResourceRegistry_RenderGraphResourcesData { - struct RenderGraphResourceRegistry_RenderGraphResourcesData__Class *klass; - MonitorData *monitor; - struct RenderGraphResourceRegistry_RenderGraphResourcesData__Fields fields; -}; - -struct __declspec(align(8)) DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_IRenderGraphResource___Fields { - struct IRenderGraphResource__Array *m_Array; - int32_t _size_k__BackingField; -}; - -struct DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_IRenderGraphResource_ { - struct DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_IRenderGraphResource___Class *klass; - MonitorData *monitor; - struct DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_IRenderGraphResource___Fields fields; -}; - struct __declspec(align(8)) IRenderGraphResource__Fields { bool imported; bool shared; @@ -834317,6 +845455,17 @@ struct IRenderGraphResource { struct IRenderGraphResource__Fields fields; }; +struct __declspec(align(8)) DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_IRenderGraphResource___Fields { + struct IRenderGraphResource__Array *m_Array; + int32_t _size_k__BackingField; +}; + +struct DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_IRenderGraphResource_ { + struct DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_IRenderGraphResource___Class *klass; + MonitorData *monitor; + struct DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_IRenderGraphResource___Fields fields; +}; + struct IRenderGraphResourcePool { struct IRenderGraphResourcePool__Class *klass; MonitorData *monitor; @@ -834344,6 +845493,19 @@ struct ComputeBufferPool { struct ComputeBufferPool__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_SortedList_2_System_Int32_System_ValueTuple_2_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct SortedList_2_System_Int32_System_ValueTuple_2_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_SortedList_2_System_Int32_System_ValueTuple_2___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_SortedList_2_System_Int32_System_ValueTuple_2___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_SortedList_2_System_Int32_System_ValueTuple_2_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_SortedList_2_System_Int32_System_ValueTuple_2___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_SortedList_2_System_Int32_System_ValueTuple_2___Array *_entries; @@ -834363,17 +845525,15 @@ struct Dictionary_2_System_Int32_SortedList_2_System_Int32_System_ValueTuple_2_ struct Dictionary_2_System_Int32_SortedList_2_System_Int32_System_ValueTuple_2___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_SortedList_2_System_Int32_System_ValueTuple_2_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct SortedList_2_System_Int32_System_ValueTuple_2_ *value; +struct ValueTuple_2_UnityEngine_ComputeBuffer_Int32_ { + struct ComputeBuffer *Item1; + int32_t Item2; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_SortedList_2_System_Int32_System_ValueTuple_2___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_SortedList_2_System_Int32_System_ValueTuple_2___Class *klass; +struct ValueTuple_2_UnityEngine_ComputeBuffer_Int32___Boxed { + struct ValueTuple_2_UnityEngine_ComputeBuffer_Int32___Class *klass; MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_SortedList_2_System_Int32_System_ValueTuple_2_ fields; + struct ValueTuple_2_UnityEngine_ComputeBuffer_Int32_ fields; }; struct __declspec(align(8)) SortedList_2_System_Int32_System_ValueTuple_2___Fields { @@ -834393,17 +845553,6 @@ struct SortedList_2_System_Int32_System_ValueTuple_2_ { struct SortedList_2_System_Int32_System_ValueTuple_2___Fields fields; }; -struct ValueTuple_2_UnityEngine_ComputeBuffer_Int32_ { - struct ComputeBuffer *Item1; - int32_t Item2; -}; - -struct ValueTuple_2_UnityEngine_ComputeBuffer_Int32___Boxed { - struct ValueTuple_2_UnityEngine_ComputeBuffer_Int32___Class *klass; - MonitorData *monitor; - struct ValueTuple_2_UnityEngine_ComputeBuffer_Int32_ fields; -}; - struct ValueTuple_2_UnityEngine_ComputeBuffer_Int32___Array { struct ValueTuple_2_UnityEngine_ComputeBuffer_Int32___Array__Class *klass; MonitorData *monitor; @@ -834551,6 +845700,17 @@ struct IEnumerable_1_SortedList_2_System_Int32_System_ValueTuple_2_ { MonitorData *monitor; }; +struct ValueTuple_2_Int32_UnityEngine_ComputeBuffer_ { + int32_t Item1; + struct ComputeBuffer *Item2; +}; + +struct ValueTuple_2_Int32_UnityEngine_ComputeBuffer___Boxed { + struct ValueTuple_2_Int32_UnityEngine_ComputeBuffer___Class *klass; + MonitorData *monitor; + struct ValueTuple_2_Int32_UnityEngine_ComputeBuffer_ fields; +}; + struct __declspec(align(8)) List_1_System_ValueTuple_2__1__Fields { struct ValueTuple_2_Int32_UnityEngine_ComputeBuffer___Array *_items; int32_t _size; @@ -834564,17 +845724,6 @@ struct List_1_System_ValueTuple_2__1 { struct List_1_System_ValueTuple_2__1__Fields fields; }; -struct ValueTuple_2_Int32_UnityEngine_ComputeBuffer_ { - int32_t Item1; - struct ComputeBuffer *Item2; -}; - -struct ValueTuple_2_Int32_UnityEngine_ComputeBuffer___Boxed { - struct ValueTuple_2_Int32_UnityEngine_ComputeBuffer___Class *klass; - MonitorData *monitor; - struct ValueTuple_2_Int32_UnityEngine_ComputeBuffer_ fields; -}; - struct ValueTuple_2_Int32_UnityEngine_ComputeBuffer___Array { struct ValueTuple_2_Int32_UnityEngine_ComputeBuffer___Array__Class *klass; MonitorData *monitor; @@ -834600,6 +845749,19 @@ struct RenderGraphLogger { struct RenderGraphLogger__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_System_Text_StringBuilder_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct StringBuilder *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_System_Text_StringBuilder___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_System_Text_StringBuilder___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_System_Text_StringBuilder_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_System_Text_StringBuilder___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_System_Text_StringBuilder___Array *_entries; @@ -834619,19 +845781,6 @@ struct Dictionary_2_System_String_System_Text_StringBuilder_ { struct Dictionary_2_System_String_System_Text_StringBuilder___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_System_Text_StringBuilder_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct StringBuilder *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_System_Text_StringBuilder___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_System_Text_StringBuilder___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_System_Text_StringBuilder_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_String_System_Text_StringBuilder___Array { struct Dictionary_2_TKey_TValue_Entry_System_String_System_Text_StringBuilder___Array__Class *klass; MonitorData *monitor; @@ -834733,17 +845882,6 @@ struct RenderGraphResourceRegistry_RenderGraphResourcesData__Array { struct RenderGraphResourceRegistry_RenderGraphResourcesData *vector[32]; }; -struct __declspec(align(8)) DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource___Fields { - struct RendererListResource__Array *m_Array; - int32_t _size_k__BackingField; -}; - -struct DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource_ { - struct DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource___Class *klass; - MonitorData *monitor; - struct DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource___Fields fields; -}; - struct RendererListResource { struct RendererListDesc desc; struct RendererList rendererList; @@ -834755,6 +845893,17 @@ struct RendererListResource__Boxed { struct RendererListResource fields; }; +struct __declspec(align(8)) DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource___Fields { + struct RendererListResource__Array *m_Array; + int32_t _size_k__BackingField; +}; + +struct DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource_ { + struct DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource___Class *klass; + MonitorData *monitor; + struct DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource___Fields fields; +}; + struct RendererListResource__Array { struct RendererListResource__Array__Class *klass; MonitorData *monitor; @@ -834781,17 +845930,17 @@ struct RenderGraphDebugParams { struct RenderGraphDebugParams__Fields fields; }; -struct __declspec(align(8)) List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphPass___Fields { - struct RenderGraphPass__Array *_items; +struct __declspec(align(8)) List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle___Fields { + struct ResourceHandle__Array *_items; int32_t _size; int32_t _version; struct Object *_syncRoot; }; -struct List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphPass_ { - struct List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphPass___Class *klass; +struct List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle_ { + struct List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle___Class *klass; MonitorData *monitor; - struct List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphPass___Fields fields; + struct List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle___Fields fields; }; struct __declspec(align(8)) RenderGraphPass__Fields { @@ -834819,6 +845968,19 @@ struct RenderGraphPass { struct RenderGraphPass__Fields fields; }; +struct __declspec(align(8)) List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphPass___Fields { + struct RenderGraphPass__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphPass_ { + struct List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphPass___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphPass___Fields fields; +}; + struct __declspec(align(8)) ProfilingSampler__Fields { struct CustomSampler *_sampler_k__BackingField; struct CustomSampler *_inlineSampler_k__BackingField; @@ -834841,19 +846003,6 @@ struct TextureHandle__Array { struct TextureHandle vector[32]; }; -struct __declspec(align(8)) List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle___Fields { - struct ResourceHandle__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle_ { - struct List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle___Fields fields; -}; - struct ResourceHandle__Array { struct ResourceHandle__Array__Class *klass; MonitorData *monitor; @@ -834875,6 +846024,17 @@ struct List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandl struct List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_ResourceHandle_ *vector[32]; }; +struct RendererListHandle { + bool m_IsValid; + int32_t _handle_k__BackingField; +}; + +struct RendererListHandle__Boxed { + struct RendererListHandle__Class *klass; + MonitorData *monitor; + struct RendererListHandle fields; +}; + struct __declspec(align(8)) List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle___Fields { struct RendererListHandle__Array *_items; int32_t _size; @@ -834888,17 +846048,6 @@ struct List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListH struct List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListHandle___Fields fields; }; -struct RendererListHandle { - bool m_IsValid; - int32_t _handle_k__BackingField; -}; - -struct RendererListHandle__Boxed { - struct RendererListHandle__Class *klass; - MonitorData *monitor; - struct RendererListHandle fields; -}; - struct RendererListHandle__Array { struct RendererListHandle__Array__Class *klass; MonitorData *monitor; @@ -834925,6 +846074,19 @@ struct IEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_Render MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Rendering_ProfilingSampler_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct ProfilingSampler *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Rendering_ProfilingSampler___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Rendering_ProfilingSampler___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Rendering_ProfilingSampler_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_UnityEngine_Rendering_ProfilingSampler___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Rendering_ProfilingSampler___Array *_entries; @@ -834944,19 +846106,6 @@ struct Dictionary_2_System_Int32_UnityEngine_Rendering_ProfilingSampler_ { struct Dictionary_2_System_Int32_UnityEngine_Rendering_ProfilingSampler___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Rendering_ProfilingSampler_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct ProfilingSampler *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Rendering_ProfilingSampler___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Rendering_ProfilingSampler___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Rendering_ProfilingSampler_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Rendering_ProfilingSampler___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Rendering_ProfilingSampler___Array__Class *klass; MonitorData *monitor; @@ -835032,30 +846181,6 @@ struct IEnumerable_1_UnityEngine_Rendering_ProfilingSampler_ { MonitorData *monitor; }; -struct __declspec(align(8)) DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo___Fields { - struct RenderGraph_CompiledResourceInfo__Array *m_Array; - int32_t _size_k__BackingField; -}; - -struct DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo_ { - struct DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo___Class *klass; - MonitorData *monitor; - struct DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo___Fields fields; -}; - -struct RenderGraph_CompiledResourceInfo { - struct List_1_System_Int32_ *producers; - struct List_1_System_Int32_ *consumers; - int32_t refCount; - bool imported; -}; - -struct RenderGraph_CompiledResourceInfo__Boxed { - struct RenderGraph_CompiledResourceInfo__Class *klass; - MonitorData *monitor; - struct RenderGraph_CompiledResourceInfo fields; -}; - struct RenderGraph_CompiledResourceInfo__Array { struct RenderGraph_CompiledResourceInfo__Array__Class *klass; MonitorData *monitor; @@ -835072,17 +846197,6 @@ struct DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_Rende struct DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledResourceInfo_ *vector[32]; }; -struct __declspec(align(8)) DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo___Fields { - struct RenderGraph_CompiledPassInfo__Array *m_Array; - int32_t _size_k__BackingField; -}; - -struct DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo_ { - struct DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo___Class *klass; - MonitorData *monitor; - struct DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo___Fields fields; -}; - struct RenderGraph_CompiledPassInfo { struct RenderGraphPass *pass; struct List_1_System_Int32___Array *resourceCreateList; @@ -835103,6 +846217,17 @@ struct RenderGraph_CompiledPassInfo__Boxed { struct RenderGraph_CompiledPassInfo fields; }; +struct __declspec(align(8)) DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo___Fields { + struct RenderGraph_CompiledPassInfo__Array *m_Array; + int32_t _size_k__BackingField; +}; + +struct DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo_ { + struct DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo___Class *klass; + MonitorData *monitor; + struct DynamicArray_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraph_CompiledPassInfo___Fields fields; +}; + struct RenderGraph_CompiledPassInfo__Array { struct RenderGraph_CompiledPassInfo__Array__Class *klass; MonitorData *monitor; @@ -835111,6 +846236,19 @@ struct RenderGraph_CompiledPassInfo__Array { struct RenderGraph_CompiledPassInfo vector[32]; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct RenderGraphDebugData *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData___Array *_entries; @@ -835130,17 +846268,32 @@ struct Dictionary_2_System_String_UnityEngine_Experimental_Rendering_RenderGraph struct Dictionary_2_System_String_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct RenderGraphDebugData *value; +struct RenderGraphDebugData_ResourceDebugData { + struct String *name; + bool imported; + int32_t creationPassIndex; + int32_t releasePassIndex; + struct List_1_System_Int32_ *consumerList; + struct List_1_System_Int32_ *producerList; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData___Class *klass; +struct RenderGraphDebugData_ResourceDebugData__Boxed { + struct RenderGraphDebugData_ResourceDebugData__Class *klass; MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ fields; + struct RenderGraphDebugData_ResourceDebugData fields; +}; + +struct __declspec(align(8)) List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData___Fields { + struct RenderGraphDebugData_ResourceDebugData__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData_ { + struct List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData___Fields fields; }; struct __declspec(align(8)) RenderGraphDebugData__Fields { @@ -835154,19 +846307,6 @@ struct RenderGraphDebugData { struct RenderGraphDebugData__Fields fields; }; -struct __declspec(align(8)) List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData___Fields { - struct RenderGraphDebugData_PassDebugData__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData_ { - struct List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData___Fields fields; -}; - struct RenderGraphDebugData_PassDebugData { struct String *name; struct List_1_System_Int32___Array *resourceReadLists; @@ -835181,6 +846321,19 @@ struct RenderGraphDebugData_PassDebugData__Boxed { struct RenderGraphDebugData_PassDebugData fields; }; +struct __declspec(align(8)) List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData___Fields { + struct RenderGraphDebugData_PassDebugData__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData_ { + struct List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_PassDebugData___Fields fields; +}; + struct RenderGraphDebugData_PassDebugData__Array { struct RenderGraphDebugData_PassDebugData__Array__Class *klass; MonitorData *monitor; @@ -835194,34 +846347,6 @@ struct IEnumerator_1_UnityEngine_Experimental_Rendering_RenderGraphModule_Render MonitorData *monitor; }; -struct __declspec(align(8)) List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData___Fields { - struct RenderGraphDebugData_ResourceDebugData__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData_ { - struct List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData_ResourceDebugData___Fields fields; -}; - -struct RenderGraphDebugData_ResourceDebugData { - struct String *name; - bool imported; - int32_t creationPassIndex; - int32_t releasePassIndex; - struct List_1_System_Int32_ *consumerList; - struct List_1_System_Int32_ *producerList; -}; - -struct RenderGraphDebugData_ResourceDebugData__Boxed { - struct RenderGraphDebugData_ResourceDebugData__Class *klass; - MonitorData *monitor; - struct RenderGraphDebugData_ResourceDebugData fields; -}; - struct RenderGraphDebugData_ResourceDebugData__Array { struct RenderGraphDebugData_ResourceDebugData__Array__Class *klass; MonitorData *monitor; @@ -835535,6 +846660,21 @@ struct ICollection_1_System_ValueTuple_2__2__Class { struct ICollection_1_System_ValueTuple_2__2__VTable vtable; }; +struct ValueTuple_2_UnityEngine_ComputeBuffer_Int32__1__VTable { +}; + +struct ValueTuple_2_UnityEngine_ComputeBuffer_Int32__1__StaticFields { +}; + +struct ValueTuple_2_UnityEngine_ComputeBuffer_Int32__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ValueTuple_2_UnityEngine_ComputeBuffer_Int32__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ValueTuple_2_UnityEngine_ComputeBuffer_Int32__1__VTable vtable; +}; + struct KeyValuePair_2_System_Int32_System_ValueTuple_2___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -835809,6 +846949,21 @@ struct ICollection_1_SortedList_2_System_Int32_System_ValueTuple_2___Class { struct ICollection_1_SortedList_2_System_Int32_System_ValueTuple_2___VTable vtable; }; +struct SortedList_2_System_Int32_System_ValueTuple_2__1__VTable { +}; + +struct SortedList_2_System_Int32_System_ValueTuple_2__1__StaticFields { +}; + +struct SortedList_2_System_Int32_System_ValueTuple_2__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SortedList_2_System_Int32_System_ValueTuple_2__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SortedList_2_System_Int32_System_ValueTuple_2__1__VTable vtable; +}; + struct KeyValuePair_2_System_Int32_SortedList_2_System_Int32_System_ValueTuple_2___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -837132,6 +848287,21 @@ struct ICollection_1_UnityEngine_Rendering_ProfilingSampler___Class { struct ICollection_1_UnityEngine_Rendering_ProfilingSampler___VTable vtable; }; +struct ProfilingSampler___VTable { +}; + +struct ProfilingSampler___StaticFields { +}; + +struct ProfilingSampler___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ProfilingSampler___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ProfilingSampler___VTable vtable; +}; + struct KeyValuePair_2_System_Int32_UnityEngine_Rendering_ProfilingSampler___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -837767,6 +848937,21 @@ struct ICollection_1_UnityEngine_Experimental_Rendering_RenderGraphModule_Render struct ICollection_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData___VTable vtable; }; +struct RenderGraphDebugData___VTable { +}; + +struct RenderGraphDebugData___StaticFields { +}; + +struct RenderGraphDebugData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RenderGraphDebugData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RenderGraphDebugData___VTable vtable; +}; + struct KeyValuePair_2_System_String_UnityEngine_Experimental_Rendering_RenderGraphModule_RenderGraphDebugData___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -838398,6 +849583,36 @@ struct TextureDesc__Class { struct TextureDesc__VTable vtable; }; +struct TextureDesc___VTable { +}; + +struct TextureDesc___StaticFields { +}; + +struct TextureDesc___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TextureDesc___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TextureDesc___VTable vtable; +}; + +struct TextureHandle___VTable { +}; + +struct TextureHandle___StaticFields { +}; + +struct TextureHandle___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TextureHandle___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TextureHandle___VTable vtable; +}; + struct ComputeBufferHandle { struct ResourceHandle handle; }; @@ -838464,6 +849679,36 @@ struct ComputeBufferDesc__Class { struct ComputeBufferDesc__VTable vtable; }; +struct ComputeBufferDesc___VTable { +}; + +struct ComputeBufferDesc___StaticFields { +}; + +struct ComputeBufferDesc___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ComputeBufferDesc___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ComputeBufferDesc___VTable vtable; +}; + +struct ComputeBufferHandle___VTable { +}; + +struct ComputeBufferHandle___StaticFields { +}; + +struct ComputeBufferHandle___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ComputeBufferHandle___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ComputeBufferHandle___VTable vtable; +}; + struct RenderGraphParameters { struct String *executionName; int32_t currentFrameIndex; @@ -838497,6 +849742,66 @@ struct RenderGraphParameters__Class { struct RenderGraphParameters__VTable vtable; }; +struct RenderGraphParameters___VTable { +}; + +struct RenderGraphParameters___StaticFields { +}; + +struct RenderGraphParameters___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RenderGraphParameters___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RenderGraphParameters___VTable vtable; +}; + +struct RenderGraph_CompiledPassInfo___VTable { +}; + +struct RenderGraph_CompiledPassInfo___StaticFields { +}; + +struct RenderGraph_CompiledPassInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RenderGraph_CompiledPassInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RenderGraph_CompiledPassInfo___VTable vtable; +}; + +struct RenderGraph_CompiledResourceInfo___VTable { +}; + +struct RenderGraph_CompiledResourceInfo___StaticFields { +}; + +struct RenderGraph_CompiledResourceInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RenderGraph_CompiledResourceInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RenderGraph_CompiledResourceInfo___VTable vtable; +}; + +struct RenderGraphDebugData_ResourceDebugData___VTable { +}; + +struct RenderGraphDebugData_ResourceDebugData___StaticFields { +}; + +struct RenderGraphDebugData_ResourceDebugData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RenderGraphDebugData_ResourceDebugData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RenderGraphDebugData_ResourceDebugData___VTable vtable; +}; + struct __declspec(align(8)) RenderGraph_ProfilingScopePassData__Fields { struct ProfilingSampler *sampler; }; @@ -838722,6 +850027,36 @@ struct DepthAccess__Enum__Class { struct DepthAccess__Enum__VTable vtable; }; +struct RendererListHandle___VTable { +}; + +struct RendererListHandle___StaticFields { +}; + +struct RendererListHandle___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RendererListHandle___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RendererListHandle___VTable vtable; +}; + +struct ResourceHandle___VTable { +}; + +struct ResourceHandle___StaticFields { +}; + +struct ResourceHandle___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ResourceHandle___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ResourceHandle___VTable vtable; +}; + struct RenderGraphLogIndent { int32_t m_Indentation; struct RenderGraphLogger *m_Logger; @@ -839079,6 +850414,19 @@ struct TexturePool { struct TexturePool__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_SortedList_2_System_Int32_System_ValueTuple_2__1 { + int32_t hashCode; + int32_t next; + int32_t key; + struct SortedList_2_System_Int32_System_ValueTuple_2__2 *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_SortedList_2_System_Int32_System_ValueTuple_2__1__Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_SortedList_2_System_Int32_System_ValueTuple_2__1__Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_SortedList_2_System_Int32_System_ValueTuple_2__1 fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_SortedList_2_System_Int32_System_ValueTuple_2__1__Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_SortedList_2_System_Int32_System_ValueTuple_2__1__Array *_entries; @@ -839098,36 +850446,6 @@ struct Dictionary_2_System_Int32_SortedList_2_System_Int32_System_ValueTuple_2__ struct Dictionary_2_System_Int32_SortedList_2_System_Int32_System_ValueTuple_2__1__Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_SortedList_2_System_Int32_System_ValueTuple_2__1 { - int32_t hashCode; - int32_t next; - int32_t key; - struct SortedList_2_System_Int32_System_ValueTuple_2__1 *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_SortedList_2_System_Int32_System_ValueTuple_2__1__Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_SortedList_2_System_Int32_System_ValueTuple_2__1__Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_SortedList_2_System_Int32_System_ValueTuple_2__1 fields; -}; - -struct __declspec(align(8)) SortedList_2_System_Int32_System_ValueTuple_2__1__Fields { - struct Int32__Array *keys; - struct ValueTuple_2_UnityEngine_Rendering_RTHandle_Int32___Array *values; - int32_t _size; - int32_t version; - struct IComparer_1_System_Int32_ *comparer; - struct SortedList_2_TKey_TValue_KeyList_System_Int32_System_ValueTuple_2__1 *keyList; - struct SortedList_2_TKey_TValue_ValueList_System_Int32_System_ValueTuple_2__1 *valueList; - struct Object *_syncRoot; -}; - -struct SortedList_2_System_Int32_System_ValueTuple_2__1 { - struct SortedList_2_System_Int32_System_ValueTuple_2__1__Class *klass; - MonitorData *monitor; - struct SortedList_2_System_Int32_System_ValueTuple_2__1__Fields fields; -}; - struct ValueTuple_2_UnityEngine_Rendering_RTHandle_Int32_ { struct RTHandle *Item1; int32_t Item2; @@ -839139,6 +850457,23 @@ struct ValueTuple_2_UnityEngine_Rendering_RTHandle_Int32___Boxed { struct ValueTuple_2_UnityEngine_Rendering_RTHandle_Int32_ fields; }; +struct __declspec(align(8)) SortedList_2_System_Int32_System_ValueTuple_2__2__Fields { + struct Int32__Array *keys; + struct ValueTuple_2_UnityEngine_Rendering_RTHandle_Int32___Array *values; + int32_t _size; + int32_t version; + struct IComparer_1_System_Int32_ *comparer; + struct SortedList_2_TKey_TValue_KeyList_System_Int32_System_ValueTuple_2__1 *keyList; + struct SortedList_2_TKey_TValue_ValueList_System_Int32_System_ValueTuple_2__1 *valueList; + struct Object *_syncRoot; +}; + +struct SortedList_2_System_Int32_System_ValueTuple_2__2 { + struct SortedList_2_System_Int32_System_ValueTuple_2__2__Class *klass; + MonitorData *monitor; + struct SortedList_2_System_Int32_System_ValueTuple_2__2__Fields fields; +}; + struct ValueTuple_2_UnityEngine_Rendering_RTHandle_Int32___Array { struct ValueTuple_2_UnityEngine_Rendering_RTHandle_Int32___Array__Class *klass; MonitorData *monitor; @@ -839148,7 +850483,7 @@ struct ValueTuple_2_UnityEngine_Rendering_RTHandle_Int32___Array { }; struct __declspec(align(8)) SortedList_2_TKey_TValue_KeyList_System_Int32_System_ValueTuple_2__1__Fields { - struct SortedList_2_System_Int32_System_ValueTuple_2__1 *_dict; + struct SortedList_2_System_Int32_System_ValueTuple_2__2 *_dict; }; struct SortedList_2_TKey_TValue_KeyList_System_Int32_System_ValueTuple_2__1 { @@ -839158,7 +850493,7 @@ struct SortedList_2_TKey_TValue_KeyList_System_Int32_System_ValueTuple_2__1 { }; struct __declspec(align(8)) SortedList_2_TKey_TValue_ValueList_System_Int32_System_ValueTuple_2__1__Fields { - struct SortedList_2_System_Int32_System_ValueTuple_2__1 *_dict; + struct SortedList_2_System_Int32_System_ValueTuple_2__2 *_dict; }; struct SortedList_2_TKey_TValue_ValueList_System_Int32_System_ValueTuple_2__1 { @@ -839234,12 +850569,12 @@ struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_SortedList_2_System struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_SortedList_2_System_Int32_System_ValueTuple_2__1__Fields fields; }; -struct SortedList_2_System_Int32_System_ValueTuple_2__1__Array { - struct SortedList_2_System_Int32_System_ValueTuple_2__1__Array__Class *klass; +struct SortedList_2_System_Int32_System_ValueTuple_2__2__Array { + struct SortedList_2_System_Int32_System_ValueTuple_2__2__Array__Class *klass; MonitorData *monitor; Il2CppArrayBounds *bounds; il2cpp_array_size_t max_length; - struct SortedList_2_System_Int32_System_ValueTuple_2__1 *vector[32]; + struct SortedList_2_System_Int32_System_ValueTuple_2__2 *vector[32]; }; struct IEnumerator_1_SortedList_2_System_Int32_System_ValueTuple_2__1 { @@ -839254,7 +850589,7 @@ struct ICollection_1_SortedList_2_System_Int32_System_ValueTuple_2__1 { struct KeyValuePair_2_System_Int32_SortedList_2_System_Int32_System_ValueTuple_2__1 { int32_t key; - struct SortedList_2_System_Int32_System_ValueTuple_2__1 *value; + struct SortedList_2_System_Int32_System_ValueTuple_2__2 *value; }; struct KeyValuePair_2_System_Int32_SortedList_2_System_Int32_System_ValueTuple_2__1__Boxed { @@ -839281,6 +850616,17 @@ struct IEnumerable_1_SortedList_2_System_Int32_System_ValueTuple_2__1 { MonitorData *monitor; }; +struct ValueTuple_2_Int32_UnityEngine_Rendering_RTHandle_ { + int32_t Item1; + struct RTHandle *Item2; +}; + +struct ValueTuple_2_Int32_UnityEngine_Rendering_RTHandle___Boxed { + struct ValueTuple_2_Int32_UnityEngine_Rendering_RTHandle___Class *klass; + MonitorData *monitor; + struct ValueTuple_2_Int32_UnityEngine_Rendering_RTHandle_ fields; +}; + struct __declspec(align(8)) List_1_System_ValueTuple_2__2__Fields { struct ValueTuple_2_Int32_UnityEngine_Rendering_RTHandle___Array *_items; int32_t _size; @@ -839294,17 +850640,6 @@ struct List_1_System_ValueTuple_2__2 { struct List_1_System_ValueTuple_2__2__Fields fields; }; -struct ValueTuple_2_Int32_UnityEngine_Rendering_RTHandle_ { - int32_t Item1; - struct RTHandle *Item2; -}; - -struct ValueTuple_2_Int32_UnityEngine_Rendering_RTHandle___Boxed { - struct ValueTuple_2_Int32_UnityEngine_Rendering_RTHandle___Class *klass; - MonitorData *monitor; - struct ValueTuple_2_Int32_UnityEngine_Rendering_RTHandle_ fields; -}; - struct ValueTuple_2_Int32_UnityEngine_Rendering_RTHandle___Array { struct ValueTuple_2_Int32_UnityEngine_Rendering_RTHandle___Array__Class *klass; MonitorData *monitor; @@ -839473,6 +850808,21 @@ struct ICollection_1_System_ValueTuple_2__3__Class { struct ICollection_1_System_ValueTuple_2__3__VTable vtable; }; +struct ValueTuple_2_UnityEngine_Rendering_RTHandle_Int32__1__VTable { +}; + +struct ValueTuple_2_UnityEngine_Rendering_RTHandle_Int32__1__StaticFields { +}; + +struct ValueTuple_2_UnityEngine_Rendering_RTHandle_Int32__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ValueTuple_2_UnityEngine_Rendering_RTHandle_Int32__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ValueTuple_2_UnityEngine_Rendering_RTHandle_Int32__1__VTable vtable; +}; + struct KeyValuePair_2_System_Int32_System_ValueTuple_2__1__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -839539,7 +850889,7 @@ struct IEnumerable_1_System_ValueTuple_2__3__Class { struct IEnumerable_1_System_ValueTuple_2__3__VTable vtable; }; -struct SortedList_2_System_Int32_System_ValueTuple_2__1__VTable { +struct SortedList_2_System_Int32_System_ValueTuple_2__2__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; VirtualInvokeData GetHashCode; @@ -839582,16 +850932,16 @@ struct SortedList_2_System_Int32_System_ValueTuple_2__1__VTable { VirtualInvokeData get_Count_2; }; -struct SortedList_2_System_Int32_System_ValueTuple_2__1__StaticFields { +struct SortedList_2_System_Int32_System_ValueTuple_2__2__StaticFields { }; -struct SortedList_2_System_Int32_System_ValueTuple_2__1__Class { +struct SortedList_2_System_Int32_System_ValueTuple_2__2__Class { Il2CppClass_0 _0; Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct SortedList_2_System_Int32_System_ValueTuple_2__1__StaticFields *static_fields; + struct SortedList_2_System_Int32_System_ValueTuple_2__2__StaticFields *static_fields; const Il2CppRGCTXData *rgctx_data; Il2CppClass_1 _1; - struct SortedList_2_System_Int32_System_ValueTuple_2__1__VTable vtable; + struct SortedList_2_System_Int32_System_ValueTuple_2__2__VTable vtable; }; struct Dictionary_2_TKey_TValue_Entry_System_Int32_SortedList_2_System_Int32_System_ValueTuple_2__1__VTable { @@ -839661,19 +851011,19 @@ struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32_SortedList_2_System_I struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32_SortedList_2_System_Int32_System_ValueTuple_2__1__VTable vtable; }; -struct SortedList_2_System_Int32_System_ValueTuple_2__1__Array__VTable { +struct SortedList_2_System_Int32_System_ValueTuple_2__2__Array__VTable { }; -struct SortedList_2_System_Int32_System_ValueTuple_2__1__Array__StaticFields { +struct SortedList_2_System_Int32_System_ValueTuple_2__2__Array__StaticFields { }; -struct SortedList_2_System_Int32_System_ValueTuple_2__1__Array__Class { +struct SortedList_2_System_Int32_System_ValueTuple_2__2__Array__Class { Il2CppClass_0 _0; Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct SortedList_2_System_Int32_System_ValueTuple_2__1__Array__StaticFields *static_fields; + struct SortedList_2_System_Int32_System_ValueTuple_2__2__Array__StaticFields *static_fields; const Il2CppRGCTXData *rgctx_data; Il2CppClass_1 _1; - struct SortedList_2_System_Int32_System_ValueTuple_2__1__Array__VTable vtable; + struct SortedList_2_System_Int32_System_ValueTuple_2__2__Array__VTable vtable; }; struct IEnumerator_1_SortedList_2_System_Int32_System_ValueTuple_2__1__VTable { @@ -839747,6 +851097,21 @@ struct ICollection_1_SortedList_2_System_Int32_System_ValueTuple_2__1__Class { struct ICollection_1_SortedList_2_System_Int32_System_ValueTuple_2__1__VTable vtable; }; +struct SortedList_2_System_Int32_System_ValueTuple_2__3__VTable { +}; + +struct SortedList_2_System_Int32_System_ValueTuple_2__3__StaticFields { +}; + +struct SortedList_2_System_Int32_System_ValueTuple_2__3__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SortedList_2_System_Int32_System_ValueTuple_2__3__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SortedList_2_System_Int32_System_ValueTuple_2__3__VTable vtable; +}; + struct KeyValuePair_2_System_Int32_SortedList_2_System_Int32_System_ValueTuple_2__1__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -840498,6 +851863,21 @@ struct AdditionalPropertyAttribute__Class { struct AdditionalPropertyAttribute__VTable vtable; }; +struct UInt32Ptr___VTable { +}; + +struct UInt32Ptr___StaticFields { +}; + +struct UInt32Ptr___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UInt32Ptr___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UInt32Ptr___VTable vtable; +}; + struct NativeArray_1_System_UInt32_ { struct Void *m_Buffer; int32_t m_Length; @@ -840537,6 +851917,21 @@ struct NativeArray_1_System_UInt32___Class { struct NativeArray_1_System_UInt32___VTable vtable; }; +struct NativeArray_1_System_UInt32__1__VTable { +}; + +struct NativeArray_1_System_UInt32__1__StaticFields { +}; + +struct NativeArray_1_System_UInt32__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NativeArray_1_System_UInt32__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NativeArray_1_System_UInt32__1__VTable vtable; +}; + struct CoreUnsafeUtils_FixedBufferStringQueue { uint8_t *m_ReadCursor; uint8_t *m_WriteCursor; @@ -840861,6 +852256,23 @@ struct DynamicResolutionHandler_ScalerContainer__Array { struct DynamicResolutionHandler_ScalerContainer vector[32]; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Rendering_DynamicResUpscaleFilter_ { + int32_t hashCode; + int32_t next; + int32_t key; + #if defined(_CPLUSPLUS_) + DynamicResUpscaleFilter__Enum value; + #else + uint8_t value; + #endif +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Rendering_DynamicResUpscaleFilter___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Rendering_DynamicResUpscaleFilter___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Rendering_DynamicResUpscaleFilter_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_UnityEngine_Rendering_DynamicResUpscaleFilter___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Rendering_DynamicResUpscaleFilter___Array *_entries; @@ -840880,23 +852292,6 @@ struct Dictionary_2_System_Int32_UnityEngine_Rendering_DynamicResUpscaleFilter_ struct Dictionary_2_System_Int32_UnityEngine_Rendering_DynamicResUpscaleFilter___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Rendering_DynamicResUpscaleFilter_ { - int32_t hashCode; - int32_t next; - int32_t key; - #if defined(_CPLUSPLUS_) - DynamicResUpscaleFilter__Enum value; - #else - uint8_t value; - #endif -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Rendering_DynamicResUpscaleFilter___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Rendering_DynamicResUpscaleFilter___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Rendering_DynamicResUpscaleFilter_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Rendering_DynamicResUpscaleFilter___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Rendering_DynamicResUpscaleFilter___Array__Class *klass; MonitorData *monitor; @@ -840976,6 +852371,19 @@ struct IEnumerable_1_UnityEngine_Rendering_DynamicResUpscaleFilter_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Rendering_DynamicResolutionHandler_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct DynamicResolutionHandler *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Rendering_DynamicResolutionHandler___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Rendering_DynamicResolutionHandler___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Rendering_DynamicResolutionHandler_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_UnityEngine_Rendering_DynamicResolutionHandler___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Rendering_DynamicResolutionHandler___Array *_entries; @@ -840995,19 +852403,6 @@ struct Dictionary_2_System_Int32_UnityEngine_Rendering_DynamicResolutionHandler_ struct Dictionary_2_System_Int32_UnityEngine_Rendering_DynamicResolutionHandler___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Rendering_DynamicResolutionHandler_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct DynamicResolutionHandler *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Rendering_DynamicResolutionHandler___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Rendering_DynamicResolutionHandler___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Rendering_DynamicResolutionHandler_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Rendering_DynamicResolutionHandler___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Rendering_DynamicResolutionHandler___Array__Class *klass; MonitorData *monitor; @@ -841384,6 +852779,21 @@ struct ICollection_1_UnityEngine_Rendering_DynamicResUpscaleFilter___Class { struct ICollection_1_UnityEngine_Rendering_DynamicResUpscaleFilter___VTable vtable; }; +struct DynamicResUpscaleFilter___VTable { +}; + +struct DynamicResUpscaleFilter___StaticFields { +}; + +struct DynamicResUpscaleFilter___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DynamicResUpscaleFilter___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DynamicResUpscaleFilter___VTable vtable; +}; + struct KeyValuePair_2_System_Int32_UnityEngine_Rendering_DynamicResUpscaleFilter___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -841719,6 +853129,21 @@ struct ICollection_1_UnityEngine_Rendering_DynamicResolutionHandler___Class { struct ICollection_1_UnityEngine_Rendering_DynamicResolutionHandler___VTable vtable; }; +struct DynamicResolutionHandler___VTable { +}; + +struct DynamicResolutionHandler___StaticFields { +}; + +struct DynamicResolutionHandler___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DynamicResolutionHandler___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DynamicResolutionHandler___VTable vtable; +}; + struct KeyValuePair_2_System_Int32_UnityEngine_Rendering_DynamicResolutionHandler___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -842064,31 +853489,6 @@ struct XRGraphics__Class { struct XRGraphics__VTable vtable; }; -struct __declspec(align(8)) DebugManager__Fields { - struct DebugActionDesc__Array *m_DebugActions; - struct DebugActionState__Array *m_DebugActionStates; - struct InputActionMap *debugActionMap; - struct ReadOnlyCollection_1_UnityEngine_Rendering_DebugUI_Panel_ *m_ReadOnlyPanels; - struct List_1_UnityEngine_Rendering_DebugUI_Panel_ *m_Panels; - struct Action_1_Boolean_ *onDisplayRuntimeUIChanged; - struct Action *onSetDirty; - struct Action *resetData; - bool refreshEditorRequested; - struct Nullable_1_Int32_ m_RequestedPanelIndex; - struct GameObject *m_Root; - struct DebugUIHandlerCanvas *m_RootUICanvas; - struct GameObject *m_PersistentRoot; - struct DebugUIHandlerPersistentCanvas *m_RootUIPersistentCanvas; - bool m_EditorOpen; - bool m_EnableRuntimeUI; -}; - -struct DebugManager { - struct DebugManager__Class *klass; - MonitorData *monitor; - struct DebugManager__Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class DebugActionRepeatMode__Enum : int32_t { Never = 0x00000000, @@ -842128,14 +853528,6 @@ struct DebugActionDesc { struct DebugActionDesc__Fields fields; }; -struct DebugActionDesc__Array { - struct DebugActionDesc__Array__Class *klass; - MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - struct DebugActionDesc *vector[32]; -}; - #if defined(_CPLUSPLUS_) enum class DebugActionState_DebugActionKeyType__Enum : int32_t { Button = 0x00000000, @@ -842180,6 +853572,39 @@ struct DebugActionState { struct DebugActionState__Fields fields; }; +struct __declspec(align(8)) DebugManager__Fields { + struct DebugActionDesc__Array *m_DebugActions; + struct DebugActionState__Array *m_DebugActionStates; + struct InputActionMap *debugActionMap; + struct ReadOnlyCollection_1_UnityEngine_Rendering_DebugUI_Panel_ *m_ReadOnlyPanels; + struct List_1_UnityEngine_Rendering_DebugUI_Panel_ *m_Panels; + struct Action_1_Boolean_ *onDisplayRuntimeUIChanged; + struct Action *onSetDirty; + struct Action *resetData; + bool refreshEditorRequested; + struct Nullable_1_Int32_ m_RequestedPanelIndex; + struct GameObject *m_Root; + struct DebugUIHandlerCanvas *m_RootUICanvas; + struct GameObject *m_PersistentRoot; + struct DebugUIHandlerPersistentCanvas *m_RootUIPersistentCanvas; + bool m_EditorOpen; + bool m_EnableRuntimeUI; +}; + +struct DebugManager { + struct DebugManager__Class *klass; + MonitorData *monitor; + struct DebugManager__Fields fields; +}; + +struct DebugActionDesc__Array { + struct DebugActionDesc__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct DebugActionDesc *vector[32]; +}; + struct DebugActionState__Array { struct DebugActionState__Array__Class *klass; MonitorData *monitor; @@ -842270,6 +853695,19 @@ struct DebugUIHandlerCanvas { struct DebugUIHandlerCanvas__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Transform_ { + int32_t hashCode; + int32_t next; + struct Type *key; + struct Transform *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Transform___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Transform___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Transform_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Type_UnityEngine_Transform___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Transform___Array *_entries; @@ -842289,19 +853727,6 @@ struct Dictionary_2_System_Type_UnityEngine_Transform_ { struct Dictionary_2_System_Type_UnityEngine_Transform___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Transform_ { - int32_t hashCode; - int32_t next; - struct Type *key; - struct Transform *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Transform___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Transform___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Transform_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Transform___Array { struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Transform___Array__Class *klass; MonitorData *monitor; @@ -842354,6 +853779,17 @@ struct IEnumerator_1_KeyValuePair_2_System_Type_UnityEngine_Transform_ { MonitorData *monitor; }; +struct __declspec(align(8)) DebugUIPrefabBundle__Fields { + struct String *type; + struct RectTransform *prefab; +}; + +struct DebugUIPrefabBundle { + struct DebugUIPrefabBundle__Class *klass; + MonitorData *monitor; + struct DebugUIPrefabBundle__Fields fields; +}; + struct __declspec(align(8)) List_1_UnityEngine_Rendering_UI_DebugUIPrefabBundle___Fields { struct DebugUIPrefabBundle__Array *_items; int32_t _size; @@ -842367,17 +853803,6 @@ struct List_1_UnityEngine_Rendering_UI_DebugUIPrefabBundle_ { struct List_1_UnityEngine_Rendering_UI_DebugUIPrefabBundle___Fields fields; }; -struct __declspec(align(8)) DebugUIPrefabBundle__Fields { - struct String *type; - struct RectTransform *prefab; -}; - -struct DebugUIPrefabBundle { - struct DebugUIPrefabBundle__Class *klass; - MonitorData *monitor; - struct DebugUIPrefabBundle__Fields fields; -}; - struct DebugUIPrefabBundle__Array { struct DebugUIPrefabBundle__Array__Class *klass; MonitorData *monitor; @@ -842391,19 +853816,6 @@ struct IEnumerator_1_UnityEngine_Rendering_UI_DebugUIPrefabBundle_ { MonitorData *monitor; }; -struct __declspec(align(8)) List_1_UnityEngine_Rendering_UI_DebugUIHandlerPanel___Fields { - struct DebugUIHandlerPanel__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_Rendering_UI_DebugUIHandlerPanel_ { - struct List_1_UnityEngine_Rendering_UI_DebugUIHandlerPanel___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_Rendering_UI_DebugUIHandlerPanel___Fields fields; -}; - struct DebugUIHandlerPanel__Fields { struct MonoBehaviour__Fields _; struct Text *nameLabel; @@ -842423,6 +853835,19 @@ struct DebugUIHandlerPanel { struct DebugUIHandlerPanel__Fields fields; }; +struct __declspec(align(8)) List_1_UnityEngine_Rendering_UI_DebugUIHandlerPanel___Fields { + struct DebugUIHandlerPanel__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_Rendering_UI_DebugUIHandlerPanel_ { + struct List_1_UnityEngine_Rendering_UI_DebugUIHandlerPanel___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_Rendering_UI_DebugUIHandlerPanel___Fields fields; +}; + struct DebugUIHandlerWidget__Fields { struct MonoBehaviour__Fields _; struct Color colorDefault; @@ -842465,19 +853890,6 @@ struct DebugUIHandlerPersistentCanvas { struct DebugUIHandlerPersistentCanvas__Fields fields; }; -struct __declspec(align(8)) List_1_UnityEngine_Rendering_UI_DebugUIHandlerValue___Fields { - struct DebugUIHandlerValue__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_Rendering_UI_DebugUIHandlerValue_ { - struct List_1_UnityEngine_Rendering_UI_DebugUIHandlerValue___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_Rendering_UI_DebugUIHandlerValue___Fields fields; -}; - struct DebugUIHandlerValue__Fields { struct DebugUIHandlerWidget__Fields _; struct Text *nameLabel; @@ -842492,6 +853904,19 @@ struct DebugUIHandlerValue { struct DebugUIHandlerValue__Fields fields; }; +struct __declspec(align(8)) List_1_UnityEngine_Rendering_UI_DebugUIHandlerValue___Fields { + struct DebugUIHandlerValue__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_Rendering_UI_DebugUIHandlerValue_ { + struct List_1_UnityEngine_Rendering_UI_DebugUIHandlerValue___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_Rendering_UI_DebugUIHandlerValue___Fields fields; +}; + struct DebugUI_Value__Fields { struct DebugUI_Widget__Fields _; struct Func_1_Object_ *_getter_k__BackingField; @@ -843736,6 +855161,17 @@ struct DebugUI_Foldout { struct DebugUI_Foldout__Fields fields; }; +struct DebugUI_Foldout_ContextMenuItem { + struct String *displayName; + struct Action *action; +}; + +struct DebugUI_Foldout_ContextMenuItem__Boxed { + struct DebugUI_Foldout_ContextMenuItem__Class *klass; + MonitorData *monitor; + struct DebugUI_Foldout_ContextMenuItem fields; +}; + struct __declspec(align(8)) List_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem___Fields { struct DebugUI_Foldout_ContextMenuItem__Array *_items; int32_t _size; @@ -843749,17 +855185,6 @@ struct List_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem_ { struct List_1_UnityEngine_Rendering_DebugUI_Foldout_ContextMenuItem___Fields fields; }; -struct DebugUI_Foldout_ContextMenuItem { - struct String *displayName; - struct Action *action; -}; - -struct DebugUI_Foldout_ContextMenuItem__Boxed { - struct DebugUI_Foldout_ContextMenuItem__Class *klass; - MonitorData *monitor; - struct DebugUI_Foldout_ContextMenuItem fields; -}; - struct DebugUI_Foldout_ContextMenuItem__Array { struct DebugUI_Foldout_ContextMenuItem__Array__Class *klass; MonitorData *monitor; @@ -845999,19 +857424,6 @@ struct LensFlareCommonSRP { MonitorData *monitor; }; -struct __declspec(align(8)) List_1_UnityEngine_Rendering_LensFlareComponentSRP___Fields { - struct LensFlareComponentSRP__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_Rendering_LensFlareComponentSRP_ { - struct List_1_UnityEngine_Rendering_LensFlareComponentSRP___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_Rendering_LensFlareComponentSRP___Fields fields; -}; - struct LensFlareComponentSRP__Fields { struct MonoBehaviour__Fields _; struct LensFlareDataSRP *m_LensFlareData; @@ -846036,15 +857448,17 @@ struct LensFlareComponentSRP { struct LensFlareComponentSRP__Fields fields; }; -struct LensFlareDataSRP__Fields { - struct ScriptableObject__Fields _; - struct LensFlareDataElementSRP__Array *elements; +struct __declspec(align(8)) List_1_UnityEngine_Rendering_LensFlareComponentSRP___Fields { + struct LensFlareComponentSRP__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; }; -struct LensFlareDataSRP { - struct LensFlareDataSRP__Class *klass; +struct List_1_UnityEngine_Rendering_LensFlareComponentSRP_ { + struct List_1_UnityEngine_Rendering_LensFlareComponentSRP___Class *klass; MonitorData *monitor; - struct LensFlareDataSRP__Fields fields; + struct List_1_UnityEngine_Rendering_LensFlareComponentSRP___Fields fields; }; #if defined(_CPLUSPLUS_) @@ -846185,6 +857599,17 @@ struct LensFlareDataElementSRP { struct LensFlareDataElementSRP__Fields fields; }; +struct LensFlareDataSRP__Fields { + struct ScriptableObject__Fields _; + struct LensFlareDataElementSRP__Array *elements; +}; + +struct LensFlareDataSRP { + struct LensFlareDataSRP__Class *klass; + MonitorData *monitor; + struct LensFlareDataSRP__Fields fields; +}; + struct LensFlareDataElementSRP__Array { struct LensFlareDataElementSRP__Array__Class *klass; MonitorData *monitor; @@ -846585,6 +858010,21 @@ struct LensFlareCommonSRP_c_DisplayClass33_0__Class { struct LensFlareCommonSRP_c_DisplayClass33_0__VTable vtable; }; +struct LensFlareCommonSRP_c_DisplayClass33_0___VTable { +}; + +struct LensFlareCommonSRP_c_DisplayClass33_0___StaticFields { +}; + +struct LensFlareCommonSRP_c_DisplayClass33_0___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct LensFlareCommonSRP_c_DisplayClass33_0___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct LensFlareCommonSRP_c_DisplayClass33_0___VTable vtable; +}; + struct LensFlareCommonSRP_c_DisplayClass33_1__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -846604,6 +858044,21 @@ struct LensFlareCommonSRP_c_DisplayClass33_1__Class { struct LensFlareCommonSRP_c_DisplayClass33_1__VTable vtable; }; +struct LensFlareCommonSRP_c_DisplayClass33_1___VTable { +}; + +struct LensFlareCommonSRP_c_DisplayClass33_1___StaticFields { +}; + +struct LensFlareCommonSRP_c_DisplayClass33_1___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct LensFlareCommonSRP_c_DisplayClass33_1___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct LensFlareCommonSRP_c_DisplayClass33_1___VTable vtable; +}; + struct RenderPipelineResources__Fields { struct ScriptableObject__Fields _; }; @@ -846998,6 +858453,19 @@ struct BufferedRTHandleSystem { struct BufferedRTHandleSystem__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Rendering_RTHandle_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct RTHandle__Array *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Rendering_RTHandle___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Rendering_RTHandle___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Rendering_RTHandle_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_UnityEngine_Rendering_RTHandle___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Rendering_RTHandle___Array *_entries; @@ -847017,19 +858485,6 @@ struct Dictionary_2_System_Int32_UnityEngine_Rendering_RTHandle_ { struct Dictionary_2_System_Int32_UnityEngine_Rendering_RTHandle___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Rendering_RTHandle_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct RTHandle__Array *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Rendering_RTHandle___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Rendering_RTHandle___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Rendering_RTHandle_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Rendering_RTHandle___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Rendering_RTHandle___Array__Class *klass; MonitorData *monitor; @@ -847258,6 +858713,21 @@ struct ICollection_1_UnityEngine_Rendering_RTHandle___Class { struct ICollection_1_UnityEngine_Rendering_RTHandle___VTable vtable; }; +struct RTHandle___VTable { +}; + +struct RTHandle___StaticFields { +}; + +struct RTHandle___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RTHandle___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RTHandle___VTable vtable; +}; + struct KeyValuePair_2_System_Int32_UnityEngine_Rendering_RTHandle___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -847553,25 +859023,6 @@ struct UnityAction_1_UnityEngine_Rendering_AtlasAllocator_AtlasNode_ { struct UnityAction_1_UnityEngine_Rendering_AtlasAllocator_AtlasNode___Fields fields; }; -struct __declspec(align(8)) Dictionary_2_System_Int32_System_ValueTuple_2___Fields { - struct Int32__Array *_buckets; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_ValueTuple_2___Array *_entries; - int32_t _count; - int32_t _freeList; - int32_t _freeCount; - int32_t _version; - struct IEqualityComparer_1_System_Int32_ *_comparer; - struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32_System_ValueTuple_2_ *_keys; - struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_System_ValueTuple_2_ *_values; - struct Object *_syncRoot; -}; - -struct Dictionary_2_System_Int32_System_ValueTuple_2_ { - struct Dictionary_2_System_Int32_System_ValueTuple_2___Class *klass; - MonitorData *monitor; - struct Dictionary_2_System_Int32_System_ValueTuple_2___Fields fields; -}; - struct ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int_ { struct Vector4 Item1; struct Vector2Int Item2; @@ -847596,6 +859047,25 @@ struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_ValueTuple_2___Boxed { struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_ValueTuple_2_ fields; }; +struct __declspec(align(8)) Dictionary_2_System_Int32_System_ValueTuple_2___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_ValueTuple_2___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_System_Int32_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32_System_ValueTuple_2_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_System_ValueTuple_2_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_System_Int32_System_ValueTuple_2_ { + struct Dictionary_2_System_Int32_System_ValueTuple_2___Class *klass; + MonitorData *monitor; + struct Dictionary_2_System_Int32_System_ValueTuple_2___Fields fields; +}; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_ValueTuple_2___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_ValueTuple_2___Array__Class *klass; MonitorData *monitor; @@ -847671,6 +859141,19 @@ struct IEnumerable_1_System_ValueTuple_2__4 { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Vector2Int_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct Vector2Int value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Vector2Int___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Vector2Int___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Vector2Int_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_UnityEngine_Vector2Int___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Vector2Int___Array *_entries; @@ -847690,19 +859173,6 @@ struct Dictionary_2_System_Int32_UnityEngine_Vector2Int_ { struct Dictionary_2_System_Int32_UnityEngine_Vector2Int___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Vector2Int_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct Vector2Int value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Vector2Int___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Vector2Int___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Vector2Int_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Vector2Int___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Vector2Int___Array__Class *klass; MonitorData *monitor; @@ -848102,6 +859572,21 @@ struct ICollection_1_System_ValueTuple_2__4__Class { struct ICollection_1_System_ValueTuple_2__4__VTable vtable; }; +struct ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int__1__VTable { +}; + +struct ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int__1__StaticFields { +}; + +struct ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ValueTuple_2_UnityEngine_Vector4_UnityEngine_Vector2Int__1__VTable vtable; +}; + struct KeyValuePair_2_System_Int32_System_ValueTuple_2__2__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -848411,6 +859896,21 @@ struct ICollection_1_UnityEngine_Vector2Int___Class { struct ICollection_1_UnityEngine_Vector2Int___VTable vtable; }; +struct Vector2Int___VTable { +}; + +struct Vector2Int___StaticFields { +}; + +struct Vector2Int___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Vector2Int___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Vector2Int___VTable vtable; +}; + struct KeyValuePair_2_System_Int32_UnityEngine_Vector2Int___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -848734,6 +860234,21 @@ struct PowerOfTwoTextureAtlas_c__Class { struct PowerOfTwoTextureAtlas_c__VTable vtable; }; +struct RTHandleProperties___VTable { +}; + +struct RTHandleProperties___StaticFields { +}; + +struct RTHandleProperties___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RTHandleProperties___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RTHandleProperties___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class RTHandleSystem_ResizeMode__Enum : int32_t { Auto = 0x00000000, @@ -848795,6 +860310,21 @@ struct RTHandleSystem_ResizeMode__Enum__Class { struct RTHandleSystem_ResizeMode__Enum__VTable vtable; }; +struct ObjectPool_1_AtlasAllocator_AtlasNode__1__VTable { +}; + +struct ObjectPool_1_AtlasAllocator_AtlasNode__1__StaticFields { +}; + +struct ObjectPool_1_AtlasAllocator_AtlasNode__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ObjectPool_1_AtlasAllocator_AtlasNode__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ObjectPool_1_AtlasAllocator_AtlasNode__1__VTable vtable; +}; + struct AtlasAllocator_c { struct AtlasAllocator_c__Class *klass; MonitorData *monitor; @@ -848901,18 +860431,6 @@ struct AtlasAllocatorDynamic { struct AtlasAllocatorDynamic__Fields fields; }; -struct __declspec(align(8)) AtlasAllocatorDynamic_AtlasNodePool__Fields { - struct AtlasAllocatorDynamic_AtlasNode__Array *m_Nodes; - int16_t m_Next; - int16_t m_FreelistHead; -}; - -struct AtlasAllocatorDynamic_AtlasNodePool { - struct AtlasAllocatorDynamic_AtlasNodePool__Class *klass; - MonitorData *monitor; - struct AtlasAllocatorDynamic_AtlasNodePool__Fields fields; -}; - struct AtlasAllocatorDynamic_AtlasNode { int16_t m_Self; int16_t m_Parent; @@ -848929,6 +860447,18 @@ struct AtlasAllocatorDynamic_AtlasNode__Boxed { struct AtlasAllocatorDynamic_AtlasNode fields; }; +struct __declspec(align(8)) AtlasAllocatorDynamic_AtlasNodePool__Fields { + struct AtlasAllocatorDynamic_AtlasNode__Array *m_Nodes; + int16_t m_Next; + int16_t m_FreelistHead; +}; + +struct AtlasAllocatorDynamic_AtlasNodePool { + struct AtlasAllocatorDynamic_AtlasNodePool__Class *klass; + MonitorData *monitor; + struct AtlasAllocatorDynamic_AtlasNodePool__Fields fields; +}; + struct AtlasAllocatorDynamic_AtlasNode__Array { struct AtlasAllocatorDynamic_AtlasNode__Array__Class *klass; MonitorData *monitor; @@ -848937,6 +860467,19 @@ struct AtlasAllocatorDynamic_AtlasNode__Array { struct AtlasAllocatorDynamic_AtlasNode vector[32]; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int16_ { + int32_t hashCode; + int32_t next; + int32_t key; + int16_t value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int16___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int16___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int16_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_System_Int16___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int16___Array *_entries; @@ -848956,19 +860499,6 @@ struct Dictionary_2_System_Int32_System_Int16_ { struct Dictionary_2_System_Int32_System_Int16___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int16_ { - int32_t hashCode; - int32_t next; - int32_t key; - int16_t value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int16___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int16___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int16_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int16___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int16___Array__Class *klass; MonitorData *monitor; @@ -849391,6 +860921,19 @@ struct Texture2DAtlasDynamic { struct Texture2DAtlasDynamic__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Vector4_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct Vector4 value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Vector4___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Vector4___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Vector4_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_UnityEngine_Vector4___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Vector4___Array *_entries; @@ -849410,19 +860953,6 @@ struct Dictionary_2_System_Int32_UnityEngine_Vector4_ { struct Dictionary_2_System_Int32_UnityEngine_Vector4___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Vector4_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct Vector4 value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Vector4___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Vector4___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Vector4_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Vector4___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Vector4___Array__Class *klass; MonitorData *monitor; @@ -850287,21 +861817,6 @@ struct CoreUtils_c__Class { struct CoreUtils_c__VTable vtable; }; -struct __declspec(align(8)) HableCurve__Fields { - float _whitePoint_k__BackingField; - float _inverseWhitePoint_k__BackingField; - float _x0_k__BackingField; - float _x1_k__BackingField; - struct HableCurve_Segment__Array *segments; - struct HableCurve_Uniforms *uniforms; -}; - -struct HableCurve { - struct HableCurve__Class *klass; - MonitorData *monitor; - struct HableCurve__Fields fields; -}; - struct __declspec(align(8)) HableCurve_Segment__Fields { float offsetX; float offsetY; @@ -850317,6 +861832,21 @@ struct HableCurve_Segment { struct HableCurve_Segment__Fields fields; }; +struct __declspec(align(8)) HableCurve__Fields { + float _whitePoint_k__BackingField; + float _inverseWhitePoint_k__BackingField; + float _x0_k__BackingField; + float _x1_k__BackingField; + struct HableCurve_Segment__Array *segments; + struct HableCurve_Uniforms *uniforms; +}; + +struct HableCurve { + struct HableCurve__Class *klass; + MonitorData *monitor; + struct HableCurve__Fields fields; +}; + struct HableCurve_Segment__Array { struct HableCurve_Segment__Array__Class *klass; MonitorData *monitor; @@ -850573,6 +862103,21 @@ struct MeshGizmo_c_DisplayClass10_0__Class { struct MeshGizmo_c_DisplayClass10_0__VTable vtable; }; +struct MeshGizmo_c_DisplayClass10_0___VTable { +}; + +struct MeshGizmo_c_DisplayClass10_0___StaticFields { +}; + +struct MeshGizmo_c_DisplayClass10_0___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MeshGizmo_c_DisplayClass10_0___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MeshGizmo_c_DisplayClass10_0___VTable vtable; +}; + struct ReloadAttribute { struct ReloadAttribute__Class *klass; MonitorData *monitor; @@ -850874,19 +862419,6 @@ struct VolumeProfile { struct VolumeProfile__Fields fields; }; -struct __declspec(align(8)) List_1_UnityEngine_Rendering_VolumeComponent___Fields { - struct VolumeComponent__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_Rendering_VolumeComponent_ { - struct List_1_UnityEngine_Rendering_VolumeComponent___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_Rendering_VolumeComponent___Fields fields; -}; - struct VolumeComponent__Fields { struct ScriptableObject__Fields _; bool active; @@ -850900,6 +862432,19 @@ struct VolumeComponent { struct VolumeComponent__Fields fields; }; +struct __declspec(align(8)) List_1_UnityEngine_Rendering_VolumeComponent___Fields { + struct VolumeComponent__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_Rendering_VolumeComponent_ { + struct List_1_UnityEngine_Rendering_VolumeComponent___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_Rendering_VolumeComponent___Fields fields; +}; + struct __declspec(align(8)) ReadOnlyCollection_1_UnityEngine_Rendering_VolumeParameter___Fields { struct IList_1_UnityEngine_Rendering_VolumeParameter_ *list; struct Object *_syncRoot; @@ -851502,6 +863047,17 @@ struct Func_1_UnityEngine_Rendering_VolumeManager_ { struct Func_1_UnityEngine_Rendering_VolumeManager___Fields fields; }; +struct ValueTuple_2_UnityEngine_Rendering_VolumeParameter_UnityEngine_Rendering_VolumeParameter_ { + struct VolumeParameter *Item1; + struct VolumeParameter *Item2; +}; + +struct ValueTuple_2_UnityEngine_Rendering_VolumeParameter_UnityEngine_Rendering_VolumeParameter___Boxed { + struct ValueTuple_2_UnityEngine_Rendering_VolumeParameter_UnityEngine_Rendering_VolumeParameter___Class *klass; + MonitorData *monitor; + struct ValueTuple_2_UnityEngine_Rendering_VolumeParameter_UnityEngine_Rendering_VolumeParameter_ fields; +}; + struct __declspec(align(8)) VolumeStack__Fields { struct Dictionary_2_System_Type_UnityEngine_Rendering_VolumeComponent_ *components; struct ValueTuple_2_UnityEngine_Rendering_VolumeParameter_UnityEngine_Rendering_VolumeParameter___Array *defaultParameters; @@ -851514,6 +863070,19 @@ struct VolumeStack { struct VolumeStack__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Rendering_VolumeComponent_ { + int32_t hashCode; + int32_t next; + struct Type *key; + struct VolumeComponent *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Rendering_VolumeComponent___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Rendering_VolumeComponent___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Rendering_VolumeComponent_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Type_UnityEngine_Rendering_VolumeComponent___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Rendering_VolumeComponent___Array *_entries; @@ -851533,19 +863102,6 @@ struct Dictionary_2_System_Type_UnityEngine_Rendering_VolumeComponent_ { struct Dictionary_2_System_Type_UnityEngine_Rendering_VolumeComponent___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Rendering_VolumeComponent_ { - int32_t hashCode; - int32_t next; - struct Type *key; - struct VolumeComponent *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Rendering_VolumeComponent___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Rendering_VolumeComponent___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Rendering_VolumeComponent_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Rendering_VolumeComponent___Array { struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Rendering_VolumeComponent___Array__Class *klass; MonitorData *monitor; @@ -851608,17 +863164,6 @@ struct IEnumerable_1_UnityEngine_Rendering_VolumeComponent_ { MonitorData *monitor; }; -struct ValueTuple_2_UnityEngine_Rendering_VolumeParameter_UnityEngine_Rendering_VolumeParameter_ { - struct VolumeParameter *Item1; - struct VolumeParameter *Item2; -}; - -struct ValueTuple_2_UnityEngine_Rendering_VolumeParameter_UnityEngine_Rendering_VolumeParameter___Boxed { - struct ValueTuple_2_UnityEngine_Rendering_VolumeParameter_UnityEngine_Rendering_VolumeParameter___Class *klass; - MonitorData *monitor; - struct ValueTuple_2_UnityEngine_Rendering_VolumeParameter_UnityEngine_Rendering_VolumeParameter_ fields; -}; - struct ValueTuple_2_UnityEngine_Rendering_VolumeParameter_UnityEngine_Rendering_VolumeParameter___Array { struct ValueTuple_2_UnityEngine_Rendering_VolumeParameter_UnityEngine_Rendering_VolumeParameter___Array__Class *klass; MonitorData *monitor; @@ -851627,6 +863172,19 @@ struct ValueTuple_2_UnityEngine_Rendering_VolumeParameter_UnityEngine_Rendering_ struct ValueTuple_2_UnityEngine_Rendering_VolumeParameter_UnityEngine_Rendering_VolumeParameter_ vector[32]; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_UnityEngine_Rendering_Volume_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct List_1_UnityEngine_Rendering_Volume_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_UnityEngine_Rendering_Volume___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_UnityEngine_Rendering_Volume___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_UnityEngine_Rendering_Volume_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_List_1_UnityEngine_Rendering_Volume___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_UnityEngine_Rendering_Volume___Array *_entries; @@ -851646,19 +863204,6 @@ struct Dictionary_2_System_Int32_List_1_UnityEngine_Rendering_Volume_ { struct Dictionary_2_System_Int32_List_1_UnityEngine_Rendering_Volume___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_UnityEngine_Rendering_Volume_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct List_1_UnityEngine_Rendering_Volume_ *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_UnityEngine_Rendering_Volume___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_UnityEngine_Rendering_Volume___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_UnityEngine_Rendering_Volume_ fields; -}; - struct __declspec(align(8)) List_1_UnityEngine_Rendering_Volume___Fields { struct Volume__Array *_items; int32_t _size; @@ -851930,6 +863475,21 @@ struct ICollection_1_UnityEngine_Rendering_VolumeComponent___Class { struct ICollection_1_UnityEngine_Rendering_VolumeComponent___VTable vtable; }; +struct VolumeComponent___VTable { +}; + +struct VolumeComponent___StaticFields { +}; + +struct VolumeComponent___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct VolumeComponent___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct VolumeComponent___VTable vtable; +}; + struct KeyValuePair_2_System_Type_UnityEngine_Rendering_VolumeComponent___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -852353,6 +863913,21 @@ struct ICollection_1_List_1_UnityEngine_Rendering_Volume___Class { struct ICollection_1_List_1_UnityEngine_Rendering_Volume___VTable vtable; }; +struct List_1_UnityEngine_Rendering_Volume__1__VTable { +}; + +struct List_1_UnityEngine_Rendering_Volume__1__StaticFields { +}; + +struct List_1_UnityEngine_Rendering_Volume__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_Rendering_Volume__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_Rendering_Volume__1__VTable vtable; +}; + struct KeyValuePair_2_System_Int32_List_1_UnityEngine_Rendering_Volume___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -854838,19 +866413,6 @@ struct UIFoldout { struct UIFoldout__Fields fields; }; -struct __declspec(align(8)) List_1_UnityEngine_Rendering_UI_DebugUIHandlerIndirectToggle___Fields { - struct DebugUIHandlerIndirectToggle__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_Rendering_UI_DebugUIHandlerIndirectToggle_ { - struct List_1_UnityEngine_Rendering_UI_DebugUIHandlerIndirectToggle___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_Rendering_UI_DebugUIHandlerIndirectToggle___Fields fields; -}; - struct DebugUIHandlerIndirectToggle__Fields { struct DebugUIHandlerWidget__Fields _; struct Text *nameLabel; @@ -854867,6 +866429,19 @@ struct DebugUIHandlerIndirectToggle { struct DebugUIHandlerIndirectToggle__Fields fields; }; +struct __declspec(align(8)) List_1_UnityEngine_Rendering_UI_DebugUIHandlerIndirectToggle___Fields { + struct DebugUIHandlerIndirectToggle__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_Rendering_UI_DebugUIHandlerIndirectToggle_ { + struct List_1_UnityEngine_Rendering_UI_DebugUIHandlerIndirectToggle___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_Rendering_UI_DebugUIHandlerIndirectToggle___Fields fields; +}; + struct DebugUIHandlerIndirectToggle__Array { struct DebugUIHandlerIndirectToggle__Array__Class *klass; MonitorData *monitor; @@ -855154,6 +866729,21 @@ struct DebugUIHandlerButton__Class { struct DebugUIHandlerButton__VTable vtable; }; +struct DebugUIHandlerWidget___VTable { +}; + +struct DebugUIHandlerWidget___StaticFields { +}; + +struct DebugUIHandlerWidget___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DebugUIHandlerWidget___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DebugUIHandlerWidget___VTable vtable; +}; + struct DebugUIHandlerCanvas_c { struct DebugUIHandlerCanvas_c__Class *klass; MonitorData *monitor; @@ -857497,6 +869087,19 @@ struct DropDownListItem { struct DropDownListItem__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_GameObject_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct GameObject *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_GameObject___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_GameObject___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_GameObject_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_UnityEngine_GameObject___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_GameObject___Array *_entries; @@ -857516,19 +869119,6 @@ struct Dictionary_2_System_String_UnityEngine_GameObject_ { struct Dictionary_2_System_String_UnityEngine_GameObject___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_GameObject_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct GameObject *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_GameObject___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_GameObject___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_GameObject_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_GameObject___Array { struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_GameObject___Array__Class *klass; MonitorData *monitor; @@ -859126,19 +870716,6 @@ struct ReorderableListContent { struct ReorderableListContent__Fields fields; }; -struct __declspec(align(8)) List_1_UnityEngine_UI_Extensions_ReorderableListElement___Fields { - struct ReorderableListElement__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_UI_Extensions_ReorderableListElement_ { - struct List_1_UnityEngine_UI_Extensions_ReorderableListElement___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_UI_Extensions_ReorderableListElement___Fields fields; -}; - struct ReorderableListElement__Fields { struct MonoBehaviour__Fields _; bool IsGrabbable; @@ -859170,6 +870747,19 @@ struct ReorderableListElement { struct ReorderableListElement__Fields fields; }; +struct __declspec(align(8)) List_1_UnityEngine_UI_Extensions_ReorderableListElement___Fields { + struct ReorderableListElement__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_UI_Extensions_ReorderableListElement_ { + struct List_1_UnityEngine_UI_Extensions_ReorderableListElement___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_UI_Extensions_ReorderableListElement___Fields fields; +}; + struct ReorderableListElement__Array { struct ReorderableListElement__Array__Class *klass; MonitorData *monitor; @@ -859837,6 +871427,11 @@ struct ExampleSelectable__Class { struct ExampleSelectable__VTable vtable; }; +struct IBoxSelectable { + struct IBoxSelectable__Class *klass; + MonitorData *monitor; +}; + struct SelectionBox__Fields { struct MonoBehaviour__Fields _; struct Color color; @@ -859857,11 +871452,6 @@ struct SelectionBox { struct SelectionBox__Fields fields; }; -struct IBoxSelectable { - struct IBoxSelectable__Class *klass; - MonitorData *monitor; -}; - struct IBoxSelectable__Array { struct IBoxSelectable__Array__Class *klass; MonitorData *monitor; @@ -860191,6 +871781,19 @@ struct StepperSide__Class { struct StepperSide__VTable vtable; }; +struct TextPic_IconName { + struct String *name; + struct Sprite *sprite; + struct Vector2 offset; + struct Vector2 scale; +}; + +struct TextPic_IconName__Boxed { + struct TextPic_IconName__Class *klass; + MonitorData *monitor; + struct TextPic_IconName fields; +}; + struct TextPic__Fields { struct Text__Fields _; struct TextPic_IconName__Array *inspectorIconList; @@ -860235,19 +871838,6 @@ struct TextPic { struct TextPic__Fields fields; }; -struct TextPic_IconName { - struct String *name; - struct Sprite *sprite; - struct Vector2 offset; - struct Vector2 scale; -}; - -struct TextPic_IconName__Boxed { - struct TextPic_IconName__Class *klass; - MonitorData *monitor; - struct TextPic_IconName fields; -}; - struct TextPic_IconName__Array { struct TextPic_IconName__Array__Class *klass; MonitorData *monitor; @@ -860266,19 +871856,6 @@ struct TextPic_HrefClickEvent { struct TextPic_HrefClickEvent__Fields fields; }; -struct __declspec(align(8)) List_1_UnityEngine_UI_Extensions_TextPic_HrefInfo___Fields { - struct TextPic_HrefInfo__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_UI_Extensions_TextPic_HrefInfo_ { - struct List_1_UnityEngine_UI_Extensions_TextPic_HrefInfo___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_UI_Extensions_TextPic_HrefInfo___Fields fields; -}; - struct __declspec(align(8)) TextPic_HrefInfo__Fields { int32_t startIndex; int32_t endIndex; @@ -860292,6 +871869,19 @@ struct TextPic_HrefInfo { struct TextPic_HrefInfo__Fields fields; }; +struct __declspec(align(8)) List_1_UnityEngine_UI_Extensions_TextPic_HrefInfo___Fields { + struct TextPic_HrefInfo__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_UI_Extensions_TextPic_HrefInfo_ { + struct List_1_UnityEngine_UI_Extensions_TextPic_HrefInfo___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_UI_Extensions_TextPic_HrefInfo___Fields fields; +}; + struct TextPic_HrefInfo__Array { struct TextPic_HrefInfo__Array__Class *klass; MonitorData *monitor; @@ -860994,6 +872584,16 @@ struct CUIBezierCurve__Class { struct CUIBezierCurve__VTable vtable; }; +struct Vector3_Array2D { + struct Vector3__Array *array; +}; + +struct Vector3_Array2D__Boxed { + struct Vector3_Array2D__Class *klass; + MonitorData *monitor; + struct Vector3_Array2D fields; +}; + struct CUIGraphic__Fields { struct BaseMeshEffect_1__Fields _; bool isCurved; @@ -861021,16 +872621,6 @@ struct CUIBezierCurve__Array { struct CUIBezierCurve *vector[32]; }; -struct Vector3_Array2D { - struct Vector3__Array *array; -}; - -struct Vector3_Array2D__Boxed { - struct Vector3_Array2D__Class *klass; - MonitorData *monitor; - struct Vector3_Array2D fields; -}; - struct Vector3_Array2D__Array { struct Vector3_Array2D__Array__Class *klass; MonitorData *monitor; @@ -862345,6 +873935,32 @@ struct UIFlippable__Class { struct UIFlippable__VTable vtable; }; +struct ParticleSystem_Particle { + struct Vector3 m_Position; + struct Vector3 m_Velocity; + struct Vector3 m_AnimatedVelocity; + struct Vector3 m_InitialVelocity; + struct Vector3 m_AxisOfRotation; + struct Vector3 m_Rotation; + struct Vector3 m_AngularVelocity; + struct Vector3 m_StartSize; + struct Color32 m_StartColor; + uint32_t m_RandomSeed; + uint32_t m_ParentRandomSeed; + float m_Lifetime; + float m_StartLifetime; + int32_t m_MeshIndex; + float m_EmitAccumulator0; + float m_EmitAccumulator1; + uint32_t m_Flags; +}; + +struct ParticleSystem_Particle__Boxed { + struct ParticleSystem_Particle__Class *klass; + MonitorData *monitor; + struct ParticleSystem_Particle fields; +}; + struct ParticleSystem_TextureSheetAnimationModule { struct ParticleSystem *m_ParticleSystem; }; @@ -862390,32 +874006,6 @@ struct UIParticleSystem { struct UIParticleSystem__Fields fields; }; -struct ParticleSystem_Particle { - struct Vector3 m_Position; - struct Vector3 m_Velocity; - struct Vector3 m_AnimatedVelocity; - struct Vector3 m_InitialVelocity; - struct Vector3 m_AxisOfRotation; - struct Vector3 m_Rotation; - struct Vector3 m_AngularVelocity; - struct Vector3 m_StartSize; - struct Color32 m_StartColor; - uint32_t m_RandomSeed; - uint32_t m_ParentRandomSeed; - float m_Lifetime; - float m_StartLifetime; - int32_t m_MeshIndex; - float m_EmitAccumulator0; - float m_EmitAccumulator1; - uint32_t m_Flags; -}; - -struct ParticleSystem_Particle__Boxed { - struct ParticleSystem_Particle__Class *klass; - MonitorData *monitor; - struct ParticleSystem_Particle fields; -}; - struct ParticleSystem_Particle__Array { struct ParticleSystem_Particle__Array__Class *klass; MonitorData *monitor; @@ -863173,6 +874763,21 @@ struct ContentScrollSnapHorizontal__Class { struct ContentScrollSnapHorizontal__VTable vtable; }; +struct List_1_UnityEngine_Transform__1__VTable { +}; + +struct List_1_UnityEngine_Transform__1__StaticFields { +}; + +struct List_1_UnityEngine_Transform__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_Transform__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_Transform__1__VTable vtable; +}; + struct __declspec(align(8)) ContentScrollSnapHorizontal_SlideAndLerp_d_70__Fields { int32_t __1__state; struct Object *__2__current; @@ -867363,6 +878968,21 @@ struct TabNavigationHelper__Class { struct TabNavigationHelper__VTable vtable; }; +struct Selectable___VTable { +}; + +struct Selectable___StaticFields { +}; + +struct Selectable___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Selectable___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Selectable___VTable vtable; +}; + struct BoundTooltipItem__Fields { struct MonoBehaviour__Fields _; struct Text *TooltipText; @@ -868307,6 +879927,21 @@ struct ReadOnlyAttribute_1__Class { struct ReadOnlyAttribute_1__VTable vtable; }; +struct IBeginDragHandler { + struct IBeginDragHandler__Class *klass; + MonitorData *monitor; +}; + +struct IEndDragHandler { + struct IEndDragHandler__Class *klass; + MonitorData *monitor; +}; + +struct IDragHandler { + struct IDragHandler__Class *klass; + MonitorData *monitor; +}; + struct ScrollConflictManager__Fields { struct MonoBehaviour__Fields _; struct ScrollRect *ParentScrollRect; @@ -868325,11 +879960,6 @@ struct ScrollConflictManager { struct ScrollConflictManager__Fields fields; }; -struct IBeginDragHandler { - struct IBeginDragHandler__Class *klass; - MonitorData *monitor; -}; - struct IBeginDragHandler__Array { struct IBeginDragHandler__Array__Class *klass; MonitorData *monitor; @@ -868338,11 +879968,6 @@ struct IBeginDragHandler__Array { struct IBeginDragHandler *vector[32]; }; -struct IEndDragHandler { - struct IEndDragHandler__Class *klass; - MonitorData *monitor; -}; - struct IEndDragHandler__Array { struct IEndDragHandler__Array__Class *klass; MonitorData *monitor; @@ -868351,11 +879976,6 @@ struct IEndDragHandler__Array { struct IEndDragHandler *vector[32]; }; -struct IDragHandler { - struct IDragHandler__Class *klass; - MonitorData *monitor; -}; - struct IDragHandler__Array { struct IDragHandler__Array__Class *klass; MonitorData *monitor; @@ -870572,6 +882192,21 @@ struct HexColorField__Class { struct HexColorField__VTable vtable; }; +struct Color32___VTable { +}; + +struct Color32___StaticFields { +}; + +struct Color32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Color32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Color32___VTable vtable; +}; + struct HsvColor { double H; double S; @@ -871247,6 +882882,17 @@ struct BaseProximityTrigger_1_THandle_Grid_RoomChannel_ { struct BaseProximityTrigger_1_THandle_Grid_RoomChannel___Fields fields; }; +struct ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_ { + struct Vector3Int Item1; + struct RoomChannel Item2; +}; + +struct ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel___Boxed { + struct ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel___Class *klass; + MonitorData *monitor; + struct ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_ fields; +}; + struct __declspec(align(8)) List_1_System_ValueTuple_2__3__Fields { struct ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel___Array *_items; int32_t _size; @@ -871260,17 +882906,6 @@ struct List_1_System_ValueTuple_2__3 { struct List_1_System_ValueTuple_2__3__Fields fields; }; -struct ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_ { - struct Vector3Int Item1; - struct RoomChannel Item2; -}; - -struct ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel___Boxed { - struct ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel___Class *klass; - MonitorData *monitor; - struct ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel_ fields; -}; - struct ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel___Array { struct ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel___Array__Class *klass; MonitorData *monitor; @@ -871284,6 +882919,19 @@ struct IEnumerator_1_System_ValueTuple_2__9 { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Vector3Int_System_String_ { + int32_t hashCode; + int32_t next; + struct Vector3Int key; + struct String *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Vector3Int_System_String___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Vector3Int_System_String___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Vector3Int_System_String_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_Vector3Int_System_String___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Vector3Int_System_String___Array *_entries; @@ -871303,19 +882951,6 @@ struct Dictionary_2_UnityEngine_Vector3Int_System_String_ { struct Dictionary_2_UnityEngine_Vector3Int_System_String___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Vector3Int_System_String_ { - int32_t hashCode; - int32_t next; - struct Vector3Int key; - struct String *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Vector3Int_System_String___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Vector3Int_System_String___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Vector3Int_System_String_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Vector3Int_System_String___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Vector3Int_System_String___Array__Class *klass; MonitorData *monitor; @@ -871881,6 +883516,17 @@ struct BaseProximityTrigger_1_THandle_Grid_RoomMembership_ { struct BaseProximityTrigger_1_THandle_Grid_RoomMembership___Fields fields; }; +struct ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_ { + struct Vector3Int Item1; + struct RoomMembership Item2; +}; + +struct ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership___Boxed { + struct ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership___Class *klass; + MonitorData *monitor; + struct ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_ fields; +}; + struct __declspec(align(8)) List_1_System_ValueTuple_2__4__Fields { struct ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership___Array *_items; int32_t _size; @@ -871894,17 +883540,6 @@ struct List_1_System_ValueTuple_2__4 { struct List_1_System_ValueTuple_2__4__Fields fields; }; -struct ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_ { - struct Vector3Int Item1; - struct RoomMembership Item2; -}; - -struct ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership___Boxed { - struct ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership___Class *klass; - MonitorData *monitor; - struct ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership_ fields; -}; - struct ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership___Array { struct ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership___Array__Class *klass; MonitorData *monitor; @@ -872312,6 +883947,18 @@ struct ChannelBitField__Class { struct ChannelBitField__VTable vtable; }; +struct ClientInfo { + struct String *_PlayerName_k__BackingField; + uint16_t _PlayerId_k__BackingField; + struct CodecSettings _CodecSettings_k__BackingField; +}; + +struct ClientInfo__Boxed { + struct ClientInfo__Class *klass; + MonitorData *monitor; + struct ClientInfo fields; +}; + struct __declspec(align(8)) List_1_Dissonance_Networking_ClientInfo___Fields { struct ClientInfo__Array *_items; int32_t _size; @@ -872325,18 +883972,6 @@ struct List_1_Dissonance_Networking_ClientInfo_ { struct List_1_Dissonance_Networking_ClientInfo___Fields fields; }; -struct ClientInfo { - struct String *_PlayerName_k__BackingField; - uint16_t _PlayerId_k__BackingField; - struct CodecSettings _CodecSettings_k__BackingField; -}; - -struct ClientInfo__Boxed { - struct ClientInfo__Class *klass; - MonitorData *monitor; - struct ClientInfo fields; -}; - struct ClientInfo__Array { struct ClientInfo__Array__Class *klass; MonitorData *monitor; @@ -872635,6 +884270,49 @@ struct MessageTypes__Enum__Class { struct MessageTypes__Enum__VTable vtable; }; +struct MessageTypes___VTable { +}; + +struct MessageTypes___StaticFields { +}; + +struct MessageTypes___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MessageTypes___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MessageTypes___VTable vtable; +}; + +struct CodecSettings___VTable { +}; + +struct CodecSettings___StaticFields { +}; + +struct CodecSettings___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CodecSettings___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CodecSettings___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_System_UInt16_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct List_1_System_UInt16_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_System_UInt16___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_System_UInt16___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_System_UInt16_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_List_1_System_UInt16___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_System_UInt16___Array *_entries; @@ -872654,19 +884332,6 @@ struct Dictionary_2_System_String_List_1_System_UInt16_ { struct Dictionary_2_System_String_List_1_System_UInt16___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_System_UInt16_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct List_1_System_UInt16_ *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_System_UInt16___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_System_UInt16___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_System_UInt16_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_System_UInt16___Array { struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_System_UInt16___Array__Class *klass; MonitorData *monitor; @@ -872895,6 +884560,21 @@ struct ICollection_1_List_1_System_UInt16___Class { struct ICollection_1_List_1_System_UInt16___VTable vtable; }; +struct List_1_System_UInt16__1__VTable { +}; + +struct List_1_System_UInt16__1__StaticFields { +}; + +struct List_1_System_UInt16__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_System_UInt16__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_System_UInt16__1__VTable vtable; +}; + struct KeyValuePair_2_System_String_List_1_System_UInt16___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -873049,6 +884729,36 @@ struct VoicePacketOptions__Class { struct VoicePacketOptions__VTable vtable; }; +struct VoicePacketOptions___VTable { +}; + +struct VoicePacketOptions___StaticFields { +}; + +struct VoicePacketOptions___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct VoicePacketOptions___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct VoicePacketOptions___VTable vtable; +}; + +struct ChannelBitField___VTable { +}; + +struct ChannelBitField___StaticFields { +}; + +struct ChannelBitField___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ChannelBitField___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ChannelBitField___VTable vtable; +}; + struct TextPacket { uint16_t Sender; #if defined(_CPLUSPLUS_) @@ -873085,6 +884795,21 @@ struct TextPacket__Class { struct TextPacket__VTable vtable; }; +struct ArraySegment_1_Byte__1__VTable { +}; + +struct ArraySegment_1_Byte__1__StaticFields { +}; + +struct ArraySegment_1_Byte__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ArraySegment_1_Byte__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ArraySegment_1_Byte__1__VTable vtable; +}; + struct PacketWriter { struct ArraySegment_1_Byte_ _array; int32_t _count; @@ -873204,6 +884929,21 @@ struct PeerVoiceReceiver_ChannelsMetadata__Class { struct PeerVoiceReceiver_ChannelsMetadata__VTable vtable; }; +struct PeerVoiceReceiver_ChannelsMetadata___VTable { +}; + +struct PeerVoiceReceiver_ChannelsMetadata___StaticFields { +}; + +struct PeerVoiceReceiver_ChannelsMetadata___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PeerVoiceReceiver_ChannelsMetadata___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PeerVoiceReceiver_ChannelsMetadata___VTable vtable; +}; + struct ICollection_1_Dissonance_RemoteChannel___VTable { VirtualInvokeData get_Count; VirtualInvokeData get_IsReadOnly; @@ -874820,6 +886560,21 @@ struct Nullable_1_Dissonance_Networking_VoicePacket___Class { struct Nullable_1_Dissonance_Networking_VoicePacket___VTable vtable; }; +struct Nullable_1_Dissonance_Networking_VoicePacket__1__VTable { +}; + +struct Nullable_1_Dissonance_Networking_VoicePacket__1__StaticFields { +}; + +struct Nullable_1_Dissonance_Networking_VoicePacket__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Nullable_1_Dissonance_Networking_VoicePacket__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Nullable_1_Dissonance_Networking_VoicePacket__1__VTable vtable; +}; + struct EncodedAudioBuffer_VoicePacketComparer { struct EncodedAudioBuffer_VoicePacketComparer__Class *klass; MonitorData *monitor; @@ -877024,36 +888779,6 @@ struct ICinemachineCamera { MonitorData *monitor; }; -struct CinemachineBlendListCamera__Fields { - struct CinemachineVirtualCameraBase__Fields _; - struct Transform *m_LookAt; - struct Transform *m_Follow; - bool m_ShowDebugText; - bool m_Loop; - struct CinemachineVirtualCameraBase__Array *m_ChildCameras; - struct CinemachineBlendListCamera_Instruction__Array *m_Instructions; - struct ICinemachineCamera *_LiveChild_k__BackingField; - struct ICinemachineCamera *m_TransitioningFrom; - struct CameraState m_State; - float mActivationTime; - int32_t mCurrentInstruction; - struct CinemachineBlend *mActiveBlend; -}; - -struct CinemachineBlendListCamera { - struct CinemachineBlendListCamera__Class *klass; - MonitorData *monitor; - struct CinemachineBlendListCamera__Fields fields; -}; - -struct CinemachineVirtualCameraBase__Array { - struct CinemachineVirtualCameraBase__Array__Class *klass; - MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - struct CinemachineVirtualCameraBase *vector[32]; -}; - #if defined(_CPLUSPLUS_) enum class CinemachineBlendDefinition_Style__Enum : int32_t { Cut = 0x00000000, @@ -877117,6 +888842,36 @@ struct CinemachineBlendListCamera_Instruction__Boxed { struct CinemachineBlendListCamera_Instruction fields; }; +struct CinemachineBlendListCamera__Fields { + struct CinemachineVirtualCameraBase__Fields _; + struct Transform *m_LookAt; + struct Transform *m_Follow; + bool m_ShowDebugText; + bool m_Loop; + struct CinemachineVirtualCameraBase__Array *m_ChildCameras; + struct CinemachineBlendListCamera_Instruction__Array *m_Instructions; + struct ICinemachineCamera *_LiveChild_k__BackingField; + struct ICinemachineCamera *m_TransitioningFrom; + struct CameraState m_State; + float mActivationTime; + int32_t mCurrentInstruction; + struct CinemachineBlend *mActiveBlend; +}; + +struct CinemachineBlendListCamera { + struct CinemachineBlendListCamera__Class *klass; + MonitorData *monitor; + struct CinemachineBlendListCamera__Fields fields; +}; + +struct CinemachineVirtualCameraBase__Array { + struct CinemachineVirtualCameraBase__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct CinemachineVirtualCameraBase *vector[32]; +}; + struct AnimationCurve__Array { struct AnimationCurve__Array__Class *klass; MonitorData *monitor; @@ -877147,6 +888902,19 @@ struct CinemachineBlend { struct CinemachineBlend__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_Cinemachine_ICinemachineCamera_System_Object_ { + int32_t hashCode; + int32_t next; + struct ICinemachineCamera *key; + struct Object *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_Cinemachine_ICinemachineCamera_System_Object___Boxed { + struct Dictionary_2_TKey_TValue_Entry_Cinemachine_ICinemachineCamera_System_Object___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_Cinemachine_ICinemachineCamera_System_Object_ fields; +}; + struct __declspec(align(8)) Dictionary_2_Cinemachine_ICinemachineCamera_System_Object___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_Cinemachine_ICinemachineCamera_System_Object___Array *_entries; @@ -877166,19 +888934,6 @@ struct Dictionary_2_Cinemachine_ICinemachineCamera_System_Object_ { struct Dictionary_2_Cinemachine_ICinemachineCamera_System_Object___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_Cinemachine_ICinemachineCamera_System_Object_ { - int32_t hashCode; - int32_t next; - struct ICinemachineCamera *key; - struct Object *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_Cinemachine_ICinemachineCamera_System_Object___Boxed { - struct Dictionary_2_TKey_TValue_Entry_Cinemachine_ICinemachineCamera_System_Object___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_Cinemachine_ICinemachineCamera_System_Object_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_Cinemachine_ICinemachineCamera_System_Object___Array { struct Dictionary_2_TKey_TValue_Entry_Cinemachine_ICinemachineCamera_System_Object___Array__Class *klass; MonitorData *monitor; @@ -878266,6 +890021,21 @@ struct Dictionary_2_Cinemachine_ICinemachineCamera_System_Object___Class { struct Dictionary_2_Cinemachine_ICinemachineCamera_System_Object___VTable vtable; }; +struct CameraState___VTable { +}; + +struct CameraState___StaticFields { +}; + +struct CameraState___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CameraState___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CameraState___VTable vtable; +}; + struct CinemachineExtension__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -878520,17 +890290,6 @@ struct CinemachineBrain { struct CinemachineBrain__Fields fields; }; -struct CinemachineBlenderSettings__Fields { - struct ScriptableObject__Fields _; - struct CinemachineBlenderSettings_CustomBlend__Array *m_CustomBlends; -}; - -struct CinemachineBlenderSettings { - struct CinemachineBlenderSettings__Class *klass; - MonitorData *monitor; - struct CinemachineBlenderSettings__Fields fields; -}; - struct CinemachineBlenderSettings_CustomBlend { struct String *m_From; struct String *m_To; @@ -878543,6 +890302,17 @@ struct CinemachineBlenderSettings_CustomBlend__Boxed { struct CinemachineBlenderSettings_CustomBlend fields; }; +struct CinemachineBlenderSettings__Fields { + struct ScriptableObject__Fields _; + struct CinemachineBlenderSettings_CustomBlend__Array *m_CustomBlends; +}; + +struct CinemachineBlenderSettings { + struct CinemachineBlenderSettings__Class *klass; + MonitorData *monitor; + struct CinemachineBlenderSettings__Fields fields; +}; + struct CinemachineBlenderSettings_CustomBlend__Array { struct CinemachineBlenderSettings_CustomBlend__Array__Class *klass; MonitorData *monitor; @@ -878593,19 +890363,6 @@ struct CinemachineBrain_VcamActivatedEvent { struct CinemachineBrain_VcamActivatedEvent__Fields fields; }; -struct __declspec(align(8)) List_1_Cinemachine_CinemachineBrain_BrainFrame___Fields { - struct CinemachineBrain_BrainFrame__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Cinemachine_CinemachineBrain_BrainFrame_ { - struct List_1_Cinemachine_CinemachineBrain_BrainFrame___Class *klass; - MonitorData *monitor; - struct List_1_Cinemachine_CinemachineBrain_BrainFrame___Fields fields; -}; - struct __declspec(align(8)) CinemachineBrain_BrainFrame__Fields { int32_t id; struct CinemachineBlend *blend; @@ -878621,6 +890378,19 @@ struct CinemachineBrain_BrainFrame { struct CinemachineBrain_BrainFrame__Fields fields; }; +struct __declspec(align(8)) List_1_Cinemachine_CinemachineBrain_BrainFrame___Fields { + struct CinemachineBrain_BrainFrame__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Cinemachine_CinemachineBrain_BrainFrame_ { + struct List_1_Cinemachine_CinemachineBrain_BrainFrame___Class *klass; + MonitorData *monitor; + struct List_1_Cinemachine_CinemachineBrain_BrainFrame___Fields fields; +}; + struct __declspec(align(8)) BlendSourceVirtualCamera__Fields { struct CinemachineBlend *_Blend_k__BackingField; int32_t _Priority_k__BackingField; @@ -879383,6 +891153,21 @@ struct CinemachineCore_UpdateFilter__Enum__Class { struct CinemachineCore_UpdateFilter__Enum__VTable vtable; }; +struct CinemachineBlend___VTable { +}; + +struct CinemachineBlend___StaticFields { +}; + +struct CinemachineBlend___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CinemachineBlend___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CinemachineBlend___VTable vtable; +}; + struct __declspec(align(8)) CinemachineBrain_AfterPhysics_d_33__Fields { int32_t __1__state; struct Object *__2__current; @@ -879763,6 +891548,21 @@ struct CinemachineCollider_VcamExtraState__Class { struct CinemachineCollider_VcamExtraState__VTable vtable; }; +struct CinemachineCollider_VcamExtraState___VTable { +}; + +struct CinemachineCollider_VcamExtraState___StaticFields { +}; + +struct CinemachineCollider_VcamExtraState___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CinemachineCollider_VcamExtraState___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CinemachineCollider_VcamExtraState___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class CinemachineConfiner_Mode__Enum : int32_t { Confine2D = 0x00000000, @@ -880135,17 +891935,15 @@ struct ConfinerOven { struct ConfinerOven__Fields fields; }; -struct __declspec(align(8)) List_1_List_1_Cinemachine_ClipperLib_IntPoint___Fields { - struct List_1_Cinemachine_ClipperLib_IntPoint___Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; +struct ClipperLib_IntPoint { + int64_t X; + int64_t Y; }; -struct List_1_List_1_Cinemachine_ClipperLib_IntPoint_ { - struct List_1_List_1_Cinemachine_ClipperLib_IntPoint___Class *klass; +struct ClipperLib_IntPoint__Boxed { + struct ClipperLib_IntPoint__Class *klass; MonitorData *monitor; - struct List_1_List_1_Cinemachine_ClipperLib_IntPoint___Fields fields; + struct ClipperLib_IntPoint fields; }; struct __declspec(align(8)) List_1_Cinemachine_ClipperLib_IntPoint___Fields { @@ -880161,15 +891959,17 @@ struct List_1_Cinemachine_ClipperLib_IntPoint_ { struct List_1_Cinemachine_ClipperLib_IntPoint___Fields fields; }; -struct ClipperLib_IntPoint { - int64_t X; - int64_t Y; +struct __declspec(align(8)) List_1_List_1_Cinemachine_ClipperLib_IntPoint___Fields { + struct List_1_Cinemachine_ClipperLib_IntPoint___Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; }; -struct ClipperLib_IntPoint__Boxed { - struct ClipperLib_IntPoint__Class *klass; +struct List_1_List_1_Cinemachine_ClipperLib_IntPoint_ { + struct List_1_List_1_Cinemachine_ClipperLib_IntPoint___Class *klass; MonitorData *monitor; - struct ClipperLib_IntPoint fields; + struct List_1_List_1_Cinemachine_ClipperLib_IntPoint___Fields fields; }; struct ClipperLib_IntPoint__Array { @@ -880221,6 +892021,17 @@ struct ClipperLib_ClipperOffset { struct ClipperLib_ClipperOffset__Fields fields; }; +struct ClipperLib_DoublePoint { + double X; + double Y; +}; + +struct ClipperLib_DoublePoint__Boxed { + struct ClipperLib_DoublePoint__Class *klass; + MonitorData *monitor; + struct ClipperLib_DoublePoint fields; +}; + struct __declspec(align(8)) List_1_Cinemachine_ClipperLib_DoublePoint___Fields { struct ClipperLib_DoublePoint__Array *_items; int32_t _size; @@ -880234,17 +892045,6 @@ struct List_1_Cinemachine_ClipperLib_DoublePoint_ { struct List_1_Cinemachine_ClipperLib_DoublePoint___Fields fields; }; -struct ClipperLib_DoublePoint { - double X; - double Y; -}; - -struct ClipperLib_DoublePoint__Boxed { - struct ClipperLib_DoublePoint__Class *klass; - MonitorData *monitor; - struct ClipperLib_DoublePoint fields; -}; - struct ClipperLib_DoublePoint__Array { struct ClipperLib_DoublePoint__Array__Class *klass; MonitorData *monitor; @@ -881180,6 +892980,21 @@ struct CinemachineConfiner2D_VcamExtraState__Class { struct CinemachineConfiner2D_VcamExtraState__VTable vtable; }; +struct Collider2D___VTable { +}; + +struct Collider2D___StaticFields { +}; + +struct Collider2D___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Collider2D___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Collider2D___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class CinemachineDollyCart_UpdateMethod__Enum : int32_t { Update = 0x00000000, @@ -881283,18 +893098,6 @@ struct CinemachinePathBase_Appearance { struct CinemachinePathBase_Appearance__Fields fields; }; -struct CinemachinePath__Fields { - struct CinemachinePathBase__Fields _; - bool m_Looped; - struct CinemachinePath_Waypoint__Array *m_Waypoints; -}; - -struct CinemachinePath { - struct CinemachinePath__Class *klass; - MonitorData *monitor; - struct CinemachinePath__Fields fields; -}; - struct CinemachinePath_Waypoint { struct Vector3 position; struct Vector3 tangent; @@ -881307,6 +893110,18 @@ struct CinemachinePath_Waypoint__Boxed { struct CinemachinePath_Waypoint fields; }; +struct CinemachinePath__Fields { + struct CinemachinePathBase__Fields _; + bool m_Looped; + struct CinemachinePath_Waypoint__Array *m_Waypoints; +}; + +struct CinemachinePath { + struct CinemachinePath__Class *klass; + MonitorData *monitor; + struct CinemachinePath__Fields fields; +}; + struct CinemachinePath_Waypoint__Array { struct CinemachinePath_Waypoint__Array__Class *klass; MonitorData *monitor; @@ -881905,58 +893720,6 @@ struct CinemachineTransposer_BindingMode__Enum__Boxed { #endif }; -struct CinemachineFreeLook__Fields { - struct CinemachineVirtualCameraBase__Fields _; - struct Transform *m_LookAt; - struct Transform *m_Follow; - bool m_CommonLens; - struct LensSettings m_Lens; - struct CinemachineVirtualCameraBase_TransitionParams m_Transitions; - #if defined(_CPLUSPLUS_) - CinemachineVirtualCameraBase_BlendHint__Enum m_LegacyBlendHint; - #else - int32_t m_LegacyBlendHint; - #endif - struct AxisState m_YAxis; - struct AxisState_Recentering m_YAxisRecentering; - struct AxisState m_XAxis; - struct CinemachineOrbitalTransposer_Heading m_Heading; - struct AxisState_Recentering m_RecenterToTargetHeading; - #if defined(_CPLUSPLUS_) - CinemachineTransposer_BindingMode__Enum m_BindingMode; - #else - int32_t m_BindingMode; - #endif - float m_SplineCurvature; - struct CinemachineFreeLook_Orbit__Array *m_Orbits; - float m_LegacyHeadingBias; - bool mUseLegacyRigDefinitions; - bool mIsDestroyed; - struct CameraState m_State; - struct CinemachineVirtualCamera__Array *m_Rigs; - struct CinemachineOrbitalTransposer__Array *mOrbitals; - struct CinemachineBlend *mBlendA; - struct CinemachineBlend *mBlendB; - float m_CachedXAxisHeading; - float m_LastHeadingUpdateFrame; - struct CinemachineFreeLook_Orbit__Array *m_CachedOrbits; - float m_CachedTension; - struct Vector4__Array *m_CachedKnots; - struct Vector4__Array *m_CachedCtrl1; - struct Vector4__Array *m_CachedCtrl2; -}; - -struct CinemachineFreeLook { - struct CinemachineFreeLook__Class *klass; - MonitorData *monitor; - struct CinemachineFreeLook__Fields fields; -}; - -struct AxisState_IInputAxisProvider { - struct AxisState_IInputAxisProvider__Class *klass; - MonitorData *monitor; -}; - struct CinemachineFreeLook_Orbit { float m_Height; float m_Radius; @@ -881968,12 +893731,15 @@ struct CinemachineFreeLook_Orbit__Boxed { struct CinemachineFreeLook_Orbit fields; }; -struct CinemachineFreeLook_Orbit__Array { - struct CinemachineFreeLook_Orbit__Array__Class *klass; +struct CinemachineComponentBase__Fields { + struct MonoBehaviour__Fields _; + struct CinemachineVirtualCameraBase *m_vcamOwner; +}; + +struct CinemachineComponentBase { + struct CinemachineComponentBase__Class *klass; MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - struct CinemachineFreeLook_Orbit vector[32]; + struct CinemachineComponentBase__Fields fields; }; struct CinemachineVirtualCamera__Fields { @@ -882001,76 +893767,6 @@ struct CinemachineVirtualCamera { struct CinemachineVirtualCamera__Fields fields; }; -struct CinemachineVirtualCamera_CreatePipelineDelegate__Fields { - struct MulticastDelegate__Fields _; -}; - -struct CinemachineVirtualCamera_CreatePipelineDelegate { - struct CinemachineVirtualCamera_CreatePipelineDelegate__Class *klass; - MonitorData *monitor; - struct CinemachineVirtualCamera_CreatePipelineDelegate__Fields fields; -}; - -struct CinemachineComponentBase__Fields { - struct MonoBehaviour__Fields _; - struct CinemachineVirtualCameraBase *m_vcamOwner; -}; - -struct CinemachineComponentBase { - struct CinemachineComponentBase__Class *klass; - MonitorData *monitor; - struct CinemachineComponentBase__Fields fields; -}; - -struct Cinemachine3rdPersonFollow__Fields { - struct CinemachineComponentBase__Fields _; - struct Vector3 Damping; - struct Vector3 ShoulderOffset; - float VerticalArmLength; - float CameraSide; - float CameraDistance; - struct LayerMask CameraCollisionFilter; - struct String *IgnoreTag; - float CameraRadius; - float DampingIntoCollision; - float DampingFromCollision; - struct Vector3 m_PreviousFollowTargetPosition; - struct Vector3 m_DampingCorrection; - float m_CamPosCollisionCorrection; -}; - -struct Cinemachine3rdPersonFollow { - struct Cinemachine3rdPersonFollow__Class *klass; - MonitorData *monitor; - struct Cinemachine3rdPersonFollow__Fields fields; -}; - -struct CinemachineComponentBase__Array { - struct CinemachineComponentBase__Array__Class *klass; - MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - struct CinemachineComponentBase *vector[32]; -}; - -struct CinemachineVirtualCamera_DestroyPipelineDelegate__Fields { - struct MulticastDelegate__Fields _; -}; - -struct CinemachineVirtualCamera_DestroyPipelineDelegate { - struct CinemachineVirtualCamera_DestroyPipelineDelegate__Class *klass; - MonitorData *monitor; - struct CinemachineVirtualCamera_DestroyPipelineDelegate__Fields fields; -}; - -struct CinemachineVirtualCamera__Array { - struct CinemachineVirtualCamera__Array__Class *klass; - MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - struct CinemachineVirtualCamera *vector[32]; -}; - #if defined(_CPLUSPLUS_) enum class CinemachineTransposer_AngularDampingMode__Enum : int32_t { Euler = 0x00000000, @@ -882152,6 +893848,125 @@ struct CinemachineOrbitalTransposer { struct CinemachineOrbitalTransposer__Fields fields; }; +struct CinemachineFreeLook__Fields { + struct CinemachineVirtualCameraBase__Fields _; + struct Transform *m_LookAt; + struct Transform *m_Follow; + bool m_CommonLens; + struct LensSettings m_Lens; + struct CinemachineVirtualCameraBase_TransitionParams m_Transitions; + #if defined(_CPLUSPLUS_) + CinemachineVirtualCameraBase_BlendHint__Enum m_LegacyBlendHint; + #else + int32_t m_LegacyBlendHint; + #endif + struct AxisState m_YAxis; + struct AxisState_Recentering m_YAxisRecentering; + struct AxisState m_XAxis; + struct CinemachineOrbitalTransposer_Heading m_Heading; + struct AxisState_Recentering m_RecenterToTargetHeading; + #if defined(_CPLUSPLUS_) + CinemachineTransposer_BindingMode__Enum m_BindingMode; + #else + int32_t m_BindingMode; + #endif + float m_SplineCurvature; + struct CinemachineFreeLook_Orbit__Array *m_Orbits; + float m_LegacyHeadingBias; + bool mUseLegacyRigDefinitions; + bool mIsDestroyed; + struct CameraState m_State; + struct CinemachineVirtualCamera__Array *m_Rigs; + struct CinemachineOrbitalTransposer__Array *mOrbitals; + struct CinemachineBlend *mBlendA; + struct CinemachineBlend *mBlendB; + float m_CachedXAxisHeading; + float m_LastHeadingUpdateFrame; + struct CinemachineFreeLook_Orbit__Array *m_CachedOrbits; + float m_CachedTension; + struct Vector4__Array *m_CachedKnots; + struct Vector4__Array *m_CachedCtrl1; + struct Vector4__Array *m_CachedCtrl2; +}; + +struct CinemachineFreeLook { + struct CinemachineFreeLook__Class *klass; + MonitorData *monitor; + struct CinemachineFreeLook__Fields fields; +}; + +struct AxisState_IInputAxisProvider { + struct AxisState_IInputAxisProvider__Class *klass; + MonitorData *monitor; +}; + +struct CinemachineFreeLook_Orbit__Array { + struct CinemachineFreeLook_Orbit__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct CinemachineFreeLook_Orbit vector[32]; +}; + +struct CinemachineVirtualCamera_CreatePipelineDelegate__Fields { + struct MulticastDelegate__Fields _; +}; + +struct CinemachineVirtualCamera_CreatePipelineDelegate { + struct CinemachineVirtualCamera_CreatePipelineDelegate__Class *klass; + MonitorData *monitor; + struct CinemachineVirtualCamera_CreatePipelineDelegate__Fields fields; +}; + +struct Cinemachine3rdPersonFollow__Fields { + struct CinemachineComponentBase__Fields _; + struct Vector3 Damping; + struct Vector3 ShoulderOffset; + float VerticalArmLength; + float CameraSide; + float CameraDistance; + struct LayerMask CameraCollisionFilter; + struct String *IgnoreTag; + float CameraRadius; + float DampingIntoCollision; + float DampingFromCollision; + struct Vector3 m_PreviousFollowTargetPosition; + struct Vector3 m_DampingCorrection; + float m_CamPosCollisionCorrection; +}; + +struct Cinemachine3rdPersonFollow { + struct Cinemachine3rdPersonFollow__Class *klass; + MonitorData *monitor; + struct Cinemachine3rdPersonFollow__Fields fields; +}; + +struct CinemachineComponentBase__Array { + struct CinemachineComponentBase__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct CinemachineComponentBase *vector[32]; +}; + +struct CinemachineVirtualCamera_DestroyPipelineDelegate__Fields { + struct MulticastDelegate__Fields _; +}; + +struct CinemachineVirtualCamera_DestroyPipelineDelegate { + struct CinemachineVirtualCamera_DestroyPipelineDelegate__Class *klass; + MonitorData *monitor; + struct CinemachineVirtualCamera_DestroyPipelineDelegate__Fields fields; +}; + +struct CinemachineVirtualCamera__Array { + struct CinemachineVirtualCamera__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct CinemachineVirtualCamera *vector[32]; +}; + struct CinemachineOrbitalTransposer_UpdateHeadingDelegate__Fields { struct MulticastDelegate__Fields _; }; @@ -882162,6 +893977,18 @@ struct CinemachineOrbitalTransposer_UpdateHeadingDelegate { struct CinemachineOrbitalTransposer_UpdateHeadingDelegate__Fields fields; }; +struct HeadingTracker_Item { + struct Vector3 velocity; + float weight; + float time; +}; + +struct HeadingTracker_Item__Boxed { + struct HeadingTracker_Item__Class *klass; + MonitorData *monitor; + struct HeadingTracker_Item fields; +}; + struct __declspec(align(8)) HeadingTracker__Fields { struct HeadingTracker_Item__Array *mHistory; int32_t mTop; @@ -882179,18 +894006,6 @@ struct HeadingTracker { struct HeadingTracker__Fields fields; }; -struct HeadingTracker_Item { - struct Vector3 velocity; - float weight; - float time; -}; - -struct HeadingTracker_Item__Boxed { - struct HeadingTracker_Item__Class *klass; - MonitorData *monitor; - struct HeadingTracker_Item fields; -}; - struct HeadingTracker_Item__Array { struct HeadingTracker_Item__Array__Class *klass; MonitorData *monitor; @@ -882467,6 +894282,21 @@ struct CinemachineFreeLook_Orbit__Array__Class { struct CinemachineFreeLook_Orbit__Array__VTable vtable; }; +struct CinemachineVirtualCameraBase_TransitionParams___VTable { +}; + +struct CinemachineVirtualCameraBase_TransitionParams___StaticFields { +}; + +struct CinemachineVirtualCameraBase_TransitionParams___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CinemachineVirtualCameraBase_TransitionParams___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CinemachineVirtualCameraBase_TransitionParams___VTable vtable; +}; + struct Cinemachine3rdPersonFollow__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -883035,6 +894865,19 @@ struct CinemachineMixingCamera { struct CinemachineMixingCamera__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_Cinemachine_CinemachineVirtualCameraBase_System_Int32_ { + int32_t hashCode; + int32_t next; + struct CinemachineVirtualCameraBase *key; + int32_t value; +}; + +struct Dictionary_2_TKey_TValue_Entry_Cinemachine_CinemachineVirtualCameraBase_System_Int32___Boxed { + struct Dictionary_2_TKey_TValue_Entry_Cinemachine_CinemachineVirtualCameraBase_System_Int32___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_Cinemachine_CinemachineVirtualCameraBase_System_Int32_ fields; +}; + struct __declspec(align(8)) Dictionary_2_Cinemachine_CinemachineVirtualCameraBase_System_Int32___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_Cinemachine_CinemachineVirtualCameraBase_System_Int32___Array *_entries; @@ -883054,19 +894897,6 @@ struct Dictionary_2_Cinemachine_CinemachineVirtualCameraBase_System_Int32_ { struct Dictionary_2_Cinemachine_CinemachineVirtualCameraBase_System_Int32___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_Cinemachine_CinemachineVirtualCameraBase_System_Int32_ { - int32_t hashCode; - int32_t next; - struct CinemachineVirtualCameraBase *key; - int32_t value; -}; - -struct Dictionary_2_TKey_TValue_Entry_Cinemachine_CinemachineVirtualCameraBase_System_Int32___Boxed { - struct Dictionary_2_TKey_TValue_Entry_Cinemachine_CinemachineVirtualCameraBase_System_Int32___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_Cinemachine_CinemachineVirtualCameraBase_System_Int32_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_Cinemachine_CinemachineVirtualCameraBase_System_Int32___Array { struct Dictionary_2_TKey_TValue_Entry_Cinemachine_CinemachineVirtualCameraBase_System_Int32___Array__Class *klass; MonitorData *monitor; @@ -883541,6 +895371,17 @@ struct CinemachinePixelPerfect__Class { struct CinemachinePixelPerfect__VTable vtable; }; +struct CinemachineSmoothPath_Waypoint { + struct Vector3 position; + float roll; +}; + +struct CinemachineSmoothPath_Waypoint__Boxed { + struct CinemachineSmoothPath_Waypoint__Class *klass; + MonitorData *monitor; + struct CinemachineSmoothPath_Waypoint fields; +}; + struct CinemachineSmoothPath__Fields { struct CinemachinePathBase__Fields _; bool m_Looped; @@ -883556,17 +895397,6 @@ struct CinemachineSmoothPath { struct CinemachineSmoothPath__Fields fields; }; -struct CinemachineSmoothPath_Waypoint { - struct Vector3 position; - float roll; -}; - -struct CinemachineSmoothPath_Waypoint__Boxed { - struct CinemachineSmoothPath_Waypoint__Class *klass; - MonitorData *monitor; - struct CinemachineSmoothPath_Waypoint fields; -}; - struct CinemachineSmoothPath_Waypoint__Array { struct CinemachineSmoothPath_Waypoint__Array__Class *klass; MonitorData *monitor; @@ -883652,6 +895482,17 @@ struct CinemachineStateDrivenCamera_Instruction__Boxed { struct CinemachineStateDrivenCamera_Instruction fields; }; +struct CinemachineStateDrivenCamera_ParentHash { + int32_t m_Hash; + int32_t m_ParentHash; +}; + +struct CinemachineStateDrivenCamera_ParentHash__Boxed { + struct CinemachineStateDrivenCamera_ParentHash__Class *klass; + MonitorData *monitor; + struct CinemachineStateDrivenCamera_ParentHash fields; +}; + struct CinemachineStateDrivenCamera__Fields { struct CinemachineVirtualCameraBase__Fields _; struct Transform *m_LookAt; @@ -883692,17 +895533,6 @@ struct CinemachineStateDrivenCamera_Instruction__Array { struct CinemachineStateDrivenCamera_Instruction vector[32]; }; -struct CinemachineStateDrivenCamera_ParentHash { - int32_t m_Hash; - int32_t m_ParentHash; -}; - -struct CinemachineStateDrivenCamera_ParentHash__Boxed { - struct CinemachineStateDrivenCamera_ParentHash__Class *klass; - MonitorData *monitor; - struct CinemachineStateDrivenCamera_ParentHash fields; -}; - struct CinemachineStateDrivenCamera_ParentHash__Array { struct CinemachineStateDrivenCamera_ParentHash__Array__Class *klass; MonitorData *monitor; @@ -883711,6 +895541,19 @@ struct CinemachineStateDrivenCamera_ParentHash__Array { struct CinemachineStateDrivenCamera_ParentHash vector[32]; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_AnimationClip_List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair_ { + int32_t hashCode; + int32_t next; + struct AnimationClip *key; + struct List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_AnimationClip_List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_AnimationClip_List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_AnimationClip_List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_AnimationClip_List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_AnimationClip_List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair___Array *_entries; @@ -883730,17 +895573,15 @@ struct Dictionary_2_UnityEngine_AnimationClip_List_1_Cinemachine_CinemachineStat struct Dictionary_2_UnityEngine_AnimationClip_List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_AnimationClip_List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair_ { - int32_t hashCode; - int32_t next; - struct AnimationClip *key; - struct List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair_ *value; +struct CinemachineStateDrivenCamera_HashPair { + int32_t parentHash; + int32_t hash; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_AnimationClip_List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_AnimationClip_List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair___Class *klass; +struct CinemachineStateDrivenCamera_HashPair__Boxed { + struct CinemachineStateDrivenCamera_HashPair__Class *klass; MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_AnimationClip_List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair_ fields; + struct CinemachineStateDrivenCamera_HashPair fields; }; struct __declspec(align(8)) List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair___Fields { @@ -883756,17 +895597,6 @@ struct List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair_ { struct List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair___Fields fields; }; -struct CinemachineStateDrivenCamera_HashPair { - int32_t parentHash; - int32_t hash; -}; - -struct CinemachineStateDrivenCamera_HashPair__Boxed { - struct CinemachineStateDrivenCamera_HashPair__Class *klass; - MonitorData *monitor; - struct CinemachineStateDrivenCamera_HashPair fields; -}; - struct CinemachineStateDrivenCamera_HashPair__Array { struct CinemachineStateDrivenCamera_HashPair__Array__Class *klass; MonitorData *monitor; @@ -883883,6 +895713,17 @@ struct IEnumerable_1_List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair_ { MonitorData *monitor; }; +struct AnimatorClipInfo { + int32_t m_ClipInstanceID; + float m_Weight; +}; + +struct AnimatorClipInfo__Boxed { + struct AnimatorClipInfo__Class *klass; + MonitorData *monitor; + struct AnimatorClipInfo fields; +}; + struct __declspec(align(8)) List_1_UnityEngine_AnimatorClipInfo___Fields { struct AnimatorClipInfo__Array *_items; int32_t _size; @@ -883896,17 +895737,6 @@ struct List_1_UnityEngine_AnimatorClipInfo_ { struct List_1_UnityEngine_AnimatorClipInfo___Fields fields; }; -struct AnimatorClipInfo { - int32_t m_ClipInstanceID; - float m_Weight; -}; - -struct AnimatorClipInfo__Boxed { - struct AnimatorClipInfo__Class *klass; - MonitorData *monitor; - struct AnimatorClipInfo fields; -}; - struct AnimatorClipInfo__Array { struct AnimatorClipInfo__Array__Class *klass; MonitorData *monitor; @@ -884312,6 +896142,21 @@ struct ICollection_1_List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair___ struct ICollection_1_List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair___VTable vtable; }; +struct List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair__1__VTable { +}; + +struct List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair__1__StaticFields { +}; + +struct List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair__1__VTable vtable; +}; + struct KeyValuePair_2_UnityEngine_AnimationClip_List_1_Cinemachine_CinemachineStateDrivenCamera_HashPair___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -884698,19 +896543,6 @@ struct CinemachineStoryboard { struct CinemachineStoryboard__Fields fields; }; -struct __declspec(align(8)) List_1_Cinemachine_CinemachineStoryboard_CanvasInfo___Fields { - struct CinemachineStoryboard_CanvasInfo__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Cinemachine_CinemachineStoryboard_CanvasInfo_ { - struct List_1_Cinemachine_CinemachineStoryboard_CanvasInfo___Class *klass; - MonitorData *monitor; - struct List_1_Cinemachine_CinemachineStoryboard_CanvasInfo___Fields fields; -}; - struct __declspec(align(8)) CinemachineStoryboard_CanvasInfo__Fields { struct GameObject *mCanvas; struct Canvas *mCanvasComponent; @@ -884725,6 +896557,19 @@ struct CinemachineStoryboard_CanvasInfo { struct CinemachineStoryboard_CanvasInfo__Fields fields; }; +struct __declspec(align(8)) List_1_Cinemachine_CinemachineStoryboard_CanvasInfo___Fields { + struct CinemachineStoryboard_CanvasInfo__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Cinemachine_CinemachineStoryboard_CanvasInfo_ { + struct List_1_Cinemachine_CinemachineStoryboard_CanvasInfo___Class *klass; + MonitorData *monitor; + struct List_1_Cinemachine_CinemachineStoryboard_CanvasInfo___Fields fields; +}; + struct CinemachineStoryboard_CanvasInfo__Array { struct CinemachineStoryboard_CanvasInfo__Array__Class *klass; MonitorData *monitor; @@ -885017,6 +896862,18 @@ struct CinemachineTargetGroup_UpdateMethod__Enum__Boxed { #endif }; +struct CinemachineTargetGroup_Target { + struct Transform *target; + float weight; + float radius; +}; + +struct CinemachineTargetGroup_Target__Boxed { + struct CinemachineTargetGroup_Target__Class *klass; + MonitorData *monitor; + struct CinemachineTargetGroup_Target fields; +}; + struct CinemachineTargetGroup__Fields { struct MonoBehaviour__Fields _; #if defined(_CPLUSPLUS_) @@ -885047,18 +896904,6 @@ struct CinemachineTargetGroup { struct CinemachineTargetGroup__Fields fields; }; -struct CinemachineTargetGroup_Target { - struct Transform *target; - float weight; - float radius; -}; - -struct CinemachineTargetGroup_Target__Boxed { - struct CinemachineTargetGroup_Target__Class *klass; - MonitorData *monitor; - struct CinemachineTargetGroup_Target fields; -}; - struct CinemachineTargetGroup_Target__Array { struct CinemachineTargetGroup_Target__Array__Class *klass; MonitorData *monitor; @@ -885372,18 +897217,6 @@ struct SignalSourceAsset { struct SignalSourceAsset__Fields fields; }; -struct NoiseSettings__Fields { - struct SignalSourceAsset__Fields _; - struct NoiseSettings_TransformNoiseParams__Array *PositionNoise; - struct NoiseSettings_TransformNoiseParams__Array *OrientationNoise; -}; - -struct NoiseSettings { - struct NoiseSettings__Class *klass; - MonitorData *monitor; - struct NoiseSettings__Fields fields; -}; - struct NoiseSettings_NoiseParams { float Frequency; float Amplitude; @@ -885408,6 +897241,18 @@ struct NoiseSettings_TransformNoiseParams__Boxed { struct NoiseSettings_TransformNoiseParams fields; }; +struct NoiseSettings__Fields { + struct SignalSourceAsset__Fields _; + struct NoiseSettings_TransformNoiseParams__Array *PositionNoise; + struct NoiseSettings_TransformNoiseParams__Array *OrientationNoise; +}; + +struct NoiseSettings { + struct NoiseSettings__Class *klass; + MonitorData *monitor; + struct NoiseSettings__Fields fields; +}; + struct NoiseSettings_TransformNoiseParams__Array { struct NoiseSettings_TransformNoiseParams__Array__Class *klass; MonitorData *monitor; @@ -886159,6 +898004,36 @@ struct CinemachineHardLookAt__Class { struct CinemachineHardLookAt__VTable vtable; }; +struct AxisState___VTable { +}; + +struct AxisState___StaticFields { +}; + +struct AxisState___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct AxisState___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct AxisState___VTable vtable; +}; + +struct AxisState_Recentering___VTable { +}; + +struct AxisState_Recentering___StaticFields { +}; + +struct AxisState_Recentering___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct AxisState_Recentering___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct AxisState_Recentering___VTable vtable; +}; + struct CinemachineOrbitalTransposer_c { struct CinemachineOrbitalTransposer_c__Class *klass; MonitorData *monitor; @@ -886655,6 +898530,19 @@ struct IEnumerator_1_List_1_Cinemachine_CinemachineVirtualCameraBase_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_Cinemachine_CinemachineVirtualCameraBase_Cinemachine_CinemachineCore_UpdateStatus_ { + int32_t hashCode; + int32_t next; + struct CinemachineVirtualCameraBase *key; + struct CinemachineCore_UpdateStatus *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_Cinemachine_CinemachineVirtualCameraBase_Cinemachine_CinemachineCore_UpdateStatus___Boxed { + struct Dictionary_2_TKey_TValue_Entry_Cinemachine_CinemachineVirtualCameraBase_Cinemachine_CinemachineCore_UpdateStatus___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_Cinemachine_CinemachineVirtualCameraBase_Cinemachine_CinemachineCore_UpdateStatus_ fields; +}; + struct __declspec(align(8)) Dictionary_2_Cinemachine_CinemachineVirtualCameraBase_Cinemachine_CinemachineCore_UpdateStatus___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_Cinemachine_CinemachineVirtualCameraBase_Cinemachine_CinemachineCore_UpdateStatus___Array *_entries; @@ -886674,19 +898562,6 @@ struct Dictionary_2_Cinemachine_CinemachineVirtualCameraBase_Cinemachine_Cinemac struct Dictionary_2_Cinemachine_CinemachineVirtualCameraBase_Cinemachine_CinemachineCore_UpdateStatus___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_Cinemachine_CinemachineVirtualCameraBase_Cinemachine_CinemachineCore_UpdateStatus_ { - int32_t hashCode; - int32_t next; - struct CinemachineVirtualCameraBase *key; - struct CinemachineCore_UpdateStatus *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_Cinemachine_CinemachineVirtualCameraBase_Cinemachine_CinemachineCore_UpdateStatus___Boxed { - struct Dictionary_2_TKey_TValue_Entry_Cinemachine_CinemachineVirtualCameraBase_Cinemachine_CinemachineCore_UpdateStatus___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_Cinemachine_CinemachineVirtualCameraBase_Cinemachine_CinemachineCore_UpdateStatus_ fields; -}; - #if defined(_CPLUSPLUS_) enum class UpdateTracker_UpdateClock__Enum : int32_t { Fixed = 0x00000000, @@ -887289,6 +899164,21 @@ struct ICollection_1_Cinemachine_CinemachineCore_UpdateStatus___Class { struct ICollection_1_Cinemachine_CinemachineCore_UpdateStatus___VTable vtable; }; +struct CinemachineCore_UpdateStatus___VTable { +}; + +struct CinemachineCore_UpdateStatus___StaticFields { +}; + +struct CinemachineCore_UpdateStatus___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CinemachineCore_UpdateStatus___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CinemachineCore_UpdateStatus___VTable vtable; +}; + struct KeyValuePair_2_Cinemachine_CinemachineVirtualCameraBase_Cinemachine_CinemachineCore_UpdateStatus___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -887576,6 +899466,21 @@ struct CinemachineInputAxisDriver__Class { struct CinemachineInputAxisDriver__VTable vtable; }; +struct AxisBase___VTable { +}; + +struct AxisBase___StaticFields { +}; + +struct AxisBase___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct AxisBase___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct AxisBase___VTable vtable; +}; + struct AxisStatePropertyAttribute { struct AxisStatePropertyAttribute__Class *klass; MonitorData *monitor; @@ -887950,6 +899855,21 @@ struct DocumentationSortingAttribute__Class { struct DocumentationSortingAttribute__VTable vtable; }; +struct LensSettings___VTable { +}; + +struct LensSettings___StaticFields { +}; + +struct LensSettings___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct LensSettings___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct LensSettings___VTable vtable; +}; + struct CinemachineVirtualCameraBase_c { struct CinemachineVirtualCameraBase_c__Class *klass; MonitorData *monitor; @@ -888015,6 +899935,66 @@ struct CinemachineVirtualCameraBase_c__Class { struct CinemachineVirtualCameraBase_c__VTable vtable; }; +struct List_1_List_1_UnityEngine_Vector2__1__VTable { +}; + +struct List_1_List_1_UnityEngine_Vector2__1__StaticFields { +}; + +struct List_1_List_1_UnityEngine_Vector2__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_List_1_UnityEngine_Vector2__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_List_1_UnityEngine_Vector2__1__VTable vtable; +}; + +struct List_1_Cinemachine_ConfinerOven_PolygonSolution__1__VTable { +}; + +struct List_1_Cinemachine_ConfinerOven_PolygonSolution__1__StaticFields { +}; + +struct List_1_Cinemachine_ConfinerOven_PolygonSolution__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Cinemachine_ConfinerOven_PolygonSolution__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Cinemachine_ConfinerOven_PolygonSolution__1__VTable vtable; +}; + +struct ClipperLib_IntPoint___VTable { +}; + +struct ClipperLib_IntPoint___StaticFields { +}; + +struct ClipperLib_IntPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ClipperLib_IntPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ClipperLib_IntPoint___VTable vtable; +}; + +struct List_1_List_1_Cinemachine_ClipperLib_IntPoint__1__VTable { +}; + +struct List_1_List_1_Cinemachine_ClipperLib_IntPoint__1__StaticFields { +}; + +struct List_1_List_1_Cinemachine_ClipperLib_IntPoint__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_List_1_Cinemachine_ClipperLib_IntPoint__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_List_1_Cinemachine_ClipperLib_IntPoint__1__VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class TargetPositionCache_Mode__Enum : int32_t { Disabled = 0x00000000, @@ -888113,6 +900093,19 @@ struct TargetPositionCache { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Transform_Cinemachine_TargetPositionCache_CacheEntry_ { + int32_t hashCode; + int32_t next; + struct Transform *key; + struct TargetPositionCache_CacheEntry *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Transform_Cinemachine_TargetPositionCache_CacheEntry___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Transform_Cinemachine_TargetPositionCache_CacheEntry___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Transform_Cinemachine_TargetPositionCache_CacheEntry_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_Transform_Cinemachine_TargetPositionCache_CacheEntry___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Transform_Cinemachine_TargetPositionCache_CacheEntry___Array *_entries; @@ -888132,19 +900125,6 @@ struct Dictionary_2_UnityEngine_Transform_Cinemachine_TargetPositionCache_CacheE struct Dictionary_2_UnityEngine_Transform_Cinemachine_TargetPositionCache_CacheEntry___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Transform_Cinemachine_TargetPositionCache_CacheEntry_ { - int32_t hashCode; - int32_t next; - struct Transform *key; - struct TargetPositionCache_CacheEntry *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Transform_Cinemachine_TargetPositionCache_CacheEntry___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Transform_Cinemachine_TargetPositionCache_CacheEntry___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Transform_Cinemachine_TargetPositionCache_CacheEntry_ fields; -}; - struct __declspec(align(8)) TargetPositionCache_CacheEntry__Fields { struct TargetPositionCache_CacheCurve *Curve; struct List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ *RawItems; @@ -888168,6 +900148,17 @@ struct TargetPositionCache_CacheCurve { struct TargetPositionCache_CacheCurve__Fields fields; }; +struct TargetPositionCache_CacheCurve_Item { + struct Vector3 Pos; + struct Quaternion Rot; +}; + +struct TargetPositionCache_CacheCurve_Item__Boxed { + struct TargetPositionCache_CacheCurve_Item__Class *klass; + MonitorData *monitor; + struct TargetPositionCache_CacheCurve_Item fields; +}; + struct __declspec(align(8)) List_1_Cinemachine_TargetPositionCache_CacheCurve_Item___Fields { struct TargetPositionCache_CacheCurve_Item__Array *_items; int32_t _size; @@ -888181,17 +900172,6 @@ struct List_1_Cinemachine_TargetPositionCache_CacheCurve_Item_ { struct List_1_Cinemachine_TargetPositionCache_CacheCurve_Item___Fields fields; }; -struct TargetPositionCache_CacheCurve_Item { - struct Vector3 Pos; - struct Quaternion Rot; -}; - -struct TargetPositionCache_CacheCurve_Item__Boxed { - struct TargetPositionCache_CacheCurve_Item__Class *klass; - MonitorData *monitor; - struct TargetPositionCache_CacheCurve_Item fields; -}; - struct TargetPositionCache_CacheCurve_Item__Array { struct TargetPositionCache_CacheCurve_Item__Array__Class *klass; MonitorData *monitor; @@ -888205,6 +900185,18 @@ struct IEnumerator_1_Cinemachine_TargetPositionCache_CacheCurve_Item_ { MonitorData *monitor; }; +struct TargetPositionCache_CacheEntry_RecordingItem { + float Time_1; + bool IsCut; + struct TargetPositionCache_CacheCurve_Item Item; +}; + +struct TargetPositionCache_CacheEntry_RecordingItem__Boxed { + struct TargetPositionCache_CacheEntry_RecordingItem__Class *klass; + MonitorData *monitor; + struct TargetPositionCache_CacheEntry_RecordingItem fields; +}; + struct __declspec(align(8)) List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem___Fields { struct TargetPositionCache_CacheEntry_RecordingItem__Array *_items; int32_t _size; @@ -888218,18 +900210,6 @@ struct List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem_ { struct List_1_Cinemachine_TargetPositionCache_CacheEntry_RecordingItem___Fields fields; }; -struct TargetPositionCache_CacheEntry_RecordingItem { - float Time; - bool IsCut; - struct TargetPositionCache_CacheCurve_Item Item; -}; - -struct TargetPositionCache_CacheEntry_RecordingItem__Boxed { - struct TargetPositionCache_CacheEntry_RecordingItem__Class *klass; - MonitorData *monitor; - struct TargetPositionCache_CacheEntry_RecordingItem fields; -}; - struct TargetPositionCache_CacheEntry_RecordingItem__Array { struct TargetPositionCache_CacheEntry_RecordingItem__Array__Class *klass; MonitorData *monitor; @@ -888711,6 +900691,21 @@ struct ICollection_1_Cinemachine_TargetPositionCache_CacheEntry___Class { struct ICollection_1_Cinemachine_TargetPositionCache_CacheEntry___VTable vtable; }; +struct TargetPositionCache_CacheEntry___VTable { +}; + +struct TargetPositionCache_CacheEntry___StaticFields { +}; + +struct TargetPositionCache_CacheEntry___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TargetPositionCache_CacheEntry___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TargetPositionCache_CacheEntry___VTable vtable; +}; + struct KeyValuePair_2_UnityEngine_Transform_Cinemachine_TargetPositionCache_CacheEntry___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -888871,6 +900866,19 @@ struct UpdateTracker { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Transform_Cinemachine_UpdateTracker_UpdateStatus_ { + int32_t hashCode; + int32_t next; + struct Transform *key; + struct UpdateTracker_UpdateStatus *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Transform_Cinemachine_UpdateTracker_UpdateStatus___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Transform_Cinemachine_UpdateTracker_UpdateStatus___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Transform_Cinemachine_UpdateTracker_UpdateStatus_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_Transform_Cinemachine_UpdateTracker_UpdateStatus___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Transform_Cinemachine_UpdateTracker_UpdateStatus___Array *_entries; @@ -888890,19 +900898,6 @@ struct Dictionary_2_UnityEngine_Transform_Cinemachine_UpdateTracker_UpdateStatus struct Dictionary_2_UnityEngine_Transform_Cinemachine_UpdateTracker_UpdateStatus___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Transform_Cinemachine_UpdateTracker_UpdateStatus_ { - int32_t hashCode; - int32_t next; - struct Transform *key; - struct UpdateTracker_UpdateStatus *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Transform_Cinemachine_UpdateTracker_UpdateStatus___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Transform_Cinemachine_UpdateTracker_UpdateStatus___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Transform_Cinemachine_UpdateTracker_UpdateStatus_ fields; -}; - struct __declspec(align(8)) UpdateTracker_UpdateStatus__Fields { int32_t windowStart; int32_t numWindowLateUpdateMoves; @@ -889170,6 +901165,21 @@ struct ICollection_1_Cinemachine_UpdateTracker_UpdateStatus___Class { struct ICollection_1_Cinemachine_UpdateTracker_UpdateStatus___VTable vtable; }; +struct UpdateTracker_UpdateStatus___VTable { +}; + +struct UpdateTracker_UpdateStatus___StaticFields { +}; + +struct UpdateTracker_UpdateStatus___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UpdateTracker_UpdateStatus___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UpdateTracker_UpdateStatus___VTable vtable; +}; + struct KeyValuePair_2_UnityEngine_Transform_Cinemachine_UpdateTracker_UpdateStatus___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -889354,6 +901364,21 @@ struct CinemachineInputProvider__Class { struct CinemachineInputProvider__VTable vtable; }; +struct InputUser___VTable { +}; + +struct InputUser___StaticFields { +}; + +struct InputUser___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputUser___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputUser___VTable vtable; +}; + struct __declspec(align(8)) CinemachineInputProvider_c_DisplayClass7_0__Fields { struct InputActionReference *aRef; }; @@ -891203,19 +903228,6 @@ struct ClipperLib_ClipperBase { struct ClipperLib_ClipperBase__Fields fields; }; -struct __declspec(align(8)) List_1_List_1_Cinemachine_ClipperLib_TEdge___Fields { - struct List_1_Cinemachine_ClipperLib_TEdge___Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_List_1_Cinemachine_ClipperLib_TEdge_ { - struct List_1_List_1_Cinemachine_ClipperLib_TEdge___Class *klass; - MonitorData *monitor; - struct List_1_List_1_Cinemachine_ClipperLib_TEdge___Fields fields; -}; - struct __declspec(align(8)) List_1_Cinemachine_ClipperLib_TEdge___Fields { struct ClipperLib_TEdge__Array *_items; int32_t _size; @@ -891229,6 +903241,19 @@ struct List_1_Cinemachine_ClipperLib_TEdge_ { struct List_1_Cinemachine_ClipperLib_TEdge___Fields fields; }; +struct __declspec(align(8)) List_1_List_1_Cinemachine_ClipperLib_TEdge___Fields { + struct List_1_Cinemachine_ClipperLib_TEdge___Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_List_1_Cinemachine_ClipperLib_TEdge_ { + struct List_1_List_1_Cinemachine_ClipperLib_TEdge___Class *klass; + MonitorData *monitor; + struct List_1_List_1_Cinemachine_ClipperLib_TEdge___Fields fields; +}; + struct ClipperLib_TEdge__Array { struct ClipperLib_TEdge__Array__Class *klass; MonitorData *monitor; @@ -891548,6 +903573,36 @@ struct ClipperLib_ClipperBase__Class { struct ClipperLib_ClipperBase__VTable vtable; }; +struct ClipperLib_LocalMinima___VTable { +}; + +struct ClipperLib_LocalMinima___StaticFields { +}; + +struct ClipperLib_LocalMinima___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ClipperLib_LocalMinima___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ClipperLib_LocalMinima___VTable vtable; +}; + +struct ClipperLib_TEdge___VTable { +}; + +struct ClipperLib_TEdge___StaticFields { +}; + +struct ClipperLib_TEdge___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ClipperLib_TEdge___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ClipperLib_TEdge___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class ClipperLib_ClipType__Enum : int32_t { ctIntersection = 0x00000000, @@ -892032,6 +904087,21 @@ struct ClipperLib_Direction__Enum__Class { struct ClipperLib_Direction__Enum__VTable vtable; }; +struct ClipperLib_Direction___VTable { +}; + +struct ClipperLib_Direction___StaticFields { +}; + +struct ClipperLib_Direction___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ClipperLib_Direction___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ClipperLib_Direction___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class ClipperLib_Clipper_NodeType__Enum : int32_t { ntAny = 0x00000000, @@ -892095,6 +904165,21 @@ struct ClipperLib_Clipper_NodeType__Enum__Class { struct ClipperLib_Clipper_NodeType__Enum__VTable vtable; }; +struct ClipperLib_PolyTree___VTable { +}; + +struct ClipperLib_PolyTree___StaticFields { +}; + +struct ClipperLib_PolyTree___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ClipperLib_PolyTree___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ClipperLib_PolyTree___VTable vtable; +}; + struct ClipperLib_ClipperException__Fields { struct Exception__Fields _; }; @@ -892202,6 +904287,19 @@ struct IEnumerator_1_UnityEngine_Rendering_PostProcessing_PostProcessVolume_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_Cinemachine_CinemachineBrain_UnityEngine_Rendering_PostProcessing_PostProcessLayer_ { + int32_t hashCode; + int32_t next; + struct CinemachineBrain *key; + struct PostProcessLayer *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_Cinemachine_CinemachineBrain_UnityEngine_Rendering_PostProcessing_PostProcessLayer___Boxed { + struct Dictionary_2_TKey_TValue_Entry_Cinemachine_CinemachineBrain_UnityEngine_Rendering_PostProcessing_PostProcessLayer___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_Cinemachine_CinemachineBrain_UnityEngine_Rendering_PostProcessing_PostProcessLayer_ fields; +}; + struct __declspec(align(8)) Dictionary_2_Cinemachine_CinemachineBrain_UnityEngine_Rendering_PostProcessing_PostProcessLayer___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_Cinemachine_CinemachineBrain_UnityEngine_Rendering_PostProcessing_PostProcessLayer___Array *_entries; @@ -892221,19 +904319,6 @@ struct Dictionary_2_Cinemachine_CinemachineBrain_UnityEngine_Rendering_PostProce struct Dictionary_2_Cinemachine_CinemachineBrain_UnityEngine_Rendering_PostProcessing_PostProcessLayer___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_Cinemachine_CinemachineBrain_UnityEngine_Rendering_PostProcessing_PostProcessLayer_ { - int32_t hashCode; - int32_t next; - struct CinemachineBrain *key; - struct PostProcessLayer *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_Cinemachine_CinemachineBrain_UnityEngine_Rendering_PostProcessing_PostProcessLayer___Boxed { - struct Dictionary_2_TKey_TValue_Entry_Cinemachine_CinemachineBrain_UnityEngine_Rendering_PostProcessing_PostProcessLayer___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_Cinemachine_CinemachineBrain_UnityEngine_Rendering_PostProcessing_PostProcessLayer_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_Cinemachine_CinemachineBrain_UnityEngine_Rendering_PostProcessing_PostProcessLayer___Array { struct Dictionary_2_TKey_TValue_Entry_Cinemachine_CinemachineBrain_UnityEngine_Rendering_PostProcessing_PostProcessLayer___Array__Class *klass; MonitorData *monitor; @@ -892621,6 +904706,21 @@ struct ICollection_1_UnityEngine_Rendering_PostProcessing_PostProcessLayer___Cla struct ICollection_1_UnityEngine_Rendering_PostProcessing_PostProcessLayer___VTable vtable; }; +struct PostProcessLayer___VTable { +}; + +struct PostProcessLayer___StaticFields { +}; + +struct PostProcessLayer___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PostProcessLayer___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PostProcessLayer___VTable vtable; +}; + struct KeyValuePair_2_Cinemachine_CinemachineBrain_UnityEngine_Rendering_PostProcessing_PostProcessLayer___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -892885,6 +904985,18 @@ struct CinemachineDebug { MonitorData *monitor; }; +struct HashSet_1_T_Slot_UnityEngine_Object_ { + int32_t hashCode; + int32_t next; + struct Object_1 *value; +}; + +struct HashSet_1_T_Slot_UnityEngine_Object___Boxed { + struct HashSet_1_T_Slot_UnityEngine_Object___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_UnityEngine_Object_ fields; +}; + struct __declspec(align(8)) HashSet_1_UnityEngine_Object___Fields { struct Int32__Array *_buckets; struct HashSet_1_T_Slot_UnityEngine_Object___Array *_slots; @@ -892902,18 +905014,6 @@ struct HashSet_1_UnityEngine_Object_ { struct HashSet_1_UnityEngine_Object___Fields fields; }; -struct HashSet_1_T_Slot_UnityEngine_Object_ { - int32_t hashCode; - int32_t next; - struct Object_1 *value; -}; - -struct HashSet_1_T_Slot_UnityEngine_Object___Boxed { - struct HashSet_1_T_Slot_UnityEngine_Object___Class *klass; - MonitorData *monitor; - struct HashSet_1_T_Slot_UnityEngine_Object_ fields; -}; - struct HashSet_1_T_Slot_UnityEngine_Object___Array { struct HashSet_1_T_Slot_UnityEngine_Object___Array__Class *klass; MonitorData *monitor; @@ -893338,6 +905438,21 @@ struct GaussianWindow1D_CameraRotation__Class { struct GaussianWindow1D_CameraRotation__VTable vtable; }; +struct Vector4__1__VTable { +}; + +struct Vector4__1__StaticFields { +}; + +struct Vector4__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Vector4__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Vector4__1__VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class BoltNetworkModes__Enum : int32_t { None = 0x00000000, @@ -893403,6 +905518,21 @@ struct BoltNetworkModes__Enum__Class { struct BoltNetworkModes__Enum__VTable vtable; }; +struct BoltConnection___VTable { +}; + +struct BoltConnection___StaticFields { +}; + +struct BoltConnection___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltConnection___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltConnection___VTable vtable; +}; + struct IEnumerable_1_Photon_Bolt_BoltConnection_ { struct IEnumerable_1_Photon_Bolt_BoltConnection___Class *klass; MonitorData *monitor; @@ -893447,22 +905577,6 @@ struct IPrefabPool__Class { struct IPrefabPool__VTable vtable; }; -struct BoltHitboxBody__Fields { - struct MonoBehaviour__Fields _; - bool ShowSnapshotHistory; - struct BoltHitbox *_proximity; - struct BoltHitbox__Array *_hitboxes; - struct BoltHitboxBody *_Photon_Bolt_Collections_IBoltListNode_Photon_Bolt_LagCompensation_BoltHitboxBody__prev_k__BackingField; - struct BoltHitboxBody *_Photon_Bolt_Collections_IBoltListNode_Photon_Bolt_LagCompensation_BoltHitboxBody__next_k__BackingField; - struct Object *_Photon_Bolt_Collections_IBoltListNode_Photon_Bolt_LagCompensation_BoltHitboxBody__list_k__BackingField; -}; - -struct BoltHitboxBody { - struct BoltHitboxBody__Class *klass; - MonitorData *monitor; - struct BoltHitboxBody__Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class BoltHitboxShape__Enum : int32_t { Box = 0x00000000, @@ -893572,6 +905686,22 @@ struct BoltHitbox { struct BoltHitbox__Fields fields; }; +struct BoltHitboxBody__Fields { + struct MonoBehaviour__Fields _; + bool ShowSnapshotHistory; + struct BoltHitbox *_proximity; + struct BoltHitbox__Array *_hitboxes; + struct BoltHitboxBody *_Photon_Bolt_Collections_IBoltListNode_Photon_Bolt_LagCompensation_BoltHitboxBody__prev_k__BackingField; + struct BoltHitboxBody *_Photon_Bolt_Collections_IBoltListNode_Photon_Bolt_LagCompensation_BoltHitboxBody__next_k__BackingField; + struct Object *_Photon_Bolt_Collections_IBoltListNode_Photon_Bolt_LagCompensation_BoltHitboxBody__list_k__BackingField; +}; + +struct BoltHitboxBody { + struct BoltHitboxBody__Class *klass; + MonitorData *monitor; + struct BoltHitboxBody__Fields fields; +}; + struct BoltHitbox__Array { struct BoltHitbox__Array__Class *klass; MonitorData *monitor; @@ -893761,6 +905891,18 @@ struct IEnumerator_1_Photon_Bolt_LagCompensation_BoltPhysicsHits_ { MonitorData *monitor; }; +struct BoltPhysicsHit { + float distance; + struct BoltHitbox *hitbox; + struct BoltHitboxBody *body; +}; + +struct BoltPhysicsHit__Boxed { + struct BoltPhysicsHit__Class *klass; + MonitorData *monitor; + struct BoltPhysicsHit fields; +}; + struct __declspec(align(8)) List_1_Photon_Bolt_LagCompensation_BoltPhysicsHit___Fields { struct BoltPhysicsHit__Array *_items; int32_t _size; @@ -893774,18 +905916,6 @@ struct List_1_Photon_Bolt_LagCompensation_BoltPhysicsHit_ { struct List_1_Photon_Bolt_LagCompensation_BoltPhysicsHit___Fields fields; }; -struct BoltPhysicsHit { - float distance; - struct BoltHitbox *hitbox; - struct BoltHitboxBody *body; -}; - -struct BoltPhysicsHit__Boxed { - struct BoltPhysicsHit__Class *klass; - MonitorData *monitor; - struct BoltPhysicsHit fields; -}; - struct BoltPhysicsHit__Array { struct BoltPhysicsHit__Array__Class *klass; MonitorData *monitor; @@ -894283,6 +906413,21 @@ struct BoltIterator_1_Photon_Bolt_Command___Boxed { struct BoltIterator_1_Photon_Bolt_Command_ fields; }; +struct Command___VTable { +}; + +struct Command___StaticFields { +}; + +struct Command___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Command___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Command___VTable vtable; +}; + struct BoltIterator_1_Photon_Bolt_Command___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -894302,6 +906447,21 @@ struct BoltIterator_1_Photon_Bolt_Command___Class { struct BoltIterator_1_Photon_Bolt_Command___VTable vtable; }; +struct BoltIterator_1_Photon_Bolt_Command__1__VTable { +}; + +struct BoltIterator_1_Photon_Bolt_Command__1__StaticFields { +}; + +struct BoltIterator_1_Photon_Bolt_Command__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltIterator_1_Photon_Bolt_Command__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltIterator_1_Photon_Bolt_Command__1__VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class QueryComponentOptionsGlobal__Enum : int32_t { None = 0x00000000, @@ -894441,6 +906601,21 @@ struct EntityList_GetEnumerator_d_4__Class { struct EntityList_GetEnumerator_d_4__VTable vtable; }; +struct BoltEntity___VTable { +}; + +struct BoltEntity___StaticFields { +}; + +struct BoltEntity___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltEntity___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltEntity___VTable vtable; +}; + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_Photon_Bolt_Internal_EntityProxy_ { struct Dictionary_2_Photon_Bolt_NetworkId_Photon_Bolt_Internal_EntityProxy_ *_dictionary; int32_t _index; @@ -894566,6 +906741,21 @@ struct DefaultEventFilter__Class { struct DefaultEventFilter__VTable vtable; }; +struct EventReliable___VTable { +}; + +struct EventReliable___StaticFields { +}; + +struct EventReliable___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EventReliable___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EventReliable___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class RecvBufferAddResult__Enum : int32_t { Old = 0x00000000, @@ -895454,6 +907644,23 @@ struct LoadBalancingPeer { struct LoadBalancingPeer__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_ExitGames_Client_Photon_ConnectionProtocol_System_Type_ { + int32_t hashCode; + int32_t next; + #if defined(_CPLUSPLUS_) + ConnectionProtocol__Enum key; + #else + uint8_t key; + #endif + struct Type *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_ExitGames_Client_Photon_ConnectionProtocol_System_Type___Boxed { + struct Dictionary_2_TKey_TValue_Entry_ExitGames_Client_Photon_ConnectionProtocol_System_Type___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_ExitGames_Client_Photon_ConnectionProtocol_System_Type_ fields; +}; + struct __declspec(align(8)) Dictionary_2_ExitGames_Client_Photon_ConnectionProtocol_System_Type___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_ExitGames_Client_Photon_ConnectionProtocol_System_Type___Array *_entries; @@ -895473,23 +907680,6 @@ struct Dictionary_2_ExitGames_Client_Photon_ConnectionProtocol_System_Type_ { struct Dictionary_2_ExitGames_Client_Photon_ConnectionProtocol_System_Type___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_ExitGames_Client_Photon_ConnectionProtocol_System_Type_ { - int32_t hashCode; - int32_t next; - #if defined(_CPLUSPLUS_) - ConnectionProtocol__Enum key; - #else - uint8_t key; - #endif - struct Type *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_ExitGames_Client_Photon_ConnectionProtocol_System_Type___Boxed { - struct Dictionary_2_TKey_TValue_Entry_ExitGames_Client_Photon_ConnectionProtocol_System_Type___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_ExitGames_Client_Photon_ConnectionProtocol_System_Type_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_ExitGames_Client_Photon_ConnectionProtocol_System_Type___Array { struct Dictionary_2_TKey_TValue_Entry_ExitGames_Client_Photon_ConnectionProtocol_System_Type___Array__Class *klass; MonitorData *monitor; @@ -895601,6 +907791,19 @@ struct DisconnectMessage { struct DisconnectMessage__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_Byte_System_Object_ { + int32_t hashCode; + int32_t next; + uint8_t key; + struct Object *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Byte_System_Object___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Byte_System_Object___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Byte_System_Object_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Byte_System_Object___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Byte_System_Object___Array *_entries; @@ -895620,19 +907823,6 @@ struct Dictionary_2_System_Byte_System_Object_ { struct Dictionary_2_System_Byte_System_Object___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Byte_System_Object_ { - int32_t hashCode; - int32_t next; - uint8_t key; - struct Object *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Byte_System_Object___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Byte_System_Object___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Byte_System_Object_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Byte_System_Object___Array { struct Dictionary_2_TKey_TValue_Entry_System_Byte_System_Object___Array__Class *klass; MonitorData *monitor; @@ -895852,16 +908042,18 @@ struct IProtocol { struct IProtocol__Fields fields; }; -struct __declspec(align(8)) ByteArraySlicePool__Fields { - int32_t minStackIndex; - struct Stack_1_ExitGames_Client_Photon_ByteArraySlice___Array *poolTiers; - int32_t allocationCounter; +struct __declspec(align(8)) ByteArraySlice__Fields { + struct Byte__Array *Buffer; + int32_t Offset; + int32_t Count; + struct ByteArraySlicePool *returnPool; + int32_t stackIndex; }; -struct ByteArraySlicePool { - struct ByteArraySlicePool__Class *klass; +struct ByteArraySlice { + struct ByteArraySlice__Class *klass; MonitorData *monitor; - struct ByteArraySlicePool__Fields fields; + struct ByteArraySlice__Fields fields; }; struct __declspec(align(8)) Stack_1_ExitGames_Client_Photon_ByteArraySlice___Fields { @@ -895877,18 +908069,16 @@ struct Stack_1_ExitGames_Client_Photon_ByteArraySlice_ { struct Stack_1_ExitGames_Client_Photon_ByteArraySlice___Fields fields; }; -struct __declspec(align(8)) ByteArraySlice__Fields { - struct Byte__Array *Buffer; - int32_t Offset; - int32_t Count; - struct ByteArraySlicePool *returnPool; - int32_t stackIndex; +struct __declspec(align(8)) ByteArraySlicePool__Fields { + int32_t minStackIndex; + struct Stack_1_ExitGames_Client_Photon_ByteArraySlice___Array *poolTiers; + int32_t allocationCounter; }; -struct ByteArraySlice { - struct ByteArraySlice__Class *klass; +struct ByteArraySlicePool { + struct ByteArraySlicePool__Class *klass; MonitorData *monitor; - struct ByteArraySlice__Fields fields; + struct ByteArraySlicePool__Fields fields; }; struct ByteArraySlice__Array { @@ -895970,6 +908160,20 @@ struct ParameterDictionary { struct ParameterDictionary__Fields fields; }; +struct NonAllocDictionary_2_K_V_Node_System_Byte_System_Object_ { + bool Used; + int32_t Next; + uint32_t Hash; + uint8_t Key; + struct Object *Val; +}; + +struct NonAllocDictionary_2_K_V_Node_System_Byte_System_Object___Boxed { + struct NonAllocDictionary_2_K_V_Node_System_Byte_System_Object___Class *klass; + MonitorData *monitor; + struct NonAllocDictionary_2_K_V_Node_System_Byte_System_Object_ fields; +}; + struct __declspec(align(8)) NonAllocDictionary_2_System_Byte_System_Object___Fields { int32_t _freeHead; int32_t _freeCount; @@ -895988,20 +908192,6 @@ struct NonAllocDictionary_2_System_Byte_System_Object_ { struct NonAllocDictionary_2_System_Byte_System_Object___Fields fields; }; -struct NonAllocDictionary_2_K_V_Node_System_Byte_System_Object_ { - bool Used; - int32_t Next; - uint32_t Hash; - uint8_t Key; - struct Object *Val; -}; - -struct NonAllocDictionary_2_K_V_Node_System_Byte_System_Object___Boxed { - struct NonAllocDictionary_2_K_V_Node_System_Byte_System_Object___Class *klass; - MonitorData *monitor; - struct NonAllocDictionary_2_K_V_Node_System_Byte_System_Object_ fields; -}; - struct NonAllocDictionary_2_K_V_Node_System_Byte_System_Object___Array { struct NonAllocDictionary_2_K_V_Node_System_Byte_System_Object___Array__Class *klass; MonitorData *monitor; @@ -896225,6 +908415,19 @@ struct StructWrapper_1_System_Boolean___Array { struct StructWrapper_1_System_Boolean_ *vector[32]; }; +struct Dictionary_2_TKey_TValue_Entry_System_Type_ExitGames_Client_Photon_StructWrapping_StructWrapperPool_ { + int32_t hashCode; + int32_t next; + struct Type *key; + struct StructWrapperPool *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_ExitGames_Client_Photon_StructWrapping_StructWrapperPool___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Type_ExitGames_Client_Photon_StructWrapping_StructWrapperPool___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Type_ExitGames_Client_Photon_StructWrapping_StructWrapperPool_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Type_ExitGames_Client_Photon_StructWrapping_StructWrapperPool___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Type_ExitGames_Client_Photon_StructWrapping_StructWrapperPool___Array *_entries; @@ -896244,19 +908447,6 @@ struct Dictionary_2_System_Type_ExitGames_Client_Photon_StructWrapping_StructWra struct Dictionary_2_System_Type_ExitGames_Client_Photon_StructWrapping_StructWrapperPool___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Type_ExitGames_Client_Photon_StructWrapping_StructWrapperPool_ { - int32_t hashCode; - int32_t next; - struct Type *key; - struct StructWrapperPool *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Type_ExitGames_Client_Photon_StructWrapping_StructWrapperPool___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Type_ExitGames_Client_Photon_StructWrapping_StructWrapperPool___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Type_ExitGames_Client_Photon_StructWrapping_StructWrapperPool_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Type_ExitGames_Client_Photon_StructWrapping_StructWrapperPool___Array { struct Dictionary_2_TKey_TValue_Entry_System_Type_ExitGames_Client_Photon_StructWrapping_StructWrapperPool___Array__Class *klass; MonitorData *monitor; @@ -896570,6 +908760,16 @@ struct IEnumerator_1_ExitGames_Client_Photon_NCommand_ { MonitorData *monitor; }; +struct PeerBase_MyAction__Fields { + struct MulticastDelegate__Fields _; +}; + +struct PeerBase_MyAction { + struct PeerBase_MyAction__Class *klass; + MonitorData *monitor; + struct PeerBase_MyAction__Fields fields; +}; + struct __declspec(align(8)) Queue_1_ExitGames_Client_Photon_PeerBase_MyAction___Fields { struct PeerBase_MyAction__Array *_array; int32_t _head; @@ -896585,16 +908785,6 @@ struct Queue_1_ExitGames_Client_Photon_PeerBase_MyAction_ { struct Queue_1_ExitGames_Client_Photon_PeerBase_MyAction___Fields fields; }; -struct PeerBase_MyAction__Fields { - struct MulticastDelegate__Fields _; -}; - -struct PeerBase_MyAction { - struct PeerBase_MyAction__Class *klass; - MonitorData *monitor; - struct PeerBase_MyAction__Fields fields; -}; - struct PeerBase_MyAction__Array { struct PeerBase_MyAction__Array__Class *klass; MonitorData *monitor; @@ -896715,6 +908905,30 @@ struct NetworkSimulationSet { struct NetworkSimulationSet__Fields fields; }; +struct __declspec(align(8)) EnetChannel__Fields { + uint8_t ChannelNumber; + struct NonAllocDictionary_2_System_Int32_NCommand_ *incomingReliableCommandsList; + struct NonAllocDictionary_2_System_Int32_NCommand_ *incomingUnreliableCommandsList; + struct Queue_1_ExitGames_Client_Photon_NCommand_ *incomingUnsequencedCommandsList; + struct NonAllocDictionary_2_System_Int32_NCommand_ *incomingUnsequencedFragments; + struct Queue_1_ExitGames_Client_Photon_NCommand_ *outgoingReliableCommandsList; + struct Queue_1_ExitGames_Client_Photon_NCommand_ *outgoingUnreliableCommandsList; + int32_t incomingReliableSequenceNumber; + int32_t incomingUnreliableSequenceNumber; + int32_t outgoingReliableSequenceNumber; + int32_t outgoingUnreliableSequenceNumber; + int32_t outgoingReliableUnsequencedNumber; + int32_t reliableUnsequencedNumbersCompletelyReceived; + struct HashSet_1_System_Int32_ *reliableUnsequencedNumbersReceived; + int32_t highestReceivedAck; +}; + +struct EnetChannel { + struct EnetChannel__Class *klass; + MonitorData *monitor; + struct EnetChannel__Fields fields; +}; + struct EnetPeer__Fields { struct PeerBase__Fields _; struct NCommandPool *nCommandPool; @@ -896760,28 +908974,18 @@ struct List_1_ExitGames_Client_Photon_NCommand_ { struct List_1_ExitGames_Client_Photon_NCommand___Fields fields; }; -struct __declspec(align(8)) EnetChannel__Fields { - uint8_t ChannelNumber; - struct NonAllocDictionary_2_System_Int32_NCommand_ *incomingReliableCommandsList; - struct NonAllocDictionary_2_System_Int32_NCommand_ *incomingUnreliableCommandsList; - struct Queue_1_ExitGames_Client_Photon_NCommand_ *incomingUnsequencedCommandsList; - struct NonAllocDictionary_2_System_Int32_NCommand_ *incomingUnsequencedFragments; - struct Queue_1_ExitGames_Client_Photon_NCommand_ *outgoingReliableCommandsList; - struct Queue_1_ExitGames_Client_Photon_NCommand_ *outgoingUnreliableCommandsList; - int32_t incomingReliableSequenceNumber; - int32_t incomingUnreliableSequenceNumber; - int32_t outgoingReliableSequenceNumber; - int32_t outgoingUnreliableSequenceNumber; - int32_t outgoingReliableUnsequencedNumber; - int32_t reliableUnsequencedNumbersCompletelyReceived; - struct HashSet_1_System_Int32_ *reliableUnsequencedNumbersReceived; - int32_t highestReceivedAck; +struct NonAllocDictionary_2_K_V_Node_System_Int32_NCommand_ { + bool Used; + int32_t Next; + uint32_t Hash; + int32_t Key; + struct NCommand *Val; }; -struct EnetChannel { - struct EnetChannel__Class *klass; +struct NonAllocDictionary_2_K_V_Node_System_Int32_NCommand___Boxed { + struct NonAllocDictionary_2_K_V_Node_System_Int32_NCommand___Class *klass; MonitorData *monitor; - struct EnetChannel__Fields fields; + struct NonAllocDictionary_2_K_V_Node_System_Int32_NCommand_ fields; }; struct __declspec(align(8)) NonAllocDictionary_2_System_Int32_NCommand___Fields { @@ -896802,20 +909006,6 @@ struct NonAllocDictionary_2_System_Int32_NCommand_ { struct NonAllocDictionary_2_System_Int32_NCommand___Fields fields; }; -struct NonAllocDictionary_2_K_V_Node_System_Int32_NCommand_ { - bool Used; - int32_t Next; - uint32_t Hash; - int32_t Key; - struct NCommand *Val; -}; - -struct NonAllocDictionary_2_K_V_Node_System_Int32_NCommand___Boxed { - struct NonAllocDictionary_2_K_V_Node_System_Int32_NCommand___Class *klass; - MonitorData *monitor; - struct NonAllocDictionary_2_K_V_Node_System_Int32_NCommand_ fields; -}; - struct NonAllocDictionary_2_K_V_Node_System_Int32_NCommand___Array { struct NonAllocDictionary_2_K_V_Node_System_Int32_NCommand___Array__Class *klass; MonitorData *monitor; @@ -897208,6 +909398,23 @@ struct WebFlags { struct WebFlags__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_ExitGames_Client_Photon_ConnectionProtocol_System_Int32_ { + int32_t hashCode; + int32_t next; + #if defined(_CPLUSPLUS_) + ConnectionProtocol__Enum key; + #else + uint8_t key; + #endif + int32_t value; +}; + +struct Dictionary_2_TKey_TValue_Entry_ExitGames_Client_Photon_ConnectionProtocol_System_Int32___Boxed { + struct Dictionary_2_TKey_TValue_Entry_ExitGames_Client_Photon_ConnectionProtocol_System_Int32___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_ExitGames_Client_Photon_ConnectionProtocol_System_Int32_ fields; +}; + struct __declspec(align(8)) Dictionary_2_ExitGames_Client_Photon_ConnectionProtocol_System_Int32___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_ExitGames_Client_Photon_ConnectionProtocol_System_Int32___Array *_entries; @@ -897227,23 +909434,6 @@ struct Dictionary_2_ExitGames_Client_Photon_ConnectionProtocol_System_Int32_ { struct Dictionary_2_ExitGames_Client_Photon_ConnectionProtocol_System_Int32___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_ExitGames_Client_Photon_ConnectionProtocol_System_Int32_ { - int32_t hashCode; - int32_t next; - #if defined(_CPLUSPLUS_) - ConnectionProtocol__Enum key; - #else - uint8_t key; - #endif - int32_t value; -}; - -struct Dictionary_2_TKey_TValue_Entry_ExitGames_Client_Photon_ConnectionProtocol_System_Int32___Boxed { - struct Dictionary_2_TKey_TValue_Entry_ExitGames_Client_Photon_ConnectionProtocol_System_Int32___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_ExitGames_Client_Photon_ConnectionProtocol_System_Int32_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_ExitGames_Client_Photon_ConnectionProtocol_System_Int32___Array { struct Dictionary_2_TKey_TValue_Entry_ExitGames_Client_Photon_ConnectionProtocol_System_Int32___Array__Class *klass; MonitorData *monitor; @@ -897330,6 +909520,11 @@ struct Action_1_ExitGames_Client_Photon_OperationResponse_ { struct Action_1_ExitGames_Client_Photon_OperationResponse___Fields fields; }; +struct IConnectionCallbacks { + struct IConnectionCallbacks__Class *klass; + MonitorData *monitor; +}; + struct __declspec(align(8)) List_1_Photon_Realtime_IConnectionCallbacks___Fields { struct IConnectionCallbacks__Array *_items; int32_t _size; @@ -897354,11 +909549,6 @@ struct ConnectionCallbacksContainer { struct ConnectionCallbacksContainer__Fields fields; }; -struct IConnectionCallbacks { - struct IConnectionCallbacks__Class *klass; - MonitorData *monitor; -}; - struct IConnectionCallbacks__Array { struct IConnectionCallbacks__Array__Class *klass; MonitorData *monitor; @@ -897391,19 +909581,6 @@ struct RegionHandler { struct RegionHandler__Fields fields; }; -struct __declspec(align(8)) List_1_Photon_Realtime_Region___Fields { - struct Region_1__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Photon_Realtime_Region_ { - struct List_1_Photon_Realtime_Region___Class *klass; - MonitorData *monitor; - struct List_1_Photon_Realtime_Region___Fields fields; -}; - struct __declspec(align(8)) Region_1__Fields { struct String *_Code_k__BackingField; struct String *_Cluster_k__BackingField; @@ -897417,6 +909594,19 @@ struct Region_1 { struct Region_1__Fields fields; }; +struct __declspec(align(8)) List_1_Photon_Realtime_Region___Fields { + struct Region_1__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Photon_Realtime_Region_ { + struct List_1_Photon_Realtime_Region___Class *klass; + MonitorData *monitor; + struct List_1_Photon_Realtime_Region___Fields fields; +}; + struct Region_1__Array { struct Region_1__Array__Class *klass; MonitorData *monitor; @@ -897430,19 +909620,6 @@ struct IEnumerator_1_Photon_Realtime_Region_ { MonitorData *monitor; }; -struct __declspec(align(8)) List_1_Photon_Realtime_RegionPinger___Fields { - struct RegionPinger__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Photon_Realtime_RegionPinger_ { - struct List_1_Photon_Realtime_RegionPinger___Class *klass; - MonitorData *monitor; - struct List_1_Photon_Realtime_RegionPinger___Fields fields; -}; - struct __declspec(align(8)) RegionPinger__Fields { int32_t CurrentAttempt; bool _Done_k__BackingField; @@ -897460,6 +909637,19 @@ struct RegionPinger { struct RegionPinger__Fields fields; }; +struct __declspec(align(8)) List_1_Photon_Realtime_RegionPinger___Fields { + struct RegionPinger__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Photon_Realtime_RegionPinger_ { + struct List_1_Photon_Realtime_RegionPinger___Class *klass; + MonitorData *monitor; + struct List_1_Photon_Realtime_RegionPinger___Fields fields; +}; + struct Action_1_Photon_Realtime_Region___Fields { struct MulticastDelegate__Fields _; }; @@ -897520,6 +909710,11 @@ struct MonoBehaviourEmpty { struct MonoBehaviourEmpty__Fields fields; }; +struct IMatchmakingCallbacks { + struct IMatchmakingCallbacks__Class *klass; + MonitorData *monitor; +}; + struct __declspec(align(8)) List_1_Photon_Realtime_IMatchmakingCallbacks___Fields { struct IMatchmakingCallbacks__Array *_items; int32_t _size; @@ -897544,11 +909739,6 @@ struct MatchMakingCallbacksContainer { struct MatchMakingCallbacksContainer__Fields fields; }; -struct IMatchmakingCallbacks { - struct IMatchmakingCallbacks__Class *klass; - MonitorData *monitor; -}; - struct IMatchmakingCallbacks__Array { struct IMatchmakingCallbacks__Array__Class *klass; MonitorData *monitor; @@ -897562,6 +909752,18 @@ struct IEnumerator_1_Photon_Realtime_IMatchmakingCallbacks_ { MonitorData *monitor; }; +struct __declspec(align(8)) FriendInfo__Fields { + struct String *_UserId_k__BackingField; + bool _IsOnline_k__BackingField; + struct String *_Room_k__BackingField; +}; + +struct FriendInfo { + struct FriendInfo__Class *klass; + MonitorData *monitor; + struct FriendInfo__Fields fields; +}; + struct __declspec(align(8)) List_1_Photon_Realtime_FriendInfo___Fields { struct FriendInfo__Array *_items; int32_t _size; @@ -897575,18 +909777,6 @@ struct List_1_Photon_Realtime_FriendInfo_ { struct List_1_Photon_Realtime_FriendInfo___Fields fields; }; -struct __declspec(align(8)) FriendInfo__Fields { - struct String *_UserId_k__BackingField; - bool _IsOnline_k__BackingField; - struct String *_Room_k__BackingField; -}; - -struct FriendInfo { - struct FriendInfo__Class *klass; - MonitorData *monitor; - struct FriendInfo__Fields fields; -}; - struct FriendInfo__Array { struct FriendInfo__Array__Class *klass; MonitorData *monitor; @@ -897600,6 +909790,11 @@ struct IEnumerator_1_Photon_Realtime_FriendInfo_ { MonitorData *monitor; }; +struct IInRoomCallbacks { + struct IInRoomCallbacks__Class *klass; + MonitorData *monitor; +}; + struct __declspec(align(8)) List_1_Photon_Realtime_IInRoomCallbacks___Fields { struct IInRoomCallbacks__Array *_items; int32_t _size; @@ -897624,11 +909819,6 @@ struct InRoomCallbacksContainer { struct InRoomCallbacksContainer__Fields fields; }; -struct IInRoomCallbacks { - struct IInRoomCallbacks__Class *klass; - MonitorData *monitor; -}; - struct IInRoomCallbacks__Array { struct IInRoomCallbacks__Array__Class *klass; MonitorData *monitor; @@ -897700,6 +909890,19 @@ struct Room { struct Room__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_Photon_Realtime_Player_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct Player_1 *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_Photon_Realtime_Player___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_Photon_Realtime_Player___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_Photon_Realtime_Player_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_Photon_Realtime_Player___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_Photon_Realtime_Player___Array *_entries; @@ -897719,19 +909922,6 @@ struct Dictionary_2_System_Int32_Photon_Realtime_Player_ { struct Dictionary_2_System_Int32_Photon_Realtime_Player___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_Photon_Realtime_Player_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct Player_1 *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_Photon_Realtime_Player___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_Photon_Realtime_Player___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_Photon_Realtime_Player_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_Photon_Realtime_Player___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_Photon_Realtime_Player___Array__Class *klass; MonitorData *monitor; @@ -897807,6 +909997,11 @@ struct IEnumerable_1_Photon_Realtime_Player_ { MonitorData *monitor; }; +struct ILobbyCallbacks { + struct ILobbyCallbacks__Class *klass; + MonitorData *monitor; +}; + struct __declspec(align(8)) List_1_Photon_Realtime_ILobbyCallbacks___Fields { struct ILobbyCallbacks__Array *_items; int32_t _size; @@ -897831,11 +910026,6 @@ struct LobbyCallbacksContainer { struct LobbyCallbacksContainer__Fields fields; }; -struct ILobbyCallbacks { - struct ILobbyCallbacks__Class *klass; - MonitorData *monitor; -}; - struct ILobbyCallbacks__Array { struct ILobbyCallbacks__Array__Class *klass; MonitorData *monitor; @@ -897875,6 +910065,18 @@ struct IEnumerator_1_Photon_Realtime_RoomInfo_ { MonitorData *monitor; }; +struct TypedLobbyInfo__Fields { + struct TypedLobby__Fields _; + int32_t PlayerCount; + int32_t RoomCount; +}; + +struct TypedLobbyInfo { + struct TypedLobbyInfo__Class *klass; + MonitorData *monitor; + struct TypedLobbyInfo__Fields fields; +}; + struct __declspec(align(8)) List_1_Photon_Realtime_TypedLobbyInfo___Fields { struct TypedLobbyInfo__Array *_items; int32_t _size; @@ -897888,18 +910090,6 @@ struct List_1_Photon_Realtime_TypedLobbyInfo_ { struct List_1_Photon_Realtime_TypedLobbyInfo___Fields fields; }; -struct TypedLobbyInfo__Fields { - struct TypedLobby__Fields _; - int32_t PlayerCount; - int32_t RoomCount; -}; - -struct TypedLobbyInfo { - struct TypedLobbyInfo__Class *klass; - MonitorData *monitor; - struct TypedLobbyInfo__Fields fields; -}; - struct TypedLobbyInfo__Array { struct TypedLobbyInfo__Array__Class *klass; MonitorData *monitor; @@ -897913,6 +910103,11 @@ struct IEnumerator_1_Photon_Realtime_TypedLobbyInfo_ { MonitorData *monitor; }; +struct IWebRpcCallback { + struct IWebRpcCallback__Class *klass; + MonitorData *monitor; +}; + struct __declspec(align(8)) List_1_Photon_Realtime_IWebRpcCallback___Fields { struct IWebRpcCallback__Array *_items; int32_t _size; @@ -897937,11 +910132,6 @@ struct WebRpcCallbacksContainer { struct WebRpcCallbacksContainer__Fields fields; }; -struct IWebRpcCallback { - struct IWebRpcCallback__Class *klass; - MonitorData *monitor; -}; - struct IWebRpcCallback__Array { struct IWebRpcCallback__Array__Class *klass; MonitorData *monitor; @@ -897955,6 +910145,11 @@ struct IEnumerator_1_Photon_Realtime_IWebRpcCallback_ { MonitorData *monitor; }; +struct IErrorInfoCallback { + struct IErrorInfoCallback__Class *klass; + MonitorData *monitor; +}; + struct __declspec(align(8)) List_1_Photon_Realtime_IErrorInfoCallback___Fields { struct IErrorInfoCallback__Array *_items; int32_t _size; @@ -897979,11 +910174,6 @@ struct ErrorInfoCallbacksContainer { struct ErrorInfoCallbacksContainer__Fields fields; }; -struct IErrorInfoCallback { - struct IErrorInfoCallback__Class *klass; - MonitorData *monitor; -}; - struct IErrorInfoCallback__Array { struct IErrorInfoCallback__Array__Class *klass; MonitorData *monitor; @@ -898007,6 +910197,17 @@ struct ErrorInfo { struct ErrorInfo__Fields fields; }; +struct __declspec(align(8)) LoadBalancingClient_CallbackTargetChange__Fields { + struct Object *Target; + bool AddTarget; +}; + +struct LoadBalancingClient_CallbackTargetChange { + struct LoadBalancingClient_CallbackTargetChange__Class *klass; + MonitorData *monitor; + struct LoadBalancingClient_CallbackTargetChange__Fields fields; +}; + struct __declspec(align(8)) Queue_1_Photon_Realtime_LoadBalancingClient_CallbackTargetChange___Fields { struct LoadBalancingClient_CallbackTargetChange__Array *_array; int32_t _head; @@ -898022,17 +910223,6 @@ struct Queue_1_Photon_Realtime_LoadBalancingClient_CallbackTargetChange_ { struct Queue_1_Photon_Realtime_LoadBalancingClient_CallbackTargetChange___Fields fields; }; -struct __declspec(align(8)) LoadBalancingClient_CallbackTargetChange__Fields { - struct Object *Target; - bool AddTarget; -}; - -struct LoadBalancingClient_CallbackTargetChange { - struct LoadBalancingClient_CallbackTargetChange__Class *klass; - MonitorData *monitor; - struct LoadBalancingClient_CallbackTargetChange__Fields fields; -}; - struct LoadBalancingClient_CallbackTargetChange__Array { struct LoadBalancingClient_CallbackTargetChange__Array__Class *klass; MonitorData *monitor; @@ -898134,6 +910324,19 @@ struct AppSettings { struct AppSettings__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_Photon_Realtime_RoomInfo_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct RoomInfo *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_Photon_Realtime_RoomInfo___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_Photon_Realtime_RoomInfo___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_Photon_Realtime_RoomInfo_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_Photon_Realtime_RoomInfo___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_Photon_Realtime_RoomInfo___Array *_entries; @@ -898153,19 +910356,6 @@ struct Dictionary_2_System_Int32_Photon_Realtime_RoomInfo_ { struct Dictionary_2_System_Int32_Photon_Realtime_RoomInfo___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_Photon_Realtime_RoomInfo_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct RoomInfo *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_Photon_Realtime_RoomInfo___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_Photon_Realtime_RoomInfo___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_Photon_Realtime_RoomInfo_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_Photon_Realtime_RoomInfo___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_Photon_Realtime_RoomInfo___Array__Class *klass; MonitorData *monitor; @@ -898233,6 +910423,23 @@ struct ISynchronizedQueue_1_UdpKit_Platform_Photon_PhotonPoller_PhotonPacket_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_UdpKit_Platform_Photon_ConnectState_UdpKit_Platform_Photon_ConnectState_ { + int32_t hashCode; + int32_t next; + #if defined(_CPLUSPLUS_) + ConnectState__Enum key; + #else + int32_t key; + #endif + struct ConnectState__Enum__Array *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UdpKit_Platform_Photon_ConnectState_UdpKit_Platform_Photon_ConnectState___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UdpKit_Platform_Photon_ConnectState_UdpKit_Platform_Photon_ConnectState___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UdpKit_Platform_Photon_ConnectState_UdpKit_Platform_Photon_ConnectState_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UdpKit_Platform_Photon_ConnectState_UdpKit_Platform_Photon_ConnectState___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UdpKit_Platform_Photon_ConnectState_UdpKit_Platform_Photon_ConnectState___Array *_entries; @@ -898252,23 +910459,6 @@ struct Dictionary_2_UdpKit_Platform_Photon_ConnectState_UdpKit_Platform_Photon_C struct Dictionary_2_UdpKit_Platform_Photon_ConnectState_UdpKit_Platform_Photon_ConnectState___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UdpKit_Platform_Photon_ConnectState_UdpKit_Platform_Photon_ConnectState_ { - int32_t hashCode; - int32_t next; - #if defined(_CPLUSPLUS_) - ConnectState__Enum key; - #else - int32_t key; - #endif - struct ConnectState__Enum__Array *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UdpKit_Platform_Photon_ConnectState_UdpKit_Platform_Photon_ConnectState___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UdpKit_Platform_Photon_ConnectState_UdpKit_Platform_Photon_ConnectState___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UdpKit_Platform_Photon_ConnectState_UdpKit_Platform_Photon_ConnectState_ fields; -}; - struct ConnectState__Enum__Array { struct ConnectState__Enum__Array__Class *klass; MonitorData *monitor; @@ -899767,6 +911957,21 @@ struct ICollection_1_ExitGames_Client_Photon_StructWrapping_StructWrapperPool___ struct ICollection_1_ExitGames_Client_Photon_StructWrapping_StructWrapperPool___VTable vtable; }; +struct StructWrapperPool___VTable { +}; + +struct StructWrapperPool___StaticFields { +}; + +struct StructWrapperPool___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StructWrapperPool___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StructWrapperPool___VTable vtable; +}; + struct KeyValuePair_2_System_Type_ExitGames_Client_Photon_StructWrapping_StructWrapperPool___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -900834,6 +913039,21 @@ struct ICollection_1_ExitGames_Client_Photon_NCommand___Class { struct ICollection_1_ExitGames_Client_Photon_NCommand___VTable vtable; }; +struct NCommand___VTable { +}; + +struct NCommand___StaticFields { +}; + +struct NCommand___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NCommand___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NCommand___VTable vtable; +}; + struct KeyValuePair_2_System_Int32_ExitGames_Client_Photon_NCommand___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -903257,6 +915477,21 @@ struct ICollection_1_Photon_Realtime_Player___Class { struct ICollection_1_Photon_Realtime_Player___VTable vtable; }; +struct Player___VTable { +}; + +struct Player___StaticFields { +}; + +struct Player___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Player___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Player___VTable vtable; +}; + struct KeyValuePair_2_System_Int32_Photon_Realtime_Player___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -904466,6 +916701,21 @@ struct ICollection_1_Photon_Realtime_RoomInfo___Class { struct ICollection_1_Photon_Realtime_RoomInfo___VTable vtable; }; +struct RoomInfo___VTable { +}; + +struct RoomInfo___StaticFields { +}; + +struct RoomInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RoomInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RoomInfo___VTable vtable; +}; + struct KeyValuePair_2_System_Int32_Photon_Realtime_RoomInfo___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -904927,6 +917177,21 @@ struct ICollection_1_UdpKit_Platform_Photon_ConnectState__1__Class { struct ICollection_1_UdpKit_Platform_Photon_ConnectState__1__VTable vtable; }; +struct ConnectState___VTable { +}; + +struct ConnectState___StaticFields { +}; + +struct ConnectState___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ConnectState___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ConnectState___VTable vtable; +}; + struct KeyValuePair_2_UdpKit_Platform_Photon_ConnectState_UdpKit_Platform_Photon_ConnectState___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -906291,6 +918556,21 @@ struct NetworkObj_Meta_c_DisplayClass22_0__Class { struct NetworkObj_Meta_c_DisplayClass22_0__VTable vtable; }; +struct NetworkState_PropertyField___VTable { +}; + +struct NetworkState_PropertyField___StaticFields { +}; + +struct NetworkState_PropertyField___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NetworkState_PropertyField___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NetworkState_PropertyField___VTable vtable; +}; + struct NetworkTransform_c { struct NetworkTransform_c__Class *klass; MonitorData *monitor; @@ -907808,6 +920088,21 @@ struct PooledProtocolToken__Class { struct PooledProtocolToken__VTable vtable; }; +struct IProtocolToken___VTable { +}; + +struct IProtocolToken___StaticFields { +}; + +struct IProtocolToken___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IProtocolToken___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IProtocolToken___VTable vtable; +}; + struct __declspec(align(8)) BoltGlobalBehaviourAttribute__Fields { #if defined(_CPLUSPLUS_) BoltNetworkModes__Enum _Mode_k__BackingField; @@ -908028,6 +920323,19 @@ struct PrefabDatabase { struct PrefabDatabase__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_PrefabId_UnityEngine_GameObject_ { + int32_t hashCode; + int32_t next; + struct PrefabId key; + struct GameObject *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_PrefabId_UnityEngine_GameObject___Boxed { + struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_PrefabId_UnityEngine_GameObject___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_PrefabId_UnityEngine_GameObject_ fields; +}; + struct __declspec(align(8)) Dictionary_2_Photon_Bolt_PrefabId_UnityEngine_GameObject___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_PrefabId_UnityEngine_GameObject___Array *_entries; @@ -908047,19 +920355,6 @@ struct Dictionary_2_Photon_Bolt_PrefabId_UnityEngine_GameObject_ { struct Dictionary_2_Photon_Bolt_PrefabId_UnityEngine_GameObject___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_PrefabId_UnityEngine_GameObject_ { - int32_t hashCode; - int32_t next; - struct PrefabId key; - struct GameObject *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_PrefabId_UnityEngine_GameObject___Boxed { - struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_PrefabId_UnityEngine_GameObject___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_PrefabId_UnityEngine_GameObject_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_PrefabId_UnityEngine_GameObject___Array { struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_PrefabId_UnityEngine_GameObject___Array__Class *klass; MonitorData *monitor; @@ -908590,17 +920885,6 @@ struct BoltProtocolTokenRegistryIgnore__Class { struct BoltProtocolTokenRegistryIgnore__VTable vtable; }; -struct BoltProtocolTokenRegistry__Fields { - struct ScriptableObject__Fields _; - struct BoltProtocolTokenRegistry_TokenRegistry__Array *protocolTokenRegistry; -}; - -struct BoltProtocolTokenRegistry { - struct BoltProtocolTokenRegistry__Class *klass; - MonitorData *monitor; - struct BoltProtocolTokenRegistry__Fields fields; -}; - struct BoltProtocolTokenRegistry_TokenRegistry { struct String *DisplayName; struct String *AssemblyName; @@ -908612,6 +920896,17 @@ struct BoltProtocolTokenRegistry_TokenRegistry__Boxed { struct BoltProtocolTokenRegistry_TokenRegistry fields; }; +struct BoltProtocolTokenRegistry__Fields { + struct ScriptableObject__Fields _; + struct BoltProtocolTokenRegistry_TokenRegistry__Array *protocolTokenRegistry; +}; + +struct BoltProtocolTokenRegistry { + struct BoltProtocolTokenRegistry__Class *klass; + MonitorData *monitor; + struct BoltProtocolTokenRegistry__Fields fields; +}; + struct BoltProtocolTokenRegistry_TokenRegistry__Array { struct BoltProtocolTokenRegistry_TokenRegistry__Array__Class *klass; MonitorData *monitor; @@ -909356,6 +921651,21 @@ struct BoltHitboxWorldSnapshot__Class { struct BoltHitboxWorldSnapshot__VTable vtable; }; +struct BoltHitboxWorldSnapshot___VTable { +}; + +struct BoltHitboxWorldSnapshot___StaticFields { +}; + +struct BoltHitboxWorldSnapshot___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltHitboxWorldSnapshot___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltHitboxWorldSnapshot___VTable vtable; +}; + struct IEnumerable_1_Photon_Bolt_Utils_BoltConsole_Line_ { struct IEnumerable_1_Photon_Bolt_Utils_BoltConsole_Line___Class *klass; MonitorData *monitor; @@ -909409,6 +921719,17 @@ struct BoltConsole { struct BoltConsole__Fields fields; }; +struct BoltConsole_Line { + struct Color color; + struct String *text; +}; + +struct BoltConsole_Line__Boxed { + struct BoltConsole_Line__Class *klass; + MonitorData *monitor; + struct BoltConsole_Line fields; +}; + struct __declspec(align(8)) BoltRingBuffer_1_Photon_Bolt_Utils_BoltConsole_Line___Fields { int32_t _head; int32_t _tail; @@ -909423,17 +921744,6 @@ struct BoltRingBuffer_1_Photon_Bolt_Utils_BoltConsole_Line_ { struct BoltRingBuffer_1_Photon_Bolt_Utils_BoltConsole_Line___Fields fields; }; -struct BoltConsole_Line { - struct Color color; - struct String *text; -}; - -struct BoltConsole_Line__Boxed { - struct BoltConsole_Line__Class *klass; - MonitorData *monitor; - struct BoltConsole_Line fields; -}; - struct BoltConsole_Line__Array { struct BoltConsole_Line__Array__Class *klass; MonitorData *monitor; @@ -909584,6 +921894,18 @@ struct DebugInfo_1 { struct DebugInfo_1__Fields fields; }; +struct HashSet_1_T_Slot_Photon_Bolt_NetworkId_ { + int32_t hashCode; + int32_t next; + struct NetworkId value; +}; + +struct HashSet_1_T_Slot_Photon_Bolt_NetworkId___Boxed { + struct HashSet_1_T_Slot_Photon_Bolt_NetworkId___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_Photon_Bolt_NetworkId_ fields; +}; + struct __declspec(align(8)) HashSet_1_Photon_Bolt_NetworkId___Fields { struct Int32__Array *_buckets; struct HashSet_1_T_Slot_Photon_Bolt_NetworkId___Array *_slots; @@ -909601,18 +921923,6 @@ struct HashSet_1_Photon_Bolt_NetworkId_ { struct HashSet_1_Photon_Bolt_NetworkId___Fields fields; }; -struct HashSet_1_T_Slot_Photon_Bolt_NetworkId_ { - int32_t hashCode; - int32_t next; - struct NetworkId value; -}; - -struct HashSet_1_T_Slot_Photon_Bolt_NetworkId___Boxed { - struct HashSet_1_T_Slot_Photon_Bolt_NetworkId___Class *klass; - MonitorData *monitor; - struct HashSet_1_T_Slot_Photon_Bolt_NetworkId_ fields; -}; - struct HashSet_1_T_Slot_Photon_Bolt_NetworkId___Array { struct HashSet_1_T_Slot_Photon_Bolt_NetworkId___Array__Class *klass; MonitorData *monitor; @@ -911713,6 +924023,19 @@ struct IndexedSet_1_UnityEngine_UI_ICanvasElement_ { struct IndexedSet_1_UnityEngine_UI_ICanvasElement___Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UI_ICanvasElement_System_Int32_ { + int32_t hashCode; + int32_t next; + struct ICanvasElement *key; + int32_t value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UI_ICanvasElement_System_Int32___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UI_ICanvasElement_System_Int32___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UI_ICanvasElement_System_Int32_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_UI_ICanvasElement_System_Int32___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UI_ICanvasElement_System_Int32___Array *_entries; @@ -911732,19 +924055,6 @@ struct Dictionary_2_UnityEngine_UI_ICanvasElement_System_Int32_ { struct Dictionary_2_UnityEngine_UI_ICanvasElement_System_Int32___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UI_ICanvasElement_System_Int32_ { - int32_t hashCode; - int32_t next; - struct ICanvasElement *key; - int32_t value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UI_ICanvasElement_System_Int32___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UI_ICanvasElement_System_Int32___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UI_ICanvasElement_System_Int32_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UI_ICanvasElement_System_Int32___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UI_ICanvasElement_System_Int32___Array__Class *klass; MonitorData *monitor; @@ -912191,6 +924501,11 @@ struct IndexedSet_1_UnityEngine_UI_IClipper_ { struct IndexedSet_1_UnityEngine_UI_IClipper___Fields fields; }; +struct IClipper { + struct IClipper__Class *klass; + MonitorData *monitor; +}; + struct __declspec(align(8)) List_1_UnityEngine_UI_IClipper___Fields { struct IClipper__Array *_items; int32_t _size; @@ -912204,11 +924519,6 @@ struct List_1_UnityEngine_UI_IClipper_ { struct List_1_UnityEngine_UI_IClipper___Fields fields; }; -struct IClipper { - struct IClipper__Class *klass; - MonitorData *monitor; -}; - struct IClipper__Array { struct IClipper__Array__Class *klass; MonitorData *monitor; @@ -912222,6 +924532,19 @@ struct IEnumerator_1_UnityEngine_UI_IClipper_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UI_IClipper_System_Int32_ { + int32_t hashCode; + int32_t next; + struct IClipper *key; + int32_t value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UI_IClipper_System_Int32___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UI_IClipper_System_Int32___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UI_IClipper_System_Int32_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_UI_IClipper_System_Int32___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UI_IClipper_System_Int32___Array *_entries; @@ -912241,19 +924564,6 @@ struct Dictionary_2_UnityEngine_UI_IClipper_System_Int32_ { struct Dictionary_2_UnityEngine_UI_IClipper_System_Int32___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UI_IClipper_System_Int32_ { - int32_t hashCode; - int32_t next; - struct IClipper *key; - int32_t value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UI_IClipper_System_Int32___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UI_IClipper_System_Int32___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UI_IClipper_System_Int32_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UI_IClipper_System_Int32___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UI_IClipper_System_Int32___Array__Class *klass; MonitorData *monitor; @@ -913193,6 +925503,19 @@ struct GraphicRegistry { struct GraphicRegistry__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Canvas_UnityEngine_UI_Collections_IndexedSet_1_ { + int32_t hashCode; + int32_t next; + struct Canvas *key; + struct IndexedSet_1_UnityEngine_UI_Graphic_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Canvas_UnityEngine_UI_Collections_IndexedSet_1___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Canvas_UnityEngine_UI_Collections_IndexedSet_1___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Canvas_UnityEngine_UI_Collections_IndexedSet_1_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_Canvas_UnityEngine_UI_Collections_IndexedSet_1___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Canvas_UnityEngine_UI_Collections_IndexedSet_1___Array *_entries; @@ -913212,19 +925535,6 @@ struct Dictionary_2_UnityEngine_Canvas_UnityEngine_UI_Collections_IndexedSet_1_ struct Dictionary_2_UnityEngine_Canvas_UnityEngine_UI_Collections_IndexedSet_1___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Canvas_UnityEngine_UI_Collections_IndexedSet_1_ { - int32_t hashCode; - int32_t next; - struct Canvas *key; - struct IndexedSet_1_UnityEngine_UI_Graphic_ *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Canvas_UnityEngine_UI_Collections_IndexedSet_1___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Canvas_UnityEngine_UI_Collections_IndexedSet_1___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Canvas_UnityEngine_UI_Collections_IndexedSet_1_ fields; -}; - struct __declspec(align(8)) IndexedSet_1_UnityEngine_UI_Graphic___Fields { struct List_1_UnityEngine_UI_Graphic_ *m_List; struct Dictionary_2_UnityEngine_UI_Graphic_System_Int32_ *m_Dictionary; @@ -913237,6 +925547,19 @@ struct IndexedSet_1_UnityEngine_UI_Graphic_ { struct IndexedSet_1_UnityEngine_UI_Graphic___Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UI_Graphic_System_Int32_ { + int32_t hashCode; + int32_t next; + struct Graphic *key; + int32_t value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UI_Graphic_System_Int32___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UI_Graphic_System_Int32___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UI_Graphic_System_Int32_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_UI_Graphic_System_Int32___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UI_Graphic_System_Int32___Array *_entries; @@ -913256,19 +925579,6 @@ struct Dictionary_2_UnityEngine_UI_Graphic_System_Int32_ { struct Dictionary_2_UnityEngine_UI_Graphic_System_Int32___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UI_Graphic_System_Int32_ { - int32_t hashCode; - int32_t next; - struct Graphic *key; - int32_t value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UI_Graphic_System_Int32___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UI_Graphic_System_Int32___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UI_Graphic_System_Int32_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UI_Graphic_System_Int32___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UI_Graphic_System_Int32___Array__Class *klass; MonitorData *monitor; @@ -913959,6 +926269,21 @@ struct ICollection_1_UnityEngine_UI_Collections_IndexedSet_1___Class { struct ICollection_1_UnityEngine_UI_Collections_IndexedSet_1___VTable vtable; }; +struct IndexedSet_1_UnityEngine_UI_Graphic__1__VTable { +}; + +struct IndexedSet_1_UnityEngine_UI_Graphic__1__StaticFields { +}; + +struct IndexedSet_1_UnityEngine_UI_Graphic__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IndexedSet_1_UnityEngine_UI_Graphic__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IndexedSet_1_UnityEngine_UI_Graphic__1__VTable vtable; +}; + struct KeyValuePair_2_UnityEngine_Canvas_UnityEngine_UI_Collections_IndexedSet_1___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -914704,6 +927029,21 @@ struct PooledObject_1_UnityEngine_UI_LayoutRebuilder___Class { struct PooledObject_1_UnityEngine_UI_LayoutRebuilder___VTable vtable; }; +struct LayoutRebuilder___VTable { +}; + +struct LayoutRebuilder___StaticFields { +}; + +struct LayoutRebuilder___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct LayoutRebuilder___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct LayoutRebuilder___VTable vtable; +}; + struct ObjectPool_1_UnityEngine_UI_LayoutRebuilder___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -914930,6 +927270,21 @@ struct Func_2_UnityEngine_UI_ILayoutElement_Single___Class { struct Func_2_UnityEngine_UI_ILayoutElement_Single___VTable vtable; }; +struct ILayoutElement___VTable { +}; + +struct ILayoutElement___StaticFields { +}; + +struct ILayoutElement___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ILayoutElement___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ILayoutElement___VTable vtable; +}; + struct LayoutUtility_c { struct LayoutUtility_c__Class *klass; MonitorData *monitor; @@ -916435,19 +928790,6 @@ struct EventTrigger { struct EventTrigger__Fields fields; }; -struct __declspec(align(8)) List_1_UnityEngine_EventSystems_EventTrigger_Entry___Fields { - struct EventTrigger_Entry__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_EventSystems_EventTrigger_Entry_ { - struct List_1_UnityEngine_EventSystems_EventTrigger_Entry___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_EventSystems_EventTrigger_Entry___Fields fields; -}; - struct __declspec(align(8)) EventTrigger_Entry__Fields { #if defined(_CPLUSPLUS_) EventTriggerType__Enum eventID; @@ -916463,6 +928805,19 @@ struct EventTrigger_Entry { struct EventTrigger_Entry__Fields fields; }; +struct __declspec(align(8)) List_1_UnityEngine_EventSystems_EventTrigger_Entry___Fields { + struct EventTrigger_Entry__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_EventSystems_EventTrigger_Entry_ { + struct List_1_UnityEngine_EventSystems_EventTrigger_Entry___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_EventSystems_EventTrigger_Entry___Fields fields; +}; + struct UnityEvent_1_UnityEngine_EventSystems_BaseEventData___Fields { struct UnityEventBase__Fields _; struct Object__Array *m_InvokeArray; @@ -917755,19 +930110,6 @@ struct PointerInputModule_MouseState { struct PointerInputModule_MouseState__Fields fields; }; -struct __declspec(align(8)) List_1_UnityEngine_EventSystems_PointerInputModule_ButtonState___Fields { - struct PointerInputModule_ButtonState__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_EventSystems_PointerInputModule_ButtonState_ { - struct List_1_UnityEngine_EventSystems_PointerInputModule_ButtonState___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_EventSystems_PointerInputModule_ButtonState___Fields fields; -}; - struct __declspec(align(8)) PointerInputModule_ButtonState__Fields { #if defined(_CPLUSPLUS_) PointerEventData_InputButton__Enum m_Button; @@ -917783,6 +930125,19 @@ struct PointerInputModule_ButtonState { struct PointerInputModule_ButtonState__Fields fields; }; +struct __declspec(align(8)) List_1_UnityEngine_EventSystems_PointerInputModule_ButtonState___Fields { + struct PointerInputModule_ButtonState__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_EventSystems_PointerInputModule_ButtonState_ { + struct List_1_UnityEngine_EventSystems_PointerInputModule_ButtonState___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_EventSystems_PointerInputModule_ButtonState___Fields fields; +}; + struct __declspec(align(8)) PointerInputModule_MouseButtonEventData__Fields { #if defined(_CPLUSPLUS_) PointerEventData_FramePressState__Enum buttonState; @@ -918767,6 +931122,21 @@ struct BipedReferences_AutoDetectParams__Boxed { struct BipedReferences_AutoDetectParams fields; }; +struct BipedReferences___VTable { +}; + +struct BipedReferences___StaticFields { +}; + +struct BipedReferences___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BipedReferences___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BipedReferences___VTable vtable; +}; + struct BipedReferences_AutoDetectParams__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -918786,6 +931156,21 @@ struct BipedReferences_AutoDetectParams__Class { struct BipedReferences_AutoDetectParams__VTable vtable; }; +struct Transform__1__VTable { +}; + +struct Transform__1__StaticFields { +}; + +struct Transform__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Transform__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Transform__1__VTable vtable; +}; + struct Comments__Fields { struct MonoBehaviour__Fields _; struct String *text; @@ -919556,6 +931941,18 @@ struct BehaviourFall_SmoothActivate_d_23__Class { struct BehaviourFall_SmoothActivate_d_23__VTable vtable; }; +struct BehaviourPuppet_CollisionResistanceMultiplier { + struct LayerMask layers; + float multiplier; + float collisionThreshold; +}; + +struct BehaviourPuppet_CollisionResistanceMultiplier__Boxed { + struct BehaviourPuppet_CollisionResistanceMultiplier__Class *klass; + MonitorData *monitor; + struct BehaviourPuppet_CollisionResistanceMultiplier fields; +}; + struct BehaviourPuppet_MuscleProps { float unpinParents; float unpinChildren; @@ -919577,6 +931974,18 @@ struct BehaviourPuppet_MuscleProps__Boxed { struct BehaviourPuppet_MuscleProps fields; }; +struct BehaviourPuppet_MusclePropsGroup { + struct String *name; + struct Muscle_Group__Enum__Array *groups; + struct BehaviourPuppet_MuscleProps props; +}; + +struct BehaviourPuppet_MusclePropsGroup__Boxed { + struct BehaviourPuppet_MusclePropsGroup__Class *klass; + MonitorData *monitor; + struct BehaviourPuppet_MusclePropsGroup fields; +}; + #if defined(_CPLUSPLUS_) enum class BehaviourPuppet_State__Enum : int32_t { Puppet = 0x00000000, @@ -919759,18 +932168,6 @@ struct Weight { struct Weight__Fields fields; }; -struct BehaviourPuppet_CollisionResistanceMultiplier { - struct LayerMask layers; - float multiplier; - float collisionThreshold; -}; - -struct BehaviourPuppet_CollisionResistanceMultiplier__Boxed { - struct BehaviourPuppet_CollisionResistanceMultiplier__Class *klass; - MonitorData *monitor; - struct BehaviourPuppet_CollisionResistanceMultiplier fields; -}; - struct BehaviourPuppet_CollisionResistanceMultiplier__Array { struct BehaviourPuppet_CollisionResistanceMultiplier__Array__Class *klass; MonitorData *monitor; @@ -919779,18 +932176,6 @@ struct BehaviourPuppet_CollisionResistanceMultiplier__Array { struct BehaviourPuppet_CollisionResistanceMultiplier vector[32]; }; -struct BehaviourPuppet_MusclePropsGroup { - struct String *name; - struct Muscle_Group__Enum__Array *groups; - struct BehaviourPuppet_MuscleProps props; -}; - -struct BehaviourPuppet_MusclePropsGroup__Boxed { - struct BehaviourPuppet_MusclePropsGroup__Class *klass; - MonitorData *monitor; - struct BehaviourPuppet_MusclePropsGroup fields; -}; - struct BehaviourPuppet_MusclePropsGroup__Array { struct BehaviourPuppet_MusclePropsGroup__Array__Class *klass; MonitorData *monitor; @@ -920862,6 +933247,21 @@ struct Cloth__Array__Class { struct Cloth__Array__VTable vtable; }; +struct Boolean__1__VTable { +}; + +struct Boolean__1__StaticFields { +}; + +struct Boolean__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Boolean__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Boolean__1__VTable vtable; +}; + struct __declspec(align(8)) PuppetMaster_DisabledToActive_d_171__Fields { int32_t __1__state; struct Object *__2__current; @@ -921181,6 +933581,29 @@ struct MuscleLite__Array__Class { struct MuscleLite__Array__VTable vtable; }; +struct __declspec(align(8)) PuppetControllerLite_Group__Fields { + struct String *name; + struct Int32__Array *indices; + float pinWeightMlp; + float muscleWeightMlp; + float drag; + float blendInTime; + float blendOutTime; + bool _enabled_k__BackingField; + float _mappingWeight_k__BackingField; + float dam; + float damTime; + float damV; + float map; + float mapV; +}; + +struct PuppetControllerLite_Group { + struct PuppetControllerLite_Group__Class *klass; + MonitorData *monitor; + struct PuppetControllerLite_Group__Fields fields; +}; + struct PuppetControllerLite__Fields { struct MonoBehaviour__Fields _; struct PuppetMasterLite *puppetMaster; @@ -921258,29 +933681,6 @@ struct PuppetMasterLite_PuppetMasterLiteDelegate { struct PuppetMasterLite_PuppetMasterLiteDelegate__Fields fields; }; -struct __declspec(align(8)) PuppetControllerLite_Group__Fields { - struct String *name; - struct Int32__Array *indices; - float pinWeightMlp; - float muscleWeightMlp; - float drag; - float blendInTime; - float blendOutTime; - bool _enabled_k__BackingField; - float _mappingWeight_k__BackingField; - float dam; - float damTime; - float damV; - float map; - float mapV; -}; - -struct PuppetControllerLite_Group { - struct PuppetControllerLite_Group__Class *klass; - MonitorData *monitor; - struct PuppetControllerLite_Group__Fields fields; -}; - struct PuppetControllerLite_Group__Array { struct PuppetControllerLite_Group__Array__Class *klass; MonitorData *monitor; @@ -922232,6 +934632,21 @@ struct CharacterJoint__Class { struct CharacterJoint__VTable vtable; }; +struct ConfigurableJoint___VTable { +}; + +struct ConfigurableJoint___StaticFields { +}; + +struct ConfigurableJoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ConfigurableJoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ConfigurableJoint___VTable vtable; +}; + struct SoftJointLimit { float m_Limit; float m_Bounciness; @@ -924834,6 +937249,21 @@ struct LeanAudioOptions__Class { struct LeanAudioOptions__VTable vtable; }; +struct AnimationCurve___VTable { +}; + +struct AnimationCurve___StaticFields { +}; + +struct AnimationCurve___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct AnimationCurve___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct AnimationCurve___VTable vtable; +}; + struct LeanAudio { struct LeanAudio__Class *klass; MonitorData *monitor; @@ -925349,6 +937779,22 @@ struct LTDescrOptional { struct LTDescrOptional__Fields fields; }; +struct __declspec(align(8)) LTBezier__Fields { + float length; + struct Vector3 a; + struct Vector3 aa; + struct Vector3 bb; + struct Vector3 cc; + float len; + struct Single__Array *arcLengths; +}; + +struct LTBezier { + struct LTBezier__Class *klass; + MonitorData *monitor; + struct LTBezier__Fields fields; +}; + struct __declspec(align(8)) LTBezierPath__Fields { struct Vector3__Array *pts; float length; @@ -925366,22 +937812,6 @@ struct LTBezierPath { struct LTBezierPath__Fields fields; }; -struct __declspec(align(8)) LTBezier__Fields { - float length; - struct Vector3 a; - struct Vector3 aa; - struct Vector3 bb; - struct Vector3 cc; - float len; - struct Single__Array *arcLengths; -}; - -struct LTBezier { - struct LTBezier__Class *klass; - MonitorData *monitor; - struct LTBezier__Fields fields; -}; - struct LTBezier__Array { struct LTBezier__Array__Class *klass; MonitorData *monitor; @@ -928597,6 +941027,21 @@ struct Protocol18_GpType__Enum__Class { struct Protocol18_GpType__Enum__VTable vtable; }; +struct Protocol18_GpType___VTable { +}; + +struct Protocol18_GpType___StaticFields { +}; + +struct Protocol18_GpType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Protocol18_GpType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Protocol18_GpType___VTable vtable; +}; + struct Hashtable_1__Array { struct Hashtable_1__Array__Class *klass; MonitorData *monitor; @@ -929440,6 +941885,21 @@ struct MaterialReference_1__Array__Class { struct MaterialReference_1__Array__VTable vtable; }; +struct MaterialReference__1__VTable { +}; + +struct MaterialReference__1__StaticFields { +}; + +struct MaterialReference__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MaterialReference__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MaterialReference__1__VTable vtable; +}; + struct __declspec(align(8)) MaterialReferenceManager_1__Fields { struct Dictionary_2_System_Int32_UnityEngine_Material_ *m_FontMaterialReferenceLookup; struct Dictionary_2_System_Int32_UnityEngine_TextCore_Text_FontAsset_ *m_FontAssetReferenceLookup; @@ -929453,6 +941913,19 @@ struct MaterialReferenceManager_1 { struct MaterialReferenceManager_1__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_SpriteAsset_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct SpriteAsset *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_SpriteAsset___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_SpriteAsset___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_SpriteAsset_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_UnityEngine_TextCore_Text_SpriteAsset___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_SpriteAsset___Array *_entries; @@ -929472,19 +941945,6 @@ struct Dictionary_2_System_Int32_UnityEngine_TextCore_Text_SpriteAsset_ { struct Dictionary_2_System_Int32_UnityEngine_TextCore_Text_SpriteAsset___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_SpriteAsset_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct SpriteAsset *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_SpriteAsset___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_SpriteAsset___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_SpriteAsset_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_SpriteAsset___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_SpriteAsset___Array__Class *klass; MonitorData *monitor; @@ -929547,6 +942007,19 @@ struct IEnumerable_1_UnityEngine_TextCore_Text_SpriteAsset_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_TextColorGradient_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct TextColorGradient *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_TextColorGradient___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_TextColorGradient___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_TextColorGradient_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextColorGradient___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_TextColorGradient___Array *_entries; @@ -929566,19 +942039,6 @@ struct Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextColorGradient_ { struct Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextColorGradient___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_TextColorGradient_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct TextColorGradient *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_TextColorGradient___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_TextColorGradient___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_TextColorGradient_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_TextColorGradient___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_TextColorGradient___Array__Class *klass; MonitorData *monitor; @@ -929776,6 +942236,21 @@ struct ICollection_1_UnityEngine_TextCore_Text_SpriteAsset___Class { struct ICollection_1_UnityEngine_TextCore_Text_SpriteAsset___VTable vtable; }; +struct SpriteAsset___VTable { +}; + +struct SpriteAsset___StaticFields { +}; + +struct SpriteAsset___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SpriteAsset___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SpriteAsset___VTable vtable; +}; + struct KeyValuePair_2_System_Int32_UnityEngine_TextCore_Text_SpriteAsset___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -930054,6 +942529,21 @@ struct ICollection_1_UnityEngine_TextCore_Text_TextColorGradient___Class { struct ICollection_1_UnityEngine_TextCore_Text_TextColorGradient___VTable vtable; }; +struct TextColorGradient___VTable { +}; + +struct TextColorGradient___StaticFields { +}; + +struct TextColorGradient___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TextColorGradient___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TextColorGradient___VTable vtable; +}; + struct KeyValuePair_2_System_Int32_UnityEngine_TextCore_Text_TextColorGradient___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -930504,6 +942994,69 @@ struct WordWrapState_1__Boxed { struct WordWrapState_1 fields; }; +#if defined(_CPLUSPLUS_) +enum class TagValueType__Enum_1 : int32_t { + None = 0x00000000, + NumericalValue = 0x00000001, + StringValue = 0x00000002, + ColorValue = 0x00000004, +}; + +#else +enum TagValueType__Enum_1 { + TagValueType__Enum_1_None = 0x00000000, + TagValueType__Enum_1_NumericalValue = 0x00000001, + TagValueType__Enum_1_StringValue = 0x00000002, + TagValueType__Enum_1_ColorValue = 0x00000004, +}; + +#endif +struct TagValueType__Enum_1__Boxed { + struct TagValueType__Enum_1__Class *klass; + MonitorData *monitor; + #if defined(_CPLUSPLUS_) + TagValueType__Enum_1 value; + #else + int32_t value; + #endif +}; + +struct RichTextTagAttribute_1 { + int32_t nameHashCode; + int32_t valueHashCode; + #if defined(_CPLUSPLUS_) + TagValueType__Enum_1 valueType; + #else + int32_t valueType; + #endif + int32_t valueStartIndex; + int32_t valueLength; +}; + +struct RichTextTagAttribute_1__Boxed { + struct RichTextTagAttribute_1__Class *klass; + MonitorData *monitor; + struct RichTextTagAttribute_1 fields; +}; + +struct XmlTagAttribute { + int32_t nameHashCode; + #if defined(_CPLUSPLUS_) + TagValueType__Enum_1 valueType; + #else + int32_t valueType; + #endif + int32_t valueStartIndex; + int32_t valueLength; + int32_t valueHashCode; +}; + +struct XmlTagAttribute__Boxed { + struct XmlTagAttribute__Class *klass; + MonitorData *monitor; + struct XmlTagAttribute fields; +}; + struct TextGenerator_SpecialCharacter { struct Character *character; struct FontAsset *fontAsset; @@ -930660,51 +943213,6 @@ struct TextAlignment__Enum_1__Array { TextAlignment__Enum_1 vector[32]; }; -#if defined(_CPLUSPLUS_) -enum class TagValueType__Enum_1 : int32_t { - None = 0x00000000, - NumericalValue = 0x00000001, - StringValue = 0x00000002, - ColorValue = 0x00000004, -}; - -#else -enum TagValueType__Enum_1 { - TagValueType__Enum_1_None = 0x00000000, - TagValueType__Enum_1_NumericalValue = 0x00000001, - TagValueType__Enum_1_StringValue = 0x00000002, - TagValueType__Enum_1_ColorValue = 0x00000004, -}; - -#endif -struct TagValueType__Enum_1__Boxed { - struct TagValueType__Enum_1__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - TagValueType__Enum_1 value; - #else - int32_t value; - #endif -}; - -struct RichTextTagAttribute_1 { - int32_t nameHashCode; - int32_t valueHashCode; - #if defined(_CPLUSPLUS_) - TagValueType__Enum_1 valueType; - #else - int32_t valueType; - #endif - int32_t valueStartIndex; - int32_t valueLength; -}; - -struct RichTextTagAttribute_1__Boxed { - struct RichTextTagAttribute_1__Class *klass; - MonitorData *monitor; - struct RichTextTagAttribute_1 fields; -}; - struct RichTextTagAttribute_1__Array { struct RichTextTagAttribute_1__Array__Class *klass; MonitorData *monitor; @@ -930713,24 +943221,6 @@ struct RichTextTagAttribute_1__Array { struct RichTextTagAttribute_1 vector[32]; }; -struct XmlTagAttribute { - int32_t nameHashCode; - #if defined(_CPLUSPLUS_) - TagValueType__Enum_1 valueType; - #else - int32_t valueType; - #endif - int32_t valueStartIndex; - int32_t valueLength; - int32_t valueHashCode; -}; - -struct XmlTagAttribute__Boxed { - struct XmlTagAttribute__Class *klass; - MonitorData *monitor; - struct XmlTagAttribute fields; -}; - struct XmlTagAttribute__Array { struct XmlTagAttribute__Array__Class *klass; MonitorData *monitor; @@ -931086,6 +943576,51 @@ struct TextGenerator_1__Class { struct TextGenerator_1__VTable vtable; }; +struct WordWrapState__1__VTable { +}; + +struct WordWrapState__1__StaticFields { +}; + +struct WordWrapState__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct WordWrapState__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct WordWrapState__1__VTable vtable; +}; + +struct TextProcessingStack_1_System_Int32__1__VTable { +}; + +struct TextProcessingStack_1_System_Int32__1__StaticFields { +}; + +struct TextProcessingStack_1_System_Int32__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TextProcessingStack_1_System_Int32__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TextProcessingStack_1_System_Int32__1__VTable vtable; +}; + +struct TextGenerationSettings___VTable { +}; + +struct TextGenerationSettings___StaticFields { +}; + +struct TextGenerationSettings___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TextGenerationSettings___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TextGenerationSettings___VTable vtable; +}; + struct TextResourceManager_FontAssetRef { int32_t nameHashCode; int32_t familyNameHashCode; @@ -931568,17 +944103,6 @@ struct PostProcessEffectRenderer_1_Bloom_ { struct PostProcessEffectRenderer_1_Bloom___Fields fields; }; -struct BloomRenderer__Fields { - struct PostProcessEffectRenderer_1_Bloom___Fields _; - struct BloomRenderer_Level__Array *m_Pyramid; -}; - -struct BloomRenderer { - struct BloomRenderer__Class *klass; - MonitorData *monitor; - struct BloomRenderer__Fields fields; -}; - struct BloomRenderer_Level { int32_t down; int32_t up; @@ -931590,6 +944114,17 @@ struct BloomRenderer_Level__Boxed { struct BloomRenderer_Level fields; }; +struct BloomRenderer__Fields { + struct PostProcessEffectRenderer_1_Bloom___Fields _; + struct BloomRenderer_Level__Array *m_Pyramid; +}; + +struct BloomRenderer { + struct BloomRenderer__Class *klass; + MonitorData *monitor; + struct BloomRenderer__Fields fields; +}; + struct BloomRenderer_Level__Array { struct BloomRenderer_Level__Array__Class *klass; MonitorData *monitor; @@ -931780,21 +944315,6 @@ struct ColorGradingRenderer { struct ColorGradingRenderer__Fields fields; }; -struct __declspec(align(8)) HableCurve_1__Fields { - float _whitePoint_k__BackingField; - float _inverseWhitePoint_k__BackingField; - float _x0_k__BackingField; - float _x1_k__BackingField; - struct HableCurve_Segment_1__Array *m_Segments; - struct HableCurve_Uniforms_1 *uniforms; -}; - -struct HableCurve_1 { - struct HableCurve_1__Class *klass; - MonitorData *monitor; - struct HableCurve_1__Fields fields; -}; - struct __declspec(align(8)) HableCurve_Segment_1__Fields { float offsetX; float offsetY; @@ -931810,6 +944330,21 @@ struct HableCurve_Segment_1 { struct HableCurve_Segment_1__Fields fields; }; +struct __declspec(align(8)) HableCurve_1__Fields { + float _whitePoint_k__BackingField; + float _inverseWhitePoint_k__BackingField; + float _x0_k__BackingField; + float _x1_k__BackingField; + struct HableCurve_Segment_1__Array *m_Segments; + struct HableCurve_Uniforms_1 *uniforms; +}; + +struct HableCurve_1 { + struct HableCurve_1__Class *klass; + MonitorData *monitor; + struct HableCurve_1__Fields fields; +}; + struct HableCurve_Segment_1__Array { struct HableCurve_Segment_1__Array__Class *klass; MonitorData *monitor; @@ -932709,20 +945244,6 @@ struct PostProcessEffectRenderer_1_ScreenSpaceReflections_ { struct PostProcessEffectRenderer_1_ScreenSpaceReflections___Fields fields; }; -struct ScreenSpaceReflectionsRenderer__Fields { - struct PostProcessEffectRenderer_1_ScreenSpaceReflections___Fields _; - struct RenderTexture *m_Resolve; - struct RenderTexture *m_History; - struct Int32__Array *m_MipIDs; - struct ScreenSpaceReflectionsRenderer_QualityPreset__Array *m_Presets; -}; - -struct ScreenSpaceReflectionsRenderer { - struct ScreenSpaceReflectionsRenderer__Class *klass; - MonitorData *monitor; - struct ScreenSpaceReflectionsRenderer__Fields fields; -}; - struct __declspec(align(8)) ScreenSpaceReflectionsRenderer_QualityPreset__Fields { int32_t maximumIterationCount; float thickness; @@ -932739,6 +945260,20 @@ struct ScreenSpaceReflectionsRenderer_QualityPreset { struct ScreenSpaceReflectionsRenderer_QualityPreset__Fields fields; }; +struct ScreenSpaceReflectionsRenderer__Fields { + struct PostProcessEffectRenderer_1_ScreenSpaceReflections___Fields _; + struct RenderTexture *m_Resolve; + struct RenderTexture *m_History; + struct Int32__Array *m_MipIDs; + struct ScreenSpaceReflectionsRenderer_QualityPreset__Array *m_Presets; +}; + +struct ScreenSpaceReflectionsRenderer { + struct ScreenSpaceReflectionsRenderer__Class *klass; + MonitorData *monitor; + struct ScreenSpaceReflectionsRenderer__Fields fields; +}; + struct ScreenSpaceReflectionsRenderer_QualityPreset__Array { struct ScreenSpaceReflectionsRenderer_QualityPreset__Array__Class *klass; MonitorData *monitor; @@ -933337,6 +945872,19 @@ struct PostProcessManager { struct PostProcessManager__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_UnityEngine_Rendering_PostProcessing_PostProcessVolume_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct List_1_UnityEngine_Rendering_PostProcessing_PostProcessVolume_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_UnityEngine_Rendering_PostProcessing_PostProcessVolume___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_UnityEngine_Rendering_PostProcessing_PostProcessVolume___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_UnityEngine_Rendering_PostProcessing_PostProcessVolume_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_List_1_UnityEngine_Rendering_PostProcessing_PostProcessVolume___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_UnityEngine_Rendering_PostProcessing_PostProcessVolume___Array *_entries; @@ -933356,19 +945904,6 @@ struct Dictionary_2_System_Int32_List_1_UnityEngine_Rendering_PostProcessing_Pos struct Dictionary_2_System_Int32_List_1_UnityEngine_Rendering_PostProcessing_PostProcessVolume___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_UnityEngine_Rendering_PostProcessing_PostProcessVolume_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct List_1_UnityEngine_Rendering_PostProcessing_PostProcessVolume_ *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_UnityEngine_Rendering_PostProcessing_PostProcessVolume___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_UnityEngine_Rendering_PostProcessing_PostProcessVolume___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_UnityEngine_Rendering_PostProcessing_PostProcessVolume_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_UnityEngine_Rendering_PostProcessing_PostProcessVolume___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_UnityEngine_Rendering_PostProcessing_PostProcessVolume___Array__Class *klass; MonitorData *monitor; @@ -933444,6 +945979,19 @@ struct IEnumerable_1_List_1_UnityEngine_Rendering_PostProcessing_PostProcessVolu MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Rendering_PostProcessing_PostProcessAttribute_ { + int32_t hashCode; + int32_t next; + struct Type *key; + struct PostProcessAttribute *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Rendering_PostProcessing_PostProcessAttribute___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Rendering_PostProcessing_PostProcessAttribute___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Rendering_PostProcessing_PostProcessAttribute_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Type_UnityEngine_Rendering_PostProcessing_PostProcessAttribute___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Rendering_PostProcessing_PostProcessAttribute___Array *_entries; @@ -933463,19 +946011,6 @@ struct Dictionary_2_System_Type_UnityEngine_Rendering_PostProcessing_PostProcess struct Dictionary_2_System_Type_UnityEngine_Rendering_PostProcessing_PostProcessAttribute___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Rendering_PostProcessing_PostProcessAttribute_ { - int32_t hashCode; - int32_t next; - struct Type *key; - struct PostProcessAttribute *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Rendering_PostProcessing_PostProcessAttribute___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Rendering_PostProcessing_PostProcessAttribute___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Rendering_PostProcessing_PostProcessAttribute_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Rendering_PostProcessing_PostProcessAttribute___Array { struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Rendering_PostProcessing_PostProcessAttribute___Array__Class *klass; MonitorData *monitor; @@ -933704,6 +946239,21 @@ struct ICollection_1_List_1_UnityEngine_Rendering_PostProcessing_PostProcessVolu struct ICollection_1_List_1_UnityEngine_Rendering_PostProcessing_PostProcessVolume___VTable vtable; }; +struct List_1_UnityEngine_Rendering_PostProcessing_PostProcessVolume__1__VTable { +}; + +struct List_1_UnityEngine_Rendering_PostProcessing_PostProcessVolume__1__StaticFields { +}; + +struct List_1_UnityEngine_Rendering_PostProcessing_PostProcessVolume__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_Rendering_PostProcessing_PostProcessVolume__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_Rendering_PostProcessing_PostProcessVolume__1__VTable vtable; +}; + struct KeyValuePair_2_System_Int32_List_1_UnityEngine_Rendering_PostProcessing_PostProcessVolume___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -933982,6 +946532,21 @@ struct ICollection_1_UnityEngine_Rendering_PostProcessing_PostProcessAttribute__ struct ICollection_1_UnityEngine_Rendering_PostProcessing_PostProcessAttribute___VTable vtable; }; +struct PostProcessAttribute___VTable { +}; + +struct PostProcessAttribute___StaticFields { +}; + +struct PostProcessAttribute___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PostProcessAttribute___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PostProcessAttribute___VTable vtable; +}; + struct KeyValuePair_2_System_Type_UnityEngine_Rendering_PostProcessing_PostProcessAttribute___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -934749,6 +947314,36 @@ struct ZipCipherStream__Class { struct ZipCipherStream__VTable vtable; }; +struct CountingStream___VTable { +}; + +struct CountingStream___StaticFields { +}; + +struct CountingStream___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CountingStream___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CountingStream___VTable vtable; +}; + +struct CrcCalculatorStream___VTable { +}; + +struct CrcCalculatorStream___StaticFields { +}; + +struct CrcCalculatorStream___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CrcCalculatorStream___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CrcCalculatorStream___VTable vtable; +}; + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_Pathfinding_Ionic_Zip_ZipEntry_ { struct Dictionary_2_System_String_Pathfinding_Ionic_Zip_ZipEntry_ *_dictionary; int32_t _index; @@ -945900,6 +958495,26 @@ struct StateSerializerTypeIds__Class { struct StateSerializerTypeIds__VTable vtable; }; +struct OpenXRFeature__Fields { + struct ScriptableObject__Fields _; + bool m_enabled; + bool _failedInitialization_k__BackingField; + struct String *nameUi; + struct String *version; + struct String *featureIdInternal; + struct String *openxrExtensionStrings; + struct String *company; + int32_t priority; + bool required; + bool internalFieldsUpdated; +}; + +struct OpenXRFeature { + struct OpenXRFeature__Class *klass; + MonitorData *monitor; + struct OpenXRFeature__Fields fields; +}; + #if defined(_CPLUSPLUS_) enum class OpenXRSettings_RenderMode__Enum : int32_t { MultiPass = 0x00000000, @@ -945971,26 +958586,6 @@ struct OpenXRSettings { struct OpenXRSettings__Fields fields; }; -struct OpenXRFeature__Fields { - struct ScriptableObject__Fields _; - bool m_enabled; - bool _failedInitialization_k__BackingField; - struct String *nameUi; - struct String *version; - struct String *featureIdInternal; - struct String *openxrExtensionStrings; - struct String *company; - int32_t priority; - bool required; - bool internalFieldsUpdated; -}; - -struct OpenXRFeature { - struct OpenXRFeature__Class *klass; - MonitorData *monitor; - struct OpenXRFeature__Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class XrEnvironmentBlendMode__Enum : int32_t { Opaque = 0x00000001, @@ -946657,6 +959252,19 @@ struct IEnumerator_1_UnityEngine_Rendering_GraphicsDeviceType_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_ISubsystem_ { + int32_t hashCode; + int32_t next; + struct Type *key; + struct ISubsystem *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_ISubsystem___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_ISubsystem___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_ISubsystem_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Type_UnityEngine_ISubsystem___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_ISubsystem___Array *_entries; @@ -946676,19 +959284,6 @@ struct Dictionary_2_System_Type_UnityEngine_ISubsystem_ { struct Dictionary_2_System_Type_UnityEngine_ISubsystem___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_ISubsystem_ { - int32_t hashCode; - int32_t next; - struct Type *key; - struct ISubsystem *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_ISubsystem___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_ISubsystem___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_ISubsystem_ fields; -}; - struct ISubsystem { struct ISubsystem__Class *klass; MonitorData *monitor; @@ -946769,19 +959364,6 @@ struct IEnumerable_1_UnityEngine_ISubsystem_ { MonitorData *monitor; }; -struct __declspec(align(8)) List_1_UnityEngine_XR_XRDisplaySubsystemDescriptor___Fields { - struct XRDisplaySubsystemDescriptor__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_XR_XRDisplaySubsystemDescriptor_ { - struct List_1_UnityEngine_XR_XRDisplaySubsystemDescriptor___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_XR_XRDisplaySubsystemDescriptor___Fields fields; -}; - struct __declspec(align(8)) IntegratedSubsystemDescriptor__Fields { void *m_Ptr; }; @@ -946812,6 +959394,19 @@ struct XRDisplaySubsystemDescriptor { struct XRDisplaySubsystemDescriptor__Fields fields; }; +struct __declspec(align(8)) List_1_UnityEngine_XR_XRDisplaySubsystemDescriptor___Fields { + struct XRDisplaySubsystemDescriptor__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_XR_XRDisplaySubsystemDescriptor_ { + struct List_1_UnityEngine_XR_XRDisplaySubsystemDescriptor___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_XR_XRDisplaySubsystemDescriptor___Fields fields; +}; + struct XRDisplaySubsystemDescriptor__Array { struct XRDisplaySubsystemDescriptor__Array__Class *klass; MonitorData *monitor; @@ -946825,19 +959420,6 @@ struct IEnumerator_1_UnityEngine_XR_XRDisplaySubsystemDescriptor_ { MonitorData *monitor; }; -struct __declspec(align(8)) List_1_UnityEngine_XR_XRInputSubsystemDescriptor___Fields { - struct XRInputSubsystemDescriptor__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_XR_XRInputSubsystemDescriptor_ { - struct List_1_UnityEngine_XR_XRInputSubsystemDescriptor___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_XR_XRInputSubsystemDescriptor___Fields fields; -}; - struct IntegratedSubsystemDescriptor_1_UnityEngine_XR_XRInputSubsystem___Fields { struct IntegratedSubsystemDescriptor__Fields _; }; @@ -946858,6 +959440,19 @@ struct XRInputSubsystemDescriptor { struct XRInputSubsystemDescriptor__Fields fields; }; +struct __declspec(align(8)) List_1_UnityEngine_XR_XRInputSubsystemDescriptor___Fields { + struct XRInputSubsystemDescriptor__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_XR_XRInputSubsystemDescriptor_ { + struct List_1_UnityEngine_XR_XRInputSubsystemDescriptor___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_XR_XRInputSubsystemDescriptor___Fields fields; +}; + struct XRInputSubsystemDescriptor__Array { struct XRInputSubsystemDescriptor__Array__Class *klass; MonitorData *monitor; @@ -947175,6 +959770,21 @@ struct ICollection_1_UnityEngine_ISubsystem___Class { struct ICollection_1_UnityEngine_ISubsystem___VTable vtable; }; +struct ISubsystem___VTable { +}; + +struct ISubsystem___StaticFields { +}; + +struct ISubsystem___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ISubsystem___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ISubsystem___VTable vtable; +}; + struct KeyValuePair_2_System_Type_UnityEngine_ISubsystem___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -948330,6 +960940,11 @@ struct XrPosef__Class { struct XrPosef__VTable vtable; }; +struct InputProcessor_1_UnityEngine_XR_OpenXR_Input_Haptic_ { + struct InputProcessor_1_UnityEngine_XR_OpenXR_Input_Haptic___Class *klass; + MonitorData *monitor; +}; + struct InlinedArray_1_UnityEngine_InputSystem_InputProcessor_1__11 { int32_t length; struct InputProcessor_1_UnityEngine_XR_OpenXR_Input_Haptic_ *firstValue; @@ -948375,11 +960990,6 @@ struct HapticControl { struct HapticControl__Fields fields; }; -struct InputProcessor_1_UnityEngine_XR_OpenXR_Input_Haptic_ { - struct InputProcessor_1_UnityEngine_XR_OpenXR_Input_Haptic___Class *klass; - MonitorData *monitor; -}; - struct InputProcessor_1_UnityEngine_XR_OpenXR_Input_Haptic___Array { struct InputProcessor_1_UnityEngine_XR_OpenXR_Input_Haptic___Array__Class *klass; MonitorData *monitor; @@ -948660,19 +961270,6 @@ struct OpenXRInteractionFeature { struct OpenXRInteractionFeature__Fields fields; }; -struct __declspec(align(8)) List_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionMapConfig___Fields { - struct OpenXRInteractionFeature_ActionMapConfig__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionMapConfig_ { - struct List_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionMapConfig___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionMapConfig___Fields fields; -}; - struct __declspec(align(8)) OpenXRInteractionFeature_ActionMapConfig__Fields { struct String *name; struct String *localizedName; @@ -948689,17 +961286,17 @@ struct OpenXRInteractionFeature_ActionMapConfig { struct OpenXRInteractionFeature_ActionMapConfig__Fields fields; }; -struct __declspec(align(8)) List_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_DeviceConfig___Fields { - struct OpenXRInteractionFeature_DeviceConfig__Array *_items; +struct __declspec(align(8)) List_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionMapConfig___Fields { + struct OpenXRInteractionFeature_ActionMapConfig__Array *_items; int32_t _size; int32_t _version; struct Object *_syncRoot; }; -struct List_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_DeviceConfig_ { - struct List_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_DeviceConfig___Class *klass; +struct List_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionMapConfig_ { + struct List_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionMapConfig___Class *klass; MonitorData *monitor; - struct List_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_DeviceConfig___Fields fields; + struct List_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionMapConfig___Fields fields; }; struct __declspec(align(8)) OpenXRInteractionFeature_DeviceConfig__Fields { @@ -948717,6 +961314,19 @@ struct OpenXRInteractionFeature_DeviceConfig { struct OpenXRInteractionFeature_DeviceConfig__Fields fields; }; +struct __declspec(align(8)) List_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_DeviceConfig___Fields { + struct OpenXRInteractionFeature_DeviceConfig__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_DeviceConfig_ { + struct List_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_DeviceConfig___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_DeviceConfig___Fields fields; +}; + struct OpenXRInteractionFeature_DeviceConfig__Array { struct OpenXRInteractionFeature_DeviceConfig__Array__Class *klass; MonitorData *monitor; @@ -948730,19 +961340,6 @@ struct IEnumerator_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_Dev MonitorData *monitor; }; -struct __declspec(align(8)) List_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionConfig___Fields { - struct OpenXRInteractionFeature_ActionConfig__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionConfig_ { - struct List_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionConfig___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionConfig___Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class OpenXRInteractionFeature_ActionType__Enum : int32_t { Binary = 0x00000000, @@ -948793,17 +961390,17 @@ struct OpenXRInteractionFeature_ActionConfig { struct OpenXRInteractionFeature_ActionConfig__Fields fields; }; -struct __declspec(align(8)) List_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionBinding___Fields { - struct OpenXRInteractionFeature_ActionBinding__Array *_items; +struct __declspec(align(8)) List_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionConfig___Fields { + struct OpenXRInteractionFeature_ActionConfig__Array *_items; int32_t _size; int32_t _version; struct Object *_syncRoot; }; -struct List_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionBinding_ { - struct List_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionBinding___Class *klass; +struct List_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionConfig_ { + struct List_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionConfig___Class *klass; MonitorData *monitor; - struct List_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionBinding___Fields fields; + struct List_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionConfig___Fields fields; }; struct __declspec(align(8)) OpenXRInteractionFeature_ActionBinding__Fields { @@ -948818,6 +961415,19 @@ struct OpenXRInteractionFeature_ActionBinding { struct OpenXRInteractionFeature_ActionBinding__Fields fields; }; +struct __declspec(align(8)) List_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionBinding___Fields { + struct OpenXRInteractionFeature_ActionBinding__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionBinding_ { + struct List_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionBinding___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionBinding___Fields fields; +}; + struct OpenXRInteractionFeature_ActionBinding__Array { struct OpenXRInteractionFeature_ActionBinding__Array__Class *klass; MonitorData *monitor; @@ -948857,25 +961467,6 @@ struct IEnumerator_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_Act MonitorData *monitor; }; -struct __declspec(align(8)) Dictionary_2_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_InteractionProfileType_Dictionary_2_System_String_System_Boolean___Fields { - struct Int32__Array *_buckets; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_InteractionProfileType_Dictionary_2_System_String_System_Boolean___Array *_entries; - int32_t _count; - int32_t _freeList; - int32_t _freeCount; - int32_t _version; - struct IEqualityComparer_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_InteractionProfileType_ *_comparer; - struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_InteractionProfileType_Dictionary_2_System_String_System_Boolean_ *_keys; - struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_InteractionProfileType_Dictionary_2_System_String_System_Boolean_ *_values; - struct Object *_syncRoot; -}; - -struct Dictionary_2_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_InteractionProfileType_Dictionary_2_System_String_System_Boolean_ { - struct Dictionary_2_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_InteractionProfileType_Dictionary_2_System_String_System_Boolean___Class *klass; - MonitorData *monitor; - struct Dictionary_2_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_InteractionProfileType_Dictionary_2_System_String_System_Boolean___Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class OpenXRInteractionFeature_InteractionProfileType__Enum : int32_t { Device = 0x00000000, @@ -948916,6 +961507,25 @@ struct Dictionary_2_TKey_TValue_Entry_UnityEngine_XR_OpenXR_Features_OpenXRInter struct Dictionary_2_TKey_TValue_Entry_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_InteractionProfileType_Dictionary_2_System_String_System_Boolean_ fields; }; +struct __declspec(align(8)) Dictionary_2_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_InteractionProfileType_Dictionary_2_System_String_System_Boolean___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_InteractionProfileType_Dictionary_2_System_String_System_Boolean___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_InteractionProfileType_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_InteractionProfileType_Dictionary_2_System_String_System_Boolean_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_InteractionProfileType_Dictionary_2_System_String_System_Boolean_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_InteractionProfileType_Dictionary_2_System_String_System_Boolean_ { + struct Dictionary_2_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_InteractionProfileType_Dictionary_2_System_String_System_Boolean___Class *klass; + MonitorData *monitor; + struct Dictionary_2_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_InteractionProfileType_Dictionary_2_System_String_System_Boolean___Fields fields; +}; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_InteractionProfileType_Dictionary_2_System_String_System_Boolean___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_InteractionProfileType_Dictionary_2_System_String_System_Boolean___Array__Class *klass; MonitorData *monitor; @@ -949726,6 +962336,21 @@ struct ICollection_1_Dictionary_2_System_String_System_Boolean___Class { struct ICollection_1_Dictionary_2_System_String_System_Boolean___VTable vtable; }; +struct Dictionary_2_System_String_System_Boolean__1__VTable { +}; + +struct Dictionary_2_System_String_System_Boolean__1__StaticFields { +}; + +struct Dictionary_2_System_String_System_Boolean__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_System_String_System_Boolean__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_System_String_System_Boolean__1__VTable vtable; +}; + struct KeyValuePair_2_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_InteractionProfileType_Dictionary_2_System_String_System_Boolean___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -949919,6 +962544,19 @@ struct OpenXRInteractionFeature__Class { struct OpenXRInteractionFeature__VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding___Array *_entries; @@ -949938,17 +962576,15 @@ struct Dictionary_2_System_String_List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput struct Dictionary_2_System_String_List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ *value; +struct OpenXRInput_SerializedBinding { + uint64_t actionId; + struct String *path; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding___Class *klass; +struct OpenXRInput_SerializedBinding__Boxed { + struct OpenXRInput_SerializedBinding__Class *klass; MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ fields; + struct OpenXRInput_SerializedBinding fields; }; struct __declspec(align(8)) List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding___Fields { @@ -949964,17 +962600,6 @@ struct List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ { struct List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding___Fields fields; }; -struct OpenXRInput_SerializedBinding { - uint64_t actionId; - struct String *path; -}; - -struct OpenXRInput_SerializedBinding__Boxed { - struct OpenXRInput_SerializedBinding__Class *klass; - MonitorData *monitor; - struct OpenXRInput_SerializedBinding fields; -}; - struct OpenXRInput_SerializedBinding__Array { struct OpenXRInput_SerializedBinding__Array__Class *klass; MonitorData *monitor; @@ -950317,6 +962942,21 @@ struct ICollection_1_List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBi struct ICollection_1_List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding___VTable vtable; }; +struct List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__1__VTable { +}; + +struct List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__1__StaticFields { +}; + +struct List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding__1__VTable vtable; +}; + struct KeyValuePair_2_System_String_List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -950793,6 +963433,11 @@ struct Pose_1__Class { struct Pose_1__VTable vtable; }; +struct InputProcessor_1_UnityEngine_XR_OpenXR_Input_Pose_ { + struct InputProcessor_1_UnityEngine_XR_OpenXR_Input_Pose___Class *klass; + MonitorData *monitor; +}; + struct InlinedArray_1_UnityEngine_InputSystem_InputProcessor_1__12 { int32_t length; struct InputProcessor_1_UnityEngine_XR_OpenXR_Input_Pose_ *firstValue; @@ -950835,11 +963480,6 @@ struct PoseControl_1 { struct PoseControl_1__Fields fields; }; -struct InputProcessor_1_UnityEngine_XR_OpenXR_Input_Pose_ { - struct InputProcessor_1_UnityEngine_XR_OpenXR_Input_Pose___Class *klass; - MonitorData *monitor; -}; - struct InputProcessor_1_UnityEngine_XR_OpenXR_Input_Pose___Array { struct InputProcessor_1_UnityEngine_XR_OpenXR_Input_Pose___Array__Class *klass; MonitorData *monitor; @@ -955333,6 +967973,21 @@ struct Action_1_Kalagaan_HairDesignerExtension_HairDesignerEvents_PauseState___C struct Action_1_Kalagaan_HairDesignerExtension_HairDesignerEvents_PauseState___VTable vtable; }; +struct ComputeBuffer___VTable { +}; + +struct ComputeBuffer___StaticFields { +}; + +struct ComputeBuffer___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ComputeBuffer___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ComputeBuffer___VTable vtable; +}; + struct MotionSolver_c { struct MotionSolver_c__Class *klass; MonitorData *monitor; @@ -955610,6 +968265,21 @@ struct MBZCurv_eMirrorAxis__Enum__Class { struct MBZCurv_eMirrorAxis__Enum__VTable vtable; }; +struct List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__1__VTable { +}; + +struct List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__1__StaticFields { +}; + +struct List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Kalagaan_HairDesignerExtension_HairDesignerGeneratorFurShellBase_BufferData__1__VTable vtable; +}; + struct __declspec(align(8)) HairDesignerGeneratorLongHairBase_c_DisplayClass48_0__Fields { int32_t strandId; }; @@ -955701,6 +968371,21 @@ struct HairDesignerGeneratorLongHairBase_c_DisplayClass53_0__Class { struct HairDesignerGeneratorLongHairBase_c_DisplayClass53_0__VTable vtable; }; +struct Vector3__1__VTable { +}; + +struct Vector3__1__StaticFields { +}; + +struct Vector3__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Vector3__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Vector3__1__VTable vtable; +}; + struct MeshUtility { struct MeshUtility__Class *klass; MonitorData *monitor; @@ -955725,6 +968410,63 @@ struct MeshUtility__Class { struct MeshUtility__VTable vtable; }; +struct TriangleLock_TriangleData___VTable { +}; + +struct TriangleLock_TriangleData___StaticFields { +}; + +struct TriangleLock_TriangleData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TriangleLock_TriangleData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TriangleLock_TriangleData___VTable vtable; +}; + +struct List_1_System_Boolean__1__VTable { +}; + +struct List_1_System_Boolean__1__StaticFields { +}; + +struct List_1_System_Boolean__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_System_Boolean__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_System_Boolean__1__VTable vtable; +}; + +struct List_1_BehaviorDesigner_Runtime_Tasks_Task__1__VTable { +}; + +struct List_1_BehaviorDesigner_Runtime_Tasks_Task__1__StaticFields { +}; + +struct List_1_BehaviorDesigner_Runtime_Tasks_Task__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_BehaviorDesigner_Runtime_Tasks_Task__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_BehaviorDesigner_Runtime_Tasks_Task__1__VTable vtable; +}; + +struct HashSet_1_T_Slot_BehaviorDesigner_Runtime_Tasks_Task_ { + int32_t hashCode; + int32_t next; + struct Task_1 *value; +}; + +struct HashSet_1_T_Slot_BehaviorDesigner_Runtime_Tasks_Task___Boxed { + struct HashSet_1_T_Slot_BehaviorDesigner_Runtime_Tasks_Task___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_BehaviorDesigner_Runtime_Tasks_Task_ fields; +}; + struct __declspec(align(8)) HashSet_1_BehaviorDesigner_Runtime_Tasks_Task___Fields { struct Int32__Array *_buckets; struct HashSet_1_T_Slot_BehaviorDesigner_Runtime_Tasks_Task___Array *_slots; @@ -955742,18 +968484,6 @@ struct HashSet_1_BehaviorDesigner_Runtime_Tasks_Task_ { struct HashSet_1_BehaviorDesigner_Runtime_Tasks_Task___Fields fields; }; -struct HashSet_1_T_Slot_BehaviorDesigner_Runtime_Tasks_Task_ { - int32_t hashCode; - int32_t next; - struct Task_1 *value; -}; - -struct HashSet_1_T_Slot_BehaviorDesigner_Runtime_Tasks_Task___Boxed { - struct HashSet_1_T_Slot_BehaviorDesigner_Runtime_Tasks_Task___Class *klass; - MonitorData *monitor; - struct HashSet_1_T_Slot_BehaviorDesigner_Runtime_Tasks_Task_ fields; -}; - struct HashSet_1_T_Slot_BehaviorDesigner_Runtime_Tasks_Task___Array { struct HashSet_1_T_Slot_BehaviorDesigner_Runtime_Tasks_Task___Array__Class *klass; MonitorData *monitor; @@ -955935,19 +968665,6 @@ struct BehaviorManager_BehaviorManagerHandler { struct BehaviorManager_BehaviorManagerHandler__Fields fields; }; -struct __declspec(align(8)) List_1_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree___Fields { - struct BehaviorManager_BehaviorTree__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree_ { - struct List_1_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree___Class *klass; - MonitorData *monitor; - struct List_1_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree___Fields fields; -}; - struct __declspec(align(8)) BehaviorManager_BehaviorTree__Fields { struct List_1_BehaviorDesigner_Runtime_Tasks_Task_ *taskList; struct List_1_System_Int32_ *parentIndex; @@ -955974,6 +968691,19 @@ struct BehaviorManager_BehaviorTree { struct BehaviorManager_BehaviorTree__Fields fields; }; +struct __declspec(align(8)) List_1_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree___Fields { + struct BehaviorManager_BehaviorTree__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree_ { + struct List_1_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree___Class *klass; + MonitorData *monitor; + struct List_1_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree___Fields fields; +}; + struct __declspec(align(8)) List_1_List_1_System_Int32___Fields { struct List_1_System_Int32___Array *_items; int32_t _size; @@ -956036,19 +968766,6 @@ struct IEnumerator_1_BehaviorDesigner_Runtime_Tasks_TaskStatus_ { MonitorData *monitor; }; -struct __declspec(align(8)) List_1_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree_ConditionalReevaluate___Fields { - struct BehaviorManager_BehaviorTree_ConditionalReevaluate__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree_ConditionalReevaluate_ { - struct List_1_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree_ConditionalReevaluate___Class *klass; - MonitorData *monitor; - struct List_1_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree_ConditionalReevaluate___Fields fields; -}; - struct __declspec(align(8)) BehaviorManager_BehaviorTree_ConditionalReevaluate__Fields { int32_t index; #if defined(_CPLUSPLUS_) @@ -956066,6 +968783,19 @@ struct BehaviorManager_BehaviorTree_ConditionalReevaluate { struct BehaviorManager_BehaviorTree_ConditionalReevaluate__Fields fields; }; +struct __declspec(align(8)) List_1_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree_ConditionalReevaluate___Fields { + struct BehaviorManager_BehaviorTree_ConditionalReevaluate__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree_ConditionalReevaluate_ { + struct List_1_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree_ConditionalReevaluate___Class *klass; + MonitorData *monitor; + struct List_1_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree_ConditionalReevaluate___Fields fields; +}; + struct BehaviorManager_BehaviorTree_ConditionalReevaluate__Array { struct BehaviorManager_BehaviorTree_ConditionalReevaluate__Array__Class *klass; MonitorData *monitor; @@ -956079,6 +968809,19 @@ struct IEnumerator_1_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree_Condi MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree_ConditionalReevaluate_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct BehaviorManager_BehaviorTree_ConditionalReevaluate *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree_ConditionalReevaluate___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree_ConditionalReevaluate___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree_ConditionalReevaluate_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree_ConditionalReevaluate___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree_ConditionalReevaluate___Array *_entries; @@ -956098,19 +968841,6 @@ struct Dictionary_2_System_Int32_BehaviorDesigner_Runtime_BehaviorManager_Behavi struct Dictionary_2_System_Int32_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree_ConditionalReevaluate___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree_ConditionalReevaluate_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct BehaviorManager_BehaviorTree_ConditionalReevaluate *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree_ConditionalReevaluate___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree_ConditionalReevaluate___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree_ConditionalReevaluate_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree_ConditionalReevaluate___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree_ConditionalReevaluate___Array__Class *klass; MonitorData *monitor; @@ -956186,6 +968916,19 @@ struct IEnumerator_1_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_Behavior_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree_ { + int32_t hashCode; + int32_t next; + struct Behavior *key; + struct BehaviorManager_BehaviorTree *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_Behavior_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree___Boxed { + struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_Behavior_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_Behavior_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree_ fields; +}; + struct __declspec(align(8)) Dictionary_2_BehaviorDesigner_Runtime_Behavior_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_Behavior_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree___Array *_entries; @@ -956205,19 +968948,6 @@ struct Dictionary_2_BehaviorDesigner_Runtime_Behavior_BehaviorDesigner_Runtime_B struct Dictionary_2_BehaviorDesigner_Runtime_Behavior_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_Behavior_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree_ { - int32_t hashCode; - int32_t next; - struct Behavior *key; - struct BehaviorManager_BehaviorTree *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_Behavior_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree___Boxed { - struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_Behavior_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_Behavior_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_Behavior_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree___Array { struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_Behavior_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree___Array__Class *klass; MonitorData *monitor; @@ -956300,19 +969030,6 @@ struct IEnumerable_1_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree_ { MonitorData *monitor; }; -struct __declspec(align(8)) List_1_BehaviorDesigner_Runtime_BehaviorManager_BehaviorThreadLoader___Fields { - struct BehaviorManager_BehaviorThreadLoader__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_BehaviorDesigner_Runtime_BehaviorManager_BehaviorThreadLoader_ { - struct List_1_BehaviorDesigner_Runtime_BehaviorManager_BehaviorThreadLoader___Class *klass; - MonitorData *monitor; - struct List_1_BehaviorDesigner_Runtime_BehaviorManager_BehaviorThreadLoader___Fields fields; -}; - struct __declspec(align(8)) BehaviorManager_BehaviorThreadLoader__Fields { struct Behavior *behavior; struct GameObject *gameObject; @@ -956329,6 +969046,19 @@ struct BehaviorManager_BehaviorThreadLoader { struct BehaviorManager_BehaviorThreadLoader__Fields fields; }; +struct __declspec(align(8)) List_1_BehaviorDesigner_Runtime_BehaviorManager_BehaviorThreadLoader___Fields { + struct BehaviorManager_BehaviorThreadLoader__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_BehaviorDesigner_Runtime_BehaviorManager_BehaviorThreadLoader_ { + struct List_1_BehaviorDesigner_Runtime_BehaviorManager_BehaviorThreadLoader___Class *klass; + MonitorData *monitor; + struct List_1_BehaviorDesigner_Runtime_BehaviorManager_BehaviorThreadLoader___Fields fields; +}; + struct Func_5_BehaviorDesigner_Runtime_Behavior_UnityEngine_GameObject_String_UnityEngine_Transform_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree___Fields { struct MulticastDelegate__Fields _; }; @@ -956352,6 +969082,19 @@ struct IEnumerator_1_BehaviorDesigner_Runtime_BehaviorManager_BehaviorThreadLoad MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Object_BehaviorDesigner_Runtime_BehaviorManager_ThirdPartyTask_ { + int32_t hashCode; + int32_t next; + struct Object *key; + struct BehaviorManager_ThirdPartyTask *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Object_BehaviorDesigner_Runtime_BehaviorManager_ThirdPartyTask___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Object_BehaviorDesigner_Runtime_BehaviorManager_ThirdPartyTask___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Object_BehaviorDesigner_Runtime_BehaviorManager_ThirdPartyTask_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Object_BehaviorDesigner_Runtime_BehaviorManager_ThirdPartyTask___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Object_BehaviorDesigner_Runtime_BehaviorManager_ThirdPartyTask___Array *_entries; @@ -956371,19 +969114,6 @@ struct Dictionary_2_System_Object_BehaviorDesigner_Runtime_BehaviorManager_Third struct Dictionary_2_System_Object_BehaviorDesigner_Runtime_BehaviorManager_ThirdPartyTask___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Object_BehaviorDesigner_Runtime_BehaviorManager_ThirdPartyTask_ { - int32_t hashCode; - int32_t next; - struct Object *key; - struct BehaviorManager_ThirdPartyTask *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Object_BehaviorDesigner_Runtime_BehaviorManager_ThirdPartyTask___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Object_BehaviorDesigner_Runtime_BehaviorManager_ThirdPartyTask___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Object_BehaviorDesigner_Runtime_BehaviorManager_ThirdPartyTask_ fields; -}; - #if defined(_CPLUSPLUS_) enum class BehaviorManager_ThirdPartyObjectType__Enum : int32_t { PlayMaker = 0x00000000, @@ -956501,6 +969231,19 @@ struct IEnumerable_1_BehaviorDesigner_Runtime_BehaviorManager_ThirdPartyTask_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_BehaviorManager_ThirdPartyTask_System_Object_ { + int32_t hashCode; + int32_t next; + struct BehaviorManager_ThirdPartyTask *key; + struct Object *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_BehaviorManager_ThirdPartyTask_System_Object___Boxed { + struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_BehaviorManager_ThirdPartyTask_System_Object___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_BehaviorManager_ThirdPartyTask_System_Object_ fields; +}; + struct __declspec(align(8)) Dictionary_2_BehaviorDesigner_Runtime_BehaviorManager_ThirdPartyTask_System_Object___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_BehaviorManager_ThirdPartyTask_System_Object___Array *_entries; @@ -956520,19 +969263,6 @@ struct Dictionary_2_BehaviorDesigner_Runtime_BehaviorManager_ThirdPartyTask_Syst struct Dictionary_2_BehaviorDesigner_Runtime_BehaviorManager_ThirdPartyTask_System_Object___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_BehaviorManager_ThirdPartyTask_System_Object_ { - int32_t hashCode; - int32_t next; - struct BehaviorManager_ThirdPartyTask *key; - struct Object *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_BehaviorManager_ThirdPartyTask_System_Object___Boxed { - struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_BehaviorManager_ThirdPartyTask_System_Object___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_BehaviorManager_ThirdPartyTask_System_Object_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_BehaviorManager_ThirdPartyTask_System_Object___Array { struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_BehaviorManager_ThirdPartyTask_System_Object___Array__Class *klass; MonitorData *monitor; @@ -957136,6 +969866,21 @@ struct ICollection_1_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree_Condi struct ICollection_1_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree_ConditionalReevaluate___VTable vtable; }; +struct BehaviorManager_BehaviorTree_ConditionalReevaluate___VTable { +}; + +struct BehaviorManager_BehaviorTree_ConditionalReevaluate___StaticFields { +}; + +struct BehaviorManager_BehaviorTree_ConditionalReevaluate___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BehaviorManager_BehaviorTree_ConditionalReevaluate___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BehaviorManager_BehaviorTree_ConditionalReevaluate___VTable vtable; +}; + struct KeyValuePair_2_System_Int32_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree_ConditionalReevaluate___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -957539,6 +970284,21 @@ struct ICollection_1_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree___Cla struct ICollection_1_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree___VTable vtable; }; +struct BehaviorManager_BehaviorTree___VTable { +}; + +struct BehaviorManager_BehaviorTree___StaticFields { +}; + +struct BehaviorManager_BehaviorTree___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BehaviorManager_BehaviorTree___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BehaviorManager_BehaviorTree___VTable vtable; +}; + struct KeyValuePair_2_BehaviorDesigner_Runtime_Behavior_BehaviorDesigner_Runtime_BehaviorManager_BehaviorTree___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -958020,6 +970780,21 @@ struct ICollection_1_BehaviorDesigner_Runtime_BehaviorManager_ThirdPartyTask___C struct ICollection_1_BehaviorDesigner_Runtime_BehaviorManager_ThirdPartyTask___VTable vtable; }; +struct BehaviorManager_ThirdPartyTask___VTable { +}; + +struct BehaviorManager_ThirdPartyTask___StaticFields { +}; + +struct BehaviorManager_ThirdPartyTask___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BehaviorManager_ThirdPartyTask___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BehaviorManager_ThirdPartyTask___VTable vtable; +}; + struct KeyValuePair_2_System_Object_BehaviorDesigner_Runtime_BehaviorManager_ThirdPartyTask___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -958476,6 +971251,19 @@ struct BehaviorManager_TaskAddData { struct BehaviorManager_TaskAddData__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_BehaviorDesigner_Runtime_BehaviorManager_TaskAddData_OverrideFieldValue_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct BehaviorManager_TaskAddData_OverrideFieldValue *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_BehaviorDesigner_Runtime_BehaviorManager_TaskAddData_OverrideFieldValue___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_BehaviorDesigner_Runtime_BehaviorManager_TaskAddData_OverrideFieldValue___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_BehaviorDesigner_Runtime_BehaviorManager_TaskAddData_OverrideFieldValue_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_BehaviorDesigner_Runtime_BehaviorManager_TaskAddData_OverrideFieldValue___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_BehaviorDesigner_Runtime_BehaviorManager_TaskAddData_OverrideFieldValue___Array *_entries; @@ -958495,19 +971283,6 @@ struct Dictionary_2_System_String_BehaviorDesigner_Runtime_BehaviorManager_TaskA struct Dictionary_2_System_String_BehaviorDesigner_Runtime_BehaviorManager_TaskAddData_OverrideFieldValue___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_BehaviorDesigner_Runtime_BehaviorManager_TaskAddData_OverrideFieldValue_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct BehaviorManager_TaskAddData_OverrideFieldValue *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_BehaviorDesigner_Runtime_BehaviorManager_TaskAddData_OverrideFieldValue___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_BehaviorDesigner_Runtime_BehaviorManager_TaskAddData_OverrideFieldValue___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_BehaviorDesigner_Runtime_BehaviorManager_TaskAddData_OverrideFieldValue_ fields; -}; - struct __declspec(align(8)) BehaviorManager_TaskAddData_OverrideFieldValue__Fields { struct Object *value; int32_t depth; @@ -958766,6 +971541,21 @@ struct ICollection_1_BehaviorDesigner_Runtime_BehaviorManager_TaskAddData_Overri struct ICollection_1_BehaviorDesigner_Runtime_BehaviorManager_TaskAddData_OverrideFieldValue___VTable vtable; }; +struct BehaviorManager_TaskAddData_OverrideFieldValue___VTable { +}; + +struct BehaviorManager_TaskAddData_OverrideFieldValue___StaticFields { +}; + +struct BehaviorManager_TaskAddData_OverrideFieldValue___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BehaviorManager_TaskAddData_OverrideFieldValue___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BehaviorManager_TaskAddData_OverrideFieldValue___VTable vtable; +}; + struct KeyValuePair_2_System_String_BehaviorDesigner_Runtime_BehaviorManager_TaskAddData_OverrideFieldValue___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -958910,6 +971700,21 @@ struct BehaviorManager_TaskAddData__Class { struct BehaviorManager_TaskAddData__VTable vtable; }; +struct TaskStatus___VTable { +}; + +struct TaskStatus___StaticFields { +}; + +struct TaskStatus___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TaskStatus___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TaskStatus___VTable vtable; +}; + struct BehaviorManager_ThirdPartyTaskComparer { struct BehaviorManager_ThirdPartyTaskComparer__Class *klass; MonitorData *monitor; @@ -959011,6 +971816,36 @@ struct BehaviorManager_CoroutineUpdate_c_Iterator1__Class { struct BehaviorManager_CoroutineUpdate_c_Iterator1__VTable vtable; }; +struct Task__1__VTable { +}; + +struct Task__1__StaticFields { +}; + +struct Task__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Task__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Task__1__VTable vtable; +}; + +struct BehaviorSource___VTable { +}; + +struct BehaviorSource___StaticFields { +}; + +struct BehaviorSource___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BehaviorSource___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BehaviorSource___VTable vtable; +}; + struct IVariableSource { struct IVariableSource__Class *klass; MonitorData *monitor; @@ -959102,25 +971937,6 @@ struct JSONDeserialization { struct JSONDeserialization__Fields fields; }; -struct __declspec(align(8)) Dictionary_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_List_1_System_Int32___Fields { - struct Int32__Array *_buckets; - struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_List_1_System_Int32___Array *_entries; - int32_t _count; - int32_t _freeList; - int32_t _freeCount; - int32_t _version; - struct IEqualityComparer_1_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_ *_comparer; - struct Dictionary_2_TKey_TValue_KeyCollection_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_List_1_System_Int32_ *_keys; - struct Dictionary_2_TKey_TValue_ValueCollection_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_List_1_System_Int32_ *_values; - struct Object *_syncRoot; -}; - -struct Dictionary_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_List_1_System_Int32_ { - struct Dictionary_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_List_1_System_Int32___Class *klass; - MonitorData *monitor; - struct Dictionary_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_List_1_System_Int32___Fields fields; -}; - struct JSONDeserialization_TaskField { struct Task_1 *task; struct FieldInfo_1 *fieldInfo; @@ -959145,6 +971961,25 @@ struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_JSONDeserializati struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_List_1_System_Int32_ fields; }; +struct __declspec(align(8)) Dictionary_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_List_1_System_Int32___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_List_1_System_Int32___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_List_1_System_Int32_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_List_1_System_Int32_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_List_1_System_Int32_ { + struct Dictionary_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_List_1_System_Int32___Class *klass; + MonitorData *monitor; + struct Dictionary_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_List_1_System_Int32___Fields fields; +}; + struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_List_1_System_Int32___Array { struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_List_1_System_Int32___Array__Class *klass; MonitorData *monitor; @@ -959235,6 +972070,19 @@ struct IEnumerable_1_List_1_System_Int32_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_Dictionary_2_System_String_System_Object_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct Dictionary_2_System_String_System_Object_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_Dictionary_2_System_String_System_Object___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_Dictionary_2_System_String_System_Object___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_Dictionary_2_System_String_System_Object_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_Dictionary_2_System_String_System_Object___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_Dictionary_2_System_String_System_Object___Array *_entries; @@ -959254,19 +972102,6 @@ struct Dictionary_2_System_Int32_Dictionary_2_System_String_System_Object_ { struct Dictionary_2_System_Int32_Dictionary_2_System_String_System_Object___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_Dictionary_2_System_String_System_Object_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct Dictionary_2_System_String_System_Object_ *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_Dictionary_2_System_String_System_Object___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_Dictionary_2_System_String_System_Object___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_Dictionary_2_System_String_System_Object_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_Dictionary_2_System_String_System_Object___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_Dictionary_2_System_String_System_Object___Array__Class *klass; MonitorData *monitor; @@ -959903,6 +972738,19 @@ struct JSONDeserialization__Class { struct JSONDeserialization__VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_BehaviorDesigner_Runtime_Tasks_Task_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct Task_1 *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_BehaviorDesigner_Runtime_Tasks_Task___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_BehaviorDesigner_Runtime_Tasks_Task___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_BehaviorDesigner_Runtime_Tasks_Task_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_BehaviorDesigner_Runtime_Tasks_Task___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_BehaviorDesigner_Runtime_Tasks_Task___Array *_entries; @@ -959922,19 +972770,6 @@ struct Dictionary_2_System_Int32_BehaviorDesigner_Runtime_Tasks_Task_ { struct Dictionary_2_System_Int32_BehaviorDesigner_Runtime_Tasks_Task___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_BehaviorDesigner_Runtime_Tasks_Task_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct Task_1 *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_BehaviorDesigner_Runtime_Tasks_Task___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_BehaviorDesigner_Runtime_Tasks_Task___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_BehaviorDesigner_Runtime_Tasks_Task_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_BehaviorDesigner_Runtime_Tasks_Task___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_BehaviorDesigner_Runtime_Tasks_Task___Array__Class *klass; MonitorData *monitor; @@ -960196,6 +973031,21 @@ struct Dictionary_2_System_Int32_BehaviorDesigner_Runtime_Tasks_Task___Class { struct Dictionary_2_System_Int32_BehaviorDesigner_Runtime_Tasks_Task___VTable vtable; }; +struct Dictionary_2_System_Int32_BehaviorDesigner_Runtime_Tasks_Task__1__VTable { +}; + +struct Dictionary_2_System_Int32_BehaviorDesigner_Runtime_Tasks_Task__1__StaticFields { +}; + +struct Dictionary_2_System_Int32_BehaviorDesigner_Runtime_Tasks_Task__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_System_Int32_BehaviorDesigner_Runtime_Tasks_Task__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_System_Int32_BehaviorDesigner_Runtime_Tasks_Task__1__VTable vtable; +}; + struct __declspec(align(8)) MiniJSON_Parser__Fields { struct StringReader *json; }; @@ -960794,6 +973644,21 @@ struct IList_1_System_Reflection_FieldInfo___Class { struct IList_1_System_Reflection_FieldInfo___VTable vtable; }; +struct List_1_System_Reflection_FieldInfo__1__VTable { +}; + +struct List_1_System_Reflection_FieldInfo__1__StaticFields { +}; + +struct List_1_System_Reflection_FieldInfo__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_System_Reflection_FieldInfo__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_System_Reflection_FieldInfo__1__VTable vtable; +}; + struct VariableSynchronizer__Fields { struct MonoBehaviour__Fields _; #if defined(_CPLUSPLUS_) @@ -960812,19 +973677,6 @@ struct VariableSynchronizer { struct VariableSynchronizer__Fields fields; }; -struct __declspec(align(8)) List_1_BehaviorDesigner_Runtime_VariableSynchronizer_SynchronizedVariable___Fields { - struct VariableSynchronizer_SynchronizedVariable__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_BehaviorDesigner_Runtime_VariableSynchronizer_SynchronizedVariable_ { - struct List_1_BehaviorDesigner_Runtime_VariableSynchronizer_SynchronizedVariable___Class *klass; - MonitorData *monitor; - struct List_1_BehaviorDesigner_Runtime_VariableSynchronizer_SynchronizedVariable___Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class VariableSynchronizer_SynchronizationType__Enum : int32_t { BehaviorDesigner = 0x00000000, @@ -960914,6 +973766,19 @@ struct VariableSynchronizer_SynchronizedVariable { struct VariableSynchronizer_SynchronizedVariable__Fields fields; }; +struct __declspec(align(8)) List_1_BehaviorDesigner_Runtime_VariableSynchronizer_SynchronizedVariable___Fields { + struct VariableSynchronizer_SynchronizedVariable__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_BehaviorDesigner_Runtime_VariableSynchronizer_SynchronizedVariable_ { + struct List_1_BehaviorDesigner_Runtime_VariableSynchronizer_SynchronizedVariable___Class *klass; + MonitorData *monitor; + struct List_1_BehaviorDesigner_Runtime_VariableSynchronizer_SynchronizedVariable___Fields fields; +}; + struct Action_1_BehaviorDesigner_Runtime_VariableSynchronizer_SynchronizedVariable___Fields { struct MulticastDelegate__Fields _; }; @@ -961614,6 +974479,18 @@ struct AnimationOutputWeightProcessor { struct AnimationOutputWeightProcessor__Fields fields; }; +struct AnimationOutputWeightProcessor_WeightInfo { + struct Playable mixer; + struct Playable parentMixer; + int32_t port; +}; + +struct AnimationOutputWeightProcessor_WeightInfo__Boxed { + struct AnimationOutputWeightProcessor_WeightInfo__Class *klass; + MonitorData *monitor; + struct AnimationOutputWeightProcessor_WeightInfo fields; +}; + struct __declspec(align(8)) List_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo___Fields { struct AnimationOutputWeightProcessor_WeightInfo__Array *_items; int32_t _size; @@ -961627,18 +974504,6 @@ struct List_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo_ { struct List_1_UnityEngine_Timeline_AnimationOutputWeightProcessor_WeightInfo___Fields fields; }; -struct AnimationOutputWeightProcessor_WeightInfo { - struct Playable mixer; - struct Playable parentMixer; - int32_t port; -}; - -struct AnimationOutputWeightProcessor_WeightInfo__Boxed { - struct AnimationOutputWeightProcessor_WeightInfo__Class *klass; - MonitorData *monitor; - struct AnimationOutputWeightProcessor_WeightInfo fields; -}; - struct AnimationOutputWeightProcessor_WeightInfo__Array { struct AnimationOutputWeightProcessor_WeightInfo__Array__Class *klass; MonitorData *monitor; @@ -962152,6 +975017,11 @@ struct AnimationPreviewUpdateCallback { struct AnimationPreviewUpdateCallback__Fields fields; }; +struct IAnimationWindowPreview { + struct IAnimationWindowPreview__Class *klass; + MonitorData *monitor; +}; + struct __declspec(align(8)) List_1_UnityEngine_Animations_IAnimationWindowPreview___Fields { struct IAnimationWindowPreview__Array *_items; int32_t _size; @@ -962165,11 +975035,6 @@ struct List_1_UnityEngine_Animations_IAnimationWindowPreview_ { struct List_1_UnityEngine_Animations_IAnimationWindowPreview___Fields fields; }; -struct IAnimationWindowPreview { - struct IAnimationWindowPreview__Class *klass; - MonitorData *monitor; -}; - struct IAnimationWindowPreview__Array { struct IAnimationWindowPreview__Array__Class *klass; MonitorData *monitor; @@ -962847,6 +975712,21 @@ struct TimelineAsset__Class { struct TimelineAsset__VTable vtable; }; +struct List_1_UnityEngine_Timeline_TrackAsset__1__VTable { +}; + +struct List_1_UnityEngine_Timeline_TrackAsset__1__StaticFields { +}; + +struct List_1_UnityEngine_Timeline_TrackAsset__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_Timeline_TrackAsset__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_Timeline_TrackAsset__1__VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class StandardFrameRates__Enum : int32_t { Fps24 = 0x00000000, @@ -963599,6 +976479,18 @@ struct IEnumerator_1_UnityEngine_Playables_PlayableDirector_ { MonitorData *monitor; }; +struct HashSet_1_T_Slot_UnityEngine_ParticleSystem_ { + int32_t hashCode; + int32_t next; + struct ParticleSystem *value; +}; + +struct HashSet_1_T_Slot_UnityEngine_ParticleSystem___Boxed { + struct HashSet_1_T_Slot_UnityEngine_ParticleSystem___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_UnityEngine_ParticleSystem_ fields; +}; + struct __declspec(align(8)) HashSet_1_UnityEngine_ParticleSystem___Fields { struct Int32__Array *_buckets; struct HashSet_1_T_Slot_UnityEngine_ParticleSystem___Array *_slots; @@ -963616,18 +976508,6 @@ struct HashSet_1_UnityEngine_ParticleSystem_ { struct HashSet_1_UnityEngine_ParticleSystem___Fields fields; }; -struct HashSet_1_T_Slot_UnityEngine_ParticleSystem_ { - int32_t hashCode; - int32_t next; - struct ParticleSystem *value; -}; - -struct HashSet_1_T_Slot_UnityEngine_ParticleSystem___Boxed { - struct HashSet_1_T_Slot_UnityEngine_ParticleSystem___Class *klass; - MonitorData *monitor; - struct HashSet_1_T_Slot_UnityEngine_ParticleSystem_ fields; -}; - struct HashSet_1_T_Slot_UnityEngine_ParticleSystem___Array { struct HashSet_1_T_Slot_UnityEngine_ParticleSystem___Array__Class *klass; MonitorData *monitor; @@ -963636,6 +976516,18 @@ struct HashSet_1_T_Slot_UnityEngine_ParticleSystem___Array { struct HashSet_1_T_Slot_UnityEngine_ParticleSystem_ vector[32]; }; +struct HashSet_1_T_Slot_UnityEngine_Playables_PlayableDirector_ { + int32_t hashCode; + int32_t next; + struct PlayableDirector *value; +}; + +struct HashSet_1_T_Slot_UnityEngine_Playables_PlayableDirector___Boxed { + struct HashSet_1_T_Slot_UnityEngine_Playables_PlayableDirector___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_UnityEngine_Playables_PlayableDirector_ fields; +}; + struct __declspec(align(8)) HashSet_1_UnityEngine_Playables_PlayableDirector___Fields { struct Int32__Array *_buckets; struct HashSet_1_T_Slot_UnityEngine_Playables_PlayableDirector___Array *_slots; @@ -963653,18 +976545,6 @@ struct HashSet_1_UnityEngine_Playables_PlayableDirector_ { struct HashSet_1_UnityEngine_Playables_PlayableDirector___Fields fields; }; -struct HashSet_1_T_Slot_UnityEngine_Playables_PlayableDirector_ { - int32_t hashCode; - int32_t next; - struct PlayableDirector *value; -}; - -struct HashSet_1_T_Slot_UnityEngine_Playables_PlayableDirector___Boxed { - struct HashSet_1_T_Slot_UnityEngine_Playables_PlayableDirector___Class *klass; - MonitorData *monitor; - struct HashSet_1_T_Slot_UnityEngine_Playables_PlayableDirector_ fields; -}; - struct HashSet_1_T_Slot_UnityEngine_Playables_PlayableDirector___Array { struct HashSet_1_T_Slot_UnityEngine_Playables_PlayableDirector___Array__Class *klass; MonitorData *monitor; @@ -964772,6 +977652,21 @@ struct IEnumerable_1_UnityEngine_Timeline_SignalAsset___Class { struct IEnumerable_1_UnityEngine_Timeline_SignalAsset___VTable vtable; }; +struct UnityEvent___VTable { +}; + +struct UnityEvent___StaticFields { +}; + +struct UnityEvent___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UnityEvent___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UnityEvent___VTable vtable; +}; + struct SignalTrack__Fields { struct MarkerTrack__Fields _; }; @@ -965454,19 +978349,6 @@ struct TimeNotificationBehaviour { struct TimeNotificationBehaviour__Fields fields; }; -struct __declspec(align(8)) List_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry___Fields { - struct TimeNotificationBehaviour_NotificationEntry__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry_ { - struct List_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry___Fields fields; -}; - struct TimeNotificationBehaviour_NotificationEntry { double time; struct INotification *payload; @@ -965484,6 +978366,19 @@ struct TimeNotificationBehaviour_NotificationEntry__Boxed { struct TimeNotificationBehaviour_NotificationEntry fields; }; +struct __declspec(align(8)) List_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry___Fields { + struct TimeNotificationBehaviour_NotificationEntry__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry_ { + struct List_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_Timeline_TimeNotificationBehaviour_NotificationEntry___Fields fields; +}; + struct TimeNotificationBehaviour_NotificationEntry__Array { struct TimeNotificationBehaviour_NotificationEntry__Array__Class *klass; MonitorData *monitor; @@ -965667,6 +978562,21 @@ struct ScriptPlayable_1_UnityEngine_Timeline_TimeNotificationBehaviour___Class { struct ScriptPlayable_1_UnityEngine_Timeline_TimeNotificationBehaviour___VTable vtable; }; +struct TimeNotificationBehaviour_NotificationEntry___VTable { +}; + +struct TimeNotificationBehaviour_NotificationEntry___StaticFields { +}; + +struct TimeNotificationBehaviour_NotificationEntry___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TimeNotificationBehaviour_NotificationEntry___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TimeNotificationBehaviour_NotificationEntry___VTable vtable; +}; + struct TimeNotificationBehaviour_c { struct TimeNotificationBehaviour_c__Class *klass; MonitorData *monitor; @@ -966308,6 +979218,11 @@ struct IEnumerator_1_UnityEngine_Timeline_RuntimeElement_ { MonitorData *monitor; }; +struct ITimelineEvaluateCallback { + struct ITimelineEvaluateCallback__Class *klass; + MonitorData *monitor; +}; + struct __declspec(align(8)) List_1_UnityEngine_Timeline_ITimelineEvaluateCallback___Fields { struct ITimelineEvaluateCallback__Array *_items; int32_t _size; @@ -966321,11 +979236,6 @@ struct List_1_UnityEngine_Timeline_ITimelineEvaluateCallback_ { struct List_1_UnityEngine_Timeline_ITimelineEvaluateCallback___Fields fields; }; -struct ITimelineEvaluateCallback { - struct ITimelineEvaluateCallback__Class *klass; - MonitorData *monitor; -}; - struct ITimelineEvaluateCallback__Array { struct ITimelineEvaluateCallback__Array__Class *klass; MonitorData *monitor; @@ -966339,6 +979249,19 @@ struct IEnumerator_1_UnityEngine_Timeline_ITimelineEvaluateCallback_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Timeline_TrackAsset_UnityEngine_Playables_Playable_ { + int32_t hashCode; + int32_t next; + struct TrackAsset *key; + struct Playable value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Timeline_TrackAsset_UnityEngine_Playables_Playable___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Timeline_TrackAsset_UnityEngine_Playables_Playable___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Timeline_TrackAsset_UnityEngine_Playables_Playable_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_Timeline_TrackAsset_UnityEngine_Playables_Playable___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Timeline_TrackAsset_UnityEngine_Playables_Playable___Array *_entries; @@ -966358,19 +979281,6 @@ struct Dictionary_2_UnityEngine_Timeline_TrackAsset_UnityEngine_Playables_Playab struct Dictionary_2_UnityEngine_Timeline_TrackAsset_UnityEngine_Playables_Playable___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Timeline_TrackAsset_UnityEngine_Playables_Playable_ { - int32_t hashCode; - int32_t next; - struct TrackAsset *key; - struct Playable value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Timeline_TrackAsset_UnityEngine_Playables_Playable___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Timeline_TrackAsset_UnityEngine_Playables_Playable___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Timeline_TrackAsset_UnityEngine_Playables_Playable_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Timeline_TrackAsset_UnityEngine_Playables_Playable___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Timeline_TrackAsset_UnityEngine_Playables_Playable___Array__Class *klass; MonitorData *monitor; @@ -966784,6 +979694,21 @@ struct ICollection_1_UnityEngine_Playables_Playable___Class { struct ICollection_1_UnityEngine_Playables_Playable___VTable vtable; }; +struct Playable___VTable { +}; + +struct Playable___StaticFields { +}; + +struct Playable___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Playable___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Playable___VTable vtable; +}; + struct KeyValuePair_2_UnityEngine_Timeline_TrackAsset_UnityEngine_Playables_Playable___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -967031,6 +979956,21 @@ struct TimelineCreateUtilities_c_DisplayClass0_1__Class { struct TimelineCreateUtilities_c_DisplayClass0_1__VTable vtable; }; +struct StandardFrameRates___VTable { +}; + +struct StandardFrameRates___StaticFields { +}; + +struct StandardFrameRates___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StandardFrameRates___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StandardFrameRates___VTable vtable; +}; + struct TimeUtility_c { struct TimeUtility_c__Class *klass; MonitorData *monitor; @@ -970211,19 +983151,17 @@ struct ComponentSingleton_1_DelayedActionManager_ { struct ComponentSingleton_1_DelayedActionManager___Fields fields; }; -struct DelayedActionManager__Fields { - struct ComponentSingleton_1_DelayedActionManager___Fields _; - struct List_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo___Array *m_Actions; - struct LinkedList_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ *m_DelayedActions; - struct Stack_1_LinkedListNode_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ *m_NodeCache; - int32_t m_CollectionIndex; - bool m_DestroyOnCompletion; +struct DelayedActionManager_DelegateInfo { + int32_t m_Id; + struct Delegate *m_Delegate; + struct Object__Array *m_Target; + float _InvocationTime_k__BackingField; }; -struct DelayedActionManager { - struct DelayedActionManager__Class *klass; +struct DelayedActionManager_DelegateInfo__Boxed { + struct DelayedActionManager_DelegateInfo__Class *klass; MonitorData *monitor; - struct DelayedActionManager__Fields fields; + struct DelayedActionManager_DelegateInfo fields; }; struct __declspec(align(8)) List_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo___Fields { @@ -970239,17 +983177,19 @@ struct List_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateI struct List_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo___Fields fields; }; -struct DelayedActionManager_DelegateInfo { - int32_t m_Id; - struct Delegate *m_Delegate; - struct Object__Array *m_Target; - float _InvocationTime_k__BackingField; +struct DelayedActionManager__Fields { + struct ComponentSingleton_1_DelayedActionManager___Fields _; + struct List_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo___Array *m_Actions; + struct LinkedList_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ *m_DelayedActions; + struct Stack_1_LinkedListNode_1_UnityEngine_ResourceManagement_Util_DelayedActionManager_DelegateInfo_ *m_NodeCache; + int32_t m_CollectionIndex; + bool m_DestroyOnCompletion; }; -struct DelayedActionManager_DelegateInfo__Boxed { - struct DelayedActionManager_DelegateInfo__Class *klass; +struct DelayedActionManager { + struct DelayedActionManager__Class *klass; MonitorData *monitor; - struct DelayedActionManager_DelegateInfo fields; + struct DelayedActionManager__Fields fields; }; struct DelayedActionManager_DelegateInfo__Array { @@ -970597,6 +983537,21 @@ struct DelayedActionManager__Class { struct DelayedActionManager__VTable vtable; }; +struct DelayedActionManager_DelegateInfo___VTable { +}; + +struct DelayedActionManager_DelegateInfo___StaticFields { +}; + +struct DelayedActionManager_DelegateInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DelayedActionManager_DelegateInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DelayedActionManager_DelegateInfo___VTable vtable; +}; + struct __declspec(align(8)) LocationCacheKey__Fields { struct IResourceLocation *m_Location; struct Type *m_DesiredType; @@ -970669,6 +983624,18 @@ struct AsyncOpHandlesCacheKey { struct AsyncOpHandlesCacheKey__Fields fields; }; +struct HashSet_1_T_Slot_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ { + int32_t hashCode; + int32_t next; + struct AsyncOperationHandle value; +}; + +struct HashSet_1_T_Slot_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Boxed { + struct HashSet_1_T_Slot_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ fields; +}; + struct __declspec(align(8)) HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Fields { struct Int32__Array *_buckets; struct HashSet_1_T_Slot_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Array *_slots; @@ -970686,18 +983653,6 @@ struct HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHa struct HashSet_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Fields fields; }; -struct HashSet_1_T_Slot_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ { - int32_t hashCode; - int32_t next; - struct AsyncOperationHandle value; -}; - -struct HashSet_1_T_Slot_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Boxed { - struct HashSet_1_T_Slot_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Class *klass; - MonitorData *monitor; - struct HashSet_1_T_Slot_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ fields; -}; - struct HashSet_1_T_Slot_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Array { struct HashSet_1_T_Slot_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Array__Class *klass; MonitorData *monitor; @@ -970924,6 +983879,19 @@ struct List_1_List_1_System_Object_ { struct List_1_List_1_System_Object___Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_System_Object_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct List_1_System_Object_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_System_Object___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_System_Object___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_System_Object_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_List_1_System_Object___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_System_Object___Array *_entries; @@ -970943,19 +983911,6 @@ struct Dictionary_2_System_Int32_List_1_System_Object_ { struct Dictionary_2_System_Int32_List_1_System_Object___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_System_Object_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct List_1_System_Object_ *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_System_Object___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_System_Object___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_System_Object_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_System_Object___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_System_Object___Array__Class *klass; MonitorData *monitor; @@ -971405,6 +984360,21 @@ struct ObjectInitializationData__Class { struct ObjectInitializationData__VTable vtable; }; +struct UnityWebRequestResult___VTable { +}; + +struct UnityWebRequestResult___StaticFields { +}; + +struct UnityWebRequestResult___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UnityWebRequestResult___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UnityWebRequestResult___VTable vtable; +}; + struct UnityWebRequestUtilities { struct UnityWebRequestUtilities__Class *klass; MonitorData *monitor; @@ -971883,6 +984853,21 @@ struct AssetBundleResource_LoadType__Enum__Class { struct AssetBundleResource_LoadType__Enum__VTable vtable; }; +struct AssetBundleResource_LoadType___VTable { +}; + +struct AssetBundleResource_LoadType___StaticFields { +}; + +struct AssetBundleResource_LoadType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct AssetBundleResource_LoadType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct AssetBundleResource_LoadType___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class ProviderBehaviourFlags__Enum : int32_t { None = 0x00000000, @@ -972624,6 +985609,19 @@ struct InstanceProvider { struct InstanceProvider__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ { + int32_t hashCode; + int32_t next; + struct GameObject *key; + struct AsyncOperationHandle_1_UnityEngine_GameObject_ value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_GameObject_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___Array *_entries; @@ -972643,19 +985641,6 @@ struct Dictionary_2_UnityEngine_GameObject_UnityEngine_ResourceManagement_AsyncO struct Dictionary_2_UnityEngine_GameObject_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ { - int32_t hashCode; - int32_t next; - struct GameObject *key; - struct AsyncOperationHandle_1_UnityEngine_GameObject_ value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___Array__Class *klass; MonitorData *monitor; @@ -972840,6 +985825,21 @@ struct ICollection_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperati struct ICollection_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___VTable vtable; }; +struct AsyncOperationHandle_1_UnityEngine_GameObject__1__VTable { +}; + +struct AsyncOperationHandle_1_UnityEngine_GameObject__1__StaticFields { +}; + +struct AsyncOperationHandle_1_UnityEngine_GameObject__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct AsyncOperationHandle_1_UnityEngine_GameObject__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct AsyncOperationHandle_1_UnityEngine_GameObject__1__VTable vtable; +}; + struct KeyValuePair_2_UnityEngine_GameObject_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -973597,6 +986597,19 @@ struct DiagnosticEventCollectorSingleton { struct DiagnosticEventCollectorSingleton__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct DiagnosticEvent value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___Array *_entries; @@ -973616,19 +986629,6 @@ struct Dictionary_2_System_Int32_UnityEngine_ResourceManagement_Diagnostics_Diag struct Dictionary_2_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct DiagnosticEvent value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___Array__Class *klass; MonitorData *monitor; @@ -973974,6 +986974,21 @@ struct ICollection_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent_ struct ICollection_1_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___VTable vtable; }; +struct DiagnosticEvent___VTable { +}; + +struct DiagnosticEvent___StaticFields { +}; + +struct DiagnosticEvent___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DiagnosticEvent___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DiagnosticEvent___VTable vtable; +}; + struct KeyValuePair_2_System_Int32_UnityEngine_ResourceManagement_Diagnostics_DiagnosticEvent___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -974470,19 +987485,6 @@ struct PackedPlayModeBuildLogs { struct PackedPlayModeBuildLogs__Fields fields; }; -struct __declspec(align(8)) List_1_PackedPlayModeBuildLogs_RuntimeBuildLog___Fields { - struct PackedPlayModeBuildLogs_RuntimeBuildLog__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_PackedPlayModeBuildLogs_RuntimeBuildLog_ { - struct List_1_PackedPlayModeBuildLogs_RuntimeBuildLog___Class *klass; - MonitorData *monitor; - struct List_1_PackedPlayModeBuildLogs_RuntimeBuildLog___Fields fields; -}; - struct PackedPlayModeBuildLogs_RuntimeBuildLog { #if defined(_CPLUSPLUS_) LogType__Enum Type; @@ -974498,6 +987500,19 @@ struct PackedPlayModeBuildLogs_RuntimeBuildLog__Boxed { struct PackedPlayModeBuildLogs_RuntimeBuildLog fields; }; +struct __declspec(align(8)) List_1_PackedPlayModeBuildLogs_RuntimeBuildLog___Fields { + struct PackedPlayModeBuildLogs_RuntimeBuildLog__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_PackedPlayModeBuildLogs_RuntimeBuildLog_ { + struct List_1_PackedPlayModeBuildLogs_RuntimeBuildLog___Class *klass; + MonitorData *monitor; + struct List_1_PackedPlayModeBuildLogs_RuntimeBuildLog___Fields fields; +}; + struct PackedPlayModeBuildLogs_RuntimeBuildLog__Array { struct PackedPlayModeBuildLogs_RuntimeBuildLog__Array__Class *klass; MonitorData *monitor; @@ -974772,19 +987787,6 @@ struct ResourceManagerRuntimeData { struct ResourceManagerRuntimeData__Fields fields; }; -struct __declspec(align(8)) List_1_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___Fields { - struct ResourceLocationData__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData_ { - struct List_1_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___Fields fields; -}; - struct __declspec(align(8)) ResourceLocationData__Fields { struct String__Array *m_Keys; struct String *m_InternalId; @@ -974801,6 +987803,19 @@ struct ResourceLocationData { struct ResourceLocationData__Fields fields; }; +struct __declspec(align(8)) List_1_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___Fields { + struct ResourceLocationData__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData_ { + struct List_1_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___Fields fields; +}; + struct ResourceLocationData__Array { struct ResourceLocationData__Array__Class *klass; MonitorData *monitor; @@ -975028,19 +988043,6 @@ struct AddressablesImpl { struct AddressablesImpl__Fields fields; }; -struct __declspec(align(8)) List_1_UnityEngine_AddressableAssets_AddressablesImpl_ResourceLocatorInfo___Fields { - struct AddressablesImpl_ResourceLocatorInfo__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_AddressableAssets_AddressablesImpl_ResourceLocatorInfo_ { - struct List_1_UnityEngine_AddressableAssets_AddressablesImpl_ResourceLocatorInfo___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_AddressableAssets_AddressablesImpl_ResourceLocatorInfo___Fields fields; -}; - struct __declspec(align(8)) AddressablesImpl_ResourceLocatorInfo__Fields { struct IResourceLocator *_Locator_k__BackingField; struct String *_LocalHash_k__BackingField; @@ -975054,6 +988056,19 @@ struct AddressablesImpl_ResourceLocatorInfo { struct AddressablesImpl_ResourceLocatorInfo__Fields fields; }; +struct __declspec(align(8)) List_1_UnityEngine_AddressableAssets_AddressablesImpl_ResourceLocatorInfo___Fields { + struct AddressablesImpl_ResourceLocatorInfo__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_AddressableAssets_AddressablesImpl_ResourceLocatorInfo_ { + struct List_1_UnityEngine_AddressableAssets_AddressablesImpl_ResourceLocatorInfo___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_AddressableAssets_AddressablesImpl_ResourceLocatorInfo___Fields fields; +}; + struct IResourceLocator { struct IResourceLocator__Class *klass; MonitorData *monitor; @@ -975254,6 +988269,19 @@ struct ResourceManagerDiagnostics { struct ResourceManagerDiagnostics__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_AddressableAssets_Utility_DiagnosticInfo_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct DiagnosticInfo *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_AddressableAssets_Utility_DiagnosticInfo___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_AddressableAssets_Utility_DiagnosticInfo___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_AddressableAssets_Utility_DiagnosticInfo_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_UnityEngine_AddressableAssets_Utility_DiagnosticInfo___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_AddressableAssets_Utility_DiagnosticInfo___Array *_entries; @@ -975273,19 +988301,6 @@ struct Dictionary_2_System_Int32_UnityEngine_AddressableAssets_Utility_Diagnosti struct Dictionary_2_System_Int32_UnityEngine_AddressableAssets_Utility_DiagnosticInfo___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_AddressableAssets_Utility_DiagnosticInfo_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct DiagnosticInfo *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_AddressableAssets_Utility_DiagnosticInfo___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_AddressableAssets_Utility_DiagnosticInfo___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_AddressableAssets_Utility_DiagnosticInfo_ fields; -}; - struct __declspec(align(8)) DiagnosticInfo__Fields { struct String *DisplayName; int32_t ObjectId; @@ -975738,6 +988753,19 @@ struct UpdateCatalogsOperation { struct UpdateCatalogsOperation__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ { + int32_t hashCode; + int32_t next; + struct Object *key; + struct AsyncOperationHandle value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Array *_entries; @@ -975757,19 +988785,6 @@ struct Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations struct Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ { - int32_t hashCode; - int32_t next; - struct Object *key; - struct AsyncOperationHandle value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Array { struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___Array__Class *klass; MonitorData *monitor; @@ -976916,6 +989931,21 @@ struct ICollection_1_UnityEngine_AddressableAssets_Utility_DiagnosticInfo___Clas struct ICollection_1_UnityEngine_AddressableAssets_Utility_DiagnosticInfo___VTable vtable; }; +struct DiagnosticInfo___VTable { +}; + +struct DiagnosticInfo___StaticFields { +}; + +struct DiagnosticInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DiagnosticInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DiagnosticInfo___VTable vtable; +}; + struct KeyValuePair_2_System_Int32_UnityEngine_AddressableAssets_Utility_DiagnosticInfo___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -978162,6 +991192,21 @@ struct ICollection_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperati struct ICollection_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___VTable vtable; }; +struct AsyncOperationHandle___VTable { +}; + +struct AsyncOperationHandle___StaticFields { +}; + +struct AsyncOperationHandle___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct AsyncOperationHandle___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct AsyncOperationHandle___VTable vtable; +}; + struct KeyValuePair_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -978487,6 +991532,18 @@ struct InvalidKeyException__Class { struct InvalidKeyException__VTable vtable; }; +struct HashSet_1_T_Slot_System_Type_ { + int32_t hashCode; + int32_t next; + struct Type *value; +}; + +struct HashSet_1_T_Slot_System_Type___Boxed { + struct HashSet_1_T_Slot_System_Type___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_System_Type_ fields; +}; + struct __declspec(align(8)) HashSet_1_System_Type___Fields { struct Int32__Array *_buckets; struct HashSet_1_T_Slot_System_Type___Array *_slots; @@ -978504,18 +991561,6 @@ struct HashSet_1_System_Type_ { struct HashSet_1_System_Type___Fields fields; }; -struct HashSet_1_T_Slot_System_Type_ { - int32_t hashCode; - int32_t next; - struct Type *value; -}; - -struct HashSet_1_T_Slot_System_Type___Boxed { - struct HashSet_1_T_Slot_System_Type___Class *klass; - MonitorData *monitor; - struct HashSet_1_T_Slot_System_Type_ fields; -}; - struct HashSet_1_T_Slot_System_Type___Array { struct HashSet_1_T_Slot_System_Type___Array__Class *klass; MonitorData *monitor; @@ -978602,6 +991647,19 @@ struct HashSet_1_System_Type___Class { struct HashSet_1_System_Type___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_System_Type_List_1_System_String_ { + int32_t hashCode; + int32_t next; + struct Type *key; + struct List_1_System_String_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_List_1_System_String___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Type_List_1_System_String___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Type_List_1_System_String_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Type_List_1_System_String___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Type_List_1_System_String___Array *_entries; @@ -978621,19 +991679,6 @@ struct Dictionary_2_System_Type_List_1_System_String_ { struct Dictionary_2_System_Type_List_1_System_String___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Type_List_1_System_String_ { - int32_t hashCode; - int32_t next; - struct Type *key; - struct List_1_System_String_ *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Type_List_1_System_String___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Type_List_1_System_String___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Type_List_1_System_String_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Type_List_1_System_String___Array { struct Dictionary_2_TKey_TValue_Entry_System_Type_List_1_System_String___Array__Class *klass; MonitorData *monitor; @@ -980094,6 +993139,21 @@ struct AsyncOperationHandle_1_System_Int64___Class { struct AsyncOperationHandle_1_System_Int64___VTable vtable; }; +struct IList_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation__1__VTable { +}; + +struct IList_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation__1__StaticFields { +}; + +struct IList_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IList_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IList_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation__1__VTable vtable; +}; + struct AddressablesImpl_LoadResourceLocationKeysOp__Fields { struct AsyncOperationBase_1_System_Collections_Generic_IList_1__2__Fields _; struct IEnumerable *m_Key; @@ -984434,25 +997494,6 @@ struct PlatformMappingService { MonitorData *monitor; }; -struct __declspec(align(8)) Dictionary_2_UnityEngine_RuntimePlatform_UnityEngine_AddressableAssets_AddressablesPlatform___Fields { - struct Int32__Array *_buckets; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_RuntimePlatform_UnityEngine_AddressableAssets_AddressablesPlatform___Array *_entries; - int32_t _count; - int32_t _freeList; - int32_t _freeCount; - int32_t _version; - struct IEqualityComparer_1_UnityEngine_RuntimePlatform_ *_comparer; - struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_RuntimePlatform_UnityEngine_AddressableAssets_AddressablesPlatform_ *_keys; - struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_RuntimePlatform_UnityEngine_AddressableAssets_AddressablesPlatform_ *_values; - struct Object *_syncRoot; -}; - -struct Dictionary_2_UnityEngine_RuntimePlatform_UnityEngine_AddressableAssets_AddressablesPlatform_ { - struct Dictionary_2_UnityEngine_RuntimePlatform_UnityEngine_AddressableAssets_AddressablesPlatform___Class *klass; - MonitorData *monitor; - struct Dictionary_2_UnityEngine_RuntimePlatform_UnityEngine_AddressableAssets_AddressablesPlatform___Fields fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_RuntimePlatform_UnityEngine_AddressableAssets_AddressablesPlatform_ { int32_t hashCode; int32_t next; @@ -984474,6 +997515,25 @@ struct Dictionary_2_TKey_TValue_Entry_UnityEngine_RuntimePlatform_UnityEngine_Ad struct Dictionary_2_TKey_TValue_Entry_UnityEngine_RuntimePlatform_UnityEngine_AddressableAssets_AddressablesPlatform_ fields; }; +struct __declspec(align(8)) Dictionary_2_UnityEngine_RuntimePlatform_UnityEngine_AddressableAssets_AddressablesPlatform___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_RuntimePlatform_UnityEngine_AddressableAssets_AddressablesPlatform___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_UnityEngine_RuntimePlatform_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_RuntimePlatform_UnityEngine_AddressableAssets_AddressablesPlatform_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_RuntimePlatform_UnityEngine_AddressableAssets_AddressablesPlatform_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_UnityEngine_RuntimePlatform_UnityEngine_AddressableAssets_AddressablesPlatform_ { + struct Dictionary_2_UnityEngine_RuntimePlatform_UnityEngine_AddressableAssets_AddressablesPlatform___Class *klass; + MonitorData *monitor; + struct Dictionary_2_UnityEngine_RuntimePlatform_UnityEngine_AddressableAssets_AddressablesPlatform___Fields fields; +}; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_RuntimePlatform_UnityEngine_AddressableAssets_AddressablesPlatform___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_RuntimePlatform_UnityEngine_AddressableAssets_AddressablesPlatform___Array__Class *klass; MonitorData *monitor; @@ -984808,6 +997868,21 @@ struct ICollection_1_UnityEngine_AddressableAssets_AddressablesPlatform___Class struct ICollection_1_UnityEngine_AddressableAssets_AddressablesPlatform___VTable vtable; }; +struct AddressablesPlatform___VTable { +}; + +struct AddressablesPlatform___StaticFields { +}; + +struct AddressablesPlatform___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct AddressablesPlatform___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct AddressablesPlatform___VTable vtable; +}; + struct KeyValuePair_2_UnityEngine_RuntimePlatform_UnityEngine_AddressableAssets_AddressablesPlatform___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -984983,6 +998058,19 @@ struct ContentCatalogProvider { struct ContentCatalogProvider__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_UnityEngine_AddressableAssets_ResourceProviders_ContentCatalogProvider_InternalOp_ { + int32_t hashCode; + int32_t next; + struct IResourceLocation *key; + struct ContentCatalogProvider_InternalOp *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_UnityEngine_AddressableAssets_ResourceProviders_ContentCatalogProvider_InternalOp___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_UnityEngine_AddressableAssets_ResourceProviders_ContentCatalogProvider_InternalOp___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_UnityEngine_AddressableAssets_ResourceProviders_ContentCatalogProvider_InternalOp_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_UnityEngine_AddressableAssets_ResourceProviders_ContentCatalogProvider_InternalOp___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_UnityEngine_AddressableAssets_ResourceProviders_ContentCatalogProvider_InternalOp___Array *_entries; @@ -985002,19 +998090,6 @@ struct Dictionary_2_UnityEngine_ResourceManagement_ResourceLocations_IResourceLo struct Dictionary_2_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_UnityEngine_AddressableAssets_ResourceProviders_ContentCatalogProvider_InternalOp___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_UnityEngine_AddressableAssets_ResourceProviders_ContentCatalogProvider_InternalOp_ { - int32_t hashCode; - int32_t next; - struct IResourceLocation *key; - struct ContentCatalogProvider_InternalOp *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_UnityEngine_AddressableAssets_ResourceProviders_ContentCatalogProvider_InternalOp___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_UnityEngine_AddressableAssets_ResourceProviders_ContentCatalogProvider_InternalOp___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_UnityEngine_AddressableAssets_ResourceProviders_ContentCatalogProvider_InternalOp_ fields; -}; - struct AsyncOperationHandle_1_UnityEngine_AddressableAssets_ResourceLocators_ContentCatalogData_ { struct AsyncOperationBase_1_UnityEngine_AddressableAssets_ResourceLocators_ContentCatalogData_ *m_InternalOp; int32_t m_Version; @@ -986176,6 +999251,21 @@ struct ICollection_1_UnityEngine_AddressableAssets_ResourceProviders_ContentCata struct ICollection_1_UnityEngine_AddressableAssets_ResourceProviders_ContentCatalogProvider_InternalOp___VTable vtable; }; +struct ContentCatalogProvider_InternalOp___VTable { +}; + +struct ContentCatalogProvider_InternalOp___StaticFields { +}; + +struct ContentCatalogProvider_InternalOp___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ContentCatalogProvider_InternalOp___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ContentCatalogProvider_InternalOp___VTable vtable; +}; + struct KeyValuePair_2_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_UnityEngine_AddressableAssets_ResourceProviders_ContentCatalogProvider_InternalOp___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -986396,6 +999486,19 @@ struct ResourceLocationMap { struct ResourceLocationMap__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_Object_IList_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_ { + int32_t hashCode; + int32_t next; + struct Object *key; + struct IList_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Object_IList_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Object_IList_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Object_IList_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Object_IList_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Object_IList_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation___Array *_entries; @@ -986415,19 +999518,6 @@ struct Dictionary_2_System_Object_IList_1_UnityEngine_ResourceManagement_Resourc struct Dictionary_2_System_Object_IList_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Object_IList_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_ { - int32_t hashCode; - int32_t next; - struct Object *key; - struct IList_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_ *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Object_IList_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Object_IList_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Object_IList_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Object_IList_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation___Array { struct Dictionary_2_TKey_TValue_Entry_System_Object_IList_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation___Array__Class *klass; MonitorData *monitor; @@ -988183,6 +1001273,21 @@ struct GestureRecognizer__Class { struct GestureRecognizer__VTable vtable; }; +struct GestureEventData___VTable { +}; + +struct GestureEventData___StaticFields { +}; + +struct GestureEventData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GestureEventData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GestureEventData___VTable vtable; +}; + struct __declspec(align(8)) HandMeshTracker__Fields { #if defined(_CPLUSPLUS_) NativeLibToken__Enum m_token; @@ -988313,6 +1001418,21 @@ struct FrameTime__Enum__Class { struct FrameTime__Enum__VTable vtable; }; +struct Pose___VTable { +}; + +struct Pose___StaticFields { +}; + +struct Pose___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Pose___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Pose___VTable vtable; +}; + struct HandPoseType__Enum__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -988769,6 +1001889,16 @@ struct MixedRealityFeaturePlugin { struct MixedRealityFeaturePlugin__Fields fields; }; +struct __declspec(align(8)) SubsystemController__Fields { + struct IOpenXRContext *Context; +}; + +struct SubsystemController { + struct SubsystemController__Class *klass; + MonitorData *monitor; + struct SubsystemController__Fields fields; +}; + struct __declspec(align(8)) List_1_Microsoft_MixedReality_OpenXR_SubsystemController___Fields { struct SubsystemController__Array *_items; int32_t _size; @@ -988782,16 +1001912,6 @@ struct List_1_Microsoft_MixedReality_OpenXR_SubsystemController_ { struct List_1_Microsoft_MixedReality_OpenXR_SubsystemController___Fields fields; }; -struct __declspec(align(8)) SubsystemController__Fields { - struct IOpenXRContext *Context; -}; - -struct SubsystemController { - struct SubsystemController__Class *klass; - MonitorData *monitor; - struct SubsystemController__Fields fields; -}; - struct IOpenXRContext { struct IOpenXRContext__Class *klass; MonitorData *monitor; @@ -988840,19 +1001960,6 @@ struct SessionSubsystemController { struct SessionSubsystemController__Fields fields; }; -struct __declspec(align(8)) List_1_UnityEngine_XR_ARSubsystems_XRSessionSubsystemDescriptor___Fields { - struct XRSessionSubsystemDescriptor__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_XR_ARSubsystems_XRSessionSubsystemDescriptor_ { - struct List_1_UnityEngine_XR_ARSubsystems_XRSessionSubsystemDescriptor___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_XR_ARSubsystems_XRSessionSubsystemDescriptor___Fields fields; -}; - struct __declspec(align(8)) SubsystemDescriptorWithProvider__Fields { struct String *_id_k__BackingField; struct Type *_providerType_k__BackingField; @@ -988887,6 +1001994,19 @@ struct XRSessionSubsystemDescriptor { struct XRSessionSubsystemDescriptor__Fields fields; }; +struct __declspec(align(8)) List_1_UnityEngine_XR_ARSubsystems_XRSessionSubsystemDescriptor___Fields { + struct XRSessionSubsystemDescriptor__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_XR_ARSubsystems_XRSessionSubsystemDescriptor_ { + struct List_1_UnityEngine_XR_ARSubsystems_XRSessionSubsystemDescriptor___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_XR_ARSubsystems_XRSessionSubsystemDescriptor___Fields fields; +}; + struct SubsystemDescriptorWithProvider_2_UnityEngine_XR_ARSubsystems_XRAnchorSubsystem_UnityEngine_XR_ARSubsystems_XRAnchorSubsystem_Provider___Fields { struct SubsystemDescriptorWithProvider__Fields _; }; @@ -988925,19 +1002045,6 @@ struct PlaneSubsystemController { struct PlaneSubsystemController__Fields fields; }; -struct __declspec(align(8)) List_1_UnityEngine_XR_ARSubsystems_XRPlaneSubsystemDescriptor___Fields { - struct XRPlaneSubsystemDescriptor__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_XR_ARSubsystems_XRPlaneSubsystemDescriptor_ { - struct List_1_UnityEngine_XR_ARSubsystems_XRPlaneSubsystemDescriptor___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_XR_ARSubsystems_XRPlaneSubsystemDescriptor___Fields fields; -}; - struct SubsystemDescriptorWithProvider_2_UnityEngine_XR_ARSubsystems_XRPlaneSubsystem_UnityEngine_XR_ARSubsystems_XRPlaneSubsystem_Provider___Fields { struct SubsystemDescriptorWithProvider__Fields _; }; @@ -988963,6 +1002070,19 @@ struct XRPlaneSubsystemDescriptor { struct XRPlaneSubsystemDescriptor__Fields fields; }; +struct __declspec(align(8)) List_1_UnityEngine_XR_ARSubsystems_XRPlaneSubsystemDescriptor___Fields { + struct XRPlaneSubsystemDescriptor__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_XR_ARSubsystems_XRPlaneSubsystemDescriptor_ { + struct List_1_UnityEngine_XR_ARSubsystems_XRPlaneSubsystemDescriptor___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_XR_ARSubsystems_XRPlaneSubsystemDescriptor___Fields fields; +}; + struct XRPlaneSubsystemDescriptor__Array { struct XRPlaneSubsystemDescriptor__Array__Class *klass; MonitorData *monitor; @@ -988991,6 +1002111,17 @@ struct AnchorSubsystemController { struct AnchorSubsystemController__Fields fields; }; +struct XRAnchorSubsystemDescriptor__Fields { + struct SubsystemDescriptorWithProvider_2_UnityEngine_XR_ARSubsystems_XRAnchorSubsystem_UnityEngine_XR_ARSubsystems_XRAnchorSubsystem_Provider___Fields _; + bool _supportsTrackableAttachments_k__BackingField; +}; + +struct XRAnchorSubsystemDescriptor { + struct XRAnchorSubsystemDescriptor__Class *klass; + MonitorData *monitor; + struct XRAnchorSubsystemDescriptor__Fields fields; +}; + struct __declspec(align(8)) List_1_UnityEngine_XR_ARSubsystems_XRAnchorSubsystemDescriptor___Fields { struct XRAnchorSubsystemDescriptor__Array *_items; int32_t _size; @@ -989004,17 +1002135,6 @@ struct List_1_UnityEngine_XR_ARSubsystems_XRAnchorSubsystemDescriptor_ { struct List_1_UnityEngine_XR_ARSubsystems_XRAnchorSubsystemDescriptor___Fields fields; }; -struct XRAnchorSubsystemDescriptor__Fields { - struct SubsystemDescriptorWithProvider_2_UnityEngine_XR_ARSubsystems_XRAnchorSubsystem_UnityEngine_XR_ARSubsystems_XRAnchorSubsystem_Provider___Fields _; - bool _supportsTrackableAttachments_k__BackingField; -}; - -struct XRAnchorSubsystemDescriptor { - struct XRAnchorSubsystemDescriptor__Class *klass; - MonitorData *monitor; - struct XRAnchorSubsystemDescriptor__Fields fields; -}; - struct XRAnchorSubsystemDescriptor__Array { struct XRAnchorSubsystemDescriptor__Array__Class *klass; MonitorData *monitor; @@ -989043,19 +1002163,6 @@ struct RaycastSubsystemController { struct RaycastSubsystemController__Fields fields; }; -struct __declspec(align(8)) List_1_UnityEngine_XR_ARSubsystems_XRRaycastSubsystemDescriptor___Fields { - struct XRRaycastSubsystemDescriptor__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_XR_ARSubsystems_XRRaycastSubsystemDescriptor_ { - struct List_1_UnityEngine_XR_ARSubsystems_XRRaycastSubsystemDescriptor___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_XR_ARSubsystems_XRRaycastSubsystemDescriptor___Fields fields; -}; - struct SubsystemDescriptorWithProvider_2_UnityEngine_XR_ARSubsystems_XRRaycastSubsystem_UnityEngine_XR_ARSubsystems_XRRaycastSubsystem_Provider___Fields { struct SubsystemDescriptorWithProvider__Fields _; }; @@ -989127,6 +1002234,19 @@ struct XRRaycastSubsystemDescriptor { struct XRRaycastSubsystemDescriptor__Fields fields; }; +struct __declspec(align(8)) List_1_UnityEngine_XR_ARSubsystems_XRRaycastSubsystemDescriptor___Fields { + struct XRRaycastSubsystemDescriptor__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_XR_ARSubsystems_XRRaycastSubsystemDescriptor_ { + struct List_1_UnityEngine_XR_ARSubsystems_XRRaycastSubsystemDescriptor___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_XR_ARSubsystems_XRRaycastSubsystemDescriptor___Fields fields; +}; + struct XRRaycastSubsystemDescriptor__Array { struct XRRaycastSubsystemDescriptor__Array__Class *klass; MonitorData *monitor; @@ -989155,19 +1002275,6 @@ struct MeshSubsystemController { struct MeshSubsystemController__Fields fields; }; -struct __declspec(align(8)) List_1_UnityEngine_XR_XRMeshSubsystemDescriptor___Fields { - struct XRMeshSubsystemDescriptor__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_XR_XRMeshSubsystemDescriptor_ { - struct List_1_UnityEngine_XR_XRMeshSubsystemDescriptor___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_XR_XRMeshSubsystemDescriptor___Fields fields; -}; - struct IntegratedSubsystemDescriptor_1_UnityEngine_XR_XRMeshSubsystem___Fields { struct IntegratedSubsystemDescriptor__Fields _; }; @@ -989188,6 +1002295,19 @@ struct XRMeshSubsystemDescriptor { struct XRMeshSubsystemDescriptor__Fields fields; }; +struct __declspec(align(8)) List_1_UnityEngine_XR_XRMeshSubsystemDescriptor___Fields { + struct XRMeshSubsystemDescriptor__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_XR_XRMeshSubsystemDescriptor_ { + struct List_1_UnityEngine_XR_XRMeshSubsystemDescriptor___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_XR_XRMeshSubsystemDescriptor___Fields fields; +}; + struct XRMeshSubsystemDescriptor__Array { struct XRMeshSubsystemDescriptor__Array__Class *klass; MonitorData *monitor; @@ -989217,19 +1002337,6 @@ struct OpenXRViewConfigurationSettings { struct OpenXRViewConfigurationSettings__Fields fields; }; -struct __declspec(align(8)) List_1_Microsoft_MixedReality_OpenXR_ViewConfiguration___Fields { - struct ViewConfiguration__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Microsoft_MixedReality_OpenXR_ViewConfiguration_ { - struct List_1_Microsoft_MixedReality_OpenXR_ViewConfiguration___Class *klass; - MonitorData *monitor; - struct List_1_Microsoft_MixedReality_OpenXR_ViewConfiguration___Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class ViewConfigurationType__Enum : int32_t { PrimaryStereo = 0x00000002, @@ -989253,6 +1002360,35 @@ struct ViewConfigurationType__Enum__Boxed { #endif }; +#if defined(_CPLUSPLUS_) +enum class ReprojectionMode__Enum : int32_t { + Depth = 0x00000001, + PlanarFromDepth = 0x00000002, + PlanarManual = 0x00000003, + OrientationOnly = 0x00000004, + NoReprojection = -1, +}; + +#else +enum ReprojectionMode__Enum { + ReprojectionMode__Enum_Depth = 0x00000001, + ReprojectionMode__Enum_PlanarFromDepth = 0x00000002, + ReprojectionMode__Enum_PlanarManual = 0x00000003, + ReprojectionMode__Enum_OrientationOnly = 0x00000004, + ReprojectionMode__Enum_NoReprojection = -1, +}; + +#endif +struct ReprojectionMode__Enum__Boxed { + struct ReprojectionMode__Enum__Class *klass; + MonitorData *monitor; + #if defined(_CPLUSPLUS_) + ReprojectionMode__Enum value; + #else + int32_t value; + #endif +}; + struct OpenXRViewConfiguration { #if defined(_CPLUSPLUS_) NativeLibToken__Enum m_nativeLibToken; @@ -989283,33 +1002419,17 @@ struct ViewConfiguration__Boxed { struct ViewConfiguration fields; }; -#if defined(_CPLUSPLUS_) -enum class ReprojectionMode__Enum : int32_t { - Depth = 0x00000001, - PlanarFromDepth = 0x00000002, - PlanarManual = 0x00000003, - OrientationOnly = 0x00000004, - NoReprojection = -1, +struct __declspec(align(8)) List_1_Microsoft_MixedReality_OpenXR_ViewConfiguration___Fields { + struct ViewConfiguration__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; }; -#else -enum ReprojectionMode__Enum { - ReprojectionMode__Enum_Depth = 0x00000001, - ReprojectionMode__Enum_PlanarFromDepth = 0x00000002, - ReprojectionMode__Enum_PlanarManual = 0x00000003, - ReprojectionMode__Enum_OrientationOnly = 0x00000004, - ReprojectionMode__Enum_NoReprojection = -1, -}; - -#endif -struct ReprojectionMode__Enum__Boxed { - struct ReprojectionMode__Enum__Class *klass; +struct List_1_Microsoft_MixedReality_OpenXR_ViewConfiguration_ { + struct List_1_Microsoft_MixedReality_OpenXR_ViewConfiguration___Class *klass; MonitorData *monitor; - #if defined(_CPLUSPLUS_) - ReprojectionMode__Enum value; - #else - int32_t value; - #endif + struct List_1_Microsoft_MixedReality_OpenXR_ViewConfiguration___Fields fields; }; struct ReprojectionMode__Enum__Array { @@ -991500,6 +1004620,21 @@ struct XRAnchor__Class { struct XRAnchor__VTable vtable; }; +struct XRAnchor___VTable { +}; + +struct XRAnchor___StaticFields { +}; + +struct XRAnchor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct XRAnchor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct XRAnchor___VTable vtable; +}; + struct AnchorSubsystem_OpenXRProvider__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -993365,6 +1006500,21 @@ struct ConnectionState__Enum__Class { struct ConnectionState__Enum__VTable vtable; }; +struct ConnectionState___VTable { +}; + +struct ConnectionState___StaticFields { +}; + +struct ConnectionState___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ConnectionState___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ConnectionState___VTable vtable; +}; + struct DisconnectReason__Enum__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -993403,6 +1006553,21 @@ struct DisconnectReason__Enum__Class { struct DisconnectReason__Enum__VTable vtable; }; +struct DisconnectReason___VTable { +}; + +struct DisconnectReason___StaticFields { +}; + +struct DisconnectReason___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DisconnectReason___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DisconnectReason___VTable vtable; +}; + struct NativeLib { struct NativeLib__Class *klass; MonitorData *monitor; @@ -994021,6 +1007186,21 @@ struct NativeArray_1_UnityEngine_Vector2___Class { struct NativeArray_1_UnityEngine_Vector2___VTable vtable; }; +struct NativeArray_1_UnityEngine_Vector2__1__VTable { +}; + +struct NativeArray_1_UnityEngine_Vector2__1__StaticFields { +}; + +struct NativeArray_1_UnityEngine_Vector2__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NativeArray_1_UnityEngine_Vector2__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NativeArray_1_UnityEngine_Vector2__1__VTable vtable; +}; + struct IEnumerator_1_UnityEngine_XR_ARSubsystems_BoundedPlane___VTable { VirtualInvokeData get_Current; }; @@ -994681,6 +1007861,21 @@ struct XRRaycast__Class { struct XRRaycast__VTable vtable; }; +struct XRRaycast___VTable { +}; + +struct XRRaycast___StaticFields { +}; + +struct XRRaycast___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct XRRaycast___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct XRRaycast___VTable vtable; +}; + struct IEnumerator_1_UnityEngine_XR_ARSubsystems_XRRaycast___VTable { VirtualInvokeData get_Current; }; @@ -996494,6 +1009689,19 @@ struct ARTrackablesParentTransformChangedEventArgs__Boxed { struct ARTrackablesParentTransformChangedEventArgs fields; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_XR_ARSubsystems_TrackableId_UnityEngine_XR_ARFoundation_ARAnchor_ { + int32_t hashCode; + int32_t next; + struct TrackableId key; + struct ARAnchor *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_XR_ARSubsystems_TrackableId_UnityEngine_XR_ARFoundation_ARAnchor___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_XR_ARSubsystems_TrackableId_UnityEngine_XR_ARFoundation_ARAnchor___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_XR_ARSubsystems_TrackableId_UnityEngine_XR_ARFoundation_ARAnchor_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_XR_ARSubsystems_TrackableId_UnityEngine_XR_ARFoundation_ARAnchor___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_XR_ARSubsystems_TrackableId_UnityEngine_XR_ARFoundation_ARAnchor___Array *_entries; @@ -996513,19 +1009721,6 @@ struct Dictionary_2_UnityEngine_XR_ARSubsystems_TrackableId_UnityEngine_XR_ARFou struct Dictionary_2_UnityEngine_XR_ARSubsystems_TrackableId_UnityEngine_XR_ARFoundation_ARAnchor___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_XR_ARSubsystems_TrackableId_UnityEngine_XR_ARFoundation_ARAnchor_ { - int32_t hashCode; - int32_t next; - struct TrackableId key; - struct ARAnchor *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_XR_ARSubsystems_TrackableId_UnityEngine_XR_ARFoundation_ARAnchor___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_XR_ARSubsystems_TrackableId_UnityEngine_XR_ARFoundation_ARAnchor___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_XR_ARSubsystems_TrackableId_UnityEngine_XR_ARFoundation_ARAnchor_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_XR_ARSubsystems_TrackableId_UnityEngine_XR_ARFoundation_ARAnchor___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_XR_ARSubsystems_TrackableId_UnityEngine_XR_ARFoundation_ARAnchor___Array__Class *klass; MonitorData *monitor; @@ -997042,6 +1010237,21 @@ struct ICollection_1_UnityEngine_XR_ARFoundation_ARAnchor___Class { struct ICollection_1_UnityEngine_XR_ARFoundation_ARAnchor___VTable vtable; }; +struct ARAnchor___VTable { +}; + +struct ARAnchor___StaticFields { +}; + +struct ARAnchor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ARAnchor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ARAnchor___VTable vtable; +}; + struct KeyValuePair_2_UnityEngine_XR_ARSubsystems_TrackableId_UnityEngine_XR_ARFoundation_ARAnchor___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -998056,6 +1011266,21 @@ struct UdpEventStreamQueue__Class { struct UdpEventStreamQueue__VTable vtable; }; +struct UdpEvent___VTable { +}; + +struct UdpEvent___StaticFields { +}; + +struct UdpEvent___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UdpEvent___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UdpEvent___VTable vtable; +}; + struct BroadcastSession__Fields { struct Message__Fields _; struct UdpSession *Host; @@ -998582,6 +1011807,19 @@ struct PacketIdValidator { struct PacketIdValidator__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_UInt32_ { + int32_t hashCode; + int32_t next; + struct UdpEndPoint key; + uint32_t value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_UInt32___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_UInt32___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_UInt32_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UdpKit_UdpEndPoint_System_UInt32___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_UInt32___Array *_entries; @@ -998601,19 +1011839,6 @@ struct Dictionary_2_UdpKit_UdpEndPoint_System_UInt32_ { struct Dictionary_2_UdpKit_UdpEndPoint_System_UInt32___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_UInt32_ { - int32_t hashCode; - int32_t next; - struct UdpEndPoint key; - uint32_t value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_UInt32___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_UInt32___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_UInt32_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_UInt32___Array { struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_UInt32___Array__Class *klass; MonitorData *monitor; @@ -999406,19 +1012631,6 @@ struct TVEElementMaterialData { struct TVEElementMaterialData__Fields fields; }; -struct __declspec(align(8)) List_1_TheVegetationEngine_TVEElementPropertyData___Fields { - struct TVEElementPropertyData__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_TheVegetationEngine_TVEElementPropertyData_ { - struct List_1_TheVegetationEngine_TVEElementPropertyData___Class *klass; - MonitorData *monitor; - struct List_1_TheVegetationEngine_TVEElementPropertyData___Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class TVEPropertyType__Enum : int32_t { Texture = 0x00000000, @@ -999462,6 +1012674,19 @@ struct TVEElementPropertyData { struct TVEElementPropertyData__Fields fields; }; +struct __declspec(align(8)) List_1_TheVegetationEngine_TVEElementPropertyData___Fields { + struct TVEElementPropertyData__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_TheVegetationEngine_TVEElementPropertyData_ { + struct List_1_TheVegetationEngine_TVEElementPropertyData___Class *klass; + MonitorData *monitor; + struct List_1_TheVegetationEngine_TVEElementPropertyData___Fields fields; +}; + struct TVEElementPropertyData__Array { struct TVEElementPropertyData__Array__Class *klass; MonitorData *monitor; @@ -999653,19 +1012878,6 @@ struct TVEInstanced { struct TVEInstanced__Fields fields; }; -struct __declspec(align(8)) List_1_TheVegetationEngine_TVEElement___Fields { - struct TVEElement__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_TheVegetationEngine_TVEElement_ { - struct List_1_TheVegetationEngine_TVEElement___Class *klass; - MonitorData *monitor; - struct List_1_TheVegetationEngine_TVEElement___Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class TVEElementVisibilityMode__Enum : int32_t { UseGlobalVolumeSettings = -1, @@ -999762,6 +1012974,19 @@ struct TVEElement { struct TVEElement__Fields fields; }; +struct __declspec(align(8)) List_1_TheVegetationEngine_TVEElement___Fields { + struct TVEElement__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_TheVegetationEngine_TVEElement_ { + struct List_1_TheVegetationEngine_TVEElement___Class *klass; + MonitorData *monitor; + struct List_1_TheVegetationEngine_TVEElement___Fields fields; +}; + struct TVEElement__Array { struct TVEElement__Array__Class *klass; MonitorData *monitor; @@ -1000162,19 +1013387,6 @@ struct TVETerrainSettings { struct TVETerrainSettings__Fields fields; }; -struct __declspec(align(8)) List_1_TheVegetationEngine_TVETerrainLayerSettings___Fields { - struct TVETerrainLayerSettings__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_TheVegetationEngine_TVETerrainLayerSettings_ { - struct List_1_TheVegetationEngine_TVETerrainLayerSettings___Class *klass; - MonitorData *monitor; - struct List_1_TheVegetationEngine_TVETerrainLayerSettings___Fields fields; -}; - struct __declspec(align(8)) TVETerrainLayerSettings__Fields { struct String *name; bool isInitialized; @@ -1000200,6 +1013412,19 @@ struct TVETerrainLayerSettings { struct TVETerrainLayerSettings__Fields fields; }; +struct __declspec(align(8)) List_1_TheVegetationEngine_TVETerrainLayerSettings___Fields { + struct TVETerrainLayerSettings__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_TheVegetationEngine_TVETerrainLayerSettings_ { + struct List_1_TheVegetationEngine_TVETerrainLayerSettings___Class *klass; + MonitorData *monitor; + struct List_1_TheVegetationEngine_TVETerrainLayerSettings___Fields fields; +}; + struct TerrainLayer__Fields { struct Object_1__Fields _; }; @@ -1001246,6 +1014471,22 @@ struct ColliderDisabler { struct ColliderDisabler__Fields fields; }; +struct __declspec(align(8)) DemoManager_DemoZone__Fields { + struct String *m_Header; + struct String *m_Description; + struct String *m_Action; + struct DemoZoneTrigger *m_DemoZoneTrigger; + struct MonoBehaviour__Array *m_EnableObjects; + struct GameObject__Array *m_ToggleObjects; + int32_t m_Index; +}; + +struct DemoManager_DemoZone { + struct DemoManager_DemoZone__Class *klass; + MonitorData *monitor; + struct DemoManager_DemoZone__Fields fields; +}; + struct DemoManager__Fields { struct MonoBehaviour__Fields _; struct GameObject *m_Character; @@ -1001280,22 +1014521,6 @@ struct DemoManager { struct DemoManager__Fields fields; }; -struct __declspec(align(8)) DemoManager_DemoZone__Fields { - struct String *m_Header; - struct String *m_Description; - struct String *m_Action; - struct DemoZoneTrigger *m_DemoZoneTrigger; - struct MonoBehaviour__Array *m_EnableObjects; - struct GameObject__Array *m_ToggleObjects; - int32_t m_Index; -}; - -struct DemoManager_DemoZone { - struct DemoManager_DemoZone__Class *klass; - MonitorData *monitor; - struct DemoManager_DemoZone__Fields fields; -}; - struct DemoZoneTrigger__Fields { struct MonoBehaviour__Fields _; int32_t m_EnterExitCount; @@ -1001316,6 +1014541,19 @@ struct DemoManager_DemoZone__Array { struct DemoManager_DemoZone *vector[32]; }; +struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_Demo_DemoZoneTrigger_Opsive_UltimateCharacterController_Demo_DemoManager_DemoZone_ { + int32_t hashCode; + int32_t next; + struct DemoZoneTrigger *key; + struct DemoManager_DemoZone *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_Demo_DemoZoneTrigger_Opsive_UltimateCharacterController_Demo_DemoManager_DemoZone___Boxed { + struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_Demo_DemoZoneTrigger_Opsive_UltimateCharacterController_Demo_DemoManager_DemoZone___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_Demo_DemoZoneTrigger_Opsive_UltimateCharacterController_Demo_DemoManager_DemoZone_ fields; +}; + struct __declspec(align(8)) Dictionary_2_Opsive_UltimateCharacterController_Demo_DemoZoneTrigger_Opsive_UltimateCharacterController_Demo_DemoManager_DemoZone___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_Demo_DemoZoneTrigger_Opsive_UltimateCharacterController_Demo_DemoManager_DemoZone___Array *_entries; @@ -1001335,19 +1014573,6 @@ struct Dictionary_2_Opsive_UltimateCharacterController_Demo_DemoZoneTrigger_Opsi struct Dictionary_2_Opsive_UltimateCharacterController_Demo_DemoZoneTrigger_Opsive_UltimateCharacterController_Demo_DemoManager_DemoZone___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_Demo_DemoZoneTrigger_Opsive_UltimateCharacterController_Demo_DemoManager_DemoZone_ { - int32_t hashCode; - int32_t next; - struct DemoZoneTrigger *key; - struct DemoManager_DemoZone *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_Demo_DemoZoneTrigger_Opsive_UltimateCharacterController_Demo_DemoManager_DemoZone___Boxed { - struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_Demo_DemoZoneTrigger_Opsive_UltimateCharacterController_Demo_DemoManager_DemoZone___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_Demo_DemoZoneTrigger_Opsive_UltimateCharacterController_Demo_DemoManager_DemoZone_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_Demo_DemoZoneTrigger_Opsive_UltimateCharacterController_Demo_DemoManager_DemoZone___Array { struct Dictionary_2_TKey_TValue_Entry_Opsive_UltimateCharacterController_Demo_DemoZoneTrigger_Opsive_UltimateCharacterController_Demo_DemoManager_DemoZone___Array__Class *klass; MonitorData *monitor; @@ -1001443,19 +1014668,6 @@ struct IEnumerable_1_Opsive_UltimateCharacterController_Demo_DemoManager_DemoZon MonitorData *monitor; }; -struct __declspec(align(8)) List_1_Opsive_UltimateCharacterController_Demo_Objects_Door___Fields { - struct Door__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Opsive_UltimateCharacterController_Demo_Objects_Door_ { - struct List_1_Opsive_UltimateCharacterController_Demo_Objects_Door___Class *klass; - MonitorData *monitor; - struct List_1_Opsive_UltimateCharacterController_Demo_Objects_Door___Fields fields; -}; - struct Door__Fields { struct MonoBehaviour__Fields _; struct LayerMask m_LayerMask; @@ -1001482,6 +1014694,19 @@ struct Door { struct Door__Fields fields; }; +struct __declspec(align(8)) List_1_Opsive_UltimateCharacterController_Demo_Objects_Door___Fields { + struct Door__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Opsive_UltimateCharacterController_Demo_Objects_Door_ { + struct List_1_Opsive_UltimateCharacterController_Demo_Objects_Door___Class *klass; + MonitorData *monitor; + struct List_1_Opsive_UltimateCharacterController_Demo_Objects_Door___Fields fields; +}; + struct Door__Array { struct Door__Array__Class *klass; MonitorData *monitor; @@ -1001756,6 +1014981,21 @@ struct ICollection_1_Opsive_UltimateCharacterController_Demo_DemoManager_DemoZon struct ICollection_1_Opsive_UltimateCharacterController_Demo_DemoManager_DemoZone___VTable vtable; }; +struct DemoManager_DemoZone___VTable { +}; + +struct DemoManager_DemoZone___StaticFields { +}; + +struct DemoManager_DemoZone___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DemoManager_DemoZone___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DemoManager_DemoZone___VTable vtable; +}; + struct KeyValuePair_2_Opsive_UltimateCharacterController_Demo_DemoZoneTrigger_Opsive_UltimateCharacterController_Demo_DemoManager_DemoZone___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1003449,6 +1016689,33 @@ struct CarDriveType__Enum__Boxed { #endif }; +struct WheelCollider__Fields { + struct Collider__Fields _; +}; + +struct WheelCollider { + struct WheelCollider__Class *klass; + MonitorData *monitor; + struct WheelCollider__Fields fields; +}; + +struct WheelEffects__Fields { + struct MonoBehaviour__Fields _; + struct Transform *SkidTrailPrefab; + struct ParticleSystem *skidParticles; + bool _skidding_k__BackingField; + bool _PlayingAudio_k__BackingField; + struct AudioSource *m_AudioSource; + struct Transform *m_SkidTrail; + struct WheelCollider *m_WheelCollider; +}; + +struct WheelEffects { + struct WheelEffects__Class *klass; + MonitorData *monitor; + struct WheelEffects__Fields fields; +}; + #if defined(_CPLUSPLUS_) enum class SpeedType__Enum : int32_t { MPH = 0x00000000, @@ -1003518,16 +1016785,6 @@ struct CarController { struct CarController__Fields fields; }; -struct WheelCollider__Fields { - struct Collider__Fields _; -}; - -struct WheelCollider { - struct WheelCollider__Class *klass; - MonitorData *monitor; - struct WheelCollider__Fields fields; -}; - struct WheelCollider__Array { struct WheelCollider__Array__Class *klass; MonitorData *monitor; @@ -1003536,23 +1016793,6 @@ struct WheelCollider__Array { struct WheelCollider *vector[32]; }; -struct WheelEffects__Fields { - struct MonoBehaviour__Fields _; - struct Transform *SkidTrailPrefab; - struct ParticleSystem *skidParticles; - bool _skidding_k__BackingField; - bool _PlayingAudio_k__BackingField; - struct AudioSource *m_AudioSource; - struct Transform *m_SkidTrail; - struct WheelCollider *m_WheelCollider; -}; - -struct WheelEffects { - struct WheelEffects__Class *klass; - MonitorData *monitor; - struct WheelEffects__Fields fields; -}; - struct WheelEffects__Array { struct WheelEffects__Array__Class *klass; MonitorData *monitor; @@ -1004312,6 +1017552,36 @@ struct PhotonPlatform_c_DisplayClass19_0__Class { struct PhotonPlatform_c_DisplayClass19_0__VTable vtable; }; +struct PhotonPlatform_c_DisplayClass19_0___VTable { +}; + +struct PhotonPlatform_c_DisplayClass19_0___StaticFields { +}; + +struct PhotonPlatform_c_DisplayClass19_0___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PhotonPlatform_c_DisplayClass19_0___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PhotonPlatform_c_DisplayClass19_0___VTable vtable; +}; + +struct PhotonPoller___VTable { +}; + +struct PhotonPoller___StaticFields { +}; + +struct PhotonPoller___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PhotonPoller___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PhotonPoller___VTable vtable; +}; + struct __declspec(align(8)) PhotonPoller_PhotonPacket__Fields { struct Byte__Array *Data; int32_t Remote; @@ -1006515,24 +1019785,6 @@ struct DirectionalRotate__Class { struct DirectionalRotate__VTable vtable; }; -struct FingerIndicator__Fields { - struct Ability__Fields _; - int32_t m_SlotID; - struct String *m_Prefix; - struct String__Array *m_Inputs; - struct UltimateCharacterLocomotionHandler *m_Handler; - struct ActiveInputEvent__Array *m_InputEvents; - struct FingerIndicator_FingerStates__Enum__Array *m_FingerStates; - struct ChildAnimatorMonitor *m_HandAnimatorMonitor; - float m_GripStrength; -}; - -struct FingerIndicator { - struct FingerIndicator__Class *klass; - MonitorData *monitor; - struct FingerIndicator__Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class FingerIndicator_FingerStates__Enum : int32_t { Resting = 0x00000000, @@ -1006558,6 +1019810,24 @@ struct FingerIndicator_FingerStates__Enum__Boxed { #endif }; +struct FingerIndicator__Fields { + struct Ability__Fields _; + int32_t m_SlotID; + struct String *m_Prefix; + struct String__Array *m_Inputs; + struct UltimateCharacterLocomotionHandler *m_Handler; + struct ActiveInputEvent__Array *m_InputEvents; + struct FingerIndicator_FingerStates__Enum__Array *m_FingerStates; + struct ChildAnimatorMonitor *m_HandAnimatorMonitor; + float m_GripStrength; +}; + +struct FingerIndicator { + struct FingerIndicator__Class *klass; + MonitorData *monitor; + struct FingerIndicator__Fields fields; +}; + struct FingerIndicator_FingerStates__Enum__Array { struct FingerIndicator_FingerStates__Enum__Array__Class *klass; MonitorData *monitor; @@ -1007043,6 +1020313,19 @@ struct SlotEquip_ItemDefinitionStateName__Array { struct SlotEquip_ItemDefinitionStateName vector[32]; }; +struct Dictionary_2_TKey_TValue_Entry_Opsive_Shared_Inventory_ItemDefinitionBase_System_String_ { + int32_t hashCode; + int32_t next; + struct ItemDefinitionBase *key; + struct String *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_Opsive_Shared_Inventory_ItemDefinitionBase_System_String___Boxed { + struct Dictionary_2_TKey_TValue_Entry_Opsive_Shared_Inventory_ItemDefinitionBase_System_String___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_Opsive_Shared_Inventory_ItemDefinitionBase_System_String_ fields; +}; + struct __declspec(align(8)) Dictionary_2_Opsive_Shared_Inventory_ItemDefinitionBase_System_String___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_Opsive_Shared_Inventory_ItemDefinitionBase_System_String___Array *_entries; @@ -1007062,19 +1020345,6 @@ struct Dictionary_2_Opsive_Shared_Inventory_ItemDefinitionBase_System_String_ { struct Dictionary_2_Opsive_Shared_Inventory_ItemDefinitionBase_System_String___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_Opsive_Shared_Inventory_ItemDefinitionBase_System_String_ { - int32_t hashCode; - int32_t next; - struct ItemDefinitionBase *key; - struct String *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_Opsive_Shared_Inventory_ItemDefinitionBase_System_String___Boxed { - struct Dictionary_2_TKey_TValue_Entry_Opsive_Shared_Inventory_ItemDefinitionBase_System_String___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_Opsive_Shared_Inventory_ItemDefinitionBase_System_String_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_Opsive_Shared_Inventory_ItemDefinitionBase_System_String___Array { struct Dictionary_2_TKey_TValue_Entry_Opsive_Shared_Inventory_ItemDefinitionBase_System_String___Array__Class *klass; MonitorData *monitor; @@ -1008297,6 +1021567,21 @@ struct StateInfoIndex__Enum__Class { struct StateInfoIndex__Enum__VTable vtable; }; +struct AnimatorStateInfo___VTable { +}; + +struct AnimatorStateInfo___StaticFields { +}; + +struct AnimatorStateInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct AnimatorStateInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct AnimatorStateInfo___VTable vtable; +}; + struct AnimatorTransitionInfo { int32_t m_FullPath; int32_t m_UserName; @@ -1008333,6 +1021618,21 @@ struct AnimatorTransitionInfo__Class { struct AnimatorTransitionInfo__VTable vtable; }; +struct AnimatorTransitionInfo___VTable { +}; + +struct AnimatorTransitionInfo___StaticFields { +}; + +struct AnimatorTransitionInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct AnimatorTransitionInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct AnimatorTransitionInfo___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class AnimatorControllerParameterType__Enum : int32_t { Float = 0x00000001, @@ -1008584,6 +1021884,21 @@ struct AnimatorRecorderMode__Enum__Class { struct AnimatorRecorderMode__Enum__VTable vtable; }; +struct MatchTargetWeightMask___VTable { +}; + +struct MatchTargetWeightMask___StaticFields { +}; + +struct MatchTargetWeightMask___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MatchTargetWeightMask___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MatchTargetWeightMask___VTable vtable; +}; + struct AnimatorOverrideController__Fields { struct RuntimeAnimatorController__Fields _; struct AnimatorOverrideController_OnOverrideControllerDirtyCallback *OnOverrideControllerDirty; @@ -1008653,29 +1021968,6 @@ struct AnimatorOverrideController__Class { struct AnimatorOverrideController__VTable vtable; }; -struct HumanDescription { - struct HumanBone__Array *human; - struct SkeletonBone__Array *skeleton; - float m_ArmTwist; - float m_ForeArmTwist; - float m_UpperLegTwist; - float m_LegTwist; - float m_ArmStretch; - float m_LegStretch; - float m_FeetSpacing; - float m_GlobalScale; - struct String *m_RootMotionBoneName; - bool m_HasTranslationDoF; - bool m_HasExtraRoot; - bool m_SkeletonHasParents; -}; - -struct HumanDescription__Boxed { - struct HumanDescription__Class *klass; - MonitorData *monitor; - struct HumanDescription fields; -}; - struct HumanLimit { struct Vector3 m_Min; struct Vector3 m_Max; @@ -1008702,14 +1021994,6 @@ struct HumanBone__Boxed { struct HumanBone fields; }; -struct HumanBone__Array { - struct HumanBone__Array__Class *klass; - MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - struct HumanBone vector[32]; -}; - struct SkeletonBone { struct String *name; struct String *parentName; @@ -1008724,6 +1022008,37 @@ struct SkeletonBone__Boxed { struct SkeletonBone fields; }; +struct HumanDescription { + struct HumanBone__Array *human; + struct SkeletonBone__Array *skeleton; + float m_ArmTwist; + float m_ForeArmTwist; + float m_UpperLegTwist; + float m_LegTwist; + float m_ArmStretch; + float m_LegStretch; + float m_FeetSpacing; + float m_GlobalScale; + struct String *m_RootMotionBoneName; + bool m_HasTranslationDoF; + bool m_HasExtraRoot; + bool m_SkeletonHasParents; +}; + +struct HumanDescription__Boxed { + struct HumanDescription__Class *klass; + MonitorData *monitor; + struct HumanDescription fields; +}; + +struct HumanBone__Array { + struct HumanBone__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct HumanBone vector[32]; +}; + struct SkeletonBone__Array { struct SkeletonBone__Array__Class *klass; MonitorData *monitor; @@ -1008838,6 +1022153,21 @@ struct HumanDescription__Class { struct HumanDescription__VTable vtable; }; +struct HumanDescription___VTable { +}; + +struct HumanDescription___StaticFields { +}; + +struct HumanDescription___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HumanDescription___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HumanDescription___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class AvatarMaskBodyPart__Enum : int32_t { Root = 0x00000000, @@ -1009461,6 +1022791,21 @@ struct ParticleSystemScalingMode__Enum__Class { struct ParticleSystemScalingMode__Enum__VTable vtable; }; +struct ParticleSystem_Particle___VTable { +}; + +struct ParticleSystem_Particle___StaticFields { +}; + +struct ParticleSystem_Particle___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ParticleSystem_Particle___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ParticleSystem_Particle___VTable vtable; +}; + struct NativeArray_1_UnityEngine_ParticleSystem_Particle_ { struct Void *m_Buffer; int32_t m_Length; @@ -1009962,6 +1023307,21 @@ struct ParticleSystem_Trails__Class { struct ParticleSystem_Trails__VTable vtable; }; +struct ParticleSystem_Trails___VTable { +}; + +struct ParticleSystem_Trails___StaticFields { +}; + +struct ParticleSystem_Trails___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ParticleSystem_Trails___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ParticleSystem_Trails___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class ParticleSystemStopBehavior__Enum : int32_t { StopEmittingAndClear = 0x00000000, @@ -1010159,6 +1023519,21 @@ struct JobsUtility_JobScheduleParameters__Class { struct JobsUtility_JobScheduleParameters__VTable vtable; }; +struct JobsUtility_JobScheduleParameters___VTable { +}; + +struct JobsUtility_JobScheduleParameters___StaticFields { +}; + +struct JobsUtility_JobScheduleParameters___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct JobsUtility_JobScheduleParameters___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct JobsUtility_JobScheduleParameters___VTable vtable; +}; + struct NativeParticleData_Array3 { float *x; float *y; @@ -1010264,6 +1023639,21 @@ struct NativeParticleData__Class { struct NativeParticleData__VTable vtable; }; +struct NativeParticleData___VTable { +}; + +struct NativeParticleData___StaticFields { +}; + +struct NativeParticleData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NativeParticleData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NativeParticleData___VTable vtable; +}; + struct ParticleSystem_ShapeModule { struct ParticleSystem *m_ParticleSystem; }; @@ -1010844,6 +1024234,51 @@ struct ParticleSystem_CustomDataModule__Class { struct ParticleSystem_CustomDataModule__VTable vtable; }; +struct ParticleSystem_PlaybackState___VTable { +}; + +struct ParticleSystem_PlaybackState___StaticFields { +}; + +struct ParticleSystem_PlaybackState___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ParticleSystem_PlaybackState___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ParticleSystem_PlaybackState___VTable vtable; +}; + +struct ParticleSystem_EmitParams___VTable { +}; + +struct ParticleSystem_EmitParams___StaticFields { +}; + +struct ParticleSystem_EmitParams___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ParticleSystem_EmitParams___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ParticleSystem_EmitParams___VTable vtable; +}; + +struct JobHandle___VTable { +}; + +struct JobHandle___StaticFields { +}; + +struct JobHandle___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct JobHandle___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct JobHandle___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class ParticleSystemCurveMode__Enum : int32_t { Constant = 0x00000000, @@ -1011051,6 +1024486,51 @@ struct ParticleSystem_MinMaxGradient__Class { struct ParticleSystem_MinMaxGradient__VTable vtable; }; +struct ParticleSystem_MainModule___VTable { +}; + +struct ParticleSystem_MainModule___StaticFields { +}; + +struct ParticleSystem_MainModule___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ParticleSystem_MainModule___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ParticleSystem_MainModule___VTable vtable; +}; + +struct ParticleSystem_MinMaxCurve___VTable { +}; + +struct ParticleSystem_MinMaxCurve___StaticFields { +}; + +struct ParticleSystem_MinMaxCurve___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ParticleSystem_MinMaxCurve___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ParticleSystem_MinMaxCurve___VTable vtable; +}; + +struct ParticleSystem_MinMaxGradient___VTable { +}; + +struct ParticleSystem_MinMaxGradient___StaticFields { +}; + +struct ParticleSystem_MinMaxGradient___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ParticleSystem_MinMaxGradient___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ParticleSystem_MinMaxGradient___VTable vtable; +}; + struct ParticleSystem_Burst { float m_Time; struct ParticleSystem_MinMaxCurve m_Count; @@ -1011084,6 +1024564,36 @@ struct ParticleSystem_Burst__Class { struct ParticleSystem_Burst__VTable vtable; }; +struct ParticleSystem_EmissionModule___VTable { +}; + +struct ParticleSystem_EmissionModule___StaticFields { +}; + +struct ParticleSystem_EmissionModule___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ParticleSystem_EmissionModule___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ParticleSystem_EmissionModule___VTable vtable; +}; + +struct ParticleSystem_Burst___VTable { +}; + +struct ParticleSystem_Burst___StaticFields { +}; + +struct ParticleSystem_Burst___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ParticleSystem_Burst___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ParticleSystem_Burst___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class ParticleSystemShapeType__Enum : int32_t { Sphere = 0x00000000, @@ -1011183,6 +1024693,81 @@ struct ParticleSystemShapeType__Enum__Class { struct ParticleSystemShapeType__Enum__VTable vtable; }; +struct ParticleSystem_ShapeModule___VTable { +}; + +struct ParticleSystem_ShapeModule___StaticFields { +}; + +struct ParticleSystem_ShapeModule___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ParticleSystem_ShapeModule___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ParticleSystem_ShapeModule___VTable vtable; +}; + +struct ParticleSystem_CollisionModule___VTable { +}; + +struct ParticleSystem_CollisionModule___StaticFields { +}; + +struct ParticleSystem_CollisionModule___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ParticleSystem_CollisionModule___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ParticleSystem_CollisionModule___VTable vtable; +}; + +struct LayerMask___VTable { +}; + +struct LayerMask___StaticFields { +}; + +struct LayerMask___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct LayerMask___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct LayerMask___VTable vtable; +}; + +struct ParticleSystem_TriggerModule___VTable { +}; + +struct ParticleSystem_TriggerModule___StaticFields { +}; + +struct ParticleSystem_TriggerModule___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ParticleSystem_TriggerModule___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ParticleSystem_TriggerModule___VTable vtable; +}; + +struct ParticleSystem_SubEmittersModule___VTable { +}; + +struct ParticleSystem_SubEmittersModule___StaticFields { +}; + +struct ParticleSystem_SubEmittersModule___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ParticleSystem_SubEmittersModule___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ParticleSystem_SubEmittersModule___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class ParticleSystemAnimationType__Enum : int32_t { WholeSheet = 0x00000000, @@ -1011307,6 +1024892,51 @@ struct ParticleSystemAnimationRowMode__Enum__Class { struct ParticleSystemAnimationRowMode__Enum__VTable vtable; }; +struct ParticleSystem_TextureSheetAnimationModule___VTable { +}; + +struct ParticleSystem_TextureSheetAnimationModule___StaticFields { +}; + +struct ParticleSystem_TextureSheetAnimationModule___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ParticleSystem_TextureSheetAnimationModule___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ParticleSystem_TextureSheetAnimationModule___VTable vtable; +}; + +struct ParticleSystem_VelocityOverLifetimeModule___VTable { +}; + +struct ParticleSystem_VelocityOverLifetimeModule___StaticFields { +}; + +struct ParticleSystem_VelocityOverLifetimeModule___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ParticleSystem_VelocityOverLifetimeModule___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ParticleSystem_VelocityOverLifetimeModule___VTable vtable; +}; + +struct ParticleSystem_ColorOverLifetimeModule___VTable { +}; + +struct ParticleSystem_ColorOverLifetimeModule___StaticFields { +}; + +struct ParticleSystem_ColorOverLifetimeModule___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ParticleSystem_ColorOverLifetimeModule___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ParticleSystem_ColorOverLifetimeModule___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class ParticleSystemVertexStreams__Enum : int32_t { Position = 0x00000001, @@ -1011723,19 +1025353,6 @@ struct SpriteMaskInteraction__Enum__Class { struct SpriteMaskInteraction__Enum__VTable vtable; }; -struct __declspec(align(8)) List_1_UnityEngine_ParticleSystemVertexStream___Fields { - struct ParticleSystemVertexStream__Enum__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_ParticleSystemVertexStream_ { - struct List_1_UnityEngine_ParticleSystemVertexStream___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_ParticleSystemVertexStream___Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class ParticleSystemVertexStream__Enum : int32_t { Position = 0x00000000, @@ -1011847,6 +1025464,19 @@ struct ParticleSystemVertexStream__Enum__Boxed { #endif }; +struct __declspec(align(8)) List_1_UnityEngine_ParticleSystemVertexStream___Fields { + struct ParticleSystemVertexStream__Enum__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_ParticleSystemVertexStream_ { + struct List_1_UnityEngine_ParticleSystemVertexStream___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_ParticleSystemVertexStream___Fields fields; +}; + struct ParticleSystemVertexStream__Enum__Array { struct ParticleSystemVertexStream__Enum__Array__Class *klass; MonitorData *monitor; @@ -1012137,6 +1025767,17 @@ struct ReflectionProbeUsage__Enum__Class { struct ReflectionProbeUsage__Enum__VTable vtable; }; +struct ReflectionProbeBlendInfo { + struct ReflectionProbe *probe; + float weight; +}; + +struct ReflectionProbeBlendInfo__Boxed { + struct ReflectionProbeBlendInfo__Class *klass; + MonitorData *monitor; + struct ReflectionProbeBlendInfo fields; +}; + struct __declspec(align(8)) List_1_UnityEngine_Rendering_ReflectionProbeBlendInfo___Fields { struct ReflectionProbeBlendInfo__Array *_items; int32_t _size; @@ -1012150,17 +1025791,6 @@ struct List_1_UnityEngine_Rendering_ReflectionProbeBlendInfo_ { struct List_1_UnityEngine_Rendering_ReflectionProbeBlendInfo___Fields fields; }; -struct ReflectionProbeBlendInfo { - struct ReflectionProbe *probe; - float weight; -}; - -struct ReflectionProbeBlendInfo__Boxed { - struct ReflectionProbeBlendInfo__Class *klass; - MonitorData *monitor; - struct ReflectionProbeBlendInfo fields; -}; - struct ReflectionProbeBlendInfo__Array { struct ReflectionProbeBlendInfo__Array__Class *klass; MonitorData *monitor; @@ -1012513,6 +1026143,21 @@ struct Terrain_MaterialType__Enum__Class { struct Terrain_MaterialType__Enum__VTable vtable; }; +struct TreeInstance___VTable { +}; + +struct TreeInstance___StaticFields { +}; + +struct TreeInstance___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TreeInstance___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TreeInstance___VTable vtable; +}; + struct TerrainCallbacks_HeightmapChangedCallback__Fields { struct MulticastDelegate__Fields _; }; @@ -1013159,6 +1026804,19 @@ struct TerrainMap { struct TerrainMap__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_TerrainUtils_TerrainTileCoord_UnityEngine_Terrain_ { + int32_t hashCode; + int32_t next; + struct TerrainTileCoord key; + struct Terrain *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_TerrainUtils_TerrainTileCoord_UnityEngine_Terrain___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_TerrainUtils_TerrainTileCoord_UnityEngine_Terrain___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_TerrainUtils_TerrainTileCoord_UnityEngine_Terrain_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_TerrainUtils_TerrainTileCoord_UnityEngine_Terrain___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_TerrainUtils_TerrainTileCoord_UnityEngine_Terrain___Array *_entries; @@ -1013178,19 +1026836,6 @@ struct Dictionary_2_UnityEngine_TerrainUtils_TerrainTileCoord_UnityEngine_Terrai struct Dictionary_2_UnityEngine_TerrainUtils_TerrainTileCoord_UnityEngine_Terrain___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_TerrainUtils_TerrainTileCoord_UnityEngine_Terrain_ { - int32_t hashCode; - int32_t next; - struct TerrainTileCoord key; - struct Terrain *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_TerrainUtils_TerrainTileCoord_UnityEngine_Terrain___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_TerrainUtils_TerrainTileCoord_UnityEngine_Terrain___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_TerrainUtils_TerrainTileCoord_UnityEngine_Terrain_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_TerrainUtils_TerrainTileCoord_UnityEngine_Terrain___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_TerrainUtils_TerrainTileCoord_UnityEngine_Terrain___Array__Class *klass; MonitorData *monitor; @@ -1013691,6 +1027336,19 @@ struct TerrainMap_c_DisplayClass3_0__Class { struct TerrainMap_c_DisplayClass3_0__VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TerrainUtils_TerrainMap_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct TerrainMap *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TerrainUtils_TerrainMap___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TerrainUtils_TerrainMap___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TerrainUtils_TerrainMap_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_UnityEngine_TerrainUtils_TerrainMap___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TerrainUtils_TerrainMap___Array *_entries; @@ -1013710,19 +1027368,6 @@ struct Dictionary_2_System_Int32_UnityEngine_TerrainUtils_TerrainMap_ { struct Dictionary_2_System_Int32_UnityEngine_TerrainUtils_TerrainMap___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TerrainUtils_TerrainMap_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct TerrainMap *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TerrainUtils_TerrainMap___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TerrainUtils_TerrainMap___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TerrainUtils_TerrainMap_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TerrainUtils_TerrainMap___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TerrainUtils_TerrainMap___Array__Class *klass; MonitorData *monitor; @@ -1013951,6 +1027596,21 @@ struct ICollection_1_UnityEngine_TerrainUtils_TerrainMap___Class { struct ICollection_1_UnityEngine_TerrainUtils_TerrainMap___VTable vtable; }; +struct TerrainMap___VTable { +}; + +struct TerrainMap___StaticFields { +}; + +struct TerrainMap___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TerrainMap___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TerrainMap___VTable vtable; +}; + struct KeyValuePair_2_System_Int32_UnityEngine_TerrainUtils_TerrainMap___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1014165,6 +1027825,21 @@ struct PhysicsScene__Class { struct PhysicsScene__VTable vtable; }; +struct PhysicsScene___VTable { +}; + +struct PhysicsScene___StaticFields { +}; + +struct PhysicsScene___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PhysicsScene___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PhysicsScene___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class PhysicMaterialCombine__Enum : int32_t { Average = 0x00000000, @@ -1014370,6 +1028045,66 @@ struct MeshColliderCookingOptions__Enum__Class { struct MeshColliderCookingOptions__Enum__VTable vtable; }; +struct JointLimits___VTable { +}; + +struct JointLimits___StaticFields { +}; + +struct JointLimits___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct JointLimits___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct JointLimits___VTable vtable; +}; + +struct JointSpring___VTable { +}; + +struct JointSpring___StaticFields { +}; + +struct JointSpring___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct JointSpring___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct JointSpring___VTable vtable; +}; + +struct SoftJointLimitSpring___VTable { +}; + +struct SoftJointLimitSpring___StaticFields { +}; + +struct SoftJointLimitSpring___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SoftJointLimitSpring___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SoftJointLimitSpring___VTable vtable; +}; + +struct SoftJointLimit___VTable { +}; + +struct SoftJointLimit___StaticFields { +}; + +struct SoftJointLimit___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SoftJointLimit___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SoftJointLimit___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class RotationDriveMode__Enum : int32_t { XYAndZ = 0x00000000, @@ -1014494,6 +1028229,21 @@ struct JointProjectionMode__Enum__Class { struct JointProjectionMode__Enum__VTable vtable; }; +struct JointDrive___VTable { +}; + +struct JointDrive___StaticFields { +}; + +struct JointDrive___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct JointDrive___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct JointDrive___VTable vtable; +}; + struct AndroidJavaRunnable__Fields { struct MulticastDelegate__Fields _; }; @@ -1014886,6 +1028636,21 @@ struct HSteamPipe__Class { struct HSteamPipe__VTable vtable; }; +struct SteamInventoryResult_t___VTable { +}; + +struct SteamInventoryResult_t___StaticFields { +}; + +struct SteamInventoryResult_t___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SteamInventoryResult_t___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SteamInventoryResult_t___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class ELobbyType__Enum : int32_t { k_ELobbyTypePrivate = 0x00000000, @@ -1015066,6 +1028831,21 @@ struct SteamNetworkingIdentity__Class { struct SteamNetworkingIdentity__VTable vtable; }; +struct SteamNetworkingIdentity___VTable { +}; + +struct SteamNetworkingIdentity___StaticFields { +}; + +struct SteamNetworkingIdentity___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SteamNetworkingIdentity___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SteamNetworkingIdentity___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class EFloatingGamepadTextInputMode__Enum : int32_t { k_EFloatingGamepadTextInputModeModeSingleLine = 0x00000000, @@ -1015439,6 +1029219,21 @@ struct Int128__Class { struct Int128__VTable vtable; }; +struct TEdge___VTable { +}; + +struct TEdge___StaticFields { +}; + +struct TEdge___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TEdge___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TEdge___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class Direction__Enum : int32_t { dRightToLeft = 0x00000000, @@ -1015500,6 +1029295,51 @@ struct Direction__Enum__Class { struct Direction__Enum__VTable vtable; }; +struct Direction___VTable { +}; + +struct Direction___StaticFields { +}; + +struct Direction___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Direction___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Direction___VTable vtable; +}; + +struct IntPoint___VTable { +}; + +struct IntPoint___StaticFields { +}; + +struct IntPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IntPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IntPoint___VTable vtable; +}; + +struct OutPt___VTable { +}; + +struct OutPt___StaticFields { +}; + +struct OutPt___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct OutPt___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct OutPt___VTable vtable; +}; + struct ClipperException__Fields { struct Exception__Fields _; }; @@ -1015555,19 +1029395,6 @@ struct CubicBezierCurve { struct CubicBezierCurve__Fields fields; }; -struct __declspec(align(8)) List_1_SplineMesh_CurveSample___Fields { - struct CurveSample__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_SplineMesh_CurveSample_ { - struct List_1_SplineMesh_CurveSample___Class *klass; - MonitorData *monitor; - struct List_1_SplineMesh_CurveSample___Fields fields; -}; - struct CurveSample { struct Vector3 location; struct Vector3 tangent; @@ -1015585,6 +1029412,19 @@ struct CurveSample__Boxed { struct CurveSample fields; }; +struct __declspec(align(8)) List_1_SplineMesh_CurveSample___Fields { + struct CurveSample__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_SplineMesh_CurveSample_ { + struct List_1_SplineMesh_CurveSample___Class *klass; + MonitorData *monitor; + struct List_1_SplineMesh_CurveSample___Fields fields; +}; + struct CurveSample__Array { struct CurveSample__Array__Class *klass; MonitorData *monitor; @@ -1016381,6 +1030221,19 @@ struct MeshBender { struct MeshBender__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_Single_SplineMesh_CurveSample_ { + int32_t hashCode; + int32_t next; + float key; + struct CurveSample value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Single_SplineMesh_CurveSample___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Single_SplineMesh_CurveSample___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Single_SplineMesh_CurveSample_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Single_SplineMesh_CurveSample___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Single_SplineMesh_CurveSample___Array *_entries; @@ -1016400,19 +1030253,6 @@ struct Dictionary_2_System_Single_SplineMesh_CurveSample_ { struct Dictionary_2_System_Single_SplineMesh_CurveSample___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Single_SplineMesh_CurveSample_ { - int32_t hashCode; - int32_t next; - float key; - struct CurveSample value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Single_SplineMesh_CurveSample___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Single_SplineMesh_CurveSample___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Single_SplineMesh_CurveSample_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Single_SplineMesh_CurveSample___Array { struct Dictionary_2_TKey_TValue_Entry_System_Single_SplineMesh_CurveSample___Array__Class *klass; MonitorData *monitor; @@ -1016623,6 +1030463,21 @@ struct ICollection_1_SplineMesh_CurveSample___Class { struct ICollection_1_SplineMesh_CurveSample___VTable vtable; }; +struct CurveSample___VTable { +}; + +struct CurveSample___StaticFields { +}; + +struct CurveSample___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CurveSample___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CurveSample___VTable vtable; +}; + struct KeyValuePair_2_System_Single_SplineMesh_CurveSample___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1017088,6 +1030943,16 @@ struct ExampleTrack { struct ExampleTrack__Fields fields; }; +struct __declspec(align(8)) TrackSegment__Fields { + struct List_1_SplineMesh_TransformedMesh_ *transformedMeshes; +}; + +struct TrackSegment { + struct TrackSegment__Class *klass; + MonitorData *monitor; + struct TrackSegment__Fields fields; +}; + struct __declspec(align(8)) List_1_SplineMesh_TrackSegment___Fields { struct TrackSegment__Array *_items; int32_t _size; @@ -1017101,29 +1030966,6 @@ struct List_1_SplineMesh_TrackSegment_ { struct List_1_SplineMesh_TrackSegment___Fields fields; }; -struct __declspec(align(8)) TrackSegment__Fields { - struct List_1_SplineMesh_TransformedMesh_ *transformedMeshes; -}; - -struct TrackSegment { - struct TrackSegment__Class *klass; - MonitorData *monitor; - struct TrackSegment__Fields fields; -}; - -struct __declspec(align(8)) List_1_SplineMesh_TransformedMesh___Fields { - struct TransformedMesh__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_SplineMesh_TransformedMesh_ { - struct List_1_SplineMesh_TransformedMesh___Class *klass; - MonitorData *monitor; - struct List_1_SplineMesh_TransformedMesh___Fields fields; -}; - struct __declspec(align(8)) TransformedMesh__Fields { struct Mesh *mesh; struct Material *material; @@ -1017139,6 +1030981,19 @@ struct TransformedMesh { struct TransformedMesh__Fields fields; }; +struct __declspec(align(8)) List_1_SplineMesh_TransformedMesh___Fields { + struct TransformedMesh__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_SplineMesh_TransformedMesh_ { + struct List_1_SplineMesh_TransformedMesh___Class *klass; + MonitorData *monitor; + struct List_1_SplineMesh_TransformedMesh___Fields fields; +}; + struct TransformedMesh__Array { struct TransformedMesh__Array__Class *klass; MonitorData *monitor; @@ -1017510,6 +1031365,18 @@ struct ExtrusionSegment { struct ExtrusionSegment__Fields fields; }; +struct __declspec(align(8)) ExtrusionSegment_Vertex__Fields { + struct Vector2 point; + struct Vector2 normal; + float uCoord; +}; + +struct ExtrusionSegment_Vertex { + struct ExtrusionSegment_Vertex__Class *klass; + MonitorData *monitor; + struct ExtrusionSegment_Vertex__Fields fields; +}; + struct __declspec(align(8)) List_1_SplineMesh_ExtrusionSegment_Vertex___Fields { struct ExtrusionSegment_Vertex__Array *_items; int32_t _size; @@ -1017523,18 +1031390,6 @@ struct List_1_SplineMesh_ExtrusionSegment_Vertex_ { struct List_1_SplineMesh_ExtrusionSegment_Vertex___Fields fields; }; -struct __declspec(align(8)) ExtrusionSegment_Vertex__Fields { - struct Vector2 point; - struct Vector2 normal; - float uCoord; -}; - -struct ExtrusionSegment_Vertex { - struct ExtrusionSegment_Vertex__Class *klass; - MonitorData *monitor; - struct ExtrusionSegment_Vertex__Fields fields; -}; - struct ExtrusionSegment_Vertex__Array { struct ExtrusionSegment_Vertex__Array__Class *klass; MonitorData *monitor; @@ -1018179,6 +1032034,19 @@ struct MaterialCache { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Hash128_Coffee_UIEffects_MaterialCache_MaterialEntry_ { + int32_t hashCode; + int32_t next; + struct Hash128 key; + struct MaterialCache_MaterialEntry *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Hash128_Coffee_UIEffects_MaterialCache_MaterialEntry___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Hash128_Coffee_UIEffects_MaterialCache_MaterialEntry___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Hash128_Coffee_UIEffects_MaterialCache_MaterialEntry_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_Hash128_Coffee_UIEffects_MaterialCache_MaterialEntry___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Hash128_Coffee_UIEffects_MaterialCache_MaterialEntry___Array *_entries; @@ -1018198,19 +1032066,6 @@ struct Dictionary_2_UnityEngine_Hash128_Coffee_UIEffects_MaterialCache_MaterialE struct Dictionary_2_UnityEngine_Hash128_Coffee_UIEffects_MaterialCache_MaterialEntry___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Hash128_Coffee_UIEffects_MaterialCache_MaterialEntry_ { - int32_t hashCode; - int32_t next; - struct Hash128 key; - struct MaterialCache_MaterialEntry *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Hash128_Coffee_UIEffects_MaterialCache_MaterialEntry___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Hash128_Coffee_UIEffects_MaterialCache_MaterialEntry___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Hash128_Coffee_UIEffects_MaterialCache_MaterialEntry_ fields; -}; - struct __declspec(align(8)) MaterialCache_MaterialEntry__Fields { struct Material *material; int32_t referenceCount; @@ -1018567,6 +1032422,21 @@ struct ICollection_1_Coffee_UIEffects_MaterialCache_MaterialEntry___Class { struct ICollection_1_Coffee_UIEffects_MaterialCache_MaterialEntry___VTable vtable; }; +struct MaterialCache_MaterialEntry___VTable { +}; + +struct MaterialCache_MaterialEntry___StaticFields { +}; + +struct MaterialCache_MaterialEntry___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MaterialCache_MaterialEntry___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MaterialCache_MaterialEntry___VTable vtable; +}; + struct KeyValuePair_2_UnityEngine_Hash128_Coffee_UIEffects_MaterialCache_MaterialEntry___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1019748,6 +1033618,21 @@ struct AudioSettings_AudioConfigurationChangeHandler__Class { struct AudioSettings_AudioConfigurationChangeHandler__VTable vtable; }; +struct AudioConfiguration___VTable { +}; + +struct AudioConfiguration___StaticFields { +}; + +struct AudioConfiguration___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct AudioConfiguration___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct AudioConfiguration___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class AudioClipLoadType__Enum : int32_t { DecompressOnLoad = 0x00000000, @@ -1020400,6 +1034285,21 @@ struct BigIntegerCalculator_BitsBuffer__Class { struct BigIntegerCalculator_BitsBuffer__VTable vtable; }; +struct BigIntegerCalculator_BitsBuffer___VTable { +}; + +struct BigIntegerCalculator_BitsBuffer___StaticFields { +}; + +struct BigIntegerCalculator_BitsBuffer___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BigIntegerCalculator_BitsBuffer___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BigIntegerCalculator_BitsBuffer___VTable vtable; +}; + struct BigIntegerCalculator_FastReducer { struct UInt32__Array *_modulus; struct UInt32__Array *_mu; @@ -1020433,6 +1034333,21 @@ struct BigIntegerCalculator_FastReducer__Class { struct BigIntegerCalculator_FastReducer__VTable vtable; }; +struct BigIntegerCalculator_FastReducer___VTable { +}; + +struct BigIntegerCalculator_FastReducer___StaticFields { +}; + +struct BigIntegerCalculator_FastReducer___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BigIntegerCalculator_FastReducer___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BigIntegerCalculator_FastReducer___VTable vtable; +}; + struct ValueStringBuilder_1 { struct Char__Array *_arrayToReturnToPool; struct Span_1_Char_ _chars; @@ -1020464,6 +1034379,21 @@ struct ValueStringBuilder_1__Class { struct ValueStringBuilder_1__VTable vtable; }; +struct ValueStringBuilder__1__VTable { +}; + +struct ValueStringBuilder__1__StaticFields { +}; + +struct ValueStringBuilder__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ValueStringBuilder__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ValueStringBuilder__1__VTable vtable; +}; + struct FormatProvider_Number_NumberBuffer { int32_t precision; int32_t scale; @@ -1020496,6 +1034426,21 @@ struct FormatProvider_Number_NumberBuffer__Class { struct FormatProvider_Number_NumberBuffer__VTable vtable; }; +struct FormatProvider_Number_NumberBuffer___VTable { +}; + +struct FormatProvider_Number_NumberBuffer___StaticFields { +}; + +struct FormatProvider_Number_NumberBuffer___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct FormatProvider_Number_NumberBuffer___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct FormatProvider_Number_NumberBuffer___VTable vtable; +}; + struct UdpEndPoint_Native { struct UdpIPv4Address Address; uint16_t Port; @@ -1020757,6 +1034702,36 @@ struct NatFeatures__Class { struct NatFeatures__VTable vtable; }; +struct UdpSession___VTable { +}; + +struct UdpSession___StaticFields { +}; + +struct UdpSession___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UdpSession___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UdpSession___VTable vtable; +}; + +struct NatFeatures___VTable { +}; + +struct NatFeatures___StaticFields { +}; + +struct NatFeatures___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NatFeatures___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NatFeatures___VTable vtable; +}; + struct DirectConnectionLan__Fields { struct Message__Fields _; struct Guid RemotePeerId; @@ -1022048,6 +1036023,21 @@ struct YogaEdge__Enum__Class { struct YogaEdge__Enum__VTable vtable; }; +struct TextNativeSettings___VTable { +}; + +struct TextNativeSettings___StaticFields { +}; + +struct TextNativeSettings___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TextNativeSettings___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TextNativeSettings___VTable vtable; +}; + struct Action_1_UnityEngine_Camera___Fields { struct MulticastDelegate__Fields _; }; @@ -1022087,6 +1036077,21 @@ struct Action_1_UnityEngine_Camera___Class { struct Action_1_UnityEngine_Camera___VTable vtable; }; +struct StencilState___VTable { +}; + +struct StencilState___StaticFields { +}; + +struct StencilState___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StencilState___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StencilState___VTable vtable; +}; + struct __declspec(align(8)) BaseUriAnnotation__Fields { struct String *baseUri; }; @@ -1022299,6 +1036304,18 @@ struct XHashtable_1_System_WeakReference_ { struct XHashtable_1_System_WeakReference___Fields fields; }; +struct XHashtable_1_TValue_XHashtableState_TValue_Entry_System_WeakReference_ { + struct WeakReference *Value; + int32_t HashCode; + int32_t Next; +}; + +struct XHashtable_1_TValue_XHashtableState_TValue_Entry_System_WeakReference___Boxed { + struct XHashtable_1_TValue_XHashtableState_TValue_Entry_System_WeakReference___Class *klass; + MonitorData *monitor; + struct XHashtable_1_TValue_XHashtableState_TValue_Entry_System_WeakReference_ fields; +}; + struct __declspec(align(8)) XHashtable_1_TValue_XHashtableState_System_WeakReference___Fields { struct Int32__Array *_buckets; struct XHashtable_1_TValue_XHashtableState_TValue_Entry_System_WeakReference___Array *_entries; @@ -1022312,18 +1036329,6 @@ struct XHashtable_1_TValue_XHashtableState_System_WeakReference_ { struct XHashtable_1_TValue_XHashtableState_System_WeakReference___Fields fields; }; -struct XHashtable_1_TValue_XHashtableState_TValue_Entry_System_WeakReference_ { - struct WeakReference *Value; - int32_t HashCode; - int32_t Next; -}; - -struct XHashtable_1_TValue_XHashtableState_TValue_Entry_System_WeakReference___Boxed { - struct XHashtable_1_TValue_XHashtableState_TValue_Entry_System_WeakReference___Class *klass; - MonitorData *monitor; - struct XHashtable_1_TValue_XHashtableState_TValue_Entry_System_WeakReference_ fields; -}; - struct XHashtable_1_TValue_XHashtableState_TValue_Entry_System_WeakReference___Array { struct XHashtable_1_TValue_XHashtableState_TValue_Entry_System_WeakReference___Array__Class *klass; MonitorData *monitor; @@ -1022352,6 +1036357,18 @@ struct XHashtable_1_XName_ { struct XHashtable_1_XName___Fields fields; }; +struct XHashtable_1_TValue_XHashtableState_TValue_Entry_XName_ { + struct XName *Value; + int32_t HashCode; + int32_t Next; +}; + +struct XHashtable_1_TValue_XHashtableState_TValue_Entry_XName___Boxed { + struct XHashtable_1_TValue_XHashtableState_TValue_Entry_XName___Class *klass; + MonitorData *monitor; + struct XHashtable_1_TValue_XHashtableState_TValue_Entry_XName_ fields; +}; + struct __declspec(align(8)) XHashtable_1_TValue_XHashtableState_XName___Fields { struct Int32__Array *_buckets; struct XHashtable_1_TValue_XHashtableState_TValue_Entry_XName___Array *_entries; @@ -1022365,18 +1036382,6 @@ struct XHashtable_1_TValue_XHashtableState_XName_ { struct XHashtable_1_TValue_XHashtableState_XName___Fields fields; }; -struct XHashtable_1_TValue_XHashtableState_TValue_Entry_XName_ { - struct XName *Value; - int32_t HashCode; - int32_t Next; -}; - -struct XHashtable_1_TValue_XHashtableState_TValue_Entry_XName___Boxed { - struct XHashtable_1_TValue_XHashtableState_TValue_Entry_XName___Class *klass; - MonitorData *monitor; - struct XHashtable_1_TValue_XHashtableState_TValue_Entry_XName_ fields; -}; - struct XHashtable_1_TValue_XHashtableState_TValue_Entry_XName___Array { struct XHashtable_1_TValue_XHashtableState_TValue_Entry_XName___Array__Class *klass; MonitorData *monitor; @@ -1023265,6 +1037270,21 @@ struct ElementWriter__Class { struct ElementWriter__VTable vtable; }; +struct WeakReference___VTable { +}; + +struct WeakReference___StaticFields { +}; + +struct WeakReference___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct WeakReference___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct WeakReference___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class SaveOptions__Enum : int32_t { None = 0x00000000, @@ -1025803,6 +1039823,21 @@ struct SceneUnderstanding_OpenXR_API_XrGetInstanceProcAddrDelegate__Class { struct SceneUnderstanding_OpenXR_API_XrGetInstanceProcAddrDelegate__VTable vtable; }; +struct XrSystemProperties___VTable { +}; + +struct XrSystemProperties___StaticFields { +}; + +struct XrSystemProperties___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct XrSystemProperties___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct XrSystemProperties___VTable vtable; +}; + struct SceneUnderstanding_OpenXR_API_xrGetSystemPropertiesDelegate__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1025979,6 +1040014,21 @@ struct XrReferenceSpaceCreateInfo__Class { struct XrReferenceSpaceCreateInfo__VTable vtable; }; +struct XrReferenceSpaceCreateInfo___VTable { +}; + +struct XrReferenceSpaceCreateInfo___StaticFields { +}; + +struct XrReferenceSpaceCreateInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct XrReferenceSpaceCreateInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct XrReferenceSpaceCreateInfo___VTable vtable; +}; + struct SceneUnderstanding_OpenXR_API_XrCreateReferenceSpaceDelegate__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1026091,6 +1040141,21 @@ struct XrSceneObserverCreateInfoMSFT__Class { struct XrSceneObserverCreateInfoMSFT__VTable vtable; }; +struct XrSceneObserverCreateInfoMSFT___VTable { +}; + +struct XrSceneObserverCreateInfoMSFT___StaticFields { +}; + +struct XrSceneObserverCreateInfoMSFT___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct XrSceneObserverCreateInfoMSFT___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct XrSceneObserverCreateInfoMSFT___VTable vtable; +}; + struct SceneUnderstanding_OpenXR_API_XrCreateSceneObserverMSFTDelegate__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1026172,6 +1040237,21 @@ struct XrSceneCreateInfoMSFT__Class { struct XrSceneCreateInfoMSFT__VTable vtable; }; +struct XrSceneCreateInfoMSFT___VTable { +}; + +struct XrSceneCreateInfoMSFT___StaticFields { +}; + +struct XrSceneCreateInfoMSFT___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct XrSceneCreateInfoMSFT___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct XrSceneCreateInfoMSFT___VTable vtable; +}; + struct SceneUnderstanding_OpenXR_API_XrCreateSceneMSFTDelegate__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1026272,6 +1040352,21 @@ struct XrNewSceneComputeInfoMSFT__Class { struct XrNewSceneComputeInfoMSFT__VTable vtable; }; +struct XrNewSceneComputeInfoMSFT___VTable { +}; + +struct XrNewSceneComputeInfoMSFT___StaticFields { +}; + +struct XrNewSceneComputeInfoMSFT___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct XrNewSceneComputeInfoMSFT___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct XrNewSceneComputeInfoMSFT___VTable vtable; +}; + struct SceneUnderstanding_OpenXR_API_XrComputeNewSceneMSFTDelegate__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1026341,6 +1040436,21 @@ struct XrSceneComputeStateMSFT__Enum__Class { struct XrSceneComputeStateMSFT__Enum__VTable vtable; }; +struct XrSceneComputeStateMSFT___VTable { +}; + +struct XrSceneComputeStateMSFT___StaticFields { +}; + +struct XrSceneComputeStateMSFT___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct XrSceneComputeStateMSFT___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct XrSceneComputeStateMSFT___VTable vtable; +}; + struct SceneUnderstanding_OpenXR_API_XrGetSceneComputeStateMSFTDelegate__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1026429,6 +1040539,21 @@ struct XrSceneComponentsGetInfoMSFT__Class { struct XrSceneComponentsGetInfoMSFT__VTable vtable; }; +struct XrSceneComponentsGetInfoMSFT___VTable { +}; + +struct XrSceneComponentsGetInfoMSFT___StaticFields { +}; + +struct XrSceneComponentsGetInfoMSFT___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct XrSceneComponentsGetInfoMSFT___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct XrSceneComponentsGetInfoMSFT___VTable vtable; +}; + struct XrSceneComponentsMSFT__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1026448,6 +1040573,21 @@ struct XrSceneComponentsMSFT__Class { struct XrSceneComponentsMSFT__VTable vtable; }; +struct XrSceneComponentsMSFT___VTable { +}; + +struct XrSceneComponentsMSFT___StaticFields { +}; + +struct XrSceneComponentsMSFT___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct XrSceneComponentsMSFT___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct XrSceneComponentsMSFT___VTable vtable; +}; + struct SceneUnderstanding_OpenXR_API_XrGetSceneComponentsMSFTDelegate__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1026498,6 +1040638,21 @@ struct XrSceneComponentsLocateInfoMSFT__Class { struct XrSceneComponentsLocateInfoMSFT__VTable vtable; }; +struct XrSceneComponentsLocateInfoMSFT___VTable { +}; + +struct XrSceneComponentsLocateInfoMSFT___StaticFields { +}; + +struct XrSceneComponentsLocateInfoMSFT___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct XrSceneComponentsLocateInfoMSFT___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct XrSceneComponentsLocateInfoMSFT___VTable vtable; +}; + struct XrSceneComponentLocationsMSFT__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1026517,6 +1040672,21 @@ struct XrSceneComponentLocationsMSFT__Class { struct XrSceneComponentLocationsMSFT__VTable vtable; }; +struct XrSceneComponentLocationsMSFT___VTable { +}; + +struct XrSceneComponentLocationsMSFT___StaticFields { +}; + +struct XrSceneComponentLocationsMSFT___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct XrSceneComponentLocationsMSFT___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct XrSceneComponentLocationsMSFT___VTable vtable; +}; + struct SceneUnderstanding_OpenXR_API_XrLocateSceneComponentsMSFTDelegate__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1026567,6 +1040737,21 @@ struct XrSceneMeshBuffersGetInfoMSFT__Class { struct XrSceneMeshBuffersGetInfoMSFT__VTable vtable; }; +struct XrSceneMeshBuffersGetInfoMSFT___VTable { +}; + +struct XrSceneMeshBuffersGetInfoMSFT___StaticFields { +}; + +struct XrSceneMeshBuffersGetInfoMSFT___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct XrSceneMeshBuffersGetInfoMSFT___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct XrSceneMeshBuffersGetInfoMSFT___VTable vtable; +}; + struct XrSceneMeshBuffersMSFT__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1026586,6 +1040771,21 @@ struct XrSceneMeshBuffersMSFT__Class { struct XrSceneMeshBuffersMSFT__VTable vtable; }; +struct XrSceneMeshBuffersMSFT___VTable { +}; + +struct XrSceneMeshBuffersMSFT___StaticFields { +}; + +struct XrSceneMeshBuffersMSFT___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct XrSceneMeshBuffersMSFT___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct XrSceneMeshBuffersMSFT___VTable vtable; +}; + struct SceneUnderstanding_OpenXR_API_XrGetSceneMeshBuffersMSFTDelegate__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1027843,6 +1042043,21 @@ struct HandTracking_OpenXR_API_XrGetInstanceProcAddrDelegate__Class { struct HandTracking_OpenXR_API_XrGetInstanceProcAddrDelegate__VTable vtable; }; +struct XrSystemProperties__1__VTable { +}; + +struct XrSystemProperties__1__StaticFields { +}; + +struct XrSystemProperties__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct XrSystemProperties__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct XrSystemProperties__1__VTable vtable; +}; + struct HandTracking_OpenXR_API_xrGetSystemPropertiesDelegate__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1027912,6 +1042127,21 @@ struct XrReferenceSpaceType__Enum_1__Class { struct XrReferenceSpaceType__Enum_1__VTable vtable; }; +struct XrReferenceSpaceType___VTable { +}; + +struct XrReferenceSpaceType___StaticFields { +}; + +struct XrReferenceSpaceType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct XrReferenceSpaceType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct XrReferenceSpaceType___VTable vtable; +}; + struct HandTracking_OpenXR_API_xrEnumerateReferenceSpacesDelegate__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1028019,6 +1042249,21 @@ struct XrReferenceSpaceCreateInfo_1__Class { struct XrReferenceSpaceCreateInfo_1__VTable vtable; }; +struct XrReferenceSpaceCreateInfo__1__VTable { +}; + +struct XrReferenceSpaceCreateInfo__1__StaticFields { +}; + +struct XrReferenceSpaceCreateInfo__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct XrReferenceSpaceCreateInfo__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct XrReferenceSpaceCreateInfo__1__VTable vtable; +}; + struct HandTracking_OpenXR_API_xrCreateReferenceSpaceDelegate__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1028143,6 +1042388,21 @@ struct HandTracking_OpenXR_API_xrDestroyHandTrackerEXTDelegate__Class { struct HandTracking_OpenXR_API_xrDestroyHandTrackerEXTDelegate__VTable vtable; }; +struct XrHandJointLocationsEXT___VTable { +}; + +struct XrHandJointLocationsEXT___StaticFields { +}; + +struct XrHandJointLocationsEXT___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct XrHandJointLocationsEXT___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct XrHandJointLocationsEXT___VTable vtable; +}; + struct HandTracking_OpenXR_API_xrLocateHandJointsEXTDelegate__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1028287,6 +1042547,36 @@ struct FontReference__Class { struct FontReference__VTable vtable; }; +struct FontReference___VTable { +}; + +struct FontReference___StaticFields { +}; + +struct FontReference___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct FontReference___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct FontReference___VTable vtable; +}; + +struct FaceInfo___VTable { +}; + +struct FaceInfo___StaticFields { +}; + +struct FaceInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct FaceInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct FaceInfo___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class GlyphLoadFlags__Enum : int32_t { LOAD_DEFAULT = 0x00000000, @@ -1028366,6 +1042656,21 @@ struct GlyphLoadFlags__Enum__Class { struct GlyphLoadFlags__Enum__VTable vtable; }; +struct GlyphMarshallingStruct___VTable { +}; + +struct GlyphMarshallingStruct___StaticFields { +}; + +struct GlyphMarshallingStruct___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GlyphMarshallingStruct___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GlyphMarshallingStruct___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class GlyphPackingMode__Enum : int32_t { BestShortSideFit = 0x00000000, @@ -1028433,6 +1042738,21 @@ struct GlyphPackingMode__Enum__Class { struct GlyphPackingMode__Enum__VTable vtable; }; +struct Glyph__1__VTable { +}; + +struct Glyph__1__StaticFields { +}; + +struct Glyph__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Glyph__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Glyph__1__VTable vtable; +}; + struct GlyphMarshallingStruct__Array { struct GlyphMarshallingStruct__Array__Class *klass; MonitorData *monitor; @@ -1028610,6 +1042930,51 @@ struct List_1_UnityEngine_RaycastHit2D___Class { struct List_1_UnityEngine_RaycastHit2D___VTable vtable; }; +struct PhysicsScene2D___VTable { +}; + +struct PhysicsScene2D___StaticFields { +}; + +struct PhysicsScene2D___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PhysicsScene2D___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PhysicsScene2D___VTable vtable; +}; + +struct ContactFilter2D___VTable { +}; + +struct ContactFilter2D___StaticFields { +}; + +struct ContactFilter2D___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ContactFilter2D___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ContactFilter2D___VTable vtable; +}; + +struct RaycastHit2D___VTable { +}; + +struct RaycastHit2D___StaticFields { +}; + +struct RaycastHit2D___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RaycastHit2D___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RaycastHit2D___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class RigidbodyType2D__Enum : int32_t { Dynamic = 0x00000000, @@ -1028974,6 +1043339,21 @@ struct UnityWebRequest_UnityWebRequestMethod__Enum__Class { struct UnityWebRequest_UnityWebRequestMethod__Enum__VTable vtable; }; +struct NativeArray_1_System_Byte__1__VTable { +}; + +struct NativeArray_1_System_Byte__1__StaticFields { +}; + +struct NativeArray_1_System_Byte__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NativeArray_1_System_Byte__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NativeArray_1_System_Byte__1__VTable vtable; +}; + struct DownloadHandlerBuffer__Fields { struct DownloadHandler__Fields _; struct NativeArray_1_System_Byte_ m_NativeData; @@ -1029014,6 +1043394,36 @@ struct DownloadHandlerBuffer__Class { struct DownloadHandlerBuffer__VTable vtable; }; +struct List_1_System_Byte__3__VTable { +}; + +struct List_1_System_Byte__3__StaticFields { +}; + +struct List_1_System_Byte__3__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_System_Byte__3__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_System_Byte__3__VTable vtable; +}; + +struct Object__3__VTable { +}; + +struct Object__3__StaticFields { +}; + +struct Object__3__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Object__3__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Object__3__VTable vtable; +}; + struct Func_3_Type_Object_Object___Fields { struct MulticastDelegate__Fields _; }; @@ -1029883,6 +1044293,21 @@ struct VIVE_FacialTracking_OpenXR_API_XrGetInstanceProcAddrDelegate__Class { struct VIVE_FacialTracking_OpenXR_API_XrGetInstanceProcAddrDelegate__VTable vtable; }; +struct XrSystemProperties__2__VTable { +}; + +struct XrSystemProperties__2__StaticFields { +}; + +struct XrSystemProperties__2__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct XrSystemProperties__2__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct XrSystemProperties__2__VTable vtable; +}; + struct VIVE_FacialTracking_OpenXR_API_xrGetSystemPropertiesDelegate__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1029995,6 +1044420,21 @@ struct XrFacialExpressionsHTC__Class { struct XrFacialExpressionsHTC__VTable vtable; }; +struct XrFacialExpressionsHTC___VTable { +}; + +struct XrFacialExpressionsHTC___StaticFields { +}; + +struct XrFacialExpressionsHTC___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct XrFacialExpressionsHTC___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct XrFacialExpressionsHTC___VTable vtable; +}; + struct VIVE_FacialTracking_OpenXR_API_xrGetFacialExpressionsHTCDelegate__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1030310,6 +1044750,21 @@ struct IList_1_UnityEngine_UILineInfo___Class { struct IList_1_UnityEngine_UILineInfo___VTable vtable; }; +struct TextGenerationError___VTable { +}; + +struct TextGenerationError___StaticFields { +}; + +struct TextGenerationError___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TextGenerationError___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TextGenerationError___VTable vtable; +}; + struct CharacterInfo { int32_t index; struct Rect uv; @@ -1030349,6 +1044804,21 @@ struct CharacterInfo__Class { struct CharacterInfo__VTable vtable; }; +struct CharacterInfo___VTable { +}; + +struct CharacterInfo___StaticFields { +}; + +struct CharacterInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CharacterInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CharacterInfo___VTable vtable; +}; + struct __declspec(align(8)) CombinedMeshData__Fields { struct Mesh *CombinedMesh; struct Material__Array *Materials; @@ -1030602,6 +1045072,19 @@ struct UV2Mode__Enum__Class { struct UV2Mode__Enum__VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_IList_1_UnityEngine_GameObject_ { + int32_t hashCode; + int32_t next; + struct Material *key; + struct IList_1_UnityEngine_GameObject_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_IList_1_UnityEngine_GameObject___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_IList_1_UnityEngine_GameObject___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_IList_1_UnityEngine_GameObject_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_Material_IList_1_UnityEngine_GameObject___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_IList_1_UnityEngine_GameObject___Array *_entries; @@ -1030621,19 +1045104,6 @@ struct Dictionary_2_UnityEngine_Material_IList_1_UnityEngine_GameObject_ { struct Dictionary_2_UnityEngine_Material_IList_1_UnityEngine_GameObject___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_IList_1_UnityEngine_GameObject_ { - int32_t hashCode; - int32_t next; - struct Material *key; - struct IList_1_UnityEngine_GameObject_ *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_IList_1_UnityEngine_GameObject___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_IList_1_UnityEngine_GameObject___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_IList_1_UnityEngine_GameObject_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_IList_1_UnityEngine_GameObject___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_IList_1_UnityEngine_GameObject___Array__Class *klass; MonitorData *monitor; @@ -1030862,6 +1045332,21 @@ struct ICollection_1_IList_1_UnityEngine_GameObject___Class { struct ICollection_1_IList_1_UnityEngine_GameObject___VTable vtable; }; +struct IList_1_UnityEngine_GameObject__1__VTable { +}; + +struct IList_1_UnityEngine_GameObject__1__StaticFields { +}; + +struct IList_1_UnityEngine_GameObject__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IList_1_UnityEngine_GameObject__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IList_1_UnityEngine_GameObject__1__VTable vtable; +}; + struct KeyValuePair_2_UnityEngine_Material_IList_1_UnityEngine_GameObject___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1030987,6 +1045472,19 @@ struct Dictionary_2_UnityEngine_Material_IList_1_UnityEngine_GameObject___Class struct Dictionary_2_UnityEngine_Material_IList_1_UnityEngine_GameObject___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Shader_IList_1_UnityEngine_GameObject_ { + int32_t hashCode; + int32_t next; + struct Shader *key; + struct IList_1_UnityEngine_GameObject_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Shader_IList_1_UnityEngine_GameObject___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Shader_IList_1_UnityEngine_GameObject___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Shader_IList_1_UnityEngine_GameObject_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_Shader_IList_1_UnityEngine_GameObject___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Shader_IList_1_UnityEngine_GameObject___Array *_entries; @@ -1031006,19 +1045504,6 @@ struct Dictionary_2_UnityEngine_Shader_IList_1_UnityEngine_GameObject_ { struct Dictionary_2_UnityEngine_Shader_IList_1_UnityEngine_GameObject___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Shader_IList_1_UnityEngine_GameObject_ { - int32_t hashCode; - int32_t next; - struct Shader *key; - struct IList_1_UnityEngine_GameObject_ *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Shader_IList_1_UnityEngine_GameObject___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Shader_IList_1_UnityEngine_GameObject___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Shader_IList_1_UnityEngine_GameObject_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Shader_IList_1_UnityEngine_GameObject___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Shader_IList_1_UnityEngine_GameObject___Array__Class *klass; MonitorData *monitor; @@ -1031280,6 +1045765,19 @@ struct Dictionary_2_UnityEngine_Shader_IList_1_UnityEngine_GameObject___Class { struct Dictionary_2_UnityEngine_Shader_IList_1_UnityEngine_GameObject___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_ch_sycoforge_Combine_MeshTransform_ { + int32_t hashCode; + int32_t next; + struct Material *key; + struct MeshTransform *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_ch_sycoforge_Combine_MeshTransform___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_ch_sycoforge_Combine_MeshTransform___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_ch_sycoforge_Combine_MeshTransform_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_Material_ch_sycoforge_Combine_MeshTransform___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_ch_sycoforge_Combine_MeshTransform___Array *_entries; @@ -1031299,19 +1045797,6 @@ struct Dictionary_2_UnityEngine_Material_ch_sycoforge_Combine_MeshTransform_ { struct Dictionary_2_UnityEngine_Material_ch_sycoforge_Combine_MeshTransform___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_ch_sycoforge_Combine_MeshTransform_ { - int32_t hashCode; - int32_t next; - struct Material *key; - struct MeshTransform *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_ch_sycoforge_Combine_MeshTransform___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_ch_sycoforge_Combine_MeshTransform___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_ch_sycoforge_Combine_MeshTransform_ fields; -}; - struct __declspec(align(8)) MeshTransform__Fields { struct Mesh *Mesh; struct Matrix4x4 LocalToWorld; @@ -1031399,6 +1045884,19 @@ struct IEnumerable_1_ch_sycoforge_Combine_MeshTransform_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_List_1_ch_sycoforge_Combine_MeshTransform_ { + int32_t hashCode; + int32_t next; + struct Material *key; + struct List_1_ch_sycoforge_Combine_MeshTransform_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_List_1_ch_sycoforge_Combine_MeshTransform___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_List_1_ch_sycoforge_Combine_MeshTransform___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_List_1_ch_sycoforge_Combine_MeshTransform_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_Material_List_1_ch_sycoforge_Combine_MeshTransform___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_List_1_ch_sycoforge_Combine_MeshTransform___Array *_entries; @@ -1031418,19 +1045916,6 @@ struct Dictionary_2_UnityEngine_Material_List_1_ch_sycoforge_Combine_MeshTransfo struct Dictionary_2_UnityEngine_Material_List_1_ch_sycoforge_Combine_MeshTransform___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_List_1_ch_sycoforge_Combine_MeshTransform_ { - int32_t hashCode; - int32_t next; - struct Material *key; - struct List_1_ch_sycoforge_Combine_MeshTransform_ *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_List_1_ch_sycoforge_Combine_MeshTransform___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_List_1_ch_sycoforge_Combine_MeshTransform___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Material_List_1_ch_sycoforge_Combine_MeshTransform_ fields; -}; - struct __declspec(align(8)) List_1_ch_sycoforge_Combine_MeshTransform___Fields { struct MeshTransform__Array *_items; int32_t _size; @@ -1031691,6 +1046176,21 @@ struct ICollection_1_ch_sycoforge_Combine_MeshTransform___Class { struct ICollection_1_ch_sycoforge_Combine_MeshTransform___VTable vtable; }; +struct MeshTransform___VTable { +}; + +struct MeshTransform___StaticFields { +}; + +struct MeshTransform___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MeshTransform___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MeshTransform___VTable vtable; +}; + struct KeyValuePair_2_UnityEngine_Material_ch_sycoforge_Combine_MeshTransform___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1032020,6 +1046520,21 @@ struct ICollection_1_List_1_ch_sycoforge_Combine_MeshTransform___Class { struct ICollection_1_List_1_ch_sycoforge_Combine_MeshTransform___VTable vtable; }; +struct List_1_ch_sycoforge_Combine_MeshTransform__1__VTable { +}; + +struct List_1_ch_sycoforge_Combine_MeshTransform__1__StaticFields { +}; + +struct List_1_ch_sycoforge_Combine_MeshTransform__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_ch_sycoforge_Combine_MeshTransform__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_ch_sycoforge_Combine_MeshTransform__1__VTable vtable; +}; + struct KeyValuePair_2_UnityEngine_Material_List_1_ch_sycoforge_Combine_MeshTransform___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1033560,19 +1048075,6 @@ struct ftLightmaps { MonitorData *monitor; }; -struct __declspec(align(8)) List_1_ftLightmaps_LightmapAdditionalData___Fields { - struct ftLightmaps_LightmapAdditionalData__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_ftLightmaps_LightmapAdditionalData_ { - struct List_1_ftLightmaps_LightmapAdditionalData___Class *klass; - MonitorData *monitor; - struct List_1_ftLightmaps_LightmapAdditionalData___Fields fields; -}; - struct ftLightmaps_LightmapAdditionalData { struct Texture2D *rnm0; struct Texture2D *rnm1; @@ -1033586,6 +1048088,19 @@ struct ftLightmaps_LightmapAdditionalData__Boxed { struct ftLightmaps_LightmapAdditionalData fields; }; +struct __declspec(align(8)) List_1_ftLightmaps_LightmapAdditionalData___Fields { + struct ftLightmaps_LightmapAdditionalData__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_ftLightmaps_LightmapAdditionalData_ { + struct List_1_ftLightmaps_LightmapAdditionalData___Class *klass; + MonitorData *monitor; + struct List_1_ftLightmaps_LightmapAdditionalData___Fields fields; +}; + struct ftLightmaps_LightmapAdditionalData__Array { struct ftLightmaps_LightmapAdditionalData__Array__Class *klass; MonitorData *monitor; @@ -1035108,6 +1049623,21 @@ struct TileData__Class { struct TileData__VTable vtable; }; +struct TileData___VTable { +}; + +struct TileData___StaticFields { +}; + +struct TileData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TileData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TileData___VTable vtable; +}; + struct TileAnimationData__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1035127,6 +1049657,21 @@ struct TileAnimationData__Class { struct TileAnimationData__VTable vtable; }; +struct TileAnimationData___VTable { +}; + +struct TileAnimationData___StaticFields { +}; + +struct TileAnimationData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TileAnimationData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TileAnimationData___VTable vtable; +}; + struct TileBase__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1035350,6 +1049895,19 @@ struct ObjectPoolBase_PreloadedPrefab__Array { struct ObjectPoolBase_PreloadedPrefab vector[32]; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_GameObject_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct GameObject *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_GameObject___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_GameObject___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_GameObject_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_UnityEngine_GameObject___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_GameObject___Array *_entries; @@ -1035369,19 +1049927,6 @@ struct Dictionary_2_System_Int32_UnityEngine_GameObject_ { struct Dictionary_2_System_Int32_UnityEngine_GameObject___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_GameObject_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct GameObject *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_GameObject___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_GameObject___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_GameObject_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_GameObject___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_GameObject___Array__Class *klass; MonitorData *monitor; @@ -1036238,6 +1050783,18 @@ struct IEnumerator_1_UnityEngine_XR_Management_XRLoader_ { MonitorData *monitor; }; +struct HashSet_1_T_Slot_UnityEngine_XR_Management_XRLoader_ { + int32_t hashCode; + int32_t next; + struct XRLoader *value; +}; + +struct HashSet_1_T_Slot_UnityEngine_XR_Management_XRLoader___Boxed { + struct HashSet_1_T_Slot_UnityEngine_XR_Management_XRLoader___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_UnityEngine_XR_Management_XRLoader_ fields; +}; + struct __declspec(align(8)) HashSet_1_UnityEngine_XR_Management_XRLoader___Fields { struct Int32__Array *_buckets; struct HashSet_1_T_Slot_UnityEngine_XR_Management_XRLoader___Array *_slots; @@ -1036255,18 +1050812,6 @@ struct HashSet_1_UnityEngine_XR_Management_XRLoader_ { struct HashSet_1_UnityEngine_XR_Management_XRLoader___Fields fields; }; -struct HashSet_1_T_Slot_UnityEngine_XR_Management_XRLoader_ { - int32_t hashCode; - int32_t next; - struct XRLoader *value; -}; - -struct HashSet_1_T_Slot_UnityEngine_XR_Management_XRLoader___Boxed { - struct HashSet_1_T_Slot_UnityEngine_XR_Management_XRLoader___Class *klass; - MonitorData *monitor; - struct HashSet_1_T_Slot_UnityEngine_XR_Management_XRLoader_ fields; -}; - struct HashSet_1_T_Slot_UnityEngine_XR_Management_XRLoader___Array { struct HashSet_1_T_Slot_UnityEngine_XR_Management_XRLoader___Array__Class *klass; MonitorData *monitor; @@ -1036777,6 +1051322,21 @@ struct OffMeshLinkData__Class { struct OffMeshLinkData__VTable vtable; }; +struct OffMeshLinkData___VTable { +}; + +struct OffMeshLinkData___StaticFields { +}; + +struct OffMeshLinkData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct OffMeshLinkData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct OffMeshLinkData___VTable vtable; +}; + struct OffMeshLink__Fields { struct Behaviour__Fields _; }; @@ -1036839,6 +1051399,21 @@ struct NavMeshHit__Class { struct NavMeshHit__VTable vtable; }; +struct NavMeshHit___VTable { +}; + +struct NavMeshHit___StaticFields { +}; + +struct NavMeshHit___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NavMeshHit___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NavMeshHit___VTable vtable; +}; + struct NavMesh_OnNavMeshPreUpdate__Fields { struct MulticastDelegate__Fields _; }; @@ -1037323,6 +1051898,18 @@ struct VisualEffect__Class { struct VisualEffect__VTable vtable; }; +struct HashSet_1_T_Slot_UdpKit_UdpIPv4Address_ { + int32_t hashCode; + int32_t next; + struct UdpIPv4Address value; +}; + +struct HashSet_1_T_Slot_UdpKit_UdpIPv4Address___Boxed { + struct HashSet_1_T_Slot_UdpKit_UdpIPv4Address___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_UdpKit_UdpIPv4Address_ fields; +}; + struct __declspec(align(8)) HashSet_1_UdpKit_UdpIPv4Address___Fields { struct Int32__Array *_buckets; struct HashSet_1_T_Slot_UdpKit_UdpIPv4Address___Array *_slots; @@ -1037340,18 +1051927,6 @@ struct HashSet_1_UdpKit_UdpIPv4Address_ { struct HashSet_1_UdpKit_UdpIPv4Address___Fields fields; }; -struct HashSet_1_T_Slot_UdpKit_UdpIPv4Address_ { - int32_t hashCode; - int32_t next; - struct UdpIPv4Address value; -}; - -struct HashSet_1_T_Slot_UdpKit_UdpIPv4Address___Boxed { - struct HashSet_1_T_Slot_UdpKit_UdpIPv4Address___Class *klass; - MonitorData *monitor; - struct HashSet_1_T_Slot_UdpKit_UdpIPv4Address_ fields; -}; - struct HashSet_1_T_Slot_UdpKit_UdpIPv4Address___Array { struct HashSet_1_T_Slot_UdpKit_UdpIPv4Address___Array__Class *klass; MonitorData *monitor; @@ -1037512,6 +1052087,19 @@ struct EventHandler_1 { struct EventHandler_1__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_Object_Dictionary_2_System_String_List_1_Opsive_Shared_Events_InvokableActionBase_ { + int32_t hashCode; + int32_t next; + struct Object *key; + struct Dictionary_2_System_String_List_1_Opsive_Shared_Events_InvokableActionBase_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Object_Dictionary_2_System_String_List_1_Opsive_Shared_Events_InvokableActionBase___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Object_Dictionary_2_System_String_List_1_Opsive_Shared_Events_InvokableActionBase___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Object_Dictionary_2_System_String_List_1_Opsive_Shared_Events_InvokableActionBase_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Object_Dictionary_2_System_String_List_1_Opsive_Shared_Events_InvokableActionBase___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Object_Dictionary_2_System_String_List_1_Opsive_Shared_Events_InvokableActionBase___Array *_entries; @@ -1037531,17 +1052119,17 @@ struct Dictionary_2_System_Object_Dictionary_2_System_String_List_1_Opsive_Share struct Dictionary_2_System_Object_Dictionary_2_System_String_List_1_Opsive_Shared_Events_InvokableActionBase___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Object_Dictionary_2_System_String_List_1_Opsive_Shared_Events_InvokableActionBase_ { +struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Opsive_Shared_Events_InvokableActionBase_ { int32_t hashCode; int32_t next; - struct Object *key; - struct Dictionary_2_System_String_List_1_Opsive_Shared_Events_InvokableActionBase_ *value; + struct String *key; + struct List_1_Opsive_Shared_Events_InvokableActionBase_ *value; }; -struct Dictionary_2_TKey_TValue_Entry_System_Object_Dictionary_2_System_String_List_1_Opsive_Shared_Events_InvokableActionBase___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Object_Dictionary_2_System_String_List_1_Opsive_Shared_Events_InvokableActionBase___Class *klass; +struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Opsive_Shared_Events_InvokableActionBase___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Opsive_Shared_Events_InvokableActionBase___Class *klass; MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Object_Dictionary_2_System_String_List_1_Opsive_Shared_Events_InvokableActionBase_ fields; + struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Opsive_Shared_Events_InvokableActionBase_ fields; }; struct __declspec(align(8)) Dictionary_2_System_String_List_1_Opsive_Shared_Events_InvokableActionBase___Fields { @@ -1037563,17 +1052151,9 @@ struct Dictionary_2_System_String_List_1_Opsive_Shared_Events_InvokableActionBas struct Dictionary_2_System_String_List_1_Opsive_Shared_Events_InvokableActionBase___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Opsive_Shared_Events_InvokableActionBase_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct List_1_Opsive_Shared_Events_InvokableActionBase_ *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Opsive_Shared_Events_InvokableActionBase___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Opsive_Shared_Events_InvokableActionBase___Class *klass; +struct InvokableActionBase { + struct InvokableActionBase__Class *klass; MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Opsive_Shared_Events_InvokableActionBase_ fields; }; struct __declspec(align(8)) List_1_Opsive_Shared_Events_InvokableActionBase___Fields { @@ -1037589,11 +1052169,6 @@ struct List_1_Opsive_Shared_Events_InvokableActionBase_ { struct List_1_Opsive_Shared_Events_InvokableActionBase___Fields fields; }; -struct InvokableActionBase { - struct InvokableActionBase__Class *klass; - MonitorData *monitor; -}; - struct InvokableActionBase__Array { struct InvokableActionBase__Array__Class *klass; MonitorData *monitor; @@ -1038011,6 +1052586,21 @@ struct ICollection_1_List_1_Opsive_Shared_Events_InvokableActionBase___Class { struct ICollection_1_List_1_Opsive_Shared_Events_InvokableActionBase___VTable vtable; }; +struct List_1_Opsive_Shared_Events_InvokableActionBase__1__VTable { +}; + +struct List_1_Opsive_Shared_Events_InvokableActionBase__1__StaticFields { +}; + +struct List_1_Opsive_Shared_Events_InvokableActionBase__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Opsive_Shared_Events_InvokableActionBase__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Opsive_Shared_Events_InvokableActionBase__1__VTable vtable; +}; + struct KeyValuePair_2_System_String_List_1_Opsive_Shared_Events_InvokableActionBase___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1038289,6 +1052879,21 @@ struct ICollection_1_Dictionary_2_System_String_List_1_Opsive_Shared_Events_Invo struct ICollection_1_Dictionary_2_System_String_List_1_Opsive_Shared_Events_InvokableActionBase___VTable vtable; }; +struct Dictionary_2_System_String_List_1_Opsive_Shared_Events_InvokableActionBase__1__VTable { +}; + +struct Dictionary_2_System_String_List_1_Opsive_Shared_Events_InvokableActionBase__1__StaticFields { +}; + +struct Dictionary_2_System_String_List_1_Opsive_Shared_Events_InvokableActionBase__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_System_String_List_1_Opsive_Shared_Events_InvokableActionBase__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_System_String_List_1_Opsive_Shared_Events_InvokableActionBase__1__VTable vtable; +}; + struct KeyValuePair_2_System_Object_Dictionary_2_System_String_List_1_Opsive_Shared_Events_InvokableActionBase___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1039141,6 +1053746,17 @@ struct BoltDebugStartSettings__Class { struct BoltDebugStartSettings__VTable vtable; }; +struct STuple_2_Photon_Bolt_BoltGlobalBehaviourAttribute_System_Type_ { + struct BoltGlobalBehaviourAttribute *item0; + struct Type *item1; +}; + +struct STuple_2_Photon_Bolt_BoltGlobalBehaviourAttribute_System_Type___Boxed { + struct STuple_2_Photon_Bolt_BoltGlobalBehaviourAttribute_System_Type___Class *klass; + MonitorData *monitor; + struct STuple_2_Photon_Bolt_BoltGlobalBehaviourAttribute_System_Type_ fields; +}; + struct __declspec(align(8)) List_1_Photon_Bolt_Collections_STuple_2___Fields { struct STuple_2_Photon_Bolt_BoltGlobalBehaviourAttribute_System_Type___Array *_items; int32_t _size; @@ -1039154,17 +1053770,6 @@ struct List_1_Photon_Bolt_Collections_STuple_2_ { struct List_1_Photon_Bolt_Collections_STuple_2___Fields fields; }; -struct STuple_2_Photon_Bolt_BoltGlobalBehaviourAttribute_System_Type_ { - struct BoltGlobalBehaviourAttribute *item0; - struct Type *item1; -}; - -struct STuple_2_Photon_Bolt_BoltGlobalBehaviourAttribute_System_Type___Boxed { - struct STuple_2_Photon_Bolt_BoltGlobalBehaviourAttribute_System_Type___Class *klass; - MonitorData *monitor; - struct STuple_2_Photon_Bolt_BoltGlobalBehaviourAttribute_System_Type_ fields; -}; - struct STuple_2_Photon_Bolt_BoltGlobalBehaviourAttribute_System_Type___Array { struct STuple_2_Photon_Bolt_BoltGlobalBehaviourAttribute_System_Type___Array__Class *klass; MonitorData *monitor; @@ -1039557,6 +1054162,21 @@ struct WheelHit__Class { struct WheelHit__VTable vtable; }; +struct WheelHit___VTable { +}; + +struct WheelHit___StaticFields { +}; + +struct WheelHit___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct WheelHit___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct WheelHit___VTable vtable; +}; + #if defined(_CPLUSPLUS_) enum class ScreenCapture_StereoScreenCaptureMode__Enum : int32_t { LeftEye = 0x00000001, @@ -1040250,6 +1054870,19 @@ struct MockRuntime { struct MockRuntime__Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_XR_OpenXR_Features_Mock_MockRuntime_AfterFunctionDelegate_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct MockRuntime_AfterFunctionDelegate *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_XR_OpenXR_Features_Mock_MockRuntime_AfterFunctionDelegate___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_XR_OpenXR_Features_Mock_MockRuntime_AfterFunctionDelegate___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_XR_OpenXR_Features_Mock_MockRuntime_AfterFunctionDelegate_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_UnityEngine_XR_OpenXR_Features_Mock_MockRuntime_AfterFunctionDelegate___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_XR_OpenXR_Features_Mock_MockRuntime_AfterFunctionDelegate___Array *_entries; @@ -1040269,19 +1054902,6 @@ struct Dictionary_2_System_String_UnityEngine_XR_OpenXR_Features_Mock_MockRuntim struct Dictionary_2_System_String_UnityEngine_XR_OpenXR_Features_Mock_MockRuntime_AfterFunctionDelegate___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_XR_OpenXR_Features_Mock_MockRuntime_AfterFunctionDelegate_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct MockRuntime_AfterFunctionDelegate *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_XR_OpenXR_Features_Mock_MockRuntime_AfterFunctionDelegate___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_XR_OpenXR_Features_Mock_MockRuntime_AfterFunctionDelegate___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_XR_OpenXR_Features_Mock_MockRuntime_AfterFunctionDelegate_ fields; -}; - struct MockRuntime_AfterFunctionDelegate__Fields { struct MulticastDelegate__Fields _; }; @@ -1040502,6 +1055122,19 @@ struct IEnumerable_1_UnityEngine_XR_OpenXR_Features_Mock_MockRuntime_AfterFuncti MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_XR_OpenXR_Features_Mock_MockRuntime_BeforeFunctionDelegate_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct MockRuntime_BeforeFunctionDelegate *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_XR_OpenXR_Features_Mock_MockRuntime_BeforeFunctionDelegate___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_XR_OpenXR_Features_Mock_MockRuntime_BeforeFunctionDelegate___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_XR_OpenXR_Features_Mock_MockRuntime_BeforeFunctionDelegate_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_UnityEngine_XR_OpenXR_Features_Mock_MockRuntime_BeforeFunctionDelegate___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_XR_OpenXR_Features_Mock_MockRuntime_BeforeFunctionDelegate___Array *_entries; @@ -1040521,19 +1055154,6 @@ struct Dictionary_2_System_String_UnityEngine_XR_OpenXR_Features_Mock_MockRuntim struct Dictionary_2_System_String_UnityEngine_XR_OpenXR_Features_Mock_MockRuntime_BeforeFunctionDelegate___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_XR_OpenXR_Features_Mock_MockRuntime_BeforeFunctionDelegate_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct MockRuntime_BeforeFunctionDelegate *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_XR_OpenXR_Features_Mock_MockRuntime_BeforeFunctionDelegate___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_XR_OpenXR_Features_Mock_MockRuntime_BeforeFunctionDelegate___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_XR_OpenXR_Features_Mock_MockRuntime_BeforeFunctionDelegate_ fields; -}; - struct MockRuntime_BeforeFunctionDelegate__Fields { struct MulticastDelegate__Fields _; }; @@ -1040841,6 +1055461,21 @@ struct ICollection_1_UnityEngine_XR_OpenXR_Features_Mock_MockRuntime_AfterFuncti struct ICollection_1_UnityEngine_XR_OpenXR_Features_Mock_MockRuntime_AfterFunctionDelegate___VTable vtable; }; +struct MockRuntime_AfterFunctionDelegate___VTable { +}; + +struct MockRuntime_AfterFunctionDelegate___StaticFields { +}; + +struct MockRuntime_AfterFunctionDelegate___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MockRuntime_AfterFunctionDelegate___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MockRuntime_AfterFunctionDelegate___VTable vtable; +}; + struct KeyValuePair_2_System_String_UnityEngine_XR_OpenXR_Features_Mock_MockRuntime_AfterFunctionDelegate___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1041150,6 +1055785,21 @@ struct ICollection_1_UnityEngine_XR_OpenXR_Features_Mock_MockRuntime_BeforeFunct struct ICollection_1_UnityEngine_XR_OpenXR_Features_Mock_MockRuntime_BeforeFunctionDelegate___VTable vtable; }; +struct MockRuntime_BeforeFunctionDelegate___VTable { +}; + +struct MockRuntime_BeforeFunctionDelegate___StaticFields { +}; + +struct MockRuntime_BeforeFunctionDelegate___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MockRuntime_BeforeFunctionDelegate___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MockRuntime_BeforeFunctionDelegate___VTable vtable; +}; + struct KeyValuePair_2_System_String_UnityEngine_XR_OpenXR_Features_Mock_MockRuntime_BeforeFunctionDelegate___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1057082,6 +1071732,18 @@ struct Enumerable_DistinctIterator_d_68_1_System_Int32_ { struct Enumerable_DistinctIterator_d_68_1_System_Int32___Fields fields; }; +struct Set_1_TElement_Slot_System_Int32_ { + int32_t hashCode; + int32_t value; + int32_t next; +}; + +struct Set_1_TElement_Slot_System_Int32___Boxed { + struct Set_1_TElement_Slot_System_Int32___Class *klass; + MonitorData *monitor; + struct Set_1_TElement_Slot_System_Int32_ fields; +}; + struct __declspec(align(8)) Set_1_System_Int32___Fields { struct Int32__Array *buckets; struct Set_1_TElement_Slot_System_Int32___Array *slots; @@ -1057096,18 +1071758,6 @@ struct Set_1_System_Int32_ { struct Set_1_System_Int32___Fields fields; }; -struct Set_1_TElement_Slot_System_Int32_ { - int32_t hashCode; - int32_t value; - int32_t next; -}; - -struct Set_1_TElement_Slot_System_Int32___Boxed { - struct Set_1_TElement_Slot_System_Int32___Class *klass; - MonitorData *monitor; - struct Set_1_TElement_Slot_System_Int32_ fields; -}; - struct Set_1_TElement_Slot_System_Int32___Array { struct Set_1_TElement_Slot_System_Int32___Array__Class *klass; MonitorData *monitor; @@ -1057213,6 +1071863,18 @@ struct Enumerable_DistinctIterator_d_68_1_System_Object_ { struct Enumerable_DistinctIterator_d_68_1_System_Object___Fields fields; }; +struct Set_1_TElement_Slot_System_Object_ { + int32_t hashCode; + struct Object *value; + int32_t next; +}; + +struct Set_1_TElement_Slot_System_Object___Boxed { + struct Set_1_TElement_Slot_System_Object___Class *klass; + MonitorData *monitor; + struct Set_1_TElement_Slot_System_Object_ fields; +}; + struct __declspec(align(8)) Set_1_System_Object___Fields { struct Int32__Array *buckets; struct Set_1_TElement_Slot_System_Object___Array *slots; @@ -1057227,18 +1071889,6 @@ struct Set_1_System_Object_ { struct Set_1_System_Object___Fields fields; }; -struct Set_1_TElement_Slot_System_Object_ { - int32_t hashCode; - struct Object *value; - int32_t next; -}; - -struct Set_1_TElement_Slot_System_Object___Boxed { - struct Set_1_TElement_Slot_System_Object___Class *klass; - MonitorData *monitor; - struct Set_1_TElement_Slot_System_Object_ fields; -}; - struct Set_1_TElement_Slot_System_Object___Array { struct Set_1_TElement_Slot_System_Object___Array__Class *klass; MonitorData *monitor; @@ -1057418,6 +1072068,17 @@ struct ConcurrentQueue_1_T_Enumerate_d_28_System_Object_ { struct ConcurrentQueue_1_T_Enumerate_d_28_System_Object___Fields fields; }; +struct ConcurrentQueue_1_T_Segment_T_Slot_System_Object_ { + struct Object *Item; + int32_t SequenceNumber; +}; + +struct ConcurrentQueue_1_T_Segment_T_Slot_System_Object___Boxed { + struct ConcurrentQueue_1_T_Segment_T_Slot_System_Object___Class *klass; + MonitorData *monitor; + struct ConcurrentQueue_1_T_Segment_T_Slot_System_Object_ fields; +}; + struct PaddedHeadAndTail { int32_t Head; int32_t Tail; @@ -1057444,17 +1072105,6 @@ struct ConcurrentQueue_1_T_Segment_System_Object_ { struct ConcurrentQueue_1_T_Segment_System_Object___Fields fields; }; -struct ConcurrentQueue_1_T_Segment_T_Slot_System_Object_ { - struct Object *Item; - int32_t SequenceNumber; -}; - -struct ConcurrentQueue_1_T_Segment_T_Slot_System_Object___Boxed { - struct ConcurrentQueue_1_T_Segment_T_Slot_System_Object___Class *klass; - MonitorData *monitor; - struct ConcurrentQueue_1_T_Segment_T_Slot_System_Object_ fields; -}; - struct ConcurrentQueue_1_T_Segment_T_Slot_System_Object___Array { struct ConcurrentQueue_1_T_Segment_T_Slot_System_Object___Array__Class *klass; MonitorData *monitor; @@ -1058979,19 +1073629,6 @@ struct Lookup_2_TKey_TElement_GetEnumerator_d_12_System_Int32_System_Object_ { struct Lookup_2_TKey_TElement_GetEnumerator_d_12_System_Int32_System_Object___Fields fields; }; -struct __declspec(align(8)) Lookup_2_System_Int32_System_Object___Fields { - struct IEqualityComparer_1_System_Int32_ *comparer; - struct Lookup_2_TKey_TElement_Grouping_System_Int32_System_Object___Array *groupings; - struct Lookup_2_TKey_TElement_Grouping_System_Int32_System_Object_ *lastGrouping; - int32_t count; -}; - -struct Lookup_2_System_Int32_System_Object_ { - struct Lookup_2_System_Int32_System_Object___Class *klass; - MonitorData *monitor; - struct Lookup_2_System_Int32_System_Object___Fields fields; -}; - struct __declspec(align(8)) Lookup_2_TKey_TElement_Grouping_System_Int32_System_Object___Fields { int32_t key; int32_t hashCode; @@ -1059007,6 +1073644,19 @@ struct Lookup_2_TKey_TElement_Grouping_System_Int32_System_Object_ { struct Lookup_2_TKey_TElement_Grouping_System_Int32_System_Object___Fields fields; }; +struct __declspec(align(8)) Lookup_2_System_Int32_System_Object___Fields { + struct IEqualityComparer_1_System_Int32_ *comparer; + struct Lookup_2_TKey_TElement_Grouping_System_Int32_System_Object___Array *groupings; + struct Lookup_2_TKey_TElement_Grouping_System_Int32_System_Object_ *lastGrouping; + int32_t count; +}; + +struct Lookup_2_System_Int32_System_Object_ { + struct Lookup_2_System_Int32_System_Object___Class *klass; + MonitorData *monitor; + struct Lookup_2_System_Int32_System_Object___Fields fields; +}; + struct Lookup_2_TKey_TElement_Grouping_System_Int32_System_Object___Array { struct Lookup_2_TKey_TElement_Grouping_System_Int32_System_Object___Array__Class *klass; MonitorData *monitor; @@ -1059147,19 +1073797,6 @@ struct IGrouping_2_System_Object_System_Object_ { MonitorData *monitor; }; -struct __declspec(align(8)) Lookup_2_System_Object_System_Object___Fields { - struct IEqualityComparer_1_System_Object_ *comparer; - struct Lookup_2_TKey_TElement_Grouping_System_Object_System_Object___Array *groupings; - struct Lookup_2_TKey_TElement_Grouping_System_Object_System_Object_ *lastGrouping; - int32_t count; -}; - -struct Lookup_2_System_Object_System_Object_ { - struct Lookup_2_System_Object_System_Object___Class *klass; - MonitorData *monitor; - struct Lookup_2_System_Object_System_Object___Fields fields; -}; - struct __declspec(align(8)) Lookup_2_TKey_TElement_Grouping_System_Object_System_Object___Fields { struct Object *key; int32_t hashCode; @@ -1059175,6 +1073812,19 @@ struct Lookup_2_TKey_TElement_Grouping_System_Object_System_Object_ { struct Lookup_2_TKey_TElement_Grouping_System_Object_System_Object___Fields fields; }; +struct __declspec(align(8)) Lookup_2_System_Object_System_Object___Fields { + struct IEqualityComparer_1_System_Object_ *comparer; + struct Lookup_2_TKey_TElement_Grouping_System_Object_System_Object___Array *groupings; + struct Lookup_2_TKey_TElement_Grouping_System_Object_System_Object_ *lastGrouping; + int32_t count; +}; + +struct Lookup_2_System_Object_System_Object_ { + struct Lookup_2_System_Object_System_Object___Class *klass; + MonitorData *monitor; + struct Lookup_2_System_Object_System_Object___Fields fields; +}; + struct Lookup_2_TKey_TElement_Grouping_System_Object_System_Object___Array { struct Lookup_2_TKey_TElement_Grouping_System_Object_System_Object___Array__Class *klass; MonitorData *monitor; @@ -1059330,19 +1073980,6 @@ struct IGrouping_2_System_Object_UnityEngine_Resolution_ { MonitorData *monitor; }; -struct __declspec(align(8)) Lookup_2_System_Object_UnityEngine_Resolution___Fields { - struct IEqualityComparer_1_System_Object_ *comparer; - struct Lookup_2_TKey_TElement_Grouping_System_Object_UnityEngine_Resolution___Array *groupings; - struct Lookup_2_TKey_TElement_Grouping_System_Object_UnityEngine_Resolution_ *lastGrouping; - int32_t count; -}; - -struct Lookup_2_System_Object_UnityEngine_Resolution_ { - struct Lookup_2_System_Object_UnityEngine_Resolution___Class *klass; - MonitorData *monitor; - struct Lookup_2_System_Object_UnityEngine_Resolution___Fields fields; -}; - struct __declspec(align(8)) Lookup_2_TKey_TElement_Grouping_System_Object_UnityEngine_Resolution___Fields { struct Object *key; int32_t hashCode; @@ -1059358,6 +1073995,19 @@ struct Lookup_2_TKey_TElement_Grouping_System_Object_UnityEngine_Resolution_ { struct Lookup_2_TKey_TElement_Grouping_System_Object_UnityEngine_Resolution___Fields fields; }; +struct __declspec(align(8)) Lookup_2_System_Object_UnityEngine_Resolution___Fields { + struct IEqualityComparer_1_System_Object_ *comparer; + struct Lookup_2_TKey_TElement_Grouping_System_Object_UnityEngine_Resolution___Array *groupings; + struct Lookup_2_TKey_TElement_Grouping_System_Object_UnityEngine_Resolution_ *lastGrouping; + int32_t count; +}; + +struct Lookup_2_System_Object_UnityEngine_Resolution_ { + struct Lookup_2_System_Object_UnityEngine_Resolution___Class *klass; + MonitorData *monitor; + struct Lookup_2_System_Object_UnityEngine_Resolution___Fields fields; +}; + struct Lookup_2_TKey_TElement_Grouping_System_Object_UnityEngine_Resolution___Array { struct Lookup_2_TKey_TElement_Grouping_System_Object_UnityEngine_Resolution___Array__Class *klass; MonitorData *monitor; @@ -1059513,6 +1074163,21 @@ struct IGrouping_2_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2 MonitorData *monitor; }; +struct __declspec(align(8)) Lookup_2_TKey_TElement_Grouping_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2___Fields { + struct Vector3 key; + int32_t hashCode; + struct KeyValuePair_2_UnityEngine_Vector3_System_Int32___Array *elements; + int32_t count; + struct Lookup_2_TKey_TElement_Grouping_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2_ *hashNext; + struct Lookup_2_TKey_TElement_Grouping_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2_ *next; +}; + +struct Lookup_2_TKey_TElement_Grouping_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2_ { + struct Lookup_2_TKey_TElement_Grouping_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2___Class *klass; + MonitorData *monitor; + struct Lookup_2_TKey_TElement_Grouping_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2___Fields fields; +}; + struct __declspec(align(8)) Lookup_2_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2___Fields { struct IEqualityComparer_1_UnityEngine_Vector3_ *comparer; struct Lookup_2_TKey_TElement_Grouping_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2___Array *groupings; @@ -1059531,21 +1074196,6 @@ struct IEqualityComparer_1_UnityEngine_Vector3_ { MonitorData *monitor; }; -struct __declspec(align(8)) Lookup_2_TKey_TElement_Grouping_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2___Fields { - struct Vector3 key; - int32_t hashCode; - struct KeyValuePair_2_UnityEngine_Vector3_System_Int32___Array *elements; - int32_t count; - struct Lookup_2_TKey_TElement_Grouping_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2_ *hashNext; - struct Lookup_2_TKey_TElement_Grouping_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2_ *next; -}; - -struct Lookup_2_TKey_TElement_Grouping_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2_ { - struct Lookup_2_TKey_TElement_Grouping_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2___Class *klass; - MonitorData *monitor; - struct Lookup_2_TKey_TElement_Grouping_UnityEngine_Vector3_System_Collections_Generic_KeyValuePair_2___Fields fields; -}; - struct KeyValuePair_2_UnityEngine_Vector3_System_Int32___Array { struct KeyValuePair_2_UnityEngine_Vector3_System_Int32___Array__Class *klass; MonitorData *monitor; @@ -1060406,6 +1075056,19 @@ struct BoltDoubleList_1_T_GetEnumerator_d_32_System_Object___Class { struct BoltDoubleList_1_T_GetEnumerator_d_32_System_Object___VTable vtable; }; +struct __declspec(align(8)) ConcurrentDictionary_2_TKey_TValue_Node_System_Object_System_Object___Fields { + struct Object *_key; + struct Object *_value; + struct ConcurrentDictionary_2_TKey_TValue_Node_System_Object_System_Object_ *_next; + int32_t _hashcode; +}; + +struct ConcurrentDictionary_2_TKey_TValue_Node_System_Object_System_Object_ { + struct ConcurrentDictionary_2_TKey_TValue_Node_System_Object_System_Object___Class *klass; + MonitorData *monitor; + struct ConcurrentDictionary_2_TKey_TValue_Node_System_Object_System_Object___Fields fields; +}; + struct __declspec(align(8)) ConcurrentDictionary_2_TKey_TValue_GetEnumerator_d_35_System_Object_System_Object___Fields { int32_t __1__state; struct KeyValuePair_2_System_Object_System_Object_ __2__current; @@ -1060449,19 +1075112,6 @@ struct ConcurrentDictionary_2_TKey_TValue_Tables_System_Object_System_Object_ { struct ConcurrentDictionary_2_TKey_TValue_Tables_System_Object_System_Object___Fields fields; }; -struct __declspec(align(8)) ConcurrentDictionary_2_TKey_TValue_Node_System_Object_System_Object___Fields { - struct Object *_key; - struct Object *_value; - struct ConcurrentDictionary_2_TKey_TValue_Node_System_Object_System_Object_ *_next; - int32_t _hashcode; -}; - -struct ConcurrentDictionary_2_TKey_TValue_Node_System_Object_System_Object_ { - struct ConcurrentDictionary_2_TKey_TValue_Node_System_Object_System_Object___Class *klass; - MonitorData *monitor; - struct ConcurrentDictionary_2_TKey_TValue_Node_System_Object_System_Object___Fields fields; -}; - struct ConcurrentDictionary_2_TKey_TValue_Node_System_Object_System_Object___Array { struct ConcurrentDictionary_2_TKey_TValue_Node_System_Object_System_Object___Array__Class *klass; MonitorData *monitor; @@ -1064019,6 +1078669,34 @@ struct ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32___Class { struct ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32___VTable vtable; }; +struct KeyValuePair_2_System_Int32_System_Int32__1__VTable { +}; + +struct KeyValuePair_2_System_Int32_System_Int32__1__StaticFields { +}; + +struct KeyValuePair_2_System_Int32_System_Int32__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_Int32_System_Int32__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_Int32_System_Int32__1__VTable vtable; +}; + +struct ADictionary_2_TKey_TValue_Entry_System_Int32_System_Object_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct Object *value; +}; + +struct ADictionary_2_TKey_TValue_Entry_System_Int32_System_Object___Boxed { + struct ADictionary_2_TKey_TValue_Entry_System_Int32_System_Object___Class *klass; + MonitorData *monitor; + struct ADictionary_2_TKey_TValue_Entry_System_Int32_System_Object_ fields; +}; + struct __declspec(align(8)) ADictionary_2_System_Int32_System_Object___Fields { struct Int32__Array *pGawVZUvYULemJqagZXhjOtPTktC; struct ADictionary_2_TKey_TValue_Entry_System_Int32_System_Object___Array *_entries; @@ -1064040,19 +1078718,6 @@ struct ADictionary_2_System_Int32_System_Object_ { struct ADictionary_2_System_Int32_System_Object___Fields fields; }; -struct ADictionary_2_TKey_TValue_Entry_System_Int32_System_Object_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct Object *value; -}; - -struct ADictionary_2_TKey_TValue_Entry_System_Int32_System_Object___Boxed { - struct ADictionary_2_TKey_TValue_Entry_System_Int32_System_Object___Class *klass; - MonitorData *monitor; - struct ADictionary_2_TKey_TValue_Entry_System_Int32_System_Object_ fields; -}; - struct ADictionary_2_TKey_TValue_Entry_System_Int32_System_Object___Array { struct ADictionary_2_TKey_TValue_Entry_System_Int32_System_Object___Array__Class *klass; MonitorData *monitor; @@ -1064301,6 +1078966,34 @@ struct ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object___Class { struct ADictionary_2_TKey_TValue_Enumerator_System_Int32_System_Object___VTable vtable; }; +struct KeyValuePair_2_System_Int32_System_Object__1__VTable { +}; + +struct KeyValuePair_2_System_Int32_System_Object__1__StaticFields { +}; + +struct KeyValuePair_2_System_Int32_System_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_Int32_System_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_Int32_System_Object__1__VTable vtable; +}; + +struct ADictionary_2_TKey_TValue_Entry_System_Object_System_Int32_ { + int32_t hashCode; + int32_t next; + struct Object *key; + int32_t value; +}; + +struct ADictionary_2_TKey_TValue_Entry_System_Object_System_Int32___Boxed { + struct ADictionary_2_TKey_TValue_Entry_System_Object_System_Int32___Class *klass; + MonitorData *monitor; + struct ADictionary_2_TKey_TValue_Entry_System_Object_System_Int32_ fields; +}; + struct __declspec(align(8)) ADictionary_2_System_Object_System_Int32___Fields { struct Int32__Array *pGawVZUvYULemJqagZXhjOtPTktC; struct ADictionary_2_TKey_TValue_Entry_System_Object_System_Int32___Array *_entries; @@ -1064322,19 +1079015,6 @@ struct ADictionary_2_System_Object_System_Int32_ { struct ADictionary_2_System_Object_System_Int32___Fields fields; }; -struct ADictionary_2_TKey_TValue_Entry_System_Object_System_Int32_ { - int32_t hashCode; - int32_t next; - struct Object *key; - int32_t value; -}; - -struct ADictionary_2_TKey_TValue_Entry_System_Object_System_Int32___Boxed { - struct ADictionary_2_TKey_TValue_Entry_System_Object_System_Int32___Class *klass; - MonitorData *monitor; - struct ADictionary_2_TKey_TValue_Entry_System_Object_System_Int32_ fields; -}; - struct ADictionary_2_TKey_TValue_Entry_System_Object_System_Int32___Array { struct ADictionary_2_TKey_TValue_Entry_System_Object_System_Int32___Array__Class *klass; MonitorData *monitor; @@ -1064583,6 +1079263,38 @@ struct ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32___Class { struct ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32___VTable vtable; }; +struct KeyValuePair_2_System_Object_System_Int32__1__VTable { +}; + +struct KeyValuePair_2_System_Object_System_Int32__1__StaticFields { +}; + +struct KeyValuePair_2_System_Object_System_Int32__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_Object_System_Int32__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_Object_System_Int32__1__VTable vtable; +}; + +struct ADictionary_2_TKey_TValue_Entry_System_Object_System_Int32Enum_ { + int32_t hashCode; + int32_t next; + struct Object *key; + #if defined(_CPLUSPLUS_) + Int32Enum__Enum value; + #else + int32_t value; + #endif +}; + +struct ADictionary_2_TKey_TValue_Entry_System_Object_System_Int32Enum___Boxed { + struct ADictionary_2_TKey_TValue_Entry_System_Object_System_Int32Enum___Class *klass; + MonitorData *monitor; + struct ADictionary_2_TKey_TValue_Entry_System_Object_System_Int32Enum_ fields; +}; + struct __declspec(align(8)) ADictionary_2_System_Object_System_Int32Enum___Fields { struct Int32__Array *pGawVZUvYULemJqagZXhjOtPTktC; struct ADictionary_2_TKey_TValue_Entry_System_Object_System_Int32Enum___Array *_entries; @@ -1064604,23 +1079316,6 @@ struct ADictionary_2_System_Object_System_Int32Enum_ { struct ADictionary_2_System_Object_System_Int32Enum___Fields fields; }; -struct ADictionary_2_TKey_TValue_Entry_System_Object_System_Int32Enum_ { - int32_t hashCode; - int32_t next; - struct Object *key; - #if defined(_CPLUSPLUS_) - Int32Enum__Enum value; - #else - int32_t value; - #endif -}; - -struct ADictionary_2_TKey_TValue_Entry_System_Object_System_Int32Enum___Boxed { - struct ADictionary_2_TKey_TValue_Entry_System_Object_System_Int32Enum___Class *klass; - MonitorData *monitor; - struct ADictionary_2_TKey_TValue_Entry_System_Object_System_Int32Enum_ fields; -}; - struct ADictionary_2_TKey_TValue_Entry_System_Object_System_Int32Enum___Array { struct ADictionary_2_TKey_TValue_Entry_System_Object_System_Int32Enum___Array__Class *klass; MonitorData *monitor; @@ -1064847,6 +1079542,21 @@ struct ICollection_1_System_Int32Enum___Class { struct ICollection_1_System_Int32Enum___VTable vtable; }; +struct Int32Enum___VTable { +}; + +struct Int32Enum___StaticFields { +}; + +struct Int32Enum___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Int32Enum___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Int32Enum___VTable vtable; +}; + struct KeyValuePair_2_System_Object_System_Int32Enum___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1065019,6 +1079729,34 @@ struct ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum___Cla struct ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum___VTable vtable; }; +struct KeyValuePair_2_System_Object_System_Int32Enum__1__VTable { +}; + +struct KeyValuePair_2_System_Object_System_Int32Enum__1__StaticFields { +}; + +struct KeyValuePair_2_System_Object_System_Int32Enum__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_Object_System_Int32Enum__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_Object_System_Int32Enum__1__VTable vtable; +}; + +struct ADictionary_2_TKey_TValue_Entry_System_Object_System_Object_ { + int32_t hashCode; + int32_t next; + struct Object *key; + struct Object *value; +}; + +struct ADictionary_2_TKey_TValue_Entry_System_Object_System_Object___Boxed { + struct ADictionary_2_TKey_TValue_Entry_System_Object_System_Object___Class *klass; + MonitorData *monitor; + struct ADictionary_2_TKey_TValue_Entry_System_Object_System_Object_ fields; +}; + struct __declspec(align(8)) ADictionary_2_System_Object_System_Object___Fields { struct Int32__Array *pGawVZUvYULemJqagZXhjOtPTktC; struct ADictionary_2_TKey_TValue_Entry_System_Object_System_Object___Array *_entries; @@ -1065040,19 +1079778,6 @@ struct ADictionary_2_System_Object_System_Object_ { struct ADictionary_2_System_Object_System_Object___Fields fields; }; -struct ADictionary_2_TKey_TValue_Entry_System_Object_System_Object_ { - int32_t hashCode; - int32_t next; - struct Object *key; - struct Object *value; -}; - -struct ADictionary_2_TKey_TValue_Entry_System_Object_System_Object___Boxed { - struct ADictionary_2_TKey_TValue_Entry_System_Object_System_Object___Class *klass; - MonitorData *monitor; - struct ADictionary_2_TKey_TValue_Entry_System_Object_System_Object_ fields; -}; - struct ADictionary_2_TKey_TValue_Entry_System_Object_System_Object___Array { struct ADictionary_2_TKey_TValue_Entry_System_Object_System_Object___Array__Class *klass; MonitorData *monitor; @@ -1065301,6 +1080026,32 @@ struct ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Object___Class struct ADictionary_2_TKey_TValue_Enumerator_System_Object_System_Object___VTable vtable; }; +struct KeyValuePair_2_System_Object_System_Object__1__VTable { +}; + +struct KeyValuePair_2_System_Object_System_Object__1__StaticFields { +}; + +struct KeyValuePair_2_System_Object_System_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_Object_System_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_Object_System_Object__1__VTable vtable; +}; + +struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object_ { + int32_t EEIcOLJEdadvUSUztQvSiKbHUvbk; + struct Object *KCmvqxmDPHZcOPAPceRkbTZbUBUm; +}; + +struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object___Boxed { + struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object___Class *klass; + MonitorData *monitor; + struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object_ fields; +}; + struct __declspec(align(8)) AList_1_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object___Fields { struct IEqualityComparer_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__3 *IffVJRWXMWVnHJdLRJYLVauxgDLkA; struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object___Array *_items; @@ -1065320,17 +1080071,6 @@ struct AList_1_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_Sys struct AList_1_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object___Fields fields; }; -struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object_ { - int32_t EEIcOLJEdadvUSUztQvSiKbHUvbk; - struct Object *KCmvqxmDPHZcOPAPceRkbTZbUBUm; -}; - -struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object___Boxed { - struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object___Class *klass; - MonitorData *monitor; - struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object_ fields; -}; - struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object___Array { struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object___Array__Class *klass; MonitorData *monitor; @@ -1065735,6 +1080475,17 @@ struct IComparer_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVB struct IComparer_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb___VTable vtable; }; +struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object_ { + struct Object *EEIcOLJEdadvUSUztQvSiKbHUvbk; + struct Object *KCmvqxmDPHZcOPAPceRkbTZbUBUm; +}; + +struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object___Boxed { + struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object___Class *klass; + MonitorData *monitor; + struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object_ fields; +}; + struct __declspec(align(8)) AList_1_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object___Fields { struct IEqualityComparer_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__4 *IffVJRWXMWVnHJdLRJYLVauxgDLkA; struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object___Array *_items; @@ -1065754,17 +1080505,6 @@ struct AList_1_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_Sys struct AList_1_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object___Fields fields; }; -struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object_ { - struct Object *EEIcOLJEdadvUSUztQvSiKbHUvbk; - struct Object *KCmvqxmDPHZcOPAPceRkbTZbUBUm; -}; - -struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object___Boxed { - struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object___Class *klass; - MonitorData *monitor; - struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object_ fields; -}; - struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object___Array { struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object___Array__Class *klass; MonitorData *monitor; @@ -1066169,6 +1080909,17 @@ struct IComparer_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVB struct IComparer_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__1__VTable vtable; }; +struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ { + struct Object *EEIcOLJEdadvUSUztQvSiKbHUvbk; + struct SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo KCmvqxmDPHZcOPAPceRkbTZbUBUm; +}; + +struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Boxed { + struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Class *klass; + MonitorData *monitor; + struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ fields; +}; + struct __declspec(align(8)) AList_1_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Fields { struct IEqualityComparer_1_Rewired_Utils_Classes_Data_IndexedDictionary_2_FYbmlMjlIlcwVBLULgBCtKlNpKieb__5 *IffVJRWXMWVnHJdLRJYLVauxgDLkA; struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Array *_items; @@ -1066188,17 +1080939,6 @@ struct AList_1_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_Sys struct AList_1_IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Fields fields; }; -struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ { - struct Object *EEIcOLJEdadvUSUztQvSiKbHUvbk; - struct SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo KCmvqxmDPHZcOPAPceRkbTZbUBUm; -}; - -struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Boxed { - struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Class *klass; - MonitorData *monitor; - struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo_ fields; -}; - struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Array { struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___Array__Class *klass; MonitorData *monitor; @@ -1067065,6 +1081805,19 @@ struct ARTrackableManager_5_System_Object_System_Object_System_Object_UnityEngin struct ARTrackableManager_5_System_Object_System_Object_System_Object_UnityEngine_XR_ARSubsystems_XRAnchor_System_Object___Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_ { + int32_t hashCode; + int32_t next; + struct TrackableId key; + struct Object *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_XR_ARSubsystems_TrackableId_System_Object___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_XR_ARSubsystems_TrackableId_System_Object___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_XR_ARSubsystems_TrackableId_System_Object___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_XR_ARSubsystems_TrackableId_System_Object___Array *_entries; @@ -1067084,19 +1081837,6 @@ struct Dictionary_2_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_ { struct Dictionary_2_UnityEngine_XR_ARSubsystems_TrackableId_System_Object___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_ { - int32_t hashCode; - int32_t next; - struct TrackableId key; - struct Object *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_XR_ARSubsystems_TrackableId_System_Object___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_XR_ARSubsystems_TrackableId_System_Object___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_XR_ARSubsystems_TrackableId_System_Object_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_XR_ARSubsystems_TrackableId_System_Object___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_XR_ARSubsystems_TrackableId_System_Object___Array__Class *klass; MonitorData *monitor; @@ -1078642,6 +1093382,15 @@ struct Action_9_Object_Object_Object_Object_Object_Object_Object_Object_Object__ struct Action_9_Object_Object_Object_Object_Object_Object_Object_Object_Object___VTable vtable; }; +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_ { +}; + +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object___Boxed { + struct StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object___Class *klass; + MonitorData *monitor; + struct StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_ fields; +}; + struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_System_Object_ { struct VisualElement__Array *elements; struct StylePropertyId__Enum__Array *properties; @@ -1078657,15 +1093406,6 @@ struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSys struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_System_Object_ fields; }; -struct StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_ { -}; - -struct StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object___Boxed { - struct StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object___Class *klass; - MonitorData *monitor; - struct StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_ fields; -}; - struct StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object___Array { struct StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object___Array__Class *klass; MonitorData *monitor; @@ -1078728,21 +1093468,6 @@ struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSys struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object_System_Object___VTable vtable; }; -struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object_ { - struct VisualElement__Array *elements; - struct StylePropertyId__Enum__Array *properties; - struct StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object___Array *timing; - struct StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object___Array *style; - int32_t count; - struct Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ *indices; -}; - -struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object___Boxed { - struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object___Class *klass; - MonitorData *monitor; - struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object_ fields; -}; - struct StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_ { int64_t startTimeMs; int32_t durationMs; @@ -1078759,14 +1093484,6 @@ struct StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object___Boxed struct StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_ fields; }; -struct StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object___Array { - struct StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object___Array__Class *klass; - MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - struct StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_ vector[32]; -}; - struct StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object_ { struct Object *startValue; struct Object *endValue; @@ -1078780,6 +1093497,29 @@ struct StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object___Boxed { struct StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object_ fields; }; +struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object_ { + struct VisualElement__Array *elements; + struct StylePropertyId__Enum__Array *properties; + struct StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object___Array *timing; + struct StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object___Array *style; + int32_t count; + struct Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32_ *indices; +}; + +struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object___Boxed { + struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object___Class *klass; + MonitorData *monitor; + struct StylePropertyAnimationSystem_AnimationDataSet_2_StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object_ fields; +}; + +struct StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object___Array { + struct StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object_ vector[32]; +}; + struct StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object___Array { struct StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object___Array__Class *klass; MonitorData *monitor; @@ -1078969,33 +1093709,71 @@ struct ArrayBuilder_1_System_Object__1__Class { struct ArrayBuilder_1_System_Object__1__VTable vtable; }; +struct IntRect__1__VTable { +}; + +struct IntRect__1__StaticFields { +}; + +struct IntRect__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IntRect__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IntRect__1__VTable vtable; +}; + +struct UInt16__1__VTable { +}; + +struct UInt16__1__StaticFields { +}; + +struct UInt16__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UInt16__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UInt16__1__VTable vtable; +}; + +struct Vector2__1__VTable { +}; + +struct Vector2__1__StaticFields { +}; + +struct Vector2__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Vector2__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Vector2__1__VTable vtable; +}; + +struct BBTree_BBTreeBox___VTable { +}; + +struct BBTree_BBTreeBox___StaticFields { +}; + +struct BBTree_BBTreeBox___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BBTree_BBTreeBox___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BBTree_BBTreeBox___VTable vtable; +}; + struct ArrayPool_1_System_Byte_ { struct ArrayPool_1_System_Byte___Class *klass; MonitorData *monitor; }; -struct __declspec(align(8)) TlsOverPerCoreLockedStacksArrayPool_1_System_Byte___Fields { - struct Int32__Array *_bucketArraySizes; - struct TlsOverPerCoreLockedStacksArrayPool_1_T_PerCoreLockedStacks_System_Byte___Array *_buckets; - int32_t _callbackCreated; -}; - -struct TlsOverPerCoreLockedStacksArrayPool_1_System_Byte_ { - struct TlsOverPerCoreLockedStacksArrayPool_1_System_Byte___Class *klass; - MonitorData *monitor; - struct TlsOverPerCoreLockedStacksArrayPool_1_System_Byte___Fields fields; -}; - -struct __declspec(align(8)) TlsOverPerCoreLockedStacksArrayPool_1_T_PerCoreLockedStacks_System_Byte___Fields { - struct TlsOverPerCoreLockedStacksArrayPool_1_T_LockedStack_System_Byte___Array *_perCoreStacks; -}; - -struct TlsOverPerCoreLockedStacksArrayPool_1_T_PerCoreLockedStacks_System_Byte_ { - struct TlsOverPerCoreLockedStacksArrayPool_1_T_PerCoreLockedStacks_System_Byte___Class *klass; - MonitorData *monitor; - struct TlsOverPerCoreLockedStacksArrayPool_1_T_PerCoreLockedStacks_System_Byte___Fields fields; -}; - struct __declspec(align(8)) TlsOverPerCoreLockedStacksArrayPool_1_T_LockedStack_System_Byte___Fields { struct Byte__Array__Array *_arrays; int32_t _count; @@ -1079008,6 +1093786,28 @@ struct TlsOverPerCoreLockedStacksArrayPool_1_T_LockedStack_System_Byte_ { struct TlsOverPerCoreLockedStacksArrayPool_1_T_LockedStack_System_Byte___Fields fields; }; +struct __declspec(align(8)) TlsOverPerCoreLockedStacksArrayPool_1_T_PerCoreLockedStacks_System_Byte___Fields { + struct TlsOverPerCoreLockedStacksArrayPool_1_T_LockedStack_System_Byte___Array *_perCoreStacks; +}; + +struct TlsOverPerCoreLockedStacksArrayPool_1_T_PerCoreLockedStacks_System_Byte_ { + struct TlsOverPerCoreLockedStacksArrayPool_1_T_PerCoreLockedStacks_System_Byte___Class *klass; + MonitorData *monitor; + struct TlsOverPerCoreLockedStacksArrayPool_1_T_PerCoreLockedStacks_System_Byte___Fields fields; +}; + +struct __declspec(align(8)) TlsOverPerCoreLockedStacksArrayPool_1_System_Byte___Fields { + struct Int32__Array *_bucketArraySizes; + struct TlsOverPerCoreLockedStacksArrayPool_1_T_PerCoreLockedStacks_System_Byte___Array *_buckets; + int32_t _callbackCreated; +}; + +struct TlsOverPerCoreLockedStacksArrayPool_1_System_Byte_ { + struct TlsOverPerCoreLockedStacksArrayPool_1_System_Byte___Class *klass; + MonitorData *monitor; + struct TlsOverPerCoreLockedStacksArrayPool_1_System_Byte___Fields fields; +}; + struct TlsOverPerCoreLockedStacksArrayPool_1_T_LockedStack_System_Byte___Array { struct TlsOverPerCoreLockedStacksArrayPool_1_T_LockedStack_System_Byte___Array__Class *klass; MonitorData *monitor; @@ -1079197,16 +1093997,16 @@ struct ArrayPool_1_System_Char_ { MonitorData *monitor; }; -struct __declspec(align(8)) TlsOverPerCoreLockedStacksArrayPool_1_System_Char___Fields { - struct Int32__Array *_bucketArraySizes; - struct TlsOverPerCoreLockedStacksArrayPool_1_T_PerCoreLockedStacks_System_Char___Array *_buckets; - int32_t _callbackCreated; +struct __declspec(align(8)) TlsOverPerCoreLockedStacksArrayPool_1_T_LockedStack_System_Char___Fields { + struct Char__Array__Array *_arrays; + int32_t _count; + uint32_t _firstStackItemMS; }; -struct TlsOverPerCoreLockedStacksArrayPool_1_System_Char_ { - struct TlsOverPerCoreLockedStacksArrayPool_1_System_Char___Class *klass; +struct TlsOverPerCoreLockedStacksArrayPool_1_T_LockedStack_System_Char_ { + struct TlsOverPerCoreLockedStacksArrayPool_1_T_LockedStack_System_Char___Class *klass; MonitorData *monitor; - struct TlsOverPerCoreLockedStacksArrayPool_1_System_Char___Fields fields; + struct TlsOverPerCoreLockedStacksArrayPool_1_T_LockedStack_System_Char___Fields fields; }; struct __declspec(align(8)) TlsOverPerCoreLockedStacksArrayPool_1_T_PerCoreLockedStacks_System_Char___Fields { @@ -1079219,16 +1094019,16 @@ struct TlsOverPerCoreLockedStacksArrayPool_1_T_PerCoreLockedStacks_System_Char_ struct TlsOverPerCoreLockedStacksArrayPool_1_T_PerCoreLockedStacks_System_Char___Fields fields; }; -struct __declspec(align(8)) TlsOverPerCoreLockedStacksArrayPool_1_T_LockedStack_System_Char___Fields { - struct Char__Array__Array *_arrays; - int32_t _count; - uint32_t _firstStackItemMS; +struct __declspec(align(8)) TlsOverPerCoreLockedStacksArrayPool_1_System_Char___Fields { + struct Int32__Array *_bucketArraySizes; + struct TlsOverPerCoreLockedStacksArrayPool_1_T_PerCoreLockedStacks_System_Char___Array *_buckets; + int32_t _callbackCreated; }; -struct TlsOverPerCoreLockedStacksArrayPool_1_T_LockedStack_System_Char_ { - struct TlsOverPerCoreLockedStacksArrayPool_1_T_LockedStack_System_Char___Class *klass; +struct TlsOverPerCoreLockedStacksArrayPool_1_System_Char_ { + struct TlsOverPerCoreLockedStacksArrayPool_1_System_Char___Class *klass; MonitorData *monitor; - struct TlsOverPerCoreLockedStacksArrayPool_1_T_LockedStack_System_Char___Fields fields; + struct TlsOverPerCoreLockedStacksArrayPool_1_System_Char___Fields fields; }; struct Char__Array__Array { @@ -1079443,16 +1094243,16 @@ struct ArrayPool_1_System_Int32__1 { MonitorData *monitor; }; -struct __declspec(align(8)) TlsOverPerCoreLockedStacksArrayPool_1_System_Int32___Fields { - struct Int32__Array *_bucketArraySizes; - struct TlsOverPerCoreLockedStacksArrayPool_1_T_PerCoreLockedStacks_System_Int32___Array *_buckets; - int32_t _callbackCreated; +struct __declspec(align(8)) TlsOverPerCoreLockedStacksArrayPool_1_T_LockedStack_System_Int32___Fields { + struct Int32__Array__Array *_arrays; + int32_t _count; + uint32_t _firstStackItemMS; }; -struct TlsOverPerCoreLockedStacksArrayPool_1_System_Int32_ { - struct TlsOverPerCoreLockedStacksArrayPool_1_System_Int32___Class *klass; +struct TlsOverPerCoreLockedStacksArrayPool_1_T_LockedStack_System_Int32_ { + struct TlsOverPerCoreLockedStacksArrayPool_1_T_LockedStack_System_Int32___Class *klass; MonitorData *monitor; - struct TlsOverPerCoreLockedStacksArrayPool_1_System_Int32___Fields fields; + struct TlsOverPerCoreLockedStacksArrayPool_1_T_LockedStack_System_Int32___Fields fields; }; struct __declspec(align(8)) TlsOverPerCoreLockedStacksArrayPool_1_T_PerCoreLockedStacks_System_Int32___Fields { @@ -1079465,16 +1094265,16 @@ struct TlsOverPerCoreLockedStacksArrayPool_1_T_PerCoreLockedStacks_System_Int32_ struct TlsOverPerCoreLockedStacksArrayPool_1_T_PerCoreLockedStacks_System_Int32___Fields fields; }; -struct __declspec(align(8)) TlsOverPerCoreLockedStacksArrayPool_1_T_LockedStack_System_Int32___Fields { - struct Int32__Array__Array *_arrays; - int32_t _count; - uint32_t _firstStackItemMS; +struct __declspec(align(8)) TlsOverPerCoreLockedStacksArrayPool_1_System_Int32___Fields { + struct Int32__Array *_bucketArraySizes; + struct TlsOverPerCoreLockedStacksArrayPool_1_T_PerCoreLockedStacks_System_Int32___Array *_buckets; + int32_t _callbackCreated; }; -struct TlsOverPerCoreLockedStacksArrayPool_1_T_LockedStack_System_Int32_ { - struct TlsOverPerCoreLockedStacksArrayPool_1_T_LockedStack_System_Int32___Class *klass; +struct TlsOverPerCoreLockedStacksArrayPool_1_System_Int32_ { + struct TlsOverPerCoreLockedStacksArrayPool_1_System_Int32___Class *klass; MonitorData *monitor; - struct TlsOverPerCoreLockedStacksArrayPool_1_T_LockedStack_System_Int32___Fields fields; + struct TlsOverPerCoreLockedStacksArrayPool_1_System_Int32___Fields fields; }; struct TlsOverPerCoreLockedStacksArrayPool_1_T_LockedStack_System_Int32___Array { @@ -1079666,16 +1094466,16 @@ struct ArrayPool_1_System_Object__1 { MonitorData *monitor; }; -struct __declspec(align(8)) TlsOverPerCoreLockedStacksArrayPool_1_System_Object___Fields { - struct Int32__Array *_bucketArraySizes; - struct TlsOverPerCoreLockedStacksArrayPool_1_T_PerCoreLockedStacks_System_Object___Array *_buckets; - int32_t _callbackCreated; +struct __declspec(align(8)) TlsOverPerCoreLockedStacksArrayPool_1_T_LockedStack_System_Object___Fields { + struct Object__Array__Array *_arrays; + int32_t _count; + uint32_t _firstStackItemMS; }; -struct TlsOverPerCoreLockedStacksArrayPool_1_System_Object_ { - struct TlsOverPerCoreLockedStacksArrayPool_1_System_Object___Class *klass; +struct TlsOverPerCoreLockedStacksArrayPool_1_T_LockedStack_System_Object_ { + struct TlsOverPerCoreLockedStacksArrayPool_1_T_LockedStack_System_Object___Class *klass; MonitorData *monitor; - struct TlsOverPerCoreLockedStacksArrayPool_1_System_Object___Fields fields; + struct TlsOverPerCoreLockedStacksArrayPool_1_T_LockedStack_System_Object___Fields fields; }; struct __declspec(align(8)) TlsOverPerCoreLockedStacksArrayPool_1_T_PerCoreLockedStacks_System_Object___Fields { @@ -1079688,16 +1094488,16 @@ struct TlsOverPerCoreLockedStacksArrayPool_1_T_PerCoreLockedStacks_System_Object struct TlsOverPerCoreLockedStacksArrayPool_1_T_PerCoreLockedStacks_System_Object___Fields fields; }; -struct __declspec(align(8)) TlsOverPerCoreLockedStacksArrayPool_1_T_LockedStack_System_Object___Fields { - struct Object__Array__Array *_arrays; - int32_t _count; - uint32_t _firstStackItemMS; +struct __declspec(align(8)) TlsOverPerCoreLockedStacksArrayPool_1_System_Object___Fields { + struct Int32__Array *_bucketArraySizes; + struct TlsOverPerCoreLockedStacksArrayPool_1_T_PerCoreLockedStacks_System_Object___Array *_buckets; + int32_t _callbackCreated; }; -struct TlsOverPerCoreLockedStacksArrayPool_1_T_LockedStack_System_Object_ { - struct TlsOverPerCoreLockedStacksArrayPool_1_T_LockedStack_System_Object___Class *klass; +struct TlsOverPerCoreLockedStacksArrayPool_1_System_Object_ { + struct TlsOverPerCoreLockedStacksArrayPool_1_System_Object___Class *klass; MonitorData *monitor; - struct TlsOverPerCoreLockedStacksArrayPool_1_T_LockedStack_System_Object___Fields fields; + struct TlsOverPerCoreLockedStacksArrayPool_1_System_Object___Fields fields; }; struct Object__Array__Array { @@ -1099881,6 +1114681,66 @@ struct AsyncLocal_1_System_Object___Class { struct AsyncLocal_1_System_Object___VTable vtable; }; +struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32__1__VTable { +}; + +struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32__1__StaticFields { +}; + +struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Int32__1__VTable vtable; +}; + +struct AsyncProtocolRequest_InnerRead_d_25___VTable { +}; + +struct AsyncProtocolRequest_InnerRead_d_25___StaticFields { +}; + +struct AsyncProtocolRequest_InnerRead_d_25___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct AsyncProtocolRequest_InnerRead_d_25___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct AsyncProtocolRequest_InnerRead_d_25___VTable vtable; +}; + +struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object__1__VTable { +}; + +struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object__1__StaticFields { +}; + +struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Object__1__VTable vtable; +}; + +struct WebCompletionSource_1_T_WaitForCompletion_d_15_System_ValueTuple_2__1__VTable { +}; + +struct WebCompletionSource_1_T_WaitForCompletion_d_15_System_ValueTuple_2__1__StaticFields { +}; + +struct WebCompletionSource_1_T_WaitForCompletion_d_15_System_ValueTuple_2__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct WebCompletionSource_1_T_WaitForCompletion_d_15_System_ValueTuple_2__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct WebCompletionSource_1_T_WaitForCompletion_d_15_System_ValueTuple_2__1__VTable vtable; +}; + struct AsyncTaskMethodBuilder_1_System_ValueTuple_3__1 { struct AsyncMethodBuilderCore m_coreState; struct Task_1_System_ValueTuple_3__1 *m_task; @@ -1099912,6 +1114772,21 @@ struct AsyncTaskMethodBuilder_1_System_ValueTuple_3__1__Class { struct AsyncTaskMethodBuilder_1_System_ValueTuple_3__1__VTable vtable; }; +struct WebConnectionTunnel_ReadHeaders_d_43___VTable { +}; + +struct WebConnectionTunnel_ReadHeaders_d_43___StaticFields { +}; + +struct WebConnectionTunnel_ReadHeaders_d_43___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct WebConnectionTunnel_ReadHeaders_d_43___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct WebConnectionTunnel_ReadHeaders_d_43___VTable vtable; +}; + struct AsyncTaskMethodBuilder_1_System_ValueTuple_5__1 { struct AsyncMethodBuilderCore m_coreState; struct Task_1_System_ValueTuple_5__1 *m_task; @@ -1099943,6 +1114818,306 @@ struct AsyncTaskMethodBuilder_1_System_ValueTuple_5__1__Class { struct AsyncTaskMethodBuilder_1_System_ValueTuple_5__1__VTable vtable; }; +struct HttpWebRequest_GetResponseFromData_d_244___VTable { +}; + +struct HttpWebRequest_GetResponseFromData_d_244___StaticFields { +}; + +struct HttpWebRequest_GetResponseFromData_d_244___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HttpWebRequest_GetResponseFromData_d_244___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HttpWebRequest_GetResponseFromData_d_244___VTable vtable; +}; + +struct ConfiguredTaskAwaitable_ConfiguredTaskAwaiter___VTable { +}; + +struct ConfiguredTaskAwaitable_ConfiguredTaskAwaiter___StaticFields { +}; + +struct ConfiguredTaskAwaitable_ConfiguredTaskAwaiter___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ConfiguredTaskAwaitable_ConfiguredTaskAwaiter___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ConfiguredTaskAwaitable_ConfiguredTaskAwaiter___VTable vtable; +}; + +struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Boolean__1__VTable { +}; + +struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Boolean__1__StaticFields { +}; + +struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Boolean__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Boolean__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Boolean__1__VTable vtable; +}; + +struct SemaphoreSlim_WaitUntilCountOrTimeoutAsync_d_32___VTable { +}; + +struct SemaphoreSlim_WaitUntilCountOrTimeoutAsync_d_32___StaticFields { +}; + +struct SemaphoreSlim_WaitUntilCountOrTimeoutAsync_d_32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SemaphoreSlim_WaitUntilCountOrTimeoutAsync_d_32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SemaphoreSlim_WaitUntilCountOrTimeoutAsync_d_32___VTable vtable; +}; + +struct ServicePointScheduler_WaitAsync_d_46___VTable { +}; + +struct ServicePointScheduler_WaitAsync_d_46___StaticFields { +}; + +struct ServicePointScheduler_WaitAsync_d_46___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ServicePointScheduler_WaitAsync_d_46___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ServicePointScheduler_WaitAsync_d_46___VTable vtable; +}; + +struct WebConnection_CreateStream_d_18___VTable { +}; + +struct WebConnection_CreateStream_d_18___StaticFields { +}; + +struct WebConnection_CreateStream_d_18___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct WebConnection_CreateStream_d_18___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct WebConnection_CreateStream_d_18___VTable vtable; +}; + +struct HttpWebRequest_RunWithTimeoutWorker_d_241_1_System_Int32__1__VTable { +}; + +struct HttpWebRequest_RunWithTimeoutWorker_d_241_1_System_Int32__1__StaticFields { +}; + +struct HttpWebRequest_RunWithTimeoutWorker_d_241_1_System_Int32__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HttpWebRequest_RunWithTimeoutWorker_d_241_1_System_Int32__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HttpWebRequest_RunWithTimeoutWorker_d_241_1_System_Int32__1__VTable vtable; +}; + +struct BufferedReadStream_ProcessReadAsync_d_2___VTable { +}; + +struct BufferedReadStream_ProcessReadAsync_d_2___StaticFields { +}; + +struct BufferedReadStream_ProcessReadAsync_d_2___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BufferedReadStream_ProcessReadAsync_d_2___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BufferedReadStream_ProcessReadAsync_d_2___VTable vtable; +}; + +struct FixedSizeReadStream_ProcessReadAsync_d_5___VTable { +}; + +struct FixedSizeReadStream_ProcessReadAsync_d_5___StaticFields { +}; + +struct FixedSizeReadStream_ProcessReadAsync_d_5___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct FixedSizeReadStream_ProcessReadAsync_d_5___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct FixedSizeReadStream_ProcessReadAsync_d_5___VTable vtable; +}; + +struct MobileAuthenticatedStream_InnerRead_d_66___VTable { +}; + +struct MobileAuthenticatedStream_InnerRead_d_66___StaticFields { +}; + +struct MobileAuthenticatedStream_InnerRead_d_66___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MobileAuthenticatedStream_InnerRead_d_66___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MobileAuthenticatedStream_InnerRead_d_66___VTable vtable; +}; + +struct MonoChunkStream_ProcessReadAsync_d_7___VTable { +}; + +struct MonoChunkStream_ProcessReadAsync_d_7___StaticFields { +}; + +struct MonoChunkStream_ProcessReadAsync_d_7___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MonoChunkStream_ProcessReadAsync_d_7___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MonoChunkStream_ProcessReadAsync_d_7___VTable vtable; +}; + +struct Stream_ReadAsync_g_FinishReadAsync_44_0_d___VTable { +}; + +struct Stream_ReadAsync_g_FinishReadAsync_44_0_d___StaticFields { +}; + +struct Stream_ReadAsync_g_FinishReadAsync_44_0_d___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Stream_ReadAsync_g_FinishReadAsync_44_0_d___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Stream_ReadAsync_g_FinishReadAsync_44_0_d___VTable vtable; +}; + +struct WebReadStream_ReadAsync_d_28___VTable { +}; + +struct WebReadStream_ReadAsync_d_28___StaticFields { +}; + +struct WebReadStream_ReadAsync_d_28___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct WebReadStream_ReadAsync_d_28___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct WebReadStream_ReadAsync_d_28___VTable vtable; +}; + +struct WebResponseStream_ReadAsync_d_40___VTable { +}; + +struct WebResponseStream_ReadAsync_d_40___StaticFields { +}; + +struct WebResponseStream_ReadAsync_d_40___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct WebResponseStream_ReadAsync_d_40___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct WebResponseStream_ReadAsync_d_40___VTable vtable; +}; + +struct MobileAuthenticatedStream_StartOperation_d_57___VTable { +}; + +struct MobileAuthenticatedStream_StartOperation_d_57___StaticFields { +}; + +struct MobileAuthenticatedStream_StartOperation_d_57___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MobileAuthenticatedStream_StartOperation_d_57___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MobileAuthenticatedStream_StartOperation_d_57___VTable vtable; +}; + +struct TaskAwaiter_1_System_Int32__1__VTable { +}; + +struct TaskAwaiter_1_System_Int32__1__StaticFields { +}; + +struct TaskAwaiter_1_System_Int32__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TaskAwaiter_1_System_Int32__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TaskAwaiter_1_System_Int32__1__VTable vtable; +}; + +struct CryptoStream_ReadAsyncInternal_d_37___VTable { +}; + +struct CryptoStream_ReadAsyncInternal_d_37___StaticFields { +}; + +struct CryptoStream_ReadAsyncInternal_d_37___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CryptoStream_ReadAsyncInternal_d_37___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CryptoStream_ReadAsyncInternal_d_37___VTable vtable; +}; + +struct ValueTaskAwaiter_1_System_Int32__1__VTable { +}; + +struct ValueTaskAwaiter_1_System_Int32__1__StaticFields { +}; + +struct ValueTaskAwaiter_1_System_Int32__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ValueTaskAwaiter_1_System_Int32__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ValueTaskAwaiter_1_System_Int32__1__VTable vtable; +}; + +struct CryptoStream_ReadAsyncCore_d_42___VTable { +}; + +struct CryptoStream_ReadAsyncCore_d_42___StaticFields { +}; + +struct CryptoStream_ReadAsyncCore_d_42___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CryptoStream_ReadAsyncCore_d_42___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CryptoStream_ReadAsyncCore_d_42___VTable vtable; +}; + +struct ForceAsyncAwaiter___VTable { +}; + +struct ForceAsyncAwaiter___StaticFields { +}; + +struct ForceAsyncAwaiter___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ForceAsyncAwaiter___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ForceAsyncAwaiter___VTable vtable; +}; + struct AsyncTaskMethodBuilder_1_System_Int32Enum_ { struct AsyncMethodBuilderCore m_coreState; struct Task_1_System_Int32Enum_ *m_task; @@ -1099974,6 +1115149,51 @@ struct AsyncTaskMethodBuilder_1_System_Int32Enum___Class { struct AsyncTaskMethodBuilder_1_System_Int32Enum___VTable vtable; }; +struct TaskAwaiter___VTable { +}; + +struct TaskAwaiter___StaticFields { +}; + +struct TaskAwaiter___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TaskAwaiter___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TaskAwaiter___VTable vtable; +}; + +struct AnchorTransferBatch_ExportAsync_d_7___VTable { +}; + +struct AnchorTransferBatch_ExportAsync_d_7___StaticFields { +}; + +struct AnchorTransferBatch_ExportAsync_d_7___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct AnchorTransferBatch_ExportAsync_d_7___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct AnchorTransferBatch_ExportAsync_d_7___VTable vtable; +}; + +struct AnchorTransferBatch_ImportAsync_d_8___VTable { +}; + +struct AnchorTransferBatch_ImportAsync_d_8___StaticFields { +}; + +struct AnchorTransferBatch_ImportAsync_d_8___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct AnchorTransferBatch_ImportAsync_d_8___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct AnchorTransferBatch_ImportAsync_d_8___VTable vtable; +}; + struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_5__1 { struct Task_1_System_ValueTuple_5__1 *m_task; bool m_continueOnCapturedContext; @@ -1100005,6 +1115225,216 @@ struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_5__1__VTable vtable; }; +struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_5__2__VTable { +}; + +struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_5__2__StaticFields { +}; + +struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_5__2__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_5__2__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_5__2__VTable vtable; +}; + +struct HttpWebRequest_MyGetResponseAsync_d_243___VTable { +}; + +struct HttpWebRequest_MyGetResponseAsync_d_243___StaticFields { +}; + +struct HttpWebRequest_MyGetResponseAsync_d_243___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HttpWebRequest_MyGetResponseAsync_d_243___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HttpWebRequest_MyGetResponseAsync_d_243___VTable vtable; +}; + +struct HttpWebRequest_RunWithTimeoutWorker_d_241_1_System_Object__1__VTable { +}; + +struct HttpWebRequest_RunWithTimeoutWorker_d_241_1_System_Object__1__StaticFields { +}; + +struct HttpWebRequest_RunWithTimeoutWorker_d_241_1_System_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HttpWebRequest_RunWithTimeoutWorker_d_241_1_System_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HttpWebRequest_RunWithTimeoutWorker_d_241_1_System_Object__1__VTable vtable; +}; + +struct WebConnection_InitConnection_d_19___VTable { +}; + +struct WebConnection_InitConnection_d_19___StaticFields { +}; + +struct WebConnection_InitConnection_d_19___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct WebConnection_InitConnection_d_19___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct WebConnection_InitConnection_d_19___VTable vtable; +}; + +struct WebResponseStream_ReadAllAsyncInner_d_47___VTable { +}; + +struct WebResponseStream_ReadAllAsyncInner_d_47___StaticFields { +}; + +struct WebResponseStream_ReadAllAsyncInner_d_47___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct WebResponseStream_ReadAllAsyncInner_d_47___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct WebResponseStream_ReadAllAsyncInner_d_47___VTable vtable; +}; + +struct WebSocketHandle_ReadResponseHeaderLineAsync_d_32___VTable { +}; + +struct WebSocketHandle_ReadResponseHeaderLineAsync_d_32___StaticFields { +}; + +struct WebSocketHandle_ReadResponseHeaderLineAsync_d_32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct WebSocketHandle_ReadResponseHeaderLineAsync_d_32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct WebSocketHandle_ReadResponseHeaderLineAsync_d_32___VTable vtable; +}; + +struct WebCompletionSource_1_T_WaitForCompletion_d_15_System_Object__1__VTable { +}; + +struct WebCompletionSource_1_T_WaitForCompletion_d_15_System_Object__1__StaticFields { +}; + +struct WebCompletionSource_1_T_WaitForCompletion_d_15_System_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct WebCompletionSource_1_T_WaitForCompletion_d_15_System_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct WebCompletionSource_1_T_WaitForCompletion_d_15_System_Object__1__VTable vtable; +}; + +struct WebOperation_GetRequestStream_d_50___VTable { +}; + +struct WebOperation_GetRequestStream_d_50___StaticFields { +}; + +struct WebOperation_GetRequestStream_d_50___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct WebOperation_GetRequestStream_d_50___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct WebOperation_GetRequestStream_d_50___VTable vtable; +}; + +struct WebSocketHandle_ConnectSocketAsync_d_27___VTable { +}; + +struct WebSocketHandle_ConnectSocketAsync_d_27___StaticFields { +}; + +struct WebSocketHandle_ConnectSocketAsync_d_27___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct WebSocketHandle_ConnectSocketAsync_d_27___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct WebSocketHandle_ConnectSocketAsync_d_27___VTable vtable; +}; + +struct WebSocketHandle_ParseAndValidateConnectResponseAsync_d_30___VTable { +}; + +struct WebSocketHandle_ParseAndValidateConnectResponseAsync_d_30___StaticFields { +}; + +struct WebSocketHandle_ParseAndValidateConnectResponseAsync_d_30___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct WebSocketHandle_ParseAndValidateConnectResponseAsync_d_30___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct WebSocketHandle_ParseAndValidateConnectResponseAsync_d_30___VTable vtable; +}; + +struct XmlDownloadManager_GetNonFileStreamAsync_d_5___VTable { +}; + +struct XmlDownloadManager_GetNonFileStreamAsync_d_5___StaticFields { +}; + +struct XmlDownloadManager_GetNonFileStreamAsync_d_5___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct XmlDownloadManager_GetNonFileStreamAsync_d_5___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct XmlDownloadManager_GetNonFileStreamAsync_d_5___VTable vtable; +}; + +struct XmlUrlResolver_GetEntityAsync_d_15___VTable { +}; + +struct XmlUrlResolver_GetEntityAsync_d_15___StaticFields { +}; + +struct XmlUrlResolver_GetEntityAsync_d_15___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct XmlUrlResolver_GetEntityAsync_d_15___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct XmlUrlResolver_GetEntityAsync_d_15___VTable vtable; +}; + +struct ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Int32__1__VTable { +}; + +struct ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Int32__1__StaticFields { +}; + +struct ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Int32__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Int32__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ConfiguredValueTaskAwaitable_1_TResult_ConfiguredValueTaskAwaiter_System_Int32__1__VTable vtable; +}; + +struct ManagedWebSocket_ReceiveAsyncPrivate_d_61_2_ManagedWebSocket_WebSocketReceiveResultGetter_System_Object__1__VTable { +}; + +struct ManagedWebSocket_ReceiveAsyncPrivate_d_61_2_ManagedWebSocket_WebSocketReceiveResultGetter_System_Object__1__StaticFields { +}; + +struct ManagedWebSocket_ReceiveAsyncPrivate_d_61_2_ManagedWebSocket_WebSocketReceiveResultGetter_System_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ManagedWebSocket_ReceiveAsyncPrivate_d_61_2_ManagedWebSocket_WebSocketReceiveResultGetter_System_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ManagedWebSocket_ReceiveAsyncPrivate_d_61_2_ManagedWebSocket_WebSocketReceiveResultGetter_System_Object__1__VTable vtable; +}; + struct TaskAwaiter_1_System_Int32Enum_ { struct Task_1_System_Int32Enum_ *m_task; }; @@ -1100035,6 +1115465,51 @@ struct TaskAwaiter_1_System_Int32Enum___Class { struct TaskAwaiter_1_System_Int32Enum___VTable vtable; }; +struct TaskAwaiter_1_System_Int32Enum__1__VTable { +}; + +struct TaskAwaiter_1_System_Int32Enum__1__StaticFields { +}; + +struct TaskAwaiter_1_System_Int32Enum__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TaskAwaiter_1_System_Int32Enum__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TaskAwaiter_1_System_Int32Enum__1__VTable vtable; +}; + +struct XRAnchorTransferBatch_ExportAsync_d_10___VTable { +}; + +struct XRAnchorTransferBatch_ExportAsync_d_10___StaticFields { +}; + +struct XRAnchorTransferBatch_ExportAsync_d_10___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct XRAnchorTransferBatch_ExportAsync_d_10___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct XRAnchorTransferBatch_ExportAsync_d_10___VTable vtable; +}; + +struct XRAnchorTransferBatch_ImportAsync_d_11___VTable { +}; + +struct XRAnchorTransferBatch_ImportAsync_d_11___StaticFields { +}; + +struct XRAnchorTransferBatch_ImportAsync_d_11___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct XRAnchorTransferBatch_ImportAsync_d_11___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct XRAnchorTransferBatch_ImportAsync_d_11___VTable vtable; +}; + struct TaskAwaiter_1_System_Object_ { struct Task_1_System_Object_ *m_task; }; @@ -1100065,6 +1115540,156 @@ struct TaskAwaiter_1_System_Object___Class { struct TaskAwaiter_1_System_Object___VTable vtable; }; +struct TaskAwaiter_1_System_Object__1__VTable { +}; + +struct TaskAwaiter_1_System_Object__1__StaticFields { +}; + +struct TaskAwaiter_1_System_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TaskAwaiter_1_System_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TaskAwaiter_1_System_Object__1__VTable vtable; +}; + +struct XRAnchorStore_LoadAnchorStoreAsync_d_7___VTable { +}; + +struct XRAnchorStore_LoadAnchorStoreAsync_d_7___StaticFields { +}; + +struct XRAnchorStore_LoadAnchorStoreAsync_d_7___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct XRAnchorStore_LoadAnchorStoreAsync_d_7___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct XRAnchorStore_LoadAnchorStoreAsync_d_7___VTable vtable; +}; + +struct XRAnchorStore_LoadAsync_d_6___VTable { +}; + +struct XRAnchorStore_LoadAsync_d_6___StaticFields { +}; + +struct XRAnchorStore_LoadAsync_d_6___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct XRAnchorStore_LoadAsync_d_6___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct XRAnchorStore_LoadAsync_d_6___VTable vtable; +}; + +struct WebClient_GetWebResponseTaskAsync_d_112___VTable { +}; + +struct WebClient_GetWebResponseTaskAsync_d_112___StaticFields { +}; + +struct WebClient_GetWebResponseTaskAsync_d_112___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct WebClient_GetWebResponseTaskAsync_d_112___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct WebClient_GetWebResponseTaskAsync_d_112___VTable vtable; +}; + +struct AsyncProtocolRequest_StartOperation_d_23___VTable { +}; + +struct AsyncProtocolRequest_StartOperation_d_23___StaticFields { +}; + +struct AsyncProtocolRequest_StartOperation_d_23___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct AsyncProtocolRequest_StartOperation_d_23___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct AsyncProtocolRequest_StartOperation_d_23___VTable vtable; +}; + +struct HttpWebRequest_GetRewriteHandler_b_271_0_d___VTable { +}; + +struct HttpWebRequest_GetRewriteHandler_b_271_0_d___StaticFields { +}; + +struct HttpWebRequest_GetRewriteHandler_b_271_0_d___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HttpWebRequest_GetRewriteHandler_b_271_0_d___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HttpWebRequest_GetRewriteHandler_b_271_0_d___VTable vtable; +}; + +struct MonoTlsStream_CreateStream_d_18___VTable { +}; + +struct MonoTlsStream_CreateStream_d_18___StaticFields { +}; + +struct MonoTlsStream_CreateStream_d_18___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MonoTlsStream_CreateStream_d_18___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MonoTlsStream_CreateStream_d_18___VTable vtable; +}; + +struct WebSocket_ReceiveAsync_d_14___VTable { +}; + +struct WebSocket_ReceiveAsync_d_14___StaticFields { +}; + +struct WebSocket_ReceiveAsync_d_14___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct WebSocket_ReceiveAsync_d_14___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct WebSocket_ReceiveAsync_d_14___VTable vtable; +}; + +struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Nullable_1__1__VTable { +}; + +struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Nullable_1__1__StaticFields { +}; + +struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Nullable_1__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Nullable_1__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Nullable_1__1__VTable vtable; +}; + +struct AsyncProtocolRequest_ProcessOperation_d_24___VTable { +}; + +struct AsyncProtocolRequest_ProcessOperation_d_24___StaticFields { +}; + +struct AsyncProtocolRequest_ProcessOperation_d_24___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct AsyncProtocolRequest_ProcessOperation_d_24___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct AsyncProtocolRequest_ProcessOperation_d_24___VTable vtable; +}; + struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_3__1 { struct Task_1_System_ValueTuple_3__1 *m_task; bool m_continueOnCapturedContext; @@ -1100096,6 +1115721,546 @@ struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_3__1__VTable vtable; }; +struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_3__2__VTable { +}; + +struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_3__2__StaticFields { +}; + +struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_3__2__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_3__2__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_3__2__VTable vtable; +}; + +struct WebConnectionTunnel_Initialize_d_42___VTable { +}; + +struct WebConnectionTunnel_Initialize_d_42___StaticFields { +}; + +struct WebConnectionTunnel_Initialize_d_42___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct WebConnectionTunnel_Initialize_d_42___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct WebConnectionTunnel_Initialize_d_42___VTable vtable; +}; + +struct MonoChunkStream_FinishReading_d_8___VTable { +}; + +struct MonoChunkStream_FinishReading_d_8___StaticFields { +}; + +struct MonoChunkStream_FinishReading_d_8___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MonoChunkStream_FinishReading_d_8___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MonoChunkStream_FinishReading_d_8___VTable vtable; +}; + +struct WebResponseStream_InitReadAsync_d_52___VTable { +}; + +struct WebResponseStream_InitReadAsync_d_52___StaticFields { +}; + +struct WebResponseStream_InitReadAsync_d_52___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct WebResponseStream_InitReadAsync_d_52___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct WebResponseStream_InitReadAsync_d_52___VTable vtable; +}; + +struct MobileAuthenticatedStream_ProcessAuthentication_d_48___VTable { +}; + +struct MobileAuthenticatedStream_ProcessAuthentication_d_48___StaticFields { +}; + +struct MobileAuthenticatedStream_ProcessAuthentication_d_48___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MobileAuthenticatedStream_ProcessAuthentication_d_48___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MobileAuthenticatedStream_ProcessAuthentication_d_48___VTable vtable; +}; + +struct ServicePointScheduler_RunScheduler_d_32___VTable { +}; + +struct ServicePointScheduler_RunScheduler_d_32___StaticFields { +}; + +struct ServicePointScheduler_RunScheduler_d_32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ServicePointScheduler_RunScheduler_d_32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ServicePointScheduler_RunScheduler_d_32___VTable vtable; +}; + +struct WebRequestStream_WriteChunkTrailer_d_40___VTable { +}; + +struct WebRequestStream_WriteChunkTrailer_d_40___StaticFields { +}; + +struct WebRequestStream_WriteChunkTrailer_d_40___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct WebRequestStream_WriteChunkTrailer_d_40___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct WebRequestStream_WriteChunkTrailer_d_40___VTable vtable; +}; + +struct WebResponseStream_ReadAllAsync_d_48___VTable { +}; + +struct WebResponseStream_ReadAllAsync_d_48___StaticFields { +}; + +struct WebResponseStream_ReadAllAsync_d_48___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct WebResponseStream_ReadAllAsync_d_48___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct WebResponseStream_ReadAllAsync_d_48___VTable vtable; +}; + +struct WebSocketHandle_ConnectAsyncCore_d_26___VTable { +}; + +struct WebSocketHandle_ConnectAsyncCore_d_26___StaticFields { +}; + +struct WebSocketHandle_ConnectAsyncCore_d_26___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct WebSocketHandle_ConnectAsyncCore_d_26___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct WebSocketHandle_ConnectAsyncCore_d_26___VTable vtable; +}; + +struct ManagedWebSocket_EnsureBufferContainsAsync_d_71___VTable { +}; + +struct ManagedWebSocket_EnsureBufferContainsAsync_d_71___StaticFields { +}; + +struct ManagedWebSocket_EnsureBufferContainsAsync_d_71___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ManagedWebSocket_EnsureBufferContainsAsync_d_71___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ManagedWebSocket_EnsureBufferContainsAsync_d_71___VTable vtable; +}; + +struct ManagedWebSocket_WaitForServerToCloseConnectionAsync_d_63___VTable { +}; + +struct ManagedWebSocket_WaitForServerToCloseConnectionAsync_d_63___StaticFields { +}; + +struct ManagedWebSocket_WaitForServerToCloseConnectionAsync_d_63___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ManagedWebSocket_WaitForServerToCloseConnectionAsync_d_63___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ManagedWebSocket_WaitForServerToCloseConnectionAsync_d_63___VTable vtable; +}; + +struct Stream_CopyToAsyncInternal_d_28___VTable { +}; + +struct Stream_CopyToAsyncInternal_d_28___StaticFields { +}; + +struct Stream_CopyToAsyncInternal_d_28___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Stream_CopyToAsyncInternal_d_28___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Stream_CopyToAsyncInternal_d_28___VTable vtable; +}; + +struct CryptoStream_WriteAsyncInternal_d_46___VTable { +}; + +struct CryptoStream_WriteAsyncInternal_d_46___StaticFields { +}; + +struct CryptoStream_WriteAsyncInternal_d_46___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CryptoStream_WriteAsyncInternal_d_46___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CryptoStream_WriteAsyncInternal_d_46___VTable vtable; +}; + +struct BoltCore_ShutdownProcedure_d_107___VTable { +}; + +struct BoltCore_ShutdownProcedure_d_107___StaticFields { +}; + +struct BoltCore_ShutdownProcedure_d_107___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltCore_ShutdownProcedure_d_107___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltCore_ShutdownProcedure_d_107___VTable vtable; +}; + +struct WebRequestStream_Initialize_d_36___VTable { +}; + +struct WebRequestStream_Initialize_d_36___StaticFields { +}; + +struct WebRequestStream_Initialize_d_36___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct WebRequestStream_Initialize_d_36___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct WebRequestStream_Initialize_d_36___VTable vtable; +}; + +struct WebRequestStream_WriteAsyncInner_d_33___VTable { +}; + +struct WebRequestStream_WriteAsyncInner_d_33___StaticFields { +}; + +struct WebRequestStream_WriteAsyncInner_d_33___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct WebRequestStream_WriteAsyncInner_d_33___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct WebRequestStream_WriteAsyncInner_d_33___VTable vtable; +}; + +struct WebRequestStream_WriteRequestAsync_d_38___VTable { +}; + +struct WebRequestStream_WriteRequestAsync_d_38___StaticFields { +}; + +struct WebRequestStream_WriteRequestAsync_d_38___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct WebRequestStream_WriteRequestAsync_d_38___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct WebRequestStream_WriteRequestAsync_d_38___VTable vtable; +}; + +struct ValueTaskAwaiter___VTable { +}; + +struct ValueTaskAwaiter___StaticFields { +}; + +struct ValueTaskAwaiter___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ValueTaskAwaiter___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ValueTaskAwaiter___VTable vtable; +}; + +struct CryptoStream_WriteAsyncCore_d_49___VTable { +}; + +struct CryptoStream_WriteAsyncCore_d_49___StaticFields { +}; + +struct CryptoStream_WriteAsyncCore_d_49___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CryptoStream_WriteAsyncCore_d_49___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CryptoStream_WriteAsyncCore_d_49___VTable vtable; +}; + +struct ClientWebSocket_ConnectAsyncCore_d_16___VTable { +}; + +struct ClientWebSocket_ConnectAsyncCore_d_16___StaticFields { +}; + +struct ClientWebSocket_ConnectAsyncCore_d_16___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ClientWebSocket_ConnectAsyncCore_d_16___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ClientWebSocket_ConnectAsyncCore_d_16___VTable vtable; +}; + +struct ManagedWebSocket_CloseAsyncPrivate_d_68___VTable { +}; + +struct ManagedWebSocket_CloseAsyncPrivate_d_68___StaticFields { +}; + +struct ManagedWebSocket_CloseAsyncPrivate_d_68___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ManagedWebSocket_CloseAsyncPrivate_d_68___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ManagedWebSocket_CloseAsyncPrivate_d_68___VTable vtable; +}; + +struct ManagedWebSocket_CloseWithReceiveErrorAndThrowAsync_d_66___VTable { +}; + +struct ManagedWebSocket_CloseWithReceiveErrorAndThrowAsync_d_66___StaticFields { +}; + +struct ManagedWebSocket_CloseWithReceiveErrorAndThrowAsync_d_66___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ManagedWebSocket_CloseWithReceiveErrorAndThrowAsync_d_66___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ManagedWebSocket_CloseWithReceiveErrorAndThrowAsync_d_66___VTable vtable; +}; + +struct ManagedWebSocket_HandleReceivedCloseAsync_d_62___VTable { +}; + +struct ManagedWebSocket_HandleReceivedCloseAsync_d_62___StaticFields { +}; + +struct ManagedWebSocket_HandleReceivedCloseAsync_d_62___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ManagedWebSocket_HandleReceivedCloseAsync_d_62___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ManagedWebSocket_HandleReceivedCloseAsync_d_62___VTable vtable; +}; + +struct ManagedWebSocket_HandleReceivedPingPongAsync_d_64___VTable { +}; + +struct ManagedWebSocket_HandleReceivedPingPongAsync_d_64___StaticFields { +}; + +struct ManagedWebSocket_HandleReceivedPingPongAsync_d_64___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ManagedWebSocket_HandleReceivedPingPongAsync_d_64___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ManagedWebSocket_HandleReceivedPingPongAsync_d_64___VTable vtable; +}; + +struct ManagedWebSocket_SendCloseFrameAsync_d_69___VTable { +}; + +struct ManagedWebSocket_SendCloseFrameAsync_d_69___StaticFields { +}; + +struct ManagedWebSocket_SendCloseFrameAsync_d_69___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ManagedWebSocket_SendCloseFrameAsync_d_69___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ManagedWebSocket_SendCloseFrameAsync_d_69___VTable vtable; +}; + +struct ManagedWebSocket_SendFrameFallbackAsync_d_56___VTable { +}; + +struct ManagedWebSocket_SendFrameFallbackAsync_d_56___StaticFields { +}; + +struct ManagedWebSocket_SendFrameFallbackAsync_d_56___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ManagedWebSocket_SendFrameFallbackAsync_d_56___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ManagedWebSocket_SendFrameFallbackAsync_d_56___VTable vtable; +}; + +struct MobileAuthenticatedStream_InnerWrite_d_67___VTable { +}; + +struct MobileAuthenticatedStream_InnerWrite_d_67___StaticFields { +}; + +struct MobileAuthenticatedStream_InnerWrite_d_67___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MobileAuthenticatedStream_InnerWrite_d_67___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MobileAuthenticatedStream_InnerWrite_d_67___VTable vtable; +}; + +struct Stream_FinishWriteAsync_d_57___VTable { +}; + +struct Stream_FinishWriteAsync_d_57___StaticFields { +}; + +struct Stream_FinishWriteAsync_d_57___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Stream_FinishWriteAsync_d_57___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Stream_FinishWriteAsync_d_57___VTable vtable; +}; + +struct WebConnection_Connect_d_16___VTable { +}; + +struct WebConnection_Connect_d_16___StaticFields { +}; + +struct WebConnection_Connect_d_16___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct WebConnection_Connect_d_16___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct WebConnection_Connect_d_16___VTable vtable; +}; + +struct WebRequestStream_FinishWriting_d_31___VTable { +}; + +struct WebRequestStream_FinishWriting_d_31___StaticFields { +}; + +struct WebRequestStream_FinishWriting_d_31___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct WebRequestStream_FinishWriting_d_31___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct WebRequestStream_FinishWriting_d_31___VTable vtable; +}; + +struct WebRequestStream_ProcessWrite_d_34___VTable { +}; + +struct WebRequestStream_ProcessWrite_d_34___StaticFields { +}; + +struct WebRequestStream_ProcessWrite_d_34___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct WebRequestStream_ProcessWrite_d_34___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct WebRequestStream_ProcessWrite_d_34___VTable vtable; +}; + +struct WebRequestStream_SetHeadersAsync_d_37___VTable { +}; + +struct WebRequestStream_SetHeadersAsync_d_37___StaticFields { +}; + +struct WebRequestStream_SetHeadersAsync_d_37___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct WebRequestStream_SetHeadersAsync_d_37___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct WebRequestStream_SetHeadersAsync_d_37___VTable vtable; +}; + +struct WebRequestStream_WriteChunkTrailer_inner_d_39___VTable { +}; + +struct WebRequestStream_WriteChunkTrailer_inner_d_39___StaticFields { +}; + +struct WebRequestStream_WriteChunkTrailer_inner_d_39___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct WebRequestStream_WriteChunkTrailer_inner_d_39___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct WebRequestStream_WriteChunkTrailer_inner_d_39___VTable vtable; +}; + +struct WebSocket_SendWithArrayPoolAsync_d_16___VTable { +}; + +struct WebSocket_SendWithArrayPoolAsync_d_16___StaticFields { +}; + +struct WebSocket_SendWithArrayPoolAsync_d_16___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct WebSocket_SendWithArrayPoolAsync_d_16___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct WebSocket_SendWithArrayPoolAsync_d_16___VTable vtable; +}; + +struct ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter___VTable { +}; + +struct ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter___StaticFields { +}; + +struct ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ConfiguredValueTaskAwaitable_ConfiguredValueTaskAwaiter___VTable vtable; +}; + +struct ManagedWebSocket_WaitForWriteTaskAsync_d_55___VTable { +}; + +struct ManagedWebSocket_WaitForWriteTaskAsync_d_55___StaticFields { +}; + +struct ManagedWebSocket_WaitForWriteTaskAsync_d_55___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ManagedWebSocket_WaitForWriteTaskAsync_d_55___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ManagedWebSocket_WaitForWriteTaskAsync_d_55___VTable vtable; +}; + struct ValueTask_1_System_Object_ { struct Object *_obj; struct Object *_result; @@ -1100166,6 +1116331,19 @@ struct IComparer_1_Dissonance_Networking_ClientInfo_1__2 { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Dissonance_Networking_ClientInfo_1__2 { + int32_t hashCode; + int32_t next; + struct String *key; + struct List_1_Dissonance_Networking_ClientInfo_1__4 *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Dissonance_Networking_ClientInfo_1__2__Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Dissonance_Networking_ClientInfo_1__2__Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Dissonance_Networking_ClientInfo_1__2 fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_List_1_Dissonance_Networking_ClientInfo_1__2__Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Dissonance_Networking_ClientInfo_1__2__Array *_entries; @@ -1100185,32 +1116363,6 @@ struct Dictionary_2_System_String_List_1_Dissonance_Networking_ClientInfo_1__2 { struct Dictionary_2_System_String_List_1_Dissonance_Networking_ClientInfo_1__2__Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Dissonance_Networking_ClientInfo_1__2 { - int32_t hashCode; - int32_t next; - struct String *key; - struct List_1_Dissonance_Networking_ClientInfo_1__2 *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Dissonance_Networking_ClientInfo_1__2__Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Dissonance_Networking_ClientInfo_1__2__Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Dissonance_Networking_ClientInfo_1__2 fields; -}; - -struct __declspec(align(8)) List_1_Dissonance_Networking_ClientInfo_1__2__Fields { - struct ClientInfo_1_System_Object___Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Dissonance_Networking_ClientInfo_1__2 { - struct List_1_Dissonance_Networking_ClientInfo_1__2__Class *klass; - MonitorData *monitor; - struct List_1_Dissonance_Networking_ClientInfo_1__2__Fields fields; -}; - struct __declspec(align(8)) ClientInfo_1_System_Object___Fields { struct List_1_System_String_ *_rooms; struct String *_PlayerName_k__BackingField; @@ -1100228,6 +1116380,19 @@ struct ClientInfo_1_System_Object_ { struct ClientInfo_1_System_Object___Fields fields; }; +struct __declspec(align(8)) List_1_Dissonance_Networking_ClientInfo_1__4__Fields { + struct ClientInfo_1_System_Object___Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Dissonance_Networking_ClientInfo_1__4 { + struct List_1_Dissonance_Networking_ClientInfo_1__4__Class *klass; + MonitorData *monitor; + struct List_1_Dissonance_Networking_ClientInfo_1__4__Fields fields; +}; + struct ClientInfo_1_System_Object___Array { struct ClientInfo_1_System_Object___Array__Class *klass; MonitorData *monitor; @@ -1100269,12 +1116434,12 @@ struct Dictionary_2_TKey_TValue_ValueCollection_System_String_List_1_Dissonance_ struct Dictionary_2_TKey_TValue_ValueCollection_System_String_List_1_Dissonance_Networking_ClientInfo_1__2__Fields fields; }; -struct List_1_Dissonance_Networking_ClientInfo_1__2__Array { - struct List_1_Dissonance_Networking_ClientInfo_1__2__Array__Class *klass; +struct List_1_Dissonance_Networking_ClientInfo_1__4__Array { + struct List_1_Dissonance_Networking_ClientInfo_1__4__Array__Class *klass; MonitorData *monitor; Il2CppArrayBounds *bounds; il2cpp_array_size_t max_length; - struct List_1_Dissonance_Networking_ClientInfo_1__2 *vector[32]; + struct List_1_Dissonance_Networking_ClientInfo_1__4 *vector[32]; }; struct IEnumerator_1_List_1_Dissonance_Networking_ClientInfo_1__2 { @@ -1100289,7 +1116454,7 @@ struct ICollection_1_List_1_Dissonance_Networking_ClientInfo_1__2 { struct KeyValuePair_2_System_String_List_1_Dissonance_Networking_ClientInfo_1__2 { struct String *key; - struct List_1_Dissonance_Networking_ClientInfo_1__2 *value; + struct List_1_Dissonance_Networking_ClientInfo_1__4 *value; }; struct KeyValuePair_2_System_String_List_1_Dissonance_Networking_ClientInfo_1__2__Boxed { @@ -1100316,6 +1116481,19 @@ struct IEnumerable_1_List_1_Dissonance_Networking_ClientInfo_1__2 { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_UInt16_Dissonance_Networking_ClientInfo_1__2 { + int32_t hashCode; + int32_t next; + uint16_t key; + struct ClientInfo_1_System_Object_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_UInt16_Dissonance_Networking_ClientInfo_1__2__Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_UInt16_Dissonance_Networking_ClientInfo_1__2__Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_UInt16_Dissonance_Networking_ClientInfo_1__2 fields; +}; + struct __declspec(align(8)) Dictionary_2_System_UInt16_Dissonance_Networking_ClientInfo_1__2__Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_UInt16_Dissonance_Networking_ClientInfo_1__2__Array *_entries; @@ -1100335,19 +1116513,6 @@ struct Dictionary_2_System_UInt16_Dissonance_Networking_ClientInfo_1__2 { struct Dictionary_2_System_UInt16_Dissonance_Networking_ClientInfo_1__2__Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_UInt16_Dissonance_Networking_ClientInfo_1__2 { - int32_t hashCode; - int32_t next; - uint16_t key; - struct ClientInfo_1_System_Object_ *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_UInt16_Dissonance_Networking_ClientInfo_1__2__Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_UInt16_Dissonance_Networking_ClientInfo_1__2__Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_UInt16_Dissonance_Networking_ClientInfo_1__2 fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_UInt16_Dissonance_Networking_ClientInfo_1__2__Array { struct Dictionary_2_TKey_TValue_Entry_System_UInt16_Dissonance_Networking_ClientInfo_1__2__Array__Class *klass; MonitorData *monitor; @@ -1100410,6 +1116575,19 @@ struct IEnumerable_1_Dissonance_Networking_ClientInfo_1__2 { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_Dissonance_Networking_ClientInfo_1__2 { + int32_t hashCode; + int32_t next; + struct String *key; + struct ClientInfo_1_System_Object_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_Dissonance_Networking_ClientInfo_1__2__Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_Dissonance_Networking_ClientInfo_1__2__Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_Dissonance_Networking_ClientInfo_1__2 fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_Dissonance_Networking_ClientInfo_1__2__Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_Dissonance_Networking_ClientInfo_1__2__Array *_entries; @@ -1100429,19 +1116607,6 @@ struct Dictionary_2_System_String_Dissonance_Networking_ClientInfo_1__2 { struct Dictionary_2_System_String_Dissonance_Networking_ClientInfo_1__2__Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_Dissonance_Networking_ClientInfo_1__2 { - int32_t hashCode; - int32_t next; - struct String *key; - struct ClientInfo_1_System_Object_ *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_Dissonance_Networking_ClientInfo_1__2__Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_Dissonance_Networking_ClientInfo_1__2__Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_Dissonance_Networking_ClientInfo_1__2 fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_String_Dissonance_Networking_ClientInfo_1__2__Array { struct Dictionary_2_TKey_TValue_Entry_System_String_Dissonance_Networking_ClientInfo_1__2__Array__Class *klass; MonitorData *monitor; @@ -1100582,7 +1116747,7 @@ struct IEnumerator_1_Dissonance_Networking_ClientInfo_1__2__Class { struct IEnumerator_1_Dissonance_Networking_ClientInfo_1__2__VTable vtable; }; -struct List_1_Dissonance_Networking_ClientInfo_1__2__VTable { +struct List_1_Dissonance_Networking_ClientInfo_1__4__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; VirtualInvokeData GetHashCode; @@ -1100620,17 +1116785,17 @@ struct List_1_Dissonance_Networking_ClientInfo_1__2__VTable { VirtualInvokeData get_Count_2; }; -struct List_1_Dissonance_Networking_ClientInfo_1__2__StaticFields { +struct List_1_Dissonance_Networking_ClientInfo_1__4__StaticFields { struct ClientInfo_1_System_Object___Array *s_emptyArray; }; -struct List_1_Dissonance_Networking_ClientInfo_1__2__Class { +struct List_1_Dissonance_Networking_ClientInfo_1__4__Class { Il2CppClass_0 _0; Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct List_1_Dissonance_Networking_ClientInfo_1__2__StaticFields *static_fields; + struct List_1_Dissonance_Networking_ClientInfo_1__4__StaticFields *static_fields; const Il2CppRGCTXData *rgctx_data; Il2CppClass_1 _1; - struct List_1_Dissonance_Networking_ClientInfo_1__2__VTable vtable; + struct List_1_Dissonance_Networking_ClientInfo_1__4__VTable vtable; }; struct Dictionary_2_TKey_TValue_Entry_System_String_List_1_Dissonance_Networking_ClientInfo_1__2__VTable { @@ -1100700,19 +1116865,19 @@ struct Dictionary_2_TKey_TValue_KeyCollection_System_String_List_1_Dissonance_Ne struct Dictionary_2_TKey_TValue_KeyCollection_System_String_List_1_Dissonance_Networking_ClientInfo_1__2__VTable vtable; }; -struct List_1_Dissonance_Networking_ClientInfo_1__2__Array__VTable { +struct List_1_Dissonance_Networking_ClientInfo_1__4__Array__VTable { }; -struct List_1_Dissonance_Networking_ClientInfo_1__2__Array__StaticFields { +struct List_1_Dissonance_Networking_ClientInfo_1__4__Array__StaticFields { }; -struct List_1_Dissonance_Networking_ClientInfo_1__2__Array__Class { +struct List_1_Dissonance_Networking_ClientInfo_1__4__Array__Class { Il2CppClass_0 _0; Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct List_1_Dissonance_Networking_ClientInfo_1__2__Array__StaticFields *static_fields; + struct List_1_Dissonance_Networking_ClientInfo_1__4__Array__StaticFields *static_fields; const Il2CppRGCTXData *rgctx_data; Il2CppClass_1 _1; - struct List_1_Dissonance_Networking_ClientInfo_1__2__Array__VTable vtable; + struct List_1_Dissonance_Networking_ClientInfo_1__4__Array__VTable vtable; }; struct IEnumerator_1_List_1_Dissonance_Networking_ClientInfo_1__2__VTable { @@ -1100786,6 +1116951,21 @@ struct ICollection_1_List_1_Dissonance_Networking_ClientInfo_1__2__Class { struct ICollection_1_List_1_Dissonance_Networking_ClientInfo_1__2__VTable vtable; }; +struct List_1_Dissonance_Networking_ClientInfo_1__5__VTable { +}; + +struct List_1_Dissonance_Networking_ClientInfo_1__5__StaticFields { +}; + +struct List_1_Dissonance_Networking_ClientInfo_1__5__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Dissonance_Networking_ClientInfo_1__5__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Dissonance_Networking_ClientInfo_1__5__VTable vtable; +}; + struct KeyValuePair_2_System_String_List_1_Dissonance_Networking_ClientInfo_1__2__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1101053,6 +1117233,21 @@ struct ICollection_1_Dissonance_Networking_ClientInfo_1__2__Class { struct ICollection_1_Dissonance_Networking_ClientInfo_1__2__VTable vtable; }; +struct ClientInfo_1_System_Object__1__VTable { +}; + +struct ClientInfo_1_System_Object__1__StaticFields { +}; + +struct ClientInfo_1_System_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ClientInfo_1_System_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ClientInfo_1_System_Object__1__VTable vtable; +}; + struct KeyValuePair_2_System_UInt16_Dissonance_Networking_ClientInfo_1__2__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1101712,6 +1117907,11 @@ struct BaseCommsNetwork_5_System_Object_System_Object_Dissonance_Integrations_Ph struct BaseCommsNetwork_5_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit___Fields fields; }; +struct BaseCommsNetwork_5_TServer_TClient_TPeer_TClientParam_TServerParam_IState_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit_ { + struct BaseCommsNetwork_5_TServer_TClient_TPeer_TClientParam_TServerParam_IState_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit___Class *klass; + MonitorData *monitor; +}; + struct __declspec(align(8)) Queue_1_Dissonance_Networking_BaseCommsNetwork_5_IState__1__Fields { struct BaseCommsNetwork_5_TServer_TClient_TPeer_TClientParam_TServerParam_IState_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit___Array *_array; int32_t _head; @@ -1101727,11 +1117927,6 @@ struct Queue_1_Dissonance_Networking_BaseCommsNetwork_5_IState__1 { struct Queue_1_Dissonance_Networking_BaseCommsNetwork_5_IState__1__Fields fields; }; -struct BaseCommsNetwork_5_TServer_TClient_TPeer_TClientParam_TServerParam_IState_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit_ { - struct BaseCommsNetwork_5_TServer_TClient_TPeer_TClientParam_TServerParam_IState_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit___Class *klass; - MonitorData *monitor; -}; - struct BaseCommsNetwork_5_TServer_TClient_TPeer_TClientParam_TServerParam_IState_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit___Array { struct BaseCommsNetwork_5_TServer_TClient_TPeer_TClientParam_TServerParam_IState_System_Object_System_Object_Dissonance_Integrations_PhotonBolt_BoltPeer_Dissonance_Unit_Dissonance_Unit___Array__Class *klass; MonitorData *monitor; @@ -1103570,6 +1119765,36 @@ struct BasicNodePool_1_System_Object___Class { struct BasicNodePool_1_System_Object___VTable vtable; }; +struct BasicNode_1_System_Object__1__VTable { +}; + +struct BasicNode_1_System_Object__1__StaticFields { +}; + +struct BasicNode_1_System_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BasicNode_1_System_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BasicNode_1_System_Object__1__VTable vtable; +}; + +struct BasicNode_1_TextureEntry__1__VTable { +}; + +struct BasicNode_1_TextureEntry__1__StaticFields { +}; + +struct BasicNode_1_TextureEntry__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BasicNode_1_TextureEntry__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BasicNode_1_TextureEntry__1__VTable vtable; +}; + struct __declspec(align(8)) BidirectionalDictionary_2_System_Int32Enum_System_Int32Enum___Fields { struct Dictionary_2_System_Int32Enum_System_Int32Enum_ *_forward; struct Dictionary_2_System_Int32Enum_System_Int32Enum_ *_backward; @@ -1103581,25 +1119806,6 @@ struct BidirectionalDictionary_2_System_Int32Enum_System_Int32Enum_ { struct BidirectionalDictionary_2_System_Int32Enum_System_Int32Enum___Fields fields; }; -struct __declspec(align(8)) Dictionary_2_System_Int32Enum_System_Int32Enum___Fields { - struct Int32__Array *_buckets; - struct Dictionary_2_TKey_TValue_Entry_System_Int32Enum_System_Int32Enum___Array *_entries; - int32_t _count; - int32_t _freeList; - int32_t _freeCount; - int32_t _version; - struct IEqualityComparer_1_System_Int32Enum_ *_comparer; - struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32Enum_System_Int32Enum_ *_keys; - struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32Enum_System_Int32Enum_ *_values; - struct Object *_syncRoot; -}; - -struct Dictionary_2_System_Int32Enum_System_Int32Enum_ { - struct Dictionary_2_System_Int32Enum_System_Int32Enum___Class *klass; - MonitorData *monitor; - struct Dictionary_2_System_Int32Enum_System_Int32Enum___Fields fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int32Enum_System_Int32Enum_ { int32_t hashCode; int32_t next; @@ -1103621,6 +1119827,25 @@ struct Dictionary_2_TKey_TValue_Entry_System_Int32Enum_System_Int32Enum___Boxed struct Dictionary_2_TKey_TValue_Entry_System_Int32Enum_System_Int32Enum_ fields; }; +struct __declspec(align(8)) Dictionary_2_System_Int32Enum_System_Int32Enum___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_System_Int32Enum_System_Int32Enum___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_System_Int32Enum_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32Enum_System_Int32Enum_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32Enum_System_Int32Enum_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_System_Int32Enum_System_Int32Enum_ { + struct Dictionary_2_System_Int32Enum_System_Int32Enum___Class *klass; + MonitorData *monitor; + struct Dictionary_2_System_Int32Enum_System_Int32Enum___Fields fields; +}; + struct Dictionary_2_TKey_TValue_Entry_System_Int32Enum_System_Int32Enum___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32Enum_System_Int32Enum___Array__Class *klass; MonitorData *monitor; @@ -1104316,6 +1120541,21 @@ struct List_1_System_Threading_WaitHandle___Class { struct List_1_System_Threading_WaitHandle___VTable vtable; }; +struct CancellationToken___VTable { +}; + +struct CancellationToken___StaticFields { +}; + +struct CancellationToken___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CancellationToken___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CancellationToken___VTable vtable; +}; + struct BoltIterator_1_System_Object_ { struct Object *_node; int32_t _count; @@ -1104540,8 +1120780,8 @@ struct BroadcastingClientCollection_1_System_Object___Fields { struct IServer_1_System_Object_ *_server; struct Byte__Array *_tmpSendBuffer; struct List_1_System_Object_ *_tmpConnectionBuffer; - struct List_1_Dissonance_Networking_ClientInfo_1__2 *_tmpClientBuffer; - struct List_1_Dissonance_Networking_ClientInfo_1__2 *_tmpClientBufferHandshake; + struct List_1_Dissonance_Networking_ClientInfo_1__4 *_tmpClientBuffer; + struct List_1_Dissonance_Networking_ClientInfo_1__4 *_tmpClientBufferHandshake; }; struct BroadcastingClientCollection_1_System_Object_ { @@ -1105072,17 +1121312,6 @@ struct ExpandableArray_DataContainer_1_T_CKzxSqMbmTPWgxeoDsFjJYjqXnZi_System_Obj struct ExpandableArray_DataContainer_1_T_CKzxSqMbmTPWgxeoDsFjJYjqXnZi_System_Object___VTable vtable; }; -struct __declspec(align(8)) CacheDict_2_System_Object_System_Object___Fields { - int32_t _mask; - struct CacheDict_2_TKey_TValue_Entry_System_Object_System_Object___Array *_entries; -}; - -struct CacheDict_2_System_Object_System_Object_ { - struct CacheDict_2_System_Object_System_Object___Class *klass; - MonitorData *monitor; - struct CacheDict_2_System_Object_System_Object___Fields fields; -}; - struct __declspec(align(8)) CacheDict_2_TKey_TValue_Entry_System_Object_System_Object___Fields { int32_t _hash; struct Object *_key; @@ -1105095,6 +1121324,17 @@ struct CacheDict_2_TKey_TValue_Entry_System_Object_System_Object_ { struct CacheDict_2_TKey_TValue_Entry_System_Object_System_Object___Fields fields; }; +struct __declspec(align(8)) CacheDict_2_System_Object_System_Object___Fields { + int32_t _mask; + struct CacheDict_2_TKey_TValue_Entry_System_Object_System_Object___Array *_entries; +}; + +struct CacheDict_2_System_Object_System_Object_ { + struct CacheDict_2_System_Object_System_Object___Class *klass; + MonitorData *monitor; + struct CacheDict_2_System_Object_System_Object___Fields fields; +}; + struct CacheDict_2_TKey_TValue_Entry_System_Object_System_Object___Array { struct CacheDict_2_TKey_TValue_Entry_System_Object_System_Object___Array__Class *klass; MonitorData *monitor; @@ -1107132,6 +1123372,19 @@ struct Channels_2_System_Object_System_Object_ { struct Channels_2_System_Object_System_Object___Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_UInt16_System_Object_ { + int32_t hashCode; + int32_t next; + uint16_t key; + struct Object *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_UInt16_System_Object___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_UInt16_System_Object___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_UInt16_System_Object_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_UInt16_System_Object___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_UInt16_System_Object___Array *_entries; @@ -1107151,19 +1123404,6 @@ struct Dictionary_2_System_UInt16_System_Object_ { struct Dictionary_2_System_UInt16_System_Object___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_UInt16_System_Object_ { - int32_t hashCode; - int32_t next; - uint16_t key; - struct Object *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_UInt16_System_Object___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_UInt16_System_Object___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_UInt16_System_Object_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_UInt16_System_Object___Array { struct Dictionary_2_TKey_TValue_Entry_System_UInt16_System_Object___Array__Class *klass; MonitorData *monitor; @@ -1122845,6 +1139085,21 @@ struct ConcurrentPool_1_System_Object___Class { struct ConcurrentPool_1_System_Object___VTable vtable; }; +struct ConcurrentQueue_1_T_Segment_System_Object__1__VTable { +}; + +struct ConcurrentQueue_1_T_Segment_System_Object__1__StaticFields { +}; + +struct ConcurrentQueue_1_T_Segment_System_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ConcurrentQueue_1_T_Segment_System_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ConcurrentQueue_1_T_Segment_System_Object__1__VTable vtable; +}; + struct __declspec(align(8)) ConditionalWeakTable_2_System_Object_System_Object__1__Fields { struct Ephemeron__Array *data; struct Object *_lock; @@ -1123903,6 +1140158,25 @@ struct ConnectionState__Enum_1__Class { struct ConnectionState__Enum_1__VTable vtable; }; +struct ShaderVariablesProbeVolumes { + struct Vector3 _PoolDim; + float _ViewBias; + struct Vector3 _MinCellPosition; + float _PVSamplingNoise; + struct Vector3 _CellIndicesDim; + float _CellInMeters; + float _CellInMinBricks; + float _MinBrickSize; + int32_t _IndexChunkSize; + float _NormalBias; +}; + +struct ShaderVariablesProbeVolumes__Boxed { + struct ShaderVariablesProbeVolumes__Class *klass; + MonitorData *monitor; + struct ShaderVariablesProbeVolumes fields; +}; + struct __declspec(align(8)) ConstantBuffer_1_ShaderVariablesProbeVolumes___Fields { struct HashSet_1_System_Int32_ *m_GlobalBindings; struct ShaderVariablesProbeVolumes__Array *m_Data; @@ -1123925,25 +1140199,6 @@ struct ConstantBufferSingleton_1_ShaderVariablesProbeVolumes_ { struct ConstantBufferSingleton_1_ShaderVariablesProbeVolumes___Fields fields; }; -struct ShaderVariablesProbeVolumes { - struct Vector3 _PoolDim; - float _ViewBias; - struct Vector3 _MinCellPosition; - float _PVSamplingNoise; - struct Vector3 _CellIndicesDim; - float _CellInMeters; - float _CellInMinBricks; - float _MinBrickSize; - int32_t _IndexChunkSize; - float _NormalBias; -}; - -struct ShaderVariablesProbeVolumes__Boxed { - struct ShaderVariablesProbeVolumes__Class *klass; - MonitorData *monitor; - struct ShaderVariablesProbeVolumes fields; -}; - struct ShaderVariablesProbeVolumes__Array { struct ShaderVariablesProbeVolumes__Array__Class *klass; MonitorData *monitor; @@ -1124027,6 +1140282,26 @@ struct ConstantBufferSingleton_1_ShaderVariablesProbeVolumes___Class { struct ConstantBufferSingleton_1_ShaderVariablesProbeVolumes___VTable vtable; }; +struct Hammersley_Hammersley2dSeq16_hammersley2dSeq16_e_FixedBuffer { + float FixedElementField; +}; + +struct Hammersley_Hammersley2dSeq16_hammersley2dSeq16_e_FixedBuffer__Boxed { + struct Hammersley_Hammersley2dSeq16_hammersley2dSeq16_e_FixedBuffer__Class *klass; + MonitorData *monitor; + struct Hammersley_Hammersley2dSeq16_hammersley2dSeq16_e_FixedBuffer fields; +}; + +struct Hammersley_Hammersley2dSeq16 { + struct Hammersley_Hammersley2dSeq16_hammersley2dSeq16_e_FixedBuffer hammersley2dSeq16; +}; + +struct Hammersley_Hammersley2dSeq16__Boxed { + struct Hammersley_Hammersley2dSeq16__Class *klass; + MonitorData *monitor; + struct Hammersley_Hammersley2dSeq16 fields; +}; + struct __declspec(align(8)) ConstantBuffer_1_Hammersley_Hammersley2dSeq16___Fields { struct HashSet_1_System_Int32_ *m_GlobalBindings; struct Hammersley_Hammersley2dSeq16__Array *m_Data; @@ -1124049,26 +1140324,6 @@ struct ConstantBufferSingleton_1_Hammersley_Hammersley2dSeq16_ { struct ConstantBufferSingleton_1_Hammersley_Hammersley2dSeq16___Fields fields; }; -struct Hammersley_Hammersley2dSeq16_hammersley2dSeq16_e_FixedBuffer { - float FixedElementField; -}; - -struct Hammersley_Hammersley2dSeq16_hammersley2dSeq16_e_FixedBuffer__Boxed { - struct Hammersley_Hammersley2dSeq16_hammersley2dSeq16_e_FixedBuffer__Class *klass; - MonitorData *monitor; - struct Hammersley_Hammersley2dSeq16_hammersley2dSeq16_e_FixedBuffer fields; -}; - -struct Hammersley_Hammersley2dSeq16 { - struct Hammersley_Hammersley2dSeq16_hammersley2dSeq16_e_FixedBuffer hammersley2dSeq16; -}; - -struct Hammersley_Hammersley2dSeq16__Boxed { - struct Hammersley_Hammersley2dSeq16__Class *klass; - MonitorData *monitor; - struct Hammersley_Hammersley2dSeq16 fields; -}; - struct Hammersley_Hammersley2dSeq16__Array { struct Hammersley_Hammersley2dSeq16__Array__Class *klass; MonitorData *monitor; @@ -1124171,6 +1140426,26 @@ struct ConstantBufferSingleton_1_Hammersley_Hammersley2dSeq16___Class { struct ConstantBufferSingleton_1_Hammersley_Hammersley2dSeq16___VTable vtable; }; +struct Hammersley_Hammersley2dSeq256_hammersley2dSeq256_e_FixedBuffer { + float FixedElementField; +}; + +struct Hammersley_Hammersley2dSeq256_hammersley2dSeq256_e_FixedBuffer__Boxed { + struct Hammersley_Hammersley2dSeq256_hammersley2dSeq256_e_FixedBuffer__Class *klass; + MonitorData *monitor; + struct Hammersley_Hammersley2dSeq256_hammersley2dSeq256_e_FixedBuffer fields; +}; + +struct Hammersley_Hammersley2dSeq256 { + struct Hammersley_Hammersley2dSeq256_hammersley2dSeq256_e_FixedBuffer hammersley2dSeq256; +}; + +struct Hammersley_Hammersley2dSeq256__Boxed { + struct Hammersley_Hammersley2dSeq256__Class *klass; + MonitorData *monitor; + struct Hammersley_Hammersley2dSeq256 fields; +}; + struct __declspec(align(8)) ConstantBuffer_1_Hammersley_Hammersley2dSeq256___Fields { struct HashSet_1_System_Int32_ *m_GlobalBindings; struct Hammersley_Hammersley2dSeq256__Array *m_Data; @@ -1124193,26 +1140468,6 @@ struct ConstantBufferSingleton_1_Hammersley_Hammersley2dSeq256_ { struct ConstantBufferSingleton_1_Hammersley_Hammersley2dSeq256___Fields fields; }; -struct Hammersley_Hammersley2dSeq256_hammersley2dSeq256_e_FixedBuffer { - float FixedElementField; -}; - -struct Hammersley_Hammersley2dSeq256_hammersley2dSeq256_e_FixedBuffer__Boxed { - struct Hammersley_Hammersley2dSeq256_hammersley2dSeq256_e_FixedBuffer__Class *klass; - MonitorData *monitor; - struct Hammersley_Hammersley2dSeq256_hammersley2dSeq256_e_FixedBuffer fields; -}; - -struct Hammersley_Hammersley2dSeq256 { - struct Hammersley_Hammersley2dSeq256_hammersley2dSeq256_e_FixedBuffer hammersley2dSeq256; -}; - -struct Hammersley_Hammersley2dSeq256__Boxed { - struct Hammersley_Hammersley2dSeq256__Class *klass; - MonitorData *monitor; - struct Hammersley_Hammersley2dSeq256 fields; -}; - struct Hammersley_Hammersley2dSeq256__Array { struct Hammersley_Hammersley2dSeq256__Array__Class *klass; MonitorData *monitor; @@ -1124315,6 +1140570,26 @@ struct ConstantBufferSingleton_1_Hammersley_Hammersley2dSeq256___Class { struct ConstantBufferSingleton_1_Hammersley_Hammersley2dSeq256___VTable vtable; }; +struct Hammersley_Hammersley2dSeq32_hammersley2dSeq32_e_FixedBuffer { + float FixedElementField; +}; + +struct Hammersley_Hammersley2dSeq32_hammersley2dSeq32_e_FixedBuffer__Boxed { + struct Hammersley_Hammersley2dSeq32_hammersley2dSeq32_e_FixedBuffer__Class *klass; + MonitorData *monitor; + struct Hammersley_Hammersley2dSeq32_hammersley2dSeq32_e_FixedBuffer fields; +}; + +struct Hammersley_Hammersley2dSeq32 { + struct Hammersley_Hammersley2dSeq32_hammersley2dSeq32_e_FixedBuffer hammersley2dSeq32; +}; + +struct Hammersley_Hammersley2dSeq32__Boxed { + struct Hammersley_Hammersley2dSeq32__Class *klass; + MonitorData *monitor; + struct Hammersley_Hammersley2dSeq32 fields; +}; + struct __declspec(align(8)) ConstantBuffer_1_Hammersley_Hammersley2dSeq32___Fields { struct HashSet_1_System_Int32_ *m_GlobalBindings; struct Hammersley_Hammersley2dSeq32__Array *m_Data; @@ -1124337,26 +1140612,6 @@ struct ConstantBufferSingleton_1_Hammersley_Hammersley2dSeq32_ { struct ConstantBufferSingleton_1_Hammersley_Hammersley2dSeq32___Fields fields; }; -struct Hammersley_Hammersley2dSeq32_hammersley2dSeq32_e_FixedBuffer { - float FixedElementField; -}; - -struct Hammersley_Hammersley2dSeq32_hammersley2dSeq32_e_FixedBuffer__Boxed { - struct Hammersley_Hammersley2dSeq32_hammersley2dSeq32_e_FixedBuffer__Class *klass; - MonitorData *monitor; - struct Hammersley_Hammersley2dSeq32_hammersley2dSeq32_e_FixedBuffer fields; -}; - -struct Hammersley_Hammersley2dSeq32 { - struct Hammersley_Hammersley2dSeq32_hammersley2dSeq32_e_FixedBuffer hammersley2dSeq32; -}; - -struct Hammersley_Hammersley2dSeq32__Boxed { - struct Hammersley_Hammersley2dSeq32__Class *klass; - MonitorData *monitor; - struct Hammersley_Hammersley2dSeq32 fields; -}; - struct Hammersley_Hammersley2dSeq32__Array { struct Hammersley_Hammersley2dSeq32__Array__Class *klass; MonitorData *monitor; @@ -1124459,6 +1140714,26 @@ struct ConstantBufferSingleton_1_Hammersley_Hammersley2dSeq32___Class { struct ConstantBufferSingleton_1_Hammersley_Hammersley2dSeq32___VTable vtable; }; +struct Hammersley_Hammersley2dSeq64_hammersley2dSeq64_e_FixedBuffer { + float FixedElementField; +}; + +struct Hammersley_Hammersley2dSeq64_hammersley2dSeq64_e_FixedBuffer__Boxed { + struct Hammersley_Hammersley2dSeq64_hammersley2dSeq64_e_FixedBuffer__Class *klass; + MonitorData *monitor; + struct Hammersley_Hammersley2dSeq64_hammersley2dSeq64_e_FixedBuffer fields; +}; + +struct Hammersley_Hammersley2dSeq64 { + struct Hammersley_Hammersley2dSeq64_hammersley2dSeq64_e_FixedBuffer hammersley2dSeq64; +}; + +struct Hammersley_Hammersley2dSeq64__Boxed { + struct Hammersley_Hammersley2dSeq64__Class *klass; + MonitorData *monitor; + struct Hammersley_Hammersley2dSeq64 fields; +}; + struct __declspec(align(8)) ConstantBuffer_1_Hammersley_Hammersley2dSeq64___Fields { struct HashSet_1_System_Int32_ *m_GlobalBindings; struct Hammersley_Hammersley2dSeq64__Array *m_Data; @@ -1124481,26 +1140756,6 @@ struct ConstantBufferSingleton_1_Hammersley_Hammersley2dSeq64_ { struct ConstantBufferSingleton_1_Hammersley_Hammersley2dSeq64___Fields fields; }; -struct Hammersley_Hammersley2dSeq64_hammersley2dSeq64_e_FixedBuffer { - float FixedElementField; -}; - -struct Hammersley_Hammersley2dSeq64_hammersley2dSeq64_e_FixedBuffer__Boxed { - struct Hammersley_Hammersley2dSeq64_hammersley2dSeq64_e_FixedBuffer__Class *klass; - MonitorData *monitor; - struct Hammersley_Hammersley2dSeq64_hammersley2dSeq64_e_FixedBuffer fields; -}; - -struct Hammersley_Hammersley2dSeq64 { - struct Hammersley_Hammersley2dSeq64_hammersley2dSeq64_e_FixedBuffer hammersley2dSeq64; -}; - -struct Hammersley_Hammersley2dSeq64__Boxed { - struct Hammersley_Hammersley2dSeq64__Class *klass; - MonitorData *monitor; - struct Hammersley_Hammersley2dSeq64 fields; -}; - struct Hammersley_Hammersley2dSeq64__Array { struct Hammersley_Hammersley2dSeq64__Array__Class *klass; MonitorData *monitor; @@ -1124603,6 +1140858,81 @@ struct ConstantBufferSingleton_1_Hammersley_Hammersley2dSeq64___Class { struct ConstantBufferSingleton_1_Hammersley_Hammersley2dSeq64___VTable vtable; }; +struct ShaderVariablesProbeVolumes___VTable { +}; + +struct ShaderVariablesProbeVolumes___StaticFields { +}; + +struct ShaderVariablesProbeVolumes___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ShaderVariablesProbeVolumes___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ShaderVariablesProbeVolumes___VTable vtable; +}; + +struct Hammersley_Hammersley2dSeq16___VTable { +}; + +struct Hammersley_Hammersley2dSeq16___StaticFields { +}; + +struct Hammersley_Hammersley2dSeq16___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Hammersley_Hammersley2dSeq16___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Hammersley_Hammersley2dSeq16___VTable vtable; +}; + +struct Hammersley_Hammersley2dSeq256___VTable { +}; + +struct Hammersley_Hammersley2dSeq256___StaticFields { +}; + +struct Hammersley_Hammersley2dSeq256___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Hammersley_Hammersley2dSeq256___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Hammersley_Hammersley2dSeq256___VTable vtable; +}; + +struct Hammersley_Hammersley2dSeq32___VTable { +}; + +struct Hammersley_Hammersley2dSeq32___StaticFields { +}; + +struct Hammersley_Hammersley2dSeq32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Hammersley_Hammersley2dSeq32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Hammersley_Hammersley2dSeq32___VTable vtable; +}; + +struct Hammersley_Hammersley2dSeq64___VTable { +}; + +struct Hammersley_Hammersley2dSeq64___StaticFields { +}; + +struct Hammersley_Hammersley2dSeq64___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Hammersley_Hammersley2dSeq64___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Hammersley_Hammersley2dSeq64___VTable vtable; +}; + struct DynamicHeightVirtualizationController_1_T_ContentHeightCacheInfo_System_Object_ { float sum; int32_t count; @@ -1125966,6 +1142296,17 @@ struct FileSystemEnumerable_1_TResult_DelegateEnumerator_System_Object_ { struct FileSystemEnumerable_1_TResult_DelegateEnumerator_System_Object___Fields fields; }; +struct ValueTuple_2_IntPtr_String_ { + void *Item1; + struct String *Item2; +}; + +struct ValueTuple_2_IntPtr_String___Boxed { + struct ValueTuple_2_IntPtr_String___Class *klass; + MonitorData *monitor; + struct ValueTuple_2_IntPtr_String_ fields; +}; + struct __declspec(align(8)) Queue_1_System_ValueTuple_2___Fields { struct ValueTuple_2_IntPtr_String___Array *_array; int32_t _head; @@ -1125981,17 +1142322,6 @@ struct Queue_1_System_ValueTuple_2_ { struct Queue_1_System_ValueTuple_2___Fields fields; }; -struct ValueTuple_2_IntPtr_String_ { - void *Item1; - struct String *Item2; -}; - -struct ValueTuple_2_IntPtr_String___Boxed { - struct ValueTuple_2_IntPtr_String___Class *klass; - MonitorData *monitor; - struct ValueTuple_2_IntPtr_String_ fields; -}; - struct ValueTuple_2_IntPtr_String___Array { struct ValueTuple_2_IntPtr_String___Array__Class *klass; MonitorData *monitor; @@ -1126736,6 +1143066,21 @@ struct ObjectPool_1_T_PooledObject_System_Collections_Generic_Dictionary_2___Cla struct ObjectPool_1_T_PooledObject_System_Collections_Generic_Dictionary_2___VTable vtable; }; +struct Dictionary_2_System_Object_System_Object__1__VTable { +}; + +struct Dictionary_2_System_Object_System_Object__1__StaticFields { +}; + +struct Dictionary_2_System_Object_System_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_System_Object_System_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_System_Object_System_Object__1__VTable vtable; +}; + struct __declspec(align(8)) DictionaryValueCollectionDebugView_2_System_Object_System_Object___Fields { struct ICollection_1_System_Object_ *_collection; }; @@ -1126765,6 +1143110,19 @@ struct DictionaryValueCollectionDebugView_2_System_Object_System_Object___Class struct DictionaryValueCollectionDebugView_2_System_Object_System_Object___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_System_ValueTuple_2_System_Object_ { + int32_t hashCode; + int32_t next; + struct ValueTuple_2_Object_Int32_ key; + struct Object *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_ValueTuple_2_System_Object___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_ValueTuple_2_System_Object___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_ValueTuple_2_System_Object_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_ValueTuple_2_System_Object___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_ValueTuple_2_System_Object___Array *_entries; @@ -1126784,19 +1143142,6 @@ struct Dictionary_2_System_ValueTuple_2_System_Object_ { struct Dictionary_2_System_ValueTuple_2_System_Object___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_ValueTuple_2_System_Object_ { - int32_t hashCode; - int32_t next; - struct ValueTuple_2_Object_Int32_ key; - struct Object *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_ValueTuple_2_System_Object___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_ValueTuple_2_System_Object___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_ValueTuple_2_System_Object_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_ValueTuple_2_System_Object___Array { struct Dictionary_2_TKey_TValue_Entry_System_ValueTuple_2_System_Object___Array__Class *klass; MonitorData *monitor; @@ -1127260,6 +1143605,19 @@ struct InsertionBehavior__Enum__Class { struct InsertionBehavior__Enum__VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_System_ValueTuple_2_System_Object__1 { + int32_t hashCode; + int32_t next; + struct ValueTuple_2_Object_Object_ key; + struct Object *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_ValueTuple_2_System_Object__1__Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_ValueTuple_2_System_Object__1__Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_ValueTuple_2_System_Object__1 fields; +}; + struct __declspec(align(8)) Dictionary_2_System_ValueTuple_2_System_Object__1__Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_ValueTuple_2_System_Object__1__Array *_entries; @@ -1127279,19 +1143637,6 @@ struct Dictionary_2_System_ValueTuple_2_System_Object__1 { struct Dictionary_2_System_ValueTuple_2_System_Object__1__Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_ValueTuple_2_System_Object__1 { - int32_t hashCode; - int32_t next; - struct ValueTuple_2_Object_Object_ key; - struct Object *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_ValueTuple_2_System_Object__1__Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_ValueTuple_2_System_Object__1__Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_ValueTuple_2_System_Object__1 fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_ValueTuple_2_System_Object__1__Array { struct Dictionary_2_TKey_TValue_Entry_System_ValueTuple_2_System_Object__1__Array__Class *klass; MonitorData *monitor; @@ -1127782,25 +1144127,6 @@ struct Dictionary_2_TKey_TValue_Enumerator_System_Byte_System_Object___Class { struct Dictionary_2_TKey_TValue_Enumerator_System_Byte_System_Object___VTable vtable; }; -struct __declspec(align(8)) Dictionary_2_System_ByteEnum_System_Int32___Fields { - struct Int32__Array *_buckets; - struct Dictionary_2_TKey_TValue_Entry_System_ByteEnum_System_Int32___Array *_entries; - int32_t _count; - int32_t _freeList; - int32_t _freeCount; - int32_t _version; - struct IEqualityComparer_1_System_ByteEnum_ *_comparer; - struct Dictionary_2_TKey_TValue_KeyCollection_System_ByteEnum_System_Int32_ *_keys; - struct Dictionary_2_TKey_TValue_ValueCollection_System_ByteEnum_System_Int32_ *_values; - struct Object *_syncRoot; -}; - -struct Dictionary_2_System_ByteEnum_System_Int32_ { - struct Dictionary_2_System_ByteEnum_System_Int32___Class *klass; - MonitorData *monitor; - struct Dictionary_2_System_ByteEnum_System_Int32___Fields fields; -}; - #if defined(_CPLUSPLUS_) enum class ByteEnum__Enum : uint8_t { }; @@ -1127837,6 +1144163,25 @@ struct Dictionary_2_TKey_TValue_Entry_System_ByteEnum_System_Int32___Boxed { struct Dictionary_2_TKey_TValue_Entry_System_ByteEnum_System_Int32_ fields; }; +struct __declspec(align(8)) Dictionary_2_System_ByteEnum_System_Int32___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_System_ByteEnum_System_Int32___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_System_ByteEnum_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_System_ByteEnum_System_Int32_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_System_ByteEnum_System_Int32_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_System_ByteEnum_System_Int32_ { + struct Dictionary_2_System_ByteEnum_System_Int32___Class *klass; + MonitorData *monitor; + struct Dictionary_2_System_ByteEnum_System_Int32___Fields fields; +}; + struct Dictionary_2_TKey_TValue_Entry_System_ByteEnum_System_Int32___Array { struct Dictionary_2_TKey_TValue_Entry_System_ByteEnum_System_Int32___Array__Class *klass; MonitorData *monitor; @@ -1128323,6 +1144668,23 @@ struct Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Int32___Class struct Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Int32___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_System_ByteEnum_System_Object_ { + int32_t hashCode; + int32_t next; + #if defined(_CPLUSPLUS_) + ByteEnum__Enum key; + #else + uint8_t key; + #endif + struct Object *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_ByteEnum_System_Object___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_ByteEnum_System_Object___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_ByteEnum_System_Object_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_ByteEnum_System_Object___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_ByteEnum_System_Object___Array *_entries; @@ -1128342,23 +1144704,6 @@ struct Dictionary_2_System_ByteEnum_System_Object_ { struct Dictionary_2_System_ByteEnum_System_Object___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_ByteEnum_System_Object_ { - int32_t hashCode; - int32_t next; - #if defined(_CPLUSPLUS_) - ByteEnum__Enum key; - #else - uint8_t key; - #endif - struct Object *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_ByteEnum_System_Object___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_ByteEnum_System_Object___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_ByteEnum_System_Object_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_ByteEnum_System_Object___Array { struct Dictionary_2_TKey_TValue_Entry_System_ByteEnum_System_Object___Array__Class *klass; MonitorData *monitor; @@ -1128693,6 +1145038,19 @@ struct Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Object___Class struct Dictionary_2_TKey_TValue_Enumerator_System_ByteEnum_System_Object___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_Dissonance_Audio_Playback_FrameFormat_System_Object_ { + int32_t hashCode; + int32_t next; + struct FrameFormat key; + struct Object *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_Dissonance_Audio_Playback_FrameFormat_System_Object___Boxed { + struct Dictionary_2_TKey_TValue_Entry_Dissonance_Audio_Playback_FrameFormat_System_Object___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_Dissonance_Audio_Playback_FrameFormat_System_Object_ fields; +}; + struct __declspec(align(8)) Dictionary_2_Dissonance_Audio_Playback_FrameFormat_System_Object___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_Dissonance_Audio_Playback_FrameFormat_System_Object___Array *_entries; @@ -1128712,19 +1145070,6 @@ struct Dictionary_2_Dissonance_Audio_Playback_FrameFormat_System_Object_ { struct Dictionary_2_Dissonance_Audio_Playback_FrameFormat_System_Object___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_Dissonance_Audio_Playback_FrameFormat_System_Object_ { - int32_t hashCode; - int32_t next; - struct FrameFormat key; - struct Object *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_Dissonance_Audio_Playback_FrameFormat_System_Object___Boxed { - struct Dictionary_2_TKey_TValue_Entry_Dissonance_Audio_Playback_FrameFormat_System_Object___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_Dissonance_Audio_Playback_FrameFormat_System_Object_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_Dissonance_Audio_Playback_FrameFormat_System_Object___Array { struct Dictionary_2_TKey_TValue_Entry_Dissonance_Audio_Playback_FrameFormat_System_Object___Array__Class *klass; MonitorData *monitor; @@ -1129169,6 +1145514,19 @@ struct Dictionary_2_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat struct Dictionary_2_TKey_TValue_Enumerator_Dissonance_Audio_Playback_FrameFormat_System_Object___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_System_Guid_System_Object_ { + int32_t hashCode; + int32_t next; + struct Guid key; + struct Object *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Guid_System_Object___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Guid_System_Object___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Guid_System_Object_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Guid_System_Object___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Guid_System_Object___Array *_entries; @@ -1129188,19 +1145546,6 @@ struct Dictionary_2_System_Guid_System_Object_ { struct Dictionary_2_System_Guid_System_Object___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Guid_System_Object_ { - int32_t hashCode; - int32_t next; - struct Guid key; - struct Object *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Guid_System_Object___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Guid_System_Object___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Guid_System_Object_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Guid_System_Object___Array { struct Dictionary_2_TKey_TValue_Entry_System_Guid_System_Object___Array__Class *klass; MonitorData *monitor; @@ -1129506,6 +1145851,19 @@ struct Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_Object___Class { struct Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_Object___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_System_Guid_System_UInt32_ { + int32_t hashCode; + int32_t next; + struct Guid key; + uint32_t value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Guid_System_UInt32___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Guid_System_UInt32___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Guid_System_UInt32_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Guid_System_UInt32___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Guid_System_UInt32___Array *_entries; @@ -1129525,19 +1145883,6 @@ struct Dictionary_2_System_Guid_System_UInt32_ { struct Dictionary_2_System_Guid_System_UInt32___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Guid_System_UInt32_ { - int32_t hashCode; - int32_t next; - struct Guid key; - uint32_t value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Guid_System_UInt32___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Guid_System_UInt32___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Guid_System_UInt32_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Guid_System_UInt32___Array { struct Dictionary_2_TKey_TValue_Entry_System_Guid_System_UInt32___Array__Class *klass; MonitorData *monitor; @@ -1129868,6 +1146213,19 @@ struct Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_UInt32___Class { struct Dictionary_2_TKey_TValue_Enumerator_System_Guid_System_UInt32___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Hash128_System_Object_ { + int32_t hashCode; + int32_t next; + struct Hash128 key; + struct Object *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Hash128_System_Object___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Hash128_System_Object___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Hash128_System_Object_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_Hash128_System_Object___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Hash128_System_Object___Array *_entries; @@ -1129887,19 +1146245,6 @@ struct Dictionary_2_UnityEngine_Hash128_System_Object_ { struct Dictionary_2_UnityEngine_Hash128_System_Object___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Hash128_System_Object_ { - int32_t hashCode; - int32_t next; - struct Hash128 key; - struct Object *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Hash128_System_Object___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Hash128_System_Object___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Hash128_System_Object_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Hash128_System_Object___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Hash128_System_Object___Array__Class *klass; MonitorData *monitor; @@ -1130299,6 +1146644,19 @@ struct Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32___Class struct Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int2_System_Int32___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_Pathfinding_Int3_System_Int32_ { + int32_t hashCode; + int32_t next; + struct Int3 key; + int32_t value; +}; + +struct Dictionary_2_TKey_TValue_Entry_Pathfinding_Int3_System_Int32___Boxed { + struct Dictionary_2_TKey_TValue_Entry_Pathfinding_Int3_System_Int32___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_Pathfinding_Int3_System_Int32_ fields; +}; + struct __declspec(align(8)) Dictionary_2_Pathfinding_Int3_System_Int32___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_Pathfinding_Int3_System_Int32___Array *_entries; @@ -1130318,19 +1146676,6 @@ struct Dictionary_2_Pathfinding_Int3_System_Int32_ { struct Dictionary_2_Pathfinding_Int3_System_Int32___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_Pathfinding_Int3_System_Int32_ { - int32_t hashCode; - int32_t next; - struct Int3 key; - int32_t value; -}; - -struct Dictionary_2_TKey_TValue_Entry_Pathfinding_Int3_System_Int32___Boxed { - struct Dictionary_2_TKey_TValue_Entry_Pathfinding_Int3_System_Int32___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_Pathfinding_Int3_System_Int32_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_Pathfinding_Int3_System_Int32___Array { struct Dictionary_2_TKey_TValue_Entry_Pathfinding_Int3_System_Int32___Array__Class *klass; MonitorData *monitor; @@ -1130683,6 +1147028,19 @@ struct Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32___Class struct Dictionary_2_TKey_TValue_Enumerator_Pathfinding_Int3_System_Int32___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct DynamicHeightVirtualizationController_1_T_ContentHeightCacheInfo_System_Object_ value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo___Array *_entries; @@ -1130702,19 +1147060,6 @@ struct Dictionary_2_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizat struct Dictionary_2_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct DynamicHeightVirtualizationController_1_T_ContentHeightCacheInfo_System_Object_ value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo___Array__Class *klass; MonitorData *monitor; @@ -1130943,6 +1147288,21 @@ struct ICollection_1_UnityEngine_UIElements_DynamicHeightVirtualizationControlle struct ICollection_1_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo___VTable vtable; }; +struct DynamicHeightVirtualizationController_1_T_ContentHeightCacheInfo_System_Object__1__VTable { +}; + +struct DynamicHeightVirtualizationController_1_T_ContentHeightCacheInfo_System_Object__1__StaticFields { +}; + +struct DynamicHeightVirtualizationController_1_T_ContentHeightCacheInfo_System_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DynamicHeightVirtualizationController_1_T_ContentHeightCacheInfo_System_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DynamicHeightVirtualizationController_1_T_ContentHeightCacheInfo_System_Object__1__VTable vtable; +}; + struct KeyValuePair_2_System_Int32_UnityEngine_UIElements_DynamicHeightVirtualizationController_1_ContentHeightCacheInfo___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1131275,6 +1147635,23 @@ struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Boolean___Class { struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Boolean___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_ByteEnum_ { + int32_t hashCode; + int32_t next; + int32_t key; + #if defined(_CPLUSPLUS_) + ByteEnum__Enum value; + #else + uint8_t value; + #endif +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_ByteEnum___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_ByteEnum___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_ByteEnum_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_System_ByteEnum___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_ByteEnum___Array *_entries; @@ -1131294,23 +1147671,6 @@ struct Dictionary_2_System_Int32_System_ByteEnum_ { struct Dictionary_2_System_Int32_System_ByteEnum___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_ByteEnum_ { - int32_t hashCode; - int32_t next; - int32_t key; - #if defined(_CPLUSPLUS_) - ByteEnum__Enum value; - #else - uint8_t value; - #endif -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_ByteEnum___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_ByteEnum___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_ByteEnum_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_ByteEnum___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_ByteEnum___Array__Class *klass; MonitorData *monitor; @@ -1131467,6 +1147827,21 @@ struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_System_ByteEnum___C struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_System_ByteEnum___VTable vtable; }; +struct ByteEnum___VTable { +}; + +struct ByteEnum___StaticFields { +}; + +struct ByteEnum___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ByteEnum___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ByteEnum___VTable vtable; +}; + struct KeyValuePair_2_System_Int32_System_ByteEnum___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1131962,6 +1148337,23 @@ struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32___Class { struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int32Enum_ { + int32_t hashCode; + int32_t next; + int32_t key; + #if defined(_CPLUSPLUS_) + Int32Enum__Enum value; + #else + int32_t value; + #endif +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int32Enum___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int32Enum___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int32Enum_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_System_Int32Enum___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int32Enum___Array *_entries; @@ -1131981,23 +1148373,6 @@ struct Dictionary_2_System_Int32_System_Int32Enum_ { struct Dictionary_2_System_Int32_System_Int32Enum___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int32Enum_ { - int32_t hashCode; - int32_t next; - int32_t key; - #if defined(_CPLUSPLUS_) - Int32Enum__Enum value; - #else - int32_t value; - #endif -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int32Enum___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int32Enum___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int32Enum_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int32Enum___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int32Enum___Array__Class *klass; MonitorData *monitor; @@ -1132332,6 +1148707,19 @@ struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32Enum___Class struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int32Enum___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int64_ { + int32_t hashCode; + int32_t next; + int32_t key; + int64_t value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int64___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int64___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int64_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_System_Int64___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int64___Array *_entries; @@ -1132351,19 +1148739,6 @@ struct Dictionary_2_System_Int32_System_Int64_ { struct Dictionary_2_System_Int32_System_Int64___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int64_ { - int32_t hashCode; - int32_t next; - int32_t key; - int64_t value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int64___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int64___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int64_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int64___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Int64___Array__Class *klass; MonitorData *monitor; @@ -1132763,6 +1149138,19 @@ struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int64___Class { struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_System_Int64___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Object_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct Object *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Object___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Object___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Object_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_System_Object___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Object___Array *_entries; @@ -1132782,19 +1149170,6 @@ struct Dictionary_2_System_Int32_System_Object_ { struct Dictionary_2_System_Int32_System_Object___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Object_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct Object *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Object___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Object___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Object_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Object___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Object___Array__Class *klass; MonitorData *monitor; @@ -1133092,25 +1149467,6 @@ struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam___C struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_PlayerFlashlightBeam___VTable vtable; }; -struct __declspec(align(8)) Dictionary_2_System_Int32_UnityEngine_RenderInstancedDataLayout___Fields { - struct Int32__Array *_buckets; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_RenderInstancedDataLayout___Array *_entries; - int32_t _count; - int32_t _freeList; - int32_t _freeCount; - int32_t _version; - struct IEqualityComparer_1_System_Int32_ *_comparer; - struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32_UnityEngine_RenderInstancedDataLayout_ *_keys; - struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_UnityEngine_RenderInstancedDataLayout_ *_values; - struct Object *_syncRoot; -}; - -struct Dictionary_2_System_Int32_UnityEngine_RenderInstancedDataLayout_ { - struct Dictionary_2_System_Int32_UnityEngine_RenderInstancedDataLayout___Class *klass; - MonitorData *monitor; - struct Dictionary_2_System_Int32_UnityEngine_RenderInstancedDataLayout___Fields fields; -}; - struct RenderInstancedDataLayout { int32_t _size_k__BackingField; int32_t _offsetObjectToWorld_k__BackingField; @@ -1133137,6 +1149493,25 @@ struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_RenderInstancedDa struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_RenderInstancedDataLayout_ fields; }; +struct __declspec(align(8)) Dictionary_2_System_Int32_UnityEngine_RenderInstancedDataLayout___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_RenderInstancedDataLayout___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_System_Int32_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32_UnityEngine_RenderInstancedDataLayout_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_UnityEngine_RenderInstancedDataLayout_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_System_Int32_UnityEngine_RenderInstancedDataLayout_ { + struct Dictionary_2_System_Int32_UnityEngine_RenderInstancedDataLayout___Class *klass; + MonitorData *monitor; + struct Dictionary_2_System_Int32_UnityEngine_RenderInstancedDataLayout___Fields fields; +}; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_RenderInstancedDataLayout___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_RenderInstancedDataLayout___Array__Class *klass; MonitorData *monitor; @@ -1133384,6 +1149759,21 @@ struct ICollection_1_UnityEngine_RenderInstancedDataLayout___Class { struct ICollection_1_UnityEngine_RenderInstancedDataLayout___VTable vtable; }; +struct RenderInstancedDataLayout___VTable { +}; + +struct RenderInstancedDataLayout___StaticFields { +}; + +struct RenderInstancedDataLayout___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RenderInstancedDataLayout___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RenderInstancedDataLayout___VTable vtable; +}; + struct KeyValuePair_2_System_Int32_UnityEngine_RenderInstancedDataLayout___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1133578,6 +1149968,19 @@ struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstan struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_RenderInstancedDataLayout___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Single_ { + int32_t hashCode; + int32_t next; + int32_t key; + float value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Single___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Single___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Single_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_System_Single___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Single___Array *_entries; @@ -1133597,19 +1150000,6 @@ struct Dictionary_2_System_Int32_System_Single_ { struct Dictionary_2_System_Int32_System_Single___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Single_ { - int32_t hashCode; - int32_t next; - int32_t key; - float value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Single___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Single___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Single_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Single___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Single___Array__Class *klass; MonitorData *monitor; @@ -1134147,6 +1150537,19 @@ struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4___Cl struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_Vector4___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct TextResourceManager_FontAssetRef value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___Array *_entries; @@ -1134166,19 +1150569,6 @@ struct Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_F struct Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct TextResourceManager_FontAssetRef value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___Array__Class *klass; MonitorData *monitor; @@ -1134407,6 +1150797,21 @@ struct ICollection_1_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ struct ICollection_1_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___VTable vtable; }; +struct TextResourceManager_FontAssetRef___VTable { +}; + +struct TextResourceManager_FontAssetRef___StaticFields { +}; + +struct TextResourceManager_FontAssetRef___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TextResourceManager_FontAssetRef___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TextResourceManager_FontAssetRef___VTable vtable; +}; + struct KeyValuePair_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1134629,6 +1151034,23 @@ struct IDictionary_2_System_Int32Enum_System_Int32Enum___Class { struct IDictionary_2_System_Int32Enum_System_Int32Enum___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32Enum_System_Object_ { + int32_t hashCode; + int32_t next; + #if defined(_CPLUSPLUS_) + Int32Enum__Enum key; + #else + int32_t key; + #endif + struct Object *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32Enum_System_Object___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32Enum_System_Object___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32Enum_System_Object_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32Enum_System_Object___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32Enum_System_Object___Array *_entries; @@ -1134648,23 +1151070,6 @@ struct Dictionary_2_System_Int32Enum_System_Object_ { struct Dictionary_2_System_Int32Enum_System_Object___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32Enum_System_Object_ { - int32_t hashCode; - int32_t next; - #if defined(_CPLUSPLUS_) - Int32Enum__Enum key; - #else - int32_t key; - #endif - struct Object *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32Enum_System_Object___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32Enum_System_Object___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32Enum_System_Object_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int32Enum_System_Object___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32Enum_System_Object___Array__Class *klass; MonitorData *monitor; @@ -1134942,6 +1151347,19 @@ struct Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Object___Clas struct Dictionary_2_TKey_TValue_Enumerator_System_Int32Enum_System_Object___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_UIElements_ComputedStyle_ { + int32_t hashCode; + int32_t next; + int64_t key; + struct ComputedStyle value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_UIElements_ComputedStyle___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_UIElements_ComputedStyle___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_UIElements_ComputedStyle_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int64_UnityEngine_UIElements_ComputedStyle___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_UIElements_ComputedStyle___Array *_entries; @@ -1134961,19 +1151379,6 @@ struct Dictionary_2_System_Int64_UnityEngine_UIElements_ComputedStyle_ { struct Dictionary_2_System_Int64_UnityEngine_UIElements_ComputedStyle___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_UIElements_ComputedStyle_ { - int32_t hashCode; - int32_t next; - int64_t key; - struct ComputedStyle value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_UIElements_ComputedStyle___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_UIElements_ComputedStyle___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_UIElements_ComputedStyle_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_UIElements_ComputedStyle___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_UIElements_ComputedStyle___Array__Class *klass; MonitorData *monitor; @@ -1135418,6 +1151823,19 @@ struct Dictionary_2_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_C struct Dictionary_2_TKey_TValue_Enumerator_System_Int64_UnityEngine_UIElements_ComputedStyle___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int64_System_Object_ { + int32_t hashCode; + int32_t next; + int64_t key; + struct Object *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int64_System_Object___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int64_System_Object___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int64_System_Object_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int64_System_Object___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int64_System_Object___Array *_entries; @@ -1135437,19 +1151855,6 @@ struct Dictionary_2_System_Int64_System_Object_ { struct Dictionary_2_System_Int64_System_Object___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int64_System_Object_ { - int32_t hashCode; - int32_t next; - int64_t key; - struct Object *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int64_System_Object___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int64_System_Object___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int64_System_Object_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int64_System_Object___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int64_System_Object___Array__Class *klass; MonitorData *monitor; @@ -1135780,6 +1152185,19 @@ struct Dictionary_2_TKey_TValue_Enumerator_System_Int64_System_Object___Class { struct Dictionary_2_TKey_TValue_Enumerator_System_Int64_System_Object___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_System_IntPtr_System_Object_ { + int32_t hashCode; + int32_t next; + void *key; + struct Object *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_IntPtr_System_Object___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_IntPtr_System_Object___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_IntPtr_System_Object_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_IntPtr_System_Object___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_IntPtr_System_Object___Array *_entries; @@ -1135799,19 +1152217,6 @@ struct Dictionary_2_System_IntPtr_System_Object_ { struct Dictionary_2_System_IntPtr_System_Object___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_IntPtr_System_Object_ { - int32_t hashCode; - int32_t next; - void *key; - struct Object *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_IntPtr_System_Object___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_IntPtr_System_Object___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_IntPtr_System_Object_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_IntPtr_System_Object___Array { struct Dictionary_2_TKey_TValue_Entry_System_IntPtr_System_Object___Array__Class *klass; MonitorData *monitor; @@ -1136211,6 +1152616,19 @@ struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_Int struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Utilities_InternedString___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_System_Object_ { + int32_t hashCode; + int32_t next; + struct InternedString key; + struct Object *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_System_Object___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_System_Object___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_System_Object_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_System_Object___Array *_entries; @@ -1136230,19 +1152648,6 @@ struct Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_Obje struct Dictionary_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_System_Object_ { - int32_t hashCode; - int32_t next; - struct InternedString key; - struct Object *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_System_Object___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_System_Object___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_System_Object_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_System_Object___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_InputSystem_Utilities_InternedString_System_Object___Array__Class *klass; MonitorData *monitor; @@ -1136589,6 +1152994,19 @@ struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_Int struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_InputSystem_Utilities_InternedString_UnityEngine_InputSystem_Layouts_InputControlLayout_Collection_PrecompiledLayout___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_ { + int32_t hashCode; + int32_t next; + struct IpQCkqlgJLyrFpAOyBfUxXQpJsWK key; + struct Object *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object___Boxed { + struct Dictionary_2_TKey_TValue_Entry_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_ fields; +}; + struct __declspec(align(8)) Dictionary_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object___Array *_entries; @@ -1136608,19 +1153026,6 @@ struct Dictionary_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_ { struct Dictionary_2_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_ { - int32_t hashCode; - int32_t next; - struct IpQCkqlgJLyrFpAOyBfUxXQpJsWK key; - struct Object *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object___Boxed { - struct Dictionary_2_TKey_TValue_Entry_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object___Array { struct Dictionary_2_TKey_TValue_Entry_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object___Array__Class *klass; MonitorData *monitor; @@ -1136951,6 +1153356,19 @@ struct Dictionary_2_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_O struct Dictionary_2_TKey_TValue_Enumerator_IpQCkqlgJLyrFpAOyBfUxXQpJsWK_System_Object___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_NetworkId_System_Object_ { + int32_t hashCode; + int32_t next; + struct NetworkId key; + struct Object *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_NetworkId_System_Object___Boxed { + struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_NetworkId_System_Object___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_NetworkId_System_Object_ fields; +}; + struct __declspec(align(8)) Dictionary_2_Photon_Bolt_NetworkId_System_Object___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_NetworkId_System_Object___Array *_entries; @@ -1136970,19 +1153388,6 @@ struct Dictionary_2_Photon_Bolt_NetworkId_System_Object_ { struct Dictionary_2_Photon_Bolt_NetworkId_System_Object___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_NetworkId_System_Object_ { - int32_t hashCode; - int32_t next; - struct NetworkId key; - struct Object *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_NetworkId_System_Object___Boxed { - struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_NetworkId_System_Object___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_NetworkId_System_Object_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_NetworkId_System_Object___Array { struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_NetworkId_System_Object___Array__Class *klass; MonitorData *monitor; @@ -1137313,6 +1153718,19 @@ struct Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object__ struct Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_System_Object___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ { + int32_t hashCode; + int32_t next; + struct Object *key; + struct AsyncOperationHandle_1_System_Object_ value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___Array *_entries; @@ -1137332,19 +1153750,6 @@ struct Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations struct Dictionary_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ { - int32_t hashCode; - int32_t next; - struct Object *key; - struct AsyncOperationHandle_1_System_Object_ value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___Array { struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___Array__Class *klass; MonitorData *monitor; @@ -1137550,6 +1153955,21 @@ struct ICollection_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperati struct ICollection_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__1__VTable vtable; }; +struct AsyncOperationHandle_1_System_Object__1__VTable { +}; + +struct AsyncOperationHandle_1_System_Object__1__StaticFields { +}; + +struct AsyncOperationHandle_1_System_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct AsyncOperationHandle_1_System_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct AsyncOperationHandle_1_System_Object__1__VTable vtable; +}; + struct KeyValuePair_2_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1137813,6 +1154233,19 @@ struct Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceMan struct Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Boolean_ { + int32_t hashCode; + int32_t next; + struct Object *key; + bool value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Boolean___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Boolean___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Boolean_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Object_System_Boolean___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Boolean___Array *_entries; @@ -1137832,19 +1154265,6 @@ struct Dictionary_2_System_Object_System_Boolean_ { struct Dictionary_2_System_Object_System_Boolean___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Boolean_ { - int32_t hashCode; - int32_t next; - struct Object *key; - bool value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Boolean___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Boolean___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Boolean_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Boolean___Array { struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Boolean___Array__Class *klass; MonitorData *monitor; @@ -1138175,6 +1154595,19 @@ struct Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Boolean___Class struct Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Boolean___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Bounds_ { + int32_t hashCode; + int32_t next; + struct Object *key; + struct Bounds value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Bounds___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Bounds___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Bounds_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Object_UnityEngine_Bounds___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Bounds___Array *_entries; @@ -1138194,19 +1154627,6 @@ struct Dictionary_2_System_Object_UnityEngine_Bounds_ { struct Dictionary_2_System_Object_UnityEngine_Bounds___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Bounds_ { - int32_t hashCode; - int32_t next; - struct Object *key; - struct Bounds value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Bounds___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Bounds___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Bounds_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Bounds___Array { struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Bounds___Array__Class *klass; MonitorData *monitor; @@ -1138537,6 +1154957,19 @@ struct Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds___Cl struct Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Bounds___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Byte_ { + int32_t hashCode; + int32_t next; + struct Object *key; + uint8_t value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Byte___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Byte___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Byte_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Object_System_Byte___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Byte___Array *_entries; @@ -1138556,19 +1154989,6 @@ struct Dictionary_2_System_Object_System_Byte_ { struct Dictionary_2_System_Object_System_Byte___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Byte_ { - int32_t hashCode; - int32_t next; - struct Object *key; - uint8_t value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Byte___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Byte___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Byte_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Byte___Array { struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Byte___Array__Class *klass; MonitorData *monitor; @@ -1138899,6 +1155319,19 @@ struct Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Byte___Class { struct Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Byte___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Color_ { + int32_t hashCode; + int32_t next; + struct Object *key; + struct Color value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Color___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Color___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Color_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Object_UnityEngine_Color___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Color___Array *_entries; @@ -1138918,19 +1155351,6 @@ struct Dictionary_2_System_Object_UnityEngine_Color_ { struct Dictionary_2_System_Object_UnityEngine_Color___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Color_ { - int32_t hashCode; - int32_t next; - struct Object *key; - struct Color value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Color___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Color___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Color_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Color___Array { struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Color___Array__Class *klass; MonitorData *monitor; @@ -1139261,6 +1155681,19 @@ struct Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color___Cla struct Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Color___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Color32_ { + int32_t hashCode; + int32_t next; + struct Object *key; + struct Color32 value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Color32___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Color32___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Color32_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Object_UnityEngine_Color32___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Color32___Array *_entries; @@ -1139280,19 +1155713,6 @@ struct Dictionary_2_System_Object_UnityEngine_Color32_ { struct Dictionary_2_System_Object_UnityEngine_Color32___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Color32_ { - int32_t hashCode; - int32_t next; - struct Object *key; - struct Color32 value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Color32___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Color32___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Color32_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Color32___Array { struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Color32___Array__Class *klass; MonitorData *monitor; @@ -1139712,6 +1156132,23 @@ struct Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32___Class { struct Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Int32Enum_ { + int32_t hashCode; + int32_t next; + struct Object *key; + #if defined(_CPLUSPLUS_) + Int32Enum__Enum value; + #else + int32_t value; + #endif +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Int32Enum___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Int32Enum___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Int32Enum_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Object_System_Int32Enum___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Int32Enum___Array *_entries; @@ -1139731,23 +1156168,6 @@ struct Dictionary_2_System_Object_System_Int32Enum_ { struct Dictionary_2_System_Object_System_Int32Enum___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Int32Enum_ { - int32_t hashCode; - int32_t next; - struct Object *key; - #if defined(_CPLUSPLUS_) - Int32Enum__Enum value; - #else - int32_t value; - #endif -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Int32Enum___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Int32Enum___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Int32Enum_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Int32Enum___Array { struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Int32Enum___Array__Class *klass; MonitorData *monitor; @@ -1139976,6 +1156396,19 @@ struct Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum___Clas struct Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Int32Enum___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ { + int32_t hashCode; + int32_t next; + struct Object *key; + struct ObjectSurface value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Array *_entries; @@ -1139995,19 +1156428,6 @@ struct Dictionary_2_System_Object_Opsive_UltimateCharacterController_SurfaceSyst struct Dictionary_2_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ { - int32_t hashCode; - int32_t next; - struct Object *key; - struct ObjectSurface value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Array { struct Dictionary_2_TKey_TValue_Entry_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___Array__Class *klass; MonitorData *monitor; @@ -1140338,6 +1156758,19 @@ struct Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacte struct Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ { + int32_t hashCode; + int32_t next; + struct Object *key; + struct OriginalMaterialValue value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___Array *_entries; @@ -1140357,19 +1156790,6 @@ struct Dictionary_2_System_Object_Opsive_UltimateCharacterController_Utility_Ori struct Dictionary_2_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ { - int32_t hashCode; - int32_t next; - struct Object *key; - struct OriginalMaterialValue value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___Array { struct Dictionary_2_TKey_TValue_Entry_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___Array__Class *klass; MonitorData *monitor; @@ -1140700,6 +1157120,19 @@ struct Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacte struct Dictionary_2_TKey_TValue_Enumerator_System_Object_Opsive_UltimateCharacterController_Utility_OriginalMaterialValue___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Playables_Playable_ { + int32_t hashCode; + int32_t next; + struct Object *key; + struct Playable value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Playables_Playable___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Playables_Playable___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Playables_Playable_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Object_UnityEngine_Playables_Playable___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Playables_Playable___Array *_entries; @@ -1140719,19 +1157152,6 @@ struct Dictionary_2_System_Object_UnityEngine_Playables_Playable_ { struct Dictionary_2_System_Object_UnityEngine_Playables_Playable___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Playables_Playable_ { - int32_t hashCode; - int32_t next; - struct Object *key; - struct Playable value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Playables_Playable___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Playables_Playable___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Playables_Playable_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Playables_Playable___Array { struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Playables_Playable___Array__Class *klass; MonitorData *monitor; @@ -1141062,6 +1157482,19 @@ struct Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_P struct Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Playables_Playable___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ { + int32_t hashCode; + int32_t next; + struct Object *key; + struct ProbeVolumeBakingProcessSettings value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___Array *_entries; @@ -1141081,19 +1157514,6 @@ struct Dictionary_2_System_Object_UnityEngine_Experimental_Rendering_ProbeVolume struct Dictionary_2_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ { - int32_t hashCode; - int32_t next; - struct Object *key; - struct ProbeVolumeBakingProcessSettings value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___Array { struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___Array__Class *klass; MonitorData *monitor; @@ -1141424,6 +1157844,19 @@ struct Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimenta struct Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeVolumeBakingProcessSettings___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Resources_ResourceLocator_ { + int32_t hashCode; + int32_t next; + struct Object *key; + struct ResourceLocator value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Resources_ResourceLocator___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Resources_ResourceLocator___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Resources_ResourceLocator_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Object_System_Resources_ResourceLocator___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Resources_ResourceLocator___Array *_entries; @@ -1141443,19 +1157876,6 @@ struct Dictionary_2_System_Object_System_Resources_ResourceLocator_ { struct Dictionary_2_System_Object_System_Resources_ResourceLocator___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Resources_ResourceLocator_ { - int32_t hashCode; - int32_t next; - struct Object *key; - struct ResourceLocator value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Resources_ResourceLocator___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Resources_ResourceLocator___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Resources_ResourceLocator_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Resources_ResourceLocator___Array { struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Resources_ResourceLocator___Array__Class *klass; MonitorData *monitor; @@ -1141786,6 +1158206,19 @@ struct Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Resources_Resour struct Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Resources_ResourceLocator___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Single_ { + int32_t hashCode; + int32_t next; + struct Object *key; + float value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Single___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Single___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Single_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Object_System_Single___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Single___Array *_entries; @@ -1141805,19 +1158238,6 @@ struct Dictionary_2_System_Object_System_Single_ { struct Dictionary_2_System_Object_System_Single___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Single_ { - int32_t hashCode; - int32_t next; - struct Object *key; - float value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Single___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Single___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Single_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Single___Array { struct Dictionary_2_TKey_TValue_Entry_System_Object_System_Single___Array__Class *klass; MonitorData *monitor; @@ -1142148,6 +1158568,19 @@ struct Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Single___Class { struct Dictionary_2_TKey_TValue_Enumerator_System_Object_System_Single___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ { + int32_t hashCode; + int32_t next; + struct Object *key; + struct StylePropertyValue value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue___Array *_entries; @@ -1142167,19 +1158600,6 @@ struct Dictionary_2_System_Object_UnityEngine_UIElements_StyleSheets_StyleProper struct Dictionary_2_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ { - int32_t hashCode; - int32_t next; - struct Object *key; - struct StylePropertyValue value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue___Array { struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue___Array__Class *klass; MonitorData *monitor; @@ -1142510,6 +1158930,19 @@ struct Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_ struct Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleSheets_StylePropertyValue___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_UIElements_TextureId_ { + int32_t hashCode; + int32_t next; + struct Object *key; + struct TextureId value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_UIElements_TextureId___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_UIElements_TextureId___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_UIElements_TextureId_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Object_UnityEngine_UIElements_TextureId___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_UIElements_TextureId___Array *_entries; @@ -1142529,19 +1158962,6 @@ struct Dictionary_2_System_Object_UnityEngine_UIElements_TextureId_ { struct Dictionary_2_System_Object_UnityEngine_UIElements_TextureId___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_UIElements_TextureId_ { - int32_t hashCode; - int32_t next; - struct Object *key; - struct TextureId value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_UIElements_TextureId___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_UIElements_TextureId___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_UIElements_TextureId_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_UIElements_TextureId___Array { struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_UIElements_TextureId___Array__Class *klass; MonitorData *monitor; @@ -1142872,6 +1159292,19 @@ struct Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_ struct Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_TextureId___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_System_Object_System_TimeSpan_ { + int32_t hashCode; + int32_t next; + struct Object *key; + struct TimeSpan value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Object_System_TimeSpan___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Object_System_TimeSpan___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Object_System_TimeSpan_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Object_System_TimeSpan___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Object_System_TimeSpan___Array *_entries; @@ -1142891,19 +1159324,6 @@ struct Dictionary_2_System_Object_System_TimeSpan_ { struct Dictionary_2_System_Object_System_TimeSpan___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Object_System_TimeSpan_ { - int32_t hashCode; - int32_t next; - struct Object *key; - struct TimeSpan value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Object_System_TimeSpan___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Object_System_TimeSpan___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Object_System_TimeSpan_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Object_System_TimeSpan___Array { struct Dictionary_2_TKey_TValue_Entry_System_Object_System_TimeSpan___Array__Class *klass; MonitorData *monitor; @@ -1143234,6 +1159654,19 @@ struct Dictionary_2_TKey_TValue_Enumerator_System_Object_System_TimeSpan___Class struct Dictionary_2_TKey_TValue_Enumerator_System_Object_System_TimeSpan___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_System_Object_UdpKit_UdpEndPoint_ { + int32_t hashCode; + int32_t next; + struct Object *key; + struct UdpEndPoint value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Object_UdpKit_UdpEndPoint___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Object_UdpKit_UdpEndPoint___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Object_UdpKit_UdpEndPoint_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Object_UdpKit_UdpEndPoint___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Object_UdpKit_UdpEndPoint___Array *_entries; @@ -1143253,19 +1159686,6 @@ struct Dictionary_2_System_Object_UdpKit_UdpEndPoint_ { struct Dictionary_2_System_Object_UdpKit_UdpEndPoint___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Object_UdpKit_UdpEndPoint_ { - int32_t hashCode; - int32_t next; - struct Object *key; - struct UdpEndPoint value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Object_UdpKit_UdpEndPoint___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Object_UdpKit_UdpEndPoint___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Object_UdpKit_UdpEndPoint_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Object_UdpKit_UdpEndPoint___Array { struct Dictionary_2_TKey_TValue_Entry_System_Object_UdpKit_UdpEndPoint___Array__Class *klass; MonitorData *monitor; @@ -1143596,6 +1160016,19 @@ struct Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint___Cl struct Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_UdpEndPoint___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Vector2_ { + int32_t hashCode; + int32_t next; + struct Object *key; + struct Vector2 value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Vector2___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Vector2___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Vector2_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Object_UnityEngine_Vector2___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Vector2___Array *_entries; @@ -1143615,19 +1160048,6 @@ struct Dictionary_2_System_Object_UnityEngine_Vector2_ { struct Dictionary_2_System_Object_UnityEngine_Vector2___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Vector2_ { - int32_t hashCode; - int32_t next; - struct Object *key; - struct Vector2 value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Vector2___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Vector2___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Vector2_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Vector2___Array { struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Vector2___Array__Class *klass; MonitorData *monitor; @@ -1143958,6 +1160378,19 @@ struct Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2___C struct Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector2___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Vector3_ { + int32_t hashCode; + int32_t next; + struct Object *key; + struct Vector3 value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Vector3___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Vector3___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Vector3_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Object_UnityEngine_Vector3___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Vector3___Array *_entries; @@ -1143977,19 +1160410,6 @@ struct Dictionary_2_System_Object_UnityEngine_Vector3_ { struct Dictionary_2_System_Object_UnityEngine_Vector3___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Vector3_ { - int32_t hashCode; - int32_t next; - struct Object *key; - struct Vector3 value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Vector3___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Vector3___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Vector3_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Vector3___Array { struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Vector3___Array__Class *klass; MonitorData *monitor; @@ -1144320,6 +1160740,19 @@ struct Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3___C struct Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Vector3___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ { + int32_t hashCode; + int32_t next; + struct Object *key; + struct InputControlLayout_ControlItem value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Array *_entries; @@ -1144339,19 +1160772,6 @@ struct Dictionary_2_System_Object_UnityEngine_InputSystem_Layouts_InputControlLa struct Dictionary_2_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ { - int32_t hashCode; - int32_t next; - struct Object *key; - struct InputControlLayout_ControlItem value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Array { struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___Array__Class *klass; MonitorData *monitor; @@ -1144682,6 +1161102,19 @@ struct Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem struct Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Layouts_InputControlLayout_ControlItem___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ { + int32_t hashCode; + int32_t next; + struct Object *key; + struct InputSystemUIInputModule_InputActionReferenceState value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___Array *_entries; @@ -1144701,19 +1161134,6 @@ struct Dictionary_2_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputM struct Dictionary_2_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ { - int32_t hashCode; - int32_t next; - struct Object *key; - struct InputSystemUIInputModule_InputActionReferenceState value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___Array { struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___Array__Class *klass; MonitorData *monitor; @@ -1145044,6 +1161464,19 @@ struct Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem struct Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_UI_InputSystemUIInputModule_InputActionReferenceState___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ { + int32_t hashCode; + int32_t next; + struct Object *key; + struct JsonParser_JsonValue value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Array *_entries; @@ -1145063,19 +1161496,6 @@ struct Dictionary_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_J struct Dictionary_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ { - int32_t hashCode; - int32_t next; - struct Object *key; - struct JsonParser_JsonValue value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Array { struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Array__Class *klass; MonitorData *monitor; @@ -1145353,6 +1161773,19 @@ struct Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem struct Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ { + int32_t hashCode; + int32_t next; + struct Object *key; + struct ProbeReferenceVolume_RegId value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___Array *_entries; @@ -1145372,19 +1161805,6 @@ struct Dictionary_2_System_Object_UnityEngine_Experimental_Rendering_ProbeRefere struct Dictionary_2_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ { - int32_t hashCode; - int32_t next; - struct Object *key; - struct ProbeReferenceVolume_RegId value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___Array { struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___Array__Class *klass; MonitorData *monitor; @@ -1145715,6 +1162135,19 @@ struct Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimenta struct Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback_ { + int32_t hashCode; + int32_t next; + struct Object *key; + struct ProtocolClient_AckCallback value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback___Array *_entries; @@ -1145734,19 +1162167,6 @@ struct Dictionary_2_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback_ { struct Dictionary_2_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback_ { - int32_t hashCode; - int32_t next; - struct Object *key; - struct ProtocolClient_AckCallback value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback___Array { struct Dictionary_2_TKey_TValue_Entry_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback___Array__Class *klass; MonitorData *monitor; @@ -1146077,6 +1162497,19 @@ struct Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_Protoco struct Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_AckCallback___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_ { + int32_t hashCode; + int32_t next; + struct Object *key; + struct ProtocolClient_MsgHandler value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler___Array *_entries; @@ -1146096,19 +1162529,6 @@ struct Dictionary_2_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_ { struct Dictionary_2_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_ { - int32_t hashCode; - int32_t next; - struct Object *key; - struct ProtocolClient_MsgHandler value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler___Array { struct Dictionary_2_TKey_TValue_Entry_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler___Array__Class *klass; MonitorData *monitor; @@ -1146439,6 +1162859,19 @@ struct Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_Protoco struct Dictionary_2_TKey_TValue_Enumerator_System_Object_UdpKit_Protocol_ProtocolClient_MsgHandler___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ { + int32_t hashCode; + int32_t next; + struct Object *key; + struct StyleComplexSelector_PseudoStateData value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___Array *_entries; @@ -1146458,19 +1162891,6 @@ struct Dictionary_2_System_Object_UnityEngine_UIElements_StyleComplexSelector_Ps struct Dictionary_2_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ { - int32_t hashCode; - int32_t next; - struct Object *key; - struct StyleComplexSelector_PseudoStateData value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___Array { struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___Array__Class *klass; MonitorData *monitor; @@ -1146801,6 +1163221,19 @@ struct Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_ struct Dictionary_2_TKey_TValue_Enumerator_System_Object_UnityEngine_UIElements_StyleComplexSelector_PseudoStateData___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_PrefabId_System_Object_ { + int32_t hashCode; + int32_t next; + struct PrefabId key; + struct Object *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_PrefabId_System_Object___Boxed { + struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_PrefabId_System_Object___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_PrefabId_System_Object_ fields; +}; + struct __declspec(align(8)) Dictionary_2_Photon_Bolt_PrefabId_System_Object___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_PrefabId_System_Object___Array *_entries; @@ -1146820,19 +1163253,6 @@ struct Dictionary_2_Photon_Bolt_PrefabId_System_Object_ { struct Dictionary_2_Photon_Bolt_PrefabId_System_Object___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_PrefabId_System_Object_ { - int32_t hashCode; - int32_t next; - struct PrefabId key; - struct Object *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_PrefabId_System_Object___Boxed { - struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_PrefabId_System_Object___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_PrefabId_System_Object_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_PrefabId_System_Object___Array { struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_PrefabId_System_Object___Array__Class *klass; MonitorData *monitor; @@ -1147301,6 +1163721,19 @@ struct Dictionary_2_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample_ struct Dictionary_2_TKey_TValue_Enumerator_System_Single_SplineMesh_CurveSample___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object_ { + int32_t hashCode; + int32_t next; + struct TerrainTileCoord key; + struct Object *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object___Array *_entries; @@ -1147320,19 +1163753,6 @@ struct Dictionary_2_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object_ { struct Dictionary_2_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object_ { - int32_t hashCode; - int32_t next; - struct TerrainTileCoord key; - struct Object *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_TerrainUtils_TerrainTileCoord_System_Object___Array__Class *klass; MonitorData *monitor; @@ -1147732,6 +1164152,19 @@ struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_Trackable struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId_System_Object___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_TypeId_System_Object_ { + int32_t hashCode; + int32_t next; + struct TypeId key; + struct Object *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_TypeId_System_Object___Boxed { + struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_TypeId_System_Object___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_TypeId_System_Object_ fields; +}; + struct __declspec(align(8)) Dictionary_2_Photon_Bolt_TypeId_System_Object___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_TypeId_System_Object___Array *_entries; @@ -1147751,19 +1164184,6 @@ struct Dictionary_2_Photon_Bolt_TypeId_System_Object_ { struct Dictionary_2_Photon_Bolt_TypeId_System_Object___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_TypeId_System_Object_ { - int32_t hashCode; - int32_t next; - struct TypeId key; - struct Object *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_TypeId_System_Object___Boxed { - struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_TypeId_System_Object___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_TypeId_System_Object_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_TypeId_System_Object___Array { struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_TypeId_System_Object___Array__Class *klass; MonitorData *monitor; @@ -1148637,6 +1165057,19 @@ struct Dictionary_2_TKey_TValue_Enumerator_System_UInt32_SessionClient___Class { struct Dictionary_2_TKey_TValue_Enumerator_System_UInt32_SessionClient___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_System_UInt64_System_Object_ { + int32_t hashCode; + int32_t next; + uint64_t key; + struct Object *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_UInt64_System_Object___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_UInt64_System_Object___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_UInt64_System_Object_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_UInt64_System_Object___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_UInt64_System_Object___Array *_entries; @@ -1148656,19 +1165089,6 @@ struct Dictionary_2_System_UInt64_System_Object_ { struct Dictionary_2_System_UInt64_System_Object___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_UInt64_System_Object_ { - int32_t hashCode; - int32_t next; - uint64_t key; - struct Object *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_UInt64_System_Object___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_UInt64_System_Object___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_UInt64_System_Object_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_UInt64_System_Object___Array { struct Dictionary_2_TKey_TValue_Entry_System_UInt64_System_Object___Array__Class *klass; MonitorData *monitor; @@ -1148994,6 +1165414,19 @@ struct Dictionary_2_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_Su struct Dictionary_2_TKey_TValue_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_Opsive_UltimateCharacterController_SurfaceSystem_ObjectSurface___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpChannelName_System_Object_ { + int32_t hashCode; + int32_t next; + struct UdpChannelName key; + struct Object *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpChannelName_System_Object___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpChannelName_System_Object___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpChannelName_System_Object_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UdpKit_UdpChannelName_System_Object___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpChannelName_System_Object___Array *_entries; @@ -1149013,19 +1165446,6 @@ struct Dictionary_2_UdpKit_UdpChannelName_System_Object_ { struct Dictionary_2_UdpKit_UdpChannelName_System_Object___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpChannelName_System_Object_ { - int32_t hashCode; - int32_t next; - struct UdpChannelName key; - struct Object *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpChannelName_System_Object___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpChannelName_System_Object___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpChannelName_System_Object_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpChannelName_System_Object___Array { struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpChannelName_System_Object___Array__Class *klass; MonitorData *monitor; @@ -1149356,6 +1165776,19 @@ struct Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object__ struct Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpChannelName_System_Object___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_Object_ { + int32_t hashCode; + int32_t next; + struct UdpEndPoint key; + struct Object *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_Object___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_Object___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_Object_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UdpKit_UdpEndPoint_System_Object___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_Object___Array *_entries; @@ -1149375,19 +1165808,6 @@ struct Dictionary_2_UdpKit_UdpEndPoint_System_Object_ { struct Dictionary_2_UdpKit_UdpEndPoint_System_Object___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_Object_ { - int32_t hashCode; - int32_t next; - struct UdpEndPoint key; - struct Object *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_Object___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_Object___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_Object_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_Object___Array { struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_Object___Array__Class *klass; MonitorData *monitor; @@ -1149787,6 +1166207,19 @@ struct Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32___Cl struct Dictionary_2_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_System_UInt32___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_UniqueId_System_Object_ { + int32_t hashCode; + int32_t next; + struct UniqueId key; + struct Object *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_UniqueId_System_Object___Boxed { + struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_UniqueId_System_Object___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_UniqueId_System_Object_ fields; +}; + struct __declspec(align(8)) Dictionary_2_Photon_Bolt_UniqueId_System_Object___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_UniqueId_System_Object___Array *_entries; @@ -1149806,19 +1166239,6 @@ struct Dictionary_2_Photon_Bolt_UniqueId_System_Object_ { struct Dictionary_2_Photon_Bolt_UniqueId_System_Object___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_UniqueId_System_Object_ { - int32_t hashCode; - int32_t next; - struct UniqueId key; - struct Object *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_UniqueId_System_Object___Boxed { - struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_UniqueId_System_Object___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_UniqueId_System_Object_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_UniqueId_System_Object___Array { struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_UniqueId_System_Object___Array__Class *klass; MonitorData *monitor; @@ -1150263,6 +1166683,19 @@ struct Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object___ struct Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_System_Object___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Vector3_System_Int32_ { + int32_t hashCode; + int32_t next; + struct Vector3 key; + int32_t value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Vector3_System_Int32___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Vector3_System_Int32___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Vector3_System_Int32_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_Vector3_System_Int32___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Vector3_System_Int32___Array *_entries; @@ -1150282,19 +1166715,6 @@ struct Dictionary_2_UnityEngine_Vector3_System_Int32_ { struct Dictionary_2_UnityEngine_Vector3_System_Int32___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Vector3_System_Int32_ { - int32_t hashCode; - int32_t next; - struct Vector3 key; - int32_t value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Vector3_System_Int32___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Vector3_System_Int32___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Vector3_System_Int32_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Vector3_System_Int32___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Vector3_System_Int32___Array__Class *klass; MonitorData *monitor; @@ -1150551,6 +1166971,19 @@ struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32___Cl struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Vector3_System_Int32___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Vector3Int_System_Object_ { + int32_t hashCode; + int32_t next; + struct Vector3Int key; + struct Object *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Vector3Int_System_Object___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Vector3Int_System_Object___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Vector3Int_System_Object_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_Vector3Int_System_Object___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Vector3Int_System_Object___Array *_entries; @@ -1150570,19 +1167003,6 @@ struct Dictionary_2_UnityEngine_Vector3Int_System_Object_ { struct Dictionary_2_UnityEngine_Vector3Int_System_Object___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Vector3Int_System_Object_ { - int32_t hashCode; - int32_t next; - struct Vector3Int key; - struct Object *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Vector3Int_System_Object___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Vector3Int_System_Object___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Vector3Int_System_Object_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Vector3Int_System_Object___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Vector3Int_System_Object___Array__Class *klass; MonitorData *monitor; @@ -1150982,6 +1167402,19 @@ struct Dictionary_2_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS struct Dictionary_2_TKey_TValue_Enumerator_MS_Internal_Xml_Cache_XPathNodeRef_MS_Internal_Xml_Cache_XPathNodeRef___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_ { + int32_t hashCode; + int32_t next; + struct JSONDeserialization_TaskField key; + struct Object *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object___Boxed { + struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_ fields; +}; + struct __declspec(align(8)) Dictionary_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object___Array *_entries; @@ -1151001,19 +1167434,6 @@ struct Dictionary_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_Syste struct Dictionary_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_ { - int32_t hashCode; - int32_t next; - struct JSONDeserialization_TaskField key; - struct Object *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object___Boxed { - struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object___Array { struct Dictionary_2_TKey_TValue_Entry_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_System_Object___Array__Class *klass; MonitorData *monitor; @@ -1151413,6 +1167833,19 @@ struct Dictionary_2_TKey_TValue_Enumerator_System_ComponentModel_Design_Serializ struct Dictionary_2_TKey_TValue_Enumerator_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry_System_ComponentModel_Design_Serialization_MemberRelationshipService_RelationshipEntry___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_ { + int32_t hashCode; + int32_t next; + struct ProbeReferenceVolume_RegId key; + struct Object *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object___Array *_entries; @@ -1151432,19 +1167865,6 @@ struct Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegI struct Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_ { - int32_t hashCode; - int32_t next; - struct ProbeReferenceVolume_RegId key; - struct Object *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_System_Object___Array__Class *klass; MonitorData *monitor; @@ -1151913,6 +1168333,19 @@ struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_Pr struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_RegId_UnityEngine_Experimental_Rendering_ProbeBrickIndex_CellIndexUpdateInfo___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object_ { + int32_t hashCode; + int32_t next; + struct ProbeReferenceVolume_Volume key; + struct Object *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object___Array *_entries; @@ -1151932,19 +1168365,6 @@ struct Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volu struct Dictionary_2_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object_ { - int32_t hashCode; - int32_t next; - struct ProbeReferenceVolume_Volume key; - struct Object *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object___Array__Class *klass; MonitorData *monitor; @@ -1152275,6 +1168695,19 @@ struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_Pr struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Experimental_Rendering_ProbeReferenceVolume_Volume_System_Object___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object_ { + int32_t hashCode; + int32_t next; + struct Regex_CachedCodeEntryKey key; + struct Object *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object___Array *_entries; @@ -1152294,19 +1168727,6 @@ struct Dictionary_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_Syst struct Dictionary_2_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object_ { - int32_t hashCode; - int32_t next; - struct Regex_CachedCodeEntryKey key; - struct Object *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object___Array { struct Dictionary_2_TKey_TValue_Entry_System_Text_RegularExpressions_Regex_CachedCodeEntryKey_System_Object___Array__Class *klass; MonitorData *monitor; @@ -1152706,6 +1169126,23 @@ struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyA struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_ { + int32_t hashCode; + int32_t next; + struct StylePropertyAnimationSystem_ElementPropertyPair key; + #if defined(_CPLUSPLUS_) + Int32Enum__Enum value; + #else + int32_t value; + #endif +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum___Array *_entries; @@ -1152725,23 +1169162,6 @@ struct Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementP struct Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_ { - int32_t hashCode; - int32_t next; - struct StylePropertyAnimationSystem_ElementPropertyPair key; - #if defined(_CPLUSPLUS_) - Int32Enum__Enum value; - #else - int32_t value; - #endif -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum___Array__Class *klass; MonitorData *monitor; @@ -1153076,6 +1169496,19 @@ struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyA struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Int32Enum___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object_ { + int32_t hashCode; + int32_t next; + struct StylePropertyAnimationSystem_ElementPropertyPair key; + struct Object *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object___Array *_entries; @@ -1153095,19 +1169528,6 @@ struct Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementP struct Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object_ { - int32_t hashCode; - int32_t next; - struct StylePropertyAnimationSystem_ElementPropertyPair key; - struct Object *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object___Array__Class *klass; MonitorData *monitor; @@ -1153438,6 +1169858,19 @@ struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyA struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_System_Object___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object_ { + int32_t hashCode; + int32_t next; + struct StyleSheetCache_SheetHandleKey key; + struct Object *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object___Array *_entries; @@ -1153457,19 +1169890,6 @@ struct Dictionary_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHand struct Dictionary_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object_ { - int32_t hashCode; - int32_t next; - struct StyleSheetCache_SheetHandleKey key; - struct Object *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object___Array__Class *klass; MonitorData *monitor; @@ -1153914,6 +1170334,19 @@ struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_St struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_System_Object___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_ { + int32_t hashCode; + int32_t next; + struct WetDecalSystem_MaterialBatchId key; + struct Object *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object___Boxed { + struct Dictionary_2_TKey_TValue_Entry_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_ fields; +}; + struct __declspec(align(8)) Dictionary_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object___Array *_entries; @@ -1153933,19 +1170366,6 @@ struct Dictionary_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_ struct Dictionary_2_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_ { - int32_t hashCode; - int32_t next; - struct WetDecalSystem_MaterialBatchId key; - struct Object *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object___Boxed { - struct Dictionary_2_TKey_TValue_Entry_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object___Array { struct Dictionary_2_TKey_TValue_Entry_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatchId_System_Object___Array__Class *klass; MonitorData *monitor; @@ -1154306,6 +1170726,21 @@ struct DynamicArray_1_System_Object___Class { struct DynamicArray_1_System_Object___VTable vtable; }; +struct RendererListResource___VTable { +}; + +struct RendererListResource___StaticFields { +}; + +struct RendererListResource___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RendererListResource___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RendererListResource___VTable vtable; +}; + struct Predicate_1_UnityEngine_Experimental_Rendering_RenderGraphModule_RendererListResource___Fields { struct MulticastDelegate__Fields _; }; @@ -1180010,6 +1196445,23 @@ struct EnumNameValueCache_1_System_Int32Enum_ { struct EnumNameValueCache_1_System_Int32Enum___Fields fields; }; +struct ADictionary_2_TKey_TValue_Entry_System_String_System_Int32Enum_ { + int32_t hashCode; + int32_t next; + struct String *key; + #if defined(_CPLUSPLUS_) + Int32Enum__Enum value; + #else + int32_t value; + #endif +}; + +struct ADictionary_2_TKey_TValue_Entry_System_String_System_Int32Enum___Boxed { + struct ADictionary_2_TKey_TValue_Entry_System_String_System_Int32Enum___Class *klass; + MonitorData *monitor; + struct ADictionary_2_TKey_TValue_Entry_System_String_System_Int32Enum_ fields; +}; + struct __declspec(align(8)) ADictionary_2_System_String_System_Int32Enum___Fields { struct Int32__Array *pGawVZUvYULemJqagZXhjOtPTktC; struct ADictionary_2_TKey_TValue_Entry_System_String_System_Int32Enum___Array *_entries; @@ -1180031,23 +1196483,6 @@ struct ADictionary_2_System_String_System_Int32Enum_ { struct ADictionary_2_System_String_System_Int32Enum___Fields fields; }; -struct ADictionary_2_TKey_TValue_Entry_System_String_System_Int32Enum_ { - int32_t hashCode; - int32_t next; - struct String *key; - #if defined(_CPLUSPLUS_) - Int32Enum__Enum value; - #else - int32_t value; - #endif -}; - -struct ADictionary_2_TKey_TValue_Entry_System_String_System_Int32Enum___Boxed { - struct ADictionary_2_TKey_TValue_Entry_System_String_System_Int32Enum___Class *klass; - MonitorData *monitor; - struct ADictionary_2_TKey_TValue_Entry_System_String_System_Int32Enum_ fields; -}; - struct ADictionary_2_TKey_TValue_Entry_System_String_System_Int32Enum___Array { struct ADictionary_2_TKey_TValue_Entry_System_String_System_Int32Enum___Array__Class *klass; MonitorData *monitor; @@ -1183397,6 +1199832,21 @@ struct NativeArray_1_T_Enumerator_UnityEngine_Rendering_BatchVisibility___Class struct NativeArray_1_T_Enumerator_UnityEngine_Rendering_BatchVisibility___VTable vtable; }; +struct NativeArray_1_UnityEngine_Rendering_BatchVisibility__1__VTable { +}; + +struct NativeArray_1_UnityEngine_Rendering_BatchVisibility__1__StaticFields { +}; + +struct NativeArray_1_UnityEngine_Rendering_BatchVisibility__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NativeArray_1_UnityEngine_Rendering_BatchVisibility__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NativeArray_1_UnityEngine_Rendering_BatchVisibility__1__VTable vtable; +}; + struct List_1_T_Enumerator_Dissonance_Integrations_PhotonBolt_BoltPeer_ { struct List_1_Dissonance_Integrations_PhotonBolt_BoltPeer_ *_list; int32_t _index; @@ -1183544,6 +1199994,21 @@ struct NativeArray_1_T_Enumerator_UnityEngine_BoneWeight1___Class { struct NativeArray_1_T_Enumerator_UnityEngine_BoneWeight1___VTable vtable; }; +struct NativeArray_1_UnityEngine_BoneWeight1__1__VTable { +}; + +struct NativeArray_1_UnityEngine_BoneWeight1__1__StaticFields { +}; + +struct NativeArray_1_UnityEngine_BoneWeight1__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NativeArray_1_UnityEngine_BoneWeight1__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NativeArray_1_UnityEngine_BoneWeight1__1__VTable vtable; +}; + struct List_1_T_Enumerator_System_Boolean_ { struct List_1_System_Boolean_ *_list; int32_t _index; @@ -1183617,6 +1200082,21 @@ struct NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_BoundedPlane___Cla struct NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_BoundedPlane___VTable vtable; }; +struct NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane__1__VTable { +}; + +struct NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane__1__StaticFields { +}; + +struct NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NativeArray_1_UnityEngine_XR_ARSubsystems_BoundedPlane__1__VTable vtable; +}; + struct List_1_T_Enumerator_System_Byte_ { struct List_1_System_Byte_ *_list; int32_t _index; @@ -1184035,6 +1200515,21 @@ struct NativeArray_1_T_Enumerator_UnityEngine_Color___Class { struct NativeArray_1_T_Enumerator_UnityEngine_Color___VTable vtable; }; +struct NativeArray_1_UnityEngine_Color__1__VTable { +}; + +struct NativeArray_1_UnityEngine_Color__1__StaticFields { +}; + +struct NativeArray_1_UnityEngine_Color__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NativeArray_1_UnityEngine_Color__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NativeArray_1_UnityEngine_Color__1__VTable vtable; +}; + struct List_1_T_Enumerator_UnityEngine_Color32_ { struct List_1_UnityEngine_Color32_ *_list; int32_t _index; @@ -1184108,6 +1200603,21 @@ struct NativeArray_1_T_Enumerator_UnityEngine_Color32___Class { struct NativeArray_1_T_Enumerator_UnityEngine_Color32___VTable vtable; }; +struct NativeArray_1_UnityEngine_Color32__1__VTable { +}; + +struct NativeArray_1_UnityEngine_Color32__1__StaticFields { +}; + +struct NativeArray_1_UnityEngine_Color32__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NativeArray_1_UnityEngine_Color32__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NativeArray_1_UnityEngine_Color32__1__VTable vtable; +}; + struct List_1_T_Enumerator_UnityEngine_CombineInstance_ { struct List_1_UnityEngine_CombineInstance_ *_list; int32_t _index; @@ -1184303,6 +1200813,21 @@ struct NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_ConfigurationDescr struct NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor___VTable vtable; }; +struct NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__1__VTable { +}; + +struct NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__1__StaticFields { +}; + +struct NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NativeArray_1_UnityEngine_XR_ARSubsystems_ConfigurationDescriptor__1__VTable vtable; +}; + struct List_1_T_Enumerator_Pathfinding_Connection_ { struct List_1_Pathfinding_Connection_ *_list; int32_t _index; @@ -1185157,6 +1201682,21 @@ struct NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_DrawBufferRange___C struct NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_DrawBufferRange___VTable vtable; }; +struct NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange__1__VTable { +}; + +struct NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange__1__StaticFields { +}; + +struct NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NativeArray_1_UnityEngine_UIElements_UIR_DrawBufferRange__1__VTable vtable; +}; + struct NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange_ { uint8_t *m_Buffer; int32_t m_Stride; @@ -1185226,6 +1201766,21 @@ struct NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_DrawBufferRange___C struct NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_DrawBufferRange___VTable vtable; }; +struct NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange__1__VTable { +}; + +struct NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange__1__StaticFields { +}; + +struct NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NativeSlice_1_UnityEngine_UIElements_UIR_DrawBufferRange__1__VTable vtable; +}; + struct List_1_T_Enumerator_UnityEngine_UIElements_EasingFunction_ { struct List_1_UnityEngine_UIElements_EasingFunction_ *_list; int32_t _index; @@ -1185753,6 +1202308,21 @@ struct NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_GfxUpdateBufferRang struct NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___VTable vtable; }; +struct NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__1__VTable { +}; + +struct NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__1__StaticFields { +}; + +struct NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NativeArray_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__1__VTable vtable; +}; + struct NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange_ { uint8_t *m_Buffer; int32_t m_Stride; @@ -1185822,6 +1202392,21 @@ struct NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_GfxUpdateBufferRang struct NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_GfxUpdateBufferRange___VTable vtable; }; +struct NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__1__VTable { +}; + +struct NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__1__StaticFields { +}; + +struct NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NativeSlice_1_UnityEngine_UIElements_UIR_GfxUpdateBufferRange__1__VTable vtable; +}; + struct List_1_T_Enumerator_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ { struct List_1_UnityEngine_TextCore_LowLevel_GlyphPairAdjustmentRecord_ *_list; int32_t _index; @@ -1186072,6 +1202657,21 @@ struct NativeArray_1_T_Enumerator_System_Guid___Class { struct NativeArray_1_T_Enumerator_System_Guid___VTable vtable; }; +struct NativeArray_1_System_Guid__1__VTable { +}; + +struct NativeArray_1_System_Guid__1__StaticFields { +}; + +struct NativeArray_1_System_Guid__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NativeArray_1_System_Guid__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NativeArray_1_System_Guid__1__VTable vtable; +}; + struct List_1_T_Enumerator_Rewired_InputActionSourceData_ { struct List_1_Rewired_InputActionSourceData_ *_list; int32_t _index; @@ -1186830,6 +1203430,21 @@ struct NativeArray_1_T_Enumerator_System_Int32___Class { struct NativeArray_1_T_Enumerator_System_Int32___VTable vtable; }; +struct NativeArray_1_System_Int32__1__VTable { +}; + +struct NativeArray_1_System_Int32__1__StaticFields { +}; + +struct NativeArray_1_System_Int32__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NativeArray_1_System_Int32__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NativeArray_1_System_Int32__1__VTable vtable; +}; + struct Queue_1_T_Enumerator_System_Int32_ { struct Queue_1_System_Int32_ *_q; int32_t _version; @@ -1187969,6 +1204584,21 @@ struct NativeArray_1_T_Enumerator_UnityEngine_Experimental_GlobalIllumination_Li struct NativeArray_1_T_Enumerator_UnityEngine_Experimental_GlobalIllumination_LightDataGI___VTable vtable; }; +struct NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI__1__VTable { +}; + +struct NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI__1__StaticFields { +}; + +struct NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NativeArray_1_UnityEngine_Experimental_GlobalIllumination_LightDataGI__1__VTable vtable; +}; + struct List_1_T_Enumerator_UnityEngine_UIElements_ManipulatorActivationFilter_ { struct List_1_UnityEngine_UIElements_ManipulatorActivationFilter_ *_list; int32_t _index; @@ -1188116,6 +1204746,21 @@ struct NativeArray_1_T_Enumerator_UnityEngine_ModifiableContactPair___Class { struct NativeArray_1_T_Enumerator_UnityEngine_ModifiableContactPair___VTable vtable; }; +struct NativeArray_1_UnityEngine_ModifiableContactPair__1__VTable { +}; + +struct NativeArray_1_UnityEngine_ModifiableContactPair__1__StaticFields { +}; + +struct NativeArray_1_UnityEngine_ModifiableContactPair__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NativeArray_1_UnityEngine_ModifiableContactPair__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NativeArray_1_UnityEngine_ModifiableContactPair__1__VTable vtable; +}; + struct List_1_T_Enumerator_UnityEngine_InputSystem_Utilities_NameAndParameters_ { struct List_1_UnityEngine_InputSystem_Utilities_NameAndParameters_ *_list; int32_t _index; @@ -1188424,6 +1205069,21 @@ struct NativeArray_1_T_Enumerator_Microsoft_MixedReality_OpenXR_NativeAnchor___C struct NativeArray_1_T_Enumerator_Microsoft_MixedReality_OpenXR_NativeAnchor___VTable vtable; }; +struct NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor__1__VTable { +}; + +struct NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor__1__StaticFields { +}; + +struct NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NativeArray_1_Microsoft_MixedReality_OpenXR_NativeAnchor__1__VTable vtable; +}; + struct NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane_ { struct Void *m_Buffer; int32_t m_Length; @@ -1188520,6 +1205180,21 @@ struct NativeArray_1_T_Enumerator_Microsoft_MixedReality_OpenXR_NativePlane___Cl struct NativeArray_1_T_Enumerator_Microsoft_MixedReality_OpenXR_NativePlane___VTable vtable; }; +struct NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane__1__VTable { +}; + +struct NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane__1__StaticFields { +}; + +struct NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NativeArray_1_Microsoft_MixedReality_OpenXR_NativePlane__1__VTable vtable; +}; + struct HashSet_1_T_Enumerator_Photon_Bolt_NetworkId_ { struct HashSet_1_Photon_Bolt_NetworkId_ *_set; int32_t _index; @@ -1189784,6 +1206459,21 @@ struct NativeArray_1_T_Enumerator_UnityEngine_Plane___Class { struct NativeArray_1_T_Enumerator_UnityEngine_Plane___VTable vtable; }; +struct NativeArray_1_UnityEngine_Plane__1__VTable { +}; + +struct NativeArray_1_UnityEngine_Plane__1__StaticFields { +}; + +struct NativeArray_1_UnityEngine_Plane__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NativeArray_1_UnityEngine_Plane__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NativeArray_1_UnityEngine_Plane__1__VTable vtable; +}; + struct List_1_T_Enumerator_UnityEngine_Playables_Playable_ { struct List_1_UnityEngine_Playables_Playable_ *_list; int32_t _index; @@ -1191727,6 +1208417,21 @@ struct NativeArray_1_T_Enumerator_UnityEngine_UIElements_TextVertex___Class { struct NativeArray_1_T_Enumerator_UnityEngine_UIElements_TextVertex___VTable vtable; }; +struct NativeArray_1_UnityEngine_UIElements_TextVertex__1__VTable { +}; + +struct NativeArray_1_UnityEngine_UIElements_TextVertex__1__StaticFields { +}; + +struct NativeArray_1_UnityEngine_UIElements_TextVertex__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NativeArray_1_UnityEngine_UIElements_TextVertex__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NativeArray_1_UnityEngine_UIElements_TextVertex__1__VTable vtable; +}; + struct Stack_1_T_Enumerator_UnityEngine_UIElements_TextureId_ { struct Stack_1_UnityEngine_UIElements_TextureId_ *_stack; int32_t _version; @@ -1191860,6 +1208565,21 @@ struct NativeArray_1_T_Enumerator_UnityEngine_Tilemaps_TileData___Class { struct NativeArray_1_T_Enumerator_UnityEngine_Tilemaps_TileData___VTable vtable; }; +struct NativeArray_1_UnityEngine_Tilemaps_TileData__1__VTable { +}; + +struct NativeArray_1_UnityEngine_Tilemaps_TileData__1__StaticFields { +}; + +struct NativeArray_1_UnityEngine_Tilemaps_TileData__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NativeArray_1_UnityEngine_Tilemaps_TileData__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NativeArray_1_UnityEngine_Tilemaps_TileData__1__VTable vtable; +}; + struct List_1_T_Enumerator_System_TimeSpan_ { struct List_1_System_TimeSpan_ *_list; int32_t _index; @@ -1192106,6 +1208826,21 @@ struct NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId___Clas struct NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_TrackableId___VTable vtable; }; +struct NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId__1__VTable { +}; + +struct NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId__1__StaticFields { +}; + +struct NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NativeArray_1_UnityEngine_XR_ARSubsystems_TrackableId__1__VTable vtable; +}; + struct NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_Transform3x4_ { struct NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4_ m_Array; int32_t m_Index; @@ -1192142,6 +1208877,21 @@ struct NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_Transform3x4___Clas struct NativeArray_1_T_Enumerator_UnityEngine_UIElements_UIR_Transform3x4___VTable vtable; }; +struct NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4__1__VTable { +}; + +struct NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4__1__StaticFields { +}; + +struct NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NativeArray_1_UnityEngine_UIElements_UIR_Transform3x4__1__VTable vtable; +}; + struct NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_Transform3x4_ { struct NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4_ m_Array; int32_t m_Index; @@ -1192177,6 +1208927,21 @@ struct NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_Transform3x4___Clas struct NativeSlice_1_T_Enumerator_UnityEngine_UIElements_UIR_Transform3x4___VTable vtable; }; +struct NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4__1__VTable { +}; + +struct NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4__1__StaticFields { +}; + +struct NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NativeSlice_1_UnityEngine_UIElements_UIR_Transform3x4__1__VTable vtable; +}; + struct List_1_T_Enumerator_UnityEngine_UIElements_TreeViewItemWrapper_ { struct List_1_UnityEngine_UIElements_TreeViewItemWrapper_ *_list; int32_t _index; @@ -1192435,6 +1209200,21 @@ struct NativeArray_1_T_Enumerator_System_UInt16___Class { struct NativeArray_1_T_Enumerator_System_UInt16___VTable vtable; }; +struct NativeArray_1_System_UInt16__1__VTable { +}; + +struct NativeArray_1_System_UInt16__1__StaticFields { +}; + +struct NativeArray_1_System_UInt16__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NativeArray_1_System_UInt16__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NativeArray_1_System_UInt16__1__VTable vtable; +}; + struct NativeSlice_1_T_Enumerator_System_UInt16_ { struct NativeSlice_1_System_UInt16_ m_Array; int32_t m_Index; @@ -1192803,6 +1209583,21 @@ struct NativeArray_1_T_Enumerator_System_UInt64___Class { struct NativeArray_1_T_Enumerator_System_UInt64___VTable vtable; }; +struct NativeArray_1_System_UInt64__1__VTable { +}; + +struct NativeArray_1_System_UInt64__1__StaticFields { +}; + +struct NativeArray_1_System_UInt64__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NativeArray_1_System_UInt64__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NativeArray_1_System_UInt64__1__VTable vtable; +}; + struct List_1_T_Enumerator_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ { struct List_1_Opsive_UltimateCharacterController_SurfaceSystem_UVTexture_ *_list; int32_t _index; @@ -1193712,6 +1210507,21 @@ struct NativeArray_1_T_Enumerator_UnityEngine_Vector3Int___Class { struct NativeArray_1_T_Enumerator_UnityEngine_Vector3Int___VTable vtable; }; +struct NativeArray_1_UnityEngine_Vector3Int__1__VTable { +}; + +struct NativeArray_1_UnityEngine_Vector3Int__1__StaticFields { +}; + +struct NativeArray_1_UnityEngine_Vector3Int__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NativeArray_1_UnityEngine_Vector3Int__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NativeArray_1_UnityEngine_Vector3Int__1__VTable vtable; +}; + struct List_1_T_Enumerator_UnityEngine_Vector4_ { struct List_1_UnityEngine_Vector4_ *_list; int32_t _index; @@ -1193785,6 +1210595,21 @@ struct NativeArray_1_T_Enumerator_UnityEngine_Vector4___Class { struct NativeArray_1_T_Enumerator_UnityEngine_Vector4___VTable vtable; }; +struct NativeArray_1_UnityEngine_Vector4__1__VTable { +}; + +struct NativeArray_1_UnityEngine_Vector4__1__StaticFields { +}; + +struct NativeArray_1_UnityEngine_Vector4__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NativeArray_1_UnityEngine_Vector4__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NativeArray_1_UnityEngine_Vector4__1__VTable vtable; +}; + struct NativeSlice_1_T_Enumerator_UnityEngine_Vector4_ { struct NativeSlice_1_UnityEngine_Vector4_ m_Array; int32_t m_Index; @@ -1193820,6 +1210645,21 @@ struct NativeSlice_1_T_Enumerator_UnityEngine_Vector4___Class { struct NativeSlice_1_T_Enumerator_UnityEngine_Vector4___VTable vtable; }; +struct NativeSlice_1_UnityEngine_Vector4__1__VTable { +}; + +struct NativeSlice_1_UnityEngine_Vector4__1__StaticFields { +}; + +struct NativeSlice_1_UnityEngine_Vector4__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NativeSlice_1_UnityEngine_Vector4__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NativeSlice_1_UnityEngine_Vector4__1__VTable vtable; +}; + struct NativeArray_1_T_Enumerator_UnityEngine_UIElements_Vertex_ { struct NativeArray_1_UnityEngine_UIElements_Vertex_ m_Array; int32_t m_Index; @@ -1193856,6 +1210696,21 @@ struct NativeArray_1_T_Enumerator_UnityEngine_UIElements_Vertex___Class { struct NativeArray_1_T_Enumerator_UnityEngine_UIElements_Vertex___VTable vtable; }; +struct NativeArray_1_UnityEngine_UIElements_Vertex__1__VTable { +}; + +struct NativeArray_1_UnityEngine_UIElements_Vertex__1__StaticFields { +}; + +struct NativeArray_1_UnityEngine_UIElements_Vertex__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NativeArray_1_UnityEngine_UIElements_Vertex__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NativeArray_1_UnityEngine_UIElements_Vertex__1__VTable vtable; +}; + struct NativeSlice_1_T_Enumerator_UnityEngine_UIElements_Vertex_ { struct NativeSlice_1_UnityEngine_UIElements_Vertex_ m_Array; int32_t m_Index; @@ -1193964,6 +1210819,21 @@ struct NativeArray_1_T_Enumerator_UnityEngine_Rendering_VertexAttributeDescripto struct NativeArray_1_T_Enumerator_UnityEngine_Rendering_VertexAttributeDescriptor___VTable vtable; }; +struct NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor__1__VTable { +}; + +struct NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor__1__StaticFields { +}; + +struct NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NativeArray_1_UnityEngine_Rendering_VertexAttributeDescriptor__1__VTable vtable; +}; + struct List_1_T_Enumerator_Microsoft_MixedReality_OpenXR_ViewConfiguration_ { struct List_1_Microsoft_MixedReality_OpenXR_ViewConfiguration_ *_list; int32_t _index; @@ -1194392,6 +1211262,21 @@ struct NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_XRAnchor___Class { struct NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_XRAnchor___VTable vtable; }; +struct NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor__1__VTable { +}; + +struct NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor__1__StaticFields { +}; + +struct NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NativeArray_1_UnityEngine_XR_ARSubsystems_XRAnchor__1__VTable vtable; +}; + struct List_1_T_Enumerator_UnityEngine_InputSystem_XR_XRFeatureDescriptor_ { struct List_1_UnityEngine_InputSystem_XR_XRFeatureDescriptor_ *_list; int32_t _index; @@ -1194502,6 +1211387,21 @@ struct NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_XRRaycast___Class struct NativeArray_1_T_Enumerator_UnityEngine_XR_ARSubsystems_XRRaycast___VTable vtable; }; +struct NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast__1__VTable { +}; + +struct NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast__1__StaticFields { +}; + +struct NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NativeArray_1_UnityEngine_XR_ARSubsystems_XRRaycast__1__VTable vtable; +}; + struct List_1_T_Enumerator_Pathfinding_AdvancedSmooth_Turn_ { struct List_1_Pathfinding_AdvancedSmooth_Turn_ *_list; int32_t _index; @@ -1196711,6 +1213611,21 @@ struct NativeArray_1_T_Enumerator_UnityEngine_ParticleSystem_Particle___Class { struct NativeArray_1_T_Enumerator_UnityEngine_ParticleSystem_Particle___VTable vtable; }; +struct NativeArray_1_UnityEngine_ParticleSystem_Particle__1__VTable { +}; + +struct NativeArray_1_UnityEngine_ParticleSystem_Particle__1__StaticFields { +}; + +struct NativeArray_1_UnityEngine_ParticleSystem_Particle__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NativeArray_1_UnityEngine_ParticleSystem_Particle__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NativeArray_1_UnityEngine_ParticleSystem_Particle__1__VTable vtable; +}; + struct List_1_T_Enumerator_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick_ { struct List_1_UnityEngine_Experimental_Rendering_ProbeBrickIndex_Brick_ *_list; int32_t _index; @@ -1199614,7 +1216529,7 @@ struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_In }; struct SortedList_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2_ { - struct SortedList_2_System_Int32_System_ValueTuple_2__2 *_sortedList; + struct SortedList_2_System_Int32_System_ValueTuple_2__4 *_sortedList; int32_t _key; struct ValueTuple_2_Object_Int32_ _value; int32_t _index; @@ -1199628,7 +1216543,7 @@ struct SortedList_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2___Bo struct SortedList_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2_ fields; }; -struct __declspec(align(8)) SortedList_2_System_Int32_System_ValueTuple_2__2__Fields { +struct __declspec(align(8)) SortedList_2_System_Int32_System_ValueTuple_2__4__Fields { struct Int32__Array *keys; struct ValueTuple_2_Object_Int32___Array *values; int32_t _size; @@ -1199639,14 +1216554,14 @@ struct __declspec(align(8)) SortedList_2_System_Int32_System_ValueTuple_2__2__Fi struct Object *_syncRoot; }; -struct SortedList_2_System_Int32_System_ValueTuple_2__2 { - struct SortedList_2_System_Int32_System_ValueTuple_2__2__Class *klass; +struct SortedList_2_System_Int32_System_ValueTuple_2__4 { + struct SortedList_2_System_Int32_System_ValueTuple_2__4__Class *klass; MonitorData *monitor; - struct SortedList_2_System_Int32_System_ValueTuple_2__2__Fields fields; + struct SortedList_2_System_Int32_System_ValueTuple_2__4__Fields fields; }; struct __declspec(align(8)) SortedList_2_TKey_TValue_KeyList_System_Int32_System_ValueTuple_2__2__Fields { - struct SortedList_2_System_Int32_System_ValueTuple_2__2 *_dict; + struct SortedList_2_System_Int32_System_ValueTuple_2__4 *_dict; }; struct SortedList_2_TKey_TValue_KeyList_System_Int32_System_ValueTuple_2__2 { @@ -1199656,7 +1216571,7 @@ struct SortedList_2_TKey_TValue_KeyList_System_Int32_System_ValueTuple_2__2 { }; struct __declspec(align(8)) SortedList_2_TKey_TValue_ValueList_System_Int32_System_ValueTuple_2__2__Fields { - struct SortedList_2_System_Int32_System_ValueTuple_2__2 *_dict; + struct SortedList_2_System_Int32_System_ValueTuple_2__4 *_dict; }; struct SortedList_2_TKey_TValue_ValueList_System_Int32_System_ValueTuple_2__2 { @@ -1199752,6 +1216667,21 @@ struct SortedList_2_TKey_TValue_ValueList_System_Int32_System_ValueTuple_2__2__C struct SortedList_2_TKey_TValue_ValueList_System_Int32_System_ValueTuple_2__2__VTable vtable; }; +struct ValueTuple_2_Object_Int32__1__VTable { +}; + +struct ValueTuple_2_Object_Int32__1__StaticFields { +}; + +struct ValueTuple_2_Object_Int32__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ValueTuple_2_Object_Int32__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ValueTuple_2_Object_Int32__1__VTable vtable; +}; + struct KeyValuePair_2_System_Int32_System_ValueTuple_2__3__Array__VTable { }; @@ -1199783,7 +1216713,7 @@ struct IEnumerator_1_KeyValuePair_2_System_Int32_System_ValueTuple_2__3__Class { struct IEnumerator_1_KeyValuePair_2_System_Int32_System_ValueTuple_2__3__VTable vtable; }; -struct SortedList_2_System_Int32_System_ValueTuple_2__2__VTable { +struct SortedList_2_System_Int32_System_ValueTuple_2__4__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; VirtualInvokeData GetHashCode; @@ -1199826,16 +1216756,16 @@ struct SortedList_2_System_Int32_System_ValueTuple_2__2__VTable { VirtualInvokeData get_Count_2; }; -struct SortedList_2_System_Int32_System_ValueTuple_2__2__StaticFields { +struct SortedList_2_System_Int32_System_ValueTuple_2__4__StaticFields { }; -struct SortedList_2_System_Int32_System_ValueTuple_2__2__Class { +struct SortedList_2_System_Int32_System_ValueTuple_2__4__Class { Il2CppClass_0 _0; Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct SortedList_2_System_Int32_System_ValueTuple_2__2__StaticFields *static_fields; + struct SortedList_2_System_Int32_System_ValueTuple_2__4__StaticFields *static_fields; const Il2CppRGCTXData *rgctx_data; Il2CppClass_1 _1; - struct SortedList_2_System_Int32_System_ValueTuple_2__2__VTable vtable; + struct SortedList_2_System_Int32_System_ValueTuple_2__4__VTable vtable; }; struct SortedList_2_TKey_TValue_Enumerator_System_Int32_System_ValueTuple_2___VTable { @@ -1230851,6 +1247781,19 @@ struct IEnumerator_1_System_Action_1__30 { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Action_1_LinkedListNode_1_System_Action_1_ { + int32_t hashCode; + int32_t next; + struct Action_1_Boolean_ *key; + struct LinkedListNode_1_System_Action_1__24 *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Action_1_LinkedListNode_1_System_Action_1___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Action_1_LinkedListNode_1_System_Action_1___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Action_1_LinkedListNode_1_System_Action_1_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Action_1_LinkedListNode_1_System_Action_1___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Action_1_LinkedListNode_1_System_Action_1___Array *_entries; @@ -1230870,19 +1247813,6 @@ struct Dictionary_2_System_Action_1_LinkedListNode_1_System_Action_1_ { struct Dictionary_2_System_Action_1_LinkedListNode_1_System_Action_1___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Action_1_LinkedListNode_1_System_Action_1_ { - int32_t hashCode; - int32_t next; - struct Action_1_Boolean_ *key; - struct LinkedListNode_1_System_Action_1__24 *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Action_1_LinkedListNode_1_System_Action_1___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Action_1_LinkedListNode_1_System_Action_1___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Action_1_LinkedListNode_1_System_Action_1_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Action_1_LinkedListNode_1_System_Action_1___Array { struct Dictionary_2_TKey_TValue_Entry_System_Action_1_LinkedListNode_1_System_Action_1___Array__Class *klass; MonitorData *monitor; @@ -1231252,6 +1248182,21 @@ struct ICollection_1_LinkedListNode_1_System_Action_1___Class { struct ICollection_1_LinkedListNode_1_System_Action_1___VTable vtable; }; +struct LinkedListNode_1_System_Action_1__25__VTable { +}; + +struct LinkedListNode_1_System_Action_1__25__StaticFields { +}; + +struct LinkedListNode_1_System_Action_1__25__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct LinkedListNode_1_System_Action_1__25__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct LinkedListNode_1_System_Action_1__25__VTable vtable; +}; + struct KeyValuePair_2_System_Action_1_LinkedListNode_1_System_Action_1___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1231423,6 +1248368,19 @@ struct FastAction_1_System_Object_ { struct FastAction_1_System_Object___Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_Action_1_LinkedListNode_1_System_Action_1__1 { + int32_t hashCode; + int32_t next; + struct Action_1_Object_ *key; + struct LinkedListNode_1_System_Action_1__23 *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Action_1_LinkedListNode_1_System_Action_1__1__Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Action_1_LinkedListNode_1_System_Action_1__1__Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Action_1_LinkedListNode_1_System_Action_1__1 fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Action_1_LinkedListNode_1_System_Action_1__1__Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Action_1_LinkedListNode_1_System_Action_1__1__Array *_entries; @@ -1231442,19 +1248400,6 @@ struct Dictionary_2_System_Action_1_LinkedListNode_1_System_Action_1__1 { struct Dictionary_2_System_Action_1_LinkedListNode_1_System_Action_1__1__Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Action_1_LinkedListNode_1_System_Action_1__1 { - int32_t hashCode; - int32_t next; - struct Action_1_Object_ *key; - struct LinkedListNode_1_System_Action_1__23 *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Action_1_LinkedListNode_1_System_Action_1__1__Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Action_1_LinkedListNode_1_System_Action_1__1__Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Action_1_LinkedListNode_1_System_Action_1__1 fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Action_1_LinkedListNode_1_System_Action_1__1__Array { struct Dictionary_2_TKey_TValue_Entry_System_Action_1_LinkedListNode_1_System_Action_1__1__Array__Class *klass; MonitorData *monitor; @@ -1231705,6 +1248650,21 @@ struct ICollection_1_LinkedListNode_1_System_Action_1__1__Class { struct ICollection_1_LinkedListNode_1_System_Action_1__1__VTable vtable; }; +struct LinkedListNode_1_System_Action_1__26__VTable { +}; + +struct LinkedListNode_1_System_Action_1__26__StaticFields { +}; + +struct LinkedListNode_1_System_Action_1__26__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct LinkedListNode_1_System_Action_1__26__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct LinkedListNode_1_System_Action_1__26__VTable vtable; +}; + struct KeyValuePair_2_System_Action_1_LinkedListNode_1_System_Action_1__1__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1231900,6 +1248860,19 @@ struct IEnumerator_1_System_Action_2__7 { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Action_2_LinkedListNode_1_System_Action_2_ { + int32_t hashCode; + int32_t next; + struct Action_2_Boolean_Object_ *key; + struct LinkedListNode_1_System_Action_2_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Action_2_LinkedListNode_1_System_Action_2___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Action_2_LinkedListNode_1_System_Action_2___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Action_2_LinkedListNode_1_System_Action_2_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Action_2_LinkedListNode_1_System_Action_2___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Action_2_LinkedListNode_1_System_Action_2___Array *_entries; @@ -1231919,19 +1248892,6 @@ struct Dictionary_2_System_Action_2_LinkedListNode_1_System_Action_2_ { struct Dictionary_2_System_Action_2_LinkedListNode_1_System_Action_2___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Action_2_LinkedListNode_1_System_Action_2_ { - int32_t hashCode; - int32_t next; - struct Action_2_Boolean_Object_ *key; - struct LinkedListNode_1_System_Action_2_ *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Action_2_LinkedListNode_1_System_Action_2___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Action_2_LinkedListNode_1_System_Action_2___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Action_2_LinkedListNode_1_System_Action_2_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Action_2_LinkedListNode_1_System_Action_2___Array { struct Dictionary_2_TKey_TValue_Entry_System_Action_2_LinkedListNode_1_System_Action_2___Array__Class *klass; MonitorData *monitor; @@ -1232301,6 +1249261,21 @@ struct ICollection_1_LinkedListNode_1_System_Action_2___Class { struct ICollection_1_LinkedListNode_1_System_Action_2___VTable vtable; }; +struct LinkedListNode_1_System_Action_2__1__VTable { +}; + +struct LinkedListNode_1_System_Action_2__1__StaticFields { +}; + +struct LinkedListNode_1_System_Action_2__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct LinkedListNode_1_System_Action_2__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct LinkedListNode_1_System_Action_2__1__VTable vtable; +}; + struct KeyValuePair_2_System_Action_2_LinkedListNode_1_System_Action_2___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1232473,7 +1249448,7 @@ struct FastAction_2_System_Object_System_Object_ { }; struct __declspec(align(8)) LinkedList_1_System_Action_2__1__Fields { - struct LinkedListNode_1_System_Action_2__1 *head; + struct LinkedListNode_1_System_Action_2__2 *head; int32_t count; int32_t version; struct Object *_syncRoot; @@ -1232486,17 +1249461,17 @@ struct LinkedList_1_System_Action_2__1 { struct LinkedList_1_System_Action_2__1__Fields fields; }; -struct __declspec(align(8)) LinkedListNode_1_System_Action_2__1__Fields { +struct __declspec(align(8)) LinkedListNode_1_System_Action_2__2__Fields { struct LinkedList_1_System_Action_2__1 *list; - struct LinkedListNode_1_System_Action_2__1 *next; - struct LinkedListNode_1_System_Action_2__1 *prev; + struct LinkedListNode_1_System_Action_2__2 *next; + struct LinkedListNode_1_System_Action_2__2 *prev; struct Action_2_Object_Object_ *item; }; -struct LinkedListNode_1_System_Action_2__1 { - struct LinkedListNode_1_System_Action_2__1__Class *klass; +struct LinkedListNode_1_System_Action_2__2 { + struct LinkedListNode_1_System_Action_2__2__Class *klass; MonitorData *monitor; - struct LinkedListNode_1_System_Action_2__1__Fields fields; + struct LinkedListNode_1_System_Action_2__2__Fields fields; }; struct Action_2_Object_Object___Array { @@ -1232512,6 +1249487,19 @@ struct IEnumerator_1_System_Action_2__8 { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Action_2_LinkedListNode_1_System_Action_2__1 { + int32_t hashCode; + int32_t next; + struct Action_2_Object_Object_ *key; + struct LinkedListNode_1_System_Action_2__2 *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Action_2_LinkedListNode_1_System_Action_2__1__Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Action_2_LinkedListNode_1_System_Action_2__1__Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Action_2_LinkedListNode_1_System_Action_2__1 fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Action_2_LinkedListNode_1_System_Action_2__1__Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Action_2_LinkedListNode_1_System_Action_2__1__Array *_entries; @@ -1232531,19 +1249519,6 @@ struct Dictionary_2_System_Action_2_LinkedListNode_1_System_Action_2__1 { struct Dictionary_2_System_Action_2_LinkedListNode_1_System_Action_2__1__Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Action_2_LinkedListNode_1_System_Action_2__1 { - int32_t hashCode; - int32_t next; - struct Action_2_Object_Object_ *key; - struct LinkedListNode_1_System_Action_2__1 *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Action_2_LinkedListNode_1_System_Action_2__1__Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Action_2_LinkedListNode_1_System_Action_2__1__Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Action_2_LinkedListNode_1_System_Action_2__1 fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Action_2_LinkedListNode_1_System_Action_2__1__Array { struct Dictionary_2_TKey_TValue_Entry_System_Action_2_LinkedListNode_1_System_Action_2__1__Array__Class *klass; MonitorData *monitor; @@ -1232577,12 +1249552,12 @@ struct Dictionary_2_TKey_TValue_ValueCollection_System_Action_2_LinkedListNode_1 struct Dictionary_2_TKey_TValue_ValueCollection_System_Action_2_LinkedListNode_1_System_Action_2__1__Fields fields; }; -struct LinkedListNode_1_System_Action_2__1__Array { - struct LinkedListNode_1_System_Action_2__1__Array__Class *klass; +struct LinkedListNode_1_System_Action_2__2__Array { + struct LinkedListNode_1_System_Action_2__2__Array__Class *klass; MonitorData *monitor; Il2CppArrayBounds *bounds; il2cpp_array_size_t max_length; - struct LinkedListNode_1_System_Action_2__1 *vector[32]; + struct LinkedListNode_1_System_Action_2__2 *vector[32]; }; struct IEnumerator_1_LinkedListNode_1_System_Action_2__1 { @@ -1232602,7 +1249577,7 @@ struct ICollection_1_LinkedListNode_1_System_Action_2__1 { struct KeyValuePair_2_System_Action_2_LinkedListNode_1_System_Action_2__1 { struct Action_2_Object_Object_ *key; - struct LinkedListNode_1_System_Action_2__1 *value; + struct LinkedListNode_1_System_Action_2__2 *value; }; struct KeyValuePair_2_System_Action_2_LinkedListNode_1_System_Action_2__1__Boxed { @@ -1232634,23 +1249609,23 @@ struct IEnumerable_1_LinkedListNode_1_System_Action_2__1 { MonitorData *monitor; }; -struct LinkedListNode_1_System_Action_2__1__VTable { +struct LinkedListNode_1_System_Action_2__2__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; VirtualInvokeData GetHashCode; VirtualInvokeData ToString; }; -struct LinkedListNode_1_System_Action_2__1__StaticFields { +struct LinkedListNode_1_System_Action_2__2__StaticFields { }; -struct LinkedListNode_1_System_Action_2__1__Class { +struct LinkedListNode_1_System_Action_2__2__Class { Il2CppClass_0 _0; Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct LinkedListNode_1_System_Action_2__1__StaticFields *static_fields; + struct LinkedListNode_1_System_Action_2__2__StaticFields *static_fields; const Il2CppRGCTXData *rgctx_data; Il2CppClass_1 _1; - struct LinkedListNode_1_System_Action_2__1__VTable vtable; + struct LinkedListNode_1_System_Action_2__2__VTable vtable; }; struct Action_2_Object_Object___Array__VTable { @@ -1232805,19 +1249780,19 @@ struct Dictionary_2_TKey_TValue_KeyCollection_System_Action_2_LinkedListNode_1_S struct Dictionary_2_TKey_TValue_KeyCollection_System_Action_2_LinkedListNode_1_System_Action_2__1__VTable vtable; }; -struct LinkedListNode_1_System_Action_2__1__Array__VTable { +struct LinkedListNode_1_System_Action_2__2__Array__VTable { }; -struct LinkedListNode_1_System_Action_2__1__Array__StaticFields { +struct LinkedListNode_1_System_Action_2__2__Array__StaticFields { }; -struct LinkedListNode_1_System_Action_2__1__Array__Class { +struct LinkedListNode_1_System_Action_2__2__Array__Class { Il2CppClass_0 _0; Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct LinkedListNode_1_System_Action_2__1__Array__StaticFields *static_fields; + struct LinkedListNode_1_System_Action_2__2__Array__StaticFields *static_fields; const Il2CppRGCTXData *rgctx_data; Il2CppClass_1 _1; - struct LinkedListNode_1_System_Action_2__1__Array__VTable vtable; + struct LinkedListNode_1_System_Action_2__2__Array__VTable vtable; }; struct IEnumerator_1_LinkedListNode_1_System_Action_2__1__VTable { @@ -1232913,6 +1249888,21 @@ struct ICollection_1_LinkedListNode_1_System_Action_2__1__Class { struct ICollection_1_LinkedListNode_1_System_Action_2__1__VTable vtable; }; +struct LinkedListNode_1_System_Action_2__3__VTable { +}; + +struct LinkedListNode_1_System_Action_2__3__StaticFields { +}; + +struct LinkedListNode_1_System_Action_2__3__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct LinkedListNode_1_System_Action_2__3__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct LinkedListNode_1_System_Action_2__3__VTable vtable; +}; + struct KeyValuePair_2_System_Action_2_LinkedListNode_1_System_Action_2__1__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1233124,6 +1250114,19 @@ struct IEnumerator_1_System_Action_3__1 { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Action_3_LinkedListNode_1_System_Action_3_ { + int32_t hashCode; + int32_t next; + struct Action_3_Object_Object_Object_ *key; + struct LinkedListNode_1_System_Action_3_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Action_3_LinkedListNode_1_System_Action_3___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Action_3_LinkedListNode_1_System_Action_3___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Action_3_LinkedListNode_1_System_Action_3_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Action_3_LinkedListNode_1_System_Action_3___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Action_3_LinkedListNode_1_System_Action_3___Array *_entries; @@ -1233143,19 +1250146,6 @@ struct Dictionary_2_System_Action_3_LinkedListNode_1_System_Action_3_ { struct Dictionary_2_System_Action_3_LinkedListNode_1_System_Action_3___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Action_3_LinkedListNode_1_System_Action_3_ { - int32_t hashCode; - int32_t next; - struct Action_3_Object_Object_Object_ *key; - struct LinkedListNode_1_System_Action_3_ *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Action_3_LinkedListNode_1_System_Action_3___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Action_3_LinkedListNode_1_System_Action_3___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Action_3_LinkedListNode_1_System_Action_3_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Action_3_LinkedListNode_1_System_Action_3___Array { struct Dictionary_2_TKey_TValue_Entry_System_Action_3_LinkedListNode_1_System_Action_3___Array__Class *klass; MonitorData *monitor; @@ -1233525,6 +1250515,21 @@ struct ICollection_1_LinkedListNode_1_System_Action_3___Class { struct ICollection_1_LinkedListNode_1_System_Action_3___VTable vtable; }; +struct LinkedListNode_1_System_Action_3__1__VTable { +}; + +struct LinkedListNode_1_System_Action_3__1__StaticFields { +}; + +struct LinkedListNode_1_System_Action_3__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct LinkedListNode_1_System_Action_3__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct LinkedListNode_1_System_Action_3__1__VTable vtable; +}; + struct KeyValuePair_2_System_Action_3_LinkedListNode_1_System_Action_3___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1244136,6 +1261141,18 @@ struct RuntimePropertyInfo_Getter_2_System_Object_System_Object___Class { struct RuntimePropertyInfo_Getter_2_System_Object_System_Object___VTable vtable; }; +struct __declspec(align(8)) GridLookup_1_T_Item_System_Object___Fields { + struct GridLookup_1_T_Root_System_Object_ *root; + struct GridLookup_1_T_Item_System_Object_ *prev; + struct GridLookup_1_T_Item_System_Object_ *next; +}; + +struct GridLookup_1_T_Item_System_Object_ { + struct GridLookup_1_T_Item_System_Object___Class *klass; + MonitorData *monitor; + struct GridLookup_1_T_Item_System_Object___Fields fields; +}; + struct __declspec(align(8)) GridLookup_1_System_Object___Fields { struct Int2 size; struct GridLookup_1_T_Item_System_Object___Array *cells; @@ -1244150,18 +1261167,6 @@ struct GridLookup_1_System_Object_ { struct GridLookup_1_System_Object___Fields fields; }; -struct __declspec(align(8)) GridLookup_1_T_Item_System_Object___Fields { - struct GridLookup_1_T_Root_System_Object_ *root; - struct GridLookup_1_T_Item_System_Object_ *prev; - struct GridLookup_1_T_Item_System_Object_ *next; -}; - -struct GridLookup_1_T_Item_System_Object_ { - struct GridLookup_1_T_Item_System_Object___Class *klass; - MonitorData *monitor; - struct GridLookup_1_T_Item_System_Object___Fields fields; -}; - struct __declspec(align(8)) GridLookup_1_T_Root_System_Object___Fields { struct Object *obj; struct GridLookup_1_T_Root_System_Object_ *next; @@ -1244203,6 +1261208,19 @@ struct GridLookup_1_T_Item_System_Object___Array { struct GridLookup_1_T_Item_System_Object_ *vector[32]; }; +struct Dictionary_2_TKey_TValue_Entry_System_Object_Pathfinding_Util_GridLookup_1_Root_ { + int32_t hashCode; + int32_t next; + struct Object *key; + struct GridLookup_1_T_Root_System_Object_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Object_Pathfinding_Util_GridLookup_1_Root___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Object_Pathfinding_Util_GridLookup_1_Root___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Object_Pathfinding_Util_GridLookup_1_Root_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Object_Pathfinding_Util_GridLookup_1_Root___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Object_Pathfinding_Util_GridLookup_1_Root___Array *_entries; @@ -1244222,19 +1261240,6 @@ struct Dictionary_2_System_Object_Pathfinding_Util_GridLookup_1_Root_ { struct Dictionary_2_System_Object_Pathfinding_Util_GridLookup_1_Root___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Object_Pathfinding_Util_GridLookup_1_Root_ { - int32_t hashCode; - int32_t next; - struct Object *key; - struct GridLookup_1_T_Root_System_Object_ *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Object_Pathfinding_Util_GridLookup_1_Root___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Object_Pathfinding_Util_GridLookup_1_Root___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Object_Pathfinding_Util_GridLookup_1_Root_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Object_Pathfinding_Util_GridLookup_1_Root___Array { struct Dictionary_2_TKey_TValue_Entry_System_Object_Pathfinding_Util_GridLookup_1_Root___Array__Class *klass; MonitorData *monitor; @@ -1244596,6 +1261601,21 @@ struct ICollection_1_Pathfinding_Util_GridLookup_1_Root__1__Class { struct ICollection_1_Pathfinding_Util_GridLookup_1_Root__1__VTable vtable; }; +struct GridLookup_1_T_Root_System_Object__1__VTable { +}; + +struct GridLookup_1_T_Root_System_Object__1__StaticFields { +}; + +struct GridLookup_1_T_Root_System_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GridLookup_1_T_Root_System_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GridLookup_1_T_Root_System_Object__1__VTable vtable; +}; + struct KeyValuePair_2_System_Object_Pathfinding_Util_GridLookup_1_Root___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1245130,6 +1262150,21 @@ struct ObjectPool_1_T_PooledObject_System_Collections_Generic_HashSet_1___Class struct ObjectPool_1_T_PooledObject_System_Collections_Generic_HashSet_1___VTable vtable; }; +struct HashSet_1_System_Object__1__VTable { +}; + +struct HashSet_1_System_Object__1__StaticFields { +}; + +struct HashSet_1_System_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_System_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_System_Object__1__VTable vtable; +}; + struct HashSet_1_T_ElementCount_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_ { int32_t uniqueCount; int32_t unfoundCount; @@ -1247220,6 +1264255,21 @@ struct IDictionary_2_System_Object_Rewired_Utils_Classes_Data_SerializedObject_y struct IDictionary_2_System_Object_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo___VTable vtable; }; +struct KeyValuePair_2_System_Object_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__1__VTable { +}; + +struct KeyValuePair_2_System_Object_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__1__StaticFields { +}; + +struct KeyValuePair_2_System_Object_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_Object_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_Object_Rewired_Utils_Classes_Data_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__1__VTable vtable; +}; + struct __declspec(align(8)) WorkItemProcessor_IndexedQueue_1_System_Object___Fields { struct Object__Array *buffer; int32_t start; @@ -1247638,6 +1264688,26 @@ struct InputBindingComposite_1_UnityEngine_Quaternion___Class { struct InputBindingComposite_1_UnityEngine_Quaternion___VTable vtable; }; +struct Bone___VTable { +}; + +struct Bone___StaticFields { +}; + +struct Bone___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Bone___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Bone___VTable vtable; +}; + +struct InputProcessor_1_System_Boolean_ { + struct InputProcessor_1_System_Boolean___Class *klass; + MonitorData *monitor; +}; + struct InlinedArray_1_UnityEngine_InputSystem_InputProcessor_1__13 { int32_t length; struct InputProcessor_1_System_Boolean_ *firstValue; @@ -1247664,11 +1264734,6 @@ struct InputControl_1_System_Boolean_ { struct InputControl_1_System_Boolean___Fields fields; }; -struct InputProcessor_1_System_Boolean_ { - struct InputProcessor_1_System_Boolean___Class *klass; - MonitorData *monitor; -}; - struct InputProcessor_1_System_Boolean___Array { struct InputProcessor_1_System_Boolean___Array__Class *klass; MonitorData *monitor; @@ -1247791,6 +1264856,41 @@ struct InputControl_1_System_Boolean___Class { struct InputControl_1_System_Boolean___VTable vtable; }; +struct Eyes___VTable { +}; + +struct Eyes___StaticFields { +}; + +struct Eyes___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Eyes___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Eyes___VTable vtable; +}; + +struct Haptic___VTable { +}; + +struct Haptic___StaticFields { +}; + +struct Haptic___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Haptic___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Haptic___VTable vtable; +}; + +struct InputProcessor_1_System_Int32Enum_ { + struct InputProcessor_1_System_Int32Enum___Class *klass; + MonitorData *monitor; +}; + struct InlinedArray_1_UnityEngine_InputSystem_InputProcessor_1__14 { int32_t length; struct InputProcessor_1_System_Int32Enum_ *firstValue; @@ -1247825,11 +1264925,6 @@ struct InputControl_1_System_Int32Enum_ { struct InputControl_1_System_Int32Enum___Fields fields; }; -struct InputProcessor_1_System_Int32Enum_ { - struct InputProcessor_1_System_Int32Enum___Class *klass; - MonitorData *monitor; -}; - struct InputProcessor_1_System_Int32Enum___Array { struct InputProcessor_1_System_Int32Enum___Array__Class *klass; MonitorData *monitor; @@ -1247952,6 +1265047,41 @@ struct InputControl_1_System_Int32Enum___Class { struct InputControl_1_System_Int32Enum___VTable vtable; }; +struct Pose__1__VTable { +}; + +struct Pose__1__StaticFields { +}; + +struct Pose__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Pose__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Pose__1__VTable vtable; +}; + +struct PoseState___VTable { +}; + +struct PoseState___StaticFields { +}; + +struct PoseState___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PoseState___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PoseState___VTable vtable; +}; + +struct InputProcessor_1_System_UInt32_ { + struct InputProcessor_1_System_UInt32___Class *klass; + MonitorData *monitor; +}; + struct InlinedArray_1_UnityEngine_InputSystem_InputProcessor_1__15 { int32_t length; struct InputProcessor_1_System_UInt32_ *firstValue; @@ -1247978,11 +1265108,6 @@ struct InputControl_1_System_UInt32_ { struct InputControl_1_System_UInt32___Fields fields; }; -struct InputProcessor_1_System_UInt32_ { - struct InputProcessor_1_System_UInt32___Class *klass; - MonitorData *monitor; -}; - struct InputProcessor_1_System_UInt32___Array { struct InputProcessor_1_System_UInt32___Array__Class *klass; MonitorData *monitor; @@ -1283214,6 +1300339,21 @@ struct List_1_List_1_UnityEngine_Color32___Class { struct List_1_List_1_UnityEngine_Color32___VTable vtable; }; +struct List_1_UnityEngine_Color32__1__VTable { +}; + +struct List_1_UnityEngine_Color32__1__StaticFields { +}; + +struct List_1_UnityEngine_Color32__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_Color32__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_Color32__1__VTable vtable; +}; + struct __declspec(align(8)) List_1_List_1_Pathfinding_Connection___Fields { struct List_1_Pathfinding_Connection___Array *_items; int32_t _size; @@ -1283322,6 +1300462,21 @@ struct List_1_List_1_Pathfinding_Connection___Class { struct List_1_List_1_Pathfinding_Connection___VTable vtable; }; +struct List_1_Pathfinding_Connection__1__VTable { +}; + +struct List_1_Pathfinding_Connection__1__StaticFields { +}; + +struct List_1_Pathfinding_Connection__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Pathfinding_Connection__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Pathfinding_Connection__1__VTable vtable; +}; + struct __declspec(align(8)) List_1_List_1_Pathfinding_Int3___Fields { struct List_1_Pathfinding_Int3___Array *_items; int32_t _size; @@ -1283430,6 +1300585,36 @@ struct List_1_List_1_Pathfinding_Int3___Class { struct List_1_List_1_Pathfinding_Int3___VTable vtable; }; +struct List_1_Pathfinding_Int3__1__VTable { +}; + +struct List_1_Pathfinding_Int3__1__StaticFields { +}; + +struct List_1_Pathfinding_Int3__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Pathfinding_Int3__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Pathfinding_Int3__1__VTable vtable; +}; + +struct List_1_Pathfinding_ClipperLib_IntPoint__1__VTable { +}; + +struct List_1_Pathfinding_ClipperLib_IntPoint__1__StaticFields { +}; + +struct List_1_Pathfinding_ClipperLib_IntPoint__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Pathfinding_ClipperLib_IntPoint__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Pathfinding_ClipperLib_IntPoint__1__VTable vtable; +}; + struct __declspec(align(8)) List_1_List_1_System_Single___Fields { struct List_1_System_Single___Array *_items; int32_t _size; @@ -1283538,6 +1300723,21 @@ struct List_1_List_1_System_Single___Class { struct List_1_List_1_System_Single___VTable vtable; }; +struct List_1_System_Single__2__VTable { +}; + +struct List_1_System_Single__2__StaticFields { +}; + +struct List_1_System_Single__2__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_System_Single__2__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_System_Single__2__VTable vtable; +}; + struct __declspec(align(8)) List_1_List_1_System_UInt32___Fields { struct List_1_System_UInt32___Array *_items; int32_t _size; @@ -1283646,6 +1300846,51 @@ struct List_1_List_1_System_UInt32___Class { struct List_1_List_1_System_UInt32___VTable vtable; }; +struct List_1_System_UInt32__1__VTable { +}; + +struct List_1_System_UInt32__1__StaticFields { +}; + +struct List_1_System_UInt32__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_System_UInt32__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_System_UInt32__1__VTable vtable; +}; + +struct List_1_UnityEngine_Vector2__2__VTable { +}; + +struct List_1_UnityEngine_Vector2__2__StaticFields { +}; + +struct List_1_UnityEngine_Vector2__2__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_Vector2__2__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_Vector2__2__VTable vtable; +}; + +struct List_1_UnityEngine_Vector3__2__VTable { +}; + +struct List_1_UnityEngine_Vector3__2__StaticFields { +}; + +struct List_1_UnityEngine_Vector3__2__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_Vector3__2__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_Vector3__2__VTable vtable; +}; + struct __declspec(align(8)) List_1_List_1_Pathfinding_Funnel_PathPart___Fields { struct List_1_Pathfinding_Funnel_PathPart___Array *_items; int32_t _size; @@ -1283754,6 +1300999,21 @@ struct List_1_List_1_Pathfinding_Funnel_PathPart___Class { struct List_1_List_1_Pathfinding_Funnel_PathPart___VTable vtable; }; +struct List_1_Pathfinding_Funnel_PathPart__1__VTable { +}; + +struct List_1_Pathfinding_Funnel_PathPart__1__StaticFields { +}; + +struct List_1_Pathfinding_Funnel_PathPart__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Pathfinding_Funnel_PathPart__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Pathfinding_Funnel_PathPart__1__VTable vtable; +}; + struct ObjectPool_1_T_PooledObject_System_Collections_Generic_List_1_ { struct List_1_System_Object_ *m_ToReturn; struct ObjectPool_1_System_Collections_Generic_List_1_ *m_Pool; @@ -1314481,6 +1331741,21 @@ struct Span_1_Object___Boxed { struct Span_1_Object_ fields; }; +struct ArraySegment_1_Object__1__VTable { +}; + +struct ArraySegment_1_Object__1__StaticFields { +}; + +struct ArraySegment_1_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ArraySegment_1_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ArraySegment_1_Object__1__VTable vtable; +}; + struct MemoryManager_1_System_Object___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1328849,6 +1346124,19 @@ struct RenderGraphResourcePool_1_System_Object_ { struct RenderGraphResourcePool_1_System_Object___Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_SortedList_2_System_Int32_System_ValueTuple_2__2 { + int32_t hashCode; + int32_t next; + int32_t key; + struct SortedList_2_System_Int32_System_ValueTuple_2__4 *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_SortedList_2_System_Int32_System_ValueTuple_2__2__Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_SortedList_2_System_Int32_System_ValueTuple_2__2__Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_SortedList_2_System_Int32_System_ValueTuple_2__2 fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_SortedList_2_System_Int32_System_ValueTuple_2__2__Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_SortedList_2_System_Int32_System_ValueTuple_2__2__Array *_entries; @@ -1328868,19 +1346156,6 @@ struct Dictionary_2_System_Int32_SortedList_2_System_Int32_System_ValueTuple_2__ struct Dictionary_2_System_Int32_SortedList_2_System_Int32_System_ValueTuple_2__2__Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_SortedList_2_System_Int32_System_ValueTuple_2__2 { - int32_t hashCode; - int32_t next; - int32_t key; - struct SortedList_2_System_Int32_System_ValueTuple_2__2 *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_SortedList_2_System_Int32_System_ValueTuple_2__2__Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_SortedList_2_System_Int32_System_ValueTuple_2__2__Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_SortedList_2_System_Int32_System_ValueTuple_2__2 fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_SortedList_2_System_Int32_System_ValueTuple_2__2__Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_SortedList_2_System_Int32_System_ValueTuple_2__2__Array__Class *klass; MonitorData *monitor; @@ -1328909,12 +1346184,12 @@ struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_SortedList_2_System struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_SortedList_2_System_Int32_System_ValueTuple_2__2__Fields fields; }; -struct SortedList_2_System_Int32_System_ValueTuple_2__2__Array { - struct SortedList_2_System_Int32_System_ValueTuple_2__2__Array__Class *klass; +struct SortedList_2_System_Int32_System_ValueTuple_2__4__Array { + struct SortedList_2_System_Int32_System_ValueTuple_2__4__Array__Class *klass; MonitorData *monitor; Il2CppArrayBounds *bounds; il2cpp_array_size_t max_length; - struct SortedList_2_System_Int32_System_ValueTuple_2__2 *vector[32]; + struct SortedList_2_System_Int32_System_ValueTuple_2__4 *vector[32]; }; struct IEnumerator_1_SortedList_2_System_Int32_System_ValueTuple_2__2 { @@ -1328929,7 +1346204,7 @@ struct ICollection_1_SortedList_2_System_Int32_System_ValueTuple_2__2 { struct KeyValuePair_2_System_Int32_SortedList_2_System_Int32_System_ValueTuple_2__2 { int32_t key; - struct SortedList_2_System_Int32_System_ValueTuple_2__2 *value; + struct SortedList_2_System_Int32_System_ValueTuple_2__4 *value; }; struct KeyValuePair_2_System_Int32_SortedList_2_System_Int32_System_ValueTuple_2__2__Boxed { @@ -1329023,19 +1346298,19 @@ struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32_SortedList_2_System_I struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32_SortedList_2_System_Int32_System_ValueTuple_2__2__VTable vtable; }; -struct SortedList_2_System_Int32_System_ValueTuple_2__2__Array__VTable { +struct SortedList_2_System_Int32_System_ValueTuple_2__4__Array__VTable { }; -struct SortedList_2_System_Int32_System_ValueTuple_2__2__Array__StaticFields { +struct SortedList_2_System_Int32_System_ValueTuple_2__4__Array__StaticFields { }; -struct SortedList_2_System_Int32_System_ValueTuple_2__2__Array__Class { +struct SortedList_2_System_Int32_System_ValueTuple_2__4__Array__Class { Il2CppClass_0 _0; Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct SortedList_2_System_Int32_System_ValueTuple_2__2__Array__StaticFields *static_fields; + struct SortedList_2_System_Int32_System_ValueTuple_2__4__Array__StaticFields *static_fields; const Il2CppRGCTXData *rgctx_data; Il2CppClass_1 _1; - struct SortedList_2_System_Int32_System_ValueTuple_2__2__Array__VTable vtable; + struct SortedList_2_System_Int32_System_ValueTuple_2__4__Array__VTable vtable; }; struct IEnumerator_1_SortedList_2_System_Int32_System_ValueTuple_2__2__VTable { @@ -1329109,6 +1346384,21 @@ struct ICollection_1_SortedList_2_System_Int32_System_ValueTuple_2__2__Class { struct ICollection_1_SortedList_2_System_Int32_System_ValueTuple_2__2__VTable vtable; }; +struct SortedList_2_System_Int32_System_ValueTuple_2__5__VTable { +}; + +struct SortedList_2_System_Int32_System_ValueTuple_2__5__StaticFields { +}; + +struct SortedList_2_System_Int32_System_ValueTuple_2__5__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SortedList_2_System_Int32_System_ValueTuple_2__5__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SortedList_2_System_Int32_System_ValueTuple_2__5__VTable vtable; +}; + struct KeyValuePair_2_System_Int32_SortedList_2_System_Int32_System_ValueTuple_2__2__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1329841,19 +1347131,6 @@ struct SafeAction_1_System_Object_ { struct SafeAction_1_System_Object___Fields fields; }; -struct __declspec(align(8)) List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__2__Fields { - struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__1__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__2 { - struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__2__Class *klass; - MonitorData *monitor; - struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__2__Fields fields; -}; - struct __declspec(align(8)) SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__1__Fields { struct Action_1_Object_ *EbPkqdARHGIDwsIdtmoIkULLoFZX; struct Object *azMuaeFsfaJNXcPJwiBJiandOfCPB; @@ -1329867,6 +1347144,19 @@ struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__1 { struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__1__Fields fields; }; +struct __declspec(align(8)) List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__2__Fields { + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__1__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__2 { + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__2__Class *klass; + MonitorData *monitor; + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__2__Fields fields; +}; + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__1__Array { struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__1__Array__Class *klass; MonitorData *monitor; @@ -1330097,19 +1347387,6 @@ struct SafeAction_2_System_Object_System_Object_ { struct SafeAction_2_System_Object_System_Object___Fields fields; }; -struct __declspec(align(8)) List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__3__Fields { - struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_2___Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__3 { - struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__3__Class *klass; - MonitorData *monitor; - struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__3__Fields fields; -}; - struct __declspec(align(8)) SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_2___Fields { struct Action_2_Object_Object_ *EbPkqdARHGIDwsIdtmoIkULLoFZX; struct Object *azMuaeFsfaJNXcPJwiBJiandOfCPB; @@ -1330123,6 +1347400,19 @@ struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_2_ { struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_2___Fields fields; }; +struct __declspec(align(8)) List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__3__Fields { + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_2___Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__3 { + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__3__Class *klass; + MonitorData *monitor; + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__3__Fields fields; +}; + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_2___Array { struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_2___Array__Class *klass; MonitorData *monitor; @@ -1330341,19 +1347631,6 @@ struct SafeDelegate_1_System_Object_ { struct SafeDelegate_1_System_Object___Fields fields; }; -struct __declspec(align(8)) List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__4__Fields { - struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Object___Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__4 { - struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__4__Class *klass; - MonitorData *monitor; - struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__4__Fields fields; -}; - struct __declspec(align(8)) SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Object___Fields { struct Object *EbPkqdARHGIDwsIdtmoIkULLoFZX; struct Object *azMuaeFsfaJNXcPJwiBJiandOfCPB; @@ -1330367,6 +1347644,19 @@ struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Object_ { struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Object___Fields fields; }; +struct __declspec(align(8)) List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__4__Fields { + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Object___Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__4 { + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__4__Class *klass; + MonitorData *monitor; + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__4__Fields fields; +}; + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Object___Array { struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Object___Array__Class *klass; MonitorData *monitor; @@ -1330595,19 +1347885,6 @@ struct SafeFunc_2_System_Object_System_Object_ { struct SafeFunc_2_System_Object_System_Object___Fields fields; }; -struct __declspec(align(8)) List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__5__Fields { - struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Func_2___Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__5 { - struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__5__Class *klass; - MonitorData *monitor; - struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__5__Fields fields; -}; - struct __declspec(align(8)) SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Func_2___Fields { struct Func_2_Object_Object_ *EbPkqdARHGIDwsIdtmoIkULLoFZX; struct Object *azMuaeFsfaJNXcPJwiBJiandOfCPB; @@ -1330621,6 +1347898,19 @@ struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Func_2_ { struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Func_2___Fields fields; }; +struct __declspec(align(8)) List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__5__Fields { + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Func_2___Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__5 { + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__5__Class *klass; + MonitorData *monitor; + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__5__Fields fields; +}; + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Func_2___Array { struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Func_2___Array__Class *klass; MonitorData *monitor; @@ -1330851,19 +1348141,6 @@ struct SafePredicate_1_Rewired_ControllerPollingInfo_ { struct SafePredicate_1_Rewired_ControllerPollingInfo___Fields fields; }; -struct __declspec(align(8)) List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__6__Fields { - struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Predicate_1___Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__6 { - struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__6__Class *klass; - MonitorData *monitor; - struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__6__Fields fields; -}; - struct __declspec(align(8)) SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Predicate_1___Fields { struct Predicate_1_Rewired_ControllerPollingInfo_ *EbPkqdARHGIDwsIdtmoIkULLoFZX; struct Object *azMuaeFsfaJNXcPJwiBJiandOfCPB; @@ -1330877,6 +1348154,19 @@ struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Predicate_1_ { struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Predicate_1___Fields fields; }; +struct __declspec(align(8)) List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__6__Fields { + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Predicate_1___Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__6 { + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__6__Class *klass; + MonitorData *monitor; + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__6__Fields fields; +}; + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Predicate_1___Array { struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Predicate_1___Array__Class *klass; MonitorData *monitor; @@ -1331107,19 +1348397,6 @@ struct SafePredicate_1_System_Object_ { struct SafePredicate_1_System_Object___Fields fields; }; -struct __declspec(align(8)) List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__7__Fields { - struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Predicate_1__1__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__7 { - struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__7__Class *klass; - MonitorData *monitor; - struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__7__Fields fields; -}; - struct __declspec(align(8)) SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Predicate_1__1__Fields { struct Predicate_1_Object_ *EbPkqdARHGIDwsIdtmoIkULLoFZX; struct Object *azMuaeFsfaJNXcPJwiBJiandOfCPB; @@ -1331133,6 +1348410,19 @@ struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Predicate_1__1 { struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Predicate_1__1__Fields fields; }; +struct __declspec(align(8)) List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__7__Fields { + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Predicate_1__1__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__7 { + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__7__Class *klass; + MonitorData *monitor; + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__7__Fields fields; +}; + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Predicate_1__1__Array { struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Predicate_1__1__Array__Class *klass; MonitorData *monitor; @@ -1332916,7 +1350206,7 @@ struct IDictionary_2_System_Object_System_Char___Class { }; struct __declspec(align(8)) SortedList_2_TKey_TValue_SortedListKeyEnumerator_System_Int32_System_ValueTuple_2___Fields { - struct SortedList_2_System_Int32_System_ValueTuple_2__2 *_sortedList; + struct SortedList_2_System_Int32_System_ValueTuple_2__4 *_sortedList; int32_t _index; int32_t _version; int32_t _currentKey; @@ -1332990,7 +1350280,7 @@ struct SortedList_2_TKey_TValue_SortedListKeyEnumerator_System_Object_System_Obj }; struct __declspec(align(8)) SortedList_2_TKey_TValue_SortedListValueEnumerator_System_Int32_System_ValueTuple_2___Fields { - struct SortedList_2_System_Int32_System_ValueTuple_2__2 *_sortedList; + struct SortedList_2_System_Int32_System_ValueTuple_2__4 *_sortedList; int32_t _index; int32_t _version; struct ValueTuple_2_Object_Int32_ _currentValue; @@ -1333362,6 +1350652,36 @@ struct IEqualityComparer_1_SortedSet_1_KeyValuePair_2_System_Object_System_Char_ struct IEqualityComparer_1_SortedSet_1_KeyValuePair_2_System_Object_System_Char___VTable vtable; }; +struct SortedSet_1_T_Node_KeyValuePair_2_System_Object_System_Char__1__VTable { +}; + +struct SortedSet_1_T_Node_KeyValuePair_2_System_Object_System_Char__1__StaticFields { +}; + +struct SortedSet_1_T_Node_KeyValuePair_2_System_Object_System_Char__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SortedSet_1_T_Node_KeyValuePair_2_System_Object_System_Char__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SortedSet_1_T_Node_KeyValuePair_2_System_Object_System_Char__1__VTable vtable; +}; + +struct KeyValuePair_2_System_Object_System_Char__1__VTable { +}; + +struct KeyValuePair_2_System_Object_System_Char__1__StaticFields { +}; + +struct KeyValuePair_2_System_Object_System_Char__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_Object_System_Char__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_Object_System_Char__1__VTable vtable; +}; + struct SortedSet_1_T_ElementCount_KeyValuePair_2_System_Object_System_Object_ { int32_t UniqueCount; int32_t UnfoundCount; @@ -1333414,6 +1350734,21 @@ struct IEqualityComparer_1_SortedSet_1_KeyValuePair_2_System_Object_System_Objec struct IEqualityComparer_1_SortedSet_1_KeyValuePair_2_System_Object_System_Object___VTable vtable; }; +struct SortedSet_1_T_Node_KeyValuePair_2_System_Object_System_Object__1__VTable { +}; + +struct SortedSet_1_T_Node_KeyValuePair_2_System_Object_System_Object__1__StaticFields { +}; + +struct SortedSet_1_T_Node_KeyValuePair_2_System_Object_System_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SortedSet_1_T_Node_KeyValuePair_2_System_Object_System_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SortedSet_1_T_Node_KeyValuePair_2_System_Object_System_Object__1__VTable vtable; +}; + struct SortedSet_1_T_ElementCount_KeyValuePair_2_System_UInt64_System_Object_ { int32_t UniqueCount; int32_t UnfoundCount; @@ -1333466,6 +1350801,36 @@ struct IEqualityComparer_1_SortedSet_1_KeyValuePair_2_System_UInt64_System_Objec struct IEqualityComparer_1_SortedSet_1_KeyValuePair_2_System_UInt64_System_Object___VTable vtable; }; +struct SortedSet_1_T_Node_KeyValuePair_2_System_UInt64_System_Object__1__VTable { +}; + +struct SortedSet_1_T_Node_KeyValuePair_2_System_UInt64_System_Object__1__StaticFields { +}; + +struct SortedSet_1_T_Node_KeyValuePair_2_System_UInt64_System_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SortedSet_1_T_Node_KeyValuePair_2_System_UInt64_System_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SortedSet_1_T_Node_KeyValuePair_2_System_UInt64_System_Object__1__VTable vtable; +}; + +struct KeyValuePair_2_System_UInt64_System_Object__1__VTable { +}; + +struct KeyValuePair_2_System_UInt64_System_Object__1__StaticFields { +}; + +struct KeyValuePair_2_System_UInt64_System_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_UInt64_System_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_UInt64_System_Object__1__VTable vtable; +}; + struct SortedSet_1_T_ElementCount_System_Object_ { int32_t UniqueCount; int32_t UnfoundCount; @@ -1333518,6 +1350883,21 @@ struct IEqualityComparer_1_SortedSet_1_System_Object___Class { struct IEqualityComparer_1_SortedSet_1_System_Object___VTable vtable; }; +struct SortedSet_1_T_Node_System_Object__1__VTable { +}; + +struct SortedSet_1_T_Node_System_Object__1__StaticFields { +}; + +struct SortedSet_1_T_Node_System_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SortedSet_1_T_Node_System_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SortedSet_1_T_Node_System_Object__1__VTable vtable; +}; + struct SpanAction_2_System_Char_System_ValueTuple_3__1__Fields { struct MulticastDelegate__Fields _; }; @@ -1334095,19 +1351475,6 @@ struct StructWrapperPool_1_System_Double_ { struct StructWrapperPool_1_System_Double___Fields fields; }; -struct __declspec(align(8)) Stack_1_ExitGames_Client_Photon_StructWrapping_StructWrapper_1__2__Fields { - struct StructWrapper_1_System_Double___Array *_array; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct Stack_1_ExitGames_Client_Photon_StructWrapping_StructWrapper_1__2 { - struct Stack_1_ExitGames_Client_Photon_StructWrapping_StructWrapper_1__2__Class *klass; - MonitorData *monitor; - struct Stack_1_ExitGames_Client_Photon_StructWrapping_StructWrapper_1__2__Fields fields; -}; - struct StructWrapper_1_System_Double___Fields { struct StructWrapper__Fields _; struct StructWrapperPool_1_System_Double_ *_ReturnPool_k__BackingField; @@ -1334125,6 +1351492,19 @@ struct StructWrapper_1_System_Double_ { struct StructWrapper_1_System_Double___Fields fields; }; +struct __declspec(align(8)) Stack_1_ExitGames_Client_Photon_StructWrapping_StructWrapper_1__2__Fields { + struct StructWrapper_1_System_Double___Array *_array; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct Stack_1_ExitGames_Client_Photon_StructWrapping_StructWrapper_1__2 { + struct Stack_1_ExitGames_Client_Photon_StructWrapping_StructWrapper_1__2__Class *klass; + MonitorData *monitor; + struct Stack_1_ExitGames_Client_Photon_StructWrapping_StructWrapper_1__2__Fields fields; +}; + struct StructWrapper_1_System_Double___Array { struct StructWrapper_1_System_Double___Array__Class *klass; MonitorData *monitor; @@ -1334254,19 +1351634,6 @@ struct StructWrapperPool_1_System_Int16_ { struct StructWrapperPool_1_System_Int16___Fields fields; }; -struct __declspec(align(8)) Stack_1_ExitGames_Client_Photon_StructWrapping_StructWrapper_1__3__Fields { - struct StructWrapper_1_System_Int16___Array *_array; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct Stack_1_ExitGames_Client_Photon_StructWrapping_StructWrapper_1__3 { - struct Stack_1_ExitGames_Client_Photon_StructWrapping_StructWrapper_1__3__Class *klass; - MonitorData *monitor; - struct Stack_1_ExitGames_Client_Photon_StructWrapping_StructWrapper_1__3__Fields fields; -}; - struct StructWrapper_1_System_Int16___Fields { struct StructWrapper__Fields _; struct StructWrapperPool_1_System_Int16_ *_ReturnPool_k__BackingField; @@ -1334284,6 +1351651,19 @@ struct StructWrapper_1_System_Int16_ { struct StructWrapper_1_System_Int16___Fields fields; }; +struct __declspec(align(8)) Stack_1_ExitGames_Client_Photon_StructWrapping_StructWrapper_1__3__Fields { + struct StructWrapper_1_System_Int16___Array *_array; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct Stack_1_ExitGames_Client_Photon_StructWrapping_StructWrapper_1__3 { + struct Stack_1_ExitGames_Client_Photon_StructWrapping_StructWrapper_1__3__Class *klass; + MonitorData *monitor; + struct Stack_1_ExitGames_Client_Photon_StructWrapping_StructWrapper_1__3__Fields fields; +}; + struct StructWrapper_1_System_Int16___Array { struct StructWrapper_1_System_Int16___Array__Class *klass; MonitorData *monitor; @@ -1334413,19 +1351793,6 @@ struct StructWrapperPool_1_System_Int32_ { struct StructWrapperPool_1_System_Int32___Fields fields; }; -struct __declspec(align(8)) Stack_1_ExitGames_Client_Photon_StructWrapping_StructWrapper_1__4__Fields { - struct StructWrapper_1_System_Int32___Array *_array; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct Stack_1_ExitGames_Client_Photon_StructWrapping_StructWrapper_1__4 { - struct Stack_1_ExitGames_Client_Photon_StructWrapping_StructWrapper_1__4__Class *klass; - MonitorData *monitor; - struct Stack_1_ExitGames_Client_Photon_StructWrapping_StructWrapper_1__4__Fields fields; -}; - struct StructWrapper_1_System_Int32___Fields { struct StructWrapper__Fields _; struct StructWrapperPool_1_System_Int32_ *_ReturnPool_k__BackingField; @@ -1334443,6 +1351810,19 @@ struct StructWrapper_1_System_Int32_ { struct StructWrapper_1_System_Int32___Fields fields; }; +struct __declspec(align(8)) Stack_1_ExitGames_Client_Photon_StructWrapping_StructWrapper_1__4__Fields { + struct StructWrapper_1_System_Int32___Array *_array; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct Stack_1_ExitGames_Client_Photon_StructWrapping_StructWrapper_1__4 { + struct Stack_1_ExitGames_Client_Photon_StructWrapping_StructWrapper_1__4__Class *klass; + MonitorData *monitor; + struct Stack_1_ExitGames_Client_Photon_StructWrapping_StructWrapper_1__4__Fields fields; +}; + struct StructWrapper_1_System_Int32___Array { struct StructWrapper_1_System_Int32___Array__Class *klass; MonitorData *monitor; @@ -1334572,19 +1351952,6 @@ struct StructWrapperPool_1_System_Int64_ { struct StructWrapperPool_1_System_Int64___Fields fields; }; -struct __declspec(align(8)) Stack_1_ExitGames_Client_Photon_StructWrapping_StructWrapper_1__5__Fields { - struct StructWrapper_1_System_Int64___Array *_array; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct Stack_1_ExitGames_Client_Photon_StructWrapping_StructWrapper_1__5 { - struct Stack_1_ExitGames_Client_Photon_StructWrapping_StructWrapper_1__5__Class *klass; - MonitorData *monitor; - struct Stack_1_ExitGames_Client_Photon_StructWrapping_StructWrapper_1__5__Fields fields; -}; - struct StructWrapper_1_System_Int64___Fields { struct StructWrapper__Fields _; struct StructWrapperPool_1_System_Int64_ *_ReturnPool_k__BackingField; @@ -1334602,6 +1351969,19 @@ struct StructWrapper_1_System_Int64_ { struct StructWrapper_1_System_Int64___Fields fields; }; +struct __declspec(align(8)) Stack_1_ExitGames_Client_Photon_StructWrapping_StructWrapper_1__5__Fields { + struct StructWrapper_1_System_Int64___Array *_array; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct Stack_1_ExitGames_Client_Photon_StructWrapping_StructWrapper_1__5 { + struct Stack_1_ExitGames_Client_Photon_StructWrapping_StructWrapper_1__5__Class *klass; + MonitorData *monitor; + struct Stack_1_ExitGames_Client_Photon_StructWrapping_StructWrapper_1__5__Fields fields; +}; + struct StructWrapper_1_System_Int64___Array { struct StructWrapper_1_System_Int64___Array__Class *klass; MonitorData *monitor; @@ -1334731,19 +1352111,6 @@ struct StructWrapperPool_1_System_Object_ { struct StructWrapperPool_1_System_Object___Fields fields; }; -struct __declspec(align(8)) Stack_1_ExitGames_Client_Photon_StructWrapping_StructWrapper_1__6__Fields { - struct StructWrapper_1_System_Object___Array *_array; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct Stack_1_ExitGames_Client_Photon_StructWrapping_StructWrapper_1__6 { - struct Stack_1_ExitGames_Client_Photon_StructWrapping_StructWrapper_1__6__Class *klass; - MonitorData *monitor; - struct Stack_1_ExitGames_Client_Photon_StructWrapping_StructWrapper_1__6__Fields fields; -}; - struct StructWrapper_1_System_Object___Fields { struct StructWrapper__Fields _; struct StructWrapperPool_1_System_Object_ *_ReturnPool_k__BackingField; @@ -1334761,6 +1352128,19 @@ struct StructWrapper_1_System_Object_ { struct StructWrapper_1_System_Object___Fields fields; }; +struct __declspec(align(8)) Stack_1_ExitGames_Client_Photon_StructWrapping_StructWrapper_1__6__Fields { + struct StructWrapper_1_System_Object___Array *_array; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct Stack_1_ExitGames_Client_Photon_StructWrapping_StructWrapper_1__6 { + struct Stack_1_ExitGames_Client_Photon_StructWrapping_StructWrapper_1__6__Class *klass; + MonitorData *monitor; + struct Stack_1_ExitGames_Client_Photon_StructWrapping_StructWrapper_1__6__Fields fields; +}; + struct StructWrapper_1_System_Object___Array { struct StructWrapper_1_System_Object___Array__Class *klass; MonitorData *monitor; @@ -1334890,19 +1352270,6 @@ struct StructWrapperPool_1_System_Single_ { struct StructWrapperPool_1_System_Single___Fields fields; }; -struct __declspec(align(8)) Stack_1_ExitGames_Client_Photon_StructWrapping_StructWrapper_1__7__Fields { - struct StructWrapper_1_System_Single___Array *_array; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct Stack_1_ExitGames_Client_Photon_StructWrapping_StructWrapper_1__7 { - struct Stack_1_ExitGames_Client_Photon_StructWrapping_StructWrapper_1__7__Class *klass; - MonitorData *monitor; - struct Stack_1_ExitGames_Client_Photon_StructWrapping_StructWrapper_1__7__Fields fields; -}; - struct StructWrapper_1_System_Single___Fields { struct StructWrapper__Fields _; struct StructWrapperPool_1_System_Single_ *_ReturnPool_k__BackingField; @@ -1334920,6 +1352287,19 @@ struct StructWrapper_1_System_Single_ { struct StructWrapper_1_System_Single___Fields fields; }; +struct __declspec(align(8)) Stack_1_ExitGames_Client_Photon_StructWrapping_StructWrapper_1__7__Fields { + struct StructWrapper_1_System_Single___Array *_array; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct Stack_1_ExitGames_Client_Photon_StructWrapping_StructWrapper_1__7 { + struct Stack_1_ExitGames_Client_Photon_StructWrapping_StructWrapper_1__7__Class *klass; + MonitorData *monitor; + struct Stack_1_ExitGames_Client_Photon_StructWrapping_StructWrapper_1__7__Fields fields; +}; + struct StructWrapper_1_System_Single___Array { struct StructWrapper_1_System_Single___Array__Class *klass; MonitorData *monitor; @@ -1335512,6 +1352892,23 @@ struct TProfilingSampler_1_System_Int32Enum_ { struct TProfilingSampler_1_System_Int32Enum___Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32Enum_UnityEngine_Rendering_TProfilingSampler_1_ { + int32_t hashCode; + int32_t next; + #if defined(_CPLUSPLUS_) + Int32Enum__Enum key; + #else + int32_t key; + #endif + struct TProfilingSampler_1_System_Int32Enum_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32Enum_UnityEngine_Rendering_TProfilingSampler_1___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32Enum_UnityEngine_Rendering_TProfilingSampler_1___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32Enum_UnityEngine_Rendering_TProfilingSampler_1_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32Enum_UnityEngine_Rendering_TProfilingSampler_1___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32Enum_UnityEngine_Rendering_TProfilingSampler_1___Array *_entries; @@ -1335531,23 +1352928,6 @@ struct Dictionary_2_System_Int32Enum_UnityEngine_Rendering_TProfilingSampler_1_ struct Dictionary_2_System_Int32Enum_UnityEngine_Rendering_TProfilingSampler_1___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32Enum_UnityEngine_Rendering_TProfilingSampler_1_ { - int32_t hashCode; - int32_t next; - #if defined(_CPLUSPLUS_) - Int32Enum__Enum key; - #else - int32_t key; - #endif - struct TProfilingSampler_1_System_Int32Enum_ *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32Enum_UnityEngine_Rendering_TProfilingSampler_1___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32Enum_UnityEngine_Rendering_TProfilingSampler_1___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32Enum_UnityEngine_Rendering_TProfilingSampler_1_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int32Enum_UnityEngine_Rendering_TProfilingSampler_1___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32Enum_UnityEngine_Rendering_TProfilingSampler_1___Array__Class *klass; MonitorData *monitor; @@ -1335780,6 +1353160,21 @@ struct ICollection_1_UnityEngine_Rendering_TProfilingSampler_1___Class { struct ICollection_1_UnityEngine_Rendering_TProfilingSampler_1___VTable vtable; }; +struct TProfilingSampler_1_System_Int32Enum__1__VTable { +}; + +struct TProfilingSampler_1_System_Int32Enum__1__StaticFields { +}; + +struct TProfilingSampler_1_System_Int32Enum__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TProfilingSampler_1_System_Int32Enum__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TProfilingSampler_1_System_Int32Enum__1__VTable vtable; +}; + struct KeyValuePair_2_System_Int32Enum_UnityEngine_Rendering_TProfilingSampler_1___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1335935,6 +1353330,19 @@ struct TProfilingSampler_1_System_Object_ { struct TProfilingSampler_1_System_Object___Fields fields; }; +struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Rendering_TProfilingSampler_1_ { + int32_t hashCode; + int32_t next; + struct Object *key; + struct TProfilingSampler_1_System_Object_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Rendering_TProfilingSampler_1___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Rendering_TProfilingSampler_1___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Rendering_TProfilingSampler_1_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Object_UnityEngine_Rendering_TProfilingSampler_1___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Rendering_TProfilingSampler_1___Array *_entries; @@ -1335954,19 +1353362,6 @@ struct Dictionary_2_System_Object_UnityEngine_Rendering_TProfilingSampler_1_ { struct Dictionary_2_System_Object_UnityEngine_Rendering_TProfilingSampler_1___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Rendering_TProfilingSampler_1_ { - int32_t hashCode; - int32_t next; - struct Object *key; - struct TProfilingSampler_1_System_Object_ *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Rendering_TProfilingSampler_1___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Rendering_TProfilingSampler_1___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Rendering_TProfilingSampler_1_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Rendering_TProfilingSampler_1___Array { struct Dictionary_2_TKey_TValue_Entry_System_Object_UnityEngine_Rendering_TProfilingSampler_1___Array__Class *klass; MonitorData *monitor; @@ -1336195,6 +1353590,21 @@ struct ICollection_1_UnityEngine_Rendering_TProfilingSampler_1__1__Class { struct ICollection_1_UnityEngine_Rendering_TProfilingSampler_1__1__VTable vtable; }; +struct TProfilingSampler_1_System_Object__1__VTable { +}; + +struct TProfilingSampler_1_System_Object__1__StaticFields { +}; + +struct TProfilingSampler_1_System_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TProfilingSampler_1_System_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TProfilingSampler_1_System_Object__1__VTable vtable; +}; + struct KeyValuePair_2_System_Object_UnityEngine_Rendering_TProfilingSampler_1___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1338324,6 +1355734,21 @@ struct ThreadLocal_1_System_Object___Class { struct ThreadLocal_1_System_Object___VTable vtable; }; +struct ThreadLocal_1_T_LinkedSlotVolatile_System_Object__1__VTable { +}; + +struct ThreadLocal_1_T_LinkedSlotVolatile_System_Object__1__StaticFields { +}; + +struct ThreadLocal_1_T_LinkedSlotVolatile_System_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ThreadLocal_1_T_LinkedSlotVolatile_System_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ThreadLocal_1_T_LinkedSlotVolatile_System_Object__1__VTable vtable; +}; + struct __declspec(align(8)) ThreadedMessageQueue_1_System_Object___Fields { int32_t ejiIUQwRUwagZYocVOGDFrmzqoSw; int32_t RLHfBYtraxqpxtelwiwLHecLwogLA; @@ -1338484,6 +1355909,21 @@ struct TrackingSubsystem_4_XRRaycast_System_Object_System_Object_System_Object__ struct TrackingSubsystem_4_XRRaycast_System_Object_System_Object_System_Object___VTable vtable; }; +struct VoicePacket___VTable { +}; + +struct VoicePacket___StaticFields { +}; + +struct VoicePacket___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct VoicePacket___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct VoicePacket___VTable vtable; +}; + struct __declspec(align(8)) TransferBuffer_1_Dissonance_Logs_LogMessage___Fields { struct Logs_LogMessage_1__Array *_buffer; int32_t _readHead; @@ -1338519,6 +1355959,21 @@ struct TransferBuffer_1_Dissonance_Logs_LogMessage___Class { struct TransferBuffer_1_Dissonance_Logs_LogMessage___VTable vtable; }; +struct Logs_LogMessage___VTable { +}; + +struct Logs_LogMessage___StaticFields { +}; + +struct Logs_LogMessage___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Logs_LogMessage___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Logs_LogMessage___VTable vtable; +}; + struct TransitionEventBase_1_System_Object___Fields { struct EventBase_1_System_Object___Fields _; struct StylePropertyNameCollection _stylePropertyNames_k__BackingField; @@ -1340072,6 +1357527,21 @@ struct UnwrapPromise_1_VoidTaskResult___Class { struct UnwrapPromise_1_VoidTaskResult___VTable vtable; }; +struct __declspec(align(8)) UpdateLoopDataSet_1_T_ZiclZXYpwdehzXmFmEsJccSZMPwKA_System_Object___Fields { + #if defined(_CPLUSPLUS_) + UpdateLoopType__Enum bgmCxafTAhGyaRRTSDTPlAiCLjtFb; + #else + int32_t bgmCxafTAhGyaRRTSDTPlAiCLjtFb; + #endif + struct Object *HyeFxCdoLKehvVbQKkUQTbHaPcRoA; +}; + +struct UpdateLoopDataSet_1_T_ZiclZXYpwdehzXmFmEsJccSZMPwKA_System_Object_ { + struct UpdateLoopDataSet_1_T_ZiclZXYpwdehzXmFmEsJccSZMPwKA_System_Object___Class *klass; + MonitorData *monitor; + struct UpdateLoopDataSet_1_T_ZiclZXYpwdehzXmFmEsJccSZMPwKA_System_Object___Fields fields; +}; + struct __declspec(align(8)) UpdateLoopDataSet_1_System_Object___Fields { struct UpdateLoopDataSet_1_T_ZiclZXYpwdehzXmFmEsJccSZMPwKA_System_Object_ *HlHYPIOWvlHvQyLwTkcAbKJfkYmu; int32_t vNftwdZEYOcQNbtfsevUFgcLKKBfA; @@ -1340091,21 +1357561,6 @@ struct UpdateLoopDataSet_1_System_Object_ { struct UpdateLoopDataSet_1_System_Object___Fields fields; }; -struct __declspec(align(8)) UpdateLoopDataSet_1_T_ZiclZXYpwdehzXmFmEsJccSZMPwKA_System_Object___Fields { - #if defined(_CPLUSPLUS_) - UpdateLoopType__Enum bgmCxafTAhGyaRRTSDTPlAiCLjtFb; - #else - int32_t bgmCxafTAhGyaRRTSDTPlAiCLjtFb; - #endif - struct Object *HyeFxCdoLKehvVbQKkUQTbHaPcRoA; -}; - -struct UpdateLoopDataSet_1_T_ZiclZXYpwdehzXmFmEsJccSZMPwKA_System_Object_ { - struct UpdateLoopDataSet_1_T_ZiclZXYpwdehzXmFmEsJccSZMPwKA_System_Object___Class *klass; - MonitorData *monitor; - struct UpdateLoopDataSet_1_T_ZiclZXYpwdehzXmFmEsJccSZMPwKA_System_Object___Fields fields; -}; - struct UpdateLoopDataSet_1_T_ZiclZXYpwdehzXmFmEsJccSZMPwKA_System_Object___Array { struct UpdateLoopDataSet_1_T_ZiclZXYpwdehzXmFmEsJccSZMPwKA_System_Object___Array__Class *klass; MonitorData *monitor; @@ -1341358,6 +1358813,21 @@ struct StylePropertyAnimationSystem_ValuesDiscrete_1_System_Object___Class { struct StylePropertyAnimationSystem_ValuesDiscrete_1_System_Object___VTable vtable; }; +struct Register___VTable { +}; + +struct Register___StaticFields { +}; + +struct Register___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Register___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Register___VTable vtable; +}; + struct Vector_1_System_UInt64_ { struct Register register_1; }; @@ -1360090,6 +1377560,18 @@ struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_System_Object_Syste struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_System_Object_System_Object___Fields fields; }; +struct __declspec(align(8)) Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_System_Object_System_Object___Fields { + struct Object *yrSDfNzGPLUBuAkUrbEMVpfZXAPl; + struct FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_System_Object_ *aAowPEkJbfCViZyNqUZPfunqZbmj; + double RWrsGMkNXPpTwapDpWSPGxirSYGc; +}; + +struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_System_Object_System_Object_ { + struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_System_Object_System_Object___Class *klass; + MonitorData *monitor; + struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_System_Object_System_Object___Fields fields; +}; + struct __declspec(align(8)) List_1_Rewired_Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_iFdhrNpmwqfCBhYGNyxLdlHCddIiA__2__Fields { struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_System_Object_System_Object___Array *_items; int32_t _size; @@ -1360103,18 +1377585,6 @@ struct List_1_Rewired_Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_iFdh struct List_1_Rewired_Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_iFdhrNpmwqfCBhYGNyxLdlHCddIiA__2__Fields fields; }; -struct __declspec(align(8)) Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_System_Object_System_Object___Fields { - struct Object *yrSDfNzGPLUBuAkUrbEMVpfZXAPl; - struct FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_System_Object_ *aAowPEkJbfCViZyNqUZPfunqZbmj; - double RWrsGMkNXPpTwapDpWSPGxirSYGc; -}; - -struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_System_Object_System_Object_ { - struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_System_Object_System_Object___Class *klass; - MonitorData *monitor; - struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_System_Object_System_Object___Fields fields; -}; - struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_System_Object_System_Object___Array { struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_System_Object_System_Object___Array__Class *klass; MonitorData *monitor; @@ -1371186,6 +1388656,1731 @@ struct IEnumerator_1_Interop_SspiCli_SecBuffer___Class { struct IEnumerator_1_Interop_SspiCli_SecBuffer___VTable vtable; }; +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Background__1__VTable { +}; + +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Background__1__StaticFields { +}; + +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Background__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Background__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Background__1__VTable vtable; +}; + +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color__1__VTable { +}; + +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color__1__StaticFields { +}; + +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StylePropertyAnimationSystem_Values_1_T_EmptyData_UnityEngine_Color__1__VTable vtable; +}; + +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition__1__VTable { +}; + +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition__1__StaticFields { +}; + +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StylePropertyAnimationSystem_Values_1_T_EmptyData_FontDefinition__1__VTable vtable; +}; + +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32__1__VTable { +}; + +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32__1__StaticFields { +}; + +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Int32__1__VTable vtable; +}; + +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Length__1__VTable { +}; + +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Length__1__StaticFields { +}; + +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Length__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Length__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Length__1__VTable vtable; +}; + +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object__1__VTable { +}; + +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object__1__StaticFields { +}; + +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Object__1__VTable vtable; +}; + +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate__1__VTable { +}; + +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate__1__StaticFields { +}; + +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Rotate__1__VTable vtable; +}; + +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale__1__VTable { +}; + +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale__1__StaticFields { +}; + +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Scale__1__VTable vtable; +}; + +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single__1__VTable { +}; + +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single__1__StaticFields { +}; + +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StylePropertyAnimationSystem_Values_1_T_EmptyData_System_Single__1__VTable vtable; +}; + +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow__1__VTable { +}; + +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow__1__StaticFields { +}; + +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StylePropertyAnimationSystem_Values_1_T_EmptyData_TextShadow__1__VTable vtable; +}; + +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin__1__VTable { +}; + +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin__1__StaticFields { +}; + +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StylePropertyAnimationSystem_Values_1_T_EmptyData_TransformOrigin__1__VTable vtable; +}; + +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate__1__VTable { +}; + +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate__1__StaticFields { +}; + +struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StylePropertyAnimationSystem_Values_1_T_EmptyData_Translate__1__VTable vtable; +}; + +struct KeyValuePair_2_System_DateTime_System_UInt32__1__VTable { +}; + +struct KeyValuePair_2_System_DateTime_System_UInt32__1__StaticFields { +}; + +struct KeyValuePair_2_System_DateTime_System_UInt32__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_DateTime_System_UInt32__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_DateTime_System_UInt32__1__VTable vtable; +}; + +struct KeyValuePair_2_System_Int32_System_Int32__2__VTable { +}; + +struct KeyValuePair_2_System_Int32_System_Int32__2__StaticFields { +}; + +struct KeyValuePair_2_System_Int32_System_Int32__2__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_Int32_System_Int32__2__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_Int32_System_Int32__2__VTable vtable; +}; + +struct KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object__1__VTable { +}; + +struct KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object__1__StaticFields { +}; + +struct KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_UnityEngine_InputSystem_Utilities_InternedString_System_Object__1__VTable vtable; +}; + +struct KeyValuePair_2_System_Object_System_Char__2__VTable { +}; + +struct KeyValuePair_2_System_Object_System_Char__2__StaticFields { +}; + +struct KeyValuePair_2_System_Object_System_Char__2__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_Object_System_Char__2__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_Object_System_Char__2__VTable vtable; +}; + +struct KeyValuePair_2_System_Object_System_Object__2__VTable { +}; + +struct KeyValuePair_2_System_Object_System_Object__2__StaticFields { +}; + +struct KeyValuePair_2_System_Object_System_Object__2__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_Object_System_Object__2__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_Object_System_Object__2__VTable vtable; +}; + +struct KeyValuePair_2_System_UInt64_System_Object__2__VTable { +}; + +struct KeyValuePair_2_System_UInt64_System_Object__2__StaticFields { +}; + +struct KeyValuePair_2_System_UInt64_System_Object__2__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_UInt64_System_Object__2__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_UInt64_System_Object__2__VTable vtable; +}; + +struct KeyValuePair_2_UnityEngine_Vector3_System_Int32__1__VTable { +}; + +struct KeyValuePair_2_UnityEngine_Vector3_System_Int32__1__StaticFields { +}; + +struct KeyValuePair_2_UnityEngine_Vector3_System_Int32__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_UnityEngine_Vector3_System_Int32__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_UnityEngine_Vector3_System_Int32__1__VTable vtable; +}; + +struct StylePropertyAnimationSystem_Values_1_T_StyleData_Background__1__VTable { +}; + +struct StylePropertyAnimationSystem_Values_1_T_StyleData_Background__1__StaticFields { +}; + +struct StylePropertyAnimationSystem_Values_1_T_StyleData_Background__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StylePropertyAnimationSystem_Values_1_T_StyleData_Background__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StylePropertyAnimationSystem_Values_1_T_StyleData_Background__1__VTable vtable; +}; + +struct StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color__1__VTable { +}; + +struct StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color__1__StaticFields { +}; + +struct StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StylePropertyAnimationSystem_Values_1_T_StyleData_UnityEngine_Color__1__VTable vtable; +}; + +struct StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition__1__VTable { +}; + +struct StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition__1__StaticFields { +}; + +struct StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StylePropertyAnimationSystem_Values_1_T_StyleData_FontDefinition__1__VTable vtable; +}; + +struct StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32__1__VTable { +}; + +struct StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32__1__StaticFields { +}; + +struct StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StylePropertyAnimationSystem_Values_1_T_StyleData_System_Int32__1__VTable vtable; +}; + +struct StylePropertyAnimationSystem_Values_1_T_StyleData_Length__1__VTable { +}; + +struct StylePropertyAnimationSystem_Values_1_T_StyleData_Length__1__StaticFields { +}; + +struct StylePropertyAnimationSystem_Values_1_T_StyleData_Length__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StylePropertyAnimationSystem_Values_1_T_StyleData_Length__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StylePropertyAnimationSystem_Values_1_T_StyleData_Length__1__VTable vtable; +}; + +struct StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object__1__VTable { +}; + +struct StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object__1__StaticFields { +}; + +struct StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StylePropertyAnimationSystem_Values_1_T_StyleData_System_Object__1__VTable vtable; +}; + +struct StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate__1__VTable { +}; + +struct StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate__1__StaticFields { +}; + +struct StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StylePropertyAnimationSystem_Values_1_T_StyleData_Rotate__1__VTable vtable; +}; + +struct StylePropertyAnimationSystem_Values_1_T_StyleData_Scale__1__VTable { +}; + +struct StylePropertyAnimationSystem_Values_1_T_StyleData_Scale__1__StaticFields { +}; + +struct StylePropertyAnimationSystem_Values_1_T_StyleData_Scale__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StylePropertyAnimationSystem_Values_1_T_StyleData_Scale__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StylePropertyAnimationSystem_Values_1_T_StyleData_Scale__1__VTable vtable; +}; + +struct StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single__1__VTable { +}; + +struct StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single__1__StaticFields { +}; + +struct StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StylePropertyAnimationSystem_Values_1_T_StyleData_System_Single__1__VTable vtable; +}; + +struct StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow__1__VTable { +}; + +struct StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow__1__StaticFields { +}; + +struct StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StylePropertyAnimationSystem_Values_1_T_StyleData_TextShadow__1__VTable vtable; +}; + +struct StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin__1__VTable { +}; + +struct StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin__1__StaticFields { +}; + +struct StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StylePropertyAnimationSystem_Values_1_T_StyleData_TransformOrigin__1__VTable vtable; +}; + +struct StylePropertyAnimationSystem_Values_1_T_StyleData_Translate__1__VTable { +}; + +struct StylePropertyAnimationSystem_Values_1_T_StyleData_Translate__1__StaticFields { +}; + +struct StylePropertyAnimationSystem_Values_1_T_StyleData_Translate__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StylePropertyAnimationSystem_Values_1_T_StyleData_Translate__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StylePropertyAnimationSystem_Values_1_T_StyleData_Translate__1__VTable vtable; +}; + +struct StylePropertyAnimationSystem_Values_1_T_TimingData_Background__1__VTable { +}; + +struct StylePropertyAnimationSystem_Values_1_T_TimingData_Background__1__StaticFields { +}; + +struct StylePropertyAnimationSystem_Values_1_T_TimingData_Background__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StylePropertyAnimationSystem_Values_1_T_TimingData_Background__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StylePropertyAnimationSystem_Values_1_T_TimingData_Background__1__VTable vtable; +}; + +struct StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color__1__VTable { +}; + +struct StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color__1__StaticFields { +}; + +struct StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StylePropertyAnimationSystem_Values_1_T_TimingData_UnityEngine_Color__1__VTable vtable; +}; + +struct StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition__1__VTable { +}; + +struct StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition__1__StaticFields { +}; + +struct StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StylePropertyAnimationSystem_Values_1_T_TimingData_FontDefinition__1__VTable vtable; +}; + +struct StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32__1__VTable { +}; + +struct StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32__1__StaticFields { +}; + +struct StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StylePropertyAnimationSystem_Values_1_T_TimingData_System_Int32__1__VTable vtable; +}; + +struct StylePropertyAnimationSystem_Values_1_T_TimingData_Length__1__VTable { +}; + +struct StylePropertyAnimationSystem_Values_1_T_TimingData_Length__1__StaticFields { +}; + +struct StylePropertyAnimationSystem_Values_1_T_TimingData_Length__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StylePropertyAnimationSystem_Values_1_T_TimingData_Length__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StylePropertyAnimationSystem_Values_1_T_TimingData_Length__1__VTable vtable; +}; + +struct StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object__1__VTable { +}; + +struct StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object__1__StaticFields { +}; + +struct StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StylePropertyAnimationSystem_Values_1_T_TimingData_System_Object__1__VTable vtable; +}; + +struct StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate__1__VTable { +}; + +struct StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate__1__StaticFields { +}; + +struct StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StylePropertyAnimationSystem_Values_1_T_TimingData_Rotate__1__VTable vtable; +}; + +struct StylePropertyAnimationSystem_Values_1_T_TimingData_Scale__1__VTable { +}; + +struct StylePropertyAnimationSystem_Values_1_T_TimingData_Scale__1__StaticFields { +}; + +struct StylePropertyAnimationSystem_Values_1_T_TimingData_Scale__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StylePropertyAnimationSystem_Values_1_T_TimingData_Scale__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StylePropertyAnimationSystem_Values_1_T_TimingData_Scale__1__VTable vtable; +}; + +struct StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single__1__VTable { +}; + +struct StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single__1__StaticFields { +}; + +struct StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StylePropertyAnimationSystem_Values_1_T_TimingData_System_Single__1__VTable vtable; +}; + +struct StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow__1__VTable { +}; + +struct StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow__1__StaticFields { +}; + +struct StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StylePropertyAnimationSystem_Values_1_T_TimingData_TextShadow__1__VTable vtable; +}; + +struct StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin__1__VTable { +}; + +struct StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin__1__StaticFields { +}; + +struct StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StylePropertyAnimationSystem_Values_1_T_TimingData_TransformOrigin__1__VTable vtable; +}; + +struct StylePropertyAnimationSystem_Values_1_T_TimingData_Translate__1__VTable { +}; + +struct StylePropertyAnimationSystem_Values_1_T_TimingData_Translate__1__StaticFields { +}; + +struct StylePropertyAnimationSystem_Values_1_T_TimingData_Translate__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StylePropertyAnimationSystem_Values_1_T_TimingData_Translate__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StylePropertyAnimationSystem_Values_1_T_TimingData_Translate__1__VTable vtable; +}; + +struct ValueTuple_2_IntPtr_Object__1__VTable { +}; + +struct ValueTuple_2_IntPtr_Object__1__StaticFields { +}; + +struct ValueTuple_2_IntPtr_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ValueTuple_2_IntPtr_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ValueTuple_2_IntPtr_Object__1__VTable vtable; +}; + +struct Background__1__VTable { +}; + +struct Background__1__StaticFields { +}; + +struct Background__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Background__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Background__1__VTable vtable; +}; + +struct Char__1__VTable { +}; + +struct Char__1__StaticFields { +}; + +struct Char__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Char__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Char__1__VTable vtable; +}; + +struct Color32__1__VTable { +}; + +struct Color32__1__StaticFields { +}; + +struct Color32__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Color32__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Color32__1__VTable vtable; +}; + +struct FontDefinition__1__VTable { +}; + +struct FontDefinition__1__StaticFields { +}; + +struct FontDefinition__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct FontDefinition__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct FontDefinition__1__VTable vtable; +}; + +struct GCHandle___VTable { +}; + +struct GCHandle___StaticFields { +}; + +struct GCHandle___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GCHandle___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GCHandle___VTable vtable; +}; + +struct GlyphPairAdjustmentRecord__1__VTable { +}; + +struct GlyphPairAdjustmentRecord__1__StaticFields { +}; + +struct GlyphPairAdjustmentRecord__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GlyphPairAdjustmentRecord__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GlyphPairAdjustmentRecord__1__VTable vtable; +}; + +struct HighlightState___VTable { +}; + +struct HighlightState___StaticFields { +}; + +struct HighlightState___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HighlightState___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HighlightState___VTable vtable; +}; + +struct InputBinding__1__VTable { +}; + +struct InputBinding__1__StaticFields { +}; + +struct InputBinding__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputBinding__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputBinding__1__VTable vtable; +}; + +struct InputControlScheme__1__VTable { +}; + +struct InputControlScheme__1__StaticFields { +}; + +struct InputControlScheme__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputControlScheme__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputControlScheme__1__VTable vtable; +}; + +struct InputUser__1__VTable { +}; + +struct InputUser__1__StaticFields { +}; + +struct InputUser__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputUser__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputUser__1__VTable vtable; +}; + +struct Int2___VTable { +}; + +struct Int2___StaticFields { +}; + +struct Int2___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Int2___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Int2___VTable vtable; +}; + +struct Int32Enum__1__VTable { +}; + +struct Int32Enum__1__StaticFields { +}; + +struct Int32Enum__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Int32Enum__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Int32Enum__1__VTable vtable; +}; + +struct ItemDefinitionAmount___VTable { +}; + +struct ItemDefinitionAmount___StaticFields { +}; + +struct ItemDefinitionAmount___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ItemDefinitionAmount___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ItemDefinitionAmount___VTable vtable; +}; + +struct Length__1__VTable { +}; + +struct Length__1__StaticFields { +}; + +struct Length__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Length__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Length__1__VTable vtable; +}; + +struct LinkInfo___VTable { +}; + +struct LinkInfo___StaticFields { +}; + +struct LinkInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct LinkInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct LinkInfo___VTable vtable; +}; + +struct Matrix4x4__1__VTable { +}; + +struct Matrix4x4__1__StaticFields { +}; + +struct Matrix4x4__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Matrix4x4__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Matrix4x4__1__VTable vtable; +}; + +struct MeshInfo___VTable { +}; + +struct MeshInfo___StaticFields { +}; + +struct MeshInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MeshInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MeshInfo___VTable vtable; +}; + +struct OriginalMaterialValue__1__VTable { +}; + +struct OriginalMaterialValue__1__StaticFields { +}; + +struct OriginalMaterialValue__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct OriginalMaterialValue__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct OriginalMaterialValue__1__VTable vtable; +}; + +struct PageInfo___VTable { +}; + +struct PageInfo___StaticFields { +}; + +struct PageInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PageInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PageInfo___VTable vtable; +}; + +struct PointerModel__1__VTable { +}; + +struct PointerModel__1__StaticFields { +}; + +struct PointerModel__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PointerModel__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PointerModel__1__VTable vtable; +}; + +struct Rect__2__VTable { +}; + +struct Rect__2__StaticFields { +}; + +struct Rect__2__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Rect__2__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Rect__2__VTable vtable; +}; + +struct Resolution__1__VTable { +}; + +struct Resolution__1__StaticFields { +}; + +struct Resolution__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Resolution__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Resolution__1__VTable vtable; +}; + +struct Rotate__1__VTable { +}; + +struct Rotate__1__StaticFields { +}; + +struct Rotate__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Rotate__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Rotate__1__VTable vtable; +}; + +struct Scale__1__VTable { +}; + +struct Scale__1__StaticFields { +}; + +struct Scale__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Scale__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Scale__1__VTable vtable; +}; + +struct SpeechSession___VTable { +}; + +struct SpeechSession___StaticFields { +}; + +struct SpeechSession___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SpeechSession___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SpeechSession___VTable vtable; +}; + +struct Substring___VTable { +}; + +struct Substring___StaticFields { +}; + +struct Substring___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Substring___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Substring___VTable vtable; +}; + +struct TMP_CharacterInfo___VTable { +}; + +struct TMP_CharacterInfo___StaticFields { +}; + +struct TMP_CharacterInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TMP_CharacterInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TMP_CharacterInfo___VTable vtable; +}; + +struct TMP_LinkInfo___VTable { +}; + +struct TMP_LinkInfo___StaticFields { +}; + +struct TMP_LinkInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TMP_LinkInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TMP_LinkInfo___VTable vtable; +}; + +struct TMP_MeshInfo___VTable { +}; + +struct TMP_MeshInfo___StaticFields { +}; + +struct TMP_MeshInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TMP_MeshInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TMP_MeshInfo___VTable vtable; +}; + +struct TMP_PageInfo___VTable { +}; + +struct TMP_PageInfo___StaticFields { +}; + +struct TMP_PageInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TMP_PageInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TMP_PageInfo___VTable vtable; +}; + +struct TMP_WordInfo___VTable { +}; + +struct TMP_WordInfo___StaticFields { +}; + +struct TMP_WordInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TMP_WordInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TMP_WordInfo___VTable vtable; +}; + +struct TextElementInfo___VTable { +}; + +struct TextElementInfo___StaticFields { +}; + +struct TextElementInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TextElementInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TextElementInfo___VTable vtable; +}; + +struct TextShadow__1__VTable { +}; + +struct TextShadow__1__StaticFields { +}; + +struct TextShadow__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TextShadow__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TextShadow__1__VTable vtable; +}; + +struct TextureId__1__VTable { +}; + +struct TextureId__1__StaticFields { +}; + +struct TextureId__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TextureId__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TextureId__1__VTable vtable; +}; + +struct TransformOrigin__1__VTable { +}; + +struct TransformOrigin__1__StaticFields { +}; + +struct TransformOrigin__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TransformOrigin__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TransformOrigin__1__VTable vtable; +}; + +struct Translate__1__VTable { +}; + +struct Translate__1__StaticFields { +}; + +struct Translate__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Translate__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Translate__1__VTable vtable; +}; + +struct UdpEvent__1__VTable { +}; + +struct UdpEvent__1__StaticFields { +}; + +struct UdpEvent__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UdpEvent__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UdpEvent__1__VTable vtable; +}; + +struct WordInfo___VTable { +}; + +struct WordInfo___StaticFields { +}; + +struct WordInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct WordInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct WordInfo___VTable vtable; +}; + +struct WordWrapState__2__VTable { +}; + +struct WordWrapState__2__StaticFields { +}; + +struct WordWrapState__2__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct WordWrapState__2__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct WordWrapState__2__VTable vtable; +}; + +struct BaseStyleMatcher_MatchContext___VTable { +}; + +struct BaseStyleMatcher_MatchContext___StaticFields { +}; + +struct BaseStyleMatcher_MatchContext___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BaseStyleMatcher_MatchContext___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BaseStyleMatcher_MatchContext___VTable vtable; +}; + +struct DamageIndicatorMonitor_DamageIndicator___VTable { +}; + +struct DamageIndicatorMonitor_DamageIndicator___StaticFields { +}; + +struct DamageIndicatorMonitor_DamageIndicator___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DamageIndicatorMonitor_DamageIndicator___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DamageIndicatorMonitor_DamageIndicator___VTable vtable; +}; + +struct EventDispatcher_DispatchContext___VTable { +}; + +struct EventDispatcher_DispatchContext___StaticFields { +}; + +struct EventDispatcher_DispatchContext___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EventDispatcher_DispatchContext___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EventDispatcher_DispatchContext___VTable vtable; +}; + +struct EventDispatcher_EventRecord___VTable { +}; + +struct EventDispatcher_EventRecord___StaticFields { +}; + +struct EventDispatcher_EventRecord___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EventDispatcher_EventRecord___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EventDispatcher_EventRecord___VTable vtable; +}; + +struct GraphUpdateProcessor_GUOSingle___VTable { +}; + +struct GraphUpdateProcessor_GUOSingle___StaticFields { +}; + +struct GraphUpdateProcessor_GUOSingle___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GraphUpdateProcessor_GUOSingle___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GraphUpdateProcessor_GUOSingle___VTable vtable; +}; + +struct InputControlLayout_ControlItem__1__VTable { +}; + +struct InputControlLayout_ControlItem__1__StaticFields { +}; + +struct InputControlLayout_ControlItem__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputControlLayout_ControlItem__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputControlLayout_ControlItem__1__VTable vtable; +}; + +struct InputControlScheme_DeviceRequirement___VTable { +}; + +struct InputControlScheme_DeviceRequirement___StaticFields { +}; + +struct InputControlScheme_DeviceRequirement___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputControlScheme_DeviceRequirement___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputControlScheme_DeviceRequirement___VTable vtable; +}; + +struct InputDevice_ControlBitRangeNode__1__VTable { +}; + +struct InputDevice_ControlBitRangeNode__1__StaticFields { +}; + +struct InputDevice_ControlBitRangeNode__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputDevice_ControlBitRangeNode__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputDevice_ControlBitRangeNode__1__VTable vtable; +}; + +struct InputEventTrace_DeviceInfo___VTable { +}; + +struct InputEventTrace_DeviceInfo___StaticFields { +}; + +struct InputEventTrace_DeviceInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputEventTrace_DeviceInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputEventTrace_DeviceInfo___VTable vtable; +}; + +struct InputManager_AvailableDevice___VTable { +}; + +struct InputManager_AvailableDevice___StaticFields { +}; + +struct InputManager_AvailableDevice___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputManager_AvailableDevice___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputManager_AvailableDevice___VTable vtable; +}; + +struct InputManager_StateChangeMonitorListener___VTable { +}; + +struct InputManager_StateChangeMonitorListener___StaticFields { +}; + +struct InputManager_StateChangeMonitorListener___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputManager_StateChangeMonitorListener___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputManager_StateChangeMonitorListener___VTable vtable; +}; + +struct InputManager_StateChangeMonitorTimeout___VTable { +}; + +struct InputManager_StateChangeMonitorTimeout___StaticFields { +}; + +struct InputManager_StateChangeMonitorTimeout___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputManager_StateChangeMonitorTimeout___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputManager_StateChangeMonitorTimeout___VTable vtable; +}; + +struct InputManager_StateChangeMonitorsForDevice___VTable { +}; + +struct InputManager_StateChangeMonitorsForDevice___StaticFields { +}; + +struct InputManager_StateChangeMonitorsForDevice___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputManager_StateChangeMonitorsForDevice___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputManager_StateChangeMonitorsForDevice___VTable vtable; +}; + +struct InputRemoting_RemoteInputDevice___VTable { +}; + +struct InputRemoting_RemoteInputDevice___StaticFields { +}; + +struct InputRemoting_RemoteInputDevice___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputRemoting_RemoteInputDevice___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputRemoting_RemoteInputDevice___VTable vtable; +}; + +struct InputRemoting_RemoteSender___VTable { +}; + +struct InputRemoting_RemoteSender___StaticFields { +}; + +struct InputRemoting_RemoteSender___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputRemoting_RemoteSender___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputRemoting_RemoteSender___VTable vtable; +}; + +struct InputUser_OngoingAccountSelection___VTable { +}; + +struct InputUser_OngoingAccountSelection___StaticFields { +}; + +struct InputUser_OngoingAccountSelection___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputUser_OngoingAccountSelection___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputUser_OngoingAccountSelection___VTable vtable; +}; + +struct InputUser_UserData___VTable { +}; + +struct InputUser_UserData___StaticFields { +}; + +struct InputUser_UserData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputUser_UserData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputUser_UserData___VTable vtable; +}; + +struct MemoryHelpers_BitRegion___VTable { +}; + +struct MemoryHelpers_BitRegion___StaticFields { +}; + +struct MemoryHelpers_BitRegion___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MemoryHelpers_BitRegion___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MemoryHelpers_BitRegion___VTable vtable; +}; + +struct OnScreenControl_OnScreenDeviceInfo___VTable { +}; + +struct OnScreenControl_OnScreenDeviceInfo___StaticFields { +}; + +struct OnScreenControl_OnScreenDeviceInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct OnScreenControl_OnScreenDeviceInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct OnScreenControl_OnScreenDeviceInfo___VTable vtable; +}; + +struct ProbeBrickPool_BrickChunkAlloc___VTable { +}; + +struct ProbeBrickPool_BrickChunkAlloc___StaticFields { +}; + +struct ProbeBrickPool_BrickChunkAlloc___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ProbeBrickPool_BrickChunkAlloc___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ProbeBrickPool_BrickChunkAlloc___VTable vtable; +}; + +struct SequenceNode_SequenceConstructPosContext___VTable { +}; + +struct SequenceNode_SequenceConstructPosContext___StaticFields { +}; + +struct SequenceNode_SequenceConstructPosContext___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SequenceNode_SequenceConstructPosContext___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SequenceNode_SequenceConstructPosContext___VTable vtable; +}; + +struct StyleVariableResolver_ResolveContext___VTable { +}; + +struct StyleVariableResolver_ResolveContext___StaticFields { +}; + +struct StyleVariableResolver_ResolveContext___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StyleVariableResolver_ResolveContext___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StyleVariableResolver_ResolveContext___VTable vtable; +}; + +struct XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK___VTable { +}; + +struct XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK___StaticFields { +}; + +struct XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct XboxOneInputSource_mwkhXgRYvWxhvkvSGDHkyfAjaPOK___VTable vtable; +}; + +struct InputDeviceMatcher_MatcherJson_Capability___VTable { +}; + +struct InputDeviceMatcher_MatcherJson_Capability___StaticFields { +}; + +struct InputDeviceMatcher_MatcherJson_Capability___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputDeviceMatcher_MatcherJson_Capability___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputDeviceMatcher_MatcherJson_Capability___VTable vtable; +}; + +struct Touch__1__VTable { +}; + +struct Touch__1__StaticFields { +}; + +struct Touch__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Touch__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Touch__1__VTable vtable; +}; + +struct WebClient_DownloadBitsAsync_d_150___VTable { +}; + +struct WebClient_DownloadBitsAsync_d_150___StaticFields { +}; + +struct WebClient_DownloadBitsAsync_d_150___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct WebClient_DownloadBitsAsync_d_150___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct WebClient_DownloadBitsAsync_d_150___VTable vtable; +}; + +struct WebClient_UploadBitsAsync_d_152___VTable { +}; + +struct WebClient_UploadBitsAsync_d_152___StaticFields { +}; + +struct WebClient_UploadBitsAsync_d_152___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct WebClient_UploadBitsAsync_d_152___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct WebClient_UploadBitsAsync_d_152___VTable vtable; +}; + +struct WebOperation_Run_d_58___VTable { +}; + +struct WebOperation_Run_d_58___StaticFields { +}; + +struct WebOperation_Run_d_58___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct WebOperation_Run_d_58___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct WebOperation_Run_d_58___VTable vtable; +}; + +struct BoltCore_BeginShutdown_d_105___VTable { +}; + +struct BoltCore_BeginShutdown_d_105___StaticFields { +}; + +struct BoltCore_BeginShutdown_d_105___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltCore_BeginShutdown_d_105___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltCore_BeginShutdown_d_105___VTable vtable; +}; + +struct BoltCore_ShutdownImmediate_d_106___VTable { +}; + +struct BoltCore_ShutdownImmediate_d_106___StaticFields { +}; + +struct BoltCore_ShutdownImmediate_d_106___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltCore_ShutdownImmediate_d_106___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltCore_ShutdownImmediate_d_106___VTable vtable; +}; + +struct UdpSocket_OnEventClose_d_110___VTable { +}; + +struct UdpSocket_OnEventClose_d_110___StaticFields { +}; + +struct UdpSocket_OnEventClose_d_110___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UdpSocket_OnEventClose_d_110___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UdpSocket_OnEventClose_d_110___VTable vtable; +}; + +struct FtpWebRequest_CreateConnectionAsync_d_86___VTable { +}; + +struct FtpWebRequest_CreateConnectionAsync_d_86___StaticFields { +}; + +struct FtpWebRequest_CreateConnectionAsync_d_86___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct FtpWebRequest_CreateConnectionAsync_d_86___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct FtpWebRequest_CreateConnectionAsync_d_86___VTable vtable; +}; + struct Func_2_Object_UnityEngine_UIElements_EventBase___Fields { struct MulticastDelegate__Fields _; }; @@ -1371264,6 +1390459,36 @@ struct Func_4_UnityEngine_Vector3_UnityEngine_Vector3_Object_UnityEngine_UIEleme struct Func_4_UnityEngine_Vector3_UnityEngine_Vector3_Object_UnityEngine_UIElements_EventBase___VTable vtable; }; +struct CallbackArray_1_System_Action_1__6__VTable { +}; + +struct CallbackArray_1_System_Action_1__6__StaticFields { +}; + +struct CallbackArray_1_System_Action_1__6__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CallbackArray_1_System_Action_1__6__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CallbackArray_1_System_Action_1__6__VTable vtable; +}; + +struct CallbackArray_1_System_Action_1__7__VTable { +}; + +struct CallbackArray_1_System_Action_1__7__StaticFields { +}; + +struct CallbackArray_1_System_Action_1__7__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CallbackArray_1_System_Action_1__7__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CallbackArray_1_System_Action_1__7__VTable vtable; +}; + struct InlinedArray_1_System_Action_2__6 { int32_t length; struct Action_2_UnityEngine_InputSystem_LowLevel_InputEventPtr_Object_ *firstValue; @@ -1371373,6 +1390598,21 @@ struct CallbackArray_1_System_Action_2__6__Class { struct CallbackArray_1_System_Action_2__6__VTable vtable; }; +struct CallbackArray_1_System_Action_2__7__VTable { +}; + +struct CallbackArray_1_System_Action_2__7__StaticFields { +}; + +struct CallbackArray_1_System_Action_2__7__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CallbackArray_1_System_Action_2__7__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CallbackArray_1_System_Action_2__7__VTable vtable; +}; + struct InlinedArray_1_System_Action_2__7 { int32_t length; struct Action_2_Object_UnityEngine_InputSystem_LowLevel_InputEventPtr_ *firstValue; @@ -1371385,17 +1390625,17 @@ struct InlinedArray_1_System_Action_2__7__Boxed { struct InlinedArray_1_System_Action_2__7 fields; }; -struct CallbackArray_1_System_Action_2__7 { +struct CallbackArray_1_System_Action_2__8 { bool m_CannotMutateCallbacksArray; struct InlinedArray_1_System_Action_2__7 m_Callbacks; struct InlinedArray_1_System_Action_2__7 m_CallbacksToAdd; struct InlinedArray_1_System_Action_2__7 m_CallbacksToRemove; }; -struct CallbackArray_1_System_Action_2__7__Boxed { - struct CallbackArray_1_System_Action_2__7__Class *klass; +struct CallbackArray_1_System_Action_2__8__Boxed { + struct CallbackArray_1_System_Action_2__8__Class *klass; MonitorData *monitor; - struct CallbackArray_1_System_Action_2__7 fields; + struct CallbackArray_1_System_Action_2__8 fields; }; struct Action_2_Object_UnityEngine_InputSystem_LowLevel_InputEventPtr___Array { @@ -1371463,23 +1390703,38 @@ struct InlinedArray_1_System_Action_2__7__Class { struct InlinedArray_1_System_Action_2__7__VTable vtable; }; -struct CallbackArray_1_System_Action_2__7__VTable { +struct CallbackArray_1_System_Action_2__8__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; VirtualInvokeData GetHashCode; VirtualInvokeData ToString; }; -struct CallbackArray_1_System_Action_2__7__StaticFields { +struct CallbackArray_1_System_Action_2__8__StaticFields { }; -struct CallbackArray_1_System_Action_2__7__Class { +struct CallbackArray_1_System_Action_2__8__Class { Il2CppClass_0 _0; Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct CallbackArray_1_System_Action_2__7__StaticFields *static_fields; + struct CallbackArray_1_System_Action_2__8__StaticFields *static_fields; const Il2CppRGCTXData *rgctx_data; Il2CppClass_1 _1; - struct CallbackArray_1_System_Action_2__7__VTable vtable; + struct CallbackArray_1_System_Action_2__8__VTable vtable; +}; + +struct CallbackArray_1_System_Action_2__9__VTable { +}; + +struct CallbackArray_1_System_Action_2__9__StaticFields { +}; + +struct CallbackArray_1_System_Action_2__9__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CallbackArray_1_System_Action_2__9__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CallbackArray_1_System_Action_2__9__VTable vtable; }; struct InlinedArray_1_System_Action_2__8 { @@ -1371494,17 +1390749,17 @@ struct InlinedArray_1_System_Action_2__8__Boxed { struct InlinedArray_1_System_Action_2__8 fields; }; -struct CallbackArray_1_System_Action_2__8 { +struct CallbackArray_1_System_Action_2__10 { bool m_CannotMutateCallbacksArray; struct InlinedArray_1_System_Action_2__8 m_Callbacks; struct InlinedArray_1_System_Action_2__8 m_CallbacksToAdd; struct InlinedArray_1_System_Action_2__8 m_CallbacksToRemove; }; -struct CallbackArray_1_System_Action_2__8__Boxed { - struct CallbackArray_1_System_Action_2__8__Class *klass; +struct CallbackArray_1_System_Action_2__10__Boxed { + struct CallbackArray_1_System_Action_2__10__Class *klass; MonitorData *monitor; - struct CallbackArray_1_System_Action_2__8 fields; + struct CallbackArray_1_System_Action_2__10 fields; }; struct Action_2_Object_Int32Enum___Array { @@ -1371572,23 +1390827,38 @@ struct InlinedArray_1_System_Action_2__8__Class { struct InlinedArray_1_System_Action_2__8__VTable vtable; }; -struct CallbackArray_1_System_Action_2__8__VTable { +struct CallbackArray_1_System_Action_2__10__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; VirtualInvokeData GetHashCode; VirtualInvokeData ToString; }; -struct CallbackArray_1_System_Action_2__8__StaticFields { +struct CallbackArray_1_System_Action_2__10__StaticFields { }; -struct CallbackArray_1_System_Action_2__8__Class { +struct CallbackArray_1_System_Action_2__10__Class { Il2CppClass_0 _0; Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct CallbackArray_1_System_Action_2__8__StaticFields *static_fields; + struct CallbackArray_1_System_Action_2__10__StaticFields *static_fields; const Il2CppRGCTXData *rgctx_data; Il2CppClass_1 _1; - struct CallbackArray_1_System_Action_2__8__VTable vtable; + struct CallbackArray_1_System_Action_2__10__VTable vtable; +}; + +struct CallbackArray_1_System_Action_2__11__VTable { +}; + +struct CallbackArray_1_System_Action_2__11__StaticFields { +}; + +struct CallbackArray_1_System_Action_2__11__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CallbackArray_1_System_Action_2__11__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CallbackArray_1_System_Action_2__11__VTable vtable; }; struct InlinedArray_1_System_Action_2__9 { @@ -1371603,17 +1390873,17 @@ struct InlinedArray_1_System_Action_2__9__Boxed { struct InlinedArray_1_System_Action_2__9 fields; }; -struct CallbackArray_1_System_Action_2__9 { +struct CallbackArray_1_System_Action_2__12 { bool m_CannotMutateCallbacksArray; struct InlinedArray_1_System_Action_2__9 m_Callbacks; struct InlinedArray_1_System_Action_2__9 m_CallbacksToAdd; struct InlinedArray_1_System_Action_2__9 m_CallbacksToRemove; }; -struct CallbackArray_1_System_Action_2__9__Boxed { - struct CallbackArray_1_System_Action_2__9__Class *klass; +struct CallbackArray_1_System_Action_2__12__Boxed { + struct CallbackArray_1_System_Action_2__12__Class *klass; MonitorData *monitor; - struct CallbackArray_1_System_Action_2__9 fields; + struct CallbackArray_1_System_Action_2__12 fields; }; struct InlinedArray_1_System_Action_2__9__VTable { @@ -1371637,23 +1390907,48 @@ struct InlinedArray_1_System_Action_2__9__Class { struct InlinedArray_1_System_Action_2__9__VTable vtable; }; -struct CallbackArray_1_System_Action_2__9__VTable { +struct CallbackArray_1_System_Action_2__12__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; VirtualInvokeData GetHashCode; VirtualInvokeData ToString; }; -struct CallbackArray_1_System_Action_2__9__StaticFields { +struct CallbackArray_1_System_Action_2__12__StaticFields { }; -struct CallbackArray_1_System_Action_2__9__Class { +struct CallbackArray_1_System_Action_2__12__Class { Il2CppClass_0 _0; Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct CallbackArray_1_System_Action_2__9__StaticFields *static_fields; + struct CallbackArray_1_System_Action_2__12__StaticFields *static_fields; const Il2CppRGCTXData *rgctx_data; Il2CppClass_1 _1; - struct CallbackArray_1_System_Action_2__9__VTable vtable; + struct CallbackArray_1_System_Action_2__12__VTable vtable; +}; + +struct CallbackArray_1_System_Action_2__13__VTable { +}; + +struct CallbackArray_1_System_Action_2__13__StaticFields { +}; + +struct CallbackArray_1_System_Action_2__13__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CallbackArray_1_System_Action_2__13__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CallbackArray_1_System_Action_2__13__VTable vtable; +}; + +struct Func_2_Object_Action___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_2_Object_Action_ { + struct Func_2_Object_Action___Class *klass; + MonitorData *monitor; + struct Func_2_Object_Action___Fields fields; }; struct InlinedArray_1_System_Func_2_ { @@ -1371681,16 +1390976,6 @@ struct CallbackArray_1_System_Func_2___Boxed { struct CallbackArray_1_System_Func_2_ fields; }; -struct Func_2_Object_Action___Fields { - struct MulticastDelegate__Fields _; -}; - -struct Func_2_Object_Action_ { - struct Func_2_Object_Action___Class *klass; - MonitorData *monitor; - struct Func_2_Object_Action___Fields fields; -}; - struct Func_2_Object_Action___Array { struct Func_2_Object_Action___Array__Class *klass; MonitorData *monitor; @@ -1371804,6 +1391089,21 @@ struct CallbackArray_1_System_Func_2___Class { struct CallbackArray_1_System_Func_2___VTable vtable; }; +struct CallbackArray_1_System_Func_2__1__VTable { +}; + +struct CallbackArray_1_System_Func_2__1__StaticFields { +}; + +struct CallbackArray_1_System_Func_2__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CallbackArray_1_System_Func_2__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CallbackArray_1_System_Func_2__1__VTable vtable; +}; + struct InlinedArray_1_System_Func_2__1 { int32_t length; struct Func_2_Object_Object_ *firstValue; @@ -1371816,17 +1391116,17 @@ struct InlinedArray_1_System_Func_2__1__Boxed { struct InlinedArray_1_System_Func_2__1 fields; }; -struct CallbackArray_1_System_Func_2__1 { +struct CallbackArray_1_System_Func_2__2 { bool m_CannotMutateCallbacksArray; struct InlinedArray_1_System_Func_2__1 m_Callbacks; struct InlinedArray_1_System_Func_2__1 m_CallbacksToAdd; struct InlinedArray_1_System_Func_2__1 m_CallbacksToRemove; }; -struct CallbackArray_1_System_Func_2__1__Boxed { - struct CallbackArray_1_System_Func_2__1__Class *klass; +struct CallbackArray_1_System_Func_2__2__Boxed { + struct CallbackArray_1_System_Func_2__2__Class *klass; MonitorData *monitor; - struct CallbackArray_1_System_Func_2__1 fields; + struct CallbackArray_1_System_Func_2__2 fields; }; struct Func_2_Object_Object___Array { @@ -1371894,23 +1391194,38 @@ struct InlinedArray_1_System_Func_2__1__Class { struct InlinedArray_1_System_Func_2__1__VTable vtable; }; -struct CallbackArray_1_System_Func_2__1__VTable { +struct CallbackArray_1_System_Func_2__2__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; VirtualInvokeData GetHashCode; VirtualInvokeData ToString; }; -struct CallbackArray_1_System_Func_2__1__StaticFields { +struct CallbackArray_1_System_Func_2__2__StaticFields { }; -struct CallbackArray_1_System_Func_2__1__Class { +struct CallbackArray_1_System_Func_2__2__Class { Il2CppClass_0 _0; Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct CallbackArray_1_System_Func_2__1__StaticFields *static_fields; + struct CallbackArray_1_System_Func_2__2__StaticFields *static_fields; const Il2CppRGCTXData *rgctx_data; Il2CppClass_1 _1; - struct CallbackArray_1_System_Func_2__1__VTable vtable; + struct CallbackArray_1_System_Func_2__2__VTable vtable; +}; + +struct CallbackArray_1_System_Func_2__3__VTable { +}; + +struct CallbackArray_1_System_Func_2__3__StaticFields { +}; + +struct CallbackArray_1_System_Func_2__3__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CallbackArray_1_System_Func_2__3__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CallbackArray_1_System_Func_2__3__VTable vtable; }; struct InlinedArray_1_System_Func_3__1 { @@ -1372022,6 +1391337,21 @@ struct CallbackArray_1_System_Func_3__1__Class { struct CallbackArray_1_System_Func_3__1__VTable vtable; }; +struct CallbackArray_1_System_Func_3__2__VTable { +}; + +struct CallbackArray_1_System_Func_3__2__StaticFields { +}; + +struct CallbackArray_1_System_Func_3__2__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CallbackArray_1_System_Func_3__2__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CallbackArray_1_System_Func_3__2__VTable vtable; +}; + struct InlinedArray_1_System_Func_3__2 { int32_t length; struct Func_3_Object_Object_Boolean_ *firstValue; @@ -1372034,17 +1391364,17 @@ struct InlinedArray_1_System_Func_3__2__Boxed { struct InlinedArray_1_System_Func_3__2 fields; }; -struct CallbackArray_1_System_Func_3__2 { +struct CallbackArray_1_System_Func_3__3 { bool m_CannotMutateCallbacksArray; struct InlinedArray_1_System_Func_3__2 m_Callbacks; struct InlinedArray_1_System_Func_3__2 m_CallbacksToAdd; struct InlinedArray_1_System_Func_3__2 m_CallbacksToRemove; }; -struct CallbackArray_1_System_Func_3__2__Boxed { - struct CallbackArray_1_System_Func_3__2__Class *klass; +struct CallbackArray_1_System_Func_3__3__Boxed { + struct CallbackArray_1_System_Func_3__3__Class *klass; MonitorData *monitor; - struct CallbackArray_1_System_Func_3__2 fields; + struct CallbackArray_1_System_Func_3__3 fields; }; struct Func_3_Object_Object_Boolean___Array { @@ -1372112,23 +1391442,51 @@ struct InlinedArray_1_System_Func_3__2__Class { struct InlinedArray_1_System_Func_3__2__VTable vtable; }; -struct CallbackArray_1_System_Func_3__2__VTable { +struct CallbackArray_1_System_Func_3__3__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; VirtualInvokeData GetHashCode; VirtualInvokeData ToString; }; -struct CallbackArray_1_System_Func_3__2__StaticFields { +struct CallbackArray_1_System_Func_3__3__StaticFields { }; -struct CallbackArray_1_System_Func_3__2__Class { +struct CallbackArray_1_System_Func_3__3__Class { Il2CppClass_0 _0; Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct CallbackArray_1_System_Func_3__2__StaticFields *static_fields; + struct CallbackArray_1_System_Func_3__3__StaticFields *static_fields; const Il2CppRGCTXData *rgctx_data; Il2CppClass_1 _1; - struct CallbackArray_1_System_Func_3__2__VTable vtable; + struct CallbackArray_1_System_Func_3__3__VTable vtable; +}; + +struct CallbackArray_1_System_Func_3__4__VTable { +}; + +struct CallbackArray_1_System_Func_3__4__StaticFields { +}; + +struct CallbackArray_1_System_Func_3__4__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CallbackArray_1_System_Func_3__4__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CallbackArray_1_System_Func_3__4__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Object_IList_1_UnityEngine_GameObject_ { + int32_t hashCode; + int32_t next; + struct Object *key; + struct IList_1_UnityEngine_GameObject_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Object_IList_1_UnityEngine_GameObject___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Object_IList_1_UnityEngine_GameObject___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Object_IList_1_UnityEngine_GameObject_ fields; }; struct __declspec(align(8)) Dictionary_2_System_Object_IList_1_UnityEngine_GameObject___Fields { @@ -1372150,19 +1391508,6 @@ struct Dictionary_2_System_Object_IList_1_UnityEngine_GameObject_ { struct Dictionary_2_System_Object_IList_1_UnityEngine_GameObject___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Object_IList_1_UnityEngine_GameObject_ { - int32_t hashCode; - int32_t next; - struct Object *key; - struct IList_1_UnityEngine_GameObject_ *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Object_IList_1_UnityEngine_GameObject___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Object_IList_1_UnityEngine_GameObject___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Object_IList_1_UnityEngine_GameObject_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Object_IList_1_UnityEngine_GameObject___Array { struct Dictionary_2_TKey_TValue_Entry_System_Object_IList_1_UnityEngine_GameObject___Array__Class *klass; MonitorData *monitor; @@ -1372639,6 +1391984,36 @@ struct IList_1_UnityEngine_EventSystems_IEventSystemHandler___Class { struct IList_1_UnityEngine_EventSystems_IEventSystemHandler___VTable vtable; }; +struct IReadOnlyList_1_System_Object__2__VTable { +}; + +struct IReadOnlyList_1_System_Object__2__StaticFields { +}; + +struct IReadOnlyList_1_System_Object__2__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IReadOnlyList_1_System_Object__2__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IReadOnlyList_1_System_Object__2__VTable vtable; +}; + +struct IEnumerable_1_System_Object__1__VTable { +}; + +struct IEnumerable_1_System_Object__1__StaticFields { +}; + +struct IEnumerable_1_System_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_System_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_System_Object__1__VTable vtable; +}; + struct Func_2_System_Threading_CancellationToken_System_Threading_Tasks_Task_1___Fields { struct MulticastDelegate__Fields _; }; @@ -1372948,6 +1392323,456 @@ struct BooleanPtr__Class { struct BooleanPtr__VTable vtable; }; +struct MouseState___VTable { +}; + +struct MouseState___StaticFields { +}; + +struct MouseState___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MouseState___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MouseState___VTable vtable; +}; + +struct InputControlList_1_System_Object__1__VTable { +}; + +struct InputControlList_1_System_Object__1__StaticFields { +}; + +struct InputControlList_1_System_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputControlList_1_System_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputControlList_1_System_Object__1__VTable vtable; +}; + +struct InputControlScheme_MatchResult___VTable { +}; + +struct InputControlScheme_MatchResult___StaticFields { +}; + +struct InputControlScheme_MatchResult___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputControlScheme_MatchResult___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputControlScheme_MatchResult___VTable vtable; +}; + +struct DisableDeviceCommand___VTable { +}; + +struct DisableDeviceCommand___StaticFields { +}; + +struct DisableDeviceCommand___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DisableDeviceCommand___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DisableDeviceCommand___VTable vtable; +}; + +struct DualMotorRumbleCommand___VTable { +}; + +struct DualMotorRumbleCommand___StaticFields { +}; + +struct DualMotorRumbleCommand___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DualMotorRumbleCommand___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DualMotorRumbleCommand___VTable vtable; +}; + +struct DualSenseHIDUSBOutputReport___VTable { +}; + +struct DualSenseHIDUSBOutputReport___StaticFields { +}; + +struct DualSenseHIDUSBOutputReport___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DualSenseHIDUSBOutputReport___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DualSenseHIDUSBOutputReport___VTable vtable; +}; + +struct DualShockHIDOutputReport___VTable { +}; + +struct DualShockHIDOutputReport___StaticFields { +}; + +struct DualShockHIDOutputReport___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DualShockHIDOutputReport___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DualShockHIDOutputReport___VTable vtable; +}; + +struct EnableDeviceCommand___VTable { +}; + +struct EnableDeviceCommand___StaticFields { +}; + +struct EnableDeviceCommand___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EnableDeviceCommand___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EnableDeviceCommand___VTable vtable; +}; + +struct EnableIMECompositionCommand___VTable { +}; + +struct EnableIMECompositionCommand___StaticFields { +}; + +struct EnableIMECompositionCommand___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EnableIMECompositionCommand___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EnableIMECompositionCommand___VTable vtable; +}; + +struct GetHapticCapabilitiesCommand___VTable { +}; + +struct GetHapticCapabilitiesCommand___StaticFields { +}; + +struct GetHapticCapabilitiesCommand___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GetHapticCapabilitiesCommand___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GetHapticCapabilitiesCommand___VTable vtable; +}; + +struct InitiateUserAccountPairingCommand___VTable { +}; + +struct InitiateUserAccountPairingCommand___StaticFields { +}; + +struct InitiateUserAccountPairingCommand___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InitiateUserAccountPairingCommand___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InitiateUserAccountPairingCommand___VTable vtable; +}; + +struct QueryCanRunInBackground___VTable { +}; + +struct QueryCanRunInBackground___StaticFields { +}; + +struct QueryCanRunInBackground___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct QueryCanRunInBackground___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct QueryCanRunInBackground___VTable vtable; +}; + +struct QueryEnabledStateCommand___VTable { +}; + +struct QueryEnabledStateCommand___StaticFields { +}; + +struct QueryEnabledStateCommand___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct QueryEnabledStateCommand___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct QueryEnabledStateCommand___VTable vtable; +}; + +struct QueryKeyNameCommand___VTable { +}; + +struct QueryKeyNameCommand___StaticFields { +}; + +struct QueryKeyNameCommand___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct QueryKeyNameCommand___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct QueryKeyNameCommand___VTable vtable; +}; + +struct QueryKeyboardLayoutCommand___VTable { +}; + +struct QueryKeyboardLayoutCommand___StaticFields { +}; + +struct QueryKeyboardLayoutCommand___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct QueryKeyboardLayoutCommand___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct QueryKeyboardLayoutCommand___VTable vtable; +}; + +struct QueryPairedUserAccountCommand___VTable { +}; + +struct QueryPairedUserAccountCommand___StaticFields { +}; + +struct QueryPairedUserAccountCommand___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct QueryPairedUserAccountCommand___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct QueryPairedUserAccountCommand___VTable vtable; +}; + +struct QuerySamplingFrequencyCommand___VTable { +}; + +struct QuerySamplingFrequencyCommand___StaticFields { +}; + +struct QuerySamplingFrequencyCommand___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct QuerySamplingFrequencyCommand___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct QuerySamplingFrequencyCommand___VTable vtable; +}; + +struct RequestResetCommand___VTable { +}; + +struct RequestResetCommand___StaticFields { +}; + +struct RequestResetCommand___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RequestResetCommand___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RequestResetCommand___VTable vtable; +}; + +struct RequestSyncCommand___VTable { +}; + +struct RequestSyncCommand___StaticFields { +}; + +struct RequestSyncCommand___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RequestSyncCommand___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RequestSyncCommand___VTable vtable; +}; + +struct SendBufferedHapticCommand___VTable { +}; + +struct SendBufferedHapticCommand___StaticFields { +}; + +struct SendBufferedHapticCommand___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SendBufferedHapticCommand___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SendBufferedHapticCommand___VTable vtable; +}; + +struct SendHapticImpulseCommand___VTable { +}; + +struct SendHapticImpulseCommand___StaticFields { +}; + +struct SendHapticImpulseCommand___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SendHapticImpulseCommand___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SendHapticImpulseCommand___VTable vtable; +}; + +struct SetIMECursorPositionCommand___VTable { +}; + +struct SetIMECursorPositionCommand___StaticFields { +}; + +struct SetIMECursorPositionCommand___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SetIMECursorPositionCommand___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SetIMECursorPositionCommand___VTable vtable; +}; + +struct SetSamplingFrequencyCommand___VTable { +}; + +struct SetSamplingFrequencyCommand___StaticFields { +}; + +struct SetSamplingFrequencyCommand___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SetSamplingFrequencyCommand___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SetSamplingFrequencyCommand___VTable vtable; +}; + +struct WarpMousePositionCommand___VTable { +}; + +struct WarpMousePositionCommand___StaticFields { +}; + +struct WarpMousePositionCommand___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct WarpMousePositionCommand___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct WarpMousePositionCommand___VTable vtable; +}; + +struct OpenXRInput_GetInternalDeviceIdCommand___VTable { +}; + +struct OpenXRInput_GetInternalDeviceIdCommand___StaticFields { +}; + +struct OpenXRInput_GetInternalDeviceIdCommand___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct OpenXRInput_GetInternalDeviceIdCommand___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct OpenXRInput_GetInternalDeviceIdCommand___VTable vtable; +}; + +struct SwitchProControllerHID_SwitchMagicOutputHIDBluetooth___VTable { +}; + +struct SwitchProControllerHID_SwitchMagicOutputHIDBluetooth___StaticFields { +}; + +struct SwitchProControllerHID_SwitchMagicOutputHIDBluetooth___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SwitchProControllerHID_SwitchMagicOutputHIDBluetooth___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SwitchProControllerHID_SwitchMagicOutputHIDBluetooth___VTable vtable; +}; + +struct SwitchProControllerHID_SwitchMagicOutputHIDUSB___VTable { +}; + +struct SwitchProControllerHID_SwitchMagicOutputHIDUSB___StaticFields { +}; + +struct SwitchProControllerHID_SwitchMagicOutputHIDUSB___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SwitchProControllerHID_SwitchMagicOutputHIDUSB___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SwitchProControllerHID_SwitchMagicOutputHIDUSB___VTable vtable; +}; + +struct UseWindowsGamingInputCommand___VTable { +}; + +struct UseWindowsGamingInputCommand___StaticFields { +}; + +struct UseWindowsGamingInputCommand___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UseWindowsGamingInputCommand___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UseWindowsGamingInputCommand___VTable vtable; +}; + +struct DeviceConfigurationEvent___VTable { +}; + +struct DeviceConfigurationEvent___StaticFields { +}; + +struct DeviceConfigurationEvent___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DeviceConfigurationEvent___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DeviceConfigurationEvent___VTable vtable; +}; + +struct TextEvent___VTable { +}; + +struct TextEvent___StaticFields { +}; + +struct TextEvent___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TextEvent___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TextEvent___VTable vtable; +}; + struct InputRemoting_ChangeUsageMsg_Data { int32_t deviceId; struct String__Array *usages; @@ -1373240,6 +1393065,21 @@ struct XInputController_Capabilities__Class { struct XInputController_Capabilities__VTable vtable; }; +struct IList_1_System_Object__2__VTable { +}; + +struct IList_1_System_Object__2__StaticFields { +}; + +struct IList_1_System_Object__2__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IList_1_System_Object__2__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IList_1_System_Object__2__VTable vtable; +}; + struct Func_2_String_Object___Fields { struct MulticastDelegate__Fields _; }; @@ -1373309,6 +1393149,36 @@ struct NativeAnchorData__Class { struct NativeAnchorData__VTable vtable; }; +struct InputManager_StateChangeMonitorListener__1__VTable { +}; + +struct InputManager_StateChangeMonitorListener__1__StaticFields { +}; + +struct InputManager_StateChangeMonitorListener__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputManager_StateChangeMonitorListener__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputManager_StateChangeMonitorListener__1__VTable vtable; +}; + +struct MemoryHelpers_BitRegion__1__VTable { +}; + +struct MemoryHelpers_BitRegion__1__StaticFields { +}; + +struct MemoryHelpers_BitRegion__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MemoryHelpers_BitRegion__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MemoryHelpers_BitRegion__1__VTable vtable; +}; + struct Func_3_String_Object_Object___Fields { struct MulticastDelegate__Fields _; }; @@ -1373543,6 +1393413,51 @@ struct Converter_2_System_Diagnostics_ProcessThread_Object___Class { struct Converter_2_System_Diagnostics_ProcessThread_Object___VTable vtable; }; +struct ColorBlock___VTable { +}; + +struct ColorBlock___StaticFields { +}; + +struct ColorBlock___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ColorBlock___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ColorBlock___VTable vtable; +}; + +struct Navigation___VTable { +}; + +struct Navigation___StaticFields { +}; + +struct Navigation___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Navigation___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Navigation___VTable vtable; +}; + +struct SpriteState___VTable { +}; + +struct SpriteState___StaticFields { +}; + +struct SpriteState___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SpriteState___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SpriteState___VTable vtable; +}; + struct IStyleValue_1_UnityEngine_Color_ { struct IStyleValue_1_UnityEngine_Color___Class *klass; MonitorData *monitor; @@ -1373824,6 +1393739,2271 @@ struct Func_1_System_Threading_Tasks_Task_1___Class { struct Func_1_System_Threading_Tasks_Task_1___VTable vtable; }; +struct VoiceSender_1_TPeer_ChannelDelta_Dissonance_Integrations_PhotonBolt_BoltPeer__1__VTable { +}; + +struct VoiceSender_1_TPeer_ChannelDelta_Dissonance_Integrations_PhotonBolt_BoltPeer__1__StaticFields { +}; + +struct VoiceSender_1_TPeer_ChannelDelta_Dissonance_Integrations_PhotonBolt_BoltPeer__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct VoiceSender_1_TPeer_ChannelDelta_Dissonance_Integrations_PhotonBolt_BoltPeer__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct VoiceSender_1_TPeer_ChannelDelta_Dissonance_Integrations_PhotonBolt_BoltPeer__1__VTable vtable; +}; + +struct IntervalTree_1_T_Entry_System_Object__1__VTable { +}; + +struct IntervalTree_1_T_Entry_System_Object__1__StaticFields { +}; + +struct IntervalTree_1_T_Entry_System_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IntervalTree_1_T_Entry_System_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IntervalTree_1_T_Entry_System_Object__1__VTable vtable; +}; + +struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object__1__VTable { +}; + +struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object__1__StaticFields { +}; + +struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Int32_System_Object__1__VTable vtable; +}; + +struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object__1__VTable { +}; + +struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object__1__StaticFields { +}; + +struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_System_Object__1__VTable vtable; +}; + +struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__1__VTable { +}; + +struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__1__StaticFields { +}; + +struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IndexedDictionary_2_TKey_TValue_FYbmlMjlIlcwVBLULgBCtKlNpKieb_System_Object_SerializedObject_yQGiBBpaSDnEXjutxqVrWlMHOZFo__1__VTable vtable; +}; + +struct KeyValuePair_2_System_Guid_System_Object__1__VTable { +}; + +struct KeyValuePair_2_System_Guid_System_Object__1__StaticFields { +}; + +struct KeyValuePair_2_System_Guid_System_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_Guid_System_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_Guid_System_Object__1__VTable vtable; +}; + +struct KeyValuePair_2_System_Int32Enum_System_Object__1__VTable { +}; + +struct KeyValuePair_2_System_Int32Enum_System_Object__1__StaticFields { +}; + +struct KeyValuePair_2_System_Int32Enum_System_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_Int32Enum_System_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_Int32Enum_System_Object__1__VTable vtable; +}; + +struct KeyValuePair_2_System_Object_System_ArraySegment_1__1__VTable { +}; + +struct KeyValuePair_2_System_Object_System_ArraySegment_1__1__StaticFields { +}; + +struct KeyValuePair_2_System_Object_System_ArraySegment_1__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_Object_System_ArraySegment_1__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_Object_System_ArraySegment_1__1__VTable vtable; +}; + +struct KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__1__VTable { +}; + +struct KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__1__StaticFields { +}; + +struct KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_Object_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue__1__VTable vtable; +}; + +struct KeyValuePair_2_UnityEngine_PropertyName_System_Object__1__VTable { +}; + +struct KeyValuePair_2_UnityEngine_PropertyName_System_Object__1__StaticFields { +}; + +struct KeyValuePair_2_UnityEngine_PropertyName_System_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_UnityEngine_PropertyName_System_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_UnityEngine_PropertyName_System_Object__1__VTable vtable; +}; + +struct KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer__1__VTable { +}; + +struct KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer__1__StaticFields { +}; + +struct KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_UInt16_Dissonance_Integrations_PhotonBolt_BoltPeer__1__VTable vtable; +}; + +struct KeyValuePair_2_System_UInt16_System_Object__1__VTable { +}; + +struct KeyValuePair_2_System_UInt16_System_Object__1__StaticFields { +}; + +struct KeyValuePair_2_System_UInt16_System_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_UInt16_System_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_UInt16_System_Object__1__VTable vtable; +}; + +struct RenderGraphResourcePool_1_Type_ResourceLogInfo_System_Object__1__VTable { +}; + +struct RenderGraphResourcePool_1_Type_ResourceLogInfo_System_Object__1__StaticFields { +}; + +struct RenderGraphResourcePool_1_Type_ResourceLogInfo_System_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RenderGraphResourcePool_1_Type_ResourceLogInfo_System_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RenderGraphResourcePool_1_Type_ResourceLogInfo_System_Object__1__VTable vtable; +}; + +struct STuple_2_System_Object_System_Object__1__VTable { +}; + +struct STuple_2_System_Object_System_Object__1__StaticFields { +}; + +struct STuple_2_System_Object_System_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct STuple_2_System_Object_System_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct STuple_2_System_Object_System_Object__1__VTable vtable; +}; + +struct ValueTuple_2_Int32_Object__1__VTable { +}; + +struct ValueTuple_2_Int32_Object__1__StaticFields { +}; + +struct ValueTuple_2_Int32_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ValueTuple_2_Int32_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ValueTuple_2_Int32_Object__1__VTable vtable; +}; + +struct ValueTuple_2_Int32_UnityEngine_Vector2Int__1__VTable { +}; + +struct ValueTuple_2_Int32_UnityEngine_Vector2Int__1__StaticFields { +}; + +struct ValueTuple_2_Int32_UnityEngine_Vector2Int__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ValueTuple_2_Int32_UnityEngine_Vector2Int__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ValueTuple_2_Int32_UnityEngine_Vector2Int__1__VTable vtable; +}; + +struct ValueTuple_2_Object_ValueTuple_2_Object_Int32__1__VTable { +}; + +struct ValueTuple_2_Object_ValueTuple_2_Object_Int32__1__StaticFields { +}; + +struct ValueTuple_2_Object_ValueTuple_2_Object_Int32__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ValueTuple_2_Object_ValueTuple_2_Object_Int32__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ValueTuple_2_Object_ValueTuple_2_Object_Int32__1__VTable vtable; +}; + +struct ValueTuple_2_Object_Object__1__VTable { +}; + +struct ValueTuple_2_Object_Object__1__StaticFields { +}; + +struct ValueTuple_2_Object_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ValueTuple_2_Object_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ValueTuple_2_Object_Object__1__VTable vtable; +}; + +struct ValueTuple_2_UnityEngine_Vector3Int_Object__1__VTable { +}; + +struct ValueTuple_2_UnityEngine_Vector3Int_Object__1__StaticFields { +}; + +struct ValueTuple_2_UnityEngine_Vector3Int_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ValueTuple_2_UnityEngine_Vector3Int_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ValueTuple_2_UnityEngine_Vector3Int_Object__1__VTable vtable; +}; + +struct ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel__1__VTable { +}; + +struct ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel__1__StaticFields { +}; + +struct ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomChannel__1__VTable vtable; +}; + +struct ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership__1__VTable { +}; + +struct ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership__1__StaticFields { +}; + +struct ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ValueTuple_2_UnityEngine_Vector3Int_Dissonance_RoomMembership__1__VTable vtable; +}; + +struct AnimatorClipInfo___VTable { +}; + +struct AnimatorClipInfo___StaticFields { +}; + +struct AnimatorClipInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct AnimatorClipInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct AnimatorClipInfo___VTable vtable; +}; + +struct BoltPeer___VTable { +}; + +struct BoltPeer___StaticFields { +}; + +struct BoltPeer___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltPeer___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltPeer___VTable vtable; +}; + +struct BoltPhysicsHit___VTable { +}; + +struct BoltPhysicsHit___StaticFields { +}; + +struct BoltPhysicsHit___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltPhysicsHit___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltPhysicsHit___VTable vtable; +}; + +struct BoneWeight___VTable { +}; + +struct BoneWeight___StaticFields { +}; + +struct BoneWeight___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoneWeight___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoneWeight___VTable vtable; +}; + +struct CancellationToken__1__VTable { +}; + +struct CancellationToken__1__StaticFields { +}; + +struct CancellationToken__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CancellationToken__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CancellationToken__1__VTable vtable; +}; + +struct ClientInfo___VTable { +}; + +struct ClientInfo___StaticFields { +}; + +struct ClientInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ClientInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ClientInfo___VTable vtable; +}; + +struct CombineInstance___VTable { +}; + +struct CombineInstance___StaticFields { +}; + +struct CombineInstance___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CombineInstance___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CombineInstance___VTable vtable; +}; + +struct Connection__1__VTable { +}; + +struct Connection__1__StaticFields { +}; + +struct Connection__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Connection__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Connection__1__VTable vtable; +}; + +struct ControllerPollingInfo___VTable { +}; + +struct ControllerPollingInfo___StaticFields { +}; + +struct ControllerPollingInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ControllerPollingInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ControllerPollingInfo___VTable vtable; +}; + +struct ControllerTemplateElementTarget___VTable { +}; + +struct ControllerTemplateElementTarget___StaticFields { +}; + +struct ControllerTemplateElementTarget___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ControllerTemplateElementTarget___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ControllerTemplateElementTarget___VTable vtable; +}; + +struct DateTimeOffset___VTable { +}; + +struct DateTimeOffset___StaticFields { +}; + +struct DateTimeOffset___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DateTimeOffset___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DateTimeOffset___VTable vtable; +}; + +struct EasingFunction___VTable { +}; + +struct EasingFunction___StaticFields { +}; + +struct EasingFunction___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EasingFunction___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EasingFunction___VTable vtable; +}; + +struct ElementAssignmentConflictInfo___VTable { +}; + +struct ElementAssignmentConflictInfo___StaticFields { +}; + +struct ElementAssignmentConflictInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ElementAssignmentConflictInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ElementAssignmentConflictInfo___VTable vtable; +}; + +struct EventUnreliable___VTable { +}; + +struct EventUnreliable___StaticFields { +}; + +struct EventUnreliable___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EventUnreliable___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EventUnreliable___VTable vtable; +}; + +struct GlyphRect___VTable { +}; + +struct GlyphRect___StaticFields { +}; + +struct GlyphRect___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GlyphRect___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GlyphRect___VTable vtable; +}; + +struct InputActionSourceData___VTable { +}; + +struct InputActionSourceData___StaticFields { +}; + +struct InputActionSourceData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputActionSourceData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputActionSourceData___VTable vtable; +}; + +struct InputDevice__1__VTable { +}; + +struct InputDevice__1__StaticFields { +}; + +struct InputDevice__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputDevice__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputDevice__1__VTable vtable; +}; + +struct InterpretedFrameInfo___VTable { +}; + +struct InterpretedFrameInfo___StaticFields { +}; + +struct InterpretedFrameInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InterpretedFrameInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InterpretedFrameInfo___VTable vtable; +}; + +struct IntervalTreeNode___VTable { +}; + +struct IntervalTreeNode___StaticFields { +}; + +struct IntervalTreeNode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IntervalTreeNode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IntervalTreeNode___VTable vtable; +}; + +struct ItemDefinitionAmount__1__VTable { +}; + +struct ItemDefinitionAmount__1__StaticFields { +}; + +struct ItemDefinitionAmount__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ItemDefinitionAmount__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ItemDefinitionAmount__1__VTable vtable; +}; + +struct KickedPlayer___VTable { +}; + +struct KickedPlayer___StaticFields { +}; + +struct KickedPlayer___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KickedPlayer___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KickedPlayer___VTable vtable; +}; + +struct ManipulatorActivationFilter___VTable { +}; + +struct ManipulatorActivationFilter___StaticFields { +}; + +struct ManipulatorActivationFilter___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ManipulatorActivationFilter___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ManipulatorActivationFilter___VTable vtable; +}; + +struct NameAndParameters___VTable { +}; + +struct NameAndParameters___StaticFields { +}; + +struct NameAndParameters___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NameAndParameters___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NameAndParameters___VTable vtable; +}; + +struct NamedValue___VTable { +}; + +struct NamedValue___StaticFields { +}; + +struct NamedValue___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NamedValue___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NamedValue___VTable vtable; +}; + +struct NetworkPropertyInfo___VTable { +}; + +struct NetworkPropertyInfo___StaticFields { +}; + +struct NetworkPropertyInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NetworkPropertyInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NetworkPropertyInfo___VTable vtable; +}; + +struct ObjectInitializationData___VTable { +}; + +struct ObjectInitializationData___StaticFields { +}; + +struct ObjectInitializationData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ObjectInitializationData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ObjectInitializationData___VTable vtable; +}; + +struct OpenChannel___VTable { +}; + +struct OpenChannel___StaticFields { +}; + +struct OpenChannel___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct OpenChannel___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct OpenChannel___VTable vtable; +}; + +struct PacketStats___VTable { +}; + +struct PacketStats___StaticFields { +}; + +struct PacketStats___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PacketStats___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PacketStats___VTable vtable; +}; + +struct ParticleCollisionEvent___VTable { +}; + +struct ParticleCollisionEvent___StaticFields { +}; + +struct ParticleCollisionEvent___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ParticleCollisionEvent___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ParticleCollisionEvent___VTable vtable; +}; + +struct PlayableBinding___VTable { +}; + +struct PlayableBinding___StaticFields { +}; + +struct PlayableBinding___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PlayableBinding___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PlayableBinding___VTable vtable; +}; + +struct Priority___VTable { +}; + +struct Priority___StaticFields { +}; + +struct Priority___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Priority___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Priority___VTable vtable; +}; + +struct RangePositionInfo___VTable { +}; + +struct RangePositionInfo___StaticFields { +}; + +struct RangePositionInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RangePositionInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RangePositionInfo___VTable vtable; +}; + +struct RaycastResult___VTable { +}; + +struct RaycastResult___StaticFields { +}; + +struct RaycastResult___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RaycastResult___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RaycastResult___VTable vtable; +}; + +struct ReflectionProbeBlendInfo___VTable { +}; + +struct ReflectionProbeBlendInfo___StaticFields { +}; + +struct ReflectionProbeBlendInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ReflectionProbeBlendInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ReflectionProbeBlendInfo___VTable vtable; +}; + +struct RemoteChannel___VTable { +}; + +struct RemoteChannel___StaticFields { +}; + +struct RemoteChannel___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RemoteChannel___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RemoteChannel___VTable vtable; +}; + +struct RenderChainTextEntry___VTable { +}; + +struct RenderChainTextEntry___StaticFields { +}; + +struct RenderChainTextEntry___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RenderChainTextEntry___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RenderChainTextEntry___VTable vtable; +}; + +struct RoomMembership___VTable { +}; + +struct RoomMembership___StaticFields { +}; + +struct RoomMembership___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RoomMembership___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RoomMembership___VTable vtable; +}; + +struct RuleMatcher___VTable { +}; + +struct RuleMatcher___StaticFields { +}; + +struct RuleMatcher___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RuleMatcher___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RuleMatcher___VTable vtable; +}; + +struct SslApplicationProtocol___VTable { +}; + +struct SslApplicationProtocol___StaticFields { +}; + +struct SslApplicationProtocol___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SslApplicationProtocol___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SslApplicationProtocol___VTable vtable; +}; + +struct SteamItemDef_t___VTable { +}; + +struct SteamItemDef_t___StaticFields { +}; + +struct SteamItemDef_t___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SteamItemDef_t___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SteamItemDef_t___VTable vtable; +}; + +struct SteamItemDetails_t___VTable { +}; + +struct SteamItemDetails_t___StaticFields { +}; + +struct SteamItemDetails_t___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SteamItemDetails_t___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SteamItemDetails_t___VTable vtable; +}; + +struct StylePropertyName___VTable { +}; + +struct StylePropertyName___StaticFields { +}; + +struct StylePropertyName___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StylePropertyName___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StylePropertyName___VTable vtable; +}; + +struct StyleSelectorPart___VTable { +}; + +struct StyleSelectorPart___StaticFields { +}; + +struct StyleSelectorPart___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StyleSelectorPart___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StyleSelectorPart___VTable vtable; +}; + +struct StyleSyntaxToken___VTable { +}; + +struct StyleSyntaxToken___StaticFields { +}; + +struct StyleSyntaxToken___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StyleSyntaxToken___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StyleSyntaxToken___VTable vtable; +}; + +struct StyleValueManaged___VTable { +}; + +struct StyleValueManaged___StaticFields { +}; + +struct StyleValueManaged___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StyleValueManaged___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StyleValueManaged___VTable vtable; +}; + +struct Substring__1__VTable { +}; + +struct Substring__1__StaticFields { +}; + +struct Substring__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Substring__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Substring__1__VTable vtable; +}; + +struct TimeValue___VTable { +}; + +struct TimeValue___StaticFields { +}; + +struct TimeValue___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TimeValue___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TimeValue___VTable vtable; +}; + +struct TreeViewItemWrapper___VTable { +}; + +struct TreeViewItemWrapper___StaticFields { +}; + +struct TreeViewItemWrapper___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TreeViewItemWrapper___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TreeViewItemWrapper___VTable vtable; +}; + +struct TypeWrapper___VTable { +}; + +struct TypeWrapper___StaticFields { +}; + +struct TypeWrapper___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TypeWrapper___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TypeWrapper___VTable vtable; +}; + +struct UICharInfo___VTable { +}; + +struct UICharInfo___StaticFields { +}; + +struct UICharInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UICharInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UICharInfo___VTable vtable; +}; + +struct UILineInfo___VTable { +}; + +struct UILineInfo___StaticFields { +}; + +struct UILineInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UILineInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UILineInfo___VTable vtable; +}; + +struct UVTexture___VTable { +}; + +struct UVTexture___StaticFields { +}; + +struct UVTexture___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UVTexture___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UVTexture___VTable vtable; +}; + +struct UdpIPv4Address___VTable { +}; + +struct UdpIPv4Address___StaticFields { +}; + +struct UdpIPv4Address___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UdpIPv4Address___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UdpIPv4Address___VTable vtable; +}; + +struct UsageHint___VTable { +}; + +struct UsageHint___StaticFields { +}; + +struct UsageHint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UsageHint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UsageHint___VTable vtable; +}; + +struct ViewConfiguration___VTable { +}; + +struct ViewConfiguration___StaticFields { +}; + +struct ViewConfiguration___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ViewConfiguration___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ViewConfiguration___VTable vtable; +}; + +struct Win32_IP_ADAPTER_ADDRESSES___VTable { +}; + +struct Win32_IP_ADAPTER_ADDRESSES___StaticFields { +}; + +struct Win32_IP_ADAPTER_ADDRESSES___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Win32_IP_ADAPTER_ADDRESSES___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Win32_IP_ADAPTER_ADDRESSES___VTable vtable; +}; + +struct Win32_IP_ADAPTER_INFO___VTable { +}; + +struct Win32_IP_ADAPTER_INFO___StaticFields { +}; + +struct Win32_IP_ADAPTER_INFO___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Win32_IP_ADAPTER_INFO___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Win32_IP_ADAPTER_INFO___VTable vtable; +}; + +struct X509ChainStatus___VTable { +}; + +struct X509ChainStatus___StaticFields { +}; + +struct X509ChainStatus___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct X509ChainStatus___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct X509ChainStatus___VTable vtable; +}; + +struct XRFeatureDescriptor___VTable { +}; + +struct XRFeatureDescriptor___StaticFields { +}; + +struct XRFeatureDescriptor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct XRFeatureDescriptor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct XRFeatureDescriptor___VTable vtable; +}; + +struct XRNodeState___VTable { +}; + +struct XRNodeState___StaticFields { +}; + +struct XRNodeState___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct XRNodeState___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct XRNodeState___VTable vtable; +}; + +struct AdvancedSmooth_Turn___VTable { +}; + +struct AdvancedSmooth_Turn___StaticFields { +}; + +struct AdvancedSmooth_Turn___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct AdvancedSmooth_Turn___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct AdvancedSmooth_Turn___VTable vtable; +}; + +struct AnimationOutputWeightProcessor_WeightInfo___VTable { +}; + +struct AnimationOutputWeightProcessor_WeightInfo___StaticFields { +}; + +struct AnimationOutputWeightProcessor_WeightInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct AnimationOutputWeightProcessor_WeightInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct AnimationOutputWeightProcessor_WeightInfo___VTable vtable; +}; + +struct BeforeRenderHelper_OrderBlock___VTable { +}; + +struct BeforeRenderHelper_OrderBlock___StaticFields { +}; + +struct BeforeRenderHelper_OrderBlock___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BeforeRenderHelper_OrderBlock___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BeforeRenderHelper_OrderBlock___VTable vtable; +}; + +struct BitmapAllocator32_Page___VTable { +}; + +struct BitmapAllocator32_Page___StaticFields { +}; + +struct BitmapAllocator32_Page___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BitmapAllocator32_Page___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BitmapAllocator32_Page___VTable vtable; +}; + +struct Camera_RenderRequest___VTable { +}; + +struct Camera_RenderRequest___StaticFields { +}; + +struct Camera_RenderRequest___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Camera_RenderRequest___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Camera_RenderRequest___VTable vtable; +}; + +struct CameraState_CustomBlendable___VTable { +}; + +struct CameraState_CustomBlendable___StaticFields { +}; + +struct CameraState_CustomBlendable___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CameraState_CustomBlendable___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CameraState_CustomBlendable___VTable vtable; +}; + +struct CinemachineClearShot_Pair___VTable { +}; + +struct CinemachineClearShot_Pair___StaticFields { +}; + +struct CinemachineClearShot_Pair___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CinemachineClearShot_Pair___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CinemachineClearShot_Pair___VTable vtable; +}; + +struct CinemachineStateDrivenCamera_HashPair___VTable { +}; + +struct CinemachineStateDrivenCamera_HashPair___StaticFields { +}; + +struct CinemachineStateDrivenCamera_HashPair___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CinemachineStateDrivenCamera_HashPair___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CinemachineStateDrivenCamera_HashPair___VTable vtable; +}; + +struct ClipperLib_DoublePoint___VTable { +}; + +struct ClipperLib_DoublePoint___StaticFields { +}; + +struct ClipperLib_DoublePoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ClipperLib_DoublePoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ClipperLib_DoublePoint___VTable vtable; +}; + +struct ConfinerOven_PolygonSolution___VTable { +}; + +struct ConfinerOven_PolygonSolution___StaticFields { +}; + +struct ConfinerOven_PolygonSolution___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ConfinerOven_PolygonSolution___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ConfinerOven_PolygonSolution___VTable vtable; +}; + +struct CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB___VTable { +}; + +struct CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB___StaticFields { +}; + +struct CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CustomController_ScBGnRIUWfDMtcKFFeyTTDtFQhRbB___VTable vtable; +}; + +struct EventDispatcher_CallbackWrapper___VTable { +}; + +struct EventDispatcher_CallbackWrapper___StaticFields { +}; + +struct EventDispatcher_CallbackWrapper___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EventDispatcher_CallbackWrapper___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EventDispatcher_CallbackWrapper___VTable vtable; +}; + +struct EventDispatcher_EventListener___VTable { +}; + +struct EventDispatcher_EventListener___StaticFields { +}; + +struct EventDispatcher_EventListener___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EventDispatcher_EventListener___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EventDispatcher_EventListener___VTable vtable; +}; + +struct EventQueue_NetworkEvent___VTable { +}; + +struct EventQueue_NetworkEvent___StaticFields { +}; + +struct EventQueue_NetworkEvent___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EventQueue_NetworkEvent___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EventQueue_NetworkEvent___VTable vtable; +}; + +struct FocusController_FocusedElement___VTable { +}; + +struct FocusController_FocusedElement___StaticFields { +}; + +struct FocusController_FocusedElement___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct FocusController_FocusedElement___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct FocusController_FocusedElement___VTable vtable; +}; + +struct Funnel_PathPart___VTable { +}; + +struct Funnel_PathPart___StaticFields { +}; + +struct Funnel_PathPart___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Funnel_PathPart___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Funnel_PathPart___VTable vtable; +}; + +struct HID_HIDCollectionDescriptor___VTable { +}; + +struct HID_HIDCollectionDescriptor___StaticFields { +}; + +struct HID_HIDCollectionDescriptor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HID_HIDCollectionDescriptor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HID_HIDCollectionDescriptor___VTable vtable; +}; + +struct HIDParser_HIDReportData___VTable { +}; + +struct HIDParser_HIDReportData___StaticFields { +}; + +struct HIDParser_HIDReportData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HIDParser_HIDReportData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HIDParser_HIDReportData___VTable vtable; +}; + +struct HairDesignerGeneratorFurShellBase_BufferData___VTable { +}; + +struct HairDesignerGeneratorFurShellBase_BufferData___StaticFields { +}; + +struct HairDesignerGeneratorFurShellBase_BufferData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HairDesignerGeneratorFurShellBase_BufferData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HairDesignerGeneratorFurShellBase_BufferData___VTable vtable; +}; + +struct InputActionMap_BindingOverrideJson___VTable { +}; + +struct InputActionMap_BindingOverrideJson___StaticFields { +}; + +struct InputActionMap_BindingOverrideJson___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputActionMap_BindingOverrideJson___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputActionMap_BindingOverrideJson___VTable vtable; +}; + +struct InternalTreeView_TreeViewItemWrapper___VTable { +}; + +struct InternalTreeView_TreeViewItemWrapper___StaticFields { +}; + +struct InternalTreeView_TreeViewItemWrapper___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InternalTreeView_TreeViewItemWrapper___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InternalTreeView_TreeViewItemWrapper___VTable vtable; +}; + +struct JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV___VTable { +}; + +struct JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV___StaticFields { +}; + +struct JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV___VTable vtable; +}; + +struct JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb___VTable { +}; + +struct JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb___StaticFields { +}; + +struct JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb___VTable vtable; +}; + +struct JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux___VTable { +}; + +struct JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux___StaticFields { +}; + +struct JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux___VTable vtable; +}; + +struct Logs_LogMessage__1__VTable { +}; + +struct Logs_LogMessage__1__StaticFields { +}; + +struct Logs_LogMessage__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Logs_LogMessage__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Logs_LogMessage__1__VTable vtable; +}; + +struct MagicLightProbes_VolumeParameters___VTable { +}; + +struct MagicLightProbes_VolumeParameters___StaticFields { +}; + +struct MagicLightProbes_VolumeParameters___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MagicLightProbes_VolumeParameters___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MagicLightProbes_VolumeParameters___VTable vtable; +}; + +struct NolanBehaviour_OverlappedCollider___VTable { +}; + +struct NolanBehaviour_OverlappedCollider___StaticFields { +}; + +struct NolanBehaviour_OverlappedCollider___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NolanBehaviour_OverlappedCollider___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NolanBehaviour_OverlappedCollider___VTable vtable; +}; + +struct OpenXRInput_SerializedBinding___VTable { +}; + +struct OpenXRInput_SerializedBinding___StaticFields { +}; + +struct OpenXRInput_SerializedBinding___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct OpenXRInput_SerializedBinding___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct OpenXRInput_SerializedBinding___VTable vtable; +}; + +struct PackedPlayModeBuildLogs_RuntimeBuildLog___VTable { +}; + +struct PackedPlayModeBuildLogs_RuntimeBuildLog___StaticFields { +}; + +struct PackedPlayModeBuildLogs_RuntimeBuildLog___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PackedPlayModeBuildLogs_RuntimeBuildLog___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PackedPlayModeBuildLogs_RuntimeBuildLog___VTable vtable; +}; + +struct ProbeBrickIndex_Brick___VTable { +}; + +struct ProbeBrickIndex_Brick___StaticFields { +}; + +struct ProbeBrickIndex_Brick___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ProbeBrickIndex_Brick___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ProbeBrickIndex_Brick___VTable vtable; +}; + +struct ProbeBrickIndex_ReservedBrick___VTable { +}; + +struct ProbeBrickIndex_ReservedBrick___StaticFields { +}; + +struct ProbeBrickIndex_ReservedBrick___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ProbeBrickIndex_ReservedBrick___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ProbeBrickIndex_ReservedBrick___VTable vtable; +}; + +struct ProbeBrickIndex_VoxelMeta___VTable { +}; + +struct ProbeBrickIndex_VoxelMeta___StaticFields { +}; + +struct ProbeBrickIndex_VoxelMeta___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ProbeBrickIndex_VoxelMeta___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ProbeBrickIndex_VoxelMeta___VTable vtable; +}; + +struct ProbeBrickPool_BrickChunkAlloc__1__VTable { +}; + +struct ProbeBrickPool_BrickChunkAlloc__1__StaticFields { +}; + +struct ProbeBrickPool_BrickChunkAlloc__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ProbeBrickPool_BrickChunkAlloc__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ProbeBrickPool_BrickChunkAlloc__1__VTable vtable; +}; + +struct ProbeVolumePerSceneData_SerializableAssetItem___VTable { +}; + +struct ProbeVolumePerSceneData_SerializableAssetItem___StaticFields { +}; + +struct ProbeVolumePerSceneData_SerializableAssetItem___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ProbeVolumePerSceneData_SerializableAssetItem___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ProbeVolumePerSceneData_SerializableAssetItem___VTable vtable; +}; + +struct ProbeVolumeSceneData_SerializableBoundItem___VTable { +}; + +struct ProbeVolumeSceneData_SerializableBoundItem___StaticFields { +}; + +struct ProbeVolumeSceneData_SerializableBoundItem___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ProbeVolumeSceneData_SerializableBoundItem___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ProbeVolumeSceneData_SerializableBoundItem___VTable vtable; +}; + +struct ProbeVolumeSceneData_SerializableHasPVItem___VTable { +}; + +struct ProbeVolumeSceneData_SerializableHasPVItem___StaticFields { +}; + +struct ProbeVolumeSceneData_SerializableHasPVItem___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ProbeVolumeSceneData_SerializableHasPVItem___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ProbeVolumeSceneData_SerializableHasPVItem___VTable vtable; +}; + +struct ProbeVolumeSceneData_SerializablePVBakeSettings___VTable { +}; + +struct ProbeVolumeSceneData_SerializablePVBakeSettings___StaticFields { +}; + +struct ProbeVolumeSceneData_SerializablePVBakeSettings___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ProbeVolumeSceneData_SerializablePVBakeSettings___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ProbeVolumeSceneData_SerializablePVBakeSettings___VTable vtable; +}; + +struct ProbeVolumeSceneData_SerializablePVProfile___VTable { +}; + +struct ProbeVolumeSceneData_SerializablePVProfile___StaticFields { +}; + +struct ProbeVolumeSceneData_SerializablePVProfile___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ProbeVolumeSceneData_SerializablePVProfile___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ProbeVolumeSceneData_SerializablePVProfile___VTable vtable; +}; + +struct RegexCharClass_SingleRange___VTable { +}; + +struct RegexCharClass_SingleRange___StaticFields { +}; + +struct RegexCharClass_SingleRange___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RegexCharClass_SingleRange___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RegexCharClass_SingleRange___VTable vtable; +}; + +struct RenderGraphDebugData_PassDebugData___VTable { +}; + +struct RenderGraphDebugData_PassDebugData___StaticFields { +}; + +struct RenderGraphDebugData_PassDebugData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RenderGraphDebugData_PassDebugData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RenderGraphDebugData_PassDebugData___VTable vtable; +}; + +struct ResourceManager_DeferredCallbackRegisterRequest___VTable { +}; + +struct ResourceManager_DeferredCallbackRegisterRequest___StaticFields { +}; + +struct ResourceManager_DeferredCallbackRegisterRequest___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ResourceManager_DeferredCallbackRegisterRequest___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ResourceManager_DeferredCallbackRegisterRequest___VTable vtable; +}; + +struct RetainedGizmos_MeshWithHash___VTable { +}; + +struct RetainedGizmos_MeshWithHash___StaticFields { +}; + +struct RetainedGizmos_MeshWithHash___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RetainedGizmos_MeshWithHash___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RetainedGizmos_MeshWithHash___VTable vtable; +}; + +struct TemplateAsset_AttributeOverride___VTable { +}; + +struct TemplateAsset_AttributeOverride___StaticFields { +}; + +struct TemplateAsset_AttributeOverride___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TemplateAsset_AttributeOverride___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TemplateAsset_AttributeOverride___VTable vtable; +}; + +struct TextSettings_FontReferenceMap___VTable { +}; + +struct TextSettings_FontReferenceMap___StaticFields { +}; + +struct TextSettings_FontReferenceMap___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TextSettings_FontReferenceMap___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TextSettings_FontReferenceMap___VTable vtable; +}; + +struct TextureBlitter_BlitInfo___VTable { +}; + +struct TextureBlitter_BlitInfo___StaticFields { +}; + +struct TextureBlitter_BlitInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TextureBlitter_BlitInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TextureBlitter_BlitInfo___VTable vtable; +}; + +struct TexturePacker_JsonArray_Frame___VTable { +}; + +struct TexturePacker_JsonArray_Frame___StaticFields { +}; + +struct TexturePacker_JsonArray_Frame___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TexturePacker_JsonArray_Frame___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TexturePacker_JsonArray_Frame___VTable vtable; +}; + +struct TextureRegistry_TextureInfo___VTable { +}; + +struct TextureRegistry_TextureInfo___StaticFields { +}; + +struct TextureRegistry_TextureInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TextureRegistry_TextureInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TextureRegistry_TextureInfo___VTable vtable; +}; + +struct TrackedDeviceRaycaster_RaycastHitData___VTable { +}; + +struct TrackedDeviceRaycaster_RaycastHitData___StaticFields { +}; + +struct TrackedDeviceRaycaster_RaycastHitData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TrackedDeviceRaycaster_RaycastHitData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TrackedDeviceRaycaster_RaycastHitData___VTable vtable; +}; + +struct TrackedPoseDriverDataDescription_PoseData___VTable { +}; + +struct TrackedPoseDriverDataDescription_PoseData___StaticFields { +}; + +struct TrackedPoseDriverDataDescription_PoseData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TrackedPoseDriverDataDescription_PoseData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TrackedPoseDriverDataDescription_PoseData___VTable vtable; +}; + +struct TreeView_TreeViewItemWrapper___VTable { +}; + +struct TreeView_TreeViewItemWrapper___StaticFields { +}; + +struct TreeView_TreeViewItemWrapper___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TreeView_TreeViewItemWrapper___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TreeView_TreeViewItemWrapper___VTable vtable; +}; + +struct TreeViewReorderableDragAndDropController_TreeItemState___VTable { +}; + +struct TreeViewReorderableDragAndDropController_TreeItemState___StaticFields { +}; + +struct TreeViewReorderableDragAndDropController_TreeItemState___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TreeViewReorderableDragAndDropController_TreeItemState___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TreeViewReorderableDragAndDropController_TreeItemState___VTable vtable; +}; + +struct UIRStylePainter_Entry___VTable { +}; + +struct UIRStylePainter_Entry___StaticFields { +}; + +struct UIRStylePainter_Entry___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UIRStylePainter_Entry___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UIRStylePainter_Entry___VTable vtable; +}; + +struct UIRenderDevice_AllocToFree___VTable { +}; + +struct UIRenderDevice_AllocToFree___StaticFields { +}; + +struct UIRenderDevice_AllocToFree___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UIRenderDevice_AllocToFree___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UIRenderDevice_AllocToFree___VTable vtable; +}; + +struct UnitySynchronizationContext_WorkRequest___VTable { +}; + +struct UnitySynchronizationContext_WorkRequest___StaticFields { +}; + +struct UnitySynchronizationContext_WorkRequest___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UnitySynchronizationContext_WorkRequest___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UnitySynchronizationContext_WorkRequest___VTable vtable; +}; + +struct VisualTreeAsset_SlotDefinition___VTable { +}; + +struct VisualTreeAsset_SlotDefinition___StaticFields { +}; + +struct VisualTreeAsset_SlotDefinition___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct VisualTreeAsset_SlotDefinition___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct VisualTreeAsset_SlotDefinition___VTable vtable; +}; + +struct VisualTreeAsset_SlotUsageEntry___VTable { +}; + +struct VisualTreeAsset_SlotUsageEntry___StaticFields { +}; + +struct VisualTreeAsset_SlotUsageEntry___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct VisualTreeAsset_SlotUsageEntry___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct VisualTreeAsset_SlotUsageEntry___VTable vtable; +}; + +struct VisualTreeAsset_UsingEntry___VTable { +}; + +struct VisualTreeAsset_UsingEntry___StaticFields { +}; + +struct VisualTreeAsset_UsingEntry___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct VisualTreeAsset_UsingEntry___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct VisualTreeAsset_UsingEntry___VTable vtable; +}; + +struct XmlSchemaObjectTable_XmlSchemaObjectEntry___VTable { +}; + +struct XmlSchemaObjectTable_XmlSchemaObjectEntry___StaticFields { +}; + +struct XmlSchemaObjectTable_XmlSchemaObjectEntry___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct XmlSchemaObjectTable_XmlSchemaObjectEntry___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct XmlSchemaObjectTable_XmlSchemaObjectEntry___VTable vtable; +}; + +struct ftLightmaps_LightmapAdditionalData___VTable { +}; + +struct ftLightmaps_LightmapAdditionalData___StaticFields { +}; + +struct ftLightmaps_LightmapAdditionalData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ftLightmaps_LightmapAdditionalData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ftLightmaps_LightmapAdditionalData___VTable vtable; +}; + +struct gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy___VTable { +}; + +struct gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy___StaticFields { +}; + +struct gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct gWxrirpmIhQTmhziZnlXlEwmYtKB_JGqpVPKOGfpJRzqjZQBKtOzfykhy___VTable vtable; +}; + +struct DebugUI_Foldout_ContextMenuItem___VTable { +}; + +struct DebugUI_Foldout_ContextMenuItem___StaticFields { +}; + +struct DebugUI_Foldout_ContextMenuItem___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DebugUI_Foldout_ContextMenuItem___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DebugUI_Foldout_ContextMenuItem___VTable vtable; +}; + +struct InputControlLayout_Collection_LayoutMatcher___VTable { +}; + +struct InputControlLayout_Collection_LayoutMatcher___StaticFields { +}; + +struct InputControlLayout_Collection_LayoutMatcher___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputControlLayout_Collection_LayoutMatcher___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputControlLayout_Collection_LayoutMatcher___VTable vtable; +}; + +struct InstructionList_DebugView_InstructionView___VTable { +}; + +struct InstructionList_DebugView_InstructionView___StaticFields { +}; + +struct InstructionList_DebugView_InstructionView___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InstructionList_DebugView_InstructionView___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InstructionList_DebugView_InstructionView___VTable vtable; +}; + +struct PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb___VTable { +}; + +struct PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb___StaticFields { +}; + +struct PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PlayerController_Element_FBFSokzheFEoJDMSTjkojOPiiovPb___VTable vtable; +}; + +struct TargetPositionCache_CacheCurve_Item___VTable { +}; + +struct TargetPositionCache_CacheCurve_Item___StaticFields { +}; + +struct TargetPositionCache_CacheCurve_Item___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TargetPositionCache_CacheCurve_Item___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TargetPositionCache_CacheCurve_Item___VTable vtable; +}; + +struct TargetPositionCache_CacheEntry_RecordingItem___VTable { +}; + +struct TargetPositionCache_CacheEntry_RecordingItem___StaticFields { +}; + +struct TargetPositionCache_CacheEntry_RecordingItem___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TargetPositionCache_CacheEntry_RecordingItem___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TargetPositionCache_CacheEntry_RecordingItem___VTable vtable; +}; + +struct ReadOnlyMemory_1_Byte__1__VTable { +}; + +struct ReadOnlyMemory_1_Byte__1__StaticFields { +}; + +struct ReadOnlyMemory_1_Byte__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ReadOnlyMemory_1_Byte__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ReadOnlyMemory_1_Byte__1__VTable vtable; +}; + +struct Memory_1_Byte__1__VTable { +}; + +struct Memory_1_Byte__1__StaticFields { +}; + +struct Memory_1_Byte__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Memory_1_Byte__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Memory_1_Byte__1__VTable vtable; +}; + +struct ReadOnlyMemory_1_Object__1__VTable { +}; + +struct ReadOnlyMemory_1_Object__1__StaticFields { +}; + +struct ReadOnlyMemory_1_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ReadOnlyMemory_1_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ReadOnlyMemory_1_Object__1__VTable vtable; +}; + +struct Memory_1_Object__1__VTable { +}; + +struct Memory_1_Object__1__StaticFields { +}; + +struct Memory_1_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Memory_1_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Memory_1_Object__1__VTable vtable; +}; + struct Volatile_VolatileBoolean { bool Value; }; @@ -1373853,6 +1396033,21 @@ struct Volatile_VolatileBoolean__Class { struct Volatile_VolatileBoolean__VTable vtable; }; +struct Volatile_VolatileBoolean___VTable { +}; + +struct Volatile_VolatileBoolean___StaticFields { +}; + +struct Volatile_VolatileBoolean___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Volatile_VolatileBoolean___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Volatile_VolatileBoolean___VTable vtable; +}; + struct Volatile_VolatileInt32 { int32_t Value; }; @@ -1373882,6 +1396077,21 @@ struct Volatile_VolatileInt32__Class { struct Volatile_VolatileInt32__VTable vtable; }; +struct Volatile_VolatileInt32___VTable { +}; + +struct Volatile_VolatileInt32___StaticFields { +}; + +struct Volatile_VolatileInt32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Volatile_VolatileInt32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Volatile_VolatileInt32___VTable vtable; +}; + struct Volatile_VolatileObject { struct Object *Value; }; @@ -1373911,6 +1396121,96 @@ struct Volatile_VolatileObject__Class { struct Volatile_VolatileObject__VTable vtable; }; +struct Volatile_VolatileObject___VTable { +}; + +struct Volatile_VolatileObject___StaticFields { +}; + +struct Volatile_VolatileObject___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Volatile_VolatileObject___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Volatile_VolatileObject___VTable vtable; +}; + +struct Number_NumberBuffer_DigitsAndNullTerminator___VTable { +}; + +struct Number_NumberBuffer_DigitsAndNullTerminator___StaticFields { +}; + +struct Number_NumberBuffer_DigitsAndNullTerminator___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Number_NumberBuffer_DigitsAndNullTerminator___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Number_NumberBuffer_DigitsAndNullTerminator___VTable vtable; +}; + +struct DeviceResetEvent___VTable { +}; + +struct DeviceResetEvent___StaticFields { +}; + +struct DeviceResetEvent___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DeviceResetEvent___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DeviceResetEvent___VTable vtable; +}; + +struct InputEvent___VTable { +}; + +struct InputEvent___StaticFields { +}; + +struct InputEvent___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputEvent___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputEvent___VTable vtable; +}; + +struct NativeAnchor___VTable { +}; + +struct NativeAnchor___StaticFields { +}; + +struct NativeAnchor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NativeAnchor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NativeAnchor___VTable vtable; +}; + +struct PrimitiveValue___VTable { +}; + +struct PrimitiveValue___StaticFields { +}; + +struct PrimitiveValue___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PrimitiveValue___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PrimitiveValue___VTable vtable; +}; + struct Action_2_System_Net_WebClient_Object___Fields { struct MulticastDelegate__Fields _; }; @@ -1373950,6 +1396250,21 @@ struct Action_2_System_Net_WebClient_Object___Class { struct Action_2_System_Net_WebClient_Object___VTable vtable; }; +struct EdKxELrGeTTkBPBCRbJfXHAozIVk___VTable { +}; + +struct EdKxELrGeTTkBPBCRbJfXHAozIVk___StaticFields { +}; + +struct EdKxELrGeTTkBPBCRbJfXHAozIVk___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EdKxELrGeTTkBPBCRbJfXHAozIVk___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EdKxELrGeTTkBPBCRbJfXHAozIVk___VTable vtable; +}; + struct Func_3_Rewired_Controller_Object_Boolean___Fields { struct MulticastDelegate__Fields _; }; @@ -1374297,6 +1396612,19 @@ struct Packsize_ValvePackingSentinel_t__Class { struct Packsize_ValvePackingSentinel_t__VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_System_UInt64_List_1_Steamworks_CallResult_ { + int32_t hashCode; + int32_t next; + uint64_t key; + struct List_1_Steamworks_CallResult_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_UInt64_List_1_Steamworks_CallResult___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_UInt64_List_1_Steamworks_CallResult___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_UInt64_List_1_Steamworks_CallResult_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_UInt64_List_1_Steamworks_CallResult___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_UInt64_List_1_Steamworks_CallResult___Array *_entries; @@ -1374316,19 +1396644,6 @@ struct Dictionary_2_System_UInt64_List_1_Steamworks_CallResult_ { struct Dictionary_2_System_UInt64_List_1_Steamworks_CallResult___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_UInt64_List_1_Steamworks_CallResult_ { - int32_t hashCode; - int32_t next; - uint64_t key; - struct List_1_Steamworks_CallResult_ *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_UInt64_List_1_Steamworks_CallResult___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_UInt64_List_1_Steamworks_CallResult___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_UInt64_List_1_Steamworks_CallResult_ fields; -}; - struct __declspec(align(8)) List_1_Steamworks_CallResult___Fields { struct CallResult__Array *_items; int32_t _size; @@ -1374665,6 +1396980,21 @@ struct ICollection_1_List_1_Steamworks_CallResult___Class { struct ICollection_1_List_1_Steamworks_CallResult___VTable vtable; }; +struct List_1_Steamworks_CallResult__1__VTable { +}; + +struct List_1_Steamworks_CallResult__1__StaticFields { +}; + +struct List_1_Steamworks_CallResult__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Steamworks_CallResult__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Steamworks_CallResult__1__VTable vtable; +}; + struct KeyValuePair_2_System_UInt64_List_1_Steamworks_CallResult___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1374790,6 +1397120,19 @@ struct Dictionary_2_System_UInt64_List_1_Steamworks_CallResult___Class { struct Dictionary_2_System_UInt64_List_1_Steamworks_CallResult___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_Steamworks_Callback_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct List_1_Steamworks_Callback_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_Steamworks_Callback___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_Steamworks_Callback___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_Steamworks_Callback_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_List_1_Steamworks_Callback___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_Steamworks_Callback___Array *_entries; @@ -1374809,19 +1397152,6 @@ struct Dictionary_2_System_Int32_List_1_Steamworks_Callback_ { struct Dictionary_2_System_Int32_List_1_Steamworks_Callback___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_Steamworks_Callback_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct List_1_Steamworks_Callback_ *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_Steamworks_Callback___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_Steamworks_Callback___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_Steamworks_Callback_ fields; -}; - struct __declspec(align(8)) List_1_Steamworks_Callback___Fields { struct Callback__Array *_items; int32_t _size; @@ -1375158,6 +1397488,21 @@ struct ICollection_1_List_1_Steamworks_Callback___Class { struct ICollection_1_List_1_Steamworks_Callback___VTable vtable; }; +struct List_1_Steamworks_Callback__1__VTable { +}; + +struct List_1_Steamworks_Callback__1__StaticFields { +}; + +struct List_1_Steamworks_Callback__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Steamworks_Callback__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Steamworks_Callback__1__VTable vtable; +}; + struct KeyValuePair_2_System_Int32_List_1_Steamworks_Callback___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1375887,6 +1398232,23 @@ struct TextureFormatUtilities { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_RenderTextureFormat_ { + int32_t hashCode; + int32_t next; + int32_t key; + #if defined(_CPLUSPLUS_) + RenderTextureFormat__Enum value; + #else + int32_t value; + #endif +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_RenderTextureFormat___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_RenderTextureFormat___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_RenderTextureFormat_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_UnityEngine_RenderTextureFormat___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_RenderTextureFormat___Array *_entries; @@ -1375906,23 +1398268,6 @@ struct Dictionary_2_System_Int32_UnityEngine_RenderTextureFormat_ { struct Dictionary_2_System_Int32_UnityEngine_RenderTextureFormat___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_RenderTextureFormat_ { - int32_t hashCode; - int32_t next; - int32_t key; - #if defined(_CPLUSPLUS_) - RenderTextureFormat__Enum value; - #else - int32_t value; - #endif -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_RenderTextureFormat___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_RenderTextureFormat___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_RenderTextureFormat_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_RenderTextureFormat___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_RenderTextureFormat___Array__Class *klass; MonitorData *monitor; @@ -1376155,6 +1398500,21 @@ struct ICollection_1_UnityEngine_RenderTextureFormat___Class { struct ICollection_1_UnityEngine_RenderTextureFormat___VTable vtable; }; +struct RenderTextureFormat___VTable { +}; + +struct RenderTextureFormat___StaticFields { +}; + +struct RenderTextureFormat___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RenderTextureFormat___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RenderTextureFormat___VTable vtable; +}; + struct KeyValuePair_2_System_Int32_UnityEngine_RenderTextureFormat___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1376302,6 +1398662,21 @@ struct TextureFormatUtilities__Class { struct TextureFormatUtilities__VTable vtable; }; +struct qmCgssHgeaDgijqXBUzdmdbXNPiuB___VTable { +}; + +struct qmCgssHgeaDgijqXBUzdmdbXNPiuB___StaticFields { +}; + +struct qmCgssHgeaDgijqXBUzdmdbXNPiuB___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct qmCgssHgeaDgijqXBUzdmdbXNPiuB___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct qmCgssHgeaDgijqXBUzdmdbXNPiuB___VTable vtable; +}; + struct __declspec(align(8)) List_1_GTJWYMCBWUFmGJGFrEFOMdusHKKP___Fields { struct GTJWYMCBWUFmGJGFrEFOMdusHKKP__Array *_items; int32_t _size; @@ -1376410,6 +1398785,51 @@ struct List_1_GTJWYMCBWUFmGJGFrEFOMdusHKKP___Class { struct List_1_GTJWYMCBWUFmGJGFrEFOMdusHKKP___VTable vtable; }; +struct cKatzIfcDZIPQqJnLqraRnKEdEBN___VTable { +}; + +struct cKatzIfcDZIPQqJnLqraRnKEdEBN___StaticFields { +}; + +struct cKatzIfcDZIPQqJnLqraRnKEdEBN___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct cKatzIfcDZIPQqJnLqraRnKEdEBN___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct cKatzIfcDZIPQqJnLqraRnKEdEBN___VTable vtable; +}; + +struct UgqgZpsHrByltMiEhhgrCiCVCRnaA___VTable { +}; + +struct UgqgZpsHrByltMiEhhgrCiCVCRnaA___StaticFields { +}; + +struct UgqgZpsHrByltMiEhhgrCiCVCRnaA___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UgqgZpsHrByltMiEhhgrCiCVCRnaA___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UgqgZpsHrByltMiEhhgrCiCVCRnaA___VTable vtable; +}; + +struct JYBTXkVuHseRAPnFWSKHEVXmogBe___VTable { +}; + +struct JYBTXkVuHseRAPnFWSKHEVXmogBe___StaticFields { +}; + +struct JYBTXkVuHseRAPnFWSKHEVXmogBe___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct JYBTXkVuHseRAPnFWSKHEVXmogBe___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct JYBTXkVuHseRAPnFWSKHEVXmogBe___VTable vtable; +}; + struct __declspec(align(8)) ObjectInstanceTracker_Wrapper_1_UgqgZpsHrByltMiEhhgrCiCVCRnaA___Fields { struct UgqgZpsHrByltMiEhhgrCiCVCRnaA *instance; uint32_t instanceId; @@ -1376766,6 +1399186,19 @@ struct IEnumerable_1_System_Reflection_Assembly___Class { struct IEnumerable_1_System_Reflection_Assembly___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Texture2D_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct Texture2D *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Texture2D___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Texture2D___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Texture2D_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_UnityEngine_Texture2D___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Texture2D___Array *_entries; @@ -1376785,19 +1399218,6 @@ struct Dictionary_2_System_Int32_UnityEngine_Texture2D_ { struct Dictionary_2_System_Int32_UnityEngine_Texture2D___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Texture2D_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct Texture2D *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Texture2D___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Texture2D___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Texture2D_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Texture2D___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_Texture2D___Array__Class *klass; MonitorData *monitor; @@ -1377144,6 +1399564,23 @@ struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngi struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UnityEngine_Shader_UnityEngine_Rendering_PostProcessing_PropertySheet___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_PrimitiveType_UnityEngine_Mesh_ { + int32_t hashCode; + int32_t next; + #if defined(_CPLUSPLUS_) + PrimitiveType__Enum key; + #else + int32_t key; + #endif + struct Mesh *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_PrimitiveType_UnityEngine_Mesh___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_PrimitiveType_UnityEngine_Mesh___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_PrimitiveType_UnityEngine_Mesh_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_PrimitiveType_UnityEngine_Mesh___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_PrimitiveType_UnityEngine_Mesh___Array *_entries; @@ -1377163,23 +1399600,6 @@ struct Dictionary_2_UnityEngine_PrimitiveType_UnityEngine_Mesh_ { struct Dictionary_2_UnityEngine_PrimitiveType_UnityEngine_Mesh___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_PrimitiveType_UnityEngine_Mesh_ { - int32_t hashCode; - int32_t next; - #if defined(_CPLUSPLUS_) - PrimitiveType__Enum key; - #else - int32_t key; - #endif - struct Mesh *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_PrimitiveType_UnityEngine_Mesh___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_PrimitiveType_UnityEngine_Mesh___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_PrimitiveType_UnityEngine_Mesh_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_PrimitiveType_UnityEngine_Mesh___Array { struct Dictionary_2_TKey_TValue_Entry_UnityEngine_PrimitiveType_UnityEngine_Mesh___Array__Class *klass; MonitorData *monitor; @@ -1377559,6 +1399979,23 @@ struct Dictionary_2_UnityEngine_PrimitiveType_UnityEngine_Mesh___Class { struct Dictionary_2_UnityEngine_PrimitiveType_UnityEngine_Mesh___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_PrimitiveType_ { + int32_t hashCode; + int32_t next; + struct Type *key; + #if defined(_CPLUSPLUS_) + PrimitiveType__Enum value; + #else + int32_t value; + #endif +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_PrimitiveType___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_PrimitiveType___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_PrimitiveType_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Type_UnityEngine_PrimitiveType___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_PrimitiveType___Array *_entries; @@ -1377578,23 +1400015,6 @@ struct Dictionary_2_System_Type_UnityEngine_PrimitiveType_ { struct Dictionary_2_System_Type_UnityEngine_PrimitiveType___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_PrimitiveType_ { - int32_t hashCode; - int32_t next; - struct Type *key; - #if defined(_CPLUSPLUS_) - PrimitiveType__Enum value; - #else - int32_t value; - #endif -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_PrimitiveType___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_PrimitiveType___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_PrimitiveType_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_PrimitiveType___Array { struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_PrimitiveType___Array__Class *klass; MonitorData *monitor; @@ -1377751,6 +1400171,21 @@ struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_UnityEngine_Primitiv struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_UnityEngine_PrimitiveType___VTable vtable; }; +struct PrimitiveType___VTable { +}; + +struct PrimitiveType___StaticFields { +}; + +struct PrimitiveType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PrimitiveType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PrimitiveType___VTable vtable; +}; + struct KeyValuePair_2_System_Type_UnityEngine_PrimitiveType___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1378384,6 +1400819,96 @@ struct IEnumerable_1_KeyValuePair_2_System_Type_UnityEngine_Rendering_PostProces struct IEnumerable_1_KeyValuePair_2_System_Type_UnityEngine_Rendering_PostProcessing_PostProcessBundle___VTable vtable; }; +struct Dithering___VTable { +}; + +struct Dithering___StaticFields { +}; + +struct Dithering___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dithering___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dithering___VTable vtable; +}; + +struct FastApproximateAntialiasing___VTable { +}; + +struct FastApproximateAntialiasing___StaticFields { +}; + +struct FastApproximateAntialiasing___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct FastApproximateAntialiasing___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct FastApproximateAntialiasing___VTable vtable; +}; + +struct Fog___VTable { +}; + +struct Fog___StaticFields { +}; + +struct Fog___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Fog___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Fog___VTable vtable; +}; + +struct PostProcessDebugLayer___VTable { +}; + +struct PostProcessDebugLayer___StaticFields { +}; + +struct PostProcessDebugLayer___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PostProcessDebugLayer___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PostProcessDebugLayer___VTable vtable; +}; + +struct SubpixelMorphologicalAntialiasing___VTable { +}; + +struct SubpixelMorphologicalAntialiasing___StaticFields { +}; + +struct SubpixelMorphologicalAntialiasing___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SubpixelMorphologicalAntialiasing___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SubpixelMorphologicalAntialiasing___VTable vtable; +}; + +struct TemporalAntialiasing___VTable { +}; + +struct TemporalAntialiasing___StaticFields { +}; + +struct TemporalAntialiasing___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TemporalAntialiasing___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TemporalAntialiasing___VTable vtable; +}; + struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Type_UnityEngine_Rendering_PostProcessing_PostProcessAttribute_ { struct Dictionary_2_System_Type_UnityEngine_Rendering_PostProcessing_PostProcessAttribute_ *_dictionary; int32_t _index; @@ -1378485,6 +1401010,21 @@ struct List_1_UnityEngine_Rendering_PostProcessing_ParameterOverride___Class { struct List_1_UnityEngine_Rendering_PostProcessing_ParameterOverride___VTable vtable; }; +struct WaveformMonitor___VTable { +}; + +struct WaveformMonitor___StaticFields { +}; + +struct WaveformMonitor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct WaveformMonitor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct WaveformMonitor___VTable vtable; +}; + struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Rendering_PostProcessing_MonitorType_UnityEngine_Rendering_PostProcessing_Monitor_ { struct Dictionary_2_UnityEngine_Rendering_PostProcessing_MonitorType_UnityEngine_Rendering_PostProcessing_Monitor_ *_dictionary; int32_t _version; @@ -1378526,6 +1401066,66 @@ struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Rendering_PostProcessing_ struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Rendering_PostProcessing_MonitorType_UnityEngine_Rendering_PostProcessing_Monitor___VTable vtable; }; +struct HistogramMonitor___VTable { +}; + +struct HistogramMonitor___StaticFields { +}; + +struct HistogramMonitor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HistogramMonitor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HistogramMonitor___VTable vtable; +}; + +struct LightMeterMonitor___VTable { +}; + +struct LightMeterMonitor___StaticFields { +}; + +struct LightMeterMonitor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct LightMeterMonitor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct LightMeterMonitor___VTable vtable; +}; + +struct PostProcessDebugLayer_OverlaySettings___VTable { +}; + +struct PostProcessDebugLayer_OverlaySettings___StaticFields { +}; + +struct PostProcessDebugLayer_OverlaySettings___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PostProcessDebugLayer_OverlaySettings___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PostProcessDebugLayer_OverlaySettings___VTable vtable; +}; + +struct VectorscopeMonitor___VTable { +}; + +struct VectorscopeMonitor___StaticFields { +}; + +struct VectorscopeMonitor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct VectorscopeMonitor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct VectorscopeMonitor___VTable vtable; +}; + struct IEnumerable_1_UnityEngine_Rendering_PostProcessing_ParameterOverride_ { struct IEnumerable_1_UnityEngine_Rendering_PostProcessing_ParameterOverride___Class *klass; MonitorData *monitor; @@ -1378586,6 +1401186,36 @@ struct Func_2_System_Reflection_FieldInfo_UnityEngine_Rendering_PostProcessing_P struct Func_2_System_Reflection_FieldInfo_UnityEngine_Rendering_PostProcessing_ParameterOverride___VTable vtable; }; +struct TaskAwaiter_1_Microsoft_MixedReality_OpenXR_SerializationCompletionReason__1__VTable { +}; + +struct TaskAwaiter_1_Microsoft_MixedReality_OpenXR_SerializationCompletionReason__1__StaticFields { +}; + +struct TaskAwaiter_1_Microsoft_MixedReality_OpenXR_SerializationCompletionReason__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TaskAwaiter_1_Microsoft_MixedReality_OpenXR_SerializationCompletionReason__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TaskAwaiter_1_Microsoft_MixedReality_OpenXR_SerializationCompletionReason__1__VTable vtable; +}; + +struct TaskAwaiter_1_Microsoft_MixedReality_OpenXR_OpenXRAnchorStore__1__VTable { +}; + +struct TaskAwaiter_1_Microsoft_MixedReality_OpenXR_OpenXRAnchorStore__1__StaticFields { +}; + +struct TaskAwaiter_1_Microsoft_MixedReality_OpenXR_OpenXRAnchorStore__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TaskAwaiter_1_Microsoft_MixedReality_OpenXR_OpenXRAnchorStore__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TaskAwaiter_1_Microsoft_MixedReality_OpenXR_OpenXRAnchorStore__1__VTable vtable; +}; + struct PerceptionInterop { struct PerceptionInterop__Class *klass; MonitorData *monitor; @@ -1378742,6 +1401372,21 @@ struct IMicrophoneDeviceList__Class { struct IMicrophoneDeviceList__VTable vtable; }; +struct IMicrophoneDeviceList___VTable { +}; + +struct IMicrophoneDeviceList___StaticFields { +}; + +struct IMicrophoneDeviceList___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IMicrophoneDeviceList___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IMicrophoneDeviceList___VTable vtable; +}; + struct AudioPluginDissonanceNative { struct AudioPluginDissonanceNative__Class *klass; MonitorData *monitor; @@ -1378767,6 +1401412,36 @@ struct AudioPluginDissonanceNative__Class { struct AudioPluginDissonanceNative__VTable vtable; }; +struct IMicrophoneCapture___VTable { +}; + +struct IMicrophoneCapture___StaticFields { +}; + +struct IMicrophoneCapture___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IMicrophoneCapture___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IMicrophoneCapture___VTable vtable; +}; + +struct ICommsNetwork___VTable { +}; + +struct ICommsNetwork___StaticFields { +}; + +struct ICommsNetwork___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICommsNetwork___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICommsNetwork___VTable vtable; +}; + struct Metrics { struct Metrics__Class *klass; MonitorData *monitor; @@ -1378793,6 +1401468,36 @@ struct Metrics__Class { struct Metrics__VTable vtable; }; +struct MuscleDisconnectMode___VTable { +}; + +struct MuscleDisconnectMode___StaticFields { +}; + +struct MuscleDisconnectMode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MuscleDisconnectMode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MuscleDisconnectMode___VTable vtable; +}; + +struct Muscle___VTable { +}; + +struct Muscle___StaticFields { +}; + +struct Muscle___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Muscle___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Muscle___VTable vtable; +}; + struct List_1_T_Enumerator_RootMotion_SolverManager_ { struct List_1_RootMotion_SolverManager_ *_list; int32_t _index; @@ -1378830,6 +1401535,21 @@ struct List_1_T_Enumerator_RootMotion_SolverManager___Class { struct List_1_T_Enumerator_RootMotion_SolverManager___VTable vtable; }; +struct PropMuscle___VTable { +}; + +struct PropMuscle___StaticFields { +}; + +struct PropMuscle___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PropMuscle___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PropMuscle___VTable vtable; +}; + struct IEnumerable_1_RootMotion_SolverManager_ { struct IEnumerable_1_RootMotion_SolverManager___Class *klass; MonitorData *monitor; @@ -1379484,6 +1402204,21 @@ struct ChallengeResponse2__Class { struct ChallengeResponse2__VTable vtable; }; +struct RenderGraph_ProfilingScopePassData___VTable { +}; + +struct RenderGraph_ProfilingScopePassData___StaticFields { +}; + +struct RenderGraph_ProfilingScopePassData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RenderGraph_ProfilingScopePassData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RenderGraph_ProfilingScopePassData___VTable vtable; +}; + struct RenderGraphDebugParams_Strings { struct RenderGraphDebugParams_Strings__Class *klass; MonitorData *monitor; @@ -1380277,6 +1403012,19 @@ struct BandwidthExtensions__Class { struct BandwidthExtensions__VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_Dissonance_Audio_Playback_FrameFormat_Dissonance_Datastructures_ConcurrentPool_1_ { + int32_t hashCode; + int32_t next; + struct FrameFormat key; + struct ConcurrentPool_1_Dissonance_Audio_Playback_DecoderPipeline_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_Dissonance_Audio_Playback_FrameFormat_Dissonance_Datastructures_ConcurrentPool_1___Boxed { + struct Dictionary_2_TKey_TValue_Entry_Dissonance_Audio_Playback_FrameFormat_Dissonance_Datastructures_ConcurrentPool_1___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_Dissonance_Audio_Playback_FrameFormat_Dissonance_Datastructures_ConcurrentPool_1_ fields; +}; + struct __declspec(align(8)) Dictionary_2_Dissonance_Audio_Playback_FrameFormat_Dissonance_Datastructures_ConcurrentPool_1___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_Dissonance_Audio_Playback_FrameFormat_Dissonance_Datastructures_ConcurrentPool_1___Array *_entries; @@ -1380296,19 +1403044,6 @@ struct Dictionary_2_Dissonance_Audio_Playback_FrameFormat_Dissonance_Datastructu struct Dictionary_2_Dissonance_Audio_Playback_FrameFormat_Dissonance_Datastructures_ConcurrentPool_1___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_Dissonance_Audio_Playback_FrameFormat_Dissonance_Datastructures_ConcurrentPool_1_ { - int32_t hashCode; - int32_t next; - struct FrameFormat key; - struct ConcurrentPool_1_Dissonance_Audio_Playback_DecoderPipeline_ *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_Dissonance_Audio_Playback_FrameFormat_Dissonance_Datastructures_ConcurrentPool_1___Boxed { - struct Dictionary_2_TKey_TValue_Entry_Dissonance_Audio_Playback_FrameFormat_Dissonance_Datastructures_ConcurrentPool_1___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_Dissonance_Audio_Playback_FrameFormat_Dissonance_Datastructures_ConcurrentPool_1_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_Dissonance_Audio_Playback_FrameFormat_Dissonance_Datastructures_ConcurrentPool_1___Array { struct Dictionary_2_TKey_TValue_Entry_Dissonance_Audio_Playback_FrameFormat_Dissonance_Datastructures_ConcurrentPool_1___Array__Class *klass; MonitorData *monitor; @@ -1380537,6 +1403272,21 @@ struct ICollection_1_Dissonance_Datastructures_ConcurrentPool_1___Class { struct ICollection_1_Dissonance_Datastructures_ConcurrentPool_1___VTable vtable; }; +struct ConcurrentPool_1_Dissonance_Audio_Playback_DecoderPipeline__1__VTable { +}; + +struct ConcurrentPool_1_Dissonance_Audio_Playback_DecoderPipeline__1__StaticFields { +}; + +struct ConcurrentPool_1_Dissonance_Audio_Playback_DecoderPipeline__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ConcurrentPool_1_Dissonance_Audio_Playback_DecoderPipeline__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ConcurrentPool_1_Dissonance_Audio_Playback_DecoderPipeline__1__VTable vtable; +}; + struct KeyValuePair_2_Dissonance_Audio_Playback_FrameFormat_Dissonance_Datastructures_ConcurrentPool_1___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1380688,6 +1403438,36 @@ struct DecoderPipelinePool__Class { struct DecoderPipelinePool__VTable vtable; }; +struct FrameSize___VTable { +}; + +struct FrameSize___StaticFields { +}; + +struct FrameSize___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct FrameSize___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct FrameSize___VTable vtable; +}; + +struct AudioQuality___VTable { +}; + +struct AudioQuality___StaticFields { +}; + +struct AudioQuality___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct AudioQuality___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct AudioQuality___VTable vtable; +}; + struct NormalizationTableUtil { struct NormalizationTableUtil__Class *klass; MonitorData *monitor; @@ -1381144,6 +1403924,36 @@ struct DependencyInjector__Class { struct DependencyInjector__VTable vtable; }; +struct Func_5_System_Linq_Expressions_Expression_String_Boolean_System_Collections_ObjectModel_ReadOnlyCollection_1_System_Linq_Expressions_LambdaExpression__1__VTable { +}; + +struct Func_5_System_Linq_Expressions_Expression_String_Boolean_System_Collections_ObjectModel_ReadOnlyCollection_1_System_Linq_Expressions_LambdaExpression__1__StaticFields { +}; + +struct Func_5_System_Linq_Expressions_Expression_String_Boolean_System_Collections_ObjectModel_ReadOnlyCollection_1_System_Linq_Expressions_LambdaExpression__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_5_System_Linq_Expressions_Expression_String_Boolean_System_Collections_ObjectModel_ReadOnlyCollection_1_System_Linq_Expressions_LambdaExpression__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_5_System_Linq_Expressions_Expression_String_Boolean_System_Collections_ObjectModel_ReadOnlyCollection_1_System_Linq_Expressions_LambdaExpression__1__VTable vtable; +}; + +struct MethodInfo___VTable { +}; + +struct MethodInfo___StaticFields { +}; + +struct MethodInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MethodInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MethodInfo___VTable vtable; +}; + struct __declspec(align(8)) Expression_ExtensionInfo__Fields { #if defined(_CPLUSPLUS_) ExpressionType__Enum_1 NodeType; @@ -1381178,6 +1403988,21 @@ struct Expression_ExtensionInfo__Class { struct Expression_ExtensionInfo__VTable vtable; }; +struct Expression_ExtensionInfo___VTable { +}; + +struct Expression_ExtensionInfo___StaticFields { +}; + +struct Expression_ExtensionInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Expression_ExtensionInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Expression_ExtensionInfo___VTable vtable; +}; + struct IReadOnlyCollection_1_System_Linq_Expressions_Expression_ { struct IReadOnlyCollection_1_System_Linq_Expressions_Expression___Class *klass; MonitorData *monitor; @@ -1381459,17 +1404284,6 @@ struct TypeExtensions { MonitorData *monitor; }; -struct __declspec(align(8)) CacheDict_2_System_Reflection_MethodBase_System_Reflection_ParameterInfo___Fields { - int32_t _mask; - struct CacheDict_2_TKey_TValue_Entry_System_Reflection_MethodBase_System_Reflection_ParameterInfo___Array *_entries; -}; - -struct CacheDict_2_System_Reflection_MethodBase_System_Reflection_ParameterInfo_ { - struct CacheDict_2_System_Reflection_MethodBase_System_Reflection_ParameterInfo___Class *klass; - MonitorData *monitor; - struct CacheDict_2_System_Reflection_MethodBase_System_Reflection_ParameterInfo___Fields fields; -}; - struct __declspec(align(8)) CacheDict_2_TKey_TValue_Entry_System_Reflection_MethodBase_System_Reflection_ParameterInfo___Fields { int32_t _hash; struct MethodBase *_key; @@ -1381482,6 +1404296,17 @@ struct CacheDict_2_TKey_TValue_Entry_System_Reflection_MethodBase_System_Reflect struct CacheDict_2_TKey_TValue_Entry_System_Reflection_MethodBase_System_Reflection_ParameterInfo___Fields fields; }; +struct __declspec(align(8)) CacheDict_2_System_Reflection_MethodBase_System_Reflection_ParameterInfo___Fields { + int32_t _mask; + struct CacheDict_2_TKey_TValue_Entry_System_Reflection_MethodBase_System_Reflection_ParameterInfo___Array *_entries; +}; + +struct CacheDict_2_System_Reflection_MethodBase_System_Reflection_ParameterInfo_ { + struct CacheDict_2_System_Reflection_MethodBase_System_Reflection_ParameterInfo___Class *klass; + MonitorData *monitor; + struct CacheDict_2_System_Reflection_MethodBase_System_Reflection_ParameterInfo___Fields fields; +}; + struct CacheDict_2_TKey_TValue_Entry_System_Reflection_MethodBase_System_Reflection_ParameterInfo___Array { struct CacheDict_2_TKey_TValue_Entry_System_Reflection_MethodBase_System_Reflection_ParameterInfo___Array__Class *klass; MonitorData *monitor; @@ -1382085,6 +1404910,51 @@ struct IList_1_System_ValueTuple_2__8__Class { struct IList_1_System_ValueTuple_2__8__VTable vtable; }; +struct RTHandle__1__VTable { +}; + +struct RTHandle__1__StaticFields { +}; + +struct RTHandle__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RTHandle__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RTHandle__1__VTable vtable; +}; + +struct ComputeBufferResource___VTable { +}; + +struct ComputeBufferResource___StaticFields { +}; + +struct ComputeBufferResource___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ComputeBufferResource___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ComputeBufferResource___VTable vtable; +}; + +struct TextureResource___VTable { +}; + +struct TextureResource___StaticFields { +}; + +struct TextureResource___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TextureResource___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TextureResource___VTable vtable; +}; + struct Normalization { struct Normalization__Class *klass; MonitorData *monitor; @@ -1382866,6 +1405736,21 @@ struct IReadOnlyList_1_System_Linq_Expressions_CatchBlock_ { MonitorData *monitor; }; +struct IEnumerable_1_System_Linq_Expressions_CatchBlock__1__VTable { +}; + +struct IEnumerable_1_System_Linq_Expressions_CatchBlock__1__StaticFields { +}; + +struct IEnumerable_1_System_Linq_Expressions_CatchBlock__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_System_Linq_Expressions_CatchBlock__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_System_Linq_Expressions_CatchBlock__1__VTable vtable; +}; + struct IReadOnlyList_1_System_Linq_Expressions_CatchBlock___VTable { VirtualInvokeData get_Item; }; @@ -1382990,6 +1405875,21 @@ struct PrimitiveParameterExpression_1_System_Exception___Class { struct PrimitiveParameterExpression_1_System_Exception___VTable vtable; }; +struct IEnumerable_1_System_Linq_Expressions_Expression__1__VTable { +}; + +struct IEnumerable_1_System_Linq_Expressions_Expression__1__StaticFields { +}; + +struct IEnumerable_1_System_Linq_Expressions_Expression__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_System_Linq_Expressions_Expression__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_System_Linq_Expressions_Expression__1__VTable vtable; +}; + struct HashSet_1_T_Enumerator_UnityEngine_Rendering_RTHandle_ { struct HashSet_1_UnityEngine_Rendering_RTHandle_ *_set; int32_t _index; @@ -1383171,6 +1406071,18 @@ struct DebuggerSupport { MonitorData *monitor; }; +struct __declspec(align(8)) LowLevelDictionary_2_TKey_TValue_Entry_System_Int32_System_Threading_Tasks_Task___Fields { + int32_t _key; + struct Task *_value; + struct LowLevelDictionary_2_TKey_TValue_Entry_System_Int32_System_Threading_Tasks_Task_ *_next; +}; + +struct LowLevelDictionary_2_TKey_TValue_Entry_System_Int32_System_Threading_Tasks_Task_ { + struct LowLevelDictionary_2_TKey_TValue_Entry_System_Int32_System_Threading_Tasks_Task___Class *klass; + MonitorData *monitor; + struct LowLevelDictionary_2_TKey_TValue_Entry_System_Int32_System_Threading_Tasks_Task___Fields fields; +}; + struct __declspec(align(8)) LowLevelDictionary_2_System_Int32_System_Threading_Tasks_Task___Fields { struct LowLevelDictionary_2_TKey_TValue_Entry_System_Int32_System_Threading_Tasks_Task___Array *_buckets; int32_t _numEntries; @@ -1383184,18 +1406096,6 @@ struct LowLevelDictionary_2_System_Int32_System_Threading_Tasks_Task_ { struct LowLevelDictionary_2_System_Int32_System_Threading_Tasks_Task___Fields fields; }; -struct __declspec(align(8)) LowLevelDictionary_2_TKey_TValue_Entry_System_Int32_System_Threading_Tasks_Task___Fields { - int32_t _key; - struct Task *_value; - struct LowLevelDictionary_2_TKey_TValue_Entry_System_Int32_System_Threading_Tasks_Task_ *_next; -}; - -struct LowLevelDictionary_2_TKey_TValue_Entry_System_Int32_System_Threading_Tasks_Task_ { - struct LowLevelDictionary_2_TKey_TValue_Entry_System_Int32_System_Threading_Tasks_Task___Class *klass; - MonitorData *monitor; - struct LowLevelDictionary_2_TKey_TValue_Entry_System_Int32_System_Threading_Tasks_Task___Fields fields; -}; - struct LowLevelDictionary_2_TKey_TValue_Entry_System_Int32_System_Threading_Tasks_Task___Array { struct LowLevelDictionary_2_TKey_TValue_Entry_System_Int32_System_Threading_Tasks_Task___Array__Class *klass; MonitorData *monitor; @@ -1383475,6 +1406375,51 @@ struct Utils_1__Class { struct Utils_1__VTable vtable; }; +struct IReadOnlyList_1_System_Linq_Expressions_ParameterExpression__1__VTable { +}; + +struct IReadOnlyList_1_System_Linq_Expressions_ParameterExpression__1__StaticFields { +}; + +struct IReadOnlyList_1_System_Linq_Expressions_ParameterExpression__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IReadOnlyList_1_System_Linq_Expressions_ParameterExpression__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IReadOnlyList_1_System_Linq_Expressions_ParameterExpression__1__VTable vtable; +}; + +struct IReadOnlyList_1_System_Linq_Expressions_Expression__1__VTable { +}; + +struct IReadOnlyList_1_System_Linq_Expressions_Expression__1__StaticFields { +}; + +struct IReadOnlyList_1_System_Linq_Expressions_Expression__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IReadOnlyList_1_System_Linq_Expressions_Expression__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IReadOnlyList_1_System_Linq_Expressions_Expression__1__VTable vtable; +}; + +struct SemaphoreSlim___VTable { +}; + +struct SemaphoreSlim___StaticFields { +}; + +struct SemaphoreSlim___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SemaphoreSlim___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SemaphoreSlim___VTable vtable; +}; + struct EmptyArray_1_Char_ { struct EmptyArray_1_Char___Class *klass; MonitorData *monitor; @@ -1383558,6 +1406503,19 @@ struct EncodingTable { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Globalization_CodePageDataItem_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct CodePageDataItem *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Globalization_CodePageDataItem___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Globalization_CodePageDataItem___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Globalization_CodePageDataItem_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int32_System_Globalization_CodePageDataItem___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Globalization_CodePageDataItem___Array *_entries; @@ -1383577,19 +1406535,6 @@ struct Dictionary_2_System_Int32_System_Globalization_CodePageDataItem_ { struct Dictionary_2_System_Int32_System_Globalization_CodePageDataItem___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Globalization_CodePageDataItem_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct CodePageDataItem *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Globalization_CodePageDataItem___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Globalization_CodePageDataItem___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Globalization_CodePageDataItem_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Globalization_CodePageDataItem___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int32_System_Globalization_CodePageDataItem___Array__Class *klass; MonitorData *monitor; @@ -1383818,6 +1406763,21 @@ struct ICollection_1_System_Globalization_CodePageDataItem___Class { struct ICollection_1_System_Globalization_CodePageDataItem___VTable vtable; }; +struct CodePageDataItem___VTable { +}; + +struct CodePageDataItem___StaticFields { +}; + +struct CodePageDataItem___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CodePageDataItem___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CodePageDataItem___VTable vtable; +}; + struct KeyValuePair_2_System_Int32_System_Globalization_CodePageDataItem___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1384042,6 +1407002,19 @@ struct AbilityBuilder { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_RequireComponent_ { + int32_t hashCode; + int32_t next; + struct Type *key; + struct RequireComponent__Array *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_RequireComponent___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_RequireComponent___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_RequireComponent_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Type_UnityEngine_RequireComponent___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_RequireComponent___Array *_entries; @@ -1384061,19 +1407034,6 @@ struct Dictionary_2_System_Type_UnityEngine_RequireComponent_ { struct Dictionary_2_System_Type_UnityEngine_RequireComponent___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_RequireComponent_ { - int32_t hashCode; - int32_t next; - struct Type *key; - struct RequireComponent__Array *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_RequireComponent___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_RequireComponent___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_RequireComponent_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_RequireComponent___Array { struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_RequireComponent___Array__Class *klass; MonitorData *monitor; @@ -1384149,6 +1407109,19 @@ struct IEnumerable_1_UnityEngine_RequireComponent_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultInputName_ { + int32_t hashCode; + int32_t next; + struct Type *key; + struct DefaultInputName__Array *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultInputName___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultInputName___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultInputName_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultInputName___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultInputName___Array *_entries; @@ -1384168,19 +1407141,6 @@ struct Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abi struct Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultInputName___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultInputName_ { - int32_t hashCode; - int32_t next; - struct Type *key; - struct DefaultInputName__Array *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultInputName___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultInputName___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultInputName_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultInputName___Array { struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultInputName___Array__Class *klass; MonitorData *monitor; @@ -1384256,6 +1407216,19 @@ struct IEnumerable_1_Opsive_UltimateCharacterController_Character_Abilities_Defa MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultStartType_ { + int32_t hashCode; + int32_t next; + struct Type *key; + struct DefaultStartType *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultStartType___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultStartType___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultStartType_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultStartType___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultStartType___Array *_entries; @@ -1384275,19 +1407248,6 @@ struct Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abi struct Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultStartType___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultStartType_ { - int32_t hashCode; - int32_t next; - struct Type *key; - struct DefaultStartType *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultStartType___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultStartType___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultStartType_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultStartType___Array { struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultStartType___Array__Class *klass; MonitorData *monitor; @@ -1384363,6 +1407323,19 @@ struct IEnumerable_1_Opsive_UltimateCharacterController_Character_Abilities_Defa MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultStopType_ { + int32_t hashCode; + int32_t next; + struct Type *key; + struct DefaultStopType *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultStopType___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultStopType___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultStopType_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultStopType___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultStopType___Array *_entries; @@ -1384382,19 +1407355,6 @@ struct Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abi struct Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultStopType___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultStopType_ { - int32_t hashCode; - int32_t next; - struct Type *key; - struct DefaultStopType *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultStopType___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultStopType___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultStopType_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultStopType___Array { struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultStopType___Array__Class *klass; MonitorData *monitor; @@ -1384470,6 +1407430,19 @@ struct IEnumerable_1_Opsive_UltimateCharacterController_Character_Abilities_Defa MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAbilityIndex_ { + int32_t hashCode; + int32_t next; + struct Type *key; + struct DefaultAbilityIndex *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAbilityIndex___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAbilityIndex___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAbilityIndex_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAbilityIndex___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAbilityIndex___Array *_entries; @@ -1384489,19 +1407462,6 @@ struct Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abi struct Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAbilityIndex___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAbilityIndex_ { - int32_t hashCode; - int32_t next; - struct Type *key; - struct DefaultAbilityIndex *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAbilityIndex___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAbilityIndex___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAbilityIndex_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAbilityIndex___Array { struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAbilityIndex___Array__Class *klass; MonitorData *monitor; @@ -1384577,6 +1407537,19 @@ struct IEnumerable_1_Opsive_UltimateCharacterController_Character_Abilities_Defa MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAbilityIntData_ { + int32_t hashCode; + int32_t next; + struct Type *key; + struct DefaultAbilityIntData *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAbilityIntData___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAbilityIntData___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAbilityIntData_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAbilityIntData___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAbilityIntData___Array *_entries; @@ -1384596,19 +1407569,6 @@ struct Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abi struct Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAbilityIntData___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAbilityIntData_ { - int32_t hashCode; - int32_t next; - struct Type *key; - struct DefaultAbilityIntData *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAbilityIntData___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAbilityIntData___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAbilityIntData_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAbilityIntData___Array { struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAbilityIntData___Array__Class *klass; MonitorData *monitor; @@ -1384684,6 +1407644,19 @@ struct IEnumerable_1_Opsive_UltimateCharacterController_Character_Abilities_Defa MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultItemStateIndex_ { + int32_t hashCode; + int32_t next; + struct Type *key; + struct DefaultItemStateIndex *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultItemStateIndex___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultItemStateIndex___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultItemStateIndex_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultItemStateIndex___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultItemStateIndex___Array *_entries; @@ -1384703,19 +1407676,6 @@ struct Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abi struct Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultItemStateIndex___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultItemStateIndex_ { - int32_t hashCode; - int32_t next; - struct Type *key; - struct DefaultItemStateIndex *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultItemStateIndex___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultItemStateIndex___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultItemStateIndex_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultItemStateIndex___Array { struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultItemStateIndex___Array__Class *klass; MonitorData *monitor; @@ -1384791,6 +1407751,19 @@ struct IEnumerable_1_Opsive_UltimateCharacterController_Character_Abilities_Defa MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultState_ { + int32_t hashCode; + int32_t next; + struct Type *key; + struct DefaultState *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultState___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultState___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultState_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultState___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultState___Array *_entries; @@ -1384810,19 +1407783,6 @@ struct Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abi struct Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultState___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultState_ { - int32_t hashCode; - int32_t next; - struct Type *key; - struct DefaultState *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultState___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultState___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultState_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultState___Array { struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultState___Array__Class *klass; MonitorData *monitor; @@ -1384898,6 +1407858,19 @@ struct IEnumerable_1_Opsive_UltimateCharacterController_Character_Abilities_Defa MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAllowPositionalInput_ { + int32_t hashCode; + int32_t next; + struct Type *key; + struct DefaultAllowPositionalInput *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAllowPositionalInput___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAllowPositionalInput___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAllowPositionalInput_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAllowPositionalInput___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAllowPositionalInput___Array *_entries; @@ -1384917,19 +1407890,6 @@ struct Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abi struct Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAllowPositionalInput___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAllowPositionalInput_ { - int32_t hashCode; - int32_t next; - struct Type *key; - struct DefaultAllowPositionalInput *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAllowPositionalInput___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAllowPositionalInput___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAllowPositionalInput_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAllowPositionalInput___Array { struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAllowPositionalInput___Array__Class *klass; MonitorData *monitor; @@ -1385005,6 +1407965,19 @@ struct IEnumerable_1_Opsive_UltimateCharacterController_Character_Abilities_Defa MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAllowRotationalInput_ { + int32_t hashCode; + int32_t next; + struct Type *key; + struct DefaultAllowRotationalInput *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAllowRotationalInput___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAllowRotationalInput___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAllowRotationalInput_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAllowRotationalInput___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAllowRotationalInput___Array *_entries; @@ -1385024,19 +1407997,6 @@ struct Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abi struct Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAllowRotationalInput___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAllowRotationalInput_ { - int32_t hashCode; - int32_t next; - struct Type *key; - struct DefaultAllowRotationalInput *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAllowRotationalInput___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAllowRotationalInput___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAllowRotationalInput_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAllowRotationalInput___Array { struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAllowRotationalInput___Array__Class *klass; MonitorData *monitor; @@ -1385112,6 +1408072,19 @@ struct IEnumerable_1_Opsive_UltimateCharacterController_Character_Abilities_Defa MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseGravity_ { + int32_t hashCode; + int32_t next; + struct Type *key; + struct DefaultUseGravity *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseGravity___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseGravity___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseGravity_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseGravity___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseGravity___Array *_entries; @@ -1385131,19 +1408104,6 @@ struct Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abi struct Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseGravity___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseGravity_ { - int32_t hashCode; - int32_t next; - struct Type *key; - struct DefaultUseGravity *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseGravity___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseGravity___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseGravity_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseGravity___Array { struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseGravity___Array__Class *klass; MonitorData *monitor; @@ -1385219,6 +1408179,19 @@ struct IEnumerable_1_Opsive_UltimateCharacterController_Character_Abilities_Defa MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseRootMotionPosition_ { + int32_t hashCode; + int32_t next; + struct Type *key; + struct DefaultUseRootMotionPosition *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseRootMotionPosition___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseRootMotionPosition___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseRootMotionPosition_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseRootMotionPosition___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseRootMotionPosition___Array *_entries; @@ -1385238,19 +1408211,6 @@ struct Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abi struct Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseRootMotionPosition___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseRootMotionPosition_ { - int32_t hashCode; - int32_t next; - struct Type *key; - struct DefaultUseRootMotionPosition *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseRootMotionPosition___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseRootMotionPosition___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseRootMotionPosition_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseRootMotionPosition___Array { struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseRootMotionPosition___Array__Class *klass; MonitorData *monitor; @@ -1385326,6 +1408286,19 @@ struct IEnumerable_1_Opsive_UltimateCharacterController_Character_Abilities_Defa MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseRootMotionRotation_ { + int32_t hashCode; + int32_t next; + struct Type *key; + struct DefaultUseRootMotionRotation *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseRootMotionRotation___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseRootMotionRotation___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseRootMotionRotation_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseRootMotionRotation___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseRootMotionRotation___Array *_entries; @@ -1385345,19 +1408318,6 @@ struct Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abi struct Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseRootMotionRotation___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseRootMotionRotation_ { - int32_t hashCode; - int32_t next; - struct Type *key; - struct DefaultUseRootMotionRotation *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseRootMotionRotation___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseRootMotionRotation___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseRootMotionRotation_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseRootMotionRotation___Array { struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseRootMotionRotation___Array__Class *klass; MonitorData *monitor; @@ -1385433,6 +1408393,19 @@ struct IEnumerable_1_Opsive_UltimateCharacterController_Character_Abilities_Defa MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultDetectHorizontalCollisions_ { + int32_t hashCode; + int32_t next; + struct Type *key; + struct DefaultDetectHorizontalCollisions *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultDetectHorizontalCollisions___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultDetectHorizontalCollisions___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultDetectHorizontalCollisions_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultDetectHorizontalCollisions___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultDetectHorizontalCollisions___Array *_entries; @@ -1385452,19 +1408425,6 @@ struct Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abi struct Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultDetectHorizontalCollisions___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultDetectHorizontalCollisions_ { - int32_t hashCode; - int32_t next; - struct Type *key; - struct DefaultDetectHorizontalCollisions *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultDetectHorizontalCollisions___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultDetectHorizontalCollisions___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultDetectHorizontalCollisions_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultDetectHorizontalCollisions___Array { struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultDetectHorizontalCollisions___Array__Class *klass; MonitorData *monitor; @@ -1385540,6 +1408500,19 @@ struct IEnumerable_1_Opsive_UltimateCharacterController_Character_Abilities_Defa MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultDetectVerticalCollisions_ { + int32_t hashCode; + int32_t next; + struct Type *key; + struct DefaultDetectVerticalCollisions *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultDetectVerticalCollisions___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultDetectVerticalCollisions___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultDetectVerticalCollisions_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultDetectVerticalCollisions___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultDetectVerticalCollisions___Array *_entries; @@ -1385559,19 +1408532,6 @@ struct Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abi struct Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultDetectVerticalCollisions___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultDetectVerticalCollisions_ { - int32_t hashCode; - int32_t next; - struct Type *key; - struct DefaultDetectVerticalCollisions *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultDetectVerticalCollisions___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultDetectVerticalCollisions___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultDetectVerticalCollisions_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultDetectVerticalCollisions___Array { struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultDetectVerticalCollisions___Array__Class *klass; MonitorData *monitor; @@ -1385647,6 +1408607,19 @@ struct IEnumerable_1_Opsive_UltimateCharacterController_Character_Abilities_Defa MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultObjectDetection_ { + int32_t hashCode; + int32_t next; + struct Type *key; + struct DefaultObjectDetection *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultObjectDetection___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultObjectDetection___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultObjectDetection_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultObjectDetection___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultObjectDetection___Array *_entries; @@ -1385666,19 +1408639,6 @@ struct Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abi struct Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultObjectDetection___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultObjectDetection_ { - int32_t hashCode; - int32_t next; - struct Type *key; - struct DefaultObjectDetection *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultObjectDetection___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultObjectDetection___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultObjectDetection_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultObjectDetection___Array { struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultObjectDetection___Array__Class *klass; MonitorData *monitor; @@ -1385754,6 +1408714,19 @@ struct IEnumerable_1_Opsive_UltimateCharacterController_Character_Abilities_Defa MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseLookDirection_ { + int32_t hashCode; + int32_t next; + struct Type *key; + struct DefaultUseLookDirection *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseLookDirection___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseLookDirection___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseLookDirection_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseLookDirection___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseLookDirection___Array *_entries; @@ -1385773,19 +1408746,6 @@ struct Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abi struct Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseLookDirection___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseLookDirection_ { - int32_t hashCode; - int32_t next; - struct Type *key; - struct DefaultUseLookDirection *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseLookDirection___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseLookDirection___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseLookDirection_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseLookDirection___Array { struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseLookDirection___Array__Class *klass; MonitorData *monitor; @@ -1385861,6 +1408821,19 @@ struct IEnumerable_1_Opsive_UltimateCharacterController_Character_Abilities_Defa MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultCastOffset_ { + int32_t hashCode; + int32_t next; + struct Type *key; + struct DefaultCastOffset *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultCastOffset___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultCastOffset___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultCastOffset_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultCastOffset___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultCastOffset___Array *_entries; @@ -1385880,19 +1408853,6 @@ struct Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abi struct Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultCastOffset___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultCastOffset_ { - int32_t hashCode; - int32_t next; - struct Type *key; - struct DefaultCastOffset *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultCastOffset___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultCastOffset___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultCastOffset_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultCastOffset___Array { struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultCastOffset___Array__Class *klass; MonitorData *monitor; @@ -1385968,6 +1408928,19 @@ struct IEnumerable_1_Opsive_UltimateCharacterController_Character_Abilities_Defa MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultEquippedSlots_ { + int32_t hashCode; + int32_t next; + struct Type *key; + struct DefaultEquippedSlots *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultEquippedSlots___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultEquippedSlots___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultEquippedSlots_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultEquippedSlots___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultEquippedSlots___Array *_entries; @@ -1385987,19 +1408960,6 @@ struct Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abi struct Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultEquippedSlots___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultEquippedSlots_ { - int32_t hashCode; - int32_t next; - struct Type *key; - struct DefaultEquippedSlots *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultEquippedSlots___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultEquippedSlots___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultEquippedSlots_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultEquippedSlots___Array { struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultEquippedSlots___Array__Class *klass; MonitorData *monitor; @@ -1386075,6 +1409035,19 @@ struct IEnumerable_1_Opsive_UltimateCharacterController_Character_Abilities_Defa MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultReequipSlots_ { + int32_t hashCode; + int32_t next; + struct Type *key; + struct DefaultReequipSlots *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultReequipSlots___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultReequipSlots___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultReequipSlots_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultReequipSlots___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultReequipSlots___Array *_entries; @@ -1386094,19 +1409067,6 @@ struct Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abi struct Dictionary_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultReequipSlots___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultReequipSlots_ { - int32_t hashCode; - int32_t next; - struct Type *key; - struct DefaultReequipSlots *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultReequipSlots___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultReequipSlots___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultReequipSlots_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultReequipSlots___Array { struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultReequipSlots___Array__Class *klass; MonitorData *monitor; @@ -1386182,6 +1409142,19 @@ struct IEnumerable_1_Opsive_UltimateCharacterController_Character_Abilities_Defa MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_StateSystem_AddState_ { + int32_t hashCode; + int32_t next; + struct Type *key; + struct AddState__Array *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_StateSystem_AddState___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_StateSystem_AddState___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_StateSystem_AddState_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Type_Opsive_UltimateCharacterController_StateSystem_AddState___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_StateSystem_AddState___Array *_entries; @@ -1386201,19 +1409174,6 @@ struct Dictionary_2_System_Type_Opsive_UltimateCharacterController_StateSystem_A struct Dictionary_2_System_Type_Opsive_UltimateCharacterController_StateSystem_AddState___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_StateSystem_AddState_ { - int32_t hashCode; - int32_t next; - struct Type *key; - struct AddState__Array *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_StateSystem_AddState___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_StateSystem_AddState___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_StateSystem_AddState_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_StateSystem_AddState___Array { struct Dictionary_2_TKey_TValue_Entry_System_Type_Opsive_UltimateCharacterController_StateSystem_AddState___Array__Class *klass; MonitorData *monitor; @@ -1386442,6 +1409402,21 @@ struct ICollection_1_UnityEngine_RequireComponent___Class { struct ICollection_1_UnityEngine_RequireComponent___VTable vtable; }; +struct RequireComponent___VTable { +}; + +struct RequireComponent___StaticFields { +}; + +struct RequireComponent___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RequireComponent___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RequireComponent___VTable vtable; +}; + struct KeyValuePair_2_System_Type_UnityEngine_RequireComponent___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1386720,6 +1409695,21 @@ struct ICollection_1_Opsive_UltimateCharacterController_Character_Abilities_Defa struct ICollection_1_Opsive_UltimateCharacterController_Character_Abilities_DefaultInputName___VTable vtable; }; +struct DefaultInputName___VTable { +}; + +struct DefaultInputName___StaticFields { +}; + +struct DefaultInputName___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DefaultInputName___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DefaultInputName___VTable vtable; +}; + struct KeyValuePair_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultInputName___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1386998,6 +1409988,21 @@ struct ICollection_1_Opsive_UltimateCharacterController_Character_Abilities_Defa struct ICollection_1_Opsive_UltimateCharacterController_Character_Abilities_DefaultStartType___VTable vtable; }; +struct DefaultStartType___VTable { +}; + +struct DefaultStartType___StaticFields { +}; + +struct DefaultStartType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DefaultStartType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DefaultStartType___VTable vtable; +}; + struct KeyValuePair_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultStartType___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1387276,6 +1410281,21 @@ struct ICollection_1_Opsive_UltimateCharacterController_Character_Abilities_Defa struct ICollection_1_Opsive_UltimateCharacterController_Character_Abilities_DefaultStopType___VTable vtable; }; +struct DefaultStopType___VTable { +}; + +struct DefaultStopType___StaticFields { +}; + +struct DefaultStopType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DefaultStopType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DefaultStopType___VTable vtable; +}; + struct KeyValuePair_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultStopType___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1387554,6 +1410574,21 @@ struct ICollection_1_Opsive_UltimateCharacterController_Character_Abilities_Defa struct ICollection_1_Opsive_UltimateCharacterController_Character_Abilities_DefaultAbilityIndex___VTable vtable; }; +struct DefaultAbilityIndex___VTable { +}; + +struct DefaultAbilityIndex___StaticFields { +}; + +struct DefaultAbilityIndex___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DefaultAbilityIndex___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DefaultAbilityIndex___VTable vtable; +}; + struct KeyValuePair_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAbilityIndex___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1387832,6 +1410867,21 @@ struct ICollection_1_Opsive_UltimateCharacterController_Character_Abilities_Defa struct ICollection_1_Opsive_UltimateCharacterController_Character_Abilities_DefaultAbilityIntData___VTable vtable; }; +struct DefaultAbilityIntData___VTable { +}; + +struct DefaultAbilityIntData___StaticFields { +}; + +struct DefaultAbilityIntData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DefaultAbilityIntData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DefaultAbilityIntData___VTable vtable; +}; + struct KeyValuePair_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAbilityIntData___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1388110,6 +1411160,21 @@ struct ICollection_1_Opsive_UltimateCharacterController_Character_Abilities_Defa struct ICollection_1_Opsive_UltimateCharacterController_Character_Abilities_DefaultItemStateIndex___VTable vtable; }; +struct DefaultItemStateIndex___VTable { +}; + +struct DefaultItemStateIndex___StaticFields { +}; + +struct DefaultItemStateIndex___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DefaultItemStateIndex___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DefaultItemStateIndex___VTable vtable; +}; + struct KeyValuePair_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultItemStateIndex___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1388388,6 +1411453,21 @@ struct ICollection_1_Opsive_UltimateCharacterController_Character_Abilities_Defa struct ICollection_1_Opsive_UltimateCharacterController_Character_Abilities_DefaultState___VTable vtable; }; +struct DefaultState___VTable { +}; + +struct DefaultState___StaticFields { +}; + +struct DefaultState___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DefaultState___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DefaultState___VTable vtable; +}; + struct KeyValuePair_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultState___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1388666,6 +1411746,21 @@ struct ICollection_1_Opsive_UltimateCharacterController_Character_Abilities_Defa struct ICollection_1_Opsive_UltimateCharacterController_Character_Abilities_DefaultAllowPositionalInput___VTable vtable; }; +struct DefaultAllowPositionalInput___VTable { +}; + +struct DefaultAllowPositionalInput___StaticFields { +}; + +struct DefaultAllowPositionalInput___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DefaultAllowPositionalInput___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DefaultAllowPositionalInput___VTable vtable; +}; + struct KeyValuePair_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAllowPositionalInput___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1388944,6 +1412039,21 @@ struct ICollection_1_Opsive_UltimateCharacterController_Character_Abilities_Defa struct ICollection_1_Opsive_UltimateCharacterController_Character_Abilities_DefaultAllowRotationalInput___VTable vtable; }; +struct DefaultAllowRotationalInput___VTable { +}; + +struct DefaultAllowRotationalInput___StaticFields { +}; + +struct DefaultAllowRotationalInput___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DefaultAllowRotationalInput___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DefaultAllowRotationalInput___VTable vtable; +}; + struct KeyValuePair_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultAllowRotationalInput___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1389222,6 +1412332,21 @@ struct ICollection_1_Opsive_UltimateCharacterController_Character_Abilities_Defa struct ICollection_1_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseGravity___VTable vtable; }; +struct DefaultUseGravity___VTable { +}; + +struct DefaultUseGravity___StaticFields { +}; + +struct DefaultUseGravity___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DefaultUseGravity___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DefaultUseGravity___VTable vtable; +}; + struct KeyValuePair_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseGravity___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1389500,6 +1412625,21 @@ struct ICollection_1_Opsive_UltimateCharacterController_Character_Abilities_Defa struct ICollection_1_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseRootMotionPosition___VTable vtable; }; +struct DefaultUseRootMotionPosition___VTable { +}; + +struct DefaultUseRootMotionPosition___StaticFields { +}; + +struct DefaultUseRootMotionPosition___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DefaultUseRootMotionPosition___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DefaultUseRootMotionPosition___VTable vtable; +}; + struct KeyValuePair_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseRootMotionPosition___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1389778,6 +1412918,21 @@ struct ICollection_1_Opsive_UltimateCharacterController_Character_Abilities_Defa struct ICollection_1_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseRootMotionRotation___VTable vtable; }; +struct DefaultUseRootMotionRotation___VTable { +}; + +struct DefaultUseRootMotionRotation___StaticFields { +}; + +struct DefaultUseRootMotionRotation___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DefaultUseRootMotionRotation___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DefaultUseRootMotionRotation___VTable vtable; +}; + struct KeyValuePair_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseRootMotionRotation___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1390056,6 +1413211,21 @@ struct ICollection_1_Opsive_UltimateCharacterController_Character_Abilities_Defa struct ICollection_1_Opsive_UltimateCharacterController_Character_Abilities_DefaultDetectHorizontalCollisions___VTable vtable; }; +struct DefaultDetectHorizontalCollisions___VTable { +}; + +struct DefaultDetectHorizontalCollisions___StaticFields { +}; + +struct DefaultDetectHorizontalCollisions___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DefaultDetectHorizontalCollisions___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DefaultDetectHorizontalCollisions___VTable vtable; +}; + struct KeyValuePair_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultDetectHorizontalCollisions___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1390334,6 +1413504,21 @@ struct ICollection_1_Opsive_UltimateCharacterController_Character_Abilities_Defa struct ICollection_1_Opsive_UltimateCharacterController_Character_Abilities_DefaultDetectVerticalCollisions___VTable vtable; }; +struct DefaultDetectVerticalCollisions___VTable { +}; + +struct DefaultDetectVerticalCollisions___StaticFields { +}; + +struct DefaultDetectVerticalCollisions___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DefaultDetectVerticalCollisions___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DefaultDetectVerticalCollisions___VTable vtable; +}; + struct KeyValuePair_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultDetectVerticalCollisions___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1390612,6 +1413797,21 @@ struct ICollection_1_Opsive_UltimateCharacterController_Character_Abilities_Defa struct ICollection_1_Opsive_UltimateCharacterController_Character_Abilities_DefaultObjectDetection___VTable vtable; }; +struct DefaultObjectDetection___VTable { +}; + +struct DefaultObjectDetection___StaticFields { +}; + +struct DefaultObjectDetection___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DefaultObjectDetection___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DefaultObjectDetection___VTable vtable; +}; + struct KeyValuePair_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultObjectDetection___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1390890,6 +1414090,21 @@ struct ICollection_1_Opsive_UltimateCharacterController_Character_Abilities_Defa struct ICollection_1_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseLookDirection___VTable vtable; }; +struct DefaultUseLookDirection___VTable { +}; + +struct DefaultUseLookDirection___StaticFields { +}; + +struct DefaultUseLookDirection___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DefaultUseLookDirection___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DefaultUseLookDirection___VTable vtable; +}; + struct KeyValuePair_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultUseLookDirection___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1391168,6 +1414383,21 @@ struct ICollection_1_Opsive_UltimateCharacterController_Character_Abilities_Defa struct ICollection_1_Opsive_UltimateCharacterController_Character_Abilities_DefaultCastOffset___VTable vtable; }; +struct DefaultCastOffset___VTable { +}; + +struct DefaultCastOffset___StaticFields { +}; + +struct DefaultCastOffset___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DefaultCastOffset___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DefaultCastOffset___VTable vtable; +}; + struct KeyValuePair_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultCastOffset___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1391446,6 +1414676,21 @@ struct ICollection_1_Opsive_UltimateCharacterController_Character_Abilities_Defa struct ICollection_1_Opsive_UltimateCharacterController_Character_Abilities_DefaultEquippedSlots___VTable vtable; }; +struct DefaultEquippedSlots___VTable { +}; + +struct DefaultEquippedSlots___StaticFields { +}; + +struct DefaultEquippedSlots___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DefaultEquippedSlots___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DefaultEquippedSlots___VTable vtable; +}; + struct KeyValuePair_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultEquippedSlots___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1391724,6 +1414969,21 @@ struct ICollection_1_Opsive_UltimateCharacterController_Character_Abilities_Defa struct ICollection_1_Opsive_UltimateCharacterController_Character_Abilities_DefaultReequipSlots___VTable vtable; }; +struct DefaultReequipSlots___VTable { +}; + +struct DefaultReequipSlots___StaticFields { +}; + +struct DefaultReequipSlots___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DefaultReequipSlots___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DefaultReequipSlots___VTable vtable; +}; + struct KeyValuePair_2_System_Type_Opsive_UltimateCharacterController_Character_Abilities_DefaultReequipSlots___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1392002,6 +1415262,21 @@ struct ICollection_1_Opsive_UltimateCharacterController_StateSystem_AddState___C struct ICollection_1_Opsive_UltimateCharacterController_StateSystem_AddState___VTable vtable; }; +struct AddState___VTable { +}; + +struct AddState___StaticFields { +}; + +struct AddState___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct AddState___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct AddState___VTable vtable; +}; + struct KeyValuePair_2_System_Type_Opsive_UltimateCharacterController_StateSystem_AddState___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1392587,6 +1415862,18 @@ struct FSRUtils_ShaderConstants__Class { struct FSRUtils_ShaderConstants__VTable vtable; }; +struct HashSet_1_T_Slot_System_Linq_Expressions_Interpreter_LabelScopeInfo_ { + int32_t hashCode; + int32_t next; + struct LabelScopeInfo *value; +}; + +struct HashSet_1_T_Slot_System_Linq_Expressions_Interpreter_LabelScopeInfo___Boxed { + struct HashSet_1_T_Slot_System_Linq_Expressions_Interpreter_LabelScopeInfo___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_System_Linq_Expressions_Interpreter_LabelScopeInfo_ fields; +}; + struct __declspec(align(8)) HashSet_1_System_Linq_Expressions_Interpreter_LabelScopeInfo___Fields { struct Int32__Array *_buckets; struct HashSet_1_T_Slot_System_Linq_Expressions_Interpreter_LabelScopeInfo___Array *_slots; @@ -1392604,18 +1415891,6 @@ struct HashSet_1_System_Linq_Expressions_Interpreter_LabelScopeInfo_ { struct HashSet_1_System_Linq_Expressions_Interpreter_LabelScopeInfo___Fields fields; }; -struct HashSet_1_T_Slot_System_Linq_Expressions_Interpreter_LabelScopeInfo_ { - int32_t hashCode; - int32_t next; - struct LabelScopeInfo *value; -}; - -struct HashSet_1_T_Slot_System_Linq_Expressions_Interpreter_LabelScopeInfo___Boxed { - struct HashSet_1_T_Slot_System_Linq_Expressions_Interpreter_LabelScopeInfo___Class *klass; - MonitorData *monitor; - struct HashSet_1_T_Slot_System_Linq_Expressions_Interpreter_LabelScopeInfo_ fields; -}; - struct HashSet_1_T_Slot_System_Linq_Expressions_Interpreter_LabelScopeInfo___Array { struct HashSet_1_T_Slot_System_Linq_Expressions_Interpreter_LabelScopeInfo___Array__Class *klass; MonitorData *monitor; @@ -1392819,6 +1416094,19 @@ struct List_1_T_Enumerator_System_Linq_Expressions_Interpreter_LabelScopeInfo___ struct List_1_T_Enumerator_System_Linq_Expressions_Interpreter_LabelScopeInfo___VTable vtable; }; +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Camera_HashSet_1_System_Action_2_ { + int32_t hashCode; + int32_t next; + struct Camera *key; + struct HashSet_1_System_Action_2_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Camera_HashSet_1_System_Action_2___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Camera_HashSet_1_System_Action_2___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Camera_HashSet_1_System_Action_2_ fields; +}; + struct __declspec(align(8)) Dictionary_2_UnityEngine_Camera_HashSet_1_System_Action_2___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Camera_HashSet_1_System_Action_2___Array *_entries; @@ -1392838,17 +1416126,16 @@ struct Dictionary_2_UnityEngine_Camera_HashSet_1_System_Action_2_ { struct Dictionary_2_UnityEngine_Camera_HashSet_1_System_Action_2___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Camera_HashSet_1_System_Action_2_ { +struct HashSet_1_T_Slot_System_Action_2_ { int32_t hashCode; int32_t next; - struct Camera *key; - struct HashSet_1_System_Action_2_ *value; + struct Action_2_UnityEngine_Rendering_RenderTargetIdentifier_UnityEngine_Rendering_CommandBuffer_ *value; }; -struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Camera_HashSet_1_System_Action_2___Boxed { - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Camera_HashSet_1_System_Action_2___Class *klass; +struct HashSet_1_T_Slot_System_Action_2___Boxed { + struct HashSet_1_T_Slot_System_Action_2___Class *klass; MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Camera_HashSet_1_System_Action_2_ fields; + struct HashSet_1_T_Slot_System_Action_2_ fields; }; struct __declspec(align(8)) HashSet_1_System_Action_2___Fields { @@ -1392868,18 +1416155,6 @@ struct HashSet_1_System_Action_2_ { struct HashSet_1_System_Action_2___Fields fields; }; -struct HashSet_1_T_Slot_System_Action_2_ { - int32_t hashCode; - int32_t next; - struct Action_2_UnityEngine_Rendering_RenderTargetIdentifier_UnityEngine_Rendering_CommandBuffer_ *value; -}; - -struct HashSet_1_T_Slot_System_Action_2___Boxed { - struct HashSet_1_T_Slot_System_Action_2___Class *klass; - MonitorData *monitor; - struct HashSet_1_T_Slot_System_Action_2_ fields; -}; - struct HashSet_1_T_Slot_System_Action_2___Array { struct HashSet_1_T_Slot_System_Action_2___Array__Class *klass; MonitorData *monitor; @@ -1393282,6 +1416557,21 @@ struct ICollection_1_HashSet_1_System_Action_2___Class { struct ICollection_1_HashSet_1_System_Action_2___VTable vtable; }; +struct HashSet_1_System_Action_2__1__VTable { +}; + +struct HashSet_1_System_Action_2__1__StaticFields { +}; + +struct HashSet_1_System_Action_2__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_System_Action_2__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_System_Action_2__1__VTable vtable; +}; + struct KeyValuePair_2_UnityEngine_Camera_HashSet_1_System_Action_2___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1393632,6 +1416922,36 @@ struct Utils__Class { struct Utils__VTable vtable; }; +struct DebugUIHandlerColor___VTable { +}; + +struct DebugUIHandlerColor___StaticFields { +}; + +struct DebugUIHandlerColor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DebugUIHandlerColor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DebugUIHandlerColor___VTable vtable; +}; + +struct DebugUIHandlerToggle___VTable { +}; + +struct DebugUIHandlerToggle___StaticFields { +}; + +struct DebugUIHandlerToggle___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DebugUIHandlerToggle___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DebugUIHandlerToggle___VTable vtable; +}; + struct List_1_T_Enumerator_UnityEngine_Rendering_UI_DebugUIHandlerValue_ { struct List_1_UnityEngine_Rendering_UI_DebugUIHandlerValue_ *_list; int32_t _index; @@ -1394013,6 +1417333,21 @@ struct Func_2_Type_Type___Class { struct Func_2_Type_Type___VTable vtable; }; +struct ParameterInfo___VTable { +}; + +struct ParameterInfo___StaticFields { +}; + +struct ParameterInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ParameterInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ParameterInfo___VTable vtable; +}; + struct CastInstruction_CastInstructionT_1_System_String_ { struct CastInstruction_CastInstructionT_1_System_String___Class *klass; MonitorData *monitor; @@ -1394108,6 +1417443,21 @@ struct List_1_System_Linq_Expressions_Expression___Class { struct List_1_System_Linq_Expressions_Expression___VTable vtable; }; +struct Func_2_System_Linq_Expressions_Interpreter_LightLambda_Delegate__1__VTable { +}; + +struct Func_2_System_Linq_Expressions_Interpreter_LightLambda_Delegate__1__StaticFields { +}; + +struct Func_2_System_Linq_Expressions_Interpreter_LightLambda_Delegate__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_2_System_Linq_Expressions_Interpreter_LightLambda_Delegate__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_2_System_Linq_Expressions_Interpreter_LightLambda_Delegate__1__VTable vtable; +}; + struct List_1_T_Enumerator_System_Security_AccessControl_GenericAce_ { struct List_1_System_Security_AccessControl_GenericAce_ *_list; int32_t _index; @@ -1395071,7 +1418421,7 @@ struct FastAction_2_System_Object_Compute_DT_EventArgs_ { }; struct __declspec(align(8)) LinkedList_1_System_Action_2__2__Fields { - struct LinkedListNode_1_System_Action_2__2 *head; + struct LinkedListNode_1_System_Action_2__4 *head; int32_t count; int32_t version; struct Object *_syncRoot; @@ -1395084,17 +1418434,17 @@ struct LinkedList_1_System_Action_2__2 { struct LinkedList_1_System_Action_2__2__Fields fields; }; -struct __declspec(align(8)) LinkedListNode_1_System_Action_2__2__Fields { +struct __declspec(align(8)) LinkedListNode_1_System_Action_2__4__Fields { struct LinkedList_1_System_Action_2__2 *list; - struct LinkedListNode_1_System_Action_2__2 *next; - struct LinkedListNode_1_System_Action_2__2 *prev; + struct LinkedListNode_1_System_Action_2__4 *next; + struct LinkedListNode_1_System_Action_2__4 *prev; struct Action_2_Object_TMPro_Compute_DT_EventArgs_ *item; }; -struct LinkedListNode_1_System_Action_2__2 { - struct LinkedListNode_1_System_Action_2__2__Class *klass; +struct LinkedListNode_1_System_Action_2__4 { + struct LinkedListNode_1_System_Action_2__4__Class *klass; MonitorData *monitor; - struct LinkedListNode_1_System_Action_2__2__Fields fields; + struct LinkedListNode_1_System_Action_2__4__Fields fields; }; struct Action_2_Object_TMPro_Compute_DT_EventArgs___Fields { @@ -1395120,6 +1418470,19 @@ struct IEnumerator_1_System_Action_2__12 { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Action_2_LinkedListNode_1_System_Action_2__2 { + int32_t hashCode; + int32_t next; + struct Action_2_Object_TMPro_Compute_DT_EventArgs_ *key; + struct LinkedListNode_1_System_Action_2__4 *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Action_2_LinkedListNode_1_System_Action_2__2__Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Action_2_LinkedListNode_1_System_Action_2__2__Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Action_2_LinkedListNode_1_System_Action_2__2 fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Action_2_LinkedListNode_1_System_Action_2__2__Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Action_2_LinkedListNode_1_System_Action_2__2__Array *_entries; @@ -1395139,19 +1418502,6 @@ struct Dictionary_2_System_Action_2_LinkedListNode_1_System_Action_2__2 { struct Dictionary_2_System_Action_2_LinkedListNode_1_System_Action_2__2__Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Action_2_LinkedListNode_1_System_Action_2__2 { - int32_t hashCode; - int32_t next; - struct Action_2_Object_TMPro_Compute_DT_EventArgs_ *key; - struct LinkedListNode_1_System_Action_2__2 *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Action_2_LinkedListNode_1_System_Action_2__2__Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Action_2_LinkedListNode_1_System_Action_2__2__Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Action_2_LinkedListNode_1_System_Action_2__2 fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Action_2_LinkedListNode_1_System_Action_2__2__Array { struct Dictionary_2_TKey_TValue_Entry_System_Action_2_LinkedListNode_1_System_Action_2__2__Array__Class *klass; MonitorData *monitor; @@ -1395185,12 +1418535,12 @@ struct Dictionary_2_TKey_TValue_ValueCollection_System_Action_2_LinkedListNode_1 struct Dictionary_2_TKey_TValue_ValueCollection_System_Action_2_LinkedListNode_1_System_Action_2__2__Fields fields; }; -struct LinkedListNode_1_System_Action_2__2__Array { - struct LinkedListNode_1_System_Action_2__2__Array__Class *klass; +struct LinkedListNode_1_System_Action_2__4__Array { + struct LinkedListNode_1_System_Action_2__4__Array__Class *klass; MonitorData *monitor; Il2CppArrayBounds *bounds; il2cpp_array_size_t max_length; - struct LinkedListNode_1_System_Action_2__2 *vector[32]; + struct LinkedListNode_1_System_Action_2__4 *vector[32]; }; struct IEnumerator_1_LinkedListNode_1_System_Action_2__2 { @@ -1395210,7 +1418560,7 @@ struct ICollection_1_LinkedListNode_1_System_Action_2__2 { struct KeyValuePair_2_System_Action_2_LinkedListNode_1_System_Action_2__2 { struct Action_2_Object_TMPro_Compute_DT_EventArgs_ *key; - struct LinkedListNode_1_System_Action_2__2 *value; + struct LinkedListNode_1_System_Action_2__4 *value; }; struct KeyValuePair_2_System_Action_2_LinkedListNode_1_System_Action_2__2__Boxed { @@ -1395254,7 +1418604,7 @@ struct FastAction_2_System_Boolean_UnityEngine_Material_ { }; struct __declspec(align(8)) LinkedList_1_System_Action_2__3__Fields { - struct LinkedListNode_1_System_Action_2__3 *head; + struct LinkedListNode_1_System_Action_2__6 *head; int32_t count; int32_t version; struct Object *_syncRoot; @@ -1395267,17 +1418617,17 @@ struct LinkedList_1_System_Action_2__3 { struct LinkedList_1_System_Action_2__3__Fields fields; }; -struct __declspec(align(8)) LinkedListNode_1_System_Action_2__3__Fields { +struct __declspec(align(8)) LinkedListNode_1_System_Action_2__6__Fields { struct LinkedList_1_System_Action_2__3 *list; - struct LinkedListNode_1_System_Action_2__3 *next; - struct LinkedListNode_1_System_Action_2__3 *prev; + struct LinkedListNode_1_System_Action_2__6 *next; + struct LinkedListNode_1_System_Action_2__6 *prev; struct Action_2_Boolean_UnityEngine_Material_ *item; }; -struct LinkedListNode_1_System_Action_2__3 { - struct LinkedListNode_1_System_Action_2__3__Class *klass; +struct LinkedListNode_1_System_Action_2__6 { + struct LinkedListNode_1_System_Action_2__6__Class *klass; MonitorData *monitor; - struct LinkedListNode_1_System_Action_2__3__Fields fields; + struct LinkedListNode_1_System_Action_2__6__Fields fields; }; struct Action_2_Boolean_UnityEngine_Material___Fields { @@ -1395303,6 +1418653,19 @@ struct IEnumerator_1_System_Action_2__13 { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Action_2_LinkedListNode_1_System_Action_2__3 { + int32_t hashCode; + int32_t next; + struct Action_2_Boolean_UnityEngine_Material_ *key; + struct LinkedListNode_1_System_Action_2__6 *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Action_2_LinkedListNode_1_System_Action_2__3__Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Action_2_LinkedListNode_1_System_Action_2__3__Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Action_2_LinkedListNode_1_System_Action_2__3 fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Action_2_LinkedListNode_1_System_Action_2__3__Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Action_2_LinkedListNode_1_System_Action_2__3__Array *_entries; @@ -1395322,19 +1418685,6 @@ struct Dictionary_2_System_Action_2_LinkedListNode_1_System_Action_2__3 { struct Dictionary_2_System_Action_2_LinkedListNode_1_System_Action_2__3__Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Action_2_LinkedListNode_1_System_Action_2__3 { - int32_t hashCode; - int32_t next; - struct Action_2_Boolean_UnityEngine_Material_ *key; - struct LinkedListNode_1_System_Action_2__3 *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Action_2_LinkedListNode_1_System_Action_2__3__Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Action_2_LinkedListNode_1_System_Action_2__3__Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Action_2_LinkedListNode_1_System_Action_2__3 fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Action_2_LinkedListNode_1_System_Action_2__3__Array { struct Dictionary_2_TKey_TValue_Entry_System_Action_2_LinkedListNode_1_System_Action_2__3__Array__Class *klass; MonitorData *monitor; @@ -1395368,12 +1418718,12 @@ struct Dictionary_2_TKey_TValue_ValueCollection_System_Action_2_LinkedListNode_1 struct Dictionary_2_TKey_TValue_ValueCollection_System_Action_2_LinkedListNode_1_System_Action_2__3__Fields fields; }; -struct LinkedListNode_1_System_Action_2__3__Array { - struct LinkedListNode_1_System_Action_2__3__Array__Class *klass; +struct LinkedListNode_1_System_Action_2__6__Array { + struct LinkedListNode_1_System_Action_2__6__Array__Class *klass; MonitorData *monitor; Il2CppArrayBounds *bounds; il2cpp_array_size_t max_length; - struct LinkedListNode_1_System_Action_2__3 *vector[32]; + struct LinkedListNode_1_System_Action_2__6 *vector[32]; }; struct IEnumerator_1_LinkedListNode_1_System_Action_2__3 { @@ -1395393,7 +1418743,7 @@ struct ICollection_1_LinkedListNode_1_System_Action_2__3 { struct KeyValuePair_2_System_Action_2_LinkedListNode_1_System_Action_2__3 { struct Action_2_Boolean_UnityEngine_Material_ *key; - struct LinkedListNode_1_System_Action_2__3 *value; + struct LinkedListNode_1_System_Action_2__6 *value; }; struct KeyValuePair_2_System_Action_2_LinkedListNode_1_System_Action_2__3__Boxed { @@ -1395437,7 +1418787,7 @@ struct FastAction_2_System_Boolean_UnityEngine_Object_ { }; struct __declspec(align(8)) LinkedList_1_System_Action_2__4__Fields { - struct LinkedListNode_1_System_Action_2__4 *head; + struct LinkedListNode_1_System_Action_2__8 *head; int32_t count; int32_t version; struct Object *_syncRoot; @@ -1395450,17 +1418800,17 @@ struct LinkedList_1_System_Action_2__4 { struct LinkedList_1_System_Action_2__4__Fields fields; }; -struct __declspec(align(8)) LinkedListNode_1_System_Action_2__4__Fields { +struct __declspec(align(8)) LinkedListNode_1_System_Action_2__8__Fields { struct LinkedList_1_System_Action_2__4 *list; - struct LinkedListNode_1_System_Action_2__4 *next; - struct LinkedListNode_1_System_Action_2__4 *prev; + struct LinkedListNode_1_System_Action_2__8 *next; + struct LinkedListNode_1_System_Action_2__8 *prev; struct Action_2_Boolean_UnityEngine_Object_ *item; }; -struct LinkedListNode_1_System_Action_2__4 { - struct LinkedListNode_1_System_Action_2__4__Class *klass; +struct LinkedListNode_1_System_Action_2__8 { + struct LinkedListNode_1_System_Action_2__8__Class *klass; MonitorData *monitor; - struct LinkedListNode_1_System_Action_2__4__Fields fields; + struct LinkedListNode_1_System_Action_2__8__Fields fields; }; struct Action_2_Boolean_UnityEngine_Object___Fields { @@ -1395486,6 +1418836,19 @@ struct IEnumerator_1_System_Action_2__14 { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Action_2_LinkedListNode_1_System_Action_2__4 { + int32_t hashCode; + int32_t next; + struct Action_2_Boolean_UnityEngine_Object_ *key; + struct LinkedListNode_1_System_Action_2__8 *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Action_2_LinkedListNode_1_System_Action_2__4__Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Action_2_LinkedListNode_1_System_Action_2__4__Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Action_2_LinkedListNode_1_System_Action_2__4 fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Action_2_LinkedListNode_1_System_Action_2__4__Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Action_2_LinkedListNode_1_System_Action_2__4__Array *_entries; @@ -1395505,19 +1418868,6 @@ struct Dictionary_2_System_Action_2_LinkedListNode_1_System_Action_2__4 { struct Dictionary_2_System_Action_2_LinkedListNode_1_System_Action_2__4__Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Action_2_LinkedListNode_1_System_Action_2__4 { - int32_t hashCode; - int32_t next; - struct Action_2_Boolean_UnityEngine_Object_ *key; - struct LinkedListNode_1_System_Action_2__4 *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Action_2_LinkedListNode_1_System_Action_2__4__Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Action_2_LinkedListNode_1_System_Action_2__4__Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Action_2_LinkedListNode_1_System_Action_2__4 fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Action_2_LinkedListNode_1_System_Action_2__4__Array { struct Dictionary_2_TKey_TValue_Entry_System_Action_2_LinkedListNode_1_System_Action_2__4__Array__Class *klass; MonitorData *monitor; @@ -1395551,12 +1418901,12 @@ struct Dictionary_2_TKey_TValue_ValueCollection_System_Action_2_LinkedListNode_1 struct Dictionary_2_TKey_TValue_ValueCollection_System_Action_2_LinkedListNode_1_System_Action_2__4__Fields fields; }; -struct LinkedListNode_1_System_Action_2__4__Array { - struct LinkedListNode_1_System_Action_2__4__Array__Class *klass; +struct LinkedListNode_1_System_Action_2__8__Array { + struct LinkedListNode_1_System_Action_2__8__Array__Class *klass; MonitorData *monitor; Il2CppArrayBounds *bounds; il2cpp_array_size_t max_length; - struct LinkedListNode_1_System_Action_2__4 *vector[32]; + struct LinkedListNode_1_System_Action_2__8 *vector[32]; }; struct IEnumerator_1_LinkedListNode_1_System_Action_2__4 { @@ -1395576,7 +1418926,7 @@ struct ICollection_1_LinkedListNode_1_System_Action_2__4 { struct KeyValuePair_2_System_Action_2_LinkedListNode_1_System_Action_2__4 { struct Action_2_Boolean_UnityEngine_Object_ *key; - struct LinkedListNode_1_System_Action_2__4 *value; + struct LinkedListNode_1_System_Action_2__8 *value; }; struct KeyValuePair_2_System_Action_2_LinkedListNode_1_System_Action_2__4__Boxed { @@ -1395620,7 +1418970,7 @@ struct FastAction_3_UnityEngine_GameObject_UnityEngine_Material_UnityEngine_Mate }; struct __declspec(align(8)) LinkedList_1_System_Action_3__1__Fields { - struct LinkedListNode_1_System_Action_3__1 *head; + struct LinkedListNode_1_System_Action_3__2 *head; int32_t count; int32_t version; struct Object *_syncRoot; @@ -1395633,17 +1418983,17 @@ struct LinkedList_1_System_Action_3__1 { struct LinkedList_1_System_Action_3__1__Fields fields; }; -struct __declspec(align(8)) LinkedListNode_1_System_Action_3__1__Fields { +struct __declspec(align(8)) LinkedListNode_1_System_Action_3__2__Fields { struct LinkedList_1_System_Action_3__1 *list; - struct LinkedListNode_1_System_Action_3__1 *next; - struct LinkedListNode_1_System_Action_3__1 *prev; + struct LinkedListNode_1_System_Action_3__2 *next; + struct LinkedListNode_1_System_Action_3__2 *prev; struct Action_3_UnityEngine_GameObject_UnityEngine_Material_UnityEngine_Material_ *item; }; -struct LinkedListNode_1_System_Action_3__1 { - struct LinkedListNode_1_System_Action_3__1__Class *klass; +struct LinkedListNode_1_System_Action_3__2 { + struct LinkedListNode_1_System_Action_3__2__Class *klass; MonitorData *monitor; - struct LinkedListNode_1_System_Action_3__1__Fields fields; + struct LinkedListNode_1_System_Action_3__2__Fields fields; }; struct Action_3_UnityEngine_GameObject_UnityEngine_Material_UnityEngine_Material___Fields { @@ -1395669,6 +1419019,19 @@ struct IEnumerator_1_System_Action_3__2 { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Action_3_LinkedListNode_1_System_Action_3__1 { + int32_t hashCode; + int32_t next; + struct Action_3_UnityEngine_GameObject_UnityEngine_Material_UnityEngine_Material_ *key; + struct LinkedListNode_1_System_Action_3__2 *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Action_3_LinkedListNode_1_System_Action_3__1__Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Action_3_LinkedListNode_1_System_Action_3__1__Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Action_3_LinkedListNode_1_System_Action_3__1 fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Action_3_LinkedListNode_1_System_Action_3__1__Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Action_3_LinkedListNode_1_System_Action_3__1__Array *_entries; @@ -1395688,19 +1419051,6 @@ struct Dictionary_2_System_Action_3_LinkedListNode_1_System_Action_3__1 { struct Dictionary_2_System_Action_3_LinkedListNode_1_System_Action_3__1__Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Action_3_LinkedListNode_1_System_Action_3__1 { - int32_t hashCode; - int32_t next; - struct Action_3_UnityEngine_GameObject_UnityEngine_Material_UnityEngine_Material_ *key; - struct LinkedListNode_1_System_Action_3__1 *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Action_3_LinkedListNode_1_System_Action_3__1__Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Action_3_LinkedListNode_1_System_Action_3__1__Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Action_3_LinkedListNode_1_System_Action_3__1 fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Action_3_LinkedListNode_1_System_Action_3__1__Array { struct Dictionary_2_TKey_TValue_Entry_System_Action_3_LinkedListNode_1_System_Action_3__1__Array__Class *klass; MonitorData *monitor; @@ -1395734,12 +1419084,12 @@ struct Dictionary_2_TKey_TValue_ValueCollection_System_Action_3_LinkedListNode_1 struct Dictionary_2_TKey_TValue_ValueCollection_System_Action_3_LinkedListNode_1_System_Action_3__1__Fields fields; }; -struct LinkedListNode_1_System_Action_3__1__Array { - struct LinkedListNode_1_System_Action_3__1__Array__Class *klass; +struct LinkedListNode_1_System_Action_3__2__Array { + struct LinkedListNode_1_System_Action_3__2__Array__Class *klass; MonitorData *monitor; Il2CppArrayBounds *bounds; il2cpp_array_size_t max_length; - struct LinkedListNode_1_System_Action_3__1 *vector[32]; + struct LinkedListNode_1_System_Action_3__2 *vector[32]; }; struct IEnumerator_1_LinkedListNode_1_System_Action_3__1 { @@ -1395759,7 +1419109,7 @@ struct ICollection_1_LinkedListNode_1_System_Action_3__1 { struct KeyValuePair_2_System_Action_3_LinkedListNode_1_System_Action_3__1 { struct Action_3_UnityEngine_GameObject_UnityEngine_Material_UnityEngine_Material_ *key; - struct LinkedListNode_1_System_Action_3__1 *value; + struct LinkedListNode_1_System_Action_3__2 *value; }; struct KeyValuePair_2_System_Action_3_LinkedListNode_1_System_Action_3__1__Boxed { @@ -1395803,7 +1419153,7 @@ struct FastAction_1_UnityEngine_Object_ { }; struct __declspec(align(8)) LinkedList_1_System_Action_1__25__Fields { - struct LinkedListNode_1_System_Action_1__25 *head; + struct LinkedListNode_1_System_Action_1__27 *head; int32_t count; int32_t version; struct Object *_syncRoot; @@ -1395816,17 +1419166,17 @@ struct LinkedList_1_System_Action_1__25 { struct LinkedList_1_System_Action_1__25__Fields fields; }; -struct __declspec(align(8)) LinkedListNode_1_System_Action_1__25__Fields { +struct __declspec(align(8)) LinkedListNode_1_System_Action_1__27__Fields { struct LinkedList_1_System_Action_1__25 *list; - struct LinkedListNode_1_System_Action_1__25 *next; - struct LinkedListNode_1_System_Action_1__25 *prev; + struct LinkedListNode_1_System_Action_1__27 *next; + struct LinkedListNode_1_System_Action_1__27 *prev; struct Action_1_UnityEngine_Object_ *item; }; -struct LinkedListNode_1_System_Action_1__25 { - struct LinkedListNode_1_System_Action_1__25__Class *klass; +struct LinkedListNode_1_System_Action_1__27 { + struct LinkedListNode_1_System_Action_1__27__Class *klass; MonitorData *monitor; - struct LinkedListNode_1_System_Action_1__25__Fields fields; + struct LinkedListNode_1_System_Action_1__27__Fields fields; }; struct Action_1_UnityEngine_Object___Array { @@ -1395842,6 +1419192,19 @@ struct IEnumerator_1_System_Action_1__31 { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Action_1_LinkedListNode_1_System_Action_1__2 { + int32_t hashCode; + int32_t next; + struct Action_1_UnityEngine_Object_ *key; + struct LinkedListNode_1_System_Action_1__27 *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Action_1_LinkedListNode_1_System_Action_1__2__Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Action_1_LinkedListNode_1_System_Action_1__2__Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Action_1_LinkedListNode_1_System_Action_1__2 fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Action_1_LinkedListNode_1_System_Action_1__2__Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Action_1_LinkedListNode_1_System_Action_1__2__Array *_entries; @@ -1395861,19 +1419224,6 @@ struct Dictionary_2_System_Action_1_LinkedListNode_1_System_Action_1__2 { struct Dictionary_2_System_Action_1_LinkedListNode_1_System_Action_1__2__Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Action_1_LinkedListNode_1_System_Action_1__2 { - int32_t hashCode; - int32_t next; - struct Action_1_UnityEngine_Object_ *key; - struct LinkedListNode_1_System_Action_1__25 *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Action_1_LinkedListNode_1_System_Action_1__2__Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Action_1_LinkedListNode_1_System_Action_1__2__Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Action_1_LinkedListNode_1_System_Action_1__2 fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Action_1_LinkedListNode_1_System_Action_1__2__Array { struct Dictionary_2_TKey_TValue_Entry_System_Action_1_LinkedListNode_1_System_Action_1__2__Array__Class *klass; MonitorData *monitor; @@ -1395907,12 +1419257,12 @@ struct Dictionary_2_TKey_TValue_ValueCollection_System_Action_1_LinkedListNode_1 struct Dictionary_2_TKey_TValue_ValueCollection_System_Action_1_LinkedListNode_1_System_Action_1__2__Fields fields; }; -struct LinkedListNode_1_System_Action_1__25__Array { - struct LinkedListNode_1_System_Action_1__25__Array__Class *klass; +struct LinkedListNode_1_System_Action_1__27__Array { + struct LinkedListNode_1_System_Action_1__27__Array__Class *klass; MonitorData *monitor; Il2CppArrayBounds *bounds; il2cpp_array_size_t max_length; - struct LinkedListNode_1_System_Action_1__25 *vector[32]; + struct LinkedListNode_1_System_Action_1__27 *vector[32]; }; struct IEnumerator_1_LinkedListNode_1_System_Action_1__2 { @@ -1395932,7 +1419282,7 @@ struct ICollection_1_LinkedListNode_1_System_Action_1__2 { struct KeyValuePair_2_System_Action_1_LinkedListNode_1_System_Action_1__2 { struct Action_1_UnityEngine_Object_ *key; - struct LinkedListNode_1_System_Action_1__25 *value; + struct LinkedListNode_1_System_Action_1__27 *value; }; struct KeyValuePair_2_System_Action_1_LinkedListNode_1_System_Action_1__2__Boxed { @@ -1395993,23 +1419343,23 @@ struct Action_2_Object_TMPro_Compute_DT_EventArgs___Class { struct Action_2_Object_TMPro_Compute_DT_EventArgs___VTable vtable; }; -struct LinkedListNode_1_System_Action_2__2__VTable { +struct LinkedListNode_1_System_Action_2__4__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; VirtualInvokeData GetHashCode; VirtualInvokeData ToString; }; -struct LinkedListNode_1_System_Action_2__2__StaticFields { +struct LinkedListNode_1_System_Action_2__4__StaticFields { }; -struct LinkedListNode_1_System_Action_2__2__Class { +struct LinkedListNode_1_System_Action_2__4__Class { Il2CppClass_0 _0; Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct LinkedListNode_1_System_Action_2__2__StaticFields *static_fields; + struct LinkedListNode_1_System_Action_2__4__StaticFields *static_fields; const Il2CppRGCTXData *rgctx_data; Il2CppClass_1 _1; - struct LinkedListNode_1_System_Action_2__2__VTable vtable; + struct LinkedListNode_1_System_Action_2__4__VTable vtable; }; struct Action_2_Object_TMPro_Compute_DT_EventArgs___Array__VTable { @@ -1396164,19 +1419514,19 @@ struct Dictionary_2_TKey_TValue_KeyCollection_System_Action_2_LinkedListNode_1_S struct Dictionary_2_TKey_TValue_KeyCollection_System_Action_2_LinkedListNode_1_System_Action_2__2__VTable vtable; }; -struct LinkedListNode_1_System_Action_2__2__Array__VTable { +struct LinkedListNode_1_System_Action_2__4__Array__VTable { }; -struct LinkedListNode_1_System_Action_2__2__Array__StaticFields { +struct LinkedListNode_1_System_Action_2__4__Array__StaticFields { }; -struct LinkedListNode_1_System_Action_2__2__Array__Class { +struct LinkedListNode_1_System_Action_2__4__Array__Class { Il2CppClass_0 _0; Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct LinkedListNode_1_System_Action_2__2__Array__StaticFields *static_fields; + struct LinkedListNode_1_System_Action_2__4__Array__StaticFields *static_fields; const Il2CppRGCTXData *rgctx_data; Il2CppClass_1 _1; - struct LinkedListNode_1_System_Action_2__2__Array__VTable vtable; + struct LinkedListNode_1_System_Action_2__4__Array__VTable vtable; }; struct IEnumerator_1_LinkedListNode_1_System_Action_2__2__VTable { @@ -1396272,6 +1419622,21 @@ struct ICollection_1_LinkedListNode_1_System_Action_2__2__Class { struct ICollection_1_LinkedListNode_1_System_Action_2__2__VTable vtable; }; +struct LinkedListNode_1_System_Action_2__5__VTable { +}; + +struct LinkedListNode_1_System_Action_2__5__StaticFields { +}; + +struct LinkedListNode_1_System_Action_2__5__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct LinkedListNode_1_System_Action_2__5__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct LinkedListNode_1_System_Action_2__5__VTable vtable; +}; + struct KeyValuePair_2_System_Action_2_LinkedListNode_1_System_Action_2__2__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1396461,23 +1419826,23 @@ struct Action_2_Boolean_UnityEngine_Material___Class { struct Action_2_Boolean_UnityEngine_Material___VTable vtable; }; -struct LinkedListNode_1_System_Action_2__3__VTable { +struct LinkedListNode_1_System_Action_2__6__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; VirtualInvokeData GetHashCode; VirtualInvokeData ToString; }; -struct LinkedListNode_1_System_Action_2__3__StaticFields { +struct LinkedListNode_1_System_Action_2__6__StaticFields { }; -struct LinkedListNode_1_System_Action_2__3__Class { +struct LinkedListNode_1_System_Action_2__6__Class { Il2CppClass_0 _0; Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct LinkedListNode_1_System_Action_2__3__StaticFields *static_fields; + struct LinkedListNode_1_System_Action_2__6__StaticFields *static_fields; const Il2CppRGCTXData *rgctx_data; Il2CppClass_1 _1; - struct LinkedListNode_1_System_Action_2__3__VTable vtable; + struct LinkedListNode_1_System_Action_2__6__VTable vtable; }; struct Action_2_Boolean_UnityEngine_Material___Array__VTable { @@ -1396632,19 +1419997,19 @@ struct Dictionary_2_TKey_TValue_KeyCollection_System_Action_2_LinkedListNode_1_S struct Dictionary_2_TKey_TValue_KeyCollection_System_Action_2_LinkedListNode_1_System_Action_2__3__VTable vtable; }; -struct LinkedListNode_1_System_Action_2__3__Array__VTable { +struct LinkedListNode_1_System_Action_2__6__Array__VTable { }; -struct LinkedListNode_1_System_Action_2__3__Array__StaticFields { +struct LinkedListNode_1_System_Action_2__6__Array__StaticFields { }; -struct LinkedListNode_1_System_Action_2__3__Array__Class { +struct LinkedListNode_1_System_Action_2__6__Array__Class { Il2CppClass_0 _0; Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct LinkedListNode_1_System_Action_2__3__Array__StaticFields *static_fields; + struct LinkedListNode_1_System_Action_2__6__Array__StaticFields *static_fields; const Il2CppRGCTXData *rgctx_data; Il2CppClass_1 _1; - struct LinkedListNode_1_System_Action_2__3__Array__VTable vtable; + struct LinkedListNode_1_System_Action_2__6__Array__VTable vtable; }; struct IEnumerator_1_LinkedListNode_1_System_Action_2__3__VTable { @@ -1396740,6 +1420105,21 @@ struct ICollection_1_LinkedListNode_1_System_Action_2__3__Class { struct ICollection_1_LinkedListNode_1_System_Action_2__3__VTable vtable; }; +struct LinkedListNode_1_System_Action_2__7__VTable { +}; + +struct LinkedListNode_1_System_Action_2__7__StaticFields { +}; + +struct LinkedListNode_1_System_Action_2__7__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct LinkedListNode_1_System_Action_2__7__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct LinkedListNode_1_System_Action_2__7__VTable vtable; +}; + struct KeyValuePair_2_System_Action_2_LinkedListNode_1_System_Action_2__3__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1396929,23 +1420309,23 @@ struct Action_2_Boolean_UnityEngine_Object___Class { struct Action_2_Boolean_UnityEngine_Object___VTable vtable; }; -struct LinkedListNode_1_System_Action_2__4__VTable { +struct LinkedListNode_1_System_Action_2__8__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; VirtualInvokeData GetHashCode; VirtualInvokeData ToString; }; -struct LinkedListNode_1_System_Action_2__4__StaticFields { +struct LinkedListNode_1_System_Action_2__8__StaticFields { }; -struct LinkedListNode_1_System_Action_2__4__Class { +struct LinkedListNode_1_System_Action_2__8__Class { Il2CppClass_0 _0; Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct LinkedListNode_1_System_Action_2__4__StaticFields *static_fields; + struct LinkedListNode_1_System_Action_2__8__StaticFields *static_fields; const Il2CppRGCTXData *rgctx_data; Il2CppClass_1 _1; - struct LinkedListNode_1_System_Action_2__4__VTable vtable; + struct LinkedListNode_1_System_Action_2__8__VTable vtable; }; struct Action_2_Boolean_UnityEngine_Object___Array__VTable { @@ -1397100,19 +1420480,19 @@ struct Dictionary_2_TKey_TValue_KeyCollection_System_Action_2_LinkedListNode_1_S struct Dictionary_2_TKey_TValue_KeyCollection_System_Action_2_LinkedListNode_1_System_Action_2__4__VTable vtable; }; -struct LinkedListNode_1_System_Action_2__4__Array__VTable { +struct LinkedListNode_1_System_Action_2__8__Array__VTable { }; -struct LinkedListNode_1_System_Action_2__4__Array__StaticFields { +struct LinkedListNode_1_System_Action_2__8__Array__StaticFields { }; -struct LinkedListNode_1_System_Action_2__4__Array__Class { +struct LinkedListNode_1_System_Action_2__8__Array__Class { Il2CppClass_0 _0; Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct LinkedListNode_1_System_Action_2__4__Array__StaticFields *static_fields; + struct LinkedListNode_1_System_Action_2__8__Array__StaticFields *static_fields; const Il2CppRGCTXData *rgctx_data; Il2CppClass_1 _1; - struct LinkedListNode_1_System_Action_2__4__Array__VTable vtable; + struct LinkedListNode_1_System_Action_2__8__Array__VTable vtable; }; struct IEnumerator_1_LinkedListNode_1_System_Action_2__4__VTable { @@ -1397208,6 +1420588,21 @@ struct ICollection_1_LinkedListNode_1_System_Action_2__4__Class { struct ICollection_1_LinkedListNode_1_System_Action_2__4__VTable vtable; }; +struct LinkedListNode_1_System_Action_2__9__VTable { +}; + +struct LinkedListNode_1_System_Action_2__9__StaticFields { +}; + +struct LinkedListNode_1_System_Action_2__9__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct LinkedListNode_1_System_Action_2__9__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct LinkedListNode_1_System_Action_2__9__VTable vtable; +}; + struct KeyValuePair_2_System_Action_2_LinkedListNode_1_System_Action_2__4__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1397397,23 +1420792,23 @@ struct Action_3_UnityEngine_GameObject_UnityEngine_Material_UnityEngine_Material struct Action_3_UnityEngine_GameObject_UnityEngine_Material_UnityEngine_Material___VTable vtable; }; -struct LinkedListNode_1_System_Action_3__1__VTable { +struct LinkedListNode_1_System_Action_3__2__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; VirtualInvokeData GetHashCode; VirtualInvokeData ToString; }; -struct LinkedListNode_1_System_Action_3__1__StaticFields { +struct LinkedListNode_1_System_Action_3__2__StaticFields { }; -struct LinkedListNode_1_System_Action_3__1__Class { +struct LinkedListNode_1_System_Action_3__2__Class { Il2CppClass_0 _0; Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct LinkedListNode_1_System_Action_3__1__StaticFields *static_fields; + struct LinkedListNode_1_System_Action_3__2__StaticFields *static_fields; const Il2CppRGCTXData *rgctx_data; Il2CppClass_1 _1; - struct LinkedListNode_1_System_Action_3__1__VTable vtable; + struct LinkedListNode_1_System_Action_3__2__VTable vtable; }; struct Action_3_UnityEngine_GameObject_UnityEngine_Material_UnityEngine_Material___Array__VTable { @@ -1397568,19 +1420963,19 @@ struct Dictionary_2_TKey_TValue_KeyCollection_System_Action_3_LinkedListNode_1_S struct Dictionary_2_TKey_TValue_KeyCollection_System_Action_3_LinkedListNode_1_System_Action_3__1__VTable vtable; }; -struct LinkedListNode_1_System_Action_3__1__Array__VTable { +struct LinkedListNode_1_System_Action_3__2__Array__VTable { }; -struct LinkedListNode_1_System_Action_3__1__Array__StaticFields { +struct LinkedListNode_1_System_Action_3__2__Array__StaticFields { }; -struct LinkedListNode_1_System_Action_3__1__Array__Class { +struct LinkedListNode_1_System_Action_3__2__Array__Class { Il2CppClass_0 _0; Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct LinkedListNode_1_System_Action_3__1__Array__StaticFields *static_fields; + struct LinkedListNode_1_System_Action_3__2__Array__StaticFields *static_fields; const Il2CppRGCTXData *rgctx_data; Il2CppClass_1 _1; - struct LinkedListNode_1_System_Action_3__1__Array__VTable vtable; + struct LinkedListNode_1_System_Action_3__2__Array__VTable vtable; }; struct IEnumerator_1_LinkedListNode_1_System_Action_3__1__VTable { @@ -1397676,6 +1421071,21 @@ struct ICollection_1_LinkedListNode_1_System_Action_3__1__Class { struct ICollection_1_LinkedListNode_1_System_Action_3__1__VTable vtable; }; +struct LinkedListNode_1_System_Action_3__3__VTable { +}; + +struct LinkedListNode_1_System_Action_3__3__StaticFields { +}; + +struct LinkedListNode_1_System_Action_3__3__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct LinkedListNode_1_System_Action_3__3__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct LinkedListNode_1_System_Action_3__3__VTable vtable; +}; + struct KeyValuePair_2_System_Action_3_LinkedListNode_1_System_Action_3__1__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1397836,23 +1421246,23 @@ struct FastAction_3_UnityEngine_GameObject_UnityEngine_Material_UnityEngine_Mate struct FastAction_3_UnityEngine_GameObject_UnityEngine_Material_UnityEngine_Material___VTable vtable; }; -struct LinkedListNode_1_System_Action_1__25__VTable { +struct LinkedListNode_1_System_Action_1__27__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; VirtualInvokeData GetHashCode; VirtualInvokeData ToString; }; -struct LinkedListNode_1_System_Action_1__25__StaticFields { +struct LinkedListNode_1_System_Action_1__27__StaticFields { }; -struct LinkedListNode_1_System_Action_1__25__Class { +struct LinkedListNode_1_System_Action_1__27__Class { Il2CppClass_0 _0; Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct LinkedListNode_1_System_Action_1__25__StaticFields *static_fields; + struct LinkedListNode_1_System_Action_1__27__StaticFields *static_fields; const Il2CppRGCTXData *rgctx_data; Il2CppClass_1 _1; - struct LinkedListNode_1_System_Action_1__25__VTable vtable; + struct LinkedListNode_1_System_Action_1__27__VTable vtable; }; struct Action_1_UnityEngine_Object___Array__VTable { @@ -1398007,19 +1421417,19 @@ struct Dictionary_2_TKey_TValue_KeyCollection_System_Action_1_LinkedListNode_1_S struct Dictionary_2_TKey_TValue_KeyCollection_System_Action_1_LinkedListNode_1_System_Action_1__2__VTable vtable; }; -struct LinkedListNode_1_System_Action_1__25__Array__VTable { +struct LinkedListNode_1_System_Action_1__27__Array__VTable { }; -struct LinkedListNode_1_System_Action_1__25__Array__StaticFields { +struct LinkedListNode_1_System_Action_1__27__Array__StaticFields { }; -struct LinkedListNode_1_System_Action_1__25__Array__Class { +struct LinkedListNode_1_System_Action_1__27__Array__Class { Il2CppClass_0 _0; Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct LinkedListNode_1_System_Action_1__25__Array__StaticFields *static_fields; + struct LinkedListNode_1_System_Action_1__27__Array__StaticFields *static_fields; const Il2CppRGCTXData *rgctx_data; Il2CppClass_1 _1; - struct LinkedListNode_1_System_Action_1__25__Array__VTable vtable; + struct LinkedListNode_1_System_Action_1__27__Array__VTable vtable; }; struct IEnumerator_1_LinkedListNode_1_System_Action_1__2__VTable { @@ -1398115,6 +1421525,21 @@ struct ICollection_1_LinkedListNode_1_System_Action_1__2__Class { struct ICollection_1_LinkedListNode_1_System_Action_1__2__VTable vtable; }; +struct LinkedListNode_1_System_Action_1__28__VTable { +}; + +struct LinkedListNode_1_System_Action_1__28__StaticFields { +}; + +struct LinkedListNode_1_System_Action_1__28__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct LinkedListNode_1_System_Action_1__28__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct LinkedListNode_1_System_Action_1__28__VTable vtable; +}; + struct KeyValuePair_2_System_Action_1_LinkedListNode_1_System_Action_1__2__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1398306,6 +1421731,21 @@ struct TMPro_EventManager__Class { struct TMPro_EventManager__VTable vtable; }; +struct TMP_SubMeshUI___VTable { +}; + +struct TMP_SubMeshUI___StaticFields { +}; + +struct TMP_SubMeshUI___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TMP_SubMeshUI___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TMP_SubMeshUI___VTable vtable; +}; + struct __declspec(align(8)) List_1_UnityEngine_Canvas___Fields { struct Canvas__Array *_items; int32_t _size; @@ -1398682,6 +1422122,21 @@ struct StencilMaterial__Class { struct StencilMaterial__VTable vtable; }; +struct TMP_SubMesh___VTable { +}; + +struct TMP_SubMesh___StaticFields { +}; + +struct TMP_SubMesh___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TMP_SubMesh___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TMP_SubMesh___VTable vtable; +}; + struct TMP_MaterialManager { struct TMP_MaterialManager__Class *klass; MonitorData *monitor; @@ -1398713,6 +1422168,19 @@ struct IEnumerator_1_TMPro_TMP_MaterialManager_MaskingMaterial_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Int64_TMPro_TMP_MaterialManager_FallbackMaterial_ { + int32_t hashCode; + int32_t next; + int64_t key; + struct TMP_MaterialManager_FallbackMaterial *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int64_TMPro_TMP_MaterialManager_FallbackMaterial___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int64_TMPro_TMP_MaterialManager_FallbackMaterial___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int64_TMPro_TMP_MaterialManager_FallbackMaterial_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Int64_TMPro_TMP_MaterialManager_FallbackMaterial___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Int64_TMPro_TMP_MaterialManager_FallbackMaterial___Array *_entries; @@ -1398732,19 +1422200,6 @@ struct Dictionary_2_System_Int64_TMPro_TMP_MaterialManager_FallbackMaterial_ { struct Dictionary_2_System_Int64_TMPro_TMP_MaterialManager_FallbackMaterial___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int64_TMPro_TMP_MaterialManager_FallbackMaterial_ { - int32_t hashCode; - int32_t next; - int64_t key; - struct TMP_MaterialManager_FallbackMaterial *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int64_TMPro_TMP_MaterialManager_FallbackMaterial___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int64_TMPro_TMP_MaterialManager_FallbackMaterial___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int64_TMPro_TMP_MaterialManager_FallbackMaterial_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Int64_TMPro_TMP_MaterialManager_FallbackMaterial___Array { struct Dictionary_2_TKey_TValue_Entry_System_Int64_TMPro_TMP_MaterialManager_FallbackMaterial___Array__Class *klass; MonitorData *monitor; @@ -1399068,6 +1422523,21 @@ struct ICollection_1_TMPro_TMP_MaterialManager_FallbackMaterial___Class { struct ICollection_1_TMPro_TMP_MaterialManager_FallbackMaterial___VTable vtable; }; +struct TMP_MaterialManager_FallbackMaterial___VTable { +}; + +struct TMP_MaterialManager_FallbackMaterial___StaticFields { +}; + +struct TMP_MaterialManager_FallbackMaterial___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TMP_MaterialManager_FallbackMaterial___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TMP_MaterialManager_FallbackMaterial___VTable vtable; +}; + struct KeyValuePair_2_System_Int64_TMPro_TMP_MaterialManager_FallbackMaterial___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1399783,6 +1423253,21 @@ struct CustomErrorsModes__Enum__Class { struct CustomErrorsModes__Enum__VTable vtable; }; +struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_Mono_Net_Security_AsyncProtocolResult__1__VTable { +}; + +struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_Mono_Net_Security_AsyncProtocolResult__1__StaticFields { +}; + +struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_Mono_Net_Security_AsyncProtocolResult__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_Mono_Net_Security_AsyncProtocolResult__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_Mono_Net_Security_AsyncProtocolResult__1__VTable vtable; +}; + struct ConfiguredTaskAwaitable_1_Mono_Net_Security_AsyncProtocolResult_ { struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_Mono_Net_Security_AsyncProtocolResult_ m_configuredTaskAwaiter; }; @@ -1399939,6 +1423424,21 @@ struct ChannelServices__Class { struct ChannelServices__VTable vtable; }; +struct SslStream___VTable { +}; + +struct SslStream___StaticFields { +}; + +struct SslStream___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SslStream___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SslStream___VTable vtable; +}; + struct SystemCertificateValidator { struct SystemCertificateValidator__Class *klass; MonitorData *monitor; @@ -1400134,6 +1423634,19 @@ struct MonoTlsProviderFactory { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_String_System_Tuple_2_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct Tuple_2_Guid_String_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_System_Tuple_2___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_System_Tuple_2___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_System_Tuple_2_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_String_System_Tuple_2___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_String_System_Tuple_2___Array *_entries; @@ -1400153,19 +1423666,6 @@ struct Dictionary_2_System_String_System_Tuple_2_ { struct Dictionary_2_System_String_System_Tuple_2___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_String_System_Tuple_2_ { - int32_t hashCode; - int32_t next; - struct String *key; - struct Tuple_2_Guid_String_ *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_String_System_Tuple_2___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_String_System_Tuple_2___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_String_System_Tuple_2_ fields; -}; - struct __declspec(align(8)) Tuple_2_Guid_String___Fields { struct Guid m_Item1; struct String *m_Item2; @@ -1400252,6 +1423752,19 @@ struct IEnumerable_1_System_Tuple_2_ { MonitorData *monitor; }; +struct Dictionary_2_TKey_TValue_Entry_System_Guid_Mono_Net_Security_MobileTlsProvider_ { + int32_t hashCode; + int32_t next; + struct Guid key; + struct MobileTlsProvider *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Guid_Mono_Net_Security_MobileTlsProvider___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Guid_Mono_Net_Security_MobileTlsProvider___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Guid_Mono_Net_Security_MobileTlsProvider_ fields; +}; + struct __declspec(align(8)) Dictionary_2_System_Guid_Mono_Net_Security_MobileTlsProvider___Fields { struct Int32__Array *_buckets; struct Dictionary_2_TKey_TValue_Entry_System_Guid_Mono_Net_Security_MobileTlsProvider___Array *_entries; @@ -1400271,19 +1423784,6 @@ struct Dictionary_2_System_Guid_Mono_Net_Security_MobileTlsProvider_ { struct Dictionary_2_System_Guid_Mono_Net_Security_MobileTlsProvider___Fields fields; }; -struct Dictionary_2_TKey_TValue_Entry_System_Guid_Mono_Net_Security_MobileTlsProvider_ { - int32_t hashCode; - int32_t next; - struct Guid key; - struct MobileTlsProvider *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Guid_Mono_Net_Security_MobileTlsProvider___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Guid_Mono_Net_Security_MobileTlsProvider___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Guid_Mono_Net_Security_MobileTlsProvider_ fields; -}; - struct Dictionary_2_TKey_TValue_Entry_System_Guid_Mono_Net_Security_MobileTlsProvider___Array { struct Dictionary_2_TKey_TValue_Entry_System_Guid_Mono_Net_Security_MobileTlsProvider___Array__Class *klass; MonitorData *monitor; @@ -1400537,6 +1424037,21 @@ struct ICollection_1_System_Tuple_2___Class { struct ICollection_1_System_Tuple_2___VTable vtable; }; +struct Tuple_2_Guid_String__1__VTable { +}; + +struct Tuple_2_Guid_String__1__StaticFields { +}; + +struct Tuple_2_Guid_String__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Tuple_2_Guid_String__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Tuple_2_Guid_String__1__VTable vtable; +}; + struct KeyValuePair_2_System_String_System_Tuple_2___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1400815,6 +1424330,21 @@ struct ICollection_1_Mono_Net_Security_MobileTlsProvider___Class { struct ICollection_1_Mono_Net_Security_MobileTlsProvider___VTable vtable; }; +struct MobileTlsProvider___VTable { +}; + +struct MobileTlsProvider___StaticFields { +}; + +struct MobileTlsProvider___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MobileTlsProvider___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MobileTlsProvider___VTable vtable; +}; + struct KeyValuePair_2_System_Guid_Mono_Net_Security_MobileTlsProvider___VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1401053,6 +1424583,66 @@ struct BigIntegerCalculator__Class { struct BigIntegerCalculator__VTable vtable; }; +struct TouchScreenKeyboardType___VTable { +}; + +struct TouchScreenKeyboardType___StaticFields { +}; + +struct TouchScreenKeyboardType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TouchScreenKeyboardType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TouchScreenKeyboardType___VTable vtable; +}; + +struct TMP_InputField_CharacterValidation___VTable { +}; + +struct TMP_InputField_CharacterValidation___StaticFields { +}; + +struct TMP_InputField_CharacterValidation___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TMP_InputField_CharacterValidation___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TMP_InputField_CharacterValidation___VTable vtable; +}; + +struct TMP_InputField_LineType___VTable { +}; + +struct TMP_InputField_LineType___StaticFields { +}; + +struct TMP_InputField_LineType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TMP_InputField_LineType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TMP_InputField_LineType___VTable vtable; +}; + +struct TMP_InputField_InputType___VTable { +}; + +struct TMP_InputField_InputType___StaticFields { +}; + +struct TMP_InputField_InputType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TMP_InputField_InputType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TMP_InputField_InputType___VTable vtable; +}; + struct IScrollHandler__Array { struct IScrollHandler__Array__Class *klass; MonitorData *monitor; @@ -1401076,6 +1424666,21 @@ struct IScrollHandler__Array__Class { struct IScrollHandler__Array__VTable vtable; }; +struct TMP_InputValidator___VTable { +}; + +struct TMP_InputValidator___StaticFields { +}; + +struct TMP_InputValidator___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TMP_InputValidator___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TMP_InputValidator___VTable vtable; +}; + struct ILayoutController { struct ILayoutController__Class *klass; MonitorData *monitor; @@ -1401098,6 +1424703,111 @@ struct ILayoutController__Class { struct ILayoutController__VTable vtable; }; +struct TMP_InputField_TextSelectionEvent___VTable { +}; + +struct TMP_InputField_TextSelectionEvent___StaticFields { +}; + +struct TMP_InputField_TextSelectionEvent___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TMP_InputField_TextSelectionEvent___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TMP_InputField_TextSelectionEvent___VTable vtable; +}; + +struct TMP_InputField_OnChangeEvent___VTable { +}; + +struct TMP_InputField_OnChangeEvent___StaticFields { +}; + +struct TMP_InputField_OnChangeEvent___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TMP_InputField_OnChangeEvent___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TMP_InputField_OnChangeEvent___VTable vtable; +}; + +struct TMP_InputField_SelectionEvent___VTable { +}; + +struct TMP_InputField_SelectionEvent___StaticFields { +}; + +struct TMP_InputField_SelectionEvent___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TMP_InputField_SelectionEvent___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TMP_InputField_SelectionEvent___VTable vtable; +}; + +struct TMP_InputField_ContentType___VTable { +}; + +struct TMP_InputField_ContentType___StaticFields { +}; + +struct TMP_InputField_ContentType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TMP_InputField_ContentType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TMP_InputField_ContentType___VTable vtable; +}; + +struct TMP_InputField_TouchScreenKeyboardEvent___VTable { +}; + +struct TMP_InputField_TouchScreenKeyboardEvent___StaticFields { +}; + +struct TMP_InputField_TouchScreenKeyboardEvent___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TMP_InputField_TouchScreenKeyboardEvent___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TMP_InputField_TouchScreenKeyboardEvent___VTable vtable; +}; + +struct TMP_InputField_OnValidateInput___VTable { +}; + +struct TMP_InputField_OnValidateInput___StaticFields { +}; + +struct TMP_InputField_OnValidateInput___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TMP_InputField_OnValidateInput___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TMP_InputField_OnValidateInput___VTable vtable; +}; + +struct RectTransform___VTable { +}; + +struct RectTransform___StaticFields { +}; + +struct RectTransform___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RectTransform___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RectTransform___VTable vtable; +}; + struct Converter { struct Converter__Class *klass; MonitorData *monitor; @@ -1401215,6 +1424925,66 @@ struct Converter__Class { struct Converter__VTable vtable; }; +struct TMP_InputField_SubmitEvent___VTable { +}; + +struct TMP_InputField_SubmitEvent___StaticFields { +}; + +struct TMP_InputField_SubmitEvent___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TMP_InputField_SubmitEvent___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TMP_InputField_SubmitEvent___VTable vtable; +}; + +struct TMP_Text___VTable { +}; + +struct TMP_Text___StaticFields { +}; + +struct TMP_Text___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TMP_Text___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TMP_Text___VTable vtable; +}; + +struct Graphic___VTable { +}; + +struct Graphic___StaticFields { +}; + +struct Graphic___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Graphic___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Graphic___VTable vtable; +}; + +struct Scrollbar___VTable { +}; + +struct Scrollbar___StaticFields { +}; + +struct Scrollbar___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Scrollbar___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Scrollbar___VTable vtable; +}; + struct TMP_FontUtilities { struct TMP_FontUtilities__Class *klass; MonitorData *monitor; @@ -1401363,6 +1425133,11 @@ struct IOrderedEnumerable_1_TMPro_KerningPair___Class { struct IOrderedEnumerable_1_TMPro_KerningPair___VTable vtable; }; +struct IDeserializationCallback { + struct IDeserializationCallback__Class *klass; + MonitorData *monitor; +}; + struct __declspec(align(8)) List_1_System_Runtime_Serialization_IDeserializationCallback___Fields { struct IDeserializationCallback__Array *_items; int32_t _size; @@ -1401376,11 +1425151,6 @@ struct List_1_System_Runtime_Serialization_IDeserializationCallback_ { struct List_1_System_Runtime_Serialization_IDeserializationCallback___Fields fields; }; -struct IDeserializationCallback { - struct IDeserializationCallback__Class *klass; - MonitorData *monitor; -}; - struct IDeserializationCallback__Array { struct IDeserializationCallback__Array__Class *klass; MonitorData *monitor; @@ -1401513,6 +1425283,21 @@ struct IObjectReference__Class { struct IObjectReference__VTable vtable; }; +struct Texture2D__1__VTable { +}; + +struct Texture2D__1__StaticFields { +}; + +struct Texture2D__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Texture2D__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Texture2D__1__VTable vtable; +}; + struct IOrderedEnumerable_1_TMPro_TMP_Character_ { struct IOrderedEnumerable_1_TMPro_TMP_Character___Class *klass; MonitorData *monitor; @@ -1401555,6 +1425340,17 @@ struct IOrderedEnumerable_1_UnityEngine_TextCore_Glyph___Class { struct IOrderedEnumerable_1_UnityEngine_TextCore_Glyph___VTable vtable; }; +struct KeyValuePair_2_System_Runtime_Serialization_MemberHolder_System_Reflection_MemberInfo_ { + struct MemberHolder *key; + struct MemberInfo_1__Array *value; +}; + +struct KeyValuePair_2_System_Runtime_Serialization_MemberHolder_System_Reflection_MemberInfo___Boxed { + struct KeyValuePair_2_System_Runtime_Serialization_MemberHolder_System_Reflection_MemberInfo___Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_System_Runtime_Serialization_MemberHolder_System_Reflection_MemberInfo_ fields; +}; + struct __declspec(align(8)) ConcurrentDictionary_2_System_Runtime_Serialization_MemberHolder_System_Reflection_MemberInfo___Fields { struct ConcurrentDictionary_2_TKey_TValue_Tables_System_Runtime_Serialization_MemberHolder_System_Reflection_MemberInfo_ *_tables; struct IEqualityComparer_1_System_Runtime_Serialization_MemberHolder_ *_comparer; @@ -1401571,18 +1425367,6 @@ struct ConcurrentDictionary_2_System_Runtime_Serialization_MemberHolder_System_R struct ConcurrentDictionary_2_System_Runtime_Serialization_MemberHolder_System_Reflection_MemberInfo___Fields fields; }; -struct __declspec(align(8)) ConcurrentDictionary_2_TKey_TValue_Tables_System_Runtime_Serialization_MemberHolder_System_Reflection_MemberInfo___Fields { - struct ConcurrentDictionary_2_TKey_TValue_Node_System_Runtime_Serialization_MemberHolder_System_Reflection_MemberInfo___Array *_buckets; - struct Object__Array *_locks; - struct Int32__Array *_countPerLock; -}; - -struct ConcurrentDictionary_2_TKey_TValue_Tables_System_Runtime_Serialization_MemberHolder_System_Reflection_MemberInfo_ { - struct ConcurrentDictionary_2_TKey_TValue_Tables_System_Runtime_Serialization_MemberHolder_System_Reflection_MemberInfo___Class *klass; - MonitorData *monitor; - struct ConcurrentDictionary_2_TKey_TValue_Tables_System_Runtime_Serialization_MemberHolder_System_Reflection_MemberInfo___Fields fields; -}; - struct __declspec(align(8)) ConcurrentDictionary_2_TKey_TValue_Node_System_Runtime_Serialization_MemberHolder_System_Reflection_MemberInfo___Fields { struct MemberHolder *_key; struct MemberInfo_1__Array *_value; @@ -1401596,6 +1425380,18 @@ struct ConcurrentDictionary_2_TKey_TValue_Node_System_Runtime_Serialization_Memb struct ConcurrentDictionary_2_TKey_TValue_Node_System_Runtime_Serialization_MemberHolder_System_Reflection_MemberInfo___Fields fields; }; +struct __declspec(align(8)) ConcurrentDictionary_2_TKey_TValue_Tables_System_Runtime_Serialization_MemberHolder_System_Reflection_MemberInfo___Fields { + struct ConcurrentDictionary_2_TKey_TValue_Node_System_Runtime_Serialization_MemberHolder_System_Reflection_MemberInfo___Array *_buckets; + struct Object__Array *_locks; + struct Int32__Array *_countPerLock; +}; + +struct ConcurrentDictionary_2_TKey_TValue_Tables_System_Runtime_Serialization_MemberHolder_System_Reflection_MemberInfo_ { + struct ConcurrentDictionary_2_TKey_TValue_Tables_System_Runtime_Serialization_MemberHolder_System_Reflection_MemberInfo___Class *klass; + MonitorData *monitor; + struct ConcurrentDictionary_2_TKey_TValue_Tables_System_Runtime_Serialization_MemberHolder_System_Reflection_MemberInfo___Fields fields; +}; + struct ConcurrentDictionary_2_TKey_TValue_Node_System_Runtime_Serialization_MemberHolder_System_Reflection_MemberInfo___Array { struct ConcurrentDictionary_2_TKey_TValue_Node_System_Runtime_Serialization_MemberHolder_System_Reflection_MemberInfo___Array__Class *klass; MonitorData *monitor; @@ -1401609,17 +1425405,6 @@ struct IEqualityComparer_1_System_Runtime_Serialization_MemberHolder_ { MonitorData *monitor; }; -struct KeyValuePair_2_System_Runtime_Serialization_MemberHolder_System_Reflection_MemberInfo_ { - struct MemberHolder *key; - struct MemberInfo_1__Array *value; -}; - -struct KeyValuePair_2_System_Runtime_Serialization_MemberHolder_System_Reflection_MemberInfo___Boxed { - struct KeyValuePair_2_System_Runtime_Serialization_MemberHolder_System_Reflection_MemberInfo___Class *klass; - MonitorData *monitor; - struct KeyValuePair_2_System_Runtime_Serialization_MemberHolder_System_Reflection_MemberInfo_ fields; -}; - struct KeyValuePair_2_System_Runtime_Serialization_MemberHolder_System_Reflection_MemberInfo___Array { struct KeyValuePair_2_System_Runtime_Serialization_MemberHolder_System_Reflection_MemberInfo___Array__Class *klass; MonitorData *monitor; @@ -1401811,6 +1425596,21 @@ struct ICollection_1_System_Reflection_MemberInfo___Class { struct ICollection_1_System_Reflection_MemberInfo___VTable vtable; }; +struct MemberInfo___VTable { +}; + +struct MemberInfo___StaticFields { +}; + +struct MemberInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MemberInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MemberInfo___VTable vtable; +}; + struct IEnumerator_1_KeyValuePair_2_System_Runtime_Serialization_MemberHolder_System_Reflection_MemberInfo___VTable { VirtualInvokeData get_Current; }; @@ -1402084,6 +1425884,17 @@ struct FontEngine__Class { struct FontEngine__VTable vtable; }; +struct KeyValuePair_2_System_Type_System_Runtime_Serialization_SerializationEvents_ { + struct Type *key; + struct SerializationEvents *value; +}; + +struct KeyValuePair_2_System_Type_System_Runtime_Serialization_SerializationEvents___Boxed { + struct KeyValuePair_2_System_Type_System_Runtime_Serialization_SerializationEvents___Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_System_Type_System_Runtime_Serialization_SerializationEvents_ fields; +}; + struct __declspec(align(8)) ConcurrentDictionary_2_System_Type_System_Runtime_Serialization_SerializationEvents___Fields { struct ConcurrentDictionary_2_TKey_TValue_Tables_System_Type_System_Runtime_Serialization_SerializationEvents_ *_tables; struct IEqualityComparer_1_System_Type_ *_comparer; @@ -1402100,18 +1425911,6 @@ struct ConcurrentDictionary_2_System_Type_System_Runtime_Serialization_Serializa struct ConcurrentDictionary_2_System_Type_System_Runtime_Serialization_SerializationEvents___Fields fields; }; -struct __declspec(align(8)) ConcurrentDictionary_2_TKey_TValue_Tables_System_Type_System_Runtime_Serialization_SerializationEvents___Fields { - struct ConcurrentDictionary_2_TKey_TValue_Node_System_Type_System_Runtime_Serialization_SerializationEvents___Array *_buckets; - struct Object__Array *_locks; - struct Int32__Array *_countPerLock; -}; - -struct ConcurrentDictionary_2_TKey_TValue_Tables_System_Type_System_Runtime_Serialization_SerializationEvents_ { - struct ConcurrentDictionary_2_TKey_TValue_Tables_System_Type_System_Runtime_Serialization_SerializationEvents___Class *klass; - MonitorData *monitor; - struct ConcurrentDictionary_2_TKey_TValue_Tables_System_Type_System_Runtime_Serialization_SerializationEvents___Fields fields; -}; - struct __declspec(align(8)) ConcurrentDictionary_2_TKey_TValue_Node_System_Type_System_Runtime_Serialization_SerializationEvents___Fields { struct Type *_key; struct SerializationEvents *_value; @@ -1402125,6 +1425924,18 @@ struct ConcurrentDictionary_2_TKey_TValue_Node_System_Type_System_Runtime_Serial struct ConcurrentDictionary_2_TKey_TValue_Node_System_Type_System_Runtime_Serialization_SerializationEvents___Fields fields; }; +struct __declspec(align(8)) ConcurrentDictionary_2_TKey_TValue_Tables_System_Type_System_Runtime_Serialization_SerializationEvents___Fields { + struct ConcurrentDictionary_2_TKey_TValue_Node_System_Type_System_Runtime_Serialization_SerializationEvents___Array *_buckets; + struct Object__Array *_locks; + struct Int32__Array *_countPerLock; +}; + +struct ConcurrentDictionary_2_TKey_TValue_Tables_System_Type_System_Runtime_Serialization_SerializationEvents_ { + struct ConcurrentDictionary_2_TKey_TValue_Tables_System_Type_System_Runtime_Serialization_SerializationEvents___Class *klass; + MonitorData *monitor; + struct ConcurrentDictionary_2_TKey_TValue_Tables_System_Type_System_Runtime_Serialization_SerializationEvents___Fields fields; +}; + struct ConcurrentDictionary_2_TKey_TValue_Node_System_Type_System_Runtime_Serialization_SerializationEvents___Array { struct ConcurrentDictionary_2_TKey_TValue_Node_System_Type_System_Runtime_Serialization_SerializationEvents___Array__Class *klass; MonitorData *monitor; @@ -1402133,17 +1425944,6 @@ struct ConcurrentDictionary_2_TKey_TValue_Node_System_Type_System_Runtime_Serial struct ConcurrentDictionary_2_TKey_TValue_Node_System_Type_System_Runtime_Serialization_SerializationEvents_ *vector[32]; }; -struct KeyValuePair_2_System_Type_System_Runtime_Serialization_SerializationEvents_ { - struct Type *key; - struct SerializationEvents *value; -}; - -struct KeyValuePair_2_System_Type_System_Runtime_Serialization_SerializationEvents___Boxed { - struct KeyValuePair_2_System_Type_System_Runtime_Serialization_SerializationEvents___Class *klass; - MonitorData *monitor; - struct KeyValuePair_2_System_Type_System_Runtime_Serialization_SerializationEvents_ fields; -}; - struct KeyValuePair_2_System_Type_System_Runtime_Serialization_SerializationEvents___Array { struct KeyValuePair_2_System_Type_System_Runtime_Serialization_SerializationEvents___Array__Class *klass; MonitorData *monitor; @@ -1402276,6 +1426076,21 @@ struct ICollection_1_System_Runtime_Serialization_SerializationEvents___Class { struct ICollection_1_System_Runtime_Serialization_SerializationEvents___VTable vtable; }; +struct SerializationEvents___VTable { +}; + +struct SerializationEvents___StaticFields { +}; + +struct SerializationEvents___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SerializationEvents___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SerializationEvents___VTable vtable; +}; + struct IEnumerator_1_KeyValuePair_2_System_Type_System_Runtime_Serialization_SerializationEvents___VTable { VirtualInvokeData get_Current; }; @@ -1402729,6 +1426544,21 @@ struct StringBuilderCache_1__Class { struct StringBuilderCache_1__VTable vtable; }; +struct XName___VTable { +}; + +struct XName___StaticFields { +}; + +struct XName___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct XName___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct XName___VTable vtable; +}; + struct IOrderedEnumerable_1_TMPro_TMP_SpriteCharacter_ { struct IOrderedEnumerable_1_TMPro_TMP_SpriteCharacter___Class *klass; MonitorData *monitor; @@ -1402771,6 +1426601,11 @@ struct IOrderedEnumerable_1_TMPro_TMP_SpriteGlyph___Class { struct IOrderedEnumerable_1_TMPro_TMP_SpriteGlyph___VTable vtable; }; +struct IMaterialModifier { + struct IMaterialModifier__Class *klass; + MonitorData *monitor; +}; + struct __declspec(align(8)) List_1_UnityEngine_UI_IMaterialModifier___Fields { struct IMaterialModifier__Array *_items; int32_t _size; @@ -1402784,11 +1426619,6 @@ struct List_1_UnityEngine_UI_IMaterialModifier_ { struct List_1_UnityEngine_UI_IMaterialModifier___Fields fields; }; -struct IMaterialModifier { - struct IMaterialModifier__Class *klass; - MonitorData *monitor; -}; - struct IMaterialModifier__Array { struct IMaterialModifier__Array__Class *klass; MonitorData *monitor; @@ -1403493,6 +1427323,21 @@ struct IEnumerator_1_System_Reflection_CustomAttributeData___Class { struct IEnumerator_1_System_Reflection_CustomAttributeData___VTable vtable; }; +struct Dictionary_2_System_ValueTuple_2_System_Runtime_InteropServices_ICustomMarshaler__1__VTable { +}; + +struct Dictionary_2_System_ValueTuple_2_System_Runtime_InteropServices_ICustomMarshaler__1__StaticFields { +}; + +struct Dictionary_2_System_ValueTuple_2_System_Runtime_InteropServices_ICustomMarshaler__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_System_ValueTuple_2_System_Runtime_InteropServices_ICustomMarshaler__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_System_ValueTuple_2_System_Runtime_InteropServices_ICustomMarshaler__1__VTable vtable; +}; + struct RuntimeInformation { struct RuntimeInformation__Class *klass; MonitorData *monitor; @@ -1403883,6 +1427728,21 @@ struct ILayerable__Class { struct ILayerable__VTable vtable; }; +struct PlayableDirector___VTable { +}; + +struct PlayableDirector___StaticFields { +}; + +struct PlayableDirector___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PlayableDirector___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PlayableDirector___VTable vtable; +}; + struct ICollection_1_UnityEngine_Timeline_TimelineClip_ { struct ICollection_1_UnityEngine_Timeline_TimelineClip___Class *klass; MonitorData *monitor; @@ -1404463,6 +1428323,91677 @@ struct GlobalizationMode__Class { struct GlobalizationMode__VTable vtable; }; +struct ValidateNames { + struct ValidateNames__Class *klass; + MonitorData *monitor; +}; + +struct ValidateNames__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ValidateNames__StaticFields { + struct XmlCharType xmlCharType; +}; + +struct ValidateNames__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ValidateNames__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ValidateNames__VTable vtable; +}; + +struct ICollection_1_System_Xml_IDtdDefaultAttributeInfo_ { + struct ICollection_1_System_Xml_IDtdDefaultAttributeInfo___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_System_Xml_IDtdDefaultAttributeInfo___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_System_Xml_IDtdDefaultAttributeInfo___StaticFields { +}; + +struct ICollection_1_System_Xml_IDtdDefaultAttributeInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_System_Xml_IDtdDefaultAttributeInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_System_Xml_IDtdDefaultAttributeInfo___VTable vtable; +}; + +struct EmptyArray_1_System_Reflection_ParameterInfo_ { + struct EmptyArray_1_System_Reflection_ParameterInfo___Class *klass; + MonitorData *monitor; +}; + +struct EmptyArray_1_System_Reflection_ParameterInfo___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct EmptyArray_1_System_Reflection_ParameterInfo___StaticFields { + struct ParameterInfo__Array *Value; +}; + +struct EmptyArray_1_System_Reflection_ParameterInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EmptyArray_1_System_Reflection_ParameterInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EmptyArray_1_System_Reflection_ParameterInfo___VTable vtable; +}; + +struct DateTimeConstantAttribute__Array { + struct DateTimeConstantAttribute__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct DateTimeConstantAttribute *vector[32]; +}; + +struct DateTimeConstantAttribute__Array__VTable { +}; + +struct DateTimeConstantAttribute__Array__StaticFields { +}; + +struct DateTimeConstantAttribute__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DateTimeConstantAttribute__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DateTimeConstantAttribute__Array__VTable vtable; +}; + +struct DecimalConstantAttribute__Array { + struct DecimalConstantAttribute__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct DecimalConstantAttribute *vector[32]; +}; + +struct DecimalConstantAttribute__Array__VTable { +}; + +struct DecimalConstantAttribute__Array__StaticFields { +}; + +struct DecimalConstantAttribute__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DecimalConstantAttribute__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DecimalConstantAttribute__Array__VTable vtable; +}; + +struct __declspec(align(8)) List_1_System_Reflection_Module___Fields { + struct Module__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_System_Reflection_Module_ { + struct List_1_System_Reflection_Module___Class *klass; + MonitorData *monitor; + struct List_1_System_Reflection_Module___Fields fields; +}; + +struct IEnumerator_1_System_Reflection_Module_ { + struct IEnumerator_1_System_Reflection_Module___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerator_1_System_Reflection_Module___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_System_Reflection_Module___StaticFields { +}; + +struct IEnumerator_1_System_Reflection_Module___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_System_Reflection_Module___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_System_Reflection_Module___VTable vtable; +}; + +struct List_1_System_Reflection_Module___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_System_Reflection_Module___StaticFields { + struct Module__Array *s_emptyArray; +}; + +struct List_1_System_Reflection_Module___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_System_Reflection_Module___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_System_Reflection_Module___VTable vtable; +}; + +struct ICollection_1_System_Reflection_CustomAttributeNamedArgument_ { + struct ICollection_1_System_Reflection_CustomAttributeNamedArgument___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_System_Reflection_CustomAttributeNamedArgument___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_System_Reflection_CustomAttributeNamedArgument___StaticFields { +}; + +struct ICollection_1_System_Reflection_CustomAttributeNamedArgument___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_System_Reflection_CustomAttributeNamedArgument___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_System_Reflection_CustomAttributeNamedArgument___VTable vtable; +}; + +struct MonoCustomAttrs { + struct MonoCustomAttrs__Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_System_AttributeUsageAttribute_ { + int32_t hashCode; + int32_t next; + struct Type *key; + struct AttributeUsageAttribute *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_System_AttributeUsageAttribute___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Type_System_AttributeUsageAttribute___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Type_System_AttributeUsageAttribute_ fields; +}; + +struct __declspec(align(8)) Dictionary_2_System_Type_System_AttributeUsageAttribute___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_System_Type_System_AttributeUsageAttribute___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_System_Type_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_System_AttributeUsageAttribute_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_System_AttributeUsageAttribute_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_System_Type_System_AttributeUsageAttribute_ { + struct Dictionary_2_System_Type_System_AttributeUsageAttribute___Class *klass; + MonitorData *monitor; + struct Dictionary_2_System_Type_System_AttributeUsageAttribute___Fields fields; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_System_AttributeUsageAttribute___Array { + struct Dictionary_2_TKey_TValue_Entry_System_Type_System_AttributeUsageAttribute___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Dictionary_2_TKey_TValue_Entry_System_Type_System_AttributeUsageAttribute_ vector[32]; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_KeyCollection_System_Type_System_AttributeUsageAttribute___Fields { + struct Dictionary_2_System_Type_System_AttributeUsageAttribute_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_System_AttributeUsageAttribute_ { + struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_System_AttributeUsageAttribute___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_System_AttributeUsageAttribute___Fields fields; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_ValueCollection_System_Type_System_AttributeUsageAttribute___Fields { + struct Dictionary_2_System_Type_System_AttributeUsageAttribute_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_System_AttributeUsageAttribute_ { + struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_System_AttributeUsageAttribute___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_System_AttributeUsageAttribute___Fields fields; +}; + +struct AttributeUsageAttribute__Array { + struct AttributeUsageAttribute__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct AttributeUsageAttribute *vector[32]; +}; + +struct IEnumerator_1_System_AttributeUsageAttribute_ { + struct IEnumerator_1_System_AttributeUsageAttribute___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_System_AttributeUsageAttribute_ { + struct ICollection_1_System_AttributeUsageAttribute___Class *klass; + MonitorData *monitor; +}; + +struct KeyValuePair_2_System_Type_System_AttributeUsageAttribute_ { + struct Type *key; + struct AttributeUsageAttribute *value; +}; + +struct KeyValuePair_2_System_Type_System_AttributeUsageAttribute___Boxed { + struct KeyValuePair_2_System_Type_System_AttributeUsageAttribute___Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_System_Type_System_AttributeUsageAttribute_ fields; +}; + +struct KeyValuePair_2_System_Type_System_AttributeUsageAttribute___Array { + struct KeyValuePair_2_System_Type_System_AttributeUsageAttribute___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct KeyValuePair_2_System_Type_System_AttributeUsageAttribute_ vector[32]; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Type_System_AttributeUsageAttribute_ { + struct IEnumerator_1_KeyValuePair_2_System_Type_System_AttributeUsageAttribute___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_System_AttributeUsageAttribute_ { + struct IEnumerable_1_System_AttributeUsageAttribute___Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_System_AttributeUsageAttribute___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_System_AttributeUsageAttribute___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_System_AttributeUsageAttribute___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_System_Type_System_AttributeUsageAttribute___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_System_Type_System_AttributeUsageAttribute___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_System_AttributeUsageAttribute___Array__VTable { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_System_AttributeUsageAttribute___Array__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_System_AttributeUsageAttribute___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_System_Type_System_AttributeUsageAttribute___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_System_Type_System_AttributeUsageAttribute___Array__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_System_AttributeUsageAttribute___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TKey__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_System_AttributeUsageAttribute___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_System_AttributeUsageAttribute___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_System_AttributeUsageAttribute___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_System_AttributeUsageAttribute___VTable vtable; +}; + +struct AttributeUsageAttribute__Array__VTable { +}; + +struct AttributeUsageAttribute__Array__StaticFields { +}; + +struct AttributeUsageAttribute__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct AttributeUsageAttribute__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct AttributeUsageAttribute__Array__VTable vtable; +}; + +struct IEnumerator_1_System_AttributeUsageAttribute___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_System_AttributeUsageAttribute___StaticFields { +}; + +struct IEnumerator_1_System_AttributeUsageAttribute___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_System_AttributeUsageAttribute___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_System_AttributeUsageAttribute___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_System_AttributeUsageAttribute___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TValue__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_System_AttributeUsageAttribute___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_System_AttributeUsageAttribute___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_System_AttributeUsageAttribute___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_System_AttributeUsageAttribute___VTable vtable; +}; + +struct ICollection_1_System_AttributeUsageAttribute___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_System_AttributeUsageAttribute___StaticFields { +}; + +struct ICollection_1_System_AttributeUsageAttribute___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_System_AttributeUsageAttribute___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_System_AttributeUsageAttribute___VTable vtable; +}; + +struct AttributeUsageAttribute___VTable { +}; + +struct AttributeUsageAttribute___StaticFields { +}; + +struct AttributeUsageAttribute___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct AttributeUsageAttribute___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct AttributeUsageAttribute___VTable vtable; +}; + +struct KeyValuePair_2_System_Type_System_AttributeUsageAttribute___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct KeyValuePair_2_System_Type_System_AttributeUsageAttribute___StaticFields { +}; + +struct KeyValuePair_2_System_Type_System_AttributeUsageAttribute___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_Type_System_AttributeUsageAttribute___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_Type_System_AttributeUsageAttribute___VTable vtable; +}; + +struct KeyValuePair_2_System_Type_System_AttributeUsageAttribute___Array__VTable { +}; + +struct KeyValuePair_2_System_Type_System_AttributeUsageAttribute___Array__StaticFields { +}; + +struct KeyValuePair_2_System_Type_System_AttributeUsageAttribute___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_Type_System_AttributeUsageAttribute___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_Type_System_AttributeUsageAttribute___Array__VTable vtable; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Type_System_AttributeUsageAttribute___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Type_System_AttributeUsageAttribute___StaticFields { +}; + +struct IEnumerator_1_KeyValuePair_2_System_Type_System_AttributeUsageAttribute___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_KeyValuePair_2_System_Type_System_AttributeUsageAttribute___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_KeyValuePair_2_System_Type_System_AttributeUsageAttribute___VTable vtable; +}; + +struct IEnumerable_1_System_AttributeUsageAttribute___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_System_AttributeUsageAttribute___StaticFields { +}; + +struct IEnumerable_1_System_AttributeUsageAttribute___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_System_AttributeUsageAttribute___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_System_AttributeUsageAttribute___VTable vtable; +}; + +struct Dictionary_2_System_Type_System_AttributeUsageAttribute___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Values; + VirtualInvokeData ContainsKey; + VirtualInvokeData Add; + VirtualInvokeData Remove; + VirtualInvokeData TryGetValue; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add; + VirtualInvokeData Clear; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_get_Item; + VirtualInvokeData System_Collections_IDictionary_set_Item; + VirtualInvokeData System_Collections_IDictionary_get_Keys; + VirtualInvokeData System_Collections_IDictionary_get_Values; + VirtualInvokeData System_Collections_IDictionary_Contains; + VirtualInvokeData System_Collections_IDictionary_Add; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IDictionary_get_IsReadOnly; + VirtualInvokeData System_Collections_IDictionary_get_IsFixedSize; + VirtualInvokeData System_Collections_IDictionary_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_Remove; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData TryGetValue_1; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Values; + VirtualInvokeData get_Count_2; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct Dictionary_2_System_Type_System_AttributeUsageAttribute___StaticFields { +}; + +struct Dictionary_2_System_Type_System_AttributeUsageAttribute___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_System_Type_System_AttributeUsageAttribute___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_System_Type_System_AttributeUsageAttribute___VTable vtable; +}; + +struct MonoCustomAttrs__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct MonoCustomAttrs__StaticFields { + struct Assembly *corlib; + struct Dictionary_2_System_Type_System_AttributeUsageAttribute_ *usage_cache; + struct AttributeUsageAttribute *DefaultAttributeUsage; +}; + +struct MonoCustomAttrs__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MonoCustomAttrs__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MonoCustomAttrs__VTable vtable; +}; + +struct CommonUsages_1 { + struct CommonUsages_1__Class *klass; + MonitorData *monitor; +}; + +struct InputFeatureUsage_1_InputTrackingState_ { + struct String *_name_k__BackingField; +}; + +struct InputFeatureUsage_1_InputTrackingState___Boxed { + struct InputFeatureUsage_1_InputTrackingState___Class *klass; + MonitorData *monitor; + struct InputFeatureUsage_1_InputTrackingState_ fields; +}; + +struct InputFeatureUsage_1_InputTrackingState___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Equals_1; +}; + +struct InputFeatureUsage_1_InputTrackingState___StaticFields { +}; + +struct InputFeatureUsage_1_InputTrackingState___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputFeatureUsage_1_InputTrackingState___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputFeatureUsage_1_InputTrackingState___VTable vtable; +}; + +struct CommonUsages_1__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct CommonUsages_1__StaticFields { + struct InputFeatureUsage_1_System_Boolean_ isTracked; + struct InputFeatureUsage_1_System_Boolean_ primaryButton; + struct InputFeatureUsage_1_System_Boolean_ primaryTouch; + struct InputFeatureUsage_1_System_Boolean_ secondaryButton; + struct InputFeatureUsage_1_System_Boolean_ secondaryTouch; + struct InputFeatureUsage_1_System_Boolean_ gripButton; + struct InputFeatureUsage_1_System_Boolean_ triggerButton; + struct InputFeatureUsage_1_System_Boolean_ menuButton; + struct InputFeatureUsage_1_System_Boolean_ primary2DAxisClick; + struct InputFeatureUsage_1_System_Boolean_ primary2DAxisTouch; + struct InputFeatureUsage_1_System_Boolean_ secondary2DAxisClick; + struct InputFeatureUsage_1_System_Boolean_ secondary2DAxisTouch; + struct InputFeatureUsage_1_System_Boolean_ userPresence; + struct InputFeatureUsage_1_InputTrackingState_ trackingState; + struct InputFeatureUsage_1_System_Single_ batteryLevel; + struct InputFeatureUsage_1_System_Single_ trigger; + struct InputFeatureUsage_1_System_Single_ grip; + struct InputFeatureUsage_1_UnityEngine_Vector2_ primary2DAxis; + struct InputFeatureUsage_1_UnityEngine_Vector2_ secondary2DAxis; + struct InputFeatureUsage_1_UnityEngine_Vector3_ devicePosition; + struct InputFeatureUsage_1_UnityEngine_Vector3_ leftEyePosition; + struct InputFeatureUsage_1_UnityEngine_Vector3_ rightEyePosition; + struct InputFeatureUsage_1_UnityEngine_Vector3_ centerEyePosition; + struct InputFeatureUsage_1_UnityEngine_Vector3_ colorCameraPosition; + struct InputFeatureUsage_1_UnityEngine_Vector3_ deviceVelocity; + struct InputFeatureUsage_1_UnityEngine_Vector3_ deviceAngularVelocity; + struct InputFeatureUsage_1_UnityEngine_Vector3_ leftEyeVelocity; + struct InputFeatureUsage_1_UnityEngine_Vector3_ leftEyeAngularVelocity; + struct InputFeatureUsage_1_UnityEngine_Vector3_ rightEyeVelocity; + struct InputFeatureUsage_1_UnityEngine_Vector3_ rightEyeAngularVelocity; + struct InputFeatureUsage_1_UnityEngine_Vector3_ centerEyeVelocity; + struct InputFeatureUsage_1_UnityEngine_Vector3_ centerEyeAngularVelocity; + struct InputFeatureUsage_1_UnityEngine_Vector3_ colorCameraVelocity; + struct InputFeatureUsage_1_UnityEngine_Vector3_ colorCameraAngularVelocity; + struct InputFeatureUsage_1_UnityEngine_Vector3_ deviceAcceleration; + struct InputFeatureUsage_1_UnityEngine_Vector3_ deviceAngularAcceleration; + struct InputFeatureUsage_1_UnityEngine_Vector3_ leftEyeAcceleration; + struct InputFeatureUsage_1_UnityEngine_Vector3_ leftEyeAngularAcceleration; + struct InputFeatureUsage_1_UnityEngine_Vector3_ rightEyeAcceleration; + struct InputFeatureUsage_1_UnityEngine_Vector3_ rightEyeAngularAcceleration; + struct InputFeatureUsage_1_UnityEngine_Vector3_ centerEyeAcceleration; + struct InputFeatureUsage_1_UnityEngine_Vector3_ centerEyeAngularAcceleration; + struct InputFeatureUsage_1_UnityEngine_Vector3_ colorCameraAcceleration; + struct InputFeatureUsage_1_UnityEngine_Vector3_ colorCameraAngularAcceleration; + struct InputFeatureUsage_1_UnityEngine_Quaternion_ deviceRotation; + struct InputFeatureUsage_1_UnityEngine_Quaternion_ leftEyeRotation; + struct InputFeatureUsage_1_UnityEngine_Quaternion_ rightEyeRotation; + struct InputFeatureUsage_1_UnityEngine_Quaternion_ centerEyeRotation; + struct InputFeatureUsage_1_UnityEngine_Quaternion_ colorCameraRotation; + struct InputFeatureUsage_1_Hand_ handData; + struct InputFeatureUsage_1_Eyes_ eyesData; + struct InputFeatureUsage_1_UnityEngine_Vector2_ dPad; + struct InputFeatureUsage_1_System_Single_ indexFinger; + struct InputFeatureUsage_1_System_Single_ middleFinger; + struct InputFeatureUsage_1_System_Single_ ringFinger; + struct InputFeatureUsage_1_System_Single_ pinkyFinger; + struct InputFeatureUsage_1_System_Boolean_ thumbrest; + struct InputFeatureUsage_1_System_Single_ indexTouch; + struct InputFeatureUsage_1_System_Single_ thumbTouch; +}; + +struct CommonUsages_1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CommonUsages_1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CommonUsages_1__VTable vtable; +}; + +struct ICollection_1_System_Reflection_CustomAttributeTypedArgument_ { + struct ICollection_1_System_Reflection_CustomAttributeTypedArgument___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_System_Reflection_CustomAttributeTypedArgument___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_System_Reflection_CustomAttributeTypedArgument___StaticFields { +}; + +struct ICollection_1_System_Reflection_CustomAttributeTypedArgument___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_System_Reflection_CustomAttributeTypedArgument___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_System_Reflection_CustomAttributeTypedArgument___VTable vtable; +}; + +struct Assert { + struct Assert__Class *klass; + MonitorData *monitor; +}; + +struct Assert__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Assert__StaticFields { + bool raiseExceptions; +}; + +struct Assert__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Assert__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Assert__VTable vtable; +}; + +struct IDeepCloneable { + struct IDeepCloneable__Class *klass; + MonitorData *monitor; +}; + +struct IDeepCloneable__VTable { + VirtualInvokeData DeepClone; +}; + +struct IDeepCloneable__StaticFields { +}; + +struct IDeepCloneable__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IDeepCloneable__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IDeepCloneable__VTable vtable; +}; + +struct XmlAtomicValue__Array { + struct XmlAtomicValue__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct XmlAtomicValue *vector[32]; +}; + +struct XmlAtomicValue__Array__VTable { +}; + +struct XmlAtomicValue__Array__StaticFields { +}; + +struct XmlAtomicValue__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct XmlAtomicValue__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct XmlAtomicValue__Array__VTable vtable; +}; + +struct XRManagementAnalytics { + struct XRManagementAnalytics__Class *klass; + MonitorData *monitor; +}; + +struct XRManagementAnalytics__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct XRManagementAnalytics__StaticFields { + bool s_Initialized; +}; + +struct XRManagementAnalytics__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct XRManagementAnalytics__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct XRManagementAnalytics__VTable vtable; +}; + +struct __declspec(align(8)) List_1_System_Xml_Schema_XmlSchema___Fields { + struct XmlSchema__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_System_Xml_Schema_XmlSchema_ { + struct List_1_System_Xml_Schema_XmlSchema___Class *klass; + MonitorData *monitor; + struct List_1_System_Xml_Schema_XmlSchema___Fields fields; +}; + +struct IEnumerator_1_System_Xml_Schema_XmlSchema_ { + struct IEnumerator_1_System_Xml_Schema_XmlSchema___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerator_1_System_Xml_Schema_XmlSchema___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_System_Xml_Schema_XmlSchema___StaticFields { +}; + +struct IEnumerator_1_System_Xml_Schema_XmlSchema___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_System_Xml_Schema_XmlSchema___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_System_Xml_Schema_XmlSchema___VTable vtable; +}; + +struct List_1_System_Xml_Schema_XmlSchema___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_System_Xml_Schema_XmlSchema___StaticFields { + struct XmlSchema__Array *s_emptyArray; +}; + +struct List_1_System_Xml_Schema_XmlSchema___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_System_Xml_Schema_XmlSchema___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_System_Xml_Schema_XmlSchema___VTable vtable; +}; + +struct __declspec(align(8)) List_1_System_Xml_Schema_XmlSchemaElement___Fields { + struct XmlSchemaElement__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_System_Xml_Schema_XmlSchemaElement_ { + struct List_1_System_Xml_Schema_XmlSchemaElement___Class *klass; + MonitorData *monitor; + struct List_1_System_Xml_Schema_XmlSchemaElement___Fields fields; +}; + +struct XmlSchemaElement__Array { + struct XmlSchemaElement__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct XmlSchemaElement *vector[32]; +}; + +struct IEnumerator_1_System_Xml_Schema_XmlSchemaElement_ { + struct IEnumerator_1_System_Xml_Schema_XmlSchemaElement___Class *klass; + MonitorData *monitor; +}; + +struct XmlSchemaElement__Array__VTable { +}; + +struct XmlSchemaElement__Array__StaticFields { +}; + +struct XmlSchemaElement__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct XmlSchemaElement__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct XmlSchemaElement__Array__VTable vtable; +}; + +struct IEnumerator_1_System_Xml_Schema_XmlSchemaElement___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_System_Xml_Schema_XmlSchemaElement___StaticFields { +}; + +struct IEnumerator_1_System_Xml_Schema_XmlSchemaElement___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_System_Xml_Schema_XmlSchemaElement___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_System_Xml_Schema_XmlSchemaElement___VTable vtable; +}; + +struct List_1_System_Xml_Schema_XmlSchemaElement___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_System_Xml_Schema_XmlSchemaElement___StaticFields { + struct XmlSchemaElement__Array *s_emptyArray; +}; + +struct List_1_System_Xml_Schema_XmlSchemaElement___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_System_Xml_Schema_XmlSchemaElement___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_System_Xml_Schema_XmlSchemaElement___VTable vtable; +}; + +struct Number { + struct Number__Class *klass; + MonitorData *monitor; +}; + +struct Number__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Number__StaticFields { + struct String__Array *s_posCurrencyFormats; + struct String__Array *s_negCurrencyFormats; + struct String__Array *s_posPercentFormats; + struct String__Array *s_negPercentFormats; + struct String__Array *s_negNumberFormats; + struct Int32__Array *s_charToHexLookup; + struct UInt64__Array *s_rgval64Power10; + struct SByte__Array *s_rgexp64Power10; + struct UInt64__Array *s_rgval64Power10By16; + struct Int16__Array *s_rgexp64Power10By16; +}; + +struct Number__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Number__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Number__VTable vtable; +}; + +struct __declspec(align(8)) List_1_System_Exception___Fields { + struct Exception__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_System_Exception_ { + struct List_1_System_Exception___Class *klass; + MonitorData *monitor; + struct List_1_System_Exception___Fields fields; +}; + +struct List_1_System_Exception___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_System_Exception___StaticFields { + struct Exception__Array *s_emptyArray; +}; + +struct List_1_System_Exception___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_System_Exception___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_System_Exception___VTable vtable; +}; + +struct __declspec(align(8)) List_1_System_AggregateException___Fields { + struct AggregateException__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_System_AggregateException_ { + struct List_1_System_AggregateException___Class *klass; + MonitorData *monitor; + struct List_1_System_AggregateException___Fields fields; +}; + +struct AggregateException__Array { + struct AggregateException__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct AggregateException *vector[32]; +}; + +struct IEnumerator_1_System_AggregateException_ { + struct IEnumerator_1_System_AggregateException___Class *klass; + MonitorData *monitor; +}; + +struct AggregateException__Array__VTable { +}; + +struct AggregateException__Array__StaticFields { +}; + +struct AggregateException__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct AggregateException__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct AggregateException__Array__VTable vtable; +}; + +struct IEnumerator_1_System_AggregateException___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_System_AggregateException___StaticFields { +}; + +struct IEnumerator_1_System_AggregateException___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_System_AggregateException___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_System_AggregateException___VTable vtable; +}; + +struct List_1_System_AggregateException___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_System_AggregateException___StaticFields { + struct AggregateException__Array *s_emptyArray; +}; + +struct List_1_System_AggregateException___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_System_AggregateException___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_System_AggregateException___VTable vtable; +}; + +struct __declspec(align(8)) List_1_System_Runtime_ExceptionServices_ExceptionDispatchInfo___Fields { + struct ExceptionDispatchInfo__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_System_Runtime_ExceptionServices_ExceptionDispatchInfo_ { + struct List_1_System_Runtime_ExceptionServices_ExceptionDispatchInfo___Class *klass; + MonitorData *monitor; + struct List_1_System_Runtime_ExceptionServices_ExceptionDispatchInfo___Fields fields; +}; + +struct List_1_System_Runtime_ExceptionServices_ExceptionDispatchInfo___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_System_Runtime_ExceptionServices_ExceptionDispatchInfo___StaticFields { + struct ExceptionDispatchInfo__Array *s_emptyArray; +}; + +struct List_1_System_Runtime_ExceptionServices_ExceptionDispatchInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_System_Runtime_ExceptionServices_ExceptionDispatchInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_System_Runtime_ExceptionServices_ExceptionDispatchInfo___VTable vtable; +}; + +struct ICollection_1_System_Runtime_ExceptionServices_ExceptionDispatchInfo_ { + struct ICollection_1_System_Runtime_ExceptionServices_ExceptionDispatchInfo___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_System_Runtime_ExceptionServices_ExceptionDispatchInfo___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_System_Runtime_ExceptionServices_ExceptionDispatchInfo___StaticFields { +}; + +struct ICollection_1_System_Runtime_ExceptionServices_ExceptionDispatchInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_System_Runtime_ExceptionServices_ExceptionDispatchInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_System_Runtime_ExceptionServices_ExceptionDispatchInfo___VTable vtable; +}; + +struct ICollection_1_System_Exception_ { + struct ICollection_1_System_Exception___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_System_Exception___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_System_Exception___StaticFields { +}; + +struct ICollection_1_System_Exception___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_System_Exception___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_System_Exception___VTable vtable; +}; + +struct __declspec(align(8)) List_1_System_TimeZoneInfo___Fields { + struct TimeZoneInfo__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_System_TimeZoneInfo_ { + struct List_1_System_TimeZoneInfo___Class *klass; + MonitorData *monitor; + struct List_1_System_TimeZoneInfo___Fields fields; +}; + +struct List_1_System_TimeZoneInfo___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_System_TimeZoneInfo___StaticFields { + struct TimeZoneInfo__Array *s_emptyArray; +}; + +struct List_1_System_TimeZoneInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_System_TimeZoneInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_System_TimeZoneInfo___VTable vtable; +}; + +struct List_1_T_Enumerator_System_TimeZoneInfo_ { + struct List_1_System_TimeZoneInfo_ *_list; + int32_t _index; + int32_t _version; + struct TimeZoneInfo *_current; +}; + +struct List_1_T_Enumerator_System_TimeZoneInfo___Boxed { + struct List_1_T_Enumerator_System_TimeZoneInfo___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_System_TimeZoneInfo_ fields; +}; + +struct List_1_T_Enumerator_System_TimeZoneInfo___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_System_TimeZoneInfo___StaticFields { +}; + +struct List_1_T_Enumerator_System_TimeZoneInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_System_TimeZoneInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_System_TimeZoneInfo___VTable vtable; +}; + +struct __declspec(align(8)) List_1_System_TimeZoneInfo_AdjustmentRule___Fields { + struct TimeZoneInfo_AdjustmentRule__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_System_TimeZoneInfo_AdjustmentRule_ { + struct List_1_System_TimeZoneInfo_AdjustmentRule___Class *klass; + MonitorData *monitor; + struct List_1_System_TimeZoneInfo_AdjustmentRule___Fields fields; +}; + +struct IEnumerator_1_System_TimeZoneInfo_AdjustmentRule_ { + struct IEnumerator_1_System_TimeZoneInfo_AdjustmentRule___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerator_1_System_TimeZoneInfo_AdjustmentRule___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_System_TimeZoneInfo_AdjustmentRule___StaticFields { +}; + +struct IEnumerator_1_System_TimeZoneInfo_AdjustmentRule___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_System_TimeZoneInfo_AdjustmentRule___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_System_TimeZoneInfo_AdjustmentRule___VTable vtable; +}; + +struct List_1_System_TimeZoneInfo_AdjustmentRule___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_System_TimeZoneInfo_AdjustmentRule___StaticFields { + struct TimeZoneInfo_AdjustmentRule__Array *s_emptyArray; +}; + +struct List_1_System_TimeZoneInfo_AdjustmentRule___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_System_TimeZoneInfo_AdjustmentRule___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_System_TimeZoneInfo_AdjustmentRule___VTable vtable; +}; + +struct XPathItem__Array { + struct XPathItem__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct XPathItem *vector[32]; +}; + +struct XPathItem__Array__VTable { +}; + +struct XPathItem__Array__StaticFields { +}; + +struct XPathItem__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct XPathItem__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct XPathItem__Array__VTable vtable; +}; + +struct XPathNavigator__Array { + struct XPathNavigator__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct XPathNavigator *vector[32]; +}; + +struct XPathNavigator__Array__VTable { +}; + +struct XPathNavigator__Array__StaticFields { +}; + +struct XPathNavigator__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct XPathNavigator__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct XPathNavigator__Array__VTable vtable; +}; + +struct DateTimeParse { + struct DateTimeParse__Class *klass; + MonitorData *monitor; +}; + +struct DateTimeParse_DS__Enum__Array { + struct DateTimeParse_DS__Enum__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + DateTimeParse_DS__Enum vector[32]; +}; + +struct DateTimeParse_DS__Enum__Array__Array { + struct DateTimeParse_DS__Enum__Array__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct DateTimeParse_DS__Enum__Array *vector[32]; +}; + +struct DateTimeParse_DS__Enum__Array__VTable { +}; + +struct DateTimeParse_DS__Enum__Array__StaticFields { +}; + +struct DateTimeParse_DS__Enum__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DateTimeParse_DS__Enum__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DateTimeParse_DS__Enum__Array__VTable vtable; +}; + +struct DateTimeParse_DS__Enum__Array__Array__VTable { +}; + +struct DateTimeParse_DS__Enum__Array__Array__StaticFields { +}; + +struct DateTimeParse_DS__Enum__Array__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DateTimeParse_DS__Enum__Array__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DateTimeParse_DS__Enum__Array__Array__VTable vtable; +}; + +struct DateTimeParse__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct DateTimeParse__StaticFields { + struct DateTimeParse_MatchNumberDelegate *m_hebrewNumberParser; + struct DateTimeParse_DS__Enum__Array__Array *dateParsingStates; +}; + +struct DateTimeParse__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DateTimeParse__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DateTimeParse__VTable vtable; +}; + +struct TimeSpanFormat { + struct TimeSpanFormat__Class *klass; + MonitorData *monitor; +}; + +struct TimeSpanFormat__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct TimeSpanFormat__StaticFields { + struct TimeSpanFormat_FormatLiterals PositiveInvariantFormatLiterals; + struct TimeSpanFormat_FormatLiterals NegativeInvariantFormatLiterals; +}; + +struct TimeSpanFormat__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TimeSpanFormat__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TimeSpanFormat__VTable vtable; +}; + +struct DateTimeFormat { + struct DateTimeFormat__Class *klass; + MonitorData *monitor; +}; + +struct DateTimeFormat__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct DateTimeFormat__StaticFields { + struct TimeSpan NullOffset; + struct Char__Array *allStandardFormats; + struct DateTimeFormatInfo *InvariantFormatInfo; + struct String__Array *InvariantAbbreviatedMonthNames; + struct String__Array *InvariantAbbreviatedDayNames; + struct String__Array *fixedNumberFormats; +}; + +struct DateTimeFormat__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DateTimeFormat__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DateTimeFormat__VTable vtable; +}; + +struct IEnumerable_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionBinding_ { + struct IEnumerable_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionBinding___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionBinding___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionBinding___StaticFields { +}; + +struct IEnumerable_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionBinding___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionBinding___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionBinding___VTable vtable; +}; + +struct IEnumerable_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionConfig_ { + struct IEnumerable_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionConfig___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionConfig___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionConfig___StaticFields { +}; + +struct IEnumerable_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionConfig___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionConfig___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionConfig___VTable vtable; +}; + +struct EyeTrackingUsages { + struct EyeTrackingUsages__Class *klass; + MonitorData *monitor; +}; + +struct EyeTrackingUsages__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct EyeTrackingUsages__StaticFields { + struct InputFeatureUsage_1_UnityEngine_Vector3_ gazePosition; + struct InputFeatureUsage_1_UnityEngine_Quaternion_ gazeRotation; +}; + +struct EyeTrackingUsages__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EyeTrackingUsages__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EyeTrackingUsages__VTable vtable; +}; + +struct IEnumerable_1_MS_Internal_Xml_XPath_AstNode_ { + struct IEnumerable_1_MS_Internal_Xml_XPath_AstNode___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_MS_Internal_Xml_XPath_AstNode___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_MS_Internal_Xml_XPath_AstNode___StaticFields { +}; + +struct IEnumerable_1_MS_Internal_Xml_XPath_AstNode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_MS_Internal_Xml_XPath_AstNode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_MS_Internal_Xml_XPath_AstNode___VTable vtable; +}; + +struct IEnumerable_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_DeviceConfig_ { + struct IEnumerable_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_DeviceConfig___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_DeviceConfig___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_DeviceConfig___StaticFields { +}; + +struct IEnumerable_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_DeviceConfig___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_DeviceConfig___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_DeviceConfig___VTable vtable; +}; + +struct CollectionPool_2_System_Collections_Generic_List_1_System_Int32_ { + struct CollectionPool_2_System_Collections_Generic_List_1_System_Int32___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) ObjectPool_1_System_Collections_Generic_List_1__1__Fields { + struct List_1_List_1_System_Int32_ *m_List; + struct Func_1_System_Collections_Generic_List_1__10 *m_CreateFunc; + struct Action_1_System_Collections_Generic_List_1__8 *m_ActionOnGet; + struct Action_1_System_Collections_Generic_List_1__8 *m_ActionOnRelease; + struct Action_1_System_Collections_Generic_List_1__8 *m_ActionOnDestroy; + int32_t m_MaxSize; + bool m_CollectionCheck; + int32_t _CountAll_k__BackingField; +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__1 { + struct ObjectPool_1_System_Collections_Generic_List_1__1__Class *klass; + MonitorData *monitor; + struct ObjectPool_1_System_Collections_Generic_List_1__1__Fields fields; +}; + +struct PooledObject_1_System_Collections_Generic_List_1_ { + struct List_1_System_Int32_ *m_ToReturn; + struct IObjectPool_1_System_Collections_Generic_List_1_ *m_Pool; +}; + +struct PooledObject_1_System_Collections_Generic_List_1___Boxed { + struct PooledObject_1_System_Collections_Generic_List_1___Class *klass; + MonitorData *monitor; + struct PooledObject_1_System_Collections_Generic_List_1_ fields; +}; + +struct IObjectPool_1_System_Collections_Generic_List_1_ { + struct IObjectPool_1_System_Collections_Generic_List_1___Class *klass; + MonitorData *monitor; +}; + +struct IObjectPool_1_System_Collections_Generic_List_1___VTable { + VirtualInvokeData Release; +}; + +struct IObjectPool_1_System_Collections_Generic_List_1___StaticFields { +}; + +struct IObjectPool_1_System_Collections_Generic_List_1___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IObjectPool_1_System_Collections_Generic_List_1___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IObjectPool_1_System_Collections_Generic_List_1___VTable vtable; +}; + +struct PooledObject_1_System_Collections_Generic_List_1___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_IDisposable_Dispose; +}; + +struct PooledObject_1_System_Collections_Generic_List_1___StaticFields { +}; + +struct PooledObject_1_System_Collections_Generic_List_1___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PooledObject_1_System_Collections_Generic_List_1___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PooledObject_1_System_Collections_Generic_List_1___VTable vtable; +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__1__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Dispose; + VirtualInvokeData Release; + VirtualInvokeData get_CountInactive; + VirtualInvokeData Get; + VirtualInvokeData Get_1; + VirtualInvokeData Clear; +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__1__StaticFields { +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ObjectPool_1_System_Collections_Generic_List_1__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ObjectPool_1_System_Collections_Generic_List_1__1__VTable vtable; +}; + +struct CollectionPool_2_System_Collections_Generic_List_1_System_Int32___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct CollectionPool_2_System_Collections_Generic_List_1_System_Int32___StaticFields { + struct ObjectPool_1_System_Collections_Generic_List_1__1 *s_Pool; +}; + +struct CollectionPool_2_System_Collections_Generic_List_1_System_Int32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CollectionPool_2_System_Collections_Generic_List_1_System_Int32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CollectionPool_2_System_Collections_Generic_List_1_System_Int32___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType_ { + int32_t hashCode; + int32_t next; + struct String *key; + #if defined(_CPLUSPLUS_) + OpenXRInteractionFeature_ActionType__Enum value; + #else + int32_t value; + #endif +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType_ fields; +}; + +struct __declspec(align(8)) Dictionary_2_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_System_String_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType_ { + struct Dictionary_2_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___Class *klass; + MonitorData *monitor; + struct Dictionary_2_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___Fields fields; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___Array { + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType_ vector[32]; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___Fields { + struct Dictionary_2_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType_ { + struct Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___Fields fields; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___Fields { + struct Dictionary_2_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType_ { + struct Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___Fields fields; +}; + +struct OpenXRInteractionFeature_ActionType__Enum__Array { + struct OpenXRInteractionFeature_ActionType__Enum__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + OpenXRInteractionFeature_ActionType__Enum vector[32]; +}; + +struct IEnumerator_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType_ { + struct IEnumerator_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType_ { + struct ICollection_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___Class *klass; + MonitorData *monitor; +}; + +struct KeyValuePair_2_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType_ { + struct String *key; + #if defined(_CPLUSPLUS_) + OpenXRInteractionFeature_ActionType__Enum value; + #else + int32_t value; + #endif +}; + +struct KeyValuePair_2_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___Boxed { + struct KeyValuePair_2_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType_ fields; +}; + +struct KeyValuePair_2_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___Array { + struct KeyValuePair_2_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct KeyValuePair_2_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType_ vector[32]; +}; + +struct IEnumerator_1_KeyValuePair_2_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType_ { + struct IEnumerator_1_KeyValuePair_2_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType_ { + struct IEnumerable_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___Array__VTable { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___Array__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___Array__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TKey__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___VTable vtable; +}; + +struct OpenXRInteractionFeature_ActionType__Enum__Array__VTable { +}; + +struct OpenXRInteractionFeature_ActionType__Enum__Array__StaticFields { +}; + +struct OpenXRInteractionFeature_ActionType__Enum__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct OpenXRInteractionFeature_ActionType__Enum__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct OpenXRInteractionFeature_ActionType__Enum__Array__VTable vtable; +}; + +struct IEnumerator_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___StaticFields { +}; + +struct IEnumerator_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TValue__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___VTable vtable; +}; + +struct ICollection_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___StaticFields { +}; + +struct ICollection_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___VTable vtable; +}; + +struct OpenXRInteractionFeature_ActionType___VTable { +}; + +struct OpenXRInteractionFeature_ActionType___StaticFields { +}; + +struct OpenXRInteractionFeature_ActionType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct OpenXRInteractionFeature_ActionType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct OpenXRInteractionFeature_ActionType___VTable vtable; +}; + +struct KeyValuePair_2_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct KeyValuePair_2_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___StaticFields { +}; + +struct KeyValuePair_2_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___VTable vtable; +}; + +struct KeyValuePair_2_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___Array__VTable { +}; + +struct KeyValuePair_2_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___Array__StaticFields { +}; + +struct KeyValuePair_2_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___Array__VTable vtable; +}; + +struct IEnumerator_1_KeyValuePair_2_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_KeyValuePair_2_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___StaticFields { +}; + +struct IEnumerator_1_KeyValuePair_2_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_KeyValuePair_2_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_KeyValuePair_2_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___VTable vtable; +}; + +struct IEnumerable_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___StaticFields { +}; + +struct IEnumerable_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___VTable vtable; +}; + +struct Dictionary_2_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Values; + VirtualInvokeData ContainsKey; + VirtualInvokeData Add; + VirtualInvokeData Remove; + VirtualInvokeData TryGetValue; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add; + VirtualInvokeData Clear; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_get_Item; + VirtualInvokeData System_Collections_IDictionary_set_Item; + VirtualInvokeData System_Collections_IDictionary_get_Keys; + VirtualInvokeData System_Collections_IDictionary_get_Values; + VirtualInvokeData System_Collections_IDictionary_Contains; + VirtualInvokeData System_Collections_IDictionary_Add; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IDictionary_get_IsReadOnly; + VirtualInvokeData System_Collections_IDictionary_get_IsFixedSize; + VirtualInvokeData System_Collections_IDictionary_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_Remove; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData TryGetValue_1; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Values; + VirtualInvokeData get_Count_2; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct Dictionary_2_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___StaticFields { +}; + +struct Dictionary_2_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType___VTable vtable; +}; + +struct List_1_T_Enumerator_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionConfig_ { + struct List_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionConfig_ *_list; + int32_t _index; + int32_t _version; + struct OpenXRInteractionFeature_ActionConfig *_current; +}; + +struct List_1_T_Enumerator_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionConfig___Boxed { + struct List_1_T_Enumerator_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionConfig___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionConfig_ fields; +}; + +struct List_1_T_Enumerator_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionConfig___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionConfig___StaticFields { +}; + +struct List_1_T_Enumerator_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionConfig___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionConfig___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionConfig___VTable vtable; +}; + +struct List_1_T_Enumerator_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionBinding_ { + struct List_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionBinding_ *_list; + int32_t _index; + int32_t _version; + struct OpenXRInteractionFeature_ActionBinding *_current; +}; + +struct List_1_T_Enumerator_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionBinding___Boxed { + struct List_1_T_Enumerator_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionBinding___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionBinding_ fields; +}; + +struct List_1_T_Enumerator_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionBinding___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionBinding___StaticFields { +}; + +struct List_1_T_Enumerator_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionBinding___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionBinding___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionBinding___VTable vtable; +}; + +struct IEnumerable_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ { + struct IEnumerable_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature___StaticFields { +}; + +struct IEnumerable_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_String_List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ { + struct Dictionary_2_System_String_List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ *_dictionary; + int32_t _version; + int32_t _index; + struct KeyValuePair_2_System_String_List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ _current; + int32_t _getEnumeratorRetType; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_String_List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding___Boxed { + struct Dictionary_2_TKey_TValue_Enumerator_System_String_List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Enumerator_System_String_List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding_ fields; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_String_List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Key; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Value; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Entry; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_String_List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_String_List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Enumerator_System_String_List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Enumerator_System_String_List_1_UnityEngine_XR_OpenXR_Input_OpenXRInput_SerializedBinding___VTable vtable; +}; + +struct IEnumerator_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ { + struct IEnumerator_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerator_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature___StaticFields { +}; + +struct IEnumerator_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature___VTable vtable; +}; + +struct List_1_T_Enumerator_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_DeviceConfig_ { + struct List_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_DeviceConfig_ *_list; + int32_t _index; + int32_t _version; + struct OpenXRInteractionFeature_DeviceConfig *_current; +}; + +struct List_1_T_Enumerator_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_DeviceConfig___Boxed { + struct List_1_T_Enumerator_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_DeviceConfig___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_DeviceConfig_ fields; +}; + +struct List_1_T_Enumerator_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_DeviceConfig___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_DeviceConfig___StaticFields { +}; + +struct List_1_T_Enumerator_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_DeviceConfig___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_DeviceConfig___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_DeviceConfig___VTable vtable; +}; + +struct List_1_T_Enumerator_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionMapConfig_ { + struct List_1_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionMapConfig_ *_list; + int32_t _index; + int32_t _version; + struct OpenXRInteractionFeature_ActionMapConfig *_current; +}; + +struct List_1_T_Enumerator_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionMapConfig___Boxed { + struct List_1_T_Enumerator_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionMapConfig___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionMapConfig_ fields; +}; + +struct List_1_T_Enumerator_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionMapConfig___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionMapConfig___StaticFields { +}; + +struct List_1_T_Enumerator_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionMapConfig___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionMapConfig___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionMapConfig___VTable vtable; +}; + +struct OpenXRRuntime { + struct OpenXRRuntime__Class *klass; + MonitorData *monitor; +}; + +struct OpenXRRuntime__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct OpenXRRuntime__StaticFields { + struct Func_1_Boolean_ *wantsToQuit; + struct Func_1_Boolean_ *wantsToRestart; +}; + +struct OpenXRRuntime__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct OpenXRRuntime__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct OpenXRRuntime__VTable vtable; +}; + +struct IOrderedEnumerable_1_UnityEngine_XR_OpenXR_Features_OpenXRFeature_ { + struct IOrderedEnumerable_1_UnityEngine_XR_OpenXR_Features_OpenXRFeature___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_UnityEngine_XR_OpenXR_Features_OpenXRFeature_ { + struct IEnumerable_1_UnityEngine_XR_OpenXR_Features_OpenXRFeature___Class *klass; + MonitorData *monitor; +}; + +struct IOrderedEnumerable_1_UnityEngine_XR_OpenXR_Features_OpenXRFeature___VTable { + VirtualInvokeData CreateOrderedEnumerable; +}; + +struct IOrderedEnumerable_1_UnityEngine_XR_OpenXR_Features_OpenXRFeature___StaticFields { +}; + +struct IOrderedEnumerable_1_UnityEngine_XR_OpenXR_Features_OpenXRFeature___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IOrderedEnumerable_1_UnityEngine_XR_OpenXR_Features_OpenXRFeature___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IOrderedEnumerable_1_UnityEngine_XR_OpenXR_Features_OpenXRFeature___VTable vtable; +}; + +struct IEnumerable_1_UnityEngine_XR_OpenXR_Features_OpenXRFeature___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_UnityEngine_XR_OpenXR_Features_OpenXRFeature___StaticFields { +}; + +struct IEnumerable_1_UnityEngine_XR_OpenXR_Features_OpenXRFeature___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_UnityEngine_XR_OpenXR_Features_OpenXRFeature___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_UnityEngine_XR_OpenXR_Features_OpenXRFeature___VTable vtable; +}; + +struct OpenXRInput { + struct OpenXRInput__Class *klass; + MonitorData *monitor; +}; + +struct OpenXRInput__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct OpenXRInput__StaticFields { + struct Dictionary_2_System_String_UnityEngine_XR_OpenXR_Features_OpenXRInteractionFeature_ActionType_ *ExpectedControlTypeToActionType; + struct Dictionary_2_System_String_System_String_ *kVirtualControlMap; +}; + +struct OpenXRInput__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct OpenXRInput__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct OpenXRInput__VTable vtable; +}; + +struct OpenXRAnalytics { + struct OpenXRAnalytics__Class *klass; + MonitorData *monitor; +}; + +struct OpenXRAnalytics__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct OpenXRAnalytics__StaticFields { + bool s_Initialized; +}; + +struct OpenXRAnalytics__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct OpenXRAnalytics__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct OpenXRAnalytics__VTable vtable; +}; + +struct PointerDeviceState { + struct PointerDeviceState__Class *klass; + MonitorData *monitor; +}; + +struct PointerDeviceState__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct PointerDeviceState__StaticFields { + struct PointerDeviceState_PointerLocation__Array *s_PlayerPointerLocations; + struct Int32__Array *s_PressedButtons; + struct IPanel__Array *s_PlayerPanelWithSoftPointerCapture; +}; + +struct PointerDeviceState__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PointerDeviceState__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PointerDeviceState__VTable vtable; +}; + +struct UIElementsRuntimeUtility { + struct UIElementsRuntimeUtility__Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) List_1_UnityEngine_UIElements_PanelSettings___Fields { + struct PanelSettings__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_UIElements_PanelSettings_ { + struct List_1_UnityEngine_UIElements_PanelSettings___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_UIElements_PanelSettings___Fields fields; +}; + +struct PanelSettings__Array { + struct PanelSettings__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct PanelSettings *vector[32]; +}; + +struct IEnumerator_1_UnityEngine_UIElements_PanelSettings_ { + struct IEnumerator_1_UnityEngine_UIElements_PanelSettings___Class *klass; + MonitorData *monitor; +}; + +struct PanelSettings__Array__VTable { +}; + +struct PanelSettings__Array__StaticFields { +}; + +struct PanelSettings__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PanelSettings__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PanelSettings__Array__VTable vtable; +}; + +struct IEnumerator_1_UnityEngine_UIElements_PanelSettings___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_UnityEngine_UIElements_PanelSettings___StaticFields { +}; + +struct IEnumerator_1_UnityEngine_UIElements_PanelSettings___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_UnityEngine_UIElements_PanelSettings___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_UnityEngine_UIElements_PanelSettings___VTable vtable; +}; + +struct List_1_UnityEngine_UIElements_PanelSettings___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_UnityEngine_UIElements_PanelSettings___StaticFields { + struct PanelSettings__Array *s_emptyArray; +}; + +struct List_1_UnityEngine_UIElements_PanelSettings___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_UIElements_PanelSettings___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_UIElements_PanelSettings___VTable vtable; +}; + +struct UIElementsRuntimeUtility__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct UIElementsRuntimeUtility__StaticFields { + struct Action_1_UnityEngine_UIElements_BaseRuntimePanel_ *onCreatePanel; + bool s_RegisteredPlayerloopCallback; + struct List_1_UnityEngine_UIElements_Panel_ *s_SortedRuntimePanels; + bool s_PanelOrderingDirty; + struct String *s_RepaintProfilerMarkerName; + struct ProfilerMarker s_RepaintProfilerMarker; + int32_t currentOverlayIndex; + struct Object_1 *_activeEventSystem_k__BackingField; + struct DefaultEventSystem *s_DefaultEventSystem; + struct List_1_UnityEngine_UIElements_PanelSettings_ *s_PotentiallyEmptyPanelSettings; +}; + +struct UIElementsRuntimeUtility__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UIElementsRuntimeUtility__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UIElementsRuntimeUtility__VTable vtable; +}; + +struct StringTools { + struct StringTools__Class *klass; + MonitorData *monitor; +}; + +struct StringTools__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct StringTools__StaticFields { + struct String *QHjZeVPLmGJCpNsHenWlJzRmGMdT; +}; + +struct StringTools__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StringTools__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StringTools__VTable vtable; +}; + +struct CoreUtils { + struct CoreUtils__Class *klass; + MonitorData *monitor; +}; + +struct CoreUtils__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct CoreUtils__StaticFields { + struct Vector3__Array *lookAtList; + struct Vector3__Array *upVectorList; + struct Cubemap *m_BlackCubeTexture; + struct Cubemap *m_MagentaCubeTexture; + struct CubemapArray *m_MagentaCubeTextureArray; + struct Cubemap *m_WhiteCubeTexture; + struct RenderTexture *m_EmptyUAV; + struct Texture3D *m_BlackVolumeTexture; + struct IEnumerable_1_System_Type_ *m_AssemblyTypes; +}; + +struct CoreUtils__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CoreUtils__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CoreUtils__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_Cinemachine_ICinemachineCamera_System_Object_ { + struct Dictionary_2_Cinemachine_ICinemachineCamera_System_Object_ *_dictionary; + int32_t _version; + int32_t _index; + struct KeyValuePair_2_Cinemachine_ICinemachineCamera_System_Object_ _current; + int32_t _getEnumeratorRetType; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_Cinemachine_ICinemachineCamera_System_Object___Boxed { + struct Dictionary_2_TKey_TValue_Enumerator_Cinemachine_ICinemachineCamera_System_Object___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Enumerator_Cinemachine_ICinemachineCamera_System_Object_ fields; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_Cinemachine_ICinemachineCamera_System_Object___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Key; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Value; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Entry; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_Cinemachine_ICinemachineCamera_System_Object___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Enumerator_Cinemachine_ICinemachineCamera_System_Object___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Enumerator_Cinemachine_ICinemachineCamera_System_Object___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Enumerator_Cinemachine_ICinemachineCamera_System_Object___VTable vtable; +}; + +struct BoltLog_IWriter { + struct BoltLog_IWriter__Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) List_1_Photon_Bolt_Utils_BoltLog_IWriter___Fields { + struct BoltLog_IWriter__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Photon_Bolt_Utils_BoltLog_IWriter_ { + struct List_1_Photon_Bolt_Utils_BoltLog_IWriter___Class *klass; + MonitorData *monitor; + struct List_1_Photon_Bolt_Utils_BoltLog_IWriter___Fields fields; +}; + +struct BoltLog_IWriter__Array { + struct BoltLog_IWriter__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct BoltLog_IWriter *vector[32]; +}; + +struct IEnumerator_1_Photon_Bolt_Utils_BoltLog_IWriter_ { + struct IEnumerator_1_Photon_Bolt_Utils_BoltLog_IWriter___Class *klass; + MonitorData *monitor; +}; + +struct BoltLog_IWriter__VTable { + VirtualInvokeData Info; + VirtualInvokeData Debug; + VirtualInvokeData Warn; + VirtualInvokeData Error; +}; + +struct BoltLog_IWriter__StaticFields { +}; + +struct BoltLog_IWriter__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltLog_IWriter__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltLog_IWriter__VTable vtable; +}; + +struct BoltLog_IWriter__Array__VTable { +}; + +struct BoltLog_IWriter__Array__StaticFields { +}; + +struct BoltLog_IWriter__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltLog_IWriter__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltLog_IWriter__Array__VTable vtable; +}; + +struct IEnumerator_1_Photon_Bolt_Utils_BoltLog_IWriter___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_Photon_Bolt_Utils_BoltLog_IWriter___StaticFields { +}; + +struct IEnumerator_1_Photon_Bolt_Utils_BoltLog_IWriter___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_Photon_Bolt_Utils_BoltLog_IWriter___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_Photon_Bolt_Utils_BoltLog_IWriter___VTable vtable; +}; + +struct List_1_Photon_Bolt_Utils_BoltLog_IWriter___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_Photon_Bolt_Utils_BoltLog_IWriter___StaticFields { + struct BoltLog_IWriter__Array *s_emptyArray; +}; + +struct List_1_Photon_Bolt_Utils_BoltLog_IWriter___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Photon_Bolt_Utils_BoltLog_IWriter___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Photon_Bolt_Utils_BoltLog_IWriter___VTable vtable; +}; + +struct EraInfo___VTable { +}; + +struct EraInfo___StaticFields { +}; + +struct EraInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EraInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EraInfo___VTable vtable; +}; + +struct OneOrMore_2_UnityEngine_InputSystem_InputDevice_ReadOnlyArray_1_UnityEngine_InputSystem_InputDevice_ { + bool m_IsSingle; + struct InputDevice *m_Single; + struct ReadOnlyArray_1_UnityEngine_InputSystem_InputDevice_ m_Multiple; +}; + +struct OneOrMore_2_UnityEngine_InputSystem_InputDevice_ReadOnlyArray_1_UnityEngine_InputSystem_InputDevice___Boxed { + struct OneOrMore_2_UnityEngine_InputSystem_InputDevice_ReadOnlyArray_1_UnityEngine_InputSystem_InputDevice___Class *klass; + MonitorData *monitor; + struct OneOrMore_2_UnityEngine_InputSystem_InputDevice_ReadOnlyArray_1_UnityEngine_InputSystem_InputDevice_ fields; +}; + +struct OneOrMore_2_UnityEngine_InputSystem_InputDevice_ReadOnlyArray_1_UnityEngine_InputSystem_InputDevice___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData get_Count; + VirtualInvokeData GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; +}; + +struct OneOrMore_2_UnityEngine_InputSystem_InputDevice_ReadOnlyArray_1_UnityEngine_InputSystem_InputDevice___StaticFields { +}; + +struct OneOrMore_2_UnityEngine_InputSystem_InputDevice_ReadOnlyArray_1_UnityEngine_InputSystem_InputDevice___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct OneOrMore_2_UnityEngine_InputSystem_InputDevice_ReadOnlyArray_1_UnityEngine_InputSystem_InputDevice___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct OneOrMore_2_UnityEngine_InputSystem_InputDevice_ReadOnlyArray_1_UnityEngine_InputSystem_InputDevice___VTable vtable; +}; + +struct InputInteraction { + struct InputInteraction__Class *klass; + MonitorData *monitor; +}; + +struct InputInteraction__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct InputInteraction__StaticFields { + struct TypeTable s_Interactions; +}; + +struct InputInteraction__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputInteraction__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputInteraction__VTable vtable; +}; + +struct ICollection_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_ { + struct ICollection_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform___StaticFields { +}; + +struct ICollection_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform___VTable vtable; +}; + +struct EventCallback_1_DetachFromPanelEvent___Fields { + struct MulticastDelegate__Fields _; +}; + +struct EventCallback_1_DetachFromPanelEvent_ { + struct EventCallback_1_DetachFromPanelEvent___Class *klass; + MonitorData *monitor; + struct EventCallback_1_DetachFromPanelEvent___Fields fields; +}; + +struct EventCallback_1_DetachFromPanelEvent___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct EventCallback_1_DetachFromPanelEvent___StaticFields { +}; + +struct EventCallback_1_DetachFromPanelEvent___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EventCallback_1_DetachFromPanelEvent___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EventCallback_1_DetachFromPanelEvent___VTable vtable; +}; + +struct EventCallback_1_AttachToPanelEvent___Fields { + struct MulticastDelegate__Fields _; +}; + +struct EventCallback_1_AttachToPanelEvent_ { + struct EventCallback_1_AttachToPanelEvent___Class *klass; + MonitorData *monitor; + struct EventCallback_1_AttachToPanelEvent___Fields fields; +}; + +struct EventCallback_1_AttachToPanelEvent___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct EventCallback_1_AttachToPanelEvent___StaticFields { +}; + +struct EventCallback_1_AttachToPanelEvent___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EventCallback_1_AttachToPanelEvent___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EventCallback_1_AttachToPanelEvent___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager_ { + int32_t hashCode; + int32_t next; + struct IGroupBoxOption *key; + struct IGroupManager *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager_ fields; +}; + +struct __declspec(align(8)) Dictionary_2_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_UnityEngine_UIElements_IGroupBoxOption_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager_ { + struct Dictionary_2_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager___Class *klass; + MonitorData *monitor; + struct Dictionary_2_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager___Fields fields; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager___Array { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager_ vector[32]; +}; + +struct IEqualityComparer_1_UnityEngine_UIElements_IGroupBoxOption_ { + struct IEqualityComparer_1_UnityEngine_UIElements_IGroupBoxOption___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager___Fields { + struct Dictionary_2_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager_ { + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager___Fields fields; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager___Fields { + struct Dictionary_2_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager_ { + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager___Fields fields; +}; + +struct IGroupManager__Array { + struct IGroupManager__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct IGroupManager *vector[32]; +}; + +struct IEnumerator_1_UnityEngine_UIElements_IGroupManager_ { + struct IEnumerator_1_UnityEngine_UIElements_IGroupManager___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_UnityEngine_UIElements_IGroupBoxOption_ { + struct ICollection_1_UnityEngine_UIElements_IGroupBoxOption___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_UnityEngine_UIElements_IGroupManager_ { + struct ICollection_1_UnityEngine_UIElements_IGroupManager___Class *klass; + MonitorData *monitor; +}; + +struct KeyValuePair_2_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager_ { + struct IGroupBoxOption *key; + struct IGroupManager *value; +}; + +struct KeyValuePair_2_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager___Boxed { + struct KeyValuePair_2_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager___Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager_ fields; +}; + +struct KeyValuePair_2_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager___Array { + struct KeyValuePair_2_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct KeyValuePair_2_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager_ vector[32]; +}; + +struct IEnumerator_1_KeyValuePair_2_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager_ { + struct IEnumerator_1_KeyValuePair_2_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_UnityEngine_UIElements_IGroupBoxOption_ { + struct IEnumerable_1_UnityEngine_UIElements_IGroupBoxOption___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_UnityEngine_UIElements_IGroupManager_ { + struct IEnumerable_1_UnityEngine_UIElements_IGroupManager___Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager___Array__VTable { +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager___Array__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager___Array__VTable vtable; +}; + +struct IEqualityComparer_1_UnityEngine_UIElements_IGroupBoxOption___VTable { + VirtualInvokeData Equals; + VirtualInvokeData GetHashCode; +}; + +struct IEqualityComparer_1_UnityEngine_UIElements_IGroupBoxOption___StaticFields { +}; + +struct IEqualityComparer_1_UnityEngine_UIElements_IGroupBoxOption___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEqualityComparer_1_UnityEngine_UIElements_IGroupBoxOption___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEqualityComparer_1_UnityEngine_UIElements_IGroupBoxOption___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TKey__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager___VTable vtable; +}; + +struct IGroupManager__Array__VTable { +}; + +struct IGroupManager__Array__StaticFields { +}; + +struct IGroupManager__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IGroupManager__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IGroupManager__Array__VTable vtable; +}; + +struct IEnumerator_1_UnityEngine_UIElements_IGroupManager___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_UnityEngine_UIElements_IGroupManager___StaticFields { +}; + +struct IEnumerator_1_UnityEngine_UIElements_IGroupManager___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_UnityEngine_UIElements_IGroupManager___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_UnityEngine_UIElements_IGroupManager___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TValue__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager___VTable vtable; +}; + +struct ICollection_1_UnityEngine_UIElements_IGroupBoxOption___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_UnityEngine_UIElements_IGroupBoxOption___StaticFields { +}; + +struct ICollection_1_UnityEngine_UIElements_IGroupBoxOption___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_UnityEngine_UIElements_IGroupBoxOption___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_UnityEngine_UIElements_IGroupBoxOption___VTable vtable; +}; + +struct ICollection_1_UnityEngine_UIElements_IGroupManager___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_UnityEngine_UIElements_IGroupManager___StaticFields { +}; + +struct ICollection_1_UnityEngine_UIElements_IGroupManager___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_UnityEngine_UIElements_IGroupManager___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_UnityEngine_UIElements_IGroupManager___VTable vtable; +}; + +struct IGroupManager___VTable { +}; + +struct IGroupManager___StaticFields { +}; + +struct IGroupManager___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IGroupManager___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IGroupManager___VTable vtable; +}; + +struct KeyValuePair_2_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct KeyValuePair_2_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager___StaticFields { +}; + +struct KeyValuePair_2_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager___VTable vtable; +}; + +struct KeyValuePair_2_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager___Array__VTable { +}; + +struct KeyValuePair_2_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager___Array__StaticFields { +}; + +struct KeyValuePair_2_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager___Array__VTable vtable; +}; + +struct IEnumerator_1_KeyValuePair_2_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_KeyValuePair_2_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager___StaticFields { +}; + +struct IEnumerator_1_KeyValuePair_2_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_KeyValuePair_2_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_KeyValuePair_2_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager___VTable vtable; +}; + +struct IEnumerable_1_UnityEngine_UIElements_IGroupBoxOption___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_UnityEngine_UIElements_IGroupBoxOption___StaticFields { +}; + +struct IEnumerable_1_UnityEngine_UIElements_IGroupBoxOption___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_UnityEngine_UIElements_IGroupBoxOption___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_UnityEngine_UIElements_IGroupBoxOption___VTable vtable; +}; + +struct IEnumerable_1_UnityEngine_UIElements_IGroupManager___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_UnityEngine_UIElements_IGroupManager___StaticFields { +}; + +struct IEnumerable_1_UnityEngine_UIElements_IGroupManager___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_UnityEngine_UIElements_IGroupManager___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_UnityEngine_UIElements_IGroupManager___VTable vtable; +}; + +struct Dictionary_2_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Values; + VirtualInvokeData ContainsKey; + VirtualInvokeData Add; + VirtualInvokeData Remove; + VirtualInvokeData TryGetValue; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add; + VirtualInvokeData Clear; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_get_Item; + VirtualInvokeData System_Collections_IDictionary_set_Item; + VirtualInvokeData System_Collections_IDictionary_get_Keys; + VirtualInvokeData System_Collections_IDictionary_get_Values; + VirtualInvokeData System_Collections_IDictionary_Contains; + VirtualInvokeData System_Collections_IDictionary_Add; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IDictionary_get_IsReadOnly; + VirtualInvokeData System_Collections_IDictionary_get_IsFixedSize; + VirtualInvokeData System_Collections_IDictionary_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_Remove; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData TryGetValue_1; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Values; + VirtualInvokeData get_Count_2; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct Dictionary_2_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager___StaticFields { +}; + +struct Dictionary_2_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager___VTable vtable; +}; + +struct GroupBoxUtility { + struct GroupBoxUtility__Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager_ { + int32_t hashCode; + int32_t next; + struct IGroupBox *key; + struct IGroupManager *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager_ fields; +}; + +struct __declspec(align(8)) Dictionary_2_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_UnityEngine_UIElements_IGroupBox_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager_ { + struct Dictionary_2_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager___Class *klass; + MonitorData *monitor; + struct Dictionary_2_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager___Fields fields; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager___Array { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager_ vector[32]; +}; + +struct IEqualityComparer_1_UnityEngine_UIElements_IGroupBox_ { + struct IEqualityComparer_1_UnityEngine_UIElements_IGroupBox___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager___Fields { + struct Dictionary_2_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager_ { + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager___Fields fields; +}; + +struct IGroupBox__Array { + struct IGroupBox__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct IGroupBox *vector[32]; +}; + +struct IEnumerator_1_UnityEngine_UIElements_IGroupBox_ { + struct IEnumerator_1_UnityEngine_UIElements_IGroupBox___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager___Fields { + struct Dictionary_2_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager_ { + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager___Fields fields; +}; + +struct ICollection_1_UnityEngine_UIElements_IGroupBox_ { + struct ICollection_1_UnityEngine_UIElements_IGroupBox___Class *klass; + MonitorData *monitor; +}; + +struct KeyValuePair_2_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager_ { + struct IGroupBox *key; + struct IGroupManager *value; +}; + +struct KeyValuePair_2_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager___Boxed { + struct KeyValuePair_2_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager___Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager_ fields; +}; + +struct KeyValuePair_2_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager___Array { + struct KeyValuePair_2_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct KeyValuePair_2_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager_ vector[32]; +}; + +struct IEnumerator_1_KeyValuePair_2_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager_ { + struct IEnumerator_1_KeyValuePair_2_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_UnityEngine_UIElements_IGroupBox_ { + struct IEnumerable_1_UnityEngine_UIElements_IGroupBox___Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager___Array__VTable { +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager___Array__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager___Array__VTable vtable; +}; + +struct IEqualityComparer_1_UnityEngine_UIElements_IGroupBox___VTable { + VirtualInvokeData Equals; + VirtualInvokeData GetHashCode; +}; + +struct IEqualityComparer_1_UnityEngine_UIElements_IGroupBox___StaticFields { +}; + +struct IEqualityComparer_1_UnityEngine_UIElements_IGroupBox___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEqualityComparer_1_UnityEngine_UIElements_IGroupBox___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEqualityComparer_1_UnityEngine_UIElements_IGroupBox___VTable vtable; +}; + +struct IGroupBox__Array__VTable { +}; + +struct IGroupBox__Array__StaticFields { +}; + +struct IGroupBox__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IGroupBox__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IGroupBox__Array__VTable vtable; +}; + +struct IEnumerator_1_UnityEngine_UIElements_IGroupBox___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_UnityEngine_UIElements_IGroupBox___StaticFields { +}; + +struct IEnumerator_1_UnityEngine_UIElements_IGroupBox___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_UnityEngine_UIElements_IGroupBox___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_UnityEngine_UIElements_IGroupBox___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TKey__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TValue__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager___VTable vtable; +}; + +struct ICollection_1_UnityEngine_UIElements_IGroupBox___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_UnityEngine_UIElements_IGroupBox___StaticFields { +}; + +struct ICollection_1_UnityEngine_UIElements_IGroupBox___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_UnityEngine_UIElements_IGroupBox___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_UnityEngine_UIElements_IGroupBox___VTable vtable; +}; + +struct KeyValuePair_2_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct KeyValuePair_2_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager___StaticFields { +}; + +struct KeyValuePair_2_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager___VTable vtable; +}; + +struct KeyValuePair_2_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager___Array__VTable { +}; + +struct KeyValuePair_2_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager___Array__StaticFields { +}; + +struct KeyValuePair_2_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager___Array__VTable vtable; +}; + +struct IEnumerator_1_KeyValuePair_2_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_KeyValuePair_2_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager___StaticFields { +}; + +struct IEnumerator_1_KeyValuePair_2_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_KeyValuePair_2_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_KeyValuePair_2_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager___VTable vtable; +}; + +struct IEnumerable_1_UnityEngine_UIElements_IGroupBox___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_UnityEngine_UIElements_IGroupBox___StaticFields { +}; + +struct IEnumerable_1_UnityEngine_UIElements_IGroupBox___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_UnityEngine_UIElements_IGroupBox___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_UnityEngine_UIElements_IGroupBox___VTable vtable; +}; + +struct Dictionary_2_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Values; + VirtualInvokeData ContainsKey; + VirtualInvokeData Add; + VirtualInvokeData Remove; + VirtualInvokeData TryGetValue; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add; + VirtualInvokeData Clear; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_get_Item; + VirtualInvokeData System_Collections_IDictionary_set_Item; + VirtualInvokeData System_Collections_IDictionary_get_Keys; + VirtualInvokeData System_Collections_IDictionary_get_Values; + VirtualInvokeData System_Collections_IDictionary_Contains; + VirtualInvokeData System_Collections_IDictionary_Add; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IDictionary_get_IsReadOnly; + VirtualInvokeData System_Collections_IDictionary_get_IsFixedSize; + VirtualInvokeData System_Collections_IDictionary_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_Remove; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData TryGetValue_1; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Values; + VirtualInvokeData get_Count_2; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct Dictionary_2_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager___StaticFields { +}; + +struct Dictionary_2_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager___VTable vtable; +}; + +struct GroupBoxUtility__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct GroupBoxUtility__StaticFields { + struct Dictionary_2_UnityEngine_UIElements_IGroupBox_UnityEngine_UIElements_IGroupManager_ *s_GroupManagers; + struct Dictionary_2_UnityEngine_UIElements_IGroupBoxOption_UnityEngine_UIElements_IGroupManager_ *s_GroupOptionManagerCache; + struct Type *k_GenericGroupBoxType; +}; + +struct GroupBoxUtility__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GroupBoxUtility__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GroupBoxUtility__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Object__1 { + int32_t hashCode; + int32_t next; + struct Type *key; + struct Object__Array *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Object__1__Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Object__1__Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Object__1 fields; +}; + +struct __declspec(align(8)) Dictionary_2_System_Type_System_Object__1__Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Object__1__Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_System_Type_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_System_Object__1 *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_System_Object__1 *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_System_Type_System_Object__1 { + struct Dictionary_2_System_Type_System_Object__1__Class *klass; + MonitorData *monitor; + struct Dictionary_2_System_Type_System_Object__1__Fields fields; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Object__1__Array { + struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Object__1__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Object__1 vector[32]; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_KeyCollection_System_Type_System_Object__1__Fields { + struct Dictionary_2_System_Type_System_Object__1 *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_System_Object__1 { + struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_System_Object__1__Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_System_Object__1__Fields fields; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_ValueCollection_System_Type_System_Object__1__Fields { + struct Dictionary_2_System_Type_System_Object__1 *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_System_Object__1 { + struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_System_Object__1__Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_System_Object__1__Fields fields; +}; + +struct IEnumerator_1_System_Object__1 { + struct IEnumerator_1_System_Object__1__Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_System_Object__1 { + struct ICollection_1_System_Object__1__Class *klass; + MonitorData *monitor; +}; + +struct KeyValuePair_2_System_Type_System_Object__1 { + struct Type *key; + struct Object__Array *value; +}; + +struct KeyValuePair_2_System_Type_System_Object__1__Boxed { + struct KeyValuePair_2_System_Type_System_Object__1__Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_System_Type_System_Object__1 fields; +}; + +struct KeyValuePair_2_System_Type_System_Object__1__Array { + struct KeyValuePair_2_System_Type_System_Object__1__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct KeyValuePair_2_System_Type_System_Object__1 vector[32]; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Type_System_Object__1 { + struct IEnumerator_1_KeyValuePair_2_System_Type_System_Object__1__Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_System_Object__2 { + struct IEnumerable_1_System_Object__2__Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Object__1__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Object__1__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Object__1__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Object__1__Array__VTable { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Object__1__Array__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Object__1__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Object__1__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Object__1__Array__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_System_Object__1__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TKey__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_System_Object__1__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_System_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_System_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_System_Object__1__VTable vtable; +}; + +struct IEnumerator_1_System_Object__1__VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_System_Object__1__StaticFields { +}; + +struct IEnumerator_1_System_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_System_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_System_Object__1__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_System_Object__1__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TValue__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_System_Object__1__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_System_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_System_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_System_Object__1__VTable vtable; +}; + +struct ICollection_1_System_Object__1__VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_System_Object__1__StaticFields { +}; + +struct ICollection_1_System_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_System_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_System_Object__1__VTable vtable; +}; + +struct KeyValuePair_2_System_Type_System_Object__1__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct KeyValuePair_2_System_Type_System_Object__1__StaticFields { +}; + +struct KeyValuePair_2_System_Type_System_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_Type_System_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_Type_System_Object__1__VTable vtable; +}; + +struct KeyValuePair_2_System_Type_System_Object__1__Array__VTable { +}; + +struct KeyValuePair_2_System_Type_System_Object__1__Array__StaticFields { +}; + +struct KeyValuePair_2_System_Type_System_Object__1__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_Type_System_Object__1__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_Type_System_Object__1__Array__VTable vtable; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Type_System_Object__1__VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Type_System_Object__1__StaticFields { +}; + +struct IEnumerator_1_KeyValuePair_2_System_Type_System_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_KeyValuePair_2_System_Type_System_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_KeyValuePair_2_System_Type_System_Object__1__VTable vtable; +}; + +struct IEnumerable_1_System_Object__2__VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_System_Object__2__StaticFields { +}; + +struct IEnumerable_1_System_Object__2__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_System_Object__2__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_System_Object__2__VTable vtable; +}; + +struct Dictionary_2_System_Type_System_Object__1__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Values; + VirtualInvokeData ContainsKey; + VirtualInvokeData Add; + VirtualInvokeData Remove; + VirtualInvokeData TryGetValue; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add; + VirtualInvokeData Clear; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_get_Item; + VirtualInvokeData System_Collections_IDictionary_set_Item; + VirtualInvokeData System_Collections_IDictionary_get_Keys; + VirtualInvokeData System_Collections_IDictionary_get_Values; + VirtualInvokeData System_Collections_IDictionary_Contains; + VirtualInvokeData System_Collections_IDictionary_Add; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IDictionary_get_IsReadOnly; + VirtualInvokeData System_Collections_IDictionary_get_IsFixedSize; + VirtualInvokeData System_Collections_IDictionary_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_Remove; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData TryGetValue_1; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Values; + VirtualInvokeData get_Count_2; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct Dictionary_2_System_Type_System_Object__1__StaticFields { +}; + +struct Dictionary_2_System_Type_System_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_System_Type_System_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_System_Type_System_Object__1__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object_ { + int32_t hashCode; + int32_t next; + struct GameObject *key; + struct Dictionary_2_System_Type_System_Object__1 *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object_ fields; +}; + +struct __declspec(align(8)) Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_UnityEngine_GameObject_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object_ { + struct Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object___Class *klass; + MonitorData *monitor; + struct Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object___Fields fields; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object___Array { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object_ vector[32]; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object___Fields { + struct Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object_ { + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object___Fields fields; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object___Fields { + struct Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object_ { + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object___Fields fields; +}; + +struct Dictionary_2_System_Type_System_Object__1__Array { + struct Dictionary_2_System_Type_System_Object__1__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Dictionary_2_System_Type_System_Object__1 *vector[32]; +}; + +struct IEnumerator_1_Dictionary_2_System_Type_System_Object_ { + struct IEnumerator_1_Dictionary_2_System_Type_System_Object___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_Dictionary_2_System_Type_System_Object_ { + struct ICollection_1_Dictionary_2_System_Type_System_Object___Class *klass; + MonitorData *monitor; +}; + +struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object_ { + struct GameObject *key; + struct Dictionary_2_System_Type_System_Object__1 *value; +}; + +struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object___Boxed { + struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object___Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object_ fields; +}; + +struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object___Array { + struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object_ vector[32]; +}; + +struct IEnumerator_1_KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object_ { + struct IEnumerator_1_KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_Dictionary_2_System_Type_System_Object_ { + struct IEnumerable_1_Dictionary_2_System_Type_System_Object___Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object___Array__VTable { +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object___Array__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object___Array__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TKey__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object___VTable vtable; +}; + +struct Dictionary_2_System_Type_System_Object__1__Array__VTable { +}; + +struct Dictionary_2_System_Type_System_Object__1__Array__StaticFields { +}; + +struct Dictionary_2_System_Type_System_Object__1__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_System_Type_System_Object__1__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_System_Type_System_Object__1__Array__VTable vtable; +}; + +struct IEnumerator_1_Dictionary_2_System_Type_System_Object___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_Dictionary_2_System_Type_System_Object___StaticFields { +}; + +struct IEnumerator_1_Dictionary_2_System_Type_System_Object___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_Dictionary_2_System_Type_System_Object___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_Dictionary_2_System_Type_System_Object___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TValue__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object___VTable vtable; +}; + +struct ICollection_1_Dictionary_2_System_Type_System_Object___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_Dictionary_2_System_Type_System_Object___StaticFields { +}; + +struct ICollection_1_Dictionary_2_System_Type_System_Object___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_Dictionary_2_System_Type_System_Object___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_Dictionary_2_System_Type_System_Object___VTable vtable; +}; + +struct Dictionary_2_System_Type_System_Object__2__VTable { +}; + +struct Dictionary_2_System_Type_System_Object__2__StaticFields { +}; + +struct Dictionary_2_System_Type_System_Object__2__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_System_Type_System_Object__2__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_System_Type_System_Object__2__VTable vtable; +}; + +struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object___StaticFields { +}; + +struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object___VTable vtable; +}; + +struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object___Array__VTable { +}; + +struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object___Array__StaticFields { +}; + +struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object___Array__VTable vtable; +}; + +struct IEnumerator_1_KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object___StaticFields { +}; + +struct IEnumerator_1_KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object___VTable vtable; +}; + +struct IEnumerable_1_Dictionary_2_System_Type_System_Object___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_Dictionary_2_System_Type_System_Object___StaticFields { +}; + +struct IEnumerable_1_Dictionary_2_System_Type_System_Object___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_Dictionary_2_System_Type_System_Object___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_Dictionary_2_System_Type_System_Object___VTable vtable; +}; + +struct Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Values; + VirtualInvokeData ContainsKey; + VirtualInvokeData Add; + VirtualInvokeData Remove; + VirtualInvokeData TryGetValue; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add; + VirtualInvokeData Clear; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_get_Item; + VirtualInvokeData System_Collections_IDictionary_set_Item; + VirtualInvokeData System_Collections_IDictionary_get_Keys; + VirtualInvokeData System_Collections_IDictionary_get_Values; + VirtualInvokeData System_Collections_IDictionary_Contains; + VirtualInvokeData System_Collections_IDictionary_Add; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IDictionary_get_IsReadOnly; + VirtualInvokeData System_Collections_IDictionary_get_IsFixedSize; + VirtualInvokeData System_Collections_IDictionary_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_Remove; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData TryGetValue_1; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Values; + VirtualInvokeData get_Count_2; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object___StaticFields { +}; + +struct Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1 { + int32_t hashCode; + int32_t next; + struct GameObject *key; + struct Dictionary_2_System_Type_System_Object_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1__Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1__Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1 fields; +}; + +struct __declspec(align(8)) Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1__Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1__Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_UnityEngine_GameObject_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1 *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1 *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1 { + struct Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1__Class *klass; + MonitorData *monitor; + struct Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1__Fields fields; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1__Array { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1 vector[32]; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1__Fields { + struct Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1 *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1 { + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1__Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1__Fields fields; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1__Fields { + struct Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1 *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1 { + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1__Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1__Fields fields; +}; + +struct Dictionary_2_System_Type_System_Object___Array { + struct Dictionary_2_System_Type_System_Object___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Dictionary_2_System_Type_System_Object_ *vector[32]; +}; + +struct IEnumerator_1_Dictionary_2_System_Type_System_Object__1 { + struct IEnumerator_1_Dictionary_2_System_Type_System_Object__1__Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_Dictionary_2_System_Type_System_Object__1 { + struct ICollection_1_Dictionary_2_System_Type_System_Object__1__Class *klass; + MonitorData *monitor; +}; + +struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1 { + struct GameObject *key; + struct Dictionary_2_System_Type_System_Object_ *value; +}; + +struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1__Boxed { + struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1__Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1 fields; +}; + +struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1__Array { + struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1 vector[32]; +}; + +struct IEnumerator_1_KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1 { + struct IEnumerator_1_KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1__Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_Dictionary_2_System_Type_System_Object__1 { + struct IEnumerable_1_Dictionary_2_System_Type_System_Object__1__Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1__Array__VTable { +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1__Array__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1__Array__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TKey__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1__VTable vtable; +}; + +struct Dictionary_2_System_Type_System_Object___Array__VTable { +}; + +struct Dictionary_2_System_Type_System_Object___Array__StaticFields { +}; + +struct Dictionary_2_System_Type_System_Object___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_System_Type_System_Object___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_System_Type_System_Object___Array__VTable vtable; +}; + +struct IEnumerator_1_Dictionary_2_System_Type_System_Object__1__VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_Dictionary_2_System_Type_System_Object__1__StaticFields { +}; + +struct IEnumerator_1_Dictionary_2_System_Type_System_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_Dictionary_2_System_Type_System_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_Dictionary_2_System_Type_System_Object__1__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TValue__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1__VTable vtable; +}; + +struct ICollection_1_Dictionary_2_System_Type_System_Object__1__VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_Dictionary_2_System_Type_System_Object__1__StaticFields { +}; + +struct ICollection_1_Dictionary_2_System_Type_System_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_Dictionary_2_System_Type_System_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_Dictionary_2_System_Type_System_Object__1__VTable vtable; +}; + +struct Dictionary_2_System_Type_System_Object__3__VTable { +}; + +struct Dictionary_2_System_Type_System_Object__3__StaticFields { +}; + +struct Dictionary_2_System_Type_System_Object__3__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_System_Type_System_Object__3__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_System_Type_System_Object__3__VTable vtable; +}; + +struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1__StaticFields { +}; + +struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1__VTable vtable; +}; + +struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1__Array__VTable { +}; + +struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1__Array__StaticFields { +}; + +struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1__Array__VTable vtable; +}; + +struct IEnumerator_1_KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1__VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1__StaticFields { +}; + +struct IEnumerator_1_KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1__VTable vtable; +}; + +struct IEnumerable_1_Dictionary_2_System_Type_System_Object__1__VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_Dictionary_2_System_Type_System_Object__1__StaticFields { +}; + +struct IEnumerable_1_Dictionary_2_System_Type_System_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_Dictionary_2_System_Type_System_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_Dictionary_2_System_Type_System_Object__1__VTable vtable; +}; + +struct Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Values; + VirtualInvokeData ContainsKey; + VirtualInvokeData Add; + VirtualInvokeData Remove; + VirtualInvokeData TryGetValue; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add; + VirtualInvokeData Clear; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_get_Item; + VirtualInvokeData System_Collections_IDictionary_set_Item; + VirtualInvokeData System_Collections_IDictionary_get_Keys; + VirtualInvokeData System_Collections_IDictionary_get_Values; + VirtualInvokeData System_Collections_IDictionary_Contains; + VirtualInvokeData System_Collections_IDictionary_Add; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IDictionary_get_IsReadOnly; + VirtualInvokeData System_Collections_IDictionary_get_IsFixedSize; + VirtualInvokeData System_Collections_IDictionary_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_Remove; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData TryGetValue_1; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Values; + VirtualInvokeData get_Count_2; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1__StaticFields { +}; + +struct Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1__VTable vtable; +}; + +struct NavMesh { + struct NavMesh__Class *klass; + MonitorData *monitor; +}; + +struct NavMesh__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct NavMesh__StaticFields { + struct NavMesh_OnNavMeshPreUpdate *onPreUpdate; +}; + +struct NavMesh__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NavMesh__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NavMesh__VTable vtable; +}; + +struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_Component_ { + struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_Component___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) ObjectPool_1_System_Collections_Generic_List_1__2__Fields { + struct List_1_List_1_UnityEngine_Component_ *m_List; + struct Func_1_System_Collections_Generic_List_1__13 *m_CreateFunc; + struct Action_1_System_Collections_Generic_List_1__10 *m_ActionOnGet; + struct Action_1_System_Collections_Generic_List_1__10 *m_ActionOnRelease; + struct Action_1_System_Collections_Generic_List_1__10 *m_ActionOnDestroy; + int32_t m_MaxSize; + bool m_CollectionCheck; + int32_t _CountAll_k__BackingField; +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__2 { + struct ObjectPool_1_System_Collections_Generic_List_1__2__Class *klass; + MonitorData *monitor; + struct ObjectPool_1_System_Collections_Generic_List_1__2__Fields fields; +}; + +struct __declspec(align(8)) List_1_List_1_UnityEngine_Component___Fields { + struct List_1_UnityEngine_Component___Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_List_1_UnityEngine_Component_ { + struct List_1_List_1_UnityEngine_Component___Class *klass; + MonitorData *monitor; + struct List_1_List_1_UnityEngine_Component___Fields fields; +}; + +struct List_1_UnityEngine_Component___Array { + struct List_1_UnityEngine_Component___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct List_1_UnityEngine_Component_ *vector[32]; +}; + +struct IEnumerator_1_List_1_UnityEngine_Component_ { + struct IEnumerator_1_List_1_UnityEngine_Component___Class *klass; + MonitorData *monitor; +}; + +struct Func_1_System_Collections_Generic_List_1__13__Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_1_System_Collections_Generic_List_1__13 { + struct Func_1_System_Collections_Generic_List_1__13__Class *klass; + MonitorData *monitor; + struct Func_1_System_Collections_Generic_List_1__13__Fields fields; +}; + +struct Action_1_System_Collections_Generic_List_1__10__Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_1_System_Collections_Generic_List_1__10 { + struct Action_1_System_Collections_Generic_List_1__10__Class *klass; + MonitorData *monitor; + struct Action_1_System_Collections_Generic_List_1__10__Fields fields; +}; + +struct PooledObject_1_System_Collections_Generic_List_1__1 { + struct List_1_UnityEngine_Component_ *m_ToReturn; + struct IObjectPool_1_System_Collections_Generic_List_1__1 *m_Pool; +}; + +struct PooledObject_1_System_Collections_Generic_List_1__1__Boxed { + struct PooledObject_1_System_Collections_Generic_List_1__1__Class *klass; + MonitorData *monitor; + struct PooledObject_1_System_Collections_Generic_List_1__1 fields; +}; + +struct IObjectPool_1_System_Collections_Generic_List_1__1 { + struct IObjectPool_1_System_Collections_Generic_List_1__1__Class *klass; + MonitorData *monitor; +}; + +struct List_1_UnityEngine_Component___Array__VTable { +}; + +struct List_1_UnityEngine_Component___Array__StaticFields { +}; + +struct List_1_UnityEngine_Component___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_Component___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_Component___Array__VTable vtable; +}; + +struct IEnumerator_1_List_1_UnityEngine_Component___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_List_1_UnityEngine_Component___StaticFields { +}; + +struct IEnumerator_1_List_1_UnityEngine_Component___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_List_1_UnityEngine_Component___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_List_1_UnityEngine_Component___VTable vtable; +}; + +struct List_1_List_1_UnityEngine_Component___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_List_1_UnityEngine_Component___StaticFields { + struct List_1_UnityEngine_Component___Array *s_emptyArray; +}; + +struct List_1_List_1_UnityEngine_Component___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_List_1_UnityEngine_Component___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_List_1_UnityEngine_Component___VTable vtable; +}; + +struct Func_1_System_Collections_Generic_List_1__13__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_1_System_Collections_Generic_List_1__13__StaticFields { +}; + +struct Func_1_System_Collections_Generic_List_1__13__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_1_System_Collections_Generic_List_1__13__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_1_System_Collections_Generic_List_1__13__VTable vtable; +}; + +struct Action_1_System_Collections_Generic_List_1__10__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_1_System_Collections_Generic_List_1__10__StaticFields { +}; + +struct Action_1_System_Collections_Generic_List_1__10__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_1_System_Collections_Generic_List_1__10__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_1_System_Collections_Generic_List_1__10__VTable vtable; +}; + +struct IObjectPool_1_System_Collections_Generic_List_1__1__VTable { + VirtualInvokeData Release; +}; + +struct IObjectPool_1_System_Collections_Generic_List_1__1__StaticFields { +}; + +struct IObjectPool_1_System_Collections_Generic_List_1__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IObjectPool_1_System_Collections_Generic_List_1__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IObjectPool_1_System_Collections_Generic_List_1__1__VTable vtable; +}; + +struct PooledObject_1_System_Collections_Generic_List_1__1__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_IDisposable_Dispose; +}; + +struct PooledObject_1_System_Collections_Generic_List_1__1__StaticFields { +}; + +struct PooledObject_1_System_Collections_Generic_List_1__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PooledObject_1_System_Collections_Generic_List_1__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PooledObject_1_System_Collections_Generic_List_1__1__VTable vtable; +}; + +struct List_1_UnityEngine_Component__1__VTable { +}; + +struct List_1_UnityEngine_Component__1__StaticFields { +}; + +struct List_1_UnityEngine_Component__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_Component__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_Component__1__VTable vtable; +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__2__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Dispose; + VirtualInvokeData Release; + VirtualInvokeData get_CountInactive; + VirtualInvokeData Get; + VirtualInvokeData Get_1; + VirtualInvokeData Clear; +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__2__StaticFields { +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__2__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ObjectPool_1_System_Collections_Generic_List_1__2__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ObjectPool_1_System_Collections_Generic_List_1__2__VTable vtable; +}; + +struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_Component___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_Component___StaticFields { + struct ObjectPool_1_System_Collections_Generic_List_1__2 *s_Pool; +}; + +struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_Component___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_Component___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_Component___VTable vtable; +}; + +struct ICollection_1_UnityEngine_EventSystems_IEventSystemHandler_ { + struct ICollection_1_UnityEngine_EventSystems_IEventSystemHandler___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_UnityEngine_EventSystems_IEventSystemHandler___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_UnityEngine_EventSystems_IEventSystemHandler___StaticFields { +}; + +struct ICollection_1_UnityEngine_EventSystems_IEventSystemHandler___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_UnityEngine_EventSystems_IEventSystemHandler___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_UnityEngine_EventSystems_IEventSystemHandler___VTable vtable; +}; + +struct IEventSystemHandler { + struct IEventSystemHandler__Class *klass; + MonitorData *monitor; +}; + +struct IEventSystemHandler__VTable { +}; + +struct IEventSystemHandler__StaticFields { +}; + +struct IEventSystemHandler__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEventSystemHandler__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEventSystemHandler__VTable vtable; +}; + +struct __declspec(align(8)) List_1_UnityEngine_EventSystems_IEventSystemHandler___Fields { + struct IEventSystemHandler__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_EventSystems_IEventSystemHandler_ { + struct List_1_UnityEngine_EventSystems_IEventSystemHandler___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_EventSystems_IEventSystemHandler___Fields fields; +}; + +struct IEventSystemHandler__Array { + struct IEventSystemHandler__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct IEventSystemHandler *vector[32]; +}; + +struct IEnumerator_1_UnityEngine_EventSystems_IEventSystemHandler_ { + struct IEnumerator_1_UnityEngine_EventSystems_IEventSystemHandler___Class *klass; + MonitorData *monitor; +}; + +struct IEventSystemHandler__Array__VTable { +}; + +struct IEventSystemHandler__Array__StaticFields { +}; + +struct IEventSystemHandler__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEventSystemHandler__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEventSystemHandler__Array__VTable vtable; +}; + +struct IEnumerator_1_UnityEngine_EventSystems_IEventSystemHandler___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_UnityEngine_EventSystems_IEventSystemHandler___StaticFields { +}; + +struct IEnumerator_1_UnityEngine_EventSystems_IEventSystemHandler___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_UnityEngine_EventSystems_IEventSystemHandler___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_UnityEngine_EventSystems_IEventSystemHandler___VTable vtable; +}; + +struct List_1_UnityEngine_EventSystems_IEventSystemHandler___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_UnityEngine_EventSystems_IEventSystemHandler___StaticFields { + struct IEventSystemHandler__Array *s_emptyArray; +}; + +struct List_1_UnityEngine_EventSystems_IEventSystemHandler___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_EventSystems_IEventSystemHandler___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_EventSystems_IEventSystemHandler___VTable vtable; +}; + +struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_EventSystems_IEventSystemHandler_ { + struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_EventSystems_IEventSystemHandler___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) ObjectPool_1_System_Collections_Generic_List_1__3__Fields { + struct List_1_List_1_UnityEngine_EventSystems_IEventSystemHandler_ *m_List; + struct Func_1_System_Collections_Generic_List_1__14 *m_CreateFunc; + struct Action_1_System_Collections_Generic_List_1__11 *m_ActionOnGet; + struct Action_1_System_Collections_Generic_List_1__11 *m_ActionOnRelease; + struct Action_1_System_Collections_Generic_List_1__11 *m_ActionOnDestroy; + int32_t m_MaxSize; + bool m_CollectionCheck; + int32_t _CountAll_k__BackingField; +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__3 { + struct ObjectPool_1_System_Collections_Generic_List_1__3__Class *klass; + MonitorData *monitor; + struct ObjectPool_1_System_Collections_Generic_List_1__3__Fields fields; +}; + +struct __declspec(align(8)) List_1_List_1_UnityEngine_EventSystems_IEventSystemHandler___Fields { + struct List_1_UnityEngine_EventSystems_IEventSystemHandler___Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_List_1_UnityEngine_EventSystems_IEventSystemHandler_ { + struct List_1_List_1_UnityEngine_EventSystems_IEventSystemHandler___Class *klass; + MonitorData *monitor; + struct List_1_List_1_UnityEngine_EventSystems_IEventSystemHandler___Fields fields; +}; + +struct List_1_UnityEngine_EventSystems_IEventSystemHandler___Array { + struct List_1_UnityEngine_EventSystems_IEventSystemHandler___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct List_1_UnityEngine_EventSystems_IEventSystemHandler_ *vector[32]; +}; + +struct IEnumerator_1_List_1_UnityEngine_EventSystems_IEventSystemHandler_ { + struct IEnumerator_1_List_1_UnityEngine_EventSystems_IEventSystemHandler___Class *klass; + MonitorData *monitor; +}; + +struct Func_1_System_Collections_Generic_List_1__14__Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_1_System_Collections_Generic_List_1__14 { + struct Func_1_System_Collections_Generic_List_1__14__Class *klass; + MonitorData *monitor; + struct Func_1_System_Collections_Generic_List_1__14__Fields fields; +}; + +struct Action_1_System_Collections_Generic_List_1__11__Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_1_System_Collections_Generic_List_1__11 { + struct Action_1_System_Collections_Generic_List_1__11__Class *klass; + MonitorData *monitor; + struct Action_1_System_Collections_Generic_List_1__11__Fields fields; +}; + +struct PooledObject_1_System_Collections_Generic_List_1__2 { + struct List_1_UnityEngine_EventSystems_IEventSystemHandler_ *m_ToReturn; + struct IObjectPool_1_System_Collections_Generic_List_1__2 *m_Pool; +}; + +struct PooledObject_1_System_Collections_Generic_List_1__2__Boxed { + struct PooledObject_1_System_Collections_Generic_List_1__2__Class *klass; + MonitorData *monitor; + struct PooledObject_1_System_Collections_Generic_List_1__2 fields; +}; + +struct IObjectPool_1_System_Collections_Generic_List_1__2 { + struct IObjectPool_1_System_Collections_Generic_List_1__2__Class *klass; + MonitorData *monitor; +}; + +struct List_1_UnityEngine_EventSystems_IEventSystemHandler___Array__VTable { +}; + +struct List_1_UnityEngine_EventSystems_IEventSystemHandler___Array__StaticFields { +}; + +struct List_1_UnityEngine_EventSystems_IEventSystemHandler___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_EventSystems_IEventSystemHandler___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_EventSystems_IEventSystemHandler___Array__VTable vtable; +}; + +struct IEnumerator_1_List_1_UnityEngine_EventSystems_IEventSystemHandler___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_List_1_UnityEngine_EventSystems_IEventSystemHandler___StaticFields { +}; + +struct IEnumerator_1_List_1_UnityEngine_EventSystems_IEventSystemHandler___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_List_1_UnityEngine_EventSystems_IEventSystemHandler___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_List_1_UnityEngine_EventSystems_IEventSystemHandler___VTable vtable; +}; + +struct List_1_List_1_UnityEngine_EventSystems_IEventSystemHandler___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_List_1_UnityEngine_EventSystems_IEventSystemHandler___StaticFields { + struct List_1_UnityEngine_EventSystems_IEventSystemHandler___Array *s_emptyArray; +}; + +struct List_1_List_1_UnityEngine_EventSystems_IEventSystemHandler___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_List_1_UnityEngine_EventSystems_IEventSystemHandler___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_List_1_UnityEngine_EventSystems_IEventSystemHandler___VTable vtable; +}; + +struct Func_1_System_Collections_Generic_List_1__14__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_1_System_Collections_Generic_List_1__14__StaticFields { +}; + +struct Func_1_System_Collections_Generic_List_1__14__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_1_System_Collections_Generic_List_1__14__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_1_System_Collections_Generic_List_1__14__VTable vtable; +}; + +struct Action_1_System_Collections_Generic_List_1__11__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_1_System_Collections_Generic_List_1__11__StaticFields { +}; + +struct Action_1_System_Collections_Generic_List_1__11__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_1_System_Collections_Generic_List_1__11__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_1_System_Collections_Generic_List_1__11__VTable vtable; +}; + +struct IObjectPool_1_System_Collections_Generic_List_1__2__VTable { + VirtualInvokeData Release; +}; + +struct IObjectPool_1_System_Collections_Generic_List_1__2__StaticFields { +}; + +struct IObjectPool_1_System_Collections_Generic_List_1__2__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IObjectPool_1_System_Collections_Generic_List_1__2__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IObjectPool_1_System_Collections_Generic_List_1__2__VTable vtable; +}; + +struct PooledObject_1_System_Collections_Generic_List_1__2__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_IDisposable_Dispose; +}; + +struct PooledObject_1_System_Collections_Generic_List_1__2__StaticFields { +}; + +struct PooledObject_1_System_Collections_Generic_List_1__2__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PooledObject_1_System_Collections_Generic_List_1__2__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PooledObject_1_System_Collections_Generic_List_1__2__VTable vtable; +}; + +struct List_1_UnityEngine_EventSystems_IEventSystemHandler__1__VTable { +}; + +struct List_1_UnityEngine_EventSystems_IEventSystemHandler__1__StaticFields { +}; + +struct List_1_UnityEngine_EventSystems_IEventSystemHandler__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_EventSystems_IEventSystemHandler__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_EventSystems_IEventSystemHandler__1__VTable vtable; +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__3__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Dispose; + VirtualInvokeData Release; + VirtualInvokeData get_CountInactive; + VirtualInvokeData Get; + VirtualInvokeData Get_1; + VirtualInvokeData Clear; +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__3__StaticFields { +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__3__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ObjectPool_1_System_Collections_Generic_List_1__3__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ObjectPool_1_System_Collections_Generic_List_1__3__VTable vtable; +}; + +struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_EventSystems_IEventSystemHandler___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_EventSystems_IEventSystemHandler___StaticFields { + struct ObjectPool_1_System_Collections_Generic_List_1__3 *s_Pool; +}; + +struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_EventSystems_IEventSystemHandler___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_EventSystems_IEventSystemHandler___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_EventSystems_IEventSystemHandler___VTable vtable; +}; + +struct GenericObjectPool { + struct GenericObjectPool__Class *klass; + MonitorData *monitor; +}; + +struct GenericObjectPool__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct GenericObjectPool__StaticFields { + struct Dictionary_2_System_Type_System_Object_ *s_GenericPool; +}; + +struct GenericObjectPool__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GenericObjectPool__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GenericObjectPool__VTable vtable; +}; + +struct TextInfoToUpperData { + struct TextInfoToUpperData__Class *klass; + MonitorData *monitor; +}; + +struct TextInfoToUpperData__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct TextInfoToUpperData__StaticFields { + struct Char__Array *range_00e0_0586; + struct Char__Array *range_1e01_1ff3; + struct Char__Array *range_2170_2184; + struct Char__Array *range_24d0_24e9; + struct Char__Array *range_2c30_2ce3; + struct Char__Array *range_2d00_2d25; + struct Char__Array *range_a641_a697; + struct Char__Array *range_a723_a78c; +}; + +struct TextInfoToUpperData__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TextInfoToUpperData__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TextInfoToUpperData__VTable vtable; +}; + +struct TextInfoToLowerData { + struct TextInfoToLowerData__Class *klass; + MonitorData *monitor; +}; + +struct TextInfoToLowerData__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct TextInfoToLowerData__StaticFields { + struct Char__Array *range_00c0_0556; + struct Char__Array *range_10a0_10c5; + struct Char__Array *range_1e00_1ffc; + struct Char__Array *range_2160_216f; + struct Char__Array *range_24b6_24cf; + struct Char__Array *range_2c00_2c2e; + struct Char__Array *range_2c60_2ce2; + struct Char__Array *range_a640_a696; + struct Char__Array *range_a722_a78b; +}; + +struct TextInfoToLowerData__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TextInfoToLowerData__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TextInfoToLowerData__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaEntity_ { + struct Dictionary_2_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaEntity_ *_dictionary; + int32_t _index; + int32_t _version; + struct SchemaEntity *_currentValue; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaEntity___Boxed { + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaEntity___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaEntity_ fields; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaEntity___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaEntity___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaEntity___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaEntity___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaEntity___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaAttDef_ { + struct Dictionary_2_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaAttDef_ *_dictionary; + int32_t _version; + int32_t _index; + struct KeyValuePair_2_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaAttDef_ _current; + int32_t _getEnumeratorRetType; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaAttDef___Boxed { + struct Dictionary_2_TKey_TValue_Enumerator_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaAttDef___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Enumerator_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaAttDef_ fields; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaAttDef___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Key; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Value; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Entry; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaAttDef___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaAttDef___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Enumerator_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaAttDef___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Enumerator_System_Xml_XmlQualifiedName_System_Xml_Schema_SchemaAttDef___VTable vtable; +}; + +struct Debugger { + struct Debugger__Class *klass; + MonitorData *monitor; +}; + +struct Debugger__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Debugger__StaticFields { + struct String *DefaultCategory; +}; + +struct Debugger__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Debugger__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Debugger__VTable vtable; +}; + +struct EventCallback_1_CustomStyleResolvedEvent___Fields { + struct MulticastDelegate__Fields _; +}; + +struct EventCallback_1_CustomStyleResolvedEvent_ { + struct EventCallback_1_CustomStyleResolvedEvent___Class *klass; + MonitorData *monitor; + struct EventCallback_1_CustomStyleResolvedEvent___Fields fields; +}; + +struct EventCallback_1_CustomStyleResolvedEvent___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct EventCallback_1_CustomStyleResolvedEvent___StaticFields { +}; + +struct EventCallback_1_CustomStyleResolvedEvent___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EventCallback_1_CustomStyleResolvedEvent___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EventCallback_1_CustomStyleResolvedEvent___VTable vtable; +}; + +struct X509CertificateCollection___VTable { +}; + +struct X509CertificateCollection___StaticFields { +}; + +struct X509CertificateCollection___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct X509CertificateCollection___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct X509CertificateCollection___VTable vtable; +}; + +struct AutoResetEvent__Array { + struct AutoResetEvent__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct AutoResetEvent *vector[32]; +}; + +struct AutoResetEvent__Array__VTable { +}; + +struct AutoResetEvent__Array__StaticFields { +}; + +struct AutoResetEvent__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct AutoResetEvent__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct AutoResetEvent__Array__VTable vtable; +}; + +struct PathPool { + struct PathPool__Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_Stack_1_Pathfinding_Path_ { + int32_t hashCode; + int32_t next; + struct Type *key; + struct Stack_1_Pathfinding_Path_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_Stack_1_Pathfinding_Path___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Type_Stack_1_Pathfinding_Path___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Type_Stack_1_Pathfinding_Path_ fields; +}; + +struct __declspec(align(8)) Dictionary_2_System_Type_Stack_1_Pathfinding_Path___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_System_Type_Stack_1_Pathfinding_Path___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_System_Type_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_Stack_1_Pathfinding_Path_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_Stack_1_Pathfinding_Path_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_System_Type_Stack_1_Pathfinding_Path_ { + struct Dictionary_2_System_Type_Stack_1_Pathfinding_Path___Class *klass; + MonitorData *monitor; + struct Dictionary_2_System_Type_Stack_1_Pathfinding_Path___Fields fields; +}; + +struct __declspec(align(8)) Stack_1_Pathfinding_Path___Fields { + struct Path_1__Array *_array; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct Stack_1_Pathfinding_Path_ { + struct Stack_1_Pathfinding_Path___Class *klass; + MonitorData *monitor; + struct Stack_1_Pathfinding_Path___Fields fields; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_Stack_1_Pathfinding_Path___Array { + struct Dictionary_2_TKey_TValue_Entry_System_Type_Stack_1_Pathfinding_Path___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Dictionary_2_TKey_TValue_Entry_System_Type_Stack_1_Pathfinding_Path_ vector[32]; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_KeyCollection_System_Type_Stack_1_Pathfinding_Path___Fields { + struct Dictionary_2_System_Type_Stack_1_Pathfinding_Path_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_Stack_1_Pathfinding_Path_ { + struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_Stack_1_Pathfinding_Path___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_Stack_1_Pathfinding_Path___Fields fields; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_ValueCollection_System_Type_Stack_1_Pathfinding_Path___Fields { + struct Dictionary_2_System_Type_Stack_1_Pathfinding_Path_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_Stack_1_Pathfinding_Path_ { + struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_Stack_1_Pathfinding_Path___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_Stack_1_Pathfinding_Path___Fields fields; +}; + +struct Stack_1_Pathfinding_Path___Array { + struct Stack_1_Pathfinding_Path___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Stack_1_Pathfinding_Path_ *vector[32]; +}; + +struct IEnumerator_1_Stack_1_Pathfinding_Path_ { + struct IEnumerator_1_Stack_1_Pathfinding_Path___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_Stack_1_Pathfinding_Path_ { + struct ICollection_1_Stack_1_Pathfinding_Path___Class *klass; + MonitorData *monitor; +}; + +struct KeyValuePair_2_System_Type_Stack_1_Pathfinding_Path_ { + struct Type *key; + struct Stack_1_Pathfinding_Path_ *value; +}; + +struct KeyValuePair_2_System_Type_Stack_1_Pathfinding_Path___Boxed { + struct KeyValuePair_2_System_Type_Stack_1_Pathfinding_Path___Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_System_Type_Stack_1_Pathfinding_Path_ fields; +}; + +struct KeyValuePair_2_System_Type_Stack_1_Pathfinding_Path___Array { + struct KeyValuePair_2_System_Type_Stack_1_Pathfinding_Path___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct KeyValuePair_2_System_Type_Stack_1_Pathfinding_Path_ vector[32]; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Type_Stack_1_Pathfinding_Path_ { + struct IEnumerator_1_KeyValuePair_2_System_Type_Stack_1_Pathfinding_Path___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_Stack_1_Pathfinding_Path_ { + struct IEnumerable_1_Stack_1_Pathfinding_Path___Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Int32_ { + int32_t hashCode; + int32_t next; + struct Type *key; + int32_t value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Int32___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Int32___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Int32_ fields; +}; + +struct __declspec(align(8)) Dictionary_2_System_Type_System_Int32___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Int32___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_System_Type_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_System_Int32_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_System_Int32_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_System_Type_System_Int32_ { + struct Dictionary_2_System_Type_System_Int32___Class *klass; + MonitorData *monitor; + struct Dictionary_2_System_Type_System_Int32___Fields fields; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Int32___Array { + struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Int32___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Int32_ vector[32]; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_KeyCollection_System_Type_System_Int32___Fields { + struct Dictionary_2_System_Type_System_Int32_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_System_Int32_ { + struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_System_Int32___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_System_Int32___Fields fields; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_ValueCollection_System_Type_System_Int32___Fields { + struct Dictionary_2_System_Type_System_Int32_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_System_Int32_ { + struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_System_Int32___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_System_Int32___Fields fields; +}; + +struct KeyValuePair_2_System_Type_System_Int32_ { + struct Type *key; + int32_t value; +}; + +struct KeyValuePair_2_System_Type_System_Int32___Boxed { + struct KeyValuePair_2_System_Type_System_Int32___Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_System_Type_System_Int32_ fields; +}; + +struct KeyValuePair_2_System_Type_System_Int32___Array { + struct KeyValuePair_2_System_Type_System_Int32___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct KeyValuePair_2_System_Type_System_Int32_ vector[32]; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Type_System_Int32_ { + struct IEnumerator_1_KeyValuePair_2_System_Type_System_Int32___Class *klass; + MonitorData *monitor; +}; + +struct Stack_1_Pathfinding_Path___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_1; +}; + +struct Stack_1_Pathfinding_Path___StaticFields { +}; + +struct Stack_1_Pathfinding_Path___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Stack_1_Pathfinding_Path___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Stack_1_Pathfinding_Path___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_Stack_1_Pathfinding_Path___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_Stack_1_Pathfinding_Path___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_Stack_1_Pathfinding_Path___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_System_Type_Stack_1_Pathfinding_Path___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_System_Type_Stack_1_Pathfinding_Path___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_Stack_1_Pathfinding_Path___Array__VTable { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_Stack_1_Pathfinding_Path___Array__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_Stack_1_Pathfinding_Path___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_System_Type_Stack_1_Pathfinding_Path___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_System_Type_Stack_1_Pathfinding_Path___Array__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_Stack_1_Pathfinding_Path___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TKey__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_Stack_1_Pathfinding_Path___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_Stack_1_Pathfinding_Path___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_Stack_1_Pathfinding_Path___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_Stack_1_Pathfinding_Path___VTable vtable; +}; + +struct Stack_1_Pathfinding_Path___Array__VTable { +}; + +struct Stack_1_Pathfinding_Path___Array__StaticFields { +}; + +struct Stack_1_Pathfinding_Path___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Stack_1_Pathfinding_Path___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Stack_1_Pathfinding_Path___Array__VTable vtable; +}; + +struct IEnumerator_1_Stack_1_Pathfinding_Path___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_Stack_1_Pathfinding_Path___StaticFields { +}; + +struct IEnumerator_1_Stack_1_Pathfinding_Path___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_Stack_1_Pathfinding_Path___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_Stack_1_Pathfinding_Path___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_Stack_1_Pathfinding_Path___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TValue__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_Stack_1_Pathfinding_Path___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_Stack_1_Pathfinding_Path___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_Stack_1_Pathfinding_Path___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_Stack_1_Pathfinding_Path___VTable vtable; +}; + +struct ICollection_1_Stack_1_Pathfinding_Path___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_Stack_1_Pathfinding_Path___StaticFields { +}; + +struct ICollection_1_Stack_1_Pathfinding_Path___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_Stack_1_Pathfinding_Path___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_Stack_1_Pathfinding_Path___VTable vtable; +}; + +struct Stack_1_Pathfinding_Path__1__VTable { +}; + +struct Stack_1_Pathfinding_Path__1__StaticFields { +}; + +struct Stack_1_Pathfinding_Path__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Stack_1_Pathfinding_Path__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Stack_1_Pathfinding_Path__1__VTable vtable; +}; + +struct KeyValuePair_2_System_Type_Stack_1_Pathfinding_Path___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct KeyValuePair_2_System_Type_Stack_1_Pathfinding_Path___StaticFields { +}; + +struct KeyValuePair_2_System_Type_Stack_1_Pathfinding_Path___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_Type_Stack_1_Pathfinding_Path___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_Type_Stack_1_Pathfinding_Path___VTable vtable; +}; + +struct KeyValuePair_2_System_Type_Stack_1_Pathfinding_Path___Array__VTable { +}; + +struct KeyValuePair_2_System_Type_Stack_1_Pathfinding_Path___Array__StaticFields { +}; + +struct KeyValuePair_2_System_Type_Stack_1_Pathfinding_Path___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_Type_Stack_1_Pathfinding_Path___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_Type_Stack_1_Pathfinding_Path___Array__VTable vtable; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Type_Stack_1_Pathfinding_Path___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Type_Stack_1_Pathfinding_Path___StaticFields { +}; + +struct IEnumerator_1_KeyValuePair_2_System_Type_Stack_1_Pathfinding_Path___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_KeyValuePair_2_System_Type_Stack_1_Pathfinding_Path___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_KeyValuePair_2_System_Type_Stack_1_Pathfinding_Path___VTable vtable; +}; + +struct IEnumerable_1_Stack_1_Pathfinding_Path___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_Stack_1_Pathfinding_Path___StaticFields { +}; + +struct IEnumerable_1_Stack_1_Pathfinding_Path___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_Stack_1_Pathfinding_Path___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_Stack_1_Pathfinding_Path___VTable vtable; +}; + +struct Dictionary_2_System_Type_Stack_1_Pathfinding_Path___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Values; + VirtualInvokeData ContainsKey; + VirtualInvokeData Add; + VirtualInvokeData Remove; + VirtualInvokeData TryGetValue; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add; + VirtualInvokeData Clear; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_get_Item; + VirtualInvokeData System_Collections_IDictionary_set_Item; + VirtualInvokeData System_Collections_IDictionary_get_Keys; + VirtualInvokeData System_Collections_IDictionary_get_Values; + VirtualInvokeData System_Collections_IDictionary_Contains; + VirtualInvokeData System_Collections_IDictionary_Add; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IDictionary_get_IsReadOnly; + VirtualInvokeData System_Collections_IDictionary_get_IsFixedSize; + VirtualInvokeData System_Collections_IDictionary_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_Remove; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData TryGetValue_1; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Values; + VirtualInvokeData get_Count_2; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct Dictionary_2_System_Type_Stack_1_Pathfinding_Path___StaticFields { +}; + +struct Dictionary_2_System_Type_Stack_1_Pathfinding_Path___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_System_Type_Stack_1_Pathfinding_Path___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_System_Type_Stack_1_Pathfinding_Path___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Int32___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Int32___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Int32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Int32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Int32___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Int32___Array__VTable { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Int32___Array__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Int32___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Int32___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Int32___Array__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_System_Int32___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TKey__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_System_Int32___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_System_Int32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_System_Int32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_System_Int32___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_System_Int32___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TValue__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_System_Int32___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_System_Int32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_System_Int32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_System_Int32___VTable vtable; +}; + +struct KeyValuePair_2_System_Type_System_Int32___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct KeyValuePair_2_System_Type_System_Int32___StaticFields { +}; + +struct KeyValuePair_2_System_Type_System_Int32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_Type_System_Int32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_Type_System_Int32___VTable vtable; +}; + +struct KeyValuePair_2_System_Type_System_Int32___Array__VTable { +}; + +struct KeyValuePair_2_System_Type_System_Int32___Array__StaticFields { +}; + +struct KeyValuePair_2_System_Type_System_Int32___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_Type_System_Int32___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_Type_System_Int32___Array__VTable vtable; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Type_System_Int32___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Type_System_Int32___StaticFields { +}; + +struct IEnumerator_1_KeyValuePair_2_System_Type_System_Int32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_KeyValuePair_2_System_Type_System_Int32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_KeyValuePair_2_System_Type_System_Int32___VTable vtable; +}; + +struct Dictionary_2_System_Type_System_Int32___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Values; + VirtualInvokeData ContainsKey; + VirtualInvokeData Add; + VirtualInvokeData Remove; + VirtualInvokeData TryGetValue; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add; + VirtualInvokeData Clear; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_get_Item; + VirtualInvokeData System_Collections_IDictionary_set_Item; + VirtualInvokeData System_Collections_IDictionary_get_Keys; + VirtualInvokeData System_Collections_IDictionary_get_Values; + VirtualInvokeData System_Collections_IDictionary_Contains; + VirtualInvokeData System_Collections_IDictionary_Add; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IDictionary_get_IsReadOnly; + VirtualInvokeData System_Collections_IDictionary_get_IsFixedSize; + VirtualInvokeData System_Collections_IDictionary_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_Remove; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData TryGetValue_1; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Values; + VirtualInvokeData get_Count_2; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct Dictionary_2_System_Type_System_Int32___StaticFields { +}; + +struct Dictionary_2_System_Type_System_Int32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_System_Type_System_Int32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_System_Type_System_Int32___VTable vtable; +}; + +struct PathPool__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct PathPool__StaticFields { + struct Dictionary_2_System_Type_Stack_1_Pathfinding_Path_ *pool; + struct Dictionary_2_System_Type_System_Int32_ *totalCreated; +}; + +struct PathPool__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PathPool__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PathPool__VTable vtable; +}; + +struct ListPool_1_System_Int32_ { + struct ListPool_1_System_Int32___Class *klass; + MonitorData *monitor; +}; + +struct HashSet_1_T_Slot_List_1_System_Int32_ { + int32_t hashCode; + int32_t next; + struct List_1_System_Int32_ *value; +}; + +struct HashSet_1_T_Slot_List_1_System_Int32___Boxed { + struct HashSet_1_T_Slot_List_1_System_Int32___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_List_1_System_Int32_ fields; +}; + +struct __declspec(align(8)) HashSet_1_List_1_System_Int32___Fields { + struct Int32__Array *_buckets; + struct HashSet_1_T_Slot_List_1_System_Int32___Array *_slots; + int32_t _count; + int32_t _lastIndex; + int32_t _freeList; + struct IEqualityComparer_1_List_1_System_Int32_ *_comparer; + int32_t _version; + struct SerializationInfo *_siInfo; +}; + +struct HashSet_1_List_1_System_Int32_ { + struct HashSet_1_List_1_System_Int32___Class *klass; + MonitorData *monitor; + struct HashSet_1_List_1_System_Int32___Fields fields; +}; + +struct HashSet_1_T_Slot_List_1_System_Int32___Array { + struct HashSet_1_T_Slot_List_1_System_Int32___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct HashSet_1_T_Slot_List_1_System_Int32_ vector[32]; +}; + +struct IEqualityComparer_1_List_1_System_Int32_ { + struct IEqualityComparer_1_List_1_System_Int32___Class *klass; + MonitorData *monitor; +}; + +struct HashSet_1_T_Slot_List_1_System_Int32___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct HashSet_1_T_Slot_List_1_System_Int32___StaticFields { +}; + +struct HashSet_1_T_Slot_List_1_System_Int32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_T_Slot_List_1_System_Int32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_T_Slot_List_1_System_Int32___VTable vtable; +}; + +struct HashSet_1_T_Slot_List_1_System_Int32___Array__VTable { +}; + +struct HashSet_1_T_Slot_List_1_System_Int32___Array__StaticFields { +}; + +struct HashSet_1_T_Slot_List_1_System_Int32___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_T_Slot_List_1_System_Int32___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_T_Slot_List_1_System_Int32___Array__VTable vtable; +}; + +struct IEqualityComparer_1_List_1_System_Int32___VTable { + VirtualInvokeData Equals; + VirtualInvokeData GetHashCode; +}; + +struct IEqualityComparer_1_List_1_System_Int32___StaticFields { +}; + +struct IEqualityComparer_1_List_1_System_Int32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEqualityComparer_1_List_1_System_Int32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEqualityComparer_1_List_1_System_Int32___VTable vtable; +}; + +struct HashSet_1_List_1_System_Int32___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_T__Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData Add; + VirtualInvokeData UnionWith; + VirtualInvokeData IntersectWith; + VirtualInvokeData ExceptWith; + VirtualInvokeData SymmetricExceptWith; + VirtualInvokeData IsSubsetOf; + VirtualInvokeData IsSupersetOf; + VirtualInvokeData IsProperSupersetOf; + VirtualInvokeData IsProperSubsetOf; + VirtualInvokeData Overlaps; + VirtualInvokeData SetEquals; + VirtualInvokeData get_Count_1; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct HashSet_1_List_1_System_Int32___StaticFields { +}; + +struct HashSet_1_List_1_System_Int32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_List_1_System_Int32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_List_1_System_Int32___VTable vtable; +}; + +struct ListPool_1_System_Int32___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ListPool_1_System_Int32___StaticFields { + struct List_1_List_1_System_Int32_ *pool; + struct List_1_List_1_System_Int32_ *largePool; + struct HashSet_1_List_1_System_Int32_ *inPool; +}; + +struct ListPool_1_System_Int32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ListPool_1_System_Int32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ListPool_1_System_Int32___VTable vtable; +}; + +struct Polygon { + struct Polygon__Class *klass; + MonitorData *monitor; +}; + +struct Polygon__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Polygon__StaticFields { + struct Dictionary_2_Pathfinding_Int3_System_Int32_ *cached_Int3_int_dict; +}; + +struct Polygon__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Polygon__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Polygon__VTable vtable; +}; + +struct ArrayPool_1_System_Int32_ { + struct ArrayPool_1_System_Int32___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) Stack_1_System_Int32__1__Fields { + struct Int32__Array__Array *_array; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct Stack_1_System_Int32__1 { + struct Stack_1_System_Int32__1__Class *klass; + MonitorData *monitor; + struct Stack_1_System_Int32__1__Fields fields; +}; + +struct IEnumerator_1_System_Int32__1 { + struct IEnumerator_1_System_Int32__1__Class *klass; + MonitorData *monitor; +}; + +struct Stack_1_System_Int32__1__Array { + struct Stack_1_System_Int32__1__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Stack_1_System_Int32__1 *vector[32]; +}; + +struct IEnumerator_1_System_Int32__1__VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_System_Int32__1__StaticFields { +}; + +struct IEnumerator_1_System_Int32__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_System_Int32__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_System_Int32__1__VTable vtable; +}; + +struct Stack_1_System_Int32__1__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_1; +}; + +struct Stack_1_System_Int32__1__StaticFields { +}; + +struct Stack_1_System_Int32__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Stack_1_System_Int32__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Stack_1_System_Int32__1__VTable vtable; +}; + +struct Stack_1_System_Int32__1__Array__VTable { +}; + +struct Stack_1_System_Int32__1__Array__StaticFields { +}; + +struct Stack_1_System_Int32__1__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Stack_1_System_Int32__1__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Stack_1_System_Int32__1__Array__VTable vtable; +}; + +struct ArrayPool_1_System_Int32___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ArrayPool_1_System_Int32___StaticFields { + struct Stack_1_System_Int32__1__Array *pool; + struct Stack_1_System_Int32__1__Array *exactPool; +}; + +struct ArrayPool_1_System_Int32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ArrayPool_1_System_Int32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ArrayPool_1_System_Int32___VTable vtable; +}; + +struct __declspec(align(8)) List_1_Pathfinding_NavGraph___Fields { + struct NavGraph__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Pathfinding_NavGraph_ { + struct List_1_Pathfinding_NavGraph___Class *klass; + MonitorData *monitor; + struct List_1_Pathfinding_NavGraph___Fields fields; +}; + +struct List_1_Pathfinding_NavGraph___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_Pathfinding_NavGraph___StaticFields { + struct NavGraph__Array *s_emptyArray; +}; + +struct List_1_Pathfinding_NavGraph___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Pathfinding_NavGraph___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Pathfinding_NavGraph___VTable vtable; +}; + +struct ListPool_1_System_UInt32_ { + struct ListPool_1_System_UInt32___Class *klass; + MonitorData *monitor; +}; + +struct HashSet_1_T_Slot_List_1_System_UInt32_ { + int32_t hashCode; + int32_t next; + struct List_1_System_UInt32_ *value; +}; + +struct HashSet_1_T_Slot_List_1_System_UInt32___Boxed { + struct HashSet_1_T_Slot_List_1_System_UInt32___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_List_1_System_UInt32_ fields; +}; + +struct __declspec(align(8)) HashSet_1_List_1_System_UInt32___Fields { + struct Int32__Array *_buckets; + struct HashSet_1_T_Slot_List_1_System_UInt32___Array *_slots; + int32_t _count; + int32_t _lastIndex; + int32_t _freeList; + struct IEqualityComparer_1_List_1_System_UInt32_ *_comparer; + int32_t _version; + struct SerializationInfo *_siInfo; +}; + +struct HashSet_1_List_1_System_UInt32_ { + struct HashSet_1_List_1_System_UInt32___Class *klass; + MonitorData *monitor; + struct HashSet_1_List_1_System_UInt32___Fields fields; +}; + +struct HashSet_1_T_Slot_List_1_System_UInt32___Array { + struct HashSet_1_T_Slot_List_1_System_UInt32___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct HashSet_1_T_Slot_List_1_System_UInt32_ vector[32]; +}; + +struct IEqualityComparer_1_List_1_System_UInt32_ { + struct IEqualityComparer_1_List_1_System_UInt32___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_List_1_System_UInt32_ { + struct IEnumerable_1_List_1_System_UInt32___Class *klass; + MonitorData *monitor; +}; + +struct HashSet_1_T_Slot_List_1_System_UInt32___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct HashSet_1_T_Slot_List_1_System_UInt32___StaticFields { +}; + +struct HashSet_1_T_Slot_List_1_System_UInt32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_T_Slot_List_1_System_UInt32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_T_Slot_List_1_System_UInt32___VTable vtable; +}; + +struct HashSet_1_T_Slot_List_1_System_UInt32___Array__VTable { +}; + +struct HashSet_1_T_Slot_List_1_System_UInt32___Array__StaticFields { +}; + +struct HashSet_1_T_Slot_List_1_System_UInt32___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_T_Slot_List_1_System_UInt32___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_T_Slot_List_1_System_UInt32___Array__VTable vtable; +}; + +struct IEqualityComparer_1_List_1_System_UInt32___VTable { + VirtualInvokeData Equals; + VirtualInvokeData GetHashCode; +}; + +struct IEqualityComparer_1_List_1_System_UInt32___StaticFields { +}; + +struct IEqualityComparer_1_List_1_System_UInt32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEqualityComparer_1_List_1_System_UInt32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEqualityComparer_1_List_1_System_UInt32___VTable vtable; +}; + +struct IEnumerable_1_List_1_System_UInt32___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_List_1_System_UInt32___StaticFields { +}; + +struct IEnumerable_1_List_1_System_UInt32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_List_1_System_UInt32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_List_1_System_UInt32___VTable vtable; +}; + +struct HashSet_1_List_1_System_UInt32___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_T__Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData Add; + VirtualInvokeData UnionWith; + VirtualInvokeData IntersectWith; + VirtualInvokeData ExceptWith; + VirtualInvokeData SymmetricExceptWith; + VirtualInvokeData IsSubsetOf; + VirtualInvokeData IsSupersetOf; + VirtualInvokeData IsProperSupersetOf; + VirtualInvokeData IsProperSubsetOf; + VirtualInvokeData Overlaps; + VirtualInvokeData SetEquals; + VirtualInvokeData get_Count_1; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct HashSet_1_List_1_System_UInt32___StaticFields { +}; + +struct HashSet_1_List_1_System_UInt32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_List_1_System_UInt32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_List_1_System_UInt32___VTable vtable; +}; + +struct ListPool_1_System_UInt32___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ListPool_1_System_UInt32___StaticFields { + struct List_1_List_1_System_UInt32_ *pool; + struct List_1_List_1_System_UInt32_ *largePool; + struct HashSet_1_List_1_System_UInt32_ *inPool; +}; + +struct ListPool_1_System_UInt32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ListPool_1_System_UInt32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ListPool_1_System_UInt32___VTable vtable; +}; + +struct ListPool_1_Pathfinding_Int3_ { + struct ListPool_1_Pathfinding_Int3___Class *klass; + MonitorData *monitor; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_Int3_ { + int32_t hashCode; + int32_t next; + struct List_1_Pathfinding_Int3_ *value; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_Int3___Boxed { + struct HashSet_1_T_Slot_List_1_Pathfinding_Int3___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_List_1_Pathfinding_Int3_ fields; +}; + +struct __declspec(align(8)) HashSet_1_List_1_Pathfinding_Int3___Fields { + struct Int32__Array *_buckets; + struct HashSet_1_T_Slot_List_1_Pathfinding_Int3___Array *_slots; + int32_t _count; + int32_t _lastIndex; + int32_t _freeList; + struct IEqualityComparer_1_List_1_Pathfinding_Int3_ *_comparer; + int32_t _version; + struct SerializationInfo *_siInfo; +}; + +struct HashSet_1_List_1_Pathfinding_Int3_ { + struct HashSet_1_List_1_Pathfinding_Int3___Class *klass; + MonitorData *monitor; + struct HashSet_1_List_1_Pathfinding_Int3___Fields fields; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_Int3___Array { + struct HashSet_1_T_Slot_List_1_Pathfinding_Int3___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct HashSet_1_T_Slot_List_1_Pathfinding_Int3_ vector[32]; +}; + +struct IEqualityComparer_1_List_1_Pathfinding_Int3_ { + struct IEqualityComparer_1_List_1_Pathfinding_Int3___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_List_1_Pathfinding_Int3_ { + struct IEnumerable_1_List_1_Pathfinding_Int3___Class *klass; + MonitorData *monitor; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_Int3___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_Int3___StaticFields { +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_Int3___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_T_Slot_List_1_Pathfinding_Int3___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_T_Slot_List_1_Pathfinding_Int3___VTable vtable; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_Int3___Array__VTable { +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_Int3___Array__StaticFields { +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_Int3___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_T_Slot_List_1_Pathfinding_Int3___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_T_Slot_List_1_Pathfinding_Int3___Array__VTable vtable; +}; + +struct IEqualityComparer_1_List_1_Pathfinding_Int3___VTable { + VirtualInvokeData Equals; + VirtualInvokeData GetHashCode; +}; + +struct IEqualityComparer_1_List_1_Pathfinding_Int3___StaticFields { +}; + +struct IEqualityComparer_1_List_1_Pathfinding_Int3___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEqualityComparer_1_List_1_Pathfinding_Int3___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEqualityComparer_1_List_1_Pathfinding_Int3___VTable vtable; +}; + +struct IEnumerable_1_List_1_Pathfinding_Int3___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_List_1_Pathfinding_Int3___StaticFields { +}; + +struct IEnumerable_1_List_1_Pathfinding_Int3___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_List_1_Pathfinding_Int3___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_List_1_Pathfinding_Int3___VTable vtable; +}; + +struct HashSet_1_List_1_Pathfinding_Int3___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_T__Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData Add; + VirtualInvokeData UnionWith; + VirtualInvokeData IntersectWith; + VirtualInvokeData ExceptWith; + VirtualInvokeData SymmetricExceptWith; + VirtualInvokeData IsSubsetOf; + VirtualInvokeData IsSupersetOf; + VirtualInvokeData IsProperSupersetOf; + VirtualInvokeData IsProperSubsetOf; + VirtualInvokeData Overlaps; + VirtualInvokeData SetEquals; + VirtualInvokeData get_Count_1; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct HashSet_1_List_1_Pathfinding_Int3___StaticFields { +}; + +struct HashSet_1_List_1_Pathfinding_Int3___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_List_1_Pathfinding_Int3___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_List_1_Pathfinding_Int3___VTable vtable; +}; + +struct ListPool_1_Pathfinding_Int3___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ListPool_1_Pathfinding_Int3___StaticFields { + struct List_1_List_1_Pathfinding_Int3_ *pool; + struct List_1_List_1_Pathfinding_Int3_ *largePool; + struct HashSet_1_List_1_Pathfinding_Int3_ *inPool; +}; + +struct ListPool_1_Pathfinding_Int3___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ListPool_1_Pathfinding_Int3___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ListPool_1_Pathfinding_Int3___VTable vtable; +}; + +struct IControllerDriver { + struct IControllerDriver__Class *klass; + MonitorData *monitor; +}; + +struct IControllerDriver__VTable { + VirtualInvokeData get_AxisCount; + VirtualInvokeData get_ButtonCount; + VirtualInvokeData get_HatCount; + VirtualInvokeData get_AccelerometerCount; + VirtualInvokeData get_GyroscopeCount; + VirtualInvokeData get_TouchpadCount; + VirtualInvokeData get_LightCount; + VirtualInvokeData get_VibrationMotorCount; +}; + +struct IControllerDriver__StaticFields { +}; + +struct IControllerDriver__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IControllerDriver__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IControllerDriver__VTable vtable; +}; + +struct IHardwareControllerMap_Internal { + struct IHardwareControllerMap_Internal__Class *klass; + MonitorData *monitor; +}; + +struct IHardwareControllerMap_Internal__VTable { + VirtualInvokeData get_ElementIdentifiers; + VirtualInvokeData GetElementIdentifier; +}; + +struct IHardwareControllerMap_Internal__StaticFields { +}; + +struct IHardwareControllerMap_Internal__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IHardwareControllerMap_Internal__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IHardwareControllerMap_Internal__VTable vtable; +}; + +struct __declspec(align(8)) TempListPool_TList_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap_ElementIdentifierMap___Fields { + struct List_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap_ElementIdentifierMap_ *VMeHiJhSKJHrptlKzeCAAZtDcXSGA; + bool eIuesTMfdyQoDfpIQeBgmzDBKKjJ; +}; + +struct TempListPool_TList_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap_ElementIdentifierMap_ { + struct TempListPool_TList_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap_ElementIdentifierMap___Class *klass; + MonitorData *monitor; + struct TempListPool_TList_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap_ElementIdentifierMap___Fields fields; +}; + +struct TempListPool_TList_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap_ElementIdentifierMap___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Dispose; + VirtualInvokeData Rewired_Utils_TempListPool_ITListSetter_T__SetList; +}; + +struct TempListPool_TList_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap_ElementIdentifierMap___StaticFields { +}; + +struct TempListPool_TList_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap_ElementIdentifierMap___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TempListPool_TList_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap_ElementIdentifierMap___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TempListPool_TList_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap_ElementIdentifierMap___VTable vtable; +}; + +struct __declspec(align(8)) List_1_Rewired_ControllerTemplateElementIdentifier___Fields { + struct ControllerTemplateElementIdentifier__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Rewired_ControllerTemplateElementIdentifier_ { + struct List_1_Rewired_ControllerTemplateElementIdentifier___Class *klass; + MonitorData *monitor; + struct List_1_Rewired_ControllerTemplateElementIdentifier___Fields fields; +}; + +struct ControllerTemplateElementIdentifier__Array { + struct ControllerTemplateElementIdentifier__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct ControllerTemplateElementIdentifier *vector[32]; +}; + +struct ControllerTemplateElementIdentifier__Array__VTable { +}; + +struct ControllerTemplateElementIdentifier__Array__StaticFields { +}; + +struct ControllerTemplateElementIdentifier__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ControllerTemplateElementIdentifier__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ControllerTemplateElementIdentifier__Array__VTable vtable; +}; + +struct List_1_Rewired_ControllerTemplateElementIdentifier___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_Rewired_ControllerTemplateElementIdentifier___StaticFields { + struct ControllerTemplateElementIdentifier__Array *s_emptyArray; +}; + +struct List_1_Rewired_ControllerTemplateElementIdentifier___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Rewired_ControllerTemplateElementIdentifier___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Rewired_ControllerTemplateElementIdentifier___VTable vtable; +}; + +struct NatFeatureStates___VTable { +}; + +struct NatFeatureStates___StaticFields { +}; + +struct NatFeatureStates___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NatFeatureStates___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NatFeatureStates___VTable vtable; +}; + +struct UdpSessionImpl___VTable { +}; + +struct UdpSessionImpl___StaticFields { +}; + +struct UdpSessionImpl___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UdpSessionImpl___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UdpSessionImpl___VTable vtable; +}; + +struct UdpSessionSource___VTable { +}; + +struct UdpSessionSource___StaticFields { +}; + +struct UdpSessionSource___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UdpSessionSource___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UdpSessionSource___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Net_IPEndPoint_UdpKit_UdpEndPoint_ { + int32_t hashCode; + int32_t next; + struct IPEndPoint *key; + struct UdpEndPoint value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Net_IPEndPoint_UdpKit_UdpEndPoint___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Net_IPEndPoint_UdpKit_UdpEndPoint___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Net_IPEndPoint_UdpKit_UdpEndPoint_ fields; +}; + +struct __declspec(align(8)) Dictionary_2_System_Net_IPEndPoint_UdpKit_UdpEndPoint___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_System_Net_IPEndPoint_UdpKit_UdpEndPoint___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_System_Net_IPEndPoint_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Net_IPEndPoint_UdpKit_UdpEndPoint_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Net_IPEndPoint_UdpKit_UdpEndPoint_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_System_Net_IPEndPoint_UdpKit_UdpEndPoint_ { + struct Dictionary_2_System_Net_IPEndPoint_UdpKit_UdpEndPoint___Class *klass; + MonitorData *monitor; + struct Dictionary_2_System_Net_IPEndPoint_UdpKit_UdpEndPoint___Fields fields; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Net_IPEndPoint_UdpKit_UdpEndPoint___Array { + struct Dictionary_2_TKey_TValue_Entry_System_Net_IPEndPoint_UdpKit_UdpEndPoint___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Dictionary_2_TKey_TValue_Entry_System_Net_IPEndPoint_UdpKit_UdpEndPoint_ vector[32]; +}; + +struct IEqualityComparer_1_System_Net_IPEndPoint_ { + struct IEqualityComparer_1_System_Net_IPEndPoint___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_KeyCollection_System_Net_IPEndPoint_UdpKit_UdpEndPoint___Fields { + struct Dictionary_2_System_Net_IPEndPoint_UdpKit_UdpEndPoint_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Net_IPEndPoint_UdpKit_UdpEndPoint_ { + struct Dictionary_2_TKey_TValue_KeyCollection_System_Net_IPEndPoint_UdpKit_UdpEndPoint___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Net_IPEndPoint_UdpKit_UdpEndPoint___Fields fields; +}; + +struct IEnumerator_1_System_Net_IPEndPoint_ { + struct IEnumerator_1_System_Net_IPEndPoint___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_ValueCollection_System_Net_IPEndPoint_UdpKit_UdpEndPoint___Fields { + struct Dictionary_2_System_Net_IPEndPoint_UdpKit_UdpEndPoint_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Net_IPEndPoint_UdpKit_UdpEndPoint_ { + struct Dictionary_2_TKey_TValue_ValueCollection_System_Net_IPEndPoint_UdpKit_UdpEndPoint___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Net_IPEndPoint_UdpKit_UdpEndPoint___Fields fields; +}; + +struct ICollection_1_System_Net_IPEndPoint_ { + struct ICollection_1_System_Net_IPEndPoint___Class *klass; + MonitorData *monitor; +}; + +struct KeyValuePair_2_System_Net_IPEndPoint_UdpKit_UdpEndPoint_ { + struct IPEndPoint *key; + struct UdpEndPoint value; +}; + +struct KeyValuePair_2_System_Net_IPEndPoint_UdpKit_UdpEndPoint___Boxed { + struct KeyValuePair_2_System_Net_IPEndPoint_UdpKit_UdpEndPoint___Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_System_Net_IPEndPoint_UdpKit_UdpEndPoint_ fields; +}; + +struct KeyValuePair_2_System_Net_IPEndPoint_UdpKit_UdpEndPoint___Array { + struct KeyValuePair_2_System_Net_IPEndPoint_UdpKit_UdpEndPoint___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct KeyValuePair_2_System_Net_IPEndPoint_UdpKit_UdpEndPoint_ vector[32]; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Net_IPEndPoint_UdpKit_UdpEndPoint_ { + struct IEnumerator_1_KeyValuePair_2_System_Net_IPEndPoint_UdpKit_UdpEndPoint___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_System_Net_IPEndPoint_ { + struct IEnumerable_1_System_Net_IPEndPoint___Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Net_IPEndPoint_UdpKit_UdpEndPoint___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Net_IPEndPoint_UdpKit_UdpEndPoint___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Net_IPEndPoint_UdpKit_UdpEndPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_System_Net_IPEndPoint_UdpKit_UdpEndPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_System_Net_IPEndPoint_UdpKit_UdpEndPoint___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Net_IPEndPoint_UdpKit_UdpEndPoint___Array__VTable { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Net_IPEndPoint_UdpKit_UdpEndPoint___Array__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Net_IPEndPoint_UdpKit_UdpEndPoint___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_System_Net_IPEndPoint_UdpKit_UdpEndPoint___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_System_Net_IPEndPoint_UdpKit_UdpEndPoint___Array__VTable vtable; +}; + +struct IEqualityComparer_1_System_Net_IPEndPoint___VTable { + VirtualInvokeData Equals; + VirtualInvokeData GetHashCode; +}; + +struct IEqualityComparer_1_System_Net_IPEndPoint___StaticFields { +}; + +struct IEqualityComparer_1_System_Net_IPEndPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEqualityComparer_1_System_Net_IPEndPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEqualityComparer_1_System_Net_IPEndPoint___VTable vtable; +}; + +struct IEnumerator_1_System_Net_IPEndPoint___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_System_Net_IPEndPoint___StaticFields { +}; + +struct IEnumerator_1_System_Net_IPEndPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_System_Net_IPEndPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_System_Net_IPEndPoint___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Net_IPEndPoint_UdpKit_UdpEndPoint___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TKey__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Net_IPEndPoint_UdpKit_UdpEndPoint___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Net_IPEndPoint_UdpKit_UdpEndPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Net_IPEndPoint_UdpKit_UdpEndPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Net_IPEndPoint_UdpKit_UdpEndPoint___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Net_IPEndPoint_UdpKit_UdpEndPoint___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TValue__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Net_IPEndPoint_UdpKit_UdpEndPoint___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Net_IPEndPoint_UdpKit_UdpEndPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Net_IPEndPoint_UdpKit_UdpEndPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Net_IPEndPoint_UdpKit_UdpEndPoint___VTable vtable; +}; + +struct ICollection_1_System_Net_IPEndPoint___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_System_Net_IPEndPoint___StaticFields { +}; + +struct ICollection_1_System_Net_IPEndPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_System_Net_IPEndPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_System_Net_IPEndPoint___VTable vtable; +}; + +struct KeyValuePair_2_System_Net_IPEndPoint_UdpKit_UdpEndPoint___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct KeyValuePair_2_System_Net_IPEndPoint_UdpKit_UdpEndPoint___StaticFields { +}; + +struct KeyValuePair_2_System_Net_IPEndPoint_UdpKit_UdpEndPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_Net_IPEndPoint_UdpKit_UdpEndPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_Net_IPEndPoint_UdpKit_UdpEndPoint___VTable vtable; +}; + +struct KeyValuePair_2_System_Net_IPEndPoint_UdpKit_UdpEndPoint___Array__VTable { +}; + +struct KeyValuePair_2_System_Net_IPEndPoint_UdpKit_UdpEndPoint___Array__StaticFields { +}; + +struct KeyValuePair_2_System_Net_IPEndPoint_UdpKit_UdpEndPoint___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_Net_IPEndPoint_UdpKit_UdpEndPoint___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_Net_IPEndPoint_UdpKit_UdpEndPoint___Array__VTable vtable; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Net_IPEndPoint_UdpKit_UdpEndPoint___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Net_IPEndPoint_UdpKit_UdpEndPoint___StaticFields { +}; + +struct IEnumerator_1_KeyValuePair_2_System_Net_IPEndPoint_UdpKit_UdpEndPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_KeyValuePair_2_System_Net_IPEndPoint_UdpKit_UdpEndPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_KeyValuePair_2_System_Net_IPEndPoint_UdpKit_UdpEndPoint___VTable vtable; +}; + +struct IEnumerable_1_System_Net_IPEndPoint___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_System_Net_IPEndPoint___StaticFields { +}; + +struct IEnumerable_1_System_Net_IPEndPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_System_Net_IPEndPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_System_Net_IPEndPoint___VTable vtable; +}; + +struct Dictionary_2_System_Net_IPEndPoint_UdpKit_UdpEndPoint___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Values; + VirtualInvokeData ContainsKey; + VirtualInvokeData Add; + VirtualInvokeData Remove; + VirtualInvokeData TryGetValue; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add; + VirtualInvokeData Clear; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_get_Item; + VirtualInvokeData System_Collections_IDictionary_set_Item; + VirtualInvokeData System_Collections_IDictionary_get_Keys; + VirtualInvokeData System_Collections_IDictionary_get_Values; + VirtualInvokeData System_Collections_IDictionary_Contains; + VirtualInvokeData System_Collections_IDictionary_Add; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IDictionary_get_IsReadOnly; + VirtualInvokeData System_Collections_IDictionary_get_IsFixedSize; + VirtualInvokeData System_Collections_IDictionary_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_Remove; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData TryGetValue_1; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Values; + VirtualInvokeData get_Count_2; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct Dictionary_2_System_Net_IPEndPoint_UdpKit_UdpEndPoint___StaticFields { +}; + +struct Dictionary_2_System_Net_IPEndPoint_UdpKit_UdpEndPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_System_Net_IPEndPoint_UdpKit_UdpEndPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_System_Net_IPEndPoint_UdpKit_UdpEndPoint___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_Net_IPEndPoint_ { + int32_t hashCode; + int32_t next; + struct UdpEndPoint key; + struct IPEndPoint *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_Net_IPEndPoint___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_Net_IPEndPoint___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_Net_IPEndPoint_ fields; +}; + +struct __declspec(align(8)) Dictionary_2_UdpKit_UdpEndPoint_System_Net_IPEndPoint___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_Net_IPEndPoint___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_UdpKit_UdpEndPoint_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_UdpKit_UdpEndPoint_System_Net_IPEndPoint_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_UdpKit_UdpEndPoint_System_Net_IPEndPoint_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_UdpKit_UdpEndPoint_System_Net_IPEndPoint_ { + struct Dictionary_2_UdpKit_UdpEndPoint_System_Net_IPEndPoint___Class *klass; + MonitorData *monitor; + struct Dictionary_2_UdpKit_UdpEndPoint_System_Net_IPEndPoint___Fields fields; +}; + +struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_Net_IPEndPoint___Array { + struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_Net_IPEndPoint___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_Net_IPEndPoint_ vector[32]; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_KeyCollection_UdpKit_UdpEndPoint_System_Net_IPEndPoint___Fields { + struct Dictionary_2_UdpKit_UdpEndPoint_System_Net_IPEndPoint_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_UdpKit_UdpEndPoint_System_Net_IPEndPoint_ { + struct Dictionary_2_TKey_TValue_KeyCollection_UdpKit_UdpEndPoint_System_Net_IPEndPoint___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_KeyCollection_UdpKit_UdpEndPoint_System_Net_IPEndPoint___Fields fields; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_ValueCollection_UdpKit_UdpEndPoint_System_Net_IPEndPoint___Fields { + struct Dictionary_2_UdpKit_UdpEndPoint_System_Net_IPEndPoint_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_UdpKit_UdpEndPoint_System_Net_IPEndPoint_ { + struct Dictionary_2_TKey_TValue_ValueCollection_UdpKit_UdpEndPoint_System_Net_IPEndPoint___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_UdpKit_UdpEndPoint_System_Net_IPEndPoint___Fields fields; +}; + +struct KeyValuePair_2_UdpKit_UdpEndPoint_System_Net_IPEndPoint_ { + struct UdpEndPoint key; + struct IPEndPoint *value; +}; + +struct KeyValuePair_2_UdpKit_UdpEndPoint_System_Net_IPEndPoint___Boxed { + struct KeyValuePair_2_UdpKit_UdpEndPoint_System_Net_IPEndPoint___Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_UdpKit_UdpEndPoint_System_Net_IPEndPoint_ fields; +}; + +struct KeyValuePair_2_UdpKit_UdpEndPoint_System_Net_IPEndPoint___Array { + struct KeyValuePair_2_UdpKit_UdpEndPoint_System_Net_IPEndPoint___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct KeyValuePair_2_UdpKit_UdpEndPoint_System_Net_IPEndPoint_ vector[32]; +}; + +struct IEnumerator_1_KeyValuePair_2_UdpKit_UdpEndPoint_System_Net_IPEndPoint_ { + struct IEnumerator_1_KeyValuePair_2_UdpKit_UdpEndPoint_System_Net_IPEndPoint___Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_Net_IPEndPoint___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_Net_IPEndPoint___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_Net_IPEndPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_Net_IPEndPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_Net_IPEndPoint___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_Net_IPEndPoint___Array__VTable { +}; + +struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_Net_IPEndPoint___Array__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_Net_IPEndPoint___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_Net_IPEndPoint___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_UdpKit_UdpEndPoint_System_Net_IPEndPoint___Array__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_UdpKit_UdpEndPoint_System_Net_IPEndPoint___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TKey__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_UdpKit_UdpEndPoint_System_Net_IPEndPoint___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_UdpKit_UdpEndPoint_System_Net_IPEndPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_KeyCollection_UdpKit_UdpEndPoint_System_Net_IPEndPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_KeyCollection_UdpKit_UdpEndPoint_System_Net_IPEndPoint___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_UdpKit_UdpEndPoint_System_Net_IPEndPoint___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TValue__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_UdpKit_UdpEndPoint_System_Net_IPEndPoint___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_UdpKit_UdpEndPoint_System_Net_IPEndPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_UdpKit_UdpEndPoint_System_Net_IPEndPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_UdpKit_UdpEndPoint_System_Net_IPEndPoint___VTable vtable; +}; + +struct KeyValuePair_2_UdpKit_UdpEndPoint_System_Net_IPEndPoint___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct KeyValuePair_2_UdpKit_UdpEndPoint_System_Net_IPEndPoint___StaticFields { +}; + +struct KeyValuePair_2_UdpKit_UdpEndPoint_System_Net_IPEndPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_UdpKit_UdpEndPoint_System_Net_IPEndPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_UdpKit_UdpEndPoint_System_Net_IPEndPoint___VTable vtable; +}; + +struct KeyValuePair_2_UdpKit_UdpEndPoint_System_Net_IPEndPoint___Array__VTable { +}; + +struct KeyValuePair_2_UdpKit_UdpEndPoint_System_Net_IPEndPoint___Array__StaticFields { +}; + +struct KeyValuePair_2_UdpKit_UdpEndPoint_System_Net_IPEndPoint___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_UdpKit_UdpEndPoint_System_Net_IPEndPoint___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_UdpKit_UdpEndPoint_System_Net_IPEndPoint___Array__VTable vtable; +}; + +struct IEnumerator_1_KeyValuePair_2_UdpKit_UdpEndPoint_System_Net_IPEndPoint___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_KeyValuePair_2_UdpKit_UdpEndPoint_System_Net_IPEndPoint___StaticFields { +}; + +struct IEnumerator_1_KeyValuePair_2_UdpKit_UdpEndPoint_System_Net_IPEndPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_KeyValuePair_2_UdpKit_UdpEndPoint_System_Net_IPEndPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_KeyValuePair_2_UdpKit_UdpEndPoint_System_Net_IPEndPoint___VTable vtable; +}; + +struct Dictionary_2_UdpKit_UdpEndPoint_System_Net_IPEndPoint___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Values; + VirtualInvokeData ContainsKey; + VirtualInvokeData Add; + VirtualInvokeData Remove; + VirtualInvokeData TryGetValue; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add; + VirtualInvokeData Clear; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_get_Item; + VirtualInvokeData System_Collections_IDictionary_set_Item; + VirtualInvokeData System_Collections_IDictionary_get_Keys; + VirtualInvokeData System_Collections_IDictionary_get_Values; + VirtualInvokeData System_Collections_IDictionary_Contains; + VirtualInvokeData System_Collections_IDictionary_Add; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IDictionary_get_IsReadOnly; + VirtualInvokeData System_Collections_IDictionary_get_IsFixedSize; + VirtualInvokeData System_Collections_IDictionary_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_Remove; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData TryGetValue_1; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Values; + VirtualInvokeData get_Count_2; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct Dictionary_2_UdpKit_UdpEndPoint_System_Net_IPEndPoint___StaticFields { +}; + +struct Dictionary_2_UdpKit_UdpEndPoint_System_Net_IPEndPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_UdpKit_UdpEndPoint_System_Net_IPEndPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_UdpKit_UdpEndPoint_System_Net_IPEndPoint___VTable vtable; +}; + +struct SubnetMask { + struct SubnetMask__Class *klass; + MonitorData *monitor; +}; + +struct SubnetMask__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct SubnetMask__StaticFields { + struct IPAddress *ClassA; + struct IPAddress *ClassB; + struct IPAddress *ClassC; +}; + +struct SubnetMask__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SubnetMask__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SubnetMask__VTable vtable; +}; + +struct UdpEndPointExtensions { + struct UdpEndPointExtensions__Class *klass; + MonitorData *monitor; +}; + +struct UdpEndPointExtensions__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct UdpEndPointExtensions__StaticFields { + struct Dictionary_2_System_Net_IPEndPoint_UdpKit_UdpEndPoint_ *ipEndPointBuffer; + struct Dictionary_2_UdpKit_UdpEndPoint_System_Net_IPEndPoint_ *udpEndPointBuffer; +}; + +struct UdpEndPointExtensions__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UdpEndPointExtensions__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UdpEndPointExtensions__VTable vtable; +}; + +struct ArrayPool_1_UnityEngine_Color_ { + struct ArrayPool_1_UnityEngine_Color___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) Stack_1_UnityEngine_Color___Fields { + struct Color__Array__Array *_array; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct Stack_1_UnityEngine_Color_ { + struct Stack_1_UnityEngine_Color___Class *klass; + MonitorData *monitor; + struct Stack_1_UnityEngine_Color___Fields fields; +}; + +struct Color__Array__Array { + struct Color__Array__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Color__Array *vector[32]; +}; + +struct IEnumerator_1_UnityEngine_Color__1 { + struct IEnumerator_1_UnityEngine_Color__1__Class *klass; + MonitorData *monitor; +}; + +struct Stack_1_UnityEngine_Color___Array { + struct Stack_1_UnityEngine_Color___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Stack_1_UnityEngine_Color_ *vector[32]; +}; + +struct Color__Array__Array__VTable { +}; + +struct Color__Array__Array__StaticFields { +}; + +struct Color__Array__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Color__Array__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Color__Array__Array__VTable vtable; +}; + +struct IEnumerator_1_UnityEngine_Color__1__VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_UnityEngine_Color__1__StaticFields { +}; + +struct IEnumerator_1_UnityEngine_Color__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_UnityEngine_Color__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_UnityEngine_Color__1__VTable vtable; +}; + +struct Stack_1_UnityEngine_Color___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_1; +}; + +struct Stack_1_UnityEngine_Color___StaticFields { +}; + +struct Stack_1_UnityEngine_Color___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Stack_1_UnityEngine_Color___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Stack_1_UnityEngine_Color___VTable vtable; +}; + +struct Stack_1_UnityEngine_Color___Array__VTable { +}; + +struct Stack_1_UnityEngine_Color___Array__StaticFields { +}; + +struct Stack_1_UnityEngine_Color___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Stack_1_UnityEngine_Color___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Stack_1_UnityEngine_Color___Array__VTable vtable; +}; + +struct ArrayPool_1_UnityEngine_Color___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ArrayPool_1_UnityEngine_Color___StaticFields { + struct Stack_1_UnityEngine_Color___Array *pool; + struct Stack_1_UnityEngine_Color___Array *exactPool; +}; + +struct ArrayPool_1_UnityEngine_Color___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ArrayPool_1_UnityEngine_Color___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ArrayPool_1_UnityEngine_Color___VTable vtable; +}; + +struct ArrayPool_1_Pathfinding_GridNodeBase_ { + struct ArrayPool_1_Pathfinding_GridNodeBase___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) Stack_1_Pathfinding_GridNodeBase___Fields { + struct GridNodeBase__Array__Array *_array; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct Stack_1_Pathfinding_GridNodeBase_ { + struct Stack_1_Pathfinding_GridNodeBase___Class *klass; + MonitorData *monitor; + struct Stack_1_Pathfinding_GridNodeBase___Fields fields; +}; + +struct GridNodeBase__Array__Array { + struct GridNodeBase__Array__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct GridNodeBase__Array *vector[32]; +}; + +struct IEnumerator_1_Pathfinding_GridNodeBase_ { + struct IEnumerator_1_Pathfinding_GridNodeBase___Class *klass; + MonitorData *monitor; +}; + +struct Stack_1_Pathfinding_GridNodeBase___Array { + struct Stack_1_Pathfinding_GridNodeBase___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Stack_1_Pathfinding_GridNodeBase_ *vector[32]; +}; + +struct GridNodeBase__Array__Array__VTable { +}; + +struct GridNodeBase__Array__Array__StaticFields { +}; + +struct GridNodeBase__Array__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GridNodeBase__Array__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GridNodeBase__Array__Array__VTable vtable; +}; + +struct IEnumerator_1_Pathfinding_GridNodeBase___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_Pathfinding_GridNodeBase___StaticFields { +}; + +struct IEnumerator_1_Pathfinding_GridNodeBase___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_Pathfinding_GridNodeBase___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_Pathfinding_GridNodeBase___VTable vtable; +}; + +struct Stack_1_Pathfinding_GridNodeBase___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_1; +}; + +struct Stack_1_Pathfinding_GridNodeBase___StaticFields { +}; + +struct Stack_1_Pathfinding_GridNodeBase___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Stack_1_Pathfinding_GridNodeBase___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Stack_1_Pathfinding_GridNodeBase___VTable vtable; +}; + +struct Stack_1_Pathfinding_GridNodeBase___Array__VTable { +}; + +struct Stack_1_Pathfinding_GridNodeBase___Array__StaticFields { +}; + +struct Stack_1_Pathfinding_GridNodeBase___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Stack_1_Pathfinding_GridNodeBase___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Stack_1_Pathfinding_GridNodeBase___Array__VTable vtable; +}; + +struct ArrayPool_1_Pathfinding_GridNodeBase___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ArrayPool_1_Pathfinding_GridNodeBase___StaticFields { + struct Stack_1_Pathfinding_GridNodeBase___Array *pool; + struct Stack_1_Pathfinding_GridNodeBase___Array *exactPool; +}; + +struct ArrayPool_1_Pathfinding_GridNodeBase___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ArrayPool_1_Pathfinding_GridNodeBase___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ArrayPool_1_Pathfinding_GridNodeBase___VTable vtable; +}; + +struct GridNodeBase___VTable { +}; + +struct GridNodeBase___StaticFields { +}; + +struct GridNodeBase___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GridNodeBase___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GridNodeBase___VTable vtable; +}; + +struct EqualityComparer_1_List_1_UnityEngine_UIElements_RuleMatcher_ { + struct EqualityComparer_1_List_1_UnityEngine_UIElements_RuleMatcher___Class *klass; + MonitorData *monitor; +}; + +struct List_1_UnityEngine_UIElements_RuleMatcher___Array { + struct List_1_UnityEngine_UIElements_RuleMatcher___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct List_1_UnityEngine_UIElements_RuleMatcher_ *vector[32]; +}; + +struct List_1_UnityEngine_UIElements_RuleMatcher___Array__VTable { +}; + +struct List_1_UnityEngine_UIElements_RuleMatcher___Array__StaticFields { +}; + +struct List_1_UnityEngine_UIElements_RuleMatcher___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_UIElements_RuleMatcher___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_UIElements_RuleMatcher___Array__VTable vtable; +}; + +struct EqualityComparer_1_List_1_UnityEngine_UIElements_RuleMatcher___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_IEqualityComparer_Equals; + VirtualInvokeData System_Collections_IEqualityComparer_GetHashCode; + VirtualInvokeData Equals_1; + VirtualInvokeData GetHashCode_1; + VirtualInvokeData __unknown; + VirtualInvokeData __unknown_1; + VirtualInvokeData IndexOf; + VirtualInvokeData LastIndexOf; +}; + +struct EqualityComparer_1_List_1_UnityEngine_UIElements_RuleMatcher___StaticFields { + struct EqualityComparer_1_List_1_UnityEngine_UIElements_RuleMatcher_ *defaultComparer; +}; + +struct EqualityComparer_1_List_1_UnityEngine_UIElements_RuleMatcher___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EqualityComparer_1_List_1_UnityEngine_UIElements_RuleMatcher___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EqualityComparer_1_List_1_UnityEngine_UIElements_RuleMatcher___VTable vtable; +}; + +struct EqualityComparer_1_UnityEngine_UIElements_VisualElement_ { + struct EqualityComparer_1_UnityEngine_UIElements_VisualElement___Class *klass; + MonitorData *monitor; +}; + +struct EqualityComparer_1_UnityEngine_UIElements_VisualElement___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_IEqualityComparer_Equals; + VirtualInvokeData System_Collections_IEqualityComparer_GetHashCode; + VirtualInvokeData Equals_1; + VirtualInvokeData GetHashCode_1; + VirtualInvokeData __unknown; + VirtualInvokeData __unknown_1; + VirtualInvokeData IndexOf; + VirtualInvokeData LastIndexOf; +}; + +struct EqualityComparer_1_UnityEngine_UIElements_VisualElement___StaticFields { + struct EqualityComparer_1_UnityEngine_UIElements_VisualElement_ *defaultComparer; +}; + +struct EqualityComparer_1_UnityEngine_UIElements_VisualElement___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EqualityComparer_1_UnityEngine_UIElements_VisualElement___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EqualityComparer_1_UnityEngine_UIElements_VisualElement___VTable vtable; +}; + +struct EqualityComparer_1_List_1_UnityEngine_UIElements_StyleSelector_ { + struct EqualityComparer_1_List_1_UnityEngine_UIElements_StyleSelector___Class *klass; + MonitorData *monitor; +}; + +struct List_1_UnityEngine_UIElements_StyleSelector___Array { + struct List_1_UnityEngine_UIElements_StyleSelector___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct List_1_UnityEngine_UIElements_StyleSelector_ *vector[32]; +}; + +struct List_1_UnityEngine_UIElements_StyleSelector___Array__VTable { +}; + +struct List_1_UnityEngine_UIElements_StyleSelector___Array__StaticFields { +}; + +struct List_1_UnityEngine_UIElements_StyleSelector___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_UIElements_StyleSelector___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_UIElements_StyleSelector___Array__VTable vtable; +}; + +struct EqualityComparer_1_List_1_UnityEngine_UIElements_StyleSelector___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_IEqualityComparer_Equals; + VirtualInvokeData System_Collections_IEqualityComparer_GetHashCode; + VirtualInvokeData Equals_1; + VirtualInvokeData GetHashCode_1; + VirtualInvokeData __unknown; + VirtualInvokeData __unknown_1; + VirtualInvokeData IndexOf; + VirtualInvokeData LastIndexOf; +}; + +struct EqualityComparer_1_List_1_UnityEngine_UIElements_StyleSelector___StaticFields { + struct EqualityComparer_1_List_1_UnityEngine_UIElements_StyleSelector_ *defaultComparer; +}; + +struct EqualityComparer_1_List_1_UnityEngine_UIElements_StyleSelector___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EqualityComparer_1_List_1_UnityEngine_UIElements_StyleSelector___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EqualityComparer_1_List_1_UnityEngine_UIElements_StyleSelector___VTable vtable; +}; + +struct EqualityComparer_1_List_1_UnityEngine_UIElements_StyleSelectorPart_ { + struct EqualityComparer_1_List_1_UnityEngine_UIElements_StyleSelectorPart___Class *klass; + MonitorData *monitor; +}; + +struct List_1_UnityEngine_UIElements_StyleSelectorPart___Array { + struct List_1_UnityEngine_UIElements_StyleSelectorPart___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct List_1_UnityEngine_UIElements_StyleSelectorPart_ *vector[32]; +}; + +struct List_1_UnityEngine_UIElements_StyleSelectorPart___Array__VTable { +}; + +struct List_1_UnityEngine_UIElements_StyleSelectorPart___Array__StaticFields { +}; + +struct List_1_UnityEngine_UIElements_StyleSelectorPart___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_UIElements_StyleSelectorPart___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_UIElements_StyleSelectorPart___Array__VTable vtable; +}; + +struct EqualityComparer_1_List_1_UnityEngine_UIElements_StyleSelectorPart___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_IEqualityComparer_Equals; + VirtualInvokeData System_Collections_IEqualityComparer_GetHashCode; + VirtualInvokeData Equals_1; + VirtualInvokeData GetHashCode_1; + VirtualInvokeData __unknown; + VirtualInvokeData __unknown_1; + VirtualInvokeData IndexOf; + VirtualInvokeData LastIndexOf; +}; + +struct EqualityComparer_1_List_1_UnityEngine_UIElements_StyleSelectorPart___StaticFields { + struct EqualityComparer_1_List_1_UnityEngine_UIElements_StyleSelectorPart_ *defaultComparer; +}; + +struct EqualityComparer_1_List_1_UnityEngine_UIElements_StyleSelectorPart___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EqualityComparer_1_List_1_UnityEngine_UIElements_StyleSelectorPart___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EqualityComparer_1_List_1_UnityEngine_UIElements_StyleSelectorPart___VTable vtable; +}; + +struct ArrayPool_1_Pathfinding_Connection_ { + struct ArrayPool_1_Pathfinding_Connection___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) Stack_1_Pathfinding_Connection___Fields { + struct Connection__Array__Array *_array; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct Stack_1_Pathfinding_Connection_ { + struct Stack_1_Pathfinding_Connection___Class *klass; + MonitorData *monitor; + struct Stack_1_Pathfinding_Connection___Fields fields; +}; + +struct Stack_1_Pathfinding_Connection___Array { + struct Stack_1_Pathfinding_Connection___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Stack_1_Pathfinding_Connection_ *vector[32]; +}; + +struct Stack_1_Pathfinding_Connection___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_1; +}; + +struct Stack_1_Pathfinding_Connection___StaticFields { +}; + +struct Stack_1_Pathfinding_Connection___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Stack_1_Pathfinding_Connection___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Stack_1_Pathfinding_Connection___VTable vtable; +}; + +struct Stack_1_Pathfinding_Connection___Array__VTable { +}; + +struct Stack_1_Pathfinding_Connection___Array__StaticFields { +}; + +struct Stack_1_Pathfinding_Connection___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Stack_1_Pathfinding_Connection___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Stack_1_Pathfinding_Connection___Array__VTable vtable; +}; + +struct ArrayPool_1_Pathfinding_Connection___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ArrayPool_1_Pathfinding_Connection___StaticFields { + struct Stack_1_Pathfinding_Connection___Array *pool; + struct Stack_1_Pathfinding_Connection___Array *exactPool; +}; + +struct ArrayPool_1_Pathfinding_Connection___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ArrayPool_1_Pathfinding_Connection___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ArrayPool_1_Pathfinding_Connection___VTable vtable; +}; + +struct ITupleInternal { + struct ITupleInternal__Class *klass; + MonitorData *monitor; +}; + +struct ITupleInternal__VTable { + VirtualInvokeData ToString; +}; + +struct ITupleInternal__StaticFields { +}; + +struct ITupleInternal__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ITupleInternal__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ITupleInternal__VTable vtable; +}; + +struct IStructuralComparable { + struct IStructuralComparable__Class *klass; + MonitorData *monitor; +}; + +struct IStructuralComparable__VTable { + VirtualInvokeData CompareTo; +}; + +struct IStructuralComparable__StaticFields { +}; + +struct IStructuralComparable__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IStructuralComparable__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IStructuralComparable__VTable vtable; +}; + +struct IStructuralEquatable { + struct IStructuralEquatable__Class *klass; + MonitorData *monitor; +}; + +struct IStructuralEquatable__VTable { + VirtualInvokeData Equals; + VirtualInvokeData GetHashCode; +}; + +struct IStructuralEquatable__StaticFields { +}; + +struct IStructuralEquatable__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IStructuralEquatable__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IStructuralEquatable__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_Queue_1_UnityEngine_UIElements_EventBase_ { + struct Dictionary_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_Queue_1_UnityEngine_UIElements_EventBase_ *_dictionary; + int32_t _version; + int32_t _index; + struct KeyValuePair_2_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_Queue_1_UnityEngine_UIElements_EventBase_ _current; + int32_t _getEnumeratorRetType; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_Queue_1_UnityEngine_UIElements_EventBase___Boxed { + struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_Queue_1_UnityEngine_UIElements_EventBase___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_Queue_1_UnityEngine_UIElements_EventBase_ fields; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_Queue_1_UnityEngine_UIElements_EventBase___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Key; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Value; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Entry; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_Queue_1_UnityEngine_UIElements_EventBase___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_Queue_1_UnityEngine_UIElements_EventBase___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_Queue_1_UnityEngine_UIElements_EventBase___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_ElementPropertyPair_Queue_1_UnityEngine_UIElements_EventBase___VTable vtable; +}; + +struct __declspec(align(8)) List_1_Pathfinding_NodeLink2___Fields { + struct NodeLink2__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Pathfinding_NodeLink2_ { + struct List_1_Pathfinding_NodeLink2___Class *klass; + MonitorData *monitor; + struct List_1_Pathfinding_NodeLink2___Fields fields; +}; + +struct List_1_Pathfinding_NodeLink2___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_Pathfinding_NodeLink2___StaticFields { + struct NodeLink2__Array *s_emptyArray; +}; + +struct List_1_Pathfinding_NodeLink2___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Pathfinding_NodeLink2___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Pathfinding_NodeLink2___VTable vtable; +}; + +struct List_1_T_Enumerator_Pathfinding_NodeLink2_ { + struct List_1_Pathfinding_NodeLink2_ *_list; + int32_t _index; + int32_t _version; + struct NodeLink2 *_current; +}; + +struct List_1_T_Enumerator_Pathfinding_NodeLink2___Boxed { + struct List_1_T_Enumerator_Pathfinding_NodeLink2___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_Pathfinding_NodeLink2_ fields; +}; + +struct List_1_T_Enumerator_Pathfinding_NodeLink2___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_Pathfinding_NodeLink2___StaticFields { +}; + +struct List_1_T_Enumerator_Pathfinding_NodeLink2___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_Pathfinding_NodeLink2___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_Pathfinding_NodeLink2___VTable vtable; +}; + +struct ArrayPool_1_UnityEngine_Vector3_ { + struct ArrayPool_1_UnityEngine_Vector3___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) Stack_1_UnityEngine_Vector3___Fields { + struct Vector3__Array__Array *_array; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct Stack_1_UnityEngine_Vector3_ { + struct Stack_1_UnityEngine_Vector3___Class *klass; + MonitorData *monitor; + struct Stack_1_UnityEngine_Vector3___Fields fields; +}; + +struct Stack_1_UnityEngine_Vector3___Array { + struct Stack_1_UnityEngine_Vector3___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Stack_1_UnityEngine_Vector3_ *vector[32]; +}; + +struct Stack_1_UnityEngine_Vector3___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_1; +}; + +struct Stack_1_UnityEngine_Vector3___StaticFields { +}; + +struct Stack_1_UnityEngine_Vector3___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Stack_1_UnityEngine_Vector3___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Stack_1_UnityEngine_Vector3___VTable vtable; +}; + +struct Stack_1_UnityEngine_Vector3___Array__VTable { +}; + +struct Stack_1_UnityEngine_Vector3___Array__StaticFields { +}; + +struct Stack_1_UnityEngine_Vector3___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Stack_1_UnityEngine_Vector3___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Stack_1_UnityEngine_Vector3___Array__VTable vtable; +}; + +struct ArrayPool_1_UnityEngine_Vector3___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ArrayPool_1_UnityEngine_Vector3___StaticFields { + struct Stack_1_UnityEngine_Vector3___Array *pool; + struct Stack_1_UnityEngine_Vector3___Array *exactPool; +}; + +struct ArrayPool_1_UnityEngine_Vector3___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ArrayPool_1_UnityEngine_Vector3___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ArrayPool_1_UnityEngine_Vector3___VTable vtable; +}; + +struct HashSet_1_T_Slot_Pathfinding_GridNodeBase_ { + int32_t hashCode; + int32_t next; + struct GridNodeBase *value; +}; + +struct HashSet_1_T_Slot_Pathfinding_GridNodeBase___Boxed { + struct HashSet_1_T_Slot_Pathfinding_GridNodeBase___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_Pathfinding_GridNodeBase_ fields; +}; + +struct __declspec(align(8)) HashSet_1_Pathfinding_GridNodeBase___Fields { + struct Int32__Array *_buckets; + struct HashSet_1_T_Slot_Pathfinding_GridNodeBase___Array *_slots; + int32_t _count; + int32_t _lastIndex; + int32_t _freeList; + struct IEqualityComparer_1_Pathfinding_GridNodeBase_ *_comparer; + int32_t _version; + struct SerializationInfo *_siInfo; +}; + +struct HashSet_1_Pathfinding_GridNodeBase_ { + struct HashSet_1_Pathfinding_GridNodeBase___Class *klass; + MonitorData *monitor; + struct HashSet_1_Pathfinding_GridNodeBase___Fields fields; +}; + +struct HashSet_1_T_Slot_Pathfinding_GridNodeBase___Array { + struct HashSet_1_T_Slot_Pathfinding_GridNodeBase___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct HashSet_1_T_Slot_Pathfinding_GridNodeBase_ vector[32]; +}; + +struct IEqualityComparer_1_Pathfinding_GridNodeBase_ { + struct IEqualityComparer_1_Pathfinding_GridNodeBase___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerator_1_Pathfinding_GridNodeBase__1 { + struct IEnumerator_1_Pathfinding_GridNodeBase__1__Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_Pathfinding_GridNodeBase_ { + struct IEnumerable_1_Pathfinding_GridNodeBase___Class *klass; + MonitorData *monitor; +}; + +struct HashSet_1_T_Slot_Pathfinding_GridNodeBase___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct HashSet_1_T_Slot_Pathfinding_GridNodeBase___StaticFields { +}; + +struct HashSet_1_T_Slot_Pathfinding_GridNodeBase___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_T_Slot_Pathfinding_GridNodeBase___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_T_Slot_Pathfinding_GridNodeBase___VTable vtable; +}; + +struct HashSet_1_T_Slot_Pathfinding_GridNodeBase___Array__VTable { +}; + +struct HashSet_1_T_Slot_Pathfinding_GridNodeBase___Array__StaticFields { +}; + +struct HashSet_1_T_Slot_Pathfinding_GridNodeBase___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_T_Slot_Pathfinding_GridNodeBase___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_T_Slot_Pathfinding_GridNodeBase___Array__VTable vtable; +}; + +struct IEqualityComparer_1_Pathfinding_GridNodeBase___VTable { + VirtualInvokeData Equals; + VirtualInvokeData GetHashCode; +}; + +struct IEqualityComparer_1_Pathfinding_GridNodeBase___StaticFields { +}; + +struct IEqualityComparer_1_Pathfinding_GridNodeBase___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEqualityComparer_1_Pathfinding_GridNodeBase___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEqualityComparer_1_Pathfinding_GridNodeBase___VTable vtable; +}; + +struct IEnumerator_1_Pathfinding_GridNodeBase__1__VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_Pathfinding_GridNodeBase__1__StaticFields { +}; + +struct IEnumerator_1_Pathfinding_GridNodeBase__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_Pathfinding_GridNodeBase__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_Pathfinding_GridNodeBase__1__VTable vtable; +}; + +struct IEnumerable_1_Pathfinding_GridNodeBase___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_Pathfinding_GridNodeBase___StaticFields { +}; + +struct IEnumerable_1_Pathfinding_GridNodeBase___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_Pathfinding_GridNodeBase___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_Pathfinding_GridNodeBase___VTable vtable; +}; + +struct HashSet_1_Pathfinding_GridNodeBase___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_T__Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData Add; + VirtualInvokeData UnionWith; + VirtualInvokeData IntersectWith; + VirtualInvokeData ExceptWith; + VirtualInvokeData SymmetricExceptWith; + VirtualInvokeData IsSubsetOf; + VirtualInvokeData IsSupersetOf; + VirtualInvokeData IsProperSupersetOf; + VirtualInvokeData IsProperSubsetOf; + VirtualInvokeData Overlaps; + VirtualInvokeData SetEquals; + VirtualInvokeData get_Count_1; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct HashSet_1_Pathfinding_GridNodeBase___StaticFields { +}; + +struct HashSet_1_Pathfinding_GridNodeBase___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_Pathfinding_GridNodeBase___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_Pathfinding_GridNodeBase___VTable vtable; +}; + +struct IEnumerable_1_UdpKit_Async_Task_ { + struct IEnumerable_1_UdpKit_Async_Task___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_UdpKit_Async_Task___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_UdpKit_Async_Task___StaticFields { +}; + +struct IEnumerable_1_UdpKit_Async_Task___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_UdpKit_Async_Task___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_UdpKit_Async_Task___VTable vtable; +}; + +struct IList_1_Rewired_ComponentControls_IComponentControl_ { + struct IList_1_Rewired_ComponentControls_IComponentControl___Class *klass; + MonitorData *monitor; +}; + +struct IList_1_Rewired_ComponentControls_IComponentControl___VTable { + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; +}; + +struct IList_1_Rewired_ComponentControls_IComponentControl___StaticFields { +}; + +struct IList_1_Rewired_ComponentControls_IComponentControl___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IList_1_Rewired_ComponentControls_IComponentControl___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IList_1_Rewired_ComponentControls_IComponentControl___VTable vtable; +}; + +struct IRegistrar_1_Rewired_ComponentControls_IComponentControl_ { + struct IRegistrar_1_Rewired_ComponentControls_IComponentControl___Class *klass; + MonitorData *monitor; +}; + +struct IRegistrar_1_Rewired_ComponentControls_IComponentControl___VTable { + VirtualInvokeData Register; + VirtualInvokeData Deregister; +}; + +struct IRegistrar_1_Rewired_ComponentControls_IComponentControl___StaticFields { +}; + +struct IRegistrar_1_Rewired_ComponentControls_IComponentControl___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IRegistrar_1_Rewired_ComponentControls_IComponentControl___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IRegistrar_1_Rewired_ComponentControls_IComponentControl___VTable vtable; +}; + +struct PrecisionTimer { + struct PrecisionTimer__Class *klass; + MonitorData *monitor; +}; + +struct PrecisionTimer__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct PrecisionTimer__StaticFields { + int64_t start; + double freq; +}; + +struct PrecisionTimer__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PrecisionTimer__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PrecisionTimer__VTable vtable; +}; + +struct SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_UdpKit_UdpStreamOp_ { + struct SortedSet_1_KeyValuePair_2_System_UInt64_UdpKit_UdpStreamOp_ *_tree; + int32_t _version; + struct Stack_1_SortedSet_1_T_Node_KeyValuePair_2_System_UInt64_UdpKit_UdpStreamOp_ *_stack; + struct SortedSet_1_T_Node_KeyValuePair_2_System_UInt64_UdpKit_UdpStreamOp_ *_current; + bool _reverse; +}; + +struct SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_UdpKit_UdpStreamOp___Boxed { + struct SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_UdpKit_UdpStreamOp___Class *klass; + MonitorData *monitor; + struct SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_UdpKit_UdpStreamOp_ fields; +}; + +struct SortedDictionary_2_TKey_TValue_Enumerator_System_UInt64_UdpKit_UdpStreamOp_ { + struct SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_UdpKit_UdpStreamOp_ _treeEnum; + int32_t _getEnumeratorRetType; +}; + +struct SortedDictionary_2_TKey_TValue_Enumerator_System_UInt64_UdpKit_UdpStreamOp___Boxed { + struct SortedDictionary_2_TKey_TValue_Enumerator_System_UInt64_UdpKit_UdpStreamOp___Class *klass; + MonitorData *monitor; + struct SortedDictionary_2_TKey_TValue_Enumerator_System_UInt64_UdpKit_UdpStreamOp_ fields; +}; + +struct SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_UdpKit_UdpStreamOp_ { + struct SortedDictionary_2_TKey_TValue_Enumerator_System_UInt64_UdpKit_UdpStreamOp_ _dictEnum; +}; + +struct SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_UdpKit_UdpStreamOp___Boxed { + struct SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_UdpKit_UdpStreamOp___Class *klass; + MonitorData *monitor; + struct SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_UdpKit_UdpStreamOp_ fields; +}; + +struct __declspec(align(8)) Stack_1_SortedSet_1_T_Node_KeyValuePair_2_System_UInt64_UdpKit_UdpStreamOp___Fields { + struct SortedSet_1_T_Node_KeyValuePair_2_System_UInt64_UdpKit_UdpStreamOp___Array *_array; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct Stack_1_SortedSet_1_T_Node_KeyValuePair_2_System_UInt64_UdpKit_UdpStreamOp_ { + struct Stack_1_SortedSet_1_T_Node_KeyValuePair_2_System_UInt64_UdpKit_UdpStreamOp___Class *klass; + MonitorData *monitor; + struct Stack_1_SortedSet_1_T_Node_KeyValuePair_2_System_UInt64_UdpKit_UdpStreamOp___Fields fields; +}; + +struct SortedSet_1_T_Node_KeyValuePair_2_System_UInt64_UdpKit_UdpStreamOp___Array { + struct SortedSet_1_T_Node_KeyValuePair_2_System_UInt64_UdpKit_UdpStreamOp___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct SortedSet_1_T_Node_KeyValuePair_2_System_UInt64_UdpKit_UdpStreamOp_ *vector[32]; +}; + +struct IEnumerator_1_SortedSet_1_T_Node_KeyValuePair_2_System_UInt64_UdpKit_UdpStreamOp_ { + struct IEnumerator_1_SortedSet_1_T_Node_KeyValuePair_2_System_UInt64_UdpKit_UdpStreamOp___Class *klass; + MonitorData *monitor; +}; + +struct SortedSet_1_T_Node_KeyValuePair_2_System_UInt64_UdpKit_UdpStreamOp___Array__VTable { +}; + +struct SortedSet_1_T_Node_KeyValuePair_2_System_UInt64_UdpKit_UdpStreamOp___Array__StaticFields { +}; + +struct SortedSet_1_T_Node_KeyValuePair_2_System_UInt64_UdpKit_UdpStreamOp___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SortedSet_1_T_Node_KeyValuePair_2_System_UInt64_UdpKit_UdpStreamOp___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SortedSet_1_T_Node_KeyValuePair_2_System_UInt64_UdpKit_UdpStreamOp___Array__VTable vtable; +}; + +struct IEnumerator_1_SortedSet_1_T_Node_KeyValuePair_2_System_UInt64_UdpKit_UdpStreamOp___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_SortedSet_1_T_Node_KeyValuePair_2_System_UInt64_UdpKit_UdpStreamOp___StaticFields { +}; + +struct IEnumerator_1_SortedSet_1_T_Node_KeyValuePair_2_System_UInt64_UdpKit_UdpStreamOp___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_SortedSet_1_T_Node_KeyValuePair_2_System_UInt64_UdpKit_UdpStreamOp___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_SortedSet_1_T_Node_KeyValuePair_2_System_UInt64_UdpKit_UdpStreamOp___VTable vtable; +}; + +struct Stack_1_SortedSet_1_T_Node_KeyValuePair_2_System_UInt64_UdpKit_UdpStreamOp___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_1; +}; + +struct Stack_1_SortedSet_1_T_Node_KeyValuePair_2_System_UInt64_UdpKit_UdpStreamOp___StaticFields { +}; + +struct Stack_1_SortedSet_1_T_Node_KeyValuePair_2_System_UInt64_UdpKit_UdpStreamOp___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Stack_1_SortedSet_1_T_Node_KeyValuePair_2_System_UInt64_UdpKit_UdpStreamOp___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Stack_1_SortedSet_1_T_Node_KeyValuePair_2_System_UInt64_UdpKit_UdpStreamOp___VTable vtable; +}; + +struct SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_UdpKit_UdpStreamOp___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; + VirtualInvokeData System_Runtime_Serialization_ISerializable_GetObjectData; + VirtualInvokeData System_Runtime_Serialization_IDeserializationCallback_OnDeserialization; +}; + +struct SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_UdpKit_UdpStreamOp___StaticFields { + struct SortedSet_1_T_Node_KeyValuePair_2_System_UInt64_UdpKit_UdpStreamOp_ *s_dummyNode; +}; + +struct SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_UdpKit_UdpStreamOp___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_UdpKit_UdpStreamOp___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SortedSet_1_T_Enumerator_KeyValuePair_2_System_UInt64_UdpKit_UdpStreamOp___VTable vtable; +}; + +struct SortedDictionary_2_TKey_TValue_Enumerator_System_UInt64_UdpKit_UdpStreamOp___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Key; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Value; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Entry; +}; + +struct SortedDictionary_2_TKey_TValue_Enumerator_System_UInt64_UdpKit_UdpStreamOp___StaticFields { +}; + +struct SortedDictionary_2_TKey_TValue_Enumerator_System_UInt64_UdpKit_UdpStreamOp___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SortedDictionary_2_TKey_TValue_Enumerator_System_UInt64_UdpKit_UdpStreamOp___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SortedDictionary_2_TKey_TValue_Enumerator_System_UInt64_UdpKit_UdpStreamOp___VTable vtable; +}; + +struct SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_UdpKit_UdpStreamOp___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_UdpKit_UdpStreamOp___StaticFields { +}; + +struct SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_UdpKit_UdpStreamOp___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_UdpKit_UdpStreamOp___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SortedDictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_UInt64_UdpKit_UdpStreamOp___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_UdpKit_UdpConnection_ { + struct Dictionary_2_UdpKit_UdpEndPoint_UdpKit_UdpConnection_ *_dictionary; + int32_t _index; + int32_t _version; + struct UdpConnection *_currentValue; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_UdpKit_UdpConnection___Boxed { + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_UdpKit_UdpConnection___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_UdpKit_UdpConnection_ fields; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_UdpKit_UdpConnection___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_UdpKit_UdpConnection___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_UdpKit_UdpConnection___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_UdpKit_UdpConnection___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpEndPoint_UdpKit_UdpConnection___VTable vtable; +}; + +struct List_1_T_Enumerator_UdpKit_UdpSession_ { + struct List_1_UdpKit_UdpSession_ *_list; + int32_t _index; + int32_t _version; + struct UdpSession *_current; +}; + +struct List_1_T_Enumerator_UdpKit_UdpSession___Boxed { + struct List_1_T_Enumerator_UdpKit_UdpSession___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_UdpKit_UdpSession_ fields; +}; + +struct List_1_T_Enumerator_UdpKit_UdpSession___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_UdpKit_UdpSession___StaticFields { +}; + +struct List_1_T_Enumerator_UdpKit_UdpSession___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_UdpKit_UdpSession___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_UdpKit_UdpSession___VTable vtable; +}; + +struct IEnumerable_1_Pathfinding_NavmeshTile_ { + struct IEnumerable_1_Pathfinding_NavmeshTile___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_Pathfinding_NavmeshTile___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_Pathfinding_NavmeshTile___StaticFields { +}; + +struct IEnumerable_1_Pathfinding_NavmeshTile___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_Pathfinding_NavmeshTile___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_Pathfinding_NavmeshTile___VTable vtable; +}; + +struct Action_1_UdpKit_Protocol_BroadcastSearch___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_1_UdpKit_Protocol_BroadcastSearch_ { + struct Action_1_UdpKit_Protocol_BroadcastSearch___Class *klass; + MonitorData *monitor; + struct Action_1_UdpKit_Protocol_BroadcastSearch___Fields fields; +}; + +struct Action_1_UdpKit_Protocol_BroadcastSearch___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_1_UdpKit_Protocol_BroadcastSearch___StaticFields { +}; + +struct Action_1_UdpKit_Protocol_BroadcastSearch___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_1_UdpKit_Protocol_BroadcastSearch___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_1_UdpKit_Protocol_BroadcastSearch___VTable vtable; +}; + +struct Action_1_UdpKit_Protocol_BroadcastSession___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_1_UdpKit_Protocol_BroadcastSession_ { + struct Action_1_UdpKit_Protocol_BroadcastSession___Class *klass; + MonitorData *monitor; + struct Action_1_UdpKit_Protocol_BroadcastSession___Fields fields; +}; + +struct Action_1_UdpKit_Protocol_BroadcastSession___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_1_UdpKit_Protocol_BroadcastSession___StaticFields { +}; + +struct Action_1_UdpKit_Protocol_BroadcastSession___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_1_UdpKit_Protocol_BroadcastSession___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_1_UdpKit_Protocol_BroadcastSession___VTable vtable; +}; + +struct __declspec(align(8)) List_1_Rewired_PlayerController_Element_Definition___Fields { + struct PlayerController_Element_Definition__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Rewired_PlayerController_Element_Definition_ { + struct List_1_Rewired_PlayerController_Element_Definition___Class *klass; + MonitorData *monitor; + struct List_1_Rewired_PlayerController_Element_Definition___Fields fields; +}; + +struct IEnumerator_1_Rewired_PlayerController_Element_Definition_ { + struct IEnumerator_1_Rewired_PlayerController_Element_Definition___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerator_1_Rewired_PlayerController_Element_Definition___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_Rewired_PlayerController_Element_Definition___StaticFields { +}; + +struct IEnumerator_1_Rewired_PlayerController_Element_Definition___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_Rewired_PlayerController_Element_Definition___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_Rewired_PlayerController_Element_Definition___VTable vtable; +}; + +struct List_1_Rewired_PlayerController_Element_Definition___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_Rewired_PlayerController_Element_Definition___StaticFields { + struct PlayerController_Element_Definition__Array *s_emptyArray; +}; + +struct List_1_Rewired_PlayerController_Element_Definition___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Rewired_PlayerController_Element_Definition___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Rewired_PlayerController_Element_Definition___VTable vtable; +}; + +struct IList_1_Rewired_Components_PlayerController_ElementInfo_ { + struct IList_1_Rewired_Components_PlayerController_ElementInfo___Class *klass; + MonitorData *monitor; +}; + +struct IList_1_Rewired_Components_PlayerController_ElementInfo___VTable { + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; +}; + +struct IList_1_Rewired_Components_PlayerController_ElementInfo___StaticFields { +}; + +struct IList_1_Rewired_Components_PlayerController_ElementInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IList_1_Rewired_Components_PlayerController_ElementInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IList_1_Rewired_Components_PlayerController_ElementInfo___VTable vtable; +}; + +struct Side__Enum__Array { + struct Side__Enum__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + Side__Enum vector[32]; +}; + +struct Side__Enum__Array__VTable { +}; + +struct Side__Enum__Array__StaticFields { +}; + +struct Side__Enum__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Side__Enum__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Side__Enum__Array__VTable vtable; +}; + +struct IEnumerable_1_Rewired_Components_PlayerController_ElementInfo_ { + struct IEnumerable_1_Rewired_Components_PlayerController_ElementInfo___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_Rewired_Components_PlayerController_ElementInfo___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_Rewired_Components_PlayerController_ElementInfo___StaticFields { +}; + +struct IEnumerable_1_Rewired_Components_PlayerController_ElementInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_Rewired_Components_PlayerController_ElementInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_Rewired_Components_PlayerController_ElementInfo___VTable vtable; +}; + +struct ICollection_1_Rewired_Components_PlayerController_ElementInfo_ { + struct ICollection_1_Rewired_Components_PlayerController_ElementInfo___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_Rewired_Components_PlayerController_ElementInfo___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_Rewired_Components_PlayerController_ElementInfo___StaticFields { +}; + +struct ICollection_1_Rewired_Components_PlayerController_ElementInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_Rewired_Components_PlayerController_ElementInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_Rewired_Components_PlayerController_ElementInfo___VTable vtable; +}; + +struct ArrayPool_1_Pathfinding_TriangleMeshNode_ { + struct ArrayPool_1_Pathfinding_TriangleMeshNode___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) Stack_1_Pathfinding_TriangleMeshNode___Fields { + struct TriangleMeshNode__Array__Array *_array; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct Stack_1_Pathfinding_TriangleMeshNode_ { + struct Stack_1_Pathfinding_TriangleMeshNode___Class *klass; + MonitorData *monitor; + struct Stack_1_Pathfinding_TriangleMeshNode___Fields fields; +}; + +struct TriangleMeshNode__Array__Array { + struct TriangleMeshNode__Array__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct TriangleMeshNode__Array *vector[32]; +}; + +struct IEnumerator_1_Pathfinding_TriangleMeshNode__1 { + struct IEnumerator_1_Pathfinding_TriangleMeshNode__1__Class *klass; + MonitorData *monitor; +}; + +struct Stack_1_Pathfinding_TriangleMeshNode___Array { + struct Stack_1_Pathfinding_TriangleMeshNode___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Stack_1_Pathfinding_TriangleMeshNode_ *vector[32]; +}; + +struct TriangleMeshNode__Array__Array__VTable { +}; + +struct TriangleMeshNode__Array__Array__StaticFields { +}; + +struct TriangleMeshNode__Array__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TriangleMeshNode__Array__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TriangleMeshNode__Array__Array__VTable vtable; +}; + +struct IEnumerator_1_Pathfinding_TriangleMeshNode__1__VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_Pathfinding_TriangleMeshNode__1__StaticFields { +}; + +struct IEnumerator_1_Pathfinding_TriangleMeshNode__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_Pathfinding_TriangleMeshNode__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_Pathfinding_TriangleMeshNode__1__VTable vtable; +}; + +struct Stack_1_Pathfinding_TriangleMeshNode___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_1; +}; + +struct Stack_1_Pathfinding_TriangleMeshNode___StaticFields { +}; + +struct Stack_1_Pathfinding_TriangleMeshNode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Stack_1_Pathfinding_TriangleMeshNode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Stack_1_Pathfinding_TriangleMeshNode___VTable vtable; +}; + +struct Stack_1_Pathfinding_TriangleMeshNode___Array__VTable { +}; + +struct Stack_1_Pathfinding_TriangleMeshNode___Array__StaticFields { +}; + +struct Stack_1_Pathfinding_TriangleMeshNode___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Stack_1_Pathfinding_TriangleMeshNode___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Stack_1_Pathfinding_TriangleMeshNode___Array__VTable vtable; +}; + +struct ArrayPool_1_Pathfinding_TriangleMeshNode___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ArrayPool_1_Pathfinding_TriangleMeshNode___StaticFields { + struct Stack_1_Pathfinding_TriangleMeshNode___Array *pool; + struct Stack_1_Pathfinding_TriangleMeshNode___Array *exactPool; +}; + +struct ArrayPool_1_Pathfinding_TriangleMeshNode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ArrayPool_1_Pathfinding_TriangleMeshNode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ArrayPool_1_Pathfinding_TriangleMeshNode___VTable vtable; +}; + +struct TriangleMeshNode__1__VTable { +}; + +struct TriangleMeshNode__1__StaticFields { +}; + +struct TriangleMeshNode__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TriangleMeshNode__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TriangleMeshNode__1__VTable vtable; +}; + +struct ObjectPoolSimple_1_System_Collections_Generic_Dictionary_2_ { + struct ObjectPoolSimple_1_System_Collections_Generic_Dictionary_2___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) List_1_Dictionary_2_Pathfinding_Int2_System_Int32___Fields { + struct Dictionary_2_Pathfinding_Int2_System_Int32___Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Dictionary_2_Pathfinding_Int2_System_Int32_ { + struct List_1_Dictionary_2_Pathfinding_Int2_System_Int32___Class *klass; + MonitorData *monitor; + struct List_1_Dictionary_2_Pathfinding_Int2_System_Int32___Fields fields; +}; + +struct Dictionary_2_Pathfinding_Int2_System_Int32___Array { + struct Dictionary_2_Pathfinding_Int2_System_Int32___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Dictionary_2_Pathfinding_Int2_System_Int32_ *vector[32]; +}; + +struct IEnumerator_1_Dictionary_2_Pathfinding_Int2_System_Int32_ { + struct IEnumerator_1_Dictionary_2_Pathfinding_Int2_System_Int32___Class *klass; + MonitorData *monitor; +}; + +struct HashSet_1_T_Slot_Dictionary_2_Pathfinding_Int2_System_Int32_ { + int32_t hashCode; + int32_t next; + struct Dictionary_2_Pathfinding_Int2_System_Int32_ *value; +}; + +struct HashSet_1_T_Slot_Dictionary_2_Pathfinding_Int2_System_Int32___Boxed { + struct HashSet_1_T_Slot_Dictionary_2_Pathfinding_Int2_System_Int32___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_Dictionary_2_Pathfinding_Int2_System_Int32_ fields; +}; + +struct __declspec(align(8)) HashSet_1_Dictionary_2_Pathfinding_Int2_System_Int32___Fields { + struct Int32__Array *_buckets; + struct HashSet_1_T_Slot_Dictionary_2_Pathfinding_Int2_System_Int32___Array *_slots; + int32_t _count; + int32_t _lastIndex; + int32_t _freeList; + struct IEqualityComparer_1_Dictionary_2_Pathfinding_Int2_System_Int32_ *_comparer; + int32_t _version; + struct SerializationInfo *_siInfo; +}; + +struct HashSet_1_Dictionary_2_Pathfinding_Int2_System_Int32_ { + struct HashSet_1_Dictionary_2_Pathfinding_Int2_System_Int32___Class *klass; + MonitorData *monitor; + struct HashSet_1_Dictionary_2_Pathfinding_Int2_System_Int32___Fields fields; +}; + +struct HashSet_1_T_Slot_Dictionary_2_Pathfinding_Int2_System_Int32___Array { + struct HashSet_1_T_Slot_Dictionary_2_Pathfinding_Int2_System_Int32___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct HashSet_1_T_Slot_Dictionary_2_Pathfinding_Int2_System_Int32_ vector[32]; +}; + +struct IEqualityComparer_1_Dictionary_2_Pathfinding_Int2_System_Int32_ { + struct IEqualityComparer_1_Dictionary_2_Pathfinding_Int2_System_Int32___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_Dictionary_2_Pathfinding_Int2_System_Int32_ { + struct IEnumerable_1_Dictionary_2_Pathfinding_Int2_System_Int32___Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_Pathfinding_Int2_System_Int32___Array__VTable { +}; + +struct Dictionary_2_Pathfinding_Int2_System_Int32___Array__StaticFields { +}; + +struct Dictionary_2_Pathfinding_Int2_System_Int32___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_Pathfinding_Int2_System_Int32___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_Pathfinding_Int2_System_Int32___Array__VTable vtable; +}; + +struct IEnumerator_1_Dictionary_2_Pathfinding_Int2_System_Int32___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_Dictionary_2_Pathfinding_Int2_System_Int32___StaticFields { +}; + +struct IEnumerator_1_Dictionary_2_Pathfinding_Int2_System_Int32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_Dictionary_2_Pathfinding_Int2_System_Int32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_Dictionary_2_Pathfinding_Int2_System_Int32___VTable vtable; +}; + +struct List_1_Dictionary_2_Pathfinding_Int2_System_Int32___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_Dictionary_2_Pathfinding_Int2_System_Int32___StaticFields { + struct Dictionary_2_Pathfinding_Int2_System_Int32___Array *s_emptyArray; +}; + +struct List_1_Dictionary_2_Pathfinding_Int2_System_Int32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Dictionary_2_Pathfinding_Int2_System_Int32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Dictionary_2_Pathfinding_Int2_System_Int32___VTable vtable; +}; + +struct HashSet_1_T_Slot_Dictionary_2_Pathfinding_Int2_System_Int32___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct HashSet_1_T_Slot_Dictionary_2_Pathfinding_Int2_System_Int32___StaticFields { +}; + +struct HashSet_1_T_Slot_Dictionary_2_Pathfinding_Int2_System_Int32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_T_Slot_Dictionary_2_Pathfinding_Int2_System_Int32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_T_Slot_Dictionary_2_Pathfinding_Int2_System_Int32___VTable vtable; +}; + +struct HashSet_1_T_Slot_Dictionary_2_Pathfinding_Int2_System_Int32___Array__VTable { +}; + +struct HashSet_1_T_Slot_Dictionary_2_Pathfinding_Int2_System_Int32___Array__StaticFields { +}; + +struct HashSet_1_T_Slot_Dictionary_2_Pathfinding_Int2_System_Int32___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_T_Slot_Dictionary_2_Pathfinding_Int2_System_Int32___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_T_Slot_Dictionary_2_Pathfinding_Int2_System_Int32___Array__VTable vtable; +}; + +struct IEqualityComparer_1_Dictionary_2_Pathfinding_Int2_System_Int32___VTable { + VirtualInvokeData Equals; + VirtualInvokeData GetHashCode; +}; + +struct IEqualityComparer_1_Dictionary_2_Pathfinding_Int2_System_Int32___StaticFields { +}; + +struct IEqualityComparer_1_Dictionary_2_Pathfinding_Int2_System_Int32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEqualityComparer_1_Dictionary_2_Pathfinding_Int2_System_Int32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEqualityComparer_1_Dictionary_2_Pathfinding_Int2_System_Int32___VTable vtable; +}; + +struct IEnumerable_1_Dictionary_2_Pathfinding_Int2_System_Int32___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_Dictionary_2_Pathfinding_Int2_System_Int32___StaticFields { +}; + +struct IEnumerable_1_Dictionary_2_Pathfinding_Int2_System_Int32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_Dictionary_2_Pathfinding_Int2_System_Int32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_Dictionary_2_Pathfinding_Int2_System_Int32___VTable vtable; +}; + +struct HashSet_1_Dictionary_2_Pathfinding_Int2_System_Int32___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_T__Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData Add; + VirtualInvokeData UnionWith; + VirtualInvokeData IntersectWith; + VirtualInvokeData ExceptWith; + VirtualInvokeData SymmetricExceptWith; + VirtualInvokeData IsSubsetOf; + VirtualInvokeData IsSupersetOf; + VirtualInvokeData IsProperSupersetOf; + VirtualInvokeData IsProperSubsetOf; + VirtualInvokeData Overlaps; + VirtualInvokeData SetEquals; + VirtualInvokeData get_Count_1; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct HashSet_1_Dictionary_2_Pathfinding_Int2_System_Int32___StaticFields { +}; + +struct HashSet_1_Dictionary_2_Pathfinding_Int2_System_Int32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_Dictionary_2_Pathfinding_Int2_System_Int32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_Dictionary_2_Pathfinding_Int2_System_Int32___VTable vtable; +}; + +struct ObjectPoolSimple_1_System_Collections_Generic_Dictionary_2___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ObjectPoolSimple_1_System_Collections_Generic_Dictionary_2___StaticFields { + struct List_1_Dictionary_2_Pathfinding_Int2_System_Int32_ *pool; + struct HashSet_1_Dictionary_2_Pathfinding_Int2_System_Int32_ *inPool; +}; + +struct ObjectPoolSimple_1_System_Collections_Generic_Dictionary_2___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ObjectPoolSimple_1_System_Collections_Generic_Dictionary_2___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ObjectPoolSimple_1_System_Collections_Generic_Dictionary_2___VTable vtable; +}; + +struct Dictionary_2_Pathfinding_Int2_System_Int32__1__VTable { +}; + +struct Dictionary_2_Pathfinding_Int2_System_Int32__1__StaticFields { +}; + +struct Dictionary_2_Pathfinding_Int2_System_Int32__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_Pathfinding_Int2_System_Int32__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_Pathfinding_Int2_System_Int32__1__VTable vtable; +}; + +struct ListPool_1_Pathfinding_Connection_ { + struct ListPool_1_Pathfinding_Connection___Class *klass; + MonitorData *monitor; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_Connection_ { + int32_t hashCode; + int32_t next; + struct List_1_Pathfinding_Connection_ *value; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_Connection___Boxed { + struct HashSet_1_T_Slot_List_1_Pathfinding_Connection___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_List_1_Pathfinding_Connection_ fields; +}; + +struct __declspec(align(8)) HashSet_1_List_1_Pathfinding_Connection___Fields { + struct Int32__Array *_buckets; + struct HashSet_1_T_Slot_List_1_Pathfinding_Connection___Array *_slots; + int32_t _count; + int32_t _lastIndex; + int32_t _freeList; + struct IEqualityComparer_1_List_1_Pathfinding_Connection_ *_comparer; + int32_t _version; + struct SerializationInfo *_siInfo; +}; + +struct HashSet_1_List_1_Pathfinding_Connection_ { + struct HashSet_1_List_1_Pathfinding_Connection___Class *klass; + MonitorData *monitor; + struct HashSet_1_List_1_Pathfinding_Connection___Fields fields; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_Connection___Array { + struct HashSet_1_T_Slot_List_1_Pathfinding_Connection___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct HashSet_1_T_Slot_List_1_Pathfinding_Connection_ vector[32]; +}; + +struct IEqualityComparer_1_List_1_Pathfinding_Connection_ { + struct IEqualityComparer_1_List_1_Pathfinding_Connection___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_List_1_Pathfinding_Connection_ { + struct IEnumerable_1_List_1_Pathfinding_Connection___Class *klass; + MonitorData *monitor; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_Connection___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_Connection___StaticFields { +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_Connection___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_T_Slot_List_1_Pathfinding_Connection___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_T_Slot_List_1_Pathfinding_Connection___VTable vtable; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_Connection___Array__VTable { +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_Connection___Array__StaticFields { +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_Connection___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_T_Slot_List_1_Pathfinding_Connection___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_T_Slot_List_1_Pathfinding_Connection___Array__VTable vtable; +}; + +struct IEqualityComparer_1_List_1_Pathfinding_Connection___VTable { + VirtualInvokeData Equals; + VirtualInvokeData GetHashCode; +}; + +struct IEqualityComparer_1_List_1_Pathfinding_Connection___StaticFields { +}; + +struct IEqualityComparer_1_List_1_Pathfinding_Connection___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEqualityComparer_1_List_1_Pathfinding_Connection___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEqualityComparer_1_List_1_Pathfinding_Connection___VTable vtable; +}; + +struct IEnumerable_1_List_1_Pathfinding_Connection___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_List_1_Pathfinding_Connection___StaticFields { +}; + +struct IEnumerable_1_List_1_Pathfinding_Connection___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_List_1_Pathfinding_Connection___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_List_1_Pathfinding_Connection___VTable vtable; +}; + +struct HashSet_1_List_1_Pathfinding_Connection___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_T__Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData Add; + VirtualInvokeData UnionWith; + VirtualInvokeData IntersectWith; + VirtualInvokeData ExceptWith; + VirtualInvokeData SymmetricExceptWith; + VirtualInvokeData IsSubsetOf; + VirtualInvokeData IsSupersetOf; + VirtualInvokeData IsProperSupersetOf; + VirtualInvokeData IsProperSubsetOf; + VirtualInvokeData Overlaps; + VirtualInvokeData SetEquals; + VirtualInvokeData get_Count_1; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct HashSet_1_List_1_Pathfinding_Connection___StaticFields { +}; + +struct HashSet_1_List_1_Pathfinding_Connection___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_List_1_Pathfinding_Connection___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_List_1_Pathfinding_Connection___VTable vtable; +}; + +struct ListPool_1_Pathfinding_Connection___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ListPool_1_Pathfinding_Connection___StaticFields { + struct List_1_List_1_Pathfinding_Connection_ *pool; + struct List_1_List_1_Pathfinding_Connection_ *largePool; + struct HashSet_1_List_1_Pathfinding_Connection_ *inPool; +}; + +struct ListPool_1_Pathfinding_Connection___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ListPool_1_Pathfinding_Connection___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ListPool_1_Pathfinding_Connection___VTable vtable; +}; + +struct CustomTriangleMeshNode__Array { + struct CustomTriangleMeshNode__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct CustomTriangleMeshNode *vector[32]; +}; + +struct CustomTriangleMeshNode__Array__VTable { +}; + +struct CustomTriangleMeshNode__Array__StaticFields { +}; + +struct CustomTriangleMeshNode__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CustomTriangleMeshNode__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CustomTriangleMeshNode__Array__VTable vtable; +}; + +struct BBTree___VTable { +}; + +struct BBTree___StaticFields { +}; + +struct BBTree___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BBTree___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BBTree___VTable vtable; +}; + +struct Comparison_1_UdpKit_UdpChannelStreamer___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Comparison_1_UdpKit_UdpChannelStreamer_ { + struct Comparison_1_UdpKit_UdpChannelStreamer___Class *klass; + MonitorData *monitor; + struct Comparison_1_UdpKit_UdpChannelStreamer___Fields fields; +}; + +struct Comparison_1_UdpKit_UdpChannelStreamer___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Comparison_1_UdpKit_UdpChannelStreamer___StaticFields { +}; + +struct Comparison_1_UdpKit_UdpChannelStreamer___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Comparison_1_UdpKit_UdpChannelStreamer___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Comparison_1_UdpKit_UdpChannelStreamer___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpChannelName_UdpKit_UdpChannelStreamer_ { + struct Dictionary_2_UdpKit_UdpChannelName_UdpKit_UdpChannelStreamer_ *_dictionary; + int32_t _index; + int32_t _version; + struct UdpChannelStreamer *_currentValue; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpChannelName_UdpKit_UdpChannelStreamer___Boxed { + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpChannelName_UdpKit_UdpChannelStreamer___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpChannelName_UdpKit_UdpChannelStreamer_ fields; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpChannelName_UdpKit_UdpChannelStreamer___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpChannelName_UdpKit_UdpChannelStreamer___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpChannelName_UdpKit_UdpChannelStreamer___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpChannelName_UdpKit_UdpChannelStreamer___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_UdpChannelName_UdpKit_UdpChannelStreamer___VTable vtable; +}; + +struct ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControl_ { + struct InputControl__Array *m_Array; + int32_t m_IndexStart; + int32_t m_IndexEnd; + int32_t m_Index; +}; + +struct ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControl___Boxed { + struct ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControl___Class *klass; + MonitorData *monitor; + struct ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControl_ fields; +}; + +struct ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControl___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData Reset; +}; + +struct ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControl___StaticFields { +}; + +struct ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControl___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControl___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputControl___VTable vtable; +}; + +struct __declspec(align(8)) TempListPool_TList_1_Rewired_UpdateLoopType___Fields { + struct List_1_Rewired_UpdateLoopType_ *VMeHiJhSKJHrptlKzeCAAZtDcXSGA; + bool eIuesTMfdyQoDfpIQeBgmzDBKKjJ; +}; + +struct TempListPool_TList_1_Rewired_UpdateLoopType_ { + struct TempListPool_TList_1_Rewired_UpdateLoopType___Class *klass; + MonitorData *monitor; + struct TempListPool_TList_1_Rewired_UpdateLoopType___Fields fields; +}; + +struct TempListPool_TList_1_Rewired_UpdateLoopType___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Dispose; + VirtualInvokeData Rewired_Utils_TempListPool_ITListSetter_T__SetList; +}; + +struct TempListPool_TList_1_Rewired_UpdateLoopType___StaticFields { +}; + +struct TempListPool_TList_1_Rewired_UpdateLoopType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TempListPool_TList_1_Rewired_UpdateLoopType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TempListPool_TList_1_Rewired_UpdateLoopType___VTable vtable; +}; + +struct ArrayPool_1_Pathfinding_IntRect_ { + struct ArrayPool_1_Pathfinding_IntRect___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) Stack_1_Pathfinding_IntRect___Fields { + struct IntRect__Array__Array *_array; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct Stack_1_Pathfinding_IntRect_ { + struct Stack_1_Pathfinding_IntRect___Class *klass; + MonitorData *monitor; + struct Stack_1_Pathfinding_IntRect___Fields fields; +}; + +struct IntRect__Array__Array { + struct IntRect__Array__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct IntRect__Array *vector[32]; +}; + +struct IEnumerator_1_Pathfinding_IntRect__1 { + struct IEnumerator_1_Pathfinding_IntRect__1__Class *klass; + MonitorData *monitor; +}; + +struct Stack_1_Pathfinding_IntRect___Array { + struct Stack_1_Pathfinding_IntRect___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Stack_1_Pathfinding_IntRect_ *vector[32]; +}; + +struct IntRect__Array__Array__VTable { +}; + +struct IntRect__Array__Array__StaticFields { +}; + +struct IntRect__Array__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IntRect__Array__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IntRect__Array__Array__VTable vtable; +}; + +struct IEnumerator_1_Pathfinding_IntRect__1__VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_Pathfinding_IntRect__1__StaticFields { +}; + +struct IEnumerator_1_Pathfinding_IntRect__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_Pathfinding_IntRect__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_Pathfinding_IntRect__1__VTable vtable; +}; + +struct Stack_1_Pathfinding_IntRect___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_1; +}; + +struct Stack_1_Pathfinding_IntRect___StaticFields { +}; + +struct Stack_1_Pathfinding_IntRect___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Stack_1_Pathfinding_IntRect___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Stack_1_Pathfinding_IntRect___VTable vtable; +}; + +struct Stack_1_Pathfinding_IntRect___Array__VTable { +}; + +struct Stack_1_Pathfinding_IntRect___Array__StaticFields { +}; + +struct Stack_1_Pathfinding_IntRect___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Stack_1_Pathfinding_IntRect___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Stack_1_Pathfinding_IntRect___Array__VTable vtable; +}; + +struct ArrayPool_1_Pathfinding_IntRect___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ArrayPool_1_Pathfinding_IntRect___StaticFields { + struct Stack_1_Pathfinding_IntRect___Array *pool; + struct Stack_1_Pathfinding_IntRect___Array *exactPool; +}; + +struct ArrayPool_1_Pathfinding_IntRect___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ArrayPool_1_Pathfinding_IntRect___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ArrayPool_1_Pathfinding_IntRect___VTable vtable; +}; + +struct ArrayPool_1_Pathfinding_BBTree_BBTreeBox_ { + struct ArrayPool_1_Pathfinding_BBTree_BBTreeBox___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) Stack_1_Pathfinding_BBTree_BBTreeBox___Fields { + struct BBTree_BBTreeBox__Array__Array *_array; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct Stack_1_Pathfinding_BBTree_BBTreeBox_ { + struct Stack_1_Pathfinding_BBTree_BBTreeBox___Class *klass; + MonitorData *monitor; + struct Stack_1_Pathfinding_BBTree_BBTreeBox___Fields fields; +}; + +struct BBTree_BBTreeBox__Array__Array { + struct BBTree_BBTreeBox__Array__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct BBTree_BBTreeBox__Array *vector[32]; +}; + +struct IEnumerator_1_Pathfinding_BBTree_BBTreeBox__1 { + struct IEnumerator_1_Pathfinding_BBTree_BBTreeBox__1__Class *klass; + MonitorData *monitor; +}; + +struct Stack_1_Pathfinding_BBTree_BBTreeBox___Array { + struct Stack_1_Pathfinding_BBTree_BBTreeBox___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Stack_1_Pathfinding_BBTree_BBTreeBox_ *vector[32]; +}; + +struct BBTree_BBTreeBox__Array__Array__VTable { +}; + +struct BBTree_BBTreeBox__Array__Array__StaticFields { +}; + +struct BBTree_BBTreeBox__Array__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BBTree_BBTreeBox__Array__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BBTree_BBTreeBox__Array__Array__VTable vtable; +}; + +struct IEnumerator_1_Pathfinding_BBTree_BBTreeBox__1__VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_Pathfinding_BBTree_BBTreeBox__1__StaticFields { +}; + +struct IEnumerator_1_Pathfinding_BBTree_BBTreeBox__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_Pathfinding_BBTree_BBTreeBox__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_Pathfinding_BBTree_BBTreeBox__1__VTable vtable; +}; + +struct Stack_1_Pathfinding_BBTree_BBTreeBox___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_1; +}; + +struct Stack_1_Pathfinding_BBTree_BBTreeBox___StaticFields { +}; + +struct Stack_1_Pathfinding_BBTree_BBTreeBox___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Stack_1_Pathfinding_BBTree_BBTreeBox___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Stack_1_Pathfinding_BBTree_BBTreeBox___VTable vtable; +}; + +struct Stack_1_Pathfinding_BBTree_BBTreeBox___Array__VTable { +}; + +struct Stack_1_Pathfinding_BBTree_BBTreeBox___Array__StaticFields { +}; + +struct Stack_1_Pathfinding_BBTree_BBTreeBox___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Stack_1_Pathfinding_BBTree_BBTreeBox___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Stack_1_Pathfinding_BBTree_BBTreeBox___Array__VTable vtable; +}; + +struct ArrayPool_1_Pathfinding_BBTree_BBTreeBox___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ArrayPool_1_Pathfinding_BBTree_BBTreeBox___StaticFields { + struct Stack_1_Pathfinding_BBTree_BBTreeBox___Array *pool; + struct Stack_1_Pathfinding_BBTree_BBTreeBox___Array *exactPool; +}; + +struct ArrayPool_1_Pathfinding_BBTree_BBTreeBox___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ArrayPool_1_Pathfinding_BBTree_BBTreeBox___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ArrayPool_1_Pathfinding_BBTree_BBTreeBox___VTable vtable; +}; + +struct ListPool_1_Pathfinding_Voxels_RasterizationMesh_ { + struct ListPool_1_Pathfinding_Voxels_RasterizationMesh___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) List_1_List_1_Pathfinding_Voxels_RasterizationMesh___Fields { + struct List_1_Pathfinding_Voxels_RasterizationMesh___Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_List_1_Pathfinding_Voxels_RasterizationMesh_ { + struct List_1_List_1_Pathfinding_Voxels_RasterizationMesh___Class *klass; + MonitorData *monitor; + struct List_1_List_1_Pathfinding_Voxels_RasterizationMesh___Fields fields; +}; + +struct IEnumerator_1_List_1_Pathfinding_Voxels_RasterizationMesh_ { + struct IEnumerator_1_List_1_Pathfinding_Voxels_RasterizationMesh___Class *klass; + MonitorData *monitor; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_Voxels_RasterizationMesh_ { + int32_t hashCode; + int32_t next; + struct List_1_Pathfinding_Voxels_RasterizationMesh_ *value; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_Voxels_RasterizationMesh___Boxed { + struct HashSet_1_T_Slot_List_1_Pathfinding_Voxels_RasterizationMesh___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_List_1_Pathfinding_Voxels_RasterizationMesh_ fields; +}; + +struct __declspec(align(8)) HashSet_1_List_1_Pathfinding_Voxels_RasterizationMesh___Fields { + struct Int32__Array *_buckets; + struct HashSet_1_T_Slot_List_1_Pathfinding_Voxels_RasterizationMesh___Array *_slots; + int32_t _count; + int32_t _lastIndex; + int32_t _freeList; + struct IEqualityComparer_1_List_1_Pathfinding_Voxels_RasterizationMesh_ *_comparer; + int32_t _version; + struct SerializationInfo *_siInfo; +}; + +struct HashSet_1_List_1_Pathfinding_Voxels_RasterizationMesh_ { + struct HashSet_1_List_1_Pathfinding_Voxels_RasterizationMesh___Class *klass; + MonitorData *monitor; + struct HashSet_1_List_1_Pathfinding_Voxels_RasterizationMesh___Fields fields; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_Voxels_RasterizationMesh___Array { + struct HashSet_1_T_Slot_List_1_Pathfinding_Voxels_RasterizationMesh___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct HashSet_1_T_Slot_List_1_Pathfinding_Voxels_RasterizationMesh_ vector[32]; +}; + +struct IEqualityComparer_1_List_1_Pathfinding_Voxels_RasterizationMesh_ { + struct IEqualityComparer_1_List_1_Pathfinding_Voxels_RasterizationMesh___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_List_1_Pathfinding_Voxels_RasterizationMesh_ { + struct IEnumerable_1_List_1_Pathfinding_Voxels_RasterizationMesh___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerator_1_List_1_Pathfinding_Voxels_RasterizationMesh___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_List_1_Pathfinding_Voxels_RasterizationMesh___StaticFields { +}; + +struct IEnumerator_1_List_1_Pathfinding_Voxels_RasterizationMesh___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_List_1_Pathfinding_Voxels_RasterizationMesh___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_List_1_Pathfinding_Voxels_RasterizationMesh___VTable vtable; +}; + +struct List_1_List_1_Pathfinding_Voxels_RasterizationMesh___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_List_1_Pathfinding_Voxels_RasterizationMesh___StaticFields { + struct List_1_Pathfinding_Voxels_RasterizationMesh___Array *s_emptyArray; +}; + +struct List_1_List_1_Pathfinding_Voxels_RasterizationMesh___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_List_1_Pathfinding_Voxels_RasterizationMesh___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_List_1_Pathfinding_Voxels_RasterizationMesh___VTable vtable; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_Voxels_RasterizationMesh___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_Voxels_RasterizationMesh___StaticFields { +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_Voxels_RasterizationMesh___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_T_Slot_List_1_Pathfinding_Voxels_RasterizationMesh___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_T_Slot_List_1_Pathfinding_Voxels_RasterizationMesh___VTable vtable; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_Voxels_RasterizationMesh___Array__VTable { +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_Voxels_RasterizationMesh___Array__StaticFields { +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_Voxels_RasterizationMesh___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_T_Slot_List_1_Pathfinding_Voxels_RasterizationMesh___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_T_Slot_List_1_Pathfinding_Voxels_RasterizationMesh___Array__VTable vtable; +}; + +struct IEqualityComparer_1_List_1_Pathfinding_Voxels_RasterizationMesh___VTable { + VirtualInvokeData Equals; + VirtualInvokeData GetHashCode; +}; + +struct IEqualityComparer_1_List_1_Pathfinding_Voxels_RasterizationMesh___StaticFields { +}; + +struct IEqualityComparer_1_List_1_Pathfinding_Voxels_RasterizationMesh___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEqualityComparer_1_List_1_Pathfinding_Voxels_RasterizationMesh___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEqualityComparer_1_List_1_Pathfinding_Voxels_RasterizationMesh___VTable vtable; +}; + +struct IEnumerable_1_List_1_Pathfinding_Voxels_RasterizationMesh___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_List_1_Pathfinding_Voxels_RasterizationMesh___StaticFields { +}; + +struct IEnumerable_1_List_1_Pathfinding_Voxels_RasterizationMesh___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_List_1_Pathfinding_Voxels_RasterizationMesh___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_List_1_Pathfinding_Voxels_RasterizationMesh___VTable vtable; +}; + +struct HashSet_1_List_1_Pathfinding_Voxels_RasterizationMesh___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_T__Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData Add; + VirtualInvokeData UnionWith; + VirtualInvokeData IntersectWith; + VirtualInvokeData ExceptWith; + VirtualInvokeData SymmetricExceptWith; + VirtualInvokeData IsSubsetOf; + VirtualInvokeData IsSupersetOf; + VirtualInvokeData IsProperSupersetOf; + VirtualInvokeData IsProperSubsetOf; + VirtualInvokeData Overlaps; + VirtualInvokeData SetEquals; + VirtualInvokeData get_Count_1; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct HashSet_1_List_1_Pathfinding_Voxels_RasterizationMesh___StaticFields { +}; + +struct HashSet_1_List_1_Pathfinding_Voxels_RasterizationMesh___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_List_1_Pathfinding_Voxels_RasterizationMesh___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_List_1_Pathfinding_Voxels_RasterizationMesh___VTable vtable; +}; + +struct ListPool_1_Pathfinding_Voxels_RasterizationMesh___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ListPool_1_Pathfinding_Voxels_RasterizationMesh___StaticFields { + struct List_1_List_1_Pathfinding_Voxels_RasterizationMesh_ *pool; + struct List_1_List_1_Pathfinding_Voxels_RasterizationMesh_ *largePool; + struct HashSet_1_List_1_Pathfinding_Voxels_RasterizationMesh_ *inPool; +}; + +struct ListPool_1_Pathfinding_Voxels_RasterizationMesh___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ListPool_1_Pathfinding_Voxels_RasterizationMesh___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ListPool_1_Pathfinding_Voxels_RasterizationMesh___VTable vtable; +}; + +struct List_1_Pathfinding_Voxels_RasterizationMesh__1__VTable { +}; + +struct List_1_Pathfinding_Voxels_RasterizationMesh__1__StaticFields { +}; + +struct List_1_Pathfinding_Voxels_RasterizationMesh__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Pathfinding_Voxels_RasterizationMesh__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Pathfinding_Voxels_RasterizationMesh__1__VTable vtable; +}; + +struct List_1_T_Enumerator_Photon_Realtime_TypedLobbyInfo_ { + struct List_1_Photon_Realtime_TypedLobbyInfo_ *_list; + int32_t _index; + int32_t _version; + struct TypedLobbyInfo *_current; +}; + +struct List_1_T_Enumerator_Photon_Realtime_TypedLobbyInfo___Boxed { + struct List_1_T_Enumerator_Photon_Realtime_TypedLobbyInfo___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_Photon_Realtime_TypedLobbyInfo_ fields; +}; + +struct List_1_T_Enumerator_Photon_Realtime_TypedLobbyInfo___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_Photon_Realtime_TypedLobbyInfo___StaticFields { +}; + +struct List_1_T_Enumerator_Photon_Realtime_TypedLobbyInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_Photon_Realtime_TypedLobbyInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_Photon_Realtime_TypedLobbyInfo___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_Photon_Realtime_RoomInfo_ { + struct Dictionary_2_System_Int32_Photon_Realtime_RoomInfo_ *_dictionary; + int32_t _version; + int32_t _index; + struct KeyValuePair_2_System_Int32_Photon_Realtime_RoomInfo_ _current; + int32_t _getEnumeratorRetType; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_Photon_Realtime_RoomInfo___Boxed { + struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_Photon_Realtime_RoomInfo___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_Photon_Realtime_RoomInfo_ fields; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_Photon_Realtime_RoomInfo___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Key; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Value; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Entry; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_Photon_Realtime_RoomInfo___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_Photon_Realtime_RoomInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_Photon_Realtime_RoomInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_Photon_Realtime_RoomInfo___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UdpKit_Platform_Photon_Puncher_StunManager_PingTarget_ { + struct Dictionary_2_System_Int32_UdpKit_Platform_Photon_Puncher_StunManager_PingTarget_ *_dictionary; + int32_t _index; + int32_t _version; + struct StunManager_PingTarget *_currentValue; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UdpKit_Platform_Photon_Puncher_StunManager_PingTarget___Boxed { + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UdpKit_Platform_Photon_Puncher_StunManager_PingTarget___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UdpKit_Platform_Photon_Puncher_StunManager_PingTarget_ fields; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UdpKit_Platform_Photon_Puncher_StunManager_PingTarget___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UdpKit_Platform_Photon_Puncher_StunManager_PingTarget___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UdpKit_Platform_Photon_Puncher_StunManager_PingTarget___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UdpKit_Platform_Photon_Puncher_StunManager_PingTarget___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UdpKit_Platform_Photon_Puncher_StunManager_PingTarget___VTable vtable; +}; + +struct __declspec(align(8)) SynchronizedQueue_1_System_Collections_IEnumerator___Fields { + struct Queue_1_System_Collections_IEnumerator_ *queue; +}; + +struct SynchronizedQueue_1_System_Collections_IEnumerator_ { + struct SynchronizedQueue_1_System_Collections_IEnumerator___Class *klass; + MonitorData *monitor; + struct SynchronizedQueue_1_System_Collections_IEnumerator___Fields fields; +}; + +struct __declspec(align(8)) Queue_1_System_Collections_IEnumerator___Fields { + struct IEnumerator__Array *_array; + int32_t _head; + int32_t _tail; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct Queue_1_System_Collections_IEnumerator_ { + struct Queue_1_System_Collections_IEnumerator___Class *klass; + MonitorData *monitor; + struct Queue_1_System_Collections_IEnumerator___Fields fields; +}; + +struct Queue_1_System_Collections_IEnumerator___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_1; +}; + +struct Queue_1_System_Collections_IEnumerator___StaticFields { +}; + +struct Queue_1_System_Collections_IEnumerator___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Queue_1_System_Collections_IEnumerator___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Queue_1_System_Collections_IEnumerator___VTable vtable; +}; + +struct IEnumerator___VTable { +}; + +struct IEnumerator___StaticFields { +}; + +struct IEnumerator___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator___VTable vtable; +}; + +struct SynchronizedQueue_1_System_Collections_IEnumerator___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData Clear; + VirtualInvokeData Enqueue; + VirtualInvokeData TryDequeue; +}; + +struct SynchronizedQueue_1_System_Collections_IEnumerator___StaticFields { +}; + +struct SynchronizedQueue_1_System_Collections_IEnumerator___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SynchronizedQueue_1_System_Collections_IEnumerator___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SynchronizedQueue_1_System_Collections_IEnumerator___VTable vtable; +}; + +struct StunServers { + struct StunServers__Class *klass; + MonitorData *monitor; +}; + +struct StunServers__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct StunServers__StaticFields { + struct StunServers_StunServer *GOOGLE_1; + struct StunServers_StunServer *GOOGLE_2; + struct StunServers_StunServer *GOOGLE_3; + struct StunServers_StunServer *GOOGLE_4; + struct StunServers_StunServer *STUN_PROTOCOL; + struct StunServers_StunServer *CUSTOM_STUN_SERVER; +}; + +struct StunServers__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StunServers__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StunServers__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion_ { + struct Dictionary_2_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion_ *_dictionary; + int32_t _index; + int32_t _version; + struct PhotonRegion *_currentValue; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion___Boxed { + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion_ fields; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion___VTable vtable; +}; + +struct BitTools { + struct BitTools__Class *klass; + MonitorData *monitor; +}; + +struct BitTools__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BitTools__StaticFields { + struct Byte__Array *apbTNWtxPkNOxMktaRaaiEFvZoLG; +}; + +struct BitTools__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BitTools__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BitTools__VTable vtable; +}; + +struct IPhotonRoomPropertiesInternal { + struct IPhotonRoomPropertiesInternal__Class *klass; + MonitorData *monitor; +}; + +struct IPhotonRoomPropertiesInternal__VTable { + VirtualInvokeData get_IsOpen; + VirtualInvokeData set_IsOpen; + VirtualInvokeData get_IsVisible; + VirtualInvokeData set_IsVisible; + VirtualInvokeData get_CustomRoomProperties; + VirtualInvokeData get_CustomRoomPropertiesInLobby; +}; + +struct IPhotonRoomPropertiesInternal__StaticFields { +}; + +struct IPhotonRoomPropertiesInternal__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IPhotonRoomPropertiesInternal__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IPhotonRoomPropertiesInternal__VTable vtable; +}; + +struct __declspec(align(8)) SynchronizedQueue_1_UdpKit_Platform_Photon_PhotonPoller_PhotonPacket___Fields { + struct Queue_1_UdpKit_Platform_Photon_PhotonPoller_PhotonPacket_ *queue; +}; + +struct SynchronizedQueue_1_UdpKit_Platform_Photon_PhotonPoller_PhotonPacket_ { + struct SynchronizedQueue_1_UdpKit_Platform_Photon_PhotonPoller_PhotonPacket___Class *klass; + MonitorData *monitor; + struct SynchronizedQueue_1_UdpKit_Platform_Photon_PhotonPoller_PhotonPacket___Fields fields; +}; + +struct __declspec(align(8)) Queue_1_UdpKit_Platform_Photon_PhotonPoller_PhotonPacket___Fields { + struct PhotonPoller_PhotonPacket__Array *_array; + int32_t _head; + int32_t _tail; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct Queue_1_UdpKit_Platform_Photon_PhotonPoller_PhotonPacket_ { + struct Queue_1_UdpKit_Platform_Photon_PhotonPoller_PhotonPacket___Class *klass; + MonitorData *monitor; + struct Queue_1_UdpKit_Platform_Photon_PhotonPoller_PhotonPacket___Fields fields; +}; + +struct PhotonPoller_PhotonPacket__Array { + struct PhotonPoller_PhotonPacket__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct PhotonPoller_PhotonPacket *vector[32]; +}; + +struct IEnumerator_1_UdpKit_Platform_Photon_PhotonPoller_PhotonPacket_ { + struct IEnumerator_1_UdpKit_Platform_Photon_PhotonPoller_PhotonPacket___Class *klass; + MonitorData *monitor; +}; + +struct PhotonPoller_PhotonPacket__Array__VTable { +}; + +struct PhotonPoller_PhotonPacket__Array__StaticFields { +}; + +struct PhotonPoller_PhotonPacket__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PhotonPoller_PhotonPacket__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PhotonPoller_PhotonPacket__Array__VTable vtable; +}; + +struct IEnumerator_1_UdpKit_Platform_Photon_PhotonPoller_PhotonPacket___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_UdpKit_Platform_Photon_PhotonPoller_PhotonPacket___StaticFields { +}; + +struct IEnumerator_1_UdpKit_Platform_Photon_PhotonPoller_PhotonPacket___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_UdpKit_Platform_Photon_PhotonPoller_PhotonPacket___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_UdpKit_Platform_Photon_PhotonPoller_PhotonPacket___VTable vtable; +}; + +struct Queue_1_UdpKit_Platform_Photon_PhotonPoller_PhotonPacket___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_1; +}; + +struct Queue_1_UdpKit_Platform_Photon_PhotonPoller_PhotonPacket___StaticFields { +}; + +struct Queue_1_UdpKit_Platform_Photon_PhotonPoller_PhotonPacket___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Queue_1_UdpKit_Platform_Photon_PhotonPoller_PhotonPacket___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Queue_1_UdpKit_Platform_Photon_PhotonPoller_PhotonPacket___VTable vtable; +}; + +struct PhotonPoller_PhotonPacket___VTable { +}; + +struct PhotonPoller_PhotonPacket___StaticFields { +}; + +struct PhotonPoller_PhotonPacket___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PhotonPoller_PhotonPacket___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PhotonPoller_PhotonPacket___VTable vtable; +}; + +struct SynchronizedQueue_1_UdpKit_Platform_Photon_PhotonPoller_PhotonPacket___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData Clear; + VirtualInvokeData Enqueue; + VirtualInvokeData TryDequeue; +}; + +struct SynchronizedQueue_1_UdpKit_Platform_Photon_PhotonPoller_PhotonPacket___StaticFields { +}; + +struct SynchronizedQueue_1_UdpKit_Platform_Photon_PhotonPoller_PhotonPacket___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SynchronizedQueue_1_UdpKit_Platform_Photon_PhotonPoller_PhotonPacket___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SynchronizedQueue_1_UdpKit_Platform_Photon_PhotonPoller_PhotonPacket___VTable vtable; +}; + +struct TempListPool { + struct TempListPool__Class *klass; + MonitorData *monitor; +}; + +struct TempListPool__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct TempListPool__StaticFields { + struct ADictionary_2_System_Type_System_Collections_Generic_List_1_ *BaZuWgBWVWVtSjdIstrjTQYeqryh; +}; + +struct TempListPool__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TempListPool__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TempListPool__VTable vtable; +}; + +struct SystemInfo { + struct SystemInfo__Class *klass; + MonitorData *monitor; +}; + +struct SystemInfo__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct SystemInfo__StaticFields { + bool is64Bit; +}; + +struct SystemInfo__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SystemInfo__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SystemInfo__VTable vtable; +}; + +struct TempListPool_PjDAHtdxqqebxCpLhOqfFcxXTcRR { + struct TempListPool_PjDAHtdxqqebxCpLhOqfFcxXTcRR__Class *klass; + MonitorData *monitor; +}; + +struct TempListPool_PjDAHtdxqqebxCpLhOqfFcxXTcRR__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct TempListPool_PjDAHtdxqqebxCpLhOqfFcxXTcRR__StaticFields { + struct ADictionary_2_System_Type_System_Collections_Generic_List_1__1 *DEzdyAGMlxFfSjShvjIMHwXdMJzg; +}; + +struct TempListPool_PjDAHtdxqqebxCpLhOqfFcxXTcRR__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TempListPool_PjDAHtdxqqebxCpLhOqfFcxXTcRR__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TempListPool_PjDAHtdxqqebxCpLhOqfFcxXTcRR__VTable vtable; +}; + +struct zDZgydkVTSdUNcyzGBFFOHxZsClo { + struct zDZgydkVTSdUNcyzGBFFOHxZsClo__Class *klass; + MonitorData *monitor; +}; + +struct zDZgydkVTSdUNcyzGBFFOHxZsClo__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct zDZgydkVTSdUNcyzGBFFOHxZsClo__StaticFields { + struct BKsJJnAdrRntLMuBtHLhFtlqOUnH_EventFunction_2_Rewired_UI_IVisibilityChangedHandler_System_Boolean_ *lwycGXyhVpOmBqTcKoFoEFyGEJzCA; +}; + +struct zDZgydkVTSdUNcyzGBFFOHxZsClo__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct zDZgydkVTSdUNcyzGBFFOHxZsClo__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct zDZgydkVTSdUNcyzGBFFOHxZsClo__VTable vtable; +}; + +struct List_1_T_Enumerator_Photon_Realtime_RoomInfo_ { + struct List_1_Photon_Realtime_RoomInfo_ *_list; + int32_t _index; + int32_t _version; + struct RoomInfo *_current; +}; + +struct List_1_T_Enumerator_Photon_Realtime_RoomInfo___Boxed { + struct List_1_T_Enumerator_Photon_Realtime_RoomInfo___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_Photon_Realtime_RoomInfo_ fields; +}; + +struct List_1_T_Enumerator_Photon_Realtime_RoomInfo___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_Photon_Realtime_RoomInfo___StaticFields { +}; + +struct List_1_T_Enumerator_Photon_Realtime_RoomInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_Photon_Realtime_RoomInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_Photon_Realtime_RoomInfo___VTable vtable; +}; + +struct PhotonPoller__Array { + struct PhotonPoller__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct PhotonPoller *vector[32]; +}; + +struct PhotonPoller__Array__VTable { +}; + +struct PhotonPoller__Array__StaticFields { +}; + +struct PhotonPoller__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PhotonPoller__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PhotonPoller__Array__VTable vtable; +}; + +struct IList_1_Rewired_ComponentControls_Effects_TouchJoystickAngleIndicator_ { + struct IList_1_Rewired_ComponentControls_Effects_TouchJoystickAngleIndicator___Class *klass; + MonitorData *monitor; +}; + +struct IList_1_Rewired_ComponentControls_Effects_TouchJoystickAngleIndicator___VTable { + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; +}; + +struct IList_1_Rewired_ComponentControls_Effects_TouchJoystickAngleIndicator___StaticFields { +}; + +struct IList_1_Rewired_ComponentControls_Effects_TouchJoystickAngleIndicator___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IList_1_Rewired_ComponentControls_Effects_TouchJoystickAngleIndicator___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IList_1_Rewired_ComponentControls_Effects_TouchJoystickAngleIndicator___VTable vtable; +}; + +struct RelevantGraphSurface__Array { + struct RelevantGraphSurface__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct RelevantGraphSurface *vector[32]; +}; + +struct RelevantGraphSurface__Array__VTable { +}; + +struct RelevantGraphSurface__Array__StaticFields { +}; + +struct RelevantGraphSurface__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RelevantGraphSurface__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RelevantGraphSurface__Array__VTable vtable; +}; + +struct ListPool_1_Pathfinding_NavmeshClipper_ { + struct ListPool_1_Pathfinding_NavmeshClipper___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) List_1_List_1_Pathfinding_NavmeshClipper___Fields { + struct List_1_Pathfinding_NavmeshClipper___Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_List_1_Pathfinding_NavmeshClipper_ { + struct List_1_List_1_Pathfinding_NavmeshClipper___Class *klass; + MonitorData *monitor; + struct List_1_List_1_Pathfinding_NavmeshClipper___Fields fields; +}; + +struct List_1_Pathfinding_NavmeshClipper___Array { + struct List_1_Pathfinding_NavmeshClipper___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct List_1_Pathfinding_NavmeshClipper_ *vector[32]; +}; + +struct IEnumerator_1_List_1_Pathfinding_NavmeshClipper_ { + struct IEnumerator_1_List_1_Pathfinding_NavmeshClipper___Class *klass; + MonitorData *monitor; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_NavmeshClipper_ { + int32_t hashCode; + int32_t next; + struct List_1_Pathfinding_NavmeshClipper_ *value; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_NavmeshClipper___Boxed { + struct HashSet_1_T_Slot_List_1_Pathfinding_NavmeshClipper___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_List_1_Pathfinding_NavmeshClipper_ fields; +}; + +struct __declspec(align(8)) HashSet_1_List_1_Pathfinding_NavmeshClipper___Fields { + struct Int32__Array *_buckets; + struct HashSet_1_T_Slot_List_1_Pathfinding_NavmeshClipper___Array *_slots; + int32_t _count; + int32_t _lastIndex; + int32_t _freeList; + struct IEqualityComparer_1_List_1_Pathfinding_NavmeshClipper_ *_comparer; + int32_t _version; + struct SerializationInfo *_siInfo; +}; + +struct HashSet_1_List_1_Pathfinding_NavmeshClipper_ { + struct HashSet_1_List_1_Pathfinding_NavmeshClipper___Class *klass; + MonitorData *monitor; + struct HashSet_1_List_1_Pathfinding_NavmeshClipper___Fields fields; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_NavmeshClipper___Array { + struct HashSet_1_T_Slot_List_1_Pathfinding_NavmeshClipper___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct HashSet_1_T_Slot_List_1_Pathfinding_NavmeshClipper_ vector[32]; +}; + +struct IEqualityComparer_1_List_1_Pathfinding_NavmeshClipper_ { + struct IEqualityComparer_1_List_1_Pathfinding_NavmeshClipper___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_List_1_Pathfinding_NavmeshClipper_ { + struct IEnumerable_1_List_1_Pathfinding_NavmeshClipper___Class *klass; + MonitorData *monitor; +}; + +struct List_1_Pathfinding_NavmeshClipper___Array__VTable { +}; + +struct List_1_Pathfinding_NavmeshClipper___Array__StaticFields { +}; + +struct List_1_Pathfinding_NavmeshClipper___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Pathfinding_NavmeshClipper___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Pathfinding_NavmeshClipper___Array__VTable vtable; +}; + +struct IEnumerator_1_List_1_Pathfinding_NavmeshClipper___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_List_1_Pathfinding_NavmeshClipper___StaticFields { +}; + +struct IEnumerator_1_List_1_Pathfinding_NavmeshClipper___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_List_1_Pathfinding_NavmeshClipper___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_List_1_Pathfinding_NavmeshClipper___VTable vtable; +}; + +struct List_1_List_1_Pathfinding_NavmeshClipper___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_List_1_Pathfinding_NavmeshClipper___StaticFields { + struct List_1_Pathfinding_NavmeshClipper___Array *s_emptyArray; +}; + +struct List_1_List_1_Pathfinding_NavmeshClipper___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_List_1_Pathfinding_NavmeshClipper___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_List_1_Pathfinding_NavmeshClipper___VTable vtable; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_NavmeshClipper___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_NavmeshClipper___StaticFields { +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_NavmeshClipper___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_T_Slot_List_1_Pathfinding_NavmeshClipper___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_T_Slot_List_1_Pathfinding_NavmeshClipper___VTable vtable; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_NavmeshClipper___Array__VTable { +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_NavmeshClipper___Array__StaticFields { +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_NavmeshClipper___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_T_Slot_List_1_Pathfinding_NavmeshClipper___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_T_Slot_List_1_Pathfinding_NavmeshClipper___Array__VTable vtable; +}; + +struct IEqualityComparer_1_List_1_Pathfinding_NavmeshClipper___VTable { + VirtualInvokeData Equals; + VirtualInvokeData GetHashCode; +}; + +struct IEqualityComparer_1_List_1_Pathfinding_NavmeshClipper___StaticFields { +}; + +struct IEqualityComparer_1_List_1_Pathfinding_NavmeshClipper___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEqualityComparer_1_List_1_Pathfinding_NavmeshClipper___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEqualityComparer_1_List_1_Pathfinding_NavmeshClipper___VTable vtable; +}; + +struct IEnumerable_1_List_1_Pathfinding_NavmeshClipper___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_List_1_Pathfinding_NavmeshClipper___StaticFields { +}; + +struct IEnumerable_1_List_1_Pathfinding_NavmeshClipper___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_List_1_Pathfinding_NavmeshClipper___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_List_1_Pathfinding_NavmeshClipper___VTable vtable; +}; + +struct HashSet_1_List_1_Pathfinding_NavmeshClipper___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_T__Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData Add; + VirtualInvokeData UnionWith; + VirtualInvokeData IntersectWith; + VirtualInvokeData ExceptWith; + VirtualInvokeData SymmetricExceptWith; + VirtualInvokeData IsSubsetOf; + VirtualInvokeData IsSupersetOf; + VirtualInvokeData IsProperSupersetOf; + VirtualInvokeData IsProperSubsetOf; + VirtualInvokeData Overlaps; + VirtualInvokeData SetEquals; + VirtualInvokeData get_Count_1; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct HashSet_1_List_1_Pathfinding_NavmeshClipper___StaticFields { +}; + +struct HashSet_1_List_1_Pathfinding_NavmeshClipper___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_List_1_Pathfinding_NavmeshClipper___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_List_1_Pathfinding_NavmeshClipper___VTable vtable; +}; + +struct ListPool_1_Pathfinding_NavmeshClipper___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ListPool_1_Pathfinding_NavmeshClipper___StaticFields { + struct List_1_List_1_Pathfinding_NavmeshClipper_ *pool; + struct List_1_List_1_Pathfinding_NavmeshClipper_ *largePool; + struct HashSet_1_List_1_Pathfinding_NavmeshClipper_ *inPool; +}; + +struct ListPool_1_Pathfinding_NavmeshClipper___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ListPool_1_Pathfinding_NavmeshClipper___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ListPool_1_Pathfinding_NavmeshClipper___VTable vtable; +}; + +struct List_1_Pathfinding_NavmeshClipper__1__VTable { +}; + +struct List_1_Pathfinding_NavmeshClipper__1__StaticFields { +}; + +struct List_1_Pathfinding_NavmeshClipper__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Pathfinding_NavmeshClipper__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Pathfinding_NavmeshClipper__1__VTable vtable; +}; + +struct List_1_List_1_UnityEngine_Vector3__1__VTable { +}; + +struct List_1_List_1_UnityEngine_Vector3__1__StaticFields { +}; + +struct List_1_List_1_UnityEngine_Vector3__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_List_1_UnityEngine_Vector3__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_List_1_UnityEngine_Vector3__1__VTable vtable; +}; + +struct ListPool_1_System_Collections_Generic_List_1_ { + struct ListPool_1_System_Collections_Generic_List_1___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) List_1_List_1_List_1_UnityEngine_Vector3___Fields { + struct List_1_List_1_UnityEngine_Vector3___Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_List_1_List_1_UnityEngine_Vector3_ { + struct List_1_List_1_List_1_UnityEngine_Vector3___Class *klass; + MonitorData *monitor; + struct List_1_List_1_List_1_UnityEngine_Vector3___Fields fields; +}; + +struct List_1_List_1_UnityEngine_Vector3___Array { + struct List_1_List_1_UnityEngine_Vector3___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct List_1_List_1_UnityEngine_Vector3_ *vector[32]; +}; + +struct IEnumerator_1_List_1_List_1_UnityEngine_Vector3_ { + struct IEnumerator_1_List_1_List_1_UnityEngine_Vector3___Class *klass; + MonitorData *monitor; +}; + +struct HashSet_1_T_Slot_List_1_List_1_UnityEngine_Vector3_ { + int32_t hashCode; + int32_t next; + struct List_1_List_1_UnityEngine_Vector3_ *value; +}; + +struct HashSet_1_T_Slot_List_1_List_1_UnityEngine_Vector3___Boxed { + struct HashSet_1_T_Slot_List_1_List_1_UnityEngine_Vector3___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_List_1_List_1_UnityEngine_Vector3_ fields; +}; + +struct __declspec(align(8)) HashSet_1_List_1_List_1_UnityEngine_Vector3___Fields { + struct Int32__Array *_buckets; + struct HashSet_1_T_Slot_List_1_List_1_UnityEngine_Vector3___Array *_slots; + int32_t _count; + int32_t _lastIndex; + int32_t _freeList; + struct IEqualityComparer_1_List_1_List_1_UnityEngine_Vector3_ *_comparer; + int32_t _version; + struct SerializationInfo *_siInfo; +}; + +struct HashSet_1_List_1_List_1_UnityEngine_Vector3_ { + struct HashSet_1_List_1_List_1_UnityEngine_Vector3___Class *klass; + MonitorData *monitor; + struct HashSet_1_List_1_List_1_UnityEngine_Vector3___Fields fields; +}; + +struct HashSet_1_T_Slot_List_1_List_1_UnityEngine_Vector3___Array { + struct HashSet_1_T_Slot_List_1_List_1_UnityEngine_Vector3___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct HashSet_1_T_Slot_List_1_List_1_UnityEngine_Vector3_ vector[32]; +}; + +struct IEqualityComparer_1_List_1_List_1_UnityEngine_Vector3_ { + struct IEqualityComparer_1_List_1_List_1_UnityEngine_Vector3___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_List_1_List_1_UnityEngine_Vector3_ { + struct IEnumerable_1_List_1_List_1_UnityEngine_Vector3___Class *klass; + MonitorData *monitor; +}; + +struct List_1_List_1_UnityEngine_Vector3___Array__VTable { +}; + +struct List_1_List_1_UnityEngine_Vector3___Array__StaticFields { +}; + +struct List_1_List_1_UnityEngine_Vector3___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_List_1_UnityEngine_Vector3___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_List_1_UnityEngine_Vector3___Array__VTable vtable; +}; + +struct IEnumerator_1_List_1_List_1_UnityEngine_Vector3___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_List_1_List_1_UnityEngine_Vector3___StaticFields { +}; + +struct IEnumerator_1_List_1_List_1_UnityEngine_Vector3___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_List_1_List_1_UnityEngine_Vector3___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_List_1_List_1_UnityEngine_Vector3___VTable vtable; +}; + +struct List_1_List_1_List_1_UnityEngine_Vector3___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_List_1_List_1_UnityEngine_Vector3___StaticFields { + struct List_1_List_1_UnityEngine_Vector3___Array *s_emptyArray; +}; + +struct List_1_List_1_List_1_UnityEngine_Vector3___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_List_1_List_1_UnityEngine_Vector3___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_List_1_List_1_UnityEngine_Vector3___VTable vtable; +}; + +struct HashSet_1_T_Slot_List_1_List_1_UnityEngine_Vector3___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct HashSet_1_T_Slot_List_1_List_1_UnityEngine_Vector3___StaticFields { +}; + +struct HashSet_1_T_Slot_List_1_List_1_UnityEngine_Vector3___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_T_Slot_List_1_List_1_UnityEngine_Vector3___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_T_Slot_List_1_List_1_UnityEngine_Vector3___VTable vtable; +}; + +struct HashSet_1_T_Slot_List_1_List_1_UnityEngine_Vector3___Array__VTable { +}; + +struct HashSet_1_T_Slot_List_1_List_1_UnityEngine_Vector3___Array__StaticFields { +}; + +struct HashSet_1_T_Slot_List_1_List_1_UnityEngine_Vector3___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_T_Slot_List_1_List_1_UnityEngine_Vector3___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_T_Slot_List_1_List_1_UnityEngine_Vector3___Array__VTable vtable; +}; + +struct IEqualityComparer_1_List_1_List_1_UnityEngine_Vector3___VTable { + VirtualInvokeData Equals; + VirtualInvokeData GetHashCode; +}; + +struct IEqualityComparer_1_List_1_List_1_UnityEngine_Vector3___StaticFields { +}; + +struct IEqualityComparer_1_List_1_List_1_UnityEngine_Vector3___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEqualityComparer_1_List_1_List_1_UnityEngine_Vector3___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEqualityComparer_1_List_1_List_1_UnityEngine_Vector3___VTable vtable; +}; + +struct IEnumerable_1_List_1_List_1_UnityEngine_Vector3___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_List_1_List_1_UnityEngine_Vector3___StaticFields { +}; + +struct IEnumerable_1_List_1_List_1_UnityEngine_Vector3___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_List_1_List_1_UnityEngine_Vector3___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_List_1_List_1_UnityEngine_Vector3___VTable vtable; +}; + +struct HashSet_1_List_1_List_1_UnityEngine_Vector3___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_T__Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData Add; + VirtualInvokeData UnionWith; + VirtualInvokeData IntersectWith; + VirtualInvokeData ExceptWith; + VirtualInvokeData SymmetricExceptWith; + VirtualInvokeData IsSubsetOf; + VirtualInvokeData IsSupersetOf; + VirtualInvokeData IsProperSupersetOf; + VirtualInvokeData IsProperSubsetOf; + VirtualInvokeData Overlaps; + VirtualInvokeData SetEquals; + VirtualInvokeData get_Count_1; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct HashSet_1_List_1_List_1_UnityEngine_Vector3___StaticFields { +}; + +struct HashSet_1_List_1_List_1_UnityEngine_Vector3___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_List_1_List_1_UnityEngine_Vector3___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_List_1_List_1_UnityEngine_Vector3___VTable vtable; +}; + +struct ListPool_1_System_Collections_Generic_List_1___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ListPool_1_System_Collections_Generic_List_1___StaticFields { + struct List_1_List_1_List_1_UnityEngine_Vector3_ *pool; + struct List_1_List_1_List_1_UnityEngine_Vector3_ *largePool; + struct HashSet_1_List_1_List_1_UnityEngine_Vector3_ *inPool; +}; + +struct ListPool_1_System_Collections_Generic_List_1___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ListPool_1_System_Collections_Generic_List_1___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ListPool_1_System_Collections_Generic_List_1___VTable vtable; +}; + +struct ArrayPool_1_Pathfinding_Int3_ { + struct ArrayPool_1_Pathfinding_Int3___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) Stack_1_Pathfinding_Int3___Fields { + struct Int3__Array__Array *_array; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct Stack_1_Pathfinding_Int3_ { + struct Stack_1_Pathfinding_Int3___Class *klass; + MonitorData *monitor; + struct Stack_1_Pathfinding_Int3___Fields fields; +}; + +struct Int3__Array__Array { + struct Int3__Array__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Int3__Array *vector[32]; +}; + +struct IEnumerator_1_Pathfinding_Int3__1 { + struct IEnumerator_1_Pathfinding_Int3__1__Class *klass; + MonitorData *monitor; +}; + +struct Stack_1_Pathfinding_Int3___Array { + struct Stack_1_Pathfinding_Int3___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Stack_1_Pathfinding_Int3_ *vector[32]; +}; + +struct Int3__Array__Array__VTable { +}; + +struct Int3__Array__Array__StaticFields { +}; + +struct Int3__Array__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Int3__Array__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Int3__Array__Array__VTable vtable; +}; + +struct IEnumerator_1_Pathfinding_Int3__1__VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_Pathfinding_Int3__1__StaticFields { +}; + +struct IEnumerator_1_Pathfinding_Int3__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_Pathfinding_Int3__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_Pathfinding_Int3__1__VTable vtable; +}; + +struct Stack_1_Pathfinding_Int3___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_1; +}; + +struct Stack_1_Pathfinding_Int3___StaticFields { +}; + +struct Stack_1_Pathfinding_Int3___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Stack_1_Pathfinding_Int3___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Stack_1_Pathfinding_Int3___VTable vtable; +}; + +struct Stack_1_Pathfinding_Int3___Array__VTable { +}; + +struct Stack_1_Pathfinding_Int3___Array__StaticFields { +}; + +struct Stack_1_Pathfinding_Int3___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Stack_1_Pathfinding_Int3___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Stack_1_Pathfinding_Int3___Array__VTable vtable; +}; + +struct ArrayPool_1_Pathfinding_Int3___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ArrayPool_1_Pathfinding_Int3___StaticFields { + struct Stack_1_Pathfinding_Int3___Array *pool; + struct Stack_1_Pathfinding_Int3___Array *exactPool; +}; + +struct ArrayPool_1_Pathfinding_Int3___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ArrayPool_1_Pathfinding_Int3___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ArrayPool_1_Pathfinding_Int3___VTable vtable; +}; + +struct ListPool_1_Pathfinding_Funnel_PathPart_ { + struct ListPool_1_Pathfinding_Funnel_PathPart___Class *klass; + MonitorData *monitor; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_Funnel_PathPart_ { + int32_t hashCode; + int32_t next; + struct List_1_Pathfinding_Funnel_PathPart_ *value; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_Funnel_PathPart___Boxed { + struct HashSet_1_T_Slot_List_1_Pathfinding_Funnel_PathPart___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_List_1_Pathfinding_Funnel_PathPart_ fields; +}; + +struct __declspec(align(8)) HashSet_1_List_1_Pathfinding_Funnel_PathPart___Fields { + struct Int32__Array *_buckets; + struct HashSet_1_T_Slot_List_1_Pathfinding_Funnel_PathPart___Array *_slots; + int32_t _count; + int32_t _lastIndex; + int32_t _freeList; + struct IEqualityComparer_1_List_1_Pathfinding_Funnel_PathPart_ *_comparer; + int32_t _version; + struct SerializationInfo *_siInfo; +}; + +struct HashSet_1_List_1_Pathfinding_Funnel_PathPart_ { + struct HashSet_1_List_1_Pathfinding_Funnel_PathPart___Class *klass; + MonitorData *monitor; + struct HashSet_1_List_1_Pathfinding_Funnel_PathPart___Fields fields; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_Funnel_PathPart___Array { + struct HashSet_1_T_Slot_List_1_Pathfinding_Funnel_PathPart___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct HashSet_1_T_Slot_List_1_Pathfinding_Funnel_PathPart_ vector[32]; +}; + +struct IEqualityComparer_1_List_1_Pathfinding_Funnel_PathPart_ { + struct IEqualityComparer_1_List_1_Pathfinding_Funnel_PathPart___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_List_1_Pathfinding_Funnel_PathPart_ { + struct IEnumerable_1_List_1_Pathfinding_Funnel_PathPart___Class *klass; + MonitorData *monitor; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_Funnel_PathPart___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_Funnel_PathPart___StaticFields { +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_Funnel_PathPart___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_T_Slot_List_1_Pathfinding_Funnel_PathPart___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_T_Slot_List_1_Pathfinding_Funnel_PathPart___VTable vtable; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_Funnel_PathPart___Array__VTable { +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_Funnel_PathPart___Array__StaticFields { +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_Funnel_PathPart___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_T_Slot_List_1_Pathfinding_Funnel_PathPart___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_T_Slot_List_1_Pathfinding_Funnel_PathPart___Array__VTable vtable; +}; + +struct IEqualityComparer_1_List_1_Pathfinding_Funnel_PathPart___VTable { + VirtualInvokeData Equals; + VirtualInvokeData GetHashCode; +}; + +struct IEqualityComparer_1_List_1_Pathfinding_Funnel_PathPart___StaticFields { +}; + +struct IEqualityComparer_1_List_1_Pathfinding_Funnel_PathPart___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEqualityComparer_1_List_1_Pathfinding_Funnel_PathPart___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEqualityComparer_1_List_1_Pathfinding_Funnel_PathPart___VTable vtable; +}; + +struct IEnumerable_1_List_1_Pathfinding_Funnel_PathPart___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_List_1_Pathfinding_Funnel_PathPart___StaticFields { +}; + +struct IEnumerable_1_List_1_Pathfinding_Funnel_PathPart___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_List_1_Pathfinding_Funnel_PathPart___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_List_1_Pathfinding_Funnel_PathPart___VTable vtable; +}; + +struct HashSet_1_List_1_Pathfinding_Funnel_PathPart___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_T__Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData Add; + VirtualInvokeData UnionWith; + VirtualInvokeData IntersectWith; + VirtualInvokeData ExceptWith; + VirtualInvokeData SymmetricExceptWith; + VirtualInvokeData IsSubsetOf; + VirtualInvokeData IsSupersetOf; + VirtualInvokeData IsProperSupersetOf; + VirtualInvokeData IsProperSubsetOf; + VirtualInvokeData Overlaps; + VirtualInvokeData SetEquals; + VirtualInvokeData get_Count_1; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct HashSet_1_List_1_Pathfinding_Funnel_PathPart___StaticFields { +}; + +struct HashSet_1_List_1_Pathfinding_Funnel_PathPart___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_List_1_Pathfinding_Funnel_PathPart___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_List_1_Pathfinding_Funnel_PathPart___VTable vtable; +}; + +struct ListPool_1_Pathfinding_Funnel_PathPart___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ListPool_1_Pathfinding_Funnel_PathPart___StaticFields { + struct List_1_List_1_Pathfinding_Funnel_PathPart_ *pool; + struct List_1_List_1_Pathfinding_Funnel_PathPart_ *largePool; + struct HashSet_1_List_1_Pathfinding_Funnel_PathPart_ *inPool; +}; + +struct ListPool_1_Pathfinding_Funnel_PathPart___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ListPool_1_Pathfinding_Funnel_PathPart___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ListPool_1_Pathfinding_Funnel_PathPart___VTable vtable; +}; + +struct Queue_1_Pathfinding_Int3__1__VTable { +}; + +struct Queue_1_Pathfinding_Int3__1__StaticFields { +}; + +struct Queue_1_Pathfinding_Int3__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Queue_1_Pathfinding_Int3__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Queue_1_Pathfinding_Int3__1__VTable vtable; +}; + +struct ArrayPool_1_System_Boolean_ { + struct ArrayPool_1_System_Boolean___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) Stack_1_System_Boolean___Fields { + struct Boolean__Array__Array *_array; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct Stack_1_System_Boolean_ { + struct Stack_1_System_Boolean___Class *klass; + MonitorData *monitor; + struct Stack_1_System_Boolean___Fields fields; +}; + +struct Boolean__Array__Array { + struct Boolean__Array__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Boolean__Array *vector[32]; +}; + +struct IEnumerator_1_System_Boolean__1 { + struct IEnumerator_1_System_Boolean__1__Class *klass; + MonitorData *monitor; +}; + +struct Stack_1_System_Boolean___Array { + struct Stack_1_System_Boolean___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Stack_1_System_Boolean_ *vector[32]; +}; + +struct Boolean__Array__Array__VTable { +}; + +struct Boolean__Array__Array__StaticFields { +}; + +struct Boolean__Array__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Boolean__Array__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Boolean__Array__Array__VTable vtable; +}; + +struct IEnumerator_1_System_Boolean__1__VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_System_Boolean__1__StaticFields { +}; + +struct IEnumerator_1_System_Boolean__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_System_Boolean__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_System_Boolean__1__VTable vtable; +}; + +struct Stack_1_System_Boolean___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_1; +}; + +struct Stack_1_System_Boolean___StaticFields { +}; + +struct Stack_1_System_Boolean___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Stack_1_System_Boolean___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Stack_1_System_Boolean___VTable vtable; +}; + +struct Stack_1_System_Boolean___Array__VTable { +}; + +struct Stack_1_System_Boolean___Array__StaticFields { +}; + +struct Stack_1_System_Boolean___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Stack_1_System_Boolean___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Stack_1_System_Boolean___Array__VTable vtable; +}; + +struct ArrayPool_1_System_Boolean___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ArrayPool_1_System_Boolean___StaticFields { + struct Stack_1_System_Boolean___Array *pool; + struct Stack_1_System_Boolean___Array *exactPool; +}; + +struct ArrayPool_1_System_Boolean___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ArrayPool_1_System_Boolean___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ArrayPool_1_System_Boolean___VTable vtable; +}; + +struct ArrayPool_1_System_UInt16_ { + struct ArrayPool_1_System_UInt16___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) Stack_1_System_UInt16___Fields { + struct UInt16__Array__Array *_array; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct Stack_1_System_UInt16_ { + struct Stack_1_System_UInt16___Class *klass; + MonitorData *monitor; + struct Stack_1_System_UInt16___Fields fields; +}; + +struct UInt16__Array__Array { + struct UInt16__Array__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct UInt16__Array *vector[32]; +}; + +struct IEnumerator_1_System_UInt16__1 { + struct IEnumerator_1_System_UInt16__1__Class *klass; + MonitorData *monitor; +}; + +struct Stack_1_System_UInt16___Array { + struct Stack_1_System_UInt16___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Stack_1_System_UInt16_ *vector[32]; +}; + +struct UInt16__Array__Array__VTable { +}; + +struct UInt16__Array__Array__StaticFields { +}; + +struct UInt16__Array__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UInt16__Array__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UInt16__Array__Array__VTable vtable; +}; + +struct IEnumerator_1_System_UInt16__1__VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_System_UInt16__1__StaticFields { +}; + +struct IEnumerator_1_System_UInt16__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_System_UInt16__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_System_UInt16__1__VTable vtable; +}; + +struct Stack_1_System_UInt16___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_1; +}; + +struct Stack_1_System_UInt16___StaticFields { +}; + +struct Stack_1_System_UInt16___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Stack_1_System_UInt16___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Stack_1_System_UInt16___VTable vtable; +}; + +struct Stack_1_System_UInt16___Array__VTable { +}; + +struct Stack_1_System_UInt16___Array__StaticFields { +}; + +struct Stack_1_System_UInt16___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Stack_1_System_UInt16___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Stack_1_System_UInt16___Array__VTable vtable; +}; + +struct ArrayPool_1_System_UInt16___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ArrayPool_1_System_UInt16___StaticFields { + struct Stack_1_System_UInt16___Array *pool; + struct Stack_1_System_UInt16___Array *exactPool; +}; + +struct ArrayPool_1_System_UInt16___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ArrayPool_1_System_UInt16___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ArrayPool_1_System_UInt16___VTable vtable; +}; + +struct List_1_T_Enumerator_Coffee_UIEffects_UIShadow_ { + struct List_1_Coffee_UIEffects_UIShadow_ *_list; + int32_t _index; + int32_t _version; + struct UIShadow *_current; +}; + +struct List_1_T_Enumerator_Coffee_UIEffects_UIShadow___Boxed { + struct List_1_T_Enumerator_Coffee_UIEffects_UIShadow___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_Coffee_UIEffects_UIShadow_ fields; +}; + +struct List_1_T_Enumerator_Coffee_UIEffects_UIShadow___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_Coffee_UIEffects_UIShadow___StaticFields { +}; + +struct List_1_T_Enumerator_Coffee_UIEffects_UIShadow___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_Coffee_UIEffects_UIShadow___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_Coffee_UIEffects_UIShadow___VTable vtable; +}; + +#if defined(_CPLUSPLUS_) +enum class UIEffect_BlurEx__Enum : int32_t { + None = 0x00000000, + Ex = 0x00000001, +}; + +#else +enum UIEffect_BlurEx__Enum { + UIEffect_BlurEx__Enum_None = 0x00000000, + UIEffect_BlurEx__Enum_Ex = 0x00000001, +}; + +#endif +struct UIEffect_BlurEx__Enum__Boxed { + struct UIEffect_BlurEx__Enum__Class *klass; + MonitorData *monitor; + #if defined(_CPLUSPLUS_) + UIEffect_BlurEx__Enum value; + #else + int32_t value; + #endif +}; + +struct UIEffect_BlurEx__Enum__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData CompareTo; + VirtualInvokeData ToString_1; + VirtualInvokeData GetTypeCode; + VirtualInvokeData System_IConvertible_ToBoolean; + VirtualInvokeData System_IConvertible_ToChar; + VirtualInvokeData System_IConvertible_ToSByte; + VirtualInvokeData System_IConvertible_ToByte; + VirtualInvokeData System_IConvertible_ToInt16; + VirtualInvokeData System_IConvertible_ToUInt16; + VirtualInvokeData System_IConvertible_ToInt32; + VirtualInvokeData System_IConvertible_ToUInt32; + VirtualInvokeData System_IConvertible_ToInt64; + VirtualInvokeData System_IConvertible_ToUInt64; + VirtualInvokeData System_IConvertible_ToSingle; + VirtualInvokeData System_IConvertible_ToDouble; + VirtualInvokeData System_IConvertible_ToDecimal; + VirtualInvokeData System_IConvertible_ToDateTime; + VirtualInvokeData ToString_2; + VirtualInvokeData System_IConvertible_ToType; +}; + +struct UIEffect_BlurEx__Enum__StaticFields { +}; + +struct UIEffect_BlurEx__Enum__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UIEffect_BlurEx__Enum__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UIEffect_BlurEx__Enum__VTable vtable; +}; + +struct UnityReferenceHelper__Array { + struct UnityReferenceHelper__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct UnityReferenceHelper *vector[32]; +}; + +struct UnityReferenceHelper__Array__VTable { +}; + +struct UnityReferenceHelper__Array__StaticFields { +}; + +struct UnityReferenceHelper__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UnityReferenceHelper__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UnityReferenceHelper__Array__VTable vtable; +}; + +struct Console { + struct Console__Class *klass; + MonitorData *monitor; +}; + +struct Console__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Console__StaticFields { + struct TextWriter *stdout_1; + struct TextWriter *stderr_1; + struct TextReader *stdin_1; + bool IsRunningOnAndroid; + struct Encoding *inputEncoding; + struct Encoding *outputEncoding; + struct ConsoleCancelEventHandler *cancel_event; +}; + +struct Console__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Console__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Console__VTable vtable; +}; + +struct EffectAreaExtensions { + struct EffectAreaExtensions__Class *klass; + MonitorData *monitor; +}; + +struct EffectAreaExtensions__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct EffectAreaExtensions__StaticFields { + struct Rect rectForCharacter; + struct Vector2__Array *splitedCharacterPosition; +}; + +struct EffectAreaExtensions__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EffectAreaExtensions__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EffectAreaExtensions__VTable vtable; +}; + +struct ListPool_1_System_Single_ { + struct ListPool_1_System_Single___Class *klass; + MonitorData *monitor; +}; + +struct HashSet_1_T_Slot_List_1_System_Single_ { + int32_t hashCode; + int32_t next; + struct List_1_System_Single_ *value; +}; + +struct HashSet_1_T_Slot_List_1_System_Single___Boxed { + struct HashSet_1_T_Slot_List_1_System_Single___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_List_1_System_Single_ fields; +}; + +struct __declspec(align(8)) HashSet_1_List_1_System_Single___Fields { + struct Int32__Array *_buckets; + struct HashSet_1_T_Slot_List_1_System_Single___Array *_slots; + int32_t _count; + int32_t _lastIndex; + int32_t _freeList; + struct IEqualityComparer_1_List_1_System_Single_ *_comparer; + int32_t _version; + struct SerializationInfo *_siInfo; +}; + +struct HashSet_1_List_1_System_Single_ { + struct HashSet_1_List_1_System_Single___Class *klass; + MonitorData *monitor; + struct HashSet_1_List_1_System_Single___Fields fields; +}; + +struct HashSet_1_T_Slot_List_1_System_Single___Array { + struct HashSet_1_T_Slot_List_1_System_Single___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct HashSet_1_T_Slot_List_1_System_Single_ vector[32]; +}; + +struct IEqualityComparer_1_List_1_System_Single_ { + struct IEqualityComparer_1_List_1_System_Single___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_List_1_System_Single_ { + struct IEnumerable_1_List_1_System_Single___Class *klass; + MonitorData *monitor; +}; + +struct HashSet_1_T_Slot_List_1_System_Single___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct HashSet_1_T_Slot_List_1_System_Single___StaticFields { +}; + +struct HashSet_1_T_Slot_List_1_System_Single___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_T_Slot_List_1_System_Single___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_T_Slot_List_1_System_Single___VTable vtable; +}; + +struct HashSet_1_T_Slot_List_1_System_Single___Array__VTable { +}; + +struct HashSet_1_T_Slot_List_1_System_Single___Array__StaticFields { +}; + +struct HashSet_1_T_Slot_List_1_System_Single___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_T_Slot_List_1_System_Single___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_T_Slot_List_1_System_Single___Array__VTable vtable; +}; + +struct IEqualityComparer_1_List_1_System_Single___VTable { + VirtualInvokeData Equals; + VirtualInvokeData GetHashCode; +}; + +struct IEqualityComparer_1_List_1_System_Single___StaticFields { +}; + +struct IEqualityComparer_1_List_1_System_Single___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEqualityComparer_1_List_1_System_Single___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEqualityComparer_1_List_1_System_Single___VTable vtable; +}; + +struct IEnumerable_1_List_1_System_Single___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_List_1_System_Single___StaticFields { +}; + +struct IEnumerable_1_List_1_System_Single___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_List_1_System_Single___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_List_1_System_Single___VTable vtable; +}; + +struct HashSet_1_List_1_System_Single___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_T__Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData Add; + VirtualInvokeData UnionWith; + VirtualInvokeData IntersectWith; + VirtualInvokeData ExceptWith; + VirtualInvokeData SymmetricExceptWith; + VirtualInvokeData IsSubsetOf; + VirtualInvokeData IsSupersetOf; + VirtualInvokeData IsProperSupersetOf; + VirtualInvokeData IsProperSubsetOf; + VirtualInvokeData Overlaps; + VirtualInvokeData SetEquals; + VirtualInvokeData get_Count_1; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct HashSet_1_List_1_System_Single___StaticFields { +}; + +struct HashSet_1_List_1_System_Single___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_List_1_System_Single___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_List_1_System_Single___VTable vtable; +}; + +struct ListPool_1_System_Single___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ListPool_1_System_Single___StaticFields { + struct List_1_List_1_System_Single_ *pool; + struct List_1_List_1_System_Single_ *largePool; + struct HashSet_1_List_1_System_Single_ *inPool; +}; + +struct ListPool_1_System_Single___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ListPool_1_System_Single___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ListPool_1_System_Single___VTable vtable; +}; + +struct PathUtilities { + struct PathUtilities__Class *klass; + MonitorData *monitor; +}; + +struct PathUtilities__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct PathUtilities__StaticFields { + struct Queue_1_Pathfinding_GraphNode_ *BFSQueue; + struct Dictionary_2_Pathfinding_GraphNode_System_Int32_ *BFSMap; +}; + +struct PathUtilities__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PathUtilities__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PathUtilities__VTable vtable; +}; + +struct StackPool_1_Pathfinding_GraphNode_ { + struct StackPool_1_Pathfinding_GraphNode___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) List_1_Stack_1_Pathfinding_GraphNode___Fields { + struct Stack_1_Pathfinding_GraphNode__1__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Stack_1_Pathfinding_GraphNode_ { + struct List_1_Stack_1_Pathfinding_GraphNode___Class *klass; + MonitorData *monitor; + struct List_1_Stack_1_Pathfinding_GraphNode___Fields fields; +}; + +struct Stack_1_Pathfinding_GraphNode__1__Array { + struct Stack_1_Pathfinding_GraphNode__1__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Stack_1_Pathfinding_GraphNode__1 *vector[32]; +}; + +struct IEnumerator_1_Stack_1_Pathfinding_GraphNode_ { + struct IEnumerator_1_Stack_1_Pathfinding_GraphNode___Class *klass; + MonitorData *monitor; +}; + +struct Stack_1_Pathfinding_GraphNode__1__Array__VTable { +}; + +struct Stack_1_Pathfinding_GraphNode__1__Array__StaticFields { +}; + +struct Stack_1_Pathfinding_GraphNode__1__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Stack_1_Pathfinding_GraphNode__1__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Stack_1_Pathfinding_GraphNode__1__Array__VTable vtable; +}; + +struct IEnumerator_1_Stack_1_Pathfinding_GraphNode___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_Stack_1_Pathfinding_GraphNode___StaticFields { +}; + +struct IEnumerator_1_Stack_1_Pathfinding_GraphNode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_Stack_1_Pathfinding_GraphNode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_Stack_1_Pathfinding_GraphNode___VTable vtable; +}; + +struct List_1_Stack_1_Pathfinding_GraphNode___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_Stack_1_Pathfinding_GraphNode___StaticFields { + struct Stack_1_Pathfinding_GraphNode__1__Array *s_emptyArray; +}; + +struct List_1_Stack_1_Pathfinding_GraphNode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Stack_1_Pathfinding_GraphNode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Stack_1_Pathfinding_GraphNode___VTable vtable; +}; + +struct StackPool_1_Pathfinding_GraphNode___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct StackPool_1_Pathfinding_GraphNode___StaticFields { + struct List_1_Stack_1_Pathfinding_GraphNode_ *pool; +}; + +struct StackPool_1_Pathfinding_GraphNode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StackPool_1_Pathfinding_GraphNode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StackPool_1_Pathfinding_GraphNode___VTable vtable; +}; + +struct List_1_T_Enumerator_Coffee_UIEffects_GraphicConnector_ { + struct List_1_Coffee_UIEffects_GraphicConnector_ *_list; + int32_t _index; + int32_t _version; + struct GraphicConnector *_current; +}; + +struct List_1_T_Enumerator_Coffee_UIEffects_GraphicConnector___Boxed { + struct List_1_T_Enumerator_Coffee_UIEffects_GraphicConnector___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_Coffee_UIEffects_GraphicConnector_ fields; +}; + +struct List_1_T_Enumerator_Coffee_UIEffects_GraphicConnector___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_Coffee_UIEffects_GraphicConnector___StaticFields { +}; + +struct List_1_T_Enumerator_Coffee_UIEffects_GraphicConnector___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_Coffee_UIEffects_GraphicConnector___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_Coffee_UIEffects_GraphicConnector___VTable vtable; +}; + +struct ArrayPool_1_UnityEngine_Vector2_ { + struct ArrayPool_1_UnityEngine_Vector2___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) Stack_1_UnityEngine_Vector2__1__Fields { + struct Vector2__Array__Array *_array; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct Stack_1_UnityEngine_Vector2__1 { + struct Stack_1_UnityEngine_Vector2__1__Class *klass; + MonitorData *monitor; + struct Stack_1_UnityEngine_Vector2__1__Fields fields; +}; + +struct Stack_1_UnityEngine_Vector2__1__Array { + struct Stack_1_UnityEngine_Vector2__1__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Stack_1_UnityEngine_Vector2__1 *vector[32]; +}; + +struct Stack_1_UnityEngine_Vector2__1__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_1; +}; + +struct Stack_1_UnityEngine_Vector2__1__StaticFields { +}; + +struct Stack_1_UnityEngine_Vector2__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Stack_1_UnityEngine_Vector2__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Stack_1_UnityEngine_Vector2__1__VTable vtable; +}; + +struct Stack_1_UnityEngine_Vector2__1__Array__VTable { +}; + +struct Stack_1_UnityEngine_Vector2__1__Array__StaticFields { +}; + +struct Stack_1_UnityEngine_Vector2__1__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Stack_1_UnityEngine_Vector2__1__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Stack_1_UnityEngine_Vector2__1__Array__VTable vtable; +}; + +struct ArrayPool_1_UnityEngine_Vector2___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ArrayPool_1_UnityEngine_Vector2___StaticFields { + struct Stack_1_UnityEngine_Vector2__1__Array *pool; + struct Stack_1_UnityEngine_Vector2__1__Array *exactPool; +}; + +struct ArrayPool_1_UnityEngine_Vector2___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ArrayPool_1_UnityEngine_Vector2___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ArrayPool_1_UnityEngine_Vector2___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_String_Pathfinding_AstarProfiler_ProfilePoint_ { + struct Dictionary_2_System_String_Pathfinding_AstarProfiler_ProfilePoint_ *_dictionary; + int32_t _version; + int32_t _index; + struct KeyValuePair_2_System_String_Pathfinding_AstarProfiler_ProfilePoint_ _current; + int32_t _getEnumeratorRetType; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_String_Pathfinding_AstarProfiler_ProfilePoint___Boxed { + struct Dictionary_2_TKey_TValue_Enumerator_System_String_Pathfinding_AstarProfiler_ProfilePoint___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Enumerator_System_String_Pathfinding_AstarProfiler_ProfilePoint_ fields; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_String_Pathfinding_AstarProfiler_ProfilePoint___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Key; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Value; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Entry; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_String_Pathfinding_AstarProfiler_ProfilePoint___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_String_Pathfinding_AstarProfiler_ProfilePoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Enumerator_System_String_Pathfinding_AstarProfiler_ProfilePoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Enumerator_System_String_Pathfinding_AstarProfiler_ProfilePoint___VTable vtable; +}; + +struct List_1_T_Enumerator_Coffee_UIEffects_UISyncEffect_ { + struct List_1_Coffee_UIEffects_UISyncEffect_ *_list; + int32_t _index; + int32_t _version; + struct UISyncEffect *_current; +}; + +struct List_1_T_Enumerator_Coffee_UIEffects_UISyncEffect___Boxed { + struct List_1_T_Enumerator_Coffee_UIEffects_UISyncEffect___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_Coffee_UIEffects_UISyncEffect_ fields; +}; + +struct List_1_T_Enumerator_Coffee_UIEffects_UISyncEffect___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_Coffee_UIEffects_UISyncEffect___StaticFields { +}; + +struct List_1_T_Enumerator_Coffee_UIEffects_UISyncEffect___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_Coffee_UIEffects_UISyncEffect___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_Coffee_UIEffects_UISyncEffect___VTable vtable; +}; + +struct ListPool_1_Pathfinding_SingleNodeBlocker_ { + struct ListPool_1_Pathfinding_SingleNodeBlocker___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) List_1_List_1_Pathfinding_SingleNodeBlocker___Fields { + struct List_1_Pathfinding_SingleNodeBlocker___Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_List_1_Pathfinding_SingleNodeBlocker_ { + struct List_1_List_1_Pathfinding_SingleNodeBlocker___Class *klass; + MonitorData *monitor; + struct List_1_List_1_Pathfinding_SingleNodeBlocker___Fields fields; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_SingleNodeBlocker_ { + int32_t hashCode; + int32_t next; + struct List_1_Pathfinding_SingleNodeBlocker_ *value; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_SingleNodeBlocker___Boxed { + struct HashSet_1_T_Slot_List_1_Pathfinding_SingleNodeBlocker___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_List_1_Pathfinding_SingleNodeBlocker_ fields; +}; + +struct __declspec(align(8)) HashSet_1_List_1_Pathfinding_SingleNodeBlocker___Fields { + struct Int32__Array *_buckets; + struct HashSet_1_T_Slot_List_1_Pathfinding_SingleNodeBlocker___Array *_slots; + int32_t _count; + int32_t _lastIndex; + int32_t _freeList; + struct IEqualityComparer_1_List_1_Pathfinding_SingleNodeBlocker_ *_comparer; + int32_t _version; + struct SerializationInfo *_siInfo; +}; + +struct HashSet_1_List_1_Pathfinding_SingleNodeBlocker_ { + struct HashSet_1_List_1_Pathfinding_SingleNodeBlocker___Class *klass; + MonitorData *monitor; + struct HashSet_1_List_1_Pathfinding_SingleNodeBlocker___Fields fields; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_SingleNodeBlocker___Array { + struct HashSet_1_T_Slot_List_1_Pathfinding_SingleNodeBlocker___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct HashSet_1_T_Slot_List_1_Pathfinding_SingleNodeBlocker_ vector[32]; +}; + +struct IEqualityComparer_1_List_1_Pathfinding_SingleNodeBlocker_ { + struct IEqualityComparer_1_List_1_Pathfinding_SingleNodeBlocker___Class *klass; + MonitorData *monitor; +}; + +struct List_1_List_1_Pathfinding_SingleNodeBlocker___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_List_1_Pathfinding_SingleNodeBlocker___StaticFields { + struct List_1_Pathfinding_SingleNodeBlocker___Array *s_emptyArray; +}; + +struct List_1_List_1_Pathfinding_SingleNodeBlocker___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_List_1_Pathfinding_SingleNodeBlocker___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_List_1_Pathfinding_SingleNodeBlocker___VTable vtable; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_SingleNodeBlocker___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_SingleNodeBlocker___StaticFields { +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_SingleNodeBlocker___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_T_Slot_List_1_Pathfinding_SingleNodeBlocker___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_T_Slot_List_1_Pathfinding_SingleNodeBlocker___VTable vtable; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_SingleNodeBlocker___Array__VTable { +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_SingleNodeBlocker___Array__StaticFields { +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_SingleNodeBlocker___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_T_Slot_List_1_Pathfinding_SingleNodeBlocker___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_T_Slot_List_1_Pathfinding_SingleNodeBlocker___Array__VTable vtable; +}; + +struct IEqualityComparer_1_List_1_Pathfinding_SingleNodeBlocker___VTable { + VirtualInvokeData Equals; + VirtualInvokeData GetHashCode; +}; + +struct IEqualityComparer_1_List_1_Pathfinding_SingleNodeBlocker___StaticFields { +}; + +struct IEqualityComparer_1_List_1_Pathfinding_SingleNodeBlocker___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEqualityComparer_1_List_1_Pathfinding_SingleNodeBlocker___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEqualityComparer_1_List_1_Pathfinding_SingleNodeBlocker___VTable vtable; +}; + +struct HashSet_1_List_1_Pathfinding_SingleNodeBlocker___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_T__Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData Add; + VirtualInvokeData UnionWith; + VirtualInvokeData IntersectWith; + VirtualInvokeData ExceptWith; + VirtualInvokeData SymmetricExceptWith; + VirtualInvokeData IsSubsetOf; + VirtualInvokeData IsSupersetOf; + VirtualInvokeData IsProperSupersetOf; + VirtualInvokeData IsProperSubsetOf; + VirtualInvokeData Overlaps; + VirtualInvokeData SetEquals; + VirtualInvokeData get_Count_1; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct HashSet_1_List_1_Pathfinding_SingleNodeBlocker___StaticFields { +}; + +struct HashSet_1_List_1_Pathfinding_SingleNodeBlocker___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_List_1_Pathfinding_SingleNodeBlocker___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_List_1_Pathfinding_SingleNodeBlocker___VTable vtable; +}; + +struct ListPool_1_Pathfinding_SingleNodeBlocker___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ListPool_1_Pathfinding_SingleNodeBlocker___StaticFields { + struct List_1_List_1_Pathfinding_SingleNodeBlocker_ *pool; + struct List_1_List_1_Pathfinding_SingleNodeBlocker_ *largePool; + struct HashSet_1_List_1_Pathfinding_SingleNodeBlocker_ *inPool; +}; + +struct ListPool_1_Pathfinding_SingleNodeBlocker___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ListPool_1_Pathfinding_SingleNodeBlocker___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ListPool_1_Pathfinding_SingleNodeBlocker___VTable vtable; +}; + +struct Slider__Array { + struct Slider__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Slider *vector[32]; +}; + +struct Slider__Array__VTable { +}; + +struct Slider__Array__StaticFields { +}; + +struct Slider__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Slider__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Slider__Array__VTable vtable; +}; + +struct Queue_1_System_Action__1__VTable { +}; + +struct Queue_1_System_Action__1__StaticFields { +}; + +struct Queue_1_System_Action__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Queue_1_System_Action__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Queue_1_System_Action__1__VTable vtable; +}; + +struct mspJDGgFPsjyYUezrhSNLlFRZhtj { + struct mspJDGgFPsjyYUezrhSNLlFRZhtj__Class *klass; + MonitorData *monitor; +}; + +struct mspJDGgFPsjyYUezrhSNLlFRZhtj__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct mspJDGgFPsjyYUezrhSNLlFRZhtj__StaticFields { + int32_t IwCrwUKHDrBgsnYyrqIjLQXjoUSq; + int32_t KByPCrlNtvTDxUZggIOsPMXKzebj; + struct Double__Array *PZhMznZQHtdLIcevfkwSEIviCstM; + int32_t sBePXjJPCtkCniTEmdmzbRNXTzOq; + double JiDmJvkAEVBgLNNfHuIbUZIkaLSA; + int32_t lDEgdFdoLlKOKPDGmAmhVdJkheRgA; +}; + +struct mspJDGgFPsjyYUezrhSNLlFRZhtj__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct mspJDGgFPsjyYUezrhSNLlFRZhtj__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct mspJDGgFPsjyYUezrhSNLlFRZhtj__VTable vtable; +}; + +struct IExportToJson { + struct IExportToJson__Class *klass; + MonitorData *monitor; +}; + +struct IExportToJson__VTable { + VirtualInvokeData WriteJson; +}; + +struct IExportToJson__StaticFields { +}; + +struct IExportToJson__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IExportToJson__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IExportToJson__VTable vtable; +}; + +struct JsonWriter { + struct JsonWriter__Class *klass; + MonitorData *monitor; +}; + +struct JsonWriter__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct JsonWriter__StaticFields { + struct Action_2_System_Text_StringBuilder_Object_ *DdKPWrEVwpaEgqQzEgeyhVMqNotw; +}; + +struct JsonWriter__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct JsonWriter__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct JsonWriter__VTable vtable; +}; + +struct Predicate_1_DynamicBone_ParticleTree___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Predicate_1_DynamicBone_ParticleTree_ { + struct Predicate_1_DynamicBone_ParticleTree___Class *klass; + MonitorData *monitor; + struct Predicate_1_DynamicBone_ParticleTree___Fields fields; +}; + +struct Predicate_1_DynamicBone_ParticleTree___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Predicate_1_DynamicBone_ParticleTree___StaticFields { +}; + +struct Predicate_1_DynamicBone_ParticleTree___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Predicate_1_DynamicBone_ParticleTree___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Predicate_1_DynamicBone_ParticleTree___VTable vtable; +}; + +struct IAddKeyValue_2_System_String_System_Object_ { + struct IAddKeyValue_2_System_String_System_Object___Class *klass; + MonitorData *monitor; +}; + +struct IAddKeyValue_2_System_String_System_Object___VTable { + VirtualInvokeData Add; +}; + +struct IAddKeyValue_2_System_String_System_Object___StaticFields { +}; + +struct IAddKeyValue_2_System_String_System_Object___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IAddKeyValue_2_System_String_System_Object___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IAddKeyValue_2_System_String_System_Object___VTable vtable; +}; + +struct IEnumerable_1_UnityEngine_Component_ { + struct IEnumerable_1_UnityEngine_Component___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_UnityEngine_Component___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_UnityEngine_Component___StaticFields { +}; + +struct IEnumerable_1_UnityEngine_Component___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_UnityEngine_Component___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_UnityEngine_Component___VTable vtable; +}; + +#if defined(_CPLUSPLUS_) +enum class RigidbodyInterpolation2D__Enum : int32_t { + None = 0x00000000, + Interpolate = 0x00000001, + Extrapolate = 0x00000002, +}; + +#else +enum RigidbodyInterpolation2D__Enum { + RigidbodyInterpolation2D__Enum_None = 0x00000000, + RigidbodyInterpolation2D__Enum_Interpolate = 0x00000001, + RigidbodyInterpolation2D__Enum_Extrapolate = 0x00000002, +}; + +#endif +struct RigidbodyInterpolation2D__Enum__Boxed { + struct RigidbodyInterpolation2D__Enum__Class *klass; + MonitorData *monitor; + #if defined(_CPLUSPLUS_) + RigidbodyInterpolation2D__Enum value; + #else + int32_t value; + #endif +}; + +struct RigidbodyInterpolation2D__Enum__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData CompareTo; + VirtualInvokeData ToString_1; + VirtualInvokeData GetTypeCode; + VirtualInvokeData System_IConvertible_ToBoolean; + VirtualInvokeData System_IConvertible_ToChar; + VirtualInvokeData System_IConvertible_ToSByte; + VirtualInvokeData System_IConvertible_ToByte; + VirtualInvokeData System_IConvertible_ToInt16; + VirtualInvokeData System_IConvertible_ToUInt16; + VirtualInvokeData System_IConvertible_ToInt32; + VirtualInvokeData System_IConvertible_ToUInt32; + VirtualInvokeData System_IConvertible_ToInt64; + VirtualInvokeData System_IConvertible_ToUInt64; + VirtualInvokeData System_IConvertible_ToSingle; + VirtualInvokeData System_IConvertible_ToDouble; + VirtualInvokeData System_IConvertible_ToDecimal; + VirtualInvokeData System_IConvertible_ToDateTime; + VirtualInvokeData ToString_2; + VirtualInvokeData System_IConvertible_ToType; +}; + +struct RigidbodyInterpolation2D__Enum__StaticFields { +}; + +struct RigidbodyInterpolation2D__Enum__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RigidbodyInterpolation2D__Enum__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RigidbodyInterpolation2D__Enum__VTable vtable; +}; + +struct PhysicsMaterial2D__Fields { + struct Object_1__Fields _; +}; + +struct PhysicsMaterial2D { + struct PhysicsMaterial2D__Class *klass; + MonitorData *monitor; + struct PhysicsMaterial2D__Fields fields; +}; + +struct PhysicsMaterial2D__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct PhysicsMaterial2D__StaticFields { +}; + +struct PhysicsMaterial2D__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PhysicsMaterial2D__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PhysicsMaterial2D__VTable vtable; +}; + +#if defined(_CPLUSPLUS_) +enum class RigidbodySleepMode2D__Enum : int32_t { + NeverSleep = 0x00000000, + StartAwake = 0x00000001, + StartAsleep = 0x00000002, +}; + +#else +enum RigidbodySleepMode2D__Enum { + RigidbodySleepMode2D__Enum_NeverSleep = 0x00000000, + RigidbodySleepMode2D__Enum_StartAwake = 0x00000001, + RigidbodySleepMode2D__Enum_StartAsleep = 0x00000002, +}; + +#endif +struct RigidbodySleepMode2D__Enum__Boxed { + struct RigidbodySleepMode2D__Enum__Class *klass; + MonitorData *monitor; + #if defined(_CPLUSPLUS_) + RigidbodySleepMode2D__Enum value; + #else + int32_t value; + #endif +}; + +struct RigidbodySleepMode2D__Enum__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData CompareTo; + VirtualInvokeData ToString_1; + VirtualInvokeData GetTypeCode; + VirtualInvokeData System_IConvertible_ToBoolean; + VirtualInvokeData System_IConvertible_ToChar; + VirtualInvokeData System_IConvertible_ToSByte; + VirtualInvokeData System_IConvertible_ToByte; + VirtualInvokeData System_IConvertible_ToInt16; + VirtualInvokeData System_IConvertible_ToUInt16; + VirtualInvokeData System_IConvertible_ToInt32; + VirtualInvokeData System_IConvertible_ToUInt32; + VirtualInvokeData System_IConvertible_ToInt64; + VirtualInvokeData System_IConvertible_ToUInt64; + VirtualInvokeData System_IConvertible_ToSingle; + VirtualInvokeData System_IConvertible_ToDouble; + VirtualInvokeData System_IConvertible_ToDecimal; + VirtualInvokeData System_IConvertible_ToDateTime; + VirtualInvokeData ToString_2; + VirtualInvokeData System_IConvertible_ToType; +}; + +struct RigidbodySleepMode2D__Enum__StaticFields { +}; + +struct RigidbodySleepMode2D__Enum__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RigidbodySleepMode2D__Enum__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RigidbodySleepMode2D__Enum__VTable vtable; +}; + +#if defined(_CPLUSPLUS_) +enum class CollisionDetectionMode2D__Enum : int32_t { + None = 0x00000000, + Discrete = 0x00000000, + Continuous = 0x00000001, +}; + +#else +enum CollisionDetectionMode2D__Enum { + CollisionDetectionMode2D__Enum_None = 0x00000000, + CollisionDetectionMode2D__Enum_Discrete = 0x00000000, + CollisionDetectionMode2D__Enum_Continuous = 0x00000001, +}; + +#endif +struct CollisionDetectionMode2D__Enum__Boxed { + struct CollisionDetectionMode2D__Enum__Class *klass; + MonitorData *monitor; + #if defined(_CPLUSPLUS_) + CollisionDetectionMode2D__Enum value; + #else + int32_t value; + #endif +}; + +struct CollisionDetectionMode2D__Enum__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData CompareTo; + VirtualInvokeData ToString_1; + VirtualInvokeData GetTypeCode; + VirtualInvokeData System_IConvertible_ToBoolean; + VirtualInvokeData System_IConvertible_ToChar; + VirtualInvokeData System_IConvertible_ToSByte; + VirtualInvokeData System_IConvertible_ToByte; + VirtualInvokeData System_IConvertible_ToInt16; + VirtualInvokeData System_IConvertible_ToUInt16; + VirtualInvokeData System_IConvertible_ToInt32; + VirtualInvokeData System_IConvertible_ToUInt32; + VirtualInvokeData System_IConvertible_ToInt64; + VirtualInvokeData System_IConvertible_ToUInt64; + VirtualInvokeData System_IConvertible_ToSingle; + VirtualInvokeData System_IConvertible_ToDouble; + VirtualInvokeData System_IConvertible_ToDecimal; + VirtualInvokeData System_IConvertible_ToDateTime; + VirtualInvokeData ToString_2; + VirtualInvokeData System_IConvertible_ToType; +}; + +struct CollisionDetectionMode2D__Enum__StaticFields { +}; + +struct CollisionDetectionMode2D__Enum__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CollisionDetectionMode2D__Enum__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CollisionDetectionMode2D__Enum__VTable vtable; +}; + +struct ICollection_1_Pathfinding_Poly2Tri_TriangulationPoint_ { + struct ICollection_1_Pathfinding_Poly2Tri_TriangulationPoint___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_Pathfinding_Poly2Tri_TriangulationPoint___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_Pathfinding_Poly2Tri_TriangulationPoint___StaticFields { +}; + +struct ICollection_1_Pathfinding_Poly2Tri_TriangulationPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_Pathfinding_Poly2Tri_TriangulationPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_Pathfinding_Poly2Tri_TriangulationPoint___VTable vtable; +}; + +struct ICollection_1_Pathfinding_Poly2Tri_Polygon_ { + struct ICollection_1_Pathfinding_Poly2Tri_Polygon___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_Pathfinding_Poly2Tri_Polygon___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_Pathfinding_Poly2Tri_Polygon___StaticFields { +}; + +struct ICollection_1_Pathfinding_Poly2Tri_Polygon___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_Pathfinding_Poly2Tri_Polygon___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_Pathfinding_Poly2Tri_Polygon___VTable vtable; +}; + +struct StackPool_1_Pathfinding_Poly2Tri_Polygon_ { + struct StackPool_1_Pathfinding_Poly2Tri_Polygon___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) List_1_Stack_1_Pathfinding_Poly2Tri_Polygon___Fields { + struct Stack_1_Pathfinding_Poly2Tri_Polygon___Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Stack_1_Pathfinding_Poly2Tri_Polygon_ { + struct List_1_Stack_1_Pathfinding_Poly2Tri_Polygon___Class *klass; + MonitorData *monitor; + struct List_1_Stack_1_Pathfinding_Poly2Tri_Polygon___Fields fields; +}; + +struct Stack_1_Pathfinding_Poly2Tri_Polygon___Array { + struct Stack_1_Pathfinding_Poly2Tri_Polygon___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Stack_1_Pathfinding_Poly2Tri_Polygon_ *vector[32]; +}; + +struct IEnumerator_1_Stack_1_Pathfinding_Poly2Tri_Polygon_ { + struct IEnumerator_1_Stack_1_Pathfinding_Poly2Tri_Polygon___Class *klass; + MonitorData *monitor; +}; + +struct Stack_1_Pathfinding_Poly2Tri_Polygon___Array__VTable { +}; + +struct Stack_1_Pathfinding_Poly2Tri_Polygon___Array__StaticFields { +}; + +struct Stack_1_Pathfinding_Poly2Tri_Polygon___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Stack_1_Pathfinding_Poly2Tri_Polygon___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Stack_1_Pathfinding_Poly2Tri_Polygon___Array__VTable vtable; +}; + +struct IEnumerator_1_Stack_1_Pathfinding_Poly2Tri_Polygon___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_Stack_1_Pathfinding_Poly2Tri_Polygon___StaticFields { +}; + +struct IEnumerator_1_Stack_1_Pathfinding_Poly2Tri_Polygon___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_Stack_1_Pathfinding_Poly2Tri_Polygon___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_Stack_1_Pathfinding_Poly2Tri_Polygon___VTable vtable; +}; + +struct List_1_Stack_1_Pathfinding_Poly2Tri_Polygon___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_Stack_1_Pathfinding_Poly2Tri_Polygon___StaticFields { + struct Stack_1_Pathfinding_Poly2Tri_Polygon___Array *s_emptyArray; +}; + +struct List_1_Stack_1_Pathfinding_Poly2Tri_Polygon___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Stack_1_Pathfinding_Poly2Tri_Polygon___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Stack_1_Pathfinding_Poly2Tri_Polygon___VTable vtable; +}; + +struct StackPool_1_Pathfinding_Poly2Tri_Polygon___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct StackPool_1_Pathfinding_Poly2Tri_Polygon___StaticFields { + struct List_1_Stack_1_Pathfinding_Poly2Tri_Polygon_ *pool; +}; + +struct StackPool_1_Pathfinding_Poly2Tri_Polygon___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StackPool_1_Pathfinding_Poly2Tri_Polygon___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StackPool_1_Pathfinding_Poly2Tri_Polygon___VTable vtable; +}; + +struct __declspec(align(8)) List_1_Pathfinding_NavmeshAdd___Fields { + struct NavmeshAdd__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Pathfinding_NavmeshAdd_ { + struct List_1_Pathfinding_NavmeshAdd___Class *klass; + MonitorData *monitor; + struct List_1_Pathfinding_NavmeshAdd___Fields fields; +}; + +struct NavmeshAdd__Array { + struct NavmeshAdd__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct NavmeshAdd *vector[32]; +}; + +struct IEnumerator_1_Pathfinding_NavmeshAdd_ { + struct IEnumerator_1_Pathfinding_NavmeshAdd___Class *klass; + MonitorData *monitor; +}; + +struct NavmeshAdd__Array__VTable { +}; + +struct NavmeshAdd__Array__StaticFields { +}; + +struct NavmeshAdd__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NavmeshAdd__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NavmeshAdd__Array__VTable vtable; +}; + +struct IEnumerator_1_Pathfinding_NavmeshAdd___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_Pathfinding_NavmeshAdd___StaticFields { +}; + +struct IEnumerator_1_Pathfinding_NavmeshAdd___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_Pathfinding_NavmeshAdd___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_Pathfinding_NavmeshAdd___VTable vtable; +}; + +struct List_1_Pathfinding_NavmeshAdd___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_Pathfinding_NavmeshAdd___StaticFields { + struct NavmeshAdd__Array *s_emptyArray; +}; + +struct List_1_Pathfinding_NavmeshAdd___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Pathfinding_NavmeshAdd___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Pathfinding_NavmeshAdd___VTable vtable; +}; + +struct __declspec(align(8)) List_1_Pathfinding_Poly2Tri_PolygonPoint___Fields { + struct PolygonPoint__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Pathfinding_Poly2Tri_PolygonPoint_ { + struct List_1_Pathfinding_Poly2Tri_PolygonPoint___Class *klass; + MonitorData *monitor; + struct List_1_Pathfinding_Poly2Tri_PolygonPoint___Fields fields; +}; + +struct PolygonPoint__Array { + struct PolygonPoint__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct PolygonPoint *vector[32]; +}; + +struct IEnumerator_1_Pathfinding_Poly2Tri_PolygonPoint_ { + struct IEnumerator_1_Pathfinding_Poly2Tri_PolygonPoint___Class *klass; + MonitorData *monitor; +}; + +struct PolygonPoint__Array__VTable { +}; + +struct PolygonPoint__Array__StaticFields { +}; + +struct PolygonPoint__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PolygonPoint__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PolygonPoint__Array__VTable vtable; +}; + +struct IEnumerator_1_Pathfinding_Poly2Tri_PolygonPoint___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_Pathfinding_Poly2Tri_PolygonPoint___StaticFields { +}; + +struct IEnumerator_1_Pathfinding_Poly2Tri_PolygonPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_Pathfinding_Poly2Tri_PolygonPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_Pathfinding_Poly2Tri_PolygonPoint___VTable vtable; +}; + +struct List_1_Pathfinding_Poly2Tri_PolygonPoint___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_Pathfinding_Poly2Tri_PolygonPoint___StaticFields { + struct PolygonPoint__Array *s_emptyArray; +}; + +struct List_1_Pathfinding_Poly2Tri_PolygonPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Pathfinding_Poly2Tri_PolygonPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Pathfinding_Poly2Tri_PolygonPoint___VTable vtable; +}; + +struct ISerializationCallbackReceiver { + struct ISerializationCallbackReceiver__Class *klass; + MonitorData *monitor; +}; + +struct ISerializationCallbackReceiver__VTable { + VirtualInvokeData OnBeforeSerialize; + VirtualInvokeData OnAfterDeserialize; +}; + +struct ISerializationCallbackReceiver__StaticFields { +}; + +struct ISerializationCallbackReceiver__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ISerializationCallbackReceiver__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ISerializationCallbackReceiver__VTable vtable; +}; + +struct IExportToXml { + struct IExportToXml__Class *klass; + MonitorData *monitor; +}; + +struct IExportToXml__VTable { + VirtualInvokeData get_writesOwnElementTag; + VirtualInvokeData WriteXml; +}; + +struct IExportToXml__StaticFields { +}; + +struct IExportToXml__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IExportToXml__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IExportToXml__VTable vtable; +}; + +struct ListPool_1_System_Collections_Generic_List_1__1 { + struct ListPool_1_System_Collections_Generic_List_1__1__Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) List_1_List_1_List_1_Pathfinding_ClipperLib_IntPoint___Fields { + struct List_1_List_1_Pathfinding_ClipperLib_IntPoint___Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_List_1_List_1_Pathfinding_ClipperLib_IntPoint_ { + struct List_1_List_1_List_1_Pathfinding_ClipperLib_IntPoint___Class *klass; + MonitorData *monitor; + struct List_1_List_1_List_1_Pathfinding_ClipperLib_IntPoint___Fields fields; +}; + +struct List_1_List_1_Pathfinding_ClipperLib_IntPoint___Array { + struct List_1_List_1_Pathfinding_ClipperLib_IntPoint___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct List_1_List_1_Pathfinding_ClipperLib_IntPoint_ *vector[32]; +}; + +struct IEnumerator_1_List_1_List_1_Pathfinding_ClipperLib_IntPoint_ { + struct IEnumerator_1_List_1_List_1_Pathfinding_ClipperLib_IntPoint___Class *klass; + MonitorData *monitor; +}; + +struct HashSet_1_T_Slot_List_1_List_1_Pathfinding_ClipperLib_IntPoint_ { + int32_t hashCode; + int32_t next; + struct List_1_List_1_Pathfinding_ClipperLib_IntPoint_ *value; +}; + +struct HashSet_1_T_Slot_List_1_List_1_Pathfinding_ClipperLib_IntPoint___Boxed { + struct HashSet_1_T_Slot_List_1_List_1_Pathfinding_ClipperLib_IntPoint___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_List_1_List_1_Pathfinding_ClipperLib_IntPoint_ fields; +}; + +struct __declspec(align(8)) HashSet_1_List_1_List_1_Pathfinding_ClipperLib_IntPoint___Fields { + struct Int32__Array *_buckets; + struct HashSet_1_T_Slot_List_1_List_1_Pathfinding_ClipperLib_IntPoint___Array *_slots; + int32_t _count; + int32_t _lastIndex; + int32_t _freeList; + struct IEqualityComparer_1_List_1_List_1_Pathfinding_ClipperLib_IntPoint_ *_comparer; + int32_t _version; + struct SerializationInfo *_siInfo; +}; + +struct HashSet_1_List_1_List_1_Pathfinding_ClipperLib_IntPoint_ { + struct HashSet_1_List_1_List_1_Pathfinding_ClipperLib_IntPoint___Class *klass; + MonitorData *monitor; + struct HashSet_1_List_1_List_1_Pathfinding_ClipperLib_IntPoint___Fields fields; +}; + +struct HashSet_1_T_Slot_List_1_List_1_Pathfinding_ClipperLib_IntPoint___Array { + struct HashSet_1_T_Slot_List_1_List_1_Pathfinding_ClipperLib_IntPoint___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct HashSet_1_T_Slot_List_1_List_1_Pathfinding_ClipperLib_IntPoint_ vector[32]; +}; + +struct IEqualityComparer_1_List_1_List_1_Pathfinding_ClipperLib_IntPoint_ { + struct IEqualityComparer_1_List_1_List_1_Pathfinding_ClipperLib_IntPoint___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_List_1_List_1_Pathfinding_ClipperLib_IntPoint_ { + struct IEnumerable_1_List_1_List_1_Pathfinding_ClipperLib_IntPoint___Class *klass; + MonitorData *monitor; +}; + +struct List_1_List_1_Pathfinding_ClipperLib_IntPoint___Array__VTable { +}; + +struct List_1_List_1_Pathfinding_ClipperLib_IntPoint___Array__StaticFields { +}; + +struct List_1_List_1_Pathfinding_ClipperLib_IntPoint___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_List_1_Pathfinding_ClipperLib_IntPoint___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_List_1_Pathfinding_ClipperLib_IntPoint___Array__VTable vtable; +}; + +struct IEnumerator_1_List_1_List_1_Pathfinding_ClipperLib_IntPoint___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_List_1_List_1_Pathfinding_ClipperLib_IntPoint___StaticFields { +}; + +struct IEnumerator_1_List_1_List_1_Pathfinding_ClipperLib_IntPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_List_1_List_1_Pathfinding_ClipperLib_IntPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_List_1_List_1_Pathfinding_ClipperLib_IntPoint___VTable vtable; +}; + +struct List_1_List_1_List_1_Pathfinding_ClipperLib_IntPoint___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_List_1_List_1_Pathfinding_ClipperLib_IntPoint___StaticFields { + struct List_1_List_1_Pathfinding_ClipperLib_IntPoint___Array *s_emptyArray; +}; + +struct List_1_List_1_List_1_Pathfinding_ClipperLib_IntPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_List_1_List_1_Pathfinding_ClipperLib_IntPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_List_1_List_1_Pathfinding_ClipperLib_IntPoint___VTable vtable; +}; + +struct HashSet_1_T_Slot_List_1_List_1_Pathfinding_ClipperLib_IntPoint___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct HashSet_1_T_Slot_List_1_List_1_Pathfinding_ClipperLib_IntPoint___StaticFields { +}; + +struct HashSet_1_T_Slot_List_1_List_1_Pathfinding_ClipperLib_IntPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_T_Slot_List_1_List_1_Pathfinding_ClipperLib_IntPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_T_Slot_List_1_List_1_Pathfinding_ClipperLib_IntPoint___VTable vtable; +}; + +struct HashSet_1_T_Slot_List_1_List_1_Pathfinding_ClipperLib_IntPoint___Array__VTable { +}; + +struct HashSet_1_T_Slot_List_1_List_1_Pathfinding_ClipperLib_IntPoint___Array__StaticFields { +}; + +struct HashSet_1_T_Slot_List_1_List_1_Pathfinding_ClipperLib_IntPoint___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_T_Slot_List_1_List_1_Pathfinding_ClipperLib_IntPoint___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_T_Slot_List_1_List_1_Pathfinding_ClipperLib_IntPoint___Array__VTable vtable; +}; + +struct IEqualityComparer_1_List_1_List_1_Pathfinding_ClipperLib_IntPoint___VTable { + VirtualInvokeData Equals; + VirtualInvokeData GetHashCode; +}; + +struct IEqualityComparer_1_List_1_List_1_Pathfinding_ClipperLib_IntPoint___StaticFields { +}; + +struct IEqualityComparer_1_List_1_List_1_Pathfinding_ClipperLib_IntPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEqualityComparer_1_List_1_List_1_Pathfinding_ClipperLib_IntPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEqualityComparer_1_List_1_List_1_Pathfinding_ClipperLib_IntPoint___VTable vtable; +}; + +struct IEnumerable_1_List_1_List_1_Pathfinding_ClipperLib_IntPoint___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_List_1_List_1_Pathfinding_ClipperLib_IntPoint___StaticFields { +}; + +struct IEnumerable_1_List_1_List_1_Pathfinding_ClipperLib_IntPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_List_1_List_1_Pathfinding_ClipperLib_IntPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_List_1_List_1_Pathfinding_ClipperLib_IntPoint___VTable vtable; +}; + +struct HashSet_1_List_1_List_1_Pathfinding_ClipperLib_IntPoint___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_T__Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData Add; + VirtualInvokeData UnionWith; + VirtualInvokeData IntersectWith; + VirtualInvokeData ExceptWith; + VirtualInvokeData SymmetricExceptWith; + VirtualInvokeData IsSubsetOf; + VirtualInvokeData IsSupersetOf; + VirtualInvokeData IsProperSupersetOf; + VirtualInvokeData IsProperSubsetOf; + VirtualInvokeData Overlaps; + VirtualInvokeData SetEquals; + VirtualInvokeData get_Count_1; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct HashSet_1_List_1_List_1_Pathfinding_ClipperLib_IntPoint___StaticFields { +}; + +struct HashSet_1_List_1_List_1_Pathfinding_ClipperLib_IntPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_List_1_List_1_Pathfinding_ClipperLib_IntPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_List_1_List_1_Pathfinding_ClipperLib_IntPoint___VTable vtable; +}; + +struct ListPool_1_System_Collections_Generic_List_1__1__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ListPool_1_System_Collections_Generic_List_1__1__StaticFields { + struct List_1_List_1_List_1_Pathfinding_ClipperLib_IntPoint_ *pool; + struct List_1_List_1_List_1_Pathfinding_ClipperLib_IntPoint_ *largePool; + struct HashSet_1_List_1_List_1_Pathfinding_ClipperLib_IntPoint_ *inPool; +}; + +struct ListPool_1_System_Collections_Generic_List_1__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ListPool_1_System_Collections_Generic_List_1__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ListPool_1_System_Collections_Generic_List_1__1__VTable vtable; +}; + +struct ListPool_1_Pathfinding_Poly2Tri_PolygonPoint_ { + struct ListPool_1_Pathfinding_Poly2Tri_PolygonPoint___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) List_1_List_1_Pathfinding_Poly2Tri_PolygonPoint___Fields { + struct List_1_Pathfinding_Poly2Tri_PolygonPoint___Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_List_1_Pathfinding_Poly2Tri_PolygonPoint_ { + struct List_1_List_1_Pathfinding_Poly2Tri_PolygonPoint___Class *klass; + MonitorData *monitor; + struct List_1_List_1_Pathfinding_Poly2Tri_PolygonPoint___Fields fields; +}; + +struct List_1_Pathfinding_Poly2Tri_PolygonPoint___Array { + struct List_1_Pathfinding_Poly2Tri_PolygonPoint___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct List_1_Pathfinding_Poly2Tri_PolygonPoint_ *vector[32]; +}; + +struct IEnumerator_1_List_1_Pathfinding_Poly2Tri_PolygonPoint_ { + struct IEnumerator_1_List_1_Pathfinding_Poly2Tri_PolygonPoint___Class *klass; + MonitorData *monitor; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_Poly2Tri_PolygonPoint_ { + int32_t hashCode; + int32_t next; + struct List_1_Pathfinding_Poly2Tri_PolygonPoint_ *value; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_Poly2Tri_PolygonPoint___Boxed { + struct HashSet_1_T_Slot_List_1_Pathfinding_Poly2Tri_PolygonPoint___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_List_1_Pathfinding_Poly2Tri_PolygonPoint_ fields; +}; + +struct __declspec(align(8)) HashSet_1_List_1_Pathfinding_Poly2Tri_PolygonPoint___Fields { + struct Int32__Array *_buckets; + struct HashSet_1_T_Slot_List_1_Pathfinding_Poly2Tri_PolygonPoint___Array *_slots; + int32_t _count; + int32_t _lastIndex; + int32_t _freeList; + struct IEqualityComparer_1_List_1_Pathfinding_Poly2Tri_PolygonPoint_ *_comparer; + int32_t _version; + struct SerializationInfo *_siInfo; +}; + +struct HashSet_1_List_1_Pathfinding_Poly2Tri_PolygonPoint_ { + struct HashSet_1_List_1_Pathfinding_Poly2Tri_PolygonPoint___Class *klass; + MonitorData *monitor; + struct HashSet_1_List_1_Pathfinding_Poly2Tri_PolygonPoint___Fields fields; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_Poly2Tri_PolygonPoint___Array { + struct HashSet_1_T_Slot_List_1_Pathfinding_Poly2Tri_PolygonPoint___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct HashSet_1_T_Slot_List_1_Pathfinding_Poly2Tri_PolygonPoint_ vector[32]; +}; + +struct IEqualityComparer_1_List_1_Pathfinding_Poly2Tri_PolygonPoint_ { + struct IEqualityComparer_1_List_1_Pathfinding_Poly2Tri_PolygonPoint___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_List_1_Pathfinding_Poly2Tri_PolygonPoint_ { + struct IEnumerable_1_List_1_Pathfinding_Poly2Tri_PolygonPoint___Class *klass; + MonitorData *monitor; +}; + +struct List_1_Pathfinding_Poly2Tri_PolygonPoint___Array__VTable { +}; + +struct List_1_Pathfinding_Poly2Tri_PolygonPoint___Array__StaticFields { +}; + +struct List_1_Pathfinding_Poly2Tri_PolygonPoint___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Pathfinding_Poly2Tri_PolygonPoint___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Pathfinding_Poly2Tri_PolygonPoint___Array__VTable vtable; +}; + +struct IEnumerator_1_List_1_Pathfinding_Poly2Tri_PolygonPoint___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_List_1_Pathfinding_Poly2Tri_PolygonPoint___StaticFields { +}; + +struct IEnumerator_1_List_1_Pathfinding_Poly2Tri_PolygonPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_List_1_Pathfinding_Poly2Tri_PolygonPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_List_1_Pathfinding_Poly2Tri_PolygonPoint___VTable vtable; +}; + +struct List_1_List_1_Pathfinding_Poly2Tri_PolygonPoint___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_List_1_Pathfinding_Poly2Tri_PolygonPoint___StaticFields { + struct List_1_Pathfinding_Poly2Tri_PolygonPoint___Array *s_emptyArray; +}; + +struct List_1_List_1_Pathfinding_Poly2Tri_PolygonPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_List_1_Pathfinding_Poly2Tri_PolygonPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_List_1_Pathfinding_Poly2Tri_PolygonPoint___VTable vtable; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_Poly2Tri_PolygonPoint___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_Poly2Tri_PolygonPoint___StaticFields { +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_Poly2Tri_PolygonPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_T_Slot_List_1_Pathfinding_Poly2Tri_PolygonPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_T_Slot_List_1_Pathfinding_Poly2Tri_PolygonPoint___VTable vtable; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_Poly2Tri_PolygonPoint___Array__VTable { +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_Poly2Tri_PolygonPoint___Array__StaticFields { +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_Poly2Tri_PolygonPoint___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_T_Slot_List_1_Pathfinding_Poly2Tri_PolygonPoint___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_T_Slot_List_1_Pathfinding_Poly2Tri_PolygonPoint___Array__VTable vtable; +}; + +struct IEqualityComparer_1_List_1_Pathfinding_Poly2Tri_PolygonPoint___VTable { + VirtualInvokeData Equals; + VirtualInvokeData GetHashCode; +}; + +struct IEqualityComparer_1_List_1_Pathfinding_Poly2Tri_PolygonPoint___StaticFields { +}; + +struct IEqualityComparer_1_List_1_Pathfinding_Poly2Tri_PolygonPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEqualityComparer_1_List_1_Pathfinding_Poly2Tri_PolygonPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEqualityComparer_1_List_1_Pathfinding_Poly2Tri_PolygonPoint___VTable vtable; +}; + +struct IEnumerable_1_List_1_Pathfinding_Poly2Tri_PolygonPoint___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_List_1_Pathfinding_Poly2Tri_PolygonPoint___StaticFields { +}; + +struct IEnumerable_1_List_1_Pathfinding_Poly2Tri_PolygonPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_List_1_Pathfinding_Poly2Tri_PolygonPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_List_1_Pathfinding_Poly2Tri_PolygonPoint___VTable vtable; +}; + +struct HashSet_1_List_1_Pathfinding_Poly2Tri_PolygonPoint___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_T__Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData Add; + VirtualInvokeData UnionWith; + VirtualInvokeData IntersectWith; + VirtualInvokeData ExceptWith; + VirtualInvokeData SymmetricExceptWith; + VirtualInvokeData IsSubsetOf; + VirtualInvokeData IsSupersetOf; + VirtualInvokeData IsProperSupersetOf; + VirtualInvokeData IsProperSubsetOf; + VirtualInvokeData Overlaps; + VirtualInvokeData SetEquals; + VirtualInvokeData get_Count_1; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct HashSet_1_List_1_Pathfinding_Poly2Tri_PolygonPoint___StaticFields { +}; + +struct HashSet_1_List_1_Pathfinding_Poly2Tri_PolygonPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_List_1_Pathfinding_Poly2Tri_PolygonPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_List_1_Pathfinding_Poly2Tri_PolygonPoint___VTable vtable; +}; + +struct ListPool_1_Pathfinding_Poly2Tri_PolygonPoint___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ListPool_1_Pathfinding_Poly2Tri_PolygonPoint___StaticFields { + struct List_1_List_1_Pathfinding_Poly2Tri_PolygonPoint_ *pool; + struct List_1_List_1_Pathfinding_Poly2Tri_PolygonPoint_ *largePool; + struct HashSet_1_List_1_Pathfinding_Poly2Tri_PolygonPoint_ *inPool; +}; + +struct ListPool_1_Pathfinding_Poly2Tri_PolygonPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ListPool_1_Pathfinding_Poly2Tri_PolygonPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ListPool_1_Pathfinding_Poly2Tri_PolygonPoint___VTable vtable; +}; + +struct ListPool_1_Pathfinding_ClipperLib_IntPoint_ { + struct ListPool_1_Pathfinding_ClipperLib_IntPoint___Class *klass; + MonitorData *monitor; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_ClipperLib_IntPoint_ { + int32_t hashCode; + int32_t next; + struct List_1_Pathfinding_ClipperLib_IntPoint_ *value; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_ClipperLib_IntPoint___Boxed { + struct HashSet_1_T_Slot_List_1_Pathfinding_ClipperLib_IntPoint___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_List_1_Pathfinding_ClipperLib_IntPoint_ fields; +}; + +struct __declspec(align(8)) HashSet_1_List_1_Pathfinding_ClipperLib_IntPoint___Fields { + struct Int32__Array *_buckets; + struct HashSet_1_T_Slot_List_1_Pathfinding_ClipperLib_IntPoint___Array *_slots; + int32_t _count; + int32_t _lastIndex; + int32_t _freeList; + struct IEqualityComparer_1_List_1_Pathfinding_ClipperLib_IntPoint_ *_comparer; + int32_t _version; + struct SerializationInfo *_siInfo; +}; + +struct HashSet_1_List_1_Pathfinding_ClipperLib_IntPoint_ { + struct HashSet_1_List_1_Pathfinding_ClipperLib_IntPoint___Class *klass; + MonitorData *monitor; + struct HashSet_1_List_1_Pathfinding_ClipperLib_IntPoint___Fields fields; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_ClipperLib_IntPoint___Array { + struct HashSet_1_T_Slot_List_1_Pathfinding_ClipperLib_IntPoint___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct HashSet_1_T_Slot_List_1_Pathfinding_ClipperLib_IntPoint_ vector[32]; +}; + +struct IEqualityComparer_1_List_1_Pathfinding_ClipperLib_IntPoint_ { + struct IEqualityComparer_1_List_1_Pathfinding_ClipperLib_IntPoint___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_List_1_Pathfinding_ClipperLib_IntPoint_ { + struct IEnumerable_1_List_1_Pathfinding_ClipperLib_IntPoint___Class *klass; + MonitorData *monitor; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_ClipperLib_IntPoint___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_ClipperLib_IntPoint___StaticFields { +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_ClipperLib_IntPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_T_Slot_List_1_Pathfinding_ClipperLib_IntPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_T_Slot_List_1_Pathfinding_ClipperLib_IntPoint___VTable vtable; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_ClipperLib_IntPoint___Array__VTable { +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_ClipperLib_IntPoint___Array__StaticFields { +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_ClipperLib_IntPoint___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_T_Slot_List_1_Pathfinding_ClipperLib_IntPoint___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_T_Slot_List_1_Pathfinding_ClipperLib_IntPoint___Array__VTable vtable; +}; + +struct IEqualityComparer_1_List_1_Pathfinding_ClipperLib_IntPoint___VTable { + VirtualInvokeData Equals; + VirtualInvokeData GetHashCode; +}; + +struct IEqualityComparer_1_List_1_Pathfinding_ClipperLib_IntPoint___StaticFields { +}; + +struct IEqualityComparer_1_List_1_Pathfinding_ClipperLib_IntPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEqualityComparer_1_List_1_Pathfinding_ClipperLib_IntPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEqualityComparer_1_List_1_Pathfinding_ClipperLib_IntPoint___VTable vtable; +}; + +struct IEnumerable_1_List_1_Pathfinding_ClipperLib_IntPoint___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_List_1_Pathfinding_ClipperLib_IntPoint___StaticFields { +}; + +struct IEnumerable_1_List_1_Pathfinding_ClipperLib_IntPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_List_1_Pathfinding_ClipperLib_IntPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_List_1_Pathfinding_ClipperLib_IntPoint___VTable vtable; +}; + +struct HashSet_1_List_1_Pathfinding_ClipperLib_IntPoint___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_T__Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData Add; + VirtualInvokeData UnionWith; + VirtualInvokeData IntersectWith; + VirtualInvokeData ExceptWith; + VirtualInvokeData SymmetricExceptWith; + VirtualInvokeData IsSubsetOf; + VirtualInvokeData IsSupersetOf; + VirtualInvokeData IsProperSupersetOf; + VirtualInvokeData IsProperSubsetOf; + VirtualInvokeData Overlaps; + VirtualInvokeData SetEquals; + VirtualInvokeData get_Count_1; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct HashSet_1_List_1_Pathfinding_ClipperLib_IntPoint___StaticFields { +}; + +struct HashSet_1_List_1_Pathfinding_ClipperLib_IntPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_List_1_Pathfinding_ClipperLib_IntPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_List_1_Pathfinding_ClipperLib_IntPoint___VTable vtable; +}; + +struct ListPool_1_Pathfinding_ClipperLib_IntPoint___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ListPool_1_Pathfinding_ClipperLib_IntPoint___StaticFields { + struct List_1_List_1_Pathfinding_ClipperLib_IntPoint_ *pool; + struct List_1_List_1_Pathfinding_ClipperLib_IntPoint_ *largePool; + struct HashSet_1_List_1_Pathfinding_ClipperLib_IntPoint_ *inPool; +}; + +struct ListPool_1_Pathfinding_ClipperLib_IntPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ListPool_1_Pathfinding_ClipperLib_IntPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ListPool_1_Pathfinding_ClipperLib_IntPoint___VTable vtable; +}; + +struct List_1_Pathfinding_Poly2Tri_PolygonPoint__1__VTable { +}; + +struct List_1_Pathfinding_Poly2Tri_PolygonPoint__1__StaticFields { +}; + +struct List_1_Pathfinding_Poly2Tri_PolygonPoint__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Pathfinding_Poly2Tri_PolygonPoint__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Pathfinding_Poly2Tri_PolygonPoint__1__VTable vtable; +}; + +struct ListPool_1_Pathfinding_NavmeshCut_ { + struct ListPool_1_Pathfinding_NavmeshCut___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) List_1_List_1_Pathfinding_NavmeshCut___Fields { + struct List_1_Pathfinding_NavmeshCut___Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_List_1_Pathfinding_NavmeshCut_ { + struct List_1_List_1_Pathfinding_NavmeshCut___Class *klass; + MonitorData *monitor; + struct List_1_List_1_Pathfinding_NavmeshCut___Fields fields; +}; + +struct List_1_Pathfinding_NavmeshCut___Array { + struct List_1_Pathfinding_NavmeshCut___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct List_1_Pathfinding_NavmeshCut_ *vector[32]; +}; + +struct IEnumerator_1_List_1_Pathfinding_NavmeshCut_ { + struct IEnumerator_1_List_1_Pathfinding_NavmeshCut___Class *klass; + MonitorData *monitor; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_NavmeshCut_ { + int32_t hashCode; + int32_t next; + struct List_1_Pathfinding_NavmeshCut_ *value; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_NavmeshCut___Boxed { + struct HashSet_1_T_Slot_List_1_Pathfinding_NavmeshCut___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_List_1_Pathfinding_NavmeshCut_ fields; +}; + +struct __declspec(align(8)) HashSet_1_List_1_Pathfinding_NavmeshCut___Fields { + struct Int32__Array *_buckets; + struct HashSet_1_T_Slot_List_1_Pathfinding_NavmeshCut___Array *_slots; + int32_t _count; + int32_t _lastIndex; + int32_t _freeList; + struct IEqualityComparer_1_List_1_Pathfinding_NavmeshCut_ *_comparer; + int32_t _version; + struct SerializationInfo *_siInfo; +}; + +struct HashSet_1_List_1_Pathfinding_NavmeshCut_ { + struct HashSet_1_List_1_Pathfinding_NavmeshCut___Class *klass; + MonitorData *monitor; + struct HashSet_1_List_1_Pathfinding_NavmeshCut___Fields fields; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_NavmeshCut___Array { + struct HashSet_1_T_Slot_List_1_Pathfinding_NavmeshCut___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct HashSet_1_T_Slot_List_1_Pathfinding_NavmeshCut_ vector[32]; +}; + +struct IEqualityComparer_1_List_1_Pathfinding_NavmeshCut_ { + struct IEqualityComparer_1_List_1_Pathfinding_NavmeshCut___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_List_1_Pathfinding_NavmeshCut_ { + struct IEnumerable_1_List_1_Pathfinding_NavmeshCut___Class *klass; + MonitorData *monitor; +}; + +struct List_1_Pathfinding_NavmeshCut___Array__VTable { +}; + +struct List_1_Pathfinding_NavmeshCut___Array__StaticFields { +}; + +struct List_1_Pathfinding_NavmeshCut___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Pathfinding_NavmeshCut___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Pathfinding_NavmeshCut___Array__VTable vtable; +}; + +struct IEnumerator_1_List_1_Pathfinding_NavmeshCut___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_List_1_Pathfinding_NavmeshCut___StaticFields { +}; + +struct IEnumerator_1_List_1_Pathfinding_NavmeshCut___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_List_1_Pathfinding_NavmeshCut___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_List_1_Pathfinding_NavmeshCut___VTable vtable; +}; + +struct List_1_List_1_Pathfinding_NavmeshCut___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_List_1_Pathfinding_NavmeshCut___StaticFields { + struct List_1_Pathfinding_NavmeshCut___Array *s_emptyArray; +}; + +struct List_1_List_1_Pathfinding_NavmeshCut___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_List_1_Pathfinding_NavmeshCut___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_List_1_Pathfinding_NavmeshCut___VTable vtable; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_NavmeshCut___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_NavmeshCut___StaticFields { +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_NavmeshCut___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_T_Slot_List_1_Pathfinding_NavmeshCut___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_T_Slot_List_1_Pathfinding_NavmeshCut___VTable vtable; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_NavmeshCut___Array__VTable { +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_NavmeshCut___Array__StaticFields { +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_NavmeshCut___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_T_Slot_List_1_Pathfinding_NavmeshCut___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_T_Slot_List_1_Pathfinding_NavmeshCut___Array__VTable vtable; +}; + +struct IEqualityComparer_1_List_1_Pathfinding_NavmeshCut___VTable { + VirtualInvokeData Equals; + VirtualInvokeData GetHashCode; +}; + +struct IEqualityComparer_1_List_1_Pathfinding_NavmeshCut___StaticFields { +}; + +struct IEqualityComparer_1_List_1_Pathfinding_NavmeshCut___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEqualityComparer_1_List_1_Pathfinding_NavmeshCut___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEqualityComparer_1_List_1_Pathfinding_NavmeshCut___VTable vtable; +}; + +struct IEnumerable_1_List_1_Pathfinding_NavmeshCut___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_List_1_Pathfinding_NavmeshCut___StaticFields { +}; + +struct IEnumerable_1_List_1_Pathfinding_NavmeshCut___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_List_1_Pathfinding_NavmeshCut___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_List_1_Pathfinding_NavmeshCut___VTable vtable; +}; + +struct HashSet_1_List_1_Pathfinding_NavmeshCut___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_T__Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData Add; + VirtualInvokeData UnionWith; + VirtualInvokeData IntersectWith; + VirtualInvokeData ExceptWith; + VirtualInvokeData SymmetricExceptWith; + VirtualInvokeData IsSubsetOf; + VirtualInvokeData IsSupersetOf; + VirtualInvokeData IsProperSupersetOf; + VirtualInvokeData IsProperSubsetOf; + VirtualInvokeData Overlaps; + VirtualInvokeData SetEquals; + VirtualInvokeData get_Count_1; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct HashSet_1_List_1_Pathfinding_NavmeshCut___StaticFields { +}; + +struct HashSet_1_List_1_Pathfinding_NavmeshCut___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_List_1_Pathfinding_NavmeshCut___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_List_1_Pathfinding_NavmeshCut___VTable vtable; +}; + +struct ListPool_1_Pathfinding_NavmeshCut___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ListPool_1_Pathfinding_NavmeshCut___StaticFields { + struct List_1_List_1_Pathfinding_NavmeshCut_ *pool; + struct List_1_List_1_Pathfinding_NavmeshCut_ *largePool; + struct HashSet_1_List_1_Pathfinding_NavmeshCut_ *inPool; +}; + +struct ListPool_1_Pathfinding_NavmeshCut___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ListPool_1_Pathfinding_NavmeshCut___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ListPool_1_Pathfinding_NavmeshCut___VTable vtable; +}; + +struct ListPool_1_TileHandler_Cut_ { + struct ListPool_1_TileHandler_Cut___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) List_1_List_1_Pathfinding_Util_TileHandler_Cut___Fields { + struct List_1_Pathfinding_Util_TileHandler_Cut___Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_List_1_Pathfinding_Util_TileHandler_Cut_ { + struct List_1_List_1_Pathfinding_Util_TileHandler_Cut___Class *klass; + MonitorData *monitor; + struct List_1_List_1_Pathfinding_Util_TileHandler_Cut___Fields fields; +}; + +struct List_1_Pathfinding_Util_TileHandler_Cut___Array { + struct List_1_Pathfinding_Util_TileHandler_Cut___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct List_1_Pathfinding_Util_TileHandler_Cut_ *vector[32]; +}; + +struct IEnumerator_1_List_1_Pathfinding_Util_TileHandler_Cut_ { + struct IEnumerator_1_List_1_Pathfinding_Util_TileHandler_Cut___Class *klass; + MonitorData *monitor; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_Util_TileHandler_Cut_ { + int32_t hashCode; + int32_t next; + struct List_1_Pathfinding_Util_TileHandler_Cut_ *value; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_Util_TileHandler_Cut___Boxed { + struct HashSet_1_T_Slot_List_1_Pathfinding_Util_TileHandler_Cut___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_List_1_Pathfinding_Util_TileHandler_Cut_ fields; +}; + +struct __declspec(align(8)) HashSet_1_List_1_Pathfinding_Util_TileHandler_Cut___Fields { + struct Int32__Array *_buckets; + struct HashSet_1_T_Slot_List_1_Pathfinding_Util_TileHandler_Cut___Array *_slots; + int32_t _count; + int32_t _lastIndex; + int32_t _freeList; + struct IEqualityComparer_1_List_1_Pathfinding_Util_TileHandler_Cut_ *_comparer; + int32_t _version; + struct SerializationInfo *_siInfo; +}; + +struct HashSet_1_List_1_Pathfinding_Util_TileHandler_Cut_ { + struct HashSet_1_List_1_Pathfinding_Util_TileHandler_Cut___Class *klass; + MonitorData *monitor; + struct HashSet_1_List_1_Pathfinding_Util_TileHandler_Cut___Fields fields; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_Util_TileHandler_Cut___Array { + struct HashSet_1_T_Slot_List_1_Pathfinding_Util_TileHandler_Cut___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct HashSet_1_T_Slot_List_1_Pathfinding_Util_TileHandler_Cut_ vector[32]; +}; + +struct IEqualityComparer_1_List_1_Pathfinding_Util_TileHandler_Cut_ { + struct IEqualityComparer_1_List_1_Pathfinding_Util_TileHandler_Cut___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_List_1_Pathfinding_Util_TileHandler_Cut_ { + struct IEnumerable_1_List_1_Pathfinding_Util_TileHandler_Cut___Class *klass; + MonitorData *monitor; +}; + +struct List_1_Pathfinding_Util_TileHandler_Cut___Array__VTable { +}; + +struct List_1_Pathfinding_Util_TileHandler_Cut___Array__StaticFields { +}; + +struct List_1_Pathfinding_Util_TileHandler_Cut___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Pathfinding_Util_TileHandler_Cut___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Pathfinding_Util_TileHandler_Cut___Array__VTable vtable; +}; + +struct IEnumerator_1_List_1_Pathfinding_Util_TileHandler_Cut___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_List_1_Pathfinding_Util_TileHandler_Cut___StaticFields { +}; + +struct IEnumerator_1_List_1_Pathfinding_Util_TileHandler_Cut___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_List_1_Pathfinding_Util_TileHandler_Cut___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_List_1_Pathfinding_Util_TileHandler_Cut___VTable vtable; +}; + +struct List_1_List_1_Pathfinding_Util_TileHandler_Cut___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_List_1_Pathfinding_Util_TileHandler_Cut___StaticFields { + struct List_1_Pathfinding_Util_TileHandler_Cut___Array *s_emptyArray; +}; + +struct List_1_List_1_Pathfinding_Util_TileHandler_Cut___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_List_1_Pathfinding_Util_TileHandler_Cut___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_List_1_Pathfinding_Util_TileHandler_Cut___VTable vtable; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_Util_TileHandler_Cut___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_Util_TileHandler_Cut___StaticFields { +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_Util_TileHandler_Cut___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_T_Slot_List_1_Pathfinding_Util_TileHandler_Cut___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_T_Slot_List_1_Pathfinding_Util_TileHandler_Cut___VTable vtable; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_Util_TileHandler_Cut___Array__VTable { +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_Util_TileHandler_Cut___Array__StaticFields { +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_Util_TileHandler_Cut___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_T_Slot_List_1_Pathfinding_Util_TileHandler_Cut___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_T_Slot_List_1_Pathfinding_Util_TileHandler_Cut___Array__VTable vtable; +}; + +struct IEqualityComparer_1_List_1_Pathfinding_Util_TileHandler_Cut___VTable { + VirtualInvokeData Equals; + VirtualInvokeData GetHashCode; +}; + +struct IEqualityComparer_1_List_1_Pathfinding_Util_TileHandler_Cut___StaticFields { +}; + +struct IEqualityComparer_1_List_1_Pathfinding_Util_TileHandler_Cut___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEqualityComparer_1_List_1_Pathfinding_Util_TileHandler_Cut___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEqualityComparer_1_List_1_Pathfinding_Util_TileHandler_Cut___VTable vtable; +}; + +struct IEnumerable_1_List_1_Pathfinding_Util_TileHandler_Cut___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_List_1_Pathfinding_Util_TileHandler_Cut___StaticFields { +}; + +struct IEnumerable_1_List_1_Pathfinding_Util_TileHandler_Cut___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_List_1_Pathfinding_Util_TileHandler_Cut___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_List_1_Pathfinding_Util_TileHandler_Cut___VTable vtable; +}; + +struct HashSet_1_List_1_Pathfinding_Util_TileHandler_Cut___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_T__Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData Add; + VirtualInvokeData UnionWith; + VirtualInvokeData IntersectWith; + VirtualInvokeData ExceptWith; + VirtualInvokeData SymmetricExceptWith; + VirtualInvokeData IsSubsetOf; + VirtualInvokeData IsSupersetOf; + VirtualInvokeData IsProperSupersetOf; + VirtualInvokeData IsProperSubsetOf; + VirtualInvokeData Overlaps; + VirtualInvokeData SetEquals; + VirtualInvokeData get_Count_1; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct HashSet_1_List_1_Pathfinding_Util_TileHandler_Cut___StaticFields { +}; + +struct HashSet_1_List_1_Pathfinding_Util_TileHandler_Cut___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_List_1_Pathfinding_Util_TileHandler_Cut___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_List_1_Pathfinding_Util_TileHandler_Cut___VTable vtable; +}; + +struct ListPool_1_TileHandler_Cut___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ListPool_1_TileHandler_Cut___StaticFields { + struct List_1_List_1_Pathfinding_Util_TileHandler_Cut_ *pool; + struct List_1_List_1_Pathfinding_Util_TileHandler_Cut_ *largePool; + struct HashSet_1_List_1_Pathfinding_Util_TileHandler_Cut_ *inPool; +}; + +struct ListPool_1_TileHandler_Cut___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ListPool_1_TileHandler_Cut___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ListPool_1_TileHandler_Cut___VTable vtable; +}; + +struct List_1_Pathfinding_NavmeshCut__1__VTable { +}; + +struct List_1_Pathfinding_NavmeshCut__1__StaticFields { +}; + +struct List_1_Pathfinding_NavmeshCut__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Pathfinding_NavmeshCut__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Pathfinding_NavmeshCut__1__VTable vtable; +}; + +struct List_1_Pathfinding_Util_TileHandler_Cut__1__VTable { +}; + +struct List_1_Pathfinding_Util_TileHandler_Cut__1__StaticFields { +}; + +struct List_1_Pathfinding_Util_TileHandler_Cut__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Pathfinding_Util_TileHandler_Cut__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Pathfinding_Util_TileHandler_Cut__1__VTable vtable; +}; + +struct List_1_List_1_Pathfinding_ClipperLib_IntPoint__1__VTable { +}; + +struct List_1_List_1_Pathfinding_ClipperLib_IntPoint__1__StaticFields { +}; + +struct List_1_List_1_Pathfinding_ClipperLib_IntPoint__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_List_1_Pathfinding_ClipperLib_IntPoint__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_List_1_Pathfinding_ClipperLib_IntPoint__1__VTable vtable; +}; + +struct ICollection_1_Pathfinding_Poly2Tri_DelaunayTriangle_ { + struct ICollection_1_Pathfinding_Poly2Tri_DelaunayTriangle___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_Pathfinding_Poly2Tri_DelaunayTriangle___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_Pathfinding_Poly2Tri_DelaunayTriangle___StaticFields { +}; + +struct ICollection_1_Pathfinding_Poly2Tri_DelaunayTriangle___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_Pathfinding_Poly2Tri_DelaunayTriangle___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_Pathfinding_Poly2Tri_DelaunayTriangle___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32_ { + int32_t hashCode; + int32_t next; + struct TriangulationPoint *key; + int32_t value; +}; + +struct Dictionary_2_TKey_TValue_Entry_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32___Boxed { + struct Dictionary_2_TKey_TValue_Entry_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32_ fields; +}; + +struct __declspec(align(8)) Dictionary_2_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_Pathfinding_Poly2Tri_TriangulationPoint_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32_ { + struct Dictionary_2_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32___Class *klass; + MonitorData *monitor; + struct Dictionary_2_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32___Fields fields; +}; + +struct Dictionary_2_TKey_TValue_Entry_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32___Array { + struct Dictionary_2_TKey_TValue_Entry_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Dictionary_2_TKey_TValue_Entry_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32_ vector[32]; +}; + +struct IEqualityComparer_1_Pathfinding_Poly2Tri_TriangulationPoint_ { + struct IEqualityComparer_1_Pathfinding_Poly2Tri_TriangulationPoint___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_KeyCollection_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32___Fields { + struct Dictionary_2_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32_ { + struct Dictionary_2_TKey_TValue_KeyCollection_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_KeyCollection_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32___Fields fields; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_ValueCollection_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32___Fields { + struct Dictionary_2_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32_ { + struct Dictionary_2_TKey_TValue_ValueCollection_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32___Fields fields; +}; + +struct KeyValuePair_2_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32_ { + struct TriangulationPoint *key; + int32_t value; +}; + +struct KeyValuePair_2_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32___Boxed { + struct KeyValuePair_2_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32___Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32_ fields; +}; + +struct KeyValuePair_2_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32___Array { + struct KeyValuePair_2_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct KeyValuePair_2_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32_ vector[32]; +}; + +struct IEnumerator_1_KeyValuePair_2_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32_ { + struct IEnumerator_1_KeyValuePair_2_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_Pathfinding_Poly2Tri_TriangulationPoint_ { + struct IEnumerable_1_Pathfinding_Poly2Tri_TriangulationPoint___Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Dictionary_2_TKey_TValue_Entry_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32___Array__VTable { +}; + +struct Dictionary_2_TKey_TValue_Entry_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32___Array__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32___Array__VTable vtable; +}; + +struct IEqualityComparer_1_Pathfinding_Poly2Tri_TriangulationPoint___VTable { + VirtualInvokeData Equals; + VirtualInvokeData GetHashCode; +}; + +struct IEqualityComparer_1_Pathfinding_Poly2Tri_TriangulationPoint___StaticFields { +}; + +struct IEqualityComparer_1_Pathfinding_Poly2Tri_TriangulationPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEqualityComparer_1_Pathfinding_Poly2Tri_TriangulationPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEqualityComparer_1_Pathfinding_Poly2Tri_TriangulationPoint___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TKey__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_KeyCollection_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_KeyCollection_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TValue__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32___VTable vtable; +}; + +struct KeyValuePair_2_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct KeyValuePair_2_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32___StaticFields { +}; + +struct KeyValuePair_2_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32___VTable vtable; +}; + +struct KeyValuePair_2_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32___Array__VTable { +}; + +struct KeyValuePair_2_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32___Array__StaticFields { +}; + +struct KeyValuePair_2_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32___Array__VTable vtable; +}; + +struct IEnumerator_1_KeyValuePair_2_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_KeyValuePair_2_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32___StaticFields { +}; + +struct IEnumerator_1_KeyValuePair_2_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_KeyValuePair_2_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_KeyValuePair_2_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32___VTable vtable; +}; + +struct IEnumerable_1_Pathfinding_Poly2Tri_TriangulationPoint___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_Pathfinding_Poly2Tri_TriangulationPoint___StaticFields { +}; + +struct IEnumerable_1_Pathfinding_Poly2Tri_TriangulationPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_Pathfinding_Poly2Tri_TriangulationPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_Pathfinding_Poly2Tri_TriangulationPoint___VTable vtable; +}; + +struct Dictionary_2_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Values; + VirtualInvokeData ContainsKey; + VirtualInvokeData Add; + VirtualInvokeData Remove; + VirtualInvokeData TryGetValue; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add; + VirtualInvokeData Clear; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_get_Item; + VirtualInvokeData System_Collections_IDictionary_set_Item; + VirtualInvokeData System_Collections_IDictionary_get_Keys; + VirtualInvokeData System_Collections_IDictionary_get_Values; + VirtualInvokeData System_Collections_IDictionary_Contains; + VirtualInvokeData System_Collections_IDictionary_Add; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IDictionary_get_IsReadOnly; + VirtualInvokeData System_Collections_IDictionary_get_IsFixedSize; + VirtualInvokeData System_Collections_IDictionary_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_Remove; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData TryGetValue_1; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Values; + VirtualInvokeData get_Count_2; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct Dictionary_2_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32___StaticFields { +}; + +struct Dictionary_2_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_Pathfinding_Poly2Tri_TriangulationPoint_System_Int32___VTable vtable; +}; + +struct NativeTools { + struct NativeTools__Class *klass; + MonitorData *monitor; +}; + +struct NativeTools__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct NativeTools__StaticFields { + struct Byte__Array *QHHiZCgqwVlYNfSxrkWSNeSxQPNm; +}; + +struct NativeTools__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NativeTools__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NativeTools__VTable vtable; +}; + +struct ListPool_1_Pathfinding_RecastMeshObj_ { + struct ListPool_1_Pathfinding_RecastMeshObj___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) List_1_List_1_Pathfinding_RecastMeshObj___Fields { + struct List_1_Pathfinding_RecastMeshObj___Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_List_1_Pathfinding_RecastMeshObj_ { + struct List_1_List_1_Pathfinding_RecastMeshObj___Class *klass; + MonitorData *monitor; + struct List_1_List_1_Pathfinding_RecastMeshObj___Fields fields; +}; + +struct List_1_Pathfinding_RecastMeshObj___Array { + struct List_1_Pathfinding_RecastMeshObj___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct List_1_Pathfinding_RecastMeshObj_ *vector[32]; +}; + +struct IEnumerator_1_List_1_Pathfinding_RecastMeshObj_ { + struct IEnumerator_1_List_1_Pathfinding_RecastMeshObj___Class *klass; + MonitorData *monitor; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_RecastMeshObj_ { + int32_t hashCode; + int32_t next; + struct List_1_Pathfinding_RecastMeshObj_ *value; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_RecastMeshObj___Boxed { + struct HashSet_1_T_Slot_List_1_Pathfinding_RecastMeshObj___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_List_1_Pathfinding_RecastMeshObj_ fields; +}; + +struct __declspec(align(8)) HashSet_1_List_1_Pathfinding_RecastMeshObj___Fields { + struct Int32__Array *_buckets; + struct HashSet_1_T_Slot_List_1_Pathfinding_RecastMeshObj___Array *_slots; + int32_t _count; + int32_t _lastIndex; + int32_t _freeList; + struct IEqualityComparer_1_List_1_Pathfinding_RecastMeshObj_ *_comparer; + int32_t _version; + struct SerializationInfo *_siInfo; +}; + +struct HashSet_1_List_1_Pathfinding_RecastMeshObj_ { + struct HashSet_1_List_1_Pathfinding_RecastMeshObj___Class *klass; + MonitorData *monitor; + struct HashSet_1_List_1_Pathfinding_RecastMeshObj___Fields fields; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_RecastMeshObj___Array { + struct HashSet_1_T_Slot_List_1_Pathfinding_RecastMeshObj___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct HashSet_1_T_Slot_List_1_Pathfinding_RecastMeshObj_ vector[32]; +}; + +struct IEqualityComparer_1_List_1_Pathfinding_RecastMeshObj_ { + struct IEqualityComparer_1_List_1_Pathfinding_RecastMeshObj___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_List_1_Pathfinding_RecastMeshObj_ { + struct IEnumerable_1_List_1_Pathfinding_RecastMeshObj___Class *klass; + MonitorData *monitor; +}; + +struct List_1_Pathfinding_RecastMeshObj___Array__VTable { +}; + +struct List_1_Pathfinding_RecastMeshObj___Array__StaticFields { +}; + +struct List_1_Pathfinding_RecastMeshObj___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Pathfinding_RecastMeshObj___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Pathfinding_RecastMeshObj___Array__VTable vtable; +}; + +struct IEnumerator_1_List_1_Pathfinding_RecastMeshObj___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_List_1_Pathfinding_RecastMeshObj___StaticFields { +}; + +struct IEnumerator_1_List_1_Pathfinding_RecastMeshObj___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_List_1_Pathfinding_RecastMeshObj___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_List_1_Pathfinding_RecastMeshObj___VTable vtable; +}; + +struct List_1_List_1_Pathfinding_RecastMeshObj___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_List_1_Pathfinding_RecastMeshObj___StaticFields { + struct List_1_Pathfinding_RecastMeshObj___Array *s_emptyArray; +}; + +struct List_1_List_1_Pathfinding_RecastMeshObj___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_List_1_Pathfinding_RecastMeshObj___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_List_1_Pathfinding_RecastMeshObj___VTable vtable; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_RecastMeshObj___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_RecastMeshObj___StaticFields { +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_RecastMeshObj___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_T_Slot_List_1_Pathfinding_RecastMeshObj___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_T_Slot_List_1_Pathfinding_RecastMeshObj___VTable vtable; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_RecastMeshObj___Array__VTable { +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_RecastMeshObj___Array__StaticFields { +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_RecastMeshObj___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_T_Slot_List_1_Pathfinding_RecastMeshObj___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_T_Slot_List_1_Pathfinding_RecastMeshObj___Array__VTable vtable; +}; + +struct IEqualityComparer_1_List_1_Pathfinding_RecastMeshObj___VTable { + VirtualInvokeData Equals; + VirtualInvokeData GetHashCode; +}; + +struct IEqualityComparer_1_List_1_Pathfinding_RecastMeshObj___StaticFields { +}; + +struct IEqualityComparer_1_List_1_Pathfinding_RecastMeshObj___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEqualityComparer_1_List_1_Pathfinding_RecastMeshObj___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEqualityComparer_1_List_1_Pathfinding_RecastMeshObj___VTable vtable; +}; + +struct IEnumerable_1_List_1_Pathfinding_RecastMeshObj___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_List_1_Pathfinding_RecastMeshObj___StaticFields { +}; + +struct IEnumerable_1_List_1_Pathfinding_RecastMeshObj___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_List_1_Pathfinding_RecastMeshObj___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_List_1_Pathfinding_RecastMeshObj___VTable vtable; +}; + +struct HashSet_1_List_1_Pathfinding_RecastMeshObj___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_T__Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData Add; + VirtualInvokeData UnionWith; + VirtualInvokeData IntersectWith; + VirtualInvokeData ExceptWith; + VirtualInvokeData SymmetricExceptWith; + VirtualInvokeData IsSubsetOf; + VirtualInvokeData IsSupersetOf; + VirtualInvokeData IsProperSupersetOf; + VirtualInvokeData IsProperSubsetOf; + VirtualInvokeData Overlaps; + VirtualInvokeData SetEquals; + VirtualInvokeData get_Count_1; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct HashSet_1_List_1_Pathfinding_RecastMeshObj___StaticFields { +}; + +struct HashSet_1_List_1_Pathfinding_RecastMeshObj___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_List_1_Pathfinding_RecastMeshObj___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_List_1_Pathfinding_RecastMeshObj___VTable vtable; +}; + +struct ListPool_1_Pathfinding_RecastMeshObj___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ListPool_1_Pathfinding_RecastMeshObj___StaticFields { + struct List_1_List_1_Pathfinding_RecastMeshObj_ *pool; + struct List_1_List_1_Pathfinding_RecastMeshObj_ *largePool; + struct HashSet_1_List_1_Pathfinding_RecastMeshObj_ *inPool; +}; + +struct ListPool_1_Pathfinding_RecastMeshObj___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ListPool_1_Pathfinding_RecastMeshObj___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ListPool_1_Pathfinding_RecastMeshObj___VTable vtable; +}; + +struct List_1_Pathfinding_RecastMeshObj__1__VTable { +}; + +struct List_1_Pathfinding_RecastMeshObj__1__StaticFields { +}; + +struct List_1_Pathfinding_RecastMeshObj__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Pathfinding_RecastMeshObj__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Pathfinding_RecastMeshObj__1__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Mesh_UnityEngine_Vector3_ { + int32_t hashCode; + int32_t next; + struct Mesh *key; + struct Vector3__Array *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Mesh_UnityEngine_Vector3___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Mesh_UnityEngine_Vector3___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Mesh_UnityEngine_Vector3_ fields; +}; + +struct __declspec(align(8)) Dictionary_2_UnityEngine_Mesh_UnityEngine_Vector3___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Mesh_UnityEngine_Vector3___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_UnityEngine_Mesh_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_Mesh_UnityEngine_Vector3_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_Mesh_UnityEngine_Vector3_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_UnityEngine_Mesh_UnityEngine_Vector3_ { + struct Dictionary_2_UnityEngine_Mesh_UnityEngine_Vector3___Class *klass; + MonitorData *monitor; + struct Dictionary_2_UnityEngine_Mesh_UnityEngine_Vector3___Fields fields; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Mesh_UnityEngine_Vector3___Array { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Mesh_UnityEngine_Vector3___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Mesh_UnityEngine_Vector3_ vector[32]; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_Mesh_UnityEngine_Vector3___Fields { + struct Dictionary_2_UnityEngine_Mesh_UnityEngine_Vector3_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_Mesh_UnityEngine_Vector3_ { + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_Mesh_UnityEngine_Vector3___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_Mesh_UnityEngine_Vector3___Fields fields; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_Mesh_UnityEngine_Vector3___Fields { + struct Dictionary_2_UnityEngine_Mesh_UnityEngine_Vector3_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_Mesh_UnityEngine_Vector3_ { + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_Mesh_UnityEngine_Vector3___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_Mesh_UnityEngine_Vector3___Fields fields; +}; + +struct ICollection_1_UnityEngine_Vector3__1 { + struct ICollection_1_UnityEngine_Vector3__1__Class *klass; + MonitorData *monitor; +}; + +struct KeyValuePair_2_UnityEngine_Mesh_UnityEngine_Vector3_ { + struct Mesh *key; + struct Vector3__Array *value; +}; + +struct KeyValuePair_2_UnityEngine_Mesh_UnityEngine_Vector3___Boxed { + struct KeyValuePair_2_UnityEngine_Mesh_UnityEngine_Vector3___Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_UnityEngine_Mesh_UnityEngine_Vector3_ fields; +}; + +struct KeyValuePair_2_UnityEngine_Mesh_UnityEngine_Vector3___Array { + struct KeyValuePair_2_UnityEngine_Mesh_UnityEngine_Vector3___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct KeyValuePair_2_UnityEngine_Mesh_UnityEngine_Vector3_ vector[32]; +}; + +struct IEnumerator_1_KeyValuePair_2_UnityEngine_Mesh_UnityEngine_Vector3_ { + struct IEnumerator_1_KeyValuePair_2_UnityEngine_Mesh_UnityEngine_Vector3___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_UnityEngine_Vector3__1 { + struct IEnumerable_1_UnityEngine_Vector3__1__Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Mesh_UnityEngine_Vector3___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Mesh_UnityEngine_Vector3___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Mesh_UnityEngine_Vector3___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Mesh_UnityEngine_Vector3___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Mesh_UnityEngine_Vector3___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Mesh_UnityEngine_Vector3___Array__VTable { +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Mesh_UnityEngine_Vector3___Array__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Mesh_UnityEngine_Vector3___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Mesh_UnityEngine_Vector3___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Mesh_UnityEngine_Vector3___Array__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_Mesh_UnityEngine_Vector3___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TKey__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_Mesh_UnityEngine_Vector3___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_Mesh_UnityEngine_Vector3___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_Mesh_UnityEngine_Vector3___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_Mesh_UnityEngine_Vector3___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_Mesh_UnityEngine_Vector3___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TValue__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_Mesh_UnityEngine_Vector3___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_Mesh_UnityEngine_Vector3___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_Mesh_UnityEngine_Vector3___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_Mesh_UnityEngine_Vector3___VTable vtable; +}; + +struct ICollection_1_UnityEngine_Vector3__1__VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_UnityEngine_Vector3__1__StaticFields { +}; + +struct ICollection_1_UnityEngine_Vector3__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_UnityEngine_Vector3__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_UnityEngine_Vector3__1__VTable vtable; +}; + +struct KeyValuePair_2_UnityEngine_Mesh_UnityEngine_Vector3___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct KeyValuePair_2_UnityEngine_Mesh_UnityEngine_Vector3___StaticFields { +}; + +struct KeyValuePair_2_UnityEngine_Mesh_UnityEngine_Vector3___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_UnityEngine_Mesh_UnityEngine_Vector3___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_UnityEngine_Mesh_UnityEngine_Vector3___VTable vtable; +}; + +struct KeyValuePair_2_UnityEngine_Mesh_UnityEngine_Vector3___Array__VTable { +}; + +struct KeyValuePair_2_UnityEngine_Mesh_UnityEngine_Vector3___Array__StaticFields { +}; + +struct KeyValuePair_2_UnityEngine_Mesh_UnityEngine_Vector3___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_UnityEngine_Mesh_UnityEngine_Vector3___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_UnityEngine_Mesh_UnityEngine_Vector3___Array__VTable vtable; +}; + +struct IEnumerator_1_KeyValuePair_2_UnityEngine_Mesh_UnityEngine_Vector3___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_KeyValuePair_2_UnityEngine_Mesh_UnityEngine_Vector3___StaticFields { +}; + +struct IEnumerator_1_KeyValuePair_2_UnityEngine_Mesh_UnityEngine_Vector3___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_KeyValuePair_2_UnityEngine_Mesh_UnityEngine_Vector3___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_KeyValuePair_2_UnityEngine_Mesh_UnityEngine_Vector3___VTable vtable; +}; + +struct IEnumerable_1_UnityEngine_Vector3__1__VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_UnityEngine_Vector3__1__StaticFields { +}; + +struct IEnumerable_1_UnityEngine_Vector3__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_UnityEngine_Vector3__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_UnityEngine_Vector3__1__VTable vtable; +}; + +struct Dictionary_2_UnityEngine_Mesh_UnityEngine_Vector3___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Values; + VirtualInvokeData ContainsKey; + VirtualInvokeData Add; + VirtualInvokeData Remove; + VirtualInvokeData TryGetValue; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add; + VirtualInvokeData Clear; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_get_Item; + VirtualInvokeData System_Collections_IDictionary_set_Item; + VirtualInvokeData System_Collections_IDictionary_get_Keys; + VirtualInvokeData System_Collections_IDictionary_get_Values; + VirtualInvokeData System_Collections_IDictionary_Contains; + VirtualInvokeData System_Collections_IDictionary_Add; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IDictionary_get_IsReadOnly; + VirtualInvokeData System_Collections_IDictionary_get_IsFixedSize; + VirtualInvokeData System_Collections_IDictionary_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_Remove; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData TryGetValue_1; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Values; + VirtualInvokeData get_Count_2; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct Dictionary_2_UnityEngine_Mesh_UnityEngine_Vector3___StaticFields { +}; + +struct Dictionary_2_UnityEngine_Mesh_UnityEngine_Vector3___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_UnityEngine_Mesh_UnityEngine_Vector3___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_UnityEngine_Mesh_UnityEngine_Vector3___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Mesh_System_Int32_ { + int32_t hashCode; + int32_t next; + struct Mesh *key; + struct Int32__Array *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Mesh_System_Int32___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Mesh_System_Int32___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Mesh_System_Int32_ fields; +}; + +struct __declspec(align(8)) Dictionary_2_UnityEngine_Mesh_System_Int32___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Mesh_System_Int32___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_UnityEngine_Mesh_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_Mesh_System_Int32_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_Mesh_System_Int32_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_UnityEngine_Mesh_System_Int32_ { + struct Dictionary_2_UnityEngine_Mesh_System_Int32___Class *klass; + MonitorData *monitor; + struct Dictionary_2_UnityEngine_Mesh_System_Int32___Fields fields; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Mesh_System_Int32___Array { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Mesh_System_Int32___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Mesh_System_Int32_ vector[32]; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_Mesh_System_Int32___Fields { + struct Dictionary_2_UnityEngine_Mesh_System_Int32_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_Mesh_System_Int32_ { + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_Mesh_System_Int32___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_Mesh_System_Int32___Fields fields; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_Mesh_System_Int32___Fields { + struct Dictionary_2_UnityEngine_Mesh_System_Int32_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_Mesh_System_Int32_ { + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_Mesh_System_Int32___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_Mesh_System_Int32___Fields fields; +}; + +struct ICollection_1_System_Int32__1 { + struct ICollection_1_System_Int32__1__Class *klass; + MonitorData *monitor; +}; + +struct KeyValuePair_2_UnityEngine_Mesh_System_Int32_ { + struct Mesh *key; + struct Int32__Array *value; +}; + +struct KeyValuePair_2_UnityEngine_Mesh_System_Int32___Boxed { + struct KeyValuePair_2_UnityEngine_Mesh_System_Int32___Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_UnityEngine_Mesh_System_Int32_ fields; +}; + +struct KeyValuePair_2_UnityEngine_Mesh_System_Int32___Array { + struct KeyValuePair_2_UnityEngine_Mesh_System_Int32___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct KeyValuePair_2_UnityEngine_Mesh_System_Int32_ vector[32]; +}; + +struct IEnumerator_1_KeyValuePair_2_UnityEngine_Mesh_System_Int32_ { + struct IEnumerator_1_KeyValuePair_2_UnityEngine_Mesh_System_Int32___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_System_Int32__1 { + struct IEnumerable_1_System_Int32__1__Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Mesh_System_Int32___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Mesh_System_Int32___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Mesh_System_Int32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Mesh_System_Int32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Mesh_System_Int32___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Mesh_System_Int32___Array__VTable { +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Mesh_System_Int32___Array__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Mesh_System_Int32___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Mesh_System_Int32___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Mesh_System_Int32___Array__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_Mesh_System_Int32___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TKey__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_Mesh_System_Int32___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_Mesh_System_Int32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_Mesh_System_Int32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_Mesh_System_Int32___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_Mesh_System_Int32___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TValue__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_Mesh_System_Int32___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_Mesh_System_Int32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_Mesh_System_Int32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_Mesh_System_Int32___VTable vtable; +}; + +struct ICollection_1_System_Int32__1__VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_System_Int32__1__StaticFields { +}; + +struct ICollection_1_System_Int32__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_System_Int32__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_System_Int32__1__VTable vtable; +}; + +struct KeyValuePair_2_UnityEngine_Mesh_System_Int32___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct KeyValuePair_2_UnityEngine_Mesh_System_Int32___StaticFields { +}; + +struct KeyValuePair_2_UnityEngine_Mesh_System_Int32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_UnityEngine_Mesh_System_Int32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_UnityEngine_Mesh_System_Int32___VTable vtable; +}; + +struct KeyValuePair_2_UnityEngine_Mesh_System_Int32___Array__VTable { +}; + +struct KeyValuePair_2_UnityEngine_Mesh_System_Int32___Array__StaticFields { +}; + +struct KeyValuePair_2_UnityEngine_Mesh_System_Int32___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_UnityEngine_Mesh_System_Int32___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_UnityEngine_Mesh_System_Int32___Array__VTable vtable; +}; + +struct IEnumerator_1_KeyValuePair_2_UnityEngine_Mesh_System_Int32___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_KeyValuePair_2_UnityEngine_Mesh_System_Int32___StaticFields { +}; + +struct IEnumerator_1_KeyValuePair_2_UnityEngine_Mesh_System_Int32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_KeyValuePair_2_UnityEngine_Mesh_System_Int32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_KeyValuePair_2_UnityEngine_Mesh_System_Int32___VTable vtable; +}; + +struct IEnumerable_1_System_Int32__1__VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_System_Int32__1__StaticFields { +}; + +struct IEnumerable_1_System_Int32__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_System_Int32__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_System_Int32__1__VTable vtable; +}; + +struct Dictionary_2_UnityEngine_Mesh_System_Int32___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Values; + VirtualInvokeData ContainsKey; + VirtualInvokeData Add; + VirtualInvokeData Remove; + VirtualInvokeData TryGetValue; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add; + VirtualInvokeData Clear; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_get_Item; + VirtualInvokeData System_Collections_IDictionary_set_Item; + VirtualInvokeData System_Collections_IDictionary_get_Keys; + VirtualInvokeData System_Collections_IDictionary_get_Values; + VirtualInvokeData System_Collections_IDictionary_Contains; + VirtualInvokeData System_Collections_IDictionary_Add; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IDictionary_get_IsReadOnly; + VirtualInvokeData System_Collections_IDictionary_get_IsFixedSize; + VirtualInvokeData System_Collections_IDictionary_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_Remove; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData TryGetValue_1; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Values; + VirtualInvokeData get_Count_2; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct Dictionary_2_UnityEngine_Mesh_System_Int32___StaticFields { +}; + +struct Dictionary_2_UnityEngine_Mesh_System_Int32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_UnityEngine_Mesh_System_Int32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_UnityEngine_Mesh_System_Int32___VTable vtable; +}; + +struct ObjectPoolSimple_1_System_Collections_Generic_Dictionary_2__1 { + struct ObjectPoolSimple_1_System_Collections_Generic_Dictionary_2__1__Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) List_1_Dictionary_2_Pathfinding_Int3_System_Int32___Fields { + struct Dictionary_2_Pathfinding_Int3_System_Int32___Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Dictionary_2_Pathfinding_Int3_System_Int32_ { + struct List_1_Dictionary_2_Pathfinding_Int3_System_Int32___Class *klass; + MonitorData *monitor; + struct List_1_Dictionary_2_Pathfinding_Int3_System_Int32___Fields fields; +}; + +struct Dictionary_2_Pathfinding_Int3_System_Int32___Array { + struct Dictionary_2_Pathfinding_Int3_System_Int32___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Dictionary_2_Pathfinding_Int3_System_Int32_ *vector[32]; +}; + +struct IEnumerator_1_Dictionary_2_Pathfinding_Int3_System_Int32_ { + struct IEnumerator_1_Dictionary_2_Pathfinding_Int3_System_Int32___Class *klass; + MonitorData *monitor; +}; + +struct HashSet_1_T_Slot_Dictionary_2_Pathfinding_Int3_System_Int32_ { + int32_t hashCode; + int32_t next; + struct Dictionary_2_Pathfinding_Int3_System_Int32_ *value; +}; + +struct HashSet_1_T_Slot_Dictionary_2_Pathfinding_Int3_System_Int32___Boxed { + struct HashSet_1_T_Slot_Dictionary_2_Pathfinding_Int3_System_Int32___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_Dictionary_2_Pathfinding_Int3_System_Int32_ fields; +}; + +struct __declspec(align(8)) HashSet_1_Dictionary_2_Pathfinding_Int3_System_Int32___Fields { + struct Int32__Array *_buckets; + struct HashSet_1_T_Slot_Dictionary_2_Pathfinding_Int3_System_Int32___Array *_slots; + int32_t _count; + int32_t _lastIndex; + int32_t _freeList; + struct IEqualityComparer_1_Dictionary_2_Pathfinding_Int3_System_Int32_ *_comparer; + int32_t _version; + struct SerializationInfo *_siInfo; +}; + +struct HashSet_1_Dictionary_2_Pathfinding_Int3_System_Int32_ { + struct HashSet_1_Dictionary_2_Pathfinding_Int3_System_Int32___Class *klass; + MonitorData *monitor; + struct HashSet_1_Dictionary_2_Pathfinding_Int3_System_Int32___Fields fields; +}; + +struct HashSet_1_T_Slot_Dictionary_2_Pathfinding_Int3_System_Int32___Array { + struct HashSet_1_T_Slot_Dictionary_2_Pathfinding_Int3_System_Int32___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct HashSet_1_T_Slot_Dictionary_2_Pathfinding_Int3_System_Int32_ vector[32]; +}; + +struct IEqualityComparer_1_Dictionary_2_Pathfinding_Int3_System_Int32_ { + struct IEqualityComparer_1_Dictionary_2_Pathfinding_Int3_System_Int32___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_Dictionary_2_Pathfinding_Int3_System_Int32_ { + struct IEnumerable_1_Dictionary_2_Pathfinding_Int3_System_Int32___Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_Pathfinding_Int3_System_Int32___Array__VTable { +}; + +struct Dictionary_2_Pathfinding_Int3_System_Int32___Array__StaticFields { +}; + +struct Dictionary_2_Pathfinding_Int3_System_Int32___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_Pathfinding_Int3_System_Int32___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_Pathfinding_Int3_System_Int32___Array__VTable vtable; +}; + +struct IEnumerator_1_Dictionary_2_Pathfinding_Int3_System_Int32___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_Dictionary_2_Pathfinding_Int3_System_Int32___StaticFields { +}; + +struct IEnumerator_1_Dictionary_2_Pathfinding_Int3_System_Int32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_Dictionary_2_Pathfinding_Int3_System_Int32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_Dictionary_2_Pathfinding_Int3_System_Int32___VTable vtable; +}; + +struct List_1_Dictionary_2_Pathfinding_Int3_System_Int32___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_Dictionary_2_Pathfinding_Int3_System_Int32___StaticFields { + struct Dictionary_2_Pathfinding_Int3_System_Int32___Array *s_emptyArray; +}; + +struct List_1_Dictionary_2_Pathfinding_Int3_System_Int32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Dictionary_2_Pathfinding_Int3_System_Int32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Dictionary_2_Pathfinding_Int3_System_Int32___VTable vtable; +}; + +struct HashSet_1_T_Slot_Dictionary_2_Pathfinding_Int3_System_Int32___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct HashSet_1_T_Slot_Dictionary_2_Pathfinding_Int3_System_Int32___StaticFields { +}; + +struct HashSet_1_T_Slot_Dictionary_2_Pathfinding_Int3_System_Int32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_T_Slot_Dictionary_2_Pathfinding_Int3_System_Int32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_T_Slot_Dictionary_2_Pathfinding_Int3_System_Int32___VTable vtable; +}; + +struct HashSet_1_T_Slot_Dictionary_2_Pathfinding_Int3_System_Int32___Array__VTable { +}; + +struct HashSet_1_T_Slot_Dictionary_2_Pathfinding_Int3_System_Int32___Array__StaticFields { +}; + +struct HashSet_1_T_Slot_Dictionary_2_Pathfinding_Int3_System_Int32___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_T_Slot_Dictionary_2_Pathfinding_Int3_System_Int32___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_T_Slot_Dictionary_2_Pathfinding_Int3_System_Int32___Array__VTable vtable; +}; + +struct IEqualityComparer_1_Dictionary_2_Pathfinding_Int3_System_Int32___VTable { + VirtualInvokeData Equals; + VirtualInvokeData GetHashCode; +}; + +struct IEqualityComparer_1_Dictionary_2_Pathfinding_Int3_System_Int32___StaticFields { +}; + +struct IEqualityComparer_1_Dictionary_2_Pathfinding_Int3_System_Int32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEqualityComparer_1_Dictionary_2_Pathfinding_Int3_System_Int32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEqualityComparer_1_Dictionary_2_Pathfinding_Int3_System_Int32___VTable vtable; +}; + +struct IEnumerable_1_Dictionary_2_Pathfinding_Int3_System_Int32___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_Dictionary_2_Pathfinding_Int3_System_Int32___StaticFields { +}; + +struct IEnumerable_1_Dictionary_2_Pathfinding_Int3_System_Int32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_Dictionary_2_Pathfinding_Int3_System_Int32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_Dictionary_2_Pathfinding_Int3_System_Int32___VTable vtable; +}; + +struct HashSet_1_Dictionary_2_Pathfinding_Int3_System_Int32___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_T__Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData Add; + VirtualInvokeData UnionWith; + VirtualInvokeData IntersectWith; + VirtualInvokeData ExceptWith; + VirtualInvokeData SymmetricExceptWith; + VirtualInvokeData IsSubsetOf; + VirtualInvokeData IsSupersetOf; + VirtualInvokeData IsProperSupersetOf; + VirtualInvokeData IsProperSubsetOf; + VirtualInvokeData Overlaps; + VirtualInvokeData SetEquals; + VirtualInvokeData get_Count_1; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct HashSet_1_Dictionary_2_Pathfinding_Int3_System_Int32___StaticFields { +}; + +struct HashSet_1_Dictionary_2_Pathfinding_Int3_System_Int32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_Dictionary_2_Pathfinding_Int3_System_Int32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_Dictionary_2_Pathfinding_Int3_System_Int32___VTable vtable; +}; + +struct ObjectPoolSimple_1_System_Collections_Generic_Dictionary_2__1__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ObjectPoolSimple_1_System_Collections_Generic_Dictionary_2__1__StaticFields { + struct List_1_Dictionary_2_Pathfinding_Int3_System_Int32_ *pool; + struct HashSet_1_Dictionary_2_Pathfinding_Int3_System_Int32_ *inPool; +}; + +struct ObjectPoolSimple_1_System_Collections_Generic_Dictionary_2__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ObjectPoolSimple_1_System_Collections_Generic_Dictionary_2__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ObjectPoolSimple_1_System_Collections_Generic_Dictionary_2__1__VTable vtable; +}; + +struct Dictionary_2_Pathfinding_Int3_System_Int32__1__VTable { +}; + +struct Dictionary_2_Pathfinding_Int3_System_Int32__1__StaticFields { +}; + +struct Dictionary_2_Pathfinding_Int3_System_Int32__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_Pathfinding_Int3_System_Int32__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_Pathfinding_Int3_System_Int32__1__VTable vtable; +}; + +struct __declspec(align(8)) List_1_LTDescr___Fields { + struct LTDescr__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_LTDescr_ { + struct List_1_LTDescr___Class *klass; + MonitorData *monitor; + struct List_1_LTDescr___Fields fields; +}; + +struct IEnumerator_1_LTDescr_ { + struct IEnumerator_1_LTDescr___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerator_1_LTDescr___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_LTDescr___StaticFields { +}; + +struct IEnumerator_1_LTDescr___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_LTDescr___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_LTDescr___VTable vtable; +}; + +struct List_1_LTDescr___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_LTDescr___StaticFields { + struct LTDescr__Array *s_emptyArray; +}; + +struct List_1_LTDescr___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_LTDescr___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_LTDescr___VTable vtable; +}; + +struct ListPool_1_UnityEngine_Color32_ { + struct ListPool_1_UnityEngine_Color32___Class *klass; + MonitorData *monitor; +}; + +struct HashSet_1_T_Slot_List_1_UnityEngine_Color32_ { + int32_t hashCode; + int32_t next; + struct List_1_UnityEngine_Color32_ *value; +}; + +struct HashSet_1_T_Slot_List_1_UnityEngine_Color32___Boxed { + struct HashSet_1_T_Slot_List_1_UnityEngine_Color32___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_List_1_UnityEngine_Color32_ fields; +}; + +struct __declspec(align(8)) HashSet_1_List_1_UnityEngine_Color32___Fields { + struct Int32__Array *_buckets; + struct HashSet_1_T_Slot_List_1_UnityEngine_Color32___Array *_slots; + int32_t _count; + int32_t _lastIndex; + int32_t _freeList; + struct IEqualityComparer_1_List_1_UnityEngine_Color32_ *_comparer; + int32_t _version; + struct SerializationInfo *_siInfo; +}; + +struct HashSet_1_List_1_UnityEngine_Color32_ { + struct HashSet_1_List_1_UnityEngine_Color32___Class *klass; + MonitorData *monitor; + struct HashSet_1_List_1_UnityEngine_Color32___Fields fields; +}; + +struct HashSet_1_T_Slot_List_1_UnityEngine_Color32___Array { + struct HashSet_1_T_Slot_List_1_UnityEngine_Color32___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct HashSet_1_T_Slot_List_1_UnityEngine_Color32_ vector[32]; +}; + +struct IEqualityComparer_1_List_1_UnityEngine_Color32_ { + struct IEqualityComparer_1_List_1_UnityEngine_Color32___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_List_1_UnityEngine_Color32_ { + struct IEnumerable_1_List_1_UnityEngine_Color32___Class *klass; + MonitorData *monitor; +}; + +struct HashSet_1_T_Slot_List_1_UnityEngine_Color32___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct HashSet_1_T_Slot_List_1_UnityEngine_Color32___StaticFields { +}; + +struct HashSet_1_T_Slot_List_1_UnityEngine_Color32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_T_Slot_List_1_UnityEngine_Color32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_T_Slot_List_1_UnityEngine_Color32___VTable vtable; +}; + +struct HashSet_1_T_Slot_List_1_UnityEngine_Color32___Array__VTable { +}; + +struct HashSet_1_T_Slot_List_1_UnityEngine_Color32___Array__StaticFields { +}; + +struct HashSet_1_T_Slot_List_1_UnityEngine_Color32___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_T_Slot_List_1_UnityEngine_Color32___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_T_Slot_List_1_UnityEngine_Color32___Array__VTable vtable; +}; + +struct IEqualityComparer_1_List_1_UnityEngine_Color32___VTable { + VirtualInvokeData Equals; + VirtualInvokeData GetHashCode; +}; + +struct IEqualityComparer_1_List_1_UnityEngine_Color32___StaticFields { +}; + +struct IEqualityComparer_1_List_1_UnityEngine_Color32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEqualityComparer_1_List_1_UnityEngine_Color32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEqualityComparer_1_List_1_UnityEngine_Color32___VTable vtable; +}; + +struct IEnumerable_1_List_1_UnityEngine_Color32___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_List_1_UnityEngine_Color32___StaticFields { +}; + +struct IEnumerable_1_List_1_UnityEngine_Color32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_List_1_UnityEngine_Color32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_List_1_UnityEngine_Color32___VTable vtable; +}; + +struct HashSet_1_List_1_UnityEngine_Color32___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_T__Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData Add; + VirtualInvokeData UnionWith; + VirtualInvokeData IntersectWith; + VirtualInvokeData ExceptWith; + VirtualInvokeData SymmetricExceptWith; + VirtualInvokeData IsSubsetOf; + VirtualInvokeData IsSupersetOf; + VirtualInvokeData IsProperSupersetOf; + VirtualInvokeData IsProperSubsetOf; + VirtualInvokeData Overlaps; + VirtualInvokeData SetEquals; + VirtualInvokeData get_Count_1; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct HashSet_1_List_1_UnityEngine_Color32___StaticFields { +}; + +struct HashSet_1_List_1_UnityEngine_Color32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_List_1_UnityEngine_Color32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_List_1_UnityEngine_Color32___VTable vtable; +}; + +struct ListPool_1_UnityEngine_Color32___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ListPool_1_UnityEngine_Color32___StaticFields { + struct List_1_List_1_UnityEngine_Color32_ *pool; + struct List_1_List_1_UnityEngine_Color32_ *largePool; + struct HashSet_1_List_1_UnityEngine_Color32_ *inPool; +}; + +struct ListPool_1_UnityEngine_Color32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ListPool_1_UnityEngine_Color32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ListPool_1_UnityEngine_Color32___VTable vtable; +}; + +struct ListPool_1_UnityEngine_Vector2_ { + struct ListPool_1_UnityEngine_Vector2___Class *klass; + MonitorData *monitor; +}; + +struct HashSet_1_T_Slot_List_1_UnityEngine_Vector2_ { + int32_t hashCode; + int32_t next; + struct List_1_UnityEngine_Vector2_ *value; +}; + +struct HashSet_1_T_Slot_List_1_UnityEngine_Vector2___Boxed { + struct HashSet_1_T_Slot_List_1_UnityEngine_Vector2___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_List_1_UnityEngine_Vector2_ fields; +}; + +struct __declspec(align(8)) HashSet_1_List_1_UnityEngine_Vector2___Fields { + struct Int32__Array *_buckets; + struct HashSet_1_T_Slot_List_1_UnityEngine_Vector2___Array *_slots; + int32_t _count; + int32_t _lastIndex; + int32_t _freeList; + struct IEqualityComparer_1_List_1_UnityEngine_Vector2_ *_comparer; + int32_t _version; + struct SerializationInfo *_siInfo; +}; + +struct HashSet_1_List_1_UnityEngine_Vector2_ { + struct HashSet_1_List_1_UnityEngine_Vector2___Class *klass; + MonitorData *monitor; + struct HashSet_1_List_1_UnityEngine_Vector2___Fields fields; +}; + +struct HashSet_1_T_Slot_List_1_UnityEngine_Vector2___Array { + struct HashSet_1_T_Slot_List_1_UnityEngine_Vector2___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct HashSet_1_T_Slot_List_1_UnityEngine_Vector2_ vector[32]; +}; + +struct IEqualityComparer_1_List_1_UnityEngine_Vector2_ { + struct IEqualityComparer_1_List_1_UnityEngine_Vector2___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_List_1_UnityEngine_Vector2_ { + struct IEnumerable_1_List_1_UnityEngine_Vector2___Class *klass; + MonitorData *monitor; +}; + +struct HashSet_1_T_Slot_List_1_UnityEngine_Vector2___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct HashSet_1_T_Slot_List_1_UnityEngine_Vector2___StaticFields { +}; + +struct HashSet_1_T_Slot_List_1_UnityEngine_Vector2___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_T_Slot_List_1_UnityEngine_Vector2___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_T_Slot_List_1_UnityEngine_Vector2___VTable vtable; +}; + +struct HashSet_1_T_Slot_List_1_UnityEngine_Vector2___Array__VTable { +}; + +struct HashSet_1_T_Slot_List_1_UnityEngine_Vector2___Array__StaticFields { +}; + +struct HashSet_1_T_Slot_List_1_UnityEngine_Vector2___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_T_Slot_List_1_UnityEngine_Vector2___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_T_Slot_List_1_UnityEngine_Vector2___Array__VTable vtable; +}; + +struct IEqualityComparer_1_List_1_UnityEngine_Vector2___VTable { + VirtualInvokeData Equals; + VirtualInvokeData GetHashCode; +}; + +struct IEqualityComparer_1_List_1_UnityEngine_Vector2___StaticFields { +}; + +struct IEqualityComparer_1_List_1_UnityEngine_Vector2___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEqualityComparer_1_List_1_UnityEngine_Vector2___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEqualityComparer_1_List_1_UnityEngine_Vector2___VTable vtable; +}; + +struct IEnumerable_1_List_1_UnityEngine_Vector2___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_List_1_UnityEngine_Vector2___StaticFields { +}; + +struct IEnumerable_1_List_1_UnityEngine_Vector2___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_List_1_UnityEngine_Vector2___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_List_1_UnityEngine_Vector2___VTable vtable; +}; + +struct HashSet_1_List_1_UnityEngine_Vector2___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_T__Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData Add; + VirtualInvokeData UnionWith; + VirtualInvokeData IntersectWith; + VirtualInvokeData ExceptWith; + VirtualInvokeData SymmetricExceptWith; + VirtualInvokeData IsSubsetOf; + VirtualInvokeData IsSupersetOf; + VirtualInvokeData IsProperSupersetOf; + VirtualInvokeData IsProperSubsetOf; + VirtualInvokeData Overlaps; + VirtualInvokeData SetEquals; + VirtualInvokeData get_Count_1; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct HashSet_1_List_1_UnityEngine_Vector2___StaticFields { +}; + +struct HashSet_1_List_1_UnityEngine_Vector2___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_List_1_UnityEngine_Vector2___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_List_1_UnityEngine_Vector2___VTable vtable; +}; + +struct ListPool_1_UnityEngine_Vector2___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ListPool_1_UnityEngine_Vector2___StaticFields { + struct List_1_List_1_UnityEngine_Vector2_ *pool; + struct List_1_List_1_UnityEngine_Vector2_ *largePool; + struct HashSet_1_List_1_UnityEngine_Vector2_ *inPool; +}; + +struct ListPool_1_UnityEngine_Vector2___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ListPool_1_UnityEngine_Vector2___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ListPool_1_UnityEngine_Vector2___VTable vtable; +}; + +struct GraphGizmoHelper___VTable { +}; + +struct GraphGizmoHelper___StaticFields { +}; + +struct GraphGizmoHelper___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GraphGizmoHelper___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GraphGizmoHelper___VTable vtable; +}; + +struct RetainedGizmos_Builder___VTable { +}; + +struct RetainedGizmos_Builder___StaticFields { +}; + +struct RetainedGizmos_Builder___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RetainedGizmos_Builder___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RetainedGizmos_Builder___VTable vtable; +}; + +struct mPaPWDBbSWieAQWusiGiHwPgKihA { + struct mPaPWDBbSWieAQWusiGiHwPgKihA__Class *klass; + MonitorData *monitor; +}; + +struct mPaPWDBbSWieAQWusiGiHwPgKihA__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct mPaPWDBbSWieAQWusiGiHwPgKihA__StaticFields { + int32_t YiUBRrgDKvSZmIYsuiUWgLuvjkrAb; + int32_t UzFiprVprJHgiqeKeamyYPtEaCwF; + int32_t XMUZSKUWAMQqdpZCPEdkgkViOtTQ; + struct String *vlVEayJtcaeAmTavUULkgFJENGybb; + struct List_1_System_Reflection_Assembly_ *ypeHBYufvODaQlHgGjtgpuLRKnvm; +}; + +struct mPaPWDBbSWieAQWusiGiHwPgKihA__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct mPaPWDBbSWieAQWusiGiHwPgKihA__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct mPaPWDBbSWieAQWusiGiHwPgKihA__VTable vtable; +}; + +struct __declspec(align(8)) List_1_UnityEngine_LightmapData___Fields { + struct LightmapData__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_LightmapData_ { + struct List_1_UnityEngine_LightmapData___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_LightmapData___Fields fields; +}; + +struct IEnumerator_1_UnityEngine_LightmapData_ { + struct IEnumerator_1_UnityEngine_LightmapData___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerator_1_UnityEngine_LightmapData___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_UnityEngine_LightmapData___StaticFields { +}; + +struct IEnumerator_1_UnityEngine_LightmapData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_UnityEngine_LightmapData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_UnityEngine_LightmapData___VTable vtable; +}; + +struct List_1_UnityEngine_LightmapData___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_UnityEngine_LightmapData___StaticFields { + struct LightmapData__Array *s_emptyArray; +}; + +struct List_1_UnityEngine_LightmapData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_LightmapData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_LightmapData___VTable vtable; +}; + +struct Logger { + struct Logger__Class *klass; + MonitorData *monitor; +}; + +struct Logger__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Logger__StaticFields { + struct List_1_System_String_ *__screenLog; + struct GUIText *_guiText; + bool _logToScreen; +}; + +struct Logger__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Logger__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Logger__VTable vtable; +}; + +struct ICollection_1_Rewired_PlayerController_Element_ { + struct ICollection_1_Rewired_PlayerController_Element___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_Rewired_PlayerController_Element___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_Rewired_PlayerController_Element___StaticFields { +}; + +struct ICollection_1_Rewired_PlayerController_Element___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_Rewired_PlayerController_Element___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_Rewired_PlayerController_Element___VTable vtable; +}; + +#if defined(_CPLUSPLUS_) +enum class PlayerController_Element_CompoundTypes__Enum : int32_t { + Axis2D = 0x00000064, + MouseAxis2D = 0x00000065, + MouseWheel = 0x00000066, +}; + +#else +enum PlayerController_Element_CompoundTypes__Enum { + PlayerController_Element_CompoundTypes__Enum_Axis2D = 0x00000064, + PlayerController_Element_CompoundTypes__Enum_MouseAxis2D = 0x00000065, + PlayerController_Element_CompoundTypes__Enum_MouseWheel = 0x00000066, +}; + +#endif +struct PlayerController_Element_CompoundTypes__Enum__Boxed { + struct PlayerController_Element_CompoundTypes__Enum__Class *klass; + MonitorData *monitor; + #if defined(_CPLUSPLUS_) + PlayerController_Element_CompoundTypes__Enum value; + #else + int32_t value; + #endif +}; + +struct PlayerController_Element_CompoundTypes__Enum__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData CompareTo; + VirtualInvokeData ToString_1; + VirtualInvokeData GetTypeCode; + VirtualInvokeData System_IConvertible_ToBoolean; + VirtualInvokeData System_IConvertible_ToChar; + VirtualInvokeData System_IConvertible_ToSByte; + VirtualInvokeData System_IConvertible_ToByte; + VirtualInvokeData System_IConvertible_ToInt16; + VirtualInvokeData System_IConvertible_ToUInt16; + VirtualInvokeData System_IConvertible_ToInt32; + VirtualInvokeData System_IConvertible_ToUInt32; + VirtualInvokeData System_IConvertible_ToInt64; + VirtualInvokeData System_IConvertible_ToUInt64; + VirtualInvokeData System_IConvertible_ToSingle; + VirtualInvokeData System_IConvertible_ToDouble; + VirtualInvokeData System_IConvertible_ToDecimal; + VirtualInvokeData System_IConvertible_ToDateTime; + VirtualInvokeData ToString_2; + VirtualInvokeData System_IConvertible_ToType; +}; + +struct PlayerController_Element_CompoundTypes__Enum__StaticFields { +}; + +struct PlayerController_Element_CompoundTypes__Enum__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PlayerController_Element_CompoundTypes__Enum__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PlayerController_Element_CompoundTypes__Enum__VTable vtable; +}; + +struct __declspec(align(8)) TempListPool_TList_1_Rewired_PlayerController_Element___Fields { + struct List_1_Rewired_PlayerController_Element_ *VMeHiJhSKJHrptlKzeCAAZtDcXSGA; + bool eIuesTMfdyQoDfpIQeBgmzDBKKjJ; +}; + +struct TempListPool_TList_1_Rewired_PlayerController_Element_ { + struct TempListPool_TList_1_Rewired_PlayerController_Element___Class *klass; + MonitorData *monitor; + struct TempListPool_TList_1_Rewired_PlayerController_Element___Fields fields; +}; + +struct TempListPool_TList_1_Rewired_PlayerController_Element___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Dispose; + VirtualInvokeData Rewired_Utils_TempListPool_ITListSetter_T__SetList; +}; + +struct TempListPool_TList_1_Rewired_PlayerController_Element___StaticFields { +}; + +struct TempListPool_TList_1_Rewired_PlayerController_Element___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TempListPool_TList_1_Rewired_PlayerController_Element___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TempListPool_TList_1_Rewired_PlayerController_Element___VTable vtable; +}; + +struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__2__Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__2 { + struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__2__Class *klass; + MonitorData *monitor; + struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__2__Fields fields; +}; + +struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__2__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__2__StaticFields { +}; + +struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__2__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__2__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__2__VTable vtable; +}; + +struct List_1_T_Enumerator_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData_ { + struct List_1_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData_ *_list; + int32_t _index; + int32_t _version; + struct ResourceLocationData *_current; +}; + +struct List_1_T_Enumerator_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___Boxed { + struct List_1_T_Enumerator_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData_ fields; +}; + +struct List_1_T_Enumerator_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___StaticFields { +}; + +struct List_1_T_Enumerator_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___VTable vtable; +}; + +struct IEnumerable_1_Rewired_PlayerController_Element_Definition_ { + struct IEnumerable_1_Rewired_PlayerController_Element_Definition___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_Rewired_PlayerController_Element_Definition___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_Rewired_PlayerController_Element_Definition___StaticFields { +}; + +struct IEnumerable_1_Rewired_PlayerController_Element_Definition___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_Rewired_PlayerController_Element_Definition___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_Rewired_PlayerController_Element_Definition___VTable vtable; +}; + +struct IEnumerable_1_Rewired_PlayerController_Element_ { + struct IEnumerable_1_Rewired_PlayerController_Element___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_Rewired_PlayerController_Element___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_Rewired_PlayerController_Element___StaticFields { +}; + +struct IEnumerable_1_Rewired_PlayerController_Element___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_Rewired_PlayerController_Element___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_Rewired_PlayerController_Element___VTable vtable; +}; + +struct IEnumerable_1_Rewired_PlayerController_Button_ { + struct IEnumerable_1_Rewired_PlayerController_Button___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_Rewired_PlayerController_Button___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_Rewired_PlayerController_Button___StaticFields { +}; + +struct IEnumerable_1_Rewired_PlayerController_Button___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_Rewired_PlayerController_Button___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_Rewired_PlayerController_Button___VTable vtable; +}; + +struct IEnumerable_1_Rewired_PlayerController_Axis_ { + struct IEnumerable_1_Rewired_PlayerController_Axis___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_Rewired_PlayerController_Axis___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_Rewired_PlayerController_Axis___StaticFields { +}; + +struct IEnumerable_1_Rewired_PlayerController_Axis___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_Rewired_PlayerController_Axis___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_Rewired_PlayerController_Axis___VTable vtable; +}; + +struct SerializedObject___VTable { +}; + +struct SerializedObject___StaticFields { +}; + +struct SerializedObject___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SerializedObject___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SerializedObject___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct ResourceLocationBase *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase_ fields; +}; + +struct __declspec(align(8)) Dictionary_2_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_System_String_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase_ { + struct Dictionary_2_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___Class *klass; + MonitorData *monitor; + struct Dictionary_2_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___Fields fields; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___Array { + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase_ vector[32]; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___Fields { + struct Dictionary_2_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase_ { + struct Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___Fields fields; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___Fields { + struct Dictionary_2_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase_ { + struct Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___Fields fields; +}; + +struct ResourceLocationBase__Array { + struct ResourceLocationBase__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct ResourceLocationBase *vector[32]; +}; + +struct IEnumerator_1_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase_ { + struct IEnumerator_1_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase_ { + struct ICollection_1_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___Class *klass; + MonitorData *monitor; +}; + +struct KeyValuePair_2_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase_ { + struct String *key; + struct ResourceLocationBase *value; +}; + +struct KeyValuePair_2_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___Boxed { + struct KeyValuePair_2_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase_ fields; +}; + +struct KeyValuePair_2_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___Array { + struct KeyValuePair_2_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct KeyValuePair_2_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase_ vector[32]; +}; + +struct IEnumerator_1_KeyValuePair_2_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase_ { + struct IEnumerator_1_KeyValuePair_2_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase_ { + struct IEnumerable_1_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___Array__VTable { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___Array__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___Array__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TKey__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___VTable vtable; +}; + +struct ResourceLocationBase__Array__VTable { +}; + +struct ResourceLocationBase__Array__StaticFields { +}; + +struct ResourceLocationBase__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ResourceLocationBase__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ResourceLocationBase__Array__VTable vtable; +}; + +struct IEnumerator_1_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___StaticFields { +}; + +struct IEnumerator_1_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TValue__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___VTable vtable; +}; + +struct ICollection_1_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___StaticFields { +}; + +struct ICollection_1_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___VTable vtable; +}; + +struct ResourceLocationBase___VTable { +}; + +struct ResourceLocationBase___StaticFields { +}; + +struct ResourceLocationBase___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ResourceLocationBase___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ResourceLocationBase___VTable vtable; +}; + +struct KeyValuePair_2_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct KeyValuePair_2_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___StaticFields { +}; + +struct KeyValuePair_2_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___VTable vtable; +}; + +struct KeyValuePair_2_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___Array__VTable { +}; + +struct KeyValuePair_2_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___Array__StaticFields { +}; + +struct KeyValuePair_2_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___Array__VTable vtable; +}; + +struct IEnumerator_1_KeyValuePair_2_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_KeyValuePair_2_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___StaticFields { +}; + +struct IEnumerator_1_KeyValuePair_2_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_KeyValuePair_2_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_KeyValuePair_2_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___VTable vtable; +}; + +struct IEnumerable_1_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___StaticFields { +}; + +struct IEnumerable_1_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___VTable vtable; +}; + +struct Dictionary_2_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Values; + VirtualInvokeData ContainsKey; + VirtualInvokeData Add; + VirtualInvokeData Remove; + VirtualInvokeData TryGetValue; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add; + VirtualInvokeData Clear; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_get_Item; + VirtualInvokeData System_Collections_IDictionary_set_Item; + VirtualInvokeData System_Collections_IDictionary_get_Keys; + VirtualInvokeData System_Collections_IDictionary_get_Values; + VirtualInvokeData System_Collections_IDictionary_Contains; + VirtualInvokeData System_Collections_IDictionary_Add; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IDictionary_get_IsReadOnly; + VirtualInvokeData System_Collections_IDictionary_get_IsFixedSize; + VirtualInvokeData System_Collections_IDictionary_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_Remove; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData TryGetValue_1; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Values; + VirtualInvokeData get_Count_2; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct Dictionary_2_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___StaticFields { +}; + +struct Dictionary_2_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct ResourceLocationData *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData_ fields; +}; + +struct __declspec(align(8)) Dictionary_2_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_System_String_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData_ { + struct Dictionary_2_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___Class *klass; + MonitorData *monitor; + struct Dictionary_2_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___Fields fields; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___Array { + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData_ vector[32]; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___Fields { + struct Dictionary_2_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData_ { + struct Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___Fields fields; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___Fields { + struct Dictionary_2_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData_ { + struct Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___Fields fields; +}; + +struct ICollection_1_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData_ { + struct ICollection_1_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___Class *klass; + MonitorData *monitor; +}; + +struct KeyValuePair_2_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData_ { + struct String *key; + struct ResourceLocationData *value; +}; + +struct KeyValuePair_2_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___Boxed { + struct KeyValuePair_2_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData_ fields; +}; + +struct KeyValuePair_2_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___Array { + struct KeyValuePair_2_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct KeyValuePair_2_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData_ vector[32]; +}; + +struct IEnumerator_1_KeyValuePair_2_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData_ { + struct IEnumerator_1_KeyValuePair_2_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData_ { + struct IEnumerable_1_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___Array__VTable { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___Array__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___Array__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TKey__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TValue__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___VTable vtable; +}; + +struct ICollection_1_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___StaticFields { +}; + +struct ICollection_1_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___VTable vtable; +}; + +struct ResourceLocationData___VTable { +}; + +struct ResourceLocationData___StaticFields { +}; + +struct ResourceLocationData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ResourceLocationData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ResourceLocationData___VTable vtable; +}; + +struct KeyValuePair_2_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct KeyValuePair_2_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___StaticFields { +}; + +struct KeyValuePair_2_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___VTable vtable; +}; + +struct KeyValuePair_2_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___Array__VTable { +}; + +struct KeyValuePair_2_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___Array__StaticFields { +}; + +struct KeyValuePair_2_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___Array__VTable vtable; +}; + +struct IEnumerator_1_KeyValuePair_2_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_KeyValuePair_2_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___StaticFields { +}; + +struct IEnumerator_1_KeyValuePair_2_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_KeyValuePair_2_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_KeyValuePair_2_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___VTable vtable; +}; + +struct IEnumerable_1_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___StaticFields { +}; + +struct IEnumerable_1_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___VTable vtable; +}; + +struct Dictionary_2_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Values; + VirtualInvokeData ContainsKey; + VirtualInvokeData Add; + VirtualInvokeData Remove; + VirtualInvokeData TryGetValue; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add; + VirtualInvokeData Clear; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_get_Item; + VirtualInvokeData System_Collections_IDictionary_set_Item; + VirtualInvokeData System_Collections_IDictionary_get_Keys; + VirtualInvokeData System_Collections_IDictionary_get_Values; + VirtualInvokeData System_Collections_IDictionary_Contains; + VirtualInvokeData System_Collections_IDictionary_Add; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IDictionary_get_IsReadOnly; + VirtualInvokeData System_Collections_IDictionary_get_IsFixedSize; + VirtualInvokeData System_Collections_IDictionary_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_Remove; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData TryGetValue_1; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Values; + VirtualInvokeData get_Count_2; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct Dictionary_2_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___StaticFields { +}; + +struct Dictionary_2_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_System_String_UnityEngine_AddressableAssets_ResourceLocators_ResourceLocationData___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase_ { + struct Dictionary_2_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase_ *_dictionary; + int32_t _version; + int32_t _index; + struct KeyValuePair_2_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase_ _current; + int32_t _getEnumeratorRetType; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___Boxed { + struct Dictionary_2_TKey_TValue_Enumerator_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Enumerator_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase_ fields; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Key; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Value; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Entry; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Enumerator_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Enumerator_System_String_UnityEngine_ResourceManagement_ResourceLocations_ResourceLocationBase___VTable vtable; +}; + +struct IPoolableObject { + struct IPoolableObject__Class *klass; + MonitorData *monitor; +}; + +struct IPoolableObject__VTable { + VirtualInvokeData Return; +}; + +struct IPoolableObject__StaticFields { +}; + +struct IPoolableObject__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IPoolableObject__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IPoolableObject__VTable vtable; +}; + +struct WebRequestQueue { + struct WebRequestQueue__Class *klass; + MonitorData *monitor; +}; + +struct WebRequestQueue__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct WebRequestQueue__StaticFields { + int32_t s_MaxRequest; + struct Queue_1_UnityEngine_ResourceManagement_WebRequestQueueOperation_ *s_QueuedOperations; + struct List_1_UnityEngine_Networking_UnityWebRequestAsyncOperation_ *s_ActiveRequests; +}; + +struct WebRequestQueue__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct WebRequestQueue__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct WebRequestQueue__VTable vtable; +}; + +struct ControllerTemplateElementType___VTable { +}; + +struct ControllerTemplateElementType___StaticFields { +}; + +struct ControllerTemplateElementType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ControllerTemplateElementType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ControllerTemplateElementType___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_IList_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_ { + struct Dictionary_2_System_Object_IList_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_ *_dictionary; + int32_t _index; + int32_t _version; + struct IList_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_ *_currentValue; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_IList_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation___Boxed { + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_IList_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_IList_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_ fields; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_IList_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_IList_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_IList_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_IList_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Object_IList_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation___VTable vtable; +}; + +struct ICollection_1_Rewired_ControllerTemplate_kvOnxGBUMwSXiAWzvbgaylKBYqUs_ { + struct ICollection_1_Rewired_ControllerTemplate_kvOnxGBUMwSXiAWzvbgaylKBYqUs___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_Rewired_ControllerTemplate_kvOnxGBUMwSXiAWzvbgaylKBYqUs___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_Rewired_ControllerTemplate_kvOnxGBUMwSXiAWzvbgaylKBYqUs___StaticFields { +}; + +struct ICollection_1_Rewired_ControllerTemplate_kvOnxGBUMwSXiAWzvbgaylKBYqUs___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_Rewired_ControllerTemplate_kvOnxGBUMwSXiAWzvbgaylKBYqUs___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_Rewired_ControllerTemplate_kvOnxGBUMwSXiAWzvbgaylKBYqUs___VTable vtable; +}; + +struct IEnumerable_1_UnityEngine_AddressableAssets_AddressablesImpl_ResourceLocatorInfo_ { + struct IEnumerable_1_UnityEngine_AddressableAssets_AddressablesImpl_ResourceLocatorInfo___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_UnityEngine_AddressableAssets_AddressablesImpl_ResourceLocatorInfo___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_UnityEngine_AddressableAssets_AddressablesImpl_ResourceLocatorInfo___StaticFields { +}; + +struct IEnumerable_1_UnityEngine_AddressableAssets_AddressablesImpl_ResourceLocatorInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_UnityEngine_AddressableAssets_AddressablesImpl_ResourceLocatorInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_UnityEngine_AddressableAssets_AddressablesImpl_ResourceLocatorInfo___VTable vtable; +}; + +struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__4__Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__4 { + struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__4__Class *klass; + MonitorData *monitor; + struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__4__Fields fields; +}; + +struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__4__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__4__StaticFields { +}; + +struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__4__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__4__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__4__VTable vtable; +}; + +struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__3__Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__3 { + struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__3__Class *klass; + MonitorData *monitor; + struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__3__Fields fields; +}; + +struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__3__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__3__StaticFields { +}; + +struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__3__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__3__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__3__VTable vtable; +}; + +struct IKeyEvaluator { + struct IKeyEvaluator__Class *klass; + MonitorData *monitor; +}; + +struct IKeyEvaluator__VTable { + VirtualInvokeData get_RuntimeKey; + VirtualInvokeData RuntimeKeyIsValid; +}; + +struct IKeyEvaluator__StaticFields { +}; + +struct IKeyEvaluator__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IKeyEvaluator__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IKeyEvaluator__VTable vtable; +}; + +struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__5__Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__5 { + struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__5__Class *klass; + MonitorData *monitor; + struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__5__Fields fields; +}; + +struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__5__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__5__StaticFields { +}; + +struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__5__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__5__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__5__VTable vtable; +}; + +struct List_1_T_Enumerator_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_ { + struct List_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_ *_list; + int32_t _index; + int32_t _version; + struct IResourceLocation *_current; +}; + +struct List_1_T_Enumerator_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation___Boxed { + struct List_1_T_Enumerator_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_ fields; +}; + +struct List_1_T_Enumerator_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation___StaticFields { +}; + +struct List_1_T_Enumerator_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation___VTable vtable; +}; + +struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__6__Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__6 { + struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__6__Class *klass; + MonitorData *monitor; + struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__6__Fields fields; +}; + +struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__6__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__6__StaticFields { +}; + +struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__6__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__6__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__6__VTable vtable; +}; + +struct Action_1_UnityEngine_ResourceManagement_ResourceProviders_IAssetBundleResource___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_1_UnityEngine_ResourceManagement_ResourceProviders_IAssetBundleResource_ { + struct Action_1_UnityEngine_ResourceManagement_ResourceProviders_IAssetBundleResource___Class *klass; + MonitorData *monitor; + struct Action_1_UnityEngine_ResourceManagement_ResourceProviders_IAssetBundleResource___Fields fields; +}; + +struct Action_1_UnityEngine_ResourceManagement_ResourceProviders_IAssetBundleResource___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_1_UnityEngine_ResourceManagement_ResourceProviders_IAssetBundleResource___StaticFields { +}; + +struct Action_1_UnityEngine_ResourceManagement_ResourceProviders_IAssetBundleResource___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_1_UnityEngine_ResourceManagement_ResourceProviders_IAssetBundleResource___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_1_UnityEngine_ResourceManagement_ResourceProviders_IAssetBundleResource___VTable vtable; +}; + +struct ILocationSizeData { + struct ILocationSizeData__Class *klass; + MonitorData *monitor; +}; + +struct ILocationSizeData__VTable { + VirtualInvokeData ComputeSize; +}; + +struct ILocationSizeData__StaticFields { +}; + +struct ILocationSizeData__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ILocationSizeData__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ILocationSizeData__VTable vtable; +}; + +struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__7__Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__7 { + struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__7__Class *klass; + MonitorData *monitor; + struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__7__Fields fields; +}; + +struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__7__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__7__StaticFields { +}; + +struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__7__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__7__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__7__VTable vtable; +}; + +struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__8__Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__8 { + struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__8__Class *klass; + MonitorData *monitor; + struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__8__Fields fields; +}; + +struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__8__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__8__StaticFields { +}; + +struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__8__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__8__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_2_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__8__VTable vtable; +}; + +struct HashSet_1_T_Slot_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_ { + int32_t hashCode; + int32_t next; + struct IResourceLocation *value; +}; + +struct HashSet_1_T_Slot_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation___Boxed { + struct HashSet_1_T_Slot_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_ fields; +}; + +struct __declspec(align(8)) HashSet_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation___Fields { + struct Int32__Array *_buckets; + struct HashSet_1_T_Slot_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation___Array *_slots; + int32_t _count; + int32_t _lastIndex; + int32_t _freeList; + struct IEqualityComparer_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_ *_comparer; + int32_t _version; + struct SerializationInfo *_siInfo; +}; + +struct HashSet_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_ { + struct HashSet_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation___Class *klass; + MonitorData *monitor; + struct HashSet_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation___Fields fields; +}; + +struct HashSet_1_T_Slot_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation___Array { + struct HashSet_1_T_Slot_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct HashSet_1_T_Slot_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation_ vector[32]; +}; + +struct HashSet_1_T_Slot_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct HashSet_1_T_Slot_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation___StaticFields { +}; + +struct HashSet_1_T_Slot_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_T_Slot_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_T_Slot_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation___VTable vtable; +}; + +struct HashSet_1_T_Slot_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation___Array__VTable { +}; + +struct HashSet_1_T_Slot_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation___Array__StaticFields { +}; + +struct HashSet_1_T_Slot_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_T_Slot_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_T_Slot_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation___Array__VTable vtable; +}; + +struct HashSet_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_T__Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData Add; + VirtualInvokeData UnionWith; + VirtualInvokeData IntersectWith; + VirtualInvokeData ExceptWith; + VirtualInvokeData SymmetricExceptWith; + VirtualInvokeData IsSubsetOf; + VirtualInvokeData IsSupersetOf; + VirtualInvokeData IsProperSupersetOf; + VirtualInvokeData IsProperSubsetOf; + VirtualInvokeData Overlaps; + VirtualInvokeData SetEquals; + VirtualInvokeData get_Count_1; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct HashSet_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation___StaticFields { +}; + +struct HashSet_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_UnityEngine_ResourceManagement_ResourceLocations_IResourceLocation___VTable vtable; +}; + +struct Predicate_1_UnityEngine_AddressableAssets_AddressablesImpl_ResourceLocatorInfo___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Predicate_1_UnityEngine_AddressableAssets_AddressablesImpl_ResourceLocatorInfo_ { + struct Predicate_1_UnityEngine_AddressableAssets_AddressablesImpl_ResourceLocatorInfo___Class *klass; + MonitorData *monitor; + struct Predicate_1_UnityEngine_AddressableAssets_AddressablesImpl_ResourceLocatorInfo___Fields fields; +}; + +struct Predicate_1_UnityEngine_AddressableAssets_AddressablesImpl_ResourceLocatorInfo___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Predicate_1_UnityEngine_AddressableAssets_AddressablesImpl_ResourceLocatorInfo___StaticFields { +}; + +struct Predicate_1_UnityEngine_AddressableAssets_AddressablesImpl_ResourceLocatorInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Predicate_1_UnityEngine_AddressableAssets_AddressablesImpl_ResourceLocatorInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Predicate_1_UnityEngine_AddressableAssets_AddressablesImpl_ResourceLocatorInfo___VTable vtable; +}; + +struct AddressablesRuntimeProperties { + struct AddressablesRuntimeProperties__Class *klass; + MonitorData *monitor; +}; + +struct AddressablesRuntimeProperties__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct AddressablesRuntimeProperties__StaticFields { + struct Stack_1_System_String_ *s_TokenStack; + struct Stack_1_System_Int32_ *s_TokenStartStack; + bool s_StaticStacksAreInUse; + struct Dictionary_2_System_String_System_String_ *s_CachedValues; +}; + +struct AddressablesRuntimeProperties__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct AddressablesRuntimeProperties__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct AddressablesRuntimeProperties__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_Type_List_1_System_String_ { + struct Dictionary_2_System_Type_List_1_System_String_ *_dictionary; + int32_t _version; + int32_t _index; + struct KeyValuePair_2_System_Type_List_1_System_String_ _current; + int32_t _getEnumeratorRetType; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_Type_List_1_System_String___Boxed { + struct Dictionary_2_TKey_TValue_Enumerator_System_Type_List_1_System_String___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Enumerator_System_Type_List_1_System_String_ fields; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_Type_List_1_System_String___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Key; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Value; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Entry; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_Type_List_1_System_String___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_Type_List_1_System_String___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Enumerator_System_Type_List_1_System_String___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Enumerator_System_Type_List_1_System_String___VTable vtable; +}; + +struct HashSet_1_T_Enumerator_System_Type_ { + struct HashSet_1_System_Type_ *_set; + int32_t _index; + int32_t _version; + struct Type *_current; +}; + +struct HashSet_1_T_Enumerator_System_Type___Boxed { + struct HashSet_1_T_Enumerator_System_Type___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Enumerator_System_Type_ fields; +}; + +struct HashSet_1_T_Enumerator_System_Type___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct HashSet_1_T_Enumerator_System_Type___StaticFields { +}; + +struct HashSet_1_T_Enumerator_System_Type___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_T_Enumerator_System_Type___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_T_Enumerator_System_Type___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_UInt32_System_String_ { + int32_t hashCode; + int32_t next; + uint32_t key; + struct String *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_UInt32_System_String___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_UInt32_System_String___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_UInt32_System_String_ fields; +}; + +struct __declspec(align(8)) Dictionary_2_System_UInt32_System_String___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_System_UInt32_System_String___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_System_UInt32_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_System_UInt32_System_String_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_System_UInt32_System_String_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_System_UInt32_System_String_ { + struct Dictionary_2_System_UInt32_System_String___Class *klass; + MonitorData *monitor; + struct Dictionary_2_System_UInt32_System_String___Fields fields; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_UInt32_System_String___Array { + struct Dictionary_2_TKey_TValue_Entry_System_UInt32_System_String___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Dictionary_2_TKey_TValue_Entry_System_UInt32_System_String_ vector[32]; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_KeyCollection_System_UInt32_System_String___Fields { + struct Dictionary_2_System_UInt32_System_String_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_UInt32_System_String_ { + struct Dictionary_2_TKey_TValue_KeyCollection_System_UInt32_System_String___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_KeyCollection_System_UInt32_System_String___Fields fields; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_ValueCollection_System_UInt32_System_String___Fields { + struct Dictionary_2_System_UInt32_System_String_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_UInt32_System_String_ { + struct Dictionary_2_TKey_TValue_ValueCollection_System_UInt32_System_String___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_System_UInt32_System_String___Fields fields; +}; + +struct KeyValuePair_2_System_UInt32_System_String_ { + uint32_t key; + struct String *value; +}; + +struct KeyValuePair_2_System_UInt32_System_String___Boxed { + struct KeyValuePair_2_System_UInt32_System_String___Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_System_UInt32_System_String_ fields; +}; + +struct KeyValuePair_2_System_UInt32_System_String___Array { + struct KeyValuePair_2_System_UInt32_System_String___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct KeyValuePair_2_System_UInt32_System_String_ vector[32]; +}; + +struct IEnumerator_1_KeyValuePair_2_System_UInt32_System_String_ { + struct IEnumerator_1_KeyValuePair_2_System_UInt32_System_String___Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_UInt32_System_String___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_UInt32_System_String___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_UInt32_System_String___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_System_UInt32_System_String___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_System_UInt32_System_String___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_UInt32_System_String___Array__VTable { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_UInt32_System_String___Array__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_UInt32_System_String___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_System_UInt32_System_String___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_System_UInt32_System_String___Array__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_UInt32_System_String___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TKey__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_UInt32_System_String___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_UInt32_System_String___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_KeyCollection_System_UInt32_System_String___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_KeyCollection_System_UInt32_System_String___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_UInt32_System_String___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TValue__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_UInt32_System_String___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_UInt32_System_String___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_System_UInt32_System_String___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_System_UInt32_System_String___VTable vtable; +}; + +struct KeyValuePair_2_System_UInt32_System_String___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct KeyValuePair_2_System_UInt32_System_String___StaticFields { +}; + +struct KeyValuePair_2_System_UInt32_System_String___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_UInt32_System_String___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_UInt32_System_String___VTable vtable; +}; + +struct KeyValuePair_2_System_UInt32_System_String___Array__VTable { +}; + +struct KeyValuePair_2_System_UInt32_System_String___Array__StaticFields { +}; + +struct KeyValuePair_2_System_UInt32_System_String___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_UInt32_System_String___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_UInt32_System_String___Array__VTable vtable; +}; + +struct IEnumerator_1_KeyValuePair_2_System_UInt32_System_String___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_KeyValuePair_2_System_UInt32_System_String___StaticFields { +}; + +struct IEnumerator_1_KeyValuePair_2_System_UInt32_System_String___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_KeyValuePair_2_System_UInt32_System_String___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_KeyValuePair_2_System_UInt32_System_String___VTable vtable; +}; + +struct Dictionary_2_System_UInt32_System_String___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Values; + VirtualInvokeData ContainsKey; + VirtualInvokeData Add; + VirtualInvokeData Remove; + VirtualInvokeData TryGetValue; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add; + VirtualInvokeData Clear; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_get_Item; + VirtualInvokeData System_Collections_IDictionary_set_Item; + VirtualInvokeData System_Collections_IDictionary_get_Keys; + VirtualInvokeData System_Collections_IDictionary_get_Values; + VirtualInvokeData System_Collections_IDictionary_Contains; + VirtualInvokeData System_Collections_IDictionary_Add; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IDictionary_get_IsReadOnly; + VirtualInvokeData System_Collections_IDictionary_get_IsFixedSize; + VirtualInvokeData System_Collections_IDictionary_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_Remove; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData TryGetValue_1; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Values; + VirtualInvokeData get_Count_2; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct Dictionary_2_System_UInt32_System_String___StaticFields { +}; + +struct Dictionary_2_System_UInt32_System_String___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_System_UInt32_System_String___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_System_UInt32_System_String___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32_ { + int32_t hashCode; + int32_t next; + struct BinaryDeserialization_ObjectFieldMap *key; + struct List_1_System_Int32_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___Boxed { + struct Dictionary_2_TKey_TValue_Entry_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32_ fields; +}; + +struct __declspec(align(8)) Dictionary_2_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_BinaryDeserialization_ObjectFieldMap_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32_ { + struct Dictionary_2_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___Class *klass; + MonitorData *monitor; + struct Dictionary_2_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___Fields fields; +}; + +struct Dictionary_2_TKey_TValue_Entry_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___Array { + struct Dictionary_2_TKey_TValue_Entry_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Dictionary_2_TKey_TValue_Entry_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32_ vector[32]; +}; + +struct IEqualityComparer_1_BinaryDeserialization_ObjectFieldMap_ { + struct IEqualityComparer_1_BinaryDeserialization_ObjectFieldMap___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_KeyCollection_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___Fields { + struct Dictionary_2_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32_ { + struct Dictionary_2_TKey_TValue_KeyCollection_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_KeyCollection_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___Fields fields; +}; + +struct BinaryDeserialization_ObjectFieldMap__Array { + struct BinaryDeserialization_ObjectFieldMap__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct BinaryDeserialization_ObjectFieldMap *vector[32]; +}; + +struct IEnumerator_1_BinaryDeserialization_ObjectFieldMap_ { + struct IEnumerator_1_BinaryDeserialization_ObjectFieldMap___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_ValueCollection_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___Fields { + struct Dictionary_2_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32_ { + struct Dictionary_2_TKey_TValue_ValueCollection_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___Fields fields; +}; + +struct ICollection_1_BinaryDeserialization_ObjectFieldMap_ { + struct ICollection_1_BinaryDeserialization_ObjectFieldMap___Class *klass; + MonitorData *monitor; +}; + +struct KeyValuePair_2_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32_ { + struct BinaryDeserialization_ObjectFieldMap *key; + struct List_1_System_Int32_ *value; +}; + +struct KeyValuePair_2_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___Boxed { + struct KeyValuePair_2_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32_ fields; +}; + +struct KeyValuePair_2_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___Array { + struct KeyValuePair_2_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct KeyValuePair_2_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32_ vector[32]; +}; + +struct IEnumerator_1_KeyValuePair_2_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32_ { + struct IEnumerator_1_KeyValuePair_2_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_BinaryDeserialization_ObjectFieldMap_ { + struct IEnumerable_1_BinaryDeserialization_ObjectFieldMap___Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Dictionary_2_TKey_TValue_Entry_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___Array__VTable { +}; + +struct Dictionary_2_TKey_TValue_Entry_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___Array__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___Array__VTable vtable; +}; + +struct IEqualityComparer_1_BinaryDeserialization_ObjectFieldMap___VTable { + VirtualInvokeData Equals; + VirtualInvokeData GetHashCode; +}; + +struct IEqualityComparer_1_BinaryDeserialization_ObjectFieldMap___StaticFields { +}; + +struct IEqualityComparer_1_BinaryDeserialization_ObjectFieldMap___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEqualityComparer_1_BinaryDeserialization_ObjectFieldMap___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEqualityComparer_1_BinaryDeserialization_ObjectFieldMap___VTable vtable; +}; + +struct BinaryDeserialization_ObjectFieldMap__Array__VTable { +}; + +struct BinaryDeserialization_ObjectFieldMap__Array__StaticFields { +}; + +struct BinaryDeserialization_ObjectFieldMap__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BinaryDeserialization_ObjectFieldMap__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BinaryDeserialization_ObjectFieldMap__Array__VTable vtable; +}; + +struct IEnumerator_1_BinaryDeserialization_ObjectFieldMap___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_BinaryDeserialization_ObjectFieldMap___StaticFields { +}; + +struct IEnumerator_1_BinaryDeserialization_ObjectFieldMap___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_BinaryDeserialization_ObjectFieldMap___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_BinaryDeserialization_ObjectFieldMap___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TKey__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_KeyCollection_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_KeyCollection_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TValue__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___VTable vtable; +}; + +struct ICollection_1_BinaryDeserialization_ObjectFieldMap___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_BinaryDeserialization_ObjectFieldMap___StaticFields { +}; + +struct ICollection_1_BinaryDeserialization_ObjectFieldMap___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_BinaryDeserialization_ObjectFieldMap___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_BinaryDeserialization_ObjectFieldMap___VTable vtable; +}; + +struct KeyValuePair_2_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct KeyValuePair_2_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___StaticFields { +}; + +struct KeyValuePair_2_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___VTable vtable; +}; + +struct KeyValuePair_2_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___Array__VTable { +}; + +struct KeyValuePair_2_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___Array__StaticFields { +}; + +struct KeyValuePair_2_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___Array__VTable vtable; +}; + +struct IEnumerator_1_KeyValuePair_2_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_KeyValuePair_2_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___StaticFields { +}; + +struct IEnumerator_1_KeyValuePair_2_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_KeyValuePair_2_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_KeyValuePair_2_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___VTable vtable; +}; + +struct IEnumerable_1_BinaryDeserialization_ObjectFieldMap___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_BinaryDeserialization_ObjectFieldMap___StaticFields { +}; + +struct IEnumerable_1_BinaryDeserialization_ObjectFieldMap___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_BinaryDeserialization_ObjectFieldMap___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_BinaryDeserialization_ObjectFieldMap___VTable vtable; +}; + +struct Dictionary_2_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Values; + VirtualInvokeData ContainsKey; + VirtualInvokeData Add; + VirtualInvokeData Remove; + VirtualInvokeData TryGetValue; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add; + VirtualInvokeData Clear; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_get_Item; + VirtualInvokeData System_Collections_IDictionary_set_Item; + VirtualInvokeData System_Collections_IDictionary_get_Keys; + VirtualInvokeData System_Collections_IDictionary_get_Values; + VirtualInvokeData System_Collections_IDictionary_Contains; + VirtualInvokeData System_Collections_IDictionary_Add; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IDictionary_get_IsReadOnly; + VirtualInvokeData System_Collections_IDictionary_get_IsFixedSize; + VirtualInvokeData System_Collections_IDictionary_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_Remove; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData TryGetValue_1; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Values; + VirtualInvokeData get_Count_2; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct Dictionary_2_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___StaticFields { +}; + +struct Dictionary_2_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32_ { + struct Dictionary_2_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32_ *_dictionary; + int32_t _index; + int32_t _version; + struct BinaryDeserialization_ObjectFieldMap *_currentKey; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___Boxed { + struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32_ fields; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32___VTable vtable; +}; + +struct BinaryDeserialization { + struct BinaryDeserialization__Class *klass; + MonitorData *monitor; +}; + +struct BinaryDeserialization__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BinaryDeserialization__StaticFields { + struct GlobalVariables *globalVariables; + struct Dictionary_2_BinaryDeserialization_ObjectFieldMap_List_1_System_Int32_ *taskIDs; + struct SHA1 *shaHash; + bool updatedSerialization; + bool shaHashSerialization; + bool strHashSerialization; + int32_t animationCurveAdvance; + bool enumSerialization; + struct Dictionary_2_System_UInt32_System_String_ *stringCache; + struct Byte__Array *sBigEndianFourByteArray; + struct Byte__Array *sBigEndianEightByteArray; + struct UInt32__Array *crcTable; +}; + +struct BinaryDeserialization__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BinaryDeserialization__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BinaryDeserialization__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_String_BehaviorDesigner_Runtime_BehaviorManager_TaskAddData_OverrideFieldValue_ { + struct Dictionary_2_System_String_BehaviorDesigner_Runtime_BehaviorManager_TaskAddData_OverrideFieldValue_ *_dictionary; + int32_t _version; + int32_t _index; + struct KeyValuePair_2_System_String_BehaviorDesigner_Runtime_BehaviorManager_TaskAddData_OverrideFieldValue_ _current; + int32_t _getEnumeratorRetType; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_String_BehaviorDesigner_Runtime_BehaviorManager_TaskAddData_OverrideFieldValue___Boxed { + struct Dictionary_2_TKey_TValue_Enumerator_System_String_BehaviorDesigner_Runtime_BehaviorManager_TaskAddData_OverrideFieldValue___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Enumerator_System_String_BehaviorDesigner_Runtime_BehaviorManager_TaskAddData_OverrideFieldValue_ fields; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_String_BehaviorDesigner_Runtime_BehaviorManager_TaskAddData_OverrideFieldValue___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Key; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Value; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Entry; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_String_BehaviorDesigner_Runtime_BehaviorManager_TaskAddData_OverrideFieldValue___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_String_BehaviorDesigner_Runtime_BehaviorManager_TaskAddData_OverrideFieldValue___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Enumerator_System_String_BehaviorDesigner_Runtime_BehaviorManager_TaskAddData_OverrideFieldValue___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Enumerator_System_String_BehaviorDesigner_Runtime_BehaviorManager_TaskAddData_OverrideFieldValue___VTable vtable; +}; + +struct BehaviorSource__Array { + struct BehaviorSource__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct BehaviorSource *vector[32]; +}; + +struct BehaviorSource__Array__VTable { +}; + +struct BehaviorSource__Array__StaticFields { +}; + +struct BehaviorSource__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BehaviorSource__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BehaviorSource__Array__VTable vtable; +}; + +struct ObjectPool { + struct ObjectPool__Class *klass; + MonitorData *monitor; +}; + +struct ObjectPool__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ObjectPool__StaticFields { + struct Dictionary_2_System_Type_System_Object_ *poolDictionary; + struct Object *lockObject; +}; + +struct ObjectPool__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ObjectPool__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ObjectPool__VTable vtable; +}; + +struct List_1_T_Enumerator_ShatterableGlass_Figure_ { + struct List_1_ShatterableGlass_Figure_ *_list; + int32_t _index; + int32_t _version; + struct ShatterableGlass_Figure *_current; +}; + +struct List_1_T_Enumerator_ShatterableGlass_Figure___Boxed { + struct List_1_T_Enumerator_ShatterableGlass_Figure___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_ShatterableGlass_Figure_ fields; +}; + +struct __declspec(align(8)) List_1_ShatterableGlass_Figure___Fields { + struct ShatterableGlass_Figure__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_ShatterableGlass_Figure_ { + struct List_1_ShatterableGlass_Figure___Class *klass; + MonitorData *monitor; + struct List_1_ShatterableGlass_Figure___Fields fields; +}; + +struct ShatterableGlass_Figure__Array { + struct ShatterableGlass_Figure__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct ShatterableGlass_Figure *vector[32]; +}; + +struct IEnumerator_1_ShatterableGlass_Figure_ { + struct IEnumerator_1_ShatterableGlass_Figure___Class *klass; + MonitorData *monitor; +}; + +struct ShatterableGlass_Figure__Array__VTable { +}; + +struct ShatterableGlass_Figure__Array__StaticFields { +}; + +struct ShatterableGlass_Figure__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ShatterableGlass_Figure__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ShatterableGlass_Figure__Array__VTable vtable; +}; + +struct IEnumerator_1_ShatterableGlass_Figure___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_ShatterableGlass_Figure___StaticFields { +}; + +struct IEnumerator_1_ShatterableGlass_Figure___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_ShatterableGlass_Figure___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_ShatterableGlass_Figure___VTable vtable; +}; + +struct List_1_ShatterableGlass_Figure___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_ShatterableGlass_Figure___StaticFields { + struct ShatterableGlass_Figure__Array *s_emptyArray; +}; + +struct List_1_ShatterableGlass_Figure___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_ShatterableGlass_Figure___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_ShatterableGlass_Figure___VTable vtable; +}; + +struct List_1_T_Enumerator_ShatterableGlass_Figure___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_ShatterableGlass_Figure___StaticFields { +}; + +struct List_1_T_Enumerator_ShatterableGlass_Figure___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_ShatterableGlass_Figure___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_ShatterableGlass_Figure___VTable vtable; +}; + +struct ShatterableGlass_BaseLine__Array { + struct ShatterableGlass_BaseLine__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct ShatterableGlass_BaseLine *vector[32]; +}; + +struct ShatterableGlass_BaseLine__Array__VTable { +}; + +struct ShatterableGlass_BaseLine__Array__StaticFields { +}; + +struct ShatterableGlass_BaseLine__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ShatterableGlass_BaseLine__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ShatterableGlass_BaseLine__Array__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_String_System_Object_ { + struct Dictionary_2_System_String_System_Object_ *_dictionary; + int32_t _version; + int32_t _index; + struct KeyValuePair_2_System_String_System_Object_ _current; + int32_t _getEnumeratorRetType; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_String_System_Object___Boxed { + struct Dictionary_2_TKey_TValue_Enumerator_System_String_System_Object___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Enumerator_System_String_System_Object_ fields; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_String_System_Object___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Key; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Value; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Entry; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_String_System_Object___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_String_System_Object___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Enumerator_System_String_System_Object___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Enumerator_System_String_System_Object___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_SharedVariable_System_Object_ { + struct Dictionary_2_BehaviorDesigner_Runtime_SharedVariable_System_Object_ *_dictionary; + int32_t _version; + int32_t _index; + struct KeyValuePair_2_BehaviorDesigner_Runtime_SharedVariable_System_Object_ _current; + int32_t _getEnumeratorRetType; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_SharedVariable_System_Object___Boxed { + struct Dictionary_2_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_SharedVariable_System_Object___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_SharedVariable_System_Object_ fields; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_SharedVariable_System_Object___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Key; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Value; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Entry; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_SharedVariable_System_Object___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_SharedVariable_System_Object___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_SharedVariable_System_Object___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_SharedVariable_System_Object___VTable vtable; +}; + +#if defined(_CPLUSPLUS_) +enum class Behavior_EventTypes__Enum : int32_t { + OnCollisionEnter = 0x00000000, + OnCollisionExit = 0x00000001, + OnTriggerEnter = 0x00000002, + OnTriggerExit = 0x00000003, + OnCollisionEnter2D = 0x00000004, + OnCollisionExit2D = 0x00000005, + OnTriggerEnter2D = 0x00000006, + OnTriggerExit2D = 0x00000007, + OnControllerColliderHit = 0x00000008, + OnLateUpdate = 0x00000009, + OnFixedUpdate = 0x0000000a, + OnAnimatorIK = 0x0000000b, + None = 0x0000000c, +}; + +#else +enum Behavior_EventTypes__Enum { + Behavior_EventTypes__Enum_OnCollisionEnter = 0x00000000, + Behavior_EventTypes__Enum_OnCollisionExit = 0x00000001, + Behavior_EventTypes__Enum_OnTriggerEnter = 0x00000002, + Behavior_EventTypes__Enum_OnTriggerExit = 0x00000003, + Behavior_EventTypes__Enum_OnCollisionEnter2D = 0x00000004, + Behavior_EventTypes__Enum_OnCollisionExit2D = 0x00000005, + Behavior_EventTypes__Enum_OnTriggerEnter2D = 0x00000006, + Behavior_EventTypes__Enum_OnTriggerExit2D = 0x00000007, + Behavior_EventTypes__Enum_OnControllerColliderHit = 0x00000008, + Behavior_EventTypes__Enum_OnLateUpdate = 0x00000009, + Behavior_EventTypes__Enum_OnFixedUpdate = 0x0000000a, + Behavior_EventTypes__Enum_OnAnimatorIK = 0x0000000b, + Behavior_EventTypes__Enum_None = 0x0000000c, +}; + +#endif +struct Behavior_EventTypes__Enum__Boxed { + struct Behavior_EventTypes__Enum__Class *klass; + MonitorData *monitor; + #if defined(_CPLUSPLUS_) + Behavior_EventTypes__Enum value; + #else + int32_t value; + #endif +}; + +struct Behavior_EventTypes__Enum__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData CompareTo; + VirtualInvokeData ToString_1; + VirtualInvokeData GetTypeCode; + VirtualInvokeData System_IConvertible_ToBoolean; + VirtualInvokeData System_IConvertible_ToChar; + VirtualInvokeData System_IConvertible_ToSByte; + VirtualInvokeData System_IConvertible_ToByte; + VirtualInvokeData System_IConvertible_ToInt16; + VirtualInvokeData System_IConvertible_ToUInt16; + VirtualInvokeData System_IConvertible_ToInt32; + VirtualInvokeData System_IConvertible_ToUInt32; + VirtualInvokeData System_IConvertible_ToInt64; + VirtualInvokeData System_IConvertible_ToUInt64; + VirtualInvokeData System_IConvertible_ToSingle; + VirtualInvokeData System_IConvertible_ToDouble; + VirtualInvokeData System_IConvertible_ToDecimal; + VirtualInvokeData System_IConvertible_ToDateTime; + VirtualInvokeData ToString_2; + VirtualInvokeData System_IConvertible_ToType; +}; + +struct Behavior_EventTypes__Enum__StaticFields { +}; + +struct Behavior_EventTypes__Enum__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Behavior_EventTypes__Enum__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Behavior_EventTypes__Enum__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_String_List_1_BehaviorDesigner_Runtime_TaskCoroutine_ { + struct Dictionary_2_System_String_List_1_BehaviorDesigner_Runtime_TaskCoroutine_ *_dictionary; + int32_t _version; + int32_t _index; + struct KeyValuePair_2_System_String_List_1_BehaviorDesigner_Runtime_TaskCoroutine_ _current; + int32_t _getEnumeratorRetType; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_String_List_1_BehaviorDesigner_Runtime_TaskCoroutine___Boxed { + struct Dictionary_2_TKey_TValue_Enumerator_System_String_List_1_BehaviorDesigner_Runtime_TaskCoroutine___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Enumerator_System_String_List_1_BehaviorDesigner_Runtime_TaskCoroutine_ fields; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_String_List_1_BehaviorDesigner_Runtime_TaskCoroutine___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Key; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Value; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Entry; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_String_List_1_BehaviorDesigner_Runtime_TaskCoroutine___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_String_List_1_BehaviorDesigner_Runtime_TaskCoroutine___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Enumerator_System_String_List_1_BehaviorDesigner_Runtime_TaskCoroutine___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Enumerator_System_String_List_1_BehaviorDesigner_Runtime_TaskCoroutine___VTable vtable; +}; + +struct VolumetricLightsPostProcessBase_ShaderParams { + struct VolumetricLightsPostProcessBase_ShaderParams__Class *klass; + MonitorData *monitor; +}; + +struct VolumetricLightsPostProcessBase_ShaderParams__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct VolumetricLightsPostProcessBase_ShaderParams__StaticFields { + int32_t LightBuffer; + int32_t MainTex; + int32_t BlurRT; + int32_t BlurRT2; + int32_t BlendDest; + int32_t BlendSrc; + int32_t BlendOp; + int32_t MiscData; + int32_t ForcedInvisible; + int32_t DownsampledDepth; + int32_t BlueNoiseTexture; + int32_t BlurScale; + int32_t Downscaling; +}; + +struct VolumetricLightsPostProcessBase_ShaderParams__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct VolumetricLightsPostProcessBase_ShaderParams__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct VolumetricLightsPostProcessBase_ShaderParams__VTable vtable; +}; + +struct ITuple { + struct ITuple__Class *klass; + MonitorData *monitor; +}; + +struct ITuple__VTable { + VirtualInvokeData get_Length; +}; + +struct ITuple__StaticFields { +}; + +struct ITuple__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ITuple__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ITuple__VTable vtable; +}; + +struct IValueTupleInternal { + struct IValueTupleInternal__Class *klass; + MonitorData *monitor; +}; + +struct IValueTupleInternal__VTable { + VirtualInvokeData GetHashCode; + VirtualInvokeData ToStringEnd; +}; + +struct IValueTupleInternal__StaticFields { +}; + +struct IValueTupleInternal__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IValueTupleInternal__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IValueTupleInternal__VTable vtable; +}; + +struct List_1_T_Enumerator_VolumetricLights_VolumetricLight_ { + struct List_1_VolumetricLights_VolumetricLight_ *_list; + int32_t _index; + int32_t _version; + struct VolumetricLight *_current; +}; + +struct List_1_T_Enumerator_VolumetricLights_VolumetricLight___Boxed { + struct List_1_T_Enumerator_VolumetricLights_VolumetricLight___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_VolumetricLights_VolumetricLight_ fields; +}; + +struct List_1_T_Enumerator_VolumetricLights_VolumetricLight___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_VolumetricLights_VolumetricLight___StaticFields { +}; + +struct List_1_T_Enumerator_VolumetricLights_VolumetricLight___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_VolumetricLights_VolumetricLight___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_VolumetricLights_VolumetricLight___VTable vtable; +}; + +struct VolumetricLight_ShaderParams { + struct VolumetricLight_ShaderParams__Class *klass; + MonitorData *monitor; +}; + +struct VolumetricLight_ShaderParams__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct VolumetricLight_ShaderParams__StaticFields { + int32_t RayMarchSettings; + int32_t RayMarchMaxSteps; + int32_t Density; + int32_t FallOff; + int32_t RangeFallOff; + int32_t Penumbra; + int32_t DirectLightData; + int32_t NoiseFinalMultiplier; + int32_t NoiseScale; + int32_t NoiseStrength; + int32_t NoiseTex; + int32_t BlendDest; + int32_t BlendSrc; + int32_t BlendOp; + int32_t AreaExtents; + int32_t BoundsExtents; + int32_t BoundsCenter; + int32_t MeshBoundsExtents; + int32_t MeshBoundsCenter; + int32_t ExtraGeoData; + int32_t ConeAxis; + int32_t ConeTipData; + int32_t WorldToLocalMatrix; + int32_t ToLightDir; + int32_t WindDirection; + int32_t LightColor; + int32_t ParticleTintColor; + int32_t ParticleDistanceAtten; + int32_t CookieTexture; + int32_t CookieTexture_ScaleAndSpeed; + int32_t CookieTexture_Offset; + int32_t BlueNoiseTexture; + int32_t ShadowTexture; + int32_t ShadowCubemap; + int32_t ShadowIntensity; + int32_t ShadowColor; + int32_t TranslucencyTexture; + int32_t ShadowMatrix; + int32_t LightPos; + int32_t InvVPMatrix; + int32_t MainTex; + int32_t TranslucencyIntensity; + int32_t MainTex_ST; + int32_t Color; + int32_t NearClipDistance; +}; + +struct VolumetricLight_ShaderParams__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct VolumetricLight_ShaderParams__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct VolumetricLight_ShaderParams__VTable vtable; +}; + +struct List_1_T_Enumerator_Rewired_Utils_Classes_Data_SerializedObject_HgMZjbfCwvsfHSWFxndJjdoFInHZ_kRxMFLDibTKOsYJdDBbSabXKgmsVA_ { + struct List_1_Rewired_Utils_Classes_Data_SerializedObject_HgMZjbfCwvsfHSWFxndJjdoFInHZ_kRxMFLDibTKOsYJdDBbSabXKgmsVA_ *_list; + int32_t _index; + int32_t _version; + struct SerializedObject_HgMZjbfCwvsfHSWFxndJjdoFInHZ_kRxMFLDibTKOsYJdDBbSabXKgmsVA *_current; +}; + +struct List_1_T_Enumerator_Rewired_Utils_Classes_Data_SerializedObject_HgMZjbfCwvsfHSWFxndJjdoFInHZ_kRxMFLDibTKOsYJdDBbSabXKgmsVA___Boxed { + struct List_1_T_Enumerator_Rewired_Utils_Classes_Data_SerializedObject_HgMZjbfCwvsfHSWFxndJjdoFInHZ_kRxMFLDibTKOsYJdDBbSabXKgmsVA___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_Rewired_Utils_Classes_Data_SerializedObject_HgMZjbfCwvsfHSWFxndJjdoFInHZ_kRxMFLDibTKOsYJdDBbSabXKgmsVA_ fields; +}; + +struct List_1_T_Enumerator_Rewired_Utils_Classes_Data_SerializedObject_HgMZjbfCwvsfHSWFxndJjdoFInHZ_kRxMFLDibTKOsYJdDBbSabXKgmsVA___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_Rewired_Utils_Classes_Data_SerializedObject_HgMZjbfCwvsfHSWFxndJjdoFInHZ_kRxMFLDibTKOsYJdDBbSabXKgmsVA___StaticFields { +}; + +struct List_1_T_Enumerator_Rewired_Utils_Classes_Data_SerializedObject_HgMZjbfCwvsfHSWFxndJjdoFInHZ_kRxMFLDibTKOsYJdDBbSabXKgmsVA___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_Rewired_Utils_Classes_Data_SerializedObject_HgMZjbfCwvsfHSWFxndJjdoFInHZ_kRxMFLDibTKOsYJdDBbSabXKgmsVA___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_Rewired_Utils_Classes_Data_SerializedObject_HgMZjbfCwvsfHSWFxndJjdoFInHZ_kRxMFLDibTKOsYJdDBbSabXKgmsVA___VTable vtable; +}; + +struct IEnumerable_1_Rewired_Utils_Classes_Data_SerializedObject_Field_ { + struct IEnumerable_1_Rewired_Utils_Classes_Data_SerializedObject_Field___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_Rewired_Utils_Classes_Data_SerializedObject_Field___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_Rewired_Utils_Classes_Data_SerializedObject_Field___StaticFields { +}; + +struct IEnumerable_1_Rewired_Utils_Classes_Data_SerializedObject_Field___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_Rewired_Utils_Classes_Data_SerializedObject_Field___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_Rewired_Utils_Classes_Data_SerializedObject_Field___VTable vtable; +}; + +struct IReadOnlyList { + struct IReadOnlyList__Class *klass; + MonitorData *monitor; +}; + +struct IReadOnlyList__VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Contains; +}; + +struct IReadOnlyList__StaticFields { +}; + +struct IReadOnlyList__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IReadOnlyList__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IReadOnlyList__VTable vtable; +}; + +struct ICollection_1_KeyValuePair_2_System_String_System_Object_ { + struct ICollection_1_KeyValuePair_2_System_String_System_Object___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_KeyValuePair_2_System_String_System_Object___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_KeyValuePair_2_System_String_System_Object___StaticFields { +}; + +struct ICollection_1_KeyValuePair_2_System_String_System_Object___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_KeyValuePair_2_System_String_System_Object___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_KeyValuePair_2_System_String_System_Object___VTable vtable; +}; + +struct NativeRingBuffer___VTable { +}; + +struct NativeRingBuffer___StaticFields { +}; + +struct NativeRingBuffer___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NativeRingBuffer___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NativeRingBuffer___VTable vtable; +}; + +struct Expression_1_System_Action_1___Fields { + struct LambdaExpression__Fields _; +}; + +struct Expression_1_System_Action_1_ { + struct Expression_1_System_Action_1___Class *klass; + MonitorData *monitor; + struct Expression_1_System_Action_1___Fields fields; +}; + +struct Expression_1_System_Action_1___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_NodeType; + VirtualInvokeData get_Type; + VirtualInvokeData get_CanReduce; + VirtualInvokeData Reduce; + VirtualInvokeData VisitChildren; + VirtualInvokeData Accept; + VirtualInvokeData System_Linq_Expressions_IParameterProvider_GetParameter; + VirtualInvokeData System_Linq_Expressions_IParameterProvider_get_ParameterCount; + VirtualInvokeData get_TypeCore; + VirtualInvokeData get_PublicType; + VirtualInvokeData get_NameCore; + VirtualInvokeData get_TailCallCore; + VirtualInvokeData GetParameter; + VirtualInvokeData get_ParameterCount; + VirtualInvokeData Rewrite; +}; + +struct Expression_1_System_Action_1___StaticFields { +}; + +struct Expression_1_System_Action_1___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Expression_1_System_Action_1___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Expression_1_System_Action_1___VTable vtable; +}; + +struct Expression_1_System_Func_1___Fields { + struct LambdaExpression__Fields _; +}; + +struct Expression_1_System_Func_1_ { + struct Expression_1_System_Func_1___Class *klass; + MonitorData *monitor; + struct Expression_1_System_Func_1___Fields fields; +}; + +struct Expression_1_System_Func_1___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_NodeType; + VirtualInvokeData get_Type; + VirtualInvokeData get_CanReduce; + VirtualInvokeData Reduce; + VirtualInvokeData VisitChildren; + VirtualInvokeData Accept; + VirtualInvokeData System_Linq_Expressions_IParameterProvider_GetParameter; + VirtualInvokeData System_Linq_Expressions_IParameterProvider_get_ParameterCount; + VirtualInvokeData get_TypeCore; + VirtualInvokeData get_PublicType; + VirtualInvokeData get_NameCore; + VirtualInvokeData get_TailCallCore; + VirtualInvokeData GetParameter; + VirtualInvokeData get_ParameterCount; + VirtualInvokeData Rewrite; +}; + +struct Expression_1_System_Func_1___StaticFields { +}; + +struct Expression_1_System_Func_1___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Expression_1_System_Func_1___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Expression_1_System_Func_1___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_List_1_System_Int32_ { + struct Dictionary_2_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_List_1_System_Int32_ *_dictionary; + int32_t _index; + int32_t _version; + struct JSONDeserialization_TaskField _currentKey; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_List_1_System_Int32___Boxed { + struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_List_1_System_Int32___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_List_1_System_Int32_ fields; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_List_1_System_Int32___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_List_1_System_Int32___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_List_1_System_Int32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_List_1_System_Int32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_BehaviorDesigner_Runtime_JSONDeserialization_TaskField_List_1_System_Int32___VTable vtable; +}; + +struct InputActionRebindingExtensions { + struct InputActionRebindingExtensions__Class *klass; + MonitorData *monitor; +}; + +struct InputActionRebindingExtensions__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct InputActionRebindingExtensions__StaticFields { + struct InputActionRebindingExtensions_DeferBindingResolutionWrapper *s_DeferBindingResolutionWrapper; +}; + +struct InputActionRebindingExtensions__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputActionRebindingExtensions__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputActionRebindingExtensions__VTable vtable; +}; + +struct __declspec(align(8)) List_1_List_1_UnityEngine_InputSystem_InputBinding___Fields { + struct List_1_UnityEngine_InputSystem_InputBinding___Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_List_1_UnityEngine_InputSystem_InputBinding_ { + struct List_1_List_1_UnityEngine_InputSystem_InputBinding___Class *klass; + MonitorData *monitor; + struct List_1_List_1_UnityEngine_InputSystem_InputBinding___Fields fields; +}; + +struct List_1_UnityEngine_InputSystem_InputBinding___Array { + struct List_1_UnityEngine_InputSystem_InputBinding___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct List_1_UnityEngine_InputSystem_InputBinding_ *vector[32]; +}; + +struct IEnumerator_1_List_1_UnityEngine_InputSystem_InputBinding_ { + struct IEnumerator_1_List_1_UnityEngine_InputSystem_InputBinding___Class *klass; + MonitorData *monitor; +}; + +struct List_1_UnityEngine_InputSystem_InputBinding___Array__VTable { +}; + +struct List_1_UnityEngine_InputSystem_InputBinding___Array__StaticFields { +}; + +struct List_1_UnityEngine_InputSystem_InputBinding___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_InputSystem_InputBinding___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_InputSystem_InputBinding___Array__VTable vtable; +}; + +struct IEnumerator_1_List_1_UnityEngine_InputSystem_InputBinding___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_List_1_UnityEngine_InputSystem_InputBinding___StaticFields { +}; + +struct IEnumerator_1_List_1_UnityEngine_InputSystem_InputBinding___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_List_1_UnityEngine_InputSystem_InputBinding___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_List_1_UnityEngine_InputSystem_InputBinding___VTable vtable; +}; + +struct List_1_List_1_UnityEngine_InputSystem_InputBinding___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_List_1_UnityEngine_InputSystem_InputBinding___StaticFields { + struct List_1_UnityEngine_InputSystem_InputBinding___Array *s_emptyArray; +}; + +struct List_1_List_1_UnityEngine_InputSystem_InputBinding___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_List_1_UnityEngine_InputSystem_InputBinding___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_List_1_UnityEngine_InputSystem_InputBinding___VTable vtable; +}; + +struct __declspec(align(8)) List_1_UnityEngine_InputSystem_InputActionMap___Fields { + struct InputActionMap__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_InputSystem_InputActionMap_ { + struct List_1_UnityEngine_InputSystem_InputActionMap___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_InputSystem_InputActionMap___Fields fields; +}; + +struct List_1_UnityEngine_InputSystem_InputActionMap___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_UnityEngine_InputSystem_InputActionMap___StaticFields { + struct InputActionMap__Array *s_emptyArray; +}; + +struct List_1_UnityEngine_InputSystem_InputActionMap___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_InputSystem_InputActionMap___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_InputSystem_InputActionMap___VTable vtable; +}; + +struct __declspec(align(8)) List_1_List_1_UnityEngine_InputSystem_InputAction___Fields { + struct List_1_UnityEngine_InputSystem_InputAction___Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_List_1_UnityEngine_InputSystem_InputAction_ { + struct List_1_List_1_UnityEngine_InputSystem_InputAction___Class *klass; + MonitorData *monitor; + struct List_1_List_1_UnityEngine_InputSystem_InputAction___Fields fields; +}; + +struct List_1_UnityEngine_InputSystem_InputAction___Array { + struct List_1_UnityEngine_InputSystem_InputAction___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct List_1_UnityEngine_InputSystem_InputAction_ *vector[32]; +}; + +struct IEnumerator_1_List_1_UnityEngine_InputSystem_InputAction_ { + struct IEnumerator_1_List_1_UnityEngine_InputSystem_InputAction___Class *klass; + MonitorData *monitor; +}; + +struct List_1_UnityEngine_InputSystem_InputAction___Array__VTable { +}; + +struct List_1_UnityEngine_InputSystem_InputAction___Array__StaticFields { +}; + +struct List_1_UnityEngine_InputSystem_InputAction___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_InputSystem_InputAction___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_InputSystem_InputAction___Array__VTable vtable; +}; + +struct IEnumerator_1_List_1_UnityEngine_InputSystem_InputAction___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_List_1_UnityEngine_InputSystem_InputAction___StaticFields { +}; + +struct IEnumerator_1_List_1_UnityEngine_InputSystem_InputAction___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_List_1_UnityEngine_InputSystem_InputAction___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_List_1_UnityEngine_InputSystem_InputAction___VTable vtable; +}; + +struct List_1_List_1_UnityEngine_InputSystem_InputAction___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_List_1_UnityEngine_InputSystem_InputAction___StaticFields { + struct List_1_UnityEngine_InputSystem_InputAction___Array *s_emptyArray; +}; + +struct List_1_List_1_UnityEngine_InputSystem_InputAction___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_List_1_UnityEngine_InputSystem_InputAction___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_List_1_UnityEngine_InputSystem_InputAction___VTable vtable; +}; + +struct IReadOnlyList_1_UnityEngine_InputSystem_InputDevice_ { + struct IReadOnlyList_1_UnityEngine_InputSystem_InputDevice___Class *klass; + MonitorData *monitor; +}; + +struct IReadOnlyList_1_UnityEngine_InputSystem_InputDevice___VTable { + VirtualInvokeData get_Item; +}; + +struct IReadOnlyList_1_UnityEngine_InputSystem_InputDevice___StaticFields { +}; + +struct IReadOnlyList_1_UnityEngine_InputSystem_InputDevice___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IReadOnlyList_1_UnityEngine_InputSystem_InputDevice___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IReadOnlyList_1_UnityEngine_InputSystem_InputDevice___VTable vtable; +}; + +struct InputDevice__2__VTable { +}; + +struct InputDevice__2__StaticFields { +}; + +struct InputDevice__2__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputDevice__2__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputDevice__2__VTable vtable; +}; + +struct OneOrMore_2_UnityEngine_InputSystem_InputActionMap_ReadOnlyArray_1_UnityEngine_InputSystem_InputActionMap_ { + bool m_IsSingle; + struct InputActionMap *m_Single; + struct ReadOnlyArray_1_UnityEngine_InputSystem_InputActionMap_ m_Multiple; +}; + +struct OneOrMore_2_UnityEngine_InputSystem_InputActionMap_ReadOnlyArray_1_UnityEngine_InputSystem_InputActionMap___Boxed { + struct OneOrMore_2_UnityEngine_InputSystem_InputActionMap_ReadOnlyArray_1_UnityEngine_InputSystem_InputActionMap___Class *klass; + MonitorData *monitor; + struct OneOrMore_2_UnityEngine_InputSystem_InputActionMap_ReadOnlyArray_1_UnityEngine_InputSystem_InputActionMap_ fields; +}; + +struct OneOrMore_2_UnityEngine_InputSystem_InputActionMap_ReadOnlyArray_1_UnityEngine_InputSystem_InputActionMap___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData get_Count; + VirtualInvokeData GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; +}; + +struct OneOrMore_2_UnityEngine_InputSystem_InputActionMap_ReadOnlyArray_1_UnityEngine_InputSystem_InputActionMap___StaticFields { +}; + +struct OneOrMore_2_UnityEngine_InputSystem_InputActionMap_ReadOnlyArray_1_UnityEngine_InputSystem_InputActionMap___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct OneOrMore_2_UnityEngine_InputSystem_InputActionMap_ReadOnlyArray_1_UnityEngine_InputSystem_InputActionMap___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct OneOrMore_2_UnityEngine_InputSystem_InputActionMap_ReadOnlyArray_1_UnityEngine_InputSystem_InputActionMap___VTable vtable; +}; + +struct ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputAction_ { + struct InputAction_1__Array *m_Array; + int32_t m_IndexStart; + int32_t m_IndexEnd; + int32_t m_Index; +}; + +struct ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputAction___Boxed { + struct ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputAction___Class *klass; + MonitorData *monitor; + struct ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputAction_ fields; +}; + +struct ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputAction___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData Reset; +}; + +struct ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputAction___StaticFields { +}; + +struct ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputAction___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputAction___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputAction___VTable vtable; +}; + +struct InputActionAsset_WriteFileJson { + struct String *name; + struct InputActionMap_WriteMapJson__Array *maps; + struct InputControlScheme_SchemeJson__Array *controlSchemes; +}; + +struct InputActionAsset_WriteFileJson__Boxed { + struct InputActionAsset_WriteFileJson__Class *klass; + MonitorData *monitor; + struct InputActionAsset_WriteFileJson fields; +}; + +struct InputActionAsset_WriteFileJson__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct InputActionAsset_WriteFileJson__StaticFields { +}; + +struct InputActionAsset_WriteFileJson__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputActionAsset_WriteFileJson__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputActionAsset_WriteFileJson__VTable vtable; +}; + +struct ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputActionMap_ { + struct InputActionMap__Array *m_Array; + int32_t m_IndexStart; + int32_t m_IndexEnd; + int32_t m_Index; +}; + +struct ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputActionMap___Boxed { + struct ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputActionMap___Class *klass; + MonitorData *monitor; + struct ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputActionMap_ fields; +}; + +struct ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputActionMap___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData Reset; +}; + +struct ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputActionMap___StaticFields { +}; + +struct ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputActionMap___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputActionMap___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputActionMap___VTable vtable; +}; + +struct InputUpdate { + struct InputUpdate__Class *klass; + MonitorData *monitor; +}; + +struct InputUpdate__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct InputUpdate__StaticFields { + uint32_t s_UpdateStepCount; + #if defined(_CPLUSPLUS_) + InputUpdateType__Enum s_LatestUpdateType; + #else + int32_t s_LatestUpdateType; + #endif + struct InputUpdate_UpdateStepCount s_PlayerUpdateStepCount; +}; + +struct InputUpdate__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputUpdate__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputUpdate__VTable vtable; +}; + +struct InputManager_Base__Array { + struct InputManager_Base__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct InputManager_Base *vector[32]; +}; + +struct InputManager_Base__Array__VTable { +}; + +struct InputManager_Base__Array__StaticFields { +}; + +struct InputManager_Base__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputManager_Base__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputManager_Base__Array__VTable vtable; +}; + +struct DebugInformation_ISUYuYsjJYHFziEhEbUyviTWasidb { + struct DebugInformation_ISUYuYsjJYHFziEhEbUyviTWasidb__Class *klass; + MonitorData *monitor; +}; + +struct DebugInformation_ISUYuYsjJYHFziEhEbUyviTWasidb__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct DebugInformation_ISUYuYsjJYHFziEhEbUyviTWasidb__StaticFields { + float PuYgHkfqUNKtpxlJazrcmfKvvcaFA; + float HvkdNOwEnbIByclfBHKvwSROovsp; +}; + +struct DebugInformation_ISUYuYsjJYHFziEhEbUyviTWasidb__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DebugInformation_ISUYuYsjJYHFziEhEbUyviTWasidb__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DebugInformation_ISUYuYsjJYHFziEhEbUyviTWasidb__VTable vtable; +}; + +struct DebugInformation_nhmIhIEoSBPixqxYllnIbALUlDFU { + struct DebugInformation_nhmIhIEoSBPixqxYllnIbALUlDFU__Class *klass; + MonitorData *monitor; +}; + +struct DebugInformation_nhmIhIEoSBPixqxYllnIbALUlDFU__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct DebugInformation_nhmIhIEoSBPixqxYllnIbALUlDFU__StaticFields { + int32_t OgGIMAyAkugxNdWLVYvGKnmTOZzV; +}; + +struct DebugInformation_nhmIhIEoSBPixqxYllnIbALUlDFU__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DebugInformation_nhmIhIEoSBPixqxYllnIbALUlDFU__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DebugInformation_nhmIhIEoSBPixqxYllnIbALUlDFU__VTable vtable; +}; + +struct ICollection_1_Rewired_Controller_Axis_ { + struct ICollection_1_Rewired_Controller_Axis___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_Rewired_Controller_Axis___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_Rewired_Controller_Axis___StaticFields { +}; + +struct ICollection_1_Rewired_Controller_Axis___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_Rewired_Controller_Axis___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_Rewired_Controller_Axis___VTable vtable; +}; + +struct ICollection_1_Rewired_Controller_Button_ { + struct ICollection_1_Rewired_Controller_Button___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_Rewired_Controller_Button___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_Rewired_Controller_Button___StaticFields { +}; + +struct ICollection_1_Rewired_Controller_Button___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_Rewired_Controller_Button___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_Rewired_Controller_Button___VTable vtable; +}; + +struct Predicate_1_Rewired_InputAction___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Predicate_1_Rewired_InputAction_ { + struct Predicate_1_Rewired_InputAction___Class *klass; + MonitorData *monitor; + struct Predicate_1_Rewired_InputAction___Fields fields; +}; + +struct Predicate_1_Rewired_InputAction___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Predicate_1_Rewired_InputAction___StaticFields { +}; + +struct Predicate_1_Rewired_InputAction___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Predicate_1_Rewired_InputAction___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Predicate_1_Rewired_InputAction___VTable vtable; +}; + +struct ICollection_1_Rewired_CustomController_ { + struct ICollection_1_Rewired_CustomController___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_Rewired_CustomController___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_Rewired_CustomController___StaticFields { +}; + +struct ICollection_1_Rewired_CustomController___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_Rewired_CustomController___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_Rewired_CustomController___VTable vtable; +}; + +struct ICollection_1_KeyValuePair_2_System_String_System_Boolean_ { + struct ICollection_1_KeyValuePair_2_System_String_System_Boolean___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_KeyValuePair_2_System_String_System_Boolean___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_KeyValuePair_2_System_String_System_Boolean___StaticFields { +}; + +struct ICollection_1_KeyValuePair_2_System_String_System_Boolean___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_KeyValuePair_2_System_String_System_Boolean___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_KeyValuePair_2_System_String_System_Boolean___VTable vtable; +}; + +struct HashHelpers { + struct HashHelpers__Class *klass; + MonitorData *monitor; +}; + +struct HashHelpers__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct HashHelpers__StaticFields { + int32_t RandomSeed; +}; + +struct HashHelpers__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashHelpers__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashHelpers__VTable vtable; +}; + +struct BoltIterator_1_Photon_Bolt_Internal_EntityProxy_ { + struct EntityProxy *_node; + int32_t _count; + int32_t _number; + struct EntityProxy *val; +}; + +struct BoltIterator_1_Photon_Bolt_Internal_EntityProxy___Boxed { + struct BoltIterator_1_Photon_Bolt_Internal_EntityProxy___Class *klass; + MonitorData *monitor; + struct BoltIterator_1_Photon_Bolt_Internal_EntityProxy_ fields; +}; + +struct BoltIterator_1_Photon_Bolt_Internal_EntityProxy___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltIterator_1_Photon_Bolt_Internal_EntityProxy___StaticFields { +}; + +struct BoltIterator_1_Photon_Bolt_Internal_EntityProxy___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltIterator_1_Photon_Bolt_Internal_EntityProxy___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltIterator_1_Photon_Bolt_Internal_EntityProxy___VTable vtable; +}; + +struct BoltIterator_1_Photon_Bolt_NetworkStorage_ { + struct NetworkStorage *_node; + int32_t _count; + int32_t _number; + struct NetworkStorage *val; +}; + +struct BoltIterator_1_Photon_Bolt_NetworkStorage___Boxed { + struct BoltIterator_1_Photon_Bolt_NetworkStorage___Class *klass; + MonitorData *monitor; + struct BoltIterator_1_Photon_Bolt_NetworkStorage_ fields; +}; + +struct BoltIterator_1_Photon_Bolt_NetworkStorage___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltIterator_1_Photon_Bolt_NetworkStorage___StaticFields { +}; + +struct BoltIterator_1_Photon_Bolt_NetworkStorage___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltIterator_1_Photon_Bolt_NetworkStorage___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltIterator_1_Photon_Bolt_NetworkStorage___VTable vtable; +}; + +struct IDebugDrawer { + struct IDebugDrawer__Class *klass; + MonitorData *monitor; +}; + +struct IDebugDrawer__VTable { + VirtualInvokeData IsEditor; + VirtualInvokeData Indent; + VirtualInvokeData Label; + VirtualInvokeData LabelBold; + VirtualInvokeData LabelField; + VirtualInvokeData DrawObjectArray; + VirtualInvokeData Separator; + VirtualInvokeData SelectGameObject; +}; + +struct IDebugDrawer__StaticFields { +}; + +struct IDebugDrawer__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IDebugDrawer__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IDebugDrawer__VTable vtable; +}; + +struct CallbackArray_1_System_Action_2__14__VTable { +}; + +struct CallbackArray_1_System_Action_2__14__StaticFields { +}; + +struct CallbackArray_1_System_Action_2__14__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CallbackArray_1_System_Action_2__14__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CallbackArray_1_System_Action_2__14__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta_ { + int32_t hashCode; + int32_t next; + struct TypeId key; + struct NetworkState_Meta *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta___Boxed { + struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta_ fields; +}; + +struct __declspec(align(8)) Dictionary_2_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_Photon_Bolt_TypeId_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta_ { + struct Dictionary_2_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta___Class *klass; + MonitorData *monitor; + struct Dictionary_2_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta___Fields fields; +}; + +struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta___Array { + struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta_ vector[32]; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_KeyCollection_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta___Fields { + struct Dictionary_2_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta_ { + struct Dictionary_2_TKey_TValue_KeyCollection_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_KeyCollection_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta___Fields fields; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_ValueCollection_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta___Fields { + struct Dictionary_2_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta_ { + struct Dictionary_2_TKey_TValue_ValueCollection_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta___Fields fields; +}; + +struct NetworkState_Meta__Array { + struct NetworkState_Meta__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct NetworkState_Meta *vector[32]; +}; + +struct IEnumerator_1_Photon_Bolt_NetworkState_Meta_ { + struct IEnumerator_1_Photon_Bolt_NetworkState_Meta___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_Photon_Bolt_NetworkState_Meta_ { + struct ICollection_1_Photon_Bolt_NetworkState_Meta___Class *klass; + MonitorData *monitor; +}; + +struct KeyValuePair_2_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta_ { + struct TypeId key; + struct NetworkState_Meta *value; +}; + +struct KeyValuePair_2_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta___Boxed { + struct KeyValuePair_2_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta___Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta_ fields; +}; + +struct KeyValuePair_2_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta___Array { + struct KeyValuePair_2_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct KeyValuePair_2_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta_ vector[32]; +}; + +struct IEnumerator_1_KeyValuePair_2_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta_ { + struct IEnumerator_1_KeyValuePair_2_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_Photon_Bolt_NetworkState_Meta_ { + struct IEnumerable_1_Photon_Bolt_NetworkState_Meta___Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta___Array__VTable { +}; + +struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta___Array__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta___Array__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TKey__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_KeyCollection_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_KeyCollection_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta___VTable vtable; +}; + +struct NetworkState_Meta__Array__VTable { +}; + +struct NetworkState_Meta__Array__StaticFields { +}; + +struct NetworkState_Meta__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NetworkState_Meta__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NetworkState_Meta__Array__VTable vtable; +}; + +struct IEnumerator_1_Photon_Bolt_NetworkState_Meta___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_Photon_Bolt_NetworkState_Meta___StaticFields { +}; + +struct IEnumerator_1_Photon_Bolt_NetworkState_Meta___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_Photon_Bolt_NetworkState_Meta___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_Photon_Bolt_NetworkState_Meta___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TValue__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta___VTable vtable; +}; + +struct ICollection_1_Photon_Bolt_NetworkState_Meta___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_Photon_Bolt_NetworkState_Meta___StaticFields { +}; + +struct ICollection_1_Photon_Bolt_NetworkState_Meta___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_Photon_Bolt_NetworkState_Meta___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_Photon_Bolt_NetworkState_Meta___VTable vtable; +}; + +struct NetworkState_Meta___VTable { +}; + +struct NetworkState_Meta___StaticFields { +}; + +struct NetworkState_Meta___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NetworkState_Meta___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NetworkState_Meta___VTable vtable; +}; + +struct KeyValuePair_2_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct KeyValuePair_2_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta___StaticFields { +}; + +struct KeyValuePair_2_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta___VTable vtable; +}; + +struct KeyValuePair_2_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta___Array__VTable { +}; + +struct KeyValuePair_2_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta___Array__StaticFields { +}; + +struct KeyValuePair_2_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta___Array__VTable vtable; +}; + +struct IEnumerator_1_KeyValuePair_2_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_KeyValuePair_2_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta___StaticFields { +}; + +struct IEnumerator_1_KeyValuePair_2_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_KeyValuePair_2_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_KeyValuePair_2_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta___VTable vtable; +}; + +struct IEnumerable_1_Photon_Bolt_NetworkState_Meta___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_Photon_Bolt_NetworkState_Meta___StaticFields { +}; + +struct IEnumerable_1_Photon_Bolt_NetworkState_Meta___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_Photon_Bolt_NetworkState_Meta___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_Photon_Bolt_NetworkState_Meta___VTable vtable; +}; + +struct Dictionary_2_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Values; + VirtualInvokeData ContainsKey; + VirtualInvokeData Add; + VirtualInvokeData Remove; + VirtualInvokeData TryGetValue; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add; + VirtualInvokeData Clear; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_get_Item; + VirtualInvokeData System_Collections_IDictionary_set_Item; + VirtualInvokeData System_Collections_IDictionary_get_Keys; + VirtualInvokeData System_Collections_IDictionary_get_Values; + VirtualInvokeData System_Collections_IDictionary_Contains; + VirtualInvokeData System_Collections_IDictionary_Add; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IDictionary_get_IsReadOnly; + VirtualInvokeData System_Collections_IDictionary_get_IsFixedSize; + VirtualInvokeData System_Collections_IDictionary_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_Remove; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData TryGetValue_1; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Values; + VirtualInvokeData get_Count_2; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct Dictionary_2_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta___StaticFields { +}; + +struct Dictionary_2_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta___VTable vtable; +}; + +struct BoltStateMetas { + struct BoltStateMetas__Class *klass; + MonitorData *monitor; +}; + +struct BoltStateMetas__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltStateMetas__StaticFields { + struct Dictionary_2_Photon_Bolt_TypeId_Photon_Bolt_NetworkState_Meta_ *boltStateMetas; +}; + +struct BoltStateMetas__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltStateMetas__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltStateMetas__VTable vtable; +}; + +struct InputAction__1__VTable { +}; + +struct InputAction__1__StaticFields { +}; + +struct InputAction__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputAction__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputAction__1__VTable vtable; +}; + +struct InputActionMap___VTable { +}; + +struct InputActionMap___StaticFields { +}; + +struct InputActionMap___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputActionMap___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputActionMap___VTable vtable; +}; + +struct NetworkIdAllocator { + struct NetworkIdAllocator__Class *klass; + MonitorData *monitor; +}; + +struct NetworkIdAllocator__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct NetworkIdAllocator__StaticFields { + uint32_t EntityId; + uint32_t ConnectionId; +}; + +struct NetworkIdAllocator__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NetworkIdAllocator__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NetworkIdAllocator__VTable vtable; +}; + +struct Comparison_1_plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Comparison_1_plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG_ { + struct Comparison_1_plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG___Class *klass; + MonitorData *monitor; + struct Comparison_1_plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG___Fields fields; +}; + +struct Comparison_1_plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Comparison_1_plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG___StaticFields { +}; + +struct Comparison_1_plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Comparison_1_plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Comparison_1_plBfGLfQeUzmsEdwSpoZbnYJHVeW_ypqnDKDHOBJLLlAwctnAQGDhVERG___VTable vtable; +}; + +struct Comparison_1_Rewired_Joystick___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Comparison_1_Rewired_Joystick_ { + struct Comparison_1_Rewired_Joystick___Class *klass; + MonitorData *monitor; + struct Comparison_1_Rewired_Joystick___Fields fields; +}; + +struct Comparison_1_Rewired_Joystick___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Comparison_1_Rewired_Joystick___StaticFields { +}; + +struct Comparison_1_Rewired_Joystick___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Comparison_1_Rewired_Joystick___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Comparison_1_Rewired_Joystick___VTable vtable; +}; + +struct ICollection_1_Rewired_KeyboardMap_ { + struct ICollection_1_Rewired_KeyboardMap___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_Rewired_KeyboardMap___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_Rewired_KeyboardMap___StaticFields { +}; + +struct ICollection_1_Rewired_KeyboardMap___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_Rewired_KeyboardMap___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_Rewired_KeyboardMap___VTable vtable; +}; + +struct IPriorityCalculator__Array { + struct IPriorityCalculator__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct IPriorityCalculator *vector[32]; +}; + +struct IPriorityCalculator__Array__VTable { +}; + +struct IPriorityCalculator__Array__StaticFields { +}; + +struct IPriorityCalculator__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IPriorityCalculator__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IPriorityCalculator__Array__VTable vtable; +}; + +struct IEntityReplicationFilter__Array { + struct IEntityReplicationFilter__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct IEntityReplicationFilter *vector[32]; +}; + +struct IEntityReplicationFilter__Array__VTable { +}; + +struct IEntityReplicationFilter__Array__StaticFields { +}; + +struct IEntityReplicationFilter__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEntityReplicationFilter__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEntityReplicationFilter__Array__VTable vtable; +}; + +struct __declspec(align(8)) BoltDoubleList_1_Photon_Bolt_Entity___Fields { + struct Entity *_first; + int32_t _count; +}; + +struct BoltDoubleList_1_Photon_Bolt_Entity_ { + struct BoltDoubleList_1_Photon_Bolt_Entity___Class *klass; + MonitorData *monitor; + struct BoltDoubleList_1_Photon_Bolt_Entity___Fields fields; +}; + +struct BoltDoubleList_1_Photon_Bolt_Entity___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; +}; + +struct BoltDoubleList_1_Photon_Bolt_Entity___StaticFields { +}; + +struct BoltDoubleList_1_Photon_Bolt_Entity___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltDoubleList_1_Photon_Bolt_Entity___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltDoubleList_1_Photon_Bolt_Entity___VTable vtable; +}; + +struct LinkedList_1_T_Enumerator_Photon_Bolt_BoltConnection_ { + struct LinkedList_1_Photon_Bolt_BoltConnection_ *_list; + struct LinkedListNode_1_Photon_Bolt_BoltConnection_ *_node; + int32_t _version; + struct BoltConnection *_current; + int32_t _index; +}; + +struct LinkedList_1_T_Enumerator_Photon_Bolt_BoltConnection___Boxed { + struct LinkedList_1_T_Enumerator_Photon_Bolt_BoltConnection___Class *klass; + MonitorData *monitor; + struct LinkedList_1_T_Enumerator_Photon_Bolt_BoltConnection_ fields; +}; + +struct __declspec(align(8)) LinkedList_1_Photon_Bolt_BoltConnection___Fields { + struct LinkedListNode_1_Photon_Bolt_BoltConnection_ *head; + int32_t count; + int32_t version; + struct Object *_syncRoot; + struct SerializationInfo *_siInfo; +}; + +struct LinkedList_1_Photon_Bolt_BoltConnection_ { + struct LinkedList_1_Photon_Bolt_BoltConnection___Class *klass; + MonitorData *monitor; + struct LinkedList_1_Photon_Bolt_BoltConnection___Fields fields; +}; + +struct __declspec(align(8)) LinkedListNode_1_Photon_Bolt_BoltConnection___Fields { + struct LinkedList_1_Photon_Bolt_BoltConnection_ *list; + struct LinkedListNode_1_Photon_Bolt_BoltConnection_ *next; + struct LinkedListNode_1_Photon_Bolt_BoltConnection_ *prev; + struct BoltConnection *item; +}; + +struct LinkedListNode_1_Photon_Bolt_BoltConnection_ { + struct LinkedListNode_1_Photon_Bolt_BoltConnection___Class *klass; + MonitorData *monitor; + struct LinkedListNode_1_Photon_Bolt_BoltConnection___Fields fields; +}; + +struct BoltConnection__Array { + struct BoltConnection__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct BoltConnection *vector[32]; +}; + +struct IEnumerator_1_Photon_Bolt_BoltConnection_ { + struct IEnumerator_1_Photon_Bolt_BoltConnection___Class *klass; + MonitorData *monitor; +}; + +struct LinkedListNode_1_Photon_Bolt_BoltConnection___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct LinkedListNode_1_Photon_Bolt_BoltConnection___StaticFields { +}; + +struct LinkedListNode_1_Photon_Bolt_BoltConnection___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct LinkedListNode_1_Photon_Bolt_BoltConnection___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct LinkedListNode_1_Photon_Bolt_BoltConnection___VTable vtable; +}; + +struct BoltConnection__Array__VTable { +}; + +struct BoltConnection__Array__StaticFields { +}; + +struct BoltConnection__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltConnection__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltConnection__Array__VTable vtable; +}; + +struct IEnumerator_1_Photon_Bolt_BoltConnection___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_Photon_Bolt_BoltConnection___StaticFields { +}; + +struct IEnumerator_1_Photon_Bolt_BoltConnection___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_Photon_Bolt_BoltConnection___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_Photon_Bolt_BoltConnection___VTable vtable; +}; + +struct LinkedList_1_Photon_Bolt_BoltConnection___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_T__Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct LinkedList_1_Photon_Bolt_BoltConnection___StaticFields { +}; + +struct LinkedList_1_Photon_Bolt_BoltConnection___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct LinkedList_1_Photon_Bolt_BoltConnection___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct LinkedList_1_Photon_Bolt_BoltConnection___VTable vtable; +}; + +struct LinkedList_1_T_Enumerator_Photon_Bolt_BoltConnection___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; + VirtualInvokeData System_Runtime_Serialization_ISerializable_GetObjectData; + VirtualInvokeData System_Runtime_Serialization_IDeserializationCallback_OnDeserialization; +}; + +struct LinkedList_1_T_Enumerator_Photon_Bolt_BoltConnection___StaticFields { +}; + +struct LinkedList_1_T_Enumerator_Photon_Bolt_BoltConnection___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct LinkedList_1_T_Enumerator_Photon_Bolt_BoltConnection___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct LinkedList_1_T_Enumerator_Photon_Bolt_BoltConnection___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_Photon_Bolt_Internal_EntityProxy_ { + struct Dictionary_2_Photon_Bolt_NetworkId_Photon_Bolt_Internal_EntityProxy_ *_dictionary; + int32_t _version; + int32_t _index; + struct KeyValuePair_2_Photon_Bolt_NetworkId_Photon_Bolt_Internal_EntityProxy_ _current; + int32_t _getEnumeratorRetType; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_Photon_Bolt_Internal_EntityProxy___Boxed { + struct Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_Photon_Bolt_Internal_EntityProxy___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_Photon_Bolt_Internal_EntityProxy_ fields; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_Photon_Bolt_Internal_EntityProxy___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Key; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Value; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Entry; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_Photon_Bolt_Internal_EntityProxy___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_Photon_Bolt_Internal_EntityProxy___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_Photon_Bolt_Internal_EntityProxy___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_NetworkId_Photon_Bolt_Internal_EntityProxy___VTable vtable; +}; + +struct othBwbjJCfqjCkCuDgXhdkQCXIPtA___VTable { +}; + +struct othBwbjJCfqjCkCuDgXhdkQCXIPtA___StaticFields { +}; + +struct othBwbjJCfqjCkCuDgXhdkQCXIPtA___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct othBwbjJCfqjCkCuDgXhdkQCXIPtA___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct othBwbjJCfqjCkCuDgXhdkQCXIPtA___VTable vtable; +}; + +struct UnitySettings { + struct UnitySettings__Class *klass; + MonitorData *monitor; +}; + +#if defined(_CPLUSPLUS_) +enum class UnitySettings_DotNetVersion__Enum : int32_t { + DOTNET_35 = 0x00000000, + DOTNET_4x = 0x00000001, +}; + +#else +enum UnitySettings_DotNetVersion__Enum { + UnitySettings_DotNetVersion__Enum_DOTNET_35 = 0x00000000, + UnitySettings_DotNetVersion__Enum_DOTNET_4x = 0x00000001, +}; + +#endif +struct UnitySettings_DotNetVersion__Enum__Boxed { + struct UnitySettings_DotNetVersion__Enum__Class *klass; + MonitorData *monitor; + #if defined(_CPLUSPLUS_) + UnitySettings_DotNetVersion__Enum value; + #else + int32_t value; + #endif +}; + +struct UnitySettings_DotNetVersion__Enum__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData CompareTo; + VirtualInvokeData ToString_1; + VirtualInvokeData GetTypeCode; + VirtualInvokeData System_IConvertible_ToBoolean; + VirtualInvokeData System_IConvertible_ToChar; + VirtualInvokeData System_IConvertible_ToSByte; + VirtualInvokeData System_IConvertible_ToByte; + VirtualInvokeData System_IConvertible_ToInt16; + VirtualInvokeData System_IConvertible_ToUInt16; + VirtualInvokeData System_IConvertible_ToInt32; + VirtualInvokeData System_IConvertible_ToUInt32; + VirtualInvokeData System_IConvertible_ToInt64; + VirtualInvokeData System_IConvertible_ToUInt64; + VirtualInvokeData System_IConvertible_ToSingle; + VirtualInvokeData System_IConvertible_ToDouble; + VirtualInvokeData System_IConvertible_ToDecimal; + VirtualInvokeData System_IConvertible_ToDateTime; + VirtualInvokeData ToString_2; + VirtualInvokeData System_IConvertible_ToType; +}; + +struct UnitySettings_DotNetVersion__Enum__StaticFields { +}; + +struct UnitySettings_DotNetVersion__Enum__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UnitySettings_DotNetVersion__Enum__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UnitySettings_DotNetVersion__Enum__VTable vtable; +}; + +struct UnitySettings__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct UnitySettings__StaticFields { + bool IsBuildMono; + bool IsBuildDotNet; + bool IsBuildIL2CPP; + #if defined(_CPLUSPLUS_) + UnitySettings_DotNetVersion__Enum CurrentDotNetVersion; + #else + int32_t CurrentDotNetVersion; + #endif + #if defined(_CPLUSPLUS_) + RuntimePlatform__Enum CurrentPlatform; + #else + int32_t CurrentPlatform; + #endif +}; + +struct UnitySettings__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UnitySettings__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UnitySettings__VTable vtable; +}; + +struct BoltPhysics { + struct BoltPhysics__Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) BoltDoubleList_1_Photon_Bolt_LagCompensation_BoltHitboxBody___Fields { + struct BoltHitboxBody *_first; + int32_t _count; +}; + +struct BoltDoubleList_1_Photon_Bolt_LagCompensation_BoltHitboxBody_ { + struct BoltDoubleList_1_Photon_Bolt_LagCompensation_BoltHitboxBody___Class *klass; + MonitorData *monitor; + struct BoltDoubleList_1_Photon_Bolt_LagCompensation_BoltHitboxBody___Fields fields; +}; + +struct IEnumerator_1_Photon_Bolt_LagCompensation_BoltHitboxBody_ { + struct IEnumerator_1_Photon_Bolt_LagCompensation_BoltHitboxBody___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) BoltDoubleList_1_Photon_Bolt_LagCompensation_BoltHitboxWorldSnapshot___Fields { + struct BoltHitboxWorldSnapshot *_first; + int32_t _count; +}; + +struct BoltDoubleList_1_Photon_Bolt_LagCompensation_BoltHitboxWorldSnapshot_ { + struct BoltDoubleList_1_Photon_Bolt_LagCompensation_BoltHitboxWorldSnapshot___Class *klass; + MonitorData *monitor; + struct BoltDoubleList_1_Photon_Bolt_LagCompensation_BoltHitboxWorldSnapshot___Fields fields; +}; + +struct IEnumerator_1_Photon_Bolt_LagCompensation_BoltHitboxBody___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_Photon_Bolt_LagCompensation_BoltHitboxBody___StaticFields { +}; + +struct IEnumerator_1_Photon_Bolt_LagCompensation_BoltHitboxBody___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_Photon_Bolt_LagCompensation_BoltHitboxBody___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_Photon_Bolt_LagCompensation_BoltHitboxBody___VTable vtable; +}; + +struct BoltDoubleList_1_Photon_Bolt_LagCompensation_BoltHitboxBody___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; +}; + +struct BoltDoubleList_1_Photon_Bolt_LagCompensation_BoltHitboxBody___StaticFields { +}; + +struct BoltDoubleList_1_Photon_Bolt_LagCompensation_BoltHitboxBody___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltDoubleList_1_Photon_Bolt_LagCompensation_BoltHitboxBody___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltDoubleList_1_Photon_Bolt_LagCompensation_BoltHitboxBody___VTable vtable; +}; + +struct BoltDoubleList_1_Photon_Bolt_LagCompensation_BoltHitboxWorldSnapshot___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; +}; + +struct BoltDoubleList_1_Photon_Bolt_LagCompensation_BoltHitboxWorldSnapshot___StaticFields { +}; + +struct BoltDoubleList_1_Photon_Bolt_LagCompensation_BoltHitboxWorldSnapshot___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltDoubleList_1_Photon_Bolt_LagCompensation_BoltHitboxWorldSnapshot___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltDoubleList_1_Photon_Bolt_LagCompensation_BoltHitboxWorldSnapshot___VTable vtable; +}; + +struct BoltPhysics__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltPhysics__StaticFields { + struct BoltDoubleList_1_Photon_Bolt_LagCompensation_BoltHitboxBody_ *_hitboxBodies; + struct BoltDoubleList_1_Photon_Bolt_LagCompensation_BoltHitboxWorldSnapshot_ *_worldSnapshots; +}; + +struct BoltPhysics__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltPhysics__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltPhysics__VTable vtable; +}; + +struct Factory_1 { + struct Factory_1__Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Byte_System_Type_ { + int32_t hashCode; + int32_t next; + uint8_t key; + struct Type *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Byte_System_Type___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Byte_System_Type___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Byte_System_Type_ fields; +}; + +struct __declspec(align(8)) Dictionary_2_System_Byte_System_Type___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_System_Byte_System_Type___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_System_Byte_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Byte_System_Type_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Byte_System_Type_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_System_Byte_System_Type_ { + struct Dictionary_2_System_Byte_System_Type___Class *klass; + MonitorData *monitor; + struct Dictionary_2_System_Byte_System_Type___Fields fields; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Byte_System_Type___Array { + struct Dictionary_2_TKey_TValue_Entry_System_Byte_System_Type___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Dictionary_2_TKey_TValue_Entry_System_Byte_System_Type_ vector[32]; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_KeyCollection_System_Byte_System_Type___Fields { + struct Dictionary_2_System_Byte_System_Type_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Byte_System_Type_ { + struct Dictionary_2_TKey_TValue_KeyCollection_System_Byte_System_Type___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Byte_System_Type___Fields fields; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_ValueCollection_System_Byte_System_Type___Fields { + struct Dictionary_2_System_Byte_System_Type_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Byte_System_Type_ { + struct Dictionary_2_TKey_TValue_ValueCollection_System_Byte_System_Type___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Byte_System_Type___Fields fields; +}; + +struct KeyValuePair_2_System_Byte_System_Type_ { + uint8_t key; + struct Type *value; +}; + +struct KeyValuePair_2_System_Byte_System_Type___Boxed { + struct KeyValuePair_2_System_Byte_System_Type___Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_System_Byte_System_Type_ fields; +}; + +struct KeyValuePair_2_System_Byte_System_Type___Array { + struct KeyValuePair_2_System_Byte_System_Type___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct KeyValuePair_2_System_Byte_System_Type_ vector[32]; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Byte_System_Type_ { + struct IEnumerator_1_KeyValuePair_2_System_Byte_System_Type___Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Byte_ { + int32_t hashCode; + int32_t next; + struct Type *key; + uint8_t value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Byte___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Byte___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Byte_ fields; +}; + +struct __declspec(align(8)) Dictionary_2_System_Type_System_Byte___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Byte___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_System_Type_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_System_Byte_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_System_Byte_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_System_Type_System_Byte_ { + struct Dictionary_2_System_Type_System_Byte___Class *klass; + MonitorData *monitor; + struct Dictionary_2_System_Type_System_Byte___Fields fields; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Byte___Array { + struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Byte___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Byte_ vector[32]; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_KeyCollection_System_Type_System_Byte___Fields { + struct Dictionary_2_System_Type_System_Byte_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_System_Byte_ { + struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_System_Byte___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_System_Byte___Fields fields; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_ValueCollection_System_Type_System_Byte___Fields { + struct Dictionary_2_System_Type_System_Byte_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_System_Byte_ { + struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_System_Byte___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_System_Byte___Fields fields; +}; + +struct KeyValuePair_2_System_Type_System_Byte_ { + struct Type *key; + uint8_t value; +}; + +struct KeyValuePair_2_System_Type_System_Byte___Boxed { + struct KeyValuePair_2_System_Type_System_Byte___Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_System_Type_System_Byte_ fields; +}; + +struct KeyValuePair_2_System_Type_System_Byte___Array { + struct KeyValuePair_2_System_Type_System_Byte___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct KeyValuePair_2_System_Type_System_Byte_ vector[32]; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Type_System_Byte_ { + struct IEnumerator_1_KeyValuePair_2_System_Type_System_Byte___Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_Photon_Bolt_ObjectPool_1_ { + int32_t hashCode; + int32_t next; + struct Type *key; + struct ObjectPool_1_Photon_Bolt_Internal_PooledProtocolTokenBase_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_Photon_Bolt_ObjectPool_1___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Type_Photon_Bolt_ObjectPool_1___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Type_Photon_Bolt_ObjectPool_1_ fields; +}; + +struct __declspec(align(8)) Dictionary_2_System_Type_Photon_Bolt_ObjectPool_1___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_System_Type_Photon_Bolt_ObjectPool_1___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_System_Type_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_Photon_Bolt_ObjectPool_1_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_Photon_Bolt_ObjectPool_1_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_System_Type_Photon_Bolt_ObjectPool_1_ { + struct Dictionary_2_System_Type_Photon_Bolt_ObjectPool_1___Class *klass; + MonitorData *monitor; + struct Dictionary_2_System_Type_Photon_Bolt_ObjectPool_1___Fields fields; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_Photon_Bolt_ObjectPool_1___Array { + struct Dictionary_2_TKey_TValue_Entry_System_Type_Photon_Bolt_ObjectPool_1___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Dictionary_2_TKey_TValue_Entry_System_Type_Photon_Bolt_ObjectPool_1_ vector[32]; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_KeyCollection_System_Type_Photon_Bolt_ObjectPool_1___Fields { + struct Dictionary_2_System_Type_Photon_Bolt_ObjectPool_1_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_Photon_Bolt_ObjectPool_1_ { + struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_Photon_Bolt_ObjectPool_1___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_Photon_Bolt_ObjectPool_1___Fields fields; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_ValueCollection_System_Type_Photon_Bolt_ObjectPool_1___Fields { + struct Dictionary_2_System_Type_Photon_Bolt_ObjectPool_1_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_Photon_Bolt_ObjectPool_1_ { + struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_Photon_Bolt_ObjectPool_1___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_Photon_Bolt_ObjectPool_1___Fields fields; +}; + +struct ObjectPool_1_Photon_Bolt_Internal_PooledProtocolTokenBase___Array { + struct ObjectPool_1_Photon_Bolt_Internal_PooledProtocolTokenBase___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct ObjectPool_1_Photon_Bolt_Internal_PooledProtocolTokenBase_ *vector[32]; +}; + +struct IEnumerator_1_Photon_Bolt_ObjectPool_1_ { + struct IEnumerator_1_Photon_Bolt_ObjectPool_1___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_Photon_Bolt_ObjectPool_1_ { + struct ICollection_1_Photon_Bolt_ObjectPool_1___Class *klass; + MonitorData *monitor; +}; + +struct KeyValuePair_2_System_Type_Photon_Bolt_ObjectPool_1_ { + struct Type *key; + struct ObjectPool_1_Photon_Bolt_Internal_PooledProtocolTokenBase_ *value; +}; + +struct KeyValuePair_2_System_Type_Photon_Bolt_ObjectPool_1___Boxed { + struct KeyValuePair_2_System_Type_Photon_Bolt_ObjectPool_1___Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_System_Type_Photon_Bolt_ObjectPool_1_ fields; +}; + +struct KeyValuePair_2_System_Type_Photon_Bolt_ObjectPool_1___Array { + struct KeyValuePair_2_System_Type_Photon_Bolt_ObjectPool_1___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct KeyValuePair_2_System_Type_Photon_Bolt_ObjectPool_1_ vector[32]; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Type_Photon_Bolt_ObjectPool_1_ { + struct IEnumerator_1_KeyValuePair_2_System_Type_Photon_Bolt_ObjectPool_1___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_Photon_Bolt_ObjectPool_1_ { + struct IEnumerable_1_Photon_Bolt_ObjectPool_1___Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_Photon_Bolt_Internal_IFactory_ { + int32_t hashCode; + int32_t next; + struct Type *key; + struct IFactory *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_Photon_Bolt_Internal_IFactory___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Type_Photon_Bolt_Internal_IFactory___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Type_Photon_Bolt_Internal_IFactory_ fields; +}; + +struct __declspec(align(8)) Dictionary_2_System_Type_Photon_Bolt_Internal_IFactory___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_System_Type_Photon_Bolt_Internal_IFactory___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_System_Type_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_Photon_Bolt_Internal_IFactory_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_Photon_Bolt_Internal_IFactory_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_System_Type_Photon_Bolt_Internal_IFactory_ { + struct Dictionary_2_System_Type_Photon_Bolt_Internal_IFactory___Class *klass; + MonitorData *monitor; + struct Dictionary_2_System_Type_Photon_Bolt_Internal_IFactory___Fields fields; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_Photon_Bolt_Internal_IFactory___Array { + struct Dictionary_2_TKey_TValue_Entry_System_Type_Photon_Bolt_Internal_IFactory___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Dictionary_2_TKey_TValue_Entry_System_Type_Photon_Bolt_Internal_IFactory_ vector[32]; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_KeyCollection_System_Type_Photon_Bolt_Internal_IFactory___Fields { + struct Dictionary_2_System_Type_Photon_Bolt_Internal_IFactory_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_Photon_Bolt_Internal_IFactory_ { + struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_Photon_Bolt_Internal_IFactory___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_Photon_Bolt_Internal_IFactory___Fields fields; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_ValueCollection_System_Type_Photon_Bolt_Internal_IFactory___Fields { + struct Dictionary_2_System_Type_Photon_Bolt_Internal_IFactory_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_Photon_Bolt_Internal_IFactory_ { + struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_Photon_Bolt_Internal_IFactory___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_Photon_Bolt_Internal_IFactory___Fields fields; +}; + +struct IFactory__Array { + struct IFactory__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct IFactory *vector[32]; +}; + +struct IEnumerator_1_Photon_Bolt_Internal_IFactory_ { + struct IEnumerator_1_Photon_Bolt_Internal_IFactory___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_Photon_Bolt_Internal_IFactory_ { + struct ICollection_1_Photon_Bolt_Internal_IFactory___Class *klass; + MonitorData *monitor; +}; + +struct KeyValuePair_2_System_Type_Photon_Bolt_Internal_IFactory_ { + struct Type *key; + struct IFactory *value; +}; + +struct KeyValuePair_2_System_Type_Photon_Bolt_Internal_IFactory___Boxed { + struct KeyValuePair_2_System_Type_Photon_Bolt_Internal_IFactory___Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_System_Type_Photon_Bolt_Internal_IFactory_ fields; +}; + +struct KeyValuePair_2_System_Type_Photon_Bolt_Internal_IFactory___Array { + struct KeyValuePair_2_System_Type_Photon_Bolt_Internal_IFactory___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct KeyValuePair_2_System_Type_Photon_Bolt_Internal_IFactory_ vector[32]; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Type_Photon_Bolt_Internal_IFactory_ { + struct IEnumerator_1_KeyValuePair_2_System_Type_Photon_Bolt_Internal_IFactory___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_Photon_Bolt_Internal_IFactory_ { + struct IEnumerable_1_Photon_Bolt_Internal_IFactory___Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory_ { + int32_t hashCode; + int32_t next; + struct TypeId key; + struct IFactory *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory___Boxed { + struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory_ fields; +}; + +struct __declspec(align(8)) Dictionary_2_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_Photon_Bolt_TypeId_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory_ { + struct Dictionary_2_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory___Class *klass; + MonitorData *monitor; + struct Dictionary_2_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory___Fields fields; +}; + +struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory___Array { + struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory_ vector[32]; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_KeyCollection_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory___Fields { + struct Dictionary_2_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory_ { + struct Dictionary_2_TKey_TValue_KeyCollection_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_KeyCollection_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory___Fields fields; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_ValueCollection_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory___Fields { + struct Dictionary_2_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory_ { + struct Dictionary_2_TKey_TValue_ValueCollection_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory___Fields fields; +}; + +struct KeyValuePair_2_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory_ { + struct TypeId key; + struct IFactory *value; +}; + +struct KeyValuePair_2_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory___Boxed { + struct KeyValuePair_2_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory___Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory_ fields; +}; + +struct KeyValuePair_2_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory___Array { + struct KeyValuePair_2_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct KeyValuePair_2_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory_ vector[32]; +}; + +struct IEnumerator_1_KeyValuePair_2_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory_ { + struct IEnumerator_1_KeyValuePair_2_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory___Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory_ { + int32_t hashCode; + int32_t next; + struct UniqueId key; + struct IFactory *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory___Boxed { + struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory_ fields; +}; + +struct __declspec(align(8)) Dictionary_2_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_Photon_Bolt_UniqueId_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory_ { + struct Dictionary_2_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory___Class *klass; + MonitorData *monitor; + struct Dictionary_2_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory___Fields fields; +}; + +struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory___Array { + struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory_ vector[32]; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_KeyCollection_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory___Fields { + struct Dictionary_2_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory_ { + struct Dictionary_2_TKey_TValue_KeyCollection_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_KeyCollection_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory___Fields fields; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_ValueCollection_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory___Fields { + struct Dictionary_2_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory_ { + struct Dictionary_2_TKey_TValue_ValueCollection_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory___Fields fields; +}; + +struct KeyValuePair_2_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory_ { + struct UniqueId key; + struct IFactory *value; +}; + +struct KeyValuePair_2_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory___Boxed { + struct KeyValuePair_2_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory___Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory_ fields; +}; + +struct KeyValuePair_2_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory___Array { + struct KeyValuePair_2_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct KeyValuePair_2_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory_ vector[32]; +}; + +struct IEnumerator_1_KeyValuePair_2_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory_ { + struct IEnumerator_1_KeyValuePair_2_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory___Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Byte_System_Type___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Byte_System_Type___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Byte_System_Type___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_System_Byte_System_Type___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_System_Byte_System_Type___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Byte_System_Type___Array__VTable { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Byte_System_Type___Array__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Byte_System_Type___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_System_Byte_System_Type___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_System_Byte_System_Type___Array__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Byte_System_Type___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TKey__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Byte_System_Type___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Byte_System_Type___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Byte_System_Type___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Byte_System_Type___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Byte_System_Type___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TValue__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Byte_System_Type___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Byte_System_Type___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Byte_System_Type___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Byte_System_Type___VTable vtable; +}; + +struct KeyValuePair_2_System_Byte_System_Type___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct KeyValuePair_2_System_Byte_System_Type___StaticFields { +}; + +struct KeyValuePair_2_System_Byte_System_Type___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_Byte_System_Type___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_Byte_System_Type___VTable vtable; +}; + +struct KeyValuePair_2_System_Byte_System_Type___Array__VTable { +}; + +struct KeyValuePair_2_System_Byte_System_Type___Array__StaticFields { +}; + +struct KeyValuePair_2_System_Byte_System_Type___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_Byte_System_Type___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_Byte_System_Type___Array__VTable vtable; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Byte_System_Type___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Byte_System_Type___StaticFields { +}; + +struct IEnumerator_1_KeyValuePair_2_System_Byte_System_Type___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_KeyValuePair_2_System_Byte_System_Type___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_KeyValuePair_2_System_Byte_System_Type___VTable vtable; +}; + +struct Dictionary_2_System_Byte_System_Type___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Values; + VirtualInvokeData ContainsKey; + VirtualInvokeData Add; + VirtualInvokeData Remove; + VirtualInvokeData TryGetValue; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add; + VirtualInvokeData Clear; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_get_Item; + VirtualInvokeData System_Collections_IDictionary_set_Item; + VirtualInvokeData System_Collections_IDictionary_get_Keys; + VirtualInvokeData System_Collections_IDictionary_get_Values; + VirtualInvokeData System_Collections_IDictionary_Contains; + VirtualInvokeData System_Collections_IDictionary_Add; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IDictionary_get_IsReadOnly; + VirtualInvokeData System_Collections_IDictionary_get_IsFixedSize; + VirtualInvokeData System_Collections_IDictionary_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_Remove; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData TryGetValue_1; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Values; + VirtualInvokeData get_Count_2; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct Dictionary_2_System_Byte_System_Type___StaticFields { +}; + +struct Dictionary_2_System_Byte_System_Type___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_System_Byte_System_Type___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_System_Byte_System_Type___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Byte___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Byte___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Byte___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Byte___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Byte___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Byte___Array__VTable { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Byte___Array__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Byte___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Byte___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_System_Type_System_Byte___Array__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_System_Byte___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TKey__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_System_Byte___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_System_Byte___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_System_Byte___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_System_Byte___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_System_Byte___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TValue__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_System_Byte___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_System_Byte___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_System_Byte___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_System_Byte___VTable vtable; +}; + +struct KeyValuePair_2_System_Type_System_Byte___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct KeyValuePair_2_System_Type_System_Byte___StaticFields { +}; + +struct KeyValuePair_2_System_Type_System_Byte___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_Type_System_Byte___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_Type_System_Byte___VTable vtable; +}; + +struct KeyValuePair_2_System_Type_System_Byte___Array__VTable { +}; + +struct KeyValuePair_2_System_Type_System_Byte___Array__StaticFields { +}; + +struct KeyValuePair_2_System_Type_System_Byte___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_Type_System_Byte___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_Type_System_Byte___Array__VTable vtable; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Type_System_Byte___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Type_System_Byte___StaticFields { +}; + +struct IEnumerator_1_KeyValuePair_2_System_Type_System_Byte___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_KeyValuePair_2_System_Type_System_Byte___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_KeyValuePair_2_System_Type_System_Byte___VTable vtable; +}; + +struct Dictionary_2_System_Type_System_Byte___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Values; + VirtualInvokeData ContainsKey; + VirtualInvokeData Add; + VirtualInvokeData Remove; + VirtualInvokeData TryGetValue; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add; + VirtualInvokeData Clear; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_get_Item; + VirtualInvokeData System_Collections_IDictionary_set_Item; + VirtualInvokeData System_Collections_IDictionary_get_Keys; + VirtualInvokeData System_Collections_IDictionary_get_Values; + VirtualInvokeData System_Collections_IDictionary_Contains; + VirtualInvokeData System_Collections_IDictionary_Add; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IDictionary_get_IsReadOnly; + VirtualInvokeData System_Collections_IDictionary_get_IsFixedSize; + VirtualInvokeData System_Collections_IDictionary_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_Remove; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData TryGetValue_1; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Values; + VirtualInvokeData get_Count_2; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct Dictionary_2_System_Type_System_Byte___StaticFields { +}; + +struct Dictionary_2_System_Type_System_Byte___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_System_Type_System_Byte___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_System_Type_System_Byte___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_Photon_Bolt_ObjectPool_1___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_Photon_Bolt_ObjectPool_1___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_Photon_Bolt_ObjectPool_1___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_System_Type_Photon_Bolt_ObjectPool_1___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_System_Type_Photon_Bolt_ObjectPool_1___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_Photon_Bolt_ObjectPool_1___Array__VTable { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_Photon_Bolt_ObjectPool_1___Array__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_Photon_Bolt_ObjectPool_1___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_System_Type_Photon_Bolt_ObjectPool_1___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_System_Type_Photon_Bolt_ObjectPool_1___Array__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_Photon_Bolt_ObjectPool_1___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TKey__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_Photon_Bolt_ObjectPool_1___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_Photon_Bolt_ObjectPool_1___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_Photon_Bolt_ObjectPool_1___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_Photon_Bolt_ObjectPool_1___VTable vtable; +}; + +struct ObjectPool_1_Photon_Bolt_Internal_PooledProtocolTokenBase___Array__VTable { +}; + +struct ObjectPool_1_Photon_Bolt_Internal_PooledProtocolTokenBase___Array__StaticFields { +}; + +struct ObjectPool_1_Photon_Bolt_Internal_PooledProtocolTokenBase___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ObjectPool_1_Photon_Bolt_Internal_PooledProtocolTokenBase___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ObjectPool_1_Photon_Bolt_Internal_PooledProtocolTokenBase___Array__VTable vtable; +}; + +struct IEnumerator_1_Photon_Bolt_ObjectPool_1___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_Photon_Bolt_ObjectPool_1___StaticFields { +}; + +struct IEnumerator_1_Photon_Bolt_ObjectPool_1___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_Photon_Bolt_ObjectPool_1___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_Photon_Bolt_ObjectPool_1___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_Photon_Bolt_ObjectPool_1___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TValue__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_Photon_Bolt_ObjectPool_1___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_Photon_Bolt_ObjectPool_1___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_Photon_Bolt_ObjectPool_1___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_Photon_Bolt_ObjectPool_1___VTable vtable; +}; + +struct ICollection_1_Photon_Bolt_ObjectPool_1___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_Photon_Bolt_ObjectPool_1___StaticFields { +}; + +struct ICollection_1_Photon_Bolt_ObjectPool_1___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_Photon_Bolt_ObjectPool_1___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_Photon_Bolt_ObjectPool_1___VTable vtable; +}; + +struct ObjectPool_1_Photon_Bolt_Internal_PooledProtocolTokenBase__1__VTable { +}; + +struct ObjectPool_1_Photon_Bolt_Internal_PooledProtocolTokenBase__1__StaticFields { +}; + +struct ObjectPool_1_Photon_Bolt_Internal_PooledProtocolTokenBase__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ObjectPool_1_Photon_Bolt_Internal_PooledProtocolTokenBase__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ObjectPool_1_Photon_Bolt_Internal_PooledProtocolTokenBase__1__VTable vtable; +}; + +struct KeyValuePair_2_System_Type_Photon_Bolt_ObjectPool_1___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct KeyValuePair_2_System_Type_Photon_Bolt_ObjectPool_1___StaticFields { +}; + +struct KeyValuePair_2_System_Type_Photon_Bolt_ObjectPool_1___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_Type_Photon_Bolt_ObjectPool_1___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_Type_Photon_Bolt_ObjectPool_1___VTable vtable; +}; + +struct KeyValuePair_2_System_Type_Photon_Bolt_ObjectPool_1___Array__VTable { +}; + +struct KeyValuePair_2_System_Type_Photon_Bolt_ObjectPool_1___Array__StaticFields { +}; + +struct KeyValuePair_2_System_Type_Photon_Bolt_ObjectPool_1___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_Type_Photon_Bolt_ObjectPool_1___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_Type_Photon_Bolt_ObjectPool_1___Array__VTable vtable; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Type_Photon_Bolt_ObjectPool_1___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Type_Photon_Bolt_ObjectPool_1___StaticFields { +}; + +struct IEnumerator_1_KeyValuePair_2_System_Type_Photon_Bolt_ObjectPool_1___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_KeyValuePair_2_System_Type_Photon_Bolt_ObjectPool_1___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_KeyValuePair_2_System_Type_Photon_Bolt_ObjectPool_1___VTable vtable; +}; + +struct IEnumerable_1_Photon_Bolt_ObjectPool_1___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_Photon_Bolt_ObjectPool_1___StaticFields { +}; + +struct IEnumerable_1_Photon_Bolt_ObjectPool_1___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_Photon_Bolt_ObjectPool_1___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_Photon_Bolt_ObjectPool_1___VTable vtable; +}; + +struct Dictionary_2_System_Type_Photon_Bolt_ObjectPool_1___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Values; + VirtualInvokeData ContainsKey; + VirtualInvokeData Add; + VirtualInvokeData Remove; + VirtualInvokeData TryGetValue; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add; + VirtualInvokeData Clear; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_get_Item; + VirtualInvokeData System_Collections_IDictionary_set_Item; + VirtualInvokeData System_Collections_IDictionary_get_Keys; + VirtualInvokeData System_Collections_IDictionary_get_Values; + VirtualInvokeData System_Collections_IDictionary_Contains; + VirtualInvokeData System_Collections_IDictionary_Add; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IDictionary_get_IsReadOnly; + VirtualInvokeData System_Collections_IDictionary_get_IsFixedSize; + VirtualInvokeData System_Collections_IDictionary_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_Remove; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData TryGetValue_1; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Values; + VirtualInvokeData get_Count_2; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct Dictionary_2_System_Type_Photon_Bolt_ObjectPool_1___StaticFields { +}; + +struct Dictionary_2_System_Type_Photon_Bolt_ObjectPool_1___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_System_Type_Photon_Bolt_ObjectPool_1___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_System_Type_Photon_Bolt_ObjectPool_1___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_Photon_Bolt_Internal_IFactory___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_Photon_Bolt_Internal_IFactory___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_Photon_Bolt_Internal_IFactory___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_System_Type_Photon_Bolt_Internal_IFactory___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_System_Type_Photon_Bolt_Internal_IFactory___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_Photon_Bolt_Internal_IFactory___Array__VTable { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_Photon_Bolt_Internal_IFactory___Array__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_Photon_Bolt_Internal_IFactory___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_System_Type_Photon_Bolt_Internal_IFactory___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_System_Type_Photon_Bolt_Internal_IFactory___Array__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_Photon_Bolt_Internal_IFactory___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TKey__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_Photon_Bolt_Internal_IFactory___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_Photon_Bolt_Internal_IFactory___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_Photon_Bolt_Internal_IFactory___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_Photon_Bolt_Internal_IFactory___VTable vtable; +}; + +struct IFactory__Array__VTable { +}; + +struct IFactory__Array__StaticFields { +}; + +struct IFactory__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IFactory__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IFactory__Array__VTable vtable; +}; + +struct IEnumerator_1_Photon_Bolt_Internal_IFactory___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_Photon_Bolt_Internal_IFactory___StaticFields { +}; + +struct IEnumerator_1_Photon_Bolt_Internal_IFactory___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_Photon_Bolt_Internal_IFactory___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_Photon_Bolt_Internal_IFactory___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_Photon_Bolt_Internal_IFactory___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TValue__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_Photon_Bolt_Internal_IFactory___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_Photon_Bolt_Internal_IFactory___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_Photon_Bolt_Internal_IFactory___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_Photon_Bolt_Internal_IFactory___VTable vtable; +}; + +struct ICollection_1_Photon_Bolt_Internal_IFactory___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_Photon_Bolt_Internal_IFactory___StaticFields { +}; + +struct ICollection_1_Photon_Bolt_Internal_IFactory___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_Photon_Bolt_Internal_IFactory___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_Photon_Bolt_Internal_IFactory___VTable vtable; +}; + +struct IFactory___VTable { +}; + +struct IFactory___StaticFields { +}; + +struct IFactory___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IFactory___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IFactory___VTable vtable; +}; + +struct KeyValuePair_2_System_Type_Photon_Bolt_Internal_IFactory___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct KeyValuePair_2_System_Type_Photon_Bolt_Internal_IFactory___StaticFields { +}; + +struct KeyValuePair_2_System_Type_Photon_Bolt_Internal_IFactory___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_Type_Photon_Bolt_Internal_IFactory___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_Type_Photon_Bolt_Internal_IFactory___VTable vtable; +}; + +struct KeyValuePair_2_System_Type_Photon_Bolt_Internal_IFactory___Array__VTable { +}; + +struct KeyValuePair_2_System_Type_Photon_Bolt_Internal_IFactory___Array__StaticFields { +}; + +struct KeyValuePair_2_System_Type_Photon_Bolt_Internal_IFactory___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_Type_Photon_Bolt_Internal_IFactory___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_Type_Photon_Bolt_Internal_IFactory___Array__VTable vtable; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Type_Photon_Bolt_Internal_IFactory___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Type_Photon_Bolt_Internal_IFactory___StaticFields { +}; + +struct IEnumerator_1_KeyValuePair_2_System_Type_Photon_Bolt_Internal_IFactory___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_KeyValuePair_2_System_Type_Photon_Bolt_Internal_IFactory___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_KeyValuePair_2_System_Type_Photon_Bolt_Internal_IFactory___VTable vtable; +}; + +struct IEnumerable_1_Photon_Bolt_Internal_IFactory___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_Photon_Bolt_Internal_IFactory___StaticFields { +}; + +struct IEnumerable_1_Photon_Bolt_Internal_IFactory___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_Photon_Bolt_Internal_IFactory___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_Photon_Bolt_Internal_IFactory___VTable vtable; +}; + +struct Dictionary_2_System_Type_Photon_Bolt_Internal_IFactory___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Values; + VirtualInvokeData ContainsKey; + VirtualInvokeData Add; + VirtualInvokeData Remove; + VirtualInvokeData TryGetValue; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add; + VirtualInvokeData Clear; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_get_Item; + VirtualInvokeData System_Collections_IDictionary_set_Item; + VirtualInvokeData System_Collections_IDictionary_get_Keys; + VirtualInvokeData System_Collections_IDictionary_get_Values; + VirtualInvokeData System_Collections_IDictionary_Contains; + VirtualInvokeData System_Collections_IDictionary_Add; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IDictionary_get_IsReadOnly; + VirtualInvokeData System_Collections_IDictionary_get_IsFixedSize; + VirtualInvokeData System_Collections_IDictionary_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_Remove; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData TryGetValue_1; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Values; + VirtualInvokeData get_Count_2; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct Dictionary_2_System_Type_Photon_Bolt_Internal_IFactory___StaticFields { +}; + +struct Dictionary_2_System_Type_Photon_Bolt_Internal_IFactory___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_System_Type_Photon_Bolt_Internal_IFactory___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_System_Type_Photon_Bolt_Internal_IFactory___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory___Array__VTable { +}; + +struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory___Array__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory___Array__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TKey__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_KeyCollection_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_KeyCollection_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TValue__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory___VTable vtable; +}; + +struct KeyValuePair_2_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct KeyValuePair_2_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory___StaticFields { +}; + +struct KeyValuePair_2_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory___VTable vtable; +}; + +struct KeyValuePair_2_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory___Array__VTable { +}; + +struct KeyValuePair_2_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory___Array__StaticFields { +}; + +struct KeyValuePair_2_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory___Array__VTable vtable; +}; + +struct IEnumerator_1_KeyValuePair_2_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_KeyValuePair_2_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory___StaticFields { +}; + +struct IEnumerator_1_KeyValuePair_2_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_KeyValuePair_2_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_KeyValuePair_2_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory___VTable vtable; +}; + +struct Dictionary_2_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Values; + VirtualInvokeData ContainsKey; + VirtualInvokeData Add; + VirtualInvokeData Remove; + VirtualInvokeData TryGetValue; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add; + VirtualInvokeData Clear; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_get_Item; + VirtualInvokeData System_Collections_IDictionary_set_Item; + VirtualInvokeData System_Collections_IDictionary_get_Keys; + VirtualInvokeData System_Collections_IDictionary_get_Values; + VirtualInvokeData System_Collections_IDictionary_Contains; + VirtualInvokeData System_Collections_IDictionary_Add; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IDictionary_get_IsReadOnly; + VirtualInvokeData System_Collections_IDictionary_get_IsFixedSize; + VirtualInvokeData System_Collections_IDictionary_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_Remove; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData TryGetValue_1; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Values; + VirtualInvokeData get_Count_2; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct Dictionary_2_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory___StaticFields { +}; + +struct Dictionary_2_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory___Array__VTable { +}; + +struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory___Array__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory___Array__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TKey__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_KeyCollection_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_KeyCollection_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TValue__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory___VTable vtable; +}; + +struct KeyValuePair_2_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct KeyValuePair_2_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory___StaticFields { +}; + +struct KeyValuePair_2_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory___VTable vtable; +}; + +struct KeyValuePair_2_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory___Array__VTable { +}; + +struct KeyValuePair_2_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory___Array__StaticFields { +}; + +struct KeyValuePair_2_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory___Array__VTable vtable; +}; + +struct IEnumerator_1_KeyValuePair_2_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_KeyValuePair_2_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory___StaticFields { +}; + +struct IEnumerator_1_KeyValuePair_2_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_KeyValuePair_2_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_KeyValuePair_2_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory___VTable vtable; +}; + +struct Dictionary_2_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Values; + VirtualInvokeData ContainsKey; + VirtualInvokeData Add; + VirtualInvokeData Remove; + VirtualInvokeData TryGetValue; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add; + VirtualInvokeData Clear; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_get_Item; + VirtualInvokeData System_Collections_IDictionary_set_Item; + VirtualInvokeData System_Collections_IDictionary_get_Keys; + VirtualInvokeData System_Collections_IDictionary_get_Values; + VirtualInvokeData System_Collections_IDictionary_Contains; + VirtualInvokeData System_Collections_IDictionary_Add; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IDictionary_get_IsReadOnly; + VirtualInvokeData System_Collections_IDictionary_get_IsFixedSize; + VirtualInvokeData System_Collections_IDictionary_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_Remove; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData TryGetValue_1; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Values; + VirtualInvokeData get_Count_2; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct Dictionary_2_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory___StaticFields { +}; + +struct Dictionary_2_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory___VTable vtable; +}; + +struct Factory_1__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Factory_1__StaticFields { + struct Dictionary_2_System_Byte_System_Type_ *_id2token; + struct Dictionary_2_System_Type_System_Byte_ *_token2id; + struct Dictionary_2_System_Type_Photon_Bolt_ObjectPool_1_ *_protocolTokenPool; + struct Dictionary_2_System_Type_Photon_Bolt_Internal_IFactory_ *_factoriesByType; + struct Dictionary_2_Photon_Bolt_TypeId_Photon_Bolt_Internal_IFactory_ *_factoriesById; + struct Dictionary_2_Photon_Bolt_UniqueId_Photon_Bolt_Internal_IFactory_ *_factoriesByKey; +}; + +struct Factory_1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Factory_1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Factory_1__VTable vtable; +}; + +struct IEnumerable_1_System_Reflection_AssemblyConfigurationAttribute_ { + struct IEnumerable_1_System_Reflection_AssemblyConfigurationAttribute___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_System_Reflection_AssemblyConfigurationAttribute___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_System_Reflection_AssemblyConfigurationAttribute___StaticFields { +}; + +struct IEnumerable_1_System_Reflection_AssemblyConfigurationAttribute___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_System_Reflection_AssemblyConfigurationAttribute___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_System_Reflection_AssemblyConfigurationAttribute___VTable vtable; +}; + +struct IEnumerable_1_System_Reflection_AssemblyInformationalVersionAttribute_ { + struct IEnumerable_1_System_Reflection_AssemblyInformationalVersionAttribute___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_System_Reflection_AssemblyInformationalVersionAttribute___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_System_Reflection_AssemblyInformationalVersionAttribute___StaticFields { +}; + +struct IEnumerable_1_System_Reflection_AssemblyInformationalVersionAttribute___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_System_Reflection_AssemblyInformationalVersionAttribute___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_System_Reflection_AssemblyInformationalVersionAttribute___VTable vtable; +}; + +struct UnityInputHelper_BsGTYoHaOPgYWtEHeGSpZoDeQUUw__Array { + struct UnityInputHelper_BsGTYoHaOPgYWtEHeGSpZoDeQUUw__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct UnityInputHelper_BsGTYoHaOPgYWtEHeGSpZoDeQUUw *vector[32]; +}; + +struct UnityInputHelper_BsGTYoHaOPgYWtEHeGSpZoDeQUUw__Array__VTable { +}; + +struct UnityInputHelper_BsGTYoHaOPgYWtEHeGSpZoDeQUUw__Array__StaticFields { +}; + +struct UnityInputHelper_BsGTYoHaOPgYWtEHeGSpZoDeQUUw__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UnityInputHelper_BsGTYoHaOPgYWtEHeGSpZoDeQUUw__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UnityInputHelper_BsGTYoHaOPgYWtEHeGSpZoDeQUUw__Array__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity_ { + int32_t hashCode; + int32_t next; + struct UniqueId key; + struct BoltEntity *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___Boxed { + struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity_ fields; +}; + +struct __declspec(align(8)) Dictionary_2_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_Photon_Bolt_UniqueId_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity_ { + struct Dictionary_2_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___Class *klass; + MonitorData *monitor; + struct Dictionary_2_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___Fields fields; +}; + +struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___Array { + struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity_ vector[32]; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_KeyCollection_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___Fields { + struct Dictionary_2_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity_ { + struct Dictionary_2_TKey_TValue_KeyCollection_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_KeyCollection_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___Fields fields; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_ValueCollection_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___Fields { + struct Dictionary_2_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity_ { + struct Dictionary_2_TKey_TValue_ValueCollection_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___Fields fields; +}; + +struct KeyValuePair_2_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity_ { + struct UniqueId key; + struct BoltEntity *value; +}; + +struct KeyValuePair_2_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___Boxed { + struct KeyValuePair_2_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity_ fields; +}; + +struct KeyValuePair_2_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___Array { + struct KeyValuePair_2_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct KeyValuePair_2_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity_ vector[32]; +}; + +struct IEnumerator_1_KeyValuePair_2_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity_ { + struct IEnumerator_1_KeyValuePair_2_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___Array__VTable { +}; + +struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___Array__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___Array__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TKey__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_KeyCollection_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_KeyCollection_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TValue__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___VTable vtable; +}; + +struct KeyValuePair_2_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct KeyValuePair_2_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___StaticFields { +}; + +struct KeyValuePair_2_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___VTable vtable; +}; + +struct KeyValuePair_2_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___Array__VTable { +}; + +struct KeyValuePair_2_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___Array__StaticFields { +}; + +struct KeyValuePair_2_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___Array__VTable vtable; +}; + +struct IEnumerator_1_KeyValuePair_2_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_KeyValuePair_2_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___StaticFields { +}; + +struct IEnumerator_1_KeyValuePair_2_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_KeyValuePair_2_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_KeyValuePair_2_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___VTable vtable; +}; + +struct Dictionary_2_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Values; + VirtualInvokeData ContainsKey; + VirtualInvokeData Add; + VirtualInvokeData Remove; + VirtualInvokeData TryGetValue; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add; + VirtualInvokeData Clear; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_get_Item; + VirtualInvokeData System_Collections_IDictionary_set_Item; + VirtualInvokeData System_Collections_IDictionary_get_Keys; + VirtualInvokeData System_Collections_IDictionary_get_Values; + VirtualInvokeData System_Collections_IDictionary_Contains; + VirtualInvokeData System_Collections_IDictionary_Add; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IDictionary_get_IsReadOnly; + VirtualInvokeData System_Collections_IDictionary_get_IsFixedSize; + VirtualInvokeData System_Collections_IDictionary_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_Remove; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData TryGetValue_1; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Values; + VirtualInvokeData get_Count_2; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct Dictionary_2_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___StaticFields { +}; + +struct Dictionary_2_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___VTable vtable; +}; + +struct BoltLog { + struct BoltLog__Class *klass; + MonitorData *monitor; +}; + +struct BoltLog__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltLog__StaticFields { + struct Object *_lock; + struct List_1_Photon_Bolt_Utils_BoltLog_IWriter_ *_writers; +}; + +struct BoltLog__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltLog__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltLog__VTable vtable; +}; + +struct BoltNetworkInternal { + struct BoltNetworkInternal__Class *klass; + MonitorData *monitor; +}; + +struct Func_2_Int32_String___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_2_Int32_String_ { + struct Func_2_Int32_String___Class *klass; + MonitorData *monitor; + struct Func_2_Int32_String___Fields fields; +}; + +struct Func_2_String_Int32___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_2_String_Int32_ { + struct Func_2_String_Int32___Class *klass; + MonitorData *monitor; + struct Func_2_String_Int32___Fields fields; +}; + +struct Func_1_System_Collections_Generic_List_1__15__Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_1_System_Collections_Generic_List_1__15 { + struct Func_1_System_Collections_Generic_List_1__15__Class *klass; + MonitorData *monitor; + struct Func_1_System_Collections_Generic_List_1__15__Fields fields; +}; + +struct Func_2_Int32_String___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_2_Int32_String___StaticFields { +}; + +struct Func_2_Int32_String___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_2_Int32_String___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_2_Int32_String___VTable vtable; +}; + +struct Func_2_String_Int32___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_2_String_Int32___StaticFields { +}; + +struct Func_2_String_Int32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_2_String_Int32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_2_String_Int32___VTable vtable; +}; + +struct Func_1_System_Collections_Generic_List_1__15__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_1_System_Collections_Generic_List_1__15__StaticFields { +}; + +struct Func_1_System_Collections_Generic_List_1__15__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_1_System_Collections_Generic_List_1__15__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_1_System_Collections_Generic_List_1__15__VTable vtable; +}; + +struct BoltNetworkInternal__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltNetworkInternal__StaticFields { + bool UsingUnityPro; + struct Action *EnvironmentSetup; + struct Action *EnvironmentReset; + struct IDebugDrawer *DebugDrawer; + struct Func_2_Int32_String_ *GetSceneName; + struct Func_2_String_Int32_ *GetSceneIndex; + struct Func_1_Int32_ *GetActiveSceneIndex; + struct Func_1_System_Collections_Generic_List_1__15 *GetGlobalBehaviourTypes; +}; + +struct BoltNetworkInternal__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltNetworkInternal__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltNetworkInternal__VTable vtable; +}; + +struct BoltLauncher { + struct BoltLauncher__Class *klass; + MonitorData *monitor; +}; + +struct BoltLauncher__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltLauncher__StaticFields { + struct UdpPlatform *_TargetPlatform_k__BackingField; +}; + +struct BoltLauncher__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltLauncher__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltLauncher__VTable vtable; +}; + +struct IGoatState { + struct IGoatState__Class *klass; + MonitorData *monitor; +}; + +struct IGoatState__VTable { + VirtualInvokeData get_Moving; + VirtualInvokeData get_Transform; + VirtualInvokeData get_Random; + VirtualInvokeData get_AbilityIndex; + VirtualInvokeData get_Yaw; + VirtualInvokeData get_Speed; + VirtualInvokeData get_HayBeingEaten; + VirtualInvokeData set_HayBeingEaten; +}; + +struct IGoatState__StaticFields { +}; + +struct IGoatState__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IGoatState__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IGoatState__VTable vtable; +}; + +struct ITownPentagramState { + struct ITownPentagramState__Class *klass; + MonitorData *monitor; +}; + +struct ITownPentagramState__VTable { + VirtualInvokeData get_State; + VirtualInvokeData set_State; + VirtualInvokeData get_Type; + VirtualInvokeData set_Type; + VirtualInvokeData get_Candles; +}; + +struct ITownPentagramState__StaticFields { +}; + +struct ITownPentagramState__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ITownPentagramState__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ITownPentagramState__VTable vtable; +}; + +struct ISteamInventoryState { + struct ISteamInventoryState__Class *klass; + MonitorData *monitor; +}; + +struct ISteamInventoryState__VTable { + VirtualInvokeData get_Players; +}; + +struct ISteamInventoryState__StaticFields { +}; + +struct ISteamInventoryState__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ISteamInventoryState__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ISteamInventoryState__VTable vtable; +}; + +struct IIntroState { + struct IIntroState__Class *klass; + MonitorData *monitor; +}; + +struct IIntroState__VTable { + VirtualInvokeData get_Step; + VirtualInvokeData set_Step; +}; + +struct IIntroState__StaticFields { +}; + +struct IIntroState__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IIntroState__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IIntroState__VTable vtable; +}; + +struct ICrowState { + struct ICrowState__Class *klass; + MonitorData *monitor; +}; + +struct ICrowState__VTable { + VirtualInvokeData get_Transform; + VirtualInvokeData get_Speed; + VirtualInvokeData get_AbilityIndex; + VirtualInvokeData get_AbilityIntData; + VirtualInvokeData get_Pursuing; + VirtualInvokeData set_Pursuing; + VirtualInvokeData get_CarryObjectName; + VirtualInvokeData set_CarryObjectName; + VirtualInvokeData get_LookAtEntity; + VirtualInvokeData set_LookAtEntity; + VirtualInvokeData get_Moving; + VirtualInvokeData get_Height; +}; + +struct ICrowState__StaticFields { +}; + +struct ICrowState__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICrowState__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICrowState__VTable vtable; +}; + +struct IManorMirrorState { + struct IManorMirrorState__Class *klass; + MonitorData *monitor; +}; + +struct IManorMirrorState__VTable { + VirtualInvokeData get_Broken; + VirtualInvokeData set_Broken; + VirtualInvokeData get_Target; + VirtualInvokeData set_Target; + VirtualInvokeData get_Outside; + VirtualInvokeData set_Outside; +}; + +struct IManorMirrorState__StaticFields { +}; + +struct IManorMirrorState__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IManorMirrorState__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IManorMirrorState__VTable vtable; +}; + +struct IManorSpiritState { + struct IManorSpiritState__Class *klass; + MonitorData *monitor; +}; + +struct IManorSpiritState__VTable { + VirtualInvokeData get_State; + VirtualInvokeData set_State; + VirtualInvokeData get_Spirit; + VirtualInvokeData set_Spirit; + VirtualInvokeData get_Transform; + VirtualInvokeData get_Speed; + VirtualInvokeData get_AbilityIntData; + VirtualInvokeData get_CandleLuredBy; + VirtualInvokeData set_CandleLuredBy; +}; + +struct IManorSpiritState__StaticFields { +}; + +struct IManorSpiritState__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IManorSpiritState__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IManorSpiritState__VTable vtable; +}; + +struct IInnWebState { + struct IInnWebState__Class *klass; + MonitorData *monitor; +}; + +struct IInnWebState__VTable { + VirtualInvokeData get_On; + VirtualInvokeData get_NumPlayersFocusing; + VirtualInvokeData set_NumPlayersFocusing; +}; + +struct IInnWebState__StaticFields { +}; + +struct IInnWebState__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IInnWebState__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IInnWebState__VTable vtable; +}; + +struct List_1_T_Enumerator_Rewired_ControllerMapLayoutManager_Rule_ { + struct List_1_Rewired_ControllerMapLayoutManager_Rule_ *_list; + int32_t _index; + int32_t _version; + struct ControllerMapLayoutManager_Rule *_current; +}; + +struct List_1_T_Enumerator_Rewired_ControllerMapLayoutManager_Rule___Boxed { + struct List_1_T_Enumerator_Rewired_ControllerMapLayoutManager_Rule___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_Rewired_ControllerMapLayoutManager_Rule_ fields; +}; + +struct List_1_T_Enumerator_Rewired_ControllerMapLayoutManager_Rule___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_Rewired_ControllerMapLayoutManager_Rule___StaticFields { +}; + +struct List_1_T_Enumerator_Rewired_ControllerMapLayoutManager_Rule___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_Rewired_ControllerMapLayoutManager_Rule___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_Rewired_ControllerMapLayoutManager_Rule___VTable vtable; +}; + +struct IMapState { + struct IMapState__Class *klass; + MonitorData *monitor; +}; + +struct IMapState__VTable { + VirtualInvokeData get_MapProgress; + VirtualInvokeData set_MapProgress; + VirtualInvokeData get_IsAzazelActive; + VirtualInvokeData set_IsAzazelActive; + VirtualInvokeData get_LastPlayerToInteract; + VirtualInvokeData set_LastPlayerToInteract; +}; + +struct IMapState__StaticFields { +}; + +struct IMapState__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IMapState__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IMapState__VTable vtable; +}; + +struct IHidingSpotState { + struct IHidingSpotState__Class *klass; + MonitorData *monitor; +}; + +struct IHidingSpotState__VTable { + VirtualInvokeData get_IsOccupied; + VirtualInvokeData get_Player; + VirtualInvokeData set_Player; + VirtualInvokeData get_IsDestroyed; +}; + +struct IHidingSpotState__StaticFields { +}; + +struct IHidingSpotState__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IHidingSpotState__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IHidingSpotState__VTable vtable; +}; + +struct IPetState { + struct IPetState__Class *klass; + MonitorData *monitor; +}; + +struct IPetState__VTable { + VirtualInvokeData get_Transform; + VirtualInvokeData get_Speed; + VirtualInvokeData get_RandomIdle; + VirtualInvokeData get_Player; + VirtualInvokeData set_Player; +}; + +struct IPetState__StaticFields { +}; + +struct IPetState__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IPetState__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IPetState__VTable vtable; +}; + +struct ICollection_1_Rewired_ControllerMapLayoutManager_Rule_ { + struct ICollection_1_Rewired_ControllerMapLayoutManager_Rule___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_Rewired_ControllerMapLayoutManager_Rule___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_Rewired_ControllerMapLayoutManager_Rule___StaticFields { +}; + +struct ICollection_1_Rewired_ControllerMapLayoutManager_Rule___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_Rewired_ControllerMapLayoutManager_Rule___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_Rewired_ControllerMapLayoutManager_Rule___VTable vtable; +}; + +struct IEnemyState { + struct IEnemyState__Class *klass; + MonitorData *monitor; +}; + +struct IEnemyState__VTable { + VirtualInvokeData get_Transform; + VirtualInvokeData get_HorizontalMovement; + VirtualInvokeData get_ForwardMovement; + VirtualInvokeData get_Pitch; + VirtualInvokeData get_Yaw; + VirtualInvokeData get_Speed; + VirtualInvokeData get_Height; + VirtualInvokeData get_Moving; + VirtualInvokeData get_MovementSetID; + VirtualInvokeData get_AbilityIndex; + VirtualInvokeData get_AbilityIntData; + VirtualInvokeData get_AbilityFloatData; + VirtualInvokeData get_ReliefIntData; + VirtualInvokeData get_LookAtEntity; + VirtualInvokeData set_LookAtEntity; + VirtualInvokeData get_LookAtPosition; + VirtualInvokeData set_LookAtPosition; + VirtualInvokeData get_DoorEntity; + VirtualInvokeData set_DoorEntity; + VirtualInvokeData get_MultipleFocus; + VirtualInvokeData set_MultipleFocus; + VirtualInvokeData get_DemonHoldingPlayer; + VirtualInvokeData set_DemonHoldingPlayer; + VirtualInvokeData get_AlignToGround; + VirtualInvokeData get_IsHidden; + VirtualInvokeData set_IsHidden; + VirtualInvokeData get_GenericBool1; +}; + +struct IEnemyState__StaticFields { +}; + +struct IEnemyState__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnemyState__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnemyState__VTable vtable; +}; + +struct List_1_Rewired_ControllerMapLayoutManager_RuleSet__1__VTable { +}; + +struct List_1_Rewired_ControllerMapLayoutManager_RuleSet__1__StaticFields { +}; + +struct List_1_Rewired_ControllerMapLayoutManager_RuleSet__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Rewired_ControllerMapLayoutManager_RuleSet__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Rewired_ControllerMapLayoutManager_RuleSet__1__VTable vtable; +}; + +struct ISurvivalLobbyState { + struct ISurvivalLobbyState__Class *klass; + MonitorData *monitor; +}; + +struct ISurvivalLobbyState__VTable { + VirtualInvokeData get_Players; + VirtualInvokeData get_Map; + VirtualInvokeData set_Map; + VirtualInvokeData get_Difficulty; + VirtualInvokeData set_Difficulty; + VirtualInvokeData get_PlayerCollisions; + VirtualInvokeData set_PlayerCollisions; + VirtualInvokeData get_ProximityVoice; + VirtualInvokeData set_ProximityVoice; + VirtualInvokeData get_Batteries; + VirtualInvokeData set_Batteries; + VirtualInvokeData get_Medkits; + VirtualInvokeData set_Medkits; + VirtualInvokeData get_Perks; + VirtualInvokeData set_Perks; +}; + +struct ISurvivalLobbyState__StaticFields { +}; + +struct ISurvivalLobbyState__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ISurvivalLobbyState__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ISurvivalLobbyState__VTable vtable; +}; + +struct __declspec(align(8)) TempListPool_TList_1_Rewired_Controller___Fields { + struct List_1_Rewired_Controller_ *VMeHiJhSKJHrptlKzeCAAZtDcXSGA; + bool eIuesTMfdyQoDfpIQeBgmzDBKKjJ; +}; + +struct TempListPool_TList_1_Rewired_Controller_ { + struct TempListPool_TList_1_Rewired_Controller___Class *klass; + MonitorData *monitor; + struct TempListPool_TList_1_Rewired_Controller___Fields fields; +}; + +struct TempListPool_TList_1_Rewired_Controller___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Dispose; + VirtualInvokeData Rewired_Utils_TempListPool_ITListSetter_T__SetList; +}; + +struct TempListPool_TList_1_Rewired_Controller___StaticFields { +}; + +struct TempListPool_TList_1_Rewired_Controller___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TempListPool_TList_1_Rewired_Controller___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TempListPool_TList_1_Rewired_Controller___VTable vtable; +}; + +struct IControllerMapStore { + struct IControllerMapStore__Class *klass; + MonitorData *monitor; +}; + +struct IControllerMapStore__VTable { + VirtualInvokeData SaveControllerMap; + VirtualInvokeData LoadControllerMap; +}; + +struct IControllerMapStore__StaticFields { +}; + +struct IControllerMapStore__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IControllerMapStore__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IControllerMapStore__VTable vtable; +}; + +struct IInnFountainState { + struct IInnFountainState__Class *klass; + MonitorData *monitor; +}; + +struct IInnFountainState__VTable { + VirtualInvokeData get_IsClean; + VirtualInvokeData set_IsClean; +}; + +struct IInnFountainState__StaticFields { +}; + +struct IInnFountainState__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IInnFountainState__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IInnFountainState__VTable vtable; +}; + +struct ICollection_1_Rewired_ControllerMapEnabler_Rule_ { + struct ICollection_1_Rewired_ControllerMapEnabler_Rule___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_Rewired_ControllerMapEnabler_Rule___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_Rewired_ControllerMapEnabler_Rule___StaticFields { +}; + +struct ICollection_1_Rewired_ControllerMapEnabler_Rule___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_Rewired_ControllerMapEnabler_Rule___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_Rewired_ControllerMapEnabler_Rule___VTable vtable; +}; + +struct List_1_T_Enumerator_Rewired_ControllerMapEnabler_Rule_ { + struct List_1_Rewired_ControllerMapEnabler_Rule_ *_list; + int32_t _index; + int32_t _version; + struct ControllerMapEnabler_Rule *_current; +}; + +struct List_1_T_Enumerator_Rewired_ControllerMapEnabler_Rule___Boxed { + struct List_1_T_Enumerator_Rewired_ControllerMapEnabler_Rule___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_Rewired_ControllerMapEnabler_Rule_ fields; +}; + +struct List_1_T_Enumerator_Rewired_ControllerMapEnabler_Rule___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_Rewired_ControllerMapEnabler_Rule___StaticFields { +}; + +struct List_1_T_Enumerator_Rewired_ControllerMapEnabler_Rule___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_Rewired_ControllerMapEnabler_Rule___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_Rewired_ControllerMapEnabler_Rule___VTable vtable; +}; + +struct List_1_Rewired_ControllerMapEnabler_RuleSet__1__VTable { +}; + +struct List_1_Rewired_ControllerMapEnabler_RuleSet__1__StaticFields { +}; + +struct List_1_Rewired_ControllerMapEnabler_RuleSet__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Rewired_ControllerMapEnabler_RuleSet__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Rewired_ControllerMapEnabler_RuleSet__1__VTable vtable; +}; + +struct __declspec(align(8)) TempListPool_TList_1_Rewired_ControllerMap___Fields { + struct List_1_Rewired_ControllerMap_ *VMeHiJhSKJHrptlKzeCAAZtDcXSGA; + bool eIuesTMfdyQoDfpIQeBgmzDBKKjJ; +}; + +struct TempListPool_TList_1_Rewired_ControllerMap_ { + struct TempListPool_TList_1_Rewired_ControllerMap___Class *klass; + MonitorData *monitor; + struct TempListPool_TList_1_Rewired_ControllerMap___Fields fields; +}; + +struct TempListPool_TList_1_Rewired_ControllerMap___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Dispose; + VirtualInvokeData Rewired_Utils_TempListPool_ITListSetter_T__SetList; +}; + +struct TempListPool_TList_1_Rewired_ControllerMap___StaticFields { +}; + +struct TempListPool_TList_1_Rewired_ControllerMap___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TempListPool_TList_1_Rewired_ControllerMap___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TempListPool_TList_1_Rewired_ControllerMap___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_Rewired_Data_Mapping_AxisCalibrationInfo_ { + struct Dictionary_2_System_Int32_Rewired_Data_Mapping_AxisCalibrationInfo_ *_dictionary; + int32_t _version; + int32_t _index; + struct KeyValuePair_2_System_Int32_Rewired_Data_Mapping_AxisCalibrationInfo_ _current; + int32_t _getEnumeratorRetType; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_Rewired_Data_Mapping_AxisCalibrationInfo___Boxed { + struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_Rewired_Data_Mapping_AxisCalibrationInfo___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_Rewired_Data_Mapping_AxisCalibrationInfo_ fields; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_Rewired_Data_Mapping_AxisCalibrationInfo___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Key; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Value; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Entry; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_Rewired_Data_Mapping_AxisCalibrationInfo___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_Rewired_Data_Mapping_AxisCalibrationInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_Rewired_Data_Mapping_AxisCalibrationInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_Rewired_Data_Mapping_AxisCalibrationInfo___VTable vtable; +}; + +struct AxisSensitivityType___VTable { +}; + +struct AxisSensitivityType___StaticFields { +}; + +struct AxisSensitivityType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct AxisSensitivityType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct AxisSensitivityType___VTable vtable; +}; + +struct __declspec(align(8)) ReadOnlyCollection_1_Rewired_AxisCalibration___Fields { + struct IList_1_Rewired_AxisCalibration_ *list; + struct Object *_syncRoot; +}; + +struct ReadOnlyCollection_1_Rewired_AxisCalibration_ { + struct ReadOnlyCollection_1_Rewired_AxisCalibration___Class *klass; + MonitorData *monitor; + struct ReadOnlyCollection_1_Rewired_AxisCalibration___Fields fields; +}; + +struct IEnumerator_1_Rewired_AxisCalibration_ { + struct IEnumerator_1_Rewired_AxisCalibration___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerator_1_Rewired_AxisCalibration___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_Rewired_AxisCalibration___StaticFields { +}; + +struct IEnumerator_1_Rewired_AxisCalibration___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_Rewired_AxisCalibration___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_Rewired_AxisCalibration___VTable vtable; +}; + +struct ReadOnlyCollection_1_Rewired_AxisCalibration___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_Generic_IList_T__get_Item; + VirtualInvokeData System_Collections_Generic_IList_T__set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData System_Collections_Generic_IList_T__Insert; + VirtualInvokeData System_Collections_Generic_IList_T__RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_T__Add; + VirtualInvokeData System_Collections_Generic_ICollection_T__Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_T__Remove; + VirtualInvokeData GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData System_Collections_IList_Clear; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData System_Collections_IList_RemoveAt; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item; + VirtualInvokeData get_Count_2; +}; + +struct ReadOnlyCollection_1_Rewired_AxisCalibration___StaticFields { +}; + +struct ReadOnlyCollection_1_Rewired_AxisCalibration___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ReadOnlyCollection_1_Rewired_AxisCalibration___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ReadOnlyCollection_1_Rewired_AxisCalibration___VTable vtable; +}; + +struct ControllerElementType___VTable { +}; + +struct ControllerElementType___StaticFields { +}; + +struct ControllerElementType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ControllerElementType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ControllerElementType___VTable vtable; +}; + +struct ModifierKey___VTable { +}; + +struct ModifierKey___StaticFields { +}; + +struct ModifierKey___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ModifierKey___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ModifierKey___VTable vtable; +}; + +struct KeyboardKeyCode___VTable { +}; + +struct KeyboardKeyCode___StaticFields { +}; + +struct KeyboardKeyCode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyboardKeyCode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyboardKeyCode___VTable vtable; +}; + +struct __declspec(align(8)) ReadOnlyCollection_1_Rewired_Player___Fields { + struct IList_1_Rewired_Player_ *list; + struct Object *_syncRoot; +}; + +struct ReadOnlyCollection_1_Rewired_Player_ { + struct ReadOnlyCollection_1_Rewired_Player___Class *klass; + MonitorData *monitor; + struct ReadOnlyCollection_1_Rewired_Player___Fields fields; +}; + +struct ReadOnlyCollection_1_Rewired_Player___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_Generic_IList_T__get_Item; + VirtualInvokeData System_Collections_Generic_IList_T__set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData System_Collections_Generic_IList_T__Insert; + VirtualInvokeData System_Collections_Generic_IList_T__RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_T__Add; + VirtualInvokeData System_Collections_Generic_ICollection_T__Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_T__Remove; + VirtualInvokeData GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData System_Collections_IList_Clear; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData System_Collections_IList_RemoveAt; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item; + VirtualInvokeData get_Count_2; +}; + +struct ReadOnlyCollection_1_Rewired_Player___StaticFields { +}; + +struct ReadOnlyCollection_1_Rewired_Player___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ReadOnlyCollection_1_Rewired_Player___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ReadOnlyCollection_1_Rewired_Player___VTable vtable; +}; + +struct IAndroidFallbackDS4Helper { + struct IAndroidFallbackDS4Helper__Class *klass; + MonitorData *monitor; +}; + +struct IAndroidFallbackDS4Helper__VTable { + VirtualInvokeData IsDS4KeyMapped; + VirtualInvokeData IsDS4; +}; + +struct IAndroidFallbackDS4Helper__StaticFields { +}; + +struct IAndroidFallbackDS4Helper__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IAndroidFallbackDS4Helper__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IAndroidFallbackDS4Helper__VTable vtable; +}; + +struct IEnumerable_1_KeyValuePair_2_System_String_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue_ { + struct IEnumerable_1_KeyValuePair_2_System_String_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_KeyValuePair_2_System_String_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_KeyValuePair_2_System_String_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___StaticFields { +}; + +struct IEnumerable_1_KeyValuePair_2_System_String_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_KeyValuePair_2_System_String_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_KeyValuePair_2_System_String_UnityEngine_InputSystem_Utilities_JsonParser_JsonValue___VTable vtable; +}; + +struct TouchPhase___VTable { +}; + +struct TouchPhase___StaticFields { +}; + +struct TouchPhase___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TouchPhase___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TouchPhase___VTable vtable; +}; + +struct InputControl___VTable { +}; + +struct InputControl___StaticFields { +}; + +struct InputControl___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputControl___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputControl___VTable vtable; +}; + +struct IComparer_1_Rewired_ActionElementMap_ { + struct IComparer_1_Rewired_ActionElementMap___Class *klass; + MonitorData *monitor; +}; + +struct IComparer_1_Rewired_ActionElementMap___VTable { + VirtualInvokeData Compare; +}; + +struct IComparer_1_Rewired_ActionElementMap___StaticFields { +}; + +struct IComparer_1_Rewired_ActionElementMap___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IComparer_1_Rewired_ActionElementMap___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IComparer_1_Rewired_ActionElementMap___VTable vtable; +}; + +struct IVoteEventListener { + struct IVoteEventListener__Class *klass; + MonitorData *monitor; +}; + +struct IVoteEventListener__VTable { + VirtualInvokeData OnEvent; +}; + +struct IVoteEventListener__StaticFields { +}; + +struct IVoteEventListener__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IVoteEventListener__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IVoteEventListener__VTable vtable; +}; + +struct IVoteRequestEventListener { + struct IVoteRequestEventListener__Class *klass; + MonitorData *monitor; +}; + +struct IVoteRequestEventListener__VTable { + VirtualInvokeData OnEvent; +}; + +struct IVoteRequestEventListener__StaticFields { +}; + +struct IVoteRequestEventListener__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IVoteRequestEventListener__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IVoteRequestEventListener__VTable vtable; +}; + +struct ISystemChatMessageEventListener { + struct ISystemChatMessageEventListener__Class *klass; + MonitorData *monitor; +}; + +struct ISystemChatMessageEventListener__VTable { + VirtualInvokeData OnEvent; +}; + +struct ISystemChatMessageEventListener__StaticFields { +}; + +struct ISystemChatMessageEventListener__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ISystemChatMessageEventListener__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ISystemChatMessageEventListener__VTable vtable; +}; + +struct IUseBatteryEventListener { + struct IUseBatteryEventListener__Class *klass; + MonitorData *monitor; +}; + +struct IUseBatteryEventListener__VTable { + VirtualInvokeData OnEvent; +}; + +struct IUseBatteryEventListener__StaticFields { +}; + +struct IUseBatteryEventListener__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IUseBatteryEventListener__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IUseBatteryEventListener__VTable vtable; +}; + +struct IEndingEventListener { + struct IEndingEventListener__Class *klass; + MonitorData *monitor; +}; + +struct IEndingEventListener__VTable { + VirtualInvokeData OnEvent; +}; + +struct IEndingEventListener__StaticFields { +}; + +struct IEndingEventListener__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEndingEventListener__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEndingEventListener__VTable vtable; +}; + +struct ICreatePortalEventListener { + struct ICreatePortalEventListener__Class *klass; + MonitorData *monitor; +}; + +struct ICreatePortalEventListener__VTable { + VirtualInvokeData OnEvent; +}; + +struct ICreatePortalEventListener__StaticFields { +}; + +struct ICreatePortalEventListener__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICreatePortalEventListener__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICreatePortalEventListener__VTable vtable; +}; + +struct ILobbyReadyEventListener { + struct ILobbyReadyEventListener__Class *klass; + MonitorData *monitor; +}; + +struct ILobbyReadyEventListener__VTable { + VirtualInvokeData OnEvent; +}; + +struct ILobbyReadyEventListener__StaticFields { +}; + +struct ILobbyReadyEventListener__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ILobbyReadyEventListener__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ILobbyReadyEventListener__VTable vtable; +}; + +struct IDropObjectEventListener { + struct IDropObjectEventListener__Class *klass; + MonitorData *monitor; +}; + +struct IDropObjectEventListener__VTable { + VirtualInvokeData OnEvent; +}; + +struct IDropObjectEventListener__StaticFields { +}; + +struct IDropObjectEventListener__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IDropObjectEventListener__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IDropObjectEventListener__VTable vtable; +}; + +struct IKnockoutGrabRagdollEventListener { + struct IKnockoutGrabRagdollEventListener__Class *klass; + MonitorData *monitor; +}; + +struct IKnockoutGrabRagdollEventListener__VTable { + VirtualInvokeData OnEvent; +}; + +struct IKnockoutGrabRagdollEventListener__StaticFields { +}; + +struct IKnockoutGrabRagdollEventListener__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IKnockoutGrabRagdollEventListener__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IKnockoutGrabRagdollEventListener__VTable vtable; +}; + +struct IPlayerPickedUpEventListener { + struct IPlayerPickedUpEventListener__Class *klass; + MonitorData *monitor; +}; + +struct IPlayerPickedUpEventListener__VTable { + VirtualInvokeData OnEvent; +}; + +struct IPlayerPickedUpEventListener__StaticFields { +}; + +struct IPlayerPickedUpEventListener__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IPlayerPickedUpEventListener__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IPlayerPickedUpEventListener__VTable vtable; +}; + +struct ISurvivalChangePlayerEventListener { + struct ISurvivalChangePlayerEventListener__Class *klass; + MonitorData *monitor; +}; + +struct ISurvivalChangePlayerEventListener__VTable { + VirtualInvokeData OnEvent; +}; + +struct ISurvivalChangePlayerEventListener__StaticFields { +}; + +struct ISurvivalChangePlayerEventListener__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ISurvivalChangePlayerEventListener__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ISurvivalChangePlayerEventListener__VTable vtable; +}; + +struct IReviveEventListener { + struct IReviveEventListener__Class *klass; + MonitorData *monitor; +}; + +struct IReviveEventListener__VTable { + VirtualInvokeData OnEvent; +}; + +struct IReviveEventListener__StaticFields { +}; + +struct IReviveEventListener__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IReviveEventListener__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IReviveEventListener__VTable vtable; +}; + +struct IKnockoutEventListener { + struct IKnockoutEventListener__Class *klass; + MonitorData *monitor; +}; + +struct IKnockoutEventListener__VTable { + VirtualInvokeData OnEvent; +}; + +struct IKnockoutEventListener__StaticFields { +}; + +struct IKnockoutEventListener__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IKnockoutEventListener__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IKnockoutEventListener__VTable vtable; +}; + +struct IDissonanceToServerListener { + struct IDissonanceToServerListener__Class *klass; + MonitorData *monitor; +}; + +struct IDissonanceToServerListener__VTable { + VirtualInvokeData OnEvent; +}; + +struct IDissonanceToServerListener__StaticFields { +}; + +struct IDissonanceToServerListener__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IDissonanceToServerListener__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IDissonanceToServerListener__VTable vtable; +}; + +struct IDissonanceToClientListener { + struct IDissonanceToClientListener__Class *klass; + MonitorData *monitor; +}; + +struct IDissonanceToClientListener__VTable { + VirtualInvokeData OnEvent; +}; + +struct IDissonanceToClientListener__StaticFields { +}; + +struct IDissonanceToClientListener__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IDissonanceToClientListener__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IDissonanceToClientListener__VTable vtable; +}; + +struct IHostStartedGameEventListener { + struct IHostStartedGameEventListener__Class *klass; + MonitorData *monitor; +}; + +struct IHostStartedGameEventListener__VTable { + VirtualInvokeData OnEvent; +}; + +struct IHostStartedGameEventListener__StaticFields { +}; + +struct IHostStartedGameEventListener__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IHostStartedGameEventListener__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IHostStartedGameEventListener__VTable vtable; +}; + +struct IKnockoutBoxEventListener { + struct IKnockoutBoxEventListener__Class *klass; + MonitorData *monitor; +}; + +struct IKnockoutBoxEventListener__VTable { + VirtualInvokeData OnEvent; +}; + +struct IKnockoutBoxEventListener__StaticFields { +}; + +struct IKnockoutBoxEventListener__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IKnockoutBoxEventListener__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IKnockoutBoxEventListener__VTable vtable; +}; + +struct IInteractObjectResponseEventListener { + struct IInteractObjectResponseEventListener__Class *klass; + MonitorData *monitor; +}; + +struct IInteractObjectResponseEventListener__VTable { + VirtualInvokeData OnEvent; +}; + +struct IInteractObjectResponseEventListener__StaticFields { +}; + +struct IInteractObjectResponseEventListener__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IInteractObjectResponseEventListener__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IInteractObjectResponseEventListener__VTable vtable; +}; + +struct IInteractPlopEventListener { + struct IInteractPlopEventListener__Class *klass; + MonitorData *monitor; +}; + +struct IInteractPlopEventListener__VTable { + VirtualInvokeData OnEvent; +}; + +struct IInteractPlopEventListener__StaticFields { +}; + +struct IInteractPlopEventListener__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IInteractPlopEventListener__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IInteractPlopEventListener__VTable vtable; +}; + +struct IInteractObjectRequestEventListener { + struct IInteractObjectRequestEventListener__Class *klass; + MonitorData *monitor; +}; + +struct IInteractObjectRequestEventListener__VTable { + VirtualInvokeData OnEvent; +}; + +struct IInteractObjectRequestEventListener__StaticFields { +}; + +struct IInteractObjectRequestEventListener__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IInteractObjectRequestEventListener__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IInteractObjectRequestEventListener__VTable vtable; +}; + +struct IInteractTriggerEventListener { + struct IInteractTriggerEventListener__Class *klass; + MonitorData *monitor; +}; + +struct IInteractTriggerEventListener__VTable { + VirtualInvokeData OnEvent; +}; + +struct IInteractTriggerEventListener__StaticFields { +}; + +struct IInteractTriggerEventListener__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IInteractTriggerEventListener__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IInteractTriggerEventListener__VTable vtable; +}; + +struct IInteractEventListener { + struct IInteractEventListener__Class *klass; + MonitorData *monitor; +}; + +struct IInteractEventListener__VTable { + VirtualInvokeData OnEvent; +}; + +struct IInteractEventListener__StaticFields { +}; + +struct IInteractEventListener__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IInteractEventListener__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IInteractEventListener__VTable vtable; +}; + +struct IEnemyBasicState { + struct IEnemyBasicState__Class *klass; + MonitorData *monitor; +}; + +struct IEnemyBasicState__VTable { + VirtualInvokeData get_Transform; + VirtualInvokeData get_Speed; + VirtualInvokeData get_AbilityIndex; + VirtualInvokeData get_AbilityIntData; + VirtualInvokeData get_Pursuing; + VirtualInvokeData set_Pursuing; + VirtualInvokeData get_CarryObjectName; + VirtualInvokeData set_CarryObjectName; + VirtualInvokeData get_LookAtEntity; + VirtualInvokeData set_LookAtEntity; + VirtualInvokeData get_AbilityFloatData; + VirtualInvokeData get_Yaw; +}; + +struct IEnemyBasicState__StaticFields { +}; + +struct IEnemyBasicState__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnemyBasicState__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnemyBasicState__VTable vtable; +}; + +struct IInnShrineState { + struct IInnShrineState__Class *klass; + MonitorData *monitor; +}; + +struct IInnShrineState__VTable { + VirtualInvokeData get_Type; + VirtualInvokeData set_Type; + VirtualInvokeData get_Egg; + VirtualInvokeData set_Egg; +}; + +struct IInnShrineState__StaticFields { +}; + +struct IInnShrineState__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IInnShrineState__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IInnShrineState__VTable vtable; +}; + +struct IDoorNumberState { + struct IDoorNumberState__Class *klass; + MonitorData *monitor; +}; + +struct IDoorNumberState__VTable { + VirtualInvokeData get_DoorNumber; + VirtualInvokeData set_DoorNumber; +}; + +struct IDoorNumberState__StaticFields { +}; + +struct IDoorNumberState__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IDoorNumberState__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IDoorNumberState__VTable vtable; +}; + +struct IInnMazeState { + struct IInnMazeState__Class *klass; + MonitorData *monitor; +}; + +struct IInnMazeState__VTable { + VirtualInvokeData get_Webs; +}; + +struct IInnMazeState__StaticFields { +}; + +struct IInnMazeState__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IInnMazeState__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IInnMazeState__VTable vtable; +}; + +struct IPlaceObjectState { + struct IPlaceObjectState__Class *klass; + MonitorData *monitor; +}; + +struct IPlaceObjectState__VTable { +}; + +struct IPlaceObjectState__StaticFields { +}; + +struct IPlaceObjectState__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IPlaceObjectState__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IPlaceObjectState__VTable vtable; +}; + +struct IBurnTrapState { + struct IBurnTrapState__Class *klass; + MonitorData *monitor; +}; + +struct IBurnTrapState__VTable { + VirtualInvokeData get_Goat; + VirtualInvokeData set_Goat; + VirtualInvokeData get_Active; + VirtualInvokeData set_Active; + VirtualInvokeData get_NumObjectsBurnt; + VirtualInvokeData set_NumObjectsBurnt; + VirtualInvokeData get_IsLeverDown; + VirtualInvokeData set_IsLeverDown; + VirtualInvokeData get_IsAzazelActive; + VirtualInvokeData set_IsAzazelActive; + VirtualInvokeData get_Metadata; + VirtualInvokeData set_Metadata; + VirtualInvokeData get_FloatMetadata; + VirtualInvokeData set_FloatMetadata; + VirtualInvokeData get_LastPlayerToInteract; + VirtualInvokeData set_LastPlayerToInteract; +}; + +struct IBurnTrapState__StaticFields { +}; + +struct IBurnTrapState__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IBurnTrapState__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IBurnTrapState__VTable vtable; +}; + +struct IDoorState { + struct IDoorState__Class *klass; + MonitorData *monitor; +}; + +struct IDoorState__VTable { + VirtualInvokeData get_OpenRight; + VirtualInvokeData get_OpenLeft; + VirtualInvokeData get_Locked; + VirtualInvokeData set_Locked; + VirtualInvokeData get_AnnaOpeningDoor; + VirtualInvokeData set_AnnaOpeningDoor; + VirtualInvokeData get_KeyName; + VirtualInvokeData set_KeyName; + VirtualInvokeData get_OpenDoorFaster; + VirtualInvokeData get_Fall; + VirtualInvokeData get_Metadata; + VirtualInvokeData set_Metadata; +}; + +struct IDoorState__StaticFields { +}; + +struct IDoorState__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IDoorState__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IDoorState__VTable vtable; +}; + +struct IJumpScareState { + struct IJumpScareState__Class *klass; + MonitorData *monitor; +}; + +struct IJumpScareState__VTable { + VirtualInvokeData get_Triggered; + VirtualInvokeData set_Triggered; + VirtualInvokeData get_IsWaitingToTrigger; + VirtualInvokeData set_IsWaitingToTrigger; +}; + +struct IJumpScareState__StaticFields { +}; + +struct IJumpScareState__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IJumpScareState__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IJumpScareState__VTable vtable; +}; + +struct IDissonancePlayerState { + struct IDissonancePlayerState__Class *klass; + MonitorData *monitor; +}; + +struct IDissonancePlayerState__VTable { + VirtualInvokeData get_Transform; + VirtualInvokeData get_DissonancePlayerId; + VirtualInvokeData set_DissonancePlayerId; +}; + +struct IDissonancePlayerState__StaticFields { +}; + +struct IDissonancePlayerState__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IDissonancePlayerState__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IDissonancePlayerState__VTable vtable; +}; + +struct ISwitchState { + struct ISwitchState__Class *klass; + MonitorData *monitor; +}; + +struct ISwitchState__VTable { + VirtualInvokeData get_On; + VirtualInvokeData get_LockedDoor; + VirtualInvokeData set_LockedDoor; +}; + +struct ISwitchState__StaticFields { +}; + +struct ISwitchState__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ISwitchState__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ISwitchState__VTable vtable; +}; + +struct BoltScenes { + struct BoltScenes__Class *klass; + MonitorData *monitor; +}; + +struct BoltScenes__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltScenes__StaticFields { + struct Dictionary_2_System_String_System_Int32_ *nameLookup; + struct Dictionary_2_System_Int32_System_String_ *indexLookup; +}; + +struct BoltScenes__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltScenes__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltScenes__VTable vtable; +}; + +struct BoltAssets_Candle { + struct BoltAssets_Candle__Class *klass; + MonitorData *monitor; +}; + +struct BoltAssets_Candle__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltAssets_Candle__StaticFields { + struct String *IsLit; +}; + +struct BoltAssets_Candle__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltAssets_Candle__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltAssets_Candle__VTable vtable; +}; + +struct BoltAssets_InnMazeWeb { + struct BoltAssets_InnMazeWeb__Class *klass; + MonitorData *monitor; +}; + +struct BoltAssets_InnMazeWeb__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltAssets_InnMazeWeb__StaticFields { + struct String *Enabled; +}; + +struct BoltAssets_InnMazeWeb__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltAssets_InnMazeWeb__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltAssets_InnMazeWeb__VTable vtable; +}; + +struct BoltAssets_SteamInventoryPlayer { + struct BoltAssets_SteamInventoryPlayer__Class *klass; + MonitorData *monitor; +}; + +struct BoltAssets_SteamInventoryPlayer__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltAssets_SteamInventoryPlayer__StaticFields { + struct String *Character; + struct String *Result; + struct String *ConnectionId; + struct String *ItemDefinitionIds; + struct String *SteamId; +}; + +struct BoltAssets_SteamInventoryPlayer__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltAssets_SteamInventoryPlayer__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltAssets_SteamInventoryPlayer__VTable vtable; +}; + +struct BoltAssets_SurvivalPlayer { + struct BoltAssets_SurvivalPlayer__Class *klass; + MonitorData *monitor; +}; + +struct BoltAssets_SurvivalPlayer__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltAssets_SurvivalPlayer__StaticFields { + struct String *PrefabId; + struct String *Name; + struct String *ConnectionId; + struct String *IsReady; + struct String *DissonanceId; + struct String *PlayerId; +}; + +struct BoltAssets_SurvivalPlayer__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltAssets_SurvivalPlayer__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltAssets_SurvivalPlayer__VTable vtable; +}; + +struct BoltAssets_InventorySlot { + struct BoltAssets_InventorySlot__Class *klass; + MonitorData *monitor; +}; + +struct BoltAssets_InventorySlot__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltAssets_InventorySlot__StaticFields { + struct String *ItemId; +}; + +struct BoltAssets_InventorySlot__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltAssets_InventorySlot__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltAssets_InventorySlot__VTable vtable; +}; + +struct BoltAssets_PlaceObjectEvent { + struct BoltAssets_PlaceObjectEvent__Class *klass; + MonitorData *monitor; +}; + +struct BoltAssets_PlaceObjectEvent__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltAssets_PlaceObjectEvent__StaticFields { + struct String *Player; + struct String *ObjectName; + struct String *Position; + struct String *Rotation; +}; + +struct BoltAssets_PlaceObjectEvent__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltAssets_PlaceObjectEvent__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltAssets_PlaceObjectEvent__VTable vtable; +}; + +struct BoltAssets_RangedAttackEvent { + struct BoltAssets_RangedAttackEvent__Class *klass; + MonitorData *monitor; +}; + +struct BoltAssets_RangedAttackEvent__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltAssets_RangedAttackEvent__StaticFields { + struct String *AI; + struct String *Player; + struct String *Damage; + struct String *Hit; +}; + +struct BoltAssets_RangedAttackEvent__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltAssets_RangedAttackEvent__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltAssets_RangedAttackEvent__VTable vtable; +}; + +struct BoltAssets_VoteEvent { + struct BoltAssets_VoteEvent__Class *klass; + MonitorData *monitor; +}; + +struct BoltAssets_VoteEvent__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltAssets_VoteEvent__StaticFields { + struct String *Vote; +}; + +struct BoltAssets_VoteEvent__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltAssets_VoteEvent__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltAssets_VoteEvent__VTable vtable; +}; + +struct BoltAssets_VoteRequestEvent { + struct BoltAssets_VoteRequestEvent__Class *klass; + MonitorData *monitor; +}; + +struct BoltAssets_VoteRequestEvent__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltAssets_VoteRequestEvent__StaticFields { + struct String *Type; + struct String *Entity; +}; + +struct BoltAssets_VoteRequestEvent__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltAssets_VoteRequestEvent__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltAssets_VoteRequestEvent__VTable vtable; +}; + +struct BoltAssets_SystemChatMessageEvent { + struct BoltAssets_SystemChatMessageEvent__Class *klass; + MonitorData *monitor; +}; + +struct BoltAssets_SystemChatMessageEvent__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltAssets_SystemChatMessageEvent__StaticFields { + struct String *StringKey; + struct String *Arguments; +}; + +struct BoltAssets_SystemChatMessageEvent__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltAssets_SystemChatMessageEvent__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltAssets_SystemChatMessageEvent__VTable vtable; +}; + +struct BoltAssets_EndingEvent { + struct BoltAssets_EndingEvent__Class *klass; + MonitorData *monitor; +}; + +struct BoltAssets_EndingEvent__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltAssets_EndingEvent__StaticFields { + struct String *Ending; +}; + +struct BoltAssets_EndingEvent__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltAssets_EndingEvent__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltAssets_EndingEvent__VTable vtable; +}; + +struct BoltAssets_CreatePortalEvent { + struct BoltAssets_CreatePortalEvent__Class *klass; + MonitorData *monitor; +}; + +struct BoltAssets_CreatePortalEvent__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltAssets_CreatePortalEvent__StaticFields { + struct String *PortalId; +}; + +struct BoltAssets_CreatePortalEvent__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltAssets_CreatePortalEvent__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltAssets_CreatePortalEvent__VTable vtable; +}; + +struct BoltAssets_LobbyReadyEvent { + struct BoltAssets_LobbyReadyEvent__Class *klass; + MonitorData *monitor; +}; + +struct BoltAssets_LobbyReadyEvent__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltAssets_LobbyReadyEvent__StaticFields { + struct String *Ready; + struct String *PlayerIndex; +}; + +struct BoltAssets_LobbyReadyEvent__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltAssets_LobbyReadyEvent__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltAssets_LobbyReadyEvent__VTable vtable; +}; + +struct BoltAssets_DropObjectEvent { + struct BoltAssets_DropObjectEvent__Class *klass; + MonitorData *monitor; +}; + +struct BoltAssets_DropObjectEvent__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltAssets_DropObjectEvent__StaticFields { + struct String *Player; + struct String *CarryObjectName; +}; + +struct BoltAssets_DropObjectEvent__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltAssets_DropObjectEvent__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltAssets_DropObjectEvent__VTable vtable; +}; + +struct BoltAssets_KnockoutGrabRagdollEvent { + struct BoltAssets_KnockoutGrabRagdollEvent__Class *klass; + MonitorData *monitor; +}; + +struct BoltAssets_KnockoutGrabRagdollEvent__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltAssets_KnockoutGrabRagdollEvent__StaticFields { + struct String *Player; +}; + +struct BoltAssets_KnockoutGrabRagdollEvent__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltAssets_KnockoutGrabRagdollEvent__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltAssets_KnockoutGrabRagdollEvent__VTable vtable; +}; + +struct BoltAssets_PlayerPickedUpEvent { + struct BoltAssets_PlayerPickedUpEvent__Class *klass; + MonitorData *monitor; +}; + +struct BoltAssets_PlayerPickedUpEvent__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltAssets_PlayerPickedUpEvent__StaticFields { + struct String *AI; + struct String *Player; + struct String *InHidingSpot; +}; + +struct BoltAssets_PlayerPickedUpEvent__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltAssets_PlayerPickedUpEvent__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltAssets_PlayerPickedUpEvent__VTable vtable; +}; + +struct BoltAssets_SurvivalChangePlayerEvent { + struct BoltAssets_SurvivalChangePlayerEvent__Class *klass; + MonitorData *monitor; +}; + +struct BoltAssets_SurvivalChangePlayerEvent__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltAssets_SurvivalChangePlayerEvent__StaticFields { + struct String *Next; + struct String *PlayerIndex; +}; + +struct BoltAssets_SurvivalChangePlayerEvent__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltAssets_SurvivalChangePlayerEvent__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltAssets_SurvivalChangePlayerEvent__VTable vtable; +}; + +struct BoltAssets_ReviveEvent { + struct BoltAssets_ReviveEvent__Class *klass; + MonitorData *monitor; +}; + +struct BoltAssets_ReviveEvent__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltAssets_ReviveEvent__StaticFields { + struct String *Player; + struct String *Reviver; +}; + +struct BoltAssets_ReviveEvent__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltAssets_ReviveEvent__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltAssets_ReviveEvent__VTable vtable; +}; + +struct BoltAssets_KnockoutEvent { + struct BoltAssets_KnockoutEvent__Class *klass; + MonitorData *monitor; +}; + +struct BoltAssets_KnockoutEvent__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltAssets_KnockoutEvent__StaticFields { + struct String *AI; + struct String *Player; + struct String *UsingPoison; +}; + +struct BoltAssets_KnockoutEvent__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltAssets_KnockoutEvent__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltAssets_KnockoutEvent__VTable vtable; +}; + +struct BoltAssets_KnockoutBoxEvent { + struct BoltAssets_KnockoutBoxEvent__Class *klass; + MonitorData *monitor; +}; + +struct BoltAssets_KnockoutBoxEvent__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltAssets_KnockoutBoxEvent__StaticFields { + struct String *KilledBy; + struct String *Player; +}; + +struct BoltAssets_KnockoutBoxEvent__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltAssets_KnockoutBoxEvent__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltAssets_KnockoutBoxEvent__VTable vtable; +}; + +struct BoltAssets_InteractObjectResponseEvent { + struct BoltAssets_InteractObjectResponseEvent__Class *klass; + MonitorData *monitor; +}; + +struct BoltAssets_InteractObjectResponseEvent__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltAssets_InteractObjectResponseEvent__StaticFields { + struct String *Allowed; + struct String *Player; +}; + +struct BoltAssets_InteractObjectResponseEvent__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltAssets_InteractObjectResponseEvent__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltAssets_InteractObjectResponseEvent__VTable vtable; +}; + +struct BoltAssets_InteractPlopEvent { + struct BoltAssets_InteractPlopEvent__Class *klass; + MonitorData *monitor; +}; + +struct BoltAssets_InteractPlopEvent__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltAssets_InteractPlopEvent__StaticFields { + struct String *CarryObjectName; +}; + +struct BoltAssets_InteractPlopEvent__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltAssets_InteractPlopEvent__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltAssets_InteractPlopEvent__VTable vtable; +}; + +struct BoltAssets_InteractObjectRequestEvent { + struct BoltAssets_InteractObjectRequestEvent__Class *klass; + MonitorData *monitor; +}; + +struct BoltAssets_InteractObjectRequestEvent__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltAssets_InteractObjectRequestEvent__StaticFields { + struct String *Entity; + struct String *Player; + struct String *CarryObjectName; + struct String *ObjectName; + struct String *PlayerName; +}; + +struct BoltAssets_InteractObjectRequestEvent__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltAssets_InteractObjectRequestEvent__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltAssets_InteractObjectRequestEvent__VTable vtable; +}; + +struct BoltAssets_InteractTriggerEvent { + struct BoltAssets_InteractTriggerEvent__Class *klass; + MonitorData *monitor; +}; + +struct BoltAssets_InteractTriggerEvent__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltAssets_InteractTriggerEvent__StaticFields { + struct String *Entity; +}; + +struct BoltAssets_InteractTriggerEvent__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltAssets_InteractTriggerEvent__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltAssets_InteractTriggerEvent__VTable vtable; +}; + +struct BoltAssets_InteractEvent { + struct BoltAssets_InteractEvent__Class *klass; + MonitorData *monitor; +}; + +struct BoltAssets_InteractEvent__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltAssets_InteractEvent__StaticFields { + struct String *BoolParameterHash; + struct String *InteractEntity; + struct String *IsOther; + struct String *Player; +}; + +struct BoltAssets_InteractEvent__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltAssets_InteractEvent__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltAssets_InteractEvent__VTable vtable; +}; + +struct BoltAssets_ManorMirrorState { + struct BoltAssets_ManorMirrorState__Class *klass; + MonitorData *monitor; +}; + +struct BoltAssets_ManorMirrorState__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltAssets_ManorMirrorState__StaticFields { + struct String *Broken; + struct String *Target; + struct String *Outside; +}; + +struct BoltAssets_ManorMirrorState__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltAssets_ManorMirrorState__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltAssets_ManorMirrorState__VTable vtable; +}; + +struct BoltAssets_ManorSpiritState { + struct BoltAssets_ManorSpiritState__Class *klass; + MonitorData *monitor; +}; + +struct BoltAssets_ManorSpiritState__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltAssets_ManorSpiritState__StaticFields { + struct String *State; + struct String *Spirit; + struct String *Transform; + struct String *Speed; + struct String *AbilityIntData; + struct String *CandleLuredBy; +}; + +struct BoltAssets_ManorSpiritState__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltAssets_ManorSpiritState__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltAssets_ManorSpiritState__VTable vtable; +}; + +struct BoltAssets_CrowState { + struct BoltAssets_CrowState__Class *klass; + MonitorData *monitor; +}; + +struct BoltAssets_CrowState__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltAssets_CrowState__StaticFields { + struct String *Transform; + struct String *Speed; + struct String *AbilityIndex; + struct String *AbilityIntData; + struct String *Pursuing; + struct String *CarryObjectName; + struct String *LookAtEntity; + struct String *Moving; + struct String *Height; +}; + +struct BoltAssets_CrowState__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltAssets_CrowState__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltAssets_CrowState__VTable vtable; +}; + +struct BoltAssets_DoorNumberState { + struct BoltAssets_DoorNumberState__Class *klass; + MonitorData *monitor; +}; + +struct BoltAssets_DoorNumberState__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltAssets_DoorNumberState__StaticFields { + struct String *DoorNumber; +}; + +struct BoltAssets_DoorNumberState__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltAssets_DoorNumberState__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltAssets_DoorNumberState__VTable vtable; +}; + +struct BoltAssets_PetState { + struct BoltAssets_PetState__Class *klass; + MonitorData *monitor; +}; + +struct BoltAssets_PetState__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltAssets_PetState__StaticFields { + struct String *Transform; + struct String *Speed; + struct String *RandomIdle; + struct String *Player; +}; + +struct BoltAssets_PetState__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltAssets_PetState__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltAssets_PetState__VTable vtable; +}; + +struct BoltAssets_IntroState { + struct BoltAssets_IntroState__Class *klass; + MonitorData *monitor; +}; + +struct BoltAssets_IntroState__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltAssets_IntroState__StaticFields { + struct String *Step; +}; + +struct BoltAssets_IntroState__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltAssets_IntroState__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltAssets_IntroState__VTable vtable; +}; + +struct BoltAssets_TownPentagramState { + struct BoltAssets_TownPentagramState__Class *klass; + MonitorData *monitor; +}; + +struct BoltAssets_TownPentagramState__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltAssets_TownPentagramState__StaticFields { + struct String *State; + struct String *Type; + struct String *Candles; +}; + +struct BoltAssets_TownPentagramState__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltAssets_TownPentagramState__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltAssets_TownPentagramState__VTable vtable; +}; + +struct BoltAssets_InnFountainState { + struct BoltAssets_InnFountainState__Class *klass; + MonitorData *monitor; +}; + +struct BoltAssets_InnFountainState__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltAssets_InnFountainState__StaticFields { + struct String *IsClean; +}; + +struct BoltAssets_InnFountainState__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltAssets_InnFountainState__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltAssets_InnFountainState__VTable vtable; +}; + +struct BoltAssets_InnWebState { + struct BoltAssets_InnWebState__Class *klass; + MonitorData *monitor; +}; + +struct BoltAssets_InnWebState__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltAssets_InnWebState__StaticFields { + struct String *On; + struct String *NumPlayersFocusing; +}; + +struct BoltAssets_InnWebState__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltAssets_InnWebState__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltAssets_InnWebState__VTable vtable; +}; + +struct BoltAssets_EnemyState { + struct BoltAssets_EnemyState__Class *klass; + MonitorData *monitor; +}; + +struct BoltAssets_EnemyState__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltAssets_EnemyState__StaticFields { + struct String *Transform; + struct String *HorizontalMovement; + struct String *ForwardMovement; + struct String *Pitch; + struct String *Yaw; + struct String *Speed; + struct String *Height; + struct String *Moving; + struct String *MovementSetID; + struct String *AbilityIndex; + struct String *AbilityIntData; + struct String *AbilityFloatData; + struct String *ReliefIntData; + struct String *LookAtEntity; + struct String *LookAtPosition; + struct String *DoorEntity; + struct String *MultipleFocus; + struct String *DemonHoldingPlayer; + struct String *AlignToGround; + struct String *IsHidden; + struct String *GenericBool1; +}; + +struct BoltAssets_EnemyState__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltAssets_EnemyState__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltAssets_EnemyState__VTable vtable; +}; + +struct BoltAssets_EnemyBasicState { + struct BoltAssets_EnemyBasicState__Class *klass; + MonitorData *monitor; +}; + +struct BoltAssets_EnemyBasicState__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltAssets_EnemyBasicState__StaticFields { + struct String *Transform; + struct String *Speed; + struct String *AbilityIndex; + struct String *AbilityIntData; + struct String *Pursuing; + struct String *CarryObjectName; + struct String *LookAtEntity; + struct String *AbilityFloatData; + struct String *Yaw; +}; + +struct BoltAssets_EnemyBasicState__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltAssets_EnemyBasicState__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltAssets_EnemyBasicState__VTable vtable; +}; + +struct BoltAssets_InnMazeState { + struct BoltAssets_InnMazeState__Class *klass; + MonitorData *monitor; +}; + +struct BoltAssets_InnMazeState__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltAssets_InnMazeState__StaticFields { + struct String *Webs; +}; + +struct BoltAssets_InnMazeState__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltAssets_InnMazeState__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltAssets_InnMazeState__VTable vtable; +}; + +struct BoltAssets_InnShrineState { + struct BoltAssets_InnShrineState__Class *klass; + MonitorData *monitor; +}; + +struct BoltAssets_InnShrineState__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltAssets_InnShrineState__StaticFields { + struct String *Type; + struct String *Egg; +}; + +struct BoltAssets_InnShrineState__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltAssets_InnShrineState__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltAssets_InnShrineState__VTable vtable; +}; + +struct BoltAssets_MapState { + struct BoltAssets_MapState__Class *klass; + MonitorData *monitor; +}; + +struct BoltAssets_MapState__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltAssets_MapState__StaticFields { + struct String *MapProgress; + struct String *IsAzazelActive; + struct String *LastPlayerToInteract; +}; + +struct BoltAssets_MapState__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltAssets_MapState__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltAssets_MapState__VTable vtable; +}; + +struct BoltAssets_SteamInventoryState { + struct BoltAssets_SteamInventoryState__Class *klass; + MonitorData *monitor; +}; + +struct BoltAssets_SteamInventoryState__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltAssets_SteamInventoryState__StaticFields { + struct String *Players; +}; + +struct BoltAssets_SteamInventoryState__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltAssets_SteamInventoryState__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltAssets_SteamInventoryState__VTable vtable; +}; + +struct BoltAssets_HidingSpotState { + struct BoltAssets_HidingSpotState__Class *klass; + MonitorData *monitor; +}; + +struct BoltAssets_HidingSpotState__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltAssets_HidingSpotState__StaticFields { + struct String *IsOccupied; + struct String *Player; + struct String *IsDestroyed; +}; + +struct BoltAssets_HidingSpotState__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltAssets_HidingSpotState__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltAssets_HidingSpotState__VTable vtable; +}; + +struct BoltAssets_JumpScareState { + struct BoltAssets_JumpScareState__Class *klass; + MonitorData *monitor; +}; + +struct BoltAssets_JumpScareState__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltAssets_JumpScareState__StaticFields { + struct String *Triggered; + struct String *IsWaitingToTrigger; +}; + +struct BoltAssets_JumpScareState__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltAssets_JumpScareState__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltAssets_JumpScareState__VTable vtable; +}; + +struct BoltAssets_GoatState { + struct BoltAssets_GoatState__Class *klass; + MonitorData *monitor; +}; + +struct BoltAssets_GoatState__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltAssets_GoatState__StaticFields { + struct String *Moving; + struct String *Transform; + struct String *Random; + struct String *AbilityIndex; + struct String *Yaw; + struct String *Speed; + struct String *HayBeingEaten; +}; + +struct BoltAssets_GoatState__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltAssets_GoatState__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltAssets_GoatState__VTable vtable; +}; + +struct BoltAssets_SurvivalLobbyState { + struct BoltAssets_SurvivalLobbyState__Class *klass; + MonitorData *monitor; +}; + +struct BoltAssets_SurvivalLobbyState__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltAssets_SurvivalLobbyState__StaticFields { + struct String *Players; + struct String *Map; + struct String *Difficulty; + struct String *PlayerCollisions; + struct String *ProximityVoice; + struct String *Batteries; + struct String *Medkits; + struct String *Perks; +}; + +struct BoltAssets_SurvivalLobbyState__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltAssets_SurvivalLobbyState__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltAssets_SurvivalLobbyState__VTable vtable; +}; + +struct BoltAssets_BurnTrapState { + struct BoltAssets_BurnTrapState__Class *klass; + MonitorData *monitor; +}; + +struct BoltAssets_BurnTrapState__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltAssets_BurnTrapState__StaticFields { + struct String *Goat; + struct String *Active; + struct String *NumObjectsBurnt; + struct String *IsLeverDown; + struct String *IsAzazelActive; + struct String *Metadata; + struct String *FloatMetadata; + struct String *LastPlayerToInteract; +}; + +struct BoltAssets_BurnTrapState__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltAssets_BurnTrapState__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltAssets_BurnTrapState__VTable vtable; +}; + +struct BoltAssets_DissonancePlayerState { + struct BoltAssets_DissonancePlayerState__Class *klass; + MonitorData *monitor; +}; + +struct BoltAssets_DissonancePlayerState__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltAssets_DissonancePlayerState__StaticFields { + struct String *Transform; + struct String *DissonancePlayerId; +}; + +struct BoltAssets_DissonancePlayerState__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltAssets_DissonancePlayerState__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltAssets_DissonancePlayerState__VTable vtable; +}; + +struct BoltAssets_InteractObjectState { + struct BoltAssets_InteractObjectState__Class *klass; + MonitorData *monitor; +}; + +struct BoltAssets_InteractObjectState__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltAssets_InteractObjectState__StaticFields { + struct String *DisableInteract; + struct String *DroppedByPlayer; + struct String *Metadata; +}; + +struct BoltAssets_InteractObjectState__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltAssets_InteractObjectState__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltAssets_InteractObjectState__VTable vtable; +}; + +struct BoltAssets_PlayerState { + struct BoltAssets_PlayerState__Class *klass; + MonitorData *monitor; +}; + +struct BoltAssets_PlayerState__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltAssets_PlayerState__StaticFields { + struct String *Transform; + struct String *HorizontalMovement; + struct String *ForwardMovement; + struct String *Pitch; + struct String *Yaw; + struct String *Speed; + struct String *Height; + struct String *Moving; + struct String *MovementSetID; + struct String *AbilityIndex; + struct String *AbilityIntData; + struct String *AbilityFloatData; + struct String *ReliefIntData; + struct String *IsFlashlightActive; + struct String *CarryObjectName; + struct String *DissonancePlayerId; + struct String *LookAtEntity; + struct String *LookAtPosition; + struct String *Keys; + struct String *Locked; + struct String *DemonHoldingPlayer; + struct String *Outfit; + struct String *Robe; + struct String *ConnectionId; + struct String *Reviving; + struct String *AlignToGround; + struct String *Poison; + struct String *Perk; + struct String *Flashlight; + struct String *Rank; + struct String *PlayerName; + struct String *PlayerId; + struct String *FlashlightOriginOffset; + struct String *FlashlightDir; + struct String *VRMirrorHands; + struct String *VRRightHandDir; + struct String *VRLeftHandDir; + struct String *VRRightHandRotation; + struct String *VRLeftHandRotation; + struct String *Perk2; +}; + +struct BoltAssets_PlayerState__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltAssets_PlayerState__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltAssets_PlayerState__VTable vtable; +}; + +struct BoltAssets_SwitchState { + struct BoltAssets_SwitchState__Class *klass; + MonitorData *monitor; +}; + +struct BoltAssets_SwitchState__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltAssets_SwitchState__StaticFields { + struct String *On; + struct String *LockedDoor; +}; + +struct BoltAssets_SwitchState__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltAssets_SwitchState__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltAssets_SwitchState__VTable vtable; +}; + +struct BoltAssets_DoorState { + struct BoltAssets_DoorState__Class *klass; + MonitorData *monitor; +}; + +struct BoltAssets_DoorState__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltAssets_DoorState__StaticFields { + struct String *OpenRight; + struct String *OpenLeft; + struct String *Locked; + struct String *AnnaOpeningDoor; + struct String *KeyName; + struct String *OpenDoorFaster; + struct String *Fall; + struct String *Metadata; +}; + +struct BoltAssets_DoorState__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltAssets_DoorState__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltAssets_DoorState__VTable vtable; +}; + +struct BoltAssemblies { + struct BoltAssemblies__Class *klass; + MonitorData *monitor; +}; + +struct BoltAssemblies__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltAssemblies__StaticFields { + struct List_1_System_String_ *AssemblyList; +}; + +struct BoltAssemblies__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltAssemblies__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltAssemblies__VTable vtable; +}; + +struct IPlaceObjectEventListener { + struct IPlaceObjectEventListener__Class *klass; + MonitorData *monitor; +}; + +struct IPlaceObjectEventListener__VTable { + VirtualInvokeData OnEvent; +}; + +struct IPlaceObjectEventListener__StaticFields { +}; + +struct IPlaceObjectEventListener__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IPlaceObjectEventListener__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IPlaceObjectEventListener__VTable vtable; +}; + +struct IVoteCompletedEventListener { + struct IVoteCompletedEventListener__Class *klass; + MonitorData *monitor; +}; + +struct IVoteCompletedEventListener__VTable { + VirtualInvokeData OnEvent; +}; + +struct IVoteCompletedEventListener__StaticFields { +}; + +struct IVoteCompletedEventListener__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IVoteCompletedEventListener__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IVoteCompletedEventListener__VTable vtable; +}; + +struct IRangedAttackEventListener { + struct IRangedAttackEventListener__Class *klass; + MonitorData *monitor; +}; + +struct IRangedAttackEventListener__VTable { + VirtualInvokeData OnEvent; +}; + +struct IRangedAttackEventListener__StaticFields { +}; + +struct IRangedAttackEventListener__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IRangedAttackEventListener__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IRangedAttackEventListener__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_String_Rewired_Utils_SafeDelegate_ { + struct Dictionary_2_System_String_Rewired_Utils_SafeDelegate_ *_dictionary; + int32_t _version; + int32_t _index; + struct KeyValuePair_2_System_String_Rewired_Utils_SafeDelegate_ _current; + int32_t _getEnumeratorRetType; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_String_Rewired_Utils_SafeDelegate___Boxed { + struct Dictionary_2_TKey_TValue_Enumerator_System_String_Rewired_Utils_SafeDelegate___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Enumerator_System_String_Rewired_Utils_SafeDelegate_ fields; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_String_Rewired_Utils_SafeDelegate___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Key; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Value; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Entry; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_String_Rewired_Utils_SafeDelegate___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_String_Rewired_Utils_SafeDelegate___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Enumerator_System_String_Rewired_Utils_SafeDelegate___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Enumerator_System_String_Rewired_Utils_SafeDelegate___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_Rewired_InputMapper_LHIKMCjQdqDNBdfhNEqxmrgcNERkA_Rewired_Utils_SafeDelegate_ { + struct Dictionary_2_Rewired_InputMapper_LHIKMCjQdqDNBdfhNEqxmrgcNERkA_Rewired_Utils_SafeDelegate_ *_dictionary; + int32_t _version; + int32_t _index; + struct KeyValuePair_2_Rewired_InputMapper_LHIKMCjQdqDNBdfhNEqxmrgcNERkA_Rewired_Utils_SafeDelegate_ _current; + int32_t _getEnumeratorRetType; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_Rewired_InputMapper_LHIKMCjQdqDNBdfhNEqxmrgcNERkA_Rewired_Utils_SafeDelegate___Boxed { + struct Dictionary_2_TKey_TValue_Enumerator_Rewired_InputMapper_LHIKMCjQdqDNBdfhNEqxmrgcNERkA_Rewired_Utils_SafeDelegate___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Enumerator_Rewired_InputMapper_LHIKMCjQdqDNBdfhNEqxmrgcNERkA_Rewired_Utils_SafeDelegate_ fields; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_Rewired_InputMapper_LHIKMCjQdqDNBdfhNEqxmrgcNERkA_Rewired_Utils_SafeDelegate___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Key; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Value; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Entry; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_Rewired_InputMapper_LHIKMCjQdqDNBdfhNEqxmrgcNERkA_Rewired_Utils_SafeDelegate___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Enumerator_Rewired_InputMapper_LHIKMCjQdqDNBdfhNEqxmrgcNERkA_Rewired_Utils_SafeDelegate___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Enumerator_Rewired_InputMapper_LHIKMCjQdqDNBdfhNEqxmrgcNERkA_Rewired_Utils_SafeDelegate___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Enumerator_Rewired_InputMapper_LHIKMCjQdqDNBdfhNEqxmrgcNERkA_Rewired_Utils_SafeDelegate___VTable vtable; +}; + +struct __declspec(align(8)) SafeDelegate_1_System_Action_1__2__Fields { + struct Action_1_Exception_ *gFVCwFWPPxvKeIayZEdqnbhJsBWq; + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__8 *KJHnqvupeVyMhaFsyiBPMzGFGSkt; + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__8 *TKGbuBhEGwoDciZXhSFnhwJaUNhsd; +}; + +struct SafeDelegate_1_System_Action_1__2 { + struct SafeDelegate_1_System_Action_1__2__Class *klass; + MonitorData *monitor; + struct SafeDelegate_1_System_Action_1__2__Fields fields; +}; + +struct SafeAction_1_Rewired_InputMapper_TimedOutEventData___Fields { + struct SafeDelegate_1_System_Action_1__2__Fields _; + struct InputMapper_TimedOutEventData *UOOjTrREqaLVOagCRkKqzBFJZIFq; +}; + +struct SafeAction_1_Rewired_InputMapper_TimedOutEventData_ { + struct SafeAction_1_Rewired_InputMapper_TimedOutEventData___Class *klass; + MonitorData *monitor; + struct SafeAction_1_Rewired_InputMapper_TimedOutEventData___Fields fields; +}; + +struct __declspec(align(8)) SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__2__Fields { + struct Action_1_Rewired_InputMapper_TimedOutEventData_ *EbPkqdARHGIDwsIdtmoIkULLoFZX; + struct Object *azMuaeFsfaJNXcPJwiBJiandOfCPB; + struct Object *anJbPSjbuBVSvDnFXfRQckduFHXFb; + bool djPDhOPYBMSJXATGgIBAepcilZsT; +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__2 { + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__2__Class *klass; + MonitorData *monitor; + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__2__Fields fields; +}; + +struct __declspec(align(8)) List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__8__Fields { + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__2__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__8 { + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__8__Class *klass; + MonitorData *monitor; + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__8__Fields fields; +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__2__Array { + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__2__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__2 *vector[32]; +}; + +struct IEnumerator_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__8 { + struct IEnumerator_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__8__Class *klass; + MonitorData *monitor; +}; + +struct Action_2_Object_Action_1_Rewired_InputMapper_TimedOutEventData___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_2_Object_Action_1_Rewired_InputMapper_TimedOutEventData_ { + struct Action_2_Object_Action_1_Rewired_InputMapper_TimedOutEventData___Class *klass; + MonitorData *monitor; + struct Action_2_Object_Action_1_Rewired_InputMapper_TimedOutEventData___Fields fields; +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__2__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__2__StaticFields { +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__2__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__2__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__2__VTable vtable; +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__2__Array__VTable { +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__2__Array__StaticFields { +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__2__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__2__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__2__Array__VTable vtable; +}; + +struct IEnumerator_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__8__VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__8__StaticFields { +}; + +struct IEnumerator_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__8__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__8__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__8__VTable vtable; +}; + +struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__8__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__8__StaticFields { + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__2__Array *s_emptyArray; +}; + +struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__8__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__8__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__8__VTable vtable; +}; + +struct SafeDelegate_1_System_Action_1__2__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData get_Count; + VirtualInvokeData RemoveDelegateOrAllDelegatesFromAnObject; + VirtualInvokeData get_ExceptionHandler; + VirtualInvokeData set_ExceptionHandler; + VirtualInvokeData Clear; + VirtualInvokeData __unknown; +}; + +struct SafeDelegate_1_System_Action_1__2__StaticFields { +}; + +struct SafeDelegate_1_System_Action_1__2__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SafeDelegate_1_System_Action_1__2__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SafeDelegate_1_System_Action_1__2__VTable vtable; +}; + +struct Action_2_Object_Action_1_Rewired_InputMapper_TimedOutEventData___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_2_Object_Action_1_Rewired_InputMapper_TimedOutEventData___StaticFields { +}; + +struct Action_2_Object_Action_1_Rewired_InputMapper_TimedOutEventData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_2_Object_Action_1_Rewired_InputMapper_TimedOutEventData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_2_Object_Action_1_Rewired_InputMapper_TimedOutEventData___VTable vtable; +}; + +struct SafeAction_1_Rewired_InputMapper_TimedOutEventData___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData get_Count; + VirtualInvokeData RemoveDelegateOrAllDelegatesFromAnObject; + VirtualInvokeData get_ExceptionHandler; + VirtualInvokeData set_ExceptionHandler; + VirtualInvokeData Clear; + VirtualInvokeData Clone_1; +}; + +struct SafeAction_1_Rewired_InputMapper_TimedOutEventData___StaticFields { + struct Action_2_Object_Action_1_Rewired_InputMapper_TimedOutEventData_ *AMyXyiSHkqrVuCdLegTgpAOtGmHaA; +}; + +struct SafeAction_1_Rewired_InputMapper_TimedOutEventData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SafeAction_1_Rewired_InputMapper_TimedOutEventData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SafeAction_1_Rewired_InputMapper_TimedOutEventData___VTable vtable; +}; + +struct __declspec(align(8)) SafeDelegate_1_System_Action_1__3__Fields { + struct Action_1_Exception_ *gFVCwFWPPxvKeIayZEdqnbhJsBWq; + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__9 *KJHnqvupeVyMhaFsyiBPMzGFGSkt; + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__9 *TKGbuBhEGwoDciZXhSFnhwJaUNhsd; +}; + +struct SafeDelegate_1_System_Action_1__3 { + struct SafeDelegate_1_System_Action_1__3__Class *klass; + MonitorData *monitor; + struct SafeDelegate_1_System_Action_1__3__Fields fields; +}; + +struct SafeAction_1_Rewired_InputMapper_ConflictFoundEventData___Fields { + struct SafeDelegate_1_System_Action_1__3__Fields _; + struct InputMapper_ConflictFoundEventData *UOOjTrREqaLVOagCRkKqzBFJZIFq; +}; + +struct SafeAction_1_Rewired_InputMapper_ConflictFoundEventData_ { + struct SafeAction_1_Rewired_InputMapper_ConflictFoundEventData___Class *klass; + MonitorData *monitor; + struct SafeAction_1_Rewired_InputMapper_ConflictFoundEventData___Fields fields; +}; + +struct __declspec(align(8)) SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__3__Fields { + struct Action_1_Rewired_InputMapper_ConflictFoundEventData_ *EbPkqdARHGIDwsIdtmoIkULLoFZX; + struct Object *azMuaeFsfaJNXcPJwiBJiandOfCPB; + struct Object *anJbPSjbuBVSvDnFXfRQckduFHXFb; + bool djPDhOPYBMSJXATGgIBAepcilZsT; +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__3 { + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__3__Class *klass; + MonitorData *monitor; + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__3__Fields fields; +}; + +struct __declspec(align(8)) List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__9__Fields { + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__3__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__9 { + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__9__Class *klass; + MonitorData *monitor; + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__9__Fields fields; +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__3__Array { + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__3__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__3 *vector[32]; +}; + +struct IEnumerator_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__9 { + struct IEnumerator_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__9__Class *klass; + MonitorData *monitor; +}; + +struct Action_2_Object_Action_1_Rewired_InputMapper_ConflictFoundEventData___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_2_Object_Action_1_Rewired_InputMapper_ConflictFoundEventData_ { + struct Action_2_Object_Action_1_Rewired_InputMapper_ConflictFoundEventData___Class *klass; + MonitorData *monitor; + struct Action_2_Object_Action_1_Rewired_InputMapper_ConflictFoundEventData___Fields fields; +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__3__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__3__StaticFields { +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__3__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__3__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__3__VTable vtable; +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__3__Array__VTable { +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__3__Array__StaticFields { +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__3__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__3__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__3__Array__VTable vtable; +}; + +struct IEnumerator_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__9__VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__9__StaticFields { +}; + +struct IEnumerator_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__9__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__9__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__9__VTable vtable; +}; + +struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__9__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__9__StaticFields { + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__3__Array *s_emptyArray; +}; + +struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__9__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__9__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__9__VTable vtable; +}; + +struct SafeDelegate_1_System_Action_1__3__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData get_Count; + VirtualInvokeData RemoveDelegateOrAllDelegatesFromAnObject; + VirtualInvokeData get_ExceptionHandler; + VirtualInvokeData set_ExceptionHandler; + VirtualInvokeData Clear; + VirtualInvokeData __unknown; +}; + +struct SafeDelegate_1_System_Action_1__3__StaticFields { +}; + +struct SafeDelegate_1_System_Action_1__3__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SafeDelegate_1_System_Action_1__3__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SafeDelegate_1_System_Action_1__3__VTable vtable; +}; + +struct Action_2_Object_Action_1_Rewired_InputMapper_ConflictFoundEventData___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_2_Object_Action_1_Rewired_InputMapper_ConflictFoundEventData___StaticFields { +}; + +struct Action_2_Object_Action_1_Rewired_InputMapper_ConflictFoundEventData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_2_Object_Action_1_Rewired_InputMapper_ConflictFoundEventData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_2_Object_Action_1_Rewired_InputMapper_ConflictFoundEventData___VTable vtable; +}; + +struct SafeAction_1_Rewired_InputMapper_ConflictFoundEventData___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData get_Count; + VirtualInvokeData RemoveDelegateOrAllDelegatesFromAnObject; + VirtualInvokeData get_ExceptionHandler; + VirtualInvokeData set_ExceptionHandler; + VirtualInvokeData Clear; + VirtualInvokeData Clone_1; +}; + +struct SafeAction_1_Rewired_InputMapper_ConflictFoundEventData___StaticFields { + struct Action_2_Object_Action_1_Rewired_InputMapper_ConflictFoundEventData_ *AMyXyiSHkqrVuCdLegTgpAOtGmHaA; +}; + +struct SafeAction_1_Rewired_InputMapper_ConflictFoundEventData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SafeAction_1_Rewired_InputMapper_ConflictFoundEventData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SafeAction_1_Rewired_InputMapper_ConflictFoundEventData___VTable vtable; +}; + +struct __declspec(align(8)) SafeDelegate_1_System_Action_1__4__Fields { + struct Action_1_Exception_ *gFVCwFWPPxvKeIayZEdqnbhJsBWq; + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__10 *KJHnqvupeVyMhaFsyiBPMzGFGSkt; + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__10 *TKGbuBhEGwoDciZXhSFnhwJaUNhsd; +}; + +struct SafeDelegate_1_System_Action_1__4 { + struct SafeDelegate_1_System_Action_1__4__Class *klass; + MonitorData *monitor; + struct SafeDelegate_1_System_Action_1__4__Fields fields; +}; + +struct SafeAction_1_Rewired_InputMapper_StoppedEventData___Fields { + struct SafeDelegate_1_System_Action_1__4__Fields _; + struct InputMapper_StoppedEventData *UOOjTrREqaLVOagCRkKqzBFJZIFq; +}; + +struct SafeAction_1_Rewired_InputMapper_StoppedEventData_ { + struct SafeAction_1_Rewired_InputMapper_StoppedEventData___Class *klass; + MonitorData *monitor; + struct SafeAction_1_Rewired_InputMapper_StoppedEventData___Fields fields; +}; + +struct __declspec(align(8)) SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__4__Fields { + struct Action_1_Rewired_InputMapper_StoppedEventData_ *EbPkqdARHGIDwsIdtmoIkULLoFZX; + struct Object *azMuaeFsfaJNXcPJwiBJiandOfCPB; + struct Object *anJbPSjbuBVSvDnFXfRQckduFHXFb; + bool djPDhOPYBMSJXATGgIBAepcilZsT; +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__4 { + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__4__Class *klass; + MonitorData *monitor; + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__4__Fields fields; +}; + +struct __declspec(align(8)) List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__10__Fields { + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__4__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__10 { + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__10__Class *klass; + MonitorData *monitor; + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__10__Fields fields; +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__4__Array { + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__4__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__4 *vector[32]; +}; + +struct IEnumerator_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__10 { + struct IEnumerator_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__10__Class *klass; + MonitorData *monitor; +}; + +struct Action_2_Object_Action_1_Rewired_InputMapper_StoppedEventData___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_2_Object_Action_1_Rewired_InputMapper_StoppedEventData_ { + struct Action_2_Object_Action_1_Rewired_InputMapper_StoppedEventData___Class *klass; + MonitorData *monitor; + struct Action_2_Object_Action_1_Rewired_InputMapper_StoppedEventData___Fields fields; +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__4__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__4__StaticFields { +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__4__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__4__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__4__VTable vtable; +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__4__Array__VTable { +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__4__Array__StaticFields { +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__4__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__4__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__4__Array__VTable vtable; +}; + +struct IEnumerator_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__10__VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__10__StaticFields { +}; + +struct IEnumerator_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__10__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__10__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__10__VTable vtable; +}; + +struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__10__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__10__StaticFields { + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__4__Array *s_emptyArray; +}; + +struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__10__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__10__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__10__VTable vtable; +}; + +struct SafeDelegate_1_System_Action_1__4__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData get_Count; + VirtualInvokeData RemoveDelegateOrAllDelegatesFromAnObject; + VirtualInvokeData get_ExceptionHandler; + VirtualInvokeData set_ExceptionHandler; + VirtualInvokeData Clear; + VirtualInvokeData __unknown; +}; + +struct SafeDelegate_1_System_Action_1__4__StaticFields { +}; + +struct SafeDelegate_1_System_Action_1__4__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SafeDelegate_1_System_Action_1__4__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SafeDelegate_1_System_Action_1__4__VTable vtable; +}; + +struct Action_2_Object_Action_1_Rewired_InputMapper_StoppedEventData___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_2_Object_Action_1_Rewired_InputMapper_StoppedEventData___StaticFields { +}; + +struct Action_2_Object_Action_1_Rewired_InputMapper_StoppedEventData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_2_Object_Action_1_Rewired_InputMapper_StoppedEventData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_2_Object_Action_1_Rewired_InputMapper_StoppedEventData___VTable vtable; +}; + +struct SafeAction_1_Rewired_InputMapper_StoppedEventData___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData get_Count; + VirtualInvokeData RemoveDelegateOrAllDelegatesFromAnObject; + VirtualInvokeData get_ExceptionHandler; + VirtualInvokeData set_ExceptionHandler; + VirtualInvokeData Clear; + VirtualInvokeData Clone_1; +}; + +struct SafeAction_1_Rewired_InputMapper_StoppedEventData___StaticFields { + struct Action_2_Object_Action_1_Rewired_InputMapper_StoppedEventData_ *AMyXyiSHkqrVuCdLegTgpAOtGmHaA; +}; + +struct SafeAction_1_Rewired_InputMapper_StoppedEventData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SafeAction_1_Rewired_InputMapper_StoppedEventData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SafeAction_1_Rewired_InputMapper_StoppedEventData___VTable vtable; +}; + +struct __declspec(align(8)) SafeDelegate_1_System_Action_1__5__Fields { + struct Action_1_Exception_ *gFVCwFWPPxvKeIayZEdqnbhJsBWq; + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__11 *KJHnqvupeVyMhaFsyiBPMzGFGSkt; + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__11 *TKGbuBhEGwoDciZXhSFnhwJaUNhsd; +}; + +struct SafeDelegate_1_System_Action_1__5 { + struct SafeDelegate_1_System_Action_1__5__Class *klass; + MonitorData *monitor; + struct SafeDelegate_1_System_Action_1__5__Fields fields; +}; + +struct SafeAction_1_Rewired_InputMapper_StartedEventData___Fields { + struct SafeDelegate_1_System_Action_1__5__Fields _; + struct InputMapper_StartedEventData *UOOjTrREqaLVOagCRkKqzBFJZIFq; +}; + +struct SafeAction_1_Rewired_InputMapper_StartedEventData_ { + struct SafeAction_1_Rewired_InputMapper_StartedEventData___Class *klass; + MonitorData *monitor; + struct SafeAction_1_Rewired_InputMapper_StartedEventData___Fields fields; +}; + +struct __declspec(align(8)) SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__5__Fields { + struct Action_1_Rewired_InputMapper_StartedEventData_ *EbPkqdARHGIDwsIdtmoIkULLoFZX; + struct Object *azMuaeFsfaJNXcPJwiBJiandOfCPB; + struct Object *anJbPSjbuBVSvDnFXfRQckduFHXFb; + bool djPDhOPYBMSJXATGgIBAepcilZsT; +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__5 { + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__5__Class *klass; + MonitorData *monitor; + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__5__Fields fields; +}; + +struct __declspec(align(8)) List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__11__Fields { + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__5__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__11 { + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__11__Class *klass; + MonitorData *monitor; + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__11__Fields fields; +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__5__Array { + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__5__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__5 *vector[32]; +}; + +struct IEnumerator_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__11 { + struct IEnumerator_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__11__Class *klass; + MonitorData *monitor; +}; + +struct Action_2_Object_Action_1_Rewired_InputMapper_StartedEventData___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_2_Object_Action_1_Rewired_InputMapper_StartedEventData_ { + struct Action_2_Object_Action_1_Rewired_InputMapper_StartedEventData___Class *klass; + MonitorData *monitor; + struct Action_2_Object_Action_1_Rewired_InputMapper_StartedEventData___Fields fields; +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__5__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__5__StaticFields { +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__5__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__5__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__5__VTable vtable; +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__5__Array__VTable { +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__5__Array__StaticFields { +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__5__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__5__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__5__Array__VTable vtable; +}; + +struct IEnumerator_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__11__VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__11__StaticFields { +}; + +struct IEnumerator_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__11__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__11__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__11__VTable vtable; +}; + +struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__11__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__11__StaticFields { + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__5__Array *s_emptyArray; +}; + +struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__11__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__11__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__11__VTable vtable; +}; + +struct SafeDelegate_1_System_Action_1__5__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData get_Count; + VirtualInvokeData RemoveDelegateOrAllDelegatesFromAnObject; + VirtualInvokeData get_ExceptionHandler; + VirtualInvokeData set_ExceptionHandler; + VirtualInvokeData Clear; + VirtualInvokeData __unknown; +}; + +struct SafeDelegate_1_System_Action_1__5__StaticFields { +}; + +struct SafeDelegate_1_System_Action_1__5__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SafeDelegate_1_System_Action_1__5__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SafeDelegate_1_System_Action_1__5__VTable vtable; +}; + +struct Action_2_Object_Action_1_Rewired_InputMapper_StartedEventData___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_2_Object_Action_1_Rewired_InputMapper_StartedEventData___StaticFields { +}; + +struct Action_2_Object_Action_1_Rewired_InputMapper_StartedEventData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_2_Object_Action_1_Rewired_InputMapper_StartedEventData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_2_Object_Action_1_Rewired_InputMapper_StartedEventData___VTable vtable; +}; + +struct SafeAction_1_Rewired_InputMapper_StartedEventData___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData get_Count; + VirtualInvokeData RemoveDelegateOrAllDelegatesFromAnObject; + VirtualInvokeData get_ExceptionHandler; + VirtualInvokeData set_ExceptionHandler; + VirtualInvokeData Clear; + VirtualInvokeData Clone_1; +}; + +struct SafeAction_1_Rewired_InputMapper_StartedEventData___StaticFields { + struct Action_2_Object_Action_1_Rewired_InputMapper_StartedEventData_ *AMyXyiSHkqrVuCdLegTgpAOtGmHaA; +}; + +struct SafeAction_1_Rewired_InputMapper_StartedEventData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SafeAction_1_Rewired_InputMapper_StartedEventData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SafeAction_1_Rewired_InputMapper_StartedEventData___VTable vtable; +}; + +struct __declspec(align(8)) SafeDelegate_1_System_Action_1__6__Fields { + struct Action_1_Exception_ *gFVCwFWPPxvKeIayZEdqnbhJsBWq; + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__12 *KJHnqvupeVyMhaFsyiBPMzGFGSkt; + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__12 *TKGbuBhEGwoDciZXhSFnhwJaUNhsd; +}; + +struct SafeDelegate_1_System_Action_1__6 { + struct SafeDelegate_1_System_Action_1__6__Class *klass; + MonitorData *monitor; + struct SafeDelegate_1_System_Action_1__6__Fields fields; +}; + +struct SafeAction_1_Rewired_InputMapper_CanceledEventData___Fields { + struct SafeDelegate_1_System_Action_1__6__Fields _; + struct InputMapper_CanceledEventData *UOOjTrREqaLVOagCRkKqzBFJZIFq; +}; + +struct SafeAction_1_Rewired_InputMapper_CanceledEventData_ { + struct SafeAction_1_Rewired_InputMapper_CanceledEventData___Class *klass; + MonitorData *monitor; + struct SafeAction_1_Rewired_InputMapper_CanceledEventData___Fields fields; +}; + +struct __declspec(align(8)) SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__6__Fields { + struct Action_1_Rewired_InputMapper_CanceledEventData_ *EbPkqdARHGIDwsIdtmoIkULLoFZX; + struct Object *azMuaeFsfaJNXcPJwiBJiandOfCPB; + struct Object *anJbPSjbuBVSvDnFXfRQckduFHXFb; + bool djPDhOPYBMSJXATGgIBAepcilZsT; +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__6 { + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__6__Class *klass; + MonitorData *monitor; + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__6__Fields fields; +}; + +struct __declspec(align(8)) List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__12__Fields { + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__6__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__12 { + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__12__Class *klass; + MonitorData *monitor; + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__12__Fields fields; +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__6__Array { + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__6__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__6 *vector[32]; +}; + +struct IEnumerator_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__12 { + struct IEnumerator_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__12__Class *klass; + MonitorData *monitor; +}; + +struct Action_2_Object_Action_1_Rewired_InputMapper_CanceledEventData___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_2_Object_Action_1_Rewired_InputMapper_CanceledEventData_ { + struct Action_2_Object_Action_1_Rewired_InputMapper_CanceledEventData___Class *klass; + MonitorData *monitor; + struct Action_2_Object_Action_1_Rewired_InputMapper_CanceledEventData___Fields fields; +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__6__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__6__StaticFields { +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__6__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__6__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__6__VTable vtable; +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__6__Array__VTable { +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__6__Array__StaticFields { +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__6__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__6__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__6__Array__VTable vtable; +}; + +struct IEnumerator_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__12__VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__12__StaticFields { +}; + +struct IEnumerator_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__12__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__12__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__12__VTable vtable; +}; + +struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__12__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__12__StaticFields { + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__6__Array *s_emptyArray; +}; + +struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__12__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__12__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__12__VTable vtable; +}; + +struct SafeDelegate_1_System_Action_1__6__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData get_Count; + VirtualInvokeData RemoveDelegateOrAllDelegatesFromAnObject; + VirtualInvokeData get_ExceptionHandler; + VirtualInvokeData set_ExceptionHandler; + VirtualInvokeData Clear; + VirtualInvokeData __unknown; +}; + +struct SafeDelegate_1_System_Action_1__6__StaticFields { +}; + +struct SafeDelegate_1_System_Action_1__6__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SafeDelegate_1_System_Action_1__6__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SafeDelegate_1_System_Action_1__6__VTable vtable; +}; + +struct Action_2_Object_Action_1_Rewired_InputMapper_CanceledEventData___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_2_Object_Action_1_Rewired_InputMapper_CanceledEventData___StaticFields { +}; + +struct Action_2_Object_Action_1_Rewired_InputMapper_CanceledEventData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_2_Object_Action_1_Rewired_InputMapper_CanceledEventData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_2_Object_Action_1_Rewired_InputMapper_CanceledEventData___VTable vtable; +}; + +struct SafeAction_1_Rewired_InputMapper_CanceledEventData___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData get_Count; + VirtualInvokeData RemoveDelegateOrAllDelegatesFromAnObject; + VirtualInvokeData get_ExceptionHandler; + VirtualInvokeData set_ExceptionHandler; + VirtualInvokeData Clear; + VirtualInvokeData Clone_1; +}; + +struct SafeAction_1_Rewired_InputMapper_CanceledEventData___StaticFields { + struct Action_2_Object_Action_1_Rewired_InputMapper_CanceledEventData_ *AMyXyiSHkqrVuCdLegTgpAOtGmHaA; +}; + +struct SafeAction_1_Rewired_InputMapper_CanceledEventData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SafeAction_1_Rewired_InputMapper_CanceledEventData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SafeAction_1_Rewired_InputMapper_CanceledEventData___VTable vtable; +}; + +struct __declspec(align(8)) SafeDelegate_1_System_Action_1__7__Fields { + struct Action_1_Exception_ *gFVCwFWPPxvKeIayZEdqnbhJsBWq; + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__13 *KJHnqvupeVyMhaFsyiBPMzGFGSkt; + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__13 *TKGbuBhEGwoDciZXhSFnhwJaUNhsd; +}; + +struct SafeDelegate_1_System_Action_1__7 { + struct SafeDelegate_1_System_Action_1__7__Class *klass; + MonitorData *monitor; + struct SafeDelegate_1_System_Action_1__7__Fields fields; +}; + +struct SafeAction_1_Rewired_InputMapper_ErrorEventData___Fields { + struct SafeDelegate_1_System_Action_1__7__Fields _; + struct InputMapper_ErrorEventData *UOOjTrREqaLVOagCRkKqzBFJZIFq; +}; + +struct SafeAction_1_Rewired_InputMapper_ErrorEventData_ { + struct SafeAction_1_Rewired_InputMapper_ErrorEventData___Class *klass; + MonitorData *monitor; + struct SafeAction_1_Rewired_InputMapper_ErrorEventData___Fields fields; +}; + +struct __declspec(align(8)) SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__7__Fields { + struct Action_1_Rewired_InputMapper_ErrorEventData_ *EbPkqdARHGIDwsIdtmoIkULLoFZX; + struct Object *azMuaeFsfaJNXcPJwiBJiandOfCPB; + struct Object *anJbPSjbuBVSvDnFXfRQckduFHXFb; + bool djPDhOPYBMSJXATGgIBAepcilZsT; +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__7 { + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__7__Class *klass; + MonitorData *monitor; + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__7__Fields fields; +}; + +struct __declspec(align(8)) List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__13__Fields { + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__7__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__13 { + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__13__Class *klass; + MonitorData *monitor; + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__13__Fields fields; +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__7__Array { + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__7__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__7 *vector[32]; +}; + +struct IEnumerator_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__13 { + struct IEnumerator_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__13__Class *klass; + MonitorData *monitor; +}; + +struct Action_2_Object_Action_1_Rewired_InputMapper_ErrorEventData___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_2_Object_Action_1_Rewired_InputMapper_ErrorEventData_ { + struct Action_2_Object_Action_1_Rewired_InputMapper_ErrorEventData___Class *klass; + MonitorData *monitor; + struct Action_2_Object_Action_1_Rewired_InputMapper_ErrorEventData___Fields fields; +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__7__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__7__StaticFields { +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__7__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__7__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__7__VTable vtable; +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__7__Array__VTable { +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__7__Array__StaticFields { +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__7__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__7__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__7__Array__VTable vtable; +}; + +struct IEnumerator_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__13__VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__13__StaticFields { +}; + +struct IEnumerator_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__13__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__13__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__13__VTable vtable; +}; + +struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__13__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__13__StaticFields { + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__7__Array *s_emptyArray; +}; + +struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__13__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__13__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__13__VTable vtable; +}; + +struct SafeDelegate_1_System_Action_1__7__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData get_Count; + VirtualInvokeData RemoveDelegateOrAllDelegatesFromAnObject; + VirtualInvokeData get_ExceptionHandler; + VirtualInvokeData set_ExceptionHandler; + VirtualInvokeData Clear; + VirtualInvokeData __unknown; +}; + +struct SafeDelegate_1_System_Action_1__7__StaticFields { +}; + +struct SafeDelegate_1_System_Action_1__7__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SafeDelegate_1_System_Action_1__7__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SafeDelegate_1_System_Action_1__7__VTable vtable; +}; + +struct Action_2_Object_Action_1_Rewired_InputMapper_ErrorEventData___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_2_Object_Action_1_Rewired_InputMapper_ErrorEventData___StaticFields { +}; + +struct Action_2_Object_Action_1_Rewired_InputMapper_ErrorEventData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_2_Object_Action_1_Rewired_InputMapper_ErrorEventData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_2_Object_Action_1_Rewired_InputMapper_ErrorEventData___VTable vtable; +}; + +struct SafeAction_1_Rewired_InputMapper_ErrorEventData___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData get_Count; + VirtualInvokeData RemoveDelegateOrAllDelegatesFromAnObject; + VirtualInvokeData get_ExceptionHandler; + VirtualInvokeData set_ExceptionHandler; + VirtualInvokeData Clear; + VirtualInvokeData Clone_1; +}; + +struct SafeAction_1_Rewired_InputMapper_ErrorEventData___StaticFields { + struct Action_2_Object_Action_1_Rewired_InputMapper_ErrorEventData_ *AMyXyiSHkqrVuCdLegTgpAOtGmHaA; +}; + +struct SafeAction_1_Rewired_InputMapper_ErrorEventData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SafeAction_1_Rewired_InputMapper_ErrorEventData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SafeAction_1_Rewired_InputMapper_ErrorEventData___VTable vtable; +}; + +struct __declspec(align(8)) SafeDelegate_1_System_Action_1__8__Fields { + struct Action_1_Exception_ *gFVCwFWPPxvKeIayZEdqnbhJsBWq; + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__14 *KJHnqvupeVyMhaFsyiBPMzGFGSkt; + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__14 *TKGbuBhEGwoDciZXhSFnhwJaUNhsd; +}; + +struct SafeDelegate_1_System_Action_1__8 { + struct SafeDelegate_1_System_Action_1__8__Class *klass; + MonitorData *monitor; + struct SafeDelegate_1_System_Action_1__8__Fields fields; +}; + +struct SafeAction_1_Rewired_InputMapper_InputMappedEventData___Fields { + struct SafeDelegate_1_System_Action_1__8__Fields _; + struct InputMapper_InputMappedEventData *UOOjTrREqaLVOagCRkKqzBFJZIFq; +}; + +struct SafeAction_1_Rewired_InputMapper_InputMappedEventData_ { + struct SafeAction_1_Rewired_InputMapper_InputMappedEventData___Class *klass; + MonitorData *monitor; + struct SafeAction_1_Rewired_InputMapper_InputMappedEventData___Fields fields; +}; + +struct __declspec(align(8)) SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__8__Fields { + struct Action_1_Rewired_InputMapper_InputMappedEventData_ *EbPkqdARHGIDwsIdtmoIkULLoFZX; + struct Object *azMuaeFsfaJNXcPJwiBJiandOfCPB; + struct Object *anJbPSjbuBVSvDnFXfRQckduFHXFb; + bool djPDhOPYBMSJXATGgIBAepcilZsT; +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__8 { + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__8__Class *klass; + MonitorData *monitor; + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__8__Fields fields; +}; + +struct __declspec(align(8)) List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__14__Fields { + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__8__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__14 { + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__14__Class *klass; + MonitorData *monitor; + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__14__Fields fields; +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__8__Array { + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__8__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__8 *vector[32]; +}; + +struct IEnumerator_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__14 { + struct IEnumerator_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__14__Class *klass; + MonitorData *monitor; +}; + +struct Action_2_Object_Action_1_Rewired_InputMapper_InputMappedEventData___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_2_Object_Action_1_Rewired_InputMapper_InputMappedEventData_ { + struct Action_2_Object_Action_1_Rewired_InputMapper_InputMappedEventData___Class *klass; + MonitorData *monitor; + struct Action_2_Object_Action_1_Rewired_InputMapper_InputMappedEventData___Fields fields; +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__8__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__8__StaticFields { +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__8__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__8__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__8__VTable vtable; +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__8__Array__VTable { +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__8__Array__StaticFields { +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__8__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__8__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__8__Array__VTable vtable; +}; + +struct IEnumerator_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__14__VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__14__StaticFields { +}; + +struct IEnumerator_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__14__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__14__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__14__VTable vtable; +}; + +struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__14__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__14__StaticFields { + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__8__Array *s_emptyArray; +}; + +struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__14__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__14__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__14__VTable vtable; +}; + +struct SafeDelegate_1_System_Action_1__8__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData get_Count; + VirtualInvokeData RemoveDelegateOrAllDelegatesFromAnObject; + VirtualInvokeData get_ExceptionHandler; + VirtualInvokeData set_ExceptionHandler; + VirtualInvokeData Clear; + VirtualInvokeData __unknown; +}; + +struct SafeDelegate_1_System_Action_1__8__StaticFields { +}; + +struct SafeDelegate_1_System_Action_1__8__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SafeDelegate_1_System_Action_1__8__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SafeDelegate_1_System_Action_1__8__VTable vtable; +}; + +struct Action_2_Object_Action_1_Rewired_InputMapper_InputMappedEventData___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_2_Object_Action_1_Rewired_InputMapper_InputMappedEventData___StaticFields { +}; + +struct Action_2_Object_Action_1_Rewired_InputMapper_InputMappedEventData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_2_Object_Action_1_Rewired_InputMapper_InputMappedEventData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_2_Object_Action_1_Rewired_InputMapper_InputMappedEventData___VTable vtable; +}; + +struct SafeAction_1_Rewired_InputMapper_InputMappedEventData___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData get_Count; + VirtualInvokeData RemoveDelegateOrAllDelegatesFromAnObject; + VirtualInvokeData get_ExceptionHandler; + VirtualInvokeData set_ExceptionHandler; + VirtualInvokeData Clear; + VirtualInvokeData Clone_1; +}; + +struct SafeAction_1_Rewired_InputMapper_InputMappedEventData___StaticFields { + struct Action_2_Object_Action_1_Rewired_InputMapper_InputMappedEventData_ *AMyXyiSHkqrVuCdLegTgpAOtGmHaA; +}; + +struct SafeAction_1_Rewired_InputMapper_InputMappedEventData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SafeAction_1_Rewired_InputMapper_InputMappedEventData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SafeAction_1_Rewired_InputMapper_InputMappedEventData___VTable vtable; +}; + +struct MouseOtherAxisMode___VTable { +}; + +struct MouseOtherAxisMode___StaticFields { +}; + +struct MouseOtherAxisMode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MouseOtherAxisMode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MouseOtherAxisMode___VTable vtable; +}; + +struct MouseXYAxisMode___VTable { +}; + +struct MouseXYAxisMode___StaticFields { +}; + +struct MouseXYAxisMode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MouseXYAxisMode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MouseXYAxisMode___VTable vtable; +}; + +struct MouseXYAxisDeltaCalc___VTable { +}; + +struct MouseXYAxisDeltaCalc___StaticFields { +}; + +struct MouseXYAxisDeltaCalc___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MouseXYAxisDeltaCalc___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MouseXYAxisDeltaCalc___VTable vtable; +}; + +struct Joystick___VTable { +}; + +struct Joystick___StaticFields { +}; + +struct Joystick___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Joystick___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Joystick___VTable vtable; +}; + +struct Gamepad___VTable { +}; + +struct Gamepad___StaticFields { +}; + +struct Gamepad___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Gamepad___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Gamepad___VTable vtable; +}; + +struct IInputStateCallbackReceiver { + struct IInputStateCallbackReceiver__Class *klass; + MonitorData *monitor; +}; + +struct IInputStateCallbackReceiver__VTable { + VirtualInvokeData OnNextUpdate; + VirtualInvokeData OnStateEvent; + VirtualInvokeData GetStateOffsetForEvent; +}; + +struct IInputStateCallbackReceiver__StaticFields { +}; + +struct IInputStateCallbackReceiver__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IInputStateCallbackReceiver__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IInputStateCallbackReceiver__VTable vtable; +}; + +struct InputSettings__Array { + struct InputSettings__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct InputSettings *vector[32]; +}; + +struct InputSettings__Array__VTable { +}; + +struct InputSettings__Array__StaticFields { +}; + +struct InputSettings__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputSettings__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputSettings__Array__VTable vtable; +}; + +struct IEnumerable_1_UnityEngine_InputSystem_InputSettings_ { + struct IEnumerable_1_UnityEngine_InputSystem_InputSettings___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_UnityEngine_InputSystem_InputSettings___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_UnityEngine_InputSystem_InputSettings___StaticFields { +}; + +struct IEnumerable_1_UnityEngine_InputSystem_InputSettings___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_UnityEngine_InputSystem_InputSettings___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_UnityEngine_InputSystem_InputSettings___VTable vtable; +}; + +struct CommonUsages { + struct CommonUsages__Class *klass; + MonitorData *monitor; +}; + +struct CommonUsages__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct CommonUsages__StaticFields { + struct InternedString Primary2DMotion; + struct InternedString Secondary2DMotion; + struct InternedString PrimaryAction; + struct InternedString SecondaryAction; + struct InternedString PrimaryTrigger; + struct InternedString SecondaryTrigger; + struct InternedString Modifier; + struct InternedString Position; + struct InternedString Orientation; + struct InternedString Hatswitch; + struct InternedString Back; + struct InternedString Forward; + struct InternedString Menu; + struct InternedString Submit; + struct InternedString Cancel; + struct InternedString Horizontal; + struct InternedString Vertical; + struct InternedString Twist; + struct InternedString Pressure; + struct InternedString ScrollHorizontal; + struct InternedString ScrollVertical; + struct InternedString Point; + struct InternedString LowFreqMotor; + struct InternedString HighFreqMotor; + struct InternedString LeftHand; + struct InternedString RightHand; + struct InternedString BatteryStrength; +}; + +struct CommonUsages__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CommonUsages__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CommonUsages__VTable vtable; +}; + +struct IHaptics { + struct IHaptics__Class *klass; + MonitorData *monitor; +}; + +struct IHaptics__VTable { + VirtualInvokeData PauseHaptics; + VirtualInvokeData ResumeHaptics; + VirtualInvokeData ResetHaptics; +}; + +struct IHaptics__StaticFields { +}; + +struct IHaptics__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IHaptics__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IHaptics__VTable vtable; +}; + +struct InputBindingComposite___VTable { +}; + +struct InputBindingComposite___StaticFields { +}; + +struct InputBindingComposite___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputBindingComposite___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputBindingComposite___VTable vtable; +}; + +struct InputProcessor___VTable { +}; + +struct InputProcessor___StaticFields { +}; + +struct InputProcessor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputProcessor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputProcessor___VTable vtable; +}; + +struct IInputInteraction___VTable { +}; + +struct IInputInteraction___StaticFields { +}; + +struct IInputInteraction___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IInputInteraction___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IInputInteraction___VTable vtable; +}; + +struct ProtocolTokenUtils { + struct ProtocolTokenUtils__Class *klass; + MonitorData *monitor; +}; + +struct ProtocolTokenUtils__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ProtocolTokenUtils__StaticFields { + struct Byte__Array *tempBytes; + struct UdpPacket *tempPacket; +}; + +struct ProtocolTokenUtils__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ProtocolTokenUtils__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ProtocolTokenUtils__VTable vtable; +}; + +struct __declspec(align(8)) List_1_Rewired_ControllerMapSaveData___Fields { + struct ControllerMapSaveData__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Rewired_ControllerMapSaveData_ { + struct List_1_Rewired_ControllerMapSaveData___Class *klass; + MonitorData *monitor; + struct List_1_Rewired_ControllerMapSaveData___Fields fields; +}; + +struct List_1_Rewired_ControllerMapSaveData___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_Rewired_ControllerMapSaveData___StaticFields { + struct ControllerMapSaveData__Array *s_emptyArray; +}; + +struct List_1_Rewired_ControllerMapSaveData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Rewired_ControllerMapSaveData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Rewired_ControllerMapSaveData___VTable vtable; +}; + +struct ICollection_1_Rewired_ControllerMap_ { + struct ICollection_1_Rewired_ControllerMap___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_Rewired_ControllerMap___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_Rewired_ControllerMap___StaticFields { +}; + +struct ICollection_1_Rewired_ControllerMap___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_Rewired_ControllerMap___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_Rewired_ControllerMap___VTable vtable; +}; + +struct ControllerMapSaveData___VTable { +}; + +struct ControllerMapSaveData___StaticFields { +}; + +struct ControllerMapSaveData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ControllerMapSaveData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ControllerMapSaveData___VTable vtable; +}; + +struct __declspec(align(8)) Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_Mouse_MouseMap___Fields { + struct Mouse *yrSDfNzGPLUBuAkUrbEMVpfZXAPl; + struct FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_Rewired_MouseMap_ *aAowPEkJbfCViZyNqUZPfunqZbmj; + double RWrsGMkNXPpTwapDpWSPGxirSYGc; +}; + +struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_Mouse_MouseMap_ { + struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_Mouse_MouseMap___Class *klass; + MonitorData *monitor; + struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_Mouse_MouseMap___Fields fields; +}; + +struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_Mouse_MouseMap___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData TuUrBjczcUFbRnoLPlelrsfZbaDV; + VirtualInvokeData hHwOMECApTXSywdOdrXNxuPRvmXR; + VirtualInvokeData rjXyPZTfUGnAoKdRwPAbqfZGdZMt; +}; + +struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_Mouse_MouseMap___StaticFields { +}; + +struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_Mouse_MouseMap___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_Mouse_MouseMap___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_Mouse_MouseMap___VTable vtable; +}; + +struct __declspec(align(8)) Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_Keyboard_KeyboardMap___Fields { + struct Keyboard *yrSDfNzGPLUBuAkUrbEMVpfZXAPl; + struct FmtnJvZQYrRIzvFApEatdMxuaWqeb_1_Rewired_KeyboardMap_ *aAowPEkJbfCViZyNqUZPfunqZbmj; + double RWrsGMkNXPpTwapDpWSPGxirSYGc; +}; + +struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_Keyboard_KeyboardMap_ { + struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_Keyboard_KeyboardMap___Class *klass; + MonitorData *monitor; + struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_Keyboard_KeyboardMap___Fields fields; +}; + +struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_Keyboard_KeyboardMap___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData TuUrBjczcUFbRnoLPlelrsfZbaDV; + VirtualInvokeData hHwOMECApTXSywdOdrXNxuPRvmXR; + VirtualInvokeData rjXyPZTfUGnAoKdRwPAbqfZGdZMt; +}; + +struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_Keyboard_KeyboardMap___StaticFields { +}; + +struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_Keyboard_KeyboardMap___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_Keyboard_KeyboardMap___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_Keyboard_KeyboardMap___VTable vtable; +}; + +struct __declspec(align(8)) Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_Keyboard_KeyboardMap___Fields { + struct List_1_Rewired_Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_iFdhrNpmwqfCBhYGNyxLdlHCddIiA__3 *IvzDiIkngHPgCIuDHtHzkYZNovWA; + struct List_1_Rewired_Keyboard_ *xIJBSKycBfMpbbyNexlJddkTqjAd; + struct ReadOnlyCollection_1_Rewired_Keyboard_ *IeUwnBtSGjihwSebuSiGhQCXwBzx; + #if defined(_CPLUSPLUS_) + ControllerType__Enum yRKMcUtgwPrzFQljqDPMawjnSmXT; + #else + int32_t yRKMcUtgwPrzFQljqDPMawjnSmXT; + #endif +}; + +struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_Keyboard_KeyboardMap_ { + struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_Keyboard_KeyboardMap___Class *klass; + MonitorData *monitor; + struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_Keyboard_KeyboardMap___Fields fields; +}; + +struct __declspec(align(8)) List_1_Rewired_Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_iFdhrNpmwqfCBhYGNyxLdlHCddIiA__3__Fields { + struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_Keyboard_KeyboardMap___Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Rewired_Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_iFdhrNpmwqfCBhYGNyxLdlHCddIiA__3 { + struct List_1_Rewired_Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_iFdhrNpmwqfCBhYGNyxLdlHCddIiA__3__Class *klass; + MonitorData *monitor; + struct List_1_Rewired_Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_iFdhrNpmwqfCBhYGNyxLdlHCddIiA__3__Fields fields; +}; + +struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_Keyboard_KeyboardMap___Array { + struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_Keyboard_KeyboardMap___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_Keyboard_KeyboardMap_ *vector[32]; +}; + +struct IEnumerator_1_Rewired_Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_iFdhrNpmwqfCBhYGNyxLdlHCddIiA__3 { + struct IEnumerator_1_Rewired_Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_iFdhrNpmwqfCBhYGNyxLdlHCddIiA__3__Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) List_1_Rewired_Keyboard___Fields { + struct Keyboard__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Rewired_Keyboard_ { + struct List_1_Rewired_Keyboard___Class *klass; + MonitorData *monitor; + struct List_1_Rewired_Keyboard___Fields fields; +}; + +struct Keyboard__Array { + struct Keyboard__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Keyboard *vector[32]; +}; + +struct IEnumerator_1_Rewired_Keyboard_ { + struct IEnumerator_1_Rewired_Keyboard___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) ReadOnlyCollection_1_Rewired_Keyboard___Fields { + struct IList_1_Rewired_Keyboard_ *list; + struct Object *_syncRoot; +}; + +struct ReadOnlyCollection_1_Rewired_Keyboard_ { + struct ReadOnlyCollection_1_Rewired_Keyboard___Class *klass; + MonitorData *monitor; + struct ReadOnlyCollection_1_Rewired_Keyboard___Fields fields; +}; + +struct IList_1_Rewired_Keyboard_ { + struct IList_1_Rewired_Keyboard___Class *klass; + MonitorData *monitor; +}; + +struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_Keyboard_KeyboardMap___Array__VTable { +}; + +struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_Keyboard_KeyboardMap___Array__StaticFields { +}; + +struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_Keyboard_KeyboardMap___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_Keyboard_KeyboardMap___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_Keyboard_KeyboardMap___Array__VTable vtable; +}; + +struct IEnumerator_1_Rewired_Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_iFdhrNpmwqfCBhYGNyxLdlHCddIiA__3__VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_Rewired_Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_iFdhrNpmwqfCBhYGNyxLdlHCddIiA__3__StaticFields { +}; + +struct IEnumerator_1_Rewired_Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_iFdhrNpmwqfCBhYGNyxLdlHCddIiA__3__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_Rewired_Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_iFdhrNpmwqfCBhYGNyxLdlHCddIiA__3__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_Rewired_Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_iFdhrNpmwqfCBhYGNyxLdlHCddIiA__3__VTable vtable; +}; + +struct List_1_Rewired_Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_iFdhrNpmwqfCBhYGNyxLdlHCddIiA__3__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_Rewired_Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_iFdhrNpmwqfCBhYGNyxLdlHCddIiA__3__StaticFields { + struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_Keyboard_KeyboardMap___Array *s_emptyArray; +}; + +struct List_1_Rewired_Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_iFdhrNpmwqfCBhYGNyxLdlHCddIiA__3__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Rewired_Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_iFdhrNpmwqfCBhYGNyxLdlHCddIiA__3__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Rewired_Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_iFdhrNpmwqfCBhYGNyxLdlHCddIiA__3__VTable vtable; +}; + +struct Keyboard__Array__VTable { +}; + +struct Keyboard__Array__StaticFields { +}; + +struct Keyboard__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Keyboard__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Keyboard__Array__VTable vtable; +}; + +struct IEnumerator_1_Rewired_Keyboard___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_Rewired_Keyboard___StaticFields { +}; + +struct IEnumerator_1_Rewired_Keyboard___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_Rewired_Keyboard___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_Rewired_Keyboard___VTable vtable; +}; + +struct List_1_Rewired_Keyboard___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_Rewired_Keyboard___StaticFields { + struct Keyboard__Array *s_emptyArray; +}; + +struct List_1_Rewired_Keyboard___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Rewired_Keyboard___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Rewired_Keyboard___VTable vtable; +}; + +struct IList_1_Rewired_Keyboard___VTable { + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; +}; + +struct IList_1_Rewired_Keyboard___StaticFields { +}; + +struct IList_1_Rewired_Keyboard___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IList_1_Rewired_Keyboard___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IList_1_Rewired_Keyboard___VTable vtable; +}; + +struct ReadOnlyCollection_1_Rewired_Keyboard___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_Generic_IList_T__get_Item; + VirtualInvokeData System_Collections_Generic_IList_T__set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData System_Collections_Generic_IList_T__Insert; + VirtualInvokeData System_Collections_Generic_IList_T__RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_T__Add; + VirtualInvokeData System_Collections_Generic_ICollection_T__Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_T__Remove; + VirtualInvokeData GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData System_Collections_IList_Clear; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData System_Collections_IList_RemoveAt; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item; + VirtualInvokeData get_Count_2; +}; + +struct ReadOnlyCollection_1_Rewired_Keyboard___StaticFields { +}; + +struct ReadOnlyCollection_1_Rewired_Keyboard___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ReadOnlyCollection_1_Rewired_Keyboard___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ReadOnlyCollection_1_Rewired_Keyboard___VTable vtable; +}; + +struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_Keyboard_KeyboardMap___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData nFIgjMRMLqzqBLbaUrIlKSkoJRdB; + VirtualInvokeData yUYzgSaMoEEHcqmlkUhGfzyyGwhU; + VirtualInvokeData VJsfGkCeXFnNPjNkvMaQfRowrhXo; + VirtualInvokeData fahoJdCSzbGhQMSADzxnfbTpuoil; + VirtualInvokeData VfpgCWArzMRwmtPRIAXRmxwrgJeEA; + VirtualInvokeData SzMdqRXgLTGYARlxzBqCzXXpeSru; + VirtualInvokeData QLQzpQdutNSATlgnoHKVXsCTJLNM; + VirtualInvokeData jGfZqYbBvBEoNirjtGMKrCXciSHeA; + VirtualInvokeData DsQAGrHtBEqymcTKzlewdnJDyerlB; + VirtualInvokeData UGmkbJggBBgCAbxPMNdJAGcczVuQ; + VirtualInvokeData HscnOvIydTMDlDFgYQSmBxqikiEK; + VirtualInvokeData HVujqEvIFcMKdvpImleAuaPcoEPv; + VirtualInvokeData FbVjLtHLJdWBRcHvdYaWJslulpRCb; + VirtualInvokeData sjgQXMMRIHmhSmDrVpgFKxoFoOIy; + VirtualInvokeData xUpDEdrrQknqZqwEjvQvxCMSMwJc; + VirtualInvokeData xUpDEdrrQknqZqwEjvQvxCMSMwJc_1; + VirtualInvokeData xnbGkCrBjHjNBdbisXRGgvdLUkulA; +}; + +struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_Keyboard_KeyboardMap___StaticFields { +}; + +struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_Keyboard_KeyboardMap___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_Keyboard_KeyboardMap___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_Keyboard_KeyboardMap___VTable vtable; +}; + +struct __declspec(align(8)) Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_Mouse_MouseMap___Fields { + struct List_1_Rewired_Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_iFdhrNpmwqfCBhYGNyxLdlHCddIiA__4 *IvzDiIkngHPgCIuDHtHzkYZNovWA; + struct List_1_Rewired_Mouse_ *xIJBSKycBfMpbbyNexlJddkTqjAd; + struct ReadOnlyCollection_1_Rewired_Mouse_ *IeUwnBtSGjihwSebuSiGhQCXwBzx; + #if defined(_CPLUSPLUS_) + ControllerType__Enum yRKMcUtgwPrzFQljqDPMawjnSmXT; + #else + int32_t yRKMcUtgwPrzFQljqDPMawjnSmXT; + #endif +}; + +struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_Mouse_MouseMap_ { + struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_Mouse_MouseMap___Class *klass; + MonitorData *monitor; + struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_Mouse_MouseMap___Fields fields; +}; + +struct __declspec(align(8)) List_1_Rewired_Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_iFdhrNpmwqfCBhYGNyxLdlHCddIiA__4__Fields { + struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_Mouse_MouseMap___Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Rewired_Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_iFdhrNpmwqfCBhYGNyxLdlHCddIiA__4 { + struct List_1_Rewired_Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_iFdhrNpmwqfCBhYGNyxLdlHCddIiA__4__Class *klass; + MonitorData *monitor; + struct List_1_Rewired_Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_iFdhrNpmwqfCBhYGNyxLdlHCddIiA__4__Fields fields; +}; + +struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_Mouse_MouseMap___Array { + struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_Mouse_MouseMap___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_Mouse_MouseMap_ *vector[32]; +}; + +struct IEnumerator_1_Rewired_Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_iFdhrNpmwqfCBhYGNyxLdlHCddIiA__4 { + struct IEnumerator_1_Rewired_Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_iFdhrNpmwqfCBhYGNyxLdlHCddIiA__4__Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) List_1_Rewired_Mouse___Fields { + struct Mouse__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Rewired_Mouse_ { + struct List_1_Rewired_Mouse___Class *klass; + MonitorData *monitor; + struct List_1_Rewired_Mouse___Fields fields; +}; + +struct Mouse__Array { + struct Mouse__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Mouse *vector[32]; +}; + +struct IEnumerator_1_Rewired_Mouse_ { + struct IEnumerator_1_Rewired_Mouse___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) ReadOnlyCollection_1_Rewired_Mouse___Fields { + struct IList_1_Rewired_Mouse_ *list; + struct Object *_syncRoot; +}; + +struct ReadOnlyCollection_1_Rewired_Mouse_ { + struct ReadOnlyCollection_1_Rewired_Mouse___Class *klass; + MonitorData *monitor; + struct ReadOnlyCollection_1_Rewired_Mouse___Fields fields; +}; + +struct IList_1_Rewired_Mouse_ { + struct IList_1_Rewired_Mouse___Class *klass; + MonitorData *monitor; +}; + +struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_Mouse_MouseMap___Array__VTable { +}; + +struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_Mouse_MouseMap___Array__StaticFields { +}; + +struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_Mouse_MouseMap___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_Mouse_MouseMap___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_Mouse_MouseMap___Array__VTable vtable; +}; + +struct IEnumerator_1_Rewired_Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_iFdhrNpmwqfCBhYGNyxLdlHCddIiA__4__VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_Rewired_Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_iFdhrNpmwqfCBhYGNyxLdlHCddIiA__4__StaticFields { +}; + +struct IEnumerator_1_Rewired_Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_iFdhrNpmwqfCBhYGNyxLdlHCddIiA__4__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_Rewired_Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_iFdhrNpmwqfCBhYGNyxLdlHCddIiA__4__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_Rewired_Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_iFdhrNpmwqfCBhYGNyxLdlHCddIiA__4__VTable vtable; +}; + +struct List_1_Rewired_Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_iFdhrNpmwqfCBhYGNyxLdlHCddIiA__4__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_Rewired_Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_iFdhrNpmwqfCBhYGNyxLdlHCddIiA__4__StaticFields { + struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_u0001_u0002_iFdhrNpmwqfCBhYGNyxLdlHCddIiA_Mouse_MouseMap___Array *s_emptyArray; +}; + +struct List_1_Rewired_Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_iFdhrNpmwqfCBhYGNyxLdlHCddIiA__4__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Rewired_Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_iFdhrNpmwqfCBhYGNyxLdlHCddIiA__4__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Rewired_Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_iFdhrNpmwqfCBhYGNyxLdlHCddIiA__4__VTable vtable; +}; + +struct Mouse__Array__VTable { +}; + +struct Mouse__Array__StaticFields { +}; + +struct Mouse__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Mouse__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Mouse__Array__VTable vtable; +}; + +struct IEnumerator_1_Rewired_Mouse___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_Rewired_Mouse___StaticFields { +}; + +struct IEnumerator_1_Rewired_Mouse___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_Rewired_Mouse___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_Rewired_Mouse___VTable vtable; +}; + +struct List_1_Rewired_Mouse___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_Rewired_Mouse___StaticFields { + struct Mouse__Array *s_emptyArray; +}; + +struct List_1_Rewired_Mouse___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Rewired_Mouse___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Rewired_Mouse___VTable vtable; +}; + +struct IList_1_Rewired_Mouse___VTable { + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; +}; + +struct IList_1_Rewired_Mouse___StaticFields { +}; + +struct IList_1_Rewired_Mouse___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IList_1_Rewired_Mouse___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IList_1_Rewired_Mouse___VTable vtable; +}; + +struct ReadOnlyCollection_1_Rewired_Mouse___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_Generic_IList_T__get_Item; + VirtualInvokeData System_Collections_Generic_IList_T__set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData System_Collections_Generic_IList_T__Insert; + VirtualInvokeData System_Collections_Generic_IList_T__RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_T__Add; + VirtualInvokeData System_Collections_Generic_ICollection_T__Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_T__Remove; + VirtualInvokeData GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData System_Collections_IList_Clear; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData System_Collections_IList_RemoveAt; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item; + VirtualInvokeData get_Count_2; +}; + +struct ReadOnlyCollection_1_Rewired_Mouse___StaticFields { +}; + +struct ReadOnlyCollection_1_Rewired_Mouse___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ReadOnlyCollection_1_Rewired_Mouse___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ReadOnlyCollection_1_Rewired_Mouse___VTable vtable; +}; + +struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_Mouse_MouseMap___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData nFIgjMRMLqzqBLbaUrIlKSkoJRdB; + VirtualInvokeData yUYzgSaMoEEHcqmlkUhGfzyyGwhU; + VirtualInvokeData VJsfGkCeXFnNPjNkvMaQfRowrhXo; + VirtualInvokeData fahoJdCSzbGhQMSADzxnfbTpuoil; + VirtualInvokeData VfpgCWArzMRwmtPRIAXRmxwrgJeEA; + VirtualInvokeData SzMdqRXgLTGYARlxzBqCzXXpeSru; + VirtualInvokeData QLQzpQdutNSATlgnoHKVXsCTJLNM; + VirtualInvokeData jGfZqYbBvBEoNirjtGMKrCXciSHeA; + VirtualInvokeData DsQAGrHtBEqymcTKzlewdnJDyerlB; + VirtualInvokeData UGmkbJggBBgCAbxPMNdJAGcczVuQ; + VirtualInvokeData HscnOvIydTMDlDFgYQSmBxqikiEK; + VirtualInvokeData HVujqEvIFcMKdvpImleAuaPcoEPv; + VirtualInvokeData FbVjLtHLJdWBRcHvdYaWJslulpRCb; + VirtualInvokeData sjgQXMMRIHmhSmDrVpgFKxoFoOIy; + VirtualInvokeData xUpDEdrrQknqZqwEjvQvxCMSMwJc; + VirtualInvokeData xUpDEdrrQknqZqwEjvQvxCMSMwJc_1; + VirtualInvokeData xnbGkCrBjHjNBdbisXRGgvdLUkulA; +}; + +struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_Mouse_MouseMap___StaticFields { +}; + +struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_Mouse_MouseMap___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_Mouse_MouseMap___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Player_ControllerHelper_bazezvkjJdSKLDVxCLdOJltIcVs_2_Mouse_MouseMap___VTable vtable; +}; + +struct fSvlSYodGkhgrFdOGmMLgQycwnMI { + struct fSvlSYodGkhgrFdOGmMLgQycwnMI__Class *klass; + MonitorData *monitor; +}; + +struct fSvlSYodGkhgrFdOGmMLgQycwnMI__VTable { + VirtualInvokeData XyIhnPGjOlNdVhaNdSaEoIdROvAj; + VirtualInvokeData ISAmKkCYjnGxuzPRJLqqTIPjiFis; +}; + +struct fSvlSYodGkhgrFdOGmMLgQycwnMI__StaticFields { +}; + +struct fSvlSYodGkhgrFdOGmMLgQycwnMI__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct fSvlSYodGkhgrFdOGmMLgQycwnMI__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct fSvlSYodGkhgrFdOGmMLgQycwnMI__VTable vtable; +}; + +struct __declspec(align(8)) List_1_jlOcQLgjodoHrMnRTMaZoBnVTQkmA___Fields { + struct jlOcQLgjodoHrMnRTMaZoBnVTQkmA__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_jlOcQLgjodoHrMnRTMaZoBnVTQkmA_ { + struct List_1_jlOcQLgjodoHrMnRTMaZoBnVTQkmA___Class *klass; + MonitorData *monitor; + struct List_1_jlOcQLgjodoHrMnRTMaZoBnVTQkmA___Fields fields; +}; + +struct List_1_jlOcQLgjodoHrMnRTMaZoBnVTQkmA___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_jlOcQLgjodoHrMnRTMaZoBnVTQkmA___StaticFields { + struct jlOcQLgjodoHrMnRTMaZoBnVTQkmA__Array *s_emptyArray; +}; + +struct List_1_jlOcQLgjodoHrMnRTMaZoBnVTQkmA___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_jlOcQLgjodoHrMnRTMaZoBnVTQkmA___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_jlOcQLgjodoHrMnRTMaZoBnVTQkmA___VTable vtable; +}; + +struct __declspec(align(8)) SafeDelegate_1_System_Action_1__9__Fields { + struct Action_1_Exception_ *gFVCwFWPPxvKeIayZEdqnbhJsBWq; + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__15 *KJHnqvupeVyMhaFsyiBPMzGFGSkt; + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__15 *TKGbuBhEGwoDciZXhSFnhwJaUNhsd; +}; + +struct SafeDelegate_1_System_Action_1__9 { + struct SafeDelegate_1_System_Action_1__9__Class *klass; + MonitorData *monitor; + struct SafeDelegate_1_System_Action_1__9__Fields fields; +}; + +struct SafeAction_1_Rewired_ControllerStatusChangedEventArgs___Fields { + struct SafeDelegate_1_System_Action_1__9__Fields _; + struct ControllerStatusChangedEventArgs *UOOjTrREqaLVOagCRkKqzBFJZIFq; +}; + +struct SafeAction_1_Rewired_ControllerStatusChangedEventArgs_ { + struct SafeAction_1_Rewired_ControllerStatusChangedEventArgs___Class *klass; + MonitorData *monitor; + struct SafeAction_1_Rewired_ControllerStatusChangedEventArgs___Fields fields; +}; + +struct __declspec(align(8)) SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__9__Fields { + struct Action_1_Rewired_ControllerStatusChangedEventArgs_ *EbPkqdARHGIDwsIdtmoIkULLoFZX; + struct Object *azMuaeFsfaJNXcPJwiBJiandOfCPB; + struct Object *anJbPSjbuBVSvDnFXfRQckduFHXFb; + bool djPDhOPYBMSJXATGgIBAepcilZsT; +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__9 { + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__9__Class *klass; + MonitorData *monitor; + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__9__Fields fields; +}; + +struct __declspec(align(8)) List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__15__Fields { + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__9__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__15 { + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__15__Class *klass; + MonitorData *monitor; + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__15__Fields fields; +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__9__Array { + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__9__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__9 *vector[32]; +}; + +struct IEnumerator_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__15 { + struct IEnumerator_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__15__Class *klass; + MonitorData *monitor; +}; + +struct Action_2_Object_Action_1_Rewired_ControllerStatusChangedEventArgs___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_2_Object_Action_1_Rewired_ControllerStatusChangedEventArgs_ { + struct Action_2_Object_Action_1_Rewired_ControllerStatusChangedEventArgs___Class *klass; + MonitorData *monitor; + struct Action_2_Object_Action_1_Rewired_ControllerStatusChangedEventArgs___Fields fields; +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__9__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__9__StaticFields { +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__9__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__9__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__9__VTable vtable; +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__9__Array__VTable { +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__9__Array__StaticFields { +}; + +struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__9__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__9__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__9__Array__VTable vtable; +}; + +struct IEnumerator_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__15__VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__15__StaticFields { +}; + +struct IEnumerator_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__15__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__15__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__15__VTable vtable; +}; + +struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__15__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__15__StaticFields { + struct SafeDelegate_1_T_lDUIkOOzTLzJVCkEensqaDImdJwo_System_Action_1__9__Array *s_emptyArray; +}; + +struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__15__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__15__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Rewired_Utils_SafeDelegate_1_lDUIkOOzTLzJVCkEensqaDImdJwo__15__VTable vtable; +}; + +struct SafeDelegate_1_System_Action_1__9__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData get_Count; + VirtualInvokeData RemoveDelegateOrAllDelegatesFromAnObject; + VirtualInvokeData get_ExceptionHandler; + VirtualInvokeData set_ExceptionHandler; + VirtualInvokeData Clear; + VirtualInvokeData __unknown; +}; + +struct SafeDelegate_1_System_Action_1__9__StaticFields { +}; + +struct SafeDelegate_1_System_Action_1__9__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SafeDelegate_1_System_Action_1__9__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SafeDelegate_1_System_Action_1__9__VTable vtable; +}; + +struct Action_2_Object_Action_1_Rewired_ControllerStatusChangedEventArgs___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_2_Object_Action_1_Rewired_ControllerStatusChangedEventArgs___StaticFields { +}; + +struct Action_2_Object_Action_1_Rewired_ControllerStatusChangedEventArgs___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_2_Object_Action_1_Rewired_ControllerStatusChangedEventArgs___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_2_Object_Action_1_Rewired_ControllerStatusChangedEventArgs___VTable vtable; +}; + +struct SafeAction_1_Rewired_ControllerStatusChangedEventArgs___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData get_Count; + VirtualInvokeData RemoveDelegateOrAllDelegatesFromAnObject; + VirtualInvokeData get_ExceptionHandler; + VirtualInvokeData set_ExceptionHandler; + VirtualInvokeData Clear; + VirtualInvokeData Clone_1; +}; + +struct SafeAction_1_Rewired_ControllerStatusChangedEventArgs___StaticFields { + struct Action_2_Object_Action_1_Rewired_ControllerStatusChangedEventArgs_ *AMyXyiSHkqrVuCdLegTgpAOtGmHaA; +}; + +struct SafeAction_1_Rewired_ControllerStatusChangedEventArgs___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SafeAction_1_Rewired_ControllerStatusChangedEventArgs___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SafeAction_1_Rewired_ControllerStatusChangedEventArgs___VTable vtable; +}; + +struct IExternalInputManager { + struct IExternalInputManager__Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) List_1_Rewired_Utils_Interfaces_IExternalInputManager___Fields { + struct IExternalInputManager__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Rewired_Utils_Interfaces_IExternalInputManager_ { + struct List_1_Rewired_Utils_Interfaces_IExternalInputManager___Class *klass; + MonitorData *monitor; + struct List_1_Rewired_Utils_Interfaces_IExternalInputManager___Fields fields; +}; + +struct IExternalInputManager__Array { + struct IExternalInputManager__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct IExternalInputManager *vector[32]; +}; + +struct IEnumerator_1_Rewired_Utils_Interfaces_IExternalInputManager_ { + struct IEnumerator_1_Rewired_Utils_Interfaces_IExternalInputManager___Class *klass; + MonitorData *monitor; +}; + +struct IExternalInputManager__VTable { + VirtualInvokeData Initialize; + VirtualInvokeData Deinitialize; +}; + +struct IExternalInputManager__StaticFields { +}; + +struct IExternalInputManager__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IExternalInputManager__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IExternalInputManager__VTable vtable; +}; + +struct IExternalInputManager__Array__VTable { +}; + +struct IExternalInputManager__Array__StaticFields { +}; + +struct IExternalInputManager__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IExternalInputManager__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IExternalInputManager__Array__VTable vtable; +}; + +struct IEnumerator_1_Rewired_Utils_Interfaces_IExternalInputManager___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_Rewired_Utils_Interfaces_IExternalInputManager___StaticFields { +}; + +struct IEnumerator_1_Rewired_Utils_Interfaces_IExternalInputManager___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_Rewired_Utils_Interfaces_IExternalInputManager___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_Rewired_Utils_Interfaces_IExternalInputManager___VTable vtable; +}; + +struct List_1_Rewired_Utils_Interfaces_IExternalInputManager___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_Rewired_Utils_Interfaces_IExternalInputManager___StaticFields { + struct IExternalInputManager__Array *s_emptyArray; +}; + +struct List_1_Rewired_Utils_Interfaces_IExternalInputManager___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Rewired_Utils_Interfaces_IExternalInputManager___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Rewired_Utils_Interfaces_IExternalInputManager___VTable vtable; +}; + +struct __declspec(align(8)) List_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap___Fields { + struct HardwareJoystickTemplateMap__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap_ { + struct List_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap___Class *klass; + MonitorData *monitor; + struct List_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap___Fields fields; +}; + +struct IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap_ { + struct IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap___StaticFields { +}; + +struct IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap___VTable vtable; +}; + +struct List_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap___StaticFields { + struct HardwareJoystickTemplateMap__Array *s_emptyArray; +}; + +struct List_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap___VTable vtable; +}; + +struct IComparer_1_Photon_Bolt_Internal_EntityProxy_ { + struct IComparer_1_Photon_Bolt_Internal_EntityProxy___Class *klass; + MonitorData *monitor; +}; + +struct IComparer_1_Photon_Bolt_Internal_EntityProxy___VTable { + VirtualInvokeData Compare; +}; + +struct IComparer_1_Photon_Bolt_Internal_EntityProxy___StaticFields { +}; + +struct IComparer_1_Photon_Bolt_Internal_EntityProxy___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IComparer_1_Photon_Bolt_Internal_EntityProxy___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IComparer_1_Photon_Bolt_Internal_EntityProxy___VTable vtable; +}; + +struct INativePlatformHelper { + struct INativePlatformHelper__Class *klass; + MonitorData *monitor; +}; + +struct INativePlatformHelper__VTable { + VirtualInvokeData get_isApplicationFocused; +}; + +struct INativePlatformHelper__StaticFields { +}; + +struct INativePlatformHelper__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct INativePlatformHelper__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct INativePlatformHelper__VTable vtable; +}; + +struct __declspec(align(8)) Stack_1_Photon_Bolt_Internal_EntityProxyEnvelope___Fields { + struct EntityProxyEnvelope__Array *_array; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct Stack_1_Photon_Bolt_Internal_EntityProxyEnvelope_ { + struct Stack_1_Photon_Bolt_Internal_EntityProxyEnvelope___Class *klass; + MonitorData *monitor; + struct Stack_1_Photon_Bolt_Internal_EntityProxyEnvelope___Fields fields; +}; + +struct Stack_1_Photon_Bolt_Internal_EntityProxyEnvelope___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_1; +}; + +struct Stack_1_Photon_Bolt_Internal_EntityProxyEnvelope___StaticFields { +}; + +struct Stack_1_Photon_Bolt_Internal_EntityProxyEnvelope___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Stack_1_Photon_Bolt_Internal_EntityProxyEnvelope___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Stack_1_Photon_Bolt_Internal_EntityProxyEnvelope___VTable vtable; +}; + +struct EntityProxyEnvelopePool { + struct EntityProxyEnvelopePool__Class *klass; + MonitorData *monitor; +}; + +struct EntityProxyEnvelopePool__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct EntityProxyEnvelopePool__StaticFields { + struct Stack_1_Photon_Bolt_Internal_EntityProxyEnvelope_ *pool; +}; + +struct EntityProxyEnvelopePool__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EntityProxyEnvelopePool__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EntityProxyEnvelopePool__VTable vtable; +}; + +struct IExtraConnectionStats { + struct IExtraConnectionStats__Class *klass; + MonitorData *monitor; +}; + +struct IExtraConnectionStats__VTable { + VirtualInvokeData OnPacketSend; +}; + +struct IExtraConnectionStats__StaticFields { +}; + +struct IExtraConnectionStats__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IExtraConnectionStats__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IExtraConnectionStats__VTable vtable; +}; + +struct Queue_1_T_Enumerator_Photon_Bolt_Internal_ControlCommand_ { + struct Queue_1_Photon_Bolt_Internal_ControlCommand_ *_q; + int32_t _version; + int32_t _index; + struct ControlCommand *_currentElement; +}; + +struct Queue_1_T_Enumerator_Photon_Bolt_Internal_ControlCommand___Boxed { + struct Queue_1_T_Enumerator_Photon_Bolt_Internal_ControlCommand___Class *klass; + MonitorData *monitor; + struct Queue_1_T_Enumerator_Photon_Bolt_Internal_ControlCommand_ fields; +}; + +struct Queue_1_T_Enumerator_Photon_Bolt_Internal_ControlCommand___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct Queue_1_T_Enumerator_Photon_Bolt_Internal_ControlCommand___StaticFields { +}; + +struct Queue_1_T_Enumerator_Photon_Bolt_Internal_ControlCommand___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Queue_1_T_Enumerator_Photon_Bolt_Internal_ControlCommand___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Queue_1_T_Enumerator_Photon_Bolt_Internal_ControlCommand___VTable vtable; +}; + +struct CallbackArray_1_System_Action_2__15__VTable { +}; + +struct CallbackArray_1_System_Action_2__15__StaticFields { +}; + +struct CallbackArray_1_System_Action_2__15__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CallbackArray_1_System_Action_2__15__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CallbackArray_1_System_Action_2__15__VTable vtable; +}; + +struct BoltCoreInternal { + struct BoltCoreInternal__Class *klass; + MonitorData *monitor; +}; + +struct BoltCoreInternal__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltCoreInternal__StaticFields { + struct List_1_Photon_Bolt_BoltEntity_ *ChangedEditorEntities; +}; + +struct BoltCoreInternal__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltCoreInternal__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltCoreInternal__VTable vtable; +}; + +struct CallbackArray_1_System_Action_2__16__VTable { +}; + +struct CallbackArray_1_System_Action_2__16__StaticFields { +}; + +struct CallbackArray_1_System_Action_2__16__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CallbackArray_1_System_Action_2__16__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CallbackArray_1_System_Action_2__16__VTable vtable; +}; + +struct List_1_T_Enumerator_System_Action_ { + struct List_1_System_Action_ *_list; + int32_t _index; + int32_t _version; + struct Action *_current; +}; + +struct List_1_T_Enumerator_System_Action___Boxed { + struct List_1_T_Enumerator_System_Action___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_System_Action_ fields; +}; + +struct List_1_T_Enumerator_System_Action___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_System_Action___StaticFields { +}; + +struct List_1_T_Enumerator_System_Action___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_System_Action___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_System_Action___VTable vtable; +}; + +struct ITextInputReceiver { + struct ITextInputReceiver__Class *klass; + MonitorData *monitor; +}; + +struct ITextInputReceiver__VTable { + VirtualInvokeData OnTextInput; + VirtualInvokeData OnIMECompositionChanged; +}; + +struct ITextInputReceiver__StaticFields { +}; + +struct ITextInputReceiver__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ITextInputReceiver__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ITextInputReceiver__VTable vtable; +}; + +struct Func_4_UnityEngine_GameObject_UnityEngine_Vector3_UnityEngine_Quaternion_UnityEngine_GameObject___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_4_UnityEngine_GameObject_UnityEngine_Vector3_UnityEngine_Quaternion_UnityEngine_GameObject_ { + struct Func_4_UnityEngine_GameObject_UnityEngine_Vector3_UnityEngine_Quaternion_UnityEngine_GameObject___Class *klass; + MonitorData *monitor; + struct Func_4_UnityEngine_GameObject_UnityEngine_Vector3_UnityEngine_Quaternion_UnityEngine_GameObject___Fields fields; +}; + +struct Func_4_UnityEngine_GameObject_UnityEngine_Vector3_UnityEngine_Quaternion_UnityEngine_GameObject___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_4_UnityEngine_GameObject_UnityEngine_Vector3_UnityEngine_Quaternion_UnityEngine_GameObject___StaticFields { +}; + +struct Func_4_UnityEngine_GameObject_UnityEngine_Vector3_UnityEngine_Quaternion_UnityEngine_GameObject___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_4_UnityEngine_GameObject_UnityEngine_Vector3_UnityEngine_Quaternion_UnityEngine_GameObject___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_4_UnityEngine_GameObject_UnityEngine_Vector3_UnityEngine_Quaternion_UnityEngine_GameObject___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity_ { + struct Dictionary_2_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity_ *_dictionary; + int32_t _index; + int32_t _version; + struct BoltEntity *_currentValue; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___Boxed { + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity_ fields; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity___VTable vtable; +}; + +struct AutoLoadSceneInfo { + #if defined(_CPLUSPLUS_) + AutoLoadSceneOrigin__Enum Origin; + #else + int32_t Origin; + #endif + struct String *Scene; + struct IProtocolToken *Token; +}; + +struct AutoLoadSceneInfo__Boxed { + struct AutoLoadSceneInfo__Class *klass; + MonitorData *monitor; + struct AutoLoadSceneInfo fields; +}; + +struct AutoLoadSceneInfo__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct AutoLoadSceneInfo__StaticFields { +}; + +struct AutoLoadSceneInfo__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct AutoLoadSceneInfo__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct AutoLoadSceneInfo__VTable vtable; +}; + +struct List_1_T_Enumerator_Photon_Bolt_Collections_STuple_2__1 { + struct List_1_Photon_Bolt_Collections_STuple_2_ *_list; + int32_t _index; + int32_t _version; + struct STuple_2_Photon_Bolt_BoltGlobalBehaviourAttribute_System_Type_ _current; +}; + +struct List_1_T_Enumerator_Photon_Bolt_Collections_STuple_2__1__Boxed { + struct List_1_T_Enumerator_Photon_Bolt_Collections_STuple_2__1__Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_Photon_Bolt_Collections_STuple_2__1 fields; +}; + +struct List_1_T_Enumerator_Photon_Bolt_Collections_STuple_2__1__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_Photon_Bolt_Collections_STuple_2__1__StaticFields { +}; + +struct List_1_T_Enumerator_Photon_Bolt_Collections_STuple_2__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_Photon_Bolt_Collections_STuple_2__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_Photon_Bolt_Collections_STuple_2__1__VTable vtable; +}; + +struct ICustomDeviceReset { + struct ICustomDeviceReset__Class *klass; + MonitorData *monitor; +}; + +struct ICustomDeviceReset__VTable { + VirtualInvokeData Reset; +}; + +struct ICustomDeviceReset__StaticFields { +}; + +struct ICustomDeviceReset__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICustomDeviceReset__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICustomDeviceReset__VTable vtable; +}; + +struct UdpLog { + struct UdpLog__Class *klass; + MonitorData *monitor; +}; + +struct UdpLog__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct UdpLog__StaticFields { + uint32_t enabled; + struct UdpLog_Writer *writer; + struct Object *sync; +}; + +struct UdpLog__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UdpLog__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UdpLog__VTable vtable; +}; + +struct CallbackArray_1_System_Action_2__17__VTable { +}; + +struct CallbackArray_1_System_Action_2__17__StaticFields { +}; + +struct CallbackArray_1_System_Action_2__17__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CallbackArray_1_System_Action_2__17__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CallbackArray_1_System_Action_2__17__VTable vtable; +}; + +struct IEventMerger { + struct IEventMerger__Class *klass; + MonitorData *monitor; +}; + +struct IEventMerger__VTable { + VirtualInvokeData MergeForward; +}; + +struct IEventMerger__StaticFields { +}; + +struct IEventMerger__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEventMerger__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEventMerger__VTable vtable; +}; + +struct IInputUpdateCallbackReceiver { + struct IInputUpdateCallbackReceiver__Class *klass; + MonitorData *monitor; +}; + +struct IInputUpdateCallbackReceiver__VTable { + VirtualInvokeData OnUpdate; +}; + +struct IInputUpdateCallbackReceiver__StaticFields { +}; + +struct IInputUpdateCallbackReceiver__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IInputUpdateCallbackReceiver__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IInputUpdateCallbackReceiver__VTable vtable; +}; + +struct IEventPreProcessor { + struct IEventPreProcessor__Class *klass; + MonitorData *monitor; +}; + +struct IEventPreProcessor__VTable { + VirtualInvokeData PreProcessEvent; +}; + +struct IEventPreProcessor__StaticFields { +}; + +struct IEventPreProcessor__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEventPreProcessor__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEventPreProcessor__VTable vtable; +}; + +struct __declspec(align(8)) List_1_UnityEngine_InputSystem_InputDevice___Fields { + struct InputDevice__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_InputSystem_InputDevice_ { + struct List_1_UnityEngine_InputSystem_InputDevice___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_InputSystem_InputDevice___Fields fields; +}; + +struct List_1_UnityEngine_InputSystem_InputDevice___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_UnityEngine_InputSystem_InputDevice___StaticFields { + struct InputDevice__Array *s_emptyArray; +}; + +struct List_1_UnityEngine_InputSystem_InputDevice___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_InputSystem_InputDevice___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_InputSystem_InputDevice___VTable vtable; +}; + +struct CallbackArray_1_System_Action_2__18__VTable { +}; + +struct CallbackArray_1_System_Action_2__18__StaticFields { +}; + +struct CallbackArray_1_System_Action_2__18__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CallbackArray_1_System_Action_2__18__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CallbackArray_1_System_Action_2__18__VTable vtable; +}; + +struct Timeout { + struct Timeout__Class *klass; + MonitorData *monitor; +}; + +struct Timeout__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Timeout__StaticFields { + struct TimeSpan InfiniteTimeSpan; +}; + +struct Timeout__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Timeout__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Timeout__VTable vtable; +}; + +struct RemoteInputPlayerConnection_Subscriber___VTable { +}; + +struct RemoteInputPlayerConnection_Subscriber___StaticFields { +}; + +struct RemoteInputPlayerConnection_Subscriber___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RemoteInputPlayerConnection_Subscriber___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RemoteInputPlayerConnection_Subscriber___VTable vtable; +}; + +struct Func_2_Photon_Bolt_Entity_Single___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_2_Photon_Bolt_Entity_Single_ { + struct Func_2_Photon_Bolt_Entity_Single___Class *klass; + MonitorData *monitor; + struct Func_2_Photon_Bolt_Entity_Single___Fields fields; +}; + +struct Func_2_Photon_Bolt_Entity_Single___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_2_Photon_Bolt_Entity_Single___StaticFields { +}; + +struct Func_2_Photon_Bolt_Entity_Single___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_2_Photon_Bolt_Entity_Single___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_2_Photon_Bolt_Entity_Single___VTable vtable; +}; + +struct IOrderedEnumerable_1_Photon_Bolt_Entity_ { + struct IOrderedEnumerable_1_Photon_Bolt_Entity___Class *klass; + MonitorData *monitor; +}; + +struct IOrderedEnumerable_1_Photon_Bolt_Entity___VTable { + VirtualInvokeData CreateOrderedEnumerable; +}; + +struct IOrderedEnumerable_1_Photon_Bolt_Entity___StaticFields { +}; + +struct IOrderedEnumerable_1_Photon_Bolt_Entity___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IOrderedEnumerable_1_Photon_Bolt_Entity___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IOrderedEnumerable_1_Photon_Bolt_Entity___VTable vtable; +}; + +struct AsyncTaskCache { + struct AsyncTaskCache__Class *klass; + MonitorData *monitor; +}; + +struct AsyncTaskCache__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct AsyncTaskCache__StaticFields { + struct Task_1_System_Boolean_ *TrueTask; + struct Task_1_System_Boolean_ *FalseTask; + struct Task_1_System_Int32___Array *Int32Tasks; +}; + +struct AsyncTaskCache__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct AsyncTaskCache__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct AsyncTaskCache__VTable vtable; +}; + +struct InputRemoting_Subscriber___VTable { +}; + +struct InputRemoting_Subscriber___StaticFields { +}; + +struct InputRemoting_Subscriber___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputRemoting_Subscriber___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputRemoting_Subscriber___VTable vtable; +}; + +struct BoltGUI { + struct BoltGUI__Class *klass; + MonitorData *monitor; +}; + +struct BoltGUI__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltGUI__StaticFields { + struct Color Info; + struct Color Debug; + struct Color Warn; + struct Color Error; +}; + +struct BoltGUI__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltGUI__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltGUI__VTable vtable; +}; + +struct BoltIterator_1_Photon_Bolt_LagCompensation_BoltHitboxWorldSnapshot_ { + struct BoltHitboxWorldSnapshot *_node; + int32_t _count; + int32_t _number; + struct BoltHitboxWorldSnapshot *val; +}; + +struct BoltIterator_1_Photon_Bolt_LagCompensation_BoltHitboxWorldSnapshot___Boxed { + struct BoltIterator_1_Photon_Bolt_LagCompensation_BoltHitboxWorldSnapshot___Class *klass; + MonitorData *monitor; + struct BoltIterator_1_Photon_Bolt_LagCompensation_BoltHitboxWorldSnapshot_ fields; +}; + +struct BoltIterator_1_Photon_Bolt_LagCompensation_BoltHitboxWorldSnapshot___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltIterator_1_Photon_Bolt_LagCompensation_BoltHitboxWorldSnapshot___StaticFields { +}; + +struct BoltIterator_1_Photon_Bolt_LagCompensation_BoltHitboxWorldSnapshot___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltIterator_1_Photon_Bolt_LagCompensation_BoltHitboxWorldSnapshot___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltIterator_1_Photon_Bolt_LagCompensation_BoltHitboxWorldSnapshot___VTable vtable; +}; + +struct BoltIterator_1_Photon_Bolt_LagCompensation_BoltHitboxBodySnapshot_ { + struct BoltHitboxBodySnapshot *_node; + int32_t _count; + int32_t _number; + struct BoltHitboxBodySnapshot *val; +}; + +struct BoltIterator_1_Photon_Bolt_LagCompensation_BoltHitboxBodySnapshot___Boxed { + struct BoltIterator_1_Photon_Bolt_LagCompensation_BoltHitboxBodySnapshot___Class *klass; + MonitorData *monitor; + struct BoltIterator_1_Photon_Bolt_LagCompensation_BoltHitboxBodySnapshot_ fields; +}; + +struct BoltIterator_1_Photon_Bolt_LagCompensation_BoltHitboxBodySnapshot___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltIterator_1_Photon_Bolt_LagCompensation_BoltHitboxBodySnapshot___StaticFields { +}; + +struct BoltIterator_1_Photon_Bolt_LagCompensation_BoltHitboxBodySnapshot___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltIterator_1_Photon_Bolt_LagCompensation_BoltHitboxBodySnapshot___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltIterator_1_Photon_Bolt_LagCompensation_BoltHitboxBodySnapshot___VTable vtable; +}; + +struct BoltIterator_1_Photon_Bolt_LagCompensation_BoltHitboxBody_ { + struct BoltHitboxBody *_node; + int32_t _count; + int32_t _number; + struct BoltHitboxBody *val; +}; + +struct BoltIterator_1_Photon_Bolt_LagCompensation_BoltHitboxBody___Boxed { + struct BoltIterator_1_Photon_Bolt_LagCompensation_BoltHitboxBody___Class *klass; + MonitorData *monitor; + struct BoltIterator_1_Photon_Bolt_LagCompensation_BoltHitboxBody_ fields; +}; + +struct BoltIterator_1_Photon_Bolt_LagCompensation_BoltHitboxBody___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltIterator_1_Photon_Bolt_LagCompensation_BoltHitboxBody___StaticFields { +}; + +struct BoltIterator_1_Photon_Bolt_LagCompensation_BoltHitboxBody___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltIterator_1_Photon_Bolt_LagCompensation_BoltHitboxBody___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltIterator_1_Photon_Bolt_LagCompensation_BoltHitboxBody___VTable vtable; +}; + +struct EventCallback_1_FocusOutEvent___Fields { + struct MulticastDelegate__Fields _; +}; + +struct EventCallback_1_FocusOutEvent_ { + struct EventCallback_1_FocusOutEvent___Class *klass; + MonitorData *monitor; + struct EventCallback_1_FocusOutEvent___Fields fields; +}; + +struct EventCallback_1_FocusOutEvent___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct EventCallback_1_FocusOutEvent___StaticFields { +}; + +struct EventCallback_1_FocusOutEvent___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EventCallback_1_FocusOutEvent___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EventCallback_1_FocusOutEvent___VTable vtable; +}; + +struct EventCallback_1_ChangeEvent_1_System_String___Fields { + struct MulticastDelegate__Fields _; +}; + +struct EventCallback_1_ChangeEvent_1_System_String_ { + struct EventCallback_1_ChangeEvent_1_System_String___Class *klass; + MonitorData *monitor; + struct EventCallback_1_ChangeEvent_1_System_String___Fields fields; +}; + +struct EventCallback_1_ChangeEvent_1_System_String___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct EventCallback_1_ChangeEvent_1_System_String___StaticFields { +}; + +struct EventCallback_1_ChangeEvent_1_System_String___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EventCallback_1_ChangeEvent_1_System_String___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EventCallback_1_ChangeEvent_1_System_String___VTable vtable; +}; + +struct INotifyValueChanged_1_System_String_ { + struct INotifyValueChanged_1_System_String___Class *klass; + MonitorData *monitor; +}; + +struct INotifyValueChanged_1_System_String___VTable { + VirtualInvokeData get_value; + VirtualInvokeData set_value; + VirtualInvokeData SetValueWithoutNotify; +}; + +struct INotifyValueChanged_1_System_String___StaticFields { +}; + +struct INotifyValueChanged_1_System_String___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct INotifyValueChanged_1_System_String___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct INotifyValueChanged_1_System_String___VTable vtable; +}; + +struct EventCallback_1_KeyDownEvent___Fields { + struct MulticastDelegate__Fields _; +}; + +struct EventCallback_1_KeyDownEvent_ { + struct EventCallback_1_KeyDownEvent___Class *klass; + MonitorData *monitor; + struct EventCallback_1_KeyDownEvent___Fields fields; +}; + +struct EventCallback_1_KeyDownEvent___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct EventCallback_1_KeyDownEvent___StaticFields { +}; + +struct EventCallback_1_KeyDownEvent___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EventCallback_1_KeyDownEvent___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EventCallback_1_KeyDownEvent___VTable vtable; +}; + +struct List_1_T_Enumerator_ch_sycoforge_Combine_MeshTransform_ { + struct List_1_ch_sycoforge_Combine_MeshTransform_ *_list; + int32_t _index; + int32_t _version; + struct MeshTransform *_current; +}; + +struct List_1_T_Enumerator_ch_sycoforge_Combine_MeshTransform___Boxed { + struct List_1_T_Enumerator_ch_sycoforge_Combine_MeshTransform___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_ch_sycoforge_Combine_MeshTransform_ fields; +}; + +struct List_1_T_Enumerator_ch_sycoforge_Combine_MeshTransform___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_ch_sycoforge_Combine_MeshTransform___StaticFields { +}; + +struct List_1_T_Enumerator_ch_sycoforge_Combine_MeshTransform___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_ch_sycoforge_Combine_MeshTransform___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_ch_sycoforge_Combine_MeshTransform___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Material_List_1_ch_sycoforge_Combine_MeshTransform_ { + struct Dictionary_2_UnityEngine_Material_List_1_ch_sycoforge_Combine_MeshTransform_ *_dictionary; + int32_t _index; + int32_t _version; + struct Material *_currentKey; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Material_List_1_ch_sycoforge_Combine_MeshTransform___Boxed { + struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Material_List_1_ch_sycoforge_Combine_MeshTransform___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Material_List_1_ch_sycoforge_Combine_MeshTransform_ fields; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Material_List_1_ch_sycoforge_Combine_MeshTransform___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Material_List_1_ch_sycoforge_Combine_MeshTransform___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Material_List_1_ch_sycoforge_Combine_MeshTransform___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Material_List_1_ch_sycoforge_Combine_MeshTransform___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Material_List_1_ch_sycoforge_Combine_MeshTransform___VTable vtable; +}; + +struct VoiceProximityBroadcastTrigger__Array { + struct VoiceProximityBroadcastTrigger__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct VoiceProximityBroadcastTrigger *vector[32]; +}; + +struct VoiceProximityBroadcastTrigger__Array__VTable { +}; + +struct VoiceProximityBroadcastTrigger__Array__StaticFields { +}; + +struct VoiceProximityBroadcastTrigger__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct VoiceProximityBroadcastTrigger__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct VoiceProximityBroadcastTrigger__Array__VTable vtable; +}; + +struct __declspec(align(8)) List_1_Dissonance_VoiceProximityReceiptTrigger___Fields { + struct VoiceProximityReceiptTrigger__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Dissonance_VoiceProximityReceiptTrigger_ { + struct List_1_Dissonance_VoiceProximityReceiptTrigger___Class *klass; + MonitorData *monitor; + struct List_1_Dissonance_VoiceProximityReceiptTrigger___Fields fields; +}; + +struct VoiceProximityReceiptTrigger__Array { + struct VoiceProximityReceiptTrigger__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct VoiceProximityReceiptTrigger *vector[32]; +}; + +struct IEnumerator_1_Dissonance_VoiceProximityReceiptTrigger_ { + struct IEnumerator_1_Dissonance_VoiceProximityReceiptTrigger___Class *klass; + MonitorData *monitor; +}; + +struct List_1_T_Enumerator_Dissonance_VoiceProximityReceiptTrigger_ { + struct List_1_Dissonance_VoiceProximityReceiptTrigger_ *_list; + int32_t _index; + int32_t _version; + struct VoiceProximityReceiptTrigger *_current; +}; + +struct List_1_T_Enumerator_Dissonance_VoiceProximityReceiptTrigger___Boxed { + struct List_1_T_Enumerator_Dissonance_VoiceProximityReceiptTrigger___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_Dissonance_VoiceProximityReceiptTrigger_ fields; +}; + +struct VoiceProximityReceiptTrigger__Array__VTable { +}; + +struct VoiceProximityReceiptTrigger__Array__StaticFields { +}; + +struct VoiceProximityReceiptTrigger__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct VoiceProximityReceiptTrigger__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct VoiceProximityReceiptTrigger__Array__VTable vtable; +}; + +struct IEnumerator_1_Dissonance_VoiceProximityReceiptTrigger___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_Dissonance_VoiceProximityReceiptTrigger___StaticFields { +}; + +struct IEnumerator_1_Dissonance_VoiceProximityReceiptTrigger___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_Dissonance_VoiceProximityReceiptTrigger___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_Dissonance_VoiceProximityReceiptTrigger___VTable vtable; +}; + +struct List_1_Dissonance_VoiceProximityReceiptTrigger___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_Dissonance_VoiceProximityReceiptTrigger___StaticFields { + struct VoiceProximityReceiptTrigger__Array *s_emptyArray; +}; + +struct List_1_Dissonance_VoiceProximityReceiptTrigger___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Dissonance_VoiceProximityReceiptTrigger___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Dissonance_VoiceProximityReceiptTrigger___VTable vtable; +}; + +struct List_1_T_Enumerator_Dissonance_VoiceProximityReceiptTrigger___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_Dissonance_VoiceProximityReceiptTrigger___StaticFields { +}; + +struct List_1_T_Enumerator_Dissonance_VoiceProximityReceiptTrigger___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_Dissonance_VoiceProximityReceiptTrigger___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_Dissonance_VoiceProximityReceiptTrigger___VTable vtable; +}; + +struct EasyCombine_RendererPropertySelector_1_UnityEngine_Shader___Fields { + struct MulticastDelegate__Fields _; +}; + +struct EasyCombine_RendererPropertySelector_1_UnityEngine_Shader_ { + struct EasyCombine_RendererPropertySelector_1_UnityEngine_Shader___Class *klass; + MonitorData *monitor; + struct EasyCombine_RendererPropertySelector_1_UnityEngine_Shader___Fields fields; +}; + +struct EasyCombine_RendererPropertySelector_1_UnityEngine_Shader___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; + VirtualInvokeData BeginInvoke; + VirtualInvokeData EndInvoke; +}; + +struct EasyCombine_RendererPropertySelector_1_UnityEngine_Shader___StaticFields { +}; + +struct EasyCombine_RendererPropertySelector_1_UnityEngine_Shader___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EasyCombine_RendererPropertySelector_1_UnityEngine_Shader___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EasyCombine_RendererPropertySelector_1_UnityEngine_Shader___VTable vtable; +}; + +struct EasyCombine_RendererPropertySelector_1_UnityEngine_Material___Fields { + struct MulticastDelegate__Fields _; +}; + +struct EasyCombine_RendererPropertySelector_1_UnityEngine_Material_ { + struct EasyCombine_RendererPropertySelector_1_UnityEngine_Material___Class *klass; + MonitorData *monitor; + struct EasyCombine_RendererPropertySelector_1_UnityEngine_Material___Fields fields; +}; + +struct EasyCombine_RendererPropertySelector_1_UnityEngine_Material___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; + VirtualInvokeData BeginInvoke; + VirtualInvokeData EndInvoke; +}; + +struct EasyCombine_RendererPropertySelector_1_UnityEngine_Material___StaticFields { +}; + +struct EasyCombine_RendererPropertySelector_1_UnityEngine_Material___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EasyCombine_RendererPropertySelector_1_UnityEngine_Material___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EasyCombine_RendererPropertySelector_1_UnityEngine_Material___VTable vtable; +}; + +struct IEnumerable_1_Dissonance_VoiceProximityReceiptTrigger_ { + struct IEnumerable_1_Dissonance_VoiceProximityReceiptTrigger___Class *klass; + MonitorData *monitor; +}; + +struct Func_2_Dissonance_VoiceProximityReceiptTrigger_Boolean___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_2_Dissonance_VoiceProximityReceiptTrigger_Boolean_ { + struct Func_2_Dissonance_VoiceProximityReceiptTrigger_Boolean___Class *klass; + MonitorData *monitor; + struct Func_2_Dissonance_VoiceProximityReceiptTrigger_Boolean___Fields fields; +}; + +struct IEnumerable_1_Dissonance_VoiceProximityReceiptTrigger___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_Dissonance_VoiceProximityReceiptTrigger___StaticFields { +}; + +struct IEnumerable_1_Dissonance_VoiceProximityReceiptTrigger___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_Dissonance_VoiceProximityReceiptTrigger___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_Dissonance_VoiceProximityReceiptTrigger___VTable vtable; +}; + +struct Func_2_Dissonance_VoiceProximityReceiptTrigger_Boolean___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_2_Dissonance_VoiceProximityReceiptTrigger_Boolean___StaticFields { +}; + +struct Func_2_Dissonance_VoiceProximityReceiptTrigger_Boolean___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_2_Dissonance_VoiceProximityReceiptTrigger_Boolean___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_2_Dissonance_VoiceProximityReceiptTrigger_Boolean___VTable vtable; +}; + +struct List_1_T_Enumerator_Dissonance_VoiceProximityBroadcastTrigger_ { + struct List_1_Dissonance_VoiceProximityBroadcastTrigger_ *_list; + int32_t _index; + int32_t _version; + struct VoiceProximityBroadcastTrigger *_current; +}; + +struct List_1_T_Enumerator_Dissonance_VoiceProximityBroadcastTrigger___Boxed { + struct List_1_T_Enumerator_Dissonance_VoiceProximityBroadcastTrigger___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_Dissonance_VoiceProximityBroadcastTrigger_ fields; +}; + +struct __declspec(align(8)) List_1_Dissonance_VoiceProximityBroadcastTrigger___Fields { + struct VoiceProximityBroadcastTrigger__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Dissonance_VoiceProximityBroadcastTrigger_ { + struct List_1_Dissonance_VoiceProximityBroadcastTrigger___Class *klass; + MonitorData *monitor; + struct List_1_Dissonance_VoiceProximityBroadcastTrigger___Fields fields; +}; + +struct IEnumerator_1_Dissonance_VoiceProximityBroadcastTrigger_ { + struct IEnumerator_1_Dissonance_VoiceProximityBroadcastTrigger___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerator_1_Dissonance_VoiceProximityBroadcastTrigger___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_Dissonance_VoiceProximityBroadcastTrigger___StaticFields { +}; + +struct IEnumerator_1_Dissonance_VoiceProximityBroadcastTrigger___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_Dissonance_VoiceProximityBroadcastTrigger___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_Dissonance_VoiceProximityBroadcastTrigger___VTable vtable; +}; + +struct List_1_Dissonance_VoiceProximityBroadcastTrigger___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_Dissonance_VoiceProximityBroadcastTrigger___StaticFields { + struct VoiceProximityBroadcastTrigger__Array *s_emptyArray; +}; + +struct List_1_Dissonance_VoiceProximityBroadcastTrigger___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Dissonance_VoiceProximityBroadcastTrigger___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Dissonance_VoiceProximityBroadcastTrigger___VTable vtable; +}; + +struct List_1_T_Enumerator_Dissonance_VoiceProximityBroadcastTrigger___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_Dissonance_VoiceProximityBroadcastTrigger___StaticFields { +}; + +struct List_1_T_Enumerator_Dissonance_VoiceProximityBroadcastTrigger___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_Dissonance_VoiceProximityBroadcastTrigger___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_Dissonance_VoiceProximityBroadcastTrigger___VTable vtable; +}; + +struct Func_2_Dissonance_VoiceProximityBroadcastTrigger_Boolean___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_2_Dissonance_VoiceProximityBroadcastTrigger_Boolean_ { + struct Func_2_Dissonance_VoiceProximityBroadcastTrigger_Boolean___Class *klass; + MonitorData *monitor; + struct Func_2_Dissonance_VoiceProximityBroadcastTrigger_Boolean___Fields fields; +}; + +struct Func_2_Dissonance_VoiceProximityBroadcastTrigger_Boolean___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_2_Dissonance_VoiceProximityBroadcastTrigger_Boolean___StaticFields { +}; + +struct Func_2_Dissonance_VoiceProximityBroadcastTrigger_Boolean___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_2_Dissonance_VoiceProximityBroadcastTrigger_Boolean___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_2_Dissonance_VoiceProximityBroadcastTrigger_Boolean___VTable vtable; +}; + +struct List_1_System_Int32___Array_1 { + struct List_1_System_Int32___Array_1__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct List_1_System_Int32_ *vector[32]; +}; + +struct List_1_System_Int32___Array_1__VTable { +}; + +struct List_1_System_Int32___Array_1__StaticFields { +}; + +struct List_1_System_Int32___Array_1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_System_Int32___Array_1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_System_Int32___Array_1__VTable vtable; +}; + +struct IEnumerable_1_Dissonance_VoiceProximityBroadcastTrigger_ { + struct IEnumerable_1_Dissonance_VoiceProximityBroadcastTrigger___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_Dissonance_VoiceProximityBroadcastTrigger___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_Dissonance_VoiceProximityBroadcastTrigger___StaticFields { +}; + +struct IEnumerable_1_Dissonance_VoiceProximityBroadcastTrigger___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_Dissonance_VoiceProximityBroadcastTrigger___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_Dissonance_VoiceProximityBroadcastTrigger___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Material_IList_1_UnityEngine_GameObject_ { + struct Dictionary_2_UnityEngine_Material_IList_1_UnityEngine_GameObject_ *_dictionary; + int32_t _index; + int32_t _version; + struct Material *_currentKey; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Material_IList_1_UnityEngine_GameObject___Boxed { + struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Material_IList_1_UnityEngine_GameObject___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Material_IList_1_UnityEngine_GameObject_ fields; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Material_IList_1_UnityEngine_GameObject___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Material_IList_1_UnityEngine_GameObject___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Material_IList_1_UnityEngine_GameObject___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Material_IList_1_UnityEngine_GameObject___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Material_IList_1_UnityEngine_GameObject___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Shader_IList_1_UnityEngine_GameObject_ { + struct Dictionary_2_UnityEngine_Shader_IList_1_UnityEngine_GameObject_ *_dictionary; + int32_t _index; + int32_t _version; + struct Shader *_currentKey; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Shader_IList_1_UnityEngine_GameObject___Boxed { + struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Shader_IList_1_UnityEngine_GameObject___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Shader_IList_1_UnityEngine_GameObject_ fields; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Shader_IList_1_UnityEngine_GameObject___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Shader_IList_1_UnityEngine_GameObject___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Shader_IList_1_UnityEngine_GameObject___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Shader_IList_1_UnityEngine_GameObject___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_Shader_IList_1_UnityEngine_GameObject___VTable vtable; +}; + +struct EasyCombine { + struct EasyCombine__Class *klass; + MonitorData *monitor; +}; + +struct EasyCombine__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct EasyCombine__StaticFields { + struct EasyCombine_UnwrapMethod *Unwrapper; + struct EasyCombine_ProcessStepCompleted *OnProcessStepCompleted; + float Threshold; + float DirectionThreshold; + int32_t overallSteps; + int32_t finishedSteps; + struct EasyCombine_RendererPropertySelector_1_UnityEngine_Material_ *CS___9__CachedAnonymousMethodDelegate1; + struct EasyCombine_RendererPropertySelector_1_UnityEngine_Shader_ *CS___9__CachedAnonymousMethodDelegate3; +}; + +struct EasyCombine__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EasyCombine__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EasyCombine__VTable vtable; +}; + +struct VisualElementUtils { + struct VisualElementUtils__Class *klass; + MonitorData *monitor; +}; + +struct VisualElementUtils__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct VisualElementUtils__StaticFields { + struct HashSet_1_System_String_ *s_usedNames; + struct Type *s_FoldoutType; +}; + +struct VisualElementUtils__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct VisualElementUtils__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct VisualElementUtils__VTable vtable; +}; + +struct ICollection_1_Rewired_JoystickMap_ { + struct ICollection_1_Rewired_JoystickMap___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_Rewired_JoystickMap___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_Rewired_JoystickMap___StaticFields { +}; + +struct ICollection_1_Rewired_JoystickMap___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_Rewired_JoystickMap___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_Rewired_JoystickMap___VTable vtable; +}; + +struct ICollection_1_Rewired_CustomControllerMap_ { + struct ICollection_1_Rewired_CustomControllerMap___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_Rewired_CustomControllerMap___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_Rewired_CustomControllerMap___StaticFields { +}; + +struct ICollection_1_Rewired_CustomControllerMap___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_Rewired_CustomControllerMap___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_Rewired_CustomControllerMap___VTable vtable; +}; + +struct ICollection_1_Rewired_MouseMap_ { + struct ICollection_1_Rewired_MouseMap___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_Rewired_MouseMap___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_Rewired_MouseMap___StaticFields { +}; + +struct ICollection_1_Rewired_MouseMap___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_Rewired_MouseMap___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_Rewired_MouseMap___VTable vtable; +}; + +struct CallbackArray_1_System_Func_3__5__VTable { +}; + +struct CallbackArray_1_System_Func_3__5__StaticFields { +}; + +struct CallbackArray_1_System_Func_3__5__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CallbackArray_1_System_Func_3__5__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CallbackArray_1_System_Func_3__5__VTable vtable; +}; + +struct ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_PlayerInput_ { + struct PlayerInput_1__Array *m_Array; + int32_t m_IndexStart; + int32_t m_IndexEnd; + int32_t m_Index; +}; + +struct ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_PlayerInput___Boxed { + struct ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_PlayerInput___Class *klass; + MonitorData *monitor; + struct ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_PlayerInput_ fields; +}; + +struct ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_PlayerInput___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData Reset; +}; + +struct ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_PlayerInput___StaticFields { +}; + +struct ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_PlayerInput___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_PlayerInput___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_PlayerInput___VTable vtable; +}; + +struct CallbackArray_1_System_Action_1__8__VTable { +}; + +struct CallbackArray_1_System_Action_1__8__StaticFields { +}; + +struct CallbackArray_1_System_Action_1__8__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CallbackArray_1_System_Action_1__8__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CallbackArray_1_System_Action_1__8__VTable vtable; +}; + +struct PlayerInput___VTable { +}; + +struct PlayerInput___StaticFields { +}; + +struct PlayerInput___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PlayerInput___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PlayerInput___VTable vtable; +}; + +struct List_1_T_Enumerator_Cinemachine_CinemachineCollider_VcamExtraState_ { + struct List_1_Cinemachine_CinemachineCollider_VcamExtraState_ *_list; + int32_t _index; + int32_t _version; + struct CinemachineCollider_VcamExtraState *_current; +}; + +struct List_1_T_Enumerator_Cinemachine_CinemachineCollider_VcamExtraState___Boxed { + struct List_1_T_Enumerator_Cinemachine_CinemachineCollider_VcamExtraState___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_Cinemachine_CinemachineCollider_VcamExtraState_ fields; +}; + +struct __declspec(align(8)) List_1_Cinemachine_CinemachineCollider_VcamExtraState___Fields { + struct CinemachineCollider_VcamExtraState__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Cinemachine_CinemachineCollider_VcamExtraState_ { + struct List_1_Cinemachine_CinemachineCollider_VcamExtraState___Class *klass; + MonitorData *monitor; + struct List_1_Cinemachine_CinemachineCollider_VcamExtraState___Fields fields; +}; + +struct CinemachineCollider_VcamExtraState__Array { + struct CinemachineCollider_VcamExtraState__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct CinemachineCollider_VcamExtraState *vector[32]; +}; + +struct IEnumerator_1_Cinemachine_CinemachineCollider_VcamExtraState_ { + struct IEnumerator_1_Cinemachine_CinemachineCollider_VcamExtraState___Class *klass; + MonitorData *monitor; +}; + +struct CinemachineCollider_VcamExtraState__Array__VTable { +}; + +struct CinemachineCollider_VcamExtraState__Array__StaticFields { +}; + +struct CinemachineCollider_VcamExtraState__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CinemachineCollider_VcamExtraState__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CinemachineCollider_VcamExtraState__Array__VTable vtable; +}; + +struct IEnumerator_1_Cinemachine_CinemachineCollider_VcamExtraState___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_Cinemachine_CinemachineCollider_VcamExtraState___StaticFields { +}; + +struct IEnumerator_1_Cinemachine_CinemachineCollider_VcamExtraState___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_Cinemachine_CinemachineCollider_VcamExtraState___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_Cinemachine_CinemachineCollider_VcamExtraState___VTable vtable; +}; + +struct List_1_Cinemachine_CinemachineCollider_VcamExtraState___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_Cinemachine_CinemachineCollider_VcamExtraState___StaticFields { + struct CinemachineCollider_VcamExtraState__Array *s_emptyArray; +}; + +struct List_1_Cinemachine_CinemachineCollider_VcamExtraState___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Cinemachine_CinemachineCollider_VcamExtraState___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Cinemachine_CinemachineCollider_VcamExtraState___VTable vtable; +}; + +struct List_1_T_Enumerator_Cinemachine_CinemachineCollider_VcamExtraState___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_Cinemachine_CinemachineCollider_VcamExtraState___StaticFields { +}; + +struct List_1_T_Enumerator_Cinemachine_CinemachineCollider_VcamExtraState___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_Cinemachine_CinemachineCollider_VcamExtraState___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_Cinemachine_CinemachineCollider_VcamExtraState___VTable vtable; +}; + +struct RuntimeUtility { + struct RuntimeUtility__Class *klass; + MonitorData *monitor; +}; + +struct RuntimeUtility__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct RuntimeUtility__StaticFields { + struct RaycastHit__Array *s_HitBuffer; + struct Int32__Array *s_PenetrationIndexBuffer; + struct SphereCollider *s_ScratchCollider; + struct GameObject *s_ScratchColliderGameObject; +}; + +struct RuntimeUtility__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RuntimeUtility__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RuntimeUtility__VTable vtable; +}; + +struct UnityAction_1_Cinemachine_CinemachineBrain___Fields { + struct MulticastDelegate__Fields _; +}; + +struct UnityAction_1_Cinemachine_CinemachineBrain_ { + struct UnityAction_1_Cinemachine_CinemachineBrain___Class *klass; + MonitorData *monitor; + struct UnityAction_1_Cinemachine_CinemachineBrain___Fields fields; +}; + +struct UnityAction_1_Cinemachine_CinemachineBrain___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct UnityAction_1_Cinemachine_CinemachineBrain___StaticFields { +}; + +struct UnityAction_1_Cinemachine_CinemachineBrain___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UnityAction_1_Cinemachine_CinemachineBrain___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UnityAction_1_Cinemachine_CinemachineBrain___VTable vtable; +}; + +struct ScriptPlayable_1_CinemachineMixer_ { + struct PlayableHandle m_Handle; +}; + +struct ScriptPlayable_1_CinemachineMixer___Boxed { + struct ScriptPlayable_1_CinemachineMixer___Class *klass; + MonitorData *monitor; + struct ScriptPlayable_1_CinemachineMixer_ fields; +}; + +struct ScriptPlayable_1_CinemachineMixer___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData GetHandle; + VirtualInvokeData Equals_1; +}; + +struct ScriptPlayable_1_CinemachineMixer___StaticFields { + struct ScriptPlayable_1_CinemachineMixer_ m_NullPlayable; +}; + +struct ScriptPlayable_1_CinemachineMixer___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ScriptPlayable_1_CinemachineMixer___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ScriptPlayable_1_CinemachineMixer___VTable vtable; +}; + +struct ScriptPlayable_1_CinemachineShotPlayable_ { + struct PlayableHandle m_Handle; +}; + +struct ScriptPlayable_1_CinemachineShotPlayable___Boxed { + struct ScriptPlayable_1_CinemachineShotPlayable___Class *klass; + MonitorData *monitor; + struct ScriptPlayable_1_CinemachineShotPlayable_ fields; +}; + +struct ScriptPlayable_1_CinemachineShotPlayable___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData GetHandle; + VirtualInvokeData Equals_1; +}; + +struct ScriptPlayable_1_CinemachineShotPlayable___StaticFields { + struct ScriptPlayable_1_CinemachineShotPlayable_ m_NullPlayable; +}; + +struct ScriptPlayable_1_CinemachineShotPlayable___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ScriptPlayable_1_CinemachineShotPlayable___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ScriptPlayable_1_CinemachineShotPlayable___VTable vtable; +}; + +struct WdfFFcMoZkFeQDYdsleBlfRGSwSrA { + struct WdfFFcMoZkFeQDYdsleBlfRGSwSrA__Class *klass; + MonitorData *monitor; +}; + +struct WdfFFcMoZkFeQDYdsleBlfRGSwSrA__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct WdfFFcMoZkFeQDYdsleBlfRGSwSrA__StaticFields { + int32_t UTdnvozCpFbOmYHfEPKxFnVypnkb; + struct ThreadHelper_1 *HxYaALsNeYAsOotWEAIlBlXGXNZSA; + struct ThreadHelper_1 *zmfAjoRdVrTClZqqORDQBHLdfYlK; +}; + +struct WdfFFcMoZkFeQDYdsleBlfRGSwSrA__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct WdfFFcMoZkFeQDYdsleBlfRGSwSrA__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct WdfFFcMoZkFeQDYdsleBlfRGSwSrA__VTable vtable; +}; + +struct Comparison_1_kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Comparison_1_kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ_ { + struct Comparison_1_kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ___Class *klass; + MonitorData *monitor; + struct Comparison_1_kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ___Fields fields; +}; + +struct Comparison_1_kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Comparison_1_kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ___StaticFields { +}; + +struct Comparison_1_kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Comparison_1_kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Comparison_1_kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ___VTable vtable; +}; + +struct Action_1_kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_1_kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ_ { + struct Action_1_kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ___Class *klass; + MonitorData *monitor; + struct Action_1_kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ___Fields fields; +}; + +struct Action_1_kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_1_kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ___StaticFields { +}; + +struct Action_1_kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_1_kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_1_kFIrhYouotPQcJZqjklRXONdiOBk_uCLgzlbbAzifAnPAAgkjXFTwXGRJ___VTable vtable; +}; + +struct kRifoHaugYOIVQgpbAYhhKPHxyGy { + struct kRifoHaugYOIVQgpbAYhhKPHxyGy__Class *klass; + MonitorData *monitor; +}; + +struct kRifoHaugYOIVQgpbAYhhKPHxyGy__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct kRifoHaugYOIVQgpbAYhhKPHxyGy__StaticFields { + struct Guid__Array *gSAdswzCoJVfmCtoXmLtsnOCQmoC; + struct String__Array *bGPnSbXnfBESBgoqClvNgdSKYZlgA; +}; + +struct kRifoHaugYOIVQgpbAYhhKPHxyGy__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct kRifoHaugYOIVQgpbAYhhKPHxyGy__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct kRifoHaugYOIVQgpbAYhhKPHxyGy__VTable vtable; +}; + +struct JijFgftvqSztIyGNBBwSiwjdSDyIA { + struct JijFgftvqSztIyGNBBwSiwjdSDyIA__Class *klass; + MonitorData *monitor; +}; + +struct JijFgftvqSztIyGNBBwSiwjdSDyIA__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct JijFgftvqSztIyGNBBwSiwjdSDyIA__StaticFields { + struct Guid QihmogkIEufeCKHPLYxpGezSkOHS; + struct List_1_GTJWYMCBWUFmGJGFrEFOMdusHKKP_ *PGfdeVVFmUbJGkNHldoBKUTbDwuzA; + struct List_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV_ *HLksRRONdFHTmbaKRMvXasatcfrP; + struct List_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ *ROBMxPfhhbJiuNBegWSBavoLOzjR; + struct List_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux_ *fkPFjRbSiJgEIiGMmHxyMLfTzYwY; + struct bcOmlpGgwVCrecHKRjwdQzyizLQGA_zqrMMRRVlnxYQKhlRpOFkRpFWHlB SllVUsraGkstrtensGAJybxZJRO; + struct bcOmlpGgwVCrecHKRjwdQzyizLQGA_NezMPkGUwSkAcIJPJQDqPKqwcDUr CiGrPhZBHyORUguNPOcxfCgCDqjC; + struct NativeBuffer *WPsOCnXnYRBeukMYYKDpyPZdukfA; +}; + +struct JijFgftvqSztIyGNBBwSiwjdSDyIA__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct JijFgftvqSztIyGNBBwSiwjdSDyIA__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct JijFgftvqSztIyGNBBwSiwjdSDyIA__VTable vtable; +}; + +struct Comparison_1_YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Comparison_1_YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE_ { + struct Comparison_1_YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE___Class *klass; + MonitorData *monitor; + struct Comparison_1_YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE___Fields fields; +}; + +struct Comparison_1_YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Comparison_1_YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE___StaticFields { +}; + +struct Comparison_1_YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Comparison_1_YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Comparison_1_YbqFPqlOhPbwgAIFLLewBFaMbWuFb_oLwEviYOiItomPgOBAhPQfTWWvE___VTable vtable; +}; + +struct __declspec(align(8)) InputSourceWrapper_1_HhyJayjEkazMHJnFosltszjdHjxA___Fields { + struct HhyJayjEkazMHJnFosltszjdHjxA *GbKIJKjLnZELMDXMczPtmIUrOgIkA; + bool eIuesTMfdyQoDfpIQeBgmzDBKKjJ; +}; + +struct InputSourceWrapper_1_HhyJayjEkazMHJnFosltszjdHjxA_ { + struct InputSourceWrapper_1_HhyJayjEkazMHJnFosltszjdHjxA___Class *klass; + MonitorData *monitor; + struct InputSourceWrapper_1_HhyJayjEkazMHJnFosltszjdHjxA___Fields fields; +}; + +struct InputSourceWrapper_1_HhyJayjEkazMHJnFosltszjdHjxA___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Dispose; + VirtualInvokeData add_DeviceChangedEvent; + VirtualInvokeData remove_DeviceChangedEvent; + VirtualInvokeData SystemDeviceConnected; + VirtualInvokeData SystemDeviceDisconnected; + VirtualInvokeData Update; + VirtualInvokeData UpdateDevices; + VirtualInvokeData UpdateFinished; + VirtualInvokeData GetJoysticks; + VirtualInvokeData Dispose_1; +}; + +struct InputSourceWrapper_1_HhyJayjEkazMHJnFosltszjdHjxA___StaticFields { +}; + +struct InputSourceWrapper_1_HhyJayjEkazMHJnFosltszjdHjxA___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputSourceWrapper_1_HhyJayjEkazMHJnFosltszjdHjxA___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputSourceWrapper_1_HhyJayjEkazMHJnFosltszjdHjxA___VTable vtable; +}; + +struct hiSgTAFBTWThXmDdbqoAIHMqUpdgb { + struct hiSgTAFBTWThXmDdbqoAIHMqUpdgb__Class *klass; + MonitorData *monitor; +}; + +struct hiSgTAFBTWThXmDdbqoAIHMqUpdgb__VTable { + VirtualInvokeData BgimFqYTebpHqGWMHEgeCefhVkgl; + VirtualInvokeData BorRHwhuBiTvRZMdtgCGkDFayqbW; + VirtualInvokeData azSCfikvsSTPlfZCRzBxezEuSPHAA; + VirtualInvokeData aCvLNldqDoPkRMLcsDAIUWASDkQD; + VirtualInvokeData pXJIvseAMVvmANrupszHbWGUCxQQ; + VirtualInvokeData KCWXtCNmyaBAVNVKiwamZbSfRlcg; + VirtualInvokeData qswRDPqPXxjxZTkaZbOVZAojugCF; + VirtualInvokeData NzimPcZjjJRxCAkLSbXhBpIIpebY; + VirtualInvokeData yARcrahMnpbQNvAFehnEYkHcMbUnA; + VirtualInvokeData PeVeCAmPjSlEAfSjxCxIVmTMHyOe; + VirtualInvokeData qhdIFsuNTJOelgMlDIsOpcILzzFc; + VirtualInvokeData jHLchiBhIAwoDQnheKsBNdcFPbicA; + VirtualInvokeData PihkTuBwuXLwjuwNhMStzVhfwlQV; + VirtualInvokeData zRKKKxhkoOArpcmrZNscrEthKMVOA; + VirtualInvokeData UpdateFinished; + VirtualInvokeData Acquire; + VirtualInvokeData Unacquire; +}; + +struct hiSgTAFBTWThXmDdbqoAIHMqUpdgb__StaticFields { +}; + +struct hiSgTAFBTWThXmDdbqoAIHMqUpdgb__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct hiSgTAFBTWThXmDdbqoAIHMqUpdgb__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct hiSgTAFBTWThXmDdbqoAIHMqUpdgb__VTable vtable; +}; + +struct ICollection_1_znMZhiOLtznjGEIVUrVliWSuIivu_ { + struct ICollection_1_znMZhiOLtznjGEIVUrVliWSuIivu___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_znMZhiOLtznjGEIVUrVliWSuIivu___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_znMZhiOLtznjGEIVUrVliWSuIivu___StaticFields { +}; + +struct ICollection_1_znMZhiOLtznjGEIVUrVliWSuIivu___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_znMZhiOLtznjGEIVUrVliWSuIivu___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_znMZhiOLtznjGEIVUrVliWSuIivu___VTable vtable; +}; + +struct IEnumerable_1_IEpqttsJBVpdPbiISguYNqxToTKd_ { + struct IEnumerable_1_IEpqttsJBVpdPbiISguYNqxToTKd___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_IEpqttsJBVpdPbiISguYNqxToTKd___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_IEpqttsJBVpdPbiISguYNqxToTKd___StaticFields { +}; + +struct IEnumerable_1_IEpqttsJBVpdPbiISguYNqxToTKd___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_IEpqttsJBVpdPbiISguYNqxToTKd___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_IEpqttsJBVpdPbiISguYNqxToTKd___VTable vtable; +}; + +struct ICollection_1_xHrRgXbpglyyLcUqeKrUBIwiHmMg_ { + struct ICollection_1_xHrRgXbpglyyLcUqeKrUBIwiHmMg___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_xHrRgXbpglyyLcUqeKrUBIwiHmMg___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_xHrRgXbpglyyLcUqeKrUBIwiHmMg___StaticFields { +}; + +struct ICollection_1_xHrRgXbpglyyLcUqeKrUBIwiHmMg___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_xHrRgXbpglyyLcUqeKrUBIwiHmMg___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_xHrRgXbpglyyLcUqeKrUBIwiHmMg___VTable vtable; +}; + +struct ICollection_1_IEpqttsJBVpdPbiISguYNqxToTKd_ { + struct ICollection_1_IEpqttsJBVpdPbiISguYNqxToTKd___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_IEpqttsJBVpdPbiISguYNqxToTKd___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_IEpqttsJBVpdPbiISguYNqxToTKd___StaticFields { +}; + +struct ICollection_1_IEpqttsJBVpdPbiISguYNqxToTKd___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_IEpqttsJBVpdPbiISguYNqxToTKd___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_IEpqttsJBVpdPbiISguYNqxToTKd___VTable vtable; +}; + +struct IEnumerable_1_Cinemachine_CinemachineComponentBase_ { + struct IEnumerable_1_Cinemachine_CinemachineComponentBase___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_Cinemachine_CinemachineComponentBase___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_Cinemachine_CinemachineComponentBase___StaticFields { +}; + +struct IEnumerable_1_Cinemachine_CinemachineComponentBase___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_Cinemachine_CinemachineComponentBase___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_Cinemachine_CinemachineComponentBase___VTable vtable; +}; + +struct __declspec(align(8)) List_1_Cinemachine_CinemachineComponentBase___Fields { + struct CinemachineComponentBase__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Cinemachine_CinemachineComponentBase_ { + struct List_1_Cinemachine_CinemachineComponentBase___Class *klass; + MonitorData *monitor; + struct List_1_Cinemachine_CinemachineComponentBase___Fields fields; +}; + +struct IEnumerator_1_Cinemachine_CinemachineComponentBase_ { + struct IEnumerator_1_Cinemachine_CinemachineComponentBase___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerator_1_Cinemachine_CinemachineComponentBase___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_Cinemachine_CinemachineComponentBase___StaticFields { +}; + +struct IEnumerator_1_Cinemachine_CinemachineComponentBase___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_Cinemachine_CinemachineComponentBase___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_Cinemachine_CinemachineComponentBase___VTable vtable; +}; + +struct List_1_Cinemachine_CinemachineComponentBase___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_Cinemachine_CinemachineComponentBase___StaticFields { + struct CinemachineComponentBase__Array *s_emptyArray; +}; + +struct List_1_Cinemachine_CinemachineComponentBase___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Cinemachine_CinemachineComponentBase___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Cinemachine_CinemachineComponentBase___VTable vtable; +}; + +struct IBindingList { + struct IBindingList__Class *klass; + MonitorData *monitor; +}; + +struct IBindingList__VTable { + VirtualInvokeData get_AllowNew; + VirtualInvokeData AddNew; + VirtualInvokeData get_AllowEdit; + VirtualInvokeData get_AllowRemove; + VirtualInvokeData get_SupportsChangeNotification; + VirtualInvokeData get_SupportsSearching; + VirtualInvokeData get_SupportsSorting; + VirtualInvokeData get_IsSorted; + VirtualInvokeData get_SortProperty; + VirtualInvokeData get_SortDirection; + VirtualInvokeData add_ListChanged; + VirtualInvokeData remove_ListChanged; + VirtualInvokeData AddIndex; + VirtualInvokeData ApplySort; + VirtualInvokeData Find; + VirtualInvokeData RemoveIndex; + VirtualInvokeData RemoveSort; +}; + +struct IBindingList__StaticFields { +}; + +struct IBindingList__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IBindingList__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IBindingList__VTable vtable; +}; + +struct INotifyPropertyChanged { + struct INotifyPropertyChanged__Class *klass; + MonitorData *monitor; +}; + +struct INotifyPropertyChanged__VTable { + VirtualInvokeData add_PropertyChanged; + VirtualInvokeData remove_PropertyChanged; +}; + +struct INotifyPropertyChanged__StaticFields { +}; + +struct INotifyPropertyChanged__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct INotifyPropertyChanged__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct INotifyPropertyChanged__VTable vtable; +}; + +#if defined(_CPLUSPLUS_) +enum class HID_Simulation__Enum : int32_t { + Undefined = 0x00000000, + FlightSimulationDevice = 0x00000001, + AutomobileSimulationDevice = 0x00000002, + TankSimulationDevice = 0x00000003, + SpaceshipSimulationDevice = 0x00000004, + SubmarineSimulationDevice = 0x00000005, + SailingSimulationDevice = 0x00000006, + MotorcycleSimulationDevice = 0x00000007, + SportsSimulationDevice = 0x00000008, + AirplaneSimulationDevice = 0x00000009, + HelicopterSimulationDevice = 0x0000000a, + MagicCarpetSimulationDevice = 0x0000000b, + BicylcleSimulationDevice = 0x0000000c, + FlightControlStick = 0x00000020, + FlightStick = 0x00000021, + CyclicControl = 0x00000022, + CyclicTrim = 0x00000023, + FlightYoke = 0x00000024, + TrackControl = 0x00000025, + Aileron = 0x000000b0, + AileronTrim = 0x000000b1, + AntiTorqueControl = 0x000000b2, + AutopilotEnable = 0x000000b3, + ChaffRelease = 0x000000b4, + CollectiveControl = 0x000000b5, + DiveBreak = 0x000000b6, + ElectronicCountermeasures = 0x000000b7, + Elevator = 0x000000b8, + ElevatorTrim = 0x000000b9, + Rudder = 0x000000ba, + Throttle = 0x000000bb, + FlightCommunications = 0x000000bc, + FlareRelease = 0x000000bd, + LandingGear = 0x000000be, + ToeBreak = 0x000000bf, + Trigger = 0x000000c0, + WeaponsArm = 0x000000c1, + WeaponsSelect = 0x000000c2, + WingFlaps = 0x000000c3, + Accelerator = 0x000000c4, + Brake = 0x000000c5, + Clutch = 0x000000c6, + Shifter = 0x000000c7, + Steering = 0x000000c8, + TurretDirection = 0x000000c9, + BarrelElevation = 0x000000ca, + DivePlane = 0x000000cb, + Ballast = 0x000000cc, + BicycleCrank = 0x000000cd, + HandleBars = 0x000000ce, + FrontBrake = 0x000000cf, + RearBrake = 0x000000d0, +}; + +#else +enum HID_Simulation__Enum { + HID_Simulation__Enum_Undefined = 0x00000000, + HID_Simulation__Enum_FlightSimulationDevice = 0x00000001, + HID_Simulation__Enum_AutomobileSimulationDevice = 0x00000002, + HID_Simulation__Enum_TankSimulationDevice = 0x00000003, + HID_Simulation__Enum_SpaceshipSimulationDevice = 0x00000004, + HID_Simulation__Enum_SubmarineSimulationDevice = 0x00000005, + HID_Simulation__Enum_SailingSimulationDevice = 0x00000006, + HID_Simulation__Enum_MotorcycleSimulationDevice = 0x00000007, + HID_Simulation__Enum_SportsSimulationDevice = 0x00000008, + HID_Simulation__Enum_AirplaneSimulationDevice = 0x00000009, + HID_Simulation__Enum_HelicopterSimulationDevice = 0x0000000a, + HID_Simulation__Enum_MagicCarpetSimulationDevice = 0x0000000b, + HID_Simulation__Enum_BicylcleSimulationDevice = 0x0000000c, + HID_Simulation__Enum_FlightControlStick = 0x00000020, + HID_Simulation__Enum_FlightStick = 0x00000021, + HID_Simulation__Enum_CyclicControl = 0x00000022, + HID_Simulation__Enum_CyclicTrim = 0x00000023, + HID_Simulation__Enum_FlightYoke = 0x00000024, + HID_Simulation__Enum_TrackControl = 0x00000025, + HID_Simulation__Enum_Aileron = 0x000000b0, + HID_Simulation__Enum_AileronTrim = 0x000000b1, + HID_Simulation__Enum_AntiTorqueControl = 0x000000b2, + HID_Simulation__Enum_AutopilotEnable = 0x000000b3, + HID_Simulation__Enum_ChaffRelease = 0x000000b4, + HID_Simulation__Enum_CollectiveControl = 0x000000b5, + HID_Simulation__Enum_DiveBreak = 0x000000b6, + HID_Simulation__Enum_ElectronicCountermeasures = 0x000000b7, + HID_Simulation__Enum_Elevator = 0x000000b8, + HID_Simulation__Enum_ElevatorTrim = 0x000000b9, + HID_Simulation__Enum_Rudder = 0x000000ba, + HID_Simulation__Enum_Throttle = 0x000000bb, + HID_Simulation__Enum_FlightCommunications = 0x000000bc, + HID_Simulation__Enum_FlareRelease = 0x000000bd, + HID_Simulation__Enum_LandingGear = 0x000000be, + HID_Simulation__Enum_ToeBreak = 0x000000bf, + HID_Simulation__Enum_Trigger = 0x000000c0, + HID_Simulation__Enum_WeaponsArm = 0x000000c1, + HID_Simulation__Enum_WeaponsSelect = 0x000000c2, + HID_Simulation__Enum_WingFlaps = 0x000000c3, + HID_Simulation__Enum_Accelerator = 0x000000c4, + HID_Simulation__Enum_Brake = 0x000000c5, + HID_Simulation__Enum_Clutch = 0x000000c6, + HID_Simulation__Enum_Shifter = 0x000000c7, + HID_Simulation__Enum_Steering = 0x000000c8, + HID_Simulation__Enum_TurretDirection = 0x000000c9, + HID_Simulation__Enum_BarrelElevation = 0x000000ca, + HID_Simulation__Enum_DivePlane = 0x000000cb, + HID_Simulation__Enum_Ballast = 0x000000cc, + HID_Simulation__Enum_BicycleCrank = 0x000000cd, + HID_Simulation__Enum_HandleBars = 0x000000ce, + HID_Simulation__Enum_FrontBrake = 0x000000cf, + HID_Simulation__Enum_RearBrake = 0x000000d0, +}; + +#endif +struct HID_Simulation__Enum__Boxed { + struct HID_Simulation__Enum__Class *klass; + MonitorData *monitor; + #if defined(_CPLUSPLUS_) + HID_Simulation__Enum value; + #else + int32_t value; + #endif +}; + +struct HID_Simulation__Enum__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData CompareTo; + VirtualInvokeData ToString_1; + VirtualInvokeData GetTypeCode; + VirtualInvokeData System_IConvertible_ToBoolean; + VirtualInvokeData System_IConvertible_ToChar; + VirtualInvokeData System_IConvertible_ToSByte; + VirtualInvokeData System_IConvertible_ToByte; + VirtualInvokeData System_IConvertible_ToInt16; + VirtualInvokeData System_IConvertible_ToUInt16; + VirtualInvokeData System_IConvertible_ToInt32; + VirtualInvokeData System_IConvertible_ToUInt32; + VirtualInvokeData System_IConvertible_ToInt64; + VirtualInvokeData System_IConvertible_ToUInt64; + VirtualInvokeData System_IConvertible_ToSingle; + VirtualInvokeData System_IConvertible_ToDouble; + VirtualInvokeData System_IConvertible_ToDecimal; + VirtualInvokeData System_IConvertible_ToDateTime; + VirtualInvokeData ToString_2; + VirtualInvokeData System_IConvertible_ToType; +}; + +struct HID_Simulation__Enum__StaticFields { +}; + +struct HID_Simulation__Enum__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HID_Simulation__Enum__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HID_Simulation__Enum__VTable vtable; +}; + +struct Nullable_1_UnityEngine_RenderMode_ { + bool hasValue; + #if defined(_CPLUSPLUS_) + RenderMode__Enum value; + #else + int32_t value; + #endif +}; + +struct Nullable_1_UnityEngine_RenderMode___Boxed { + struct Nullable_1_UnityEngine_RenderMode___Class *klass; + MonitorData *monitor; + struct Nullable_1_UnityEngine_RenderMode_ fields; +}; + +struct Nullable_1_UnityEngine_RenderMode___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Nullable_1_UnityEngine_RenderMode___StaticFields { +}; + +struct Nullable_1_UnityEngine_RenderMode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Nullable_1_UnityEngine_RenderMode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Nullable_1_UnityEngine_RenderMode___VTable vtable; +}; + +struct Nullable_1_UnityEngine_InputSystem_LowLevel_MouseButton_ { + bool hasValue; + #if defined(_CPLUSPLUS_) + MouseButton__Enum value; + #else + int32_t value; + #endif +}; + +struct Nullable_1_UnityEngine_InputSystem_LowLevel_MouseButton___Boxed { + struct Nullable_1_UnityEngine_InputSystem_LowLevel_MouseButton___Class *klass; + MonitorData *monitor; + struct Nullable_1_UnityEngine_InputSystem_LowLevel_MouseButton_ fields; +}; + +struct Nullable_1_UnityEngine_InputSystem_LowLevel_MouseButton___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Nullable_1_UnityEngine_InputSystem_LowLevel_MouseButton___StaticFields { +}; + +struct Nullable_1_UnityEngine_InputSystem_LowLevel_MouseButton___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Nullable_1_UnityEngine_InputSystem_LowLevel_MouseButton___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Nullable_1_UnityEngine_InputSystem_LowLevel_MouseButton___VTable vtable; +}; + +struct Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1__2 { + bool hasValue; + struct ReadOnlyArray_1_UnityEngine_InputSystem_InputControl_ value; +}; + +struct Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1__2__Boxed { + struct Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1__2__Class *klass; + MonitorData *monitor; + struct Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1__2 fields; +}; + +struct Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1__2__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1__2__StaticFields { +}; + +struct Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1__2__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1__2__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Nullable_1_UnityEngine_InputSystem_Utilities_ReadOnlyArray_1__2__VTable vtable; +}; + +struct __declspec(align(8)) List_1_VmygOaZMePMYixMwHDTZwiDTgTwx_ynkBgOqbpMPRxusAAQsgHOtlPSzd___Fields { + struct VmygOaZMePMYixMwHDTZwiDTgTwx_ynkBgOqbpMPRxusAAQsgHOtlPSzd__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_VmygOaZMePMYixMwHDTZwiDTgTwx_ynkBgOqbpMPRxusAAQsgHOtlPSzd_ { + struct List_1_VmygOaZMePMYixMwHDTZwiDTgTwx_ynkBgOqbpMPRxusAAQsgHOtlPSzd___Class *klass; + MonitorData *monitor; + struct List_1_VmygOaZMePMYixMwHDTZwiDTgTwx_ynkBgOqbpMPRxusAAQsgHOtlPSzd___Fields fields; +}; + +struct IEnumerator_1_VmygOaZMePMYixMwHDTZwiDTgTwx_ynkBgOqbpMPRxusAAQsgHOtlPSzd_ { + struct IEnumerator_1_VmygOaZMePMYixMwHDTZwiDTgTwx_ynkBgOqbpMPRxusAAQsgHOtlPSzd___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerator_1_VmygOaZMePMYixMwHDTZwiDTgTwx_ynkBgOqbpMPRxusAAQsgHOtlPSzd___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_VmygOaZMePMYixMwHDTZwiDTgTwx_ynkBgOqbpMPRxusAAQsgHOtlPSzd___StaticFields { +}; + +struct IEnumerator_1_VmygOaZMePMYixMwHDTZwiDTgTwx_ynkBgOqbpMPRxusAAQsgHOtlPSzd___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_VmygOaZMePMYixMwHDTZwiDTgTwx_ynkBgOqbpMPRxusAAQsgHOtlPSzd___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_VmygOaZMePMYixMwHDTZwiDTgTwx_ynkBgOqbpMPRxusAAQsgHOtlPSzd___VTable vtable; +}; + +struct List_1_VmygOaZMePMYixMwHDTZwiDTgTwx_ynkBgOqbpMPRxusAAQsgHOtlPSzd___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_VmygOaZMePMYixMwHDTZwiDTgTwx_ynkBgOqbpMPRxusAAQsgHOtlPSzd___StaticFields { + struct VmygOaZMePMYixMwHDTZwiDTgTwx_ynkBgOqbpMPRxusAAQsgHOtlPSzd__Array *s_emptyArray; +}; + +struct List_1_VmygOaZMePMYixMwHDTZwiDTgTwx_ynkBgOqbpMPRxusAAQsgHOtlPSzd___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_VmygOaZMePMYixMwHDTZwiDTgTwx_ynkBgOqbpMPRxusAAQsgHOtlPSzd___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_VmygOaZMePMYixMwHDTZwiDTgTwx_ynkBgOqbpMPRxusAAQsgHOtlPSzd___VTable vtable; +}; + +struct __declspec(align(8)) List_1_VmygOaZMePMYixMwHDTZwiDTgTwx_BOxQKWlqJkCqZgYbdmKoWcSioOHg___Fields { + struct VmygOaZMePMYixMwHDTZwiDTgTwx_BOxQKWlqJkCqZgYbdmKoWcSioOHg__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_VmygOaZMePMYixMwHDTZwiDTgTwx_BOxQKWlqJkCqZgYbdmKoWcSioOHg_ { + struct List_1_VmygOaZMePMYixMwHDTZwiDTgTwx_BOxQKWlqJkCqZgYbdmKoWcSioOHg___Class *klass; + MonitorData *monitor; + struct List_1_VmygOaZMePMYixMwHDTZwiDTgTwx_BOxQKWlqJkCqZgYbdmKoWcSioOHg___Fields fields; +}; + +struct IEnumerator_1_VmygOaZMePMYixMwHDTZwiDTgTwx_BOxQKWlqJkCqZgYbdmKoWcSioOHg_ { + struct IEnumerator_1_VmygOaZMePMYixMwHDTZwiDTgTwx_BOxQKWlqJkCqZgYbdmKoWcSioOHg___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerator_1_VmygOaZMePMYixMwHDTZwiDTgTwx_BOxQKWlqJkCqZgYbdmKoWcSioOHg___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_VmygOaZMePMYixMwHDTZwiDTgTwx_BOxQKWlqJkCqZgYbdmKoWcSioOHg___StaticFields { +}; + +struct IEnumerator_1_VmygOaZMePMYixMwHDTZwiDTgTwx_BOxQKWlqJkCqZgYbdmKoWcSioOHg___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_VmygOaZMePMYixMwHDTZwiDTgTwx_BOxQKWlqJkCqZgYbdmKoWcSioOHg___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_VmygOaZMePMYixMwHDTZwiDTgTwx_BOxQKWlqJkCqZgYbdmKoWcSioOHg___VTable vtable; +}; + +struct List_1_VmygOaZMePMYixMwHDTZwiDTgTwx_BOxQKWlqJkCqZgYbdmKoWcSioOHg___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_VmygOaZMePMYixMwHDTZwiDTgTwx_BOxQKWlqJkCqZgYbdmKoWcSioOHg___StaticFields { + struct VmygOaZMePMYixMwHDTZwiDTgTwx_BOxQKWlqJkCqZgYbdmKoWcSioOHg__Array *s_emptyArray; +}; + +struct List_1_VmygOaZMePMYixMwHDTZwiDTgTwx_BOxQKWlqJkCqZgYbdmKoWcSioOHg___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_VmygOaZMePMYixMwHDTZwiDTgTwx_BOxQKWlqJkCqZgYbdmKoWcSioOHg___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_VmygOaZMePMYixMwHDTZwiDTgTwx_BOxQKWlqJkCqZgYbdmKoWcSioOHg___VTable vtable; +}; + +struct __declspec(align(8)) List_1_VmygOaZMePMYixMwHDTZwiDTgTwx_KSREqnFwehoxndHZqHzDjWxKkJsRA___Fields { + struct VmygOaZMePMYixMwHDTZwiDTgTwx_KSREqnFwehoxndHZqHzDjWxKkJsRA__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_VmygOaZMePMYixMwHDTZwiDTgTwx_KSREqnFwehoxndHZqHzDjWxKkJsRA_ { + struct List_1_VmygOaZMePMYixMwHDTZwiDTgTwx_KSREqnFwehoxndHZqHzDjWxKkJsRA___Class *klass; + MonitorData *monitor; + struct List_1_VmygOaZMePMYixMwHDTZwiDTgTwx_KSREqnFwehoxndHZqHzDjWxKkJsRA___Fields fields; +}; + +struct IEnumerator_1_VmygOaZMePMYixMwHDTZwiDTgTwx_KSREqnFwehoxndHZqHzDjWxKkJsRA_ { + struct IEnumerator_1_VmygOaZMePMYixMwHDTZwiDTgTwx_KSREqnFwehoxndHZqHzDjWxKkJsRA___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerator_1_VmygOaZMePMYixMwHDTZwiDTgTwx_KSREqnFwehoxndHZqHzDjWxKkJsRA___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_VmygOaZMePMYixMwHDTZwiDTgTwx_KSREqnFwehoxndHZqHzDjWxKkJsRA___StaticFields { +}; + +struct IEnumerator_1_VmygOaZMePMYixMwHDTZwiDTgTwx_KSREqnFwehoxndHZqHzDjWxKkJsRA___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_VmygOaZMePMYixMwHDTZwiDTgTwx_KSREqnFwehoxndHZqHzDjWxKkJsRA___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_VmygOaZMePMYixMwHDTZwiDTgTwx_KSREqnFwehoxndHZqHzDjWxKkJsRA___VTable vtable; +}; + +struct List_1_VmygOaZMePMYixMwHDTZwiDTgTwx_KSREqnFwehoxndHZqHzDjWxKkJsRA___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_VmygOaZMePMYixMwHDTZwiDTgTwx_KSREqnFwehoxndHZqHzDjWxKkJsRA___StaticFields { + struct VmygOaZMePMYixMwHDTZwiDTgTwx_KSREqnFwehoxndHZqHzDjWxKkJsRA__Array *s_emptyArray; +}; + +struct List_1_VmygOaZMePMYixMwHDTZwiDTgTwx_KSREqnFwehoxndHZqHzDjWxKkJsRA___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_VmygOaZMePMYixMwHDTZwiDTgTwx_KSREqnFwehoxndHZqHzDjWxKkJsRA___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_VmygOaZMePMYixMwHDTZwiDTgTwx_KSREqnFwehoxndHZqHzDjWxKkJsRA___VTable vtable; +}; + +struct gWxrirpmIhQTmhziZnlXlEwmYtKB { + struct gWxrirpmIhQTmhziZnlXlEwmYtKB__Class *klass; + MonitorData *monitor; +}; + +struct gWxrirpmIhQTmhziZnlXlEwmYtKB__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct gWxrirpmIhQTmhziZnlXlEwmYtKB__StaticFields { + void *uDRjBaBnJiUapnvuHttehuCenMxs; + struct gWxrirpmIhQTmhziZnlXlEwmYtKB_IbcNXTjfAFwJOnxSjtEBZZvNbUMV ifMboiVCJbjccfSXyaXlmzIRZVQSA; +}; + +struct gWxrirpmIhQTmhziZnlXlEwmYtKB__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct gWxrirpmIhQTmhziZnlXlEwmYtKB__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct gWxrirpmIhQTmhziZnlXlEwmYtKB__VTable vtable; +}; + +struct ZMqjCYehEKqIQMMhejVBKtVTTPMf___VTable { +}; + +struct ZMqjCYehEKqIQMMhejVBKtVTTPMf___StaticFields { +}; + +struct ZMqjCYehEKqIQMMhejVBKtVTTPMf___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ZMqjCYehEKqIQMMhejVBKtVTTPMf___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ZMqjCYehEKqIQMMhejVBKtVTTPMf___VTable vtable; +}; + +struct qUaeyIgVCufmDzatlipvlpwBwlinA { + struct qUaeyIgVCufmDzatlipvlpwBwlinA__Class *klass; + MonitorData *monitor; +}; + +struct qUaeyIgVCufmDzatlipvlpwBwlinA__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct qUaeyIgVCufmDzatlipvlpwBwlinA__StaticFields { + void *nWgmIfStADjXXRRnImZxJWCgpXrv; + int32_t kvpvtPRKPyjDcaWHxtEBFwPvKKMBA; + int32_t nTdCsunstswpnWrtwfmIyWojKith; + int32_t spJSVqWdYcrdAiTbhdhpLKWlZaVn; + int32_t VxGCGMYSQBPLLZQFDqkpXZibpNZe; + int32_t rLfMftMwkqaEiSAizZCDgERwdfTW; + int32_t TktDAQexuWhzLUmULpmUtIRiQZJK; + int32_t NPrwffECgRixoAnGApOtrNOWRIsM; + int32_t FiFYJuPzlaezYWdKKEdLkfWHxSArA; + int32_t oMguQWxiIkvPCtqFdipsVblkkCyI; + int32_t hkqLLeurudVGapDemhtYvEmuJdvV; + int32_t EcFeZRaXvrtNHUqHAXKWaPTgJNGZA; + int32_t NCKBDNbowdRMooSkdHZhjuYWSNXS; + int32_t kmpXcZQglbDeXlmdAsbwaUfZhnaB; + int32_t YcGIObJyCwpvefcZGRJPDoyiaojVA; + int32_t prEvLVkPVZheIjKiyTPkIauNgWSiA; + int32_t miMqGDrJlyiNtFlYozemQDEJkQzfA; + int32_t jDhVkRKngRfqIRVFOjpGBzTUHZvqA; + int32_t HIJdTEhzFPQCRAKcuRIvGWbcfAGhc; + int32_t XGAbQFHgQVcFDZxwrzSeroRlEHJGb; + int32_t SdNFwgOOfbvnSJrGcpXgyQVTrlLp; + int32_t dCmGUlAggTWGLNMaHAqUeAxjVseac; + int32_t VosilkNbTqfmuJKdtvashOaTdalfb; + int32_t PBnOvHiexDSFpswKatXpZSEbVWQU; + int32_t TaiIquBTcTVTukivXpEFtpXTpDtE; + int32_t qtEdYYNiWpDrveteUYNWFmlGLOUFA; + int32_t qCAndAIkwmcjJpnHBUtjZsCejJoj; + int32_t EWhfCbOynxCUfkxlDrxBMzKHGhFM; + int32_t WARAGoAchmcAnYUGIoeWsTwzVrhQA; + int32_t TCRuNRroojbrigEOXDkcdISAqUvg; + int32_t diCHSSQuOoujALkhgvaYobZvVxgS; + int32_t OiVFcsAmQSVhXkDYXQFKaSdxRbhDb; + int32_t uioqfPBSmXxodDrIUjkAamHXXDBl; + int32_t MWqvvZLPHeRwGvEJcHcfZjXylrST; + int32_t MYGpAwGqLGrdavDzpbuyQdqsTEnr; + int32_t CJUuGBRfFOgybHYJtwDIWMVSpQQz; + int32_t vsTEtGBkgSHvuElfjSkvLyWaOsbC; + int32_t nrlpyygbBmdNAnhdbnpSgHPtbUfw; + int32_t FswocmieuMMvsXvuWevaciQpfgAM; + int32_t XiauQeEwJopphATGIxNCFLjMVvPI; + int32_t CvJYdfqgwgxxkhFzOTpXGDixbgcs; + int32_t jCaiXLhBAbblgAMKZTjVIbbHHTojB; + int32_t hcgtkTDzWGpCUsUtkNlvHLgtWnQP; + int32_t ILriYFrBcHslQdVvYHAXQbRnGFEP; + int32_t UdCERPVDGTofnYnzKZsZJljiewer; + int32_t XTFdbmXygCuxCJEUEuMjffJGHkbF; + int32_t GhrQdipJUdgExAtnRHJzCGQjrwoCc; + int32_t HUMZLFwgNUcJibJjFPujaJNmINYdA; + int32_t fkiZUKkheNISgepShefmWTDOVBLGA; + int32_t OcYSVPpJooOSqVvXtwQJrbSfapNA; + int32_t nFHAxegLwAsNWhYVFjXrqaxxOvnk; + int32_t pPbbMIURQYNPErULqdmgmGKnWOry; + int32_t EbaKgosutOBiHWIOjjlwPiEWaqoz; + int32_t GjvGsjCbFPBaGLAyaHVguIIvoXub; + int32_t rCddCBhYvLllHCRSrhiGbTlwNvYF; + int32_t oErGlpZdprAwOdsBAjCuEQLTGolC; + int32_t PSwfiyPDJNDvAqLRsgRaawFldOFEb; + int32_t gahvYKnJOTyQXNfmNKgUgyCWqtJe; + int32_t qSztJLIuRzWvJWdWVUruwXlEIAXO; + int32_t mIfvPJKKRDYDOxIGBCzIXipbVoUW; + int32_t BSqXUSrpfWAQSFVZieblXPWBqYwoA; + int32_t DpNVrmwvSHKTfAfSCBGRJxjbiwSPA; + int32_t HSnaxsfinWYzEUdgxCOlvMsFAeEt; + int32_t GsJlIbvqggQfIQBaPDBSiZjPJgagA; + int32_t amkpRVuoEUjikbUWfOBXBrpvsfdaA; + int32_t KnkhQymyPKFjhYJAXbKKgwuyWxNV; + int32_t JCnuFyxPrJZNzYPcBvPihHVHmHOR; + int32_t VanVSavIlukHiOUEeCDXJcoCrhan; + int32_t RVEGeugRZehfplnGKXXnRFRptxGm; + int32_t oYGbRpgXpkcqRLOaQkMOwyKIQEPfA; + int32_t sigTmQzEvZghhNJjIUWmHZsYrKnN; + int32_t OyNWULzFLVtHYzWeJEUXhfJYjuvb; + int32_t gTZLbflrKBeisrwanKdxoQBGAHpx; + int32_t XOLYJsRYaxBBdDTjYhPvOhlKegkcA; + int32_t bqJXfSSuPUSmwTncNXbqQRhtEHAr; + int32_t vrqIQlpaAitZXsgTvgfhaifFiPNW; + int32_t EVvCwytxvtVrjFAiXpcZGZkLEjXy; + int32_t iQvEYDFlUjDDNfrwUeTvEAffXAifb; + int32_t udbQkQyqbyQSMTLqxyQxskObWAFj; + int32_t DZTlgeQRhIBIfseEGIxBfPzBtaEm; + int32_t xFXUVBSDXEWUdQBKfSgiwxdJltfp; + int32_t hsrFELIFDwtxfXWDoGSQfOUmlSKVA; + int32_t amKhmxCFbywGVggzJBaziWGfWQnNA; + int32_t HBAGLAiEDbLIRGMJkFVvSYHkQfYgB; + int32_t ViveYikFpmcGGedTjlVpowkNvyZFA; + int32_t itmdsxFpphDwSukrOVsnjhJGnPtiA; + uint32_t IOfycPHFJhkrrkEPsobeSYwkaIWX; + uint32_t BrHMloFalMXDFbNUsgoRwRyNeIEB; + uint32_t uMCCMUiiZTxQtMalxSlDHjBqaexj; + uint32_t wIcupKEpOALGtcmULoMzHIsdCsMj; + uint32_t ZzvipMRqWPAuixAWaWRiFRizUGST; +}; + +struct qUaeyIgVCufmDzatlipvlpwBwlinA__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct qUaeyIgVCufmDzatlipvlpwBwlinA__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct qUaeyIgVCufmDzatlipvlpwBwlinA__VTable vtable; +}; + +struct RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__1__VTable { +}; + +struct RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__1__StaticFields { +}; + +struct RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RingBuffer_1_aQHgSHeigtcamfIWbNaiXaCiVwuq__1__VTable vtable; +}; + +struct Comparison_1_YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb_TKPMPusWChpubsSueSSSVXEvmtou___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Comparison_1_YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb_TKPMPusWChpubsSueSSSVXEvmtou_ { + struct Comparison_1_YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb_TKPMPusWChpubsSueSSSVXEvmtou___Class *klass; + MonitorData *monitor; + struct Comparison_1_YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb_TKPMPusWChpubsSueSSSVXEvmtou___Fields fields; +}; + +struct Comparison_1_YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb_TKPMPusWChpubsSueSSSVXEvmtou___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Comparison_1_YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb_TKPMPusWChpubsSueSSSVXEvmtou___StaticFields { +}; + +struct Comparison_1_YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb_TKPMPusWChpubsSueSSSVXEvmtou___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Comparison_1_YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb_TKPMPusWChpubsSueSSSVXEvmtou___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Comparison_1_YmMTSUgHoMLuIFBEDUyyrVpljvtC_LHAFzsdkugomaihLiXFtLXdsUbpEb_TKPMPusWChpubsSueSSSVXEvmtou___VTable vtable; +}; + +struct PQuGNDVjzWPOAlpBDAoMDUeWrfFdA { + struct PQuGNDVjzWPOAlpBDAoMDUeWrfFdA__Class *klass; + MonitorData *monitor; +}; + +struct PQuGNDVjzWPOAlpBDAoMDUeWrfFdA__VTable { + VirtualInvokeData OIelQbrIXLQOssWJuqphgoCJcKkf; +}; + +struct PQuGNDVjzWPOAlpBDAoMDUeWrfFdA__StaticFields { +}; + +struct PQuGNDVjzWPOAlpBDAoMDUeWrfFdA__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PQuGNDVjzWPOAlpBDAoMDUeWrfFdA__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PQuGNDVjzWPOAlpBDAoMDUeWrfFdA__VTable vtable; +}; + +struct yjqIYPGPZDRUzhLMmmIFEMNBhVMq { + struct yjqIYPGPZDRUzhLMmmIFEMNBhVMq__Class *klass; + MonitorData *monitor; +}; + +struct yjqIYPGPZDRUzhLMmmIFEMNBhVMq__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct yjqIYPGPZDRUzhLMmmIFEMNBhVMq__StaticFields { + void *HiabPowUiAquCNyUMIPsfaAIjRms; + int32_t RbFwRPvQEbQKfSqsngswXPGDuTTP; +}; + +struct yjqIYPGPZDRUzhLMmmIFEMNBhVMq__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct yjqIYPGPZDRUzhLMmmIFEMNBhVMq__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct yjqIYPGPZDRUzhLMmmIFEMNBhVMq__VTable vtable; +}; + +struct JRmFfGvKMkHFhkxbaEUMFVGagwzEc_ouwTfAcYoAaLZDOncmZQZbWsgBDx { + struct JRmFfGvKMkHFhkxbaEUMFVGagwzEc_ouwTfAcYoAaLZDOncmZQZbWsgBDx__Class *klass; + MonitorData *monitor; +}; + +struct JRmFfGvKMkHFhkxbaEUMFVGagwzEc_ouwTfAcYoAaLZDOncmZQZbWsgBDx__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct JRmFfGvKMkHFhkxbaEUMFVGagwzEc_ouwTfAcYoAaLZDOncmZQZbWsgBDx__StaticFields { + struct Guid oogSrRsOumcbRYhuOBnbfCXigQXTA; + void *NKcskZxrGmjFlOiLrFwudAswIbbSA; + bool vLDJUKACfZcwuaokIwTkdiuRIawFb; +}; + +struct JRmFfGvKMkHFhkxbaEUMFVGagwzEc_ouwTfAcYoAaLZDOncmZQZbWsgBDx__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct JRmFfGvKMkHFhkxbaEUMFVGagwzEc_ouwTfAcYoAaLZDOncmZQZbWsgBDx__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct JRmFfGvKMkHFhkxbaEUMFVGagwzEc_ouwTfAcYoAaLZDOncmZQZbWsgBDx__VTable vtable; +}; + +struct JRmFfGvKMkHFhkxbaEUMFVGagwzEc_ouwTfAcYoAaLZDOncmZQZbWsgBDx_bMrAxByDhWfvlfgRebXWLYWosqiWA { + int32_t tKgXiUwjXkFGAipCXHFBiMeKeiLLc; + int32_t NqeYzZxzjVMNMmxHoEbCHJjvPMg; + int32_t YcihruvkDCDWiQBJkoQHhmUaJdwb; + struct Guid hvcGNwvMNgdIJFThZhDybDOTUfuy; + int16_t MNseuOReddEsdOLmzAOKjKrRRJCc; +}; + +struct JRmFfGvKMkHFhkxbaEUMFVGagwzEc_ouwTfAcYoAaLZDOncmZQZbWsgBDx_bMrAxByDhWfvlfgRebXWLYWosqiWA__Boxed { + struct JRmFfGvKMkHFhkxbaEUMFVGagwzEc_ouwTfAcYoAaLZDOncmZQZbWsgBDx_bMrAxByDhWfvlfgRebXWLYWosqiWA__Class *klass; + MonitorData *monitor; + struct JRmFfGvKMkHFhkxbaEUMFVGagwzEc_ouwTfAcYoAaLZDOncmZQZbWsgBDx_bMrAxByDhWfvlfgRebXWLYWosqiWA fields; +}; + +struct JRmFfGvKMkHFhkxbaEUMFVGagwzEc_ouwTfAcYoAaLZDOncmZQZbWsgBDx_bMrAxByDhWfvlfgRebXWLYWosqiWA__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct JRmFfGvKMkHFhkxbaEUMFVGagwzEc_ouwTfAcYoAaLZDOncmZQZbWsgBDx_bMrAxByDhWfvlfgRebXWLYWosqiWA__StaticFields { +}; + +struct JRmFfGvKMkHFhkxbaEUMFVGagwzEc_ouwTfAcYoAaLZDOncmZQZbWsgBDx_bMrAxByDhWfvlfgRebXWLYWosqiWA__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct JRmFfGvKMkHFhkxbaEUMFVGagwzEc_ouwTfAcYoAaLZDOncmZQZbWsgBDx_bMrAxByDhWfvlfgRebXWLYWosqiWA__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct JRmFfGvKMkHFhkxbaEUMFVGagwzEc_ouwTfAcYoAaLZDOncmZQZbWsgBDx_bMrAxByDhWfvlfgRebXWLYWosqiWA__VTable vtable; +}; + +struct Func_2_UnityEngine_InputSystem_InputAction_Boolean___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_2_UnityEngine_InputSystem_InputAction_Boolean_ { + struct Func_2_UnityEngine_InputSystem_InputAction_Boolean___Class *klass; + MonitorData *monitor; + struct Func_2_UnityEngine_InputSystem_InputAction_Boolean___Fields fields; +}; + +struct Func_2_UnityEngine_InputSystem_InputAction_Boolean___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_2_UnityEngine_InputSystem_InputAction_Boolean___StaticFields { +}; + +struct Func_2_UnityEngine_InputSystem_InputAction_Boolean___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_2_UnityEngine_InputSystem_InputAction_Boolean___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_2_UnityEngine_InputSystem_InputAction_Boolean___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Transform_Cinemachine_UpdateTracker_UpdateStatus_ { + struct Dictionary_2_UnityEngine_Transform_Cinemachine_UpdateTracker_UpdateStatus_ *_dictionary; + int32_t _version; + int32_t _index; + struct KeyValuePair_2_UnityEngine_Transform_Cinemachine_UpdateTracker_UpdateStatus_ _current; + int32_t _getEnumeratorRetType; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Transform_Cinemachine_UpdateTracker_UpdateStatus___Boxed { + struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Transform_Cinemachine_UpdateTracker_UpdateStatus___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Transform_Cinemachine_UpdateTracker_UpdateStatus_ fields; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Transform_Cinemachine_UpdateTracker_UpdateStatus___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Key; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Value; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Entry; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Transform_Cinemachine_UpdateTracker_UpdateStatus___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Transform_Cinemachine_UpdateTracker_UpdateStatus___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Transform_Cinemachine_UpdateTracker_UpdateStatus___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Transform_Cinemachine_UpdateTracker_UpdateStatus___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Transform_Cinemachine_TargetPositionCache_CacheEntry_ { + struct Dictionary_2_UnityEngine_Transform_Cinemachine_TargetPositionCache_CacheEntry_ *_dictionary; + int32_t _version; + int32_t _index; + struct KeyValuePair_2_UnityEngine_Transform_Cinemachine_TargetPositionCache_CacheEntry_ _current; + int32_t _getEnumeratorRetType; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Transform_Cinemachine_TargetPositionCache_CacheEntry___Boxed { + struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Transform_Cinemachine_TargetPositionCache_CacheEntry___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Transform_Cinemachine_TargetPositionCache_CacheEntry_ fields; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Transform_Cinemachine_TargetPositionCache_CacheEntry___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Key; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Value; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Entry; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Transform_Cinemachine_TargetPositionCache_CacheEntry___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Transform_Cinemachine_TargetPositionCache_CacheEntry___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Transform_Cinemachine_TargetPositionCache_CacheEntry___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Transform_Cinemachine_TargetPositionCache_CacheEntry___VTable vtable; +}; + +struct PointerId { + struct PointerId__Class *klass; + MonitorData *monitor; +}; + +struct PointerId__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct PointerId__StaticFields { + int32_t maxPointers; + int32_t invalidPointerId; + int32_t mousePointerId; + int32_t touchPointerIdBase; + int32_t touchPointerCount; + int32_t penPointerIdBase; + int32_t penPointerCount; + struct Int32__Array *hoveringPointers; +}; + +struct PointerId__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PointerId__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PointerId__VTable vtable; +}; + +struct List_1_T_Enumerator_List_1_Cinemachine_ClipperLib_IntPoint_ { + struct List_1_List_1_Cinemachine_ClipperLib_IntPoint_ *_list; + int32_t _index; + int32_t _version; + struct List_1_Cinemachine_ClipperLib_IntPoint_ *_current; +}; + +struct List_1_T_Enumerator_List_1_Cinemachine_ClipperLib_IntPoint___Boxed { + struct List_1_T_Enumerator_List_1_Cinemachine_ClipperLib_IntPoint___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_List_1_Cinemachine_ClipperLib_IntPoint_ fields; +}; + +struct List_1_T_Enumerator_List_1_Cinemachine_ClipperLib_IntPoint___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_List_1_Cinemachine_ClipperLib_IntPoint___StaticFields { +}; + +struct List_1_T_Enumerator_List_1_Cinemachine_ClipperLib_IntPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_List_1_Cinemachine_ClipperLib_IntPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_List_1_Cinemachine_ClipperLib_IntPoint___VTable vtable; +}; + +struct IEnumerable_1_List_1_Cinemachine_ClipperLib_IntPoint_ { + struct IEnumerable_1_List_1_Cinemachine_ClipperLib_IntPoint___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_List_1_Cinemachine_ClipperLib_IntPoint___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_List_1_Cinemachine_ClipperLib_IntPoint___StaticFields { +}; + +struct IEnumerable_1_List_1_Cinemachine_ClipperLib_IntPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_List_1_Cinemachine_ClipperLib_IntPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_List_1_Cinemachine_ClipperLib_IntPoint___VTable vtable; +}; + +struct ICinemachineTargetGroup___VTable { +}; + +struct ICinemachineTargetGroup___StaticFields { +}; + +struct ICinemachineTargetGroup___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICinemachineTargetGroup___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICinemachineTargetGroup___VTable vtable; +}; + +struct CinemachineVirtualCameraBase___VTable { +}; + +struct CinemachineVirtualCameraBase___StaticFields { +}; + +struct CinemachineVirtualCameraBase___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CinemachineVirtualCameraBase___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CinemachineVirtualCameraBase___VTable vtable; +}; + +struct IEnumerable_1_Cinemachine_CinemachineExtension_ { + struct IEnumerable_1_Cinemachine_CinemachineExtension___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_Cinemachine_CinemachineExtension___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_Cinemachine_CinemachineExtension___StaticFields { +}; + +struct IEnumerable_1_Cinemachine_CinemachineExtension___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_Cinemachine_CinemachineExtension___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_Cinemachine_CinemachineExtension___VTable vtable; +}; + +struct List_1_T_Enumerator_Cinemachine_ClipperLib_PolyNode_ { + struct List_1_Cinemachine_ClipperLib_PolyNode_ *_list; + int32_t _index; + int32_t _version; + struct ClipperLib_PolyNode *_current; +}; + +struct List_1_T_Enumerator_Cinemachine_ClipperLib_PolyNode___Boxed { + struct List_1_T_Enumerator_Cinemachine_ClipperLib_PolyNode___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_Cinemachine_ClipperLib_PolyNode_ fields; +}; + +struct List_1_T_Enumerator_Cinemachine_ClipperLib_PolyNode___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_Cinemachine_ClipperLib_PolyNode___StaticFields { +}; + +struct List_1_T_Enumerator_Cinemachine_ClipperLib_PolyNode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_Cinemachine_ClipperLib_PolyNode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_Cinemachine_ClipperLib_PolyNode___VTable vtable; +}; + +struct ClipperLib_OutPt__Array { + struct ClipperLib_OutPt__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct ClipperLib_OutPt *vector[32]; +}; + +struct ClipperLib_OutPt__Array__VTable { +}; + +struct ClipperLib_OutPt__Array__StaticFields { +}; + +struct ClipperLib_OutPt__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ClipperLib_OutPt__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ClipperLib_OutPt__Array__VTable vtable; +}; + +struct List_1_T_Enumerator_Cinemachine_ClipperLib_OutRec_ { + struct List_1_Cinemachine_ClipperLib_OutRec_ *_list; + int32_t _index; + int32_t _version; + struct ClipperLib_OutRec *_current; +}; + +struct List_1_T_Enumerator_Cinemachine_ClipperLib_OutRec___Boxed { + struct List_1_T_Enumerator_Cinemachine_ClipperLib_OutRec___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_Cinemachine_ClipperLib_OutRec_ fields; +}; + +struct List_1_T_Enumerator_Cinemachine_ClipperLib_OutRec___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_Cinemachine_ClipperLib_OutRec___StaticFields { +}; + +struct List_1_T_Enumerator_Cinemachine_ClipperLib_OutRec___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_Cinemachine_ClipperLib_OutRec___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_Cinemachine_ClipperLib_OutRec___VTable vtable; +}; + +struct Pointer___VTable { +}; + +struct Pointer___StaticFields { +}; + +struct Pointer___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Pointer___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Pointer___VTable vtable; +}; + +struct Finger___VTable { +}; + +struct Finger___StaticFields { +}; + +struct Finger___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Finger___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Finger___VTable vtable; +}; + +struct CallbackArray_1_System_Action_1__9__VTable { +}; + +struct CallbackArray_1_System_Action_1__9__StaticFields { +}; + +struct CallbackArray_1_System_Action_1__9__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CallbackArray_1_System_Action_1__9__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CallbackArray_1_System_Action_1__9__VTable vtable; +}; + +struct EnhancedTouchSupport { + struct EnhancedTouchSupport__Class *klass; + MonitorData *monitor; +}; + +struct EnhancedTouchSupport__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct EnhancedTouchSupport__StaticFields { + int32_t s_Enabled; + #if defined(_CPLUSPLUS_) + InputSettings_UpdateMode__Enum s_UpdateMode; + #else + int32_t s_UpdateMode; + #endif +}; + +struct EnhancedTouchSupport__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EnhancedTouchSupport__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EnhancedTouchSupport__VTable vtable; +}; + +struct HIDSupport { + struct HIDSupport__Class *klass; + MonitorData *monitor; +}; + +struct HIDSupport__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct HIDSupport__StaticFields { + struct HIDSupport_HIDPageUsage__Array *s_SupportedHIDUsages; +}; + +struct HIDSupport__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HIDSupport__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HIDSupport__VTable vtable; +}; + +struct HashSet_1_T_Enumerator_UnityEngine_Object_ { + struct HashSet_1_UnityEngine_Object_ *_set; + int32_t _index; + int32_t _version; + struct Object_1 *_current; +}; + +struct HashSet_1_T_Enumerator_UnityEngine_Object___Boxed { + struct HashSet_1_T_Enumerator_UnityEngine_Object___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Enumerator_UnityEngine_Object_ fields; +}; + +struct HashSet_1_T_Enumerator_UnityEngine_Object___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct HashSet_1_T_Enumerator_UnityEngine_Object___StaticFields { +}; + +struct HashSet_1_T_Enumerator_UnityEngine_Object___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_T_Enumerator_UnityEngine_Object___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_T_Enumerator_UnityEngine_Object___VTable vtable; +}; + +struct PooledObject_1_System_Collections_Generic_List_1__3 { + struct List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ *m_ToReturn; + struct IObjectPool_1_System_Collections_Generic_List_1__3 *m_Pool; +}; + +struct PooledObject_1_System_Collections_Generic_List_1__3__Boxed { + struct PooledObject_1_System_Collections_Generic_List_1__3__Class *klass; + MonitorData *monitor; + struct PooledObject_1_System_Collections_Generic_List_1__3 fields; +}; + +struct IObjectPool_1_System_Collections_Generic_List_1__3 { + struct IObjectPool_1_System_Collections_Generic_List_1__3__Class *klass; + MonitorData *monitor; +}; + +struct IObjectPool_1_System_Collections_Generic_List_1__3__VTable { + VirtualInvokeData Release; +}; + +struct IObjectPool_1_System_Collections_Generic_List_1__3__StaticFields { +}; + +struct IObjectPool_1_System_Collections_Generic_List_1__3__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IObjectPool_1_System_Collections_Generic_List_1__3__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IObjectPool_1_System_Collections_Generic_List_1__3__VTable vtable; +}; + +struct PooledObject_1_System_Collections_Generic_List_1__3__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_IDisposable_Dispose; +}; + +struct PooledObject_1_System_Collections_Generic_List_1__3__StaticFields { +}; + +struct PooledObject_1_System_Collections_Generic_List_1__3__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PooledObject_1_System_Collections_Generic_List_1__3__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PooledObject_1_System_Collections_Generic_List_1__3__VTable vtable; +}; + +struct List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__1__VTable { +}; + +struct List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__1__StaticFields { +}; + +struct List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor__1__VTable vtable; +}; + +struct List_1_T_Enumerator_UnityEngine_Rendering_PostProcessing_PostProcessEffectSettings_ { + struct List_1_UnityEngine_Rendering_PostProcessing_PostProcessEffectSettings_ *_list; + int32_t _index; + int32_t _version; + struct PostProcessEffectSettings *_current; +}; + +struct List_1_T_Enumerator_UnityEngine_Rendering_PostProcessing_PostProcessEffectSettings___Boxed { + struct List_1_T_Enumerator_UnityEngine_Rendering_PostProcessing_PostProcessEffectSettings___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_UnityEngine_Rendering_PostProcessing_PostProcessEffectSettings_ fields; +}; + +struct List_1_T_Enumerator_UnityEngine_Rendering_PostProcessing_PostProcessEffectSettings___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_UnityEngine_Rendering_PostProcessing_PostProcessEffectSettings___StaticFields { +}; + +struct List_1_T_Enumerator_UnityEngine_Rendering_PostProcessing_PostProcessEffectSettings___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_UnityEngine_Rendering_PostProcessing_PostProcessEffectSettings___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_UnityEngine_Rendering_PostProcessing_PostProcessEffectSettings___VTable vtable; +}; + +struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ { + struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) ObjectPool_1_System_Collections_Generic_List_1__4__Fields { + struct List_1_List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ *m_List; + struct Func_1_System_Collections_Generic_List_1__16 *m_CreateFunc; + struct Action_1_System_Collections_Generic_List_1__12 *m_ActionOnGet; + struct Action_1_System_Collections_Generic_List_1__12 *m_ActionOnRelease; + struct Action_1_System_Collections_Generic_List_1__12 *m_ActionOnDestroy; + int32_t m_MaxSize; + bool m_CollectionCheck; + int32_t _CountAll_k__BackingField; +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__4 { + struct ObjectPool_1_System_Collections_Generic_List_1__4__Class *klass; + MonitorData *monitor; + struct ObjectPool_1_System_Collections_Generic_List_1__4__Fields fields; +}; + +struct __declspec(align(8)) List_1_List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor___Fields { + struct List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor___Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ { + struct List_1_List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor___Class *klass; + MonitorData *monitor; + struct List_1_List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor___Fields fields; +}; + +struct List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor___Array { + struct List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ *vector[32]; +}; + +struct IEnumerator_1_List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor_ { + struct IEnumerator_1_List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor___Class *klass; + MonitorData *monitor; +}; + +struct Func_1_System_Collections_Generic_List_1__16__Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_1_System_Collections_Generic_List_1__16 { + struct Func_1_System_Collections_Generic_List_1__16__Class *klass; + MonitorData *monitor; + struct Func_1_System_Collections_Generic_List_1__16__Fields fields; +}; + +struct Action_1_System_Collections_Generic_List_1__12__Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_1_System_Collections_Generic_List_1__12 { + struct Action_1_System_Collections_Generic_List_1__12__Class *klass; + MonitorData *monitor; + struct Action_1_System_Collections_Generic_List_1__12__Fields fields; +}; + +struct List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor___Array__VTable { +}; + +struct List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor___Array__StaticFields { +}; + +struct List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor___Array__VTable vtable; +}; + +struct IEnumerator_1_List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor___StaticFields { +}; + +struct IEnumerator_1_List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor___VTable vtable; +}; + +struct List_1_List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor___StaticFields { + struct List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor___Array *s_emptyArray; +}; + +struct List_1_List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor___VTable vtable; +}; + +struct Func_1_System_Collections_Generic_List_1__16__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_1_System_Collections_Generic_List_1__16__StaticFields { +}; + +struct Func_1_System_Collections_Generic_List_1__16__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_1_System_Collections_Generic_List_1__16__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_1_System_Collections_Generic_List_1__16__VTable vtable; +}; + +struct Action_1_System_Collections_Generic_List_1__12__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_1_System_Collections_Generic_List_1__12__StaticFields { +}; + +struct Action_1_System_Collections_Generic_List_1__12__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_1_System_Collections_Generic_List_1__12__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_1_System_Collections_Generic_List_1__12__VTable vtable; +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__4__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Dispose; + VirtualInvokeData Release; + VirtualInvokeData get_CountInactive; + VirtualInvokeData Get; + VirtualInvokeData Get_1; + VirtualInvokeData Clear; +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__4__StaticFields { +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__4__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ObjectPool_1_System_Collections_Generic_List_1__4__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ObjectPool_1_System_Collections_Generic_List_1__4__VTable vtable; +}; + +struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor___StaticFields { + struct ObjectPool_1_System_Collections_Generic_List_1__4 *s_Pool; +}; + +struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_InputSystem_HID_HID_HIDElementDescriptor___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_Cinemachine_CinemachineBrain_UnityEngine_Rendering_PostProcessing_PostProcessLayer_ { + struct Dictionary_2_Cinemachine_CinemachineBrain_UnityEngine_Rendering_PostProcessing_PostProcessLayer_ *_dictionary; + int32_t _version; + int32_t _index; + struct KeyValuePair_2_Cinemachine_CinemachineBrain_UnityEngine_Rendering_PostProcessing_PostProcessLayer_ _current; + int32_t _getEnumeratorRetType; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_Cinemachine_CinemachineBrain_UnityEngine_Rendering_PostProcessing_PostProcessLayer___Boxed { + struct Dictionary_2_TKey_TValue_Enumerator_Cinemachine_CinemachineBrain_UnityEngine_Rendering_PostProcessing_PostProcessLayer___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Enumerator_Cinemachine_CinemachineBrain_UnityEngine_Rendering_PostProcessing_PostProcessLayer_ fields; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_Cinemachine_CinemachineBrain_UnityEngine_Rendering_PostProcessing_PostProcessLayer___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Key; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Value; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Entry; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_Cinemachine_CinemachineBrain_UnityEngine_Rendering_PostProcessing_PostProcessLayer___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Enumerator_Cinemachine_CinemachineBrain_UnityEngine_Rendering_PostProcessing_PostProcessLayer___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Enumerator_Cinemachine_CinemachineBrain_UnityEngine_Rendering_PostProcessing_PostProcessLayer___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Enumerator_Cinemachine_CinemachineBrain_UnityEngine_Rendering_PostProcessing_PostProcessLayer___VTable vtable; +}; + +struct __declspec(align(8)) List_1_Cinemachine_PostFX_CinemachinePostProcessing_VcamExtraState___Fields { + struct CinemachinePostProcessing_VcamExtraState__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Cinemachine_PostFX_CinemachinePostProcessing_VcamExtraState_ { + struct List_1_Cinemachine_PostFX_CinemachinePostProcessing_VcamExtraState___Class *klass; + MonitorData *monitor; + struct List_1_Cinemachine_PostFX_CinemachinePostProcessing_VcamExtraState___Fields fields; +}; + +struct CinemachinePostProcessing_VcamExtraState__Array { + struct CinemachinePostProcessing_VcamExtraState__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct CinemachinePostProcessing_VcamExtraState *vector[32]; +}; + +struct IEnumerator_1_Cinemachine_PostFX_CinemachinePostProcessing_VcamExtraState_ { + struct IEnumerator_1_Cinemachine_PostFX_CinemachinePostProcessing_VcamExtraState___Class *klass; + MonitorData *monitor; +}; + +struct CinemachinePostProcessing_VcamExtraState__Array__VTable { +}; + +struct CinemachinePostProcessing_VcamExtraState__Array__StaticFields { +}; + +struct CinemachinePostProcessing_VcamExtraState__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CinemachinePostProcessing_VcamExtraState__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CinemachinePostProcessing_VcamExtraState__Array__VTable vtable; +}; + +struct IEnumerator_1_Cinemachine_PostFX_CinemachinePostProcessing_VcamExtraState___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_Cinemachine_PostFX_CinemachinePostProcessing_VcamExtraState___StaticFields { +}; + +struct IEnumerator_1_Cinemachine_PostFX_CinemachinePostProcessing_VcamExtraState___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_Cinemachine_PostFX_CinemachinePostProcessing_VcamExtraState___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_Cinemachine_PostFX_CinemachinePostProcessing_VcamExtraState___VTable vtable; +}; + +struct List_1_Cinemachine_PostFX_CinemachinePostProcessing_VcamExtraState___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_Cinemachine_PostFX_CinemachinePostProcessing_VcamExtraState___StaticFields { + struct CinemachinePostProcessing_VcamExtraState__Array *s_emptyArray; +}; + +struct List_1_Cinemachine_PostFX_CinemachinePostProcessing_VcamExtraState___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Cinemachine_PostFX_CinemachinePostProcessing_VcamExtraState___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Cinemachine_PostFX_CinemachinePostProcessing_VcamExtraState___VTable vtable; +}; + +struct fQGmhUoTfEGCGFzPdVXUheHRfwfj { + struct fQGmhUoTfEGCGFzPdVXUheHRfwfj__Class *klass; + MonitorData *monitor; +}; + +struct fQGmhUoTfEGCGFzPdVXUheHRfwfj__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct fQGmhUoTfEGCGFzPdVXUheHRfwfj__StaticFields { + struct SfDmCQCjerbvNXSRAQskzDQgvyUE *TbTuAVPTjaDbNXzzivXtuJPZBpCg; +}; + +struct fQGmhUoTfEGCGFzPdVXUheHRfwfj__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct fQGmhUoTfEGCGFzPdVXUheHRfwfj__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct fQGmhUoTfEGCGFzPdVXUheHRfwfj__VTable vtable; +}; + +struct MvuBcSFavsboGCnLcnrkzRubbOCaB { + struct MvuBcSFavsboGCnLcnrkzRubbOCaB__Class *klass; + MonitorData *monitor; +}; + +struct MvuBcSFavsboGCnLcnrkzRubbOCaB__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct MvuBcSFavsboGCnLcnrkzRubbOCaB__StaticFields { + void *HiabPowUiAquCNyUMIPsfaAIjRms; +}; + +struct MvuBcSFavsboGCnLcnrkzRubbOCaB__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MvuBcSFavsboGCnLcnrkzRubbOCaB__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MvuBcSFavsboGCnLcnrkzRubbOCaB__VTable vtable; +}; + +struct exarigLDNtDEaYVUwCksJVldldinA { + struct exarigLDNtDEaYVUwCksJVldldinA__Class *klass; + MonitorData *monitor; +}; + +struct exarigLDNtDEaYVUwCksJVldldinA__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct exarigLDNtDEaYVUwCksJVldldinA__StaticFields { + bool AgApvdIyIbNSKfpQhCYgBEKQEEgd; + #if defined(_CPLUSPLUS_) + cOkweYcnkHdyWuqEdbZVuivClOnK__Enum FRKBkkyKnWfAkgDpDAVszrjHJGoEb; + #else + int32_t FRKBkkyKnWfAkgDpDAVszrjHJGoEb; + #endif + struct String *lNEkHiTcgjeLjuLLtTrVJLEIeKeCA; + struct exarigLDNtDEaYVUwCksJVldldinA_HHzyMkQCLNpKeBssvgdeLTnJUXXA *BFcAigcCcGYjbGnPiMCtDpWJYGHBc; + struct rpxIYXtczSAEpdhyrDEYcJoufCaG QFQGGChOMHXqWFolvVdqnfkMQTgSA; +}; + +struct exarigLDNtDEaYVUwCksJVldldinA__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct exarigLDNtDEaYVUwCksJVldldinA__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct exarigLDNtDEaYVUwCksJVldldinA__VTable vtable; +}; + +struct List_1_T_Enumerator_System_Type_ { + struct List_1_System_Type_ *_list; + int32_t _index; + int32_t _version; + struct Type *_current; +}; + +struct List_1_T_Enumerator_System_Type___Boxed { + struct List_1_T_Enumerator_System_Type___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_System_Type_ fields; +}; + +struct List_1_T_Enumerator_System_Type___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_System_Type___StaticFields { +}; + +struct List_1_T_Enumerator_System_Type___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_System_Type___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_System_Type___VTable vtable; +}; + +struct pBilmCLlIdXWtcbMPjvsicTVBdMY { + struct pBilmCLlIdXWtcbMPjvsicTVBdMY__Class *klass; + MonitorData *monitor; +}; + +struct EventHandler_1_QcHKZtNdZEPgZZPEZTSJObnIPsLU___Fields { + struct MulticastDelegate__Fields _; +}; + +struct EventHandler_1_QcHKZtNdZEPgZZPEZTSJObnIPsLU_ { + struct EventHandler_1_QcHKZtNdZEPgZZPEZTSJObnIPsLU___Class *klass; + MonitorData *monitor; + struct EventHandler_1_QcHKZtNdZEPgZZPEZTSJObnIPsLU___Fields fields; +}; + +struct EventHandler_1_QcHKZtNdZEPgZZPEZTSJObnIPsLU___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct EventHandler_1_QcHKZtNdZEPgZZPEZTSJObnIPsLU___StaticFields { +}; + +struct EventHandler_1_QcHKZtNdZEPgZZPEZTSJObnIPsLU___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EventHandler_1_QcHKZtNdZEPgZZPEZTSJObnIPsLU___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EventHandler_1_QcHKZtNdZEPgZZPEZTSJObnIPsLU___VTable vtable; +}; + +struct pBilmCLlIdXWtcbMPjvsicTVBdMY__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct pBilmCLlIdXWtcbMPjvsicTVBdMY__StaticFields { + struct Dictionary_2_System_IntPtr_List_1_NFikfIAJlwJkNAEmwUGtOYnGGzB_ *zcWlVDMEDHhCdGGloHsWFrkIhYtmb; + struct Dictionary_2_System_IntPtr_List_1_NFikfIAJlwJkNAEmwUGtOYnGGzB_ *UPFvtbWSoOomNWEwAQtNdWFoImBj; + struct EventHandler_1_QcHKZtNdZEPgZZPEZTSJObnIPsLU_ *eCvKfuXPYLbPkfOIOxkCQayduzGP; + struct EventHandler_1_QcHKZtNdZEPgZZPEZTSJObnIPsLU_ *pPIslHEilSWOWVUboKodykwXRtJb; +}; + +struct pBilmCLlIdXWtcbMPjvsicTVBdMY__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct pBilmCLlIdXWtcbMPjvsicTVBdMY__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct pBilmCLlIdXWtcbMPjvsicTVBdMY__VTable vtable; +}; + +struct fqcRIsLAImvoPUnWXMQqpMtLMMMJ { + struct fqcRIsLAImvoPUnWXMQqpMtLMMMJ__Class *klass; + MonitorData *monitor; +}; + +struct fqcRIsLAImvoPUnWXMQqpMtLMMMJ__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct fqcRIsLAImvoPUnWXMQqpMtLMMMJ__StaticFields { + bool xboZneGvuTLcDyWszAoetVYzbEDD; + bool nDHCsiyWHVgCSbtVsHOndVvhyNeZA; + bool cAMKTHUqHYllCzEBBaGnkfQCgYIS; + bool QXaJDOXRnTefCUdMvLsZjGOFSGAb; + bool djiVETVqLJloJmkXMrXcSbEITigc; +}; + +struct fqcRIsLAImvoPUnWXMQqpMtLMMMJ__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct fqcRIsLAImvoPUnWXMQqpMtLMMMJ__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct fqcRIsLAImvoPUnWXMQqpMtLMMMJ__VTable vtable; +}; + +struct FTETPFRDoBLfurqcvxcUlMbtegbhA { + struct FTETPFRDoBLfurqcvxcUlMbtegbhA__Class *klass; + MonitorData *monitor; +}; + +struct FTETPFRDoBLfurqcvxcUlMbtegbhA__VTable { + VirtualInvokeData gCMQybVCfRQIiGxMcilQMYINRtfk; +}; + +struct FTETPFRDoBLfurqcvxcUlMbtegbhA__StaticFields { +}; + +struct FTETPFRDoBLfurqcvxcUlMbtegbhA__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct FTETPFRDoBLfurqcvxcUlMbtegbhA__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct FTETPFRDoBLfurqcvxcUlMbtegbhA__VTable vtable; +}; + +struct gEPJIdTJwmJwoXPlEpTuwVGlPAjJ { + struct gEPJIdTJwmJwoXPlEpTuwVGlPAjJ__Class *klass; + MonitorData *monitor; +}; + +struct gEPJIdTJwmJwoXPlEpTuwVGlPAjJ__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct gEPJIdTJwmJwoXPlEpTuwVGlPAjJ__StaticFields { + struct mpaLPxHPAdcoRcKwvOFTaxXvswum *xiYaMMcpqDLHTkfjENpSyZFtfPTY; + void *GiHUlvMnNeMDRqOtcjSxeFRnbmgS; + bool bdKzAteQZztjlAoYfwrXDLRdeoAkA; + void *EpsHAdYfhsUtnwhoKTClOfdmJrqD; + bool uBInWTDdnAlnLwxmJlELEgnNBBsQ; + int32_t AJbsVKgdGMuvNnoRtfXaQTfZoigh; + int32_t fydZuuTkYzISeDhevGETxdQLaoSw; + struct NativeBuffer *tIwChNjIDTfpTjyRkFRhKPXnmdNk; + bool RivwJxiCRojufThHkoyvmYlpnUYf; + struct Byte__Array *JyknIJOuBJKpWtdMBSchltFxkbmJ; + struct UInt32__Array *QsZeDxwQWNvmyVoMuEmSFrKWZavH; + struct UInt32__Array *nYBpRGiMcQZCMYWgfCnqUePzHfjA; + bool zTlciFIuJVABsMqipIqIFgGoOAjc; + struct ForwardRawInputEventsToUnityDelegate *tfRvjoesRXSlqCgboVRgnapokzqv; + struct Action_2_KGpfpVumzcziOxJRZbURZTEAJARe_Double_ *kFhARWsuYqFWLaIoyanOGhkIwHxOB; + struct Action_2_fsRiDBEERnIQlMGEHJRgRRiEbYqF_Double_ *xuXOYzgGlfitnLoOSkWchiWQIcJI; + struct Action_2_HAtiKZlBnjTWOWEtNgXBPPGKUhuP_Double_ *LvdAWCdCmkNphpVBonViAMdgCyYcc; + struct Action_1_IntPtr_ *PxWfWPTmeOcVGsPZmYOJJEwDbsVg; + struct Action *KXODKElJjUleYlljTtxpOGHEoioj; +}; + +struct gEPJIdTJwmJwoXPlEpTuwVGlPAjJ__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct gEPJIdTJwmJwoXPlEpTuwVGlPAjJ__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct gEPJIdTJwmJwoXPlEpTuwVGlPAjJ__VTable vtable; +}; + +struct ICollection_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ { + struct ICollection_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb___StaticFields { +}; + +struct ICollection_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb___VTable vtable; +}; + +struct Predicate_1_znMZhiOLtznjGEIVUrVliWSuIivu___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Predicate_1_znMZhiOLtznjGEIVUrVliWSuIivu_ { + struct Predicate_1_znMZhiOLtznjGEIVUrVliWSuIivu___Class *klass; + MonitorData *monitor; + struct Predicate_1_znMZhiOLtznjGEIVUrVliWSuIivu___Fields fields; +}; + +struct Predicate_1_znMZhiOLtznjGEIVUrVliWSuIivu___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Predicate_1_znMZhiOLtznjGEIVUrVliWSuIivu___StaticFields { +}; + +struct Predicate_1_znMZhiOLtznjGEIVUrVliWSuIivu___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Predicate_1_znMZhiOLtznjGEIVUrVliWSuIivu___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Predicate_1_znMZhiOLtznjGEIVUrVliWSuIivu___VTable vtable; +}; + +struct Comparison_1_znMZhiOLtznjGEIVUrVliWSuIivu___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Comparison_1_znMZhiOLtznjGEIVUrVliWSuIivu_ { + struct Comparison_1_znMZhiOLtznjGEIVUrVliWSuIivu___Class *klass; + MonitorData *monitor; + struct Comparison_1_znMZhiOLtznjGEIVUrVliWSuIivu___Fields fields; +}; + +struct Comparison_1_znMZhiOLtznjGEIVUrVliWSuIivu___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Comparison_1_znMZhiOLtznjGEIVUrVliWSuIivu___StaticFields { +}; + +struct Comparison_1_znMZhiOLtznjGEIVUrVliWSuIivu___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Comparison_1_znMZhiOLtznjGEIVUrVliWSuIivu___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Comparison_1_znMZhiOLtznjGEIVUrVliWSuIivu___VTable vtable; +}; + +struct List_1_System_Threading_WaitCallback__1__VTable { +}; + +struct List_1_System_Threading_WaitCallback__1__StaticFields { +}; + +struct List_1_System_Threading_WaitCallback__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_System_Threading_WaitCallback__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_System_Threading_WaitCallback__1__VTable vtable; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_IRuntimePanelComponent_ { + struct List_1_UnityEngine_UIElements_IRuntimePanelComponent_ *_list; + int32_t _index; + int32_t _version; + struct IRuntimePanelComponent *_current; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_IRuntimePanelComponent___Boxed { + struct List_1_T_Enumerator_UnityEngine_UIElements_IRuntimePanelComponent___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_UnityEngine_UIElements_IRuntimePanelComponent_ fields; +}; + +struct IRuntimePanelComponent { + struct IRuntimePanelComponent__Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) List_1_UnityEngine_UIElements_IRuntimePanelComponent___Fields { + struct IRuntimePanelComponent__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_UIElements_IRuntimePanelComponent_ { + struct List_1_UnityEngine_UIElements_IRuntimePanelComponent___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_UIElements_IRuntimePanelComponent___Fields fields; +}; + +struct IRuntimePanelComponent__Array { + struct IRuntimePanelComponent__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct IRuntimePanelComponent *vector[32]; +}; + +struct IEnumerator_1_UnityEngine_UIElements_IRuntimePanelComponent_ { + struct IEnumerator_1_UnityEngine_UIElements_IRuntimePanelComponent___Class *klass; + MonitorData *monitor; +}; + +struct IRuntimePanelComponent__VTable { + VirtualInvokeData set_panel; +}; + +struct IRuntimePanelComponent__StaticFields { +}; + +struct IRuntimePanelComponent__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IRuntimePanelComponent__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IRuntimePanelComponent__VTable vtable; +}; + +struct IRuntimePanelComponent__Array__VTable { +}; + +struct IRuntimePanelComponent__Array__StaticFields { +}; + +struct IRuntimePanelComponent__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IRuntimePanelComponent__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IRuntimePanelComponent__Array__VTable vtable; +}; + +struct IEnumerator_1_UnityEngine_UIElements_IRuntimePanelComponent___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_UnityEngine_UIElements_IRuntimePanelComponent___StaticFields { +}; + +struct IEnumerator_1_UnityEngine_UIElements_IRuntimePanelComponent___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_UnityEngine_UIElements_IRuntimePanelComponent___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_UnityEngine_UIElements_IRuntimePanelComponent___VTable vtable; +}; + +struct List_1_UnityEngine_UIElements_IRuntimePanelComponent___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_UnityEngine_UIElements_IRuntimePanelComponent___StaticFields { + struct IRuntimePanelComponent__Array *s_emptyArray; +}; + +struct List_1_UnityEngine_UIElements_IRuntimePanelComponent___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_UIElements_IRuntimePanelComponent___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_UIElements_IRuntimePanelComponent___VTable vtable; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_IRuntimePanelComponent___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_IRuntimePanelComponent___StaticFields { +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_IRuntimePanelComponent___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_UnityEngine_UIElements_IRuntimePanelComponent___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_UnityEngine_UIElements_IRuntimePanelComponent___VTable vtable; +}; + +struct ObjectListPool_1_IRuntimePanelComponent_ { + struct ObjectListPool_1_IRuntimePanelComponent___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) ObjectPool_1_System_Collections_Generic_List_1__5__Fields { + struct Stack_1_List_1_UnityEngine_UIElements_IRuntimePanelComponent_ *m_Stack; + int32_t m_MaxSize; +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__5 { + struct ObjectPool_1_System_Collections_Generic_List_1__5__Class *klass; + MonitorData *monitor; + struct ObjectPool_1_System_Collections_Generic_List_1__5__Fields fields; +}; + +struct __declspec(align(8)) Stack_1_List_1_UnityEngine_UIElements_IRuntimePanelComponent___Fields { + struct List_1_UnityEngine_UIElements_IRuntimePanelComponent___Array *_array; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct Stack_1_List_1_UnityEngine_UIElements_IRuntimePanelComponent_ { + struct Stack_1_List_1_UnityEngine_UIElements_IRuntimePanelComponent___Class *klass; + MonitorData *monitor; + struct Stack_1_List_1_UnityEngine_UIElements_IRuntimePanelComponent___Fields fields; +}; + +struct List_1_UnityEngine_UIElements_IRuntimePanelComponent___Array { + struct List_1_UnityEngine_UIElements_IRuntimePanelComponent___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct List_1_UnityEngine_UIElements_IRuntimePanelComponent_ *vector[32]; +}; + +struct IEnumerator_1_List_1_UnityEngine_UIElements_IRuntimePanelComponent_ { + struct IEnumerator_1_List_1_UnityEngine_UIElements_IRuntimePanelComponent___Class *klass; + MonitorData *monitor; +}; + +struct List_1_UnityEngine_UIElements_IRuntimePanelComponent___Array__VTable { +}; + +struct List_1_UnityEngine_UIElements_IRuntimePanelComponent___Array__StaticFields { +}; + +struct List_1_UnityEngine_UIElements_IRuntimePanelComponent___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_UIElements_IRuntimePanelComponent___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_UIElements_IRuntimePanelComponent___Array__VTable vtable; +}; + +struct IEnumerator_1_List_1_UnityEngine_UIElements_IRuntimePanelComponent___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_List_1_UnityEngine_UIElements_IRuntimePanelComponent___StaticFields { +}; + +struct IEnumerator_1_List_1_UnityEngine_UIElements_IRuntimePanelComponent___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_List_1_UnityEngine_UIElements_IRuntimePanelComponent___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_List_1_UnityEngine_UIElements_IRuntimePanelComponent___VTable vtable; +}; + +struct Stack_1_List_1_UnityEngine_UIElements_IRuntimePanelComponent___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_1; +}; + +struct Stack_1_List_1_UnityEngine_UIElements_IRuntimePanelComponent___StaticFields { +}; + +struct Stack_1_List_1_UnityEngine_UIElements_IRuntimePanelComponent___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Stack_1_List_1_UnityEngine_UIElements_IRuntimePanelComponent___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Stack_1_List_1_UnityEngine_UIElements_IRuntimePanelComponent___VTable vtable; +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__5__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__5__StaticFields { +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__5__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ObjectPool_1_System_Collections_Generic_List_1__5__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ObjectPool_1_System_Collections_Generic_List_1__5__VTable vtable; +}; + +struct ObjectListPool_1_IRuntimePanelComponent___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ObjectListPool_1_IRuntimePanelComponent___StaticFields { + struct ObjectPool_1_System_Collections_Generic_List_1__5 *pool; +}; + +struct ObjectListPool_1_IRuntimePanelComponent___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ObjectListPool_1_IRuntimePanelComponent___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ObjectListPool_1_IRuntimePanelComponent___VTable vtable; +}; + +struct EventCallback_1_NavigationSubmitEvent___Fields { + struct MulticastDelegate__Fields _; +}; + +struct EventCallback_1_NavigationSubmitEvent_ { + struct EventCallback_1_NavigationSubmitEvent___Class *klass; + MonitorData *monitor; + struct EventCallback_1_NavigationSubmitEvent___Fields fields; +}; + +struct EventCallback_1_NavigationSubmitEvent___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct EventCallback_1_NavigationSubmitEvent___StaticFields { +}; + +struct EventCallback_1_NavigationSubmitEvent___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EventCallback_1_NavigationSubmitEvent___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EventCallback_1_NavigationSubmitEvent___VTable vtable; +}; + +struct EventCallback_1_NavigationCancelEvent___Fields { + struct MulticastDelegate__Fields _; +}; + +struct EventCallback_1_NavigationCancelEvent_ { + struct EventCallback_1_NavigationCancelEvent___Class *klass; + MonitorData *monitor; + struct EventCallback_1_NavigationCancelEvent___Fields fields; +}; + +struct EventCallback_1_NavigationCancelEvent___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct EventCallback_1_NavigationCancelEvent___StaticFields { +}; + +struct EventCallback_1_NavigationCancelEvent___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EventCallback_1_NavigationCancelEvent___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EventCallback_1_NavigationCancelEvent___VTable vtable; +}; + +struct EventCallback_1_NavigationMoveEvent___Fields { + struct MulticastDelegate__Fields _; +}; + +struct EventCallback_1_NavigationMoveEvent_ { + struct EventCallback_1_NavigationMoveEvent___Class *klass; + MonitorData *monitor; + struct EventCallback_1_NavigationMoveEvent___Fields fields; +}; + +struct EventCallback_1_NavigationMoveEvent___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct EventCallback_1_NavigationMoveEvent___StaticFields { +}; + +struct EventCallback_1_NavigationMoveEvent___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EventCallback_1_NavigationMoveEvent___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EventCallback_1_NavigationMoveEvent___VTable vtable; +}; + +struct List_1_T_Enumerator_RankHelpers_RankSprite_ { + struct List_1_RankHelpers_RankSprite_ *_list; + int32_t _index; + int32_t _version; + struct RankHelpers_RankSprite *_current; +}; + +struct List_1_T_Enumerator_RankHelpers_RankSprite___Boxed { + struct List_1_T_Enumerator_RankHelpers_RankSprite___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_RankHelpers_RankSprite_ fields; +}; + +struct List_1_T_Enumerator_RankHelpers_RankSprite___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_RankHelpers_RankSprite___StaticFields { +}; + +struct List_1_T_Enumerator_RankHelpers_RankSprite___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_RankHelpers_RankSprite___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_RankHelpers_RankSprite___VTable vtable; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_IGroupBoxOption_ { + struct List_1_UnityEngine_UIElements_IGroupBoxOption_ *_list; + int32_t _index; + int32_t _version; + struct IGroupBoxOption *_current; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_IGroupBoxOption___Boxed { + struct List_1_T_Enumerator_UnityEngine_UIElements_IGroupBoxOption___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_UnityEngine_UIElements_IGroupBoxOption_ fields; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_IGroupBoxOption___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_IGroupBoxOption___StaticFields { +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_IGroupBoxOption___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_UnityEngine_UIElements_IGroupBoxOption___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_UnityEngine_UIElements_IGroupBoxOption___VTable vtable; +}; + +struct VRHandIK__Array { + struct VRHandIK__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct VRHandIK *vector[32]; +}; + +struct VRHandIK__Array__VTable { +}; + +struct VRHandIK__Array__StaticFields { +}; + +struct VRHandIK__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct VRHandIK__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct VRHandIK__Array__VTable vtable; +}; + +struct List_1_T_Enumerator_UnityEngine_UI_Toggle_ { + struct List_1_UnityEngine_UI_Toggle_ *_list; + int32_t _index; + int32_t _version; + struct Toggle *_current; +}; + +struct List_1_T_Enumerator_UnityEngine_UI_Toggle___Boxed { + struct List_1_T_Enumerator_UnityEngine_UI_Toggle___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_UnityEngine_UI_Toggle_ fields; +}; + +struct List_1_T_Enumerator_UnityEngine_UI_Toggle___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_UnityEngine_UI_Toggle___StaticFields { +}; + +struct List_1_T_Enumerator_UnityEngine_UI_Toggle___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_UnityEngine_UI_Toggle___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_UnityEngine_UI_Toggle___VTable vtable; +}; + +struct List_1_T_Enumerator_UnityEngine_UI_Button_ { + struct List_1_UnityEngine_UI_Button_ *_list; + int32_t _index; + int32_t _version; + struct Button *_current; +}; + +struct List_1_T_Enumerator_UnityEngine_UI_Button___Boxed { + struct List_1_T_Enumerator_UnityEngine_UI_Button___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_UnityEngine_UI_Button_ fields; +}; + +struct List_1_T_Enumerator_UnityEngine_UI_Button___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_UnityEngine_UI_Button___StaticFields { +}; + +struct List_1_T_Enumerator_UnityEngine_UI_Button___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_UnityEngine_UI_Button___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_UnityEngine_UI_Button___VTable vtable; +}; + +struct List_1_T_Enumerator_UnityEngine_UI_Dropdown_ { + struct List_1_UnityEngine_UI_Dropdown_ *_list; + int32_t _index; + int32_t _version; + struct Dropdown *_current; +}; + +struct List_1_T_Enumerator_UnityEngine_UI_Dropdown___Boxed { + struct List_1_T_Enumerator_UnityEngine_UI_Dropdown___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_UnityEngine_UI_Dropdown_ fields; +}; + +struct List_1_T_Enumerator_UnityEngine_UI_Dropdown___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_UnityEngine_UI_Dropdown___StaticFields { +}; + +struct List_1_T_Enumerator_UnityEngine_UI_Dropdown___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_UnityEngine_UI_Dropdown___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_UnityEngine_UI_Dropdown___VTable vtable; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_VisualElement_ { + struct List_1_UnityEngine_UIElements_VisualElement_ *_list; + int32_t _index; + int32_t _version; + struct VisualElement *_current; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_VisualElement___Boxed { + struct List_1_T_Enumerator_UnityEngine_UIElements_VisualElement___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_UnityEngine_UIElements_VisualElement_ fields; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_VisualElement___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_VisualElement___StaticFields { +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_VisualElement___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_UnityEngine_UIElements_VisualElement___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_UnityEngine_UIElements_VisualElement___VTable vtable; +}; + +struct List_1_T_Enumerator_CharacterOutfit_ { + struct List_1_CharacterOutfit_ *_list; + int32_t _index; + int32_t _version; + struct CharacterOutfit *_current; +}; + +struct List_1_T_Enumerator_CharacterOutfit___Boxed { + struct List_1_T_Enumerator_CharacterOutfit___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_CharacterOutfit_ fields; +}; + +struct List_1_T_Enumerator_CharacterOutfit___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_CharacterOutfit___StaticFields { +}; + +struct List_1_T_Enumerator_CharacterOutfit___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_CharacterOutfit___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_CharacterOutfit___VTable vtable; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_IEventDispatchingStrategy_ { + struct List_1_UnityEngine_UIElements_IEventDispatchingStrategy_ *_list; + int32_t _index; + int32_t _version; + struct IEventDispatchingStrategy *_current; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_IEventDispatchingStrategy___Boxed { + struct List_1_T_Enumerator_UnityEngine_UIElements_IEventDispatchingStrategy___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_UnityEngine_UIElements_IEventDispatchingStrategy_ fields; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_IEventDispatchingStrategy___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_IEventDispatchingStrategy___StaticFields { +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_IEventDispatchingStrategy___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_UnityEngine_UIElements_IEventDispatchingStrategy___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_UnityEngine_UIElements_IEventDispatchingStrategy___VTable vtable; +}; + +struct Predicate_1_CharacterOutfit___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Predicate_1_CharacterOutfit_ { + struct Predicate_1_CharacterOutfit___Class *klass; + MonitorData *monitor; + struct Predicate_1_CharacterOutfit___Fields fields; +}; + +struct Predicate_1_CharacterOutfit___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Predicate_1_CharacterOutfit___StaticFields { +}; + +struct Predicate_1_CharacterOutfit___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Predicate_1_CharacterOutfit___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Predicate_1_CharacterOutfit___VTable vtable; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_DropdownMenuItem_ { + struct List_1_UnityEngine_UIElements_DropdownMenuItem_ *_list; + int32_t _index; + int32_t _version; + struct DropdownMenuItem *_current; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_DropdownMenuItem___Boxed { + struct List_1_T_Enumerator_UnityEngine_UIElements_DropdownMenuItem___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_UnityEngine_UIElements_DropdownMenuItem_ fields; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_DropdownMenuItem___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_DropdownMenuItem___StaticFields { +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_DropdownMenuItem___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_UnityEngine_UIElements_DropdownMenuItem___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_UnityEngine_UIElements_DropdownMenuItem___VTable vtable; +}; + +struct DropdownUtility { + struct DropdownUtility__Class *klass; + MonitorData *monitor; +}; + +struct DropdownUtility__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct DropdownUtility__StaticFields { + struct Func_1_UnityEngine_UIElements_IGenericMenu_ *MakeDropdownFunc; +}; + +struct DropdownUtility__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DropdownUtility__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DropdownUtility__VTable vtable; +}; + +struct IEnumerable_1_UnityEngine_UIElements_IEventDispatchingStrategy_ { + struct IEnumerable_1_UnityEngine_UIElements_IEventDispatchingStrategy___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_UnityEngine_UIElements_IEventDispatchingStrategy___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_UnityEngine_UIElements_IEventDispatchingStrategy___StaticFields { +}; + +struct IEnumerable_1_UnityEngine_UIElements_IEventDispatchingStrategy___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_UnityEngine_UIElements_IEventDispatchingStrategy___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_UnityEngine_UIElements_IEventDispatchingStrategy___VTable vtable; +}; + +struct Predicate_1_CharacterEmote___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Predicate_1_CharacterEmote_ { + struct Predicate_1_CharacterEmote___Class *klass; + MonitorData *monitor; + struct Predicate_1_CharacterEmote___Fields fields; +}; + +struct Predicate_1_CharacterEmote___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Predicate_1_CharacterEmote___StaticFields { +}; + +struct Predicate_1_CharacterEmote___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Predicate_1_CharacterEmote___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Predicate_1_CharacterEmote___VTable vtable; +}; + +struct Predicate_1_CharacterPet___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Predicate_1_CharacterPet_ { + struct Predicate_1_CharacterPet___Class *klass; + MonitorData *monitor; + struct Predicate_1_CharacterPet___Fields fields; +}; + +struct Predicate_1_CharacterPet___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Predicate_1_CharacterPet___StaticFields { +}; + +struct Predicate_1_CharacterPet___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Predicate_1_CharacterPet___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Predicate_1_CharacterPet___VTable vtable; +}; + +struct Predicate_1_CharacterFlashlight___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Predicate_1_CharacterFlashlight_ { + struct Predicate_1_CharacterFlashlight___Class *klass; + MonitorData *monitor; + struct Predicate_1_CharacterFlashlight___Fields fields; +}; + +struct Predicate_1_CharacterFlashlight___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Predicate_1_CharacterFlashlight___StaticFields { +}; + +struct Predicate_1_CharacterFlashlight___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Predicate_1_CharacterFlashlight___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Predicate_1_CharacterFlashlight___VTable vtable; +}; + +struct IKeyboardEvent { + struct IKeyboardEvent__Class *klass; + MonitorData *monitor; +}; + +struct IKeyboardEvent__VTable { + VirtualInvokeData get_modifiers; + VirtualInvokeData get_character; + VirtualInvokeData get_keyCode; +}; + +struct IKeyboardEvent__StaticFields { +}; + +struct IKeyboardEvent__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IKeyboardEvent__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IKeyboardEvent__VTable vtable; +}; + +struct Predicate_1_CharacterPerk___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Predicate_1_CharacterPerk_ { + struct Predicate_1_CharacterPerk___Class *klass; + MonitorData *monitor; + struct Predicate_1_CharacterPerk___Fields fields; +}; + +struct Predicate_1_CharacterPerk___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Predicate_1_CharacterPerk___StaticFields { +}; + +struct Predicate_1_CharacterPerk___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Predicate_1_CharacterPerk___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Predicate_1_CharacterPerk___VTable vtable; +}; + +struct List_1_T_Enumerator_CharacterPerk_ { + struct List_1_CharacterPerk_ *_list; + int32_t _index; + int32_t _version; + struct CharacterPerk *_current; +}; + +struct List_1_T_Enumerator_CharacterPerk___Boxed { + struct List_1_T_Enumerator_CharacterPerk___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_CharacterPerk_ fields; +}; + +struct List_1_T_Enumerator_CharacterPerk___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_CharacterPerk___StaticFields { +}; + +struct List_1_T_Enumerator_CharacterPerk___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_CharacterPerk___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_CharacterPerk___VTable vtable; +}; + +struct IEnumerable_1_CharacterRobe_ { + struct IEnumerable_1_CharacterRobe___Class *klass; + MonitorData *monitor; +}; + +struct Func_2_CharacterRobe_Boolean___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_2_CharacterRobe_Boolean_ { + struct Func_2_CharacterRobe_Boolean___Class *klass; + MonitorData *monitor; + struct Func_2_CharacterRobe_Boolean___Fields fields; +}; + +struct IEnumerable_1_CharacterRobe___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_CharacterRobe___StaticFields { +}; + +struct IEnumerable_1_CharacterRobe___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_CharacterRobe___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_CharacterRobe___VTable vtable; +}; + +struct Func_2_CharacterRobe_Boolean___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_2_CharacterRobe_Boolean___StaticFields { +}; + +struct Func_2_CharacterRobe_Boolean___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_2_CharacterRobe_Boolean___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_2_CharacterRobe_Boolean___VTable vtable; +}; + +struct IEnumerable_1_CharacterData_ { + struct IEnumerable_1_CharacterData___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_CharacterData___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_CharacterData___StaticFields { +}; + +struct IEnumerable_1_CharacterData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_CharacterData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_CharacterData___VTable vtable; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_ClickDetector_ButtonClickStatus_ { + struct List_1_UnityEngine_UIElements_ClickDetector_ButtonClickStatus_ *_list; + int32_t _index; + int32_t _version; + struct ClickDetector_ButtonClickStatus *_current; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_ClickDetector_ButtonClickStatus___Boxed { + struct List_1_T_Enumerator_UnityEngine_UIElements_ClickDetector_ButtonClickStatus___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_UnityEngine_UIElements_ClickDetector_ButtonClickStatus_ fields; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_ClickDetector_ButtonClickStatus___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_ClickDetector_ButtonClickStatus___StaticFields { +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_ClickDetector_ButtonClickStatus___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_UnityEngine_UIElements_ClickDetector_ButtonClickStatus___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_UnityEngine_UIElements_ClickDetector_ButtonClickStatus___VTable vtable; +}; + +struct EventCallback_1_PointerCaptureOutEvent___Fields { + struct MulticastDelegate__Fields _; +}; + +struct EventCallback_1_PointerCaptureOutEvent_ { + struct EventCallback_1_PointerCaptureOutEvent___Class *klass; + MonitorData *monitor; + struct EventCallback_1_PointerCaptureOutEvent___Fields fields; +}; + +struct EventCallback_1_PointerCaptureOutEvent___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct EventCallback_1_PointerCaptureOutEvent___StaticFields { +}; + +struct EventCallback_1_PointerCaptureOutEvent___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EventCallback_1_PointerCaptureOutEvent___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EventCallback_1_PointerCaptureOutEvent___VTable vtable; +}; + +struct EventCallback_1_MouseUpEvent___Fields { + struct MulticastDelegate__Fields _; +}; + +struct EventCallback_1_MouseUpEvent_ { + struct EventCallback_1_MouseUpEvent___Class *klass; + MonitorData *monitor; + struct EventCallback_1_MouseUpEvent___Fields fields; +}; + +struct EventCallback_1_MouseUpEvent___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct EventCallback_1_MouseUpEvent___StaticFields { +}; + +struct EventCallback_1_MouseUpEvent___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EventCallback_1_MouseUpEvent___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EventCallback_1_MouseUpEvent___VTable vtable; +}; + +struct EventCallback_1_MouseCaptureOutEvent___Fields { + struct MulticastDelegate__Fields _; +}; + +struct EventCallback_1_MouseCaptureOutEvent_ { + struct EventCallback_1_MouseCaptureOutEvent___Class *klass; + MonitorData *monitor; + struct EventCallback_1_MouseCaptureOutEvent___Fields fields; +}; + +struct EventCallback_1_MouseCaptureOutEvent___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct EventCallback_1_MouseCaptureOutEvent___StaticFields { +}; + +struct EventCallback_1_MouseCaptureOutEvent___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EventCallback_1_MouseCaptureOutEvent___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EventCallback_1_MouseCaptureOutEvent___VTable vtable; +}; + +struct EventCallback_1_MouseMoveEvent___Fields { + struct MulticastDelegate__Fields _; +}; + +struct EventCallback_1_MouseMoveEvent_ { + struct EventCallback_1_MouseMoveEvent___Class *klass; + MonitorData *monitor; + struct EventCallback_1_MouseMoveEvent___Fields fields; +}; + +struct EventCallback_1_MouseMoveEvent___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct EventCallback_1_MouseMoveEvent___StaticFields { +}; + +struct EventCallback_1_MouseMoveEvent___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EventCallback_1_MouseMoveEvent___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EventCallback_1_MouseMoveEvent___VTable vtable; +}; + +struct EventCallback_1_MouseDownEvent___Fields { + struct MulticastDelegate__Fields _; +}; + +struct EventCallback_1_MouseDownEvent_ { + struct EventCallback_1_MouseDownEvent___Class *klass; + MonitorData *monitor; + struct EventCallback_1_MouseDownEvent___Fields fields; +}; + +struct EventCallback_1_MouseDownEvent___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct EventCallback_1_MouseDownEvent___StaticFields { +}; + +struct EventCallback_1_MouseDownEvent___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EventCallback_1_MouseDownEvent___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EventCallback_1_MouseDownEvent___VTable vtable; +}; + +struct __declspec(align(8)) List_1_System_Net_Mail_SmtpFailedRecipientException___Fields { + struct SmtpFailedRecipientException__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_System_Net_Mail_SmtpFailedRecipientException_ { + struct List_1_System_Net_Mail_SmtpFailedRecipientException___Class *klass; + MonitorData *monitor; + struct List_1_System_Net_Mail_SmtpFailedRecipientException___Fields fields; +}; + +struct IEnumerator_1_System_Net_Mail_SmtpFailedRecipientException_ { + struct IEnumerator_1_System_Net_Mail_SmtpFailedRecipientException___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerator_1_System_Net_Mail_SmtpFailedRecipientException___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_System_Net_Mail_SmtpFailedRecipientException___StaticFields { +}; + +struct IEnumerator_1_System_Net_Mail_SmtpFailedRecipientException___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_System_Net_Mail_SmtpFailedRecipientException___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_System_Net_Mail_SmtpFailedRecipientException___VTable vtable; +}; + +struct List_1_System_Net_Mail_SmtpFailedRecipientException___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_System_Net_Mail_SmtpFailedRecipientException___StaticFields { + struct SmtpFailedRecipientException__Array *s_emptyArray; +}; + +struct List_1_System_Net_Mail_SmtpFailedRecipientException___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_System_Net_Mail_SmtpFailedRecipientException___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_System_Net_Mail_SmtpFailedRecipientException___VTable vtable; +}; + +struct EventCallback_1_PointerDownEvent___Fields { + struct MulticastDelegate__Fields _; +}; + +struct EventCallback_1_PointerDownEvent_ { + struct EventCallback_1_PointerDownEvent___Class *klass; + MonitorData *monitor; + struct EventCallback_1_PointerDownEvent___Fields fields; +}; + +struct EventCallback_1_PointerDownEvent___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct EventCallback_1_PointerDownEvent___StaticFields { +}; + +struct EventCallback_1_PointerDownEvent___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EventCallback_1_PointerDownEvent___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EventCallback_1_PointerDownEvent___VTable vtable; +}; + +struct EventCallback_1_PointerCancelEvent___Fields { + struct MulticastDelegate__Fields _; +}; + +struct EventCallback_1_PointerCancelEvent_ { + struct EventCallback_1_PointerCancelEvent___Class *klass; + MonitorData *monitor; + struct EventCallback_1_PointerCancelEvent___Fields fields; +}; + +struct EventCallback_1_PointerCancelEvent___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct EventCallback_1_PointerCancelEvent___StaticFields { +}; + +struct EventCallback_1_PointerCancelEvent___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EventCallback_1_PointerCancelEvent___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EventCallback_1_PointerCancelEvent___VTable vtable; +}; + +struct IBindable { + struct IBindable__Class *klass; + MonitorData *monitor; +}; + +struct IBindable__VTable { + VirtualInvokeData get_binding; + VirtualInvokeData set_bindingPath; +}; + +struct IBindable__StaticFields { +}; + +struct IBindable__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IBindable__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IBindable__VTable vtable; +}; + +struct IEnumerable_1_System_Linq_IGrouping_2__4 { + struct IEnumerable_1_System_Linq_IGrouping_2__4__Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_System_Linq_IGrouping_2__4__VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_System_Linq_IGrouping_2__4__StaticFields { +}; + +struct IEnumerable_1_System_Linq_IGrouping_2__4__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_System_Linq_IGrouping_2__4__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_System_Linq_IGrouping_2__4__VTable vtable; +}; + +struct IEnumerator_1_System_Linq_IGrouping_2__4 { + struct IEnumerator_1_System_Linq_IGrouping_2__4__Class *klass; + MonitorData *monitor; +}; + +struct IEnumerator_1_System_Linq_IGrouping_2__4__VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_System_Linq_IGrouping_2__4__StaticFields { +}; + +struct IEnumerator_1_System_Linq_IGrouping_2__4__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_System_Linq_IGrouping_2__4__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_System_Linq_IGrouping_2__4__VTable vtable; +}; + +struct NolanRankController__Array { + struct NolanRankController__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct NolanRankController *vector[32]; +}; + +struct NolanRankController__Array__VTable { +}; + +struct NolanRankController__Array__StaticFields { +}; + +struct NolanRankController__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NolanRankController__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NolanRankController__Array__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_GameObject_NolanPerkController_ { + struct Dictionary_2_UnityEngine_GameObject_NolanPerkController_ *_dictionary; + int32_t _version; + int32_t _index; + struct KeyValuePair_2_UnityEngine_GameObject_NolanPerkController_ _current; + int32_t _getEnumeratorRetType; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_GameObject_NolanPerkController___Boxed { + struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_GameObject_NolanPerkController___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_GameObject_NolanPerkController_ fields; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_GameObject_NolanPerkController___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Key; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Value; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Entry; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_GameObject_NolanPerkController___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_GameObject_NolanPerkController___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_GameObject_NolanPerkController___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_GameObject_NolanPerkController___VTable vtable; +}; + +struct Action_2_Boolean_Opsive_UltimateCharacterController_Character_Abilities_Items_Use___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_2_Boolean_Opsive_UltimateCharacterController_Character_Abilities_Items_Use_ { + struct Action_2_Boolean_Opsive_UltimateCharacterController_Character_Abilities_Items_Use___Class *klass; + MonitorData *monitor; + struct Action_2_Boolean_Opsive_UltimateCharacterController_Character_Abilities_Items_Use___Fields fields; +}; + +struct Action_2_Boolean_Opsive_UltimateCharacterController_Character_Abilities_Items_Use___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_2_Boolean_Opsive_UltimateCharacterController_Character_Abilities_Items_Use___StaticFields { +}; + +struct Action_2_Boolean_Opsive_UltimateCharacterController_Character_Abilities_Items_Use___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_2_Boolean_Opsive_UltimateCharacterController_Character_Abilities_Items_Use___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_2_Boolean_Opsive_UltimateCharacterController_Character_Abilities_Items_Use___VTable vtable; +}; + +struct ICollection_1_System_Net_Mail_MailAddress_ { + struct ICollection_1_System_Net_Mail_MailAddress___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_System_Net_Mail_MailAddress___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_System_Net_Mail_MailAddress___StaticFields { +}; + +struct ICollection_1_System_Net_Mail_MailAddress___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_System_Net_Mail_MailAddress___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_System_Net_Mail_MailAddress___VTable vtable; +}; + +struct KeyValuePair_2_UnityEngine_AnimatorControllerParameter_System_Object_ { + struct AnimatorControllerParameter *key; + struct Object *value; +}; + +struct KeyValuePair_2_UnityEngine_AnimatorControllerParameter_System_Object___Boxed { + struct KeyValuePair_2_UnityEngine_AnimatorControllerParameter_System_Object___Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_UnityEngine_AnimatorControllerParameter_System_Object_ fields; +}; + +struct KeyValuePair_2_UnityEngine_AnimatorControllerParameter_System_Object___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct KeyValuePair_2_UnityEngine_AnimatorControllerParameter_System_Object___StaticFields { +}; + +struct KeyValuePair_2_UnityEngine_AnimatorControllerParameter_System_Object___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_UnityEngine_AnimatorControllerParameter_System_Object___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_UnityEngine_AnimatorControllerParameter_System_Object___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_AnimatorControllerParameter_System_Object_ { + struct Dictionary_2_UnityEngine_AnimatorControllerParameter_System_Object_ *_dictionary; + int32_t _version; + int32_t _index; + struct KeyValuePair_2_UnityEngine_AnimatorControllerParameter_System_Object_ _current; + int32_t _getEnumeratorRetType; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_AnimatorControllerParameter_System_Object___Boxed { + struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_AnimatorControllerParameter_System_Object___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_AnimatorControllerParameter_System_Object_ fields; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_AnimatorControllerParameter_System_Object_ { + int32_t hashCode; + int32_t next; + struct AnimatorControllerParameter *key; + struct Object *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_AnimatorControllerParameter_System_Object___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_AnimatorControllerParameter_System_Object___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_AnimatorControllerParameter_System_Object_ fields; +}; + +struct __declspec(align(8)) Dictionary_2_UnityEngine_AnimatorControllerParameter_System_Object___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_AnimatorControllerParameter_System_Object___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_UnityEngine_AnimatorControllerParameter_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_AnimatorControllerParameter_System_Object_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_AnimatorControllerParameter_System_Object_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_UnityEngine_AnimatorControllerParameter_System_Object_ { + struct Dictionary_2_UnityEngine_AnimatorControllerParameter_System_Object___Class *klass; + MonitorData *monitor; + struct Dictionary_2_UnityEngine_AnimatorControllerParameter_System_Object___Fields fields; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_AnimatorControllerParameter_System_Object___Array { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_AnimatorControllerParameter_System_Object___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_AnimatorControllerParameter_System_Object_ vector[32]; +}; + +struct IEqualityComparer_1_UnityEngine_AnimatorControllerParameter_ { + struct IEqualityComparer_1_UnityEngine_AnimatorControllerParameter___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_AnimatorControllerParameter_System_Object___Fields { + struct Dictionary_2_UnityEngine_AnimatorControllerParameter_System_Object_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_AnimatorControllerParameter_System_Object_ { + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_AnimatorControllerParameter_System_Object___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_AnimatorControllerParameter_System_Object___Fields fields; +}; + +struct IEnumerator_1_UnityEngine_AnimatorControllerParameter_ { + struct IEnumerator_1_UnityEngine_AnimatorControllerParameter___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_AnimatorControllerParameter_System_Object___Fields { + struct Dictionary_2_UnityEngine_AnimatorControllerParameter_System_Object_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_AnimatorControllerParameter_System_Object_ { + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_AnimatorControllerParameter_System_Object___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_AnimatorControllerParameter_System_Object___Fields fields; +}; + +struct ICollection_1_UnityEngine_AnimatorControllerParameter_ { + struct ICollection_1_UnityEngine_AnimatorControllerParameter___Class *klass; + MonitorData *monitor; +}; + +struct KeyValuePair_2_UnityEngine_AnimatorControllerParameter_System_Object___Array { + struct KeyValuePair_2_UnityEngine_AnimatorControllerParameter_System_Object___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct KeyValuePair_2_UnityEngine_AnimatorControllerParameter_System_Object_ vector[32]; +}; + +struct IEnumerator_1_KeyValuePair_2_UnityEngine_AnimatorControllerParameter_System_Object_ { + struct IEnumerator_1_KeyValuePair_2_UnityEngine_AnimatorControllerParameter_System_Object___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_UnityEngine_AnimatorControllerParameter_ { + struct IEnumerable_1_UnityEngine_AnimatorControllerParameter___Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_AnimatorControllerParameter_System_Object___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_AnimatorControllerParameter_System_Object___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_AnimatorControllerParameter_System_Object___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_AnimatorControllerParameter_System_Object___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_AnimatorControllerParameter_System_Object___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_AnimatorControllerParameter_System_Object___Array__VTable { +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_AnimatorControllerParameter_System_Object___Array__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_AnimatorControllerParameter_System_Object___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_AnimatorControllerParameter_System_Object___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_AnimatorControllerParameter_System_Object___Array__VTable vtable; +}; + +struct IEqualityComparer_1_UnityEngine_AnimatorControllerParameter___VTable { + VirtualInvokeData Equals; + VirtualInvokeData GetHashCode; +}; + +struct IEqualityComparer_1_UnityEngine_AnimatorControllerParameter___StaticFields { +}; + +struct IEqualityComparer_1_UnityEngine_AnimatorControllerParameter___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEqualityComparer_1_UnityEngine_AnimatorControllerParameter___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEqualityComparer_1_UnityEngine_AnimatorControllerParameter___VTable vtable; +}; + +struct IEnumerator_1_UnityEngine_AnimatorControllerParameter___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_UnityEngine_AnimatorControllerParameter___StaticFields { +}; + +struct IEnumerator_1_UnityEngine_AnimatorControllerParameter___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_UnityEngine_AnimatorControllerParameter___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_UnityEngine_AnimatorControllerParameter___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_AnimatorControllerParameter_System_Object___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TKey__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_AnimatorControllerParameter_System_Object___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_AnimatorControllerParameter_System_Object___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_AnimatorControllerParameter_System_Object___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_AnimatorControllerParameter_System_Object___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_AnimatorControllerParameter_System_Object___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TValue__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_AnimatorControllerParameter_System_Object___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_AnimatorControllerParameter_System_Object___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_AnimatorControllerParameter_System_Object___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_AnimatorControllerParameter_System_Object___VTable vtable; +}; + +struct ICollection_1_UnityEngine_AnimatorControllerParameter___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_UnityEngine_AnimatorControllerParameter___StaticFields { +}; + +struct ICollection_1_UnityEngine_AnimatorControllerParameter___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_UnityEngine_AnimatorControllerParameter___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_UnityEngine_AnimatorControllerParameter___VTable vtable; +}; + +struct KeyValuePair_2_UnityEngine_AnimatorControllerParameter_System_Object___Array__VTable { +}; + +struct KeyValuePair_2_UnityEngine_AnimatorControllerParameter_System_Object___Array__StaticFields { +}; + +struct KeyValuePair_2_UnityEngine_AnimatorControllerParameter_System_Object___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_UnityEngine_AnimatorControllerParameter_System_Object___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_UnityEngine_AnimatorControllerParameter_System_Object___Array__VTable vtable; +}; + +struct IEnumerator_1_KeyValuePair_2_UnityEngine_AnimatorControllerParameter_System_Object___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_KeyValuePair_2_UnityEngine_AnimatorControllerParameter_System_Object___StaticFields { +}; + +struct IEnumerator_1_KeyValuePair_2_UnityEngine_AnimatorControllerParameter_System_Object___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_KeyValuePair_2_UnityEngine_AnimatorControllerParameter_System_Object___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_KeyValuePair_2_UnityEngine_AnimatorControllerParameter_System_Object___VTable vtable; +}; + +struct IEnumerable_1_UnityEngine_AnimatorControllerParameter___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_UnityEngine_AnimatorControllerParameter___StaticFields { +}; + +struct IEnumerable_1_UnityEngine_AnimatorControllerParameter___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_UnityEngine_AnimatorControllerParameter___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_UnityEngine_AnimatorControllerParameter___VTable vtable; +}; + +struct Dictionary_2_UnityEngine_AnimatorControllerParameter_System_Object___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Values; + VirtualInvokeData ContainsKey; + VirtualInvokeData Add; + VirtualInvokeData Remove; + VirtualInvokeData TryGetValue; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add; + VirtualInvokeData Clear; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_get_Item; + VirtualInvokeData System_Collections_IDictionary_set_Item; + VirtualInvokeData System_Collections_IDictionary_get_Keys; + VirtualInvokeData System_Collections_IDictionary_get_Values; + VirtualInvokeData System_Collections_IDictionary_Contains; + VirtualInvokeData System_Collections_IDictionary_Add; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IDictionary_get_IsReadOnly; + VirtualInvokeData System_Collections_IDictionary_get_IsFixedSize; + VirtualInvokeData System_Collections_IDictionary_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_Remove; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData TryGetValue_1; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Values; + VirtualInvokeData get_Count_2; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct Dictionary_2_UnityEngine_AnimatorControllerParameter_System_Object___StaticFields { +}; + +struct Dictionary_2_UnityEngine_AnimatorControllerParameter_System_Object___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_UnityEngine_AnimatorControllerParameter_System_Object___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_UnityEngine_AnimatorControllerParameter_System_Object___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_AnimatorControllerParameter_System_Object___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Key; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Value; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Entry; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_AnimatorControllerParameter_System_Object___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_AnimatorControllerParameter_System_Object___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_AnimatorControllerParameter_System_Object___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_AnimatorControllerParameter_System_Object___VTable vtable; +}; + +struct RectTransformUtility { + struct RectTransformUtility__Class *klass; + MonitorData *monitor; +}; + +struct RectTransformUtility__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct RectTransformUtility__StaticFields { + struct Vector3__Array *s_Corners; +}; + +struct RectTransformUtility__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RectTransformUtility__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RectTransformUtility__VTable vtable; +}; + +struct GUI { + struct GUI__Class *klass; + MonitorData *monitor; +}; + +struct GUI__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct GUI__StaticFields { + int32_t s_ScrollControlId; + int32_t s_HotTextField; + int32_t s_BoxHash; + int32_t s_ButonHash; + int32_t s_RepeatButtonHash; + int32_t s_ToggleHash; + int32_t s_ButtonGridHash; + int32_t s_SliderHash; + int32_t s_BeginGroupHash; + int32_t s_ScrollviewHash; + int32_t _scrollTroughSide_k__BackingField; + struct DateTime _nextScrollStepTime_k__BackingField; + struct GUISkin *s_Skin; + struct Rect s_ToolTipRect; + struct GenericStack *_scrollViewStates_k__BackingField; +}; + +struct GUI__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GUI__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GUI__VTable vtable; +}; + +struct ICollection_1_Rewired_Joystick_ { + struct ICollection_1_Rewired_Joystick___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_Rewired_Joystick___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_Rewired_Joystick___StaticFields { +}; + +struct ICollection_1_Rewired_Joystick___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_Rewired_Joystick___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_Rewired_Joystick___VTable vtable; +}; + +struct StylePropertyAnimationSystem_ValuesScale___VTable { +}; + +struct StylePropertyAnimationSystem_ValuesScale___StaticFields { +}; + +struct StylePropertyAnimationSystem_ValuesScale___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StylePropertyAnimationSystem_ValuesScale___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StylePropertyAnimationSystem_ValuesScale___VTable vtable; +}; + +struct StylePropertyAnimationSystem_ValuesTextShadow___VTable { +}; + +struct StylePropertyAnimationSystem_ValuesTextShadow___StaticFields { +}; + +struct StylePropertyAnimationSystem_ValuesTextShadow___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StylePropertyAnimationSystem_ValuesTextShadow___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StylePropertyAnimationSystem_ValuesTextShadow___VTable vtable; +}; + +struct StylePropertyAnimationSystem_ValuesTranslate___VTable { +}; + +struct StylePropertyAnimationSystem_ValuesTranslate___StaticFields { +}; + +struct StylePropertyAnimationSystem_ValuesTranslate___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StylePropertyAnimationSystem_ValuesTranslate___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StylePropertyAnimationSystem_ValuesTranslate___VTable vtable; +}; + +struct StylePropertyAnimationSystem_ValuesRotate___VTable { +}; + +struct StylePropertyAnimationSystem_ValuesRotate___StaticFields { +}; + +struct StylePropertyAnimationSystem_ValuesRotate___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StylePropertyAnimationSystem_ValuesRotate___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StylePropertyAnimationSystem_ValuesRotate___VTable vtable; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_ { + struct List_1_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_ *_list; + int32_t _index; + int32_t _version; + struct StylePropertyAnimationSystem_Values *_current; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_Values___Boxed { + struct List_1_T_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_Values___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_Values_ fields; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_Values___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_Values___StaticFields { +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_Values___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_Values___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_UnityEngine_UIElements_StylePropertyAnimationSystem_Values___VTable vtable; +}; + +struct StylePropertyAnimationSystem_ValuesTransformOrigin___VTable { +}; + +struct StylePropertyAnimationSystem_ValuesTransformOrigin___StaticFields { +}; + +struct StylePropertyAnimationSystem_ValuesTransformOrigin___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StylePropertyAnimationSystem_ValuesTransformOrigin___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StylePropertyAnimationSystem_ValuesTransformOrigin___VTable vtable; +}; + +struct StylePropertyAnimationSystem_ValuesFloat___VTable { +}; + +struct StylePropertyAnimationSystem_ValuesFloat___StaticFields { +}; + +struct StylePropertyAnimationSystem_ValuesFloat___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StylePropertyAnimationSystem_ValuesFloat___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StylePropertyAnimationSystem_ValuesFloat___VTable vtable; +}; + +struct StylePropertyAnimationSystem_ValuesLength___VTable { +}; + +struct StylePropertyAnimationSystem_ValuesLength___StaticFields { +}; + +struct StylePropertyAnimationSystem_ValuesLength___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StylePropertyAnimationSystem_ValuesLength___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StylePropertyAnimationSystem_ValuesLength___VTable vtable; +}; + +struct StylePropertyAnimationSystem_ValuesInt___VTable { +}; + +struct StylePropertyAnimationSystem_ValuesInt___StaticFields { +}; + +struct StylePropertyAnimationSystem_ValuesInt___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StylePropertyAnimationSystem_ValuesInt___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StylePropertyAnimationSystem_ValuesInt___VTable vtable; +}; + +struct StylePropertyAnimationSystem_ValuesBackground___VTable { +}; + +struct StylePropertyAnimationSystem_ValuesBackground___StaticFields { +}; + +struct StylePropertyAnimationSystem_ValuesBackground___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StylePropertyAnimationSystem_ValuesBackground___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StylePropertyAnimationSystem_ValuesBackground___VTable vtable; +}; + +struct StylePropertyAnimationSystem_ValuesColor___VTable { +}; + +struct StylePropertyAnimationSystem_ValuesColor___StaticFields { +}; + +struct StylePropertyAnimationSystem_ValuesColor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StylePropertyAnimationSystem_ValuesColor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StylePropertyAnimationSystem_ValuesColor___VTable vtable; +}; + +struct StylePropertyAnimationSystem_ValuesFont___VTable { +}; + +struct StylePropertyAnimationSystem_ValuesFont___StaticFields { +}; + +struct StylePropertyAnimationSystem_ValuesFont___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StylePropertyAnimationSystem_ValuesFont___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StylePropertyAnimationSystem_ValuesFont___VTable vtable; +}; + +struct StylePropertyAnimationSystem_ValuesFontDefinition___VTable { +}; + +struct StylePropertyAnimationSystem_ValuesFontDefinition___StaticFields { +}; + +struct StylePropertyAnimationSystem_ValuesFontDefinition___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StylePropertyAnimationSystem_ValuesFontDefinition___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StylePropertyAnimationSystem_ValuesFontDefinition___VTable vtable; +}; + +struct StyleSheetColor { + struct StyleSheetColor__Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Color32_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct Color32 value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Color32___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Color32___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Color32_ fields; +}; + +struct __declspec(align(8)) Dictionary_2_System_String_UnityEngine_Color32___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Color32___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_System_String_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_Color32_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_Color32_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_System_String_UnityEngine_Color32_ { + struct Dictionary_2_System_String_UnityEngine_Color32___Class *klass; + MonitorData *monitor; + struct Dictionary_2_System_String_UnityEngine_Color32___Fields fields; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Color32___Array { + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Color32___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Color32_ vector[32]; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_Color32___Fields { + struct Dictionary_2_System_String_UnityEngine_Color32_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_Color32_ { + struct Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_Color32___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_Color32___Fields fields; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_Color32___Fields { + struct Dictionary_2_System_String_UnityEngine_Color32_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_Color32_ { + struct Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_Color32___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_Color32___Fields fields; +}; + +struct KeyValuePair_2_System_String_UnityEngine_Color32_ { + struct String *key; + struct Color32 value; +}; + +struct KeyValuePair_2_System_String_UnityEngine_Color32___Boxed { + struct KeyValuePair_2_System_String_UnityEngine_Color32___Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_System_String_UnityEngine_Color32_ fields; +}; + +struct KeyValuePair_2_System_String_UnityEngine_Color32___Array { + struct KeyValuePair_2_System_String_UnityEngine_Color32___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct KeyValuePair_2_System_String_UnityEngine_Color32_ vector[32]; +}; + +struct IEnumerator_1_KeyValuePair_2_System_String_UnityEngine_Color32_ { + struct IEnumerator_1_KeyValuePair_2_System_String_UnityEngine_Color32___Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Color32___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Color32___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Color32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Color32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Color32___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Color32___Array__VTable { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Color32___Array__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Color32___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Color32___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Color32___Array__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_Color32___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TKey__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_Color32___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_Color32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_Color32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_Color32___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_Color32___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TValue__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_Color32___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_Color32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_Color32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_Color32___VTable vtable; +}; + +struct KeyValuePair_2_System_String_UnityEngine_Color32___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct KeyValuePair_2_System_String_UnityEngine_Color32___StaticFields { +}; + +struct KeyValuePair_2_System_String_UnityEngine_Color32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_String_UnityEngine_Color32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_String_UnityEngine_Color32___VTable vtable; +}; + +struct KeyValuePair_2_System_String_UnityEngine_Color32___Array__VTable { +}; + +struct KeyValuePair_2_System_String_UnityEngine_Color32___Array__StaticFields { +}; + +struct KeyValuePair_2_System_String_UnityEngine_Color32___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_String_UnityEngine_Color32___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_String_UnityEngine_Color32___Array__VTable vtable; +}; + +struct IEnumerator_1_KeyValuePair_2_System_String_UnityEngine_Color32___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_KeyValuePair_2_System_String_UnityEngine_Color32___StaticFields { +}; + +struct IEnumerator_1_KeyValuePair_2_System_String_UnityEngine_Color32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_KeyValuePair_2_System_String_UnityEngine_Color32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_KeyValuePair_2_System_String_UnityEngine_Color32___VTable vtable; +}; + +struct Dictionary_2_System_String_UnityEngine_Color32___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Values; + VirtualInvokeData ContainsKey; + VirtualInvokeData Add; + VirtualInvokeData Remove; + VirtualInvokeData TryGetValue; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add; + VirtualInvokeData Clear; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_get_Item; + VirtualInvokeData System_Collections_IDictionary_set_Item; + VirtualInvokeData System_Collections_IDictionary_get_Keys; + VirtualInvokeData System_Collections_IDictionary_get_Values; + VirtualInvokeData System_Collections_IDictionary_Contains; + VirtualInvokeData System_Collections_IDictionary_Add; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IDictionary_get_IsReadOnly; + VirtualInvokeData System_Collections_IDictionary_get_IsFixedSize; + VirtualInvokeData System_Collections_IDictionary_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_Remove; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData TryGetValue_1; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Values; + VirtualInvokeData get_Count_2; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct Dictionary_2_System_String_UnityEngine_Color32___StaticFields { +}; + +struct Dictionary_2_System_String_UnityEngine_Color32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_System_String_UnityEngine_Color32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_System_String_UnityEngine_Color32___VTable vtable; +}; + +struct StyleSheetColor__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct StyleSheetColor__StaticFields { + struct Dictionary_2_System_String_UnityEngine_Color32_ *s_NameToColor; +}; + +struct StyleSheetColor__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StyleSheetColor__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StyleSheetColor__VTable vtable; +}; + +struct EventCallback_1_TooltipEvent___Fields { + struct MulticastDelegate__Fields _; +}; + +struct EventCallback_1_TooltipEvent_ { + struct EventCallback_1_TooltipEvent___Class *klass; + MonitorData *monitor; + struct EventCallback_1_TooltipEvent___Fields fields; +}; + +struct EventCallback_1_TooltipEvent___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct EventCallback_1_TooltipEvent___StaticFields { +}; + +struct EventCallback_1_TooltipEvent___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EventCallback_1_TooltipEvent___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EventCallback_1_TooltipEvent___VTable vtable; +}; + +struct GravityZone___VTable { +}; + +struct GravityZone___StaticFields { +}; + +struct GravityZone___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GravityZone___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GravityZone___VTable vtable; +}; + +struct ObjectIdentifier__Array { + struct ObjectIdentifier__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct ObjectIdentifier *vector[32]; +}; + +struct ObjectIdentifier__Array__VTable { +}; + +struct ObjectIdentifier__Array__StaticFields { +}; + +struct ObjectIdentifier__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ObjectIdentifier__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ObjectIdentifier__Array__VTable vtable; +}; + +struct ObjectListPool_1_System_String_ { + struct ObjectListPool_1_System_String___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) ObjectPool_1_System_Collections_Generic_List_1__6__Fields { + struct Stack_1_List_1_System_String_ *m_Stack; + int32_t m_MaxSize; +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__6 { + struct ObjectPool_1_System_Collections_Generic_List_1__6__Class *klass; + MonitorData *monitor; + struct ObjectPool_1_System_Collections_Generic_List_1__6__Fields fields; +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__6__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__6__StaticFields { +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__6__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ObjectPool_1_System_Collections_Generic_List_1__6__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ObjectPool_1_System_Collections_Generic_List_1__6__VTable vtable; +}; + +struct ObjectListPool_1_System_String___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ObjectListPool_1_System_String___StaticFields { + struct ObjectPool_1_System_Collections_Generic_List_1__6 *pool; +}; + +struct ObjectListPool_1_System_String___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ObjectListPool_1_System_String___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ObjectListPool_1_System_String___VTable vtable; +}; + +struct InitialStyle { + struct InitialStyle__Class *klass; + MonitorData *monitor; +}; + +struct InitialStyle__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct InitialStyle__StaticFields { + struct ComputedStyle s_InitialStyle; +}; + +struct InitialStyle__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InitialStyle__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InitialStyle__VTable vtable; +}; + +struct IPointerCaptureEventInternal { + struct IPointerCaptureEventInternal__Class *klass; + MonitorData *monitor; +}; + +struct IPointerCaptureEventInternal__VTable { + VirtualInvokeData get_pointerId; +}; + +struct IPointerCaptureEventInternal__StaticFields { +}; + +struct IPointerCaptureEventInternal__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IPointerCaptureEventInternal__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IPointerCaptureEventInternal__VTable vtable; +}; + +struct Action_2_Opsive_UltimateCharacterController_Character_Abilities_Items_ItemAbility_Boolean___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_2_Opsive_UltimateCharacterController_Character_Abilities_Items_ItemAbility_Boolean_ { + struct Action_2_Opsive_UltimateCharacterController_Character_Abilities_Items_ItemAbility_Boolean___Class *klass; + MonitorData *monitor; + struct Action_2_Opsive_UltimateCharacterController_Character_Abilities_Items_ItemAbility_Boolean___Fields fields; +}; + +struct Action_2_Opsive_UltimateCharacterController_Character_Abilities_Items_ItemAbility_Boolean___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_2_Opsive_UltimateCharacterController_Character_Abilities_Items_ItemAbility_Boolean___StaticFields { +}; + +struct Action_2_Opsive_UltimateCharacterController_Character_Abilities_Items_ItemAbility_Boolean___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_2_Opsive_UltimateCharacterController_Character_Abilities_Items_ItemAbility_Boolean___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_2_Opsive_UltimateCharacterController_Character_Abilities_Items_ItemAbility_Boolean___VTable vtable; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_ScheduledItem_ { + struct List_1_UnityEngine_UIElements_ScheduledItem_ *_list; + int32_t _index; + int32_t _version; + struct ScheduledItem *_current; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_ScheduledItem___Boxed { + struct List_1_T_Enumerator_UnityEngine_UIElements_ScheduledItem___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_UnityEngine_UIElements_ScheduledItem_ fields; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_ScheduledItem___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_ScheduledItem___StaticFields { +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_ScheduledItem___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_UnityEngine_UIElements_ScheduledItem___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_UnityEngine_UIElements_ScheduledItem___VTable vtable; +}; + +struct HashSet_1_T_Enumerator_UnityEngine_UIElements_ScheduledItem_ { + struct HashSet_1_UnityEngine_UIElements_ScheduledItem_ *_set; + int32_t _index; + int32_t _version; + struct ScheduledItem *_current; +}; + +struct HashSet_1_T_Enumerator_UnityEngine_UIElements_ScheduledItem___Boxed { + struct HashSet_1_T_Enumerator_UnityEngine_UIElements_ScheduledItem___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Enumerator_UnityEngine_UIElements_ScheduledItem_ fields; +}; + +struct HashSet_1_T_Enumerator_UnityEngine_UIElements_ScheduledItem___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct HashSet_1_T_Enumerator_UnityEngine_UIElements_ScheduledItem___StaticFields { +}; + +struct HashSet_1_T_Enumerator_UnityEngine_UIElements_ScheduledItem___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_T_Enumerator_UnityEngine_UIElements_ScheduledItem___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_T_Enumerator_UnityEngine_UIElements_ScheduledItem___VTable vtable; +}; + +struct List_1_T_Enumerator_Pathfinding_GraphNode_ { + struct List_1_Pathfinding_GraphNode_ *_list; + int32_t _index; + int32_t _version; + struct GraphNode *_current; +}; + +struct List_1_T_Enumerator_Pathfinding_GraphNode___Boxed { + struct List_1_T_Enumerator_Pathfinding_GraphNode___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_Pathfinding_GraphNode_ fields; +}; + +struct List_1_T_Enumerator_Pathfinding_GraphNode___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_Pathfinding_GraphNode___StaticFields { +}; + +struct List_1_T_Enumerator_Pathfinding_GraphNode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_Pathfinding_GraphNode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_Pathfinding_GraphNode___VTable vtable; +}; + +struct Action_3_UnityEngine_GameObject_UnityEngine_GameObject_Boolean___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_3_UnityEngine_GameObject_UnityEngine_GameObject_Boolean_ { + struct Action_3_UnityEngine_GameObject_UnityEngine_GameObject_Boolean___Class *klass; + MonitorData *monitor; + struct Action_3_UnityEngine_GameObject_UnityEngine_GameObject_Boolean___Fields fields; +}; + +struct Action_3_UnityEngine_GameObject_UnityEngine_GameObject_Boolean___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_3_UnityEngine_GameObject_UnityEngine_GameObject_Boolean___StaticFields { +}; + +struct Action_3_UnityEngine_GameObject_UnityEngine_GameObject_Boolean___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_3_UnityEngine_GameObject_UnityEngine_GameObject_Boolean___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_3_UnityEngine_GameObject_UnityEngine_GameObject_Boolean___VTable vtable; +}; + +struct Action_2_UnityEngine_GameObject_UnityEngine_GameObject___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_2_UnityEngine_GameObject_UnityEngine_GameObject_ { + struct Action_2_UnityEngine_GameObject_UnityEngine_GameObject___Class *klass; + MonitorData *monitor; + struct Action_2_UnityEngine_GameObject_UnityEngine_GameObject___Fields fields; +}; + +struct Action_2_UnityEngine_GameObject_UnityEngine_GameObject___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_2_UnityEngine_GameObject_UnityEngine_GameObject___StaticFields { +}; + +struct Action_2_UnityEngine_GameObject_UnityEngine_GameObject___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_2_UnityEngine_GameObject_UnityEngine_GameObject___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_2_UnityEngine_GameObject_UnityEngine_GameObject___VTable vtable; +}; + +struct CommandGenerator { + struct CommandGenerator__Class *klass; + MonitorData *monitor; +}; + +struct CommandGenerator__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct CommandGenerator__StaticFields { + struct ProfilerMarker k_ConvertEntriesToCommandsMarker; + struct ProfilerMarker k_NudgeVerticesMarker; + struct ProfilerMarker k_ComputeTransformMatrixMarker; + struct Material *s_blitMaterial_LinearToGamma; + struct Material *s_blitMaterial_GammaToLinear; + struct Material *s_blitMaterial_NoChange; + struct Shader *s_blitShader; +}; + +struct CommandGenerator__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CommandGenerator__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CommandGenerator__VTable vtable; +}; + +struct __declspec(align(8)) List_1_System_Attribute___Fields { + struct Attribute__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_System_Attribute_ { + struct List_1_System_Attribute___Class *klass; + MonitorData *monitor; + struct List_1_System_Attribute___Fields fields; +}; + +struct IEnumerator_1_System_Attribute_ { + struct IEnumerator_1_System_Attribute___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerator_1_System_Attribute___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_System_Attribute___StaticFields { +}; + +struct IEnumerator_1_System_Attribute___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_System_Attribute___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_System_Attribute___VTable vtable; +}; + +struct List_1_System_Attribute___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_System_Attribute___StaticFields { + struct Attribute__Array *s_emptyArray; +}; + +struct List_1_System_Attribute___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_System_Attribute___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_System_Attribute___VTable vtable; +}; + +struct __declspec(align(8)) List_1_System_ComponentModel_EventDescriptor___Fields { + struct EventDescriptor__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_System_ComponentModel_EventDescriptor_ { + struct List_1_System_ComponentModel_EventDescriptor___Class *klass; + MonitorData *monitor; + struct List_1_System_ComponentModel_EventDescriptor___Fields fields; +}; + +struct IEnumerator_1_System_ComponentModel_EventDescriptor_ { + struct IEnumerator_1_System_ComponentModel_EventDescriptor___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerator_1_System_ComponentModel_EventDescriptor___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_System_ComponentModel_EventDescriptor___StaticFields { +}; + +struct IEnumerator_1_System_ComponentModel_EventDescriptor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_System_ComponentModel_EventDescriptor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_System_ComponentModel_EventDescriptor___VTable vtable; +}; + +struct List_1_System_ComponentModel_EventDescriptor___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_System_ComponentModel_EventDescriptor___StaticFields { + struct EventDescriptor__Array *s_emptyArray; +}; + +struct List_1_System_ComponentModel_EventDescriptor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_System_ComponentModel_EventDescriptor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_System_ComponentModel_EventDescriptor___VTable vtable; +}; + +struct IEnumerable_1_System_ComponentModel_EventDescriptor_ { + struct IEnumerable_1_System_ComponentModel_EventDescriptor___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_System_ComponentModel_EventDescriptor___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_System_ComponentModel_EventDescriptor___StaticFields { +}; + +struct IEnumerable_1_System_ComponentModel_EventDescriptor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_System_ComponentModel_EventDescriptor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_System_ComponentModel_EventDescriptor___VTable vtable; +}; + +struct Shaders { + struct Shaders__Class *klass; + MonitorData *monitor; +}; + +struct Shaders__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Shaders__StaticFields { + struct String *k_AtlasBlit; + struct String *k_Editor; + struct String *k_Runtime; + struct String *k_RuntimeWorld; + struct String *k_GraphView; +}; + +struct Shaders__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Shaders__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Shaders__VTable vtable; +}; + +struct ICollection_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo_ { + struct ICollection_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo___StaticFields { +}; + +struct ICollection_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_UnityEngine_UIElements_UIR_TextureBlitter_BlitInfo___VTable vtable; +}; + +struct IItemToggledReceiver { + struct IItemToggledReceiver__Class *klass; + MonitorData *monitor; +}; + +struct IItemToggledReceiver__VTable { + VirtualInvokeData ItemToggled; +}; + +struct IItemToggledReceiver__StaticFields { +}; + +struct IItemToggledReceiver__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IItemToggledReceiver__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IItemToggledReceiver__VTable vtable; +}; + +struct ScheduledEventBase__1__VTable { +}; + +struct ScheduledEventBase__1__StaticFields { +}; + +struct ScheduledEventBase__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ScheduledEventBase__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ScheduledEventBase__1__VTable vtable; +}; + +struct CultureInfoConverter_CultureInfoMapper { + struct CultureInfoConverter_CultureInfoMapper__Class *klass; + MonitorData *monitor; +}; + +struct CultureInfoConverter_CultureInfoMapper__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct CultureInfoConverter_CultureInfoMapper__StaticFields { + struct Dictionary_2_System_String_System_String_ *s_cultureInfoNameMap; +}; + +struct CultureInfoConverter_CultureInfoMapper__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CultureInfoConverter_CultureInfoMapper__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CultureInfoConverter_CultureInfoMapper__VTable vtable; +}; + +struct Interactable__Array { + struct Interactable__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Interactable *vector[32]; +}; + +struct Interactable__Array__VTable { +}; + +struct Interactable__Array__StaticFields { +}; + +struct Interactable__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Interactable__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Interactable__Array__VTable vtable; +}; + +struct Nullable_1_System_ComponentModel_DesignerSerializationVisibility_ { + bool hasValue; + #if defined(_CPLUSPLUS_) + DesignerSerializationVisibility__Enum value; + #else + int32_t value; + #endif +}; + +struct Nullable_1_System_ComponentModel_DesignerSerializationVisibility___Boxed { + struct Nullable_1_System_ComponentModel_DesignerSerializationVisibility___Class *klass; + MonitorData *monitor; + struct Nullable_1_System_ComponentModel_DesignerSerializationVisibility_ fields; +}; + +struct Nullable_1_System_ComponentModel_DesignerSerializationVisibility___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Nullable_1_System_ComponentModel_DesignerSerializationVisibility___StaticFields { +}; + +struct Nullable_1_System_ComponentModel_DesignerSerializationVisibility___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Nullable_1_System_ComponentModel_DesignerSerializationVisibility___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Nullable_1_System_ComponentModel_DesignerSerializationVisibility___VTable vtable; +}; + +struct Func_3_Type_String_Object___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_3_Type_String_Object_ { + struct Func_3_Type_String_Object___Class *klass; + MonitorData *monitor; + struct Func_3_Type_String_Object___Fields fields; +}; + +struct Func_3_Type_String_Object___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_3_Type_String_Object___StaticFields { +}; + +struct Func_3_Type_String_Object___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_3_Type_String_Object___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_3_Type_String_Object___VTable vtable; +}; + +struct Func_5_System_Net_NetworkCredential_String_AsyncCallback_Object_IAsyncResult___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_5_System_Net_NetworkCredential_String_AsyncCallback_Object_IAsyncResult_ { + struct Func_5_System_Net_NetworkCredential_String_AsyncCallback_Object_IAsyncResult___Class *klass; + MonitorData *monitor; + struct Func_5_System_Net_NetworkCredential_String_AsyncCallback_Object_IAsyncResult___Fields fields; +}; + +struct Func_5_System_Net_NetworkCredential_String_AsyncCallback_Object_IAsyncResult___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_5_System_Net_NetworkCredential_String_AsyncCallback_Object_IAsyncResult___StaticFields { +}; + +struct Func_5_System_Net_NetworkCredential_String_AsyncCallback_Object_IAsyncResult___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_5_System_Net_NetworkCredential_String_AsyncCallback_Object_IAsyncResult___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_5_System_Net_NetworkCredential_String_AsyncCallback_Object_IAsyncResult___VTable vtable; +}; + +struct ContextFlagsAdapterPal { + struct ContextFlagsAdapterPal__Class *klass; + MonitorData *monitor; +}; + +struct ContextFlagsAdapterPal__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ContextFlagsAdapterPal__StaticFields { + struct ContextFlagsAdapterPal_ContextFlagMapping__Array *s_contextFlagMapping; +}; + +struct ContextFlagsAdapterPal__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ContextFlagsAdapterPal__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ContextFlagsAdapterPal__VTable vtable; +}; + +struct SecurityStatusAdapterPal { + struct SecurityStatusAdapterPal__Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) BidirectionalDictionary_2_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___Fields { + struct Dictionary_2_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode_ *_forward; + struct Dictionary_2_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS_ *_backward; +}; + +struct BidirectionalDictionary_2_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode_ { + struct BidirectionalDictionary_2_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___Class *klass; + MonitorData *monitor; + struct BidirectionalDictionary_2_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___Fields fields; +}; + +struct Dictionary_2_TKey_TValue_Entry_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode_ { + int32_t hashCode; + int32_t next; + #if defined(_CPLUSPLUS_) + Interop_SECURITY_STATUS__Enum key; + #else + int32_t key; + #endif + #if defined(_CPLUSPLUS_) + SecurityStatusPalErrorCode__Enum value; + #else + int32_t value; + #endif +}; + +struct Dictionary_2_TKey_TValue_Entry_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___Boxed { + struct Dictionary_2_TKey_TValue_Entry_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode_ fields; +}; + +struct __declspec(align(8)) Dictionary_2_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_Interop_SECURITY_STATUS_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode_ { + struct Dictionary_2_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___Class *klass; + MonitorData *monitor; + struct Dictionary_2_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___Fields fields; +}; + +struct Dictionary_2_TKey_TValue_Entry_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___Array { + struct Dictionary_2_TKey_TValue_Entry_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Dictionary_2_TKey_TValue_Entry_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode_ vector[32]; +}; + +struct IEqualityComparer_1_Interop_SECURITY_STATUS_ { + struct IEqualityComparer_1_Interop_SECURITY_STATUS___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_KeyCollection_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___Fields { + struct Dictionary_2_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode_ { + struct Dictionary_2_TKey_TValue_KeyCollection_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_KeyCollection_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___Fields fields; +}; + +struct Interop_SECURITY_STATUS__Enum__Array { + struct Interop_SECURITY_STATUS__Enum__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + Interop_SECURITY_STATUS__Enum vector[32]; +}; + +struct IEnumerator_1_Interop_SECURITY_STATUS_ { + struct IEnumerator_1_Interop_SECURITY_STATUS___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_ValueCollection_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___Fields { + struct Dictionary_2_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode_ { + struct Dictionary_2_TKey_TValue_ValueCollection_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___Fields fields; +}; + +struct SecurityStatusPalErrorCode__Enum__Array { + struct SecurityStatusPalErrorCode__Enum__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + SecurityStatusPalErrorCode__Enum vector[32]; +}; + +struct IEnumerator_1_System_Net_SecurityStatusPalErrorCode_ { + struct IEnumerator_1_System_Net_SecurityStatusPalErrorCode___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_Interop_SECURITY_STATUS_ { + struct ICollection_1_Interop_SECURITY_STATUS___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_System_Net_SecurityStatusPalErrorCode_ { + struct ICollection_1_System_Net_SecurityStatusPalErrorCode___Class *klass; + MonitorData *monitor; +}; + +struct KeyValuePair_2_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode_ { + #if defined(_CPLUSPLUS_) + Interop_SECURITY_STATUS__Enum key; + #else + int32_t key; + #endif + #if defined(_CPLUSPLUS_) + SecurityStatusPalErrorCode__Enum value; + #else + int32_t value; + #endif +}; + +struct KeyValuePair_2_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___Boxed { + struct KeyValuePair_2_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode_ fields; +}; + +struct KeyValuePair_2_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___Array { + struct KeyValuePair_2_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct KeyValuePair_2_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode_ vector[32]; +}; + +struct IEnumerator_1_KeyValuePair_2_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode_ { + struct IEnumerator_1_KeyValuePair_2_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_Interop_SECURITY_STATUS_ { + struct IEnumerable_1_Interop_SECURITY_STATUS___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_System_Net_SecurityStatusPalErrorCode_ { + struct IEnumerable_1_System_Net_SecurityStatusPalErrorCode___Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS_ { + int32_t hashCode; + int32_t next; + #if defined(_CPLUSPLUS_) + SecurityStatusPalErrorCode__Enum key; + #else + int32_t key; + #endif + #if defined(_CPLUSPLUS_) + Interop_SECURITY_STATUS__Enum value; + #else + int32_t value; + #endif +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS_ fields; +}; + +struct __declspec(align(8)) Dictionary_2_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_System_Net_SecurityStatusPalErrorCode_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS_ { + struct Dictionary_2_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS___Class *klass; + MonitorData *monitor; + struct Dictionary_2_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS___Fields fields; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS___Array { + struct Dictionary_2_TKey_TValue_Entry_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Dictionary_2_TKey_TValue_Entry_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS_ vector[32]; +}; + +struct IEqualityComparer_1_System_Net_SecurityStatusPalErrorCode_ { + struct IEqualityComparer_1_System_Net_SecurityStatusPalErrorCode___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_KeyCollection_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS___Fields { + struct Dictionary_2_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS_ { + struct Dictionary_2_TKey_TValue_KeyCollection_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS___Fields fields; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_ValueCollection_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS___Fields { + struct Dictionary_2_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS_ { + struct Dictionary_2_TKey_TValue_ValueCollection_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS___Fields fields; +}; + +struct KeyValuePair_2_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS_ { + #if defined(_CPLUSPLUS_) + SecurityStatusPalErrorCode__Enum key; + #else + int32_t key; + #endif + #if defined(_CPLUSPLUS_) + Interop_SECURITY_STATUS__Enum value; + #else + int32_t value; + #endif +}; + +struct KeyValuePair_2_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS___Boxed { + struct KeyValuePair_2_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS___Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS_ fields; +}; + +struct KeyValuePair_2_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS___Array { + struct KeyValuePair_2_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct KeyValuePair_2_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS_ vector[32]; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS_ { + struct IEnumerator_1_KeyValuePair_2_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS___Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Dictionary_2_TKey_TValue_Entry_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___Array__VTable { +}; + +struct Dictionary_2_TKey_TValue_Entry_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___Array__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___Array__VTable vtable; +}; + +struct IEqualityComparer_1_Interop_SECURITY_STATUS___VTable { + VirtualInvokeData Equals; + VirtualInvokeData GetHashCode; +}; + +struct IEqualityComparer_1_Interop_SECURITY_STATUS___StaticFields { +}; + +struct IEqualityComparer_1_Interop_SECURITY_STATUS___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEqualityComparer_1_Interop_SECURITY_STATUS___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEqualityComparer_1_Interop_SECURITY_STATUS___VTable vtable; +}; + +struct Interop_SECURITY_STATUS__Enum__Array__VTable { +}; + +struct Interop_SECURITY_STATUS__Enum__Array__StaticFields { +}; + +struct Interop_SECURITY_STATUS__Enum__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Interop_SECURITY_STATUS__Enum__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Interop_SECURITY_STATUS__Enum__Array__VTable vtable; +}; + +struct IEnumerator_1_Interop_SECURITY_STATUS___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_Interop_SECURITY_STATUS___StaticFields { +}; + +struct IEnumerator_1_Interop_SECURITY_STATUS___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_Interop_SECURITY_STATUS___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_Interop_SECURITY_STATUS___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TKey__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_KeyCollection_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_KeyCollection_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___VTable vtable; +}; + +struct SecurityStatusPalErrorCode__Enum__Array__VTable { +}; + +struct SecurityStatusPalErrorCode__Enum__Array__StaticFields { +}; + +struct SecurityStatusPalErrorCode__Enum__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SecurityStatusPalErrorCode__Enum__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SecurityStatusPalErrorCode__Enum__Array__VTable vtable; +}; + +struct IEnumerator_1_System_Net_SecurityStatusPalErrorCode___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_System_Net_SecurityStatusPalErrorCode___StaticFields { +}; + +struct IEnumerator_1_System_Net_SecurityStatusPalErrorCode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_System_Net_SecurityStatusPalErrorCode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_System_Net_SecurityStatusPalErrorCode___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TValue__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___VTable vtable; +}; + +struct ICollection_1_Interop_SECURITY_STATUS___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_Interop_SECURITY_STATUS___StaticFields { +}; + +struct ICollection_1_Interop_SECURITY_STATUS___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_Interop_SECURITY_STATUS___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_Interop_SECURITY_STATUS___VTable vtable; +}; + +struct ICollection_1_System_Net_SecurityStatusPalErrorCode___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_System_Net_SecurityStatusPalErrorCode___StaticFields { +}; + +struct ICollection_1_System_Net_SecurityStatusPalErrorCode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_System_Net_SecurityStatusPalErrorCode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_System_Net_SecurityStatusPalErrorCode___VTable vtable; +}; + +struct SecurityStatusPalErrorCode___VTable { +}; + +struct SecurityStatusPalErrorCode___StaticFields { +}; + +struct SecurityStatusPalErrorCode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SecurityStatusPalErrorCode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SecurityStatusPalErrorCode___VTable vtable; +}; + +struct KeyValuePair_2_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct KeyValuePair_2_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___StaticFields { +}; + +struct KeyValuePair_2_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___VTable vtable; +}; + +struct KeyValuePair_2_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___Array__VTable { +}; + +struct KeyValuePair_2_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___Array__StaticFields { +}; + +struct KeyValuePair_2_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___Array__VTable vtable; +}; + +struct IEnumerator_1_KeyValuePair_2_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_KeyValuePair_2_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___StaticFields { +}; + +struct IEnumerator_1_KeyValuePair_2_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_KeyValuePair_2_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_KeyValuePair_2_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___VTable vtable; +}; + +struct IEnumerable_1_Interop_SECURITY_STATUS___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_Interop_SECURITY_STATUS___StaticFields { +}; + +struct IEnumerable_1_Interop_SECURITY_STATUS___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_Interop_SECURITY_STATUS___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_Interop_SECURITY_STATUS___VTable vtable; +}; + +struct IEnumerable_1_System_Net_SecurityStatusPalErrorCode___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_System_Net_SecurityStatusPalErrorCode___StaticFields { +}; + +struct IEnumerable_1_System_Net_SecurityStatusPalErrorCode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_System_Net_SecurityStatusPalErrorCode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_System_Net_SecurityStatusPalErrorCode___VTable vtable; +}; + +struct Dictionary_2_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Values; + VirtualInvokeData ContainsKey; + VirtualInvokeData Add; + VirtualInvokeData Remove; + VirtualInvokeData TryGetValue; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add; + VirtualInvokeData Clear; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_get_Item; + VirtualInvokeData System_Collections_IDictionary_set_Item; + VirtualInvokeData System_Collections_IDictionary_get_Keys; + VirtualInvokeData System_Collections_IDictionary_get_Values; + VirtualInvokeData System_Collections_IDictionary_Contains; + VirtualInvokeData System_Collections_IDictionary_Add; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IDictionary_get_IsReadOnly; + VirtualInvokeData System_Collections_IDictionary_get_IsFixedSize; + VirtualInvokeData System_Collections_IDictionary_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_Remove; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData TryGetValue_1; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Values; + VirtualInvokeData get_Count_2; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct Dictionary_2_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___StaticFields { +}; + +struct Dictionary_2_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS___Array__VTable { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS___Array__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS___Array__VTable vtable; +}; + +struct IEqualityComparer_1_System_Net_SecurityStatusPalErrorCode___VTable { + VirtualInvokeData Equals; + VirtualInvokeData GetHashCode; +}; + +struct IEqualityComparer_1_System_Net_SecurityStatusPalErrorCode___StaticFields { +}; + +struct IEqualityComparer_1_System_Net_SecurityStatusPalErrorCode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEqualityComparer_1_System_Net_SecurityStatusPalErrorCode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEqualityComparer_1_System_Net_SecurityStatusPalErrorCode___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TKey__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TValue__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS___VTable vtable; +}; + +struct Interop_SECURITY_STATUS___VTable { +}; + +struct Interop_SECURITY_STATUS___StaticFields { +}; + +struct Interop_SECURITY_STATUS___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Interop_SECURITY_STATUS___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Interop_SECURITY_STATUS___VTable vtable; +}; + +struct KeyValuePair_2_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct KeyValuePair_2_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS___StaticFields { +}; + +struct KeyValuePair_2_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS___VTable vtable; +}; + +struct KeyValuePair_2_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS___Array__VTable { +}; + +struct KeyValuePair_2_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS___Array__StaticFields { +}; + +struct KeyValuePair_2_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS___Array__VTable vtable; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS___StaticFields { +}; + +struct IEnumerator_1_KeyValuePair_2_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_KeyValuePair_2_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_KeyValuePair_2_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS___VTable vtable; +}; + +struct Dictionary_2_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Values; + VirtualInvokeData ContainsKey; + VirtualInvokeData Add; + VirtualInvokeData Remove; + VirtualInvokeData TryGetValue; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add; + VirtualInvokeData Clear; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_get_Item; + VirtualInvokeData System_Collections_IDictionary_set_Item; + VirtualInvokeData System_Collections_IDictionary_get_Keys; + VirtualInvokeData System_Collections_IDictionary_get_Values; + VirtualInvokeData System_Collections_IDictionary_Contains; + VirtualInvokeData System_Collections_IDictionary_Add; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IDictionary_get_IsReadOnly; + VirtualInvokeData System_Collections_IDictionary_get_IsFixedSize; + VirtualInvokeData System_Collections_IDictionary_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_Remove; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData TryGetValue_1; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Values; + VirtualInvokeData get_Count_2; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct Dictionary_2_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS___StaticFields { +}; + +struct Dictionary_2_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_System_Net_SecurityStatusPalErrorCode_Interop_SECURITY_STATUS___VTable vtable; +}; + +struct BidirectionalDictionary_2_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_T1_T2___GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; +}; + +struct BidirectionalDictionary_2_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___StaticFields { +}; + +struct BidirectionalDictionary_2_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BidirectionalDictionary_2_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BidirectionalDictionary_2_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode___VTable vtable; +}; + +struct SecurityStatusAdapterPal__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct SecurityStatusAdapterPal__StaticFields { + struct BidirectionalDictionary_2_Interop_SECURITY_STATUS_System_Net_SecurityStatusPalErrorCode_ *s_statusDictionary; +}; + +struct SecurityStatusAdapterPal__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SecurityStatusAdapterPal__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SecurityStatusAdapterPal__VTable vtable; +}; + +struct GlobalSSPI { + struct GlobalSSPI__Class *klass; + MonitorData *monitor; +}; + +struct GlobalSSPI__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct GlobalSSPI__StaticFields { + struct SSPIInterface *SSPIAuth; + struct SSPIInterface *SSPISecureChannel; +}; + +struct GlobalSSPI__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GlobalSSPI__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GlobalSSPI__VTable vtable; +}; + +struct HashSet_1_T_Slot_UnityEngine_UIElements_StyleSheets_StylePropertyId_ { + int32_t hashCode; + int32_t next; + #if defined(_CPLUSPLUS_) + StylePropertyId__Enum value; + #else + int32_t value; + #endif +}; + +struct HashSet_1_T_Slot_UnityEngine_UIElements_StyleSheets_StylePropertyId___Boxed { + struct HashSet_1_T_Slot_UnityEngine_UIElements_StyleSheets_StylePropertyId___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_UnityEngine_UIElements_StyleSheets_StylePropertyId_ fields; +}; + +struct __declspec(align(8)) HashSet_1_UnityEngine_UIElements_StyleSheets_StylePropertyId___Fields { + struct Int32__Array *_buckets; + struct HashSet_1_T_Slot_UnityEngine_UIElements_StyleSheets_StylePropertyId___Array *_slots; + int32_t _count; + int32_t _lastIndex; + int32_t _freeList; + struct IEqualityComparer_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ *_comparer; + int32_t _version; + struct SerializationInfo *_siInfo; +}; + +struct HashSet_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ { + struct HashSet_1_UnityEngine_UIElements_StyleSheets_StylePropertyId___Class *klass; + MonitorData *monitor; + struct HashSet_1_UnityEngine_UIElements_StyleSheets_StylePropertyId___Fields fields; +}; + +struct HashSet_1_T_Slot_UnityEngine_UIElements_StyleSheets_StylePropertyId___Array { + struct HashSet_1_T_Slot_UnityEngine_UIElements_StyleSheets_StylePropertyId___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct HashSet_1_T_Slot_UnityEngine_UIElements_StyleSheets_StylePropertyId_ vector[32]; +}; + +struct HashSet_1_T_Slot_UnityEngine_UIElements_StyleSheets_StylePropertyId___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct HashSet_1_T_Slot_UnityEngine_UIElements_StyleSheets_StylePropertyId___StaticFields { +}; + +struct HashSet_1_T_Slot_UnityEngine_UIElements_StyleSheets_StylePropertyId___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_T_Slot_UnityEngine_UIElements_StyleSheets_StylePropertyId___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_T_Slot_UnityEngine_UIElements_StyleSheets_StylePropertyId___VTable vtable; +}; + +struct HashSet_1_T_Slot_UnityEngine_UIElements_StyleSheets_StylePropertyId___Array__VTable { +}; + +struct HashSet_1_T_Slot_UnityEngine_UIElements_StyleSheets_StylePropertyId___Array__StaticFields { +}; + +struct HashSet_1_T_Slot_UnityEngine_UIElements_StyleSheets_StylePropertyId___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_T_Slot_UnityEngine_UIElements_StyleSheets_StylePropertyId___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_T_Slot_UnityEngine_UIElements_StyleSheets_StylePropertyId___Array__VTable vtable; +}; + +struct HashSet_1_UnityEngine_UIElements_StyleSheets_StylePropertyId___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_T__Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData Add; + VirtualInvokeData UnionWith; + VirtualInvokeData IntersectWith; + VirtualInvokeData ExceptWith; + VirtualInvokeData SymmetricExceptWith; + VirtualInvokeData IsSubsetOf; + VirtualInvokeData IsSupersetOf; + VirtualInvokeData IsProperSupersetOf; + VirtualInvokeData IsProperSubsetOf; + VirtualInvokeData Overlaps; + VirtualInvokeData SetEquals; + VirtualInvokeData get_Count_1; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct HashSet_1_UnityEngine_UIElements_StyleSheets_StylePropertyId___StaticFields { +}; + +struct HashSet_1_UnityEngine_UIElements_StyleSheets_StylePropertyId___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_UnityEngine_UIElements_StyleSheets_StylePropertyId___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_UnityEngine_UIElements_StyleSheets_StylePropertyId___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId_ { + int32_t hashCode; + int32_t next; + struct String *key; + #if defined(_CPLUSPLUS_) + StylePropertyId__Enum value; + #else + int32_t value; + #endif +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId_ fields; +}; + +struct __declspec(align(8)) Dictionary_2_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_System_String_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId_ { + struct Dictionary_2_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId___Class *klass; + MonitorData *monitor; + struct Dictionary_2_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId___Fields fields; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId___Array { + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId_ vector[32]; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId___Fields { + struct Dictionary_2_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId_ { + struct Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId___Fields fields; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId___Fields { + struct Dictionary_2_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId_ { + struct Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId___Fields fields; +}; + +struct KeyValuePair_2_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId_ { + struct String *key; + #if defined(_CPLUSPLUS_) + StylePropertyId__Enum value; + #else + int32_t value; + #endif +}; + +struct KeyValuePair_2_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId___Boxed { + struct KeyValuePair_2_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId___Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId_ fields; +}; + +struct KeyValuePair_2_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId___Array { + struct KeyValuePair_2_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct KeyValuePair_2_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId_ vector[32]; +}; + +struct IEnumerator_1_KeyValuePair_2_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId_ { + struct IEnumerator_1_KeyValuePair_2_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId___Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId___Array__VTable { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId___Array__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId___Array__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TKey__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TValue__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId___VTable vtable; +}; + +struct StylePropertyId___VTable { +}; + +struct StylePropertyId___StaticFields { +}; + +struct StylePropertyId___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StylePropertyId___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StylePropertyId___VTable vtable; +}; + +struct KeyValuePair_2_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct KeyValuePair_2_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId___StaticFields { +}; + +struct KeyValuePair_2_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId___VTable vtable; +}; + +struct KeyValuePair_2_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId___Array__VTable { +}; + +struct KeyValuePair_2_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId___Array__StaticFields { +}; + +struct KeyValuePair_2_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId___Array__VTable vtable; +}; + +struct IEnumerator_1_KeyValuePair_2_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_KeyValuePair_2_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId___StaticFields { +}; + +struct IEnumerator_1_KeyValuePair_2_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_KeyValuePair_2_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_KeyValuePair_2_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId___VTable vtable; +}; + +struct Dictionary_2_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Values; + VirtualInvokeData ContainsKey; + VirtualInvokeData Add; + VirtualInvokeData Remove; + VirtualInvokeData TryGetValue; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add; + VirtualInvokeData Clear; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_get_Item; + VirtualInvokeData System_Collections_IDictionary_set_Item; + VirtualInvokeData System_Collections_IDictionary_get_Keys; + VirtualInvokeData System_Collections_IDictionary_get_Values; + VirtualInvokeData System_Collections_IDictionary_Contains; + VirtualInvokeData System_Collections_IDictionary_Add; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IDictionary_get_IsReadOnly; + VirtualInvokeData System_Collections_IDictionary_get_IsFixedSize; + VirtualInvokeData System_Collections_IDictionary_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_Remove; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData TryGetValue_1; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Values; + VirtualInvokeData get_Count_2; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct Dictionary_2_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId___StaticFields { +}; + +struct Dictionary_2_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId___VTable vtable; +}; + +struct StylePropertyUtil { + struct StylePropertyUtil__Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String_ { + int32_t hashCode; + int32_t next; + #if defined(_CPLUSPLUS_) + StylePropertyId__Enum key; + #else + int32_t key; + #endif + struct String *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String_ fields; +}; + +struct __declspec(align(8)) Dictionary_2_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String_ { + struct Dictionary_2_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String___Class *klass; + MonitorData *monitor; + struct Dictionary_2_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String___Fields fields; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String___Array { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String_ vector[32]; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String___Fields { + struct Dictionary_2_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String_ { + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String___Fields fields; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String___Fields { + struct Dictionary_2_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String_ { + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String___Fields fields; +}; + +struct KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String_ { + #if defined(_CPLUSPLUS_) + StylePropertyId__Enum key; + #else + int32_t key; + #endif + struct String *value; +}; + +struct KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String___Boxed { + struct KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String___Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String_ fields; +}; + +struct KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String___Array { + struct KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String_ vector[32]; +}; + +struct IEnumerator_1_KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String_ { + struct IEnumerator_1_KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String___Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String___Array__VTable { +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String___Array__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String___Array__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TKey__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TValue__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String___VTable vtable; +}; + +struct KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String___StaticFields { +}; + +struct KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String___VTable vtable; +}; + +struct KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String___Array__VTable { +}; + +struct KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String___Array__StaticFields { +}; + +struct KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String___Array__VTable vtable; +}; + +struct IEnumerator_1_KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String___StaticFields { +}; + +struct IEnumerator_1_KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String___VTable vtable; +}; + +struct Dictionary_2_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Values; + VirtualInvokeData ContainsKey; + VirtualInvokeData Add; + VirtualInvokeData Remove; + VirtualInvokeData TryGetValue; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add; + VirtualInvokeData Clear; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_get_Item; + VirtualInvokeData System_Collections_IDictionary_set_Item; + VirtualInvokeData System_Collections_IDictionary_get_Keys; + VirtualInvokeData System_Collections_IDictionary_get_Values; + VirtualInvokeData System_Collections_IDictionary_Contains; + VirtualInvokeData System_Collections_IDictionary_Add; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IDictionary_get_IsReadOnly; + VirtualInvokeData System_Collections_IDictionary_get_IsFixedSize; + VirtualInvokeData System_Collections_IDictionary_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_Remove; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData TryGetValue_1; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Values; + VirtualInvokeData get_Count_2; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct Dictionary_2_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String___StaticFields { +}; + +struct Dictionary_2_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String___VTable vtable; +}; + +struct StylePropertyUtil__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct StylePropertyUtil__StaticFields { + struct HashSet_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ *s_AnimatablePropertiesHash; + struct Dictionary_2_System_String_UnityEngine_UIElements_StyleSheets_StylePropertyId_ *s_NameToId; + struct Dictionary_2_UnityEngine_UIElements_StyleSheets_StylePropertyId_System_String_ *s_IdToName; + struct StylePropertyId__Enum__Array *s_AnimatableProperties; +}; + +struct StylePropertyUtil__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StylePropertyUtil__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StylePropertyUtil__VTable vtable; +}; + +struct MeshBuilder { + struct MeshBuilder__Class *klass; + MonitorData *monitor; +}; + +#if defined(_CPLUSPLUS_) +enum class MeshBuilder_VertexClipEdge__Enum : int32_t { + None = 0x00000000, + Left = 0x00000001, + Top = 0x00000002, + Right = 0x00000004, + Bottom = 0x00000008, +}; + +#else +enum MeshBuilder_VertexClipEdge__Enum { + MeshBuilder_VertexClipEdge__Enum_None = 0x00000000, + MeshBuilder_VertexClipEdge__Enum_Left = 0x00000001, + MeshBuilder_VertexClipEdge__Enum_Top = 0x00000002, + MeshBuilder_VertexClipEdge__Enum_Right = 0x00000004, + MeshBuilder_VertexClipEdge__Enum_Bottom = 0x00000008, +}; + +#endif +struct MeshBuilder_VertexClipEdge__Enum__Boxed { + struct MeshBuilder_VertexClipEdge__Enum__Class *klass; + MonitorData *monitor; + #if defined(_CPLUSPLUS_) + MeshBuilder_VertexClipEdge__Enum value; + #else + int32_t value; + #endif +}; + +struct MeshBuilder_VertexClipEdge__Enum__Array { + struct MeshBuilder_VertexClipEdge__Enum__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + MeshBuilder_VertexClipEdge__Enum vector[32]; +}; + +struct MeshBuilder_VertexClipEdge__Enum__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData CompareTo; + VirtualInvokeData ToString_1; + VirtualInvokeData GetTypeCode; + VirtualInvokeData System_IConvertible_ToBoolean; + VirtualInvokeData System_IConvertible_ToChar; + VirtualInvokeData System_IConvertible_ToSByte; + VirtualInvokeData System_IConvertible_ToByte; + VirtualInvokeData System_IConvertible_ToInt16; + VirtualInvokeData System_IConvertible_ToUInt16; + VirtualInvokeData System_IConvertible_ToInt32; + VirtualInvokeData System_IConvertible_ToUInt32; + VirtualInvokeData System_IConvertible_ToInt64; + VirtualInvokeData System_IConvertible_ToUInt64; + VirtualInvokeData System_IConvertible_ToSingle; + VirtualInvokeData System_IConvertible_ToDouble; + VirtualInvokeData System_IConvertible_ToDecimal; + VirtualInvokeData System_IConvertible_ToDateTime; + VirtualInvokeData ToString_2; + VirtualInvokeData System_IConvertible_ToType; +}; + +struct MeshBuilder_VertexClipEdge__Enum__StaticFields { +}; + +struct MeshBuilder_VertexClipEdge__Enum__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MeshBuilder_VertexClipEdge__Enum__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MeshBuilder_VertexClipEdge__Enum__VTable vtable; +}; + +struct MeshBuilder_VertexClipEdge__Enum__Array__VTable { +}; + +struct MeshBuilder_VertexClipEdge__Enum__Array__StaticFields { +}; + +struct MeshBuilder_VertexClipEdge__Enum__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MeshBuilder_VertexClipEdge__Enum__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MeshBuilder_VertexClipEdge__Enum__Array__VTable vtable; +}; + +struct MeshBuilder__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct MeshBuilder__StaticFields { + struct ProfilerMarker s_VectorGraphics9Slice; + struct ProfilerMarker s_VectorGraphicsSplitTriangle; + struct ProfilerMarker s_VectorGraphicsScaleTriangle; + struct ProfilerMarker s_VectorGraphicsStretch; + int32_t s_MaxTextMeshVertices; + struct UInt16__Array *slicedQuadIndices; + struct Single__Array *k_TexCoordSlicesX; + struct Single__Array *k_TexCoordSlicesY; + struct Single__Array *k_PositionSlicesX; + struct Single__Array *k_PositionSlicesY; + struct MeshBuilder_VertexClipEdge__Enum__Array *s_AllClipEdges; +}; + +struct MeshBuilder__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MeshBuilder__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MeshBuilder__VTable vtable; +}; + +struct Tessellation { + struct Tessellation__Class *klass; + MonitorData *monitor; +}; + +struct Tessellation_Edges__Enum__Array { + struct Tessellation_Edges__Enum__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + Tessellation_Edges__Enum vector[32]; +}; + +struct Tessellation_Edges__Enum__Array__VTable { +}; + +struct Tessellation_Edges__Enum__Array__StaticFields { +}; + +struct Tessellation_Edges__Enum__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Tessellation_Edges__Enum__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Tessellation_Edges__Enum__Array__VTable vtable; +}; + +struct Tessellation__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Tessellation__StaticFields { + float kEpsilon; + float kUnusedArc; + uint16_t kSubdivisions; + struct ProfilerMarker s_MarkerTessellateRect; + struct ProfilerMarker s_MarkerTessellateBorder; + struct Tessellation_Edges__Enum__Array *s_AllEdges; +}; + +struct Tessellation__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Tessellation__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Tessellation__VTable vtable; +}; + +struct ITextElement { + struct ITextElement__Class *klass; + MonitorData *monitor; +}; + +struct ITextElement__VTable { + VirtualInvokeData get_text; +}; + +struct ITextElement__StaticFields { +}; + +struct ITextElement__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ITextElement__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ITextElement__VTable vtable; +}; + +struct RenderEvents { + struct RenderEvents__Class *klass; + MonitorData *monitor; +}; + +struct RenderEvents__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct RenderEvents__StaticFields { + float VisibilityTreshold; +}; + +struct RenderEvents__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RenderEvents__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RenderEvents__VTable vtable; +}; + +struct UriHelper { + struct UriHelper__Class *klass; + MonitorData *monitor; +}; + +struct UriHelper__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct UriHelper__StaticFields { + struct Char__Array *HexUpperChars; +}; + +struct UriHelper__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UriHelper__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UriHelper__VTable vtable; +}; + +struct Action_4_Int32_Opsive_Shared_Inventory_IItemIdentifier_Boolean_Boolean___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_4_Int32_Opsive_Shared_Inventory_IItemIdentifier_Boolean_Boolean_ { + struct Action_4_Int32_Opsive_Shared_Inventory_IItemIdentifier_Boolean_Boolean___Class *klass; + MonitorData *monitor; + struct Action_4_Int32_Opsive_Shared_Inventory_IItemIdentifier_Boolean_Boolean___Fields fields; +}; + +struct Action_4_Int32_Opsive_Shared_Inventory_IItemIdentifier_Boolean_Boolean___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_4_Int32_Opsive_Shared_Inventory_IItemIdentifier_Boolean_Boolean___StaticFields { +}; + +struct Action_4_Int32_Opsive_Shared_Inventory_IItemIdentifier_Boolean_Boolean___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_4_Int32_Opsive_Shared_Inventory_IItemIdentifier_Boolean_Boolean___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_4_Int32_Opsive_Shared_Inventory_IItemIdentifier_Boolean_Boolean___VTable vtable; +}; + +struct IReloadableItem___VTable { +}; + +struct IReloadableItem___StaticFields { +}; + +struct IReloadableItem___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IReloadableItem___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IReloadableItem___VTable vtable; +}; + +struct IEnumerable_1_KeyValuePair_2_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion_ { + struct IEnumerable_1_KeyValuePair_2_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion___Class *klass; + MonitorData *monitor; +}; + +struct Func_2_System_Collections_Generic_KeyValuePair_2_Boolean__9__Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_2_System_Collections_Generic_KeyValuePair_2_Boolean__9 { + struct Func_2_System_Collections_Generic_KeyValuePair_2_Boolean__9__Class *klass; + MonitorData *monitor; + struct Func_2_System_Collections_Generic_KeyValuePair_2_Boolean__9__Fields fields; +}; + +struct IEnumerable_1_KeyValuePair_2_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_KeyValuePair_2_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion___StaticFields { +}; + +struct IEnumerable_1_KeyValuePair_2_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_KeyValuePair_2_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_KeyValuePair_2_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion___VTable vtable; +}; + +struct Func_2_System_Collections_Generic_KeyValuePair_2_Boolean__9__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_2_System_Collections_Generic_KeyValuePair_2_Boolean__9__StaticFields { +}; + +struct Func_2_System_Collections_Generic_KeyValuePair_2_Boolean__9__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_2_System_Collections_Generic_KeyValuePair_2_Boolean__9__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_2_System_Collections_Generic_KeyValuePair_2_Boolean__9__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion_ { + struct Dictionary_2_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion_ *_dictionary; + int32_t _version; + int32_t _index; + struct KeyValuePair_2_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion_ _current; + int32_t _getEnumeratorRetType; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion___Boxed { + struct Dictionary_2_TKey_TValue_Enumerator_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Enumerator_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion_ fields; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Key; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Value; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Entry; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Enumerator_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Enumerator_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Enumerator_UdpKit_Platform_Photon_PhotonRegion_Regions_UdpKit_Platform_Photon_PhotonRegion___VTable vtable; +}; + +struct __declspec(align(8)) List_1_Horror_GameStatsPlayerToken___Fields { + struct GameStatsPlayerToken__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Horror_GameStatsPlayerToken_ { + struct List_1_Horror_GameStatsPlayerToken___Class *klass; + MonitorData *monitor; + struct List_1_Horror_GameStatsPlayerToken___Fields fields; +}; + +struct GameStatsPlayerToken__Array { + struct GameStatsPlayerToken__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct GameStatsPlayerToken *vector[32]; +}; + +struct IEnumerator_1_Horror_GameStatsPlayerToken_ { + struct IEnumerator_1_Horror_GameStatsPlayerToken___Class *klass; + MonitorData *monitor; +}; + +struct GameStatsPlayerToken__Array__VTable { +}; + +struct GameStatsPlayerToken__Array__StaticFields { +}; + +struct GameStatsPlayerToken__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GameStatsPlayerToken__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GameStatsPlayerToken__Array__VTable vtable; +}; + +struct IEnumerator_1_Horror_GameStatsPlayerToken___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_Horror_GameStatsPlayerToken___StaticFields { +}; + +struct IEnumerator_1_Horror_GameStatsPlayerToken___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_Horror_GameStatsPlayerToken___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_Horror_GameStatsPlayerToken___VTable vtable; +}; + +struct List_1_Horror_GameStatsPlayerToken___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_Horror_GameStatsPlayerToken___StaticFields { + struct GameStatsPlayerToken__Array *s_emptyArray; +}; + +struct List_1_Horror_GameStatsPlayerToken___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Horror_GameStatsPlayerToken___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Horror_GameStatsPlayerToken___VTable vtable; +}; + +struct IOrderedEnumerable_1_Horror_Menu_GameStatsAwardEntry_ { + struct IOrderedEnumerable_1_Horror_Menu_GameStatsAwardEntry___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_Horror_Menu_GameStatsAwardEntry_ { + struct IEnumerable_1_Horror_Menu_GameStatsAwardEntry___Class *klass; + MonitorData *monitor; +}; + +struct IOrderedEnumerable_1_Horror_Menu_GameStatsAwardEntry___VTable { + VirtualInvokeData CreateOrderedEnumerable; +}; + +struct IOrderedEnumerable_1_Horror_Menu_GameStatsAwardEntry___StaticFields { +}; + +struct IOrderedEnumerable_1_Horror_Menu_GameStatsAwardEntry___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IOrderedEnumerable_1_Horror_Menu_GameStatsAwardEntry___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IOrderedEnumerable_1_Horror_Menu_GameStatsAwardEntry___VTable vtable; +}; + +struct IEnumerable_1_Horror_Menu_GameStatsAwardEntry___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_Horror_Menu_GameStatsAwardEntry___StaticFields { +}; + +struct IEnumerable_1_Horror_Menu_GameStatsAwardEntry___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_Horror_Menu_GameStatsAwardEntry___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_Horror_Menu_GameStatsAwardEntry___VTable vtable; +}; + +struct IEnumerable_1_UIEmoteSelectionType_ { + struct IEnumerable_1_UIEmoteSelectionType___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_UIEmoteSelectionType___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_UIEmoteSelectionType___StaticFields { +}; + +struct IEnumerable_1_UIEmoteSelectionType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_UIEmoteSelectionType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_UIEmoteSelectionType___VTable vtable; +}; + +struct IEnumerable_1_UIFlashlightSelectionType_ { + struct IEnumerable_1_UIFlashlightSelectionType___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_UIFlashlightSelectionType___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_UIFlashlightSelectionType___StaticFields { +}; + +struct IEnumerable_1_UIFlashlightSelectionType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_UIFlashlightSelectionType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_UIFlashlightSelectionType___VTable vtable; +}; + +struct IEnumerable_1_UIPetSelectionType_ { + struct IEnumerable_1_UIPetSelectionType___Class *klass; + MonitorData *monitor; +}; + +struct Func_2_UIPetSelectionType_Boolean___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_2_UIPetSelectionType_Boolean_ { + struct Func_2_UIPetSelectionType_Boolean___Class *klass; + MonitorData *monitor; + struct Func_2_UIPetSelectionType_Boolean___Fields fields; +}; + +struct IEnumerable_1_UIPetSelectionType___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_UIPetSelectionType___StaticFields { +}; + +struct IEnumerable_1_UIPetSelectionType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_UIPetSelectionType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_UIPetSelectionType___VTable vtable; +}; + +struct Func_2_UIPetSelectionType_Boolean___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_2_UIPetSelectionType_Boolean___StaticFields { +}; + +struct Func_2_UIPetSelectionType_Boolean___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_2_UIPetSelectionType_Boolean___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_2_UIPetSelectionType_Boolean___VTable vtable; +}; + +struct IEnumerable_1_UIPerkSelectionType_ { + struct IEnumerable_1_UIPerkSelectionType___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_UIPerkSelectionType___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_UIPerkSelectionType___StaticFields { +}; + +struct IEnumerable_1_UIPerkSelectionType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_UIPerkSelectionType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_UIPerkSelectionType___VTable vtable; +}; + +struct List_1_T_Enumerator_CharacterFlashlight_ { + struct List_1_CharacterFlashlight_ *_list; + int32_t _index; + int32_t _version; + struct CharacterFlashlight *_current; +}; + +struct List_1_T_Enumerator_CharacterFlashlight___Boxed { + struct List_1_T_Enumerator_CharacterFlashlight___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_CharacterFlashlight_ fields; +}; + +struct List_1_T_Enumerator_CharacterFlashlight___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_CharacterFlashlight___StaticFields { +}; + +struct List_1_T_Enumerator_CharacterFlashlight___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_CharacterFlashlight___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_CharacterFlashlight___VTable vtable; +}; + +struct IEnumerable_1_CharacterPerk_ { + struct IEnumerable_1_CharacterPerk___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_CharacterPerk___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_CharacterPerk___StaticFields { +}; + +struct IEnumerable_1_CharacterPerk___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_CharacterPerk___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_CharacterPerk___VTable vtable; +}; + +struct IEnumerable_1_CharacterEmote_ { + struct IEnumerable_1_CharacterEmote___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_CharacterEmote___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_CharacterEmote___StaticFields { +}; + +struct IEnumerable_1_CharacterEmote___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_CharacterEmote___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_CharacterEmote___VTable vtable; +}; + +struct IEnumerable_1_CharacterFlashlight_ { + struct IEnumerable_1_CharacterFlashlight___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_CharacterFlashlight___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_CharacterFlashlight___StaticFields { +}; + +struct IEnumerable_1_CharacterFlashlight___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_CharacterFlashlight___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_CharacterFlashlight___VTable vtable; +}; + +struct List_1_T_Enumerator_UIPerkSelectionType_ { + struct List_1_UIPerkSelectionType_ *_list; + int32_t _index; + int32_t _version; + struct UIPerkSelectionType *_current; +}; + +struct List_1_T_Enumerator_UIPerkSelectionType___Boxed { + struct List_1_T_Enumerator_UIPerkSelectionType___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_UIPerkSelectionType_ fields; +}; + +struct List_1_T_Enumerator_UIPerkSelectionType___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_UIPerkSelectionType___StaticFields { +}; + +struct List_1_T_Enumerator_UIPerkSelectionType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_UIPerkSelectionType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_UIPerkSelectionType___VTable vtable; +}; + +struct IOrderedEnumerable_1_UIPerkSelectionType_ { + struct IOrderedEnumerable_1_UIPerkSelectionType___Class *klass; + MonitorData *monitor; +}; + +struct IOrderedEnumerable_1_UIPerkSelectionType___VTable { + VirtualInvokeData CreateOrderedEnumerable; +}; + +struct IOrderedEnumerable_1_UIPerkSelectionType___StaticFields { +}; + +struct IOrderedEnumerable_1_UIPerkSelectionType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IOrderedEnumerable_1_UIPerkSelectionType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IOrderedEnumerable_1_UIPerkSelectionType___VTable vtable; +}; + +struct List_1_T_Enumerator_UIFlashlightSelectionType_ { + struct List_1_UIFlashlightSelectionType_ *_list; + int32_t _index; + int32_t _version; + struct UIFlashlightSelectionType *_current; +}; + +struct List_1_T_Enumerator_UIFlashlightSelectionType___Boxed { + struct List_1_T_Enumerator_UIFlashlightSelectionType___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_UIFlashlightSelectionType_ fields; +}; + +struct List_1_T_Enumerator_UIFlashlightSelectionType___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_UIFlashlightSelectionType___StaticFields { +}; + +struct List_1_T_Enumerator_UIFlashlightSelectionType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_UIFlashlightSelectionType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_UIFlashlightSelectionType___VTable vtable; +}; + +struct List_1_T_Enumerator_UIEmoteSelectionType_ { + struct List_1_UIEmoteSelectionType_ *_list; + int32_t _index; + int32_t _version; + struct UIEmoteSelectionType *_current; +}; + +struct List_1_T_Enumerator_UIEmoteSelectionType___Boxed { + struct List_1_T_Enumerator_UIEmoteSelectionType___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_UIEmoteSelectionType_ fields; +}; + +struct List_1_T_Enumerator_UIEmoteSelectionType___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_UIEmoteSelectionType___StaticFields { +}; + +struct List_1_T_Enumerator_UIEmoteSelectionType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_UIEmoteSelectionType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_UIEmoteSelectionType___VTable vtable; +}; + +struct List_1_T_Enumerator_UIOutfitSelectionType_ { + struct List_1_UIOutfitSelectionType_ *_list; + int32_t _index; + int32_t _version; + struct UIOutfitSelectionType *_current; +}; + +struct List_1_T_Enumerator_UIOutfitSelectionType___Boxed { + struct List_1_T_Enumerator_UIOutfitSelectionType___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_UIOutfitSelectionType_ fields; +}; + +struct List_1_T_Enumerator_UIOutfitSelectionType___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_UIOutfitSelectionType___StaticFields { +}; + +struct List_1_T_Enumerator_UIOutfitSelectionType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_UIOutfitSelectionType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_UIOutfitSelectionType___VTable vtable; +}; + +struct List_1_T_Enumerator_UIPetSelectionType_ { + struct List_1_UIPetSelectionType_ *_list; + int32_t _index; + int32_t _version; + struct UIPetSelectionType *_current; +}; + +struct List_1_T_Enumerator_UIPetSelectionType___Boxed { + struct List_1_T_Enumerator_UIPetSelectionType___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_UIPetSelectionType_ fields; +}; + +struct List_1_T_Enumerator_UIPetSelectionType___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_UIPetSelectionType___StaticFields { +}; + +struct List_1_T_Enumerator_UIPetSelectionType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_UIPetSelectionType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_UIPetSelectionType___VTable vtable; +}; + +struct IEnumerable_1_UIOutfitSelectionType_ { + struct IEnumerable_1_UIOutfitSelectionType___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_UIOutfitSelectionType___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_UIOutfitSelectionType___StaticFields { +}; + +struct IEnumerable_1_UIOutfitSelectionType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_UIOutfitSelectionType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_UIOutfitSelectionType___VTable vtable; +}; + +struct IOrderedEnumerable_1_UIFlashlightSelectionType_ { + struct IOrderedEnumerable_1_UIFlashlightSelectionType___Class *klass; + MonitorData *monitor; +}; + +struct IOrderedEnumerable_1_UIFlashlightSelectionType___VTable { + VirtualInvokeData CreateOrderedEnumerable; +}; + +struct IOrderedEnumerable_1_UIFlashlightSelectionType___StaticFields { +}; + +struct IOrderedEnumerable_1_UIFlashlightSelectionType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IOrderedEnumerable_1_UIFlashlightSelectionType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IOrderedEnumerable_1_UIFlashlightSelectionType___VTable vtable; +}; + +struct IOrderedEnumerable_1_UIEmoteSelectionType_ { + struct IOrderedEnumerable_1_UIEmoteSelectionType___Class *klass; + MonitorData *monitor; +}; + +struct IOrderedEnumerable_1_UIEmoteSelectionType___VTable { + VirtualInvokeData CreateOrderedEnumerable; +}; + +struct IOrderedEnumerable_1_UIEmoteSelectionType___StaticFields { +}; + +struct IOrderedEnumerable_1_UIEmoteSelectionType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IOrderedEnumerable_1_UIEmoteSelectionType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IOrderedEnumerable_1_UIEmoteSelectionType___VTable vtable; +}; + +struct UITooltipController__Array { + struct UITooltipController__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct UITooltipController *vector[32]; +}; + +struct UITooltipController__Array__VTable { +}; + +struct UITooltipController__Array__StaticFields { +}; + +struct UITooltipController__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UITooltipController__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UITooltipController__Array__VTable vtable; +}; + +struct List_1_T_Enumerator_UIMapSelectionType_ { + struct List_1_UIMapSelectionType_ *_list; + int32_t _index; + int32_t _version; + struct UIMapSelectionType *_current; +}; + +struct List_1_T_Enumerator_UIMapSelectionType___Boxed { + struct List_1_T_Enumerator_UIMapSelectionType___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_UIMapSelectionType_ fields; +}; + +struct __declspec(align(8)) List_1_UIMapSelectionType___Fields { + struct UIMapSelectionType__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UIMapSelectionType_ { + struct List_1_UIMapSelectionType___Class *klass; + MonitorData *monitor; + struct List_1_UIMapSelectionType___Fields fields; +}; + +struct UIMapSelectionType__Array { + struct UIMapSelectionType__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct UIMapSelectionType *vector[32]; +}; + +struct IEnumerator_1_UIMapSelectionType_ { + struct IEnumerator_1_UIMapSelectionType___Class *klass; + MonitorData *monitor; +}; + +struct UIMapSelectionType__Array__VTable { +}; + +struct UIMapSelectionType__Array__StaticFields { +}; + +struct UIMapSelectionType__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UIMapSelectionType__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UIMapSelectionType__Array__VTable vtable; +}; + +struct IEnumerator_1_UIMapSelectionType___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_UIMapSelectionType___StaticFields { +}; + +struct IEnumerator_1_UIMapSelectionType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_UIMapSelectionType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_UIMapSelectionType___VTable vtable; +}; + +struct List_1_UIMapSelectionType___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_UIMapSelectionType___StaticFields { + struct UIMapSelectionType__Array *s_emptyArray; +}; + +struct List_1_UIMapSelectionType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UIMapSelectionType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UIMapSelectionType___VTable vtable; +}; + +struct List_1_T_Enumerator_UIMapSelectionType___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_UIMapSelectionType___StaticFields { +}; + +struct List_1_T_Enumerator_UIMapSelectionType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_UIMapSelectionType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_UIMapSelectionType___VTable vtable; +}; + +struct IEnumerable_1_UIMapSelectionType_ { + struct IEnumerable_1_UIMapSelectionType___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_UIMapSelectionType___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_UIMapSelectionType___StaticFields { +}; + +struct IEnumerable_1_UIMapSelectionType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_UIMapSelectionType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_UIMapSelectionType___VTable vtable; +}; + +struct List_1_T_Enumerator_Horror_Menu_MapListItem_ { + struct List_1_Horror_Menu_MapListItem_ *_list; + int32_t _index; + int32_t _version; + struct Menu_MapListItem *_current; +}; + +struct List_1_T_Enumerator_Horror_Menu_MapListItem___Boxed { + struct List_1_T_Enumerator_Horror_Menu_MapListItem___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_Horror_Menu_MapListItem_ fields; +}; + +struct List_1_T_Enumerator_Horror_Menu_MapListItem___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_Horror_Menu_MapListItem___StaticFields { +}; + +struct List_1_T_Enumerator_Horror_Menu_MapListItem___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_Horror_Menu_MapListItem___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_Horror_Menu_MapListItem___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId_ { + int32_t hashCode; + int32_t next; + struct StyleSheetCache_SheetHandleKey key; + struct StylePropertyId__Enum__Array *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId_ fields; +}; + +struct __declspec(align(8)) Dictionary_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId_ { + struct Dictionary_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId___Class *klass; + MonitorData *monitor; + struct Dictionary_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId___Fields fields; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId___Array { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId_ vector[32]; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId___Fields { + struct Dictionary_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId_ { + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId___Fields fields; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId___Fields { + struct Dictionary_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId_ { + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId___Fields fields; +}; + +struct StylePropertyId__Enum__Array__Array { + struct StylePropertyId__Enum__Array__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct StylePropertyId__Enum__Array *vector[32]; +}; + +struct IEnumerator_1_UnityEngine_UIElements_StyleSheets_StylePropertyId__1 { + struct IEnumerator_1_UnityEngine_UIElements_StyleSheets_StylePropertyId__1__Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_UnityEngine_UIElements_StyleSheets_StylePropertyId__1 { + struct ICollection_1_UnityEngine_UIElements_StyleSheets_StylePropertyId__1__Class *klass; + MonitorData *monitor; +}; + +struct KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId_ { + struct StyleSheetCache_SheetHandleKey key; + struct StylePropertyId__Enum__Array *value; +}; + +struct KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId___Boxed { + struct KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId___Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId_ fields; +}; + +struct KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId___Array { + struct KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId_ vector[32]; +}; + +struct IEnumerator_1_KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId_ { + struct IEnumerator_1_KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_UnityEngine_UIElements_StyleSheets_StylePropertyId__1 { + struct IEnumerable_1_UnityEngine_UIElements_StyleSheets_StylePropertyId__1__Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId___Array__VTable { +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId___Array__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId___Array__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TKey__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId___VTable vtable; +}; + +struct StylePropertyId__Enum__Array__Array__VTable { +}; + +struct StylePropertyId__Enum__Array__Array__StaticFields { +}; + +struct StylePropertyId__Enum__Array__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StylePropertyId__Enum__Array__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StylePropertyId__Enum__Array__Array__VTable vtable; +}; + +struct IEnumerator_1_UnityEngine_UIElements_StyleSheets_StylePropertyId__1__VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_UnityEngine_UIElements_StyleSheets_StylePropertyId__1__StaticFields { +}; + +struct IEnumerator_1_UnityEngine_UIElements_StyleSheets_StylePropertyId__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_UnityEngine_UIElements_StyleSheets_StylePropertyId__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_UnityEngine_UIElements_StyleSheets_StylePropertyId__1__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TValue__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId___VTable vtable; +}; + +struct ICollection_1_UnityEngine_UIElements_StyleSheets_StylePropertyId__1__VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_UnityEngine_UIElements_StyleSheets_StylePropertyId__1__StaticFields { +}; + +struct ICollection_1_UnityEngine_UIElements_StyleSheets_StylePropertyId__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_UnityEngine_UIElements_StyleSheets_StylePropertyId__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_UnityEngine_UIElements_StyleSheets_StylePropertyId__1__VTable vtable; +}; + +struct StylePropertyId__1__VTable { +}; + +struct StylePropertyId__1__StaticFields { +}; + +struct StylePropertyId__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StylePropertyId__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StylePropertyId__1__VTable vtable; +}; + +struct KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId___StaticFields { +}; + +struct KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId___VTable vtable; +}; + +struct KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId___Array__VTable { +}; + +struct KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId___Array__StaticFields { +}; + +struct KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId___Array__VTable vtable; +}; + +struct IEnumerator_1_KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId___StaticFields { +}; + +struct IEnumerator_1_KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_KeyValuePair_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId___VTable vtable; +}; + +struct IEnumerable_1_UnityEngine_UIElements_StyleSheets_StylePropertyId__1__VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_UnityEngine_UIElements_StyleSheets_StylePropertyId__1__StaticFields { +}; + +struct IEnumerable_1_UnityEngine_UIElements_StyleSheets_StylePropertyId__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_UnityEngine_UIElements_StyleSheets_StylePropertyId__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_UnityEngine_UIElements_StyleSheets_StylePropertyId__1__VTable vtable; +}; + +struct Dictionary_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Values; + VirtualInvokeData ContainsKey; + VirtualInvokeData Add; + VirtualInvokeData Remove; + VirtualInvokeData TryGetValue; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add; + VirtualInvokeData Clear; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_get_Item; + VirtualInvokeData System_Collections_IDictionary_set_Item; + VirtualInvokeData System_Collections_IDictionary_get_Keys; + VirtualInvokeData System_Collections_IDictionary_get_Values; + VirtualInvokeData System_Collections_IDictionary_Contains; + VirtualInvokeData System_Collections_IDictionary_Add; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IDictionary_get_IsReadOnly; + VirtualInvokeData System_Collections_IDictionary_get_IsFixedSize; + VirtualInvokeData System_Collections_IDictionary_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_Remove; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData TryGetValue_1; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Values; + VirtualInvokeData get_Count_2; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct Dictionary_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId___StaticFields { +}; + +struct Dictionary_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId___VTable vtable; +}; + +struct UQuery_IVisualPredicateWrapper { + struct UQuery_IVisualPredicateWrapper__Class *klass; + MonitorData *monitor; +}; + +struct UQuery_IVisualPredicateWrapper__VTable { + VirtualInvokeData Predicate; +}; + +struct UQuery_IVisualPredicateWrapper__StaticFields { +}; + +struct UQuery_IVisualPredicateWrapper__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UQuery_IVisualPredicateWrapper__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UQuery_IVisualPredicateWrapper__VTable vtable; +}; + +struct List_1_T_Enumerator_Pathfinding_ClipperLib_OutRec_ { + struct List_1_Pathfinding_ClipperLib_OutRec_ *_list; + int32_t _index; + int32_t _version; + struct OutRec *_current; +}; + +struct List_1_T_Enumerator_Pathfinding_ClipperLib_OutRec___Boxed { + struct List_1_T_Enumerator_Pathfinding_ClipperLib_OutRec___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_Pathfinding_ClipperLib_OutRec_ fields; +}; + +struct List_1_T_Enumerator_Pathfinding_ClipperLib_OutRec___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_Pathfinding_ClipperLib_OutRec___StaticFields { +}; + +struct List_1_T_Enumerator_Pathfinding_ClipperLib_OutRec___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_Pathfinding_ClipperLib_OutRec___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_Pathfinding_ClipperLib_OutRec___VTable vtable; +}; + +struct StyleSheetCache { + struct StyleSheetCache__Class *klass; + MonitorData *monitor; +}; + +struct StyleSheetCache__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct StyleSheetCache__StaticFields { + struct StyleSheetCache_SheetHandleKeyComparer *s_Comparer; + struct Dictionary_2_UnityEngine_UIElements_StyleSheets_StyleSheetCache_SheetHandleKey_UnityEngine_UIElements_StyleSheets_StylePropertyId_ *s_RulePropertyIdsCache; +}; + +struct StyleSheetCache__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StyleSheetCache__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StyleSheetCache__VTable vtable; +}; + +struct StylePropertyCache { + struct StylePropertyCache__Class *klass; + MonitorData *monitor; +}; + +struct StylePropertyCache__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct StylePropertyCache__StaticFields { + struct Dictionary_2_System_String_System_String_ *s_PropertySyntaxCache; + struct Dictionary_2_System_String_System_String_ *s_NonTerminalValues; +}; + +struct StylePropertyCache__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StylePropertyCache__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StylePropertyCache__VTable vtable; +}; + +struct ShorthandApplicator { + struct ShorthandApplicator__Class *klass; + MonitorData *monitor; +}; + +struct ShorthandApplicator__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ShorthandApplicator__StaticFields { + struct List_1_UnityEngine_UIElements_TimeValue_ *s_TransitionDelayList; + struct List_1_UnityEngine_UIElements_TimeValue_ *s_TransitionDurationList; + struct List_1_UnityEngine_UIElements_StylePropertyName_ *s_TransitionPropertyList; + struct List_1_UnityEngine_UIElements_EasingFunction_ *s_TransitionTimingFunctionList; +}; + +struct ShorthandApplicator__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ShorthandApplicator__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ShorthandApplicator__VTable vtable; +}; + +struct IEnumerable_1_CharacterOutfit_ { + struct IEnumerable_1_CharacterOutfit___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_CharacterOutfit___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_CharacterOutfit___StaticFields { +}; + +struct IEnumerable_1_CharacterOutfit___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_CharacterOutfit___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_CharacterOutfit___VTable vtable; +}; + +struct Func_2_CharacterOutfit_Boolean___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_2_CharacterOutfit_Boolean_ { + struct Func_2_CharacterOutfit_Boolean___Class *klass; + MonitorData *monitor; + struct Func_2_CharacterOutfit_Boolean___Fields fields; +}; + +struct Func_2_CharacterOutfit_Boolean___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_2_CharacterOutfit_Boolean___StaticFields { +}; + +struct Func_2_CharacterOutfit_Boolean___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_2_CharacterOutfit_Boolean___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_2_CharacterOutfit_Boolean___VTable vtable; +}; + +struct Func_2_CharacterPet_Boolean___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_2_CharacterPet_Boolean_ { + struct Func_2_CharacterPet_Boolean___Class *klass; + MonitorData *monitor; + struct Func_2_CharacterPet_Boolean___Fields fields; +}; + +struct Func_2_CharacterPet_Boolean___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_2_CharacterPet_Boolean___StaticFields { +}; + +struct Func_2_CharacterPet_Boolean___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_2_CharacterPet_Boolean___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_2_CharacterPet_Boolean___VTable vtable; +}; + +struct IEnumerable_1_CharacterPet_ { + struct IEnumerable_1_CharacterPet___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_CharacterPet___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_CharacterPet___StaticFields { +}; + +struct IEnumerable_1_CharacterPet___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_CharacterPet___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_CharacterPet___VTable vtable; +}; + +struct IOrderedEnumerable_1_CharacterEmote_ { + struct IOrderedEnumerable_1_CharacterEmote___Class *klass; + MonitorData *monitor; +}; + +struct IOrderedEnumerable_1_CharacterEmote___VTable { + VirtualInvokeData CreateOrderedEnumerable; +}; + +struct IOrderedEnumerable_1_CharacterEmote___StaticFields { +}; + +struct IOrderedEnumerable_1_CharacterEmote___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IOrderedEnumerable_1_CharacterEmote___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IOrderedEnumerable_1_CharacterEmote___VTable vtable; +}; + +struct IOrderedEnumerable_1_CharacterFlashlight_ { + struct IOrderedEnumerable_1_CharacterFlashlight___Class *klass; + MonitorData *monitor; +}; + +struct IOrderedEnumerable_1_CharacterFlashlight___VTable { + VirtualInvokeData CreateOrderedEnumerable; +}; + +struct IOrderedEnumerable_1_CharacterFlashlight___StaticFields { +}; + +struct IOrderedEnumerable_1_CharacterFlashlight___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IOrderedEnumerable_1_CharacterFlashlight___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IOrderedEnumerable_1_CharacterFlashlight___VTable vtable; +}; + +struct IOrderedEnumerable_1_CharacterPerk_ { + struct IOrderedEnumerable_1_CharacterPerk___Class *klass; + MonitorData *monitor; +}; + +struct IOrderedEnumerable_1_CharacterPerk___VTable { + VirtualInvokeData CreateOrderedEnumerable; +}; + +struct IOrderedEnumerable_1_CharacterPerk___StaticFields { +}; + +struct IOrderedEnumerable_1_CharacterPerk___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IOrderedEnumerable_1_CharacterPerk___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IOrderedEnumerable_1_CharacterPerk___VTable vtable; +}; + +struct IEnumerable_1_SteamInventoryItem_ { + struct IEnumerable_1_SteamInventoryItem___Class *klass; + MonitorData *monitor; +}; + +struct Func_2_SteamInventoryItem_Boolean___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_2_SteamInventoryItem_Boolean_ { + struct Func_2_SteamInventoryItem_Boolean___Class *klass; + MonitorData *monitor; + struct Func_2_SteamInventoryItem_Boolean___Fields fields; +}; + +struct IEnumerable_1_SteamInventoryItem___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_SteamInventoryItem___StaticFields { +}; + +struct IEnumerable_1_SteamInventoryItem___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_SteamInventoryItem___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_SteamInventoryItem___VTable vtable; +}; + +struct Func_2_SteamInventoryItem_Boolean___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_2_SteamInventoryItem_Boolean___StaticFields { +}; + +struct Func_2_SteamInventoryItem_Boolean___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_2_SteamInventoryItem_Boolean___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_2_SteamInventoryItem_Boolean___VTable vtable; +}; + +struct UnityAction_1_System_String___Fields { + struct MulticastDelegate__Fields _; +}; + +struct UnityAction_1_System_String_ { + struct UnityAction_1_System_String___Class *klass; + MonitorData *monitor; + struct UnityAction_1_System_String___Fields fields; +}; + +struct UnityAction_1_System_String___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct UnityAction_1_System_String___StaticFields { +}; + +struct UnityAction_1_System_String___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UnityAction_1_System_String___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UnityAction_1_System_String___VTable vtable; +}; + +struct Grain___VTable { +}; + +struct Grain___StaticFields { +}; + +struct Grain___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Grain___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Grain___VTable vtable; +}; + +struct Vignette___VTable { +}; + +struct Vignette___StaticFields { +}; + +struct Vignette___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Vignette___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Vignette___VTable vtable; +}; + +struct Action_1_Horror_DevourGameMode___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_1_Horror_DevourGameMode_ { + struct Action_1_Horror_DevourGameMode___Class *klass; + MonitorData *monitor; + struct Action_1_Horror_DevourGameMode___Fields fields; +}; + +struct Action_1_Horror_DevourGameMode___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_1_Horror_DevourGameMode___StaticFields { +}; + +struct Action_1_Horror_DevourGameMode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_1_Horror_DevourGameMode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_1_Horror_DevourGameMode___VTable vtable; +}; + +struct Enum__Array { + struct Enum__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Enum vector[32]; +}; + +struct Enum__Array__VTable { +}; + +struct Enum__Array__StaticFields { +}; + +struct Enum__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Enum__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Enum__Array__VTable vtable; +}; + +struct __declspec(align(8)) List_1_System_Enum___Fields { + struct Enum__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_System_Enum_ { + struct List_1_System_Enum___Class *klass; + MonitorData *monitor; + struct List_1_System_Enum___Fields fields; +}; + +struct IEnumerator_1_System_Enum_ { + struct IEnumerator_1_System_Enum___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerator_1_System_Enum___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_System_Enum___StaticFields { +}; + +struct IEnumerator_1_System_Enum___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_System_Enum___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_System_Enum___VTable vtable; +}; + +struct List_1_System_Enum___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_System_Enum___StaticFields { + struct Enum__Array *s_emptyArray; +}; + +struct List_1_System_Enum___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_System_Enum___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_System_Enum___VTable vtable; +}; + +struct CompModSwitches { + struct CompModSwitches__Class *klass; + MonitorData *monitor; +}; + +struct CompModSwitches__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct CompModSwitches__StaticFields { + struct BooleanSwitch *commonDesignerServices; + struct TraceSwitch *eventLog; +}; + +struct CompModSwitches__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CompModSwitches__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CompModSwitches__VTable vtable; +}; + +struct __declspec(align(8)) ReadOnlyCollection_1_Pathfinding_Ionic_Zip_ZipEntry___Fields { + struct IList_1_Pathfinding_Ionic_Zip_ZipEntry_ *list; + struct Object *_syncRoot; +}; + +struct ReadOnlyCollection_1_Pathfinding_Ionic_Zip_ZipEntry_ { + struct ReadOnlyCollection_1_Pathfinding_Ionic_Zip_ZipEntry___Class *klass; + MonitorData *monitor; + struct ReadOnlyCollection_1_Pathfinding_Ionic_Zip_ZipEntry___Fields fields; +}; + +struct IList_1_Pathfinding_Ionic_Zip_ZipEntry_ { + struct IList_1_Pathfinding_Ionic_Zip_ZipEntry___Class *klass; + MonitorData *monitor; +}; + +struct IList_1_Pathfinding_Ionic_Zip_ZipEntry___VTable { + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; +}; + +struct IList_1_Pathfinding_Ionic_Zip_ZipEntry___StaticFields { +}; + +struct IList_1_Pathfinding_Ionic_Zip_ZipEntry___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IList_1_Pathfinding_Ionic_Zip_ZipEntry___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IList_1_Pathfinding_Ionic_Zip_ZipEntry___VTable vtable; +}; + +struct ReadOnlyCollection_1_Pathfinding_Ionic_Zip_ZipEntry___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_Generic_IList_T__get_Item; + VirtualInvokeData System_Collections_Generic_IList_T__set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData System_Collections_Generic_IList_T__Insert; + VirtualInvokeData System_Collections_Generic_IList_T__RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_T__Add; + VirtualInvokeData System_Collections_Generic_ICollection_T__Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_T__Remove; + VirtualInvokeData GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData System_Collections_IList_Clear; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData System_Collections_IList_RemoveAt; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item; + VirtualInvokeData get_Count_2; +}; + +struct ReadOnlyCollection_1_Pathfinding_Ionic_Zip_ZipEntry___StaticFields { +}; + +struct ReadOnlyCollection_1_Pathfinding_Ionic_Zip_ZipEntry___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ReadOnlyCollection_1_Pathfinding_Ionic_Zip_ZipEntry___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ReadOnlyCollection_1_Pathfinding_Ionic_Zip_ZipEntry___VTable vtable; +}; + +struct IDictionary_2_System_String_Pathfinding_Ionic_Zip_ZipEntry_ { + struct IDictionary_2_System_String_Pathfinding_Ionic_Zip_ZipEntry___Class *klass; + MonitorData *monitor; +}; + +struct IDictionary_2_System_String_Pathfinding_Ionic_Zip_ZipEntry___VTable { + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData get_Keys; + VirtualInvokeData get_Values; + VirtualInvokeData ContainsKey; + VirtualInvokeData Add; + VirtualInvokeData Remove; + VirtualInvokeData TryGetValue; +}; + +struct IDictionary_2_System_String_Pathfinding_Ionic_Zip_ZipEntry___StaticFields { +}; + +struct IDictionary_2_System_String_Pathfinding_Ionic_Zip_ZipEntry___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IDictionary_2_System_String_Pathfinding_Ionic_Zip_ZipEntry___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IDictionary_2_System_String_Pathfinding_Ionic_Zip_ZipEntry___VTable vtable; +}; + +struct Attribute__Array__Array { + struct Attribute__Array__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Attribute__Array *vector[32]; +}; + +struct Attribute__Array__Array__VTable { +}; + +struct Attribute__Array__Array__StaticFields { +}; + +struct Attribute__Array__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Attribute__Array__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Attribute__Array__Array__VTable vtable; +}; + +struct IDictionaryService { + struct IDictionaryService__Class *klass; + MonitorData *monitor; +}; + +struct IDictionaryService__VTable { + VirtualInvokeData GetKey; + VirtualInvokeData GetValue; + VirtualInvokeData SetValue; +}; + +struct IDictionaryService__StaticFields { +}; + +struct IDictionaryService__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IDictionaryService__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IDictionaryService__VTable vtable; +}; + +struct IComponentChangeService { + struct IComponentChangeService__Class *klass; + MonitorData *monitor; +}; + +struct IComponentChangeService__VTable { + VirtualInvokeData add_ComponentAdded; + VirtualInvokeData remove_ComponentAdded; + VirtualInvokeData add_ComponentAdding; + VirtualInvokeData remove_ComponentAdding; + VirtualInvokeData add_ComponentChanged; + VirtualInvokeData remove_ComponentChanged; + VirtualInvokeData add_ComponentChanging; + VirtualInvokeData remove_ComponentChanging; + VirtualInvokeData add_ComponentRemoved; + VirtualInvokeData remove_ComponentRemoved; + VirtualInvokeData add_ComponentRemoving; + VirtualInvokeData remove_ComponentRemoving; + VirtualInvokeData add_ComponentRename; + VirtualInvokeData remove_ComponentRename; + VirtualInvokeData OnComponentChanged; + VirtualInvokeData OnComponentChanging; +}; + +struct IComponentChangeService__StaticFields { +}; + +struct IComponentChangeService__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IComponentChangeService__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IComponentChangeService__VTable vtable; +}; + +struct IReferenceService { + struct IReferenceService__Class *klass; + MonitorData *monitor; +}; + +struct IReferenceService__VTable { + VirtualInvokeData GetComponent; + VirtualInvokeData GetReference; + VirtualInvokeData GetName; + VirtualInvokeData GetReferences; + VirtualInvokeData GetReferences_1; +}; + +struct IReferenceService__StaticFields { +}; + +struct IReferenceService__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IReferenceService__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IReferenceService__VTable vtable; +}; + +struct __declspec(align(8)) List_1_System_ComponentModel_PropertyDescriptor___Fields { + struct PropertyDescriptor__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_System_ComponentModel_PropertyDescriptor_ { + struct List_1_System_ComponentModel_PropertyDescriptor___Class *klass; + MonitorData *monitor; + struct List_1_System_ComponentModel_PropertyDescriptor___Fields fields; +}; + +struct IEnumerator_1_System_ComponentModel_PropertyDescriptor_ { + struct IEnumerator_1_System_ComponentModel_PropertyDescriptor___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_System_ComponentModel_PropertyDescriptor_ { + struct IEnumerable_1_System_ComponentModel_PropertyDescriptor___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerator_1_System_ComponentModel_PropertyDescriptor___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_System_ComponentModel_PropertyDescriptor___StaticFields { +}; + +struct IEnumerator_1_System_ComponentModel_PropertyDescriptor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_System_ComponentModel_PropertyDescriptor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_System_ComponentModel_PropertyDescriptor___VTable vtable; +}; + +struct List_1_System_ComponentModel_PropertyDescriptor___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_System_ComponentModel_PropertyDescriptor___StaticFields { + struct PropertyDescriptor__Array *s_emptyArray; +}; + +struct List_1_System_ComponentModel_PropertyDescriptor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_System_ComponentModel_PropertyDescriptor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_System_ComponentModel_PropertyDescriptor___VTable vtable; +}; + +struct IEnumerable_1_System_ComponentModel_PropertyDescriptor___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_System_ComponentModel_PropertyDescriptor___StaticFields { +}; + +struct IEnumerable_1_System_ComponentModel_PropertyDescriptor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_System_ComponentModel_PropertyDescriptor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_System_ComponentModel_PropertyDescriptor___VTable vtable; +}; + +struct INestedSite { + struct INestedSite__Class *klass; + MonitorData *monitor; +}; + +struct INestedSite__VTable { + VirtualInvokeData get_FullName; +}; + +struct INestedSite__StaticFields { +}; + +struct INestedSite__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct INestedSite__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct INestedSite__VTable vtable; +}; + +struct INestedContainer { + struct INestedContainer__Class *klass; + MonitorData *monitor; +}; + +struct INestedContainer__VTable { + VirtualInvokeData get_Owner; +}; + +struct INestedContainer__StaticFields { +}; + +struct INestedContainer__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct INestedContainer__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct INestedContainer__VTable vtable; +}; + +struct ZipEntry_CopyHelper { + struct ZipEntry_CopyHelper__Class *klass; + MonitorData *monitor; +}; + +struct ZipEntry_CopyHelper__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ZipEntry_CopyHelper__StaticFields { + struct Regex *re; + int32_t callCount; +}; + +struct ZipEntry_CopyHelper__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ZipEntry_CopyHelper__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ZipEntry_CopyHelper__VTable vtable; +}; + +struct SharedUtilities { + struct SharedUtilities__Class *klass; + MonitorData *monitor; +}; + +struct SharedUtilities__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct SharedUtilities__StaticFields { + struct Regex *doubleDotRegex1; + struct Encoding *ibm437; + struct Encoding *utf8; +}; + +struct SharedUtilities__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SharedUtilities__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SharedUtilities__VTable vtable; +}; + +struct List_1_T_Enumerator_System_ComponentModel_MaskedTextProvider_CharDescriptor_ { + struct List_1_System_ComponentModel_MaskedTextProvider_CharDescriptor_ *_list; + int32_t _index; + int32_t _version; + struct MaskedTextProvider_CharDescriptor *_current; +}; + +struct List_1_T_Enumerator_System_ComponentModel_MaskedTextProvider_CharDescriptor___Boxed { + struct List_1_T_Enumerator_System_ComponentModel_MaskedTextProvider_CharDescriptor___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_System_ComponentModel_MaskedTextProvider_CharDescriptor_ fields; +}; + +struct List_1_T_Enumerator_System_ComponentModel_MaskedTextProvider_CharDescriptor___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_System_ComponentModel_MaskedTextProvider_CharDescriptor___StaticFields { +}; + +struct List_1_T_Enumerator_System_ComponentModel_MaskedTextProvider_CharDescriptor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_System_ComponentModel_MaskedTextProvider_CharDescriptor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_System_ComponentModel_MaskedTextProvider_CharDescriptor___VTable vtable; +}; + +struct ITypeResolutionService { + struct ITypeResolutionService__Class *klass; + MonitorData *monitor; +}; + +struct ITypeResolutionService__VTable { + VirtualInvokeData GetAssembly; + VirtualInvokeData GetAssembly_1; + VirtualInvokeData GetType; + VirtualInvokeData GetType_1; + VirtualInvokeData GetType_2; + VirtualInvokeData ReferenceAssembly; + VirtualInvokeData GetPathOfAssembly; +}; + +struct ITypeResolutionService__StaticFields { +}; + +struct ITypeResolutionService__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ITypeResolutionService__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ITypeResolutionService__VTable vtable; +}; + +struct InternalInflateConstants { + struct InternalInflateConstants__Class *klass; + MonitorData *monitor; +}; + +struct InternalInflateConstants__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct InternalInflateConstants__StaticFields { + struct Int32__Array *InflateMask; +}; + +struct InternalInflateConstants__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InternalInflateConstants__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InternalInflateConstants__VTable vtable; +}; + +struct Adler { + struct Adler__Class *klass; + MonitorData *monitor; +}; + +struct Adler__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Adler__StaticFields { + uint32_t BASE; + int32_t NMAX; +}; + +struct Adler__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Adler__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Adler__VTable vtable; +}; + +struct InternalConstants { + struct InternalConstants__Class *klass; + MonitorData *monitor; +}; + +struct InternalConstants__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct InternalConstants__StaticFields { + int32_t MAX_BITS; + int32_t BL_CODES; + int32_t D_CODES; + int32_t LITERALS; + int32_t LENGTH_CODES; + int32_t L_CODES; + int32_t MAX_BL_BITS; + int32_t REP_3_6; + int32_t REPZ_3_10; + int32_t REPZ_11_138; +}; + +struct InternalConstants__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InternalConstants__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InternalConstants__VTable vtable; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_IBinding_ { + struct List_1_UnityEngine_UIElements_IBinding_ *_list; + int32_t _index; + int32_t _version; + struct IBinding *_current; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_IBinding___Boxed { + struct List_1_T_Enumerator_UnityEngine_UIElements_IBinding___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_UnityEngine_UIElements_IBinding_ fields; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_IBinding___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_IBinding___StaticFields { +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_IBinding___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_UnityEngine_UIElements_IBinding___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_UnityEngine_UIElements_IBinding___VTable vtable; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_IBindingRequest_ { + struct List_1_UnityEngine_UIElements_IBindingRequest_ *_list; + int32_t _index; + int32_t _version; + struct IBindingRequest *_current; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_IBindingRequest___Boxed { + struct List_1_T_Enumerator_UnityEngine_UIElements_IBindingRequest___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_UnityEngine_UIElements_IBindingRequest_ fields; +}; + +struct IBindingRequest { + struct IBindingRequest__Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) List_1_UnityEngine_UIElements_IBindingRequest___Fields { + struct IBindingRequest__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_UIElements_IBindingRequest_ { + struct List_1_UnityEngine_UIElements_IBindingRequest___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_UIElements_IBindingRequest___Fields fields; +}; + +struct IBindingRequest__Array { + struct IBindingRequest__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct IBindingRequest *vector[32]; +}; + +struct IEnumerator_1_UnityEngine_UIElements_IBindingRequest_ { + struct IEnumerator_1_UnityEngine_UIElements_IBindingRequest___Class *klass; + MonitorData *monitor; +}; + +struct IBindingRequest__VTable { + VirtualInvokeData Bind; +}; + +struct IBindingRequest__StaticFields { +}; + +struct IBindingRequest__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IBindingRequest__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IBindingRequest__VTable vtable; +}; + +struct IBindingRequest__Array__VTable { +}; + +struct IBindingRequest__Array__StaticFields { +}; + +struct IBindingRequest__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IBindingRequest__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IBindingRequest__Array__VTable vtable; +}; + +struct IEnumerator_1_UnityEngine_UIElements_IBindingRequest___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_UnityEngine_UIElements_IBindingRequest___StaticFields { +}; + +struct IEnumerator_1_UnityEngine_UIElements_IBindingRequest___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_UnityEngine_UIElements_IBindingRequest___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_UnityEngine_UIElements_IBindingRequest___VTable vtable; +}; + +struct List_1_UnityEngine_UIElements_IBindingRequest___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_UnityEngine_UIElements_IBindingRequest___StaticFields { + struct IBindingRequest__Array *s_emptyArray; +}; + +struct List_1_UnityEngine_UIElements_IBindingRequest___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_UIElements_IBindingRequest___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_UIElements_IBindingRequest___VTable vtable; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_IBindingRequest___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_IBindingRequest___StaticFields { +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_IBindingRequest___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_UnityEngine_UIElements_IBindingRequest___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_UnityEngine_UIElements_IBindingRequest___VTable vtable; +}; + +struct ObjectListPool_1_IBindingRequest_ { + struct ObjectListPool_1_IBindingRequest___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) ObjectPool_1_System_Collections_Generic_List_1__7__Fields { + struct Stack_1_List_1_UnityEngine_UIElements_IBindingRequest_ *m_Stack; + int32_t m_MaxSize; +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__7 { + struct ObjectPool_1_System_Collections_Generic_List_1__7__Class *klass; + MonitorData *monitor; + struct ObjectPool_1_System_Collections_Generic_List_1__7__Fields fields; +}; + +struct __declspec(align(8)) Stack_1_List_1_UnityEngine_UIElements_IBindingRequest___Fields { + struct List_1_UnityEngine_UIElements_IBindingRequest___Array *_array; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct Stack_1_List_1_UnityEngine_UIElements_IBindingRequest_ { + struct Stack_1_List_1_UnityEngine_UIElements_IBindingRequest___Class *klass; + MonitorData *monitor; + struct Stack_1_List_1_UnityEngine_UIElements_IBindingRequest___Fields fields; +}; + +struct List_1_UnityEngine_UIElements_IBindingRequest___Array { + struct List_1_UnityEngine_UIElements_IBindingRequest___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct List_1_UnityEngine_UIElements_IBindingRequest_ *vector[32]; +}; + +struct IEnumerator_1_List_1_UnityEngine_UIElements_IBindingRequest_ { + struct IEnumerator_1_List_1_UnityEngine_UIElements_IBindingRequest___Class *klass; + MonitorData *monitor; +}; + +struct List_1_UnityEngine_UIElements_IBindingRequest___Array__VTable { +}; + +struct List_1_UnityEngine_UIElements_IBindingRequest___Array__StaticFields { +}; + +struct List_1_UnityEngine_UIElements_IBindingRequest___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_UIElements_IBindingRequest___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_UIElements_IBindingRequest___Array__VTable vtable; +}; + +struct IEnumerator_1_List_1_UnityEngine_UIElements_IBindingRequest___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_List_1_UnityEngine_UIElements_IBindingRequest___StaticFields { +}; + +struct IEnumerator_1_List_1_UnityEngine_UIElements_IBindingRequest___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_List_1_UnityEngine_UIElements_IBindingRequest___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_List_1_UnityEngine_UIElements_IBindingRequest___VTable vtable; +}; + +struct Stack_1_List_1_UnityEngine_UIElements_IBindingRequest___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_1; +}; + +struct Stack_1_List_1_UnityEngine_UIElements_IBindingRequest___StaticFields { +}; + +struct Stack_1_List_1_UnityEngine_UIElements_IBindingRequest___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Stack_1_List_1_UnityEngine_UIElements_IBindingRequest___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Stack_1_List_1_UnityEngine_UIElements_IBindingRequest___VTable vtable; +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__7__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__7__StaticFields { +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__7__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ObjectPool_1_System_Collections_Generic_List_1__7__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ObjectPool_1_System_Collections_Generic_List_1__7__VTable vtable; +}; + +struct ObjectListPool_1_IBindingRequest___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ObjectListPool_1_IBindingRequest___StaticFields { + struct ObjectPool_1_System_Collections_Generic_List_1__7 *pool; +}; + +struct ObjectListPool_1_IBindingRequest___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ObjectListPool_1_IBindingRequest___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ObjectListPool_1_IBindingRequest___VTable vtable; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StylePropertyId_ { + struct List_1_UnityEngine_UIElements_StyleSheets_StylePropertyId_ *_list; + int32_t _index; + int32_t _version; + #if defined(_CPLUSPLUS_) + StylePropertyId__Enum _current; + #else + int32_t _current; + #endif +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StylePropertyId___Boxed { + struct List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StylePropertyId___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StylePropertyId_ fields; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StylePropertyId___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StylePropertyId___StaticFields { +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StylePropertyId___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StylePropertyId___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_UnityEngine_UIElements_StyleSheets_StylePropertyId___VTable vtable; +}; + +struct HashSet_1_T_Enumerator_UnityEngine_UIElements_VisualElement_ { + struct HashSet_1_UnityEngine_UIElements_VisualElement_ *_set; + int32_t _index; + int32_t _version; + struct VisualElement *_current; +}; + +struct HashSet_1_T_Enumerator_UnityEngine_UIElements_VisualElement___Boxed { + struct HashSet_1_T_Enumerator_UnityEngine_UIElements_VisualElement___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Enumerator_UnityEngine_UIElements_VisualElement_ fields; +}; + +struct HashSet_1_T_Enumerator_UnityEngine_UIElements_VisualElement___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct HashSet_1_T_Enumerator_UnityEngine_UIElements_VisualElement___StaticFields { +}; + +struct HashSet_1_T_Enumerator_UnityEngine_UIElements_VisualElement___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_T_Enumerator_UnityEngine_UIElements_VisualElement___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_T_Enumerator_UnityEngine_UIElements_VisualElement___VTable vtable; +}; + +struct ComputedTransitionUtils { + struct ComputedTransitionUtils__Class *klass; + MonitorData *monitor; +}; + +struct ComputedTransitionUtils__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ComputedTransitionUtils__StaticFields { + struct List_1_UnityEngine_UIElements_ComputedTransitionProperty_ *s_ComputedTransitionsBuffer; +}; + +struct ComputedTransitionUtils__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ComputedTransitionUtils__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ComputedTransitionUtils__VTable vtable; +}; + +struct StyleCache { + struct StyleCache__Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_StyleVariableContext_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct StyleVariableContext *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_StyleVariableContext___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_StyleVariableContext___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_StyleVariableContext_ fields; +}; + +struct __declspec(align(8)) Dictionary_2_System_Int32_UnityEngine_UIElements_StyleVariableContext___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_StyleVariableContext___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_System_Int32_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32_UnityEngine_UIElements_StyleVariableContext_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_UnityEngine_UIElements_StyleVariableContext_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_System_Int32_UnityEngine_UIElements_StyleVariableContext_ { + struct Dictionary_2_System_Int32_UnityEngine_UIElements_StyleVariableContext___Class *klass; + MonitorData *monitor; + struct Dictionary_2_System_Int32_UnityEngine_UIElements_StyleVariableContext___Fields fields; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_StyleVariableContext___Array { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_StyleVariableContext___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_StyleVariableContext_ vector[32]; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_KeyCollection_System_Int32_UnityEngine_UIElements_StyleVariableContext___Fields { + struct Dictionary_2_System_Int32_UnityEngine_UIElements_StyleVariableContext_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32_UnityEngine_UIElements_StyleVariableContext_ { + struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32_UnityEngine_UIElements_StyleVariableContext___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32_UnityEngine_UIElements_StyleVariableContext___Fields fields; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_ValueCollection_System_Int32_UnityEngine_UIElements_StyleVariableContext___Fields { + struct Dictionary_2_System_Int32_UnityEngine_UIElements_StyleVariableContext_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_UnityEngine_UIElements_StyleVariableContext_ { + struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_UnityEngine_UIElements_StyleVariableContext___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_UnityEngine_UIElements_StyleVariableContext___Fields fields; +}; + +struct StyleVariableContext__Array { + struct StyleVariableContext__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct StyleVariableContext *vector[32]; +}; + +struct IEnumerator_1_UnityEngine_UIElements_StyleVariableContext_ { + struct IEnumerator_1_UnityEngine_UIElements_StyleVariableContext___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_UnityEngine_UIElements_StyleVariableContext_ { + struct ICollection_1_UnityEngine_UIElements_StyleVariableContext___Class *klass; + MonitorData *monitor; +}; + +struct KeyValuePair_2_System_Int32_UnityEngine_UIElements_StyleVariableContext_ { + int32_t key; + struct StyleVariableContext *value; +}; + +struct KeyValuePair_2_System_Int32_UnityEngine_UIElements_StyleVariableContext___Boxed { + struct KeyValuePair_2_System_Int32_UnityEngine_UIElements_StyleVariableContext___Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_System_Int32_UnityEngine_UIElements_StyleVariableContext_ fields; +}; + +struct KeyValuePair_2_System_Int32_UnityEngine_UIElements_StyleVariableContext___Array { + struct KeyValuePair_2_System_Int32_UnityEngine_UIElements_StyleVariableContext___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct KeyValuePair_2_System_Int32_UnityEngine_UIElements_StyleVariableContext_ vector[32]; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Int32_UnityEngine_UIElements_StyleVariableContext_ { + struct IEnumerator_1_KeyValuePair_2_System_Int32_UnityEngine_UIElements_StyleVariableContext___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_UnityEngine_UIElements_StyleVariableContext_ { + struct IEnumerable_1_UnityEngine_UIElements_StyleVariableContext___Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct ComputedTransitionProperty__Array *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty_ fields; +}; + +struct __declspec(align(8)) Dictionary_2_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_System_Int32_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty_ { + struct Dictionary_2_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty___Class *klass; + MonitorData *monitor; + struct Dictionary_2_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty___Fields fields; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty___Array { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty_ vector[32]; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_KeyCollection_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty___Fields { + struct Dictionary_2_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty_ { + struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty___Fields fields; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_ValueCollection_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty___Fields { + struct Dictionary_2_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty_ { + struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty___Fields fields; +}; + +struct ComputedTransitionProperty__Array__Array { + struct ComputedTransitionProperty__Array__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct ComputedTransitionProperty__Array *vector[32]; +}; + +struct IEnumerator_1_UnityEngine_UIElements_ComputedTransitionProperty__1 { + struct IEnumerator_1_UnityEngine_UIElements_ComputedTransitionProperty__1__Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_UnityEngine_UIElements_ComputedTransitionProperty_ { + struct ICollection_1_UnityEngine_UIElements_ComputedTransitionProperty___Class *klass; + MonitorData *monitor; +}; + +struct KeyValuePair_2_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty_ { + int32_t key; + struct ComputedTransitionProperty__Array *value; +}; + +struct KeyValuePair_2_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty___Boxed { + struct KeyValuePair_2_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty___Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty_ fields; +}; + +struct KeyValuePair_2_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty___Array { + struct KeyValuePair_2_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct KeyValuePair_2_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty_ vector[32]; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty_ { + struct IEnumerator_1_KeyValuePair_2_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_UnityEngine_UIElements_ComputedTransitionProperty__1 { + struct IEnumerable_1_UnityEngine_UIElements_ComputedTransitionProperty__1__Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_StyleVariableContext___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_StyleVariableContext___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_StyleVariableContext___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_StyleVariableContext___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_StyleVariableContext___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_StyleVariableContext___Array__VTable { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_StyleVariableContext___Array__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_StyleVariableContext___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_StyleVariableContext___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_StyleVariableContext___Array__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32_UnityEngine_UIElements_StyleVariableContext___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TKey__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32_UnityEngine_UIElements_StyleVariableContext___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32_UnityEngine_UIElements_StyleVariableContext___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32_UnityEngine_UIElements_StyleVariableContext___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32_UnityEngine_UIElements_StyleVariableContext___VTable vtable; +}; + +struct StyleVariableContext__Array__VTable { +}; + +struct StyleVariableContext__Array__StaticFields { +}; + +struct StyleVariableContext__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StyleVariableContext__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StyleVariableContext__Array__VTable vtable; +}; + +struct IEnumerator_1_UnityEngine_UIElements_StyleVariableContext___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_UnityEngine_UIElements_StyleVariableContext___StaticFields { +}; + +struct IEnumerator_1_UnityEngine_UIElements_StyleVariableContext___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_UnityEngine_UIElements_StyleVariableContext___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_UnityEngine_UIElements_StyleVariableContext___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_UnityEngine_UIElements_StyleVariableContext___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TValue__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_UnityEngine_UIElements_StyleVariableContext___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_UnityEngine_UIElements_StyleVariableContext___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_UnityEngine_UIElements_StyleVariableContext___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_UnityEngine_UIElements_StyleVariableContext___VTable vtable; +}; + +struct ICollection_1_UnityEngine_UIElements_StyleVariableContext___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_UnityEngine_UIElements_StyleVariableContext___StaticFields { +}; + +struct ICollection_1_UnityEngine_UIElements_StyleVariableContext___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_UnityEngine_UIElements_StyleVariableContext___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_UnityEngine_UIElements_StyleVariableContext___VTable vtable; +}; + +struct KeyValuePair_2_System_Int32_UnityEngine_UIElements_StyleVariableContext___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct KeyValuePair_2_System_Int32_UnityEngine_UIElements_StyleVariableContext___StaticFields { +}; + +struct KeyValuePair_2_System_Int32_UnityEngine_UIElements_StyleVariableContext___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_Int32_UnityEngine_UIElements_StyleVariableContext___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_Int32_UnityEngine_UIElements_StyleVariableContext___VTable vtable; +}; + +struct KeyValuePair_2_System_Int32_UnityEngine_UIElements_StyleVariableContext___Array__VTable { +}; + +struct KeyValuePair_2_System_Int32_UnityEngine_UIElements_StyleVariableContext___Array__StaticFields { +}; + +struct KeyValuePair_2_System_Int32_UnityEngine_UIElements_StyleVariableContext___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_Int32_UnityEngine_UIElements_StyleVariableContext___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_Int32_UnityEngine_UIElements_StyleVariableContext___Array__VTable vtable; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Int32_UnityEngine_UIElements_StyleVariableContext___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Int32_UnityEngine_UIElements_StyleVariableContext___StaticFields { +}; + +struct IEnumerator_1_KeyValuePair_2_System_Int32_UnityEngine_UIElements_StyleVariableContext___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_KeyValuePair_2_System_Int32_UnityEngine_UIElements_StyleVariableContext___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_KeyValuePair_2_System_Int32_UnityEngine_UIElements_StyleVariableContext___VTable vtable; +}; + +struct IEnumerable_1_UnityEngine_UIElements_StyleVariableContext___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_UnityEngine_UIElements_StyleVariableContext___StaticFields { +}; + +struct IEnumerable_1_UnityEngine_UIElements_StyleVariableContext___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_UnityEngine_UIElements_StyleVariableContext___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_UnityEngine_UIElements_StyleVariableContext___VTable vtable; +}; + +struct Dictionary_2_System_Int32_UnityEngine_UIElements_StyleVariableContext___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Values; + VirtualInvokeData ContainsKey; + VirtualInvokeData Add; + VirtualInvokeData Remove; + VirtualInvokeData TryGetValue; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add; + VirtualInvokeData Clear; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_get_Item; + VirtualInvokeData System_Collections_IDictionary_set_Item; + VirtualInvokeData System_Collections_IDictionary_get_Keys; + VirtualInvokeData System_Collections_IDictionary_get_Values; + VirtualInvokeData System_Collections_IDictionary_Contains; + VirtualInvokeData System_Collections_IDictionary_Add; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IDictionary_get_IsReadOnly; + VirtualInvokeData System_Collections_IDictionary_get_IsFixedSize; + VirtualInvokeData System_Collections_IDictionary_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_Remove; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData TryGetValue_1; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Values; + VirtualInvokeData get_Count_2; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct Dictionary_2_System_Int32_UnityEngine_UIElements_StyleVariableContext___StaticFields { +}; + +struct Dictionary_2_System_Int32_UnityEngine_UIElements_StyleVariableContext___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_System_Int32_UnityEngine_UIElements_StyleVariableContext___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_System_Int32_UnityEngine_UIElements_StyleVariableContext___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty___Array__VTable { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty___Array__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty___Array__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TKey__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty___VTable vtable; +}; + +struct ComputedTransitionProperty__Array__Array__VTable { +}; + +struct ComputedTransitionProperty__Array__Array__StaticFields { +}; + +struct ComputedTransitionProperty__Array__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ComputedTransitionProperty__Array__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ComputedTransitionProperty__Array__Array__VTable vtable; +}; + +struct IEnumerator_1_UnityEngine_UIElements_ComputedTransitionProperty__1__VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_UnityEngine_UIElements_ComputedTransitionProperty__1__StaticFields { +}; + +struct IEnumerator_1_UnityEngine_UIElements_ComputedTransitionProperty__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_UnityEngine_UIElements_ComputedTransitionProperty__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_UnityEngine_UIElements_ComputedTransitionProperty__1__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TValue__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty___VTable vtable; +}; + +struct ICollection_1_UnityEngine_UIElements_ComputedTransitionProperty___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_UnityEngine_UIElements_ComputedTransitionProperty___StaticFields { +}; + +struct ICollection_1_UnityEngine_UIElements_ComputedTransitionProperty___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_UnityEngine_UIElements_ComputedTransitionProperty___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_UnityEngine_UIElements_ComputedTransitionProperty___VTable vtable; +}; + +struct KeyValuePair_2_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct KeyValuePair_2_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty___StaticFields { +}; + +struct KeyValuePair_2_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty___VTable vtable; +}; + +struct KeyValuePair_2_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty___Array__VTable { +}; + +struct KeyValuePair_2_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty___Array__StaticFields { +}; + +struct KeyValuePair_2_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty___Array__VTable vtable; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty___StaticFields { +}; + +struct IEnumerator_1_KeyValuePair_2_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_KeyValuePair_2_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_KeyValuePair_2_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty___VTable vtable; +}; + +struct IEnumerable_1_UnityEngine_UIElements_ComputedTransitionProperty__1__VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_UnityEngine_UIElements_ComputedTransitionProperty__1__StaticFields { +}; + +struct IEnumerable_1_UnityEngine_UIElements_ComputedTransitionProperty__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_UnityEngine_UIElements_ComputedTransitionProperty__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_UnityEngine_UIElements_ComputedTransitionProperty__1__VTable vtable; +}; + +struct Dictionary_2_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Values; + VirtualInvokeData ContainsKey; + VirtualInvokeData Add; + VirtualInvokeData Remove; + VirtualInvokeData TryGetValue; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add; + VirtualInvokeData Clear; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_get_Item; + VirtualInvokeData System_Collections_IDictionary_set_Item; + VirtualInvokeData System_Collections_IDictionary_get_Keys; + VirtualInvokeData System_Collections_IDictionary_get_Values; + VirtualInvokeData System_Collections_IDictionary_Contains; + VirtualInvokeData System_Collections_IDictionary_Add; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IDictionary_get_IsReadOnly; + VirtualInvokeData System_Collections_IDictionary_get_IsFixedSize; + VirtualInvokeData System_Collections_IDictionary_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_Remove; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData TryGetValue_1; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Values; + VirtualInvokeData get_Count_2; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct Dictionary_2_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty___StaticFields { +}; + +struct Dictionary_2_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty___VTable vtable; +}; + +struct StyleCache__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct StyleCache__StaticFields { + struct Dictionary_2_System_Int64_UnityEngine_UIElements_ComputedStyle_ *s_ComputedStyleCache; + struct Dictionary_2_System_Int32_UnityEngine_UIElements_StyleVariableContext_ *s_StyleVariableContextCache; + struct Dictionary_2_System_Int32_UnityEngine_UIElements_ComputedTransitionProperty_ *s_ComputedTransitionsCache; +}; + +struct StyleCache__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StyleCache__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StyleCache__VTable vtable; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_Experimental_IValueAnimationUpdate_ { + struct List_1_UnityEngine_UIElements_Experimental_IValueAnimationUpdate_ *_list; + int32_t _index; + int32_t _version; + struct IValueAnimationUpdate *_current; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_Experimental_IValueAnimationUpdate___Boxed { + struct List_1_T_Enumerator_UnityEngine_UIElements_Experimental_IValueAnimationUpdate___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_UnityEngine_UIElements_Experimental_IValueAnimationUpdate_ fields; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_Experimental_IValueAnimationUpdate___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_Experimental_IValueAnimationUpdate___StaticFields { +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_Experimental_IValueAnimationUpdate___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_UnityEngine_UIElements_Experimental_IValueAnimationUpdate___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_UnityEngine_UIElements_Experimental_IValueAnimationUpdate___VTable vtable; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_VisualElementFocusRing_FocusRingRecord_ { + struct List_1_UnityEngine_UIElements_VisualElementFocusRing_FocusRingRecord_ *_list; + int32_t _index; + int32_t _version; + struct VisualElementFocusRing_FocusRingRecord *_current; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_VisualElementFocusRing_FocusRingRecord___Boxed { + struct List_1_T_Enumerator_UnityEngine_UIElements_VisualElementFocusRing_FocusRingRecord___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_UnityEngine_UIElements_VisualElementFocusRing_FocusRingRecord_ fields; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_VisualElementFocusRing_FocusRingRecord___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_VisualElementFocusRing_FocusRingRecord___StaticFields { +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_VisualElementFocusRing_FocusRingRecord___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_UnityEngine_UIElements_VisualElementFocusRing_FocusRingRecord___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_UnityEngine_UIElements_VisualElementFocusRing_FocusRingRecord___VTable vtable; +}; + +struct Comparison_1_UnityEngine_UIElements_VisualElementFocusRing_FocusRingRecord___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Comparison_1_UnityEngine_UIElements_VisualElementFocusRing_FocusRingRecord_ { + struct Comparison_1_UnityEngine_UIElements_VisualElementFocusRing_FocusRingRecord___Class *klass; + MonitorData *monitor; + struct Comparison_1_UnityEngine_UIElements_VisualElementFocusRing_FocusRingRecord___Fields fields; +}; + +struct Comparison_1_UnityEngine_UIElements_VisualElementFocusRing_FocusRingRecord___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Comparison_1_UnityEngine_UIElements_VisualElementFocusRing_FocusRingRecord___StaticFields { +}; + +struct Comparison_1_UnityEngine_UIElements_VisualElementFocusRing_FocusRingRecord___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Comparison_1_UnityEngine_UIElements_VisualElementFocusRing_FocusRingRecord___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Comparison_1_UnityEngine_UIElements_VisualElementFocusRing_FocusRingRecord___VTable vtable; +}; + +struct __declspec(align(8)) ObjectPool_1_System_Collections_Generic_List_1__8__Fields { + struct Stack_1_List_1_UnityEngine_UIElements_VisualElement_ *m_Stack; + int32_t m_MaxSize; +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__8 { + struct ObjectPool_1_System_Collections_Generic_List_1__8__Class *klass; + MonitorData *monitor; + struct ObjectPool_1_System_Collections_Generic_List_1__8__Fields fields; +}; + +struct __declspec(align(8)) Stack_1_List_1_UnityEngine_UIElements_VisualElement___Fields { + struct List_1_UnityEngine_UIElements_VisualElement___Array *_array; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct Stack_1_List_1_UnityEngine_UIElements_VisualElement_ { + struct Stack_1_List_1_UnityEngine_UIElements_VisualElement___Class *klass; + MonitorData *monitor; + struct Stack_1_List_1_UnityEngine_UIElements_VisualElement___Fields fields; +}; + +struct List_1_UnityEngine_UIElements_VisualElement___Array { + struct List_1_UnityEngine_UIElements_VisualElement___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct List_1_UnityEngine_UIElements_VisualElement_ *vector[32]; +}; + +struct IEnumerator_1_List_1_UnityEngine_UIElements_VisualElement_ { + struct IEnumerator_1_List_1_UnityEngine_UIElements_VisualElement___Class *klass; + MonitorData *monitor; +}; + +struct List_1_UnityEngine_UIElements_VisualElement___Array__VTable { +}; + +struct List_1_UnityEngine_UIElements_VisualElement___Array__StaticFields { +}; + +struct List_1_UnityEngine_UIElements_VisualElement___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_UIElements_VisualElement___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_UIElements_VisualElement___Array__VTable vtable; +}; + +struct IEnumerator_1_List_1_UnityEngine_UIElements_VisualElement___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_List_1_UnityEngine_UIElements_VisualElement___StaticFields { +}; + +struct IEnumerator_1_List_1_UnityEngine_UIElements_VisualElement___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_List_1_UnityEngine_UIElements_VisualElement___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_List_1_UnityEngine_UIElements_VisualElement___VTable vtable; +}; + +struct Stack_1_List_1_UnityEngine_UIElements_VisualElement___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_1; +}; + +struct Stack_1_List_1_UnityEngine_UIElements_VisualElement___StaticFields { +}; + +struct Stack_1_List_1_UnityEngine_UIElements_VisualElement___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Stack_1_List_1_UnityEngine_UIElements_VisualElement___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Stack_1_List_1_UnityEngine_UIElements_VisualElement___VTable vtable; +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__8__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__8__StaticFields { +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__8__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ObjectPool_1_System_Collections_Generic_List_1__8__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ObjectPool_1_System_Collections_Generic_List_1__8__VTable vtable; +}; + +struct UQueryBuilder_1_VisualElement_ { + struct List_1_UnityEngine_UIElements_StyleSelector_ *m_StyleSelectors; + struct List_1_UnityEngine_UIElements_StyleSelectorPart_ *m_Parts; + struct VisualElement *m_Element; + struct List_1_UnityEngine_UIElements_RuleMatcher_ *m_Matchers; + #if defined(_CPLUSPLUS_) + StyleSelectorRelationship__Enum m_Relationship; + #else + int32_t m_Relationship; + #endif + int32_t pseudoStatesMask; + int32_t negatedPseudoStatesMask; +}; + +struct UQueryBuilder_1_VisualElement___Boxed { + struct UQueryBuilder_1_VisualElement___Class *klass; + MonitorData *monitor; + struct UQueryBuilder_1_VisualElement_ fields; +}; + +struct UQueryBuilder_1_VisualElement___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Equals_1; +}; + +struct UQueryBuilder_1_VisualElement___StaticFields { +}; + +struct UQueryBuilder_1_VisualElement___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UQueryBuilder_1_VisualElement___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UQueryBuilder_1_VisualElement___VTable vtable; +}; + +struct UQueryState_1_VisualElement_ { + struct VisualElement *m_Element; + struct List_1_UnityEngine_UIElements_RuleMatcher_ *m_Matchers; +}; + +struct UQueryState_1_VisualElement___Boxed { + struct UQueryState_1_VisualElement___Class *klass; + MonitorData *monitor; + struct UQueryState_1_VisualElement_ fields; +}; + +struct UQueryState_1_T_ActionQueryMatcher_VisualElement___Fields { + struct UQuery_UQueryMatcher__Fields _; + struct Action_1_UnityEngine_UIElements_VisualElement_ *_callBack_k__BackingField; +}; + +struct UQueryState_1_T_ActionQueryMatcher_VisualElement_ { + struct UQueryState_1_T_ActionQueryMatcher_VisualElement___Class *klass; + MonitorData *monitor; + struct UQueryState_1_T_ActionQueryMatcher_VisualElement___Fields fields; +}; + +struct UQueryState_1_T_ListQueryMatcher_1_VisualElement_VisualElement___Fields { + struct UQuery_UQueryMatcher__Fields _; + struct List_1_UnityEngine_UIElements_VisualElement_ *_matches_k__BackingField; +}; + +struct UQueryState_1_T_ListQueryMatcher_1_VisualElement_VisualElement_ { + struct UQueryState_1_T_ListQueryMatcher_1_VisualElement_VisualElement___Class *klass; + MonitorData *monitor; + struct UQueryState_1_T_ListQueryMatcher_1_VisualElement_VisualElement___Fields fields; +}; + +struct UQueryState_1_T_ActionQueryMatcher_VisualElement___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Traverse; + VirtualInvokeData TraverseRecursive; + VirtualInvokeData OnRuleMatchedElement; + VirtualInvokeData Run; +}; + +struct UQueryState_1_T_ActionQueryMatcher_VisualElement___StaticFields { +}; + +struct UQueryState_1_T_ActionQueryMatcher_VisualElement___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UQueryState_1_T_ActionQueryMatcher_VisualElement___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UQueryState_1_T_ActionQueryMatcher_VisualElement___VTable vtable; +}; + +struct UQueryState_1_T_ListQueryMatcher_1_VisualElement_VisualElement___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Traverse; + VirtualInvokeData TraverseRecursive; + VirtualInvokeData OnRuleMatchedElement; + VirtualInvokeData Run; +}; + +struct UQueryState_1_T_ListQueryMatcher_1_VisualElement_VisualElement___StaticFields { +}; + +struct UQueryState_1_T_ListQueryMatcher_1_VisualElement_VisualElement___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UQueryState_1_T_ListQueryMatcher_1_VisualElement_VisualElement___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UQueryState_1_T_ListQueryMatcher_1_VisualElement_VisualElement___VTable vtable; +}; + +struct UQueryState_1_VisualElement___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData Equals_1; +}; + +struct UQueryState_1_VisualElement___StaticFields { + struct UQueryState_1_T_ActionQueryMatcher_VisualElement_ *s_Action; + struct UQueryState_1_T_ListQueryMatcher_1_VisualElement_VisualElement_ *s_List; + struct UQueryState_1_T_ListQueryMatcher_1_VisualElement_VisualElement_ *s_EnumerationList; +}; + +struct UQueryState_1_VisualElement___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UQueryState_1_VisualElement___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UQueryState_1_VisualElement___VTable vtable; +}; + +struct List_1_T_Enumerator_Pathfinding_Ionic_Zlib_WorkItem_ { + struct List_1_Pathfinding_Ionic_Zlib_WorkItem_ *_list; + int32_t _index; + int32_t _version; + struct WorkItem *_current; +}; + +struct List_1_T_Enumerator_Pathfinding_Ionic_Zlib_WorkItem___Boxed { + struct List_1_T_Enumerator_Pathfinding_Ionic_Zlib_WorkItem___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_Pathfinding_Ionic_Zlib_WorkItem_ fields; +}; + +struct List_1_T_Enumerator_Pathfinding_Ionic_Zlib_WorkItem___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_Pathfinding_Ionic_Zlib_WorkItem___StaticFields { +}; + +struct List_1_T_Enumerator_Pathfinding_Ionic_Zlib_WorkItem___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_Pathfinding_Ionic_Zlib_WorkItem___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_Pathfinding_Ionic_Zlib_WorkItem___VTable vtable; +}; + +struct UIEventRegistration { + struct UIEventRegistration__Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) List_1_UnityEngine_UIElements_IUIElementsUtility___Fields { + struct IUIElementsUtility__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_UIElements_IUIElementsUtility_ { + struct List_1_UnityEngine_UIElements_IUIElementsUtility___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_UIElements_IUIElementsUtility___Fields fields; +}; + +struct IUIElementsUtility__Array { + struct IUIElementsUtility__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct IUIElementsUtility *vector[32]; +}; + +struct IEnumerator_1_UnityEngine_UIElements_IUIElementsUtility_ { + struct IEnumerator_1_UnityEngine_UIElements_IUIElementsUtility___Class *klass; + MonitorData *monitor; +}; + +struct IUIElementsUtility__Array__VTable { +}; + +struct IUIElementsUtility__Array__StaticFields { +}; + +struct IUIElementsUtility__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IUIElementsUtility__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IUIElementsUtility__Array__VTable vtable; +}; + +struct IEnumerator_1_UnityEngine_UIElements_IUIElementsUtility___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_UnityEngine_UIElements_IUIElementsUtility___StaticFields { +}; + +struct IEnumerator_1_UnityEngine_UIElements_IUIElementsUtility___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_UnityEngine_UIElements_IUIElementsUtility___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_UnityEngine_UIElements_IUIElementsUtility___VTable vtable; +}; + +struct List_1_UnityEngine_UIElements_IUIElementsUtility___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_UnityEngine_UIElements_IUIElementsUtility___StaticFields { + struct IUIElementsUtility__Array *s_emptyArray; +}; + +struct List_1_UnityEngine_UIElements_IUIElementsUtility___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_UIElements_IUIElementsUtility___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_UIElements_IUIElementsUtility___VTable vtable; +}; + +struct UIEventRegistration__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct UIEventRegistration__StaticFields { + struct List_1_UnityEngine_UIElements_IUIElementsUtility_ *s_Utilities; +}; + +struct UIEventRegistration__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UIEventRegistration__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UIEventRegistration__VTable vtable; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_IUIElementsUtility_ { + struct List_1_UnityEngine_UIElements_IUIElementsUtility_ *_list; + int32_t _index; + int32_t _version; + struct IUIElementsUtility *_current; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_IUIElementsUtility___Boxed { + struct List_1_T_Enumerator_UnityEngine_UIElements_IUIElementsUtility___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_UnityEngine_UIElements_IUIElementsUtility_ fields; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_IUIElementsUtility___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_IUIElementsUtility___StaticFields { +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_IUIElementsUtility___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_UnityEngine_UIElements_IUIElementsUtility___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_UnityEngine_UIElements_IUIElementsUtility___VTable vtable; +}; + +struct Func_2_Exception_Boolean___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_2_Exception_Boolean_ { + struct Func_2_Exception_Boolean___Class *klass; + MonitorData *monitor; + struct Func_2_Exception_Boolean___Fields fields; +}; + +struct Func_2_Exception_Boolean___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_2_Exception_Boolean___StaticFields { +}; + +struct Func_2_Exception_Boolean___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_2_Exception_Boolean___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_2_Exception_Boolean___VTable vtable; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_PanelSettings_ { + struct List_1_UnityEngine_UIElements_PanelSettings_ *_list; + int32_t _index; + int32_t _version; + struct PanelSettings *_current; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_PanelSettings___Boxed { + struct List_1_T_Enumerator_UnityEngine_UIElements_PanelSettings___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_UnityEngine_UIElements_PanelSettings_ fields; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_PanelSettings___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_PanelSettings___StaticFields { +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_PanelSettings___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_UnityEngine_UIElements_PanelSettings___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_UnityEngine_UIElements_PanelSettings___VTable vtable; +}; + +struct UIElementsRuntimeUtilityNative { + struct UIElementsRuntimeUtilityNative__Class *klass; + MonitorData *monitor; +}; + +struct UIElementsRuntimeUtilityNative__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct UIElementsRuntimeUtilityNative__StaticFields { + struct Action *RepaintOverlayPanelsCallback; + struct Action *UpdateRuntimePanelsCallback; + struct Action *RepaintOffscreenPanelsCallback; +}; + +struct UIElementsRuntimeUtilityNative__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UIElementsRuntimeUtilityNative__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UIElementsRuntimeUtilityNative__VTable vtable; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_Panel_ { + struct List_1_UnityEngine_UIElements_Panel_ *_list; + int32_t _index; + int32_t _version; + struct Panel *_current; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_Panel___Boxed { + struct List_1_T_Enumerator_UnityEngine_UIElements_Panel___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_UnityEngine_UIElements_Panel_ fields; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_Panel___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_Panel___StaticFields { +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_Panel___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_UnityEngine_UIElements_Panel___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_UnityEngine_UIElements_Panel___VTable vtable; +}; + +struct UIElementsPackageUtility { + struct UIElementsPackageUtility__Class *klass; + MonitorData *monitor; +}; + +struct UIElementsPackageUtility__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct UIElementsPackageUtility__StaticFields { + struct String *EditorResourcesBasePath; + bool IsUIEPackageLoaded; +}; + +struct UIElementsPackageUtility__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UIElementsPackageUtility__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UIElementsPackageUtility__VTable vtable; +}; + +struct IComparer_1_Pathfinding_Poly2Tri_TriangulationPoint_ { + struct IComparer_1_Pathfinding_Poly2Tri_TriangulationPoint___Class *klass; + MonitorData *monitor; +}; + +struct IComparer_1_Pathfinding_Poly2Tri_TriangulationPoint___VTable { + VirtualInvokeData Compare; +}; + +struct IComparer_1_Pathfinding_Poly2Tri_TriangulationPoint___StaticFields { +}; + +struct IComparer_1_Pathfinding_Poly2Tri_TriangulationPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IComparer_1_Pathfinding_Poly2Tri_TriangulationPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IComparer_1_Pathfinding_Poly2Tri_TriangulationPoint___VTable vtable; +}; + +struct List_1_T_Enumerator_Pathfinding_Poly2Tri_TriangulationPoint_ { + struct List_1_Pathfinding_Poly2Tri_TriangulationPoint_ *_list; + int32_t _index; + int32_t _version; + struct TriangulationPoint *_current; +}; + +struct List_1_T_Enumerator_Pathfinding_Poly2Tri_TriangulationPoint___Boxed { + struct List_1_T_Enumerator_Pathfinding_Poly2Tri_TriangulationPoint___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_Pathfinding_Poly2Tri_TriangulationPoint_ fields; +}; + +struct List_1_T_Enumerator_Pathfinding_Poly2Tri_TriangulationPoint___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_Pathfinding_Poly2Tri_TriangulationPoint___StaticFields { +}; + +struct List_1_T_Enumerator_Pathfinding_Poly2Tri_TriangulationPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_Pathfinding_Poly2Tri_TriangulationPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_Pathfinding_Poly2Tri_TriangulationPoint___VTable vtable; +}; + +struct List_1_T_Enumerator_Pathfinding_Poly2Tri_DTSweepConstraint_ { + struct List_1_Pathfinding_Poly2Tri_DTSweepConstraint_ *_list; + int32_t _index; + int32_t _version; + struct DTSweepConstraint *_current; +}; + +struct List_1_T_Enumerator_Pathfinding_Poly2Tri_DTSweepConstraint___Boxed { + struct List_1_T_Enumerator_Pathfinding_Poly2Tri_DTSweepConstraint___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_Pathfinding_Poly2Tri_DTSweepConstraint_ fields; +}; + +struct List_1_T_Enumerator_Pathfinding_Poly2Tri_DTSweepConstraint___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_Pathfinding_Poly2Tri_DTSweepConstraint___StaticFields { +}; + +struct List_1_T_Enumerator_Pathfinding_Poly2Tri_DTSweepConstraint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_Pathfinding_Poly2Tri_DTSweepConstraint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_Pathfinding_Poly2Tri_DTSweepConstraint___VTable vtable; +}; + +struct TriangulationUtil { + struct TriangulationUtil__Class *klass; + MonitorData *monitor; +}; + +struct TriangulationUtil__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct TriangulationUtil__StaticFields { + double EPSILON; +}; + +struct TriangulationUtil__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TriangulationUtil__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TriangulationUtil__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData_ { + struct Dictionary_2_System_Int32_Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData_ *_dictionary; + int32_t _version; + int32_t _index; + struct KeyValuePair_2_System_Int32_Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData_ _current; + int32_t _getEnumeratorRetType; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData___Boxed { + struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData_ fields; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Key; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Value; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Entry; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData___VTable vtable; +}; + +struct ExecuteEvents { + struct ExecuteEvents__Class *klass; + MonitorData *monitor; +}; + +struct ExecuteEvents__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ExecuteEvents__StaticFields { + struct ExecuteEvents_EventFunction_1_IPointerMoveHandler_ *s_PointerMoveHandler; + struct ExecuteEvents_EventFunction_1_IPointerEnterHandler_ *s_PointerEnterHandler; + struct ExecuteEvents_EventFunction_1_IPointerExitHandler_ *s_PointerExitHandler; + struct ExecuteEvents_EventFunction_1_IPointerDownHandler_ *s_PointerDownHandler; + struct ExecuteEvents_EventFunction_1_IPointerUpHandler_ *s_PointerUpHandler; + struct ExecuteEvents_EventFunction_1_IPointerClickHandler_ *s_PointerClickHandler; + struct ExecuteEvents_EventFunction_1_IInitializePotentialDragHandler_ *s_InitializePotentialDragHandler; + struct ExecuteEvents_EventFunction_1_IBeginDragHandler_ *s_BeginDragHandler; + struct ExecuteEvents_EventFunction_1_IDragHandler_ *s_DragHandler; + struct ExecuteEvents_EventFunction_1_IEndDragHandler_ *s_EndDragHandler; + struct ExecuteEvents_EventFunction_1_IDropHandler_ *s_DropHandler; + struct ExecuteEvents_EventFunction_1_IScrollHandler_ *s_ScrollHandler; + struct ExecuteEvents_EventFunction_1_IUpdateSelectedHandler_ *s_UpdateSelectedHandler; + struct ExecuteEvents_EventFunction_1_ISelectHandler_ *s_SelectHandler; + struct ExecuteEvents_EventFunction_1_IDeselectHandler_ *s_DeselectHandler; + struct ExecuteEvents_EventFunction_1_IMoveHandler_ *s_MoveHandler; + struct ExecuteEvents_EventFunction_1_ISubmitHandler_ *s_SubmitHandler; + struct ExecuteEvents_EventFunction_1_ICancelHandler_ *s_CancelHandler; + struct List_1_UnityEngine_Transform_ *s_InternalTransformList; +}; + +struct ExecuteEvents__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ExecuteEvents__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ExecuteEvents__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData_ { + struct Dictionary_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData_ *_dictionary; + int32_t _version; + int32_t _index; + struct KeyValuePair_2_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData_ _current; + int32_t _getEnumeratorRetType; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData___Boxed { + struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData_ fields; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Key; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Value; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Entry; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_Rewired_Integration_UnityUI_PlayerPointerEventData___VTable vtable; +}; + +struct List_1_T_Enumerator_Pathfinding_Poly2Tri_Polygon_ { + struct List_1_Pathfinding_Poly2Tri_Polygon_ *_list; + int32_t _index; + int32_t _version; + struct Polygon_1 *_current; +}; + +struct List_1_T_Enumerator_Pathfinding_Poly2Tri_Polygon___Boxed { + struct List_1_T_Enumerator_Pathfinding_Poly2Tri_Polygon___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_Pathfinding_Poly2Tri_Polygon_ fields; +}; + +struct List_1_T_Enumerator_Pathfinding_Poly2Tri_Polygon___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_Pathfinding_Poly2Tri_Polygon___StaticFields { +}; + +struct List_1_T_Enumerator_Pathfinding_Poly2Tri_Polygon___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_Pathfinding_Poly2Tri_Polygon___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_Pathfinding_Poly2Tri_Polygon___VTable vtable; +}; + +struct P2T { + struct P2T__Class *klass; + MonitorData *monitor; +}; + +struct P2T__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct P2T__StaticFields { + #if defined(_CPLUSPLUS_) + TriangulationAlgorithm__Enum _defaultAlgorithm; + #else + int32_t _defaultAlgorithm; + #endif +}; + +struct P2T__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct P2T__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct P2T__VTable vtable; +}; + +struct ICollection_1_Pathfinding_Poly2Tri_PolygonPoint_ { + struct ICollection_1_Pathfinding_Poly2Tri_PolygonPoint___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_Pathfinding_Poly2Tri_PolygonPoint___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_Pathfinding_Poly2Tri_PolygonPoint___StaticFields { +}; + +struct ICollection_1_Pathfinding_Poly2Tri_PolygonPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_Pathfinding_Poly2Tri_PolygonPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_Pathfinding_Poly2Tri_PolygonPoint___VTable vtable; +}; + +struct UnityTools { + struct UnityTools__Class *klass; + MonitorData *monitor; +}; + +struct UnityTools__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct UnityTools__StaticFields { + struct UnityTools_UnityVersionClass *ootDAEbxtAOlmufDOOIHbKsxisdB; + #if defined(_CPLUSPLUS_) + UnityTools_UnityVersion__Enum UdWGDoAisgZpXtxGhTEgaRNHDnLmA; + #else + int32_t UdWGDoAisgZpXtxGhTEgaRNHDnLmA; + #endif + struct String *iXwcIaeIRvbhIqrafzCWWcuLXcIg; + #if defined(_CPLUSPLUS_) + Platform__Enum hQEXDwJcVueYBQKcBEYJidiavxhlA; + #else + int32_t hQEXDwJcVueYBQKcBEYJidiavxhlA; + #endif + #if defined(_CPLUSPLUS_) + EditorPlatform__Enum UAarwdpPYFZZWOekzpTMHjFumtLB; + #else + int32_t UAarwdpPYFZZWOekzpTMHjFumtLB; + #endif + bool yKbYyYDurryrWNFhJsbNCKKZgNjm; + bool KNkcsadKFPLGGXeEhGyhYhBZTiZDA; + bool LijZfhZyjtOcwfkOEezajnuJXczP; + #if defined(_CPLUSPLUS_) + WebplayerPlatform__Enum efdrlxFikJJSToQOLEuSBCYGVPvg; + #else + int32_t efdrlxFikJJSToQOLEuSBCYGVPvg; + #endif + bool JeGpHutYsiSQiFFmWsAuTCFDZcRw; + bool MdwxlxlxNLATuQmrszDpiUTmQZgU; + bool OZYHJaZwMaSIVTfZdgaIxGVTIwCD; + bool KUwnMdQsDTZnykPQbpayhFLKLXZJ; + bool DOFcdkaFsuprZoSeQxAvsvayiKH; + bool mlcBBMBtFEtoTBGGzdrvmOqgKxxXA; + struct String *OBRLchvpccASrtKMlrkacDkHkIqA; + #if defined(_CPLUSPLUS_) + ScriptingBackend__Enum QszfCJDflLOpUuPpUCtymUkdwOIvA; + #else + int32_t QszfCJDflLOpUuPpUCtymUkdwOIvA; + #endif + #if defined(_CPLUSPLUS_) + ScriptingAPILevel__Enum tQgefMjBBnRbcrzFXxVbidnLRxpw; + #else + int32_t tQgefMjBBnRbcrzFXxVbidnLRxpw; + #endif + bool NdORyvgWuUTIyvODFdGkGbLjyBrn; + struct IExternalTools *ikRQrvSybYWZCRBQSMSTAtAqrvdg; + struct IAndroidFallbackPlatformHelper *sVbahyeEXspDaddiPhHNIksRhlSaA; + bool JZWTYOOfITiQDgaUuWCRmiopjfrl; +}; + +struct UnityTools__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UnityTools__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UnityTools__VTable vtable; +}; + +struct TypeDescriptor_IUnimplemented { + struct TypeDescriptor_IUnimplemented__Class *klass; + MonitorData *monitor; +}; + +struct TypeDescriptor_IUnimplemented__VTable { +}; + +struct TypeDescriptor_IUnimplemented__StaticFields { +}; + +struct TypeDescriptor_IUnimplemented__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TypeDescriptor_IUnimplemented__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TypeDescriptor_IUnimplemented__VTable vtable; +}; + +struct IRacingWheelTemplate { + struct IRacingWheelTemplate__Class *klass; + MonitorData *monitor; +}; + +struct IRacingWheelTemplate__VTable { + VirtualInvokeData get_wheel; + VirtualInvokeData get_accelerator; + VirtualInvokeData get_brake; + VirtualInvokeData get_clutch; + VirtualInvokeData get_shiftDown; + VirtualInvokeData get_shiftUp; + VirtualInvokeData get_wheelButton1; + VirtualInvokeData get_wheelButton2; + VirtualInvokeData get_wheelButton3; + VirtualInvokeData get_wheelButton4; + VirtualInvokeData get_wheelButton5; + VirtualInvokeData get_wheelButton6; + VirtualInvokeData get_wheelButton7; + VirtualInvokeData get_wheelButton8; + VirtualInvokeData get_wheelButton9; + VirtualInvokeData get_wheelButton10; + VirtualInvokeData get_consoleButton1; + VirtualInvokeData get_consoleButton2; + VirtualInvokeData get_consoleButton3; + VirtualInvokeData get_consoleButton4; + VirtualInvokeData get_consoleButton5; + VirtualInvokeData get_consoleButton6; + VirtualInvokeData get_consoleButton7; + VirtualInvokeData get_consoleButton8; + VirtualInvokeData get_consoleButton9; + VirtualInvokeData get_consoleButton10; + VirtualInvokeData get_shifter1; + VirtualInvokeData get_shifter2; + VirtualInvokeData get_shifter3; + VirtualInvokeData get_shifter4; + VirtualInvokeData get_shifter5; + VirtualInvokeData get_shifter6; + VirtualInvokeData get_shifter7; + VirtualInvokeData get_shifter8; + VirtualInvokeData get_shifter9; + VirtualInvokeData get_shifter10; + VirtualInvokeData get_reverseGear; + VirtualInvokeData get_select; + VirtualInvokeData get_start; + VirtualInvokeData get_systemButton; + VirtualInvokeData get_horn; + VirtualInvokeData get_dPad; +}; + +struct IRacingWheelTemplate__StaticFields { +}; + +struct IRacingWheelTemplate__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IRacingWheelTemplate__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IRacingWheelTemplate__VTable vtable; +}; + +struct ISixDofControllerTemplate { + struct ISixDofControllerTemplate__Class *klass; + MonitorData *monitor; +}; + +struct ISixDofControllerTemplate__VTable { + VirtualInvokeData get_extraAxis1; + VirtualInvokeData get_extraAxis2; + VirtualInvokeData get_extraAxis3; + VirtualInvokeData get_extraAxis4; + VirtualInvokeData get_button1; + VirtualInvokeData get_button2; + VirtualInvokeData get_button3; + VirtualInvokeData get_button4; + VirtualInvokeData get_button5; + VirtualInvokeData get_button6; + VirtualInvokeData get_button7; + VirtualInvokeData get_button8; + VirtualInvokeData get_button9; + VirtualInvokeData get_button10; + VirtualInvokeData get_button11; + VirtualInvokeData get_button12; + VirtualInvokeData get_button13; + VirtualInvokeData get_button14; + VirtualInvokeData get_button15; + VirtualInvokeData get_button16; + VirtualInvokeData get_button17; + VirtualInvokeData get_button18; + VirtualInvokeData get_button19; + VirtualInvokeData get_button20; + VirtualInvokeData get_button21; + VirtualInvokeData get_button22; + VirtualInvokeData get_button23; + VirtualInvokeData get_button24; + VirtualInvokeData get_button25; + VirtualInvokeData get_button26; + VirtualInvokeData get_button27; + VirtualInvokeData get_button28; + VirtualInvokeData get_button29; + VirtualInvokeData get_button30; + VirtualInvokeData get_button31; + VirtualInvokeData get_button32; + VirtualInvokeData get_hat1; + VirtualInvokeData get_hat2; + VirtualInvokeData get_throttle1; + VirtualInvokeData get_throttle2; + VirtualInvokeData get_stick; +}; + +struct ISixDofControllerTemplate__StaticFields { +}; + +struct ISixDofControllerTemplate__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ISixDofControllerTemplate__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ISixDofControllerTemplate__VTable vtable; +}; + +struct IGamepadTemplate { + struct IGamepadTemplate__Class *klass; + MonitorData *monitor; +}; + +struct IGamepadTemplate__VTable { + VirtualInvokeData get_actionBottomRow1; + VirtualInvokeData get_a; + VirtualInvokeData get_actionBottomRow2; + VirtualInvokeData get_b; + VirtualInvokeData get_actionBottomRow3; + VirtualInvokeData get_c; + VirtualInvokeData get_actionTopRow1; + VirtualInvokeData get_x; + VirtualInvokeData get_actionTopRow2; + VirtualInvokeData get_y; + VirtualInvokeData get_actionTopRow3; + VirtualInvokeData get_z; + VirtualInvokeData get_leftShoulder1; + VirtualInvokeData get_leftBumper; + VirtualInvokeData get_leftShoulder2; + VirtualInvokeData get_leftTrigger; + VirtualInvokeData get_rightShoulder1; + VirtualInvokeData get_rightBumper; + VirtualInvokeData get_rightShoulder2; + VirtualInvokeData get_rightTrigger; + VirtualInvokeData get_center1; + VirtualInvokeData get_back; + VirtualInvokeData get_center2; + VirtualInvokeData get_start; + VirtualInvokeData get_center3; + VirtualInvokeData get_guide; + VirtualInvokeData get_leftStick; + VirtualInvokeData get_rightStick; + VirtualInvokeData get_dPad; +}; + +struct IGamepadTemplate__StaticFields { +}; + +struct IGamepadTemplate__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IGamepadTemplate__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IGamepadTemplate__VTable vtable; +}; + +struct IHOTASTemplate { + struct IHOTASTemplate__Class *klass; + MonitorData *monitor; +}; + +struct IHOTASTemplate__VTable { + VirtualInvokeData get_stickTrigger; + VirtualInvokeData get_stickTriggerStage2; + VirtualInvokeData get_stickPinkyButton; + VirtualInvokeData get_stickPinkyTrigger; + VirtualInvokeData get_stickButton1; + VirtualInvokeData get_stickButton2; + VirtualInvokeData get_stickButton3; + VirtualInvokeData get_stickButton4; + VirtualInvokeData get_stickButton5; + VirtualInvokeData get_stickButton6; + VirtualInvokeData get_stickButton7; + VirtualInvokeData get_stickButton8; + VirtualInvokeData get_stickButton9; + VirtualInvokeData get_stickButton10; + VirtualInvokeData get_stickBaseButton1; + VirtualInvokeData get_stickBaseButton2; + VirtualInvokeData get_stickBaseButton3; + VirtualInvokeData get_stickBaseButton4; + VirtualInvokeData get_stickBaseButton5; + VirtualInvokeData get_stickBaseButton6; + VirtualInvokeData get_stickBaseButton7; + VirtualInvokeData get_stickBaseButton8; + VirtualInvokeData get_stickBaseButton9; + VirtualInvokeData get_stickBaseButton10; + VirtualInvokeData get_stickBaseButton11; + VirtualInvokeData get_stickBaseButton12; + VirtualInvokeData get_mode1; + VirtualInvokeData get_mode2; + VirtualInvokeData get_mode3; + VirtualInvokeData get_throttleButton1; + VirtualInvokeData get_throttleButton2; + VirtualInvokeData get_throttleButton3; + VirtualInvokeData get_throttleButton4; + VirtualInvokeData get_throttleButton5; + VirtualInvokeData get_throttleButton6; + VirtualInvokeData get_throttleButton7; + VirtualInvokeData get_throttleButton8; + VirtualInvokeData get_throttleButton9; + VirtualInvokeData get_throttleButton10; + VirtualInvokeData get_throttleBaseButton1; + VirtualInvokeData get_throttleBaseButton2; + VirtualInvokeData get_throttleBaseButton3; + VirtualInvokeData get_throttleBaseButton4; + VirtualInvokeData get_throttleBaseButton5; + VirtualInvokeData get_throttleBaseButton6; + VirtualInvokeData get_throttleBaseButton7; + VirtualInvokeData get_throttleBaseButton8; + VirtualInvokeData get_throttleBaseButton9; + VirtualInvokeData get_throttleBaseButton10; + VirtualInvokeData get_throttleBaseButton11; + VirtualInvokeData get_throttleBaseButton12; + VirtualInvokeData get_throttleBaseButton13; + VirtualInvokeData get_throttleBaseButton14; + VirtualInvokeData get_throttleBaseButton15; + VirtualInvokeData get_throttleSlider1; + VirtualInvokeData get_throttleSlider2; + VirtualInvokeData get_throttleSlider3; + VirtualInvokeData get_throttleSlider4; + VirtualInvokeData get_throttleDial1; + VirtualInvokeData get_throttleDial2; + VirtualInvokeData get_throttleDial3; + VirtualInvokeData get_throttleDial4; + VirtualInvokeData get_throttleWheel1Forward; + VirtualInvokeData get_throttleWheel1Back; + VirtualInvokeData get_throttleWheel1Press; + VirtualInvokeData get_throttleWheel2Forward; + VirtualInvokeData get_throttleWheel2Back; + VirtualInvokeData get_throttleWheel2Press; + VirtualInvokeData get_throttleWheel3Forward; + VirtualInvokeData get_throttleWheel3Back; + VirtualInvokeData get_throttleWheel3Press; + VirtualInvokeData get_leftPedal; + VirtualInvokeData get_rightPedal; + VirtualInvokeData get_slidePedals; + VirtualInvokeData get_stick; + VirtualInvokeData get_stickMiniStick1; + VirtualInvokeData get_stickMiniStick2; + VirtualInvokeData get_stickHat1; + VirtualInvokeData get_stickHat2; + VirtualInvokeData get_stickHat3; + VirtualInvokeData get_stickHat4; + VirtualInvokeData get_throttle1; + VirtualInvokeData get_throttle2; + VirtualInvokeData get_throttleMiniStick; + VirtualInvokeData get_throttleHat1; + VirtualInvokeData get_throttleHat2; + VirtualInvokeData get_throttleHat3; + VirtualInvokeData get_throttleHat4; +}; + +struct IHOTASTemplate__StaticFields { +}; + +struct IHOTASTemplate__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IHOTASTemplate__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IHOTASTemplate__VTable vtable; +}; + +struct IFlightPedalsTemplate { + struct IFlightPedalsTemplate__Class *klass; + MonitorData *monitor; +}; + +struct IFlightPedalsTemplate__VTable { + VirtualInvokeData get_leftPedal; + VirtualInvokeData get_rightPedal; + VirtualInvokeData get_slide; +}; + +struct IFlightPedalsTemplate__StaticFields { +}; + +struct IFlightPedalsTemplate__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IFlightPedalsTemplate__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IFlightPedalsTemplate__VTable vtable; +}; + +struct IFlightYokeTemplate { + struct IFlightYokeTemplate__Class *klass; + MonitorData *monitor; +}; + +struct IFlightYokeTemplate__VTable { + VirtualInvokeData get_leftPaddle; + VirtualInvokeData get_rightPaddle; + VirtualInvokeData get_leftGripButton1; + VirtualInvokeData get_leftGripButton2; + VirtualInvokeData get_leftGripButton3; + VirtualInvokeData get_leftGripButton4; + VirtualInvokeData get_leftGripButton5; + VirtualInvokeData get_leftGripButton6; + VirtualInvokeData get_rightGripButton1; + VirtualInvokeData get_rightGripButton2; + VirtualInvokeData get_rightGripButton3; + VirtualInvokeData get_rightGripButton4; + VirtualInvokeData get_rightGripButton5; + VirtualInvokeData get_rightGripButton6; + VirtualInvokeData get_centerButton1; + VirtualInvokeData get_centerButton2; + VirtualInvokeData get_centerButton3; + VirtualInvokeData get_centerButton4; + VirtualInvokeData get_centerButton5; + VirtualInvokeData get_centerButton6; + VirtualInvokeData get_centerButton7; + VirtualInvokeData get_centerButton8; + VirtualInvokeData get_wheel1Up; + VirtualInvokeData get_wheel1Down; + VirtualInvokeData get_wheel1Press; + VirtualInvokeData get_wheel2Up; + VirtualInvokeData get_wheel2Down; + VirtualInvokeData get_wheel2Press; + VirtualInvokeData get_consoleButton1; + VirtualInvokeData get_consoleButton2; + VirtualInvokeData get_consoleButton3; + VirtualInvokeData get_consoleButton4; + VirtualInvokeData get_consoleButton5; + VirtualInvokeData get_consoleButton6; + VirtualInvokeData get_consoleButton7; + VirtualInvokeData get_consoleButton8; + VirtualInvokeData get_consoleButton9; + VirtualInvokeData get_consoleButton10; + VirtualInvokeData get_mode1; + VirtualInvokeData get_mode2; + VirtualInvokeData get_mode3; + VirtualInvokeData get_yoke; + VirtualInvokeData get_lever1; + VirtualInvokeData get_lever2; + VirtualInvokeData get_lever3; + VirtualInvokeData get_lever4; + VirtualInvokeData get_lever5; + VirtualInvokeData get_leftGripHat; + VirtualInvokeData get_rightGripHat; +}; + +struct IFlightYokeTemplate__StaticFields { +}; + +struct IFlightYokeTemplate__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IFlightYokeTemplate__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IFlightYokeTemplate__VTable vtable; +}; + +struct JsonParser { + struct JsonParser__Class *klass; + MonitorData *monitor; +}; + +struct JsonParser__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct JsonParser__StaticFields { + struct Stack_1_List_1_System_String_ *splitArrayPool; + struct StringBuilder *udUwAonzMZhofuPuQKqRmMjlcwsX; + struct Dictionary_2_System_Type_Dictionary_2_System_String_System_Reflection_FieldInfo_ *dXcrKBOzvpmURDzOEaNahuzMUmQc; + struct Dictionary_2_System_Type_Dictionary_2_System_String_System_Reflection_PropertyInfo_ *VUfcRZJHZHCZbOBnKFKOAXxcZehRb; +}; + +struct JsonParser__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct JsonParser__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct JsonParser__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_System_ComponentModel_EventDescriptor_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct EventDescriptor *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_System_ComponentModel_EventDescriptor___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_System_ComponentModel_EventDescriptor___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_System_ComponentModel_EventDescriptor_ fields; +}; + +struct __declspec(align(8)) Dictionary_2_System_String_System_ComponentModel_EventDescriptor___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_System_String_System_ComponentModel_EventDescriptor___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_System_String_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_System_String_System_ComponentModel_EventDescriptor_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_System_String_System_ComponentModel_EventDescriptor_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_System_String_System_ComponentModel_EventDescriptor_ { + struct Dictionary_2_System_String_System_ComponentModel_EventDescriptor___Class *klass; + MonitorData *monitor; + struct Dictionary_2_System_String_System_ComponentModel_EventDescriptor___Fields fields; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_System_ComponentModel_EventDescriptor___Array { + struct Dictionary_2_TKey_TValue_Entry_System_String_System_ComponentModel_EventDescriptor___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Dictionary_2_TKey_TValue_Entry_System_String_System_ComponentModel_EventDescriptor_ vector[32]; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_KeyCollection_System_String_System_ComponentModel_EventDescriptor___Fields { + struct Dictionary_2_System_String_System_ComponentModel_EventDescriptor_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_String_System_ComponentModel_EventDescriptor_ { + struct Dictionary_2_TKey_TValue_KeyCollection_System_String_System_ComponentModel_EventDescriptor___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_KeyCollection_System_String_System_ComponentModel_EventDescriptor___Fields fields; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_ValueCollection_System_String_System_ComponentModel_EventDescriptor___Fields { + struct Dictionary_2_System_String_System_ComponentModel_EventDescriptor_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_String_System_ComponentModel_EventDescriptor_ { + struct Dictionary_2_TKey_TValue_ValueCollection_System_String_System_ComponentModel_EventDescriptor___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_System_String_System_ComponentModel_EventDescriptor___Fields fields; +}; + +struct ICollection_1_System_ComponentModel_EventDescriptor_ { + struct ICollection_1_System_ComponentModel_EventDescriptor___Class *klass; + MonitorData *monitor; +}; + +struct KeyValuePair_2_System_String_System_ComponentModel_EventDescriptor_ { + struct String *key; + struct EventDescriptor *value; +}; + +struct KeyValuePair_2_System_String_System_ComponentModel_EventDescriptor___Boxed { + struct KeyValuePair_2_System_String_System_ComponentModel_EventDescriptor___Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_System_String_System_ComponentModel_EventDescriptor_ fields; +}; + +struct KeyValuePair_2_System_String_System_ComponentModel_EventDescriptor___Array { + struct KeyValuePair_2_System_String_System_ComponentModel_EventDescriptor___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct KeyValuePair_2_System_String_System_ComponentModel_EventDescriptor_ vector[32]; +}; + +struct IEnumerator_1_KeyValuePair_2_System_String_System_ComponentModel_EventDescriptor_ { + struct IEnumerator_1_KeyValuePair_2_System_String_System_ComponentModel_EventDescriptor___Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_System_ComponentModel_EventDescriptor___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_System_ComponentModel_EventDescriptor___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_System_ComponentModel_EventDescriptor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_System_String_System_ComponentModel_EventDescriptor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_System_String_System_ComponentModel_EventDescriptor___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_System_ComponentModel_EventDescriptor___Array__VTable { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_System_ComponentModel_EventDescriptor___Array__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_System_ComponentModel_EventDescriptor___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_System_String_System_ComponentModel_EventDescriptor___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_System_String_System_ComponentModel_EventDescriptor___Array__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_String_System_ComponentModel_EventDescriptor___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TKey__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_String_System_ComponentModel_EventDescriptor___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_String_System_ComponentModel_EventDescriptor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_KeyCollection_System_String_System_ComponentModel_EventDescriptor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_KeyCollection_System_String_System_ComponentModel_EventDescriptor___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_String_System_ComponentModel_EventDescriptor___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TValue__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_String_System_ComponentModel_EventDescriptor___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_String_System_ComponentModel_EventDescriptor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_System_String_System_ComponentModel_EventDescriptor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_System_String_System_ComponentModel_EventDescriptor___VTable vtable; +}; + +struct ICollection_1_System_ComponentModel_EventDescriptor___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_System_ComponentModel_EventDescriptor___StaticFields { +}; + +struct ICollection_1_System_ComponentModel_EventDescriptor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_System_ComponentModel_EventDescriptor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_System_ComponentModel_EventDescriptor___VTable vtable; +}; + +struct EventDescriptor___VTable { +}; + +struct EventDescriptor___StaticFields { +}; + +struct EventDescriptor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EventDescriptor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EventDescriptor___VTable vtable; +}; + +struct KeyValuePair_2_System_String_System_ComponentModel_EventDescriptor___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct KeyValuePair_2_System_String_System_ComponentModel_EventDescriptor___StaticFields { +}; + +struct KeyValuePair_2_System_String_System_ComponentModel_EventDescriptor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_String_System_ComponentModel_EventDescriptor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_String_System_ComponentModel_EventDescriptor___VTable vtable; +}; + +struct KeyValuePair_2_System_String_System_ComponentModel_EventDescriptor___Array__VTable { +}; + +struct KeyValuePair_2_System_String_System_ComponentModel_EventDescriptor___Array__StaticFields { +}; + +struct KeyValuePair_2_System_String_System_ComponentModel_EventDescriptor___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_String_System_ComponentModel_EventDescriptor___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_String_System_ComponentModel_EventDescriptor___Array__VTable vtable; +}; + +struct IEnumerator_1_KeyValuePair_2_System_String_System_ComponentModel_EventDescriptor___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_KeyValuePair_2_System_String_System_ComponentModel_EventDescriptor___StaticFields { +}; + +struct IEnumerator_1_KeyValuePair_2_System_String_System_ComponentModel_EventDescriptor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_KeyValuePair_2_System_String_System_ComponentModel_EventDescriptor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_KeyValuePair_2_System_String_System_ComponentModel_EventDescriptor___VTable vtable; +}; + +struct Dictionary_2_System_String_System_ComponentModel_EventDescriptor___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Values; + VirtualInvokeData ContainsKey; + VirtualInvokeData Add; + VirtualInvokeData Remove; + VirtualInvokeData TryGetValue; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add; + VirtualInvokeData Clear; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_get_Item; + VirtualInvokeData System_Collections_IDictionary_set_Item; + VirtualInvokeData System_Collections_IDictionary_get_Keys; + VirtualInvokeData System_Collections_IDictionary_get_Values; + VirtualInvokeData System_Collections_IDictionary_Contains; + VirtualInvokeData System_Collections_IDictionary_Add; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IDictionary_get_IsReadOnly; + VirtualInvokeData System_Collections_IDictionary_get_IsFixedSize; + VirtualInvokeData System_Collections_IDictionary_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_Remove; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData TryGetValue_1; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Values; + VirtualInvokeData get_Count_2; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct Dictionary_2_System_String_System_ComponentModel_EventDescriptor___StaticFields { +}; + +struct Dictionary_2_System_String_System_ComponentModel_EventDescriptor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_System_String_System_ComponentModel_EventDescriptor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_System_String_System_ComponentModel_EventDescriptor___VTable vtable; +}; + +struct __declspec(align(8)) List_1_Rewired_Data_UserDataStore_PlayerPrefs_JoystickAssignmentHistoryInfo___Fields { + struct UserDataStore_PlayerPrefs_JoystickAssignmentHistoryInfo__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Rewired_Data_UserDataStore_PlayerPrefs_JoystickAssignmentHistoryInfo_ { + struct List_1_Rewired_Data_UserDataStore_PlayerPrefs_JoystickAssignmentHistoryInfo___Class *klass; + MonitorData *monitor; + struct List_1_Rewired_Data_UserDataStore_PlayerPrefs_JoystickAssignmentHistoryInfo___Fields fields; +}; + +struct UserDataStore_PlayerPrefs_JoystickAssignmentHistoryInfo__Array { + struct UserDataStore_PlayerPrefs_JoystickAssignmentHistoryInfo__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct UserDataStore_PlayerPrefs_JoystickAssignmentHistoryInfo *vector[32]; +}; + +struct IEnumerator_1_Rewired_Data_UserDataStore_PlayerPrefs_JoystickAssignmentHistoryInfo_ { + struct IEnumerator_1_Rewired_Data_UserDataStore_PlayerPrefs_JoystickAssignmentHistoryInfo___Class *klass; + MonitorData *monitor; +}; + +struct UserDataStore_PlayerPrefs_JoystickAssignmentHistoryInfo__Array__VTable { +}; + +struct UserDataStore_PlayerPrefs_JoystickAssignmentHistoryInfo__Array__StaticFields { +}; + +struct UserDataStore_PlayerPrefs_JoystickAssignmentHistoryInfo__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UserDataStore_PlayerPrefs_JoystickAssignmentHistoryInfo__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UserDataStore_PlayerPrefs_JoystickAssignmentHistoryInfo__Array__VTable vtable; +}; + +struct IEnumerator_1_Rewired_Data_UserDataStore_PlayerPrefs_JoystickAssignmentHistoryInfo___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_Rewired_Data_UserDataStore_PlayerPrefs_JoystickAssignmentHistoryInfo___StaticFields { +}; + +struct IEnumerator_1_Rewired_Data_UserDataStore_PlayerPrefs_JoystickAssignmentHistoryInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_Rewired_Data_UserDataStore_PlayerPrefs_JoystickAssignmentHistoryInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_Rewired_Data_UserDataStore_PlayerPrefs_JoystickAssignmentHistoryInfo___VTable vtable; +}; + +struct List_1_Rewired_Data_UserDataStore_PlayerPrefs_JoystickAssignmentHistoryInfo___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_Rewired_Data_UserDataStore_PlayerPrefs_JoystickAssignmentHistoryInfo___StaticFields { + struct UserDataStore_PlayerPrefs_JoystickAssignmentHistoryInfo__Array *s_emptyArray; +}; + +struct List_1_Rewired_Data_UserDataStore_PlayerPrefs_JoystickAssignmentHistoryInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Rewired_Data_UserDataStore_PlayerPrefs_JoystickAssignmentHistoryInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Rewired_Data_UserDataStore_PlayerPrefs_JoystickAssignmentHistoryInfo___VTable vtable; +}; + +struct Predicate_1_Rewired_Data_UserDataStore_PlayerPrefs_JoystickAssignmentHistoryInfo___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Predicate_1_Rewired_Data_UserDataStore_PlayerPrefs_JoystickAssignmentHistoryInfo_ { + struct Predicate_1_Rewired_Data_UserDataStore_PlayerPrefs_JoystickAssignmentHistoryInfo___Class *klass; + MonitorData *monitor; + struct Predicate_1_Rewired_Data_UserDataStore_PlayerPrefs_JoystickAssignmentHistoryInfo___Fields fields; +}; + +struct Predicate_1_Rewired_Data_UserDataStore_PlayerPrefs_JoystickAssignmentHistoryInfo___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Predicate_1_Rewired_Data_UserDataStore_PlayerPrefs_JoystickAssignmentHistoryInfo___StaticFields { +}; + +struct Predicate_1_Rewired_Data_UserDataStore_PlayerPrefs_JoystickAssignmentHistoryInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Predicate_1_Rewired_Data_UserDataStore_PlayerPrefs_JoystickAssignmentHistoryInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Predicate_1_Rewired_Data_UserDataStore_PlayerPrefs_JoystickAssignmentHistoryInfo___VTable vtable; +}; + +struct List_1_T_Enumerator_Rewired_Joystick_ { + struct List_1_Rewired_Joystick_ *_list; + int32_t _index; + int32_t _version; + struct Joystick *_current; +}; + +struct List_1_T_Enumerator_Rewired_Joystick___Boxed { + struct List_1_T_Enumerator_Rewired_Joystick___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_Rewired_Joystick_ fields; +}; + +struct List_1_T_Enumerator_Rewired_Joystick___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_Rewired_Joystick___StaticFields { +}; + +struct List_1_T_Enumerator_Rewired_Joystick___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_Rewired_Joystick___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_Rewired_Joystick___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_System_ComponentModel_PropertyDescriptor_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct PropertyDescriptor *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_System_ComponentModel_PropertyDescriptor___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_System_ComponentModel_PropertyDescriptor___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_System_ComponentModel_PropertyDescriptor_ fields; +}; + +struct __declspec(align(8)) Dictionary_2_System_String_System_ComponentModel_PropertyDescriptor___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_System_String_System_ComponentModel_PropertyDescriptor___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_System_String_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_System_String_System_ComponentModel_PropertyDescriptor_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_System_String_System_ComponentModel_PropertyDescriptor_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_System_String_System_ComponentModel_PropertyDescriptor_ { + struct Dictionary_2_System_String_System_ComponentModel_PropertyDescriptor___Class *klass; + MonitorData *monitor; + struct Dictionary_2_System_String_System_ComponentModel_PropertyDescriptor___Fields fields; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_System_ComponentModel_PropertyDescriptor___Array { + struct Dictionary_2_TKey_TValue_Entry_System_String_System_ComponentModel_PropertyDescriptor___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Dictionary_2_TKey_TValue_Entry_System_String_System_ComponentModel_PropertyDescriptor_ vector[32]; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_KeyCollection_System_String_System_ComponentModel_PropertyDescriptor___Fields { + struct Dictionary_2_System_String_System_ComponentModel_PropertyDescriptor_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_String_System_ComponentModel_PropertyDescriptor_ { + struct Dictionary_2_TKey_TValue_KeyCollection_System_String_System_ComponentModel_PropertyDescriptor___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_KeyCollection_System_String_System_ComponentModel_PropertyDescriptor___Fields fields; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_ValueCollection_System_String_System_ComponentModel_PropertyDescriptor___Fields { + struct Dictionary_2_System_String_System_ComponentModel_PropertyDescriptor_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_String_System_ComponentModel_PropertyDescriptor_ { + struct Dictionary_2_TKey_TValue_ValueCollection_System_String_System_ComponentModel_PropertyDescriptor___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_System_String_System_ComponentModel_PropertyDescriptor___Fields fields; +}; + +struct ICollection_1_System_ComponentModel_PropertyDescriptor_ { + struct ICollection_1_System_ComponentModel_PropertyDescriptor___Class *klass; + MonitorData *monitor; +}; + +struct KeyValuePair_2_System_String_System_ComponentModel_PropertyDescriptor_ { + struct String *key; + struct PropertyDescriptor *value; +}; + +struct KeyValuePair_2_System_String_System_ComponentModel_PropertyDescriptor___Boxed { + struct KeyValuePair_2_System_String_System_ComponentModel_PropertyDescriptor___Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_System_String_System_ComponentModel_PropertyDescriptor_ fields; +}; + +struct KeyValuePair_2_System_String_System_ComponentModel_PropertyDescriptor___Array { + struct KeyValuePair_2_System_String_System_ComponentModel_PropertyDescriptor___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct KeyValuePair_2_System_String_System_ComponentModel_PropertyDescriptor_ vector[32]; +}; + +struct IEnumerator_1_KeyValuePair_2_System_String_System_ComponentModel_PropertyDescriptor_ { + struct IEnumerator_1_KeyValuePair_2_System_String_System_ComponentModel_PropertyDescriptor___Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_System_ComponentModel_PropertyDescriptor___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_System_ComponentModel_PropertyDescriptor___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_System_ComponentModel_PropertyDescriptor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_System_String_System_ComponentModel_PropertyDescriptor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_System_String_System_ComponentModel_PropertyDescriptor___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_System_ComponentModel_PropertyDescriptor___Array__VTable { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_System_ComponentModel_PropertyDescriptor___Array__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_System_ComponentModel_PropertyDescriptor___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_System_String_System_ComponentModel_PropertyDescriptor___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_System_String_System_ComponentModel_PropertyDescriptor___Array__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_String_System_ComponentModel_PropertyDescriptor___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TKey__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_String_System_ComponentModel_PropertyDescriptor___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_String_System_ComponentModel_PropertyDescriptor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_KeyCollection_System_String_System_ComponentModel_PropertyDescriptor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_KeyCollection_System_String_System_ComponentModel_PropertyDescriptor___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_String_System_ComponentModel_PropertyDescriptor___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TValue__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_String_System_ComponentModel_PropertyDescriptor___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_String_System_ComponentModel_PropertyDescriptor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_System_String_System_ComponentModel_PropertyDescriptor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_System_String_System_ComponentModel_PropertyDescriptor___VTable vtable; +}; + +struct ICollection_1_System_ComponentModel_PropertyDescriptor___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_System_ComponentModel_PropertyDescriptor___StaticFields { +}; + +struct ICollection_1_System_ComponentModel_PropertyDescriptor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_System_ComponentModel_PropertyDescriptor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_System_ComponentModel_PropertyDescriptor___VTable vtable; +}; + +struct PropertyDescriptor___VTable { +}; + +struct PropertyDescriptor___StaticFields { +}; + +struct PropertyDescriptor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PropertyDescriptor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PropertyDescriptor___VTable vtable; +}; + +struct KeyValuePair_2_System_String_System_ComponentModel_PropertyDescriptor___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct KeyValuePair_2_System_String_System_ComponentModel_PropertyDescriptor___StaticFields { +}; + +struct KeyValuePair_2_System_String_System_ComponentModel_PropertyDescriptor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_String_System_ComponentModel_PropertyDescriptor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_String_System_ComponentModel_PropertyDescriptor___VTable vtable; +}; + +struct KeyValuePair_2_System_String_System_ComponentModel_PropertyDescriptor___Array__VTable { +}; + +struct KeyValuePair_2_System_String_System_ComponentModel_PropertyDescriptor___Array__StaticFields { +}; + +struct KeyValuePair_2_System_String_System_ComponentModel_PropertyDescriptor___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_String_System_ComponentModel_PropertyDescriptor___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_String_System_ComponentModel_PropertyDescriptor___Array__VTable vtable; +}; + +struct IEnumerator_1_KeyValuePair_2_System_String_System_ComponentModel_PropertyDescriptor___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_KeyValuePair_2_System_String_System_ComponentModel_PropertyDescriptor___StaticFields { +}; + +struct IEnumerator_1_KeyValuePair_2_System_String_System_ComponentModel_PropertyDescriptor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_KeyValuePair_2_System_String_System_ComponentModel_PropertyDescriptor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_KeyValuePair_2_System_String_System_ComponentModel_PropertyDescriptor___VTable vtable; +}; + +struct Dictionary_2_System_String_System_ComponentModel_PropertyDescriptor___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Values; + VirtualInvokeData ContainsKey; + VirtualInvokeData Add; + VirtualInvokeData Remove; + VirtualInvokeData TryGetValue; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add; + VirtualInvokeData Clear; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_get_Item; + VirtualInvokeData System_Collections_IDictionary_set_Item; + VirtualInvokeData System_Collections_IDictionary_get_Keys; + VirtualInvokeData System_Collections_IDictionary_get_Values; + VirtualInvokeData System_Collections_IDictionary_Contains; + VirtualInvokeData System_Collections_IDictionary_Add; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IDictionary_get_IsReadOnly; + VirtualInvokeData System_Collections_IDictionary_get_IsFixedSize; + VirtualInvokeData System_Collections_IDictionary_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_Remove; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData TryGetValue_1; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Values; + VirtualInvokeData get_Count_2; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct Dictionary_2_System_String_System_ComponentModel_PropertyDescriptor___StaticFields { +}; + +struct Dictionary_2_System_String_System_ComponentModel_PropertyDescriptor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_System_String_System_ComponentModel_PropertyDescriptor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_System_String_System_ComponentModel_PropertyDescriptor___VTable vtable; +}; + +struct IEnumerable_1_Rewired_Player_ { + struct IEnumerable_1_Rewired_Player___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_Rewired_Player___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_Rewired_Player___StaticFields { +}; + +struct IEnumerable_1_Rewired_Player___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_Rewired_Player___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_Rewired_Player___VTable vtable; +}; + +struct ReflectPropertyDescriptor__Array { + struct ReflectPropertyDescriptor__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct ReflectPropertyDescriptor *vector[32]; +}; + +struct ReflectPropertyDescriptor__Array__VTable { +}; + +struct ReflectPropertyDescriptor__Array__StaticFields { +}; + +struct ReflectPropertyDescriptor__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ReflectPropertyDescriptor__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ReflectPropertyDescriptor__Array__VTable vtable; +}; + +struct ICollection_1_Rewired_InputLayout_ { + struct ICollection_1_Rewired_InputLayout___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_Rewired_InputLayout___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_Rewired_InputLayout___StaticFields { +}; + +struct ICollection_1_Rewired_InputLayout___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_Rewired_InputLayout___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_Rewired_InputLayout___VTable vtable; +}; + +struct ICollection_1_Rewired_InputMapCategory_ { + struct ICollection_1_Rewired_InputMapCategory___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_Rewired_InputMapCategory___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_Rewired_InputMapCategory___StaticFields { +}; + +struct ICollection_1_Rewired_InputMapCategory___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_Rewired_InputMapCategory___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_Rewired_InputMapCategory___VTable vtable; +}; + +struct IEnumerable_1_Rewired_Joystick_ { + struct IEnumerable_1_Rewired_Joystick___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_Rewired_Joystick___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_Rewired_Joystick___StaticFields { +}; + +struct IEnumerable_1_Rewired_Joystick___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_Rewired_Joystick___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_Rewired_Joystick___VTable vtable; +}; + +struct ICollection_1_Rewired_Player_ { + struct ICollection_1_Rewired_Player___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_Rewired_Player___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_Rewired_Player___StaticFields { +}; + +struct ICollection_1_Rewired_Player___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_Rewired_Player___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_Rewired_Player___VTable vtable; +}; + +struct IExtenderListService { + struct IExtenderListService__Class *klass; + MonitorData *monitor; +}; + +struct IExtenderListService__VTable { + VirtualInvokeData GetExtenderProviders; +}; + +struct IExtenderListService__StaticFields { +}; + +struct IExtenderListService__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IExtenderListService__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IExtenderListService__VTable vtable; +}; + +struct ICollection_1_Rewired_InputAction_ { + struct ICollection_1_Rewired_InputAction___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_Rewired_InputAction___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_Rewired_InputAction___StaticFields { +}; + +struct ICollection_1_Rewired_InputAction___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_Rewired_InputAction___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_Rewired_InputAction___VTable vtable; +}; + +struct ControllerTemplateFactory { + struct ControllerTemplateFactory__Class *klass; + MonitorData *monitor; +}; + +struct ControllerTemplateFactory__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ControllerTemplateFactory__StaticFields { + struct Type__Array *_defaultTemplateTypes; + struct Type__Array *_defaultTemplateInterfaceTypes; +}; + +struct ControllerTemplateFactory__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ControllerTemplateFactory__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ControllerTemplateFactory__VTable vtable; +}; + +struct LocalAppContextSwitches_1 { + struct LocalAppContextSwitches_1__Class *klass; + MonitorData *monitor; +}; + +struct LocalAppContextSwitches_1__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct LocalAppContextSwitches_1__StaticFields { + bool MemberDescriptorEqualsReturnsFalseIfEquivalent; +}; + +struct LocalAppContextSwitches_1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct LocalAppContextSwitches_1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct LocalAppContextSwitches_1__VTable vtable; +}; + +struct __declspec(align(8)) List_1_f_AnonymousType2_3___Fields { + struct _f_AnonymousType2_3_UdpKit_Platform_Photon_PhotonSession_Horror_RoomProtocolToken_Horror_GameConfigToken___Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_f_AnonymousType2_3_ { + struct List_1_f_AnonymousType2_3___Class *klass; + MonitorData *monitor; + struct List_1_f_AnonymousType2_3___Fields fields; +}; + +struct _f_AnonymousType2_3_UdpKit_Platform_Photon_PhotonSession_Horror_RoomProtocolToken_Horror_GameConfigToken___Array { + struct _f_AnonymousType2_3_UdpKit_Platform_Photon_PhotonSession_Horror_RoomProtocolToken_Horror_GameConfigToken___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct _f_AnonymousType2_3_UdpKit_Platform_Photon_PhotonSession_Horror_RoomProtocolToken_Horror_GameConfigToken_ *vector[32]; +}; + +struct IEnumerator_1_f_AnonymousType2_3_ { + struct IEnumerator_1_f_AnonymousType2_3___Class *klass; + MonitorData *monitor; +}; + +struct List_1_T_Enumerator_f_AnonymousType2_3_ { + struct List_1_f_AnonymousType2_3_ *_list; + int32_t _index; + int32_t _version; + struct _f_AnonymousType2_3_UdpKit_Platform_Photon_PhotonSession_Horror_RoomProtocolToken_Horror_GameConfigToken_ *_current; +}; + +struct List_1_T_Enumerator_f_AnonymousType2_3___Boxed { + struct List_1_T_Enumerator_f_AnonymousType2_3___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_f_AnonymousType2_3_ fields; +}; + +struct _f_AnonymousType2_3_UdpKit_Platform_Photon_PhotonSession_Horror_RoomProtocolToken_Horror_GameConfigToken___Array__VTable { +}; + +struct _f_AnonymousType2_3_UdpKit_Platform_Photon_PhotonSession_Horror_RoomProtocolToken_Horror_GameConfigToken___Array__StaticFields { +}; + +struct _f_AnonymousType2_3_UdpKit_Platform_Photon_PhotonSession_Horror_RoomProtocolToken_Horror_GameConfigToken___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct _f_AnonymousType2_3_UdpKit_Platform_Photon_PhotonSession_Horror_RoomProtocolToken_Horror_GameConfigToken___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct _f_AnonymousType2_3_UdpKit_Platform_Photon_PhotonSession_Horror_RoomProtocolToken_Horror_GameConfigToken___Array__VTable vtable; +}; + +struct IEnumerator_1_f_AnonymousType2_3___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_f_AnonymousType2_3___StaticFields { +}; + +struct IEnumerator_1_f_AnonymousType2_3___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_f_AnonymousType2_3___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_f_AnonymousType2_3___VTable vtable; +}; + +struct List_1_f_AnonymousType2_3___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_f_AnonymousType2_3___StaticFields { + struct _f_AnonymousType2_3_UdpKit_Platform_Photon_PhotonSession_Horror_RoomProtocolToken_Horror_GameConfigToken___Array *s_emptyArray; +}; + +struct List_1_f_AnonymousType2_3___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_f_AnonymousType2_3___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_f_AnonymousType2_3___VTable vtable; +}; + +struct List_1_T_Enumerator_f_AnonymousType2_3___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_f_AnonymousType2_3___StaticFields { +}; + +struct List_1_T_Enumerator_f_AnonymousType2_3___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_f_AnonymousType2_3___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_f_AnonymousType2_3___VTable vtable; +}; + +struct Func_2_f_AnonymousType2_3_Boolean___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_2_f_AnonymousType2_3_Boolean_ { + struct Func_2_f_AnonymousType2_3_Boolean___Class *klass; + MonitorData *monitor; + struct Func_2_f_AnonymousType2_3_Boolean___Fields fields; +}; + +struct Func_2_f_AnonymousType2_3_Boolean___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_2_f_AnonymousType2_3_Boolean___StaticFields { +}; + +struct Func_2_f_AnonymousType2_3_Boolean___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_2_f_AnonymousType2_3_Boolean___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_2_f_AnonymousType2_3_Boolean___VTable vtable; +}; + +struct IEnumerable_1_f_AnonymousType2_3_ { + struct IEnumerable_1_f_AnonymousType2_3___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_f_AnonymousType2_3___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_f_AnonymousType2_3___StaticFields { +}; + +struct IEnumerable_1_f_AnonymousType2_3___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_f_AnonymousType2_3___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_f_AnonymousType2_3___VTable vtable; +}; + +struct IOrderedEnumerable_1_f_AnonymousType2_3_ { + struct IOrderedEnumerable_1_f_AnonymousType2_3___Class *klass; + MonitorData *monitor; +}; + +struct IOrderedEnumerable_1_f_AnonymousType2_3___VTable { + VirtualInvokeData CreateOrderedEnumerable; +}; + +struct IOrderedEnumerable_1_f_AnonymousType2_3___StaticFields { +}; + +struct IOrderedEnumerable_1_f_AnonymousType2_3___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IOrderedEnumerable_1_f_AnonymousType2_3___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IOrderedEnumerable_1_f_AnonymousType2_3___VTable vtable; +}; + +struct IEnumerable_1_KeyValuePair_2_System_Guid_UdpKit_UdpSession_ { + struct IEnumerable_1_KeyValuePair_2_System_Guid_UdpKit_UdpSession___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_KeyValuePair_2_System_Guid_UdpKit_UdpSession___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_KeyValuePair_2_System_Guid_UdpKit_UdpSession___StaticFields { +}; + +struct IEnumerable_1_KeyValuePair_2_System_Guid_UdpKit_UdpSession___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_KeyValuePair_2_System_Guid_UdpKit_UdpSession___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_KeyValuePair_2_System_Guid_UdpKit_UdpSession___VTable vtable; +}; + +struct UQueryBuilder_1_Button_ { + struct List_1_UnityEngine_UIElements_StyleSelector_ *m_StyleSelectors; + struct List_1_UnityEngine_UIElements_StyleSelectorPart_ *m_Parts; + struct VisualElement *m_Element; + struct List_1_UnityEngine_UIElements_RuleMatcher_ *m_Matchers; + #if defined(_CPLUSPLUS_) + StyleSelectorRelationship__Enum m_Relationship; + #else + int32_t m_Relationship; + #endif + int32_t pseudoStatesMask; + int32_t negatedPseudoStatesMask; +}; + +struct UQueryBuilder_1_Button___Boxed { + struct UQueryBuilder_1_Button___Class *klass; + MonitorData *monitor; + struct UQueryBuilder_1_Button_ fields; +}; + +struct UQueryBuilder_1_Button___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Equals_1; +}; + +struct UQueryBuilder_1_Button___StaticFields { +}; + +struct UQueryBuilder_1_Button___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UQueryBuilder_1_Button___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UQueryBuilder_1_Button___VTable vtable; +}; + +struct Func_2_UnityEngine_UIElements_ReusableCollectionItem_Boolean___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_2_UnityEngine_UIElements_ReusableCollectionItem_Boolean_ { + struct Func_2_UnityEngine_UIElements_ReusableCollectionItem_Boolean___Class *klass; + MonitorData *monitor; + struct Func_2_UnityEngine_UIElements_ReusableCollectionItem_Boolean___Fields fields; +}; + +struct Func_2_UnityEngine_UIElements_ReusableCollectionItem_Boolean___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_2_UnityEngine_UIElements_ReusableCollectionItem_Boolean___StaticFields { +}; + +struct Func_2_UnityEngine_UIElements_ReusableCollectionItem_Boolean___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_2_UnityEngine_UIElements_ReusableCollectionItem_Boolean___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_2_UnityEngine_UIElements_ReusableCollectionItem_Boolean___VTable vtable; +}; + +struct IReorderable { + struct IReorderable__Class *klass; + MonitorData *monitor; +}; + +struct IReorderable__VTable { + VirtualInvokeData get_enableReordering; + VirtualInvokeData set_enableReordering; +}; + +struct IReorderable__StaticFields { +}; + +struct IReorderable__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IReorderable__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IReorderable__VTable vtable; +}; + +struct Version_1 { + struct Version_1__Class *klass; + MonitorData *monitor; +}; + +struct Version_1__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Version_1__StaticFields { + struct Byte__Array *clientVersion; +}; + +struct Version_1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Version_1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Version_1__VTable vtable; +}; + +struct PhotonCodes { + struct PhotonCodes__Class *klass; + MonitorData *monitor; +}; + +struct PhotonCodes__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct PhotonCodes__StaticFields { + uint8_t ClientKey; + uint8_t ModeKey; + uint8_t ServerKey; + uint8_t InitEncryption; + uint8_t Ping; +}; + +struct PhotonCodes__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PhotonCodes__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PhotonCodes__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_String_System_String_ { + struct Dictionary_2_System_String_System_String_ *_dictionary; + int32_t _version; + int32_t _index; + struct KeyValuePair_2_System_String_System_String_ _current; + int32_t _getEnumeratorRetType; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_String_System_String___Boxed { + struct Dictionary_2_TKey_TValue_Enumerator_System_String_System_String___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Enumerator_System_String_System_String_ fields; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_String_System_String___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Key; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Value; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Entry; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_String_System_String___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_String_System_String___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Enumerator_System_String_System_String___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Enumerator_System_String_System_String___VTable vtable; +}; + +struct IEnumerable_1_KeyValuePair_2_System_Byte_System_Object_ { + struct IEnumerable_1_KeyValuePair_2_System_Byte_System_Object___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_KeyValuePair_2_System_Byte_System_Object___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_KeyValuePair_2_System_Byte_System_Object___StaticFields { +}; + +struct IEnumerable_1_KeyValuePair_2_System_Byte_System_Object___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_KeyValuePair_2_System_Byte_System_Object___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_KeyValuePair_2_System_Byte_System_Object___VTable vtable; +}; + +struct LinkedList_1_T_Enumerator_ExitGames_Client_Photon_SimulationItem_ { + struct LinkedList_1_ExitGames_Client_Photon_SimulationItem_ *_list; + struct LinkedListNode_1_ExitGames_Client_Photon_SimulationItem_ *_node; + int32_t _version; + struct SimulationItem *_current; + int32_t _index; +}; + +struct LinkedList_1_T_Enumerator_ExitGames_Client_Photon_SimulationItem___Boxed { + struct LinkedList_1_T_Enumerator_ExitGames_Client_Photon_SimulationItem___Class *klass; + MonitorData *monitor; + struct LinkedList_1_T_Enumerator_ExitGames_Client_Photon_SimulationItem_ fields; +}; + +struct LinkedList_1_T_Enumerator_ExitGames_Client_Photon_SimulationItem___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; + VirtualInvokeData System_Runtime_Serialization_ISerializable_GetObjectData; + VirtualInvokeData System_Runtime_Serialization_IDeserializationCallback_OnDeserialization; +}; + +struct LinkedList_1_T_Enumerator_ExitGames_Client_Photon_SimulationItem___StaticFields { +}; + +struct LinkedList_1_T_Enumerator_ExitGames_Client_Photon_SimulationItem___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct LinkedList_1_T_Enumerator_ExitGames_Client_Photon_SimulationItem___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct LinkedList_1_T_Enumerator_ExitGames_Client_Photon_SimulationItem___VTable vtable; +}; + +struct Comparison_1_System_Net_IPAddress___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Comparison_1_System_Net_IPAddress_ { + struct Comparison_1_System_Net_IPAddress___Class *klass; + MonitorData *monitor; + struct Comparison_1_System_Net_IPAddress___Fields fields; +}; + +struct Comparison_1_System_Net_IPAddress___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Comparison_1_System_Net_IPAddress___StaticFields { +}; + +struct Comparison_1_System_Net_IPAddress___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Comparison_1_System_Net_IPAddress___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Comparison_1_System_Net_IPAddress___VTable vtable; +}; + +struct IEnumerable_1_System_Net_IPAddress_ { + struct IEnumerable_1_System_Net_IPAddress___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_System_Net_IPAddress___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_System_Net_IPAddress___StaticFields { +}; + +struct IEnumerable_1_System_Net_IPAddress___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_System_Net_IPAddress___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_System_Net_IPAddress___VTable vtable; +}; + +struct List_1_T_Enumerator_ExitGames_Client_Photon_NCommand_ { + struct List_1_ExitGames_Client_Photon_NCommand_ *_list; + int32_t _index; + int32_t _version; + struct NCommand *_current; +}; + +struct List_1_T_Enumerator_ExitGames_Client_Photon_NCommand___Boxed { + struct List_1_T_Enumerator_ExitGames_Client_Photon_NCommand___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_ExitGames_Client_Photon_NCommand_ fields; +}; + +struct List_1_T_Enumerator_ExitGames_Client_Photon_NCommand___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_ExitGames_Client_Photon_NCommand___StaticFields { +}; + +struct List_1_T_Enumerator_ExitGames_Client_Photon_NCommand___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_ExitGames_Client_Photon_NCommand___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_ExitGames_Client_Photon_NCommand___VTable vtable; +}; + +struct SupportClass { + struct SupportClass__Class *klass; + MonitorData *monitor; +}; + +struct SupportClass__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct SupportClass__StaticFields { + struct List_1_System_Threading_Thread_ *threadList; + struct Object *ThreadListLock; + struct SupportClass_IntegerMillisecondsDelegate *IntegerMilliseconds; + struct UInt32__Array *crcLookupTable; +}; + +struct SupportClass__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SupportClass__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SupportClass__VTable vtable; +}; + +struct Protocol { + struct Protocol__Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_ExitGames_Client_Photon_CustomType_ { + int32_t hashCode; + int32_t next; + struct Type *key; + struct CustomType *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_ExitGames_Client_Photon_CustomType___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Type_ExitGames_Client_Photon_CustomType___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Type_ExitGames_Client_Photon_CustomType_ fields; +}; + +struct __declspec(align(8)) Dictionary_2_System_Type_ExitGames_Client_Photon_CustomType___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_System_Type_ExitGames_Client_Photon_CustomType___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_System_Type_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_ExitGames_Client_Photon_CustomType_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_ExitGames_Client_Photon_CustomType_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_System_Type_ExitGames_Client_Photon_CustomType_ { + struct Dictionary_2_System_Type_ExitGames_Client_Photon_CustomType___Class *klass; + MonitorData *monitor; + struct Dictionary_2_System_Type_ExitGames_Client_Photon_CustomType___Fields fields; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_ExitGames_Client_Photon_CustomType___Array { + struct Dictionary_2_TKey_TValue_Entry_System_Type_ExitGames_Client_Photon_CustomType___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Dictionary_2_TKey_TValue_Entry_System_Type_ExitGames_Client_Photon_CustomType_ vector[32]; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_KeyCollection_System_Type_ExitGames_Client_Photon_CustomType___Fields { + struct Dictionary_2_System_Type_ExitGames_Client_Photon_CustomType_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_ExitGames_Client_Photon_CustomType_ { + struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_ExitGames_Client_Photon_CustomType___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_ExitGames_Client_Photon_CustomType___Fields fields; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_ValueCollection_System_Type_ExitGames_Client_Photon_CustomType___Fields { + struct Dictionary_2_System_Type_ExitGames_Client_Photon_CustomType_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_ExitGames_Client_Photon_CustomType_ { + struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_ExitGames_Client_Photon_CustomType___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_ExitGames_Client_Photon_CustomType___Fields fields; +}; + +struct CustomType__Array { + struct CustomType__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct CustomType *vector[32]; +}; + +struct IEnumerator_1_ExitGames_Client_Photon_CustomType_ { + struct IEnumerator_1_ExitGames_Client_Photon_CustomType___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_ExitGames_Client_Photon_CustomType_ { + struct ICollection_1_ExitGames_Client_Photon_CustomType___Class *klass; + MonitorData *monitor; +}; + +struct KeyValuePair_2_System_Type_ExitGames_Client_Photon_CustomType_ { + struct Type *key; + struct CustomType *value; +}; + +struct KeyValuePair_2_System_Type_ExitGames_Client_Photon_CustomType___Boxed { + struct KeyValuePair_2_System_Type_ExitGames_Client_Photon_CustomType___Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_System_Type_ExitGames_Client_Photon_CustomType_ fields; +}; + +struct KeyValuePair_2_System_Type_ExitGames_Client_Photon_CustomType___Array { + struct KeyValuePair_2_System_Type_ExitGames_Client_Photon_CustomType___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct KeyValuePair_2_System_Type_ExitGames_Client_Photon_CustomType_ vector[32]; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Type_ExitGames_Client_Photon_CustomType_ { + struct IEnumerator_1_KeyValuePair_2_System_Type_ExitGames_Client_Photon_CustomType___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_ExitGames_Client_Photon_CustomType_ { + struct IEnumerable_1_ExitGames_Client_Photon_CustomType___Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Byte_ExitGames_Client_Photon_CustomType_ { + int32_t hashCode; + int32_t next; + uint8_t key; + struct CustomType *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Byte_ExitGames_Client_Photon_CustomType___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Byte_ExitGames_Client_Photon_CustomType___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Byte_ExitGames_Client_Photon_CustomType_ fields; +}; + +struct __declspec(align(8)) Dictionary_2_System_Byte_ExitGames_Client_Photon_CustomType___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_System_Byte_ExitGames_Client_Photon_CustomType___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_System_Byte_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Byte_ExitGames_Client_Photon_CustomType_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Byte_ExitGames_Client_Photon_CustomType_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_System_Byte_ExitGames_Client_Photon_CustomType_ { + struct Dictionary_2_System_Byte_ExitGames_Client_Photon_CustomType___Class *klass; + MonitorData *monitor; + struct Dictionary_2_System_Byte_ExitGames_Client_Photon_CustomType___Fields fields; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Byte_ExitGames_Client_Photon_CustomType___Array { + struct Dictionary_2_TKey_TValue_Entry_System_Byte_ExitGames_Client_Photon_CustomType___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Dictionary_2_TKey_TValue_Entry_System_Byte_ExitGames_Client_Photon_CustomType_ vector[32]; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_KeyCollection_System_Byte_ExitGames_Client_Photon_CustomType___Fields { + struct Dictionary_2_System_Byte_ExitGames_Client_Photon_CustomType_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Byte_ExitGames_Client_Photon_CustomType_ { + struct Dictionary_2_TKey_TValue_KeyCollection_System_Byte_ExitGames_Client_Photon_CustomType___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Byte_ExitGames_Client_Photon_CustomType___Fields fields; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_ValueCollection_System_Byte_ExitGames_Client_Photon_CustomType___Fields { + struct Dictionary_2_System_Byte_ExitGames_Client_Photon_CustomType_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Byte_ExitGames_Client_Photon_CustomType_ { + struct Dictionary_2_TKey_TValue_ValueCollection_System_Byte_ExitGames_Client_Photon_CustomType___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Byte_ExitGames_Client_Photon_CustomType___Fields fields; +}; + +struct KeyValuePair_2_System_Byte_ExitGames_Client_Photon_CustomType_ { + uint8_t key; + struct CustomType *value; +}; + +struct KeyValuePair_2_System_Byte_ExitGames_Client_Photon_CustomType___Boxed { + struct KeyValuePair_2_System_Byte_ExitGames_Client_Photon_CustomType___Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_System_Byte_ExitGames_Client_Photon_CustomType_ fields; +}; + +struct KeyValuePair_2_System_Byte_ExitGames_Client_Photon_CustomType___Array { + struct KeyValuePair_2_System_Byte_ExitGames_Client_Photon_CustomType___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct KeyValuePair_2_System_Byte_ExitGames_Client_Photon_CustomType_ vector[32]; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Byte_ExitGames_Client_Photon_CustomType_ { + struct IEnumerator_1_KeyValuePair_2_System_Byte_ExitGames_Client_Photon_CustomType___Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_ExitGames_Client_Photon_CustomType___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_ExitGames_Client_Photon_CustomType___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_ExitGames_Client_Photon_CustomType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_System_Type_ExitGames_Client_Photon_CustomType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_System_Type_ExitGames_Client_Photon_CustomType___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_ExitGames_Client_Photon_CustomType___Array__VTable { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_ExitGames_Client_Photon_CustomType___Array__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_ExitGames_Client_Photon_CustomType___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_System_Type_ExitGames_Client_Photon_CustomType___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_System_Type_ExitGames_Client_Photon_CustomType___Array__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_ExitGames_Client_Photon_CustomType___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TKey__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_ExitGames_Client_Photon_CustomType___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_ExitGames_Client_Photon_CustomType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_ExitGames_Client_Photon_CustomType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_ExitGames_Client_Photon_CustomType___VTable vtable; +}; + +struct CustomType__Array__VTable { +}; + +struct CustomType__Array__StaticFields { +}; + +struct CustomType__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CustomType__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CustomType__Array__VTable vtable; +}; + +struct IEnumerator_1_ExitGames_Client_Photon_CustomType___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_ExitGames_Client_Photon_CustomType___StaticFields { +}; + +struct IEnumerator_1_ExitGames_Client_Photon_CustomType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_ExitGames_Client_Photon_CustomType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_ExitGames_Client_Photon_CustomType___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_ExitGames_Client_Photon_CustomType___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TValue__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_ExitGames_Client_Photon_CustomType___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_ExitGames_Client_Photon_CustomType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_ExitGames_Client_Photon_CustomType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_ExitGames_Client_Photon_CustomType___VTable vtable; +}; + +struct ICollection_1_ExitGames_Client_Photon_CustomType___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_ExitGames_Client_Photon_CustomType___StaticFields { +}; + +struct ICollection_1_ExitGames_Client_Photon_CustomType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_ExitGames_Client_Photon_CustomType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_ExitGames_Client_Photon_CustomType___VTable vtable; +}; + +struct CustomType___VTable { +}; + +struct CustomType___StaticFields { +}; + +struct CustomType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CustomType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CustomType___VTable vtable; +}; + +struct KeyValuePair_2_System_Type_ExitGames_Client_Photon_CustomType___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct KeyValuePair_2_System_Type_ExitGames_Client_Photon_CustomType___StaticFields { +}; + +struct KeyValuePair_2_System_Type_ExitGames_Client_Photon_CustomType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_Type_ExitGames_Client_Photon_CustomType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_Type_ExitGames_Client_Photon_CustomType___VTable vtable; +}; + +struct KeyValuePair_2_System_Type_ExitGames_Client_Photon_CustomType___Array__VTable { +}; + +struct KeyValuePair_2_System_Type_ExitGames_Client_Photon_CustomType___Array__StaticFields { +}; + +struct KeyValuePair_2_System_Type_ExitGames_Client_Photon_CustomType___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_Type_ExitGames_Client_Photon_CustomType___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_Type_ExitGames_Client_Photon_CustomType___Array__VTable vtable; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Type_ExitGames_Client_Photon_CustomType___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Type_ExitGames_Client_Photon_CustomType___StaticFields { +}; + +struct IEnumerator_1_KeyValuePair_2_System_Type_ExitGames_Client_Photon_CustomType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_KeyValuePair_2_System_Type_ExitGames_Client_Photon_CustomType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_KeyValuePair_2_System_Type_ExitGames_Client_Photon_CustomType___VTable vtable; +}; + +struct IEnumerable_1_ExitGames_Client_Photon_CustomType___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_ExitGames_Client_Photon_CustomType___StaticFields { +}; + +struct IEnumerable_1_ExitGames_Client_Photon_CustomType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_ExitGames_Client_Photon_CustomType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_ExitGames_Client_Photon_CustomType___VTable vtable; +}; + +struct Dictionary_2_System_Type_ExitGames_Client_Photon_CustomType___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Values; + VirtualInvokeData ContainsKey; + VirtualInvokeData Add; + VirtualInvokeData Remove; + VirtualInvokeData TryGetValue; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add; + VirtualInvokeData Clear; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_get_Item; + VirtualInvokeData System_Collections_IDictionary_set_Item; + VirtualInvokeData System_Collections_IDictionary_get_Keys; + VirtualInvokeData System_Collections_IDictionary_get_Values; + VirtualInvokeData System_Collections_IDictionary_Contains; + VirtualInvokeData System_Collections_IDictionary_Add; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IDictionary_get_IsReadOnly; + VirtualInvokeData System_Collections_IDictionary_get_IsFixedSize; + VirtualInvokeData System_Collections_IDictionary_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_Remove; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData TryGetValue_1; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Values; + VirtualInvokeData get_Count_2; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct Dictionary_2_System_Type_ExitGames_Client_Photon_CustomType___StaticFields { +}; + +struct Dictionary_2_System_Type_ExitGames_Client_Photon_CustomType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_System_Type_ExitGames_Client_Photon_CustomType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_System_Type_ExitGames_Client_Photon_CustomType___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Byte_ExitGames_Client_Photon_CustomType___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Byte_ExitGames_Client_Photon_CustomType___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Byte_ExitGames_Client_Photon_CustomType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_System_Byte_ExitGames_Client_Photon_CustomType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_System_Byte_ExitGames_Client_Photon_CustomType___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Byte_ExitGames_Client_Photon_CustomType___Array__VTable { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Byte_ExitGames_Client_Photon_CustomType___Array__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Byte_ExitGames_Client_Photon_CustomType___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_System_Byte_ExitGames_Client_Photon_CustomType___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_System_Byte_ExitGames_Client_Photon_CustomType___Array__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Byte_ExitGames_Client_Photon_CustomType___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TKey__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Byte_ExitGames_Client_Photon_CustomType___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Byte_ExitGames_Client_Photon_CustomType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Byte_ExitGames_Client_Photon_CustomType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Byte_ExitGames_Client_Photon_CustomType___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Byte_ExitGames_Client_Photon_CustomType___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TValue__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Byte_ExitGames_Client_Photon_CustomType___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Byte_ExitGames_Client_Photon_CustomType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Byte_ExitGames_Client_Photon_CustomType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Byte_ExitGames_Client_Photon_CustomType___VTable vtable; +}; + +struct KeyValuePair_2_System_Byte_ExitGames_Client_Photon_CustomType___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct KeyValuePair_2_System_Byte_ExitGames_Client_Photon_CustomType___StaticFields { +}; + +struct KeyValuePair_2_System_Byte_ExitGames_Client_Photon_CustomType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_Byte_ExitGames_Client_Photon_CustomType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_Byte_ExitGames_Client_Photon_CustomType___VTable vtable; +}; + +struct KeyValuePair_2_System_Byte_ExitGames_Client_Photon_CustomType___Array__VTable { +}; + +struct KeyValuePair_2_System_Byte_ExitGames_Client_Photon_CustomType___Array__StaticFields { +}; + +struct KeyValuePair_2_System_Byte_ExitGames_Client_Photon_CustomType___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_Byte_ExitGames_Client_Photon_CustomType___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_Byte_ExitGames_Client_Photon_CustomType___Array__VTable vtable; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Byte_ExitGames_Client_Photon_CustomType___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Byte_ExitGames_Client_Photon_CustomType___StaticFields { +}; + +struct IEnumerator_1_KeyValuePair_2_System_Byte_ExitGames_Client_Photon_CustomType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_KeyValuePair_2_System_Byte_ExitGames_Client_Photon_CustomType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_KeyValuePair_2_System_Byte_ExitGames_Client_Photon_CustomType___VTable vtable; +}; + +struct Dictionary_2_System_Byte_ExitGames_Client_Photon_CustomType___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Values; + VirtualInvokeData ContainsKey; + VirtualInvokeData Add; + VirtualInvokeData Remove; + VirtualInvokeData TryGetValue; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add; + VirtualInvokeData Clear; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_get_Item; + VirtualInvokeData System_Collections_IDictionary_set_Item; + VirtualInvokeData System_Collections_IDictionary_get_Keys; + VirtualInvokeData System_Collections_IDictionary_get_Values; + VirtualInvokeData System_Collections_IDictionary_Contains; + VirtualInvokeData System_Collections_IDictionary_Add; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IDictionary_get_IsReadOnly; + VirtualInvokeData System_Collections_IDictionary_get_IsFixedSize; + VirtualInvokeData System_Collections_IDictionary_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_Remove; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData TryGetValue_1; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Values; + VirtualInvokeData get_Count_2; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct Dictionary_2_System_Byte_ExitGames_Client_Photon_CustomType___StaticFields { +}; + +struct Dictionary_2_System_Byte_ExitGames_Client_Photon_CustomType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_System_Byte_ExitGames_Client_Photon_CustomType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_System_Byte_ExitGames_Client_Photon_CustomType___VTable vtable; +}; + +struct Protocol__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Protocol__StaticFields { + struct Dictionary_2_System_Type_ExitGames_Client_Photon_CustomType_ *TypeDict; + struct Dictionary_2_System_Byte_ExitGames_Client_Photon_CustomType_ *CodeDict; + struct Single__Array *memFloatBlock; + struct Byte__Array *memDeserialize; +}; + +struct Protocol__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Protocol__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Protocol__VTable vtable; +}; + +struct SupportClass_ThreadSafeRandom { + struct SupportClass_ThreadSafeRandom__Class *klass; + MonitorData *monitor; +}; + +struct SupportClass_ThreadSafeRandom__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct SupportClass_ThreadSafeRandom__StaticFields { + struct Random *_r; +}; + +struct SupportClass_ThreadSafeRandom__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SupportClass_ThreadSafeRandom__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SupportClass_ThreadSafeRandom__VTable vtable; +}; + +struct NonAllocDictionary_2_K_V_KeyIterator_System_Int32_NCommand_ { + int32_t _index; + struct NonAllocDictionary_2_System_Int32_NCommand_ *_dict; +}; + +struct NonAllocDictionary_2_K_V_KeyIterator_System_Int32_NCommand___Boxed { + struct NonAllocDictionary_2_K_V_KeyIterator_System_Int32_NCommand___Class *klass; + MonitorData *monitor; + struct NonAllocDictionary_2_K_V_KeyIterator_System_Int32_NCommand_ fields; +}; + +struct NonAllocDictionary_2_K_V_KeyIterator_System_Int32_NCommand___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData Reset; +}; + +struct NonAllocDictionary_2_K_V_KeyIterator_System_Int32_NCommand___StaticFields { +}; + +struct NonAllocDictionary_2_K_V_KeyIterator_System_Int32_NCommand___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NonAllocDictionary_2_K_V_KeyIterator_System_Int32_NCommand___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NonAllocDictionary_2_K_V_KeyIterator_System_Int32_NCommand___VTable vtable; +}; + +struct Mathf { +}; + +struct Mathf__Boxed { + struct Mathf__Class *klass; + MonitorData *monitor; + struct Mathf fields; +}; + +struct Mathf__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Mathf__StaticFields { + float Epsilon; +}; + +struct Mathf__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Mathf__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Mathf__VTable vtable; +}; + +struct Predicate_1_Rewired_Demos_DualShock4SpecialFeaturesExample_Touch___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Predicate_1_Rewired_Demos_DualShock4SpecialFeaturesExample_Touch_ { + struct Predicate_1_Rewired_Demos_DualShock4SpecialFeaturesExample_Touch___Class *klass; + MonitorData *monitor; + struct Predicate_1_Rewired_Demos_DualShock4SpecialFeaturesExample_Touch___Fields fields; +}; + +struct Predicate_1_Rewired_Demos_DualShock4SpecialFeaturesExample_Touch___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Predicate_1_Rewired_Demos_DualShock4SpecialFeaturesExample_Touch___StaticFields { +}; + +struct Predicate_1_Rewired_Demos_DualShock4SpecialFeaturesExample_Touch___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Predicate_1_Rewired_Demos_DualShock4SpecialFeaturesExample_Touch___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Predicate_1_Rewired_Demos_DualShock4SpecialFeaturesExample_Touch___VTable vtable; +}; + +struct IControllerVibrator { + struct IControllerVibrator__Class *klass; + MonitorData *monitor; +}; + +struct IControllerVibrator__VTable { + VirtualInvokeData get_vibrationMotorCount; + VirtualInvokeData SetVibration; + VirtualInvokeData SetVibration_1; + VirtualInvokeData SetVibration_2; + VirtualInvokeData SetVibration_3; + VirtualInvokeData GetVibration; + VirtualInvokeData StopVibration; +}; + +struct IControllerVibrator__StaticFields { +}; + +struct IControllerVibrator__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IControllerVibrator__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IControllerVibrator__VTable vtable; +}; + +struct Queue_1_T_Enumerator_Rewired_Demos_ControlRemappingDemo1_QueueEntry_ { + struct Queue_1_Rewired_Demos_ControlRemappingDemo1_QueueEntry_ *_q; + int32_t _version; + int32_t _index; + struct ControlRemappingDemo1_QueueEntry *_currentElement; +}; + +struct Queue_1_T_Enumerator_Rewired_Demos_ControlRemappingDemo1_QueueEntry___Boxed { + struct Queue_1_T_Enumerator_Rewired_Demos_ControlRemappingDemo1_QueueEntry___Class *klass; + MonitorData *monitor; + struct Queue_1_T_Enumerator_Rewired_Demos_ControlRemappingDemo1_QueueEntry_ fields; +}; + +struct Queue_1_T_Enumerator_Rewired_Demos_ControlRemappingDemo1_QueueEntry___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct Queue_1_T_Enumerator_Rewired_Demos_ControlRemappingDemo1_QueueEntry___StaticFields { +}; + +struct Queue_1_T_Enumerator_Rewired_Demos_ControlRemappingDemo1_QueueEntry___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Queue_1_T_Enumerator_Rewired_Demos_ControlRemappingDemo1_QueueEntry___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Queue_1_T_Enumerator_Rewired_Demos_ControlRemappingDemo1_QueueEntry___VTable vtable; +}; + +struct List_1_T_Enumerator_Rewired_Components_PlayerMouse_ { + struct List_1_Rewired_Components_PlayerMouse_ *_list; + int32_t _index; + int32_t _version; + struct PlayerMouse *_current; +}; + +struct List_1_T_Enumerator_Rewired_Components_PlayerMouse___Boxed { + struct List_1_T_Enumerator_Rewired_Components_PlayerMouse___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_Rewired_Components_PlayerMouse_ fields; +}; + +struct List_1_T_Enumerator_Rewired_Components_PlayerMouse___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_Rewired_Components_PlayerMouse___StaticFields { +}; + +struct List_1_T_Enumerator_Rewired_Components_PlayerMouse___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_Rewired_Components_PlayerMouse___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_Rewired_Components_PlayerMouse___VTable vtable; +}; + +struct ICollection_1_KeyValuePair_2_System_String_System_String_ { + struct ICollection_1_KeyValuePair_2_System_String_System_String___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_KeyValuePair_2_System_String_System_String___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_KeyValuePair_2_System_String_System_String___StaticFields { +}; + +struct ICollection_1_KeyValuePair_2_System_String_System_String___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_KeyValuePair_2_System_String_System_String___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_KeyValuePair_2_System_String_System_String___VTable vtable; +}; + +struct ScrollerVisibility___VTable { +}; + +struct ScrollerVisibility___StaticFields { +}; + +struct ScrollerVisibility___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ScrollerVisibility___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ScrollerVisibility___VTable vtable; +}; + +struct EventCallback_1_PointerCaptureEvent___Fields { + struct MulticastDelegate__Fields _; +}; + +struct EventCallback_1_PointerCaptureEvent_ { + struct EventCallback_1_PointerCaptureEvent___Class *klass; + MonitorData *monitor; + struct EventCallback_1_PointerCaptureEvent___Fields fields; +}; + +struct EventCallback_1_PointerCaptureEvent___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct EventCallback_1_PointerCaptureEvent___StaticFields { +}; + +struct EventCallback_1_PointerCaptureEvent___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EventCallback_1_PointerCaptureEvent___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EventCallback_1_PointerCaptureEvent___VTable vtable; +}; + +struct EventCallback_1_WheelEvent___Fields { + struct MulticastDelegate__Fields _; +}; + +struct EventCallback_1_WheelEvent_ { + struct EventCallback_1_WheelEvent___Class *klass; + MonitorData *monitor; + struct EventCallback_1_WheelEvent___Fields fields; +}; + +struct EventCallback_1_WheelEvent___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct EventCallback_1_WheelEvent___StaticFields { +}; + +struct EventCallback_1_WheelEvent___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EventCallback_1_WheelEvent___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EventCallback_1_WheelEvent___VTable vtable; +}; + +struct IEnumerable_1_Rewired_Components_PlayerMouse_ { + struct IEnumerable_1_Rewired_Components_PlayerMouse___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_Rewired_Components_PlayerMouse___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_Rewired_Components_PlayerMouse___StaticFields { +}; + +struct IEnumerable_1_Rewired_Components_PlayerMouse___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_Rewired_Components_PlayerMouse___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_Rewired_Components_PlayerMouse___VTable vtable; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_RadioButton_ { + struct List_1_UnityEngine_UIElements_RadioButton_ *_list; + int32_t _index; + int32_t _version; + struct RadioButton *_current; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_RadioButton___Boxed { + struct List_1_T_Enumerator_UnityEngine_UIElements_RadioButton___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_UnityEngine_UIElements_RadioButton_ fields; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_RadioButton___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_RadioButton___StaticFields { +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_RadioButton___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_UnityEngine_UIElements_RadioButton___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_UnityEngine_UIElements_RadioButton___VTable vtable; +}; + +struct StandardCommands_ShellGuids { + struct StandardCommands_ShellGuids__Class *klass; + MonitorData *monitor; +}; + +struct StandardCommands_ShellGuids__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct StandardCommands_ShellGuids__StaticFields { + struct Guid VSStandardCommandSet97; + struct Guid guidDsdCmdId; + struct Guid SID_SOleComponentUIManager; + struct Guid GUID_VSTASKCATEGORY_DATADESIGNER; + struct Guid GUID_PropertyBrowserToolWindow; +}; + +struct StandardCommands_ShellGuids__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StandardCommands_ShellGuids__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StandardCommands_ShellGuids__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Type_System_Object_ { + struct Dictionary_2_System_Type_System_Object_ *_dictionary; + int32_t _index; + int32_t _version; + struct Object *_currentValue; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Type_System_Object___Boxed { + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Type_System_Object___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Type_System_Object_ fields; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Type_System_Object___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Type_System_Object___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Type_System_Object___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Type_System_Object___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Type_System_Object___VTable vtable; +}; + +struct IFormatter { + struct IFormatter__Class *klass; + MonitorData *monitor; +}; + +struct IFormatter__VTable { + VirtualInvokeData Deserialize; + VirtualInvokeData Serialize; +}; + +struct IFormatter__StaticFields { +}; + +struct IFormatter__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IFormatter__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IFormatter__VTable vtable; +}; + +struct UnknownType__Array { + struct UnknownType__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct UnknownType *vector[32]; +}; + +struct UnknownType__Array__VTable { +}; + +struct UnknownType__Array__StaticFields { +}; + +struct UnknownType__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UnknownType__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UnknownType__Array__VTable vtable; +}; + +struct BOTDShaderID { + struct BOTDShaderID__Class *klass; + MonitorData *monitor; +}; + +struct BOTDShaderID__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BOTDShaderID__StaticFields { + int32_t m_windConfiguration; + int32_t m_windNoiseTexture; + struct String *m_windNoiseTextureName; +}; + +struct BOTDShaderID__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BOTDShaderID__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BOTDShaderID__VTable vtable; +}; + +struct Logs_1 { + struct Logs_1__Class *klass; + MonitorData *monitor; +}; + +struct Logs_1__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Logs_1__StaticFields { + bool _Disable_k__BackingField; + struct TransferBuffer_1_Dissonance_Logs_LogMessage_ *LogsFromOtherThreads; + struct Thread *_main; +}; + +struct Logs_1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Logs_1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Logs_1__VTable vtable; +}; + +struct List_1_T_Enumerator_Dissonance_Integrations_PhotonBolt_BoltDissonanceRelay_IBoltPacketListener_ { + struct List_1_Dissonance_Integrations_PhotonBolt_BoltDissonanceRelay_IBoltPacketListener_ *_list; + int32_t _index; + int32_t _version; + struct BoltDissonanceRelay_IBoltPacketListener *_current; +}; + +struct List_1_T_Enumerator_Dissonance_Integrations_PhotonBolt_BoltDissonanceRelay_IBoltPacketListener___Boxed { + struct List_1_T_Enumerator_Dissonance_Integrations_PhotonBolt_BoltDissonanceRelay_IBoltPacketListener___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_Dissonance_Integrations_PhotonBolt_BoltDissonanceRelay_IBoltPacketListener_ fields; +}; + +struct List_1_T_Enumerator_Dissonance_Integrations_PhotonBolt_BoltDissonanceRelay_IBoltPacketListener___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_Dissonance_Integrations_PhotonBolt_BoltDissonanceRelay_IBoltPacketListener___StaticFields { +}; + +struct List_1_T_Enumerator_Dissonance_Integrations_PhotonBolt_BoltDissonanceRelay_IBoltPacketListener___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_Dissonance_Integrations_PhotonBolt_BoltDissonanceRelay_IBoltPacketListener___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_Dissonance_Integrations_PhotonBolt_BoltDissonanceRelay_IBoltPacketListener___VTable vtable; +}; + +struct List_1_T_Enumerator_Dissonance_Integrations_PhotonBolt_BoltDissonanceRelay_IBoltDisconnectListener_ { + struct List_1_Dissonance_Integrations_PhotonBolt_BoltDissonanceRelay_IBoltDisconnectListener_ *_list; + int32_t _index; + int32_t _version; + struct BoltDissonanceRelay_IBoltDisconnectListener *_current; +}; + +struct List_1_T_Enumerator_Dissonance_Integrations_PhotonBolt_BoltDissonanceRelay_IBoltDisconnectListener___Boxed { + struct List_1_T_Enumerator_Dissonance_Integrations_PhotonBolt_BoltDissonanceRelay_IBoltDisconnectListener___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_Dissonance_Integrations_PhotonBolt_BoltDissonanceRelay_IBoltDisconnectListener_ fields; +}; + +struct List_1_T_Enumerator_Dissonance_Integrations_PhotonBolt_BoltDissonanceRelay_IBoltDisconnectListener___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_Dissonance_Integrations_PhotonBolt_BoltDissonanceRelay_IBoltDisconnectListener___StaticFields { +}; + +struct List_1_T_Enumerator_Dissonance_Integrations_PhotonBolt_BoltDissonanceRelay_IBoltDisconnectListener___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_Dissonance_Integrations_PhotonBolt_BoltDissonanceRelay_IBoltDisconnectListener___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_Dissonance_Integrations_PhotonBolt_BoltDissonanceRelay_IBoltDisconnectListener___VTable vtable; +}; + +struct RandomGen { + struct RandomGen__Class *klass; + MonitorData *monitor; +}; + +struct RandomGen__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct RandomGen__StaticFields { + struct Random *_global; + struct Random *_local; +}; + +struct RandomGen__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RandomGen__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RandomGen__VTable vtable; +}; + +struct IEnumerable_1_MagicLightProbes_MLPPointData_ { + struct IEnumerable_1_MagicLightProbes_MLPPointData___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_MagicLightProbes_MLPPointData___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_MagicLightProbes_MLPPointData___StaticFields { +}; + +struct IEnumerable_1_MagicLightProbes_MLPPointData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_MagicLightProbes_MLPPointData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_MagicLightProbes_MLPPointData___VTable vtable; +}; + +struct List_1_T_Enumerator_Opsive_UltimateCharacterController_Character_Abilities_Ability_ { + struct List_1_Opsive_UltimateCharacterController_Character_Abilities_Ability_ *_list; + int32_t _index; + int32_t _version; + struct Ability *_current; +}; + +struct List_1_T_Enumerator_Opsive_UltimateCharacterController_Character_Abilities_Ability___Boxed { + struct List_1_T_Enumerator_Opsive_UltimateCharacterController_Character_Abilities_Ability___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_Opsive_UltimateCharacterController_Character_Abilities_Ability_ fields; +}; + +struct List_1_T_Enumerator_Opsive_UltimateCharacterController_Character_Abilities_Ability___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_Opsive_UltimateCharacterController_Character_Abilities_Ability___StaticFields { +}; + +struct List_1_T_Enumerator_Opsive_UltimateCharacterController_Character_Abilities_Ability___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_Opsive_UltimateCharacterController_Character_Abilities_Ability___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_Opsive_UltimateCharacterController_Character_Abilities_Ability___VTable vtable; +}; + +struct Action_1_Opsive_UltimateCharacterController_Objects_CharacterAssist_ObjectPickup___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_1_Opsive_UltimateCharacterController_Objects_CharacterAssist_ObjectPickup_ { + struct Action_1_Opsive_UltimateCharacterController_Objects_CharacterAssist_ObjectPickup___Class *klass; + MonitorData *monitor; + struct Action_1_Opsive_UltimateCharacterController_Objects_CharacterAssist_ObjectPickup___Fields fields; +}; + +struct Action_1_Opsive_UltimateCharacterController_Objects_CharacterAssist_ObjectPickup___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_1_Opsive_UltimateCharacterController_Objects_CharacterAssist_ObjectPickup___StaticFields { +}; + +struct Action_1_Opsive_UltimateCharacterController_Objects_CharacterAssist_ObjectPickup___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_1_Opsive_UltimateCharacterController_Objects_CharacterAssist_ObjectPickup___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_1_Opsive_UltimateCharacterController_Objects_CharacterAssist_ObjectPickup___VTable vtable; +}; + +struct Action_1_Opsive_UltimateCharacterController_Character_ILookSource___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_1_Opsive_UltimateCharacterController_Character_ILookSource_ { + struct Action_1_Opsive_UltimateCharacterController_Character_ILookSource___Class *klass; + MonitorData *monitor; + struct Action_1_Opsive_UltimateCharacterController_Character_ILookSource___Fields fields; +}; + +struct Action_1_Opsive_UltimateCharacterController_Character_ILookSource___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_1_Opsive_UltimateCharacterController_Character_ILookSource___StaticFields { +}; + +struct Action_1_Opsive_UltimateCharacterController_Character_ILookSource___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_1_Opsive_UltimateCharacterController_Character_ILookSource___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_1_Opsive_UltimateCharacterController_Character_ILookSource___VTable vtable; +}; + +struct ICollection_1_Rewired_ControllerTemplateElementTarget_ { + struct ICollection_1_Rewired_ControllerTemplateElementTarget___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_Rewired_ControllerTemplateElementTarget___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_Rewired_ControllerTemplateElementTarget___StaticFields { +}; + +struct ICollection_1_Rewired_ControllerTemplateElementTarget___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_Rewired_ControllerTemplateElementTarget___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_Rewired_ControllerTemplateElementTarget___VTable vtable; +}; + +struct ICollection_1_Rewired_InputActionSourceData_ { + struct ICollection_1_Rewired_InputActionSourceData___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_Rewired_InputActionSourceData___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_Rewired_InputActionSourceData___StaticFields { +}; + +struct ICollection_1_Rewired_InputActionSourceData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_Rewired_InputActionSourceData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_Rewired_InputActionSourceData___VTable vtable; +}; + +struct OakleyGroups { + struct OakleyGroups__Class *klass; + MonitorData *monitor; +}; + +struct OakleyGroups__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct OakleyGroups__StaticFields { + int32_t Generator; + struct Byte__Array *OakleyPrime768; + struct Byte__Array *OakleyPrime1024; + struct Byte__Array *OakleyPrime1536; +}; + +struct OakleyGroups__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct OakleyGroups__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct OakleyGroups__VTable vtable; +}; + +struct List_1_T_Enumerator_System_IDisposable_ { + struct List_1_System_IDisposable_ *_list; + int32_t _index; + int32_t _version; + struct IDisposable *_current; +}; + +struct List_1_T_Enumerator_System_IDisposable___Boxed { + struct List_1_T_Enumerator_System_IDisposable___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_System_IDisposable_ fields; +}; + +struct List_1_T_Enumerator_System_IDisposable___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_System_IDisposable___StaticFields { +}; + +struct List_1_T_Enumerator_System_IDisposable___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_System_IDisposable___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_System_IDisposable___VTable vtable; +}; + +struct List_1_T_Enumerator_System_Threading_Thread_ { + struct List_1_System_Threading_Thread_ *_list; + int32_t _index; + int32_t _version; + struct Thread *_current; +}; + +struct List_1_T_Enumerator_System_Threading_Thread___Boxed { + struct List_1_T_Enumerator_System_Threading_Thread___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_System_Threading_Thread_ fields; +}; + +struct List_1_T_Enumerator_System_Threading_Thread___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_System_Threading_Thread___StaticFields { +}; + +struct List_1_T_Enumerator_System_Threading_Thread___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_System_Threading_Thread___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_System_Threading_Thread___VTable vtable; +}; + +struct INavigationEvent { + struct INavigationEvent__Class *klass; + MonitorData *monitor; +}; + +struct INavigationEvent__VTable { +}; + +struct INavigationEvent__StaticFields { +}; + +struct INavigationEvent__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct INavigationEvent__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct INavigationEvent__VTable vtable; +}; + +struct IEnumerable_1_UnityEngine_UIElements_EventCallbackFunctorBase_ { + struct IEnumerable_1_UnityEngine_UIElements_EventCallbackFunctorBase___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_UnityEngine_UIElements_EventCallbackFunctorBase___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_UnityEngine_UIElements_EventCallbackFunctorBase___StaticFields { +}; + +struct IEnumerable_1_UnityEngine_UIElements_EventCallbackFunctorBase___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_UnityEngine_UIElements_EventCallbackFunctorBase___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_UnityEngine_UIElements_EventCallbackFunctorBase___VTable vtable; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_EventCallbackFunctorBase_ { + struct List_1_UnityEngine_UIElements_EventCallbackFunctorBase_ *_list; + int32_t _index; + int32_t _version; + struct EventCallbackFunctorBase *_current; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_EventCallbackFunctorBase___Boxed { + struct List_1_T_Enumerator_UnityEngine_UIElements_EventCallbackFunctorBase___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_UnityEngine_UIElements_EventCallbackFunctorBase_ fields; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_EventCallbackFunctorBase___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_EventCallbackFunctorBase___StaticFields { +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_EventCallbackFunctorBase___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_UnityEngine_UIElements_EventCallbackFunctorBase___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_UnityEngine_UIElements_EventCallbackFunctorBase___VTable vtable; +}; + +struct PooledObject_1_System_Collections_Generic_List_1__4 { + struct List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ *m_ToReturn; + struct IObjectPool_1_System_Collections_Generic_List_1__4 *m_Pool; +}; + +struct PooledObject_1_System_Collections_Generic_List_1__4__Boxed { + struct PooledObject_1_System_Collections_Generic_List_1__4__Class *klass; + MonitorData *monitor; + struct PooledObject_1_System_Collections_Generic_List_1__4 fields; +}; + +struct IObjectPool_1_System_Collections_Generic_List_1__4 { + struct IObjectPool_1_System_Collections_Generic_List_1__4__Class *klass; + MonitorData *monitor; +}; + +struct IObjectPool_1_System_Collections_Generic_List_1__4__VTable { + VirtualInvokeData Release; +}; + +struct IObjectPool_1_System_Collections_Generic_List_1__4__StaticFields { +}; + +struct IObjectPool_1_System_Collections_Generic_List_1__4__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IObjectPool_1_System_Collections_Generic_List_1__4__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IObjectPool_1_System_Collections_Generic_List_1__4__VTable vtable; +}; + +struct PooledObject_1_System_Collections_Generic_List_1__4__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_IDisposable_Dispose; +}; + +struct PooledObject_1_System_Collections_Generic_List_1__4__StaticFields { +}; + +struct PooledObject_1_System_Collections_Generic_List_1__4__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PooledObject_1_System_Collections_Generic_List_1__4__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PooledObject_1_System_Collections_Generic_List_1__4__VTable vtable; +}; + +struct List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__1__VTable { +}; + +struct List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__1__StaticFields { +}; + +struct List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState__1__VTable vtable; +}; + +struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ { + struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) ObjectPool_1_System_Collections_Generic_List_1__9__Fields { + struct List_1_List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ *m_List; + struct Func_1_System_Collections_Generic_List_1__17 *m_CreateFunc; + struct Action_1_System_Collections_Generic_List_1__13 *m_ActionOnGet; + struct Action_1_System_Collections_Generic_List_1__13 *m_ActionOnRelease; + struct Action_1_System_Collections_Generic_List_1__13 *m_ActionOnDestroy; + int32_t m_MaxSize; + bool m_CollectionCheck; + int32_t _CountAll_k__BackingField; +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__9 { + struct ObjectPool_1_System_Collections_Generic_List_1__9__Class *klass; + MonitorData *monitor; + struct ObjectPool_1_System_Collections_Generic_List_1__9__Fields fields; +}; + +struct __declspec(align(8)) List_1_List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState___Fields { + struct List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState___Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ { + struct List_1_List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState___Class *klass; + MonitorData *monitor; + struct List_1_List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState___Fields fields; +}; + +struct List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState___Array { + struct List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ *vector[32]; +}; + +struct IEnumerator_1_List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState_ { + struct IEnumerator_1_List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState___Class *klass; + MonitorData *monitor; +}; + +struct Func_1_System_Collections_Generic_List_1__17__Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_1_System_Collections_Generic_List_1__17 { + struct Func_1_System_Collections_Generic_List_1__17__Class *klass; + MonitorData *monitor; + struct Func_1_System_Collections_Generic_List_1__17__Fields fields; +}; + +struct Action_1_System_Collections_Generic_List_1__13__Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_1_System_Collections_Generic_List_1__13 { + struct Action_1_System_Collections_Generic_List_1__13__Class *klass; + MonitorData *monitor; + struct Action_1_System_Collections_Generic_List_1__13__Fields fields; +}; + +struct List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState___Array__VTable { +}; + +struct List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState___Array__StaticFields { +}; + +struct List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState___Array__VTable vtable; +}; + +struct IEnumerator_1_List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState___StaticFields { +}; + +struct IEnumerator_1_List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState___VTable vtable; +}; + +struct List_1_List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState___StaticFields { + struct List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState___Array *s_emptyArray; +}; + +struct List_1_List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState___VTable vtable; +}; + +struct Func_1_System_Collections_Generic_List_1__17__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_1_System_Collections_Generic_List_1__17__StaticFields { +}; + +struct Func_1_System_Collections_Generic_List_1__17__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_1_System_Collections_Generic_List_1__17__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_1_System_Collections_Generic_List_1__17__VTable vtable; +}; + +struct Action_1_System_Collections_Generic_List_1__13__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_1_System_Collections_Generic_List_1__13__StaticFields { +}; + +struct Action_1_System_Collections_Generic_List_1__13__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_1_System_Collections_Generic_List_1__13__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_1_System_Collections_Generic_List_1__13__VTable vtable; +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__9__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Dispose; + VirtualInvokeData Release; + VirtualInvokeData get_CountInactive; + VirtualInvokeData Get; + VirtualInvokeData Get_1; + VirtualInvokeData Clear; +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__9__StaticFields { +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__9__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ObjectPool_1_System_Collections_Generic_List_1__9__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ObjectPool_1_System_Collections_Generic_List_1__9__VTable vtable; +}; + +struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState___StaticFields { + struct ObjectPool_1_System_Collections_Generic_List_1__9 *s_Pool; +}; + +struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_UIElements_TreeViewReorderableDragAndDropController_TreeItemState___VTable vtable; +}; + +struct ICommandEvent { + struct ICommandEvent__Class *klass; + MonitorData *monitor; +}; + +struct ICommandEvent__VTable { +}; + +struct ICommandEvent__StaticFields { +}; + +struct ICommandEvent__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICommandEvent__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICommandEvent__VTable vtable; +}; + +struct BoltDebugStartSettings_HWND { + struct BoltDebugStartSettings_HWND__Class *klass; + MonitorData *monitor; +}; + +struct BoltDebugStartSettings_HWND__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltDebugStartSettings_HWND__StaticFields { + void *NoTopMost; + void *TopMost; + void *Top; + void *Bottom; +}; + +struct BoltDebugStartSettings_HWND__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltDebugStartSettings_HWND__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltDebugStartSettings_HWND__VTable vtable; +}; + +struct BoltDebugStartSettings_SWP { + struct BoltDebugStartSettings_SWP__Class *klass; + MonitorData *monitor; +}; + +struct BoltDebugStartSettings_SWP__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltDebugStartSettings_SWP__StaticFields { + int32_t NOSIZE; + int32_t NOMOVE; + int32_t NOZORDER; + int32_t NOREDRAW; + int32_t NOACTIVATE; + int32_t DRAWFRAME; + int32_t FRAMECHANGED; + int32_t SHOWWINDOW; + int32_t HIDEWINDOW; + int32_t NOCOPYBITS; + int32_t NOOWNERZORDER; + int32_t NOREPOSITION; + int32_t NOSENDCHANGING; + int32_t DEFERERASE; + int32_t ASYNCWINDOWPOS; +}; + +struct BoltDebugStartSettings_SWP__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltDebugStartSettings_SWP__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltDebugStartSettings_SWP__VTable vtable; +}; + +struct ConsoleWriter { + struct ConsoleWriter__Class *klass; + MonitorData *monitor; +}; + +struct ConsoleWriter__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ConsoleWriter__StaticFields { + struct TextWriter *realOut; +}; + +struct ConsoleWriter__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ConsoleWriter__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ConsoleWriter__VTable vtable; +}; + +struct IDragAndDropController_1_IListDragAndDropArgs_ { + struct IDragAndDropController_1_IListDragAndDropArgs___Class *klass; + MonitorData *monitor; +}; + +struct IDragAndDropController_1_IListDragAndDropArgs___VTable { + VirtualInvokeData CanStartDrag; + VirtualInvokeData SetupDragAndDrop; + VirtualInvokeData HandleDragAndDrop; + VirtualInvokeData OnDrop; + VirtualInvokeData DragCleanup; + VirtualInvokeData GetSortedSelectedIds; +}; + +struct IDragAndDropController_1_IListDragAndDropArgs___StaticFields { +}; + +struct IDragAndDropController_1_IListDragAndDropArgs___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IDragAndDropController_1_IListDragAndDropArgs___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IDragAndDropController_1_IListDragAndDropArgs___VTable vtable; +}; + +struct EventCallback_1_PointerLeaveEvent___Fields { + struct MulticastDelegate__Fields _; +}; + +struct EventCallback_1_PointerLeaveEvent_ { + struct EventCallback_1_PointerLeaveEvent___Class *klass; + MonitorData *monitor; + struct EventCallback_1_PointerLeaveEvent___Fields fields; +}; + +struct EventCallback_1_PointerLeaveEvent___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct EventCallback_1_PointerLeaveEvent___StaticFields { +}; + +struct EventCallback_1_PointerLeaveEvent___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EventCallback_1_PointerLeaveEvent___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EventCallback_1_PointerLeaveEvent___VTable vtable; +}; + +struct DragAndDropUtility { + struct DragAndDropUtility__Class *klass; + MonitorData *monitor; +}; + +struct Func_1_UnityEngine_UIElements_IDragAndDrop___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_1_UnityEngine_UIElements_IDragAndDrop_ { + struct Func_1_UnityEngine_UIElements_IDragAndDrop___Class *klass; + MonitorData *monitor; + struct Func_1_UnityEngine_UIElements_IDragAndDrop___Fields fields; +}; + +struct Func_1_UnityEngine_UIElements_IDragAndDrop___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_1_UnityEngine_UIElements_IDragAndDrop___StaticFields { +}; + +struct Func_1_UnityEngine_UIElements_IDragAndDrop___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_1_UnityEngine_UIElements_IDragAndDrop___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_1_UnityEngine_UIElements_IDragAndDrop___VTable vtable; +}; + +struct DragAndDropUtility__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct DragAndDropUtility__StaticFields { + struct Func_1_UnityEngine_UIElements_IDragAndDrop_ *s_MakeDragAndDropClientFunc; + struct IDragAndDrop *s_DragAndDropEditor; + struct IDragAndDrop *s_DragAndDropPlayMode; +}; + +struct DragAndDropUtility__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DragAndDropUtility__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DragAndDropUtility__VTable vtable; +}; + +struct IEnumerable_1_InnShrineController_ { + struct IEnumerable_1_InnShrineController___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_InnShrineController___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_InnShrineController___StaticFields { +}; + +struct IEnumerable_1_InnShrineController___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_InnShrineController___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_InnShrineController___VTable vtable; +}; + +struct Action_3_UnityEngine_Vector3_UnityEngine_Vector3_UnityEngine_GameObject___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_3_UnityEngine_Vector3_UnityEngine_Vector3_UnityEngine_GameObject_ { + struct Action_3_UnityEngine_Vector3_UnityEngine_Vector3_UnityEngine_GameObject___Class *klass; + MonitorData *monitor; + struct Action_3_UnityEngine_Vector3_UnityEngine_Vector3_UnityEngine_GameObject___Fields fields; +}; + +struct Action_3_UnityEngine_Vector3_UnityEngine_Vector3_UnityEngine_GameObject___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_3_UnityEngine_Vector3_UnityEngine_Vector3_UnityEngine_GameObject___StaticFields { +}; + +struct Action_3_UnityEngine_Vector3_UnityEngine_Vector3_UnityEngine_GameObject___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_3_UnityEngine_Vector3_UnityEngine_Vector3_UnityEngine_GameObject___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_3_UnityEngine_Vector3_UnityEngine_Vector3_UnityEngine_GameObject___VTable vtable; +}; + +struct List_1_T_Enumerator_Photon_Realtime_Region_ { + struct List_1_Photon_Realtime_Region_ *_list; + int32_t _index; + int32_t _version; + struct Region_1 *_current; +}; + +struct List_1_T_Enumerator_Photon_Realtime_Region___Boxed { + struct List_1_T_Enumerator_Photon_Realtime_Region___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_Photon_Realtime_Region_ fields; +}; + +struct List_1_T_Enumerator_Photon_Realtime_Region___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_Photon_Realtime_Region___StaticFields { +}; + +struct List_1_T_Enumerator_Photon_Realtime_Region___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_Photon_Realtime_Region___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_Photon_Realtime_Region___VTable vtable; +}; + +struct List_1_T_Enumerator_Photon_Realtime_RegionPinger_ { + struct List_1_Photon_Realtime_RegionPinger_ *_list; + int32_t _index; + int32_t _version; + struct RegionPinger *_current; +}; + +struct List_1_T_Enumerator_Photon_Realtime_RegionPinger___Boxed { + struct List_1_T_Enumerator_Photon_Realtime_RegionPinger___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_Photon_Realtime_RegionPinger_ fields; +}; + +struct List_1_T_Enumerator_Photon_Realtime_RegionPinger___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_Photon_Realtime_RegionPinger___StaticFields { +}; + +struct List_1_T_Enumerator_Photon_Realtime_RegionPinger___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_Photon_Realtime_RegionPinger___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_Photon_Realtime_RegionPinger___VTable vtable; +}; + +struct Predicate_1_Photon_Realtime_Region___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Predicate_1_Photon_Realtime_Region_ { + struct Predicate_1_Photon_Realtime_Region___Class *klass; + MonitorData *monitor; + struct Predicate_1_Photon_Realtime_Region___Fields fields; +}; + +struct Predicate_1_Photon_Realtime_Region___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Predicate_1_Photon_Realtime_Region___StaticFields { +}; + +struct Predicate_1_Photon_Realtime_Region___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Predicate_1_Photon_Realtime_Region___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Predicate_1_Photon_Realtime_Region___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_Photon_Realtime_Player_ { + struct Dictionary_2_System_Int32_Photon_Realtime_Player_ *_dictionary; + int32_t _index; + int32_t _version; + int32_t _currentKey; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_Photon_Realtime_Player___Boxed { + struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_Photon_Realtime_Player___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_Photon_Realtime_Player_ fields; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_Photon_Realtime_Player___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_Photon_Realtime_Player___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_Photon_Realtime_Player___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_Photon_Realtime_Player___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_System_Int32_Photon_Realtime_Player___VTable vtable; +}; + +struct List_1_T_Enumerator_Photon_Realtime_IWebRpcCallback_ { + struct List_1_Photon_Realtime_IWebRpcCallback_ *_list; + int32_t _index; + int32_t _version; + struct IWebRpcCallback *_current; +}; + +struct List_1_T_Enumerator_Photon_Realtime_IWebRpcCallback___Boxed { + struct List_1_T_Enumerator_Photon_Realtime_IWebRpcCallback___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_Photon_Realtime_IWebRpcCallback_ fields; +}; + +struct List_1_T_Enumerator_Photon_Realtime_IWebRpcCallback___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_Photon_Realtime_IWebRpcCallback___StaticFields { +}; + +struct List_1_T_Enumerator_Photon_Realtime_IWebRpcCallback___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_Photon_Realtime_IWebRpcCallback___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_Photon_Realtime_IWebRpcCallback___VTable vtable; +}; + +struct List_1_T_Enumerator_Photon_Realtime_ILobbyCallbacks_ { + struct List_1_Photon_Realtime_ILobbyCallbacks_ *_list; + int32_t _index; + int32_t _version; + struct ILobbyCallbacks *_current; +}; + +struct List_1_T_Enumerator_Photon_Realtime_ILobbyCallbacks___Boxed { + struct List_1_T_Enumerator_Photon_Realtime_ILobbyCallbacks___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_Photon_Realtime_ILobbyCallbacks_ fields; +}; + +struct List_1_T_Enumerator_Photon_Realtime_ILobbyCallbacks___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_Photon_Realtime_ILobbyCallbacks___StaticFields { +}; + +struct List_1_T_Enumerator_Photon_Realtime_ILobbyCallbacks___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_Photon_Realtime_ILobbyCallbacks___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_Photon_Realtime_ILobbyCallbacks___VTable vtable; +}; + +struct List_1_T_Enumerator_Photon_Realtime_IErrorInfoCallback_ { + struct List_1_Photon_Realtime_IErrorInfoCallback_ *_list; + int32_t _index; + int32_t _version; + struct IErrorInfoCallback *_current; +}; + +struct List_1_T_Enumerator_Photon_Realtime_IErrorInfoCallback___Boxed { + struct List_1_T_Enumerator_Photon_Realtime_IErrorInfoCallback___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_Photon_Realtime_IErrorInfoCallback_ fields; +}; + +struct List_1_T_Enumerator_Photon_Realtime_IErrorInfoCallback___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_Photon_Realtime_IErrorInfoCallback___StaticFields { +}; + +struct List_1_T_Enumerator_Photon_Realtime_IErrorInfoCallback___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_Photon_Realtime_IErrorInfoCallback___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_Photon_Realtime_IErrorInfoCallback___VTable vtable; +}; + +struct List_1_T_Enumerator_Photon_Realtime_IInRoomCallbacks_ { + struct List_1_Photon_Realtime_IInRoomCallbacks_ *_list; + int32_t _index; + int32_t _version; + struct IInRoomCallbacks *_current; +}; + +struct List_1_T_Enumerator_Photon_Realtime_IInRoomCallbacks___Boxed { + struct List_1_T_Enumerator_Photon_Realtime_IInRoomCallbacks___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_Photon_Realtime_IInRoomCallbacks_ fields; +}; + +struct List_1_T_Enumerator_Photon_Realtime_IInRoomCallbacks___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_Photon_Realtime_IInRoomCallbacks___StaticFields { +}; + +struct List_1_T_Enumerator_Photon_Realtime_IInRoomCallbacks___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_Photon_Realtime_IInRoomCallbacks___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_Photon_Realtime_IInRoomCallbacks___VTable vtable; +}; + +struct List_1_T_Enumerator_Photon_Realtime_IConnectionCallbacks_ { + struct List_1_Photon_Realtime_IConnectionCallbacks_ *_list; + int32_t _index; + int32_t _version; + struct IConnectionCallbacks *_current; +}; + +struct List_1_T_Enumerator_Photon_Realtime_IConnectionCallbacks___Boxed { + struct List_1_T_Enumerator_Photon_Realtime_IConnectionCallbacks___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_Photon_Realtime_IConnectionCallbacks_ fields; +}; + +struct List_1_T_Enumerator_Photon_Realtime_IConnectionCallbacks___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_Photon_Realtime_IConnectionCallbacks___StaticFields { +}; + +struct List_1_T_Enumerator_Photon_Realtime_IConnectionCallbacks___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_Photon_Realtime_IConnectionCallbacks___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_Photon_Realtime_IConnectionCallbacks___VTable vtable; +}; + +struct List_1_T_Enumerator_Photon_Realtime_IMatchmakingCallbacks_ { + struct List_1_Photon_Realtime_IMatchmakingCallbacks_ *_list; + int32_t _index; + int32_t _version; + struct IMatchmakingCallbacks *_current; +}; + +struct List_1_T_Enumerator_Photon_Realtime_IMatchmakingCallbacks___Boxed { + struct List_1_T_Enumerator_Photon_Realtime_IMatchmakingCallbacks___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_Photon_Realtime_IMatchmakingCallbacks_ fields; +}; + +struct List_1_T_Enumerator_Photon_Realtime_IMatchmakingCallbacks___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_Photon_Realtime_IMatchmakingCallbacks___StaticFields { +}; + +struct List_1_T_Enumerator_Photon_Realtime_IMatchmakingCallbacks___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_Photon_Realtime_IMatchmakingCallbacks___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_Photon_Realtime_IMatchmakingCallbacks___VTable vtable; +}; + +struct IOnEventCallback { + struct IOnEventCallback__Class *klass; + MonitorData *monitor; +}; + +struct IOnEventCallback__VTable { + VirtualInvokeData OnEvent; +}; + +struct IOnEventCallback__StaticFields { +}; + +struct IOnEventCallback__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IOnEventCallback__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IOnEventCallback__VTable vtable; +}; + +struct Extensions { + struct Extensions__Class *klass; + MonitorData *monitor; +}; + +struct Extensions__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Extensions__StaticFields { + struct List_1_System_Object_ *keysWithNullValue; +}; + +struct Extensions__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Extensions__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Extensions__VTable vtable; +}; + +struct CustomTypesUnity { + struct CustomTypesUnity__Class *klass; + MonitorData *monitor; +}; + +struct CustomTypesUnity__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct CustomTypesUnity__StaticFields { + struct Byte__Array *memVector3; + struct Byte__Array *memVector2; + struct Byte__Array *memQuarternion; +}; + +struct CustomTypesUnity__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CustomTypesUnity__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CustomTypesUnity__VTable vtable; +}; + +struct IEnumerable_1_UnityEngine_UIElements_UIDocument_ { + struct IEnumerable_1_UnityEngine_UIElements_UIDocument___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_UnityEngine_UIElements_UIDocument___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_UnityEngine_UIElements_UIDocument___StaticFields { +}; + +struct IEnumerable_1_UnityEngine_UIElements_UIDocument___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_UnityEngine_UIElements_UIDocument___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_UnityEngine_UIElements_UIDocument___VTable vtable; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_UIDocument_ { + struct List_1_UnityEngine_UIElements_UIDocument_ *_list; + int32_t _index; + int32_t _version; + struct UIDocument *_current; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_UIDocument___Boxed { + struct List_1_T_Enumerator_UnityEngine_UIElements_UIDocument___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_UnityEngine_UIElements_UIDocument_ fields; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_UIDocument___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_UIDocument___StaticFields { +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_UIDocument___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_UnityEngine_UIElements_UIDocument___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_UnityEngine_UIElements_UIDocument___VTable vtable; +}; + +struct Physics2D { + struct Physics2D__Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) List_1_UnityEngine_Rigidbody2D___Fields { + struct Rigidbody2D__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_Rigidbody2D_ { + struct List_1_UnityEngine_Rigidbody2D___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_Rigidbody2D___Fields fields; +}; + +struct Rigidbody2D__Array { + struct Rigidbody2D__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Rigidbody2D *vector[32]; +}; + +struct IEnumerator_1_UnityEngine_Rigidbody2D_ { + struct IEnumerator_1_UnityEngine_Rigidbody2D___Class *klass; + MonitorData *monitor; +}; + +struct Rigidbody2D__Array__VTable { +}; + +struct Rigidbody2D__Array__StaticFields { +}; + +struct Rigidbody2D__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Rigidbody2D__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Rigidbody2D__Array__VTable vtable; +}; + +struct IEnumerator_1_UnityEngine_Rigidbody2D___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_UnityEngine_Rigidbody2D___StaticFields { +}; + +struct IEnumerator_1_UnityEngine_Rigidbody2D___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_UnityEngine_Rigidbody2D___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_UnityEngine_Rigidbody2D___VTable vtable; +}; + +struct List_1_UnityEngine_Rigidbody2D___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_UnityEngine_Rigidbody2D___StaticFields { + struct Rigidbody2D__Array *s_emptyArray; +}; + +struct List_1_UnityEngine_Rigidbody2D___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_Rigidbody2D___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_Rigidbody2D___VTable vtable; +}; + +struct Physics2D__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Physics2D__StaticFields { + struct List_1_UnityEngine_Rigidbody2D_ *m_LastDisabledRigidbody2D; +}; + +struct Physics2D__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Physics2D__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Physics2D__VTable vtable; +}; + +struct PathInternal { + struct PathInternal__Class *klass; + MonitorData *monitor; +}; + +struct PathInternal__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct PathInternal__StaticFields { + bool s_isCaseSensitive; +}; + +struct PathInternal__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PathInternal__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PathInternal__VTable vtable; +}; + +struct IFancyScrollRectContext { + struct IFancyScrollRectContext__Class *klass; + MonitorData *monitor; +}; + +struct IFancyScrollRectContext__VTable { + VirtualInvokeData get_ScrollDirection; + VirtualInvokeData set_ScrollDirection; + VirtualInvokeData get_CalculateScrollSize; + VirtualInvokeData set_CalculateScrollSize; +}; + +struct IFancyScrollRectContext__StaticFields { +}; + +struct IFancyScrollRectContext__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IFancyScrollRectContext__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IFancyScrollRectContext__VTable vtable; +}; + +struct IFancyGridViewContext { + struct IFancyGridViewContext__Class *klass; + MonitorData *monitor; +}; + +struct IFancyGridViewContext__VTable { + VirtualInvokeData get_GetStartAxisSpacing; + VirtualInvokeData set_GetStartAxisSpacing; + VirtualInvokeData get_GetCellSize; + VirtualInvokeData set_GetCellSize; +}; + +struct IFancyGridViewContext__StaticFields { +}; + +struct IFancyGridViewContext__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IFancyGridViewContext__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IFancyGridViewContext__VTable vtable; +}; + +struct Func_2_Int32_UnityEngine_GameObject___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_2_Int32_UnityEngine_GameObject_ { + struct Func_2_Int32_UnityEngine_GameObject___Class *klass; + MonitorData *monitor; + struct Func_2_Int32_UnityEngine_GameObject___Fields fields; +}; + +struct Func_2_Int32_UnityEngine_GameObject___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_2_Int32_UnityEngine_GameObject___StaticFields { +}; + +struct Func_2_Int32_UnityEngine_GameObject___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_2_Int32_UnityEngine_GameObject___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_2_Int32_UnityEngine_GameObject___VTable vtable; +}; + +struct IReadOnlyCollection_1_System_Linq_Expressions_ParameterExpression_ { + struct IReadOnlyCollection_1_System_Linq_Expressions_ParameterExpression___Class *klass; + MonitorData *monitor; +}; + +struct IReadOnlyCollection_1_System_Linq_Expressions_ParameterExpression___VTable { + VirtualInvokeData get_Count; +}; + +struct IReadOnlyCollection_1_System_Linq_Expressions_ParameterExpression___StaticFields { +}; + +struct IReadOnlyCollection_1_System_Linq_Expressions_ParameterExpression___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IReadOnlyCollection_1_System_Linq_Expressions_ParameterExpression___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IReadOnlyCollection_1_System_Linq_Expressions_ParameterExpression___VTable vtable; +}; + +struct EqualityComparer_1_UnityEngine_UIElements_VisualTreeAsset_ { + struct EqualityComparer_1_UnityEngine_UIElements_VisualTreeAsset___Class *klass; + MonitorData *monitor; +}; + +struct EqualityComparer_1_UnityEngine_UIElements_VisualTreeAsset___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_IEqualityComparer_Equals; + VirtualInvokeData System_Collections_IEqualityComparer_GetHashCode; + VirtualInvokeData Equals_1; + VirtualInvokeData GetHashCode_1; + VirtualInvokeData __unknown; + VirtualInvokeData __unknown_1; + VirtualInvokeData IndexOf; + VirtualInvokeData LastIndexOf; +}; + +struct EqualityComparer_1_UnityEngine_UIElements_VisualTreeAsset___StaticFields { + struct EqualityComparer_1_UnityEngine_UIElements_VisualTreeAsset_ *defaultComparer; +}; + +struct EqualityComparer_1_UnityEngine_UIElements_VisualTreeAsset___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EqualityComparer_1_UnityEngine_UIElements_VisualTreeAsset___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EqualityComparer_1_UnityEngine_UIElements_VisualTreeAsset___VTable vtable; +}; + +struct EqualityComparer_1_Dictionary_2_System_String_UnityEngine_UIElements_VisualElement_ { + struct EqualityComparer_1_Dictionary_2_System_String_UnityEngine_UIElements_VisualElement___Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_System_String_UnityEngine_UIElements_VisualElement___Array { + struct Dictionary_2_System_String_UnityEngine_UIElements_VisualElement___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Dictionary_2_System_String_UnityEngine_UIElements_VisualElement_ *vector[32]; +}; + +struct Dictionary_2_System_String_UnityEngine_UIElements_VisualElement___Array__VTable { +}; + +struct Dictionary_2_System_String_UnityEngine_UIElements_VisualElement___Array__StaticFields { +}; + +struct Dictionary_2_System_String_UnityEngine_UIElements_VisualElement___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_System_String_UnityEngine_UIElements_VisualElement___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_System_String_UnityEngine_UIElements_VisualElement___Array__VTable vtable; +}; + +struct EqualityComparer_1_Dictionary_2_System_String_UnityEngine_UIElements_VisualElement___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_IEqualityComparer_Equals; + VirtualInvokeData System_Collections_IEqualityComparer_GetHashCode; + VirtualInvokeData Equals_1; + VirtualInvokeData GetHashCode_1; + VirtualInvokeData __unknown; + VirtualInvokeData __unknown_1; + VirtualInvokeData IndexOf; + VirtualInvokeData LastIndexOf; +}; + +struct EqualityComparer_1_Dictionary_2_System_String_UnityEngine_UIElements_VisualElement___StaticFields { + struct EqualityComparer_1_Dictionary_2_System_String_UnityEngine_UIElements_VisualElement_ *defaultComparer; +}; + +struct EqualityComparer_1_Dictionary_2_System_String_UnityEngine_UIElements_VisualElement___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EqualityComparer_1_Dictionary_2_System_String_UnityEngine_UIElements_VisualElement___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EqualityComparer_1_Dictionary_2_System_String_UnityEngine_UIElements_VisualElement___VTable vtable; +}; + +struct ICollection_1_Rewired_Controller_CompoundElement_ { + struct ICollection_1_Rewired_Controller_CompoundElement___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_Rewired_Controller_CompoundElement___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_Rewired_Controller_CompoundElement___StaticFields { +}; + +struct ICollection_1_Rewired_Controller_CompoundElement___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_Rewired_Controller_CompoundElement___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_Rewired_Controller_CompoundElement___VTable vtable; +}; + +struct Comparison_1_UnityEngine_UIElements_VisualElementAsset___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Comparison_1_UnityEngine_UIElements_VisualElementAsset_ { + struct Comparison_1_UnityEngine_UIElements_VisualElementAsset___Class *klass; + MonitorData *monitor; + struct Comparison_1_UnityEngine_UIElements_VisualElementAsset___Fields fields; +}; + +struct Comparison_1_UnityEngine_UIElements_VisualElementAsset___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Comparison_1_UnityEngine_UIElements_VisualElementAsset___StaticFields { +}; + +struct Comparison_1_UnityEngine_UIElements_VisualElementAsset___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Comparison_1_UnityEngine_UIElements_VisualElementAsset___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Comparison_1_UnityEngine_UIElements_VisualElementAsset___VTable vtable; +}; + +struct __declspec(align(8)) List_1_Rewired_Controller_Element___Fields { + struct Controller_Element__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Rewired_Controller_Element_ { + struct List_1_Rewired_Controller_Element___Class *klass; + MonitorData *monitor; + struct List_1_Rewired_Controller_Element___Fields fields; +}; + +struct List_1_Rewired_Controller_Element___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_Rewired_Controller_Element___StaticFields { + struct Controller_Element__Array *s_emptyArray; +}; + +struct List_1_Rewired_Controller_Element___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Rewired_Controller_Element___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Rewired_Controller_Element___VTable vtable; +}; + +struct __declspec(align(8)) List_1_Rewired_Controller_CompoundElement___Fields { + struct Controller_CompoundElement__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Rewired_Controller_CompoundElement_ { + struct List_1_Rewired_Controller_CompoundElement___Class *klass; + MonitorData *monitor; + struct List_1_Rewired_Controller_CompoundElement___Fields fields; +}; + +struct List_1_Rewired_Controller_CompoundElement___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_Rewired_Controller_CompoundElement___StaticFields { + struct Controller_CompoundElement__Array *s_emptyArray; +}; + +struct List_1_Rewired_Controller_CompoundElement___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Rewired_Controller_CompoundElement___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Rewired_Controller_CompoundElement___VTable vtable; +}; + +struct ICollection_1_Rewired_Controller_Element_ { + struct ICollection_1_Rewired_Controller_Element___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_Rewired_Controller_Element___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_Rewired_Controller_Element___StaticFields { +}; + +struct ICollection_1_Rewired_Controller_Element___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_Rewired_Controller_Element___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_Rewired_Controller_Element___VTable vtable; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_IUxmlFactory_ { + struct List_1_UnityEngine_UIElements_IUxmlFactory_ *_list; + int32_t _index; + int32_t _version; + struct IUxmlFactory *_current; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_IUxmlFactory___Boxed { + struct List_1_T_Enumerator_UnityEngine_UIElements_IUxmlFactory___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_UnityEngine_UIElements_IUxmlFactory_ fields; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_IUxmlFactory___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_IUxmlFactory___StaticFields { +}; + +struct List_1_T_Enumerator_UnityEngine_UIElements_IUxmlFactory___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_UnityEngine_UIElements_IUxmlFactory___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_UnityEngine_UIElements_IUxmlFactory___VTable vtable; +}; + +struct IEnumerable_1_f_AnonymousType0_2_ { + struct IEnumerable_1_f_AnonymousType0_2___Class *klass; + MonitorData *monitor; +}; + +struct Func_2_f_AnonymousType0_2_Boolean__1__Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_2_f_AnonymousType0_2_Boolean__1 { + struct Func_2_f_AnonymousType0_2_Boolean__1__Class *klass; + MonitorData *monitor; + struct Func_2_f_AnonymousType0_2_Boolean__1__Fields fields; +}; + +struct IEnumerable_1_f_AnonymousType0_2___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_f_AnonymousType0_2___StaticFields { +}; + +struct IEnumerable_1_f_AnonymousType0_2___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_f_AnonymousType0_2___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_f_AnonymousType0_2___VTable vtable; +}; + +struct Func_2_f_AnonymousType0_2_Boolean__1__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_2_f_AnonymousType0_2_Boolean__1__StaticFields { +}; + +struct Func_2_f_AnonymousType0_2_Boolean__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_2_f_AnonymousType0_2_Boolean__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_2_f_AnonymousType0_2_Boolean__1__VTable vtable; +}; + +struct IEnumerable_1_List_1_UnityEngine_Vector3_ { + struct IEnumerable_1_List_1_UnityEngine_Vector3___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_List_1_UnityEngine_Vector3___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_List_1_UnityEngine_Vector3___StaticFields { +}; + +struct IEnumerable_1_List_1_UnityEngine_Vector3___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_List_1_UnityEngine_Vector3___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_List_1_UnityEngine_Vector3___VTable vtable; +}; + +struct _f_AnonymousType0_2_System_Collections_Generic_List_1_System_Int32___Array { + struct _f_AnonymousType0_2_System_Collections_Generic_List_1_System_Int32___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct _f_AnonymousType0_2_System_Collections_Generic_List_1_System_Int32_ *vector[32]; +}; + +struct _f_AnonymousType0_2_System_Collections_Generic_List_1_System_Int32___Array__VTable { +}; + +struct _f_AnonymousType0_2_System_Collections_Generic_List_1_System_Int32___Array__StaticFields { +}; + +struct _f_AnonymousType0_2_System_Collections_Generic_List_1_System_Int32___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct _f_AnonymousType0_2_System_Collections_Generic_List_1_System_Int32___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct _f_AnonymousType0_2_System_Collections_Generic_List_1_System_Int32___Array__VTable vtable; +}; + +struct __declspec(align(8)) ReadOnlyCollection_1_Rewired_ControllerElementIdentifier___Fields { + struct IList_1_Rewired_ControllerElementIdentifier_ *list; + struct Object *_syncRoot; +}; + +struct ReadOnlyCollection_1_Rewired_ControllerElementIdentifier_ { + struct ReadOnlyCollection_1_Rewired_ControllerElementIdentifier___Class *klass; + MonitorData *monitor; + struct ReadOnlyCollection_1_Rewired_ControllerElementIdentifier___Fields fields; +}; + +struct ReadOnlyCollection_1_Rewired_ControllerElementIdentifier___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_Generic_IList_T__get_Item; + VirtualInvokeData System_Collections_Generic_IList_T__set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData System_Collections_Generic_IList_T__Insert; + VirtualInvokeData System_Collections_Generic_IList_T__RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_T__Add; + VirtualInvokeData System_Collections_Generic_ICollection_T__Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_T__Remove; + VirtualInvokeData GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData System_Collections_IList_Clear; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData System_Collections_IList_RemoveAt; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item; + VirtualInvokeData get_Count_2; +}; + +struct ReadOnlyCollection_1_Rewired_ControllerElementIdentifier___StaticFields { +}; + +struct ReadOnlyCollection_1_Rewired_ControllerElementIdentifier___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ReadOnlyCollection_1_Rewired_ControllerElementIdentifier___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ReadOnlyCollection_1_Rewired_ControllerElementIdentifier___VTable vtable; +}; + +struct VisualElementFactoryRegistry { + struct VisualElementFactoryRegistry__Class *klass; + MonitorData *monitor; +}; + +struct VisualElementFactoryRegistry__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct VisualElementFactoryRegistry__StaticFields { + struct Dictionary_2_System_String_List_1_UnityEngine_UIElements_IUxmlFactory_ *s_Factories; +}; + +struct VisualElementFactoryRegistry__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct VisualElementFactoryRegistry__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct VisualElementFactoryRegistry__VTable vtable; +}; + +struct Predicate_1_CrowPerchController___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Predicate_1_CrowPerchController_ { + struct Predicate_1_CrowPerchController___Class *klass; + MonitorData *monitor; + struct Predicate_1_CrowPerchController___Fields fields; +}; + +struct Predicate_1_CrowPerchController___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Predicate_1_CrowPerchController___StaticFields { +}; + +struct Predicate_1_CrowPerchController___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Predicate_1_CrowPerchController___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Predicate_1_CrowPerchController___VTable vtable; +}; + +struct __declspec(align(8)) List_1_CrowPerchController___Fields { + struct CrowPerchController__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_CrowPerchController_ { + struct List_1_CrowPerchController___Class *klass; + MonitorData *monitor; + struct List_1_CrowPerchController___Fields fields; +}; + +struct IEnumerator_1_CrowPerchController_ { + struct IEnumerator_1_CrowPerchController___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerator_1_CrowPerchController___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_CrowPerchController___StaticFields { +}; + +struct IEnumerator_1_CrowPerchController___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_CrowPerchController___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_CrowPerchController___VTable vtable; +}; + +struct List_1_CrowPerchController___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_CrowPerchController___StaticFields { + struct CrowPerchController__Array *s_emptyArray; +}; + +struct List_1_CrowPerchController___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_CrowPerchController___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_CrowPerchController___VTable vtable; +}; + +struct IEnumerable_1_CrowPerchController_ { + struct IEnumerable_1_CrowPerchController___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_CrowPerchController___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_CrowPerchController___StaticFields { +}; + +struct IEnumerable_1_CrowPerchController___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_CrowPerchController___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_CrowPerchController___VTable vtable; +}; + +struct Predicate_1_System_Collections_Generic_List_1___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Predicate_1_System_Collections_Generic_List_1_ { + struct Predicate_1_System_Collections_Generic_List_1___Class *klass; + MonitorData *monitor; + struct Predicate_1_System_Collections_Generic_List_1___Fields fields; +}; + +struct Predicate_1_System_Collections_Generic_List_1___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Predicate_1_System_Collections_Generic_List_1___StaticFields { +}; + +struct Predicate_1_System_Collections_Generic_List_1___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Predicate_1_System_Collections_Generic_List_1___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Predicate_1_System_Collections_Generic_List_1___VTable vtable; +}; + +struct IEnumerable_1_InnHoleController_ { + struct IEnumerable_1_InnHoleController___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_InnHoleController___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_InnHoleController___StaticFields { +}; + +struct IEnumerable_1_InnHoleController___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_InnHoleController___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_InnHoleController___VTable vtable; +}; + +struct ByReference_1_String_ { + void *_value; +}; + +struct ByReference_1_String___Boxed { + struct ByReference_1_String___Class *klass; + MonitorData *monitor; + struct ByReference_1_String_ fields; +}; + +struct Span_1_String_ { + struct ByReference_1_String_ _pointer; + int32_t _length; +}; + +struct Span_1_String___Boxed { + struct Span_1_String___Class *klass; + MonitorData *monitor; + struct Span_1_String_ fields; +}; + +struct ByReference_1_String___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ByReference_1_String___StaticFields { +}; + +struct ByReference_1_String___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ByReference_1_String___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ByReference_1_String___VTable vtable; +}; + +struct Span_1_String___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Span_1_String___StaticFields { +}; + +struct Span_1_String___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Span_1_String___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Span_1_String___VTable vtable; +}; + +struct Consts { + struct Consts__Class *klass; + MonitorData *monitor; +}; + +struct Consts__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Consts__StaticFields { + struct PidVid__Array *questionablePidVids; + struct Int32__Array *questionableVIDs; + struct Guid joystickGuid_unknownController; + struct Guid joystickGuid_appleMFiController; + struct Guid joystickGuid_standardizedGamepad; + struct Guid joystickGuid_SonyDualShock4; + struct Guid joystickGuid_SonyPS4AimController; + struct Guid joystickGuid_SonyPS4Drums; + struct Guid joystickGuid_SonyPS4FlightStick; + struct Guid joystickGuid_SonyPS4Guitar; + struct Guid joystickGuid_SonyPS4SteeringWheel; + struct Guid joystickGuid_SonyDualSense; + struct Guid hardwareTypeGuid_universalKeyboard; + struct Guid hardwareTypeGuid_universalMouse; + struct ReadOnlyCollection_1_Rewired_ControllerElementIdentifier_ *hJOETofvsOyMASchMcHYZapYdCZTA; + struct ReadOnlyCollection_1_Rewired_ControllerElementIdentifier_ *ucXFZwZUKWRQKjstBUnNOGdESKUO; + struct IList_1_System_String_ *mouseAxisUnityNames; + struct String__Array *yMIfuAGTTwmaQHfaYUdreAUiyuZQA; + struct IList_1_System_String_ *mouseButtonUnityNames; + struct String__Array *VXtDOeCrZJFqbVTICqQhcceGJnkN; + struct IList_1_System_String_ *keyboardKeyNames; + struct String__Array *GgPlWbdGTZJffddmWDTeCjftcieC; + struct IList_1_System_Int32_ *keyboardKeyValues; + struct Int32__Array *_keyboardKeyValues; + struct IList_1_System_String_ *modifierKeyShortNames; + struct String__Array *vTtdWNnMwTgKunefPRxcMREBDQTy; + struct IList_1_Rewired_PidVid_ *pidVids_sony_dualShock4; + struct PidVid__Array *dfxAWZWMCqbJQIeSDtmUEoqenkhk; + struct IList_1_System_String_ *productNames_sony_dualShock4; + struct String__Array *oUhPqgkolEFOkqokfjrdIyPFLKYx; + struct ControllerElementIdentifier__Array *FMgRWYnoWpRXIBXWOqppJGporHEG; +}; + +struct Consts__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Consts__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Consts__VTable vtable; +}; + +struct IList_1_InnHoleController_ { + struct IList_1_InnHoleController___Class *klass; + MonitorData *monitor; +}; + +struct IList_1_InnHoleController___VTable { + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; +}; + +struct IList_1_InnHoleController___StaticFields { +}; + +struct IList_1_InnHoleController___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IList_1_InnHoleController___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IList_1_InnHoleController___VTable vtable; +}; + +struct ThreadSafeUnityInput { + struct ThreadSafeUnityInput__Class *klass; + MonitorData *monitor; +}; + +struct ThreadSafeUnityInput__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ThreadSafeUnityInput__StaticFields { + struct ThreadSafeUnityInput_Mouse *VqMuXiKZrwwSKIaOlYVDHVTroZIq; + struct ThreadSafeUnityInput_Keyboard *yDWNqFyMCzcCmybzWGtXvUETfsPe; +}; + +struct ThreadSafeUnityInput__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ThreadSafeUnityInput__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ThreadSafeUnityInput__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_SystemLanguage_System_String_ { + int32_t hashCode; + int32_t next; + #if defined(_CPLUSPLUS_) + SystemLanguage__Enum key; + #else + int32_t key; + #endif + struct String *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_SystemLanguage_System_String___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_SystemLanguage_System_String___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_SystemLanguage_System_String_ fields; +}; + +struct __declspec(align(8)) Dictionary_2_UnityEngine_SystemLanguage_System_String___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_SystemLanguage_System_String___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_UnityEngine_SystemLanguage_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_SystemLanguage_System_String_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_SystemLanguage_System_String_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_UnityEngine_SystemLanguage_System_String_ { + struct Dictionary_2_UnityEngine_SystemLanguage_System_String___Class *klass; + MonitorData *monitor; + struct Dictionary_2_UnityEngine_SystemLanguage_System_String___Fields fields; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_SystemLanguage_System_String___Array { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_SystemLanguage_System_String___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_SystemLanguage_System_String_ vector[32]; +}; + +struct IEqualityComparer_1_UnityEngine_SystemLanguage_ { + struct IEqualityComparer_1_UnityEngine_SystemLanguage___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_SystemLanguage_System_String___Fields { + struct Dictionary_2_UnityEngine_SystemLanguage_System_String_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_SystemLanguage_System_String_ { + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_SystemLanguage_System_String___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_SystemLanguage_System_String___Fields fields; +}; + +struct SystemLanguage__Enum__Array { + struct SystemLanguage__Enum__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + SystemLanguage__Enum vector[32]; +}; + +struct IEnumerator_1_UnityEngine_SystemLanguage_ { + struct IEnumerator_1_UnityEngine_SystemLanguage___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_SystemLanguage_System_String___Fields { + struct Dictionary_2_UnityEngine_SystemLanguage_System_String_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_SystemLanguage_System_String_ { + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_SystemLanguage_System_String___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_SystemLanguage_System_String___Fields fields; +}; + +struct ICollection_1_UnityEngine_SystemLanguage_ { + struct ICollection_1_UnityEngine_SystemLanguage___Class *klass; + MonitorData *monitor; +}; + +struct KeyValuePair_2_UnityEngine_SystemLanguage_System_String_ { + #if defined(_CPLUSPLUS_) + SystemLanguage__Enum key; + #else + int32_t key; + #endif + struct String *value; +}; + +struct KeyValuePair_2_UnityEngine_SystemLanguage_System_String___Boxed { + struct KeyValuePair_2_UnityEngine_SystemLanguage_System_String___Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_UnityEngine_SystemLanguage_System_String_ fields; +}; + +struct KeyValuePair_2_UnityEngine_SystemLanguage_System_String___Array { + struct KeyValuePair_2_UnityEngine_SystemLanguage_System_String___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct KeyValuePair_2_UnityEngine_SystemLanguage_System_String_ vector[32]; +}; + +struct IEnumerator_1_KeyValuePair_2_UnityEngine_SystemLanguage_System_String_ { + struct IEnumerator_1_KeyValuePair_2_UnityEngine_SystemLanguage_System_String___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_UnityEngine_SystemLanguage_ { + struct IEnumerable_1_UnityEngine_SystemLanguage___Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_SystemLanguage_System_String___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_SystemLanguage_System_String___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_SystemLanguage_System_String___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_SystemLanguage_System_String___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_SystemLanguage_System_String___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_SystemLanguage_System_String___Array__VTable { +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_SystemLanguage_System_String___Array__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_SystemLanguage_System_String___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_SystemLanguage_System_String___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_SystemLanguage_System_String___Array__VTable vtable; +}; + +struct IEqualityComparer_1_UnityEngine_SystemLanguage___VTable { + VirtualInvokeData Equals; + VirtualInvokeData GetHashCode; +}; + +struct IEqualityComparer_1_UnityEngine_SystemLanguage___StaticFields { +}; + +struct IEqualityComparer_1_UnityEngine_SystemLanguage___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEqualityComparer_1_UnityEngine_SystemLanguage___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEqualityComparer_1_UnityEngine_SystemLanguage___VTable vtable; +}; + +struct SystemLanguage__Enum__Array__VTable { +}; + +struct SystemLanguage__Enum__Array__StaticFields { +}; + +struct SystemLanguage__Enum__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SystemLanguage__Enum__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SystemLanguage__Enum__Array__VTable vtable; +}; + +struct IEnumerator_1_UnityEngine_SystemLanguage___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_UnityEngine_SystemLanguage___StaticFields { +}; + +struct IEnumerator_1_UnityEngine_SystemLanguage___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_UnityEngine_SystemLanguage___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_UnityEngine_SystemLanguage___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_SystemLanguage_System_String___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TKey__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_SystemLanguage_System_String___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_SystemLanguage_System_String___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_SystemLanguage_System_String___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_SystemLanguage_System_String___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_SystemLanguage_System_String___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TValue__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_SystemLanguage_System_String___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_SystemLanguage_System_String___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_SystemLanguage_System_String___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_SystemLanguage_System_String___VTable vtable; +}; + +struct ICollection_1_UnityEngine_SystemLanguage___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_UnityEngine_SystemLanguage___StaticFields { +}; + +struct ICollection_1_UnityEngine_SystemLanguage___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_UnityEngine_SystemLanguage___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_UnityEngine_SystemLanguage___VTable vtable; +}; + +struct KeyValuePair_2_UnityEngine_SystemLanguage_System_String___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct KeyValuePair_2_UnityEngine_SystemLanguage_System_String___StaticFields { +}; + +struct KeyValuePair_2_UnityEngine_SystemLanguage_System_String___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_UnityEngine_SystemLanguage_System_String___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_UnityEngine_SystemLanguage_System_String___VTable vtable; +}; + +struct KeyValuePair_2_UnityEngine_SystemLanguage_System_String___Array__VTable { +}; + +struct KeyValuePair_2_UnityEngine_SystemLanguage_System_String___Array__StaticFields { +}; + +struct KeyValuePair_2_UnityEngine_SystemLanguage_System_String___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_UnityEngine_SystemLanguage_System_String___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_UnityEngine_SystemLanguage_System_String___Array__VTable vtable; +}; + +struct IEnumerator_1_KeyValuePair_2_UnityEngine_SystemLanguage_System_String___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_KeyValuePair_2_UnityEngine_SystemLanguage_System_String___StaticFields { +}; + +struct IEnumerator_1_KeyValuePair_2_UnityEngine_SystemLanguage_System_String___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_KeyValuePair_2_UnityEngine_SystemLanguage_System_String___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_KeyValuePair_2_UnityEngine_SystemLanguage_System_String___VTable vtable; +}; + +struct IEnumerable_1_UnityEngine_SystemLanguage___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_UnityEngine_SystemLanguage___StaticFields { +}; + +struct IEnumerable_1_UnityEngine_SystemLanguage___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_UnityEngine_SystemLanguage___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_UnityEngine_SystemLanguage___VTable vtable; +}; + +struct Dictionary_2_UnityEngine_SystemLanguage_System_String___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Values; + VirtualInvokeData ContainsKey; + VirtualInvokeData Add; + VirtualInvokeData Remove; + VirtualInvokeData TryGetValue; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add; + VirtualInvokeData Clear; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_get_Item; + VirtualInvokeData System_Collections_IDictionary_set_Item; + VirtualInvokeData System_Collections_IDictionary_get_Keys; + VirtualInvokeData System_Collections_IDictionary_get_Values; + VirtualInvokeData System_Collections_IDictionary_Contains; + VirtualInvokeData System_Collections_IDictionary_Add; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IDictionary_get_IsReadOnly; + VirtualInvokeData System_Collections_IDictionary_get_IsFixedSize; + VirtualInvokeData System_Collections_IDictionary_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_Remove; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData TryGetValue_1; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Values; + VirtualInvokeData get_Count_2; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct Dictionary_2_UnityEngine_SystemLanguage_System_String___StaticFields { +}; + +struct Dictionary_2_UnityEngine_SystemLanguage_System_String___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_UnityEngine_SystemLanguage_System_String___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_UnityEngine_SystemLanguage_System_String___VTable vtable; +}; + +struct __declspec(align(8)) EnumNameValueCache_1_Rewired_Config_UpdateLoopSetting___Fields { + struct ADictionary_2_System_String_Rewired_Config_UpdateLoopSetting_ *HRepGReAIEsoNPmmQJjJkNDaCqNQ; + struct String__Array *ytwblEAqMXjrsYMsPoXVFeUDlCRvB; + struct Int64__Array *MkNUoEscgLDJudoJnEpRNionOGbtA; +}; + +struct EnumNameValueCache_1_Rewired_Config_UpdateLoopSetting_ { + struct EnumNameValueCache_1_Rewired_Config_UpdateLoopSetting___Class *klass; + MonitorData *monitor; + struct EnumNameValueCache_1_Rewired_Config_UpdateLoopSetting___Fields fields; +}; + +struct ADictionary_2_TKey_TValue_Entry_System_String_Rewired_Config_UpdateLoopSetting_ { + int32_t hashCode; + int32_t next; + struct String *key; + #if defined(_CPLUSPLUS_) + UpdateLoopSetting__Enum value; + #else + int32_t value; + #endif +}; + +struct ADictionary_2_TKey_TValue_Entry_System_String_Rewired_Config_UpdateLoopSetting___Boxed { + struct ADictionary_2_TKey_TValue_Entry_System_String_Rewired_Config_UpdateLoopSetting___Class *klass; + MonitorData *monitor; + struct ADictionary_2_TKey_TValue_Entry_System_String_Rewired_Config_UpdateLoopSetting_ fields; +}; + +struct __declspec(align(8)) ADictionary_2_System_String_Rewired_Config_UpdateLoopSetting___Fields { + struct Int32__Array *pGawVZUvYULemJqagZXhjOtPTktC; + struct ADictionary_2_TKey_TValue_Entry_System_String_Rewired_Config_UpdateLoopSetting___Array *_entries; + int32_t _count; + int32_t vyAzFNcXzBhuRiyIKSwxhSukcXQu; + int32_t dxjNNYwNaTMrFtBBJGlTwOTQnNdM; + int32_t CBTAQSLcGRnkpKeqaSeWoZaEAUfW; + int32_t EkWgFNqhLgUXRLcUaadVpobJSaCV; + struct IEqualityComparer_1_System_String_ *NylqesVEsefNvbEERVgNodFTCtQxA; + struct IEqualityComparer_1_Rewired_Config_UpdateLoopSetting_ *veySpWxCboEPIajZIllMwEGmhBafA; + struct ADictionary_2_TKey_TValue_KeyCollection_System_String_Rewired_Config_UpdateLoopSetting_ *QxjKXIsVQmgTomnAmsAUfBSkKooO; + struct ADictionary_2_TKey_TValue_ValueCollection_System_String_Rewired_Config_UpdateLoopSetting_ *xhxfwADZJNFdJNIyIUlstmkgFnkm; + struct Object *eCrDVxsFDCrYCyMPHlSFBIZwopNk; +}; + +struct ADictionary_2_System_String_Rewired_Config_UpdateLoopSetting_ { + struct ADictionary_2_System_String_Rewired_Config_UpdateLoopSetting___Class *klass; + MonitorData *monitor; + struct ADictionary_2_System_String_Rewired_Config_UpdateLoopSetting___Fields fields; +}; + +struct ADictionary_2_TKey_TValue_Entry_System_String_Rewired_Config_UpdateLoopSetting___Array { + struct ADictionary_2_TKey_TValue_Entry_System_String_Rewired_Config_UpdateLoopSetting___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct ADictionary_2_TKey_TValue_Entry_System_String_Rewired_Config_UpdateLoopSetting_ vector[32]; +}; + +struct IEqualityComparer_1_Rewired_Config_UpdateLoopSetting_ { + struct IEqualityComparer_1_Rewired_Config_UpdateLoopSetting___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) ADictionary_2_TKey_TValue_KeyCollection_System_String_Rewired_Config_UpdateLoopSetting___Fields { + struct ADictionary_2_System_String_Rewired_Config_UpdateLoopSetting_ *EguMivaEnQbDiOtSyTkITmcWhcfk; +}; + +struct ADictionary_2_TKey_TValue_KeyCollection_System_String_Rewired_Config_UpdateLoopSetting_ { + struct ADictionary_2_TKey_TValue_KeyCollection_System_String_Rewired_Config_UpdateLoopSetting___Class *klass; + MonitorData *monitor; + struct ADictionary_2_TKey_TValue_KeyCollection_System_String_Rewired_Config_UpdateLoopSetting___Fields fields; +}; + +struct __declspec(align(8)) ADictionary_2_TKey_TValue_ValueCollection_System_String_Rewired_Config_UpdateLoopSetting___Fields { + struct ADictionary_2_System_String_Rewired_Config_UpdateLoopSetting_ *EguMivaEnQbDiOtSyTkITmcWhcfk; +}; + +struct ADictionary_2_TKey_TValue_ValueCollection_System_String_Rewired_Config_UpdateLoopSetting_ { + struct ADictionary_2_TKey_TValue_ValueCollection_System_String_Rewired_Config_UpdateLoopSetting___Class *klass; + MonitorData *monitor; + struct ADictionary_2_TKey_TValue_ValueCollection_System_String_Rewired_Config_UpdateLoopSetting___Fields fields; +}; + +struct UpdateLoopSetting__Enum__Array { + struct UpdateLoopSetting__Enum__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + UpdateLoopSetting__Enum vector[32]; +}; + +struct IEnumerator_1_Rewired_Config_UpdateLoopSetting_ { + struct IEnumerator_1_Rewired_Config_UpdateLoopSetting___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_Rewired_Config_UpdateLoopSetting_ { + struct ICollection_1_Rewired_Config_UpdateLoopSetting___Class *klass; + MonitorData *monitor; +}; + +struct KeyValuePair_2_System_String_Rewired_Config_UpdateLoopSetting_ { + struct String *key; + #if defined(_CPLUSPLUS_) + UpdateLoopSetting__Enum value; + #else + int32_t value; + #endif +}; + +struct KeyValuePair_2_System_String_Rewired_Config_UpdateLoopSetting___Boxed { + struct KeyValuePair_2_System_String_Rewired_Config_UpdateLoopSetting___Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_System_String_Rewired_Config_UpdateLoopSetting_ fields; +}; + +struct KeyValuePair_2_System_String_Rewired_Config_UpdateLoopSetting___Array { + struct KeyValuePair_2_System_String_Rewired_Config_UpdateLoopSetting___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct KeyValuePair_2_System_String_Rewired_Config_UpdateLoopSetting_ vector[32]; +}; + +struct IEnumerator_1_KeyValuePair_2_System_String_Rewired_Config_UpdateLoopSetting_ { + struct IEnumerator_1_KeyValuePair_2_System_String_Rewired_Config_UpdateLoopSetting___Class *klass; + MonitorData *monitor; +}; + +struct ADictionary_2_TKey_TValue_Entry_System_String_Rewired_Config_UpdateLoopSetting___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ADictionary_2_TKey_TValue_Entry_System_String_Rewired_Config_UpdateLoopSetting___StaticFields { +}; + +struct ADictionary_2_TKey_TValue_Entry_System_String_Rewired_Config_UpdateLoopSetting___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ADictionary_2_TKey_TValue_Entry_System_String_Rewired_Config_UpdateLoopSetting___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ADictionary_2_TKey_TValue_Entry_System_String_Rewired_Config_UpdateLoopSetting___VTable vtable; +}; + +struct ADictionary_2_TKey_TValue_Entry_System_String_Rewired_Config_UpdateLoopSetting___Array__VTable { +}; + +struct ADictionary_2_TKey_TValue_Entry_System_String_Rewired_Config_UpdateLoopSetting___Array__StaticFields { +}; + +struct ADictionary_2_TKey_TValue_Entry_System_String_Rewired_Config_UpdateLoopSetting___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ADictionary_2_TKey_TValue_Entry_System_String_Rewired_Config_UpdateLoopSetting___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ADictionary_2_TKey_TValue_Entry_System_String_Rewired_Config_UpdateLoopSetting___Array__VTable vtable; +}; + +struct IEqualityComparer_1_Rewired_Config_UpdateLoopSetting___VTable { + VirtualInvokeData Equals; + VirtualInvokeData GetHashCode; +}; + +struct IEqualityComparer_1_Rewired_Config_UpdateLoopSetting___StaticFields { +}; + +struct IEqualityComparer_1_Rewired_Config_UpdateLoopSetting___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEqualityComparer_1_Rewired_Config_UpdateLoopSetting___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEqualityComparer_1_Rewired_Config_UpdateLoopSetting___VTable vtable; +}; + +struct ADictionary_2_TKey_TValue_KeyCollection_System_String_Rewired_Config_UpdateLoopSetting___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_Generic_IEnumerable_TKey__GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Remove; +}; + +struct ADictionary_2_TKey_TValue_KeyCollection_System_String_Rewired_Config_UpdateLoopSetting___StaticFields { +}; + +struct ADictionary_2_TKey_TValue_KeyCollection_System_String_Rewired_Config_UpdateLoopSetting___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ADictionary_2_TKey_TValue_KeyCollection_System_String_Rewired_Config_UpdateLoopSetting___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ADictionary_2_TKey_TValue_KeyCollection_System_String_Rewired_Config_UpdateLoopSetting___VTable vtable; +}; + +struct UpdateLoopSetting__Enum__Array__VTable { +}; + +struct UpdateLoopSetting__Enum__Array__StaticFields { +}; + +struct UpdateLoopSetting__Enum__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UpdateLoopSetting__Enum__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UpdateLoopSetting__Enum__Array__VTable vtable; +}; + +struct IEnumerator_1_Rewired_Config_UpdateLoopSetting___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_Rewired_Config_UpdateLoopSetting___StaticFields { +}; + +struct IEnumerator_1_Rewired_Config_UpdateLoopSetting___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_Rewired_Config_UpdateLoopSetting___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_Rewired_Config_UpdateLoopSetting___VTable vtable; +}; + +struct ADictionary_2_TKey_TValue_ValueCollection_System_String_Rewired_Config_UpdateLoopSetting___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TValue__GetEnumerator; +}; + +struct ADictionary_2_TKey_TValue_ValueCollection_System_String_Rewired_Config_UpdateLoopSetting___StaticFields { +}; + +struct ADictionary_2_TKey_TValue_ValueCollection_System_String_Rewired_Config_UpdateLoopSetting___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ADictionary_2_TKey_TValue_ValueCollection_System_String_Rewired_Config_UpdateLoopSetting___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ADictionary_2_TKey_TValue_ValueCollection_System_String_Rewired_Config_UpdateLoopSetting___VTable vtable; +}; + +struct ICollection_1_Rewired_Config_UpdateLoopSetting___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_Rewired_Config_UpdateLoopSetting___StaticFields { +}; + +struct ICollection_1_Rewired_Config_UpdateLoopSetting___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_Rewired_Config_UpdateLoopSetting___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_Rewired_Config_UpdateLoopSetting___VTable vtable; +}; + +struct UpdateLoopSetting___VTable { +}; + +struct UpdateLoopSetting___StaticFields { +}; + +struct UpdateLoopSetting___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UpdateLoopSetting___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UpdateLoopSetting___VTable vtable; +}; + +struct KeyValuePair_2_System_String_Rewired_Config_UpdateLoopSetting___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct KeyValuePair_2_System_String_Rewired_Config_UpdateLoopSetting___StaticFields { +}; + +struct KeyValuePair_2_System_String_Rewired_Config_UpdateLoopSetting___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_String_Rewired_Config_UpdateLoopSetting___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_String_Rewired_Config_UpdateLoopSetting___VTable vtable; +}; + +struct KeyValuePair_2_System_String_Rewired_Config_UpdateLoopSetting___Array__VTable { +}; + +struct KeyValuePair_2_System_String_Rewired_Config_UpdateLoopSetting___Array__StaticFields { +}; + +struct KeyValuePair_2_System_String_Rewired_Config_UpdateLoopSetting___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_String_Rewired_Config_UpdateLoopSetting___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_String_Rewired_Config_UpdateLoopSetting___Array__VTable vtable; +}; + +struct IEnumerator_1_KeyValuePair_2_System_String_Rewired_Config_UpdateLoopSetting___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_KeyValuePair_2_System_String_Rewired_Config_UpdateLoopSetting___StaticFields { +}; + +struct IEnumerator_1_KeyValuePair_2_System_String_Rewired_Config_UpdateLoopSetting___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_KeyValuePair_2_System_String_Rewired_Config_UpdateLoopSetting___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_KeyValuePair_2_System_String_Rewired_Config_UpdateLoopSetting___VTable vtable; +}; + +struct ADictionary_2_System_String_Rewired_Config_UpdateLoopSetting___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_get_Item; + VirtualInvokeData System_Collections_IDictionary_set_Item; + VirtualInvokeData System_Collections_IDictionary_get_Keys; + VirtualInvokeData System_Collections_IDictionary_get_Values; + VirtualInvokeData System_Collections_IDictionary_Contains; + VirtualInvokeData System_Collections_IDictionary_Add; + VirtualInvokeData Clear; + VirtualInvokeData System_Collections_IDictionary_get_IsReadOnly; + VirtualInvokeData System_Collections_IDictionary_get_IsFixedSize; + VirtualInvokeData System_Collections_IDictionary_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_Remove; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Values; + VirtualInvokeData ContainsKey; + VirtualInvokeData Add; + VirtualInvokeData Remove; + VirtualInvokeData TryGetValue; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator; +}; + +struct ADictionary_2_System_String_Rewired_Config_UpdateLoopSetting___StaticFields { + bool VLcVFJVFcPaaDUGblaExYGvnwrxe; + bool xIKfsOJIjTIwpHguPisYhqZCSZBuA; +}; + +struct ADictionary_2_System_String_Rewired_Config_UpdateLoopSetting___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ADictionary_2_System_String_Rewired_Config_UpdateLoopSetting___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ADictionary_2_System_String_Rewired_Config_UpdateLoopSetting___VTable vtable; +}; + +struct EnumNameValueCache_1_Rewired_Config_UpdateLoopSetting___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct EnumNameValueCache_1_Rewired_Config_UpdateLoopSetting___StaticFields { + struct EnumNameValueCache_1_Rewired_Config_UpdateLoopSetting_ *tkVDDZwxWgvrqQSqIwneKCTQJoUX; +}; + +struct EnumNameValueCache_1_Rewired_Config_UpdateLoopSetting___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EnumNameValueCache_1_Rewired_Config_UpdateLoopSetting___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EnumNameValueCache_1_Rewired_Config_UpdateLoopSetting___VTable vtable; +}; + +struct __declspec(align(8)) EnumNameValueCache_1_Rewired_UpdateLoopType___Fields { + struct ADictionary_2_System_String_Rewired_UpdateLoopType_ *HRepGReAIEsoNPmmQJjJkNDaCqNQ; + struct String__Array *ytwblEAqMXjrsYMsPoXVFeUDlCRvB; + struct Int64__Array *MkNUoEscgLDJudoJnEpRNionOGbtA; +}; + +struct EnumNameValueCache_1_Rewired_UpdateLoopType_ { + struct EnumNameValueCache_1_Rewired_UpdateLoopType___Class *klass; + MonitorData *monitor; + struct EnumNameValueCache_1_Rewired_UpdateLoopType___Fields fields; +}; + +struct ADictionary_2_TKey_TValue_Entry_System_String_Rewired_UpdateLoopType_ { + int32_t hashCode; + int32_t next; + struct String *key; + #if defined(_CPLUSPLUS_) + UpdateLoopType__Enum value; + #else + int32_t value; + #endif +}; + +struct ADictionary_2_TKey_TValue_Entry_System_String_Rewired_UpdateLoopType___Boxed { + struct ADictionary_2_TKey_TValue_Entry_System_String_Rewired_UpdateLoopType___Class *klass; + MonitorData *monitor; + struct ADictionary_2_TKey_TValue_Entry_System_String_Rewired_UpdateLoopType_ fields; +}; + +struct __declspec(align(8)) ADictionary_2_System_String_Rewired_UpdateLoopType___Fields { + struct Int32__Array *pGawVZUvYULemJqagZXhjOtPTktC; + struct ADictionary_2_TKey_TValue_Entry_System_String_Rewired_UpdateLoopType___Array *_entries; + int32_t _count; + int32_t vyAzFNcXzBhuRiyIKSwxhSukcXQu; + int32_t dxjNNYwNaTMrFtBBJGlTwOTQnNdM; + int32_t CBTAQSLcGRnkpKeqaSeWoZaEAUfW; + int32_t EkWgFNqhLgUXRLcUaadVpobJSaCV; + struct IEqualityComparer_1_System_String_ *NylqesVEsefNvbEERVgNodFTCtQxA; + struct IEqualityComparer_1_Rewired_UpdateLoopType_ *veySpWxCboEPIajZIllMwEGmhBafA; + struct ADictionary_2_TKey_TValue_KeyCollection_System_String_Rewired_UpdateLoopType_ *QxjKXIsVQmgTomnAmsAUfBSkKooO; + struct ADictionary_2_TKey_TValue_ValueCollection_System_String_Rewired_UpdateLoopType_ *xhxfwADZJNFdJNIyIUlstmkgFnkm; + struct Object *eCrDVxsFDCrYCyMPHlSFBIZwopNk; +}; + +struct ADictionary_2_System_String_Rewired_UpdateLoopType_ { + struct ADictionary_2_System_String_Rewired_UpdateLoopType___Class *klass; + MonitorData *monitor; + struct ADictionary_2_System_String_Rewired_UpdateLoopType___Fields fields; +}; + +struct ADictionary_2_TKey_TValue_Entry_System_String_Rewired_UpdateLoopType___Array { + struct ADictionary_2_TKey_TValue_Entry_System_String_Rewired_UpdateLoopType___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct ADictionary_2_TKey_TValue_Entry_System_String_Rewired_UpdateLoopType_ vector[32]; +}; + +struct IEqualityComparer_1_Rewired_UpdateLoopType_ { + struct IEqualityComparer_1_Rewired_UpdateLoopType___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) ADictionary_2_TKey_TValue_KeyCollection_System_String_Rewired_UpdateLoopType___Fields { + struct ADictionary_2_System_String_Rewired_UpdateLoopType_ *EguMivaEnQbDiOtSyTkITmcWhcfk; +}; + +struct ADictionary_2_TKey_TValue_KeyCollection_System_String_Rewired_UpdateLoopType_ { + struct ADictionary_2_TKey_TValue_KeyCollection_System_String_Rewired_UpdateLoopType___Class *klass; + MonitorData *monitor; + struct ADictionary_2_TKey_TValue_KeyCollection_System_String_Rewired_UpdateLoopType___Fields fields; +}; + +struct __declspec(align(8)) ADictionary_2_TKey_TValue_ValueCollection_System_String_Rewired_UpdateLoopType___Fields { + struct ADictionary_2_System_String_Rewired_UpdateLoopType_ *EguMivaEnQbDiOtSyTkITmcWhcfk; +}; + +struct ADictionary_2_TKey_TValue_ValueCollection_System_String_Rewired_UpdateLoopType_ { + struct ADictionary_2_TKey_TValue_ValueCollection_System_String_Rewired_UpdateLoopType___Class *klass; + MonitorData *monitor; + struct ADictionary_2_TKey_TValue_ValueCollection_System_String_Rewired_UpdateLoopType___Fields fields; +}; + +struct ICollection_1_Rewired_UpdateLoopType_ { + struct ICollection_1_Rewired_UpdateLoopType___Class *klass; + MonitorData *monitor; +}; + +struct KeyValuePair_2_System_String_Rewired_UpdateLoopType_ { + struct String *key; + #if defined(_CPLUSPLUS_) + UpdateLoopType__Enum value; + #else + int32_t value; + #endif +}; + +struct KeyValuePair_2_System_String_Rewired_UpdateLoopType___Boxed { + struct KeyValuePair_2_System_String_Rewired_UpdateLoopType___Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_System_String_Rewired_UpdateLoopType_ fields; +}; + +struct KeyValuePair_2_System_String_Rewired_UpdateLoopType___Array { + struct KeyValuePair_2_System_String_Rewired_UpdateLoopType___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct KeyValuePair_2_System_String_Rewired_UpdateLoopType_ vector[32]; +}; + +struct IEnumerator_1_KeyValuePair_2_System_String_Rewired_UpdateLoopType_ { + struct IEnumerator_1_KeyValuePair_2_System_String_Rewired_UpdateLoopType___Class *klass; + MonitorData *monitor; +}; + +struct ADictionary_2_TKey_TValue_Entry_System_String_Rewired_UpdateLoopType___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ADictionary_2_TKey_TValue_Entry_System_String_Rewired_UpdateLoopType___StaticFields { +}; + +struct ADictionary_2_TKey_TValue_Entry_System_String_Rewired_UpdateLoopType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ADictionary_2_TKey_TValue_Entry_System_String_Rewired_UpdateLoopType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ADictionary_2_TKey_TValue_Entry_System_String_Rewired_UpdateLoopType___VTable vtable; +}; + +struct ADictionary_2_TKey_TValue_Entry_System_String_Rewired_UpdateLoopType___Array__VTable { +}; + +struct ADictionary_2_TKey_TValue_Entry_System_String_Rewired_UpdateLoopType___Array__StaticFields { +}; + +struct ADictionary_2_TKey_TValue_Entry_System_String_Rewired_UpdateLoopType___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ADictionary_2_TKey_TValue_Entry_System_String_Rewired_UpdateLoopType___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ADictionary_2_TKey_TValue_Entry_System_String_Rewired_UpdateLoopType___Array__VTable vtable; +}; + +struct IEqualityComparer_1_Rewired_UpdateLoopType___VTable { + VirtualInvokeData Equals; + VirtualInvokeData GetHashCode; +}; + +struct IEqualityComparer_1_Rewired_UpdateLoopType___StaticFields { +}; + +struct IEqualityComparer_1_Rewired_UpdateLoopType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEqualityComparer_1_Rewired_UpdateLoopType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEqualityComparer_1_Rewired_UpdateLoopType___VTable vtable; +}; + +struct ADictionary_2_TKey_TValue_KeyCollection_System_String_Rewired_UpdateLoopType___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_Generic_IEnumerable_TKey__GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Remove; +}; + +struct ADictionary_2_TKey_TValue_KeyCollection_System_String_Rewired_UpdateLoopType___StaticFields { +}; + +struct ADictionary_2_TKey_TValue_KeyCollection_System_String_Rewired_UpdateLoopType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ADictionary_2_TKey_TValue_KeyCollection_System_String_Rewired_UpdateLoopType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ADictionary_2_TKey_TValue_KeyCollection_System_String_Rewired_UpdateLoopType___VTable vtable; +}; + +struct ADictionary_2_TKey_TValue_ValueCollection_System_String_Rewired_UpdateLoopType___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TValue__GetEnumerator; +}; + +struct ADictionary_2_TKey_TValue_ValueCollection_System_String_Rewired_UpdateLoopType___StaticFields { +}; + +struct ADictionary_2_TKey_TValue_ValueCollection_System_String_Rewired_UpdateLoopType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ADictionary_2_TKey_TValue_ValueCollection_System_String_Rewired_UpdateLoopType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ADictionary_2_TKey_TValue_ValueCollection_System_String_Rewired_UpdateLoopType___VTable vtable; +}; + +struct ICollection_1_Rewired_UpdateLoopType___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_Rewired_UpdateLoopType___StaticFields { +}; + +struct ICollection_1_Rewired_UpdateLoopType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_Rewired_UpdateLoopType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_Rewired_UpdateLoopType___VTable vtable; +}; + +struct UpdateLoopType___VTable { +}; + +struct UpdateLoopType___StaticFields { +}; + +struct UpdateLoopType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UpdateLoopType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UpdateLoopType___VTable vtable; +}; + +struct KeyValuePair_2_System_String_Rewired_UpdateLoopType___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct KeyValuePair_2_System_String_Rewired_UpdateLoopType___StaticFields { +}; + +struct KeyValuePair_2_System_String_Rewired_UpdateLoopType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_String_Rewired_UpdateLoopType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_String_Rewired_UpdateLoopType___VTable vtable; +}; + +struct KeyValuePair_2_System_String_Rewired_UpdateLoopType___Array__VTable { +}; + +struct KeyValuePair_2_System_String_Rewired_UpdateLoopType___Array__StaticFields { +}; + +struct KeyValuePair_2_System_String_Rewired_UpdateLoopType___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_String_Rewired_UpdateLoopType___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_String_Rewired_UpdateLoopType___Array__VTable vtable; +}; + +struct IEnumerator_1_KeyValuePair_2_System_String_Rewired_UpdateLoopType___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_KeyValuePair_2_System_String_Rewired_UpdateLoopType___StaticFields { +}; + +struct IEnumerator_1_KeyValuePair_2_System_String_Rewired_UpdateLoopType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_KeyValuePair_2_System_String_Rewired_UpdateLoopType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_KeyValuePair_2_System_String_Rewired_UpdateLoopType___VTable vtable; +}; + +struct ADictionary_2_System_String_Rewired_UpdateLoopType___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_get_Item; + VirtualInvokeData System_Collections_IDictionary_set_Item; + VirtualInvokeData System_Collections_IDictionary_get_Keys; + VirtualInvokeData System_Collections_IDictionary_get_Values; + VirtualInvokeData System_Collections_IDictionary_Contains; + VirtualInvokeData System_Collections_IDictionary_Add; + VirtualInvokeData Clear; + VirtualInvokeData System_Collections_IDictionary_get_IsReadOnly; + VirtualInvokeData System_Collections_IDictionary_get_IsFixedSize; + VirtualInvokeData System_Collections_IDictionary_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_Remove; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Values; + VirtualInvokeData ContainsKey; + VirtualInvokeData Add; + VirtualInvokeData Remove; + VirtualInvokeData TryGetValue; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator; +}; + +struct ADictionary_2_System_String_Rewired_UpdateLoopType___StaticFields { + bool VLcVFJVFcPaaDUGblaExYGvnwrxe; + bool xIKfsOJIjTIwpHguPisYhqZCSZBuA; +}; + +struct ADictionary_2_System_String_Rewired_UpdateLoopType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ADictionary_2_System_String_Rewired_UpdateLoopType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ADictionary_2_System_String_Rewired_UpdateLoopType___VTable vtable; +}; + +struct EnumNameValueCache_1_Rewired_UpdateLoopType___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct EnumNameValueCache_1_Rewired_UpdateLoopType___StaticFields { + struct EnumNameValueCache_1_Rewired_UpdateLoopType_ *tkVDDZwxWgvrqQSqIwneKCTQJoUX; +}; + +struct EnumNameValueCache_1_Rewired_UpdateLoopType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EnumNameValueCache_1_Rewired_UpdateLoopType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EnumNameValueCache_1_Rewired_UpdateLoopType___VTable vtable; +}; + +struct IEnumerable_1_UnityEngine_UIElements_StyleSelector_ { + struct IEnumerable_1_UnityEngine_UIElements_StyleSelector___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_UnityEngine_UIElements_StyleSelector___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_UnityEngine_UIElements_StyleSelector___StaticFields { +}; + +struct IEnumerable_1_UnityEngine_UIElements_StyleSelector___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_UnityEngine_UIElements_StyleSelector___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_UnityEngine_UIElements_StyleSelector___VTable vtable; +}; + +struct cKBosMZgwzQDFDHHaseiqMerSbrR_wuUroopWlwdhyAHAcIaftMsMkHHs___VTable { +}; + +struct cKBosMZgwzQDFDHHaseiqMerSbrR_wuUroopWlwdhyAHAcIaftMsMkHHs___StaticFields { +}; + +struct cKBosMZgwzQDFDHHaseiqMerSbrR_wuUroopWlwdhyAHAcIaftMsMkHHs___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct cKBosMZgwzQDFDHHaseiqMerSbrR_wuUroopWlwdhyAHAcIaftMsMkHHs___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct cKBosMZgwzQDFDHHaseiqMerSbrR_wuUroopWlwdhyAHAcIaftMsMkHHs___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_String_System_IO_FileData_ { + struct Dictionary_2_System_String_System_IO_FileData_ *_dictionary; + int32_t _version; + int32_t _index; + struct KeyValuePair_2_System_String_System_IO_FileData_ _current; + int32_t _getEnumeratorRetType; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_String_System_IO_FileData___Boxed { + struct Dictionary_2_TKey_TValue_Enumerator_System_String_System_IO_FileData___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Enumerator_System_String_System_IO_FileData_ fields; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_String_System_IO_FileData___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Key; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Value; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Entry; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_String_System_IO_FileData___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_String_System_IO_FileData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Enumerator_System_String_System_IO_FileData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Enumerator_System_String_System_IO_FileData___VTable vtable; +}; + +struct PathInternal_1 { + struct PathInternal_1__Class *klass; + MonitorData *monitor; +}; + +struct PathInternal_1__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct PathInternal_1__StaticFields { + bool s_isCaseSensitive; +}; + +struct PathInternal_1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PathInternal_1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PathInternal_1__VTable vtable; +}; + +struct __declspec(align(8)) List_1_UnityEngine_UIElements_UIR_RenderChain___Fields { + struct RenderChain__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_UIElements_UIR_RenderChain_ { + struct List_1_UnityEngine_UIElements_UIR_RenderChain___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_UIElements_UIR_RenderChain___Fields fields; +}; + +struct RenderChain__Array { + struct RenderChain__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct RenderChain *vector[32]; +}; + +struct IEnumerator_1_UnityEngine_UIElements_UIR_RenderChain_ { + struct IEnumerator_1_UnityEngine_UIElements_UIR_RenderChain___Class *klass; + MonitorData *monitor; +}; + +struct RenderChain__Array__VTable { +}; + +struct RenderChain__Array__StaticFields { +}; + +struct RenderChain__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RenderChain__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RenderChain__Array__VTable vtable; +}; + +struct IEnumerator_1_UnityEngine_UIElements_UIR_RenderChain___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_UnityEngine_UIElements_UIR_RenderChain___StaticFields { +}; + +struct IEnumerator_1_UnityEngine_UIElements_UIR_RenderChain___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_UnityEngine_UIElements_UIR_RenderChain___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_UnityEngine_UIElements_UIR_RenderChain___VTable vtable; +}; + +struct List_1_UnityEngine_UIElements_UIR_RenderChain___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_UnityEngine_UIElements_UIR_RenderChain___StaticFields { + struct RenderChain__Array *s_emptyArray; +}; + +struct List_1_UnityEngine_UIElements_UIR_RenderChain___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_UIElements_UIR_RenderChain___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_UIElements_UIR_RenderChain___VTable vtable; +}; + +struct RenderChain_RenderChainStaticIndexAllocator { +}; + +struct RenderChain_RenderChainStaticIndexAllocator__Boxed { + struct RenderChain_RenderChainStaticIndexAllocator__Class *klass; + MonitorData *monitor; + struct RenderChain_RenderChainStaticIndexAllocator fields; +}; + +struct RenderChain_RenderChainStaticIndexAllocator__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct RenderChain_RenderChainStaticIndexAllocator__StaticFields { + struct List_1_UnityEngine_UIElements_UIR_RenderChain_ *renderChains; +}; + +struct RenderChain_RenderChainStaticIndexAllocator__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RenderChain_RenderChainStaticIndexAllocator__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RenderChain_RenderChainStaticIndexAllocator__VTable vtable; +}; + +struct IList_1_Rewired_ControllerTemplate_kvOnxGBUMwSXiAWzvbgaylKBYqUs__1__VTable { +}; + +struct IList_1_Rewired_ControllerTemplate_kvOnxGBUMwSXiAWzvbgaylKBYqUs__1__StaticFields { +}; + +struct IList_1_Rewired_ControllerTemplate_kvOnxGBUMwSXiAWzvbgaylKBYqUs__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IList_1_Rewired_ControllerTemplate_kvOnxGBUMwSXiAWzvbgaylKBYqUs__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IList_1_Rewired_ControllerTemplate_kvOnxGBUMwSXiAWzvbgaylKBYqUs__1__VTable vtable; +}; + +struct __declspec(align(8)) List_1_Rewired_ControllerTemplate_kvOnxGBUMwSXiAWzvbgaylKBYqUs___Fields { + struct ControllerTemplate_kvOnxGBUMwSXiAWzvbgaylKBYqUs__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Rewired_ControllerTemplate_kvOnxGBUMwSXiAWzvbgaylKBYqUs_ { + struct List_1_Rewired_ControllerTemplate_kvOnxGBUMwSXiAWzvbgaylKBYqUs___Class *klass; + MonitorData *monitor; + struct List_1_Rewired_ControllerTemplate_kvOnxGBUMwSXiAWzvbgaylKBYqUs___Fields fields; +}; + +struct IEnumerator_1_Rewired_ControllerTemplate_kvOnxGBUMwSXiAWzvbgaylKBYqUs_ { + struct IEnumerator_1_Rewired_ControllerTemplate_kvOnxGBUMwSXiAWzvbgaylKBYqUs___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerator_1_Rewired_ControllerTemplate_kvOnxGBUMwSXiAWzvbgaylKBYqUs___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_Rewired_ControllerTemplate_kvOnxGBUMwSXiAWzvbgaylKBYqUs___StaticFields { +}; + +struct IEnumerator_1_Rewired_ControllerTemplate_kvOnxGBUMwSXiAWzvbgaylKBYqUs___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_Rewired_ControllerTemplate_kvOnxGBUMwSXiAWzvbgaylKBYqUs___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_Rewired_ControllerTemplate_kvOnxGBUMwSXiAWzvbgaylKBYqUs___VTable vtable; +}; + +struct List_1_Rewired_ControllerTemplate_kvOnxGBUMwSXiAWzvbgaylKBYqUs___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_Rewired_ControllerTemplate_kvOnxGBUMwSXiAWzvbgaylKBYqUs___StaticFields { + struct ControllerTemplate_kvOnxGBUMwSXiAWzvbgaylKBYqUs__Array *s_emptyArray; +}; + +struct List_1_Rewired_ControllerTemplate_kvOnxGBUMwSXiAWzvbgaylKBYqUs___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Rewired_ControllerTemplate_kvOnxGBUMwSXiAWzvbgaylKBYqUs___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Rewired_ControllerTemplate_kvOnxGBUMwSXiAWzvbgaylKBYqUs___VTable vtable; +}; + +struct IControllerTemplateElement_Internal { + struct IControllerTemplateElement_Internal__Class *klass; + MonitorData *monitor; +}; + +struct IControllerTemplateElement_Internal__VTable { + VirtualInvokeData get_parent; + VirtualInvokeData get_elementCount; + VirtualInvokeData GetElement; + VirtualInvokeData GetElementTargets; +}; + +struct IControllerTemplateElement_Internal__StaticFields { +}; + +struct IControllerTemplateElement_Internal__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IControllerTemplateElement_Internal__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IControllerTemplateElement_Internal__VTable vtable; +}; + +struct __declspec(align(8)) List_1_Rewired_IControllerTemplateAxis___Fields { + struct IControllerTemplateAxis__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Rewired_IControllerTemplateAxis_ { + struct List_1_Rewired_IControllerTemplateAxis___Class *klass; + MonitorData *monitor; + struct List_1_Rewired_IControllerTemplateAxis___Fields fields; +}; + +struct IControllerTemplateAxis__Array { + struct IControllerTemplateAxis__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct IControllerTemplateAxis *vector[32]; +}; + +struct IEnumerator_1_Rewired_IControllerTemplateAxis_ { + struct IEnumerator_1_Rewired_IControllerTemplateAxis___Class *klass; + MonitorData *monitor; +}; + +struct IControllerTemplateAxis__Array__VTable { +}; + +struct IControllerTemplateAxis__Array__StaticFields { +}; + +struct IControllerTemplateAxis__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IControllerTemplateAxis__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IControllerTemplateAxis__Array__VTable vtable; +}; + +struct IEnumerator_1_Rewired_IControllerTemplateAxis___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_Rewired_IControllerTemplateAxis___StaticFields { +}; + +struct IEnumerator_1_Rewired_IControllerTemplateAxis___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_Rewired_IControllerTemplateAxis___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_Rewired_IControllerTemplateAxis___VTable vtable; +}; + +struct List_1_Rewired_IControllerTemplateAxis___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_Rewired_IControllerTemplateAxis___StaticFields { + struct IControllerTemplateAxis__Array *s_emptyArray; +}; + +struct List_1_Rewired_IControllerTemplateAxis___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Rewired_IControllerTemplateAxis___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Rewired_IControllerTemplateAxis___VTable vtable; +}; + +struct __declspec(align(8)) List_1_Rewired_IControllerTemplateButton___Fields { + struct IControllerTemplateButton__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Rewired_IControllerTemplateButton_ { + struct List_1_Rewired_IControllerTemplateButton___Class *klass; + MonitorData *monitor; + struct List_1_Rewired_IControllerTemplateButton___Fields fields; +}; + +struct IControllerTemplateButton__Array { + struct IControllerTemplateButton__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct IControllerTemplateButton *vector[32]; +}; + +struct IEnumerator_1_Rewired_IControllerTemplateButton_ { + struct IEnumerator_1_Rewired_IControllerTemplateButton___Class *klass; + MonitorData *monitor; +}; + +struct IControllerTemplateButton__Array__VTable { +}; + +struct IControllerTemplateButton__Array__StaticFields { +}; + +struct IControllerTemplateButton__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IControllerTemplateButton__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IControllerTemplateButton__Array__VTable vtable; +}; + +struct IEnumerator_1_Rewired_IControllerTemplateButton___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_Rewired_IControllerTemplateButton___StaticFields { +}; + +struct IEnumerator_1_Rewired_IControllerTemplateButton___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_Rewired_IControllerTemplateButton___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_Rewired_IControllerTemplateButton___VTable vtable; +}; + +struct List_1_Rewired_IControllerTemplateButton___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_Rewired_IControllerTemplateButton___StaticFields { + struct IControllerTemplateButton__Array *s_emptyArray; +}; + +struct List_1_Rewired_IControllerTemplateButton___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Rewired_IControllerTemplateButton___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Rewired_IControllerTemplateButton___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component_ { + int32_t hashCode; + int32_t next; + struct GameObject *key; + struct Dictionary_2_System_Type_UnityEngine_Component_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component_ fields; +}; + +struct __declspec(align(8)) Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_UnityEngine_GameObject_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component_ { + struct Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component___Class *klass; + MonitorData *monitor; + struct Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component___Fields fields; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Component_ { + int32_t hashCode; + int32_t next; + struct Type *key; + struct Component *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Component___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Component___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Component_ fields; +}; + +struct __declspec(align(8)) Dictionary_2_System_Type_UnityEngine_Component___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Component___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_System_Type_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_UnityEngine_Component_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_UnityEngine_Component_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_System_Type_UnityEngine_Component_ { + struct Dictionary_2_System_Type_UnityEngine_Component___Class *klass; + MonitorData *monitor; + struct Dictionary_2_System_Type_UnityEngine_Component___Fields fields; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Component___Array { + struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Component___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Component_ vector[32]; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_KeyCollection_System_Type_UnityEngine_Component___Fields { + struct Dictionary_2_System_Type_UnityEngine_Component_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_UnityEngine_Component_ { + struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_UnityEngine_Component___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_UnityEngine_Component___Fields fields; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_ValueCollection_System_Type_UnityEngine_Component___Fields { + struct Dictionary_2_System_Type_UnityEngine_Component_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_UnityEngine_Component_ { + struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_UnityEngine_Component___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_UnityEngine_Component___Fields fields; +}; + +struct ICollection_1_UnityEngine_Component_ { + struct ICollection_1_UnityEngine_Component___Class *klass; + MonitorData *monitor; +}; + +struct KeyValuePair_2_System_Type_UnityEngine_Component_ { + struct Type *key; + struct Component *value; +}; + +struct KeyValuePair_2_System_Type_UnityEngine_Component___Boxed { + struct KeyValuePair_2_System_Type_UnityEngine_Component___Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_System_Type_UnityEngine_Component_ fields; +}; + +struct KeyValuePair_2_System_Type_UnityEngine_Component___Array { + struct KeyValuePair_2_System_Type_UnityEngine_Component___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct KeyValuePair_2_System_Type_UnityEngine_Component_ vector[32]; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Type_UnityEngine_Component_ { + struct IEnumerator_1_KeyValuePair_2_System_Type_UnityEngine_Component___Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component___Array { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component_ vector[32]; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component___Fields { + struct Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component_ { + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component___Fields fields; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component___Fields { + struct Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component_ { + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component___Fields fields; +}; + +struct Dictionary_2_System_Type_UnityEngine_Component___Array { + struct Dictionary_2_System_Type_UnityEngine_Component___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Dictionary_2_System_Type_UnityEngine_Component_ *vector[32]; +}; + +struct IEnumerator_1_Dictionary_2_System_Type_UnityEngine_Component_ { + struct IEnumerator_1_Dictionary_2_System_Type_UnityEngine_Component___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_Dictionary_2_System_Type_UnityEngine_Component_ { + struct ICollection_1_Dictionary_2_System_Type_UnityEngine_Component___Class *klass; + MonitorData *monitor; +}; + +struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component_ { + struct GameObject *key; + struct Dictionary_2_System_Type_UnityEngine_Component_ *value; +}; + +struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component___Boxed { + struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component___Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component_ fields; +}; + +struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component___Array { + struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component_ vector[32]; +}; + +struct IEnumerator_1_KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component_ { + struct IEnumerator_1_KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_Dictionary_2_System_Type_UnityEngine_Component_ { + struct IEnumerable_1_Dictionary_2_System_Type_UnityEngine_Component___Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Component___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Component___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Component___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Component___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Component___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Component___Array__VTable { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Component___Array__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Component___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Component___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Component___Array__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_UnityEngine_Component___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TKey__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_UnityEngine_Component___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_UnityEngine_Component___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_UnityEngine_Component___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_UnityEngine_Component___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_UnityEngine_Component___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TValue__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_UnityEngine_Component___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_UnityEngine_Component___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_UnityEngine_Component___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_UnityEngine_Component___VTable vtable; +}; + +struct ICollection_1_UnityEngine_Component___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_UnityEngine_Component___StaticFields { +}; + +struct ICollection_1_UnityEngine_Component___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_UnityEngine_Component___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_UnityEngine_Component___VTable vtable; +}; + +struct KeyValuePair_2_System_Type_UnityEngine_Component___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct KeyValuePair_2_System_Type_UnityEngine_Component___StaticFields { +}; + +struct KeyValuePair_2_System_Type_UnityEngine_Component___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_Type_UnityEngine_Component___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_Type_UnityEngine_Component___VTable vtable; +}; + +struct KeyValuePair_2_System_Type_UnityEngine_Component___Array__VTable { +}; + +struct KeyValuePair_2_System_Type_UnityEngine_Component___Array__StaticFields { +}; + +struct KeyValuePair_2_System_Type_UnityEngine_Component___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_Type_UnityEngine_Component___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_Type_UnityEngine_Component___Array__VTable vtable; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Type_UnityEngine_Component___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Type_UnityEngine_Component___StaticFields { +}; + +struct IEnumerator_1_KeyValuePair_2_System_Type_UnityEngine_Component___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_KeyValuePair_2_System_Type_UnityEngine_Component___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_KeyValuePair_2_System_Type_UnityEngine_Component___VTable vtable; +}; + +struct Dictionary_2_System_Type_UnityEngine_Component___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Values; + VirtualInvokeData ContainsKey; + VirtualInvokeData Add; + VirtualInvokeData Remove; + VirtualInvokeData TryGetValue; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add; + VirtualInvokeData Clear; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_get_Item; + VirtualInvokeData System_Collections_IDictionary_set_Item; + VirtualInvokeData System_Collections_IDictionary_get_Keys; + VirtualInvokeData System_Collections_IDictionary_get_Values; + VirtualInvokeData System_Collections_IDictionary_Contains; + VirtualInvokeData System_Collections_IDictionary_Add; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IDictionary_get_IsReadOnly; + VirtualInvokeData System_Collections_IDictionary_get_IsFixedSize; + VirtualInvokeData System_Collections_IDictionary_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_Remove; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData TryGetValue_1; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Values; + VirtualInvokeData get_Count_2; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct Dictionary_2_System_Type_UnityEngine_Component___StaticFields { +}; + +struct Dictionary_2_System_Type_UnityEngine_Component___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_System_Type_UnityEngine_Component___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_System_Type_UnityEngine_Component___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component___Array__VTable { +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component___Array__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component___Array__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TKey__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component___VTable vtable; +}; + +struct Dictionary_2_System_Type_UnityEngine_Component___Array__VTable { +}; + +struct Dictionary_2_System_Type_UnityEngine_Component___Array__StaticFields { +}; + +struct Dictionary_2_System_Type_UnityEngine_Component___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_System_Type_UnityEngine_Component___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_System_Type_UnityEngine_Component___Array__VTable vtable; +}; + +struct IEnumerator_1_Dictionary_2_System_Type_UnityEngine_Component___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_Dictionary_2_System_Type_UnityEngine_Component___StaticFields { +}; + +struct IEnumerator_1_Dictionary_2_System_Type_UnityEngine_Component___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_Dictionary_2_System_Type_UnityEngine_Component___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_Dictionary_2_System_Type_UnityEngine_Component___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TValue__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component___VTable vtable; +}; + +struct ICollection_1_Dictionary_2_System_Type_UnityEngine_Component___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_Dictionary_2_System_Type_UnityEngine_Component___StaticFields { +}; + +struct ICollection_1_Dictionary_2_System_Type_UnityEngine_Component___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_Dictionary_2_System_Type_UnityEngine_Component___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_Dictionary_2_System_Type_UnityEngine_Component___VTable vtable; +}; + +struct Dictionary_2_System_Type_UnityEngine_Component__1__VTable { +}; + +struct Dictionary_2_System_Type_UnityEngine_Component__1__StaticFields { +}; + +struct Dictionary_2_System_Type_UnityEngine_Component__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_System_Type_UnityEngine_Component__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_System_Type_UnityEngine_Component__1__VTable vtable; +}; + +struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component___StaticFields { +}; + +struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component___VTable vtable; +}; + +struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component___Array__VTable { +}; + +struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component___Array__StaticFields { +}; + +struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component___Array__VTable vtable; +}; + +struct IEnumerator_1_KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component___StaticFields { +}; + +struct IEnumerator_1_KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component___VTable vtable; +}; + +struct IEnumerable_1_Dictionary_2_System_Type_UnityEngine_Component___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_Dictionary_2_System_Type_UnityEngine_Component___StaticFields { +}; + +struct IEnumerable_1_Dictionary_2_System_Type_UnityEngine_Component___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_Dictionary_2_System_Type_UnityEngine_Component___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_Dictionary_2_System_Type_UnityEngine_Component___VTable vtable; +}; + +struct Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Values; + VirtualInvokeData ContainsKey; + VirtualInvokeData Add; + VirtualInvokeData Remove; + VirtualInvokeData TryGetValue; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add; + VirtualInvokeData Clear; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_get_Item; + VirtualInvokeData System_Collections_IDictionary_set_Item; + VirtualInvokeData System_Collections_IDictionary_get_Keys; + VirtualInvokeData System_Collections_IDictionary_get_Values; + VirtualInvokeData System_Collections_IDictionary_Contains; + VirtualInvokeData System_Collections_IDictionary_Add; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IDictionary_get_IsReadOnly; + VirtualInvokeData System_Collections_IDictionary_get_IsFixedSize; + VirtualInvokeData System_Collections_IDictionary_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_Remove; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData TryGetValue_1; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Values; + VirtualInvokeData get_Count_2; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component___StaticFields { +}; + +struct Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1 { + int32_t hashCode; + int32_t next; + struct GameObject *key; + struct Dictionary_2_System_Type_UnityEngine_Component__2 *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1__Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1__Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1 fields; +}; + +struct __declspec(align(8)) Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1__Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1__Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_UnityEngine_GameObject_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1 *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1 *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1 { + struct Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1__Class *klass; + MonitorData *monitor; + struct Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1__Fields fields; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Component__1 { + int32_t hashCode; + int32_t next; + struct Type *key; + struct Component__Array *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Component__1__Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Component__1__Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Component__1 fields; +}; + +struct __declspec(align(8)) Dictionary_2_System_Type_UnityEngine_Component__2__Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Component__1__Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_System_Type_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_UnityEngine_Component__1 *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_UnityEngine_Component__1 *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_System_Type_UnityEngine_Component__2 { + struct Dictionary_2_System_Type_UnityEngine_Component__2__Class *klass; + MonitorData *monitor; + struct Dictionary_2_System_Type_UnityEngine_Component__2__Fields fields; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Component__1__Array { + struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Component__1__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Component__1 vector[32]; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_KeyCollection_System_Type_UnityEngine_Component__1__Fields { + struct Dictionary_2_System_Type_UnityEngine_Component__2 *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_UnityEngine_Component__1 { + struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_UnityEngine_Component__1__Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_UnityEngine_Component__1__Fields fields; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_ValueCollection_System_Type_UnityEngine_Component__1__Fields { + struct Dictionary_2_System_Type_UnityEngine_Component__2 *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_UnityEngine_Component__1 { + struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_UnityEngine_Component__1__Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_UnityEngine_Component__1__Fields fields; +}; + +struct Component__Array__Array { + struct Component__Array__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Component__Array *vector[32]; +}; + +struct IEnumerator_1_UnityEngine_Component__1 { + struct IEnumerator_1_UnityEngine_Component__1__Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_UnityEngine_Component__1 { + struct ICollection_1_UnityEngine_Component__1__Class *klass; + MonitorData *monitor; +}; + +struct KeyValuePair_2_System_Type_UnityEngine_Component__1 { + struct Type *key; + struct Component__Array *value; +}; + +struct KeyValuePair_2_System_Type_UnityEngine_Component__1__Boxed { + struct KeyValuePair_2_System_Type_UnityEngine_Component__1__Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_System_Type_UnityEngine_Component__1 fields; +}; + +struct KeyValuePair_2_System_Type_UnityEngine_Component__1__Array { + struct KeyValuePair_2_System_Type_UnityEngine_Component__1__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct KeyValuePair_2_System_Type_UnityEngine_Component__1 vector[32]; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Type_UnityEngine_Component__1 { + struct IEnumerator_1_KeyValuePair_2_System_Type_UnityEngine_Component__1__Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_UnityEngine_Component__1 { + struct IEnumerable_1_UnityEngine_Component__1__Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1__Array { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1 vector[32]; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1__Fields { + struct Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1 *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1 { + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1__Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1__Fields fields; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1__Fields { + struct Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1 *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1 { + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1__Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1__Fields fields; +}; + +struct Dictionary_2_System_Type_UnityEngine_Component__2__Array { + struct Dictionary_2_System_Type_UnityEngine_Component__2__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Dictionary_2_System_Type_UnityEngine_Component__2 *vector[32]; +}; + +struct IEnumerator_1_Dictionary_2_System_Type_UnityEngine_Component__1 { + struct IEnumerator_1_Dictionary_2_System_Type_UnityEngine_Component__1__Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_Dictionary_2_System_Type_UnityEngine_Component__1 { + struct ICollection_1_Dictionary_2_System_Type_UnityEngine_Component__1__Class *klass; + MonitorData *monitor; +}; + +struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1 { + struct GameObject *key; + struct Dictionary_2_System_Type_UnityEngine_Component__2 *value; +}; + +struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1__Boxed { + struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1__Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1 fields; +}; + +struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1__Array { + struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1 vector[32]; +}; + +struct IEnumerator_1_KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1 { + struct IEnumerator_1_KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1__Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_Dictionary_2_System_Type_UnityEngine_Component__1 { + struct IEnumerable_1_Dictionary_2_System_Type_UnityEngine_Component__1__Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Component__1__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Component__1__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Component__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Component__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Component__1__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Component__1__Array__VTable { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Component__1__Array__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Component__1__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Component__1__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_System_Type_UnityEngine_Component__1__Array__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_UnityEngine_Component__1__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TKey__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_UnityEngine_Component__1__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_UnityEngine_Component__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_UnityEngine_Component__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_UnityEngine_Component__1__VTable vtable; +}; + +struct Component__Array__Array__VTable { +}; + +struct Component__Array__Array__StaticFields { +}; + +struct Component__Array__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Component__Array__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Component__Array__Array__VTable vtable; +}; + +struct IEnumerator_1_UnityEngine_Component__1__VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_UnityEngine_Component__1__StaticFields { +}; + +struct IEnumerator_1_UnityEngine_Component__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_UnityEngine_Component__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_UnityEngine_Component__1__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_UnityEngine_Component__1__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TValue__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_UnityEngine_Component__1__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_UnityEngine_Component__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_UnityEngine_Component__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_UnityEngine_Component__1__VTable vtable; +}; + +struct ICollection_1_UnityEngine_Component__1__VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_UnityEngine_Component__1__StaticFields { +}; + +struct ICollection_1_UnityEngine_Component__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_UnityEngine_Component__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_UnityEngine_Component__1__VTable vtable; +}; + +struct Component__1__VTable { +}; + +struct Component__1__StaticFields { +}; + +struct Component__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Component__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Component__1__VTable vtable; +}; + +struct KeyValuePair_2_System_Type_UnityEngine_Component__1__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct KeyValuePair_2_System_Type_UnityEngine_Component__1__StaticFields { +}; + +struct KeyValuePair_2_System_Type_UnityEngine_Component__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_Type_UnityEngine_Component__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_Type_UnityEngine_Component__1__VTable vtable; +}; + +struct KeyValuePair_2_System_Type_UnityEngine_Component__1__Array__VTable { +}; + +struct KeyValuePair_2_System_Type_UnityEngine_Component__1__Array__StaticFields { +}; + +struct KeyValuePair_2_System_Type_UnityEngine_Component__1__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_Type_UnityEngine_Component__1__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_Type_UnityEngine_Component__1__Array__VTable vtable; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Type_UnityEngine_Component__1__VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Type_UnityEngine_Component__1__StaticFields { +}; + +struct IEnumerator_1_KeyValuePair_2_System_Type_UnityEngine_Component__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_KeyValuePair_2_System_Type_UnityEngine_Component__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_KeyValuePair_2_System_Type_UnityEngine_Component__1__VTable vtable; +}; + +struct IEnumerable_1_UnityEngine_Component__1__VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_UnityEngine_Component__1__StaticFields { +}; + +struct IEnumerable_1_UnityEngine_Component__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_UnityEngine_Component__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_UnityEngine_Component__1__VTable vtable; +}; + +struct Dictionary_2_System_Type_UnityEngine_Component__2__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Values; + VirtualInvokeData ContainsKey; + VirtualInvokeData Add; + VirtualInvokeData Remove; + VirtualInvokeData TryGetValue; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add; + VirtualInvokeData Clear; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_get_Item; + VirtualInvokeData System_Collections_IDictionary_set_Item; + VirtualInvokeData System_Collections_IDictionary_get_Keys; + VirtualInvokeData System_Collections_IDictionary_get_Values; + VirtualInvokeData System_Collections_IDictionary_Contains; + VirtualInvokeData System_Collections_IDictionary_Add; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IDictionary_get_IsReadOnly; + VirtualInvokeData System_Collections_IDictionary_get_IsFixedSize; + VirtualInvokeData System_Collections_IDictionary_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_Remove; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData TryGetValue_1; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Values; + VirtualInvokeData get_Count_2; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct Dictionary_2_System_Type_UnityEngine_Component__2__StaticFields { +}; + +struct Dictionary_2_System_Type_UnityEngine_Component__2__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_System_Type_UnityEngine_Component__2__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_System_Type_UnityEngine_Component__2__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1__Array__VTable { +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1__Array__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1__Array__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TKey__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1__VTable vtable; +}; + +struct Dictionary_2_System_Type_UnityEngine_Component__2__Array__VTable { +}; + +struct Dictionary_2_System_Type_UnityEngine_Component__2__Array__StaticFields { +}; + +struct Dictionary_2_System_Type_UnityEngine_Component__2__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_System_Type_UnityEngine_Component__2__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_System_Type_UnityEngine_Component__2__Array__VTable vtable; +}; + +struct IEnumerator_1_Dictionary_2_System_Type_UnityEngine_Component__1__VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_Dictionary_2_System_Type_UnityEngine_Component__1__StaticFields { +}; + +struct IEnumerator_1_Dictionary_2_System_Type_UnityEngine_Component__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_Dictionary_2_System_Type_UnityEngine_Component__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_Dictionary_2_System_Type_UnityEngine_Component__1__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TValue__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1__VTable vtable; +}; + +struct ICollection_1_Dictionary_2_System_Type_UnityEngine_Component__1__VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_Dictionary_2_System_Type_UnityEngine_Component__1__StaticFields { +}; + +struct ICollection_1_Dictionary_2_System_Type_UnityEngine_Component__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_Dictionary_2_System_Type_UnityEngine_Component__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_Dictionary_2_System_Type_UnityEngine_Component__1__VTable vtable; +}; + +struct Dictionary_2_System_Type_UnityEngine_Component__3__VTable { +}; + +struct Dictionary_2_System_Type_UnityEngine_Component__3__StaticFields { +}; + +struct Dictionary_2_System_Type_UnityEngine_Component__3__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_System_Type_UnityEngine_Component__3__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_System_Type_UnityEngine_Component__3__VTable vtable; +}; + +struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1__StaticFields { +}; + +struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1__VTable vtable; +}; + +struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1__Array__VTable { +}; + +struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1__Array__StaticFields { +}; + +struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1__Array__VTable vtable; +}; + +struct IEnumerator_1_KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1__VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1__StaticFields { +}; + +struct IEnumerator_1_KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_KeyValuePair_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1__VTable vtable; +}; + +struct IEnumerable_1_Dictionary_2_System_Type_UnityEngine_Component__1__VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_Dictionary_2_System_Type_UnityEngine_Component__1__StaticFields { +}; + +struct IEnumerable_1_Dictionary_2_System_Type_UnityEngine_Component__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_Dictionary_2_System_Type_UnityEngine_Component__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_Dictionary_2_System_Type_UnityEngine_Component__1__VTable vtable; +}; + +struct Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Values; + VirtualInvokeData ContainsKey; + VirtualInvokeData Add; + VirtualInvokeData Remove; + VirtualInvokeData TryGetValue; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add; + VirtualInvokeData Clear; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_get_Item; + VirtualInvokeData System_Collections_IDictionary_set_Item; + VirtualInvokeData System_Collections_IDictionary_get_Keys; + VirtualInvokeData System_Collections_IDictionary_get_Values; + VirtualInvokeData System_Collections_IDictionary_Contains; + VirtualInvokeData System_Collections_IDictionary_Add; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IDictionary_get_IsReadOnly; + VirtualInvokeData System_Collections_IDictionary_get_IsFixedSize; + VirtualInvokeData System_Collections_IDictionary_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_Remove; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData TryGetValue_1; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Values; + VirtualInvokeData get_Count_2; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1__StaticFields { +}; + +struct Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1__VTable vtable; +}; + +struct IControllerTemplateElementIdentifier_Editor { + struct IControllerTemplateElementIdentifier_Editor__Class *klass; + MonitorData *monitor; +}; + +struct IControllerTemplateElementIdentifier_Editor__VTable { + VirtualInvokeData get_scriptingName; + VirtualInvokeData get_alternateScriptingName; +}; + +struct IControllerTemplateElementIdentifier_Editor__StaticFields { +}; + +struct IControllerTemplateElementIdentifier_Editor__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IControllerTemplateElementIdentifier_Editor__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IControllerTemplateElementIdentifier_Editor__VTable vtable; +}; + +struct IGetSetEnabled { + struct IGetSetEnabled__Class *klass; + MonitorData *monitor; +}; + +struct IGetSetEnabled__VTable { + VirtualInvokeData get_enabled; + VirtualInvokeData set_enabled; +}; + +struct IGetSetEnabled__StaticFields { +}; + +struct IGetSetEnabled__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IGetSetEnabled__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IGetSetEnabled__VTable vtable; +}; + +struct Use__Array { + struct Use__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Use *vector[32]; +}; + +struct Use__Array__VTable { +}; + +struct Use__Array__StaticFields { +}; + +struct Use__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Use__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Use__Array__VTable vtable; +}; + +struct ItemSetAbilityBase__Array { + struct ItemSetAbilityBase__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct ItemSetAbilityBase *vector[32]; +}; + +struct ItemSetAbilityBase__Array__VTable { +}; + +struct ItemSetAbilityBase__Array__StaticFields { +}; + +struct ItemSetAbilityBase__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ItemSetAbilityBase__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ItemSetAbilityBase__Array__VTable vtable; +}; + +struct Reload_1__Array { + struct Reload_1__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Reload_1 *vector[32]; +}; + +struct Reload_1__Array__VTable { +}; + +struct Reload_1__Array__StaticFields { +}; + +struct Reload_1__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Reload_1__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Reload_1__Array__VTable vtable; +}; + +struct Action_5_System_Single_UnityEngine_Vector3_UnityEngine_Vector3_UnityEngine_GameObject_UnityEngine_Collider___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_5_System_Single_UnityEngine_Vector3_UnityEngine_Vector3_UnityEngine_GameObject_UnityEngine_Collider_ { + struct Action_5_System_Single_UnityEngine_Vector3_UnityEngine_Vector3_UnityEngine_GameObject_UnityEngine_Collider___Class *klass; + MonitorData *monitor; + struct Action_5_System_Single_UnityEngine_Vector3_UnityEngine_Vector3_UnityEngine_GameObject_UnityEngine_Collider___Fields fields; +}; + +struct Action_5_System_Single_UnityEngine_Vector3_UnityEngine_Vector3_UnityEngine_GameObject_UnityEngine_Collider___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_5_System_Single_UnityEngine_Vector3_UnityEngine_Vector3_UnityEngine_GameObject_UnityEngine_Collider___StaticFields { +}; + +struct Action_5_System_Single_UnityEngine_Vector3_UnityEngine_Vector3_UnityEngine_GameObject_UnityEngine_Collider___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_5_System_Single_UnityEngine_Vector3_UnityEngine_Vector3_UnityEngine_GameObject_UnityEngine_Collider___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_5_System_Single_UnityEngine_Vector3_UnityEngine_Vector3_UnityEngine_GameObject_UnityEngine_Collider___VTable vtable; +}; + +struct __declspec(align(8)) List_1_Rewired_IControllerTemplate___Fields { + struct IControllerTemplate__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Rewired_IControllerTemplate_ { + struct List_1_Rewired_IControllerTemplate___Class *klass; + MonitorData *monitor; + struct List_1_Rewired_IControllerTemplate___Fields fields; +}; + +struct List_1_Rewired_IControllerTemplate___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_Rewired_IControllerTemplate___StaticFields { + struct IControllerTemplate__Array *s_emptyArray; +}; + +struct List_1_Rewired_IControllerTemplate___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Rewired_IControllerTemplate___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Rewired_IControllerTemplate___VTable vtable; +}; + +struct ICollection_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap_ { + struct ICollection_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap___StaticFields { +}; + +struct ICollection_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_Rewired_Data_Mapping_HardwareJoystickTemplateMap___VTable vtable; +}; + +struct __declspec(align(8)) List_1_Rewired_Controller_Button___Fields { + struct Controller_Button__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Rewired_Controller_Button_ { + struct List_1_Rewired_Controller_Button___Class *klass; + MonitorData *monitor; + struct List_1_Rewired_Controller_Button___Fields fields; +}; + +struct List_1_Rewired_Controller_Button___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_Rewired_Controller_Button___StaticFields { + struct Controller_Button__Array *s_emptyArray; +}; + +struct List_1_Rewired_Controller_Button___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Rewired_Controller_Button___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Rewired_Controller_Button___VTable vtable; +}; + +struct IEnumerable_1_UnityEngine_Yoga_YogaNode_ { + struct IEnumerable_1_UnityEngine_Yoga_YogaNode___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_UnityEngine_Yoga_YogaNode___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_UnityEngine_Yoga_YogaNode___StaticFields { +}; + +struct IEnumerable_1_UnityEngine_Yoga_YogaNode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_UnityEngine_Yoga_YogaNode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_UnityEngine_Yoga_YogaNode___VTable vtable; +}; + +struct ICollection_1_Rewired_Controller_Element_xOoJsIJJrYLeLMCcefuYYRHXEZwJ_yShTYqkGIvmtEnfpaLxCqsdlnJlO_ { + struct ICollection_1_Rewired_Controller_Element_xOoJsIJJrYLeLMCcefuYYRHXEZwJ_yShTYqkGIvmtEnfpaLxCqsdlnJlO___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_Rewired_Controller_Element_xOoJsIJJrYLeLMCcefuYYRHXEZwJ_yShTYqkGIvmtEnfpaLxCqsdlnJlO___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_Rewired_Controller_Element_xOoJsIJJrYLeLMCcefuYYRHXEZwJ_yShTYqkGIvmtEnfpaLxCqsdlnJlO___StaticFields { +}; + +struct ICollection_1_Rewired_Controller_Element_xOoJsIJJrYLeLMCcefuYYRHXEZwJ_yShTYqkGIvmtEnfpaLxCqsdlnJlO___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_Rewired_Controller_Element_xOoJsIJJrYLeLMCcefuYYRHXEZwJ_yShTYqkGIvmtEnfpaLxCqsdlnJlO___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_Rewired_Controller_Element_xOoJsIJJrYLeLMCcefuYYRHXEZwJ_yShTYqkGIvmtEnfpaLxCqsdlnJlO___VTable vtable; +}; + +struct IEnumerable_1_Waypoint_ { + struct IEnumerable_1_Waypoint___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_Waypoint___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_Waypoint___StaticFields { +}; + +struct IEnumerable_1_Waypoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_Waypoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_Waypoint___VTable vtable; +}; + +struct IEnumerable_1_UnityEngine_BoxCollider_ { + struct IEnumerable_1_UnityEngine_BoxCollider___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_UnityEngine_BoxCollider___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_UnityEngine_BoxCollider___StaticFields { +}; + +struct IEnumerable_1_UnityEngine_BoxCollider___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_UnityEngine_BoxCollider___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_UnityEngine_BoxCollider___VTable vtable; +}; + +struct Platform { + struct Platform__Class *klass; + MonitorData *monitor; +}; + +struct Platform__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Platform__StaticFields { + bool checkedOS; + bool isMacOS; + bool isAix; + bool isIBMi; + bool isFreeBSD; + bool isOpenBSD; +}; + +struct Platform__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Platform__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Platform__VTable vtable; +}; + +struct SecurityUtils { + struct SecurityUtils__Class *klass; + MonitorData *monitor; +}; + +struct SecurityUtils__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct SecurityUtils__StaticFields { + struct ReflectionPermission *memberAccessPermission; + struct ReflectionPermission *restrictedMemberAccessPermission; +}; + +struct SecurityUtils__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SecurityUtils__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SecurityUtils__VTable vtable; +}; + +struct Nullable_1_Internal_Cryptography_Pal_GeneralNameType_ { + bool hasValue; + #if defined(_CPLUSPLUS_) + GeneralNameType__Enum value; + #else + int32_t value; + #endif +}; + +struct Nullable_1_Internal_Cryptography_Pal_GeneralNameType___Boxed { + struct Nullable_1_Internal_Cryptography_Pal_GeneralNameType___Class *klass; + MonitorData *monitor; + struct Nullable_1_Internal_Cryptography_Pal_GeneralNameType_ fields; +}; + +struct Nullable_1_Internal_Cryptography_Pal_GeneralNameType___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Nullable_1_Internal_Cryptography_Pal_GeneralNameType___StaticFields { +}; + +struct Nullable_1_Internal_Cryptography_Pal_GeneralNameType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Nullable_1_Internal_Cryptography_Pal_GeneralNameType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Nullable_1_Internal_Cryptography_Pal_GeneralNameType___VTable vtable; +}; + +struct List_1_T_Enumerator_System_Security_Cryptography_X509Certificates_X509Extension_ { + struct List_1_System_Security_Cryptography_X509Certificates_X509Extension_ *_list; + int32_t _index; + int32_t _version; + struct X509Extension *_current; +}; + +struct List_1_T_Enumerator_System_Security_Cryptography_X509Certificates_X509Extension___Boxed { + struct List_1_T_Enumerator_System_Security_Cryptography_X509Certificates_X509Extension___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_System_Security_Cryptography_X509Certificates_X509Extension_ fields; +}; + +struct List_1_T_Enumerator_System_Security_Cryptography_X509Certificates_X509Extension___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_System_Security_Cryptography_X509Certificates_X509Extension___StaticFields { +}; + +struct List_1_T_Enumerator_System_Security_Cryptography_X509Certificates_X509Extension___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_System_Security_Cryptography_X509Certificates_X509Extension___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_System_Security_Cryptography_X509Certificates_X509Extension___VTable vtable; +}; + +struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_UI_RectMask2D_ { + struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_UI_RectMask2D___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) ObjectPool_1_System_Collections_Generic_List_1__10__Fields { + struct List_1_List_1_UnityEngine_UI_RectMask2D_ *m_List; + struct Func_1_System_Collections_Generic_List_1__18 *m_CreateFunc; + struct Action_1_System_Collections_Generic_List_1__14 *m_ActionOnGet; + struct Action_1_System_Collections_Generic_List_1__14 *m_ActionOnRelease; + struct Action_1_System_Collections_Generic_List_1__14 *m_ActionOnDestroy; + int32_t m_MaxSize; + bool m_CollectionCheck; + int32_t _CountAll_k__BackingField; +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__10 { + struct ObjectPool_1_System_Collections_Generic_List_1__10__Class *klass; + MonitorData *monitor; + struct ObjectPool_1_System_Collections_Generic_List_1__10__Fields fields; +}; + +struct __declspec(align(8)) List_1_List_1_UnityEngine_UI_RectMask2D___Fields { + struct List_1_UnityEngine_UI_RectMask2D___Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_List_1_UnityEngine_UI_RectMask2D_ { + struct List_1_List_1_UnityEngine_UI_RectMask2D___Class *klass; + MonitorData *monitor; + struct List_1_List_1_UnityEngine_UI_RectMask2D___Fields fields; +}; + +struct List_1_UnityEngine_UI_RectMask2D___Array { + struct List_1_UnityEngine_UI_RectMask2D___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct List_1_UnityEngine_UI_RectMask2D_ *vector[32]; +}; + +struct IEnumerator_1_List_1_UnityEngine_UI_RectMask2D_ { + struct IEnumerator_1_List_1_UnityEngine_UI_RectMask2D___Class *klass; + MonitorData *monitor; +}; + +struct Func_1_System_Collections_Generic_List_1__18__Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_1_System_Collections_Generic_List_1__18 { + struct Func_1_System_Collections_Generic_List_1__18__Class *klass; + MonitorData *monitor; + struct Func_1_System_Collections_Generic_List_1__18__Fields fields; +}; + +struct Action_1_System_Collections_Generic_List_1__14__Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_1_System_Collections_Generic_List_1__14 { + struct Action_1_System_Collections_Generic_List_1__14__Class *klass; + MonitorData *monitor; + struct Action_1_System_Collections_Generic_List_1__14__Fields fields; +}; + +struct PooledObject_1_System_Collections_Generic_List_1__5 { + struct List_1_UnityEngine_UI_RectMask2D_ *m_ToReturn; + struct IObjectPool_1_System_Collections_Generic_List_1__5 *m_Pool; +}; + +struct PooledObject_1_System_Collections_Generic_List_1__5__Boxed { + struct PooledObject_1_System_Collections_Generic_List_1__5__Class *klass; + MonitorData *monitor; + struct PooledObject_1_System_Collections_Generic_List_1__5 fields; +}; + +struct IObjectPool_1_System_Collections_Generic_List_1__5 { + struct IObjectPool_1_System_Collections_Generic_List_1__5__Class *klass; + MonitorData *monitor; +}; + +struct List_1_UnityEngine_UI_RectMask2D___Array__VTable { +}; + +struct List_1_UnityEngine_UI_RectMask2D___Array__StaticFields { +}; + +struct List_1_UnityEngine_UI_RectMask2D___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_UI_RectMask2D___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_UI_RectMask2D___Array__VTable vtable; +}; + +struct IEnumerator_1_List_1_UnityEngine_UI_RectMask2D___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_List_1_UnityEngine_UI_RectMask2D___StaticFields { +}; + +struct IEnumerator_1_List_1_UnityEngine_UI_RectMask2D___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_List_1_UnityEngine_UI_RectMask2D___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_List_1_UnityEngine_UI_RectMask2D___VTable vtable; +}; + +struct List_1_List_1_UnityEngine_UI_RectMask2D___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_List_1_UnityEngine_UI_RectMask2D___StaticFields { + struct List_1_UnityEngine_UI_RectMask2D___Array *s_emptyArray; +}; + +struct List_1_List_1_UnityEngine_UI_RectMask2D___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_List_1_UnityEngine_UI_RectMask2D___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_List_1_UnityEngine_UI_RectMask2D___VTable vtable; +}; + +struct Func_1_System_Collections_Generic_List_1__18__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_1_System_Collections_Generic_List_1__18__StaticFields { +}; + +struct Func_1_System_Collections_Generic_List_1__18__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_1_System_Collections_Generic_List_1__18__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_1_System_Collections_Generic_List_1__18__VTable vtable; +}; + +struct Action_1_System_Collections_Generic_List_1__14__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_1_System_Collections_Generic_List_1__14__StaticFields { +}; + +struct Action_1_System_Collections_Generic_List_1__14__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_1_System_Collections_Generic_List_1__14__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_1_System_Collections_Generic_List_1__14__VTable vtable; +}; + +struct IObjectPool_1_System_Collections_Generic_List_1__5__VTable { + VirtualInvokeData Release; +}; + +struct IObjectPool_1_System_Collections_Generic_List_1__5__StaticFields { +}; + +struct IObjectPool_1_System_Collections_Generic_List_1__5__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IObjectPool_1_System_Collections_Generic_List_1__5__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IObjectPool_1_System_Collections_Generic_List_1__5__VTable vtable; +}; + +struct PooledObject_1_System_Collections_Generic_List_1__5__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_IDisposable_Dispose; +}; + +struct PooledObject_1_System_Collections_Generic_List_1__5__StaticFields { +}; + +struct PooledObject_1_System_Collections_Generic_List_1__5__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PooledObject_1_System_Collections_Generic_List_1__5__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PooledObject_1_System_Collections_Generic_List_1__5__VTable vtable; +}; + +struct List_1_UnityEngine_UI_RectMask2D__1__VTable { +}; + +struct List_1_UnityEngine_UI_RectMask2D__1__StaticFields { +}; + +struct List_1_UnityEngine_UI_RectMask2D__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_UI_RectMask2D__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_UI_RectMask2D__1__VTable vtable; +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__10__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Dispose; + VirtualInvokeData Release; + VirtualInvokeData get_CountInactive; + VirtualInvokeData Get; + VirtualInvokeData Get_1; + VirtualInvokeData Clear; +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__10__StaticFields { +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__10__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ObjectPool_1_System_Collections_Generic_List_1__10__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ObjectPool_1_System_Collections_Generic_List_1__10__VTable vtable; +}; + +struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_UI_RectMask2D___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_UI_RectMask2D___StaticFields { + struct ObjectPool_1_System_Collections_Generic_List_1__10 *s_Pool; +}; + +struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_UI_RectMask2D___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_UI_RectMask2D___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_UI_RectMask2D___VTable vtable; +}; + +struct IMaskable { + struct IMaskable__Class *klass; + MonitorData *monitor; +}; + +struct IMaskable__VTable { + VirtualInvokeData RecalculateMasking; +}; + +struct IMaskable__StaticFields { +}; + +struct IMaskable__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IMaskable__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IMaskable__VTable vtable; +}; + +struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_UI_Mask_ { + struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_UI_Mask___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) ObjectPool_1_System_Collections_Generic_List_1__11__Fields { + struct List_1_List_1_UnityEngine_UI_Mask_ *m_List; + struct Func_1_System_Collections_Generic_List_1__19 *m_CreateFunc; + struct Action_1_System_Collections_Generic_List_1__15 *m_ActionOnGet; + struct Action_1_System_Collections_Generic_List_1__15 *m_ActionOnRelease; + struct Action_1_System_Collections_Generic_List_1__15 *m_ActionOnDestroy; + int32_t m_MaxSize; + bool m_CollectionCheck; + int32_t _CountAll_k__BackingField; +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__11 { + struct ObjectPool_1_System_Collections_Generic_List_1__11__Class *klass; + MonitorData *monitor; + struct ObjectPool_1_System_Collections_Generic_List_1__11__Fields fields; +}; + +struct __declspec(align(8)) List_1_List_1_UnityEngine_UI_Mask___Fields { + struct List_1_UnityEngine_UI_Mask___Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_List_1_UnityEngine_UI_Mask_ { + struct List_1_List_1_UnityEngine_UI_Mask___Class *klass; + MonitorData *monitor; + struct List_1_List_1_UnityEngine_UI_Mask___Fields fields; +}; + +struct Func_1_System_Collections_Generic_List_1__19__Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_1_System_Collections_Generic_List_1__19 { + struct Func_1_System_Collections_Generic_List_1__19__Class *klass; + MonitorData *monitor; + struct Func_1_System_Collections_Generic_List_1__19__Fields fields; +}; + +struct Action_1_System_Collections_Generic_List_1__15__Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_1_System_Collections_Generic_List_1__15 { + struct Action_1_System_Collections_Generic_List_1__15__Class *klass; + MonitorData *monitor; + struct Action_1_System_Collections_Generic_List_1__15__Fields fields; +}; + +struct PooledObject_1_System_Collections_Generic_List_1__6 { + struct List_1_UnityEngine_UI_Mask_ *m_ToReturn; + struct IObjectPool_1_System_Collections_Generic_List_1__6 *m_Pool; +}; + +struct PooledObject_1_System_Collections_Generic_List_1__6__Boxed { + struct PooledObject_1_System_Collections_Generic_List_1__6__Class *klass; + MonitorData *monitor; + struct PooledObject_1_System_Collections_Generic_List_1__6 fields; +}; + +struct IObjectPool_1_System_Collections_Generic_List_1__6 { + struct IObjectPool_1_System_Collections_Generic_List_1__6__Class *klass; + MonitorData *monitor; +}; + +struct List_1_List_1_UnityEngine_UI_Mask___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_List_1_UnityEngine_UI_Mask___StaticFields { + struct List_1_UnityEngine_UI_Mask___Array *s_emptyArray; +}; + +struct List_1_List_1_UnityEngine_UI_Mask___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_List_1_UnityEngine_UI_Mask___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_List_1_UnityEngine_UI_Mask___VTable vtable; +}; + +struct Func_1_System_Collections_Generic_List_1__19__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_1_System_Collections_Generic_List_1__19__StaticFields { +}; + +struct Func_1_System_Collections_Generic_List_1__19__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_1_System_Collections_Generic_List_1__19__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_1_System_Collections_Generic_List_1__19__VTable vtable; +}; + +struct Action_1_System_Collections_Generic_List_1__15__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_1_System_Collections_Generic_List_1__15__StaticFields { +}; + +struct Action_1_System_Collections_Generic_List_1__15__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_1_System_Collections_Generic_List_1__15__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_1_System_Collections_Generic_List_1__15__VTable vtable; +}; + +struct IObjectPool_1_System_Collections_Generic_List_1__6__VTable { + VirtualInvokeData Release; +}; + +struct IObjectPool_1_System_Collections_Generic_List_1__6__StaticFields { +}; + +struct IObjectPool_1_System_Collections_Generic_List_1__6__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IObjectPool_1_System_Collections_Generic_List_1__6__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IObjectPool_1_System_Collections_Generic_List_1__6__VTable vtable; +}; + +struct PooledObject_1_System_Collections_Generic_List_1__6__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_IDisposable_Dispose; +}; + +struct PooledObject_1_System_Collections_Generic_List_1__6__StaticFields { +}; + +struct PooledObject_1_System_Collections_Generic_List_1__6__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PooledObject_1_System_Collections_Generic_List_1__6__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PooledObject_1_System_Collections_Generic_List_1__6__VTable vtable; +}; + +struct List_1_UnityEngine_UI_Mask__1__VTable { +}; + +struct List_1_UnityEngine_UI_Mask__1__StaticFields { +}; + +struct List_1_UnityEngine_UI_Mask__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_UI_Mask__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_UI_Mask__1__VTable vtable; +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__11__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Dispose; + VirtualInvokeData Release; + VirtualInvokeData get_CountInactive; + VirtualInvokeData Get; + VirtualInvokeData Get_1; + VirtualInvokeData Clear; +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__11__StaticFields { +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__11__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ObjectPool_1_System_Collections_Generic_List_1__11__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ObjectPool_1_System_Collections_Generic_List_1__11__VTable vtable; +}; + +struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_UI_Mask___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_UI_Mask___StaticFields { + struct ObjectPool_1_System_Collections_Generic_List_1__11 *s_Pool; +}; + +struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_UI_Mask___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_UI_Mask___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_UI_Mask___VTable vtable; +}; + +struct Func_2_System_Collections_Generic_KeyValuePair_2_String__3__Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_2_System_Collections_Generic_KeyValuePair_2_String__3 { + struct Func_2_System_Collections_Generic_KeyValuePair_2_String__3__Class *klass; + MonitorData *monitor; + struct Func_2_System_Collections_Generic_KeyValuePair_2_String__3__Fields fields; +}; + +struct Func_2_System_Collections_Generic_KeyValuePair_2_String__3__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_2_System_Collections_Generic_KeyValuePair_2_String__3__StaticFields { +}; + +struct Func_2_System_Collections_Generic_KeyValuePair_2_String__3__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_2_System_Collections_Generic_KeyValuePair_2_String__3__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_2_System_Collections_Generic_KeyValuePair_2_String__3__VTable vtable; +}; + +struct __declspec(align(8)) ConcurrentDictionary_2_System_String_System_String___Fields { + struct ConcurrentDictionary_2_TKey_TValue_Tables_System_String_System_String_ *_tables; + struct IEqualityComparer_1_System_String_ *_comparer; + bool _growLockArray; + int32_t _budget; + struct KeyValuePair_2_System_String_System_String___Array *_serializationArray; + int32_t _serializationConcurrencyLevel; + int32_t _serializationCapacity; +}; + +struct ConcurrentDictionary_2_System_String_System_String_ { + struct ConcurrentDictionary_2_System_String_System_String___Class *klass; + MonitorData *monitor; + struct ConcurrentDictionary_2_System_String_System_String___Fields fields; +}; + +struct __declspec(align(8)) ConcurrentDictionary_2_TKey_TValue_Node_System_String_System_String___Fields { + struct String *_key; + struct String *_value; + struct ConcurrentDictionary_2_TKey_TValue_Node_System_String_System_String_ *_next; + int32_t _hashcode; +}; + +struct ConcurrentDictionary_2_TKey_TValue_Node_System_String_System_String_ { + struct ConcurrentDictionary_2_TKey_TValue_Node_System_String_System_String___Class *klass; + MonitorData *monitor; + struct ConcurrentDictionary_2_TKey_TValue_Node_System_String_System_String___Fields fields; +}; + +struct __declspec(align(8)) ConcurrentDictionary_2_TKey_TValue_Tables_System_String_System_String___Fields { + struct ConcurrentDictionary_2_TKey_TValue_Node_System_String_System_String___Array *_buckets; + struct Object__Array *_locks; + struct Int32__Array *_countPerLock; +}; + +struct ConcurrentDictionary_2_TKey_TValue_Tables_System_String_System_String_ { + struct ConcurrentDictionary_2_TKey_TValue_Tables_System_String_System_String___Class *klass; + MonitorData *monitor; + struct ConcurrentDictionary_2_TKey_TValue_Tables_System_String_System_String___Fields fields; +}; + +struct ConcurrentDictionary_2_TKey_TValue_Node_System_String_System_String___Array { + struct ConcurrentDictionary_2_TKey_TValue_Node_System_String_System_String___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct ConcurrentDictionary_2_TKey_TValue_Node_System_String_System_String_ *vector[32]; +}; + +struct ConcurrentDictionary_2_TKey_TValue_Node_System_String_System_String___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ConcurrentDictionary_2_TKey_TValue_Node_System_String_System_String___StaticFields { +}; + +struct ConcurrentDictionary_2_TKey_TValue_Node_System_String_System_String___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ConcurrentDictionary_2_TKey_TValue_Node_System_String_System_String___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ConcurrentDictionary_2_TKey_TValue_Node_System_String_System_String___VTable vtable; +}; + +struct ConcurrentDictionary_2_TKey_TValue_Node_System_String_System_String___Array__VTable { +}; + +struct ConcurrentDictionary_2_TKey_TValue_Node_System_String_System_String___Array__StaticFields { +}; + +struct ConcurrentDictionary_2_TKey_TValue_Node_System_String_System_String___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ConcurrentDictionary_2_TKey_TValue_Node_System_String_System_String___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ConcurrentDictionary_2_TKey_TValue_Node_System_String_System_String___Array__VTable vtable; +}; + +struct ConcurrentDictionary_2_TKey_TValue_Tables_System_String_System_String___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ConcurrentDictionary_2_TKey_TValue_Tables_System_String_System_String___StaticFields { +}; + +struct ConcurrentDictionary_2_TKey_TValue_Tables_System_String_System_String___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ConcurrentDictionary_2_TKey_TValue_Tables_System_String_System_String___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ConcurrentDictionary_2_TKey_TValue_Tables_System_String_System_String___VTable vtable; +}; + +struct ConcurrentDictionary_2_System_String_System_String___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData get_Keys; + VirtualInvokeData get_Values; + VirtualInvokeData ContainsKey; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__Add; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__Remove; + VirtualInvokeData TryGetValue; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add; + VirtualInvokeData Clear; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove; + VirtualInvokeData GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_get_Item; + VirtualInvokeData System_Collections_IDictionary_set_Item; + VirtualInvokeData System_Collections_IDictionary_get_Keys; + VirtualInvokeData System_Collections_IDictionary_get_Values; + VirtualInvokeData System_Collections_IDictionary_Contains; + VirtualInvokeData System_Collections_IDictionary_Add; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IDictionary_get_IsReadOnly; + VirtualInvokeData System_Collections_IDictionary_get_IsFixedSize; + VirtualInvokeData System_Collections_IDictionary_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_Remove; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData TryGetValue_1; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Values; + VirtualInvokeData get_Count_2; +}; + +struct ConcurrentDictionary_2_System_String_System_String___StaticFields { + bool s_isValueWriteAtomic; +}; + +struct ConcurrentDictionary_2_System_String_System_String___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ConcurrentDictionary_2_System_String_System_String___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ConcurrentDictionary_2_System_String_System_String___VTable vtable; +}; + +struct OidLookup { + struct OidLookup__Class *klass; + MonitorData *monitor; +}; + +struct OidLookup__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct OidLookup__StaticFields { + struct ConcurrentDictionary_2_System_String_System_String_ *s_lateBoundOidToFriendlyName; + struct ConcurrentDictionary_2_System_String_System_String_ *s_lateBoundFriendlyNameToOid; + struct Dictionary_2_System_String_System_String_ *s_friendlyNameToOid; + struct Dictionary_2_System_String_System_String_ *s_oidToFriendlyName; + struct Dictionary_2_System_String_System_String_ *s_compatOids; +}; + +struct OidLookup__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct OidLookup__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct OidLookup__VTable vtable; +}; + +struct ILayoutSelfController { + struct ILayoutSelfController__Class *klass; + MonitorData *monitor; +}; + +struct ILayoutSelfController__VTable { +}; + +struct ILayoutSelfController__StaticFields { +}; + +struct ILayoutSelfController__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ILayoutSelfController__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ILayoutSelfController__VTable vtable; +}; + +struct ILayoutGroup { + struct ILayoutGroup__Class *klass; + MonitorData *monitor; +}; + +struct ILayoutGroup__VTable { +}; + +struct ILayoutGroup__StaticFields { +}; + +struct ILayoutGroup__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ILayoutGroup__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ILayoutGroup__VTable vtable; +}; + +struct RectOffset___VTable { +}; + +struct RectOffset___StaticFields { +}; + +struct RectOffset___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RectOffset___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RectOffset___VTable vtable; +}; + +struct ILayoutIgnorer { + struct ILayoutIgnorer__Class *klass; + MonitorData *monitor; +}; + +struct ILayoutIgnorer__VTable { + VirtualInvokeData get_ignoreLayout; +}; + +struct ILayoutIgnorer__StaticFields { +}; + +struct ILayoutIgnorer__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ILayoutIgnorer__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ILayoutIgnorer__VTable vtable; +}; + +struct TextAnchor___VTable { +}; + +struct TextAnchor___StaticFields { +}; + +struct TextAnchor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TextAnchor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TextAnchor___VTable vtable; +}; + +struct GridLayoutGroup_Constraint___VTable { +}; + +struct GridLayoutGroup_Constraint___StaticFields { +}; + +struct GridLayoutGroup_Constraint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GridLayoutGroup_Constraint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GridLayoutGroup_Constraint___VTable vtable; +}; + +struct ContentSizeFitter_FitMode___VTable { +}; + +struct ContentSizeFitter_FitMode___StaticFields { +}; + +struct ContentSizeFitter_FitMode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ContentSizeFitter_FitMode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ContentSizeFitter_FitMode___VTable vtable; +}; + +struct GridLayoutGroup_Corner___VTable { +}; + +struct GridLayoutGroup_Corner___StaticFields { +}; + +struct GridLayoutGroup_Corner___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GridLayoutGroup_Corner___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GridLayoutGroup_Corner___VTable vtable; +}; + +struct GridLayoutGroup_Axis___VTable { +}; + +struct GridLayoutGroup_Axis___StaticFields { +}; + +struct GridLayoutGroup_Axis___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GridLayoutGroup_Axis___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GridLayoutGroup_Axis___VTable vtable; +}; + +struct AspectRatioFitter_AspectMode___VTable { +}; + +struct AspectRatioFitter_AspectMode___StaticFields { +}; + +struct AspectRatioFitter_AspectMode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct AspectRatioFitter_AspectMode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct AspectRatioFitter_AspectMode___VTable vtable; +}; + +struct ICollection_1_UnityEngine_UICharInfo_ { + struct ICollection_1_UnityEngine_UICharInfo___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_UnityEngine_UICharInfo___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_UnityEngine_UICharInfo___StaticFields { +}; + +struct ICollection_1_UnityEngine_UICharInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_UnityEngine_UICharInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_UnityEngine_UICharInfo___VTable vtable; +}; + +struct ICollection_1_UnityEngine_UILineInfo_ { + struct ICollection_1_UnityEngine_UILineInfo___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_UnityEngine_UILineInfo___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_UnityEngine_UILineInfo___StaticFields { +}; + +struct ICollection_1_UnityEngine_UILineInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_UnityEngine_UILineInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_UnityEngine_UILineInfo___VTable vtable; +}; + +struct InputField_InputType___VTable { +}; + +struct InputField_InputType___StaticFields { +}; + +struct InputField_InputType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputField_InputType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputField_InputType___VTable vtable; +}; + +struct InputField_LineType___VTable { +}; + +struct InputField_LineType___StaticFields { +}; + +struct InputField_LineType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputField_LineType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputField_LineType___VTable vtable; +}; + +struct InputField_ContentType___VTable { +}; + +struct InputField_ContentType___StaticFields { +}; + +struct InputField_ContentType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputField_ContentType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputField_ContentType___VTable vtable; +}; + +struct InputField_CharacterValidation___VTable { +}; + +struct InputField_CharacterValidation___StaticFields { +}; + +struct InputField_CharacterValidation___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputField_CharacterValidation___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputField_CharacterValidation___VTable vtable; +}; + +struct Text___VTable { +}; + +struct Text___StaticFields { +}; + +struct Text___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Text___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Text___VTable vtable; +}; + +struct InputField_SubmitEvent___VTable { +}; + +struct InputField_SubmitEvent___StaticFields { +}; + +struct InputField_SubmitEvent___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputField_SubmitEvent___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputField_SubmitEvent___VTable vtable; +}; + +struct InputField_EndEditEvent___VTable { +}; + +struct InputField_EndEditEvent___StaticFields { +}; + +struct InputField_EndEditEvent___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputField_EndEditEvent___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputField_EndEditEvent___VTable vtable; +}; + +struct InputField_OnValidateInput___VTable { +}; + +struct InputField_OnValidateInput___StaticFields { +}; + +struct InputField_OnValidateInput___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputField_OnValidateInput___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputField_OnValidateInput___VTable vtable; +}; + +struct InputField_OnChangeEvent___VTable { +}; + +struct InputField_OnChangeEvent___StaticFields { +}; + +struct InputField_OnChangeEvent___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputField_OnChangeEvent___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputField_OnChangeEvent___VTable vtable; +}; + +struct List_1_T_Enumerator_UnityEngine_Collider_ { + struct List_1_UnityEngine_Collider_ *_list; + int32_t _index; + int32_t _version; + struct Collider *_current; +}; + +struct List_1_T_Enumerator_UnityEngine_Collider___Boxed { + struct List_1_T_Enumerator_UnityEngine_Collider___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_UnityEngine_Collider_ fields; +}; + +struct List_1_T_Enumerator_UnityEngine_Collider___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_UnityEngine_Collider___StaticFields { +}; + +struct List_1_T_Enumerator_UnityEngine_Collider___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_UnityEngine_Collider___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_UnityEngine_Collider___VTable vtable; +}; + +struct List_1_T_Enumerator_Photon_Bolt_BoltEntity_ { + struct List_1_Photon_Bolt_BoltEntity_ *_list; + int32_t _index; + int32_t _version; + struct BoltEntity *_current; +}; + +struct List_1_T_Enumerator_Photon_Bolt_BoltEntity___Boxed { + struct List_1_T_Enumerator_Photon_Bolt_BoltEntity___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_Photon_Bolt_BoltEntity_ fields; +}; + +struct List_1_T_Enumerator_Photon_Bolt_BoltEntity___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_Photon_Bolt_BoltEntity___StaticFields { +}; + +struct List_1_T_Enumerator_Photon_Bolt_BoltEntity___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_Photon_Bolt_BoltEntity___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_Photon_Bolt_BoltEntity___VTable vtable; +}; + +struct IObjectPool_1_Rewired_HID_HIDGyroscope_DeAenLGYTqNyWDVKOCMDwbfhHVkGA_ { + struct IObjectPool_1_Rewired_HID_HIDGyroscope_DeAenLGYTqNyWDVKOCMDwbfhHVkGA___Class *klass; + MonitorData *monitor; +}; + +struct IObjectPool_1_Rewired_HID_HIDGyroscope_DeAenLGYTqNyWDVKOCMDwbfhHVkGA___VTable { + VirtualInvokeData Clear; + VirtualInvokeData Get; + VirtualInvokeData Return; +}; + +struct IObjectPool_1_Rewired_HID_HIDGyroscope_DeAenLGYTqNyWDVKOCMDwbfhHVkGA___StaticFields { +}; + +struct IObjectPool_1_Rewired_HID_HIDGyroscope_DeAenLGYTqNyWDVKOCMDwbfhHVkGA___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IObjectPool_1_Rewired_HID_HIDGyroscope_DeAenLGYTqNyWDVKOCMDwbfhHVkGA___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IObjectPool_1_Rewired_HID_HIDGyroscope_DeAenLGYTqNyWDVKOCMDwbfhHVkGA___VTable vtable; +}; + +struct __declspec(align(8)) List_1_Rewired_HID_HIDControllerElementWithDataSet_oBWNdsGlGNkIvPlfnFirbraBbQXRA___Fields { + struct HIDControllerElementWithDataSet_oBWNdsGlGNkIvPlfnFirbraBbQXRA__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Rewired_HID_HIDControllerElementWithDataSet_oBWNdsGlGNkIvPlfnFirbraBbQXRA_ { + struct List_1_Rewired_HID_HIDControllerElementWithDataSet_oBWNdsGlGNkIvPlfnFirbraBbQXRA___Class *klass; + MonitorData *monitor; + struct List_1_Rewired_HID_HIDControllerElementWithDataSet_oBWNdsGlGNkIvPlfnFirbraBbQXRA___Fields fields; +}; + +struct IEnumerator_1_Rewired_HID_HIDControllerElementWithDataSet_oBWNdsGlGNkIvPlfnFirbraBbQXRA_ { + struct IEnumerator_1_Rewired_HID_HIDControllerElementWithDataSet_oBWNdsGlGNkIvPlfnFirbraBbQXRA___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerator_1_Rewired_HID_HIDControllerElementWithDataSet_oBWNdsGlGNkIvPlfnFirbraBbQXRA___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_Rewired_HID_HIDControllerElementWithDataSet_oBWNdsGlGNkIvPlfnFirbraBbQXRA___StaticFields { +}; + +struct IEnumerator_1_Rewired_HID_HIDControllerElementWithDataSet_oBWNdsGlGNkIvPlfnFirbraBbQXRA___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_Rewired_HID_HIDControllerElementWithDataSet_oBWNdsGlGNkIvPlfnFirbraBbQXRA___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_Rewired_HID_HIDControllerElementWithDataSet_oBWNdsGlGNkIvPlfnFirbraBbQXRA___VTable vtable; +}; + +struct List_1_Rewired_HID_HIDControllerElementWithDataSet_oBWNdsGlGNkIvPlfnFirbraBbQXRA___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_Rewired_HID_HIDControllerElementWithDataSet_oBWNdsGlGNkIvPlfnFirbraBbQXRA___StaticFields { + struct HIDControllerElementWithDataSet_oBWNdsGlGNkIvPlfnFirbraBbQXRA__Array *s_emptyArray; +}; + +struct List_1_Rewired_HID_HIDControllerElementWithDataSet_oBWNdsGlGNkIvPlfnFirbraBbQXRA___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Rewired_HID_HIDControllerElementWithDataSet_oBWNdsGlGNkIvPlfnFirbraBbQXRA___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Rewired_HID_HIDControllerElementWithDataSet_oBWNdsGlGNkIvPlfnFirbraBbQXRA___VTable vtable; +}; + +struct Comparison_1_Rewired_InputManagers_CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Comparison_1_Rewired_InputManagers_CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf_ { + struct Comparison_1_Rewired_InputManagers_CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf___Class *klass; + MonitorData *monitor; + struct Comparison_1_Rewired_InputManagers_CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf___Fields fields; +}; + +struct Comparison_1_Rewired_InputManagers_CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Comparison_1_Rewired_InputManagers_CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf___StaticFields { +}; + +struct Comparison_1_Rewired_InputManagers_CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Comparison_1_Rewired_InputManagers_CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Comparison_1_Rewired_InputManagers_CustomInputManager_mmFsXwMiPuiLJOskemlPkNsdrQcf___VTable vtable; +}; + +struct ICollection_1_gzbiKNGlSyvLxnIubujCpzSuqtOe_ { + struct ICollection_1_gzbiKNGlSyvLxnIubujCpzSuqtOe___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_gzbiKNGlSyvLxnIubujCpzSuqtOe___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_gzbiKNGlSyvLxnIubujCpzSuqtOe___StaticFields { +}; + +struct ICollection_1_gzbiKNGlSyvLxnIubujCpzSuqtOe___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_gzbiKNGlSyvLxnIubujCpzSuqtOe___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_gzbiKNGlSyvLxnIubujCpzSuqtOe___VTable vtable; +}; + +struct Comparison_1_OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Comparison_1_OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb_ { + struct Comparison_1_OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb___Class *klass; + MonitorData *monitor; + struct Comparison_1_OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb___Fields fields; +}; + +struct Comparison_1_OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Comparison_1_OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb___StaticFields { +}; + +struct Comparison_1_OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Comparison_1_OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Comparison_1_OkyanDQiQpkIuPEcUGkHHQHEBNIcb_sHQLgJQMwRzSgbpnlIZedVujIDGDb___VTable vtable; +}; + +struct INotifyCollectionChanged { + struct INotifyCollectionChanged__Class *klass; + MonitorData *monitor; +}; + +struct INotifyCollectionChanged__VTable { + VirtualInvokeData add_CollectionChanged; + VirtualInvokeData remove_CollectionChanged; +}; + +struct INotifyCollectionChanged__StaticFields { +}; + +struct INotifyCollectionChanged__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct INotifyCollectionChanged__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct INotifyCollectionChanged__VTable vtable; +}; + +struct UnityInputHelper { + struct UnityInputHelper__Class *klass; + MonitorData *monitor; +}; + +struct UnityInputHelper__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct UnityInputHelper__StaticFields { + struct UnityInputHelper_BsGTYoHaOPgYWtEHeGSpZoDeQUUw__Array *DGXwTeSTHgvinGKMZcCYhqMnwPPRA; +}; + +struct UnityInputHelper__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UnityInputHelper__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UnityInputHelper__VTable vtable; +}; + +struct __declspec(align(8)) ReadOnlyCollection_1_Rewired_ControllerMap___Fields { + struct IList_1_Rewired_ControllerMap_ *list; + struct Object *_syncRoot; +}; + +struct ReadOnlyCollection_1_Rewired_ControllerMap_ { + struct ReadOnlyCollection_1_Rewired_ControllerMap___Class *klass; + MonitorData *monitor; + struct ReadOnlyCollection_1_Rewired_ControllerMap___Fields fields; +}; + +struct ReadOnlyCollection_1_Rewired_ControllerMap___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_Generic_IList_T__get_Item; + VirtualInvokeData System_Collections_Generic_IList_T__set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData System_Collections_Generic_IList_T__Insert; + VirtualInvokeData System_Collections_Generic_IList_T__RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_T__Add; + VirtualInvokeData System_Collections_Generic_ICollection_T__Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_T__Remove; + VirtualInvokeData GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData System_Collections_IList_Clear; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData System_Collections_IList_RemoveAt; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item; + VirtualInvokeData get_Count_2; +}; + +struct ReadOnlyCollection_1_Rewired_ControllerMap___StaticFields { +}; + +struct ReadOnlyCollection_1_Rewired_ControllerMap___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ReadOnlyCollection_1_Rewired_ControllerMap___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ReadOnlyCollection_1_Rewired_ControllerMap___VTable vtable; +}; + +struct __declspec(align(8)) List_1_Rewired_Utils_Classes_Utility_ValueWatcher___Fields { + struct ValueWatcher__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Rewired_Utils_Classes_Utility_ValueWatcher_ { + struct List_1_Rewired_Utils_Classes_Utility_ValueWatcher___Class *klass; + MonitorData *monitor; + struct List_1_Rewired_Utils_Classes_Utility_ValueWatcher___Fields fields; +}; + +struct IEnumerator_1_Rewired_Utils_Classes_Utility_ValueWatcher_ { + struct IEnumerator_1_Rewired_Utils_Classes_Utility_ValueWatcher___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerator_1_Rewired_Utils_Classes_Utility_ValueWatcher___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_Rewired_Utils_Classes_Utility_ValueWatcher___StaticFields { +}; + +struct IEnumerator_1_Rewired_Utils_Classes_Utility_ValueWatcher___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_Rewired_Utils_Classes_Utility_ValueWatcher___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_Rewired_Utils_Classes_Utility_ValueWatcher___VTable vtable; +}; + +struct List_1_Rewired_Utils_Classes_Utility_ValueWatcher___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_Rewired_Utils_Classes_Utility_ValueWatcher___StaticFields { + struct ValueWatcher__Array *s_emptyArray; +}; + +struct List_1_Rewired_Utils_Classes_Utility_ValueWatcher___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Rewired_Utils_Classes_Utility_ValueWatcher___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Rewired_Utils_Classes_Utility_ValueWatcher___VTable vtable; +}; + +struct List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__1 { + struct List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__1 *_list; + int32_t _index; + int32_t _version; + struct AsyncOperationHandle_1_UnityEngine_Material_ _current; +}; + +struct List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__1__Boxed { + struct List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__1__Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__1 fields; +}; + +struct List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__1__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__1__StaticFields { +}; + +struct List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__1__VTable vtable; +}; + +struct List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__2 { + struct List_1_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1_ *_list; + int32_t _index; + int32_t _version; + struct AsyncOperationHandle_1_UnityEngine_GameObject_ _current; +}; + +struct List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__2__Boxed { + struct List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__2__Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__2 fields; +}; + +struct List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__2__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__2__StaticFields { +}; + +struct List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__2__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__2__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_UnityEngine_ResourceManagement_AsyncOperations_AsyncOperationHandle_1__2__VTable vtable; +}; + +struct IList_1_System_Text_RegularExpressions_Match_ { + struct IList_1_System_Text_RegularExpressions_Match___Class *klass; + MonitorData *monitor; +}; + +struct IList_1_System_Text_RegularExpressions_Match___VTable { + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; +}; + +struct IList_1_System_Text_RegularExpressions_Match___StaticFields { +}; + +struct IList_1_System_Text_RegularExpressions_Match___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IList_1_System_Text_RegularExpressions_Match___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IList_1_System_Text_RegularExpressions_Match___VTable vtable; +}; + +struct ICollection_1_System_Text_RegularExpressions_Match_ { + struct ICollection_1_System_Text_RegularExpressions_Match___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_System_Text_RegularExpressions_Match___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_System_Text_RegularExpressions_Match___StaticFields { +}; + +struct ICollection_1_System_Text_RegularExpressions_Match___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_System_Text_RegularExpressions_Match___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_System_Text_RegularExpressions_Match___VTable vtable; +}; + +struct EqualityComparer_1_System_Text_RegularExpressions_Group_ { + struct EqualityComparer_1_System_Text_RegularExpressions_Group___Class *klass; + MonitorData *monitor; +}; + +struct EqualityComparer_1_System_Text_RegularExpressions_Group___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_IEqualityComparer_Equals; + VirtualInvokeData System_Collections_IEqualityComparer_GetHashCode; + VirtualInvokeData Equals_1; + VirtualInvokeData GetHashCode_1; + VirtualInvokeData __unknown; + VirtualInvokeData __unknown_1; + VirtualInvokeData IndexOf; + VirtualInvokeData LastIndexOf; +}; + +struct EqualityComparer_1_System_Text_RegularExpressions_Group___StaticFields { + struct EqualityComparer_1_System_Text_RegularExpressions_Group_ *defaultComparer; +}; + +struct EqualityComparer_1_System_Text_RegularExpressions_Group___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EqualityComparer_1_System_Text_RegularExpressions_Group___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EqualityComparer_1_System_Text_RegularExpressions_Group___VTable vtable; +}; + +struct ICollection_1_System_Text_RegularExpressions_Group_ { + struct ICollection_1_System_Text_RegularExpressions_Group___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_System_Text_RegularExpressions_Group___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_System_Text_RegularExpressions_Group___StaticFields { +}; + +struct ICollection_1_System_Text_RegularExpressions_Group___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_System_Text_RegularExpressions_Group___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_System_Text_RegularExpressions_Group___VTable vtable; +}; + +struct IList_1_System_Text_RegularExpressions_Group_ { + struct IList_1_System_Text_RegularExpressions_Group___Class *klass; + MonitorData *monitor; +}; + +struct IList_1_System_Text_RegularExpressions_Group___VTable { + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; +}; + +struct IList_1_System_Text_RegularExpressions_Group___StaticFields { +}; + +struct IList_1_System_Text_RegularExpressions_Group___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IList_1_System_Text_RegularExpressions_Group___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IList_1_System_Text_RegularExpressions_Group___VTable vtable; +}; + +struct IList_1_System_Text_RegularExpressions_Capture_ { + struct IList_1_System_Text_RegularExpressions_Capture___Class *klass; + MonitorData *monitor; +}; + +struct IList_1_System_Text_RegularExpressions_Capture___VTable { + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; +}; + +struct IList_1_System_Text_RegularExpressions_Capture___StaticFields { +}; + +struct IList_1_System_Text_RegularExpressions_Capture___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IList_1_System_Text_RegularExpressions_Capture___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IList_1_System_Text_RegularExpressions_Capture___VTable vtable; +}; + +struct ICollection_1_System_Text_RegularExpressions_Capture_ { + struct ICollection_1_System_Text_RegularExpressions_Capture___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_System_Text_RegularExpressions_Capture___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_System_Text_RegularExpressions_Capture___StaticFields { +}; + +struct ICollection_1_System_Text_RegularExpressions_Capture___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_System_Text_RegularExpressions_Capture___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_System_Text_RegularExpressions_Capture___VTable vtable; +}; + +struct EqualityComparer_1_System_Text_RegularExpressions_Capture_ { + struct EqualityComparer_1_System_Text_RegularExpressions_Capture___Class *klass; + MonitorData *monitor; +}; + +struct EqualityComparer_1_System_Text_RegularExpressions_Capture___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_IEqualityComparer_Equals; + VirtualInvokeData System_Collections_IEqualityComparer_GetHashCode; + VirtualInvokeData Equals_1; + VirtualInvokeData GetHashCode_1; + VirtualInvokeData __unknown; + VirtualInvokeData __unknown_1; + VirtualInvokeData IndexOf; + VirtualInvokeData LastIndexOf; +}; + +struct EqualityComparer_1_System_Text_RegularExpressions_Capture___StaticFields { + struct EqualityComparer_1_System_Text_RegularExpressions_Capture_ *defaultComparer; +}; + +struct EqualityComparer_1_System_Text_RegularExpressions_Capture___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EqualityComparer_1_System_Text_RegularExpressions_Capture___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EqualityComparer_1_System_Text_RegularExpressions_Capture___VTable vtable; +}; + +struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_UIVertex_ { + struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_UIVertex___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) ObjectPool_1_System_Collections_Generic_List_1__12__Fields { + struct List_1_List_1_UnityEngine_UIVertex_ *m_List; + struct Func_1_System_Collections_Generic_List_1__20 *m_CreateFunc; + struct Action_1_System_Collections_Generic_List_1__16 *m_ActionOnGet; + struct Action_1_System_Collections_Generic_List_1__16 *m_ActionOnRelease; + struct Action_1_System_Collections_Generic_List_1__16 *m_ActionOnDestroy; + int32_t m_MaxSize; + bool m_CollectionCheck; + int32_t _CountAll_k__BackingField; +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__12 { + struct ObjectPool_1_System_Collections_Generic_List_1__12__Class *klass; + MonitorData *monitor; + struct ObjectPool_1_System_Collections_Generic_List_1__12__Fields fields; +}; + +struct __declspec(align(8)) List_1_List_1_UnityEngine_UIVertex___Fields { + struct List_1_UnityEngine_UIVertex___Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_List_1_UnityEngine_UIVertex_ { + struct List_1_List_1_UnityEngine_UIVertex___Class *klass; + MonitorData *monitor; + struct List_1_List_1_UnityEngine_UIVertex___Fields fields; +}; + +struct List_1_UnityEngine_UIVertex___Array { + struct List_1_UnityEngine_UIVertex___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct List_1_UnityEngine_UIVertex_ *vector[32]; +}; + +struct IEnumerator_1_List_1_UnityEngine_UIVertex_ { + struct IEnumerator_1_List_1_UnityEngine_UIVertex___Class *klass; + MonitorData *monitor; +}; + +struct Func_1_System_Collections_Generic_List_1__20__Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_1_System_Collections_Generic_List_1__20 { + struct Func_1_System_Collections_Generic_List_1__20__Class *klass; + MonitorData *monitor; + struct Func_1_System_Collections_Generic_List_1__20__Fields fields; +}; + +struct Action_1_System_Collections_Generic_List_1__16__Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_1_System_Collections_Generic_List_1__16 { + struct Action_1_System_Collections_Generic_List_1__16__Class *klass; + MonitorData *monitor; + struct Action_1_System_Collections_Generic_List_1__16__Fields fields; +}; + +struct PooledObject_1_System_Collections_Generic_List_1__7 { + struct List_1_UnityEngine_UIVertex_ *m_ToReturn; + struct IObjectPool_1_System_Collections_Generic_List_1__7 *m_Pool; +}; + +struct PooledObject_1_System_Collections_Generic_List_1__7__Boxed { + struct PooledObject_1_System_Collections_Generic_List_1__7__Class *klass; + MonitorData *monitor; + struct PooledObject_1_System_Collections_Generic_List_1__7 fields; +}; + +struct IObjectPool_1_System_Collections_Generic_List_1__7 { + struct IObjectPool_1_System_Collections_Generic_List_1__7__Class *klass; + MonitorData *monitor; +}; + +struct List_1_UnityEngine_UIVertex___Array__VTable { +}; + +struct List_1_UnityEngine_UIVertex___Array__StaticFields { +}; + +struct List_1_UnityEngine_UIVertex___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_UIVertex___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_UIVertex___Array__VTable vtable; +}; + +struct IEnumerator_1_List_1_UnityEngine_UIVertex___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_List_1_UnityEngine_UIVertex___StaticFields { +}; + +struct IEnumerator_1_List_1_UnityEngine_UIVertex___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_List_1_UnityEngine_UIVertex___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_List_1_UnityEngine_UIVertex___VTable vtable; +}; + +struct List_1_List_1_UnityEngine_UIVertex___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_List_1_UnityEngine_UIVertex___StaticFields { + struct List_1_UnityEngine_UIVertex___Array *s_emptyArray; +}; + +struct List_1_List_1_UnityEngine_UIVertex___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_List_1_UnityEngine_UIVertex___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_List_1_UnityEngine_UIVertex___VTable vtable; +}; + +struct Func_1_System_Collections_Generic_List_1__20__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_1_System_Collections_Generic_List_1__20__StaticFields { +}; + +struct Func_1_System_Collections_Generic_List_1__20__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_1_System_Collections_Generic_List_1__20__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_1_System_Collections_Generic_List_1__20__VTable vtable; +}; + +struct Action_1_System_Collections_Generic_List_1__16__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_1_System_Collections_Generic_List_1__16__StaticFields { +}; + +struct Action_1_System_Collections_Generic_List_1__16__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_1_System_Collections_Generic_List_1__16__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_1_System_Collections_Generic_List_1__16__VTable vtable; +}; + +struct IObjectPool_1_System_Collections_Generic_List_1__7__VTable { + VirtualInvokeData Release; +}; + +struct IObjectPool_1_System_Collections_Generic_List_1__7__StaticFields { +}; + +struct IObjectPool_1_System_Collections_Generic_List_1__7__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IObjectPool_1_System_Collections_Generic_List_1__7__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IObjectPool_1_System_Collections_Generic_List_1__7__VTable vtable; +}; + +struct PooledObject_1_System_Collections_Generic_List_1__7__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_IDisposable_Dispose; +}; + +struct PooledObject_1_System_Collections_Generic_List_1__7__StaticFields { +}; + +struct PooledObject_1_System_Collections_Generic_List_1__7__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PooledObject_1_System_Collections_Generic_List_1__7__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PooledObject_1_System_Collections_Generic_List_1__7__VTable vtable; +}; + +struct List_1_UnityEngine_UIVertex__1__VTable { +}; + +struct List_1_UnityEngine_UIVertex__1__StaticFields { +}; + +struct List_1_UnityEngine_UIVertex__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_UIVertex__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_UIVertex__1__VTable vtable; +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__12__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Dispose; + VirtualInvokeData Release; + VirtualInvokeData get_CountInactive; + VirtualInvokeData Get; + VirtualInvokeData Get_1; + VirtualInvokeData Clear; +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__12__StaticFields { +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__12__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ObjectPool_1_System_Collections_Generic_List_1__12__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ObjectPool_1_System_Collections_Generic_List_1__12__VTable vtable; +}; + +struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_UIVertex___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_UIVertex___StaticFields { + struct ObjectPool_1_System_Collections_Generic_List_1__12 *s_Pool; +}; + +struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_UIVertex___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_UIVertex___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_UIVertex___VTable vtable; +}; + +struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_Vector4_ { + struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_Vector4___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) ObjectPool_1_System_Collections_Generic_List_1__13__Fields { + struct List_1_List_1_UnityEngine_Vector4_ *m_List; + struct Func_1_System_Collections_Generic_List_1__21 *m_CreateFunc; + struct Action_1_System_Collections_Generic_List_1__17 *m_ActionOnGet; + struct Action_1_System_Collections_Generic_List_1__17 *m_ActionOnRelease; + struct Action_1_System_Collections_Generic_List_1__17 *m_ActionOnDestroy; + int32_t m_MaxSize; + bool m_CollectionCheck; + int32_t _CountAll_k__BackingField; +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__13 { + struct ObjectPool_1_System_Collections_Generic_List_1__13__Class *klass; + MonitorData *monitor; + struct ObjectPool_1_System_Collections_Generic_List_1__13__Fields fields; +}; + +struct __declspec(align(8)) List_1_List_1_UnityEngine_Vector4___Fields { + struct List_1_UnityEngine_Vector4___Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_List_1_UnityEngine_Vector4_ { + struct List_1_List_1_UnityEngine_Vector4___Class *klass; + MonitorData *monitor; + struct List_1_List_1_UnityEngine_Vector4___Fields fields; +}; + +struct List_1_UnityEngine_Vector4___Array { + struct List_1_UnityEngine_Vector4___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct List_1_UnityEngine_Vector4_ *vector[32]; +}; + +struct IEnumerator_1_List_1_UnityEngine_Vector4_ { + struct IEnumerator_1_List_1_UnityEngine_Vector4___Class *klass; + MonitorData *monitor; +}; + +struct Func_1_System_Collections_Generic_List_1__21__Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_1_System_Collections_Generic_List_1__21 { + struct Func_1_System_Collections_Generic_List_1__21__Class *klass; + MonitorData *monitor; + struct Func_1_System_Collections_Generic_List_1__21__Fields fields; +}; + +struct Action_1_System_Collections_Generic_List_1__17__Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_1_System_Collections_Generic_List_1__17 { + struct Action_1_System_Collections_Generic_List_1__17__Class *klass; + MonitorData *monitor; + struct Action_1_System_Collections_Generic_List_1__17__Fields fields; +}; + +struct PooledObject_1_System_Collections_Generic_List_1__8 { + struct List_1_UnityEngine_Vector4_ *m_ToReturn; + struct IObjectPool_1_System_Collections_Generic_List_1__8 *m_Pool; +}; + +struct PooledObject_1_System_Collections_Generic_List_1__8__Boxed { + struct PooledObject_1_System_Collections_Generic_List_1__8__Class *klass; + MonitorData *monitor; + struct PooledObject_1_System_Collections_Generic_List_1__8 fields; +}; + +struct IObjectPool_1_System_Collections_Generic_List_1__8 { + struct IObjectPool_1_System_Collections_Generic_List_1__8__Class *klass; + MonitorData *monitor; +}; + +struct List_1_UnityEngine_Vector4___Array__VTable { +}; + +struct List_1_UnityEngine_Vector4___Array__StaticFields { +}; + +struct List_1_UnityEngine_Vector4___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_Vector4___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_Vector4___Array__VTable vtable; +}; + +struct IEnumerator_1_List_1_UnityEngine_Vector4___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_List_1_UnityEngine_Vector4___StaticFields { +}; + +struct IEnumerator_1_List_1_UnityEngine_Vector4___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_List_1_UnityEngine_Vector4___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_List_1_UnityEngine_Vector4___VTable vtable; +}; + +struct List_1_List_1_UnityEngine_Vector4___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_List_1_UnityEngine_Vector4___StaticFields { + struct List_1_UnityEngine_Vector4___Array *s_emptyArray; +}; + +struct List_1_List_1_UnityEngine_Vector4___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_List_1_UnityEngine_Vector4___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_List_1_UnityEngine_Vector4___VTable vtable; +}; + +struct Func_1_System_Collections_Generic_List_1__21__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_1_System_Collections_Generic_List_1__21__StaticFields { +}; + +struct Func_1_System_Collections_Generic_List_1__21__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_1_System_Collections_Generic_List_1__21__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_1_System_Collections_Generic_List_1__21__VTable vtable; +}; + +struct Action_1_System_Collections_Generic_List_1__17__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_1_System_Collections_Generic_List_1__17__StaticFields { +}; + +struct Action_1_System_Collections_Generic_List_1__17__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_1_System_Collections_Generic_List_1__17__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_1_System_Collections_Generic_List_1__17__VTable vtable; +}; + +struct IObjectPool_1_System_Collections_Generic_List_1__8__VTable { + VirtualInvokeData Release; +}; + +struct IObjectPool_1_System_Collections_Generic_List_1__8__StaticFields { +}; + +struct IObjectPool_1_System_Collections_Generic_List_1__8__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IObjectPool_1_System_Collections_Generic_List_1__8__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IObjectPool_1_System_Collections_Generic_List_1__8__VTable vtable; +}; + +struct PooledObject_1_System_Collections_Generic_List_1__8__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_IDisposable_Dispose; +}; + +struct PooledObject_1_System_Collections_Generic_List_1__8__StaticFields { +}; + +struct PooledObject_1_System_Collections_Generic_List_1__8__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PooledObject_1_System_Collections_Generic_List_1__8__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PooledObject_1_System_Collections_Generic_List_1__8__VTable vtable; +}; + +struct List_1_UnityEngine_Vector4__1__VTable { +}; + +struct List_1_UnityEngine_Vector4__1__StaticFields { +}; + +struct List_1_UnityEngine_Vector4__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_Vector4__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_Vector4__1__VTable vtable; +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__13__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Dispose; + VirtualInvokeData Release; + VirtualInvokeData get_CountInactive; + VirtualInvokeData Get; + VirtualInvokeData Get_1; + VirtualInvokeData Clear; +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__13__StaticFields { +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__13__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ObjectPool_1_System_Collections_Generic_List_1__13__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ObjectPool_1_System_Collections_Generic_List_1__13__VTable vtable; +}; + +struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_Vector4___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_Vector4___StaticFields { + struct ObjectPool_1_System_Collections_Generic_List_1__13 *s_Pool; +}; + +struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_Vector4___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_Vector4___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_Vector4___VTable vtable; +}; + +struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_Color32_ { + struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_Color32___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) ObjectPool_1_System_Collections_Generic_List_1__14__Fields { + struct List_1_List_1_UnityEngine_Color32_ *m_List; + struct Func_1_System_Collections_Generic_List_1__22 *m_CreateFunc; + struct Action_1_System_Collections_Generic_List_1__18 *m_ActionOnGet; + struct Action_1_System_Collections_Generic_List_1__18 *m_ActionOnRelease; + struct Action_1_System_Collections_Generic_List_1__18 *m_ActionOnDestroy; + int32_t m_MaxSize; + bool m_CollectionCheck; + int32_t _CountAll_k__BackingField; +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__14 { + struct ObjectPool_1_System_Collections_Generic_List_1__14__Class *klass; + MonitorData *monitor; + struct ObjectPool_1_System_Collections_Generic_List_1__14__Fields fields; +}; + +struct Func_1_System_Collections_Generic_List_1__22__Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_1_System_Collections_Generic_List_1__22 { + struct Func_1_System_Collections_Generic_List_1__22__Class *klass; + MonitorData *monitor; + struct Func_1_System_Collections_Generic_List_1__22__Fields fields; +}; + +struct Action_1_System_Collections_Generic_List_1__18__Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_1_System_Collections_Generic_List_1__18 { + struct Action_1_System_Collections_Generic_List_1__18__Class *klass; + MonitorData *monitor; + struct Action_1_System_Collections_Generic_List_1__18__Fields fields; +}; + +struct PooledObject_1_System_Collections_Generic_List_1__9 { + struct List_1_UnityEngine_Color32_ *m_ToReturn; + struct IObjectPool_1_System_Collections_Generic_List_1__9 *m_Pool; +}; + +struct PooledObject_1_System_Collections_Generic_List_1__9__Boxed { + struct PooledObject_1_System_Collections_Generic_List_1__9__Class *klass; + MonitorData *monitor; + struct PooledObject_1_System_Collections_Generic_List_1__9 fields; +}; + +struct IObjectPool_1_System_Collections_Generic_List_1__9 { + struct IObjectPool_1_System_Collections_Generic_List_1__9__Class *klass; + MonitorData *monitor; +}; + +struct Func_1_System_Collections_Generic_List_1__22__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_1_System_Collections_Generic_List_1__22__StaticFields { +}; + +struct Func_1_System_Collections_Generic_List_1__22__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_1_System_Collections_Generic_List_1__22__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_1_System_Collections_Generic_List_1__22__VTable vtable; +}; + +struct Action_1_System_Collections_Generic_List_1__18__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_1_System_Collections_Generic_List_1__18__StaticFields { +}; + +struct Action_1_System_Collections_Generic_List_1__18__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_1_System_Collections_Generic_List_1__18__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_1_System_Collections_Generic_List_1__18__VTable vtable; +}; + +struct IObjectPool_1_System_Collections_Generic_List_1__9__VTable { + VirtualInvokeData Release; +}; + +struct IObjectPool_1_System_Collections_Generic_List_1__9__StaticFields { +}; + +struct IObjectPool_1_System_Collections_Generic_List_1__9__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IObjectPool_1_System_Collections_Generic_List_1__9__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IObjectPool_1_System_Collections_Generic_List_1__9__VTable vtable; +}; + +struct PooledObject_1_System_Collections_Generic_List_1__9__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_IDisposable_Dispose; +}; + +struct PooledObject_1_System_Collections_Generic_List_1__9__StaticFields { +}; + +struct PooledObject_1_System_Collections_Generic_List_1__9__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PooledObject_1_System_Collections_Generic_List_1__9__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PooledObject_1_System_Collections_Generic_List_1__9__VTable vtable; +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__14__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Dispose; + VirtualInvokeData Release; + VirtualInvokeData get_CountInactive; + VirtualInvokeData Get; + VirtualInvokeData Get_1; + VirtualInvokeData Clear; +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__14__StaticFields { +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__14__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ObjectPool_1_System_Collections_Generic_List_1__14__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ObjectPool_1_System_Collections_Generic_List_1__14__VTable vtable; +}; + +struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_Color32___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_Color32___StaticFields { + struct ObjectPool_1_System_Collections_Generic_List_1__14 *s_Pool; +}; + +struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_Color32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_Color32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_Color32___VTable vtable; +}; + +struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_Vector3_ { + struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_Vector3___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) ObjectPool_1_System_Collections_Generic_List_1__15__Fields { + struct List_1_List_1_UnityEngine_Vector3_ *m_List; + struct Func_1_System_Collections_Generic_List_1__23 *m_CreateFunc; + struct Action_1_System_Collections_Generic_List_1__19 *m_ActionOnGet; + struct Action_1_System_Collections_Generic_List_1__19 *m_ActionOnRelease; + struct Action_1_System_Collections_Generic_List_1__19 *m_ActionOnDestroy; + int32_t m_MaxSize; + bool m_CollectionCheck; + int32_t _CountAll_k__BackingField; +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__15 { + struct ObjectPool_1_System_Collections_Generic_List_1__15__Class *klass; + MonitorData *monitor; + struct ObjectPool_1_System_Collections_Generic_List_1__15__Fields fields; +}; + +struct Func_1_System_Collections_Generic_List_1__23__Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_1_System_Collections_Generic_List_1__23 { + struct Func_1_System_Collections_Generic_List_1__23__Class *klass; + MonitorData *monitor; + struct Func_1_System_Collections_Generic_List_1__23__Fields fields; +}; + +struct Action_1_System_Collections_Generic_List_1__19__Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_1_System_Collections_Generic_List_1__19 { + struct Action_1_System_Collections_Generic_List_1__19__Class *klass; + MonitorData *monitor; + struct Action_1_System_Collections_Generic_List_1__19__Fields fields; +}; + +struct PooledObject_1_System_Collections_Generic_List_1__10 { + struct List_1_UnityEngine_Vector3_ *m_ToReturn; + struct IObjectPool_1_System_Collections_Generic_List_1__10 *m_Pool; +}; + +struct PooledObject_1_System_Collections_Generic_List_1__10__Boxed { + struct PooledObject_1_System_Collections_Generic_List_1__10__Class *klass; + MonitorData *monitor; + struct PooledObject_1_System_Collections_Generic_List_1__10 fields; +}; + +struct IObjectPool_1_System_Collections_Generic_List_1__10 { + struct IObjectPool_1_System_Collections_Generic_List_1__10__Class *klass; + MonitorData *monitor; +}; + +struct Func_1_System_Collections_Generic_List_1__23__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_1_System_Collections_Generic_List_1__23__StaticFields { +}; + +struct Func_1_System_Collections_Generic_List_1__23__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_1_System_Collections_Generic_List_1__23__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_1_System_Collections_Generic_List_1__23__VTable vtable; +}; + +struct Action_1_System_Collections_Generic_List_1__19__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_1_System_Collections_Generic_List_1__19__StaticFields { +}; + +struct Action_1_System_Collections_Generic_List_1__19__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_1_System_Collections_Generic_List_1__19__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_1_System_Collections_Generic_List_1__19__VTable vtable; +}; + +struct IObjectPool_1_System_Collections_Generic_List_1__10__VTable { + VirtualInvokeData Release; +}; + +struct IObjectPool_1_System_Collections_Generic_List_1__10__StaticFields { +}; + +struct IObjectPool_1_System_Collections_Generic_List_1__10__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IObjectPool_1_System_Collections_Generic_List_1__10__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IObjectPool_1_System_Collections_Generic_List_1__10__VTable vtable; +}; + +struct PooledObject_1_System_Collections_Generic_List_1__10__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_IDisposable_Dispose; +}; + +struct PooledObject_1_System_Collections_Generic_List_1__10__StaticFields { +}; + +struct PooledObject_1_System_Collections_Generic_List_1__10__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PooledObject_1_System_Collections_Generic_List_1__10__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PooledObject_1_System_Collections_Generic_List_1__10__VTable vtable; +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__15__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Dispose; + VirtualInvokeData Release; + VirtualInvokeData get_CountInactive; + VirtualInvokeData Get; + VirtualInvokeData Get_1; + VirtualInvokeData Clear; +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__15__StaticFields { +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__15__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ObjectPool_1_System_Collections_Generic_List_1__15__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ObjectPool_1_System_Collections_Generic_List_1__15__VTable vtable; +}; + +struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_Vector3___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_Vector3___StaticFields { + struct ObjectPool_1_System_Collections_Generic_List_1__15 *s_Pool; +}; + +struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_Vector3___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_Vector3___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_Vector3___VTable vtable; +}; + +struct Physics { + struct Physics__Class *klass; + MonitorData *monitor; +}; + +struct Physics__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Physics__StaticFields { + struct Action_2_UnityEngine_PhysicsScene_Unity_Collections_NativeArray_1_ *ContactModifyEvent; + struct Action_2_UnityEngine_PhysicsScene_Unity_Collections_NativeArray_1_ *ContactModifyEventCCD; +}; + +struct Physics__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Physics__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Physics__VTable vtable; +}; + +struct ICollection_1_UnityEngine_UIVertex_ { + struct ICollection_1_UnityEngine_UIVertex___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_UnityEngine_UIVertex___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_UnityEngine_UIVertex___StaticFields { +}; + +struct ICollection_1_UnityEngine_UIVertex___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_UnityEngine_UIVertex___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_UnityEngine_UIVertex___VTable vtable; +}; + +struct Slider_Direction___VTable { +}; + +struct Slider_Direction___StaticFields { +}; + +struct Slider_Direction___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Slider_Direction___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Slider_Direction___VTable vtable; +}; + +struct IEnumerable_1_UnityEngine_UI_Selectable_ { + struct IEnumerable_1_UnityEngine_UI_Selectable___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_UnityEngine_UI_Selectable___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_UnityEngine_UI_Selectable___StaticFields { +}; + +struct IEnumerable_1_UnityEngine_UI_Selectable___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_UnityEngine_UI_Selectable___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_UnityEngine_UI_Selectable___VTable vtable; +}; + +struct Selectable_Transition___VTable { +}; + +struct Selectable_Transition___StaticFields { +}; + +struct Selectable_Transition___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Selectable_Transition___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Selectable_Transition___VTable vtable; +}; + +struct AnimationTriggers___VTable { +}; + +struct AnimationTriggers___StaticFields { +}; + +struct AnimationTriggers___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct AnimationTriggers___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct AnimationTriggers___VTable vtable; +}; + +struct Scrollbar_Direction___VTable { +}; + +struct Scrollbar_Direction___StaticFields { +}; + +struct Scrollbar_Direction___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Scrollbar_Direction___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Scrollbar_Direction___VTable vtable; +}; + +struct HashSet_1_T_Enumerator_UnityEngine_UI_IClippable_ { + struct HashSet_1_UnityEngine_UI_IClippable_ *_set; + int32_t _index; + int32_t _version; + struct IClippable *_current; +}; + +struct HashSet_1_T_Enumerator_UnityEngine_UI_IClippable___Boxed { + struct HashSet_1_T_Enumerator_UnityEngine_UI_IClippable___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Enumerator_UnityEngine_UI_IClippable_ fields; +}; + +struct HashSet_1_T_Enumerator_UnityEngine_UI_IClippable___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct HashSet_1_T_Enumerator_UnityEngine_UI_IClippable___StaticFields { +}; + +struct HashSet_1_T_Enumerator_UnityEngine_UI_IClippable___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_T_Enumerator_UnityEngine_UI_IClippable___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_T_Enumerator_UnityEngine_UI_IClippable___VTable vtable; +}; + +struct HashSet_1_T_Enumerator_UnityEngine_UI_MaskableGraphic_ { + struct HashSet_1_UnityEngine_UI_MaskableGraphic_ *_set; + int32_t _index; + int32_t _version; + struct MaskableGraphic *_current; +}; + +struct HashSet_1_T_Enumerator_UnityEngine_UI_MaskableGraphic___Boxed { + struct HashSet_1_T_Enumerator_UnityEngine_UI_MaskableGraphic___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Enumerator_UnityEngine_UI_MaskableGraphic_ fields; +}; + +struct HashSet_1_T_Enumerator_UnityEngine_UI_MaskableGraphic___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct HashSet_1_T_Enumerator_UnityEngine_UI_MaskableGraphic___StaticFields { +}; + +struct HashSet_1_T_Enumerator_UnityEngine_UI_MaskableGraphic___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_T_Enumerator_UnityEngine_UI_MaskableGraphic___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_T_Enumerator_UnityEngine_UI_MaskableGraphic___VTable vtable; +}; + +struct UIRUtility { + struct UIRUtility__Class *klass; + MonitorData *monitor; +}; + +struct UIRUtility__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct UIRUtility__StaticFields { + struct String *k_DefaultShaderName; + struct String *k_DefaultWorldSpaceShaderName; +}; + +struct UIRUtility__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UIRUtility__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UIRUtility__VTable vtable; +}; + +struct RegexReplacement___VTable { +}; + +struct RegexReplacement___StaticFields { +}; + +struct RegexReplacement___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RegexReplacement___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RegexReplacement___VTable vtable; +}; + +struct IEnumerable_1_System_Text_RegularExpressions_RegexNode_ { + struct IEnumerable_1_System_Text_RegularExpressions_RegexNode___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_System_Text_RegularExpressions_RegexNode___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_System_Text_RegularExpressions_RegexNode___StaticFields { +}; + +struct IEnumerable_1_System_Text_RegularExpressions_RegexNode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_System_Text_RegularExpressions_RegexNode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_System_Text_RegularExpressions_RegexNode___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_AudioSource_System_Single_ { + struct Dictionary_2_UnityEngine_AudioSource_System_Single_ *_dictionary; + int32_t _version; + int32_t _index; + struct KeyValuePair_2_UnityEngine_AudioSource_System_Single_ _current; + int32_t _getEnumeratorRetType; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_AudioSource_System_Single___Boxed { + struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_AudioSource_System_Single___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_AudioSource_System_Single_ fields; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_AudioSource_System_Single___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Key; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Value; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Entry; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_AudioSource_System_Single___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_AudioSource_System_Single___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_AudioSource_System_Single___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_AudioSource_System_Single___VTable vtable; +}; + +struct List_1_T_Enumerator_OutdoorsAudioWindowPoint_ { + struct List_1_OutdoorsAudioWindowPoint_ *_list; + int32_t _index; + int32_t _version; + struct OutdoorsAudioWindowPoint *_current; +}; + +struct List_1_T_Enumerator_OutdoorsAudioWindowPoint___Boxed { + struct List_1_T_Enumerator_OutdoorsAudioWindowPoint___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_OutdoorsAudioWindowPoint_ fields; +}; + +struct List_1_T_Enumerator_OutdoorsAudioWindowPoint___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_OutdoorsAudioWindowPoint___StaticFields { +}; + +struct List_1_T_Enumerator_OutdoorsAudioWindowPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_OutdoorsAudioWindowPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_OutdoorsAudioWindowPoint___VTable vtable; +}; + +struct Action_3_UnityEngine_GameObject_String_String___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_3_UnityEngine_GameObject_String_String_ { + struct Action_3_UnityEngine_GameObject_String_String___Class *klass; + MonitorData *monitor; + struct Action_3_UnityEngine_GameObject_String_String___Fields fields; +}; + +struct Action_3_UnityEngine_GameObject_String_String___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_3_UnityEngine_GameObject_String_String___StaticFields { +}; + +struct Action_3_UnityEngine_GameObject_String_String___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_3_UnityEngine_GameObject_String_String___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_3_UnityEngine_GameObject_String_String___VTable vtable; +}; + +struct ConfigVars_PlatformVars_PS5___VTable { +}; + +struct ConfigVars_PlatformVars_PS5___StaticFields { +}; + +struct ConfigVars_PlatformVars_PS5___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ConfigVars_PlatformVars_PS5___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ConfigVars_PlatformVars_PS5___VTable vtable; +}; + +struct ConfigVars_PlatformVars_OSXStandalone___VTable { +}; + +struct ConfigVars_PlatformVars_OSXStandalone___StaticFields { +}; + +struct ConfigVars_PlatformVars_OSXStandalone___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ConfigVars_PlatformVars_OSXStandalone___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ConfigVars_PlatformVars_OSXStandalone___VTable vtable; +}; + +struct List_1_T_Enumerator_BGMController_BGM_ { + struct List_1_BGMController_BGM_ *_list; + int32_t _index; + int32_t _version; + struct BGMController_BGM *_current; +}; + +struct List_1_T_Enumerator_BGMController_BGM___Boxed { + struct List_1_T_Enumerator_BGMController_BGM___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_BGMController_BGM_ fields; +}; + +struct List_1_T_Enumerator_BGMController_BGM___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_BGMController_BGM___StaticFields { +}; + +struct List_1_T_Enumerator_BGMController_BGM___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_BGMController_BGM___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_BGMController_BGM___VTable vtable; +}; + +struct ConfigVars_PlatformVars_Stadia___VTable { +}; + +struct ConfigVars_PlatformVars_Stadia___StaticFields { +}; + +struct ConfigVars_PlatformVars_Stadia___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ConfigVars_PlatformVars_Stadia___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ConfigVars_PlatformVars_Stadia___VTable vtable; +}; + +struct ConfigVars_PlatformVars_GameCoreScarlett___VTable { +}; + +struct ConfigVars_PlatformVars_GameCoreScarlett___StaticFields { +}; + +struct ConfigVars_PlatformVars_GameCoreScarlett___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ConfigVars_PlatformVars_GameCoreScarlett___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ConfigVars_PlatformVars_GameCoreScarlett___VTable vtable; +}; + +struct ConfigVars_PlatformVars_GameCoreXboxOne___VTable { +}; + +struct ConfigVars_PlatformVars_GameCoreXboxOne___StaticFields { +}; + +struct ConfigVars_PlatformVars_GameCoreXboxOne___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ConfigVars_PlatformVars_GameCoreXboxOne___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ConfigVars_PlatformVars_GameCoreXboxOne___VTable vtable; +}; + +struct ConfigVars_PlatformVars_WindowsUWP___VTable { +}; + +struct ConfigVars_PlatformVars_WindowsUWP___StaticFields { +}; + +struct ConfigVars_PlatformVars_WindowsUWP___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ConfigVars_PlatformVars_WindowsUWP___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ConfigVars_PlatformVars_WindowsUWP___VTable vtable; +}; + +struct ConfigVars_PlatformVars_WindowsStandalone___VTable { +}; + +struct ConfigVars_PlatformVars_WindowsStandalone___StaticFields { +}; + +struct ConfigVars_PlatformVars_WindowsStandalone___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ConfigVars_PlatformVars_WindowsStandalone___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ConfigVars_PlatformVars_WindowsStandalone___VTable vtable; +}; + +struct __declspec(align(8)) GetSetValue_1_Rewired_Platforms_GameCoreScarlettPrimaryInputSource___Fields { + struct Func_1_Rewired_Platforms_GameCoreScarlettPrimaryInputSource_ *pCRqkxszfIlvXoSCkcKGXwHXjXRD; + struct Action_1_Rewired_Platforms_GameCoreScarlettPrimaryInputSource_ *GskGupIYsDODgtWyDKLitUHCGmWB; +}; + +struct GetSetValue_1_Rewired_Platforms_GameCoreScarlettPrimaryInputSource_ { + struct GetSetValue_1_Rewired_Platforms_GameCoreScarlettPrimaryInputSource___Class *klass; + MonitorData *monitor; + struct GetSetValue_1_Rewired_Platforms_GameCoreScarlettPrimaryInputSource___Fields fields; +}; + +struct Func_1_Rewired_Platforms_GameCoreScarlettPrimaryInputSource___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_1_Rewired_Platforms_GameCoreScarlettPrimaryInputSource_ { + struct Func_1_Rewired_Platforms_GameCoreScarlettPrimaryInputSource___Class *klass; + MonitorData *monitor; + struct Func_1_Rewired_Platforms_GameCoreScarlettPrimaryInputSource___Fields fields; +}; + +struct Action_1_Rewired_Platforms_GameCoreScarlettPrimaryInputSource___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_1_Rewired_Platforms_GameCoreScarlettPrimaryInputSource_ { + struct Action_1_Rewired_Platforms_GameCoreScarlettPrimaryInputSource___Class *klass; + MonitorData *monitor; + struct Action_1_Rewired_Platforms_GameCoreScarlettPrimaryInputSource___Fields fields; +}; + +struct Func_1_Rewired_Platforms_GameCoreScarlettPrimaryInputSource___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_1_Rewired_Platforms_GameCoreScarlettPrimaryInputSource___StaticFields { +}; + +struct Func_1_Rewired_Platforms_GameCoreScarlettPrimaryInputSource___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_1_Rewired_Platforms_GameCoreScarlettPrimaryInputSource___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_1_Rewired_Platforms_GameCoreScarlettPrimaryInputSource___VTable vtable; +}; + +struct Action_1_Rewired_Platforms_GameCoreScarlettPrimaryInputSource___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_1_Rewired_Platforms_GameCoreScarlettPrimaryInputSource___StaticFields { +}; + +struct Action_1_Rewired_Platforms_GameCoreScarlettPrimaryInputSource___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_1_Rewired_Platforms_GameCoreScarlettPrimaryInputSource___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_1_Rewired_Platforms_GameCoreScarlettPrimaryInputSource___VTable vtable; +}; + +struct GetSetValue_1_Rewired_Platforms_GameCoreScarlettPrimaryInputSource___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData GetValue; + VirtualInvokeData SetValue; +}; + +struct GetSetValue_1_Rewired_Platforms_GameCoreScarlettPrimaryInputSource___StaticFields { +}; + +struct GetSetValue_1_Rewired_Platforms_GameCoreScarlettPrimaryInputSource___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GetSetValue_1_Rewired_Platforms_GameCoreScarlettPrimaryInputSource___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GetSetValue_1_Rewired_Platforms_GameCoreScarlettPrimaryInputSource___VTable vtable; +}; + +struct __declspec(align(8)) GetSetValue_1_Rewired_AxisSensitivityType___Fields { + struct Func_1_Rewired_AxisSensitivityType_ *pCRqkxszfIlvXoSCkcKGXwHXjXRD; + struct Action_1_Rewired_AxisSensitivityType_ *GskGupIYsDODgtWyDKLitUHCGmWB; +}; + +struct GetSetValue_1_Rewired_AxisSensitivityType_ { + struct GetSetValue_1_Rewired_AxisSensitivityType___Class *klass; + MonitorData *monitor; + struct GetSetValue_1_Rewired_AxisSensitivityType___Fields fields; +}; + +struct Func_1_Rewired_AxisSensitivityType___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_1_Rewired_AxisSensitivityType_ { + struct Func_1_Rewired_AxisSensitivityType___Class *klass; + MonitorData *monitor; + struct Func_1_Rewired_AxisSensitivityType___Fields fields; +}; + +struct Action_1_Rewired_AxisSensitivityType___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_1_Rewired_AxisSensitivityType_ { + struct Action_1_Rewired_AxisSensitivityType___Class *klass; + MonitorData *monitor; + struct Action_1_Rewired_AxisSensitivityType___Fields fields; +}; + +struct Func_1_Rewired_AxisSensitivityType___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_1_Rewired_AxisSensitivityType___StaticFields { +}; + +struct Func_1_Rewired_AxisSensitivityType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_1_Rewired_AxisSensitivityType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_1_Rewired_AxisSensitivityType___VTable vtable; +}; + +struct Action_1_Rewired_AxisSensitivityType___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_1_Rewired_AxisSensitivityType___StaticFields { +}; + +struct Action_1_Rewired_AxisSensitivityType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_1_Rewired_AxisSensitivityType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_1_Rewired_AxisSensitivityType___VTable vtable; +}; + +struct GetSetValue_1_Rewired_AxisSensitivityType___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData GetValue; + VirtualInvokeData SetValue; +}; + +struct GetSetValue_1_Rewired_AxisSensitivityType___StaticFields { +}; + +struct GetSetValue_1_Rewired_AxisSensitivityType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GetSetValue_1_Rewired_AxisSensitivityType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GetSetValue_1_Rewired_AxisSensitivityType___VTable vtable; +}; + +struct __declspec(align(8)) GetSetValue_1_Rewired_Platforms_XboxOnePrimaryInputSource___Fields { + struct Func_1_Rewired_Platforms_XboxOnePrimaryInputSource_ *pCRqkxszfIlvXoSCkcKGXwHXjXRD; + struct Action_1_Rewired_Platforms_XboxOnePrimaryInputSource_ *GskGupIYsDODgtWyDKLitUHCGmWB; +}; + +struct GetSetValue_1_Rewired_Platforms_XboxOnePrimaryInputSource_ { + struct GetSetValue_1_Rewired_Platforms_XboxOnePrimaryInputSource___Class *klass; + MonitorData *monitor; + struct GetSetValue_1_Rewired_Platforms_XboxOnePrimaryInputSource___Fields fields; +}; + +struct Func_1_Rewired_Platforms_XboxOnePrimaryInputSource___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_1_Rewired_Platforms_XboxOnePrimaryInputSource_ { + struct Func_1_Rewired_Platforms_XboxOnePrimaryInputSource___Class *klass; + MonitorData *monitor; + struct Func_1_Rewired_Platforms_XboxOnePrimaryInputSource___Fields fields; +}; + +struct Action_1_Rewired_Platforms_XboxOnePrimaryInputSource___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_1_Rewired_Platforms_XboxOnePrimaryInputSource_ { + struct Action_1_Rewired_Platforms_XboxOnePrimaryInputSource___Class *klass; + MonitorData *monitor; + struct Action_1_Rewired_Platforms_XboxOnePrimaryInputSource___Fields fields; +}; + +struct Func_1_Rewired_Platforms_XboxOnePrimaryInputSource___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_1_Rewired_Platforms_XboxOnePrimaryInputSource___StaticFields { +}; + +struct Func_1_Rewired_Platforms_XboxOnePrimaryInputSource___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_1_Rewired_Platforms_XboxOnePrimaryInputSource___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_1_Rewired_Platforms_XboxOnePrimaryInputSource___VTable vtable; +}; + +struct Action_1_Rewired_Platforms_XboxOnePrimaryInputSource___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_1_Rewired_Platforms_XboxOnePrimaryInputSource___StaticFields { +}; + +struct Action_1_Rewired_Platforms_XboxOnePrimaryInputSource___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_1_Rewired_Platforms_XboxOnePrimaryInputSource___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_1_Rewired_Platforms_XboxOnePrimaryInputSource___VTable vtable; +}; + +struct GetSetValue_1_Rewired_Platforms_XboxOnePrimaryInputSource___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData GetValue; + VirtualInvokeData SetValue; +}; + +struct GetSetValue_1_Rewired_Platforms_XboxOnePrimaryInputSource___StaticFields { +}; + +struct GetSetValue_1_Rewired_Platforms_XboxOnePrimaryInputSource___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GetSetValue_1_Rewired_Platforms_XboxOnePrimaryInputSource___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GetSetValue_1_Rewired_Platforms_XboxOnePrimaryInputSource___VTable vtable; +}; + +struct __declspec(align(8)) GetSetValue_1_Rewired_Platforms_WindowsUWPPrimaryInputSource___Fields { + struct Func_1_Rewired_Platforms_WindowsUWPPrimaryInputSource_ *pCRqkxszfIlvXoSCkcKGXwHXjXRD; + struct Action_1_Rewired_Platforms_WindowsUWPPrimaryInputSource_ *GskGupIYsDODgtWyDKLitUHCGmWB; +}; + +struct GetSetValue_1_Rewired_Platforms_WindowsUWPPrimaryInputSource_ { + struct GetSetValue_1_Rewired_Platforms_WindowsUWPPrimaryInputSource___Class *klass; + MonitorData *monitor; + struct GetSetValue_1_Rewired_Platforms_WindowsUWPPrimaryInputSource___Fields fields; +}; + +struct Func_1_Rewired_Platforms_WindowsUWPPrimaryInputSource___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_1_Rewired_Platforms_WindowsUWPPrimaryInputSource_ { + struct Func_1_Rewired_Platforms_WindowsUWPPrimaryInputSource___Class *klass; + MonitorData *monitor; + struct Func_1_Rewired_Platforms_WindowsUWPPrimaryInputSource___Fields fields; +}; + +struct Action_1_Rewired_Platforms_WindowsUWPPrimaryInputSource___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_1_Rewired_Platforms_WindowsUWPPrimaryInputSource_ { + struct Action_1_Rewired_Platforms_WindowsUWPPrimaryInputSource___Class *klass; + MonitorData *monitor; + struct Action_1_Rewired_Platforms_WindowsUWPPrimaryInputSource___Fields fields; +}; + +struct Func_1_Rewired_Platforms_WindowsUWPPrimaryInputSource___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_1_Rewired_Platforms_WindowsUWPPrimaryInputSource___StaticFields { +}; + +struct Func_1_Rewired_Platforms_WindowsUWPPrimaryInputSource___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_1_Rewired_Platforms_WindowsUWPPrimaryInputSource___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_1_Rewired_Platforms_WindowsUWPPrimaryInputSource___VTable vtable; +}; + +struct Action_1_Rewired_Platforms_WindowsUWPPrimaryInputSource___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_1_Rewired_Platforms_WindowsUWPPrimaryInputSource___StaticFields { +}; + +struct Action_1_Rewired_Platforms_WindowsUWPPrimaryInputSource___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_1_Rewired_Platforms_WindowsUWPPrimaryInputSource___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_1_Rewired_Platforms_WindowsUWPPrimaryInputSource___VTable vtable; +}; + +struct GetSetValue_1_Rewired_Platforms_WindowsUWPPrimaryInputSource___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData GetValue; + VirtualInvokeData SetValue; +}; + +struct GetSetValue_1_Rewired_Platforms_WindowsUWPPrimaryInputSource___StaticFields { +}; + +struct GetSetValue_1_Rewired_Platforms_WindowsUWPPrimaryInputSource___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GetSetValue_1_Rewired_Platforms_WindowsUWPPrimaryInputSource___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GetSetValue_1_Rewired_Platforms_WindowsUWPPrimaryInputSource___VTable vtable; +}; + +struct __declspec(align(8)) GetSetValue_1_Rewired_Platforms_PS5PrimaryInputSource___Fields { + struct Func_1_Rewired_Platforms_PS5PrimaryInputSource_ *pCRqkxszfIlvXoSCkcKGXwHXjXRD; + struct Action_1_Rewired_Platforms_PS5PrimaryInputSource_ *GskGupIYsDODgtWyDKLitUHCGmWB; +}; + +struct GetSetValue_1_Rewired_Platforms_PS5PrimaryInputSource_ { + struct GetSetValue_1_Rewired_Platforms_PS5PrimaryInputSource___Class *klass; + MonitorData *monitor; + struct GetSetValue_1_Rewired_Platforms_PS5PrimaryInputSource___Fields fields; +}; + +struct Func_1_Rewired_Platforms_PS5PrimaryInputSource___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_1_Rewired_Platforms_PS5PrimaryInputSource_ { + struct Func_1_Rewired_Platforms_PS5PrimaryInputSource___Class *klass; + MonitorData *monitor; + struct Func_1_Rewired_Platforms_PS5PrimaryInputSource___Fields fields; +}; + +struct Action_1_Rewired_Platforms_PS5PrimaryInputSource___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_1_Rewired_Platforms_PS5PrimaryInputSource_ { + struct Action_1_Rewired_Platforms_PS5PrimaryInputSource___Class *klass; + MonitorData *monitor; + struct Action_1_Rewired_Platforms_PS5PrimaryInputSource___Fields fields; +}; + +struct Func_1_Rewired_Platforms_PS5PrimaryInputSource___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_1_Rewired_Platforms_PS5PrimaryInputSource___StaticFields { +}; + +struct Func_1_Rewired_Platforms_PS5PrimaryInputSource___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_1_Rewired_Platforms_PS5PrimaryInputSource___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_1_Rewired_Platforms_PS5PrimaryInputSource___VTable vtable; +}; + +struct Action_1_Rewired_Platforms_PS5PrimaryInputSource___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_1_Rewired_Platforms_PS5PrimaryInputSource___StaticFields { +}; + +struct Action_1_Rewired_Platforms_PS5PrimaryInputSource___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_1_Rewired_Platforms_PS5PrimaryInputSource___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_1_Rewired_Platforms_PS5PrimaryInputSource___VTable vtable; +}; + +struct GetSetValue_1_Rewired_Platforms_PS5PrimaryInputSource___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData GetValue; + VirtualInvokeData SetValue; +}; + +struct GetSetValue_1_Rewired_Platforms_PS5PrimaryInputSource___StaticFields { +}; + +struct GetSetValue_1_Rewired_Platforms_PS5PrimaryInputSource___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GetSetValue_1_Rewired_Platforms_PS5PrimaryInputSource___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GetSetValue_1_Rewired_Platforms_PS5PrimaryInputSource___VTable vtable; +}; + +struct __declspec(align(8)) GetSetValue_1_Rewired_Platforms_LinuxStandalonePrimaryInputSource___Fields { + struct Func_1_Rewired_Platforms_LinuxStandalonePrimaryInputSource_ *pCRqkxszfIlvXoSCkcKGXwHXjXRD; + struct Action_1_Rewired_Platforms_LinuxStandalonePrimaryInputSource_ *GskGupIYsDODgtWyDKLitUHCGmWB; +}; + +struct GetSetValue_1_Rewired_Platforms_LinuxStandalonePrimaryInputSource_ { + struct GetSetValue_1_Rewired_Platforms_LinuxStandalonePrimaryInputSource___Class *klass; + MonitorData *monitor; + struct GetSetValue_1_Rewired_Platforms_LinuxStandalonePrimaryInputSource___Fields fields; +}; + +struct Func_1_Rewired_Platforms_LinuxStandalonePrimaryInputSource___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_1_Rewired_Platforms_LinuxStandalonePrimaryInputSource_ { + struct Func_1_Rewired_Platforms_LinuxStandalonePrimaryInputSource___Class *klass; + MonitorData *monitor; + struct Func_1_Rewired_Platforms_LinuxStandalonePrimaryInputSource___Fields fields; +}; + +struct Action_1_Rewired_Platforms_LinuxStandalonePrimaryInputSource___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_1_Rewired_Platforms_LinuxStandalonePrimaryInputSource_ { + struct Action_1_Rewired_Platforms_LinuxStandalonePrimaryInputSource___Class *klass; + MonitorData *monitor; + struct Action_1_Rewired_Platforms_LinuxStandalonePrimaryInputSource___Fields fields; +}; + +struct Func_1_Rewired_Platforms_LinuxStandalonePrimaryInputSource___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_1_Rewired_Platforms_LinuxStandalonePrimaryInputSource___StaticFields { +}; + +struct Func_1_Rewired_Platforms_LinuxStandalonePrimaryInputSource___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_1_Rewired_Platforms_LinuxStandalonePrimaryInputSource___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_1_Rewired_Platforms_LinuxStandalonePrimaryInputSource___VTable vtable; +}; + +struct Action_1_Rewired_Platforms_LinuxStandalonePrimaryInputSource___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_1_Rewired_Platforms_LinuxStandalonePrimaryInputSource___StaticFields { +}; + +struct Action_1_Rewired_Platforms_LinuxStandalonePrimaryInputSource___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_1_Rewired_Platforms_LinuxStandalonePrimaryInputSource___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_1_Rewired_Platforms_LinuxStandalonePrimaryInputSource___VTable vtable; +}; + +struct GetSetValue_1_Rewired_Platforms_LinuxStandalonePrimaryInputSource___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData GetValue; + VirtualInvokeData SetValue; +}; + +struct GetSetValue_1_Rewired_Platforms_LinuxStandalonePrimaryInputSource___StaticFields { +}; + +struct GetSetValue_1_Rewired_Platforms_LinuxStandalonePrimaryInputSource___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GetSetValue_1_Rewired_Platforms_LinuxStandalonePrimaryInputSource___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GetSetValue_1_Rewired_Platforms_LinuxStandalonePrimaryInputSource___VTable vtable; +}; + +struct __declspec(align(8)) GetSetValue_1_Rewired_Platforms_WindowsStandalonePrimaryInputSource___Fields { + struct Func_1_Rewired_Platforms_WindowsStandalonePrimaryInputSource_ *pCRqkxszfIlvXoSCkcKGXwHXjXRD; + struct Action_1_Rewired_Platforms_WindowsStandalonePrimaryInputSource_ *GskGupIYsDODgtWyDKLitUHCGmWB; +}; + +struct GetSetValue_1_Rewired_Platforms_WindowsStandalonePrimaryInputSource_ { + struct GetSetValue_1_Rewired_Platforms_WindowsStandalonePrimaryInputSource___Class *klass; + MonitorData *monitor; + struct GetSetValue_1_Rewired_Platforms_WindowsStandalonePrimaryInputSource___Fields fields; +}; + +struct Func_1_Rewired_Platforms_WindowsStandalonePrimaryInputSource___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_1_Rewired_Platforms_WindowsStandalonePrimaryInputSource_ { + struct Func_1_Rewired_Platforms_WindowsStandalonePrimaryInputSource___Class *klass; + MonitorData *monitor; + struct Func_1_Rewired_Platforms_WindowsStandalonePrimaryInputSource___Fields fields; +}; + +struct Action_1_Rewired_Platforms_WindowsStandalonePrimaryInputSource___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_1_Rewired_Platforms_WindowsStandalonePrimaryInputSource_ { + struct Action_1_Rewired_Platforms_WindowsStandalonePrimaryInputSource___Class *klass; + MonitorData *monitor; + struct Action_1_Rewired_Platforms_WindowsStandalonePrimaryInputSource___Fields fields; +}; + +struct Func_1_Rewired_Platforms_WindowsStandalonePrimaryInputSource___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_1_Rewired_Platforms_WindowsStandalonePrimaryInputSource___StaticFields { +}; + +struct Func_1_Rewired_Platforms_WindowsStandalonePrimaryInputSource___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_1_Rewired_Platforms_WindowsStandalonePrimaryInputSource___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_1_Rewired_Platforms_WindowsStandalonePrimaryInputSource___VTable vtable; +}; + +struct Action_1_Rewired_Platforms_WindowsStandalonePrimaryInputSource___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_1_Rewired_Platforms_WindowsStandalonePrimaryInputSource___StaticFields { +}; + +struct Action_1_Rewired_Platforms_WindowsStandalonePrimaryInputSource___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_1_Rewired_Platforms_WindowsStandalonePrimaryInputSource___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_1_Rewired_Platforms_WindowsStandalonePrimaryInputSource___VTable vtable; +}; + +struct GetSetValue_1_Rewired_Platforms_WindowsStandalonePrimaryInputSource___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData GetValue; + VirtualInvokeData SetValue; +}; + +struct GetSetValue_1_Rewired_Platforms_WindowsStandalonePrimaryInputSource___StaticFields { +}; + +struct GetSetValue_1_Rewired_Platforms_WindowsStandalonePrimaryInputSource___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GetSetValue_1_Rewired_Platforms_WindowsStandalonePrimaryInputSource___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GetSetValue_1_Rewired_Platforms_WindowsStandalonePrimaryInputSource___VTable vtable; +}; + +struct __declspec(align(8)) GetSetValue_1_Rewired_Platforms_StadiaPrimaryInputSource___Fields { + struct Func_1_Rewired_Platforms_StadiaPrimaryInputSource_ *pCRqkxszfIlvXoSCkcKGXwHXjXRD; + struct Action_1_Rewired_Platforms_StadiaPrimaryInputSource_ *GskGupIYsDODgtWyDKLitUHCGmWB; +}; + +struct GetSetValue_1_Rewired_Platforms_StadiaPrimaryInputSource_ { + struct GetSetValue_1_Rewired_Platforms_StadiaPrimaryInputSource___Class *klass; + MonitorData *monitor; + struct GetSetValue_1_Rewired_Platforms_StadiaPrimaryInputSource___Fields fields; +}; + +struct Func_1_Rewired_Platforms_StadiaPrimaryInputSource___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_1_Rewired_Platforms_StadiaPrimaryInputSource_ { + struct Func_1_Rewired_Platforms_StadiaPrimaryInputSource___Class *klass; + MonitorData *monitor; + struct Func_1_Rewired_Platforms_StadiaPrimaryInputSource___Fields fields; +}; + +struct Action_1_Rewired_Platforms_StadiaPrimaryInputSource___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_1_Rewired_Platforms_StadiaPrimaryInputSource_ { + struct Action_1_Rewired_Platforms_StadiaPrimaryInputSource___Class *klass; + MonitorData *monitor; + struct Action_1_Rewired_Platforms_StadiaPrimaryInputSource___Fields fields; +}; + +struct Func_1_Rewired_Platforms_StadiaPrimaryInputSource___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_1_Rewired_Platforms_StadiaPrimaryInputSource___StaticFields { +}; + +struct Func_1_Rewired_Platforms_StadiaPrimaryInputSource___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_1_Rewired_Platforms_StadiaPrimaryInputSource___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_1_Rewired_Platforms_StadiaPrimaryInputSource___VTable vtable; +}; + +struct Action_1_Rewired_Platforms_StadiaPrimaryInputSource___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_1_Rewired_Platforms_StadiaPrimaryInputSource___StaticFields { +}; + +struct Action_1_Rewired_Platforms_StadiaPrimaryInputSource___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_1_Rewired_Platforms_StadiaPrimaryInputSource___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_1_Rewired_Platforms_StadiaPrimaryInputSource___VTable vtable; +}; + +struct GetSetValue_1_Rewired_Platforms_StadiaPrimaryInputSource___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData GetValue; + VirtualInvokeData SetValue; +}; + +struct GetSetValue_1_Rewired_Platforms_StadiaPrimaryInputSource___StaticFields { +}; + +struct GetSetValue_1_Rewired_Platforms_StadiaPrimaryInputSource___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GetSetValue_1_Rewired_Platforms_StadiaPrimaryInputSource___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GetSetValue_1_Rewired_Platforms_StadiaPrimaryInputSource___VTable vtable; +}; + +struct __declspec(align(8)) GetSetValue_1_Rewired_Config_UpdateLoopSetting___Fields { + struct Func_1_Rewired_Config_UpdateLoopSetting_ *pCRqkxszfIlvXoSCkcKGXwHXjXRD; + struct Action_1_Rewired_Config_UpdateLoopSetting_ *GskGupIYsDODgtWyDKLitUHCGmWB; +}; + +struct GetSetValue_1_Rewired_Config_UpdateLoopSetting_ { + struct GetSetValue_1_Rewired_Config_UpdateLoopSetting___Class *klass; + MonitorData *monitor; + struct GetSetValue_1_Rewired_Config_UpdateLoopSetting___Fields fields; +}; + +struct Func_1_Rewired_Config_UpdateLoopSetting___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_1_Rewired_Config_UpdateLoopSetting_ { + struct Func_1_Rewired_Config_UpdateLoopSetting___Class *klass; + MonitorData *monitor; + struct Func_1_Rewired_Config_UpdateLoopSetting___Fields fields; +}; + +struct Action_1_Rewired_Config_UpdateLoopSetting___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_1_Rewired_Config_UpdateLoopSetting_ { + struct Action_1_Rewired_Config_UpdateLoopSetting___Class *klass; + MonitorData *monitor; + struct Action_1_Rewired_Config_UpdateLoopSetting___Fields fields; +}; + +struct Func_1_Rewired_Config_UpdateLoopSetting___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_1_Rewired_Config_UpdateLoopSetting___StaticFields { +}; + +struct Func_1_Rewired_Config_UpdateLoopSetting___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_1_Rewired_Config_UpdateLoopSetting___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_1_Rewired_Config_UpdateLoopSetting___VTable vtable; +}; + +struct Action_1_Rewired_Config_UpdateLoopSetting___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_1_Rewired_Config_UpdateLoopSetting___StaticFields { +}; + +struct Action_1_Rewired_Config_UpdateLoopSetting___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_1_Rewired_Config_UpdateLoopSetting___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_1_Rewired_Config_UpdateLoopSetting___VTable vtable; +}; + +struct GetSetValue_1_Rewired_Config_UpdateLoopSetting___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData GetValue; + VirtualInvokeData SetValue; +}; + +struct GetSetValue_1_Rewired_Config_UpdateLoopSetting___StaticFields { +}; + +struct GetSetValue_1_Rewired_Config_UpdateLoopSetting___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GetSetValue_1_Rewired_Config_UpdateLoopSetting___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GetSetValue_1_Rewired_Config_UpdateLoopSetting___VTable vtable; +}; + +struct __declspec(align(8)) GetSetValue_1_Rewired_Platforms_GameCoreXboxOnePrimaryInputSource___Fields { + struct Func_1_Rewired_Platforms_GameCoreXboxOnePrimaryInputSource_ *pCRqkxszfIlvXoSCkcKGXwHXjXRD; + struct Action_1_Rewired_Platforms_GameCoreXboxOnePrimaryInputSource_ *GskGupIYsDODgtWyDKLitUHCGmWB; +}; + +struct GetSetValue_1_Rewired_Platforms_GameCoreXboxOnePrimaryInputSource_ { + struct GetSetValue_1_Rewired_Platforms_GameCoreXboxOnePrimaryInputSource___Class *klass; + MonitorData *monitor; + struct GetSetValue_1_Rewired_Platforms_GameCoreXboxOnePrimaryInputSource___Fields fields; +}; + +struct Func_1_Rewired_Platforms_GameCoreXboxOnePrimaryInputSource___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_1_Rewired_Platforms_GameCoreXboxOnePrimaryInputSource_ { + struct Func_1_Rewired_Platforms_GameCoreXboxOnePrimaryInputSource___Class *klass; + MonitorData *monitor; + struct Func_1_Rewired_Platforms_GameCoreXboxOnePrimaryInputSource___Fields fields; +}; + +struct Action_1_Rewired_Platforms_GameCoreXboxOnePrimaryInputSource___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_1_Rewired_Platforms_GameCoreXboxOnePrimaryInputSource_ { + struct Action_1_Rewired_Platforms_GameCoreXboxOnePrimaryInputSource___Class *klass; + MonitorData *monitor; + struct Action_1_Rewired_Platforms_GameCoreXboxOnePrimaryInputSource___Fields fields; +}; + +struct Func_1_Rewired_Platforms_GameCoreXboxOnePrimaryInputSource___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_1_Rewired_Platforms_GameCoreXboxOnePrimaryInputSource___StaticFields { +}; + +struct Func_1_Rewired_Platforms_GameCoreXboxOnePrimaryInputSource___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_1_Rewired_Platforms_GameCoreXboxOnePrimaryInputSource___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_1_Rewired_Platforms_GameCoreXboxOnePrimaryInputSource___VTable vtable; +}; + +struct Action_1_Rewired_Platforms_GameCoreXboxOnePrimaryInputSource___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_1_Rewired_Platforms_GameCoreXboxOnePrimaryInputSource___StaticFields { +}; + +struct Action_1_Rewired_Platforms_GameCoreXboxOnePrimaryInputSource___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_1_Rewired_Platforms_GameCoreXboxOnePrimaryInputSource___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_1_Rewired_Platforms_GameCoreXboxOnePrimaryInputSource___VTable vtable; +}; + +struct GetSetValue_1_Rewired_Platforms_GameCoreXboxOnePrimaryInputSource___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData GetValue; + VirtualInvokeData SetValue; +}; + +struct GetSetValue_1_Rewired_Platforms_GameCoreXboxOnePrimaryInputSource___StaticFields { +}; + +struct GetSetValue_1_Rewired_Platforms_GameCoreXboxOnePrimaryInputSource___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GetSetValue_1_Rewired_Platforms_GameCoreXboxOnePrimaryInputSource___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GetSetValue_1_Rewired_Platforms_GameCoreXboxOnePrimaryInputSource___VTable vtable; +}; + +struct __declspec(align(8)) GetSetValue_1_Rewired_Config_LogLevelFlags___Fields { + struct Func_1_Rewired_Config_LogLevelFlags_ *pCRqkxszfIlvXoSCkcKGXwHXjXRD; + struct Action_1_Rewired_Config_LogLevelFlags_ *GskGupIYsDODgtWyDKLitUHCGmWB; +}; + +struct GetSetValue_1_Rewired_Config_LogLevelFlags_ { + struct GetSetValue_1_Rewired_Config_LogLevelFlags___Class *klass; + MonitorData *monitor; + struct GetSetValue_1_Rewired_Config_LogLevelFlags___Fields fields; +}; + +struct Func_1_Rewired_Config_LogLevelFlags___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_1_Rewired_Config_LogLevelFlags_ { + struct Func_1_Rewired_Config_LogLevelFlags___Class *klass; + MonitorData *monitor; + struct Func_1_Rewired_Config_LogLevelFlags___Fields fields; +}; + +struct Action_1_Rewired_Config_LogLevelFlags___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_1_Rewired_Config_LogLevelFlags_ { + struct Action_1_Rewired_Config_LogLevelFlags___Class *klass; + MonitorData *monitor; + struct Action_1_Rewired_Config_LogLevelFlags___Fields fields; +}; + +struct Func_1_Rewired_Config_LogLevelFlags___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_1_Rewired_Config_LogLevelFlags___StaticFields { +}; + +struct Func_1_Rewired_Config_LogLevelFlags___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_1_Rewired_Config_LogLevelFlags___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_1_Rewired_Config_LogLevelFlags___VTable vtable; +}; + +struct Action_1_Rewired_Config_LogLevelFlags___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_1_Rewired_Config_LogLevelFlags___StaticFields { +}; + +struct Action_1_Rewired_Config_LogLevelFlags___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_1_Rewired_Config_LogLevelFlags___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_1_Rewired_Config_LogLevelFlags___VTable vtable; +}; + +struct GetSetValue_1_Rewired_Config_LogLevelFlags___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData GetValue; + VirtualInvokeData SetValue; +}; + +struct GetSetValue_1_Rewired_Config_LogLevelFlags___StaticFields { +}; + +struct GetSetValue_1_Rewired_Config_LogLevelFlags___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GetSetValue_1_Rewired_Config_LogLevelFlags___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GetSetValue_1_Rewired_Config_LogLevelFlags___VTable vtable; +}; + +struct __declspec(align(8)) GetSetValue_1_Rewired_Config_ThrottleCalibrationMode___Fields { + struct Func_1_Rewired_Config_ThrottleCalibrationMode_ *pCRqkxszfIlvXoSCkcKGXwHXjXRD; + struct Action_1_Rewired_Config_ThrottleCalibrationMode_ *GskGupIYsDODgtWyDKLitUHCGmWB; +}; + +struct GetSetValue_1_Rewired_Config_ThrottleCalibrationMode_ { + struct GetSetValue_1_Rewired_Config_ThrottleCalibrationMode___Class *klass; + MonitorData *monitor; + struct GetSetValue_1_Rewired_Config_ThrottleCalibrationMode___Fields fields; +}; + +struct Func_1_Rewired_Config_ThrottleCalibrationMode___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_1_Rewired_Config_ThrottleCalibrationMode_ { + struct Func_1_Rewired_Config_ThrottleCalibrationMode___Class *klass; + MonitorData *monitor; + struct Func_1_Rewired_Config_ThrottleCalibrationMode___Fields fields; +}; + +struct Action_1_Rewired_Config_ThrottleCalibrationMode___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_1_Rewired_Config_ThrottleCalibrationMode_ { + struct Action_1_Rewired_Config_ThrottleCalibrationMode___Class *klass; + MonitorData *monitor; + struct Action_1_Rewired_Config_ThrottleCalibrationMode___Fields fields; +}; + +struct Func_1_Rewired_Config_ThrottleCalibrationMode___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_1_Rewired_Config_ThrottleCalibrationMode___StaticFields { +}; + +struct Func_1_Rewired_Config_ThrottleCalibrationMode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_1_Rewired_Config_ThrottleCalibrationMode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_1_Rewired_Config_ThrottleCalibrationMode___VTable vtable; +}; + +struct Action_1_Rewired_Config_ThrottleCalibrationMode___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_1_Rewired_Config_ThrottleCalibrationMode___StaticFields { +}; + +struct Action_1_Rewired_Config_ThrottleCalibrationMode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_1_Rewired_Config_ThrottleCalibrationMode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_1_Rewired_Config_ThrottleCalibrationMode___VTable vtable; +}; + +struct GetSetValue_1_Rewired_Config_ThrottleCalibrationMode___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData GetValue; + VirtualInvokeData SetValue; +}; + +struct GetSetValue_1_Rewired_Config_ThrottleCalibrationMode___StaticFields { +}; + +struct GetSetValue_1_Rewired_Config_ThrottleCalibrationMode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GetSetValue_1_Rewired_Config_ThrottleCalibrationMode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GetSetValue_1_Rewired_Config_ThrottleCalibrationMode___VTable vtable; +}; + +struct __declspec(align(8)) GetSetValue_1_Rewired_DeadZone2DType___Fields { + struct Func_1_Rewired_DeadZone2DType_ *pCRqkxszfIlvXoSCkcKGXwHXjXRD; + struct Action_1_Rewired_DeadZone2DType_ *GskGupIYsDODgtWyDKLitUHCGmWB; +}; + +struct GetSetValue_1_Rewired_DeadZone2DType_ { + struct GetSetValue_1_Rewired_DeadZone2DType___Class *klass; + MonitorData *monitor; + struct GetSetValue_1_Rewired_DeadZone2DType___Fields fields; +}; + +struct Func_1_Rewired_DeadZone2DType___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_1_Rewired_DeadZone2DType_ { + struct Func_1_Rewired_DeadZone2DType___Class *klass; + MonitorData *monitor; + struct Func_1_Rewired_DeadZone2DType___Fields fields; +}; + +struct Action_1_Rewired_DeadZone2DType___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_1_Rewired_DeadZone2DType_ { + struct Action_1_Rewired_DeadZone2DType___Class *klass; + MonitorData *monitor; + struct Action_1_Rewired_DeadZone2DType___Fields fields; +}; + +struct Func_1_Rewired_DeadZone2DType___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_1_Rewired_DeadZone2DType___StaticFields { +}; + +struct Func_1_Rewired_DeadZone2DType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_1_Rewired_DeadZone2DType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_1_Rewired_DeadZone2DType___VTable vtable; +}; + +struct Action_1_Rewired_DeadZone2DType___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_1_Rewired_DeadZone2DType___StaticFields { +}; + +struct Action_1_Rewired_DeadZone2DType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_1_Rewired_DeadZone2DType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_1_Rewired_DeadZone2DType___VTable vtable; +}; + +struct GetSetValue_1_Rewired_DeadZone2DType___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData GetValue; + VirtualInvokeData SetValue; +}; + +struct GetSetValue_1_Rewired_DeadZone2DType___StaticFields { +}; + +struct GetSetValue_1_Rewired_DeadZone2DType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GetSetValue_1_Rewired_DeadZone2DType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GetSetValue_1_Rewired_DeadZone2DType___VTable vtable; +}; + +struct __declspec(align(8)) GetSetValue_1_Rewired_Platforms_WebGLPrimaryInputSource___Fields { + struct Func_1_Rewired_Platforms_WebGLPrimaryInputSource_ *pCRqkxszfIlvXoSCkcKGXwHXjXRD; + struct Action_1_Rewired_Platforms_WebGLPrimaryInputSource_ *GskGupIYsDODgtWyDKLitUHCGmWB; +}; + +struct GetSetValue_1_Rewired_Platforms_WebGLPrimaryInputSource_ { + struct GetSetValue_1_Rewired_Platforms_WebGLPrimaryInputSource___Class *klass; + MonitorData *monitor; + struct GetSetValue_1_Rewired_Platforms_WebGLPrimaryInputSource___Fields fields; +}; + +struct Func_1_Rewired_Platforms_WebGLPrimaryInputSource___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_1_Rewired_Platforms_WebGLPrimaryInputSource_ { + struct Func_1_Rewired_Platforms_WebGLPrimaryInputSource___Class *klass; + MonitorData *monitor; + struct Func_1_Rewired_Platforms_WebGLPrimaryInputSource___Fields fields; +}; + +struct Action_1_Rewired_Platforms_WebGLPrimaryInputSource___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_1_Rewired_Platforms_WebGLPrimaryInputSource_ { + struct Action_1_Rewired_Platforms_WebGLPrimaryInputSource___Class *klass; + MonitorData *monitor; + struct Action_1_Rewired_Platforms_WebGLPrimaryInputSource___Fields fields; +}; + +struct Func_1_Rewired_Platforms_WebGLPrimaryInputSource___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_1_Rewired_Platforms_WebGLPrimaryInputSource___StaticFields { +}; + +struct Func_1_Rewired_Platforms_WebGLPrimaryInputSource___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_1_Rewired_Platforms_WebGLPrimaryInputSource___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_1_Rewired_Platforms_WebGLPrimaryInputSource___VTable vtable; +}; + +struct Action_1_Rewired_Platforms_WebGLPrimaryInputSource___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_1_Rewired_Platforms_WebGLPrimaryInputSource___StaticFields { +}; + +struct Action_1_Rewired_Platforms_WebGLPrimaryInputSource___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_1_Rewired_Platforms_WebGLPrimaryInputSource___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_1_Rewired_Platforms_WebGLPrimaryInputSource___VTable vtable; +}; + +struct GetSetValue_1_Rewired_Platforms_WebGLPrimaryInputSource___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData GetValue; + VirtualInvokeData SetValue; +}; + +struct GetSetValue_1_Rewired_Platforms_WebGLPrimaryInputSource___StaticFields { +}; + +struct GetSetValue_1_Rewired_Platforms_WebGLPrimaryInputSource___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GetSetValue_1_Rewired_Platforms_WebGLPrimaryInputSource___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GetSetValue_1_Rewired_Platforms_WebGLPrimaryInputSource___VTable vtable; +}; + +struct __declspec(align(8)) GetSetValue_1_Rewired_Platforms_PS4PrimaryInputSource___Fields { + struct Func_1_Rewired_Platforms_PS4PrimaryInputSource_ *pCRqkxszfIlvXoSCkcKGXwHXjXRD; + struct Action_1_Rewired_Platforms_PS4PrimaryInputSource_ *GskGupIYsDODgtWyDKLitUHCGmWB; +}; + +struct GetSetValue_1_Rewired_Platforms_PS4PrimaryInputSource_ { + struct GetSetValue_1_Rewired_Platforms_PS4PrimaryInputSource___Class *klass; + MonitorData *monitor; + struct GetSetValue_1_Rewired_Platforms_PS4PrimaryInputSource___Fields fields; +}; + +struct Func_1_Rewired_Platforms_PS4PrimaryInputSource___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_1_Rewired_Platforms_PS4PrimaryInputSource_ { + struct Func_1_Rewired_Platforms_PS4PrimaryInputSource___Class *klass; + MonitorData *monitor; + struct Func_1_Rewired_Platforms_PS4PrimaryInputSource___Fields fields; +}; + +struct Action_1_Rewired_Platforms_PS4PrimaryInputSource___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_1_Rewired_Platforms_PS4PrimaryInputSource_ { + struct Action_1_Rewired_Platforms_PS4PrimaryInputSource___Class *klass; + MonitorData *monitor; + struct Action_1_Rewired_Platforms_PS4PrimaryInputSource___Fields fields; +}; + +struct Func_1_Rewired_Platforms_PS4PrimaryInputSource___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_1_Rewired_Platforms_PS4PrimaryInputSource___StaticFields { +}; + +struct Func_1_Rewired_Platforms_PS4PrimaryInputSource___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_1_Rewired_Platforms_PS4PrimaryInputSource___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_1_Rewired_Platforms_PS4PrimaryInputSource___VTable vtable; +}; + +struct Action_1_Rewired_Platforms_PS4PrimaryInputSource___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_1_Rewired_Platforms_PS4PrimaryInputSource___StaticFields { +}; + +struct Action_1_Rewired_Platforms_PS4PrimaryInputSource___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_1_Rewired_Platforms_PS4PrimaryInputSource___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_1_Rewired_Platforms_PS4PrimaryInputSource___VTable vtable; +}; + +struct GetSetValue_1_Rewired_Platforms_PS4PrimaryInputSource___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData GetValue; + VirtualInvokeData SetValue; +}; + +struct GetSetValue_1_Rewired_Platforms_PS4PrimaryInputSource___StaticFields { +}; + +struct GetSetValue_1_Rewired_Platforms_PS4PrimaryInputSource___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GetSetValue_1_Rewired_Platforms_PS4PrimaryInputSource___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GetSetValue_1_Rewired_Platforms_PS4PrimaryInputSource___VTable vtable; +}; + +struct __declspec(align(8)) GetSetValue_1_Rewired_Platforms_OSXStandalonePrimaryInputSource___Fields { + struct Func_1_Rewired_Platforms_OSXStandalonePrimaryInputSource_ *pCRqkxszfIlvXoSCkcKGXwHXjXRD; + struct Action_1_Rewired_Platforms_OSXStandalonePrimaryInputSource_ *GskGupIYsDODgtWyDKLitUHCGmWB; +}; + +struct GetSetValue_1_Rewired_Platforms_OSXStandalonePrimaryInputSource_ { + struct GetSetValue_1_Rewired_Platforms_OSXStandalonePrimaryInputSource___Class *klass; + MonitorData *monitor; + struct GetSetValue_1_Rewired_Platforms_OSXStandalonePrimaryInputSource___Fields fields; +}; + +struct Func_1_Rewired_Platforms_OSXStandalonePrimaryInputSource___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_1_Rewired_Platforms_OSXStandalonePrimaryInputSource_ { + struct Func_1_Rewired_Platforms_OSXStandalonePrimaryInputSource___Class *klass; + MonitorData *monitor; + struct Func_1_Rewired_Platforms_OSXStandalonePrimaryInputSource___Fields fields; +}; + +struct Action_1_Rewired_Platforms_OSXStandalonePrimaryInputSource___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_1_Rewired_Platforms_OSXStandalonePrimaryInputSource_ { + struct Action_1_Rewired_Platforms_OSXStandalonePrimaryInputSource___Class *klass; + MonitorData *monitor; + struct Action_1_Rewired_Platforms_OSXStandalonePrimaryInputSource___Fields fields; +}; + +struct Func_1_Rewired_Platforms_OSXStandalonePrimaryInputSource___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_1_Rewired_Platforms_OSXStandalonePrimaryInputSource___StaticFields { +}; + +struct Func_1_Rewired_Platforms_OSXStandalonePrimaryInputSource___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_1_Rewired_Platforms_OSXStandalonePrimaryInputSource___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_1_Rewired_Platforms_OSXStandalonePrimaryInputSource___VTable vtable; +}; + +struct Action_1_Rewired_Platforms_OSXStandalonePrimaryInputSource___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_1_Rewired_Platforms_OSXStandalonePrimaryInputSource___StaticFields { +}; + +struct Action_1_Rewired_Platforms_OSXStandalonePrimaryInputSource___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_1_Rewired_Platforms_OSXStandalonePrimaryInputSource___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_1_Rewired_Platforms_OSXStandalonePrimaryInputSource___VTable vtable; +}; + +struct GetSetValue_1_Rewired_Platforms_OSXStandalonePrimaryInputSource___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData GetValue; + VirtualInvokeData SetValue; +}; + +struct GetSetValue_1_Rewired_Platforms_OSXStandalonePrimaryInputSource___StaticFields { +}; + +struct GetSetValue_1_Rewired_Platforms_OSXStandalonePrimaryInputSource___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GetSetValue_1_Rewired_Platforms_OSXStandalonePrimaryInputSource___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GetSetValue_1_Rewired_Platforms_OSXStandalonePrimaryInputSource___VTable vtable; +}; + +struct __declspec(align(8)) GetSetValue_1_Rewired_AxisSensitivity2DType___Fields { + struct Func_1_Rewired_AxisSensitivity2DType_ *pCRqkxszfIlvXoSCkcKGXwHXjXRD; + struct Action_1_Rewired_AxisSensitivity2DType_ *GskGupIYsDODgtWyDKLitUHCGmWB; +}; + +struct GetSetValue_1_Rewired_AxisSensitivity2DType_ { + struct GetSetValue_1_Rewired_AxisSensitivity2DType___Class *klass; + MonitorData *monitor; + struct GetSetValue_1_Rewired_AxisSensitivity2DType___Fields fields; +}; + +struct Func_1_Rewired_AxisSensitivity2DType___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_1_Rewired_AxisSensitivity2DType_ { + struct Func_1_Rewired_AxisSensitivity2DType___Class *klass; + MonitorData *monitor; + struct Func_1_Rewired_AxisSensitivity2DType___Fields fields; +}; + +struct Action_1_Rewired_AxisSensitivity2DType___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_1_Rewired_AxisSensitivity2DType_ { + struct Action_1_Rewired_AxisSensitivity2DType___Class *klass; + MonitorData *monitor; + struct Action_1_Rewired_AxisSensitivity2DType___Fields fields; +}; + +struct Func_1_Rewired_AxisSensitivity2DType___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_1_Rewired_AxisSensitivity2DType___StaticFields { +}; + +struct Func_1_Rewired_AxisSensitivity2DType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_1_Rewired_AxisSensitivity2DType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_1_Rewired_AxisSensitivity2DType___VTable vtable; +}; + +struct Action_1_Rewired_AxisSensitivity2DType___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_1_Rewired_AxisSensitivity2DType___StaticFields { +}; + +struct Action_1_Rewired_AxisSensitivity2DType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_1_Rewired_AxisSensitivity2DType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_1_Rewired_AxisSensitivity2DType___VTable vtable; +}; + +struct GetSetValue_1_Rewired_AxisSensitivity2DType___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData GetValue; + VirtualInvokeData SetValue; +}; + +struct GetSetValue_1_Rewired_AxisSensitivity2DType___StaticFields { +}; + +struct GetSetValue_1_Rewired_AxisSensitivity2DType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GetSetValue_1_Rewired_AxisSensitivity2DType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GetSetValue_1_Rewired_AxisSensitivity2DType___VTable vtable; +}; + +struct Predicate_1_AnimalGateSpawnPoint___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Predicate_1_AnimalGateSpawnPoint_ { + struct Predicate_1_AnimalGateSpawnPoint___Class *klass; + MonitorData *monitor; + struct Predicate_1_AnimalGateSpawnPoint___Fields fields; +}; + +struct Predicate_1_AnimalGateSpawnPoint___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Predicate_1_AnimalGateSpawnPoint___StaticFields { +}; + +struct Predicate_1_AnimalGateSpawnPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Predicate_1_AnimalGateSpawnPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Predicate_1_AnimalGateSpawnPoint___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_Rewired_Data_ConfigVars_azUEuvNbipTVExojWRFquaZJFmGY_ { + struct Dictionary_2_System_Int32_Rewired_Data_ConfigVars_azUEuvNbipTVExojWRFquaZJFmGY_ *_dictionary; + int32_t _version; + int32_t _index; + struct KeyValuePair_2_System_Int32_Rewired_Data_ConfigVars_azUEuvNbipTVExojWRFquaZJFmGY_ _current; + int32_t _getEnumeratorRetType; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_Rewired_Data_ConfigVars_azUEuvNbipTVExojWRFquaZJFmGY___Boxed { + struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_Rewired_Data_ConfigVars_azUEuvNbipTVExojWRFquaZJFmGY___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_Rewired_Data_ConfigVars_azUEuvNbipTVExojWRFquaZJFmGY_ fields; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_Rewired_Data_ConfigVars_azUEuvNbipTVExojWRFquaZJFmGY___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Key; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Value; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Entry; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_Rewired_Data_ConfigVars_azUEuvNbipTVExojWRFquaZJFmGY___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_Rewired_Data_ConfigVars_azUEuvNbipTVExojWRFquaZJFmGY___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_Rewired_Data_ConfigVars_azUEuvNbipTVExojWRFquaZJFmGY___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_Rewired_Data_ConfigVars_azUEuvNbipTVExojWRFquaZJFmGY___VTable vtable; +}; + +struct ConfigVars_PlatformVars___VTable { +}; + +struct ConfigVars_PlatformVars___StaticFields { +}; + +struct ConfigVars_PlatformVars___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ConfigVars_PlatformVars___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ConfigVars_PlatformVars___VTable vtable; +}; + +struct ICollection_1_Rewired_Platforms_Custom_CustomInputSource_Joystick_ { + struct ICollection_1_Rewired_Platforms_Custom_CustomInputSource_Joystick___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_Rewired_Platforms_Custom_CustomInputSource_Joystick___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_Rewired_Platforms_Custom_CustomInputSource_Joystick___StaticFields { +}; + +struct ICollection_1_Rewired_Platforms_Custom_CustomInputSource_Joystick___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_Rewired_Platforms_Custom_CustomInputSource_Joystick___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_Rewired_Platforms_Custom_CustomInputSource_Joystick___VTable vtable; +}; + +struct ICollection_1_Rewired_PidVid_ { + struct ICollection_1_Rewired_PidVid___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_Rewired_PidVid___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_Rewired_PidVid___StaticFields { +}; + +struct ICollection_1_Rewired_PidVid___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_Rewired_PidVid___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_Rewired_PidVid___VTable vtable; +}; + +struct IObjectPool_1_Rewired_HID_HIDTouchpad_MEbbjOIqfeMIvctgibbviaUtKhNTA_ { + struct IObjectPool_1_Rewired_HID_HIDTouchpad_MEbbjOIqfeMIvctgibbviaUtKhNTA___Class *klass; + MonitorData *monitor; +}; + +struct IObjectPool_1_Rewired_HID_HIDTouchpad_MEbbjOIqfeMIvctgibbviaUtKhNTA___VTable { + VirtualInvokeData Clear; + VirtualInvokeData Get; + VirtualInvokeData Return; +}; + +struct IObjectPool_1_Rewired_HID_HIDTouchpad_MEbbjOIqfeMIvctgibbviaUtKhNTA___StaticFields { +}; + +struct IObjectPool_1_Rewired_HID_HIDTouchpad_MEbbjOIqfeMIvctgibbviaUtKhNTA___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IObjectPool_1_Rewired_HID_HIDTouchpad_MEbbjOIqfeMIvctgibbviaUtKhNTA___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IObjectPool_1_Rewired_HID_HIDTouchpad_MEbbjOIqfeMIvctgibbviaUtKhNTA___VTable vtable; +}; + +struct SpecialDevices { + struct SpecialDevices__Class *klass; + MonitorData *monitor; +}; + +struct SpecialDevices_LmfQOMWqeEMyploFNrEhFJQZfChb__Array { + struct SpecialDevices_LmfQOMWqeEMyploFNrEhFJQZfChb__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct SpecialDevices_LmfQOMWqeEMyploFNrEhFJQZfChb *vector[32]; +}; + +struct SpecialDevices_LmfQOMWqeEMyploFNrEhFJQZfChb__Array__VTable { +}; + +struct SpecialDevices_LmfQOMWqeEMyploFNrEhFJQZfChb__Array__StaticFields { +}; + +struct SpecialDevices_LmfQOMWqeEMyploFNrEhFJQZfChb__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SpecialDevices_LmfQOMWqeEMyploFNrEhFJQZfChb__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SpecialDevices_LmfQOMWqeEMyploFNrEhFJQZfChb__Array__VTable vtable; +}; + +struct SpecialDevices__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct SpecialDevices__StaticFields { + struct SpecialDevices_LmfQOMWqeEMyploFNrEhFJQZfChb__Array *uRMXFPeDPIrCmoFnRxzRieSofwVm; +}; + +struct SpecialDevices__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SpecialDevices__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SpecialDevices__VTable vtable; +}; + +struct HidOutputReportHandler_SvOePIKdkvhWZjsxseHBTlsDmadF___VTable { +}; + +struct HidOutputReportHandler_SvOePIKdkvhWZjsxseHBTlsDmadF___StaticFields { +}; + +struct HidOutputReportHandler_SvOePIKdkvhWZjsxseHBTlsDmadF___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HidOutputReportHandler_SvOePIKdkvhWZjsxseHBTlsDmadF___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HidOutputReportHandler_SvOePIKdkvhWZjsxseHBTlsDmadF___VTable vtable; +}; + +struct SpriteShapeRenderer__Fields { + struct Renderer__Fields _; +}; + +struct SpriteShapeRenderer { + struct SpriteShapeRenderer__Class *klass; + MonitorData *monitor; + struct SpriteShapeRenderer__Fields fields; +}; + +struct SpriteShapeRenderer__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct SpriteShapeRenderer__StaticFields { +}; + +struct SpriteShapeRenderer__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SpriteShapeRenderer__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SpriteShapeRenderer__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_EventSystems_PointerEventData_ { + struct Dictionary_2_System_Int32_UnityEngine_EventSystems_PointerEventData_ *_dictionary; + int32_t _index; + int32_t _version; + struct PointerEventData *_currentValue; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_EventSystems_PointerEventData___Boxed { + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_EventSystems_PointerEventData___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_EventSystems_PointerEventData_ fields; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_EventSystems_PointerEventData___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_EventSystems_PointerEventData___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_EventSystems_PointerEventData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_EventSystems_PointerEventData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_Int32_UnityEngine_EventSystems_PointerEventData___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_EventSystems_PointerEventData_ { + struct Dictionary_2_System_Int32_UnityEngine_EventSystems_PointerEventData_ *_dictionary; + int32_t _version; + int32_t _index; + struct KeyValuePair_2_System_Int32_UnityEngine_EventSystems_PointerEventData_ _current; + int32_t _getEnumeratorRetType; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_EventSystems_PointerEventData___Boxed { + struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_EventSystems_PointerEventData___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_EventSystems_PointerEventData_ fields; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_EventSystems_PointerEventData___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Key; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Value; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Entry; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_EventSystems_PointerEventData___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_EventSystems_PointerEventData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_EventSystems_PointerEventData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_EventSystems_PointerEventData___VTable vtable; +}; + +struct BaseInput__Array { + struct BaseInput__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct BaseInput *vector[32]; +}; + +struct BaseInput__Array__VTable { +}; + +struct BaseInput__Array__StaticFields { +}; + +struct BaseInput__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BaseInput__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BaseInput__Array__VTable vtable; +}; + +struct RaycasterManager { + struct RaycasterManager__Class *klass; + MonitorData *monitor; +}; + +struct RaycasterManager__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct RaycasterManager__StaticFields { + struct List_1_UnityEngine_EventSystems_BaseRaycaster_ *s_Raycasters; +}; + +struct RaycasterManager__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RaycasterManager__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RaycasterManager__VTable vtable; +}; + +struct EventCallback_1_FocusEvent___Fields { + struct MulticastDelegate__Fields _; +}; + +struct EventCallback_1_FocusEvent_ { + struct EventCallback_1_FocusEvent___Class *klass; + MonitorData *monitor; + struct EventCallback_1_FocusEvent___Fields fields; +}; + +struct EventCallback_1_FocusEvent___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct EventCallback_1_FocusEvent___StaticFields { +}; + +struct EventCallback_1_FocusEvent___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EventCallback_1_FocusEvent___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EventCallback_1_FocusEvent___VTable vtable; +}; + +struct EventCallback_1_BlurEvent___Fields { + struct MulticastDelegate__Fields _; +}; + +struct EventCallback_1_BlurEvent_ { + struct EventCallback_1_BlurEvent___Class *klass; + MonitorData *monitor; + struct EventCallback_1_BlurEvent___Fields fields; +}; + +struct EventCallback_1_BlurEvent___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct EventCallback_1_BlurEvent___StaticFields { +}; + +struct EventCallback_1_BlurEvent___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EventCallback_1_BlurEvent___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EventCallback_1_BlurEvent___VTable vtable; +}; + +struct RemoteSettings { + struct RemoteSettings__Class *klass; + MonitorData *monitor; +}; + +struct RemoteSettings__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct RemoteSettings__StaticFields { + struct RemoteSettings_UpdatedEventHandler *Updated; + struct Action *BeforeFetchFromServer; + struct Action_3_Boolean_Boolean_Int32_ *Completed; +}; + +struct RemoteSettings__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RemoteSettings__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RemoteSettings__VTable vtable; +}; + +struct AnalyticsSessionInfo { + struct AnalyticsSessionInfo__Class *klass; + MonitorData *monitor; +}; + +struct AnalyticsSessionInfo__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct AnalyticsSessionInfo__StaticFields { + struct AnalyticsSessionInfo_SessionStateChanged *sessionStateChanged; + struct AnalyticsSessionInfo_IdentityTokenChanged *identityTokenChanged; +}; + +struct AnalyticsSessionInfo__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct AnalyticsSessionInfo__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct AnalyticsSessionInfo__VTable vtable; +}; + +struct WWWForm { + struct WWWForm__Class *klass; + MonitorData *monitor; +}; + +struct WWWForm__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct WWWForm__StaticFields { + struct Byte__Array *dDash; + struct Byte__Array *crlf; + struct Byte__Array *contentTypeHeader; + struct Byte__Array *dispositionHeader; + struct Byte__Array *endQuote; + struct Byte__Array *fileNameField; + struct Byte__Array *ampersand; + struct Byte__Array *equal; +}; + +struct WWWForm__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct WWWForm__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct WWWForm__VTable vtable; +}; + +struct WebRequestUtils { + struct WebRequestUtils__Class *klass; + MonitorData *monitor; +}; + +struct WebRequestUtils__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct WebRequestUtils__StaticFields { + struct Regex *domainRegex; +}; + +struct WebRequestUtils__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct WebRequestUtils__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct WebRequestUtils__VTable vtable; +}; + +struct WWWTranscoder { + struct WWWTranscoder__Class *klass; + MonitorData *monitor; +}; + +struct WWWTranscoder__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct WWWTranscoder__StaticFields { + struct Byte__Array *ucHexChars; + struct Byte__Array *lcHexChars; + uint8_t urlEscapeChar; + struct Byte__Array *urlSpace; + struct Byte__Array *dataSpace; + struct Byte__Array *urlForbidden; + uint8_t qpEscapeChar; + struct Byte__Array *qpSpace; + struct Byte__Array *qpForbidden; +}; + +struct WWWTranscoder__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct WWWTranscoder__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct WWWTranscoder__VTable vtable; +}; + +struct IEnumerator_1_SignalReceiverWithVector3Vector3Float_SignalAssetEventPair_ { + struct IEnumerator_1_SignalReceiverWithVector3Vector3Float_SignalAssetEventPair___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerator_1_SignalReceiverWithVector3Vector3Float_SignalAssetEventPair___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_SignalReceiverWithVector3Vector3Float_SignalAssetEventPair___StaticFields { +}; + +struct IEnumerator_1_SignalReceiverWithVector3Vector3Float_SignalAssetEventPair___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_SignalReceiverWithVector3Vector3Float_SignalAssetEventPair___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_SignalReceiverWithVector3Vector3Float_SignalAssetEventPair___VTable vtable; +}; + +struct Func_2_SignalReceiverWithVector3Vector3Float_SignalAssetEventPair_Boolean___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_2_SignalReceiverWithVector3Vector3Float_SignalAssetEventPair_Boolean_ { + struct Func_2_SignalReceiverWithVector3Vector3Float_SignalAssetEventPair_Boolean___Class *klass; + MonitorData *monitor; + struct Func_2_SignalReceiverWithVector3Vector3Float_SignalAssetEventPair_Boolean___Fields fields; +}; + +struct Func_2_SignalReceiverWithVector3Vector3Float_SignalAssetEventPair_Boolean___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_2_SignalReceiverWithVector3Vector3Float_SignalAssetEventPair_Boolean___StaticFields { +}; + +struct Func_2_SignalReceiverWithVector3Vector3Float_SignalAssetEventPair_Boolean___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_2_SignalReceiverWithVector3Vector3Float_SignalAssetEventPair_Boolean___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_2_SignalReceiverWithVector3Vector3Float_SignalAssetEventPair_Boolean___VTable vtable; +}; + +struct IEnumerable_1_SignalReceiverWithVector3Vector3Float_SignalAssetEventPair_ { + struct IEnumerable_1_SignalReceiverWithVector3Vector3Float_SignalAssetEventPair___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_SignalReceiverWithVector3Vector3Float_SignalAssetEventPair___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_SignalReceiverWithVector3Vector3Float_SignalAssetEventPair___StaticFields { +}; + +struct IEnumerable_1_SignalReceiverWithVector3Vector3Float_SignalAssetEventPair___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_SignalReceiverWithVector3Vector3Float_SignalAssetEventPair___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_SignalReceiverWithVector3Vector3Float_SignalAssetEventPair___VTable vtable; +}; + +struct IEnumerable_1_SignalReceiverWithVector3_SignalAssetEventPair_ { + struct IEnumerable_1_SignalReceiverWithVector3_SignalAssetEventPair___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_SignalReceiverWithVector3_SignalAssetEventPair___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_SignalReceiverWithVector3_SignalAssetEventPair___StaticFields { +}; + +struct IEnumerable_1_SignalReceiverWithVector3_SignalAssetEventPair___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_SignalReceiverWithVector3_SignalAssetEventPair___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_SignalReceiverWithVector3_SignalAssetEventPair___VTable vtable; +}; + +struct IEnumerator_1_SignalReceiverWithVector3_SignalAssetEventPair_ { + struct IEnumerator_1_SignalReceiverWithVector3_SignalAssetEventPair___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerator_1_SignalReceiverWithVector3_SignalAssetEventPair___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_SignalReceiverWithVector3_SignalAssetEventPair___StaticFields { +}; + +struct IEnumerator_1_SignalReceiverWithVector3_SignalAssetEventPair___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_SignalReceiverWithVector3_SignalAssetEventPair___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_SignalReceiverWithVector3_SignalAssetEventPair___VTable vtable; +}; + +struct Func_2_SignalReceiverWithVector3_SignalAssetEventPair_Boolean___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_2_SignalReceiverWithVector3_SignalAssetEventPair_Boolean_ { + struct Func_2_SignalReceiverWithVector3_SignalAssetEventPair_Boolean___Class *klass; + MonitorData *monitor; + struct Func_2_SignalReceiverWithVector3_SignalAssetEventPair_Boolean___Fields fields; +}; + +struct Func_2_SignalReceiverWithVector3_SignalAssetEventPair_Boolean___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_2_SignalReceiverWithVector3_SignalAssetEventPair_Boolean___StaticFields { +}; + +struct Func_2_SignalReceiverWithVector3_SignalAssetEventPair_Boolean___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_2_SignalReceiverWithVector3_SignalAssetEventPair_Boolean___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_2_SignalReceiverWithVector3_SignalAssetEventPair_Boolean___VTable vtable; +}; + +struct IEnumerator_1_SignalReceiverWithTransformOffsetsFullRot_SignalAssetEventPair_ { + struct IEnumerator_1_SignalReceiverWithTransformOffsetsFullRot_SignalAssetEventPair___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerator_1_SignalReceiverWithTransformOffsetsFullRot_SignalAssetEventPair___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_SignalReceiverWithTransformOffsetsFullRot_SignalAssetEventPair___StaticFields { +}; + +struct IEnumerator_1_SignalReceiverWithTransformOffsetsFullRot_SignalAssetEventPair___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_SignalReceiverWithTransformOffsetsFullRot_SignalAssetEventPair___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_SignalReceiverWithTransformOffsetsFullRot_SignalAssetEventPair___VTable vtable; +}; + +struct Func_2_SignalReceiverWithTransformOffsetsFullRot_SignalAssetEventPair_Boolean___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_2_SignalReceiverWithTransformOffsetsFullRot_SignalAssetEventPair_Boolean_ { + struct Func_2_SignalReceiverWithTransformOffsetsFullRot_SignalAssetEventPair_Boolean___Class *klass; + MonitorData *monitor; + struct Func_2_SignalReceiverWithTransformOffsetsFullRot_SignalAssetEventPair_Boolean___Fields fields; +}; + +struct Func_2_SignalReceiverWithTransformOffsetsFullRot_SignalAssetEventPair_Boolean___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_2_SignalReceiverWithTransformOffsetsFullRot_SignalAssetEventPair_Boolean___StaticFields { +}; + +struct Func_2_SignalReceiverWithTransformOffsetsFullRot_SignalAssetEventPair_Boolean___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_2_SignalReceiverWithTransformOffsetsFullRot_SignalAssetEventPair_Boolean___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_2_SignalReceiverWithTransformOffsetsFullRot_SignalAssetEventPair_Boolean___VTable vtable; +}; + +struct IEnumerable_1_SignalReceiverWithTransformOffsetsFullRot_SignalAssetEventPair_ { + struct IEnumerable_1_SignalReceiverWithTransformOffsetsFullRot_SignalAssetEventPair___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_SignalReceiverWithTransformOffsetsFullRot_SignalAssetEventPair___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_SignalReceiverWithTransformOffsetsFullRot_SignalAssetEventPair___StaticFields { +}; + +struct IEnumerable_1_SignalReceiverWithTransformOffsetsFullRot_SignalAssetEventPair___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_SignalReceiverWithTransformOffsetsFullRot_SignalAssetEventPair___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_SignalReceiverWithTransformOffsetsFullRot_SignalAssetEventPair___VTable vtable; +}; + +struct IEnumerable_1_SignalReceiverWithTransformOffsets_SignalAssetEventPair_ { + struct IEnumerable_1_SignalReceiverWithTransformOffsets_SignalAssetEventPair___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_SignalReceiverWithTransformOffsets_SignalAssetEventPair___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_SignalReceiverWithTransformOffsets_SignalAssetEventPair___StaticFields { +}; + +struct IEnumerable_1_SignalReceiverWithTransformOffsets_SignalAssetEventPair___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_SignalReceiverWithTransformOffsets_SignalAssetEventPair___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_SignalReceiverWithTransformOffsets_SignalAssetEventPair___VTable vtable; +}; + +struct IEnumerator_1_SignalReceiverWithTransformOffsets_SignalAssetEventPair_ { + struct IEnumerator_1_SignalReceiverWithTransformOffsets_SignalAssetEventPair___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerator_1_SignalReceiverWithTransformOffsets_SignalAssetEventPair___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_SignalReceiverWithTransformOffsets_SignalAssetEventPair___StaticFields { +}; + +struct IEnumerator_1_SignalReceiverWithTransformOffsets_SignalAssetEventPair___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_SignalReceiverWithTransformOffsets_SignalAssetEventPair___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_SignalReceiverWithTransformOffsets_SignalAssetEventPair___VTable vtable; +}; + +struct Func_2_SignalReceiverWithTransformOffsets_SignalAssetEventPair_Boolean___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_2_SignalReceiverWithTransformOffsets_SignalAssetEventPair_Boolean_ { + struct Func_2_SignalReceiverWithTransformOffsets_SignalAssetEventPair_Boolean___Class *klass; + MonitorData *monitor; + struct Func_2_SignalReceiverWithTransformOffsets_SignalAssetEventPair_Boolean___Fields fields; +}; + +struct Func_2_SignalReceiverWithTransformOffsets_SignalAssetEventPair_Boolean___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_2_SignalReceiverWithTransformOffsets_SignalAssetEventPair_Boolean___StaticFields { +}; + +struct Func_2_SignalReceiverWithTransformOffsets_SignalAssetEventPair_Boolean___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_2_SignalReceiverWithTransformOffsets_SignalAssetEventPair_Boolean___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_2_SignalReceiverWithTransformOffsets_SignalAssetEventPair_Boolean___VTable vtable; +}; + +struct IEnumerator_1_UnityEngine_AudioClip_ { + struct IEnumerator_1_UnityEngine_AudioClip___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerator_1_UnityEngine_AudioClip___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_UnityEngine_AudioClip___StaticFields { +}; + +struct IEnumerator_1_UnityEngine_AudioClip___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_UnityEngine_AudioClip___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_UnityEngine_AudioClip___VTable vtable; +}; + +struct IEnumerable_1_UnityEngine_AudioClip_ { + struct IEnumerable_1_UnityEngine_AudioClip___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_UnityEngine_AudioClip___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_UnityEngine_AudioClip___StaticFields { +}; + +struct IEnumerable_1_UnityEngine_AudioClip___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_UnityEngine_AudioClip___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_UnityEngine_AudioClip___VTable vtable; +}; + +struct IOrderedEnumerable_1_UnityEngine_AudioClip_ { + struct IOrderedEnumerable_1_UnityEngine_AudioClip___Class *klass; + MonitorData *monitor; +}; + +struct IOrderedEnumerable_1_UnityEngine_AudioClip___VTable { + VirtualInvokeData CreateOrderedEnumerable; +}; + +struct IOrderedEnumerable_1_UnityEngine_AudioClip___StaticFields { +}; + +struct IOrderedEnumerable_1_UnityEngine_AudioClip___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IOrderedEnumerable_1_UnityEngine_AudioClip___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IOrderedEnumerable_1_UnityEngine_AudioClip___VTable vtable; +}; + +struct VFXManager { + struct VFXManager__Class *klass; + MonitorData *monitor; +}; + +struct VFXCameraXRSettings { + uint32_t viewTotal; + uint32_t viewCount; + uint32_t viewOffset; +}; + +struct VFXCameraXRSettings__Boxed { + struct VFXCameraXRSettings__Class *klass; + MonitorData *monitor; + struct VFXCameraXRSettings fields; +}; + +struct VFXCameraXRSettings__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct VFXCameraXRSettings__StaticFields { +}; + +struct VFXCameraXRSettings__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct VFXCameraXRSettings__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct VFXCameraXRSettings__VTable vtable; +}; + +struct VFXManager__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct VFXManager__StaticFields { + struct VFXCameraXRSettings kDefaultCameraXRSettings; +}; + +struct VFXManager__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct VFXManager__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct VFXManager__VTable vtable; +}; + +struct XRDevice { + struct XRDevice__Class *klass; + MonitorData *monitor; +}; + +struct XRDevice__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct XRDevice__StaticFields { + struct Action_1_String_ *deviceLoaded; +}; + +struct XRDevice__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct XRDevice__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct XRDevice__VTable vtable; +}; + +struct __declspec(align(8)) ReadOnlyCollection_1_Rewired_Data_Mapping_ControllerMap_Editor___Fields { + struct IList_1_Rewired_Data_Mapping_ControllerMap_Editor_ *list; + struct Object *_syncRoot; +}; + +struct ReadOnlyCollection_1_Rewired_Data_Mapping_ControllerMap_Editor_ { + struct ReadOnlyCollection_1_Rewired_Data_Mapping_ControllerMap_Editor___Class *klass; + MonitorData *monitor; + struct ReadOnlyCollection_1_Rewired_Data_Mapping_ControllerMap_Editor___Fields fields; +}; + +struct ReadOnlyCollection_1_Rewired_Data_Mapping_ControllerMap_Editor___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_Generic_IList_T__get_Item; + VirtualInvokeData System_Collections_Generic_IList_T__set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData System_Collections_Generic_IList_T__Insert; + VirtualInvokeData System_Collections_Generic_IList_T__RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_T__Add; + VirtualInvokeData System_Collections_Generic_ICollection_T__Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_T__Remove; + VirtualInvokeData GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData System_Collections_IList_Clear; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData System_Collections_IList_RemoveAt; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item; + VirtualInvokeData get_Count_2; +}; + +struct ReadOnlyCollection_1_Rewired_Data_Mapping_ControllerMap_Editor___StaticFields { +}; + +struct ReadOnlyCollection_1_Rewired_Data_Mapping_ControllerMap_Editor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ReadOnlyCollection_1_Rewired_Data_Mapping_ControllerMap_Editor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ReadOnlyCollection_1_Rewired_Data_Mapping_ControllerMap_Editor___VTable vtable; +}; + +struct __declspec(align(8)) ReadOnlyCollection_1_Rewired_Data_ControllerMapEnabler_RuleSet_Editor___Fields { + struct IList_1_Rewired_Data_ControllerMapEnabler_RuleSet_Editor_ *list; + struct Object *_syncRoot; +}; + +struct ReadOnlyCollection_1_Rewired_Data_ControllerMapEnabler_RuleSet_Editor_ { + struct ReadOnlyCollection_1_Rewired_Data_ControllerMapEnabler_RuleSet_Editor___Class *klass; + MonitorData *monitor; + struct ReadOnlyCollection_1_Rewired_Data_ControllerMapEnabler_RuleSet_Editor___Fields fields; +}; + +struct ReadOnlyCollection_1_Rewired_Data_ControllerMapEnabler_RuleSet_Editor___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_Generic_IList_T__get_Item; + VirtualInvokeData System_Collections_Generic_IList_T__set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData System_Collections_Generic_IList_T__Insert; + VirtualInvokeData System_Collections_Generic_IList_T__RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_T__Add; + VirtualInvokeData System_Collections_Generic_ICollection_T__Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_T__Remove; + VirtualInvokeData GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData System_Collections_IList_Clear; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData System_Collections_IList_RemoveAt; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item; + VirtualInvokeData get_Count_2; +}; + +struct ReadOnlyCollection_1_Rewired_Data_ControllerMapEnabler_RuleSet_Editor___StaticFields { +}; + +struct ReadOnlyCollection_1_Rewired_Data_ControllerMapEnabler_RuleSet_Editor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ReadOnlyCollection_1_Rewired_Data_ControllerMapEnabler_RuleSet_Editor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ReadOnlyCollection_1_Rewired_Data_ControllerMapEnabler_RuleSet_Editor___VTable vtable; +}; + +struct __declspec(align(8)) ReadOnlyCollection_1_Rewired_InputMapCategory___Fields { + struct IList_1_Rewired_InputMapCategory_ *list; + struct Object *_syncRoot; +}; + +struct ReadOnlyCollection_1_Rewired_InputMapCategory_ { + struct ReadOnlyCollection_1_Rewired_InputMapCategory___Class *klass; + MonitorData *monitor; + struct ReadOnlyCollection_1_Rewired_InputMapCategory___Fields fields; +}; + +struct ReadOnlyCollection_1_Rewired_InputMapCategory___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_Generic_IList_T__get_Item; + VirtualInvokeData System_Collections_Generic_IList_T__set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData System_Collections_Generic_IList_T__Insert; + VirtualInvokeData System_Collections_Generic_IList_T__RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_T__Add; + VirtualInvokeData System_Collections_Generic_ICollection_T__Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_T__Remove; + VirtualInvokeData GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData System_Collections_IList_Clear; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData System_Collections_IList_RemoveAt; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item; + VirtualInvokeData get_Count_2; +}; + +struct ReadOnlyCollection_1_Rewired_InputMapCategory___StaticFields { +}; + +struct ReadOnlyCollection_1_Rewired_InputMapCategory___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ReadOnlyCollection_1_Rewired_InputMapCategory___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ReadOnlyCollection_1_Rewired_InputMapCategory___VTable vtable; +}; + +struct __declspec(align(8)) ReadOnlyCollection_1_Rewired_InputLayout___Fields { + struct IList_1_Rewired_InputLayout_ *list; + struct Object *_syncRoot; +}; + +struct ReadOnlyCollection_1_Rewired_InputLayout_ { + struct ReadOnlyCollection_1_Rewired_InputLayout___Class *klass; + MonitorData *monitor; + struct ReadOnlyCollection_1_Rewired_InputLayout___Fields fields; +}; + +struct ReadOnlyCollection_1_Rewired_InputLayout___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_Generic_IList_T__get_Item; + VirtualInvokeData System_Collections_Generic_IList_T__set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData System_Collections_Generic_IList_T__Insert; + VirtualInvokeData System_Collections_Generic_IList_T__RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_T__Add; + VirtualInvokeData System_Collections_Generic_ICollection_T__Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_T__Remove; + VirtualInvokeData GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData System_Collections_IList_Clear; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData System_Collections_IList_RemoveAt; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item; + VirtualInvokeData get_Count_2; +}; + +struct ReadOnlyCollection_1_Rewired_InputLayout___StaticFields { +}; + +struct ReadOnlyCollection_1_Rewired_InputLayout___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ReadOnlyCollection_1_Rewired_InputLayout___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ReadOnlyCollection_1_Rewired_InputLayout___VTable vtable; +}; + +struct __declspec(align(8)) ReadOnlyCollection_1_Rewired_Data_ControllerMapLayoutManager_RuleSet_Editor___Fields { + struct IList_1_Rewired_Data_ControllerMapLayoutManager_RuleSet_Editor_ *list; + struct Object *_syncRoot; +}; + +struct ReadOnlyCollection_1_Rewired_Data_ControllerMapLayoutManager_RuleSet_Editor_ { + struct ReadOnlyCollection_1_Rewired_Data_ControllerMapLayoutManager_RuleSet_Editor___Class *klass; + MonitorData *monitor; + struct ReadOnlyCollection_1_Rewired_Data_ControllerMapLayoutManager_RuleSet_Editor___Fields fields; +}; + +struct ReadOnlyCollection_1_Rewired_Data_ControllerMapLayoutManager_RuleSet_Editor___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_Generic_IList_T__get_Item; + VirtualInvokeData System_Collections_Generic_IList_T__set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData System_Collections_Generic_IList_T__Insert; + VirtualInvokeData System_Collections_Generic_IList_T__RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_T__Add; + VirtualInvokeData System_Collections_Generic_ICollection_T__Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_T__Remove; + VirtualInvokeData GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData System_Collections_IList_Clear; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData System_Collections_IList_RemoveAt; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item; + VirtualInvokeData get_Count_2; +}; + +struct ReadOnlyCollection_1_Rewired_Data_ControllerMapLayoutManager_RuleSet_Editor___StaticFields { +}; + +struct ReadOnlyCollection_1_Rewired_Data_ControllerMapLayoutManager_RuleSet_Editor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ReadOnlyCollection_1_Rewired_Data_ControllerMapLayoutManager_RuleSet_Editor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ReadOnlyCollection_1_Rewired_Data_ControllerMapLayoutManager_RuleSet_Editor___VTable vtable; +}; + +struct __declspec(align(8)) ReadOnlyCollection_1_Rewired_InputCategory___Fields { + struct IList_1_Rewired_InputCategory_ *list; + struct Object *_syncRoot; +}; + +struct ReadOnlyCollection_1_Rewired_InputCategory_ { + struct ReadOnlyCollection_1_Rewired_InputCategory___Class *klass; + MonitorData *monitor; + struct ReadOnlyCollection_1_Rewired_InputCategory___Fields fields; +}; + +struct ReadOnlyCollection_1_Rewired_InputCategory___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_Generic_IList_T__get_Item; + VirtualInvokeData System_Collections_Generic_IList_T__set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData System_Collections_Generic_IList_T__Insert; + VirtualInvokeData System_Collections_Generic_IList_T__RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_T__Add; + VirtualInvokeData System_Collections_Generic_ICollection_T__Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_T__Remove; + VirtualInvokeData GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData System_Collections_IList_Clear; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData System_Collections_IList_RemoveAt; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item; + VirtualInvokeData get_Count_2; +}; + +struct ReadOnlyCollection_1_Rewired_InputCategory___StaticFields { +}; + +struct ReadOnlyCollection_1_Rewired_InputCategory___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ReadOnlyCollection_1_Rewired_InputCategory___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ReadOnlyCollection_1_Rewired_InputCategory___VTable vtable; +}; + +struct __declspec(align(8)) ReadOnlyCollection_1_Rewired_Data_Player_Editor___Fields { + struct IList_1_Rewired_Data_Player_Editor_ *list; + struct Object *_syncRoot; +}; + +struct ReadOnlyCollection_1_Rewired_Data_Player_Editor_ { + struct ReadOnlyCollection_1_Rewired_Data_Player_Editor___Class *klass; + MonitorData *monitor; + struct ReadOnlyCollection_1_Rewired_Data_Player_Editor___Fields fields; +}; + +struct ReadOnlyCollection_1_Rewired_Data_Player_Editor___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_Generic_IList_T__get_Item; + VirtualInvokeData System_Collections_Generic_IList_T__set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData System_Collections_Generic_IList_T__Insert; + VirtualInvokeData System_Collections_Generic_IList_T__RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_T__Add; + VirtualInvokeData System_Collections_Generic_ICollection_T__Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_T__Remove; + VirtualInvokeData GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData System_Collections_IList_Clear; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData System_Collections_IList_RemoveAt; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item; + VirtualInvokeData get_Count_2; +}; + +struct ReadOnlyCollection_1_Rewired_Data_Player_Editor___StaticFields { +}; + +struct ReadOnlyCollection_1_Rewired_Data_Player_Editor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ReadOnlyCollection_1_Rewired_Data_Player_Editor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ReadOnlyCollection_1_Rewired_Data_Player_Editor___VTable vtable; +}; + +struct __declspec(align(8)) ReadOnlyCollection_1_Rewired_InputBehavior___Fields { + struct IList_1_Rewired_InputBehavior_ *list; + struct Object *_syncRoot; +}; + +struct ReadOnlyCollection_1_Rewired_InputBehavior_ { + struct ReadOnlyCollection_1_Rewired_InputBehavior___Class *klass; + MonitorData *monitor; + struct ReadOnlyCollection_1_Rewired_InputBehavior___Fields fields; +}; + +struct ReadOnlyCollection_1_Rewired_InputBehavior___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_Generic_IList_T__get_Item; + VirtualInvokeData System_Collections_Generic_IList_T__set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData System_Collections_Generic_IList_T__Insert; + VirtualInvokeData System_Collections_Generic_IList_T__RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_T__Add; + VirtualInvokeData System_Collections_Generic_ICollection_T__Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_T__Remove; + VirtualInvokeData GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData System_Collections_IList_Clear; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData System_Collections_IList_RemoveAt; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item; + VirtualInvokeData get_Count_2; +}; + +struct ReadOnlyCollection_1_Rewired_InputBehavior___StaticFields { +}; + +struct ReadOnlyCollection_1_Rewired_InputBehavior___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ReadOnlyCollection_1_Rewired_InputBehavior___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ReadOnlyCollection_1_Rewired_InputBehavior___VTable vtable; +}; + +struct Comparison_1_Rewired_Data_Mapping_ControllerMap_Editor___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Comparison_1_Rewired_Data_Mapping_ControllerMap_Editor_ { + struct Comparison_1_Rewired_Data_Mapping_ControllerMap_Editor___Class *klass; + MonitorData *monitor; + struct Comparison_1_Rewired_Data_Mapping_ControllerMap_Editor___Fields fields; +}; + +struct Comparison_1_Rewired_Data_Mapping_ControllerMap_Editor___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Comparison_1_Rewired_Data_Mapping_ControllerMap_Editor___StaticFields { +}; + +struct Comparison_1_Rewired_Data_Mapping_ControllerMap_Editor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Comparison_1_Rewired_Data_Mapping_ControllerMap_Editor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Comparison_1_Rewired_Data_Mapping_ControllerMap_Editor___VTable vtable; +}; + +struct InputDevices { + struct InputDevices__Class *klass; + MonitorData *monitor; +}; + +struct InputDevices__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct InputDevices__StaticFields { + struct List_1_UnityEngine_XR_InputDevice_ *s_InputDeviceList; + struct Action_1_UnityEngine_XR_InputDevice_ *deviceConnected; + struct Action_1_UnityEngine_XR_InputDevice_ *deviceDisconnected; + struct Action_1_UnityEngine_XR_InputDevice_ *deviceConfigChanged; +}; + +struct InputDevices__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputDevices__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputDevices__VTable vtable; +}; + +struct InputTracking { + struct InputTracking__Class *klass; + MonitorData *monitor; +}; + +struct InputTracking__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct InputTracking__StaticFields { + struct Action_1_UnityEngine_XR_XRNodeState_ *trackingAcquired; + struct Action_1_UnityEngine_XR_XRNodeState_ *trackingLost; + struct Action_1_UnityEngine_XR_XRNodeState_ *nodeAdded; + struct Action_1_UnityEngine_XR_XRNodeState_ *nodeRemoved; +}; + +struct InputTracking__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputTracking__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputTracking__VTable vtable; +}; + +struct __declspec(align(8)) List_1_XXNesqlLzdVyNWEawBsQGxYGjphX___Fields { + struct XXNesqlLzdVyNWEawBsQGxYGjphX__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_XXNesqlLzdVyNWEawBsQGxYGjphX_ { + struct List_1_XXNesqlLzdVyNWEawBsQGxYGjphX___Class *klass; + MonitorData *monitor; + struct List_1_XXNesqlLzdVyNWEawBsQGxYGjphX___Fields fields; +}; + +struct IEnumerator_1_XXNesqlLzdVyNWEawBsQGxYGjphX_ { + struct IEnumerator_1_XXNesqlLzdVyNWEawBsQGxYGjphX___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerator_1_XXNesqlLzdVyNWEawBsQGxYGjphX___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_XXNesqlLzdVyNWEawBsQGxYGjphX___StaticFields { +}; + +struct IEnumerator_1_XXNesqlLzdVyNWEawBsQGxYGjphX___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_XXNesqlLzdVyNWEawBsQGxYGjphX___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_XXNesqlLzdVyNWEawBsQGxYGjphX___VTable vtable; +}; + +struct List_1_XXNesqlLzdVyNWEawBsQGxYGjphX___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_XXNesqlLzdVyNWEawBsQGxYGjphX___StaticFields { + struct XXNesqlLzdVyNWEawBsQGxYGjphX__Array *s_emptyArray; +}; + +struct List_1_XXNesqlLzdVyNWEawBsQGxYGjphX___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_XXNesqlLzdVyNWEawBsQGxYGjphX___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_XXNesqlLzdVyNWEawBsQGxYGjphX___VTable vtable; +}; + +struct IList_1_Rewired_Data_CustomController_Editor_Axis_ { + struct IList_1_Rewired_Data_CustomController_Editor_Axis___Class *klass; + MonitorData *monitor; +}; + +struct IList_1_Rewired_Data_CustomController_Editor_Axis___VTable { + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; +}; + +struct IList_1_Rewired_Data_CustomController_Editor_Axis___StaticFields { +}; + +struct IList_1_Rewired_Data_CustomController_Editor_Axis___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IList_1_Rewired_Data_CustomController_Editor_Axis___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IList_1_Rewired_Data_CustomController_Editor_Axis___VTable vtable; +}; + +struct IList_1_Rewired_Data_CustomController_Editor_Button_ { + struct IList_1_Rewired_Data_CustomController_Editor_Button___Class *klass; + MonitorData *monitor; +}; + +struct IList_1_Rewired_Data_CustomController_Editor_Button___VTable { + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; +}; + +struct IList_1_Rewired_Data_CustomController_Editor_Button___StaticFields { +}; + +struct IList_1_Rewired_Data_CustomController_Editor_Button___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IList_1_Rewired_Data_CustomController_Editor_Button___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IList_1_Rewired_Data_CustomController_Editor_Button___VTable vtable; +}; + +struct __declspec(align(8)) List_1_System_Diagnostics_Process___Fields { + struct Process__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_System_Diagnostics_Process_ { + struct List_1_System_Diagnostics_Process___Class *klass; + MonitorData *monitor; + struct List_1_System_Diagnostics_Process___Fields fields; +}; + +struct IEnumerator_1_System_Diagnostics_Process_ { + struct IEnumerator_1_System_Diagnostics_Process___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerator_1_System_Diagnostics_Process___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_System_Diagnostics_Process___StaticFields { +}; + +struct IEnumerator_1_System_Diagnostics_Process___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_System_Diagnostics_Process___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_System_Diagnostics_Process___VTable vtable; +}; + +struct List_1_System_Diagnostics_Process___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_System_Diagnostics_Process___StaticFields { + struct Process__Array *s_emptyArray; +}; + +struct List_1_System_Diagnostics_Process___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_System_Diagnostics_Process___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_System_Diagnostics_Process___VTable vtable; +}; + +struct Process___VTable { +}; + +struct Process___StaticFields { +}; + +struct Process___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Process___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Process___VTable vtable; +}; + +struct IEnumerable_1_System_WeakReference_ { + struct IEnumerable_1_System_WeakReference___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_System_WeakReference___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_System_WeakReference___StaticFields { +}; + +struct IEnumerable_1_System_WeakReference___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_System_WeakReference___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_System_WeakReference___VTable vtable; +}; + +struct TraceInternal { + struct TraceInternal__Class *klass; + MonitorData *monitor; +}; + +struct TraceInternal__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct TraceInternal__StaticFields { + struct String *appName; + struct TraceListenerCollection *listeners; + bool autoFlush; + bool useGlobalLock; + int32_t indentLevel; + int32_t indentSize; + struct Object *critSec; +}; + +struct TraceInternal__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TraceInternal__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TraceInternal__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_NolanBehaviour_UnityEngine_GameObject_ { + struct Dictionary_2_NolanBehaviour_UnityEngine_GameObject_ *_dictionary; + int32_t _version; + int32_t _index; + struct KeyValuePair_2_NolanBehaviour_UnityEngine_GameObject_ _current; + int32_t _getEnumeratorRetType; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_NolanBehaviour_UnityEngine_GameObject___Boxed { + struct Dictionary_2_TKey_TValue_Enumerator_NolanBehaviour_UnityEngine_GameObject___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Enumerator_NolanBehaviour_UnityEngine_GameObject_ fields; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_NolanBehaviour_UnityEngine_GameObject___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Key; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Value; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Entry; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_NolanBehaviour_UnityEngine_GameObject___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Enumerator_NolanBehaviour_UnityEngine_GameObject___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Enumerator_NolanBehaviour_UnityEngine_GameObject___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Enumerator_NolanBehaviour_UnityEngine_GameObject___VTable vtable; +}; + +struct ReorderableList__Array { + struct ReorderableList__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct ReorderableList *vector[32]; +}; + +struct ReorderableList__Array__VTable { +}; + +struct ReorderableList__Array__StaticFields { +}; + +struct ReorderableList__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ReorderableList__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ReorderableList__Array__VTable vtable; +}; + +struct List_1_T_Enumerator_ShakeObject_ { + struct List_1_ShakeObject_ *_list; + int32_t _index; + int32_t _version; + struct ShakeObject *_current; +}; + +struct List_1_T_Enumerator_ShakeObject___Boxed { + struct List_1_T_Enumerator_ShakeObject___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_ShakeObject_ fields; +}; + +struct List_1_T_Enumerator_ShakeObject___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_ShakeObject___StaticFields { +}; + +struct List_1_T_Enumerator_ShakeObject___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_ShakeObject___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_ShakeObject___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Rigidbody_UnityEngine_Vector3_ { + struct Dictionary_2_UnityEngine_Rigidbody_UnityEngine_Vector3_ *_dictionary; + int32_t _version; + int32_t _index; + struct KeyValuePair_2_UnityEngine_Rigidbody_UnityEngine_Vector3_ _current; + int32_t _getEnumeratorRetType; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Rigidbody_UnityEngine_Vector3___Boxed { + struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Rigidbody_UnityEngine_Vector3___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Rigidbody_UnityEngine_Vector3_ fields; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Rigidbody_UnityEngine_Vector3___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Key; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Value; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Entry; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Rigidbody_UnityEngine_Vector3___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Rigidbody_UnityEngine_Vector3___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Rigidbody_UnityEngine_Vector3___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_Rigidbody_UnityEngine_Vector3___VTable vtable; +}; + +struct List_1_T_Enumerator_NightmareLightData_ { + struct List_1_NightmareLightData_ *_list; + int32_t _index; + int32_t _version; + struct NightmareLightData *_current; +}; + +struct List_1_T_Enumerator_NightmareLightData___Boxed { + struct List_1_T_Enumerator_NightmareLightData___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_NightmareLightData_ fields; +}; + +struct List_1_T_Enumerator_NightmareLightData___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_NightmareLightData___StaticFields { +}; + +struct List_1_T_Enumerator_NightmareLightData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_NightmareLightData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_NightmareLightData___VTable vtable; +}; + +struct IEnumerable_1_UnityEngine_UI_Extensions_DropDownListItem_ { + struct IEnumerable_1_UnityEngine_UI_Extensions_DropDownListItem___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_UnityEngine_UI_Extensions_DropDownListItem___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_UnityEngine_UI_Extensions_DropDownListItem___StaticFields { +}; + +struct IEnumerable_1_UnityEngine_UI_Extensions_DropDownListItem___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_UnityEngine_UI_Extensions_DropDownListItem___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_UnityEngine_UI_Extensions_DropDownListItem___VTable vtable; +}; + +struct Action_2_UnityEngine_GameObject_Boolean___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_2_UnityEngine_GameObject_Boolean_ { + struct Action_2_UnityEngine_GameObject_Boolean___Class *klass; + MonitorData *monitor; + struct Action_2_UnityEngine_GameObject_Boolean___Fields fields; +}; + +struct Action_2_UnityEngine_GameObject_Boolean___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_2_UnityEngine_GameObject_Boolean___StaticFields { +}; + +struct Action_2_UnityEngine_GameObject_Boolean___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_2_UnityEngine_GameObject_Boolean___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_2_UnityEngine_GameObject_Boolean___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_BoltEntity_System_Int32_ { + struct Dictionary_2_Photon_Bolt_BoltEntity_System_Int32_ *_dictionary; + int32_t _version; + int32_t _index; + struct KeyValuePair_2_Photon_Bolt_BoltEntity_System_Int32_ _current; + int32_t _getEnumeratorRetType; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_BoltEntity_System_Int32___Boxed { + struct Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_BoltEntity_System_Int32___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_BoltEntity_System_Int32_ fields; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_BoltEntity_System_Int32___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Key; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Value; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Entry; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_BoltEntity_System_Int32___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_BoltEntity_System_Int32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_BoltEntity_System_Int32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Enumerator_Photon_Bolt_BoltEntity_System_Int32___VTable vtable; +}; + +struct Predicate_1_Rewired_InputLayout___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Predicate_1_Rewired_InputLayout_ { + struct Predicate_1_Rewired_InputLayout___Class *klass; + MonitorData *monitor; + struct Predicate_1_Rewired_InputLayout___Fields fields; +}; + +struct Predicate_1_Rewired_InputLayout___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Predicate_1_Rewired_InputLayout___StaticFields { +}; + +struct Predicate_1_Rewired_InputLayout___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Predicate_1_Rewired_InputLayout___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Predicate_1_Rewired_InputLayout___VTable vtable; +}; + +struct ICollection_1_Rewired_Data_Mapping_ControllerMap_Editor_ { + struct ICollection_1_Rewired_Data_Mapping_ControllerMap_Editor___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_Rewired_Data_Mapping_ControllerMap_Editor___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_Rewired_Data_Mapping_ControllerMap_Editor___StaticFields { +}; + +struct ICollection_1_Rewired_Data_Mapping_ControllerMap_Editor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_Rewired_Data_Mapping_ControllerMap_Editor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_Rewired_Data_Mapping_ControllerMap_Editor___VTable vtable; +}; + +struct Action_2_System_Collections_Generic_List_1_System_Collections_Generic_List_1___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_2_System_Collections_Generic_List_1_System_Collections_Generic_List_1_ { + struct Action_2_System_Collections_Generic_List_1_System_Collections_Generic_List_1___Class *klass; + MonitorData *monitor; + struct Action_2_System_Collections_Generic_List_1_System_Collections_Generic_List_1___Fields fields; +}; + +struct Action_2_System_Collections_Generic_List_1_System_Collections_Generic_List_1___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_2_System_Collections_Generic_List_1_System_Collections_Generic_List_1___StaticFields { +}; + +struct Action_2_System_Collections_Generic_List_1_System_Collections_Generic_List_1___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_2_System_Collections_Generic_List_1_System_Collections_Generic_List_1___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_2_System_Collections_Generic_List_1_System_Collections_Generic_List_1___VTable vtable; +}; + +struct ICollection_1_Rewired_Data_Player_Editor_CreateControllerInfo_ { + struct ICollection_1_Rewired_Data_Player_Editor_CreateControllerInfo___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_Rewired_Data_Player_Editor_CreateControllerInfo___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_Rewired_Data_Player_Editor_CreateControllerInfo___StaticFields { +}; + +struct ICollection_1_Rewired_Data_Player_Editor_CreateControllerInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_Rewired_Data_Player_Editor_CreateControllerInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_Rewired_Data_Player_Editor_CreateControllerInfo___VTable vtable; +}; + +struct ICollection_1_Rewired_Data_Player_Editor_Mapping_ { + struct ICollection_1_Rewired_Data_Player_Editor_Mapping___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_Rewired_Data_Player_Editor_Mapping___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_Rewired_Data_Player_Editor_Mapping___StaticFields { +}; + +struct ICollection_1_Rewired_Data_Player_Editor_Mapping___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_Rewired_Data_Player_Editor_Mapping___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_Rewired_Data_Player_Editor_Mapping___VTable vtable; +}; + +struct ICollection_1_Rewired_Data_Player_Editor_ { + struct ICollection_1_Rewired_Data_Player_Editor___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_Rewired_Data_Player_Editor___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_Rewired_Data_Player_Editor___StaticFields { +}; + +struct ICollection_1_Rewired_Data_Player_Editor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_Rewired_Data_Player_Editor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_Rewired_Data_Player_Editor___VTable vtable; +}; + +struct ICollection_1_Rewired_InputCategory_ { + struct ICollection_1_Rewired_InputCategory___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_Rewired_InputCategory___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_Rewired_InputCategory___StaticFields { +}; + +struct ICollection_1_Rewired_InputCategory___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_Rewired_InputCategory___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_Rewired_InputCategory___VTable vtable; +}; + +struct ICollection_1_Rewired_Data_ControllerMapEnabler_RuleSet_Editor_ { + struct ICollection_1_Rewired_Data_ControllerMapEnabler_RuleSet_Editor___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_Rewired_Data_ControllerMapEnabler_RuleSet_Editor___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_Rewired_Data_ControllerMapEnabler_RuleSet_Editor___StaticFields { +}; + +struct ICollection_1_Rewired_Data_ControllerMapEnabler_RuleSet_Editor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_Rewired_Data_ControllerMapEnabler_RuleSet_Editor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_Rewired_Data_ControllerMapEnabler_RuleSet_Editor___VTable vtable; +}; + +struct ICollection_1_Rewired_Data_ControllerMapLayoutManager_RuleSet_Editor_ { + struct ICollection_1_Rewired_Data_ControllerMapLayoutManager_RuleSet_Editor___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_Rewired_Data_ControllerMapLayoutManager_RuleSet_Editor___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_Rewired_Data_ControllerMapLayoutManager_RuleSet_Editor___StaticFields { +}; + +struct ICollection_1_Rewired_Data_ControllerMapLayoutManager_RuleSet_Editor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_Rewired_Data_ControllerMapLayoutManager_RuleSet_Editor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_Rewired_Data_ControllerMapLayoutManager_RuleSet_Editor___VTable vtable; +}; + +struct ICollection_1_Rewired_Data_CustomController_Editor_ { + struct ICollection_1_Rewired_Data_CustomController_Editor___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_Rewired_Data_CustomController_Editor___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_Rewired_Data_CustomController_Editor___StaticFields { +}; + +struct ICollection_1_Rewired_Data_CustomController_Editor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_Rewired_Data_CustomController_Editor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_Rewired_Data_CustomController_Editor___VTable vtable; +}; + +struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_InputMapCategory___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_InputMapCategory_ { + struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_InputMapCategory___Class *klass; + MonitorData *monitor; + struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_InputMapCategory___Fields fields; +}; + +struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_InputMapCategory___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_InputMapCategory___StaticFields { +}; + +struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_InputMapCategory___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_InputMapCategory___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_InputMapCategory___VTable vtable; +}; + +struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_Data_Player_Editor___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_Data_Player_Editor_ { + struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_Data_Player_Editor___Class *klass; + MonitorData *monitor; + struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_Data_Player_Editor___Fields fields; +}; + +struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_Data_Player_Editor___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_Data_Player_Editor___StaticFields { +}; + +struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_Data_Player_Editor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_Data_Player_Editor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_Data_Player_Editor___VTable vtable; +}; + +struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_InputCategory___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_InputCategory_ { + struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_InputCategory___Class *klass; + MonitorData *monitor; + struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_InputCategory___Fields fields; +}; + +struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_InputCategory___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_InputCategory___StaticFields { +}; + +struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_InputCategory___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_InputCategory___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_InputCategory___VTable vtable; +}; + +struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_InputLayout___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_InputLayout_ { + struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_InputLayout___Class *klass; + MonitorData *monitor; + struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_InputLayout___Fields fields; +}; + +struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_InputLayout___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_InputLayout___StaticFields { +}; + +struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_InputLayout___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_InputLayout___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_InputLayout___VTable vtable; +}; + +struct Func_3_Rewired_Data_Mapping_ControllerMap_Editor_System_Collections_Generic_IList_1_Int32___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_3_Rewired_Data_Mapping_ControllerMap_Editor_System_Collections_Generic_IList_1_Int32_ { + struct Func_3_Rewired_Data_Mapping_ControllerMap_Editor_System_Collections_Generic_IList_1_Int32___Class *klass; + MonitorData *monitor; + struct Func_3_Rewired_Data_Mapping_ControllerMap_Editor_System_Collections_Generic_IList_1_Int32___Fields fields; +}; + +struct Func_3_Rewired_Data_Mapping_ControllerMap_Editor_System_Collections_Generic_IList_1_Int32___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_3_Rewired_Data_Mapping_ControllerMap_Editor_System_Collections_Generic_IList_1_Int32___StaticFields { +}; + +struct Func_3_Rewired_Data_Mapping_ControllerMap_Editor_System_Collections_Generic_IList_1_Int32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_3_Rewired_Data_Mapping_ControllerMap_Editor_System_Collections_Generic_IList_1_Int32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_3_Rewired_Data_Mapping_ControllerMap_Editor_System_Collections_Generic_IList_1_Int32___VTable vtable; +}; + +struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_InputAction___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_InputAction_ { + struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_InputAction___Class *klass; + MonitorData *monitor; + struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_InputAction___Fields fields; +}; + +struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_InputAction___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_InputAction___StaticFields { +}; + +struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_InputAction___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_InputAction___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_InputAction___VTable vtable; +}; + +struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_InputBehavior___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_InputBehavior_ { + struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_InputBehavior___Class *klass; + MonitorData *monitor; + struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_InputBehavior___Fields fields; +}; + +struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_InputBehavior___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_InputBehavior___StaticFields { +}; + +struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_InputBehavior___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_InputBehavior___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_InputBehavior___VTable vtable; +}; + +struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_Data_Mapping_ControllerMap_Editor___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_Data_Mapping_ControllerMap_Editor_ { + struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_Data_Mapping_ControllerMap_Editor___Class *klass; + MonitorData *monitor; + struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_Data_Mapping_ControllerMap_Editor___Fields fields; +}; + +struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_Data_Mapping_ControllerMap_Editor___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_Data_Mapping_ControllerMap_Editor___StaticFields { +}; + +struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_Data_Mapping_ControllerMap_Editor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_Data_Mapping_ControllerMap_Editor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_Data_Mapping_ControllerMap_Editor___VTable vtable; +}; + +struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_Data_CustomController_Editor___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_Data_CustomController_Editor_ { + struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_Data_CustomController_Editor___Class *klass; + MonitorData *monitor; + struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_Data_CustomController_Editor___Fields fields; +}; + +struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_Data_CustomController_Editor___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_Data_CustomController_Editor___StaticFields { +}; + +struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_Data_CustomController_Editor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_Data_CustomController_Editor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_Data_CustomController_Editor___VTable vtable; +}; + +struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_Data_ControllerMapEnabler_RuleSet_Editor___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_Data_ControllerMapEnabler_RuleSet_Editor_ { + struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_Data_ControllerMapEnabler_RuleSet_Editor___Class *klass; + MonitorData *monitor; + struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_Data_ControllerMapEnabler_RuleSet_Editor___Fields fields; +}; + +struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_Data_ControllerMapEnabler_RuleSet_Editor___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_Data_ControllerMapEnabler_RuleSet_Editor___StaticFields { +}; + +struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_Data_ControllerMapEnabler_RuleSet_Editor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_Data_ControllerMapEnabler_RuleSet_Editor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_Data_ControllerMapEnabler_RuleSet_Editor___VTable vtable; +}; + +struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_Data_ControllerMapLayoutManager_RuleSet_Editor___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_Data_ControllerMapLayoutManager_RuleSet_Editor_ { + struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_Data_ControllerMapLayoutManager_RuleSet_Editor___Class *klass; + MonitorData *monitor; + struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_Data_ControllerMapLayoutManager_RuleSet_Editor___Fields fields; +}; + +struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_Data_ControllerMapLayoutManager_RuleSet_Editor___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_Data_ControllerMapLayoutManager_RuleSet_Editor___StaticFields { +}; + +struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_Data_ControllerMapLayoutManager_RuleSet_Editor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_Data_ControllerMapLayoutManager_RuleSet_Editor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_2_Rewired_Data_UserData_TGFmHlQvQrFkRCzEzRjJlJbiiyOc_gNYjUIktDXRZjAojpQIrHCBFyQwH_1_Rewired_Data_ControllerMapLayoutManager_RuleSet_Editor___VTable vtable; +}; + +struct UnityAction_1_UnityEngine_EventSystems_BaseEventData___Fields { + struct MulticastDelegate__Fields _; +}; + +struct UnityAction_1_UnityEngine_EventSystems_BaseEventData_ { + struct UnityAction_1_UnityEngine_EventSystems_BaseEventData___Class *klass; + MonitorData *monitor; + struct UnityAction_1_UnityEngine_EventSystems_BaseEventData___Fields fields; +}; + +struct UnityAction_1_UnityEngine_EventSystems_BaseEventData___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct UnityAction_1_UnityEngine_EventSystems_BaseEventData___StaticFields { +}; + +struct UnityAction_1_UnityEngine_EventSystems_BaseEventData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UnityAction_1_UnityEngine_EventSystems_BaseEventData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UnityAction_1_UnityEngine_EventSystems_BaseEventData___VTable vtable; +}; + +struct __declspec(align(8)) List_1_UnityEngine_MonoBehaviour___Fields { + struct MonoBehaviour__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_MonoBehaviour_ { + struct List_1_UnityEngine_MonoBehaviour___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_MonoBehaviour___Fields fields; +}; + +struct List_1_UnityEngine_MonoBehaviour___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_UnityEngine_MonoBehaviour___StaticFields { + struct MonoBehaviour__Array *s_emptyArray; +}; + +struct List_1_UnityEngine_MonoBehaviour___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_MonoBehaviour___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_MonoBehaviour___VTable vtable; +}; + +struct __declspec(align(8)) List_1_UnityEngine_UI_Extensions_IBoxSelectable___Fields { + struct IBoxSelectable__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_UI_Extensions_IBoxSelectable_ { + struct List_1_UnityEngine_UI_Extensions_IBoxSelectable___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_UI_Extensions_IBoxSelectable___Fields fields; +}; + +struct IEnumerator_1_UnityEngine_UI_Extensions_IBoxSelectable_ { + struct IEnumerator_1_UnityEngine_UI_Extensions_IBoxSelectable___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerator_1_UnityEngine_UI_Extensions_IBoxSelectable___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_UnityEngine_UI_Extensions_IBoxSelectable___StaticFields { +}; + +struct IEnumerator_1_UnityEngine_UI_Extensions_IBoxSelectable___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_UnityEngine_UI_Extensions_IBoxSelectable___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_UnityEngine_UI_Extensions_IBoxSelectable___VTable vtable; +}; + +struct List_1_UnityEngine_UI_Extensions_IBoxSelectable___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_UnityEngine_UI_Extensions_IBoxSelectable___StaticFields { + struct IBoxSelectable__Array *s_emptyArray; +}; + +struct List_1_UnityEngine_UI_Extensions_IBoxSelectable___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_UI_Extensions_IBoxSelectable___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_UI_Extensions_IBoxSelectable___VTable vtable; +}; + +struct __declspec(align(8)) List_1_InnMazeBlocker___Fields { + struct InnMazeBlocker__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_InnMazeBlocker_ { + struct List_1_InnMazeBlocker___Class *klass; + MonitorData *monitor; + struct List_1_InnMazeBlocker___Fields fields; +}; + +struct IEnumerator_1_InnMazeBlocker_ { + struct IEnumerator_1_InnMazeBlocker___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerator_1_InnMazeBlocker___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_InnMazeBlocker___StaticFields { +}; + +struct IEnumerator_1_InnMazeBlocker___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_InnMazeBlocker___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_InnMazeBlocker___VTable vtable; +}; + +struct List_1_InnMazeBlocker___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_InnMazeBlocker___StaticFields { + struct InnMazeBlocker__Array *s_emptyArray; +}; + +struct List_1_InnMazeBlocker___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_InnMazeBlocker___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_InnMazeBlocker___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_InnMazeBlocker_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct List_1_InnMazeBlocker_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_InnMazeBlocker___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_InnMazeBlocker___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_InnMazeBlocker_ fields; +}; + +struct __declspec(align(8)) Dictionary_2_System_Int32_List_1_InnMazeBlocker___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_InnMazeBlocker___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_System_Int32_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32_List_1_InnMazeBlocker_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_List_1_InnMazeBlocker_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_System_Int32_List_1_InnMazeBlocker_ { + struct Dictionary_2_System_Int32_List_1_InnMazeBlocker___Class *klass; + MonitorData *monitor; + struct Dictionary_2_System_Int32_List_1_InnMazeBlocker___Fields fields; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_InnMazeBlocker___Array { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_InnMazeBlocker___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_InnMazeBlocker_ vector[32]; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_KeyCollection_System_Int32_List_1_InnMazeBlocker___Fields { + struct Dictionary_2_System_Int32_List_1_InnMazeBlocker_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32_List_1_InnMazeBlocker_ { + struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32_List_1_InnMazeBlocker___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32_List_1_InnMazeBlocker___Fields fields; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_ValueCollection_System_Int32_List_1_InnMazeBlocker___Fields { + struct Dictionary_2_System_Int32_List_1_InnMazeBlocker_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_List_1_InnMazeBlocker_ { + struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_List_1_InnMazeBlocker___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_List_1_InnMazeBlocker___Fields fields; +}; + +struct List_1_InnMazeBlocker___Array { + struct List_1_InnMazeBlocker___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct List_1_InnMazeBlocker_ *vector[32]; +}; + +struct IEnumerator_1_List_1_InnMazeBlocker_ { + struct IEnumerator_1_List_1_InnMazeBlocker___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_List_1_InnMazeBlocker_ { + struct ICollection_1_List_1_InnMazeBlocker___Class *klass; + MonitorData *monitor; +}; + +struct KeyValuePair_2_System_Int32_List_1_InnMazeBlocker_ { + int32_t key; + struct List_1_InnMazeBlocker_ *value; +}; + +struct KeyValuePair_2_System_Int32_List_1_InnMazeBlocker___Boxed { + struct KeyValuePair_2_System_Int32_List_1_InnMazeBlocker___Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_System_Int32_List_1_InnMazeBlocker_ fields; +}; + +struct KeyValuePair_2_System_Int32_List_1_InnMazeBlocker___Array { + struct KeyValuePair_2_System_Int32_List_1_InnMazeBlocker___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct KeyValuePair_2_System_Int32_List_1_InnMazeBlocker_ vector[32]; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Int32_List_1_InnMazeBlocker_ { + struct IEnumerator_1_KeyValuePair_2_System_Int32_List_1_InnMazeBlocker___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_List_1_InnMazeBlocker_ { + struct IEnumerable_1_List_1_InnMazeBlocker___Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_InnMazeBlocker___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_InnMazeBlocker___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_InnMazeBlocker___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_InnMazeBlocker___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_InnMazeBlocker___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_InnMazeBlocker___Array__VTable { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_InnMazeBlocker___Array__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_InnMazeBlocker___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_InnMazeBlocker___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_List_1_InnMazeBlocker___Array__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32_List_1_InnMazeBlocker___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TKey__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32_List_1_InnMazeBlocker___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32_List_1_InnMazeBlocker___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32_List_1_InnMazeBlocker___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32_List_1_InnMazeBlocker___VTable vtable; +}; + +struct List_1_InnMazeBlocker___Array__VTable { +}; + +struct List_1_InnMazeBlocker___Array__StaticFields { +}; + +struct List_1_InnMazeBlocker___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_InnMazeBlocker___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_InnMazeBlocker___Array__VTable vtable; +}; + +struct IEnumerator_1_List_1_InnMazeBlocker___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_List_1_InnMazeBlocker___StaticFields { +}; + +struct IEnumerator_1_List_1_InnMazeBlocker___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_List_1_InnMazeBlocker___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_List_1_InnMazeBlocker___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_List_1_InnMazeBlocker___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TValue__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_List_1_InnMazeBlocker___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_List_1_InnMazeBlocker___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_List_1_InnMazeBlocker___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_List_1_InnMazeBlocker___VTable vtable; +}; + +struct ICollection_1_List_1_InnMazeBlocker___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_List_1_InnMazeBlocker___StaticFields { +}; + +struct ICollection_1_List_1_InnMazeBlocker___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_List_1_InnMazeBlocker___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_List_1_InnMazeBlocker___VTable vtable; +}; + +struct List_1_InnMazeBlocker__1__VTable { +}; + +struct List_1_InnMazeBlocker__1__StaticFields { +}; + +struct List_1_InnMazeBlocker__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_InnMazeBlocker__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_InnMazeBlocker__1__VTable vtable; +}; + +struct KeyValuePair_2_System_Int32_List_1_InnMazeBlocker___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct KeyValuePair_2_System_Int32_List_1_InnMazeBlocker___StaticFields { +}; + +struct KeyValuePair_2_System_Int32_List_1_InnMazeBlocker___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_Int32_List_1_InnMazeBlocker___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_Int32_List_1_InnMazeBlocker___VTable vtable; +}; + +struct KeyValuePair_2_System_Int32_List_1_InnMazeBlocker___Array__VTable { +}; + +struct KeyValuePair_2_System_Int32_List_1_InnMazeBlocker___Array__StaticFields { +}; + +struct KeyValuePair_2_System_Int32_List_1_InnMazeBlocker___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_Int32_List_1_InnMazeBlocker___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_Int32_List_1_InnMazeBlocker___Array__VTable vtable; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Int32_List_1_InnMazeBlocker___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Int32_List_1_InnMazeBlocker___StaticFields { +}; + +struct IEnumerator_1_KeyValuePair_2_System_Int32_List_1_InnMazeBlocker___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_KeyValuePair_2_System_Int32_List_1_InnMazeBlocker___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_KeyValuePair_2_System_Int32_List_1_InnMazeBlocker___VTable vtable; +}; + +struct IEnumerable_1_List_1_InnMazeBlocker___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_List_1_InnMazeBlocker___StaticFields { +}; + +struct IEnumerable_1_List_1_InnMazeBlocker___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_List_1_InnMazeBlocker___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_List_1_InnMazeBlocker___VTable vtable; +}; + +struct Dictionary_2_System_Int32_List_1_InnMazeBlocker___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Values; + VirtualInvokeData ContainsKey; + VirtualInvokeData Add; + VirtualInvokeData Remove; + VirtualInvokeData TryGetValue; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add; + VirtualInvokeData Clear; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_get_Item; + VirtualInvokeData System_Collections_IDictionary_set_Item; + VirtualInvokeData System_Collections_IDictionary_get_Keys; + VirtualInvokeData System_Collections_IDictionary_get_Values; + VirtualInvokeData System_Collections_IDictionary_Contains; + VirtualInvokeData System_Collections_IDictionary_Add; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IDictionary_get_IsReadOnly; + VirtualInvokeData System_Collections_IDictionary_get_IsFixedSize; + VirtualInvokeData System_Collections_IDictionary_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_Remove; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData TryGetValue_1; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Values; + VirtualInvokeData get_Count_2; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct Dictionary_2_System_Int32_List_1_InnMazeBlocker___StaticFields { +}; + +struct Dictionary_2_System_Int32_List_1_InnMazeBlocker___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_System_Int32_List_1_InnMazeBlocker___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_System_Int32_List_1_InnMazeBlocker___VTable vtable; +}; + +struct List_1_T_Enumerator_InitialGoatSpawn_ { + struct List_1_InitialGoatSpawn_ *_list; + int32_t _index; + int32_t _version; + struct InitialGoatSpawn *_current; +}; + +struct List_1_T_Enumerator_InitialGoatSpawn___Boxed { + struct List_1_T_Enumerator_InitialGoatSpawn___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_InitialGoatSpawn_ fields; +}; + +struct List_1_T_Enumerator_InitialGoatSpawn___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_InitialGoatSpawn___StaticFields { +}; + +struct List_1_T_Enumerator_InitialGoatSpawn___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_InitialGoatSpawn___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_InitialGoatSpawn___VTable vtable; +}; + +struct IList_1_InitialGoatSpawn_ { + struct IList_1_InitialGoatSpawn___Class *klass; + MonitorData *monitor; +}; + +struct IList_1_InitialGoatSpawn___VTable { + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; +}; + +struct IList_1_InitialGoatSpawn___StaticFields { +}; + +struct IList_1_InitialGoatSpawn___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IList_1_InitialGoatSpawn___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IList_1_InitialGoatSpawn___VTable vtable; +}; + +struct IEnumerable_1_InnMazeController_ { + struct IEnumerable_1_InnMazeController___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_InnMazeController___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_InnMazeController___StaticFields { +}; + +struct IEnumerable_1_InnMazeController___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_InnMazeController___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_InnMazeController___VTable vtable; +}; + +struct List_1_T_Enumerator_InnSymbol_ { + struct List_1_InnSymbol_ *_list; + int32_t _index; + int32_t _version; + struct InnSymbol *_current; +}; + +struct List_1_T_Enumerator_InnSymbol___Boxed { + struct List_1_T_Enumerator_InnSymbol___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_InnSymbol_ fields; +}; + +struct List_1_T_Enumerator_InnSymbol___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_InnSymbol___StaticFields { +}; + +struct List_1_T_Enumerator_InnSymbol___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_InnSymbol___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_InnSymbol___VTable vtable; +}; + +struct List_1_T_Enumerator_InnHoleController_ { + struct List_1_InnHoleController_ *_list; + int32_t _index; + int32_t _version; + struct InnHoleController *_current; +}; + +struct List_1_T_Enumerator_InnHoleController___Boxed { + struct List_1_T_Enumerator_InnHoleController___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_InnHoleController_ fields; +}; + +struct List_1_T_Enumerator_InnHoleController___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_InnHoleController___StaticFields { +}; + +struct List_1_T_Enumerator_InnHoleController___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_InnHoleController___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_InnHoleController___VTable vtable; +}; + +struct List_1_T_Enumerator_IngameStatsTracker_StatsPlayer_ { + struct List_1_IngameStatsTracker_StatsPlayer_ *_list; + int32_t _index; + int32_t _version; + struct IngameStatsTracker_StatsPlayer *_current; +}; + +struct List_1_T_Enumerator_IngameStatsTracker_StatsPlayer___Boxed { + struct List_1_T_Enumerator_IngameStatsTracker_StatsPlayer___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_IngameStatsTracker_StatsPlayer_ fields; +}; + +struct List_1_T_Enumerator_IngameStatsTracker_StatsPlayer___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_IngameStatsTracker_StatsPlayer___StaticFields { +}; + +struct List_1_T_Enumerator_IngameStatsTracker_StatsPlayer___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_IngameStatsTracker_StatsPlayer___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_IngameStatsTracker_StatsPlayer___VTable vtable; +}; + +struct Action_1_Photon_Bolt_BoltConnection___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_1_Photon_Bolt_BoltConnection_ { + struct Action_1_Photon_Bolt_BoltConnection___Class *klass; + MonitorData *monitor; + struct Action_1_Photon_Bolt_BoltConnection___Fields fields; +}; + +struct Action_1_Photon_Bolt_BoltConnection___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_1_Photon_Bolt_BoltConnection___StaticFields { +}; + +struct Action_1_Photon_Bolt_BoltConnection___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_1_Photon_Bolt_BoltConnection___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_1_Photon_Bolt_BoltConnection___VTable vtable; +}; + +struct List_1_T_Enumerator_System_Security_Cryptography_X509Certificates_X509CertificateImpl_ { + struct List_1_System_Security_Cryptography_X509Certificates_X509CertificateImpl_ *_list; + int32_t _index; + int32_t _version; + struct X509CertificateImpl *_current; +}; + +struct List_1_T_Enumerator_System_Security_Cryptography_X509Certificates_X509CertificateImpl___Boxed { + struct List_1_T_Enumerator_System_Security_Cryptography_X509Certificates_X509CertificateImpl___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_System_Security_Cryptography_X509Certificates_X509CertificateImpl_ fields; +}; + +struct List_1_T_Enumerator_System_Security_Cryptography_X509Certificates_X509CertificateImpl___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_System_Security_Cryptography_X509Certificates_X509CertificateImpl___StaticFields { +}; + +struct List_1_T_Enumerator_System_Security_Cryptography_X509Certificates_X509CertificateImpl___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_System_Security_Cryptography_X509Certificates_X509CertificateImpl___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_System_Security_Cryptography_X509Certificates_X509CertificateImpl___VTable vtable; +}; + +struct FlowLayoutGroup_Axis___VTable { +}; + +struct FlowLayoutGroup_Axis___StaticFields { +}; + +struct FlowLayoutGroup_Axis___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct FlowLayoutGroup_Axis___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct FlowLayoutGroup_Axis___VTable vtable; +}; + +struct ICollection_1_UnityEngine_RectTransform_ { + struct ICollection_1_UnityEngine_RectTransform___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_UnityEngine_RectTransform___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_UnityEngine_RectTransform___StaticFields { +}; + +struct ICollection_1_UnityEngine_RectTransform___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_UnityEngine_RectTransform___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_UnityEngine_RectTransform___VTable vtable; +}; + +struct ShaderLibrary { + struct ShaderLibrary__Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Shader_ { + int32_t hashCode; + int32_t next; + struct String *key; + struct Shader *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Shader___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Shader___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Shader_ fields; +}; + +struct __declspec(align(8)) Dictionary_2_System_String_UnityEngine_Shader___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Shader___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_System_String_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_Shader_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_Shader_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_System_String_UnityEngine_Shader_ { + struct Dictionary_2_System_String_UnityEngine_Shader___Class *klass; + MonitorData *monitor; + struct Dictionary_2_System_String_UnityEngine_Shader___Fields fields; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Shader___Array { + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Shader___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Shader_ vector[32]; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_Shader___Fields { + struct Dictionary_2_System_String_UnityEngine_Shader_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_Shader_ { + struct Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_Shader___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_Shader___Fields fields; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_Shader___Fields { + struct Dictionary_2_System_String_UnityEngine_Shader_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_Shader_ { + struct Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_Shader___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_Shader___Fields fields; +}; + +struct KeyValuePair_2_System_String_UnityEngine_Shader_ { + struct String *key; + struct Shader *value; +}; + +struct KeyValuePair_2_System_String_UnityEngine_Shader___Boxed { + struct KeyValuePair_2_System_String_UnityEngine_Shader___Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_System_String_UnityEngine_Shader_ fields; +}; + +struct KeyValuePair_2_System_String_UnityEngine_Shader___Array { + struct KeyValuePair_2_System_String_UnityEngine_Shader___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct KeyValuePair_2_System_String_UnityEngine_Shader_ vector[32]; +}; + +struct IEnumerator_1_KeyValuePair_2_System_String_UnityEngine_Shader_ { + struct IEnumerator_1_KeyValuePair_2_System_String_UnityEngine_Shader___Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Shader___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Shader___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Shader___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Shader___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Shader___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Shader___Array__VTable { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Shader___Array__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Shader___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Shader___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_System_String_UnityEngine_Shader___Array__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_Shader___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TKey__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_Shader___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_Shader___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_Shader___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_KeyCollection_System_String_UnityEngine_Shader___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_Shader___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TValue__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_Shader___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_Shader___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_Shader___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_System_String_UnityEngine_Shader___VTable vtable; +}; + +struct KeyValuePair_2_System_String_UnityEngine_Shader___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct KeyValuePair_2_System_String_UnityEngine_Shader___StaticFields { +}; + +struct KeyValuePair_2_System_String_UnityEngine_Shader___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_String_UnityEngine_Shader___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_String_UnityEngine_Shader___VTable vtable; +}; + +struct KeyValuePair_2_System_String_UnityEngine_Shader___Array__VTable { +}; + +struct KeyValuePair_2_System_String_UnityEngine_Shader___Array__StaticFields { +}; + +struct KeyValuePair_2_System_String_UnityEngine_Shader___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_String_UnityEngine_Shader___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_String_UnityEngine_Shader___Array__VTable vtable; +}; + +struct IEnumerator_1_KeyValuePair_2_System_String_UnityEngine_Shader___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_KeyValuePair_2_System_String_UnityEngine_Shader___StaticFields { +}; + +struct IEnumerator_1_KeyValuePair_2_System_String_UnityEngine_Shader___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_KeyValuePair_2_System_String_UnityEngine_Shader___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_KeyValuePair_2_System_String_UnityEngine_Shader___VTable vtable; +}; + +struct Dictionary_2_System_String_UnityEngine_Shader___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Values; + VirtualInvokeData ContainsKey; + VirtualInvokeData Add; + VirtualInvokeData Remove; + VirtualInvokeData TryGetValue; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add; + VirtualInvokeData Clear; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_get_Item; + VirtualInvokeData System_Collections_IDictionary_set_Item; + VirtualInvokeData System_Collections_IDictionary_get_Keys; + VirtualInvokeData System_Collections_IDictionary_get_Values; + VirtualInvokeData System_Collections_IDictionary_Contains; + VirtualInvokeData System_Collections_IDictionary_Add; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IDictionary_get_IsReadOnly; + VirtualInvokeData System_Collections_IDictionary_get_IsFixedSize; + VirtualInvokeData System_Collections_IDictionary_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_Remove; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData TryGetValue_1; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Values; + VirtualInvokeData get_Count_2; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct Dictionary_2_System_String_UnityEngine_Shader___StaticFields { +}; + +struct Dictionary_2_System_String_UnityEngine_Shader___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_System_String_UnityEngine_Shader___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_System_String_UnityEngine_Shader___VTable vtable; +}; + +struct ShaderLibrary__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ShaderLibrary__StaticFields { + struct Dictionary_2_System_String_UnityEngine_Shader_ *shaderInstances; + struct Shader__Array *preLoadedShaders; +}; + +struct ShaderLibrary__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ShaderLibrary__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ShaderLibrary__VTable vtable; +}; + +struct List_1_T_Enumerator_System_Security_Cryptography_Oid_ { + struct List_1_System_Security_Cryptography_Oid_ *_list; + int32_t _index; + int32_t _version; + struct Oid *_current; +}; + +struct List_1_T_Enumerator_System_Security_Cryptography_Oid___Boxed { + struct List_1_T_Enumerator_System_Security_Cryptography_Oid___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_System_Security_Cryptography_Oid_ fields; +}; + +struct List_1_T_Enumerator_System_Security_Cryptography_Oid___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_System_Security_Cryptography_Oid___StaticFields { +}; + +struct List_1_T_Enumerator_System_Security_Cryptography_Oid___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_System_Security_Cryptography_Oid___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_System_Security_Cryptography_Oid___VTable vtable; +}; + +struct IComparer_1_System_Byte__1 { + struct IComparer_1_System_Byte__1__Class *klass; + MonitorData *monitor; +}; + +struct IComparer_1_System_Byte__1__VTable { + VirtualInvokeData Compare; +}; + +struct IComparer_1_System_Byte__1__StaticFields { +}; + +struct IComparer_1_System_Byte__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IComparer_1_System_Byte__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IComparer_1_System_Byte__1__VTable vtable; +}; + +struct DerEncoder { + struct DerEncoder__Class *klass; + MonitorData *monitor; +}; + +struct DerEncoder__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct DerEncoder__StaticFields { + struct Byte__Array__Array *s_nullTlv; +}; + +struct DerEncoder__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DerEncoder__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DerEncoder__VTable vtable; +}; + +struct __declspec(align(8)) List_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_OSX_Base_Axis___Fields { + struct HardwareJoystickMap_Platform_OSX_Base_Axis__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_OSX_Base_Axis_ { + struct List_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_OSX_Base_Axis___Class *klass; + MonitorData *monitor; + struct List_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_OSX_Base_Axis___Fields fields; +}; + +struct List_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_OSX_Base_Axis___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_OSX_Base_Axis___StaticFields { + struct HardwareJoystickMap_Platform_OSX_Base_Axis__Array *s_emptyArray; +}; + +struct List_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_OSX_Base_Axis___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_OSX_Base_Axis___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Rewired_Data_Mapping_HardwareJoystickMap_Platform_OSX_Base_Axis___VTable vtable; +}; + +struct List_1_T_Enumerator_UnityEngine_Vector2__1 { + struct List_1_UnityEngine_Vector2__1 *_list; + int32_t _index; + int32_t _version; + struct Vector2__Array *_current; +}; + +struct List_1_T_Enumerator_UnityEngine_Vector2__1__Boxed { + struct List_1_T_Enumerator_UnityEngine_Vector2__1__Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_UnityEngine_Vector2__1 fields; +}; + +struct List_1_T_Enumerator_UnityEngine_Vector2__1__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_UnityEngine_Vector2__1__StaticFields { +}; + +struct List_1_T_Enumerator_UnityEngine_Vector2__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_UnityEngine_Vector2__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_UnityEngine_Vector2__1__VTable vtable; +}; + +struct __declspec(align(8)) List_1_UnityEngine_UIVertex__2__Fields { + struct UIVertex__Array__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_UIVertex__2 { + struct List_1_UnityEngine_UIVertex__2__Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_UIVertex__2__Fields fields; +}; + +struct UIVertex__Array__Array { + struct UIVertex__Array__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct UIVertex__Array *vector[32]; +}; + +struct IEnumerator_1_UnityEngine_UIVertex__1 { + struct IEnumerator_1_UnityEngine_UIVertex__1__Class *klass; + MonitorData *monitor; +}; + +struct UIVertex__Array__Array__VTable { +}; + +struct UIVertex__Array__Array__StaticFields { +}; + +struct UIVertex__Array__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UIVertex__Array__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UIVertex__Array__Array__VTable vtable; +}; + +struct IEnumerator_1_UnityEngine_UIVertex__1__VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_UnityEngine_UIVertex__1__StaticFields { +}; + +struct IEnumerator_1_UnityEngine_UIVertex__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_UnityEngine_UIVertex__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_UnityEngine_UIVertex__1__VTable vtable; +}; + +struct List_1_UnityEngine_UIVertex__2__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_UnityEngine_UIVertex__2__StaticFields { + struct UIVertex__Array__Array *s_emptyArray; +}; + +struct List_1_UnityEngine_UIVertex__2__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_UIVertex__2__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_UIVertex__2__VTable vtable; +}; + +struct Stack_1_T_Enumerator_UnityEngine_UI_Extensions_Menu_ { + struct Stack_1_UnityEngine_UI_Extensions_Menu_ *_stack; + int32_t _version; + int32_t _index; + struct Menu_1 *_currentElement; +}; + +struct Stack_1_T_Enumerator_UnityEngine_UI_Extensions_Menu___Boxed { + struct Stack_1_T_Enumerator_UnityEngine_UI_Extensions_Menu___Class *klass; + MonitorData *monitor; + struct Stack_1_T_Enumerator_UnityEngine_UI_Extensions_Menu_ fields; +}; + +struct Stack_1_T_Enumerator_UnityEngine_UI_Extensions_Menu___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct Stack_1_T_Enumerator_UnityEngine_UI_Extensions_Menu___StaticFields { +}; + +struct Stack_1_T_Enumerator_UnityEngine_UI_Extensions_Menu___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Stack_1_T_Enumerator_UnityEngine_UI_Extensions_Menu___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Stack_1_T_Enumerator_UnityEngine_UI_Extensions_Menu___VTable vtable; +}; + +struct TableLayoutGroup_Corner___VTable { +}; + +struct TableLayoutGroup_Corner___StaticFields { +}; + +struct TableLayoutGroup_Corner___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TableLayoutGroup_Corner___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TableLayoutGroup_Corner___VTable vtable; +}; + +struct List_1_T_Enumerator_ManorSpiritController_ { + struct List_1_ManorSpiritController_ *_list; + int32_t _index; + int32_t _version; + struct ManorSpiritController *_current; +}; + +struct List_1_T_Enumerator_ManorSpiritController___Boxed { + struct List_1_T_Enumerator_ManorSpiritController___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_ManorSpiritController_ fields; +}; + +struct List_1_T_Enumerator_ManorSpiritController___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_ManorSpiritController___StaticFields { +}; + +struct List_1_T_Enumerator_ManorSpiritController___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_ManorSpiritController___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_ManorSpiritController___VTable vtable; +}; + +struct IEnumerable_1_KeyValuePair_2_ManorSpirit_InitialGoatSpawn_ { + struct IEnumerable_1_KeyValuePair_2_ManorSpirit_InitialGoatSpawn___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_KeyValuePair_2_ManorSpirit_InitialGoatSpawn___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_KeyValuePair_2_ManorSpirit_InitialGoatSpawn___StaticFields { +}; + +struct IEnumerable_1_KeyValuePair_2_ManorSpirit_InitialGoatSpawn___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_KeyValuePair_2_ManorSpirit_InitialGoatSpawn___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_KeyValuePair_2_ManorSpirit_InitialGoatSpawn___VTable vtable; +}; + +struct IList_1_ManorLocation_ { + struct IList_1_ManorLocation___Class *klass; + MonitorData *monitor; +}; + +struct IList_1_ManorLocation___VTable { + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; +}; + +struct IList_1_ManorLocation___StaticFields { +}; + +struct IList_1_ManorLocation___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IList_1_ManorLocation___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IList_1_ManorLocation___VTable vtable; +}; + +struct IList_1_ManorSpirit_ { + struct IList_1_ManorSpirit___Class *klass; + MonitorData *monitor; +}; + +struct IList_1_ManorSpirit___VTable { + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; +}; + +struct IList_1_ManorSpirit___StaticFields { +}; + +struct IList_1_ManorSpirit___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IList_1_ManorSpirit___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IList_1_ManorSpirit___VTable vtable; +}; + +struct IEnumerable_1_KeyValuePair_2_UnityEngine_GameObject_UnityEngine_GameObject_ { + struct IEnumerable_1_KeyValuePair_2_UnityEngine_GameObject_UnityEngine_GameObject___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_KeyValuePair_2_UnityEngine_GameObject_UnityEngine_GameObject___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_KeyValuePair_2_UnityEngine_GameObject_UnityEngine_GameObject___StaticFields { +}; + +struct IEnumerable_1_KeyValuePair_2_UnityEngine_GameObject_UnityEngine_GameObject___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_KeyValuePair_2_UnityEngine_GameObject_UnityEngine_GameObject___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_KeyValuePair_2_UnityEngine_GameObject_UnityEngine_GameObject___VTable vtable; +}; + +struct Action_1_UnityEngine_EventSystems_IDragHandler___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_1_UnityEngine_EventSystems_IDragHandler_ { + struct Action_1_UnityEngine_EventSystems_IDragHandler___Class *klass; + MonitorData *monitor; + struct Action_1_UnityEngine_EventSystems_IDragHandler___Fields fields; +}; + +struct Action_1_UnityEngine_EventSystems_IDragHandler___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_1_UnityEngine_EventSystems_IDragHandler___StaticFields { +}; + +struct Action_1_UnityEngine_EventSystems_IDragHandler___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_1_UnityEngine_EventSystems_IDragHandler___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_1_UnityEngine_EventSystems_IDragHandler___VTable vtable; +}; + +struct Action_1_UnityEngine_EventSystems_IInitializePotentialDragHandler___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_1_UnityEngine_EventSystems_IInitializePotentialDragHandler_ { + struct Action_1_UnityEngine_EventSystems_IInitializePotentialDragHandler___Class *klass; + MonitorData *monitor; + struct Action_1_UnityEngine_EventSystems_IInitializePotentialDragHandler___Fields fields; +}; + +struct Action_1_UnityEngine_EventSystems_IInitializePotentialDragHandler___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_1_UnityEngine_EventSystems_IInitializePotentialDragHandler___StaticFields { +}; + +struct Action_1_UnityEngine_EventSystems_IInitializePotentialDragHandler___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_1_UnityEngine_EventSystems_IInitializePotentialDragHandler___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_1_UnityEngine_EventSystems_IInitializePotentialDragHandler___VTable vtable; +}; + +struct Action_1_UnityEngine_EventSystems_IBeginDragHandler___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_1_UnityEngine_EventSystems_IBeginDragHandler_ { + struct Action_1_UnityEngine_EventSystems_IBeginDragHandler___Class *klass; + MonitorData *monitor; + struct Action_1_UnityEngine_EventSystems_IBeginDragHandler___Fields fields; +}; + +struct Action_1_UnityEngine_EventSystems_IBeginDragHandler___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_1_UnityEngine_EventSystems_IBeginDragHandler___StaticFields { +}; + +struct Action_1_UnityEngine_EventSystems_IBeginDragHandler___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_1_UnityEngine_EventSystems_IBeginDragHandler___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_1_UnityEngine_EventSystems_IBeginDragHandler___VTable vtable; +}; + +struct Action_1_UnityEngine_EventSystems_IScrollHandler___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_1_UnityEngine_EventSystems_IScrollHandler_ { + struct Action_1_UnityEngine_EventSystems_IScrollHandler___Class *klass; + MonitorData *monitor; + struct Action_1_UnityEngine_EventSystems_IScrollHandler___Fields fields; +}; + +struct Action_1_UnityEngine_EventSystems_IScrollHandler___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_1_UnityEngine_EventSystems_IScrollHandler___StaticFields { +}; + +struct Action_1_UnityEngine_EventSystems_IScrollHandler___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_1_UnityEngine_EventSystems_IScrollHandler___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_1_UnityEngine_EventSystems_IScrollHandler___VTable vtable; +}; + +struct Action_1_UnityEngine_EventSystems_IEndDragHandler___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_1_UnityEngine_EventSystems_IEndDragHandler_ { + struct Action_1_UnityEngine_EventSystems_IEndDragHandler___Class *klass; + MonitorData *monitor; + struct Action_1_UnityEngine_EventSystems_IEndDragHandler___Fields fields; +}; + +struct Action_1_UnityEngine_EventSystems_IEndDragHandler___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_1_UnityEngine_EventSystems_IEndDragHandler___StaticFields { +}; + +struct Action_1_UnityEngine_EventSystems_IEndDragHandler___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_1_UnityEngine_EventSystems_IEndDragHandler___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_1_UnityEngine_EventSystems_IEndDragHandler___VTable vtable; +}; + +struct CLZF2 { + struct CLZF2__Class *klass; + MonitorData *monitor; +}; + +struct CLZF2__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct CLZF2__StaticFields { + uint32_t HLOG; + uint32_t HSIZE; + uint32_t MAX_LIT; + uint32_t MAX_OFF; + uint32_t MAX_REF; + struct Int64__Array *HashTable; +}; + +struct CLZF2__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CLZF2__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CLZF2__VTable vtable; +}; + +struct ListPool_1_Pathfinding_GraphNode_ { + struct ListPool_1_Pathfinding_GraphNode___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) List_1_List_1_Pathfinding_GraphNode___Fields { + struct List_1_Pathfinding_GraphNode___Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_List_1_Pathfinding_GraphNode_ { + struct List_1_List_1_Pathfinding_GraphNode___Class *klass; + MonitorData *monitor; + struct List_1_List_1_Pathfinding_GraphNode___Fields fields; +}; + +struct IEnumerator_1_List_1_Pathfinding_GraphNode_ { + struct IEnumerator_1_List_1_Pathfinding_GraphNode___Class *klass; + MonitorData *monitor; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_GraphNode_ { + int32_t hashCode; + int32_t next; + struct List_1_Pathfinding_GraphNode_ *value; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_GraphNode___Boxed { + struct HashSet_1_T_Slot_List_1_Pathfinding_GraphNode___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_List_1_Pathfinding_GraphNode_ fields; +}; + +struct __declspec(align(8)) HashSet_1_List_1_Pathfinding_GraphNode___Fields { + struct Int32__Array *_buckets; + struct HashSet_1_T_Slot_List_1_Pathfinding_GraphNode___Array *_slots; + int32_t _count; + int32_t _lastIndex; + int32_t _freeList; + struct IEqualityComparer_1_List_1_Pathfinding_GraphNode_ *_comparer; + int32_t _version; + struct SerializationInfo *_siInfo; +}; + +struct HashSet_1_List_1_Pathfinding_GraphNode_ { + struct HashSet_1_List_1_Pathfinding_GraphNode___Class *klass; + MonitorData *monitor; + struct HashSet_1_List_1_Pathfinding_GraphNode___Fields fields; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_GraphNode___Array { + struct HashSet_1_T_Slot_List_1_Pathfinding_GraphNode___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct HashSet_1_T_Slot_List_1_Pathfinding_GraphNode_ vector[32]; +}; + +struct IEqualityComparer_1_List_1_Pathfinding_GraphNode_ { + struct IEqualityComparer_1_List_1_Pathfinding_GraphNode___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_List_1_Pathfinding_GraphNode_ { + struct IEnumerable_1_List_1_Pathfinding_GraphNode___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerator_1_List_1_Pathfinding_GraphNode___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_List_1_Pathfinding_GraphNode___StaticFields { +}; + +struct IEnumerator_1_List_1_Pathfinding_GraphNode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_List_1_Pathfinding_GraphNode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_List_1_Pathfinding_GraphNode___VTable vtable; +}; + +struct List_1_List_1_Pathfinding_GraphNode___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_List_1_Pathfinding_GraphNode___StaticFields { + struct List_1_Pathfinding_GraphNode___Array *s_emptyArray; +}; + +struct List_1_List_1_Pathfinding_GraphNode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_List_1_Pathfinding_GraphNode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_List_1_Pathfinding_GraphNode___VTable vtable; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_GraphNode___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_GraphNode___StaticFields { +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_GraphNode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_T_Slot_List_1_Pathfinding_GraphNode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_T_Slot_List_1_Pathfinding_GraphNode___VTable vtable; +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_GraphNode___Array__VTable { +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_GraphNode___Array__StaticFields { +}; + +struct HashSet_1_T_Slot_List_1_Pathfinding_GraphNode___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_T_Slot_List_1_Pathfinding_GraphNode___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_T_Slot_List_1_Pathfinding_GraphNode___Array__VTable vtable; +}; + +struct IEqualityComparer_1_List_1_Pathfinding_GraphNode___VTable { + VirtualInvokeData Equals; + VirtualInvokeData GetHashCode; +}; + +struct IEqualityComparer_1_List_1_Pathfinding_GraphNode___StaticFields { +}; + +struct IEqualityComparer_1_List_1_Pathfinding_GraphNode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEqualityComparer_1_List_1_Pathfinding_GraphNode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEqualityComparer_1_List_1_Pathfinding_GraphNode___VTable vtable; +}; + +struct IEnumerable_1_List_1_Pathfinding_GraphNode___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_List_1_Pathfinding_GraphNode___StaticFields { +}; + +struct IEnumerable_1_List_1_Pathfinding_GraphNode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_List_1_Pathfinding_GraphNode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_List_1_Pathfinding_GraphNode___VTable vtable; +}; + +struct HashSet_1_List_1_Pathfinding_GraphNode___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_T__Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData Add; + VirtualInvokeData UnionWith; + VirtualInvokeData IntersectWith; + VirtualInvokeData ExceptWith; + VirtualInvokeData SymmetricExceptWith; + VirtualInvokeData IsSubsetOf; + VirtualInvokeData IsSupersetOf; + VirtualInvokeData IsProperSupersetOf; + VirtualInvokeData IsProperSubsetOf; + VirtualInvokeData Overlaps; + VirtualInvokeData SetEquals; + VirtualInvokeData get_Count_1; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct HashSet_1_List_1_Pathfinding_GraphNode___StaticFields { +}; + +struct HashSet_1_List_1_Pathfinding_GraphNode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_List_1_Pathfinding_GraphNode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_List_1_Pathfinding_GraphNode___VTable vtable; +}; + +struct ListPool_1_Pathfinding_GraphNode___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ListPool_1_Pathfinding_GraphNode___StaticFields { + struct List_1_List_1_Pathfinding_GraphNode_ *pool; + struct List_1_List_1_Pathfinding_GraphNode_ *largePool; + struct HashSet_1_List_1_Pathfinding_GraphNode_ *inPool; +}; + +struct ListPool_1_Pathfinding_GraphNode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ListPool_1_Pathfinding_GraphNode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ListPool_1_Pathfinding_GraphNode___VTable vtable; +}; + +struct List_1_Pathfinding_GraphNode__1__VTable { +}; + +struct List_1_Pathfinding_GraphNode__1__StaticFields { +}; + +struct List_1_Pathfinding_GraphNode__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Pathfinding_GraphNode__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Pathfinding_GraphNode__1__VTable vtable; +}; + +struct ListPool_1_UnityEngine_Vector3_ { + struct ListPool_1_UnityEngine_Vector3___Class *klass; + MonitorData *monitor; +}; + +struct HashSet_1_T_Slot_List_1_UnityEngine_Vector3_ { + int32_t hashCode; + int32_t next; + struct List_1_UnityEngine_Vector3_ *value; +}; + +struct HashSet_1_T_Slot_List_1_UnityEngine_Vector3___Boxed { + struct HashSet_1_T_Slot_List_1_UnityEngine_Vector3___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_List_1_UnityEngine_Vector3_ fields; +}; + +struct __declspec(align(8)) HashSet_1_List_1_UnityEngine_Vector3___Fields { + struct Int32__Array *_buckets; + struct HashSet_1_T_Slot_List_1_UnityEngine_Vector3___Array *_slots; + int32_t _count; + int32_t _lastIndex; + int32_t _freeList; + struct IEqualityComparer_1_List_1_UnityEngine_Vector3_ *_comparer; + int32_t _version; + struct SerializationInfo *_siInfo; +}; + +struct HashSet_1_List_1_UnityEngine_Vector3_ { + struct HashSet_1_List_1_UnityEngine_Vector3___Class *klass; + MonitorData *monitor; + struct HashSet_1_List_1_UnityEngine_Vector3___Fields fields; +}; + +struct HashSet_1_T_Slot_List_1_UnityEngine_Vector3___Array { + struct HashSet_1_T_Slot_List_1_UnityEngine_Vector3___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct HashSet_1_T_Slot_List_1_UnityEngine_Vector3_ vector[32]; +}; + +struct IEqualityComparer_1_List_1_UnityEngine_Vector3_ { + struct IEqualityComparer_1_List_1_UnityEngine_Vector3___Class *klass; + MonitorData *monitor; +}; + +struct HashSet_1_T_Slot_List_1_UnityEngine_Vector3___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct HashSet_1_T_Slot_List_1_UnityEngine_Vector3___StaticFields { +}; + +struct HashSet_1_T_Slot_List_1_UnityEngine_Vector3___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_T_Slot_List_1_UnityEngine_Vector3___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_T_Slot_List_1_UnityEngine_Vector3___VTable vtable; +}; + +struct HashSet_1_T_Slot_List_1_UnityEngine_Vector3___Array__VTable { +}; + +struct HashSet_1_T_Slot_List_1_UnityEngine_Vector3___Array__StaticFields { +}; + +struct HashSet_1_T_Slot_List_1_UnityEngine_Vector3___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_T_Slot_List_1_UnityEngine_Vector3___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_T_Slot_List_1_UnityEngine_Vector3___Array__VTable vtable; +}; + +struct IEqualityComparer_1_List_1_UnityEngine_Vector3___VTable { + VirtualInvokeData Equals; + VirtualInvokeData GetHashCode; +}; + +struct IEqualityComparer_1_List_1_UnityEngine_Vector3___StaticFields { +}; + +struct IEqualityComparer_1_List_1_UnityEngine_Vector3___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEqualityComparer_1_List_1_UnityEngine_Vector3___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEqualityComparer_1_List_1_UnityEngine_Vector3___VTable vtable; +}; + +struct HashSet_1_List_1_UnityEngine_Vector3___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_T__Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData Add; + VirtualInvokeData UnionWith; + VirtualInvokeData IntersectWith; + VirtualInvokeData ExceptWith; + VirtualInvokeData SymmetricExceptWith; + VirtualInvokeData IsSubsetOf; + VirtualInvokeData IsSupersetOf; + VirtualInvokeData IsProperSupersetOf; + VirtualInvokeData IsProperSubsetOf; + VirtualInvokeData Overlaps; + VirtualInvokeData SetEquals; + VirtualInvokeData get_Count_1; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct HashSet_1_List_1_UnityEngine_Vector3___StaticFields { +}; + +struct HashSet_1_List_1_UnityEngine_Vector3___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_List_1_UnityEngine_Vector3___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_List_1_UnityEngine_Vector3___VTable vtable; +}; + +struct ListPool_1_UnityEngine_Vector3___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ListPool_1_UnityEngine_Vector3___StaticFields { + struct List_1_List_1_UnityEngine_Vector3_ *pool; + struct List_1_List_1_UnityEngine_Vector3_ *largePool; + struct HashSet_1_List_1_UnityEngine_Vector3_ *inPool; +}; + +struct ListPool_1_UnityEngine_Vector3___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ListPool_1_UnityEngine_Vector3___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ListPool_1_UnityEngine_Vector3___VTable vtable; +}; + +struct RichFunnel___VTable { +}; + +struct RichFunnel___StaticFields { +}; + +struct RichFunnel___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RichFunnel___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RichFunnel___VTable vtable; +}; + +struct RichSpecial___VTable { +}; + +struct RichSpecial___StaticFields { +}; + +struct RichSpecial___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RichSpecial___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RichSpecial___VTable vtable; +}; + +struct ITransformedGraph { + struct ITransformedGraph__Class *klass; + MonitorData *monitor; +}; + +struct ITransformedGraph__VTable { + VirtualInvokeData get_transform; +}; + +struct ITransformedGraph__StaticFields { +}; + +struct ITransformedGraph__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ITransformedGraph__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ITransformedGraph__VTable vtable; +}; + +struct IGraphInternals { + struct IGraphInternals__Class *klass; + MonitorData *monitor; +}; + +struct IGraphInternals__VTable { + VirtualInvokeData get_SerializedEditorSettings; + VirtualInvokeData set_SerializedEditorSettings; + VirtualInvokeData OnDestroy; + VirtualInvokeData DestroyAllNodes; + VirtualInvokeData ScanInternal; + VirtualInvokeData SerializeExtraInfo; + VirtualInvokeData DeserializeExtraInfo; + VirtualInvokeData PostDeserialization; + VirtualInvokeData DeserializeSettingsCompatibility; +}; + +struct IGraphInternals__StaticFields { +}; + +struct IGraphInternals__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IGraphInternals__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IGraphInternals__VTable vtable; +}; + +struct GC_1 { + struct GC_1__Class *klass; + MonitorData *monitor; +}; + +struct GC_1__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct GC_1__StaticFields { + struct Object *EPHEMERON_TOMBSTONE; +}; + +struct GC_1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GC_1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GC_1__VTable vtable; +}; + +struct Common { + struct Common__Class *klass; + MonitorData *monitor; +}; + +struct Common__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Common__StaticFields { + struct AndroidJavaObject *m_Activity; +}; + +struct Common__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Common__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Common__VTable vtable; +}; + +struct AndroidJavaProxy__Array { + struct AndroidJavaProxy__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct AndroidJavaProxy *vector[32]; +}; + +struct AndroidJavaProxy__Array__VTable { +}; + +struct AndroidJavaProxy__Array__StaticFields { +}; + +struct AndroidJavaProxy__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct AndroidJavaProxy__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct AndroidJavaProxy__Array__VTable vtable; +}; + +struct AndroidJavaClass__Array { + struct AndroidJavaClass__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct AndroidJavaClass *vector[32]; +}; + +struct AndroidJavaClass__Array__VTable { +}; + +struct AndroidJavaClass__Array__StaticFields { +}; + +struct AndroidJavaClass__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct AndroidJavaClass__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct AndroidJavaClass__Array__VTable vtable; +}; + +struct ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputDevice_ { + struct InputDevice__Array *m_Array; + int32_t m_IndexStart; + int32_t m_IndexEnd; + int32_t m_Index; +}; + +struct ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputDevice___Boxed { + struct ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputDevice___Class *klass; + MonitorData *monitor; + struct ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputDevice_ fields; +}; + +struct ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputDevice___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData Reset; +}; + +struct ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputDevice___StaticFields { +}; + +struct ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputDevice___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputDevice___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ReadOnlyArray_1_TValue_Enumerator_UnityEngine_InputSystem_InputDevice___VTable vtable; +}; + +struct InputRuntime { + struct InputRuntime__Class *klass; + MonitorData *monitor; +}; + +struct InputRuntime__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct InputRuntime__StaticFields { + struct IInputRuntime *s_Instance; + double s_CurrentTimeOffsetToRealtimeSinceStartup; +}; + +struct InputRuntime__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputRuntime__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputRuntime__VTable vtable; +}; + +struct InputSystem { + struct InputSystem__Class *klass; + MonitorData *monitor; +}; + +struct InputSystem__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct InputSystem__StaticFields { + struct InputManager_1 *s_Manager; + struct InputRemoting *s_Remote; +}; + +struct InputSystem__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InputSystem__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InputSystem__VTable vtable; +}; + +struct IReadOnlyCollection_1_UnityEngine_InputSystem_InputDevice_ { + struct IReadOnlyCollection_1_UnityEngine_InputSystem_InputDevice___Class *klass; + MonitorData *monitor; +}; + +struct IReadOnlyCollection_1_UnityEngine_InputSystem_InputDevice___VTable { + VirtualInvokeData get_Count; +}; + +struct IReadOnlyCollection_1_UnityEngine_InputSystem_InputDevice___StaticFields { +}; + +struct IReadOnlyCollection_1_UnityEngine_InputSystem_InputDevice___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IReadOnlyCollection_1_UnityEngine_InputSystem_InputDevice___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IReadOnlyCollection_1_UnityEngine_InputSystem_InputDevice___VTable vtable; +}; + +struct __declspec(align(8)) Stack_1_System_Xml_DtdParser_ParseElementOnlyContent_LocalFrame___Fields { + struct DtdParser_ParseElementOnlyContent_LocalFrame__Array *_array; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct Stack_1_System_Xml_DtdParser_ParseElementOnlyContent_LocalFrame_ { + struct Stack_1_System_Xml_DtdParser_ParseElementOnlyContent_LocalFrame___Class *klass; + MonitorData *monitor; + struct Stack_1_System_Xml_DtdParser_ParseElementOnlyContent_LocalFrame___Fields fields; +}; + +struct DtdParser_ParseElementOnlyContent_LocalFrame__Array { + struct DtdParser_ParseElementOnlyContent_LocalFrame__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct DtdParser_ParseElementOnlyContent_LocalFrame *vector[32]; +}; + +struct IEnumerator_1_System_Xml_DtdParser_ParseElementOnlyContent_LocalFrame_ { + struct IEnumerator_1_System_Xml_DtdParser_ParseElementOnlyContent_LocalFrame___Class *klass; + MonitorData *monitor; +}; + +struct DtdParser_ParseElementOnlyContent_LocalFrame__Array__VTable { +}; + +struct DtdParser_ParseElementOnlyContent_LocalFrame__Array__StaticFields { +}; + +struct DtdParser_ParseElementOnlyContent_LocalFrame__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DtdParser_ParseElementOnlyContent_LocalFrame__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DtdParser_ParseElementOnlyContent_LocalFrame__Array__VTable vtable; +}; + +struct IEnumerator_1_System_Xml_DtdParser_ParseElementOnlyContent_LocalFrame___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_System_Xml_DtdParser_ParseElementOnlyContent_LocalFrame___StaticFields { +}; + +struct IEnumerator_1_System_Xml_DtdParser_ParseElementOnlyContent_LocalFrame___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_System_Xml_DtdParser_ParseElementOnlyContent_LocalFrame___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_System_Xml_DtdParser_ParseElementOnlyContent_LocalFrame___VTable vtable; +}; + +struct Stack_1_System_Xml_DtdParser_ParseElementOnlyContent_LocalFrame___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_1; +}; + +struct Stack_1_System_Xml_DtdParser_ParseElementOnlyContent_LocalFrame___StaticFields { +}; + +struct Stack_1_System_Xml_DtdParser_ParseElementOnlyContent_LocalFrame___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Stack_1_System_Xml_DtdParser_ParseElementOnlyContent_LocalFrame___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Stack_1_System_Xml_DtdParser_ParseElementOnlyContent_LocalFrame___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_System_Xml_DtdParser_UndeclaredNotation_ { + struct Dictionary_2_System_String_System_Xml_DtdParser_UndeclaredNotation_ *_dictionary; + int32_t _index; + int32_t _version; + struct DtdParser_UndeclaredNotation *_currentValue; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_System_Xml_DtdParser_UndeclaredNotation___Boxed { + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_System_Xml_DtdParser_UndeclaredNotation___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_System_Xml_DtdParser_UndeclaredNotation_ fields; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_System_Xml_DtdParser_UndeclaredNotation___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_System_Xml_DtdParser_UndeclaredNotation___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_System_Xml_DtdParser_UndeclaredNotation___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_System_Xml_DtdParser_UndeclaredNotation___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_System_Xml_DtdParser_UndeclaredNotation___VTable vtable; +}; + +struct IDtdParserAdapterV1 { + struct IDtdParserAdapterV1__Class *klass; + MonitorData *monitor; +}; + +struct IDtdParserAdapterV1__VTable { + VirtualInvokeData get_V1CompatibilityMode; + VirtualInvokeData get_Normalization; + VirtualInvokeData get_Namespaces; +}; + +struct IDtdParserAdapterV1__StaticFields { +}; + +struct IDtdParserAdapterV1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IDtdParserAdapterV1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IDtdParserAdapterV1__VTable vtable; +}; + +struct ConditionalWeakTable_2_System_Object_System_Runtime_Serialization_SerializationInfo__1__VTable { +}; + +struct ConditionalWeakTable_2_System_Object_System_Runtime_Serialization_SerializationInfo__1__StaticFields { +}; + +struct ConditionalWeakTable_2_System_Object_System_Runtime_Serialization_SerializationInfo__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ConditionalWeakTable_2_System_Object_System_Runtime_Serialization_SerializationInfo__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ConditionalWeakTable_2_System_Object_System_Runtime_Serialization_SerializationInfo__1__VTable vtable; +}; + +struct IComparable { + struct IComparable__Class *klass; + MonitorData *monitor; +}; + +struct IComparable__VTable { + VirtualInvokeData CompareTo; +}; + +struct IComparable__StaticFields { +}; + +struct IComparable__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IComparable__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IComparable__VTable vtable; +}; + +struct IEnumerator_1_System_Runtime_CompilerServices_AsyncStateMachineAttribute_ { + struct IEnumerator_1_System_Runtime_CompilerServices_AsyncStateMachineAttribute___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerator_1_System_Runtime_CompilerServices_AsyncStateMachineAttribute___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_System_Runtime_CompilerServices_AsyncStateMachineAttribute___StaticFields { +}; + +struct IEnumerator_1_System_Runtime_CompilerServices_AsyncStateMachineAttribute___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_System_Runtime_CompilerServices_AsyncStateMachineAttribute___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_System_Runtime_CompilerServices_AsyncStateMachineAttribute___VTable vtable; +}; + +struct IEnumerable_1_System_Runtime_CompilerServices_AsyncStateMachineAttribute_ { + struct IEnumerable_1_System_Runtime_CompilerServices_AsyncStateMachineAttribute___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_System_Runtime_CompilerServices_AsyncStateMachineAttribute___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_System_Runtime_CompilerServices_AsyncStateMachineAttribute___StaticFields { +}; + +struct IEnumerable_1_System_Runtime_CompilerServices_AsyncStateMachineAttribute___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_System_Runtime_CompilerServices_AsyncStateMachineAttribute___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_System_Runtime_CompilerServices_AsyncStateMachineAttribute___VTable vtable; +}; + +struct __declspec(align(8)) List_1_System_Diagnostics_StackFrame___Fields { + struct StackFrame__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_System_Diagnostics_StackFrame_ { + struct List_1_System_Diagnostics_StackFrame___Class *klass; + MonitorData *monitor; + struct List_1_System_Diagnostics_StackFrame___Fields fields; +}; + +struct IEnumerator_1_System_Diagnostics_StackFrame_ { + struct IEnumerator_1_System_Diagnostics_StackFrame___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerator_1_System_Diagnostics_StackFrame___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_System_Diagnostics_StackFrame___StaticFields { +}; + +struct IEnumerator_1_System_Diagnostics_StackFrame___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_System_Diagnostics_StackFrame___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_System_Diagnostics_StackFrame___VTable vtable; +}; + +struct List_1_System_Diagnostics_StackFrame___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_System_Diagnostics_StackFrame___StaticFields { + struct StackFrame__Array *s_emptyArray; +}; + +struct List_1_System_Diagnostics_StackFrame___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_System_Diagnostics_StackFrame___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_System_Diagnostics_StackFrame___VTable vtable; +}; + +struct IEnumerable_1_System_Diagnostics_StackFrame_ { + struct IEnumerable_1_System_Diagnostics_StackFrame___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_System_Diagnostics_StackFrame___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_System_Diagnostics_StackFrame___StaticFields { +}; + +struct IEnumerable_1_System_Diagnostics_StackFrame___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_System_Diagnostics_StackFrame___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_System_Diagnostics_StackFrame___VTable vtable; +}; + +struct IList_1_PlaceholderSoftware_WetStuff_ParticleWetSplatter_Splatter_ { + struct IList_1_PlaceholderSoftware_WetStuff_ParticleWetSplatter_Splatter___Class *klass; + MonitorData *monitor; +}; + +struct IList_1_PlaceholderSoftware_WetStuff_ParticleWetSplatter_Splatter___VTable { + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; +}; + +struct IList_1_PlaceholderSoftware_WetStuff_ParticleWetSplatter_Splatter___StaticFields { +}; + +struct IList_1_PlaceholderSoftware_WetStuff_ParticleWetSplatter_Splatter___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IList_1_PlaceholderSoftware_WetStuff_ParticleWetSplatter_Splatter___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IList_1_PlaceholderSoftware_WetStuff_ParticleWetSplatter_Splatter___VTable vtable; +}; + +struct IEnumerable_1_PlaceholderSoftware_WetStuff_ParticleWetSplatter_Splatter_ { + struct IEnumerable_1_PlaceholderSoftware_WetStuff_ParticleWetSplatter_Splatter___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_PlaceholderSoftware_WetStuff_ParticleWetSplatter_Splatter___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_PlaceholderSoftware_WetStuff_ParticleWetSplatter_Splatter___StaticFields { +}; + +struct IEnumerable_1_PlaceholderSoftware_WetStuff_ParticleWetSplatter_Splatter___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_PlaceholderSoftware_WetStuff_ParticleWetSplatter_Splatter___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_PlaceholderSoftware_WetStuff_ParticleWetSplatter_Splatter___VTable vtable; +}; + +struct List_1_T_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch_ { + struct List_1_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch_ *_list; + int32_t _index; + int32_t _version; + struct WetDecalSystem_MaterialBatch *_current; +}; + +struct List_1_T_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch___Boxed { + struct List_1_T_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch_ fields; +}; + +struct List_1_T_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch___StaticFields { +}; + +struct List_1_T_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_PlaceholderSoftware_WetStuff_WetDecalSystem_MaterialBatch___VTable vtable; +}; + +struct Logs { + struct Logs__Class *klass; + MonitorData *monitor; +}; + +struct Logs__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Logs__StaticFields { + struct List_1_PlaceholderSoftware_WetStuff_Debugging_Logs_LogMessage_ *LogsFromOtherThreads; + struct Thread *_main; +}; + +struct Logs__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Logs__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Logs__VTable vtable; +}; + +struct GUILayoutUtility { + struct GUILayoutUtility__Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache_ { + int32_t hashCode; + int32_t next; + int32_t key; + struct GUILayoutUtility_LayoutCache *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache_ fields; +}; + +struct __declspec(align(8)) Dictionary_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_System_Int32_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache_ { + struct Dictionary_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Class *klass; + MonitorData *monitor; + struct Dictionary_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Fields fields; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Array { + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache_ vector[32]; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_KeyCollection_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Fields { + struct Dictionary_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache_ { + struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Fields fields; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_ValueCollection_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Fields { + struct Dictionary_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache_ { + struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Fields fields; +}; + +struct GUILayoutUtility_LayoutCache__Array { + struct GUILayoutUtility_LayoutCache__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct GUILayoutUtility_LayoutCache *vector[32]; +}; + +struct IEnumerator_1_UnityEngine_GUILayoutUtility_LayoutCache_ { + struct IEnumerator_1_UnityEngine_GUILayoutUtility_LayoutCache___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_UnityEngine_GUILayoutUtility_LayoutCache_ { + struct ICollection_1_UnityEngine_GUILayoutUtility_LayoutCache___Class *klass; + MonitorData *monitor; +}; + +struct KeyValuePair_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache_ { + int32_t key; + struct GUILayoutUtility_LayoutCache *value; +}; + +struct KeyValuePair_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Boxed { + struct KeyValuePair_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache_ fields; +}; + +struct KeyValuePair_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Array { + struct KeyValuePair_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct KeyValuePair_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache_ vector[32]; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache_ { + struct IEnumerator_1_KeyValuePair_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_UnityEngine_GUILayoutUtility_LayoutCache_ { + struct IEnumerable_1_UnityEngine_GUILayoutUtility_LayoutCache___Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Array__VTable { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Array__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Array__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TKey__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___VTable vtable; +}; + +struct GUILayoutUtility_LayoutCache__Array__VTable { +}; + +struct GUILayoutUtility_LayoutCache__Array__StaticFields { +}; + +struct GUILayoutUtility_LayoutCache__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GUILayoutUtility_LayoutCache__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GUILayoutUtility_LayoutCache__Array__VTable vtable; +}; + +struct IEnumerator_1_UnityEngine_GUILayoutUtility_LayoutCache___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_UnityEngine_GUILayoutUtility_LayoutCache___StaticFields { +}; + +struct IEnumerator_1_UnityEngine_GUILayoutUtility_LayoutCache___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_UnityEngine_GUILayoutUtility_LayoutCache___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_UnityEngine_GUILayoutUtility_LayoutCache___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TValue__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___VTable vtable; +}; + +struct ICollection_1_UnityEngine_GUILayoutUtility_LayoutCache___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_UnityEngine_GUILayoutUtility_LayoutCache___StaticFields { +}; + +struct ICollection_1_UnityEngine_GUILayoutUtility_LayoutCache___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_UnityEngine_GUILayoutUtility_LayoutCache___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_UnityEngine_GUILayoutUtility_LayoutCache___VTable vtable; +}; + +struct GUILayoutUtility_LayoutCache___VTable { +}; + +struct GUILayoutUtility_LayoutCache___StaticFields { +}; + +struct GUILayoutUtility_LayoutCache___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GUILayoutUtility_LayoutCache___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GUILayoutUtility_LayoutCache___VTable vtable; +}; + +struct KeyValuePair_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct KeyValuePair_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___StaticFields { +}; + +struct KeyValuePair_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___VTable vtable; +}; + +struct KeyValuePair_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Array__VTable { +}; + +struct KeyValuePair_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Array__StaticFields { +}; + +struct KeyValuePair_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Array__VTable vtable; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___StaticFields { +}; + +struct IEnumerator_1_KeyValuePair_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_KeyValuePair_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_KeyValuePair_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___VTable vtable; +}; + +struct IEnumerable_1_UnityEngine_GUILayoutUtility_LayoutCache___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_UnityEngine_GUILayoutUtility_LayoutCache___StaticFields { +}; + +struct IEnumerable_1_UnityEngine_GUILayoutUtility_LayoutCache___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_UnityEngine_GUILayoutUtility_LayoutCache___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_UnityEngine_GUILayoutUtility_LayoutCache___VTable vtable; +}; + +struct Dictionary_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Values; + VirtualInvokeData ContainsKey; + VirtualInvokeData Add; + VirtualInvokeData Remove; + VirtualInvokeData TryGetValue; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add; + VirtualInvokeData Clear; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_get_Item; + VirtualInvokeData System_Collections_IDictionary_set_Item; + VirtualInvokeData System_Collections_IDictionary_get_Keys; + VirtualInvokeData System_Collections_IDictionary_get_Values; + VirtualInvokeData System_Collections_IDictionary_Contains; + VirtualInvokeData System_Collections_IDictionary_Add; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IDictionary_get_IsReadOnly; + VirtualInvokeData System_Collections_IDictionary_get_IsFixedSize; + VirtualInvokeData System_Collections_IDictionary_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_Remove; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData TryGetValue_1; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Values; + VirtualInvokeData get_Count_2; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct Dictionary_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___StaticFields { +}; + +struct Dictionary_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___VTable vtable; +}; + +struct GUILayoutUtility__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct GUILayoutUtility__StaticFields { + struct Dictionary_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache_ *s_StoredLayouts; + struct Dictionary_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache_ *s_StoredWindows; + struct GUILayoutUtility_LayoutCache *current; + struct Rect kDummyRect; + int32_t _unbalancedgroupscount_k__BackingField; + struct GUIStyle *s_SpaceStyle; +}; + +struct GUILayoutUtility__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GUILayoutUtility__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GUILayoutUtility__VTable vtable; +}; + +struct Graphics { + struct Graphics__Class *klass; + MonitorData *monitor; +}; + +struct Graphics__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Graphics__StaticFields { + int32_t kMaxDrawMeshInstanceCount; + struct Dictionary_2_System_Int32_UnityEngine_RenderInstancedDataLayout_ *s_RenderInstancedDataLayouts; +}; + +struct Graphics__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Graphics__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Graphics__VTable vtable; +}; + +struct Debug_2 { + struct Debug_2__Class *klass; + MonitorData *monitor; +}; + +struct Debug_2__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Debug_2__StaticFields { + struct ILogger *s_DefaultLogger; + struct ILogger *s_Logger; +}; + +struct Debug_2__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Debug_2__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Debug_2__VTable vtable; +}; + +struct XmlCustomFormatter { + struct XmlCustomFormatter__Class *klass; + MonitorData *monitor; +}; + +struct XmlCustomFormatter__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct XmlCustomFormatter__StaticFields { + struct String__Array *allTimeFormats; +}; + +struct XmlCustomFormatter__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct XmlCustomFormatter__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct XmlCustomFormatter__VTable vtable; +}; + +struct TypeTranslator { + struct TypeTranslator__Class *klass; + MonitorData *monitor; +}; + +struct TypeTranslator__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct TypeTranslator__StaticFields { + struct Hashtable *nameCache; + struct Hashtable *primitiveTypes; + struct Hashtable *primitiveArrayTypes; + struct Hashtable *nullableTypes; +}; + +struct TypeTranslator__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TypeTranslator__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TypeTranslator__VTable vtable; +}; + +struct CodeIdentifier { + struct CodeIdentifier__Class *klass; + MonitorData *monitor; +}; + +struct CodeIdentifier__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct CodeIdentifier__StaticFields { + struct CodeDomProvider_1 *csharp; +}; + +struct CodeIdentifier__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CodeIdentifier__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CodeIdentifier__VTable vtable; +}; + +struct ConfiguredTaskAwaitable_1_System_IO_Stream_ { + struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_IO_Stream_ m_configuredTaskAwaiter; +}; + +struct ConfiguredTaskAwaitable_1_System_IO_Stream___Boxed { + struct ConfiguredTaskAwaitable_1_System_IO_Stream___Class *klass; + MonitorData *monitor; + struct ConfiguredTaskAwaitable_1_System_IO_Stream_ fields; +}; + +struct ConfiguredTaskAwaitable_1_System_IO_Stream___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ConfiguredTaskAwaitable_1_System_IO_Stream___StaticFields { +}; + +struct ConfiguredTaskAwaitable_1_System_IO_Stream___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ConfiguredTaskAwaitable_1_System_IO_Stream___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ConfiguredTaskAwaitable_1_System_IO_Stream___VTable vtable; +}; + +struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_IO_Stream__1__VTable { +}; + +struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_IO_Stream__1__StaticFields { +}; + +struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_IO_Stream__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_IO_Stream__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_IO_Stream__1__VTable vtable; +}; + +struct ICachable { + struct ICachable__Class *klass; + MonitorData *monitor; +}; + +struct ICachable__VTable { + VirtualInvokeData get_Key; + VirtualInvokeData set_Key; +}; + +struct ICachable__StaticFields { +}; + +struct ICachable__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICachable__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICachable__VTable vtable; +}; + +struct Func_1_System_IO_Stream___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_1_System_IO_Stream_ { + struct Func_1_System_IO_Stream___Class *klass; + MonitorData *monitor; + struct Func_1_System_IO_Stream___Fields fields; +}; + +struct Func_1_System_IO_Stream___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_1_System_IO_Stream___StaticFields { +}; + +struct Func_1_System_IO_Stream___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_1_System_IO_Stream___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_1_System_IO_Stream___VTable vtable; +}; + +struct ConfiguredTaskAwaitable_1_System_Net_WebResponse_ { + struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_WebResponse_ m_configuredTaskAwaiter; +}; + +struct ConfiguredTaskAwaitable_1_System_Net_WebResponse___Boxed { + struct ConfiguredTaskAwaitable_1_System_Net_WebResponse___Class *klass; + MonitorData *monitor; + struct ConfiguredTaskAwaitable_1_System_Net_WebResponse_ fields; +}; + +struct ConfiguredTaskAwaitable_1_System_Net_WebResponse___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ConfiguredTaskAwaitable_1_System_Net_WebResponse___StaticFields { +}; + +struct ConfiguredTaskAwaitable_1_System_Net_WebResponse___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ConfiguredTaskAwaitable_1_System_Net_WebResponse___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ConfiguredTaskAwaitable_1_System_Net_WebResponse___VTable vtable; +}; + +struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_WebResponse__1__VTable { +}; + +struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_WebResponse__1__StaticFields { +}; + +struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_WebResponse__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_WebResponse__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_WebResponse__1__VTable vtable; +}; + +struct Func_2_IAsyncResult_System_Net_WebResponse___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_2_IAsyncResult_System_Net_WebResponse_ { + struct Func_2_IAsyncResult_System_Net_WebResponse___Class *klass; + MonitorData *monitor; + struct Func_2_IAsyncResult_System_Net_WebResponse___Fields fields; +}; + +struct Func_2_IAsyncResult_System_Net_WebResponse___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_2_IAsyncResult_System_Net_WebResponse___StaticFields { +}; + +struct Func_2_IAsyncResult_System_Net_WebResponse___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_2_IAsyncResult_System_Net_WebResponse___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_2_IAsyncResult_System_Net_WebResponse___VTable vtable; +}; + +struct IInitializableObject { + struct IInitializableObject__Class *klass; + MonitorData *monitor; +}; + +struct IInitializableObject__VTable { + VirtualInvokeData Initialize; + VirtualInvokeData InitializeAsync; +}; + +struct IInitializableObject__StaticFields { +}; + +struct IInitializableObject__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IInitializableObject__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IInitializableObject__VTable vtable; +}; + +struct VisualElementListPool { + struct VisualElementListPool__Class *klass; + MonitorData *monitor; +}; + +struct VisualElementListPool__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct VisualElementListPool__StaticFields { + struct ObjectPool_1_System_Collections_Generic_List_1__8 *pool; +}; + +struct VisualElementListPool__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct VisualElementListPool__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct VisualElementListPool__VTable vtable; +}; + +struct MiscTools { + struct MiscTools__Class *klass; + MonitorData *monitor; +}; + +struct MiscTools__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct MiscTools__StaticFields { + uint32_t toJpllvtkIPkcexWSavnQNcqoZrq; + uint32_t cxvGjKjtqCNOLDadarPTDEJXidTcb; + uint32_t AkcyDBRLAnGtYFhqdWmDEafiYYMC; + int32_t yUnwVdtKanwiizgUvgyLEzcHuavkA; + int32_t gfAaAoTYubfHITHIUtSzjUhveuEB; + int32_t AWnAlUpVHZehdGECcWdtWuEAUfLTA; +}; + +struct MiscTools__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MiscTools__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MiscTools__VTable vtable; +}; + +struct AudioSettings { + struct AudioSettings__Class *klass; + MonitorData *monitor; +}; + +struct AudioSettings__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct AudioSettings__StaticFields { + struct AudioSettings_AudioConfigurationChangeHandler *OnAudioConfigurationChanged; + struct Action *OnAudioSystemShuttingDown; + struct Action *OnAudioSystemStartedUp; +}; + +struct AudioSettings__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct AudioSettings__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct AudioSettings__VTable vtable; +}; + +struct FileSystemEnumerableFactory { + struct FileSystemEnumerableFactory__Class *klass; + MonitorData *monitor; +}; + +struct FileSystemEnumerableFactory__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct FileSystemEnumerableFactory__StaticFields { + struct Char__Array *s_unixEscapeChars; +}; + +struct FileSystemEnumerableFactory__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct FileSystemEnumerableFactory__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct FileSystemEnumerableFactory__VTable vtable; +}; + +struct BitConverter { + struct BitConverter__Class *klass; + MonitorData *monitor; +}; + +struct BitConverter__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BitConverter__StaticFields { + bool IsLittleEndian; +}; + +struct BitConverter__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BitConverter__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BitConverter__VTable vtable; +}; + +struct Marshal { + struct Marshal__Class *klass; + MonitorData *monitor; +}; + +struct Marshal__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Marshal__StaticFields { + int32_t SystemMaxDBCSCharSize; + int32_t SystemDefaultCharSize; + struct Dictionary_2_System_ValueTuple_2_System_Runtime_InteropServices_ICustomMarshaler_ *MarshalerInstanceCache; + struct Object *MarshalerInstanceCacheLock; +}; + +struct Marshal__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Marshal__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Marshal__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_MantisLODEditor_Lod_Mesh_Table_ { + struct Dictionary_2_System_String_MantisLODEditor_Lod_Mesh_Table_ *_dictionary; + int32_t _index; + int32_t _version; + struct Lod_Mesh_Table *_currentValue; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_MantisLODEditor_Lod_Mesh_Table___Boxed { + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_MantisLODEditor_Lod_Mesh_Table___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_MantisLODEditor_Lod_Mesh_Table_ fields; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_MantisLODEditor_Lod_Mesh_Table___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_MantisLODEditor_Lod_Mesh_Table___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_MantisLODEditor_Lod_Mesh_Table___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_MantisLODEditor_Lod_Mesh_Table___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_MantisLODEditor_Lod_Mesh_Table___VTable vtable; +}; + +struct List_1_T_Enumerator_UnityEngine_Component_ { + struct List_1_UnityEngine_Component_ *_list; + int32_t _index; + int32_t _version; + struct Component *_current; +}; + +struct List_1_T_Enumerator_UnityEngine_Component___Boxed { + struct List_1_T_Enumerator_UnityEngine_Component___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_UnityEngine_Component_ fields; +}; + +struct List_1_T_Enumerator_UnityEngine_Component___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_UnityEngine_Component___StaticFields { +}; + +struct List_1_T_Enumerator_UnityEngine_Component___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_UnityEngine_Component___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_UnityEngine_Component___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_String_MantisLODEditor_Lod_Mesh_Table_ { + struct Dictionary_2_System_String_MantisLODEditor_Lod_Mesh_Table_ *_dictionary; + int32_t _version; + int32_t _index; + struct KeyValuePair_2_System_String_MantisLODEditor_Lod_Mesh_Table_ _current; + int32_t _getEnumeratorRetType; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_String_MantisLODEditor_Lod_Mesh_Table___Boxed { + struct Dictionary_2_TKey_TValue_Enumerator_System_String_MantisLODEditor_Lod_Mesh_Table___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Enumerator_System_String_MantisLODEditor_Lod_Mesh_Table_ fields; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_String_MantisLODEditor_Lod_Mesh_Table___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Key; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Value; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Entry; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_String_MantisLODEditor_Lod_Mesh_Table___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_String_MantisLODEditor_Lod_Mesh_Table___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Enumerator_System_String_MantisLODEditor_Lod_Mesh_Table___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Enumerator_System_String_MantisLODEditor_Lod_Mesh_Table___VTable vtable; +}; + +struct Int32__Array__Array__Array { + struct Int32__Array__Array__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Int32__Array__Array *vector[32]; +}; + +struct Int32__Array__Array__Array__VTable { +}; + +struct Int32__Array__Array__Array__StaticFields { +}; + +struct Int32__Array__Array__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Int32__Array__Array__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Int32__Array__Array__Array__VTable vtable; +}; + +struct Int32__Array__Array__Array__Array { + struct Int32__Array__Array__Array__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Int32__Array__Array__Array *vector[32]; +}; + +struct Int32__Array__Array__Array__Array__VTable { +}; + +struct Int32__Array__Array__Array__Array__StaticFields { +}; + +struct Int32__Array__Array__Array__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Int32__Array__Array__Array__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Int32__Array__Array__Array__Array__VTable vtable; +}; + +struct __declspec(align(8)) List_1_MantisLOD_Progressive_Mesh___Fields { + struct Progressive_Mesh__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_MantisLOD_Progressive_Mesh_ { + struct List_1_MantisLOD_Progressive_Mesh___Class *klass; + MonitorData *monitor; + struct List_1_MantisLOD_Progressive_Mesh___Fields fields; +}; + +struct Progressive_Mesh__Array { + struct Progressive_Mesh__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Progressive_Mesh *vector[32]; +}; + +struct IEnumerator_1_MantisLOD_Progressive_Mesh_ { + struct IEnumerator_1_MantisLOD_Progressive_Mesh___Class *klass; + MonitorData *monitor; +}; + +struct Progressive_Mesh__Array__VTable { +}; + +struct Progressive_Mesh__Array__StaticFields { +}; + +struct Progressive_Mesh__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Progressive_Mesh__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Progressive_Mesh__Array__VTable vtable; +}; + +struct IEnumerator_1_MantisLOD_Progressive_Mesh___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_MantisLOD_Progressive_Mesh___StaticFields { +}; + +struct IEnumerator_1_MantisLOD_Progressive_Mesh___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_MantisLOD_Progressive_Mesh___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_MantisLOD_Progressive_Mesh___VTable vtable; +}; + +struct List_1_MantisLOD_Progressive_Mesh___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_MantisLOD_Progressive_Mesh___StaticFields { + struct Progressive_Mesh__Array *s_emptyArray; +}; + +struct List_1_MantisLOD_Progressive_Mesh___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_MantisLOD_Progressive_Mesh___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_MantisLOD_Progressive_Mesh___VTable vtable; +}; + +struct MantisLODSimpler { + struct MantisLODSimpler__Class *klass; + MonitorData *monitor; +}; + +struct MantisLODSimpler__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct MantisLODSimpler__StaticFields { + struct List_1_MantisLOD_Progressive_Mesh_ *simplers; +}; + +struct MantisLODSimpler__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MantisLODSimpler__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MantisLODSimpler__VTable vtable; +}; + +struct List_1_T_Enumerator_MantisLOD_My_Half_edge_index_ { + struct List_1_MantisLOD_My_Half_edge_index_ *_list; + int32_t _index; + int32_t _version; + struct My_Half_edge_index *_current; +}; + +struct List_1_T_Enumerator_MantisLOD_My_Half_edge_index___Boxed { + struct List_1_T_Enumerator_MantisLOD_My_Half_edge_index___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_MantisLOD_My_Half_edge_index_ fields; +}; + +struct List_1_T_Enumerator_MantisLOD_My_Half_edge_index___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_MantisLOD_My_Half_edge_index___StaticFields { +}; + +struct List_1_T_Enumerator_MantisLOD_My_Half_edge_index___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_MantisLOD_My_Half_edge_index___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_MantisLOD_My_Half_edge_index___VTable vtable; +}; + +struct List_1_T_Enumerator_MantisLOD_My_Half_edge_ { + struct List_1_MantisLOD_My_Half_edge_ *_list; + int32_t _index; + int32_t _version; + struct My_Half_edge *_current; +}; + +struct List_1_T_Enumerator_MantisLOD_My_Half_edge___Boxed { + struct List_1_T_Enumerator_MantisLOD_My_Half_edge___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_MantisLOD_My_Half_edge_ fields; +}; + +struct List_1_T_Enumerator_MantisLOD_My_Half_edge___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_MantisLOD_My_Half_edge___StaticFields { +}; + +struct List_1_T_Enumerator_MantisLOD_My_Half_edge___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_MantisLOD_My_Half_edge___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_MantisLOD_My_Half_edge___VTable vtable; +}; + +struct FileSystemName { + struct FileSystemName__Class *klass; + MonitorData *monitor; +}; + +struct FileSystemName__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct FileSystemName__StaticFields { + struct Char__Array *s_wildcardChars; + struct Char__Array *s_simpleWildcardChars; +}; + +struct FileSystemName__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct FileSystemName__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct FileSystemName__VTable vtable; +}; + +struct FileSystemEnumerable_1_TResult_FindPredicate_System_String___Fields { + struct MulticastDelegate__Fields _; +}; + +struct FileSystemEnumerable_1_TResult_FindPredicate_System_String_ { + struct FileSystemEnumerable_1_TResult_FindPredicate_System_String___Class *klass; + MonitorData *monitor; + struct FileSystemEnumerable_1_TResult_FindPredicate_System_String___Fields fields; +}; + +struct FileSystemEnumerable_1_TResult_FindPredicate_System_String___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct FileSystemEnumerable_1_TResult_FindPredicate_System_String___StaticFields { +}; + +struct FileSystemEnumerable_1_TResult_FindPredicate_System_String___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct FileSystemEnumerable_1_TResult_FindPredicate_System_String___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct FileSystemEnumerable_1_TResult_FindPredicate_System_String___VTable vtable; +}; + +struct __declspec(align(8)) FileSystemEnumerable_1_System_String___Fields { + struct FileSystemEnumerable_1_TResult_DelegateEnumerator_System_String_ *_enumerator; + struct FileSystemEnumerable_1_TResult_FindTransform_System_String_ *_transform; + struct EnumerationOptions *_options; + struct String *_directory; + struct FileSystemEnumerable_1_TResult_FindPredicate_System_String_ *_ShouldIncludePredicate_k__BackingField; + struct FileSystemEnumerable_1_TResult_FindPredicate_System_String_ *_ShouldRecursePredicate_k__BackingField; +}; + +struct FileSystemEnumerable_1_System_String_ { + struct FileSystemEnumerable_1_System_String___Class *klass; + MonitorData *monitor; + struct FileSystemEnumerable_1_System_String___Fields fields; +}; + +struct __declspec(align(8)) FileSystemEnumerator_1_System_String___Fields { + struct String *_originalRootDirectory; + struct String *_rootDirectory; + struct EnumerationOptions *_options; + struct Object *_lock; + struct Interop_NtDll_FILE_FULL_DIR_INFORMATION *_entry; + struct String *_current; + void *_buffer; + int32_t _bufferLength; + void *_directoryHandle; + struct String *_currentPath; + bool _lastEntryFound; + struct Queue_1_System_ValueTuple_2_ *_pending; +}; + +struct FileSystemEnumerator_1_System_String_ { + struct FileSystemEnumerator_1_System_String___Class *klass; + MonitorData *monitor; + struct FileSystemEnumerator_1_System_String___Fields fields; +}; + +struct FileSystemEnumerable_1_TResult_DelegateEnumerator_System_String___Fields { + struct FileSystemEnumerator_1_System_String___Fields _; + struct FileSystemEnumerable_1_System_String_ *_enumerable; +}; + +struct FileSystemEnumerable_1_TResult_DelegateEnumerator_System_String_ { + struct FileSystemEnumerable_1_TResult_DelegateEnumerator_System_String___Class *klass; + MonitorData *monitor; + struct FileSystemEnumerable_1_TResult_DelegateEnumerator_System_String___Fields fields; +}; + +struct FileSystemEnumerator_1_System_String___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData Reset; + VirtualInvokeData ShouldIncludeEntry; + VirtualInvokeData ShouldRecurseIntoEntry; + VirtualInvokeData __unknown; + VirtualInvokeData OnDirectoryFinished; + VirtualInvokeData ContinueOnError; + VirtualInvokeData Dispose_1; +}; + +struct FileSystemEnumerator_1_System_String___StaticFields { +}; + +struct FileSystemEnumerator_1_System_String___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct FileSystemEnumerator_1_System_String___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct FileSystemEnumerator_1_System_String___VTable vtable; +}; + +struct FileSystemEnumerable_1_TResult_DelegateEnumerator_System_String___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData Reset; + VirtualInvokeData ShouldIncludeEntry; + VirtualInvokeData ShouldRecurseIntoEntry; + VirtualInvokeData TransformEntry; + VirtualInvokeData OnDirectoryFinished; + VirtualInvokeData ContinueOnError; + VirtualInvokeData Dispose_1; +}; + +struct FileSystemEnumerable_1_TResult_DelegateEnumerator_System_String___StaticFields { +}; + +struct FileSystemEnumerable_1_TResult_DelegateEnumerator_System_String___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct FileSystemEnumerable_1_TResult_DelegateEnumerator_System_String___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct FileSystemEnumerable_1_TResult_DelegateEnumerator_System_String___VTable vtable; +}; + +struct FileSystemEnumerable_1_System_String___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; +}; + +struct FileSystemEnumerable_1_System_String___StaticFields { +}; + +struct FileSystemEnumerable_1_System_String___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct FileSystemEnumerable_1_System_String___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct FileSystemEnumerable_1_System_String___VTable vtable; +}; + +struct List_1_T_Enumerator_MantisLOD_My_Half_face_ { + struct List_1_MantisLOD_My_Half_face_ *_list; + int32_t _index; + int32_t _version; + struct My_Half_face *_current; +}; + +struct List_1_T_Enumerator_MantisLOD_My_Half_face___Boxed { + struct List_1_T_Enumerator_MantisLOD_My_Half_face___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_MantisLOD_My_Half_face_ fields; +}; + +struct List_1_T_Enumerator_MantisLOD_My_Half_face___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_MantisLOD_My_Half_face___StaticFields { +}; + +struct List_1_T_Enumerator_MantisLOD_My_Half_face___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_MantisLOD_My_Half_face___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_MantisLOD_My_Half_face___VTable vtable; +}; + +struct ConsoleDriver { + struct ConsoleDriver__Class *klass; + MonitorData *monitor; +}; + +struct ConsoleDriver__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ConsoleDriver__StaticFields { + struct IConsoleDriver *driver; + bool is_console; + bool called_isatty; +}; + +struct ConsoleDriver__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ConsoleDriver__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ConsoleDriver__VTable vtable; +}; + +struct IList_1_System_Collections_IList_ { + struct IList_1_System_Collections_IList___Class *klass; + MonitorData *monitor; +}; + +struct IList_1_System_Collections_IList___VTable { + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; +}; + +struct IList_1_System_Collections_IList___StaticFields { +}; + +struct IList_1_System_Collections_IList___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IList_1_System_Collections_IList___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IList_1_System_Collections_IList___VTable vtable; +}; + +struct XmlIncludeAttribute__Array { + struct XmlIncludeAttribute__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct XmlIncludeAttribute *vector[32]; +}; + +struct XmlIncludeAttribute__Array__VTable { +}; + +struct XmlIncludeAttribute__Array__StaticFields { +}; + +struct XmlIncludeAttribute__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct XmlIncludeAttribute__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct XmlIncludeAttribute__Array__VTable vtable; +}; + +struct LogCategory__Enum__Array { + struct LogCategory__Enum__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + LogCategory__Enum vector[32]; +}; + +struct LogCategory__Enum__Array__VTable { +}; + +struct LogCategory__Enum__Array__StaticFields { +}; + +struct LogCategory__Enum__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct LogCategory__Enum__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct LogCategory__Enum__Array__VTable vtable; +}; + +struct IEnumerable_1_PlaceholderSoftware_WetStuff_Debugging_LogCategory_ { + struct IEnumerable_1_PlaceholderSoftware_WetStuff_Debugging_LogCategory___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_PlaceholderSoftware_WetStuff_Debugging_LogCategory___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_PlaceholderSoftware_WetStuff_Debugging_LogCategory___StaticFields { +}; + +struct IEnumerable_1_PlaceholderSoftware_WetStuff_Debugging_LogCategory___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_PlaceholderSoftware_WetStuff_Debugging_LogCategory___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_PlaceholderSoftware_WetStuff_Debugging_LogCategory___VTable vtable; +}; + +struct List_1_T_Enumerator_System_Xml_Serialization_XmlReflectionMember_ { + struct List_1_System_Xml_Serialization_XmlReflectionMember_ *_list; + int32_t _index; + int32_t _version; + struct XmlReflectionMember *_current; +}; + +struct List_1_T_Enumerator_System_Xml_Serialization_XmlReflectionMember___Boxed { + struct List_1_T_Enumerator_System_Xml_Serialization_XmlReflectionMember___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_System_Xml_Serialization_XmlReflectionMember_ fields; +}; + +struct List_1_T_Enumerator_System_Xml_Serialization_XmlReflectionMember___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_System_Xml_Serialization_XmlReflectionMember___StaticFields { +}; + +struct List_1_T_Enumerator_System_Xml_Serialization_XmlReflectionMember___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_System_Xml_Serialization_XmlReflectionMember___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_System_Xml_Serialization_XmlReflectionMember___VTable vtable; +}; + +struct Path { + struct Path__Class *klass; + MonitorData *monitor; +}; + +struct Path__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Path__StaticFields { + struct Char__Array *InvalidPathChars; + uint16_t AltDirectorySeparatorChar; + uint16_t DirectorySeparatorChar; + uint16_t PathSeparator; + struct String *DirectorySeparatorStr; + uint16_t VolumeSeparatorChar; + struct Char__Array *PathSeparatorChars; + bool dirEqualsVolume; + struct Char__Array *trimEndCharsWindows; + struct Char__Array *trimEndCharsUnix; +}; + +struct Path__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Path__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Path__VTable vtable; +}; + +struct SubsystemManager { + struct SubsystemManager__Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) List_1_UnityEngine_IntegratedSubsystem___Fields { + struct IntegratedSubsystem__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_IntegratedSubsystem_ { + struct List_1_UnityEngine_IntegratedSubsystem___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_IntegratedSubsystem___Fields fields; +}; + +struct IntegratedSubsystem__Array { + struct IntegratedSubsystem__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct IntegratedSubsystem *vector[32]; +}; + +struct IEnumerator_1_UnityEngine_IntegratedSubsystem_ { + struct IEnumerator_1_UnityEngine_IntegratedSubsystem___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) List_1_UnityEngine_SubsystemsImplementation_SubsystemWithProvider___Fields { + struct SubsystemWithProvider__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_SubsystemsImplementation_SubsystemWithProvider_ { + struct List_1_UnityEngine_SubsystemsImplementation_SubsystemWithProvider___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_SubsystemsImplementation_SubsystemWithProvider___Fields fields; +}; + +struct SubsystemWithProvider__Array { + struct SubsystemWithProvider__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct SubsystemWithProvider *vector[32]; +}; + +struct IEnumerator_1_UnityEngine_SubsystemsImplementation_SubsystemWithProvider_ { + struct IEnumerator_1_UnityEngine_SubsystemsImplementation_SubsystemWithProvider___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) List_1_UnityEngine_Subsystem___Fields { + struct Subsystem__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_Subsystem_ { + struct List_1_UnityEngine_Subsystem___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_Subsystem___Fields fields; +}; + +struct Subsystem__Array { + struct Subsystem__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Subsystem *vector[32]; +}; + +struct IEnumerator_1_UnityEngine_Subsystem_ { + struct IEnumerator_1_UnityEngine_Subsystem___Class *klass; + MonitorData *monitor; +}; + +struct IntegratedSubsystem__Array__VTable { +}; + +struct IntegratedSubsystem__Array__StaticFields { +}; + +struct IntegratedSubsystem__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IntegratedSubsystem__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IntegratedSubsystem__Array__VTable vtable; +}; + +struct IEnumerator_1_UnityEngine_IntegratedSubsystem___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_UnityEngine_IntegratedSubsystem___StaticFields { +}; + +struct IEnumerator_1_UnityEngine_IntegratedSubsystem___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_UnityEngine_IntegratedSubsystem___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_UnityEngine_IntegratedSubsystem___VTable vtable; +}; + +struct List_1_UnityEngine_IntegratedSubsystem___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_UnityEngine_IntegratedSubsystem___StaticFields { + struct IntegratedSubsystem__Array *s_emptyArray; +}; + +struct List_1_UnityEngine_IntegratedSubsystem___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_IntegratedSubsystem___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_IntegratedSubsystem___VTable vtable; +}; + +struct SubsystemWithProvider__Array__VTable { +}; + +struct SubsystemWithProvider__Array__StaticFields { +}; + +struct SubsystemWithProvider__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SubsystemWithProvider__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SubsystemWithProvider__Array__VTable vtable; +}; + +struct IEnumerator_1_UnityEngine_SubsystemsImplementation_SubsystemWithProvider___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_UnityEngine_SubsystemsImplementation_SubsystemWithProvider___StaticFields { +}; + +struct IEnumerator_1_UnityEngine_SubsystemsImplementation_SubsystemWithProvider___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_UnityEngine_SubsystemsImplementation_SubsystemWithProvider___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_UnityEngine_SubsystemsImplementation_SubsystemWithProvider___VTable vtable; +}; + +struct List_1_UnityEngine_SubsystemsImplementation_SubsystemWithProvider___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_UnityEngine_SubsystemsImplementation_SubsystemWithProvider___StaticFields { + struct SubsystemWithProvider__Array *s_emptyArray; +}; + +struct List_1_UnityEngine_SubsystemsImplementation_SubsystemWithProvider___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_SubsystemsImplementation_SubsystemWithProvider___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_SubsystemsImplementation_SubsystemWithProvider___VTable vtable; +}; + +struct Subsystem__Array__VTable { +}; + +struct Subsystem__Array__StaticFields { +}; + +struct Subsystem__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Subsystem__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Subsystem__Array__VTable vtable; +}; + +struct IEnumerator_1_UnityEngine_Subsystem___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_UnityEngine_Subsystem___StaticFields { +}; + +struct IEnumerator_1_UnityEngine_Subsystem___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_UnityEngine_Subsystem___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_UnityEngine_Subsystem___VTable vtable; +}; + +struct List_1_UnityEngine_Subsystem___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_UnityEngine_Subsystem___StaticFields { + struct Subsystem__Array *s_emptyArray; +}; + +struct List_1_UnityEngine_Subsystem___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_Subsystem___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_Subsystem___VTable vtable; +}; + +struct SubsystemManager__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct SubsystemManager__StaticFields { + struct Action *beforeReloadSubsystems; + struct Action *afterReloadSubsystems; + struct List_1_UnityEngine_IntegratedSubsystem_ *s_IntegratedSubsystems; + struct List_1_UnityEngine_SubsystemsImplementation_SubsystemWithProvider_ *s_StandaloneSubsystems; + struct List_1_UnityEngine_Subsystem_ *s_DeprecatedSubsystems; + struct Action *reloadSubsytemsStarted; + struct Action *reloadSubsytemsCompleted; +}; + +struct SubsystemManager__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SubsystemManager__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SubsystemManager__VTable vtable; +}; + +struct SubsystemDescriptorStore { + struct SubsystemDescriptorStore__Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) List_1_UnityEngine_IntegratedSubsystemDescriptor___Fields { + struct IntegratedSubsystemDescriptor__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_IntegratedSubsystemDescriptor_ { + struct List_1_UnityEngine_IntegratedSubsystemDescriptor___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_IntegratedSubsystemDescriptor___Fields fields; +}; + +struct IntegratedSubsystemDescriptor__Array { + struct IntegratedSubsystemDescriptor__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct IntegratedSubsystemDescriptor *vector[32]; +}; + +struct IEnumerator_1_UnityEngine_IntegratedSubsystemDescriptor_ { + struct IEnumerator_1_UnityEngine_IntegratedSubsystemDescriptor___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) List_1_UnityEngine_SubsystemsImplementation_SubsystemDescriptorWithProvider___Fields { + struct SubsystemDescriptorWithProvider__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_SubsystemsImplementation_SubsystemDescriptorWithProvider_ { + struct List_1_UnityEngine_SubsystemsImplementation_SubsystemDescriptorWithProvider___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_SubsystemsImplementation_SubsystemDescriptorWithProvider___Fields fields; +}; + +struct SubsystemDescriptorWithProvider__Array { + struct SubsystemDescriptorWithProvider__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct SubsystemDescriptorWithProvider *vector[32]; +}; + +struct IEnumerator_1_UnityEngine_SubsystemsImplementation_SubsystemDescriptorWithProvider_ { + struct IEnumerator_1_UnityEngine_SubsystemsImplementation_SubsystemDescriptorWithProvider___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) List_1_UnityEngine_SubsystemDescriptor___Fields { + struct SubsystemDescriptor__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_UnityEngine_SubsystemDescriptor_ { + struct List_1_UnityEngine_SubsystemDescriptor___Class *klass; + MonitorData *monitor; + struct List_1_UnityEngine_SubsystemDescriptor___Fields fields; +}; + +struct SubsystemDescriptor__Array { + struct SubsystemDescriptor__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct SubsystemDescriptor *vector[32]; +}; + +struct IEnumerator_1_UnityEngine_SubsystemDescriptor_ { + struct IEnumerator_1_UnityEngine_SubsystemDescriptor___Class *klass; + MonitorData *monitor; +}; + +struct IntegratedSubsystemDescriptor__Array__VTable { +}; + +struct IntegratedSubsystemDescriptor__Array__StaticFields { +}; + +struct IntegratedSubsystemDescriptor__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IntegratedSubsystemDescriptor__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IntegratedSubsystemDescriptor__Array__VTable vtable; +}; + +struct IEnumerator_1_UnityEngine_IntegratedSubsystemDescriptor___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_UnityEngine_IntegratedSubsystemDescriptor___StaticFields { +}; + +struct IEnumerator_1_UnityEngine_IntegratedSubsystemDescriptor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_UnityEngine_IntegratedSubsystemDescriptor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_UnityEngine_IntegratedSubsystemDescriptor___VTable vtable; +}; + +struct List_1_UnityEngine_IntegratedSubsystemDescriptor___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_UnityEngine_IntegratedSubsystemDescriptor___StaticFields { + struct IntegratedSubsystemDescriptor__Array *s_emptyArray; +}; + +struct List_1_UnityEngine_IntegratedSubsystemDescriptor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_IntegratedSubsystemDescriptor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_IntegratedSubsystemDescriptor___VTable vtable; +}; + +struct SubsystemDescriptorWithProvider__Array__VTable { +}; + +struct SubsystemDescriptorWithProvider__Array__StaticFields { +}; + +struct SubsystemDescriptorWithProvider__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SubsystemDescriptorWithProvider__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SubsystemDescriptorWithProvider__Array__VTable vtable; +}; + +struct IEnumerator_1_UnityEngine_SubsystemsImplementation_SubsystemDescriptorWithProvider___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_UnityEngine_SubsystemsImplementation_SubsystemDescriptorWithProvider___StaticFields { +}; + +struct IEnumerator_1_UnityEngine_SubsystemsImplementation_SubsystemDescriptorWithProvider___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_UnityEngine_SubsystemsImplementation_SubsystemDescriptorWithProvider___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_UnityEngine_SubsystemsImplementation_SubsystemDescriptorWithProvider___VTable vtable; +}; + +struct List_1_UnityEngine_SubsystemsImplementation_SubsystemDescriptorWithProvider___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_UnityEngine_SubsystemsImplementation_SubsystemDescriptorWithProvider___StaticFields { + struct SubsystemDescriptorWithProvider__Array *s_emptyArray; +}; + +struct List_1_UnityEngine_SubsystemsImplementation_SubsystemDescriptorWithProvider___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_SubsystemsImplementation_SubsystemDescriptorWithProvider___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_SubsystemsImplementation_SubsystemDescriptorWithProvider___VTable vtable; +}; + +struct SubsystemDescriptor__Array__VTable { +}; + +struct SubsystemDescriptor__Array__StaticFields { +}; + +struct SubsystemDescriptor__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SubsystemDescriptor__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SubsystemDescriptor__Array__VTable vtable; +}; + +struct IEnumerator_1_UnityEngine_SubsystemDescriptor___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_UnityEngine_SubsystemDescriptor___StaticFields { +}; + +struct IEnumerator_1_UnityEngine_SubsystemDescriptor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_UnityEngine_SubsystemDescriptor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_UnityEngine_SubsystemDescriptor___VTable vtable; +}; + +struct List_1_UnityEngine_SubsystemDescriptor___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_UnityEngine_SubsystemDescriptor___StaticFields { + struct SubsystemDescriptor__Array *s_emptyArray; +}; + +struct List_1_UnityEngine_SubsystemDescriptor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_SubsystemDescriptor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_SubsystemDescriptor___VTable vtable; +}; + +struct SubsystemDescriptorStore__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct SubsystemDescriptorStore__StaticFields { + struct List_1_UnityEngine_IntegratedSubsystemDescriptor_ *s_IntegratedDescriptors; + struct List_1_UnityEngine_SubsystemsImplementation_SubsystemDescriptorWithProvider_ *s_StandaloneDescriptors; + struct List_1_UnityEngine_SubsystemDescriptor_ *s_DeprecatedDescriptors; +}; + +struct SubsystemDescriptorStore__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SubsystemDescriptorStore__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SubsystemDescriptorStore__VTable vtable; +}; + +struct EqualityComparer_1_UnityEngine_Texture2D_ { + struct EqualityComparer_1_UnityEngine_Texture2D___Class *klass; + MonitorData *monitor; +}; + +struct EqualityComparer_1_UnityEngine_Texture2D___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_IEqualityComparer_Equals; + VirtualInvokeData System_Collections_IEqualityComparer_GetHashCode; + VirtualInvokeData Equals_1; + VirtualInvokeData GetHashCode_1; + VirtualInvokeData __unknown; + VirtualInvokeData __unknown_1; + VirtualInvokeData IndexOf; + VirtualInvokeData LastIndexOf; +}; + +struct EqualityComparer_1_UnityEngine_Texture2D___StaticFields { + struct EqualityComparer_1_UnityEngine_Texture2D_ *defaultComparer; +}; + +struct EqualityComparer_1_UnityEngine_Texture2D___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EqualityComparer_1_UnityEngine_Texture2D___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EqualityComparer_1_UnityEngine_Texture2D___VTable vtable; +}; + +struct EqualityComparer_1_PlaceholderSoftware_WetStuff_ProjectionMode_ { + struct EqualityComparer_1_PlaceholderSoftware_WetStuff_ProjectionMode___Class *klass; + MonitorData *monitor; +}; + +struct ProjectionMode__Enum__Array { + struct ProjectionMode__Enum__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + ProjectionMode__Enum vector[32]; +}; + +struct ProjectionMode__Enum__Array__VTable { +}; + +struct ProjectionMode__Enum__Array__StaticFields { +}; + +struct ProjectionMode__Enum__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ProjectionMode__Enum__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ProjectionMode__Enum__Array__VTable vtable; +}; + +struct EqualityComparer_1_PlaceholderSoftware_WetStuff_ProjectionMode___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_IEqualityComparer_Equals; + VirtualInvokeData System_Collections_IEqualityComparer_GetHashCode; + VirtualInvokeData Equals_1; + VirtualInvokeData GetHashCode_1; + VirtualInvokeData __unknown; + VirtualInvokeData __unknown_1; + VirtualInvokeData IndexOf; + VirtualInvokeData LastIndexOf; +}; + +struct EqualityComparer_1_PlaceholderSoftware_WetStuff_ProjectionMode___StaticFields { + struct EqualityComparer_1_PlaceholderSoftware_WetStuff_ProjectionMode_ *defaultComparer; +}; + +struct EqualityComparer_1_PlaceholderSoftware_WetStuff_ProjectionMode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EqualityComparer_1_PlaceholderSoftware_WetStuff_ProjectionMode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EqualityComparer_1_PlaceholderSoftware_WetStuff_ProjectionMode___VTable vtable; +}; + +struct EqualityComparer_1_PlaceholderSoftware_WetStuff_DecalShape_ { + struct EqualityComparer_1_PlaceholderSoftware_WetStuff_DecalShape___Class *klass; + MonitorData *monitor; +}; + +struct DecalShape__Enum__Array { + struct DecalShape__Enum__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + DecalShape__Enum vector[32]; +}; + +struct DecalShape__Enum__Array__VTable { +}; + +struct DecalShape__Enum__Array__StaticFields { +}; + +struct DecalShape__Enum__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DecalShape__Enum__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DecalShape__Enum__Array__VTable vtable; +}; + +struct EqualityComparer_1_PlaceholderSoftware_WetStuff_DecalShape___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_IEqualityComparer_Equals; + VirtualInvokeData System_Collections_IEqualityComparer_GetHashCode; + VirtualInvokeData Equals_1; + VirtualInvokeData GetHashCode_1; + VirtualInvokeData __unknown; + VirtualInvokeData __unknown_1; + VirtualInvokeData IndexOf; + VirtualInvokeData LastIndexOf; +}; + +struct EqualityComparer_1_PlaceholderSoftware_WetStuff_DecalShape___StaticFields { + struct EqualityComparer_1_PlaceholderSoftware_WetStuff_DecalShape_ *defaultComparer; +}; + +struct EqualityComparer_1_PlaceholderSoftware_WetStuff_DecalShape___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EqualityComparer_1_PlaceholderSoftware_WetStuff_DecalShape___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EqualityComparer_1_PlaceholderSoftware_WetStuff_DecalShape___VTable vtable; +}; + +struct EqualityComparer_1_PlaceholderSoftware_WetStuff_WetDecalMode_ { + struct EqualityComparer_1_PlaceholderSoftware_WetStuff_WetDecalMode___Class *klass; + MonitorData *monitor; +}; + +struct WetDecalMode__Enum__Array { + struct WetDecalMode__Enum__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + WetDecalMode__Enum vector[32]; +}; + +struct WetDecalMode__Enum__Array__VTable { +}; + +struct WetDecalMode__Enum__Array__StaticFields { +}; + +struct WetDecalMode__Enum__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct WetDecalMode__Enum__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct WetDecalMode__Enum__Array__VTable vtable; +}; + +struct EqualityComparer_1_PlaceholderSoftware_WetStuff_WetDecalMode___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_IEqualityComparer_Equals; + VirtualInvokeData System_Collections_IEqualityComparer_GetHashCode; + VirtualInvokeData Equals_1; + VirtualInvokeData GetHashCode_1; + VirtualInvokeData __unknown; + VirtualInvokeData __unknown_1; + VirtualInvokeData IndexOf; + VirtualInvokeData LastIndexOf; +}; + +struct EqualityComparer_1_PlaceholderSoftware_WetStuff_WetDecalMode___StaticFields { + struct EqualityComparer_1_PlaceholderSoftware_WetStuff_WetDecalMode_ *defaultComparer; +}; + +struct EqualityComparer_1_PlaceholderSoftware_WetStuff_WetDecalMode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EqualityComparer_1_PlaceholderSoftware_WetStuff_WetDecalMode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EqualityComparer_1_PlaceholderSoftware_WetStuff_WetDecalMode___VTable vtable; +}; + +struct EqualityComparer_1_PlaceholderSoftware_WetStuff_LayerMode_ { + struct EqualityComparer_1_PlaceholderSoftware_WetStuff_LayerMode___Class *klass; + MonitorData *monitor; +}; + +struct LayerMode__Enum__Array { + struct LayerMode__Enum__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + LayerMode__Enum vector[32]; +}; + +struct LayerMode__Enum__Array__VTable { +}; + +struct LayerMode__Enum__Array__StaticFields { +}; + +struct LayerMode__Enum__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct LayerMode__Enum__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct LayerMode__Enum__Array__VTable vtable; +}; + +struct EqualityComparer_1_PlaceholderSoftware_WetStuff_LayerMode___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_IEqualityComparer_Equals; + VirtualInvokeData System_Collections_IEqualityComparer_GetHashCode; + VirtualInvokeData Equals_1; + VirtualInvokeData GetHashCode_1; + VirtualInvokeData __unknown; + VirtualInvokeData __unknown_1; + VirtualInvokeData IndexOf; + VirtualInvokeData LastIndexOf; +}; + +struct EqualityComparer_1_PlaceholderSoftware_WetStuff_LayerMode___StaticFields { + struct EqualityComparer_1_PlaceholderSoftware_WetStuff_LayerMode_ *defaultComparer; +}; + +struct EqualityComparer_1_PlaceholderSoftware_WetStuff_LayerMode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EqualityComparer_1_PlaceholderSoftware_WetStuff_LayerMode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EqualityComparer_1_PlaceholderSoftware_WetStuff_LayerMode___VTable vtable; +}; + +struct ScriptPlayable_1_PlaceholderSoftware_WetStuff_Timeline_Saturation_Data_ { + struct PlayableHandle m_Handle; +}; + +struct ScriptPlayable_1_PlaceholderSoftware_WetStuff_Timeline_Saturation_Data___Boxed { + struct ScriptPlayable_1_PlaceholderSoftware_WetStuff_Timeline_Saturation_Data___Class *klass; + MonitorData *monitor; + struct ScriptPlayable_1_PlaceholderSoftware_WetStuff_Timeline_Saturation_Data_ fields; +}; + +struct ScriptPlayable_1_PlaceholderSoftware_WetStuff_Timeline_Saturation_Data___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData GetHandle; + VirtualInvokeData Equals_1; +}; + +struct ScriptPlayable_1_PlaceholderSoftware_WetStuff_Timeline_Saturation_Data___StaticFields { + struct ScriptPlayable_1_PlaceholderSoftware_WetStuff_Timeline_Saturation_Data_ m_NullPlayable; +}; + +struct ScriptPlayable_1_PlaceholderSoftware_WetStuff_Timeline_Saturation_Data___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ScriptPlayable_1_PlaceholderSoftware_WetStuff_Timeline_Saturation_Data___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ScriptPlayable_1_PlaceholderSoftware_WetStuff_Timeline_Saturation_Data___VTable vtable; +}; + +struct IFormattable { + struct IFormattable__Class *klass; + MonitorData *monitor; +}; + +struct IFormattable__VTable { + VirtualInvokeData ToString; +}; + +struct IFormattable__StaticFields { +}; + +struct IFormattable__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IFormattable__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IFormattable__VTable vtable; +}; + +struct ScriptPlayable_1_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsDataContainer_ { + struct PlayableHandle m_Handle; +}; + +struct ScriptPlayable_1_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsDataContainer___Boxed { + struct ScriptPlayable_1_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsDataContainer___Class *klass; + MonitorData *monitor; + struct ScriptPlayable_1_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsDataContainer_ fields; +}; + +struct ScriptPlayable_1_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsDataContainer___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData GetHandle; + VirtualInvokeData Equals_1; +}; + +struct ScriptPlayable_1_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsDataContainer___StaticFields { + struct ScriptPlayable_1_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsDataContainer_ m_NullPlayable; +}; + +struct ScriptPlayable_1_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsDataContainer___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ScriptPlayable_1_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsDataContainer___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ScriptPlayable_1_PlaceholderSoftware_WetStuff_Timeline_Settings_DecalSettingsDataContainer___VTable vtable; +}; + +struct __declspec(align(8)) List_1_Opsive_Shared_Utility_Serialization___Fields { + struct Serialization__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Opsive_Shared_Utility_Serialization_ { + struct List_1_Opsive_Shared_Utility_Serialization___Class *klass; + MonitorData *monitor; + struct List_1_Opsive_Shared_Utility_Serialization___Fields fields; +}; + +struct IEnumerator_1_Opsive_Shared_Utility_Serialization_ { + struct IEnumerator_1_Opsive_Shared_Utility_Serialization___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerator_1_Opsive_Shared_Utility_Serialization___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_Opsive_Shared_Utility_Serialization___StaticFields { +}; + +struct IEnumerator_1_Opsive_Shared_Utility_Serialization___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_Opsive_Shared_Utility_Serialization___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_Opsive_Shared_Utility_Serialization___VTable vtable; +}; + +struct List_1_Opsive_Shared_Utility_Serialization___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_Opsive_Shared_Utility_Serialization___StaticFields { + struct Serialization__Array *s_emptyArray; +}; + +struct List_1_Opsive_Shared_Utility_Serialization___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Opsive_Shared_Utility_Serialization___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Opsive_Shared_Utility_Serialization___VTable vtable; +}; + +struct __declspec(align(8)) List_1_gzbiKNGlSyvLxnIubujCpzSuqtOe___Fields { + struct gzbiKNGlSyvLxnIubujCpzSuqtOe__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_gzbiKNGlSyvLxnIubujCpzSuqtOe_ { + struct List_1_gzbiKNGlSyvLxnIubujCpzSuqtOe___Class *klass; + MonitorData *monitor; + struct List_1_gzbiKNGlSyvLxnIubujCpzSuqtOe___Fields fields; +}; + +struct gzbiKNGlSyvLxnIubujCpzSuqtOe__Array { + struct gzbiKNGlSyvLxnIubujCpzSuqtOe__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct gzbiKNGlSyvLxnIubujCpzSuqtOe *vector[32]; +}; + +struct IEnumerator_1_gzbiKNGlSyvLxnIubujCpzSuqtOe_ { + struct IEnumerator_1_gzbiKNGlSyvLxnIubujCpzSuqtOe___Class *klass; + MonitorData *monitor; +}; + +struct gzbiKNGlSyvLxnIubujCpzSuqtOe__Array__VTable { +}; + +struct gzbiKNGlSyvLxnIubujCpzSuqtOe__Array__StaticFields { +}; + +struct gzbiKNGlSyvLxnIubujCpzSuqtOe__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct gzbiKNGlSyvLxnIubujCpzSuqtOe__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct gzbiKNGlSyvLxnIubujCpzSuqtOe__Array__VTable vtable; +}; + +struct IEnumerator_1_gzbiKNGlSyvLxnIubujCpzSuqtOe___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_gzbiKNGlSyvLxnIubujCpzSuqtOe___StaticFields { +}; + +struct IEnumerator_1_gzbiKNGlSyvLxnIubujCpzSuqtOe___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_gzbiKNGlSyvLxnIubujCpzSuqtOe___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_gzbiKNGlSyvLxnIubujCpzSuqtOe___VTable vtable; +}; + +struct List_1_gzbiKNGlSyvLxnIubujCpzSuqtOe___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_gzbiKNGlSyvLxnIubujCpzSuqtOe___StaticFields { + struct gzbiKNGlSyvLxnIubujCpzSuqtOe__Array *s_emptyArray; +}; + +struct List_1_gzbiKNGlSyvLxnIubujCpzSuqtOe___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_gzbiKNGlSyvLxnIubujCpzSuqtOe___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_gzbiKNGlSyvLxnIubujCpzSuqtOe___VTable vtable; +}; + +struct ADictionary_2_TKey_TValue_Enumerator_System_Int32_PLVuESYMpevStRCbBgaqaHaZvFblA_ { + struct ADictionary_2_System_Int32_PLVuESYMpevStRCbBgaqaHaZvFblA_ *EguMivaEnQbDiOtSyTkITmcWhcfk; + int32_t oagLigDbnYgObzHaoZhKswBslRd; + int32_t vjzcnlknHCDPiCEmkZzrSgFNGjpD; + struct KeyValuePair_2_System_Int32_PLVuESYMpevStRCbBgaqaHaZvFblA_ qtleFCROTDVqULJLxchlGocvhMLP; + int32_t DhLfDvCgUiaacCYSlGoEgofxNxp; +}; + +struct ADictionary_2_TKey_TValue_Enumerator_System_Int32_PLVuESYMpevStRCbBgaqaHaZvFblA___Boxed { + struct ADictionary_2_TKey_TValue_Enumerator_System_Int32_PLVuESYMpevStRCbBgaqaHaZvFblA___Class *klass; + MonitorData *monitor; + struct ADictionary_2_TKey_TValue_Enumerator_System_Int32_PLVuESYMpevStRCbBgaqaHaZvFblA_ fields; +}; + +struct ADictionary_2_TKey_TValue_Enumerator_System_Int32_PLVuESYMpevStRCbBgaqaHaZvFblA___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Key; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Value; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Entry; + VirtualInvokeData get_Current; +}; + +struct ADictionary_2_TKey_TValue_Enumerator_System_Int32_PLVuESYMpevStRCbBgaqaHaZvFblA___StaticFields { +}; + +struct ADictionary_2_TKey_TValue_Enumerator_System_Int32_PLVuESYMpevStRCbBgaqaHaZvFblA___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ADictionary_2_TKey_TValue_Enumerator_System_Int32_PLVuESYMpevStRCbBgaqaHaZvFblA___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ADictionary_2_TKey_TValue_Enumerator_System_Int32_PLVuESYMpevStRCbBgaqaHaZvFblA___VTable vtable; +}; + +struct ADictionary_2_TKey_TValue_Enumerator_System_Int32_nPRqIoqySXhujbVkqhHKfdEBznFW_ { + struct ADictionary_2_System_Int32_nPRqIoqySXhujbVkqhHKfdEBznFW_ *EguMivaEnQbDiOtSyTkITmcWhcfk; + int32_t oagLigDbnYgObzHaoZhKswBslRd; + int32_t vjzcnlknHCDPiCEmkZzrSgFNGjpD; + struct KeyValuePair_2_System_Int32_nPRqIoqySXhujbVkqhHKfdEBznFW_ qtleFCROTDVqULJLxchlGocvhMLP; + int32_t DhLfDvCgUiaacCYSlGoEgofxNxp; +}; + +struct ADictionary_2_TKey_TValue_Enumerator_System_Int32_nPRqIoqySXhujbVkqhHKfdEBznFW___Boxed { + struct ADictionary_2_TKey_TValue_Enumerator_System_Int32_nPRqIoqySXhujbVkqhHKfdEBznFW___Class *klass; + MonitorData *monitor; + struct ADictionary_2_TKey_TValue_Enumerator_System_Int32_nPRqIoqySXhujbVkqhHKfdEBznFW_ fields; +}; + +struct ADictionary_2_TKey_TValue_Enumerator_System_Int32_nPRqIoqySXhujbVkqhHKfdEBznFW___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Key; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Value; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Entry; + VirtualInvokeData get_Current; +}; + +struct ADictionary_2_TKey_TValue_Enumerator_System_Int32_nPRqIoqySXhujbVkqhHKfdEBznFW___StaticFields { +}; + +struct ADictionary_2_TKey_TValue_Enumerator_System_Int32_nPRqIoqySXhujbVkqhHKfdEBznFW___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ADictionary_2_TKey_TValue_Enumerator_System_Int32_nPRqIoqySXhujbVkqhHKfdEBznFW___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ADictionary_2_TKey_TValue_Enumerator_System_Int32_nPRqIoqySXhujbVkqhHKfdEBznFW___VTable vtable; +}; + +struct RuntimeUtilities { + struct RuntimeUtilities__Class *klass; + MonitorData *monitor; +}; + +struct RuntimeUtilities__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct RuntimeUtilities__StaticFields { + struct Texture2D *m_WhiteTexture; + struct Texture3D *m_WhiteTexture3D; + struct Texture2D *m_BlackTexture; + struct Texture3D *m_BlackTexture3D; + struct Texture2D *m_TransparentTexture; + struct Texture3D *m_TransparentTexture3D; + struct Dictionary_2_System_Int32_UnityEngine_Texture2D_ *m_LutStrips; + struct PostProcessResources *s_Resources; + struct Mesh *s_FullscreenTriangle; + struct Material *s_CopyStdMaterial; + struct Material *s_CopyStdFromDoubleWideMaterial; + struct Material *s_CopyMaterial; + struct Material *s_CopyFromTexArrayMaterial; + struct PropertySheet *s_CopySheet; + struct PropertySheet *s_CopyFromTexArraySheet; + struct IEnumerable_1_System_Type_ *m_AssemblyTypes; +}; + +struct RuntimeUtilities__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RuntimeUtilities__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RuntimeUtilities__VTable vtable; +}; + +struct DateTimeParse_MatchNumberDelegate___VTable { +}; + +struct DateTimeParse_MatchNumberDelegate___StaticFields { +}; + +struct DateTimeParse_MatchNumberDelegate___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DateTimeParse_MatchNumberDelegate___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DateTimeParse_MatchNumberDelegate___VTable vtable; +}; + +struct __declspec(align(8)) Stack_1_System_Xml_Schema_InteriorNode___Fields { + struct InteriorNode__Array *_array; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct Stack_1_System_Xml_Schema_InteriorNode_ { + struct Stack_1_System_Xml_Schema_InteriorNode___Class *klass; + MonitorData *monitor; + struct Stack_1_System_Xml_Schema_InteriorNode___Fields fields; +}; + +struct InteriorNode__Array { + struct InteriorNode__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct InteriorNode *vector[32]; +}; + +struct IEnumerator_1_System_Xml_Schema_InteriorNode_ { + struct IEnumerator_1_System_Xml_Schema_InteriorNode___Class *klass; + MonitorData *monitor; +}; + +struct InteriorNode__Array__VTable { +}; + +struct InteriorNode__Array__StaticFields { +}; + +struct InteriorNode__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InteriorNode__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InteriorNode__Array__VTable vtable; +}; + +struct IEnumerator_1_System_Xml_Schema_InteriorNode___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_System_Xml_Schema_InteriorNode___StaticFields { +}; + +struct IEnumerator_1_System_Xml_Schema_InteriorNode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_System_Xml_Schema_InteriorNode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_System_Xml_Schema_InteriorNode___VTable vtable; +}; + +struct Stack_1_System_Xml_Schema_InteriorNode___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_1; +}; + +struct Stack_1_System_Xml_Schema_InteriorNode___StaticFields { +}; + +struct Stack_1_System_Xml_Schema_InteriorNode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Stack_1_System_Xml_Schema_InteriorNode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Stack_1_System_Xml_Schema_InteriorNode___VTable vtable; +}; + +struct List_1_T_Enumerator_UnityEngine_Rendering_VolumeComponent_ { + struct List_1_UnityEngine_Rendering_VolumeComponent_ *_list; + int32_t _index; + int32_t _version; + struct VolumeComponent *_current; +}; + +struct List_1_T_Enumerator_UnityEngine_Rendering_VolumeComponent___Boxed { + struct List_1_T_Enumerator_UnityEngine_Rendering_VolumeComponent___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_UnityEngine_Rendering_VolumeComponent_ fields; +}; + +struct List_1_T_Enumerator_UnityEngine_Rendering_VolumeComponent___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_UnityEngine_Rendering_VolumeComponent___StaticFields { +}; + +struct List_1_T_Enumerator_UnityEngine_Rendering_VolumeComponent___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_UnityEngine_Rendering_VolumeComponent___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_UnityEngine_Rendering_VolumeComponent___VTable vtable; +}; + +struct List_1_T_Enumerator_UnityEngine_Rendering_Volume_ { + struct List_1_UnityEngine_Rendering_Volume_ *_list; + int32_t _index; + int32_t _version; + struct Volume *_current; +}; + +struct List_1_T_Enumerator_UnityEngine_Rendering_Volume___Boxed { + struct List_1_T_Enumerator_UnityEngine_Rendering_Volume___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_UnityEngine_Rendering_Volume_ fields; +}; + +struct List_1_T_Enumerator_UnityEngine_Rendering_Volume___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_UnityEngine_Rendering_Volume___StaticFields { +}; + +struct List_1_T_Enumerator_UnityEngine_Rendering_Volume___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_UnityEngine_Rendering_Volume___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_UnityEngine_Rendering_Volume___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_List_1_UnityEngine_Rendering_Volume_ { + struct Dictionary_2_System_Int32_List_1_UnityEngine_Rendering_Volume_ *_dictionary; + int32_t _version; + int32_t _index; + struct KeyValuePair_2_System_Int32_List_1_UnityEngine_Rendering_Volume_ _current; + int32_t _getEnumeratorRetType; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_List_1_UnityEngine_Rendering_Volume___Boxed { + struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_List_1_UnityEngine_Rendering_Volume___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_List_1_UnityEngine_Rendering_Volume_ fields; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_List_1_UnityEngine_Rendering_Volume___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Key; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Value; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Entry; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_List_1_UnityEngine_Rendering_Volume___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_List_1_UnityEngine_Rendering_Volume___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_List_1_UnityEngine_Rendering_Volume___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_List_1_UnityEngine_Rendering_Volume___VTable vtable; +}; + +struct __declspec(align(8)) List_1_System_Xml_Schema_XmlSchemaObject___Fields { + struct XmlSchemaObject__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_System_Xml_Schema_XmlSchemaObject_ { + struct List_1_System_Xml_Schema_XmlSchemaObject___Class *klass; + MonitorData *monitor; + struct List_1_System_Xml_Schema_XmlSchemaObject___Fields fields; +}; + +struct List_1_System_Xml_Schema_XmlSchemaObject___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_System_Xml_Schema_XmlSchemaObject___StaticFields { + struct XmlSchemaObject__Array *s_emptyArray; +}; + +struct List_1_System_Xml_Schema_XmlSchemaObject___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_System_Xml_Schema_XmlSchemaObject___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_System_Xml_Schema_XmlSchemaObject___VTable vtable; +}; + +struct __declspec(align(8)) TempListPool_TList_1_UnityEngine_Component___Fields { + struct List_1_UnityEngine_Component_ *VMeHiJhSKJHrptlKzeCAAZtDcXSGA; + bool eIuesTMfdyQoDfpIQeBgmzDBKKjJ; +}; + +struct TempListPool_TList_1_UnityEngine_Component_ { + struct TempListPool_TList_1_UnityEngine_Component___Class *klass; + MonitorData *monitor; + struct TempListPool_TList_1_UnityEngine_Component___Fields fields; +}; + +struct TempListPool_TList_1_UnityEngine_Component___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Dispose; + VirtualInvokeData Rewired_Utils_TempListPool_ITListSetter_T__SetList; +}; + +struct TempListPool_TList_1_UnityEngine_Component___StaticFields { +}; + +struct TempListPool_TList_1_UnityEngine_Component___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TempListPool_TList_1_UnityEngine_Component___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TempListPool_TList_1_UnityEngine_Component___VTable vtable; +}; + +struct UQueryExtensions { + struct UQueryExtensions__Class *klass; + MonitorData *monitor; +}; + +struct UQueryExtensions__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct UQueryExtensions__StaticFields { + struct UQueryState_1_VisualElement_ SingleElementEmptyQuery; + struct UQueryState_1_VisualElement_ SingleElementNameQuery; + struct UQueryState_1_VisualElement_ SingleElementClassQuery; + struct UQueryState_1_VisualElement_ SingleElementNameAndClassQuery; + struct UQueryState_1_VisualElement_ SingleElementTypeQuery; + struct UQueryState_1_VisualElement_ SingleElementTypeAndNameQuery; + struct UQueryState_1_VisualElement_ SingleElementTypeAndClassQuery; + struct UQueryState_1_VisualElement_ SingleElementTypeAndNameAndClassQuery; +}; + +struct UQueryExtensions__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UQueryExtensions__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UQueryExtensions__VTable vtable; +}; + +struct Utility_1 { + struct Utility_1__Class *klass; + MonitorData *monitor; +}; + +struct Utility_1__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Utility_1__StaticFields { + struct Action_1_Boolean_ *GraphicsResourcesRecreate; + struct Action *EngineUpdate; + struct Action *FlushPendingResources; + struct Action_1_UnityEngine_Camera_ *RegisterIntermediateRenderers; + struct Action_1_IntPtr_ *RenderNodeAdd; + struct Action_1_IntPtr_ *RenderNodeExecute; + struct Action_1_IntPtr_ *RenderNodeCleanup; + struct ProfilerMarker s_MarkerRaiseEngineUpdate; +}; + +struct Utility_1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Utility_1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Utility_1__VTable vtable; +}; + +struct IRenderGraphResource___VTable { +}; + +struct IRenderGraphResource___StaticFields { +}; + +struct IRenderGraphResource___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IRenderGraphResource___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IRenderGraphResource___VTable vtable; +}; + +struct ICollection_1_Rewired_ActionElementMap_ { + struct ICollection_1_Rewired_ActionElementMap___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_Rewired_ActionElementMap___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_Rewired_ActionElementMap___StaticFields { +}; + +struct ICollection_1_Rewired_ActionElementMap___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_Rewired_ActionElementMap___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_Rewired_ActionElementMap___VTable vtable; +}; + +struct __declspec(align(8)) List_1_System_Linq_Expressions_ParameterExpression___Fields { + struct ParameterExpression__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_System_Linq_Expressions_ParameterExpression_ { + struct List_1_System_Linq_Expressions_ParameterExpression___Class *klass; + MonitorData *monitor; + struct List_1_System_Linq_Expressions_ParameterExpression___Fields fields; +}; + +struct List_1_System_Linq_Expressions_ParameterExpression___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_System_Linq_Expressions_ParameterExpression___StaticFields { + struct ParameterExpression__Array *s_emptyArray; +}; + +struct List_1_System_Linq_Expressions_ParameterExpression___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_System_Linq_Expressions_ParameterExpression___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_System_Linq_Expressions_ParameterExpression___VTable vtable; +}; + +struct LightProbes__Fields { + struct Object_1__Fields _; +}; + +struct LightProbes { + struct LightProbes__Class *klass; + MonitorData *monitor; + struct LightProbes__Fields fields; +}; + +struct LightProbes__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct LightProbes__StaticFields { + struct Action *tetrahedralizationCompleted; + struct Action *needsRetetrahedralization; +}; + +struct LightProbes__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct LightProbes__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct LightProbes__VTable vtable; +}; + +struct CustomRenderTextureManager { + struct CustomRenderTextureManager__Class *klass; + MonitorData *monitor; +}; + +struct Action_1_UnityEngine_CustomRenderTexture___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_1_UnityEngine_CustomRenderTexture_ { + struct Action_1_UnityEngine_CustomRenderTexture___Class *klass; + MonitorData *monitor; + struct Action_1_UnityEngine_CustomRenderTexture___Fields fields; +}; + +struct Action_1_UnityEngine_CustomRenderTexture___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_1_UnityEngine_CustomRenderTexture___StaticFields { +}; + +struct Action_1_UnityEngine_CustomRenderTexture___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_1_UnityEngine_CustomRenderTexture___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_1_UnityEngine_CustomRenderTexture___VTable vtable; +}; + +struct CustomRenderTextureManager__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct CustomRenderTextureManager__StaticFields { + struct Action_1_UnityEngine_CustomRenderTexture_ *textureLoaded; + struct Action_1_UnityEngine_CustomRenderTexture_ *textureUnloaded; +}; + +struct CustomRenderTextureManager__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CustomRenderTextureManager__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CustomRenderTextureManager__VTable vtable; +}; + +struct Application { + struct Application__Class *klass; + MonitorData *monitor; +}; + +struct Application__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Application__StaticFields { + struct Application_LowMemoryCallback *lowMemory; + struct Application_LogCallback *s_LogCallbackHandler; + struct Application_LogCallback *s_LogCallbackHandlerThreaded; + struct Action_1_Boolean_ *focusChanged; + struct Action_1_String_ *deepLinkActivated; + struct Func_1_Boolean_ *wantsToQuit; + struct Action *quitting; + struct Action *unloading; +}; + +struct Application__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Application__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Application__VTable vtable; +}; + +struct BeforeRenderHelper { + struct BeforeRenderHelper__Class *klass; + MonitorData *monitor; +}; + +struct BeforeRenderHelper__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BeforeRenderHelper__StaticFields { + struct List_1_UnityEngine_BeforeRenderHelper_OrderBlock_ *s_OrderBlocks; +}; + +struct BeforeRenderHelper__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BeforeRenderHelper__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BeforeRenderHelper__VTable vtable; +}; + +struct NativeLeakDetection { + struct NativeLeakDetection__Class *klass; + MonitorData *monitor; +}; + +struct NativeLeakDetection__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct NativeLeakDetection__StaticFields { + int32_t s_NativeLeakDetectionMode; +}; + +struct NativeLeakDetection__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NativeLeakDetection__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NativeLeakDetection__VTable vtable; +}; + +#if defined(_CPLUSPLUS_) +enum class ProcessingState__Enum : int32_t { + Unknown = 0x00000000, + InQueue = 0x00000001, + Reading = 0x00000002, + Completed = 0x00000003, + Failed = 0x00000004, + Canceled = 0x00000005, +}; + +#else +enum ProcessingState__Enum { + ProcessingState__Enum_Unknown = 0x00000000, + ProcessingState__Enum_InQueue = 0x00000001, + ProcessingState__Enum_Reading = 0x00000002, + ProcessingState__Enum_Completed = 0x00000003, + ProcessingState__Enum_Failed = 0x00000004, + ProcessingState__Enum_Canceled = 0x00000005, +}; + +#endif +struct ProcessingState__Enum__Boxed { + struct ProcessingState__Enum__Class *klass; + MonitorData *monitor; + #if defined(_CPLUSPLUS_) + ProcessingState__Enum value; + #else + int32_t value; + #endif +}; + +struct ProcessingState__Enum__Array { + struct ProcessingState__Enum__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + ProcessingState__Enum vector[32]; +}; + +struct ProcessingState__Enum__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData CompareTo; + VirtualInvokeData ToString_1; + VirtualInvokeData GetTypeCode; + VirtualInvokeData System_IConvertible_ToBoolean; + VirtualInvokeData System_IConvertible_ToChar; + VirtualInvokeData System_IConvertible_ToSByte; + VirtualInvokeData System_IConvertible_ToByte; + VirtualInvokeData System_IConvertible_ToInt16; + VirtualInvokeData System_IConvertible_ToUInt16; + VirtualInvokeData System_IConvertible_ToInt32; + VirtualInvokeData System_IConvertible_ToUInt32; + VirtualInvokeData System_IConvertible_ToInt64; + VirtualInvokeData System_IConvertible_ToUInt64; + VirtualInvokeData System_IConvertible_ToSingle; + VirtualInvokeData System_IConvertible_ToDouble; + VirtualInvokeData System_IConvertible_ToDecimal; + VirtualInvokeData System_IConvertible_ToDateTime; + VirtualInvokeData ToString_2; + VirtualInvokeData System_IConvertible_ToType; +}; + +struct ProcessingState__Enum__StaticFields { +}; + +struct ProcessingState__Enum__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ProcessingState__Enum__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ProcessingState__Enum__VTable vtable; +}; + +struct ProcessingState__Enum__Array__VTable { +}; + +struct ProcessingState__Enum__Array__StaticFields { +}; + +struct ProcessingState__Enum__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ProcessingState__Enum__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ProcessingState__Enum__Array__VTable vtable; +}; + +#if defined(_CPLUSPLUS_) +enum class Priority__Enum : int32_t { + PriorityLow = 0x00000000, + PriorityHigh = 0x00000001, +}; + +#else +enum Priority__Enum { + Priority__Enum_PriorityLow = 0x00000000, + Priority__Enum_PriorityHigh = 0x00000001, +}; + +#endif +struct Priority__Enum__Boxed { + struct Priority__Enum__Class *klass; + MonitorData *monitor; + #if defined(_CPLUSPLUS_) + Priority__Enum value; + #else + int32_t value; + #endif +}; + +struct Priority__Enum__Array { + struct Priority__Enum__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + Priority__Enum vector[32]; +}; + +struct Priority__Enum__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData CompareTo; + VirtualInvokeData ToString_1; + VirtualInvokeData GetTypeCode; + VirtualInvokeData System_IConvertible_ToBoolean; + VirtualInvokeData System_IConvertible_ToChar; + VirtualInvokeData System_IConvertible_ToSByte; + VirtualInvokeData System_IConvertible_ToByte; + VirtualInvokeData System_IConvertible_ToInt16; + VirtualInvokeData System_IConvertible_ToUInt16; + VirtualInvokeData System_IConvertible_ToInt32; + VirtualInvokeData System_IConvertible_ToUInt32; + VirtualInvokeData System_IConvertible_ToInt64; + VirtualInvokeData System_IConvertible_ToUInt64; + VirtualInvokeData System_IConvertible_ToSingle; + VirtualInvokeData System_IConvertible_ToDouble; + VirtualInvokeData System_IConvertible_ToDecimal; + VirtualInvokeData System_IConvertible_ToDateTime; + VirtualInvokeData ToString_2; + VirtualInvokeData System_IConvertible_ToType; +}; + +struct Priority__Enum__StaticFields { +}; + +struct Priority__Enum__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Priority__Enum__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Priority__Enum__VTable vtable; +}; + +struct Priority__Enum__Array__VTable { +}; + +struct Priority__Enum__Array__StaticFields { +}; + +struct Priority__Enum__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Priority__Enum__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Priority__Enum__Array__VTable vtable; +}; + +#if defined(_CPLUSPLUS_) +enum class FileReadType__Enum : int32_t { + Sync = 0x00000000, + Async = 0x00000001, +}; + +#else +enum FileReadType__Enum { + FileReadType__Enum_Sync = 0x00000000, + FileReadType__Enum_Async = 0x00000001, +}; + +#endif +struct FileReadType__Enum__Boxed { + struct FileReadType__Enum__Class *klass; + MonitorData *monitor; + #if defined(_CPLUSPLUS_) + FileReadType__Enum value; + #else + int32_t value; + #endif +}; + +struct FileReadType__Enum__Array { + struct FileReadType__Enum__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + FileReadType__Enum vector[32]; +}; + +struct FileReadType__Enum__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData CompareTo; + VirtualInvokeData ToString_1; + VirtualInvokeData GetTypeCode; + VirtualInvokeData System_IConvertible_ToBoolean; + VirtualInvokeData System_IConvertible_ToChar; + VirtualInvokeData System_IConvertible_ToSByte; + VirtualInvokeData System_IConvertible_ToByte; + VirtualInvokeData System_IConvertible_ToInt16; + VirtualInvokeData System_IConvertible_ToUInt16; + VirtualInvokeData System_IConvertible_ToInt32; + VirtualInvokeData System_IConvertible_ToUInt32; + VirtualInvokeData System_IConvertible_ToInt64; + VirtualInvokeData System_IConvertible_ToUInt64; + VirtualInvokeData System_IConvertible_ToSingle; + VirtualInvokeData System_IConvertible_ToDouble; + VirtualInvokeData System_IConvertible_ToDecimal; + VirtualInvokeData System_IConvertible_ToDateTime; + VirtualInvokeData ToString_2; + VirtualInvokeData System_IConvertible_ToType; +}; + +struct FileReadType__Enum__StaticFields { +}; + +struct FileReadType__Enum__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct FileReadType__Enum__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct FileReadType__Enum__VTable vtable; +}; + +struct FileReadType__Enum__Array__VTable { +}; + +struct FileReadType__Enum__Array__StaticFields { +}; + +struct FileReadType__Enum__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct FileReadType__Enum__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct FileReadType__Enum__Array__VTable vtable; +}; + +#if defined(_CPLUSPLUS_) +enum class AssetLoadingSubsystem__Enum : int32_t { + Other = 0x00000000, + Texture = 0x00000001, + VirtualTexture = 0x00000002, + Mesh = 0x00000003, + Audio = 0x00000004, + Scripts = 0x00000005, + EntitiesScene = 0x00000006, + EntitiesStreamBinaryReader = 0x00000007, + FileInfo = 0x00000008, +}; + +#else +enum AssetLoadingSubsystem__Enum { + AssetLoadingSubsystem__Enum_Other = 0x00000000, + AssetLoadingSubsystem__Enum_Texture = 0x00000001, + AssetLoadingSubsystem__Enum_VirtualTexture = 0x00000002, + AssetLoadingSubsystem__Enum_Mesh = 0x00000003, + AssetLoadingSubsystem__Enum_Audio = 0x00000004, + AssetLoadingSubsystem__Enum_Scripts = 0x00000005, + AssetLoadingSubsystem__Enum_EntitiesScene = 0x00000006, + AssetLoadingSubsystem__Enum_EntitiesStreamBinaryReader = 0x00000007, + AssetLoadingSubsystem__Enum_FileInfo = 0x00000008, +}; + +#endif +struct AssetLoadingSubsystem__Enum__Boxed { + struct AssetLoadingSubsystem__Enum__Class *klass; + MonitorData *monitor; + #if defined(_CPLUSPLUS_) + AssetLoadingSubsystem__Enum value; + #else + int32_t value; + #endif +}; + +struct AssetLoadingSubsystem__Enum__Array { + struct AssetLoadingSubsystem__Enum__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + AssetLoadingSubsystem__Enum vector[32]; +}; + +struct AssetLoadingSubsystem__Enum__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData CompareTo; + VirtualInvokeData ToString_1; + VirtualInvokeData GetTypeCode; + VirtualInvokeData System_IConvertible_ToBoolean; + VirtualInvokeData System_IConvertible_ToChar; + VirtualInvokeData System_IConvertible_ToSByte; + VirtualInvokeData System_IConvertible_ToByte; + VirtualInvokeData System_IConvertible_ToInt16; + VirtualInvokeData System_IConvertible_ToUInt16; + VirtualInvokeData System_IConvertible_ToInt32; + VirtualInvokeData System_IConvertible_ToUInt32; + VirtualInvokeData System_IConvertible_ToInt64; + VirtualInvokeData System_IConvertible_ToUInt64; + VirtualInvokeData System_IConvertible_ToSingle; + VirtualInvokeData System_IConvertible_ToDouble; + VirtualInvokeData System_IConvertible_ToDecimal; + VirtualInvokeData System_IConvertible_ToDateTime; + VirtualInvokeData ToString_2; + VirtualInvokeData System_IConvertible_ToType; +}; + +struct AssetLoadingSubsystem__Enum__StaticFields { +}; + +struct AssetLoadingSubsystem__Enum__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct AssetLoadingSubsystem__Enum__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct AssetLoadingSubsystem__Enum__VTable vtable; +}; + +struct AssetLoadingSubsystem__Enum__Array__VTable { +}; + +struct AssetLoadingSubsystem__Enum__Array__StaticFields { +}; + +struct AssetLoadingSubsystem__Enum__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct AssetLoadingSubsystem__Enum__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct AssetLoadingSubsystem__Enum__Array__VTable vtable; +}; + +struct JobsUtility { + struct JobsUtility__Class *klass; + MonitorData *monitor; +}; + +struct JobsUtility__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct JobsUtility__StaticFields { + struct JobsUtility_PanicFunction_ *PanicFunction; +}; + +struct JobsUtility__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct JobsUtility__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct JobsUtility__VTable vtable; +}; + +struct MathfInternal { +}; + +struct MathfInternal__Boxed { + struct MathfInternal__Class *klass; + MonitorData *monitor; + struct MathfInternal fields; +}; + +struct MathfInternal__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct MathfInternal__StaticFields { + float FloatMinNormal; + float FloatMinDenormal; + bool IsFlushToZeroEnabled; +}; + +struct MathfInternal__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MathfInternal__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MathfInternal__VTable vtable; +}; + +struct CompatibilitySwitches { + struct CompatibilitySwitches__Class *klass; + MonitorData *monitor; +}; + +struct CompatibilitySwitches__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct CompatibilitySwitches__StaticFields { + bool IsAppEarlierThanWindowsPhone8; +}; + +struct CompatibilitySwitches__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CompatibilitySwitches__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CompatibilitySwitches__VTable vtable; +}; + +struct EmptyArray_1_Type_ { + struct EmptyArray_1_Type___Class *klass; + MonitorData *monitor; +}; + +struct EmptyArray_1_Type___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct EmptyArray_1_Type___StaticFields { + struct Type__Array *Value; +}; + +struct EmptyArray_1_Type___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EmptyArray_1_Type___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EmptyArray_1_Type___VTable vtable; +}; + +struct RuntimeArgumentHandle { + void *args; +}; + +struct RuntimeArgumentHandle__Boxed { + struct RuntimeArgumentHandle__Class *klass; + MonitorData *monitor; + struct RuntimeArgumentHandle fields; +}; + +struct RuntimeArgumentHandle__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct RuntimeArgumentHandle__StaticFields { +}; + +struct RuntimeArgumentHandle__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RuntimeArgumentHandle__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RuntimeArgumentHandle__VTable vtable; +}; + +struct __declspec(align(8)) List_1_System_Reflection_MethodBase___Fields { + struct MethodBase__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_System_Reflection_MethodBase_ { + struct List_1_System_Reflection_MethodBase___Class *klass; + MonitorData *monitor; + struct List_1_System_Reflection_MethodBase___Fields fields; +}; + +struct IEnumerator_1_System_Reflection_MethodBase_ { + struct IEnumerator_1_System_Reflection_MethodBase___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerator_1_System_Reflection_MethodBase___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_System_Reflection_MethodBase___StaticFields { +}; + +struct IEnumerator_1_System_Reflection_MethodBase___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_System_Reflection_MethodBase___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_System_Reflection_MethodBase___VTable vtable; +}; + +struct List_1_System_Reflection_MethodBase___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_System_Reflection_MethodBase___StaticFields { + struct MethodBase__Array *s_emptyArray; +}; + +struct List_1_System_Reflection_MethodBase___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_System_Reflection_MethodBase___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_System_Reflection_MethodBase___VTable vtable; +}; + +struct SpookyHash { + struct SpookyHash__Class *klass; + MonitorData *monitor; +}; + +struct SpookyHash__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct SpookyHash__StaticFields { + bool AllowUnalignedRead; +}; + +struct SpookyHash__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SpookyHash__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SpookyHash__VTable vtable; +}; + +struct IReadOnlyDictionary_2_System_String_System_LocalDataStoreSlot_ { + struct IReadOnlyDictionary_2_System_String_System_LocalDataStoreSlot___Class *klass; + MonitorData *monitor; +}; + +struct IReadOnlyDictionary_2_System_String_System_LocalDataStoreSlot___VTable { + VirtualInvokeData TryGetValue; + VirtualInvokeData get_Keys; + VirtualInvokeData get_Values; +}; + +struct IReadOnlyDictionary_2_System_String_System_LocalDataStoreSlot___StaticFields { +}; + +struct IReadOnlyDictionary_2_System_String_System_LocalDataStoreSlot___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IReadOnlyDictionary_2_System_String_System_LocalDataStoreSlot___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IReadOnlyDictionary_2_System_String_System_LocalDataStoreSlot___VTable vtable; +}; + +struct ParameterizedStrings { + struct ParameterizedStrings__Class *klass; + MonitorData *monitor; +}; + +struct ParameterizedStrings__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ParameterizedStrings__StaticFields { + struct ParameterizedStrings_LowLevelStack *_cachedStack; +}; + +struct ParameterizedStrings__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ParameterizedStrings__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ParameterizedStrings__VTable vtable; +}; + +struct TermInfoStrings__Enum__Array { + struct TermInfoStrings__Enum__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + TermInfoStrings__Enum vector[32]; +}; + +struct TermInfoStrings__Enum__Array__VTable { +}; + +struct TermInfoStrings__Enum__Array__StaticFields { +}; + +struct TermInfoStrings__Enum__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TermInfoStrings__Enum__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TermInfoStrings__Enum__Array__VTable vtable; +}; + +struct __declspec(align(8)) List_1_System_Reflection_CustomAttributeData___Fields { + struct CustomAttributeData__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_System_Reflection_CustomAttributeData_ { + struct List_1_System_Reflection_CustomAttributeData___Class *klass; + MonitorData *monitor; + struct List_1_System_Reflection_CustomAttributeData___Fields fields; +}; + +struct List_1_System_Reflection_CustomAttributeData___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_System_Reflection_CustomAttributeData___StaticFields { + struct CustomAttributeData__Array *s_emptyArray; +}; + +struct List_1_System_Reflection_CustomAttributeData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_System_Reflection_CustomAttributeData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_System_Reflection_CustomAttributeData___VTable vtable; +}; + +struct ICollection_1_System_Reflection_CustomAttributeData_ { + struct ICollection_1_System_Reflection_CustomAttributeData___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_System_Reflection_CustomAttributeData___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_System_Reflection_CustomAttributeData___StaticFields { +}; + +struct ICollection_1_System_Reflection_CustomAttributeData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_System_Reflection_CustomAttributeData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_System_Reflection_CustomAttributeData___VTable vtable; +}; + +struct __declspec(align(8)) ReadOnlyCollection_1_System_Reflection_CustomAttributeData___Fields { + struct IList_1_System_Reflection_CustomAttributeData_ *list; + struct Object *_syncRoot; +}; + +struct ReadOnlyCollection_1_System_Reflection_CustomAttributeData_ { + struct ReadOnlyCollection_1_System_Reflection_CustomAttributeData___Class *klass; + MonitorData *monitor; + struct ReadOnlyCollection_1_System_Reflection_CustomAttributeData___Fields fields; +}; + +struct ReadOnlyCollection_1_System_Reflection_CustomAttributeData___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_Generic_IList_T__get_Item; + VirtualInvokeData System_Collections_Generic_IList_T__set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData System_Collections_Generic_IList_T__Insert; + VirtualInvokeData System_Collections_Generic_IList_T__RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_T__Add; + VirtualInvokeData System_Collections_Generic_ICollection_T__Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_T__Remove; + VirtualInvokeData GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData System_Collections_IList_Clear; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData System_Collections_IList_RemoveAt; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item; + VirtualInvokeData get_Count_2; +}; + +struct ReadOnlyCollection_1_System_Reflection_CustomAttributeData___StaticFields { +}; + +struct ReadOnlyCollection_1_System_Reflection_CustomAttributeData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ReadOnlyCollection_1_System_Reflection_CustomAttributeData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ReadOnlyCollection_1_System_Reflection_CustomAttributeData___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_System_MonoCustomAttrs_AttributeInfo_ { + int32_t hashCode; + int32_t next; + struct Type *key; + struct MonoCustomAttrs_AttributeInfo *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_System_MonoCustomAttrs_AttributeInfo___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Type_System_MonoCustomAttrs_AttributeInfo___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Type_System_MonoCustomAttrs_AttributeInfo_ fields; +}; + +struct __declspec(align(8)) Dictionary_2_System_Type_System_MonoCustomAttrs_AttributeInfo___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_System_Type_System_MonoCustomAttrs_AttributeInfo___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_System_Type_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_System_MonoCustomAttrs_AttributeInfo_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_System_MonoCustomAttrs_AttributeInfo_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_System_Type_System_MonoCustomAttrs_AttributeInfo_ { + struct Dictionary_2_System_Type_System_MonoCustomAttrs_AttributeInfo___Class *klass; + MonitorData *monitor; + struct Dictionary_2_System_Type_System_MonoCustomAttrs_AttributeInfo___Fields fields; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_System_MonoCustomAttrs_AttributeInfo___Array { + struct Dictionary_2_TKey_TValue_Entry_System_Type_System_MonoCustomAttrs_AttributeInfo___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Dictionary_2_TKey_TValue_Entry_System_Type_System_MonoCustomAttrs_AttributeInfo_ vector[32]; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_KeyCollection_System_Type_System_MonoCustomAttrs_AttributeInfo___Fields { + struct Dictionary_2_System_Type_System_MonoCustomAttrs_AttributeInfo_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_System_MonoCustomAttrs_AttributeInfo_ { + struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_System_MonoCustomAttrs_AttributeInfo___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_System_MonoCustomAttrs_AttributeInfo___Fields fields; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_ValueCollection_System_Type_System_MonoCustomAttrs_AttributeInfo___Fields { + struct Dictionary_2_System_Type_System_MonoCustomAttrs_AttributeInfo_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_System_MonoCustomAttrs_AttributeInfo_ { + struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_System_MonoCustomAttrs_AttributeInfo___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_System_MonoCustomAttrs_AttributeInfo___Fields fields; +}; + +struct MonoCustomAttrs_AttributeInfo__Array { + struct MonoCustomAttrs_AttributeInfo__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct MonoCustomAttrs_AttributeInfo *vector[32]; +}; + +struct IEnumerator_1_System_MonoCustomAttrs_AttributeInfo_ { + struct IEnumerator_1_System_MonoCustomAttrs_AttributeInfo___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_System_MonoCustomAttrs_AttributeInfo_ { + struct ICollection_1_System_MonoCustomAttrs_AttributeInfo___Class *klass; + MonitorData *monitor; +}; + +struct KeyValuePair_2_System_Type_System_MonoCustomAttrs_AttributeInfo_ { + struct Type *key; + struct MonoCustomAttrs_AttributeInfo *value; +}; + +struct KeyValuePair_2_System_Type_System_MonoCustomAttrs_AttributeInfo___Boxed { + struct KeyValuePair_2_System_Type_System_MonoCustomAttrs_AttributeInfo___Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_System_Type_System_MonoCustomAttrs_AttributeInfo_ fields; +}; + +struct KeyValuePair_2_System_Type_System_MonoCustomAttrs_AttributeInfo___Array { + struct KeyValuePair_2_System_Type_System_MonoCustomAttrs_AttributeInfo___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct KeyValuePair_2_System_Type_System_MonoCustomAttrs_AttributeInfo_ vector[32]; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Type_System_MonoCustomAttrs_AttributeInfo_ { + struct IEnumerator_1_KeyValuePair_2_System_Type_System_MonoCustomAttrs_AttributeInfo___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_System_MonoCustomAttrs_AttributeInfo_ { + struct IEnumerable_1_System_MonoCustomAttrs_AttributeInfo___Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_System_MonoCustomAttrs_AttributeInfo___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_System_MonoCustomAttrs_AttributeInfo___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_System_MonoCustomAttrs_AttributeInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_System_Type_System_MonoCustomAttrs_AttributeInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_System_Type_System_MonoCustomAttrs_AttributeInfo___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_System_MonoCustomAttrs_AttributeInfo___Array__VTable { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_System_MonoCustomAttrs_AttributeInfo___Array__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Type_System_MonoCustomAttrs_AttributeInfo___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_System_Type_System_MonoCustomAttrs_AttributeInfo___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_System_Type_System_MonoCustomAttrs_AttributeInfo___Array__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_System_MonoCustomAttrs_AttributeInfo___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TKey__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_System_MonoCustomAttrs_AttributeInfo___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_System_MonoCustomAttrs_AttributeInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_System_MonoCustomAttrs_AttributeInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_System_MonoCustomAttrs_AttributeInfo___VTable vtable; +}; + +struct MonoCustomAttrs_AttributeInfo__Array__VTable { +}; + +struct MonoCustomAttrs_AttributeInfo__Array__StaticFields { +}; + +struct MonoCustomAttrs_AttributeInfo__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MonoCustomAttrs_AttributeInfo__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MonoCustomAttrs_AttributeInfo__Array__VTable vtable; +}; + +struct IEnumerator_1_System_MonoCustomAttrs_AttributeInfo___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_System_MonoCustomAttrs_AttributeInfo___StaticFields { +}; + +struct IEnumerator_1_System_MonoCustomAttrs_AttributeInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_System_MonoCustomAttrs_AttributeInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_System_MonoCustomAttrs_AttributeInfo___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_System_MonoCustomAttrs_AttributeInfo___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TValue__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_System_MonoCustomAttrs_AttributeInfo___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_System_MonoCustomAttrs_AttributeInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_System_MonoCustomAttrs_AttributeInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_System_MonoCustomAttrs_AttributeInfo___VTable vtable; +}; + +struct ICollection_1_System_MonoCustomAttrs_AttributeInfo___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_System_MonoCustomAttrs_AttributeInfo___StaticFields { +}; + +struct ICollection_1_System_MonoCustomAttrs_AttributeInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_System_MonoCustomAttrs_AttributeInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_System_MonoCustomAttrs_AttributeInfo___VTable vtable; +}; + +struct MonoCustomAttrs_AttributeInfo___VTable { +}; + +struct MonoCustomAttrs_AttributeInfo___StaticFields { +}; + +struct MonoCustomAttrs_AttributeInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MonoCustomAttrs_AttributeInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MonoCustomAttrs_AttributeInfo___VTable vtable; +}; + +struct KeyValuePair_2_System_Type_System_MonoCustomAttrs_AttributeInfo___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct KeyValuePair_2_System_Type_System_MonoCustomAttrs_AttributeInfo___StaticFields { +}; + +struct KeyValuePair_2_System_Type_System_MonoCustomAttrs_AttributeInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_Type_System_MonoCustomAttrs_AttributeInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_Type_System_MonoCustomAttrs_AttributeInfo___VTable vtable; +}; + +struct KeyValuePair_2_System_Type_System_MonoCustomAttrs_AttributeInfo___Array__VTable { +}; + +struct KeyValuePair_2_System_Type_System_MonoCustomAttrs_AttributeInfo___Array__StaticFields { +}; + +struct KeyValuePair_2_System_Type_System_MonoCustomAttrs_AttributeInfo___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_Type_System_MonoCustomAttrs_AttributeInfo___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_Type_System_MonoCustomAttrs_AttributeInfo___Array__VTable vtable; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Type_System_MonoCustomAttrs_AttributeInfo___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Type_System_MonoCustomAttrs_AttributeInfo___StaticFields { +}; + +struct IEnumerator_1_KeyValuePair_2_System_Type_System_MonoCustomAttrs_AttributeInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_KeyValuePair_2_System_Type_System_MonoCustomAttrs_AttributeInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_KeyValuePair_2_System_Type_System_MonoCustomAttrs_AttributeInfo___VTable vtable; +}; + +struct IEnumerable_1_System_MonoCustomAttrs_AttributeInfo___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_System_MonoCustomAttrs_AttributeInfo___StaticFields { +}; + +struct IEnumerable_1_System_MonoCustomAttrs_AttributeInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_System_MonoCustomAttrs_AttributeInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_System_MonoCustomAttrs_AttributeInfo___VTable vtable; +}; + +struct Dictionary_2_System_Type_System_MonoCustomAttrs_AttributeInfo___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Values; + VirtualInvokeData ContainsKey; + VirtualInvokeData Add; + VirtualInvokeData Remove; + VirtualInvokeData TryGetValue; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add; + VirtualInvokeData Clear; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_get_Item; + VirtualInvokeData System_Collections_IDictionary_set_Item; + VirtualInvokeData System_Collections_IDictionary_get_Keys; + VirtualInvokeData System_Collections_IDictionary_get_Values; + VirtualInvokeData System_Collections_IDictionary_Contains; + VirtualInvokeData System_Collections_IDictionary_Add; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IDictionary_get_IsReadOnly; + VirtualInvokeData System_Collections_IDictionary_get_IsFixedSize; + VirtualInvokeData System_Collections_IDictionary_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_Remove; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData TryGetValue_1; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Values; + VirtualInvokeData get_Count_2; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct Dictionary_2_System_Type_System_MonoCustomAttrs_AttributeInfo___StaticFields { +}; + +struct Dictionary_2_System_Type_System_MonoCustomAttrs_AttributeInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_System_Type_System_MonoCustomAttrs_AttributeInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_System_Type_System_MonoCustomAttrs_AttributeInfo___VTable vtable; +}; + +struct Console_WindowsConsole { + struct Console_WindowsConsole__Class *klass; + MonitorData *monitor; +}; + +struct Console_WindowsConsole__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Console_WindowsConsole__StaticFields { + bool ctrlHandlerAdded; + struct Console_WindowsConsole_WindowsCancelHandler *cancelHandler; +}; + +struct Console_WindowsConsole__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Console_WindowsConsole__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Console_WindowsConsole__VTable vtable; +}; + +struct Environment { + struct Environment__Class *klass; + MonitorData *monitor; +}; + +struct Environment__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Environment__StaticFields { + struct String *nl; + struct OperatingSystem *os; +}; + +struct Environment__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Environment__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Environment__VTable vtable; +}; + +struct MonoBtlsX509StoreManager { + struct MonoBtlsX509StoreManager__Class *klass; + MonitorData *monitor; +}; + +struct MonoBtlsX509StoreManager__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct MonoBtlsX509StoreManager__StaticFields { + bool initialized; + struct String *machineTrustedRootPath; + struct String *machineIntermediateCAPath; + struct String *machineUntrustedPath; + struct String *userTrustedRootPath; + struct String *userIntermediateCAPath; + struct String *userUntrustedPath; +}; + +struct MonoBtlsX509StoreManager__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MonoBtlsX509StoreManager__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MonoBtlsX509StoreManager__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_IntPtr_Mono_Btls_MonoBtlsX509Lookup_ { + struct Dictionary_2_System_IntPtr_Mono_Btls_MonoBtlsX509Lookup_ *_dictionary; + int32_t _index; + int32_t _version; + struct MonoBtlsX509Lookup *_currentValue; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_IntPtr_Mono_Btls_MonoBtlsX509Lookup___Boxed { + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_IntPtr_Mono_Btls_MonoBtlsX509Lookup___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_IntPtr_Mono_Btls_MonoBtlsX509Lookup_ fields; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_IntPtr_Mono_Btls_MonoBtlsX509Lookup___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_IntPtr_Mono_Btls_MonoBtlsX509Lookup___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_IntPtr_Mono_Btls_MonoBtlsX509Lookup___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_IntPtr_Mono_Btls_MonoBtlsX509Lookup___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_IntPtr_Mono_Btls_MonoBtlsX509Lookup___VTable vtable; +}; + +struct List_1_T_Enumerator_Mono_Btls_MonoBtlsX509LookupMono_ { + struct List_1_Mono_Btls_MonoBtlsX509LookupMono_ *_list; + int32_t _index; + int32_t _version; + struct MonoBtlsX509LookupMono *_current; +}; + +struct List_1_T_Enumerator_Mono_Btls_MonoBtlsX509LookupMono___Boxed { + struct List_1_T_Enumerator_Mono_Btls_MonoBtlsX509LookupMono___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_Mono_Btls_MonoBtlsX509LookupMono_ fields; +}; + +struct List_1_T_Enumerator_Mono_Btls_MonoBtlsX509LookupMono___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_Mono_Btls_MonoBtlsX509LookupMono___StaticFields { +}; + +struct List_1_T_Enumerator_Mono_Btls_MonoBtlsX509LookupMono___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_Mono_Btls_MonoBtlsX509LookupMono___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_Mono_Btls_MonoBtlsX509LookupMono___VTable vtable; +}; + +struct MonoBtlsUtils { + struct MonoBtlsUtils__Class *klass; + MonitorData *monitor; +}; + +struct MonoBtlsUtils__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct MonoBtlsUtils__StaticFields { + struct Byte__Array *emailOid; +}; + +struct MonoBtlsUtils__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MonoBtlsUtils__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MonoBtlsUtils__VTable vtable; +}; + +struct MonoBtlsSsl___VTable { +}; + +struct MonoBtlsSsl___StaticFields { +}; + +struct MonoBtlsSsl___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MonoBtlsSsl___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MonoBtlsSsl___VTable vtable; +}; + +struct MonoBtlsSslCtx___VTable { +}; + +struct MonoBtlsSslCtx___StaticFields { +}; + +struct MonoBtlsSslCtx___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MonoBtlsSslCtx___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MonoBtlsSslCtx___VTable vtable; +}; + +struct MonoBtlsBio___VTable { +}; + +struct MonoBtlsBio___StaticFields { +}; + +struct MonoBtlsBio___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MonoBtlsBio___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MonoBtlsBio___VTable vtable; +}; + +struct X509CertificateImplBtls___VTable { +}; + +struct X509CertificateImplBtls___StaticFields { +}; + +struct X509CertificateImplBtls___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct X509CertificateImplBtls___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct X509CertificateImplBtls___VTable vtable; +}; + +struct X509Certificate2___VTable { +}; + +struct X509Certificate2___StaticFields { +}; + +struct X509Certificate2___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct X509Certificate2___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct X509Certificate2___VTable vtable; +}; + +struct IOrderedEnumerable_1_Crosstales_BWF_Data_Source_ { + struct IOrderedEnumerable_1_Crosstales_BWF_Data_Source___Class *klass; + MonitorData *monitor; +}; + +struct IOrderedEnumerable_1_Crosstales_BWF_Data_Source___VTable { + VirtualInvokeData CreateOrderedEnumerable; +}; + +struct IOrderedEnumerable_1_Crosstales_BWF_Data_Source___StaticFields { +}; + +struct IOrderedEnumerable_1_Crosstales_BWF_Data_Source___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IOrderedEnumerable_1_Crosstales_BWF_Data_Source___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IOrderedEnumerable_1_Crosstales_BWF_Data_Source___VTable vtable; +}; + +struct SceneManager { + struct SceneManager__Class *klass; + MonitorData *monitor; +}; + +struct SceneManager__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct SceneManager__StaticFields { + bool s_AllowLoadScene; + struct UnityAction_2_UnityEngine_SceneManagement_Scene_UnityEngine_SceneManagement_LoadSceneMode_ *sceneLoaded; + struct UnityAction_1_UnityEngine_SceneManagement_Scene_ *sceneUnloaded; + struct UnityAction_2_UnityEngine_SceneManagement_Scene_UnityEngine_SceneManagement_Scene_ *activeSceneChanged; +}; + +struct SceneManager__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SceneManager__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SceneManager__VTable vtable; +}; + +struct FormatterServices { + struct FormatterServices__Class *klass; + MonitorData *monitor; +}; + +struct FormatterServices__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct FormatterServices__StaticFields { + struct ConcurrentDictionary_2_System_Runtime_Serialization_MemberHolder_System_Reflection_MemberInfo_ *m_MemberInfoTable; + bool unsafeTypeForwardersIsEnabled; + bool unsafeTypeForwardersIsEnabledInitialized; + struct Type__Array *advancedTypes; + struct Binder *s_binder; +}; + +struct FormatterServices__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct FormatterServices__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct FormatterServices__VTable vtable; +}; + +struct Dns { + struct Dns__Class *klass; + MonitorData *monitor; +}; + +struct Dns__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Dns__StaticFields { +}; + +struct Dns__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dns__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dns__VTable vtable; +}; + +struct IOrderedEnumerable_1_System_String_ { + struct IOrderedEnumerable_1_System_String___Class *klass; + MonitorData *monitor; +}; + +struct IOrderedEnumerable_1_System_String___VTable { + VirtualInvokeData CreateOrderedEnumerable; +}; + +struct IOrderedEnumerable_1_System_String___StaticFields { +}; + +struct IOrderedEnumerable_1_System_String___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IOrderedEnumerable_1_System_String___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IOrderedEnumerable_1_System_String___VTable vtable; +}; + +struct MemoryProfiler { + struct MemoryProfiler__Class *klass; + MonitorData *monitor; +}; + +struct Action_2_String_Boolean___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_2_String_Boolean_ { + struct Action_2_String_Boolean___Class *klass; + MonitorData *monitor; + struct Action_2_String_Boolean___Fields fields; +}; + +struct Action_3_String_Boolean_UnityEngine_Profiling_Experimental_DebugScreenCapture___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_3_String_Boolean_UnityEngine_Profiling_Experimental_DebugScreenCapture_ { + struct Action_3_String_Boolean_UnityEngine_Profiling_Experimental_DebugScreenCapture___Class *klass; + MonitorData *monitor; + struct Action_3_String_Boolean_UnityEngine_Profiling_Experimental_DebugScreenCapture___Fields fields; +}; + +struct Action_1_UnityEngine_Profiling_Memory_Experimental_MetaData___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_1_UnityEngine_Profiling_Memory_Experimental_MetaData_ { + struct Action_1_UnityEngine_Profiling_Memory_Experimental_MetaData___Class *klass; + MonitorData *monitor; + struct Action_1_UnityEngine_Profiling_Memory_Experimental_MetaData___Fields fields; +}; + +struct Action_2_String_Boolean___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_2_String_Boolean___StaticFields { +}; + +struct Action_2_String_Boolean___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_2_String_Boolean___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_2_String_Boolean___VTable vtable; +}; + +struct Action_3_String_Boolean_UnityEngine_Profiling_Experimental_DebugScreenCapture___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_3_String_Boolean_UnityEngine_Profiling_Experimental_DebugScreenCapture___StaticFields { +}; + +struct Action_3_String_Boolean_UnityEngine_Profiling_Experimental_DebugScreenCapture___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_3_String_Boolean_UnityEngine_Profiling_Experimental_DebugScreenCapture___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_3_String_Boolean_UnityEngine_Profiling_Experimental_DebugScreenCapture___VTable vtable; +}; + +struct Action_1_UnityEngine_Profiling_Memory_Experimental_MetaData___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_1_UnityEngine_Profiling_Memory_Experimental_MetaData___StaticFields { +}; + +struct Action_1_UnityEngine_Profiling_Memory_Experimental_MetaData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_1_UnityEngine_Profiling_Memory_Experimental_MetaData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_1_UnityEngine_Profiling_Memory_Experimental_MetaData___VTable vtable; +}; + +struct MemoryProfiler__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct MemoryProfiler__StaticFields { + struct Action_2_String_Boolean_ *m_SnapshotFinished; + struct Action_3_String_Boolean_UnityEngine_Profiling_Experimental_DebugScreenCapture_ *m_SaveScreenshotToDisk; + struct Action_1_UnityEngine_Profiling_Memory_Experimental_MetaData_ *createMetaData; +}; + +struct MemoryProfiler__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MemoryProfiler__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MemoryProfiler__VTable vtable; +}; + +struct PhraseRecognitionSystem { + struct PhraseRecognitionSystem__Class *klass; + MonitorData *monitor; +}; + +struct PhraseRecognitionSystem__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct PhraseRecognitionSystem__StaticFields { + struct PhraseRecognitionSystem_ErrorDelegate *OnError; + struct PhraseRecognitionSystem_StatusDelegate *OnStatusChanged; +}; + +struct PhraseRecognitionSystem__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PhraseRecognitionSystem__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PhraseRecognitionSystem__VTable vtable; +}; + +struct SpriteAtlasManager { + struct SpriteAtlasManager__Class *klass; + MonitorData *monitor; +}; + +struct Action_2_String_Action_1_UnityEngine_U2D_SpriteAtlas___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_2_String_Action_1_UnityEngine_U2D_SpriteAtlas_ { + struct Action_2_String_Action_1_UnityEngine_U2D_SpriteAtlas___Class *klass; + MonitorData *monitor; + struct Action_2_String_Action_1_UnityEngine_U2D_SpriteAtlas___Fields fields; +}; + +struct Action_2_String_Action_1_UnityEngine_U2D_SpriteAtlas___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_2_String_Action_1_UnityEngine_U2D_SpriteAtlas___StaticFields { +}; + +struct Action_2_String_Action_1_UnityEngine_U2D_SpriteAtlas___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_2_String_Action_1_UnityEngine_U2D_SpriteAtlas___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_2_String_Action_1_UnityEngine_U2D_SpriteAtlas___VTable vtable; +}; + +struct SpriteAtlasManager__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct SpriteAtlasManager__StaticFields { + struct Action_2_String_Action_1_UnityEngine_U2D_SpriteAtlas_ *atlasRequested; + struct Action_1_UnityEngine_U2D_SpriteAtlas_ *atlasRegistered; +}; + +struct SpriteAtlasManager__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SpriteAtlasManager__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SpriteAtlasManager__VTable vtable; +}; + +struct SystemClock { + struct SystemClock__Class *klass; + MonitorData *monitor; +}; + +struct SystemClock__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct SystemClock__StaticFields { + struct DateTime s_Epoch; +}; + +struct SystemClock__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SystemClock__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SystemClock__VTable vtable; +}; + +struct List_1_T_Enumerator_System_Threading_IAsyncLocal_ { + struct List_1_System_Threading_IAsyncLocal_ *_list; + int32_t _index; + int32_t _version; + struct IAsyncLocal *_current; +}; + +struct List_1_T_Enumerator_System_Threading_IAsyncLocal___Boxed { + struct List_1_T_Enumerator_System_Threading_IAsyncLocal___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_System_Threading_IAsyncLocal_ fields; +}; + +struct List_1_T_Enumerator_System_Threading_IAsyncLocal___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_System_Threading_IAsyncLocal___StaticFields { +}; + +struct List_1_T_Enumerator_System_Threading_IAsyncLocal___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_System_Threading_IAsyncLocal___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_System_Threading_IAsyncLocal___VTable vtable; +}; + +struct IDictionary_2_System_Threading_IAsyncLocal_System_Object_ { + struct IDictionary_2_System_Threading_IAsyncLocal_System_Object___Class *klass; + MonitorData *monitor; +}; + +struct IDictionary_2_System_Threading_IAsyncLocal_System_Object___VTable { + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData get_Keys; + VirtualInvokeData get_Values; + VirtualInvokeData ContainsKey; + VirtualInvokeData Add; + VirtualInvokeData Remove; + VirtualInvokeData TryGetValue; +}; + +struct IDictionary_2_System_Threading_IAsyncLocal_System_Object___StaticFields { +}; + +struct IDictionary_2_System_Threading_IAsyncLocal_System_Object___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IDictionary_2_System_Threading_IAsyncLocal_System_Object___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IDictionary_2_System_Threading_IAsyncLocal_System_Object___VTable vtable; +}; + +struct ConfiguredTaskAwaitable_1_System_Threading_Tasks_Task_ { + struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Threading_Tasks_Task_ m_configuredTaskAwaiter; +}; + +struct ConfiguredTaskAwaitable_1_System_Threading_Tasks_Task___Boxed { + struct ConfiguredTaskAwaitable_1_System_Threading_Tasks_Task___Class *klass; + MonitorData *monitor; + struct ConfiguredTaskAwaitable_1_System_Threading_Tasks_Task_ fields; +}; + +struct ConfiguredTaskAwaitable_1_System_Threading_Tasks_Task___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ConfiguredTaskAwaitable_1_System_Threading_Tasks_Task___StaticFields { +}; + +struct ConfiguredTaskAwaitable_1_System_Threading_Tasks_Task___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ConfiguredTaskAwaitable_1_System_Threading_Tasks_Task___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ConfiguredTaskAwaitable_1_System_Threading_Tasks_Task___VTable vtable; +}; + +struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Threading_Tasks_Task__1__VTable { +}; + +struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Threading_Tasks_Task__1__StaticFields { +}; + +struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Threading_Tasks_Task__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Threading_Tasks_Task__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Threading_Tasks_Task__1__VTable vtable; +}; + +struct __declspec(align(8)) LowLevelList_1_System_Exception___Fields { + struct Exception__Array *_items; + int32_t _size; + int32_t _version; +}; + +struct LowLevelList_1_System_Exception_ { + struct LowLevelList_1_System_Exception___Class *klass; + MonitorData *monitor; + struct LowLevelList_1_System_Exception___Fields fields; +}; + +struct LowLevelList_1_System_Exception___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData Remove; + VirtualInvokeData RemoveAt; +}; + +struct LowLevelList_1_System_Exception___StaticFields { + struct Exception__Array *s_emptyArray; +}; + +struct LowLevelList_1_System_Exception___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct LowLevelList_1_System_Exception___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct LowLevelList_1_System_Exception___VTable vtable; +}; + +struct LowLevelListWithIList_1_System_Exception___Fields { + struct LowLevelList_1_System_Exception___Fields _; +}; + +struct LowLevelListWithIList_1_System_Exception_ { + struct LowLevelListWithIList_1_System_Exception___Class *klass; + MonitorData *monitor; + struct LowLevelListWithIList_1_System_Exception___Fields fields; +}; + +struct LowLevelListWithIList_1_System_Exception___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData Remove; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Item_1; + VirtualInvokeData set_Item_1; + VirtualInvokeData IndexOf_1; + VirtualInvokeData Insert_1; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add_1; + VirtualInvokeData Clear_1; + VirtualInvokeData Contains_1; + VirtualInvokeData CopyTo_1; + VirtualInvokeData Remove_1; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; +}; + +struct LowLevelListWithIList_1_System_Exception___StaticFields { +}; + +struct LowLevelListWithIList_1_System_Exception___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct LowLevelListWithIList_1_System_Exception___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct LowLevelListWithIList_1_System_Exception___VTable vtable; +}; + +struct KeyValuePair_2_System_Byte_System_Text_Encoding_ { + struct Byte__Array *key; + struct Encoding *value; +}; + +struct KeyValuePair_2_System_Byte_System_Text_Encoding___Boxed { + struct KeyValuePair_2_System_Byte_System_Text_Encoding___Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_System_Byte_System_Text_Encoding_ fields; +}; + +struct KeyValuePair_2_System_Byte_System_Text_Encoding___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct KeyValuePair_2_System_Byte_System_Text_Encoding___StaticFields { +}; + +struct KeyValuePair_2_System_Byte_System_Text_Encoding___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_Byte_System_Text_Encoding___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_Byte_System_Text_Encoding___VTable vtable; +}; + +struct TextAsset_EncodingUtility { + struct TextAsset_EncodingUtility__Class *klass; + MonitorData *monitor; +}; + +struct KeyValuePair_2_System_Byte_System_Text_Encoding___Array { + struct KeyValuePair_2_System_Byte_System_Text_Encoding___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct KeyValuePair_2_System_Byte_System_Text_Encoding_ vector[32]; +}; + +struct KeyValuePair_2_System_Byte_System_Text_Encoding___Array__VTable { +}; + +struct KeyValuePair_2_System_Byte_System_Text_Encoding___Array__StaticFields { +}; + +struct KeyValuePair_2_System_Byte_System_Text_Encoding___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_Byte_System_Text_Encoding___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_Byte_System_Text_Encoding___Array__VTable vtable; +}; + +struct TextAsset_EncodingUtility__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct TextAsset_EncodingUtility__StaticFields { + struct KeyValuePair_2_System_Byte_System_Text_Encoding___Array *encodingLookup; + struct Encoding *targetEncoding; +}; + +struct TextAsset_EncodingUtility__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TextAsset_EncodingUtility__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TextAsset_EncodingUtility__VTable vtable; +}; + +struct StackTraceUtility { + struct StackTraceUtility__Class *klass; + MonitorData *monitor; +}; + +struct StackTraceUtility__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct StackTraceUtility__StaticFields { + struct String *projectFolder; +}; + +struct StackTraceUtility__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StackTraceUtility__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StackTraceUtility__VTable vtable; +}; + +struct IPointerEventInternal { + struct IPointerEventInternal__Class *klass; + MonitorData *monitor; +}; + +struct IPointerEventInternal__VTable { + VirtualInvokeData get_triggeredByOS; + VirtualInvokeData set_triggeredByOS; + VirtualInvokeData get_recomputeTopElementUnderPointer; + VirtualInvokeData set_recomputeTopElementUnderPointer; +}; + +struct IPointerEventInternal__StaticFields { +}; + +struct IPointerEventInternal__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IPointerEventInternal__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IPointerEventInternal__VTable vtable; +}; + +struct IMouseEventInternal { + struct IMouseEventInternal__Class *klass; + MonitorData *monitor; +}; + +struct IMouseEventInternal__VTable { + VirtualInvokeData get_triggeredByOS; + VirtualInvokeData set_triggeredByOS; + VirtualInvokeData get_recomputeTopElementUnderMouse; + VirtualInvokeData set_recomputeTopElementUnderMouse; + VirtualInvokeData get_sourcePointerEvent; + VirtualInvokeData set_sourcePointerEvent; +}; + +struct IMouseEventInternal__StaticFields { +}; + +struct IMouseEventInternal__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IMouseEventInternal__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IMouseEventInternal__VTable vtable; +}; + +struct AttributeHelperEngine { + struct AttributeHelperEngine__Class *klass; + MonitorData *monitor; +}; + +struct DisallowMultipleComponent__Array { + struct DisallowMultipleComponent__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct DisallowMultipleComponent *vector[32]; +}; + +struct ExecuteInEditMode__Array { + struct ExecuteInEditMode__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct ExecuteInEditMode *vector[32]; +}; + +struct DisallowMultipleComponent__Array__VTable { +}; + +struct DisallowMultipleComponent__Array__StaticFields { +}; + +struct DisallowMultipleComponent__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DisallowMultipleComponent__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DisallowMultipleComponent__Array__VTable vtable; +}; + +struct ExecuteInEditMode__Array__VTable { +}; + +struct ExecuteInEditMode__Array__StaticFields { +}; + +struct ExecuteInEditMode__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ExecuteInEditMode__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ExecuteInEditMode__Array__VTable vtable; +}; + +struct AttributeHelperEngine__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct AttributeHelperEngine__StaticFields { + struct DisallowMultipleComponent__Array *_disallowMultipleComponentArray; + struct ExecuteInEditMode__Array *_executeInEditModeArray; + struct RequireComponent__Array *_requireComponentArray; +}; + +struct AttributeHelperEngine__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct AttributeHelperEngine__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct AttributeHelperEngine__VTable vtable; +}; + +struct List_1_T_Enumerator_System_ModifierSpec_ { + struct List_1_System_ModifierSpec_ *_list; + int32_t _index; + int32_t _version; + struct ModifierSpec *_current; +}; + +struct List_1_T_Enumerator_System_ModifierSpec___Boxed { + struct List_1_T_Enumerator_System_ModifierSpec___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_System_ModifierSpec_ fields; +}; + +struct List_1_T_Enumerator_System_ModifierSpec___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_System_ModifierSpec___StaticFields { +}; + +struct List_1_T_Enumerator_System_ModifierSpec___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_System_ModifierSpec___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_System_ModifierSpec___VTable vtable; +}; + +struct List_1_T_Enumerator_System_TypeIdentifier_ { + struct List_1_System_TypeIdentifier_ *_list; + int32_t _index; + int32_t _version; + struct TypeIdentifier *_current; +}; + +struct List_1_T_Enumerator_System_TypeIdentifier___Boxed { + struct List_1_T_Enumerator_System_TypeIdentifier___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_System_TypeIdentifier_ fields; +}; + +struct List_1_T_Enumerator_System_TypeIdentifier___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_System_TypeIdentifier___StaticFields { +}; + +struct List_1_T_Enumerator_System_TypeIdentifier___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_System_TypeIdentifier___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_System_TypeIdentifier___VTable vtable; +}; + +struct UnsafeNclNativeMethods_HttpApi_HTTP_RESPONSE_HEADER_ID { + struct UnsafeNclNativeMethods_HttpApi_HTTP_RESPONSE_HEADER_ID__Class *klass; + MonitorData *monitor; +}; + +struct UnsafeNclNativeMethods_HttpApi_HTTP_RESPONSE_HEADER_ID__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct UnsafeNclNativeMethods_HttpApi_HTTP_RESPONSE_HEADER_ID__StaticFields { + struct Hashtable *m_Hashtable; +}; + +struct UnsafeNclNativeMethods_HttpApi_HTTP_RESPONSE_HEADER_ID__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UnsafeNclNativeMethods_HttpApi_HTTP_RESPONSE_HEADER_ID__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UnsafeNclNativeMethods_HttpApi_HTTP_RESPONSE_HEADER_ID__VTable vtable; +}; + +struct UnsafeNclNativeMethods_HttpApi_HTTP_REQUEST_HEADER_ID { + struct UnsafeNclNativeMethods_HttpApi_HTTP_REQUEST_HEADER_ID__Class *klass; + MonitorData *monitor; +}; + +struct UnsafeNclNativeMethods_HttpApi_HTTP_REQUEST_HEADER_ID__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct UnsafeNclNativeMethods_HttpApi_HTTP_REQUEST_HEADER_ID__StaticFields { + struct String__Array *m_Strings; +}; + +struct UnsafeNclNativeMethods_HttpApi_HTTP_REQUEST_HEADER_ID__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UnsafeNclNativeMethods_HttpApi_HTTP_REQUEST_HEADER_ID__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UnsafeNclNativeMethods_HttpApi_HTTP_REQUEST_HEADER_ID__VTable vtable; +}; + +struct WebExceptionMapping { + struct WebExceptionMapping__Class *klass; + MonitorData *monitor; +}; + +struct WebExceptionMapping__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct WebExceptionMapping__StaticFields { + struct String__Array *s_Mapping; +}; + +struct WebExceptionMapping__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct WebExceptionMapping__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct WebExceptionMapping__VTable vtable; +}; + +struct List_1_T_Enumerator_System_Net_IPAddress_ { + struct List_1_System_Net_IPAddress_ *_list; + int32_t _index; + int32_t _version; + struct IPAddress *_current; +}; + +struct List_1_T_Enumerator_System_Net_IPAddress___Boxed { + struct List_1_T_Enumerator_System_Net_IPAddress___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_System_Net_IPAddress_ fields; +}; + +struct __declspec(align(8)) List_1_System_Net_IPAddress___Fields { + struct IPAddress__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_System_Net_IPAddress_ { + struct List_1_System_Net_IPAddress___Class *klass; + MonitorData *monitor; + struct List_1_System_Net_IPAddress___Fields fields; +}; + +struct List_1_System_Net_IPAddress___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_System_Net_IPAddress___StaticFields { + struct IPAddress__Array *s_emptyArray; +}; + +struct List_1_System_Net_IPAddress___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_System_Net_IPAddress___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_System_Net_IPAddress___VTable vtable; +}; + +struct List_1_T_Enumerator_System_Net_IPAddress___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_System_Net_IPAddress___StaticFields { +}; + +struct List_1_T_Enumerator_System_Net_IPAddress___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_System_Net_IPAddress___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_System_Net_IPAddress___VTable vtable; +}; + +struct NclUtilities { + struct NclUtilities__Class *klass; + MonitorData *monitor; +}; + +struct NclUtilities__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct NclUtilities__StaticFields { + struct ContextCallback *s_ContextRelativeDemandCallback; + struct IPAddress__Array *_LocalAddresses; + struct Object *_LocalAddressesLock; + struct String *_LocalDomainName; +}; + +struct NclUtilities__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NclUtilities__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NclUtilities__VTable vtable; +}; + +struct NclConstants { + struct NclConstants__Class *klass; + MonitorData *monitor; +}; + +struct NclConstants__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct NclConstants__StaticFields { + struct Object *Sentinel; + struct Object__Array *EmptyObjectArray; + struct Uri__Array *EmptyUriArray; + struct Byte__Array *CRLF; + struct Byte__Array *ChunkTerminator; +}; + +struct NclConstants__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NclConstants__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NclConstants__VTable vtable; +}; + +struct ValidationHelper { + struct ValidationHelper__Class *klass; + MonitorData *monitor; +}; + +struct ValidationHelper__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ValidationHelper__StaticFields { + struct String__Array *EmptyArray; + struct Char__Array *InvalidMethodChars; + struct Char__Array *InvalidParamChars; +}; + +struct ValidationHelper__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ValidationHelper__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ValidationHelper__VTable vtable; +}; + +struct RendezvousAwaitable_1_System_IAsyncResult__1__VTable { +}; + +struct RendezvousAwaitable_1_System_IAsyncResult__1__StaticFields { +}; + +struct RendezvousAwaitable_1_System_IAsyncResult__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RendezvousAwaitable_1_System_IAsyncResult__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RendezvousAwaitable_1_System_IAsyncResult__1__VTable vtable; +}; + +struct Func_2_System_Text_RegularExpressions_Regex_System_Collections_Generic_IEnumerable_1___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_2_System_Text_RegularExpressions_Regex_System_Collections_Generic_IEnumerable_1_ { + struct Func_2_System_Text_RegularExpressions_Regex_System_Collections_Generic_IEnumerable_1___Class *klass; + MonitorData *monitor; + struct Func_2_System_Text_RegularExpressions_Regex_System_Collections_Generic_IEnumerable_1___Fields fields; +}; + +struct Func_2_System_Text_RegularExpressions_Regex_System_Collections_Generic_IEnumerable_1___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_2_System_Text_RegularExpressions_Regex_System_Collections_Generic_IEnumerable_1___StaticFields { +}; + +struct Func_2_System_Text_RegularExpressions_Regex_System_Collections_Generic_IEnumerable_1___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_2_System_Text_RegularExpressions_Regex_System_Collections_Generic_IEnumerable_1___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_2_System_Text_RegularExpressions_Regex_System_Collections_Generic_IEnumerable_1___VTable vtable; +}; + +struct IEnumerable_1_f_AnonymousType7_2_ { + struct IEnumerable_1_f_AnonymousType7_2___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_f_AnonymousType7_2___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_f_AnonymousType7_2___StaticFields { +}; + +struct IEnumerable_1_f_AnonymousType7_2___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_f_AnonymousType7_2___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_f_AnonymousType7_2___VTable vtable; +}; + +struct IEnumerable_1_f_AnonymousType6_2_ { + struct IEnumerable_1_f_AnonymousType6_2___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_f_AnonymousType6_2___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_f_AnonymousType6_2___StaticFields { +}; + +struct IEnumerable_1_f_AnonymousType6_2___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_f_AnonymousType6_2___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_f_AnonymousType6_2___VTable vtable; +}; + +struct IEnumerable_1_Crosstales_BWF_Provider_DomainProvider_ { + struct IEnumerable_1_Crosstales_BWF_Provider_DomainProvider___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_Crosstales_BWF_Provider_DomainProvider___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_Crosstales_BWF_Provider_DomainProvider___StaticFields { +}; + +struct IEnumerable_1_Crosstales_BWF_Provider_DomainProvider___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_Crosstales_BWF_Provider_DomainProvider___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_Crosstales_BWF_Provider_DomainProvider___VTable vtable; +}; + +struct List_1_T_Enumerator_Crosstales_BWF_Provider_DomainProvider_ { + struct List_1_Crosstales_BWF_Provider_DomainProvider_ *_list; + int32_t _index; + int32_t _version; + struct DomainProvider *_current; +}; + +struct List_1_T_Enumerator_Crosstales_BWF_Provider_DomainProvider___Boxed { + struct List_1_T_Enumerator_Crosstales_BWF_Provider_DomainProvider___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_Crosstales_BWF_Provider_DomainProvider_ fields; +}; + +struct List_1_T_Enumerator_Crosstales_BWF_Provider_DomainProvider___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_Crosstales_BWF_Provider_DomainProvider___StaticFields { +}; + +struct List_1_T_Enumerator_Crosstales_BWF_Provider_DomainProvider___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_Crosstales_BWF_Provider_DomainProvider___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_Crosstales_BWF_Provider_DomainProvider___VTable vtable; +}; + +struct IEnumerable_1_KeyValuePair_2_System_String_Crosstales_BWF_Data_Source_ { + struct IEnumerable_1_KeyValuePair_2_System_String_Crosstales_BWF_Data_Source___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_KeyValuePair_2_System_String_Crosstales_BWF_Data_Source___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_KeyValuePair_2_System_String_Crosstales_BWF_Data_Source___StaticFields { +}; + +struct IEnumerable_1_KeyValuePair_2_System_String_Crosstales_BWF_Data_Source___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_KeyValuePair_2_System_String_Crosstales_BWF_Data_Source___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_KeyValuePair_2_System_String_Crosstales_BWF_Data_Source___VTable vtable; +}; + +struct IOrderedEnumerable_1_System_Collections_Generic_KeyValuePair_2__1 { + struct IOrderedEnumerable_1_System_Collections_Generic_KeyValuePair_2__1__Class *klass; + MonitorData *monitor; +}; + +struct IOrderedEnumerable_1_System_Collections_Generic_KeyValuePair_2__1__VTable { + VirtualInvokeData CreateOrderedEnumerable; +}; + +struct IOrderedEnumerable_1_System_Collections_Generic_KeyValuePair_2__1__StaticFields { +}; + +struct IOrderedEnumerable_1_System_Collections_Generic_KeyValuePair_2__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IOrderedEnumerable_1_System_Collections_Generic_KeyValuePair_2__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IOrderedEnumerable_1_System_Collections_Generic_KeyValuePair_2__1__VTable vtable; +}; + +struct IEnumerable_1_f_AnonymousType3_2_ { + struct IEnumerable_1_f_AnonymousType3_2___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_f_AnonymousType3_2___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_f_AnonymousType3_2___StaticFields { +}; + +struct IEnumerable_1_f_AnonymousType3_2___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_f_AnonymousType3_2___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_f_AnonymousType3_2___VTable vtable; +}; + +struct IEnumerable_1_f_AnonymousType5_2_ { + struct IEnumerable_1_f_AnonymousType5_2___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_f_AnonymousType5_2___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_f_AnonymousType5_2___StaticFields { +}; + +struct IEnumerable_1_f_AnonymousType5_2___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_f_AnonymousType5_2___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_f_AnonymousType5_2___VTable vtable; +}; + +struct IEnumerable_1_f_AnonymousType4_2_ { + struct IEnumerable_1_f_AnonymousType4_2___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_f_AnonymousType4_2___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_f_AnonymousType4_2___StaticFields { +}; + +struct IEnumerable_1_f_AnonymousType4_2___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_f_AnonymousType4_2___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_f_AnonymousType4_2___VTable vtable; +}; + +struct IEnumerable_1_f_AnonymousType2_2_ { + struct IEnumerable_1_f_AnonymousType2_2___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_f_AnonymousType2_2___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_f_AnonymousType2_2___StaticFields { +}; + +struct IEnumerable_1_f_AnonymousType2_2___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_f_AnonymousType2_2___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_f_AnonymousType2_2___VTable vtable; +}; + +struct IEnumerable_1_System_Text_RegularExpressions_MatchCollection_ { + struct IEnumerable_1_System_Text_RegularExpressions_MatchCollection___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_System_Text_RegularExpressions_MatchCollection___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_System_Text_RegularExpressions_MatchCollection___StaticFields { +}; + +struct IEnumerable_1_System_Text_RegularExpressions_MatchCollection___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_System_Text_RegularExpressions_MatchCollection___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_System_Text_RegularExpressions_MatchCollection___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_List_1_System_Text_RegularExpressions_Regex_ { + struct Dictionary_2_System_String_List_1_System_Text_RegularExpressions_Regex_ *_dictionary; + int32_t _index; + int32_t _version; + struct List_1_System_Text_RegularExpressions_Regex_ *_currentValue; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_List_1_System_Text_RegularExpressions_Regex___Boxed { + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_List_1_System_Text_RegularExpressions_Regex___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_List_1_System_Text_RegularExpressions_Regex_ fields; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_List_1_System_Text_RegularExpressions_Regex___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_List_1_System_Text_RegularExpressions_Regex___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_List_1_System_Text_RegularExpressions_Regex___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_List_1_System_Text_RegularExpressions_Regex___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_List_1_System_Text_RegularExpressions_Regex___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_List_1_System_String_ { + struct Dictionary_2_System_String_List_1_System_String_ *_dictionary; + int32_t _index; + int32_t _version; + struct List_1_System_String_ *_currentValue; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_List_1_System_String___Boxed { + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_List_1_System_String___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_List_1_System_String_ fields; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_List_1_System_String___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_List_1_System_String___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_List_1_System_String___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_List_1_System_String___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_List_1_System_String___VTable vtable; +}; + +struct List_1_T_Enumerator_System_Text_RegularExpressions_Regex_ { + struct List_1_System_Text_RegularExpressions_Regex_ *_list; + int32_t _index; + int32_t _version; + struct Regex *_current; +}; + +struct List_1_T_Enumerator_System_Text_RegularExpressions_Regex___Boxed { + struct List_1_T_Enumerator_System_Text_RegularExpressions_Regex___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_System_Text_RegularExpressions_Regex_ fields; +}; + +struct List_1_T_Enumerator_System_Text_RegularExpressions_Regex___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_System_Text_RegularExpressions_Regex___StaticFields { +}; + +struct List_1_T_Enumerator_System_Text_RegularExpressions_Regex___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_System_Text_RegularExpressions_Regex___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_System_Text_RegularExpressions_Regex___VTable vtable; +}; + +struct Func_2_System_Collections_Generic_List_1_Boolean___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_2_System_Collections_Generic_List_1_Boolean_ { + struct Func_2_System_Collections_Generic_List_1_Boolean___Class *klass; + MonitorData *monitor; + struct Func_2_System_Collections_Generic_List_1_Boolean___Fields fields; +}; + +struct Func_2_System_Collections_Generic_List_1_Boolean___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_2_System_Collections_Generic_List_1_Boolean___StaticFields { +}; + +struct Func_2_System_Collections_Generic_List_1_Boolean___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_2_System_Collections_Generic_List_1_Boolean___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_2_System_Collections_Generic_List_1_Boolean___VTable vtable; +}; + +struct Func_2_System_Text_RegularExpressions_Regex_Boolean___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_2_System_Text_RegularExpressions_Regex_Boolean_ { + struct Func_2_System_Text_RegularExpressions_Regex_Boolean___Class *klass; + MonitorData *monitor; + struct Func_2_System_Text_RegularExpressions_Regex_Boolean___Fields fields; +}; + +struct Func_2_System_Text_RegularExpressions_Regex_Boolean___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_2_System_Text_RegularExpressions_Regex_Boolean___StaticFields { +}; + +struct Func_2_System_Text_RegularExpressions_Regex_Boolean___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_2_System_Text_RegularExpressions_Regex_Boolean___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_2_System_Text_RegularExpressions_Regex_Boolean___VTable vtable; +}; + +struct IEnumerable_1_f_AnonymousType1_2_ { + struct IEnumerable_1_f_AnonymousType1_2___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_f_AnonymousType1_2___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_f_AnonymousType1_2___StaticFields { +}; + +struct IEnumerable_1_f_AnonymousType1_2___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_f_AnonymousType1_2___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_f_AnonymousType1_2___VTable vtable; +}; + +struct IEnumerable_1_f_AnonymousType0_2__1 { + struct IEnumerable_1_f_AnonymousType0_2__1__Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_f_AnonymousType0_2__1__VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_f_AnonymousType0_2__1__StaticFields { +}; + +struct IEnumerable_1_f_AnonymousType0_2__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_f_AnonymousType0_2__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_f_AnonymousType0_2__1__VTable vtable; +}; + +struct IEnumerable_1_Crosstales_BWF_Provider_BadWordProvider_ { + struct IEnumerable_1_Crosstales_BWF_Provider_BadWordProvider___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_Crosstales_BWF_Provider_BadWordProvider___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_Crosstales_BWF_Provider_BadWordProvider___StaticFields { +}; + +struct IEnumerable_1_Crosstales_BWF_Provider_BadWordProvider___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_Crosstales_BWF_Provider_BadWordProvider___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_Crosstales_BWF_Provider_BadWordProvider___VTable vtable; +}; + +struct List_1_T_Enumerator_Crosstales_BWF_Provider_BadWordProvider_ { + struct List_1_Crosstales_BWF_Provider_BadWordProvider_ *_list; + int32_t _index; + int32_t _version; + struct BadWordProvider *_current; +}; + +struct List_1_T_Enumerator_Crosstales_BWF_Provider_BadWordProvider___Boxed { + struct List_1_T_Enumerator_Crosstales_BWF_Provider_BadWordProvider___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_Crosstales_BWF_Provider_BadWordProvider_ fields; +}; + +struct List_1_T_Enumerator_Crosstales_BWF_Provider_BadWordProvider___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_Crosstales_BWF_Provider_BadWordProvider___StaticFields { +}; + +struct List_1_T_Enumerator_Crosstales_BWF_Provider_BadWordProvider___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_Crosstales_BWF_Provider_BadWordProvider___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_Crosstales_BWF_Provider_BadWordProvider___VTable vtable; +}; + +struct IDictionary_2_System_String_System_Text_RegularExpressions_Regex_ { + struct IDictionary_2_System_String_System_Text_RegularExpressions_Regex___Class *klass; + MonitorData *monitor; +}; + +struct IDictionary_2_System_String_System_Text_RegularExpressions_Regex___VTable { + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData get_Keys; + VirtualInvokeData get_Values; + VirtualInvokeData ContainsKey; + VirtualInvokeData Add; + VirtualInvokeData Remove; + VirtualInvokeData TryGetValue; +}; + +struct IDictionary_2_System_String_System_Text_RegularExpressions_Regex___StaticFields { +}; + +struct IDictionary_2_System_String_System_Text_RegularExpressions_Regex___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IDictionary_2_System_String_System_Text_RegularExpressions_Regex___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IDictionary_2_System_String_System_Text_RegularExpressions_Regex___VTable vtable; +}; + +struct IDictionary_2_System_String_List_1_System_String_ { + struct IDictionary_2_System_String_List_1_System_String___Class *klass; + MonitorData *monitor; +}; + +struct IDictionary_2_System_String_List_1_System_String___VTable { + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData get_Keys; + VirtualInvokeData get_Values; + VirtualInvokeData ContainsKey; + VirtualInvokeData Add; + VirtualInvokeData Remove; + VirtualInvokeData TryGetValue; +}; + +struct IDictionary_2_System_String_List_1_System_String___StaticFields { +}; + +struct IDictionary_2_System_String_List_1_System_String___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IDictionary_2_System_String_List_1_System_String___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IDictionary_2_System_String_List_1_System_String___VTable vtable; +}; + +struct IDictionary_2_System_String_List_1_System_Text_RegularExpressions_Regex_ { + struct IDictionary_2_System_String_List_1_System_Text_RegularExpressions_Regex___Class *klass; + MonitorData *monitor; +}; + +struct IDictionary_2_System_String_List_1_System_Text_RegularExpressions_Regex___VTable { + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData get_Keys; + VirtualInvokeData get_Values; + VirtualInvokeData ContainsKey; + VirtualInvokeData Add; + VirtualInvokeData Remove; + VirtualInvokeData TryGetValue; +}; + +struct IDictionary_2_System_String_List_1_System_Text_RegularExpressions_Regex___StaticFields { +}; + +struct IDictionary_2_System_String_List_1_System_Text_RegularExpressions_Regex___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IDictionary_2_System_String_List_1_System_Text_RegularExpressions_Regex___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IDictionary_2_System_String_List_1_System_Text_RegularExpressions_Regex___VTable vtable; +}; + +struct List_1_T_Enumerator_Crosstales_BWF_Model_Domains_ { + struct List_1_Crosstales_BWF_Model_Domains_ *_list; + int32_t _index; + int32_t _version; + struct Domains *_current; +}; + +struct List_1_T_Enumerator_Crosstales_BWF_Model_Domains___Boxed { + struct List_1_T_Enumerator_Crosstales_BWF_Model_Domains___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_Crosstales_BWF_Model_Domains_ fields; +}; + +struct List_1_T_Enumerator_Crosstales_BWF_Model_Domains___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_Crosstales_BWF_Model_Domains___StaticFields { +}; + +struct List_1_T_Enumerator_Crosstales_BWF_Model_Domains___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_Crosstales_BWF_Model_Domains___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_Crosstales_BWF_Model_Domains___VTable vtable; +}; + +struct List_1_T_Enumerator_Crosstales_BWF_Model_BadWords_ { + struct List_1_Crosstales_BWF_Model_BadWords_ *_list; + int32_t _index; + int32_t _version; + struct BadWords *_current; +}; + +struct List_1_T_Enumerator_Crosstales_BWF_Model_BadWords___Boxed { + struct List_1_T_Enumerator_Crosstales_BWF_Model_BadWords___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_Crosstales_BWF_Model_BadWords_ fields; +}; + +struct List_1_T_Enumerator_Crosstales_BWF_Model_BadWords___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_Crosstales_BWF_Model_BadWords___StaticFields { +}; + +struct List_1_T_Enumerator_Crosstales_BWF_Model_BadWords___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_Crosstales_BWF_Model_BadWords___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_Crosstales_BWF_Model_BadWords___VTable vtable; +}; + +struct Func_2_String_System_Text_RegularExpressions_Regex___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_2_String_System_Text_RegularExpressions_Regex_ { + struct Func_2_String_System_Text_RegularExpressions_Regex___Class *klass; + MonitorData *monitor; + struct Func_2_String_System_Text_RegularExpressions_Regex___Fields fields; +}; + +struct Func_2_String_System_Text_RegularExpressions_Regex___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_2_String_System_Text_RegularExpressions_Regex___StaticFields { +}; + +struct Func_2_String_System_Text_RegularExpressions_Regex___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_2_String_System_Text_RegularExpressions_Regex___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_2_String_System_Text_RegularExpressions_Regex___VTable vtable; +}; + +struct Config { + struct Config__Class *klass; + MonitorData *monitor; +}; + +struct Config__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Config__StaticFields { + bool DEBUG; + bool DEBUG_BADWORDS; + bool DEBUG_DOMAINS; + bool isLoaded; +}; + +struct Config__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Config__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Config__VTable vtable; +}; + +struct __declspec(align(8)) LinkedList_1_System_WeakReference___Fields { + struct LinkedListNode_1_System_WeakReference_ *head; + int32_t count; + int32_t version; + struct Object *_syncRoot; + struct SerializationInfo *_siInfo; +}; + +struct LinkedList_1_System_WeakReference_ { + struct LinkedList_1_System_WeakReference___Class *klass; + MonitorData *monitor; + struct LinkedList_1_System_WeakReference___Fields fields; +}; + +struct __declspec(align(8)) LinkedListNode_1_System_WeakReference___Fields { + struct LinkedList_1_System_WeakReference_ *list; + struct LinkedListNode_1_System_WeakReference_ *next; + struct LinkedListNode_1_System_WeakReference_ *prev; + struct WeakReference *item; +}; + +struct LinkedListNode_1_System_WeakReference_ { + struct LinkedListNode_1_System_WeakReference___Class *klass; + MonitorData *monitor; + struct LinkedListNode_1_System_WeakReference___Fields fields; +}; + +struct LinkedListNode_1_System_WeakReference___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct LinkedListNode_1_System_WeakReference___StaticFields { +}; + +struct LinkedListNode_1_System_WeakReference___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct LinkedListNode_1_System_WeakReference___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct LinkedListNode_1_System_WeakReference___VTable vtable; +}; + +struct LinkedList_1_System_WeakReference___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_T__Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct LinkedList_1_System_WeakReference___StaticFields { +}; + +struct LinkedList_1_System_WeakReference___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct LinkedList_1_System_WeakReference___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct LinkedList_1_System_WeakReference___VTable vtable; +}; + +struct GlobalLog { + struct GlobalLog__Class *klass; + MonitorData *monitor; +}; + +struct GlobalLog__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct GlobalLog__StaticFields { + struct BaseLoggingObject *Logobject; +}; + +struct GlobalLog__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GlobalLog__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GlobalLog__VTable vtable; +}; + +struct HeaderInfo__Array { + struct HeaderInfo__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct HeaderInfo *vector[32]; +}; + +struct HeaderInfo__Array__VTable { +}; + +struct HeaderInfo__Array__StaticFields { +}; + +struct HeaderInfo__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HeaderInfo__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HeaderInfo__Array__VTable vtable; +}; + +struct WebUtility_HtmlEntities { + struct WebUtility_HtmlEntities__Class *klass; + MonitorData *monitor; +}; + +struct WebUtility_HtmlEntities__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct WebUtility_HtmlEntities__StaticFields { + struct Int64__Array *entities; + struct Char__Array *entities_values; +}; + +struct WebUtility_HtmlEntities__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct WebUtility_HtmlEntities__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct WebUtility_HtmlEntities__VTable vtable; +}; + +struct WebUtility { + struct WebUtility__Class *klass; + MonitorData *monitor; +}; + +struct WebUtility__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct WebUtility__StaticFields { + struct Char__Array *_htmlEntityEndingChars; + #if defined(_CPLUSPLUS_) + UnicodeDecodingConformance__Enum _htmlDecodeConformance; + #else + int32_t _htmlDecodeConformance; + #endif + #if defined(_CPLUSPLUS_) + UnicodeEncodingConformance__Enum _htmlEncodeConformance; + #else + int32_t _htmlEncodeConformance; + #endif +}; + +struct WebUtility__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct WebUtility__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct WebUtility__VTable vtable; +}; + +struct TimerThread { + struct TimerThread__Class *klass; + MonitorData *monitor; +}; + +struct TimerThread__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct TimerThread__StaticFields { + struct LinkedList_1_System_WeakReference_ *s_Queues; + struct LinkedList_1_System_WeakReference_ *s_NewQueues; + int32_t s_ThreadState; + struct AutoResetEvent *s_ThreadReadyEvent; + struct ManualResetEvent *s_ThreadShutdownEvent; + struct WaitHandle__Array *s_ThreadEvents; + int32_t s_CacheScanIteration; + struct Hashtable *s_QueuesCache; +}; + +struct TimerThread__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TimerThread__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TimerThread__VTable vtable; +}; + +struct Func_2_IAsyncResult_System_IO_Stream___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_2_IAsyncResult_System_IO_Stream_ { + struct Func_2_IAsyncResult_System_IO_Stream___Class *klass; + MonitorData *monitor; + struct Func_2_IAsyncResult_System_IO_Stream___Fields fields; +}; + +struct Func_2_IAsyncResult_System_IO_Stream___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_2_IAsyncResult_System_IO_Stream___StaticFields { +}; + +struct Func_2_IAsyncResult_System_IO_Stream___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_2_IAsyncResult_System_IO_Stream___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_2_IAsyncResult_System_IO_Stream___VTable vtable; +}; + +struct IAutoWebProxy { + struct IAutoWebProxy__Class *klass; + MonitorData *monitor; +}; + +struct IAutoWebProxy__VTable { + VirtualInvokeData GetProxies; +}; + +struct IAutoWebProxy__StaticFields { +}; + +struct IAutoWebProxy__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IAutoWebProxy__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IAutoWebProxy__VTable vtable; +}; + +struct Func_1_System_Threading_Tasks_Task_1__1__Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_1_System_Threading_Tasks_Task_1__1 { + struct Func_1_System_Threading_Tasks_Task_1__1__Class *klass; + MonitorData *monitor; + struct Func_1_System_Threading_Tasks_Task_1__1__Fields fields; +}; + +struct Func_1_System_Threading_Tasks_Task_1__1__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_1_System_Threading_Tasks_Task_1__1__StaticFields { +}; + +struct Func_1_System_Threading_Tasks_Task_1__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_1_System_Threading_Tasks_Task_1__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_1_System_Threading_Tasks_Task_1__1__VTable vtable; +}; + +struct Func_1_System_Threading_Tasks_Task_1__2__Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_1_System_Threading_Tasks_Task_1__2 { + struct Func_1_System_Threading_Tasks_Task_1__2__Class *klass; + MonitorData *monitor; + struct Func_1_System_Threading_Tasks_Task_1__2__Fields fields; +}; + +struct Func_1_System_Threading_Tasks_Task_1__2__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_1_System_Threading_Tasks_Task_1__2__StaticFields { +}; + +struct Func_1_System_Threading_Tasks_Task_1__2__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_1_System_Threading_Tasks_Task_1__2__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_1_System_Threading_Tasks_Task_1__2__VTable vtable; +}; + +struct RenderPipelineManager { + struct RenderPipelineManager__Class *klass; + MonitorData *monitor; +}; + +struct RenderPipelineManager__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct RenderPipelineManager__StaticFields { + struct RenderPipelineAsset *s_CurrentPipelineAsset; + struct List_1_UnityEngine_Camera_ *s_Cameras; + struct String *s_currentPipelineType; + struct RenderPipeline *s_currentPipeline; + struct Action *activeRenderPipelineTypeChanged; + struct Action *activeRenderPipelineCreated; + struct Action *activeRenderPipelineDisposed; +}; + +struct RenderPipelineManager__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RenderPipelineManager__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RenderPipelineManager__VTable vtable; +}; + +struct OnDemandRendering { + struct OnDemandRendering__Class *klass; + MonitorData *monitor; +}; + +struct OnDemandRendering__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct OnDemandRendering__StaticFields { + int32_t m_RenderFrameInterval; +}; + +struct OnDemandRendering__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct OnDemandRendering__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct OnDemandRendering__VTable vtable; +}; + +struct Task_ContingentProperties___VTable { +}; + +struct Task_ContingentProperties___StaticFields { +}; + +struct Task_ContingentProperties___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Task_ContingentProperties___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Task_ContingentProperties___VTable vtable; +}; + +struct Action_2_Int32_Photon_Bolt_BoltEntity___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_2_Int32_Photon_Bolt_BoltEntity_ { + struct Action_2_Int32_Photon_Bolt_BoltEntity___Class *klass; + MonitorData *monitor; + struct Action_2_Int32_Photon_Bolt_BoltEntity___Fields fields; +}; + +struct Action_2_Int32_Photon_Bolt_BoltEntity___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_2_Int32_Photon_Bolt_BoltEntity___StaticFields { +}; + +struct Action_2_Int32_Photon_Bolt_BoltEntity___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_2_Int32_Photon_Bolt_BoltEntity___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_2_Int32_Photon_Bolt_BoltEntity___VTable vtable; +}; + +struct __declspec(align(8)) Tuple_3_System_Threading_Tasks_Task_System_Threading_Tasks_Task_System_Threading_Tasks_TaskContinuation___Fields { + struct Task *m_Item1; + struct Task *m_Item2; + struct TaskContinuation *m_Item3; +}; + +struct Tuple_3_System_Threading_Tasks_Task_System_Threading_Tasks_Task_System_Threading_Tasks_TaskContinuation_ { + struct Tuple_3_System_Threading_Tasks_Task_System_Threading_Tasks_Task_System_Threading_Tasks_TaskContinuation___Class *klass; + MonitorData *monitor; + struct Tuple_3_System_Threading_Tasks_Task_System_Threading_Tasks_Task_System_Threading_Tasks_TaskContinuation___Fields fields; +}; + +struct Tuple_3_System_Threading_Tasks_Task_System_Threading_Tasks_Task_System_Threading_Tasks_TaskContinuation___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_IStructuralEquatable_Equals; + VirtualInvokeData System_Collections_IStructuralEquatable_GetHashCode; + VirtualInvokeData System_Collections_IStructuralComparable_CompareTo; + VirtualInvokeData System_IComparable_CompareTo; + VirtualInvokeData System_ITupleInternal_ToString; + VirtualInvokeData System_Runtime_CompilerServices_ITuple_get_Length; +}; + +struct Tuple_3_System_Threading_Tasks_Task_System_Threading_Tasks_Task_System_Threading_Tasks_TaskContinuation___StaticFields { +}; + +struct Tuple_3_System_Threading_Tasks_Task_System_Threading_Tasks_Task_System_Threading_Tasks_TaskContinuation___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Tuple_3_System_Threading_Tasks_Task_System_Threading_Tasks_Task_System_Threading_Tasks_TaskContinuation___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Tuple_3_System_Threading_Tasks_Task_System_Threading_Tasks_Task_System_Threading_Tasks_TaskContinuation___VTable vtable; +}; + +struct IEnumerable_1_UnityEngine_Networking_PlayerConnection_PlayerEditorConnectionEvents_MessageTypeSubscribers_ { + struct IEnumerable_1_UnityEngine_Networking_PlayerConnection_PlayerEditorConnectionEvents_MessageTypeSubscribers___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_UnityEngine_Networking_PlayerConnection_PlayerEditorConnectionEvents_MessageTypeSubscribers___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_UnityEngine_Networking_PlayerConnection_PlayerEditorConnectionEvents_MessageTypeSubscribers___StaticFields { +}; + +struct IEnumerable_1_UnityEngine_Networking_PlayerConnection_PlayerEditorConnectionEvents_MessageTypeSubscribers___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_UnityEngine_Networking_PlayerConnection_PlayerEditorConnectionEvents_MessageTypeSubscribers___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_UnityEngine_Networking_PlayerConnection_PlayerEditorConnectionEvents_MessageTypeSubscribers___VTable vtable; +}; + +struct Func_2_UnityEngine_Networking_PlayerConnection_PlayerEditorConnectionEvents_MessageTypeSubscribers_Boolean___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_2_UnityEngine_Networking_PlayerConnection_PlayerEditorConnectionEvents_MessageTypeSubscribers_Boolean_ { + struct Func_2_UnityEngine_Networking_PlayerConnection_PlayerEditorConnectionEvents_MessageTypeSubscribers_Boolean___Class *klass; + MonitorData *monitor; + struct Func_2_UnityEngine_Networking_PlayerConnection_PlayerEditorConnectionEvents_MessageTypeSubscribers_Boolean___Fields fields; +}; + +struct Func_2_UnityEngine_Networking_PlayerConnection_PlayerEditorConnectionEvents_MessageTypeSubscribers_Boolean___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_2_UnityEngine_Networking_PlayerConnection_PlayerEditorConnectionEvents_MessageTypeSubscribers_Boolean___StaticFields { +}; + +struct Func_2_UnityEngine_Networking_PlayerConnection_PlayerEditorConnectionEvents_MessageTypeSubscribers_Boolean___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_2_UnityEngine_Networking_PlayerConnection_PlayerEditorConnectionEvents_MessageTypeSubscribers_Boolean___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_2_UnityEngine_Networking_PlayerConnection_PlayerEditorConnectionEvents_MessageTypeSubscribers_Boolean___VTable vtable; +}; + +struct IComparer_1_System_Threading_Timer_ { + struct IComparer_1_System_Threading_Timer___Class *klass; + MonitorData *monitor; +}; + +struct IComparer_1_System_Threading_Timer___VTable { + VirtualInvokeData Compare; +}; + +struct IComparer_1_System_Threading_Timer___StaticFields { +}; + +struct IComparer_1_System_Threading_Timer___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IComparer_1_System_Threading_Timer___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IComparer_1_System_Threading_Timer___VTable vtable; +}; + +struct GameObjectExtensions { + struct GameObjectExtensions__Class *klass; + MonitorData *monitor; +}; + +struct GameObjectExtensions__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct GameObjectExtensions__StaticFields { + struct Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1 *s_GameObjectComponentMap; + struct Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1 *s_GameObjectParentComponentMap; + struct Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object__1 *s_GameObjectInactiveParentComponentMap; + struct Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object_ *s_GameObjectComponentsMap; + struct Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_System_Object_ *s_GameObjectParentComponentsMap; +}; + +struct GameObjectExtensions__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GameObjectExtensions__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GameObjectExtensions__VTable vtable; +}; + +struct List_1_T_Enumerator_UnityEngine_Events_PersistentCall_ { + struct List_1_UnityEngine_Events_PersistentCall_ *_list; + int32_t _index; + int32_t _version; + struct PersistentCall *_current; +}; + +struct List_1_T_Enumerator_UnityEngine_Events_PersistentCall___Boxed { + struct List_1_T_Enumerator_UnityEngine_Events_PersistentCall___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_UnityEngine_Events_PersistentCall_ fields; +}; + +struct List_1_T_Enumerator_UnityEngine_Events_PersistentCall___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_UnityEngine_Events_PersistentCall___StaticFields { +}; + +struct List_1_T_Enumerator_UnityEngine_Events_PersistentCall___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_UnityEngine_Events_PersistentCall___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_UnityEngine_Events_PersistentCall___VTable vtable; +}; + +struct BoltNetwork { + struct BoltNetwork__Class *klass; + MonitorData *monitor; +}; + +struct BoltNetwork__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltNetwork__StaticFields { + struct Map_2_System_Guid_UdpSession_ *_sessionList; + struct Dictionary_2_System_Guid_System_UInt32_ *_sessionListTimeout; +}; + +struct BoltNetwork__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltNetwork__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltNetwork__VTable vtable; +}; + +struct Predicate_1_UnityEngine_Events_BaseInvokableCall___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Predicate_1_UnityEngine_Events_BaseInvokableCall_ { + struct Predicate_1_UnityEngine_Events_BaseInvokableCall___Class *klass; + MonitorData *monitor; + struct Predicate_1_UnityEngine_Events_BaseInvokableCall___Fields fields; +}; + +struct Predicate_1_UnityEngine_Events_BaseInvokableCall___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Predicate_1_UnityEngine_Events_BaseInvokableCall___StaticFields { +}; + +struct Predicate_1_UnityEngine_Events_BaseInvokableCall___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Predicate_1_UnityEngine_Events_BaseInvokableCall___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Predicate_1_UnityEngine_Events_BaseInvokableCall___VTable vtable; +}; + +struct IEnumerable_1_UnityEngine_Events_BaseInvokableCall_ { + struct IEnumerable_1_UnityEngine_Events_BaseInvokableCall___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_UnityEngine_Events_BaseInvokableCall___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_UnityEngine_Events_BaseInvokableCall___StaticFields { +}; + +struct IEnumerable_1_UnityEngine_Events_BaseInvokableCall___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_UnityEngine_Events_BaseInvokableCall___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_UnityEngine_Events_BaseInvokableCall___VTable vtable; +}; + +struct Addressables { + struct Addressables__Class *klass; + MonitorData *monitor; +}; + +struct Addressables__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Addressables__StaticFields { + bool reinitializeAddressables; + struct AddressablesImpl *m_AddressablesInstance; + struct String *LibraryPath; +}; + +struct Addressables__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Addressables__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Addressables__VTable vtable; +}; + +struct List_1_T_Enumerator_UnityEngine_Renderer_ { + struct List_1_UnityEngine_Renderer_ *_list; + int32_t _index; + int32_t _version; + struct Renderer *_current; +}; + +struct List_1_T_Enumerator_UnityEngine_Renderer___Boxed { + struct List_1_T_Enumerator_UnityEngine_Renderer___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_UnityEngine_Renderer_ fields; +}; + +struct List_1_T_Enumerator_UnityEngine_Renderer___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_UnityEngine_Renderer___StaticFields { +}; + +struct List_1_T_Enumerator_UnityEngine_Renderer___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_UnityEngine_Renderer___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_UnityEngine_Renderer___VTable vtable; +}; + +struct __declspec(align(8)) InvokableCall_1_System_String___Fields { + struct UnityAction_1_System_String_ *Delegate; +}; + +struct InvokableCall_1_System_String_ { + struct InvokableCall_1_System_String___Class *klass; + MonitorData *monitor; + struct InvokableCall_1_System_String___Fields fields; +}; + +struct CachedInvokableCall_1_System_String___Fields { + struct InvokableCall_1_System_String___Fields _; + struct String *m_Arg1; +}; + +struct CachedInvokableCall_1_System_String_ { + struct CachedInvokableCall_1_System_String___Class *klass; + MonitorData *monitor; + struct CachedInvokableCall_1_System_String___Fields fields; +}; + +struct InvokableCall_1_System_String___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Invoke; + VirtualInvokeData Find; + VirtualInvokeData Invoke_1; +}; + +struct InvokableCall_1_System_String___StaticFields { +}; + +struct InvokableCall_1_System_String___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InvokableCall_1_System_String___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InvokableCall_1_System_String___VTable vtable; +}; + +struct CachedInvokableCall_1_System_String___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Invoke; + VirtualInvokeData Find; + VirtualInvokeData Invoke_1; +}; + +struct CachedInvokableCall_1_System_String___StaticFields { +}; + +struct CachedInvokableCall_1_System_String___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CachedInvokableCall_1_System_String___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CachedInvokableCall_1_System_String___VTable vtable; +}; + +struct ColorGrading___VTable { +}; + +struct ColorGrading___StaticFields { +}; + +struct ColorGrading___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ColorGrading___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ColorGrading___VTable vtable; +}; + +struct ThreadPoolGlobals { + struct ThreadPoolGlobals__Class *klass; + MonitorData *monitor; +}; + +struct ThreadPoolGlobals__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ThreadPoolGlobals__StaticFields { + int32_t processorCount; + bool vmTpInitialized; + bool enableWorkerTracking; + struct ThreadPoolWorkQueue *workQueue; +}; + +struct ThreadPoolGlobals__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ThreadPoolGlobals__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ThreadPoolGlobals__VTable vtable; +}; + +struct PropertyID { + struct PropertyID__Class *klass; + MonitorData *monitor; +}; + +struct PropertyID__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct PropertyID__StaticFields { + int32_t _MainTex; + int32_t _AO_Radius; + int32_t _AO_PowExponent; + int32_t _AO_Bias; + int32_t _AO_Levels; + int32_t _AO_ThicknessDecay; + int32_t _AO_BlurSharpness; + int32_t _AO_BufDepthToLinearEye; + int32_t _AO_CameraViewLeft; + int32_t _AO_CameraViewRight; + int32_t _AO_ProjMatrixLeft; + int32_t _AO_ProjMatrixRight; + int32_t _AO_InvViewProjMatrixLeft; + int32_t _AO_PrevViewProjMatrixLeft; + int32_t _AO_PrevInvViewProjMatrixLeft; + int32_t _AO_InvViewProjMatrixRight; + int32_t _AO_PrevViewProjMatrixRight; + int32_t _AO_PrevInvViewProjMatrixRight; + int32_t _AO_GBufferNormals; + int32_t _AO_Target_TexelSize; + int32_t _AO_TemporalCurveAdj; + int32_t _AO_TemporalMotionSensibility; + int32_t _AO_CurrOcclusionDepth; + int32_t _AO_CurrOcclusionDepth_TexelSize; + int32_t _AO_TemporalAccumm; + int32_t _AO_TemporalDirections; + int32_t _AO_TemporalOffsets; + int32_t _AO_GBufferAlbedo; + int32_t _AO_GBufferEmission; + int32_t _AO_UVToView; + int32_t _AO_HalfProjScale; + int32_t _AO_FadeParams; + int32_t _AO_FadeValues; + int32_t _AO_FadeToTint; + int32_t _AO_CurrMotionIntensity; + int32_t _AO_CurrDepthSource_TexelSize; + int32_t _AO_CurrDepthSource; + int32_t _AO_CurrMotionIntensity_TexelSize; + int32_t _AO_SourceDepthMipmap; + int32_t _AO_Source_TexelSize; +}; + +struct PropertyID__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PropertyID__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PropertyID__VTable vtable; +}; + +struct AmplifyOcclusionCommon { + struct AmplifyOcclusionCommon__Class *klass; + MonitorData *monitor; +}; + +struct AmplifyOcclusionCommon__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct AmplifyOcclusionCommon__StaticFields { + int32_t PerPixelNormalSourceCount; + struct Single__Array *m_temporalRotations; + struct Single__Array *m_spatialOffsets; +}; + +struct AmplifyOcclusionCommon__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct AmplifyOcclusionCommon__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct AmplifyOcclusionCommon__VTable vtable; +}; + +struct ScriptableRuntimeReflectionSystemSettings { + struct ScriptableRuntimeReflectionSystemSettings__Class *klass; + MonitorData *monitor; +}; + +struct ScriptableRuntimeReflectionSystemSettings__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ScriptableRuntimeReflectionSystemSettings__StaticFields { + struct ScriptableRuntimeReflectionSystemWrapper *s_Instance; +}; + +struct ScriptableRuntimeReflectionSystemSettings__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ScriptableRuntimeReflectionSystemSettings__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ScriptableRuntimeReflectionSystemSettings__VTable vtable; +}; + +struct Lightmapping { + struct Lightmapping__Class *klass; + MonitorData *monitor; +}; + +struct Lightmapping__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Lightmapping__StaticFields { + struct Lightmapping_RequestLightsDelegate *s_DefaultDelegate; + struct Lightmapping_RequestLightsDelegate *s_RequestLightsDelegate; +}; + +struct Lightmapping__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Lightmapping__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Lightmapping__VTable vtable; +}; + +struct ICamera { + struct ICamera__Class *klass; + MonitorData *monitor; +}; + +struct ICamera__VTable { + VirtualInvokeData get_Character; +}; + +struct ICamera__StaticFields { +}; + +struct ICamera__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICamera__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICamera__VTable vtable; +}; + +struct __declspec(align(8)) List_1_System_Reflection_PropertyInfo___Fields { + struct PropertyInfo_1__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_System_Reflection_PropertyInfo_ { + struct List_1_System_Reflection_PropertyInfo___Class *klass; + MonitorData *monitor; + struct List_1_System_Reflection_PropertyInfo___Fields fields; +}; + +struct List_1_System_Reflection_PropertyInfo___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_System_Reflection_PropertyInfo___StaticFields { + struct PropertyInfo_1__Array *s_emptyArray; +}; + +struct List_1_System_Reflection_PropertyInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_System_Reflection_PropertyInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_System_Reflection_PropertyInfo___VTable vtable; +}; + +struct Serializer { + struct Serializer__Class *klass; + MonitorData *monitor; +}; + +struct Serializer__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Serializer__StaticFields { + struct Byte__Array *s_BigEndianFourByteArray; + struct Byte__Array *s_BigEndianEightByteArray; +}; + +struct Serializer__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Serializer__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Serializer__VTable vtable; +}; + +struct RandomID { + struct RandomID__Class *klass; + MonitorData *monitor; +}; + +struct RandomID__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct RandomID__StaticFields { + struct Random *s_Random; +}; + +struct RandomID__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct RandomID__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct RandomID__VTable vtable; +}; + +struct TypeUtility { + struct TypeUtility__Class *klass; + MonitorData *monitor; +}; + +struct TypeUtility__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct TypeUtility__StaticFields { + struct Dictionary_2_System_String_System_Type_ *s_TypeLookup; + struct List_1_System_Reflection_Assembly_ *s_LoadedAssemblies; + struct Dictionary_2_System_Reflection_FieldInfo_Dictionary_2_System_Type_System_Boolean_ *s_FieldAttributeMap; + struct Dictionary_2_System_Reflection_PropertyInfo_Dictionary_2_System_Type_System_Boolean_ *s_PropertyAttributeMap; +}; + +struct TypeUtility__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TypeUtility__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TypeUtility__VTable vtable; +}; + +struct Generic__Array { + struct Generic__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Generic *vector[32]; +}; + +struct Generic__Array__VTable { +}; + +struct Generic__Array__StaticFields { +}; + +struct Generic__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Generic__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Generic__Array__VTable vtable; +}; + +struct Action_4_Photon_Bolt_BoltEntity_Photon_Bolt_BoltEntity_Single_Boolean___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_4_Photon_Bolt_BoltEntity_Photon_Bolt_BoltEntity_Single_Boolean_ { + struct Action_4_Photon_Bolt_BoltEntity_Photon_Bolt_BoltEntity_Single_Boolean___Class *klass; + MonitorData *monitor; + struct Action_4_Photon_Bolt_BoltEntity_Photon_Bolt_BoltEntity_Single_Boolean___Fields fields; +}; + +struct Action_4_Photon_Bolt_BoltEntity_Photon_Bolt_BoltEntity_Single_Boolean___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_4_Photon_Bolt_BoltEntity_Photon_Bolt_BoltEntity_Single_Boolean___StaticFields { +}; + +struct Action_4_Photon_Bolt_BoltEntity_Photon_Bolt_BoltEntity_Single_Boolean___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_4_Photon_Bolt_BoltEntity_Photon_Bolt_BoltEntity_Single_Boolean___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_4_Photon_Bolt_BoltEntity_Photon_Bolt_BoltEntity_Single_Boolean___VTable vtable; +}; + +struct Action_3_UnityEngine_GameObject_String_Boolean___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_3_UnityEngine_GameObject_String_Boolean_ { + struct Action_3_UnityEngine_GameObject_String_Boolean___Class *klass; + MonitorData *monitor; + struct Action_3_UnityEngine_GameObject_String_Boolean___Fields fields; +}; + +struct Action_3_UnityEngine_GameObject_String_Boolean___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_3_UnityEngine_GameObject_String_Boolean___StaticFields { +}; + +struct Action_3_UnityEngine_GameObject_String_Boolean___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_3_UnityEngine_GameObject_String_Boolean___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_3_UnityEngine_GameObject_String_Boolean___VTable vtable; +}; + +struct GenericIntData__Array { + struct GenericIntData__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct GenericIntData *vector[32]; +}; + +struct GenericIntData__Array__VTable { +}; + +struct GenericIntData__Array__StaticFields { +}; + +struct GenericIntData__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GenericIntData__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GenericIntData__Array__VTable vtable; +}; + +struct List_1_T_Enumerator_UnityEngine_SkinnedMeshRenderer_ { + struct List_1_UnityEngine_SkinnedMeshRenderer_ *_list; + int32_t _index; + int32_t _version; + struct SkinnedMeshRenderer *_current; +}; + +struct List_1_T_Enumerator_UnityEngine_SkinnedMeshRenderer___Boxed { + struct List_1_T_Enumerator_UnityEngine_SkinnedMeshRenderer___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_UnityEngine_SkinnedMeshRenderer_ fields; +}; + +struct List_1_T_Enumerator_UnityEngine_SkinnedMeshRenderer___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_UnityEngine_SkinnedMeshRenderer___StaticFields { +}; + +struct List_1_T_Enumerator_UnityEngine_SkinnedMeshRenderer___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_UnityEngine_SkinnedMeshRenderer___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_UnityEngine_SkinnedMeshRenderer___VTable vtable; +}; + +struct IEnumerable_1_UnityEngine_SkinnedMeshRenderer_ { + struct IEnumerable_1_UnityEngine_SkinnedMeshRenderer___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_UnityEngine_SkinnedMeshRenderer___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_UnityEngine_SkinnedMeshRenderer___StaticFields { +}; + +struct IEnumerable_1_UnityEngine_SkinnedMeshRenderer___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_UnityEngine_SkinnedMeshRenderer___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_UnityEngine_SkinnedMeshRenderer___VTable vtable; +}; + +struct List_1_T_Enumerator_UnityEngine_Material_ { + struct List_1_UnityEngine_Material_ *_list; + int32_t _index; + int32_t _version; + struct Material *_current; +}; + +struct List_1_T_Enumerator_UnityEngine_Material___Boxed { + struct List_1_T_Enumerator_UnityEngine_Material___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_UnityEngine_Material_ fields; +}; + +struct List_1_T_Enumerator_UnityEngine_Material___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_UnityEngine_Material___StaticFields { +}; + +struct List_1_T_Enumerator_UnityEngine_Material___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_UnityEngine_Material___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_UnityEngine_Material___VTable vtable; +}; + +struct __declspec(align(8)) List_1_BehaviorDesigner_Runtime_Tasks_MapProgressResumableWait___Fields { + struct MapProgressResumableWait__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_BehaviorDesigner_Runtime_Tasks_MapProgressResumableWait_ { + struct List_1_BehaviorDesigner_Runtime_Tasks_MapProgressResumableWait___Class *klass; + MonitorData *monitor; + struct List_1_BehaviorDesigner_Runtime_Tasks_MapProgressResumableWait___Fields fields; +}; + +struct MapProgressResumableWait__Array { + struct MapProgressResumableWait__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct MapProgressResumableWait *vector[32]; +}; + +struct IEnumerator_1_BehaviorDesigner_Runtime_Tasks_MapProgressResumableWait_ { + struct IEnumerator_1_BehaviorDesigner_Runtime_Tasks_MapProgressResumableWait___Class *klass; + MonitorData *monitor; +}; + +struct MapProgressResumableWait__Array__VTable { +}; + +struct MapProgressResumableWait__Array__StaticFields { +}; + +struct MapProgressResumableWait__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MapProgressResumableWait__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MapProgressResumableWait__Array__VTable vtable; +}; + +struct IEnumerator_1_BehaviorDesigner_Runtime_Tasks_MapProgressResumableWait___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_BehaviorDesigner_Runtime_Tasks_MapProgressResumableWait___StaticFields { +}; + +struct IEnumerator_1_BehaviorDesigner_Runtime_Tasks_MapProgressResumableWait___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_BehaviorDesigner_Runtime_Tasks_MapProgressResumableWait___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_BehaviorDesigner_Runtime_Tasks_MapProgressResumableWait___VTable vtable; +}; + +struct List_1_BehaviorDesigner_Runtime_Tasks_MapProgressResumableWait___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_BehaviorDesigner_Runtime_Tasks_MapProgressResumableWait___StaticFields { + struct MapProgressResumableWait__Array *s_emptyArray; +}; + +struct List_1_BehaviorDesigner_Runtime_Tasks_MapProgressResumableWait___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_BehaviorDesigner_Runtime_Tasks_MapProgressResumableWait___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_BehaviorDesigner_Runtime_Tasks_MapProgressResumableWait___VTable vtable; +}; + +struct Action_3_Photon_Bolt_BoltEntity_Photon_Bolt_BoltEntity_Boolean___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_3_Photon_Bolt_BoltEntity_Photon_Bolt_BoltEntity_Boolean_ { + struct Action_3_Photon_Bolt_BoltEntity_Photon_Bolt_BoltEntity_Boolean___Class *klass; + MonitorData *monitor; + struct Action_3_Photon_Bolt_BoltEntity_Photon_Bolt_BoltEntity_Boolean___Fields fields; +}; + +struct Action_3_Photon_Bolt_BoltEntity_Photon_Bolt_BoltEntity_Boolean___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_3_Photon_Bolt_BoltEntity_Photon_Bolt_BoltEntity_Boolean___StaticFields { +}; + +struct Action_3_Photon_Bolt_BoltEntity_Photon_Bolt_BoltEntity_Boolean___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_3_Photon_Bolt_BoltEntity_Photon_Bolt_BoltEntity_Boolean___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_3_Photon_Bolt_BoltEntity_Photon_Bolt_BoltEntity_Boolean___VTable vtable; +}; + +struct Func_2_IAsyncResult_System_Security_Cryptography_X509Certificates_X509Certificate2___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_2_IAsyncResult_System_Security_Cryptography_X509Certificates_X509Certificate2_ { + struct Func_2_IAsyncResult_System_Security_Cryptography_X509Certificates_X509Certificate2___Class *klass; + MonitorData *monitor; + struct Func_2_IAsyncResult_System_Security_Cryptography_X509Certificates_X509Certificate2___Fields fields; +}; + +struct Func_2_IAsyncResult_System_Security_Cryptography_X509Certificates_X509Certificate2___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_2_IAsyncResult_System_Security_Cryptography_X509Certificates_X509Certificate2___StaticFields { +}; + +struct Func_2_IAsyncResult_System_Security_Cryptography_X509Certificates_X509Certificate2___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_2_IAsyncResult_System_Security_Cryptography_X509Certificates_X509Certificate2___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_2_IAsyncResult_System_Security_Cryptography_X509Certificates_X509Certificate2___VTable vtable; +}; + +struct Func_2_IAsyncResult_System_Net_HttpListenerContext___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_2_IAsyncResult_System_Net_HttpListenerContext_ { + struct Func_2_IAsyncResult_System_Net_HttpListenerContext___Class *klass; + MonitorData *monitor; + struct Func_2_IAsyncResult_System_Net_HttpListenerContext___Fields fields; +}; + +struct Func_2_IAsyncResult_System_Net_HttpListenerContext___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_2_IAsyncResult_System_Net_HttpListenerContext___StaticFields { +}; + +struct Func_2_IAsyncResult_System_Net_HttpListenerContext___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_2_IAsyncResult_System_Net_HttpListenerContext___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_2_IAsyncResult_System_Net_HttpListenerContext___VTable vtable; +}; + +struct HttpListenerContext__Array { + struct HttpListenerContext__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct HttpListenerContext *vector[32]; +}; + +struct HttpListenerContext__Array__VTable { +}; + +struct HttpListenerContext__Array__StaticFields { +}; + +struct HttpListenerContext__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HttpListenerContext__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HttpListenerContext__Array__VTable vtable; +}; + +struct List_1_T_Enumerator_System_Net_HttpConnection_ { + struct List_1_System_Net_HttpConnection_ *_list; + int32_t _index; + int32_t _version; + struct HttpConnection *_current; +}; + +struct List_1_T_Enumerator_System_Net_HttpConnection___Boxed { + struct List_1_T_Enumerator_System_Net_HttpConnection___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_System_Net_HttpConnection_ fields; +}; + +struct __declspec(align(8)) List_1_System_Net_HttpConnection___Fields { + struct HttpConnection__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_System_Net_HttpConnection_ { + struct List_1_System_Net_HttpConnection___Class *klass; + MonitorData *monitor; + struct List_1_System_Net_HttpConnection___Fields fields; +}; + +struct List_1_System_Net_HttpConnection___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_System_Net_HttpConnection___StaticFields { + struct HttpConnection__Array *s_emptyArray; +}; + +struct List_1_System_Net_HttpConnection___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_System_Net_HttpConnection___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_System_Net_HttpConnection___VTable vtable; +}; + +struct List_1_T_Enumerator_System_Net_HttpConnection___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_System_Net_HttpConnection___StaticFields { +}; + +struct List_1_T_Enumerator_System_Net_HttpConnection___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_System_Net_HttpConnection___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_System_Net_HttpConnection___VTable vtable; +}; + +struct Func_4_String_AsyncCallback_Object_IAsyncResult___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_4_String_AsyncCallback_Object_IAsyncResult_ { + struct Func_4_String_AsyncCallback_Object_IAsyncResult___Class *klass; + MonitorData *monitor; + struct Func_4_String_AsyncCallback_Object_IAsyncResult___Fields fields; +}; + +struct Func_4_String_AsyncCallback_Object_IAsyncResult___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_4_String_AsyncCallback_Object_IAsyncResult___StaticFields { +}; + +struct Func_4_String_AsyncCallback_Object_IAsyncResult___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_4_String_AsyncCallback_Object_IAsyncResult___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_4_String_AsyncCallback_Object_IAsyncResult___VTable vtable; +}; + +struct Func_2_IAsyncResult_System_Net_IPAddress___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_2_IAsyncResult_System_Net_IPAddress_ { + struct Func_2_IAsyncResult_System_Net_IPAddress___Class *klass; + MonitorData *monitor; + struct Func_2_IAsyncResult_System_Net_IPAddress___Fields fields; +}; + +struct Func_2_IAsyncResult_System_Net_IPAddress___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_2_IAsyncResult_System_Net_IPAddress___StaticFields { +}; + +struct Func_2_IAsyncResult_System_Net_IPAddress___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_2_IAsyncResult_System_Net_IPAddress___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_2_IAsyncResult_System_Net_IPAddress___VTable vtable; +}; + +struct Func_2_IAsyncResult_System_Net_IPHostEntry___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_2_IAsyncResult_System_Net_IPHostEntry_ { + struct Func_2_IAsyncResult_System_Net_IPHostEntry___Class *klass; + MonitorData *monitor; + struct Func_2_IAsyncResult_System_Net_IPHostEntry___Fields fields; +}; + +struct Func_2_IAsyncResult_System_Net_IPHostEntry___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_2_IAsyncResult_System_Net_IPHostEntry___StaticFields { +}; + +struct Func_2_IAsyncResult_System_Net_IPHostEntry___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_2_IAsyncResult_System_Net_IPHostEntry___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_2_IAsyncResult_System_Net_IPHostEntry___VTable vtable; +}; + +struct Func_4_System_Net_IPAddress_AsyncCallback_Object_IAsyncResult___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_4_System_Net_IPAddress_AsyncCallback_Object_IAsyncResult_ { + struct Func_4_System_Net_IPAddress_AsyncCallback_Object_IAsyncResult___Class *klass; + MonitorData *monitor; + struct Func_4_System_Net_IPAddress_AsyncCallback_Object_IAsyncResult___Fields fields; +}; + +struct Func_4_System_Net_IPAddress_AsyncCallback_Object_IAsyncResult___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_4_System_Net_IPAddress_AsyncCallback_Object_IAsyncResult___StaticFields { +}; + +struct Func_4_System_Net_IPAddress_AsyncCallback_Object_IAsyncResult___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_4_System_Net_IPAddress_AsyncCallback_Object_IAsyncResult___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_4_System_Net_IPAddress_AsyncCallback_Object_IAsyncResult___VTable vtable; +}; + +struct UnsafeNclNativeMethods_HttpApi { + struct UnsafeNclNativeMethods_HttpApi__Class *klass; + MonitorData *monitor; +}; + +struct UnsafeNclNativeMethods_HttpApi__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct UnsafeNclNativeMethods_HttpApi__StaticFields { + struct String__Array *m_Strings; +}; + +struct UnsafeNclNativeMethods_HttpApi__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UnsafeNclNativeMethods_HttpApi__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UnsafeNclNativeMethods_HttpApi__VTable vtable; +}; + +struct ICloseEx { + struct ICloseEx__Class *klass; + MonitorData *monitor; +}; + +struct ICloseEx__VTable { + VirtualInvokeData CloseEx; +}; + +struct ICloseEx__StaticFields { +}; + +struct ICloseEx__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICloseEx__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICloseEx__VTable vtable; +}; + +struct __declspec(align(8)) GUITargetAttribute__Fields { + int32_t displayMask; +}; + +struct GUITargetAttribute { + struct GUITargetAttribute__Class *klass; + MonitorData *monitor; + struct GUITargetAttribute__Fields fields; +}; + +struct GUITargetAttribute__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_TypeId; + VirtualInvokeData Match; + VirtualInvokeData IsDefaultAttribute; +}; + +struct GUITargetAttribute__StaticFields { +}; + +struct GUITargetAttribute__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GUITargetAttribute__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GUITargetAttribute__VTable vtable; +}; + +struct GUIStateObjects { + struct GUIStateObjects__Class *klass; + MonitorData *monitor; +}; + +struct GUIStateObjects__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct GUIStateObjects__StaticFields { + struct Dictionary_2_System_Int32_System_Object_ *s_StateCache; +}; + +struct GUIStateObjects__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GUIStateObjects__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GUIStateObjects__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_UnityEngine_GUIStyle_ { + struct Dictionary_2_System_String_UnityEngine_GUIStyle_ *_dictionary; + int32_t _index; + int32_t _version; + struct GUIStyle *_currentValue; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_UnityEngine_GUIStyle___Boxed { + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_UnityEngine_GUIStyle___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_UnityEngine_GUIStyle_ fields; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_UnityEngine_GUIStyle___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_UnityEngine_GUIStyle___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_UnityEngine_GUIStyle___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_UnityEngine_GUIStyle___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_TKey_TValue_Enumerator_System_String_UnityEngine_GUIStyle___VTable vtable; +}; + +struct Action_4_Opsive_UltimateCharacterController_Items_Item_Int32_Boolean_Boolean___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_4_Opsive_UltimateCharacterController_Items_Item_Int32_Boolean_Boolean_ { + struct Action_4_Opsive_UltimateCharacterController_Items_Item_Int32_Boolean_Boolean___Class *klass; + MonitorData *monitor; + struct Action_4_Opsive_UltimateCharacterController_Items_Item_Int32_Boolean_Boolean___Fields fields; +}; + +struct Action_4_Opsive_UltimateCharacterController_Items_Item_Int32_Boolean_Boolean___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_4_Opsive_UltimateCharacterController_Items_Item_Int32_Boolean_Boolean___StaticFields { +}; + +struct Action_4_Opsive_UltimateCharacterController_Items_Item_Int32_Boolean_Boolean___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_4_Opsive_UltimateCharacterController_Items_Item_Int32_Boolean_Boolean___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_4_Opsive_UltimateCharacterController_Items_Item_Int32_Boolean_Boolean___VTable vtable; +}; + +struct Action_2_Opsive_UltimateCharacterController_Items_Item_Boolean___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_2_Opsive_UltimateCharacterController_Items_Item_Boolean_ { + struct Action_2_Opsive_UltimateCharacterController_Items_Item_Boolean___Class *klass; + MonitorData *monitor; + struct Action_2_Opsive_UltimateCharacterController_Items_Item_Boolean___Fields fields; +}; + +struct Action_2_Opsive_UltimateCharacterController_Items_Item_Boolean___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_2_Opsive_UltimateCharacterController_Items_Item_Boolean___StaticFields { +}; + +struct Action_2_Opsive_UltimateCharacterController_Items_Item_Boolean___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_2_Opsive_UltimateCharacterController_Items_Item_Boolean___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_2_Opsive_UltimateCharacterController_Items_Item_Boolean___VTable vtable; +}; + +struct Drop__Array { + struct Drop__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Drop *vector[32]; +}; + +struct Drop__Array__VTable { +}; + +struct Drop__Array__StaticFields { +}; + +struct Drop__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Drop__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Drop__Array__VTable vtable; +}; + +struct List_1_T_Enumerator_UnityEngine_GUILayoutEntry_ { + struct List_1_UnityEngine_GUILayoutEntry_ *_list; + int32_t _index; + int32_t _version; + struct GUILayoutEntry *_current; +}; + +struct List_1_T_Enumerator_UnityEngine_GUILayoutEntry___Boxed { + struct List_1_T_Enumerator_UnityEngine_GUILayoutEntry___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_UnityEngine_GUILayoutEntry_ fields; +}; + +struct List_1_T_Enumerator_UnityEngine_GUILayoutEntry___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_UnityEngine_GUILayoutEntry___StaticFields { +}; + +struct List_1_T_Enumerator_UnityEngine_GUILayoutEntry___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_UnityEngine_GUILayoutEntry___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_UnityEngine_GUILayoutEntry___VTable vtable; +}; + +#if defined(_CPLUSPLUS_) +enum class FingerIndicator_Fingers__Enum : int32_t { + Index = 0x00000000, + Thumb = 0x00000001, + Hand = 0x00000002, +}; + +#else +enum FingerIndicator_Fingers__Enum { + FingerIndicator_Fingers__Enum_Index = 0x00000000, + FingerIndicator_Fingers__Enum_Thumb = 0x00000001, + FingerIndicator_Fingers__Enum_Hand = 0x00000002, +}; + +#endif +struct FingerIndicator_Fingers__Enum__Boxed { + struct FingerIndicator_Fingers__Enum__Class *klass; + MonitorData *monitor; + #if defined(_CPLUSPLUS_) + FingerIndicator_Fingers__Enum value; + #else + int32_t value; + #endif +}; + +struct FingerIndicator_Fingers__Enum__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData CompareTo; + VirtualInvokeData ToString_1; + VirtualInvokeData GetTypeCode; + VirtualInvokeData System_IConvertible_ToBoolean; + VirtualInvokeData System_IConvertible_ToChar; + VirtualInvokeData System_IConvertible_ToSByte; + VirtualInvokeData System_IConvertible_ToByte; + VirtualInvokeData System_IConvertible_ToInt16; + VirtualInvokeData System_IConvertible_ToUInt16; + VirtualInvokeData System_IConvertible_ToInt32; + VirtualInvokeData System_IConvertible_ToUInt32; + VirtualInvokeData System_IConvertible_ToInt64; + VirtualInvokeData System_IConvertible_ToUInt64; + VirtualInvokeData System_IConvertible_ToSingle; + VirtualInvokeData System_IConvertible_ToDouble; + VirtualInvokeData System_IConvertible_ToDecimal; + VirtualInvokeData System_IConvertible_ToDateTime; + VirtualInvokeData ToString_2; + VirtualInvokeData System_IConvertible_ToType; +}; + +struct FingerIndicator_Fingers__Enum__StaticFields { +}; + +struct FingerIndicator_Fingers__Enum__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct FingerIndicator_Fingers__Enum__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct FingerIndicator_Fingers__Enum__VTable vtable; +}; + +struct Action_2_Opsive_UltimateCharacterController_Items_Item_Int32___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_2_Opsive_UltimateCharacterController_Items_Item_Int32_ { + struct Action_2_Opsive_UltimateCharacterController_Items_Item_Int32___Class *klass; + MonitorData *monitor; + struct Action_2_Opsive_UltimateCharacterController_Items_Item_Int32___Fields fields; +}; + +struct Action_2_Opsive_UltimateCharacterController_Items_Item_Int32___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_2_Opsive_UltimateCharacterController_Items_Item_Int32___StaticFields { +}; + +struct Action_2_Opsive_UltimateCharacterController_Items_Item_Int32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_2_Opsive_UltimateCharacterController_Items_Item_Int32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_2_Opsive_UltimateCharacterController_Items_Item_Int32___VTable vtable; +}; + +struct XRNode___VTable { +}; + +struct XRNode___StaticFields { +}; + +struct XRNode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct XRNode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct XRNode___VTable vtable; +}; + +struct ItemSlot__Array { + struct ItemSlot__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct ItemSlot *vector[32]; +}; + +struct ItemSlot__Array__VTable { +}; + +struct ItemSlot__Array__StaticFields { +}; + +struct ItemSlot__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ItemSlot__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ItemSlot__Array__VTable vtable; +}; + +struct Hold__Array { + struct Hold__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Hold *vector[32]; +}; + +struct Hold__Array__VTable { +}; + +struct Hold__Array__StaticFields { +}; + +struct Hold__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Hold__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Hold__Array__VTable vtable; +}; + +struct GUIUtility { + struct GUIUtility__Class *klass; + MonitorData *monitor; +}; + +struct GUIUtility__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct GUIUtility__StaticFields { + int32_t s_ControlCount; + int32_t s_SkinMode; + int32_t s_OriginalID; + struct Action *takeCapture; + struct Action *releaseCapture; + struct Func_3_Int32_IntPtr_Boolean_ *processEvent; + struct Action *cleanupRoots; + struct Func_2_Exception_Boolean_ *endContainerGUIFromException; + struct Action *guiChanged; + bool _guiIsExiting_k__BackingField; + struct Func_1_Boolean_ *s_HasCurrentWindowKeyFocusFunc; +}; + +struct GUIUtility__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct GUIUtility__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct GUIUtility__VTable vtable; +}; + +struct Action_3_UnityEngine_XR_XRNode_Int32_Boolean___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_3_UnityEngine_XR_XRNode_Int32_Boolean_ { + struct Action_3_UnityEngine_XR_XRNode_Int32_Boolean___Class *klass; + MonitorData *monitor; + struct Action_3_UnityEngine_XR_XRNode_Int32_Boolean___Fields fields; +}; + +struct Action_3_UnityEngine_XR_XRNode_Int32_Boolean___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_3_UnityEngine_XR_XRNode_Int32_Boolean___StaticFields { +}; + +struct Action_3_UnityEngine_XR_XRNode_Int32_Boolean___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_3_UnityEngine_XR_XRNode_Int32_Boolean___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_3_UnityEngine_XR_XRNode_Int32_Boolean___VTable vtable; +}; + +struct __declspec(align(8)) Preset_GenericDelegate_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_Hold_StopAction___Fields { + #if defined(_CPLUSPLUS_) + Hold_StopAction__Enum m_Value; + #else + int32_t m_Value; + #endif + struct MethodInfo_1 *m_SetMethod; + struct Action_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_Hold_StopAction_ *m_Setter; + struct Func_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_Hold_StopAction_ *m_Getter; + bool m_IsIList; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_Hold_StopAction_ { + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_Hold_StopAction___Class *klass; + MonitorData *monitor; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_Hold_StopAction___Fields fields; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_Hold_StopAction___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_SetMethod; + VirtualInvokeData Initialize; + VirtualInvokeData Initialize_1; + VirtualInvokeData UpdateValue; + VirtualInvokeData ApplyValue; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_Hold_StopAction___StaticFields { +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_Hold_StopAction___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_Hold_StopAction___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_Hold_StopAction___VTable vtable; +}; + +struct __declspec(align(8)) Preset_GenericDelegate_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_MoveInPlace_HandMovementOptions___Fields { + #if defined(_CPLUSPLUS_) + MoveInPlace_HandMovementOptions__Enum m_Value; + #else + int32_t m_Value; + #endif + struct MethodInfo_1 *m_SetMethod; + struct Action_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_MoveInPlace_HandMovementOptions_ *m_Setter; + struct Func_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_MoveInPlace_HandMovementOptions_ *m_Getter; + bool m_IsIList; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_MoveInPlace_HandMovementOptions_ { + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_MoveInPlace_HandMovementOptions___Class *klass; + MonitorData *monitor; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_MoveInPlace_HandMovementOptions___Fields fields; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_MoveInPlace_HandMovementOptions___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_SetMethod; + VirtualInvokeData Initialize; + VirtualInvokeData Initialize_1; + VirtualInvokeData UpdateValue; + VirtualInvokeData ApplyValue; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_MoveInPlace_HandMovementOptions___StaticFields { +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_MoveInPlace_HandMovementOptions___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_MoveInPlace_HandMovementOptions___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_MoveInPlace_HandMovementOptions___VTable vtable; +}; + +struct __declspec(align(8)) Preset_GenericDelegate_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_FlickReload_StartFlickDirection___Fields { + #if defined(_CPLUSPLUS_) + FlickReload_StartFlickDirection__Enum m_Value; + #else + int32_t m_Value; + #endif + struct MethodInfo_1 *m_SetMethod; + struct Action_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_FlickReload_StartFlickDirection_ *m_Setter; + struct Func_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_FlickReload_StartFlickDirection_ *m_Getter; + bool m_IsIList; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_FlickReload_StartFlickDirection_ { + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_FlickReload_StartFlickDirection___Class *klass; + MonitorData *monitor; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_FlickReload_StartFlickDirection___Fields fields; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_FlickReload_StartFlickDirection___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_SetMethod; + VirtualInvokeData Initialize; + VirtualInvokeData Initialize_1; + VirtualInvokeData UpdateValue; + VirtualInvokeData ApplyValue; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_FlickReload_StartFlickDirection___StaticFields { +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_FlickReload_StartFlickDirection___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_FlickReload_StartFlickDirection___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_AddOns_VR_Character_Abilities_Items_FlickReload_StartFlickDirection___VTable vtable; +}; + +struct Hand__Array { + struct Hand__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Hand *vector[32]; +}; + +struct Hand__Array__VTable { +}; + +struct Hand__Array__StaticFields { +}; + +struct Hand__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Hand__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Hand__Array__VTable vtable; +}; + +struct ItemPickup__Array { + struct ItemPickup__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct ItemPickup *vector[32]; +}; + +struct ItemPickup__Array__VTable { +}; + +struct ItemPickup__Array__StaticFields { +}; + +struct ItemPickup__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ItemPickup__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ItemPickup__Array__VTable vtable; +}; + +struct FirstAidOutline__Array { + struct FirstAidOutline__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct FirstAidOutline *vector[32]; +}; + +struct FirstAidOutline__Array__VTable { +}; + +struct FirstAidOutline__Array__StaticFields { +}; + +struct FirstAidOutline__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct FirstAidOutline__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct FirstAidOutline__Array__VTable vtable; +}; + +struct List_1_T_Enumerator_HidingSpotController_ { + struct List_1_HidingSpotController_ *_list; + int32_t _index; + int32_t _version; + struct HidingSpotController *_current; +}; + +struct List_1_T_Enumerator_HidingSpotController___Boxed { + struct List_1_T_Enumerator_HidingSpotController___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_HidingSpotController_ fields; +}; + +struct List_1_T_Enumerator_HidingSpotController___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_HidingSpotController___StaticFields { +}; + +struct List_1_T_Enumerator_HidingSpotController___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_HidingSpotController___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_HidingSpotController___VTable vtable; +}; + +struct MovementUtility { + struct MovementUtility__Class *klass; + MonitorData *monitor; +}; + +struct MovementUtility__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct MovementUtility__StaticFields { + struct Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component_ *gameObjectComponentMap; + struct Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component_ *gameObjectParentComponentMap; + struct Dictionary_2_UnityEngine_GameObject_Dictionary_2_System_Type_UnityEngine_Component__1 *gameObjectComponentsMap; +}; + +struct MovementUtility__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MovementUtility__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MovementUtility__VTable vtable; +}; + +struct List_1_T_Enumerator_Opsive_UltimateCharacterController_Character_Abilities_Interact_ { + struct List_1_Opsive_UltimateCharacterController_Character_Abilities_Interact_ *_list; + int32_t _index; + int32_t _version; + struct Interact *_current; +}; + +struct List_1_T_Enumerator_Opsive_UltimateCharacterController_Character_Abilities_Interact___Boxed { + struct List_1_T_Enumerator_Opsive_UltimateCharacterController_Character_Abilities_Interact___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_Opsive_UltimateCharacterController_Character_Abilities_Interact_ fields; +}; + +struct List_1_T_Enumerator_Opsive_UltimateCharacterController_Character_Abilities_Interact___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_Opsive_UltimateCharacterController_Character_Abilities_Interact___StaticFields { +}; + +struct List_1_T_Enumerator_Opsive_UltimateCharacterController_Character_Abilities_Interact___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_Opsive_UltimateCharacterController_Character_Abilities_Interact___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_Opsive_UltimateCharacterController_Character_Abilities_Interact___VTable vtable; +}; + +struct List_1_T_Enumerator_UnityEngine_GameObject_ { + struct List_1_UnityEngine_GameObject_ *_list; + int32_t _index; + int32_t _version; + struct GameObject *_current; +}; + +struct List_1_T_Enumerator_UnityEngine_GameObject___Boxed { + struct List_1_T_Enumerator_UnityEngine_GameObject___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_UnityEngine_GameObject_ fields; +}; + +struct List_1_T_Enumerator_UnityEngine_GameObject___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_UnityEngine_GameObject___StaticFields { +}; + +struct List_1_T_Enumerator_UnityEngine_GameObject___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_UnityEngine_GameObject___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_UnityEngine_GameObject___VTable vtable; +}; + +struct List_1_T_Enumerator_UnityEngine_Transform_ { + struct List_1_UnityEngine_Transform_ *_list; + int32_t _index; + int32_t _version; + struct Transform *_current; +}; + +struct List_1_T_Enumerator_UnityEngine_Transform___Boxed { + struct List_1_T_Enumerator_UnityEngine_Transform___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_UnityEngine_Transform_ fields; +}; + +struct List_1_T_Enumerator_UnityEngine_Transform___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_UnityEngine_Transform___StaticFields { +}; + +struct List_1_T_Enumerator_UnityEngine_Transform___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_UnityEngine_Transform___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_UnityEngine_Transform___VTable vtable; +}; + +struct Action_1_SurvivalDemonBehaviour___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_1_SurvivalDemonBehaviour_ { + struct Action_1_SurvivalDemonBehaviour___Class *klass; + MonitorData *monitor; + struct Action_1_SurvivalDemonBehaviour___Fields fields; +}; + +struct Action_1_SurvivalDemonBehaviour___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_1_SurvivalDemonBehaviour___StaticFields { +}; + +struct Action_1_SurvivalDemonBehaviour___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_1_SurvivalDemonBehaviour___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_1_SurvivalDemonBehaviour___VTable vtable; +}; + +struct Action_2_String_Photon_Bolt_BoltEntity___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_2_String_Photon_Bolt_BoltEntity_ { + struct Action_2_String_Photon_Bolt_BoltEntity___Class *klass; + MonitorData *monitor; + struct Action_2_String_Photon_Bolt_BoltEntity___Fields fields; +}; + +struct Action_2_String_Photon_Bolt_BoltEntity___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_2_String_Photon_Bolt_BoltEntity___StaticFields { +}; + +struct Action_2_String_Photon_Bolt_BoltEntity___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_2_String_Photon_Bolt_BoltEntity___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_2_String_Photon_Bolt_BoltEntity___VTable vtable; +}; + +struct Action_1_SpiderBehaviour___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_1_SpiderBehaviour_ { + struct Action_1_SpiderBehaviour___Class *klass; + MonitorData *monitor; + struct Action_1_SpiderBehaviour___Fields fields; +}; + +struct Action_1_SpiderBehaviour___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_1_SpiderBehaviour___StaticFields { +}; + +struct Action_1_SpiderBehaviour___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_1_SpiderBehaviour___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_1_SpiderBehaviour___VTable vtable; +}; + +struct Action_1_GhostBehaviour___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_1_GhostBehaviour_ { + struct Action_1_GhostBehaviour___Class *klass; + MonitorData *monitor; + struct Action_1_GhostBehaviour___Fields fields; +}; + +struct Action_1_GhostBehaviour___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_1_GhostBehaviour___StaticFields { +}; + +struct Action_1_GhostBehaviour___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_1_GhostBehaviour___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_1_GhostBehaviour___VTable vtable; +}; + +struct Action_2_UnityEngine_GameObject_Single___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_2_UnityEngine_GameObject_Single_ { + struct Action_2_UnityEngine_GameObject_Single___Class *klass; + MonitorData *monitor; + struct Action_2_UnityEngine_GameObject_Single___Fields fields; +}; + +struct Action_2_UnityEngine_GameObject_Single___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_2_UnityEngine_GameObject_Single___StaticFields { +}; + +struct Action_2_UnityEngine_GameObject_Single___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_2_UnityEngine_GameObject_Single___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_2_UnityEngine_GameObject_Single___VTable vtable; +}; + +struct Action_2_UnityEngine_GameObject_Int32___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_2_UnityEngine_GameObject_Int32_ { + struct Action_2_UnityEngine_GameObject_Int32___Class *klass; + MonitorData *monitor; + struct Action_2_UnityEngine_GameObject_Int32___Fields fields; +}; + +struct Action_2_UnityEngine_GameObject_Int32___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_2_UnityEngine_GameObject_Int32___StaticFields { +}; + +struct Action_2_UnityEngine_GameObject_Int32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_2_UnityEngine_GameObject_Int32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_2_UnityEngine_GameObject_Int32___VTable vtable; +}; + +struct Action_2_UnityEngine_GameObject_Photon_Bolt_BoltEntity___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_2_UnityEngine_GameObject_Photon_Bolt_BoltEntity_ { + struct Action_2_UnityEngine_GameObject_Photon_Bolt_BoltEntity___Class *klass; + MonitorData *monitor; + struct Action_2_UnityEngine_GameObject_Photon_Bolt_BoltEntity___Fields fields; +}; + +struct Action_2_UnityEngine_GameObject_Photon_Bolt_BoltEntity___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_2_UnityEngine_GameObject_Photon_Bolt_BoltEntity___StaticFields { +}; + +struct Action_2_UnityEngine_GameObject_Photon_Bolt_BoltEntity___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_2_UnityEngine_GameObject_Photon_Bolt_BoltEntity___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_2_UnityEngine_GameObject_Photon_Bolt_BoltEntity___VTable vtable; +}; + +struct Action_1_CorpseBehaviour___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_1_CorpseBehaviour_ { + struct Action_1_CorpseBehaviour___Class *klass; + MonitorData *monitor; + struct Action_1_CorpseBehaviour___Fields fields; +}; + +struct Action_1_CorpseBehaviour___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_1_CorpseBehaviour___StaticFields { +}; + +struct Action_1_CorpseBehaviour___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_1_CorpseBehaviour___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_1_CorpseBehaviour___VTable vtable; +}; + +struct Action_1_Photon_Bolt_BoltEntity___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_1_Photon_Bolt_BoltEntity_ { + struct Action_1_Photon_Bolt_BoltEntity___Class *klass; + MonitorData *monitor; + struct Action_1_Photon_Bolt_BoltEntity___Fields fields; +}; + +struct Action_1_Photon_Bolt_BoltEntity___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_1_Photon_Bolt_BoltEntity___StaticFields { +}; + +struct Action_1_Photon_Bolt_BoltEntity___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_1_Photon_Bolt_BoltEntity___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_1_Photon_Bolt_BoltEntity___VTable vtable; +}; + +struct Action_2_Photon_Bolt_BoltEntity_Single___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_2_Photon_Bolt_BoltEntity_Single_ { + struct Action_2_Photon_Bolt_BoltEntity_Single___Class *klass; + MonitorData *monitor; + struct Action_2_Photon_Bolt_BoltEntity_Single___Fields fields; +}; + +struct Action_2_Photon_Bolt_BoltEntity_Single___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_2_Photon_Bolt_BoltEntity_Single___StaticFields { +}; + +struct Action_2_Photon_Bolt_BoltEntity_Single___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_2_Photon_Bolt_BoltEntity_Single___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_2_Photon_Bolt_BoltEntity_Single___VTable vtable; +}; + +struct Action_2_Photon_Bolt_BoltEntity_Photon_Bolt_BoltEntity___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_2_Photon_Bolt_BoltEntity_Photon_Bolt_BoltEntity_ { + struct Action_2_Photon_Bolt_BoltEntity_Photon_Bolt_BoltEntity___Class *klass; + MonitorData *monitor; + struct Action_2_Photon_Bolt_BoltEntity_Photon_Bolt_BoltEntity___Fields fields; +}; + +struct Action_2_Photon_Bolt_BoltEntity_Photon_Bolt_BoltEntity___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_2_Photon_Bolt_BoltEntity_Photon_Bolt_BoltEntity___StaticFields { +}; + +struct Action_2_Photon_Bolt_BoltEntity_Photon_Bolt_BoltEntity___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_2_Photon_Bolt_BoltEntity_Photon_Bolt_BoltEntity___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_2_Photon_Bolt_BoltEntity_Photon_Bolt_BoltEntity___VTable vtable; +}; + +struct Action_1_BoarBehaviour___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_1_BoarBehaviour_ { + struct Action_1_BoarBehaviour___Class *klass; + MonitorData *monitor; + struct Action_1_BoarBehaviour___Fields fields; +}; + +struct Action_1_BoarBehaviour___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_1_BoarBehaviour___StaticFields { +}; + +struct Action_1_BoarBehaviour___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_1_BoarBehaviour___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_1_BoarBehaviour___VTable vtable; +}; + +struct Action_1_Opsive_UltimateCharacterController_Traits_Attribute___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_1_Opsive_UltimateCharacterController_Traits_Attribute_ { + struct Action_1_Opsive_UltimateCharacterController_Traits_Attribute___Class *klass; + MonitorData *monitor; + struct Action_1_Opsive_UltimateCharacterController_Traits_Attribute___Fields fields; +}; + +struct Action_1_Opsive_UltimateCharacterController_Traits_Attribute___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_1_Opsive_UltimateCharacterController_Traits_Attribute___StaticFields { +}; + +struct Action_1_Opsive_UltimateCharacterController_Traits_Attribute___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_1_Opsive_UltimateCharacterController_Traits_Attribute___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_1_Opsive_UltimateCharacterController_Traits_Attribute___VTable vtable; +}; + +struct Action_2_Opsive_UltimateCharacterController_Character_Abilities_Ability_Boolean___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_2_Opsive_UltimateCharacterController_Character_Abilities_Ability_Boolean_ { + struct Action_2_Opsive_UltimateCharacterController_Character_Abilities_Ability_Boolean___Class *klass; + MonitorData *monitor; + struct Action_2_Opsive_UltimateCharacterController_Character_Abilities_Ability_Boolean___Fields fields; +}; + +struct Action_2_Opsive_UltimateCharacterController_Character_Abilities_Ability_Boolean___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_2_Opsive_UltimateCharacterController_Character_Abilities_Ability_Boolean___StaticFields { +}; + +struct Action_2_Opsive_UltimateCharacterController_Character_Abilities_Ability_Boolean___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_2_Opsive_UltimateCharacterController_Character_Abilities_Ability_Boolean___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_2_Opsive_UltimateCharacterController_Character_Abilities_Ability_Boolean___VTable vtable; +}; + +struct BoltPrefabs { + struct BoltPrefabs__Class *klass; + MonitorData *monitor; +}; + +struct BoltPrefabs__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltPrefabs__StaticFields { + struct PrefabId MapController; + struct PrefabId Steam_Inventory_Validator; + struct PrefabId Survival_Lobby_Controller; + struct PrefabId DoorNumber; + struct PrefabId SurvivalAltar; + struct PrefabId SurvivalAltarMolly; + struct PrefabId SurvivalAltarSlaughterhouse; + struct PrefabId SurvivalAltarTown; + struct PrefabId Cage; + struct PrefabId TrashCan; + struct PrefabId Key; + struct PrefabId SurvivalBattery; + struct PrefabId SurvivalBleach; + struct PrefabId SurvivalBone; + struct PrefabId SurvivalCandle; + struct PrefabId SurvivalEgg; + struct PrefabId SurvivalFirstAid; + struct PrefabId SurvivalFuse; + struct PrefabId SurvivalGasoline; + struct PrefabId SurvivalGoat; + struct PrefabId SurvivalHay; + struct PrefabId SurvivalMatchbox; + struct PrefabId SurvivalPhoto; + struct PrefabId SurvivalPig; + struct PrefabId SurvivalRat; + struct PrefabId SurvivalRitualBook; + struct PrefabId SurvivalRose; + struct PrefabId SurvivalRottenFood; + struct PrefabId SurvivalSalt; + struct PrefabId PetCrow; + struct PrefabId PetGoat; + struct PrefabId PetPig; + struct PrefabId PetRat; + struct PrefabId PetSpider; + struct PrefabId SurvivalAzazelMolly; + struct PrefabId SurvivalInmate; + struct PrefabId SurvivalAnnaNew; + struct PrefabId SurvivalDemon; + struct PrefabId AzazelZara; + struct PrefabId Spider; + struct PrefabId AzazelApril; + struct PrefabId Crow; + struct PrefabId AzazelNathan; + struct PrefabId Boar; + struct PrefabId Corpse; + struct PrefabId AzazelSam; + struct PrefabId Ghost; + struct PrefabId SurvivalAnna; + struct PrefabId SurvivalApril; + struct PrefabId SurvivalCultist; + struct PrefabId SurvivalFrank; + struct PrefabId SurvivalKai; + struct PrefabId SurvivalMolly; + struct PrefabId SurvivalNathan; + struct PrefabId SurvivalSam; + struct PrefabId SurvivalZara; + struct PrefabId AsylumDoor; + struct PrefabId AsylumDoubleDoor; + struct PrefabId AsylumWhiteDoor; + struct PrefabId Elevator_Door; + struct PrefabId DevourDoorBack; + struct PrefabId DevourDoorMain; + struct PrefabId DevourDoorRoom; + struct PrefabId InnDoor; + struct PrefabId InnDoubleDoor; + struct PrefabId InnShojiDoor; + struct PrefabId InnShojiDoubleDoor; + struct PrefabId InnWoodenDoor; + struct PrefabId InnWoodenDoubleDoor; + struct PrefabId ManorBarnDoor; + struct PrefabId ManorDoor; + struct PrefabId ManorGate; + struct PrefabId ManorMausoleumDoor; + struct PrefabId Animal_Gate; + struct PrefabId SlaughterhouseFireEscapeDoor; + struct PrefabId SlaughterhouseOfficeDoor; + struct PrefabId SlaughterhousePushPullDoor; + struct PrefabId TownCellDoor; + struct PrefabId TownDoor; + struct PrefabId TownDoor2; + struct PrefabId TownLockbox; + struct PrefabId InnFountain; + struct PrefabId InnShrine; + struct PrefabId InnWardrobe; + struct PrefabId InnWeb; + struct PrefabId TV; + struct PrefabId ManorHidingSpot; + struct PrefabId ManorMirror; + struct PrefabId ManorSpirit; + struct PrefabId Freezer_Room; + struct PrefabId PigExcrement; + struct PrefabId SurvivalBurstPipe; + struct PrefabId Truck_Shutter; + struct PrefabId SurvivalSmashableWindow; + struct PrefabId SurvivalSmashableWindowMulti; + struct PrefabId TownHidingSpot; + struct PrefabId TownPentagram; + struct PrefabId SlaughterhouseIntro; + struct PrefabId TownIntro; + struct PrefabId SurvivalMatchbox_02; + struct PrefabId InnMaze_A; + struct PrefabId InnMaze_B; + struct PrefabId InnMaze_C; + struct PrefabId InnMaze_D; + struct PrefabId InnMaze_E; + struct PrefabId InnMaze_F; +}; + +struct BoltPrefabs__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltPrefabs__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltPrefabs__VTable vtable; +}; + +struct AudioOcclusion__Array { + struct AudioOcclusion__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct AudioOcclusion *vector[32]; +}; + +struct AudioOcclusion__Array__VTable { +}; + +struct AudioOcclusion__Array__StaticFields { +}; + +struct AudioOcclusion__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct AudioOcclusion__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct AudioOcclusion__Array__VTable vtable; +}; + +struct SendMouseEvents { + struct SendMouseEvents__Class *klass; + MonitorData *monitor; +}; + +struct SendMouseEvents__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct SendMouseEvents__StaticFields { + bool s_MouseUsed; + struct SendMouseEvents_HitInfo__Array *m_LastHit; + struct SendMouseEvents_HitInfo__Array *m_MouseDownHit; + struct SendMouseEvents_HitInfo__Array *m_CurrentHit; + struct Camera__Array *m_Cameras; + struct Func_1_System_Collections_Generic_KeyValuePair_2_ *s_GetMouseState; + struct Vector2 s_MousePosition; + bool s_MouseButtonPressedThisFrame; + bool s_MouseButtonIsPressed; +}; + +struct SendMouseEvents__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SendMouseEvents__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SendMouseEvents__VTable vtable; +}; + +struct LinkedList_1_T_Enumerator_System_Net_WebConnection_ { + struct LinkedList_1_System_Net_WebConnection_ *_list; + struct LinkedListNode_1_System_Net_WebConnection_ *_node; + int32_t _version; + struct WebConnection *_current; + int32_t _index; +}; + +struct LinkedList_1_T_Enumerator_System_Net_WebConnection___Boxed { + struct LinkedList_1_T_Enumerator_System_Net_WebConnection___Class *klass; + MonitorData *monitor; + struct LinkedList_1_T_Enumerator_System_Net_WebConnection_ fields; +}; + +struct LinkedList_1_T_Enumerator_System_Net_WebConnection___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; + VirtualInvokeData System_Runtime_Serialization_ISerializable_GetObjectData; + VirtualInvokeData System_Runtime_Serialization_IDeserializationCallback_OnDeserialization; +}; + +struct LinkedList_1_T_Enumerator_System_Net_WebConnection___StaticFields { +}; + +struct LinkedList_1_T_Enumerator_System_Net_WebConnection___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct LinkedList_1_T_Enumerator_System_Net_WebConnection___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct LinkedList_1_T_Enumerator_System_Net_WebConnection___VTable vtable; +}; + +struct LinkedList_1_T_Enumerator_System_Net_WebOperation_ { + struct LinkedList_1_System_Net_WebOperation_ *_list; + struct LinkedListNode_1_System_Net_WebOperation_ *_node; + int32_t _version; + struct WebOperation *_current; + int32_t _index; +}; + +struct LinkedList_1_T_Enumerator_System_Net_WebOperation___Boxed { + struct LinkedList_1_T_Enumerator_System_Net_WebOperation___Class *klass; + MonitorData *monitor; + struct LinkedList_1_T_Enumerator_System_Net_WebOperation_ fields; +}; + +struct LinkedList_1_T_Enumerator_System_Net_WebOperation___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; + VirtualInvokeData System_Runtime_Serialization_ISerializable_GetObjectData; + VirtualInvokeData System_Runtime_Serialization_IDeserializationCallback_OnDeserialization; +}; + +struct LinkedList_1_T_Enumerator_System_Net_WebOperation___StaticFields { +}; + +struct LinkedList_1_T_Enumerator_System_Net_WebOperation___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct LinkedList_1_T_Enumerator_System_Net_WebOperation___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct LinkedList_1_T_Enumerator_System_Net_WebOperation___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_String_System_Net_ServicePointScheduler_ConnectionGroup_ { + struct Dictionary_2_System_String_System_Net_ServicePointScheduler_ConnectionGroup_ *_dictionary; + int32_t _version; + int32_t _index; + struct KeyValuePair_2_System_String_System_Net_ServicePointScheduler_ConnectionGroup_ _current; + int32_t _getEnumeratorRetType; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_String_System_Net_ServicePointScheduler_ConnectionGroup___Boxed { + struct Dictionary_2_TKey_TValue_Enumerator_System_String_System_Net_ServicePointScheduler_ConnectionGroup___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Enumerator_System_String_System_Net_ServicePointScheduler_ConnectionGroup_ fields; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_String_System_Net_ServicePointScheduler_ConnectionGroup___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Key; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Value; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Entry; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_String_System_Net_ServicePointScheduler_ConnectionGroup___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_String_System_Net_ServicePointScheduler_ConnectionGroup___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Enumerator_System_String_System_Net_ServicePointScheduler_ConnectionGroup___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Enumerator_System_String_System_Net_ServicePointScheduler_ConnectionGroup___VTable vtable; +}; + +struct IEnumerator_1_System_Net_ServicePoint_ { + struct IEnumerator_1_System_Net_ServicePoint___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerator_1_System_Net_ServicePoint___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_System_Net_ServicePoint___StaticFields { +}; + +struct IEnumerator_1_System_Net_ServicePoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_System_Net_ServicePoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_System_Net_ServicePoint___VTable vtable; +}; + +struct Action_3_Opsive_UltimateCharacterController_Items_Item_Opsive_Shared_Inventory_IItemIdentifier_Int32___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_3_Opsive_UltimateCharacterController_Items_Item_Opsive_Shared_Inventory_IItemIdentifier_Int32_ { + struct Action_3_Opsive_UltimateCharacterController_Items_Item_Opsive_Shared_Inventory_IItemIdentifier_Int32___Class *klass; + MonitorData *monitor; + struct Action_3_Opsive_UltimateCharacterController_Items_Item_Opsive_Shared_Inventory_IItemIdentifier_Int32___Fields fields; +}; + +struct Action_3_Opsive_UltimateCharacterController_Items_Item_Opsive_Shared_Inventory_IItemIdentifier_Int32___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_3_Opsive_UltimateCharacterController_Items_Item_Opsive_Shared_Inventory_IItemIdentifier_Int32___StaticFields { +}; + +struct Action_3_Opsive_UltimateCharacterController_Items_Item_Opsive_Shared_Inventory_IItemIdentifier_Int32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_3_Opsive_UltimateCharacterController_Items_Item_Opsive_Shared_Inventory_IItemIdentifier_Int32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_3_Opsive_UltimateCharacterController_Items_Item_Opsive_Shared_Inventory_IItemIdentifier_Int32___VTable vtable; +}; + +struct Action_2_Opsive_Shared_Inventory_IItemIdentifier_Int32___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_2_Opsive_Shared_Inventory_IItemIdentifier_Int32_ { + struct Action_2_Opsive_Shared_Inventory_IItemIdentifier_Int32___Class *klass; + MonitorData *monitor; + struct Action_2_Opsive_Shared_Inventory_IItemIdentifier_Int32___Fields fields; +}; + +struct Action_2_Opsive_Shared_Inventory_IItemIdentifier_Int32___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_2_Opsive_Shared_Inventory_IItemIdentifier_Int32___StaticFields { +}; + +struct Action_2_Opsive_Shared_Inventory_IItemIdentifier_Int32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_2_Opsive_Shared_Inventory_IItemIdentifier_Int32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_2_Opsive_Shared_Inventory_IItemIdentifier_Int32___VTable vtable; +}; + +struct Action_4_Opsive_Shared_Inventory_IItemIdentifier_Int32_Boolean_Boolean___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_4_Opsive_Shared_Inventory_IItemIdentifier_Int32_Boolean_Boolean_ { + struct Action_4_Opsive_Shared_Inventory_IItemIdentifier_Int32_Boolean_Boolean___Class *klass; + MonitorData *monitor; + struct Action_4_Opsive_Shared_Inventory_IItemIdentifier_Int32_Boolean_Boolean___Fields fields; +}; + +struct Action_4_Opsive_Shared_Inventory_IItemIdentifier_Int32_Boolean_Boolean___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_4_Opsive_Shared_Inventory_IItemIdentifier_Int32_Boolean_Boolean___StaticFields { +}; + +struct Action_4_Opsive_Shared_Inventory_IItemIdentifier_Int32_Boolean_Boolean___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_4_Opsive_Shared_Inventory_IItemIdentifier_Int32_Boolean_Boolean___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_4_Opsive_Shared_Inventory_IItemIdentifier_Int32_Boolean_Boolean___VTable vtable; +}; + +struct IList_1_Opsive_UltimateCharacterController_Camera_ViewTypes_ViewType_ { + struct IList_1_Opsive_UltimateCharacterController_Camera_ViewTypes_ViewType___Class *klass; + MonitorData *monitor; +}; + +struct IList_1_Opsive_UltimateCharacterController_Camera_ViewTypes_ViewType___VTable { + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; +}; + +struct IList_1_Opsive_UltimateCharacterController_Camera_ViewTypes_ViewType___StaticFields { +}; + +struct IList_1_Opsive_UltimateCharacterController_Camera_ViewTypes_ViewType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IList_1_Opsive_UltimateCharacterController_Camera_ViewTypes_ViewType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IList_1_Opsive_UltimateCharacterController_Camera_ViewTypes_ViewType___VTable vtable; +}; + +struct __declspec(align(8)) List_1_Opsive_UltimateCharacterController_Camera_ViewTypes_ViewType___Fields { + struct ViewType__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Opsive_UltimateCharacterController_Camera_ViewTypes_ViewType_ { + struct List_1_Opsive_UltimateCharacterController_Camera_ViewTypes_ViewType___Class *klass; + MonitorData *monitor; + struct List_1_Opsive_UltimateCharacterController_Camera_ViewTypes_ViewType___Fields fields; +}; + +struct IEnumerator_1_Opsive_UltimateCharacterController_Camera_ViewTypes_ViewType_ { + struct IEnumerator_1_Opsive_UltimateCharacterController_Camera_ViewTypes_ViewType___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerator_1_Opsive_UltimateCharacterController_Camera_ViewTypes_ViewType___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_Opsive_UltimateCharacterController_Camera_ViewTypes_ViewType___StaticFields { +}; + +struct IEnumerator_1_Opsive_UltimateCharacterController_Camera_ViewTypes_ViewType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_Opsive_UltimateCharacterController_Camera_ViewTypes_ViewType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_Opsive_UltimateCharacterController_Camera_ViewTypes_ViewType___VTable vtable; +}; + +struct List_1_Opsive_UltimateCharacterController_Camera_ViewTypes_ViewType___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_Opsive_UltimateCharacterController_Camera_ViewTypes_ViewType___StaticFields { + struct ViewType__Array *s_emptyArray; +}; + +struct List_1_Opsive_UltimateCharacterController_Camera_ViewTypes_ViewType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Opsive_UltimateCharacterController_Camera_ViewTypes_ViewType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Opsive_UltimateCharacterController_Camera_ViewTypes_ViewType___VTable vtable; +}; + +struct IEnumerable_1_Opsive_UltimateCharacterController_Camera_ViewTypes_ViewType_ { + struct IEnumerable_1_Opsive_UltimateCharacterController_Camera_ViewTypes_ViewType___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_Opsive_UltimateCharacterController_Camera_ViewTypes_ViewType___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_Opsive_UltimateCharacterController_Camera_ViewTypes_ViewType___StaticFields { +}; + +struct IEnumerable_1_Opsive_UltimateCharacterController_Camera_ViewTypes_ViewType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_Opsive_UltimateCharacterController_Camera_ViewTypes_ViewType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_Opsive_UltimateCharacterController_Camera_ViewTypes_ViewType___VTable vtable; +}; + +struct ViewTypeBuilder { + struct ViewTypeBuilder__Class *klass; + MonitorData *monitor; +}; + +struct ViewTypeBuilder__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ViewTypeBuilder__StaticFields { + struct Dictionary_2_System_Type_Opsive_UltimateCharacterController_StateSystem_AddState_ *s_AddStates; +}; + +struct ViewTypeBuilder__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ViewTypeBuilder__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ViewTypeBuilder__VTable vtable; +}; + +struct List_1_T_Enumerator_System_Net_MonoChunkParser_Chunk_ { + struct List_1_System_Net_MonoChunkParser_Chunk_ *_list; + int32_t _index; + int32_t _version; + struct MonoChunkParser_Chunk *_current; +}; + +struct List_1_T_Enumerator_System_Net_MonoChunkParser_Chunk___Boxed { + struct List_1_T_Enumerator_System_Net_MonoChunkParser_Chunk___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_System_Net_MonoChunkParser_Chunk_ fields; +}; + +struct __declspec(align(8)) List_1_System_Net_MonoChunkParser_Chunk___Fields { + struct MonoChunkParser_Chunk__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_System_Net_MonoChunkParser_Chunk_ { + struct List_1_System_Net_MonoChunkParser_Chunk___Class *klass; + MonitorData *monitor; + struct List_1_System_Net_MonoChunkParser_Chunk___Fields fields; +}; + +struct MonoChunkParser_Chunk__Array { + struct MonoChunkParser_Chunk__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct MonoChunkParser_Chunk *vector[32]; +}; + +struct IEnumerator_1_System_Net_MonoChunkParser_Chunk_ { + struct IEnumerator_1_System_Net_MonoChunkParser_Chunk___Class *klass; + MonitorData *monitor; +}; + +struct MonoChunkParser_Chunk__Array__VTable { +}; + +struct MonoChunkParser_Chunk__Array__StaticFields { +}; + +struct MonoChunkParser_Chunk__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MonoChunkParser_Chunk__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MonoChunkParser_Chunk__Array__VTable vtable; +}; + +struct IEnumerator_1_System_Net_MonoChunkParser_Chunk___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_System_Net_MonoChunkParser_Chunk___StaticFields { +}; + +struct IEnumerator_1_System_Net_MonoChunkParser_Chunk___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_System_Net_MonoChunkParser_Chunk___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_System_Net_MonoChunkParser_Chunk___VTable vtable; +}; + +struct List_1_System_Net_MonoChunkParser_Chunk___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_System_Net_MonoChunkParser_Chunk___StaticFields { + struct MonoChunkParser_Chunk__Array *s_emptyArray; +}; + +struct List_1_System_Net_MonoChunkParser_Chunk___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_System_Net_MonoChunkParser_Chunk___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_System_Net_MonoChunkParser_Chunk___VTable vtable; +}; + +struct List_1_T_Enumerator_System_Net_MonoChunkParser_Chunk___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_System_Net_MonoChunkParser_Chunk___StaticFields { +}; + +struct List_1_T_Enumerator_System_Net_MonoChunkParser_Chunk___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_System_Net_MonoChunkParser_Chunk___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_System_Net_MonoChunkParser_Chunk___VTable vtable; +}; + +struct ViewType___VTable { +}; + +struct ViewType___StaticFields { +}; + +struct ViewType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ViewType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ViewType___VTable vtable; +}; + +struct ItemPerspectiveProperties__Array { + struct ItemPerspectiveProperties__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct ItemPerspectiveProperties *vector[32]; +}; + +struct ItemPerspectiveProperties__Array__VTable { +}; + +struct ItemPerspectiveProperties__Array__StaticFields { +}; + +struct ItemPerspectiveProperties__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ItemPerspectiveProperties__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ItemPerspectiveProperties__Array__VTable vtable; +}; + +struct FirstPersonItemProperties__Array { + struct FirstPersonItemProperties__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct FirstPersonItemProperties *vector[32]; +}; + +struct FirstPersonItemProperties__Array__VTable { +}; + +struct FirstPersonItemProperties__Array__StaticFields { +}; + +struct FirstPersonItemProperties__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct FirstPersonItemProperties__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct FirstPersonItemProperties__Array__VTable vtable; +}; + +struct FirstPersonBaseObject__Array { + struct FirstPersonBaseObject__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct FirstPersonBaseObject *vector[32]; +}; + +struct FirstPersonBaseObject__Array__VTable { +}; + +struct FirstPersonBaseObject__Array__StaticFields { +}; + +struct FirstPersonBaseObject__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct FirstPersonBaseObject__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct FirstPersonBaseObject__Array__VTable vtable; +}; + +struct ThirdPersonItemProperties__Array { + struct ThirdPersonItemProperties__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct ThirdPersonItemProperties *vector[32]; +}; + +struct ThirdPersonItemProperties__Array__VTable { +}; + +struct ThirdPersonItemProperties__Array__StaticFields { +}; + +struct ThirdPersonItemProperties__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ThirdPersonItemProperties__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ThirdPersonItemProperties__Array__VTable vtable; +}; + +struct ConfiguredTaskAwaitable_1_System_Net_BufferOffsetSize_ { + struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_BufferOffsetSize_ m_configuredTaskAwaiter; +}; + +struct ConfiguredTaskAwaitable_1_System_Net_BufferOffsetSize___Boxed { + struct ConfiguredTaskAwaitable_1_System_Net_BufferOffsetSize___Class *klass; + MonitorData *monitor; + struct ConfiguredTaskAwaitable_1_System_Net_BufferOffsetSize_ fields; +}; + +struct ConfiguredTaskAwaitable_1_System_Net_BufferOffsetSize___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ConfiguredTaskAwaitable_1_System_Net_BufferOffsetSize___StaticFields { +}; + +struct ConfiguredTaskAwaitable_1_System_Net_BufferOffsetSize___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ConfiguredTaskAwaitable_1_System_Net_BufferOffsetSize___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ConfiguredTaskAwaitable_1_System_Net_BufferOffsetSize___VTable vtable; +}; + +struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_BufferOffsetSize__1__VTable { +}; + +struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_BufferOffsetSize__1__StaticFields { +}; + +struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_BufferOffsetSize__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_BufferOffsetSize__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_BufferOffsetSize__1__VTable vtable; +}; + +struct ConfiguredTaskAwaitable_1_System_ValueTuple_5__1 { + struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_5_ m_configuredTaskAwaiter; +}; + +struct ConfiguredTaskAwaitable_1_System_ValueTuple_5__1__Boxed { + struct ConfiguredTaskAwaitable_1_System_ValueTuple_5__1__Class *klass; + MonitorData *monitor; + struct ConfiguredTaskAwaitable_1_System_ValueTuple_5__1 fields; +}; + +struct ConfiguredTaskAwaitable_1_System_ValueTuple_5__1__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ConfiguredTaskAwaitable_1_System_ValueTuple_5__1__StaticFields { +}; + +struct ConfiguredTaskAwaitable_1_System_ValueTuple_5__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ConfiguredTaskAwaitable_1_System_ValueTuple_5__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ConfiguredTaskAwaitable_1_System_ValueTuple_5__1__VTable vtable; +}; + +struct IList_1_Opsive_UltimateCharacterController_Character_MovementTypes_MovementType_ { + struct IList_1_Opsive_UltimateCharacterController_Character_MovementTypes_MovementType___Class *klass; + MonitorData *monitor; +}; + +struct IList_1_Opsive_UltimateCharacterController_Character_MovementTypes_MovementType___VTable { + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; +}; + +struct IList_1_Opsive_UltimateCharacterController_Character_MovementTypes_MovementType___StaticFields { +}; + +struct IList_1_Opsive_UltimateCharacterController_Character_MovementTypes_MovementType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IList_1_Opsive_UltimateCharacterController_Character_MovementTypes_MovementType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IList_1_Opsive_UltimateCharacterController_Character_MovementTypes_MovementType___VTable vtable; +}; + +struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_WebRequestStream__1__VTable { +}; + +struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_WebRequestStream__1__StaticFields { +}; + +struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_WebRequestStream__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_WebRequestStream__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_WebRequestStream__1__VTable vtable; +}; + +struct __declspec(align(8)) List_1_Opsive_UltimateCharacterController_Character_MovementTypes_MovementType___Fields { + struct MovementType__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Opsive_UltimateCharacterController_Character_MovementTypes_MovementType_ { + struct List_1_Opsive_UltimateCharacterController_Character_MovementTypes_MovementType___Class *klass; + MonitorData *monitor; + struct List_1_Opsive_UltimateCharacterController_Character_MovementTypes_MovementType___Fields fields; +}; + +struct IEnumerator_1_Opsive_UltimateCharacterController_Character_MovementTypes_MovementType_ { + struct IEnumerator_1_Opsive_UltimateCharacterController_Character_MovementTypes_MovementType___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerator_1_Opsive_UltimateCharacterController_Character_MovementTypes_MovementType___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_Opsive_UltimateCharacterController_Character_MovementTypes_MovementType___StaticFields { +}; + +struct IEnumerator_1_Opsive_UltimateCharacterController_Character_MovementTypes_MovementType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_Opsive_UltimateCharacterController_Character_MovementTypes_MovementType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_Opsive_UltimateCharacterController_Character_MovementTypes_MovementType___VTable vtable; +}; + +struct List_1_Opsive_UltimateCharacterController_Character_MovementTypes_MovementType___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_Opsive_UltimateCharacterController_Character_MovementTypes_MovementType___StaticFields { + struct MovementType__Array *s_emptyArray; +}; + +struct List_1_Opsive_UltimateCharacterController_Character_MovementTypes_MovementType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Opsive_UltimateCharacterController_Character_MovementTypes_MovementType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Opsive_UltimateCharacterController_Character_MovementTypes_MovementType___VTable vtable; +}; + +struct VisualElement__1__VTable { +}; + +struct VisualElement__1__StaticFields { +}; + +struct VisualElement__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct VisualElement__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct VisualElement__1__VTable vtable; +}; + +struct ConfiguredTaskAwaitable_1_System_Net_WebRequestStream_ { + struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_WebRequestStream_ m_configuredTaskAwaiter; +}; + +struct ConfiguredTaskAwaitable_1_System_Net_WebRequestStream___Boxed { + struct ConfiguredTaskAwaitable_1_System_Net_WebRequestStream___Class *klass; + MonitorData *monitor; + struct ConfiguredTaskAwaitable_1_System_Net_WebRequestStream_ fields; +}; + +struct ConfiguredTaskAwaitable_1_System_Net_WebRequestStream___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ConfiguredTaskAwaitable_1_System_Net_WebRequestStream___StaticFields { +}; + +struct ConfiguredTaskAwaitable_1_System_Net_WebRequestStream___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ConfiguredTaskAwaitable_1_System_Net_WebRequestStream___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ConfiguredTaskAwaitable_1_System_Net_WebRequestStream___VTable vtable; +}; + +struct IEnumerable_1_Opsive_UltimateCharacterController_Character_MovementTypes_MovementType_ { + struct IEnumerable_1_Opsive_UltimateCharacterController_Character_MovementTypes_MovementType___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_Opsive_UltimateCharacterController_Character_MovementTypes_MovementType___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_Opsive_UltimateCharacterController_Character_MovementTypes_MovementType___StaticFields { +}; + +struct IEnumerable_1_Opsive_UltimateCharacterController_Character_MovementTypes_MovementType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_Opsive_UltimateCharacterController_Character_MovementTypes_MovementType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_Opsive_UltimateCharacterController_Character_MovementTypes_MovementType___VTable vtable; +}; + +struct TaskAwaiter_1_System_Net_WebResponseStream__1__VTable { +}; + +struct TaskAwaiter_1_System_Net_WebResponseStream__1__StaticFields { +}; + +struct TaskAwaiter_1_System_Net_WebResponseStream__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TaskAwaiter_1_System_Net_WebResponseStream__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TaskAwaiter_1_System_Net_WebResponseStream__1__VTable vtable; +}; + +struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_5__3__VTable { +}; + +struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_5__3__StaticFields { +}; + +struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_5__3__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_5__3__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_5__3__VTable vtable; +}; + +struct Func_1_System_Threading_Tasks_Task_1__3__Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_1_System_Threading_Tasks_Task_1__3 { + struct Func_1_System_Threading_Tasks_Task_1__3__Class *klass; + MonitorData *monitor; + struct Func_1_System_Threading_Tasks_Task_1__3__Fields fields; +}; + +struct Func_1_System_Threading_Tasks_Task_1__3__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_1_System_Threading_Tasks_Task_1__3__StaticFields { +}; + +struct Func_1_System_Threading_Tasks_Task_1__3__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_1_System_Threading_Tasks_Task_1__3__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_1_System_Threading_Tasks_Task_1__3__VTable vtable; +}; + +struct Func_2_System_Threading_CancellationToken_System_Threading_Tasks_Task_1__2__Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_2_System_Threading_CancellationToken_System_Threading_Tasks_Task_1__2 { + struct Func_2_System_Threading_CancellationToken_System_Threading_Tasks_Task_1__2__Class *klass; + MonitorData *monitor; + struct Func_2_System_Threading_CancellationToken_System_Threading_Tasks_Task_1__2__Fields fields; +}; + +struct Func_2_System_Threading_CancellationToken_System_Threading_Tasks_Task_1__2__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_2_System_Threading_CancellationToken_System_Threading_Tasks_Task_1__2__StaticFields { +}; + +struct Func_2_System_Threading_CancellationToken_System_Threading_Tasks_Task_1__2__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_2_System_Threading_CancellationToken_System_Threading_Tasks_Task_1__2__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_2_System_Threading_CancellationToken_System_Threading_Tasks_Task_1__2__VTable vtable; +}; + +struct Func_2_System_Threading_CancellationToken_System_Threading_Tasks_Task_1__3__Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_2_System_Threading_CancellationToken_System_Threading_Tasks_Task_1__3 { + struct Func_2_System_Threading_CancellationToken_System_Threading_Tasks_Task_1__3__Class *klass; + MonitorData *monitor; + struct Func_2_System_Threading_CancellationToken_System_Threading_Tasks_Task_1__3__Fields fields; +}; + +struct Func_2_System_Threading_CancellationToken_System_Threading_Tasks_Task_1__3__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_2_System_Threading_CancellationToken_System_Threading_Tasks_Task_1__3__StaticFields { +}; + +struct Func_2_System_Threading_CancellationToken_System_Threading_Tasks_Task_1__3__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_2_System_Threading_CancellationToken_System_Threading_Tasks_Task_1__3__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_2_System_Threading_CancellationToken_System_Threading_Tasks_Task_1__3__VTable vtable; +}; + +struct __declspec(align(8)) List_1_Opsive_UltimateCharacterController_Character_Abilities_Items_ItemAbility___Fields { + struct ItemAbility__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Opsive_UltimateCharacterController_Character_Abilities_Items_ItemAbility_ { + struct List_1_Opsive_UltimateCharacterController_Character_Abilities_Items_ItemAbility___Class *klass; + MonitorData *monitor; + struct List_1_Opsive_UltimateCharacterController_Character_Abilities_Items_ItemAbility___Fields fields; +}; + +struct List_1_Opsive_UltimateCharacterController_Character_Abilities_Items_ItemAbility___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_Opsive_UltimateCharacterController_Character_Abilities_Items_ItemAbility___StaticFields { + struct ItemAbility__Array *s_emptyArray; +}; + +struct List_1_Opsive_UltimateCharacterController_Character_Abilities_Items_ItemAbility___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Opsive_UltimateCharacterController_Character_Abilities_Items_ItemAbility___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Opsive_UltimateCharacterController_Character_Abilities_Items_ItemAbility___VTable vtable; +}; + +struct IList_1_Opsive_UltimateCharacterController_Character_Abilities_Ability_ { + struct IList_1_Opsive_UltimateCharacterController_Character_Abilities_Ability___Class *klass; + MonitorData *monitor; +}; + +struct IList_1_Opsive_UltimateCharacterController_Character_Abilities_Ability___VTable { + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; +}; + +struct IList_1_Opsive_UltimateCharacterController_Character_Abilities_Ability___StaticFields { +}; + +struct IList_1_Opsive_UltimateCharacterController_Character_Abilities_Ability___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IList_1_Opsive_UltimateCharacterController_Character_Abilities_Ability___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IList_1_Opsive_UltimateCharacterController_Character_Abilities_Ability___VTable vtable; +}; + +struct IEnumerable_1_Opsive_UltimateCharacterController_Character_Abilities_Ability_ { + struct IEnumerable_1_Opsive_UltimateCharacterController_Character_Abilities_Ability___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_Opsive_UltimateCharacterController_Character_Abilities_Ability___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_Opsive_UltimateCharacterController_Character_Abilities_Ability___StaticFields { +}; + +struct IEnumerable_1_Opsive_UltimateCharacterController_Character_Abilities_Ability___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_Opsive_UltimateCharacterController_Character_Abilities_Ability___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_Opsive_UltimateCharacterController_Character_Abilities_Ability___VTable vtable; +}; + +struct ItemAbility___VTable { +}; + +struct ItemAbility___StaticFields { +}; + +struct ItemAbility___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ItemAbility___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ItemAbility___VTable vtable; +}; + +struct IList_1_Opsive_UltimateCharacterController_Character_Abilities_Items_ItemAbility_ { + struct IList_1_Opsive_UltimateCharacterController_Character_Abilities_Items_ItemAbility___Class *klass; + MonitorData *monitor; +}; + +struct IList_1_Opsive_UltimateCharacterController_Character_Abilities_Items_ItemAbility___VTable { + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; +}; + +struct IList_1_Opsive_UltimateCharacterController_Character_Abilities_Items_ItemAbility___StaticFields { +}; + +struct IList_1_Opsive_UltimateCharacterController_Character_Abilities_Items_ItemAbility___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IList_1_Opsive_UltimateCharacterController_Character_Abilities_Items_ItemAbility___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IList_1_Opsive_UltimateCharacterController_Character_Abilities_Items_ItemAbility___VTable vtable; +}; + +struct HttpValidationHelpers { + struct HttpValidationHelpers__Class *klass; + MonitorData *monitor; +}; + +struct HttpValidationHelpers__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct HttpValidationHelpers__StaticFields { + struct Char__Array *s_httpTrimCharacters; +}; + +struct HttpValidationHelpers__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HttpValidationHelpers__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HttpValidationHelpers__VTable vtable; +}; + +struct Ability___VTable { +}; + +struct Ability___StaticFields { +}; + +struct Ability___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Ability___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Ability___VTable vtable; +}; + +struct CameraController__Array { + struct CameraController__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct CameraController *vector[32]; +}; + +struct CameraController__Array__VTable { +}; + +struct CameraController__Array__StaticFields { +}; + +struct CameraController__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CameraController__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CameraController__Array__VTable vtable; +}; + +struct List_1_T_Enumerator_UnityEngine_Light_ { + struct List_1_UnityEngine_Light_ *_list; + int32_t _index; + int32_t _version; + struct Light *_current; +}; + +struct List_1_T_Enumerator_UnityEngine_Light___Boxed { + struct List_1_T_Enumerator_UnityEngine_Light___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_UnityEngine_Light_ fields; +}; + +struct List_1_T_Enumerator_UnityEngine_Light___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_UnityEngine_Light___StaticFields { +}; + +struct List_1_T_Enumerator_UnityEngine_Light___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_UnityEngine_Light___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_UnityEngine_Light___VTable vtable; +}; + +struct List_1_T_Enumerator_UnityEngine_ParticleSystem_ { + struct List_1_UnityEngine_ParticleSystem_ *_list; + int32_t _index; + int32_t _version; + struct ParticleSystem *_current; +}; + +struct List_1_T_Enumerator_UnityEngine_ParticleSystem___Boxed { + struct List_1_T_Enumerator_UnityEngine_ParticleSystem___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_UnityEngine_ParticleSystem_ fields; +}; + +struct List_1_T_Enumerator_UnityEngine_ParticleSystem___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_UnityEngine_ParticleSystem___StaticFields { +}; + +struct List_1_T_Enumerator_UnityEngine_ParticleSystem___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_UnityEngine_ParticleSystem___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_UnityEngine_ParticleSystem___VTable vtable; +}; + +struct AssetInfo { + struct AssetInfo__Class *klass; + MonitorData *monitor; +}; + +struct AssetInfo__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct AssetInfo__StaticFields { + struct String *s_Version; +}; + +struct AssetInfo__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct AssetInfo__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct AssetInfo__VTable vtable; +}; + +struct List_1_T_Enumerator_CharacterEmote_ { + struct List_1_CharacterEmote_ *_list; + int32_t _index; + int32_t _version; + struct CharacterEmote *_current; +}; + +struct List_1_T_Enumerator_CharacterEmote___Boxed { + struct List_1_T_Enumerator_CharacterEmote___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_CharacterEmote_ fields; +}; + +struct List_1_T_Enumerator_CharacterEmote___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_CharacterEmote___StaticFields { +}; + +struct List_1_T_Enumerator_CharacterEmote___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_CharacterEmote___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_CharacterEmote___VTable vtable; +}; + +struct Action_2_UnityEngine_RaycastHit_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_2_UnityEngine_RaycastHit_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact_ { + struct Action_2_UnityEngine_RaycastHit_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact___Class *klass; + MonitorData *monitor; + struct Action_2_UnityEngine_RaycastHit_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact___Fields fields; +}; + +struct Action_2_UnityEngine_RaycastHit_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_2_UnityEngine_RaycastHit_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact___StaticFields { +}; + +struct Action_2_UnityEngine_RaycastHit_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_2_UnityEngine_RaycastHit_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_2_UnityEngine_RaycastHit_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact___VTable vtable; +}; + +struct Action_2_Opsive_UltimateCharacterController_Character_MovementTypes_MovementType_Boolean___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_2_Opsive_UltimateCharacterController_Character_MovementTypes_MovementType_Boolean_ { + struct Action_2_Opsive_UltimateCharacterController_Character_MovementTypes_MovementType_Boolean___Class *klass; + MonitorData *monitor; + struct Action_2_Opsive_UltimateCharacterController_Character_MovementTypes_MovementType_Boolean___Fields fields; +}; + +struct Action_2_Opsive_UltimateCharacterController_Character_MovementTypes_MovementType_Boolean___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_2_Opsive_UltimateCharacterController_Character_MovementTypes_MovementType_Boolean___StaticFields { +}; + +struct Action_2_Opsive_UltimateCharacterController_Character_MovementTypes_MovementType_Boolean___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_2_Opsive_UltimateCharacterController_Character_MovementTypes_MovementType_Boolean___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_2_Opsive_UltimateCharacterController_Character_MovementTypes_MovementType_Boolean___VTable vtable; +}; + +struct UIZone__Array { + struct UIZone__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct UIZone *vector[32]; +}; + +struct UIZone__Array__VTable { +}; + +struct UIZone__Array__StaticFields { +}; + +struct UIZone__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct UIZone__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct UIZone__Array__VTable vtable; +}; + +struct __declspec(align(8)) List_1_Opsive_UltimateCharacterController_Demo_DemoManager_DemoZone___Fields { + struct DemoManager_DemoZone__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Opsive_UltimateCharacterController_Demo_DemoManager_DemoZone_ { + struct List_1_Opsive_UltimateCharacterController_Demo_DemoManager_DemoZone___Class *klass; + MonitorData *monitor; + struct List_1_Opsive_UltimateCharacterController_Demo_DemoManager_DemoZone___Fields fields; +}; + +struct List_1_Opsive_UltimateCharacterController_Demo_DemoManager_DemoZone___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_Opsive_UltimateCharacterController_Demo_DemoManager_DemoZone___StaticFields { + struct DemoManager_DemoZone__Array *s_emptyArray; +}; + +struct List_1_Opsive_UltimateCharacterController_Demo_DemoManager_DemoZone___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Opsive_UltimateCharacterController_Demo_DemoManager_DemoZone___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Opsive_UltimateCharacterController_Demo_DemoManager_DemoZone___VTable vtable; +}; + +struct IEnumerable_1_AnimalGateSpawnPoint_ { + struct IEnumerable_1_AnimalGateSpawnPoint___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_AnimalGateSpawnPoint___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_AnimalGateSpawnPoint___StaticFields { +}; + +struct IEnumerable_1_AnimalGateSpawnPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_AnimalGateSpawnPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_AnimalGateSpawnPoint___VTable vtable; +}; + +struct List_1_T_Enumerator_AnimalGateSpawnPoint_ { + struct List_1_AnimalGateSpawnPoint_ *_list; + int32_t _index; + int32_t _version; + struct AnimalGateSpawnPoint *_current; +}; + +struct List_1_T_Enumerator_AnimalGateSpawnPoint___Boxed { + struct List_1_T_Enumerator_AnimalGateSpawnPoint___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_AnimalGateSpawnPoint_ fields; +}; + +struct List_1_T_Enumerator_AnimalGateSpawnPoint___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_AnimalGateSpawnPoint___StaticFields { +}; + +struct List_1_T_Enumerator_AnimalGateSpawnPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_AnimalGateSpawnPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_AnimalGateSpawnPoint___VTable vtable; +}; + +struct IList_1_AnimalGateSpawnPoint_ { + struct IList_1_AnimalGateSpawnPoint___Class *klass; + MonitorData *monitor; +}; + +struct IList_1_AnimalGateSpawnPoint___VTable { + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; +}; + +struct IList_1_AnimalGateSpawnPoint___StaticFields { +}; + +struct IList_1_AnimalGateSpawnPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IList_1_AnimalGateSpawnPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IList_1_AnimalGateSpawnPoint___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_Horror_DoorBehaviour_System_Boolean_ { + struct Dictionary_2_Horror_DoorBehaviour_System_Boolean_ *_dictionary; + int32_t _version; + int32_t _index; + struct KeyValuePair_2_Horror_DoorBehaviour_System_Boolean_ _current; + int32_t _getEnumeratorRetType; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_Horror_DoorBehaviour_System_Boolean___Boxed { + struct Dictionary_2_TKey_TValue_Enumerator_Horror_DoorBehaviour_System_Boolean___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Enumerator_Horror_DoorBehaviour_System_Boolean_ fields; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_Horror_DoorBehaviour_System_Boolean___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Key; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Value; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Entry; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_Horror_DoorBehaviour_System_Boolean___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Enumerator_Horror_DoorBehaviour_System_Boolean___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Enumerator_Horror_DoorBehaviour_System_Boolean___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Enumerator_Horror_DoorBehaviour_System_Boolean___VTable vtable; +}; + +struct TownPentagramController__Array { + struct TownPentagramController__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct TownPentagramController *vector[32]; +}; + +struct TownPentagramController__Array__VTable { +}; + +struct TownPentagramController__Array__StaticFields { +}; + +struct TownPentagramController__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TownPentagramController__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TownPentagramController__Array__VTable vtable; +}; + +struct List_1_T_Enumerator_ManorSpirit_ { + struct List_1_ManorSpirit_ *_list; + int32_t _index; + int32_t _version; + struct ManorSpirit *_current; +}; + +struct List_1_T_Enumerator_ManorSpirit___Boxed { + struct List_1_T_Enumerator_ManorSpirit___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_ManorSpirit_ fields; +}; + +struct List_1_T_Enumerator_ManorSpirit___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_ManorSpirit___StaticFields { +}; + +struct List_1_T_Enumerator_ManorSpirit___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_ManorSpirit___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_ManorSpirit___VTable vtable; +}; + +struct LockboxBehaviour__Array { + struct LockboxBehaviour__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct LockboxBehaviour *vector[32]; +}; + +struct LockboxBehaviour__Array__VTable { +}; + +struct LockboxBehaviour__Array__StaticFields { +}; + +struct LockboxBehaviour__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct LockboxBehaviour__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct LockboxBehaviour__Array__VTable vtable; +}; + +struct InnWebController__Array { + struct InnWebController__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct InnWebController *vector[32]; +}; + +struct InnWebController__Array__VTable { +}; + +struct InnWebController__Array__StaticFields { +}; + +struct InnWebController__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InnWebController__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InnWebController__Array__VTable vtable; +}; + +struct MotionBlur___VTable { +}; + +struct MotionBlur___StaticFields { +}; + +struct MotionBlur___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MotionBlur___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MotionBlur___VTable vtable; +}; + +struct DepthOfField___VTable { +}; + +struct DepthOfField___StaticFields { +}; + +struct DepthOfField___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DepthOfField___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DepthOfField___VTable vtable; +}; + +struct ChromaticAberration___VTable { +}; + +struct ChromaticAberration___StaticFields { +}; + +struct ChromaticAberration___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ChromaticAberration___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ChromaticAberration___VTable vtable; +}; + +struct SystemNetworkInterface { + struct SystemNetworkInterface__Class *klass; + MonitorData *monitor; +}; + +struct SystemNetworkInterface__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct SystemNetworkInterface__StaticFields { + struct NetworkInterfaceFactory *nif; +}; + +struct SystemNetworkInterface__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SystemNetworkInterface__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SystemNetworkInterface__VTable vtable; +}; + +struct Func_2_IAsyncResult_System_Net_NetworkInformation_UnicastIPAddressInformationCollection___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_2_IAsyncResult_System_Net_NetworkInformation_UnicastIPAddressInformationCollection_ { + struct Func_2_IAsyncResult_System_Net_NetworkInformation_UnicastIPAddressInformationCollection___Class *klass; + MonitorData *monitor; + struct Func_2_IAsyncResult_System_Net_NetworkInformation_UnicastIPAddressInformationCollection___Fields fields; +}; + +struct Func_2_IAsyncResult_System_Net_NetworkInformation_UnicastIPAddressInformationCollection___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_2_IAsyncResult_System_Net_NetworkInformation_UnicastIPAddressInformationCollection___StaticFields { +}; + +struct Func_2_IAsyncResult_System_Net_NetworkInformation_UnicastIPAddressInformationCollection___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_2_IAsyncResult_System_Net_NetworkInformation_UnicastIPAddressInformationCollection___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_2_IAsyncResult_System_Net_NetworkInformation_UnicastIPAddressInformationCollection___VTable vtable; +}; + +struct Action_2_String_UnityEngine_GameObject___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_2_String_UnityEngine_GameObject_ { + struct Action_2_String_UnityEngine_GameObject___Class *klass; + MonitorData *monitor; + struct Action_2_String_UnityEngine_GameObject___Fields fields; +}; + +struct Action_2_String_UnityEngine_GameObject___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_2_String_UnityEngine_GameObject___StaticFields { +}; + +struct Action_2_String_UnityEngine_GameObject___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_2_String_UnityEngine_GameObject___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_2_String_UnityEngine_GameObject___VTable vtable; +}; + +struct ConfiguredTaskAwaitable_1_System_Byte_ { + struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Byte_ m_configuredTaskAwaiter; +}; + +struct ConfiguredTaskAwaitable_1_System_Byte___Boxed { + struct ConfiguredTaskAwaitable_1_System_Byte___Class *klass; + MonitorData *monitor; + struct ConfiguredTaskAwaitable_1_System_Byte_ fields; +}; + +struct ConfiguredTaskAwaitable_1_System_Byte___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ConfiguredTaskAwaitable_1_System_Byte___StaticFields { +}; + +struct ConfiguredTaskAwaitable_1_System_Byte___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ConfiguredTaskAwaitable_1_System_Byte___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ConfiguredTaskAwaitable_1_System_Byte___VTable vtable; +}; + +struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Byte__1__VTable { +}; + +struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Byte__1__StaticFields { +}; + +struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Byte__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Byte__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Byte__1__VTable vtable; +}; + +struct ConfiguredTaskAwaitable_1_System_ValueTuple_3__1 { + struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_3_ m_configuredTaskAwaiter; +}; + +struct ConfiguredTaskAwaitable_1_System_ValueTuple_3__1__Boxed { + struct ConfiguredTaskAwaitable_1_System_ValueTuple_3__1__Class *klass; + MonitorData *monitor; + struct ConfiguredTaskAwaitable_1_System_ValueTuple_3__1 fields; +}; + +struct ConfiguredTaskAwaitable_1_System_ValueTuple_3__1__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ConfiguredTaskAwaitable_1_System_ValueTuple_3__1__StaticFields { +}; + +struct ConfiguredTaskAwaitable_1_System_ValueTuple_3__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ConfiguredTaskAwaitable_1_System_ValueTuple_3__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ConfiguredTaskAwaitable_1_System_ValueTuple_3__1__VTable vtable; +}; + +struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_3__3__VTable { +}; + +struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_3__3__StaticFields { +}; + +struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_3__3__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_3__3__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_ValueTuple_3__3__VTable vtable; +}; + +struct TrackedPoseDriverDataDescription { + struct TrackedPoseDriverDataDescription__Class *klass; + MonitorData *monitor; +}; + +struct TrackedPoseDriverDataDescription__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct TrackedPoseDriverDataDescription__StaticFields { + struct List_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData_ *DeviceData; +}; + +struct TrackedPoseDriverDataDescription__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TrackedPoseDriverDataDescription__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TrackedPoseDriverDataDescription__VTable vtable; +}; + +struct PoseDataSource { + struct PoseDataSource__Class *klass; + MonitorData *monitor; +}; + +struct PoseDataSource__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct PoseDataSource__StaticFields { + struct List_1_UnityEngine_XR_XRNodeState_ *nodeStates; +}; + +struct PoseDataSource__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PoseDataSource__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PoseDataSource__VTable vtable; +}; + +struct List_1_T_Enumerator_NolanBehaviour_ { + struct List_1_NolanBehaviour_ *_list; + int32_t _index; + int32_t _version; + struct NolanBehaviour *_current; +}; + +struct List_1_T_Enumerator_NolanBehaviour___Boxed { + struct List_1_T_Enumerator_NolanBehaviour___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_NolanBehaviour_ fields; +}; + +struct List_1_T_Enumerator_NolanBehaviour___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_NolanBehaviour___StaticFields { +}; + +struct List_1_T_Enumerator_NolanBehaviour___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_NolanBehaviour___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_NolanBehaviour___VTable vtable; +}; + +struct Func_2_JumpScare_Int32___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_2_JumpScare_Int32_ { + struct Func_2_JumpScare_Int32___Class *klass; + MonitorData *monitor; + struct Func_2_JumpScare_Int32___Fields fields; +}; + +struct Func_2_JumpScare_Int32___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_2_JumpScare_Int32___StaticFields { +}; + +struct Func_2_JumpScare_Int32___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_2_JumpScare_Int32___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_2_JumpScare_Int32___VTable vtable; +}; + +struct IOrderedEnumerable_1_JumpScare_ { + struct IOrderedEnumerable_1_JumpScare___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_JumpScare_ { + struct IEnumerable_1_JumpScare___Class *klass; + MonitorData *monitor; +}; + +struct IOrderedEnumerable_1_JumpScare___VTable { + VirtualInvokeData CreateOrderedEnumerable; +}; + +struct IOrderedEnumerable_1_JumpScare___StaticFields { +}; + +struct IOrderedEnumerable_1_JumpScare___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IOrderedEnumerable_1_JumpScare___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IOrderedEnumerable_1_JumpScare___VTable vtable; +}; + +struct IEnumerable_1_JumpScare___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_JumpScare___StaticFields { +}; + +struct IEnumerable_1_JumpScare___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_JumpScare___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_JumpScare___VTable vtable; +}; + +struct DoorGraphUpdate__Array { + struct DoorGraphUpdate__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct DoorGraphUpdate *vector[32]; +}; + +struct DoorGraphUpdate__Array__VTable { +}; + +struct DoorGraphUpdate__Array__StaticFields { +}; + +struct DoorGraphUpdate__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DoorGraphUpdate__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DoorGraphUpdate__Array__VTable vtable; +}; + +struct PurgatoryGhostBehaviour__Array { + struct PurgatoryGhostBehaviour__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct PurgatoryGhostBehaviour *vector[32]; +}; + +struct PurgatoryGhostBehaviour__Array__VTable { +}; + +struct PurgatoryGhostBehaviour__Array__StaticFields { +}; + +struct PurgatoryGhostBehaviour__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PurgatoryGhostBehaviour__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PurgatoryGhostBehaviour__Array__VTable vtable; +}; + +struct PurgatoryCorpseBehaviour__Array { + struct PurgatoryCorpseBehaviour__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct PurgatoryCorpseBehaviour *vector[32]; +}; + +struct PurgatoryCorpseBehaviour__Array__VTable { +}; + +struct PurgatoryCorpseBehaviour__Array__StaticFields { +}; + +struct PurgatoryCorpseBehaviour__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PurgatoryCorpseBehaviour__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PurgatoryCorpseBehaviour__Array__VTable vtable; +}; + +struct List_1_T_Enumerator_Outline_ { + struct List_1_Outline_ *_list; + int32_t _index; + int32_t _version; + struct Outline *_current; +}; + +struct List_1_T_Enumerator_Outline___Boxed { + struct List_1_T_Enumerator_Outline___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_Outline_ fields; +}; + +struct List_1_T_Enumerator_Outline___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_Outline___StaticFields { +}; + +struct List_1_T_Enumerator_Outline___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_Outline___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_Outline___VTable vtable; +}; + +struct FlareLayer__Fields { + struct Behaviour__Fields _; +}; + +struct FlareLayer { + struct FlareLayer__Class *klass; + MonitorData *monitor; + struct FlareLayer__Fields fields; +}; + +struct FlareLayer__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct FlareLayer__StaticFields { +}; + +struct FlareLayer__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct FlareLayer__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct FlareLayer__VTable vtable; +}; + +struct IOrderedEnumerable_1_UnityEngine_GameObject_ { + struct IOrderedEnumerable_1_UnityEngine_GameObject___Class *klass; + MonitorData *monitor; +}; + +struct IOrderedEnumerable_1_UnityEngine_GameObject___VTable { + VirtualInvokeData CreateOrderedEnumerable; +}; + +struct IOrderedEnumerable_1_UnityEngine_GameObject___StaticFields { +}; + +struct IOrderedEnumerable_1_UnityEngine_GameObject___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IOrderedEnumerable_1_UnityEngine_GameObject___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IOrderedEnumerable_1_UnityEngine_GameObject___VTable vtable; +}; + +struct NightmareMaterialLoader__Array { + struct NightmareMaterialLoader__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct NightmareMaterialLoader *vector[32]; +}; + +struct NightmareMaterialLoader__Array__VTable { +}; + +struct NightmareMaterialLoader__Array__StaticFields { +}; + +struct NightmareMaterialLoader__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct NightmareMaterialLoader__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct NightmareMaterialLoader__Array__VTable vtable; +}; + +struct InitialItemSpawn__Array { + struct InitialItemSpawn__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct InitialItemSpawn *vector[32]; +}; + +struct InitialItemSpawn__Array__VTable { +}; + +struct InitialItemSpawn__Array__StaticFields { +}; + +struct InitialItemSpawn__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InitialItemSpawn__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InitialItemSpawn__Array__VTable vtable; +}; + +struct IEnumerable_1_HidingSpotController_ { + struct IEnumerable_1_HidingSpotController___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_HidingSpotController___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_HidingSpotController___StaticFields { +}; + +struct IEnumerable_1_HidingSpotController___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_HidingSpotController___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_HidingSpotController___VTable vtable; +}; + +struct IEnumerable_1_TrashCanSpawnPoint_ { + struct IEnumerable_1_TrashCanSpawnPoint___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_TrashCanSpawnPoint___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_TrashCanSpawnPoint___StaticFields { +}; + +struct IEnumerable_1_TrashCanSpawnPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_TrashCanSpawnPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_TrashCanSpawnPoint___VTable vtable; +}; + +struct List_1_T_Enumerator_UnityEngine_SubsystemsImplementation_SubsystemWithProvider_ { + struct List_1_UnityEngine_SubsystemsImplementation_SubsystemWithProvider_ *_list; + int32_t _index; + int32_t _version; + struct SubsystemWithProvider *_current; +}; + +struct List_1_T_Enumerator_UnityEngine_SubsystemsImplementation_SubsystemWithProvider___Boxed { + struct List_1_T_Enumerator_UnityEngine_SubsystemsImplementation_SubsystemWithProvider___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_UnityEngine_SubsystemsImplementation_SubsystemWithProvider_ fields; +}; + +struct List_1_T_Enumerator_UnityEngine_SubsystemsImplementation_SubsystemWithProvider___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_UnityEngine_SubsystemsImplementation_SubsystemWithProvider___StaticFields { +}; + +struct List_1_T_Enumerator_UnityEngine_SubsystemsImplementation_SubsystemWithProvider___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_UnityEngine_SubsystemsImplementation_SubsystemWithProvider___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_UnityEngine_SubsystemsImplementation_SubsystemWithProvider___VTable vtable; +}; + +struct List_1_T_Enumerator_UnityEngine_IntegratedSubsystemDescriptor_ { + struct List_1_UnityEngine_IntegratedSubsystemDescriptor_ *_list; + int32_t _index; + int32_t _version; + struct IntegratedSubsystemDescriptor *_current; +}; + +struct List_1_T_Enumerator_UnityEngine_IntegratedSubsystemDescriptor___Boxed { + struct List_1_T_Enumerator_UnityEngine_IntegratedSubsystemDescriptor___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_UnityEngine_IntegratedSubsystemDescriptor_ fields; +}; + +struct List_1_T_Enumerator_UnityEngine_IntegratedSubsystemDescriptor___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_UnityEngine_IntegratedSubsystemDescriptor___StaticFields { +}; + +struct List_1_T_Enumerator_UnityEngine_IntegratedSubsystemDescriptor___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_UnityEngine_IntegratedSubsystemDescriptor___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_UnityEngine_IntegratedSubsystemDescriptor___VTable vtable; +}; + +struct List_1_T_Enumerator_UnityEngine_IntegratedSubsystem_ { + struct List_1_UnityEngine_IntegratedSubsystem_ *_list; + int32_t _index; + int32_t _version; + struct IntegratedSubsystem *_current; +}; + +struct List_1_T_Enumerator_UnityEngine_IntegratedSubsystem___Boxed { + struct List_1_T_Enumerator_UnityEngine_IntegratedSubsystem___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_UnityEngine_IntegratedSubsystem_ fields; +}; + +struct List_1_T_Enumerator_UnityEngine_IntegratedSubsystem___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_UnityEngine_IntegratedSubsystem___StaticFields { +}; + +struct List_1_T_Enumerator_UnityEngine_IntegratedSubsystem___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_UnityEngine_IntegratedSubsystem___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_UnityEngine_IntegratedSubsystem___VTable vtable; +}; + +struct Func_2_f_AnonymousType3_2_Boolean___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_2_f_AnonymousType3_2_Boolean_ { + struct Func_2_f_AnonymousType3_2_Boolean___Class *klass; + MonitorData *monitor; + struct Func_2_f_AnonymousType3_2_Boolean___Fields fields; +}; + +struct Func_2_f_AnonymousType3_2_Boolean___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_2_f_AnonymousType3_2_Boolean___StaticFields { +}; + +struct Func_2_f_AnonymousType3_2_Boolean___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_2_f_AnonymousType3_2_Boolean___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_2_f_AnonymousType3_2_Boolean___VTable vtable; +}; + +struct IEnumerable_1_f_AnonymousType3_2__1 { + struct IEnumerable_1_f_AnonymousType3_2__1__Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_f_AnonymousType3_2__1__VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_f_AnonymousType3_2__1__StaticFields { +}; + +struct IEnumerable_1_f_AnonymousType3_2__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_f_AnonymousType3_2__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_f_AnonymousType3_2__1__VTable vtable; +}; + +struct Action_2_UnityEngine_GameObject_String___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_2_UnityEngine_GameObject_String_ { + struct Action_2_UnityEngine_GameObject_String___Class *klass; + MonitorData *monitor; + struct Action_2_UnityEngine_GameObject_String___Fields fields; +}; + +struct Action_2_UnityEngine_GameObject_String___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_2_UnityEngine_GameObject_String___StaticFields { +}; + +struct Action_2_UnityEngine_GameObject_String___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_2_UnityEngine_GameObject_String___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_2_UnityEngine_GameObject_String___VTable vtable; +}; + +struct HashSet_1_T_Enumerator_System_String_ { + struct HashSet_1_System_String_ *_set; + int32_t _index; + int32_t _version; + struct String *_current; +}; + +struct HashSet_1_T_Enumerator_System_String___Boxed { + struct HashSet_1_T_Enumerator_System_String___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Enumerator_System_String_ fields; +}; + +struct HashSet_1_T_Enumerator_System_String___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct HashSet_1_T_Enumerator_System_String___StaticFields { +}; + +struct HashSet_1_T_Enumerator_System_String___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_T_Enumerator_System_String___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_T_Enumerator_System_String___VTable vtable; +}; + +struct SpawnFirstDemon__Array { + struct SpawnFirstDemon__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct SpawnFirstDemon *vector[32]; +}; + +struct SpawnFirstDemon__Array__VTable { +}; + +struct SpawnFirstDemon__Array__StaticFields { +}; + +struct SpawnFirstDemon__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct SpawnFirstDemon__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct SpawnFirstDemon__Array__VTable vtable; +}; + +struct TeleportBox__Array { + struct TeleportBox__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct TeleportBox *vector[32]; +}; + +struct TeleportBox__Array__VTable { +}; + +struct TeleportBox__Array__StaticFields { +}; + +struct TeleportBox__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TeleportBox__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TeleportBox__Array__VTable vtable; +}; + +struct IList_1_Opsive_UltimateCharacterController_Character_Effects_Effect_ { + struct IList_1_Opsive_UltimateCharacterController_Character_Effects_Effect___Class *klass; + MonitorData *monitor; +}; + +struct IList_1_Opsive_UltimateCharacterController_Character_Effects_Effect___VTable { + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; +}; + +struct IList_1_Opsive_UltimateCharacterController_Character_Effects_Effect___StaticFields { +}; + +struct IList_1_Opsive_UltimateCharacterController_Character_Effects_Effect___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IList_1_Opsive_UltimateCharacterController_Character_Effects_Effect___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IList_1_Opsive_UltimateCharacterController_Character_Effects_Effect___VTable vtable; +}; + +struct __declspec(align(8)) List_1_Opsive_UltimateCharacterController_Character_Effects_Effect___Fields { + struct Effect__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_Opsive_UltimateCharacterController_Character_Effects_Effect_ { + struct List_1_Opsive_UltimateCharacterController_Character_Effects_Effect___Class *klass; + MonitorData *monitor; + struct List_1_Opsive_UltimateCharacterController_Character_Effects_Effect___Fields fields; +}; + +struct IEnumerator_1_Opsive_UltimateCharacterController_Character_Effects_Effect_ { + struct IEnumerator_1_Opsive_UltimateCharacterController_Character_Effects_Effect___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerator_1_Opsive_UltimateCharacterController_Character_Effects_Effect___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_Opsive_UltimateCharacterController_Character_Effects_Effect___StaticFields { +}; + +struct IEnumerator_1_Opsive_UltimateCharacterController_Character_Effects_Effect___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_Opsive_UltimateCharacterController_Character_Effects_Effect___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_Opsive_UltimateCharacterController_Character_Effects_Effect___VTable vtable; +}; + +struct List_1_Opsive_UltimateCharacterController_Character_Effects_Effect___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_Opsive_UltimateCharacterController_Character_Effects_Effect___StaticFields { + struct Effect__Array *s_emptyArray; +}; + +struct List_1_Opsive_UltimateCharacterController_Character_Effects_Effect___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_Opsive_UltimateCharacterController_Character_Effects_Effect___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_Opsive_UltimateCharacterController_Character_Effects_Effect___VTable vtable; +}; + +struct IEnumerable_1_Opsive_UltimateCharacterController_Character_Effects_Effect_ { + struct IEnumerable_1_Opsive_UltimateCharacterController_Character_Effects_Effect___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_Opsive_UltimateCharacterController_Character_Effects_Effect___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_Opsive_UltimateCharacterController_Character_Effects_Effect___StaticFields { +}; + +struct IEnumerable_1_Opsive_UltimateCharacterController_Character_Effects_Effect___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_Opsive_UltimateCharacterController_Character_Effects_Effect___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_Opsive_UltimateCharacterController_Character_Effects_Effect___VTable vtable; +}; + +struct StateBehavior__Array { + struct StateBehavior__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct StateBehavior *vector[32]; +}; + +struct StateBehavior__Array__VTable { +}; + +struct StateBehavior__Array__StaticFields { +}; + +struct StateBehavior__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct StateBehavior__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct StateBehavior__Array__VTable vtable; +}; + +struct Preset_BaseDelegate___VTable { +}; + +struct Preset_BaseDelegate___StaticFields { +}; + +struct Preset_BaseDelegate___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Preset_BaseDelegate___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Preset_BaseDelegate___VTable vtable; +}; + +struct __declspec(align(8)) Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_MovementInterpolationMode___Fields { + #if defined(_CPLUSPLUS_) + MovingPlatform_MovementInterpolationMode__Enum m_Value; + #else + int32_t m_Value; + #endif + struct MethodInfo_1 *m_SetMethod; + struct Action_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_MovementInterpolationMode_ *m_Setter; + struct Func_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_MovementInterpolationMode_ *m_Getter; + bool m_IsIList; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_MovementInterpolationMode_ { + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_MovementInterpolationMode___Class *klass; + MonitorData *monitor; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_MovementInterpolationMode___Fields fields; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_MovementInterpolationMode___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_SetMethod; + VirtualInvokeData Initialize; + VirtualInvokeData Initialize_1; + VirtualInvokeData UpdateValue; + VirtualInvokeData ApplyValue; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_MovementInterpolationMode___StaticFields { +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_MovementInterpolationMode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_MovementInterpolationMode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_MovementInterpolationMode___VTable vtable; +}; + +struct __declspec(align(8)) Preset_GenericDelegate_1_System_String___Fields { + struct String *m_Value; + struct MethodInfo_1 *m_SetMethod; + struct Action_1_String_ *m_Setter; + struct Func_1_String_ *m_Getter; + bool m_IsIList; +}; + +struct Preset_GenericDelegate_1_System_String_ { + struct Preset_GenericDelegate_1_System_String___Class *klass; + MonitorData *monitor; + struct Preset_GenericDelegate_1_System_String___Fields fields; +}; + +struct Preset_GenericDelegate_1_System_String___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_SetMethod; + VirtualInvokeData Initialize; + VirtualInvokeData Initialize_1; + VirtualInvokeData UpdateValue; + VirtualInvokeData ApplyValue; +}; + +struct Preset_GenericDelegate_1_System_String___StaticFields { +}; + +struct Preset_GenericDelegate_1_System_String___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Preset_GenericDelegate_1_System_String___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Preset_GenericDelegate_1_System_String___VTable vtable; +}; + +struct __declspec(align(8)) Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Audio_AudioClipSet___Fields { + struct AudioClipSet *m_Value; + struct MethodInfo_1 *m_SetMethod; + struct Action_1_Opsive_UltimateCharacterController_Audio_AudioClipSet_ *m_Setter; + struct Func_1_Opsive_UltimateCharacterController_Audio_AudioClipSet_ *m_Getter; + bool m_IsIList; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Audio_AudioClipSet_ { + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Audio_AudioClipSet___Class *klass; + MonitorData *monitor; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Audio_AudioClipSet___Fields fields; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Audio_AudioClipSet___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_SetMethod; + VirtualInvokeData Initialize; + VirtualInvokeData Initialize_1; + VirtualInvokeData UpdateValue; + VirtualInvokeData ApplyValue; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Audio_AudioClipSet___StaticFields { +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Audio_AudioClipSet___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Audio_AudioClipSet___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Audio_AudioClipSet___VTable vtable; +}; + +struct __declspec(align(8)) Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_PathMovementType___Fields { + #if defined(_CPLUSPLUS_) + MovingPlatform_PathMovementType__Enum m_Value; + #else + int32_t m_Value; + #endif + struct MethodInfo_1 *m_SetMethod; + struct Action_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_PathMovementType_ *m_Setter; + struct Func_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_PathMovementType_ *m_Getter; + bool m_IsIList; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_PathMovementType_ { + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_PathMovementType___Class *klass; + MonitorData *monitor; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_PathMovementType___Fields fields; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_PathMovementType___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_SetMethod; + VirtualInvokeData Initialize; + VirtualInvokeData Initialize_1; + VirtualInvokeData UpdateValue; + VirtualInvokeData ApplyValue; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_PathMovementType___StaticFields { +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_PathMovementType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_PathMovementType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_PathMovementType___VTable vtable; +}; + +struct __declspec(align(8)) Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_ShootableWeapon_ReloadClipType___Fields { + #if defined(_CPLUSPLUS_) + ShootableWeapon_ReloadClipType__Enum m_Value; + #else + int32_t m_Value; + #endif + struct MethodInfo_1 *m_SetMethod; + struct Action_1_Opsive_UltimateCharacterController_Items_Actions_ShootableWeapon_ReloadClipType_ *m_Setter; + struct Func_1_Opsive_UltimateCharacterController_Items_Actions_ShootableWeapon_ReloadClipType_ *m_Getter; + bool m_IsIList; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_ShootableWeapon_ReloadClipType_ { + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_ShootableWeapon_ReloadClipType___Class *klass; + MonitorData *monitor; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_ShootableWeapon_ReloadClipType___Fields fields; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_ShootableWeapon_ReloadClipType___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_SetMethod; + VirtualInvokeData Initialize; + VirtualInvokeData Initialize_1; + VirtualInvokeData UpdateValue; + VirtualInvokeData ApplyValue; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_ShootableWeapon_ReloadClipType___StaticFields { +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_ShootableWeapon_ReloadClipType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_ShootableWeapon_ReloadClipType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_ShootableWeapon_ReloadClipType___VTable vtable; +}; + +struct __declspec(align(8)) Preset_GenericDelegate_1_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact___Fields { + struct SurfaceImpact *m_Value; + struct MethodInfo_1 *m_SetMethod; + struct Action_1_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact_ *m_Setter; + struct Func_1_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact_ *m_Getter; + bool m_IsIList; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact_ { + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact___Class *klass; + MonitorData *monitor; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact___Fields fields; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_SetMethod; + VirtualInvokeData Initialize; + VirtualInvokeData Initialize_1; + VirtualInvokeData UpdateValue; + VirtualInvokeData ApplyValue; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact___StaticFields { +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_SurfaceSystem_SurfaceImpact___VTable vtable; +}; + +struct __declspec(align(8)) Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_ShootableWeapon_FireType___Fields { + #if defined(_CPLUSPLUS_) + ShootableWeapon_FireType__Enum m_Value; + #else + int32_t m_Value; + #endif + struct MethodInfo_1 *m_SetMethod; + struct Action_1_Opsive_UltimateCharacterController_Items_Actions_ShootableWeapon_FireType_ *m_Setter; + struct Func_1_Opsive_UltimateCharacterController_Items_Actions_ShootableWeapon_FireType_ *m_Getter; + bool m_IsIList; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_ShootableWeapon_FireType_ { + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_ShootableWeapon_FireType___Class *klass; + MonitorData *monitor; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_ShootableWeapon_FireType___Fields fields; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_ShootableWeapon_FireType___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_SetMethod; + VirtualInvokeData Initialize; + VirtualInvokeData Initialize_1; + VirtualInvokeData UpdateValue; + VirtualInvokeData ApplyValue; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_ShootableWeapon_FireType___StaticFields { +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_ShootableWeapon_FireType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_ShootableWeapon_FireType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_ShootableWeapon_FireType___VTable vtable; +}; + +struct __declspec(align(8)) Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_ShootableWeapon_FireMode___Fields { + #if defined(_CPLUSPLUS_) + ShootableWeapon_FireMode__Enum m_Value; + #else + int32_t m_Value; + #endif + struct MethodInfo_1 *m_SetMethod; + struct Action_1_Opsive_UltimateCharacterController_Items_Actions_ShootableWeapon_FireMode_ *m_Setter; + struct Func_1_Opsive_UltimateCharacterController_Items_Actions_ShootableWeapon_FireMode_ *m_Getter; + bool m_IsIList; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_ShootableWeapon_FireMode_ { + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_ShootableWeapon_FireMode___Class *klass; + MonitorData *monitor; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_ShootableWeapon_FireMode___Fields fields; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_ShootableWeapon_FireMode___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_SetMethod; + VirtualInvokeData Initialize; + VirtualInvokeData Initialize_1; + VirtualInvokeData UpdateValue; + VirtualInvokeData ApplyValue; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_ShootableWeapon_FireMode___StaticFields { +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_ShootableWeapon_FireMode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_ShootableWeapon_FireMode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_ShootableWeapon_FireMode___VTable vtable; +}; + +struct __declspec(align(8)) Preset_GenericDelegate_1_UnityEngine_AnimationCurve___Fields { + struct AnimationCurve *m_Value; + struct MethodInfo_1 *m_SetMethod; + struct Action_1_UnityEngine_AnimationCurve_ *m_Setter; + struct Func_1_UnityEngine_AnimationCurve_ *m_Getter; + bool m_IsIList; +}; + +struct Preset_GenericDelegate_1_UnityEngine_AnimationCurve_ { + struct Preset_GenericDelegate_1_UnityEngine_AnimationCurve___Class *klass; + MonitorData *monitor; + struct Preset_GenericDelegate_1_UnityEngine_AnimationCurve___Fields fields; +}; + +struct Preset_GenericDelegate_1_UnityEngine_AnimationCurve___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_SetMethod; + VirtualInvokeData Initialize; + VirtualInvokeData Initialize_1; + VirtualInvokeData UpdateValue; + VirtualInvokeData ApplyValue; +}; + +struct Preset_GenericDelegate_1_UnityEngine_AnimationCurve___StaticFields { +}; + +struct Preset_GenericDelegate_1_UnityEngine_AnimationCurve___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Preset_GenericDelegate_1_UnityEngine_AnimationCurve___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Preset_GenericDelegate_1_UnityEngine_AnimationCurve___VTable vtable; +}; + +struct __declspec(align(8)) Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Input_PlayerInput_LookVectorMode___Fields { + #if defined(_CPLUSPLUS_) + PlayerInput_LookVectorMode__Enum m_Value; + #else + int32_t m_Value; + #endif + struct MethodInfo_1 *m_SetMethod; + struct Action_1_Opsive_UltimateCharacterController_Input_PlayerInput_LookVectorMode_ *m_Setter; + struct Func_1_Opsive_UltimateCharacterController_Input_PlayerInput_LookVectorMode_ *m_Getter; + bool m_IsIList; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Input_PlayerInput_LookVectorMode_ { + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Input_PlayerInput_LookVectorMode___Class *klass; + MonitorData *monitor; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Input_PlayerInput_LookVectorMode___Fields fields; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Input_PlayerInput_LookVectorMode___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_SetMethod; + VirtualInvokeData Initialize; + VirtualInvokeData Initialize_1; + VirtualInvokeData UpdateValue; + VirtualInvokeData ApplyValue; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Input_PlayerInput_LookVectorMode___StaticFields { +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Input_PlayerInput_LookVectorMode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Input_PlayerInput_LookVectorMode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Input_PlayerInput_LookVectorMode___VTable vtable; +}; + +struct __declspec(align(8)) Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_MagicItem_CastUseType___Fields { + #if defined(_CPLUSPLUS_) + MagicItem_CastUseType__Enum m_Value; + #else + int32_t m_Value; + #endif + struct MethodInfo_1 *m_SetMethod; + struct Action_1_Opsive_UltimateCharacterController_Items_Actions_MagicItem_CastUseType_ *m_Setter; + struct Func_1_Opsive_UltimateCharacterController_Items_Actions_MagicItem_CastUseType_ *m_Getter; + bool m_IsIList; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_MagicItem_CastUseType_ { + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_MagicItem_CastUseType___Class *klass; + MonitorData *monitor; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_MagicItem_CastUseType___Fields fields; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_MagicItem_CastUseType___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_SetMethod; + VirtualInvokeData Initialize; + VirtualInvokeData Initialize_1; + VirtualInvokeData UpdateValue; + VirtualInvokeData ApplyValue; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_MagicItem_CastUseType___StaticFields { +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_MagicItem_CastUseType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_MagicItem_CastUseType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_MagicItem_CastUseType___VTable vtable; +}; + +struct __declspec(align(8)) Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Utility_ObjectSpawnInfo___Fields { + struct ObjectSpawnInfo *m_Value; + struct MethodInfo_1 *m_SetMethod; + struct Action_1_Opsive_UltimateCharacterController_Utility_ObjectSpawnInfo_ *m_Setter; + struct Func_1_Opsive_UltimateCharacterController_Utility_ObjectSpawnInfo_ *m_Getter; + bool m_IsIList; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Utility_ObjectSpawnInfo_ { + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Utility_ObjectSpawnInfo___Class *klass; + MonitorData *monitor; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Utility_ObjectSpawnInfo___Fields fields; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Utility_ObjectSpawnInfo___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_SetMethod; + VirtualInvokeData Initialize; + VirtualInvokeData Initialize_1; + VirtualInvokeData UpdateValue; + VirtualInvokeData ApplyValue; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Utility_ObjectSpawnInfo___StaticFields { +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Utility_ObjectSpawnInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Utility_ObjectSpawnInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Utility_ObjectSpawnInfo___VTable vtable; +}; + +struct __declspec(align(8)) Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_MagicItem_CastInterruptSource___Fields { + #if defined(_CPLUSPLUS_) + MagicItem_CastInterruptSource__Enum m_Value; + #else + int32_t m_Value; + #endif + struct MethodInfo_1 *m_SetMethod; + struct Action_1_Opsive_UltimateCharacterController_Items_Actions_MagicItem_CastInterruptSource_ *m_Setter; + struct Func_1_Opsive_UltimateCharacterController_Items_Actions_MagicItem_CastInterruptSource_ *m_Getter; + bool m_IsIList; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_MagicItem_CastInterruptSource_ { + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_MagicItem_CastInterruptSource___Class *klass; + MonitorData *monitor; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_MagicItem_CastInterruptSource___Fields fields; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_MagicItem_CastInterruptSource___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_SetMethod; + VirtualInvokeData Initialize; + VirtualInvokeData Initialize_1; + VirtualInvokeData UpdateValue; + VirtualInvokeData ApplyValue; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_MagicItem_CastInterruptSource___StaticFields { +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_MagicItem_CastInterruptSource___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_MagicItem_CastInterruptSource___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_MagicItem_CastInterruptSource___VTable vtable; +}; + +struct __declspec(align(8)) Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_ShootableWeapon_ProjectileVisiblityType___Fields { + #if defined(_CPLUSPLUS_) + ShootableWeapon_ProjectileVisiblityType__Enum m_Value; + #else + int32_t m_Value; + #endif + struct MethodInfo_1 *m_SetMethod; + struct Action_1_Opsive_UltimateCharacterController_Items_Actions_ShootableWeapon_ProjectileVisiblityType_ *m_Setter; + struct Func_1_Opsive_UltimateCharacterController_Items_Actions_ShootableWeapon_ProjectileVisiblityType_ *m_Getter; + bool m_IsIList; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_ShootableWeapon_ProjectileVisiblityType_ { + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_ShootableWeapon_ProjectileVisiblityType___Class *klass; + MonitorData *monitor; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_ShootableWeapon_ProjectileVisiblityType___Fields fields; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_ShootableWeapon_ProjectileVisiblityType___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_SetMethod; + VirtualInvokeData Initialize; + VirtualInvokeData Initialize_1; + VirtualInvokeData UpdateValue; + VirtualInvokeData ApplyValue; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_ShootableWeapon_ProjectileVisiblityType___StaticFields { +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_ShootableWeapon_ProjectileVisiblityType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_ShootableWeapon_ProjectileVisiblityType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_ShootableWeapon_ProjectileVisiblityType___VTable vtable; +}; + +struct __declspec(align(8)) Preset_GenericDelegate_1_UnityEngine_Object___Fields { + struct Object_1 *m_Value; + struct MethodInfo_1 *m_SetMethod; + struct Action_1_UnityEngine_Object_ *m_Setter; + struct Func_1_UnityEngine_Object_ *m_Getter; + bool m_IsIList; +}; + +struct Preset_GenericDelegate_1_UnityEngine_Object_ { + struct Preset_GenericDelegate_1_UnityEngine_Object___Class *klass; + MonitorData *monitor; + struct Preset_GenericDelegate_1_UnityEngine_Object___Fields fields; +}; + +struct Preset_GenericDelegate_1_UnityEngine_Object___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_SetMethod; + VirtualInvokeData Initialize; + VirtualInvokeData Initialize_1; + VirtualInvokeData UpdateValue; + VirtualInvokeData ApplyValue; +}; + +struct Preset_GenericDelegate_1_UnityEngine_Object___StaticFields { +}; + +struct Preset_GenericDelegate_1_UnityEngine_Object___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Preset_GenericDelegate_1_UnityEngine_Object___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Preset_GenericDelegate_1_UnityEngine_Object___VTable vtable; +}; + +struct __declspec(align(8)) Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Ability_AbilityStopType___Fields { + #if defined(_CPLUSPLUS_) + Ability_AbilityStopType__Enum m_Value; + #else + int32_t m_Value; + #endif + struct MethodInfo_1 *m_SetMethod; + struct Action_1_Opsive_UltimateCharacterController_Character_Abilities_Ability_AbilityStopType_ *m_Setter; + struct Func_1_Opsive_UltimateCharacterController_Character_Abilities_Ability_AbilityStopType_ *m_Getter; + bool m_IsIList; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Ability_AbilityStopType_ { + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Ability_AbilityStopType___Class *klass; + MonitorData *monitor; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Ability_AbilityStopType___Fields fields; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Ability_AbilityStopType___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_SetMethod; + VirtualInvokeData Initialize; + VirtualInvokeData Initialize_1; + VirtualInvokeData UpdateValue; + VirtualInvokeData ApplyValue; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Ability_AbilityStopType___StaticFields { +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Ability_AbilityStopType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Ability_AbilityStopType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Ability_AbilityStopType___VTable vtable; +}; + +struct __declspec(align(8)) Preset_GenericDelegate_1_UnityEngine_Transform___Fields { + struct Transform *m_Value; + struct MethodInfo_1 *m_SetMethod; + struct Action_1_UnityEngine_Transform_ *m_Setter; + struct Func_1_UnityEngine_Transform_ *m_Getter; + bool m_IsIList; +}; + +struct Preset_GenericDelegate_1_UnityEngine_Transform_ { + struct Preset_GenericDelegate_1_UnityEngine_Transform___Class *klass; + MonitorData *monitor; + struct Preset_GenericDelegate_1_UnityEngine_Transform___Fields fields; +}; + +struct Preset_GenericDelegate_1_UnityEngine_Transform___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_SetMethod; + VirtualInvokeData Initialize; + VirtualInvokeData Initialize_1; + VirtualInvokeData UpdateValue; + VirtualInvokeData ApplyValue; +}; + +struct Preset_GenericDelegate_1_UnityEngine_Transform___StaticFields { +}; + +struct Preset_GenericDelegate_1_UnityEngine_Transform___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Preset_GenericDelegate_1_UnityEngine_Transform___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Preset_GenericDelegate_1_UnityEngine_Transform___VTable vtable; +}; + +struct __declspec(align(8)) Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_DetectObjectAbilityBase_ObjectDetectionMode___Fields { + #if defined(_CPLUSPLUS_) + DetectObjectAbilityBase_ObjectDetectionMode__Enum m_Value; + #else + int32_t m_Value; + #endif + struct MethodInfo_1 *m_SetMethod; + struct Action_1_Opsive_UltimateCharacterController_Character_Abilities_DetectObjectAbilityBase_ObjectDetectionMode_ *m_Setter; + struct Func_1_Opsive_UltimateCharacterController_Character_Abilities_DetectObjectAbilityBase_ObjectDetectionMode_ *m_Getter; + bool m_IsIList; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_DetectObjectAbilityBase_ObjectDetectionMode_ { + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_DetectObjectAbilityBase_ObjectDetectionMode___Class *klass; + MonitorData *monitor; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_DetectObjectAbilityBase_ObjectDetectionMode___Fields fields; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_DetectObjectAbilityBase_ObjectDetectionMode___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_SetMethod; + VirtualInvokeData Initialize; + VirtualInvokeData Initialize_1; + VirtualInvokeData UpdateValue; + VirtualInvokeData ApplyValue; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_DetectObjectAbilityBase_ObjectDetectionMode___StaticFields { +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_DetectObjectAbilityBase_ObjectDetectionMode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_DetectObjectAbilityBase_ObjectDetectionMode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_DetectObjectAbilityBase_ObjectDetectionMode___VTable vtable; +}; + +struct __declspec(align(8)) Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_PathDirection___Fields { + #if defined(_CPLUSPLUS_) + MovingPlatform_PathDirection__Enum m_Value; + #else + int32_t m_Value; + #endif + struct MethodInfo_1 *m_SetMethod; + struct Action_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_PathDirection_ *m_Setter; + struct Func_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_PathDirection_ *m_Getter; + bool m_IsIList; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_PathDirection_ { + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_PathDirection___Class *klass; + MonitorData *monitor; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_PathDirection___Fields fields; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_PathDirection___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_SetMethod; + VirtualInvokeData Initialize; + VirtualInvokeData Initialize_1; + VirtualInvokeData UpdateValue; + VirtualInvokeData ApplyValue; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_PathDirection___StaticFields { +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_PathDirection___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_PathDirection___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_PathDirection___VTable vtable; +}; + +struct __declspec(align(8)) Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Items_Reload_AutoReloadType___Fields { + #if defined(_CPLUSPLUS_) + Reload_AutoReloadType__Enum m_Value; + #else + int32_t m_Value; + #endif + struct MethodInfo_1 *m_SetMethod; + struct Action_1_Opsive_UltimateCharacterController_Character_Abilities_Items_Reload_AutoReloadType_ *m_Setter; + struct Func_1_Opsive_UltimateCharacterController_Character_Abilities_Items_Reload_AutoReloadType_ *m_Getter; + bool m_IsIList; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Items_Reload_AutoReloadType_ { + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Items_Reload_AutoReloadType___Class *klass; + MonitorData *monitor; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Items_Reload_AutoReloadType___Fields fields; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Items_Reload_AutoReloadType___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_SetMethod; + VirtualInvokeData Initialize; + VirtualInvokeData Initialize_1; + VirtualInvokeData UpdateValue; + VirtualInvokeData ApplyValue; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Items_Reload_AutoReloadType___StaticFields { +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Items_Reload_AutoReloadType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Items_Reload_AutoReloadType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Items_Reload_AutoReloadType___VTable vtable; +}; + +struct __declspec(align(8)) Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_RestrictPosition_RestrictionType___Fields { + #if defined(_CPLUSPLUS_) + RestrictPosition_RestrictionType__Enum m_Value; + #else + int32_t m_Value; + #endif + struct MethodInfo_1 *m_SetMethod; + struct Action_1_Opsive_UltimateCharacterController_Character_Abilities_RestrictPosition_RestrictionType_ *m_Setter; + struct Func_1_Opsive_UltimateCharacterController_Character_Abilities_RestrictPosition_RestrictionType_ *m_Getter; + bool m_IsIList; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_RestrictPosition_RestrictionType_ { + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_RestrictPosition_RestrictionType___Class *klass; + MonitorData *monitor; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_RestrictPosition_RestrictionType___Fields fields; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_RestrictPosition_RestrictionType___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_SetMethod; + VirtualInvokeData Initialize; + VirtualInvokeData Initialize_1; + VirtualInvokeData UpdateValue; + VirtualInvokeData ApplyValue; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_RestrictPosition_RestrictionType___StaticFields { +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_RestrictPosition_RestrictionType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_RestrictPosition_RestrictionType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_RestrictPosition_RestrictionType___VTable vtable; +}; + +struct __declspec(align(8)) Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_MagicItem_CastDirection___Fields { + #if defined(_CPLUSPLUS_) + MagicItem_CastDirection__Enum m_Value; + #else + int32_t m_Value; + #endif + struct MethodInfo_1 *m_SetMethod; + struct Action_1_Opsive_UltimateCharacterController_Items_Actions_MagicItem_CastDirection_ *m_Setter; + struct Func_1_Opsive_UltimateCharacterController_Items_Actions_MagicItem_CastDirection_ *m_Getter; + bool m_IsIList; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_MagicItem_CastDirection_ { + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_MagicItem_CastDirection___Class *klass; + MonitorData *monitor; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_MagicItem_CastDirection___Fields fields; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_MagicItem_CastDirection___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_SetMethod; + VirtualInvokeData Initialize; + VirtualInvokeData Initialize_1; + VirtualInvokeData UpdateValue; + VirtualInvokeData ApplyValue; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_MagicItem_CastDirection___StaticFields { +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_MagicItem_CastDirection___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_MagicItem_CastDirection___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Items_Actions_MagicItem_CastDirection___VTable vtable; +}; + +struct __declspec(align(8)) Preset_GenericDelegate_1_UnityEngine_GameObject___Fields { + struct GameObject *m_Value; + struct MethodInfo_1 *m_SetMethod; + struct Action_1_UnityEngine_GameObject_ *m_Setter; + struct Func_1_UnityEngine_GameObject_ *m_Getter; + bool m_IsIList; +}; + +struct Preset_GenericDelegate_1_UnityEngine_GameObject_ { + struct Preset_GenericDelegate_1_UnityEngine_GameObject___Class *klass; + MonitorData *monitor; + struct Preset_GenericDelegate_1_UnityEngine_GameObject___Fields fields; +}; + +struct Preset_GenericDelegate_1_UnityEngine_GameObject___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_SetMethod; + VirtualInvokeData Initialize; + VirtualInvokeData Initialize_1; + VirtualInvokeData UpdateValue; + VirtualInvokeData ApplyValue; +}; + +struct Preset_GenericDelegate_1_UnityEngine_GameObject___StaticFields { +}; + +struct Preset_GenericDelegate_1_UnityEngine_GameObject___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Preset_GenericDelegate_1_UnityEngine_GameObject___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Preset_GenericDelegate_1_UnityEngine_GameObject___VTable vtable; +}; + +struct __declspec(align(8)) Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Utility_AnimationEventTrigger___Fields { + struct AnimationEventTrigger *m_Value; + struct MethodInfo_1 *m_SetMethod; + struct Action_1_Opsive_UltimateCharacterController_Utility_AnimationEventTrigger_ *m_Setter; + struct Func_1_Opsive_UltimateCharacterController_Utility_AnimationEventTrigger_ *m_Getter; + bool m_IsIList; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Utility_AnimationEventTrigger_ { + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Utility_AnimationEventTrigger___Class *klass; + MonitorData *monitor; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Utility_AnimationEventTrigger___Fields fields; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Utility_AnimationEventTrigger___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_SetMethod; + VirtualInvokeData Initialize; + VirtualInvokeData Initialize_1; + VirtualInvokeData UpdateValue; + VirtualInvokeData ApplyValue; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Utility_AnimationEventTrigger___StaticFields { +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Utility_AnimationEventTrigger___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Utility_AnimationEventTrigger___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Utility_AnimationEventTrigger___VTable vtable; +}; + +struct __declspec(align(8)) Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Ability_AbilityStartType___Fields { + #if defined(_CPLUSPLUS_) + Ability_AbilityStartType__Enum m_Value; + #else + int32_t m_Value; + #endif + struct MethodInfo_1 *m_SetMethod; + struct Action_1_Opsive_UltimateCharacterController_Character_Abilities_Ability_AbilityStartType_ *m_Setter; + struct Func_1_Opsive_UltimateCharacterController_Character_Abilities_Ability_AbilityStartType_ *m_Getter; + bool m_IsIList; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Ability_AbilityStartType_ { + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Ability_AbilityStartType___Class *klass; + MonitorData *monitor; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Ability_AbilityStartType___Fields fields; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Ability_AbilityStartType___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_SetMethod; + VirtualInvokeData Initialize; + VirtualInvokeData Initialize_1; + VirtualInvokeData UpdateValue; + VirtualInvokeData ApplyValue; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Ability_AbilityStartType___StaticFields { +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Ability_AbilityStartType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Ability_AbilityStartType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Ability_AbilityStartType___VTable vtable; +}; + +struct __declspec(align(8)) Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Traits_Attribute_AutoUpdateValue___Fields { + #if defined(_CPLUSPLUS_) + Attribute_AutoUpdateValue__Enum m_Value; + #else + int32_t m_Value; + #endif + struct MethodInfo_1 *m_SetMethod; + struct Action_1_Opsive_UltimateCharacterController_Traits_Attribute_AutoUpdateValue_ *m_Setter; + struct Func_1_Opsive_UltimateCharacterController_Traits_Attribute_AutoUpdateValue_ *m_Getter; + bool m_IsIList; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Traits_Attribute_AutoUpdateValue_ { + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Traits_Attribute_AutoUpdateValue___Class *klass; + MonitorData *monitor; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Traits_Attribute_AutoUpdateValue___Fields fields; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Traits_Attribute_AutoUpdateValue___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_SetMethod; + VirtualInvokeData Initialize; + VirtualInvokeData Initialize_1; + VirtualInvokeData UpdateValue; + VirtualInvokeData ApplyValue; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Traits_Attribute_AutoUpdateValue___StaticFields { +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Traits_Attribute_AutoUpdateValue___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Traits_Attribute_AutoUpdateValue___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Traits_Attribute_AutoUpdateValue___VTable vtable; +}; + +struct __declspec(align(8)) Preset_GenericDelegate_1_UnityEngine_ForceMode___Fields { + #if defined(_CPLUSPLUS_) + ForceMode__Enum m_Value; + #else + int32_t m_Value; + #endif + struct MethodInfo_1 *m_SetMethod; + struct Action_1_UnityEngine_ForceMode_ *m_Setter; + struct Func_1_UnityEngine_ForceMode_ *m_Getter; + bool m_IsIList; +}; + +struct Preset_GenericDelegate_1_UnityEngine_ForceMode_ { + struct Preset_GenericDelegate_1_UnityEngine_ForceMode___Class *klass; + MonitorData *monitor; + struct Preset_GenericDelegate_1_UnityEngine_ForceMode___Fields fields; +}; + +struct Preset_GenericDelegate_1_UnityEngine_ForceMode___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_SetMethod; + VirtualInvokeData Initialize; + VirtualInvokeData Initialize_1; + VirtualInvokeData UpdateValue; + VirtualInvokeData ApplyValue; +}; + +struct Preset_GenericDelegate_1_UnityEngine_ForceMode___StaticFields { +}; + +struct Preset_GenericDelegate_1_UnityEngine_ForceMode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Preset_GenericDelegate_1_UnityEngine_ForceMode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Preset_GenericDelegate_1_UnityEngine_ForceMode___VTable vtable; +}; + +struct __declspec(align(8)) Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Ability_AbilityBoolOverride___Fields { + #if defined(_CPLUSPLUS_) + Ability_AbilityBoolOverride__Enum m_Value; + #else + int32_t m_Value; + #endif + struct MethodInfo_1 *m_SetMethod; + struct Action_1_Opsive_UltimateCharacterController_Character_Abilities_Ability_AbilityBoolOverride_ *m_Setter; + struct Func_1_Opsive_UltimateCharacterController_Character_Abilities_Ability_AbilityBoolOverride_ *m_Getter; + bool m_IsIList; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Ability_AbilityBoolOverride_ { + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Ability_AbilityBoolOverride___Class *klass; + MonitorData *monitor; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Ability_AbilityBoolOverride___Fields fields; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Ability_AbilityBoolOverride___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_SetMethod; + VirtualInvokeData Initialize; + VirtualInvokeData Initialize_1; + VirtualInvokeData UpdateValue; + VirtualInvokeData ApplyValue; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Ability_AbilityBoolOverride___StaticFields { +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Ability_AbilityBoolOverride___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Ability_AbilityBoolOverride___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Ability_AbilityBoolOverride___VTable vtable; +}; + +struct __declspec(align(8)) Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Items_EquipUnequip_AutoEquipType___Fields { + #if defined(_CPLUSPLUS_) + EquipUnequip_AutoEquipType__Enum m_Value; + #else + int32_t m_Value; + #endif + struct MethodInfo_1 *m_SetMethod; + struct Action_1_Opsive_UltimateCharacterController_Character_Abilities_Items_EquipUnequip_AutoEquipType_ *m_Setter; + struct Func_1_Opsive_UltimateCharacterController_Character_Abilities_Items_EquipUnequip_AutoEquipType_ *m_Getter; + bool m_IsIList; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Items_EquipUnequip_AutoEquipType_ { + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Items_EquipUnequip_AutoEquipType___Class *klass; + MonitorData *monitor; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Items_EquipUnequip_AutoEquipType___Fields fields; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Items_EquipUnequip_AutoEquipType___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_SetMethod; + VirtualInvokeData Initialize; + VirtualInvokeData Initialize_1; + VirtualInvokeData UpdateValue; + VirtualInvokeData ApplyValue; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Items_EquipUnequip_AutoEquipType___StaticFields { +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Items_EquipUnequip_AutoEquipType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Items_EquipUnequip_AutoEquipType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Abilities_Items_EquipUnequip_AutoEquipType___VTable vtable; +}; + +struct __declspec(align(8)) Preset_GenericDelegate_1_UnityEngine_HumanBodyBones___Fields { + #if defined(_CPLUSPLUS_) + HumanBodyBones__Enum m_Value; + #else + int32_t m_Value; + #endif + struct MethodInfo_1 *m_SetMethod; + struct Action_1_UnityEngine_HumanBodyBones_ *m_Setter; + struct Func_1_UnityEngine_HumanBodyBones_ *m_Getter; + bool m_IsIList; +}; + +struct Preset_GenericDelegate_1_UnityEngine_HumanBodyBones_ { + struct Preset_GenericDelegate_1_UnityEngine_HumanBodyBones___Class *klass; + MonitorData *monitor; + struct Preset_GenericDelegate_1_UnityEngine_HumanBodyBones___Fields fields; +}; + +struct Preset_GenericDelegate_1_UnityEngine_HumanBodyBones___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_SetMethod; + VirtualInvokeData Initialize; + VirtualInvokeData Initialize_1; + VirtualInvokeData UpdateValue; + VirtualInvokeData ApplyValue; +}; + +struct Preset_GenericDelegate_1_UnityEngine_HumanBodyBones___StaticFields { +}; + +struct Preset_GenericDelegate_1_UnityEngine_HumanBodyBones___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Preset_GenericDelegate_1_UnityEngine_HumanBodyBones___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Preset_GenericDelegate_1_UnityEngine_HumanBodyBones___VTable vtable; +}; + +struct __declspec(align(8)) Preset_GenericDelegate_1_UnityEngine_QueryTriggerInteraction___Fields { + #if defined(_CPLUSPLUS_) + QueryTriggerInteraction__Enum m_Value; + #else + int32_t m_Value; + #endif + struct MethodInfo_1 *m_SetMethod; + struct Action_1_UnityEngine_QueryTriggerInteraction_ *m_Setter; + struct Func_1_UnityEngine_QueryTriggerInteraction_ *m_Getter; + bool m_IsIList; +}; + +struct Preset_GenericDelegate_1_UnityEngine_QueryTriggerInteraction_ { + struct Preset_GenericDelegate_1_UnityEngine_QueryTriggerInteraction___Class *klass; + MonitorData *monitor; + struct Preset_GenericDelegate_1_UnityEngine_QueryTriggerInteraction___Fields fields; +}; + +struct Preset_GenericDelegate_1_UnityEngine_QueryTriggerInteraction___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_SetMethod; + VirtualInvokeData Initialize; + VirtualInvokeData Initialize_1; + VirtualInvokeData UpdateValue; + VirtualInvokeData ApplyValue; +}; + +struct Preset_GenericDelegate_1_UnityEngine_QueryTriggerInteraction___StaticFields { +}; + +struct Preset_GenericDelegate_1_UnityEngine_QueryTriggerInteraction___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Preset_GenericDelegate_1_UnityEngine_QueryTriggerInteraction___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Preset_GenericDelegate_1_UnityEngine_QueryTriggerInteraction___VTable vtable; +}; + +struct __declspec(align(8)) Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_FootstepPlacementMode___Fields { + #if defined(_CPLUSPLUS_) + CharacterFootEffects_FootstepPlacementMode__Enum m_Value; + #else + int32_t m_Value; + #endif + struct MethodInfo_1 *m_SetMethod; + struct Action_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_FootstepPlacementMode_ *m_Setter; + struct Func_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_FootstepPlacementMode_ *m_Getter; + bool m_IsIList; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_FootstepPlacementMode_ { + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_FootstepPlacementMode___Class *klass; + MonitorData *monitor; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_FootstepPlacementMode___Fields fields; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_FootstepPlacementMode___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_SetMethod; + VirtualInvokeData Initialize; + VirtualInvokeData Initialize_1; + VirtualInvokeData UpdateValue; + VirtualInvokeData ApplyValue; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_FootstepPlacementMode___StaticFields { +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_FootstepPlacementMode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_FootstepPlacementMode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_CharacterFootEffects_FootstepPlacementMode___VTable vtable; +}; + +struct __declspec(align(8)) Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Traits_Respawner_SpawnPositioningMode___Fields { + #if defined(_CPLUSPLUS_) + Respawner_SpawnPositioningMode__Enum m_Value; + #else + int32_t m_Value; + #endif + struct MethodInfo_1 *m_SetMethod; + struct Action_1_Opsive_UltimateCharacterController_Traits_Respawner_SpawnPositioningMode_ *m_Setter; + struct Func_1_Opsive_UltimateCharacterController_Traits_Respawner_SpawnPositioningMode_ *m_Getter; + bool m_IsIList; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Traits_Respawner_SpawnPositioningMode_ { + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Traits_Respawner_SpawnPositioningMode___Class *klass; + MonitorData *monitor; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Traits_Respawner_SpawnPositioningMode___Fields fields; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Traits_Respawner_SpawnPositioningMode___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_SetMethod; + VirtualInvokeData Initialize; + VirtualInvokeData Initialize_1; + VirtualInvokeData UpdateValue; + VirtualInvokeData ApplyValue; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Traits_Respawner_SpawnPositioningMode___StaticFields { +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Traits_Respawner_SpawnPositioningMode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Traits_Respawner_SpawnPositioningMode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Traits_Respawner_SpawnPositioningMode___VTable vtable; +}; + +struct __declspec(align(8)) Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_RotateInterpolationMode___Fields { + #if defined(_CPLUSPLUS_) + MovingPlatform_RotateInterpolationMode__Enum m_Value; + #else + int32_t m_Value; + #endif + struct MethodInfo_1 *m_SetMethod; + struct Action_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_RotateInterpolationMode_ *m_Setter; + struct Func_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_RotateInterpolationMode_ *m_Getter; + bool m_IsIList; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_RotateInterpolationMode_ { + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_RotateInterpolationMode___Class *klass; + MonitorData *monitor; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_RotateInterpolationMode___Fields fields; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_RotateInterpolationMode___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_SetMethod; + VirtualInvokeData Initialize; + VirtualInvokeData Initialize_1; + VirtualInvokeData UpdateValue; + VirtualInvokeData ApplyValue; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_RotateInterpolationMode___StaticFields { +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_RotateInterpolationMode___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_RotateInterpolationMode___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Objects_MovingPlatform_RotateInterpolationMode___VTable vtable; +}; + +struct __declspec(align(8)) Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Effects_Shake_ShakeTarget___Fields { + #if defined(_CPLUSPLUS_) + Shake_ShakeTarget__Enum m_Value; + #else + int32_t m_Value; + #endif + struct MethodInfo_1 *m_SetMethod; + struct Action_1_Opsive_UltimateCharacterController_Character_Effects_Shake_ShakeTarget_ *m_Setter; + struct Func_1_Opsive_UltimateCharacterController_Character_Effects_Shake_ShakeTarget_ *m_Getter; + bool m_IsIList; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Effects_Shake_ShakeTarget_ { + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Effects_Shake_ShakeTarget___Class *klass; + MonitorData *monitor; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Effects_Shake_ShakeTarget___Fields fields; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Effects_Shake_ShakeTarget___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_SetMethod; + VirtualInvokeData Initialize; + VirtualInvokeData Initialize_1; + VirtualInvokeData UpdateValue; + VirtualInvokeData ApplyValue; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Effects_Shake_ShakeTarget___StaticFields { +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Effects_Shake_ShakeTarget___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Effects_Shake_ShakeTarget___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Character_Effects_Shake_ShakeTarget___VTable vtable; +}; + +struct __declspec(align(8)) Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Game_SpawnPoint_SpawnShape___Fields { + #if defined(_CPLUSPLUS_) + SpawnPoint_SpawnShape__Enum m_Value; + #else + int32_t m_Value; + #endif + struct MethodInfo_1 *m_SetMethod; + struct Action_1_Opsive_UltimateCharacterController_Game_SpawnPoint_SpawnShape_ *m_Setter; + struct Func_1_Opsive_UltimateCharacterController_Game_SpawnPoint_SpawnShape_ *m_Getter; + bool m_IsIList; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Game_SpawnPoint_SpawnShape_ { + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Game_SpawnPoint_SpawnShape___Class *klass; + MonitorData *monitor; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Game_SpawnPoint_SpawnShape___Fields fields; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Game_SpawnPoint_SpawnShape___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_SetMethod; + VirtualInvokeData Initialize; + VirtualInvokeData Initialize_1; + VirtualInvokeData UpdateValue; + VirtualInvokeData ApplyValue; +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Game_SpawnPoint_SpawnShape___StaticFields { +}; + +struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Game_SpawnPoint_SpawnShape___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Game_SpawnPoint_SpawnShape___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Preset_GenericDelegate_1_Opsive_UltimateCharacterController_Game_SpawnPoint_SpawnShape___VTable vtable; +}; + +struct IInteractableMessage { + struct IInteractableMessage__Class *klass; + MonitorData *monitor; +}; + +struct IInteractableMessage__VTable { + VirtualInvokeData AbilityMessage; +}; + +struct IInteractableMessage__StaticFields { +}; + +struct IInteractableMessage__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IInteractableMessage__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IInteractableMessage__VTable vtable; +}; + +struct AudioSource___VTable { +}; + +struct AudioSource___StaticFields { +}; + +struct AudioSource___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct AudioSource___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct AudioSource___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_TerrainUtils_TerrainMap_ { + struct Dictionary_2_System_Int32_UnityEngine_TerrainUtils_TerrainMap_ *_dictionary; + int32_t _version; + int32_t _index; + struct KeyValuePair_2_System_Int32_UnityEngine_TerrainUtils_TerrainMap_ _current; + int32_t _getEnumeratorRetType; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_TerrainUtils_TerrainMap___Boxed { + struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_TerrainUtils_TerrainMap___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_TerrainUtils_TerrainMap_ fields; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_TerrainUtils_TerrainMap___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Key; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Value; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Entry; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_TerrainUtils_TerrainMap___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_TerrainUtils_TerrainMap___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_TerrainUtils_TerrainMap___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_UnityEngine_TerrainUtils_TerrainMap___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_UnityEngine_Terrain_ { + struct Dictionary_2_UnityEngine_TerrainUtils_TerrainTileCoord_UnityEngine_Terrain_ *_dictionary; + int32_t _version; + int32_t _index; + struct KeyValuePair_2_UnityEngine_TerrainUtils_TerrainTileCoord_UnityEngine_Terrain_ _current; + int32_t _getEnumeratorRetType; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_UnityEngine_Terrain___Boxed { + struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_UnityEngine_Terrain___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_UnityEngine_Terrain_ fields; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_UnityEngine_Terrain___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Key; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Value; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Entry; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_UnityEngine_Terrain___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_UnityEngine_Terrain___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_UnityEngine_Terrain___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_UnityEngine_Terrain___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_Dissonance_VoicePlayerState_ { + struct Dictionary_2_System_Int32_Dissonance_VoicePlayerState_ *_dictionary; + int32_t _version; + int32_t _index; + struct KeyValuePair_2_System_Int32_Dissonance_VoicePlayerState_ _current; + int32_t _getEnumeratorRetType; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_Dissonance_VoicePlayerState___Boxed { + struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_Dissonance_VoicePlayerState___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_Dissonance_VoicePlayerState_ fields; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_Dissonance_VoicePlayerState___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Key; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Value; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Entry; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_Dissonance_VoicePlayerState___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_Dissonance_VoicePlayerState___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_Dissonance_VoicePlayerState___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Enumerator_System_Int32_Dissonance_VoicePlayerState___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_UnityEngine_Terrain_ { + struct Dictionary_2_UnityEngine_TerrainUtils_TerrainTileCoord_UnityEngine_Terrain_ *_dictionary; + int32_t _index; + int32_t _version; + struct TerrainTileCoord _currentKey; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_UnityEngine_Terrain___Boxed { + struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_UnityEngine_Terrain___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_UnityEngine_Terrain_ fields; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_UnityEngine_Terrain___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_UnityEngine_Terrain___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_UnityEngine_Terrain___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_UnityEngine_Terrain___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_KeyCollection_TKey_TValue_Enumerator_UnityEngine_TerrainUtils_TerrainTileCoord_UnityEngine_Terrain___VTable vtable; +}; + +struct Convert { + struct Convert__Class *klass; + MonitorData *monitor; +}; + +struct Convert__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Convert__StaticFields { + struct SByte__Array *s_decodingMap; + struct Type__Array *ConvertTypes; + struct Type *EnumType; + struct Char__Array *base64Table; + struct Object *DBNull; +}; + +struct Convert__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Convert__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Convert__VTable vtable; +}; + +struct DevourColors { + struct DevourColors__Class *klass; + MonitorData *monitor; +}; + +struct DevourColors__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct DevourColors__StaticFields { + struct Color32 Beige; + struct Color32 FadedBeige; + struct Color32 Orange; + struct Color32 Red; + struct Color32 Green; +}; + +struct DevourColors__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DevourColors__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DevourColors__VTable vtable; +}; + +struct TerrainCallbacks { + struct TerrainCallbacks__Class *klass; + MonitorData *monitor; +}; + +struct TerrainCallbacks__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct TerrainCallbacks__StaticFields { + struct TerrainCallbacks_HeightmapChangedCallback *heightmapChanged; + struct TerrainCallbacks_TextureChangedCallback *textureChanged; +}; + +struct TerrainCallbacks__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TerrainCallbacks__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TerrainCallbacks__VTable vtable; +}; + +struct TextGeneratorUtilities { + struct TextGeneratorUtilities__Class *klass; + MonitorData *monitor; +}; + +struct TextGeneratorUtilities__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct TextGeneratorUtilities__StaticFields { + struct Vector2 largePositiveVector2; + struct Vector2 largeNegativeVector2; +}; + +struct TextGeneratorUtilities__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TextGeneratorUtilities__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TextGeneratorUtilities__VTable vtable; +}; + +struct TextShaderUtilities { + struct TextShaderUtilities__Class *klass; + MonitorData *monitor; +}; + +struct TextShaderUtilities__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct TextShaderUtilities__StaticFields { + int32_t ID_MainTex; + int32_t ID_FaceTex; + int32_t ID_FaceColor; + int32_t ID_FaceDilate; + int32_t ID_Shininess; + int32_t ID_UnderlayColor; + int32_t ID_UnderlayOffsetX; + int32_t ID_UnderlayOffsetY; + int32_t ID_UnderlayDilate; + int32_t ID_UnderlaySoftness; + int32_t ID_WeightNormal; + int32_t ID_WeightBold; + int32_t ID_OutlineTex; + int32_t ID_OutlineWidth; + int32_t ID_OutlineSoftness; + int32_t ID_OutlineColor; + int32_t ID_Outline2Color; + int32_t ID_Outline2Width; + int32_t ID_Padding; + int32_t ID_GradientScale; + int32_t ID_ScaleX; + int32_t ID_ScaleY; + int32_t ID_PerspectiveFilter; + int32_t ID_Sharpness; + int32_t ID_TextureWidth; + int32_t ID_TextureHeight; + int32_t ID_BevelAmount; + int32_t ID_GlowColor; + int32_t ID_GlowOffset; + int32_t ID_GlowPower; + int32_t ID_GlowOuter; + int32_t ID_GlowInner; + int32_t ID_LightAngle; + int32_t ID_EnvMap; + int32_t ID_EnvMatrix; + int32_t ID_EnvMatrixRotation; + int32_t ID_MaskCoord; + int32_t ID_ClipRect; + int32_t ID_MaskSoftnessX; + int32_t ID_MaskSoftnessY; + int32_t ID_VertexOffsetX; + int32_t ID_VertexOffsetY; + int32_t ID_UseClipRect; + int32_t ID_StencilID; + int32_t ID_StencilOp; + int32_t ID_StencilComp; + int32_t ID_StencilReadMask; + int32_t ID_StencilWriteMask; + int32_t ID_ShaderFlags; + int32_t ID_ScaleRatio_A; + int32_t ID_ScaleRatio_B; + int32_t ID_ScaleRatio_C; + struct String *Keyword_Bevel; + struct String *Keyword_Glow; + struct String *Keyword_Underlay; + struct String *Keyword_Ratios; + struct String *Keyword_MASK_SOFT; + struct String *Keyword_MASK_HARD; + struct String *Keyword_MASK_TEX; + struct String *Keyword_Outline; + struct String *ShaderTag_ZTestMode; + struct String *ShaderTag_CullMode; + float m_clamp; + bool isInitialized; + struct Shader *k_ShaderRef_MobileSDF; + struct Shader *k_ShaderRef_MobileBitmap; +}; + +struct TextShaderUtilities__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TextShaderUtilities__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TextShaderUtilities__VTable vtable; +}; + +struct Action_1_System_Threading_Tasks_Task_1__16__Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_1_System_Threading_Tasks_Task_1__16 { + struct Action_1_System_Threading_Tasks_Task_1__16__Class *klass; + MonitorData *monitor; + struct Action_1_System_Threading_Tasks_Task_1__16__Fields fields; +}; + +struct Action_1_System_Threading_Tasks_Task_1__16__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_1_System_Threading_Tasks_Task_1__16__StaticFields { +}; + +struct Action_1_System_Threading_Tasks_Task_1__16__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_1_System_Threading_Tasks_Task_1__16__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_1_System_Threading_Tasks_Task_1__16__VTable vtable; +}; + +struct MaterialManager { + struct MaterialManager__Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_Material_ { + int32_t hashCode; + int32_t next; + int64_t key; + struct Material *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_Material___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_Material___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_Material_ fields; +}; + +struct __declspec(align(8)) Dictionary_2_System_Int64_UnityEngine_Material___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_Material___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_System_Int64_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Int64_UnityEngine_Material_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Int64_UnityEngine_Material_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_System_Int64_UnityEngine_Material_ { + struct Dictionary_2_System_Int64_UnityEngine_Material___Class *klass; + MonitorData *monitor; + struct Dictionary_2_System_Int64_UnityEngine_Material___Fields fields; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_Material___Array { + struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_Material___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_Material_ vector[32]; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_KeyCollection_System_Int64_UnityEngine_Material___Fields { + struct Dictionary_2_System_Int64_UnityEngine_Material_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Int64_UnityEngine_Material_ { + struct Dictionary_2_TKey_TValue_KeyCollection_System_Int64_UnityEngine_Material___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Int64_UnityEngine_Material___Fields fields; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_ValueCollection_System_Int64_UnityEngine_Material___Fields { + struct Dictionary_2_System_Int64_UnityEngine_Material_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Int64_UnityEngine_Material_ { + struct Dictionary_2_TKey_TValue_ValueCollection_System_Int64_UnityEngine_Material___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Int64_UnityEngine_Material___Fields fields; +}; + +struct KeyValuePair_2_System_Int64_UnityEngine_Material_ { + int64_t key; + struct Material *value; +}; + +struct KeyValuePair_2_System_Int64_UnityEngine_Material___Boxed { + struct KeyValuePair_2_System_Int64_UnityEngine_Material___Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_System_Int64_UnityEngine_Material_ fields; +}; + +struct KeyValuePair_2_System_Int64_UnityEngine_Material___Array { + struct KeyValuePair_2_System_Int64_UnityEngine_Material___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct KeyValuePair_2_System_Int64_UnityEngine_Material_ vector[32]; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Int64_UnityEngine_Material_ { + struct IEnumerator_1_KeyValuePair_2_System_Int64_UnityEngine_Material___Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_Material___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_Material___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_Material___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_Material___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_Material___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_Material___Array__VTable { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_Material___Array__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_Material___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_Material___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_Material___Array__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Int64_UnityEngine_Material___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TKey__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Int64_UnityEngine_Material___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Int64_UnityEngine_Material___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Int64_UnityEngine_Material___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Int64_UnityEngine_Material___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Int64_UnityEngine_Material___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TValue__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Int64_UnityEngine_Material___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Int64_UnityEngine_Material___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Int64_UnityEngine_Material___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Int64_UnityEngine_Material___VTable vtable; +}; + +struct KeyValuePair_2_System_Int64_UnityEngine_Material___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct KeyValuePair_2_System_Int64_UnityEngine_Material___StaticFields { +}; + +struct KeyValuePair_2_System_Int64_UnityEngine_Material___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_Int64_UnityEngine_Material___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_Int64_UnityEngine_Material___VTable vtable; +}; + +struct KeyValuePair_2_System_Int64_UnityEngine_Material___Array__VTable { +}; + +struct KeyValuePair_2_System_Int64_UnityEngine_Material___Array__StaticFields { +}; + +struct KeyValuePair_2_System_Int64_UnityEngine_Material___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_Int64_UnityEngine_Material___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_Int64_UnityEngine_Material___Array__VTable vtable; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Int64_UnityEngine_Material___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Int64_UnityEngine_Material___StaticFields { +}; + +struct IEnumerator_1_KeyValuePair_2_System_Int64_UnityEngine_Material___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_KeyValuePair_2_System_Int64_UnityEngine_Material___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_KeyValuePair_2_System_Int64_UnityEngine_Material___VTable vtable; +}; + +struct Dictionary_2_System_Int64_UnityEngine_Material___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Values; + VirtualInvokeData ContainsKey; + VirtualInvokeData Add; + VirtualInvokeData Remove; + VirtualInvokeData TryGetValue; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add; + VirtualInvokeData Clear; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_get_Item; + VirtualInvokeData System_Collections_IDictionary_set_Item; + VirtualInvokeData System_Collections_IDictionary_get_Keys; + VirtualInvokeData System_Collections_IDictionary_get_Values; + VirtualInvokeData System_Collections_IDictionary_Contains; + VirtualInvokeData System_Collections_IDictionary_Add; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IDictionary_get_IsReadOnly; + VirtualInvokeData System_Collections_IDictionary_get_IsFixedSize; + VirtualInvokeData System_Collections_IDictionary_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_Remove; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData TryGetValue_1; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Values; + VirtualInvokeData get_Count_2; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct Dictionary_2_System_Int64_UnityEngine_Material___StaticFields { +}; + +struct Dictionary_2_System_Int64_UnityEngine_Material___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_System_Int64_UnityEngine_Material___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_System_Int64_UnityEngine_Material___VTable vtable; +}; + +struct MaterialManager__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct MaterialManager__StaticFields { + struct Dictionary_2_System_Int64_UnityEngine_Material_ *s_FallbackMaterials; +}; + +struct MaterialManager__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MaterialManager__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MaterialManager__VTable vtable; +}; + +struct ICollection_1_System_ArraySegment_1_ { + struct ICollection_1_System_ArraySegment_1___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_System_ArraySegment_1___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_System_ArraySegment_1___StaticFields { +}; + +struct ICollection_1_System_ArraySegment_1___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_System_ArraySegment_1___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_System_ArraySegment_1___VTable vtable; +}; + +struct Socket_StateTaskCompletionSource_2_SocketFlags_SocketReceiveMessageFromResult___Fields { + struct TaskCompletionSource_1_System_Net_Sockets_SocketReceiveMessageFromResult___Fields _; + #if defined(_CPLUSPLUS_) + SocketFlags__Enum _field1; + #else + int32_t _field1; + #endif +}; + +struct Socket_StateTaskCompletionSource_2_SocketFlags_SocketReceiveMessageFromResult_ { + struct Socket_StateTaskCompletionSource_2_SocketFlags_SocketReceiveMessageFromResult___Class *klass; + MonitorData *monitor; + struct Socket_StateTaskCompletionSource_2_SocketFlags_SocketReceiveMessageFromResult___Fields fields; +}; + +struct Socket_StateTaskCompletionSource_3_SocketFlags_System_Net_EndPoint_SocketReceiveMessageFromResult___Fields { + struct Socket_StateTaskCompletionSource_2_SocketFlags_SocketReceiveMessageFromResult___Fields _; + struct EndPoint *_field2; +}; + +struct Socket_StateTaskCompletionSource_3_SocketFlags_System_Net_EndPoint_SocketReceiveMessageFromResult_ { + struct Socket_StateTaskCompletionSource_3_SocketFlags_System_Net_EndPoint_SocketReceiveMessageFromResult___Class *klass; + MonitorData *monitor; + struct Socket_StateTaskCompletionSource_3_SocketFlags_System_Net_EndPoint_SocketReceiveMessageFromResult___Fields fields; +}; + +struct Socket_StateTaskCompletionSource_2_SocketFlags_SocketReceiveMessageFromResult___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Socket_StateTaskCompletionSource_2_SocketFlags_SocketReceiveMessageFromResult___StaticFields { +}; + +struct Socket_StateTaskCompletionSource_2_SocketFlags_SocketReceiveMessageFromResult___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Socket_StateTaskCompletionSource_2_SocketFlags_SocketReceiveMessageFromResult___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Socket_StateTaskCompletionSource_2_SocketFlags_SocketReceiveMessageFromResult___VTable vtable; +}; + +struct Socket_StateTaskCompletionSource_3_SocketFlags_System_Net_EndPoint_SocketReceiveMessageFromResult___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Socket_StateTaskCompletionSource_3_SocketFlags_System_Net_EndPoint_SocketReceiveMessageFromResult___StaticFields { +}; + +struct Socket_StateTaskCompletionSource_3_SocketFlags_System_Net_EndPoint_SocketReceiveMessageFromResult___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Socket_StateTaskCompletionSource_3_SocketFlags_System_Net_EndPoint_SocketReceiveMessageFromResult___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Socket_StateTaskCompletionSource_3_SocketFlags_System_Net_EndPoint_SocketReceiveMessageFromResult___VTable vtable; +}; + +struct Socket_StateTaskCompletionSource_2_System_Net_EndPoint_SocketReceiveFromResult___Fields { + struct TaskCompletionSource_1_System_Net_Sockets_SocketReceiveFromResult___Fields _; + struct EndPoint *_field1; +}; + +struct Socket_StateTaskCompletionSource_2_System_Net_EndPoint_SocketReceiveFromResult_ { + struct Socket_StateTaskCompletionSource_2_System_Net_EndPoint_SocketReceiveFromResult___Class *klass; + MonitorData *monitor; + struct Socket_StateTaskCompletionSource_2_System_Net_EndPoint_SocketReceiveFromResult___Fields fields; +}; + +struct Socket_StateTaskCompletionSource_2_System_Net_EndPoint_SocketReceiveFromResult___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Socket_StateTaskCompletionSource_2_System_Net_EndPoint_SocketReceiveFromResult___StaticFields { +}; + +struct Socket_StateTaskCompletionSource_2_System_Net_EndPoint_SocketReceiveFromResult___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Socket_StateTaskCompletionSource_2_System_Net_EndPoint_SocketReceiveFromResult___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Socket_StateTaskCompletionSource_2_System_Net_EndPoint_SocketReceiveFromResult___VTable vtable; +}; + +struct __declspec(align(8)) Tuple_2_System_Threading_Tasks_TaskCompletionSource_1_Byte___Fields { + struct TaskCompletionSource_1_System_Int32_ *m_Item1; + struct Byte__Array *m_Item2; +}; + +struct Tuple_2_System_Threading_Tasks_TaskCompletionSource_1_Byte_ { + struct Tuple_2_System_Threading_Tasks_TaskCompletionSource_1_Byte___Class *klass; + MonitorData *monitor; + struct Tuple_2_System_Threading_Tasks_TaskCompletionSource_1_Byte___Fields fields; +}; + +struct Tuple_2_System_Threading_Tasks_TaskCompletionSource_1_Byte___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_IStructuralEquatable_Equals; + VirtualInvokeData System_Collections_IStructuralEquatable_GetHashCode; + VirtualInvokeData System_Collections_IStructuralComparable_CompareTo; + VirtualInvokeData System_IComparable_CompareTo; + VirtualInvokeData System_ITupleInternal_ToString; + VirtualInvokeData System_Runtime_CompilerServices_ITuple_get_Length; +}; + +struct Tuple_2_System_Threading_Tasks_TaskCompletionSource_1_Byte___StaticFields { +}; + +struct Tuple_2_System_Threading_Tasks_TaskCompletionSource_1_Byte___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Tuple_2_System_Threading_Tasks_TaskCompletionSource_1_Byte___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Tuple_2_System_Threading_Tasks_TaskCompletionSource_1_Byte___VTable vtable; +}; + +struct Socket_AwaitableSocketAsyncEventArgs___VTable { +}; + +struct Socket_AwaitableSocketAsyncEventArgs___StaticFields { +}; + +struct Socket_AwaitableSocketAsyncEventArgs___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Socket_AwaitableSocketAsyncEventArgs___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Socket_AwaitableSocketAsyncEventArgs___VTable vtable; +}; + +struct __declspec(align(8)) Tuple_3_System_Threading_Tasks_TaskCompletionSource_1_Memory_1_Byte_Byte___Fields { + struct TaskCompletionSource_1_System_Int32_ *m_Item1; + struct Memory_1_Byte_ m_Item2; + struct Byte__Array *m_Item3; +}; + +struct Tuple_3_System_Threading_Tasks_TaskCompletionSource_1_Memory_1_Byte_Byte_ { + struct Tuple_3_System_Threading_Tasks_TaskCompletionSource_1_Memory_1_Byte_Byte___Class *klass; + MonitorData *monitor; + struct Tuple_3_System_Threading_Tasks_TaskCompletionSource_1_Memory_1_Byte_Byte___Fields fields; +}; + +struct Tuple_3_System_Threading_Tasks_TaskCompletionSource_1_Memory_1_Byte_Byte___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_IStructuralEquatable_Equals; + VirtualInvokeData System_Collections_IStructuralEquatable_GetHashCode; + VirtualInvokeData System_Collections_IStructuralComparable_CompareTo; + VirtualInvokeData System_IComparable_CompareTo; + VirtualInvokeData System_ITupleInternal_ToString; + VirtualInvokeData System_Runtime_CompilerServices_ITuple_get_Length; +}; + +struct Tuple_3_System_Threading_Tasks_TaskCompletionSource_1_Memory_1_Byte_Byte___StaticFields { +}; + +struct Tuple_3_System_Threading_Tasks_TaskCompletionSource_1_Memory_1_Byte_Byte___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Tuple_3_System_Threading_Tasks_TaskCompletionSource_1_Memory_1_Byte_Byte___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Tuple_3_System_Threading_Tasks_TaskCompletionSource_1_Memory_1_Byte_Byte___VTable vtable; +}; + +struct Socket_CachedEventArgs___VTable { +}; + +struct Socket_CachedEventArgs___StaticFields { +}; + +struct Socket_CachedEventArgs___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Socket_CachedEventArgs___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Socket_CachedEventArgs___VTable vtable; +}; + +struct __declspec(align(8)) TaskCompletionSource_1_System_Net_Sockets_Socket___Fields { + struct Task_1_System_Net_Sockets_Socket_ *_task; +}; + +struct TaskCompletionSource_1_System_Net_Sockets_Socket_ { + struct TaskCompletionSource_1_System_Net_Sockets_Socket___Class *klass; + MonitorData *monitor; + struct TaskCompletionSource_1_System_Net_Sockets_Socket___Fields fields; +}; + +struct TaskCompletionSource_1_System_Net_Sockets_Socket___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct TaskCompletionSource_1_System_Net_Sockets_Socket___StaticFields { +}; + +struct TaskCompletionSource_1_System_Net_Sockets_Socket___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TaskCompletionSource_1_System_Net_Sockets_Socket___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TaskCompletionSource_1_System_Net_Sockets_Socket___VTable vtable; +}; + +struct Win32_SOCKADDR { + uint16_t AddressFamily; + struct Byte__Array *AddressData; +}; + +struct Win32_SOCKADDR__Boxed { + struct Win32_SOCKADDR__Class *klass; + MonitorData *monitor; + struct Win32_SOCKADDR fields; +}; + +struct Win32_SOCKADDR__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Win32_SOCKADDR__StaticFields { +}; + +struct Win32_SOCKADDR__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Win32_SOCKADDR__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Win32_SOCKADDR__VTable vtable; +}; + +struct Win32_IP_ADAPTER_MULTICAST_ADDRESS { + struct Win32LengthFlagsUnion LengthFlags; + void *Next; + struct Win32_SOCKET_ADDRESS Address; +}; + +struct Win32_IP_ADAPTER_MULTICAST_ADDRESS__Boxed { + struct Win32_IP_ADAPTER_MULTICAST_ADDRESS__Class *klass; + MonitorData *monitor; + struct Win32_IP_ADAPTER_MULTICAST_ADDRESS fields; +}; + +struct Win32_IP_ADAPTER_MULTICAST_ADDRESS__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Win32_IP_ADAPTER_MULTICAST_ADDRESS__StaticFields { +}; + +struct Win32_IP_ADAPTER_MULTICAST_ADDRESS__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Win32_IP_ADAPTER_MULTICAST_ADDRESS__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Win32_IP_ADAPTER_MULTICAST_ADDRESS__VTable vtable; +}; + +struct Win32_IP_ADAPTER_GATEWAY_ADDRESS { + struct Win32LengthFlagsUnion LengthFlags; + void *Next; + struct Win32_SOCKET_ADDRESS Address; +}; + +struct Win32_IP_ADAPTER_GATEWAY_ADDRESS__Boxed { + struct Win32_IP_ADAPTER_GATEWAY_ADDRESS__Class *klass; + MonitorData *monitor; + struct Win32_IP_ADAPTER_GATEWAY_ADDRESS fields; +}; + +struct Win32_IP_ADAPTER_GATEWAY_ADDRESS__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Win32_IP_ADAPTER_GATEWAY_ADDRESS__StaticFields { +}; + +struct Win32_IP_ADAPTER_GATEWAY_ADDRESS__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Win32_IP_ADAPTER_GATEWAY_ADDRESS__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Win32_IP_ADAPTER_GATEWAY_ADDRESS__VTable vtable; +}; + +struct PointerType { + struct PointerType__Class *klass; + MonitorData *monitor; +}; + +struct PointerType__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct PointerType__StaticFields { + struct String *mouse; + struct String *touch; + struct String *pen; + struct String *unknown; +}; + +struct PointerType__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PointerType__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PointerType__VTable vtable; +}; + +struct __declspec(align(8)) List_1_System_Net_IPEndPoint___Fields { + struct IPEndPoint__Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_System_Net_IPEndPoint_ { + struct List_1_System_Net_IPEndPoint___Class *klass; + MonitorData *monitor; + struct List_1_System_Net_IPEndPoint___Fields fields; +}; + +struct List_1_System_Net_IPEndPoint___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_System_Net_IPEndPoint___StaticFields { + struct IPEndPoint__Array *s_emptyArray; +}; + +struct List_1_System_Net_IPEndPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_System_Net_IPEndPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_System_Net_IPEndPoint___VTable vtable; +}; + +struct Win32_IP_ADAPTER_DNS_SERVER_ADDRESS { + struct Win32LengthFlagsUnion LengthFlags; + void *Next; + struct Win32_SOCKET_ADDRESS Address; +}; + +struct Win32_IP_ADAPTER_DNS_SERVER_ADDRESS__Boxed { + struct Win32_IP_ADAPTER_DNS_SERVER_ADDRESS__Class *klass; + MonitorData *monitor; + struct Win32_IP_ADAPTER_DNS_SERVER_ADDRESS fields; +}; + +struct Win32_IP_ADAPTER_DNS_SERVER_ADDRESS__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Win32_IP_ADAPTER_DNS_SERVER_ADDRESS__StaticFields { +}; + +struct Win32_IP_ADAPTER_DNS_SERVER_ADDRESS__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Win32_IP_ADAPTER_DNS_SERVER_ADDRESS__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Win32_IP_ADAPTER_DNS_SERVER_ADDRESS__VTable vtable; +}; + +struct Win32_IP_ADAPTER_ANYCAST_ADDRESS { + struct Win32LengthFlagsUnion LengthFlags; + void *Next; + struct Win32_SOCKET_ADDRESS Address; +}; + +struct Win32_IP_ADAPTER_ANYCAST_ADDRESS__Boxed { + struct Win32_IP_ADAPTER_ANYCAST_ADDRESS__Class *klass; + MonitorData *monitor; + struct Win32_IP_ADAPTER_ANYCAST_ADDRESS fields; +}; + +struct Win32_IP_ADAPTER_ANYCAST_ADDRESS__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Win32_IP_ADAPTER_ANYCAST_ADDRESS__StaticFields { +}; + +struct Win32_IP_ADAPTER_ANYCAST_ADDRESS__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Win32_IP_ADAPTER_ANYCAST_ADDRESS__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Win32_IP_ADAPTER_ANYCAST_ADDRESS__VTable vtable; +}; + +struct Win32_IP_ADAPTER_WINS_SERVER_ADDRESS { + struct Win32LengthFlagsUnion LengthFlags; + void *Next; + struct Win32_SOCKET_ADDRESS Address; +}; + +struct Win32_IP_ADAPTER_WINS_SERVER_ADDRESS__Boxed { + struct Win32_IP_ADAPTER_WINS_SERVER_ADDRESS__Class *klass; + MonitorData *monitor; + struct Win32_IP_ADAPTER_WINS_SERVER_ADDRESS fields; +}; + +struct Win32_IP_ADAPTER_WINS_SERVER_ADDRESS__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Win32_IP_ADAPTER_WINS_SERVER_ADDRESS__StaticFields { +}; + +struct Win32_IP_ADAPTER_WINS_SERVER_ADDRESS__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Win32_IP_ADAPTER_WINS_SERVER_ADDRESS__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Win32_IP_ADAPTER_WINS_SERVER_ADDRESS__VTable vtable; +}; + +struct Func_1_System_Net_NetworkInformation_PingReply___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_1_System_Net_NetworkInformation_PingReply_ { + struct Func_1_System_Net_NetworkInformation_PingReply___Class *klass; + MonitorData *monitor; + struct Func_1_System_Net_NetworkInformation_PingReply___Fields fields; +}; + +struct Func_1_System_Net_NetworkInformation_PingReply___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_1_System_Net_NetworkInformation_PingReply___StaticFields { +}; + +struct Func_1_System_Net_NetworkInformation_PingReply___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_1_System_Net_NetworkInformation_PingReply___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_1_System_Net_NetworkInformation_PingReply___VTable vtable; +}; + +struct Action_1_System_Threading_Tasks_Task_1__17__Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_1_System_Threading_Tasks_Task_1__17 { + struct Action_1_System_Threading_Tasks_Task_1__17__Class *klass; + MonitorData *monitor; + struct Action_1_System_Threading_Tasks_Task_1__17__Fields fields; +}; + +struct Action_1_System_Threading_Tasks_Task_1__17__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_1_System_Threading_Tasks_Task_1__17__StaticFields { +}; + +struct Action_1_System_Threading_Tasks_Task_1__17__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_1_System_Threading_Tasks_Task_1__17__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_1_System_Threading_Tasks_Task_1__17__VTable vtable; +}; + +struct Action_1_Microsoft_MixedReality_OpenXR_SubsystemController___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_1_Microsoft_MixedReality_OpenXR_SubsystemController_ { + struct Action_1_Microsoft_MixedReality_OpenXR_SubsystemController___Class *klass; + MonitorData *monitor; + struct Action_1_Microsoft_MixedReality_OpenXR_SubsystemController___Fields fields; +}; + +struct Action_1_Microsoft_MixedReality_OpenXR_SubsystemController___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_1_Microsoft_MixedReality_OpenXR_SubsystemController___StaticFields { +}; + +struct Action_1_Microsoft_MixedReality_OpenXR_SubsystemController___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_1_Microsoft_MixedReality_OpenXR_SubsystemController___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_1_Microsoft_MixedReality_OpenXR_SubsystemController___VTable vtable; +}; + +struct EventArgsCache { + struct EventArgsCache__Class *klass; + MonitorData *monitor; +}; + +struct EventArgsCache__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct EventArgsCache__StaticFields { + struct PropertyChangedEventArgs *CountPropertyChanged; + struct PropertyChangedEventArgs *IndexerPropertyChanged; + struct NotifyCollectionChangedEventArgs *ResetCollectionChanged; +}; + +struct EventArgsCache__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct EventArgsCache__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct EventArgsCache__VTable vtable; +}; + +struct IPoolableObject_Internal { + struct IPoolableObject_Internal__Class *klass; + MonitorData *monitor; +}; + +struct IPoolableObject_Internal__VTable { + VirtualInvokeData get_pool; + VirtualInvokeData set_pool; + VirtualInvokeData Clear; +}; + +struct IPoolableObject_Internal__StaticFields { +}; + +struct IPoolableObject_Internal__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IPoolableObject_Internal__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IPoolableObject_Internal__VTable vtable; +}; + +struct Func_2_System_Reflection_FieldInfo_UnityEngine_Rendering_VolumeParameter___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_2_System_Reflection_FieldInfo_UnityEngine_Rendering_VolumeParameter_ { + struct Func_2_System_Reflection_FieldInfo_UnityEngine_Rendering_VolumeParameter___Class *klass; + MonitorData *monitor; + struct Func_2_System_Reflection_FieldInfo_UnityEngine_Rendering_VolumeParameter___Fields fields; +}; + +struct Func_2_System_Reflection_FieldInfo_UnityEngine_Rendering_VolumeParameter___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_2_System_Reflection_FieldInfo_UnityEngine_Rendering_VolumeParameter___StaticFields { +}; + +struct Func_2_System_Reflection_FieldInfo_UnityEngine_Rendering_VolumeParameter___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_2_System_Reflection_FieldInfo_UnityEngine_Rendering_VolumeParameter___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_2_System_Reflection_FieldInfo_UnityEngine_Rendering_VolumeParameter___VTable vtable; +}; + +struct IAstarPooledObject { + struct IAstarPooledObject__Class *klass; + MonitorData *monitor; +}; + +struct IAstarPooledObject__VTable { + VirtualInvokeData OnEnterPool; +}; + +struct IAstarPooledObject__StaticFields { +}; + +struct IAstarPooledObject__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IAstarPooledObject__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IAstarPooledObject__VTable vtable; +}; + +struct IOrderedEnumerable_1_System_Reflection_FieldInfo_ { + struct IOrderedEnumerable_1_System_Reflection_FieldInfo___Class *klass; + MonitorData *monitor; +}; + +struct IOrderedEnumerable_1_System_Reflection_FieldInfo___VTable { + VirtualInvokeData CreateOrderedEnumerable; +}; + +struct IOrderedEnumerable_1_System_Reflection_FieldInfo___StaticFields { +}; + +struct IOrderedEnumerable_1_System_Reflection_FieldInfo___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IOrderedEnumerable_1_System_Reflection_FieldInfo___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IOrderedEnumerable_1_System_Reflection_FieldInfo___VTable vtable; +}; + +struct VMLJRlNegYHbCiCRxBNeWlBQKGKz { + struct VMLJRlNegYHbCiCRxBNeWlBQKGKz__Class *klass; + MonitorData *monitor; +}; + +struct VMLJRlNegYHbCiCRxBNeWlBQKGKz__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct VMLJRlNegYHbCiCRxBNeWlBQKGKz__StaticFields { + struct Int32__Array *DQTXVxbDrSoOOrxXbdXJRSdAKcKg; +}; + +struct VMLJRlNegYHbCiCRxBNeWlBQKGKz__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct VMLJRlNegYHbCiCRxBNeWlBQKGKz__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct VMLJRlNegYHbCiCRxBNeWlBQKGKz__VTable vtable; +}; + +struct TMP_Dropdown__Array { + struct TMP_Dropdown__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct TMP_Dropdown *vector[32]; +}; + +struct TMP_Dropdown__Array__VTable { +}; + +struct TMP_Dropdown__Array__StaticFields { +}; + +struct TMP_Dropdown__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TMP_Dropdown__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TMP_Dropdown__Array__VTable vtable; +}; + +struct List_1_T_Enumerator_TextKeyValue_ { + struct List_1_TextKeyValue_ *_list; + int32_t _index; + int32_t _version; + struct TextKeyValue *_current; +}; + +struct List_1_T_Enumerator_TextKeyValue___Boxed { + struct List_1_T_Enumerator_TextKeyValue___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_TextKeyValue_ fields; +}; + +struct List_1_T_Enumerator_TextKeyValue___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_TextKeyValue___StaticFields { +}; + +struct List_1_T_Enumerator_TextKeyValue___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_TextKeyValue___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_TextKeyValue___VTable vtable; +}; + +struct List_1_T_Enumerator_Language_ { + struct List_1_Language_ *_list; + int32_t _index; + int32_t _version; + struct Language *_current; +}; + +struct List_1_T_Enumerator_Language___Boxed { + struct List_1_T_Enumerator_Language___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_Language_ fields; +}; + +struct List_1_T_Enumerator_Language___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_Language___StaticFields { +}; + +struct List_1_T_Enumerator_Language___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_Language___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_Language___VTable vtable; +}; + +struct Predicate_1_LanguageUniqueFont___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Predicate_1_LanguageUniqueFont_ { + struct Predicate_1_LanguageUniqueFont___Class *klass; + MonitorData *monitor; + struct Predicate_1_LanguageUniqueFont___Fields fields; +}; + +struct Predicate_1_LanguageUniqueFont___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Predicate_1_LanguageUniqueFont___StaticFields { +}; + +struct Predicate_1_LanguageUniqueFont___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Predicate_1_LanguageUniqueFont___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Predicate_1_LanguageUniqueFont___VTable vtable; +}; + +struct List_1_T_Enumerator_UnityEngine_TextAsset_ { + struct List_1_UnityEngine_TextAsset_ *_list; + int32_t _index; + int32_t _version; + struct TextAsset *_current; +}; + +struct List_1_T_Enumerator_UnityEngine_TextAsset___Boxed { + struct List_1_T_Enumerator_UnityEngine_TextAsset___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_UnityEngine_TextAsset_ fields; +}; + +struct List_1_T_Enumerator_UnityEngine_TextAsset___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_UnityEngine_TextAsset___StaticFields { +}; + +struct List_1_T_Enumerator_UnityEngine_TextAsset___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_UnityEngine_TextAsset___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_UnityEngine_TextAsset___VTable vtable; +}; + +struct MessageHelpers { + struct MessageHelpers__Class *klass; + MonitorData *monitor; +}; + +struct MessageHelpers__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct MessageHelpers__StaticFields { + struct Regex *pattern; +}; + +struct MessageHelpers__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MessageHelpers__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MessageHelpers__VTable vtable; +}; + +struct ReInput { + struct ReInput__Class *klass; + MonitorData *monitor; +}; + +struct ReInput__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ReInput__StaticFields { + struct InputManager_Base *nqVrajLkUidhqEnxOjgtlfVWooWfA; + struct PlatformInputManager *uGNNTBXboYOhrRSuXrEIjHOtTuYi; + struct awbjHmZDZGaFbpFdVngkjOlucOb *woGfikbTMUlnqqSzYPAxhMbBEtFAc; + struct XKHfzUVAieDxXBogCMTJRCSldnQzA *xSupkBJZfrJJuGArUHKtovDZkneB; + struct rmOEevBvfrQDGKHWQeGbdjrwKrIx *XYgwSRZEIShOCqoYrQVxjbgWUpfL; + struct ControllerDataFiles *DGJZSTbzQZrHHhfrDLRgArnLazSP; + struct UserData *WvAHtBhMvSbEPTZVCCZYoJFuUWjC; + bool UaXGLAYBXksUgrjKXQOwtELwGWYt; + struct ConfigVars *gmJdsBoojSRdMtSrMfEnAEVVqdjX; + #if defined(_CPLUSPLUS_) + UpdateLoopType__Enum xMobGKORSNiHrYnlbcGZijKFVttoA; + #else + int32_t xMobGKORSNiHrYnlbcGZijKFVttoA; + #endif + bool OLOjeuyfUYUrVjUAaNhChnKNTKtv; + #if defined(_CPLUSPLUS_) + Platform__Enum CUPuGBXqXIYJxbblofTFydQrGSNdA; + #else + int32_t CUPuGBXqXIYJxbblofTFydQrGSNdA; + #endif + #if defined(_CPLUSPLUS_) + WebplayerPlatform__Enum efdrlxFikJJSToQOLEuSBCYGVPvg; + #else + int32_t efdrlxFikJJSToQOLEuSBCYGVPvg; + #endif + #if defined(_CPLUSPLUS_) + EditorPlatform__Enum UAarwdpPYFZZWOekzpTMHjFumtLB; + #else + int32_t UAarwdpPYFZZWOekzpTMHjFumtLB; + #endif + bool QJWtKYmHfrdiWqUAZJxWYWMeYtyJ; + struct TimerAbs *zarGJrpxDdCoNOIRbFsElyokIpyM; + struct ReInput_DmhbSZjMCnZgLPemnolJFUVnzbICA *uRfBPfXTMPaWQwgTrSciKGquJQEk; + struct String *SgwyarSuWhSGcjSQIfJgaGeAiNLEb; + bool RVMnMpzitWTrCgIYsXcPugcZKcXn; + bool wCIikouVkCwEIkGxdXBqqjETXBvP; + bool WPMZUmUhjAHCVIyfAvduknICCFnBA; + int32_t kFfVMiXeQEfwdBtBtVObqaeamkXhA; + int32_t _id; + int32_t YErzQJmOFGaxUBgtiVWKOaIqdLLB; + int32_t chfHNHOyUVELfdqPaVHtFRKOuwpv; + bool hEDhSmiZFFKcMICEQabYHhVCihcaB; + struct ReInput_UnityTouch *SbnIDcFUFpHtVwnaIrVyfpLDuRTzA; + struct ReInput_PlayerHelper *oXKTEAwJUEasQnlLjDEBDoCLOncHA; + struct ReInput_ControllerHelper *oxNkNdgRhnFmkfnUEVfmSenJqWCOA; + struct ReInput_MappingHelper *EsJmIROiYPrhNRVPpEuyMjRTixEv; + struct ReInput_TimeHelper *EXTSZZrRmZdsDOFetdkJBnXtATGfA; + struct ReInput_ConfigHelper *LVVOeOfHOYrnIsRUNUzfdcSaNJgR; + struct oQuUFLJuRrUxJDynhLyEQLTqbPLb *CayBVSaXMaDtpgXEBeUXfeBeqzKOA; + struct UserDataStore *bHZTTJhkdAewzfuFONexZnHJWIxr; + struct IControllerAssigner *gwGEsjEAnhQJBSQjgiJmBTRSeQoLA; + struct ReInput_eXmRegBcghEOBdHNIAjtlBfyfbuD *uHJomUISRVMveZaxMOYKZQNgojNf; + struct SafeAction_1_Rewired_ControllerStatusChangedEventArgs_ *OTiFUhEimTqokODNofuimcHOtcTg; + struct SafeAction_1_Rewired_ControllerStatusChangedEventArgs_ *bvucAVSlqwxWCkCwpAZlhBIrSUdUA; + struct SafeAction_1_Rewired_ControllerStatusChangedEventArgs_ *jnpEojlwGewQpimRskWEIPAWgFxf; + struct SafeAction *xzmeEJDEXqTjjfQJYqWHJQdoHxlbb; + struct SafeAction *bbknYYlYYTlEkSmCSjxCdvdoQTfLA; + struct SafeAction *vdzBljeoiApBQsjkRNNaHKzKVeQD; + struct SafeAction *dLKcIvYHQrytzBnObAcoLonrIrxc; + struct SafeAction *XAaSamldHJmKaFEOfuUFXRMAnCWR; + struct Action_1_Boolean_ *_ApplicationFocusChangedEvent; + struct Action *wnzFiLsGJgfqpXplARfqQXZcknvf; + struct Action_1_Rewired_UpdateLoopType_ *rksrqKdQKIvJUvhMsaaaKjoxCtaLA; + struct Action_1_Rewired_UpdateLoopType_ *hriNlsIrEPspFsrkMEdpMDVUpgDd; + struct Action_1_Rewired_UpdateLoopType_ *vAictpBKWjAVOUEqeFBHYkNWTAxi; + struct Action *XWUfSYwAIeDUQrArnerJhhNXCjVGA; + struct Action_1_Boolean_ *AkBhxXRjpJXKTNZkDAoulNZzBmZL; + struct Action_1_Boolean_ *zljkNgbDiAzNnbJFcGWIDZcZVMKLA; + struct Action_1_Boolean_ *sSdaEVjPxejJobNrHUajgxKpZFIEB; + struct Action_1_UnityEngine_FullScreenMode_ *ixxygVerXMhnpyiZgWaZkCAsMnwS; + struct Action *IIfzZBoUwtbbhmlsTgVDvlCFSIHu; + struct Action_1_Boolean_ *fdZzPWqNvmerZEprRUOPMsEPeQsk; + double unscaledDeltaTime; + double unscaledTime; + double unscaledTimePrev; + uint32_t currentFrame; + uint32_t previousFrame; + uint32_t absFrame; +}; + +struct ReInput__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ReInput__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ReInput__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_String_KeySpawnPoint_ { + struct Dictionary_2_System_String_KeySpawnPoint_ *_dictionary; + int32_t _version; + int32_t _index; + struct KeyValuePair_2_System_String_KeySpawnPoint_ _current; + int32_t _getEnumeratorRetType; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_String_KeySpawnPoint___Boxed { + struct Dictionary_2_TKey_TValue_Enumerator_System_String_KeySpawnPoint___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Enumerator_System_String_KeySpawnPoint_ fields; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_String_KeySpawnPoint___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Key; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Value; + VirtualInvokeData System_Collections_IDictionaryEnumerator_get_Entry; +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_String_KeySpawnPoint___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Enumerator_System_String_KeySpawnPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Enumerator_System_String_KeySpawnPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Enumerator_System_String_KeySpawnPoint___VTable vtable; +}; + +struct Predicate_1_TownLocation___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Predicate_1_TownLocation_ { + struct Predicate_1_TownLocation___Class *klass; + MonitorData *monitor; + struct Predicate_1_TownLocation___Fields fields; +}; + +struct Predicate_1_TownLocation___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Predicate_1_TownLocation___StaticFields { +}; + +struct Predicate_1_TownLocation___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Predicate_1_TownLocation___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Predicate_1_TownLocation___VTable vtable; +}; + +struct IList_1_TownLocation_ { + struct IList_1_TownLocation___Class *klass; + MonitorData *monitor; +}; + +struct IList_1_TownLocation___VTable { + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; +}; + +struct IList_1_TownLocation___StaticFields { +}; + +struct IList_1_TownLocation___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IList_1_TownLocation___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IList_1_TownLocation___VTable vtable; +}; + +struct IOrderedEnumerable_1_UnityEngine_TextCore_Text_SpriteCharacter_ { + struct IOrderedEnumerable_1_UnityEngine_TextCore_Text_SpriteCharacter___Class *klass; + MonitorData *monitor; +}; + +struct IOrderedEnumerable_1_UnityEngine_TextCore_Text_SpriteCharacter___VTable { + VirtualInvokeData CreateOrderedEnumerable; +}; + +struct IOrderedEnumerable_1_UnityEngine_TextCore_Text_SpriteCharacter___StaticFields { +}; + +struct IOrderedEnumerable_1_UnityEngine_TextCore_Text_SpriteCharacter___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IOrderedEnumerable_1_UnityEngine_TextCore_Text_SpriteCharacter___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IOrderedEnumerable_1_UnityEngine_TextCore_Text_SpriteCharacter___VTable vtable; +}; + +struct IEnumerable_1_LockboxSpawnPoint_ { + struct IEnumerable_1_LockboxSpawnPoint___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_LockboxSpawnPoint___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_LockboxSpawnPoint___StaticFields { +}; + +struct IEnumerable_1_LockboxSpawnPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_LockboxSpawnPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_LockboxSpawnPoint___VTable vtable; +}; + +struct List_1_T_Enumerator_TownLocation_ { + struct List_1_TownLocation_ *_list; + int32_t _index; + int32_t _version; + struct TownLocation *_current; +}; + +struct List_1_T_Enumerator_TownLocation___Boxed { + struct List_1_T_Enumerator_TownLocation___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_TownLocation_ fields; +}; + +struct List_1_T_Enumerator_TownLocation___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_TownLocation___StaticFields { +}; + +struct List_1_T_Enumerator_TownLocation___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_TownLocation___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_TownLocation___VTable vtable; +}; + +struct List_1_T_Enumerator_LockboxSpawnPoint_ { + struct List_1_LockboxSpawnPoint_ *_list; + int32_t _index; + int32_t _version; + struct LockboxSpawnPoint *_current; +}; + +struct List_1_T_Enumerator_LockboxSpawnPoint___Boxed { + struct List_1_T_Enumerator_LockboxSpawnPoint___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_LockboxSpawnPoint_ fields; +}; + +struct List_1_T_Enumerator_LockboxSpawnPoint___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_LockboxSpawnPoint___StaticFields { +}; + +struct List_1_T_Enumerator_LockboxSpawnPoint___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_LockboxSpawnPoint___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_LockboxSpawnPoint___VTable vtable; +}; + +struct IOrderedEnumerable_1_UnityEngine_TextCore_Text_SpriteGlyph_ { + struct IOrderedEnumerable_1_UnityEngine_TextCore_Text_SpriteGlyph___Class *klass; + MonitorData *monitor; +}; + +struct IOrderedEnumerable_1_UnityEngine_TextCore_Text_SpriteGlyph___VTable { + VirtualInvokeData CreateOrderedEnumerable; +}; + +struct IOrderedEnumerable_1_UnityEngine_TextCore_Text_SpriteGlyph___StaticFields { +}; + +struct IOrderedEnumerable_1_UnityEngine_TextCore_Text_SpriteGlyph___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IOrderedEnumerable_1_UnityEngine_TextCore_Text_SpriteGlyph___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IOrderedEnumerable_1_UnityEngine_TextCore_Text_SpriteGlyph___VTable vtable; +}; + +struct FontAssetUtilities { + struct FontAssetUtilities__Class *klass; + MonitorData *monitor; +}; + +struct FontAssetUtilities__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct FontAssetUtilities__StaticFields { + struct HashSet_1_System_Int32_ *k_SearchedAssets; +}; + +struct FontAssetUtilities__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct FontAssetUtilities__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct FontAssetUtilities__VTable vtable; +}; + +struct IEnumerable_1_Kalagaan_HairDesignerExtension_HairDesignerShader_ { + struct IEnumerable_1_Kalagaan_HairDesignerExtension_HairDesignerShader___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_Kalagaan_HairDesignerExtension_HairDesignerShader___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_Kalagaan_HairDesignerExtension_HairDesignerShader___StaticFields { +}; + +struct IEnumerable_1_Kalagaan_HairDesignerExtension_HairDesignerShader___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_Kalagaan_HairDesignerExtension_HairDesignerShader___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_Kalagaan_HairDesignerExtension_HairDesignerShader___VTable vtable; +}; + +struct IOrderedEnumerable_1_UnityEngine_TextCore_Text_Character_ { + struct IOrderedEnumerable_1_UnityEngine_TextCore_Text_Character___Class *klass; + MonitorData *monitor; +}; + +struct IOrderedEnumerable_1_UnityEngine_TextCore_Text_Character___VTable { + VirtualInvokeData CreateOrderedEnumerable; +}; + +struct IOrderedEnumerable_1_UnityEngine_TextCore_Text_Character___StaticFields { +}; + +struct IOrderedEnumerable_1_UnityEngine_TextCore_Text_Character___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IOrderedEnumerable_1_UnityEngine_TextCore_Text_Character___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IOrderedEnumerable_1_UnityEngine_TextCore_Text_Character___VTable vtable; +}; + +struct TextResourceManager { + struct TextResourceManager__Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_TextCore_Text_FontAsset_ { + int32_t hashCode; + int32_t next; + int64_t key; + struct FontAsset *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_TextCore_Text_FontAsset___Boxed { + struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_TextCore_Text_FontAsset___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_TextCore_Text_FontAsset_ fields; +}; + +struct __declspec(align(8)) Dictionary_2_System_Int64_UnityEngine_TextCore_Text_FontAsset___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_TextCore_Text_FontAsset___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_System_Int64_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Int64_UnityEngine_TextCore_Text_FontAsset_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Int64_UnityEngine_TextCore_Text_FontAsset_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_System_Int64_UnityEngine_TextCore_Text_FontAsset_ { + struct Dictionary_2_System_Int64_UnityEngine_TextCore_Text_FontAsset___Class *klass; + MonitorData *monitor; + struct Dictionary_2_System_Int64_UnityEngine_TextCore_Text_FontAsset___Fields fields; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_TextCore_Text_FontAsset___Array { + struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_TextCore_Text_FontAsset___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_TextCore_Text_FontAsset_ vector[32]; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_KeyCollection_System_Int64_UnityEngine_TextCore_Text_FontAsset___Fields { + struct Dictionary_2_System_Int64_UnityEngine_TextCore_Text_FontAsset_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Int64_UnityEngine_TextCore_Text_FontAsset_ { + struct Dictionary_2_TKey_TValue_KeyCollection_System_Int64_UnityEngine_TextCore_Text_FontAsset___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Int64_UnityEngine_TextCore_Text_FontAsset___Fields fields; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_ValueCollection_System_Int64_UnityEngine_TextCore_Text_FontAsset___Fields { + struct Dictionary_2_System_Int64_UnityEngine_TextCore_Text_FontAsset_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Int64_UnityEngine_TextCore_Text_FontAsset_ { + struct Dictionary_2_TKey_TValue_ValueCollection_System_Int64_UnityEngine_TextCore_Text_FontAsset___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Int64_UnityEngine_TextCore_Text_FontAsset___Fields fields; +}; + +struct KeyValuePair_2_System_Int64_UnityEngine_TextCore_Text_FontAsset_ { + int64_t key; + struct FontAsset *value; +}; + +struct KeyValuePair_2_System_Int64_UnityEngine_TextCore_Text_FontAsset___Boxed { + struct KeyValuePair_2_System_Int64_UnityEngine_TextCore_Text_FontAsset___Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_System_Int64_UnityEngine_TextCore_Text_FontAsset_ fields; +}; + +struct KeyValuePair_2_System_Int64_UnityEngine_TextCore_Text_FontAsset___Array { + struct KeyValuePair_2_System_Int64_UnityEngine_TextCore_Text_FontAsset___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct KeyValuePair_2_System_Int64_UnityEngine_TextCore_Text_FontAsset_ vector[32]; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Int64_UnityEngine_TextCore_Text_FontAsset_ { + struct IEnumerator_1_KeyValuePair_2_System_Int64_UnityEngine_TextCore_Text_FontAsset___Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_TextCore_Text_FontAsset___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_TextCore_Text_FontAsset___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_TextCore_Text_FontAsset___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_TextCore_Text_FontAsset___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_TextCore_Text_FontAsset___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_TextCore_Text_FontAsset___Array__VTable { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_TextCore_Text_FontAsset___Array__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_TextCore_Text_FontAsset___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_TextCore_Text_FontAsset___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_TextCore_Text_FontAsset___Array__VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Int64_UnityEngine_TextCore_Text_FontAsset___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TKey__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Int64_UnityEngine_TextCore_Text_FontAsset___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_System_Int64_UnityEngine_TextCore_Text_FontAsset___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Int64_UnityEngine_TextCore_Text_FontAsset___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_KeyCollection_System_Int64_UnityEngine_TextCore_Text_FontAsset___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Int64_UnityEngine_TextCore_Text_FontAsset___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TValue__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Int64_UnityEngine_TextCore_Text_FontAsset___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_System_Int64_UnityEngine_TextCore_Text_FontAsset___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Int64_UnityEngine_TextCore_Text_FontAsset___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_System_Int64_UnityEngine_TextCore_Text_FontAsset___VTable vtable; +}; + +struct KeyValuePair_2_System_Int64_UnityEngine_TextCore_Text_FontAsset___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct KeyValuePair_2_System_Int64_UnityEngine_TextCore_Text_FontAsset___StaticFields { +}; + +struct KeyValuePair_2_System_Int64_UnityEngine_TextCore_Text_FontAsset___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_Int64_UnityEngine_TextCore_Text_FontAsset___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_Int64_UnityEngine_TextCore_Text_FontAsset___VTable vtable; +}; + +struct KeyValuePair_2_System_Int64_UnityEngine_TextCore_Text_FontAsset___Array__VTable { +}; + +struct KeyValuePair_2_System_Int64_UnityEngine_TextCore_Text_FontAsset___Array__StaticFields { +}; + +struct KeyValuePair_2_System_Int64_UnityEngine_TextCore_Text_FontAsset___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_System_Int64_UnityEngine_TextCore_Text_FontAsset___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_System_Int64_UnityEngine_TextCore_Text_FontAsset___Array__VTable vtable; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Int64_UnityEngine_TextCore_Text_FontAsset___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_KeyValuePair_2_System_Int64_UnityEngine_TextCore_Text_FontAsset___StaticFields { +}; + +struct IEnumerator_1_KeyValuePair_2_System_Int64_UnityEngine_TextCore_Text_FontAsset___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_KeyValuePair_2_System_Int64_UnityEngine_TextCore_Text_FontAsset___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_KeyValuePair_2_System_Int64_UnityEngine_TextCore_Text_FontAsset___VTable vtable; +}; + +struct Dictionary_2_System_Int64_UnityEngine_TextCore_Text_FontAsset___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Values; + VirtualInvokeData ContainsKey; + VirtualInvokeData Add; + VirtualInvokeData Remove; + VirtualInvokeData TryGetValue; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add; + VirtualInvokeData Clear; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_get_Item; + VirtualInvokeData System_Collections_IDictionary_set_Item; + VirtualInvokeData System_Collections_IDictionary_get_Keys; + VirtualInvokeData System_Collections_IDictionary_get_Values; + VirtualInvokeData System_Collections_IDictionary_Contains; + VirtualInvokeData System_Collections_IDictionary_Add; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IDictionary_get_IsReadOnly; + VirtualInvokeData System_Collections_IDictionary_get_IsFixedSize; + VirtualInvokeData System_Collections_IDictionary_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_Remove; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData TryGetValue_1; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Values; + VirtualInvokeData get_Count_2; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct Dictionary_2_System_Int64_UnityEngine_TextCore_Text_FontAsset___StaticFields { +}; + +struct Dictionary_2_System_Int64_UnityEngine_TextCore_Text_FontAsset___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_System_Int64_UnityEngine_TextCore_Text_FontAsset___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_System_Int64_UnityEngine_TextCore_Text_FontAsset___VTable vtable; +}; + +struct TextResourceManager__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct TextResourceManager__StaticFields { + struct Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ *s_FontAssetReferences; + struct Dictionary_2_System_Int32_UnityEngine_TextCore_Text_FontAsset_ *s_FontAssetNameReferenceLookup; + struct Dictionary_2_System_Int64_UnityEngine_TextCore_Text_FontAsset_ *s_FontAssetFamilyNameAndStyleReferenceLookup; + struct List_1_System_Int32_ *s_FontAssetRemovalList; + int32_t k_RegularStyleHashCode; +}; + +struct TextResourceManager__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct TextResourceManager__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct TextResourceManager__VTable vtable; +}; + +struct IEnumerable_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase_ { + struct IEnumerable_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase___StaticFields { +}; + +struct IEnumerable_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_Kalagaan_HairDesignerExtension_HairDesignerColliderBase___VTable vtable; +}; + +struct IEnumerable_1_Kalagaan_HairDesignerExtension_MotionSolver_Node_ { + struct IEnumerable_1_Kalagaan_HairDesignerExtension_MotionSolver_Node___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_Kalagaan_HairDesignerExtension_MotionSolver_Node___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_Kalagaan_HairDesignerExtension_MotionSolver_Node___StaticFields { +}; + +struct IEnumerable_1_Kalagaan_HairDesignerExtension_MotionSolver_Node___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_Kalagaan_HairDesignerExtension_MotionSolver_Node___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_Kalagaan_HairDesignerExtension_MotionSolver_Node___VTable vtable; +}; + +struct HairDesignerEvents { + struct HairDesignerEvents__Class *klass; + MonitorData *monitor; +}; + +struct HairDesignerEvents__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct HairDesignerEvents__StaticFields { + struct Action_1_Kalagaan_HairDesignerExtension_HairDesignerEvents_PlayModeStateChange_ *playStateChanged; + struct Action_1_Kalagaan_HairDesignerExtension_HairDesignerEvents_PauseState_ *pauseStateChanged; +}; + +struct HairDesignerEvents__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HairDesignerEvents__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HairDesignerEvents__VTable vtable; +}; + +struct Action_1_Opsive_UltimateCharacterController_Items_Item___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_1_Opsive_UltimateCharacterController_Items_Item_ { + struct Action_1_Opsive_UltimateCharacterController_Items_Item___Class *klass; + MonitorData *monitor; + struct Action_1_Opsive_UltimateCharacterController_Items_Item___Fields fields; +}; + +struct Action_1_Opsive_UltimateCharacterController_Items_Item___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_1_Opsive_UltimateCharacterController_Items_Item___StaticFields { +}; + +struct Action_1_Opsive_UltimateCharacterController_Items_Item___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_1_Opsive_UltimateCharacterController_Items_Item___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_1_Opsive_UltimateCharacterController_Items_Item___VTable vtable; +}; + +struct HairDesignerGeneratorFurShellBase_Vector4BufferData { + struct Vector4 v; +}; + +struct HairDesignerGeneratorFurShellBase_Vector4BufferData__Boxed { + struct HairDesignerGeneratorFurShellBase_Vector4BufferData__Class *klass; + MonitorData *monitor; + struct HairDesignerGeneratorFurShellBase_Vector4BufferData fields; +}; + +struct HairDesignerGeneratorFurShellBase_Vector4BufferData__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct HairDesignerGeneratorFurShellBase_Vector4BufferData__StaticFields { +}; + +struct HairDesignerGeneratorFurShellBase_Vector4BufferData__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HairDesignerGeneratorFurShellBase_Vector4BufferData__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HairDesignerGeneratorFurShellBase_Vector4BufferData__VTable vtable; +}; + +struct HairDesignerGeneratorFurShellBase_Vector3BufferData { + struct Vector3 v; +}; + +struct HairDesignerGeneratorFurShellBase_Vector3BufferData__Boxed { + struct HairDesignerGeneratorFurShellBase_Vector3BufferData__Class *klass; + MonitorData *monitor; + struct HairDesignerGeneratorFurShellBase_Vector3BufferData fields; +}; + +struct HairDesignerGeneratorFurShellBase_Vector3BufferData__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct HairDesignerGeneratorFurShellBase_Vector3BufferData__StaticFields { +}; + +struct HairDesignerGeneratorFurShellBase_Vector3BufferData__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HairDesignerGeneratorFurShellBase_Vector3BufferData__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HairDesignerGeneratorFurShellBase_Vector3BufferData__VTable vtable; +}; + +struct Action_2_Opsive_UltimateCharacterController_Items_Actions_IUsableItem_Boolean___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_2_Opsive_UltimateCharacterController_Items_Actions_IUsableItem_Boolean_ { + struct Action_2_Opsive_UltimateCharacterController_Items_Actions_IUsableItem_Boolean___Class *klass; + MonitorData *monitor; + struct Action_2_Opsive_UltimateCharacterController_Items_Actions_IUsableItem_Boolean___Fields fields; +}; + +struct Action_2_Opsive_UltimateCharacterController_Items_Actions_IUsableItem_Boolean___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_2_Opsive_UltimateCharacterController_Items_Actions_IUsableItem_Boolean___StaticFields { +}; + +struct Action_2_Opsive_UltimateCharacterController_Items_Actions_IUsableItem_Boolean___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_2_Opsive_UltimateCharacterController_Items_Actions_IUsableItem_Boolean___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_2_Opsive_UltimateCharacterController_Items_Actions_IUsableItem_Boolean___VTable vtable; +}; + +struct IGrenadeItemPerspectiveProperties { + struct IGrenadeItemPerspectiveProperties__Class *klass; + MonitorData *monitor; +}; + +struct IGrenadeItemPerspectiveProperties__VTable { + VirtualInvokeData get_PinAttachmentLocationID; + VirtualInvokeData set_PinAttachmentLocationID; + VirtualInvokeData get_PinAttachmentLocation; + VirtualInvokeData set_PinAttachmentLocation; +}; + +struct IGrenadeItemPerspectiveProperties__StaticFields { +}; + +struct IGrenadeItemPerspectiveProperties__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IGrenadeItemPerspectiveProperties__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IGrenadeItemPerspectiveProperties__VTable vtable; +}; + +struct PerspectiveItem__Array { + struct PerspectiveItem__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct PerspectiveItem *vector[32]; +}; + +struct PerspectiveItem__Array__VTable { +}; + +struct PerspectiveItem__Array__StaticFields { +}; + +struct PerspectiveItem__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PerspectiveItem__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PerspectiveItem__Array__VTable vtable; +}; + +struct HairDesignerGeneratorAdvancedFurBase_Vector3BufferData { + struct Vector3 v; +}; + +struct HairDesignerGeneratorAdvancedFurBase_Vector3BufferData__Boxed { + struct HairDesignerGeneratorAdvancedFurBase_Vector3BufferData__Class *klass; + MonitorData *monitor; + struct HairDesignerGeneratorAdvancedFurBase_Vector3BufferData fields; +}; + +struct HairDesignerGeneratorAdvancedFurBase_Vector3BufferData__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct HairDesignerGeneratorAdvancedFurBase_Vector3BufferData__StaticFields { +}; + +struct HairDesignerGeneratorAdvancedFurBase_Vector3BufferData__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HairDesignerGeneratorAdvancedFurBase_Vector3BufferData__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HairDesignerGeneratorAdvancedFurBase_Vector3BufferData__VTable vtable; +}; + +struct HairDesignerGeneratorAdvancedFurBase_PIData { + float dtStepNext; + float errSumX; + float errSumY; + float errSumZ; + float errorX; + float errorY; + float errorZ; + struct Vector3 target; + struct Vector3 result; +}; + +struct HairDesignerGeneratorAdvancedFurBase_PIData__Boxed { + struct HairDesignerGeneratorAdvancedFurBase_PIData__Class *klass; + MonitorData *monitor; + struct HairDesignerGeneratorAdvancedFurBase_PIData fields; +}; + +struct HairDesignerGeneratorAdvancedFurBase_PIData__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct HairDesignerGeneratorAdvancedFurBase_PIData__StaticFields { +}; + +struct HairDesignerGeneratorAdvancedFurBase_PIData__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HairDesignerGeneratorAdvancedFurBase_PIData__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HairDesignerGeneratorAdvancedFurBase_PIData__VTable vtable; +}; + +struct HairDesignerBoneBase__Array { + struct HairDesignerBoneBase__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct HairDesignerBoneBase *vector[32]; +}; + +struct HairDesignerBoneBase__Array__VTable { +}; + +struct HairDesignerBoneBase__Array__StaticFields { +}; + +struct HairDesignerBoneBase__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HairDesignerBoneBase__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HairDesignerBoneBase__Array__VTable vtable; +}; + +struct WindowsPrincipal__Fields { + struct ClaimsPrincipal__Fields _; +}; + +struct WindowsPrincipal { + struct WindowsPrincipal__Class *klass; + MonitorData *monitor; + struct WindowsPrincipal__Fields fields; +}; + +struct WindowsPrincipal__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Identity; + VirtualInvokeData get_Identity_1; +}; + +struct WindowsPrincipal__StaticFields { +}; + +struct WindowsPrincipal__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct WindowsPrincipal__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct WindowsPrincipal__VTable vtable; +}; + +struct IEnumerable_1_System_Net_WebSockets_WebSocketState_ { + struct IEnumerable_1_System_Net_WebSockets_WebSocketState___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_System_Net_WebSockets_WebSocketState___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_System_Net_WebSockets_WebSocketState___StaticFields { +}; + +struct IEnumerable_1_System_Net_WebSockets_WebSocketState___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_System_Net_WebSockets_WebSocketState___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_System_Net_WebSockets_WebSocketState___VTable vtable; +}; + +struct ValueTask_1_System_Net_WebSockets_WebSocketReceiveResult_ { + struct Object *_obj; + struct WebSocketReceiveResult *_result; + int16_t _token; + bool _continueOnCapturedContext; +}; + +struct ValueTask_1_System_Net_WebSockets_WebSocketReceiveResult___Boxed { + struct ValueTask_1_System_Net_WebSockets_WebSocketReceiveResult___Class *klass; + MonitorData *monitor; + struct ValueTask_1_System_Net_WebSockets_WebSocketReceiveResult_ fields; +}; + +struct ValueTask_1_System_Net_WebSockets_WebSocketReceiveResult___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Equals_1; +}; + +struct ValueTask_1_System_Net_WebSockets_WebSocketReceiveResult___StaticFields { + struct Task_1_System_Net_WebSockets_WebSocketReceiveResult_ *s_canceledTask; +}; + +struct ValueTask_1_System_Net_WebSockets_WebSocketReceiveResult___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ValueTask_1_System_Net_WebSockets_WebSocketReceiveResult___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ValueTask_1_System_Net_WebSockets_WebSocketReceiveResult___VTable vtable; +}; + +struct XrReferenceSpaceType__Enum_1__Array { + struct XrReferenceSpaceType__Enum_1__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + XrReferenceSpaceType__Enum_1 vector[32]; +}; + +struct XrReferenceSpaceType__Enum_1__Array__VTable { +}; + +struct XrReferenceSpaceType__Enum_1__Array__StaticFields { +}; + +struct XrReferenceSpaceType__Enum_1__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct XrReferenceSpaceType__Enum_1__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct XrReferenceSpaceType__Enum_1__Array__VTable vtable; +}; + +struct XrReferenceSpaceType__1__VTable { +}; + +struct XrReferenceSpaceType__1__StaticFields { +}; + +struct XrReferenceSpaceType__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct XrReferenceSpaceType__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct XrReferenceSpaceType__1__VTable vtable; +}; + +struct InControlAnimatedInteractable__Array { + struct InControlAnimatedInteractable__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct InControlAnimatedInteractable *vector[32]; +}; + +struct InControlAnimatedInteractable__Array__VTable { +}; + +struct InControlAnimatedInteractable__Array__StaticFields { +}; + +struct InControlAnimatedInteractable__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct InControlAnimatedInteractable__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct InControlAnimatedInteractable__Array__VTable vtable; +}; + +struct Func_5_Byte_Int32_AsyncCallback_Object_IAsyncResult___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_5_Byte_Int32_AsyncCallback_Object_IAsyncResult_ { + struct Func_5_Byte_Int32_AsyncCallback_Object_IAsyncResult___Class *klass; + MonitorData *monitor; + struct Func_5_Byte_Int32_AsyncCallback_Object_IAsyncResult___Fields fields; +}; + +struct Func_5_Byte_Int32_AsyncCallback_Object_IAsyncResult___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_5_Byte_Int32_AsyncCallback_Object_IAsyncResult___StaticFields { +}; + +struct Func_5_Byte_Int32_AsyncCallback_Object_IAsyncResult___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_5_Byte_Int32_AsyncCallback_Object_IAsyncResult___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_5_Byte_Int32_AsyncCallback_Object_IAsyncResult___VTable vtable; +}; + +struct Func_6_Byte_Int32_System_Net_IPEndPoint_AsyncCallback_Object_IAsyncResult___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_6_Byte_Int32_System_Net_IPEndPoint_AsyncCallback_Object_IAsyncResult_ { + struct Func_6_Byte_Int32_System_Net_IPEndPoint_AsyncCallback_Object_IAsyncResult___Class *klass; + MonitorData *monitor; + struct Func_6_Byte_Int32_System_Net_IPEndPoint_AsyncCallback_Object_IAsyncResult___Fields fields; +}; + +struct Func_6_Byte_Int32_System_Net_IPEndPoint_AsyncCallback_Object_IAsyncResult___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_6_Byte_Int32_System_Net_IPEndPoint_AsyncCallback_Object_IAsyncResult___StaticFields { +}; + +struct Func_6_Byte_Int32_System_Net_IPEndPoint_AsyncCallback_Object_IAsyncResult___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_6_Byte_Int32_System_Net_IPEndPoint_AsyncCallback_Object_IAsyncResult___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_6_Byte_Int32_System_Net_IPEndPoint_AsyncCallback_Object_IAsyncResult___VTable vtable; +}; + +struct List_1_T_Enumerator_ScreenEffectType_ { + struct List_1_ScreenEffectType_ *_list; + int32_t _index; + int32_t _version; + struct ScreenEffectType *_current; +}; + +struct List_1_T_Enumerator_ScreenEffectType___Boxed { + struct List_1_T_Enumerator_ScreenEffectType___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_ScreenEffectType_ fields; +}; + +struct List_1_T_Enumerator_ScreenEffectType___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_ScreenEffectType___StaticFields { +}; + +struct List_1_T_Enumerator_ScreenEffectType___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_ScreenEffectType___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_ScreenEffectType___VTable vtable; +}; + +struct Func_2_IAsyncResult_System_Net_Sockets_TcpClient___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_2_IAsyncResult_System_Net_Sockets_TcpClient_ { + struct Func_2_IAsyncResult_System_Net_Sockets_TcpClient___Class *klass; + MonitorData *monitor; + struct Func_2_IAsyncResult_System_Net_Sockets_TcpClient___Fields fields; +}; + +struct Func_2_IAsyncResult_System_Net_Sockets_TcpClient___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_2_IAsyncResult_System_Net_Sockets_TcpClient___StaticFields { +}; + +struct Func_2_IAsyncResult_System_Net_Sockets_TcpClient___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_2_IAsyncResult_System_Net_Sockets_TcpClient___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_2_IAsyncResult_System_Net_Sockets_TcpClient___VTable vtable; +}; + +struct List_1_T_Enumerator_UnityEngine_MeshRenderer_ { + struct List_1_UnityEngine_MeshRenderer_ *_list; + int32_t _index; + int32_t _version; + struct MeshRenderer *_current; +}; + +struct List_1_T_Enumerator_UnityEngine_MeshRenderer___Boxed { + struct List_1_T_Enumerator_UnityEngine_MeshRenderer___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_UnityEngine_MeshRenderer_ fields; +}; + +struct List_1_T_Enumerator_UnityEngine_MeshRenderer___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_UnityEngine_MeshRenderer___StaticFields { +}; + +struct List_1_T_Enumerator_UnityEngine_MeshRenderer___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_UnityEngine_MeshRenderer___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_UnityEngine_MeshRenderer___VTable vtable; +}; + +struct Predicate_1_OutfitPreviewLoader_OutfitPreviewAvatar___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Predicate_1_OutfitPreviewLoader_OutfitPreviewAvatar_ { + struct Predicate_1_OutfitPreviewLoader_OutfitPreviewAvatar___Class *klass; + MonitorData *monitor; + struct Predicate_1_OutfitPreviewLoader_OutfitPreviewAvatar___Fields fields; +}; + +struct Predicate_1_OutfitPreviewLoader_OutfitPreviewAvatar___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Predicate_1_OutfitPreviewLoader_OutfitPreviewAvatar___StaticFields { +}; + +struct Predicate_1_OutfitPreviewLoader_OutfitPreviewAvatar___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Predicate_1_OutfitPreviewLoader_OutfitPreviewAvatar___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Predicate_1_OutfitPreviewLoader_OutfitPreviewAvatar___VTable vtable; +}; + +struct __declspec(align(8)) Tuple_3_System_Net_Sockets_Socket_AwaitableSocketAsyncEventArgs_Action_1_Object_Object___Fields { + struct Socket_AwaitableSocketAsyncEventArgs *m_Item1; + struct Action_1_Object_ *m_Item2; + struct Object *m_Item3; +}; + +struct Tuple_3_System_Net_Sockets_Socket_AwaitableSocketAsyncEventArgs_Action_1_Object_Object_ { + struct Tuple_3_System_Net_Sockets_Socket_AwaitableSocketAsyncEventArgs_Action_1_Object_Object___Class *klass; + MonitorData *monitor; + struct Tuple_3_System_Net_Sockets_Socket_AwaitableSocketAsyncEventArgs_Action_1_Object_Object___Fields fields; +}; + +struct Tuple_3_System_Net_Sockets_Socket_AwaitableSocketAsyncEventArgs_Action_1_Object_Object___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_IStructuralEquatable_Equals; + VirtualInvokeData System_Collections_IStructuralEquatable_GetHashCode; + VirtualInvokeData System_Collections_IStructuralComparable_CompareTo; + VirtualInvokeData System_IComparable_CompareTo; + VirtualInvokeData System_ITupleInternal_ToString; + VirtualInvokeData System_Runtime_CompilerServices_ITuple_get_Length; +}; + +struct Tuple_3_System_Net_Sockets_Socket_AwaitableSocketAsyncEventArgs_Action_1_Object_Object___StaticFields { +}; + +struct Tuple_3_System_Net_Sockets_Socket_AwaitableSocketAsyncEventArgs_Action_1_Object_Object___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Tuple_3_System_Net_Sockets_Socket_AwaitableSocketAsyncEventArgs_Action_1_Object_Object___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Tuple_3_System_Net_Sockets_Socket_AwaitableSocketAsyncEventArgs_Action_1_Object_Object___VTable vtable; +}; + +struct __declspec(align(8)) Tuple_2_Action_1_Object_Object___Fields { + struct Action_1_Object_ *m_Item1; + struct Object *m_Item2; +}; + +struct Tuple_2_Action_1_Object_Object_ { + struct Tuple_2_Action_1_Object_Object___Class *klass; + MonitorData *monitor; + struct Tuple_2_Action_1_Object_Object___Fields fields; +}; + +struct Tuple_2_Action_1_Object_Object___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_Collections_IStructuralEquatable_Equals; + VirtualInvokeData System_Collections_IStructuralEquatable_GetHashCode; + VirtualInvokeData System_Collections_IStructuralComparable_CompareTo; + VirtualInvokeData System_IComparable_CompareTo; + VirtualInvokeData System_ITupleInternal_ToString; + VirtualInvokeData System_Runtime_CompilerServices_ITuple_get_Length; +}; + +struct Tuple_2_Action_1_Object_Object___StaticFields { +}; + +struct Tuple_2_Action_1_Object_Object___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Tuple_2_Action_1_Object_Object___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Tuple_2_Action_1_Object_Object___VTable vtable; +}; + +struct Image_Type___VTable { +}; + +struct Image_Type___StaticFields { +}; + +struct Image_Type___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Image_Type___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Image_Type___VTable vtable; +}; + +struct Image_FillMethod___VTable { +}; + +struct Image_FillMethod___StaticFields { +}; + +struct Image_FillMethod___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Image_FillMethod___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Image_FillMethod___VTable vtable; +}; + +struct ICanvasRaycastFilter { + struct ICanvasRaycastFilter__Class *klass; + MonitorData *monitor; +}; + +struct ICanvasRaycastFilter__VTable { + VirtualInvokeData IsRaycastLocationValid; +}; + +struct ICanvasRaycastFilter__StaticFields { +}; + +struct ICanvasRaycastFilter__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICanvasRaycastFilter__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICanvasRaycastFilter__VTable vtable; +}; + +struct IMeshModifier { + struct IMeshModifier__Class *klass; + MonitorData *monitor; +}; + +struct IMeshModifier__VTable { + VirtualInvokeData ModifyMesh; + VirtualInvokeData ModifyMesh_1; +}; + +struct IMeshModifier__StaticFields { +}; + +struct IMeshModifier__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IMeshModifier__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IMeshModifier__VTable vtable; +}; + +struct HashSet_1_T_Slot_UnityEngine_UI_Text_ { + int32_t hashCode; + int32_t next; + struct Text *value; +}; + +struct HashSet_1_T_Slot_UnityEngine_UI_Text___Boxed { + struct HashSet_1_T_Slot_UnityEngine_UI_Text___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Slot_UnityEngine_UI_Text_ fields; +}; + +struct __declspec(align(8)) HashSet_1_UnityEngine_UI_Text___Fields { + struct Int32__Array *_buckets; + struct HashSet_1_T_Slot_UnityEngine_UI_Text___Array *_slots; + int32_t _count; + int32_t _lastIndex; + int32_t _freeList; + struct IEqualityComparer_1_UnityEngine_UI_Text_ *_comparer; + int32_t _version; + struct SerializationInfo *_siInfo; +}; + +struct HashSet_1_UnityEngine_UI_Text_ { + struct HashSet_1_UnityEngine_UI_Text___Class *klass; + MonitorData *monitor; + struct HashSet_1_UnityEngine_UI_Text___Fields fields; +}; + +struct HashSet_1_T_Slot_UnityEngine_UI_Text___Array { + struct HashSet_1_T_Slot_UnityEngine_UI_Text___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct HashSet_1_T_Slot_UnityEngine_UI_Text_ vector[32]; +}; + +struct IEqualityComparer_1_UnityEngine_UI_Text_ { + struct IEqualityComparer_1_UnityEngine_UI_Text___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerator_1_UnityEngine_UI_Text_ { + struct IEnumerator_1_UnityEngine_UI_Text___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_UnityEngine_UI_Text_ { + struct IEnumerable_1_UnityEngine_UI_Text___Class *klass; + MonitorData *monitor; +}; + +struct HashSet_1_T_Slot_UnityEngine_UI_Text___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct HashSet_1_T_Slot_UnityEngine_UI_Text___StaticFields { +}; + +struct HashSet_1_T_Slot_UnityEngine_UI_Text___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_T_Slot_UnityEngine_UI_Text___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_T_Slot_UnityEngine_UI_Text___VTable vtable; +}; + +struct HashSet_1_T_Slot_UnityEngine_UI_Text___Array__VTable { +}; + +struct HashSet_1_T_Slot_UnityEngine_UI_Text___Array__StaticFields { +}; + +struct HashSet_1_T_Slot_UnityEngine_UI_Text___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_T_Slot_UnityEngine_UI_Text___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_T_Slot_UnityEngine_UI_Text___Array__VTable vtable; +}; + +struct IEqualityComparer_1_UnityEngine_UI_Text___VTable { + VirtualInvokeData Equals; + VirtualInvokeData GetHashCode; +}; + +struct IEqualityComparer_1_UnityEngine_UI_Text___StaticFields { +}; + +struct IEqualityComparer_1_UnityEngine_UI_Text___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEqualityComparer_1_UnityEngine_UI_Text___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEqualityComparer_1_UnityEngine_UI_Text___VTable vtable; +}; + +struct IEnumerator_1_UnityEngine_UI_Text___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_UnityEngine_UI_Text___StaticFields { +}; + +struct IEnumerator_1_UnityEngine_UI_Text___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_UnityEngine_UI_Text___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_UnityEngine_UI_Text___VTable vtable; +}; + +struct IEnumerable_1_UnityEngine_UI_Text___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_UnityEngine_UI_Text___StaticFields { +}; + +struct IEnumerable_1_UnityEngine_UI_Text___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_UnityEngine_UI_Text___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_UnityEngine_UI_Text___VTable vtable; +}; + +struct HashSet_1_UnityEngine_UI_Text___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_T__Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData Add; + VirtualInvokeData UnionWith; + VirtualInvokeData IntersectWith; + VirtualInvokeData ExceptWith; + VirtualInvokeData SymmetricExceptWith; + VirtualInvokeData IsSubsetOf; + VirtualInvokeData IsSupersetOf; + VirtualInvokeData IsProperSupersetOf; + VirtualInvokeData IsProperSubsetOf; + VirtualInvokeData Overlaps; + VirtualInvokeData SetEquals; + VirtualInvokeData get_Count_1; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct HashSet_1_UnityEngine_UI_Text___StaticFields { +}; + +struct HashSet_1_UnityEngine_UI_Text___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_UnityEngine_UI_Text___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_UnityEngine_UI_Text___VTable vtable; +}; + +struct FontUpdateTracker { + struct FontUpdateTracker__Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text_ { + int32_t hashCode; + int32_t next; + struct Font *key; + struct HashSet_1_UnityEngine_UI_Text_ *value; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text___Boxed { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text_ fields; +}; + +struct __declspec(align(8)) Dictionary_2_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text___Fields { + struct Int32__Array *_buckets; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text___Array *_entries; + int32_t _count; + int32_t _freeList; + int32_t _freeCount; + int32_t _version; + struct IEqualityComparer_1_UnityEngine_Font_ *_comparer; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text_ *_keys; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text_ *_values; + struct Object *_syncRoot; +}; + +struct Dictionary_2_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text_ { + struct Dictionary_2_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text___Class *klass; + MonitorData *monitor; + struct Dictionary_2_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text___Fields fields; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text___Array { + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text_ vector[32]; +}; + +struct IEqualityComparer_1_UnityEngine_Font_ { + struct IEqualityComparer_1_UnityEngine_Font___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text___Fields { + struct Dictionary_2_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text_ { + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text___Fields fields; +}; + +struct IEnumerator_1_UnityEngine_Font_ { + struct IEnumerator_1_UnityEngine_Font___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text___Fields { + struct Dictionary_2_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text_ *_dictionary; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text_ { + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text___Class *klass; + MonitorData *monitor; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text___Fields fields; +}; + +struct HashSet_1_UnityEngine_UI_Text___Array { + struct HashSet_1_UnityEngine_UI_Text___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct HashSet_1_UnityEngine_UI_Text_ *vector[32]; +}; + +struct IEnumerator_1_HashSet_1_UnityEngine_UI_Text_ { + struct IEnumerator_1_HashSet_1_UnityEngine_UI_Text___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_UnityEngine_Font_ { + struct ICollection_1_UnityEngine_Font___Class *klass; + MonitorData *monitor; +}; + +struct ICollection_1_HashSet_1_UnityEngine_UI_Text_ { + struct ICollection_1_HashSet_1_UnityEngine_UI_Text___Class *klass; + MonitorData *monitor; +}; + +struct KeyValuePair_2_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text_ { + struct Font *key; + struct HashSet_1_UnityEngine_UI_Text_ *value; +}; + +struct KeyValuePair_2_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text___Boxed { + struct KeyValuePair_2_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text___Class *klass; + MonitorData *monitor; + struct KeyValuePair_2_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text_ fields; +}; + +struct KeyValuePair_2_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text___Array { + struct KeyValuePair_2_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text___Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct KeyValuePair_2_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text_ vector[32]; +}; + +struct IEnumerator_1_KeyValuePair_2_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text_ { + struct IEnumerator_1_KeyValuePair_2_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_UnityEngine_Font_ { + struct IEnumerable_1_UnityEngine_Font___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_HashSet_1_UnityEngine_UI_Text_ { + struct IEnumerable_1_HashSet_1_UnityEngine_UI_Text___Class *klass; + MonitorData *monitor; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text___Array__VTable { +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text___Array__StaticFields { +}; + +struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_Entry_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text___Array__VTable vtable; +}; + +struct IEqualityComparer_1_UnityEngine_Font___VTable { + VirtualInvokeData Equals; + VirtualInvokeData GetHashCode; +}; + +struct IEqualityComparer_1_UnityEngine_Font___StaticFields { +}; + +struct IEqualityComparer_1_UnityEngine_Font___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEqualityComparer_1_UnityEngine_Font___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEqualityComparer_1_UnityEngine_Font___VTable vtable; +}; + +struct IEnumerator_1_UnityEngine_Font___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_UnityEngine_Font___StaticFields { +}; + +struct IEnumerator_1_UnityEngine_Font___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_UnityEngine_Font___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_UnityEngine_Font___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TKey__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TKey__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_KeyCollection_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text___VTable vtable; +}; + +struct HashSet_1_UnityEngine_UI_Text___Array__VTable { +}; + +struct HashSet_1_UnityEngine_UI_Text___Array__StaticFields { +}; + +struct HashSet_1_UnityEngine_UI_Text___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_UnityEngine_UI_Text___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_UnityEngine_UI_Text___Array__VTable vtable; +}; + +struct IEnumerator_1_HashSet_1_UnityEngine_UI_Text___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_HashSet_1_UnityEngine_UI_Text___StaticFields { +}; + +struct IEnumerator_1_HashSet_1_UnityEngine_UI_Text___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_HashSet_1_UnityEngine_UI_Text___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_HashSet_1_UnityEngine_UI_Text___VTable vtable; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Add; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Clear; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_TValue__Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_TValue__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Count_2; +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text___StaticFields { +}; + +struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_TKey_TValue_ValueCollection_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text___VTable vtable; +}; + +struct ICollection_1_UnityEngine_Font___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_UnityEngine_Font___StaticFields { +}; + +struct ICollection_1_UnityEngine_Font___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_UnityEngine_Font___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_UnityEngine_Font___VTable vtable; +}; + +struct ICollection_1_HashSet_1_UnityEngine_UI_Text___VTable { + VirtualInvokeData get_Count; + VirtualInvokeData get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; +}; + +struct ICollection_1_HashSet_1_UnityEngine_UI_Text___StaticFields { +}; + +struct ICollection_1_HashSet_1_UnityEngine_UI_Text___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ICollection_1_HashSet_1_UnityEngine_UI_Text___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ICollection_1_HashSet_1_UnityEngine_UI_Text___VTable vtable; +}; + +struct HashSet_1_UnityEngine_UI_Text__1__VTable { +}; + +struct HashSet_1_UnityEngine_UI_Text__1__StaticFields { +}; + +struct HashSet_1_UnityEngine_UI_Text__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_UnityEngine_UI_Text__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_UnityEngine_UI_Text__1__VTable vtable; +}; + +struct KeyValuePair_2_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct KeyValuePair_2_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text___StaticFields { +}; + +struct KeyValuePair_2_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text___VTable vtable; +}; + +struct KeyValuePair_2_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text___Array__VTable { +}; + +struct KeyValuePair_2_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text___Array__StaticFields { +}; + +struct KeyValuePair_2_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text___Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KeyValuePair_2_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text___Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KeyValuePair_2_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text___Array__VTable vtable; +}; + +struct IEnumerator_1_KeyValuePair_2_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text___VTable { + VirtualInvokeData get_Current; +}; + +struct IEnumerator_1_KeyValuePair_2_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text___StaticFields { +}; + +struct IEnumerator_1_KeyValuePair_2_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerator_1_KeyValuePair_2_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerator_1_KeyValuePair_2_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text___VTable vtable; +}; + +struct IEnumerable_1_UnityEngine_Font___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_UnityEngine_Font___StaticFields { +}; + +struct IEnumerable_1_UnityEngine_Font___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_UnityEngine_Font___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_UnityEngine_Font___VTable vtable; +}; + +struct IEnumerable_1_HashSet_1_UnityEngine_UI_Text___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_HashSet_1_UnityEngine_UI_Text___StaticFields { +}; + +struct IEnumerable_1_HashSet_1_UnityEngine_UI_Text___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_HashSet_1_UnityEngine_UI_Text___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_HashSet_1_UnityEngine_UI_Text___VTable vtable; +}; + +struct Dictionary_2_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Values; + VirtualInvokeData ContainsKey; + VirtualInvokeData Add; + VirtualInvokeData Remove; + VirtualInvokeData TryGetValue; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add; + VirtualInvokeData Clear; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo; + VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_get_Item; + VirtualInvokeData System_Collections_IDictionary_set_Item; + VirtualInvokeData System_Collections_IDictionary_get_Keys; + VirtualInvokeData System_Collections_IDictionary_get_Values; + VirtualInvokeData System_Collections_IDictionary_Contains; + VirtualInvokeData System_Collections_IDictionary_Add; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IDictionary_get_IsReadOnly; + VirtualInvokeData System_Collections_IDictionary_get_IsFixedSize; + VirtualInvokeData System_Collections_IDictionary_GetEnumerator; + VirtualInvokeData System_Collections_IDictionary_Remove; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData TryGetValue_1; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Keys; + VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Values; + VirtualInvokeData get_Count_2; + VirtualInvokeData GetObjectData; + VirtualInvokeData OnDeserialization; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData OnDeserialization_1; +}; + +struct Dictionary_2_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text___StaticFields { +}; + +struct Dictionary_2_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Dictionary_2_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Dictionary_2_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text___VTable vtable; +}; + +struct FontUpdateTracker__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct FontUpdateTracker__StaticFields { + struct Dictionary_2_UnityEngine_Font_HashSet_1_UnityEngine_UI_Text_ *m_Tracked; +}; + +struct FontUpdateTracker__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct FontUpdateTracker__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct FontUpdateTracker__VTable vtable; +}; + +struct HashSet_1_T_Enumerator_UnityEngine_UI_Text_ { + struct HashSet_1_UnityEngine_UI_Text_ *_set; + int32_t _index; + int32_t _version; + struct Text *_current; +}; + +struct HashSet_1_T_Enumerator_UnityEngine_UI_Text___Boxed { + struct HashSet_1_T_Enumerator_UnityEngine_UI_Text___Class *klass; + MonitorData *monitor; + struct HashSet_1_T_Enumerator_UnityEngine_UI_Text_ fields; +}; + +struct HashSet_1_T_Enumerator_UnityEngine_UI_Text___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct HashSet_1_T_Enumerator_UnityEngine_UI_Text___StaticFields { +}; + +struct HashSet_1_T_Enumerator_UnityEngine_UI_Text___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct HashSet_1_T_Enumerator_UnityEngine_UI_Text___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct HashSet_1_T_Enumerator_UnityEngine_UI_Text___VTable vtable; +}; + +struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_Canvas_ { + struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_Canvas___Class *klass; + MonitorData *monitor; +}; + +struct __declspec(align(8)) ObjectPool_1_System_Collections_Generic_List_1__16__Fields { + struct List_1_List_1_UnityEngine_Canvas_ *m_List; + struct Func_1_System_Collections_Generic_List_1__24 *m_CreateFunc; + struct Action_1_System_Collections_Generic_List_1__20 *m_ActionOnGet; + struct Action_1_System_Collections_Generic_List_1__20 *m_ActionOnRelease; + struct Action_1_System_Collections_Generic_List_1__20 *m_ActionOnDestroy; + int32_t m_MaxSize; + bool m_CollectionCheck; + int32_t _CountAll_k__BackingField; +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__16 { + struct ObjectPool_1_System_Collections_Generic_List_1__16__Class *klass; + MonitorData *monitor; + struct ObjectPool_1_System_Collections_Generic_List_1__16__Fields fields; +}; + +struct __declspec(align(8)) List_1_List_1_UnityEngine_Canvas___Fields { + struct List_1_UnityEngine_Canvas___Array *_items; + int32_t _size; + int32_t _version; + struct Object *_syncRoot; +}; + +struct List_1_List_1_UnityEngine_Canvas_ { + struct List_1_List_1_UnityEngine_Canvas___Class *klass; + MonitorData *monitor; + struct List_1_List_1_UnityEngine_Canvas___Fields fields; +}; + +struct Func_1_System_Collections_Generic_List_1__24__Fields { + struct MulticastDelegate__Fields _; +}; + +struct Func_1_System_Collections_Generic_List_1__24 { + struct Func_1_System_Collections_Generic_List_1__24__Class *klass; + MonitorData *monitor; + struct Func_1_System_Collections_Generic_List_1__24__Fields fields; +}; + +struct Action_1_System_Collections_Generic_List_1__20__Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_1_System_Collections_Generic_List_1__20 { + struct Action_1_System_Collections_Generic_List_1__20__Class *klass; + MonitorData *monitor; + struct Action_1_System_Collections_Generic_List_1__20__Fields fields; +}; + +struct PooledObject_1_System_Collections_Generic_List_1__11 { + struct List_1_UnityEngine_Canvas_ *m_ToReturn; + struct IObjectPool_1_System_Collections_Generic_List_1__11 *m_Pool; +}; + +struct PooledObject_1_System_Collections_Generic_List_1__11__Boxed { + struct PooledObject_1_System_Collections_Generic_List_1__11__Class *klass; + MonitorData *monitor; + struct PooledObject_1_System_Collections_Generic_List_1__11 fields; +}; + +struct IObjectPool_1_System_Collections_Generic_List_1__11 { + struct IObjectPool_1_System_Collections_Generic_List_1__11__Class *klass; + MonitorData *monitor; +}; + +struct List_1_List_1_UnityEngine_Canvas___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Item; + VirtualInvokeData set_Item; + VirtualInvokeData IndexOf; + VirtualInvokeData Insert; + VirtualInvokeData RemoveAt; + VirtualInvokeData get_Count; + VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; + VirtualInvokeData Add; + VirtualInvokeData Clear; + VirtualInvokeData Contains; + VirtualInvokeData CopyTo; + VirtualInvokeData Remove; + VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; + VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; + VirtualInvokeData System_Collections_IList_get_Item; + VirtualInvokeData System_Collections_IList_set_Item; + VirtualInvokeData System_Collections_IList_Add; + VirtualInvokeData System_Collections_IList_Contains; + VirtualInvokeData Clear_1; + VirtualInvokeData System_Collections_IList_get_IsReadOnly; + VirtualInvokeData System_Collections_IList_get_IsFixedSize; + VirtualInvokeData System_Collections_IList_IndexOf; + VirtualInvokeData System_Collections_IList_Insert; + VirtualInvokeData System_Collections_IList_Remove; + VirtualInvokeData RemoveAt_1; + VirtualInvokeData System_Collections_ICollection_CopyTo; + VirtualInvokeData get_Count_1; + VirtualInvokeData System_Collections_ICollection_get_SyncRoot; + VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; + VirtualInvokeData get_Item_1; + VirtualInvokeData get_Count_2; +}; + +struct List_1_List_1_UnityEngine_Canvas___StaticFields { + struct List_1_UnityEngine_Canvas___Array *s_emptyArray; +}; + +struct List_1_List_1_UnityEngine_Canvas___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_List_1_UnityEngine_Canvas___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_List_1_UnityEngine_Canvas___VTable vtable; +}; + +struct Func_1_System_Collections_Generic_List_1__24__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Func_1_System_Collections_Generic_List_1__24__StaticFields { +}; + +struct Func_1_System_Collections_Generic_List_1__24__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Func_1_System_Collections_Generic_List_1__24__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Func_1_System_Collections_Generic_List_1__24__VTable vtable; +}; + +struct Action_1_System_Collections_Generic_List_1__20__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_1_System_Collections_Generic_List_1__20__StaticFields { +}; + +struct Action_1_System_Collections_Generic_List_1__20__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_1_System_Collections_Generic_List_1__20__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_1_System_Collections_Generic_List_1__20__VTable vtable; +}; + +struct IObjectPool_1_System_Collections_Generic_List_1__11__VTable { + VirtualInvokeData Release; +}; + +struct IObjectPool_1_System_Collections_Generic_List_1__11__StaticFields { +}; + +struct IObjectPool_1_System_Collections_Generic_List_1__11__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IObjectPool_1_System_Collections_Generic_List_1__11__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IObjectPool_1_System_Collections_Generic_List_1__11__VTable vtable; +}; + +struct PooledObject_1_System_Collections_Generic_List_1__11__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData System_IDisposable_Dispose; +}; + +struct PooledObject_1_System_Collections_Generic_List_1__11__StaticFields { +}; + +struct PooledObject_1_System_Collections_Generic_List_1__11__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct PooledObject_1_System_Collections_Generic_List_1__11__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct PooledObject_1_System_Collections_Generic_List_1__11__VTable vtable; +}; + +struct List_1_UnityEngine_Canvas__1__VTable { +}; + +struct List_1_UnityEngine_Canvas__1__StaticFields { +}; + +struct List_1_UnityEngine_Canvas__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_UnityEngine_Canvas__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_UnityEngine_Canvas__1__VTable vtable; +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__16__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Dispose; + VirtualInvokeData Release; + VirtualInvokeData get_CountInactive; + VirtualInvokeData Get; + VirtualInvokeData Get_1; + VirtualInvokeData Clear; +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__16__StaticFields { +}; + +struct ObjectPool_1_System_Collections_Generic_List_1__16__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ObjectPool_1_System_Collections_Generic_List_1__16__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ObjectPool_1_System_Collections_Generic_List_1__16__VTable vtable; +}; + +struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_Canvas___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_Canvas___StaticFields { + struct ObjectPool_1_System_Collections_Generic_List_1__16 *s_Pool; +}; + +struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_Canvas___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_Canvas___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CollectionPool_2_System_Collections_Generic_List_1_UnityEngine_Canvas___VTable vtable; +}; + +struct IEnumerable_1_UnityEngine_UI_Dropdown_OptionData_ { + struct IEnumerable_1_UnityEngine_UI_Dropdown_OptionData___Class *klass; + MonitorData *monitor; +}; + +struct IEnumerable_1_UnityEngine_UI_Dropdown_OptionData___VTable { + VirtualInvokeData GetEnumerator; +}; + +struct IEnumerable_1_UnityEngine_UI_Dropdown_OptionData___StaticFields { +}; + +struct IEnumerable_1_UnityEngine_UI_Dropdown_OptionData___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IEnumerable_1_UnityEngine_UI_Dropdown_OptionData___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IEnumerable_1_UnityEngine_UI_Dropdown_OptionData___VTable vtable; +}; + +struct Canvas___VTable { +}; + +struct Canvas___StaticFields { +}; + +struct Canvas___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Canvas___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Canvas___VTable vtable; +}; + +struct DefaultControls { + struct DefaultControls__Class *klass; + MonitorData *monitor; +}; + +struct DefaultControls__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct DefaultControls__StaticFields { + struct DefaultControls_IFactoryControls *m_CurrentFactory; + struct Vector2 s_ThickElementSize; + struct Vector2 s_ThinElementSize; + struct Vector2 s_ImageElementSize; + struct Color s_DefaultSelectableColor; + struct Color s_PanelColor; + struct Color s_TextColor; +}; + +struct DefaultControls__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct DefaultControls__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct DefaultControls__VTable vtable; +}; + +struct KinematicObjectManager_KinematicObject___VTable { +}; + +struct KinematicObjectManager_KinematicObject___StaticFields { +}; + +struct KinematicObjectManager_KinematicObject___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KinematicObjectManager_KinematicObject___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KinematicObjectManager_KinematicObject___VTable vtable; +}; + +struct KinematicObjectManager_KinematicCamera___VTable { +}; + +struct KinematicObjectManager_KinematicCamera___StaticFields { +}; + +struct KinematicObjectManager_KinematicCamera___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KinematicObjectManager_KinematicCamera___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KinematicObjectManager_KinematicCamera___VTable vtable; +}; + +struct KinematicObjectManager_KinematicCharacter___VTable { +}; + +struct KinematicObjectManager_KinematicCharacter___StaticFields { +}; + +struct KinematicObjectManager_KinematicCharacter___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct KinematicObjectManager_KinematicCharacter___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct KinematicObjectManager_KinematicCharacter___VTable vtable; +}; + +struct CategoryItemSet___VTable { +}; + +struct CategoryItemSet___StaticFields { +}; + +struct CategoryItemSet___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct CategoryItemSet___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct CategoryItemSet___VTable vtable; +}; + +struct IReadOnlyCollection_1_Opsive_Shared_Inventory_IItemCategoryIdentifier_ { + struct IReadOnlyCollection_1_Opsive_Shared_Inventory_IItemCategoryIdentifier___Class *klass; + MonitorData *monitor; +}; + +struct IReadOnlyCollection_1_Opsive_Shared_Inventory_IItemCategoryIdentifier___VTable { + VirtualInvokeData get_Count; +}; + +struct IReadOnlyCollection_1_Opsive_Shared_Inventory_IItemCategoryIdentifier___StaticFields { +}; + +struct IReadOnlyCollection_1_Opsive_Shared_Inventory_IItemCategoryIdentifier___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct IReadOnlyCollection_1_Opsive_Shared_Inventory_IItemCategoryIdentifier___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct IReadOnlyCollection_1_Opsive_Shared_Inventory_IItemCategoryIdentifier___VTable vtable; +}; + +struct Action_2_Opsive_UltimateCharacterController_Traits_AttributeModifier_Boolean___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_2_Opsive_UltimateCharacterController_Traits_AttributeModifier_Boolean_ { + struct Action_2_Opsive_UltimateCharacterController_Traits_AttributeModifier_Boolean___Class *klass; + MonitorData *monitor; + struct Action_2_Opsive_UltimateCharacterController_Traits_AttributeModifier_Boolean___Fields fields; +}; + +struct Action_2_Opsive_UltimateCharacterController_Traits_AttributeModifier_Boolean___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_2_Opsive_UltimateCharacterController_Traits_AttributeModifier_Boolean___StaticFields { +}; + +struct Action_2_Opsive_UltimateCharacterController_Traits_AttributeModifier_Boolean___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_2_Opsive_UltimateCharacterController_Traits_AttributeModifier_Boolean___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_2_Opsive_UltimateCharacterController_Traits_AttributeModifier_Boolean___VTable vtable; +}; + +struct BoltCore { + struct BoltCore__Class *klass; + MonitorData *monitor; +}; + +struct BoltCore__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct BoltCore__StaticFields { + struct UdpSocket *_udpSocket; + struct UdpPlatform *_udpPlatform; + struct BoltConnection *_serverConnection; + struct Object *_autoLoadSceneLock; + struct AutoLoadSceneInfo _autoLoadSceneInfo; + struct Stopwatch *_timer; + struct Stopwatch *_timer2; + struct Stopwatch *_timer3; + struct SceneLoadState _localSceneLoading; + bool _canReceiveEntities; + struct IPrefabPool *PrefabPool; + struct IEventFilter *EventFilter; + int32_t _frame; + #if defined(_CPLUSPLUS_) + BoltNetworkModes__Enum _mode; + #else + int32_t _mode; + #endif + struct BoltConfig *_config; + struct UdpConfig *_udpConfig; + struct BoltDoubleList_1_Photon_Bolt_Entity_ *_entitiesOK; + struct BoltDoubleList_1_Photon_Bolt_Entity_ *_entitiesFZ; + struct LinkedList_1_Photon_Bolt_BoltConnection_ *_connections; + struct EventDispatcher *_globalEventDispatcher; + struct Dictionary_2_Photon_Bolt_UniqueId_Photon_Bolt_BoltEntity_ *_sceneObjects; + struct Func_4_UnityEngine_GameObject_UnityEngine_Vector3_UnityEngine_Quaternion_UnityEngine_GameObject_ *_instantiate; + struct Action_1_UnityEngine_GameObject_ *_destroy; + struct GameObject *_globalControlObject; + struct ControlBehaviour *_globalControlBehaviour; + struct GameObject *_globalBehaviourObject; + struct List_1_Photon_Bolt_Collections_STuple_2_ *_globalBehaviours; + struct List_1_Photon_Bolt_Entity_ *_freezeProxyTempList; + struct TimeSpan SendTime; + struct TimeSpan AutoscopeTime; + struct TimeSpan PollNetworkTime; + struct TimeSpan InvokeRemoteSceneCallbacksTime; + struct TimeSpan AdjustEstimatedRemoteFramesTime; + struct TimeSpan StepNonControlledRemoteEntitiesTime; + struct TimeSpan SimulateLocalAndControlledEntitiesTime; + struct TimeSpan DispatchAllEventsTime; +}; + +struct BoltCore__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct BoltCore__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct BoltCore__VTable vtable; +}; + +struct List_1_T_Enumerator_SurvivalInteractableMeshSwapper_SurvivalInteractableMesh_ { + struct List_1_SurvivalInteractableMeshSwapper_SurvivalInteractableMesh_ *_list; + int32_t _index; + int32_t _version; + struct SurvivalInteractableMeshSwapper_SurvivalInteractableMesh *_current; +}; + +struct List_1_T_Enumerator_SurvivalInteractableMeshSwapper_SurvivalInteractableMesh___Boxed { + struct List_1_T_Enumerator_SurvivalInteractableMeshSwapper_SurvivalInteractableMesh___Class *klass; + MonitorData *monitor; + struct List_1_T_Enumerator_SurvivalInteractableMeshSwapper_SurvivalInteractableMesh_ fields; +}; + +struct List_1_T_Enumerator_SurvivalInteractableMeshSwapper_SurvivalInteractableMesh___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData get_Current; + VirtualInvokeData Dispose; + VirtualInvokeData MoveNext; + VirtualInvokeData System_Collections_IEnumerator_get_Current; + VirtualInvokeData System_Collections_IEnumerator_Reset; +}; + +struct List_1_T_Enumerator_SurvivalInteractableMeshSwapper_SurvivalInteractableMesh___StaticFields { +}; + +struct List_1_T_Enumerator_SurvivalInteractableMeshSwapper_SurvivalInteractableMesh___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct List_1_T_Enumerator_SurvivalInteractableMeshSwapper_SurvivalInteractableMesh___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct List_1_T_Enumerator_SurvivalInteractableMeshSwapper_SurvivalInteractableMesh___VTable vtable; +}; + +struct MailHeaderInfo { + struct MailHeaderInfo__Class *klass; + MonitorData *monitor; +}; + +struct MailHeaderInfo__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct MailHeaderInfo__StaticFields { + struct MailHeaderInfo_HeaderInfo__Array *s_headerInfo; + struct Dictionary_2_System_String_System_Int32_ *s_headerDictionary; +}; + +struct MailHeaderInfo__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MailHeaderInfo__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MailHeaderInfo__VTable vtable; +}; + +struct MailBnfHelper { + struct MailBnfHelper__Class *klass; + MonitorData *monitor; +}; + +struct MailBnfHelper__VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct MailBnfHelper__StaticFields { + struct Boolean__Array *Atext; + struct Boolean__Array *Qtext; + struct Boolean__Array *Dtext; + struct Boolean__Array *Ftext; + struct Boolean__Array *Ttext; + struct Boolean__Array *Ctext; + int32_t Ascii7bitMaxValue; + uint16_t Quote; + uint16_t Space; + uint16_t Tab; + uint16_t CR; + uint16_t LF; + uint16_t StartComment; + uint16_t EndComment; + uint16_t Backslash; + uint16_t At; + uint16_t EndAngleBracket; + uint16_t StartAngleBracket; + uint16_t StartSquareBracket; + uint16_t EndSquareBracket; + uint16_t Comma; + uint16_t Dot; + struct Char__Array *s_colonSeparator; + struct String__Array *s_months; +}; + +struct MailBnfHelper__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct MailBnfHelper__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct MailBnfHelper__VTable vtable; +}; + +struct ConfiguredTaskAwaitable_1_System_Net_WebSockets_WebSocketReceiveResult_ { + struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_WebSockets_WebSocketReceiveResult_ m_configuredTaskAwaiter; +}; + +struct ConfiguredTaskAwaitable_1_System_Net_WebSockets_WebSocketReceiveResult___Boxed { + struct ConfiguredTaskAwaitable_1_System_Net_WebSockets_WebSocketReceiveResult___Class *klass; + MonitorData *monitor; + struct ConfiguredTaskAwaitable_1_System_Net_WebSockets_WebSocketReceiveResult_ fields; +}; + +struct ConfiguredTaskAwaitable_1_System_Net_WebSockets_WebSocketReceiveResult___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ConfiguredTaskAwaitable_1_System_Net_WebSockets_WebSocketReceiveResult___StaticFields { +}; + +struct ConfiguredTaskAwaitable_1_System_Net_WebSockets_WebSocketReceiveResult___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ConfiguredTaskAwaitable_1_System_Net_WebSockets_WebSocketReceiveResult___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ConfiguredTaskAwaitable_1_System_Net_WebSockets_WebSocketReceiveResult___VTable vtable; +}; + +struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_WebSockets_WebSocketReceiveResult__1__VTable { +}; + +struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_WebSockets_WebSocketReceiveResult__1__StaticFields { +}; + +struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_WebSockets_WebSocketReceiveResult__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_WebSockets_WebSocketReceiveResult__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_WebSockets_WebSocketReceiveResult__1__VTable vtable; +}; + +struct ConfiguredTaskAwaitable_1_System_String_ { + struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_String_ m_configuredTaskAwaiter; +}; + +struct ConfiguredTaskAwaitable_1_System_String___Boxed { + struct ConfiguredTaskAwaitable_1_System_String___Class *klass; + MonitorData *monitor; + struct ConfiguredTaskAwaitable_1_System_String_ fields; +}; + +struct ConfiguredTaskAwaitable_1_System_String___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ConfiguredTaskAwaitable_1_System_String___StaticFields { +}; + +struct ConfiguredTaskAwaitable_1_System_String___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ConfiguredTaskAwaitable_1_System_String___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ConfiguredTaskAwaitable_1_System_String___VTable vtable; +}; + +struct ConfiguredTaskAwaitable_1_System_Net_Sockets_Socket_ { + struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_Socket_ m_configuredTaskAwaiter; +}; + +struct ConfiguredTaskAwaitable_1_System_Net_Sockets_Socket___Boxed { + struct ConfiguredTaskAwaitable_1_System_Net_Sockets_Socket___Class *klass; + MonitorData *monitor; + struct ConfiguredTaskAwaitable_1_System_Net_Sockets_Socket_ fields; +}; + +struct ConfiguredTaskAwaitable_1_System_Net_Sockets_Socket___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ConfiguredTaskAwaitable_1_System_Net_Sockets_Socket___StaticFields { +}; + +struct ConfiguredTaskAwaitable_1_System_Net_Sockets_Socket___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ConfiguredTaskAwaitable_1_System_Net_Sockets_Socket___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ConfiguredTaskAwaitable_1_System_Net_Sockets_Socket___VTable vtable; +}; + +struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_Socket__1__VTable { +}; + +struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_Socket__1__StaticFields { +}; + +struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_Socket__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_Socket__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_Sockets_Socket__1__VTable vtable; +}; + +struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_String__1__VTable { +}; + +struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_String__1__StaticFields { +}; + +struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_String__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_String__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_String__1__VTable vtable; +}; + +struct ConfiguredTaskAwaitable_1_System_Net_IPAddress_ { + struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_IPAddress_ m_configuredTaskAwaiter; +}; + +struct ConfiguredTaskAwaitable_1_System_Net_IPAddress___Boxed { + struct ConfiguredTaskAwaitable_1_System_Net_IPAddress___Class *klass; + MonitorData *monitor; + struct ConfiguredTaskAwaitable_1_System_Net_IPAddress_ fields; +}; + +struct ConfiguredTaskAwaitable_1_System_Net_IPAddress___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; +}; + +struct ConfiguredTaskAwaitable_1_System_Net_IPAddress___StaticFields { +}; + +struct ConfiguredTaskAwaitable_1_System_Net_IPAddress___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ConfiguredTaskAwaitable_1_System_Net_IPAddress___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ConfiguredTaskAwaitable_1_System_Net_IPAddress___VTable vtable; +}; + +struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_IPAddress__1__VTable { +}; + +struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_IPAddress__1__StaticFields { +}; + +struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_IPAddress__1__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_IPAddress__1__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ConfiguredTaskAwaitable_1_TResult_ConfiguredTaskAwaiter_System_Net_IPAddress__1__VTable vtable; +}; + +struct Action_2_Opsive_UltimateCharacterController_Camera_ViewTypes_ViewType_Boolean___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_2_Opsive_UltimateCharacterController_Camera_ViewTypes_ViewType_Boolean_ { + struct Action_2_Opsive_UltimateCharacterController_Camera_ViewTypes_ViewType_Boolean___Class *klass; + MonitorData *monitor; + struct Action_2_Opsive_UltimateCharacterController_Camera_ViewTypes_ViewType_Boolean___Fields fields; +}; + +struct Action_2_Opsive_UltimateCharacterController_Camera_ViewTypes_ViewType_Boolean___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_2_Opsive_UltimateCharacterController_Camera_ViewTypes_ViewType_Boolean___StaticFields { +}; + +struct Action_2_Opsive_UltimateCharacterController_Camera_ViewTypes_ViewType_Boolean___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_2_Opsive_UltimateCharacterController_Camera_ViewTypes_ViewType_Boolean___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_2_Opsive_UltimateCharacterController_Camera_ViewTypes_ViewType_Boolean___VTable vtable; +}; + +struct ThirdPersonObject__Array { + struct ThirdPersonObject__Array__Class *klass; + MonitorData *monitor; + Il2CppArrayBounds *bounds; + il2cpp_array_size_t max_length; + struct ThirdPersonObject *vector[32]; +}; + +struct ThirdPersonObject__Array__VTable { +}; + +struct ThirdPersonObject__Array__StaticFields { +}; + +struct ThirdPersonObject__Array__Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct ThirdPersonObject__Array__StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct ThirdPersonObject__Array__VTable vtable; +}; + +struct Action_1_Opsive_UltimateCharacterController_Camera_CameraController___Fields { + struct MulticastDelegate__Fields _; +}; + +struct Action_1_Opsive_UltimateCharacterController_Camera_CameraController_ { + struct Action_1_Opsive_UltimateCharacterController_Camera_CameraController___Class *klass; + MonitorData *monitor; + struct Action_1_Opsive_UltimateCharacterController_Camera_CameraController___Fields fields; +}; + +struct Action_1_Opsive_UltimateCharacterController_Camera_CameraController___VTable { + VirtualInvokeData Equals; + VirtualInvokeData Finalize; + VirtualInvokeData GetHashCode; + VirtualInvokeData ToString; + VirtualInvokeData Clone; + VirtualInvokeData GetObjectData; + VirtualInvokeData DynamicInvokeImpl; + VirtualInvokeData Clone_1; + VirtualInvokeData GetMethodImpl; + VirtualInvokeData GetObjectData_1; + VirtualInvokeData GetInvocationList; + VirtualInvokeData CombineImpl; + VirtualInvokeData RemoveImpl; + VirtualInvokeData Invoke; +}; + +struct Action_1_Opsive_UltimateCharacterController_Camera_CameraController___StaticFields { +}; + +struct Action_1_Opsive_UltimateCharacterController_Camera_CameraController___Class { + Il2CppClass_0 _0; + Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; + struct Action_1_Opsive_UltimateCharacterController_Camera_CameraController___StaticFields *static_fields; + const Il2CppRGCTXData *rgctx_data; + Il2CppClass_1 _1; + struct Action_1_Opsive_UltimateCharacterController_Camera_CameraController___VTable vtable; +}; + // ****************************************************************************** // * Application unused value types // ****************************************************************************** @@ -1404561,11 +1520092,6 @@ struct TypeNameParser { MonitorData *monitor; }; -struct Console_WindowsConsole { - struct Console_WindowsConsole__Class *klass; - MonitorData *monitor; -}; - #if defined(_CPLUSPLUS_) enum class Int64Enum__Enum : int64_t { }; @@ -1404614,16 +1520140,6 @@ struct MonoType { struct MonoType__Fields fields; }; -struct RuntimeArgumentHandle { - void *args; -}; - -struct RuntimeArgumentHandle__Boxed { - struct RuntimeArgumentHandle__Class *klass; - MonitorData *monitor; - struct RuntimeArgumentHandle fields; -}; - struct TypeNames { struct TypeNames__Class *klass; MonitorData *monitor; @@ -1404674,16 +1520190,6 @@ struct SecurityElementType__Enum__Boxed { #endif }; -struct WindowsPrincipal__Fields { - struct ClaimsPrincipal__Fields _; -}; - -struct WindowsPrincipal { - struct WindowsPrincipal__Class *klass; - MonitorData *monitor; - struct WindowsPrincipal__Fields fields; -}; - struct CADSerializer { struct CADSerializer__Class *klass; MonitorData *monitor; @@ -1404760,11 +1520266,6 @@ struct ConstantHelper { MonitorData *monitor; }; -struct Debugger { - struct Debugger__Class *klass; - MonitorData *monitor; -}; - struct Queue_QueueDebugView { struct Queue_QueueDebugView__Class *klass; MonitorData *monitor; @@ -1406494,77 +1521995,6 @@ struct StartIPOptions__Enum__Boxed { #endif }; -struct Win32_IP_ADAPTER_ANYCAST_ADDRESS { - struct Win32LengthFlagsUnion LengthFlags; - void *Next; - struct Win32_SOCKET_ADDRESS Address; -}; - -struct Win32_IP_ADAPTER_ANYCAST_ADDRESS__Boxed { - struct Win32_IP_ADAPTER_ANYCAST_ADDRESS__Class *klass; - MonitorData *monitor; - struct Win32_IP_ADAPTER_ANYCAST_ADDRESS fields; -}; - -struct Win32_IP_ADAPTER_DNS_SERVER_ADDRESS { - struct Win32LengthFlagsUnion LengthFlags; - void *Next; - struct Win32_SOCKET_ADDRESS Address; -}; - -struct Win32_IP_ADAPTER_DNS_SERVER_ADDRESS__Boxed { - struct Win32_IP_ADAPTER_DNS_SERVER_ADDRESS__Class *klass; - MonitorData *monitor; - struct Win32_IP_ADAPTER_DNS_SERVER_ADDRESS fields; -}; - -struct Win32_IP_ADAPTER_MULTICAST_ADDRESS { - struct Win32LengthFlagsUnion LengthFlags; - void *Next; - struct Win32_SOCKET_ADDRESS Address; -}; - -struct Win32_IP_ADAPTER_MULTICAST_ADDRESS__Boxed { - struct Win32_IP_ADAPTER_MULTICAST_ADDRESS__Class *klass; - MonitorData *monitor; - struct Win32_IP_ADAPTER_MULTICAST_ADDRESS fields; -}; - -struct Win32_IP_ADAPTER_GATEWAY_ADDRESS { - struct Win32LengthFlagsUnion LengthFlags; - void *Next; - struct Win32_SOCKET_ADDRESS Address; -}; - -struct Win32_IP_ADAPTER_GATEWAY_ADDRESS__Boxed { - struct Win32_IP_ADAPTER_GATEWAY_ADDRESS__Class *klass; - MonitorData *monitor; - struct Win32_IP_ADAPTER_GATEWAY_ADDRESS fields; -}; - -struct Win32_IP_ADAPTER_WINS_SERVER_ADDRESS { - struct Win32LengthFlagsUnion LengthFlags; - void *Next; - struct Win32_SOCKET_ADDRESS Address; -}; - -struct Win32_IP_ADAPTER_WINS_SERVER_ADDRESS__Boxed { - struct Win32_IP_ADAPTER_WINS_SERVER_ADDRESS__Class *klass; - MonitorData *monitor; - struct Win32_IP_ADAPTER_WINS_SERVER_ADDRESS fields; -}; - -struct Win32_SOCKADDR { - uint16_t AddressFamily; - struct Byte__Array *AddressData; -}; - -struct Win32_SOCKADDR__Boxed { - struct Win32_SOCKADDR__Class *klass; - MonitorData *monitor; - struct Win32_SOCKADDR fields; -}; - #if defined(_CPLUSPLUS_) enum class ProtocolFamily__Enum : int32_t { Unknown = -1, @@ -1406941,31 +1522371,6 @@ struct ThrowStub_1 { struct ThrowStub_1__Fields fields; }; -#if defined(_CPLUSPLUS_) -enum class PlayerController_Element_CompoundTypes__Enum : int32_t { - Axis2D = 0x00000064, - MouseAxis2D = 0x00000065, - MouseWheel = 0x00000066, -}; - -#else -enum PlayerController_Element_CompoundTypes__Enum { - PlayerController_Element_CompoundTypes__Enum_Axis2D = 0x00000064, - PlayerController_Element_CompoundTypes__Enum_MouseAxis2D = 0x00000065, - PlayerController_Element_CompoundTypes__Enum_MouseWheel = 0x00000066, -}; - -#endif -struct PlayerController_Element_CompoundTypes__Enum__Boxed { - struct PlayerController_Element_CompoundTypes__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - PlayerController_Element_CompoundTypes__Enum value; - #else - int32_t value; - #endif -}; - #if defined(_CPLUSPLUS_) enum class MouseInputElement__Enum : int32_t { AxisX = 0x00000000, @@ -1408703,18 +1524108,6 @@ struct _PrivateImplementationDetails__8 { MonitorData *monitor; }; -struct InputActionAsset_WriteFileJson { - struct String *name; - struct InputActionMap_WriteMapJson__Array *maps; - struct InputControlScheme_SchemeJson__Array *controlSchemes; -}; - -struct InputActionAsset_WriteFileJson__Boxed { - struct InputActionAsset_WriteFileJson__Class *klass; - MonitorData *monitor; - struct InputActionAsset_WriteFileJson fields; -}; - #if defined(_CPLUSPLUS_) enum class InputActionState_InteractionState_Flags__Enum : int32_t { TimerRunning = 0x00000001, @@ -1408809,129 +1524202,6 @@ struct SwitchProControllerHID_SwitchMagicOutputReport_ReportType__Enum__Boxed { #endif }; -#if defined(_CPLUSPLUS_) -enum class HID_Simulation__Enum : int32_t { - Undefined = 0x00000000, - FlightSimulationDevice = 0x00000001, - AutomobileSimulationDevice = 0x00000002, - TankSimulationDevice = 0x00000003, - SpaceshipSimulationDevice = 0x00000004, - SubmarineSimulationDevice = 0x00000005, - SailingSimulationDevice = 0x00000006, - MotorcycleSimulationDevice = 0x00000007, - SportsSimulationDevice = 0x00000008, - AirplaneSimulationDevice = 0x00000009, - HelicopterSimulationDevice = 0x0000000a, - MagicCarpetSimulationDevice = 0x0000000b, - BicylcleSimulationDevice = 0x0000000c, - FlightControlStick = 0x00000020, - FlightStick = 0x00000021, - CyclicControl = 0x00000022, - CyclicTrim = 0x00000023, - FlightYoke = 0x00000024, - TrackControl = 0x00000025, - Aileron = 0x000000b0, - AileronTrim = 0x000000b1, - AntiTorqueControl = 0x000000b2, - AutopilotEnable = 0x000000b3, - ChaffRelease = 0x000000b4, - CollectiveControl = 0x000000b5, - DiveBreak = 0x000000b6, - ElectronicCountermeasures = 0x000000b7, - Elevator = 0x000000b8, - ElevatorTrim = 0x000000b9, - Rudder = 0x000000ba, - Throttle = 0x000000bb, - FlightCommunications = 0x000000bc, - FlareRelease = 0x000000bd, - LandingGear = 0x000000be, - ToeBreak = 0x000000bf, - Trigger = 0x000000c0, - WeaponsArm = 0x000000c1, - WeaponsSelect = 0x000000c2, - WingFlaps = 0x000000c3, - Accelerator = 0x000000c4, - Brake = 0x000000c5, - Clutch = 0x000000c6, - Shifter = 0x000000c7, - Steering = 0x000000c8, - TurretDirection = 0x000000c9, - BarrelElevation = 0x000000ca, - DivePlane = 0x000000cb, - Ballast = 0x000000cc, - BicycleCrank = 0x000000cd, - HandleBars = 0x000000ce, - FrontBrake = 0x000000cf, - RearBrake = 0x000000d0, -}; - -#else -enum HID_Simulation__Enum { - HID_Simulation__Enum_Undefined = 0x00000000, - HID_Simulation__Enum_FlightSimulationDevice = 0x00000001, - HID_Simulation__Enum_AutomobileSimulationDevice = 0x00000002, - HID_Simulation__Enum_TankSimulationDevice = 0x00000003, - HID_Simulation__Enum_SpaceshipSimulationDevice = 0x00000004, - HID_Simulation__Enum_SubmarineSimulationDevice = 0x00000005, - HID_Simulation__Enum_SailingSimulationDevice = 0x00000006, - HID_Simulation__Enum_MotorcycleSimulationDevice = 0x00000007, - HID_Simulation__Enum_SportsSimulationDevice = 0x00000008, - HID_Simulation__Enum_AirplaneSimulationDevice = 0x00000009, - HID_Simulation__Enum_HelicopterSimulationDevice = 0x0000000a, - HID_Simulation__Enum_MagicCarpetSimulationDevice = 0x0000000b, - HID_Simulation__Enum_BicylcleSimulationDevice = 0x0000000c, - HID_Simulation__Enum_FlightControlStick = 0x00000020, - HID_Simulation__Enum_FlightStick = 0x00000021, - HID_Simulation__Enum_CyclicControl = 0x00000022, - HID_Simulation__Enum_CyclicTrim = 0x00000023, - HID_Simulation__Enum_FlightYoke = 0x00000024, - HID_Simulation__Enum_TrackControl = 0x00000025, - HID_Simulation__Enum_Aileron = 0x000000b0, - HID_Simulation__Enum_AileronTrim = 0x000000b1, - HID_Simulation__Enum_AntiTorqueControl = 0x000000b2, - HID_Simulation__Enum_AutopilotEnable = 0x000000b3, - HID_Simulation__Enum_ChaffRelease = 0x000000b4, - HID_Simulation__Enum_CollectiveControl = 0x000000b5, - HID_Simulation__Enum_DiveBreak = 0x000000b6, - HID_Simulation__Enum_ElectronicCountermeasures = 0x000000b7, - HID_Simulation__Enum_Elevator = 0x000000b8, - HID_Simulation__Enum_ElevatorTrim = 0x000000b9, - HID_Simulation__Enum_Rudder = 0x000000ba, - HID_Simulation__Enum_Throttle = 0x000000bb, - HID_Simulation__Enum_FlightCommunications = 0x000000bc, - HID_Simulation__Enum_FlareRelease = 0x000000bd, - HID_Simulation__Enum_LandingGear = 0x000000be, - HID_Simulation__Enum_ToeBreak = 0x000000bf, - HID_Simulation__Enum_Trigger = 0x000000c0, - HID_Simulation__Enum_WeaponsArm = 0x000000c1, - HID_Simulation__Enum_WeaponsSelect = 0x000000c2, - HID_Simulation__Enum_WingFlaps = 0x000000c3, - HID_Simulation__Enum_Accelerator = 0x000000c4, - HID_Simulation__Enum_Brake = 0x000000c5, - HID_Simulation__Enum_Clutch = 0x000000c6, - HID_Simulation__Enum_Shifter = 0x000000c7, - HID_Simulation__Enum_Steering = 0x000000c8, - HID_Simulation__Enum_TurretDirection = 0x000000c9, - HID_Simulation__Enum_BarrelElevation = 0x000000ca, - HID_Simulation__Enum_DivePlane = 0x000000cb, - HID_Simulation__Enum_Ballast = 0x000000cc, - HID_Simulation__Enum_BicycleCrank = 0x000000cd, - HID_Simulation__Enum_HandleBars = 0x000000ce, - HID_Simulation__Enum_FrontBrake = 0x000000cf, - HID_Simulation__Enum_RearBrake = 0x000000d0, -}; - -#endif -struct HID_Simulation__Enum__Boxed { - struct HID_Simulation__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - HID_Simulation__Enum value; - #else - int32_t value; - #endif -}; - #if defined(_CPLUSPLUS_) enum class HID_Button__Enum : int32_t { Undefined = 0x00000000, @@ -1409329,21 +1524599,6 @@ struct _PrivateImplementationDetails__9 { MonitorData *monitor; }; -struct CodeIdentifier { - struct CodeIdentifier__Class *klass; - MonitorData *monitor; -}; - -struct TypeTranslator { - struct TypeTranslator__Class *klass; - MonitorData *monitor; -}; - -struct XmlCustomFormatter { - struct XmlCustomFormatter__Class *klass; - MonitorData *monitor; -}; - struct XmlReaderSection { struct XmlReaderSection__Class *klass; MonitorData *monitor; @@ -1409622,75 +1524877,6 @@ struct EventDebugger { MonitorData *monitor; }; -struct VisualElementFactoryRegistry { - struct VisualElementFactoryRegistry__Class *klass; - MonitorData *monitor; -}; - -#if defined(_CPLUSPLUS_) -enum class MeshBuilder_VertexClipEdge__Enum : int32_t { - None = 0x00000000, - Left = 0x00000001, - Top = 0x00000002, - Right = 0x00000004, - Bottom = 0x00000008, -}; - -#else -enum MeshBuilder_VertexClipEdge__Enum { - MeshBuilder_VertexClipEdge__Enum_None = 0x00000000, - MeshBuilder_VertexClipEdge__Enum_Left = 0x00000001, - MeshBuilder_VertexClipEdge__Enum_Top = 0x00000002, - MeshBuilder_VertexClipEdge__Enum_Right = 0x00000004, - MeshBuilder_VertexClipEdge__Enum_Bottom = 0x00000008, -}; - -#endif -struct MeshBuilder_VertexClipEdge__Enum__Boxed { - struct MeshBuilder_VertexClipEdge__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - MeshBuilder_VertexClipEdge__Enum value; - #else - int32_t value; - #endif -}; - -struct RenderChain_RenderChainStaticIndexAllocator { -}; - -struct RenderChain_RenderChainStaticIndexAllocator__Boxed { - struct RenderChain_RenderChainStaticIndexAllocator__Class *klass; - MonitorData *monitor; - struct RenderChain_RenderChainStaticIndexAllocator fields; -}; - -struct __declspec(align(8)) List_1_UnityEngine_UIElements_UIR_RenderChain___Fields { - struct RenderChain__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_UIElements_UIR_RenderChain_ { - struct List_1_UnityEngine_UIElements_UIR_RenderChain___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_UIElements_UIR_RenderChain___Fields fields; -}; - -struct RenderChain__Array { - struct RenderChain__Array__Class *klass; - MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - struct RenderChain *vector[32]; -}; - -struct IEnumerator_1_UnityEngine_UIElements_UIR_RenderChain_ { - struct IEnumerator_1_UnityEngine_UIElements_UIR_RenderChain___Class *klass; - MonitorData *monitor; -}; - struct _PrivateImplementationDetails_StaticArrayInitTypeSize_10_2 { }; @@ -1409893,15 +1525079,6 @@ struct Revive_ReviveType__Enum__Boxed { #endif }; -struct MathfInternal { -}; - -struct MathfInternal__Boxed { - struct MathfInternal__Class *klass; - MonitorData *monitor; - struct MathfInternal fields; -}; - struct ProfilerRecorderDebugView { struct ProfilerRecorderDebugView__Class *klass; MonitorData *monitor; @@ -1409930,120 +1525107,6 @@ struct FileState__Enum__Boxed { #endif }; -#if defined(_CPLUSPLUS_) -enum class AssetLoadingSubsystem__Enum : int32_t { - Other = 0x00000000, - Texture = 0x00000001, - VirtualTexture = 0x00000002, - Mesh = 0x00000003, - Audio = 0x00000004, - Scripts = 0x00000005, - EntitiesScene = 0x00000006, - EntitiesStreamBinaryReader = 0x00000007, - FileInfo = 0x00000008, -}; - -#else -enum AssetLoadingSubsystem__Enum { - AssetLoadingSubsystem__Enum_Other = 0x00000000, - AssetLoadingSubsystem__Enum_Texture = 0x00000001, - AssetLoadingSubsystem__Enum_VirtualTexture = 0x00000002, - AssetLoadingSubsystem__Enum_Mesh = 0x00000003, - AssetLoadingSubsystem__Enum_Audio = 0x00000004, - AssetLoadingSubsystem__Enum_Scripts = 0x00000005, - AssetLoadingSubsystem__Enum_EntitiesScene = 0x00000006, - AssetLoadingSubsystem__Enum_EntitiesStreamBinaryReader = 0x00000007, - AssetLoadingSubsystem__Enum_FileInfo = 0x00000008, -}; - -#endif -struct AssetLoadingSubsystem__Enum__Boxed { - struct AssetLoadingSubsystem__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - AssetLoadingSubsystem__Enum value; - #else - int32_t value; - #endif -}; - -#if defined(_CPLUSPLUS_) -enum class Priority__Enum : int32_t { - PriorityLow = 0x00000000, - PriorityHigh = 0x00000001, -}; - -#else -enum Priority__Enum { - Priority__Enum_PriorityLow = 0x00000000, - Priority__Enum_PriorityHigh = 0x00000001, -}; - -#endif -struct Priority__Enum__Boxed { - struct Priority__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - Priority__Enum value; - #else - int32_t value; - #endif -}; - -#if defined(_CPLUSPLUS_) -enum class ProcessingState__Enum : int32_t { - Unknown = 0x00000000, - InQueue = 0x00000001, - Reading = 0x00000002, - Completed = 0x00000003, - Failed = 0x00000004, - Canceled = 0x00000005, -}; - -#else -enum ProcessingState__Enum { - ProcessingState__Enum_Unknown = 0x00000000, - ProcessingState__Enum_InQueue = 0x00000001, - ProcessingState__Enum_Reading = 0x00000002, - ProcessingState__Enum_Completed = 0x00000003, - ProcessingState__Enum_Failed = 0x00000004, - ProcessingState__Enum_Canceled = 0x00000005, -}; - -#endif -struct ProcessingState__Enum__Boxed { - struct ProcessingState__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - ProcessingState__Enum value; - #else - int32_t value; - #endif -}; - -#if defined(_CPLUSPLUS_) -enum class FileReadType__Enum : int32_t { - Sync = 0x00000000, - Async = 0x00000001, -}; - -#else -enum FileReadType__Enum { - FileReadType__Enum_Sync = 0x00000000, - FileReadType__Enum_Async = 0x00000001, -}; - -#endif -struct FileReadType__Enum__Boxed { - struct FileReadType__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - FileReadType__Enum value; - #else - int32_t value; - #endif -}; - struct AsyncReadManagerRequestMetric { struct String *_AssetName_k__BackingField; struct String *_FileName_k__BackingField; @@ -1410098,38 +1525161,6 @@ struct AsyncReadManagerMetricsFilters { struct AsyncReadManagerMetricsFilters__Fields fields; }; -struct ProcessingState__Enum__Array { - struct ProcessingState__Enum__Array__Class *klass; - MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - ProcessingState__Enum vector[32]; -}; - -struct FileReadType__Enum__Array { - struct FileReadType__Enum__Array__Class *klass; - MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - FileReadType__Enum vector[32]; -}; - -struct Priority__Enum__Array { - struct Priority__Enum__Array__Class *klass; - MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - Priority__Enum vector[32]; -}; - -struct AssetLoadingSubsystem__Enum__Array { - struct AssetLoadingSubsystem__Enum__Array__Class *klass; - MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - AssetLoadingSubsystem__Enum vector[32]; -}; - struct ReadOnlyAttribute_2 { struct ReadOnlyAttribute_2__Class *klass; MonitorData *monitor; @@ -1410200,31 +1525231,11 @@ struct SortingLayer__Boxed { struct SortingLayer fields; }; -struct Application { - struct Application__Class *klass; - MonitorData *monitor; -}; - struct Caching { struct Caching__Class *klass; MonitorData *monitor; }; -struct FlareLayer__Fields { - struct Behaviour__Fields _; -}; - -struct FlareLayer { - struct FlareLayer__Class *klass; - MonitorData *monitor; - struct FlareLayer__Fields fields; -}; - -struct Debug_2 { - struct Debug_2__Class *klass; - MonitorData *monitor; -}; - struct GeometryUtility { struct GeometryUtility__Class *klass; MonitorData *monitor; @@ -1410245,11 +1525256,6 @@ struct Screen { MonitorData *monitor; }; -struct Graphics { - struct Graphics__Class *klass; - MonitorData *monitor; -}; - struct GL { struct GL__Class *klass; MonitorData *monitor; @@ -1410265,16 +1525271,6 @@ struct LightmapSettings { struct LightmapSettings__Fields fields; }; -struct LightProbes__Fields { - struct Object_1__Fields _; -}; - -struct LightProbes { - struct LightProbes__Class *klass; - MonitorData *monitor; - struct LightProbes__Fields fields; -}; - struct QualitySettings__Fields { struct Object_1__Fields _; }; @@ -1410345,15 +1525341,6 @@ struct ColorUtility { MonitorData *monitor; }; -struct Mathf { -}; - -struct Mathf__Boxed { - struct Mathf__Class *klass; - MonitorData *monitor; - struct Mathf fields; -}; - struct PlayerPrefs { struct PlayerPrefs__Class *klass; MonitorData *monitor; @@ -1410369,27 +1525356,6 @@ struct Resources { MonitorData *monitor; }; -struct AttributeHelperEngine { - struct AttributeHelperEngine__Class *klass; - MonitorData *monitor; -}; - -struct DisallowMultipleComponent__Array { - struct DisallowMultipleComponent__Array__Class *klass; - MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - struct DisallowMultipleComponent *vector[32]; -}; - -struct ExecuteInEditMode__Array { - struct ExecuteInEditMode__Array__Class *klass; - MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - struct ExecuteInEditMode *vector[32]; -}; - struct AssemblyIsEditorAssembly { struct AssemblyIsEditorAssembly__Class *klass; MonitorData *monitor; @@ -1410460,13 +1525426,8 @@ struct SystemInfo_1 { MonitorData *monitor; }; -struct SystemClock { - struct SystemClock__Class *klass; - MonitorData *monitor; -}; - -struct Time { - struct Time__Class *klass; +struct Time_1 { + struct Time_1__Class *klass; MonitorData *monitor; }; @@ -1410496,71 +1525457,16 @@ struct SpriteBone__Boxed { struct SpriteBone fields; }; -struct SpriteAtlasManager { - struct SpriteAtlasManager__Class *klass; - MonitorData *monitor; -}; - -struct Action_2_String_Action_1_UnityEngine_U2D_SpriteAtlas___Fields { - struct MulticastDelegate__Fields _; -}; - -struct Action_2_String_Action_1_UnityEngine_U2D_SpriteAtlas_ { - struct Action_2_String_Action_1_UnityEngine_U2D_SpriteAtlas___Class *klass; - MonitorData *monitor; - struct Action_2_String_Action_1_UnityEngine_U2D_SpriteAtlas___Fields fields; -}; - struct Profiler_1 { struct Profiler_1__Class *klass; MonitorData *monitor; }; -struct MemoryProfiler { - struct MemoryProfiler__Class *klass; - MonitorData *monitor; -}; - -struct Action_2_String_Boolean___Fields { - struct MulticastDelegate__Fields _; -}; - -struct Action_2_String_Boolean_ { - struct Action_2_String_Boolean___Class *klass; - MonitorData *monitor; - struct Action_2_String_Boolean___Fields fields; -}; - -struct Action_3_String_Boolean_UnityEngine_Profiling_Experimental_DebugScreenCapture___Fields { - struct MulticastDelegate__Fields _; -}; - -struct Action_3_String_Boolean_UnityEngine_Profiling_Experimental_DebugScreenCapture_ { - struct Action_3_String_Boolean_UnityEngine_Profiling_Experimental_DebugScreenCapture___Class *klass; - MonitorData *monitor; - struct Action_3_String_Boolean_UnityEngine_Profiling_Experimental_DebugScreenCapture___Fields fields; -}; - -struct Action_1_UnityEngine_Profiling_Memory_Experimental_MetaData___Fields { - struct MulticastDelegate__Fields _; -}; - -struct Action_1_UnityEngine_Profiling_Memory_Experimental_MetaData_ { - struct Action_1_UnityEngine_Profiling_Memory_Experimental_MetaData___Class *klass; - MonitorData *monitor; - struct Action_1_UnityEngine_Profiling_Memory_Experimental_MetaData___Fields fields; -}; - struct UnityEventTools { struct UnityEventTools__Class *klass; MonitorData *monitor; }; -struct SceneManager { - struct SceneManager__Class *klass; - MonitorData *monitor; -}; - struct PlayerLoopSystemInternal { struct Type *type; struct PlayerLoopSystem_UpdateFunction *updateDelegate; @@ -1411791,11 +1526697,6 @@ struct GraphicsSettings { struct GraphicsSettings__Fields fields; }; -struct OnDemandRendering { - struct OnDemandRendering__Class *klass; - MonitorData *monitor; -}; - struct SpriteIntermediateRendererInfo { int32_t SpriteID; int32_t TextureID; @@ -1411887,20 +1526788,6 @@ struct jYewjvsiEBFWDKQkYgaYsBDZXKIP { MonitorData *monitor; }; -struct JRmFfGvKMkHFhkxbaEUMFVGagwzEc_ouwTfAcYoAaLZDOncmZQZbWsgBDx_bMrAxByDhWfvlfgRebXWLYWosqiWA { - int32_t tKgXiUwjXkFGAipCXHFBiMeKeiLLc; - int32_t NqeYzZxzjVMNMmxHoEbCHJjvPMg; - int32_t YcihruvkDCDWiQBJkoQHhmUaJdwb; - struct Guid hvcGNwvMNgdIJFThZhDybDOTUfuy; - int16_t MNseuOReddEsdOLmzAOKjKrRRJCc; -}; - -struct JRmFfGvKMkHFhkxbaEUMFVGagwzEc_ouwTfAcYoAaLZDOncmZQZbWsgBDx_bMrAxByDhWfvlfgRebXWLYWosqiWA__Boxed { - struct JRmFfGvKMkHFhkxbaEUMFVGagwzEc_ouwTfAcYoAaLZDOncmZQZbWsgBDx_bMrAxByDhWfvlfgRebXWLYWosqiWA__Class *klass; - MonitorData *monitor; - struct JRmFfGvKMkHFhkxbaEUMFVGagwzEc_ouwTfAcYoAaLZDOncmZQZbWsgBDx_bMrAxByDhWfvlfgRebXWLYWosqiWA fields; -}; - struct ZMqjCYehEKqIQMMhejVBKtVTTPMf_qBiftvlXaQHfQBCfczMBgSEUBnycb { void *QQXLrWWMuWPsmbXFbxXpWszljxfV; void *rikNPpOCrAPCKTFOrIGaTPZziJfU; @@ -1411922,11 +1526809,6 @@ struct ZMqjCYehEKqIQMMhejVBKtVTTPMf_qBiftvlXaQHfQBCfczMBgSEUBnycb__Boxed { struct ZMqjCYehEKqIQMMhejVBKtVTTPMf_qBiftvlXaQHfQBCfczMBgSEUBnycb fields; }; -struct qUaeyIgVCufmDzatlipvlpwBwlinA { - struct qUaeyIgVCufmDzatlipvlpwBwlinA__Class *klass; - MonitorData *monitor; -}; - struct WEPwwhsQpvkXBmQtlecPERdWRTWF { uint16_t lHWHNCVxVyPwTOKgjUggcfxjVKUs; uint16_t bDYmXoqdbcFoFFrWxdVGEOUmjfgrA; @@ -1411940,26 +1526822,11 @@ struct WEPwwhsQpvkXBmQtlecPERdWRTWF__Boxed { struct WEPwwhsQpvkXBmQtlecPERdWRTWF fields; }; -struct MvuBcSFavsboGCnLcnrkzRubbOCaB { - struct MvuBcSFavsboGCnLcnrkzRubbOCaB__Class *klass; - MonitorData *monitor; -}; - -struct exarigLDNtDEaYVUwCksJVldldinA { - struct exarigLDNtDEaYVUwCksJVldldinA__Class *klass; - MonitorData *monitor; -}; - struct bZBnvomNtURhFhLiXePYBDaJfKxgA { struct bZBnvomNtURhFhLiXePYBDaJfKxgA__Class *klass; MonitorData *monitor; }; -struct gEPJIdTJwmJwoXPlEpTuwVGlPAjJ { - struct gEPJIdTJwmJwoXPlEpTuwVGlPAjJ__Class *klass; - MonitorData *monitor; -}; - struct CqebESBkqJazKAUIAPlqHgaRUsJTB { struct CqebESBkqJazKAUIAPlqHgaRUsJTB__Class *klass; MonitorData *monitor; @@ -1411976,11 +1526843,6 @@ struct DlrhtmLFvsBstGSvZyvbkFOsYbacA__Boxed { struct DlrhtmLFvsBstGSvZyvbkFOsYbacA fields; }; -struct JijFgftvqSztIyGNBBwSiwjdSDyIA { - struct JijFgftvqSztIyGNBBwSiwjdSDyIA__Class *klass; - MonitorData *monitor; -}; - struct _PrivateImplementationDetails_StaticArrayInitTypeSize_88_1 { }; @@ -1412944,29 +1527806,6 @@ struct _PrivateImplementationDetails__17 { MonitorData *monitor; }; -#if defined(_CPLUSPLUS_) -enum class UnitySettings_DotNetVersion__Enum : int32_t { - DOTNET_35 = 0x00000000, - DOTNET_4x = 0x00000001, -}; - -#else -enum UnitySettings_DotNetVersion__Enum { - UnitySettings_DotNetVersion__Enum_DOTNET_35 = 0x00000000, - UnitySettings_DotNetVersion__Enum_DOTNET_4x = 0x00000001, -}; - -#endif -struct UnitySettings_DotNetVersion__Enum__Boxed { - struct UnitySettings_DotNetVersion__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - UnitySettings_DotNetVersion__Enum value; - #else - int32_t value; - #endif -}; - #if defined(_CPLUSPLUS_) enum class AxisSelections__Enum : int32_t { XYZ = 0x0000000e, @@ -1413137,22 +1527976,6 @@ struct BoltBuildType__Enum__Boxed { #endif }; -struct AutoLoadSceneInfo { - #if defined(_CPLUSPLUS_) - AutoLoadSceneOrigin__Enum Origin; - #else - int32_t Origin; - #endif - struct String *Scene; - struct IProtocolToken *Token; -}; - -struct AutoLoadSceneInfo__Boxed { - struct AutoLoadSceneInfo__Class *klass; - MonitorData *monitor; - struct AutoLoadSceneInfo fields; -}; - #if defined(_CPLUSPLUS_) enum class Image_OriginHorizontal__Enum : int32_t { Left = 0x00000000, @@ -1413387,212 +1528210,6 @@ struct InitV3Flags__Enum__Boxed { #endif }; -struct Protocol { - struct Protocol__Class *klass; - MonitorData *monitor; -}; - -struct __declspec(align(8)) Dictionary_2_System_Type_ExitGames_Client_Photon_CustomType___Fields { - struct Int32__Array *_buckets; - struct Dictionary_2_TKey_TValue_Entry_System_Type_ExitGames_Client_Photon_CustomType___Array *_entries; - int32_t _count; - int32_t _freeList; - int32_t _freeCount; - int32_t _version; - struct IEqualityComparer_1_System_Type_ *_comparer; - struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_ExitGames_Client_Photon_CustomType_ *_keys; - struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_ExitGames_Client_Photon_CustomType_ *_values; - struct Object *_syncRoot; -}; - -struct Dictionary_2_System_Type_ExitGames_Client_Photon_CustomType_ { - struct Dictionary_2_System_Type_ExitGames_Client_Photon_CustomType___Class *klass; - MonitorData *monitor; - struct Dictionary_2_System_Type_ExitGames_Client_Photon_CustomType___Fields fields; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Type_ExitGames_Client_Photon_CustomType_ { - int32_t hashCode; - int32_t next; - struct Type *key; - struct CustomType *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Type_ExitGames_Client_Photon_CustomType___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Type_ExitGames_Client_Photon_CustomType___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Type_ExitGames_Client_Photon_CustomType_ fields; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Type_ExitGames_Client_Photon_CustomType___Array { - struct Dictionary_2_TKey_TValue_Entry_System_Type_ExitGames_Client_Photon_CustomType___Array__Class *klass; - MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - struct Dictionary_2_TKey_TValue_Entry_System_Type_ExitGames_Client_Photon_CustomType_ vector[32]; -}; - -struct __declspec(align(8)) Dictionary_2_TKey_TValue_KeyCollection_System_Type_ExitGames_Client_Photon_CustomType___Fields { - struct Dictionary_2_System_Type_ExitGames_Client_Photon_CustomType_ *_dictionary; -}; - -struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_ExitGames_Client_Photon_CustomType_ { - struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_ExitGames_Client_Photon_CustomType___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_ExitGames_Client_Photon_CustomType___Fields fields; -}; - -struct __declspec(align(8)) Dictionary_2_TKey_TValue_ValueCollection_System_Type_ExitGames_Client_Photon_CustomType___Fields { - struct Dictionary_2_System_Type_ExitGames_Client_Photon_CustomType_ *_dictionary; -}; - -struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_ExitGames_Client_Photon_CustomType_ { - struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_ExitGames_Client_Photon_CustomType___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_ExitGames_Client_Photon_CustomType___Fields fields; -}; - -struct CustomType__Array { - struct CustomType__Array__Class *klass; - MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - struct CustomType *vector[32]; -}; - -struct IEnumerator_1_ExitGames_Client_Photon_CustomType_ { - struct IEnumerator_1_ExitGames_Client_Photon_CustomType___Class *klass; - MonitorData *monitor; -}; - -struct ICollection_1_ExitGames_Client_Photon_CustomType_ { - struct ICollection_1_ExitGames_Client_Photon_CustomType___Class *klass; - MonitorData *monitor; -}; - -struct KeyValuePair_2_System_Type_ExitGames_Client_Photon_CustomType_ { - struct Type *key; - struct CustomType *value; -}; - -struct KeyValuePair_2_System_Type_ExitGames_Client_Photon_CustomType___Boxed { - struct KeyValuePair_2_System_Type_ExitGames_Client_Photon_CustomType___Class *klass; - MonitorData *monitor; - struct KeyValuePair_2_System_Type_ExitGames_Client_Photon_CustomType_ fields; -}; - -struct KeyValuePair_2_System_Type_ExitGames_Client_Photon_CustomType___Array { - struct KeyValuePair_2_System_Type_ExitGames_Client_Photon_CustomType___Array__Class *klass; - MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - struct KeyValuePair_2_System_Type_ExitGames_Client_Photon_CustomType_ vector[32]; -}; - -struct IEnumerator_1_KeyValuePair_2_System_Type_ExitGames_Client_Photon_CustomType_ { - struct IEnumerator_1_KeyValuePair_2_System_Type_ExitGames_Client_Photon_CustomType___Class *klass; - MonitorData *monitor; -}; - -struct IEnumerable_1_ExitGames_Client_Photon_CustomType_ { - struct IEnumerable_1_ExitGames_Client_Photon_CustomType___Class *klass; - MonitorData *monitor; -}; - -struct __declspec(align(8)) Dictionary_2_System_Byte_ExitGames_Client_Photon_CustomType___Fields { - struct Int32__Array *_buckets; - struct Dictionary_2_TKey_TValue_Entry_System_Byte_ExitGames_Client_Photon_CustomType___Array *_entries; - int32_t _count; - int32_t _freeList; - int32_t _freeCount; - int32_t _version; - struct IEqualityComparer_1_System_Byte_ *_comparer; - struct Dictionary_2_TKey_TValue_KeyCollection_System_Byte_ExitGames_Client_Photon_CustomType_ *_keys; - struct Dictionary_2_TKey_TValue_ValueCollection_System_Byte_ExitGames_Client_Photon_CustomType_ *_values; - struct Object *_syncRoot; -}; - -struct Dictionary_2_System_Byte_ExitGames_Client_Photon_CustomType_ { - struct Dictionary_2_System_Byte_ExitGames_Client_Photon_CustomType___Class *klass; - MonitorData *monitor; - struct Dictionary_2_System_Byte_ExitGames_Client_Photon_CustomType___Fields fields; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Byte_ExitGames_Client_Photon_CustomType_ { - int32_t hashCode; - int32_t next; - uint8_t key; - struct CustomType *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Byte_ExitGames_Client_Photon_CustomType___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Byte_ExitGames_Client_Photon_CustomType___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Byte_ExitGames_Client_Photon_CustomType_ fields; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Byte_ExitGames_Client_Photon_CustomType___Array { - struct Dictionary_2_TKey_TValue_Entry_System_Byte_ExitGames_Client_Photon_CustomType___Array__Class *klass; - MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - struct Dictionary_2_TKey_TValue_Entry_System_Byte_ExitGames_Client_Photon_CustomType_ vector[32]; -}; - -struct __declspec(align(8)) Dictionary_2_TKey_TValue_KeyCollection_System_Byte_ExitGames_Client_Photon_CustomType___Fields { - struct Dictionary_2_System_Byte_ExitGames_Client_Photon_CustomType_ *_dictionary; -}; - -struct Dictionary_2_TKey_TValue_KeyCollection_System_Byte_ExitGames_Client_Photon_CustomType_ { - struct Dictionary_2_TKey_TValue_KeyCollection_System_Byte_ExitGames_Client_Photon_CustomType___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_KeyCollection_System_Byte_ExitGames_Client_Photon_CustomType___Fields fields; -}; - -struct __declspec(align(8)) Dictionary_2_TKey_TValue_ValueCollection_System_Byte_ExitGames_Client_Photon_CustomType___Fields { - struct Dictionary_2_System_Byte_ExitGames_Client_Photon_CustomType_ *_dictionary; -}; - -struct Dictionary_2_TKey_TValue_ValueCollection_System_Byte_ExitGames_Client_Photon_CustomType_ { - struct Dictionary_2_TKey_TValue_ValueCollection_System_Byte_ExitGames_Client_Photon_CustomType___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_ValueCollection_System_Byte_ExitGames_Client_Photon_CustomType___Fields fields; -}; - -struct KeyValuePair_2_System_Byte_ExitGames_Client_Photon_CustomType_ { - uint8_t key; - struct CustomType *value; -}; - -struct KeyValuePair_2_System_Byte_ExitGames_Client_Photon_CustomType___Boxed { - struct KeyValuePair_2_System_Byte_ExitGames_Client_Photon_CustomType___Class *klass; - MonitorData *monitor; - struct KeyValuePair_2_System_Byte_ExitGames_Client_Photon_CustomType_ fields; -}; - -struct KeyValuePair_2_System_Byte_ExitGames_Client_Photon_CustomType___Array { - struct KeyValuePair_2_System_Byte_ExitGames_Client_Photon_CustomType___Array__Class *klass; - MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - struct KeyValuePair_2_System_Byte_ExitGames_Client_Photon_CustomType_ vector[32]; -}; - -struct IEnumerator_1_KeyValuePair_2_System_Byte_ExitGames_Client_Photon_CustomType_ { - struct IEnumerator_1_KeyValuePair_2_System_Byte_ExitGames_Client_Photon_CustomType___Class *klass; - MonitorData *monitor; -}; - -struct SupportClass_ThreadSafeRandom { - struct SupportClass_ThreadSafeRandom__Class *klass; - MonitorData *monitor; -}; - -struct SupportClass { - struct SupportClass__Class *klass; - MonitorData *monitor; -}; - struct _PrivateImplementationDetails_StaticArrayInitTypeSize_9_1 { }; @@ -1413939,95 +1528556,6 @@ struct TagUnitType__Enum_1__Boxed { #endif }; -struct TextResourceManager { - struct TextResourceManager__Class *klass; - MonitorData *monitor; -}; - -struct __declspec(align(8)) Dictionary_2_System_Int64_UnityEngine_TextCore_Text_FontAsset___Fields { - struct Int32__Array *_buckets; - struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_TextCore_Text_FontAsset___Array *_entries; - int32_t _count; - int32_t _freeList; - int32_t _freeCount; - int32_t _version; - struct IEqualityComparer_1_System_Int64_ *_comparer; - struct Dictionary_2_TKey_TValue_KeyCollection_System_Int64_UnityEngine_TextCore_Text_FontAsset_ *_keys; - struct Dictionary_2_TKey_TValue_ValueCollection_System_Int64_UnityEngine_TextCore_Text_FontAsset_ *_values; - struct Object *_syncRoot; -}; - -struct Dictionary_2_System_Int64_UnityEngine_TextCore_Text_FontAsset_ { - struct Dictionary_2_System_Int64_UnityEngine_TextCore_Text_FontAsset___Class *klass; - MonitorData *monitor; - struct Dictionary_2_System_Int64_UnityEngine_TextCore_Text_FontAsset___Fields fields; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_TextCore_Text_FontAsset_ { - int32_t hashCode; - int32_t next; - int64_t key; - struct FontAsset *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_TextCore_Text_FontAsset___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_TextCore_Text_FontAsset___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_TextCore_Text_FontAsset_ fields; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_TextCore_Text_FontAsset___Array { - struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_TextCore_Text_FontAsset___Array__Class *klass; - MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_TextCore_Text_FontAsset_ vector[32]; -}; - -struct __declspec(align(8)) Dictionary_2_TKey_TValue_KeyCollection_System_Int64_UnityEngine_TextCore_Text_FontAsset___Fields { - struct Dictionary_2_System_Int64_UnityEngine_TextCore_Text_FontAsset_ *_dictionary; -}; - -struct Dictionary_2_TKey_TValue_KeyCollection_System_Int64_UnityEngine_TextCore_Text_FontAsset_ { - struct Dictionary_2_TKey_TValue_KeyCollection_System_Int64_UnityEngine_TextCore_Text_FontAsset___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_KeyCollection_System_Int64_UnityEngine_TextCore_Text_FontAsset___Fields fields; -}; - -struct __declspec(align(8)) Dictionary_2_TKey_TValue_ValueCollection_System_Int64_UnityEngine_TextCore_Text_FontAsset___Fields { - struct Dictionary_2_System_Int64_UnityEngine_TextCore_Text_FontAsset_ *_dictionary; -}; - -struct Dictionary_2_TKey_TValue_ValueCollection_System_Int64_UnityEngine_TextCore_Text_FontAsset_ { - struct Dictionary_2_TKey_TValue_ValueCollection_System_Int64_UnityEngine_TextCore_Text_FontAsset___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_ValueCollection_System_Int64_UnityEngine_TextCore_Text_FontAsset___Fields fields; -}; - -struct KeyValuePair_2_System_Int64_UnityEngine_TextCore_Text_FontAsset_ { - int64_t key; - struct FontAsset *value; -}; - -struct KeyValuePair_2_System_Int64_UnityEngine_TextCore_Text_FontAsset___Boxed { - struct KeyValuePair_2_System_Int64_UnityEngine_TextCore_Text_FontAsset___Class *klass; - MonitorData *monitor; - struct KeyValuePair_2_System_Int64_UnityEngine_TextCore_Text_FontAsset_ fields; -}; - -struct KeyValuePair_2_System_Int64_UnityEngine_TextCore_Text_FontAsset___Array { - struct KeyValuePair_2_System_Int64_UnityEngine_TextCore_Text_FontAsset___Array__Class *klass; - MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - struct KeyValuePair_2_System_Int64_UnityEngine_TextCore_Text_FontAsset_ vector[32]; -}; - -struct IEnumerator_1_KeyValuePair_2_System_Int64_UnityEngine_TextCore_Text_FontAsset_ { - struct IEnumerator_1_KeyValuePair_2_System_Int64_UnityEngine_TextCore_Text_FontAsset___Class *klass; - MonitorData *monitor; -}; - #if defined(_CPLUSPLUS_) enum class BloomRenderer_Pass__Enum : int32_t { Prefilter13 = 0x00000000, @@ -1414311,21 +1528839,11 @@ struct _PrivateImplementationDetails__20 { MonitorData *monitor; }; -struct ZipEntry_CopyHelper { - struct ZipEntry_CopyHelper__Class *klass; - MonitorData *monitor; -}; - struct SharedUtils { struct SharedUtils__Class *klass; MonitorData *monitor; }; -struct Adler { - struct Adler__Class *klass; - MonitorData *monitor; -}; - struct _PrivateImplementationDetails_99f15b47_93f0_442d_a950_84e2e79a92c8_ArrayType_12 { }; @@ -1414569,59 +1529087,6 @@ struct _PrivateImplementationDetails__6 { MonitorData *monitor; }; -struct HairDesignerEvents { - struct HairDesignerEvents__Class *klass; - MonitorData *monitor; -}; - -struct HairDesignerGeneratorFurShellBase_Vector3BufferData { - struct Vector3 v; -}; - -struct HairDesignerGeneratorFurShellBase_Vector3BufferData__Boxed { - struct HairDesignerGeneratorFurShellBase_Vector3BufferData__Class *klass; - MonitorData *monitor; - struct HairDesignerGeneratorFurShellBase_Vector3BufferData fields; -}; - -struct HairDesignerGeneratorFurShellBase_Vector4BufferData { - struct Vector4 v; -}; - -struct HairDesignerGeneratorFurShellBase_Vector4BufferData__Boxed { - struct HairDesignerGeneratorFurShellBase_Vector4BufferData__Class *klass; - MonitorData *monitor; - struct HairDesignerGeneratorFurShellBase_Vector4BufferData fields; -}; - -struct HairDesignerGeneratorAdvancedFurBase_Vector3BufferData { - struct Vector3 v; -}; - -struct HairDesignerGeneratorAdvancedFurBase_Vector3BufferData__Boxed { - struct HairDesignerGeneratorAdvancedFurBase_Vector3BufferData__Class *klass; - MonitorData *monitor; - struct HairDesignerGeneratorAdvancedFurBase_Vector3BufferData fields; -}; - -struct HairDesignerGeneratorAdvancedFurBase_PIData { - float dtStepNext; - float errSumX; - float errSumY; - float errSumZ; - float errorX; - float errorY; - float errorZ; - struct Vector3 target; - struct Vector3 result; -}; - -struct HairDesignerGeneratorAdvancedFurBase_PIData__Boxed { - struct HairDesignerGeneratorAdvancedFurBase_PIData__Class *klass; - MonitorData *monitor; - struct HairDesignerGeneratorAdvancedFurBase_PIData fields; -}; - struct _PrivateImplementationDetails_StaticArrayInitTypeSize_12_7 { }; @@ -1414636,51 +1529101,6 @@ struct _PrivateImplementationDetails__21 { MonitorData *monitor; }; -#if defined(_CPLUSPLUS_) -enum class Behavior_EventTypes__Enum : int32_t { - OnCollisionEnter = 0x00000000, - OnCollisionExit = 0x00000001, - OnTriggerEnter = 0x00000002, - OnTriggerExit = 0x00000003, - OnCollisionEnter2D = 0x00000004, - OnCollisionExit2D = 0x00000005, - OnTriggerEnter2D = 0x00000006, - OnTriggerExit2D = 0x00000007, - OnControllerColliderHit = 0x00000008, - OnLateUpdate = 0x00000009, - OnFixedUpdate = 0x0000000a, - OnAnimatorIK = 0x0000000b, - None = 0x0000000c, -}; - -#else -enum Behavior_EventTypes__Enum { - Behavior_EventTypes__Enum_OnCollisionEnter = 0x00000000, - Behavior_EventTypes__Enum_OnCollisionExit = 0x00000001, - Behavior_EventTypes__Enum_OnTriggerEnter = 0x00000002, - Behavior_EventTypes__Enum_OnTriggerExit = 0x00000003, - Behavior_EventTypes__Enum_OnCollisionEnter2D = 0x00000004, - Behavior_EventTypes__Enum_OnCollisionExit2D = 0x00000005, - Behavior_EventTypes__Enum_OnTriggerEnter2D = 0x00000006, - Behavior_EventTypes__Enum_OnTriggerExit2D = 0x00000007, - Behavior_EventTypes__Enum_OnControllerColliderHit = 0x00000008, - Behavior_EventTypes__Enum_OnLateUpdate = 0x00000009, - Behavior_EventTypes__Enum_OnFixedUpdate = 0x0000000a, - Behavior_EventTypes__Enum_OnAnimatorIK = 0x0000000b, - Behavior_EventTypes__Enum_None = 0x0000000c, -}; - -#endif -struct Behavior_EventTypes__Enum__Boxed { - struct Behavior_EventTypes__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - Behavior_EventTypes__Enum value; - #else - int32_t value; - #endif -}; - struct _PrivateImplementationDetails_ArrayType_1024 { }; @@ -1414784,11 +1529204,6 @@ struct TrackAsset_Versions__Enum__Boxed { #endif }; -struct GUI { - struct GUI__Class *klass; - MonitorData *monitor; -}; - struct GUIClip { struct GUIClip__Class *klass; MonitorData *monitor; @@ -1414799,148 +1529214,6 @@ struct GUILayout { MonitorData *monitor; }; -struct GUILayoutUtility { - struct GUILayoutUtility__Class *klass; - MonitorData *monitor; -}; - -struct __declspec(align(8)) Dictionary_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Fields { - struct Int32__Array *_buckets; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Array *_entries; - int32_t _count; - int32_t _freeList; - int32_t _freeCount; - int32_t _version; - struct IEqualityComparer_1_System_Int32_ *_comparer; - struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache_ *_keys; - struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache_ *_values; - struct Object *_syncRoot; -}; - -struct Dictionary_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache_ { - struct Dictionary_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Class *klass; - MonitorData *monitor; - struct Dictionary_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Fields fields; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache_ { - int32_t hashCode; - int32_t next; - int32_t key; - struct GUILayoutUtility_LayoutCache *value; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Boxed { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache_ fields; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Array { - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Array__Class *klass; - MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache_ vector[32]; -}; - -struct __declspec(align(8)) Dictionary_2_TKey_TValue_KeyCollection_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Fields { - struct Dictionary_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache_ *_dictionary; -}; - -struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache_ { - struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Fields fields; -}; - -struct __declspec(align(8)) Dictionary_2_TKey_TValue_ValueCollection_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Fields { - struct Dictionary_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache_ *_dictionary; -}; - -struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache_ { - struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Class *klass; - MonitorData *monitor; - struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Fields fields; -}; - -struct GUILayoutUtility_LayoutCache__Array { - struct GUILayoutUtility_LayoutCache__Array__Class *klass; - MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - struct GUILayoutUtility_LayoutCache *vector[32]; -}; - -struct IEnumerator_1_UnityEngine_GUILayoutUtility_LayoutCache_ { - struct IEnumerator_1_UnityEngine_GUILayoutUtility_LayoutCache___Class *klass; - MonitorData *monitor; -}; - -struct ICollection_1_UnityEngine_GUILayoutUtility_LayoutCache_ { - struct ICollection_1_UnityEngine_GUILayoutUtility_LayoutCache___Class *klass; - MonitorData *monitor; -}; - -struct KeyValuePair_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache_ { - int32_t key; - struct GUILayoutUtility_LayoutCache *value; -}; - -struct KeyValuePair_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Boxed { - struct KeyValuePair_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Class *klass; - MonitorData *monitor; - struct KeyValuePair_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache_ fields; -}; - -struct KeyValuePair_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Array { - struct KeyValuePair_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Array__Class *klass; - MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - struct KeyValuePair_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache_ vector[32]; -}; - -struct IEnumerator_1_KeyValuePair_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache_ { - struct IEnumerator_1_KeyValuePair_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Class *klass; - MonitorData *monitor; -}; - -struct IEnumerable_1_UnityEngine_GUILayoutUtility_LayoutCache_ { - struct IEnumerable_1_UnityEngine_GUILayoutUtility_LayoutCache___Class *klass; - MonitorData *monitor; -}; - -struct GUIStateObjects { - struct GUIStateObjects__Class *klass; - MonitorData *monitor; -}; - -struct __declspec(align(8)) GUITargetAttribute__Fields { - int32_t displayMask; -}; - -struct GUITargetAttribute { - struct GUITargetAttribute__Class *klass; - MonitorData *monitor; - struct GUITargetAttribute__Fields fields; -}; - -struct GUIUtility { - struct GUIUtility__Class *klass; - MonitorData *monitor; -}; - -struct Func_2_Exception_Boolean___Fields { - struct MulticastDelegate__Fields _; -}; - -struct Func_2_Exception_Boolean_ { - struct Func_2_Exception_Boolean___Class *klass; - MonitorData *monitor; - struct Func_2_Exception_Boolean___Fields fields; -}; - struct _PrivateImplementationDetails__7 { struct _PrivateImplementationDetails__7__Class *klass; MonitorData *monitor; @@ -1415250,31 +1529523,6 @@ struct _PrivateImplementationDetails__24 { MonitorData *monitor; }; -#if defined(_CPLUSPLUS_) -enum class FingerIndicator_Fingers__Enum : int32_t { - Index = 0x00000000, - Thumb = 0x00000001, - Hand = 0x00000002, -}; - -#else -enum FingerIndicator_Fingers__Enum { - FingerIndicator_Fingers__Enum_Index = 0x00000000, - FingerIndicator_Fingers__Enum_Thumb = 0x00000001, - FingerIndicator_Fingers__Enum_Hand = 0x00000002, -}; - -#endif -struct FingerIndicator_Fingers__Enum__Boxed { - struct FingerIndicator_Fingers__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - FingerIndicator_Fingers__Enum value; - #else - int32_t value; - #endif -}; - struct SharedBetweenAnimatorsAttribute { struct SharedBetweenAnimatorsAttribute__Class *klass; MonitorData *monitor; @@ -1415371,11 +1529619,6 @@ struct ParticleSystemExtensionsImpl { MonitorData *monitor; }; -struct Physics { - struct Physics__Class *klass; - MonitorData *monitor; -}; - struct _AndroidJNIHelper { struct _AndroidJNIHelper__Class *klass; MonitorData *monitor; @@ -1415401,34 +1529644,6 @@ struct DllCheck { MonitorData *monitor; }; -#if defined(_CPLUSPLUS_) -enum class UIEffect_BlurEx__Enum : int32_t { - None = 0x00000000, - Ex = 0x00000001, -}; - -#else -enum UIEffect_BlurEx__Enum { - UIEffect_BlurEx__Enum_None = 0x00000000, - UIEffect_BlurEx__Enum_Ex = 0x00000001, -}; - -#endif -struct UIEffect_BlurEx__Enum__Boxed { - struct UIEffect_BlurEx__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - UIEffect_BlurEx__Enum value; - #else - int32_t value; - #endif -}; - -struct AudioSettings { - struct AudioSettings__Class *klass; - MonitorData *monitor; -}; - struct AudioReverbZone__Fields { struct Behaviour__Fields _; }; @@ -1415540,11 +1529755,6 @@ struct MeasureOutput { MonitorData *monitor; }; -struct Utility_1 { - struct Utility_1__Class *klass; - MonitorData *monitor; -}; - struct ThrowStub_2__Fields { struct ObjectDisposedException__Fields _; }; @@ -1415555,11 +1529765,6 @@ struct ThrowStub_2 { struct ThrowStub_2__Fields fields; }; -struct InputDevices { - struct InputDevices__Class *klass; - MonitorData *monitor; -}; - struct XRDisplaySubsystem_XRRenderPass { void *displaySubsystemInstance; int32_t renderPassIndex; @@ -1416128,11 +1530333,6 @@ struct XrSystemPassThroughPropertiesHTC__Boxed { struct XrSystemPassThroughPropertiesHTC fields; }; -struct TriangulationUtil { - struct TriangulationUtil__Class *klass; - MonitorData *monitor; -}; - #if defined(_CPLUSPLUS_) enum class XrHandJointEXT__Enum : int32_t { XR_HAND_JOINT_PALM_EXT = 0x00000000, @@ -1416458,137 +1530658,6 @@ struct FontEngineUtilities__Boxed { struct FontEngineUtilities fields; }; -struct Physics2D { - struct Physics2D__Class *klass; - MonitorData *monitor; -}; - -struct __declspec(align(8)) List_1_UnityEngine_Rigidbody2D___Fields { - struct Rigidbody2D__Array *_items; - int32_t _size; - int32_t _version; - struct Object *_syncRoot; -}; - -struct List_1_UnityEngine_Rigidbody2D_ { - struct List_1_UnityEngine_Rigidbody2D___Class *klass; - MonitorData *monitor; - struct List_1_UnityEngine_Rigidbody2D___Fields fields; -}; - -struct Rigidbody2D__Array { - struct Rigidbody2D__Array__Class *klass; - MonitorData *monitor; - Il2CppArrayBounds *bounds; - il2cpp_array_size_t max_length; - struct Rigidbody2D *vector[32]; -}; - -struct IEnumerator_1_UnityEngine_Rigidbody2D_ { - struct IEnumerator_1_UnityEngine_Rigidbody2D___Class *klass; - MonitorData *monitor; -}; - -#if defined(_CPLUSPLUS_) -enum class RigidbodyInterpolation2D__Enum : int32_t { - None = 0x00000000, - Interpolate = 0x00000001, - Extrapolate = 0x00000002, -}; - -#else -enum RigidbodyInterpolation2D__Enum { - RigidbodyInterpolation2D__Enum_None = 0x00000000, - RigidbodyInterpolation2D__Enum_Interpolate = 0x00000001, - RigidbodyInterpolation2D__Enum_Extrapolate = 0x00000002, -}; - -#endif -struct RigidbodyInterpolation2D__Enum__Boxed { - struct RigidbodyInterpolation2D__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - RigidbodyInterpolation2D__Enum value; - #else - int32_t value; - #endif -}; - -#if defined(_CPLUSPLUS_) -enum class RigidbodySleepMode2D__Enum : int32_t { - NeverSleep = 0x00000000, - StartAwake = 0x00000001, - StartAsleep = 0x00000002, -}; - -#else -enum RigidbodySleepMode2D__Enum { - RigidbodySleepMode2D__Enum_NeverSleep = 0x00000000, - RigidbodySleepMode2D__Enum_StartAwake = 0x00000001, - RigidbodySleepMode2D__Enum_StartAsleep = 0x00000002, -}; - -#endif -struct RigidbodySleepMode2D__Enum__Boxed { - struct RigidbodySleepMode2D__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - RigidbodySleepMode2D__Enum value; - #else - int32_t value; - #endif -}; - -#if defined(_CPLUSPLUS_) -enum class CollisionDetectionMode2D__Enum : int32_t { - None = 0x00000000, - Discrete = 0x00000000, - Continuous = 0x00000001, -}; - -#else -enum CollisionDetectionMode2D__Enum { - CollisionDetectionMode2D__Enum_None = 0x00000000, - CollisionDetectionMode2D__Enum_Discrete = 0x00000000, - CollisionDetectionMode2D__Enum_Continuous = 0x00000001, -}; - -#endif -struct CollisionDetectionMode2D__Enum__Boxed { - struct CollisionDetectionMode2D__Enum__Class *klass; - MonitorData *monitor; - #if defined(_CPLUSPLUS_) - CollisionDetectionMode2D__Enum value; - #else - int32_t value; - #endif -}; - -struct PhysicsMaterial2D__Fields { - struct Object_1__Fields _; -}; - -struct PhysicsMaterial2D { - struct PhysicsMaterial2D__Class *klass; - MonitorData *monitor; - struct PhysicsMaterial2D__Fields fields; -}; - -struct WWWForm { - struct WWWForm__Class *klass; - MonitorData *monitor; -}; - -struct WWWTranscoder { - struct WWWTranscoder__Class *klass; - MonitorData *monitor; -}; - -struct TypeUtility { - struct TypeUtility__Class *klass; - MonitorData *monitor; -}; - #if defined(_CPLUSPLUS_) enum class XrResult__Enum_3 : int32_t { XR_SUCCESS = 0x00000000, @@ -1416769,11 +1530838,6 @@ struct XrSystemFacialTrackingPropertiesHTC__Boxed { struct XrSystemFacialTrackingPropertiesHTC fields; }; -struct RectTransformUtility { - struct RectTransformUtility__Class *klass; - MonitorData *monitor; -}; - #if defined(_CPLUSPLUS_) enum class ColliderMode__Enum : int32_t { None = 0x00000000, @@ -1416809,11 +1530873,6 @@ struct Input_1 { MonitorData *monitor; }; -struct SendMouseEvents { - struct SendMouseEvents__Class *klass; - MonitorData *monitor; -}; - struct UnityString { struct UnityString__Class *klass; MonitorData *monitor; @@ -1416868,18 +1530927,6 @@ struct XRManagementAnalytics_BuildEvent__Boxed { struct XRManagementAnalytics_BuildEvent fields; }; -struct VFXCameraXRSettings { - uint32_t viewTotal; - uint32_t viewCount; - uint32_t viewOffset; -}; - -struct VFXCameraXRSettings__Boxed { - struct VFXCameraXRSettings__Class *klass; - MonitorData *monitor; - struct VFXCameraXRSettings fields; -}; - #if defined(_CPLUSPLUS_) enum class RemoteConfigSettingsHelper_Tag__Enum : int32_t { kUnknown = 0x00000000, @@ -1417134,21 +1531181,6 @@ struct CrashReportHandler { MonitorData *monitor; }; -struct TrackedPoseDriverDataDescription { - struct TrackedPoseDriverDataDescription__Class *klass; - MonitorData *monitor; -}; - -struct SpriteShapeRenderer__Fields { - struct Renderer__Fields _; -}; - -struct SpriteShapeRenderer { - struct SpriteShapeRenderer__Class *klass; - MonitorData *monitor; - struct SpriteShapeRenderer__Fields fields; -}; - struct ThrowStub_3__Fields { struct ObjectDisposedException__Fields _; }; @@ -1417425,27 +1531457,6 @@ struct TypeNameParser__Class { struct TypeNameParser__VTable vtable; }; -struct Console_WindowsConsole__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct Console_WindowsConsole__StaticFields { - bool ctrlHandlerAdded; - struct Console_WindowsConsole_WindowsCancelHandler *cancelHandler; -}; - -struct Console_WindowsConsole__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct Console_WindowsConsole__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct Console_WindowsConsole__VTable vtable; -}; - struct Int64Enum__Enum__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1417674,25 +1531685,6 @@ struct MonoType__Class { struct MonoType__VTable vtable; }; -struct RuntimeArgumentHandle__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct RuntimeArgumentHandle__StaticFields { -}; - -struct RuntimeArgumentHandle__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct RuntimeArgumentHandle__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct RuntimeArgumentHandle__VTable vtable; -}; - struct TypeNames__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1417826,27 +1531818,6 @@ struct SecurityElementType__Enum__Class { struct SecurityElementType__Enum__VTable vtable; }; -struct WindowsPrincipal__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; - VirtualInvokeData get_Identity; - VirtualInvokeData get_Identity_1; -}; - -struct WindowsPrincipal__StaticFields { -}; - -struct WindowsPrincipal__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct WindowsPrincipal__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct WindowsPrincipal__VTable vtable; -}; - struct CADSerializer__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1418100,26 +1532071,6 @@ struct ConstantHelper__Class { struct ConstantHelper__VTable vtable; }; -struct Debugger__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct Debugger__StaticFields { - struct String *DefaultCategory; -}; - -struct Debugger__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct Debugger__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct Debugger__VTable vtable; -}; - struct Queue_QueueDebugView__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1420966,120 +1534917,6 @@ struct StartIPOptions__Enum__Class { struct StartIPOptions__Enum__VTable vtable; }; -struct Win32_IP_ADAPTER_ANYCAST_ADDRESS__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct Win32_IP_ADAPTER_ANYCAST_ADDRESS__StaticFields { -}; - -struct Win32_IP_ADAPTER_ANYCAST_ADDRESS__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct Win32_IP_ADAPTER_ANYCAST_ADDRESS__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct Win32_IP_ADAPTER_ANYCAST_ADDRESS__VTable vtable; -}; - -struct Win32_IP_ADAPTER_DNS_SERVER_ADDRESS__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct Win32_IP_ADAPTER_DNS_SERVER_ADDRESS__StaticFields { -}; - -struct Win32_IP_ADAPTER_DNS_SERVER_ADDRESS__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct Win32_IP_ADAPTER_DNS_SERVER_ADDRESS__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct Win32_IP_ADAPTER_DNS_SERVER_ADDRESS__VTable vtable; -}; - -struct Win32_IP_ADAPTER_MULTICAST_ADDRESS__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct Win32_IP_ADAPTER_MULTICAST_ADDRESS__StaticFields { -}; - -struct Win32_IP_ADAPTER_MULTICAST_ADDRESS__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct Win32_IP_ADAPTER_MULTICAST_ADDRESS__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct Win32_IP_ADAPTER_MULTICAST_ADDRESS__VTable vtable; -}; - -struct Win32_IP_ADAPTER_GATEWAY_ADDRESS__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct Win32_IP_ADAPTER_GATEWAY_ADDRESS__StaticFields { -}; - -struct Win32_IP_ADAPTER_GATEWAY_ADDRESS__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct Win32_IP_ADAPTER_GATEWAY_ADDRESS__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct Win32_IP_ADAPTER_GATEWAY_ADDRESS__VTable vtable; -}; - -struct Win32_IP_ADAPTER_WINS_SERVER_ADDRESS__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct Win32_IP_ADAPTER_WINS_SERVER_ADDRESS__StaticFields { -}; - -struct Win32_IP_ADAPTER_WINS_SERVER_ADDRESS__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct Win32_IP_ADAPTER_WINS_SERVER_ADDRESS__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct Win32_IP_ADAPTER_WINS_SERVER_ADDRESS__VTable vtable; -}; - -struct Win32_SOCKADDR__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct Win32_SOCKADDR__StaticFields { -}; - -struct Win32_SOCKADDR__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct Win32_SOCKADDR__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct Win32_SOCKADDR__VTable vtable; -}; - struct ProtocolFamily__Enum__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1421675,44 +1535512,6 @@ struct ThrowStub_1__Class { struct ThrowStub_1__VTable vtable; }; -struct PlayerController_Element_CompoundTypes__Enum__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; - VirtualInvokeData CompareTo; - VirtualInvokeData ToString_1; - VirtualInvokeData GetTypeCode; - VirtualInvokeData System_IConvertible_ToBoolean; - VirtualInvokeData System_IConvertible_ToChar; - VirtualInvokeData System_IConvertible_ToSByte; - VirtualInvokeData System_IConvertible_ToByte; - VirtualInvokeData System_IConvertible_ToInt16; - VirtualInvokeData System_IConvertible_ToUInt16; - VirtualInvokeData System_IConvertible_ToInt32; - VirtualInvokeData System_IConvertible_ToUInt32; - VirtualInvokeData System_IConvertible_ToInt64; - VirtualInvokeData System_IConvertible_ToUInt64; - VirtualInvokeData System_IConvertible_ToSingle; - VirtualInvokeData System_IConvertible_ToDouble; - VirtualInvokeData System_IConvertible_ToDecimal; - VirtualInvokeData System_IConvertible_ToDateTime; - VirtualInvokeData ToString_2; - VirtualInvokeData System_IConvertible_ToType; -}; - -struct PlayerController_Element_CompoundTypes__Enum__StaticFields { -}; - -struct PlayerController_Element_CompoundTypes__Enum__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct PlayerController_Element_CompoundTypes__Enum__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct PlayerController_Element_CompoundTypes__Enum__VTable vtable; -}; - struct MouseInputElement__Enum__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1422688,25 +1536487,6 @@ struct _PrivateImplementationDetails__8__Class { struct _PrivateImplementationDetails__8__VTable vtable; }; -struct InputActionAsset_WriteFileJson__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct InputActionAsset_WriteFileJson__StaticFields { -}; - -struct InputActionAsset_WriteFileJson__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct InputActionAsset_WriteFileJson__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct InputActionAsset_WriteFileJson__VTable vtable; -}; - struct InputActionState_InteractionState_Flags__Enum__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1422878,44 +1536658,6 @@ struct SwitchProControllerHID_SwitchMagicOutputReport_ReportType__Enum__Class { struct SwitchProControllerHID_SwitchMagicOutputReport_ReportType__Enum__VTable vtable; }; -struct HID_Simulation__Enum__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; - VirtualInvokeData CompareTo; - VirtualInvokeData ToString_1; - VirtualInvokeData GetTypeCode; - VirtualInvokeData System_IConvertible_ToBoolean; - VirtualInvokeData System_IConvertible_ToChar; - VirtualInvokeData System_IConvertible_ToSByte; - VirtualInvokeData System_IConvertible_ToByte; - VirtualInvokeData System_IConvertible_ToInt16; - VirtualInvokeData System_IConvertible_ToUInt16; - VirtualInvokeData System_IConvertible_ToInt32; - VirtualInvokeData System_IConvertible_ToUInt32; - VirtualInvokeData System_IConvertible_ToInt64; - VirtualInvokeData System_IConvertible_ToUInt64; - VirtualInvokeData System_IConvertible_ToSingle; - VirtualInvokeData System_IConvertible_ToDouble; - VirtualInvokeData System_IConvertible_ToDecimal; - VirtualInvokeData System_IConvertible_ToDateTime; - VirtualInvokeData ToString_2; - VirtualInvokeData System_IConvertible_ToType; -}; - -struct HID_Simulation__Enum__StaticFields { -}; - -struct HID_Simulation__Enum__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct HID_Simulation__Enum__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct HID_Simulation__Enum__VTable vtable; -}; - struct HID_Button__Enum__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1423516,69 +1537258,6 @@ struct _PrivateImplementationDetails__9__Class { struct _PrivateImplementationDetails__9__VTable vtable; }; -struct CodeIdentifier__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct CodeIdentifier__StaticFields { - struct CodeDomProvider_1 *csharp; -}; - -struct CodeIdentifier__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct CodeIdentifier__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct CodeIdentifier__VTable vtable; -}; - -struct TypeTranslator__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct TypeTranslator__StaticFields { - struct Hashtable *nameCache; - struct Hashtable *primitiveTypes; - struct Hashtable *primitiveArrayTypes; - struct Hashtable *nullableTypes; -}; - -struct TypeTranslator__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct TypeTranslator__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct TypeTranslator__VTable vtable; -}; - -struct XmlCustomFormatter__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct XmlCustomFormatter__StaticFields { - struct String__Array *allTimeFormats; -}; - -struct XmlCustomFormatter__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct XmlCustomFormatter__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct XmlCustomFormatter__VTable vtable; -}; - struct XmlReaderSection__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1424164,166 +1537843,6 @@ struct EventDebugger__Class { struct EventDebugger__VTable vtable; }; -struct VisualElementFactoryRegistry__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct VisualElementFactoryRegistry__StaticFields { - struct Dictionary_2_System_String_List_1_UnityEngine_UIElements_IUxmlFactory_ *s_Factories; -}; - -struct VisualElementFactoryRegistry__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct VisualElementFactoryRegistry__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct VisualElementFactoryRegistry__VTable vtable; -}; - -struct MeshBuilder_VertexClipEdge__Enum__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; - VirtualInvokeData CompareTo; - VirtualInvokeData ToString_1; - VirtualInvokeData GetTypeCode; - VirtualInvokeData System_IConvertible_ToBoolean; - VirtualInvokeData System_IConvertible_ToChar; - VirtualInvokeData System_IConvertible_ToSByte; - VirtualInvokeData System_IConvertible_ToByte; - VirtualInvokeData System_IConvertible_ToInt16; - VirtualInvokeData System_IConvertible_ToUInt16; - VirtualInvokeData System_IConvertible_ToInt32; - VirtualInvokeData System_IConvertible_ToUInt32; - VirtualInvokeData System_IConvertible_ToInt64; - VirtualInvokeData System_IConvertible_ToUInt64; - VirtualInvokeData System_IConvertible_ToSingle; - VirtualInvokeData System_IConvertible_ToDouble; - VirtualInvokeData System_IConvertible_ToDecimal; - VirtualInvokeData System_IConvertible_ToDateTime; - VirtualInvokeData ToString_2; - VirtualInvokeData System_IConvertible_ToType; -}; - -struct MeshBuilder_VertexClipEdge__Enum__StaticFields { -}; - -struct MeshBuilder_VertexClipEdge__Enum__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct MeshBuilder_VertexClipEdge__Enum__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct MeshBuilder_VertexClipEdge__Enum__VTable vtable; -}; - -struct RenderChain__Array__VTable { -}; - -struct RenderChain__Array__StaticFields { -}; - -struct RenderChain__Array__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct RenderChain__Array__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct RenderChain__Array__VTable vtable; -}; - -struct IEnumerator_1_UnityEngine_UIElements_UIR_RenderChain___VTable { - VirtualInvokeData get_Current; -}; - -struct IEnumerator_1_UnityEngine_UIElements_UIR_RenderChain___StaticFields { -}; - -struct IEnumerator_1_UnityEngine_UIElements_UIR_RenderChain___Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct IEnumerator_1_UnityEngine_UIElements_UIR_RenderChain___StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct IEnumerator_1_UnityEngine_UIElements_UIR_RenderChain___VTable vtable; -}; - -struct List_1_UnityEngine_UIElements_UIR_RenderChain___VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; - VirtualInvokeData get_Item; - VirtualInvokeData set_Item; - VirtualInvokeData IndexOf; - VirtualInvokeData Insert; - VirtualInvokeData RemoveAt; - VirtualInvokeData get_Count; - VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; - VirtualInvokeData Add; - VirtualInvokeData Clear; - VirtualInvokeData Contains; - VirtualInvokeData CopyTo; - VirtualInvokeData Remove; - VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; - VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; - VirtualInvokeData System_Collections_IList_get_Item; - VirtualInvokeData System_Collections_IList_set_Item; - VirtualInvokeData System_Collections_IList_Add; - VirtualInvokeData System_Collections_IList_Contains; - VirtualInvokeData Clear_1; - VirtualInvokeData System_Collections_IList_get_IsReadOnly; - VirtualInvokeData System_Collections_IList_get_IsFixedSize; - VirtualInvokeData System_Collections_IList_IndexOf; - VirtualInvokeData System_Collections_IList_Insert; - VirtualInvokeData System_Collections_IList_Remove; - VirtualInvokeData RemoveAt_1; - VirtualInvokeData System_Collections_ICollection_CopyTo; - VirtualInvokeData get_Count_1; - VirtualInvokeData System_Collections_ICollection_get_SyncRoot; - VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; - VirtualInvokeData get_Item_1; - VirtualInvokeData get_Count_2; -}; - -struct List_1_UnityEngine_UIElements_UIR_RenderChain___StaticFields { - struct RenderChain__Array *s_emptyArray; -}; - -struct List_1_UnityEngine_UIElements_UIR_RenderChain___Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct List_1_UnityEngine_UIElements_UIR_RenderChain___StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct List_1_UnityEngine_UIElements_UIR_RenderChain___VTable vtable; -}; - -struct RenderChain_RenderChainStaticIndexAllocator__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct RenderChain_RenderChainStaticIndexAllocator__StaticFields { - struct List_1_UnityEngine_UIElements_UIR_RenderChain_ *renderChains; -}; - -struct RenderChain_RenderChainStaticIndexAllocator__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct RenderChain_RenderChainStaticIndexAllocator__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct RenderChain_RenderChainStaticIndexAllocator__VTable vtable; -}; - struct _PrivateImplementationDetails_StaticArrayInitTypeSize_10_2__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1424573,28 +1538092,6 @@ struct Revive_ReviveType__Enum__Class { struct Revive_ReviveType__Enum__VTable vtable; }; -struct MathfInternal__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct MathfInternal__StaticFields { - float FloatMinNormal; - float FloatMinDenormal; - bool IsFlushToZeroEnabled; -}; - -struct MathfInternal__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct MathfInternal__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct MathfInternal__VTable vtable; -}; - struct ProfilerRecorderDebugView__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1424652,158 +1538149,6 @@ struct FileState__Enum__Class { struct FileState__Enum__VTable vtable; }; -struct AssetLoadingSubsystem__Enum__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; - VirtualInvokeData CompareTo; - VirtualInvokeData ToString_1; - VirtualInvokeData GetTypeCode; - VirtualInvokeData System_IConvertible_ToBoolean; - VirtualInvokeData System_IConvertible_ToChar; - VirtualInvokeData System_IConvertible_ToSByte; - VirtualInvokeData System_IConvertible_ToByte; - VirtualInvokeData System_IConvertible_ToInt16; - VirtualInvokeData System_IConvertible_ToUInt16; - VirtualInvokeData System_IConvertible_ToInt32; - VirtualInvokeData System_IConvertible_ToUInt32; - VirtualInvokeData System_IConvertible_ToInt64; - VirtualInvokeData System_IConvertible_ToUInt64; - VirtualInvokeData System_IConvertible_ToSingle; - VirtualInvokeData System_IConvertible_ToDouble; - VirtualInvokeData System_IConvertible_ToDecimal; - VirtualInvokeData System_IConvertible_ToDateTime; - VirtualInvokeData ToString_2; - VirtualInvokeData System_IConvertible_ToType; -}; - -struct AssetLoadingSubsystem__Enum__StaticFields { -}; - -struct AssetLoadingSubsystem__Enum__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct AssetLoadingSubsystem__Enum__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct AssetLoadingSubsystem__Enum__VTable vtable; -}; - -struct Priority__Enum__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; - VirtualInvokeData CompareTo; - VirtualInvokeData ToString_1; - VirtualInvokeData GetTypeCode; - VirtualInvokeData System_IConvertible_ToBoolean; - VirtualInvokeData System_IConvertible_ToChar; - VirtualInvokeData System_IConvertible_ToSByte; - VirtualInvokeData System_IConvertible_ToByte; - VirtualInvokeData System_IConvertible_ToInt16; - VirtualInvokeData System_IConvertible_ToUInt16; - VirtualInvokeData System_IConvertible_ToInt32; - VirtualInvokeData System_IConvertible_ToUInt32; - VirtualInvokeData System_IConvertible_ToInt64; - VirtualInvokeData System_IConvertible_ToUInt64; - VirtualInvokeData System_IConvertible_ToSingle; - VirtualInvokeData System_IConvertible_ToDouble; - VirtualInvokeData System_IConvertible_ToDecimal; - VirtualInvokeData System_IConvertible_ToDateTime; - VirtualInvokeData ToString_2; - VirtualInvokeData System_IConvertible_ToType; -}; - -struct Priority__Enum__StaticFields { -}; - -struct Priority__Enum__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct Priority__Enum__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct Priority__Enum__VTable vtable; -}; - -struct ProcessingState__Enum__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; - VirtualInvokeData CompareTo; - VirtualInvokeData ToString_1; - VirtualInvokeData GetTypeCode; - VirtualInvokeData System_IConvertible_ToBoolean; - VirtualInvokeData System_IConvertible_ToChar; - VirtualInvokeData System_IConvertible_ToSByte; - VirtualInvokeData System_IConvertible_ToByte; - VirtualInvokeData System_IConvertible_ToInt16; - VirtualInvokeData System_IConvertible_ToUInt16; - VirtualInvokeData System_IConvertible_ToInt32; - VirtualInvokeData System_IConvertible_ToUInt32; - VirtualInvokeData System_IConvertible_ToInt64; - VirtualInvokeData System_IConvertible_ToUInt64; - VirtualInvokeData System_IConvertible_ToSingle; - VirtualInvokeData System_IConvertible_ToDouble; - VirtualInvokeData System_IConvertible_ToDecimal; - VirtualInvokeData System_IConvertible_ToDateTime; - VirtualInvokeData ToString_2; - VirtualInvokeData System_IConvertible_ToType; -}; - -struct ProcessingState__Enum__StaticFields { -}; - -struct ProcessingState__Enum__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct ProcessingState__Enum__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct ProcessingState__Enum__VTable vtable; -}; - -struct FileReadType__Enum__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; - VirtualInvokeData CompareTo; - VirtualInvokeData ToString_1; - VirtualInvokeData GetTypeCode; - VirtualInvokeData System_IConvertible_ToBoolean; - VirtualInvokeData System_IConvertible_ToChar; - VirtualInvokeData System_IConvertible_ToSByte; - VirtualInvokeData System_IConvertible_ToByte; - VirtualInvokeData System_IConvertible_ToInt16; - VirtualInvokeData System_IConvertible_ToUInt16; - VirtualInvokeData System_IConvertible_ToInt32; - VirtualInvokeData System_IConvertible_ToUInt32; - VirtualInvokeData System_IConvertible_ToInt64; - VirtualInvokeData System_IConvertible_ToUInt64; - VirtualInvokeData System_IConvertible_ToSingle; - VirtualInvokeData System_IConvertible_ToDouble; - VirtualInvokeData System_IConvertible_ToDecimal; - VirtualInvokeData System_IConvertible_ToDateTime; - VirtualInvokeData ToString_2; - VirtualInvokeData System_IConvertible_ToType; -}; - -struct FileReadType__Enum__StaticFields { -}; - -struct FileReadType__Enum__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct FileReadType__Enum__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct FileReadType__Enum__VTable vtable; -}; - struct AsyncReadManagerRequestMetric__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1424823,66 +1538168,6 @@ struct AsyncReadManagerRequestMetric__Class { struct AsyncReadManagerRequestMetric__VTable vtable; }; -struct ProcessingState__Enum__Array__VTable { -}; - -struct ProcessingState__Enum__Array__StaticFields { -}; - -struct ProcessingState__Enum__Array__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct ProcessingState__Enum__Array__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct ProcessingState__Enum__Array__VTable vtable; -}; - -struct FileReadType__Enum__Array__VTable { -}; - -struct FileReadType__Enum__Array__StaticFields { -}; - -struct FileReadType__Enum__Array__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct FileReadType__Enum__Array__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct FileReadType__Enum__Array__VTable vtable; -}; - -struct Priority__Enum__Array__VTable { -}; - -struct Priority__Enum__Array__StaticFields { -}; - -struct Priority__Enum__Array__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct Priority__Enum__Array__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct Priority__Enum__Array__VTable vtable; -}; - -struct AssetLoadingSubsystem__Enum__Array__VTable { -}; - -struct AssetLoadingSubsystem__Enum__Array__StaticFields { -}; - -struct AssetLoadingSubsystem__Enum__Array__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct AssetLoadingSubsystem__Enum__Array__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct AssetLoadingSubsystem__Enum__Array__VTable vtable; -}; - struct AsyncReadManagerMetricsFilters__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1425185,33 +1538470,6 @@ struct SortingLayer__Class { struct SortingLayer__VTable vtable; }; -struct Application__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct Application__StaticFields { - struct Application_LowMemoryCallback *lowMemory; - struct Application_LogCallback *s_LogCallbackHandler; - struct Application_LogCallback *s_LogCallbackHandlerThreaded; - struct Action_1_Boolean_ *focusChanged; - struct Action_1_String_ *deepLinkActivated; - struct Func_1_Boolean_ *wantsToQuit; - struct Action *quitting; - struct Action *unloading; -}; - -struct Application__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct Application__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct Application__VTable vtable; -}; - struct Caching__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1425231,46 +1538489,6 @@ struct Caching__Class { struct Caching__VTable vtable; }; -struct FlareLayer__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct FlareLayer__StaticFields { -}; - -struct FlareLayer__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct FlareLayer__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct FlareLayer__VTable vtable; -}; - -struct Debug_2__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct Debug_2__StaticFields { - struct ILogger *s_DefaultLogger; - struct ILogger *s_Logger; -}; - -struct Debug_2__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct Debug_2__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct Debug_2__VTable vtable; -}; - struct GeometryUtility__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1425347,27 +1538565,6 @@ struct Screen__Class { struct Screen__VTable vtable; }; -struct Graphics__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct Graphics__StaticFields { - int32_t kMaxDrawMeshInstanceCount; - struct Dictionary_2_System_Int32_UnityEngine_RenderInstancedDataLayout_ *s_RenderInstancedDataLayouts; -}; - -struct Graphics__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct Graphics__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct Graphics__VTable vtable; -}; - struct GL__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1425406,27 +1538603,6 @@ struct LightmapSettings__Class { struct LightmapSettings__VTable vtable; }; -struct LightProbes__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct LightProbes__StaticFields { - struct Action *tetrahedralizationCompleted; - struct Action *needsRetetrahedralization; -}; - -struct LightProbes__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct LightProbes__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct LightProbes__VTable vtable; -}; - struct QualitySettings__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1425579,26 +1538755,6 @@ struct ColorUtility__Class { struct ColorUtility__VTable vtable; }; -struct Mathf__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct Mathf__StaticFields { - float Epsilon; -}; - -struct Mathf__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct Mathf__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct Mathf__VTable vtable; -}; - struct PlayerPrefs__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1425656,58 +1538812,6 @@ struct Resources__Class { struct Resources__VTable vtable; }; -struct DisallowMultipleComponent__Array__VTable { -}; - -struct DisallowMultipleComponent__Array__StaticFields { -}; - -struct DisallowMultipleComponent__Array__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct DisallowMultipleComponent__Array__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct DisallowMultipleComponent__Array__VTable vtable; -}; - -struct ExecuteInEditMode__Array__VTable { -}; - -struct ExecuteInEditMode__Array__StaticFields { -}; - -struct ExecuteInEditMode__Array__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct ExecuteInEditMode__Array__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct ExecuteInEditMode__Array__VTable vtable; -}; - -struct AttributeHelperEngine__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct AttributeHelperEngine__StaticFields { - struct DisallowMultipleComponent__Array *_disallowMultipleComponentArray; - struct ExecuteInEditMode__Array *_executeInEditModeArray; - struct RequireComponent__Array *_requireComponentArray; -}; - -struct AttributeHelperEngine__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct AttributeHelperEngine__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct AttributeHelperEngine__VTable vtable; -}; - struct AssemblyIsEditorAssembly__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1425923,43 +1539027,23 @@ struct SystemInfo_1__Class { struct SystemInfo_1__VTable vtable; }; -struct SystemClock__VTable { +struct Time_1__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; VirtualInvokeData GetHashCode; VirtualInvokeData ToString; }; -struct SystemClock__StaticFields { - struct DateTime s_Epoch; +struct Time_1__StaticFields { }; -struct SystemClock__Class { +struct Time_1__Class { Il2CppClass_0 _0; Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct SystemClock__StaticFields *static_fields; + struct Time_1__StaticFields *static_fields; const Il2CppRGCTXData *rgctx_data; Il2CppClass_1 _1; - struct SystemClock__VTable vtable; -}; - -struct Time__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct Time__StaticFields { -}; - -struct Time__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct Time__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct Time__VTable vtable; + struct Time_1__VTable vtable; }; struct APIUpdaterRuntimeHelpers__VTable { @@ -1426019,56 +1539103,6 @@ struct SpriteBone__Class { struct SpriteBone__VTable vtable; }; -struct Action_2_String_Action_1_UnityEngine_U2D_SpriteAtlas___VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; - VirtualInvokeData Clone; - VirtualInvokeData GetObjectData; - VirtualInvokeData DynamicInvokeImpl; - VirtualInvokeData Clone_1; - VirtualInvokeData GetMethodImpl; - VirtualInvokeData GetObjectData_1; - VirtualInvokeData GetInvocationList; - VirtualInvokeData CombineImpl; - VirtualInvokeData RemoveImpl; - VirtualInvokeData Invoke; -}; - -struct Action_2_String_Action_1_UnityEngine_U2D_SpriteAtlas___StaticFields { -}; - -struct Action_2_String_Action_1_UnityEngine_U2D_SpriteAtlas___Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct Action_2_String_Action_1_UnityEngine_U2D_SpriteAtlas___StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct Action_2_String_Action_1_UnityEngine_U2D_SpriteAtlas___VTable vtable; -}; - -struct SpriteAtlasManager__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct SpriteAtlasManager__StaticFields { - struct Action_2_String_Action_1_UnityEngine_U2D_SpriteAtlas_ *atlasRequested; - struct Action_1_UnityEngine_U2D_SpriteAtlas_ *atlasRegistered; -}; - -struct SpriteAtlasManager__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct SpriteAtlasManager__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct SpriteAtlasManager__VTable vtable; -}; - struct Profiler_1__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1426088,115 +1539122,6 @@ struct Profiler_1__Class { struct Profiler_1__VTable vtable; }; -struct Action_2_String_Boolean___VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; - VirtualInvokeData Clone; - VirtualInvokeData GetObjectData; - VirtualInvokeData DynamicInvokeImpl; - VirtualInvokeData Clone_1; - VirtualInvokeData GetMethodImpl; - VirtualInvokeData GetObjectData_1; - VirtualInvokeData GetInvocationList; - VirtualInvokeData CombineImpl; - VirtualInvokeData RemoveImpl; - VirtualInvokeData Invoke; -}; - -struct Action_2_String_Boolean___StaticFields { -}; - -struct Action_2_String_Boolean___Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct Action_2_String_Boolean___StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct Action_2_String_Boolean___VTable vtable; -}; - -struct Action_3_String_Boolean_UnityEngine_Profiling_Experimental_DebugScreenCapture___VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; - VirtualInvokeData Clone; - VirtualInvokeData GetObjectData; - VirtualInvokeData DynamicInvokeImpl; - VirtualInvokeData Clone_1; - VirtualInvokeData GetMethodImpl; - VirtualInvokeData GetObjectData_1; - VirtualInvokeData GetInvocationList; - VirtualInvokeData CombineImpl; - VirtualInvokeData RemoveImpl; - VirtualInvokeData Invoke; -}; - -struct Action_3_String_Boolean_UnityEngine_Profiling_Experimental_DebugScreenCapture___StaticFields { -}; - -struct Action_3_String_Boolean_UnityEngine_Profiling_Experimental_DebugScreenCapture___Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct Action_3_String_Boolean_UnityEngine_Profiling_Experimental_DebugScreenCapture___StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct Action_3_String_Boolean_UnityEngine_Profiling_Experimental_DebugScreenCapture___VTable vtable; -}; - -struct Action_1_UnityEngine_Profiling_Memory_Experimental_MetaData___VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; - VirtualInvokeData Clone; - VirtualInvokeData GetObjectData; - VirtualInvokeData DynamicInvokeImpl; - VirtualInvokeData Clone_1; - VirtualInvokeData GetMethodImpl; - VirtualInvokeData GetObjectData_1; - VirtualInvokeData GetInvocationList; - VirtualInvokeData CombineImpl; - VirtualInvokeData RemoveImpl; - VirtualInvokeData Invoke; -}; - -struct Action_1_UnityEngine_Profiling_Memory_Experimental_MetaData___StaticFields { -}; - -struct Action_1_UnityEngine_Profiling_Memory_Experimental_MetaData___Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct Action_1_UnityEngine_Profiling_Memory_Experimental_MetaData___StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct Action_1_UnityEngine_Profiling_Memory_Experimental_MetaData___VTable vtable; -}; - -struct MemoryProfiler__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct MemoryProfiler__StaticFields { - struct Action_2_String_Boolean_ *m_SnapshotFinished; - struct Action_3_String_Boolean_UnityEngine_Profiling_Experimental_DebugScreenCapture_ *m_SaveScreenshotToDisk; - struct Action_1_UnityEngine_Profiling_Memory_Experimental_MetaData_ *createMetaData; -}; - -struct MemoryProfiler__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct MemoryProfiler__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct MemoryProfiler__VTable vtable; -}; - struct UnityEventTools__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1426216,29 +1539141,6 @@ struct UnityEventTools__Class { struct UnityEventTools__VTable vtable; }; -struct SceneManager__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct SceneManager__StaticFields { - bool s_AllowLoadScene; - struct UnityAction_2_UnityEngine_SceneManagement_Scene_UnityEngine_SceneManagement_LoadSceneMode_ *sceneLoaded; - struct UnityAction_1_UnityEngine_SceneManagement_Scene_ *sceneUnloaded; - struct UnityAction_2_UnityEngine_SceneManagement_Scene_UnityEngine_SceneManagement_Scene_ *activeSceneChanged; -}; - -struct SceneManager__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct SceneManager__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct SceneManager__VTable vtable; -}; - struct PlayerLoopSystemInternal__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1428823,26 +1541725,6 @@ struct GraphicsSettings__Class { struct GraphicsSettings__VTable vtable; }; -struct OnDemandRendering__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct OnDemandRendering__StaticFields { - int32_t m_RenderFrameInterval; -}; - -struct OnDemandRendering__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct OnDemandRendering__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct OnDemandRendering__VTable vtable; -}; - struct SpriteIntermediateRendererInfo__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1429038,25 +1541920,6 @@ struct jYewjvsiEBFWDKQkYgaYsBDZXKIP__Class { struct jYewjvsiEBFWDKQkYgaYsBDZXKIP__VTable vtable; }; -struct JRmFfGvKMkHFhkxbaEUMFVGagwzEc_ouwTfAcYoAaLZDOncmZQZbWsgBDx_bMrAxByDhWfvlfgRebXWLYWosqiWA__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct JRmFfGvKMkHFhkxbaEUMFVGagwzEc_ouwTfAcYoAaLZDOncmZQZbWsgBDx_bMrAxByDhWfvlfgRebXWLYWosqiWA__StaticFields { -}; - -struct JRmFfGvKMkHFhkxbaEUMFVGagwzEc_ouwTfAcYoAaLZDOncmZQZbWsgBDx_bMrAxByDhWfvlfgRebXWLYWosqiWA__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct JRmFfGvKMkHFhkxbaEUMFVGagwzEc_ouwTfAcYoAaLZDOncmZQZbWsgBDx_bMrAxByDhWfvlfgRebXWLYWosqiWA__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct JRmFfGvKMkHFhkxbaEUMFVGagwzEc_ouwTfAcYoAaLZDOncmZQZbWsgBDx_bMrAxByDhWfvlfgRebXWLYWosqiWA__VTable vtable; -}; - struct ZMqjCYehEKqIQMMhejVBKtVTTPMf_qBiftvlXaQHfQBCfczMBgSEUBnycb__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1429076,116 +1541939,6 @@ struct ZMqjCYehEKqIQMMhejVBKtVTTPMf_qBiftvlXaQHfQBCfczMBgSEUBnycb__Class { struct ZMqjCYehEKqIQMMhejVBKtVTTPMf_qBiftvlXaQHfQBCfczMBgSEUBnycb__VTable vtable; }; -struct qUaeyIgVCufmDzatlipvlpwBwlinA__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct qUaeyIgVCufmDzatlipvlpwBwlinA__StaticFields { - void *nWgmIfStADjXXRRnImZxJWCgpXrv; - int32_t kvpvtPRKPyjDcaWHxtEBFwPvKKMBA; - int32_t nTdCsunstswpnWrtwfmIyWojKith; - int32_t spJSVqWdYcrdAiTbhdhpLKWlZaVn; - int32_t VxGCGMYSQBPLLZQFDqkpXZibpNZe; - int32_t rLfMftMwkqaEiSAizZCDgERwdfTW; - int32_t TktDAQexuWhzLUmULpmUtIRiQZJK; - int32_t NPrwffECgRixoAnGApOtrNOWRIsM; - int32_t FiFYJuPzlaezYWdKKEdLkfWHxSArA; - int32_t oMguQWxiIkvPCtqFdipsVblkkCyI; - int32_t hkqLLeurudVGapDemhtYvEmuJdvV; - int32_t EcFeZRaXvrtNHUqHAXKWaPTgJNGZA; - int32_t NCKBDNbowdRMooSkdHZhjuYWSNXS; - int32_t kmpXcZQglbDeXlmdAsbwaUfZhnaB; - int32_t YcGIObJyCwpvefcZGRJPDoyiaojVA; - int32_t prEvLVkPVZheIjKiyTPkIauNgWSiA; - int32_t miMqGDrJlyiNtFlYozemQDEJkQzfA; - int32_t jDhVkRKngRfqIRVFOjpGBzTUHZvqA; - int32_t HIJdTEhzFPQCRAKcuRIvGWbcfAGhc; - int32_t XGAbQFHgQVcFDZxwrzSeroRlEHJGb; - int32_t SdNFwgOOfbvnSJrGcpXgyQVTrlLp; - int32_t dCmGUlAggTWGLNMaHAqUeAxjVseac; - int32_t VosilkNbTqfmuJKdtvashOaTdalfb; - int32_t PBnOvHiexDSFpswKatXpZSEbVWQU; - int32_t TaiIquBTcTVTukivXpEFtpXTpDtE; - int32_t qtEdYYNiWpDrveteUYNWFmlGLOUFA; - int32_t qCAndAIkwmcjJpnHBUtjZsCejJoj; - int32_t EWhfCbOynxCUfkxlDrxBMzKHGhFM; - int32_t WARAGoAchmcAnYUGIoeWsTwzVrhQA; - int32_t TCRuNRroojbrigEOXDkcdISAqUvg; - int32_t diCHSSQuOoujALkhgvaYobZvVxgS; - int32_t OiVFcsAmQSVhXkDYXQFKaSdxRbhDb; - int32_t uioqfPBSmXxodDrIUjkAamHXXDBl; - int32_t MWqvvZLPHeRwGvEJcHcfZjXylrST; - int32_t MYGpAwGqLGrdavDzpbuyQdqsTEnr; - int32_t CJUuGBRfFOgybHYJtwDIWMVSpQQz; - int32_t vsTEtGBkgSHvuElfjSkvLyWaOsbC; - int32_t nrlpyygbBmdNAnhdbnpSgHPtbUfw; - int32_t FswocmieuMMvsXvuWevaciQpfgAM; - int32_t XiauQeEwJopphATGIxNCFLjMVvPI; - int32_t CvJYdfqgwgxxkhFzOTpXGDixbgcs; - int32_t jCaiXLhBAbblgAMKZTjVIbbHHTojB; - int32_t hcgtkTDzWGpCUsUtkNlvHLgtWnQP; - int32_t ILriYFrBcHslQdVvYHAXQbRnGFEP; - int32_t UdCERPVDGTofnYnzKZsZJljiewer; - int32_t XTFdbmXygCuxCJEUEuMjffJGHkbF; - int32_t GhrQdipJUdgExAtnRHJzCGQjrwoCc; - int32_t HUMZLFwgNUcJibJjFPujaJNmINYdA; - int32_t fkiZUKkheNISgepShefmWTDOVBLGA; - int32_t OcYSVPpJooOSqVvXtwQJrbSfapNA; - int32_t nFHAxegLwAsNWhYVFjXrqaxxOvnk; - int32_t pPbbMIURQYNPErULqdmgmGKnWOry; - int32_t EbaKgosutOBiHWIOjjlwPiEWaqoz; - int32_t GjvGsjCbFPBaGLAyaHVguIIvoXub; - int32_t rCddCBhYvLllHCRSrhiGbTlwNvYF; - int32_t oErGlpZdprAwOdsBAjCuEQLTGolC; - int32_t PSwfiyPDJNDvAqLRsgRaawFldOFEb; - int32_t gahvYKnJOTyQXNfmNKgUgyCWqtJe; - int32_t qSztJLIuRzWvJWdWVUruwXlEIAXO; - int32_t mIfvPJKKRDYDOxIGBCzIXipbVoUW; - int32_t BSqXUSrpfWAQSFVZieblXPWBqYwoA; - int32_t DpNVrmwvSHKTfAfSCBGRJxjbiwSPA; - int32_t HSnaxsfinWYzEUdgxCOlvMsFAeEt; - int32_t GsJlIbvqggQfIQBaPDBSiZjPJgagA; - int32_t amkpRVuoEUjikbUWfOBXBrpvsfdaA; - int32_t KnkhQymyPKFjhYJAXbKKgwuyWxNV; - int32_t JCnuFyxPrJZNzYPcBvPihHVHmHOR; - int32_t VanVSavIlukHiOUEeCDXJcoCrhan; - int32_t RVEGeugRZehfplnGKXXnRFRptxGm; - int32_t oYGbRpgXpkcqRLOaQkMOwyKIQEPfA; - int32_t sigTmQzEvZghhNJjIUWmHZsYrKnN; - int32_t OyNWULzFLVtHYzWeJEUXhfJYjuvb; - int32_t gTZLbflrKBeisrwanKdxoQBGAHpx; - int32_t XOLYJsRYaxBBdDTjYhPvOhlKegkcA; - int32_t bqJXfSSuPUSmwTncNXbqQRhtEHAr; - int32_t vrqIQlpaAitZXsgTvgfhaifFiPNW; - int32_t EVvCwytxvtVrjFAiXpcZGZkLEjXy; - int32_t iQvEYDFlUjDDNfrwUeTvEAffXAifb; - int32_t udbQkQyqbyQSMTLqxyQxskObWAFj; - int32_t DZTlgeQRhIBIfseEGIxBfPzBtaEm; - int32_t xFXUVBSDXEWUdQBKfSgiwxdJltfp; - int32_t hsrFELIFDwtxfXWDoGSQfOUmlSKVA; - int32_t amKhmxCFbywGVggzJBaziWGfWQnNA; - int32_t HBAGLAiEDbLIRGMJkFVvSYHkQfYgB; - int32_t ViveYikFpmcGGedTjlVpowkNvyZFA; - int32_t itmdsxFpphDwSukrOVsnjhJGnPtiA; - uint32_t IOfycPHFJhkrrkEPsobeSYwkaIWX; - uint32_t BrHMloFalMXDFbNUsgoRwRyNeIEB; - uint32_t uMCCMUiiZTxQtMalxSlDHjBqaexj; - uint32_t wIcupKEpOALGtcmULoMzHIsdCsMj; - uint32_t ZzvipMRqWPAuixAWaWRiFRizUGST; -}; - -struct qUaeyIgVCufmDzatlipvlpwBwlinA__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct qUaeyIgVCufmDzatlipvlpwBwlinA__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct qUaeyIgVCufmDzatlipvlpwBwlinA__VTable vtable; -}; - struct WEPwwhsQpvkXBmQtlecPERdWRTWF__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1429205,54 +1541958,6 @@ struct WEPwwhsQpvkXBmQtlecPERdWRTWF__Class { struct WEPwwhsQpvkXBmQtlecPERdWRTWF__VTable vtable; }; -struct MvuBcSFavsboGCnLcnrkzRubbOCaB__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct MvuBcSFavsboGCnLcnrkzRubbOCaB__StaticFields { - void *HiabPowUiAquCNyUMIPsfaAIjRms; -}; - -struct MvuBcSFavsboGCnLcnrkzRubbOCaB__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct MvuBcSFavsboGCnLcnrkzRubbOCaB__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct MvuBcSFavsboGCnLcnrkzRubbOCaB__VTable vtable; -}; - -struct exarigLDNtDEaYVUwCksJVldldinA__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct exarigLDNtDEaYVUwCksJVldldinA__StaticFields { - bool AgApvdIyIbNSKfpQhCYgBEKQEEgd; - #if defined(_CPLUSPLUS_) - cOkweYcnkHdyWuqEdbZVuivClOnK__Enum FRKBkkyKnWfAkgDpDAVszrjHJGoEb; - #else - int32_t FRKBkkyKnWfAkgDpDAVszrjHJGoEb; - #endif - struct String *lNEkHiTcgjeLjuLLtTrVJLEIeKeCA; - struct exarigLDNtDEaYVUwCksJVldldinA_HHzyMkQCLNpKeBssvgdeLTnJUXXA *BFcAigcCcGYjbGnPiMCtDpWJYGHBc; - struct rpxIYXtczSAEpdhyrDEYcJoufCaG QFQGGChOMHXqWFolvVdqnfkMQTgSA; -}; - -struct exarigLDNtDEaYVUwCksJVldldinA__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct exarigLDNtDEaYVUwCksJVldldinA__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct exarigLDNtDEaYVUwCksJVldldinA__VTable vtable; -}; - struct bZBnvomNtURhFhLiXePYBDaJfKxgA__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1429272,44 +1541977,6 @@ struct bZBnvomNtURhFhLiXePYBDaJfKxgA__Class { struct bZBnvomNtURhFhLiXePYBDaJfKxgA__VTable vtable; }; -struct gEPJIdTJwmJwoXPlEpTuwVGlPAjJ__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct gEPJIdTJwmJwoXPlEpTuwVGlPAjJ__StaticFields { - struct mpaLPxHPAdcoRcKwvOFTaxXvswum *xiYaMMcpqDLHTkfjENpSyZFtfPTY; - void *GiHUlvMnNeMDRqOtcjSxeFRnbmgS; - bool bdKzAteQZztjlAoYfwrXDLRdeoAkA; - void *EpsHAdYfhsUtnwhoKTClOfdmJrqD; - bool uBInWTDdnAlnLwxmJlELEgnNBBsQ; - int32_t AJbsVKgdGMuvNnoRtfXaQTfZoigh; - int32_t fydZuuTkYzISeDhevGETxdQLaoSw; - struct NativeBuffer *tIwChNjIDTfpTjyRkFRhKPXnmdNk; - bool RivwJxiCRojufThHkoyvmYlpnUYf; - struct Byte__Array *JyknIJOuBJKpWtdMBSchltFxkbmJ; - struct UInt32__Array *QsZeDxwQWNvmyVoMuEmSFrKWZavH; - struct UInt32__Array *nYBpRGiMcQZCMYWgfCnqUePzHfjA; - bool zTlciFIuJVABsMqipIqIFgGoOAjc; - struct ForwardRawInputEventsToUnityDelegate *tfRvjoesRXSlqCgboVRgnapokzqv; - struct Action_2_KGpfpVumzcziOxJRZbURZTEAJARe_Double_ *kFhARWsuYqFWLaIoyanOGhkIwHxOB; - struct Action_2_fsRiDBEERnIQlMGEHJRgRRiEbYqF_Double_ *xuXOYzgGlfitnLoOSkWchiWQIcJI; - struct Action_2_HAtiKZlBnjTWOWEtNgXBPPGKUhuP_Double_ *LvdAWCdCmkNphpVBonViAMdgCyYcc; - struct Action_1_IntPtr_ *PxWfWPTmeOcVGsPZmYOJJEwDbsVg; - struct Action *KXODKElJjUleYlljTtxpOGHEoioj; -}; - -struct gEPJIdTJwmJwoXPlEpTuwVGlPAjJ__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct gEPJIdTJwmJwoXPlEpTuwVGlPAjJ__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct gEPJIdTJwmJwoXPlEpTuwVGlPAjJ__VTable vtable; -}; - struct CqebESBkqJazKAUIAPlqHgaRUsJTB__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1429348,33 +1542015,6 @@ struct DlrhtmLFvsBstGSvZyvbkFOsYbacA__Class { struct DlrhtmLFvsBstGSvZyvbkFOsYbacA__VTable vtable; }; -struct JijFgftvqSztIyGNBBwSiwjdSDyIA__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct JijFgftvqSztIyGNBBwSiwjdSDyIA__StaticFields { - struct Guid QihmogkIEufeCKHPLYxpGezSkOHS; - struct List_1_GTJWYMCBWUFmGJGFrEFOMdusHKKP_ *PGfdeVVFmUbJGkNHldoBKUTbDwuzA; - struct List_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_aARKFpUaUUrcdBKPdVtCsJGvzXqV_ *HLksRRONdFHTmbaKRMvXasatcfrP; - struct List_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_eimtspmJcsdofHxwCCFFcMXmeJnhb_ *ROBMxPfhhbJiuNBegWSBavoLOzjR; - struct List_1_JijFgftvqSztIyGNBBwSiwjdSDyIA_lbbdzifXzYxJwLtoFwepZkcjaeux_ *fkPFjRbSiJgEIiGMmHxyMLfTzYwY; - struct bcOmlpGgwVCrecHKRjwdQzyizLQGA_zqrMMRRVlnxYQKhlRpOFkRpFWHlB SllVUsraGkstrtensGAJybxZJRO; - struct bcOmlpGgwVCrecHKRjwdQzyizLQGA_NezMPkGUwSkAcIJPJQDqPKqwcDUr CiGrPhZBHyORUguNPOcxfCgCDqjC; - struct NativeBuffer *WPsOCnXnYRBeukMYYKDpyPZdukfA; -}; - -struct JijFgftvqSztIyGNBBwSiwjdSDyIA__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct JijFgftvqSztIyGNBBwSiwjdSDyIA__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct JijFgftvqSztIyGNBBwSiwjdSDyIA__VTable vtable; -}; - struct _PrivateImplementationDetails_StaticArrayInitTypeSize_88_1__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1430939,44 +1543579,6 @@ struct _PrivateImplementationDetails__17__Class { struct _PrivateImplementationDetails__17__VTable vtable; }; -struct UnitySettings_DotNetVersion__Enum__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; - VirtualInvokeData CompareTo; - VirtualInvokeData ToString_1; - VirtualInvokeData GetTypeCode; - VirtualInvokeData System_IConvertible_ToBoolean; - VirtualInvokeData System_IConvertible_ToChar; - VirtualInvokeData System_IConvertible_ToSByte; - VirtualInvokeData System_IConvertible_ToByte; - VirtualInvokeData System_IConvertible_ToInt16; - VirtualInvokeData System_IConvertible_ToUInt16; - VirtualInvokeData System_IConvertible_ToInt32; - VirtualInvokeData System_IConvertible_ToUInt32; - VirtualInvokeData System_IConvertible_ToInt64; - VirtualInvokeData System_IConvertible_ToUInt64; - VirtualInvokeData System_IConvertible_ToSingle; - VirtualInvokeData System_IConvertible_ToDouble; - VirtualInvokeData System_IConvertible_ToDecimal; - VirtualInvokeData System_IConvertible_ToDateTime; - VirtualInvokeData ToString_2; - VirtualInvokeData System_IConvertible_ToType; -}; - -struct UnitySettings_DotNetVersion__Enum__StaticFields { -}; - -struct UnitySettings_DotNetVersion__Enum__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct UnitySettings_DotNetVersion__Enum__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct UnitySettings_DotNetVersion__Enum__VTable vtable; -}; - struct AxisSelections__Enum__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1431224,25 +1543826,6 @@ struct BoltBuildType__Enum__Class { struct BoltBuildType__Enum__VTable vtable; }; -struct AutoLoadSceneInfo__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct AutoLoadSceneInfo__StaticFields { -}; - -struct AutoLoadSceneInfo__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct AutoLoadSceneInfo__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct AutoLoadSceneInfo__VTable vtable; -}; - struct Image_OriginHorizontal__Enum__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1431646,559 +1544229,6 @@ struct InitV3Flags__Enum__Class { struct InitV3Flags__Enum__VTable vtable; }; -struct Dictionary_2_TKey_TValue_Entry_System_Type_ExitGames_Client_Photon_CustomType___VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Type_ExitGames_Client_Photon_CustomType___StaticFields { -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Type_ExitGames_Client_Photon_CustomType___Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct Dictionary_2_TKey_TValue_Entry_System_Type_ExitGames_Client_Photon_CustomType___StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct Dictionary_2_TKey_TValue_Entry_System_Type_ExitGames_Client_Photon_CustomType___VTable vtable; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Type_ExitGames_Client_Photon_CustomType___Array__VTable { -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Type_ExitGames_Client_Photon_CustomType___Array__StaticFields { -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Type_ExitGames_Client_Photon_CustomType___Array__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct Dictionary_2_TKey_TValue_Entry_System_Type_ExitGames_Client_Photon_CustomType___Array__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct Dictionary_2_TKey_TValue_Entry_System_Type_ExitGames_Client_Photon_CustomType___Array__VTable vtable; -}; - -struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_ExitGames_Client_Photon_CustomType___VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; - VirtualInvokeData get_Count; - VirtualInvokeData System_Collections_Generic_ICollection_TKey__get_IsReadOnly; - VirtualInvokeData System_Collections_Generic_ICollection_TKey__Add; - VirtualInvokeData System_Collections_Generic_ICollection_TKey__Clear; - VirtualInvokeData System_Collections_Generic_ICollection_TKey__Contains; - VirtualInvokeData CopyTo; - VirtualInvokeData System_Collections_Generic_ICollection_TKey__Remove; - VirtualInvokeData System_Collections_Generic_IEnumerable_TKey__GetEnumerator; - VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; - VirtualInvokeData System_Collections_ICollection_CopyTo; - VirtualInvokeData get_Count_1; - VirtualInvokeData System_Collections_ICollection_get_SyncRoot; - VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; - VirtualInvokeData get_Count_2; -}; - -struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_ExitGames_Client_Photon_CustomType___StaticFields { -}; - -struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_ExitGames_Client_Photon_CustomType___Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_ExitGames_Client_Photon_CustomType___StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct Dictionary_2_TKey_TValue_KeyCollection_System_Type_ExitGames_Client_Photon_CustomType___VTable vtable; -}; - -struct CustomType__Array__VTable { -}; - -struct CustomType__Array__StaticFields { -}; - -struct CustomType__Array__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct CustomType__Array__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct CustomType__Array__VTable vtable; -}; - -struct IEnumerator_1_ExitGames_Client_Photon_CustomType___VTable { - VirtualInvokeData get_Current; -}; - -struct IEnumerator_1_ExitGames_Client_Photon_CustomType___StaticFields { -}; - -struct IEnumerator_1_ExitGames_Client_Photon_CustomType___Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct IEnumerator_1_ExitGames_Client_Photon_CustomType___StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct IEnumerator_1_ExitGames_Client_Photon_CustomType___VTable vtable; -}; - -struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_ExitGames_Client_Photon_CustomType___VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; - VirtualInvokeData get_Count; - VirtualInvokeData System_Collections_Generic_ICollection_TValue__get_IsReadOnly; - VirtualInvokeData System_Collections_Generic_ICollection_TValue__Add; - VirtualInvokeData System_Collections_Generic_ICollection_TValue__Clear; - VirtualInvokeData System_Collections_Generic_ICollection_TValue__Contains; - VirtualInvokeData CopyTo; - VirtualInvokeData System_Collections_Generic_ICollection_TValue__Remove; - VirtualInvokeData System_Collections_Generic_IEnumerable_TValue__GetEnumerator; - VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; - VirtualInvokeData System_Collections_ICollection_CopyTo; - VirtualInvokeData get_Count_1; - VirtualInvokeData System_Collections_ICollection_get_SyncRoot; - VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; - VirtualInvokeData get_Count_2; -}; - -struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_ExitGames_Client_Photon_CustomType___StaticFields { -}; - -struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_ExitGames_Client_Photon_CustomType___Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_ExitGames_Client_Photon_CustomType___StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct Dictionary_2_TKey_TValue_ValueCollection_System_Type_ExitGames_Client_Photon_CustomType___VTable vtable; -}; - -struct ICollection_1_ExitGames_Client_Photon_CustomType___VTable { - VirtualInvokeData get_Count; - VirtualInvokeData get_IsReadOnly; - VirtualInvokeData Add; - VirtualInvokeData Clear; - VirtualInvokeData Contains; - VirtualInvokeData CopyTo; - VirtualInvokeData Remove; -}; - -struct ICollection_1_ExitGames_Client_Photon_CustomType___StaticFields { -}; - -struct ICollection_1_ExitGames_Client_Photon_CustomType___Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct ICollection_1_ExitGames_Client_Photon_CustomType___StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct ICollection_1_ExitGames_Client_Photon_CustomType___VTable vtable; -}; - -struct KeyValuePair_2_System_Type_ExitGames_Client_Photon_CustomType___VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct KeyValuePair_2_System_Type_ExitGames_Client_Photon_CustomType___StaticFields { -}; - -struct KeyValuePair_2_System_Type_ExitGames_Client_Photon_CustomType___Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct KeyValuePair_2_System_Type_ExitGames_Client_Photon_CustomType___StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct KeyValuePair_2_System_Type_ExitGames_Client_Photon_CustomType___VTable vtable; -}; - -struct KeyValuePair_2_System_Type_ExitGames_Client_Photon_CustomType___Array__VTable { -}; - -struct KeyValuePair_2_System_Type_ExitGames_Client_Photon_CustomType___Array__StaticFields { -}; - -struct KeyValuePair_2_System_Type_ExitGames_Client_Photon_CustomType___Array__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct KeyValuePair_2_System_Type_ExitGames_Client_Photon_CustomType___Array__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct KeyValuePair_2_System_Type_ExitGames_Client_Photon_CustomType___Array__VTable vtable; -}; - -struct IEnumerator_1_KeyValuePair_2_System_Type_ExitGames_Client_Photon_CustomType___VTable { - VirtualInvokeData get_Current; -}; - -struct IEnumerator_1_KeyValuePair_2_System_Type_ExitGames_Client_Photon_CustomType___StaticFields { -}; - -struct IEnumerator_1_KeyValuePair_2_System_Type_ExitGames_Client_Photon_CustomType___Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct IEnumerator_1_KeyValuePair_2_System_Type_ExitGames_Client_Photon_CustomType___StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct IEnumerator_1_KeyValuePair_2_System_Type_ExitGames_Client_Photon_CustomType___VTable vtable; -}; - -struct IEnumerable_1_ExitGames_Client_Photon_CustomType___VTable { - VirtualInvokeData GetEnumerator; -}; - -struct IEnumerable_1_ExitGames_Client_Photon_CustomType___StaticFields { -}; - -struct IEnumerable_1_ExitGames_Client_Photon_CustomType___Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct IEnumerable_1_ExitGames_Client_Photon_CustomType___StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct IEnumerable_1_ExitGames_Client_Photon_CustomType___VTable vtable; -}; - -struct Dictionary_2_System_Type_ExitGames_Client_Photon_CustomType___VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; - VirtualInvokeData get_Item; - VirtualInvokeData set_Item; - VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Keys; - VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Values; - VirtualInvokeData ContainsKey; - VirtualInvokeData Add; - VirtualInvokeData Remove; - VirtualInvokeData TryGetValue; - VirtualInvokeData get_Count; - VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly; - VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add; - VirtualInvokeData Clear; - VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains; - VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo; - VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove; - VirtualInvokeData System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator; - VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; - VirtualInvokeData System_Collections_IDictionary_get_Item; - VirtualInvokeData System_Collections_IDictionary_set_Item; - VirtualInvokeData System_Collections_IDictionary_get_Keys; - VirtualInvokeData System_Collections_IDictionary_get_Values; - VirtualInvokeData System_Collections_IDictionary_Contains; - VirtualInvokeData System_Collections_IDictionary_Add; - VirtualInvokeData Clear_1; - VirtualInvokeData System_Collections_IDictionary_get_IsReadOnly; - VirtualInvokeData System_Collections_IDictionary_get_IsFixedSize; - VirtualInvokeData System_Collections_IDictionary_GetEnumerator; - VirtualInvokeData System_Collections_IDictionary_Remove; - VirtualInvokeData System_Collections_ICollection_CopyTo; - VirtualInvokeData get_Count_1; - VirtualInvokeData System_Collections_ICollection_get_SyncRoot; - VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; - VirtualInvokeData TryGetValue_1; - VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Keys; - VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Values; - VirtualInvokeData get_Count_2; - VirtualInvokeData GetObjectData; - VirtualInvokeData OnDeserialization; - VirtualInvokeData GetObjectData_1; - VirtualInvokeData OnDeserialization_1; -}; - -struct Dictionary_2_System_Type_ExitGames_Client_Photon_CustomType___StaticFields { -}; - -struct Dictionary_2_System_Type_ExitGames_Client_Photon_CustomType___Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct Dictionary_2_System_Type_ExitGames_Client_Photon_CustomType___StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct Dictionary_2_System_Type_ExitGames_Client_Photon_CustomType___VTable vtable; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Byte_ExitGames_Client_Photon_CustomType___VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Byte_ExitGames_Client_Photon_CustomType___StaticFields { -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Byte_ExitGames_Client_Photon_CustomType___Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct Dictionary_2_TKey_TValue_Entry_System_Byte_ExitGames_Client_Photon_CustomType___StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct Dictionary_2_TKey_TValue_Entry_System_Byte_ExitGames_Client_Photon_CustomType___VTable vtable; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Byte_ExitGames_Client_Photon_CustomType___Array__VTable { -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Byte_ExitGames_Client_Photon_CustomType___Array__StaticFields { -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Byte_ExitGames_Client_Photon_CustomType___Array__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct Dictionary_2_TKey_TValue_Entry_System_Byte_ExitGames_Client_Photon_CustomType___Array__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct Dictionary_2_TKey_TValue_Entry_System_Byte_ExitGames_Client_Photon_CustomType___Array__VTable vtable; -}; - -struct Dictionary_2_TKey_TValue_KeyCollection_System_Byte_ExitGames_Client_Photon_CustomType___VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; - VirtualInvokeData get_Count; - VirtualInvokeData System_Collections_Generic_ICollection_TKey__get_IsReadOnly; - VirtualInvokeData System_Collections_Generic_ICollection_TKey__Add; - VirtualInvokeData System_Collections_Generic_ICollection_TKey__Clear; - VirtualInvokeData System_Collections_Generic_ICollection_TKey__Contains; - VirtualInvokeData CopyTo; - VirtualInvokeData System_Collections_Generic_ICollection_TKey__Remove; - VirtualInvokeData System_Collections_Generic_IEnumerable_TKey__GetEnumerator; - VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; - VirtualInvokeData System_Collections_ICollection_CopyTo; - VirtualInvokeData get_Count_1; - VirtualInvokeData System_Collections_ICollection_get_SyncRoot; - VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; - VirtualInvokeData get_Count_2; -}; - -struct Dictionary_2_TKey_TValue_KeyCollection_System_Byte_ExitGames_Client_Photon_CustomType___StaticFields { -}; - -struct Dictionary_2_TKey_TValue_KeyCollection_System_Byte_ExitGames_Client_Photon_CustomType___Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct Dictionary_2_TKey_TValue_KeyCollection_System_Byte_ExitGames_Client_Photon_CustomType___StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct Dictionary_2_TKey_TValue_KeyCollection_System_Byte_ExitGames_Client_Photon_CustomType___VTable vtable; -}; - -struct Dictionary_2_TKey_TValue_ValueCollection_System_Byte_ExitGames_Client_Photon_CustomType___VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; - VirtualInvokeData get_Count; - VirtualInvokeData System_Collections_Generic_ICollection_TValue__get_IsReadOnly; - VirtualInvokeData System_Collections_Generic_ICollection_TValue__Add; - VirtualInvokeData System_Collections_Generic_ICollection_TValue__Clear; - VirtualInvokeData System_Collections_Generic_ICollection_TValue__Contains; - VirtualInvokeData CopyTo; - VirtualInvokeData System_Collections_Generic_ICollection_TValue__Remove; - VirtualInvokeData System_Collections_Generic_IEnumerable_TValue__GetEnumerator; - VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; - VirtualInvokeData System_Collections_ICollection_CopyTo; - VirtualInvokeData get_Count_1; - VirtualInvokeData System_Collections_ICollection_get_SyncRoot; - VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; - VirtualInvokeData get_Count_2; -}; - -struct Dictionary_2_TKey_TValue_ValueCollection_System_Byte_ExitGames_Client_Photon_CustomType___StaticFields { -}; - -struct Dictionary_2_TKey_TValue_ValueCollection_System_Byte_ExitGames_Client_Photon_CustomType___Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct Dictionary_2_TKey_TValue_ValueCollection_System_Byte_ExitGames_Client_Photon_CustomType___StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct Dictionary_2_TKey_TValue_ValueCollection_System_Byte_ExitGames_Client_Photon_CustomType___VTable vtable; -}; - -struct KeyValuePair_2_System_Byte_ExitGames_Client_Photon_CustomType___VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct KeyValuePair_2_System_Byte_ExitGames_Client_Photon_CustomType___StaticFields { -}; - -struct KeyValuePair_2_System_Byte_ExitGames_Client_Photon_CustomType___Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct KeyValuePair_2_System_Byte_ExitGames_Client_Photon_CustomType___StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct KeyValuePair_2_System_Byte_ExitGames_Client_Photon_CustomType___VTable vtable; -}; - -struct KeyValuePair_2_System_Byte_ExitGames_Client_Photon_CustomType___Array__VTable { -}; - -struct KeyValuePair_2_System_Byte_ExitGames_Client_Photon_CustomType___Array__StaticFields { -}; - -struct KeyValuePair_2_System_Byte_ExitGames_Client_Photon_CustomType___Array__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct KeyValuePair_2_System_Byte_ExitGames_Client_Photon_CustomType___Array__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct KeyValuePair_2_System_Byte_ExitGames_Client_Photon_CustomType___Array__VTable vtable; -}; - -struct IEnumerator_1_KeyValuePair_2_System_Byte_ExitGames_Client_Photon_CustomType___VTable { - VirtualInvokeData get_Current; -}; - -struct IEnumerator_1_KeyValuePair_2_System_Byte_ExitGames_Client_Photon_CustomType___StaticFields { -}; - -struct IEnumerator_1_KeyValuePair_2_System_Byte_ExitGames_Client_Photon_CustomType___Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct IEnumerator_1_KeyValuePair_2_System_Byte_ExitGames_Client_Photon_CustomType___StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct IEnumerator_1_KeyValuePair_2_System_Byte_ExitGames_Client_Photon_CustomType___VTable vtable; -}; - -struct Dictionary_2_System_Byte_ExitGames_Client_Photon_CustomType___VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; - VirtualInvokeData get_Item; - VirtualInvokeData set_Item; - VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Keys; - VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Values; - VirtualInvokeData ContainsKey; - VirtualInvokeData Add; - VirtualInvokeData Remove; - VirtualInvokeData TryGetValue; - VirtualInvokeData get_Count; - VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly; - VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add; - VirtualInvokeData Clear; - VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains; - VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo; - VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove; - VirtualInvokeData System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator; - VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; - VirtualInvokeData System_Collections_IDictionary_get_Item; - VirtualInvokeData System_Collections_IDictionary_set_Item; - VirtualInvokeData System_Collections_IDictionary_get_Keys; - VirtualInvokeData System_Collections_IDictionary_get_Values; - VirtualInvokeData System_Collections_IDictionary_Contains; - VirtualInvokeData System_Collections_IDictionary_Add; - VirtualInvokeData Clear_1; - VirtualInvokeData System_Collections_IDictionary_get_IsReadOnly; - VirtualInvokeData System_Collections_IDictionary_get_IsFixedSize; - VirtualInvokeData System_Collections_IDictionary_GetEnumerator; - VirtualInvokeData System_Collections_IDictionary_Remove; - VirtualInvokeData System_Collections_ICollection_CopyTo; - VirtualInvokeData get_Count_1; - VirtualInvokeData System_Collections_ICollection_get_SyncRoot; - VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; - VirtualInvokeData TryGetValue_1; - VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Keys; - VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Values; - VirtualInvokeData get_Count_2; - VirtualInvokeData GetObjectData; - VirtualInvokeData OnDeserialization; - VirtualInvokeData GetObjectData_1; - VirtualInvokeData OnDeserialization_1; -}; - -struct Dictionary_2_System_Byte_ExitGames_Client_Photon_CustomType___StaticFields { -}; - -struct Dictionary_2_System_Byte_ExitGames_Client_Photon_CustomType___Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct Dictionary_2_System_Byte_ExitGames_Client_Photon_CustomType___StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct Dictionary_2_System_Byte_ExitGames_Client_Photon_CustomType___VTable vtable; -}; - -struct Protocol__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct Protocol__StaticFields { - struct Dictionary_2_System_Type_ExitGames_Client_Photon_CustomType_ *TypeDict; - struct Dictionary_2_System_Byte_ExitGames_Client_Photon_CustomType_ *CodeDict; - struct Single__Array *memFloatBlock; - struct Byte__Array *memDeserialize; -}; - -struct Protocol__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct Protocol__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct Protocol__VTable vtable; -}; - -struct SupportClass_ThreadSafeRandom__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct SupportClass_ThreadSafeRandom__StaticFields { - struct Random *_r; -}; - -struct SupportClass_ThreadSafeRandom__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct SupportClass_ThreadSafeRandom__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct SupportClass_ThreadSafeRandom__VTable vtable; -}; - -struct SupportClass__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct SupportClass__StaticFields { - struct List_1_System_Threading_Thread_ *threadList; - struct Object *ThreadListLock; - struct SupportClass_IntegerMillisecondsDelegate *IntegerMilliseconds; - struct UInt32__Array *crcLookupTable; -}; - -struct SupportClass__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct SupportClass__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct SupportClass__VTable vtable; -}; - struct _PrivateImplementationDetails_StaticArrayInitTypeSize_9_1__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1432396,239 +1544426,6 @@ struct TagUnitType__Enum_1__Class { struct TagUnitType__Enum_1__VTable vtable; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_TextCore_Text_FontAsset___VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_TextCore_Text_FontAsset___StaticFields { -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_TextCore_Text_FontAsset___Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_TextCore_Text_FontAsset___StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_TextCore_Text_FontAsset___VTable vtable; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_TextCore_Text_FontAsset___Array__VTable { -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_TextCore_Text_FontAsset___Array__StaticFields { -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_TextCore_Text_FontAsset___Array__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_TextCore_Text_FontAsset___Array__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct Dictionary_2_TKey_TValue_Entry_System_Int64_UnityEngine_TextCore_Text_FontAsset___Array__VTable vtable; -}; - -struct Dictionary_2_TKey_TValue_KeyCollection_System_Int64_UnityEngine_TextCore_Text_FontAsset___VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; - VirtualInvokeData get_Count; - VirtualInvokeData System_Collections_Generic_ICollection_TKey__get_IsReadOnly; - VirtualInvokeData System_Collections_Generic_ICollection_TKey__Add; - VirtualInvokeData System_Collections_Generic_ICollection_TKey__Clear; - VirtualInvokeData System_Collections_Generic_ICollection_TKey__Contains; - VirtualInvokeData CopyTo; - VirtualInvokeData System_Collections_Generic_ICollection_TKey__Remove; - VirtualInvokeData System_Collections_Generic_IEnumerable_TKey__GetEnumerator; - VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; - VirtualInvokeData System_Collections_ICollection_CopyTo; - VirtualInvokeData get_Count_1; - VirtualInvokeData System_Collections_ICollection_get_SyncRoot; - VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; - VirtualInvokeData get_Count_2; -}; - -struct Dictionary_2_TKey_TValue_KeyCollection_System_Int64_UnityEngine_TextCore_Text_FontAsset___StaticFields { -}; - -struct Dictionary_2_TKey_TValue_KeyCollection_System_Int64_UnityEngine_TextCore_Text_FontAsset___Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct Dictionary_2_TKey_TValue_KeyCollection_System_Int64_UnityEngine_TextCore_Text_FontAsset___StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct Dictionary_2_TKey_TValue_KeyCollection_System_Int64_UnityEngine_TextCore_Text_FontAsset___VTable vtable; -}; - -struct Dictionary_2_TKey_TValue_ValueCollection_System_Int64_UnityEngine_TextCore_Text_FontAsset___VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; - VirtualInvokeData get_Count; - VirtualInvokeData System_Collections_Generic_ICollection_TValue__get_IsReadOnly; - VirtualInvokeData System_Collections_Generic_ICollection_TValue__Add; - VirtualInvokeData System_Collections_Generic_ICollection_TValue__Clear; - VirtualInvokeData System_Collections_Generic_ICollection_TValue__Contains; - VirtualInvokeData CopyTo; - VirtualInvokeData System_Collections_Generic_ICollection_TValue__Remove; - VirtualInvokeData System_Collections_Generic_IEnumerable_TValue__GetEnumerator; - VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; - VirtualInvokeData System_Collections_ICollection_CopyTo; - VirtualInvokeData get_Count_1; - VirtualInvokeData System_Collections_ICollection_get_SyncRoot; - VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; - VirtualInvokeData get_Count_2; -}; - -struct Dictionary_2_TKey_TValue_ValueCollection_System_Int64_UnityEngine_TextCore_Text_FontAsset___StaticFields { -}; - -struct Dictionary_2_TKey_TValue_ValueCollection_System_Int64_UnityEngine_TextCore_Text_FontAsset___Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct Dictionary_2_TKey_TValue_ValueCollection_System_Int64_UnityEngine_TextCore_Text_FontAsset___StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct Dictionary_2_TKey_TValue_ValueCollection_System_Int64_UnityEngine_TextCore_Text_FontAsset___VTable vtable; -}; - -struct KeyValuePair_2_System_Int64_UnityEngine_TextCore_Text_FontAsset___VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct KeyValuePair_2_System_Int64_UnityEngine_TextCore_Text_FontAsset___StaticFields { -}; - -struct KeyValuePair_2_System_Int64_UnityEngine_TextCore_Text_FontAsset___Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct KeyValuePair_2_System_Int64_UnityEngine_TextCore_Text_FontAsset___StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct KeyValuePair_2_System_Int64_UnityEngine_TextCore_Text_FontAsset___VTable vtable; -}; - -struct KeyValuePair_2_System_Int64_UnityEngine_TextCore_Text_FontAsset___Array__VTable { -}; - -struct KeyValuePair_2_System_Int64_UnityEngine_TextCore_Text_FontAsset___Array__StaticFields { -}; - -struct KeyValuePair_2_System_Int64_UnityEngine_TextCore_Text_FontAsset___Array__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct KeyValuePair_2_System_Int64_UnityEngine_TextCore_Text_FontAsset___Array__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct KeyValuePair_2_System_Int64_UnityEngine_TextCore_Text_FontAsset___Array__VTable vtable; -}; - -struct IEnumerator_1_KeyValuePair_2_System_Int64_UnityEngine_TextCore_Text_FontAsset___VTable { - VirtualInvokeData get_Current; -}; - -struct IEnumerator_1_KeyValuePair_2_System_Int64_UnityEngine_TextCore_Text_FontAsset___StaticFields { -}; - -struct IEnumerator_1_KeyValuePair_2_System_Int64_UnityEngine_TextCore_Text_FontAsset___Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct IEnumerator_1_KeyValuePair_2_System_Int64_UnityEngine_TextCore_Text_FontAsset___StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct IEnumerator_1_KeyValuePair_2_System_Int64_UnityEngine_TextCore_Text_FontAsset___VTable vtable; -}; - -struct Dictionary_2_System_Int64_UnityEngine_TextCore_Text_FontAsset___VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; - VirtualInvokeData get_Item; - VirtualInvokeData set_Item; - VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Keys; - VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Values; - VirtualInvokeData ContainsKey; - VirtualInvokeData Add; - VirtualInvokeData Remove; - VirtualInvokeData TryGetValue; - VirtualInvokeData get_Count; - VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly; - VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add; - VirtualInvokeData Clear; - VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains; - VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo; - VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove; - VirtualInvokeData System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator; - VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; - VirtualInvokeData System_Collections_IDictionary_get_Item; - VirtualInvokeData System_Collections_IDictionary_set_Item; - VirtualInvokeData System_Collections_IDictionary_get_Keys; - VirtualInvokeData System_Collections_IDictionary_get_Values; - VirtualInvokeData System_Collections_IDictionary_Contains; - VirtualInvokeData System_Collections_IDictionary_Add; - VirtualInvokeData Clear_1; - VirtualInvokeData System_Collections_IDictionary_get_IsReadOnly; - VirtualInvokeData System_Collections_IDictionary_get_IsFixedSize; - VirtualInvokeData System_Collections_IDictionary_GetEnumerator; - VirtualInvokeData System_Collections_IDictionary_Remove; - VirtualInvokeData System_Collections_ICollection_CopyTo; - VirtualInvokeData get_Count_1; - VirtualInvokeData System_Collections_ICollection_get_SyncRoot; - VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; - VirtualInvokeData TryGetValue_1; - VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Keys; - VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Values; - VirtualInvokeData get_Count_2; - VirtualInvokeData GetObjectData; - VirtualInvokeData OnDeserialization; - VirtualInvokeData GetObjectData_1; - VirtualInvokeData OnDeserialization_1; -}; - -struct Dictionary_2_System_Int64_UnityEngine_TextCore_Text_FontAsset___StaticFields { -}; - -struct Dictionary_2_System_Int64_UnityEngine_TextCore_Text_FontAsset___Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct Dictionary_2_System_Int64_UnityEngine_TextCore_Text_FontAsset___StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct Dictionary_2_System_Int64_UnityEngine_TextCore_Text_FontAsset___VTable vtable; -}; - -struct TextResourceManager__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct TextResourceManager__StaticFields { - struct Dictionary_2_System_Int32_UnityEngine_TextCore_Text_TextResourceManager_FontAssetRef_ *s_FontAssetReferences; - struct Dictionary_2_System_Int32_UnityEngine_TextCore_Text_FontAsset_ *s_FontAssetNameReferenceLookup; - struct Dictionary_2_System_Int64_UnityEngine_TextCore_Text_FontAsset_ *s_FontAssetFamilyNameAndStyleReferenceLookup; - struct List_1_System_Int32_ *s_FontAssetRemovalList; - int32_t k_RegularStyleHashCode; -}; - -struct TextResourceManager__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct TextResourceManager__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct TextResourceManager__VTable vtable; -}; - struct BloomRenderer_Pass__Enum__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1433010,27 +1544807,6 @@ struct _PrivateImplementationDetails__20__Class { struct _PrivateImplementationDetails__20__VTable vtable; }; -struct ZipEntry_CopyHelper__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct ZipEntry_CopyHelper__StaticFields { - struct Regex *re; - int32_t callCount; -}; - -struct ZipEntry_CopyHelper__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct ZipEntry_CopyHelper__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct ZipEntry_CopyHelper__VTable vtable; -}; - struct SharedUtils__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1433050,27 +1544826,6 @@ struct SharedUtils__Class { struct SharedUtils__VTable vtable; }; -struct Adler__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct Adler__StaticFields { - uint32_t BASE; - int32_t NMAX; -}; - -struct Adler__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct Adler__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct Adler__VTable vtable; -}; - struct _PrivateImplementationDetails_99f15b47_93f0_442d_a950_84e2e79a92c8_ArrayType_12__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1433689,103 +1545444,6 @@ struct _PrivateImplementationDetails__6__Class { struct _PrivateImplementationDetails__6__VTable vtable; }; -struct HairDesignerEvents__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct HairDesignerEvents__StaticFields { - struct Action_1_Kalagaan_HairDesignerExtension_HairDesignerEvents_PlayModeStateChange_ *playStateChanged; - struct Action_1_Kalagaan_HairDesignerExtension_HairDesignerEvents_PauseState_ *pauseStateChanged; -}; - -struct HairDesignerEvents__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct HairDesignerEvents__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct HairDesignerEvents__VTable vtable; -}; - -struct HairDesignerGeneratorFurShellBase_Vector3BufferData__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct HairDesignerGeneratorFurShellBase_Vector3BufferData__StaticFields { -}; - -struct HairDesignerGeneratorFurShellBase_Vector3BufferData__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct HairDesignerGeneratorFurShellBase_Vector3BufferData__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct HairDesignerGeneratorFurShellBase_Vector3BufferData__VTable vtable; -}; - -struct HairDesignerGeneratorFurShellBase_Vector4BufferData__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct HairDesignerGeneratorFurShellBase_Vector4BufferData__StaticFields { -}; - -struct HairDesignerGeneratorFurShellBase_Vector4BufferData__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct HairDesignerGeneratorFurShellBase_Vector4BufferData__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct HairDesignerGeneratorFurShellBase_Vector4BufferData__VTable vtable; -}; - -struct HairDesignerGeneratorAdvancedFurBase_Vector3BufferData__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct HairDesignerGeneratorAdvancedFurBase_Vector3BufferData__StaticFields { -}; - -struct HairDesignerGeneratorAdvancedFurBase_Vector3BufferData__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct HairDesignerGeneratorAdvancedFurBase_Vector3BufferData__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct HairDesignerGeneratorAdvancedFurBase_Vector3BufferData__VTable vtable; -}; - -struct HairDesignerGeneratorAdvancedFurBase_PIData__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct HairDesignerGeneratorAdvancedFurBase_PIData__StaticFields { -}; - -struct HairDesignerGeneratorAdvancedFurBase_PIData__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct HairDesignerGeneratorAdvancedFurBase_PIData__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct HairDesignerGeneratorAdvancedFurBase_PIData__VTable vtable; -}; - struct _PrivateImplementationDetails_StaticArrayInitTypeSize_12_7__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1433825,44 +1545483,6 @@ struct _PrivateImplementationDetails__21__Class { struct _PrivateImplementationDetails__21__VTable vtable; }; -struct Behavior_EventTypes__Enum__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; - VirtualInvokeData CompareTo; - VirtualInvokeData ToString_1; - VirtualInvokeData GetTypeCode; - VirtualInvokeData System_IConvertible_ToBoolean; - VirtualInvokeData System_IConvertible_ToChar; - VirtualInvokeData System_IConvertible_ToSByte; - VirtualInvokeData System_IConvertible_ToByte; - VirtualInvokeData System_IConvertible_ToInt16; - VirtualInvokeData System_IConvertible_ToUInt16; - VirtualInvokeData System_IConvertible_ToInt32; - VirtualInvokeData System_IConvertible_ToUInt32; - VirtualInvokeData System_IConvertible_ToInt64; - VirtualInvokeData System_IConvertible_ToUInt64; - VirtualInvokeData System_IConvertible_ToSingle; - VirtualInvokeData System_IConvertible_ToDouble; - VirtualInvokeData System_IConvertible_ToDecimal; - VirtualInvokeData System_IConvertible_ToDateTime; - VirtualInvokeData ToString_2; - VirtualInvokeData System_IConvertible_ToType; -}; - -struct Behavior_EventTypes__Enum__StaticFields { -}; - -struct Behavior_EventTypes__Enum__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct Behavior_EventTypes__Enum__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct Behavior_EventTypes__Enum__VTable vtable; -}; - struct _PrivateImplementationDetails_ArrayType_1024__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1434034,40 +1545654,6 @@ struct TrackAsset_Versions__Enum__Class { struct TrackAsset_Versions__Enum__VTable vtable; }; -struct GUI__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct GUI__StaticFields { - int32_t s_ScrollControlId; - int32_t s_HotTextField; - int32_t s_BoxHash; - int32_t s_ButonHash; - int32_t s_RepeatButtonHash; - int32_t s_ToggleHash; - int32_t s_ButtonGridHash; - int32_t s_SliderHash; - int32_t s_BeginGroupHash; - int32_t s_ScrollviewHash; - int32_t _scrollTroughSide_k__BackingField; - struct DateTime _nextScrollStepTime_k__BackingField; - struct GUISkin *s_Skin; - struct Rect s_ToolTipRect; - struct GenericStack *_scrollViewStates_k__BackingField; -}; - -struct GUI__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct GUI__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct GUI__VTable vtable; -}; - struct GUIClip__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1434106,410 +1545692,6 @@ struct GUILayout__Class { struct GUILayout__VTable vtable; }; -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___StaticFields { -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___VTable vtable; -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Array__VTable { -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Array__StaticFields { -}; - -struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Array__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Array__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct Dictionary_2_TKey_TValue_Entry_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Array__VTable vtable; -}; - -struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; - VirtualInvokeData get_Count; - VirtualInvokeData System_Collections_Generic_ICollection_TKey__get_IsReadOnly; - VirtualInvokeData System_Collections_Generic_ICollection_TKey__Add; - VirtualInvokeData System_Collections_Generic_ICollection_TKey__Clear; - VirtualInvokeData System_Collections_Generic_ICollection_TKey__Contains; - VirtualInvokeData CopyTo; - VirtualInvokeData System_Collections_Generic_ICollection_TKey__Remove; - VirtualInvokeData System_Collections_Generic_IEnumerable_TKey__GetEnumerator; - VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; - VirtualInvokeData System_Collections_ICollection_CopyTo; - VirtualInvokeData get_Count_1; - VirtualInvokeData System_Collections_ICollection_get_SyncRoot; - VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; - VirtualInvokeData get_Count_2; -}; - -struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___StaticFields { -}; - -struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct Dictionary_2_TKey_TValue_KeyCollection_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___VTable vtable; -}; - -struct GUILayoutUtility_LayoutCache__Array__VTable { -}; - -struct GUILayoutUtility_LayoutCache__Array__StaticFields { -}; - -struct GUILayoutUtility_LayoutCache__Array__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct GUILayoutUtility_LayoutCache__Array__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct GUILayoutUtility_LayoutCache__Array__VTable vtable; -}; - -struct IEnumerator_1_UnityEngine_GUILayoutUtility_LayoutCache___VTable { - VirtualInvokeData get_Current; -}; - -struct IEnumerator_1_UnityEngine_GUILayoutUtility_LayoutCache___StaticFields { -}; - -struct IEnumerator_1_UnityEngine_GUILayoutUtility_LayoutCache___Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct IEnumerator_1_UnityEngine_GUILayoutUtility_LayoutCache___StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct IEnumerator_1_UnityEngine_GUILayoutUtility_LayoutCache___VTable vtable; -}; - -struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; - VirtualInvokeData get_Count; - VirtualInvokeData System_Collections_Generic_ICollection_TValue__get_IsReadOnly; - VirtualInvokeData System_Collections_Generic_ICollection_TValue__Add; - VirtualInvokeData System_Collections_Generic_ICollection_TValue__Clear; - VirtualInvokeData System_Collections_Generic_ICollection_TValue__Contains; - VirtualInvokeData CopyTo; - VirtualInvokeData System_Collections_Generic_ICollection_TValue__Remove; - VirtualInvokeData System_Collections_Generic_IEnumerable_TValue__GetEnumerator; - VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; - VirtualInvokeData System_Collections_ICollection_CopyTo; - VirtualInvokeData get_Count_1; - VirtualInvokeData System_Collections_ICollection_get_SyncRoot; - VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; - VirtualInvokeData get_Count_2; -}; - -struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___StaticFields { -}; - -struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct Dictionary_2_TKey_TValue_ValueCollection_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___VTable vtable; -}; - -struct ICollection_1_UnityEngine_GUILayoutUtility_LayoutCache___VTable { - VirtualInvokeData get_Count; - VirtualInvokeData get_IsReadOnly; - VirtualInvokeData Add; - VirtualInvokeData Clear; - VirtualInvokeData Contains; - VirtualInvokeData CopyTo; - VirtualInvokeData Remove; -}; - -struct ICollection_1_UnityEngine_GUILayoutUtility_LayoutCache___StaticFields { -}; - -struct ICollection_1_UnityEngine_GUILayoutUtility_LayoutCache___Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct ICollection_1_UnityEngine_GUILayoutUtility_LayoutCache___StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct ICollection_1_UnityEngine_GUILayoutUtility_LayoutCache___VTable vtable; -}; - -struct KeyValuePair_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct KeyValuePair_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___StaticFields { -}; - -struct KeyValuePair_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct KeyValuePair_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct KeyValuePair_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___VTable vtable; -}; - -struct KeyValuePair_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Array__VTable { -}; - -struct KeyValuePair_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Array__StaticFields { -}; - -struct KeyValuePair_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Array__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct KeyValuePair_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Array__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct KeyValuePair_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Array__VTable vtable; -}; - -struct IEnumerator_1_KeyValuePair_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___VTable { - VirtualInvokeData get_Current; -}; - -struct IEnumerator_1_KeyValuePair_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___StaticFields { -}; - -struct IEnumerator_1_KeyValuePair_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct IEnumerator_1_KeyValuePair_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct IEnumerator_1_KeyValuePair_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___VTable vtable; -}; - -struct IEnumerable_1_UnityEngine_GUILayoutUtility_LayoutCache___VTable { - VirtualInvokeData GetEnumerator; -}; - -struct IEnumerable_1_UnityEngine_GUILayoutUtility_LayoutCache___StaticFields { -}; - -struct IEnumerable_1_UnityEngine_GUILayoutUtility_LayoutCache___Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct IEnumerable_1_UnityEngine_GUILayoutUtility_LayoutCache___StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct IEnumerable_1_UnityEngine_GUILayoutUtility_LayoutCache___VTable vtable; -}; - -struct Dictionary_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; - VirtualInvokeData get_Item; - VirtualInvokeData set_Item; - VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Keys; - VirtualInvokeData System_Collections_Generic_IDictionary_TKey_TValue__get_Values; - VirtualInvokeData ContainsKey; - VirtualInvokeData Add; - VirtualInvokeData Remove; - VirtualInvokeData TryGetValue; - VirtualInvokeData get_Count; - VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___get_IsReadOnly; - VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Add; - VirtualInvokeData Clear; - VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Contains; - VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___CopyTo; - VirtualInvokeData System_Collections_Generic_ICollection_System_Collections_Generic_KeyValuePair_TKey_TValue___Remove; - VirtualInvokeData System_Collections_Generic_IEnumerable_System_Collections_Generic_KeyValuePair_TKey_TValue___GetEnumerator; - VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; - VirtualInvokeData System_Collections_IDictionary_get_Item; - VirtualInvokeData System_Collections_IDictionary_set_Item; - VirtualInvokeData System_Collections_IDictionary_get_Keys; - VirtualInvokeData System_Collections_IDictionary_get_Values; - VirtualInvokeData System_Collections_IDictionary_Contains; - VirtualInvokeData System_Collections_IDictionary_Add; - VirtualInvokeData Clear_1; - VirtualInvokeData System_Collections_IDictionary_get_IsReadOnly; - VirtualInvokeData System_Collections_IDictionary_get_IsFixedSize; - VirtualInvokeData System_Collections_IDictionary_GetEnumerator; - VirtualInvokeData System_Collections_IDictionary_Remove; - VirtualInvokeData System_Collections_ICollection_CopyTo; - VirtualInvokeData get_Count_1; - VirtualInvokeData System_Collections_ICollection_get_SyncRoot; - VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; - VirtualInvokeData TryGetValue_1; - VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Keys; - VirtualInvokeData System_Collections_Generic_IReadOnlyDictionary_TKey_TValue__get_Values; - VirtualInvokeData get_Count_2; - VirtualInvokeData GetObjectData; - VirtualInvokeData OnDeserialization; - VirtualInvokeData GetObjectData_1; - VirtualInvokeData OnDeserialization_1; -}; - -struct Dictionary_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___StaticFields { -}; - -struct Dictionary_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct Dictionary_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct Dictionary_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache___VTable vtable; -}; - -struct GUILayoutUtility__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct GUILayoutUtility__StaticFields { - struct Dictionary_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache_ *s_StoredLayouts; - struct Dictionary_2_System_Int32_UnityEngine_GUILayoutUtility_LayoutCache_ *s_StoredWindows; - struct GUILayoutUtility_LayoutCache *current; - struct Rect kDummyRect; - int32_t _unbalancedgroupscount_k__BackingField; - struct GUIStyle *s_SpaceStyle; -}; - -struct GUILayoutUtility__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct GUILayoutUtility__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct GUILayoutUtility__VTable vtable; -}; - -struct GUIStateObjects__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct GUIStateObjects__StaticFields { - struct Dictionary_2_System_Int32_System_Object_ *s_StateCache; -}; - -struct GUIStateObjects__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct GUIStateObjects__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct GUIStateObjects__VTable vtable; -}; - -struct GUITargetAttribute__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; - VirtualInvokeData get_TypeId; - VirtualInvokeData Match; - VirtualInvokeData IsDefaultAttribute; -}; - -struct GUITargetAttribute__StaticFields { -}; - -struct GUITargetAttribute__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct GUITargetAttribute__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct GUITargetAttribute__VTable vtable; -}; - -struct Func_2_Exception_Boolean___VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; - VirtualInvokeData Clone; - VirtualInvokeData GetObjectData; - VirtualInvokeData DynamicInvokeImpl; - VirtualInvokeData Clone_1; - VirtualInvokeData GetMethodImpl; - VirtualInvokeData GetObjectData_1; - VirtualInvokeData GetInvocationList; - VirtualInvokeData CombineImpl; - VirtualInvokeData RemoveImpl; - VirtualInvokeData Invoke; -}; - -struct Func_2_Exception_Boolean___StaticFields { -}; - -struct Func_2_Exception_Boolean___Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct Func_2_Exception_Boolean___StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct Func_2_Exception_Boolean___VTable vtable; -}; - -struct GUIUtility__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct GUIUtility__StaticFields { - int32_t s_ControlCount; - int32_t s_SkinMode; - int32_t s_OriginalID; - struct Action *takeCapture; - struct Action *releaseCapture; - struct Func_3_Int32_IntPtr_Boolean_ *processEvent; - struct Action *cleanupRoots; - struct Func_2_Exception_Boolean_ *endContainerGUIFromException; - struct Action *guiChanged; - bool _guiIsExiting_k__BackingField; - struct Func_1_Boolean_ *s_HasCurrentWindowKeyFocusFunc; -}; - -struct GUIUtility__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct GUIUtility__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct GUIUtility__VTable vtable; -}; - struct _PrivateImplementationDetails__7__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1434954,44 +1546136,6 @@ struct _PrivateImplementationDetails__24__Class { struct _PrivateImplementationDetails__24__VTable vtable; }; -struct FingerIndicator_Fingers__Enum__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; - VirtualInvokeData CompareTo; - VirtualInvokeData ToString_1; - VirtualInvokeData GetTypeCode; - VirtualInvokeData System_IConvertible_ToBoolean; - VirtualInvokeData System_IConvertible_ToChar; - VirtualInvokeData System_IConvertible_ToSByte; - VirtualInvokeData System_IConvertible_ToByte; - VirtualInvokeData System_IConvertible_ToInt16; - VirtualInvokeData System_IConvertible_ToUInt16; - VirtualInvokeData System_IConvertible_ToInt32; - VirtualInvokeData System_IConvertible_ToUInt32; - VirtualInvokeData System_IConvertible_ToInt64; - VirtualInvokeData System_IConvertible_ToUInt64; - VirtualInvokeData System_IConvertible_ToSingle; - VirtualInvokeData System_IConvertible_ToDouble; - VirtualInvokeData System_IConvertible_ToDecimal; - VirtualInvokeData System_IConvertible_ToDateTime; - VirtualInvokeData ToString_2; - VirtualInvokeData System_IConvertible_ToType; -}; - -struct FingerIndicator_Fingers__Enum__StaticFields { -}; - -struct FingerIndicator_Fingers__Enum__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct FingerIndicator_Fingers__Enum__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct FingerIndicator_Fingers__Enum__VTable vtable; -}; - struct SharedBetweenAnimatorsAttribute__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1435211,27 +1546355,6 @@ struct ParticleSystemExtensionsImpl__Class { struct ParticleSystemExtensionsImpl__VTable vtable; }; -struct Physics__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct Physics__StaticFields { - struct Action_2_UnityEngine_PhysicsScene_Unity_Collections_NativeArray_1_ *ContactModifyEvent; - struct Action_2_UnityEngine_PhysicsScene_Unity_Collections_NativeArray_1_ *ContactModifyEventCCD; -}; - -struct Physics__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct Physics__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct Physics__VTable vtable; -}; - struct _AndroidJNIHelper__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1435327,66 +1546450,6 @@ struct DllCheck__Class { struct DllCheck__VTable vtable; }; -struct UIEffect_BlurEx__Enum__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; - VirtualInvokeData CompareTo; - VirtualInvokeData ToString_1; - VirtualInvokeData GetTypeCode; - VirtualInvokeData System_IConvertible_ToBoolean; - VirtualInvokeData System_IConvertible_ToChar; - VirtualInvokeData System_IConvertible_ToSByte; - VirtualInvokeData System_IConvertible_ToByte; - VirtualInvokeData System_IConvertible_ToInt16; - VirtualInvokeData System_IConvertible_ToUInt16; - VirtualInvokeData System_IConvertible_ToInt32; - VirtualInvokeData System_IConvertible_ToUInt32; - VirtualInvokeData System_IConvertible_ToInt64; - VirtualInvokeData System_IConvertible_ToUInt64; - VirtualInvokeData System_IConvertible_ToSingle; - VirtualInvokeData System_IConvertible_ToDouble; - VirtualInvokeData System_IConvertible_ToDecimal; - VirtualInvokeData System_IConvertible_ToDateTime; - VirtualInvokeData ToString_2; - VirtualInvokeData System_IConvertible_ToType; -}; - -struct UIEffect_BlurEx__Enum__StaticFields { -}; - -struct UIEffect_BlurEx__Enum__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct UIEffect_BlurEx__Enum__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct UIEffect_BlurEx__Enum__VTable vtable; -}; - -struct AudioSettings__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct AudioSettings__StaticFields { - struct AudioSettings_AudioConfigurationChangeHandler *OnAudioConfigurationChanged; - struct Action *OnAudioSystemShuttingDown; - struct Action *OnAudioSystemStartedUp; -}; - -struct AudioSettings__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct AudioSettings__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct AudioSettings__VTable vtable; -}; - struct AudioReverbZone__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1435578,33 +1546641,6 @@ struct MeasureOutput__Class { struct MeasureOutput__VTable vtable; }; -struct Utility_1__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct Utility_1__StaticFields { - struct Action_1_Boolean_ *GraphicsResourcesRecreate; - struct Action *EngineUpdate; - struct Action *FlushPendingResources; - struct Action_1_UnityEngine_Camera_ *RegisterIntermediateRenderers; - struct Action_1_IntPtr_ *RenderNodeAdd; - struct Action_1_IntPtr_ *RenderNodeExecute; - struct Action_1_IntPtr_ *RenderNodeCleanup; - struct ProfilerMarker s_MarkerRaiseEngineUpdate; -}; - -struct Utility_1__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct Utility_1__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct Utility_1__VTable vtable; -}; - struct ThrowStub_2__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1435636,29 +1546672,6 @@ struct ThrowStub_2__Class { struct ThrowStub_2__VTable vtable; }; -struct InputDevices__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct InputDevices__StaticFields { - struct List_1_UnityEngine_XR_InputDevice_ *s_InputDeviceList; - struct Action_1_UnityEngine_XR_InputDevice_ *deviceConnected; - struct Action_1_UnityEngine_XR_InputDevice_ *deviceDisconnected; - struct Action_1_UnityEngine_XR_InputDevice_ *deviceConfigChanged; -}; - -struct InputDevices__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct InputDevices__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct InputDevices__VTable vtable; -}; - struct XRDisplaySubsystem_XRRenderPass__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1436362,26 +1547375,6 @@ struct XrSystemPassThroughPropertiesHTC__Class { struct XrSystemPassThroughPropertiesHTC__VTable vtable; }; -struct TriangulationUtil__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct TriangulationUtil__StaticFields { - double EPSILON; -}; - -struct TriangulationUtil__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct TriangulationUtil__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct TriangulationUtil__VTable vtable; -}; - struct XrHandJointEXT__Enum__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1436591,319 +1547584,6 @@ struct FontEngineUtilities__Class { struct FontEngineUtilities__VTable vtable; }; -struct Rigidbody2D__Array__VTable { -}; - -struct Rigidbody2D__Array__StaticFields { -}; - -struct Rigidbody2D__Array__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct Rigidbody2D__Array__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct Rigidbody2D__Array__VTable vtable; -}; - -struct IEnumerator_1_UnityEngine_Rigidbody2D___VTable { - VirtualInvokeData get_Current; -}; - -struct IEnumerator_1_UnityEngine_Rigidbody2D___StaticFields { -}; - -struct IEnumerator_1_UnityEngine_Rigidbody2D___Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct IEnumerator_1_UnityEngine_Rigidbody2D___StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct IEnumerator_1_UnityEngine_Rigidbody2D___VTable vtable; -}; - -struct List_1_UnityEngine_Rigidbody2D___VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; - VirtualInvokeData get_Item; - VirtualInvokeData set_Item; - VirtualInvokeData IndexOf; - VirtualInvokeData Insert; - VirtualInvokeData RemoveAt; - VirtualInvokeData get_Count; - VirtualInvokeData System_Collections_Generic_ICollection_T__get_IsReadOnly; - VirtualInvokeData Add; - VirtualInvokeData Clear; - VirtualInvokeData Contains; - VirtualInvokeData CopyTo; - VirtualInvokeData Remove; - VirtualInvokeData System_Collections_Generic_IEnumerable_T__GetEnumerator; - VirtualInvokeData System_Collections_IEnumerable_GetEnumerator; - VirtualInvokeData System_Collections_IList_get_Item; - VirtualInvokeData System_Collections_IList_set_Item; - VirtualInvokeData System_Collections_IList_Add; - VirtualInvokeData System_Collections_IList_Contains; - VirtualInvokeData Clear_1; - VirtualInvokeData System_Collections_IList_get_IsReadOnly; - VirtualInvokeData System_Collections_IList_get_IsFixedSize; - VirtualInvokeData System_Collections_IList_IndexOf; - VirtualInvokeData System_Collections_IList_Insert; - VirtualInvokeData System_Collections_IList_Remove; - VirtualInvokeData RemoveAt_1; - VirtualInvokeData System_Collections_ICollection_CopyTo; - VirtualInvokeData get_Count_1; - VirtualInvokeData System_Collections_ICollection_get_SyncRoot; - VirtualInvokeData System_Collections_ICollection_get_IsSynchronized; - VirtualInvokeData get_Item_1; - VirtualInvokeData get_Count_2; -}; - -struct List_1_UnityEngine_Rigidbody2D___StaticFields { - struct Rigidbody2D__Array *s_emptyArray; -}; - -struct List_1_UnityEngine_Rigidbody2D___Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct List_1_UnityEngine_Rigidbody2D___StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct List_1_UnityEngine_Rigidbody2D___VTable vtable; -}; - -struct Physics2D__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct Physics2D__StaticFields { - struct List_1_UnityEngine_Rigidbody2D_ *m_LastDisabledRigidbody2D; -}; - -struct Physics2D__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct Physics2D__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct Physics2D__VTable vtable; -}; - -struct RigidbodyInterpolation2D__Enum__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; - VirtualInvokeData CompareTo; - VirtualInvokeData ToString_1; - VirtualInvokeData GetTypeCode; - VirtualInvokeData System_IConvertible_ToBoolean; - VirtualInvokeData System_IConvertible_ToChar; - VirtualInvokeData System_IConvertible_ToSByte; - VirtualInvokeData System_IConvertible_ToByte; - VirtualInvokeData System_IConvertible_ToInt16; - VirtualInvokeData System_IConvertible_ToUInt16; - VirtualInvokeData System_IConvertible_ToInt32; - VirtualInvokeData System_IConvertible_ToUInt32; - VirtualInvokeData System_IConvertible_ToInt64; - VirtualInvokeData System_IConvertible_ToUInt64; - VirtualInvokeData System_IConvertible_ToSingle; - VirtualInvokeData System_IConvertible_ToDouble; - VirtualInvokeData System_IConvertible_ToDecimal; - VirtualInvokeData System_IConvertible_ToDateTime; - VirtualInvokeData ToString_2; - VirtualInvokeData System_IConvertible_ToType; -}; - -struct RigidbodyInterpolation2D__Enum__StaticFields { -}; - -struct RigidbodyInterpolation2D__Enum__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct RigidbodyInterpolation2D__Enum__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct RigidbodyInterpolation2D__Enum__VTable vtable; -}; - -struct RigidbodySleepMode2D__Enum__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; - VirtualInvokeData CompareTo; - VirtualInvokeData ToString_1; - VirtualInvokeData GetTypeCode; - VirtualInvokeData System_IConvertible_ToBoolean; - VirtualInvokeData System_IConvertible_ToChar; - VirtualInvokeData System_IConvertible_ToSByte; - VirtualInvokeData System_IConvertible_ToByte; - VirtualInvokeData System_IConvertible_ToInt16; - VirtualInvokeData System_IConvertible_ToUInt16; - VirtualInvokeData System_IConvertible_ToInt32; - VirtualInvokeData System_IConvertible_ToUInt32; - VirtualInvokeData System_IConvertible_ToInt64; - VirtualInvokeData System_IConvertible_ToUInt64; - VirtualInvokeData System_IConvertible_ToSingle; - VirtualInvokeData System_IConvertible_ToDouble; - VirtualInvokeData System_IConvertible_ToDecimal; - VirtualInvokeData System_IConvertible_ToDateTime; - VirtualInvokeData ToString_2; - VirtualInvokeData System_IConvertible_ToType; -}; - -struct RigidbodySleepMode2D__Enum__StaticFields { -}; - -struct RigidbodySleepMode2D__Enum__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct RigidbodySleepMode2D__Enum__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct RigidbodySleepMode2D__Enum__VTable vtable; -}; - -struct CollisionDetectionMode2D__Enum__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; - VirtualInvokeData CompareTo; - VirtualInvokeData ToString_1; - VirtualInvokeData GetTypeCode; - VirtualInvokeData System_IConvertible_ToBoolean; - VirtualInvokeData System_IConvertible_ToChar; - VirtualInvokeData System_IConvertible_ToSByte; - VirtualInvokeData System_IConvertible_ToByte; - VirtualInvokeData System_IConvertible_ToInt16; - VirtualInvokeData System_IConvertible_ToUInt16; - VirtualInvokeData System_IConvertible_ToInt32; - VirtualInvokeData System_IConvertible_ToUInt32; - VirtualInvokeData System_IConvertible_ToInt64; - VirtualInvokeData System_IConvertible_ToUInt64; - VirtualInvokeData System_IConvertible_ToSingle; - VirtualInvokeData System_IConvertible_ToDouble; - VirtualInvokeData System_IConvertible_ToDecimal; - VirtualInvokeData System_IConvertible_ToDateTime; - VirtualInvokeData ToString_2; - VirtualInvokeData System_IConvertible_ToType; -}; - -struct CollisionDetectionMode2D__Enum__StaticFields { -}; - -struct CollisionDetectionMode2D__Enum__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct CollisionDetectionMode2D__Enum__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct CollisionDetectionMode2D__Enum__VTable vtable; -}; - -struct PhysicsMaterial2D__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct PhysicsMaterial2D__StaticFields { -}; - -struct PhysicsMaterial2D__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct PhysicsMaterial2D__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct PhysicsMaterial2D__VTable vtable; -}; - -struct WWWForm__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct WWWForm__StaticFields { - struct Byte__Array *dDash; - struct Byte__Array *crlf; - struct Byte__Array *contentTypeHeader; - struct Byte__Array *dispositionHeader; - struct Byte__Array *endQuote; - struct Byte__Array *fileNameField; - struct Byte__Array *ampersand; - struct Byte__Array *equal; -}; - -struct WWWForm__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct WWWForm__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct WWWForm__VTable vtable; -}; - -struct WWWTranscoder__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct WWWTranscoder__StaticFields { - struct Byte__Array *ucHexChars; - struct Byte__Array *lcHexChars; - uint8_t urlEscapeChar; - struct Byte__Array *urlSpace; - struct Byte__Array *dataSpace; - struct Byte__Array *urlForbidden; - uint8_t qpEscapeChar; - struct Byte__Array *qpSpace; - struct Byte__Array *qpForbidden; -}; - -struct WWWTranscoder__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct WWWTranscoder__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct WWWTranscoder__VTable vtable; -}; - -struct TypeUtility__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct TypeUtility__StaticFields { - struct Dictionary_2_System_String_System_Type_ *s_TypeLookup; - struct List_1_System_Reflection_Assembly_ *s_LoadedAssemblies; - struct Dictionary_2_System_Reflection_FieldInfo_Dictionary_2_System_Type_System_Boolean_ *s_FieldAttributeMap; - struct Dictionary_2_System_Reflection_PropertyInfo_Dictionary_2_System_Type_System_Boolean_ *s_PropertyAttributeMap; -}; - -struct TypeUtility__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct TypeUtility__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct TypeUtility__VTable vtable; -}; - struct XrResult__Enum_3__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1436961,26 +1547641,6 @@ struct XrSystemFacialTrackingPropertiesHTC__Class { struct XrSystemFacialTrackingPropertiesHTC__VTable vtable; }; -struct RectTransformUtility__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct RectTransformUtility__StaticFields { - struct Vector3__Array *s_Corners; -}; - -struct RectTransformUtility__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct RectTransformUtility__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct RectTransformUtility__VTable vtable; -}; - struct ColliderMode__Enum__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1437057,34 +1547717,6 @@ struct Input_1__Class { struct Input_1__VTable vtable; }; -struct SendMouseEvents__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct SendMouseEvents__StaticFields { - bool s_MouseUsed; - struct SendMouseEvents_HitInfo__Array *m_LastHit; - struct SendMouseEvents_HitInfo__Array *m_MouseDownHit; - struct SendMouseEvents_HitInfo__Array *m_CurrentHit; - struct Camera__Array *m_Cameras; - struct Func_1_System_Collections_Generic_KeyValuePair_2_ *s_GetMouseState; - struct Vector2 s_MousePosition; - bool s_MouseButtonPressedThisFrame; - bool s_MouseButtonIsPressed; -}; - -struct SendMouseEvents__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct SendMouseEvents__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct SendMouseEvents__VTable vtable; -}; - struct UnityString__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1437161,25 +1547793,6 @@ struct XRManagementAnalytics_BuildEvent__Class { struct XRManagementAnalytics_BuildEvent__VTable vtable; }; -struct VFXCameraXRSettings__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct VFXCameraXRSettings__StaticFields { -}; - -struct VFXCameraXRSettings__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct VFXCameraXRSettings__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct VFXCameraXRSettings__VTable vtable; -}; - struct RemoteConfigSettingsHelper_Tag__Enum__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1437560,45 +1548173,6 @@ struct CrashReportHandler__Class { struct CrashReportHandler__VTable vtable; }; -struct TrackedPoseDriverDataDescription__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct TrackedPoseDriverDataDescription__StaticFields { - struct List_1_UnityEngine_SpatialTracking_TrackedPoseDriverDataDescription_PoseData_ *DeviceData; -}; - -struct TrackedPoseDriverDataDescription__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct TrackedPoseDriverDataDescription__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct TrackedPoseDriverDataDescription__VTable vtable; -}; - -struct SpriteShapeRenderer__VTable { - VirtualInvokeData Equals; - VirtualInvokeData Finalize; - VirtualInvokeData GetHashCode; - VirtualInvokeData ToString; -}; - -struct SpriteShapeRenderer__StaticFields { -}; - -struct SpriteShapeRenderer__Class { - Il2CppClass_0 _0; - Il2CppRuntimeInterfaceOffsetPair *interfaceOffsets; - struct SpriteShapeRenderer__StaticFields *static_fields; - const Il2CppRGCTXData *rgctx_data; - Il2CppClass_1 _1; - struct SpriteShapeRenderer__VTable vtable; -}; - struct ThrowStub_3__VTable { VirtualInvokeData Equals; VirtualInvokeData Finalize; @@ -1437630,6 +1548204,6 @@ struct ThrowStub_3__Class { struct ThrowStub_3__VTable vtable; }; -#if !defined(_GHIDRA_) && !defined(_IDA_) +#if !defined(_GHIDRA_) && !defined(_IDA_) && !defined(_IDACLANG_) } #endif diff --git a/framework/il2cpp-appdata.h b/framework/il2cpp-appdata.h index a9e0d5e..b0a2109 100644 --- a/framework/il2cpp-appdata.h +++ b/framework/il2cpp-appdata.h @@ -20,7 +20,7 @@ #define DO_APP_FUNC(a, r, n, p) extern r (*n) p #define DO_APP_FUNC_METHODINFO(a, n) extern struct MethodInfo ** n namespace app { - #include "il2cpp-functions.h" +#include "il2cpp-functions.h" } #undef DO_APP_FUNC #undef DO_APP_FUNC_METHODINFO @@ -28,6 +28,6 @@ namespace app { // TypeInfo pointers #define DO_TYPEDEF(a, n) extern n ## __Class** n ## __TypeInfo namespace app { - #include "il2cpp-types-ptr.h" +#include "il2cpp-types-ptr.h" } #undef DO_TYPEDEF \ No newline at end of file diff --git a/framework/il2cpp-init.cpp b/framework/il2cpp-init.cpp index a4cc0c3..7dba9ce 100644 --- a/framework/il2cpp-init.cpp +++ b/framework/il2cpp-init.cpp @@ -37,19 +37,19 @@ void init_il2cpp() using namespace app; // Define IL2CPP API function addresses - #define DO_API(r, n, p) n = (r (*) p)(baseAddress + n ## _ptr) - #include "il2cpp-api-functions.h" - #undef DO_API +#define DO_API(r, n, p) n = (r (*) p)(baseAddress + n ## _ptr) +#include "il2cpp-api-functions.h" +#undef DO_API - // Define function addresses - #define DO_APP_FUNC(a, r, n, p) n = (r (*) p)(baseAddress + a) - #define DO_APP_FUNC_METHODINFO(a, n) n = (struct MethodInfo **)(baseAddress + a) - #include "il2cpp-functions.h" - #undef DO_APP_FUNC - #undef DO_APP_FUNC_METHODINFO +// Define function addresses +#define DO_APP_FUNC(a, r, n, p) n = (r (*) p)(baseAddress + a) +#define DO_APP_FUNC_METHODINFO(a, n) n = (struct MethodInfo **)(baseAddress + a) +#include "il2cpp-functions.h" +#undef DO_APP_FUNC +#undef DO_APP_FUNC_METHODINFO - // Define TypeInfo variables - #define DO_TYPEDEF(a, n) n ## __TypeInfo = (n ## __Class**) (baseAddress + a); - #include "il2cpp-types-ptr.h" - #undef DO_TYPEDEF +// Define TypeInfo variables +#define DO_TYPEDEF(a, n) n ## __TypeInfo = (n ## __Class**) (baseAddress + a); +#include "il2cpp-types-ptr.h" +#undef DO_TYPEDEF } \ No newline at end of file